diff --git a/.gitignore b/.gitignore index 1b7663a..08c09fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ test_data -log_data + +log_data/* +!log_data/LO2/ + output __pycache__/ .env diff --git a/dash_app/callbacks/callback_functions.py b/dash_app/callbacks/callback_functions.py index 1a21ec8..763449a 100644 --- a/dash_app/callbacks/callback_functions.py +++ b/dash_app/callbacks/callback_functions.py @@ -81,7 +81,8 @@ def run_anomaly_detection( test_data, detectors, enhancement, - include_items, + include_test_items, + include_train_items, mask_type, vectorizer_type, analysis_name=None, @@ -94,7 +95,8 @@ def run_anomaly_detection( log_format, detectors, enhancement, - include_items, + include_test_items, + include_train_items, mask_type, vectorizer_type, analysis_name, @@ -215,8 +217,9 @@ def fetch_project_name(project_id: int) -> str: return response.json().get("name", "404") -def get_log_data_directory_options(): - labels, values = get_all_root_log_directories() +def get_log_data_directory_options(project_id: int): + base_path = _fetch_project_base_path(project_id).get("base_path") + labels, values = get_all_root_log_directories(base_path) return [{"label": lab, "value": val} for (lab, val) in zip(labels, values)] @@ -238,6 +241,15 @@ def fetch_project_settings(project_id: int) -> dict: return response.json() +def _fetch_project_base_path(project_id: int) -> dict: + response, error = make_api_call({}, f"projects/{project_id}/base_path", "GET") + if error or response is None: + raise ValueError( + f"Was not able to retrieve base_path for project id {project_id}: {error}" + ) + return response.json() + + def _fetch_analysis_results(analysis_id: int) -> bytes: response, error = make_api_call({}, f"analyses/{analysis_id}", "GET") if error or response is None: @@ -264,7 +276,8 @@ def _build_test_train_payload( log_format, detectors, enhancement, - include_items, + include_test_items, + include_train_items, mask_type, vectorizer_type, analysis_name, @@ -282,17 +295,20 @@ def _build_test_train_payload( } if level == "directory": - payload["runs_to_include"] = include_items + payload["runs_to_include"] = include_test_items + payload["runs_to_include_train"] = include_train_items payload["run_level"] = True elif level == "file": - payload["files_to_include"] = include_items + payload["files_to_include"] = include_test_items + payload["files_to_include_train"] = include_train_items payload["file_level"] = True elif level == "line": - payload["runs_to_include"] = include_items + payload["runs_to_include"] = include_test_items + payload["runs_to_include_train"] = include_train_items payload["file_level"] = False payload["run_level"] = False else: - raise ValueError("Level must be either 'file' or 'directory'") + raise ValueError("Level must be 'line', 'file' or 'directory'") return payload diff --git a/dash_app/components/form_inputs.py b/dash_app/components/form_inputs.py index 4ee150a..7d9e080 100644 --- a/dash_app/components/form_inputs.py +++ b/dash_app/components/form_inputs.py @@ -93,7 +93,7 @@ def delete_button(id, label): ) -def runs_filter_input(id, manual=False): +def runs_filter_input(id, label=None, manual=False): if manual: return dbc.Col( [ @@ -111,7 +111,11 @@ def runs_filter_input(id, manual=False): ) return dbc.Col( [ - dbc.Label("Runs to include in test data", html_for=id, width="auto"), + dbc.Label( + label if label else "Directories to include in test data", + html_for=id, + width="auto", + ), dcc.Dropdown( multi=True, id=id, @@ -124,12 +128,12 @@ def runs_filter_input(id, manual=False): ) -def files_filter_input(id, manual=False): +def files_filter_input(id, label=None, manual=False): if manual: return dbc.Col( [ dbc.Label( - "Files to include in test data (manual, comma-separated)", + f"{label if label else 'Files to include in test data'} (manual, comma-separated)", html_for=id, width="auto", ), @@ -142,7 +146,11 @@ def files_filter_input(id, manual=False): ) return dbc.Col( [ - dbc.Label("Files to include in test data", html_for=id, width="auto"), + dbc.Label( + label if label else "Files to include in test data", + html_for=id, + width="auto", + ), dcc.Dropdown( multi=True, id=id, @@ -405,3 +413,28 @@ def analysis_name_input(id): dbc.Input(id=id, placeholder="Optional", type="text"), ], ) + + +def base_path_input(id): + label_id = f"{id}-label" + return dbc.Col( + [ + dbc.Label( + "Base path", + id=label_id, + html_for=id, + width="auto", + style={"textDecoration": "underline", "cursor": "pointer"}, + ), + dbc.Tooltip( + "Optional. Must be directory inside log_data/. Leave empty or unchanged to use the default. Directory must already exist.", + target=label_id, + placement="bottom", + ), + dbc.Input( + id=id, + type="text", + value="./log_data", + ), + ], + ) diff --git a/dash_app/components/forms.py b/dash_app/components/forms.py index ccf2408..425f4e5 100644 --- a/dash_app/components/forms.py +++ b/dash_app/components/forms.py @@ -22,6 +22,7 @@ files_to_include_input, columns_to_include_input, analysis_name_input, + base_path_input, ) @@ -32,6 +33,7 @@ def test_train_form( detectors_id, enhancement_id, runs_filter_id, + runs_filter_train_id, mask_input_id, vectorizer_id, results_redirect_id, @@ -61,15 +63,24 @@ def test_train_form( ), dbc.Row( [ - detectors_unsupervised_input(detectors_id), + runs_filter_input( + id=runs_filter_train_id, + label="Directories to include in train data", + ), runs_filter_input(runs_filter_id), ], class_name="mb-3", ), dbc.Row( [ - enhancement_input(enhancement_id), + detectors_unsupervised_input(detectors_id), vectorizer_input(vectorizer_id), + ], + class_name="mb-3", + ), + dbc.Row( + [ + enhancement_input(enhancement_id), mask_input(mask_input_id), ], class_name="mb-3", @@ -90,6 +101,7 @@ def test_train_file_level_form( detectors_id, enhancement_id, runs_filter_id, + runs_filter_train_id, mask_input_id, vectorizer_id, results_redirect_id, @@ -122,6 +134,20 @@ def test_train_file_level_form( ], class_name="mb-3", ), + dbc.Row( + dcc.Loading( + type="circle", + overlay_style={"visibility": "visible", "filter": "blur(2px)"}, + children=[ + files_filter_input( + runs_filter_train_id, + label="Files to include in train data", + manual=manual_filenames, + ), + ], + ), + class_name="mb-3", + ), dbc.Row( dcc.Loading( type="circle", @@ -340,13 +366,14 @@ def distance_file_level_form( return form -def project_form(submit_id, name_id): +def project_form(submit_id, name_id, base_path_id): submit_btn = submit_button(submit_id, "Create") form = dbc.Form( [ dbc.Row( [ - name_input((name_id)), + dbc.Col(name_input((name_id))), + dbc.Col(base_path_input((base_path_id))), dbc.Col( submit_btn, class_name="d-flex justify-content-end align-middle align-items-end", diff --git a/dash_app/components/layouts.py b/dash_app/components/layouts.py index 20a0026..5b427cb 100644 --- a/dash_app/components/layouts.py +++ b/dash_app/components/layouts.py @@ -377,7 +377,7 @@ def create_project_layout( task_error_modal = dbc.Row(dbc.Modal(id=task_error_modal_id, is_open=False)) task_logs_modal = dbc.Row( - dbc.Modal(id=task_logs_modal_id, size="lg", is_open=False) + dbc.Modal(id=task_logs_modal_id, size="xl", is_open=False) ) analysis_edit_name_modal = dbc.Row( @@ -454,7 +454,7 @@ def create_high_level_viz_result_layout( layout = [ dbc.Container([table_row, error_toast_row, success_toast_row]), - dbc.Container(plot_row, fluid=True), + dbc.Container(plot_row, fluid=True, style={"paddingBottom": "200px"}), ] return layout diff --git a/dash_app/page_templates/new_analysis_page_base.py b/dash_app/page_templates/new_analysis_page_base.py index f54d497..1607218 100644 --- a/dash_app/page_templates/new_analysis_page_base.py +++ b/dash_app/page_templates/new_analysis_page_base.py @@ -103,20 +103,20 @@ def get_project_id(search): @callback( Output(form_ids["directory_id"], "options"), - Input(base_ids["url_id"], "search"), + Input(base_ids["project_store_id"], "data"), ) - def get_log_data_directories(_): - return get_log_data_directory_options() + def get_log_data_directories(project_id): + return get_log_data_directory_options(project_id) else: @callback( Output(form_ids["train_data_id"], "options"), Output(form_ids["test_data_id"], "options"), - Input(base_ids["url_id"], "search"), + Input(base_ids["project_store_id"], "data"), ) - def get_log_data_directories(_): - options = get_log_data_directory_options() + def get_log_data_directories(project_id): + options = get_log_data_directory_options(project_id) return options, options if ( @@ -144,15 +144,24 @@ def get_comparison_and_target_options(directory_path, manual_filenames): @callback( Output(form_ids["runs_filter_id"], "options"), + Output(form_ids["runs_filter_train_id"], "options"), Input(form_ids["test_data_id"], "value"), + Input(form_ids["train_data_id"], "value"), State(base_ids["manual_filenames_id"], "data"), ) - def get_comparison_options(directory_path, manual_filenames): + def get_comparison_options(dir_path_test, dir_path_train, manual_filenames): if manual_filenames: return [], [] runs_or_files = "files" if config["level"] == "file" else "runs" - options = get_filter_options(directory_path, runs_or_files=runs_or_files) - return options + + options_test = get_filter_options( + dir_path_test, runs_or_files=runs_or_files + ) + options_train = get_filter_options( + dir_path_train, runs_or_files=runs_or_files + ) + + return options_test, options_train @callback( Output(base_ids["error_toast_id"], "children", allow_duplicate=True), diff --git a/dash_app/pages/create_analysis_pages/new_ano_directory_level.py b/dash_app/pages/create_analysis_pages/new_ano_directory_level.py index a2331f2..6510450 100644 --- a/dash_app/pages/create_analysis_pages/new_ano_directory_level.py +++ b/dash_app/pages/create_analysis_pages/new_ano_directory_level.py @@ -28,6 +28,7 @@ "detectors_id": "detectors-ano-dir-new", "enhancement_id": "enhancement-ano-dir-new", "runs_filter_id": "filter-ano-dir-new", + "runs_filter_train_id": "filter-train-ano-dir-new", "mask_input_id": "mask-ano-dir-new", "vectorizer_id": "vectorizer-ano-dir-new", "results_redirect_id": "results-redirect-ano-dir-new", @@ -39,6 +40,7 @@ "detectors_id", "enhancement_id", "runs_filter_id", + "runs_filter_train_id", "mask_input_id", "vectorizer_id", "results_redirect_id", diff --git a/dash_app/pages/create_analysis_pages/new_ano_file_level.py b/dash_app/pages/create_analysis_pages/new_ano_file_level.py index c1fe725..f2fc3df 100644 --- a/dash_app/pages/create_analysis_pages/new_ano_file_level.py +++ b/dash_app/pages/create_analysis_pages/new_ano_file_level.py @@ -31,6 +31,7 @@ "detectors_id": "detectors-ano-file-new", "enhancement_id": "enhancement-ano-file-new", "runs_filter_id": "filter-ano-file-new", + "runs_filter_train_id": "filter-train-ano-file-new", "mask_input_id": "mask-ano-file-new", "vectorizer_id": "vectorizer-ano-file-new", "results_redirect_id": "results-redirect-ano-file-new", @@ -42,6 +43,7 @@ "detectors_id", "enhancement_id", "runs_filter_id", + "runs_filter_train_id", "mask_input_id", "vectorizer_id", "results_redirect_id", diff --git a/dash_app/pages/create_analysis_pages/new_ano_line_level.py b/dash_app/pages/create_analysis_pages/new_ano_line_level.py index c021dc9..c745b25 100644 --- a/dash_app/pages/create_analysis_pages/new_ano_line_level.py +++ b/dash_app/pages/create_analysis_pages/new_ano_line_level.py @@ -28,6 +28,7 @@ "detectors_id": "detectors-ano-line-new", "enhancement_id": "enhancement-ano-line-new", "runs_filter_id": "filter-ano-line-new", + "runs_filter_train_id": "filter-train-ano-line-new", "mask_input_id": "mask-ano-line-new", "vectorizer_id": "vectorizer-ano-line-new", "results_redirect_id": "results-redirect-ano-line-new", @@ -39,6 +40,7 @@ "detectors_id", "enhancement_id", "runs_filter_id", + "runs_filter_train_id", "mask_input_id", "vectorizer_id", "results_redirect_id", diff --git a/dash_app/pages/home.py b/dash_app/pages/home.py index 107f777..71b711a 100644 --- a/dash_app/pages/home.py +++ b/dash_app/pages/home.py @@ -9,7 +9,7 @@ dash.register_page(__name__, path="/", title="Home") -form = project_form("submit-proj", "name-proj") +form = project_form("submit-proj", "name-proj", "base-path-proj") # dcc.store is needed so that we can easily trigger the get_projects callback # after a new project has been created @@ -78,10 +78,11 @@ def toggle_collapse(n, is_open): Output("refresh-proj", "data"), Input("submit-proj", "n_clicks"), State("name-proj", "value"), + State("base-path-proj", "value"), prevent_initial_call=True, ) -def create_project(_, name): - _, error = make_api_call({"name": name}, "projects") +def create_project(_, name, base_path): + _, error = make_api_call({"name": name, "base_path": base_path}, "projects") if error: return (error, True, dash.no_update, False, False) diff --git a/dash_app/utils/data_directories.py b/dash_app/utils/data_directories.py index 853e996..3547184 100644 --- a/dash_app/utils/data_directories.py +++ b/dash_app/utils/data_directories.py @@ -35,8 +35,8 @@ def get_all_filenames(log_directory: str) -> list[str]: return sorted(all_files) -def get_all_root_log_directories() -> tuple[list[str], list[str]]: - base_path = current_app.config["LOG_DATA_PATH"] +def get_all_root_log_directories(base_path=None) -> tuple[list[str], list[str]]: + base_path = current_app.config["LOG_DATA_PATH"] if not base_path else base_path entries = next(os.walk(base_path)) directories = entries[1] @@ -45,4 +45,7 @@ def get_all_root_log_directories() -> tuple[list[str], list[str]]: directory_paths = [os.path.join(base_path, dir) + "/" for dir in directories] file_paths = [os.path.join(base_path, file) for file in files] - return directories + files, directory_paths + file_paths + names = [f"{os.path.basename(base_path) or base_path} (root)"] + directories + files + paths = [os.path.abspath(base_path) + "/"] + directory_paths + file_paths + + return names, paths diff --git a/dash_app/utils/metadata.py b/dash_app/utils/metadata.py index 744f77f..ca4742d 100644 --- a/dash_app/utils/metadata.py +++ b/dash_app/utils/metadata.py @@ -139,7 +139,6 @@ def format_analysis_overview(analyses_data: list[dict]) -> list[dbc.ListGroupIte [ html.Div(bottom_left_items), edit_dropdown, - # delete_button(id=str(analysis["id"]), label="Delete"), ], className="d-flex justify-content-between align-items-center", ), @@ -169,7 +168,18 @@ def format_project_overview(project_data: list[dict]) -> list[dbc.ListGroupItem] ), html.Div( [ - html.P(f"Amount of analyses: {(project['analyses_count'])}"), + html.Div( + [ + html.P( + f"Base path: {(project.get('base_path') or "log_data").lstrip("/app/")}", + className="mb-0", + ), + html.P( + f"Amount of analyses: {(project['analyses_count'])}", + className="mb-0", + ), + ] + ), delete_button(id=str(project["id"]), label="Delete"), ], className="d-flex justify-content-between align-items-center", diff --git a/dash_app/utils/plots.py b/dash_app/utils/plots.py index eb98eaa..3c2a349 100644 --- a/dash_app/utils/plots.py +++ b/dash_app/utils/plots.py @@ -159,6 +159,8 @@ def create_unique_term_count_plot(df, theme="plotly_white"): template=theme, ) + fig.update_yaxes(type="log") + return fig @@ -201,6 +203,8 @@ def create_unique_term_count_plot_by_file( template=theme, ) + fig.update_yaxes(type="log") + return fig diff --git a/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..4df4cba --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-client-1.log @@ -0,0 +1,7358 @@ +09:02:48.106 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:021bde11 +09:02:48.109 [XNIO-1 task-2] w7sh3TAzQuidWu_nYrz9LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.109 [XNIO-1 task-2] w7sh3TAzQuidWu_nYrz9LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.109 [XNIO-1 task-2] w7sh3TAzQuidWu_nYrz9LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.126 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:021bde11 +09:02:48.128 [XNIO-1 task-2] cDSpnvx1Q7i_q8o01Ye3pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aacc9d67-fb4b-4a5c-8b37-ef633a3b8cb0 +09:02:48.128 [XNIO-1 task-2] cDSpnvx1Q7i_q8o01Ye3pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.128 [XNIO-1 task-2] cDSpnvx1Q7i_q8o01Ye3pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:48.128 [XNIO-1 task-2] cDSpnvx1Q7i_q8o01Ye3pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aacc9d67-fb4b-4a5c-8b37-ef633a3b8cb0 +09:02:48.129 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:aacc9d67-fb4b-4a5c-8b37-ef633a3b8cb0 +09:02:48.136 [XNIO-1 task-2] NtFiMt4aTwWvTc02bMqQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f344fc9e-f906-40e9-8d33-53d4d7e33c52 +09:02:48.136 [XNIO-1 task-2] NtFiMt4aTwWvTc02bMqQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.137 [XNIO-1 task-2] NtFiMt4aTwWvTc02bMqQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:48.137 [XNIO-1 task-2] NtFiMt4aTwWvTc02bMqQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f344fc9e-f906-40e9-8d33-53d4d7e33c52 +09:02:48.140 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.140 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.140 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a6515aa-e7c1-4c17-95c6-45527c05","clientDesc":"ec43d25f-fd59-458a-85e1-fdbe5d5acc6f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.141 [XNIO-1 task-2] eCMqHiOHR1i0Bz0Zi8T9Kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:48.143 [XNIO-1 task-2] -FCsuXQJQZ6skU8Gqe60LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a2f1b685-1ffa-4964-a5cc-6f81a54c4c86 +09:02:48.144 [XNIO-1 task-2] -FCsuXQJQZ6skU8Gqe60LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.144 [XNIO-1 task-2] -FCsuXQJQZ6skU8Gqe60LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:48.144 [XNIO-1 task-2] -FCsuXQJQZ6skU8Gqe60LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a2f1b685-1ffa-4964-a5cc-6f81a54c4c86 +09:02:48.151 [XNIO-1 task-2] Ag0yhz9YQ0O4JXOHG9UKpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.151 [XNIO-1 task-2] Ag0yhz9YQ0O4JXOHG9UKpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.151 [XNIO-1 task-2] Ag0yhz9YQ0O4JXOHG9UKpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.156 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b87f82bb-17b0-4ff1-ba01-dd226c4d262e +09:02:48.156 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b87f82bb-17b0-4ff1-ba01-dd226c4d262e +09:02:48.166 [XNIO-1 task-2] PmWvW3zCQQ66943-VKsmRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.166 [XNIO-1 task-2] PmWvW3zCQQ66943-VKsmRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.166 [XNIO-1 task-2] PmWvW3zCQQ66943-VKsmRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.175 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:021bde11 +09:02:48.185 [XNIO-1 task-2] T-n4rqurT92gY5BLZ-OgHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b167c73-8fa8-41b5-a5fe-39b14b235ca8 +09:02:48.185 [XNIO-1 task-2] T-n4rqurT92gY5BLZ-OgHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.185 [XNIO-1 task-2] T-n4rqurT92gY5BLZ-OgHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:48.185 [XNIO-1 task-2] T-n4rqurT92gY5BLZ-OgHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b167c73-8fa8-41b5-a5fe-39b14b235ca8 +09:02:48.193 [XNIO-1 task-2] T-n4rqurT92gY5BLZ-OgHw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.193 [XNIO-1 task-2] T-n4rqurT92gY5BLZ-OgHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:48.199 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.199 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG com.networknt.schema.TypeValidator debug - validate( "06c23d92-4432-4735-ba77-87a838796f06", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG com.networknt.schema.TypeValidator debug - validate( "d621c5a3-e384-438b-882c-a7eb84e1", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.200 [XNIO-1 task-2] 7y_SSo8HR8WfdNOIvz6Zzg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:48.207 [XNIO-1 task-2] 8bCnU2BHTCmdya876Sm6JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1e9517a3-4bb3-44fe-99a1-e554dd109abd, base path is set to: null +09:02:48.208 [XNIO-1 task-2] 8bCnU2BHTCmdya876Sm6JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.208 [XNIO-1 task-2] 8bCnU2BHTCmdya876Sm6JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:48.208 [XNIO-1 task-2] 8bCnU2BHTCmdya876Sm6JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1e9517a3-4bb3-44fe-99a1-e554dd109abd, base path is set to: null +09:02:48.208 [XNIO-1 task-2] 8bCnU2BHTCmdya876Sm6JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1e9517a3-4bb3-44fe-99a1-e554dd109abd", "1e9517a3-4bb3-44fe-99a1-e554dd109abd", clientId) +09:02:48.214 [XNIO-1 task-2] pQ38Zh0fREyvPSoaksMwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.214 [XNIO-1 task-2] pQ38Zh0fREyvPSoaksMwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.214 [XNIO-1 task-2] pQ38Zh0fREyvPSoaksMwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.215 [XNIO-1 task-2] pQ38Zh0fREyvPSoaksMwAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:48.222 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:021bde11 +09:02:48.225 [XNIO-1 task-2] FBidMw8UTLOftFfJdVjUnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.225 [XNIO-1 task-2] FBidMw8UTLOftFfJdVjUnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.225 [XNIO-1 task-2] FBidMw8UTLOftFfJdVjUnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.226 [XNIO-1 task-2] FBidMw8UTLOftFfJdVjUnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:48.236 [XNIO-1 task-2] 13qxmrwXTrq_0rJPr6nKbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.236 [XNIO-1 task-2] 13qxmrwXTrq_0rJPr6nKbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.236 [XNIO-1 task-2] 13qxmrwXTrq_0rJPr6nKbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.240 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2ced88de +09:02:48.251 [XNIO-1 task-2] 2T0dqBBiTbKQpuczwsdoJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.251 [XNIO-1 task-2] 2T0dqBBiTbKQpuczwsdoJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.251 [XNIO-1 task-2] 2T0dqBBiTbKQpuczwsdoJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.260 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2ced88de +09:02:48.265 [XNIO-1 task-2] Y_6iHpw3QaK5iWRq-dA51w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/137c31a8-5593-4e4f-87df-ee75f2e8928c +09:02:48.265 [XNIO-1 task-2] Y_6iHpw3QaK5iWRq-dA51w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.265 [XNIO-1 task-2] Y_6iHpw3QaK5iWRq-dA51w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:48.266 [XNIO-1 task-2] Y_6iHpw3QaK5iWRq-dA51w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/137c31a8-5593-4e4f-87df-ee75f2e8928c +09:02:48.271 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2ced88de +09:02:48.271 [XNIO-1 task-2] Y_6iHpw3QaK5iWRq-dA51w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.271 [XNIO-1 task-2] Y_6iHpw3QaK5iWRq-dA51w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:48.274 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2bbca520 +09:02:48.279 [XNIO-1 task-2] BiXdt6bWSouQ_iJEqGi34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.279 [XNIO-1 task-2] BiXdt6bWSouQ_iJEqGi34A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.279 [XNIO-1 task-2] BiXdt6bWSouQ_iJEqGi34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.289 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5ff71cab +09:02:48.296 [XNIO-1 task-2] RbldxwZsTky-R7eubL4_nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.296 [XNIO-1 task-2] RbldxwZsTky-R7eubL4_nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.296 [XNIO-1 task-2] RbldxwZsTky-R7eubL4_nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.296 [XNIO-1 task-2] RbldxwZsTky-R7eubL4_nw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:48.310 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6fc5982e +09:02:48.312 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.312 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.312 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.312 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.312 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.312 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.312 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.313 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:48.313 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:48.313 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.314 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.314 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67eeb9dc-5fbf-4668-88b8-a620c8fb","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.314 [XNIO-1 task-2] 7Qv3AnytR1-aK0zwZ_9DGw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:48.319 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "29e63b7a-1535-4753-9277-ec56368fcece", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "2e02fe82-064f-4789-bd31-f6acadcc", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:48.320 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.321 [XNIO-1 task-2] mygoGRCfSQa8jiEiWrvZOA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:48.324 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.324 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:48.325 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f5764336-36c2-46ca-8c2f-91a9943d","clientDesc":"cdf9a7c7-add6-4630-b0b6-b95af113c13b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.326 [XNIO-1 task-2] TkXnrGxJQ9qLVjD2xlQI3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:48.329 [XNIO-1 task-2] 0ikqsSwUQUqFhMgQaeNCiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bda2164b-01fb-455d-8a2b-6371ebd1889e +09:02:48.329 [XNIO-1 task-2] 0ikqsSwUQUqFhMgQaeNCiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.329 [XNIO-1 task-2] 0ikqsSwUQUqFhMgQaeNCiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:48.329 [XNIO-1 task-2] 0ikqsSwUQUqFhMgQaeNCiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bda2164b-01fb-455d-8a2b-6371ebd1889e +09:02:48.335 [XNIO-1 task-2] AL9wN09UR7GP06D8WYocGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/33816fc7-9978-4236-862e-8f2e1d3675b3, base path is set to: null +09:02:48.335 [XNIO-1 task-2] AL9wN09UR7GP06D8WYocGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.335 [XNIO-1 task-2] AL9wN09UR7GP06D8WYocGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:48.335 [XNIO-1 task-2] AL9wN09UR7GP06D8WYocGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/33816fc7-9978-4236-862e-8f2e1d3675b3, base path is set to: null +09:02:48.335 [XNIO-1 task-2] AL9wN09UR7GP06D8WYocGw DEBUG com.networknt.schema.TypeValidator debug - validate( "33816fc7-9978-4236-862e-8f2e1d3675b3", "33816fc7-9978-4236-862e-8f2e1d3675b3", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:02:48.340 [XNIO-1 task-2] AL9wN09UR7GP06D8WYocGw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/33816fc7-9978-4236-862e-8f2e1d3675b3} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:48.343 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.343 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:48.344 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e02fe82-064f-4789-bd31-f6acadcc","clientDesc":"29e63b7a-1535-4753-9277-ec56368fcece","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:48.345 [XNIO-1 task-2] 6SiOPHeMTo6ZM2GEakGdIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:48.352 [XNIO-1 task-2] vdpTJ5hARfu8oo-vHSMuPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bda2164b-01fb-455d-8a2b-6371ebd1889e +09:02:48.352 [XNIO-1 task-2] vdpTJ5hARfu8oo-vHSMuPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.352 [XNIO-1 task-2] vdpTJ5hARfu8oo-vHSMuPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:48.352 [XNIO-1 task-2] vdpTJ5hARfu8oo-vHSMuPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bda2164b-01fb-455d-8a2b-6371ebd1889e +09:02:48.357 [XNIO-1 task-2] dyyVTGLgQJmfG9qW0AnQXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89607e6b-fe28-4a5a-b93f-767335a3f75a, base path is set to: null +09:02:48.357 [XNIO-1 task-2] dyyVTGLgQJmfG9qW0AnQXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:48.357 [XNIO-1 task-2] dyyVTGLgQJmfG9qW0AnQXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:48.357 [XNIO-1 task-2] dyyVTGLgQJmfG9qW0AnQXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89607e6b-fe28-4a5a-b93f-767335a3f75a, base path is set to: null +09:02:48.357 [XNIO-1 task-2] dyyVTGLgQJmfG9qW0AnQXA DEBUG com.networknt.schema.TypeValidator debug - validate( "89607e6b-fe28-4a5a-b93f-767335a3f75a", "89607e6b-fe28-4a5a-b93f-767335a3f75a", clientId) +09:02:48.364 [XNIO-1 task-2] ibfvtvzJS42Rr1yl074nbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.364 [XNIO-1 task-2] ibfvtvzJS42Rr1yl074nbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.364 [XNIO-1 task-2] ibfvtvzJS42Rr1yl074nbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:48.364 [XNIO-1 task-2] ibfvtvzJS42Rr1yl074nbg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:48.371 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2ced88de +09:02:48.372 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fcb5716f-d2e9-4224-9106-e471cfd092df +09:02:50.034 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "b55be23f-8fec-4828-8f44-b9f611eb6606", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "2a34143b-b579-4694-941a-ed4d8048", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:50.035 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2a34143b-b579-4694-941a-ed4d8048","clientDesc":"b55be23f-8fec-4828-8f44-b9f611eb6606","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.036 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.036 [XNIO-1 task-2] 5Q-6srGGRSewMWzQ_TXw2w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.040 [XNIO-1 task-2] h2zR7SVBTVm6H1CsIi-UTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/75ab5941-6cec-4ce3-881a-8e2c7496d44e, base path is set to: null +09:02:50.040 [XNIO-1 task-2] h2zR7SVBTVm6H1CsIi-UTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.040 [XNIO-1 task-2] h2zR7SVBTVm6H1CsIi-UTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.040 [XNIO-1 task-2] h2zR7SVBTVm6H1CsIi-UTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/75ab5941-6cec-4ce3-881a-8e2c7496d44e, base path is set to: null +09:02:50.040 [XNIO-1 task-2] h2zR7SVBTVm6H1CsIi-UTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "75ab5941-6cec-4ce3-881a-8e2c7496d44e", "75ab5941-6cec-4ce3-881a-8e2c7496d44e", clientId) +09:02:50.048 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5a441e43 +09:02:50.048 [XNIO-1 task-2] nSs0ZrTYRlWPta6u0kr9rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.048 [XNIO-1 task-2] nSs0ZrTYRlWPta6u0kr9rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.048 [XNIO-1 task-2] nSs0ZrTYRlWPta6u0kr9rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.068 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:38c377ca +09:02:50.076 [XNIO-1 task-2] ZtT7oKfkS1q417lFozQmjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.076 [XNIO-1 task-2] ZtT7oKfkS1q417lFozQmjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.077 [XNIO-1 task-2] ZtT7oKfkS1q417lFozQmjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.083 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bf333993-8ac9-416d-90e2-39945f60fd8e +09:02:50.097 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.098 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc0c550-a877-47dc-82d3-db7f8e7d","clientDesc":"45d284ae-d816-4153-9667-55b403cf12bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.099 [XNIO-1 task-2] Vh_al1MtTzOlKRa_VHIZ4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:50.105 [XNIO-1 task-2] aGwt1wRCQ6KvtfHIxQ9Mqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.105 [XNIO-1 task-2] aGwt1wRCQ6KvtfHIxQ9Mqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.105 [XNIO-1 task-2] aGwt1wRCQ6KvtfHIxQ9Mqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.117 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.117 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.117 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac747e10-2b3d-4c38-a4e4-5cd3574a","clientDesc":"9284eacd-5fb3-46ff-82b0-9e4e0d45a0af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.118 [XNIO-1 task-2] OvS34wfjQNqJXoDk71D4gQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:50.123 [XNIO-1 task-2] GjYzP0M7STKUdJsAkEOIuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab8af2c2-c14d-425f-9817-0d80c48de3cc +09:02:50.123 [XNIO-1 task-2] GjYzP0M7STKUdJsAkEOIuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.123 [XNIO-1 task-2] GjYzP0M7STKUdJsAkEOIuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.123 [XNIO-1 task-2] GjYzP0M7STKUdJsAkEOIuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab8af2c2-c14d-425f-9817-0d80c48de3cc +09:02:50.127 [XNIO-1 task-2] GjYzP0M7STKUdJsAkEOIuA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.128 [XNIO-1 task-2] GjYzP0M7STKUdJsAkEOIuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:50.129 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "bd1bc7bd-5def-48de-85b5-1f43c046badd", {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc30abbf-ae52-43b4-9c03-59272f57", {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:50.130 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:50.131 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dc30abbf-ae52-43b4-9c03-59272f57","clientDesc":"bd1bc7bd-5def-48de-85b5-1f43c046badd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.131 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.131 [XNIO-1 task-2] w50Hx9NmRISCnevKBLIEgw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.140 [XNIO-1 task-2] qr5On64IShOjutL_9Dj2Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.140 [XNIO-1 task-2] qr5On64IShOjutL_9Dj2Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.140 [XNIO-1 task-2] qr5On64IShOjutL_9Dj2Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.146 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ba310d89-2516-45b0-8194-eaca39486a89 +09:02:50.147 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ba310d89-2516-45b0-8194-eaca39486a89 +09:02:50.147 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ff71cab +09:02:50.147 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8b4cca94-c3f7-4f29-a1f0-6f9fd06bad5e +09:02:50.163 [XNIO-1 task-2] b_91aMehRJGKamGt26D4og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.163 [XNIO-1 task-2] b_91aMehRJGKamGt26D4og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.163 [XNIO-1 task-2] b_91aMehRJGKamGt26D4og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.179 [XNIO-1 task-2] gdSrvK6ZR3a4Ekdhwo_C4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.180 [XNIO-1 task-2] gdSrvK6ZR3a4Ekdhwo_C4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.180 [XNIO-1 task-2] gdSrvK6ZR3a4Ekdhwo_C4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.191 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2bbca520 +09:02:50.199 [XNIO-1 task-2] pCg8CkzbTDGfp7_BC-hUag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.200 [XNIO-1 task-2] pCg8CkzbTDGfp7_BC-hUag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.200 [XNIO-1 task-2] pCg8CkzbTDGfp7_BC-hUag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.200 [XNIO-1 task-2] pCg8CkzbTDGfp7_BC-hUag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.210 [XNIO-1 task-2] pXFFRLirRz2WEu496o2LmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b2b82f3-ccbb-4159-89cc-348c201c174c, base path is set to: null +09:02:50.210 [XNIO-1 task-2] pXFFRLirRz2WEu496o2LmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.210 [XNIO-1 task-2] pXFFRLirRz2WEu496o2LmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.211 [XNIO-1 task-2] pXFFRLirRz2WEu496o2LmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b2b82f3-ccbb-4159-89cc-348c201c174c, base path is set to: null +09:02:50.211 [XNIO-1 task-2] pXFFRLirRz2WEu496o2LmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3b2b82f3-ccbb-4159-89cc-348c201c174c", "3b2b82f3-ccbb-4159-89cc-348c201c174c", clientId) +09:02:50.216 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1807ef0d +09:02:50.217 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.217 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG com.networknt.schema.TypeValidator debug - validate( "01e84671-07dc-497f-a2b5-67e13b522f7c", {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG com.networknt.schema.TypeValidator debug - validate( "9a805628-c5d0-4dca-8594-3a7e1d35", {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:50.218 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9a805628-c5d0-4dca-8594-3a7e1d35","clientDesc":"01e84671-07dc-497f-a2b5-67e13b522f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.219 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.219 [XNIO-1 task-2] 5F2uvtR2SuGq8cwQXQ-MWg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.230 [XNIO-1 task-2] S5GdGmzrQ9eITRzA6xO4rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b2b82f3-ccbb-4159-89cc-348c201c174c, base path is set to: null +09:02:50.230 [XNIO-1 task-2] S5GdGmzrQ9eITRzA6xO4rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.230 [XNIO-1 task-2] S5GdGmzrQ9eITRzA6xO4rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.230 [XNIO-1 task-2] S5GdGmzrQ9eITRzA6xO4rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b2b82f3-ccbb-4159-89cc-348c201c174c, base path is set to: null +09:02:50.230 [XNIO-1 task-2] S5GdGmzrQ9eITRzA6xO4rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3b2b82f3-ccbb-4159-89cc-348c201c174c", "3b2b82f3-ccbb-4159-89cc-348c201c174c", clientId) +09:02:50.237 [XNIO-1 task-2] DJF-DOu3RK28Fi8cqw7d8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.237 [XNIO-1 task-2] DJF-DOu3RK28Fi8cqw7d8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.237 [XNIO-1 task-2] DJF-DOu3RK28Fi8cqw7d8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.257 [XNIO-1 task-2] XcO6LBWJR_6f5voDCkKMbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3b2b82f3-ccbb-4159-89cc-348c201c174c +09:02:50.257 [XNIO-1 task-2] XcO6LBWJR_6f5voDCkKMbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.257 [XNIO-1 task-2] XcO6LBWJR_6f5voDCkKMbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.257 [XNIO-1 task-2] XcO6LBWJR_6f5voDCkKMbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3b2b82f3-ccbb-4159-89cc-348c201c174c +09:02:50.265 [XNIO-1 task-2] eb4qdg7eShK07S9Iz8f8Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b28cd537-0ba2-497a-98f7-fe0494f71eb6, base path is set to: null +09:02:50.265 [XNIO-1 task-2] eb4qdg7eShK07S9Iz8f8Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.265 [XNIO-1 task-2] eb4qdg7eShK07S9Iz8f8Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.265 [XNIO-1 task-2] eb4qdg7eShK07S9Iz8f8Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b28cd537-0ba2-497a-98f7-fe0494f71eb6, base path is set to: null +09:02:50.266 [XNIO-1 task-2] eb4qdg7eShK07S9Iz8f8Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "b28cd537-0ba2-497a-98f7-fe0494f71eb6", "b28cd537-0ba2-497a-98f7-fe0494f71eb6", clientId) +09:02:50.273 [XNIO-1 task-2] l7RCoAEtRfa_hhsVWFW3IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.273 [XNIO-1 task-2] l7RCoAEtRfa_hhsVWFW3IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.274 [XNIO-1 task-2] l7RCoAEtRfa_hhsVWFW3IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.285 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2ced88de +09:02:50.286 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ff71cab +09:02:50.296 [XNIO-1 task-2] SWOdGp3sRge_Vg8-lRiZ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b167c73-8fa8-41b5-a5fe-39b14b235ca8 +09:02:50.296 [XNIO-1 task-2] SWOdGp3sRge_Vg8-lRiZ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.296 [XNIO-1 task-2] SWOdGp3sRge_Vg8-lRiZ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.296 [XNIO-1 task-2] SWOdGp3sRge_Vg8-lRiZ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b167c73-8fa8-41b5-a5fe-39b14b235ca8 +09:02:50.302 [XNIO-1 task-2] u5rFVBaZQ5K-UW6hIo4Nsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1e9517a3-4bb3-44fe-99a1-e554dd109abd, base path is set to: null +09:02:50.302 [XNIO-1 task-2] u5rFVBaZQ5K-UW6hIo4Nsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.302 [XNIO-1 task-2] u5rFVBaZQ5K-UW6hIo4Nsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.302 [XNIO-1 task-2] u5rFVBaZQ5K-UW6hIo4Nsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1e9517a3-4bb3-44fe-99a1-e554dd109abd, base path is set to: null +09:02:50.302 [XNIO-1 task-2] u5rFVBaZQ5K-UW6hIo4Nsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1e9517a3-4bb3-44fe-99a1-e554dd109abd", "1e9517a3-4bb3-44fe-99a1-e554dd109abd", clientId) +09:02:50.309 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.309 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "73d8a476-2e53-47ed-879e-8843640855f6", {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f0aab793-584f-491d-b82e-d7934cd5", {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"f0aab793-584f-491d-b82e-d7934cd5","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.310 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.311 [XNIO-1 task-2] uEmnwT-SS9qX9wybNBs7gQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.313 [XNIO-1 task-2] r11B7Z_-RfKEQ8fnYEVSjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/137c31a8-5593-4e4f-87df-ee75f2e8928c, base path is set to: null +09:02:50.314 [XNIO-1 task-2] r11B7Z_-RfKEQ8fnYEVSjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.314 [XNIO-1 task-2] r11B7Z_-RfKEQ8fnYEVSjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.314 [XNIO-1 task-2] r11B7Z_-RfKEQ8fnYEVSjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/137c31a8-5593-4e4f-87df-ee75f2e8928c, base path is set to: null +09:02:50.314 [XNIO-1 task-2] r11B7Z_-RfKEQ8fnYEVSjw DEBUG com.networknt.schema.TypeValidator debug - validate( "137c31a8-5593-4e4f-87df-ee75f2e8928c", "137c31a8-5593-4e4f-87df-ee75f2e8928c", clientId) +09:02:50.321 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.321 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.322 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.322 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.322 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.322 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "73d8a476-2e53-47ed-879e-8843640855f6", {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.323 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.323 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.323 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a8cd85e-37fb-4c4e-8455-f4a8a333", {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:50.323 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:50.323 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5a8cd85e-37fb-4c4e-8455-f4a8a333","clientDesc":"73d8a476-2e53-47ed-879e-8843640855f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.323 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.323 [XNIO-1 task-2] 9BVDGOyIRli8wTzo8sd4PQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.327 [XNIO-1 task-2] PCeVrvr7SMS3tRov6FTGcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.328 [XNIO-1 task-2] PCeVrvr7SMS3tRov6FTGcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.328 [XNIO-1 task-2] PCeVrvr7SMS3tRov6FTGcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.328 [XNIO-1 task-2] PCeVrvr7SMS3tRov6FTGcg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.335 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5ff71cab +09:02:50.342 [XNIO-1 task-2] kZN05XjJTrOG2VsHKmAk8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.342 [XNIO-1 task-2] kZN05XjJTrOG2VsHKmAk8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.342 [XNIO-1 task-2] kZN05XjJTrOG2VsHKmAk8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.358 [XNIO-1 task-2] bCjU02wxTmiouOhtiklpmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/926e4fec-ab87-479a-9611-ddcc5a7278ed, base path is set to: null +09:02:50.358 [XNIO-1 task-2] bCjU02wxTmiouOhtiklpmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.358 [XNIO-1 task-2] bCjU02wxTmiouOhtiklpmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.358 [XNIO-1 task-2] bCjU02wxTmiouOhtiklpmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/926e4fec-ab87-479a-9611-ddcc5a7278ed, base path is set to: null +09:02:50.358 [XNIO-1 task-2] bCjU02wxTmiouOhtiklpmA DEBUG com.networknt.schema.TypeValidator debug - validate( "926e4fec-ab87-479a-9611-ddcc5a7278ed", "926e4fec-ab87-479a-9611-ddcc5a7278ed", clientId) +09:02:50.369 [XNIO-1 task-2] Org3r36yRimILyA00uB56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0254e249-dbfd-4172-ba45-67d41abe6c36 +09:02:50.369 [XNIO-1 task-2] Org3r36yRimILyA00uB56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.369 [XNIO-1 task-2] Org3r36yRimILyA00uB56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.369 [XNIO-1 task-2] Org3r36yRimILyA00uB56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0254e249-dbfd-4172-ba45-67d41abe6c36 +09:02:50.378 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2bbca520 +09:02:50.379 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2bbca520 +09:02:50.379 [XNIO-1 task-2] 1A1zNV_lQ3yULWUlM-60tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.380 [XNIO-1 task-2] 1A1zNV_lQ3yULWUlM-60tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.380 [XNIO-1 task-2] 1A1zNV_lQ3yULWUlM-60tg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.381 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9c04937a-c3dc-4b46-bccc-a528d9a21f1d +09:02:50.393 [XNIO-1 task-2] 1UJ3bm_GR02MAcNy1wtNCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.393 [XNIO-1 task-2] 1UJ3bm_GR02MAcNy1wtNCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.393 [XNIO-1 task-2] 1UJ3bm_GR02MAcNy1wtNCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.411 [XNIO-1 task-2] P7xHi6FHR1WhauyJ3cQPHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.411 [XNIO-1 task-2] P7xHi6FHR1WhauyJ3cQPHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.411 [XNIO-1 task-2] P7xHi6FHR1WhauyJ3cQPHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.411 [XNIO-1 task-2] P7xHi6FHR1WhauyJ3cQPHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.416 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6fc5982e +09:02:50.418 [XNIO-1 task-2] 7b14euaZSraWMuYwDh15TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4c8e3dde-569b-4a26-91a2-d644cf3321bd +09:02:50.418 [XNIO-1 task-2] 7b14euaZSraWMuYwDh15TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.418 [XNIO-1 task-2] 7b14euaZSraWMuYwDh15TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.418 [XNIO-1 task-2] 7b14euaZSraWMuYwDh15TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4c8e3dde-569b-4a26-91a2-d644cf3321bd +09:02:50.426 [XNIO-1 task-2] jO18zNn5TnG2qAgViKSy5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.426 [XNIO-1 task-2] jO18zNn5TnG2qAgViKSy5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.426 [XNIO-1 task-2] jO18zNn5TnG2qAgViKSy5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.432 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:38c377ca +09:02:50.439 [XNIO-1 task-2] A9DmPyGjTkuY5YyvDZji5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed96884f-7d38-48b5-b1d4-9224db9136ab, base path is set to: null +09:02:50.439 [XNIO-1 task-2] A9DmPyGjTkuY5YyvDZji5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.439 [XNIO-1 task-2] A9DmPyGjTkuY5YyvDZji5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.439 [XNIO-1 task-2] A9DmPyGjTkuY5YyvDZji5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed96884f-7d38-48b5-b1d4-9224db9136ab, base path is set to: null +09:02:50.440 [XNIO-1 task-2] A9DmPyGjTkuY5YyvDZji5w DEBUG com.networknt.schema.TypeValidator debug - validate( "ed96884f-7d38-48b5-b1d4-9224db9136ab", "ed96884f-7d38-48b5-b1d4-9224db9136ab", clientId) +09:02:50.443 [XNIO-1 task-2] f6zmu8ebQ0ORByWwH5rRTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.443 [XNIO-1 task-2] f6zmu8ebQ0ORByWwH5rRTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.443 [XNIO-1 task-2] f6zmu8ebQ0ORByWwH5rRTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.459 [XNIO-1 task-2] Sf2NCbL8Txqp7NV0DRbobA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.459 [XNIO-1 task-2] Sf2NCbL8Txqp7NV0DRbobA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.459 [XNIO-1 task-2] Sf2NCbL8Txqp7NV0DRbobA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.459 [XNIO-1 task-2] Sf2NCbL8Txqp7NV0DRbobA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:50.474 [XNIO-1 task-2] SlCZPJVeTZaspW7q2VlHGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.474 [XNIO-1 task-2] SlCZPJVeTZaspW7q2VlHGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.474 [XNIO-1 task-2] SlCZPJVeTZaspW7q2VlHGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.474 [XNIO-1 task-2] SlCZPJVeTZaspW7q2VlHGg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "094ca66b-1ce0-454b-82c6-da575888742f", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.490 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b54436d-d74b-4102-8951-c02d06ce", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:50.491 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:50.491 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.491 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.491 [XNIO-1 task-2] wibmUzFMQv-GesvcY6Q0GQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.493 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.494 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.494 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.494 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.494 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.494 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.495 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.495 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.495 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.495 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.495 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.495 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b166572-3c33-4cdd-80bd-9345a80c","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.495 [XNIO-1 task-2] 5M85EGOUT6-9HFYYjxBBNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:50.502 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.502 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.502 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.502 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.502 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.502 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG com.networknt.schema.TypeValidator debug - validate( "812c8378-30b6-46d5-a4e7-c91e67256cc3", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.502 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.503 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.503 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG com.networknt.schema.TypeValidator debug - validate( "16632ce1-795f-4159-a559-81abb513", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:50.503 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:50.503 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.503 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.503 [XNIO-1 task-2] tluSVpsDTCOG-F2zWJ1edw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.510 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.510 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.510 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.510 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b54436d-d74b-4102-8951-c02d06ce","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.511 [XNIO-1 task-2] U27lkQfmT0yrKwrhd1igRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:50.515 [XNIO-1 task-2] 9EO0WGYxToSbIpGIKNny2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.515 [XNIO-1 task-2] 9EO0WGYxToSbIpGIKNny2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.515 [XNIO-1 task-2] 9EO0WGYxToSbIpGIKNny2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.515 [XNIO-1 task-2] 9EO0WGYxToSbIpGIKNny2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:50.518 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ff71cab +09:02:50.527 [XNIO-1 task-2] 96waHPGZSu-9uIRWS3daJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.527 [XNIO-1 task-2] 96waHPGZSu-9uIRWS3daJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.527 [XNIO-1 task-2] 96waHPGZSu-9uIRWS3daJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.531 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1e7d4476-03a2-4806-8bdd-465502481181 +09:02:50.548 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:601f6072 +09:02:50.550 [XNIO-1 task-2] 2Ult5gT1Tb2xNaPJSdk3iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.550 [XNIO-1 task-2] 2Ult5gT1Tb2xNaPJSdk3iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.550 [XNIO-1 task-2] 2Ult5gT1Tb2xNaPJSdk3iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.557 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d4a591e5 +09:02:50.558 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d4a591e5 +09:02:50.567 [XNIO-1 task-2] c1ZsQ7AlRsmAteb9AJQBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.567 [XNIO-1 task-2] c1ZsQ7AlRsmAteb9AJQBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.567 [XNIO-1 task-2] c1ZsQ7AlRsmAteb9AJQBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.583 [XNIO-1 task-2] ftyk-T75T7un7pNFpRGzpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.583 [XNIO-1 task-2] ftyk-T75T7un7pNFpRGzpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.583 [XNIO-1 task-2] ftyk-T75T7un7pNFpRGzpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.583 [XNIO-1 task-2] ftyk-T75T7un7pNFpRGzpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:50.586 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:99472509-c12e-434a-83f9-7bc4631be651 +09:02:50.600 [XNIO-1 task-2] 6qQHBqwuQva7qu9FLjoDhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4717bdb5-be54-42fc-9cfe-48718cd56598, base path is set to: null +09:02:50.601 [XNIO-1 task-2] 6qQHBqwuQva7qu9FLjoDhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.601 [XNIO-1 task-2] 6qQHBqwuQva7qu9FLjoDhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.601 [XNIO-1 task-2] 6qQHBqwuQva7qu9FLjoDhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4717bdb5-be54-42fc-9cfe-48718cd56598, base path is set to: null +09:02:50.602 [XNIO-1 task-2] 6qQHBqwuQva7qu9FLjoDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "4717bdb5-be54-42fc-9cfe-48718cd56598", "4717bdb5-be54-42fc-9cfe-48718cd56598", clientId) +09:02:50.612 [XNIO-1 task-2] l4S9HbuvTmCBbAz8LTKJ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa37287c-3c62-4bec-947e-229fe9a13363 +09:02:50.612 [XNIO-1 task-2] l4S9HbuvTmCBbAz8LTKJ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.612 [XNIO-1 task-2] l4S9HbuvTmCBbAz8LTKJ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.612 [XNIO-1 task-2] l4S9HbuvTmCBbAz8LTKJ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa37287c-3c62-4bec-947e-229fe9a13363 +09:02:50.616 [XNIO-1 task-2] -Hm5LN9rROecXkaQPavTlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.616 [XNIO-1 task-2] -Hm5LN9rROecXkaQPavTlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.616 [XNIO-1 task-2] -Hm5LN9rROecXkaQPavTlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.616 [XNIO-1 task-2] -Hm5LN9rROecXkaQPavTlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.629 [XNIO-1 task-2] 2O-wb4veSZOoAMdXQ-21BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d2cd0ea0-26c0-4c0e-99f2-cb94b8363fca, base path is set to: null +09:02:50.630 [XNIO-1 task-2] 2O-wb4veSZOoAMdXQ-21BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.630 [XNIO-1 task-2] 2O-wb4veSZOoAMdXQ-21BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.630 [XNIO-1 task-2] 2O-wb4veSZOoAMdXQ-21BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d2cd0ea0-26c0-4c0e-99f2-cb94b8363fca, base path is set to: null +09:02:50.630 [XNIO-1 task-2] 2O-wb4veSZOoAMdXQ-21BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d2cd0ea0-26c0-4c0e-99f2-cb94b8363fca", "d2cd0ea0-26c0-4c0e-99f2-cb94b8363fca", clientId) +09:02:50.638 [XNIO-1 task-2] L7ILMUbPQjmdc_tp8LnCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.638 [XNIO-1 task-2] L7ILMUbPQjmdc_tp8LnCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.638 [XNIO-1 task-2] L7ILMUbPQjmdc_tp8LnCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.646 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:601f6072 +09:02:50.650 [XNIO-1 task-2] 83WlXTZ0Tv60JybA-lDb-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7dc16b27-38d9-4218-877d-2b7991631b53 +09:02:50.650 [XNIO-1 task-2] 83WlXTZ0Tv60JybA-lDb-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.650 [XNIO-1 task-2] 83WlXTZ0Tv60JybA-lDb-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.650 [XNIO-1 task-2] 83WlXTZ0Tv60JybA-lDb-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7dc16b27-38d9-4218-877d-2b7991631b53 +09:02:50.659 [XNIO-1 task-2] r7Xm9XYySeqHOlcmzU73Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1b167c73-8fa8-41b5-a5fe-39b14b235ca8, base path is set to: null +09:02:50.660 [XNIO-1 task-2] r7Xm9XYySeqHOlcmzU73Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.659 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:601f6072 +09:02:50.660 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:601f6072 +09:02:50.660 [XNIO-1 task-2] r7Xm9XYySeqHOlcmzU73Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1b167c73-8fa8-41b5-a5fe-39b14b235ca8, base path is set to: null +09:02:50.660 [XNIO-1 task-2] r7Xm9XYySeqHOlcmzU73Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b167c73-8fa8-41b5-a5fe-39b14b235ca8", "1b167c73-8fa8-41b5-a5fe-39b14b235ca8", clientId) +09:02:50.663 [XNIO-1 task-2] FgaAXvO-S1q2wJ3RZAzClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.663 [XNIO-1 task-2] FgaAXvO-S1q2wJ3RZAzClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.663 [XNIO-1 task-2] FgaAXvO-S1q2wJ3RZAzClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.663 [XNIO-1 task-2] FgaAXvO-S1q2wJ3RZAzClw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:50.672 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.672 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.672 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06c23d92-4432-4735-ba77-87a838796f06", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d621c5a3-e384-438b-882c-a7eb84e1", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"d621c5a3-e384-438b-882c-a7eb84e1","clientDesc":"06c23d92-4432-4735-ba77-87a838796f06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.673 [XNIO-1 task-2] olW2CtglSDORzOVzSvNQQQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.684 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.685 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.685 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.685 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:54abfe81 +09:02:50.685 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:54abfe81 +09:02:50.685 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d301954-6a63-4bf0-bc57-bced9ec5","clientDesc":"b7305410-46b8-4647-89b3-cd0a15a842d8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.685 [XNIO-1 task-2] h4OTyOBtQr68qF9Z8XClAg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:50.689 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.689 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.689 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.689 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:50.689 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:50.689 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG com.networknt.schema.TypeValidator debug - validate( "094ca66b-1ce0-454b-82c6-da575888742f", {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:50.690 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:50.690 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.690 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG com.networknt.schema.TypeValidator debug - validate( "aabb55fd-6877-4871-9d24-44dbb0ab", {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:50.690 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:50.690 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"aabb55fd-6877-4871-9d24-44dbb0ab","clientDesc":"094ca66b-1ce0-454b-82c6-da575888742f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:50.690 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.690 [XNIO-1 task-2] FUSp7tnPSKyJDrpImg6BJg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.694 [XNIO-1 task-2] 6NatNtHpTCypdhqO775_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.695 [XNIO-1 task-2] 6NatNtHpTCypdhqO775_Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.695 [XNIO-1 task-2] 6NatNtHpTCypdhqO775_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.695 [XNIO-1 task-2] 6NatNtHpTCypdhqO775_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.706 [XNIO-1 task-2] O4hxjQ-DQheFzj1MAGUpZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.706 [XNIO-1 task-2] O4hxjQ-DQheFzj1MAGUpZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.706 [XNIO-1 task-2] O4hxjQ-DQheFzj1MAGUpZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.711 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:480f7bed-8788-4c19-a5d1-d2b7fe797b7c +09:02:50.712 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:480f7bed-8788-4c19-a5d1-d2b7fe797b7c +09:02:50.718 [XNIO-1 task-2] 2avKaztsTzqkVKdy7DSpJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.718 [XNIO-1 task-2] 2avKaztsTzqkVKdy7DSpJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.718 [XNIO-1 task-2] 2avKaztsTzqkVKdy7DSpJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.777 [XNIO-1 task-2] FtPnB9o5RoaogSSQ4pxM9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2399c623-c090-4919-909a-6df4397ee610 +09:02:50.778 [XNIO-1 task-2] FtPnB9o5RoaogSSQ4pxM9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.778 [XNIO-1 task-2] FtPnB9o5RoaogSSQ4pxM9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.778 [XNIO-1 task-2] FtPnB9o5RoaogSSQ4pxM9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2399c623-c090-4919-909a-6df4397ee610 +09:02:50.788 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5a82d203 +09:02:50.789 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5a82d203 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:02:50.792 [XNIO-1 task-2] FtPnB9o5RoaogSSQ4pxM9Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/2399c623-c090-4919-909a-6df4397ee610} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.796 [XNIO-1 task-2] DcMzNSDRTx-eh3RD2jdsGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/926e4fec-ab87-479a-9611-ddcc5a7278ed, base path is set to: null +09:02:50.797 [XNIO-1 task-2] DcMzNSDRTx-eh3RD2jdsGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.797 [XNIO-1 task-2] DcMzNSDRTx-eh3RD2jdsGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.797 [XNIO-1 task-2] DcMzNSDRTx-eh3RD2jdsGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/926e4fec-ab87-479a-9611-ddcc5a7278ed, base path is set to: null +09:02:50.797 [XNIO-1 task-2] DcMzNSDRTx-eh3RD2jdsGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "926e4fec-ab87-479a-9611-ddcc5a7278ed", "926e4fec-ab87-479a-9611-ddcc5a7278ed", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:02:50.807 [XNIO-1 task-2] DcMzNSDRTx-eh3RD2jdsGQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/926e4fec-ab87-479a-9611-ddcc5a7278ed} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.809 [XNIO-1 task-2] tv7WYUnsRQO-E79muWA5AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.809 [XNIO-1 task-2] tv7WYUnsRQO-E79muWA5AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.810 [XNIO-1 task-2] tv7WYUnsRQO-E79muWA5AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.831 [XNIO-1 task-2] m1bAbz5OT9y3jNDzS-G3GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/449e2a33-d92b-44fc-a845-815f81bfaabf, base path is set to: null +09:02:50.832 [XNIO-1 task-2] m1bAbz5OT9y3jNDzS-G3GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.832 [XNIO-1 task-2] m1bAbz5OT9y3jNDzS-G3GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.832 [XNIO-1 task-2] m1bAbz5OT9y3jNDzS-G3GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/449e2a33-d92b-44fc-a845-815f81bfaabf, base path is set to: null +09:02:50.832 [XNIO-1 task-2] m1bAbz5OT9y3jNDzS-G3GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "449e2a33-d92b-44fc-a845-815f81bfaabf", "449e2a33-d92b-44fc-a845-815f81bfaabf", clientId) +09:02:50.839 [XNIO-1 task-2] pGobiQO7TZy_ye1yv-9lfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.839 [XNIO-1 task-2] pGobiQO7TZy_ye1yv-9lfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.840 [XNIO-1 task-2] pGobiQO7TZy_ye1yv-9lfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.847 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:91d8e11b-ce60-4269-940d-862834ec3fe4 +09:02:50.858 [XNIO-1 task-2] IRmZwJ8RS2Kofc5W8BUoEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/449e2a33-d92b-44fc-a845-815f81bfaabf, base path is set to: null +09:02:50.858 [XNIO-1 task-2] IRmZwJ8RS2Kofc5W8BUoEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.858 [XNIO-1 task-2] IRmZwJ8RS2Kofc5W8BUoEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.858 [XNIO-1 task-2] IRmZwJ8RS2Kofc5W8BUoEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/449e2a33-d92b-44fc-a845-815f81bfaabf, base path is set to: null +09:02:50.858 [XNIO-1 task-2] IRmZwJ8RS2Kofc5W8BUoEA DEBUG com.networknt.schema.TypeValidator debug - validate( "449e2a33-d92b-44fc-a845-815f81bfaabf", "449e2a33-d92b-44fc-a845-815f81bfaabf", clientId) +09:02:50.871 [XNIO-1 task-2] tFPU0UWTTXGjqm0Av-TrlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dd6fc4df-dec6-423a-84ee-c62a8eec0475 +09:02:50.871 [XNIO-1 task-2] tFPU0UWTTXGjqm0Av-TrlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.871 [XNIO-1 task-2] tFPU0UWTTXGjqm0Av-TrlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:50.871 [XNIO-1 task-2] tFPU0UWTTXGjqm0Av-TrlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dd6fc4df-dec6-423a-84ee-c62a8eec0475 +09:02:50.876 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:50.877 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.878 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:50.878 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf870790-35f2-4ead-a64e-f9eaa2b5","clientDesc":"90b60dda-2ce5-48fc-bacd-3398e9ebc667","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:50.878 [XNIO-1 task-2] Jo5Ds2baTbe_azk2yBuxPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:50.880 [XNIO-1 task-2] XuwPQ1RWTTOSLQnMRjNNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.880 [XNIO-1 task-2] XuwPQ1RWTTOSLQnMRjNNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.880 [XNIO-1 task-2] XuwPQ1RWTTOSLQnMRjNNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.885 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a99925bf-f706-4747-8347-b53270cea371 +09:02:50.911 [XNIO-1 task-2] kF5iK2V9QdC1ADzF3vfrPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.911 [XNIO-1 task-2] kF5iK2V9QdC1ADzF3vfrPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.911 [XNIO-1 task-2] kF5iK2V9QdC1ADzF3vfrPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.911 [XNIO-1 task-2] kF5iK2V9QdC1ADzF3vfrPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.927 [XNIO-1 task-2] q__V7ToETH-NLJr_49N4qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4c8e3dde-569b-4a26-91a2-d644cf3321bd, base path is set to: null +09:02:50.927 [XNIO-1 task-2] q__V7ToETH-NLJr_49N4qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.927 [XNIO-1 task-2] q__V7ToETH-NLJr_49N4qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.928 [XNIO-1 task-2] q__V7ToETH-NLJr_49N4qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4c8e3dde-569b-4a26-91a2-d644cf3321bd, base path is set to: null +09:02:50.928 [XNIO-1 task-2] q__V7ToETH-NLJr_49N4qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c8e3dde-569b-4a26-91a2-d644cf3321bd", "4c8e3dde-569b-4a26-91a2-d644cf3321bd", clientId) +09:02:50.933 [XNIO-1 task-2] W9leCB6YSIa8JgAPT6yskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.933 [XNIO-1 task-2] W9leCB6YSIa8JgAPT6yskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.933 [XNIO-1 task-2] W9leCB6YSIa8JgAPT6yskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.933 [XNIO-1 task-2] W9leCB6YSIa8JgAPT6yskw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:50.937 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5a82d203 +09:02:50.940 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:601f6072 +09:02:50.943 [XNIO-1 task-2] oRNhhuqgQFuue88niESrig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.943 [XNIO-1 task-2] oRNhhuqgQFuue88niESrig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.943 [XNIO-1 task-2] oRNhhuqgQFuue88niESrig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.949 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8fb4588a-a41a-41da-933e-13d2cce6149b +09:02:50.960 [XNIO-1 task-2] jj_dHuRhRTq4j2Ac07is_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.960 [XNIO-1 task-2] jj_dHuRhRTq4j2Ac07is_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.960 [XNIO-1 task-2] jj_dHuRhRTq4j2Ac07is_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:50.960 [XNIO-1 task-2] jj_dHuRhRTq4j2Ac07is_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:50.969 [XNIO-1 task-2] cIg8ZHNCTQqAoGlDj-qI4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f344fc9e-f906-40e9-8d33-53d4d7e33c52, base path is set to: null +09:02:50.969 [XNIO-1 task-2] cIg8ZHNCTQqAoGlDj-qI4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.969 [XNIO-1 task-2] cIg8ZHNCTQqAoGlDj-qI4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.969 [XNIO-1 task-2] cIg8ZHNCTQqAoGlDj-qI4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f344fc9e-f906-40e9-8d33-53d4d7e33c52, base path is set to: null +09:02:50.970 [XNIO-1 task-2] cIg8ZHNCTQqAoGlDj-qI4w DEBUG com.networknt.schema.TypeValidator debug - validate( "f344fc9e-f906-40e9-8d33-53d4d7e33c52", "f344fc9e-f906-40e9-8d33-53d4d7e33c52", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:02:50.978 [XNIO-1 task-2] cIg8ZHNCTQqAoGlDj-qI4w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f344fc9e-f906-40e9-8d33-53d4d7e33c52} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:50.982 [XNIO-1 task-2] rapet8lfQfyYly-d5RrdCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d110a74f-7377-4123-93fa-0edcca37d78e, base path is set to: null +09:02:50.982 [XNIO-1 task-2] rapet8lfQfyYly-d5RrdCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:50.982 [XNIO-1 task-2] rapet8lfQfyYly-d5RrdCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:50.982 [XNIO-1 task-2] rapet8lfQfyYly-d5RrdCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d110a74f-7377-4123-93fa-0edcca37d78e, base path is set to: null +09:02:50.982 [XNIO-1 task-2] rapet8lfQfyYly-d5RrdCA DEBUG com.networknt.schema.TypeValidator debug - validate( "d110a74f-7377-4123-93fa-0edcca37d78e", "d110a74f-7377-4123-93fa-0edcca37d78e", clientId) +09:02:50.987 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5a82d203 +09:02:50.988 [XNIO-1 task-2] WlzYusISS-qLjjbUj2ga5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.988 [XNIO-1 task-2] WlzYusISS-qLjjbUj2ga5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.988 [XNIO-1 task-2] WlzYusISS-qLjjbUj2ga5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.988 [XNIO-1 task-2] WlzYusISS-qLjjbUj2ga5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:50.996 [XNIO-1 task-2] gFWdXbQ6RhGXBZG0FRFMvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.996 [XNIO-1 task-2] gFWdXbQ6RhGXBZG0FRFMvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:50.996 [XNIO-1 task-2] gFWdXbQ6RhGXBZG0FRFMvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.013 [XNIO-1 task-2] ohKCmK5-QlSdS5z4vBv_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e58cdfe-55e2-4b20-9a76-2fef50419e2b +09:02:51.013 [XNIO-1 task-2] ohKCmK5-QlSdS5z4vBv_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.013 [XNIO-1 task-2] ohKCmK5-QlSdS5z4vBv_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.013 [XNIO-1 task-2] ohKCmK5-QlSdS5z4vBv_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e58cdfe-55e2-4b20-9a76-2fef50419e2b +09:02:51.017 [XNIO-1 task-2] ecwHpEkvSt-scjgP0Ss-aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf671301-909f-458b-a603-4eba54705a80, base path is set to: null +09:02:51.017 [XNIO-1 task-2] ecwHpEkvSt-scjgP0Ss-aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.017 [XNIO-1 task-2] ecwHpEkvSt-scjgP0Ss-aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:51.017 [XNIO-1 task-2] ecwHpEkvSt-scjgP0Ss-aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf671301-909f-458b-a603-4eba54705a80, base path is set to: null +09:02:51.018 [XNIO-1 task-2] ecwHpEkvSt-scjgP0Ss-aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cf671301-909f-458b-a603-4eba54705a80", "cf671301-909f-458b-a603-4eba54705a80", clientId) +09:02:51.021 [XNIO-1 task-2] DWVeH82GRMCnpKeAHWzojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/58175178-5c31-400d-9789-aa22762eaab2 +09:02:51.021 [XNIO-1 task-2] DWVeH82GRMCnpKeAHWzojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.021 [XNIO-1 task-2] DWVeH82GRMCnpKeAHWzojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.021 [XNIO-1 task-2] DWVeH82GRMCnpKeAHWzojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/58175178-5c31-400d-9789-aa22762eaab2 +09:02:51.025 [XNIO-1 task-2] DWVeH82GRMCnpKeAHWzojg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.026 [XNIO-1 task-2] DWVeH82GRMCnpKeAHWzojg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:51.030 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.030 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.030 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.030 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:51.030 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:51.030 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG com.networknt.schema.TypeValidator debug - validate( "812c8378-30b6-46d5-a4e7-c91e67256cc3", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:51.030 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:51.031 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:51.031 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG com.networknt.schema.TypeValidator debug - validate( "16632ce1-795f-4159-a559-81abb513", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:51.031 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:51.031 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"16632ce1-795f-4159-a559-81abb513","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:51.031 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.031 [XNIO-1 task-2] OPpwprEGSTafkxBHb6CEhg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:51.036 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1ec9886c +09:02:51.036 [XNIO-1 task-2] iiTN4A2kQJSvFnWqf8eL5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.036 [XNIO-1 task-2] iiTN4A2kQJSvFnWqf8eL5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.036 [XNIO-1 task-2] iiTN4A2kQJSvFnWqf8eL5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.036 [XNIO-1 task-2] iiTN4A2kQJSvFnWqf8eL5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:51.038 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1ec9886c +09:02:51.049 [XNIO-1 task-2] FiaHcxShTH6Xq9PArrp26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/58175178-5c31-400d-9789-aa22762eaab2 +09:02:51.049 [XNIO-1 task-2] FiaHcxShTH6Xq9PArrp26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.049 [XNIO-1 task-2] FiaHcxShTH6Xq9PArrp26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.049 [XNIO-1 task-2] FiaHcxShTH6Xq9PArrp26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/58175178-5c31-400d-9789-aa22762eaab2 +09:02:51.054 [XNIO-1 task-2] FiaHcxShTH6Xq9PArrp26A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.054 [XNIO-1 task-2] FiaHcxShTH6Xq9PArrp26A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:51.059 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.059 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.059 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.059 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "812c8378-30b6-46d5-a4e7-c91e67256cc3", {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "9f514668-f335-45da-9b27-9e57b79b", {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9f514668-f335-45da-9b27-9e57b79b","clientDesc":"812c8378-30b6-46d5-a4e7-c91e67256cc3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.060 [XNIO-1 task-2] DUZbDma0QBq4G75fphFjAA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:51.065 [XNIO-1 task-2] HL1y2Ov4TkyYkp661mIzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/58175178-5c31-400d-9789-aa22762eaab2, base path is set to: null +09:02:51.065 [XNIO-1 task-2] HL1y2Ov4TkyYkp661mIzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.065 [XNIO-1 task-2] HL1y2Ov4TkyYkp661mIzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:51.065 [XNIO-1 task-2] HL1y2Ov4TkyYkp661mIzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/58175178-5c31-400d-9789-aa22762eaab2, base path is set to: null +09:02:51.066 [XNIO-1 task-2] HL1y2Ov4TkyYkp661mIzgA DEBUG com.networknt.schema.TypeValidator debug - validate( "58175178-5c31-400d-9789-aa22762eaab2", "58175178-5c31-400d-9789-aa22762eaab2", clientId) +09:02:51.074 [XNIO-1 task-2] QOudFxSqToGjRMfAu2zmVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/91d8e11b-ce60-4269-940d-862834ec3fe4 +09:02:51.074 [XNIO-1 task-2] QOudFxSqToGjRMfAu2zmVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.074 [XNIO-1 task-2] QOudFxSqToGjRMfAu2zmVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.074 [XNIO-1 task-2] QOudFxSqToGjRMfAu2zmVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/91d8e11b-ce60-4269-940d-862834ec3fe4 +09:02:51.074 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:91d8e11b-ce60-4269-940d-862834ec3fe4 +09:02:51.084 [XNIO-1 task-2] 2z0Bw51FTeCZWAQQYkGI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.084 [XNIO-1 task-2] 2z0Bw51FTeCZWAQQYkGI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.084 [XNIO-1 task-2] 2z0Bw51FTeCZWAQQYkGI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.089 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7b30d352-ddbb-49c1-8ee1-3fefcfa079c1 +09:02:51.090 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:601f6072 +09:02:51.098 [XNIO-1 task-2] GIqaThteSnem-HUdxoxCkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.098 [XNIO-1 task-2] GIqaThteSnem-HUdxoxCkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.098 [XNIO-1 task-2] GIqaThteSnem-HUdxoxCkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.099 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:45956dea-70d2-436e-b370-1bf6897fccc9 +09:02:51.103 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4e160e4c-1560-4e09-acb2-b2d5320dbc9f +09:02:51.104 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4e160e4c-1560-4e09-acb2-b2d5320dbc9f +09:02:51.113 [XNIO-1 task-2] E9aYGP9QTCuE5eRb1P5eEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a75aedd-7f8e-43af-b38a-6dbe1bb7f8d1 +09:02:51.113 [XNIO-1 task-2] E9aYGP9QTCuE5eRb1P5eEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.113 [XNIO-1 task-2] E9aYGP9QTCuE5eRb1P5eEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.113 [XNIO-1 task-2] E9aYGP9QTCuE5eRb1P5eEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a75aedd-7f8e-43af-b38a-6dbe1bb7f8d1 +09:02:51.116 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:db17d45f-edab-4714-8b97-60c1512a7dd1 +09:02:51.119 [XNIO-1 task-2] GFOgjfRRRQu5HadfF7wgrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2651cc8-103d-4f50-8ce3-7f9abfa0bd6d, base path is set to: null +09:02:51.119 [XNIO-1 task-2] GFOgjfRRRQu5HadfF7wgrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.120 [XNIO-1 task-2] GFOgjfRRRQu5HadfF7wgrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:51.120 [XNIO-1 task-2] GFOgjfRRRQu5HadfF7wgrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2651cc8-103d-4f50-8ce3-7f9abfa0bd6d, base path is set to: null +09:02:51.120 [XNIO-1 task-2] GFOgjfRRRQu5HadfF7wgrw DEBUG com.networknt.schema.TypeValidator debug - validate( "a2651cc8-103d-4f50-8ce3-7f9abfa0bd6d", "a2651cc8-103d-4f50-8ce3-7f9abfa0bd6d", clientId) +09:02:51.125 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.125 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.125 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.125 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG com.networknt.schema.TypeValidator debug - validate( "0037a574-de88-4471-b225-40d9c58fab20", {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG com.networknt.schema.TypeValidator debug - validate( "96828fea-06a4-4a09-83d6-c27ce74e", {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"96828fea-06a4-4a09-83d6-c27ce74e","clientDesc":"0037a574-de88-4471-b225-40d9c58fab20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.126 [XNIO-1 task-2] MGIiHUemTT-gtGcp8pwWYA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:51.129 [XNIO-1 task-2] QrAOXQA8Qi-zqYxIE4_h1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/acadd43c-3e5a-4ae2-bfc7-6e9017f0119a, base path is set to: null +09:02:51.129 [XNIO-1 task-2] QrAOXQA8Qi-zqYxIE4_h1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.130 [XNIO-1 task-2] QrAOXQA8Qi-zqYxIE4_h1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:51.130 [XNIO-1 task-2] QrAOXQA8Qi-zqYxIE4_h1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/acadd43c-3e5a-4ae2-bfc7-6e9017f0119a, base path is set to: null +09:02:51.130 [XNIO-1 task-2] QrAOXQA8Qi-zqYxIE4_h1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "acadd43c-3e5a-4ae2-bfc7-6e9017f0119a", "acadd43c-3e5a-4ae2-bfc7-6e9017f0119a", clientId) +09:02:51.131 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ff71cab +09:02:51.132 [XNIO-1 task-2] Gq_ATQqXR-2eg2ELblf4Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/acadd43c-3e5a-4ae2-bfc7-6e9017f0119a +09:02:51.132 [XNIO-1 task-2] Gq_ATQqXR-2eg2ELblf4Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.132 [XNIO-1 task-2] Gq_ATQqXR-2eg2ELblf4Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.132 [XNIO-1 task-2] Gq_ATQqXR-2eg2ELblf4Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/acadd43c-3e5a-4ae2-bfc7-6e9017f0119a +09:02:51.137 [XNIO-1 task-2] Gq_ATQqXR-2eg2ELblf4Tg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.138 [XNIO-1 task-2] Gq_ATQqXR-2eg2ELblf4Tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:51.145 [XNIO-1 task-2] iuTGC1ajQgqF6PEBYyWQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83e144cb-1afd-41c2-8931-71629ddd28e2 +09:02:51.145 [XNIO-1 task-2] iuTGC1ajQgqF6PEBYyWQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.145 [XNIO-1 task-2] iuTGC1ajQgqF6PEBYyWQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.145 [XNIO-1 task-2] iuTGC1ajQgqF6PEBYyWQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83e144cb-1afd-41c2-8931-71629ddd28e2 +09:02:51.150 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.151 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b339d704-0917-43f4-97ef-92c3982d","clientDesc":"f84aa9aa-a308-4357-828c-671c022d3e20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.152 [XNIO-1 task-2] K_4mXUWMQf2tHoWLUKSohA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:51.154 [XNIO-1 task-2] ITV9breHRQu1I66jgzBQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cf671301-909f-458b-a603-4eba54705a80 +09:02:51.154 [XNIO-1 task-2] ITV9breHRQu1I66jgzBQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.154 [XNIO-1 task-2] ITV9breHRQu1I66jgzBQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.154 [XNIO-1 task-2] ITV9breHRQu1I66jgzBQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cf671301-909f-458b-a603-4eba54705a80 +09:02:51.154 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cf671301-909f-458b-a603-4eba54705a80 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:02:51.158 [XNIO-1 task-2] ITV9breHRQu1I66jgzBQGg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/cf671301-909f-458b-a603-4eba54705a80} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:51.166 [XNIO-1 task-2] CH7lG5WeRIm6T9h_cvA-nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.167 [XNIO-1 task-2] CH7lG5WeRIm6T9h_cvA-nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.167 [XNIO-1 task-2] CH7lG5WeRIm6T9h_cvA-nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.167 [XNIO-1 task-2] CH7lG5WeRIm6T9h_cvA-nA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:51.176 [XNIO-1 task-2] bQ8vHJsFTO2kVAwFAk_Bug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.176 [XNIO-1 task-2] bQ8vHJsFTO2kVAwFAk_Bug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.177 [XNIO-1 task-2] bQ8vHJsFTO2kVAwFAk_Bug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.177 [XNIO-1 task-2] bQ8vHJsFTO2kVAwFAk_Bug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:51.183 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.183 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:51.184 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77479c39-01c2-4533-b408-9732195a","clientDesc":"4680e32a-1719-4155-b3db-61b6855f6e52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.185 [XNIO-1 task-2] LfsX74GDR9Gdq4Ty8Kph1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:51.188 [XNIO-1 task-2] 2Xc5jxdsTF6LjFMFxh2VRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.188 [XNIO-1 task-2] 2Xc5jxdsTF6LjFMFxh2VRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.188 [XNIO-1 task-2] 2Xc5jxdsTF6LjFMFxh2VRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.188 [XNIO-1 task-2] 2Xc5jxdsTF6LjFMFxh2VRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:51.199 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.199 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.199 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.redirectUri) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "017439f0-f700-417e-a486-99bf4977f243", {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientDesc) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientType) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientProfile) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec4c7337-bc44-40b0-85f2-3ff9f898", {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.clientName) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.scope) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "nouser", {"clientType":"public","clientProfile":"mobile","clientName":"ec4c7337-bc44-40b0-85f2-3ff9f898","clientDesc":"017439f0-f700-417e-a486-99bf4977f243","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"nouser","host":"lightapi.net"}, requestBody.ownerId) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:51.200 [XNIO-1 task-2] 5mihQiv5QxKe6981iFcbnQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:51.207 [XNIO-1 task-2] xjM_sH8bTcug1UnakP1HOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.207 [XNIO-1 task-2] xjM_sH8bTcug1UnakP1HOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.208 [XNIO-1 task-2] xjM_sH8bTcug1UnakP1HOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.214 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5ff71cab +09:02:51.215 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5ff71cab +09:02:51.219 [XNIO-1 task-2] Z26xaVLpQ7S4l51AtSptEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/480f7bed-8788-4c19-a5d1-d2b7fe797b7c +09:02:51.219 [XNIO-1 task-2] Z26xaVLpQ7S4l51AtSptEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.219 [XNIO-1 task-2] Z26xaVLpQ7S4l51AtSptEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.219 [XNIO-1 task-2] Z26xaVLpQ7S4l51AtSptEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/480f7bed-8788-4c19-a5d1-d2b7fe797b7c +09:02:51.220 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:480f7bed-8788-4c19-a5d1-d2b7fe797b7c +09:02:51.223 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e637fb0c-7226-44dc-ac9d-bec4718585d4 +09:02:51.226 [XNIO-1 task-2] aG4fK2J-R6m6X1VDfQdumg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/141b5e50-b14c-40dd-8aa0-b2f6bb7260f3, base path is set to: null +09:02:51.227 [XNIO-1 task-2] aG4fK2J-R6m6X1VDfQdumg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.227 [XNIO-1 task-2] aG4fK2J-R6m6X1VDfQdumg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:51.227 [XNIO-1 task-2] aG4fK2J-R6m6X1VDfQdumg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/141b5e50-b14c-40dd-8aa0-b2f6bb7260f3, base path is set to: null +09:02:51.227 [XNIO-1 task-2] aG4fK2J-R6m6X1VDfQdumg DEBUG com.networknt.schema.TypeValidator debug - validate( "141b5e50-b14c-40dd-8aa0-b2f6bb7260f3", "141b5e50-b14c-40dd-8aa0-b2f6bb7260f3", clientId) +09:02:51.233 [XNIO-1 task-2] Hfof2b-eSzinRKAGXTTvvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.233 [XNIO-1 task-2] Hfof2b-eSzinRKAGXTTvvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.233 [XNIO-1 task-2] Hfof2b-eSzinRKAGXTTvvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.244 [XNIO-1 task-2] ggvWIvwOS-aksNLozVxogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.244 [XNIO-1 task-2] ggvWIvwOS-aksNLozVxogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.245 [XNIO-1 task-2] ggvWIvwOS-aksNLozVxogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.245 [XNIO-1 task-2] ggvWIvwOS-aksNLozVxogg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:51.256 [XNIO-1 task-2] iXGWrLwDQdWGy4-b0fQvGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/141b5e50-b14c-40dd-8aa0-b2f6bb7260f3 +09:02:51.256 [XNIO-1 task-2] iXGWrLwDQdWGy4-b0fQvGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.256 [XNIO-1 task-2] iXGWrLwDQdWGy4-b0fQvGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.256 [XNIO-1 task-2] iXGWrLwDQdWGy4-b0fQvGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/141b5e50-b14c-40dd-8aa0-b2f6bb7260f3 +09:02:51.267 [XNIO-1 task-2] z86rvg-QQtG7Dw_9PODYtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fa37287c-3c62-4bec-947e-229fe9a13363, base path is set to: null +09:02:51.267 [XNIO-1 task-2] z86rvg-QQtG7Dw_9PODYtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.267 [XNIO-1 task-2] z86rvg-QQtG7Dw_9PODYtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:51.267 [XNIO-1 task-2] z86rvg-QQtG7Dw_9PODYtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fa37287c-3c62-4bec-947e-229fe9a13363, base path is set to: null +09:02:51.267 [XNIO-1 task-2] z86rvg-QQtG7Dw_9PODYtg DEBUG com.networknt.schema.TypeValidator debug - validate( "fa37287c-3c62-4bec-947e-229fe9a13363", "fa37287c-3c62-4bec-947e-229fe9a13363", clientId) +09:02:51.273 [XNIO-1 task-2] FuAu8I_tTDaZSy9XpGS62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa37287c-3c62-4bec-947e-229fe9a13363 +09:02:51.273 [XNIO-1 task-2] FuAu8I_tTDaZSy9XpGS62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:51.273 [XNIO-1 task-2] FuAu8I_tTDaZSy9XpGS62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:51.273 [XNIO-1 task-2] FuAu8I_tTDaZSy9XpGS62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa37287c-3c62-4bec-947e-229fe9a13363 +09:02:51.283 [XNIO-1 task-2] l1hxZvwlTUOAKK8JTrahCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.283 [XNIO-1 task-2] l1hxZvwlTUOAKK8JTrahCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:51.284 [XNIO-1 task-2] l1hxZvwlTUOAKK8JTrahCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:51.289 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a268bf94-d2b3-4b42-8724-b58953438e72 +09:02:51.290 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a268bf94-d2b3-4b42-8724-b58953438e72 +09:02:54.887 [XNIO-1 task-2] oHh0-VqmQ2-IHHu7qB82ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.887 [XNIO-1 task-2] oHh0-VqmQ2-IHHu7qB82ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.907 [XNIO-1 task-2] oHh0-VqmQ2-IHHu7qB82ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.950 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.950 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.950 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG com.networknt.schema.TypeValidator debug - validate( "bf531266-fad1-42b1-85f6-48ef4f221101", {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG com.networknt.schema.TypeValidator debug - validate( "43439b2b-d37b-44f9-bbe8-ce3c4326", {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"43439b2b-d37b-44f9-bbe8-ce3c4326","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:54.951 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:54.952 [XNIO-1 task-2] LAxUF9JTTiauv_2QVcF19w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:54.954 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.955 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.955 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb29bd02-76b1-4278-939b-731912f4","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:54.955 [XNIO-1 task-2] wMkg25VMR7yrihkSt_O8kA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "bf531266-fad1-42b1-85f6-48ef4f221101", {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "590201fe-fdb1-4821-95a8-454f31fa", {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:54.957 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"590201fe-fdb1-4821-95a8-454f31fa","clientDesc":"bf531266-fad1-42b1-85f6-48ef4f221101","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:54.958 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:54.958 [XNIO-1 task-2] YX-o6z3GTt6PuZCeebMp2g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:54.959 [XNIO-1 task-2] b_91vTfCQw2_QPTJNC1LAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:54.959 [XNIO-1 task-2] b_91vTfCQw2_QPTJNC1LAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:54.959 [XNIO-1 task-2] b_91vTfCQw2_QPTJNC1LAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:54.964 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d06e98cb-7008-4ebd-abdb-6dee81ad0040 +09:02:54.965 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d06e98cb-7008-4ebd-abdb-6dee81ad0040 +09:02:54.970 [XNIO-1 task-2] 2_0-aPIySlaIutoL_v3Ohw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.970 [XNIO-1 task-2] 2_0-aPIySlaIutoL_v3Ohw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.970 [XNIO-1 task-2] 2_0-aPIySlaIutoL_v3Ohw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.970 [XNIO-1 task-2] 2_0-aPIySlaIutoL_v3Ohw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:54.974 [XNIO-1 task-2] iehMo9ACSIus4QX2QwteUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d06e98cb-7008-4ebd-abdb-6dee81ad0040 +09:02:54.974 [XNIO-1 task-2] iehMo9ACSIus4QX2QwteUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.974 [XNIO-1 task-2] iehMo9ACSIus4QX2QwteUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:54.974 [XNIO-1 task-2] iehMo9ACSIus4QX2QwteUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d06e98cb-7008-4ebd-abdb-6dee81ad0040 +09:02:54.976 [XNIO-1 task-2] qYy5E28sSrSQRCz8ZdX0jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:54.976 [XNIO-1 task-2] qYy5E28sSrSQRCz8ZdX0jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:54.976 [XNIO-1 task-2] qYy5E28sSrSQRCz8ZdX0jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:54.986 [XNIO-1 task-2] nZVjAL2iRtSi6KZq3FP4aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2d52c16c-746e-4175-ad0e-1db0d3381d0b, base path is set to: null +09:02:54.986 [XNIO-1 task-2] nZVjAL2iRtSi6KZq3FP4aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:54.986 [XNIO-1 task-2] nZVjAL2iRtSi6KZq3FP4aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:54.986 [XNIO-1 task-2] nZVjAL2iRtSi6KZq3FP4aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2d52c16c-746e-4175-ad0e-1db0d3381d0b, base path is set to: null +09:02:54.987 [XNIO-1 task-2] nZVjAL2iRtSi6KZq3FP4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d52c16c-746e-4175-ad0e-1db0d3381d0b", "2d52c16c-746e-4175-ad0e-1db0d3381d0b", clientId) +09:02:54.992 [XNIO-1 task-2] Rv0AqcSQR_m1eKQu63J2qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d06e98cb-7008-4ebd-abdb-6dee81ad0040 +09:02:54.992 [XNIO-1 task-2] Rv0AqcSQR_m1eKQu63J2qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.992 [XNIO-1 task-2] Rv0AqcSQR_m1eKQu63J2qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:54.992 [XNIO-1 task-2] Rv0AqcSQR_m1eKQu63J2qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d06e98cb-7008-4ebd-abdb-6dee81ad0040 +09:02:54.992 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d06e98cb-7008-4ebd-abdb-6dee81ad0040 +09:02:54.996 [XNIO-1 task-2] zrhLpcb9QXCA8aCXyJPlqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.996 [XNIO-1 task-2] zrhLpcb9QXCA8aCXyJPlqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:54.996 [XNIO-1 task-2] zrhLpcb9QXCA8aCXyJPlqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "66f05a9b-d742-4752-8104-ee9b4089a75e", {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8375db67-50e4-409d-a37e-549a3a28", {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.008 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.009 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8375db67-50e4-409d-a37e-549a3a28","clientDesc":"66f05a9b-d742-4752-8104-ee9b4089a75e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.009 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.009 [XNIO-1 task-2] p-ShLAacRbSQdCBFzclP1Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.010 [XNIO-1 task-2] GsqUq5xpSiS1cu4GdI1OMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/94bb1dcb-60dd-46de-b9b3-b12918fa4909, base path is set to: null +09:02:55.011 [XNIO-1 task-2] GsqUq5xpSiS1cu4GdI1OMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.011 [XNIO-1 task-2] GsqUq5xpSiS1cu4GdI1OMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.011 [XNIO-1 task-2] GsqUq5xpSiS1cu4GdI1OMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/94bb1dcb-60dd-46de-b9b3-b12918fa4909, base path is set to: null +09:02:55.011 [XNIO-1 task-2] GsqUq5xpSiS1cu4GdI1OMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "94bb1dcb-60dd-46de-b9b3-b12918fa4909", "94bb1dcb-60dd-46de-b9b3-b12918fa4909", clientId) +09:02:55.016 [XNIO-1 task-2] msBYZSU2QsilAPa7Gq7Rjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2c0fc45-50a7-4c6f-a63b-557e403def99 +09:02:55.016 [XNIO-1 task-2] msBYZSU2QsilAPa7Gq7Rjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.016 [XNIO-1 task-2] msBYZSU2QsilAPa7Gq7Rjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.016 [XNIO-1 task-2] msBYZSU2QsilAPa7Gq7Rjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2c0fc45-50a7-4c6f-a63b-557e403def99 +09:02:55.018 [XNIO-1 task-2] 6znXEUu1Rv2Qf3GzT9goNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2c0fc45-50a7-4c6f-a63b-557e403def99, base path is set to: null +09:02:55.018 [XNIO-1 task-2] 6znXEUu1Rv2Qf3GzT9goNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.018 [XNIO-1 task-2] 6znXEUu1Rv2Qf3GzT9goNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.018 [XNIO-1 task-2] 6znXEUu1Rv2Qf3GzT9goNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2c0fc45-50a7-4c6f-a63b-557e403def99, base path is set to: null +09:02:55.018 [XNIO-1 task-2] 6znXEUu1Rv2Qf3GzT9goNw DEBUG com.networknt.schema.TypeValidator debug - validate( "f2c0fc45-50a7-4c6f-a63b-557e403def99", "f2c0fc45-50a7-4c6f-a63b-557e403def99", clientId) +09:02:55.020 [XNIO-1 task-2] Ugq2twbMSHOvbelc3Oy7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2c0fc45-50a7-4c6f-a63b-557e403def99 +09:02:55.020 [XNIO-1 task-2] Ugq2twbMSHOvbelc3Oy7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.020 [XNIO-1 task-2] Ugq2twbMSHOvbelc3Oy7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.020 [XNIO-1 task-2] Ugq2twbMSHOvbelc3Oy7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2c0fc45-50a7-4c6f-a63b-557e403def99 +09:02:55.026 [XNIO-1 task-2] u85o34w3TVS74txp9k_Jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.026 [XNIO-1 task-2] u85o34w3TVS74txp9k_Jsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.026 [XNIO-1 task-2] u85o34w3TVS74txp9k_Jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.026 [XNIO-1 task-2] u85o34w3TVS74txp9k_Jsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.034 [XNIO-1 task-2] LjGuAK5ZSeKdIROXYbmBcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.035 [XNIO-1 task-2] LjGuAK5ZSeKdIROXYbmBcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.035 [XNIO-1 task-2] LjGuAK5ZSeKdIROXYbmBcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.039 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ee675e3d-40c3-4bdf-93f1-35cd4f990e0a +09:02:55.040 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ee675e3d-40c3-4bdf-93f1-35cd4f990e0a +09:02:55.045 [XNIO-1 task-2] UbCai0ByQcmlxyITinKu2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.045 [XNIO-1 task-2] UbCai0ByQcmlxyITinKu2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.045 [XNIO-1 task-2] UbCai0ByQcmlxyITinKu2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.056 [XNIO-1 task-2] 9z8Q4L-oQzK-xz5_STw12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.056 [XNIO-1 task-2] 9z8Q4L-oQzK-xz5_STw12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.056 [XNIO-1 task-2] 9z8Q4L-oQzK-xz5_STw12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.056 [XNIO-1 task-2] 9z8Q4L-oQzK-xz5_STw12A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.060 [XNIO-1 task-2] q5tLQEHvSz-qFOc_tYDRxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ee675e3d-40c3-4bdf-93f1-35cd4f990e0a +09:02:55.060 [XNIO-1 task-2] q5tLQEHvSz-qFOc_tYDRxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.060 [XNIO-1 task-2] q5tLQEHvSz-qFOc_tYDRxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.061 [XNIO-1 task-2] q5tLQEHvSz-qFOc_tYDRxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ee675e3d-40c3-4bdf-93f1-35cd4f990e0a +09:02:55.061 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ee675e3d-40c3-4bdf-93f1-35cd4f990e0a +09:02:55.066 [XNIO-1 task-2] 9bnffc10SrKrF6ZCxCSWMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d34e6a59-8003-48bd-ba42-e359cc8e34e7 +09:02:55.066 [XNIO-1 task-2] 9bnffc10SrKrF6ZCxCSWMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.066 [XNIO-1 task-2] 9bnffc10SrKrF6ZCxCSWMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.066 [XNIO-1 task-2] 9bnffc10SrKrF6ZCxCSWMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d34e6a59-8003-48bd-ba42-e359cc8e34e7 +09:02:55.071 [XNIO-1 task-2] RxUkGK9IToSOMm90GjpCrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.071 [XNIO-1 task-2] RxUkGK9IToSOMm90GjpCrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.071 [XNIO-1 task-2] RxUkGK9IToSOMm90GjpCrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.082 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.082 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.083 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e21684c-8256-4240-8542-9b09f310","clientDesc":"84538888-5420-4244-9038-ffb755550575","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.084 [XNIO-1 task-2] YwNvvvfBTRWP1bcoT02tfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.085 [XNIO-1 task-2] KW3-_XCHSUGMZU_DBeVYqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.085 [XNIO-1 task-2] KW3-_XCHSUGMZU_DBeVYqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.085 [XNIO-1 task-2] KW3-_XCHSUGMZU_DBeVYqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.086 [XNIO-1 task-2] KW3-_XCHSUGMZU_DBeVYqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.090 [XNIO-1 task-2] G3o-OYmKTbSWgEuauovUuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.090 [XNIO-1 task-2] G3o-OYmKTbSWgEuauovUuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.090 [XNIO-1 task-2] G3o-OYmKTbSWgEuauovUuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.106 [XNIO-1 task-2] Ep3chhYdSrmRCgzN2X6UUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4eaca6ed-c4b9-4c54-9031-3a5620d4b763 +09:02:55.106 [XNIO-1 task-2] Ep3chhYdSrmRCgzN2X6UUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.106 [XNIO-1 task-2] Ep3chhYdSrmRCgzN2X6UUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.106 [XNIO-1 task-2] Ep3chhYdSrmRCgzN2X6UUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4eaca6ed-c4b9-4c54-9031-3a5620d4b763 +09:02:55.111 [XNIO-1 task-2] wjxVXO2_SJCkaarH9afHKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.111 [XNIO-1 task-2] wjxVXO2_SJCkaarH9afHKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.111 [XNIO-1 task-2] wjxVXO2_SJCkaarH9afHKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.122 [XNIO-1 task-2] TcQeny0VQduSndCO6Pg5cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.122 [XNIO-1 task-2] TcQeny0VQduSndCO6Pg5cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.122 [XNIO-1 task-2] TcQeny0VQduSndCO6Pg5cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.122 [XNIO-1 task-2] TcQeny0VQduSndCO6Pg5cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.127 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.127 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.128 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8622fafe-5b0e-4fac-b7a7-30b5b92f","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.129 [XNIO-1 task-2] z81wBPXvSzCae2OGzQW7sw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.130 [XNIO-1 task-2] 62IDX1D5SEeHRUPrTfuHCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.130 [XNIO-1 task-2] 62IDX1D5SEeHRUPrTfuHCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.131 [XNIO-1 task-2] 62IDX1D5SEeHRUPrTfuHCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.136 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a4784c91-04d1-4508-bc17-78f4d0a553b5 +09:02:55.141 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.141 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.141 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.141 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.141 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b81d9885-e142-40fd-885d-58057f58","clientDesc":"627b0eca-d1ff-46b4-bf20-ecaa03ab7cc7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.142 [XNIO-1 task-2] GMd0kjz5TZ6zqnhXSjCluw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.144 [XNIO-1 task-2] 2Ci1a0QoSJC_nWDclRbOgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.144 [XNIO-1 task-2] 2Ci1a0QoSJC_nWDclRbOgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.144 [XNIO-1 task-2] 2Ci1a0QoSJC_nWDclRbOgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.177 [XNIO-1 task-2] J5mOtJaTSIW8GRTT_-Xgnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6dc10331-2066-4059-b87e-bf374e019652 +09:02:55.177 [XNIO-1 task-2] J5mOtJaTSIW8GRTT_-Xgnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.177 [XNIO-1 task-2] J5mOtJaTSIW8GRTT_-Xgnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.177 [XNIO-1 task-2] J5mOtJaTSIW8GRTT_-Xgnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6dc10331-2066-4059-b87e-bf374e019652 +09:02:55.179 [XNIO-1 task-2] nJDZ3SCoSeaHADzO8PXAdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.179 [XNIO-1 task-2] nJDZ3SCoSeaHADzO8PXAdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.179 [XNIO-1 task-2] nJDZ3SCoSeaHADzO8PXAdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.179 [XNIO-1 task-2] nJDZ3SCoSeaHADzO8PXAdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.183 [XNIO-1 task-2] l5EhRlA_TNeNT6axC34Pyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6dc10331-2066-4059-b87e-bf374e019652, base path is set to: null +09:02:55.183 [XNIO-1 task-2] l5EhRlA_TNeNT6axC34Pyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.184 [XNIO-1 task-2] l5EhRlA_TNeNT6axC34Pyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.184 [XNIO-1 task-2] l5EhRlA_TNeNT6axC34Pyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6dc10331-2066-4059-b87e-bf374e019652, base path is set to: null +09:02:55.184 [XNIO-1 task-2] l5EhRlA_TNeNT6axC34Pyg DEBUG com.networknt.schema.TypeValidator debug - validate( "6dc10331-2066-4059-b87e-bf374e019652", "6dc10331-2066-4059-b87e-bf374e019652", clientId) +09:02:55.190 [XNIO-1 task-2] _yRGKzm4TaWTqSdUmBOpAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.190 [XNIO-1 task-2] _yRGKzm4TaWTqSdUmBOpAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.190 [XNIO-1 task-2] _yRGKzm4TaWTqSdUmBOpAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.201 [XNIO-1 task-2] looC3hFtSeGGeZ1xdBCxNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.201 [XNIO-1 task-2] looC3hFtSeGGeZ1xdBCxNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.201 [XNIO-1 task-2] looC3hFtSeGGeZ1xdBCxNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.201 [XNIO-1 task-2] looC3hFtSeGGeZ1xdBCxNA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.205 [XNIO-1 task-2] 0CZw6BYHQNeybHR-HWNUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373 +09:02:55.205 [XNIO-1 task-2] 0CZw6BYHQNeybHR-HWNUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.205 [XNIO-1 task-2] 0CZw6BYHQNeybHR-HWNUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.205 [XNIO-1 task-2] 0CZw6BYHQNeybHR-HWNUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373 +09:02:55.208 [XNIO-1 task-2] S5jWSUjIRfi86rvNwECDXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.208 [XNIO-1 task-2] S5jWSUjIRfi86rvNwECDXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.208 [XNIO-1 task-2] S5jWSUjIRfi86rvNwECDXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.219 [XNIO-1 task-2] AxB9zi_NSOCVmqVcoPUb4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373, base path is set to: null +09:02:55.219 [XNIO-1 task-2] AxB9zi_NSOCVmqVcoPUb4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.219 [XNIO-1 task-2] AxB9zi_NSOCVmqVcoPUb4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.219 [XNIO-1 task-2] AxB9zi_NSOCVmqVcoPUb4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373, base path is set to: null +09:02:55.219 [XNIO-1 task-2] AxB9zi_NSOCVmqVcoPUb4g DEBUG com.networknt.schema.TypeValidator debug - validate( "60521ea4-4da2-44fe-b397-4b5ebff78373", "60521ea4-4da2-44fe-b397-4b5ebff78373", clientId) +09:02:55.221 [XNIO-1 task-2] t5ShIfPrTdi84i_REW8ozA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373 +09:02:55.221 [XNIO-1 task-2] t5ShIfPrTdi84i_REW8ozA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.221 [XNIO-1 task-2] t5ShIfPrTdi84i_REW8ozA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.221 [XNIO-1 task-2] t5ShIfPrTdi84i_REW8ozA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373 +09:02:55.222 [XNIO-1 task-2] m0bBQ90sScG8ZdDN0WCQFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373, base path is set to: null +09:02:55.222 [XNIO-1 task-2] m0bBQ90sScG8ZdDN0WCQFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.223 [XNIO-1 task-2] m0bBQ90sScG8ZdDN0WCQFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.223 [XNIO-1 task-2] m0bBQ90sScG8ZdDN0WCQFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60521ea4-4da2-44fe-b397-4b5ebff78373, base path is set to: null +09:02:55.223 [XNIO-1 task-2] m0bBQ90sScG8ZdDN0WCQFg DEBUG com.networknt.schema.TypeValidator debug - validate( "60521ea4-4da2-44fe-b397-4b5ebff78373", "60521ea4-4da2-44fe-b397-4b5ebff78373", clientId) +09:02:55.228 [XNIO-1 task-2] 8iz07XrFRtepCQC_DreqIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a4784c91-04d1-4508-bc17-78f4d0a553b5 +09:02:55.228 [XNIO-1 task-2] 8iz07XrFRtepCQC_DreqIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.228 [XNIO-1 task-2] 8iz07XrFRtepCQC_DreqIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.228 [XNIO-1 task-2] 8iz07XrFRtepCQC_DreqIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a4784c91-04d1-4508-bc17-78f4d0a553b5 +09:02:55.228 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a4784c91-04d1-4508-bc17-78f4d0a553b5 +09:02:55.233 [XNIO-1 task-2] HYu24H-6QfyRlMQHC7opoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.233 [XNIO-1 task-2] HYu24H-6QfyRlMQHC7opoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.234 [XNIO-1 task-2] HYu24H-6QfyRlMQHC7opoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.244 [XNIO-1 task-2] ZfrPdcBwSsmpFFcL32349Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/19bc230b-4c3a-419e-9332-a3943be2112e +09:02:55.244 [XNIO-1 task-2] ZfrPdcBwSsmpFFcL32349Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.244 [XNIO-1 task-2] ZfrPdcBwSsmpFFcL32349Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.244 [XNIO-1 task-2] ZfrPdcBwSsmpFFcL32349Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/19bc230b-4c3a-419e-9332-a3943be2112e +09:02:55.249 [XNIO-1 task-2] Wt0vjeQLRHWSXfMDruq0XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb, base path is set to: null +09:02:55.249 [XNIO-1 task-2] Wt0vjeQLRHWSXfMDruq0XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.249 [XNIO-1 task-2] Wt0vjeQLRHWSXfMDruq0XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.249 [XNIO-1 task-2] Wt0vjeQLRHWSXfMDruq0XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb, base path is set to: null +09:02:55.250 [XNIO-1 task-2] Wt0vjeQLRHWSXfMDruq0XA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2015dcb-150d-4d4e-bf3b-e7c68c5014cb", "e2015dcb-150d-4d4e-bf3b-e7c68c5014cb", clientId) +09:02:55.252 [XNIO-1 task-2] 2DojaYCjTFeTYOcEh3HQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.252 [XNIO-1 task-2] 2DojaYCjTFeTYOcEh3HQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.252 [XNIO-1 task-2] 2DojaYCjTFeTYOcEh3HQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.252 [XNIO-1 task-2] 2DojaYCjTFeTYOcEh3HQmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.257 [XNIO-1 task-2] u-IjyQw7SnW-Op3SdtSGeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.257 [XNIO-1 task-2] u-IjyQw7SnW-Op3SdtSGeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.257 [XNIO-1 task-2] u-IjyQw7SnW-Op3SdtSGeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.262 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:32065a41-38a6-4fe5-9a9f-00098cde943a +09:02:55.267 [XNIO-1 task-2] WkMIiDUsTJG72QhEfKGs3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb, base path is set to: null +09:02:55.267 [XNIO-1 task-2] WkMIiDUsTJG72QhEfKGs3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.267 [XNIO-1 task-2] WkMIiDUsTJG72QhEfKGs3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.267 [XNIO-1 task-2] WkMIiDUsTJG72QhEfKGs3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb, base path is set to: null +09:02:55.267 [XNIO-1 task-2] WkMIiDUsTJG72QhEfKGs3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e2015dcb-150d-4d4e-bf3b-e7c68c5014cb", "e2015dcb-150d-4d4e-bf3b-e7c68c5014cb", clientId) +09:02:55.269 [XNIO-1 task-2] Yfk-NtBISiWu-nltOuJp8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.269 [XNIO-1 task-2] Yfk-NtBISiWu-nltOuJp8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.269 [XNIO-1 task-2] Yfk-NtBISiWu-nltOuJp8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.280 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.280 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.280 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.280 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG com.networknt.schema.TypeValidator debug - validate( "f6465bde-4d40-433d-b053-439a6c464b99", {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG com.networknt.schema.TypeValidator debug - validate( "83f5d1df-788a-455f-804b-d4ac3fb8", {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"83f5d1df-788a-455f-804b-d4ac3fb8","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.281 [XNIO-1 task-2] Hmhi0TDgRIKr_Yb9gjVEng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.283 [XNIO-1 task-2] fQPHilCwTv6GKb4FFYuV6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9787f012-fe65-492d-8ad5-8b1e5cb4388c, base path is set to: null +09:02:55.283 [XNIO-1 task-2] fQPHilCwTv6GKb4FFYuV6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.283 [XNIO-1 task-2] fQPHilCwTv6GKb4FFYuV6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.283 [XNIO-1 task-2] fQPHilCwTv6GKb4FFYuV6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9787f012-fe65-492d-8ad5-8b1e5cb4388c, base path is set to: null +09:02:55.283 [XNIO-1 task-2] fQPHilCwTv6GKb4FFYuV6w DEBUG com.networknt.schema.TypeValidator debug - validate( "9787f012-fe65-492d-8ad5-8b1e5cb4388c", "9787f012-fe65-492d-8ad5-8b1e5cb4388c", clientId) +09:02:55.288 [XNIO-1 task-2] tdsseD92TX6In-d64gUV8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.288 [XNIO-1 task-2] tdsseD92TX6In-d64gUV8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.288 [XNIO-1 task-2] tdsseD92TX6In-d64gUV8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.288 [XNIO-1 task-2] tdsseD92TX6In-d64gUV8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.292 [XNIO-1 task-2] o9aGL0uVQa-nK8Y3yi8GIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.292 [XNIO-1 task-2] o9aGL0uVQa-nK8Y3yi8GIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.292 [XNIO-1 task-2] o9aGL0uVQa-nK8Y3yi8GIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.292 [XNIO-1 task-2] o9aGL0uVQa-nK8Y3yi8GIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.294 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.294 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.294 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.294 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.294 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.294 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.295 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.295 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.295 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.295 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.295 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.295 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"889b1223-cfba-49a8-bef4-662753fb","clientDesc":"16b50dbc-c01e-42cb-a9ef-9a96f04b8093","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.295 [XNIO-1 task-2] 0AZaQ6EgQkyOT7aqDnWCLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.297 [XNIO-1 task-2] bmLf5vHpRGK3pCdp0-SVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.297 [XNIO-1 task-2] bmLf5vHpRGK3pCdp0-SVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.297 [XNIO-1 task-2] bmLf5vHpRGK3pCdp0-SVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.297 [XNIO-1 task-2] bmLf5vHpRGK3pCdp0-SVOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.302 [XNIO-1 task-2] oaVLVj8nQZKy7daICwL3ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.302 [XNIO-1 task-2] oaVLVj8nQZKy7daICwL3ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.302 [XNIO-1 task-2] oaVLVj8nQZKy7daICwL3ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.313 [XNIO-1 task-2] SQ-FSG7NQ_G6ap8oqkI1xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.313 [XNIO-1 task-2] SQ-FSG7NQ_G6ap8oqkI1xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.313 [XNIO-1 task-2] SQ-FSG7NQ_G6ap8oqkI1xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.313 [XNIO-1 task-2] SQ-FSG7NQ_G6ap8oqkI1xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.316 [XNIO-1 task-2] yyLFg9klTiuNi4j9qCKoRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66df8267-99d8-4326-bb4f-25cd23b54b45, base path is set to: null +09:02:55.316 [XNIO-1 task-2] yyLFg9klTiuNi4j9qCKoRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.316 [XNIO-1 task-2] yyLFg9klTiuNi4j9qCKoRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.316 [XNIO-1 task-2] yyLFg9klTiuNi4j9qCKoRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66df8267-99d8-4326-bb4f-25cd23b54b45, base path is set to: null +09:02:55.316 [XNIO-1 task-2] yyLFg9klTiuNi4j9qCKoRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "66df8267-99d8-4326-bb4f-25cd23b54b45", "66df8267-99d8-4326-bb4f-25cd23b54b45", clientId) +09:02:55.322 [XNIO-1 task-2] ordUx--RRfmaq1yEtsP-sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.322 [XNIO-1 task-2] ordUx--RRfmaq1yEtsP-sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.322 [XNIO-1 task-2] ordUx--RRfmaq1yEtsP-sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.328 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b5d153d7-a117-478f-897d-0e232fd4489a +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.333 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.334 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.334 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.334 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6df6ec11-b85a-4ad5-b5ef-a81258e4","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.334 [XNIO-1 task-2] -LO6fQgzTu2x2buTNa5bjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.336 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.336 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.336 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d40d8e2a-4bd9-41da-9b94-223dc4f55498", {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9bbd5714-d007-4cc0-854e-97647ed3", {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9bbd5714-d007-4cc0-854e-97647ed3","clientDesc":"d40d8e2a-4bd9-41da-9b94-223dc4f55498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.337 [XNIO-1 task-2] xQEwq5-qRlmB4lpXUpEMxQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.340 [XNIO-1 task-2] wadl3E9CS7ixHXVEleqRcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.340 [XNIO-1 task-2] wadl3E9CS7ixHXVEleqRcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.340 [XNIO-1 task-2] wadl3E9CS7ixHXVEleqRcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.351 [XNIO-1 task-2] OHonrI_wTCSzWSB_5kLX-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c27c9351-27b3-49ba-ad06-82591f44268a, base path is set to: null +09:02:55.351 [XNIO-1 task-2] OHonrI_wTCSzWSB_5kLX-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.352 [XNIO-1 task-2] OHonrI_wTCSzWSB_5kLX-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.352 [XNIO-1 task-2] OHonrI_wTCSzWSB_5kLX-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c27c9351-27b3-49ba-ad06-82591f44268a, base path is set to: null +09:02:55.352 [XNIO-1 task-2] OHonrI_wTCSzWSB_5kLX-A DEBUG com.networknt.schema.TypeValidator debug - validate( "c27c9351-27b3-49ba-ad06-82591f44268a", "c27c9351-27b3-49ba-ad06-82591f44268a", clientId) +09:02:55.358 [XNIO-1 task-2] 7nUNQz2uSr2rYT_ca5NyhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/657cd3dc-c4bd-45c3-97f8-030e8ce3fc72 +09:02:55.358 [XNIO-1 task-2] 7nUNQz2uSr2rYT_ca5NyhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.358 [XNIO-1 task-2] 7nUNQz2uSr2rYT_ca5NyhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.358 [XNIO-1 task-2] 7nUNQz2uSr2rYT_ca5NyhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/657cd3dc-c4bd-45c3-97f8-030e8ce3fc72 +09:02:55.364 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.364 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.365 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12943c1f-4097-4330-b0c9-a8828728","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.366 [XNIO-1 task-2] u1mqSekuTIuKn-4-Wqr3oA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.368 [XNIO-1 task-2] aYmoGMvSTbe3GktCxU466A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736 +09:02:55.368 [XNIO-1 task-2] aYmoGMvSTbe3GktCxU466A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.368 [XNIO-1 task-2] aYmoGMvSTbe3GktCxU466A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.368 [XNIO-1 task-2] aYmoGMvSTbe3GktCxU466A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736 +09:02:55.371 [XNIO-1 task-2] SqKHaznERJmUBPbDnoE1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.371 [XNIO-1 task-2] SqKHaznERJmUBPbDnoE1ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.371 [XNIO-1 task-2] SqKHaznERJmUBPbDnoE1ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.371 [XNIO-1 task-2] SqKHaznERJmUBPbDnoE1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.371 [XNIO-1 task-2] SqKHaznERJmUBPbDnoE1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "25fd7850-1f6c-4738-92d1-795846bd3736", "25fd7850-1f6c-4738-92d1-795846bd3736", clientId) +09:02:55.373 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.373 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.373 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.373 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.373 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG com.networknt.schema.TypeValidator debug - validate( "ba5b71d1-d078-4b99-8951-e28cbe343b0c", {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG com.networknt.schema.TypeValidator debug - validate( "70eae207-be08-4e17-a7c6-3d0e5819", {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"70eae207-be08-4e17-a7c6-3d0e5819","clientDesc":"ba5b71d1-d078-4b99-8951-e28cbe343b0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.374 [XNIO-1 task-2] vy-T6WDyRX25oKSD3b6QKg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.376 [XNIO-1 task-2] qatzZME0RnyBGkRYDj2BtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.376 [XNIO-1 task-2] qatzZME0RnyBGkRYDj2BtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.376 [XNIO-1 task-2] qatzZME0RnyBGkRYDj2BtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.376 [XNIO-1 task-2] qatzZME0RnyBGkRYDj2BtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.377 [XNIO-1 task-2] qatzZME0RnyBGkRYDj2BtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25fd7850-1f6c-4738-92d1-795846bd3736", "25fd7850-1f6c-4738-92d1-795846bd3736", clientId) +09:02:55.379 [XNIO-1 task-2] l464RqOZQiaed0gtDZooLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.379 [XNIO-1 task-2] l464RqOZQiaed0gtDZooLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.379 [XNIO-1 task-2] l464RqOZQiaed0gtDZooLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.391 [XNIO-1 task-2] _95LiZ-dR-SnzOeR_azb8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736 +09:02:55.391 [XNIO-1 task-2] _95LiZ-dR-SnzOeR_azb8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.391 [XNIO-1 task-2] _95LiZ-dR-SnzOeR_azb8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.391 [XNIO-1 task-2] _95LiZ-dR-SnzOeR_azb8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736 +09:02:55.393 [XNIO-1 task-2] PPlMA1jkTHKYTY3MGuBiYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.393 [XNIO-1 task-2] PPlMA1jkTHKYTY3MGuBiYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.393 [XNIO-1 task-2] PPlMA1jkTHKYTY3MGuBiYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.393 [XNIO-1 task-2] PPlMA1jkTHKYTY3MGuBiYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.393 [XNIO-1 task-2] PPlMA1jkTHKYTY3MGuBiYw DEBUG com.networknt.schema.TypeValidator debug - validate( "25fd7850-1f6c-4738-92d1-795846bd3736", "25fd7850-1f6c-4738-92d1-795846bd3736", clientId) +09:02:55.396 [XNIO-1 task-2] DgL1YtBSTWOdFpFEPHLnoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.396 [XNIO-1 task-2] DgL1YtBSTWOdFpFEPHLnoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.396 [XNIO-1 task-2] DgL1YtBSTWOdFpFEPHLnoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.407 [XNIO-1 task-2] mxt7YsTdR32TLwJ9j9s3Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736 +09:02:55.407 [XNIO-1 task-2] mxt7YsTdR32TLwJ9j9s3Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.407 [XNIO-1 task-2] mxt7YsTdR32TLwJ9j9s3Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.407 [XNIO-1 task-2] mxt7YsTdR32TLwJ9j9s3Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736 +09:02:55.409 [XNIO-1 task-2] gLCy5Er_TYur8MetR9fNyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.410 [XNIO-1 task-2] gLCy5Er_TYur8MetR9fNyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.410 [XNIO-1 task-2] gLCy5Er_TYur8MetR9fNyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.410 [XNIO-1 task-2] gLCy5Er_TYur8MetR9fNyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/25fd7850-1f6c-4738-92d1-795846bd3736, base path is set to: null +09:02:55.410 [XNIO-1 task-2] gLCy5Er_TYur8MetR9fNyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25fd7850-1f6c-4738-92d1-795846bd3736", "25fd7850-1f6c-4738-92d1-795846bd3736", clientId) +09:02:55.415 [XNIO-1 task-2] 2ZG5Tk7DSiqaaoU0d_FYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32065a41-38a6-4fe5-9a9f-00098cde943a +09:02:55.415 [XNIO-1 task-2] 2ZG5Tk7DSiqaaoU0d_FYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.415 [XNIO-1 task-2] 2ZG5Tk7DSiqaaoU0d_FYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.415 [XNIO-1 task-2] 2ZG5Tk7DSiqaaoU0d_FYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32065a41-38a6-4fe5-9a9f-00098cde943a +09:02:55.415 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:32065a41-38a6-4fe5-9a9f-00098cde943a +09:02:55.420 [XNIO-1 task-2] 9LPFx9ziT725VNipdMvPKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.420 [XNIO-1 task-2] 9LPFx9ziT725VNipdMvPKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.421 [XNIO-1 task-2] 9LPFx9ziT725VNipdMvPKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.431 [XNIO-1 task-2] P7bYrVo4RkmEucgLpbaYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.431 [XNIO-1 task-2] P7bYrVo4RkmEucgLpbaYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.431 [XNIO-1 task-2] P7bYrVo4RkmEucgLpbaYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.431 [XNIO-1 task-2] P7bYrVo4RkmEucgLpbaYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.433 [XNIO-1 task-2] djo45UZLSUqOwOxoHUuI5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.433 [XNIO-1 task-2] djo45UZLSUqOwOxoHUuI5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.433 [XNIO-1 task-2] djo45UZLSUqOwOxoHUuI5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.433 [XNIO-1 task-2] djo45UZLSUqOwOxoHUuI5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.437 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.437 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.437 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f64e31-46be-4798-ac59-e838b28b","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.438 [XNIO-1 task-2] 99nxv46_Sa6TK_dawmgA3w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.440 [XNIO-1 task-2] P6L7sHBzRnmAS0YnmhPVTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e616b2c3-542e-4050-96ea-a10e74a50f6b +09:02:55.440 [XNIO-1 task-2] P6L7sHBzRnmAS0YnmhPVTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.440 [XNIO-1 task-2] P6L7sHBzRnmAS0YnmhPVTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.440 [XNIO-1 task-2] P6L7sHBzRnmAS0YnmhPVTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e616b2c3-542e-4050-96ea-a10e74a50f6b +09:02:55.442 [XNIO-1 task-2] Pdk2emUDS1aNNEea4FxZVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.442 [XNIO-1 task-2] Pdk2emUDS1aNNEea4FxZVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.442 [XNIO-1 task-2] Pdk2emUDS1aNNEea4FxZVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.442 [XNIO-1 task-2] Pdk2emUDS1aNNEea4FxZVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.446 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.446 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.446 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.446 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f7044ca-d6bf-418b-99ca-b6337355","clientDesc":"37840b41-5ffb-49eb-afc2-f6898d057b2e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.447 [XNIO-1 task-2] cJUbxzEJRS2qnnHTuue6dg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.449 [XNIO-1 task-2] z3LeDR-yQYeH2P8a30VoFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.449 [XNIO-1 task-2] z3LeDR-yQYeH2P8a30VoFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.449 [XNIO-1 task-2] z3LeDR-yQYeH2P8a30VoFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.464 [XNIO-1 task-2] DcMkLlD-Q3iXKDp1EVnxpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.465 [XNIO-1 task-2] DcMkLlD-Q3iXKDp1EVnxpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.465 [XNIO-1 task-2] DcMkLlD-Q3iXKDp1EVnxpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.465 [XNIO-1 task-2] DcMkLlD-Q3iXKDp1EVnxpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.481 [XNIO-1 task-2] Ba_Aw9PHQOu86Y9O7wx-6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.481 [XNIO-1 task-2] Ba_Aw9PHQOu86Y9O7wx-6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.481 [XNIO-1 task-2] Ba_Aw9PHQOu86Y9O7wx-6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.481 [XNIO-1 task-2] Ba_Aw9PHQOu86Y9O7wx-6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6465bde-4d40-433d-b053-439a6c464b99", {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.486 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "18c79291-e1df-449a-a716-74566c49", {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.487 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.487 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"18c79291-e1df-449a-a716-74566c49","clientDesc":"f6465bde-4d40-433d-b053-439a6c464b99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.487 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.487 [XNIO-1 task-2] CH_HQ8emTPWj13UgbBSuuQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.489 [XNIO-1 task-2] WfkVO-nwQtOzyWm1zZmXdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b5d153d7-a117-478f-897d-0e232fd4489a, base path is set to: null +09:02:55.489 [XNIO-1 task-2] WfkVO-nwQtOzyWm1zZmXdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.489 [XNIO-1 task-2] WfkVO-nwQtOzyWm1zZmXdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.489 [XNIO-1 task-2] WfkVO-nwQtOzyWm1zZmXdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b5d153d7-a117-478f-897d-0e232fd4489a, base path is set to: null +09:02:55.490 [XNIO-1 task-2] WfkVO-nwQtOzyWm1zZmXdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b5d153d7-a117-478f-897d-0e232fd4489a", "b5d153d7-a117-478f-897d-0e232fd4489a", clientId) +09:02:55.495 [XNIO-1 task-2] YCOS5p5tR92yKGqds0HHow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e616b2c3-542e-4050-96ea-a10e74a50f6b, base path is set to: null +09:02:55.495 [XNIO-1 task-2] YCOS5p5tR92yKGqds0HHow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.495 [XNIO-1 task-2] YCOS5p5tR92yKGqds0HHow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.495 [XNIO-1 task-2] YCOS5p5tR92yKGqds0HHow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e616b2c3-542e-4050-96ea-a10e74a50f6b, base path is set to: null +09:02:55.495 [XNIO-1 task-2] YCOS5p5tR92yKGqds0HHow DEBUG com.networknt.schema.TypeValidator debug - validate( "e616b2c3-542e-4050-96ea-a10e74a50f6b", "e616b2c3-542e-4050-96ea-a10e74a50f6b", clientId) +09:02:55.501 [XNIO-1 task-2] 0OnMs2IMQz2UEs_RspBh0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/80b9c326-9900-4a16-bc2f-0e043d7293c8 +09:02:55.501 [XNIO-1 task-2] 0OnMs2IMQz2UEs_RspBh0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.501 [XNIO-1 task-2] 0OnMs2IMQz2UEs_RspBh0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.501 [XNIO-1 task-2] 0OnMs2IMQz2UEs_RspBh0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/80b9c326-9900-4a16-bc2f-0e043d7293c8 +09:02:55.506 [XNIO-1 task-2] XoAwfeBCQLyD4fHpTm7wWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/20a4d7f0-c926-4690-95aa-86347d140e07, base path is set to: null +09:02:55.506 [XNIO-1 task-2] XoAwfeBCQLyD4fHpTm7wWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.506 [XNIO-1 task-2] XoAwfeBCQLyD4fHpTm7wWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.506 [XNIO-1 task-2] XoAwfeBCQLyD4fHpTm7wWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/20a4d7f0-c926-4690-95aa-86347d140e07, base path is set to: null +09:02:55.506 [XNIO-1 task-2] XoAwfeBCQLyD4fHpTm7wWw DEBUG com.networknt.schema.TypeValidator debug - validate( "20a4d7f0-c926-4690-95aa-86347d140e07", "20a4d7f0-c926-4690-95aa-86347d140e07", clientId) +09:02:55.508 [XNIO-1 task-2] BxtSnFdcT3-eY-KzGro8Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.509 [XNIO-1 task-2] BxtSnFdcT3-eY-KzGro8Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.509 [XNIO-1 task-2] BxtSnFdcT3-eY-KzGro8Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.520 [XNIO-1 task-2] 88Q80lBfQo-z2UR79dzQDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.520 [XNIO-1 task-2] 88Q80lBfQo-z2UR79dzQDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.520 [XNIO-1 task-2] 88Q80lBfQo-z2UR79dzQDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.530 [XNIO-1 task-2] w2UOu_2iRH2ZSM7Hn_7JbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.530 [XNIO-1 task-2] w2UOu_2iRH2ZSM7Hn_7JbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.531 [XNIO-1 task-2] w2UOu_2iRH2ZSM7Hn_7JbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.542 [XNIO-1 task-2] qD2-qo3XTqiw4YpmDcqRfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.542 [XNIO-1 task-2] qD2-qo3XTqiw4YpmDcqRfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.542 [XNIO-1 task-2] qD2-qo3XTqiw4YpmDcqRfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.542 [XNIO-1 task-2] qD2-qo3XTqiw4YpmDcqRfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2015dcb-150d-4d4e-bf3b-e7c68c5014cb +09:02:55.547 [XNIO-1 task-2] MdRd3id1SLCe5sFA_C8pzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.547 [XNIO-1 task-2] MdRd3id1SLCe5sFA_C8pzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.547 [XNIO-1 task-2] MdRd3id1SLCe5sFA_C8pzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.547 [XNIO-1 task-2] MdRd3id1SLCe5sFA_C8pzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.551 [XNIO-1 task-2] MfztG3iDT-yu5IXUNDuiQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.551 [XNIO-1 task-2] MfztG3iDT-yu5IXUNDuiQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.551 [XNIO-1 task-2] MfztG3iDT-yu5IXUNDuiQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.562 [XNIO-1 task-2] pLTuHhEGT2uxuDEpLLWDog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/20a4d7f0-c926-4690-95aa-86347d140e07, base path is set to: null +09:02:55.563 [XNIO-1 task-2] pLTuHhEGT2uxuDEpLLWDog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.563 [XNIO-1 task-2] pLTuHhEGT2uxuDEpLLWDog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.563 [XNIO-1 task-2] pLTuHhEGT2uxuDEpLLWDog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/20a4d7f0-c926-4690-95aa-86347d140e07, base path is set to: null +09:02:55.563 [XNIO-1 task-2] pLTuHhEGT2uxuDEpLLWDog DEBUG com.networknt.schema.TypeValidator debug - validate( "20a4d7f0-c926-4690-95aa-86347d140e07", "20a4d7f0-c926-4690-95aa-86347d140e07", clientId) +09:02:55.567 [XNIO-1 task-2] aJ-Em-9UQy-kRB29in9etw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.568 [XNIO-1 task-2] aJ-Em-9UQy-kRB29in9etw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.568 [XNIO-1 task-2] aJ-Em-9UQy-kRB29in9etw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.568 [XNIO-1 task-2] aJ-Em-9UQy-kRB29in9etw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.571 [XNIO-1 task-2] 4n4CT_u1RJSJk_NXrP8-9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cce45363-88ea-43d8-ab40-7d492dc709c0 +09:02:55.571 [XNIO-1 task-2] 4n4CT_u1RJSJk_NXrP8-9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.572 [XNIO-1 task-2] 4n4CT_u1RJSJk_NXrP8-9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.572 [XNIO-1 task-2] 4n4CT_u1RJSJk_NXrP8-9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cce45363-88ea-43d8-ab40-7d492dc709c0 +09:02:55.576 [XNIO-1 task-2] Ymm4GLiIQ42q_0YUzK0DXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/493b544a-2c02-4c28-b1c2-678cd7820271, base path is set to: null +09:02:55.576 [XNIO-1 task-2] Ymm4GLiIQ42q_0YUzK0DXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.576 [XNIO-1 task-2] Ymm4GLiIQ42q_0YUzK0DXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.577 [XNIO-1 task-2] Ymm4GLiIQ42q_0YUzK0DXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/493b544a-2c02-4c28-b1c2-678cd7820271, base path is set to: null +09:02:55.577 [XNIO-1 task-2] Ymm4GLiIQ42q_0YUzK0DXw DEBUG com.networknt.schema.TypeValidator debug - validate( "493b544a-2c02-4c28-b1c2-678cd7820271", "493b544a-2c02-4c28-b1c2-678cd7820271", clientId) +09:02:55.578 [XNIO-1 task-2] 4WKFEXSlSJiaJ3SeBwZK6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/493b544a-2c02-4c28-b1c2-678cd7820271 +09:02:55.578 [XNIO-1 task-2] 4WKFEXSlSJiaJ3SeBwZK6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.579 [XNIO-1 task-2] 4WKFEXSlSJiaJ3SeBwZK6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.579 [XNIO-1 task-2] 4WKFEXSlSJiaJ3SeBwZK6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/493b544a-2c02-4c28-b1c2-678cd7820271 +09:02:55.580 [XNIO-1 task-2] ug11MM2BRB2khdlY-r14GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.580 [XNIO-1 task-2] ug11MM2BRB2khdlY-r14GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.580 [XNIO-1 task-2] ug11MM2BRB2khdlY-r14GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.585 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.586 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.590 [XNIO-1 task-2] O1UfIlZrQbau36g0pQdCcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.590 [XNIO-1 task-2] O1UfIlZrQbau36g0pQdCcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.590 [XNIO-1 task-2] O1UfIlZrQbau36g0pQdCcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.590 [XNIO-1 task-2] O1UfIlZrQbau36g0pQdCcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.595 [XNIO-1 task-2] ggNv4xj9Rk6M0EUPGJoIBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.595 [XNIO-1 task-2] ggNv4xj9Rk6M0EUPGJoIBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.595 [XNIO-1 task-2] ggNv4xj9Rk6M0EUPGJoIBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.595 [XNIO-1 task-2] ggNv4xj9Rk6M0EUPGJoIBA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.599 [XNIO-1 task-2] fgAKaQVKR3WQxvJCJB4K_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.599 [XNIO-1 task-2] fgAKaQVKR3WQxvJCJB4K_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.599 [XNIO-1 task-2] fgAKaQVKR3WQxvJCJB4K_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.599 [XNIO-1 task-2] fgAKaQVKR3WQxvJCJB4K_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.601 [XNIO-1 task-2] NSanqFN5RNOluTDlBb9ICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062, base path is set to: null +09:02:55.601 [XNIO-1 task-2] NSanqFN5RNOluTDlBb9ICg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.601 [XNIO-1 task-2] NSanqFN5RNOluTDlBb9ICg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.601 [XNIO-1 task-2] NSanqFN5RNOluTDlBb9ICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062, base path is set to: null +09:02:55.601 [XNIO-1 task-2] NSanqFN5RNOluTDlBb9ICg DEBUG com.networknt.schema.TypeValidator debug - validate( "596919dc-874e-4dc1-be50-f1bb512f6062", "596919dc-874e-4dc1-be50-f1bb512f6062", clientId) +09:02:55.602 [XNIO-1 task-2] -QFofDSaTRabNK8HTwZtSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.602 [XNIO-1 task-2] -QFofDSaTRabNK8HTwZtSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.602 [XNIO-1 task-2] -QFofDSaTRabNK8HTwZtSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.602 [XNIO-1 task-2] -QFofDSaTRabNK8HTwZtSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.604 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.604 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.604 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.604 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.604 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.604 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.604 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.605 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.605 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.605 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.605 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.605 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e17d2c70-acec-4fd9-b919-dc587bfb","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.605 [XNIO-1 task-2] IlTMD12rRmazqxOgCMaL5w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.607 [XNIO-1 task-2] 0Cph3z3fR_m3ZiRuph1Pgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.607 [XNIO-1 task-2] 0Cph3z3fR_m3ZiRuph1Pgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.607 [XNIO-1 task-2] 0Cph3z3fR_m3ZiRuph1Pgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.618 [XNIO-1 task-2] 9G52KPhhThaI9sexAwpCfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.618 [XNIO-1 task-2] 9G52KPhhThaI9sexAwpCfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.618 [XNIO-1 task-2] 9G52KPhhThaI9sexAwpCfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.628 [XNIO-1 task-2] e-w2adriR8S5cVZGznAWbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.628 [XNIO-1 task-2] e-w2adriR8S5cVZGznAWbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.628 [XNIO-1 task-2] e-w2adriR8S5cVZGznAWbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.639 [XNIO-1 task-2] lXlvmIjrShujn_vrKYTnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.639 [XNIO-1 task-2] lXlvmIjrShujn_vrKYTnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.639 [XNIO-1 task-2] lXlvmIjrShujn_vrKYTnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.639 [XNIO-1 task-2] lXlvmIjrShujn_vrKYTnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.640 [XNIO-1 task-2] shmW3vXwTqGWrZoPgV7P1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/21faea0c-60a4-47e2-b561-958c28b7fa26, base path is set to: null +09:02:55.641 [XNIO-1 task-2] shmW3vXwTqGWrZoPgV7P1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.641 [XNIO-1 task-2] shmW3vXwTqGWrZoPgV7P1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.641 [XNIO-1 task-2] shmW3vXwTqGWrZoPgV7P1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/21faea0c-60a4-47e2-b561-958c28b7fa26, base path is set to: null +09:02:55.641 [XNIO-1 task-2] shmW3vXwTqGWrZoPgV7P1A DEBUG com.networknt.schema.TypeValidator debug - validate( "21faea0c-60a4-47e2-b561-958c28b7fa26", "21faea0c-60a4-47e2-b561-958c28b7fa26", clientId) +09:02:55.643 [XNIO-1 task-2] W-i5kuJZQmKnYq85WC4UoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.643 [XNIO-1 task-2] W-i5kuJZQmKnYq85WC4UoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.643 [XNIO-1 task-2] W-i5kuJZQmKnYq85WC4UoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.643 [XNIO-1 task-2] W-i5kuJZQmKnYq85WC4UoA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.647 [XNIO-1 task-2] iMKGM8oHTS-s8Wet4CQRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c +09:02:55.647 [XNIO-1 task-2] iMKGM8oHTS-s8Wet4CQRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.647 [XNIO-1 task-2] iMKGM8oHTS-s8Wet4CQRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.647 [XNIO-1 task-2] iMKGM8oHTS-s8Wet4CQRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.649 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.650 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.650 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d6fa2c-7f2b-44e3-ad5a-90c3893b","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.650 [XNIO-1 task-2] 5REBdkFRSZCtDK15kCL7rQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.651 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.651 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG com.networknt.schema.TypeValidator debug - validate( "79591247-8726-42ba-902e-f9cf7ef729f9", {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG com.networknt.schema.TypeValidator debug - validate( "49009b1f-a886-437c-bbae-8b48a509", {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"49009b1f-a886-437c-bbae-8b48a509","clientDesc":"79591247-8726-42ba-902e-f9cf7ef729f9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.652 [XNIO-1 task-2] enU2wxW2RDierj3mJS7Ndw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.654 [XNIO-1 task-2] lyraX1CyT2agh-1_ey0ovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c, base path is set to: null +09:02:55.654 [XNIO-1 task-2] lyraX1CyT2agh-1_ey0ovg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.654 [XNIO-1 task-2] lyraX1CyT2agh-1_ey0ovg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.654 [XNIO-1 task-2] lyraX1CyT2agh-1_ey0ovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c, base path is set to: null +09:02:55.654 [XNIO-1 task-2] lyraX1CyT2agh-1_ey0ovg DEBUG com.networknt.schema.TypeValidator debug - validate( "7d535ff7-5a40-44f4-a6be-f7574df4582c", "7d535ff7-5a40-44f4-a6be-f7574df4582c", clientId) +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8e23e6f-d359-447d-933b-76fa3bdfad0d", {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.656 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "4252bfe0-6070-40c7-a3f5-2963296b", {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.657 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.657 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4252bfe0-6070-40c7-a3f5-2963296b","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.657 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.657 [XNIO-1 task-2] 7_YqiarpQOWX3awcMqi_Xg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.658 [XNIO-1 task-2] VC72mPvBSLCAtLoNnnmkdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.658 [XNIO-1 task-2] VC72mPvBSLCAtLoNnnmkdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.659 [XNIO-1 task-2] VC72mPvBSLCAtLoNnnmkdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.669 [XNIO-1 task-2] vGhFplzAR32Grfp2OyT2gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.669 [XNIO-1 task-2] vGhFplzAR32Grfp2OyT2gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.670 [XNIO-1 task-2] vGhFplzAR32Grfp2OyT2gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.670 [XNIO-1 task-2] vGhFplzAR32Grfp2OyT2gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.673 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.674 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c598e0b8-8692-46e6-9f6c-cdddf9e0","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.675 [XNIO-1 task-2] CCz32IP9SoeLFrc-jEFrrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.676 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb920404-b0de-4118-a14f-992dbd7f95ba", {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1e93137a-f275-4a5b-be14-876de5e6", {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1e93137a-f275-4a5b-be14-876de5e6","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.677 [XNIO-1 task-2] izm2xL1yTDS-wiQINz2nQg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.679 [XNIO-1 task-2] yLGU5AQjQgSuO_76f1jXYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/03487fbd-fa62-4dfa-9e04-6cd043ecc4c4, base path is set to: null +09:02:55.679 [XNIO-1 task-2] yLGU5AQjQgSuO_76f1jXYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.679 [XNIO-1 task-2] yLGU5AQjQgSuO_76f1jXYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.679 [XNIO-1 task-2] yLGU5AQjQgSuO_76f1jXYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/03487fbd-fa62-4dfa-9e04-6cd043ecc4c4, base path is set to: null +09:02:55.679 [XNIO-1 task-2] yLGU5AQjQgSuO_76f1jXYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "03487fbd-fa62-4dfa-9e04-6cd043ecc4c4", "03487fbd-fa62-4dfa-9e04-6cd043ecc4c4", clientId) +09:02:55.684 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.684 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.684 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.684 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb920404-b0de-4118-a14f-992dbd7f95ba", {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG com.networknt.schema.TypeValidator debug - validate( "b582a060-137f-4a62-83a0-e10e715c", {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b582a060-137f-4a62-83a0-e10e715c","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.685 [XNIO-1 task-2] d2lQ8vSFT-2nK2W19UazLA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.687 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.688 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.688 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc54af67-e753-4a8b-8aac-9d24c4ea","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.688 [XNIO-1 task-2] zdRJ3rjRSxeXJQm7s5yITA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.689 [XNIO-1 task-2] HjiK0nyIQAavbCd19JqEBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6 +09:02:55.689 [XNIO-1 task-2] HjiK0nyIQAavbCd19JqEBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.689 [XNIO-1 task-2] HjiK0nyIQAavbCd19JqEBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.689 [XNIO-1 task-2] HjiK0nyIQAavbCd19JqEBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6 +09:02:55.691 [XNIO-1 task-2] C9-QADR4S_uga8-W0UnQQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6, base path is set to: null +09:02:55.691 [XNIO-1 task-2] C9-QADR4S_uga8-W0UnQQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.691 [XNIO-1 task-2] C9-QADR4S_uga8-W0UnQQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.691 [XNIO-1 task-2] C9-QADR4S_uga8-W0UnQQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6, base path is set to: null +09:02:55.692 [XNIO-1 task-2] C9-QADR4S_uga8-W0UnQQA DEBUG com.networknt.schema.TypeValidator debug - validate( "9597bacd-f903-44d4-9a3b-8258478b03f6", "9597bacd-f903-44d4-9a3b-8258478b03f6", clientId) +09:02:55.693 [XNIO-1 task-2] -WbZtzmLSEKPbO8pQ3e1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6 +09:02:55.693 [XNIO-1 task-2] -WbZtzmLSEKPbO8pQ3e1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.693 [XNIO-1 task-2] -WbZtzmLSEKPbO8pQ3e1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.693 [XNIO-1 task-2] -WbZtzmLSEKPbO8pQ3e1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6 +09:02:55.695 [XNIO-1 task-2] Mj1Iy3k1RXO_3uQ3pd_i3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6, base path is set to: null +09:02:55.695 [XNIO-1 task-2] Mj1Iy3k1RXO_3uQ3pd_i3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.695 [XNIO-1 task-2] Mj1Iy3k1RXO_3uQ3pd_i3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.695 [XNIO-1 task-2] Mj1Iy3k1RXO_3uQ3pd_i3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6, base path is set to: null +09:02:55.695 [XNIO-1 task-2] Mj1Iy3k1RXO_3uQ3pd_i3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9597bacd-f903-44d4-9a3b-8258478b03f6", "9597bacd-f903-44d4-9a3b-8258478b03f6", clientId) +09:02:55.696 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bb920404-b0de-4118-a14f-992dbd7f95ba", {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG com.networknt.schema.TypeValidator debug - validate( "364f0418-8a57-423e-9e14-18516920", {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"364f0418-8a57-423e-9e14-18516920","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.697 [XNIO-1 task-2] YLywDX7LQcGcuzKCI4JazQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.699 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.700 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.700 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.700 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.700 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"285a891e-ed9e-4e4d-a1a3-bb212aac","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.700 [XNIO-1 task-2] 4xTEdOb-RkGd-9caatYbrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.701 [XNIO-1 task-2] 6Zuv_idcRtC1aYHUpY6hvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.702 [XNIO-1 task-2] 6Zuv_idcRtC1aYHUpY6hvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.702 [XNIO-1 task-2] 6Zuv_idcRtC1aYHUpY6hvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.713 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.713 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.713 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.713 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.713 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.713 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "5d24081e-25fa-4d99-8bb2-420fa4db2ca4", {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.714 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.714 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.714 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "0b966d9b-ebf2-42b5-a307-72491478", {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.714 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.714 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0b966d9b-ebf2-42b5-a307-72491478","clientDesc":"5d24081e-25fa-4d99-8bb2-420fa4db2ca4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.714 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.714 [XNIO-1 task-2] kPHQD0VBTXGATsArk3qV1w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.716 [XNIO-1 task-2] KGOhrTuZSomU1agGxqHgZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c, base path is set to: null +09:02:55.716 [XNIO-1 task-2] KGOhrTuZSomU1agGxqHgZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.716 [XNIO-1 task-2] KGOhrTuZSomU1agGxqHgZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.716 [XNIO-1 task-2] KGOhrTuZSomU1agGxqHgZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c, base path is set to: null +09:02:55.716 [XNIO-1 task-2] KGOhrTuZSomU1agGxqHgZg DEBUG com.networknt.schema.TypeValidator debug - validate( "7d535ff7-5a40-44f4-a6be-f7574df4582c", "7d535ff7-5a40-44f4-a6be-f7574df4582c", clientId) +09:02:55.718 [XNIO-1 task-2] otQEhd48S7yRQ7AoqWCwUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c +09:02:55.718 [XNIO-1 task-2] otQEhd48S7yRQ7AoqWCwUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.718 [XNIO-1 task-2] otQEhd48S7yRQ7AoqWCwUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.718 [XNIO-1 task-2] otQEhd48S7yRQ7AoqWCwUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7d535ff7-5a40-44f4-a6be-f7574df4582c +09:02:55.722 [XNIO-1 task-2] 0U_0sVhBQZyMK_J3rU6mMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.722 [XNIO-1 task-2] 0U_0sVhBQZyMK_J3rU6mMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.723 [XNIO-1 task-2] 0U_0sVhBQZyMK_J3rU6mMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.727 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4312c3c5-30fe-4f64-9cc7-1483933c83d6 +09:02:55.728 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4312c3c5-30fe-4f64-9cc7-1483933c83d6 +09:02:55.732 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.732 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.732 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG com.networknt.schema.TypeValidator debug - validate( "f4b932e6-84e1-411b-b34f-b2236b2fd1e6", {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG com.networknt.schema.TypeValidator debug - validate( "9704d1ef-cf9a-477d-8f63-4e3aba92", {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9704d1ef-cf9a-477d-8f63-4e3aba92","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.733 [XNIO-1 task-2] xi-4bzSUR12CYFeMPfUhmw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.735 [XNIO-1 task-2] cDDW2OR0Qhqj96zbPX2ccg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd561606-d6c5-488f-9be9-91ffa6b74349, base path is set to: null +09:02:55.735 [XNIO-1 task-2] cDDW2OR0Qhqj96zbPX2ccg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.735 [XNIO-1 task-2] cDDW2OR0Qhqj96zbPX2ccg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.735 [XNIO-1 task-2] cDDW2OR0Qhqj96zbPX2ccg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd561606-d6c5-488f-9be9-91ffa6b74349, base path is set to: null +09:02:55.735 [XNIO-1 task-2] cDDW2OR0Qhqj96zbPX2ccg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd561606-d6c5-488f-9be9-91ffa6b74349", "dd561606-d6c5-488f-9be9-91ffa6b74349", clientId) +09:02:55.737 [XNIO-1 task-2] MEUEri47QOmzdw5Y9emf9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.737 [XNIO-1 task-2] MEUEri47QOmzdw5Y9emf9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.738 [XNIO-1 task-2] MEUEri47QOmzdw5Y9emf9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.748 [XNIO-1 task-2] uyN2rkvbTgGjWqMCmW092Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83cbd044-726a-46d9-89eb-bde9c94de14c +09:02:55.748 [XNIO-1 task-2] uyN2rkvbTgGjWqMCmW092Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.748 [XNIO-1 task-2] uyN2rkvbTgGjWqMCmW092Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.748 [XNIO-1 task-2] uyN2rkvbTgGjWqMCmW092Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83cbd044-726a-46d9-89eb-bde9c94de14c +09:02:55.753 [XNIO-1 task-2] eEU07Bl2Rjes1mY3BHS8rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.753 [XNIO-1 task-2] eEU07Bl2Rjes1mY3BHS8rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.753 [XNIO-1 task-2] eEU07Bl2Rjes1mY3BHS8rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.753 [XNIO-1 task-2] eEU07Bl2Rjes1mY3BHS8rA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.757 [XNIO-1 task-2] mWVWBMeESVCCrXiXn7NI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd561606-d6c5-488f-9be9-91ffa6b74349, base path is set to: null +09:02:55.757 [XNIO-1 task-2] mWVWBMeESVCCrXiXn7NI1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.758 [XNIO-1 task-2] mWVWBMeESVCCrXiXn7NI1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.758 [XNIO-1 task-2] mWVWBMeESVCCrXiXn7NI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd561606-d6c5-488f-9be9-91ffa6b74349, base path is set to: null +09:02:55.758 [XNIO-1 task-2] mWVWBMeESVCCrXiXn7NI1w DEBUG com.networknt.schema.TypeValidator debug - validate( "dd561606-d6c5-488f-9be9-91ffa6b74349", "dd561606-d6c5-488f-9be9-91ffa6b74349", clientId) +09:02:55.759 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.759 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.759 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG com.networknt.schema.TypeValidator debug - validate( "f4b932e6-84e1-411b-b34f-b2236b2fd1e6", {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG com.networknt.schema.TypeValidator debug - validate( "5915d3d1-250e-413c-8f98-105c1231", {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5915d3d1-250e-413c-8f98-105c1231","clientDesc":"f4b932e6-84e1-411b-b34f-b2236b2fd1e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.760 [XNIO-1 task-2] nCtcK1dNRmGiAzQGXszkFw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.762 [XNIO-1 task-2] mNjYI90JRAKa2T_CNiEUtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd561606-d6c5-488f-9be9-91ffa6b74349, base path is set to: null +09:02:55.762 [XNIO-1 task-2] mNjYI90JRAKa2T_CNiEUtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.762 [XNIO-1 task-2] mNjYI90JRAKa2T_CNiEUtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.762 [XNIO-1 task-2] mNjYI90JRAKa2T_CNiEUtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd561606-d6c5-488f-9be9-91ffa6b74349, base path is set to: null +09:02:55.762 [XNIO-1 task-2] mNjYI90JRAKa2T_CNiEUtg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd561606-d6c5-488f-9be9-91ffa6b74349", "dd561606-d6c5-488f-9be9-91ffa6b74349", clientId) +09:02:55.768 [XNIO-1 task-2] 4OiVYwDAQ7SBfaf0w3mCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.768 [XNIO-1 task-2] 4OiVYwDAQ7SBfaf0w3mCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.768 [XNIO-1 task-2] 4OiVYwDAQ7SBfaf0w3mCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.779 [XNIO-1 task-2] QC7U6E6iR8qU44RuRvEmmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.779 [XNIO-1 task-2] QC7U6E6iR8qU44RuRvEmmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.779 [XNIO-1 task-2] QC7U6E6iR8qU44RuRvEmmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.779 [XNIO-1 task-2] QC7U6E6iR8qU44RuRvEmmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.783 [XNIO-1 task-2] 5WjnCHmcSvyH8p9aSwPgDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/408e85ac-570e-4879-a443-b4922741beaf +09:02:55.783 [XNIO-1 task-2] 5WjnCHmcSvyH8p9aSwPgDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.783 [XNIO-1 task-2] 5WjnCHmcSvyH8p9aSwPgDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.783 [XNIO-1 task-2] 5WjnCHmcSvyH8p9aSwPgDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/408e85ac-570e-4879-a443-b4922741beaf +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.786 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.787 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.787 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.787 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f705c639-b5fd-4da2-950d-6c7695a3","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.787 [XNIO-1 task-2] rYkf1uIVTkCw0Zgwcsrlqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.788 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "24acfb75-e1f4-487b-b8c5-f0408c1bf54c", {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "b962f1ba-9c3c-4e2a-b159-380ac9dd", {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b962f1ba-9c3c-4e2a-b159-380ac9dd","clientDesc":"24acfb75-e1f4-487b-b8c5-f0408c1bf54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.789 [XNIO-1 task-2] SYTT9lATRWW37lHEJWJvaw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.791 [XNIO-1 task-2] 4sr7LuFeSkmmpGsDgFvQgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/408e85ac-570e-4879-a443-b4922741beaf, base path is set to: null +09:02:55.791 [XNIO-1 task-2] 4sr7LuFeSkmmpGsDgFvQgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.791 [XNIO-1 task-2] 4sr7LuFeSkmmpGsDgFvQgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.791 [XNIO-1 task-2] 4sr7LuFeSkmmpGsDgFvQgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/408e85ac-570e-4879-a443-b4922741beaf, base path is set to: null +09:02:55.791 [XNIO-1 task-2] 4sr7LuFeSkmmpGsDgFvQgw DEBUG com.networknt.schema.TypeValidator debug - validate( "408e85ac-570e-4879-a443-b4922741beaf", "408e85ac-570e-4879-a443-b4922741beaf", clientId) +09:02:55.796 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.796 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.796 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.796 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.796 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.796 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb920404-b0de-4118-a14f-992dbd7f95ba", {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.796 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.797 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.797 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "f50d6eb1-1e4a-4902-9d90-e753d5e5", {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.797 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.797 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f50d6eb1-1e4a-4902-9d90-e753d5e5","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.797 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.797 [XNIO-1 task-2] oIms2fDjT7yQf6TKEGC_zA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.799 [XNIO-1 task-2] 3FJAjsXfTgGlA-R_Y1_BLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6, base path is set to: null +09:02:55.799 [XNIO-1 task-2] 3FJAjsXfTgGlA-R_Y1_BLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.799 [XNIO-1 task-2] 3FJAjsXfTgGlA-R_Y1_BLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.799 [XNIO-1 task-2] 3FJAjsXfTgGlA-R_Y1_BLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6, base path is set to: null +09:02:55.799 [XNIO-1 task-2] 3FJAjsXfTgGlA-R_Y1_BLg DEBUG com.networknt.schema.TypeValidator debug - validate( "9597bacd-f903-44d4-9a3b-8258478b03f6", "9597bacd-f903-44d4-9a3b-8258478b03f6", clientId) +09:02:55.800 [XNIO-1 task-2] MBXfkdU7TkSQKllDUMOQhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.800 [XNIO-1 task-2] MBXfkdU7TkSQKllDUMOQhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.800 [XNIO-1 task-2] MBXfkdU7TkSQKllDUMOQhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb920404-b0de-4118-a14f-992dbd7f95ba", {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "0395f6e5-5fa8-41f1-a633-13edb0da", {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.812 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0395f6e5-5fa8-41f1-a633-13edb0da","clientDesc":"bb920404-b0de-4118-a14f-992dbd7f95ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.813 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.813 [XNIO-1 task-2] FZsM1NQQSgmgwp7k3-JOgA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.814 [XNIO-1 task-2] bKd3g3z-TReePcSoUftylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/493b544a-2c02-4c28-b1c2-678cd7820271, base path is set to: null +09:02:55.814 [XNIO-1 task-2] bKd3g3z-TReePcSoUftylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.814 [XNIO-1 task-2] bKd3g3z-TReePcSoUftylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.815 [XNIO-1 task-2] bKd3g3z-TReePcSoUftylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/493b544a-2c02-4c28-b1c2-678cd7820271, base path is set to: null +09:02:55.815 [XNIO-1 task-2] bKd3g3z-TReePcSoUftylQ DEBUG com.networknt.schema.TypeValidator debug - validate( "493b544a-2c02-4c28-b1c2-678cd7820271", "493b544a-2c02-4c28-b1c2-678cd7820271", clientId) +09:02:55.819 [XNIO-1 task-2] -mGzqdrERfOppI4inJMIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6 +09:02:55.819 [XNIO-1 task-2] -mGzqdrERfOppI4inJMIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.819 [XNIO-1 task-2] -mGzqdrERfOppI4inJMIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.819 [XNIO-1 task-2] -mGzqdrERfOppI4inJMIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9597bacd-f903-44d4-9a3b-8258478b03f6 +09:02:55.824 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.824 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.824 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bf2ae1-9e75-44b6-a953-5c352018","clientDesc":"a1b94bab-5da3-45c2-b883-03c011c3e509","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.825 [XNIO-1 task-2] 10S8UzrURyu1pBZmCnGLCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.827 [XNIO-1 task-2] QJx4Rv_4TY2zDhnWH3m5Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.827 [XNIO-1 task-2] QJx4Rv_4TY2zDhnWH3m5Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.827 [XNIO-1 task-2] QJx4Rv_4TY2zDhnWH3m5Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.827 [XNIO-1 task-2] QJx4Rv_4TY2zDhnWH3m5Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.827 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:596919dc-874e-4dc1-be50-f1bb512f6062 +09:02:55.832 [XNIO-1 task-2] PtCRKB3QRfWYql-tCksWKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.832 [XNIO-1 task-2] PtCRKB3QRfWYql-tCksWKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.832 [XNIO-1 task-2] PtCRKB3QRfWYql-tCksWKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.843 [XNIO-1 task-2] M2HzqUfyQiaFB3Ywcst6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21faea0c-60a4-47e2-b561-958c28b7fa26 +09:02:55.843 [XNIO-1 task-2] M2HzqUfyQiaFB3Ywcst6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.843 [XNIO-1 task-2] M2HzqUfyQiaFB3Ywcst6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.843 [XNIO-1 task-2] M2HzqUfyQiaFB3Ywcst6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21faea0c-60a4-47e2-b561-958c28b7fa26 +09:02:55.849 [XNIO-1 task-2] fdJ4ZZ23TmumsfXOl6QR6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.849 [XNIO-1 task-2] fdJ4ZZ23TmumsfXOl6QR6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.849 [XNIO-1 task-2] fdJ4ZZ23TmumsfXOl6QR6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.849 [XNIO-1 task-2] fdJ4ZZ23TmumsfXOl6QR6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.853 [XNIO-1 task-2] ddvBfCqARXK9BICirkKrxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.853 [XNIO-1 task-2] ddvBfCqARXK9BICirkKrxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.853 [XNIO-1 task-2] ddvBfCqARXK9BICirkKrxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.864 [XNIO-1 task-2] mdlhsI8nT3mAjCzPbsolFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.864 [XNIO-1 task-2] mdlhsI8nT3mAjCzPbsolFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.864 [XNIO-1 task-2] mdlhsI8nT3mAjCzPbsolFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.864 [XNIO-1 task-2] mdlhsI8nT3mAjCzPbsolFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.869 [XNIO-1 task-2] 6lMd8lKWR4GKxg56VtcxwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e7da1082-7302-40da-bbb9-79fd8a937d3c, base path is set to: null +09:02:55.869 [XNIO-1 task-2] 6lMd8lKWR4GKxg56VtcxwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.869 [XNIO-1 task-2] 6lMd8lKWR4GKxg56VtcxwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.869 [XNIO-1 task-2] 6lMd8lKWR4GKxg56VtcxwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e7da1082-7302-40da-bbb9-79fd8a937d3c, base path is set to: null +09:02:55.869 [XNIO-1 task-2] 6lMd8lKWR4GKxg56VtcxwA DEBUG com.networknt.schema.TypeValidator debug - validate( "e7da1082-7302-40da-bbb9-79fd8a937d3c", "e7da1082-7302-40da-bbb9-79fd8a937d3c", clientId) +09:02:55.874 [XNIO-1 task-2] FgNhdVKUT0eEmNGBa2o1Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.874 [XNIO-1 task-2] FgNhdVKUT0eEmNGBa2o1Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.874 [XNIO-1 task-2] FgNhdVKUT0eEmNGBa2o1Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.885 [XNIO-1 task-2] cFBRtwuxR3-3tIXs8-mvUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4312c3c5-30fe-4f64-9cc7-1483933c83d6 +09:02:55.885 [XNIO-1 task-2] cFBRtwuxR3-3tIXs8-mvUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.885 [XNIO-1 task-2] cFBRtwuxR3-3tIXs8-mvUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.885 [XNIO-1 task-2] cFBRtwuxR3-3tIXs8-mvUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4312c3c5-30fe-4f64-9cc7-1483933c83d6 +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.887 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5aa4057-6886-4670-b92b-5de28a4a","clientDesc":"f8e23e6f-d359-447d-933b-76fa3bdfad0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.888 [XNIO-1 task-2] 29rZUafaTMCpZ-KRRpnADQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.889 [XNIO-1 task-2] ZVwGXeGwRreOur7Gjk1JbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/091e8646-76a0-4427-abe6-9809d54d1072 +09:02:55.889 [XNIO-1 task-2] ZVwGXeGwRreOur7Gjk1JbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.889 [XNIO-1 task-2] ZVwGXeGwRreOur7Gjk1JbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.889 [XNIO-1 task-2] ZVwGXeGwRreOur7Gjk1JbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/091e8646-76a0-4427-abe6-9809d54d1072 +09:02:55.891 [XNIO-1 task-2] Gapi8yjMTvanx-ZP1k_S5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.891 [XNIO-1 task-2] Gapi8yjMTvanx-ZP1k_S5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.891 [XNIO-1 task-2] Gapi8yjMTvanx-ZP1k_S5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.891 [XNIO-1 task-2] Gapi8yjMTvanx-ZP1k_S5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.895 [XNIO-1 task-2] CKodt3gkRWKMGbod8V92Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.895 [XNIO-1 task-2] CKodt3gkRWKMGbod8V92Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.895 [XNIO-1 task-2] CKodt3gkRWKMGbod8V92Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.895 [XNIO-1 task-2] CKodt3gkRWKMGbod8V92Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.898 [XNIO-1 task-2] WhPVtQGaTyyIzpfKYViM-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.898 [XNIO-1 task-2] WhPVtQGaTyyIzpfKYViM-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.899 [XNIO-1 task-2] WhPVtQGaTyyIzpfKYViM-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.899 [XNIO-1 task-2] WhPVtQGaTyyIzpfKYViM-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.902 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.902 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.902 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.902 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b070d0f1-49f2-4836-8d7d-4aff4294","clientDesc":"ef2cfb95-e3f6-4916-9c27-977c24ec2fd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.903 [XNIO-1 task-2] yaslZmp0RSCaQ0f_D3WLsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.905 [XNIO-1 task-2] VMAdRH_qQ7u8rGBLaJ64jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eeb96d11-073f-41e4-9841-7dea48dfb490 +09:02:55.905 [XNIO-1 task-2] VMAdRH_qQ7u8rGBLaJ64jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.905 [XNIO-1 task-2] VMAdRH_qQ7u8rGBLaJ64jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.905 [XNIO-1 task-2] VMAdRH_qQ7u8rGBLaJ64jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eeb96d11-073f-41e4-9841-7dea48dfb490 +09:02:55.909 [XNIO-1 task-2] Av1JAoHiQ52OS37kbd0-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4312c3c5-30fe-4f64-9cc7-1483933c83d6, base path is set to: null +09:02:55.910 [XNIO-1 task-2] Av1JAoHiQ52OS37kbd0-8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.910 [XNIO-1 task-2] Av1JAoHiQ52OS37kbd0-8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.910 [XNIO-1 task-2] Av1JAoHiQ52OS37kbd0-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4312c3c5-30fe-4f64-9cc7-1483933c83d6, base path is set to: null +09:02:55.910 [XNIO-1 task-2] Av1JAoHiQ52OS37kbd0-8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4312c3c5-30fe-4f64-9cc7-1483933c83d6", "4312c3c5-30fe-4f64-9cc7-1483933c83d6", clientId) +09:02:55.911 [XNIO-1 task-2] QrET2ICLSmy4QZraC34I3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.911 [XNIO-1 task-2] QrET2ICLSmy4QZraC34I3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.911 [XNIO-1 task-2] QrET2ICLSmy4QZraC34I3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.911 [XNIO-1 task-2] QrET2ICLSmy4QZraC34I3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:55.915 [XNIO-1 task-2] XY0DK3oyR9KhBxW18c2SBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/091e8646-76a0-4427-abe6-9809d54d1072 +09:02:55.915 [XNIO-1 task-2] XY0DK3oyR9KhBxW18c2SBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.915 [XNIO-1 task-2] XY0DK3oyR9KhBxW18c2SBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.915 [XNIO-1 task-2] XY0DK3oyR9KhBxW18c2SBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/091e8646-76a0-4427-abe6-9809d54d1072 +09:02:55.920 [XNIO-1 task-2] OPDrxFymTIqxVdtLC7vfqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.920 [XNIO-1 task-2] OPDrxFymTIqxVdtLC7vfqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.920 [XNIO-1 task-2] OPDrxFymTIqxVdtLC7vfqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.920 [XNIO-1 task-2] OPDrxFymTIqxVdtLC7vfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.936 [XNIO-1 task-2] 5CXMQ2T0SjCjdEyp896Uiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.937 [XNIO-1 task-2] 5CXMQ2T0SjCjdEyp896Uiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.937 [XNIO-1 task-2] 5CXMQ2T0SjCjdEyp896Uiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.937 [XNIO-1 task-2] 5CXMQ2T0SjCjdEyp896Uiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.940 [XNIO-1 task-2] blOtagpVTae91ycoq4z6hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4312c3c5-30fe-4f64-9cc7-1483933c83d6, base path is set to: null +09:02:55.941 [XNIO-1 task-2] blOtagpVTae91ycoq4z6hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.941 [XNIO-1 task-2] blOtagpVTae91ycoq4z6hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.941 [XNIO-1 task-2] blOtagpVTae91ycoq4z6hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4312c3c5-30fe-4f64-9cc7-1483933c83d6, base path is set to: null +09:02:55.941 [XNIO-1 task-2] blOtagpVTae91ycoq4z6hg DEBUG com.networknt.schema.TypeValidator debug - validate( "4312c3c5-30fe-4f64-9cc7-1483933c83d6", "4312c3c5-30fe-4f64-9cc7-1483933c83d6", clientId) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.946 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3001fe85-2216-4243-a57b-d0143c11","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.947 [XNIO-1 task-2] Z4rjLQx9TamWNV9ATplI_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.948 [XNIO-1 task-2] kLP2vpG1TiKgBhbwWkVYhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326 +09:02:55.948 [XNIO-1 task-2] kLP2vpG1TiKgBhbwWkVYhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.948 [XNIO-1 task-2] kLP2vpG1TiKgBhbwWkVYhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.948 [XNIO-1 task-2] kLP2vpG1TiKgBhbwWkVYhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326 +09:02:55.950 [XNIO-1 task-2] w_Y1zMb5SKGGF5EzdBp1Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.950 [XNIO-1 task-2] w_Y1zMb5SKGGF5EzdBp1Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.951 [XNIO-1 task-2] w_Y1zMb5SKGGF5EzdBp1Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.961 [XNIO-1 task-2] PRg80_SHQJ-kunjSwhWRhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.961 [XNIO-1 task-2] PRg80_SHQJ-kunjSwhWRhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.961 [XNIO-1 task-2] PRg80_SHQJ-kunjSwhWRhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.961 [XNIO-1 task-2] PRg80_SHQJ-kunjSwhWRhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.965 [XNIO-1 task-2] L9s8xv9vQpGlS5fkGu_Jlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:55.965 [XNIO-1 task-2] L9s8xv9vQpGlS5fkGu_Jlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.965 [XNIO-1 task-2] L9s8xv9vQpGlS5fkGu_Jlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:55.965 [XNIO-1 task-2] L9s8xv9vQpGlS5fkGu_Jlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:55.965 [XNIO-1 task-2] L9s8xv9vQpGlS5fkGu_Jlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", clientId) +09:02:55.967 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.967 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.967 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.967 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.967 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.967 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG com.networknt.schema.TypeValidator debug - validate( "f82c89c1-3fae-4a93-9d5d-800504ce8aeb", {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.968 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.968 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.968 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG com.networknt.schema.TypeValidator debug - validate( "91b624ce-cb5c-480f-a32a-65795054", {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.968 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.968 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"91b624ce-cb5c-480f-a32a-65795054","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.968 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.968 [XNIO-1 task-2] o--lt1-QQdu_1-7LstMLRg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.970 [XNIO-1 task-2] lj2ojIN5Sfau5ilgScyDEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.970 [XNIO-1 task-2] lj2ojIN5Sfau5ilgScyDEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.970 [XNIO-1 task-2] lj2ojIN5Sfau5ilgScyDEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.970 [XNIO-1 task-2] lj2ojIN5Sfau5ilgScyDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:55.973 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.974 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"603bffba-3c4f-4838-8c4e-6fbd8627","clientDesc":"5e4b3b90-d52e-4c60-a9c1-99fb6f879aff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.975 [XNIO-1 task-2] 8-d4r2yBRW-R7xE8lRRieA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.976 [XNIO-1 task-2] Q0kjP6SCSwe22UHb95qLXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef2f7fc7-83fb-48bd-905f-536c41830830 +09:02:55.976 [XNIO-1 task-2] Q0kjP6SCSwe22UHb95qLXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.976 [XNIO-1 task-2] Q0kjP6SCSwe22UHb95qLXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:55.976 [XNIO-1 task-2] Q0kjP6SCSwe22UHb95qLXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef2f7fc7-83fb-48bd-905f-536c41830830 +09:02:55.981 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.981 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.981 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.981 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.981 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.981 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.982 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.982 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.982 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.982 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.982 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.982 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e738be1-fe00-482c-b59f-2d4cf0e3","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.982 [XNIO-1 task-2] 4PZR46aESE-2h99PUed_8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62372bd3-6ca3-4718-9f7b-72e82b4307ea", {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a5794642-9ca4-4511-a879-00c20633", {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a5794642-9ca4-4511-a879-00c20633","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:55.984 [XNIO-1 task-2] edIyUgTTTpC89x-luYXjfQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:55.986 [XNIO-1 task-2] ai-CW1PeQZC2g2VOQeX_fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.986 [XNIO-1 task-2] ai-CW1PeQZC2g2VOQeX_fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.986 [XNIO-1 task-2] ai-CW1PeQZC2g2VOQeX_fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.997 [XNIO-1 task-2] UIbiQwzoRFS3vU2lTbUy-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.997 [XNIO-1 task-2] UIbiQwzoRFS3vU2lTbUy-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:55.997 [XNIO-1 task-2] UIbiQwzoRFS3vU2lTbUy-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:55.998 [XNIO-1 task-2] UIbiQwzoRFS3vU2lTbUy-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.002 [XNIO-1 task-2] ezd1r2KhT6OPjASuo0EK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32612f60-d58a-4a18-9ae5-ee79fc97bf0a, base path is set to: null +09:02:56.002 [XNIO-1 task-2] ezd1r2KhT6OPjASuo0EK8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.002 [XNIO-1 task-2] ezd1r2KhT6OPjASuo0EK8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.002 [XNIO-1 task-2] ezd1r2KhT6OPjASuo0EK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32612f60-d58a-4a18-9ae5-ee79fc97bf0a, base path is set to: null +09:02:56.002 [XNIO-1 task-2] ezd1r2KhT6OPjASuo0EK8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "32612f60-d58a-4a18-9ae5-ee79fc97bf0a", "32612f60-d58a-4a18-9ae5-ee79fc97bf0a", clientId) +09:02:56.004 [XNIO-1 task-2] A1ysQneRSKeZHtCKqxzzAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.004 [XNIO-1 task-2] A1ysQneRSKeZHtCKqxzzAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.004 [XNIO-1 task-2] A1ysQneRSKeZHtCKqxzzAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.004 [XNIO-1 task-2] A1ysQneRSKeZHtCKqxzzAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.008 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.008 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.008 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.008 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.008 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "62372bd3-6ca3-4718-9f7b-72e82b4307ea", {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "641e0b58-8706-4eb9-bc9d-2d8b1373", {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"641e0b58-8706-4eb9-bc9d-2d8b1373","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.009 [XNIO-1 task-2] POzF3XN3RmaFOmnBtXFIKw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.011 [XNIO-1 task-2] H7-K8d7UQ56B-hOEgvdSHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.011 [XNIO-1 task-2] H7-K8d7UQ56B-hOEgvdSHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.011 [XNIO-1 task-2] H7-K8d7UQ56B-hOEgvdSHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.022 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.022 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.022 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb6aeddc-e207-4fae-86e8-f1252242","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.023 [XNIO-1 task-2] VobSXebJR1Wp01d2IV6SxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.025 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.025 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.025 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.025 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG com.networknt.schema.TypeValidator debug - validate( "62372bd3-6ca3-4718-9f7b-72e82b4307ea", {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG com.networknt.schema.TypeValidator debug - validate( "46b981ce-8608-4482-8e8d-ab7d779f", {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"46b981ce-8608-4482-8e8d-ab7d779f","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.026 [XNIO-1 task-2] vxljpNyQTxSSavbkGuzU1w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.028 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.029 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5946200-3e7f-4119-9da4-657f7ea0","clientDesc":"62372bd3-6ca3-4718-9f7b-72e82b4307ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.029 [XNIO-1 task-2] v4_tWK8nRlSytbrxjMGo2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.030 [XNIO-1 task-2] bDNkj-lkQuKE5JSagNs3sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32612f60-d58a-4a18-9ae5-ee79fc97bf0a +09:02:56.030 [XNIO-1 task-2] bDNkj-lkQuKE5JSagNs3sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.031 [XNIO-1 task-2] bDNkj-lkQuKE5JSagNs3sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.031 [XNIO-1 task-2] bDNkj-lkQuKE5JSagNs3sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32612f60-d58a-4a18-9ae5-ee79fc97bf0a +09:02:56.035 [XNIO-1 task-2] DkL33XiSTpGTEDOx2birFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/143f8c1b-35c7-41a5-916e-a5b62d69acad, base path is set to: null +09:02:56.036 [XNIO-1 task-2] DkL33XiSTpGTEDOx2birFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.036 [XNIO-1 task-2] DkL33XiSTpGTEDOx2birFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.036 [XNIO-1 task-2] DkL33XiSTpGTEDOx2birFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/143f8c1b-35c7-41a5-916e-a5b62d69acad, base path is set to: null +09:02:56.036 [XNIO-1 task-2] DkL33XiSTpGTEDOx2birFA DEBUG com.networknt.schema.TypeValidator debug - validate( "143f8c1b-35c7-41a5-916e-a5b62d69acad", "143f8c1b-35c7-41a5-916e-a5b62d69acad", clientId) +09:02:56.041 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "55910975-2e6f-4c79-b9c4-fa0944ec964d", {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "57dc44ab-79b5-43c6-bff1-bf91b68e", {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"57dc44ab-79b5-43c6-bff1-bf91b68e","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.042 [XNIO-1 task-2] ILIfRml9RpOO3YdZzhla8A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.044 [XNIO-1 task-2] HKioFpn6QGW-AtFGvrqSZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e36bd96a-7b3c-49c5-96e8-0db7372b3079, base path is set to: null +09:02:56.044 [XNIO-1 task-2] HKioFpn6QGW-AtFGvrqSZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.044 [XNIO-1 task-2] HKioFpn6QGW-AtFGvrqSZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.044 [XNIO-1 task-2] HKioFpn6QGW-AtFGvrqSZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e36bd96a-7b3c-49c5-96e8-0db7372b3079, base path is set to: null +09:02:56.044 [XNIO-1 task-2] HKioFpn6QGW-AtFGvrqSZg DEBUG com.networknt.schema.TypeValidator debug - validate( "e36bd96a-7b3c-49c5-96e8-0db7372b3079", "e36bd96a-7b3c-49c5-96e8-0db7372b3079", clientId) +09:02:56.046 [XNIO-1 task-2] bXHDftP7RDme4_fcTV9byw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326 +09:02:56.046 [XNIO-1 task-2] bXHDftP7RDme4_fcTV9byw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.046 [XNIO-1 task-2] bXHDftP7RDme4_fcTV9byw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.046 [XNIO-1 task-2] bXHDftP7RDme4_fcTV9byw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326 +09:02:56.048 [XNIO-1 task-2] LGWG24LKQFeS6d9wtNrRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.048 [XNIO-1 task-2] LGWG24LKQFeS6d9wtNrRHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.048 [XNIO-1 task-2] LGWG24LKQFeS6d9wtNrRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.059 [XNIO-1 task-2] bVevN_CbStGnv0Dq1gzLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1427fc9-3e1c-4d48-9074-5bf8113f4e78, base path is set to: null +09:02:56.059 [XNIO-1 task-2] bVevN_CbStGnv0Dq1gzLjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.059 [XNIO-1 task-2] bVevN_CbStGnv0Dq1gzLjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.059 [XNIO-1 task-2] bVevN_CbStGnv0Dq1gzLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1427fc9-3e1c-4d48-9074-5bf8113f4e78, base path is set to: null +09:02:56.059 [XNIO-1 task-2] bVevN_CbStGnv0Dq1gzLjA DEBUG com.networknt.schema.TypeValidator debug - validate( "c1427fc9-3e1c-4d48-9074-5bf8113f4e78", "c1427fc9-3e1c-4d48-9074-5bf8113f4e78", clientId) +09:02:56.064 [XNIO-1 task-2] SwiGa2wmTEyVksJVJjx2Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04fb8402-dcf9-4e6f-ba11-04e85a79b2db +09:02:56.064 [XNIO-1 task-2] SwiGa2wmTEyVksJVJjx2Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.064 [XNIO-1 task-2] SwiGa2wmTEyVksJVJjx2Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.065 [XNIO-1 task-2] SwiGa2wmTEyVksJVJjx2Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04fb8402-dcf9-4e6f-ba11-04e85a79b2db +09:02:56.069 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.070 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"31cc5eb0-b959-4f0c-83fc-100bd6e7","clientDesc":"9fe3d4b1-6344-4640-b83e-af4a2d0bc4fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.071 [XNIO-1 task-2] 1Xg1c4VZSEab50QRyt8dIg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.072 [XNIO-1 task-2] SWeI__TjRvOCruNGbNQB_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.072 [XNIO-1 task-2] SWeI__TjRvOCruNGbNQB_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.072 [XNIO-1 task-2] SWeI__TjRvOCruNGbNQB_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.072 [XNIO-1 task-2] SWeI__TjRvOCruNGbNQB_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.077 [XNIO-1 task-2] w0LmiQcdSgaM7sItcLD3Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04fb8402-dcf9-4e6f-ba11-04e85a79b2db +09:02:56.077 [XNIO-1 task-2] w0LmiQcdSgaM7sItcLD3Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.077 [XNIO-1 task-2] w0LmiQcdSgaM7sItcLD3Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.077 [XNIO-1 task-2] w0LmiQcdSgaM7sItcLD3Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04fb8402-dcf9-4e6f-ba11-04e85a79b2db +09:02:56.083 [XNIO-1 task-2] vZ5Tqkh9S3edfLlcRSjDwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.083 [XNIO-1 task-2] vZ5Tqkh9S3edfLlcRSjDwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.083 [XNIO-1 task-2] vZ5Tqkh9S3edfLlcRSjDwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.083 [XNIO-1 task-2] vZ5Tqkh9S3edfLlcRSjDwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.088 [XNIO-1 task-2] OTnhSVD0Qq6pzAVZSvwgyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.088 [XNIO-1 task-2] OTnhSVD0Qq6pzAVZSvwgyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.088 [XNIO-1 task-2] OTnhSVD0Qq6pzAVZSvwgyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.099 [XNIO-1 task-2] 0k6ScIMnQxC7yW85PmrnTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.099 [XNIO-1 task-2] 0k6ScIMnQxC7yW85PmrnTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.099 [XNIO-1 task-2] 0k6ScIMnQxC7yW85PmrnTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.099 [XNIO-1 task-2] 0k6ScIMnQxC7yW85PmrnTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.104 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fc404af-5fdb-4d3e-8d6a-3a0baf14","clientDesc":"3c219b1f-7b94-44d0-9b10-c99ae8f6d846","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.105 [XNIO-1 task-2] uILanlG4QamSiPa5sVzygw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.107 [XNIO-1 task-2] MWgtIcd2RqKb_ZqOhuPqZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.107 [XNIO-1 task-2] MWgtIcd2RqKb_ZqOhuPqZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.107 [XNIO-1 task-2] MWgtIcd2RqKb_ZqOhuPqZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.107 [XNIO-1 task-2] MWgtIcd2RqKb_ZqOhuPqZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.112 [XNIO-1 task-2] Qf3UMK0EQWCXP1BYseuCIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13b27c59-c480-42a4-9255-b3b61e385e72 +09:02:56.112 [XNIO-1 task-2] Qf3UMK0EQWCXP1BYseuCIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.112 [XNIO-1 task-2] Qf3UMK0EQWCXP1BYseuCIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.112 [XNIO-1 task-2] Qf3UMK0EQWCXP1BYseuCIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13b27c59-c480-42a4-9255-b3b61e385e72 +09:02:56.114 [XNIO-1 task-2] xuaMexYrTRK7nbmvjVkt4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13b27c59-c480-42a4-9255-b3b61e385e72, base path is set to: null +09:02:56.114 [XNIO-1 task-2] xuaMexYrTRK7nbmvjVkt4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.114 [XNIO-1 task-2] xuaMexYrTRK7nbmvjVkt4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.114 [XNIO-1 task-2] xuaMexYrTRK7nbmvjVkt4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13b27c59-c480-42a4-9255-b3b61e385e72, base path is set to: null +09:02:56.114 [XNIO-1 task-2] xuaMexYrTRK7nbmvjVkt4A DEBUG com.networknt.schema.TypeValidator debug - validate( "13b27c59-c480-42a4-9255-b3b61e385e72", "13b27c59-c480-42a4-9255-b3b61e385e72", clientId) +09:02:56.119 [XNIO-1 task-2] chk_yeALThqW3wj8k_5MFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7620e957-c636-4adb-9755-09da05e885f3 +09:02:56.119 [XNIO-1 task-2] chk_yeALThqW3wj8k_5MFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.119 [XNIO-1 task-2] chk_yeALThqW3wj8k_5MFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.119 [XNIO-1 task-2] chk_yeALThqW3wj8k_5MFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7620e957-c636-4adb-9755-09da05e885f3 +09:02:56.124 [XNIO-1 task-2] ZPdSmTQGS8i-ABgmrNzqTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:56.124 [XNIO-1 task-2] ZPdSmTQGS8i-ABgmrNzqTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.124 [XNIO-1 task-2] ZPdSmTQGS8i-ABgmrNzqTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.124 [XNIO-1 task-2] ZPdSmTQGS8i-ABgmrNzqTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:56.124 [XNIO-1 task-2] ZPdSmTQGS8i-ABgmrNzqTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", clientId) +09:02:56.126 [XNIO-1 task-2] iXve0V9CTIyEP7njiLN03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.126 [XNIO-1 task-2] iXve0V9CTIyEP7njiLN03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.126 [XNIO-1 task-2] iXve0V9CTIyEP7njiLN03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.137 [XNIO-1 task-2] GiNi8NR4QaORMngeytQJSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.137 [XNIO-1 task-2] GiNi8NR4QaORMngeytQJSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.137 [XNIO-1 task-2] GiNi8NR4QaORMngeytQJSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.147 [XNIO-1 task-2] L7nsO_1jTnihc_v5IWBiQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.147 [XNIO-1 task-2] L7nsO_1jTnihc_v5IWBiQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.147 [XNIO-1 task-2] L7nsO_1jTnihc_v5IWBiQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.158 [XNIO-1 task-2] bEbNAe6VRa695pcJ63pOWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.158 [XNIO-1 task-2] bEbNAe6VRa695pcJ63pOWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.158 [XNIO-1 task-2] bEbNAe6VRa695pcJ63pOWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.168 [XNIO-1 task-2] kZFCAdpdQ0yEpgW_zdHFig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.168 [XNIO-1 task-2] kZFCAdpdQ0yEpgW_zdHFig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.169 [XNIO-1 task-2] kZFCAdpdQ0yEpgW_zdHFig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.204 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.204 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "f82c89c1-3fae-4a93-9d5d-800504ce8aeb", {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "09b5fe88-27f2-4485-a396-3edd4b91", {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.205 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"09b5fe88-27f2-4485-a396-3edd4b91","clientDesc":"f82c89c1-3fae-4a93-9d5d-800504ce8aeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.206 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.206 [XNIO-1 task-2] l_w5lkP2SQqvOsRo4IV9Rg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.208 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae8acb15-1c06-4802-b399-2a8e9a0c","clientDesc":"55910975-2e6f-4c79-b9c4-fa0944ec964d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.209 [XNIO-1 task-2] lE1nBa1XQhCFL6Kl7WIL2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.211 [XNIO-1 task-2] 938i8wo3R6apW-VxLmEsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b836650-5093-4e37-8a78-a58b6644acce +09:02:56.211 [XNIO-1 task-2] 938i8wo3R6apW-VxLmEsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.211 [XNIO-1 task-2] 938i8wo3R6apW-VxLmEsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.211 [XNIO-1 task-2] 938i8wo3R6apW-VxLmEsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b836650-5093-4e37-8a78-a58b6644acce +09:02:56.216 [XNIO-1 task-2] etALoEDCS4Wwr-wwz4wpMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.216 [XNIO-1 task-2] etALoEDCS4Wwr-wwz4wpMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.217 [XNIO-1 task-2] etALoEDCS4Wwr-wwz4wpMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.228 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.229 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.229 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8e1514e-3d6f-4901-9596-42334ff9","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.229 [XNIO-1 task-2] Yz6xoGcTQYGL9iOOD4eJRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG com.networknt.schema.TypeValidator debug - validate( "04ac5b41-dc54-4f1a-9325-9c6966917a24", {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG com.networknt.schema.TypeValidator debug - validate( "a6a02c96-65b8-45b1-8823-a63c1ec1", {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a6a02c96-65b8-45b1-8823-a63c1ec1","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.231 [XNIO-1 task-2] tLIs6HMxQSi6vTkVmuAYDg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.233 [XNIO-1 task-2] 3kuc6Cu8RcWTRXaunK5MQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.233 [XNIO-1 task-2] 3kuc6Cu8RcWTRXaunK5MQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.233 [XNIO-1 task-2] 3kuc6Cu8RcWTRXaunK5MQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.233 [XNIO-1 task-2] 3kuc6Cu8RcWTRXaunK5MQw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.238 [XNIO-1 task-2] evJ7XlTqQ8a8fpeRNdilyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.238 [XNIO-1 task-2] evJ7XlTqQ8a8fpeRNdilyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.238 [XNIO-1 task-2] evJ7XlTqQ8a8fpeRNdilyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.243 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8 +09:02:56.245 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8 +09:02:56.251 [XNIO-1 task-2] 7SPj9bf5RFKTBtCxOHTcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.251 [XNIO-1 task-2] 7SPj9bf5RFKTBtCxOHTcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.251 [XNIO-1 task-2] 7SPj9bf5RFKTBtCxOHTcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.252 [XNIO-1 task-2] 7SPj9bf5RFKTBtCxOHTcRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.256 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.256 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.256 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "04ac5b41-dc54-4f1a-9325-9c6966917a24", {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8c61e2a5-d261-4086-9d7e-5fafcdd3", {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8c61e2a5-d261-4086-9d7e-5fafcdd3","clientDesc":"04ac5b41-dc54-4f1a-9325-9c6966917a24","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.257 [XNIO-1 task-2] fS0A50JYS3SBKBfjUrXk6Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.259 [XNIO-1 task-2] WKrv2h2KTEqtRUuyJu-CHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.260 [XNIO-1 task-2] WKrv2h2KTEqtRUuyJu-CHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.260 [XNIO-1 task-2] WKrv2h2KTEqtRUuyJu-CHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.260 [XNIO-1 task-2] WKrv2h2KTEqtRUuyJu-CHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.269 [XNIO-1 task-2] t8Fl1QahSzSe330h83YXtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c, base path is set to: null +09:02:56.269 [XNIO-1 task-2] t8Fl1QahSzSe330h83YXtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.269 [XNIO-1 task-2] t8Fl1QahSzSe330h83YXtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.269 [XNIO-1 task-2] t8Fl1QahSzSe330h83YXtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c, base path is set to: null +09:02:56.270 [XNIO-1 task-2] t8Fl1QahSzSe330h83YXtg DEBUG com.networknt.schema.TypeValidator debug - validate( "e09cb386-ed7c-4887-a9fa-107f26e7922c", "e09cb386-ed7c-4887-a9fa-107f26e7922c", clientId) +09:02:56.272 [XNIO-1 task-2] EJKgBSXRTbu7Mtz5ex3PqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.272 [XNIO-1 task-2] EJKgBSXRTbu7Mtz5ex3PqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.272 [XNIO-1 task-2] EJKgBSXRTbu7Mtz5ex3PqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.284 [XNIO-1 task-2] lS5nWdRPTumlbIikmhM2vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.284 [XNIO-1 task-2] lS5nWdRPTumlbIikmhM2vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.284 [XNIO-1 task-2] lS5nWdRPTumlbIikmhM2vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.308 [XNIO-1 task-2] rUaWNl7rR7WnvW_fwyVQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c +09:02:56.308 [XNIO-1 task-2] rUaWNl7rR7WnvW_fwyVQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.308 [XNIO-1 task-2] rUaWNl7rR7WnvW_fwyVQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.308 [XNIO-1 task-2] rUaWNl7rR7WnvW_fwyVQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c +09:02:56.310 [XNIO-1 task-2] u25R9lmYQtG14im-znXEkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.310 [XNIO-1 task-2] u25R9lmYQtG14im-znXEkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.310 [XNIO-1 task-2] u25R9lmYQtG14im-znXEkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.321 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.321 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.321 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.322 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92f67b13-905b-4a70-b28f-5075e4af","clientDesc":"aab37ddc-4f59-4623-9c1d-fafc72760f3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.323 [XNIO-1 task-2] WfQKM_7MQ6-pfKoK4eQLXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.326 [XNIO-1 task-2] snFTldNETNKd1L5MM_ARpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.326 [XNIO-1 task-2] snFTldNETNKd1L5MM_ARpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.326 [XNIO-1 task-2] snFTldNETNKd1L5MM_ARpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.326 [XNIO-1 task-2] snFTldNETNKd1L5MM_ARpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.330 [XNIO-1 task-2] MuSMm2UnRxCqzduGFFSnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c +09:02:56.330 [XNIO-1 task-2] MuSMm2UnRxCqzduGFFSnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.330 [XNIO-1 task-2] MuSMm2UnRxCqzduGFFSnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.330 [XNIO-1 task-2] MuSMm2UnRxCqzduGFFSnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c +09:02:56.332 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.332 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.332 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.332 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.332 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.332 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.332 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.333 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.333 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.333 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.333 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.333 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5ad036f9-89bc-4e7d-846b-e6f58556","clientDesc":"2ea0fc9c-e1a5-4a9a-9d2d-cc22b1e3d1dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.333 [XNIO-1 task-2] _zflLL9aRxeuK6fSz6mWMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.334 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6b7d755-3e90-4756-ae77-b738d222c2b5", {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG com.networknt.schema.TypeValidator debug - validate( "c635a932-abb3-4467-9c8c-ff838eba", {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c635a932-abb3-4467-9c8c-ff838eba","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.335 [XNIO-1 task-2] G_h_J_KvSq-IdTTta2coJg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.337 [XNIO-1 task-2] Rl_THNlRSBihtDpgCZswRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.337 [XNIO-1 task-2] Rl_THNlRSBihtDpgCZswRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.337 [XNIO-1 task-2] Rl_THNlRSBihtDpgCZswRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.349 [XNIO-1 task-2] Ht1yLtX8TdSTaO-lA0Of3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.349 [XNIO-1 task-2] Ht1yLtX8TdSTaO-lA0Of3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.350 [XNIO-1 task-2] Ht1yLtX8TdSTaO-lA0Of3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.363 [XNIO-1 task-2] sEF1a0FFQ7CVa8u0fg2giw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.363 [XNIO-1 task-2] sEF1a0FFQ7CVa8u0fg2giw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.363 [XNIO-1 task-2] sEF1a0FFQ7CVa8u0fg2giw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.378 [XNIO-1 task-2] _IPlf1FdR62csvheACE_PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.379 [XNIO-1 task-2] _IPlf1FdR62csvheACE_PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.379 [XNIO-1 task-2] _IPlf1FdR62csvheACE_PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.379 [XNIO-1 task-2] _IPlf1FdR62csvheACE_PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.388 [XNIO-1 task-2] hNiezCmrTOOOIdpcR9OE5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8, base path is set to: null +09:02:56.388 [XNIO-1 task-2] hNiezCmrTOOOIdpcR9OE5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.389 [XNIO-1 task-2] hNiezCmrTOOOIdpcR9OE5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.389 [XNIO-1 task-2] hNiezCmrTOOOIdpcR9OE5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8, base path is set to: null +09:02:56.389 [XNIO-1 task-2] hNiezCmrTOOOIdpcR9OE5w DEBUG com.networknt.schema.TypeValidator debug - validate( "b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8", "b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8", clientId) +09:02:56.391 [XNIO-1 task-2] 91JSgjleTw-tBI120D1Qyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/28b75d2e-a5c8-4391-9e97-79c2b2a62f4a +09:02:56.391 [XNIO-1 task-2] 91JSgjleTw-tBI120D1Qyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.391 [XNIO-1 task-2] 91JSgjleTw-tBI120D1Qyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.391 [XNIO-1 task-2] 91JSgjleTw-tBI120D1Qyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/28b75d2e-a5c8-4391-9e97-79c2b2a62f4a +09:02:56.393 [XNIO-1 task-2] sGiF2NNGTCmYZzyZMk0AfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8, base path is set to: null +09:02:56.393 [XNIO-1 task-2] sGiF2NNGTCmYZzyZMk0AfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.393 [XNIO-1 task-2] sGiF2NNGTCmYZzyZMk0AfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.393 [XNIO-1 task-2] sGiF2NNGTCmYZzyZMk0AfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8, base path is set to: null +09:02:56.393 [XNIO-1 task-2] sGiF2NNGTCmYZzyZMk0AfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8", "b4cc60ae-a3ba-46d2-bcea-e78ae897f4e8", clientId) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.398 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.399 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56b8213f-96e4-4925-96f5-95f7f0bc","clientDesc":"c6b7d755-3e90-4756-ae77-b738d222c2b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.399 [XNIO-1 task-2] 8ts2hARHSCuIrQwWhLXCQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.400 [XNIO-1 task-2] qNyOYij-QayIqiQhq2QEpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/28b75d2e-a5c8-4391-9e97-79c2b2a62f4a +09:02:56.401 [XNIO-1 task-2] qNyOYij-QayIqiQhq2QEpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.401 [XNIO-1 task-2] qNyOYij-QayIqiQhq2QEpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.401 [XNIO-1 task-2] qNyOYij-QayIqiQhq2QEpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/28b75d2e-a5c8-4391-9e97-79c2b2a62f4a +09:02:56.406 [XNIO-1 task-2] K7Bk92VVTfmZMA6ncJrq2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.406 [XNIO-1 task-2] K7Bk92VVTfmZMA6ncJrq2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.406 [XNIO-1 task-2] K7Bk92VVTfmZMA6ncJrq2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.411 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7c1cc31d-df5e-4f0d-8c29-6b4afaed3333 +09:02:56.411 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7c1cc31d-df5e-4f0d-8c29-6b4afaed3333 +09:02:56.417 [XNIO-1 task-2] n4PCYO52QbO_tQVP94Z-Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.417 [XNIO-1 task-2] n4PCYO52QbO_tQVP94Z-Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.417 [XNIO-1 task-2] n4PCYO52QbO_tQVP94Z-Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.417 [XNIO-1 task-2] n4PCYO52QbO_tQVP94Z-Ug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.422 [XNIO-1 task-2] 70BxaCQ1QFejzEROPf4m0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.422 [XNIO-1 task-2] 70BxaCQ1QFejzEROPf4m0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.422 [XNIO-1 task-2] 70BxaCQ1QFejzEROPf4m0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.422 [XNIO-1 task-2] 70BxaCQ1QFejzEROPf4m0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.427 [XNIO-1 task-2] W5tr9qUaT7qIa7X4WMV9Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/985a13b8-2d96-4cc5-b49b-bbc1c9741fc3 +09:02:56.427 [XNIO-1 task-2] W5tr9qUaT7qIa7X4WMV9Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.427 [XNIO-1 task-2] W5tr9qUaT7qIa7X4WMV9Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.427 [XNIO-1 task-2] W5tr9qUaT7qIa7X4WMV9Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/985a13b8-2d96-4cc5-b49b-bbc1c9741fc3 +09:02:56.429 [XNIO-1 task-2] F8uroQ0KSR2_H17dJKzajA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/120d0f6a-03e7-466a-a45b-3b576d65c4b6, base path is set to: null +09:02:56.429 [XNIO-1 task-2] F8uroQ0KSR2_H17dJKzajA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.429 [XNIO-1 task-2] F8uroQ0KSR2_H17dJKzajA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.430 [XNIO-1 task-2] F8uroQ0KSR2_H17dJKzajA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/120d0f6a-03e7-466a-a45b-3b576d65c4b6, base path is set to: null +09:02:56.430 [XNIO-1 task-2] F8uroQ0KSR2_H17dJKzajA DEBUG com.networknt.schema.TypeValidator debug - validate( "120d0f6a-03e7-466a-a45b-3b576d65c4b6", "120d0f6a-03e7-466a-a45b-3b576d65c4b6", clientId) +09:02:56.432 [XNIO-1 task-2] 55a804rsTvO0bNYtTyk6dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e36bd96a-7b3c-49c5-96e8-0db7372b3079 +09:02:56.432 [XNIO-1 task-2] 55a804rsTvO0bNYtTyk6dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.432 [XNIO-1 task-2] 55a804rsTvO0bNYtTyk6dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.432 [XNIO-1 task-2] 55a804rsTvO0bNYtTyk6dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e36bd96a-7b3c-49c5-96e8-0db7372b3079 +09:02:56.437 [XNIO-1 task-2] moW-dAexQJiQnbO6zQrWOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfe59e6a-b9de-4840-8609-58e081d7534c, base path is set to: null +09:02:56.437 [XNIO-1 task-2] moW-dAexQJiQnbO6zQrWOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.437 [XNIO-1 task-2] moW-dAexQJiQnbO6zQrWOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.437 [XNIO-1 task-2] moW-dAexQJiQnbO6zQrWOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfe59e6a-b9de-4840-8609-58e081d7534c, base path is set to: null +09:02:56.437 [XNIO-1 task-2] moW-dAexQJiQnbO6zQrWOA DEBUG com.networknt.schema.TypeValidator debug - validate( "bfe59e6a-b9de-4840-8609-58e081d7534c", "bfe59e6a-b9de-4840-8609-58e081d7534c", clientId) +09:02:56.439 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.439 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG com.networknt.schema.TypeValidator debug - validate( "78d9d9ed-8112-4764-87b8-a5a7ee51b21c", {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG com.networknt.schema.TypeValidator debug - validate( "35432a17-bc1b-4263-b9e0-66111ab1", {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"35432a17-bc1b-4263-b9e0-66111ab1","clientDesc":"78d9d9ed-8112-4764-87b8-a5a7ee51b21c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.440 [XNIO-1 task-2] NUnVk5bwQZGjGY6n4qsp7w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.442 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.442 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.442 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.442 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ba4ee5d-78df-4d06-b54a-92010694","clientDesc":"bbd2e6be-7dbc-46ae-b45f-e10f1082ebf8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.443 [XNIO-1 task-2] JzpLrmLyTniw0MUnbnKPaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.445 [XNIO-1 task-2] 9dHfzh9QTlWl3pcuf3rPqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfe59e6a-b9de-4840-8609-58e081d7534c +09:02:56.445 [XNIO-1 task-2] 9dHfzh9QTlWl3pcuf3rPqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.445 [XNIO-1 task-2] 9dHfzh9QTlWl3pcuf3rPqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.445 [XNIO-1 task-2] 9dHfzh9QTlWl3pcuf3rPqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfe59e6a-b9de-4840-8609-58e081d7534c +09:02:56.446 [XNIO-1 task-2] GKtD_aZ-RNmqIShu_yc_8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c, base path is set to: null +09:02:56.447 [XNIO-1 task-2] GKtD_aZ-RNmqIShu_yc_8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.447 [XNIO-1 task-2] GKtD_aZ-RNmqIShu_yc_8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.447 [XNIO-1 task-2] GKtD_aZ-RNmqIShu_yc_8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e09cb386-ed7c-4887-a9fa-107f26e7922c, base path is set to: null +09:02:56.447 [XNIO-1 task-2] GKtD_aZ-RNmqIShu_yc_8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e09cb386-ed7c-4887-a9fa-107f26e7922c", "e09cb386-ed7c-4887-a9fa-107f26e7922c", clientId) +09:02:56.454 [XNIO-1 task-2] wNBGZO0eQIa3iG0nGfRv4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.454 [XNIO-1 task-2] wNBGZO0eQIa3iG0nGfRv4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.454 [XNIO-1 task-2] wNBGZO0eQIa3iG0nGfRv4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.454 [XNIO-1 task-2] wNBGZO0eQIa3iG0nGfRv4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.468 [XNIO-1 task-2] yZtPNwTWTNesZHmLWEfcZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.468 [XNIO-1 task-2] yZtPNwTWTNesZHmLWEfcZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.468 [XNIO-1 task-2] yZtPNwTWTNesZHmLWEfcZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.480 [XNIO-1 task-2] ZseJjgdMRPSZ3jn8rgHsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/45ef2d57-8b4d-4e1a-9767-b159e8d886ec +09:02:56.480 [XNIO-1 task-2] ZseJjgdMRPSZ3jn8rgHsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.480 [XNIO-1 task-2] ZseJjgdMRPSZ3jn8rgHsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.480 [XNIO-1 task-2] ZseJjgdMRPSZ3jn8rgHsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/45ef2d57-8b4d-4e1a-9767-b159e8d886ec +09:02:56.512 [XNIO-1 task-2] lFhMvf6ZR7O44NXhp0YY_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/985a13b8-2d96-4cc5-b49b-bbc1c9741fc3, base path is set to: null +09:02:56.512 [XNIO-1 task-2] lFhMvf6ZR7O44NXhp0YY_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.512 [XNIO-1 task-2] lFhMvf6ZR7O44NXhp0YY_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.512 [XNIO-1 task-2] lFhMvf6ZR7O44NXhp0YY_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/985a13b8-2d96-4cc5-b49b-bbc1c9741fc3, base path is set to: null +09:02:56.512 [XNIO-1 task-2] lFhMvf6ZR7O44NXhp0YY_g DEBUG com.networknt.schema.TypeValidator debug - validate( "985a13b8-2d96-4cc5-b49b-bbc1c9741fc3", "985a13b8-2d96-4cc5-b49b-bbc1c9741fc3", clientId) +09:02:56.518 [XNIO-1 task-2] Ej9UGJGLQVid9l1oeUGmQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/120d0f6a-03e7-466a-a45b-3b576d65c4b6 +09:02:56.518 [XNIO-1 task-2] Ej9UGJGLQVid9l1oeUGmQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.518 [XNIO-1 task-2] Ej9UGJGLQVid9l1oeUGmQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.518 [XNIO-1 task-2] Ej9UGJGLQVid9l1oeUGmQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/120d0f6a-03e7-466a-a45b-3b576d65c4b6 +09:02:56.519 [XNIO-1 task-2] vScNKNRIT-2IhMMpkUkOqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.520 [XNIO-1 task-2] vScNKNRIT-2IhMMpkUkOqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.520 [XNIO-1 task-2] vScNKNRIT-2IhMMpkUkOqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.520 [XNIO-1 task-2] vScNKNRIT-2IhMMpkUkOqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.524 [XNIO-1 task-2] OfV8cuSqRKaNsPcbvYD-2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.524 [XNIO-1 task-2] OfV8cuSqRKaNsPcbvYD-2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.524 [XNIO-1 task-2] OfV8cuSqRKaNsPcbvYD-2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.524 [XNIO-1 task-2] OfV8cuSqRKaNsPcbvYD-2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.528 [XNIO-1 task-2] Gt8_f6A5QKG7PgS5wmjwbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.529 [XNIO-1 task-2] Gt8_f6A5QKG7PgS5wmjwbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.529 [XNIO-1 task-2] Gt8_f6A5QKG7PgS5wmjwbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.529 [XNIO-1 task-2] Gt8_f6A5QKG7PgS5wmjwbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.533 [XNIO-1 task-2] JPDsKvUiSyiNwOBxywsNSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfe59e6a-b9de-4840-8609-58e081d7534c, base path is set to: null +09:02:56.533 [XNIO-1 task-2] JPDsKvUiSyiNwOBxywsNSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.533 [XNIO-1 task-2] JPDsKvUiSyiNwOBxywsNSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.533 [XNIO-1 task-2] JPDsKvUiSyiNwOBxywsNSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfe59e6a-b9de-4840-8609-58e081d7534c, base path is set to: null +09:02:56.533 [XNIO-1 task-2] JPDsKvUiSyiNwOBxywsNSw DEBUG com.networknt.schema.TypeValidator debug - validate( "bfe59e6a-b9de-4840-8609-58e081d7534c", "bfe59e6a-b9de-4840-8609-58e081d7534c", clientId) +09:02:56.538 [XNIO-1 task-2] SFzguX9aQyqVFSpxKrsc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065 +09:02:56.538 [XNIO-1 task-2] SFzguX9aQyqVFSpxKrsc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.538 [XNIO-1 task-2] SFzguX9aQyqVFSpxKrsc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.539 [XNIO-1 task-2] SFzguX9aQyqVFSpxKrsc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065 +09:02:56.541 [XNIO-1 task-2] EA7AmBfLT0iEGdsffvrCKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9e10afee-61bb-452d-a012-c0485f586dd1, base path is set to: null +09:02:56.541 [XNIO-1 task-2] EA7AmBfLT0iEGdsffvrCKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.541 [XNIO-1 task-2] EA7AmBfLT0iEGdsffvrCKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.541 [XNIO-1 task-2] EA7AmBfLT0iEGdsffvrCKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9e10afee-61bb-452d-a012-c0485f586dd1, base path is set to: null +09:02:56.541 [XNIO-1 task-2] EA7AmBfLT0iEGdsffvrCKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e10afee-61bb-452d-a012-c0485f586dd1", "9e10afee-61bb-452d-a012-c0485f586dd1", clientId) +09:02:56.543 [XNIO-1 task-2] aXjVklyOT6-v7ZlhFAkyYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7c1cc31d-df5e-4f0d-8c29-6b4afaed3333 +09:02:56.543 [XNIO-1 task-2] aXjVklyOT6-v7ZlhFAkyYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.543 [XNIO-1 task-2] aXjVklyOT6-v7ZlhFAkyYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.543 [XNIO-1 task-2] aXjVklyOT6-v7ZlhFAkyYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7c1cc31d-df5e-4f0d-8c29-6b4afaed3333 +09:02:56.545 [XNIO-1 task-2] lKQrS6fnSEuSTwTJeeafew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.545 [XNIO-1 task-2] lKQrS6fnSEuSTwTJeeafew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.545 [XNIO-1 task-2] lKQrS6fnSEuSTwTJeeafew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.557 [XNIO-1 task-2] Gwl5jiv9TaOX3h8j_GDgQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9e10afee-61bb-452d-a012-c0485f586dd1, base path is set to: null +09:02:56.557 [XNIO-1 task-2] Gwl5jiv9TaOX3h8j_GDgQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.557 [XNIO-1 task-2] Gwl5jiv9TaOX3h8j_GDgQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.557 [XNIO-1 task-2] Gwl5jiv9TaOX3h8j_GDgQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9e10afee-61bb-452d-a012-c0485f586dd1, base path is set to: null +09:02:56.558 [XNIO-1 task-2] Gwl5jiv9TaOX3h8j_GDgQA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e10afee-61bb-452d-a012-c0485f586dd1", "9e10afee-61bb-452d-a012-c0485f586dd1", clientId) +09:02:56.563 [XNIO-1 task-2] u4K-omHxSZm1DoYwzrNjPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.563 [XNIO-1 task-2] u4K-omHxSZm1DoYwzrNjPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.563 [XNIO-1 task-2] u4K-omHxSZm1DoYwzrNjPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.563 [XNIO-1 task-2] u4K-omHxSZm1DoYwzrNjPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.567 [XNIO-1 task-2] 53kKW02sRbuQo446I2EUHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.567 [XNIO-1 task-2] 53kKW02sRbuQo446I2EUHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.568 [XNIO-1 task-2] 53kKW02sRbuQo446I2EUHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.579 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.579 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.579 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.579 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.579 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.579 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "25469b48-74cb-46be-a30b-28aabb8c1fca", {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.580 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.580 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.580 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "5851b928-a70d-4fec-9169-9c42bf76", {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.580 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.580 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5851b928-a70d-4fec-9169-9c42bf76","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.580 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.580 [XNIO-1 task-2] DaaFPcaSSSyyaTGVDvBCUg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.582 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.583 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.583 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.583 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8c4d75-e9ee-4b35-92fa-df8f7e8b","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.583 [XNIO-1 task-2] XAZKFyfvSj2Jqt20erwU8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.585 [XNIO-1 task-2] 1V4qd0liQymsxFWoSdaQng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.585 [XNIO-1 task-2] 1V4qd0liQymsxFWoSdaQng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.585 [XNIO-1 task-2] 1V4qd0liQymsxFWoSdaQng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.595 [XNIO-1 task-2] vNE0JOOjTlyZj7XeBUl63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.595 [XNIO-1 task-2] vNE0JOOjTlyZj7XeBUl63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.595 [XNIO-1 task-2] vNE0JOOjTlyZj7XeBUl63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.595 [XNIO-1 task-2] vNE0JOOjTlyZj7XeBUl63A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "25469b48-74cb-46be-a30b-28aabb8c1fca", {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "d53fde3f-620c-4a35-8d7a-915226f0", {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.599 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d53fde3f-620c-4a35-8d7a-915226f0","clientDesc":"25469b48-74cb-46be-a30b-28aabb8c1fca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.600 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.600 [XNIO-1 task-2] JmB0eQrJQ1Ce01JCNcQMfA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.602 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.603 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0703c22-a0c4-4f34-a4ed-8366e0bf","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.604 [XNIO-1 task-2] xvxHV_LCS2mACXPI0fXPUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.605 [XNIO-1 task-2] fbNyZBKkQ1eku3o3IjDoAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/703405d1-a1e5-4200-9461-cbf10710c440 +09:02:56.605 [XNIO-1 task-2] fbNyZBKkQ1eku3o3IjDoAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.605 [XNIO-1 task-2] fbNyZBKkQ1eku3o3IjDoAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.605 [XNIO-1 task-2] fbNyZBKkQ1eku3o3IjDoAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/703405d1-a1e5-4200-9461-cbf10710c440 +09:02:56.607 [XNIO-1 task-2] jrLKy5rxTzaqdDYGHpxUsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.607 [XNIO-1 task-2] jrLKy5rxTzaqdDYGHpxUsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.607 [XNIO-1 task-2] jrLKy5rxTzaqdDYGHpxUsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.607 [XNIO-1 task-2] jrLKy5rxTzaqdDYGHpxUsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.613 [XNIO-1 task-2] x52N-OupR8OxJwM8qVsrWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.613 [XNIO-1 task-2] x52N-OupR8OxJwM8qVsrWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.613 [XNIO-1 task-2] x52N-OupR8OxJwM8qVsrWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.613 [XNIO-1 task-2] x52N-OupR8OxJwM8qVsrWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.616 [XNIO-1 task-2] o1hicYRVTdig8T27U6OU6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:56.617 [XNIO-1 task-2] o1hicYRVTdig8T27U6OU6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.617 [XNIO-1 task-2] o1hicYRVTdig8T27U6OU6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.617 [XNIO-1 task-2] o1hicYRVTdig8T27U6OU6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:56.617 [XNIO-1 task-2] o1hicYRVTdig8T27U6OU6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", clientId) +09:02:56.618 [XNIO-1 task-2] kHdG8ZDrTuOZudcLSDdP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326 +09:02:56.618 [XNIO-1 task-2] kHdG8ZDrTuOZudcLSDdP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.618 [XNIO-1 task-2] kHdG8ZDrTuOZudcLSDdP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.618 [XNIO-1 task-2] kHdG8ZDrTuOZudcLSDdP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326 +09:02:56.620 [XNIO-1 task-2] cSiwOp0RRNWzHKgSBF_HLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.620 [XNIO-1 task-2] cSiwOp0RRNWzHKgSBF_HLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.621 [XNIO-1 task-2] cSiwOp0RRNWzHKgSBF_HLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.621 [XNIO-1 task-2] cSiwOp0RRNWzHKgSBF_HLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.624 [XNIO-1 task-2] ku5XW5rYQKaZCq4ITaQVLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:56.624 [XNIO-1 task-2] ku5XW5rYQKaZCq4ITaQVLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.624 [XNIO-1 task-2] ku5XW5rYQKaZCq4ITaQVLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.624 [XNIO-1 task-2] ku5XW5rYQKaZCq4ITaQVLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1512a79f-0ebe-4fbb-be9f-f3f0dd73d326, base path is set to: null +09:02:56.624 [XNIO-1 task-2] ku5XW5rYQKaZCq4ITaQVLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", "1512a79f-0ebe-4fbb-be9f-f3f0dd73d326", clientId) +09:02:56.629 [XNIO-1 task-2] ycaFi8g0SxmRlV3wWFao4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.629 [XNIO-1 task-2] ycaFi8g0SxmRlV3wWFao4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.629 [XNIO-1 task-2] ycaFi8g0SxmRlV3wWFao4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.629 [XNIO-1 task-2] ycaFi8g0SxmRlV3wWFao4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.632 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.632 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4c6dc406-a523-4368-bfcd-fdcab4358fb2", {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "80d1feb3-fb54-44b1-819a-5e70e06b", {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"80d1feb3-fb54-44b1-819a-5e70e06b","clientDesc":"4c6dc406-a523-4368-bfcd-fdcab4358fb2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.633 [XNIO-1 task-2] hdZwVNE2Re6OY0cBPb5d8Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.635 [XNIO-1 task-2] jQDkMWQ2S3GxLTGB7UJ_ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.635 [XNIO-1 task-2] jQDkMWQ2S3GxLTGB7UJ_ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.635 [XNIO-1 task-2] jQDkMWQ2S3GxLTGB7UJ_ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.635 [XNIO-1 task-2] jQDkMWQ2S3GxLTGB7UJ_ng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.639 [XNIO-1 task-2] dzAsrx8GSp-TNmgERApx_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8bf52dc6-5ce6-4bc2-9240-b522c1bb98ef, base path is set to: null +09:02:56.639 [XNIO-1 task-2] dzAsrx8GSp-TNmgERApx_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.639 [XNIO-1 task-2] dzAsrx8GSp-TNmgERApx_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.639 [XNIO-1 task-2] dzAsrx8GSp-TNmgERApx_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8bf52dc6-5ce6-4bc2-9240-b522c1bb98ef, base path is set to: null +09:02:56.639 [XNIO-1 task-2] dzAsrx8GSp-TNmgERApx_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8bf52dc6-5ce6-4bc2-9240-b522c1bb98ef", "8bf52dc6-5ce6-4bc2-9240-b522c1bb98ef", clientId) +09:02:56.644 [XNIO-1 task-2] DJBs5VRYSfWc5u2fdT9c7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c486ebf8-43ff-4432-8b0c-63663694f342 +09:02:56.644 [XNIO-1 task-2] DJBs5VRYSfWc5u2fdT9c7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.644 [XNIO-1 task-2] DJBs5VRYSfWc5u2fdT9c7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.644 [XNIO-1 task-2] DJBs5VRYSfWc5u2fdT9c7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c486ebf8-43ff-4432-8b0c-63663694f342 +09:02:56.650 [XNIO-1 task-2] aqwTx4xbQlmL_fWMcj5FUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3, base path is set to: null +09:02:56.650 [XNIO-1 task-2] aqwTx4xbQlmL_fWMcj5FUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.650 [XNIO-1 task-2] aqwTx4xbQlmL_fWMcj5FUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.650 [XNIO-1 task-2] aqwTx4xbQlmL_fWMcj5FUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3, base path is set to: null +09:02:56.650 [XNIO-1 task-2] aqwTx4xbQlmL_fWMcj5FUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "81a3710f-c912-49aa-8331-0f442162f1c3", "81a3710f-c912-49aa-8331-0f442162f1c3", clientId) +09:02:56.653 [XNIO-1 task-2] gGFnjWSCSC-PidxWa2uUPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.653 [XNIO-1 task-2] gGFnjWSCSC-PidxWa2uUPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.653 [XNIO-1 task-2] gGFnjWSCSC-PidxWa2uUPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.653 [XNIO-1 task-2] gGFnjWSCSC-PidxWa2uUPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.659 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.659 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.659 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "ceeb549b-a37f-4116-a073-28d276395015", {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "cc7fb7fa-76e9-4b95-8747-b808da18", {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cc7fb7fa-76e9-4b95-8747-b808da18","clientDesc":"ceeb549b-a37f-4116-a073-28d276395015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.660 [XNIO-1 task-2] ExFlPS-wRXeRVoTKPmE6jA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.663 [XNIO-1 task-2] FlnT3KLKR6GgbnlohBAGjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3, base path is set to: null +09:02:56.663 [XNIO-1 task-2] FlnT3KLKR6GgbnlohBAGjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.663 [XNIO-1 task-2] FlnT3KLKR6GgbnlohBAGjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.663 [XNIO-1 task-2] FlnT3KLKR6GgbnlohBAGjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3, base path is set to: null +09:02:56.663 [XNIO-1 task-2] FlnT3KLKR6GgbnlohBAGjw DEBUG com.networknt.schema.TypeValidator debug - validate( "81a3710f-c912-49aa-8331-0f442162f1c3", "81a3710f-c912-49aa-8331-0f442162f1c3", clientId) +09:02:56.665 [XNIO-1 task-2] 9QBtlrq6T4GhYnvMwxxNoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3 +09:02:56.665 [XNIO-1 task-2] 9QBtlrq6T4GhYnvMwxxNoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.665 [XNIO-1 task-2] 9QBtlrq6T4GhYnvMwxxNoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.665 [XNIO-1 task-2] 9QBtlrq6T4GhYnvMwxxNoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3 +09:02:56.667 [XNIO-1 task-2] 7JSJ6tBITT-GgtMc77mz3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.667 [XNIO-1 task-2] 7JSJ6tBITT-GgtMc77mz3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.668 [XNIO-1 task-2] 7JSJ6tBITT-GgtMc77mz3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.679 [XNIO-1 task-2] 4pviHa9NToGd_SMvKFZ34w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.679 [XNIO-1 task-2] 4pviHa9NToGd_SMvKFZ34w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.679 [XNIO-1 task-2] 4pviHa9NToGd_SMvKFZ34w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.679 [XNIO-1 task-2] 4pviHa9NToGd_SMvKFZ34w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.726 [XNIO-1 task-2] M3hZvDbATeG0-dHrG50QVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.726 [XNIO-1 task-2] M3hZvDbATeG0-dHrG50QVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.727 [XNIO-1 task-2] M3hZvDbATeG0-dHrG50QVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.727 [XNIO-1 task-2] M3hZvDbATeG0-dHrG50QVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.736 [XNIO-1 task-2] Xeepbq8HR9KfGQ2mSYbeGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3, base path is set to: null +09:02:56.736 [XNIO-1 task-2] Xeepbq8HR9KfGQ2mSYbeGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.736 [XNIO-1 task-2] Xeepbq8HR9KfGQ2mSYbeGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.736 [XNIO-1 task-2] Xeepbq8HR9KfGQ2mSYbeGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/81a3710f-c912-49aa-8331-0f442162f1c3, base path is set to: null +09:02:56.736 [XNIO-1 task-2] Xeepbq8HR9KfGQ2mSYbeGg DEBUG com.networknt.schema.TypeValidator debug - validate( "81a3710f-c912-49aa-8331-0f442162f1c3", "81a3710f-c912-49aa-8331-0f442162f1c3", clientId) +09:02:56.741 [XNIO-1 task-2] SWaa-CJLQKK2iwbWvlN7ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.741 [XNIO-1 task-2] SWaa-CJLQKK2iwbWvlN7ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.741 [XNIO-1 task-2] SWaa-CJLQKK2iwbWvlN7ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.742 [XNIO-1 task-2] SWaa-CJLQKK2iwbWvlN7ZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.746 [XNIO-1 task-2] tGZqJufNS5Ov3ZuH7MX55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/120d0f6a-03e7-466a-a45b-3b576d65c4b6 +09:02:56.746 [XNIO-1 task-2] tGZqJufNS5Ov3ZuH7MX55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.746 [XNIO-1 task-2] tGZqJufNS5Ov3ZuH7MX55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.746 [XNIO-1 task-2] tGZqJufNS5Ov3ZuH7MX55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/120d0f6a-03e7-466a-a45b-3b576d65c4b6 +09:02:56.752 [XNIO-1 task-2] 1jR2YHwcTtmOHvl1v-TX6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.752 [XNIO-1 task-2] 1jR2YHwcTtmOHvl1v-TX6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.752 [XNIO-1 task-2] 1jR2YHwcTtmOHvl1v-TX6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.752 [XNIO-1 task-2] 1jR2YHwcTtmOHvl1v-TX6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.756 [XNIO-1 task-2] pr9FLjfLQsyz3MpOv9oefA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9377e7df-c6df-47a3-ad8f-9d4c4ff8a727, base path is set to: null +09:02:56.756 [XNIO-1 task-2] pr9FLjfLQsyz3MpOv9oefA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.756 [XNIO-1 task-2] pr9FLjfLQsyz3MpOv9oefA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.756 [XNIO-1 task-2] pr9FLjfLQsyz3MpOv9oefA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9377e7df-c6df-47a3-ad8f-9d4c4ff8a727, base path is set to: null +09:02:56.756 [XNIO-1 task-2] pr9FLjfLQsyz3MpOv9oefA DEBUG com.networknt.schema.TypeValidator debug - validate( "9377e7df-c6df-47a3-ad8f-9d4c4ff8a727", "9377e7df-c6df-47a3-ad8f-9d4c4ff8a727", clientId) +09:02:56.761 [XNIO-1 task-2] -OZg1k2QRuayK89if-EzPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.761 [XNIO-1 task-2] -OZg1k2QRuayK89if-EzPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.761 [XNIO-1 task-2] -OZg1k2QRuayK89if-EzPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.772 [XNIO-1 task-2] K1g9t8ngSDO6Sb-ZVDpUzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed4086c6-fc1d-4c68-83eb-e798a15629b3 +09:02:56.772 [XNIO-1 task-2] K1g9t8ngSDO6Sb-ZVDpUzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.772 [XNIO-1 task-2] K1g9t8ngSDO6Sb-ZVDpUzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.772 [XNIO-1 task-2] K1g9t8ngSDO6Sb-ZVDpUzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed4086c6-fc1d-4c68-83eb-e798a15629b3 +09:02:56.775 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.775 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5fecd03c-dae0-4bf8-b6d8-badb1540","clientDesc":"613a23c7-a722-4c32-99b4-8ddd1d7e5420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.776 [XNIO-1 task-2] M08WqZOvQFCPpxIfDKAHRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.778 [XNIO-1 task-2] pADPJu-2SA-9K9SyZSbW1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed4086c6-fc1d-4c68-83eb-e798a15629b3 +09:02:56.778 [XNIO-1 task-2] pADPJu-2SA-9K9SyZSbW1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.778 [XNIO-1 task-2] pADPJu-2SA-9K9SyZSbW1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.779 [XNIO-1 task-2] pADPJu-2SA-9K9SyZSbW1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed4086c6-fc1d-4c68-83eb-e798a15629b3 +09:02:56.785 [XNIO-1 task-2] YbFIDNGFQFStck3vdxuKJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.785 [XNIO-1 task-2] YbFIDNGFQFStck3vdxuKJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.785 [XNIO-1 task-2] YbFIDNGFQFStck3vdxuKJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.790 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e4d47b64-72c2-4d43-ac3e-3033d7fa7243 +09:02:56.791 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e4d47b64-72c2-4d43-ac3e-3033d7fa7243 +09:02:56.791 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0669a322 +09:02:56.796 [XNIO-1 task-2] 0pnGTi7-QmaaTrTcvH6PtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e4d47b64-72c2-4d43-ac3e-3033d7fa7243, base path is set to: null +09:02:56.796 [XNIO-1 task-2] 0pnGTi7-QmaaTrTcvH6PtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.796 [XNIO-1 task-2] 0pnGTi7-QmaaTrTcvH6PtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.796 [XNIO-1 task-2] 0pnGTi7-QmaaTrTcvH6PtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e4d47b64-72c2-4d43-ac3e-3033d7fa7243, base path is set to: null +09:02:56.796 [XNIO-1 task-2] 0pnGTi7-QmaaTrTcvH6PtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4d47b64-72c2-4d43-ac3e-3033d7fa7243", "e4d47b64-72c2-4d43-ac3e-3033d7fa7243", clientId) +09:02:56.798 [XNIO-1 task-2] iiZoMaXAQ2SX67DKYsNvaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.798 [XNIO-1 task-2] iiZoMaXAQ2SX67DKYsNvaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.798 [XNIO-1 task-2] iiZoMaXAQ2SX67DKYsNvaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.804 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0669a322 +09:02:56.810 [XNIO-1 task-2] R3tvJ063Qz-265S7X3nk9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.810 [XNIO-1 task-2] R3tvJ063Qz-265S7X3nk9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.810 [XNIO-1 task-2] R3tvJ063Qz-265S7X3nk9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.821 [XNIO-1 task-2] AjmDwuRgTp-ohcf8qnufYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.822 [XNIO-1 task-2] AjmDwuRgTp-ohcf8qnufYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.822 [XNIO-1 task-2] AjmDwuRgTp-ohcf8qnufYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.832 [XNIO-1 task-2] GckMqqX_SNeCek53jUsnmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e4d47b64-72c2-4d43-ac3e-3033d7fa7243 +09:02:56.832 [XNIO-1 task-2] GckMqqX_SNeCek53jUsnmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.832 [XNIO-1 task-2] GckMqqX_SNeCek53jUsnmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.832 [XNIO-1 task-2] GckMqqX_SNeCek53jUsnmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e4d47b64-72c2-4d43-ac3e-3033d7fa7243 +09:02:56.832 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e4d47b64-72c2-4d43-ac3e-3033d7fa7243 +09:02:56.837 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.837 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e4e8126a-123e-4a1a-8a07-7b366e58feba", {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "382a7381-2b50-47f5-8430-3b3921be", {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"382a7381-2b50-47f5-8430-3b3921be","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.838 [XNIO-1 task-2] R9MjJYjWRNeDClZqVLeV2Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.840 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.841 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.841 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.841 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.841 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.841 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.841 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.841 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.842 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.842 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.842 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.842 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df9e36de-6a3a-44a3-8876-e529b98e","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.842 [XNIO-1 task-2] gFlO8HZQQmumW3LixLxcoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.844 [XNIO-1 task-2] Sv0SJLUcSbqmWUIz_vY1Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.844 [XNIO-1 task-2] Sv0SJLUcSbqmWUIz_vY1Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.844 [XNIO-1 task-2] Sv0SJLUcSbqmWUIz_vY1Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.844 [XNIO-1 task-2] Sv0SJLUcSbqmWUIz_vY1Sw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.849 [XNIO-1 task-2] HEu9_azrR92auL74PSXMGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.849 [XNIO-1 task-2] HEu9_azrR92auL74PSXMGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.849 [XNIO-1 task-2] HEu9_azrR92auL74PSXMGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.849 [XNIO-1 task-2] HEu9_azrR92auL74PSXMGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.855 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.855 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.855 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e4e8126a-123e-4a1a-8a07-7b366e58feba", {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "dd34bd17-2c81-4e9d-b5d7-05b7e2b9", {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dd34bd17-2c81-4e9d-b5d7-05b7e2b9","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.856 [XNIO-1 task-2] 0js-e-4RSyu4GgabS58t5Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.858 [XNIO-1 task-2] R1Uzs78xQ1SgLa8Rkx3dnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.858 [XNIO-1 task-2] R1Uzs78xQ1SgLa8Rkx3dnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.858 [XNIO-1 task-2] R1Uzs78xQ1SgLa8Rkx3dnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.858 [XNIO-1 task-2] R1Uzs78xQ1SgLa8Rkx3dnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.863 [XNIO-1 task-2] 7mtsTYzQRgSrsIXcYvy8-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.863 [XNIO-1 task-2] 7mtsTYzQRgSrsIXcYvy8-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.864 [XNIO-1 task-2] 7mtsTYzQRgSrsIXcYvy8-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.877 [XNIO-1 task-2] 2_6Wh8PERreu4BMAHvIx1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.877 [XNIO-1 task-2] 2_6Wh8PERreu4BMAHvIx1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.877 [XNIO-1 task-2] 2_6Wh8PERreu4BMAHvIx1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.877 [XNIO-1 task-2] 2_6Wh8PERreu4BMAHvIx1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.882 [XNIO-1 task-2] LlVKNM6_RFqO4K9MiNKeKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.882 [XNIO-1 task-2] LlVKNM6_RFqO4K9MiNKeKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.882 [XNIO-1 task-2] LlVKNM6_RFqO4K9MiNKeKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.882 [XNIO-1 task-2] LlVKNM6_RFqO4K9MiNKeKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.888 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.888 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.888 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6e5d0664-8716-4b12-93f3-0207ee4c","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.889 [XNIO-1 task-2] _OXnJneiRve24l5Mj84IOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.891 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.891 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.891 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4e8126a-123e-4a1a-8a07-7b366e58feba", {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25104959-35da-48e2-8c66-f7d168d4", {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"25104959-35da-48e2-8c66-f7d168d4","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.892 [XNIO-1 task-2] _N9c4IWeTkqKOjTnO6vbjQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.894 [XNIO-1 task-2] RZycSXdvSWiU_Pra-6POoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.894 [XNIO-1 task-2] RZycSXdvSWiU_Pra-6POoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.895 [XNIO-1 task-2] RZycSXdvSWiU_Pra-6POoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.905 [XNIO-1 task-2] RFqlF5L5T0C2RHkaempebQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065, base path is set to: null +09:02:56.905 [XNIO-1 task-2] RFqlF5L5T0C2RHkaempebQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.905 [XNIO-1 task-2] RFqlF5L5T0C2RHkaempebQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.905 [XNIO-1 task-2] RFqlF5L5T0C2RHkaempebQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065, base path is set to: null +09:02:56.905 [XNIO-1 task-2] RFqlF5L5T0C2RHkaempebQ DEBUG com.networknt.schema.TypeValidator debug - validate( "71c12567-6d85-4470-b2dc-073d659ad065", "71c12567-6d85-4470-b2dc-073d659ad065", clientId) +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4e8126a-123e-4a1a-8a07-7b366e58feba", {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04476e5a-3d77-4292-80d2-e6061e17", {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.907 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.908 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"04476e5a-3d77-4292-80d2-e6061e17","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.908 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.908 [XNIO-1 task-2] Q2bk43LSTAyTFt2Deb-qYQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.909 [XNIO-1 task-2] I5qR-b_2Qi24jvHDzf999w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d58069d0-fae5-4228-9874-129d186a8f88, base path is set to: null +09:02:56.909 [XNIO-1 task-2] I5qR-b_2Qi24jvHDzf999w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.909 [XNIO-1 task-2] I5qR-b_2Qi24jvHDzf999w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:56.909 [XNIO-1 task-2] I5qR-b_2Qi24jvHDzf999w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d58069d0-fae5-4228-9874-129d186a8f88, base path is set to: null +09:02:56.910 [XNIO-1 task-2] I5qR-b_2Qi24jvHDzf999w DEBUG com.networknt.schema.TypeValidator debug - validate( "d58069d0-fae5-4228-9874-129d186a8f88", "d58069d0-fae5-4228-9874-129d186a8f88", clientId) +09:02:56.912 [XNIO-1 task-2] zbRAEHnCSIGsnMunF4N9Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.912 [XNIO-1 task-2] zbRAEHnCSIGsnMunF4N9Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.912 [XNIO-1 task-2] zbRAEHnCSIGsnMunF4N9Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.923 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.923 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.923 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.923 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.923 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2c5c210-4abc-4e65-b818-afa8baba6c61", {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d22deef0-57ed-4eed-a419-ccf35f67", {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d22deef0-57ed-4eed-a419-ccf35f67","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.924 [XNIO-1 task-2] 5W-nGbrQTzmJFjeALC2OzQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:56.926 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.926 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.926 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.926 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d62903f8-d0f0-44e6-b73b-e991cb46","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.927 [XNIO-1 task-2] p0hY7OroR0CbducT-Ph02A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.929 [XNIO-1 task-2] F05zDm2jS1SP4VO-MuG3cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.929 [XNIO-1 task-2] F05zDm2jS1SP4VO-MuG3cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.929 [XNIO-1 task-2] F05zDm2jS1SP4VO-MuG3cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.940 [XNIO-1 task-2] sbUhodrJSlCsZnASllv8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.940 [XNIO-1 task-2] sbUhodrJSlCsZnASllv8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.941 [XNIO-1 task-2] sbUhodrJSlCsZnASllv8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.941 [XNIO-1 task-2] sbUhodrJSlCsZnASllv8Ag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.945 [XNIO-1 task-2] lipWBXRYS_mpxNv9tY9iKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.945 [XNIO-1 task-2] lipWBXRYS_mpxNv9tY9iKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.946 [XNIO-1 task-2] lipWBXRYS_mpxNv9tY9iKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.946 [XNIO-1 task-2] lipWBXRYS_mpxNv9tY9iKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.951 [XNIO-1 task-2] oEX09AL6SqiW3XBUi3KuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.951 [XNIO-1 task-2] oEX09AL6SqiW3XBUi3KuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.951 [XNIO-1 task-2] oEX09AL6SqiW3XBUi3KuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.951 [XNIO-1 task-2] oEX09AL6SqiW3XBUi3KuZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.956 [XNIO-1 task-2] sLv1bwVGTqedipQgzs9Ivg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7c1cc31d-df5e-4f0d-8c29-6b4afaed3333 +09:02:56.956 [XNIO-1 task-2] sLv1bwVGTqedipQgzs9Ivg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.956 [XNIO-1 task-2] sLv1bwVGTqedipQgzs9Ivg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.957 [XNIO-1 task-2] sLv1bwVGTqedipQgzs9Ivg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7c1cc31d-df5e-4f0d-8c29-6b4afaed3333 +09:02:56.957 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7c1cc31d-df5e-4f0d-8c29-6b4afaed3333 +09:02:56.962 [XNIO-1 task-2] YpF41CJ6RY-vVD86rU68Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.962 [XNIO-1 task-2] YpF41CJ6RY-vVD86rU68Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.962 [XNIO-1 task-2] YpF41CJ6RY-vVD86rU68Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.963 [XNIO-1 task-2] YpF41CJ6RY-vVD86rU68Gg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.967 [XNIO-1 task-2] -e-_wpt_QrGWZcenCNKfgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.967 [XNIO-1 task-2] -e-_wpt_QrGWZcenCNKfgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.967 [XNIO-1 task-2] -e-_wpt_QrGWZcenCNKfgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.984 [XNIO-1 task-2] RVBp8SQ0Tq2mMHVXft1Ilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21defa7a-f726-4c96-8fff-5618adf585de +09:02:56.984 [XNIO-1 task-2] RVBp8SQ0Tq2mMHVXft1Ilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.984 [XNIO-1 task-2] RVBp8SQ0Tq2mMHVXft1Ilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.984 [XNIO-1 task-2] RVBp8SQ0Tq2mMHVXft1Ilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21defa7a-f726-4c96-8fff-5618adf585de +09:02:56.989 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.989 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.989 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.989 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.989 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2fde8749-0164-4b63-b5be-642684ee","clientDesc":"f2c5c210-4abc-4e65-b818-afa8baba6c61","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:56.990 [XNIO-1 task-2] LJfAaXIZTL2M6kiIC9aXEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:56.992 [XNIO-1 task-2] zaN-ubLNRq6KZvXPN2WeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/703405d1-a1e5-4200-9461-cbf10710c440 +09:02:56.992 [XNIO-1 task-2] zaN-ubLNRq6KZvXPN2WeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:56.992 [XNIO-1 task-2] zaN-ubLNRq6KZvXPN2WeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:56.992 [XNIO-1 task-2] zaN-ubLNRq6KZvXPN2WeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/703405d1-a1e5-4200-9461-cbf10710c440 +09:02:56.994 [XNIO-1 task-2] 2PdbZYNjQiasMkIyx4Laow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.994 [XNIO-1 task-2] 2PdbZYNjQiasMkIyx4Laow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:56.994 [XNIO-1 task-2] 2PdbZYNjQiasMkIyx4Laow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:56.995 [XNIO-1 task-2] 2PdbZYNjQiasMkIyx4Laow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.001 [XNIO-1 task-2] erF2bgMxStOu18oQ9vOAjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c93d2e4e-69a3-4189-add4-cd93e26aed96, base path is set to: null +09:02:57.001 [XNIO-1 task-2] erF2bgMxStOu18oQ9vOAjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.001 [XNIO-1 task-2] erF2bgMxStOu18oQ9vOAjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.001 [XNIO-1 task-2] erF2bgMxStOu18oQ9vOAjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c93d2e4e-69a3-4189-add4-cd93e26aed96, base path is set to: null +09:02:57.001 [XNIO-1 task-2] erF2bgMxStOu18oQ9vOAjA DEBUG com.networknt.schema.TypeValidator debug - validate( "c93d2e4e-69a3-4189-add4-cd93e26aed96", "c93d2e4e-69a3-4189-add4-cd93e26aed96", clientId) +09:02:57.007 [XNIO-1 task-2] vhP5bgraTMWHz6UF885kbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.007 [XNIO-1 task-2] vhP5bgraTMWHz6UF885kbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.007 [XNIO-1 task-2] vhP5bgraTMWHz6UF885kbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.021 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.021 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "36572987-f8f5-4fa9-b715-bf04e361e1db", {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f", {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6c38ab2e-f4e1-4dd2-afc2-2d1b1e7f","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.022 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.023 [XNIO-1 task-2] A3_1FOL6T1OvIkqqj_gpeA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.024 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.025 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad1ac46a-862b-4877-845b-baee49c2","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.026 [XNIO-1 task-2] _uBFYnXsTgmtNJyYaHnTsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.027 [XNIO-1 task-2] OFX4EssxQS2HhYO2_XROpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2e078393-22d1-403e-a774-d097cfe6657d +09:02:57.027 [XNIO-1 task-2] OFX4EssxQS2HhYO2_XROpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.028 [XNIO-1 task-2] OFX4EssxQS2HhYO2_XROpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.028 [XNIO-1 task-2] OFX4EssxQS2HhYO2_XROpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2e078393-22d1-403e-a774-d097cfe6657d +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.034 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.035 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.035 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6a71530-b80d-4e7b-bbdb-89dca61a","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.035 [XNIO-1 task-2] On4A0tjMQTCjPOqdwPwXkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.037 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.037 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG com.networknt.schema.TypeValidator debug - validate( "65fcd890-fe48-49c9-869e-1964093bb6ed", {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG com.networknt.schema.TypeValidator debug - validate( "8c1eb6fc-3c2e-44ce-9f9f-787290f1", {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.038 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8c1eb6fc-3c2e-44ce-9f9f-787290f1","clientDesc":"65fcd890-fe48-49c9-869e-1964093bb6ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.039 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.039 [XNIO-1 task-2] OEy6bsH1StWL7Kka-f0wqA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.040 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.040 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.040 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56c1f5bb-e7a6-42d6-979b-b40e40ed","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.041 [XNIO-1 task-2] UL2QYtIZSQuNpji-7XJdsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.043 [XNIO-1 task-2] 1OHex7hNRa2ViWQFIp1B7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/051aa7eb-16f1-428b-893d-52f97f3c1fc6 +09:02:57.043 [XNIO-1 task-2] 1OHex7hNRa2ViWQFIp1B7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.043 [XNIO-1 task-2] 1OHex7hNRa2ViWQFIp1B7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.043 [XNIO-1 task-2] 1OHex7hNRa2ViWQFIp1B7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/051aa7eb-16f1-428b-893d-52f97f3c1fc6 +09:02:57.046 [XNIO-1 task-2] fKWWeLWXRpWJJoww-Lk8DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3748852-00a9-45a5-b8a3-0f38ad0f917e, base path is set to: null +09:02:57.046 [XNIO-1 task-2] fKWWeLWXRpWJJoww-Lk8DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.046 [XNIO-1 task-2] fKWWeLWXRpWJJoww-Lk8DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.046 [XNIO-1 task-2] fKWWeLWXRpWJJoww-Lk8DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3748852-00a9-45a5-b8a3-0f38ad0f917e, base path is set to: null +09:02:57.046 [XNIO-1 task-2] fKWWeLWXRpWJJoww-Lk8DA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3748852-00a9-45a5-b8a3-0f38ad0f917e", "f3748852-00a9-45a5-b8a3-0f38ad0f917e", clientId) +09:02:57.049 [XNIO-1 task-2] P_P44eFvTMimH2iS3WFgZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.049 [XNIO-1 task-2] P_P44eFvTMimH2iS3WFgZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.049 [XNIO-1 task-2] P_P44eFvTMimH2iS3WFgZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.049 [XNIO-1 task-2] P_P44eFvTMimH2iS3WFgZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.054 [XNIO-1 task-2] cM7AiRlHQnm4Px2GvHe3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.055 [XNIO-1 task-2] cM7AiRlHQnm4Px2GvHe3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.055 [XNIO-1 task-2] cM7AiRlHQnm4Px2GvHe3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.065 [XNIO-1 task-2] 3dpHBEPiTrWyFqctlZnQbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.065 [XNIO-1 task-2] 3dpHBEPiTrWyFqctlZnQbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.065 [XNIO-1 task-2] 3dpHBEPiTrWyFqctlZnQbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.076 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "36572987-f8f5-4fa9-b715-bf04e361e1db", {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1876e823-37ff-4d9e-80c2-01d7fd50", {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1876e823-37ff-4d9e-80c2-01d7fd50","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.077 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.078 [XNIO-1 task-2] f9539ujaT6OfrN2O2_zhEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.080 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe4830f2 +09:02:57.081 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe4830f2 +09:02:57.081 [XNIO-1 task-2] fgS04e4VQvqVBsK7Q4OZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.081 [XNIO-1 task-2] fgS04e4VQvqVBsK7Q4OZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.081 [XNIO-1 task-2] fgS04e4VQvqVBsK7Q4OZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.093 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.093 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.093 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d51b42-d4dc-4700-b786-55be7de34921", {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG com.networknt.schema.TypeValidator debug - validate( "9cbff389-f943-40f8-8b59-06837dce", {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9cbff389-f943-40f8-8b59-06837dce","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.094 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.095 [XNIO-1 task-2] k5ZVttQRQvmgFpZaJLCSKw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.097 [XNIO-1 task-2] gXkbTZttQli2Swe8eP6e-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.097 [XNIO-1 task-2] gXkbTZttQli2Swe8eP6e-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.097 [XNIO-1 task-2] gXkbTZttQli2Swe8eP6e-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.097 [XNIO-1 task-2] gXkbTZttQli2Swe8eP6e-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.102 [XNIO-1 task-2] sY8aFJmJRxmViS--4yADIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3748852-00a9-45a5-b8a3-0f38ad0f917e, base path is set to: null +09:02:57.103 [XNIO-1 task-2] sY8aFJmJRxmViS--4yADIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.103 [XNIO-1 task-2] sY8aFJmJRxmViS--4yADIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.103 [XNIO-1 task-2] sY8aFJmJRxmViS--4yADIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3748852-00a9-45a5-b8a3-0f38ad0f917e, base path is set to: null +09:02:57.103 [XNIO-1 task-2] sY8aFJmJRxmViS--4yADIg DEBUG com.networknt.schema.TypeValidator debug - validate( "f3748852-00a9-45a5-b8a3-0f38ad0f917e", "f3748852-00a9-45a5-b8a3-0f38ad0f917e", clientId) +09:02:57.105 [XNIO-1 task-2] NTgDF3SnRlSMkvVqSX2nyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.105 [XNIO-1 task-2] NTgDF3SnRlSMkvVqSX2nyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.105 [XNIO-1 task-2] NTgDF3SnRlSMkvVqSX2nyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.106 [XNIO-1 task-2] NTgDF3SnRlSMkvVqSX2nyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.110 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.110 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.110 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.110 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG com.networknt.schema.TypeValidator debug - validate( "95199d19-f05b-4488-b098-577484f4a19f", {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f060d30-ecf6-434d-968f-f4a8861a", {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4f060d30-ecf6-434d-968f-f4a8861a","clientDesc":"95199d19-f05b-4488-b098-577484f4a19f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.111 [XNIO-1 task-2] aTWG_6L0SnmJG-ojSV-bQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.113 [XNIO-1 task-2] K7-hD47eRF2i7BDIt0I48Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/051aa7eb-16f1-428b-893d-52f97f3c1fc6, base path is set to: null +09:02:57.113 [XNIO-1 task-2] K7-hD47eRF2i7BDIt0I48Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.113 [XNIO-1 task-2] K7-hD47eRF2i7BDIt0I48Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.113 [XNIO-1 task-2] K7-hD47eRF2i7BDIt0I48Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/051aa7eb-16f1-428b-893d-52f97f3c1fc6, base path is set to: null +09:02:57.113 [XNIO-1 task-2] K7-hD47eRF2i7BDIt0I48Q DEBUG com.networknt.schema.TypeValidator debug - validate( "051aa7eb-16f1-428b-893d-52f97f3c1fc6", "051aa7eb-16f1-428b-893d-52f97f3c1fc6", clientId) +09:02:57.115 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.115 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.115 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG com.networknt.schema.TypeValidator debug - validate( "36572987-f8f5-4fa9-b715-bf04e361e1db", {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG com.networknt.schema.TypeValidator debug - validate( "905292ea-5fce-46b7-b5e7-d4c8a097", {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"905292ea-5fce-46b7-b5e7-d4c8a097","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.116 [XNIO-1 task-2] vED3gM_ST16lYguNnkixNw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.118 [XNIO-1 task-2] dxqrXX0jQwuYQkdVUo5hRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3748852-00a9-45a5-b8a3-0f38ad0f917e, base path is set to: null +09:02:57.118 [XNIO-1 task-2] dxqrXX0jQwuYQkdVUo5hRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.118 [XNIO-1 task-2] dxqrXX0jQwuYQkdVUo5hRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.118 [XNIO-1 task-2] dxqrXX0jQwuYQkdVUo5hRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3748852-00a9-45a5-b8a3-0f38ad0f917e, base path is set to: null +09:02:57.118 [XNIO-1 task-2] dxqrXX0jQwuYQkdVUo5hRw DEBUG com.networknt.schema.TypeValidator debug - validate( "f3748852-00a9-45a5-b8a3-0f38ad0f917e", "f3748852-00a9-45a5-b8a3-0f38ad0f917e", clientId) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d51b42-d4dc-4700-b786-55be7de34921", {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b7feddb3-33c7-4814-9f9f-662b578f", {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.124 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b7feddb3-33c7-4814-9f9f-662b578f","clientDesc":"a0d51b42-d4dc-4700-b786-55be7de34921","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.125 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.125 [XNIO-1 task-2] Q-AMDDpiRhqJOQ9Do4qg2Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.126 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.126 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.126 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.126 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "36572987-f8f5-4fa9-b715-bf04e361e1db", {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.127 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8090b5ea +09:02:57.127 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8090b5ea +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b3360967-0218-4a23-af47-a2ea0c17","clientDesc":"36572987-f8f5-4fa9-b715-bf04e361e1db","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.127 [XNIO-1 task-2] DgurRRbATq29Zao8YLH-wQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.129 [XNIO-1 task-2] dCiEXW8tQaC6tKbcQQb0PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/557e4ce8-6773-47a6-ae05-2a998dcc5046, base path is set to: null +09:02:57.129 [XNIO-1 task-2] dCiEXW8tQaC6tKbcQQb0PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.129 [XNIO-1 task-2] dCiEXW8tQaC6tKbcQQb0PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.129 [XNIO-1 task-2] dCiEXW8tQaC6tKbcQQb0PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/557e4ce8-6773-47a6-ae05-2a998dcc5046, base path is set to: null +09:02:57.129 [XNIO-1 task-2] dCiEXW8tQaC6tKbcQQb0PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "557e4ce8-6773-47a6-ae05-2a998dcc5046", "557e4ce8-6773-47a6-ae05-2a998dcc5046", clientId) +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "fdaad903-8075-4a97-9817-d0aa007b2a15", {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.132 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "3ebf9518-f5c7-4e50-b3ca-fd86d3e0", {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.520 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe4830f2 +09:02:57.520 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.520 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3ebf9518-f5c7-4e50-b3ca-fd86d3e0","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.520 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.520 [XNIO-1 task-2] T6DA_u-aR7G9EZjt8x8Icw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.523 [XNIO-1 task-2] ezmU59c0Ttmg0HWQBEqNZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbbf6890-ff41-4433-b869-8c52be2db49c, base path is set to: null +09:02:57.523 [XNIO-1 task-2] ezmU59c0Ttmg0HWQBEqNZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.523 [XNIO-1 task-2] ezmU59c0Ttmg0HWQBEqNZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.523 [XNIO-1 task-2] ezmU59c0Ttmg0HWQBEqNZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbbf6890-ff41-4433-b869-8c52be2db49c, base path is set to: null +09:02:57.523 [XNIO-1 task-2] ezmU59c0Ttmg0HWQBEqNZA DEBUG com.networknt.schema.TypeValidator debug - validate( "dbbf6890-ff41-4433-b869-8c52be2db49c", "dbbf6890-ff41-4433-b869-8c52be2db49c", clientId) +09:02:57.535 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.535 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.535 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.535 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "fdaad903-8075-4a97-9817-d0aa007b2a15", {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "67225abd-2c15-42b0-94f0-184a5732", {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"67225abd-2c15-42b0-94f0-184a5732","clientDesc":"fdaad903-8075-4a97-9817-d0aa007b2a15","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.536 [XNIO-1 task-2] IOa8iJENT425yMBln6uRDg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.538 [XNIO-1 task-2] sQZ-e12jQGmoUIuClq-QEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.539 [XNIO-1 task-2] sQZ-e12jQGmoUIuClq-QEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.539 [XNIO-1 task-2] sQZ-e12jQGmoUIuClq-QEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.539 [XNIO-1 task-2] sQZ-e12jQGmoUIuClq-QEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.545 [XNIO-1 task-2] gisDJZdMTdClH2SoJgO6Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.545 [XNIO-1 task-2] gisDJZdMTdClH2SoJgO6Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.545 [XNIO-1 task-2] gisDJZdMTdClH2SoJgO6Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.545 [XNIO-1 task-2] gisDJZdMTdClH2SoJgO6Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.549 [XNIO-1 task-2] wS4BR0-TQ6Gh5VnOcMwEhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbbf6890-ff41-4433-b869-8c52be2db49c, base path is set to: null +09:02:57.549 [XNIO-1 task-2] wS4BR0-TQ6Gh5VnOcMwEhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.549 [XNIO-1 task-2] wS4BR0-TQ6Gh5VnOcMwEhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.550 [XNIO-1 task-2] wS4BR0-TQ6Gh5VnOcMwEhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbbf6890-ff41-4433-b869-8c52be2db49c, base path is set to: null +09:02:57.550 [XNIO-1 task-2] wS4BR0-TQ6Gh5VnOcMwEhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dbbf6890-ff41-4433-b869-8c52be2db49c", "dbbf6890-ff41-4433-b869-8c52be2db49c", clientId) +09:02:57.552 [XNIO-1 task-2] SWP3SkrtTXqilvCZIwm-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.552 [XNIO-1 task-2] SWP3SkrtTXqilvCZIwm-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.552 [XNIO-1 task-2] SWP3SkrtTXqilvCZIwm-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.557 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8090b5ea +09:02:57.567 [XNIO-1 task-2] fd-OaCKCT7Sc0QglgHCkoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbbf6890-ff41-4433-b869-8c52be2db49c +09:02:57.567 [XNIO-1 task-2] fd-OaCKCT7Sc0QglgHCkoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.567 [XNIO-1 task-2] fd-OaCKCT7Sc0QglgHCkoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.567 [XNIO-1 task-2] fd-OaCKCT7Sc0QglgHCkoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbbf6890-ff41-4433-b869-8c52be2db49c +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.573 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.574 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.574 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.574 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.574 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a888054-4969-4c7c-9232-61bc1659","clientDesc":"54505b7f-d605-4198-ada4-fe6c95674ed9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.574 [XNIO-1 task-2] kYTjsyuiQMuY--dORUb0Zg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.576 [XNIO-1 task-2] yJz6G9M4SPCRXOpuiEdIjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4c01acc-45de-4c99-bf56-6c2c612bb3fa +09:02:57.576 [XNIO-1 task-2] yJz6G9M4SPCRXOpuiEdIjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.576 [XNIO-1 task-2] yJz6G9M4SPCRXOpuiEdIjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.576 [XNIO-1 task-2] yJz6G9M4SPCRXOpuiEdIjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4c01acc-45de-4c99-bf56-6c2c612bb3fa +09:02:57.578 [XNIO-1 task-2] 839MRIq3TlOpWHIWGzcvoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/15ef8c76-0958-4133-939f-8f48bd2768d7, base path is set to: null +09:02:57.578 [XNIO-1 task-2] 839MRIq3TlOpWHIWGzcvoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.578 [XNIO-1 task-2] 839MRIq3TlOpWHIWGzcvoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.578 [XNIO-1 task-2] 839MRIq3TlOpWHIWGzcvoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/15ef8c76-0958-4133-939f-8f48bd2768d7, base path is set to: null +09:02:57.578 [XNIO-1 task-2] 839MRIq3TlOpWHIWGzcvoA DEBUG com.networknt.schema.TypeValidator debug - validate( "15ef8c76-0958-4133-939f-8f48bd2768d7", "15ef8c76-0958-4133-939f-8f48bd2768d7", clientId) +09:02:57.585 [XNIO-1 task-2] ZkIwJBSTRmStY3EwKz0aYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4c01acc-45de-4c99-bf56-6c2c612bb3fa +09:02:57.585 [XNIO-1 task-2] ZkIwJBSTRmStY3EwKz0aYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.585 [XNIO-1 task-2] ZkIwJBSTRmStY3EwKz0aYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.585 [XNIO-1 task-2] ZkIwJBSTRmStY3EwKz0aYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4c01acc-45de-4c99-bf56-6c2c612bb3fa +09:02:57.592 [XNIO-1 task-2] liMPEPZxTs-hvaOxISo_Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8cf7a8c4-0bb0-417b-a5cb-7fa94ee8bca8, base path is set to: null +09:02:57.592 [XNIO-1 task-2] liMPEPZxTs-hvaOxISo_Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.592 [XNIO-1 task-2] liMPEPZxTs-hvaOxISo_Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.592 [XNIO-1 task-2] liMPEPZxTs-hvaOxISo_Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8cf7a8c4-0bb0-417b-a5cb-7fa94ee8bca8, base path is set to: null +09:02:57.592 [XNIO-1 task-2] liMPEPZxTs-hvaOxISo_Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "8cf7a8c4-0bb0-417b-a5cb-7fa94ee8bca8", "8cf7a8c4-0bb0-417b-a5cb-7fa94ee8bca8", clientId) +09:02:57.595 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe4830f2 +09:02:57.597 [XNIO-1 task-2] L9YCPZPXTd2_ftPpUborow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/62ac6f82-4d12-4d37-8b91-efb0721db85a +09:02:57.597 [XNIO-1 task-2] L9YCPZPXTd2_ftPpUborow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.597 [XNIO-1 task-2] L9YCPZPXTd2_ftPpUborow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.597 [XNIO-1 task-2] L9YCPZPXTd2_ftPpUborow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/62ac6f82-4d12-4d37-8b91-efb0721db85a +09:02:57.603 [XNIO-1 task-2] ew8J8MbjQcuU1rwY4_MhSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.603 [XNIO-1 task-2] ew8J8MbjQcuU1rwY4_MhSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.603 [XNIO-1 task-2] ew8J8MbjQcuU1rwY4_MhSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.608 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:89a05b21-5ea0-4446-b97c-d7e5d919ca89 +09:02:57.608 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:89a05b21-5ea0-4446-b97c-d7e5d919ca89 +09:02:57.611 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8090b5ea +09:02:57.613 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.613 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.613 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.613 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.613 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.613 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1b645cfb-003c-4f41-8466-366a3ed6f5fe", {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.613 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.614 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.614 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "28ed5380-3fd3-439a-8796-3c60a0ea", {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.614 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.614 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"28ed5380-3fd3-439a-8796-3c60a0ea","clientDesc":"1b645cfb-003c-4f41-8466-366a3ed6f5fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.614 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.614 [XNIO-1 task-2] drPRW964TwOiArmuWpySbQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.615 [XNIO-1 task-2] RMwROH2BR1m-rujbeDn-yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.616 [XNIO-1 task-2] RMwROH2BR1m-rujbeDn-yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.616 [XNIO-1 task-2] RMwROH2BR1m-rujbeDn-yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.616 [XNIO-1 task-2] RMwROH2BR1m-rujbeDn-yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.621 [XNIO-1 task-2] 4yzlniqYQJiTJpgOWiIaAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/02b4476b-8857-4b83-b7e8-c833dfef9e17, base path is set to: null +09:02:57.621 [XNIO-1 task-2] 4yzlniqYQJiTJpgOWiIaAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.621 [XNIO-1 task-2] 4yzlniqYQJiTJpgOWiIaAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.621 [XNIO-1 task-2] 4yzlniqYQJiTJpgOWiIaAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/02b4476b-8857-4b83-b7e8-c833dfef9e17, base path is set to: null +09:02:57.621 [XNIO-1 task-2] 4yzlniqYQJiTJpgOWiIaAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "02b4476b-8857-4b83-b7e8-c833dfef9e17", "02b4476b-8857-4b83-b7e8-c833dfef9e17", clientId) +09:02:57.628 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.628 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.628 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.628 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.628 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG com.networknt.schema.TypeValidator debug - validate( "e4e8126a-123e-4a1a-8a07-7b366e58feba", {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG com.networknt.schema.TypeValidator debug - validate( "e7db5d56-e97f-486a-abd7-ee7b7dc3", {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e7db5d56-e97f-486a-abd7-ee7b7dc3","clientDesc":"e4e8126a-123e-4a1a-8a07-7b366e58feba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +java.lang.RuntimeException: null + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:02:57.629 [XNIO-1 task-2] Q3RPjaQsSzOyH7XpUBoo-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.631 [XNIO-1 task-2] 79RRY7NpQM-jCarGQ-4uxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d58069d0-fae5-4228-9874-129d186a8f88 +09:02:57.631 [XNIO-1 task-2] 79RRY7NpQM-jCarGQ-4uxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +09:02:57.631 [XNIO-1 task-2] 79RRY7NpQM-jCarGQ-4uxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +09:02:57.633 [XNIO-1 task-2] VB5nqpuGRumaiZxMQ8ovMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.633 [XNIO-1 task-2] VB5nqpuGRumaiZxMQ8ovMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.634 [XNIO-1 task-2] VB5nqpuGRumaiZxMQ8ovMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.644 [XNIO-1 task-2] e2Y5_lzFSrq7-PjSx2CMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d58069d0-fae5-4228-9874-129d186a8f88 +09:02:57.644 [XNIO-1 task-2] e2Y5_lzFSrq7-PjSx2CMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.644 [XNIO-1 task-2] e2Y5_lzFSrq7-PjSx2CMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.644 [XNIO-1 task-2] e2Y5_lzFSrq7-PjSx2CMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d58069d0-fae5-4228-9874-129d186a8f88 +09:02:57.647 [XNIO-1 task-2] EtJmqFuGSP2sDVCunRE4Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.647 [XNIO-1 task-2] EtJmqFuGSP2sDVCunRE4Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.647 [XNIO-1 task-2] EtJmqFuGSP2sDVCunRE4Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.651 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe4830f2 +09:02:57.659 [XNIO-1 task-2] 30koBjdIRzWMddRhJfHWsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d58069d0-fae5-4228-9874-129d186a8f88, base path is set to: null +09:02:57.660 [XNIO-1 task-2] 30koBjdIRzWMddRhJfHWsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.660 [XNIO-1 task-2] 30koBjdIRzWMddRhJfHWsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.660 [XNIO-1 task-2] 30koBjdIRzWMddRhJfHWsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d58069d0-fae5-4228-9874-129d186a8f88, base path is set to: null +09:02:57.660 [XNIO-1 task-2] 30koBjdIRzWMddRhJfHWsg DEBUG com.networknt.schema.TypeValidator debug - validate( "d58069d0-fae5-4228-9874-129d186a8f88", "d58069d0-fae5-4228-9874-129d186a8f88", clientId) +09:02:57.666 [XNIO-1 task-2] sfBsUuWNQmmkUiBaOs8JBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065 +09:02:57.666 [XNIO-1 task-2] sfBsUuWNQmmkUiBaOs8JBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.666 [XNIO-1 task-2] sfBsUuWNQmmkUiBaOs8JBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.666 [XNIO-1 task-2] sfBsUuWNQmmkUiBaOs8JBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065 +09:02:57.668 [XNIO-1 task-2] YWaKOry4TZatmIKFjvRwzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.668 [XNIO-1 task-2] YWaKOry4TZatmIKFjvRwzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.668 [XNIO-1 task-2] YWaKOry4TZatmIKFjvRwzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.679 [XNIO-1 task-2] yH_XA8yCSla0KjSIEVrBTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/69471891-3c86-4754-b65c-5dc9ce9138d8, base path is set to: null +09:02:57.679 [XNIO-1 task-2] yH_XA8yCSla0KjSIEVrBTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.679 [XNIO-1 task-2] yH_XA8yCSla0KjSIEVrBTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.679 [XNIO-1 task-2] yH_XA8yCSla0KjSIEVrBTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/69471891-3c86-4754-b65c-5dc9ce9138d8, base path is set to: null +09:02:57.679 [XNIO-1 task-2] yH_XA8yCSla0KjSIEVrBTg DEBUG com.networknt.schema.TypeValidator debug - validate( "69471891-3c86-4754-b65c-5dc9ce9138d8", "69471891-3c86-4754-b65c-5dc9ce9138d8", clientId) +09:02:57.681 [XNIO-1 task-2] 7RFQ7cHJSE24GTfNejC50g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.681 [XNIO-1 task-2] 7RFQ7cHJSE24GTfNejC50g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.681 [XNIO-1 task-2] 7RFQ7cHJSE24GTfNejC50g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.682 [XNIO-1 task-2] 7RFQ7cHJSE24GTfNejC50g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.707 [XNIO-1 task-2] 8VUWsZK8QSi0v-ww8f68vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/703405d1-a1e5-4200-9461-cbf10710c440 +09:02:57.707 [XNIO-1 task-2] 8VUWsZK8QSi0v-ww8f68vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.707 [XNIO-1 task-2] 8VUWsZK8QSi0v-ww8f68vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.707 [XNIO-1 task-2] 8VUWsZK8QSi0v-ww8f68vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/703405d1-a1e5-4200-9461-cbf10710c440 +09:02:57.713 [XNIO-1 task-2] 1Ig74QXZTiC3G2vm1r0j4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5378b67b-d301-4ef3-9613-0db9fbb9eaf3, base path is set to: null +09:02:57.714 [XNIO-1 task-2] 1Ig74QXZTiC3G2vm1r0j4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.714 [XNIO-1 task-2] 1Ig74QXZTiC3G2vm1r0j4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.714 [XNIO-1 task-2] 1Ig74QXZTiC3G2vm1r0j4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5378b67b-d301-4ef3-9613-0db9fbb9eaf3, base path is set to: null +09:02:57.714 [XNIO-1 task-2] 1Ig74QXZTiC3G2vm1r0j4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5378b67b-d301-4ef3-9613-0db9fbb9eaf3", "5378b67b-d301-4ef3-9613-0db9fbb9eaf3", clientId) +09:02:57.722 [XNIO-1 task-2] C-fIJ7u0Rjq2W28i3xphQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.722 [XNIO-1 task-2] C-fIJ7u0Rjq2W28i3xphQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.723 [XNIO-1 task-2] C-fIJ7u0Rjq2W28i3xphQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.723 [XNIO-1 task-2] C-fIJ7u0Rjq2W28i3xphQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.730 [XNIO-1 task-2] qVTNxPkVR-uTdLY_w8k45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.730 [XNIO-1 task-2] qVTNxPkVR-uTdLY_w8k45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.730 [XNIO-1 task-2] qVTNxPkVR-uTdLY_w8k45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.743 [XNIO-1 task-2] RDIQyDooRYarP786q9JuUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/557e4ce8-6773-47a6-ae05-2a998dcc5046 +09:02:57.743 [XNIO-1 task-2] RDIQyDooRYarP786q9JuUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.743 [XNIO-1 task-2] RDIQyDooRYarP786q9JuUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.743 [XNIO-1 task-2] RDIQyDooRYarP786q9JuUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/557e4ce8-6773-47a6-ae05-2a998dcc5046 +09:02:57.746 [XNIO-1 task-2] 0YvUvydwTxiwzvdJisT_7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.747 [XNIO-1 task-2] 0YvUvydwTxiwzvdJisT_7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.747 [XNIO-1 task-2] 0YvUvydwTxiwzvdJisT_7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.778 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe4830f2 +09:02:57.786 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:826ea71b +09:02:57.786 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.786 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.786 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.786 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:826ea71b +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e", {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "44c6a88b-b975-45b7-9343-5555a440", {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"44c6a88b-b975-45b7-9343-5555a440","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.787 [XNIO-1 task-2] g-hNP_x5Tk-c2_Tp7bLvEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.789 [XNIO-1 task-2] j1_MJeCOQ8iczjAb-6bqkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/69471891-3c86-4754-b65c-5dc9ce9138d8, base path is set to: null +09:02:57.789 [XNIO-1 task-2] j1_MJeCOQ8iczjAb-6bqkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.790 [XNIO-1 task-2] j1_MJeCOQ8iczjAb-6bqkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.790 [XNIO-1 task-2] j1_MJeCOQ8iczjAb-6bqkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/69471891-3c86-4754-b65c-5dc9ce9138d8, base path is set to: null +09:02:57.790 [XNIO-1 task-2] j1_MJeCOQ8iczjAb-6bqkg DEBUG com.networknt.schema.TypeValidator debug - validate( "69471891-3c86-4754-b65c-5dc9ce9138d8", "69471891-3c86-4754-b65c-5dc9ce9138d8", clientId) +09:02:57.797 [XNIO-1 task-2] 97X9HmaYRXCKHuZj32Eh0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.797 [XNIO-1 task-2] 97X9HmaYRXCKHuZj32Eh0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.797 [XNIO-1 task-2] 97X9HmaYRXCKHuZj32Eh0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.804 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:826ea71b +09:02:57.805 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6f17a5bf-3754-4fe8-8935-56e9014acdc0 +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:02:57.811 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:826ea71b + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:02:57.811 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:826ea71b +09:02:57.814 [XNIO-1 task-2] XnzIc_-PRLaoOIkdU0_jxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/557e4ce8-6773-47a6-ae05-2a998dcc5046 +09:02:57.814 [XNIO-1 task-2] XnzIc_-PRLaoOIkdU0_jxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +09:02:57.814 [XNIO-1 task-2] XnzIc_-PRLaoOIkdU0_jxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/557e4ce8-6773-47a6-ae05-2a998dcc5046 +09:02:57.814 [XNIO-1 task-2] XnzIc_-PRLaoOIkdU0_jxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "557e4ce8-6773-47a6-ae05-2a998dcc5046", "557e4ce8-6773-47a6-ae05-2a998dcc5046", clientId) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:02:57.819 [XNIO-1 task-2] KdbQiAnjQgWV8gb13GHDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2082ff64-9e84-4390-8ae0-954db99d0444 +09:02:57.819 [XNIO-1 task-2] KdbQiAnjQgWV8gb13GHDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.819 [XNIO-1 task-2] KdbQiAnjQgWV8gb13GHDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.819 [XNIO-1 task-2] KdbQiAnjQgWV8gb13GHDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2082ff64-9e84-4390-8ae0-954db99d0444 +09:02:57.823 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:826ea71b +09:02:57.829 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.829 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.829 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.829 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ac83bc5-847b-4148-9369-7f92c7e1","clientDesc":"28d9a87a-d7d6-483a-b0ec-4c82ae7e3f8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.830 [XNIO-1 task-2] SopafD6xS2GMKV_-R5SNLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.831 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:826ea71b +09:02:57.833 [XNIO-1 task-2] OnwJf8pbSQqWLEmSfouSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/051aa7eb-16f1-428b-893d-52f97f3c1fc6 +09:02:57.833 [XNIO-1 task-2] OnwJf8pbSQqWLEmSfouSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.833 [XNIO-1 task-2] OnwJf8pbSQqWLEmSfouSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.833 [XNIO-1 task-2] OnwJf8pbSQqWLEmSfouSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/051aa7eb-16f1-428b-893d-52f97f3c1fc6 +09:02:57.841 [XNIO-1 task-2] notNbZcbTDGrApRNa5Q8Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.841 [XNIO-1 task-2] notNbZcbTDGrApRNa5Q8Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.841 [XNIO-1 task-2] notNbZcbTDGrApRNa5Q8Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.849 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:826ea71b +09:02:57.855 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:826ea71b +09:02:57.859 [XNIO-1 task-2] GAq32pXiST-2JAKwQhcmDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.859 [XNIO-1 task-2] GAq32pXiST-2JAKwQhcmDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.859 [XNIO-1 task-2] GAq32pXiST-2JAKwQhcmDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.866 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fe4830f2 +09:02:57.871 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:826ea71b +09:02:57.872 [XNIO-1 task-2] QXJSbhM8SzGj6ZN41zDd4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/052de9bf-8f0e-474e-a690-9b2779b12b9a, base path is set to: null +09:02:57.872 [XNIO-1 task-2] QXJSbhM8SzGj6ZN41zDd4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.872 [XNIO-1 task-2] QXJSbhM8SzGj6ZN41zDd4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.872 [XNIO-1 task-2] QXJSbhM8SzGj6ZN41zDd4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/052de9bf-8f0e-474e-a690-9b2779b12b9a, base path is set to: null +09:02:57.872 [XNIO-1 task-2] QXJSbhM8SzGj6ZN41zDd4w DEBUG com.networknt.schema.TypeValidator debug - validate( "052de9bf-8f0e-474e-a690-9b2779b12b9a", "052de9bf-8f0e-474e-a690-9b2779b12b9a", clientId) +09:02:57.875 [XNIO-1 task-2] SzCaELPJQbi6Kqffpf4Hhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.875 [XNIO-1 task-2] SzCaELPJQbi6Kqffpf4Hhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.875 [XNIO-1 task-2] SzCaELPJQbi6Kqffpf4Hhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.875 [XNIO-1 task-2] SzCaELPJQbi6Kqffpf4Hhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.881 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.882 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.882 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.882 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.882 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.883 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.883 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.883 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.883 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.883 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.883 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.883 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c6190-80f7-4ded-a260-e06b178d","clientDesc":"578c4b8b-9661-4013-b981-eaf965d92c04","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.884 [XNIO-1 task-2] DagCXIPHTjSD7S2-jM-svA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.886 [XNIO-1 task-2] tqjC1F1WTfqyHQra4nekxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/052de9bf-8f0e-474e-a690-9b2779b12b9a +09:02:57.886 [XNIO-1 task-2] tqjC1F1WTfqyHQra4nekxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.886 [XNIO-1 task-2] tqjC1F1WTfqyHQra4nekxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.886 [XNIO-1 task-2] tqjC1F1WTfqyHQra4nekxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/052de9bf-8f0e-474e-a690-9b2779b12b9a +09:02:57.888 [XNIO-1 task-2] jbwXjo-UQQGD0CB-YNUaVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d80f0097-8f10-4b1e-a593-d9748c89b43f, base path is set to: null +09:02:57.889 [XNIO-1 task-2] jbwXjo-UQQGD0CB-YNUaVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:02:57.889 [XNIO-1 task-2] jbwXjo-UQQGD0CB-YNUaVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d80f0097-8f10-4b1e-a593-d9748c89b43f +09:02:57.889 [XNIO-1 task-2] jbwXjo-UQQGD0CB-YNUaVg DEBUG com.networknt.schema.TypeValidator debug - validate( "d80f0097-8f10-4b1e-a593-d9748c89b43f", "d80f0097-8f10-4b1e-a593-d9748c89b43f", clientId) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:02:57.891 [XNIO-1 task-2] ubBLWLfoRWG85jYErqRURw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.891 [XNIO-1 task-2] ubBLWLfoRWG85jYErqRURw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.891 [XNIO-1 task-2] ubBLWLfoRWG85jYErqRURw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/052de9bf-8f0e-474e-a690-9b2779b12b9a +09:02:57.894 [XNIO-1 task-2] 1BhtAvgcT7uzoZ5lTo5Qng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d80f0097-8f10-4b1e-a593-d9748c89b43f, base path is set to: null +09:02:57.895 [XNIO-1 task-2] 1BhtAvgcT7uzoZ5lTo5Qng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.895 [XNIO-1 task-2] 1BhtAvgcT7uzoZ5lTo5Qng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.895 [XNIO-1 task-2] 1BhtAvgcT7uzoZ5lTo5Qng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d80f0097-8f10-4b1e-a593-d9748c89b43f, base path is set to: null +09:02:57.895 [XNIO-1 task-2] 1BhtAvgcT7uzoZ5lTo5Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "d80f0097-8f10-4b1e-a593-d9748c89b43f", "d80f0097-8f10-4b1e-a593-d9748c89b43f", clientId) +09:02:57.899 [XNIO-1 task-2] XIkOrR4kSH2srm2dTmwLqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.900 [XNIO-1 task-2] XIkOrR4kSH2srm2dTmwLqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.900 [XNIO-1 task-2] XIkOrR4kSH2srm2dTmwLqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +09:02:57.912 [XNIO-1 task-2] awyOL5NBQEqlnQ8WqZpi-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.913 [XNIO-1 task-2] awyOL5NBQEqlnQ8WqZpi-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.913 [XNIO-1 task-2] awyOL5NBQEqlnQ8WqZpi-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.913 [XNIO-1 task-2] awyOL5NBQEqlnQ8WqZpi-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.913 [XNIO-1 task-2] awyOL5NBQEqlnQ8WqZpi-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.913 [XNIO-1 task-2] awyOL5NBQEqlnQ8WqZpi-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.924 [XNIO-1 task-2] Li2_jRZeRKOd2ejjOXffEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/052de9bf-8f0e-474e-a690-9b2779b12b9a, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +09:02:57.930 [XNIO-1 task-2] qOv1cslSQzCj_nkfdbynhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a9909fb0-6a5f-4605-bc82-63f7260adaf9, base path is set to: null +09:02:57.930 [XNIO-1 task-2] qOv1cslSQzCj_nkfdbynhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +09:02:57.930 [XNIO-1 task-2] qOv1cslSQzCj_nkfdbynhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + +09:02:57.930 [XNIO-1 task-2] qOv1cslSQzCj_nkfdbynhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.930 [XNIO-1 task-2] qOv1cslSQzCj_nkfdbynhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a9909fb0-6a5f-4605-bc82-63f7260adaf9, base path is set to: null +09:02:57.931 [XNIO-1 task-2] qOv1cslSQzCj_nkfdbynhw DEBUG com.networknt.schema.TypeValidator debug - validate( "a9909fb0-6a5f-4605-bc82-63f7260adaf9", "a9909fb0-6a5f-4605-bc82-63f7260adaf9", clientId) +09:02:57.935 [XNIO-1 task-2] 392p_TSDTf2qRwNnm2y7Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.935 [XNIO-1 task-2] 392p_TSDTf2qRwNnm2y7Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.935 [XNIO-1 task-2] 392p_TSDTf2qRwNnm2y7Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.948 [XNIO-1 task-2] mwqQ8-0kRIO5CtggmlGhcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/89a05b21-5ea0-4446-b97c-d7e5d919ca89 +09:02:57.948 [XNIO-1 task-2] mwqQ8-0kRIO5CtggmlGhcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.948 [XNIO-1 task-2] mwqQ8-0kRIO5CtggmlGhcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.948 [XNIO-1 task-2] mwqQ8-0kRIO5CtggmlGhcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/89a05b21-5ea0-4446-b97c-d7e5d919ca89 +09:02:57.948 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:89a05b21-5ea0-4446-b97c-d7e5d919ca89 +09:02:57.955 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.956 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.956 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.956 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.956 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG com.networknt.schema.TypeValidator debug - validate( "613853af-aa1f-4c4d-9bdb-6fe1b35bd49b", {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a0c6912-1f11-4b47-92d7-cc7bfcd6", {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0a0c6912-1f11-4b47-92d7-cc7bfcd6","clientDesc":"613853af-aa1f-4c4d-9bdb-6fe1b35bd49b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.957 [XNIO-1 task-2] lkt328OcS9qLYJSG-5ALvw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:57.959 [XNIO-1 task-2] ykotxO9CQFi6KAjN141aIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.960 [XNIO-1 task-2] ykotxO9CQFi6KAjN141aIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.960 [XNIO-1 task-2] ykotxO9CQFi6KAjN141aIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.971 [XNIO-1 task-2] 0Ur-YYb2S_KME_BtFEnx4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a9909fb0-6a5f-4605-bc82-63f7260adaf9, base path is set to: null +09:02:57.971 [XNIO-1 task-2] 0Ur-YYb2S_KME_BtFEnx4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.971 [XNIO-1 task-2] 0Ur-YYb2S_KME_BtFEnx4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:57.972 [XNIO-1 task-2] 0Ur-YYb2S_KME_BtFEnx4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a9909fb0-6a5f-4605-bc82-63f7260adaf9, base path is set to: null +09:02:57.972 [XNIO-1 task-2] 0Ur-YYb2S_KME_BtFEnx4A DEBUG com.networknt.schema.TypeValidator debug - validate( "a9909fb0-6a5f-4605-bc82-63f7260adaf9", "a9909fb0-6a5f-4605-bc82-63f7260adaf9", clientId) +09:02:57.979 [XNIO-1 task-2] l1nCNIa_SE2652mj7WgeRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/97623720-f156-464c-ade1-aaafbc181ee8 +09:02:57.979 [XNIO-1 task-2] l1nCNIa_SE2652mj7WgeRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.979 [XNIO-1 task-2] l1nCNIa_SE2652mj7WgeRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.979 [XNIO-1 task-2] l1nCNIa_SE2652mj7WgeRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/97623720-f156-464c-ade1-aaafbc181ee8 +09:02:57.987 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.987 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.988 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"181b1e38-f394-451e-913e-46b89bfe","clientDesc":"4815dddf-3597-4a03-a26f-763417335b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:57.989 [XNIO-1 task-2] kIQ11Df1SUq5lYQRx_wk2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:57.991 [XNIO-1 task-2] 7ajBDs_0S2KNUgJomutKpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6f17a5bf-3754-4fe8-8935-56e9014acdc0 +09:02:57.991 [XNIO-1 task-2] 7ajBDs_0S2KNUgJomutKpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.991 [XNIO-1 task-2] 7ajBDs_0S2KNUgJomutKpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:57.991 [XNIO-1 task-2] 7ajBDs_0S2KNUgJomutKpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6f17a5bf-3754-4fe8-8935-56e9014acdc0 +09:02:57.991 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6f17a5bf-3754-4fe8-8935-56e9014acdc0 +09:02:57.998 [XNIO-1 task-2] lXas686rQXGJOTe9UcVNLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.998 [XNIO-1 task-2] lXas686rQXGJOTe9UcVNLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.998 [XNIO-1 task-2] lXas686rQXGJOTe9UcVNLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:57.998 [XNIO-1 task-2] lXas686rQXGJOTe9UcVNLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.003 [XNIO-1 task-2] -A5jXJZ5RE2ubqbVLFQkng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.003 [XNIO-1 task-2] -A5jXJZ5RE2ubqbVLFQkng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.003 [XNIO-1 task-2] -A5jXJZ5RE2ubqbVLFQkng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.009 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e0c164fa-7a92-40bc-8563-31cdb84bd8aa +09:02:58.015 [XNIO-1 task-2] hulrVMOcSiOY1SSJfO4zgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.016 [XNIO-1 task-2] hulrVMOcSiOY1SSJfO4zgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.016 [XNIO-1 task-2] hulrVMOcSiOY1SSJfO4zgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.016 [XNIO-1 task-2] hulrVMOcSiOY1SSJfO4zgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.020 [XNIO-1 task-2] JVUKmLYFTNOHXIM1wg5REQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.020 [XNIO-1 task-2] JVUKmLYFTNOHXIM1wg5REQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.020 [XNIO-1 task-2] JVUKmLYFTNOHXIM1wg5REQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.020 [XNIO-1 task-2] JVUKmLYFTNOHXIM1wg5REQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.027 [XNIO-1 task-2] NQ3sb0eOTjOXcf7sSmpJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.027 [XNIO-1 task-2] NQ3sb0eOTjOXcf7sSmpJJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.027 [XNIO-1 task-2] NQ3sb0eOTjOXcf7sSmpJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.031 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d02002f5 +09:02:58.032 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d02002f5 +09:02:58.046 [XNIO-1 task-2] xqcb9UUEQdiKzkAkZRGQVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.046 [XNIO-1 task-2] xqcb9UUEQdiKzkAkZRGQVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.047 [XNIO-1 task-2] xqcb9UUEQdiKzkAkZRGQVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.053 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4ec97866-666a-4663-95a3-94e902d80091 +09:02:58.059 [XNIO-1 task-2] ZT2q_LwIS3iIRCHi440VvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/888d0b2b-b03a-4ccc-a7f2-b4582f6d24a8, base path is set to: null +09:02:58.060 [XNIO-1 task-2] ZT2q_LwIS3iIRCHi440VvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.060 [XNIO-1 task-2] ZT2q_LwIS3iIRCHi440VvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.060 [XNIO-1 task-2] ZT2q_LwIS3iIRCHi440VvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/888d0b2b-b03a-4ccc-a7f2-b4582f6d24a8, base path is set to: null +09:02:58.060 [XNIO-1 task-2] ZT2q_LwIS3iIRCHi440VvA DEBUG com.networknt.schema.TypeValidator debug - validate( "888d0b2b-b03a-4ccc-a7f2-b4582f6d24a8", "888d0b2b-b03a-4ccc-a7f2-b4582f6d24a8", clientId) +09:02:58.064 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d02002f5 +09:02:58.065 [XNIO-1 task-2] wTyeJsrGSfK9vZ7Obf8hrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.065 [XNIO-1 task-2] wTyeJsrGSfK9vZ7Obf8hrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.066 [XNIO-1 task-2] wTyeJsrGSfK9vZ7Obf8hrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.066 [XNIO-1 task-2] wTyeJsrGSfK9vZ7Obf8hrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.072 [XNIO-1 task-2] 0yzwGwiPS2GZlYH4Ii0mpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.072 [XNIO-1 task-2] 0yzwGwiPS2GZlYH4Ii0mpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.072 [XNIO-1 task-2] 0yzwGwiPS2GZlYH4Ii0mpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.072 [XNIO-1 task-2] 0yzwGwiPS2GZlYH4Ii0mpA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.077 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.077 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.077 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.077 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.077 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:58.077 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab2608c1-bce5-46c2-a69a-3e3560a35234", {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:58.078 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.078 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.078 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG com.networknt.schema.TypeValidator debug - validate( "15cca996-60ad-4ec7-ba7a-1a7ed26e", {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:58.078 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.078 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"15cca996-60ad-4ec7-ba7a-1a7ed26e","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.078 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.078 [XNIO-1 task-2] JDDiRNomQfCdLhlwCCRXNA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:58.080 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.080 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.080 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.080 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08d2aaeb-7793-4baf-b981-7afd1f9c","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.081 [XNIO-1 task-2] Bx-cbIViR0eDLz0Z49MmLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:58.083 [XNIO-1 task-2] SdExtQyQTgyy1WTXV94koQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4d70ad8-aa4c-4ef9-a6ea-adbc9ded225d +09:02:58.083 [XNIO-1 task-2] SdExtQyQTgyy1WTXV94koQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.083 [XNIO-1 task-2] SdExtQyQTgyy1WTXV94koQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:58.083 [XNIO-1 task-2] SdExtQyQTgyy1WTXV94koQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4d70ad8-aa4c-4ef9-a6ea-adbc9ded225d +09:02:58.086 [XNIO-1 task-2] j9y9WiTiRC-iBwvSneFMsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065, base path is set to: null +09:02:58.086 [XNIO-1 task-2] j9y9WiTiRC-iBwvSneFMsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.086 [XNIO-1 task-2] j9y9WiTiRC-iBwvSneFMsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.086 [XNIO-1 task-2] j9y9WiTiRC-iBwvSneFMsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/71c12567-6d85-4470-b2dc-073d659ad065, base path is set to: null +09:02:58.086 [XNIO-1 task-2] j9y9WiTiRC-iBwvSneFMsg DEBUG com.networknt.schema.TypeValidator debug - validate( "71c12567-6d85-4470-b2dc-073d659ad065", "71c12567-6d85-4470-b2dc-073d659ad065", clientId) +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "ab2608c1-bce5-46c2-a69a-3e3560a35234", {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.091 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.092 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "74c106b0-88e0-4930-8cec-f45cbbcd", {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:58.092 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.092 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"74c106b0-88e0-4930-8cec-f45cbbcd","clientDesc":"ab2608c1-bce5-46c2-a69a-3e3560a35234","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.092 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.092 [XNIO-1 task-2] JtJqgO7FTkSlOzc2GShxtw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:58.094 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.094 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.095 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9899927e-571c-4235-b489-9006c585","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.096 [XNIO-1 task-2] ghN7aMHlS1aGzn0oyxmFYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:58.098 [XNIO-1 task-2] 5o-371CsSkSsl3V1zTEVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4d70ad8-aa4c-4ef9-a6ea-adbc9ded225d +09:02:58.099 [XNIO-1 task-2] 5o-371CsSkSsl3V1zTEVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.099 [XNIO-1 task-2] 5o-371CsSkSsl3V1zTEVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:58.099 [XNIO-1 task-2] 5o-371CsSkSsl3V1zTEVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4d70ad8-aa4c-4ef9-a6ea-adbc9ded225d +09:02:58.102 [XNIO-1 task-2] Xl4oGyhtS-usMZA2EecT4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/01b13be1-5073-46a1-ad99-dfd2f1c5a593, base path is set to: null +09:02:58.103 [XNIO-1 task-2] Xl4oGyhtS-usMZA2EecT4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.103 [XNIO-1 task-2] Xl4oGyhtS-usMZA2EecT4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.103 [XNIO-1 task-2] Xl4oGyhtS-usMZA2EecT4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/01b13be1-5073-46a1-ad99-dfd2f1c5a593, base path is set to: null +09:02:58.103 [XNIO-1 task-2] Xl4oGyhtS-usMZA2EecT4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "01b13be1-5073-46a1-ad99-dfd2f1c5a593", "01b13be1-5073-46a1-ad99-dfd2f1c5a593", clientId) +09:02:58.108 [XNIO-1 task-2] 3Hoc0YusSaG804TpfXX1Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4d70ad8-aa4c-4ef9-a6ea-adbc9ded225d +09:02:58.108 [XNIO-1 task-2] 3Hoc0YusSaG804TpfXX1Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.109 [XNIO-1 task-2] 3Hoc0YusSaG804TpfXX1Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:58.109 [XNIO-1 task-2] 3Hoc0YusSaG804TpfXX1Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4d70ad8-aa4c-4ef9-a6ea-adbc9ded225d +09:02:58.114 [XNIO-1 task-2] cxZM_blYQlysFz9wvQIuVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.114 [XNIO-1 task-2] cxZM_blYQlysFz9wvQIuVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.114 [XNIO-1 task-2] cxZM_blYQlysFz9wvQIuVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.114 [XNIO-1 task-2] cxZM_blYQlysFz9wvQIuVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.125 [XNIO-1 task-2] dYHZHfPzRk6JYg5pWd55ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6142d4fd-c856-47fb-8da9-3c5a3344c782, base path is set to: null +09:02:58.125 [XNIO-1 task-2] dYHZHfPzRk6JYg5pWd55ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.125 [XNIO-1 task-2] dYHZHfPzRk6JYg5pWd55ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.126 [XNIO-1 task-2] dYHZHfPzRk6JYg5pWd55ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6142d4fd-c856-47fb-8da9-3c5a3344c782, base path is set to: null +09:02:58.126 [XNIO-1 task-2] dYHZHfPzRk6JYg5pWd55ag DEBUG com.networknt.schema.TypeValidator debug - validate( "6142d4fd-c856-47fb-8da9-3c5a3344c782", "6142d4fd-c856-47fb-8da9-3c5a3344c782", clientId) +09:02:58.128 [XNIO-1 task-2] HAHb3UvCSreeyj3-2dPiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.129 [XNIO-1 task-2] HAHb3UvCSreeyj3-2dPiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.129 [XNIO-1 task-2] HAHb3UvCSreeyj3-2dPiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.129 [XNIO-1 task-2] HAHb3UvCSreeyj3-2dPiFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.135 [XNIO-1 task-2] vGWyOtrPTumayGe-N9yIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/69471891-3c86-4754-b65c-5dc9ce9138d8 +09:02:58.135 [XNIO-1 task-2] vGWyOtrPTumayGe-N9yIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.135 [XNIO-1 task-2] vGWyOtrPTumayGe-N9yIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:58.135 [XNIO-1 task-2] vGWyOtrPTumayGe-N9yIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/69471891-3c86-4754-b65c-5dc9ce9138d8 +09:02:58.138 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.138 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.138 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.139 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.139 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.140 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.140 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.141 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.141 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.141 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.141 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.141 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71d51a12-8015-4159-b673-72272517","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.141 [XNIO-1 task-2] 6QcvIP5sSlmm_-t7qbXu6Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:02:58.144 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.144 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.144 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "6de7e6aa-01c9-4ba7-ae43-04246431d650", {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "5243fbb9-5082-493e-9960-fcaefbd6", {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5243fbb9-5082-493e-9960-fcaefbd6","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.145 [XNIO-1 task-2] 9kNhq9OCTCG-3f6BI6wDEg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:58.147 [XNIO-1 task-2] iWzfZ-PuRqiOvoFBBsSTjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ec97866-666a-4663-95a3-94e902d80091, base path is set to: null +09:02:58.147 [XNIO-1 task-2] iWzfZ-PuRqiOvoFBBsSTjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.147 [XNIO-1 task-2] iWzfZ-PuRqiOvoFBBsSTjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.147 [XNIO-1 task-2] iWzfZ-PuRqiOvoFBBsSTjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ec97866-666a-4663-95a3-94e902d80091, base path is set to: null +09:02:58.148 [XNIO-1 task-2] iWzfZ-PuRqiOvoFBBsSTjA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ec97866-666a-4663-95a3-94e902d80091", "4ec97866-666a-4663-95a3-94e902d80091", clientId) +09:02:58.153 [XNIO-1 task-2] I4V0JWj6RR2xJxfSRFV_DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf2aee8a-e0f4-4e07-8b37-feed944b05e6, base path is set to: null +09:02:58.153 [XNIO-1 task-2] I4V0JWj6RR2xJxfSRFV_DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.153 [XNIO-1 task-2] I4V0JWj6RR2xJxfSRFV_DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.153 [XNIO-1 task-2] I4V0JWj6RR2xJxfSRFV_DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf2aee8a-e0f4-4e07-8b37-feed944b05e6, base path is set to: null +09:02:58.154 [XNIO-1 task-2] I4V0JWj6RR2xJxfSRFV_DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cf2aee8a-e0f4-4e07-8b37-feed944b05e6", "cf2aee8a-e0f4-4e07-8b37-feed944b05e6", clientId) +09:02:58.156 [XNIO-1 task-2] KzEn7-nKTqGNqmTSFKem0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.156 [XNIO-1 task-2] KzEn7-nKTqGNqmTSFKem0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.156 [XNIO-1 task-2] KzEn7-nKTqGNqmTSFKem0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.162 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0c876c30-549e-49a0-99fb-feabdfc43a9b +09:02:58.168 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d02002f5 +09:02:58.169 [XNIO-1 task-2] WwguJ98ETC-VVlFMb05Icw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9f45db83-d12a-4135-8eef-3d527fc663d4, base path is set to: null +09:02:58.169 [XNIO-1 task-2] WwguJ98ETC-VVlFMb05Icw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.169 [XNIO-1 task-2] WwguJ98ETC-VVlFMb05Icw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.169 [XNIO-1 task-2] WwguJ98ETC-VVlFMb05Icw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9f45db83-d12a-4135-8eef-3d527fc663d4, base path is set to: null +09:02:58.169 [XNIO-1 task-2] WwguJ98ETC-VVlFMb05Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "9f45db83-d12a-4135-8eef-3d527fc663d4", "9f45db83-d12a-4135-8eef-3d527fc663d4", clientId) +09:02:58.172 [XNIO-1 task-2] N_MLxvaDSumMlW0XFn3xtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.172 [XNIO-1 task-2] N_MLxvaDSumMlW0XFn3xtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.172 [XNIO-1 task-2] N_MLxvaDSumMlW0XFn3xtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.172 [XNIO-1 task-2] N_MLxvaDSumMlW0XFn3xtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.178 [XNIO-1 task-2] oAVt1yfKSzC0ZoqwY-VPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.178 [XNIO-1 task-2] oAVt1yfKSzC0ZoqwY-VPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.178 [XNIO-1 task-2] oAVt1yfKSzC0ZoqwY-VPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.192 [XNIO-1 task-2] yMlrvH9sRT2SqcTQZ3F1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9f45db83-d12a-4135-8eef-3d527fc663d4 +09:02:58.192 [XNIO-1 task-2] yMlrvH9sRT2SqcTQZ3F1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.192 [XNIO-1 task-2] yMlrvH9sRT2SqcTQZ3F1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:58.192 [XNIO-1 task-2] yMlrvH9sRT2SqcTQZ3F1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9f45db83-d12a-4135-8eef-3d527fc663d4 +09:02:58.199 [XNIO-1 task-2] ng_HjqAtTKO99IxUeoNcZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/739dba5f-9a3d-43d7-99a3-c96968066ea9, base path is set to: null +09:02:58.199 [XNIO-1 task-2] ng_HjqAtTKO99IxUeoNcZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.199 [XNIO-1 task-2] ng_HjqAtTKO99IxUeoNcZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.199 [XNIO-1 task-2] ng_HjqAtTKO99IxUeoNcZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/739dba5f-9a3d-43d7-99a3-c96968066ea9, base path is set to: null +09:02:58.199 [XNIO-1 task-2] ng_HjqAtTKO99IxUeoNcZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "739dba5f-9a3d-43d7-99a3-c96968066ea9", "739dba5f-9a3d-43d7-99a3-c96968066ea9", clientId) +09:02:58.206 [XNIO-1 task-2] SRUhKRf4Txq_f7OB47dlTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.206 [XNIO-1 task-2] SRUhKRf4Txq_f7OB47dlTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.206 [XNIO-1 task-2] SRUhKRf4Txq_f7OB47dlTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.218 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.218 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.218 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "538583a9-4d35-41cd-86d2-b48f2b7b4637", {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "9bbdc671-9b2b-4cc4-b829-249f572d", {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9bbdc671-9b2b-4cc4-b829-249f572d","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.219 [XNIO-1 task-2] 5XMIpRr4QJCusVj3mfMUjw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:58.222 [XNIO-1 task-2] 6E0YAqolTmG8lCApvlxt_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.222 [XNIO-1 task-2] 6E0YAqolTmG8lCApvlxt_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.222 [XNIO-1 task-2] 6E0YAqolTmG8lCApvlxt_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.222 [XNIO-1 task-2] 6E0YAqolTmG8lCApvlxt_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.226 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4faccee7 +09:02:58.228 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4faccee7 +09:02:58.230 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.230 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.230 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "538583a9-4d35-41cd-86d2-b48f2b7b4637", {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "0bf79fb9-6931-4044-859f-3cd96655", {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0bf79fb9-6931-4044-859f-3cd96655","clientDesc":"538583a9-4d35-41cd-86d2-b48f2b7b4637","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:02:58.231 [XNIO-1 task-2] TXOxFaTmTZSWh8XPWY4dcw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:02:58.235 [XNIO-1 task-2] 0i9Vs1voQD-sLxRhJB7VoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5f7dc0b8-5b84-4f7a-9c0b-4b7803f55032, base path is set to: null +09:02:58.235 [XNIO-1 task-2] 0i9Vs1voQD-sLxRhJB7VoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.235 [XNIO-1 task-2] 0i9Vs1voQD-sLxRhJB7VoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.235 [XNIO-1 task-2] 0i9Vs1voQD-sLxRhJB7VoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5f7dc0b8-5b84-4f7a-9c0b-4b7803f55032, base path is set to: null +09:02:58.235 [XNIO-1 task-2] 0i9Vs1voQD-sLxRhJB7VoA DEBUG com.networknt.schema.TypeValidator debug - validate( "5f7dc0b8-5b84-4f7a-9c0b-4b7803f55032", "5f7dc0b8-5b84-4f7a-9c0b-4b7803f55032", clientId) +09:02:58.241 [XNIO-1 task-2] YGqdb06QSeSOvlNLRqlNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/872334cb-e1f8-493c-aef5-bc958bc46e00 +09:02:58.241 [XNIO-1 task-2] YGqdb06QSeSOvlNLRqlNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.241 [XNIO-1 task-2] YGqdb06QSeSOvlNLRqlNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:58.241 [XNIO-1 task-2] YGqdb06QSeSOvlNLRqlNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/872334cb-e1f8-493c-aef5-bc958bc46e00 +09:02:58.247 [XNIO-1 task-2] FhXs_uUsRI-uViIJbKxQag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.247 [XNIO-1 task-2] FhXs_uUsRI-uViIJbKxQag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.247 [XNIO-1 task-2] FhXs_uUsRI-uViIJbKxQag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:02:58.248 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e624f1ad +09:02:58.249 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e624f1ad +09:02:58.255 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d02002f5 +09:02:58.258 [XNIO-1 task-2] xHOmn8BkTfKpAr_eoJ2HeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.258 [XNIO-1 task-2] xHOmn8BkTfKpAr_eoJ2HeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.258 [XNIO-1 task-2] xHOmn8BkTfKpAr_eoJ2HeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.268 [XNIO-1 task-2] EZJjVjx-S_6T5TK33E1qUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cc441227-768b-427c-a4e9-6206a9b3f79b +09:02:58.269 [XNIO-1 task-2] EZJjVjx-S_6T5TK33E1qUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.269 [XNIO-1 task-2] EZJjVjx-S_6T5TK33E1qUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:02:58.269 [XNIO-1 task-2] EZJjVjx-S_6T5TK33E1qUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cc441227-768b-427c-a4e9-6206a9b3f79b +09:02:58.272 [XNIO-1 task-2] NAnA-PPVSp-uUOBsLFMieA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cc441227-768b-427c-a4e9-6206a9b3f79b, base path is set to: null +09:02:58.272 [XNIO-1 task-2] NAnA-PPVSp-uUOBsLFMieA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:02:58.272 [XNIO-1 task-2] NAnA-PPVSp-uUOBsLFMieA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:02:58.272 [XNIO-1 task-2] NAnA-PPVSp-uUOBsLFMieA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cc441227-768b-427c-a4e9-6206a9b3f79b, base path is set to: null +09:02:58.272 [XNIO-1 task-2] NAnA-PPVSp-uUOBsLFMieA DEBUG com.networknt.schema.TypeValidator debug - validate( "cc441227-768b-427c-a4e9-6206a9b3f79b", "cc441227-768b-427c-a4e9-6206a9b3f79b", clientId) +09:02:58.278 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.278 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.278 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:02:58.278 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG com.networknt.schema.TypeValidator debug - validate( "6de7e6aa-01c9-4ba7-ae43-04246431d650", {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b405bb2-13ea-4098-8e67-dc34f95e", {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4b405bb2-13ea-4098-8e67-dc34f95e","clientDesc":"6de7e6aa-01c9-4ba7-ae43-04246431d650","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.279 [XNIO-1 task-2] t6hg8v-USEqKmfshXTySCw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) diff --git a/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..371c9e4 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2103 @@ +09:02:58.966 [XNIO-1 task-1] AX3Mmlf0Tyis2CrFUBp4lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:58.966 [XNIO-1 task-1] AX3Mmlf0Tyis2CrFUBp4lg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:58.966 [XNIO-1 task-1] AX3Mmlf0Tyis2CrFUBp4lg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:58.966 [XNIO-1 task-1] AX3Mmlf0Tyis2CrFUBp4lg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:58.976 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7ff3e1b7 +09:02:58.976 [XNIO-1 task-1] AX3Mmlf0Tyis2CrFUBp4lg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:58.977 [XNIO-1 task-1] AX3Mmlf0Tyis2CrFUBp4lg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:58.981 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:58.982 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:58.982 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:58.982 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e129e46c-0fda-4302-9468-c05962662146", "e129e46c-0fda-4302-9468-c05962662146", client_id) +09:02:58.982 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:58.982 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:58.983 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:58.983 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:58.983 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:58.992 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:58.992 [XNIO-1 task-1] Tvj9DntyQaSN8RpuklLerQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.048 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7ff3e1b7 +09:02:59.055 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.055 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.055 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.055 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.055 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.055 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.055 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.056 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.061 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.061 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.063 [XNIO-1 task-1] RNKpsNvjS7O-go7OS75qSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PYuP3w4zRjmw6G8WGN7Z9Q +09:02:59.066 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.066 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.066 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.067 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.067 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.067 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.067 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.067 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.071 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:760ab726 +09:02:59.073 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.073 [XNIO-1 task-1] W4Q03gYvTAy6vAJUZjUvEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.073 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:760ab726 +09:02:59.092 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG com.networknt.schema.TypeValidator debug - validate( "e129e46c-0fda-4302-9468-c05962662146", "e129e46c-0fda-4302-9468-c05962662146", client_id) +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.093 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.099 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.099 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.101 [XNIO-1 task-1] 5a1UC1PTQ42uen0zif2IAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ixGSVPxhS2u21g1pZ1Fv7g +09:02:59.102 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5e3b232e-c877-4128-884f-f6c7cd3a8fff +09:02:59.133 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.134 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.134 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.134 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.134 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.134 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.135 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.135 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.140 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.140 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.141 [XNIO-1 task-1] r-A7BzNBRfC9dVC-jSRikA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XB6xsFqZQgy60Ldfwp7ZgQ +09:02:59.143 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.143 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.144 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.144 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.144 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.144 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.144 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.144 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.150 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.150 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.151 [XNIO-1 task-1] 11lTnJpPQqK8b9cB4p1FNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=c788MtS7Q4SDLSsaURTw7Q +09:02:59.157 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.157 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.157 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.158 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.158 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.158 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.158 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.158 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.165 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.165 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.167 [XNIO-1 task-1] RpxFOr__RquWiLIm7Unouw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wheDNrChT6ij3dtIXAj1Tg +09:02:59.172 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.172 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.172 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.172 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.172 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.173 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.173 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.173 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.178 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.178 [XNIO-1 task-1] KueTdmC3RSuEyL-4sL3mAQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.178 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:760ab726 +09:02:59.179 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:760ab726 +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.182 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.188 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.188 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.189 [XNIO-1 task-1] m9Bmju9WSZ2wd05SB9aVtg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iRyt_NpgRjuetelziqEtxg +09:02:59.192 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.192 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.192 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.192 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.192 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.192 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.193 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.193 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.198 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.198 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.199 [XNIO-1 task-1] AE_5IdKISOiFdgBcaE_8HA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ouMGpPa1Q_mWeAOJnTHI4w +09:02:59.200 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:66697650 +09:02:59.201 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.201 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.201 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.202 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.202 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.202 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.202 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.202 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.202 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.208 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:66697650 +09:02:59.208 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.208 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.214 [XNIO-1 task-1] hcZ7lVOYSJuVpzWn-n8TQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tI5jR_Q_QUCG7hw3I2c0QA +09:02:59.218 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.218 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.218 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.218 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.218 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.218 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.219 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.219 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.219 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.224 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.224 [XNIO-1 task-1] 1A3dsTn7QmqG6Kvq5H2Ktw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.242 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e8ebaa13-772b-4e96-ba32-d5a5ee2f182a +09:02:59.243 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e8ebaa13-772b-4e96-ba32-d5a5ee2f182a +09:02:59.247 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:66697650 +09:02:59.253 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.253 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.253 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.253 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.253 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.253 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.253 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.254 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.258 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:66697650 +09:02:59.259 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.259 [XNIO-1 task-1] 78wVKtVAQXisXThPzOt_zg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.276 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d3056d9 +09:02:59.277 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d3056d9 +09:02:59.286 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.286 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.286 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.286 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.286 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.287 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.287 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.287 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.293 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.294 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.295 [XNIO-1 task-1] F-01m63PRvOjZ6oOWkG4uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=33GsOeSBQUSPcu-b_Q8aUA +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.301 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.306 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.307 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.307 [XNIO-1 task-1] GxTlBPcJR3Crtwlu4l5HqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_zN42o19ThSrPEBKquBylg +09:02:59.318 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d3056d9 +09:02:59.332 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d3056d9 +09:02:59.365 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.365 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.365 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.365 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.365 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.365 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.366 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.366 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.371 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.371 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.372 [XNIO-1 task-1] XjoxbJCyTbeloT0INQ0qoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gm0Cly0gSy63-YZ5OBWsFw +09:02:59.376 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.376 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.377 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.377 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.377 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.377 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.377 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.377 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.382 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.382 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.383 [XNIO-1 task-1] 6AEU91WRRwa4a3uYMT6mhg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kwmI0vjjTJeGIKeZALtPrA +09:02:59.387 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.387 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.387 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.387 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.388 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.388 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.388 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.388 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.394 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.395 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.396 [XNIO-1 task-1] p1R7qcZXQoeMOG647QBgpA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=q2HYJA8xQ7mr3FtKzqJr-w +09:02:59.406 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:06a6465a-c63a-430c-bc59-1000a28db21c +09:02:59.410 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9a1a734d +09:02:59.417 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:06a6465a-c63a-430c-bc59-1000a28db21c +09:02:59.428 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.428 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.428 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.428 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.428 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.428 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.428 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.429 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.435 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.435 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.437 [XNIO-1 task-1] w__E16EjQ0Oy6-cWt5zlTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=z4ev9qJNRuiYxBu0_3EW0Q +09:02:59.439 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a1a734d +09:02:59.467 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e8dfba55-06c6-4893-810b-540eea5c50ae +09:02:59.474 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.474 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.474 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.474 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.475 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.475 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.475 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.475 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.475 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.481 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.482 [XNIO-1 task-1] Ye20kCKmQCO8rrpvPwRM0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.485 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.486 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.491 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.492 [XNIO-1 task-1] 0U1qGcIpQDudoHdjWlA3nQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.494 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.495 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.495 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.495 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.496 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.496 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.496 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.496 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.496 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.501 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.501 [XNIO-1 task-1] wZWMqBdCT9q85HMIS4Z_Qg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.504 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.510 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.510 [XNIO-1 task-1] dFrLGipcRpKRGW17FYC-QQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.515 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.515 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.515 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.516 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.516 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.517 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.517 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.517 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.517 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.523 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.523 [XNIO-1 task-1] MfLT-17VSE-4Fekaa4byiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.527 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.528 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.532 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:bafee45b +09:02:59.534 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6d3056d9 +09:02:59.534 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.534 [XNIO-1 task-1] -WLI2IyySY2t_VvSSg-9qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.538 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.538 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.538 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.538 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.538 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.538 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.539 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.539 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.539 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.541 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9a1a734d +09:02:59.544 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.544 [XNIO-1 task-1] sf5M8llCSlutFEAfW7rWUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.547 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "23218612-3bca-4f19-86e0-d3e53c98a676", "23218612-3bca-4f19-86e0-d3e53c98a676", client_id) +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.548 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.554 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.554 [XNIO-1 task-1] Kb6w8wT4R-ufhZkpDA7pfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.557 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.557 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.557 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.558 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG com.networknt.schema.TypeValidator debug - validate( "5e3b232e-c877-4128-884f-f6c7cd3a8fff", "5e3b232e-c877-4128-884f-f6c7cd3a8fff", client_id) +09:02:59.558 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.558 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.558 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.558 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.558 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.564 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.564 [XNIO-1 task-1] a1OyB_1ES--2n2RhT6UtEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.569 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.569 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.570 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.570 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50043560-cd3d-4453-8d51-39ea12134159", "50043560-cd3d-4453-8d51-39ea12134159", client_id) +09:02:59.570 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.570 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.570 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.570 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.571 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.577 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.577 [XNIO-1 task-1] DYBI6jLqR0u7BwXYOOdCXQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", client_id) +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.581 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.582 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.588 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.588 [XNIO-1 task-1] K0HAI_YLQfmEe78eaLtRZw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.602 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.607 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c466a2b9-2a54-4c77-9c71-cf5469e41708 +09:02:59.608 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c466a2b9-2a54-4c77-9c71-cf5469e41708 +09:02:59.615 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3988399d-d1c3-4722-ab81-6aa3707bfdca +09:02:59.679 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:bafee45b +09:02:59.736 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.736 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.736 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.737 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1057e890-50bb-452e-b3db-e760230099bd", "1057e890-50bb-452e-b3db-e760230099bd", client_id) +09:02:59.737 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.737 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.737 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.737 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.738 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:02:59.741 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.741 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.741 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.741 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG com.networknt.schema.TypeValidator debug - validate( "fa83159f-326c-409d-a4fb-18b0affb2361", "fa83159f-326c-409d-a4fb-18b0affb2361", client_id) +09:02:59.741 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.742 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.742 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.742 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.742 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.748 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.749 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.750 [XNIO-1 task-1] 94ymMdEXQxStENdsMdcVWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tVXA-2yTSDauMWo_dP0P7g +09:02:59.752 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.752 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.752 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.752 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.752 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.752 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.752 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.753 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.753 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.753 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.754 [XNIO-1 task-2] VN6Ddb1hQ2KAVWhttNCCHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wjUdeHehTUuKxLla5AI3Ng +09:02:59.756 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.756 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.756 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.756 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fa83159f-326c-409d-a4fb-18b0affb2361", "fa83159f-326c-409d-a4fb-18b0affb2361", client_id) +09:02:59.757 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.757 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.757 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.757 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.757 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.760 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.760 [XNIO-1 task-1] polaysNpS8ShZxknBdvZVg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.761 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.764 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.764 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:02:59.764 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:02:59.764 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", client_id) +09:02:59.765 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:02:59.765 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:02:59.765 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:02:59.765 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:02:59.765 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.765 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:02:59.765 [XNIO-1 task-2] CQVqy0XsTKKQBXeCoGaslQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:02:59.773 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.773 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.774 [XNIO-1 task-1] vIOZo2vRSAWXAQt66EkRyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fCKQutI1S82Gfvlht0zOqg +09:02:59.798 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.798 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.798 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.798 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.799 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.799 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.799 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.799 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.827 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.828 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.828 [XNIO-1 task-1] -LcmOaOBSLCMOVx1Pk5JSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jyO_BNdTRWO4at5-G9xwEg +09:02:59.833 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.833 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.833 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:02:59.833 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:02:59.833 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:02:59.834 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:02:59.834 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:02:59.834 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:02:59.839 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:02:59.839 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:02:59.840 [XNIO-1 task-1] ek-AWPZCTxeAL-YL265TUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3V_lEjR2S-qHnYFD3h8VMg +09:03:00.044 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.046 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.055 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.055 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.055 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.055 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.055 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.055 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.055 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.056 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.061 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.062 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.062 [XNIO-1 task-1] yDzJRvpUQqCObBht8iONJg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8iO1qAcdS_-u4Q1amNGMow +09:03:00.065 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.066 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.066 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.066 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.066 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.066 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.066 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.066 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.072 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.072 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.074 [XNIO-1 task-1] Dj313fatQWS3WA9LTWhJjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=88SL4-WHTRyzExH1G95R-A +09:03:00.078 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.078 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.078 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.079 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.079 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.079 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.079 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.079 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.084 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.085 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.085 [XNIO-1 task-1] 54Ph78fVQDuQhI4GqsYNBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Wmnv-MHJRfaM_DC2iQfXWg +09:03:00.088 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.089 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.089 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.089 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.089 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.089 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.089 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.089 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.095 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.095 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.096 [XNIO-1 task-1] PiUQ0SWvTSOl0KZBmIrQ5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fSccyf2hQjKOdkGiUemShQ +09:03:00.098 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.098 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:00.098 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.098 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG com.networknt.schema.TypeValidator debug - validate( "c466a2b9-2a54-4c77-9c71-cf5469e41708", "c466a2b9-2a54-4c77-9c71-cf5469e41708", client_id) +09:03:00.099 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:00.099 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:00.099 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:00.099 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:00.099 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:00.105 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:00.105 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:00.106 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.106 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.106 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.106 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG com.networknt.schema.TypeValidator debug - validate( "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", client_id) +09:03:00.106 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.107 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.107 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.107 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.107 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.113 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.114 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.108 [XNIO-1 task-1] FGLpWu4tRF6p_HwBtPYzeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OgUrkEg_TUOT7f4tpadoRg +09:03:00.116 [XNIO-1 task-2] YVvgHUQgTxe2dHsXVliwBA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=F-JcKYCVRLOrivj9iiVWCw +09:03:00.120 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.120 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.120 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.121 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", client_id) +09:03:00.121 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.121 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.121 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.121 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.121 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.129 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.129 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.130 [XNIO-1 task-2] iwm3CS9aRuC7mVVlIkiwzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vrW8u2VvQEy--1ScJI3PnQ +09:03:00.133 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.133 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.133 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.133 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", "03d13622-4cfe-4b5a-ba1f-80027e8e18c5", client_id) +09:03:00.133 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.133 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.134 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.134 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.134 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.136 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.136 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:00.136 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.136 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG com.networknt.schema.TypeValidator debug - validate( "c466a2b9-2a54-4c77-9c71-cf5469e41708", "c466a2b9-2a54-4c77-9c71-cf5469e41708", client_id) +09:03:00.137 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:00.137 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:00.137 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:00.137 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:00.137 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:00.142 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:00.142 [XNIO-1 task-1] oY4qh_lOSxmY3D9o--Eusw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:00.145 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:00.145 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:00.148 [XNIO-1 task-2] -uWMQMPrRXG71jFAVTg6Gw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HpEYwnBSRaai9-hVDnhwCQ +09:03:00.149 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.149 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.149 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.149 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.149 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.150 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.150 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.150 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.151 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG com.networknt.schema.TypeValidator debug - validate( "aTIQvEZYbp7LR8U36noT5ZE5RbS8v07KeZiv5MyuKh4", "aTIQvEZYbp7LR8U36noT5ZE5RbS8v07KeZiv5MyuKh4", code_challenge) +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:00.152 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:00.153 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:00.158 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:00.158 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.158 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.158 [XNIO-1 task-1] k71fGrUKRk2Q_eaNkPJrnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:00.159 [XNIO-1 task-2] TCZFnvh1Sx-R-dde-l-QFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XiM686JtQTKhTd4AjlPNrg +09:03:00.163 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.163 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.163 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.163 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG com.networknt.schema.TypeValidator debug - validate( "49eb08d7-57cf-4218-a431-cb37cf013f4d", "49eb08d7-57cf-4218-a431-cb37cf013f4d", client_id) +09:03:00.164 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.164 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.164 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.164 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.164 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.165 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.165 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:00.165 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.165 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG com.networknt.schema.TypeValidator debug - validate( "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", client_id) +09:03:00.165 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:00.165 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:00.165 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:00.165 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:00.166 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:00.170 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:00.170 [XNIO-1 task-2] iWGvA345Qq-iYT1UI2DTKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:00.174 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.174 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:00.174 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.174 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "_sMqpd2H33VXyq0HKhFSDQaeLpjdtR_HV_5i_02jYhg", "_sMqpd2H33VXyq0HKhFSDQaeLpjdtR_HV_5i_02jYhg", code_challenge) +09:03:00.174 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:00.174 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:00.174 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:00.175 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:00.175 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:00.175 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:00.176 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:00.176 [XNIO-1 task-1] Se2fNRpyRM-8dTsh8rm4DA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:00.181 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.181 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.183 [XNIO-1 task-2] 6b8v-wYzShuJj3CbZu6pEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=j24c2JgVQHmlMg3oeML_7A +09:03:00.186 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG com.networknt.schema.TypeValidator debug - validate( "76c87b9e-9d17-430a-9b81-3318d2fb9073", "76c87b9e-9d17-430a-9b81-3318d2fb9073", client_id) +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.187 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.193 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.193 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.197 [XNIO-1 task-2] xB14KuJdT8mkqxEHiPhaNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fb400s3iRL66NQs6snxZug +09:03:00.204 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.218 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.220 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.220 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:00.220 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:00.220 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", client_id) +09:03:00.220 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:00.220 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:00.221 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:00.221 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:00.222 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:00.227 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:00.227 [XNIO-1 task-2] RT8QAXEsRJOMAm-t-eIiRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:00.228 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.232 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.232 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.232 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.232 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.232 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.233 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.233 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.233 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.238 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.239 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.239 [XNIO-1 task-2] yMIyLHdbSmWynxGFCAW3QA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ehikx4OAQpyVUg-1K6H7CQ +09:03:00.252 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.252 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.252 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.252 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.252 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.252 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.253 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.253 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.258 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.258 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.259 [XNIO-1 task-2] geAD4XtIRQeIjtBkiSOANw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FR_IT_J2Smaxz0C06v-TzQ +09:03:00.264 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.264 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.264 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:00.264 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:00.264 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:00.265 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:00.265 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:00.265 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:00.270 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:00.270 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:00.270 [XNIO-1 task-2] ELKZTLpKSuCRyOpZolbwnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZVJHwfEjSSSfwwmu4upI2w +09:03:01.412 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.413 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.413 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.413 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1057e890-50bb-452e-b3db-e760230099bd", "1057e890-50bb-452e-b3db-e760230099bd", client_id) +09:03:01.413 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.413 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.414 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.414 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.414 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.419 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.419 [XNIO-1 task-2] argR2rtiTIehnSIHhEtKmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.424 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.424 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.424 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.425 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:629f5ec2 +09:03:01.425 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "185a9db6-cd8f-4377-ad39-0e25ed2a7ab4", "185a9db6-cd8f-4377-ad39-0e25ed2a7ab4", client_id) +09:03:01.425 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.425 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.425 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.425 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.426 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.430 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:629f5ec2 +09:03:01.431 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.431 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.431 [XNIO-1 task-1] umAi1c1ERC-8MBtQ67IVkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ktVelfw8Rhm8zRj8wo6D6g +09:03:01.437 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG com.networknt.schema.TypeValidator debug - validate( "fa83159f-326c-409d-a4fb-18b0affb2361", "fa83159f-326c-409d-a4fb-18b0affb2361", client_id) +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.438 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.444 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.444 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.447 [XNIO-1 task-1] Zi1AVodhQ6SHhAkmM1OZeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hJXJLjOpSWqj_H1OPKN9vA +09:03:01.455 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.455 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.455 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.455 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.455 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.455 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.456 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG com.networknt.schema.TypeValidator debug - validate( "KJR4gFc6fE1yefIyKDeVrtGX3AjD3HE-aqj2EGbxeDs", "KJR4gFc6fE1yefIyKDeVrtGX3AjD3HE-aqj2EGbxeDs", code_challenge) +09:03:01.456 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG com.networknt.schema.TypeValidator debug - validate( "12f02ba8-3a56-4d0d-85d3-3ee49c6c6a6a", "12f02ba8-3a56-4d0d-85d3-3ee49c6c6a6a", client_id) +09:03:01.456 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:01.456 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.456 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.456 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.456 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.456 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.456 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.456 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.456 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.457 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.463 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.463 [XNIO-1 task-1] 69CuZlHZTASr2kMJfdC4dA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.463 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.464 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.464 [XNIO-1 task-2] 1F1vukm9Tfm51IhmitARaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vZ7i5yltScuZIguUXAUmBA +09:03:01.473 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e4880830-02f7-4841-bff8-085d5019e4e3 +09:03:01.486 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1d1a74dc-9cd2-464d-83b8-b769f15d30c7 +09:03:01.501 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.501 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.501 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.501 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c8_5ACVCJ2rs_zk9zOLEJRx7JzQOkHveFeCt9SzMCTc", "c8_5ACVCJ2rs_zk9zOLEJRx7JzQOkHveFeCt9SzMCTc", code_challenge) +09:03:01.501 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:01.502 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.502 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.502 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.502 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.503 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.509 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.509 [XNIO-1 task-2] dX_aTanIS3WL4R5QtCHa_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.530 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.530 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.530 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.531 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG com.networknt.schema.TypeValidator debug - validate( "76c87b9e-9d17-430a-9b81-3318d2fb9073", "76c87b9e-9d17-430a-9b81-3318d2fb9073", client_id) +09:03:01.531 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.531 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f80d8bab +09:03:01.531 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.531 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.531 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.533 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f80d8bab +09:03:01.539 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.539 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.541 [XNIO-1 task-2] WeuzgLkoS6WG1gSwMDhTGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XRBREIAGQR6RPHxc87juHQ +09:03:01.547 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.548 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.548 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.548 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.548 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.548 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.548 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.548 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.555 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.555 [XNIO-1 task-2] 7CWaK-KdShezdO1RYzIc6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.556 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6bb795b8 +09:03:01.557 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6bb795b8 +09:03:01.570 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.570 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.570 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.570 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Uot2FC0gLzosLO80mrAYWnLcQXDaKlu1QoV2NG_0Ej4", "Uot2FC0gLzosLO80mrAYWnLcQXDaKlu1QoV2NG_0Ej4", code_challenge) +09:03:01.571 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:01.571 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.571 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.571 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.571 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.572 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.579 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.580 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.581 [XNIO-1 task-2] MPtrBoxJQMWYqITn0-JXSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mmfIIXmbRNOh4JIaBOCKEw +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.586 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.592 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.592 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.594 [XNIO-1 task-2] UFFJ5zCzTNuxtYf4M9YHcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sxnjb11AQLi7BNwCzdyUqw +09:03:01.595 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f80d8bab +09:03:01.597 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.597 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.597 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.597 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.598 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.598 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.598 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.598 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.603 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.603 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.604 [XNIO-1 task-2] 04LQjqb7RxyNUicTYlGERw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uPV7fiVnTuab-VTGQBKTcg +09:03:01.634 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.634 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.634 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.635 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", client_id) +09:03:01.635 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.635 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.635 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.635 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.635 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.640 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.641 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.641 [XNIO-1 task-2] itrEPFHoTJCHFcDGktu2Tg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aNZ0vtblQ9OYCxS66q1SAQ +09:03:01.653 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.654 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.654 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.654 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.654 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.654 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.654 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.654 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.659 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.660 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.660 [XNIO-1 task-2] g0IZG96uSN6VeBjGb9Z2Kw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jpb-hdIcQuizd1EEajSBUQ +09:03:01.677 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8934c7c7-7853-4163-9bd5-7d4af454da90 +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", client_id) +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.685 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.689 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.689 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.689 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.690 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", client_id) +09:03:01.690 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.690 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.690 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.690 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6bb795b8 +09:03:01.690 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.691 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6bb795b8 +09:03:01.691 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.691 [XNIO-1 task-2] ZynqTfMoQgCtGp_yvAdbWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.694 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.694 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.694 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.694 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG com.networknt.schema.TypeValidator debug - validate( "20loQceYNU7Vc4ouydtyQaIHmvdbxCzI3vDA3yz_jUI", "20loQceYNU7Vc4ouydtyQaIHmvdbxCzI3vDA3yz_jUI", code_challenge) +09:03:01.694 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:01.694 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.694 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.695 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.695 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.695 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.695 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.695 [XNIO-1 task-1] yNftksYRQLGNcdD75nVkSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG com.networknt.schema.TypeValidator debug - validate( "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", client_id) +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.699 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.700 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.704 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.704 [XNIO-1 task-2] dxqzaumOQuO_bh28jjqZUg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.707 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.707 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.709 [XNIO-1 task-1] xJyGX_pgQu-of39xfhYn4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=brEC0vIHTai6Ebq3aMFxIQ +09:03:01.720 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.720 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.720 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.720 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.721 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.721 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.721 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.721 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.727 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.728 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.728 [XNIO-1 task-1] mzV2z_rGSVOzIWU0GIScjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1uXv72_7TlejOQD8Z-dPhA +09:03:01.734 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.734 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.734 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.735 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG com.networknt.schema.TypeValidator debug - validate( "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", client_id) +09:03:01.736 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.736 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.736 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.736 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.736 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.737 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.737 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.737 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.737 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG com.networknt.schema.TypeValidator debug - validate( "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", "ea80cc00-298a-4560-a9ae-4fd89a8d70d9", client_id) +09:03:01.737 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.737 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.737 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.738 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.738 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.744 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.744 [XNIO-1 task-1] f2Ps_xUcS9iQRTlJeKEIkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.748 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.748 [XNIO-1 task-2] zz1tdBcuRX-DlOv74hjGlg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.752 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.752 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.753 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.753 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "UdoqNj7oR83qPVp6r6hazrmDn91dPeuT_OxiTryjDOg", "UdoqNj7oR83qPVp6r6hazrmDn91dPeuT_OxiTryjDOg", code_challenge) +09:03:01.753 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:01.753 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.753 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.753 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.753 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.754 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.764 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.764 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.765 [XNIO-1 task-1] npf8PjMuREWIhGBVRsl1Bw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YyawxATsQXuZAvo-tCseiA +09:03:01.782 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12f4c687-6957-4648-b731-41ec72624de1 +09:03:01.790 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.790 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.790 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.791 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG com.networknt.schema.TypeValidator debug - validate( "e4880830-02f7-4841-bff8-085d5019e4e3", "e4880830-02f7-4841-bff8-085d5019e4e3", client_id) +09:03:01.791 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.791 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.791 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.791 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.791 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.797 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.797 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.798 [XNIO-1 task-1] evz97YdGT2uO3SyDsUCswA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=a_ycWGvXSxug0_l5tusIzw +09:03:01.803 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.803 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.803 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.803 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG com.networknt.schema.TypeValidator debug - validate( "e4880830-02f7-4841-bff8-085d5019e4e3", "e4880830-02f7-4841-bff8-085d5019e4e3", client_id) +09:03:01.803 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.803 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.804 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.804 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.804 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.811 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.811 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.812 [XNIO-1 task-1] mhfeqrQSTJWR1vy-FcxzOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dB04vNeYQUSLfA4vuuwFUw +09:03:01.817 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.817 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.817 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.817 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e4880830-02f7-4841-bff8-085d5019e4e3", "e4880830-02f7-4841-bff8-085d5019e4e3", client_id) +09:03:01.818 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.818 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.818 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.818 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.818 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.823 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.823 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.825 [XNIO-1 task-1] y5CkVVliRPOlvYTXDwKC7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WWdy6pEjQTakvSVG2xoNeQ +09:03:01.838 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.838 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.838 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.838 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.838 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.838 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.839 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.839 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.845 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.845 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.879 [XNIO-1 task-1] f1OvcIpFQlaiDRxCV2H1QQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0Z98GooETXOF6cZRCsBxkQ +09:03:01.882 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.882 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.882 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.882 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.883 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.883 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.883 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.883 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.888 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.888 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.898 [XNIO-1 task-1] u0ml6gZlRJCSZfA2lRHXLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ydkYfbDDS36vOm4qgj-i6g +09:03:01.902 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.902 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.903 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.903 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG com.networknt.schema.TypeValidator debug - validate( "39fda913-6015-478d-b141-985d4f37c70c", "39fda913-6015-478d-b141-985d4f37c70c", client_id) +09:03:01.903 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.903 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.903 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.903 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.904 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.911 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.911 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.913 [XNIO-1 task-1] wAOaYmXUQL-HZDgKXp90mQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NdActFZ2S_Wm3p6LtblGMg +09:03:01.943 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.943 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.943 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.943 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG com.networknt.schema.TypeValidator debug - validate( "e129e46c-0fda-4302-9468-c05962662146", "e129e46c-0fda-4302-9468-c05962662146", client_id) +09:03:01.943 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.943 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.943 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.944 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.944 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.949 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:01.949 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:01.951 [XNIO-1 task-1] Qz5qxu6hTnqOW4wc4wIyVg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2_y6Lt1_TsuDO3lvmNWOGA +09:03:01.953 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.953 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.953 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:01.954 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:01.954 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:01.954 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:01.954 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:01.954 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:01.958 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7609ab6e +09:03:01.959 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7609ab6e +09:03:01.960 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.960 [XNIO-1 task-1] oZAqmMpaRB6yN0SVB_71BQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:01.986 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.987 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:01.987 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:01.987 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "kRPMgIklCGrjdbkvJ2F67viZvFLpU-jwN1lFQZiOROA", "kRPMgIklCGrjdbkvJ2F67viZvFLpU-jwN1lFQZiOROA", code_challenge) +09:03:01.988 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:01.988 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:01.988 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:01.988 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:01.988 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:01.989 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:01.996 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:01.996 [XNIO-1 task-1] HwCiy1x8SfeO_hSdj-UKIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.005 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.005 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.005 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.005 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG com.networknt.schema.TypeValidator debug - validate( "O88MfqTp_SAa2AIj_cpYshjJOuLyXhtkbPsxIJ_8_-Y", "O88MfqTp_SAa2AIj_cpYshjJOuLyXhtkbPsxIJ_8_-Y", code_challenge) +09:03:02.005 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.006 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.006 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.006 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.006 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.006 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.015 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.015 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.015 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.015 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.015 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.016 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.016 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.016 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.017 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.018 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.018 [XNIO-1 task-1] WWmNE8rqSUShb03sJETVqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vCLyMPWJRzm13nlNlBAxKg +09:03:02.022 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.022 [XNIO-1 task-2] QykKIhICSyWHo_D72M6nCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.031 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7609ab6e +09:03:02.040 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.040 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.040 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.041 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1d174254-54ee-4849-a174-de2937d0fa19", "1d174254-54ee-4849-a174-de2937d0fa19", client_id) +09:03:02.041 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.041 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.041 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.041 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.042 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.054 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.054 [XNIO-1 task-2] bOKYwZjjTqqHVi0YFFr25Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.060 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.060 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.060 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.060 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG com.networknt.schema.TypeValidator debug - validate( "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", client_id) +Jun 29, 2024 9:03:02 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:03:02.061 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.061 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.061 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.061 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.066 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.066 [XNIO-1 task-2] rfBgwUoPRlaH22wqxVjvPA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG com.networknt.schema.TypeValidator debug - validate( "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", "e8ebaa13-772b-4e96-ba32-d5a5ee2f182a", client_id) +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.074 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:03:02.075 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.075 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.075 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +09:03:02.086 [XNIO-1 task-2] M89iX5CySA-gRaifUEvSKA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "fa83159f-326c-409d-a4fb-18b0affb2361", "fa83159f-326c-409d-a4fb-18b0affb2361", client_id) +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.095 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.104 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.105 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.105 [XNIO-1 task-2] 9xIFw9s6QoWVnbH1R2PPfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rddsUDjfR7ma7vOcnStNsg +09:03:02.107 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7609ab6e +09:03:02.111 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.111 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.111 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.111 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG com.networknt.schema.TypeValidator debug - validate( "fa83159f-326c-409d-a4fb-18b0affb2361", "fa83159f-326c-409d-a4fb-18b0affb2361", client_id) +09:03:02.111 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.112 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.112 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.112 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.112 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.118 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.118 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.118 [XNIO-1 task-2] R8BP3LBkRh6iH1aKrTzLlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=G-Rz7fyWR0yyrWCK4MIGRg +09:03:02.138 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.138 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.138 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.139 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "39fda913-6015-478d-b141-985d4f37c70c", "39fda913-6015-478d-b141-985d4f37c70c", client_id) +09:03:02.139 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.139 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.139 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +09:03:02.140 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +09:03:02.145 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.150 [XNIO-1 task-2] fK-KiZumQmuBp92-Ihh-VA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QMmawD3yQ-CXRXVdpkk5qQ + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +09:03:02.157 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.157 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.157 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG com.networknt.schema.TypeValidator debug - validate( "NwRV0L_Ab0bYdziE1z_4zDCkzrampv98jjSTdRHzoHs", "NwRV0L_Ab0bYdziE1z_4zDCkzrampv98jjSTdRHzoHs", code_challenge) +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG com.networknt.schema.TypeValidator debug - validate( "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", client_id) +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.158 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:03:02.162 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4e95df13-aeb3-4482-b64d-40dc2af3cd3c +09:03:02.164 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.164 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.165 [XNIO-1 task-2] rxY3nTflRt6RzZe-etIvfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MP9t8caeTX-mRWLz30f5MA +09:03:02.171 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", client_id) +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.172 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.178 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.178 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.179 [XNIO-1 task-2] ULDJNqRmRl-ijYCkiA8UrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4jewwG9mQX2uZW6uHISTIw +09:03:02.189 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.193 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.199 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.199 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.202 [XNIO-1 task-2] zjxob1WeQnGsuwVuj7clLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bNir7mppTimA3qF2KejSjA +09:03:02.229 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "c42ec3d8-c1d3-42a1-9cef-a6f37506b9d7", "c42ec3d8-c1d3-42a1-9cef-a6f37506b9d7", client_id) +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.230 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.236 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.236 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.237 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.237 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.237 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.237 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.238 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.238 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.238 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.238 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.238 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.239 [XNIO-1 task-2] rTthX60gT8-LbcEkngXfQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cAvbgqUESGmdNwp4JDrsvQ +09:03:02.244 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.244 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.246 [XNIO-1 task-1] BYqrDwrfTOOkQDNOM3vRUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ARVxwD0MS7CPT4fQoMYULw +09:03:02.247 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:376b35d8 +09:03:02.271 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.271 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.271 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.271 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", "08dafbd2-5f8f-4907-a3f8-12248cf9bcd6", client_id) +09:03:02.272 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.272 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.272 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.272 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.272 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.275 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5e3b232e-c877-4128-884f-f6c7cd3a8fff +09:03:02.278 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.278 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:02.283 [XNIO-1 task-1] brswWZmBTlquHt4pnwiahQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lz3uKv_HQQWuS-0IKCeu_g +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG com.networknt.schema.TypeValidator debug - validate( "88f31181-f794-4d59-aca9-3623b8b41ccb", "88f31181-f794-4d59-aca9-3623b8b41ccb", client_id) +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.290 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.291 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.296 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.296 [XNIO-1 task-1] BR3bZZLARvaOkWdpG2Slqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.301 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88f31181-f794-4d59-aca9-3623b8b41ccb", "88f31181-f794-4d59-aca9-3623b8b41ccb", client_id) +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.302 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.305 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.305 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.305 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.305 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG com.networknt.schema.TypeValidator debug - validate( "1cZv_VFSPwOOq5w058Xqx9Ji9Ad7vTBKFfP8YeqiGQc", "1cZv_VFSPwOOq5w058Xqx9Ji9Ad7vTBKFfP8YeqiGQc", code_challenge) +09:03:02.305 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.305 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.306 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +Jun 29, 2024 9:03:02 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:03:02.306 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:03:02.306 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.307 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5f1ee464-120e-4e79-a9a3-4d2233e972f5 +09:03:02.307 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5f1ee464-120e-4e79-a9a3-4d2233e972f5 + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +09:03:02.311 [XNIO-1 task-1] bPri53CeRUikeVLKWMWmAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jKQsbyr8RiePPfdBZhYYzA + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +09:03:02.312 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.312 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.312 [XNIO-1 task-2] vl8qctBZRIKQ8NfEPapC9A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:03:02.334 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:03:02.335 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.335 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.335 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.335 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.335 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.345 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.345 [XNIO-1 task-2] 8DnfkckGS0ab15jMZRnsAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.352 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG com.networknt.schema.TypeValidator debug - validate( "GnykWmnm7vB8gKov_FxY96ObG9tHEklaRuSzh5lW17c", "GnykWmnm7vB8gKov_FxY96ObG9tHEklaRuSzh5lW17c", code_challenge) +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.353 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.354 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.360 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.360 [XNIO-1 task-2] YgxXMKbUQM68pMQ152FdVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.388 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.388 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.388 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.388 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG com.networknt.schema.TypeValidator debug - validate( "RPn4p5SvH6FLbK2_5FJabKREHcGLEUWe6PhOmL7ESPo", "RPn4p5SvH6FLbK2_5FJabKREHcGLEUWe6PhOmL7ESPo", code_challenge) +09:03:02.388 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.388 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.388 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.389 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.389 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.389 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.395 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.395 [XNIO-1 task-2] -re536mCQMyY8eaoed0ptA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.402 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.402 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.402 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.402 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "jgG0ez-Li4ZPCb7ANl4A1fPo5tkmLWFcFrKjJDG_z9g", "jgG0ez-Li4ZPCb7ANl4A1fPo5tkmLWFcFrKjJDG_z9g", code_challenge) +09:03:02.403 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.403 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.403 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.403 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.403 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.403 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.409 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.409 [XNIO-1 task-2] DqRu4uDhQd6jjRWOG-44dQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.414 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.414 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.414 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.415 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "hvIelEgJJ_6FYQeFdhKTTQ5pz33Sm_F6R9mBCfm8rjc", "hvIelEgJJ_6FYQeFdhKTTQ5pz33Sm_F6R9mBCfm8rjc", code_challenge) +09:03:02.415 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.415 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.415 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.415 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.415 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.416 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.418 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:674ab6b0-d55a-4069-b96e-1b07e737b605 +09:03:02.423 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.423 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.425 [XNIO-1 task-2] JwPuIDx4SBS3_J6eD_W5uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=l2VSWYQ6SC2orlAxV4f_Kg +09:03:02.444 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f253b1ce +09:03:02.451 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.451 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG com.networknt.schema.TypeValidator debug - validate( "tRKYikGa30crAvHJO7PjmvTncl0l96SjbRM8S1e6ix8", "tRKYikGa30crAvHJO7PjmvTncl0l96SjbRM8S1e6ix8", code_challenge) +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.452 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.458 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.458 [XNIO-1 task-2] Ui2xq37eSQC7tnpdovdO0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.464 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG com.networknt.schema.TypeValidator debug - validate( "w55-bTP_unAuWFLCTwCfFtE1Asnejb9brdVLk1ompWk", "w55-bTP_unAuWFLCTwCfFtE1Asnejb9brdVLk1ompWk", code_challenge) +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.465 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.467 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.467 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.467 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.467 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.467 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.468 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.468 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.468 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.471 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.471 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.472 [XNIO-1 task-2] K88KhiFjQ4WNZNXKsgGR5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vuFdKpWoSX2Q0ipwGRMZTw +09:03:02.475 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.475 [XNIO-1 task-1] P0x9EFcqRROuK_bVncr9Ig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.476 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.477 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.477 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.478 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG com.networknt.schema.TypeValidator debug - validate( "eaK2Ipc4k4h9TWVrqD38s4Qa9ZheveaianEZysCCMg0", "eaK2Ipc4k4h9TWVrqD38s4Qa9ZheveaianEZysCCMg0", code_challenge) +09:03:02.478 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.478 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.478 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.478 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.478 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.478 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.486 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.486 [XNIO-1 task-2] YXfBVwjDR6eLHvqaf2Uybw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.492 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9d7dda3b-0b83-4c08-9c18-d8881cf873d6 +09:03:02.494 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9d7dda3b-0b83-4c08-9c18-d8881cf873d6 +09:03:02.496 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.496 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.496 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.496 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG com.networknt.schema.TypeValidator debug - validate( "c466a2b9-2a54-4c77-9c71-cf5469e41708", "c466a2b9-2a54-4c77-9c71-cf5469e41708", client_id) +09:03:02.496 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.496 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.497 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.497 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.497 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.504 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.504 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.505 [XNIO-1 task-2] irsfARonQVGg-vrJQCQ1qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oSlnCcn6QeyXRVnie8I6-g +09:03:02.523 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:376b35d8 +09:03:02.533 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.533 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.533 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.533 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d174254-54ee-4849-a174-de2937d0fa19", "1d174254-54ee-4849-a174-de2937d0fa19", client_id) +09:03:02.533 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.534 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.534 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.534 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.534 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.540 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.541 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.541 [XNIO-1 task-2] SZoTzVxsQjer2aAtH0RRPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eNJl0Xq5R0e_VbEhGGvPgw +09:03:02.549 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.550 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.550 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.550 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG com.networknt.schema.TypeValidator debug - validate( "9d7dda3b-0b83-4c08-9c18-d8881cf873d6", "9d7dda3b-0b83-4c08-9c18-d8881cf873d6", client_id) +09:03:02.550 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.550 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.551 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.551 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.551 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.556 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:376b35d8 +09:03:02.559 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.560 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.561 [XNIO-1 task-2] emE82IUqS_2go57N_eAXxg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KVLIFi_sS7uf3e_nVlw_aA +09:03:02.573 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.573 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.574 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.574 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.574 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.574 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.575 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.575 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.581 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.581 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.581 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.581 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG com.networknt.schema.TypeValidator debug - validate( "KmaX1wtO1CVM0ySAUjtKPXAWmGwXADlGRsVjeQiY7TM", "KmaX1wtO1CVM0ySAUjtKPXAWmGwXADlGRsVjeQiY7TM", code_challenge) +09:03:02.581 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.581 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.582 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.582 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.582 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.582 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.582 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.582 [XNIO-1 task-2] Muex2tytT4Suiivt6SdGEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.587 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.587 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.587 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.587 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb42ffcd-3f15-48a7-b763-bd25400e6c49", "fb42ffcd-3f15-48a7-b763-bd25400e6c49", client_id) +09:03:02.588 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.588 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.588 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.588 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.589 [XNIO-1 task-1] aX2f-CxPSY2yx2lZuVoJpw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.589 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.589 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.595 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.595 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.596 [XNIO-1 task-2] PItk0nxZS8CYS2IPXXkgFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BveeDYIcRMiVLN68y-P1Rg +09:03:02.596 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.596 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.596 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.596 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG com.networknt.schema.TypeValidator debug - validate( "9d7dda3b-0b83-4c08-9c18-d8881cf873d6", "9d7dda3b-0b83-4c08-9c18-d8881cf873d6", client_id) +09:03:02.597 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.597 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.597 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.597 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.597 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.603 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.603 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.604 [XNIO-1 task-2] CWpt6d_-S5mjvfSSMlsaVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WShuSU-1TMePCp6xnpNgkg +09:03:02.604 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.605 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.605 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.605 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.605 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.605 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.605 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.605 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.608 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.608 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.608 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.608 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG com.networknt.schema.TypeValidator debug - validate( "bv406pDDmlIjogHbSGdhor3R2QyjPKuieHe2T2Oe3FQ", "bv406pDDmlIjogHbSGdhor3R2QyjPKuieHe2T2Oe3FQ", code_challenge) +09:03:02.609 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.609 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.609 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.609 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.609 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.609 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.612 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5e3b232e-c877-4128-884f-f6c7cd3a8fff +09:03:02.612 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.613 [XNIO-1 task-1] U7diqVHGS2ix87DxFSs9Jw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=K1cX6GpRRoe1Fc3eEUGN5Q +09:03:02.614 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.614 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:02.617 [XNIO-1 task-2] J5igXiPXQXu7FTsyS21E6A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=s3PX2VPiS7Wb-lm3tWzSDQ +09:03:02.620 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.620 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.620 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.621 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.621 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.621 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.622 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.622 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.623 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG com.networknt.schema.TypeValidator debug - validate( "0mze7zQfED_Gsk7tEXA8lTJ0oftSzaoDWbF2TKAWIb8", "0mze7zQfED_Gsk7tEXA8lTJ0oftSzaoDWbF2TKAWIb8", code_challenge) +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.624 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.625 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.627 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.628 [XNIO-1 task-2] PsuFU4aOQY6wn04y3ixA3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.630 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.630 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.631 [XNIO-1 task-1] TuewJnw5TueR1zVpqBozQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9kArlevfT5mGueCHOLBAgQ +09:03:02.632 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f253b1ce +09:03:02.652 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:376b35d8 +09:03:02.661 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.661 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.661 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.661 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.661 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.662 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.662 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.662 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.667 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.667 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.668 [XNIO-1 task-1] Ijjv08u2TtiIo8o-0p-IVQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8DfnaKjbSJqIOronc_MvyQ +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.673 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.679 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.679 [XNIO-1 task-1] 3u_GKd0jQISrqs9ZreGI5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.681 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:376b35d8 +09:03:02.681 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:376b35d8 +09:03:02.685 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.685 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.685 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.686 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.686 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.686 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.686 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.686 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.691 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.691 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.694 [XNIO-1 task-1] j_n2dQ0ZQ3GsLVdwxqs1nA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=D4tkN7x3TNa46W0-AS5gCQ +09:03:02.705 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9468b509-33ae-46b0-a2e1-1ca85b8d15cb +09:03:02.711 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.712 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.712 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.712 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG com.networknt.schema.TypeValidator debug - validate( "DCpoioBwDuf-6PolsslOoOmnkM1jmrr_TQMJqOlEdTY", "DCpoioBwDuf-6PolsslOoOmnkM1jmrr_TQMJqOlEdTY", code_challenge) +09:03:02.713 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.713 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.713 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.713 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.713 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.713 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.715 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.715 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.715 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.715 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.715 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.715 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.715 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.716 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.718 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.719 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.719 [XNIO-1 task-1] sZ8aS88GQB2IzFxorIRjUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w9cvukIGSm-VqK15o1XuJw +09:03:02.724 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.724 [XNIO-1 task-2] vR4I-gzHS9Kq00o_3WPTPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.725 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.725 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.725 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.725 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG com.networknt.schema.TypeValidator debug - validate( "6n0vL_Ei_L2o-p49DgSLEu1ldl-fKx0UgSbilWPkyxk", "6n0vL_Ei_L2o-p49DgSLEu1ldl-fKx0UgSbilWPkyxk", code_challenge) +09:03:02.725 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.725 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.726 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.726 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.726 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.727 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.728 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.728 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.728 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.728 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.728 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.729 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.729 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.729 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.732 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.732 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.734 [XNIO-1 task-1] usd72IxUTjulFpaw38_P1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BxVZSbLSQ-W-8EfvJPJ_0w +09:03:02.734 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.734 [XNIO-1 task-2] W0j_Dn5tRWi9TcZvwquzGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.736 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.736 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.737 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.737 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "HsLOMnVWRm0qFB3KNoSiRdSM1vIm9PV_i07Ecla0oD0", "HsLOMnVWRm0qFB3KNoSiRdSM1vIm9PV_i07Ecla0oD0", code_challenge) +09:03:02.737 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.737 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.737 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.737 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.737 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.738 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.742 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.742 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.743 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.743 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.743 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.743 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.743 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.744 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.744 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.744 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.745 [XNIO-1 task-2] PzrUuJSyTtGu9MvUn6QeNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-_mcf87LTQinYVhCc5oh0A +09:03:02.750 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.750 [XNIO-1 task-1] JuihFVRtRri9OfbrMj264w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.751 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.751 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.751 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.751 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG com.networknt.schema.TypeValidator debug - validate( "jVKqp3fBxb7XZB6FZJYyI_okU-cOLXZzUGEq7sJcURY", "jVKqp3fBxb7XZB6FZJYyI_okU-cOLXZzUGEq7sJcURY", code_challenge) +09:03:02.751 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.751 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.751 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.752 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.752 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.752 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.757 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.757 [XNIO-1 task-2] pqOj3Os6S6qAbPWd2eC9fg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG com.networknt.schema.TypeValidator debug - validate( "MtsKrd3cQQUeSazXfqL6An9Lb4VihPYqQFFlRaAI56c", "MtsKrd3cQQUeSazXfqL6An9Lb4VihPYqQFFlRaAI56c", code_challenge) +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.762 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.763 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.768 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.768 [XNIO-1 task-2] tRtJUmwrRP2StPNaBXDv9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.786 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.786 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.786 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.786 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "B-07COTKVUdp9NF-TXZsYlkhVdQq-E-FY2QtPpyI2pg", "B-07COTKVUdp9NF-TXZsYlkhVdQq-E-FY2QtPpyI2pg", code_challenge) +09:03:02.788 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.788 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.788 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.788 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.788 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.788 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.794 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.794 [XNIO-1 task-2] FVRFyerSTMaXl2ZWUoUd4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.803 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.803 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.803 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.803 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.803 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9468b509-33ae-46b0-a2e1-1ca85b8d15cb +09:03:02.803 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG com.networknt.schema.TypeValidator debug - validate( "G9T3VoREzdrqY2muZ0gzMNl1bqzIIAteLTdhzgc2prI", "G9T3VoREzdrqY2muZ0gzMNl1bqzIIAteLTdhzgc2prI", code_challenge) +09:03:02.803 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG com.networknt.schema.TypeValidator debug - validate( "674ab6b0-d55a-4069-b96e-1b07e737b605", "674ab6b0-d55a-4069-b96e-1b07e737b605", client_id) +09:03:02.804 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.804 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.804 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", client_id) +09:03:02.804 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.804 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.804 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.804 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.804 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.804 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.805 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.805 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.805 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.810 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.811 [XNIO-1 task-1] unyx2UQ9RWivyI2JhKFHHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.813 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9468b509-33ae-46b0-a2e1-1ca85b8d15cb +09:03:02.815 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.815 [XNIO-1 task-2] L60xi6fKSA-WtcSy8XaQ2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.816 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.816 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.816 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.816 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG com.networknt.schema.TypeValidator debug - validate( "bXwwr9x1H14U8lqdP79teHYQyucitIDskqN4zXDymw4", "bXwwr9x1H14U8lqdP79teHYQyucitIDskqN4zXDymw4", code_challenge) +09:03:02.816 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.816 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.817 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.817 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.817 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.817 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.821 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.821 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.822 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.822 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.822 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.822 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.822 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.822 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.822 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.823 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.823 [XNIO-1 task-1] H_vgUpccQQWc4Y-hpCi7qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dNFM9NCPRBqanhvq62S9Mg +09:03:02.826 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.826 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.826 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.827 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG com.networknt.schema.TypeValidator debug - validate( "5f1ee464-120e-4e79-a9a3-4d2233e972f5", "5f1ee464-120e-4e79-a9a3-4d2233e972f5", client_id) +09:03:02.827 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.827 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.827 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.827 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.827 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.829 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.829 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.829 [XNIO-1 task-2] hg3RhV9jRSS9fd5YgXWwtA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NMD8QqSWQ0uusFhbgBXqxA +09:03:02.834 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.834 [XNIO-1 task-1] lkvYtYdHSwWTLrhyttUknA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.858 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.858 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.859 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.859 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG com.networknt.schema.TypeValidator debug - validate( "ETi1sKAy1672PfTiFqivNuj3w5kU-eV1PFGphoX4-RI", "ETi1sKAy1672PfTiFqivNuj3w5kU-eV1PFGphoX4-RI", code_challenge) +09:03:02.860 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.860 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.860 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.860 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.860 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.860 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.864 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7fed26fe-5822-4468-95b0-885ba30ac6f3 +09:03:02.866 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.866 [XNIO-1 task-1] Pakh9GvqTDy8j361jiDwIg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.867 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e90f9079 +09:03:02.870 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e90f9079 +09:03:02.876 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "llP6fc4lP4Vldn6aD385sUgjzQXcGhqBsNJAA9WZDn0", "llP6fc4lP4Vldn6aD385sUgjzQXcGhqBsNJAA9WZDn0", code_challenge) +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.877 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.878 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.878 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.878 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.878 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.879 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.879 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.879 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.879 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.879 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.879 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e90f9079 +09:03:02.884 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.884 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.885 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.885 [XNIO-1 task-2] VyGY6mVlTSuXPGYPEDdpdw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.886 [XNIO-1 task-1] q6bAiS9aT9OBw-tDkZq7Kg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=C8-v9tGhQi6pSbz8DKACjA +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.893 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.893 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG com.networknt.schema.TypeValidator debug - validate( "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", client_id) +09:03:02.893 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG com.networknt.schema.TypeValidator debug - validate( "H7kv1QaDfGgN9nlUGAOfz0vxLANhLWOsyEg_ZFUiMqE", "H7kv1QaDfGgN9nlUGAOfz0vxLANhLWOsyEg_ZFUiMqE", code_challenge) +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.893 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:03:02.893 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +09:03:02.893 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.894 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.894 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.894 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:03:02.894 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +09:03:02.899 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.899 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.899 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.900 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:03:02.902 [XNIO-1 task-1] WW1Jt5VDQ6Opm3-imWTfSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DhhJRJboT5KimvLg8Ra1_A +09:03:02.906 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + ... 14 more + +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:03:02.906 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.906 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:02.906 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.907 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.907 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.907 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.907 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.913 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.913 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.914 [XNIO-1 task-1] rPv97tT9Qyewlf07CPWWJg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xUXqqQ9QR_idxZb24UTAbQ +09:03:02.917 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.917 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +09:03:02.918 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "NRk2XUPD-GF3IE0bUKDXeN5b0yYXYGZMHmFwQgGGLrc", "NRk2XUPD-GF3IE0bUKDXeN5b0yYXYGZMHmFwQgGGLrc", code_challenge) +09:03:02.918 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.918 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.918 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9da20510-9028-4112-854c-bbcd41bb3d96 +09:03:02.918 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.918 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.919 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.919 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:03:02.919 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.924 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:02.924 [XNIO-1 task-1] Z7vEUbQITH62wcmrAlFU2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:02.929 [XNIO-1 task-2] 6gqJAv8oR9uOFwkfOvXdXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TPqxEnmqRh-GB_Qqjn0Kxw +09:03:02.932 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.932 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.932 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.932 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5d0ab6ab-1421-4c1c-ab1d-c5915b745a11", "5d0ab6ab-1421-4c1c-ab1d-c5915b745a11", client_id) +09:03:02.932 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.932 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.933 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.933 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.933 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.938 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.938 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.939 [XNIO-1 task-2] R20JbYtuQmW3LjiNVDXZ8Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=huR_sL6DThi-ShpSSR_ivg +09:03:02.946 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8419d9c1-baa5-44e9-ba09-ba38e7310076 +09:03:02.947 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.947 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.947 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.947 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG com.networknt.schema.TypeValidator debug - validate( "849163e4-4e0a-4bea-83c1-0283998e1286", "849163e4-4e0a-4bea-83c1-0283998e1286", client_id) +09:03:02.947 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.947 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.948 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.948 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.948 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.957 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.957 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.958 [XNIO-1 task-2] WwNffVkUR7mwAUrA0dp-ew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=t0i8W2OBS9mME-rXiNePgA +09:03:02.961 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG com.networknt.schema.TypeValidator debug - validate( "849163e4-4e0a-4bea-83c1-0283998e1286", "849163e4-4e0a-4bea-83c1-0283998e1286", client_id) +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:02.962 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:02.963 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8419d9c1-baa5-44e9-ba09-ba38e7310076 +09:03:02.964 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:82e4010b-c9cb-4bef-989c-45c4aa900f9f +09:03:02.968 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.968 [XNIO-1 task-2] 0Sw6XVOfQeySBOarqriH8A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.970 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7dedb3a0-f705-4db5-91df-2547181434e6 +09:03:02.970 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7dedb3a0-f705-4db5-91df-2547181434e6 +09:03:02.977 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG com.networknt.schema.TypeValidator debug - validate( "ZX-AO_O9bEGeLjc2cvxFvgGWwQmmm7Tkm8whrBTipzM", "ZX-AO_O9bEGeLjc2cvxFvgGWwQmmm7Tkm8whrBTipzM", code_challenge) +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.978 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.980 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.992 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:02.992 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:02.993 [XNIO-1 task-2] s6f7A8-ETTacBjZJhhTPBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vuB7FKHXS8-WK8mZZE8sWQ +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "88f31181-f794-4d59-aca9-3623b8b41ccb", "88f31181-f794-4d59-aca9-3623b8b41ccb", client_id) +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:02.997 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:02.998 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:02.998 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:02.998 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a582b38 +09:03:03.004 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:03.004 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:03.005 [XNIO-1 task-2] RVSpS-BBQJqneWyaYdJu5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3AlnP8ggSQqLCyWSnSMGrw +09:03:03.015 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e901a6c +09:03:03.039 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.039 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:03.039 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.039 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG com.networknt.schema.TypeValidator debug - validate( "CXwwK5MuF86kcuG-e5Vt-pfnzxY_3HbA6EM7tBTw5Iw", "CXwwK5MuF86kcuG-e5Vt-pfnzxY_3HbA6EM7tBTw5Iw", code_challenge) +09:03:03.039 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:03.039 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:03.039 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:03.040 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:03.040 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:03.042 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:03.044 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e901a6c +09:03:03.048 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:03.048 [XNIO-1 task-2] 2mokVG52Snev23py7dm_0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:03.051 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b6240bf-d386-48e5-895c-ba84d8094baa +09:03:03.053 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b6240bf-d386-48e5-895c-ba84d8094baa +09:03:03.054 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.054 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.054 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.056 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG com.networknt.schema.TypeValidator debug - validate( "ab400a1a-2a0a-4f9d-b655-14cfb8150a16", "ab400a1a-2a0a-4f9d-b655-14cfb8150a16", client_id) +09:03:03.056 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:03.056 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:03.056 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:03.056 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:03.056 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:03.062 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:03.062 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:03.064 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.064 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:03.064 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.064 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG com.networknt.schema.TypeValidator debug - validate( "45a091e7-5e15-4f3b-b493-9aae46c52ea7", "45a091e7-5e15-4f3b-b493-9aae46c52ea7", client_id) +09:03:03.064 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:03.065 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:03.065 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:03.065 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:03.065 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:03.066 [XNIO-1 task-2] _ENeZTy1TfmRpTcMOUFqUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HnC6UXrMTcCvc6wTZvL3EA +09:03:03.073 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:03.073 [XNIO-1 task-1] JXkeNWE2R8eZIIp3JK3wTg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "j0TAxaFxBnDHJGdL158Jffh61HTmn1cg9wGBOsZ29ks", "j0TAxaFxBnDHJGdL158Jffh61HTmn1cg9wGBOsZ29ks", code_challenge) +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:03.075 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:03.076 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:03.082 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:03.082 [XNIO-1 task-1] hwj3VLwTQHWN-ILLrPVSnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:03.096 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.096 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:03.097 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.097 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5e3b232e-c877-4128-884f-f6c7cd3a8fff", "5e3b232e-c877-4128-884f-f6c7cd3a8fff", client_id) +09:03:03.097 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:03.097 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:03.097 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:03.097 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:03.097 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:03.103 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:03.103 [XNIO-1 task-1] sAG4WbdxQ9az1cvm1KCCfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG com.networknt.schema.TypeValidator debug - validate( "t-aky_0U505zW2WFgD7AnjJ5mpHZBetzGNmLkpeRbGA", "t-aky_0U505zW2WFgD7AnjJ5mpHZBetzGNmLkpeRbGA", code_challenge) +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:03.106 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:03.107 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:03.107 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.107 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.107 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.108 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:03.108 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:03.108 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:03.108 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:03.108 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:03.112 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:03.112 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:03.112 [XNIO-1 task-1] tzbn8BjKSzeCNdI6BwKiIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yGNCoORnRE-bcXfDh0osYw +09:03:03.114 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:03.114 [XNIO-1 task-2] ANNMxQVHS1mVSpOvzAfv7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:03.119 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.119 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:03.119 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.120 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG com.networknt.schema.TypeValidator debug - validate( "YCUvUfY-TJRndPdb5PMtoGg_Gf2rFzRd4ReqsxC15tg", "YCUvUfY-TJRndPdb5PMtoGg_Gf2rFzRd4ReqsxC15tg", code_challenge) +09:03:03.120 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:03.120 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:03.120 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:03.120 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:03.120 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:03.120 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:03.122 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.123 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.123 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.123 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:03.123 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:03.123 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:03.123 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:03.123 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:03.126 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:03.126 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:03.127 [XNIO-1 task-2] 9YPI2mT4Qxq8YT95G_bSSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WvQJBUpyTZCJVH7xjvD8kw +09:03:03.129 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:03.129 [XNIO-1 task-1] EIv2kZB0TFSM5rCt5nT9SQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:03.132 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.132 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:03:03.132 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:03:03.132 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG com.networknt.schema.TypeValidator debug - validate( "ufAUJrAWd2NKwEpz12VOBP_ENxz79qX5Rc7szDnPI6E", "ufAUJrAWd2NKwEpz12VOBP_ENxz79qX5Rc7szDnPI6E", code_challenge) +09:03:03.132 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:03:03.133 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:03:03.133 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:03:03.133 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:03:03.133 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:03:03.133 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:03.134 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:03.138 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:03.138 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:03.139 [XNIO-1 task-1] vuErrxEWTumeq8XWvOUAiw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vGoGgTdQTy-DDlBYWhKr1Q +09:03:03.140 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:03:03.140 [XNIO-1 task-2] bMV-0S8eSaaB2gWIkCkAKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:03:03.143 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:60cfe616 +09:03:03.144 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:60cfe616 +09:03:03.167 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.167 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.168 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.168 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG com.networknt.schema.TypeValidator debug - validate( "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", client_id) +09:03:03.168 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:03.168 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:03:03.168 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:03:03.168 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:03:03.168 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:03:03.180 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:03:03.180 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:03:03.181 [XNIO-1 task-2] DYSOyUlFR5yZjmKGJ_gA2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dbt4URBHS2OzAHunost3SQ +09:03:03.187 [XNIO-1 task-2] zZxt0ujcRYKkors1Q9J0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.187 [XNIO-1 task-2] zZxt0ujcRYKkors1Q9J0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.187 [XNIO-1 task-2] zZxt0ujcRYKkors1Q9J0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:03:03.188 [XNIO-1 task-2] zZxt0ujcRYKkors1Q9J0zA DEBUG com.networknt.schema.TypeValidator debug - validate( "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", "c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9", client_id) +09:03:03.188 [XNIO-1 task-2] zZxt0ujcRYKkors1Q9J0zA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:03:03.188 [XNIO-1 task-2] zZxt0ujcRYKkors1Q9J0zA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) diff --git a/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..81514fa --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-key-1.log @@ -0,0 +1,118 @@ + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:03:02.098 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3e275764-601b-4b84-b647-635beb9727fb +09:03:02.258 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f3b6592f-3ea7-4d93-8901-a6c09b61086c +09:03:02.262 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9c06065a-1349-43db-a9f1-3a36c725f1ca +09:03:02.273 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f3b6592f-3ea7-4d93-8901-a6c09b61086c +09:03:02.300 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f39c7274 +09:03:02.336 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f39c7274 +09:03:02.345 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:994f798d-b094-4967-98fb-5669406fd6bc +09:03:02.346 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:994f798d-b094-4967-98fb-5669406fd6bc +09:03:02.453 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1f570d01 +09:03:02.459 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1f570d01 +09:03:02.474 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4a9f316f +09:03:02.753 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c42ec3d8-c1d3-42a1-9cef-a6f37506b9d7 +09:03:02.758 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:03:02.850 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:50528dc2-ba93-403a-8952-d27e9d2a1c48 +09:03:02.997 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b9f6fe14-5213-4969-8c90-16a66ffec43d +09:03:03.003 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:048eab07-62bb-43f5-8ee3-17ab8f6d66f3 +09:03:03.004 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:048eab07-62bb-43f5-8ee3-17ab8f6d66f3 +09:03:03.089 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a18411c8-a940-4c76-adc9-c75c95b43582 +09:03:03.121 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a18411c8-a940-4c76-adc9-c75c95b43582 +09:03:03.143 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a18411c8-a940-4c76-adc9-c75c95b43582 +09:03:03.154 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b92171a9-c8a7-498f-ba32-5cb9c62db93a +09:03:03.180 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b92171a9-c8a7-498f-ba32-5cb9c62db93a +09:03:03.191 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ae719abf +09:03:03.257 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ae719abf +09:03:03.345 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:457d4694-a464-4587-a58c-685bce16d150 +09:03:03.364 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:457d4694-a464-4587-a58c-685bce16d150 +09:03:03.451 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:47304e34-67f2-42a2-8807-76cdc5cddb46 +09:03:03.463 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a8e9651c-fdb4-49c6-a53e-8b59ac764df9 +09:03:03.467 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a8e9651c-fdb4-49c6-a53e-8b59ac764df9 +Jun 29, 2024 9:03:03 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:03:03.858 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:958e1dc2-75e7-4a50-a444-968791115771 +09:03:03.858 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:958e1dc2-75e7-4a50-a444-968791115771 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:03:03.991 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1e001370-c9e7-4a6d-a24b-768fbd998f81 diff --git a/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..0a7784f --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,2335 @@ +09:02:59.630 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fe4cd13c +09:02:59.653 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fe4cd13c +09:02:59.654 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:49eb08d7-57cf-4218-a431-cb37cf013f4d +09:02:59.660 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:28b808a4 +09:02:59.669 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e1aa07fa-d6f8-486d-8fc8-1cbdf75f89a3 +09:02:59.670 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e1aa07fa-d6f8-486d-8fc8-1cbdf75f89a3 +09:02:59.679 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fe4cd13c +09:02:59.686 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.687 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.688 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fe4cd13c +09:02:59.693 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6ccb2cb8 +09:02:59.760 [XNIO-1 task-1] JryANDm1TP2huAeqScGJkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.760 [XNIO-1 task-1] JryANDm1TP2huAeqScGJkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.760 [XNIO-1 task-1] JryANDm1TP2huAeqScGJkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.760 [XNIO-1 task-1] JryANDm1TP2huAeqScGJkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.760 [XNIO-1 task-1] JryANDm1TP2huAeqScGJkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.766 [XNIO-1 task-1] O3WXcXe3SMmCIJBkPI7R8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.766 [XNIO-1 task-1] O3WXcXe3SMmCIJBkPI7R8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.766 [XNIO-1 task-1] O3WXcXe3SMmCIJBkPI7R8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.766 [XNIO-1 task-1] O3WXcXe3SMmCIJBkPI7R8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.766 [XNIO-1 task-1] O3WXcXe3SMmCIJBkPI7R8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.774 [XNIO-1 task-1] aKFrMHJrTyiM-NDgB7mrNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.774 [XNIO-1 task-1] aKFrMHJrTyiM-NDgB7mrNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.774 [XNIO-1 task-1] aKFrMHJrTyiM-NDgB7mrNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.774 [XNIO-1 task-1] aKFrMHJrTyiM-NDgB7mrNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.797 [XNIO-1 task-1] aYGoAcYgRcOsJXS9zlG73w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:02:59.797 [XNIO-1 task-1] aYGoAcYgRcOsJXS9zlG73w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.797 [XNIO-1 task-1] aYGoAcYgRcOsJXS9zlG73w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:02:59.797 [XNIO-1 task-1] aYGoAcYgRcOsJXS9zlG73w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:02:59.797 [XNIO-1 task-1] aYGoAcYgRcOsJXS9zlG73w DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:02:59.799 [XNIO-1 task-1] aYGoAcYgRcOsJXS9zlG73w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:02:59.801 [XNIO-1 task-1] N-sIm-l0SzSvr5LR5oaroA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.801 [XNIO-1 task-1] N-sIm-l0SzSvr5LR5oaroA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.801 [XNIO-1 task-1] N-sIm-l0SzSvr5LR5oaroA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.801 [XNIO-1 task-1] N-sIm-l0SzSvr5LR5oaroA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.828 [XNIO-1 task-1] b8pgA4GmROmNt-dSlXERzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:02:59.828 [XNIO-1 task-1] b8pgA4GmROmNt-dSlXERzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.828 [XNIO-1 task-1] b8pgA4GmROmNt-dSlXERzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:02:59.828 [XNIO-1 task-1] b8pgA4GmROmNt-dSlXERzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:02:59.829 [XNIO-1 task-1] b8pgA4GmROmNt-dSlXERzA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:02:59.829 [XNIO-1 task-1] b8pgA4GmROmNt-dSlXERzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:02:59.831 [XNIO-1 task-1] FZJ-FDtVQvqRHF__w5NEKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.831 [XNIO-1 task-1] FZJ-FDtVQvqRHF__w5NEKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.831 [XNIO-1 task-1] FZJ-FDtVQvqRHF__w5NEKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.831 [XNIO-1 task-1] FZJ-FDtVQvqRHF__w5NEKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.831 [XNIO-1 task-1] FZJ-FDtVQvqRHF__w5NEKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.834 [XNIO-1 task-1] GhsqMCXHQ5upStadiaAYeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:02:59.834 [XNIO-1 task-1] GhsqMCXHQ5upStadiaAYeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.834 [XNIO-1 task-1] GhsqMCXHQ5upStadiaAYeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:02:59.834 [XNIO-1 task-1] GhsqMCXHQ5upStadiaAYeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:02:59.834 [XNIO-1 task-1] GhsqMCXHQ5upStadiaAYeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:02:59.834 [XNIO-1 task-1] GhsqMCXHQ5upStadiaAYeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:02:59.840 [XNIO-1 task-1] Kn6xB4JNSOKXouoLtn6ROA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.840 [XNIO-1 task-1] Kn6xB4JNSOKXouoLtn6ROA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.840 [XNIO-1 task-1] Kn6xB4JNSOKXouoLtn6ROA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.840 [XNIO-1 task-1] Kn6xB4JNSOKXouoLtn6ROA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.840 [XNIO-1 task-1] Kn6xB4JNSOKXouoLtn6ROA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.842 [XNIO-1 task-1] HTiywPXkRTCIrwOwDAf6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.842 [XNIO-1 task-1] HTiywPXkRTCIrwOwDAf6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.842 [XNIO-1 task-1] HTiywPXkRTCIrwOwDAf6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.842 [XNIO-1 task-1] HTiywPXkRTCIrwOwDAf6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.842 [XNIO-1 task-1] HTiywPXkRTCIrwOwDAf6ow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:02:59.845 [XNIO-1 task-1] 3iEwafKnSH2m_05KvI6VJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:02:59.845 [XNIO-1 task-1] 3iEwafKnSH2m_05KvI6VJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.845 [XNIO-1 task-1] 3iEwafKnSH2m_05KvI6VJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:02:59.845 [XNIO-1 task-1] 3iEwafKnSH2m_05KvI6VJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:02:59.845 [XNIO-1 task-1] 3iEwafKnSH2m_05KvI6VJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:02:59.845 [XNIO-1 task-1] 3iEwafKnSH2m_05KvI6VJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:02:59.847 [XNIO-1 task-1] zv9-Zt5JSVmGu8Mu0TYb5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.847 [XNIO-1 task-1] zv9-Zt5JSVmGu8Mu0TYb5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.847 [XNIO-1 task-1] zv9-Zt5JSVmGu8Mu0TYb5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.847 [XNIO-1 task-1] zv9-Zt5JSVmGu8Mu0TYb5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.847 [XNIO-1 task-1] zv9-Zt5JSVmGu8Mu0TYb5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.849 [XNIO-1 task-1] myJjRHR8RqW6KTwpjvwAMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:02:59.849 [XNIO-1 task-1] myJjRHR8RqW6KTwpjvwAMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.849 [XNIO-1 task-1] myJjRHR8RqW6KTwpjvwAMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:02:59.849 [XNIO-1 task-1] myJjRHR8RqW6KTwpjvwAMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:02:59.849 [XNIO-1 task-1] myJjRHR8RqW6KTwpjvwAMA DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:02:59.849 [XNIO-1 task-1] myJjRHR8RqW6KTwpjvwAMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:02:59.850 [XNIO-1 task-1] eBzK_L8GQtOvsPQvtQyoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.850 [XNIO-1 task-1] eBzK_L8GQtOvsPQvtQyoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.851 [XNIO-1 task-1] eBzK_L8GQtOvsPQvtQyoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.851 [XNIO-1 task-1] eBzK_L8GQtOvsPQvtQyoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.851 [XNIO-1 task-1] eBzK_L8GQtOvsPQvtQyoaA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:02:59.852 [XNIO-1 task-1] yH2RLGuqTzm8N-qg1uTCxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:02:59.852 [XNIO-1 task-1] yH2RLGuqTzm8N-qg1uTCxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.852 [XNIO-1 task-1] yH2RLGuqTzm8N-qg1uTCxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:02:59.852 [XNIO-1 task-1] yH2RLGuqTzm8N-qg1uTCxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:02:59.852 [XNIO-1 task-1] yH2RLGuqTzm8N-qg1uTCxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:02:59.852 [XNIO-1 task-1] yH2RLGuqTzm8N-qg1uTCxQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:02:59.854 [XNIO-1 task-1] Igy9LFPURPKpwC1DeutuQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.854 [XNIO-1 task-1] Igy9LFPURPKpwC1DeutuQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.854 [XNIO-1 task-1] Igy9LFPURPKpwC1DeutuQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.854 [XNIO-1 task-1] Igy9LFPURPKpwC1DeutuQw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.864 [XNIO-1 task-1] K9GKDk0dTpm7iUF0eH_W7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:02:59.864 [XNIO-1 task-1] K9GKDk0dTpm7iUF0eH_W7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.865 [XNIO-1 task-1] K9GKDk0dTpm7iUF0eH_W7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:02:59.865 [XNIO-1 task-1] K9GKDk0dTpm7iUF0eH_W7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.865 [XNIO-1 task-1] K9GKDk0dTpm7iUF0eH_W7w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:02:59.898 [XNIO-1 task-1] _hvgQ2KmSxCx-bvvYc16pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.899 [XNIO-1 task-1] _hvgQ2KmSxCx-bvvYc16pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.899 [XNIO-1 task-1] _hvgQ2KmSxCx-bvvYc16pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.899 [XNIO-1 task-1] _hvgQ2KmSxCx-bvvYc16pg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.902 [XNIO-1 task-1] EQB7tvFhTrSHPfgY543rMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:02:59.902 [XNIO-1 task-1] EQB7tvFhTrSHPfgY543rMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.902 [XNIO-1 task-1] EQB7tvFhTrSHPfgY543rMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:02:59.902 [XNIO-1 task-1] EQB7tvFhTrSHPfgY543rMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.902 [XNIO-1 task-1] EQB7tvFhTrSHPfgY543rMg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:02:59.968 [XNIO-1 task-1] bPWzR_wJQtWqc4ESuPBlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.968 [XNIO-1 task-1] bPWzR_wJQtWqc4ESuPBlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.968 [XNIO-1 task-1] bPWzR_wJQtWqc4ESuPBlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:02:59.968 [XNIO-1 task-1] bPWzR_wJQtWqc4ESuPBlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.968 [XNIO-1 task-1] bPWzR_wJQtWqc4ESuPBlqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.975 [XNIO-1 task-1] 30NdIUbBQ9-eVlXyPZNCdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:02:59.975 [XNIO-1 task-1] 30NdIUbBQ9-eVlXyPZNCdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.975 [XNIO-1 task-1] 30NdIUbBQ9-eVlXyPZNCdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:02:59.975 [XNIO-1 task-1] 30NdIUbBQ9-eVlXyPZNCdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:02:59.975 [XNIO-1 task-1] 30NdIUbBQ9-eVlXyPZNCdw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:02:59.975 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:02:59.978 [XNIO-1 task-1] 5Fdz-gXLT3CY7xrqQnkwPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:02:59.978 [XNIO-1 task-1] 5Fdz-gXLT3CY7xrqQnkwPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:02:59.978 [XNIO-1 task-1] 5Fdz-gXLT3CY7xrqQnkwPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:02:59.979 [XNIO-1 task-1] 5Fdz-gXLT3CY7xrqQnkwPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.979 [XNIO-1 task-1] 5Fdz-gXLT3CY7xrqQnkwPg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:02:59.999 [XNIO-1 task-1] XFQp-7-kSlab_hKJgZSaHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.999 [XNIO-1 task-1] XFQp-7-kSlab_hKJgZSaHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.999 [XNIO-1 task-1] XFQp-7-kSlab_hKJgZSaHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:02:59.999 [XNIO-1 task-1] XFQp-7-kSlab_hKJgZSaHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.028 [XNIO-1 task-1] pAljhOsySW2_FMRpZykgdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.028 [XNIO-1 task-1] pAljhOsySW2_FMRpZykgdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.028 [XNIO-1 task-1] pAljhOsySW2_FMRpZykgdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.028 [XNIO-1 task-1] pAljhOsySW2_FMRpZykgdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.028 [XNIO-1 task-1] pAljhOsySW2_FMRpZykgdw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.032 [XNIO-1 task-1] hMHamyIQSUGeGetg_EYHkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad001ce6-5c5d-4440-b86b-7b774d23f443 +09:03:00.032 [XNIO-1 task-1] hMHamyIQSUGeGetg_EYHkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.032 [XNIO-1 task-1] hMHamyIQSUGeGetg_EYHkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.032 [XNIO-1 task-1] hMHamyIQSUGeGetg_EYHkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad001ce6-5c5d-4440-b86b-7b774d23f443 +09:03:00.033 [XNIO-1 task-1] hMHamyIQSUGeGetg_EYHkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad001ce6-5c5d-4440-b86b-7b774d23f443 +09:03:00.033 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.036 [XNIO-1 task-1] R_XNt7DAQIivrspVpNNgEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad001ce6-5c5d-4440-b86b-7b774d23f443 +09:03:00.036 [XNIO-1 task-1] R_XNt7DAQIivrspVpNNgEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.036 [XNIO-1 task-1] R_XNt7DAQIivrspVpNNgEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.037 [XNIO-1 task-1] R_XNt7DAQIivrspVpNNgEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad001ce6-5c5d-4440-b86b-7b774d23f443 +09:03:00.037 [XNIO-1 task-1] R_XNt7DAQIivrspVpNNgEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad001ce6-5c5d-4440-b86b-7b774d23f443 +09:03:00.045 [XNIO-1 task-1] 9IXTKu8tSgibwafZVFDzSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.045 [XNIO-1 task-1] 9IXTKu8tSgibwafZVFDzSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.045 [XNIO-1 task-1] 9IXTKu8tSgibwafZVFDzSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.045 [XNIO-1 task-1] 9IXTKu8tSgibwafZVFDzSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.045 [XNIO-1 task-1] 9IXTKu8tSgibwafZVFDzSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.047 [XNIO-1 task-1] ggLl2SoHTLiKnqb3bx277g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.047 [XNIO-1 task-1] ggLl2SoHTLiKnqb3bx277g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.048 [XNIO-1 task-1] ggLl2SoHTLiKnqb3bx277g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.048 [XNIO-1 task-1] ggLl2SoHTLiKnqb3bx277g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.048 [XNIO-1 task-1] ggLl2SoHTLiKnqb3bx277g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.056 [XNIO-1 task-1] 78-RPAA_Q3SbipxeZs2pvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.056 [XNIO-1 task-1] 78-RPAA_Q3SbipxeZs2pvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.056 [XNIO-1 task-1] 78-RPAA_Q3SbipxeZs2pvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.056 [XNIO-1 task-1] 78-RPAA_Q3SbipxeZs2pvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.057 [XNIO-1 task-1] 78-RPAA_Q3SbipxeZs2pvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.067 [XNIO-1 task-1] 1hkxEv8dQ4qaapR_Q8TZiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.067 [XNIO-1 task-1] 1hkxEv8dQ4qaapR_Q8TZiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.067 [XNIO-1 task-1] 1hkxEv8dQ4qaapR_Q8TZiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.067 [XNIO-1 task-1] 1hkxEv8dQ4qaapR_Q8TZiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.067 [XNIO-1 task-1] 1hkxEv8dQ4qaapR_Q8TZiw DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.067 [XNIO-1 task-1] 1hkxEv8dQ4qaapR_Q8TZiw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.074 [XNIO-1 task-1] Jb_DzX30TuiHMcH2n1jB4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.075 [XNIO-1 task-1] Jb_DzX30TuiHMcH2n1jB4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.075 [XNIO-1 task-1] Jb_DzX30TuiHMcH2n1jB4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.075 [XNIO-1 task-1] Jb_DzX30TuiHMcH2n1jB4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.075 [XNIO-1 task-1] Jb_DzX30TuiHMcH2n1jB4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.076 [XNIO-1 task-1] Jb_DzX30TuiHMcH2n1jB4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.080 [XNIO-1 task-1] E9Y_JyL1RziHywab0xahlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.080 [XNIO-1 task-1] E9Y_JyL1RziHywab0xahlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.080 [XNIO-1 task-1] E9Y_JyL1RziHywab0xahlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.081 [XNIO-1 task-1] E9Y_JyL1RziHywab0xahlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.081 [XNIO-1 task-1] E9Y_JyL1RziHywab0xahlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.086 [XNIO-1 task-1] XcuBG0rKTUyZ2RAMIDe08A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.086 [XNIO-1 task-1] XcuBG0rKTUyZ2RAMIDe08A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.086 [XNIO-1 task-1] XcuBG0rKTUyZ2RAMIDe08A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.087 [XNIO-1 task-1] XcuBG0rKTUyZ2RAMIDe08A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.087 [XNIO-1 task-1] XcuBG0rKTUyZ2RAMIDe08A DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.087 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.090 [XNIO-1 task-1] cAPkgVfjToK3BdXSw2DN8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.090 [XNIO-1 task-1] cAPkgVfjToK3BdXSw2DN8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.090 [XNIO-1 task-1] cAPkgVfjToK3BdXSw2DN8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.090 [XNIO-1 task-1] cAPkgVfjToK3BdXSw2DN8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.090 [XNIO-1 task-1] cAPkgVfjToK3BdXSw2DN8A DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.090 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.097 [XNIO-1 task-1] LLkcetnDQFuMBKmJrBqNrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f, base path is set to: null +09:03:00.097 [XNIO-1 task-1] LLkcetnDQFuMBKmJrBqNrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.097 [XNIO-1 task-1] LLkcetnDQFuMBKmJrBqNrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.097 [XNIO-1 task-1] LLkcetnDQFuMBKmJrBqNrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f, base path is set to: null +09:03:00.097 [XNIO-1 task-1] LLkcetnDQFuMBKmJrBqNrw DEBUG com.networknt.schema.TypeValidator debug - validate( "cfbbf07a-e535-4930-9bbd-dab0af6cfd9f", "cfbbf07a-e535-4930-9bbd-dab0af6cfd9f", refreshToken) +09:03:00.104 [XNIO-1 task-1] BtfQfYSgQtCIL44HGmYpcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.104 [XNIO-1 task-1] BtfQfYSgQtCIL44HGmYpcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.104 [XNIO-1 task-1] BtfQfYSgQtCIL44HGmYpcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.104 [XNIO-1 task-1] BtfQfYSgQtCIL44HGmYpcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.104 [XNIO-1 task-1] BtfQfYSgQtCIL44HGmYpcw DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.105 [XNIO-1 task-1] BtfQfYSgQtCIL44HGmYpcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.107 [XNIO-1 task-1] 70kEwXdgSkSRimuk902PoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.107 [XNIO-1 task-1] 70kEwXdgSkSRimuk902PoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.107 [XNIO-1 task-1] 70kEwXdgSkSRimuk902PoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.107 [XNIO-1 task-1] 70kEwXdgSkSRimuk902PoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.107 [XNIO-1 task-1] 70kEwXdgSkSRimuk902PoA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.108 [XNIO-1 task-1] 70kEwXdgSkSRimuk902PoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.110 [XNIO-1 task-1] nbojhTTeTZqpZhgegCfLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.110 [XNIO-1 task-1] nbojhTTeTZqpZhgegCfLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.111 [XNIO-1 task-1] nbojhTTeTZqpZhgegCfLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.111 [XNIO-1 task-1] nbojhTTeTZqpZhgegCfLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.111 [XNIO-1 task-1] nbojhTTeTZqpZhgegCfLug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.112 [XNIO-1 task-1] nbojhTTeTZqpZhgegCfLug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.114 [XNIO-1 task-1] pu9G_y8zSBOSMPwiUkJ3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.114 [XNIO-1 task-1] pu9G_y8zSBOSMPwiUkJ3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.114 [XNIO-1 task-1] pu9G_y8zSBOSMPwiUkJ3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.114 [XNIO-1 task-1] pu9G_y8zSBOSMPwiUkJ3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.114 [XNIO-1 task-1] pu9G_y8zSBOSMPwiUkJ3xg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.118 [XNIO-1 task-1] 2Crc81oDRgmbUebtG-bhdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.118 [XNIO-1 task-1] 2Crc81oDRgmbUebtG-bhdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.118 [XNIO-1 task-1] 2Crc81oDRgmbUebtG-bhdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.119 [XNIO-1 task-1] 2Crc81oDRgmbUebtG-bhdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.119 [XNIO-1 task-1] 2Crc81oDRgmbUebtG-bhdg DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.119 [XNIO-1 task-1] 2Crc81oDRgmbUebtG-bhdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.121 [XNIO-1 task-1] 56y6EZaSQVSKtBX-eicJ5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.121 [XNIO-1 task-1] 56y6EZaSQVSKtBX-eicJ5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.121 [XNIO-1 task-1] 56y6EZaSQVSKtBX-eicJ5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.121 [XNIO-1 task-1] 56y6EZaSQVSKtBX-eicJ5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.121 [XNIO-1 task-1] 56y6EZaSQVSKtBX-eicJ5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.123 [XNIO-1 task-1] bIzfrxVTTCGj7ZoCSV2N0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.123 [XNIO-1 task-1] bIzfrxVTTCGj7ZoCSV2N0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.123 [XNIO-1 task-1] bIzfrxVTTCGj7ZoCSV2N0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.123 [XNIO-1 task-1] bIzfrxVTTCGj7ZoCSV2N0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.123 [XNIO-1 task-1] bIzfrxVTTCGj7ZoCSV2N0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.123 [XNIO-1 task-1] bIzfrxVTTCGj7ZoCSV2N0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.126 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9f47c381-993b-4794-9a29-0a7fd37267b3 +09:03:00.126 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9f47c381-993b-4794-9a29-0a7fd37267b3 +09:03:00.127 [XNIO-1 task-1] BtFEFo7GSs2VzX17d2ngVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.127 [XNIO-1 task-1] BtFEFo7GSs2VzX17d2ngVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.127 [XNIO-1 task-1] BtFEFo7GSs2VzX17d2ngVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.130 [XNIO-1 task-1] ydyDzvl7RnC5MluInLNhag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.131 [XNIO-1 task-1] ydyDzvl7RnC5MluInLNhag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.131 [XNIO-1 task-1] ydyDzvl7RnC5MluInLNhag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.131 [XNIO-1 task-1] ydyDzvl7RnC5MluInLNhag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.131 [XNIO-1 task-1] ydyDzvl7RnC5MluInLNhag DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.131 [XNIO-1 task-1] ydyDzvl7RnC5MluInLNhag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.135 [XNIO-1 task-1] FeLMG3HsRdaoWjtzrwOENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.135 [XNIO-1 task-1] FeLMG3HsRdaoWjtzrwOENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.135 [XNIO-1 task-1] FeLMG3HsRdaoWjtzrwOENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.135 [XNIO-1 task-1] FeLMG3HsRdaoWjtzrwOENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.136 [XNIO-1 task-1] FeLMG3HsRdaoWjtzrwOENQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.137 [XNIO-1 task-1] 9T1dhLo4QZup7PqFgDcBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.137 [XNIO-1 task-1] 9T1dhLo4QZup7PqFgDcBbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.137 [XNIO-1 task-1] 9T1dhLo4QZup7PqFgDcBbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.137 [XNIO-1 task-1] 9T1dhLo4QZup7PqFgDcBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.138 [XNIO-1 task-1] 9T1dhLo4QZup7PqFgDcBbg DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.138 [XNIO-1 task-1] 9T1dhLo4QZup7PqFgDcBbg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.139 [XNIO-1 task-1] SJy2rrYaSL2MA_hUHCE8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.139 [XNIO-1 task-1] SJy2rrYaSL2MA_hUHCE8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.139 [XNIO-1 task-1] SJy2rrYaSL2MA_hUHCE8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.139 [XNIO-1 task-1] SJy2rrYaSL2MA_hUHCE8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.140 [XNIO-1 task-1] SJy2rrYaSL2MA_hUHCE8ug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.141 [XNIO-1 task-1] XhK8ELRERJiY73ZfXAq02A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.141 [XNIO-1 task-1] XhK8ELRERJiY73ZfXAq02A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.141 [XNIO-1 task-1] XhK8ELRERJiY73ZfXAq02A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.141 [XNIO-1 task-1] XhK8ELRERJiY73ZfXAq02A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.141 [XNIO-1 task-1] XhK8ELRERJiY73ZfXAq02A DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.141 [XNIO-1 task-1] XhK8ELRERJiY73ZfXAq02A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.143 [XNIO-1 task-1] tUHd8ADbToam7s9U9OdX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.143 [XNIO-1 task-1] tUHd8ADbToam7s9U9OdX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.143 [XNIO-1 task-1] tUHd8ADbToam7s9U9OdX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.143 [XNIO-1 task-1] tUHd8ADbToam7s9U9OdX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.143 [XNIO-1 task-1] tUHd8ADbToam7s9U9OdX4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.145 [XNIO-1 task-1] rupY-hlxQ_qcKi7SYA0maA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.145 [XNIO-1 task-1] rupY-hlxQ_qcKi7SYA0maA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.145 [XNIO-1 task-1] rupY-hlxQ_qcKi7SYA0maA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.145 [XNIO-1 task-1] rupY-hlxQ_qcKi7SYA0maA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.145 [XNIO-1 task-1] rupY-hlxQ_qcKi7SYA0maA DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.145 [XNIO-1 task-1] rupY-hlxQ_qcKi7SYA0maA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.147 [XNIO-1 task-1] LObKPI4gRlymBENPU8m-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.147 [XNIO-1 task-1] LObKPI4gRlymBENPU8m-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.147 [XNIO-1 task-1] LObKPI4gRlymBENPU8m-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.147 [XNIO-1 task-1] LObKPI4gRlymBENPU8m-EQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.152 [XNIO-1 task-1] bKESkICYTVK3hPcxEEdwAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.153 [XNIO-1 task-1] bKESkICYTVK3hPcxEEdwAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.153 [XNIO-1 task-1] bKESkICYTVK3hPcxEEdwAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.153 [XNIO-1 task-1] bKESkICYTVK3hPcxEEdwAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.153 [XNIO-1 task-1] bKESkICYTVK3hPcxEEdwAg DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.153 [XNIO-1 task-1] bKESkICYTVK3hPcxEEdwAg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.155 [XNIO-1 task-1] x0WFJJIuSmSEFNmnayLsBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.155 [XNIO-1 task-1] x0WFJJIuSmSEFNmnayLsBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.155 [XNIO-1 task-1] x0WFJJIuSmSEFNmnayLsBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.155 [XNIO-1 task-1] x0WFJJIuSmSEFNmnayLsBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.155 [XNIO-1 task-1] x0WFJJIuSmSEFNmnayLsBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.156 [XNIO-1 task-1] x0WFJJIuSmSEFNmnayLsBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.158 [XNIO-1 task-1] XtNAoiuKSWuHJDRqR4xpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.158 [XNIO-1 task-1] XtNAoiuKSWuHJDRqR4xpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.158 [XNIO-1 task-1] XtNAoiuKSWuHJDRqR4xpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.158 [XNIO-1 task-1] XtNAoiuKSWuHJDRqR4xpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.159 [XNIO-1 task-1] XtNAoiuKSWuHJDRqR4xpyg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.163 [XNIO-1 task-1] MrOuFAXkRQiSPmuYZ0vCew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.163 [XNIO-1 task-1] MrOuFAXkRQiSPmuYZ0vCew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.163 [XNIO-1 task-1] MrOuFAXkRQiSPmuYZ0vCew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.163 [XNIO-1 task-1] MrOuFAXkRQiSPmuYZ0vCew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.163 [XNIO-1 task-1] MrOuFAXkRQiSPmuYZ0vCew DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.163 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.166 [XNIO-1 task-1] Z3CHHILNRsetp8Pe9d7OhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.166 [XNIO-1 task-1] Z3CHHILNRsetp8Pe9d7OhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.166 [XNIO-1 task-1] Z3CHHILNRsetp8Pe9d7OhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.166 [XNIO-1 task-1] Z3CHHILNRsetp8Pe9d7OhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.166 [XNIO-1 task-1] Z3CHHILNRsetp8Pe9d7OhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.167 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.169 [XNIO-1 task-1] 5lNuXe6ARemYEAnleSMgBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f, base path is set to: null +09:03:00.169 [XNIO-1 task-1] 5lNuXe6ARemYEAnleSMgBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.169 [XNIO-1 task-1] 5lNuXe6ARemYEAnleSMgBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.170 [XNIO-1 task-1] 5lNuXe6ARemYEAnleSMgBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f, base path is set to: null +09:03:00.170 [XNIO-1 task-1] 5lNuXe6ARemYEAnleSMgBA DEBUG com.networknt.schema.TypeValidator debug - validate( "cfbbf07a-e535-4930-9bbd-dab0af6cfd9f", "cfbbf07a-e535-4930-9bbd-dab0af6cfd9f", refreshToken) +09:03:00.170 [XNIO-1 task-1] 5lNuXe6ARemYEAnleSMgBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token cfbbf07a-e535-4930-9bbd-dab0af6cfd9f is not found.","severity":"ERROR"} +09:03:00.172 [XNIO-1 task-1] bnmrrozPSDmiZPVn35DZgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.172 [XNIO-1 task-1] bnmrrozPSDmiZPVn35DZgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.172 [XNIO-1 task-1] bnmrrozPSDmiZPVn35DZgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.172 [XNIO-1 task-1] bnmrrozPSDmiZPVn35DZgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.172 [XNIO-1 task-1] bnmrrozPSDmiZPVn35DZgw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.173 [XNIO-1 task-1] bnmrrozPSDmiZPVn35DZgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.176 [XNIO-1 task-1] dkVXotMeTdiQNgl0nYjamw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.176 [XNIO-1 task-1] dkVXotMeTdiQNgl0nYjamw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.176 [XNIO-1 task-1] dkVXotMeTdiQNgl0nYjamw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.176 [XNIO-1 task-1] dkVXotMeTdiQNgl0nYjamw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.181 [XNIO-1 task-1] ez8U8wgDSDq12ii_PKxpqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.181 [XNIO-1 task-1] ez8U8wgDSDq12ii_PKxpqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.181 [XNIO-1 task-1] ez8U8wgDSDq12ii_PKxpqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.181 [XNIO-1 task-1] ez8U8wgDSDq12ii_PKxpqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.181 [XNIO-1 task-1] ez8U8wgDSDq12ii_PKxpqA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.184 [XNIO-1 task-1] BK8FFShWSOaEVmy6Nnht9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.185 [XNIO-1 task-1] BK8FFShWSOaEVmy6Nnht9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.185 [XNIO-1 task-1] BK8FFShWSOaEVmy6Nnht9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.185 [XNIO-1 task-1] BK8FFShWSOaEVmy6Nnht9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.185 [XNIO-1 task-1] BK8FFShWSOaEVmy6Nnht9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.187 [XNIO-1 task-1] iZulNg04QemErsLQCmvesQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.187 [XNIO-1 task-1] iZulNg04QemErsLQCmvesQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.187 [XNIO-1 task-1] iZulNg04QemErsLQCmvesQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.187 [XNIO-1 task-1] iZulNg04QemErsLQCmvesQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.188 [XNIO-1 task-1] iZulNg04QemErsLQCmvesQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.188 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.190 [XNIO-1 task-1] l-XyizTTQVSd2IUICaXFPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f, base path is set to: null +09:03:00.190 [XNIO-1 task-1] l-XyizTTQVSd2IUICaXFPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.190 [XNIO-1 task-1] l-XyizTTQVSd2IUICaXFPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.190 [XNIO-1 task-1] l-XyizTTQVSd2IUICaXFPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f, base path is set to: null +09:03:00.191 [XNIO-1 task-1] l-XyizTTQVSd2IUICaXFPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cfbbf07a-e535-4930-9bbd-dab0af6cfd9f", "cfbbf07a-e535-4930-9bbd-dab0af6cfd9f", refreshToken) +09:03:00.191 [XNIO-1 task-1] l-XyizTTQVSd2IUICaXFPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token cfbbf07a-e535-4930-9bbd-dab0af6cfd9f is not found.","severity":"ERROR"} +09:03:00.192 [XNIO-1 task-1] PhUFskhJSQOXxas24v8HVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.192 [XNIO-1 task-1] PhUFskhJSQOXxas24v8HVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.192 [XNIO-1 task-1] PhUFskhJSQOXxas24v8HVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.192 [XNIO-1 task-1] PhUFskhJSQOXxas24v8HVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.196 [XNIO-1 task-1] aKiDl1gpQwC0dCAE9Fxb-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.196 [XNIO-1 task-1] aKiDl1gpQwC0dCAE9Fxb-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.196 [XNIO-1 task-1] aKiDl1gpQwC0dCAE9Fxb-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.196 [XNIO-1 task-1] aKiDl1gpQwC0dCAE9Fxb-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.196 [XNIO-1 task-1] aKiDl1gpQwC0dCAE9Fxb-w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.204 [XNIO-1 task-1] 9vKz4JnhTZmISgMhOsmQMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.204 [XNIO-1 task-1] 9vKz4JnhTZmISgMhOsmQMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.204 [XNIO-1 task-1] 9vKz4JnhTZmISgMhOsmQMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.204 [XNIO-1 task-1] 9vKz4JnhTZmISgMhOsmQMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.204 [XNIO-1 task-1] 9vKz4JnhTZmISgMhOsmQMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.205 [XNIO-1 task-1] 9vKz4JnhTZmISgMhOsmQMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.207 [XNIO-1 task-1] uFExbEaZRni7Ju6h9e1dRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.207 [XNIO-1 task-1] uFExbEaZRni7Ju6h9e1dRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.207 [XNIO-1 task-1] uFExbEaZRni7Ju6h9e1dRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.207 [XNIO-1 task-1] uFExbEaZRni7Ju6h9e1dRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.208 [XNIO-1 task-1] uFExbEaZRni7Ju6h9e1dRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.212 [XNIO-1 task-1] 5VrhMGZ3Qimtfa5JHt_qsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.212 [XNIO-1 task-1] 5VrhMGZ3Qimtfa5JHt_qsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.212 [XNIO-1 task-1] 5VrhMGZ3Qimtfa5JHt_qsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.212 [XNIO-1 task-1] 5VrhMGZ3Qimtfa5JHt_qsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.212 [XNIO-1 task-1] 5VrhMGZ3Qimtfa5JHt_qsA DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.212 [XNIO-1 task-1] 5VrhMGZ3Qimtfa5JHt_qsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.214 [XNIO-1 task-1] PyBXsoy9RRe1gDTeuHkdyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.214 [XNIO-1 task-1] PyBXsoy9RRe1gDTeuHkdyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.214 [XNIO-1 task-1] PyBXsoy9RRe1gDTeuHkdyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.214 [XNIO-1 task-1] PyBXsoy9RRe1gDTeuHkdyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.214 [XNIO-1 task-1] PyBXsoy9RRe1gDTeuHkdyg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = cfbbf07a-e535-4930-9bbd-dab0af6cfd9f +09:03:00.216 [XNIO-1 task-1] rHr9TUpWTTOXwBeNDVmkqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.216 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.216 [XNIO-1 task-1] rHr9TUpWTTOXwBeNDVmkqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.216 [XNIO-1 task-1] rHr9TUpWTTOXwBeNDVmkqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.216 [XNIO-1 task-1] rHr9TUpWTTOXwBeNDVmkqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.217 [XNIO-1 task-1] rHr9TUpWTTOXwBeNDVmkqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.230 [XNIO-1 task-1] XmXIM5XuTneMnKtNMajxEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.230 [XNIO-1 task-1] XmXIM5XuTneMnKtNMajxEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.230 [XNIO-1 task-1] XmXIM5XuTneMnKtNMajxEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.230 [XNIO-1 task-1] XmXIM5XuTneMnKtNMajxEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.230 [XNIO-1 task-1] XmXIM5XuTneMnKtNMajxEA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.234 [XNIO-1 task-1] Y5NMXbd4StivrCKWPUAowQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.234 [XNIO-1 task-1] Y5NMXbd4StivrCKWPUAowQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.234 [XNIO-1 task-1] Y5NMXbd4StivrCKWPUAowQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.234 [XNIO-1 task-1] Y5NMXbd4StivrCKWPUAowQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.234 [XNIO-1 task-1] Y5NMXbd4StivrCKWPUAowQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.234 [XNIO-1 task-1] Y5NMXbd4StivrCKWPUAowQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.236 [XNIO-1 task-1] KzsJZzcFQT-JXjW0tLVl9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.236 [XNIO-1 task-1] KzsJZzcFQT-JXjW0tLVl9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.236 [XNIO-1 task-1] KzsJZzcFQT-JXjW0tLVl9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.237 [XNIO-1 task-1] KzsJZzcFQT-JXjW0tLVl9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.240 [XNIO-1 task-1] 9lNaHhuATbmQd_G-WgqggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.240 [XNIO-1 task-1] 9lNaHhuATbmQd_G-WgqggA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.240 [XNIO-1 task-1] 9lNaHhuATbmQd_G-WgqggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.240 [XNIO-1 task-1] 9lNaHhuATbmQd_G-WgqggA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.240 [XNIO-1 task-1] 9lNaHhuATbmQd_G-WgqggA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.244 [XNIO-1 task-1] qwXLRFjxRx2X_rE2XgXizA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.244 [XNIO-1 task-1] qwXLRFjxRx2X_rE2XgXizA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.244 [XNIO-1 task-1] qwXLRFjxRx2X_rE2XgXizA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.244 [XNIO-1 task-1] qwXLRFjxRx2X_rE2XgXizA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.245 [XNIO-1 task-1] qwXLRFjxRx2X_rE2XgXizA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.246 [XNIO-1 task-1] qwXLRFjxRx2X_rE2XgXizA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.248 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.248 [XNIO-1 task-1] lnK5YwCkTnmmzT3ZYUhEvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.248 [XNIO-1 task-1] lnK5YwCkTnmmzT3ZYUhEvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.248 [XNIO-1 task-1] lnK5YwCkTnmmzT3ZYUhEvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.248 [XNIO-1 task-1] lnK5YwCkTnmmzT3ZYUhEvA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.248 [XNIO-1 task-1] lnK5YwCkTnmmzT3ZYUhEvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.250 [XNIO-1 task-1] QG2KHM5iSia0GOEaN2Zr0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.250 [XNIO-1 task-1] QG2KHM5iSia0GOEaN2Zr0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.250 [XNIO-1 task-1] QG2KHM5iSia0GOEaN2Zr0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.251 [XNIO-1 task-1] QG2KHM5iSia0GOEaN2Zr0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.255 [XNIO-1 task-1] HPiuXPxESRyv4jHnhbRsbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.255 [XNIO-1 task-1] HPiuXPxESRyv4jHnhbRsbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.255 [XNIO-1 task-1] HPiuXPxESRyv4jHnhbRsbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.255 [XNIO-1 task-1] HPiuXPxESRyv4jHnhbRsbw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.255 [XNIO-1 task-1] HPiuXPxESRyv4jHnhbRsbw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.261 [XNIO-1 task-1] DUyCgxwQRo60SNvrWefBMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.261 [XNIO-1 task-1] DUyCgxwQRo60SNvrWefBMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.262 [XNIO-1 task-1] DUyCgxwQRo60SNvrWefBMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.262 [XNIO-1 task-1] DUyCgxwQRo60SNvrWefBMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.265 [XNIO-1 task-1] yCsb6DE8QgOeXGd2_V811w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.265 [XNIO-1 task-1] yCsb6DE8QgOeXGd2_V811w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.265 [XNIO-1 task-1] yCsb6DE8QgOeXGd2_V811w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.265 [XNIO-1 task-1] yCsb6DE8QgOeXGd2_V811w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.265 [XNIO-1 task-1] yCsb6DE8QgOeXGd2_V811w DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.266 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.268 [XNIO-1 task-1] nmYzKBhISrSN7co1MQ_vVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.268 [XNIO-1 task-1] nmYzKBhISrSN7co1MQ_vVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.268 [XNIO-1 task-1] nmYzKBhISrSN7co1MQ_vVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.268 [XNIO-1 task-1] nmYzKBhISrSN7co1MQ_vVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.268 [XNIO-1 task-1] nmYzKBhISrSN7co1MQ_vVg DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.269 [XNIO-1 task-1] nmYzKBhISrSN7co1MQ_vVg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.270 [XNIO-1 task-1] ROaJH235QrW0wYLfRK7_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.270 [XNIO-1 task-1] ROaJH235QrW0wYLfRK7_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.271 [XNIO-1 task-1] ROaJH235QrW0wYLfRK7_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.271 [XNIO-1 task-1] ROaJH235QrW0wYLfRK7_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.271 [XNIO-1 task-1] ROaJH235QrW0wYLfRK7_Qw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.272 [XNIO-1 task-1] ROaJH235QrW0wYLfRK7_Qw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.274 [XNIO-1 task-1] TJbM4zVdRWys2KL-CamZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.274 [XNIO-1 task-1] TJbM4zVdRWys2KL-CamZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.274 [XNIO-1 task-1] TJbM4zVdRWys2KL-CamZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.274 [XNIO-1 task-1] TJbM4zVdRWys2KL-CamZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.274 [XNIO-1 task-1] TJbM4zVdRWys2KL-CamZcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.275 [XNIO-1 task-1] TJbM4zVdRWys2KL-CamZcA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.277 [XNIO-1 task-1] j3EzY8PnSVKnysVB-Sl92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.277 [XNIO-1 task-1] j3EzY8PnSVKnysVB-Sl92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.277 [XNIO-1 task-1] j3EzY8PnSVKnysVB-Sl92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.277 [XNIO-1 task-1] j3EzY8PnSVKnysVB-Sl92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.277 [XNIO-1 task-1] j3EzY8PnSVKnysVB-Sl92A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.279 [XNIO-1 task-1] X2a4qz7MTo6_jNeUkOKZgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.279 [XNIO-1 task-1] X2a4qz7MTo6_jNeUkOKZgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.279 [XNIO-1 task-1] X2a4qz7MTo6_jNeUkOKZgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.279 [XNIO-1 task-1] X2a4qz7MTo6_jNeUkOKZgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.279 [XNIO-1 task-1] X2a4qz7MTo6_jNeUkOKZgA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.281 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.283 [XNIO-1 task-1] hECGBIoISoaUEnXhlPuZzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.283 [XNIO-1 task-1] hECGBIoISoaUEnXhlPuZzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.283 [XNIO-1 task-1] hECGBIoISoaUEnXhlPuZzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.283 [XNIO-1 task-1] hECGBIoISoaUEnXhlPuZzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.287 [XNIO-1 task-1] q0_y3cJMTT-6OnmYgOnPhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.287 [XNIO-1 task-1] q0_y3cJMTT-6OnmYgOnPhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.288 [XNIO-1 task-1] q0_y3cJMTT-6OnmYgOnPhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.288 [XNIO-1 task-1] q0_y3cJMTT-6OnmYgOnPhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.288 [XNIO-1 task-1] q0_y3cJMTT-6OnmYgOnPhw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.288 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.290 [XNIO-1 task-1] oYbQpQiZQp65AIbsBQ6k1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.291 [XNIO-1 task-1] oYbQpQiZQp65AIbsBQ6k1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.291 [XNIO-1 task-1] oYbQpQiZQp65AIbsBQ6k1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.291 [XNIO-1 task-1] oYbQpQiZQp65AIbsBQ6k1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.291 [XNIO-1 task-1] oYbQpQiZQp65AIbsBQ6k1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.291 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.294 [XNIO-1 task-1] ODGJkVWZTdqEQgxtd8JRDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.294 [XNIO-1 task-1] ODGJkVWZTdqEQgxtd8JRDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.294 [XNIO-1 task-1] ODGJkVWZTdqEQgxtd8JRDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.294 [XNIO-1 task-1] ODGJkVWZTdqEQgxtd8JRDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.294 [XNIO-1 task-1] ODGJkVWZTdqEQgxtd8JRDA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.297 [XNIO-1 task-1] J2WhxJzaTNu3KKVKIgqvjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.297 [XNIO-1 task-1] J2WhxJzaTNu3KKVKIgqvjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.298 [XNIO-1 task-1] J2WhxJzaTNu3KKVKIgqvjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.298 [XNIO-1 task-1] J2WhxJzaTNu3KKVKIgqvjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.298 [XNIO-1 task-1] J2WhxJzaTNu3KKVKIgqvjg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.301 [XNIO-1 task-1] TMGU7z4bTM2g1gV0sAk0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.301 [XNIO-1 task-1] TMGU7z4bTM2g1gV0sAk0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.301 [XNIO-1 task-1] TMGU7z4bTM2g1gV0sAk0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.301 [XNIO-1 task-1] TMGU7z4bTM2g1gV0sAk0bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.304 [XNIO-1 task-1] 89706LpuTHWa20KzFY90XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.304 [XNIO-1 task-1] 89706LpuTHWa20KzFY90XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.304 [XNIO-1 task-1] 89706LpuTHWa20KzFY90XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.304 [XNIO-1 task-1] 89706LpuTHWa20KzFY90XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.304 [XNIO-1 task-1] 89706LpuTHWa20KzFY90XA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.305 [XNIO-1 task-1] 89706LpuTHWa20KzFY90XA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.306 [XNIO-1 task-1] 8uD_GyEbSKC_vv7__w1NMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.306 [XNIO-1 task-1] 8uD_GyEbSKC_vv7__w1NMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.306 [XNIO-1 task-1] 8uD_GyEbSKC_vv7__w1NMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.306 [XNIO-1 task-1] 8uD_GyEbSKC_vv7__w1NMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.309 [XNIO-1 task-1] HZAb5FqPQ0--77m32VP6Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.310 [XNIO-1 task-1] HZAb5FqPQ0--77m32VP6Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.310 [XNIO-1 task-1] HZAb5FqPQ0--77m32VP6Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.310 [XNIO-1 task-1] HZAb5FqPQ0--77m32VP6Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.310 [XNIO-1 task-1] HZAb5FqPQ0--77m32VP6Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.310 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.312 [XNIO-1 task-1] TaMGXvzJQlOZaz_7PCitIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.312 [XNIO-1 task-1] TaMGXvzJQlOZaz_7PCitIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.312 [XNIO-1 task-1] TaMGXvzJQlOZaz_7PCitIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.313 [XNIO-1 task-1] TaMGXvzJQlOZaz_7PCitIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.313 [XNIO-1 task-1] TaMGXvzJQlOZaz_7PCitIw DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.313 [XNIO-1 task-1] TaMGXvzJQlOZaz_7PCitIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.314 [XNIO-1 task-1] y7j_qYnwQei58JLI_ZHgVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.314 [XNIO-1 task-1] y7j_qYnwQei58JLI_ZHgVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.314 [XNIO-1 task-1] y7j_qYnwQei58JLI_ZHgVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.315 [XNIO-1 task-1] y7j_qYnwQei58JLI_ZHgVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.317 [XNIO-1 task-1] 2UUa2ZyVTmGbShyHwuwTdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.317 [XNIO-1 task-1] 2UUa2ZyVTmGbShyHwuwTdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.317 [XNIO-1 task-1] 2UUa2ZyVTmGbShyHwuwTdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.317 [XNIO-1 task-1] 2UUa2ZyVTmGbShyHwuwTdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.317 [XNIO-1 task-1] 2UUa2ZyVTmGbShyHwuwTdw DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.317 [XNIO-1 task-1] 2UUa2ZyVTmGbShyHwuwTdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.319 [XNIO-1 task-1] meASPAsvQCaA2f6jJBCDgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.319 [XNIO-1 task-1] meASPAsvQCaA2f6jJBCDgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.319 [XNIO-1 task-1] meASPAsvQCaA2f6jJBCDgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.319 [XNIO-1 task-1] meASPAsvQCaA2f6jJBCDgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.322 [XNIO-1 task-1] pwyh7kXvS0eBy8iwU_WEGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.322 [XNIO-1 task-1] pwyh7kXvS0eBy8iwU_WEGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.322 [XNIO-1 task-1] pwyh7kXvS0eBy8iwU_WEGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.322 [XNIO-1 task-1] pwyh7kXvS0eBy8iwU_WEGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.322 [XNIO-1 task-1] pwyh7kXvS0eBy8iwU_WEGA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.323 [XNIO-1 task-1] pwyh7kXvS0eBy8iwU_WEGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.325 [XNIO-1 task-1] FxPqkYKMSX21Ddvm5SL8Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.325 [XNIO-1 task-1] FxPqkYKMSX21Ddvm5SL8Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.325 [XNIO-1 task-1] FxPqkYKMSX21Ddvm5SL8Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.325 [XNIO-1 task-1] FxPqkYKMSX21Ddvm5SL8Yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.328 [XNIO-1 task-1] B59WreFqT860pPx-sIZjGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.328 [XNIO-1 task-1] B59WreFqT860pPx-sIZjGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.328 [XNIO-1 task-1] B59WreFqT860pPx-sIZjGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.328 [XNIO-1 task-1] B59WreFqT860pPx-sIZjGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.329 [XNIO-1 task-1] B59WreFqT860pPx-sIZjGw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.331 [XNIO-1 task-1] jrtBLko4SLmO5AS52pw0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.331 [XNIO-1 task-1] jrtBLko4SLmO5AS52pw0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.331 [XNIO-1 task-1] jrtBLko4SLmO5AS52pw0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.331 [XNIO-1 task-1] jrtBLko4SLmO5AS52pw0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.331 [XNIO-1 task-1] jrtBLko4SLmO5AS52pw0VQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.333 [XNIO-1 task-1] YVIAYDZvSaWMv1rpgr1O7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.333 [XNIO-1 task-1] YVIAYDZvSaWMv1rpgr1O7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.333 [XNIO-1 task-1] YVIAYDZvSaWMv1rpgr1O7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.333 [XNIO-1 task-1] YVIAYDZvSaWMv1rpgr1O7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.333 [XNIO-1 task-1] YVIAYDZvSaWMv1rpgr1O7w DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.333 [XNIO-1 task-1] YVIAYDZvSaWMv1rpgr1O7w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.334 [XNIO-1 task-1] bd3sBzh4SPav7KLJ_QVjCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.335 [XNIO-1 task-1] bd3sBzh4SPav7KLJ_QVjCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.335 [XNIO-1 task-1] bd3sBzh4SPav7KLJ_QVjCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.335 [XNIO-1 task-1] bd3sBzh4SPav7KLJ_QVjCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.335 [XNIO-1 task-1] bd3sBzh4SPav7KLJ_QVjCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.336 [XNIO-1 task-1] vvYZa0Z2RnKUrQOY1XVRdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.336 [XNIO-1 task-1] vvYZa0Z2RnKUrQOY1XVRdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.336 [XNIO-1 task-1] vvYZa0Z2RnKUrQOY1XVRdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.336 [XNIO-1 task-1] vvYZa0Z2RnKUrQOY1XVRdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.337 [XNIO-1 task-1] vvYZa0Z2RnKUrQOY1XVRdw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.339 [XNIO-1 task-1] 66-bZ5baQ7aq2AeQ6hErKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.339 [XNIO-1 task-1] 66-bZ5baQ7aq2AeQ6hErKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.339 [XNIO-1 task-1] 66-bZ5baQ7aq2AeQ6hErKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.340 [XNIO-1 task-1] 66-bZ5baQ7aq2AeQ6hErKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.340 [XNIO-1 task-1] 66-bZ5baQ7aq2AeQ6hErKw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.341 [XNIO-1 task-1] pBX3bawcQ7eiQAZiBYr2tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.341 [XNIO-1 task-1] pBX3bawcQ7eiQAZiBYr2tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.341 [XNIO-1 task-1] pBX3bawcQ7eiQAZiBYr2tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.341 [XNIO-1 task-1] pBX3bawcQ7eiQAZiBYr2tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.341 [XNIO-1 task-1] pBX3bawcQ7eiQAZiBYr2tQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.344 [XNIO-1 task-1] ASmSPY6zQeuJpwNuMTOc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.344 [XNIO-1 task-1] ASmSPY6zQeuJpwNuMTOc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.344 [XNIO-1 task-1] ASmSPY6zQeuJpwNuMTOc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.345 [XNIO-1 task-1] ASmSPY6zQeuJpwNuMTOc8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.347 [XNIO-1 task-1] 72Pjr_noQduXUrAlXiC03g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.347 [XNIO-1 task-1] 72Pjr_noQduXUrAlXiC03g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.347 [XNIO-1 task-1] 72Pjr_noQduXUrAlXiC03g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.347 [XNIO-1 task-1] 72Pjr_noQduXUrAlXiC03g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.348 [XNIO-1 task-1] 72Pjr_noQduXUrAlXiC03g DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.348 [XNIO-1 task-1] 72Pjr_noQduXUrAlXiC03g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.349 [XNIO-1 task-1] g-vn_Xz1QXSPrEutdKrnyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.349 [XNIO-1 task-1] g-vn_Xz1QXSPrEutdKrnyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.349 [XNIO-1 task-1] g-vn_Xz1QXSPrEutdKrnyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.349 [XNIO-1 task-1] g-vn_Xz1QXSPrEutdKrnyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.349 [XNIO-1 task-1] g-vn_Xz1QXSPrEutdKrnyA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.351 [XNIO-1 task-1] kEHwgeqNTV6Oh4rc_xS6Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.351 [XNIO-1 task-1] kEHwgeqNTV6Oh4rc_xS6Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.351 [XNIO-1 task-1] kEHwgeqNTV6Oh4rc_xS6Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.351 [XNIO-1 task-1] kEHwgeqNTV6Oh4rc_xS6Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.351 [XNIO-1 task-1] kEHwgeqNTV6Oh4rc_xS6Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.351 [XNIO-1 task-1] kEHwgeqNTV6Oh4rc_xS6Sg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.353 [XNIO-1 task-1] FRqUfujaRoSQZ6QFNHootA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.353 [XNIO-1 task-1] FRqUfujaRoSQZ6QFNHootA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.353 [XNIO-1 task-1] FRqUfujaRoSQZ6QFNHootA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.353 [XNIO-1 task-1] FRqUfujaRoSQZ6QFNHootA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.353 [XNIO-1 task-1] FRqUfujaRoSQZ6QFNHootA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.354 [XNIO-1 task-1] PL5Pqys0S9yopp8rG8dmOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.354 [XNIO-1 task-1] PL5Pqys0S9yopp8rG8dmOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.354 [XNIO-1 task-1] PL5Pqys0S9yopp8rG8dmOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.355 [XNIO-1 task-1] PL5Pqys0S9yopp8rG8dmOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.355 [XNIO-1 task-1] PL5Pqys0S9yopp8rG8dmOg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.358 [XNIO-1 task-1] w5f6YlYyQBKsHzzmkqKn6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.358 [XNIO-1 task-1] w5f6YlYyQBKsHzzmkqKn6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.358 [XNIO-1 task-1] w5f6YlYyQBKsHzzmkqKn6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.358 [XNIO-1 task-1] w5f6YlYyQBKsHzzmkqKn6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.362 [XNIO-1 task-1] -smmA7DRSfGIKjsxa7JhuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.362 [XNIO-1 task-1] -smmA7DRSfGIKjsxa7JhuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.362 [XNIO-1 task-1] -smmA7DRSfGIKjsxa7JhuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.362 [XNIO-1 task-1] -smmA7DRSfGIKjsxa7JhuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.363 [XNIO-1 task-1] -smmA7DRSfGIKjsxa7JhuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.363 [XNIO-1 task-1] -smmA7DRSfGIKjsxa7JhuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.364 [XNIO-1 task-1] 74ZHAFrDSdCGw1yJe3SwiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.364 [XNIO-1 task-1] 74ZHAFrDSdCGw1yJe3SwiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.365 [XNIO-1 task-1] 74ZHAFrDSdCGw1yJe3SwiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.365 [XNIO-1 task-1] 74ZHAFrDSdCGw1yJe3SwiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.365 [XNIO-1 task-1] 74ZHAFrDSdCGw1yJe3SwiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.366 [XNIO-1 task-1] PtKggwAjT8ixI8jHVTYwEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.366 [XNIO-1 task-1] PtKggwAjT8ixI8jHVTYwEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.366 [XNIO-1 task-1] PtKggwAjT8ixI8jHVTYwEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.367 [XNIO-1 task-1] PtKggwAjT8ixI8jHVTYwEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.367 [XNIO-1 task-1] PtKggwAjT8ixI8jHVTYwEw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.369 [XNIO-1 task-1] mEw84SNDSjGd8dheRV7ktw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.369 [XNIO-1 task-1] mEw84SNDSjGd8dheRV7ktw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.369 [XNIO-1 task-1] mEw84SNDSjGd8dheRV7ktw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.370 [XNIO-1 task-1] mEw84SNDSjGd8dheRV7ktw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.374 [XNIO-1 task-1] 2X_Y2YpMSW6Rmq2uZOVqmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.374 [XNIO-1 task-1] 2X_Y2YpMSW6Rmq2uZOVqmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.375 [XNIO-1 task-1] 2X_Y2YpMSW6Rmq2uZOVqmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.375 [XNIO-1 task-1] 2X_Y2YpMSW6Rmq2uZOVqmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.375 [XNIO-1 task-1] 2X_Y2YpMSW6Rmq2uZOVqmw DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.375 [XNIO-1 task-1] 2X_Y2YpMSW6Rmq2uZOVqmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.377 [XNIO-1 task-1] XS8BQ8rOTmupaEW7TBx-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.377 [XNIO-1 task-1] XS8BQ8rOTmupaEW7TBx-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.377 [XNIO-1 task-1] XS8BQ8rOTmupaEW7TBx-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.377 [XNIO-1 task-1] XS8BQ8rOTmupaEW7TBx-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.377 [XNIO-1 task-1] XS8BQ8rOTmupaEW7TBx-kg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.378 [XNIO-1 task-1] XS8BQ8rOTmupaEW7TBx-kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.380 [XNIO-1 task-1] Jq_D1sNlQoqgpnG5AYnciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.380 [XNIO-1 task-1] Jq_D1sNlQoqgpnG5AYnciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.380 [XNIO-1 task-1] Jq_D1sNlQoqgpnG5AYnciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.380 [XNIO-1 task-1] Jq_D1sNlQoqgpnG5AYnciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.380 [XNIO-1 task-1] Jq_D1sNlQoqgpnG5AYnciA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.382 [XNIO-1 task-1] OqoGJUbPQ0aIgdbDU-4dpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.382 [XNIO-1 task-1] OqoGJUbPQ0aIgdbDU-4dpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.382 [XNIO-1 task-1] OqoGJUbPQ0aIgdbDU-4dpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.382 [XNIO-1 task-1] OqoGJUbPQ0aIgdbDU-4dpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.382 [XNIO-1 task-1] OqoGJUbPQ0aIgdbDU-4dpw DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.382 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.385 [XNIO-1 task-1] pyHwsH0nSwGfAC1-gLQ_hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.385 [XNIO-1 task-1] pyHwsH0nSwGfAC1-gLQ_hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.385 [XNIO-1 task-1] pyHwsH0nSwGfAC1-gLQ_hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.385 [XNIO-1 task-1] pyHwsH0nSwGfAC1-gLQ_hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.385 [XNIO-1 task-1] pyHwsH0nSwGfAC1-gLQ_hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.385 [XNIO-1 task-1] pyHwsH0nSwGfAC1-gLQ_hQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.387 [XNIO-1 task-1] iOPh6mZMSRWx-Y6f2yN4BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.387 [XNIO-1 task-1] iOPh6mZMSRWx-Y6f2yN4BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.387 [XNIO-1 task-1] iOPh6mZMSRWx-Y6f2yN4BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.387 [XNIO-1 task-1] iOPh6mZMSRWx-Y6f2yN4BQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.390 [XNIO-1 task-1] wZnWuhNOQGSZXXnfSb1Sng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.390 [XNIO-1 task-1] wZnWuhNOQGSZXXnfSb1Sng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.390 [XNIO-1 task-1] wZnWuhNOQGSZXXnfSb1Sng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.390 [XNIO-1 task-1] wZnWuhNOQGSZXXnfSb1Sng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.390 [XNIO-1 task-1] wZnWuhNOQGSZXXnfSb1Sng DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.391 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.393 [XNIO-1 task-1] jEqpD1Q3R9apimra3pUggw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.393 [XNIO-1 task-1] jEqpD1Q3R9apimra3pUggw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.393 [XNIO-1 task-1] jEqpD1Q3R9apimra3pUggw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.393 [XNIO-1 task-1] jEqpD1Q3R9apimra3pUggw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.394 [XNIO-1 task-1] jEqpD1Q3R9apimra3pUggw DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.394 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.396 [XNIO-1 task-1] 9AZBJzwoQnKEXWRcP7f8nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.396 [XNIO-1 task-1] 9AZBJzwoQnKEXWRcP7f8nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.396 [XNIO-1 task-1] 9AZBJzwoQnKEXWRcP7f8nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.396 [XNIO-1 task-1] 9AZBJzwoQnKEXWRcP7f8nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.397 [XNIO-1 task-1] 9AZBJzwoQnKEXWRcP7f8nA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.397 [XNIO-1 task-1] 9AZBJzwoQnKEXWRcP7f8nA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.398 [XNIO-1 task-1] 3CTfMw_RQgeOz4_7-QF-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.398 [XNIO-1 task-1] 3CTfMw_RQgeOz4_7-QF-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.398 [XNIO-1 task-1] 3CTfMw_RQgeOz4_7-QF-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.399 [XNIO-1 task-1] 3CTfMw_RQgeOz4_7-QF-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.399 [XNIO-1 task-1] 3CTfMw_RQgeOz4_7-QF-wQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.399 [XNIO-1 task-1] 3CTfMw_RQgeOz4_7-QF-wQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.401 [XNIO-1 task-1] JJiZo6fVRt2ftu4w2XenXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.401 [XNIO-1 task-1] JJiZo6fVRt2ftu4w2XenXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.401 [XNIO-1 task-1] JJiZo6fVRt2ftu4w2XenXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.401 [XNIO-1 task-1] JJiZo6fVRt2ftu4w2XenXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.405 [XNIO-1 task-1] ypnM5PkOSMWM1KuA_4Nj7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.405 [XNIO-1 task-1] ypnM5PkOSMWM1KuA_4Nj7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.405 [XNIO-1 task-1] ypnM5PkOSMWM1KuA_4Nj7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.405 [XNIO-1 task-1] ypnM5PkOSMWM1KuA_4Nj7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.405 [XNIO-1 task-1] ypnM5PkOSMWM1KuA_4Nj7A DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.405 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.408 [XNIO-1 task-1] 8bmuYn-3SKOZxhH7k1-r9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.408 [XNIO-1 task-1] 8bmuYn-3SKOZxhH7k1-r9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.408 [XNIO-1 task-1] 8bmuYn-3SKOZxhH7k1-r9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.408 [XNIO-1 task-1] 8bmuYn-3SKOZxhH7k1-r9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.408 [XNIO-1 task-1] 8bmuYn-3SKOZxhH7k1-r9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.408 [XNIO-1 task-1] 8bmuYn-3SKOZxhH7k1-r9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.410 [XNIO-1 task-1] csj6JodZTdqCos_WM0B9uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.410 [XNIO-1 task-1] csj6JodZTdqCos_WM0B9uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.410 [XNIO-1 task-1] csj6JodZTdqCos_WM0B9uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.410 [XNIO-1 task-1] csj6JodZTdqCos_WM0B9uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.413 [XNIO-1 task-1] -703B5ruQ9my3C9m1DfulA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.413 [XNIO-1 task-1] -703B5ruQ9my3C9m1DfulA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.413 [XNIO-1 task-1] -703B5ruQ9my3C9m1DfulA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.414 [XNIO-1 task-1] -703B5ruQ9my3C9m1DfulA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.414 [XNIO-1 task-1] -703B5ruQ9my3C9m1DfulA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.414 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.416 [XNIO-1 task-1] bJuQai6fQ_mfFrnLHmwKSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.417 [XNIO-1 task-1] bJuQai6fQ_mfFrnLHmwKSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.417 [XNIO-1 task-1] bJuQai6fQ_mfFrnLHmwKSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.417 [XNIO-1 task-1] bJuQai6fQ_mfFrnLHmwKSw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.417 [XNIO-1 task-1] bJuQai6fQ_mfFrnLHmwKSw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.420 [XNIO-1 task-1] Y4gJBJLPQYumMFypVTc7Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.420 [XNIO-1 task-1] Y4gJBJLPQYumMFypVTc7Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.420 [XNIO-1 task-1] Y4gJBJLPQYumMFypVTc7Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.420 [XNIO-1 task-1] Y4gJBJLPQYumMFypVTc7Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.423 [XNIO-1 task-1] KPjsTDcZQEmJoflAn8l8yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:00.423 [XNIO-1 task-1] KPjsTDcZQEmJoflAn8l8yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.423 [XNIO-1 task-1] KPjsTDcZQEmJoflAn8l8yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.423 [XNIO-1 task-1] KPjsTDcZQEmJoflAn8l8yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:00.423 [XNIO-1 task-1] KPjsTDcZQEmJoflAn8l8yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c162f18c-1966-42c8-b8e6-e8f7436fad9c", "c162f18c-1966-42c8-b8e6-e8f7436fad9c", refreshToken) +09:03:00.423 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.426 [XNIO-1 task-1] sTIa8WcjSW6t13ydwTg_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.426 [XNIO-1 task-1] sTIa8WcjSW6t13ydwTg_QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.426 [XNIO-1 task-1] sTIa8WcjSW6t13ydwTg_QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.426 [XNIO-1 task-1] sTIa8WcjSW6t13ydwTg_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.426 [XNIO-1 task-1] sTIa8WcjSW6t13ydwTg_QA DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.426 [XNIO-1 task-1] sTIa8WcjSW6t13ydwTg_QA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.428 [XNIO-1 task-1] gl-oxDPAS-e0t3FkAH6eNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.428 [XNIO-1 task-1] gl-oxDPAS-e0t3FkAH6eNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.428 [XNIO-1 task-1] gl-oxDPAS-e0t3FkAH6eNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.428 [XNIO-1 task-1] gl-oxDPAS-e0t3FkAH6eNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.428 [XNIO-1 task-1] gl-oxDPAS-e0t3FkAH6eNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.430 [XNIO-1 task-1] M0FlILZNR4KTZD4rYASmtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.430 [XNIO-1 task-1] M0FlILZNR4KTZD4rYASmtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.430 [XNIO-1 task-1] M0FlILZNR4KTZD4rYASmtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.430 [XNIO-1 task-1] M0FlILZNR4KTZD4rYASmtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.430 [XNIO-1 task-1] M0FlILZNR4KTZD4rYASmtA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.433 [XNIO-1 task-1] E6RZHkdEQZCjCMwYd8tb0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.433 [XNIO-1 task-1] E6RZHkdEQZCjCMwYd8tb0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.433 [XNIO-1 task-1] E6RZHkdEQZCjCMwYd8tb0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.433 [XNIO-1 task-1] E6RZHkdEQZCjCMwYd8tb0g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.436 [XNIO-1 task-1] 15S5hSDeR5Ock84K41GZdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.436 [XNIO-1 task-1] 15S5hSDeR5Ock84K41GZdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.436 [XNIO-1 task-1] 15S5hSDeR5Ock84K41GZdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.436 [XNIO-1 task-1] 15S5hSDeR5Ock84K41GZdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.437 [XNIO-1 task-1] 15S5hSDeR5Ock84K41GZdg DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.437 [XNIO-1 task-1] 15S5hSDeR5Ock84K41GZdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.438 [XNIO-1 task-1] _uZ1uOwsSduN5mCoJm69dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.438 [XNIO-1 task-1] _uZ1uOwsSduN5mCoJm69dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.439 [XNIO-1 task-1] _uZ1uOwsSduN5mCoJm69dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.439 [XNIO-1 task-1] _uZ1uOwsSduN5mCoJm69dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.439 [XNIO-1 task-1] _uZ1uOwsSduN5mCoJm69dg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.440 [XNIO-1 task-1] NDS-BXZZTGmkWOuJtsCDew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.440 [XNIO-1 task-1] NDS-BXZZTGmkWOuJtsCDew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.441 [XNIO-1 task-1] NDS-BXZZTGmkWOuJtsCDew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.441 [XNIO-1 task-1] NDS-BXZZTGmkWOuJtsCDew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.441 [XNIO-1 task-1] NDS-BXZZTGmkWOuJtsCDew DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.441 [XNIO-1 task-1] NDS-BXZZTGmkWOuJtsCDew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.443 [XNIO-1 task-1] ACFZwIqYTJO1mWDE6ei6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.444 [XNIO-1 task-1] ACFZwIqYTJO1mWDE6ei6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.444 [XNIO-1 task-1] ACFZwIqYTJO1mWDE6ei6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.444 [XNIO-1 task-1] ACFZwIqYTJO1mWDE6ei6aQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.449 [XNIO-1 task-1] XsHeVTY3QCWgRIlkl_EyCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.449 [XNIO-1 task-1] XsHeVTY3QCWgRIlkl_EyCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.449 [XNIO-1 task-1] XsHeVTY3QCWgRIlkl_EyCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.449 [XNIO-1 task-1] XsHeVTY3QCWgRIlkl_EyCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.449 [XNIO-1 task-1] XsHeVTY3QCWgRIlkl_EyCA DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.449 [XNIO-1 task-1] XsHeVTY3QCWgRIlkl_EyCA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.451 [XNIO-1 task-1] DNJMjeBQTJ-lsCjSU1paUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.451 [XNIO-1 task-1] DNJMjeBQTJ-lsCjSU1paUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.451 [XNIO-1 task-1] DNJMjeBQTJ-lsCjSU1paUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.451 [XNIO-1 task-1] DNJMjeBQTJ-lsCjSU1paUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.451 [XNIO-1 task-1] DNJMjeBQTJ-lsCjSU1paUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.453 [XNIO-1 task-1] XFJI84ahQFOwkFkH7ql_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.453 [XNIO-1 task-1] XFJI84ahQFOwkFkH7ql_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.453 [XNIO-1 task-1] XFJI84ahQFOwkFkH7ql_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.453 [XNIO-1 task-1] XFJI84ahQFOwkFkH7ql_iA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.453 [XNIO-1 task-1] XFJI84ahQFOwkFkH7ql_iA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.456 [XNIO-1 task-1] VSW4TNyBTfCy6w4cNB1JYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.456 [XNIO-1 task-1] VSW4TNyBTfCy6w4cNB1JYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.457 [XNIO-1 task-1] VSW4TNyBTfCy6w4cNB1JYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.457 [XNIO-1 task-1] VSW4TNyBTfCy6w4cNB1JYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.460 [XNIO-1 task-1] PbSG_D06ToqqeKY4MwLj2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.460 [XNIO-1 task-1] PbSG_D06ToqqeKY4MwLj2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.460 [XNIO-1 task-1] PbSG_D06ToqqeKY4MwLj2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.460 [XNIO-1 task-1] PbSG_D06ToqqeKY4MwLj2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.460 [XNIO-1 task-1] PbSG_D06ToqqeKY4MwLj2w DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.460 [XNIO-1 task-1] PbSG_D06ToqqeKY4MwLj2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.462 [XNIO-1 task-1] TOwUPYgrTAu8ulV3RDquag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.462 [XNIO-1 task-1] TOwUPYgrTAu8ulV3RDquag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.462 [XNIO-1 task-1] TOwUPYgrTAu8ulV3RDquag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.462 [XNIO-1 task-1] TOwUPYgrTAu8ulV3RDquag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.466 [XNIO-1 task-1] UBm8aOv7SJKu1-0TxjGMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.466 [XNIO-1 task-1] UBm8aOv7SJKu1-0TxjGMyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.466 [XNIO-1 task-1] UBm8aOv7SJKu1-0TxjGMyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.466 [XNIO-1 task-1] UBm8aOv7SJKu1-0TxjGMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.466 [XNIO-1 task-1] UBm8aOv7SJKu1-0TxjGMyA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.466 [XNIO-1 task-1] UBm8aOv7SJKu1-0TxjGMyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.468 [XNIO-1 task-1] vewUfBRjSMu3tpmG2-rfDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.468 [XNIO-1 task-1] vewUfBRjSMu3tpmG2-rfDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.468 [XNIO-1 task-1] vewUfBRjSMu3tpmG2-rfDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.468 [XNIO-1 task-1] vewUfBRjSMu3tpmG2-rfDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.468 [XNIO-1 task-1] vewUfBRjSMu3tpmG2-rfDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.470 [XNIO-1 task-1] 19bs4jZxQdi0H1ZJHx3LPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.470 [XNIO-1 task-1] 19bs4jZxQdi0H1ZJHx3LPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.470 [XNIO-1 task-1] 19bs4jZxQdi0H1ZJHx3LPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.470 [XNIO-1 task-1] 19bs4jZxQdi0H1ZJHx3LPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.470 [XNIO-1 task-1] 19bs4jZxQdi0H1ZJHx3LPA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.470 [XNIO-1 task-1] 19bs4jZxQdi0H1ZJHx3LPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.472 [XNIO-1 task-1] k27a7oKQSmGB3uKQG418JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.472 [XNIO-1 task-1] k27a7oKQSmGB3uKQG418JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.472 [XNIO-1 task-1] k27a7oKQSmGB3uKQG418JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.472 [XNIO-1 task-1] k27a7oKQSmGB3uKQG418JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.472 [XNIO-1 task-1] k27a7oKQSmGB3uKQG418JQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.474 [XNIO-1 task-1] fJgfCchvRdC0zYX6QxLsUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.474 [XNIO-1 task-1] fJgfCchvRdC0zYX6QxLsUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.474 [XNIO-1 task-1] fJgfCchvRdC0zYX6QxLsUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.474 [XNIO-1 task-1] fJgfCchvRdC0zYX6QxLsUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.474 [XNIO-1 task-1] fJgfCchvRdC0zYX6QxLsUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.477 [XNIO-1 task-1] dXbu1irlSnm6w3WXZ8_Cxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.478 [XNIO-1 task-1] dXbu1irlSnm6w3WXZ8_Cxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.478 [XNIO-1 task-1] dXbu1irlSnm6w3WXZ8_Cxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.478 [XNIO-1 task-1] dXbu1irlSnm6w3WXZ8_Cxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.478 [XNIO-1 task-1] dXbu1irlSnm6w3WXZ8_Cxw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.479 [XNIO-1 task-1] 4xULRpLJSdSgY0w5UF1yIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.479 [XNIO-1 task-1] 4xULRpLJSdSgY0w5UF1yIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.480 [XNIO-1 task-1] 4xULRpLJSdSgY0w5UF1yIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.480 [XNIO-1 task-1] 4xULRpLJSdSgY0w5UF1yIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.480 [XNIO-1 task-1] 4xULRpLJSdSgY0w5UF1yIw DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.480 [XNIO-1 task-1] 4xULRpLJSdSgY0w5UF1yIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.481 [XNIO-1 task-1] 4vR1n-fwT_SJionTI20d7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.481 [XNIO-1 task-1] 4vR1n-fwT_SJionTI20d7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.481 [XNIO-1 task-1] 4vR1n-fwT_SJionTI20d7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.482 [XNIO-1 task-1] 4vR1n-fwT_SJionTI20d7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.482 [XNIO-1 task-1] 4vR1n-fwT_SJionTI20d7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.482 [XNIO-1 task-1] 4vR1n-fwT_SJionTI20d7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.484 [XNIO-1 task-1] UqpHEvDaTA66AF97hhHukA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.484 [XNIO-1 task-1] UqpHEvDaTA66AF97hhHukA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.485 [XNIO-1 task-1] UqpHEvDaTA66AF97hhHukA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.485 [XNIO-1 task-1] UqpHEvDaTA66AF97hhHukA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.485 [XNIO-1 task-1] UqpHEvDaTA66AF97hhHukA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.486 [XNIO-1 task-1] s-9QcmtMT8-oPjsogncF6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.487 [XNIO-1 task-1] s-9QcmtMT8-oPjsogncF6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.487 [XNIO-1 task-1] s-9QcmtMT8-oPjsogncF6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.487 [XNIO-1 task-1] s-9QcmtMT8-oPjsogncF6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.487 [XNIO-1 task-1] s-9QcmtMT8-oPjsogncF6w DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.487 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.490 [XNIO-1 task-1] Sel7160BSb2NmrByxQw4QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.490 [XNIO-1 task-1] Sel7160BSb2NmrByxQw4QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.490 [XNIO-1 task-1] Sel7160BSb2NmrByxQw4QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.490 [XNIO-1 task-1] Sel7160BSb2NmrByxQw4QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.490 [XNIO-1 task-1] Sel7160BSb2NmrByxQw4QA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.490 [XNIO-1 task-1] Sel7160BSb2NmrByxQw4QA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.492 [XNIO-1 task-1] 1QAkr0GBQteyOJMhkZRVlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.492 [XNIO-1 task-1] 1QAkr0GBQteyOJMhkZRVlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.492 [XNIO-1 task-1] 1QAkr0GBQteyOJMhkZRVlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.492 [XNIO-1 task-1] 1QAkr0GBQteyOJMhkZRVlQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.496 [XNIO-1 task-1] eQP4zHmtT-61-8iws04Jog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.496 [XNIO-1 task-1] eQP4zHmtT-61-8iws04Jog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.496 [XNIO-1 task-1] eQP4zHmtT-61-8iws04Jog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.496 [XNIO-1 task-1] eQP4zHmtT-61-8iws04Jog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.496 [XNIO-1 task-1] eQP4zHmtT-61-8iws04Jog DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.499 [XNIO-1 task-1] sPEKFQ6cTZeRctZ-OQ5CNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.499 [XNIO-1 task-1] sPEKFQ6cTZeRctZ-OQ5CNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.499 [XNIO-1 task-1] sPEKFQ6cTZeRctZ-OQ5CNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.499 [XNIO-1 task-1] sPEKFQ6cTZeRctZ-OQ5CNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.499 [XNIO-1 task-1] sPEKFQ6cTZeRctZ-OQ5CNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.500 [XNIO-1 task-1] sPEKFQ6cTZeRctZ-OQ5CNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.502 [XNIO-1 task-1] FKiGznT9R8arYXLPERJSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.503 [XNIO-1 task-1] FKiGznT9R8arYXLPERJSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.503 [XNIO-1 task-1] FKiGznT9R8arYXLPERJSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.503 [XNIO-1 task-1] FKiGznT9R8arYXLPERJSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.503 [XNIO-1 task-1] FKiGznT9R8arYXLPERJSew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.503 [XNIO-1 task-1] FKiGznT9R8arYXLPERJSew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.505 [XNIO-1 task-1] nzsTmFFiSFm4qIkPkYXx0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.505 [XNIO-1 task-1] nzsTmFFiSFm4qIkPkYXx0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.505 [XNIO-1 task-1] nzsTmFFiSFm4qIkPkYXx0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.505 [XNIO-1 task-1] nzsTmFFiSFm4qIkPkYXx0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.505 [XNIO-1 task-1] nzsTmFFiSFm4qIkPkYXx0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.507 [XNIO-1 task-1] 3cTfRM09QLmvVIWj_FSMeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.507 [XNIO-1 task-1] 3cTfRM09QLmvVIWj_FSMeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.507 [XNIO-1 task-1] 3cTfRM09QLmvVIWj_FSMeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.507 [XNIO-1 task-1] 3cTfRM09QLmvVIWj_FSMeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.507 [XNIO-1 task-1] 3cTfRM09QLmvVIWj_FSMeg DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.507 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.510 [XNIO-1 task-1] uBysxbZWSraFA_uKnhh1TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.510 [XNIO-1 task-1] uBysxbZWSraFA_uKnhh1TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.510 [XNIO-1 task-1] uBysxbZWSraFA_uKnhh1TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.510 [XNIO-1 task-1] uBysxbZWSraFA_uKnhh1TA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.510 [XNIO-1 task-1] uBysxbZWSraFA_uKnhh1TA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.513 [XNIO-1 task-1] lSBpqK63QMqU3MIVhMWSsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.513 [XNIO-1 task-1] lSBpqK63QMqU3MIVhMWSsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.513 [XNIO-1 task-1] lSBpqK63QMqU3MIVhMWSsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.513 [XNIO-1 task-1] lSBpqK63QMqU3MIVhMWSsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.513 [XNIO-1 task-1] lSBpqK63QMqU3MIVhMWSsA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.514 [XNIO-1 task-1] lSBpqK63QMqU3MIVhMWSsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.515 [XNIO-1 task-1] BnO-1wVDRZuBT_tRiB7i8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.515 [XNIO-1 task-1] BnO-1wVDRZuBT_tRiB7i8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.515 [XNIO-1 task-1] BnO-1wVDRZuBT_tRiB7i8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.515 [XNIO-1 task-1] BnO-1wVDRZuBT_tRiB7i8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.515 [XNIO-1 task-1] BnO-1wVDRZuBT_tRiB7i8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.517 [XNIO-1 task-1] tDrKsogETFuj0SzGQeLNHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.517 [XNIO-1 task-1] tDrKsogETFuj0SzGQeLNHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.517 [XNIO-1 task-1] tDrKsogETFuj0SzGQeLNHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.517 [XNIO-1 task-1] tDrKsogETFuj0SzGQeLNHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.517 [XNIO-1 task-1] tDrKsogETFuj0SzGQeLNHA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.517 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.519 [XNIO-1 task-1] UQXnTDTCTiK-k9r54zvNpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.520 [XNIO-1 task-1] UQXnTDTCTiK-k9r54zvNpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.520 [XNIO-1 task-1] UQXnTDTCTiK-k9r54zvNpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.520 [XNIO-1 task-1] UQXnTDTCTiK-k9r54zvNpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.520 [XNIO-1 task-1] UQXnTDTCTiK-k9r54zvNpw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.523 [XNIO-1 task-1] SFuFRWgwSRivpxRmW4pITA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.523 [XNIO-1 task-1] SFuFRWgwSRivpxRmW4pITA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.523 [XNIO-1 task-1] SFuFRWgwSRivpxRmW4pITA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.523 [XNIO-1 task-1] SFuFRWgwSRivpxRmW4pITA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.523 [XNIO-1 task-1] SFuFRWgwSRivpxRmW4pITA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.524 [XNIO-1 task-1] SFuFRWgwSRivpxRmW4pITA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c162f18c-1966-42c8-b8e6-e8f7436fad9c is not found.","severity":"ERROR"} +09:03:00.526 [XNIO-1 task-1] y8T7fTBORN2pH-be0G_vHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.526 [XNIO-1 task-1] y8T7fTBORN2pH-be0G_vHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.526 [XNIO-1 task-1] y8T7fTBORN2pH-be0G_vHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.526 [XNIO-1 task-1] y8T7fTBORN2pH-be0G_vHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.526 [XNIO-1 task-1] y8T7fTBORN2pH-be0G_vHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.528 [XNIO-1 task-1] XXRC3_5iS9WPBMLdxguoTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.528 [XNIO-1 task-1] XXRC3_5iS9WPBMLdxguoTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.528 [XNIO-1 task-1] XXRC3_5iS9WPBMLdxguoTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.528 [XNIO-1 task-1] XXRC3_5iS9WPBMLdxguoTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.528 [XNIO-1 task-1] XXRC3_5iS9WPBMLdxguoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.528 [XNIO-1 task-1] XXRC3_5iS9WPBMLdxguoTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.530 [XNIO-1 task-1] cJ5USjXZRP2KnLd8KnvNQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.530 [XNIO-1 task-1] cJ5USjXZRP2KnLd8KnvNQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.530 [XNIO-1 task-1] cJ5USjXZRP2KnLd8KnvNQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.530 [XNIO-1 task-1] cJ5USjXZRP2KnLd8KnvNQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.533 [XNIO-1 task-1] IoMutU5eSaKLQmaEcJKXmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.533 [XNIO-1 task-1] IoMutU5eSaKLQmaEcJKXmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.533 [XNIO-1 task-1] IoMutU5eSaKLQmaEcJKXmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.533 [XNIO-1 task-1] IoMutU5eSaKLQmaEcJKXmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.533 [XNIO-1 task-1] IoMutU5eSaKLQmaEcJKXmg DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.533 [XNIO-1 task-1] IoMutU5eSaKLQmaEcJKXmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.535 [XNIO-1 task-1] 5A57o0XlTyaq0Lx00Kow5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.535 [XNIO-1 task-1] 5A57o0XlTyaq0Lx00Kow5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.535 [XNIO-1 task-1] 5A57o0XlTyaq0Lx00Kow5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.535 [XNIO-1 task-1] 5A57o0XlTyaq0Lx00Kow5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.535 [XNIO-1 task-1] 5A57o0XlTyaq0Lx00Kow5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.537 [XNIO-1 task-1] RxoNv40bSROBf3Z1mBviWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.537 [XNIO-1 task-1] RxoNv40bSROBf3Z1mBviWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.537 [XNIO-1 task-1] RxoNv40bSROBf3Z1mBviWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.537 [XNIO-1 task-1] RxoNv40bSROBf3Z1mBviWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.537 [XNIO-1 task-1] RxoNv40bSROBf3Z1mBviWA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.538 [XNIO-1 task-1] RxoNv40bSROBf3Z1mBviWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.539 [XNIO-1 task-1] azDwOrTpQhe_iw9KvMzOEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.539 [XNIO-1 task-1] azDwOrTpQhe_iw9KvMzOEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.539 [XNIO-1 task-1] azDwOrTpQhe_iw9KvMzOEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.539 [XNIO-1 task-1] azDwOrTpQhe_iw9KvMzOEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.542 [XNIO-1 task-1] rtyz_mC7REqo9y2e76Whgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.542 [XNIO-1 task-1] rtyz_mC7REqo9y2e76Whgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.542 [XNIO-1 task-1] rtyz_mC7REqo9y2e76Whgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.543 [XNIO-1 task-1] rtyz_mC7REqo9y2e76Whgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.543 [XNIO-1 task-1] rtyz_mC7REqo9y2e76Whgw DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.543 [XNIO-1 task-1] rtyz_mC7REqo9y2e76Whgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.544 [XNIO-1 task-1] L5yVV7MNSCu4zvww3-_Scg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.544 [XNIO-1 task-1] L5yVV7MNSCu4zvww3-_Scg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.544 [XNIO-1 task-1] L5yVV7MNSCu4zvww3-_Scg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.545 [XNIO-1 task-1] L5yVV7MNSCu4zvww3-_Scg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.545 [XNIO-1 task-1] L5yVV7MNSCu4zvww3-_Scg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.546 [XNIO-1 task-1] uHUTjimTR0m1CakL03Zqqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.546 [XNIO-1 task-1] uHUTjimTR0m1CakL03Zqqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.546 [XNIO-1 task-1] uHUTjimTR0m1CakL03Zqqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.546 [XNIO-1 task-1] uHUTjimTR0m1CakL03Zqqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.546 [XNIO-1 task-1] uHUTjimTR0m1CakL03Zqqw DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.547 [XNIO-1 task-1] uHUTjimTR0m1CakL03Zqqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.548 [XNIO-1 task-1] MqHL8AgvQbCZT7lPoQkIAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.548 [XNIO-1 task-1] MqHL8AgvQbCZT7lPoQkIAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.548 [XNIO-1 task-1] MqHL8AgvQbCZT7lPoQkIAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.548 [XNIO-1 task-1] MqHL8AgvQbCZT7lPoQkIAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.548 [XNIO-1 task-1] MqHL8AgvQbCZT7lPoQkIAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.550 [XNIO-1 task-1] C_FsViP7QjSsT_DpmNvusQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.550 [XNIO-1 task-1] C_FsViP7QjSsT_DpmNvusQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.550 [XNIO-1 task-1] C_FsViP7QjSsT_DpmNvusQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.550 [XNIO-1 task-1] C_FsViP7QjSsT_DpmNvusQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.550 [XNIO-1 task-1] C_FsViP7QjSsT_DpmNvusQ DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.550 [XNIO-1 task-1] C_FsViP7QjSsT_DpmNvusQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.552 [XNIO-1 task-1] gntWkA8OQPWLCIuzIJbU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.552 [XNIO-1 task-1] gntWkA8OQPWLCIuzIJbU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.552 [XNIO-1 task-1] gntWkA8OQPWLCIuzIJbU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.552 [XNIO-1 task-1] gntWkA8OQPWLCIuzIJbU2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.555 [XNIO-1 task-1] xjWwdrl2SYS8j_XVSdWEDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.555 [XNIO-1 task-1] xjWwdrl2SYS8j_XVSdWEDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.555 [XNIO-1 task-1] xjWwdrl2SYS8j_XVSdWEDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.555 [XNIO-1 task-1] xjWwdrl2SYS8j_XVSdWEDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.555 [XNIO-1 task-1] xjWwdrl2SYS8j_XVSdWEDA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.555 [XNIO-1 task-1] xjWwdrl2SYS8j_XVSdWEDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.557 [XNIO-1 task-1] nS4P4QLTRhSdMJ7c00SNFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.557 [XNIO-1 task-1] nS4P4QLTRhSdMJ7c00SNFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.557 [XNIO-1 task-1] nS4P4QLTRhSdMJ7c00SNFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.557 [XNIO-1 task-1] nS4P4QLTRhSdMJ7c00SNFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.558 [XNIO-1 task-1] nS4P4QLTRhSdMJ7c00SNFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.559 [XNIO-1 task-1] fnJW2gQHSMSrgKROvfGK3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.560 [XNIO-1 task-1] fnJW2gQHSMSrgKROvfGK3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.560 [XNIO-1 task-1] fnJW2gQHSMSrgKROvfGK3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.560 [XNIO-1 task-1] fnJW2gQHSMSrgKROvfGK3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.560 [XNIO-1 task-1] fnJW2gQHSMSrgKROvfGK3A DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.560 [XNIO-1 task-1] fnJW2gQHSMSrgKROvfGK3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.561 [XNIO-1 task-1] PhKQ9QneQfm4tBB9SY_nZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.561 [XNIO-1 task-1] PhKQ9QneQfm4tBB9SY_nZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.562 [XNIO-1 task-1] PhKQ9QneQfm4tBB9SY_nZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.562 [XNIO-1 task-1] PhKQ9QneQfm4tBB9SY_nZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.562 [XNIO-1 task-1] PhKQ9QneQfm4tBB9SY_nZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.563 [XNIO-1 task-1] T5yL-aDCTSmrYf_mr2vWYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.563 [XNIO-1 task-1] T5yL-aDCTSmrYf_mr2vWYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.563 [XNIO-1 task-1] T5yL-aDCTSmrYf_mr2vWYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.564 [XNIO-1 task-1] T5yL-aDCTSmrYf_mr2vWYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.564 [XNIO-1 task-1] T5yL-aDCTSmrYf_mr2vWYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.567 [XNIO-1 task-1] EhzQaIpeQeixpfIc1bIyZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.567 [XNIO-1 task-1] EhzQaIpeQeixpfIc1bIyZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.567 [XNIO-1 task-1] EhzQaIpeQeixpfIc1bIyZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.567 [XNIO-1 task-1] EhzQaIpeQeixpfIc1bIyZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.567 [XNIO-1 task-1] EhzQaIpeQeixpfIc1bIyZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.568 [XNIO-1 task-1] EhzQaIpeQeixpfIc1bIyZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.570 [XNIO-1 task-1] DsJRoqRMSlOhwzKHcaqSvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.570 [XNIO-1 task-1] DsJRoqRMSlOhwzKHcaqSvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.570 [XNIO-1 task-1] DsJRoqRMSlOhwzKHcaqSvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.570 [XNIO-1 task-1] DsJRoqRMSlOhwzKHcaqSvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.570 [XNIO-1 task-1] DsJRoqRMSlOhwzKHcaqSvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.572 [XNIO-1 task-1] X-0PHqEsSG-rUj2u-DXi0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.572 [XNIO-1 task-1] X-0PHqEsSG-rUj2u-DXi0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.572 [XNIO-1 task-1] X-0PHqEsSG-rUj2u-DXi0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.572 [XNIO-1 task-1] X-0PHqEsSG-rUj2u-DXi0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.572 [XNIO-1 task-1] X-0PHqEsSG-rUj2u-DXi0A DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.572 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.575 [XNIO-1 task-1] zZGs5DajR-KNJnDtMKjI8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.575 [XNIO-1 task-1] zZGs5DajR-KNJnDtMKjI8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.575 [XNIO-1 task-1] zZGs5DajR-KNJnDtMKjI8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.575 [XNIO-1 task-1] zZGs5DajR-KNJnDtMKjI8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.575 [XNIO-1 task-1] zZGs5DajR-KNJnDtMKjI8g DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.575 [XNIO-1 task-1] zZGs5DajR-KNJnDtMKjI8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.577 [XNIO-1 task-1] ZxhXCdUSRg2iTun8jpLmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.577 [XNIO-1 task-1] ZxhXCdUSRg2iTun8jpLmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.577 [XNIO-1 task-1] ZxhXCdUSRg2iTun8jpLmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.577 [XNIO-1 task-1] ZxhXCdUSRg2iTun8jpLmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.577 [XNIO-1 task-1] ZxhXCdUSRg2iTun8jpLmSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.578 [XNIO-1 task-1] ZxhXCdUSRg2iTun8jpLmSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.579 [XNIO-1 task-1] 9-vVi5IBQg6vWkOamSc8pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.579 [XNIO-1 task-1] 9-vVi5IBQg6vWkOamSc8pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.579 [XNIO-1 task-1] 9-vVi5IBQg6vWkOamSc8pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.580 [XNIO-1 task-1] 9-vVi5IBQg6vWkOamSc8pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.580 [XNIO-1 task-1] 9-vVi5IBQg6vWkOamSc8pw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.580 [XNIO-1 task-1] 9-vVi5IBQg6vWkOamSc8pw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.582 [XNIO-1 task-1] F3HIy62MRNq0FM6Z5IXBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.582 [XNIO-1 task-1] F3HIy62MRNq0FM6Z5IXBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.582 [XNIO-1 task-1] F3HIy62MRNq0FM6Z5IXBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.582 [XNIO-1 task-1] F3HIy62MRNq0FM6Z5IXBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.582 [XNIO-1 task-1] F3HIy62MRNq0FM6Z5IXBDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.584 [XNIO-1 task-1] jQklnwJQQ8-SCwpu2lz7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.584 [XNIO-1 task-1] jQklnwJQQ8-SCwpu2lz7Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.584 [XNIO-1 task-1] jQklnwJQQ8-SCwpu2lz7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.584 [XNIO-1 task-1] jQklnwJQQ8-SCwpu2lz7Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.584 [XNIO-1 task-1] jQklnwJQQ8-SCwpu2lz7Cg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.587 [XNIO-1 task-1] -PTCsXw9QvOwWNdaJuvrRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.587 [XNIO-1 task-1] -PTCsXw9QvOwWNdaJuvrRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.587 [XNIO-1 task-1] -PTCsXw9QvOwWNdaJuvrRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.587 [XNIO-1 task-1] -PTCsXw9QvOwWNdaJuvrRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.590 [XNIO-1 task-1] xiCqr6afQWC2-qKpIwTeoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.590 [XNIO-1 task-1] xiCqr6afQWC2-qKpIwTeoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.590 [XNIO-1 task-1] xiCqr6afQWC2-qKpIwTeoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.590 [XNIO-1 task-1] xiCqr6afQWC2-qKpIwTeoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.590 [XNIO-1 task-1] xiCqr6afQWC2-qKpIwTeoA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.593 [XNIO-1 task-1] X1szCaDtTCurm7tBmCDlVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.594 [XNIO-1 task-1] X1szCaDtTCurm7tBmCDlVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.594 [XNIO-1 task-1] X1szCaDtTCurm7tBmCDlVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.594 [XNIO-1 task-1] X1szCaDtTCurm7tBmCDlVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.594 [XNIO-1 task-1] X1szCaDtTCurm7tBmCDlVA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.595 [XNIO-1 task-1] X1szCaDtTCurm7tBmCDlVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.597 [XNIO-1 task-1] zkYO0jUwSq6qqU1K6gxngw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.597 [XNIO-1 task-1] zkYO0jUwSq6qqU1K6gxngw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.597 [XNIO-1 task-1] zkYO0jUwSq6qqU1K6gxngw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.597 [XNIO-1 task-1] zkYO0jUwSq6qqU1K6gxngw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.600 [XNIO-1 task-1] UUQ45JnOS6CuMnBx4mY9Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.600 [XNIO-1 task-1] UUQ45JnOS6CuMnBx4mY9Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.600 [XNIO-1 task-1] UUQ45JnOS6CuMnBx4mY9Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.600 [XNIO-1 task-1] UUQ45JnOS6CuMnBx4mY9Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.601 [XNIO-1 task-1] UUQ45JnOS6CuMnBx4mY9Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.601 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.603 [XNIO-1 task-1] giPQnyctSR2YybEE5t9t_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.603 [XNIO-1 task-1] giPQnyctSR2YybEE5t9t_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.603 [XNIO-1 task-1] giPQnyctSR2YybEE5t9t_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.603 [XNIO-1 task-1] giPQnyctSR2YybEE5t9t_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.604 [XNIO-1 task-1] giPQnyctSR2YybEE5t9t_g DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.604 [XNIO-1 task-1] giPQnyctSR2YybEE5t9t_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.606 [XNIO-1 task-1] HlDTcftLQ2C2ObeoPZHuNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.606 [XNIO-1 task-1] HlDTcftLQ2C2ObeoPZHuNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.606 [XNIO-1 task-1] HlDTcftLQ2C2ObeoPZHuNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.606 [XNIO-1 task-1] HlDTcftLQ2C2ObeoPZHuNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.606 [XNIO-1 task-1] HlDTcftLQ2C2ObeoPZHuNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.607 [XNIO-1 task-1] HlDTcftLQ2C2ObeoPZHuNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.608 [XNIO-1 task-1] yLySCTZ5TPi6_KyTctuHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.608 [XNIO-1 task-1] yLySCTZ5TPi6_KyTctuHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.608 [XNIO-1 task-1] yLySCTZ5TPi6_KyTctuHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.609 [XNIO-1 task-1] yLySCTZ5TPi6_KyTctuHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.609 [XNIO-1 task-1] yLySCTZ5TPi6_KyTctuHFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.609 [XNIO-1 task-1] yLySCTZ5TPi6_KyTctuHFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c162f18c-1966-42c8-b8e6-e8f7436fad9c is not found.","severity":"ERROR"} +09:03:00.611 [XNIO-1 task-1] PrhsAhrTQe608JObaCZtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.611 [XNIO-1 task-1] PrhsAhrTQe608JObaCZtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.611 [XNIO-1 task-1] PrhsAhrTQe608JObaCZtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.611 [XNIO-1 task-1] PrhsAhrTQe608JObaCZtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.611 [XNIO-1 task-1] PrhsAhrTQe608JObaCZtlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.613 [XNIO-1 task-1] LKtAO02dQrezr6J0FAv6SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.613 [XNIO-1 task-1] LKtAO02dQrezr6J0FAv6SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.613 [XNIO-1 task-1] LKtAO02dQrezr6J0FAv6SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.613 [XNIO-1 task-1] LKtAO02dQrezr6J0FAv6SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.613 [XNIO-1 task-1] LKtAO02dQrezr6J0FAv6SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.614 [XNIO-1 task-1] LKtAO02dQrezr6J0FAv6SQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.615 [XNIO-1 task-1] F_B5xcKmR-mNfbj2R-4DOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.616 [XNIO-1 task-1] F_B5xcKmR-mNfbj2R-4DOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.616 [XNIO-1 task-1] F_B5xcKmR-mNfbj2R-4DOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.616 [XNIO-1 task-1] F_B5xcKmR-mNfbj2R-4DOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.616 [XNIO-1 task-1] F_B5xcKmR-mNfbj2R-4DOw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.617 [XNIO-1 task-1] CiMumGS9S_6MaqFyIYQkrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.618 [XNIO-1 task-1] CiMumGS9S_6MaqFyIYQkrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.618 [XNIO-1 task-1] CiMumGS9S_6MaqFyIYQkrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.618 [XNIO-1 task-1] CiMumGS9S_6MaqFyIYQkrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.618 [XNIO-1 task-1] CiMumGS9S_6MaqFyIYQkrA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.621 [XNIO-1 task-1] 6Ve-P_66RCmC5Xt80DpxDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.622 [XNIO-1 task-1] 6Ve-P_66RCmC5Xt80DpxDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.622 [XNIO-1 task-1] 6Ve-P_66RCmC5Xt80DpxDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.622 [XNIO-1 task-1] 6Ve-P_66RCmC5Xt80DpxDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.622 [XNIO-1 task-1] 6Ve-P_66RCmC5Xt80DpxDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.624 [XNIO-1 task-1] oDYhrcAiSaqG5dEbJh9ACA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.624 [XNIO-1 task-1] oDYhrcAiSaqG5dEbJh9ACA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.624 [XNIO-1 task-1] oDYhrcAiSaqG5dEbJh9ACA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.624 [XNIO-1 task-1] oDYhrcAiSaqG5dEbJh9ACA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.624 [XNIO-1 task-1] oDYhrcAiSaqG5dEbJh9ACA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.624 [XNIO-1 task-1] oDYhrcAiSaqG5dEbJh9ACA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.626 [XNIO-1 task-1] XyjetGGcRl6frn-hQ_OIoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.626 [XNIO-1 task-1] XyjetGGcRl6frn-hQ_OIoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.626 [XNIO-1 task-1] XyjetGGcRl6frn-hQ_OIoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.626 [XNIO-1 task-1] XyjetGGcRl6frn-hQ_OIoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.626 [XNIO-1 task-1] XyjetGGcRl6frn-hQ_OIoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.628 [XNIO-1 task-1] -YD8dBMuSWy_ZxTy4bRuCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.628 [XNIO-1 task-1] -YD8dBMuSWy_ZxTy4bRuCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.628 [XNIO-1 task-1] -YD8dBMuSWy_ZxTy4bRuCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.628 [XNIO-1 task-1] -YD8dBMuSWy_ZxTy4bRuCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.628 [XNIO-1 task-1] -YD8dBMuSWy_ZxTy4bRuCg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.632 [XNIO-1 task-1] PAHA2rcbReGnqOgH45O8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.632 [XNIO-1 task-1] PAHA2rcbReGnqOgH45O8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.632 [XNIO-1 task-1] PAHA2rcbReGnqOgH45O8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.632 [XNIO-1 task-1] PAHA2rcbReGnqOgH45O8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.632 [XNIO-1 task-1] PAHA2rcbReGnqOgH45O8mQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.635 [XNIO-1 task-1] etsbvO9SQgeW5p1Aw0a29A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.635 [XNIO-1 task-1] etsbvO9SQgeW5p1Aw0a29A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.635 [XNIO-1 task-1] etsbvO9SQgeW5p1Aw0a29A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.635 [XNIO-1 task-1] etsbvO9SQgeW5p1Aw0a29A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.635 [XNIO-1 task-1] etsbvO9SQgeW5p1Aw0a29A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.638 [XNIO-1 task-1] JIMZ07KBQDa1Dban8t9lQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.639 [XNIO-1 task-1] JIMZ07KBQDa1Dban8t9lQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.639 [XNIO-1 task-1] JIMZ07KBQDa1Dban8t9lQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.639 [XNIO-1 task-1] JIMZ07KBQDa1Dban8t9lQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.642 [XNIO-1 task-1] A1MvnB5vQViOEdKzSjWnoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.642 [XNIO-1 task-1] A1MvnB5vQViOEdKzSjWnoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.642 [XNIO-1 task-1] A1MvnB5vQViOEdKzSjWnoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.642 [XNIO-1 task-1] A1MvnB5vQViOEdKzSjWnoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.642 [XNIO-1 task-1] A1MvnB5vQViOEdKzSjWnoA DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.643 [XNIO-1 task-1] A1MvnB5vQViOEdKzSjWnoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.645 [XNIO-1 task-1] X02IgfvlSYmy7uHJEfn1_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.645 [XNIO-1 task-1] X02IgfvlSYmy7uHJEfn1_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.648 [XNIO-1 task-1] X02IgfvlSYmy7uHJEfn1_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.648 [XNIO-1 task-1] X02IgfvlSYmy7uHJEfn1_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.649 [XNIO-1 task-1] X02IgfvlSYmy7uHJEfn1_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.650 [XNIO-1 task-1] wiFY0H3mS3CxY2BoOOvkdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.651 [XNIO-1 task-1] wiFY0H3mS3CxY2BoOOvkdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.651 [XNIO-1 task-1] wiFY0H3mS3CxY2BoOOvkdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.651 [XNIO-1 task-1] wiFY0H3mS3CxY2BoOOvkdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.651 [XNIO-1 task-1] wiFY0H3mS3CxY2BoOOvkdg DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.651 [XNIO-1 task-1] wiFY0H3mS3CxY2BoOOvkdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.653 [XNIO-1 task-1] R3lEU7qWQCSe2fX5KWAxGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.653 [XNIO-1 task-1] R3lEU7qWQCSe2fX5KWAxGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.653 [XNIO-1 task-1] R3lEU7qWQCSe2fX5KWAxGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.653 [XNIO-1 task-1] R3lEU7qWQCSe2fX5KWAxGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.653 [XNIO-1 task-1] R3lEU7qWQCSe2fX5KWAxGA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.655 [XNIO-1 task-1] 2A5mCT4nTwWa-OH-wvV0GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.655 [XNIO-1 task-1] 2A5mCT4nTwWa-OH-wvV0GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.655 [XNIO-1 task-1] 2A5mCT4nTwWa-OH-wvV0GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.655 [XNIO-1 task-1] 2A5mCT4nTwWa-OH-wvV0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.655 [XNIO-1 task-1] 2A5mCT4nTwWa-OH-wvV0GQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.658 [XNIO-1 task-1] yY30LISeTcOOOdfkR7jdEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.658 [XNIO-1 task-1] yY30LISeTcOOOdfkR7jdEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.658 [XNIO-1 task-1] yY30LISeTcOOOdfkR7jdEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.658 [XNIO-1 task-1] yY30LISeTcOOOdfkR7jdEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.658 [XNIO-1 task-1] yY30LISeTcOOOdfkR7jdEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.660 [XNIO-1 task-1] 5XJjoV-sRDu_UMWB8hjX5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.660 [XNIO-1 task-1] 5XJjoV-sRDu_UMWB8hjX5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.660 [XNIO-1 task-1] 5XJjoV-sRDu_UMWB8hjX5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.660 [XNIO-1 task-1] 5XJjoV-sRDu_UMWB8hjX5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.660 [XNIO-1 task-1] 5XJjoV-sRDu_UMWB8hjX5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.660 [XNIO-1 task-1] 5XJjoV-sRDu_UMWB8hjX5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.662 [XNIO-1 task-1] T7PPVSr2T5K2xfHwPVHqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.662 [XNIO-1 task-1] T7PPVSr2T5K2xfHwPVHqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.662 [XNIO-1 task-1] T7PPVSr2T5K2xfHwPVHqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.662 [XNIO-1 task-1] T7PPVSr2T5K2xfHwPVHqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.662 [XNIO-1 task-1] T7PPVSr2T5K2xfHwPVHqmA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.663 [XNIO-1 task-1] kLm-R2TCRCGLaKS-KNRksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.663 [XNIO-1 task-1] kLm-R2TCRCGLaKS-KNRksg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.663 [XNIO-1 task-1] kLm-R2TCRCGLaKS-KNRksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.664 [XNIO-1 task-1] kLm-R2TCRCGLaKS-KNRksg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.664 [XNIO-1 task-1] kLm-R2TCRCGLaKS-KNRksg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.667 [XNIO-1 task-1] G_cCLKPcSFCSOb3ZZycDeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.667 [XNIO-1 task-1] G_cCLKPcSFCSOb3ZZycDeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.667 [XNIO-1 task-1] G_cCLKPcSFCSOb3ZZycDeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.667 [XNIO-1 task-1] G_cCLKPcSFCSOb3ZZycDeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.667 [XNIO-1 task-1] G_cCLKPcSFCSOb3ZZycDeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.668 [XNIO-1 task-1] G_cCLKPcSFCSOb3ZZycDeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.670 [XNIO-1 task-1] lLO4lrDkTVuaINaVCQaeTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.670 [XNIO-1 task-1] lLO4lrDkTVuaINaVCQaeTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.670 [XNIO-1 task-1] lLO4lrDkTVuaINaVCQaeTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.670 [XNIO-1 task-1] lLO4lrDkTVuaINaVCQaeTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.670 [XNIO-1 task-1] lLO4lrDkTVuaINaVCQaeTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.672 [XNIO-1 task-1] gM8ySj3bTJaNw5J-9hrrYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.672 [XNIO-1 task-1] gM8ySj3bTJaNw5J-9hrrYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.672 [XNIO-1 task-1] gM8ySj3bTJaNw5J-9hrrYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.672 [XNIO-1 task-1] gM8ySj3bTJaNw5J-9hrrYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.672 [XNIO-1 task-1] gM8ySj3bTJaNw5J-9hrrYg DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.672 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.675 [XNIO-1 task-1] V4hw-OZ0TFyAEU4GWHbE0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.675 [XNIO-1 task-1] V4hw-OZ0TFyAEU4GWHbE0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.675 [XNIO-1 task-1] V4hw-OZ0TFyAEU4GWHbE0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.675 [XNIO-1 task-1] V4hw-OZ0TFyAEU4GWHbE0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.675 [XNIO-1 task-1] V4hw-OZ0TFyAEU4GWHbE0w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.678 [XNIO-1 task-1] rNP3MeziRhaY3uuheIaLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.678 [XNIO-1 task-1] rNP3MeziRhaY3uuheIaLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.678 [XNIO-1 task-1] rNP3MeziRhaY3uuheIaLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.678 [XNIO-1 task-1] rNP3MeziRhaY3uuheIaLgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.681 [XNIO-1 task-1] cEuTNM0WSoeZi7xu7T2Afw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.682 [XNIO-1 task-1] cEuTNM0WSoeZi7xu7T2Afw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.682 [XNIO-1 task-1] cEuTNM0WSoeZi7xu7T2Afw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.682 [XNIO-1 task-1] cEuTNM0WSoeZi7xu7T2Afw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.682 [XNIO-1 task-1] cEuTNM0WSoeZi7xu7T2Afw DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.682 [XNIO-1 task-1] cEuTNM0WSoeZi7xu7T2Afw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.685 [XNIO-1 task-1] vB_TQZx7Tm262HVOQjP54Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.685 [XNIO-1 task-1] vB_TQZx7Tm262HVOQjP54Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.685 [XNIO-1 task-1] vB_TQZx7Tm262HVOQjP54Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.685 [XNIO-1 task-1] vB_TQZx7Tm262HVOQjP54Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.685 [XNIO-1 task-1] vB_TQZx7Tm262HVOQjP54Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.686 [XNIO-1 task-1] vB_TQZx7Tm262HVOQjP54Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.709 [XNIO-1 task-1] 8wmmSD7DSaidnajzJMZCVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.709 [XNIO-1 task-1] 8wmmSD7DSaidnajzJMZCVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.709 [XNIO-1 task-1] 8wmmSD7DSaidnajzJMZCVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.709 [XNIO-1 task-1] 8wmmSD7DSaidnajzJMZCVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.784 [XNIO-1 task-1] Fj3Es2auR0qemdGqCPH89Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.785 [XNIO-1 task-1] Fj3Es2auR0qemdGqCPH89Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.785 [XNIO-1 task-1] Fj3Es2auR0qemdGqCPH89Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.785 [XNIO-1 task-1] Fj3Es2auR0qemdGqCPH89Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.785 [XNIO-1 task-1] Fj3Es2auR0qemdGqCPH89Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.851 [XNIO-1 task-1] CtxIeulmQv6dOUe3Xse-Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.851 [XNIO-1 task-1] CtxIeulmQv6dOUe3Xse-Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.851 [XNIO-1 task-1] CtxIeulmQv6dOUe3Xse-Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.852 [XNIO-1 task-1] CtxIeulmQv6dOUe3Xse-Jw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.874 [XNIO-1 task-1] ezNbEHvgQsmr4hDpxHhIWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.874 [XNIO-1 task-1] ezNbEHvgQsmr4hDpxHhIWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.874 [XNIO-1 task-1] ezNbEHvgQsmr4hDpxHhIWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.875 [XNIO-1 task-1] ezNbEHvgQsmr4hDpxHhIWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.875 [XNIO-1 task-1] ezNbEHvgQsmr4hDpxHhIWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.875 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.878 [XNIO-1 task-1] b_N6hFUhTaqOTgj3y8WxbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.878 [XNIO-1 task-1] b_N6hFUhTaqOTgj3y8WxbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.878 [XNIO-1 task-1] b_N6hFUhTaqOTgj3y8WxbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.878 [XNIO-1 task-1] b_N6hFUhTaqOTgj3y8WxbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.878 [XNIO-1 task-1] b_N6hFUhTaqOTgj3y8WxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.878 [XNIO-1 task-1] b_N6hFUhTaqOTgj3y8WxbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.882 [XNIO-1 task-1] 8bQLjorqRoyDFLq-_PqDoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.882 [XNIO-1 task-1] 8bQLjorqRoyDFLq-_PqDoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.882 [XNIO-1 task-1] 8bQLjorqRoyDFLq-_PqDoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.882 [XNIO-1 task-1] 8bQLjorqRoyDFLq-_PqDoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.885 [XNIO-1 task-1] Sbk_gjjoSYuOe1L-NLiwLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.885 [XNIO-1 task-1] Sbk_gjjoSYuOe1L-NLiwLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.885 [XNIO-1 task-1] Sbk_gjjoSYuOe1L-NLiwLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.885 [XNIO-1 task-1] Sbk_gjjoSYuOe1L-NLiwLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.885 [XNIO-1 task-1] Sbk_gjjoSYuOe1L-NLiwLA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.885 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.888 [XNIO-1 task-1] 398-PJ6PSB6fs4ccGUBWXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.888 [XNIO-1 task-1] 398-PJ6PSB6fs4ccGUBWXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.888 [XNIO-1 task-1] 398-PJ6PSB6fs4ccGUBWXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.888 [XNIO-1 task-1] 398-PJ6PSB6fs4ccGUBWXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.888 [XNIO-1 task-1] 398-PJ6PSB6fs4ccGUBWXw DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.888 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.892 [XNIO-1 task-1] jKX3W01ERQyIDj4UzEw7JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.892 [XNIO-1 task-1] jKX3W01ERQyIDj4UzEw7JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.892 [XNIO-1 task-1] jKX3W01ERQyIDj4UzEw7JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.892 [XNIO-1 task-1] jKX3W01ERQyIDj4UzEw7JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.892 [XNIO-1 task-1] jKX3W01ERQyIDj4UzEw7JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.892 [XNIO-1 task-1] jKX3W01ERQyIDj4UzEw7JQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.894 [XNIO-1 task-1] EbSYzCfLR4CjnzFs46A9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.894 [XNIO-1 task-1] EbSYzCfLR4CjnzFs46A9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.894 [XNIO-1 task-1] EbSYzCfLR4CjnzFs46A9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.894 [XNIO-1 task-1] EbSYzCfLR4CjnzFs46A9Pw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.897 [XNIO-1 task-1] j-IUQG5nRhyMxtOZBD6e6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.897 [XNIO-1 task-1] j-IUQG5nRhyMxtOZBD6e6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.897 [XNIO-1 task-1] j-IUQG5nRhyMxtOZBD6e6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.897 [XNIO-1 task-1] j-IUQG5nRhyMxtOZBD6e6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.897 [XNIO-1 task-1] j-IUQG5nRhyMxtOZBD6e6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.897 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.900 [XNIO-1 task-1] s6FGoerRQOyiyCQ_JN1efQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:00.900 [XNIO-1 task-1] s6FGoerRQOyiyCQ_JN1efQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.900 [XNIO-1 task-1] s6FGoerRQOyiyCQ_JN1efQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.900 [XNIO-1 task-1] s6FGoerRQOyiyCQ_JN1efQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:00.900 [XNIO-1 task-1] s6FGoerRQOyiyCQ_JN1efQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c162f18c-1966-42c8-b8e6-e8f7436fad9c", "c162f18c-1966-42c8-b8e6-e8f7436fad9c", refreshToken) +09:03:00.900 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:00.903 [XNIO-1 task-1] kOTh3eZSQUmIOPT3Xkkq3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.903 [XNIO-1 task-1] kOTh3eZSQUmIOPT3Xkkq3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.903 [XNIO-1 task-1] kOTh3eZSQUmIOPT3Xkkq3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.904 [XNIO-1 task-1] kOTh3eZSQUmIOPT3Xkkq3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.904 [XNIO-1 task-1] kOTh3eZSQUmIOPT3Xkkq3w DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.904 [XNIO-1 task-1] kOTh3eZSQUmIOPT3Xkkq3w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.905 [XNIO-1 task-1] 0CEOT2bHRfioP7b7rD1knQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.905 [XNIO-1 task-1] 0CEOT2bHRfioP7b7rD1knQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.905 [XNIO-1 task-1] 0CEOT2bHRfioP7b7rD1knQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.905 [XNIO-1 task-1] 0CEOT2bHRfioP7b7rD1knQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.908 [XNIO-1 task-1] YZPNW3VTRiOfFbit89eReQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.908 [XNIO-1 task-1] YZPNW3VTRiOfFbit89eReQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.908 [XNIO-1 task-1] YZPNW3VTRiOfFbit89eReQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.908 [XNIO-1 task-1] YZPNW3VTRiOfFbit89eReQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.909 [XNIO-1 task-1] YZPNW3VTRiOfFbit89eReQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.911 [XNIO-1 task-1] q_wmO8AWTOiNqTn53EJMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.911 [XNIO-1 task-1] q_wmO8AWTOiNqTn53EJMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.911 [XNIO-1 task-1] q_wmO8AWTOiNqTn53EJMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.911 [XNIO-1 task-1] q_wmO8AWTOiNqTn53EJMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.911 [XNIO-1 task-1] q_wmO8AWTOiNqTn53EJMxA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.914 [XNIO-1 task-1] 44R_CM0pR7aKMTqGVc_bOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.915 [XNIO-1 task-1] 44R_CM0pR7aKMTqGVc_bOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.915 [XNIO-1 task-1] 44R_CM0pR7aKMTqGVc_bOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.915 [XNIO-1 task-1] 44R_CM0pR7aKMTqGVc_bOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.915 [XNIO-1 task-1] 44R_CM0pR7aKMTqGVc_bOw DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.915 [XNIO-1 task-1] 44R_CM0pR7aKMTqGVc_bOw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.917 [XNIO-1 task-1] N4WqygATShOqU5tbdJ2BQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.917 [XNIO-1 task-1] N4WqygATShOqU5tbdJ2BQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.918 [XNIO-1 task-1] N4WqygATShOqU5tbdJ2BQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.918 [XNIO-1 task-1] N4WqygATShOqU5tbdJ2BQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.922 [XNIO-1 task-1] u-2r-xJsR4qJuntbjAFu1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.922 [XNIO-1 task-1] u-2r-xJsR4qJuntbjAFu1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.922 [XNIO-1 task-1] u-2r-xJsR4qJuntbjAFu1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.922 [XNIO-1 task-1] u-2r-xJsR4qJuntbjAFu1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.923 [XNIO-1 task-1] u-2r-xJsR4qJuntbjAFu1w DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.923 [XNIO-1 task-1] u-2r-xJsR4qJuntbjAFu1w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.924 [XNIO-1 task-1] iL794CA7R9e0Gj6sinELJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.924 [XNIO-1 task-1] iL794CA7R9e0Gj6sinELJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.924 [XNIO-1 task-1] iL794CA7R9e0Gj6sinELJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.925 [XNIO-1 task-1] iL794CA7R9e0Gj6sinELJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.925 [XNIO-1 task-1] iL794CA7R9e0Gj6sinELJA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.928 [XNIO-1 task-1] 9iEdtpTjRlWg9H1unnzbUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.928 [XNIO-1 task-1] 9iEdtpTjRlWg9H1unnzbUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.928 [XNIO-1 task-1] 9iEdtpTjRlWg9H1unnzbUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.928 [XNIO-1 task-1] 9iEdtpTjRlWg9H1unnzbUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.929 [XNIO-1 task-1] 9iEdtpTjRlWg9H1unnzbUw DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.929 [XNIO-1 task-1] 9iEdtpTjRlWg9H1unnzbUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.930 [XNIO-1 task-1] Kl7PSuPJQteqNhnk5UStWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.930 [XNIO-1 task-1] Kl7PSuPJQteqNhnk5UStWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.930 [XNIO-1 task-1] Kl7PSuPJQteqNhnk5UStWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.930 [XNIO-1 task-1] Kl7PSuPJQteqNhnk5UStWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.930 [XNIO-1 task-1] Kl7PSuPJQteqNhnk5UStWg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.932 [XNIO-1 task-1] 4PFpwmtZRdiVhffWhV_OpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.932 [XNIO-1 task-1] 4PFpwmtZRdiVhffWhV_OpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.932 [XNIO-1 task-1] 4PFpwmtZRdiVhffWhV_OpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.932 [XNIO-1 task-1] 4PFpwmtZRdiVhffWhV_OpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1, base path is set to: null +09:03:00.932 [XNIO-1 task-1] 4PFpwmtZRdiVhffWhV_OpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", "429782b8-6742-4cb0-b8ea-26e2e3b24cd1", refreshToken) +09:03:00.932 [XNIO-1 task-1] 4PFpwmtZRdiVhffWhV_OpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} +09:03:00.937 [XNIO-1 task-1] b3vI_wuTQvq0cRTfEETZmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.938 [XNIO-1 task-1] b3vI_wuTQvq0cRTfEETZmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.938 [XNIO-1 task-1] b3vI_wuTQvq0cRTfEETZmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.938 [XNIO-1 task-1] b3vI_wuTQvq0cRTfEETZmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.941 [XNIO-1 task-1] dr1t6rGxSke_0VYPmfJR9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.941 [XNIO-1 task-1] dr1t6rGxSke_0VYPmfJR9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.942 [XNIO-1 task-1] dr1t6rGxSke_0VYPmfJR9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.942 [XNIO-1 task-1] dr1t6rGxSke_0VYPmfJR9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.942 [XNIO-1 task-1] dr1t6rGxSke_0VYPmfJR9A DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.942 [XNIO-1 task-1] dr1t6rGxSke_0VYPmfJR9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.943 [XNIO-1 task-1] -UQqsgDtSsCwXv5RZK7PMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.943 [XNIO-1 task-1] -UQqsgDtSsCwXv5RZK7PMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.944 [XNIO-1 task-1] -UQqsgDtSsCwXv5RZK7PMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.944 [XNIO-1 task-1] -UQqsgDtSsCwXv5RZK7PMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.944 [XNIO-1 task-1] -UQqsgDtSsCwXv5RZK7PMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 +09:03:00.945 [XNIO-1 task-1] Cyfoj5qvQ6iyMNV7lTLCyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.945 [XNIO-1 task-1] Cyfoj5qvQ6iyMNV7lTLCyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.945 [XNIO-1 task-1] Cyfoj5qvQ6iyMNV7lTLCyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.945 [XNIO-1 task-1] Cyfoj5qvQ6iyMNV7lTLCyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.946 [XNIO-1 task-1] Cyfoj5qvQ6iyMNV7lTLCyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.946 [XNIO-1 task-1] Cyfoj5qvQ6iyMNV7lTLCyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.947 [XNIO-1 task-1] DMgTZm26Rw66AN7YNNqpzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.947 [XNIO-1 task-1] DMgTZm26Rw66AN7YNNqpzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.947 [XNIO-1 task-1] DMgTZm26Rw66AN7YNNqpzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.948 [XNIO-1 task-1] DMgTZm26Rw66AN7YNNqpzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.951 [XNIO-1 task-1] XfUloC9VQmy3dd1OWDGo4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.951 [XNIO-1 task-1] XfUloC9VQmy3dd1OWDGo4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.951 [XNIO-1 task-1] XfUloC9VQmy3dd1OWDGo4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.951 [XNIO-1 task-1] XfUloC9VQmy3dd1OWDGo4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:00.951 [XNIO-1 task-1] XfUloC9VQmy3dd1OWDGo4g DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:00.951 [XNIO-1 task-1] XfUloC9VQmy3dd1OWDGo4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:00.953 [XNIO-1 task-1] UA544X1VREy1pK8wEzIQhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.953 [XNIO-1 task-1] UA544X1VREy1pK8wEzIQhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.953 [XNIO-1 task-1] UA544X1VREy1pK8wEzIQhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.953 [XNIO-1 task-1] UA544X1VREy1pK8wEzIQhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.953 [XNIO-1 task-1] UA544X1VREy1pK8wEzIQhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:00.954 [XNIO-1 task-1] gfn8j2NnSnSkAx0L_hH2Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.955 [XNIO-1 task-1] gfn8j2NnSnSkAx0L_hH2Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.955 [XNIO-1 task-1] gfn8j2NnSnSkAx0L_hH2Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.955 [XNIO-1 task-1] gfn8j2NnSnSkAx0L_hH2Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:00.955 [XNIO-1 task-1] gfn8j2NnSnSkAx0L_hH2Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:00.955 [XNIO-1 task-1] gfn8j2NnSnSkAx0L_hH2Ng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:00.956 [XNIO-1 task-1] lbcnYR5dSzeQF3AhqVFpCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.956 [XNIO-1 task-1] lbcnYR5dSzeQF3AhqVFpCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.957 [XNIO-1 task-1] lbcnYR5dSzeQF3AhqVFpCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.957 [XNIO-1 task-1] lbcnYR5dSzeQF3AhqVFpCA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.961 [XNIO-1 task-1] jv5PGYuISFa6VPyaBvKZng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.961 [XNIO-1 task-1] jv5PGYuISFa6VPyaBvKZng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.961 [XNIO-1 task-1] jv5PGYuISFa6VPyaBvKZng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.961 [XNIO-1 task-1] jv5PGYuISFa6VPyaBvKZng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.961 [XNIO-1 task-1] jv5PGYuISFa6VPyaBvKZng DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.961 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.964 [XNIO-1 task-1] Ypj33sJyQ22lZYWetiEmBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.964 [XNIO-1 task-1] Ypj33sJyQ22lZYWetiEmBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.964 [XNIO-1 task-1] Ypj33sJyQ22lZYWetiEmBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.964 [XNIO-1 task-1] Ypj33sJyQ22lZYWetiEmBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.964 [XNIO-1 task-1] Ypj33sJyQ22lZYWetiEmBw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.967 [XNIO-1 task-1] m1lU2AHkTRW-sglB1tp0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.967 [XNIO-1 task-1] m1lU2AHkTRW-sglB1tp0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.967 [XNIO-1 task-1] m1lU2AHkTRW-sglB1tp0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.967 [XNIO-1 task-1] m1lU2AHkTRW-sglB1tp0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.967 [XNIO-1 task-1] m1lU2AHkTRW-sglB1tp0RA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.970 [XNIO-1 task-1] kY4CqX-sQOuMj3Ayn7JnwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.970 [XNIO-1 task-1] kY4CqX-sQOuMj3Ayn7JnwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.970 [XNIO-1 task-1] kY4CqX-sQOuMj3Ayn7JnwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.970 [XNIO-1 task-1] kY4CqX-sQOuMj3Ayn7JnwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.970 [XNIO-1 task-1] kY4CqX-sQOuMj3Ayn7JnwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.974 [XNIO-1 task-1] pv4eeCzVRZK_kGl1JVGd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.974 [XNIO-1 task-1] pv4eeCzVRZK_kGl1JVGd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.974 [XNIO-1 task-1] pv4eeCzVRZK_kGl1JVGd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.974 [XNIO-1 task-1] pv4eeCzVRZK_kGl1JVGd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.974 [XNIO-1 task-1] pv4eeCzVRZK_kGl1JVGd8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.975 [XNIO-1 task-1] pv4eeCzVRZK_kGl1JVGd8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:00.977 [XNIO-1 task-1] lGRtaT3fQ_uL9uugpE2Bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.977 [XNIO-1 task-1] lGRtaT3fQ_uL9uugpE2Bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.977 [XNIO-1 task-1] lGRtaT3fQ_uL9uugpE2Bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.977 [XNIO-1 task-1] lGRtaT3fQ_uL9uugpE2Bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.977 [XNIO-1 task-1] lGRtaT3fQ_uL9uugpE2Bnw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.978 [XNIO-1 task-1] j-CzKStNQg-bFlytvvLuTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.978 [XNIO-1 task-1] j-CzKStNQg-bFlytvvLuTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.979 [XNIO-1 task-1] j-CzKStNQg-bFlytvvLuTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.979 [XNIO-1 task-1] j-CzKStNQg-bFlytvvLuTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.979 [XNIO-1 task-1] j-CzKStNQg-bFlytvvLuTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.982 [XNIO-1 task-1] rtxOYe64SEO7_wlNddzmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.982 [XNIO-1 task-1] rtxOYe64SEO7_wlNddzmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.982 [XNIO-1 task-1] rtxOYe64SEO7_wlNddzmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.982 [XNIO-1 task-1] rtxOYe64SEO7_wlNddzmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.982 [XNIO-1 task-1] rtxOYe64SEO7_wlNddzmeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:00.983 [XNIO-1 task-1] rtxOYe64SEO7_wlNddzmeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:00.985 [XNIO-1 task-1] jGcENhUTTtWJlMrtPf5YXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.985 [XNIO-1 task-1] jGcENhUTTtWJlMrtPf5YXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.985 [XNIO-1 task-1] jGcENhUTTtWJlMrtPf5YXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.985 [XNIO-1 task-1] jGcENhUTTtWJlMrtPf5YXg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:00.988 [XNIO-1 task-1] 0EuCrs0kRj6-aNqniRtFvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.988 [XNIO-1 task-1] 0EuCrs0kRj6-aNqniRtFvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.988 [XNIO-1 task-1] 0EuCrs0kRj6-aNqniRtFvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.988 [XNIO-1 task-1] 0EuCrs0kRj6-aNqniRtFvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:00.988 [XNIO-1 task-1] 0EuCrs0kRj6-aNqniRtFvA DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:00.988 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:00.992 [XNIO-1 task-1] y0JNavK7QhSXLyVDXyWLwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.992 [XNIO-1 task-1] y0JNavK7QhSXLyVDXyWLwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.992 [XNIO-1 task-1] y0JNavK7QhSXLyVDXyWLwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:00.992 [XNIO-1 task-1] y0JNavK7QhSXLyVDXyWLwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:00.992 [XNIO-1 task-1] y0JNavK7QhSXLyVDXyWLwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:00.995 [XNIO-1 task-1] RzuvyY7cQCiiyITTSpZvPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.995 [XNIO-1 task-1] RzuvyY7cQCiiyITTSpZvPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:00.995 [XNIO-1 task-1] RzuvyY7cQCiiyITTSpZvPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:00.995 [XNIO-1 task-1] RzuvyY7cQCiiyITTSpZvPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.995 [XNIO-1 task-1] RzuvyY7cQCiiyITTSpZvPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:00.997 [XNIO-1 task-1] xM1vf4ziQjGiZhwNf_DnPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.997 [XNIO-1 task-1] xM1vf4ziQjGiZhwNf_DnPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:00.997 [XNIO-1 task-1] xM1vf4ziQjGiZhwNf_DnPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:00.997 [XNIO-1 task-1] xM1vf4ziQjGiZhwNf_DnPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac, base path is set to: null +09:03:00.997 [XNIO-1 task-1] xM1vf4ziQjGiZhwNf_DnPw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f458a09-74da-49aa-b83f-ebb1b063afac", "7f458a09-74da-49aa-b83f-ebb1b063afac", refreshToken) +09:03:00.997 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:01.002 [XNIO-1 task-1] MfzW4QUtSBa9TXH6WSTbqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.002 [XNIO-1 task-1] MfzW4QUtSBa9TXH6WSTbqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.002 [XNIO-1 task-1] MfzW4QUtSBa9TXH6WSTbqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.002 [XNIO-1 task-1] MfzW4QUtSBa9TXH6WSTbqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.002 [XNIO-1 task-1] MfzW4QUtSBa9TXH6WSTbqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.003 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.005 [XNIO-1 task-1] oCmwDQ2GT06FPZYZerJUnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.005 [XNIO-1 task-1] oCmwDQ2GT06FPZYZerJUnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.005 [XNIO-1 task-1] oCmwDQ2GT06FPZYZerJUnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.005 [XNIO-1 task-1] oCmwDQ2GT06FPZYZerJUnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.005 [XNIO-1 task-1] oCmwDQ2GT06FPZYZerJUnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.005 [XNIO-1 task-1] oCmwDQ2GT06FPZYZerJUnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.007 [XNIO-1 task-1] nYiHhtfcS8eqCvmKqHtTew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:01.007 [XNIO-1 task-1] nYiHhtfcS8eqCvmKqHtTew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.007 [XNIO-1 task-1] nYiHhtfcS8eqCvmKqHtTew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.007 [XNIO-1 task-1] nYiHhtfcS8eqCvmKqHtTew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:01.007 [XNIO-1 task-1] nYiHhtfcS8eqCvmKqHtTew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7f458a09-74da-49aa-b83f-ebb1b063afac +09:03:01.008 [XNIO-1 task-1] nYiHhtfcS8eqCvmKqHtTew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7f458a09-74da-49aa-b83f-ebb1b063afac is not found.","severity":"ERROR"} +09:03:01.011 [XNIO-1 task-1] qAAwqF-7S2-rLuOQpmRlbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.011 [XNIO-1 task-1] qAAwqF-7S2-rLuOQpmRlbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.011 [XNIO-1 task-1] qAAwqF-7S2-rLuOQpmRlbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.011 [XNIO-1 task-1] qAAwqF-7S2-rLuOQpmRlbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.014 [XNIO-1 task-1] JUAaEvTHQTC54wunLwIYHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.014 [XNIO-1 task-1] JUAaEvTHQTC54wunLwIYHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.014 [XNIO-1 task-1] JUAaEvTHQTC54wunLwIYHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.014 [XNIO-1 task-1] JUAaEvTHQTC54wunLwIYHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.014 [XNIO-1 task-1] JUAaEvTHQTC54wunLwIYHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c162f18c-1966-42c8-b8e6-e8f7436fad9c", "c162f18c-1966-42c8-b8e6-e8f7436fad9c", refreshToken) +09:03:01.015 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:01.017 [XNIO-1 task-1] 68JPB8VDRKqbbc7lH3z6Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.017 [XNIO-1 task-1] 68JPB8VDRKqbbc7lH3z6Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.017 [XNIO-1 task-1] 68JPB8VDRKqbbc7lH3z6Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.017 [XNIO-1 task-1] 68JPB8VDRKqbbc7lH3z6Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.017 [XNIO-1 task-1] 68JPB8VDRKqbbc7lH3z6Eg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.022 [XNIO-1 task-1] E62baRC-SEuiR1ywpgvjHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.022 [XNIO-1 task-1] E62baRC-SEuiR1ywpgvjHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.022 [XNIO-1 task-1] E62baRC-SEuiR1ywpgvjHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.022 [XNIO-1 task-1] E62baRC-SEuiR1ywpgvjHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.023 [XNIO-1 task-1] E62baRC-SEuiR1ywpgvjHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.024 [XNIO-1 task-1] VPqJKU5WTyCpdPj-dLaMxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.024 [XNIO-1 task-1] VPqJKU5WTyCpdPj-dLaMxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.024 [XNIO-1 task-1] VPqJKU5WTyCpdPj-dLaMxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.024 [XNIO-1 task-1] VPqJKU5WTyCpdPj-dLaMxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.025 [XNIO-1 task-1] VPqJKU5WTyCpdPj-dLaMxA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.025 [XNIO-1 task-1] VPqJKU5WTyCpdPj-dLaMxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.026 [XNIO-1 task-1] uBNRxp6bQm-tGgkDJEoFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.026 [XNIO-1 task-1] uBNRxp6bQm-tGgkDJEoFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.026 [XNIO-1 task-1] uBNRxp6bQm-tGgkDJEoFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.027 [XNIO-1 task-1] uBNRxp6bQm-tGgkDJEoFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.027 [XNIO-1 task-1] uBNRxp6bQm-tGgkDJEoFSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.029 [XNIO-1 task-1] u62fB03vTcSGrDaDSb9rTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.029 [XNIO-1 task-1] u62fB03vTcSGrDaDSb9rTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.029 [XNIO-1 task-1] u62fB03vTcSGrDaDSb9rTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.030 [XNIO-1 task-1] u62fB03vTcSGrDaDSb9rTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.030 [XNIO-1 task-1] u62fB03vTcSGrDaDSb9rTA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.035 [XNIO-1 task-1] vTueo6ecSeSu25mSRrITnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.035 [XNIO-1 task-1] vTueo6ecSeSu25mSRrITnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.035 [XNIO-1 task-1] vTueo6ecSeSu25mSRrITnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.035 [XNIO-1 task-1] vTueo6ecSeSu25mSRrITnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.038 [XNIO-1 task-1] 3aJfrED_SL2uVEaUPW5RQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.038 [XNIO-1 task-1] 3aJfrED_SL2uVEaUPW5RQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.038 [XNIO-1 task-1] 3aJfrED_SL2uVEaUPW5RQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.038 [XNIO-1 task-1] 3aJfrED_SL2uVEaUPW5RQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.039 [XNIO-1 task-1] 3aJfrED_SL2uVEaUPW5RQw DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.039 [XNIO-1 task-1] 3aJfrED_SL2uVEaUPW5RQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.042 [XNIO-1 task-1] YHXok7B1Sg6Dxv4JzfCecw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.042 [XNIO-1 task-1] YHXok7B1Sg6Dxv4JzfCecw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.042 [XNIO-1 task-1] YHXok7B1Sg6Dxv4JzfCecw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.042 [XNIO-1 task-1] YHXok7B1Sg6Dxv4JzfCecw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.042 [XNIO-1 task-1] YHXok7B1Sg6Dxv4JzfCecw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.044 [XNIO-1 task-1] za1rXSqvSw6nwF29W33MgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.044 [XNIO-1 task-1] za1rXSqvSw6nwF29W33MgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.044 [XNIO-1 task-1] za1rXSqvSw6nwF29W33MgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.044 [XNIO-1 task-1] za1rXSqvSw6nwF29W33MgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.044 [XNIO-1 task-1] za1rXSqvSw6nwF29W33MgA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.045 [XNIO-1 task-1] za1rXSqvSw6nwF29W33MgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.046 [XNIO-1 task-1] R9hWG0k0RgyX1rTvgJVYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.046 [XNIO-1 task-1] R9hWG0k0RgyX1rTvgJVYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.046 [XNIO-1 task-1] R9hWG0k0RgyX1rTvgJVYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.047 [XNIO-1 task-1] R9hWG0k0RgyX1rTvgJVYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.047 [XNIO-1 task-1] R9hWG0k0RgyX1rTvgJVYUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.048 [XNIO-1 task-1] 0Of-h2A0S8C4bnEzI5BlKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.048 [XNIO-1 task-1] 0Of-h2A0S8C4bnEzI5BlKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.048 [XNIO-1 task-1] 0Of-h2A0S8C4bnEzI5BlKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.049 [XNIO-1 task-1] 0Of-h2A0S8C4bnEzI5BlKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.049 [XNIO-1 task-1] 0Of-h2A0S8C4bnEzI5BlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.049 [XNIO-1 task-1] 0Of-h2A0S8C4bnEzI5BlKQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.055 [XNIO-1 task-1] pVUI93VAS7udMbdS8iJu4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.055 [XNIO-1 task-1] pVUI93VAS7udMbdS8iJu4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.055 [XNIO-1 task-1] pVUI93VAS7udMbdS8iJu4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.055 [XNIO-1 task-1] pVUI93VAS7udMbdS8iJu4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.055 [XNIO-1 task-1] pVUI93VAS7udMbdS8iJu4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.057 [XNIO-1 task-1] gFsBkZx9ShKp3HreMjHQRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.058 [XNIO-1 task-1] gFsBkZx9ShKp3HreMjHQRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.058 [XNIO-1 task-1] gFsBkZx9ShKp3HreMjHQRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.058 [XNIO-1 task-1] gFsBkZx9ShKp3HreMjHQRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.058 [XNIO-1 task-1] gFsBkZx9ShKp3HreMjHQRg DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.058 [XNIO-1 task-1] gFsBkZx9ShKp3HreMjHQRg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.060 [XNIO-1 task-1] nkFDO7G2SHu6G9Mk7a_XPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.060 [XNIO-1 task-1] nkFDO7G2SHu6G9Mk7a_XPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.060 [XNIO-1 task-1] nkFDO7G2SHu6G9Mk7a_XPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.060 [XNIO-1 task-1] nkFDO7G2SHu6G9Mk7a_XPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.060 [XNIO-1 task-1] nkFDO7G2SHu6G9Mk7a_XPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.064 [XNIO-1 task-1] CIg7KHiSSXmbC472pgTQoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.064 [XNIO-1 task-1] CIg7KHiSSXmbC472pgTQoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.065 [XNIO-1 task-1] CIg7KHiSSXmbC472pgTQoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.065 [XNIO-1 task-1] CIg7KHiSSXmbC472pgTQoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.065 [XNIO-1 task-1] CIg7KHiSSXmbC472pgTQoA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.065 [XNIO-1 task-1] CIg7KHiSSXmbC472pgTQoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.067 [XNIO-1 task-1] 0HjGoAp6TBeinMUZpCpS-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.067 [XNIO-1 task-1] 0HjGoAp6TBeinMUZpCpS-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.067 [XNIO-1 task-1] 0HjGoAp6TBeinMUZpCpS-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.067 [XNIO-1 task-1] 0HjGoAp6TBeinMUZpCpS-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.067 [XNIO-1 task-1] 0HjGoAp6TBeinMUZpCpS-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.069 [XNIO-1 task-1] 4F-8qNWJRpeFF7cLXQ9KPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.070 [XNIO-1 task-1] 4F-8qNWJRpeFF7cLXQ9KPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.070 [XNIO-1 task-1] 4F-8qNWJRpeFF7cLXQ9KPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.070 [XNIO-1 task-1] 4F-8qNWJRpeFF7cLXQ9KPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.070 [XNIO-1 task-1] 4F-8qNWJRpeFF7cLXQ9KPw DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.070 [XNIO-1 task-1] 4F-8qNWJRpeFF7cLXQ9KPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.072 [XNIO-1 task-1] UDgFGa0hR4Wa_Mmn_6xmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.072 [XNIO-1 task-1] UDgFGa0hR4Wa_Mmn_6xmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.072 [XNIO-1 task-1] UDgFGa0hR4Wa_Mmn_6xmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.072 [XNIO-1 task-1] UDgFGa0hR4Wa_Mmn_6xmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.072 [XNIO-1 task-1] UDgFGa0hR4Wa_Mmn_6xmQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.076 [XNIO-1 task-1] 2ytsjn9LQyaQiHDpdHGwwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.076 [XNIO-1 task-1] 2ytsjn9LQyaQiHDpdHGwwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.076 [XNIO-1 task-1] 2ytsjn9LQyaQiHDpdHGwwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.076 [XNIO-1 task-1] 2ytsjn9LQyaQiHDpdHGwwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.076 [XNIO-1 task-1] 2ytsjn9LQyaQiHDpdHGwwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.081 [XNIO-1 task-1] 7yp-hsIOTLyVj5Hwvc0wng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.081 [XNIO-1 task-1] 7yp-hsIOTLyVj5Hwvc0wng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.081 [XNIO-1 task-1] 7yp-hsIOTLyVj5Hwvc0wng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.081 [XNIO-1 task-1] 7yp-hsIOTLyVj5Hwvc0wng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.081 [XNIO-1 task-1] 7yp-hsIOTLyVj5Hwvc0wng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.082 [XNIO-1 task-1] 7yp-hsIOTLyVj5Hwvc0wng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:01.088 [XNIO-1 task-1] zcB6B4ziSTmC03MRAnri-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.088 [XNIO-1 task-1] zcB6B4ziSTmC03MRAnri-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.088 [XNIO-1 task-1] zcB6B4ziSTmC03MRAnri-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.088 [XNIO-1 task-1] zcB6B4ziSTmC03MRAnri-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.088 [XNIO-1 task-1] zcB6B4ziSTmC03MRAnri-A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.090 [XNIO-1 task-1] bs3lIXFuR_a4rdH7vcYNJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.090 [XNIO-1 task-1] bs3lIXFuR_a4rdH7vcYNJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.091 [XNIO-1 task-1] bs3lIXFuR_a4rdH7vcYNJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.091 [XNIO-1 task-1] bs3lIXFuR_a4rdH7vcYNJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.091 [XNIO-1 task-1] bs3lIXFuR_a4rdH7vcYNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.091 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.097 [XNIO-1 task-1] UmdbxP41RmudHCBQKRAfRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.097 [XNIO-1 task-1] UmdbxP41RmudHCBQKRAfRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.097 [XNIO-1 task-1] UmdbxP41RmudHCBQKRAfRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.097 [XNIO-1 task-1] UmdbxP41RmudHCBQKRAfRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.097 [XNIO-1 task-1] UmdbxP41RmudHCBQKRAfRA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.097 [XNIO-1 task-1] UmdbxP41RmudHCBQKRAfRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.099 [XNIO-1 task-1] 6eDYlnAmRKC4N1DYyQANhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.099 [XNIO-1 task-1] 6eDYlnAmRKC4N1DYyQANhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.099 [XNIO-1 task-1] 6eDYlnAmRKC4N1DYyQANhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.100 [XNIO-1 task-1] 6eDYlnAmRKC4N1DYyQANhw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.102 [XNIO-1 task-1] 2Z1sKT8zRjmXPTjXFn_wcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.102 [XNIO-1 task-1] 2Z1sKT8zRjmXPTjXFn_wcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.103 [XNIO-1 task-1] 2Z1sKT8zRjmXPTjXFn_wcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.103 [XNIO-1 task-1] 2Z1sKT8zRjmXPTjXFn_wcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.103 [XNIO-1 task-1] 2Z1sKT8zRjmXPTjXFn_wcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.103 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.108 [XNIO-1 task-1] EKTZMEb3TYWheje1I26sUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.109 [XNIO-1 task-1] EKTZMEb3TYWheje1I26sUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.109 [XNIO-1 task-1] EKTZMEb3TYWheje1I26sUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.109 [XNIO-1 task-1] EKTZMEb3TYWheje1I26sUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.109 [XNIO-1 task-1] EKTZMEb3TYWheje1I26sUg DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.109 [XNIO-1 task-1] EKTZMEb3TYWheje1I26sUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.111 [XNIO-1 task-1] Q7TKqCBkRhiAqe5jROpo_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.111 [XNIO-1 task-1] Q7TKqCBkRhiAqe5jROpo_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.111 [XNIO-1 task-1] Q7TKqCBkRhiAqe5jROpo_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.112 [XNIO-1 task-1] Q7TKqCBkRhiAqe5jROpo_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.117 [XNIO-1 task-1] rN7b5eUwSvqjxZns60fglQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.117 [XNIO-1 task-1] rN7b5eUwSvqjxZns60fglQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.117 [XNIO-1 task-1] rN7b5eUwSvqjxZns60fglQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.117 [XNIO-1 task-1] rN7b5eUwSvqjxZns60fglQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.117 [XNIO-1 task-1] rN7b5eUwSvqjxZns60fglQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.118 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.120 [XNIO-1 task-1] iXOCdsb-Qcm1Is1BVur7OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.120 [XNIO-1 task-1] iXOCdsb-Qcm1Is1BVur7OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.120 [XNIO-1 task-1] iXOCdsb-Qcm1Is1BVur7OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.120 [XNIO-1 task-1] iXOCdsb-Qcm1Is1BVur7OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.121 [XNIO-1 task-1] iXOCdsb-Qcm1Is1BVur7OA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.121 [XNIO-1 task-1] iXOCdsb-Qcm1Is1BVur7OA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.122 [XNIO-1 task-1] 5vVPy8NlQIKBGoxg4ZcuMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.122 [XNIO-1 task-1] 5vVPy8NlQIKBGoxg4ZcuMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.122 [XNIO-1 task-1] 5vVPy8NlQIKBGoxg4ZcuMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.122 [XNIO-1 task-1] 5vVPy8NlQIKBGoxg4ZcuMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.123 [XNIO-1 task-1] 5vVPy8NlQIKBGoxg4ZcuMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.123 [XNIO-1 task-1] 5vVPy8NlQIKBGoxg4ZcuMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:01.126 [XNIO-1 task-1] BnS0awMXQRqARLh8nia74A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.126 [XNIO-1 task-1] BnS0awMXQRqARLh8nia74A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.126 [XNIO-1 task-1] BnS0awMXQRqARLh8nia74A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.127 [XNIO-1 task-1] BnS0awMXQRqARLh8nia74A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.127 [XNIO-1 task-1] BnS0awMXQRqARLh8nia74A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.128 [XNIO-1 task-1] e1O5mISNR9OkoRgC2YR0oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.128 [XNIO-1 task-1] e1O5mISNR9OkoRgC2YR0oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.128 [XNIO-1 task-1] e1O5mISNR9OkoRgC2YR0oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.128 [XNIO-1 task-1] e1O5mISNR9OkoRgC2YR0oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.128 [XNIO-1 task-1] e1O5mISNR9OkoRgC2YR0oQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.131 [XNIO-1 task-1] HCeH339-S3iJFSQOVJ4Jhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.131 [XNIO-1 task-1] HCeH339-S3iJFSQOVJ4Jhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.131 [XNIO-1 task-1] HCeH339-S3iJFSQOVJ4Jhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.131 [XNIO-1 task-1] HCeH339-S3iJFSQOVJ4Jhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.131 [XNIO-1 task-1] HCeH339-S3iJFSQOVJ4Jhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.133 [XNIO-1 task-1] WVPA1mXpQbWnpF2Bl9hbpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.133 [XNIO-1 task-1] WVPA1mXpQbWnpF2Bl9hbpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.133 [XNIO-1 task-1] WVPA1mXpQbWnpF2Bl9hbpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.133 [XNIO-1 task-1] WVPA1mXpQbWnpF2Bl9hbpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.133 [XNIO-1 task-1] WVPA1mXpQbWnpF2Bl9hbpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c162f18c-1966-42c8-b8e6-e8f7436fad9c", "c162f18c-1966-42c8-b8e6-e8f7436fad9c", refreshToken) +09:03:01.133 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:01.136 [XNIO-1 task-1] Up0JkQnfRuC5KzIpvF-_UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.136 [XNIO-1 task-1] Up0JkQnfRuC5KzIpvF-_UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.137 [XNIO-1 task-1] Up0JkQnfRuC5KzIpvF-_UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.137 [XNIO-1 task-1] Up0JkQnfRuC5KzIpvF-_UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.137 [XNIO-1 task-1] Up0JkQnfRuC5KzIpvF-_UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.137 [XNIO-1 task-1] Up0JkQnfRuC5KzIpvF-_UQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.138 [XNIO-1 task-1] os2fxKVIRxy4mYwtNeNrVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:01.138 [XNIO-1 task-1] os2fxKVIRxy4mYwtNeNrVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.138 [XNIO-1 task-1] os2fxKVIRxy4mYwtNeNrVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.138 [XNIO-1 task-1] os2fxKVIRxy4mYwtNeNrVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:01.138 [XNIO-1 task-1] os2fxKVIRxy4mYwtNeNrVQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:01.139 [XNIO-1 task-1] os2fxKVIRxy4mYwtNeNrVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c162f18c-1966-42c8-b8e6-e8f7436fad9c is not found.","severity":"ERROR"} +09:03:01.141 [XNIO-1 task-1] _zEAkFYZSWWnttflyrFYdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.141 [XNIO-1 task-1] _zEAkFYZSWWnttflyrFYdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.141 [XNIO-1 task-1] _zEAkFYZSWWnttflyrFYdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.141 [XNIO-1 task-1] _zEAkFYZSWWnttflyrFYdw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.144 [XNIO-1 task-1] xUDD1uePSL2ADuGnyivCWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.144 [XNIO-1 task-1] xUDD1uePSL2ADuGnyivCWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.144 [XNIO-1 task-1] xUDD1uePSL2ADuGnyivCWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.144 [XNIO-1 task-1] xUDD1uePSL2ADuGnyivCWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.144 [XNIO-1 task-1] xUDD1uePSL2ADuGnyivCWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.144 [XNIO-1 task-1] xUDD1uePSL2ADuGnyivCWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.147 [XNIO-1 task-1] TgCwNLRoTk2VrG_-pK0d6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.147 [XNIO-1 task-1] TgCwNLRoTk2VrG_-pK0d6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.147 [XNIO-1 task-1] TgCwNLRoTk2VrG_-pK0d6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.148 [XNIO-1 task-1] TgCwNLRoTk2VrG_-pK0d6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.151 [XNIO-1 task-1] FJxpZnzgTQ6fxKan8E9oMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.151 [XNIO-1 task-1] FJxpZnzgTQ6fxKan8E9oMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.151 [XNIO-1 task-1] FJxpZnzgTQ6fxKan8E9oMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.151 [XNIO-1 task-1] FJxpZnzgTQ6fxKan8E9oMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.151 [XNIO-1 task-1] FJxpZnzgTQ6fxKan8E9oMA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.151 [XNIO-1 task-1] FJxpZnzgTQ6fxKan8E9oMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.153 [XNIO-1 task-1] pR3a2dRXSu6pSR-92wsX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.153 [XNIO-1 task-1] pR3a2dRXSu6pSR-92wsX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.153 [XNIO-1 task-1] pR3a2dRXSu6pSR-92wsX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.153 [XNIO-1 task-1] pR3a2dRXSu6pSR-92wsX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.153 [XNIO-1 task-1] pR3a2dRXSu6pSR-92wsX-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.155 [XNIO-1 task-1] OMUtNZXOTQeLuUhwKNrxHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.155 [XNIO-1 task-1] OMUtNZXOTQeLuUhwKNrxHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.155 [XNIO-1 task-1] OMUtNZXOTQeLuUhwKNrxHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.155 [XNIO-1 task-1] OMUtNZXOTQeLuUhwKNrxHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.155 [XNIO-1 task-1] OMUtNZXOTQeLuUhwKNrxHg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.159 [XNIO-1 task-1] FBB5dnFoRK-uJxyAsINGNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.159 [XNIO-1 task-1] FBB5dnFoRK-uJxyAsINGNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.159 [XNIO-1 task-1] FBB5dnFoRK-uJxyAsINGNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.159 [XNIO-1 task-1] FBB5dnFoRK-uJxyAsINGNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.159 [XNIO-1 task-1] FBB5dnFoRK-uJxyAsINGNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.161 [XNIO-1 task-1] hFjxs4-SQSKVmgERQdG5BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.161 [XNIO-1 task-1] hFjxs4-SQSKVmgERQdG5BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.161 [XNIO-1 task-1] hFjxs4-SQSKVmgERQdG5BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.161 [XNIO-1 task-1] hFjxs4-SQSKVmgERQdG5BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.161 [XNIO-1 task-1] hFjxs4-SQSKVmgERQdG5BA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.161 [XNIO-1 task-1] hFjxs4-SQSKVmgERQdG5BA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.162 [XNIO-1 task-1] 7BNz4aElRGy-7LrwpaJtHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.162 [XNIO-1 task-1] 7BNz4aElRGy-7LrwpaJtHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.163 [XNIO-1 task-1] 7BNz4aElRGy-7LrwpaJtHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.163 [XNIO-1 task-1] 7BNz4aElRGy-7LrwpaJtHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.163 [XNIO-1 task-1] 7BNz4aElRGy-7LrwpaJtHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.164 [XNIO-1 task-1] AczhnL7NS4mqHGmvEvMUKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.164 [XNIO-1 task-1] AczhnL7NS4mqHGmvEvMUKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.164 [XNIO-1 task-1] AczhnL7NS4mqHGmvEvMUKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.165 [XNIO-1 task-1] AczhnL7NS4mqHGmvEvMUKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.165 [XNIO-1 task-1] AczhnL7NS4mqHGmvEvMUKA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.165 [XNIO-1 task-1] AczhnL7NS4mqHGmvEvMUKA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.166 [XNIO-1 task-1] JEzbxhWTSI-LokZhXEgmHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.167 [XNIO-1 task-1] JEzbxhWTSI-LokZhXEgmHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.167 [XNIO-1 task-1] JEzbxhWTSI-LokZhXEgmHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.167 [XNIO-1 task-1] JEzbxhWTSI-LokZhXEgmHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.167 [XNIO-1 task-1] JEzbxhWTSI-LokZhXEgmHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.170 [XNIO-1 task-1] Z8gxcYNzQSG8VhZKjmCbYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.170 [XNIO-1 task-1] Z8gxcYNzQSG8VhZKjmCbYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.170 [XNIO-1 task-1] Z8gxcYNzQSG8VhZKjmCbYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.170 [XNIO-1 task-1] Z8gxcYNzQSG8VhZKjmCbYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.171 [XNIO-1 task-1] Z8gxcYNzQSG8VhZKjmCbYA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.171 [XNIO-1 task-1] Z8gxcYNzQSG8VhZKjmCbYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.172 [XNIO-1 task-1] 5uZL3DYERdSvv50X8260yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.172 [XNIO-1 task-1] 5uZL3DYERdSvv50X8260yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.172 [XNIO-1 task-1] 5uZL3DYERdSvv50X8260yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.173 [XNIO-1 task-1] 5uZL3DYERdSvv50X8260yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.173 [XNIO-1 task-1] 5uZL3DYERdSvv50X8260yg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.174 [XNIO-1 task-1] rtpMAQRSR8-Kn5JjkCAQqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.174 [XNIO-1 task-1] rtpMAQRSR8-Kn5JjkCAQqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.174 [XNIO-1 task-1] rtpMAQRSR8-Kn5JjkCAQqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.174 [XNIO-1 task-1] rtpMAQRSR8-Kn5JjkCAQqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.174 [XNIO-1 task-1] rtpMAQRSR8-Kn5JjkCAQqg DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.175 [XNIO-1 task-1] rtpMAQRSR8-Kn5JjkCAQqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.176 [XNIO-1 task-1] 3qnPfmyUQlK-0wcoeCJCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.176 [XNIO-1 task-1] 3qnPfmyUQlK-0wcoeCJCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.176 [XNIO-1 task-1] 3qnPfmyUQlK-0wcoeCJCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.176 [XNIO-1 task-1] 3qnPfmyUQlK-0wcoeCJCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.177 [XNIO-1 task-1] 3qnPfmyUQlK-0wcoeCJCXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.178 [XNIO-1 task-1] YZ15uOpdQGuMN1N639iIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.178 [XNIO-1 task-1] YZ15uOpdQGuMN1N639iIIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.178 [XNIO-1 task-1] YZ15uOpdQGuMN1N639iIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.178 [XNIO-1 task-1] YZ15uOpdQGuMN1N639iIIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.178 [XNIO-1 task-1] YZ15uOpdQGuMN1N639iIIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.182 [XNIO-1 task-1] NXToEfjqRFWdeJKQ1ppTwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.182 [XNIO-1 task-1] NXToEfjqRFWdeJKQ1ppTwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.182 [XNIO-1 task-1] NXToEfjqRFWdeJKQ1ppTwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.182 [XNIO-1 task-1] NXToEfjqRFWdeJKQ1ppTwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.182 [XNIO-1 task-1] NXToEfjqRFWdeJKQ1ppTwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.184 [XNIO-1 task-1] Btg3lUbjRlKFBdXNUaq4CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.184 [XNIO-1 task-1] Btg3lUbjRlKFBdXNUaq4CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.184 [XNIO-1 task-1] Btg3lUbjRlKFBdXNUaq4CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.184 [XNIO-1 task-1] Btg3lUbjRlKFBdXNUaq4CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.184 [XNIO-1 task-1] Btg3lUbjRlKFBdXNUaq4CA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.184 [XNIO-1 task-1] Btg3lUbjRlKFBdXNUaq4CA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.185 [XNIO-1 task-1] fvwAJJddSIuVKR8uBORzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.186 [XNIO-1 task-1] fvwAJJddSIuVKR8uBORzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.186 [XNIO-1 task-1] fvwAJJddSIuVKR8uBORzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.186 [XNIO-1 task-1] fvwAJJddSIuVKR8uBORzMA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.190 [XNIO-1 task-1] PYC-OEyySde9YClIX4xBdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.190 [XNIO-1 task-1] PYC-OEyySde9YClIX4xBdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.190 [XNIO-1 task-1] PYC-OEyySde9YClIX4xBdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.190 [XNIO-1 task-1] PYC-OEyySde9YClIX4xBdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.191 [XNIO-1 task-1] PYC-OEyySde9YClIX4xBdg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.194 [XNIO-1 task-1] Q1EbhZk2Sjyz3YYIYjvRfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.194 [XNIO-1 task-1] Q1EbhZk2Sjyz3YYIYjvRfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.194 [XNIO-1 task-1] Q1EbhZk2Sjyz3YYIYjvRfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.194 [XNIO-1 task-1] Q1EbhZk2Sjyz3YYIYjvRfg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.197 [XNIO-1 task-1] acspX49XSBWBuLOfVJzXXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.197 [XNIO-1 task-1] acspX49XSBWBuLOfVJzXXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.197 [XNIO-1 task-1] acspX49XSBWBuLOfVJzXXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.197 [XNIO-1 task-1] acspX49XSBWBuLOfVJzXXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.197 [XNIO-1 task-1] acspX49XSBWBuLOfVJzXXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.201 [XNIO-1 task-1] jUihI8HPQUmA2Qd7iX2K-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.201 [XNIO-1 task-1] jUihI8HPQUmA2Qd7iX2K-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.201 [XNIO-1 task-1] jUihI8HPQUmA2Qd7iX2K-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.201 [XNIO-1 task-1] jUihI8HPQUmA2Qd7iX2K-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.201 [XNIO-1 task-1] jUihI8HPQUmA2Qd7iX2K-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.203 [XNIO-1 task-1] z1c-N-AuSU-wtpjpb2tryA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.203 [XNIO-1 task-1] z1c-N-AuSU-wtpjpb2tryA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.203 [XNIO-1 task-1] z1c-N-AuSU-wtpjpb2tryA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.203 [XNIO-1 task-1] z1c-N-AuSU-wtpjpb2tryA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.203 [XNIO-1 task-1] z1c-N-AuSU-wtpjpb2tryA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.205 [XNIO-1 task-1] I4QE4fPeSrGUVt6B1Qd2xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.206 [XNIO-1 task-1] I4QE4fPeSrGUVt6B1Qd2xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.206 [XNIO-1 task-1] I4QE4fPeSrGUVt6B1Qd2xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.206 [XNIO-1 task-1] I4QE4fPeSrGUVt6B1Qd2xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.206 [XNIO-1 task-1] I4QE4fPeSrGUVt6B1Qd2xQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.207 [XNIO-1 task-1] 5MaY5kH1TMqI2UXpt3y3Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.207 [XNIO-1 task-1] 5MaY5kH1TMqI2UXpt3y3Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.207 [XNIO-1 task-1] 5MaY5kH1TMqI2UXpt3y3Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.207 [XNIO-1 task-1] 5MaY5kH1TMqI2UXpt3y3Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.208 [XNIO-1 task-1] 5MaY5kH1TMqI2UXpt3y3Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.208 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.211 [XNIO-1 task-1] o7RFqGMsQDWMbrE5hcro-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.211 [XNIO-1 task-1] o7RFqGMsQDWMbrE5hcro-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.211 [XNIO-1 task-1] o7RFqGMsQDWMbrE5hcro-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.211 [XNIO-1 task-1] o7RFqGMsQDWMbrE5hcro-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.211 [XNIO-1 task-1] o7RFqGMsQDWMbrE5hcro-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.211 [XNIO-1 task-1] o7RFqGMsQDWMbrE5hcro-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.213 [XNIO-1 task-1] iWE1Gjp-S7OjMrqxDqZ0RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.213 [XNIO-1 task-1] iWE1Gjp-S7OjMrqxDqZ0RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.213 [XNIO-1 task-1] iWE1Gjp-S7OjMrqxDqZ0RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.213 [XNIO-1 task-1] iWE1Gjp-S7OjMrqxDqZ0RQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.216 [XNIO-1 task-1] aLVajJoGSbqkiT27tTM62w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.216 [XNIO-1 task-1] aLVajJoGSbqkiT27tTM62w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.216 [XNIO-1 task-1] aLVajJoGSbqkiT27tTM62w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.216 [XNIO-1 task-1] aLVajJoGSbqkiT27tTM62w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.216 [XNIO-1 task-1] aLVajJoGSbqkiT27tTM62w DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.217 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.220 [XNIO-1 task-1] JVOuGdtARVyt8SOUCxD1SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.220 [XNIO-1 task-1] JVOuGdtARVyt8SOUCxD1SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.220 [XNIO-1 task-1] JVOuGdtARVyt8SOUCxD1SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.220 [XNIO-1 task-1] JVOuGdtARVyt8SOUCxD1SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.220 [XNIO-1 task-1] JVOuGdtARVyt8SOUCxD1SA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.221 [XNIO-1 task-1] JVOuGdtARVyt8SOUCxD1SA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.223 [XNIO-1 task-1] 9LP5CLHsTn68Ka6njwzQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.223 [XNIO-1 task-1] 9LP5CLHsTn68Ka6njwzQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.223 [XNIO-1 task-1] 9LP5CLHsTn68Ka6njwzQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.223 [XNIO-1 task-1] 9LP5CLHsTn68Ka6njwzQEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.226 [XNIO-1 task-1] pnczV9g7QMqYHtrhwv3EDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.226 [XNIO-1 task-1] pnczV9g7QMqYHtrhwv3EDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.226 [XNIO-1 task-1] pnczV9g7QMqYHtrhwv3EDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.226 [XNIO-1 task-1] pnczV9g7QMqYHtrhwv3EDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.226 [XNIO-1 task-1] pnczV9g7QMqYHtrhwv3EDw DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.226 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.229 [XNIO-1 task-1] cT59m4aqSvisL8qSkmw_Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.229 [XNIO-1 task-1] cT59m4aqSvisL8qSkmw_Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.229 [XNIO-1 task-1] cT59m4aqSvisL8qSkmw_Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.229 [XNIO-1 task-1] cT59m4aqSvisL8qSkmw_Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.229 [XNIO-1 task-1] cT59m4aqSvisL8qSkmw_Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.229 [XNIO-1 task-1] cT59m4aqSvisL8qSkmw_Ag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.231 [XNIO-1 task-1] 0Ddyvb7FQ0qQY5WzODhiCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.231 [XNIO-1 task-1] 0Ddyvb7FQ0qQY5WzODhiCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.232 [XNIO-1 task-1] 0Ddyvb7FQ0qQY5WzODhiCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.232 [XNIO-1 task-1] 0Ddyvb7FQ0qQY5WzODhiCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.232 [XNIO-1 task-1] 0Ddyvb7FQ0qQY5WzODhiCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.233 [XNIO-1 task-1] 0Ddyvb7FQ0qQY5WzODhiCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:01.234 [XNIO-1 task-1] ya5-F3UkQOSje7vvqVUqSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.234 [XNIO-1 task-1] ya5-F3UkQOSje7vvqVUqSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.234 [XNIO-1 task-1] ya5-F3UkQOSje7vvqVUqSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.234 [XNIO-1 task-1] ya5-F3UkQOSje7vvqVUqSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.234 [XNIO-1 task-1] ya5-F3UkQOSje7vvqVUqSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.236 [XNIO-1 task-1] 2OGVAysRQs24C6ZABusEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.236 [XNIO-1 task-1] 2OGVAysRQs24C6ZABusEcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.236 [XNIO-1 task-1] 2OGVAysRQs24C6ZABusEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.236 [XNIO-1 task-1] 2OGVAysRQs24C6ZABusEcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.236 [XNIO-1 task-1] 2OGVAysRQs24C6ZABusEcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.240 [XNIO-1 task-1] rZJnqceTR52amxyqhJRzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.240 [XNIO-1 task-1] rZJnqceTR52amxyqhJRzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.240 [XNIO-1 task-1] rZJnqceTR52amxyqhJRzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.240 [XNIO-1 task-1] rZJnqceTR52amxyqhJRzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.240 [XNIO-1 task-1] rZJnqceTR52amxyqhJRzUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.241 [XNIO-1 task-1] rZJnqceTR52amxyqhJRzUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:01.243 [XNIO-1 task-1] NMMxtKYsSJOeGTxsRuBkbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.243 [XNIO-1 task-1] NMMxtKYsSJOeGTxsRuBkbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.243 [XNIO-1 task-1] NMMxtKYsSJOeGTxsRuBkbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.243 [XNIO-1 task-1] NMMxtKYsSJOeGTxsRuBkbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.246 [XNIO-1 task-1] hdjJBBgDTDOCzX-NAclWuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.247 [XNIO-1 task-1] hdjJBBgDTDOCzX-NAclWuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.247 [XNIO-1 task-1] hdjJBBgDTDOCzX-NAclWuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.247 [XNIO-1 task-1] hdjJBBgDTDOCzX-NAclWuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.247 [XNIO-1 task-1] hdjJBBgDTDOCzX-NAclWuA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.251 [XNIO-1 task-1] QmS8MSi2Qeuuy9FewXR1yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.251 [XNIO-1 task-1] QmS8MSi2Qeuuy9FewXR1yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.251 [XNIO-1 task-1] QmS8MSi2Qeuuy9FewXR1yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.251 [XNIO-1 task-1] QmS8MSi2Qeuuy9FewXR1yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.251 [XNIO-1 task-1] QmS8MSi2Qeuuy9FewXR1yg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.253 [XNIO-1 task-1] T-KnfwBvRL6NIGRmskhumA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.253 [XNIO-1 task-1] T-KnfwBvRL6NIGRmskhumA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.253 [XNIO-1 task-1] T-KnfwBvRL6NIGRmskhumA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.253 [XNIO-1 task-1] T-KnfwBvRL6NIGRmskhumA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.253 [XNIO-1 task-1] T-KnfwBvRL6NIGRmskhumA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.256 [XNIO-1 task-1] J-ilXJRwSra30p2-oTHL6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.257 [XNIO-1 task-1] J-ilXJRwSra30p2-oTHL6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.257 [XNIO-1 task-1] J-ilXJRwSra30p2-oTHL6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.257 [XNIO-1 task-1] J-ilXJRwSra30p2-oTHL6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.261 [XNIO-1 task-1] uyQwK-DxT-aDlrNTLuhU0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.261 [XNIO-1 task-1] uyQwK-DxT-aDlrNTLuhU0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.261 [XNIO-1 task-1] uyQwK-DxT-aDlrNTLuhU0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.261 [XNIO-1 task-1] uyQwK-DxT-aDlrNTLuhU0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.261 [XNIO-1 task-1] uyQwK-DxT-aDlrNTLuhU0g DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.262 [XNIO-1 task-1] uyQwK-DxT-aDlrNTLuhU0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.263 [XNIO-1 task-1] 7fFQuUGzRjiHM8hCMnWUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.263 [XNIO-1 task-1] 7fFQuUGzRjiHM8hCMnWUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.263 [XNIO-1 task-1] 7fFQuUGzRjiHM8hCMnWUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.263 [XNIO-1 task-1] 7fFQuUGzRjiHM8hCMnWUfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.266 [XNIO-1 task-1] chm9TTOwRPa9sH_PKc2w8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.267 [XNIO-1 task-1] chm9TTOwRPa9sH_PKc2w8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.267 [XNIO-1 task-1] chm9TTOwRPa9sH_PKc2w8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.267 [XNIO-1 task-1] chm9TTOwRPa9sH_PKc2w8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.267 [XNIO-1 task-1] chm9TTOwRPa9sH_PKc2w8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c162f18c-1966-42c8-b8e6-e8f7436fad9c", "c162f18c-1966-42c8-b8e6-e8f7436fad9c", refreshToken) +09:03:01.267 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:01.271 [XNIO-1 task-1] xKDWzXYJR3G041ljaJmmLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.272 [XNIO-1 task-1] xKDWzXYJR3G041ljaJmmLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.272 [XNIO-1 task-1] xKDWzXYJR3G041ljaJmmLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.272 [XNIO-1 task-1] xKDWzXYJR3G041ljaJmmLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.272 [XNIO-1 task-1] xKDWzXYJR3G041ljaJmmLA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.272 [XNIO-1 task-1] xKDWzXYJR3G041ljaJmmLA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.274 [XNIO-1 task-1] wrMLRjnmRWuh_Cdqee8j9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.274 [XNIO-1 task-1] wrMLRjnmRWuh_Cdqee8j9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.274 [XNIO-1 task-1] wrMLRjnmRWuh_Cdqee8j9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.274 [XNIO-1 task-1] wrMLRjnmRWuh_Cdqee8j9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.277 [XNIO-1 task-1] UaKijIa4Sv2lWb66ZPW8jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.277 [XNIO-1 task-1] UaKijIa4Sv2lWb66ZPW8jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.277 [XNIO-1 task-1] UaKijIa4Sv2lWb66ZPW8jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.277 [XNIO-1 task-1] UaKijIa4Sv2lWb66ZPW8jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c162f18c-1966-42c8-b8e6-e8f7436fad9c, base path is set to: null +09:03:01.277 [XNIO-1 task-1] UaKijIa4Sv2lWb66ZPW8jA DEBUG com.networknt.schema.TypeValidator debug - validate( "c162f18c-1966-42c8-b8e6-e8f7436fad9c", "c162f18c-1966-42c8-b8e6-e8f7436fad9c", refreshToken) +09:03:01.278 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c162f18c-1966-42c8-b8e6-e8f7436fad9c +09:03:01.282 [XNIO-1 task-1] 4brDuT-PQpizYH8S8-aUcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.282 [XNIO-1 task-1] 4brDuT-PQpizYH8S8-aUcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.282 [XNIO-1 task-1] 4brDuT-PQpizYH8S8-aUcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.282 [XNIO-1 task-1] 4brDuT-PQpizYH8S8-aUcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.282 [XNIO-1 task-1] 4brDuT-PQpizYH8S8-aUcw DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.282 [XNIO-1 task-1] 4brDuT-PQpizYH8S8-aUcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.284 [XNIO-1 task-1] rwi_JK6nR4m7Ao-N3MIPTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.284 [XNIO-1 task-1] rwi_JK6nR4m7Ao-N3MIPTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.284 [XNIO-1 task-1] rwi_JK6nR4m7Ao-N3MIPTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.284 [XNIO-1 task-1] rwi_JK6nR4m7Ao-N3MIPTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.284 [XNIO-1 task-1] rwi_JK6nR4m7Ao-N3MIPTw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.286 [XNIO-1 task-1] PJB9rTRMSvKfX8izZuqToA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.286 [XNIO-1 task-1] PJB9rTRMSvKfX8izZuqToA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.286 [XNIO-1 task-1] PJB9rTRMSvKfX8izZuqToA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.286 [XNIO-1 task-1] PJB9rTRMSvKfX8izZuqToA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.286 [XNIO-1 task-1] PJB9rTRMSvKfX8izZuqToA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.286 [XNIO-1 task-1] PJB9rTRMSvKfX8izZuqToA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.288 [XNIO-1 task-1] -IW8_TMEQ76qIqf_WYT4TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.288 [XNIO-1 task-1] -IW8_TMEQ76qIqf_WYT4TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.288 [XNIO-1 task-1] -IW8_TMEQ76qIqf_WYT4TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.288 [XNIO-1 task-1] -IW8_TMEQ76qIqf_WYT4TQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.293 [XNIO-1 task-1] 6wFeNV6lS8-LCMdRw7gHoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.293 [XNIO-1 task-1] 6wFeNV6lS8-LCMdRw7gHoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.293 [XNIO-1 task-1] 6wFeNV6lS8-LCMdRw7gHoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.293 [XNIO-1 task-1] 6wFeNV6lS8-LCMdRw7gHoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.293 [XNIO-1 task-1] 6wFeNV6lS8-LCMdRw7gHoA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.296 [XNIO-1 task-1] TWwJjqvYQsuIm7oGqgGDvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.296 [XNIO-1 task-1] TWwJjqvYQsuIm7oGqgGDvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.296 [XNIO-1 task-1] TWwJjqvYQsuIm7oGqgGDvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.296 [XNIO-1 task-1] TWwJjqvYQsuIm7oGqgGDvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.296 [XNIO-1 task-1] TWwJjqvYQsuIm7oGqgGDvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.298 [XNIO-1 task-1] RUsiR6KOS3akkKgW6SnycQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.298 [XNIO-1 task-1] RUsiR6KOS3akkKgW6SnycQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.298 [XNIO-1 task-1] RUsiR6KOS3akkKgW6SnycQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.298 [XNIO-1 task-1] RUsiR6KOS3akkKgW6SnycQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.298 [XNIO-1 task-1] RUsiR6KOS3akkKgW6SnycQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.298 [XNIO-1 task-1] RUsiR6KOS3akkKgW6SnycQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.302 [XNIO-1 task-1] mM3eaP5BQZOl9I3E4tlFYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.302 [XNIO-1 task-1] mM3eaP5BQZOl9I3E4tlFYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.302 [XNIO-1 task-1] mM3eaP5BQZOl9I3E4tlFYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.302 [XNIO-1 task-1] mM3eaP5BQZOl9I3E4tlFYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.302 [XNIO-1 task-1] mM3eaP5BQZOl9I3E4tlFYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.304 [XNIO-1 task-1] SXhGqpncR92aDnsYFKaJ2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.304 [XNIO-1 task-1] SXhGqpncR92aDnsYFKaJ2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.304 [XNIO-1 task-1] SXhGqpncR92aDnsYFKaJ2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.304 [XNIO-1 task-1] SXhGqpncR92aDnsYFKaJ2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.304 [XNIO-1 task-1] SXhGqpncR92aDnsYFKaJ2A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.307 [XNIO-1 task-1] OIm_IelLQ7uQrG033JjAOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.307 [XNIO-1 task-1] OIm_IelLQ7uQrG033JjAOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.307 [XNIO-1 task-1] OIm_IelLQ7uQrG033JjAOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.307 [XNIO-1 task-1] OIm_IelLQ7uQrG033JjAOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.307 [XNIO-1 task-1] OIm_IelLQ7uQrG033JjAOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.309 [XNIO-1 task-1] jvO88sNeQkmg2Z5nEqXlEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.309 [XNIO-1 task-1] jvO88sNeQkmg2Z5nEqXlEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.309 [XNIO-1 task-1] jvO88sNeQkmg2Z5nEqXlEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.309 [XNIO-1 task-1] jvO88sNeQkmg2Z5nEqXlEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.309 [XNIO-1 task-1] jvO88sNeQkmg2Z5nEqXlEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.309 [XNIO-1 task-1] jvO88sNeQkmg2Z5nEqXlEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.317 [XNIO-1 task-1] 8PY3v2o8TbuDAslge7HKrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.318 [XNIO-1 task-1] 8PY3v2o8TbuDAslge7HKrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.318 [XNIO-1 task-1] 8PY3v2o8TbuDAslge7HKrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.318 [XNIO-1 task-1] 8PY3v2o8TbuDAslge7HKrA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.321 [XNIO-1 task-1] 9OMBghvwQbK9JJzZL_Gu9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.321 [XNIO-1 task-1] 9OMBghvwQbK9JJzZL_Gu9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.321 [XNIO-1 task-1] 9OMBghvwQbK9JJzZL_Gu9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.321 [XNIO-1 task-1] 9OMBghvwQbK9JJzZL_Gu9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.321 [XNIO-1 task-1] 9OMBghvwQbK9JJzZL_Gu9w DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.321 [XNIO-1 task-1] 9OMBghvwQbK9JJzZL_Gu9w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.323 [XNIO-1 task-1] IzONG9CGSjKMLoRVr5tJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.323 [XNIO-1 task-1] IzONG9CGSjKMLoRVr5tJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.323 [XNIO-1 task-1] IzONG9CGSjKMLoRVr5tJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.323 [XNIO-1 task-1] IzONG9CGSjKMLoRVr5tJxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.329 [XNIO-1 task-1] gJQEmkZoQteXf3lNIfDHVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.329 [XNIO-1 task-1] gJQEmkZoQteXf3lNIfDHVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.329 [XNIO-1 task-1] gJQEmkZoQteXf3lNIfDHVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.329 [XNIO-1 task-1] gJQEmkZoQteXf3lNIfDHVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.329 [XNIO-1 task-1] gJQEmkZoQteXf3lNIfDHVA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.332 [XNIO-1 task-1] EQDsmp-GSF-CKJ898Zh9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.332 [XNIO-1 task-1] EQDsmp-GSF-CKJ898Zh9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.332 [XNIO-1 task-1] EQDsmp-GSF-CKJ898Zh9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.332 [XNIO-1 task-1] EQDsmp-GSF-CKJ898Zh9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.333 [XNIO-1 task-1] EQDsmp-GSF-CKJ898Zh9tw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.334 [XNIO-1 task-1] nSovyWW7Qwau9vy1YD0mGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.334 [XNIO-1 task-1] nSovyWW7Qwau9vy1YD0mGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.334 [XNIO-1 task-1] nSovyWW7Qwau9vy1YD0mGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.335 [XNIO-1 task-1] nSovyWW7Qwau9vy1YD0mGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.335 [XNIO-1 task-1] nSovyWW7Qwau9vy1YD0mGw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.338 [XNIO-1 task-1] tDsjXcbFSdOTkhv6WSwVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.338 [XNIO-1 task-1] tDsjXcbFSdOTkhv6WSwVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.338 [XNIO-1 task-1] tDsjXcbFSdOTkhv6WSwVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.339 [XNIO-1 task-1] tDsjXcbFSdOTkhv6WSwVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.339 [XNIO-1 task-1] tDsjXcbFSdOTkhv6WSwVgg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.340 [XNIO-1 task-1] CPzpToYpRTWUGQkKamGi_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.340 [XNIO-1 task-1] CPzpToYpRTWUGQkKamGi_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.340 [XNIO-1 task-1] CPzpToYpRTWUGQkKamGi_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.340 [XNIO-1 task-1] CPzpToYpRTWUGQkKamGi_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.341 [XNIO-1 task-1] CPzpToYpRTWUGQkKamGi_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.341 [XNIO-1 task-1] CPzpToYpRTWUGQkKamGi_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.342 [XNIO-1 task-1] S0_QnIcTQSOv-F2myfWMew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.342 [XNIO-1 task-1] S0_QnIcTQSOv-F2myfWMew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.342 [XNIO-1 task-1] S0_QnIcTQSOv-F2myfWMew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.343 [XNIO-1 task-1] S0_QnIcTQSOv-F2myfWMew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.343 [XNIO-1 task-1] S0_QnIcTQSOv-F2myfWMew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.344 [XNIO-1 task-1] Fbkv_MyJTJWzWHztFODgcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.344 [XNIO-1 task-1] Fbkv_MyJTJWzWHztFODgcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.345 [XNIO-1 task-1] Fbkv_MyJTJWzWHztFODgcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.345 [XNIO-1 task-1] Fbkv_MyJTJWzWHztFODgcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495, base path is set to: null +09:03:01.345 [XNIO-1 task-1] Fbkv_MyJTJWzWHztFODgcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c1dad6-326f-4336-a176-73c28486e495", "33c1dad6-326f-4336-a176-73c28486e495", refreshToken) +09:03:01.345 [XNIO-1 task-1] Fbkv_MyJTJWzWHztFODgcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c1dad6-326f-4336-a176-73c28486e495 is not found.","severity":"ERROR"} +09:03:01.348 [XNIO-1 task-1] Y-0-YbxiQ-mXfuwfjh9BCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.348 [XNIO-1 task-1] Y-0-YbxiQ-mXfuwfjh9BCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.348 [XNIO-1 task-1] Y-0-YbxiQ-mXfuwfjh9BCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.348 [XNIO-1 task-1] Y-0-YbxiQ-mXfuwfjh9BCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.352 [XNIO-1 task-1] dfVvAMt_SUqHlJkUix4-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.352 [XNIO-1 task-1] dfVvAMt_SUqHlJkUix4-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.352 [XNIO-1 task-1] dfVvAMt_SUqHlJkUix4-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.352 [XNIO-1 task-1] dfVvAMt_SUqHlJkUix4-XA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.352 [XNIO-1 task-1] dfVvAMt_SUqHlJkUix4-XA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.355 [XNIO-1 task-1] -BXWfip4SriqL2Zjq3CUxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.355 [XNIO-1 task-1] -BXWfip4SriqL2Zjq3CUxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.355 [XNIO-1 task-1] -BXWfip4SriqL2Zjq3CUxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.355 [XNIO-1 task-1] -BXWfip4SriqL2Zjq3CUxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.355 [XNIO-1 task-1] -BXWfip4SriqL2Zjq3CUxg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33c1dad6-326f-4336-a176-73c28486e495 +09:03:01.358 [XNIO-1 task-1] DDssdap0SxOSkC2xHtYnQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.358 [XNIO-1 task-1] DDssdap0SxOSkC2xHtYnQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.358 [XNIO-1 task-1] DDssdap0SxOSkC2xHtYnQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.359 [XNIO-1 task-1] DDssdap0SxOSkC2xHtYnQw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.359 [XNIO-1 task-1] DDssdap0SxOSkC2xHtYnQw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.361 [XNIO-1 task-1] TElSEtH4TVa0HNx-zbmEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.361 [XNIO-1 task-1] TElSEtH4TVa0HNx-zbmEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.361 [XNIO-1 task-1] TElSEtH4TVa0HNx-zbmEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.362 [XNIO-1 task-1] TElSEtH4TVa0HNx-zbmEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.362 [XNIO-1 task-1] TElSEtH4TVa0HNx-zbmEhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.363 [XNIO-1 task-1] eiK_cjTfSmG2oizi23m0MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.363 [XNIO-1 task-1] eiK_cjTfSmG2oizi23m0MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.363 [XNIO-1 task-1] eiK_cjTfSmG2oizi23m0MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.363 [XNIO-1 task-1] eiK_cjTfSmG2oizi23m0MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.363 [XNIO-1 task-1] eiK_cjTfSmG2oizi23m0MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.364 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.366 [XNIO-1 task-1] 4_u0U-fXQ4-dUIt4JQNmPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.366 [XNIO-1 task-1] 4_u0U-fXQ4-dUIt4JQNmPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.366 [XNIO-1 task-1] 4_u0U-fXQ4-dUIt4JQNmPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.366 [XNIO-1 task-1] 4_u0U-fXQ4-dUIt4JQNmPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.366 [XNIO-1 task-1] 4_u0U-fXQ4-dUIt4JQNmPg DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.366 [XNIO-1 task-1] 4_u0U-fXQ4-dUIt4JQNmPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.369 [XNIO-1 task-1] OJ6zlU8OQSCkJoCVV6sY4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.369 [XNIO-1 task-1] OJ6zlU8OQSCkJoCVV6sY4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.369 [XNIO-1 task-1] OJ6zlU8OQSCkJoCVV6sY4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.370 [XNIO-1 task-1] OJ6zlU8OQSCkJoCVV6sY4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.370 [XNIO-1 task-1] OJ6zlU8OQSCkJoCVV6sY4w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.371 [XNIO-1 task-1] OJ6zlU8OQSCkJoCVV6sY4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:01.372 [XNIO-1 task-1] Zl5zAh4yRUO5iKkSe-aDmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.372 [XNIO-1 task-1] Zl5zAh4yRUO5iKkSe-aDmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.372 [XNIO-1 task-1] Zl5zAh4yRUO5iKkSe-aDmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.372 [XNIO-1 task-1] Zl5zAh4yRUO5iKkSe-aDmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.375 [XNIO-1 task-1] 2G1afbzeRWiQ5sAqNblVdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.376 [XNIO-1 task-1] 2G1afbzeRWiQ5sAqNblVdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.376 [XNIO-1 task-1] 2G1afbzeRWiQ5sAqNblVdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.376 [XNIO-1 task-1] 2G1afbzeRWiQ5sAqNblVdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.376 [XNIO-1 task-1] 2G1afbzeRWiQ5sAqNblVdg DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.376 [XNIO-1 task-1] 2G1afbzeRWiQ5sAqNblVdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.380 [XNIO-1 task-1] zN3Q4TnlRTOCr-vjEhY8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.380 [XNIO-1 task-1] zN3Q4TnlRTOCr-vjEhY8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.380 [XNIO-1 task-1] zN3Q4TnlRTOCr-vjEhY8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.380 [XNIO-1 task-1] zN3Q4TnlRTOCr-vjEhY8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.380 [XNIO-1 task-1] zN3Q4TnlRTOCr-vjEhY8Ew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.381 [XNIO-1 task-1] zN3Q4TnlRTOCr-vjEhY8Ew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:01.382 [XNIO-1 task-1] BlVJa_cwReC_32mY1j7M_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.382 [XNIO-1 task-1] BlVJa_cwReC_32mY1j7M_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.382 [XNIO-1 task-1] BlVJa_cwReC_32mY1j7M_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.383 [XNIO-1 task-1] BlVJa_cwReC_32mY1j7M_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.383 [XNIO-1 task-1] BlVJa_cwReC_32mY1j7M_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.384 [XNIO-1 task-1] wjssAyVEQ2ekBrOAzBZpOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.384 [XNIO-1 task-1] wjssAyVEQ2ekBrOAzBZpOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.384 [XNIO-1 task-1] wjssAyVEQ2ekBrOAzBZpOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.384 [XNIO-1 task-1] wjssAyVEQ2ekBrOAzBZpOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.384 [XNIO-1 task-1] wjssAyVEQ2ekBrOAzBZpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.385 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.387 [XNIO-1 task-1] Y_nBSXq4QkuLKXnjNtl6MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.387 [XNIO-1 task-1] Y_nBSXq4QkuLKXnjNtl6MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.387 [XNIO-1 task-1] Y_nBSXq4QkuLKXnjNtl6MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.387 [XNIO-1 task-1] Y_nBSXq4QkuLKXnjNtl6MA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.387 [XNIO-1 task-1] Y_nBSXq4QkuLKXnjNtl6MA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.391 [XNIO-1 task-1] ilEn4_V8Qcue1QtgDNb75Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.391 [XNIO-1 task-1] ilEn4_V8Qcue1QtgDNb75Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.391 [XNIO-1 task-1] ilEn4_V8Qcue1QtgDNb75Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.391 [XNIO-1 task-1] ilEn4_V8Qcue1QtgDNb75Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.391 [XNIO-1 task-1] ilEn4_V8Qcue1QtgDNb75Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.393 [XNIO-1 task-1] RJsBV777QJaFjQ4XXXrAEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.393 [XNIO-1 task-1] RJsBV777QJaFjQ4XXXrAEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.393 [XNIO-1 task-1] RJsBV777QJaFjQ4XXXrAEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.393 [XNIO-1 task-1] RJsBV777QJaFjQ4XXXrAEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658, base path is set to: null +09:03:01.393 [XNIO-1 task-1] RJsBV777QJaFjQ4XXXrAEA DEBUG com.networknt.schema.TypeValidator debug - validate( "f198af9f-f65e-4e52-b109-10a940b65658", "f198af9f-f65e-4e52-b109-10a940b65658", refreshToken) +09:03:01.393 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.396 [XNIO-1 task-1] 3jqHBFovS7ykGsnkv2iShg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.397 [XNIO-1 task-1] 3jqHBFovS7ykGsnkv2iShg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.397 [XNIO-1 task-1] 3jqHBFovS7ykGsnkv2iShg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.397 [XNIO-1 task-1] 3jqHBFovS7ykGsnkv2iShg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.398 [XNIO-1 task-1] 3jqHBFovS7ykGsnkv2iShg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.409 [XNIO-1 task-1] QAGU0RH2QHq_KgBwgPmy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.410 [XNIO-1 task-1] QAGU0RH2QHq_KgBwgPmy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.410 [XNIO-1 task-1] QAGU0RH2QHq_KgBwgPmy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.410 [XNIO-1 task-1] QAGU0RH2QHq_KgBwgPmy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.410 [XNIO-1 task-1] QAGU0RH2QHq_KgBwgPmy9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.412 [XNIO-1 task-1] i1h5xoveQnaISJbCotDwQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.412 [XNIO-1 task-1] i1h5xoveQnaISJbCotDwQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.412 [XNIO-1 task-1] i1h5xoveQnaISJbCotDwQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.412 [XNIO-1 task-1] i1h5xoveQnaISJbCotDwQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.413 [XNIO-1 task-1] i1h5xoveQnaISJbCotDwQw DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.413 [XNIO-1 task-1] i1h5xoveQnaISJbCotDwQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.417 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:090b0b84-b5ca-4bba-a4f2-a16b5807307a +09:03:01.420 [XNIO-1 task-1] VTeQWe2eTCa1XLlKjvuWHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.420 [XNIO-1 task-1] VTeQWe2eTCa1XLlKjvuWHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.420 [XNIO-1 task-1] VTeQWe2eTCa1XLlKjvuWHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.420 [XNIO-1 task-1] VTeQWe2eTCa1XLlKjvuWHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.420 [XNIO-1 task-1] VTeQWe2eTCa1XLlKjvuWHA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.420 [XNIO-1 task-1] VTeQWe2eTCa1XLlKjvuWHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.423 [XNIO-1 task-1] OllzTBYFQxG0g8DghYZJ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.423 [XNIO-1 task-1] OllzTBYFQxG0g8DghYZJ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.423 [XNIO-1 task-1] OllzTBYFQxG0g8DghYZJ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.423 [XNIO-1 task-1] OllzTBYFQxG0g8DghYZJ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.424 [XNIO-1 task-1] OllzTBYFQxG0g8DghYZJ-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.427 [XNIO-1 task-1] Bqljm1z_RlSG3nkCuV4M2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.427 [XNIO-1 task-1] Bqljm1z_RlSG3nkCuV4M2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.427 [XNIO-1 task-1] Bqljm1z_RlSG3nkCuV4M2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.427 [XNIO-1 task-1] Bqljm1z_RlSG3nkCuV4M2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.427 [XNIO-1 task-1] Bqljm1z_RlSG3nkCuV4M2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.433 [XNIO-1 task-1] 6NqNHKagQoyYe5MGBjEj6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.434 [XNIO-1 task-1] 6NqNHKagQoyYe5MGBjEj6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.434 [XNIO-1 task-1] 6NqNHKagQoyYe5MGBjEj6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.434 [XNIO-1 task-1] 6NqNHKagQoyYe5MGBjEj6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.434 [XNIO-1 task-1] 6NqNHKagQoyYe5MGBjEj6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f198af9f-f65e-4e52-b109-10a940b65658 +09:03:01.435 [XNIO-1 task-1] 6NqNHKagQoyYe5MGBjEj6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f198af9f-f65e-4e52-b109-10a940b65658 is not found.","severity":"ERROR"} +09:03:01.439 [XNIO-1 task-1] S6QnQMWvS_ePYFmx8w7UQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.439 [XNIO-1 task-1] S6QnQMWvS_ePYFmx8w7UQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.439 [XNIO-1 task-1] S6QnQMWvS_ePYFmx8w7UQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.439 [XNIO-1 task-1] S6QnQMWvS_ePYFmx8w7UQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.440 [XNIO-1 task-1] S6QnQMWvS_ePYFmx8w7UQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.440 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:232392c0 +09:03:01.442 [XNIO-1 task-1] nejcgXbMQDik-tJ7WFOOfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.444 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b4546ac-d92f-420f-a610-01599ff8e052 +09:03:01.444 [XNIO-1 task-1] nejcgXbMQDik-tJ7WFOOfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.444 [XNIO-1 task-1] nejcgXbMQDik-tJ7WFOOfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.444 [XNIO-1 task-1] nejcgXbMQDik-tJ7WFOOfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.444 [XNIO-1 task-1] nejcgXbMQDik-tJ7WFOOfA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.444 [XNIO-1 task-1] nejcgXbMQDik-tJ7WFOOfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.450 [XNIO-1 task-1] l9tFji_LQ9CUom0vxmA8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.450 [XNIO-1 task-1] l9tFji_LQ9CUom0vxmA8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.450 [XNIO-1 task-1] l9tFji_LQ9CUom0vxmA8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.450 [XNIO-1 task-1] l9tFji_LQ9CUom0vxmA8Vg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.457 [XNIO-1 task-1] IjJ-p6iHT7WCLyD2CGMaHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.458 [XNIO-1 task-1] IjJ-p6iHT7WCLyD2CGMaHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.458 [XNIO-1 task-1] IjJ-p6iHT7WCLyD2CGMaHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.458 [XNIO-1 task-1] IjJ-p6iHT7WCLyD2CGMaHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.458 [XNIO-1 task-1] IjJ-p6iHT7WCLyD2CGMaHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.458 [XNIO-1 task-1] IjJ-p6iHT7WCLyD2CGMaHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.462 [XNIO-1 task-1] f7uqjiDwT46Eo-qr6lUxaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.462 [XNIO-1 task-1] f7uqjiDwT46Eo-qr6lUxaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.462 [XNIO-1 task-1] f7uqjiDwT46Eo-qr6lUxaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.462 [XNIO-1 task-1] f7uqjiDwT46Eo-qr6lUxaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.462 [XNIO-1 task-1] f7uqjiDwT46Eo-qr6lUxaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.465 [XNIO-1 task-1] 9vx2VNE4RkCLtjwqMjt2ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.465 [XNIO-1 task-1] 9vx2VNE4RkCLtjwqMjt2ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.465 [XNIO-1 task-1] 9vx2VNE4RkCLtjwqMjt2ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.465 [XNIO-1 task-1] 9vx2VNE4RkCLtjwqMjt2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.465 [XNIO-1 task-1] 9vx2VNE4RkCLtjwqMjt2ow DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.475 [XNIO-1 task-1] ZK8NFXP8RRCODlfEcY3REw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.475 [XNIO-1 task-1] ZK8NFXP8RRCODlfEcY3REw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.475 [XNIO-1 task-1] ZK8NFXP8RRCODlfEcY3REw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.475 [XNIO-1 task-1] ZK8NFXP8RRCODlfEcY3REw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.479 [XNIO-1 task-1] TQJVfRLIS7myaIrEqg2_qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.479 [XNIO-1 task-1] TQJVfRLIS7myaIrEqg2_qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.479 [XNIO-1 task-1] TQJVfRLIS7myaIrEqg2_qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.480 [XNIO-1 task-1] TQJVfRLIS7myaIrEqg2_qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.480 [XNIO-1 task-1] TQJVfRLIS7myaIrEqg2_qA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.480 [XNIO-1 task-1] TQJVfRLIS7myaIrEqg2_qA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.483 [XNIO-1 task-1] D42Wsgd7SYyb7zGEUgbYaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.483 [XNIO-1 task-1] D42Wsgd7SYyb7zGEUgbYaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.483 [XNIO-1 task-1] D42Wsgd7SYyb7zGEUgbYaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.483 [XNIO-1 task-1] D42Wsgd7SYyb7zGEUgbYaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.483 [XNIO-1 task-1] D42Wsgd7SYyb7zGEUgbYaA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.485 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fe4cd13c +09:03:01.490 [XNIO-1 task-1] H2t5J6GDTx2XBvJZECu3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.490 [XNIO-1 task-1] H2t5J6GDTx2XBvJZECu3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.490 [XNIO-1 task-1] H2t5J6GDTx2XBvJZECu3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.490 [XNIO-1 task-1] H2t5J6GDTx2XBvJZECu3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.490 [XNIO-1 task-1] H2t5J6GDTx2XBvJZECu3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.490 [XNIO-1 task-1] H2t5J6GDTx2XBvJZECu3Sw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.493 [XNIO-1 task-1] ryCiKHfVTWiYtJEn1TTLEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.493 [XNIO-1 task-1] ryCiKHfVTWiYtJEn1TTLEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.493 [XNIO-1 task-1] ryCiKHfVTWiYtJEn1TTLEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.493 [XNIO-1 task-1] ryCiKHfVTWiYtJEn1TTLEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.493 [XNIO-1 task-1] ryCiKHfVTWiYtJEn1TTLEA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.498 [XNIO-1 task-1] yjmPtBa2RTShi471jB4pbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2153f3e7-3083-4d9d-95e1-4e723a7635e0, base path is set to: null +09:03:01.498 [XNIO-1 task-1] yjmPtBa2RTShi471jB4pbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.498 [XNIO-1 task-1] yjmPtBa2RTShi471jB4pbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.498 [XNIO-1 task-1] yjmPtBa2RTShi471jB4pbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2153f3e7-3083-4d9d-95e1-4e723a7635e0, base path is set to: null +09:03:01.498 [XNIO-1 task-1] yjmPtBa2RTShi471jB4pbA DEBUG com.networknt.schema.TypeValidator debug - validate( "2153f3e7-3083-4d9d-95e1-4e723a7635e0", "2153f3e7-3083-4d9d-95e1-4e723a7635e0", refreshToken) +09:03:01.500 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:28b808a4 +09:03:01.502 [XNIO-1 task-1] LTtcq5vRStCEroRYLu9F8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.502 [XNIO-1 task-1] LTtcq5vRStCEroRYLu9F8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.502 [XNIO-1 task-1] LTtcq5vRStCEroRYLu9F8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.502 [XNIO-1 task-1] LTtcq5vRStCEroRYLu9F8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.502 [XNIO-1 task-1] LTtcq5vRStCEroRYLu9F8A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.509 [XNIO-1 task-1] zjXygJsFRB2zFKr5XaMfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.510 [XNIO-1 task-1] zjXygJsFRB2zFKr5XaMfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.510 [XNIO-1 task-1] zjXygJsFRB2zFKr5XaMfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.510 [XNIO-1 task-1] zjXygJsFRB2zFKr5XaMfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.510 [XNIO-1 task-1] zjXygJsFRB2zFKr5XaMfmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95b0fe82-b081-49c5-9fc8-4687c3d48db1 +09:03:01.523 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fe4cd13c +09:03:01.525 [XNIO-1 task-1] o17IRZ9OQPm1nZZ796TOaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.525 [XNIO-1 task-1] o17IRZ9OQPm1nZZ796TOaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.525 [XNIO-1 task-1] o17IRZ9OQPm1nZZ796TOaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.525 [XNIO-1 task-1] o17IRZ9OQPm1nZZ796TOaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.526 [XNIO-1 task-1] o17IRZ9OQPm1nZZ796TOaA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.533 [XNIO-1 task-1] KEOr2WhiT9u3QqyZUPUW8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.533 [XNIO-1 task-1] KEOr2WhiT9u3QqyZUPUW8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.533 [XNIO-1 task-1] KEOr2WhiT9u3QqyZUPUW8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.534 [XNIO-1 task-1] KEOr2WhiT9u3QqyZUPUW8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.534 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:27c1b790-6561-419e-a979-7d670fbc51bb +09:03:01.544 [XNIO-1 task-1] VkbE10iFQwKeQblW4vwWwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.545 [XNIO-1 task-1] VkbE10iFQwKeQblW4vwWwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.545 [XNIO-1 task-1] VkbE10iFQwKeQblW4vwWwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.545 [XNIO-1 task-1] VkbE10iFQwKeQblW4vwWwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95b0fe82-b081-49c5-9fc8-4687c3d48db1, base path is set to: null +09:03:01.545 [XNIO-1 task-1] VkbE10iFQwKeQblW4vwWwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95b0fe82-b081-49c5-9fc8-4687c3d48db1", "95b0fe82-b081-49c5-9fc8-4687c3d48db1", refreshToken) +09:03:01.545 [XNIO-1 task-1] VkbE10iFQwKeQblW4vwWwQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95b0fe82-b081-49c5-9fc8-4687c3d48db1 is not found.","severity":"ERROR"} +09:03:01.549 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fe4cd13c +09:03:01.549 [XNIO-1 task-1] KeQICyX4Sza0_IqFMzZd6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c79d8491-981f-465a-81a3-584a88d7b3a5 +09:03:01.549 [XNIO-1 task-1] KeQICyX4Sza0_IqFMzZd6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.549 [XNIO-1 task-1] KeQICyX4Sza0_IqFMzZd6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.549 [XNIO-1 task-1] KeQICyX4Sza0_IqFMzZd6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c79d8491-981f-465a-81a3-584a88d7b3a5 +09:03:01.549 [XNIO-1 task-1] KeQICyX4Sza0_IqFMzZd6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c79d8491-981f-465a-81a3-584a88d7b3a5 +09:03:01.558 [XNIO-1 task-1] H2-KMe-OQDSaNNQOOCRz9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d1a74dc-9cd2-464d-83b8-b769f15d30c7, base path is set to: null +09:03:01.558 [XNIO-1 task-1] H2-KMe-OQDSaNNQOOCRz9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.559 [XNIO-1 task-1] H2-KMe-OQDSaNNQOOCRz9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.559 [XNIO-1 task-1] H2-KMe-OQDSaNNQOOCRz9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d1a74dc-9cd2-464d-83b8-b769f15d30c7, base path is set to: null +09:03:01.559 [XNIO-1 task-1] H2-KMe-OQDSaNNQOOCRz9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1d1a74dc-9cd2-464d-83b8-b769f15d30c7", "1d1a74dc-9cd2-464d-83b8-b769f15d30c7", refreshToken) +09:03:01.566 [XNIO-1 task-1] KuWK1VtJT6qe71DWVZyYxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d1a74dc-9cd2-464d-83b8-b769f15d30c7, base path is set to: null +09:03:01.566 [XNIO-1 task-1] KuWK1VtJT6qe71DWVZyYxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.566 [XNIO-1 task-1] KuWK1VtJT6qe71DWVZyYxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.567 [XNIO-1 task-1] KuWK1VtJT6qe71DWVZyYxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d1a74dc-9cd2-464d-83b8-b769f15d30c7, base path is set to: null +09:03:01.567 [XNIO-1 task-1] KuWK1VtJT6qe71DWVZyYxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1d1a74dc-9cd2-464d-83b8-b769f15d30c7", "1d1a74dc-9cd2-464d-83b8-b769f15d30c7", refreshToken) +09:03:01.569 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fe4cd13c +09:03:01.572 [XNIO-1 task-1] vLZuGcGES9mXPHU3UKIIVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.572 [XNIO-1 task-1] vLZuGcGES9mXPHU3UKIIVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.572 [XNIO-1 task-1] vLZuGcGES9mXPHU3UKIIVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.573 [XNIO-1 task-1] vLZuGcGES9mXPHU3UKIIVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.573 [XNIO-1 task-1] vLZuGcGES9mXPHU3UKIIVw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.580 [XNIO-1 task-1] MwjgXAJZTcCD-rrrCd7x-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.580 [XNIO-1 task-1] MwjgXAJZTcCD-rrrCd7x-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.580 [XNIO-1 task-1] MwjgXAJZTcCD-rrrCd7x-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.581 [XNIO-1 task-1] MwjgXAJZTcCD-rrrCd7x-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.593 [XNIO-1 task-1] QIxhFBbSSKSMSQTgdmaRFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.593 [XNIO-1 task-1] QIxhFBbSSKSMSQTgdmaRFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.593 [XNIO-1 task-1] QIxhFBbSSKSMSQTgdmaRFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:03:01.593 [XNIO-1 task-1] QIxhFBbSSKSMSQTgdmaRFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.593 [XNIO-1 task-1] QIxhFBbSSKSMSQTgdmaRFg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:03:01.598 [XNIO-1 task-1] bfvbcAc-Szq2eetz7vAiFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c79d8491-981f-465a-81a3-584a88d7b3a5 +09:03:01.598 [XNIO-1 task-1] bfvbcAc-Szq2eetz7vAiFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:03:01.598 [XNIO-1 task-1] bfvbcAc-Szq2eetz7vAiFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:03:01.598 [XNIO-1 task-1] bfvbcAc-Szq2eetz7vAiFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c79d8491-981f-465a-81a3-584a88d7b3a5 +09:03:01.598 [XNIO-1 task-1] bfvbcAc-Szq2eetz7vAiFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c79d8491-981f-465a-81a3-584a88d7b3a5 +09:03:01.604 [XNIO-1 task-1] W7wqpQvAT_2TKK3yqh3kWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d1a74dc-9cd2-464d-83b8-b769f15d30c7, base path is set to: null +09:03:01.604 [XNIO-1 task-1] W7wqpQvAT_2TKK3yqh3kWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.605 [XNIO-1 task-1] W7wqpQvAT_2TKK3yqh3kWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.605 [XNIO-1 task-1] W7wqpQvAT_2TKK3yqh3kWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d1a74dc-9cd2-464d-83b8-b769f15d30c7, base path is set to: null +09:03:01.605 [XNIO-1 task-1] W7wqpQvAT_2TKK3yqh3kWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1d1a74dc-9cd2-464d-83b8-b769f15d30c7", "1d1a74dc-9cd2-464d-83b8-b769f15d30c7", refreshToken) +09:03:01.612 [XNIO-1 task-1] iSoiQJKbRlqc6UnzREzv7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c79d8491-981f-465a-81a3-584a88d7b3a5, base path is set to: null +09:03:01.612 [XNIO-1 task-1] iSoiQJKbRlqc6UnzREzv7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:03:01.612 [XNIO-1 task-1] iSoiQJKbRlqc6UnzREzv7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:03:01.612 [XNIO-1 task-1] iSoiQJKbRlqc6UnzREzv7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c79d8491-981f-465a-81a3-584a88d7b3a5, base path is set to: null +09:03:01.612 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fe4cd13c +09:03:01.612 [XNIO-1 task-1] iSoiQJKbRlqc6UnzREzv7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c79d8491-981f-465a-81a3-584a88d7b3a5", "c79d8491-981f-465a-81a3-584a88d7b3a5", refreshToken) +09:03:01.613 [XNIO-1 task-1] iSoiQJKbRlqc6UnzREzv7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c79d8491-981f-465a-81a3-584a88d7b3a5 is not found.","severity":"ERROR"} +09:03:01.615 [XNIO-1 task-1] BgSYmk4TSp6wO_TsBArU6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1d1a74dc-9cd2-464d-83b8-b769f15d30c7 diff --git a/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..5246408 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-service-1.log @@ -0,0 +1,3105 @@ +09:02:56.869 [XNIO-1 task-2] mGehNK_HTmOkGYeyB33O6A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.869 [XNIO-1 task-2] mGehNK_HTmOkGYeyB33O6A DEBUG com.networknt.schema.TypeValidator debug - validate( "bceb1f7b-4d61-4421-9fea-a706d2c3", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:56.869 [XNIO-1 task-2] mGehNK_HTmOkGYeyB33O6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.875 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bceb1f7b-4d61-4421-9fea-a706d2c3", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:56.876 [XNIO-1 task-2] 0gWpyteVR5GwV87JFPREfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.881 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.881 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.881 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.881 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.882 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.882 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:56.882 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.882 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG com.networknt.schema.TypeValidator debug - validate( "bceb1f7b-4d61-4421-9fea-a706d2c3", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:56.882 [XNIO-1 task-2] 8ypw2oQVQ3a_USopraJSng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.890 [XNIO-1 task-2] OE5Hjxk6RYG0tbu3eWB8RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.890 [XNIO-1 task-2] OE5Hjxk6RYG0tbu3eWB8RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.890 [XNIO-1 task-2] OE5Hjxk6RYG0tbu3eWB8RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.901 [XNIO-1 task-2] fYS_5inQRomaSZQ55DK0cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.901 [XNIO-1 task-2] fYS_5inQRomaSZQ55DK0cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.901 [XNIO-1 task-2] fYS_5inQRomaSZQ55DK0cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.901 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0622df89 +09:02:56.902 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0622df89 +09:02:56.908 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.908 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.908 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.909 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.909 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:56.909 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG com.networknt.schema.TypeValidator debug - validate( "77cf1ff3-0c87-4301-8687-9b33e2aa5b57", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:56.909 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG com.networknt.schema.TypeValidator debug - validate( "0622df89", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:56.909 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.909 [XNIO-1 task-2] lUHewBNmScu-eqxuaqCkcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.909 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0622df89 +09:02:56.917 [XNIO-1 task-2] NjQZdQ9uT5i7MXidt3nmTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/73a80a90 +09:02:56.917 [XNIO-1 task-2] NjQZdQ9uT5i7MXidt3nmTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.917 [XNIO-1 task-2] NjQZdQ9uT5i7MXidt3nmTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:56.917 [XNIO-1 task-2] NjQZdQ9uT5i7MXidt3nmTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/73a80a90 +09:02:56.927 [XNIO-1 task-2] fWckC2PoRBmamVeSijlsyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0622df89, base path is set to: null +09:02:56.928 [XNIO-1 task-2] fWckC2PoRBmamVeSijlsyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.928 [XNIO-1 task-2] fWckC2PoRBmamVeSijlsyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:56.928 [XNIO-1 task-2] fWckC2PoRBmamVeSijlsyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0622df89, base path is set to: null +09:02:56.928 [XNIO-1 task-2] fWckC2PoRBmamVeSijlsyw DEBUG com.networknt.schema.TypeValidator debug - validate( "0622df89", "0622df89", serviceId) +09:02:56.931 [XNIO-1 task-2] 8tmYDNgXTqKzrZF51mXmrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.931 [XNIO-1 task-2] 8tmYDNgXTqKzrZF51mXmrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.931 [XNIO-1 task-2] 8tmYDNgXTqKzrZF51mXmrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.937 [XNIO-1 task-2] qdsu5xO5Qk-A9NLE5CA5uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f0ae9940 +09:02:56.937 [XNIO-1 task-2] qdsu5xO5Qk-A9NLE5CA5uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.937 [XNIO-1 task-2] qdsu5xO5Qk-A9NLE5CA5uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:56.937 [XNIO-1 task-2] qdsu5xO5Qk-A9NLE5CA5uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f0ae9940 +09:02:56.942 [XNIO-1 task-2] fBGt0ISoSPG7h03whm_JNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.942 [XNIO-1 task-2] fBGt0ISoSPG7h03whm_JNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.942 [XNIO-1 task-2] fBGt0ISoSPG7h03whm_JNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.949 [XNIO-1 task-2] tQUFQd8hQIurOkQDKW3MBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.949 [XNIO-1 task-2] tQUFQd8hQIurOkQDKW3MBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.949 [XNIO-1 task-2] tQUFQd8hQIurOkQDKW3MBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.949 [XNIO-1 task-2] tQUFQd8hQIurOkQDKW3MBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:56.954 [XNIO-1 task-2] cMzrwZ3-RwSjdQvsr9QqFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f5ba5a48, base path is set to: null +09:02:56.954 [XNIO-1 task-2] cMzrwZ3-RwSjdQvsr9QqFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.954 [XNIO-1 task-2] cMzrwZ3-RwSjdQvsr9QqFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:56.954 [XNIO-1 task-2] cMzrwZ3-RwSjdQvsr9QqFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f5ba5a48, base path is set to: null +09:02:56.954 [XNIO-1 task-2] cMzrwZ3-RwSjdQvsr9QqFw DEBUG com.networknt.schema.TypeValidator debug - validate( "f5ba5a48", "f5ba5a48", serviceId) +09:02:56.959 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG com.networknt.schema.TypeValidator debug - validate( "9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.960 [XNIO-1 task-2] 64mNkr5SRPG0XlwgRAYRdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.966 [XNIO-1 task-2] ijb0vesjQn-xEjcXE7u1Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.966 [XNIO-1 task-2] ijb0vesjQn-xEjcXE7u1Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.966 [XNIO-1 task-2] ijb0vesjQn-xEjcXE7u1Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.966 [XNIO-1 task-2] ijb0vesjQn-xEjcXE7u1Zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.972 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.972 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.972 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.973 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.973 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:56.973 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "77cf1ff3-0c87-4301-8687-9b33e2aa5b57", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:56.973 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0622df89", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:56.973 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:56.973 [XNIO-1 task-2] jzH38njhSNKhEo6x69wj7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.973 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0622df89 +09:02:56.977 [XNIO-1 task-2] mf1DqRqZR2W7DrwVq7PWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.977 [XNIO-1 task-2] mf1DqRqZR2W7DrwVq7PWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.978 [XNIO-1 task-2] mf1DqRqZR2W7DrwVq7PWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.978 [XNIO-1 task-2] mf1DqRqZR2W7DrwVq7PWEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:56.985 [XNIO-1 task-2] J7H-aGxVTnK3KgmzeheVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/478a966a +09:02:56.985 [XNIO-1 task-2] J7H-aGxVTnK3KgmzeheVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:56.985 [XNIO-1 task-2] J7H-aGxVTnK3KgmzeheVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:56.985 [XNIO-1 task-2] J7H-aGxVTnK3KgmzeheVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/478a966a +09:02:56.993 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.993 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:56.993 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:56.994 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.994 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:56.994 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:56.994 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:56.994 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG com.networknt.schema.TypeValidator debug - validate( "bceb1f7b-4d61-4421-9fea-a706d2c3", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:56.994 [XNIO-1 task-2] x5aIJGq5TgWZeCMZ2lKSuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.000 [XNIO-1 task-2] F-Mbf-HdS_OjHJ3_TtbFmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.000 [XNIO-1 task-2] F-Mbf-HdS_OjHJ3_TtbFmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.000 [XNIO-1 task-2] F-Mbf-HdS_OjHJ3_TtbFmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.000 [XNIO-1 task-2] F-Mbf-HdS_OjHJ3_TtbFmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.012 [XNIO-1 task-2] y_uXKMEfT_W7n8BRaggnRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.012 [XNIO-1 task-2] y_uXKMEfT_W7n8BRaggnRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.012 [XNIO-1 task-2] y_uXKMEfT_W7n8BRaggnRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.012 [XNIO-1 task-2] y_uXKMEfT_W7n8BRaggnRw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.018 [XNIO-1 task-2] PIbzLCRwTQKsIzcgONr63g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.018 [XNIO-1 task-2] PIbzLCRwTQKsIzcgONr63g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.019 [XNIO-1 task-2] PIbzLCRwTQKsIzcgONr63g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.026 [XNIO-1 task-2] l16mrd3UQgyeFLI-un4NPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.026 [XNIO-1 task-2] l16mrd3UQgyeFLI-un4NPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.026 [XNIO-1 task-2] l16mrd3UQgyeFLI-un4NPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.032 [XNIO-1 task-2] ctKzx6z7RgOoEDtxuxH-aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.032 [XNIO-1 task-2] ctKzx6z7RgOoEDtxuxH-aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.032 [XNIO-1 task-2] ctKzx6z7RgOoEDtxuxH-aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.039 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.039 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.039 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.040 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.040 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.040 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.040 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.040 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG com.networknt.schema.TypeValidator debug - validate( "cd5f5bc4-4c1a-46e5-8741-1967d437", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.040 [XNIO-1 task-2] 7e6keGFcQQm0ovbfxsnnzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.040 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0622df89 +09:02:57.045 [XNIO-1 task-2] NEhAzcwSRciwQmzgfGbnPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.045 [XNIO-1 task-2] NEhAzcwSRciwQmzgfGbnPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.045 [XNIO-1 task-2] NEhAzcwSRciwQmzgfGbnPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.045 [XNIO-1 task-2] NEhAzcwSRciwQmzgfGbnPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.051 [XNIO-1 task-2] S_m6AzCxQHSP3AU92uwySg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0622df89, base path is set to: null +09:02:57.051 [XNIO-1 task-2] S_m6AzCxQHSP3AU92uwySg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.051 [XNIO-1 task-2] S_m6AzCxQHSP3AU92uwySg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.051 [XNIO-1 task-2] S_m6AzCxQHSP3AU92uwySg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0622df89, base path is set to: null +09:02:57.051 [XNIO-1 task-2] S_m6AzCxQHSP3AU92uwySg DEBUG com.networknt.schema.TypeValidator debug - validate( "0622df89", "0622df89", serviceId) +09:02:57.053 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.053 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.053 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.053 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.054 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.054 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:57.054 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:57.054 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.054 [XNIO-1 task-2] fLM45NT2S2GO5tplE8q0Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.062 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.062 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.062 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.063 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.063 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.063 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG com.networknt.schema.TypeValidator debug - validate( "77cf1ff3-0c87-4301-8687-9b33e2aa5b57", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:57.063 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG com.networknt.schema.TypeValidator debug - validate( "0622df89", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:57.063 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.063 [XNIO-1 task-2] DMqJbbyGR0yyHZJE5U267w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0622df89","serviceName":"cd5f5bc4-4c1a-46e5-8741-1967d437","serviceDesc":"77cf1ff3-0c87-4301-8687-9b33e2aa5b57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.063 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0622df89 +09:02:57.071 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.071 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.071 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.071 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.071 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.072 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.072 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.072 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG com.networknt.schema.TypeValidator debug - validate( "129dc28c-cfca-457d-8017-3dcfafed", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.072 [XNIO-1 task-2] cQ4ptFSLQlCvtVL-Gn__LA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.072 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:62ac6f82-4d12-4d37-8b91-efb0721db85a +09:02:57.080 [XNIO-1 task-2] rnujsibrQvWp2Bnam2db4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.080 [XNIO-1 task-2] rnujsibrQvWp2Bnam2db4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.080 [XNIO-1 task-2] rnujsibrQvWp2Bnam2db4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.086 [XNIO-1 task-2] CZd7pEseSpuaOu78sZu3TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.086 [XNIO-1 task-2] CZd7pEseSpuaOu78sZu3TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.086 [XNIO-1 task-2] CZd7pEseSpuaOu78sZu3TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.086 [XNIO-1 task-2] CZd7pEseSpuaOu78sZu3TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.092 [XNIO-1 task-2] HHKEgVk-RV6pCd0eiQAyew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.092 [XNIO-1 task-2] HHKEgVk-RV6pCd0eiQAyew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.092 [XNIO-1 task-2] HHKEgVk-RV6pCd0eiQAyew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.092 [XNIO-1 task-2] HHKEgVk-RV6pCd0eiQAyew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.096 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.096 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.096 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.097 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.097 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.097 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.097 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.097 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG com.networknt.schema.TypeValidator debug - validate( "ae66e87a-6511-43ce-8b1b-30c8a3da", {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.097 [XNIO-1 task-2] DXrwRI5jQDuXkzfIkoADsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b333b432","serviceName":"ae66e87a-6511-43ce-8b1b-30c8a3da","serviceDesc":"04276cce-cbfb-424f-9bb7-29ce3f24d9a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.104 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.104 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.104 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.104 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.104 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.105 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.105 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.105 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bceb1f7b-4d61-4421-9fea-a706d2c3", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.105 [XNIO-1 task-2] f4R-aeZpQKOnOkL3MMpbzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.112 [XNIO-1 task-2] MgwSPpeSQWS8fSbJ6zDjdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/768c328a, base path is set to: null +09:02:57.112 [XNIO-1 task-2] MgwSPpeSQWS8fSbJ6zDjdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.112 [XNIO-1 task-2] MgwSPpeSQWS8fSbJ6zDjdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.112 [XNIO-1 task-2] MgwSPpeSQWS8fSbJ6zDjdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/768c328a, base path is set to: null +09:02:57.112 [XNIO-1 task-2] MgwSPpeSQWS8fSbJ6zDjdA DEBUG com.networknt.schema.TypeValidator debug - validate( "768c328a", "768c328a", serviceId) +09:02:57.114 [XNIO-1 task-2] wIHb5HJvQiyMlpmw0FIYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b333b432 +09:02:57.114 [XNIO-1 task-2] wIHb5HJvQiyMlpmw0FIYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.114 [XNIO-1 task-2] wIHb5HJvQiyMlpmw0FIYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.114 [XNIO-1 task-2] wIHb5HJvQiyMlpmw0FIYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b333b432 +09:02:57.120 [XNIO-1 task-2] 5fjlurhXTpGA7_gBKsuddQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.120 [XNIO-1 task-2] 5fjlurhXTpGA7_gBKsuddQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.121 [XNIO-1 task-2] 5fjlurhXTpGA7_gBKsuddQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.121 [XNIO-1 task-2] 5fjlurhXTpGA7_gBKsuddQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.125 [XNIO-1 task-2] esTojXGUQeW6CRN8JB7VHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.125 [XNIO-1 task-2] esTojXGUQeW6CRN8JB7VHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.125 [XNIO-1 task-2] esTojXGUQeW6CRN8JB7VHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG com.networknt.schema.TypeValidator debug - validate( "be71867f-2736-4eb0-8d09-97fd88d2", {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.133 [XNIO-1 task-2] RZ5keCXyQcinBNH9KWa_dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.138 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG com.networknt.schema.TypeValidator debug - validate( "5bd3a154-4baa-4b0b-9e83-185fdf98", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.139 [XNIO-1 task-2] J1OHAAZiRZmP1d51u5bdnA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.537 [XNIO-1 task-2] dPBGpijHSF-G6Sp8w3ut2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.537 [XNIO-1 task-2] dPBGpijHSF-G6Sp8w3ut2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.537 [XNIO-1 task-2] dPBGpijHSF-G6Sp8w3ut2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.537 [XNIO-1 task-2] dPBGpijHSF-G6Sp8w3ut2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.542 [XNIO-1 task-2] _o_AoEiYRbqMrzgo3kbylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.542 [XNIO-1 task-2] _o_AoEiYRbqMrzgo3kbylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.542 [XNIO-1 task-2] _o_AoEiYRbqMrzgo3kbylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.542 [XNIO-1 task-2] _o_AoEiYRbqMrzgo3kbylQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.546 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.546 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.547 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.547 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.547 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.547 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.547 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.547 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG com.networknt.schema.TypeValidator debug - validate( "129dc28c-cfca-457d-8017-3dcfafed", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.547 [XNIO-1 task-2] GJHxI5rcRUKiYQAq1ktYGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "fd95789f-dae0-466f-b2d6-4850ae55", {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.556 [XNIO-1 task-2] 7Be2KqQFT5KnZmBwC-63Jg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8090b5ea","serviceName":"fd95789f-dae0-466f-b2d6-4850ae55","serviceDesc":"e3e5389d-3324-4e35-9b58-95ade38d71e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.563 [XNIO-1 task-2] 11enK5x5Sw2rParcW9Yigw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.563 [XNIO-1 task-2] 11enK5x5Sw2rParcW9Yigw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.563 [XNIO-1 task-2] 11enK5x5Sw2rParcW9Yigw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.563 [XNIO-1 task-2] 11enK5x5Sw2rParcW9Yigw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.563 [XNIO-1 task-2] 11enK5x5Sw2rParcW9Yigw DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", "f0ae9940", serviceId) +09:02:57.566 [XNIO-1 task-2] EZqDaFmIQ92b_uTJxU_hXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.566 [XNIO-1 task-2] EZqDaFmIQ92b_uTJxU_hXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.566 [XNIO-1 task-2] EZqDaFmIQ92b_uTJxU_hXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.566 [XNIO-1 task-2] EZqDaFmIQ92b_uTJxU_hXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.574 [XNIO-1 task-2] 78iadrEXQJ29V8NPwyqJLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0622df89 +09:02:57.575 [XNIO-1 task-2] 78iadrEXQJ29V8NPwyqJLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.575 [XNIO-1 task-2] 78iadrEXQJ29V8NPwyqJLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.575 [XNIO-1 task-2] 78iadrEXQJ29V8NPwyqJLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0622df89 +09:02:57.577 [XNIO-1 task-2] 2EzGtZByR1yIF_S0tx6yOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28e234ea, base path is set to: null +09:02:57.577 [XNIO-1 task-2] 2EzGtZByR1yIF_S0tx6yOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.577 [XNIO-1 task-2] 2EzGtZByR1yIF_S0tx6yOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.577 [XNIO-1 task-2] 2EzGtZByR1yIF_S0tx6yOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28e234ea, base path is set to: null +09:02:57.577 [XNIO-1 task-2] 2EzGtZByR1yIF_S0tx6yOg DEBUG com.networknt.schema.TypeValidator debug - validate( "28e234ea", "28e234ea", serviceId) +09:02:57.580 [XNIO-1 task-2] GM6IOLVKSAiKjw18ec4T2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.580 [XNIO-1 task-2] GM6IOLVKSAiKjw18ec4T2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.580 [XNIO-1 task-2] GM6IOLVKSAiKjw18ec4T2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.580 [XNIO-1 task-2] GM6IOLVKSAiKjw18ec4T2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "be71867f-2736-4eb0-8d09-97fd88d2", {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.584 [XNIO-1 task-2] Rjelg47RRAKrqFu4D1ijsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"768c328a","serviceName":"be71867f-2736-4eb0-8d09-97fd88d2","serviceDesc":"d336e80a-c11b-45a0-8ef0-db07e4fa9716","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.590 [XNIO-1 task-2] XD-Pf3KiTq2Qr810Et7A_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.590 [XNIO-1 task-2] XD-Pf3KiTq2Qr810Et7A_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.590 [XNIO-1 task-2] XD-Pf3KiTq2Qr810Et7A_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.590 [XNIO-1 task-2] XD-Pf3KiTq2Qr810Et7A_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.593 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.594 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.594 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.595 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.595 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.595 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.595 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.595 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG com.networknt.schema.TypeValidator debug - validate( "5bd3a154-4baa-4b0b-9e83-185fdf98", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.595 [XNIO-1 task-2] gxxD52t0Qu6XVuKJ66ErUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.598 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:62ac6f82-4d12-4d37-8b91-efb0721db85a +09:02:57.600 [XNIO-1 task-2] 3_1bg3O4R0S2z5CWclMGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.600 [XNIO-1 task-2] 3_1bg3O4R0S2z5CWclMGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.600 [XNIO-1 task-2] 3_1bg3O4R0S2z5CWclMGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.600 [XNIO-1 task-2] 3_1bg3O4R0S2z5CWclMGjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.608 [XNIO-1 task-2] dhv4fvM4QV-9xqz0QuZFJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8090b5ea +09:02:57.608 [XNIO-1 task-2] dhv4fvM4QV-9xqz0QuZFJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.608 [XNIO-1 task-2] dhv4fvM4QV-9xqz0QuZFJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.608 [XNIO-1 task-2] dhv4fvM4QV-9xqz0QuZFJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8090b5ea +09:02:57.610 [XNIO-1 task-2] PADX5cwsTZCoWAUKqLyq8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8090b5ea, base path is set to: null +09:02:57.610 [XNIO-1 task-2] PADX5cwsTZCoWAUKqLyq8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.610 [XNIO-1 task-2] PADX5cwsTZCoWAUKqLyq8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.610 [XNIO-1 task-2] PADX5cwsTZCoWAUKqLyq8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8090b5ea, base path is set to: null +09:02:57.610 [XNIO-1 task-2] PADX5cwsTZCoWAUKqLyq8g DEBUG com.networknt.schema.TypeValidator debug - validate( "8090b5ea", "8090b5ea", serviceId) +09:02:57.619 [XNIO-1 task-2] v9zKHz2NRw2M-t-A1e_oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/768c328a +09:02:57.619 [XNIO-1 task-2] v9zKHz2NRw2M-t-A1e_oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.620 [XNIO-1 task-2] v9zKHz2NRw2M-t-A1e_oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.620 [XNIO-1 task-2] v9zKHz2NRw2M-t-A1e_oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/768c328a +09:02:57.625 [XNIO-1 task-2] _V3Ndb_pSOy9q9V7JJk7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.625 [XNIO-1 task-2] _V3Ndb_pSOy9q9V7JJk7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.625 [XNIO-1 task-2] _V3Ndb_pSOy9q9V7JJk7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.625 [XNIO-1 task-2] _V3Ndb_pSOy9q9V7JJk7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.629 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "129dc28c-cfca-457d-8017-3dcfafed", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.630 [XNIO-1 task-2] EmXIsarYR4-VxXdv9YT4hQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.639 [XNIO-1 task-2] CVPX0QHGRBym-k9-GNPeSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.639 [XNIO-1 task-2] CVPX0QHGRBym-k9-GNPeSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.639 [XNIO-1 task-2] CVPX0QHGRBym-k9-GNPeSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.639 [XNIO-1 task-2] CVPX0QHGRBym-k9-GNPeSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.639 [XNIO-1 task-2] CVPX0QHGRBym-k9-GNPeSA DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", "f0ae9940", serviceId) +09:02:57.642 [XNIO-1 task-2] dpVeqM25QrmPY5PHYwF96Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.642 [XNIO-1 task-2] dpVeqM25QrmPY5PHYwF96Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.642 [XNIO-1 task-2] dpVeqM25QrmPY5PHYwF96Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.643 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:17839735 +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG com.networknt.schema.TypeValidator debug - validate( "5bd3a154-4baa-4b0b-9e83-185fdf98", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.650 [XNIO-1 task-2] NnLvHCr6R92W5HlJHH1Htw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.652 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:888d0b2b-b03a-4ccc-a7f2-b4582f6d24a8 +09:02:57.653 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:888d0b2b-b03a-4ccc-a7f2-b4582f6d24a8 +09:02:57.656 [XNIO-1 task-2] K7HS1R7EQKi72aKHxQKVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.656 [XNIO-1 task-2] K7HS1R7EQKi72aKHxQKVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.656 [XNIO-1 task-2] K7HS1R7EQKi72aKHxQKVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.656 [XNIO-1 task-2] K7HS1R7EQKi72aKHxQKVVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.660 [XNIO-1 task-2] EgWTiBX0R9S3T6wFQNc4Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0622df89 +09:02:57.660 [XNIO-1 task-2] EgWTiBX0R9S3T6wFQNc4Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.660 [XNIO-1 task-2] EgWTiBX0R9S3T6wFQNc4Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.660 [XNIO-1 task-2] EgWTiBX0R9S3T6wFQNc4Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0622df89 +09:02:57.661 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0622df89 +09:02:57.666 [XNIO-1 task-2] uGrIWN2ySmqJF0ZMLLod-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.666 [XNIO-1 task-2] uGrIWN2ySmqJF0ZMLLod-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.667 [XNIO-1 task-2] uGrIWN2ySmqJF0ZMLLod-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.667 [XNIO-1 task-2] uGrIWN2ySmqJF0ZMLLod-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.667 [XNIO-1 task-2] uGrIWN2ySmqJF0ZMLLod-w DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", "f0ae9940", serviceId) +09:02:57.673 [XNIO-1 task-2] V4lVxm8tTu6bl6_fSX6rqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.673 [XNIO-1 task-2] V4lVxm8tTu6bl6_fSX6rqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.673 [XNIO-1 task-2] V4lVxm8tTu6bl6_fSX6rqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.674 [XNIO-1 task-2] V4lVxm8tTu6bl6_fSX6rqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.680 [XNIO-1 task-2] y_oOlTpFTZKe_D_9cXIsJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.680 [XNIO-1 task-2] y_oOlTpFTZKe_D_9cXIsJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.680 [XNIO-1 task-2] y_oOlTpFTZKe_D_9cXIsJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.680 [XNIO-1 task-2] y_oOlTpFTZKe_D_9cXIsJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.708 [XNIO-1 task-2] VECatxXqT82coSv-kAH4eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.708 [XNIO-1 task-2] VECatxXqT82coSv-kAH4eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.708 [XNIO-1 task-2] VECatxXqT82coSv-kAH4eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.708 [XNIO-1 task-2] VECatxXqT82coSv-kAH4eA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.717 [XNIO-1 task-2] mG15mcusSC-3r8Nmckxdcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.717 [XNIO-1 task-2] mG15mcusSC-3r8Nmckxdcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.717 [XNIO-1 task-2] mG15mcusSC-3r8Nmckxdcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.718 [XNIO-1 task-2] mG15mcusSC-3r8Nmckxdcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.718 [XNIO-1 task-2] mG15mcusSC-3r8Nmckxdcw DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", "f0ae9940", serviceId) +09:02:57.720 [XNIO-1 task-2] 3_2DCVkLT56rbFbPXfIkKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe4830f2 +09:02:57.720 [XNIO-1 task-2] 3_2DCVkLT56rbFbPXfIkKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.720 [XNIO-1 task-2] 3_2DCVkLT56rbFbPXfIkKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.720 [XNIO-1 task-2] 3_2DCVkLT56rbFbPXfIkKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe4830f2 +09:02:57.724 [XNIO-1 task-2] pUgILihQQyWfLJg6lWnx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.724 [XNIO-1 task-2] pUgILihQQyWfLJg6lWnx9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.724 [XNIO-1 task-2] pUgILihQQyWfLJg6lWnx9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.724 [XNIO-1 task-2] pUgILihQQyWfLJg6lWnx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.724 [XNIO-1 task-2] pUgILihQQyWfLJg6lWnx9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", "f0ae9940", serviceId) +09:02:57.728 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.728 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.728 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.729 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.729 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.729 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG com.networknt.schema.TypeValidator debug - validate( "3a45a656-feb2-4d5b-9f35-15f19bf95b37", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:57.729 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG com.networknt.schema.TypeValidator debug - validate( "28e234ea", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:57.729 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.729 [XNIO-1 task-2] YKBiV28wTciNZ9mjwpVnHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"28e234ea","serviceName":"129dc28c-cfca-457d-8017-3dcfafed","serviceDesc":"3a45a656-feb2-4d5b-9f35-15f19bf95b37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.737 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a9909fb0-6a5f-4605-bc82-63f7260adaf9 +09:02:57.739 [XNIO-1 task-2] HbHhdS1oT-2FTesUHDyPYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17839735, base path is set to: null +09:02:57.739 [XNIO-1 task-2] HbHhdS1oT-2FTesUHDyPYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.739 [XNIO-1 task-2] HbHhdS1oT-2FTesUHDyPYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.740 [XNIO-1 task-2] HbHhdS1oT-2FTesUHDyPYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17839735, base path is set to: null +09:02:57.740 [XNIO-1 task-2] HbHhdS1oT-2FTesUHDyPYg DEBUG com.networknt.schema.TypeValidator debug - validate( "17839735", "17839735", serviceId) +09:02:57.741 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:17839735 +09:02:57.746 [XNIO-1 task-2] SXJxB29jTxC-XD5pvqmtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.746 [XNIO-1 task-2] SXJxB29jTxC-XD5pvqmtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.747 [XNIO-1 task-2] SXJxB29jTxC-XD5pvqmtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:57.756 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.757 [XNIO-1 task-2] Oyml0VUITx2J10Ndip9LpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0ae9940","serviceName":"bceb1f7b-4d61-4421-9fea-a706d2c3","serviceDesc":"9369ae5b-c262-4bd8-b0a5-7b18dc3fd9f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.762 [XNIO-1 task-2] 9L_bHgyfS02Cwe8nLzGIyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28e234ea +09:02:57.762 [XNIO-1 task-2] 9L_bHgyfS02Cwe8nLzGIyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.762 [XNIO-1 task-2] 9L_bHgyfS02Cwe8nLzGIyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.762 [XNIO-1 task-2] 9L_bHgyfS02Cwe8nLzGIyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28e234ea +09:02:57.767 [XNIO-1 task-2] SWEayhNvRNiBem8aFwocQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/de65e616, base path is set to: null +09:02:57.767 [XNIO-1 task-2] SWEayhNvRNiBem8aFwocQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.767 [XNIO-1 task-2] SWEayhNvRNiBem8aFwocQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.767 [XNIO-1 task-2] SWEayhNvRNiBem8aFwocQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/de65e616, base path is set to: null +09:02:57.768 [XNIO-1 task-2] SWEayhNvRNiBem8aFwocQA DEBUG com.networknt.schema.TypeValidator debug - validate( "de65e616", "de65e616", serviceId) +09:02:57.770 [XNIO-1 task-2] J-GEZsSpT2GDae6pDBtvkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de65e616 +09:02:57.770 [XNIO-1 task-2] J-GEZsSpT2GDae6pDBtvkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.770 [XNIO-1 task-2] J-GEZsSpT2GDae6pDBtvkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.771 [XNIO-1 task-2] J-GEZsSpT2GDae6pDBtvkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de65e616 +09:02:57.777 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.777 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.778 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.778 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.778 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.778 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.778 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.778 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG com.networknt.schema.TypeValidator debug - validate( "5bd3a154-4baa-4b0b-9e83-185fdf98", {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.778 [XNIO-1 task-2] hlfN98MzR82t9W9keqnvsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe4830f2","serviceName":"5bd3a154-4baa-4b0b-9e83-185fdf98","serviceDesc":"ec13f8ef-9c92-4328-8366-6b08c98fdbb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.788 [XNIO-1 task-2] W7ErS-mvR9CpTViD8BeamQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.788 [XNIO-1 task-2] W7ErS-mvR9CpTViD8BeamQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.788 [XNIO-1 task-2] W7ErS-mvR9CpTViD8BeamQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.799 [XNIO-1 task-2] CMHKE2d5Qh-UDIQr5NpPvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.799 [XNIO-1 task-2] CMHKE2d5Qh-UDIQr5NpPvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.799 [XNIO-1 task-2] CMHKE2d5Qh-UDIQr5NpPvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.799 [XNIO-1 task-2] CMHKE2d5Qh-UDIQr5NpPvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.805 [XNIO-1 task-2] 19zqUAtfRk2YC0BX_WHPhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.805 [XNIO-1 task-2] 19zqUAtfRk2YC0BX_WHPhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.805 [XNIO-1 task-2] 19zqUAtfRk2YC0BX_WHPhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.805 [XNIO-1 task-2] 19zqUAtfRk2YC0BX_WHPhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0ae9940, base path is set to: null +09:02:57.806 [XNIO-1 task-2] 19zqUAtfRk2YC0BX_WHPhw DEBUG com.networknt.schema.TypeValidator debug - validate( "f0ae9940", "f0ae9940", serviceId) +09:02:57.816 [XNIO-1 task-2] HAa8vc45SUOcl9LDMvARPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.816 [XNIO-1 task-2] HAa8vc45SUOcl9LDMvARPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.816 [XNIO-1 task-2] HAa8vc45SUOcl9LDMvARPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.819 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a5d2afd5 +09:02:57.824 [XNIO-1 task-2] -xv5gW4oR_uVqCSqyESciA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f9033248, base path is set to: null +09:02:57.825 [XNIO-1 task-2] -xv5gW4oR_uVqCSqyESciA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.825 [XNIO-1 task-2] -xv5gW4oR_uVqCSqyESciA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.825 [XNIO-1 task-2] -xv5gW4oR_uVqCSqyESciA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f9033248, base path is set to: null +09:02:57.825 [XNIO-1 task-2] -xv5gW4oR_uVqCSqyESciA DEBUG com.networknt.schema.TypeValidator debug - validate( "f9033248", "f9033248", serviceId) +09:02:57.828 [XNIO-1 task-2] LE8c9YP8Q6-46q6lz876nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a5d2afd5 +09:02:57.828 [XNIO-1 task-2] LE8c9YP8Q6-46q6lz876nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.828 [XNIO-1 task-2] LE8c9YP8Q6-46q6lz876nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.828 [XNIO-1 task-2] LE8c9YP8Q6-46q6lz876nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a5d2afd5 +09:02:57.832 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.832 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.832 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.832 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.833 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.833 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.833 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.833 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea79e65-9480-4e40-a5ef-984a5f8f", {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.833 [XNIO-1 task-2] ZPvbZZB7TqW8pJU1sEt_pQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.841 [XNIO-1 task-2] 27Qxn85IQ0yCvqqPGqqRIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.841 [XNIO-1 task-2] 27Qxn85IQ0yCvqqPGqqRIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.841 [XNIO-1 task-2] 27Qxn85IQ0yCvqqPGqqRIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.846 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5f7dc0b8-5b84-4f7a-9c0b-4b7803f55032 +09:02:57.851 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5f7dc0b8-5b84-4f7a-9c0b-4b7803f55032 +09:02:57.852 [XNIO-1 task-2] -3RTZlHsR6ifonSJMhlLnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.852 [XNIO-1 task-2] -3RTZlHsR6ifonSJMhlLnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.852 [XNIO-1 task-2] -3RTZlHsR6ifonSJMhlLnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.852 [XNIO-1 task-2] -3RTZlHsR6ifonSJMhlLnA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.859 [XNIO-1 task-2] Cj1d3zOIT9i5g2jMeryZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a5d2afd5 +09:02:57.859 [XNIO-1 task-2] Cj1d3zOIT9i5g2jMeryZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.859 [XNIO-1 task-2] Cj1d3zOIT9i5g2jMeryZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.859 [XNIO-1 task-2] Cj1d3zOIT9i5g2jMeryZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a5d2afd5 +09:02:57.860 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a5d2afd5 +09:02:57.865 [XNIO-1 task-2] YJMjKM3fS6S2UnPLBCvw-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe4830f2, base path is set to: null +09:02:57.865 [XNIO-1 task-2] YJMjKM3fS6S2UnPLBCvw-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.865 [XNIO-1 task-2] YJMjKM3fS6S2UnPLBCvw-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.865 [XNIO-1 task-2] YJMjKM3fS6S2UnPLBCvw-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe4830f2, base path is set to: null +09:02:57.865 [XNIO-1 task-2] YJMjKM3fS6S2UnPLBCvw-A DEBUG com.networknt.schema.TypeValidator debug - validate( "fe4830f2", "fe4830f2", serviceId) +09:02:57.873 [XNIO-1 task-2] YJ9_yfqsT7iBryoERDH7KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/326b14a3 +09:02:57.873 [XNIO-1 task-2] YJ9_yfqsT7iBryoERDH7KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.873 [XNIO-1 task-2] YJ9_yfqsT7iBryoERDH7KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.873 [XNIO-1 task-2] YJ9_yfqsT7iBryoERDH7KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/326b14a3 +09:02:57.877 [XNIO-1 task-2] PhXHaS05SGGK4dfNaTUwaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/326b14a3, base path is set to: null +09:02:57.877 [XNIO-1 task-2] PhXHaS05SGGK4dfNaTUwaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.877 [XNIO-1 task-2] PhXHaS05SGGK4dfNaTUwaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.877 [XNIO-1 task-2] PhXHaS05SGGK4dfNaTUwaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/326b14a3, base path is set to: null +09:02:57.877 [XNIO-1 task-2] PhXHaS05SGGK4dfNaTUwaA DEBUG com.networknt.schema.TypeValidator debug - validate( "326b14a3", "326b14a3", serviceId) +09:02:57.880 [XNIO-1 task-2] j2spb1LETM2LA7pRtosObQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/326b14a3 +09:02:57.880 [XNIO-1 task-2] j2spb1LETM2LA7pRtosObQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.880 [XNIO-1 task-2] j2spb1LETM2LA7pRtosObQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.880 [XNIO-1 task-2] j2spb1LETM2LA7pRtosObQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/326b14a3 +09:02:57.887 [XNIO-1 task-2] l-6rLpPsTKGa9ixG2eOzYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.887 [XNIO-1 task-2] l-6rLpPsTKGa9ixG2eOzYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.887 [XNIO-1 task-2] l-6rLpPsTKGa9ixG2eOzYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.888 [XNIO-1 task-2] l-6rLpPsTKGa9ixG2eOzYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:57.893 [XNIO-1 task-2] v1c64G2AQGmatqhPgdPvPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f9033248, base path is set to: null +09:02:57.894 [XNIO-1 task-2] v1c64G2AQGmatqhPgdPvPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.894 [XNIO-1 task-2] v1c64G2AQGmatqhPgdPvPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.894 [XNIO-1 task-2] v1c64G2AQGmatqhPgdPvPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f9033248, base path is set to: null +09:02:57.894 [XNIO-1 task-2] v1c64G2AQGmatqhPgdPvPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9033248", "f9033248", serviceId) +09:02:57.896 [XNIO-1 task-2] JM5zl8jCT4eYNSIBbgBpsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.896 [XNIO-1 task-2] JM5zl8jCT4eYNSIBbgBpsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.896 [XNIO-1 task-2] JM5zl8jCT4eYNSIBbgBpsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.896 [XNIO-1 task-2] JM5zl8jCT4eYNSIBbgBpsA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aec38a93-1b7c-4ea2-a307-3b4b50bc553f", {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9033248", {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:57.903 [XNIO-1 task-2] NipaVj5nRQC6VsroWsRJqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f9033248","serviceName":"4ea79e65-9480-4e40-a5ef-984a5f8f","serviceDesc":"aec38a93-1b7c-4ea2-a307-3b4b50bc553f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.909 [XNIO-1 task-2] mIdOqZ_DRECfeSNMrYJwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f9033248 +09:02:57.909 [XNIO-1 task-2] mIdOqZ_DRECfeSNMrYJwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.910 [XNIO-1 task-2] mIdOqZ_DRECfeSNMrYJwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.910 [XNIO-1 task-2] mIdOqZ_DRECfeSNMrYJwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f9033248 +09:02:57.915 [XNIO-1 task-2] OY_JKGa0R_ew8WUFtdE5GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.915 [XNIO-1 task-2] OY_JKGa0R_ew8WUFtdE5GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.915 [XNIO-1 task-2] OY_JKGa0R_ew8WUFtdE5GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.921 [XNIO-1 task-2] nxL6n3EVSrqdOPYgVHpr6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3650e495, base path is set to: null +09:02:57.921 [XNIO-1 task-2] nxL6n3EVSrqdOPYgVHpr6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.921 [XNIO-1 task-2] nxL6n3EVSrqdOPYgVHpr6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.921 [XNIO-1 task-2] nxL6n3EVSrqdOPYgVHpr6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3650e495, base path is set to: null +09:02:57.921 [XNIO-1 task-2] nxL6n3EVSrqdOPYgVHpr6w DEBUG com.networknt.schema.TypeValidator debug - validate( "3650e495", "3650e495", serviceId) +09:02:57.927 [XNIO-1 task-2] bQ7tuuwcSzqrMOtvHwpHXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.927 [XNIO-1 task-2] bQ7tuuwcSzqrMOtvHwpHXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.927 [XNIO-1 task-2] bQ7tuuwcSzqrMOtvHwpHXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.934 [XNIO-1 task-2] K9DLHP6SS8u6bYbUE2DD7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a9c9a0a +09:02:57.934 [XNIO-1 task-2] K9DLHP6SS8u6bYbUE2DD7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.934 [XNIO-1 task-2] K9DLHP6SS8u6bYbUE2DD7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.935 [XNIO-1 task-2] K9DLHP6SS8u6bYbUE2DD7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a9c9a0a +09:02:57.940 [XNIO-1 task-2] V7ZpxWazRXeRZ2LfAe43wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.940 [XNIO-1 task-2] V7ZpxWazRXeRZ2LfAe43wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.940 [XNIO-1 task-2] V7ZpxWazRXeRZ2LfAe43wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.946 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.946 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.946 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:57.946 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.946 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.947 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:57.947 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:57.947 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG com.networknt.schema.TypeValidator debug - validate( "090a1495-7064-489d-ba65-314cedc1", {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:57.947 [XNIO-1 task-2] 2cjqH_g_THO7IKpLHgir6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72b34c24","serviceName":"090a1495-7064-489d-ba65-314cedc1","serviceDesc":"8db5810d-952f-4783-8757-9515983ff2a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:57.953 [XNIO-1 task-2] IRfR3TcXQKeWstO_TLdb7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72b34c24, base path is set to: null +09:02:57.954 [XNIO-1 task-2] IRfR3TcXQKeWstO_TLdb7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.954 [XNIO-1 task-2] IRfR3TcXQKeWstO_TLdb7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.954 [XNIO-1 task-2] IRfR3TcXQKeWstO_TLdb7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72b34c24, base path is set to: null +09:02:57.954 [XNIO-1 task-2] IRfR3TcXQKeWstO_TLdb7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "72b34c24", "72b34c24", serviceId) +09:02:57.956 [XNIO-1 task-2] ab7oky-wToWAGRqauE6TQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.957 [XNIO-1 task-2] ab7oky-wToWAGRqauE6TQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.957 [XNIO-1 task-2] ab7oky-wToWAGRqauE6TQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.964 [XNIO-1 task-2] XehN53bBSi21B1L4oW8OTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.965 [XNIO-1 task-2] XehN53bBSi21B1L4oW8OTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.965 [XNIO-1 task-2] XehN53bBSi21B1L4oW8OTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.965 [XNIO-1 task-2] XehN53bBSi21B1L4oW8OTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.972 [XNIO-1 task-2] IF-RnxFBSm2aCG-hTa9udw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f767dff8, base path is set to: null +09:02:57.973 [XNIO-1 task-2] IF-RnxFBSm2aCG-hTa9udw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.973 [XNIO-1 task-2] IF-RnxFBSm2aCG-hTa9udw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.973 [XNIO-1 task-2] IF-RnxFBSm2aCG-hTa9udw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f767dff8, base path is set to: null +09:02:57.973 [XNIO-1 task-2] IF-RnxFBSm2aCG-hTa9udw DEBUG com.networknt.schema.TypeValidator debug - validate( "f767dff8", "f767dff8", serviceId) +09:02:57.977 [XNIO-1 task-2] -xYd3nsxRH6bt-QSBXf_Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f767dff8 +09:02:57.977 [XNIO-1 task-2] -xYd3nsxRH6bt-QSBXf_Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.977 [XNIO-1 task-2] -xYd3nsxRH6bt-QSBXf_Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:57.977 [XNIO-1 task-2] -xYd3nsxRH6bt-QSBXf_Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f767dff8 +09:02:57.983 [XNIO-1 task-2] Z3pYowi8QhqJxy1FDHVBNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72b34c24, base path is set to: null +09:02:57.983 [XNIO-1 task-2] Z3pYowi8QhqJxy1FDHVBNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:57.983 [XNIO-1 task-2] Z3pYowi8QhqJxy1FDHVBNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:57.983 [XNIO-1 task-2] Z3pYowi8QhqJxy1FDHVBNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72b34c24, base path is set to: null +09:02:57.983 [XNIO-1 task-2] Z3pYowi8QhqJxy1FDHVBNA DEBUG com.networknt.schema.TypeValidator debug - validate( "72b34c24", "72b34c24", serviceId) +09:02:57.990 [XNIO-1 task-2] 3BaNTqcnQCm7fwMaq8EzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.990 [XNIO-1 task-2] 3BaNTqcnQCm7fwMaq8EzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.990 [XNIO-1 task-2] 3BaNTqcnQCm7fwMaq8EzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.990 [XNIO-1 task-2] 3BaNTqcnQCm7fwMaq8EzZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.994 [XNIO-1 task-2] uogZeNlNSSuSniRjzWrN0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.994 [XNIO-1 task-2] uogZeNlNSSuSniRjzWrN0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.994 [XNIO-1 task-2] uogZeNlNSSuSniRjzWrN0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.994 [XNIO-1 task-2] uogZeNlNSSuSniRjzWrN0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.999 [XNIO-1 task-2] CRCHMGbnR4WkRayW704HLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.999 [XNIO-1 task-2] CRCHMGbnR4WkRayW704HLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:57.999 [XNIO-1 task-2] CRCHMGbnR4WkRayW704HLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.005 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.005 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.006 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.006 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.006 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.007 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG com.networknt.schema.TypeValidator debug - validate( "a6401bef-a75d-4dac-951b-366ba0bd6e93", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.007 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG com.networknt.schema.TypeValidator debug - validate( "72af3189", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.007 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.007 [XNIO-1 task-2] khn9pfNfRr-ZKrzybJ_Rig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.012 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.012 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.013 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.013 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.013 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.013 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG com.networknt.schema.TypeValidator debug - validate( "a6401bef-a75d-4dac-951b-366ba0bd6e93", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.013 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG com.networknt.schema.TypeValidator debug - validate( "72af3189", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.013 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.013 [XNIO-1 task-2] vGXC152FTH-2FHj5nvDS3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72af3189","serviceName":"8f543388-3398-4802-ac2b-826dfa30","serviceDesc":"a6401bef-a75d-4dac-951b-366ba0bd6e93","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.019 [XNIO-1 task-2] kVzGiMG4RgSxIXvoXf9aXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/72af3189 +09:02:58.019 [XNIO-1 task-2] kVzGiMG4RgSxIXvoXf9aXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.019 [XNIO-1 task-2] kVzGiMG4RgSxIXvoXf9aXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.020 [XNIO-1 task-2] kVzGiMG4RgSxIXvoXf9aXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/72af3189 +09:02:58.028 [XNIO-1 task-2] sy0rn7IcS5-5hgOmgy70Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.028 [XNIO-1 task-2] sy0rn7IcS5-5hgOmgy70Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.028 [XNIO-1 task-2] sy0rn7IcS5-5hgOmgy70Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.028 [XNIO-1 task-2] sy0rn7IcS5-5hgOmgy70Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.032 [XNIO-1 task-2] -5NmVadYR3G3blPYLH_www DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.032 [XNIO-1 task-2] -5NmVadYR3G3blPYLH_www DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.032 [XNIO-1 task-2] -5NmVadYR3G3blPYLH_www DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.032 [XNIO-1 task-2] -5NmVadYR3G3blPYLH_www DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.039 [XNIO-1 task-2] CXatX2nkSKueWv0CAqo9SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.039 [XNIO-1 task-2] CXatX2nkSKueWv0CAqo9SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.040 [XNIO-1 task-2] CXatX2nkSKueWv0CAqo9SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.051 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.051 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.051 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.051 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.051 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.051 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.052 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.052 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG com.networknt.schema.TypeValidator debug - validate( "dcc186d5-b61c-4778-b467-c312cbc7", {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.052 [XNIO-1 task-2] Pq5IHUjVQV-dd_qHSurV0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7895856e","serviceName":"dcc186d5-b61c-4778-b467-c312cbc7","serviceDesc":"eff5fdf7-1f01-464b-920e-1f880e744eae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.057 [XNIO-1 task-2] JXHctbN0RXaz8afMOrX3SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7895856e, base path is set to: null +09:02:58.057 [XNIO-1 task-2] JXHctbN0RXaz8afMOrX3SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.057 [XNIO-1 task-2] JXHctbN0RXaz8afMOrX3SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.057 [XNIO-1 task-2] JXHctbN0RXaz8afMOrX3SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7895856e, base path is set to: null +09:02:58.058 [XNIO-1 task-2] JXHctbN0RXaz8afMOrX3SA DEBUG com.networknt.schema.TypeValidator debug - validate( "7895856e", "7895856e", serviceId) +09:02:58.060 [XNIO-1 task-2] oTG1Q4Q3TDqP-AQVq9QOow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7895856e, base path is set to: null +09:02:58.061 [XNIO-1 task-2] oTG1Q4Q3TDqP-AQVq9QOow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.061 [XNIO-1 task-2] oTG1Q4Q3TDqP-AQVq9QOow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.061 [XNIO-1 task-2] oTG1Q4Q3TDqP-AQVq9QOow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7895856e, base path is set to: null +09:02:58.061 [XNIO-1 task-2] oTG1Q4Q3TDqP-AQVq9QOow DEBUG com.networknt.schema.TypeValidator debug - validate( "7895856e", "7895856e", serviceId) +09:02:58.068 [XNIO-1 task-2] 1vLIu_eeTSG-B6mVyoiXeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.068 [XNIO-1 task-2] 1vLIu_eeTSG-B6mVyoiXeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.068 [XNIO-1 task-2] 1vLIu_eeTSG-B6mVyoiXeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.068 [XNIO-1 task-2] 1vLIu_eeTSG-B6mVyoiXeA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.076 [XNIO-1 task-2] NluKj0R7RaSiEUaSnhwiXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.076 [XNIO-1 task-2] NluKj0R7RaSiEUaSnhwiXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.076 [XNIO-1 task-2] NluKj0R7RaSiEUaSnhwiXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.076 [XNIO-1 task-2] NluKj0R7RaSiEUaSnhwiXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.081 [XNIO-1 task-2] fpyyi-n2Q-O2xHS_eBDrTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.081 [XNIO-1 task-2] fpyyi-n2Q-O2xHS_eBDrTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.081 [XNIO-1 task-2] fpyyi-n2Q-O2xHS_eBDrTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.082 [XNIO-1 task-2] fpyyi-n2Q-O2xHS_eBDrTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.093 [XNIO-1 task-2] xqkmIETiSC-96gc8DuPYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.093 [XNIO-1 task-2] xqkmIETiSC-96gc8DuPYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.094 [XNIO-1 task-2] xqkmIETiSC-96gc8DuPYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.094 [XNIO-1 task-2] xqkmIETiSC-96gc8DuPYTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.097 [XNIO-1 task-2] m5RxjL45QpWve1sxBQ8g9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.098 [XNIO-1 task-2] m5RxjL45QpWve1sxBQ8g9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.098 [XNIO-1 task-2] m5RxjL45QpWve1sxBQ8g9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.103 [XNIO-1 task-2] 7ke7iKPSQ_CeyiiZb2nwMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bcae446c +09:02:58.103 [XNIO-1 task-2] 7ke7iKPSQ_CeyiiZb2nwMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.103 [XNIO-1 task-2] 7ke7iKPSQ_CeyiiZb2nwMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.103 [XNIO-1 task-2] 7ke7iKPSQ_CeyiiZb2nwMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bcae446c +09:02:58.106 [XNIO-1 task-2] iudyaytoR26faWmFOFM4Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.107 [XNIO-1 task-2] iudyaytoR26faWmFOFM4Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.107 [XNIO-1 task-2] iudyaytoR26faWmFOFM4Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.107 [XNIO-1 task-2] iudyaytoR26faWmFOFM4Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.111 [XNIO-1 task-2] lzj8iKZmQJuE7vwFqz9uZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bcae446c, base path is set to: null +09:02:58.111 [XNIO-1 task-2] lzj8iKZmQJuE7vwFqz9uZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.111 [XNIO-1 task-2] lzj8iKZmQJuE7vwFqz9uZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.111 [XNIO-1 task-2] lzj8iKZmQJuE7vwFqz9uZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bcae446c, base path is set to: null +09:02:58.111 [XNIO-1 task-2] lzj8iKZmQJuE7vwFqz9uZw DEBUG com.networknt.schema.TypeValidator debug - validate( "bcae446c", "bcae446c", serviceId) +09:02:58.117 [XNIO-1 task-2] f1pbxEbOQyC8wNgzgtrG4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.117 [XNIO-1 task-2] f1pbxEbOQyC8wNgzgtrG4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.117 [XNIO-1 task-2] f1pbxEbOQyC8wNgzgtrG4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.123 [XNIO-1 task-2] 2KrJh86SRK6dXLquaMBM_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.123 [XNIO-1 task-2] 2KrJh86SRK6dXLquaMBM_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.123 [XNIO-1 task-2] 2KrJh86SRK6dXLquaMBM_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.123 [XNIO-1 task-2] 2KrJh86SRK6dXLquaMBM_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.127 [XNIO-1 task-2] k47mLZmWQcaMznlhB4Pmbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.127 [XNIO-1 task-2] k47mLZmWQcaMznlhB4Pmbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.128 [XNIO-1 task-2] k47mLZmWQcaMznlhB4Pmbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.137 [XNIO-1 task-2] XXbbcxd4Q3euo4KPBF0u1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06fc87fe +09:02:58.137 [XNIO-1 task-2] XXbbcxd4Q3euo4KPBF0u1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.137 [XNIO-1 task-2] XXbbcxd4Q3euo4KPBF0u1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.138 [XNIO-1 task-2] XXbbcxd4Q3euo4KPBF0u1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06fc87fe +09:02:58.141 [XNIO-1 task-2] hGivKZL8QUiNXt2mZqewUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.141 [XNIO-1 task-2] hGivKZL8QUiNXt2mZqewUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.141 [XNIO-1 task-2] hGivKZL8QUiNXt2mZqewUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.154 [XNIO-1 task-2] ehNVFVTfTtGjW-gwMQgAkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.155 [XNIO-1 task-2] ehNVFVTfTtGjW-gwMQgAkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.155 [XNIO-1 task-2] ehNVFVTfTtGjW-gwMQgAkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.155 [XNIO-1 task-2] ehNVFVTfTtGjW-gwMQgAkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.159 [XNIO-1 task-2] mmhcrXXpQFitYtXO7BvhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.159 [XNIO-1 task-2] mmhcrXXpQFitYtXO7BvhtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.159 [XNIO-1 task-2] mmhcrXXpQFitYtXO7BvhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.159 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1ee154a +09:02:58.160 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1ee154a +09:02:58.166 [XNIO-1 task-2] YR9s-fOrS42qtgnaywOywg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.166 [XNIO-1 task-2] YR9s-fOrS42qtgnaywOywg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.166 [XNIO-1 task-2] YR9s-fOrS42qtgnaywOywg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.166 [XNIO-1 task-2] YR9s-fOrS42qtgnaywOywg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.176 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.176 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.176 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.176 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.176 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.177 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3b032a0e-2417-4403-b0fb-9f8e7ebd4bae", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.177 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ee154a", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.177 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.177 [XNIO-1 task-2] ttSr-hY8Q0KoXUBJ8jzV7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.177 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1ee154a +09:02:58.182 [XNIO-1 task-2] wASg9cM7RxSzSHA4zTaE0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/96abb11b +09:02:58.182 [XNIO-1 task-2] wASg9cM7RxSzSHA4zTaE0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.182 [XNIO-1 task-2] wASg9cM7RxSzSHA4zTaE0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.183 [XNIO-1 task-2] wASg9cM7RxSzSHA4zTaE0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/96abb11b +09:02:58.185 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1d59f532 +09:02:58.186 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1d59f532 +09:02:58.192 [XNIO-1 task-2] kj9_0QzZRQ-ThMqKsjxpwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06fc87fe +09:02:58.192 [XNIO-1 task-2] kj9_0QzZRQ-ThMqKsjxpwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.192 [XNIO-1 task-2] kj9_0QzZRQ-ThMqKsjxpwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.192 [XNIO-1 task-2] kj9_0QzZRQ-ThMqKsjxpwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06fc87fe +09:02:58.201 [XNIO-1 task-2] bz6b78ACQ5ezNOPR_XjLJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.201 [XNIO-1 task-2] bz6b78ACQ5ezNOPR_XjLJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.201 [XNIO-1 task-2] bz6b78ACQ5ezNOPR_XjLJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.201 [XNIO-1 task-2] bz6b78ACQ5ezNOPR_XjLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.207 [XNIO-1 task-2] 3wXhP_cxQqybvj47KPuwXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b352e11, base path is set to: null +09:02:58.207 [XNIO-1 task-2] 3wXhP_cxQqybvj47KPuwXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.207 [XNIO-1 task-2] 3wXhP_cxQqybvj47KPuwXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.207 [XNIO-1 task-2] 3wXhP_cxQqybvj47KPuwXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b352e11, base path is set to: null +09:02:58.207 [XNIO-1 task-2] 3wXhP_cxQqybvj47KPuwXg DEBUG com.networknt.schema.TypeValidator debug - validate( "3b352e11", "3b352e11", serviceId) +09:02:58.215 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.215 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.215 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.215 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.215 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.216 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG com.networknt.schema.TypeValidator debug - validate( "3b032a0e-2417-4403-b0fb-9f8e7ebd4bae", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.216 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ee154a", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.216 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.216 [XNIO-1 task-2] IMYrn2TxT2ypi5ZrypX7tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.216 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1ee154a +09:02:58.223 [XNIO-1 task-2] IBOBl0TZQt2xLAcwyvKNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.223 [XNIO-1 task-2] IBOBl0TZQt2xLAcwyvKNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.223 [XNIO-1 task-2] IBOBl0TZQt2xLAcwyvKNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG com.networknt.schema.TypeValidator debug - validate( "3b032a0e-2417-4403-b0fb-9f8e7ebd4bae", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ee154a", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.232 [XNIO-1 task-2] QpsgLwDCQ6GU1xSykJslzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.233 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1ee154a +09:02:58.240 [XNIO-1 task-2] bkNZzwPVT7ugzkRQNdiCsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.240 [XNIO-1 task-2] bkNZzwPVT7ugzkRQNdiCsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.240 [XNIO-1 task-2] bkNZzwPVT7ugzkRQNdiCsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.248 [XNIO-1 task-2] wexD9rSfRgawsMaj7tV9pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.248 [XNIO-1 task-2] wexD9rSfRgawsMaj7tV9pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.248 [XNIO-1 task-2] wexD9rSfRgawsMaj7tV9pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.253 [XNIO-1 task-2] aEyLrkrQRXSCGpSBrUhN5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac9eba07, base path is set to: null +09:02:58.254 [XNIO-1 task-2] aEyLrkrQRXSCGpSBrUhN5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.254 [XNIO-1 task-2] aEyLrkrQRXSCGpSBrUhN5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.254 [XNIO-1 task-2] aEyLrkrQRXSCGpSBrUhN5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac9eba07, base path is set to: null +09:02:58.254 [XNIO-1 task-2] aEyLrkrQRXSCGpSBrUhN5A DEBUG com.networknt.schema.TypeValidator debug - validate( "ac9eba07", "ac9eba07", serviceId) +09:02:58.262 [XNIO-1 task-2] TiLMktVFTXiHLJnjH-x4Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.262 [XNIO-1 task-2] TiLMktVFTXiHLJnjH-x4Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.263 [XNIO-1 task-2] TiLMktVFTXiHLJnjH-x4Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.270 [XNIO-1 task-2] 7r08aicySDegdVqT0IJrGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/19caf7ec +09:02:58.270 [XNIO-1 task-2] 7r08aicySDegdVqT0IJrGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.270 [XNIO-1 task-2] 7r08aicySDegdVqT0IJrGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.271 [XNIO-1 task-2] 7r08aicySDegdVqT0IJrGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/19caf7ec +09:02:58.275 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1d59f532 +09:02:58.276 [XNIO-1 task-2] ePJHS8pDQbGqoGJHUXwqMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.276 [XNIO-1 task-2] ePJHS8pDQbGqoGJHUXwqMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.276 [XNIO-1 task-2] ePJHS8pDQbGqoGJHUXwqMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.276 [XNIO-1 task-2] ePJHS8pDQbGqoGJHUXwqMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.285 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.285 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.285 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.285 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.285 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.286 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.286 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.286 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG com.networknt.schema.TypeValidator debug - validate( "a4987370-9f2e-419f-a2e1-65409e83", {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.286 [XNIO-1 task-2] CaqyPpthQj22G9BWOdgjTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ee154a","serviceName":"a4987370-9f2e-419f-a2e1-65409e83","serviceDesc":"3b032a0e-2417-4403-b0fb-9f8e7ebd4bae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.286 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c1ee154a +09:02:58.291 [XNIO-1 task-2] CgnY46uvT56QEGY1M-6cOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2d04df99, base path is set to: null +09:02:58.291 [XNIO-1 task-2] CgnY46uvT56QEGY1M-6cOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.291 [XNIO-1 task-2] CgnY46uvT56QEGY1M-6cOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.291 [XNIO-1 task-2] CgnY46uvT56QEGY1M-6cOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2d04df99, base path is set to: null +09:02:58.292 [XNIO-1 task-2] CgnY46uvT56QEGY1M-6cOg DEBUG com.networknt.schema.TypeValidator debug - validate( "2d04df99", "2d04df99", serviceId) +09:02:58.294 [XNIO-1 task-2] tt5qqaeXSqKqJtbhNcjiiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e624f1ad +09:02:58.294 [XNIO-1 task-2] tt5qqaeXSqKqJtbhNcjiiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.294 [XNIO-1 task-2] tt5qqaeXSqKqJtbhNcjiiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.294 [XNIO-1 task-2] tt5qqaeXSqKqJtbhNcjiiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e624f1ad +09:02:58.301 [XNIO-1 task-2] lqServgqRpefuSZN0cZ2-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1ee154a, base path is set to: null +09:02:58.301 [XNIO-1 task-2] lqServgqRpefuSZN0cZ2-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.301 [XNIO-1 task-2] lqServgqRpefuSZN0cZ2-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.301 [XNIO-1 task-2] lqServgqRpefuSZN0cZ2-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1ee154a, base path is set to: null +09:02:58.301 [XNIO-1 task-2] lqServgqRpefuSZN0cZ2-g DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ee154a", "c1ee154a", serviceId) +09:02:58.302 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c1ee154a +09:02:58.306 [XNIO-1 task-2] hw9weLWkSSSizgmnvJZXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d04df99 +09:02:58.306 [XNIO-1 task-2] hw9weLWkSSSizgmnvJZXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.306 [XNIO-1 task-2] hw9weLWkSSSizgmnvJZXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.306 [XNIO-1 task-2] hw9weLWkSSSizgmnvJZXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d04df99 +09:02:58.313 [XNIO-1 task-2] j4XZ33MUSdW98-N_vusGSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.313 [XNIO-1 task-2] j4XZ33MUSdW98-N_vusGSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.313 [XNIO-1 task-2] j4XZ33MUSdW98-N_vusGSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.322 [XNIO-1 task-2] AZ7MXv3oQHOhxwh5RHCL2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41a8b52e, base path is set to: null +09:02:58.322 [XNIO-1 task-2] AZ7MXv3oQHOhxwh5RHCL2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.322 [XNIO-1 task-2] AZ7MXv3oQHOhxwh5RHCL2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.322 [XNIO-1 task-2] AZ7MXv3oQHOhxwh5RHCL2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41a8b52e, base path is set to: null +09:02:58.322 [XNIO-1 task-2] AZ7MXv3oQHOhxwh5RHCL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "41a8b52e", "41a8b52e", serviceId) +09:02:58.324 [XNIO-1 task-2] Pg6fkQlfTvWNgPnJslLzXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41a8b52e +09:02:58.324 [XNIO-1 task-2] Pg6fkQlfTvWNgPnJslLzXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.324 [XNIO-1 task-2] Pg6fkQlfTvWNgPnJslLzXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.324 [XNIO-1 task-2] Pg6fkQlfTvWNgPnJslLzXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41a8b52e +09:02:58.326 [XNIO-1 task-2] gr5NbhIGRBepp9pPQUv1wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.326 [XNIO-1 task-2] gr5NbhIGRBepp9pPQUv1wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.326 [XNIO-1 task-2] gr5NbhIGRBepp9pPQUv1wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.332 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1d59f532 +09:02:58.334 [XNIO-1 task-2] wu4GpdljTAaUKLbOX9Ed8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41a8b52e, base path is set to: null +09:02:58.335 [XNIO-1 task-2] wu4GpdljTAaUKLbOX9Ed8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.335 [XNIO-1 task-2] wu4GpdljTAaUKLbOX9Ed8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.335 [XNIO-1 task-2] wu4GpdljTAaUKLbOX9Ed8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41a8b52e, base path is set to: null +09:02:58.335 [XNIO-1 task-2] wu4GpdljTAaUKLbOX9Ed8A DEBUG com.networknt.schema.TypeValidator debug - validate( "41a8b52e", "41a8b52e", serviceId) +09:02:58.337 [XNIO-1 task-2] Mlt2yvQsS0eZK1q0ggz0GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.337 [XNIO-1 task-2] Mlt2yvQsS0eZK1q0ggz0GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.337 [XNIO-1 task-2] Mlt2yvQsS0eZK1q0ggz0GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.338 [XNIO-1 task-2] Mlt2yvQsS0eZK1q0ggz0GQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.342 [XNIO-1 task-2] r7-jJK8YTlW_hA8oarETeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.342 [XNIO-1 task-2] r7-jJK8YTlW_hA8oarETeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.342 [XNIO-1 task-2] r7-jJK8YTlW_hA8oarETeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG com.networknt.schema.TypeValidator debug - validate( "560e15ac-a622-4341-91d1-6089d417d2cc", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG com.networknt.schema.TypeValidator debug - validate( "5abbfbd1", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.349 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.350 [XNIO-1 task-2] dBWxENCySJ-ONqRY7OfIQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.361 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1d59f532 +09:02:58.364 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.364 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.365 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.365 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.365 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.365 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "560e15ac-a622-4341-91d1-6089d417d2cc", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.365 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "5abbfbd1", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.365 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.365 [XNIO-1 task-2] jngH4aOIQe-6poQe7XH_Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5abbfbd1","serviceName":"cc0d0578-1277-4559-ad36-9da899c7","serviceDesc":"560e15ac-a622-4341-91d1-6089d417d2cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.373 [XNIO-1 task-2] 5Dlq2kt3QSCpXyPWuhvebQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5abbfbd1 +09:02:58.373 [XNIO-1 task-2] 5Dlq2kt3QSCpXyPWuhvebQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.373 [XNIO-1 task-2] 5Dlq2kt3QSCpXyPWuhvebQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.373 [XNIO-1 task-2] 5Dlq2kt3QSCpXyPWuhvebQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5abbfbd1 +09:02:58.381 [XNIO-1 task-2] IZfplk0NQ92Vxm-o9aMgAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.381 [XNIO-1 task-2] IZfplk0NQ92Vxm-o9aMgAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.381 [XNIO-1 task-2] IZfplk0NQ92Vxm-o9aMgAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.381 [XNIO-1 task-2] IZfplk0NQ92Vxm-o9aMgAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.389 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.389 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.389 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.389 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.389 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.389 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.390 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.390 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "82636fee-5cd4-43e0-94fe-b4dc1f07", {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.390 [XNIO-1 task-2] LKBWwD8LTZWhP2fJp0l_Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.397 [XNIO-1 task-2] Zm7_XAWhQGardUwSylaW_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.397 [XNIO-1 task-2] Zm7_XAWhQGardUwSylaW_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.397 [XNIO-1 task-2] Zm7_XAWhQGardUwSylaW_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.397 [XNIO-1 task-2] Zm7_XAWhQGardUwSylaW_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.402 [XNIO-1 task-2] RiP0jm_HRAapVU3Dixkh4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.402 [XNIO-1 task-2] RiP0jm_HRAapVU3Dixkh4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.402 [XNIO-1 task-2] RiP0jm_HRAapVU3Dixkh4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.402 [XNIO-1 task-2] RiP0jm_HRAapVU3Dixkh4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.414 [XNIO-1 task-2] SA-NmW2WRbCkXO7CYlA_bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.414 [XNIO-1 task-2] SA-NmW2WRbCkXO7CYlA_bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.414 [XNIO-1 task-2] SA-NmW2WRbCkXO7CYlA_bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.414 [XNIO-1 task-2] SA-NmW2WRbCkXO7CYlA_bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.422 [XNIO-1 task-2] tC8fhqRgTzyUHpoXYHsZew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.422 [XNIO-1 task-2] tC8fhqRgTzyUHpoXYHsZew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.422 [XNIO-1 task-2] tC8fhqRgTzyUHpoXYHsZew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.426 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1d59f532 +09:02:58.428 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f9f2df6-8c13-4641-8deb-61da9013", {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.429 [XNIO-1 task-2] 42EUcggkRvqNaSK13kk-kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a8b52e","serviceName":"4f9f2df6-8c13-4641-8deb-61da9013","serviceDesc":"2d610d85-f8b4-4a36-a344-169c622390f4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.439 [XNIO-1 task-2] lW3e0_CbQ52d8G0JPmrXxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.439 [XNIO-1 task-2] lW3e0_CbQ52d8G0JPmrXxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.439 [XNIO-1 task-2] lW3e0_CbQ52d8G0JPmrXxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.443 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1d59f532 +09:02:58.446 [XNIO-1 task-2] mh21gO_OSoaR66Y5G85sIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41a8b52e +09:02:58.446 [XNIO-1 task-2] mh21gO_OSoaR66Y5G85sIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.446 [XNIO-1 task-2] mh21gO_OSoaR66Y5G85sIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.447 [XNIO-1 task-2] mh21gO_OSoaR66Y5G85sIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41a8b52e +09:02:58.452 [XNIO-1 task-2] w7QwzPaKSpma77vbpTYDBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.452 [XNIO-1 task-2] w7QwzPaKSpma77vbpTYDBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.452 [XNIO-1 task-2] w7QwzPaKSpma77vbpTYDBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.452 [XNIO-1 task-2] w7QwzPaKSpma77vbpTYDBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.457 [XNIO-1 task-2] JNL0UelQSoqMa9CL6ddaHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf63be00, base path is set to: null +09:02:58.457 [XNIO-1 task-2] JNL0UelQSoqMa9CL6ddaHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.457 [XNIO-1 task-2] JNL0UelQSoqMa9CL6ddaHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.458 [XNIO-1 task-2] JNL0UelQSoqMa9CL6ddaHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf63be00, base path is set to: null +09:02:58.458 [XNIO-1 task-2] JNL0UelQSoqMa9CL6ddaHw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf63be00", "bf63be00", serviceId) +09:02:58.461 [XNIO-1 task-2] FeJxzNUVQcK5kJQTYQNnbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.461 [XNIO-1 task-2] FeJxzNUVQcK5kJQTYQNnbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.461 [XNIO-1 task-2] FeJxzNUVQcK5kJQTYQNnbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.467 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.467 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.468 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.468 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.468 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.468 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG com.networknt.schema.TypeValidator debug - validate( "fac49291-f50d-40bd-8a7c-4d00a36753a6", {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.468 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG com.networknt.schema.TypeValidator debug - validate( "cad48e98", {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.468 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.468 [XNIO-1 task-2] _0RE_yHxTeWjwImhLt9K4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.474 [XNIO-1 task-2] Rk6_Y0erRSOUJyrCihZwqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.474 [XNIO-1 task-2] Rk6_Y0erRSOUJyrCihZwqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.474 [XNIO-1 task-2] Rk6_Y0erRSOUJyrCihZwqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.474 [XNIO-1 task-2] Rk6_Y0erRSOUJyrCihZwqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.479 [XNIO-1 task-2] 0E45HAErRp6gh5I4izvpYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.479 [XNIO-1 task-2] 0E45HAErRp6gh5I4izvpYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.479 [XNIO-1 task-2] 0E45HAErRp6gh5I4izvpYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.486 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.486 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.486 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.486 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.487 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.487 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG com.networknt.schema.TypeValidator debug - validate( "7e5a8438-e7b6-4c1c-b966-88afcf967bbb", {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.487 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf63be00", {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.487 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.487 [XNIO-1 task-2] NZmbLwiGR-inM9Up3K2KDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf63be00","serviceName":"82636fee-5cd4-43e0-94fe-b4dc1f07","serviceDesc":"7e5a8438-e7b6-4c1c-b966-88afcf967bbb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.493 [XNIO-1 task-2] RtphfD6PT7av_UJwi5tP3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.493 [XNIO-1 task-2] RtphfD6PT7av_UJwi5tP3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.493 [XNIO-1 task-2] RtphfD6PT7av_UJwi5tP3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.502 [XNIO-1 task-2] kcOx5erWTDOHI1E41zRq0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.502 [XNIO-1 task-2] kcOx5erWTDOHI1E41zRq0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.502 [XNIO-1 task-2] kcOx5erWTDOHI1E41zRq0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG com.networknt.schema.TypeValidator debug - validate( "06bba4ea-fb55-42e8-ad34-b1e183d9f265", {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG com.networknt.schema.TypeValidator debug - validate( "a990d48d", {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.510 [XNIO-1 task-2] 59iGfv6iRAWNOBSzV_woTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a990d48d","serviceName":"12dd04db-018f-424a-91db-c57ece89","serviceDesc":"06bba4ea-fb55-42e8-ad34-b1e183d9f265","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.517 [XNIO-1 task-2] 48EIbbg5S9SfWWMjldgFlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3ed1cd6c +09:02:58.517 [XNIO-1 task-2] 48EIbbg5S9SfWWMjldgFlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.517 [XNIO-1 task-2] 48EIbbg5S9SfWWMjldgFlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.517 [XNIO-1 task-2] 48EIbbg5S9SfWWMjldgFlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3ed1cd6c +09:02:58.525 [XNIO-1 task-2] GR4ZfrTdQauW-OP6l2Vh_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.526 [XNIO-1 task-2] GR4ZfrTdQauW-OP6l2Vh_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.526 [XNIO-1 task-2] GR4ZfrTdQauW-OP6l2Vh_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.526 [XNIO-1 task-2] GR4ZfrTdQauW-OP6l2Vh_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.537 [XNIO-1 task-2] Rj6vBPEyTbqprNA29ulQMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf63be00, base path is set to: null +09:02:58.537 [XNIO-1 task-2] Rj6vBPEyTbqprNA29ulQMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.537 [XNIO-1 task-2] Rj6vBPEyTbqprNA29ulQMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.537 [XNIO-1 task-2] Rj6vBPEyTbqprNA29ulQMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf63be00, base path is set to: null +09:02:58.537 [XNIO-1 task-2] Rj6vBPEyTbqprNA29ulQMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bf63be00", "bf63be00", serviceId) +09:02:58.546 [XNIO-1 task-2] HsCQl4uFSsufY2cnCACcQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a990d48d +09:02:58.546 [XNIO-1 task-2] HsCQl4uFSsufY2cnCACcQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.546 [XNIO-1 task-2] HsCQl4uFSsufY2cnCACcQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.546 [XNIO-1 task-2] HsCQl4uFSsufY2cnCACcQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a990d48d +09:02:58.554 [XNIO-1 task-2] rSSmrjaoQA2WnV1MIo3qaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/80431829, base path is set to: null +09:02:58.554 [XNIO-1 task-2] rSSmrjaoQA2WnV1MIo3qaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.554 [XNIO-1 task-2] rSSmrjaoQA2WnV1MIo3qaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.554 [XNIO-1 task-2] rSSmrjaoQA2WnV1MIo3qaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/80431829, base path is set to: null +09:02:58.554 [XNIO-1 task-2] rSSmrjaoQA2WnV1MIo3qaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "80431829", "80431829", serviceId) +09:02:58.557 [XNIO-1 task-2] N83oe8G3Q3GCC3l0y2bERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.557 [XNIO-1 task-2] N83oe8G3Q3GCC3l0y2bERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.557 [XNIO-1 task-2] N83oe8G3Q3GCC3l0y2bERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.557 [XNIO-1 task-2] N83oe8G3Q3GCC3l0y2bERw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.563 [XNIO-1 task-2] iVi6sX_vTsWMsI4QIzMcqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.563 [XNIO-1 task-2] iVi6sX_vTsWMsI4QIzMcqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.563 [XNIO-1 task-2] iVi6sX_vTsWMsI4QIzMcqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.563 [XNIO-1 task-2] iVi6sX_vTsWMsI4QIzMcqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.575 [XNIO-1 task-2] E-SAczPvTeOPj0j0Bh9hoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.575 [XNIO-1 task-2] E-SAczPvTeOPj0j0Bh9hoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.575 [XNIO-1 task-2] E-SAczPvTeOPj0j0Bh9hoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.575 [XNIO-1 task-2] E-SAczPvTeOPj0j0Bh9hoA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.582 [XNIO-1 task-2] ZI85GvOWTuGzJHTmvZZfaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.582 [XNIO-1 task-2] ZI85GvOWTuGzJHTmvZZfaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.582 [XNIO-1 task-2] ZI85GvOWTuGzJHTmvZZfaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.591 [XNIO-1 task-2] 8HTi-SWbSR29hI0qUAo8pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/80431829 +09:02:58.592 [XNIO-1 task-2] 8HTi-SWbSR29hI0qUAo8pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.592 [XNIO-1 task-2] 8HTi-SWbSR29hI0qUAo8pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.592 [XNIO-1 task-2] 8HTi-SWbSR29hI0qUAo8pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/80431829 +09:02:58.598 [XNIO-1 task-2] GzoFiOUzS1KJCkW_mTWtBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.598 [XNIO-1 task-2] GzoFiOUzS1KJCkW_mTWtBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.598 [XNIO-1 task-2] GzoFiOUzS1KJCkW_mTWtBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.598 [XNIO-1 task-2] GzoFiOUzS1KJCkW_mTWtBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.607 [XNIO-1 task-2] 0LBK36kLRvu8dtM9QlaL7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.607 [XNIO-1 task-2] 0LBK36kLRvu8dtM9QlaL7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.607 [XNIO-1 task-2] 0LBK36kLRvu8dtM9QlaL7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.607 [XNIO-1 task-2] 0LBK36kLRvu8dtM9QlaL7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.610 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:62be7a1c +09:02:58.612 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:62be7a1c +09:02:58.612 [XNIO-1 task-2] 5_E1JNrYQjmnvova-H7C9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2b0f4a5a +09:02:58.612 [XNIO-1 task-2] 5_E1JNrYQjmnvova-H7C9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.612 [XNIO-1 task-2] 5_E1JNrYQjmnvova-H7C9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.612 [XNIO-1 task-2] 5_E1JNrYQjmnvova-H7C9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2b0f4a5a +09:02:58.620 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.620 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.621 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.621 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.621 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.621 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.621 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.621 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "40338632-60b9-479f-9473-6849d50f", {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.621 [XNIO-1 task-2] J5uQRvQLQTmxC7azNLWIYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9c02d8f0","serviceName":"40338632-60b9-479f-9473-6849d50f","serviceDesc":"1b04db08-7ba2-43fb-9778-1e2e8a7a9a80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.623 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:62be7a1c +09:02:58.628 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.628 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.628 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.629 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.629 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.629 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.629 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.629 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG com.networknt.schema.TypeValidator debug - validate( "44531cc4-12d0-447c-b24b-49708a68", {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.629 [XNIO-1 task-2] DGyG9Q8TTuS1SjXFrbFTgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cad48e98","serviceName":"44531cc4-12d0-447c-b24b-49708a68","serviceDesc":"fac49291-f50d-40bd-8a7c-4d00a36753a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.636 [XNIO-1 task-2] MeuMXNcFQS-_Cyv-LOCp7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.636 [XNIO-1 task-2] MeuMXNcFQS-_Cyv-LOCp7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.636 [XNIO-1 task-2] MeuMXNcFQS-_Cyv-LOCp7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.637 [XNIO-1 task-2] MeuMXNcFQS-_Cyv-LOCp7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.642 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:62be7a1c +09:02:58.646 [XNIO-1 task-2] LtQ-Q6CpQMqFSDGZJPFskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.646 [XNIO-1 task-2] LtQ-Q6CpQMqFSDGZJPFskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.646 [XNIO-1 task-2] LtQ-Q6CpQMqFSDGZJPFskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.646 [XNIO-1 task-2] LtQ-Q6CpQMqFSDGZJPFskA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.653 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.653 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.653 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.653 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.654 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.654 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG com.networknt.schema.TypeValidator debug - validate( "0d9b6d68-59dc-480e-8e63-abf974caf852", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.654 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG com.networknt.schema.TypeValidator debug - validate( "18a58a1e", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.654 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.654 [XNIO-1 task-2] uvC1cIn_RNmY0So0f1ppMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.660 [XNIO-1 task-2] 0QYUmF73RO-bB7NaBM9zfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.660 [XNIO-1 task-2] 0QYUmF73RO-bB7NaBM9zfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.661 [XNIO-1 task-2] 0QYUmF73RO-bB7NaBM9zfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.661 [XNIO-1 task-2] 0QYUmF73RO-bB7NaBM9zfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.666 [XNIO-1 task-2] W6y8u3xiSBu5gTcmCn_muQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.666 [XNIO-1 task-2] W6y8u3xiSBu5gTcmCn_muQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.666 [XNIO-1 task-2] W6y8u3xiSBu5gTcmCn_muQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.666 [XNIO-1 task-2] W6y8u3xiSBu5gTcmCn_muQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.670 [XNIO-1 task-2] UvEEkpTOTme2pnz-6KVbUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cad48e98 +09:02:58.670 [XNIO-1 task-2] UvEEkpTOTme2pnz-6KVbUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.670 [XNIO-1 task-2] UvEEkpTOTme2pnz-6KVbUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.670 [XNIO-1 task-2] UvEEkpTOTme2pnz-6KVbUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cad48e98 +09:02:58.678 [XNIO-1 task-2] uuWviqK0SXyttw9KDCQklQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9c02d8f0, base path is set to: null +09:02:58.678 [XNIO-1 task-2] uuWviqK0SXyttw9KDCQklQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.678 [XNIO-1 task-2] uuWviqK0SXyttw9KDCQklQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.678 [XNIO-1 task-2] uuWviqK0SXyttw9KDCQklQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9c02d8f0, base path is set to: null +09:02:58.678 [XNIO-1 task-2] uuWviqK0SXyttw9KDCQklQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9c02d8f0", "9c02d8f0", serviceId) +09:02:58.681 [XNIO-1 task-2] viDWmflWR7in5ZQGJj7avg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.681 [XNIO-1 task-2] viDWmflWR7in5ZQGJj7avg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.681 [XNIO-1 task-2] viDWmflWR7in5ZQGJj7avg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.682 [XNIO-1 task-2] viDWmflWR7in5ZQGJj7avg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.716 [XNIO-1 task-2] aRNGyf6jQNmREZ0naSVJAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9c02d8f0 +09:02:58.716 [XNIO-1 task-2] aRNGyf6jQNmREZ0naSVJAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.716 [XNIO-1 task-2] aRNGyf6jQNmREZ0naSVJAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.716 [XNIO-1 task-2] aRNGyf6jQNmREZ0naSVJAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9c02d8f0 +09:02:58.723 [XNIO-1 task-2] FuSyK2ETTpKFJvgpLy0LAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18a58a1e, base path is set to: null +09:02:58.723 [XNIO-1 task-2] FuSyK2ETTpKFJvgpLy0LAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.723 [XNIO-1 task-2] FuSyK2ETTpKFJvgpLy0LAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.723 [XNIO-1 task-2] FuSyK2ETTpKFJvgpLy0LAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18a58a1e, base path is set to: null +09:02:58.723 [XNIO-1 task-2] FuSyK2ETTpKFJvgpLy0LAw DEBUG com.networknt.schema.TypeValidator debug - validate( "18a58a1e", "18a58a1e", serviceId) +09:02:58.726 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.726 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.726 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.726 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.726 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.726 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG com.networknt.schema.TypeValidator debug - validate( "0d9b6d68-59dc-480e-8e63-abf974caf852", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.727 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG com.networknt.schema.TypeValidator debug - validate( "18a58a1e", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.727 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.727 [XNIO-1 task-2] a24Uk8dpQ8GHCOTlXexzNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d9b6d68-59dc-480e-8e63-abf974caf852", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG com.networknt.schema.TypeValidator debug - validate( "18a58a1e", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:58.733 [XNIO-1 task-2] DtMJmVzGT6mDq5wNdDs1TA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.744 [XNIO-1 task-2] 1V3fnWPQT-ObYTex_tTwuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:58.744 [XNIO-1 task-2] 1V3fnWPQT-ObYTex_tTwuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.744 [XNIO-1 task-2] 1V3fnWPQT-ObYTex_tTwuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.744 [XNIO-1 task-2] 1V3fnWPQT-ObYTex_tTwuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:58.748 [XNIO-1 task-2] H5BNcgLrT3CpN_KNv-EjMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.748 [XNIO-1 task-2] H5BNcgLrT3CpN_KNv-EjMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.748 [XNIO-1 task-2] H5BNcgLrT3CpN_KNv-EjMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.748 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c2ee0829 +09:02:58.749 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c2ee0829 +09:02:58.758 [XNIO-1 task-2] v51KS8FsQEqkIMUk9yhXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.758 [XNIO-1 task-2] v51KS8FsQEqkIMUk9yhXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.758 [XNIO-1 task-2] v51KS8FsQEqkIMUk9yhXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.787 [XNIO-1 task-2] EbX9UhI5QcqxIO3PfghHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e3d0f61c +09:02:58.787 [XNIO-1 task-2] EbX9UhI5QcqxIO3PfghHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.787 [XNIO-1 task-2] EbX9UhI5QcqxIO3PfghHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.787 [XNIO-1 task-2] EbX9UhI5QcqxIO3PfghHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e3d0f61c +09:02:58.789 [XNIO-1 task-2] yiQrJ98cSCaKc89vlb06cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c2ee0829, base path is set to: null +09:02:58.789 [XNIO-1 task-2] yiQrJ98cSCaKc89vlb06cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.789 [XNIO-1 task-2] yiQrJ98cSCaKc89vlb06cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.790 [XNIO-1 task-2] yiQrJ98cSCaKc89vlb06cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c2ee0829, base path is set to: null +09:02:58.790 [XNIO-1 task-2] yiQrJ98cSCaKc89vlb06cA DEBUG com.networknt.schema.TypeValidator debug - validate( "c2ee0829", "c2ee0829", serviceId) +09:02:58.800 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c2ee0829 +09:02:58.808 [XNIO-1 task-2] tsXZYu48QUKwtBHt-2Kjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.808 [XNIO-1 task-2] tsXZYu48QUKwtBHt-2Kjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.808 [XNIO-1 task-2] tsXZYu48QUKwtBHt-2Kjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.816 [XNIO-1 task-2] KJ3lY_wwT1yDJeU94ZYlGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1a0f82c9 +09:02:58.816 [XNIO-1 task-2] KJ3lY_wwT1yDJeU94ZYlGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.816 [XNIO-1 task-2] KJ3lY_wwT1yDJeU94ZYlGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.816 [XNIO-1 task-2] KJ3lY_wwT1yDJeU94ZYlGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1a0f82c9 +09:02:58.822 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.822 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.822 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.822 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.823 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.823 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.823 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.823 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab55d426-7f12-4904-945c-f559bd6b", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.823 [XNIO-1 task-2] 0roXmZatRCy3mKvKPjrphA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.828 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.828 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.829 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.829 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.829 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.829 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.829 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.829 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "865b68dc-9d31-49bb-95c4-264b1637", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.829 [XNIO-1 task-2] teq6zbHoRwqCXwqnKe6U8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.835 [XNIO-1 task-2] cVOag5sHR-2sVCyg4eqX-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.835 [XNIO-1 task-2] cVOag5sHR-2sVCyg4eqX-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.835 [XNIO-1 task-2] cVOag5sHR-2sVCyg4eqX-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.886 [XNIO-1 task-2] qfJQ6nT_Rh6Xd6Jrzh8_0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.886 [XNIO-1 task-2] qfJQ6nT_Rh6Xd6Jrzh8_0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.886 [XNIO-1 task-2] qfJQ6nT_Rh6Xd6Jrzh8_0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.887 [XNIO-1 task-2] qfJQ6nT_Rh6Xd6Jrzh8_0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.919 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:23218612-3bca-4f19-86e0-d3e53c98a676 +09:02:58.920 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:23218612-3bca-4f19-86e0-d3e53c98a676 +09:02:58.928 [XNIO-1 task-2] _mMa6NrkRTecTdHHb114qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:58.928 [XNIO-1 task-2] _mMa6NrkRTecTdHHb114qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:58.928 [XNIO-1 task-2] _mMa6NrkRTecTdHHb114qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:58.928 [XNIO-1 task-2] _mMa6NrkRTecTdHHb114qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:58.930 [XNIO-1 task-2] VXYr4EBmSeW8WIOpQVvanA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.930 [XNIO-1 task-2] VXYr4EBmSeW8WIOpQVvanA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.930 [XNIO-1 task-2] VXYr4EBmSeW8WIOpQVvanA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.930 [XNIO-1 task-2] VXYr4EBmSeW8WIOpQVvanA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.953 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.953 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.953 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.953 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.953 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.953 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.954 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.954 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b833dca-c9d8-460a-ad09-463acb9b", {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.954 [XNIO-1 task-2] ykxhKwPNRDOheUyg58yLfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.956 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7ab926d4-7ebb-4820-8e00-609aa833debb +09:02:58.964 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.964 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.964 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.965 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.965 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.965 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.965 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.965 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9b833dca-c9d8-460a-ad09-463acb9b", {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.965 [XNIO-1 task-2] TjlxkuHFQ_S2mco2-mCFbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72ef6a49","serviceName":"9b833dca-c9d8-460a-ad09-463acb9b","serviceDesc":"06583148-7d3e-4282-9ec7-f36dad71b967","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.972 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.972 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.972 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.973 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.973 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.973 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.973 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.973 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG com.networknt.schema.TypeValidator debug - validate( "865b68dc-9d31-49bb-95c4-264b1637", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.973 [XNIO-1 task-2] YfcXmNCRQM-fa1ioOcWN0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.980 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.980 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.980 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.980 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.981 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.981 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:58.981 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:58.981 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG com.networknt.schema.TypeValidator debug - validate( "ab55d426-7f12-4904-945c-f559bd6b", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:58.981 [XNIO-1 task-2] 3xb2EaxCTxiEs8Jl6aevtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:58.987 [XNIO-1 task-2] _7UWM9s9QKirMugm_UqLFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.987 [XNIO-1 task-2] _7UWM9s9QKirMugm_UqLFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.987 [XNIO-1 task-2] _7UWM9s9QKirMugm_UqLFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:58.994 [XNIO-1 task-2] 6K_UTsZuR9ShVuWIXOJKvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe9ab2b5, base path is set to: null +09:02:58.994 [XNIO-1 task-2] 6K_UTsZuR9ShVuWIXOJKvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:58.995 [XNIO-1 task-2] 6K_UTsZuR9ShVuWIXOJKvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:58.995 [XNIO-1 task-2] 6K_UTsZuR9ShVuWIXOJKvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe9ab2b5, base path is set to: null +09:02:58.995 [XNIO-1 task-2] 6K_UTsZuR9ShVuWIXOJKvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe9ab2b5", "fe9ab2b5", serviceId) +09:02:59.006 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e9072d02-b7d8-4d5e-a537-7a01e8c56aa9 +09:02:59.015 [XNIO-1 task-2] NbYYp9uUR8WAwRB4uEPJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.015 [XNIO-1 task-2] NbYYp9uUR8WAwRB4uEPJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.015 [XNIO-1 task-2] NbYYp9uUR8WAwRB4uEPJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.021 [XNIO-1 task-2] 4cXQR7tVSPayMPmbBILnOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:59.022 [XNIO-1 task-2] 4cXQR7tVSPayMPmbBILnOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.022 [XNIO-1 task-2] 4cXQR7tVSPayMPmbBILnOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.022 [XNIO-1 task-2] 4cXQR7tVSPayMPmbBILnOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:59.023 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e9072d02-b7d8-4d5e-a537-7a01e8c56aa9 +09:02:59.024 [XNIO-1 task-2] sashQtIrREeh5XSn2vAGvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.024 [XNIO-1 task-2] sashQtIrREeh5XSn2vAGvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.024 [XNIO-1 task-2] sashQtIrREeh5XSn2vAGvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.025 [XNIO-1 task-2] sashQtIrREeh5XSn2vAGvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.031 [XNIO-1 task-2] xIjY-GL8SH-hUgx4jzpwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.031 [XNIO-1 task-2] xIjY-GL8SH-hUgx4jzpwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.031 [XNIO-1 task-2] xIjY-GL8SH-hUgx4jzpwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.031 [XNIO-1 task-2] xIjY-GL8SH-hUgx4jzpwFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.038 [XNIO-1 task-2] GKdC-KfaSLWwp6XUkLbYrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.038 [XNIO-1 task-2] GKdC-KfaSLWwp6XUkLbYrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.038 [XNIO-1 task-2] GKdC-KfaSLWwp6XUkLbYrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.046 [XNIO-1 task-2] KoyjnwXpS0CCo_RsE4ichA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.046 [XNIO-1 task-2] KoyjnwXpS0CCo_RsE4ichA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.046 [XNIO-1 task-2] KoyjnwXpS0CCo_RsE4ichA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.046 [XNIO-1 task-2] KoyjnwXpS0CCo_RsE4ichA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.048 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:efe19409-748a-43f2-a9c6-dfa5832ce283 +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.064 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab55d426-7f12-4904-945c-f559bd6b", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.065 [XNIO-1 task-2] UhpUR_ZLQDGRIVm3OE6ivA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.071 [XNIO-1 task-2] kOSrK9QJQ0mGL-ZKn2XEjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.071 [XNIO-1 task-2] kOSrK9QJQ0mGL-ZKn2XEjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.071 [XNIO-1 task-2] kOSrK9QJQ0mGL-ZKn2XEjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.080 [XNIO-1 task-2] 3RYTZoX0TIGEC3-otxaG9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.080 [XNIO-1 task-2] 3RYTZoX0TIGEC3-otxaG9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.080 [XNIO-1 task-2] 3RYTZoX0TIGEC3-otxaG9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.087 [XNIO-1 task-2] hrjoHat6SOSLNOjWV3OwMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.087 [XNIO-1 task-2] hrjoHat6SOSLNOjWV3OwMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.088 [XNIO-1 task-2] hrjoHat6SOSLNOjWV3OwMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.101 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.101 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.101 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.101 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.102 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.102 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.102 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.102 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG com.networknt.schema.TypeValidator debug - validate( "865b68dc-9d31-49bb-95c4-264b1637", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.102 [XNIO-1 task-2] f7g3arnCRfCv5GicRxBIPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.112 [XNIO-1 task-2] WHqOxszPTp-VWfXyj8WiXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6411d055, base path is set to: null +09:02:59.112 [XNIO-1 task-2] WHqOxszPTp-VWfXyj8WiXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.112 [XNIO-1 task-2] WHqOxszPTp-VWfXyj8WiXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.112 [XNIO-1 task-2] WHqOxszPTp-VWfXyj8WiXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6411d055, base path is set to: null +09:02:59.112 [XNIO-1 task-2] WHqOxszPTp-VWfXyj8WiXg DEBUG com.networknt.schema.TypeValidator debug - validate( "6411d055", "6411d055", serviceId) +09:02:59.118 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.118 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.118 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.119 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.119 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.119 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c630910b-dbc4-4a3d-bbbe-9267b038a5cf", {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.119 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7bda2c08", {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.119 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.119 [XNIO-1 task-2] pjG3isOJQCm0-i0ZbbmefQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7bda2c08","serviceName":"151fb1bb-1cdd-4e0c-bdd1-b3e24fdc","serviceDesc":"c630910b-dbc4-4a3d-bbbe-9267b038a5cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.128 [XNIO-1 task-2] 8PnoM5K1S_6GWd8ktpsp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7bda2c08 +09:02:59.128 [XNIO-1 task-2] 8PnoM5K1S_6GWd8ktpsp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.128 [XNIO-1 task-2] 8PnoM5K1S_6GWd8ktpsp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.128 [XNIO-1 task-2] 8PnoM5K1S_6GWd8ktpsp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7bda2c08 +09:02:59.130 [XNIO-1 task-2] qN12w7XLS5SP3k763ufIsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.131 [XNIO-1 task-2] qN12w7XLS5SP3k763ufIsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.131 [XNIO-1 task-2] qN12w7XLS5SP3k763ufIsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.139 [XNIO-1 task-2] _hNTziIfSny01P1AEzHqJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7bda2c08, base path is set to: null +09:02:59.139 [XNIO-1 task-2] _hNTziIfSny01P1AEzHqJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.139 [XNIO-1 task-2] _hNTziIfSny01P1AEzHqJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.139 [XNIO-1 task-2] _hNTziIfSny01P1AEzHqJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7bda2c08, base path is set to: null +09:02:59.139 [XNIO-1 task-2] _hNTziIfSny01P1AEzHqJA DEBUG com.networknt.schema.TypeValidator debug - validate( "7bda2c08", "7bda2c08", serviceId) +09:02:59.148 [XNIO-1 task-2] Vvn3FUxFSh2rNtLWeVc1dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.148 [XNIO-1 task-2] Vvn3FUxFSh2rNtLWeVc1dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.148 [XNIO-1 task-2] Vvn3FUxFSh2rNtLWeVc1dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.148 [XNIO-1 task-2] Vvn3FUxFSh2rNtLWeVc1dw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.158 [XNIO-1 task-2] JLciyhocSy-WPyH45L1k8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/72ef6a49 +09:02:59.158 [XNIO-1 task-2] JLciyhocSy-WPyH45L1k8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.158 [XNIO-1 task-2] JLciyhocSy-WPyH45L1k8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.158 [XNIO-1 task-2] JLciyhocSy-WPyH45L1k8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/72ef6a49 +09:02:59.165 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.165 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.166 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.166 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.166 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.166 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.166 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.166 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c3c98ef-9f73-46ec-9137-8423d253", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.166 [XNIO-1 task-2] HldD2pDJRK6Bko_z3d4Sbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.174 [XNIO-1 task-2] I3rtE28yQpi4EI59cFwobg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/760ab726, base path is set to: null +09:02:59.174 [XNIO-1 task-2] I3rtE28yQpi4EI59cFwobg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.174 [XNIO-1 task-2] I3rtE28yQpi4EI59cFwobg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.174 [XNIO-1 task-2] I3rtE28yQpi4EI59cFwobg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/760ab726, base path is set to: null +09:02:59.174 [XNIO-1 task-2] I3rtE28yQpi4EI59cFwobg DEBUG com.networknt.schema.TypeValidator debug - validate( "760ab726", "760ab726", serviceId) +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG com.networknt.schema.TypeValidator debug - validate( "2ba434b5-9054-4dde-b2e0-15de25ff5994", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG com.networknt.schema.TypeValidator debug - validate( "e3d0f61c", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.186 [XNIO-1 task-2] 1UvAKV2OS4STC9Iemp1rMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e3d0f61c","serviceName":"865b68dc-9d31-49bb-95c4-264b1637","serviceDesc":"2ba434b5-9054-4dde-b2e0-15de25ff5994","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.195 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.195 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.195 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.195 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.195 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.195 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG com.networknt.schema.TypeValidator debug - validate( "3566f858-f5df-41f1-b5af-5d4090f612e6", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.196 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG com.networknt.schema.TypeValidator debug - validate( "2f09005d", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.196 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.196 [XNIO-1 task-2] zqJwwf9TQkm-6ZaM2nS73g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.204 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:76c87b9e-9d17-430a-9b81-3318d2fb9073 +09:02:59.205 [XNIO-1 task-2] HYs7bUBlSHuveRlbE1m2iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.205 [XNIO-1 task-2] HYs7bUBlSHuveRlbE1m2iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.205 [XNIO-1 task-2] HYs7bUBlSHuveRlbE1m2iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.205 [XNIO-1 task-2] HYs7bUBlSHuveRlbE1m2iA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.211 [XNIO-1 task-2] eVvBjLRGRgmJ1I0es5nDAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.211 [XNIO-1 task-2] eVvBjLRGRgmJ1I0es5nDAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.211 [XNIO-1 task-2] eVvBjLRGRgmJ1I0es5nDAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.211 [XNIO-1 task-2] eVvBjLRGRgmJ1I0es5nDAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.225 [XNIO-1 task-2] JKYg23b4QCiibKq8XUUDFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50cc56b4, base path is set to: null +09:02:59.225 [XNIO-1 task-2] JKYg23b4QCiibKq8XUUDFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.225 [XNIO-1 task-2] JKYg23b4QCiibKq8XUUDFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.225 [XNIO-1 task-2] JKYg23b4QCiibKq8XUUDFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50cc56b4, base path is set to: null +09:02:59.225 [XNIO-1 task-2] JKYg23b4QCiibKq8XUUDFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50cc56b4", "50cc56b4", serviceId) +09:02:59.234 [XNIO-1 task-2] 8CJlmo_TSXmD8nwY6YUYPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.234 [XNIO-1 task-2] 8CJlmo_TSXmD8nwY6YUYPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.234 [XNIO-1 task-2] 8CJlmo_TSXmD8nwY6YUYPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.235 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:55bdecc0 +09:02:59.240 [XNIO-1 task-2] YNg4uHdaSzW41daFsCvj3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e3d0f61c, base path is set to: null +09:02:59.240 [XNIO-1 task-2] YNg4uHdaSzW41daFsCvj3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.240 [XNIO-1 task-2] YNg4uHdaSzW41daFsCvj3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.240 [XNIO-1 task-2] YNg4uHdaSzW41daFsCvj3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e3d0f61c, base path is set to: null +09:02:59.240 [XNIO-1 task-2] YNg4uHdaSzW41daFsCvj3g DEBUG com.networknt.schema.TypeValidator debug - validate( "e3d0f61c", "e3d0f61c", serviceId) +09:02:59.242 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.242 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.242 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +Jun 29, 2024 9:02:59 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:02:59.243 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.243 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.243 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG com.networknt.schema.TypeValidator debug - validate( "0d9b6d68-59dc-480e-8e63-abf974caf852", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.243 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.243 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG com.networknt.schema.TypeValidator debug - validate( "18a58a1e", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.243 [XNIO-1 task-2] 8LtvNvxHRuinkUhOmWZadw DEBUG com.networknt.schema.TypeValidator debug - validate( "ab55d426-7f12-4904-945c-f559bd6b", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:02:59.256 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.256 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.256 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.256 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +09:02:59.256 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:02:59.256 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab55d426-7f12-4904-945c-f559bd6b", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.256 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.257 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.257 [XNIO-1 task-2] dmJ2xgfcRBiXfz5OaaCHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18a58a1e","serviceName":"ab55d426-7f12-4904-945c-f559bd6b","serviceDesc":"0d9b6d68-59dc-480e-8e63-abf974caf852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:02:59.270 [XNIO-1 task-2] oNHW5aseSPKKp_QA4LfYvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.270 [XNIO-1 task-2] oNHW5aseSPKKp_QA4LfYvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.278 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.279 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.279 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.279 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.279 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.279 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.279 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.279 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "09bb009f-dc3f-4a02-99f1-a84e873b", {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.280 [XNIO-1 task-2] Ar51IBBqTAyeX_HwnqcJfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55bdecc0","serviceName":"09bb009f-dc3f-4a02-99f1-a84e873b","serviceDesc":"e7b07a48-9b58-4ef7-8409-3a19866ebf5f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.280 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:55bdecc0 +09:02:59.287 [XNIO-1 task-2] u0AO8qtET9WGSkSkVVqDlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f09005d, base path is set to: null +09:02:59.287 [XNIO-1 task-2] u0AO8qtET9WGSkSkVVqDlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.287 [XNIO-1 task-2] u0AO8qtET9WGSkSkVVqDlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.287 [XNIO-1 task-2] u0AO8qtET9WGSkSkVVqDlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f09005d, base path is set to: null +09:02:59.287 [XNIO-1 task-2] u0AO8qtET9WGSkSkVVqDlw DEBUG com.networknt.schema.TypeValidator debug - validate( "2f09005d", "2f09005d", serviceId) +09:02:59.290 [XNIO-1 task-2] -2T4JrKySvyVBFXXatFO6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.290 [XNIO-1 task-2] -2T4JrKySvyVBFXXatFO6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.290 [XNIO-1 task-2] -2T4JrKySvyVBFXXatFO6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.291 [XNIO-1 task-2] -2T4JrKySvyVBFXXatFO6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.296 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:02:59.297 [XNIO-1 task-2] LY2uBTg0RsOE7aZdnUdDAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.297 [XNIO-1 task-2] LY2uBTg0RsOE7aZdnUdDAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.297 [XNIO-1 task-2] LY2uBTg0RsOE7aZdnUdDAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.306 [XNIO-1 task-2] cskSCDKETGawoX_1GR69Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.306 [XNIO-1 task-2] cskSCDKETGawoX_1GR69Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.306 [XNIO-1 task-2] cskSCDKETGawoX_1GR69Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.313 [XNIO-1 task-2] UpkX90YjSCSRPLVixCHw2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e9fb1195 +09:02:59.313 [XNIO-1 task-2] UpkX90YjSCSRPLVixCHw2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.313 [XNIO-1 task-2] UpkX90YjSCSRPLVixCHw2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.313 [XNIO-1 task-2] UpkX90YjSCSRPLVixCHw2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e9fb1195 +09:02:59.315 [XNIO-1 task-2] oaSu7fEdSjScYmw3XZsgew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.315 [XNIO-1 task-2] oaSu7fEdSjScYmw3XZsgew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.316 [XNIO-1 task-2] oaSu7fEdSjScYmw3XZsgew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.328 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.329 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.329 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.329 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.329 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.330 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.330 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.330 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG com.networknt.schema.TypeValidator debug - validate( "0d8287df-1d51-485f-b54a-1d65e9bc", {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.330 [XNIO-1 task-2] qjRFKJANRTCnPCioMAiHKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92b9a749","serviceName":"0d8287df-1d51-485f-b54a-1d65e9bc","serviceDesc":"c6d7c6e1-6d21-4cc6-bce9-06634f6cd830","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.331 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:08dafbd2-5f8f-4907-a3f8-12248cf9bcd6 +09:02:59.332 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:08dafbd2-5f8f-4907-a3f8-12248cf9bcd6 +09:02:59.335 [XNIO-1 task-2] vMuLzwGYSQuAByasLHQBbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:59.335 [XNIO-1 task-2] vMuLzwGYSQuAByasLHQBbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.336 [XNIO-1 task-2] vMuLzwGYSQuAByasLHQBbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.336 [XNIO-1 task-2] vMuLzwGYSQuAByasLHQBbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:59.339 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1e81361d-028d-4f66-9c08-3e1b4767d9c3 +09:02:59.340 [XNIO-1 task-2] G9YxkNUpSUGMe_3kiAA_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/55bdecc0 +09:02:59.340 [XNIO-1 task-2] G9YxkNUpSUGMe_3kiAA_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.340 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1e81361d-028d-4f66-9c08-3e1b4767d9c3 +09:02:59.340 [XNIO-1 task-2] G9YxkNUpSUGMe_3kiAA_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.341 [XNIO-1 task-2] G9YxkNUpSUGMe_3kiAA_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/55bdecc0 +09:02:59.343 [XNIO-1 task-2] JSYI5wwkQZG3emq6JZcKxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e3d0f61c, base path is set to: null +09:02:59.344 [XNIO-1 task-2] JSYI5wwkQZG3emq6JZcKxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.344 [XNIO-1 task-2] JSYI5wwkQZG3emq6JZcKxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.344 [XNIO-1 task-2] JSYI5wwkQZG3emq6JZcKxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e3d0f61c, base path is set to: null +09:02:59.344 [XNIO-1 task-2] JSYI5wwkQZG3emq6JZcKxw DEBUG com.networknt.schema.TypeValidator debug - validate( "e3d0f61c", "e3d0f61c", serviceId) +09:02:59.353 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8af4485c +09:02:59.353 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8af4485c +09:02:59.356 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.356 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.356 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.357 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.357 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.357 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c2f34e84-ffaa-4288-a58e-cad6d9e025a3", {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.357 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9a7b793b", {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.357 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.357 [XNIO-1 task-2] xzmWD4EOSeifUjU7eqm89Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a7b793b","serviceName":"9c43c735-8e3c-4789-a99f-860261ae","serviceDesc":"c2f34e84-ffaa-4288-a58e-cad6d9e025a3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.366 [XNIO-1 task-2] lZK_HvmeQHuZbZ__QvoYsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.366 [XNIO-1 task-2] lZK_HvmeQHuZbZ__QvoYsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.366 [XNIO-1 task-2] lZK_HvmeQHuZbZ__QvoYsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.366 [XNIO-1 task-2] lZK_HvmeQHuZbZ__QvoYsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.374 [XNIO-1 task-2] nONXSsowQ6WVmHvYpEwzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f09005d +09:02:59.374 [XNIO-1 task-2] nONXSsowQ6WVmHvYpEwzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.374 [XNIO-1 task-2] nONXSsowQ6WVmHvYpEwzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.374 [XNIO-1 task-2] nONXSsowQ6WVmHvYpEwzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f09005d +09:02:59.378 [XNIO-1 task-2] nAzwMfgrRCS-IiMpzJKt_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e9fb1195, base path is set to: null +09:02:59.378 [XNIO-1 task-2] nAzwMfgrRCS-IiMpzJKt_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.378 [XNIO-1 task-2] nAzwMfgrRCS-IiMpzJKt_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.379 [XNIO-1 task-2] nAzwMfgrRCS-IiMpzJKt_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e9fb1195, base path is set to: null +09:02:59.379 [XNIO-1 task-2] nAzwMfgrRCS-IiMpzJKt_A DEBUG com.networknt.schema.TypeValidator debug - validate( "e9fb1195", "e9fb1195", serviceId) +09:02:59.380 [XNIO-1 task-2] rNjGOWnNSCuHwg_5PXQHBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.380 [XNIO-1 task-2] rNjGOWnNSCuHwg_5PXQHBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.381 [XNIO-1 task-2] rNjGOWnNSCuHwg_5PXQHBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.389 [XNIO-1 task-2] 1qm_SenNRJCYg8fHGOWBKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9a7b793b +09:02:59.389 [XNIO-1 task-2] 1qm_SenNRJCYg8fHGOWBKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.389 [XNIO-1 task-2] 1qm_SenNRJCYg8fHGOWBKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.389 [XNIO-1 task-2] 1qm_SenNRJCYg8fHGOWBKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9a7b793b +09:02:59.391 [XNIO-1 task-2] eefTe5_AQty6seLqBzdu_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a7b793b, base path is set to: null +09:02:59.392 [XNIO-1 task-2] eefTe5_AQty6seLqBzdu_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.392 [XNIO-1 task-2] eefTe5_AQty6seLqBzdu_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.392 [XNIO-1 task-2] eefTe5_AQty6seLqBzdu_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a7b793b, base path is set to: null +09:02:59.392 [XNIO-1 task-2] eefTe5_AQty6seLqBzdu_g DEBUG com.networknt.schema.TypeValidator debug - validate( "9a7b793b", "9a7b793b", serviceId) +09:02:59.398 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a79f4523 +09:02:59.399 [XNIO-1 task-2] cDN3FnB1S0yMeqbCLsEUOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.399 [XNIO-1 task-2] cDN3FnB1S0yMeqbCLsEUOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.399 [XNIO-1 task-2] cDN3FnB1S0yMeqbCLsEUOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.408 [XNIO-1 task-2] pw2Q59FaQkykml_SxPGT8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.408 [XNIO-1 task-2] pw2Q59FaQkykml_SxPGT8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.408 [XNIO-1 task-2] pw2Q59FaQkykml_SxPGT8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.414 [XNIO-1 task-2] rarMGn-bRG67cfV--xTllg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f09005d, base path is set to: null +09:02:59.414 [XNIO-1 task-2] rarMGn-bRG67cfV--xTllg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.414 [XNIO-1 task-2] rarMGn-bRG67cfV--xTllg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.415 [XNIO-1 task-2] rarMGn-bRG67cfV--xTllg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f09005d, base path is set to: null +09:02:59.415 [XNIO-1 task-2] rarMGn-bRG67cfV--xTllg DEBUG com.networknt.schema.TypeValidator debug - validate( "2f09005d", "2f09005d", serviceId) +09:02:59.418 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.418 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.418 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.418 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.419 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.419 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3b5c408b-38cd-4922-a771-f7b86c2c0c02", {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.419 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9fb1195", {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.419 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.419 [XNIO-1 task-2] wc7J7pBSR6OXySXmBBVqZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.424 [XNIO-1 task-2] KLYphDVtSJuFl9tyC4aJvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:59.424 [XNIO-1 task-2] KLYphDVtSJuFl9tyC4aJvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.424 [XNIO-1 task-2] KLYphDVtSJuFl9tyC4aJvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.424 [XNIO-1 task-2] KLYphDVtSJuFl9tyC4aJvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18a58a1e +09:02:59.430 [XNIO-1 task-2] v_A5FcZYSVaAToccg9GAxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/55bdecc0, base path is set to: null +09:02:59.430 [XNIO-1 task-2] v_A5FcZYSVaAToccg9GAxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.430 [XNIO-1 task-2] v_A5FcZYSVaAToccg9GAxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.430 [XNIO-1 task-2] v_A5FcZYSVaAToccg9GAxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/55bdecc0, base path is set to: null +09:02:59.430 [XNIO-1 task-2] v_A5FcZYSVaAToccg9GAxg DEBUG com.networknt.schema.TypeValidator debug - validate( "55bdecc0", "55bdecc0", serviceId) +09:02:59.432 [XNIO-1 task-2] 9SWshCZvSXWeZLBBreYUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.432 [XNIO-1 task-2] 9SWshCZvSXWeZLBBreYUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.433 [XNIO-1 task-2] 9SWshCZvSXWeZLBBreYUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.433 [XNIO-1 task-2] 9SWshCZvSXWeZLBBreYUpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.435 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a79f4523 +09:02:59.437 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.437 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.438 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.438 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.438 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.438 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG com.networknt.schema.TypeValidator debug - validate( "bfa8c31a-898c-4f83-9eca-9e237738ef92", {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.438 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG com.networknt.schema.TypeValidator debug - validate( "9a1a734d", {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.438 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.438 [XNIO-1 task-2] nk0b1KhkSfC6gFNa-v2j5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a1a734d","serviceName":"4f96bd60-c879-4f0f-a136-59fc000a","serviceDesc":"bfa8c31a-898c-4f83-9eca-9e237738ef92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.442 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a79f4523 +09:02:59.444 [XNIO-1 task-2] 2tCcKCcuTBqpsoo38RUiew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.444 [XNIO-1 task-2] 2tCcKCcuTBqpsoo38RUiew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.444 [XNIO-1 task-2] 2tCcKCcuTBqpsoo38RUiew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.445 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:50043560-cd3d-4453-8d51-39ea12134159 +09:02:59.450 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.450 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.450 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.450 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.451 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.451 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.451 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.451 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG com.networknt.schema.TypeValidator debug - validate( "d4a4dada-82b6-4812-b677-77842dc1", {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.451 [XNIO-1 task-2] 8_LQUcLrTeW-2eIqEdgyxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9fb1195","serviceName":"d4a4dada-82b6-4812-b677-77842dc1","serviceDesc":"3b5c408b-38cd-4922-a771-f7b86c2c0c02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.457 [XNIO-1 task-2] 2EQ6C8CzRMGczA2KXVoJ_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.458 [XNIO-1 task-2] 2EQ6C8CzRMGczA2KXVoJ_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.458 [XNIO-1 task-2] 2EQ6C8CzRMGczA2KXVoJ_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.458 [XNIO-1 task-2] 2EQ6C8CzRMGczA2KXVoJ_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.461 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:8af4485c +09:02:59.463 [XNIO-1 task-2] eY20pGNiStaNLBCLQkSVrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.463 [XNIO-1 task-2] eY20pGNiStaNLBCLQkSVrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.463 [XNIO-1 task-2] eY20pGNiStaNLBCLQkSVrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.471 [XNIO-1 task-2] MKLY9o3FTC-t62jZTOQ_Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.471 [XNIO-1 task-2] MKLY9o3FTC-t62jZTOQ_Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.471 [XNIO-1 task-2] MKLY9o3FTC-t62jZTOQ_Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.471 [XNIO-1 task-2] MKLY9o3FTC-t62jZTOQ_Lg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.478 [XNIO-1 task-2] WJVQ94hqTsqTf5BS8JDt5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e9fb1195 +09:02:59.479 [XNIO-1 task-2] WJVQ94hqTsqTf5BS8JDt5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.479 [XNIO-1 task-2] WJVQ94hqTsqTf5BS8JDt5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.479 [XNIO-1 task-2] WJVQ94hqTsqTf5BS8JDt5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e9fb1195 +09:02:59.487 [XNIO-1 task-2] jA_kjCDpR1uCzBho5UL20Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41971637, base path is set to: null +09:02:59.487 [XNIO-1 task-2] jA_kjCDpR1uCzBho5UL20Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.487 [XNIO-1 task-2] jA_kjCDpR1uCzBho5UL20Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.487 [XNIO-1 task-2] jA_kjCDpR1uCzBho5UL20Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41971637, base path is set to: null +09:02:59.487 [XNIO-1 task-2] jA_kjCDpR1uCzBho5UL20Q DEBUG com.networknt.schema.TypeValidator debug - validate( "41971637", "41971637", serviceId) +09:02:59.491 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.491 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.491 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.491 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.491 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.491 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG com.networknt.schema.TypeValidator debug - validate( "d8d65121-9b93-4c62-9ae4-dc1d8a9786c8", {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.492 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG com.networknt.schema.TypeValidator debug - validate( "f65820d7", {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.492 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.492 [XNIO-1 task-2] R6LP2UOhTkuPKw166Ff_og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f65820d7","serviceName":"03c9e6d4-e89b-4688-a982-9f3182c7","serviceDesc":"d8d65121-9b93-4c62-9ae4-dc1d8a9786c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.499 [XNIO-1 task-2] Aa5CtLq4TuePobfX80LZVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92b9a749 +09:02:59.499 [XNIO-1 task-2] Aa5CtLq4TuePobfX80LZVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.499 [XNIO-1 task-2] Aa5CtLq4TuePobfX80LZVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.499 [XNIO-1 task-2] Aa5CtLq4TuePobfX80LZVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92b9a749 +09:02:59.501 [XNIO-1 task-2] 5V590VvFS2C6D7zyXlalOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.501 [XNIO-1 task-2] 5V590VvFS2C6D7zyXlalOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.501 [XNIO-1 task-2] 5V590VvFS2C6D7zyXlalOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.508 [XNIO-1 task-2] IQdCWEL0R0CUfCHJCQ4UPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92b9a749, base path is set to: null +09:02:59.509 [XNIO-1 task-2] IQdCWEL0R0CUfCHJCQ4UPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.509 [XNIO-1 task-2] IQdCWEL0R0CUfCHJCQ4UPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.509 [XNIO-1 task-2] IQdCWEL0R0CUfCHJCQ4UPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92b9a749, base path is set to: null +09:02:59.509 [XNIO-1 task-2] IQdCWEL0R0CUfCHJCQ4UPg DEBUG com.networknt.schema.TypeValidator debug - validate( "92b9a749", "92b9a749", serviceId) +09:02:59.511 [XNIO-1 task-2] rRab7J1dQV-jXxyVp1zhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.511 [XNIO-1 task-2] rRab7J1dQV-jXxyVp1zhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.512 [XNIO-1 task-2] rRab7J1dQV-jXxyVp1zhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.512 [XNIO-1 task-2] rRab7J1dQV-jXxyVp1zhBw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.518 [XNIO-1 task-2] Ez5JxN-RRwCoDRaKP85DWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92b9a749 +09:02:59.518 [XNIO-1 task-2] Ez5JxN-RRwCoDRaKP85DWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.518 [XNIO-1 task-2] Ez5JxN-RRwCoDRaKP85DWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.518 [XNIO-1 task-2] Ez5JxN-RRwCoDRaKP85DWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92b9a749 +09:02:59.524 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.524 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.524 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.524 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.524 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.525 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.525 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.525 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c3c98ef-9f73-46ec-9137-8423d253", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.525 [XNIO-1 task-2] Lu7HQLzQROKr_MADMC4cLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.531 [XNIO-1 task-2] L7Zc1Kt9QzSH7NdUvQX3Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.531 [XNIO-1 task-2] L7Zc1Kt9QzSH7NdUvQX3Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.531 [XNIO-1 task-2] L7Zc1Kt9QzSH7NdUvQX3Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.539 [XNIO-1 task-2] DEbKQdmcQr2f0pG7APF-MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a1a734d, base path is set to: null +09:02:59.539 [XNIO-1 task-2] DEbKQdmcQr2f0pG7APF-MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.539 [XNIO-1 task-2] DEbKQdmcQr2f0pG7APF-MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.539 [XNIO-1 task-2] DEbKQdmcQr2f0pG7APF-MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a1a734d, base path is set to: null +09:02:59.539 [XNIO-1 task-2] DEbKQdmcQr2f0pG7APF-MA DEBUG com.networknt.schema.TypeValidator debug - validate( "9a1a734d", "9a1a734d", serviceId) +09:02:59.545 [XNIO-1 task-2] BmXuA8liTBedKXBwLg065Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.545 [XNIO-1 task-2] BmXuA8liTBedKXBwLg065Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.545 [XNIO-1 task-2] BmXuA8liTBedKXBwLg065Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.546 [XNIO-1 task-2] BmXuA8liTBedKXBwLg065Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.551 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08957d01 +09:02:59.552 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.552 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.553 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.553 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.553 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.553 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.553 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.553 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "25b4d81b-5a3a-41fe-986d-6deb303e", {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.553 [XNIO-1 task-2] i7N4PUQQTRWLgeI8tlm6Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41971637","serviceName":"25b4d81b-5a3a-41fe-986d-6deb303e","serviceDesc":"488bb6c1-412b-4f80-afa0-89de82d3ffab","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.560 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a79f4523 +09:02:59.561 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.561 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.561 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.561 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.562 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.562 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "496ddf3c-ecf2-459b-b785-647a4f84d306", {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:02:59.562 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8abf3953", {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:02:59.562 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:02:59.562 [XNIO-1 task-2] qIAUHVFYQ56J6hiDoFcRMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.568 [XNIO-1 task-2] imDKPsRrRr2BVscmxhUtBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7030c4f6 +09:02:59.568 [XNIO-1 task-2] imDKPsRrRr2BVscmxhUtBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.568 [XNIO-1 task-2] imDKPsRrRr2BVscmxhUtBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.568 [XNIO-1 task-2] imDKPsRrRr2BVscmxhUtBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7030c4f6 +09:02:59.574 [XNIO-1 task-2] 40EKflKqRnGd-Oi_yYCe9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f09005d, base path is set to: null +09:02:59.574 [XNIO-1 task-2] 40EKflKqRnGd-Oi_yYCe9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.574 [XNIO-1 task-2] 40EKflKqRnGd-Oi_yYCe9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.574 [XNIO-1 task-2] 40EKflKqRnGd-Oi_yYCe9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f09005d, base path is set to: null +09:02:59.574 [XNIO-1 task-2] 40EKflKqRnGd-Oi_yYCe9g DEBUG com.networknt.schema.TypeValidator debug - validate( "2f09005d", "2f09005d", serviceId) +09:02:59.576 [XNIO-1 task-2] CGMCw7MWRVGCE9EjW4itoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.576 [XNIO-1 task-2] CGMCw7MWRVGCE9EjW4itoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.576 [XNIO-1 task-2] CGMCw7MWRVGCE9EjW4itoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.577 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:05ff2c49 +09:02:59.579 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08957d01 +09:02:59.582 [XNIO-1 task-2] piwBjemST5G3VK2_xa56ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.582 [XNIO-1 task-2] piwBjemST5G3VK2_xa56ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.582 [XNIO-1 task-2] piwBjemST5G3VK2_xa56ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.582 [XNIO-1 task-2] piwBjemST5G3VK2_xa56ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.590 [XNIO-1 task-2] YsylsRdYRL2SxdtcYdU5DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.590 [XNIO-1 task-2] YsylsRdYRL2SxdtcYdU5DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.590 [XNIO-1 task-2] YsylsRdYRL2SxdtcYdU5DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.594 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08957d01 +09:02:59.596 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f4c5807-2b14-434d-91e4-052e20fc", {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.597 [XNIO-1 task-2] mqe4YZWoQC-6EepRAMTZRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8abf3953","serviceName":"1f4c5807-2b14-434d-91e4-052e20fc","serviceDesc":"496ddf3c-ecf2-459b-b785-647a4f84d306","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.603 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.603 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.603 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.603 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.604 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.604 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.604 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.604 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG com.networknt.schema.TypeValidator debug - validate( "7c3c98ef-9f73-46ec-9137-8423d253", {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.604 [XNIO-1 task-2] h6tqUc3DR82C45XEOpPz2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f09005d","serviceName":"7c3c98ef-9f73-46ec-9137-8423d253","serviceDesc":"3566f858-f5df-41f1-b5af-5d4090f612e6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.605 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08957d01 +09:02:59.610 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.610 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.610 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.610 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.611 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.611 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.611 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.611 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG com.networknt.schema.TypeValidator debug - validate( "a087c594-2e24-4b4c-b738-0ce72098", {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.611 [XNIO-1 task-2] CFI-MRadSUiMLOoW8iziAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6ccb2cb8","serviceName":"a087c594-2e24-4b4c-b738-0ce72098","serviceDesc":"5738994d-2cc2-4ae2-a883-0658dfac6d01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.617 [XNIO-1 task-2] huE0xuiVSrO6vB0qUdnkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.617 [XNIO-1 task-2] huE0xuiVSrO6vB0qUdnkjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.617 [XNIO-1 task-2] huE0xuiVSrO6vB0qUdnkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.623 [XNIO-1 task-2] QlvAUr2lTKqLg3BMS2BUvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/55bdecc0, base path is set to: null +09:02:59.623 [XNIO-1 task-2] QlvAUr2lTKqLg3BMS2BUvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.624 [XNIO-1 task-2] QlvAUr2lTKqLg3BMS2BUvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.624 [XNIO-1 task-2] QlvAUr2lTKqLg3BMS2BUvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/55bdecc0, base path is set to: null +09:02:59.624 [XNIO-1 task-2] QlvAUr2lTKqLg3BMS2BUvw DEBUG com.networknt.schema.TypeValidator debug - validate( "55bdecc0", "55bdecc0", serviceId) +09:02:59.626 [XNIO-1 task-2] Ic0xijbPRmG7auwd2AlujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.627 [XNIO-1 task-2] Ic0xijbPRmG7auwd2AlujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.627 [XNIO-1 task-2] Ic0xijbPRmG7auwd2AlujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.627 [XNIO-1 task-2] Ic0xijbPRmG7auwd2AlujQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.632 [XNIO-1 task-2] 0HAgebq8SuujryCmdCupaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/edca6084 +09:02:59.632 [XNIO-1 task-2] 0HAgebq8SuujryCmdCupaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.633 [XNIO-1 task-2] 0HAgebq8SuujryCmdCupaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.633 [XNIO-1 task-2] 0HAgebq8SuujryCmdCupaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/edca6084 +09:02:59.637 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.637 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.637 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.637 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.637 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.638 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.638 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.638 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cf9e93f0-a1f1-4722-9a96-6e71814b", {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.638 [XNIO-1 task-2] i5FtM5G4QquUFCCfnZL9jQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.656 [XNIO-1 task-2] wsm0brlgQyOcM5sSbU_hXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.657 [XNIO-1 task-2] wsm0brlgQyOcM5sSbU_hXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.657 [XNIO-1 task-2] wsm0brlgQyOcM5sSbU_hXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.664 [XNIO-1 task-2] Pfq9ZGumRuSq_BAq7i6_WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f65820d7, base path is set to: null +09:02:59.664 [XNIO-1 task-2] Pfq9ZGumRuSq_BAq7i6_WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.664 [XNIO-1 task-2] Pfq9ZGumRuSq_BAq7i6_WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.665 [XNIO-1 task-2] Pfq9ZGumRuSq_BAq7i6_WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f65820d7, base path is set to: null +09:02:59.665 [XNIO-1 task-2] Pfq9ZGumRuSq_BAq7i6_WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f65820d7", "f65820d7", serviceId) +09:02:59.672 [XNIO-1 task-2] GUwIdeMDTlWIfYCWCHj9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f09005d +09:02:59.672 [XNIO-1 task-2] GUwIdeMDTlWIfYCWCHj9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.672 [XNIO-1 task-2] GUwIdeMDTlWIfYCWCHj9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.672 [XNIO-1 task-2] GUwIdeMDTlWIfYCWCHj9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f09005d +09:02:59.678 [XNIO-1 task-2] HaW_eHb2TJSvR2hhkVyBIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bafee45b, base path is set to: null +09:02:59.678 [XNIO-1 task-2] HaW_eHb2TJSvR2hhkVyBIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.678 [XNIO-1 task-2] HaW_eHb2TJSvR2hhkVyBIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:02:59.678 [XNIO-1 task-2] HaW_eHb2TJSvR2hhkVyBIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bafee45b, base path is set to: null +09:02:59.678 [XNIO-1 task-2] HaW_eHb2TJSvR2hhkVyBIg DEBUG com.networknt.schema.TypeValidator debug - validate( "bafee45b", "bafee45b", serviceId) +09:02:59.692 [XNIO-1 task-2] _u-xhJhuTNeVlTwY4I6MKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6ccb2cb8 +09:02:59.692 [XNIO-1 task-2] _u-xhJhuTNeVlTwY4I6MKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:02:59.692 [XNIO-1 task-2] _u-xhJhuTNeVlTwY4I6MKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:02:59.692 [XNIO-1 task-2] _u-xhJhuTNeVlTwY4I6MKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6ccb2cb8 +09:02:59.739 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.739 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.739 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.739 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.739 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.740 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:02:59.740 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:02:59.740 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG com.networknt.schema.TypeValidator debug - validate( "cf9e93f0-a1f1-4722-9a96-6e71814b", {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:02:59.740 [XNIO-1 task-2] 1UEoMUnLSaSFO98aN4r6uA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"edca6084","serviceName":"cf9e93f0-a1f1-4722-9a96-6e71814b","serviceDesc":"9fd841e9-f681-4457-a03f-5e928a70e14f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:02:59.745 [XNIO-1 task-2] TNx8-RKFRJuWUrcxdjG7eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.745 [XNIO-1 task-2] TNx8-RKFRJuWUrcxdjG7eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:02:59.745 [XNIO-1 task-2] TNx8-RKFRJuWUrcxdjG7eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:02:59.746 [XNIO-1 task-2] TNx8-RKFRJuWUrcxdjG7eA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.402 [XNIO-1 task-2] 9WbdkEy6QMarMyYz1wBMUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/05ff2c49, base path is set to: null +09:03:01.402 [XNIO-1 task-2] 9WbdkEy6QMarMyYz1wBMUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.402 [XNIO-1 task-2] 9WbdkEy6QMarMyYz1wBMUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.402 [XNIO-1 task-2] 9WbdkEy6QMarMyYz1wBMUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/05ff2c49, base path is set to: null +09:03:01.402 [XNIO-1 task-2] 9WbdkEy6QMarMyYz1wBMUA DEBUG com.networknt.schema.TypeValidator debug - validate( "05ff2c49", "05ff2c49", serviceId) +09:03:01.403 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:05ff2c49 +09:03:01.418 [XNIO-1 task-2] NBx2fM7rTZKGk2nXzd59YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.419 [XNIO-1 task-2] NBx2fM7rTZKGk2nXzd59YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.419 [XNIO-1 task-2] NBx2fM7rTZKGk2nXzd59YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.422 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:12f02ba8-3a56-4d0d-85d3-3ee49c6c6a6a +09:03:01.423 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:12f02ba8-3a56-4d0d-85d3-3ee49c6c6a6a +09:03:01.430 [XNIO-1 task-2] QOsU0VHATL-Kbt-NbwxQOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8abf3953 +09:03:01.430 [XNIO-1 task-2] QOsU0VHATL-Kbt-NbwxQOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.430 [XNIO-1 task-2] QOsU0VHATL-Kbt-NbwxQOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.430 [XNIO-1 task-2] QOsU0VHATL-Kbt-NbwxQOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8abf3953 +09:03:01.439 [XNIO-1 task-2] kmvynMDrSziovQyBCwKiow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/232392c0, base path is set to: null +09:03:01.440 [XNIO-1 task-2] kmvynMDrSziovQyBCwKiow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.440 [XNIO-1 task-2] kmvynMDrSziovQyBCwKiow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.440 [XNIO-1 task-2] kmvynMDrSziovQyBCwKiow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/232392c0, base path is set to: null +09:03:01.440 [XNIO-1 task-2] kmvynMDrSziovQyBCwKiow DEBUG com.networknt.schema.TypeValidator debug - validate( "232392c0", "232392c0", serviceId) +09:03:01.452 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:08957d01 +09:03:01.455 [XNIO-1 task-2] F-Cf5oSoQsKKd7JkY3WWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41971637 +09:03:01.455 [XNIO-1 task-2] F-Cf5oSoQsKKd7JkY3WWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.456 [XNIO-1 task-2] F-Cf5oSoQsKKd7JkY3WWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.456 [XNIO-1 task-2] F-Cf5oSoQsKKd7JkY3WWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41971637 +09:03:01.467 [XNIO-1 task-2] OnHgOKW7Q0ah-boBuurHmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b18ec6c, base path is set to: null +09:03:01.467 [XNIO-1 task-2] OnHgOKW7Q0ah-boBuurHmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.467 [XNIO-1 task-2] OnHgOKW7Q0ah-boBuurHmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.468 [XNIO-1 task-2] OnHgOKW7Q0ah-boBuurHmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b18ec6c, base path is set to: null +09:03:01.468 [XNIO-1 task-2] OnHgOKW7Q0ah-boBuurHmg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b18ec6c", "6b18ec6c", serviceId) +09:03:01.474 [XNIO-1 task-2] 9kSt_kO2TICPoEVtpxu6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d69d6f21 +09:03:01.474 [XNIO-1 task-2] 9kSt_kO2TICPoEVtpxu6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.474 [XNIO-1 task-2] 9kSt_kO2TICPoEVtpxu6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.475 [XNIO-1 task-2] 9kSt_kO2TICPoEVtpxu6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d69d6f21 +09:03:01.477 [XNIO-1 task-2] CELMrDtaTwOU7ztEYnWmfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/55bdecc0, base path is set to: null +09:03:01.477 [XNIO-1 task-2] CELMrDtaTwOU7ztEYnWmfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.477 [XNIO-1 task-2] CELMrDtaTwOU7ztEYnWmfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.477 [XNIO-1 task-2] CELMrDtaTwOU7ztEYnWmfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/55bdecc0, base path is set to: null +09:03:01.477 [XNIO-1 task-2] CELMrDtaTwOU7ztEYnWmfw DEBUG com.networknt.schema.TypeValidator debug - validate( "55bdecc0", "55bdecc0", serviceId) +09:03:01.478 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:55bdecc0 +09:03:01.487 [XNIO-1 task-2] 66cAl2vxQlyuqLPIX6A5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.487 [XNIO-1 task-2] 66cAl2vxQlyuqLPIX6A5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.487 [XNIO-1 task-2] 66cAl2vxQlyuqLPIX6A5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.488 [XNIO-1 task-2] 66cAl2vxQlyuqLPIX6A5Eg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.495 [XNIO-1 task-2] YrdIbNLzQhWqn5nWN3qbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d69d6f21 +09:03:01.495 [XNIO-1 task-2] YrdIbNLzQhWqn5nWN3qbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.495 [XNIO-1 task-2] YrdIbNLzQhWqn5nWN3qbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.496 [XNIO-1 task-2] YrdIbNLzQhWqn5nWN3qbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d69d6f21 +09:03:01.503 [XNIO-1 task-2] bRMLHlaOTLa4MjyZOR7-TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/edca6084, base path is set to: null +09:03:01.503 [XNIO-1 task-2] bRMLHlaOTLa4MjyZOR7-TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.503 [XNIO-1 task-2] bRMLHlaOTLa4MjyZOR7-TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.504 [XNIO-1 task-2] bRMLHlaOTLa4MjyZOR7-TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/edca6084, base path is set to: null +09:03:01.504 [XNIO-1 task-2] bRMLHlaOTLa4MjyZOR7-TA DEBUG com.networknt.schema.TypeValidator debug - validate( "edca6084", "edca6084", serviceId) +09:03:01.511 [XNIO-1 task-2] ExoODQ6iSzi4gDbl50Vn3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.511 [XNIO-1 task-2] ExoODQ6iSzi4gDbl50Vn3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.511 [XNIO-1 task-2] ExoODQ6iSzi4gDbl50Vn3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.511 [XNIO-1 task-2] ExoODQ6iSzi4gDbl50Vn3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.530 [XNIO-1 task-2] MSIQgfivScKJnDm_pACjRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.530 [XNIO-1 task-2] MSIQgfivScKJnDm_pACjRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.531 [XNIO-1 task-2] MSIQgfivScKJnDm_pACjRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.547 [XNIO-1 task-2] _2GCmRFBRmGK0UHCLhHvEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.547 [XNIO-1 task-2] _2GCmRFBRmGK0UHCLhHvEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.547 [XNIO-1 task-2] _2GCmRFBRmGK0UHCLhHvEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.548 [XNIO-1 task-2] _2GCmRFBRmGK0UHCLhHvEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.555 [XNIO-1 task-2] HY3RCI8kRdKb2Wu73Vi9yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.556 [XNIO-1 task-2] HY3RCI8kRdKb2Wu73Vi9yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.556 [XNIO-1 task-2] HY3RCI8kRdKb2Wu73Vi9yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.570 [XNIO-1 task-2] qGMpaGi8QM-c2A75qZ39aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3a8d71d6 +09:03:01.570 [XNIO-1 task-2] qGMpaGi8QM-c2A75qZ39aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.570 [XNIO-1 task-2] qGMpaGi8QM-c2A75qZ39aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.570 [XNIO-1 task-2] qGMpaGi8QM-c2A75qZ39aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3a8d71d6 +09:03:01.572 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:08dafbd2-5f8f-4907-a3f8-12248cf9bcd6 +Jun 29, 2024 9:03:01 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:03:01.579 [XNIO-1 task-2] rDPREGSkRdeq_rmV3ndcTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.579 [XNIO-1 task-2] rDPREGSkRdeq_rmV3ndcTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.579 [XNIO-1 task-2] rDPREGSkRdeq_rmV3ndcTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.579 [XNIO-1 task-2] rDPREGSkRdeq_rmV3ndcTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.582 [XNIO-1 task-2] WDbvo0SBTxa9koBEgCy1aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bb795b8, base path is set to: null +09:03:01.582 [XNIO-1 task-2] WDbvo0SBTxa9koBEgCy1aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.582 [XNIO-1 task-2] WDbvo0SBTxa9koBEgCy1aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.582 [XNIO-1 task-2] WDbvo0SBTxa9koBEgCy1aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bb795b8, base path is set to: null +09:03:01.582 [XNIO-1 task-2] WDbvo0SBTxa9koBEgCy1aA DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb795b8", "6bb795b8", serviceId) +09:03:01.590 [XNIO-1 task-2] u0sunJaCTJyaulBIDpWcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.590 [XNIO-1 task-2] u0sunJaCTJyaulBIDpWcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.590 [XNIO-1 task-2] u0sunJaCTJyaulBIDpWcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.590 [XNIO-1 task-2] u0sunJaCTJyaulBIDpWcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.592 [XNIO-1 task-2] XkRj25zoTB-jgzIpFz17OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f80d8bab, base path is set to: null +09:03:01.592 [XNIO-1 task-2] XkRj25zoTB-jgzIpFz17OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.592 [XNIO-1 task-2] XkRj25zoTB-jgzIpFz17OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.592 [XNIO-1 task-2] XkRj25zoTB-jgzIpFz17OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f80d8bab, base path is set to: null +09:03:01.592 [XNIO-1 task-2] XkRj25zoTB-jgzIpFz17OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f80d8bab", "f80d8bab", serviceId) +09:03:01.600 [XNIO-1 task-2] -znJ85pJTtyO8XjK_jgFoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.600 [XNIO-1 task-2] -znJ85pJTtyO8XjK_jgFoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.600 [XNIO-1 task-2] -znJ85pJTtyO8XjK_jgFoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.600 [XNIO-1 task-2] -znJ85pJTtyO8XjK_jgFoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.603 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08957d01 +09:03:01.604 [XNIO-1 task-2] V6j7vr2ySL6EhsTkITmBew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.604 [XNIO-1 task-2] V6j7vr2ySL6EhsTkITmBew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.604 [XNIO-1 task-2] V6j7vr2ySL6EhsTkITmBew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.613 [XNIO-1 task-2] jIaOwsEZSmqRn0xGzED4FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.613 [XNIO-1 task-2] jIaOwsEZSmqRn0xGzED4FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.613 [XNIO-1 task-2] jIaOwsEZSmqRn0xGzED4FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.613 [XNIO-1 task-2] jIaOwsEZSmqRn0xGzED4FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.621 [XNIO-1 task-2] EAsxMpyNRuWsOFobRGjTeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bb795b8, base path is set to: null +09:03:01.621 [XNIO-1 task-2] EAsxMpyNRuWsOFobRGjTeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +Jun 29, 2024 9:03:01 AM com.hazelcast.map.impl.operation.DeleteOperation +09:03:01.621 [XNIO-1 task-2] EAsxMpyNRuWsOFobRGjTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:03:01.621 [XNIO-1 task-2] EAsxMpyNRuWsOFobRGjTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.622 [XNIO-1 task-2] EAsxMpyNRuWsOFobRGjTeA DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb795b8", "6bb795b8", serviceId) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +09:03:01.625 [XNIO-1 task-2] CHvLvrzCQ1Oo1HoFe08M8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +09:03:01.625 [XNIO-1 task-2] CHvLvrzCQ1Oo1HoFe08M8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.625 [XNIO-1 task-2] CHvLvrzCQ1Oo1HoFe08M8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.625 [XNIO-1 task-2] CHvLvrzCQ1Oo1HoFe08M8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +09:03:01.636 [XNIO-1 task-2] nTBTB7pSSzqVhtPQcjCJEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.636 [XNIO-1 task-2] nTBTB7pSSzqVhtPQcjCJEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.637 [XNIO-1 task-2] nTBTB7pSSzqVhtPQcjCJEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.637 [XNIO-1 task-2] nTBTB7pSSzqVhtPQcjCJEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.646 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e8b600c7 +09:03:01.647 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e8b600c7 +09:03:01.647 [XNIO-1 task-2] bacCCYPaTti2FtMcraA-Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.647 [XNIO-1 task-2] bacCCYPaTti2FtMcraA-Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.648 [XNIO-1 task-2] bacCCYPaTti2FtMcraA-Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.659 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.659 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.659 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.659 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.660 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:01.660 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG com.networknt.schema.TypeValidator debug - validate( "f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:01.660 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1f6fd3", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:01.660 [XNIO-1 task-2] RfC8fs0bRhew19-ydNY7sg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +09:03:01.675 [XNIO-1 task-2] QdztwXX_RJeIEj35w0k4WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bb795b8, base path is set to: null +09:03:01.675 [XNIO-1 task-2] QdztwXX_RJeIEj35w0k4WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.675 [XNIO-1 task-2] QdztwXX_RJeIEj35w0k4WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.675 [XNIO-1 task-2] QdztwXX_RJeIEj35w0k4WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.675 [XNIO-1 task-2] QdztwXX_RJeIEj35w0k4WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +09:03:01.676 [XNIO-1 task-2] QdztwXX_RJeIEj35w0k4WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb795b8", "6bb795b8", serviceId) +09:03:01.678 [XNIO-1 task-2] zcuiKq2ITrKJD2CVYm4RAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bb795b8, base path is set to: null + +09:03:01.678 [XNIO-1 task-2] zcuiKq2ITrKJD2CVYm4RAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.678 [XNIO-1 task-2] zcuiKq2ITrKJD2CVYm4RAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.678 [XNIO-1 task-2] zcuiKq2ITrKJD2CVYm4RAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.678 [XNIO-1 task-2] zcuiKq2ITrKJD2CVYm4RAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.681 [XNIO-1 task-2] Ksv62GyDSZG3FO3xHQoURg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bb795b8, base path is set to: null +09:03:01.681 [XNIO-1 task-2] Ksv62GyDSZG3FO3xHQoURg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.681 [XNIO-1 task-2] Ksv62GyDSZG3FO3xHQoURg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.681 [XNIO-1 task-2] Ksv62GyDSZG3FO3xHQoURg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bb795b8, base path is set to: null +09:03:01.681 [XNIO-1 task-2] Ksv62GyDSZG3FO3xHQoURg DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb795b8", "6bb795b8", serviceId) +09:03:01.689 [XNIO-1 task-2] AsE5NIG8TtCQ0Afz45GFwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.689 [XNIO-1 task-2] AsE5NIG8TtCQ0Afz45GFwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.689 [XNIO-1 task-2] AsE5NIG8TtCQ0Afz45GFwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:01.690 [XNIO-1 task-2] AsE5NIG8TtCQ0Afz45GFwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6bb795b8 +09:03:01.703 [XNIO-1 task-2] ohttdlwvQKiRpAn-Lb3nvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.703 [XNIO-1 task-2] ohttdlwvQKiRpAn-Lb3nvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.703 [XNIO-1 task-2] ohttdlwvQKiRpAn-Lb3nvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.705 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:23218612-3bca-4f19-86e0-d3e53c98a676 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:01.712 [XNIO-1 task-2] PxthE-MNQGaDfpPBVIrh-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.712 [XNIO-1 task-2] PxthE-MNQGaDfpPBVIrh-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.712 [XNIO-1 task-2] PxthE-MNQGaDfpPBVIrh-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.713 [XNIO-1 task-2] PxthE-MNQGaDfpPBVIrh-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.718 [XNIO-1 task-2] kI3J62yJS82AIvpQoWESFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.718 [XNIO-1 task-2] kI3J62yJS82AIvpQoWESFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.719 [XNIO-1 task-2] kI3J62yJS82AIvpQoWESFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.723 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e8b600c7 +09:03:01.731 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.731 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.732 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.732 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.732 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.732 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:01.732 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:01.732 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG com.networknt.schema.TypeValidator debug - validate( "d7fe6e4a-a54f-46cc-9be8-074cb93f", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:01.732 [XNIO-1 task-2] IO8RXDrlToyKY0Li9PCV0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.739 [XNIO-1 task-2] TqNNp9D_R426NYJLqoosJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75daeb2d, base path is set to: null +09:03:01.739 [XNIO-1 task-2] TqNNp9D_R426NYJLqoosJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.739 [XNIO-1 task-2] TqNNp9D_R426NYJLqoosJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:01.739 [XNIO-1 task-2] TqNNp9D_R426NYJLqoosJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75daeb2d, base path is set to: null +09:03:01.740 [XNIO-1 task-2] TqNNp9D_R426NYJLqoosJw DEBUG com.networknt.schema.TypeValidator debug - validate( "75daeb2d", "75daeb2d", serviceId) +09:03:01.748 [XNIO-1 task-2] Y_CuXyCYQo2tACqs6VbpVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.749 [XNIO-1 task-2] Y_CuXyCYQo2tACqs6VbpVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.749 [XNIO-1 task-2] Y_CuXyCYQo2tACqs6VbpVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.757 [XNIO-1 task-2] JEV_zYslQ7m4hxx6hXyz2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.757 [XNIO-1 task-2] JEV_zYslQ7m4hxx6hXyz2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.758 [XNIO-1 task-2] JEV_zYslQ7m4hxx6hXyz2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.758 [XNIO-1 task-2] JEV_zYslQ7m4hxx6hXyz2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.774 [XNIO-1 task-2] AAM9nwjOTV6xrYf7saubUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.775 [XNIO-1 task-2] AAM9nwjOTV6xrYf7saubUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.775 [XNIO-1 task-2] AAM9nwjOTV6xrYf7saubUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.775 [XNIO-1 task-2] AAM9nwjOTV6xrYf7saubUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.787 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.788 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.789 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.789 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.789 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:01.789 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fc14f746-382e-4ad0-ada5-445a32398009", {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:01.789 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4a9f316f", {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:01.789 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:01.789 [XNIO-1 task-2] pCo2XVKCTtmkTvfO8uqJlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4a9f316f","serviceName":"2ef0d21b-716f-42cd-b886-cf9b7c8b","serviceDesc":"fc14f746-382e-4ad0-ada5-445a32398009","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.799 [XNIO-1 task-2] VKX_PqQtSii22uGb5TBaEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.799 [XNIO-1 task-2] VKX_PqQtSii22uGb5TBaEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.799 [XNIO-1 task-2] VKX_PqQtSii22uGb5TBaEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.799 [XNIO-1 task-2] VKX_PqQtSii22uGb5TBaEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.809 [XNIO-1 task-2] yT2Z6eOrRZmeCj9RO1Ml7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.809 [XNIO-1 task-2] yT2Z6eOrRZmeCj9RO1Ml7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.809 [XNIO-1 task-2] yT2Z6eOrRZmeCj9RO1Ml7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.820 [XNIO-1 task-2] pAtauEfoSFGZdmJoUyeFPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.820 [XNIO-1 task-2] pAtauEfoSFGZdmJoUyeFPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.820 [XNIO-1 task-2] pAtauEfoSFGZdmJoUyeFPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.821 [XNIO-1 task-2] pAtauEfoSFGZdmJoUyeFPA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.838 [XNIO-1 task-2] KyEokNH8RTKOWakGguz-9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.838 [XNIO-1 task-2] KyEokNH8RTKOWakGguz-9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.838 [XNIO-1 task-2] KyEokNH8RTKOWakGguz-9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:01.838 [XNIO-1 task-2] KyEokNH8RTKOWakGguz-9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.886 [XNIO-1 task-2] -E740rLOQoenR2n88xECnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.886 [XNIO-1 task-2] -E740rLOQoenR2n88xECnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.886 [XNIO-1 task-2] -E740rLOQoenR2n88xECnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.887 [XNIO-1 task-2] -E740rLOQoenR2n88xECnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.909 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a681350-5bde-4853-b565-389fef7f", {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:01.910 [XNIO-1 task-2] o9ELy5HGQaGMVACrCPjSIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.925 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.925 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.926 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.926 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.926 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.926 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:01.926 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:01.926 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG com.networknt.schema.TypeValidator debug - validate( "d7fe6e4a-a54f-46cc-9be8-074cb93f", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:01.926 [XNIO-1 task-2] cVrQaYb2RGuTgtqccFYG8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.935 [XNIO-1 task-2] yTo9HKLhQmapV4eOnbcTSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.935 [XNIO-1 task-2] yTo9HKLhQmapV4eOnbcTSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.935 [XNIO-1 task-2] yTo9HKLhQmapV4eOnbcTSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.936 [XNIO-1 task-2] yTo9HKLhQmapV4eOnbcTSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.951 [XNIO-1 task-2] yED_80wPRu61Z30EuS0xmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.951 [XNIO-1 task-2] yED_80wPRu61Z30EuS0xmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.951 [XNIO-1 task-2] yED_80wPRu61Z30EuS0xmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.951 [XNIO-1 task-2] yED_80wPRu61Z30EuS0xmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:03:01.958 [XNIO-1 task-2] AZl8g3y7RKKRJX7-QY0kPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ea83179, base path is set to: null +09:03:01.959 [XNIO-1 task-2] AZl8g3y7RKKRJX7-QY0kPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ea83179 +09:03:01.959 [XNIO-1 task-2] AZl8g3y7RKKRJX7-QY0kPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +09:03:01.959 [XNIO-1 task-2] AZl8g3y7RKKRJX7-QY0kPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:03:01.959 [XNIO-1 task-2] AZl8g3y7RKKRJX7-QY0kPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ea83179, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:01.970 [XNIO-1 task-2] 0ZKcWinFS12tcvXTXIkEpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.970 [XNIO-1 task-2] 0ZKcWinFS12tcvXTXIkEpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.971 [XNIO-1 task-2] 0ZKcWinFS12tcvXTXIkEpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.979 [XNIO-1 task-2] mX2Wp52MS86FyEniPM3-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.981 [XNIO-1 task-2] mX2Wp52MS86FyEniPM3-PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.981 [XNIO-1 task-2] mX2Wp52MS86FyEniPM3-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.996 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.996 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:01.997 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:01.997 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.997 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:01.997 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:01.997 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:01.997 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7fe6e4a-a54f-46cc-9be8-074cb93f", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:01.997 [XNIO-1 task-2] jR2eqlb7S0yGndMNp42POQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.014 [XNIO-1 task-2] xaQdynUARW-xg44pt7M_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8effa557, base path is set to: null +09:03:02.014 [XNIO-1 task-2] xaQdynUARW-xg44pt7M_Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.014 [XNIO-1 task-2] xaQdynUARW-xg44pt7M_Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.015 [XNIO-1 task-2] xaQdynUARW-xg44pt7M_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8effa557, base path is set to: null +09:03:02.015 [XNIO-1 task-2] xaQdynUARW-xg44pt7M_Og DEBUG com.networknt.schema.TypeValidator debug - validate( "8effa557", "8effa557", serviceId) +09:03:02.024 [XNIO-1 task-2] 6EeocFLgT9GegoAxw6hGYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3c921512 +09:03:02.024 [XNIO-1 task-2] 6EeocFLgT9GegoAxw6hGYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.024 [XNIO-1 task-2] 6EeocFLgT9GegoAxw6hGYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.024 [XNIO-1 task-2] 6EeocFLgT9GegoAxw6hGYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3c921512 +09:03:02.039 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.039 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.039 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.041 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.041 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.041 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.041 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.041 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3663f1be-a7cb-4efc-b0f9-44dad8be", {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.041 [XNIO-1 task-2] gqJqMRDXToWxVReKrb0GoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8effa557","serviceName":"3663f1be-a7cb-4efc-b0f9-44dad8be","serviceDesc":"d7a55a4d-02b1-4c99-ae1e-a5152b31d51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.050 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:97186359 +09:03:02.056 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:97186359 +09:03:02.056 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.056 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.056 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.057 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.057 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.057 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG com.networknt.schema.TypeValidator debug - validate( "005d4c3b-053d-463c-91a9-7d52d6e613ef", {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:02.057 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG com.networknt.schema.TypeValidator debug - validate( "3c921512", {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:02.058 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:02.058 [XNIO-1 task-2] sZSIW9qLQ6OICwaZepX43A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c921512","serviceName":"d79e321a-ee4a-4373-9cf6-74184151","serviceDesc":"005d4c3b-053d-463c-91a9-7d52d6e613ef","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.095 [XNIO-1 task-2] fTuSDcR9R16-g3afng0_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8effa557 +09:03:02.095 [XNIO-1 task-2] fTuSDcR9R16-g3afng0_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.095 [XNIO-1 task-2] fTuSDcR9R16-g3afng0_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.095 [XNIO-1 task-2] fTuSDcR9R16-g3afng0_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8effa557 +09:03:02.097 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:97186359 +09:03:02.104 [XNIO-1 task-2] QrR3Y6E8TQOOAyDIlKJAdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fbd7075c, base path is set to: null +09:03:02.104 [XNIO-1 task-2] QrR3Y6E8TQOOAyDIlKJAdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.104 [XNIO-1 task-2] QrR3Y6E8TQOOAyDIlKJAdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.104 [XNIO-1 task-2] QrR3Y6E8TQOOAyDIlKJAdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fbd7075c, base path is set to: null +09:03:02.104 [XNIO-1 task-2] QrR3Y6E8TQOOAyDIlKJAdA DEBUG com.networknt.schema.TypeValidator debug - validate( "fbd7075c", "fbd7075c", serviceId) +09:03:02.111 [XNIO-1 task-2] -j0F5l8nRFqx4FpYVcJlCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a9f316f +09:03:02.111 [XNIO-1 task-2] -j0F5l8nRFqx4FpYVcJlCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.111 [XNIO-1 task-2] -j0F5l8nRFqx4FpYVcJlCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.111 [XNIO-1 task-2] -j0F5l8nRFqx4FpYVcJlCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a9f316f +09:03:02.116 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.117 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.117 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.117 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.117 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.117 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.117 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.117 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a681350-5bde-4853-b565-389fef7f", {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.118 [XNIO-1 task-2] 7yaTJ6wdRuqh0ctNYooruA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e005732","serviceName":"4a681350-5bde-4853-b565-389fef7f","serviceDesc":"2458b45b-779f-4615-8d05-b3c3d1d059fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.128 [XNIO-1 task-2] GJb9bGssQ6q3odfd_wj3Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.128 [XNIO-1 task-2] GJb9bGssQ6q3odfd_wj3Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.128 [XNIO-1 task-2] GJb9bGssQ6q3odfd_wj3Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.128 [XNIO-1 task-2] GJb9bGssQ6q3odfd_wj3Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.145 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ef269d76-a4dd-47ac-87b2-30b70d870fb1 +09:03:02.149 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ef269d76-a4dd-47ac-87b2-30b70d870fb1 +09:03:02.153 [XNIO-1 task-2] Tyv1s8J1T3uCbRvpyGEQZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.153 [XNIO-1 task-2] Tyv1s8J1T3uCbRvpyGEQZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.153 [XNIO-1 task-2] Tyv1s8J1T3uCbRvpyGEQZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.154 [XNIO-1 task-2] Tyv1s8J1T3uCbRvpyGEQZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.167 [XNIO-1 task-2] WWTc6dlpQryw8JU9yIRtZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.167 [XNIO-1 task-2] WWTc6dlpQryw8JU9yIRtZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.168 [XNIO-1 task-2] WWTc6dlpQryw8JU9yIRtZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.183 [XNIO-1 task-2] PUzowPxpTMuZJv1OBSxqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.183 [XNIO-1 task-2] PUzowPxpTMuZJv1OBSxqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.183 [XNIO-1 task-2] PUzowPxpTMuZJv1OBSxqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.196 [XNIO-1 task-2] XJlM2MIcTlaE6ybrCDJMUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/02151631 +09:03:02.196 [XNIO-1 task-2] XJlM2MIcTlaE6ybrCDJMUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.196 [XNIO-1 task-2] XJlM2MIcTlaE6ybrCDJMUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.196 [XNIO-1 task-2] XJlM2MIcTlaE6ybrCDJMUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/02151631 +09:03:02.199 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:71adf091-aaef-4c0e-9519-91e20503b7f0 +09:03:02.205 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:76c87b9e-9d17-430a-9b81-3318d2fb9073 +09:03:02.208 [XNIO-1 task-2] aiyvFwImS5KEHvKOblYr9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.208 [XNIO-1 task-2] aiyvFwImS5KEHvKOblYr9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +Jun 29, 2024 9:03:02 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:03:02.208 [XNIO-1 task-2] aiyvFwImS5KEHvKOblYr9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.209 [hz._hzInstance_1_dev.partition-operation.thread-13] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:02.217 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:71adf091-aaef-4c0e-9519-91e20503b7f0 + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +09:03:02.231 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:97186359 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:03:02.232 [XNIO-1 task-2] l6fZwWPoRCiLfElaMAFrJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.232 [XNIO-1 task-2] l6fZwWPoRCiLfElaMAFrJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.232 [XNIO-1 task-2] l6fZwWPoRCiLfElaMAFrJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.233 [XNIO-1 task-2] l6fZwWPoRCiLfElaMAFrJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.245 [XNIO-1 task-2] BceP_bo1QlOMYIiAF30U5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.245 [XNIO-1 task-2] BceP_bo1QlOMYIiAF30U5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.245 [XNIO-1 task-2] BceP_bo1QlOMYIiAF30U5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.246 [XNIO-1 task-2] BceP_bo1QlOMYIiAF30U5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.256 [XNIO-1 task-2] mmVg1z4CTySWSZ_F3OgeTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a1f6fd3 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +09:03:02.256 [XNIO-1 task-2] mmVg1z4CTySWSZ_F3OgeTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a1f6fd3 +09:03:02.256 [XNIO-1 task-2] mmVg1z4CTySWSZ_F3OgeTg DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1f6fd3", "7a1f6fd3", serviceId) +09:03:02.260 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:76c87b9e-9d17-430a-9b81-3318d2fb9073 +09:03:02.261 [XNIO-1 task-2] MJWCcLnFSBGZvpjW8XzcUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.262 [XNIO-1 task-2] MJWCcLnFSBGZvpjW8XzcUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.262 [XNIO-1 task-2] MJWCcLnFSBGZvpjW8XzcUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +09:03:02.262 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8cfc8deb +09:03:02.264 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8cfc8deb + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:02.274 [XNIO-1 task-2] ECkcd5TSR6Cx9lHKxA8D0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a1f6fd3, base path is set to: null +09:03:02.275 [XNIO-1 task-2] ECkcd5TSR6Cx9lHKxA8D0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.275 [XNIO-1 task-2] ECkcd5TSR6Cx9lHKxA8D0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.275 [XNIO-1 task-2] ECkcd5TSR6Cx9lHKxA8D0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a1f6fd3, base path is set to: null +09:03:02.275 [XNIO-1 task-2] ECkcd5TSR6Cx9lHKxA8D0g DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1f6fd3", "7a1f6fd3", serviceId) +09:03:02.278 [XNIO-1 task-2] HPEDltgcSO6rCQOSmC36Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a1f6fd3 +09:03:02.278 [XNIO-1 task-2] HPEDltgcSO6rCQOSmC36Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.278 [XNIO-1 task-2] HPEDltgcSO6rCQOSmC36Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.278 [XNIO-1 task-2] HPEDltgcSO6rCQOSmC36Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a1f6fd3 +09:03:02.280 [XNIO-1 task-2] BNuKuQPVRbqJEmdF8uz9MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.280 [XNIO-1 task-2] BNuKuQPVRbqJEmdF8uz9MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.281 [XNIO-1 task-2] BNuKuQPVRbqJEmdF8uz9MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.281 [XNIO-1 task-2] BNuKuQPVRbqJEmdF8uz9MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.282 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4fb74aac-3af8-4119-97c5-f4b68722eff3 +09:03:02.283 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4fb74aac-3af8-4119-97c5-f4b68722eff3 +09:03:02.297 [XNIO-1 task-2] RA4n9faMQMetvvdcag4rlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.297 [XNIO-1 task-2] RA4n9faMQMetvvdcag4rlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.297 [XNIO-1 task-2] RA4n9faMQMetvvdcag4rlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.309 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.309 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.310 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.310 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.310 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.310 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG com.networknt.schema.TypeValidator debug - validate( "f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:02.310 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1f6fd3", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:02.310 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:02.310 [XNIO-1 task-2] fijW-d-wR6SEun23dKgY2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.319 [XNIO-1 task-2] 8UK8VH7eQrK4lIY0gsT2cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.319 [XNIO-1 task-2] 8UK8VH7eQrK4lIY0gsT2cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.319 [XNIO-1 task-2] 8UK8VH7eQrK4lIY0gsT2cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.319 [XNIO-1 task-2] 8UK8VH7eQrK4lIY0gsT2cA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.333 [XNIO-1 task-2] 1EtVGBaEQkWq3uUizIXIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f39c7274 +09:03:02.333 [XNIO-1 task-2] 1EtVGBaEQkWq3uUizIXIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.333 [XNIO-1 task-2] 1EtVGBaEQkWq3uUizIXIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.333 [XNIO-1 task-2] 1EtVGBaEQkWq3uUizIXIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f39c7274 +09:03:02.341 [XNIO-1 task-2] ZJB5QAf3SJ-cKsV3ApV__Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1eeadfc0, base path is set to: null +09:03:02.341 [XNIO-1 task-2] ZJB5QAf3SJ-cKsV3ApV__Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.341 [XNIO-1 task-2] ZJB5QAf3SJ-cKsV3ApV__Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.341 [XNIO-1 task-2] ZJB5QAf3SJ-cKsV3ApV__Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1eeadfc0, base path is set to: null +09:03:02.341 [XNIO-1 task-2] ZJB5QAf3SJ-cKsV3ApV__Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1eeadfc0", "1eeadfc0", serviceId) +09:03:02.352 [XNIO-1 task-2] f4pjqAWyQcGedl67BVNqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.352 [XNIO-1 task-2] f4pjqAWyQcGedl67BVNqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.353 [XNIO-1 task-2] f4pjqAWyQcGedl67BVNqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.353 [XNIO-1 task-2] f4pjqAWyQcGedl67BVNqlQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.364 [XNIO-1 task-2] lAjSxivtSu6AAzlOVV2PJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.364 [XNIO-1 task-2] lAjSxivtSu6AAzlOVV2PJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.364 [XNIO-1 task-2] lAjSxivtSu6AAzlOVV2PJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.364 [XNIO-1 task-2] lAjSxivtSu6AAzlOVV2PJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.375 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bf08e598-71ed-4b1c-b698-29123bcbe644 +09:03:02.378 [XNIO-1 task-2] FEwzlI7cTgOt7mQ3ohNK1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a1f6fd3, base path is set to: null +09:03:02.378 [XNIO-1 task-2] FEwzlI7cTgOt7mQ3ohNK1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.378 [XNIO-1 task-2] FEwzlI7cTgOt7mQ3ohNK1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.379 [XNIO-1 task-2] FEwzlI7cTgOt7mQ3ohNK1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a1f6fd3, base path is set to: null +09:03:02.380 [XNIO-1 task-2] FEwzlI7cTgOt7mQ3ohNK1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1f6fd3", "7a1f6fd3", serviceId) +09:03:02.382 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:97186359 +09:03:02.387 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.387 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.388 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.388 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.388 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.388 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG com.networknt.schema.TypeValidator debug - validate( "f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:02.388 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1f6fd3", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:02.388 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:02.388 [XNIO-1 task-2] QvcjBdG_SHqSWNFhzywByg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.404 [XNIO-1 task-2] 5u0W0xSCTDCexi_0KZI9bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e005732 +09:03:02.405 [XNIO-1 task-2] 5u0W0xSCTDCexi_0KZI9bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.405 [XNIO-1 task-2] 5u0W0xSCTDCexi_0KZI9bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.405 [XNIO-1 task-2] 5u0W0xSCTDCexi_0KZI9bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e005732 +09:03:02.409 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e221a3d +09:03:02.410 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e221a3d +09:03:02.416 [XNIO-1 task-2] KxDcmYj3RYyMNu_ipDxS-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8cfc8deb +09:03:02.416 [XNIO-1 task-2] KxDcmYj3RYyMNu_ipDxS-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.416 [XNIO-1 task-2] KxDcmYj3RYyMNu_ipDxS-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.416 [XNIO-1 task-2] KxDcmYj3RYyMNu_ipDxS-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8cfc8deb +09:03:02.416 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8cfc8deb +09:03:02.428 [XNIO-1 task-2] Q23WCvNHRLuvOsJugJrqTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6e005732, base path is set to: null +09:03:02.428 [XNIO-1 task-2] Q23WCvNHRLuvOsJugJrqTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.428 [XNIO-1 task-2] Q23WCvNHRLuvOsJugJrqTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.428 [XNIO-1 task-2] Q23WCvNHRLuvOsJugJrqTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6e005732, base path is set to: null +09:03:02.429 [XNIO-1 task-2] Q23WCvNHRLuvOsJugJrqTA DEBUG com.networknt.schema.TypeValidator debug - validate( "6e005732", "6e005732", serviceId) +09:03:02.440 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:97186359 +09:03:02.441 [XNIO-1 task-2] EjcDTzTbSdSdccb9_blO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.441 [XNIO-1 task-2] EjcDTzTbSdSdccb9_blO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.443 [XNIO-1 task-2] EjcDTzTbSdSdccb9_blO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.443 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:862d82bc-cd3d-420d-a41f-d5ca4f5f37bc +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cd3b377f-4c84-43d6-8993-e1b87959a43f", {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fbd7075c", {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:02.454 [XNIO-1 task-2] LKc3WYAOTr-u4BWJ0h0iqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.471 [XNIO-1 task-2] 1ItHZVORT5OV-CeGFjq_CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a9f316f +09:03:02.471 [XNIO-1 task-2] 1ItHZVORT5OV-CeGFjq_CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.471 [XNIO-1 task-2] 1ItHZVORT5OV-CeGFjq_CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.471 [XNIO-1 task-2] 1ItHZVORT5OV-CeGFjq_CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a9f316f +09:03:02.483 [XNIO-1 task-2] Xxw91TnzQNi8QaKiU9E_vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.483 [XNIO-1 task-2] Xxw91TnzQNi8QaKiU9E_vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.483 [XNIO-1 task-2] Xxw91TnzQNi8QaKiU9E_vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.483 [XNIO-1 task-2] Xxw91TnzQNi8QaKiU9E_vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.496 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5b4b086a-ce66-4944-b7d1-4d96be06678e +09:03:02.498 [XNIO-1 task-2] SVvvVYRoQxi3rXeEccLMhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c921512, base path is set to: null +09:03:02.498 [XNIO-1 task-2] SVvvVYRoQxi3rXeEccLMhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.498 [XNIO-1 task-2] SVvvVYRoQxi3rXeEccLMhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.498 [XNIO-1 task-2] SVvvVYRoQxi3rXeEccLMhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c921512, base path is set to: null +09:03:02.499 [XNIO-1 task-2] SVvvVYRoQxi3rXeEccLMhg DEBUG com.networknt.schema.TypeValidator debug - validate( "3c921512", "3c921512", serviceId) +09:03:02.518 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.519 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.519 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.519 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.519 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.519 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.520 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.520 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8e323900-6649-423a-8e3f-daaca438", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.520 [XNIO-1 task-2] UlVBKhY9TlOVxbYIFQz3SQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.523 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:eb7b9199-b157-491c-80c7-816b14368b69 +09:03:02.539 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.539 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.540 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.540 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.540 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.540 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.540 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.540 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG com.networknt.schema.TypeValidator debug - validate( "d7fe6e4a-a54f-46cc-9be8-074cb93f", {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.540 [XNIO-1 task-2] RlG55ED_QE-nj0HRCTtwPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a1f6fd3","serviceName":"d7fe6e4a-a54f-46cc-9be8-074cb93f","serviceDesc":"f4c30e14-7f82-4ba5-9ece-30b6d50f2f1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.550 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.550 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.550 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.551 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.551 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bbdda45-d4e4-480f-b0c2-5fe842847291 +09:03:02.551 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.551 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "fc0a2d7e-7174-4bf0-b98e-bd063fc3e218", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:02.551 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "376b35d8", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:02.551 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:02.551 [XNIO-1 task-2] 8bbmUEDpQ8-E8FYkJ231Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.552 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bbdda45-d4e4-480f-b0c2-5fe842847291 +09:03:02.570 [XNIO-1 task-2] di8FOEtMS4eRHxNo2QWI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.570 [XNIO-1 task-2] di8FOEtMS4eRHxNo2QWI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.570 [XNIO-1 task-2] di8FOEtMS4eRHxNo2QWI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.570 [XNIO-1 task-2] di8FOEtMS4eRHxNo2QWI6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.573 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d6e492b4-021e-4d45-99fe-a09290067051 +09:03:02.579 [XNIO-1 task-2] bJx8CHuNSJ2izirnyqWEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.579 [XNIO-1 task-2] bJx8CHuNSJ2izirnyqWEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.579 [XNIO-1 task-2] bJx8CHuNSJ2izirnyqWEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.580 [XNIO-1 task-2] bJx8CHuNSJ2izirnyqWEDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.587 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e221a3d +09:03:02.591 [XNIO-1 task-2] bAPIAHnYR_qezaDKNKY6EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fbd7075c +09:03:02.591 [XNIO-1 task-2] bAPIAHnYR_qezaDKNKY6EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.591 [XNIO-1 task-2] bAPIAHnYR_qezaDKNKY6EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.591 [XNIO-1 task-2] bAPIAHnYR_qezaDKNKY6EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fbd7075c +09:03:02.599 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.600 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.600 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.600 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.600 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.600 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.600 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.600 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG com.networknt.schema.TypeValidator debug - validate( "21885d5b-9b0f-4ad7-9921-2ba0d52f", {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.601 [XNIO-1 task-2] D8ZhYeTeSC6L9hHUNC_sbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fbd7075c","serviceName":"21885d5b-9b0f-4ad7-9921-2ba0d52f","serviceDesc":"cd3b377f-4c84-43d6-8993-e1b87959a43f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.611 [XNIO-1 task-2] Q6rChLrGQoOf4ZtVRL3xjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f253b1ce, base path is set to: null +09:03:02.611 [XNIO-1 task-2] Q6rChLrGQoOf4ZtVRL3xjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.611 [XNIO-1 task-2] Q6rChLrGQoOf4ZtVRL3xjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.611 [XNIO-1 task-2] Q6rChLrGQoOf4ZtVRL3xjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f253b1ce, base path is set to: null +09:03:02.611 [XNIO-1 task-2] Q6rChLrGQoOf4ZtVRL3xjg DEBUG com.networknt.schema.TypeValidator debug - validate( "f253b1ce", "f253b1ce", serviceId) +09:03:02.617 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:97186359 +09:03:02.617 [XNIO-1 task-2] cGH0pwDhSxqcUeJhbD4nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a1f6fd3 +09:03:02.617 [XNIO-1 task-2] cGH0pwDhSxqcUeJhbD4nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.617 [XNIO-1 task-2] cGH0pwDhSxqcUeJhbD4nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.617 [XNIO-1 task-2] cGH0pwDhSxqcUeJhbD4nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a1f6fd3 +09:03:02.630 [XNIO-1 task-2] DzMvxH-6RfyTT_0AtV-EYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f253b1ce, base path is set to: null +09:03:02.631 [XNIO-1 task-2] DzMvxH-6RfyTT_0AtV-EYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.631 [XNIO-1 task-2] DzMvxH-6RfyTT_0AtV-EYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.631 [XNIO-1 task-2] DzMvxH-6RfyTT_0AtV-EYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f253b1ce, base path is set to: null +09:03:02.631 [XNIO-1 task-2] DzMvxH-6RfyTT_0AtV-EYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f253b1ce", "f253b1ce", serviceId) +09:03:02.638 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:97186359 +09:03:02.640 [XNIO-1 task-2] DIfJ0UJlSaC_ftVevlZR1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.640 [XNIO-1 task-2] DIfJ0UJlSaC_ftVevlZR1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.640 [XNIO-1 task-2] DIfJ0UJlSaC_ftVevlZR1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.641 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:64836528 +09:03:02.649 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.649 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.649 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.650 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.650 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.651 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.651 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.651 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG com.networknt.schema.TypeValidator debug - validate( "8e323900-6649-423a-8e3f-daaca438", {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.651 [XNIO-1 task-2] mmZ7OJ0dSMmN0B2m7cdPrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"376b35d8","serviceName":"8e323900-6649-423a-8e3f-daaca438","serviceDesc":"fc0a2d7e-7174-4bf0-b98e-bd063fc3e218","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.663 [XNIO-1 task-2] MI90y1fFT7qrdVsjGYz7ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fbd7075c, base path is set to: null +09:03:02.663 [XNIO-1 task-2] MI90y1fFT7qrdVsjGYz7ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.663 [XNIO-1 task-2] MI90y1fFT7qrdVsjGYz7ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.663 [XNIO-1 task-2] MI90y1fFT7qrdVsjGYz7ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fbd7075c, base path is set to: null +09:03:02.663 [XNIO-1 task-2] MI90y1fFT7qrdVsjGYz7ag DEBUG com.networknt.schema.TypeValidator debug - validate( "fbd7075c", "fbd7075c", serviceId) +09:03:02.680 [XNIO-1 task-2] HCDVTMIUTdqp6LtQI5R5RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/376b35d8 +09:03:02.680 [XNIO-1 task-2] HCDVTMIUTdqp6LtQI5R5RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.680 [XNIO-1 task-2] HCDVTMIUTdqp6LtQI5R5RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.680 [XNIO-1 task-2] HCDVTMIUTdqp6LtQI5R5RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/376b35d8 +09:03:02.692 [XNIO-1 task-2] Zf_huaVHToaBy-7KKw9UGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/64836528, base path is set to: null +09:03:02.692 [XNIO-1 task-2] Zf_huaVHToaBy-7KKw9UGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.692 [XNIO-1 task-2] Zf_huaVHToaBy-7KKw9UGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.692 [XNIO-1 task-2] Zf_huaVHToaBy-7KKw9UGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/64836528, base path is set to: null +09:03:02.692 [XNIO-1 task-2] Zf_huaVHToaBy-7KKw9UGg DEBUG com.networknt.schema.TypeValidator debug - validate( "64836528", "64836528", serviceId) +09:03:02.696 [XNIO-1 task-2] LlKjJtuzSyiVwKkMOY6q-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.696 [XNIO-1 task-2] LlKjJtuzSyiVwKkMOY6q-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.696 [XNIO-1 task-2] LlKjJtuzSyiVwKkMOY6q-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.696 [XNIO-1 task-2] LlKjJtuzSyiVwKkMOY6q-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.707 [XNIO-1 task-2] E6ZPtugtT3WD73IxxJq8fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.707 [XNIO-1 task-2] E6ZPtugtT3WD73IxxJq8fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.707 [XNIO-1 task-2] E6ZPtugtT3WD73IxxJq8fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.707 [XNIO-1 task-2] E6ZPtugtT3WD73IxxJq8fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.720 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3bbdda45-d4e4-480f-b0c2-5fe842847291 +09:03:02.723 [XNIO-1 task-2] iLlrgo-CQm2SGNhyK9jPKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/64836528 +09:03:02.723 [XNIO-1 task-2] iLlrgo-CQm2SGNhyK9jPKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.723 [XNIO-1 task-2] iLlrgo-CQm2SGNhyK9jPKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.723 [XNIO-1 task-2] iLlrgo-CQm2SGNhyK9jPKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/64836528 +09:03:02.725 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b4b086a-ce66-4944-b7d1-4d96be06678e +09:03:02.727 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:64836528 +09:03:02.738 [XNIO-1 task-2] k66sAVKiQV-NPtVtCwggiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.738 [XNIO-1 task-2] k66sAVKiQV-NPtVtCwggiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.739 [XNIO-1 task-2] k66sAVKiQV-NPtVtCwggiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.739 [XNIO-1 task-2] k66sAVKiQV-NPtVtCwggiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.739 [XNIO-1 task-2] k66sAVKiQV-NPtVtCwggiA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.756 [XNIO-1 task-2] zrrBDxuuQLWB3sSclBDdwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.756 [XNIO-1 task-2] zrrBDxuuQLWB3sSclBDdwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.756 [XNIO-1 task-2] zrrBDxuuQLWB3sSclBDdwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.756 [XNIO-1 task-2] zrrBDxuuQLWB3sSclBDdwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.770 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:97186359 +09:03:02.772 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:05dbc939-e289-40bf-8e8c-8f27f7af1b17 +09:03:02.776 [XNIO-1 task-2] B3tmPzRpRdeWE7Ci1lLCPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.777 [XNIO-1 task-2] B3tmPzRpRdeWE7Ci1lLCPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.777 [XNIO-1 task-2] B3tmPzRpRdeWE7Ci1lLCPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.777 [XNIO-1 task-2] B3tmPzRpRdeWE7Ci1lLCPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.787 [XNIO-1 task-2] ietyHy1PQXKbaliCAKOTWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.787 [XNIO-1 task-2] ietyHy1PQXKbaliCAKOTWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.788 [XNIO-1 task-2] ietyHy1PQXKbaliCAKOTWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.795 [XNIO-1 task-2] Exms_PoRTNWlbOU6FrwwpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4da004d9, base path is set to: null +09:03:02.795 [XNIO-1 task-2] Exms_PoRTNWlbOU6FrwwpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.795 [XNIO-1 task-2] Exms_PoRTNWlbOU6FrwwpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.795 [XNIO-1 task-2] Exms_PoRTNWlbOU6FrwwpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4da004d9, base path is set to: null +09:03:02.795 [XNIO-1 task-2] Exms_PoRTNWlbOU6FrwwpA DEBUG com.networknt.schema.TypeValidator debug - validate( "4da004d9", "4da004d9", serviceId) +09:03:02.798 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ab400a1a-2a0a-4f9d-b655-14cfb8150a16 +09:03:02.805 [XNIO-1 task-2] ijap3DHDThycIZOHg_oENA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.805 [XNIO-1 task-2] ijap3DHDThycIZOHg_oENA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.805 [XNIO-1 task-2] ijap3DHDThycIZOHg_oENA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.823 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5920395 +09:03:02.823 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.823 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.823 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.824 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.824 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.824 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG com.networknt.schema.TypeValidator debug - validate( "6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9", {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:02.824 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG com.networknt.schema.TypeValidator debug - validate( "d5636bfc", {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:02.824 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:02.824 [XNIO-1 task-2] chxwdoEjTlWfpyfECDK1CA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5636bfc","serviceName":"026b5183-8b05-4fe5-aa58-863fa47f","serviceDesc":"6d6be10d-9c30-477f-97a9-f3b5fd7fa3f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.825 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5920395 +09:03:02.843 [XNIO-1 task-2] d-2brKZrTpqV9n36IIWuzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5636bfc +09:03:02.843 [XNIO-1 task-2] d-2brKZrTpqV9n36IIWuzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.843 [XNIO-1 task-2] d-2brKZrTpqV9n36IIWuzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.844 [XNIO-1 task-2] d-2brKZrTpqV9n36IIWuzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5636bfc +09:03:02.856 [XNIO-1 task-2] 7M7jfqdGTZiESoFM_TaUPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.857 [XNIO-1 task-2] 7M7jfqdGTZiESoFM_TaUPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.857 [XNIO-1 task-2] 7M7jfqdGTZiESoFM_TaUPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.857 [XNIO-1 task-2] 7M7jfqdGTZiESoFM_TaUPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.867 [XNIO-1 task-2] w15tngoiS06yUouL3sYduw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.867 [XNIO-1 task-2] w15tngoiS06yUouL3sYduw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.867 [XNIO-1 task-2] w15tngoiS06yUouL3sYduw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.878 [XNIO-1 task-2] DnKV8It8Spug-SuIapAUEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e90f9079, base path is set to: null +09:03:02.878 [XNIO-1 task-2] DnKV8It8Spug-SuIapAUEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.878 [XNIO-1 task-2] DnKV8It8Spug-SuIapAUEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.878 [XNIO-1 task-2] DnKV8It8Spug-SuIapAUEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e90f9079, base path is set to: null +09:03:02.879 [XNIO-1 task-2] DnKV8It8Spug-SuIapAUEA DEBUG com.networknt.schema.TypeValidator debug - validate( "e90f9079", "e90f9079", serviceId) +09:03:02.896 [XNIO-1 task-2] TTjdeKoJTIOa3R206faTLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.896 [XNIO-1 task-2] TTjdeKoJTIOa3R206faTLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.896 [XNIO-1 task-2] TTjdeKoJTIOa3R206faTLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.903 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f012de64-40b8-4ee1-8388-26b61069", {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.904 [XNIO-1 task-2] w73p2aPmR1KaiECRKoBMKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a03cdf6b","serviceName":"f012de64-40b8-4ee1-8388-26b61069","serviceDesc":"5142d380-ba3c-4f5a-9bfe-e6de5914ab03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.914 [XNIO-1 task-2] uzib0R76Sc-GeaInAesXyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.914 [XNIO-1 task-2] uzib0R76Sc-GeaInAesXyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.914 [XNIO-1 task-2] uzib0R76Sc-GeaInAesXyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.921 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.921 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.921 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.921 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.921 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.921 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.921 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.922 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "95e8e21f-ecbf-4e55-a55f-4323c7d4", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.922 [XNIO-1 task-2] JmwcmB7wTpGH_ugjJDrwEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.931 [XNIO-1 task-2] 2grwkdtiSiKO5Q0Zaiamxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.932 [XNIO-1 task-2] 2grwkdtiSiKO5Q0Zaiamxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.932 [XNIO-1 task-2] 2grwkdtiSiKO5Q0Zaiamxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.936 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:05dbc939-e289-40bf-8e8c-8f27f7af1b17 +09:03:02.941 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "234112fd-fe90-47a4-9d48-d0a625be5698", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f550f396", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:02.942 [XNIO-1 task-2] qOzeYmdMSd2k-rB9Vs0wfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.957 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.957 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.957 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:02.958 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.958 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.958 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:02.958 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:02.958 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG com.networknt.schema.TypeValidator debug - validate( "95e8e21f-ecbf-4e55-a55f-4323c7d4", {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:02.958 [XNIO-1 task-2] d25lrpZcS-6zzu_8Z-VRTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f550f396","serviceName":"95e8e21f-ecbf-4e55-a55f-4323c7d4","serviceDesc":"234112fd-fe90-47a4-9d48-d0a625be5698","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:02.972 [XNIO-1 task-2] bN51IzykSJqmH2d_wMFwrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a03cdf6b, base path is set to: null +09:03:02.972 [XNIO-1 task-2] bN51IzykSJqmH2d_wMFwrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.974 [XNIO-1 task-2] bN51IzykSJqmH2d_wMFwrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.974 [XNIO-1 task-2] bN51IzykSJqmH2d_wMFwrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a03cdf6b, base path is set to: null +09:03:02.974 [XNIO-1 task-2] bN51IzykSJqmH2d_wMFwrw DEBUG com.networknt.schema.TypeValidator debug - validate( "a03cdf6b", "a03cdf6b", serviceId) +09:03:02.982 [XNIO-1 task-2] rysUqjsDRpqiVWnOmAEosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a03cdf6b +09:03:02.982 [XNIO-1 task-2] rysUqjsDRpqiVWnOmAEosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:02.982 [XNIO-1 task-2] rysUqjsDRpqiVWnOmAEosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:02.983 [XNIO-1 task-2] rysUqjsDRpqiVWnOmAEosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a03cdf6b +09:03:02.989 [XNIO-1 task-2] ynahDqrIQoCorls1ADbnlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8d4995f8, base path is set to: null +09:03:02.989 [XNIO-1 task-2] ynahDqrIQoCorls1ADbnlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:02.990 [XNIO-1 task-2] ynahDqrIQoCorls1ADbnlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:02.990 [XNIO-1 task-2] ynahDqrIQoCorls1ADbnlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8d4995f8, base path is set to: null +09:03:02.990 [XNIO-1 task-2] ynahDqrIQoCorls1ADbnlg DEBUG com.networknt.schema.TypeValidator debug - validate( "8d4995f8", "8d4995f8", serviceId) +09:03:03.005 [XNIO-1 task-2] 1cQPrw1TTre_-V5KDL1dLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f550f396 +09:03:03.005 [XNIO-1 task-2] 1cQPrw1TTre_-V5KDL1dLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.005 [XNIO-1 task-2] 1cQPrw1TTre_-V5KDL1dLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.007 [XNIO-1 task-2] 1cQPrw1TTre_-V5KDL1dLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f550f396 +09:03:03.016 [XNIO-1 task-2] uIKidId1Tdux9N6nkYBIHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.016 [XNIO-1 task-2] uIKidId1Tdux9N6nkYBIHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.017 [XNIO-1 task-2] uIKidId1Tdux9N6nkYBIHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.017 [XNIO-1 task-2] uIKidId1Tdux9N6nkYBIHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.032 [XNIO-1 task-2] hSVe3CcCRdeiwwSzN7N9vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.033 [XNIO-1 task-2] hSVe3CcCRdeiwwSzN7N9vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.033 [XNIO-1 task-2] hSVe3CcCRdeiwwSzN7N9vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.033 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa31a947 +09:03:03.034 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa31a947 +09:03:03.040 [XNIO-1 task-2] ZOqO7ZNeRY61GkZvvkb3gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.040 [XNIO-1 task-2] ZOqO7ZNeRY61GkZvvkb3gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.040 [XNIO-1 task-2] ZOqO7ZNeRY61GkZvvkb3gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.040 [XNIO-1 task-2] ZOqO7ZNeRY61GkZvvkb3gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.044 [XNIO-1 task-2] aCYvrg4dSBKnZlWF8TQqGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f550f396, base path is set to: null +09:03:03.044 [XNIO-1 task-2] aCYvrg4dSBKnZlWF8TQqGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.044 [XNIO-1 task-2] aCYvrg4dSBKnZlWF8TQqGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.044 [XNIO-1 task-2] aCYvrg4dSBKnZlWF8TQqGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f550f396, base path is set to: null +09:03:03.044 [XNIO-1 task-2] aCYvrg4dSBKnZlWF8TQqGw DEBUG com.networknt.schema.TypeValidator debug - validate( "f550f396", "f550f396", serviceId) +09:03:03.059 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.059 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.059 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.060 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.060 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.060 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG com.networknt.schema.TypeValidator debug - validate( "06eabfbf-9871-4026-be1d-4932136f3146", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.060 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG com.networknt.schema.TypeValidator debug - validate( "fa31a947", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.060 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.060 [XNIO-1 task-2] 8i0cZbZ5QeKflIeIZrQy_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.060 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa31a947 +09:03:03.070 [XNIO-1 task-2] P4yFnuohRpukXjV9CWc_0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.070 [XNIO-1 task-2] P4yFnuohRpukXjV9CWc_0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.070 [XNIO-1 task-2] P4yFnuohRpukXjV9CWc_0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.070 [XNIO-1 task-2] P4yFnuohRpukXjV9CWc_0g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.078 [XNIO-1 task-2] spLJ_fsORxqgulmlXYr9Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.078 [XNIO-1 task-2] spLJ_fsORxqgulmlXYr9Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.079 [XNIO-1 task-2] spLJ_fsORxqgulmlXYr9Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.079 [XNIO-1 task-2] spLJ_fsORxqgulmlXYr9Ww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.094 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1a4c318f-1293-4f4c-83a6-f98f54c5ec64 +09:03:03.116 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5920395 +09:03:03.118 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.118 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.118 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.118 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.118 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.119 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG com.networknt.schema.TypeValidator debug - validate( "06eabfbf-9871-4026-be1d-4932136f3146", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.119 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG com.networknt.schema.TypeValidator debug - validate( "fa31a947", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.119 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.119 [XNIO-1 task-2] 2O3nxOHCRr2R_1PALqyXFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.119 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa31a947 +09:03:03.129 [XNIO-1 task-2] 7hKdoKD-QnCa5YboePxj5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.129 [XNIO-1 task-2] 7hKdoKD-QnCa5YboePxj5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.129 [XNIO-1 task-2] 7hKdoKD-QnCa5YboePxj5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.129 [XNIO-1 task-2] 7hKdoKD-QnCa5YboePxj5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.142 [XNIO-1 task-2] ZoLaZqLaT3OD6sMoGdlQqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.143 [XNIO-1 task-2] ZoLaZqLaT3OD6sMoGdlQqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.143 [XNIO-1 task-2] ZoLaZqLaT3OD6sMoGdlQqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.157 [XNIO-1 task-2] U4vHiELYTpyktPvGWOJUTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.157 [XNIO-1 task-2] U4vHiELYTpyktPvGWOJUTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.157 [XNIO-1 task-2] U4vHiELYTpyktPvGWOJUTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.157 [XNIO-1 task-2] U4vHiELYTpyktPvGWOJUTA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.167 [XNIO-1 task-2] OfFZg20BTCSPQHkj_6qAiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.167 [XNIO-1 task-2] OfFZg20BTCSPQHkj_6qAiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.167 [XNIO-1 task-2] OfFZg20BTCSPQHkj_6qAiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.167 [XNIO-1 task-2] OfFZg20BTCSPQHkj_6qAiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.169 [XNIO-1 task-2] nv9PgvYbQ7uD5PbypV6a_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa31a947, base path is set to: null +09:03:03.169 [XNIO-1 task-2] nv9PgvYbQ7uD5PbypV6a_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.169 [XNIO-1 task-2] nv9PgvYbQ7uD5PbypV6a_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.169 [XNIO-1 task-2] nv9PgvYbQ7uD5PbypV6a_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa31a947, base path is set to: null +09:03:03.170 [XNIO-1 task-2] nv9PgvYbQ7uD5PbypV6a_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fa31a947", "fa31a947", serviceId) +09:03:03.173 [XNIO-1 task-2] tU9ixtq0Q2WsxJNS9q_PEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.173 [XNIO-1 task-2] tU9ixtq0Q2WsxJNS9q_PEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.173 [XNIO-1 task-2] tU9ixtq0Q2WsxJNS9q_PEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.174 [XNIO-1 task-2] tU9ixtq0Q2WsxJNS9q_PEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.176 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.176 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.176 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.177 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.177 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.178 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.178 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:03.178 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "557c07fb-6386-401c-9161-2d50ab14", {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:03.178 [XNIO-1 task-2] 5WkdKvYJTCOuYe7OT7d1KQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa31a947","serviceName":"557c07fb-6386-401c-9161-2d50ab14","serviceDesc":"06eabfbf-9871-4026-be1d-4932136f3146","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.179 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fa31a947 +09:03:03.189 [XNIO-1 task-2] C_vL3AzZR8O-vJMeFJ5m6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.189 [XNIO-1 task-2] C_vL3AzZR8O-vJMeFJ5m6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.190 [XNIO-1 task-2] C_vL3AzZR8O-vJMeFJ5m6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.208 [XNIO-1 task-2] uViRPA0jShmQQAqxTKtTvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60cfe616, base path is set to: null +09:03:03.208 [XNIO-1 task-2] uViRPA0jShmQQAqxTKtTvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.208 [XNIO-1 task-2] uViRPA0jShmQQAqxTKtTvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.208 [XNIO-1 task-2] uViRPA0jShmQQAqxTKtTvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60cfe616, base path is set to: null +09:03:03.209 [XNIO-1 task-2] uViRPA0jShmQQAqxTKtTvA DEBUG com.networknt.schema.TypeValidator debug - validate( "60cfe616", "60cfe616", serviceId) +09:03:03.221 [XNIO-1 task-2] 6aIdtvqrQFC8XeP85bpNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.222 [XNIO-1 task-2] 6aIdtvqrQFC8XeP85bpNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.222 [XNIO-1 task-2] 6aIdtvqrQFC8XeP85bpNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.222 [XNIO-1 task-2] 6aIdtvqrQFC8XeP85bpNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa31a947 +09:03:03.226 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fa31a947 +09:03:03.236 [XNIO-1 task-2] 4T2T0SqeSLSSDZZVcFMFbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.237 [XNIO-1 task-2] 4T2T0SqeSLSSDZZVcFMFbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.237 [XNIO-1 task-2] 4T2T0SqeSLSSDZZVcFMFbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.238 [XNIO-1 task-2] 4T2T0SqeSLSSDZZVcFMFbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.247 [XNIO-1 task-2] DzDYb-sjRQqzPu3wemIJ5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae719abf, base path is set to: null +09:03:03.247 [XNIO-1 task-2] DzDYb-sjRQqzPu3wemIJ5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.247 [XNIO-1 task-2] DzDYb-sjRQqzPu3wemIJ5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.247 [XNIO-1 task-2] DzDYb-sjRQqzPu3wemIJ5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae719abf, base path is set to: null +09:03:03.247 [XNIO-1 task-2] DzDYb-sjRQqzPu3wemIJ5A DEBUG com.networknt.schema.TypeValidator debug - validate( "ae719abf", "ae719abf", serviceId) +09:03:03.257 [XNIO-1 task-2] 2sTciXdLRDiMGvDrynptVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae719abf +09:03:03.257 [XNIO-1 task-2] 2sTciXdLRDiMGvDrynptVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.257 [XNIO-1 task-2] 2sTciXdLRDiMGvDrynptVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.257 [XNIO-1 task-2] 2sTciXdLRDiMGvDrynptVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae719abf +09:03:03.264 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:12f02ba8-3a56-4d0d-85d3-3ee49c6c6a6a +09:03:03.264 [XNIO-1 task-2] jFUVQIbgSHi9cdufCAriEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.265 [XNIO-1 task-2] jFUVQIbgSHi9cdufCAriEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.265 [XNIO-1 task-2] jFUVQIbgSHi9cdufCAriEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +09:03:03.266 [XNIO-1 task-2] jFUVQIbgSHi9cdufCAriEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.269 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:03:03.278 [XNIO-1 task-2] 59hr_OsaSO29SAtFn_komQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.279 [XNIO-1 task-2] 59hr_OsaSO29SAtFn_komQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.279 [XNIO-1 task-2] 59hr_OsaSO29SAtFn_komQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.279 [XNIO-1 task-2] 59hr_OsaSO29SAtFn_komQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.294 [XNIO-1 task-2] TGFolFPgRgqDOQjQyoLsuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.294 [XNIO-1 task-2] TGFolFPgRgqDOQjQyoLsuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.294 [XNIO-1 task-2] TGFolFPgRgqDOQjQyoLsuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.294 [XNIO-1 task-2] TGFolFPgRgqDOQjQyoLsuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.309 [XNIO-1 task-2] EEZIePitSyWY14DDnc2Mmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.309 [XNIO-1 task-2] EEZIePitSyWY14DDnc2Mmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.309 [XNIO-1 task-2] EEZIePitSyWY14DDnc2Mmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.322 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:864aae4e-6f37-4b60-843f-ca2b5a317126 +09:03:03.323 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:864aae4e-6f37-4b60-843f-ca2b5a317126 +09:03:03.323 [XNIO-1 task-2] h5ipQ2QAScagzUzkB0Hm2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eb72faa0 +09:03:03.323 [XNIO-1 task-2] h5ipQ2QAScagzUzkB0Hm2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.323 [XNIO-1 task-2] h5ipQ2QAScagzUzkB0Hm2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.323 [XNIO-1 task-2] h5ipQ2QAScagzUzkB0Hm2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eb72faa0 +09:03:03.331 [XNIO-1 task-2] ZJTJ_Ra5RLWABYeOqjqu1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.331 [XNIO-1 task-2] ZJTJ_Ra5RLWABYeOqjqu1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.332 [XNIO-1 task-2] ZJTJ_Ra5RLWABYeOqjqu1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.332 [XNIO-1 task-2] ZJTJ_Ra5RLWABYeOqjqu1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.338 [XNIO-1 task-2] 3ZQ0Zr12Rs2Mdq4puZrFtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.338 [XNIO-1 task-2] 3ZQ0Zr12Rs2Mdq4puZrFtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.338 [XNIO-1 task-2] 3ZQ0Zr12Rs2Mdq4puZrFtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.338 [XNIO-1 task-2] 3ZQ0Zr12Rs2Mdq4puZrFtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.341 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:864aae4e-6f37-4b60-843f-ca2b5a317126 +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG com.networknt.schema.TypeValidator debug - validate( "b202eb4f-5a4e-4d4b-900f-58c933faa6a5", {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb72faa0", {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.349 [XNIO-1 task-2] PugxE4PESae71BFswlqJzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.363 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6f839517 +09:03:03.367 [XNIO-1 task-2] 8lgvBmafRXG_exZ9vVgGGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eb72faa0, base path is set to: null +09:03:03.367 [XNIO-1 task-2] 8lgvBmafRXG_exZ9vVgGGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.367 [XNIO-1 task-2] 8lgvBmafRXG_exZ9vVgGGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.367 [XNIO-1 task-2] 8lgvBmafRXG_exZ9vVgGGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eb72faa0, base path is set to: null +09:03:03.367 [XNIO-1 task-2] 8lgvBmafRXG_exZ9vVgGGw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb72faa0", "eb72faa0", serviceId) +09:03:03.371 [XNIO-1 task-2] PxR8QLJlTXmugIC8wfCIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.371 [XNIO-1 task-2] PxR8QLJlTXmugIC8wfCIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.371 [XNIO-1 task-2] PxR8QLJlTXmugIC8wfCIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.372 [XNIO-1 task-2] PxR8QLJlTXmugIC8wfCIMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.381 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6f839517 +09:03:03.384 [XNIO-1 task-2] _pECX7GCT-6mMabiF0aweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.384 [XNIO-1 task-2] _pECX7GCT-6mMabiF0aweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.384 [XNIO-1 task-2] _pECX7GCT-6mMabiF0aweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.384 [XNIO-1 task-2] _pECX7GCT-6mMabiF0aweA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.392 [XNIO-1 task-2] AhqRfMcHSqS5J2jgCtAJow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.392 [XNIO-1 task-2] AhqRfMcHSqS5J2jgCtAJow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.392 [XNIO-1 task-2] AhqRfMcHSqS5J2jgCtAJow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.393 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:23654f1c +09:03:03.404 [XNIO-1 task-2] aCUmKQ8bQoSZz-f_gDJ0Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.404 [XNIO-1 task-2] aCUmKQ8bQoSZz-f_gDJ0Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.404 [XNIO-1 task-2] aCUmKQ8bQoSZz-f_gDJ0Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.404 [XNIO-1 task-2] aCUmKQ8bQoSZz-f_gDJ0Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.412 [XNIO-1 task-2] L8s6Xpp6TwS6xa6291E5fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/23654f1c, base path is set to: null +09:03:03.412 [XNIO-1 task-2] L8s6Xpp6TwS6xa6291E5fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.412 [XNIO-1 task-2] L8s6Xpp6TwS6xa6291E5fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.412 [XNIO-1 task-2] L8s6Xpp6TwS6xa6291E5fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/23654f1c, base path is set to: null +09:03:03.412 [XNIO-1 task-2] L8s6Xpp6TwS6xa6291E5fg DEBUG com.networknt.schema.TypeValidator debug - validate( "23654f1c", "23654f1c", serviceId) +09:03:03.415 [XNIO-1 task-2] Fxy7Lnj5SaiULNiLFEuCSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eb72faa0, base path is set to: null +09:03:03.416 [XNIO-1 task-2] Fxy7Lnj5SaiULNiLFEuCSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.416 [XNIO-1 task-2] Fxy7Lnj5SaiULNiLFEuCSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.416 [XNIO-1 task-2] Fxy7Lnj5SaiULNiLFEuCSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eb72faa0, base path is set to: null +09:03:03.416 [XNIO-1 task-2] Fxy7Lnj5SaiULNiLFEuCSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb72faa0", "eb72faa0", serviceId) +09:03:03.423 [XNIO-1 task-2] qymIgubaT7CQwoyD6Y5CwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23654f1c +09:03:03.423 [XNIO-1 task-2] qymIgubaT7CQwoyD6Y5CwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.424 [XNIO-1 task-2] qymIgubaT7CQwoyD6Y5CwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.424 [XNIO-1 task-2] qymIgubaT7CQwoyD6Y5CwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23654f1c +09:03:03.424 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:23654f1c +09:03:03.441 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.441 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.441 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.441 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.441 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.441 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.441 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:03.442 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG com.networknt.schema.TypeValidator debug - validate( "9f1e72b9-39ac-4777-9f8a-fa9ddbe0", {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:03.442 [XNIO-1 task-2] UOWQl8G8Sume0wefWVQ13g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eb72faa0","serviceName":"9f1e72b9-39ac-4777-9f8a-fa9ddbe0","serviceDesc":"b202eb4f-5a4e-4d4b-900f-58c933faa6a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.451 [XNIO-1 task-2] NE2bYOsXQtiElUyAHe1sDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eb72faa0, base path is set to: null +09:03:03.451 [XNIO-1 task-2] NE2bYOsXQtiElUyAHe1sDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.451 [XNIO-1 task-2] NE2bYOsXQtiElUyAHe1sDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.451 [XNIO-1 task-2] NE2bYOsXQtiElUyAHe1sDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eb72faa0, base path is set to: null +09:03:03.452 [XNIO-1 task-2] NE2bYOsXQtiElUyAHe1sDA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb72faa0", "eb72faa0", serviceId) +09:03:03.461 [XNIO-1 task-2] gXCVJXC3QpSud2vsAMZJ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.461 [XNIO-1 task-2] gXCVJXC3QpSud2vsAMZJ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.461 [XNIO-1 task-2] gXCVJXC3QpSud2vsAMZJ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.462 [XNIO-1 task-2] gXCVJXC3QpSud2vsAMZJ-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.473 [XNIO-1 task-2] G6ZrgyGJSuehFfRgJfWLLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.473 [XNIO-1 task-2] G6ZrgyGJSuehFfRgJfWLLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.473 [XNIO-1 task-2] G6ZrgyGJSuehFfRgJfWLLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.484 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG com.networknt.schema.TypeValidator debug - validate( "94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG com.networknt.schema.TypeValidator debug - validate( "4e766787", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.485 [XNIO-1 task-2] xbs8RjHYRxmpdYX5GdV_8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.503 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.503 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.503 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.503 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.503 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.503 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.504 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "4e766787", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.504 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.504 [XNIO-1 task-2] PQFBgUOkRpK9_RisBc_-Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.512 [XNIO-1 task-2] yEfZbUFcRKG0yG-rFRN_4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4e766787 +09:03:03.512 [XNIO-1 task-2] yEfZbUFcRKG0yG-rFRN_4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.512 [XNIO-1 task-2] yEfZbUFcRKG0yG-rFRN_4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.512 [XNIO-1 task-2] yEfZbUFcRKG0yG-rFRN_4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4e766787 +09:03:03.519 [XNIO-1 task-2] 7KzxiI-oS-OnHFg91kF3VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.519 [XNIO-1 task-2] 7KzxiI-oS-OnHFg91kF3VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.519 [XNIO-1 task-2] 7KzxiI-oS-OnHFg91kF3VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.520 [XNIO-1 task-2] 7KzxiI-oS-OnHFg91kF3VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.531 [XNIO-1 task-2] 8SOBDGoQQqOs4W2EVR88Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.532 [XNIO-1 task-2] 8SOBDGoQQqOs4W2EVR88Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.532 [XNIO-1 task-2] 8SOBDGoQQqOs4W2EVR88Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.532 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:eb347b45 +09:03:03.533 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:eb347b45 +09:03:03.545 [XNIO-1 task-2] uyYo3JR6Tam6J5oNypcMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eb347b45 +09:03:03.545 [XNIO-1 task-2] uyYo3JR6Tam6J5oNypcMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.545 [XNIO-1 task-2] uyYo3JR6Tam6J5oNypcMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.545 [XNIO-1 task-2] uyYo3JR6Tam6J5oNypcMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eb347b45 +09:03:03.545 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:eb347b45 +09:03:03.554 [XNIO-1 task-2] JuSBEeZOQNSlFI0f1KRfRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4e766787, base path is set to: null +09:03:03.554 [XNIO-1 task-2] JuSBEeZOQNSlFI0f1KRfRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.554 [XNIO-1 task-2] JuSBEeZOQNSlFI0f1KRfRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.554 [XNIO-1 task-2] JuSBEeZOQNSlFI0f1KRfRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4e766787, base path is set to: null +09:03:03.554 [XNIO-1 task-2] JuSBEeZOQNSlFI0f1KRfRg DEBUG com.networknt.schema.TypeValidator debug - validate( "4e766787", "4e766787", serviceId) +09:03:03.558 [XNIO-1 task-2] mxTcn2zjTKiBLSjvQNDQZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.558 [XNIO-1 task-2] mxTcn2zjTKiBLSjvQNDQZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.558 [XNIO-1 task-2] mxTcn2zjTKiBLSjvQNDQZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.571 [XNIO-1 task-2] fPLqjUAdS1aC6c_vU4ShDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4e766787 +09:03:03.571 [XNIO-1 task-2] fPLqjUAdS1aC6c_vU4ShDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.571 [XNIO-1 task-2] fPLqjUAdS1aC6c_vU4ShDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.571 [XNIO-1 task-2] fPLqjUAdS1aC6c_vU4ShDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4e766787 +09:03:03.582 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.582 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.582 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.583 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.583 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.583 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.583 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:03.583 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG com.networknt.schema.TypeValidator debug - validate( "12c2321c-a54a-4c79-b1a0-db104e4f", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:03.583 [XNIO-1 task-2] cSwuY0NLTG6NiMnKzoshkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.593 [XNIO-1 task-2] Sb_I9G5kSoiu_kNwuGDxlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.593 [XNIO-1 task-2] Sb_I9G5kSoiu_kNwuGDxlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.593 [XNIO-1 task-2] Sb_I9G5kSoiu_kNwuGDxlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.593 [XNIO-1 task-2] Sb_I9G5kSoiu_kNwuGDxlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.594 [XNIO-1 task-2] Sb_I9G5kSoiu_kNwuGDxlg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:03:03.609 [XNIO-1 task-2] Uk2fY4JtSACEi43kO9jdAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.609 [XNIO-1 task-2] Uk2fY4JtSACEi43kO9jdAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.609 [XNIO-1 task-2] Uk2fY4JtSACEi43kO9jdAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.609 [XNIO-1 task-2] Uk2fY4JtSACEi43kO9jdAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.609 [XNIO-1 task-2] Uk2fY4JtSACEi43kO9jdAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.609 [XNIO-1 task-2] Uk2fY4JtSACEi43kO9jdAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.609 [XNIO-1 task-2] Uk2fY4JtSACEi43kO9jdAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.619 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +09:03:03.619 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.619 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.619 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:03:03.620 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +09:03:03.620 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:03.621 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG com.networknt.schema.TypeValidator debug - validate( "ff77e7e2-3dba-4a74-b581-ee6c1a5a", {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +09:03:03.621 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.621 [XNIO-1 task-2] 2zIam7h8QFGgNKq02BuEAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4e766787","serviceName":"ff77e7e2-3dba-4a74-b581-ee6c1a5a","serviceDesc":"94ebdc05-abcc-472c-a2cc-d2db4cb4b3cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.631 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b5920395 +09:03:03.631 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5920395 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:03:03.634 [XNIO-1 task-2] FFwAczWGQ3yJAyWqpHs8ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.634 [XNIO-1 task-2] FFwAczWGQ3yJAyWqpHs8ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.634 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:48c94416 +09:03:03.640 [XNIO-1 task-2] S55Jf9NER_Wo9-u0fXhTDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.640 [XNIO-1 task-2] S55Jf9NER_Wo9-u0fXhTDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.641 [XNIO-1 task-2] S55Jf9NER_Wo9-u0fXhTDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.642 [XNIO-1 task-2] S55Jf9NER_Wo9-u0fXhTDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.648 [XNIO-1 task-2] g7qf5_pdRQiIzv_1ejb_IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.648 [XNIO-1 task-2] g7qf5_pdRQiIzv_1ejb_IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.649 [XNIO-1 task-2] g7qf5_pdRQiIzv_1ejb_IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.649 [XNIO-1 task-2] g7qf5_pdRQiIzv_1ejb_IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.657 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.657 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.657 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.657 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.657 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.657 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.658 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:03.658 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG com.networknt.schema.TypeValidator debug - validate( "12c2321c-a54a-4c79-b1a0-db104e4f", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:03.658 [XNIO-1 task-2] L_PS7xkHTMO6NthYhiJwFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.669 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:08dafbd2-5f8f-4907-a3f8-12248cf9bcd6 +09:03:03.670 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.670 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.670 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.670 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.671 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.671 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ea64e74-db8f-4274-b688-3d5771266aec", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.671 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "597ba894", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.671 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.671 [XNIO-1 task-2] nwCqDEX7R2abh7vfJIL8iQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"597ba894","serviceName":"12c2321c-a54a-4c79-b1a0-db104e4f","serviceDesc":"2ea64e74-db8f-4274-b688-3d5771266aec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:03.676 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:978614e1 +09:03:03.677 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:978614e1 +09:03:03.686 [XNIO-1 task-2] Hp7Dac_zTryHThczFaye-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/597ba894 +09:03:03.686 [XNIO-1 task-2] Hp7Dac_zTryHThczFaye-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.686 [XNIO-1 task-2] Hp7Dac_zTryHThczFaye-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.686 [XNIO-1 task-2] Hp7Dac_zTryHThczFaye-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/597ba894 +09:03:03.690 [XNIO-1 task-2] KmTfxx78RBKvsCfosiBZ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4e766787, base path is set to: null +09:03:03.691 [XNIO-1 task-2] KmTfxx78RBKvsCfosiBZ7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.691 [XNIO-1 task-2] KmTfxx78RBKvsCfosiBZ7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.691 [XNIO-1 task-2] KmTfxx78RBKvsCfosiBZ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4e766787, base path is set to: null +09:03:03.691 [XNIO-1 task-2] KmTfxx78RBKvsCfosiBZ7w DEBUG com.networknt.schema.TypeValidator debug - validate( "4e766787", "4e766787", serviceId) +09:03:03.694 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6f839517 +09:03:03.702 [XNIO-1 task-2] FsNz8S2CQ8iKXB26DkrQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48c94416 +09:03:03.703 [XNIO-1 task-2] FsNz8S2CQ8iKXB26DkrQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.703 [XNIO-1 task-2] FsNz8S2CQ8iKXB26DkrQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.703 [XNIO-1 task-2] FsNz8S2CQ8iKXB26DkrQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48c94416 +09:03:03.703 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:48c94416 +09:03:03.715 [XNIO-1 task-2] krpEaaS8TH-B4qgxkGlY7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.715 [XNIO-1 task-2] krpEaaS8TH-B4qgxkGlY7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.715 [XNIO-1 task-2] krpEaaS8TH-B4qgxkGlY7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.715 [XNIO-1 task-2] krpEaaS8TH-B4qgxkGlY7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.729 [XNIO-1 task-2] O9qzoVEuSmCAzEivZNWHIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/597ba894, base path is set to: null +09:03:03.729 [XNIO-1 task-2] O9qzoVEuSmCAzEivZNWHIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.729 [XNIO-1 task-2] O9qzoVEuSmCAzEivZNWHIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.729 [XNIO-1 task-2] O9qzoVEuSmCAzEivZNWHIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/597ba894, base path is set to: null +09:03:03.729 [XNIO-1 task-2] O9qzoVEuSmCAzEivZNWHIw DEBUG com.networknt.schema.TypeValidator debug - validate( "597ba894", "597ba894", serviceId) +09:03:03.741 [XNIO-1 task-2] MkMKk0XaQ72CZKRHHo0Gqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.741 [XNIO-1 task-2] MkMKk0XaQ72CZKRHHo0Gqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.741 [XNIO-1 task-2] MkMKk0XaQ72CZKRHHo0Gqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.742 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f03d60b2 +09:03:03.746 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:978614e1 +09:03:03.752 [XNIO-1 task-2] sD1VZUR4RUWcCUSxaWSCNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.752 [XNIO-1 task-2] sD1VZUR4RUWcCUSxaWSCNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.753 [XNIO-1 task-2] sD1VZUR4RUWcCUSxaWSCNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.765 [XNIO-1 task-2] R1RaHSLmTauhSvf5dHIWog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f03d60b2, base path is set to: null +09:03:03.765 [XNIO-1 task-2] R1RaHSLmTauhSvf5dHIWog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.765 [XNIO-1 task-2] R1RaHSLmTauhSvf5dHIWog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.765 [XNIO-1 task-2] R1RaHSLmTauhSvf5dHIWog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f03d60b2, base path is set to: null +09:03:03.765 [XNIO-1 task-2] R1RaHSLmTauhSvf5dHIWog DEBUG com.networknt.schema.TypeValidator debug - validate( "f03d60b2", "f03d60b2", serviceId) +09:03:03.768 [XNIO-1 task-2] 4wt6bIPoSvmeRPSKQ9tGSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.768 [XNIO-1 task-2] 4wt6bIPoSvmeRPSKQ9tGSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.768 [XNIO-1 task-2] 4wt6bIPoSvmeRPSKQ9tGSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.768 [XNIO-1 task-2] 4wt6bIPoSvmeRPSKQ9tGSA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.773 [XNIO-1 task-2] WF_xLHzqQ6aDA65M8vyi-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40c6eef4 +09:03:03.773 [XNIO-1 task-2] WF_xLHzqQ6aDA65M8vyi-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.773 [XNIO-1 task-2] WF_xLHzqQ6aDA65M8vyi-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.773 [XNIO-1 task-2] WF_xLHzqQ6aDA65M8vyi-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40c6eef4 +09:03:03.779 [XNIO-1 task-2] 3S1DmQ6uT2-YJtqvUtIMEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40c6eef4, base path is set to: null +09:03:03.779 [XNIO-1 task-2] 3S1DmQ6uT2-YJtqvUtIMEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.779 [XNIO-1 task-2] 3S1DmQ6uT2-YJtqvUtIMEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:03:03.779 [XNIO-1 task-2] 3S1DmQ6uT2-YJtqvUtIMEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40c6eef4, base path is set to: null +09:03:03.779 [XNIO-1 task-2] 3S1DmQ6uT2-YJtqvUtIMEA DEBUG com.networknt.schema.TypeValidator debug - validate( "40c6eef4", "40c6eef4", serviceId) +09:03:03.788 [XNIO-1 task-2] R8IL9C3hTfi9ruOewtDYPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.789 [XNIO-1 task-2] R8IL9C3hTfi9ruOewtDYPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.789 [XNIO-1 task-2] R8IL9C3hTfi9ruOewtDYPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.789 [XNIO-1 task-2] R8IL9C3hTfi9ruOewtDYPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.791 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4178849a-cc46-4460-9903-3162a233af1a +09:03:03.799 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.799 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.799 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.799 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.799 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.799 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG com.networknt.schema.TypeValidator debug - validate( "615ee65e-9d8b-4a2f-b81b-40669c51a7b3", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.800 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG com.networknt.schema.TypeValidator debug - validate( "f03d60b2", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.800 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.800 [XNIO-1 task-2] cw8mgxbcS_mGOPTFsQdrvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.800 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f03d60b2 +09:03:03.809 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.809 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.809 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.809 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.810 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.810 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.810 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:03.810 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG com.networknt.schema.TypeValidator debug - validate( "938262f6-b7c2-4fcb-a4f4-d4929477", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:03.810 [XNIO-1 task-2] T4xFfyqZRG6oyyyXlBN9dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.810 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f03d60b2 +09:03:03.815 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4178849a-cc46-4460-9903-3162a233af1a +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG com.networknt.schema.TypeValidator debug - validate( "615ee65e-9d8b-4a2f-b81b-40669c51a7b3", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG com.networknt.schema.TypeValidator debug - validate( "f03d60b2", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.817 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.818 [XNIO-1 task-2] 858HyYesRYyJkKlm7V6fmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f03d60b2","serviceName":"938262f6-b7c2-4fcb-a4f4-d4929477","serviceDesc":"615ee65e-9d8b-4a2f-b81b-40669c51a7b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.818 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f03d60b2 +09:03:03.827 [XNIO-1 task-2] rTu-1IimSpyjpBuYtuEyPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f03d60b2 +09:03:03.827 [XNIO-1 task-2] rTu-1IimSpyjpBuYtuEyPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.827 [XNIO-1 task-2] rTu-1IimSpyjpBuYtuEyPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.827 [XNIO-1 task-2] rTu-1IimSpyjpBuYtuEyPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f03d60b2 +09:03:03.827 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f03d60b2 +09:03:03.837 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4178849a-cc46-4460-9903-3162a233af1a +09:03:03.847 [XNIO-1 task-2] bCSUUxzpTrmhgZIblhZSbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.847 [XNIO-1 task-2] bCSUUxzpTrmhgZIblhZSbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.847 [XNIO-1 task-2] bCSUUxzpTrmhgZIblhZSbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.866 [XNIO-1 task-2] L0l_AmOwTqWXssPEA-51TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8e2dfb8 +09:03:03.866 [XNIO-1 task-2] L0l_AmOwTqWXssPEA-51TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.866 [XNIO-1 task-2] L0l_AmOwTqWXssPEA-51TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:03:03.866 [XNIO-1 task-2] L0l_AmOwTqWXssPEA-51TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8e2dfb8 +09:03:03.868 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:27e32d40 +09:03:03.869 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:27e32d40 +09:03:03.879 [XNIO-1 task-2] qpVjUx65Q6eSjHGIPm9WpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.879 [XNIO-1 task-2] qpVjUx65Q6eSjHGIPm9WpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.879 [XNIO-1 task-2] qpVjUx65Q6eSjHGIPm9WpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "ebd286f2-3de5-408f-9a53-d9f7d3be9a61", {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e7c43fc", {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:03:03.890 [XNIO-1 task-2] 588mdSlNRrm9zAPeH2PUsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.900 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:69d77459 +09:03:03.903 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.903 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.903 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.904 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.904 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.904 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:03:03.904 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:03:03.904 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG com.networknt.schema.TypeValidator debug - validate( "c08d8937-93dc-4401-9867-bf2e7c4d", {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:03:03.904 [XNIO-1 task-2] X9Vp6_oGSsidVZkk3yYh5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e7c43fc","serviceName":"c08d8937-93dc-4401-9867-bf2e7c4d","serviceDesc":"ebd286f2-3de5-408f-9a53-d9f7d3be9a61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:03:03.914 [XNIO-1 task-2] axtnTNpcTfyzFn95TFu18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:03:03.914 [XNIO-1 task-2] axtnTNpcTfyzFn95TFu18g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:03:03.914 [XNIO-1 task-2] axtnTNpcTfyzFn95TFu18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..b3453d4 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-token-1.log @@ -0,0 +1,1958 @@ +09:02:59.036 [XNIO-1 task-4] OdbngGxRRV-THXuuTtIvyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.036 [XNIO-1 task-4] OdbngGxRRV-THXuuTtIvyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.036 [XNIO-1 task-4] OdbngGxRRV-THXuuTtIvyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.036 [XNIO-1 task-4] OdbngGxRRV-THXuuTtIvyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:02:59.038 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:50cc56b4 +09:02:59.039 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:50cc56b4 +09:02:59.045 [XNIO-1 task-4] OdbngGxRRV-THXuuTtIvyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.077 [XNIO-1 task-4] fjyrzIDwTC6Iklz894Sosw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.077 [XNIO-1 task-4] fjyrzIDwTC6Iklz894Sosw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.077 [XNIO-1 task-4] fjyrzIDwTC6Iklz894Sosw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.077 [XNIO-1 task-4] fjyrzIDwTC6Iklz894Sosw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:02:59.083 [XNIO-1 task-4] fjyrzIDwTC6Iklz894Sosw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:02:59.083 [XNIO-1 task-4] fjyrzIDwTC6Iklz894Sosw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.103 [XNIO-1 task-4] dPacnrSbRFi1FLzeb4f11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.103 [XNIO-1 task-4] dPacnrSbRFi1FLzeb4f11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.103 [XNIO-1 task-4] dPacnrSbRFi1FLzeb4f11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.104 [XNIO-1 task-4] dPacnrSbRFi1FLzeb4f11A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ixGSVPxhS2u21g1pZ1Fv7g redirectUri = http://localhost:8080/authorization +09:02:59.109 [XNIO-1 task-4] dPacnrSbRFi1FLzeb4f11A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.116 [XNIO-1 task-4] BsB4qiRMSn2L_u1XtHF7Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.117 [XNIO-1 task-4] BsB4qiRMSn2L_u1XtHF7Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.117 [XNIO-1 task-4] BsB4qiRMSn2L_u1XtHF7Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.117 [XNIO-1 task-4] BsB4qiRMSn2L_u1XtHF7Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:02:59.126 [XNIO-1 task-4] BsB4qiRMSn2L_u1XtHF7Iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.127 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5ae5997d-edbd-488d-9a52-42bf32852349 +09:02:59.128 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5ae5997d-edbd-488d-9a52-42bf32852349 +09:02:59.159 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:72ef6a49 +09:02:59.168 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f09005d +09:02:59.200 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f09005d +09:02:59.227 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:50cc56b4 +09:02:59.229 [XNIO-1 task-4] RAQsLivzS1KdpQ9YzlIZjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.229 [XNIO-1 task-4] RAQsLivzS1KdpQ9YzlIZjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.229 [XNIO-1 task-4] RAQsLivzS1KdpQ9YzlIZjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.229 [XNIO-1 task-4] RAQsLivzS1KdpQ9YzlIZjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = xp419IiHS-26Jf7D38RU3w redirectUri = http://localhost:8080/authorization +09:02:59.235 [XNIO-1 task-4] RAQsLivzS1KdpQ9YzlIZjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.270 [XNIO-1 task-4] E1g33sFUTQuIpr6MRL_iWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.270 [XNIO-1 task-4] E1g33sFUTQuIpr6MRL_iWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.270 [XNIO-1 task-4] E1g33sFUTQuIpr6MRL_iWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.270 [XNIO-1 task-4] E1g33sFUTQuIpr6MRL_iWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +09:02:59.276 [XNIO-1 task-4] E1g33sFUTQuIpr6MRL_iWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:02:59.276 [XNIO-1 task-4] E1g33sFUTQuIpr6MRL_iWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.310 [XNIO-1 task-4] 99-InfhtSpieRiVeYNoc8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.310 [XNIO-1 task-4] 99-InfhtSpieRiVeYNoc8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.310 [XNIO-1 task-4] 99-InfhtSpieRiVeYNoc8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.310 [XNIO-1 task-4] 99-InfhtSpieRiVeYNoc8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _zN42o19ThSrPEBKquBylg redirectUri = http://localhost:8080/authorization +09:02:59.316 [XNIO-1 task-4] 99-InfhtSpieRiVeYNoc8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.328 [XNIO-1 task-4] mUE58NqERdK2h0zSGZ29jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.329 [XNIO-1 task-4] mUE58NqERdK2h0zSGZ29jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.329 [XNIO-1 task-4] mUE58NqERdK2h0zSGZ29jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.329 [XNIO-1 task-4] mUE58NqERdK2h0zSGZ29jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +09:02:59.338 [XNIO-1 task-4] mUE58NqERdK2h0zSGZ29jg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.346 [XNIO-1 task-4] 9E8_49owRCW2tf85K0Og2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.346 [XNIO-1 task-4] 9E8_49owRCW2tf85K0Og2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.346 [XNIO-1 task-4] 9E8_49owRCW2tf85K0Og2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.347 [XNIO-1 task-4] 9E8_49owRCW2tf85K0Og2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +09:02:59.355 [XNIO-1 task-4] 9E8_49owRCW2tf85K0Og2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.398 [XNIO-1 task-4] -qa4_4AiTQqVNCqZSa4goQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.398 [XNIO-1 task-4] -qa4_4AiTQqVNCqZSa4goQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.398 [XNIO-1 task-4] -qa4_4AiTQqVNCqZSa4goQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.398 [XNIO-1 task-4] -qa4_4AiTQqVNCqZSa4goQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", authorization) +09:02:59.400 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:41971637 +09:02:59.401 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:41971637 +09:02:59.404 [XNIO-1 task-4] -qa4_4AiTQqVNCqZSa4goQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:02:59.404 [XNIO-1 task-4] -qa4_4AiTQqVNCqZSa4goQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.405 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1057e890-50bb-452e-b3db-e760230099bd +09:02:59.412 [XNIO-1 task-4] Y-4Ui4VkQAiNo3ZD6S96Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.412 [XNIO-1 task-4] Y-4Ui4VkQAiNo3ZD6S96Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.412 [XNIO-1 task-4] Y-4Ui4VkQAiNo3ZD6S96Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.412 [XNIO-1 task-4] Y-4Ui4VkQAiNo3ZD6S96Eg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 06a6465a-c63a-430c-bc59-1000a28db21c scope = null +09:02:59.420 [XNIO-1 task-4] Y-4Ui4VkQAiNo3ZD6S96Eg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.440 [XNIO-1 task-4] jPvyAzUnR22DB3wF2sSWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.440 [XNIO-1 task-4] jPvyAzUnR22DB3wF2sSWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.440 [XNIO-1 task-4] jPvyAzUnR22DB3wF2sSWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.440 [XNIO-1 task-4] jPvyAzUnR22DB3wF2sSWxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = z4ev9qJNRuiYxBu0_3EW0Q redirectUri = http://localhost:8080/authorization +09:02:59.446 [XNIO-1 task-4] jPvyAzUnR22DB3wF2sSWxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.455 [XNIO-1 task-4] wEjLXw0XSJGzryvk-c8Uew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.455 [XNIO-1 task-4] wEjLXw0XSJGzryvk-c8Uew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.455 [XNIO-1 task-4] wEjLXw0XSJGzryvk-c8Uew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.455 [XNIO-1 task-4] wEjLXw0XSJGzryvk-c8Uew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:02:59.464 [XNIO-1 task-4] wEjLXw0XSJGzryvk-c8Uew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.525 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2f09005d +09:02:59.553 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:41971637 +09:02:59.593 [XNIO-1 task-4] hRCLoOOLQ2W8IPNPNAfg6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.593 [XNIO-1 task-4] hRCLoOOLQ2W8IPNPNAfg6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.593 [XNIO-1 task-4] hRCLoOOLQ2W8IPNPNAfg6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.593 [XNIO-1 task-4] hRCLoOOLQ2W8IPNPNAfg6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:02:59.600 [XNIO-1 task-4] hRCLoOOLQ2W8IPNPNAfg6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:02:59.600 [XNIO-1 task-4] hRCLoOOLQ2W8IPNPNAfg6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.605 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f09005d +09:02:59.607 [XNIO-1 task-4] bT9UVbTDTXi7hRkJYDmdbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.607 [XNIO-1 task-4] bT9UVbTDTXi7hRkJYDmdbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.607 [XNIO-1 task-4] bT9UVbTDTXi7hRkJYDmdbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.607 [XNIO-1 task-4] bT9UVbTDTXi7hRkJYDmdbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2A9l9_Z9S5C2SXjGCIkW7A redirectUri = http://localhost:8080/authorization +09:02:59.613 [XNIO-1 task-4] bT9UVbTDTXi7hRkJYDmdbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.617 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3a8d71d6 +09:02:59.618 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3a8d71d6 +09:02:59.627 [XNIO-1 task-4] w7nOqA8uR1i3ackjFJBy6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.627 [XNIO-1 task-4] w7nOqA8uR1i3ackjFJBy6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.628 [XNIO-1 task-4] w7nOqA8uR1i3ackjFJBy6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.628 [XNIO-1 task-4] w7nOqA8uR1i3ackjFJBy6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3988399d-d1c3-4722-ab81-6aa3707bfdca scope = null +09:02:59.636 [XNIO-1 task-4] w7nOqA8uR1i3ackjFJBy6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.638 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:876ce4f7-3d15-45b1-b95c-d629d6504f08 +09:02:59.658 [XNIO-1 task-4] fgB7K5V9S6SuHQ7VwxsCsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.658 [XNIO-1 task-4] fgB7K5V9S6SuHQ7VwxsCsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:02:59.658 [XNIO-1 task-4] fgB7K5V9S6SuHQ7VwxsCsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.658 [XNIO-1 task-4] fgB7K5V9S6SuHQ7VwxsCsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", authorization) +09:02:59.664 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:876ce4f7-3d15-45b1-b95c-d629d6504f08 +09:02:59.667 [XNIO-1 task-4] fgB7K5V9S6SuHQ7VwxsCsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.673 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2f09005d +09:02:59.674 [XNIO-1 task-4] jkPxBwUySIiZbS64PjjWpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.674 [XNIO-1 task-4] jkPxBwUySIiZbS64PjjWpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.674 [XNIO-1 task-4] jkPxBwUySIiZbS64PjjWpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.675 [XNIO-1 task-4] jkPxBwUySIiZbS64PjjWpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e1aa07fa-d6f8-486d-8fc8-1cbdf75f89a3 scope = null +09:02:59.684 [XNIO-1 task-4] jkPxBwUySIiZbS64PjjWpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:02:59.860 [XNIO-1 task-6] K3mOEt-SRKK8ukNXNER09A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.860 [XNIO-1 task-6] K3mOEt-SRKK8ukNXNER09A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.860 [XNIO-1 task-6] K3mOEt-SRKK8ukNXNER09A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:02:59.860 [XNIO-1 task-6] K3mOEt-SRKK8ukNXNER09A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3V_lEjR2S-qHnYFD3h8VMg redirectUri = http://localhost:8080/authorization +09:02:59.964 [XNIO-1 task-6] K3mOEt-SRKK8ukNXNER09A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:02:59.995 [XNIO-1 task-6] En3NUnTtRyivT2MSpdbRPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:02:59.995 [XNIO-1 task-6] En3NUnTtRyivT2MSpdbRPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.019 [XNIO-1 task-6] En3NUnTtRyivT2MSpdbRPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.019 [XNIO-1 task-6] En3NUnTtRyivT2MSpdbRPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", authorization) +09:03:00.020 [XNIO-1 task-4] jj2cFGHySxGM5RG1zaWqyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.020 [XNIO-1 task-4] jj2cFGHySxGM5RG1zaWqyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.020 [XNIO-1 task-4] jj2cFGHySxGM5RG1zaWqyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.020 [XNIO-1 task-4] jj2cFGHySxGM5RG1zaWqyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", authorization) +09:03:00.026 [XNIO-1 task-4] jj2cFGHySxGM5RG1zaWqyQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:00.026 [XNIO-1 task-4] jj2cFGHySxGM5RG1zaWqyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:00.028 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a6a096ee-5528-43fb-bdfb-947745bbc5b7 +09:03:00.028 [XNIO-1 task-6] En3NUnTtRyivT2MSpdbRPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.034 [XNIO-1 task-4] vemyDflISrS2nc7HY6UW_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.034 [XNIO-1 task-4] vemyDflISrS2nc7HY6UW_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.034 [XNIO-1 task-4] vemyDflISrS2nc7HY6UW_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.034 [XNIO-1 task-4] vemyDflISrS2nc7HY6UW_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", authorization) +09:03:00.039 [XNIO-1 task-6] BXyr0YzXQd-7YHW4tSvMwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.039 [XNIO-1 task-6] BXyr0YzXQd-7YHW4tSvMwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.039 [XNIO-1 task-6] BXyr0YzXQd-7YHW4tSvMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.040 [XNIO-1 task-6] BXyr0YzXQd-7YHW4tSvMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.040 [XNIO-1 task-6] BXyr0YzXQd-7YHW4tSvMwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ad001ce6-5c5d-4440-b86b-7b774d23f443 scope = null +09:03:00.043 [XNIO-1 task-4] vemyDflISrS2nc7HY6UW_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad001ce6-5c5d-4440-b86b-7b774d23f443 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:03:00.054 [XNIO-1 task-4] lnydUVb7SYyK7UcaTb0v5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.054 [XNIO-1 task-4] lnydUVb7SYyK7UcaTb0v5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.054 [XNIO-1 task-4] lnydUVb7SYyK7UcaTb0v5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.054 [XNIO-1 task-4] lnydUVb7SYyK7UcaTb0v5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDNkMTM2MjItNGNmZS00YjVhLWJhMWYtODAwMjdlOGUxOGM1OjBkOHQzZ2hJUVAtVDJUNUt3cG5DUUE=", "Basic MDNkMTM2MjItNGNmZS00YjVhLWJhMWYtODAwMjdlOGUxOGM1OjBkOHQzZ2hJUVAtVDJUNUt3cG5DUUE=", authorization) +09:03:00.075 [XNIO-1 task-4] lnydUVb7SYyK7UcaTb0v5w ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:03:00.082 [XNIO-1 task-4] iNmq4KUAQHWRl5N_d7q84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.082 [XNIO-1 task-4] iNmq4KUAQHWRl5N_d7q84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.082 [XNIO-1 task-4] iNmq4KUAQHWRl5N_d7q84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.082 [XNIO-1 task-4] iNmq4KUAQHWRl5N_d7q84w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ad001ce6-5c5d-4440-b86b-7b774d23f443 scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad001ce6-5c5d-4440-b86b-7b774d23f443 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:03:00.092 [XNIO-1 task-4] yx6EfY2rRi-xlwUgbtUCBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.092 [XNIO-1 task-4] yx6EfY2rRi-xlwUgbtUCBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.093 [XNIO-1 task-4] yx6EfY2rRi-xlwUgbtUCBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.093 [XNIO-1 task-4] yx6EfY2rRi-xlwUgbtUCBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDNkMTM2MjItNGNmZS00YjVhLWJhMWYtODAwMjdlOGUxOGM1OjBkOHQzZ2hJUVAtVDJUNUt3cG5DUUE=", "Basic MDNkMTM2MjItNGNmZS00YjVhLWJhMWYtODAwMjdlOGUxOGM1OjBkOHQzZ2hJUVAtVDJUNUt3cG5DUUE=", authorization) +09:03:00.102 [XNIO-1 task-4] yx6EfY2rRi-xlwUgbtUCBg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:03:00.117 [XNIO-1 task-4] hoZ26qY7QcGED__8Ef6c_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.117 [XNIO-1 task-4] hoZ26qY7QcGED__8Ef6c_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.117 [XNIO-1 task-4] hoZ26qY7QcGED__8Ef6c_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.117 [XNIO-1 task-4] hoZ26qY7QcGED__8Ef6c_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OgUrkEg_TUOT7f4tpadoRg redirectUri = http://localhost:8080/authorization +09:03:00.123 [XNIO-1 task-4] hoZ26qY7QcGED__8Ef6c_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.193 [XNIO-1 task-4] R1bCF68USZ2ghSQfGhphlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.193 [XNIO-1 task-4] R1bCF68USZ2ghSQfGhphlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.194 [XNIO-1 task-4] R1bCF68USZ2ghSQfGhphlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.194 [XNIO-1 task-4] R1bCF68USZ2ghSQfGhphlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:00.202 [XNIO-1 task-4] R1bCF68USZ2ghSQfGhphlw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:00.202 [XNIO-1 task-4] R1bCF68USZ2ghSQfGhphlw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:00.203 [XNIO-1 task-6] MkkDKByPSHigSYK7f2mB5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.203 [XNIO-1 task-6] MkkDKByPSHigSYK7f2mB5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.203 [XNIO-1 task-6] MkkDKByPSHigSYK7f2mB5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.203 [XNIO-1 task-6] MkkDKByPSHigSYK7f2mB5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:03:00.210 [XNIO-1 task-6] b_uAn8_qTpuYGYJomBFImg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.210 [XNIO-1 task-6] b_uAn8_qTpuYGYJomBFImg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.210 [XNIO-1 task-6] b_uAn8_qTpuYGYJomBFImg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.210 [XNIO-1 task-6] b_uAn8_qTpuYGYJomBFImg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", authorization) +09:03:00.213 [XNIO-1 task-4] mJ4tu9RITGa-4hxhgIuzvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.213 [XNIO-1 task-4] mJ4tu9RITGa-4hxhgIuzvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.213 [XNIO-1 task-4] mJ4tu9RITGa-4hxhgIuzvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.213 [XNIO-1 task-4] mJ4tu9RITGa-4hxhgIuzvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:00.217 [XNIO-1 task-6] b_uAn8_qTpuYGYJomBFImg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 429782b8-6742-4cb0-b8ea-26e2e3b24cd1 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:03:00.223 [XNIO-1 task-4] d1XucAFNQ9S5iJtovhAOZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.223 [XNIO-1 task-4] d1XucAFNQ9S5iJtovhAOZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.223 [XNIO-1 task-4] d1XucAFNQ9S5iJtovhAOZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.223 [XNIO-1 task-4] d1XucAFNQ9S5iJtovhAOZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:00.229 [XNIO-1 task-4] d1XucAFNQ9S5iJtovhAOZA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:03:00.234 [XNIO-1 task-4] YkXHkRdFQ8e8UnjH5whQng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.234 [XNIO-1 task-4] YkXHkRdFQ8e8UnjH5whQng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.234 [XNIO-1 task-4] YkXHkRdFQ8e8UnjH5whQng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.235 [XNIO-1 task-4] YkXHkRdFQ8e8UnjH5whQng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dodMern1QzKjMMsr19GAxg redirectUri = http://localhost:8080/authorization +09:03:00.241 [XNIO-1 task-6] 3NGEI5SRR9iaT33pKdW2rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.242 [XNIO-1 task-4] YkXHkRdFQ8e8UnjH5whQng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.242 [XNIO-1 task-4] YkXHkRdFQ8e8UnjH5whQng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:00.242 [XNIO-1 task-6] 3NGEI5SRR9iaT33pKdW2rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.242 [XNIO-1 task-6] 3NGEI5SRR9iaT33pKdW2rA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", authorization) +09:03:00.249 [XNIO-1 task-6] 3NGEI5SRR9iaT33pKdW2rA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:03:00.273 [XNIO-1 task-6] 90S3T2y5Tq2fW5gBhTXSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.273 [XNIO-1 task-6] 90S3T2y5Tq2fW5gBhTXSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.273 [XNIO-1 task-6] 90S3T2y5Tq2fW5gBhTXSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:00.273 [XNIO-1 task-6] 90S3T2y5Tq2fW5gBhTXSgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZVJHwfEjSSSfwwmu4upI2w redirectUri = http://localhost:8080/authorization +09:03:00.279 [XNIO-1 task-6] 90S3T2y5Tq2fW5gBhTXSgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.289 [XNIO-1 task-6] jt8sL1tvQSy4ElPzqtQCYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.289 [XNIO-1 task-6] jt8sL1tvQSy4ElPzqtQCYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.289 [XNIO-1 task-6] jt8sL1tvQSy4ElPzqtQCYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.289 [XNIO-1 task-6] jt8sL1tvQSy4ElPzqtQCYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", authorization) +09:03:00.298 [XNIO-1 task-6] jt8sL1tvQSy4ElPzqtQCYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.849 [XNIO-1 task-5] EFbUFWMfRDqN1-DoDD-yqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.849 [XNIO-1 task-5] EFbUFWMfRDqN1-DoDD-yqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.870 [XNIO-1 task-5] EFbUFWMfRDqN1-DoDD-yqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.871 [XNIO-1 task-5] EFbUFWMfRDqN1-DoDD-yqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:00.877 [XNIO-1 task-5] EFbUFWMfRDqN1-DoDD-yqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.882 [XNIO-1 task-5] 5-erfmwRTsOh-bBVmXC47Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.882 [XNIO-1 task-5] 5-erfmwRTsOh-bBVmXC47Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.882 [XNIO-1 task-5] 5-erfmwRTsOh-bBVmXC47Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.883 [XNIO-1 task-5] 5-erfmwRTsOh-bBVmXC47Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:00.888 [XNIO-1 task-5] 5-erfmwRTsOh-bBVmXC47Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.892 [XNIO-1 task-5] 6dnnuYEaQEKIa8m2c9Ok9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.892 [XNIO-1 task-5] 6dnnuYEaQEKIa8m2c9Ok9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.892 [XNIO-1 task-5] 6dnnuYEaQEKIa8m2c9Ok9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.892 [XNIO-1 task-5] 6dnnuYEaQEKIa8m2c9Ok9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:00.899 [XNIO-1 task-5] 6dnnuYEaQEKIa8m2c9Ok9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.903 [XNIO-1 task-5] AVsYWPSBRuWyQXJwOKR_aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.904 [XNIO-1 task-5] AVsYWPSBRuWyQXJwOKR_aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.904 [XNIO-1 task-5] AVsYWPSBRuWyQXJwOKR_aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.904 [XNIO-1 task-5] AVsYWPSBRuWyQXJwOKR_aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:00.910 [XNIO-1 task-5] AVsYWPSBRuWyQXJwOKR_aQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.914 [XNIO-1 task-5] hllsWxbsTzmWjF7osAe-HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.915 [XNIO-1 task-5] hllsWxbsTzmWjF7osAe-HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.915 [XNIO-1 task-5] hllsWxbsTzmWjF7osAe-HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.916 [XNIO-1 task-5] hllsWxbsTzmWjF7osAe-HA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:00.923 [XNIO-1 task-5] hllsWxbsTzmWjF7osAe-HA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.928 [XNIO-1 task-5] XSi4JuK8Rwi5fE81tyCgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.928 [XNIO-1 task-5] XSi4JuK8Rwi5fE81tyCgaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.929 [XNIO-1 task-5] XSi4JuK8Rwi5fE81tyCgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.929 [XNIO-1 task-5] XSi4JuK8Rwi5fE81tyCgaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:00.934 [XNIO-1 task-5] XSi4JuK8Rwi5fE81tyCgaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.939 [XNIO-1 task-5] LfVgq07ZT7exAz9bmJTGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.939 [XNIO-1 task-5] LfVgq07ZT7exAz9bmJTGzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.940 [XNIO-1 task-5] LfVgq07ZT7exAz9bmJTGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.940 [XNIO-1 task-5] LfVgq07ZT7exAz9bmJTGzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:00.946 [XNIO-1 task-5] LfVgq07ZT7exAz9bmJTGzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.950 [XNIO-1 task-5] 1pyWEvzGQlGTu3yZeZ0fKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.950 [XNIO-1 task-5] 1pyWEvzGQlGTu3yZeZ0fKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.950 [XNIO-1 task-5] 1pyWEvzGQlGTu3yZeZ0fKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.950 [XNIO-1 task-5] 1pyWEvzGQlGTu3yZeZ0fKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:00.956 [XNIO-1 task-5] 1pyWEvzGQlGTu3yZeZ0fKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.959 [XNIO-1 task-5] 9DCexRJKRLCH6fQy73o6hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.959 [XNIO-1 task-5] 9DCexRJKRLCH6fQy73o6hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.960 [XNIO-1 task-5] 9DCexRJKRLCH6fQy73o6hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.960 [XNIO-1 task-5] 9DCexRJKRLCH6fQy73o6hw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:00.965 [XNIO-1 task-5] 9DCexRJKRLCH6fQy73o6hw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.970 [XNIO-1 task-5] D51aYkgSQkWJ7bxhDkiBkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.970 [XNIO-1 task-5] D51aYkgSQkWJ7bxhDkiBkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.970 [XNIO-1 task-5] D51aYkgSQkWJ7bxhDkiBkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.971 [XNIO-1 task-5] D51aYkgSQkWJ7bxhDkiBkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:00.977 [XNIO-1 task-5] D51aYkgSQkWJ7bxhDkiBkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.981 [XNIO-1 task-5] BucCfoFKTGy4vd51HT7UGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.981 [XNIO-1 task-5] BucCfoFKTGy4vd51HT7UGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.981 [XNIO-1 task-5] BucCfoFKTGy4vd51HT7UGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.981 [XNIO-1 task-5] BucCfoFKTGy4vd51HT7UGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:00.987 [XNIO-1 task-5] BucCfoFKTGy4vd51HT7UGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:00.990 [XNIO-1 task-5] qDicxBbMTRWzzGjrfHgTaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.990 [XNIO-1 task-5] qDicxBbMTRWzzGjrfHgTaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:00.990 [XNIO-1 task-5] qDicxBbMTRWzzGjrfHgTaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:00.990 [XNIO-1 task-5] qDicxBbMTRWzzGjrfHgTaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:00.996 [XNIO-1 task-5] qDicxBbMTRWzzGjrfHgTaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.001 [XNIO-1 task-5] l5xxzKG1SwqVscXthhtvWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.001 [XNIO-1 task-5] l5xxzKG1SwqVscXthhtvWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.001 [XNIO-1 task-5] l5xxzKG1SwqVscXthhtvWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.001 [XNIO-1 task-5] l5xxzKG1SwqVscXthhtvWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.007 [XNIO-1 task-5] l5xxzKG1SwqVscXthhtvWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.012 [XNIO-1 task-5] XblBLDY8RLucdDt3PdIfEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.012 [XNIO-1 task-5] XblBLDY8RLucdDt3PdIfEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.012 [XNIO-1 task-5] XblBLDY8RLucdDt3PdIfEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.012 [XNIO-1 task-5] XblBLDY8RLucdDt3PdIfEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.018 [XNIO-1 task-5] XblBLDY8RLucdDt3PdIfEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.022 [XNIO-1 task-5] v0czcvEMR3OaRWE0UhxonQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.022 [XNIO-1 task-5] v0czcvEMR3OaRWE0UhxonQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.023 [XNIO-1 task-5] v0czcvEMR3OaRWE0UhxonQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.023 [XNIO-1 task-5] v0czcvEMR3OaRWE0UhxonQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", authorization) +09:03:01.028 [XNIO-1 task-5] v0czcvEMR3OaRWE0UhxonQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.032 [XNIO-1 task-5] nLMC0nAdRTOoOLtg3b9n9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.032 [XNIO-1 task-5] nLMC0nAdRTOoOLtg3b9n9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.032 [XNIO-1 task-5] nLMC0nAdRTOoOLtg3b9n9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.033 [XNIO-1 task-5] nLMC0nAdRTOoOLtg3b9n9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.038 [XNIO-1 task-5] nLMC0nAdRTOoOLtg3b9n9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.042 [XNIO-1 task-5] hlYOnTDBS-mX-ZVdyyw1aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.042 [XNIO-1 task-5] hlYOnTDBS-mX-ZVdyyw1aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.042 [XNIO-1 task-5] hlYOnTDBS-mX-ZVdyyw1aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.042 [XNIO-1 task-5] hlYOnTDBS-mX-ZVdyyw1aA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.048 [XNIO-1 task-5] hlYOnTDBS-mX-ZVdyyw1aA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.055 [XNIO-1 task-5] zZpZDIOgToCmsee2KXX5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.055 [XNIO-1 task-5] zZpZDIOgToCmsee2KXX5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.055 [XNIO-1 task-5] zZpZDIOgToCmsee2KXX5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.055 [XNIO-1 task-5] zZpZDIOgToCmsee2KXX5ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.061 [XNIO-1 task-5] zZpZDIOgToCmsee2KXX5ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.064 [XNIO-1 task-5] qh8-1vcqTRK_VRilAte3Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.064 [XNIO-1 task-5] qh8-1vcqTRK_VRilAte3Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.065 [XNIO-1 task-5] qh8-1vcqTRK_VRilAte3Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.065 [XNIO-1 task-5] qh8-1vcqTRK_VRilAte3Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.070 [XNIO-1 task-5] qh8-1vcqTRK_VRilAte3Mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.074 [XNIO-1 task-5] FZINjqv3R1-QIAlehDDIlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.074 [XNIO-1 task-5] FZINjqv3R1-QIAlehDDIlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.074 [XNIO-1 task-5] FZINjqv3R1-QIAlehDDIlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.074 [XNIO-1 task-5] FZINjqv3R1-QIAlehDDIlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.080 [XNIO-1 task-5] FZINjqv3R1-QIAlehDDIlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.085 [XNIO-1 task-5] a-ppZr2STS6nPzHffXHN0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.085 [XNIO-1 task-5] a-ppZr2STS6nPzHffXHN0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.086 [XNIO-1 task-5] a-ppZr2STS6nPzHffXHN0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.086 [XNIO-1 task-5] a-ppZr2STS6nPzHffXHN0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGI2YWNhYTEtZDJjZS00NmU4LTkwMmItYzlmNTc1NmRhMDU3OkdFNm93aThiUmhDSE5Zb0lEam5JaHc=", "Basic MGI2YWNhYTEtZDJjZS00NmU4LTkwMmItYzlmNTc1NmRhMDU3OkdFNm93aThiUmhDSE5Zb0lEam5JaHc=", authorization) +09:03:01.092 [XNIO-1 task-5] a-ppZr2STS6nPzHffXHN0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.097 [XNIO-1 task-5] U-BoxXJuQFuExQY4mjqNeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.097 [XNIO-1 task-5] U-BoxXJuQFuExQY4mjqNeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.097 [XNIO-1 task-5] U-BoxXJuQFuExQY4mjqNeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.097 [XNIO-1 task-5] U-BoxXJuQFuExQY4mjqNeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", "Basic NTAwNDM1NjAtY2QzZC00NDUzLThkNTEtMzllYTEyMTM0MTU5OlFxX1VZSDFWUW5lMHhsb3BYSWVtM0E=", authorization) +09:03:01.103 [XNIO-1 task-5] U-BoxXJuQFuExQY4mjqNeA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.107 [XNIO-1 task-5] uypSyMfKSV-uR9AB5qVjSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.107 [XNIO-1 task-5] uypSyMfKSV-uR9AB5qVjSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.107 [XNIO-1 task-5] uypSyMfKSV-uR9AB5qVjSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.107 [XNIO-1 task-5] uypSyMfKSV-uR9AB5qVjSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:01.112 [XNIO-1 task-5] uypSyMfKSV-uR9AB5qVjSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.116 [XNIO-1 task-5] o9VIUMoVRJSaD-5TDu7RAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.116 [XNIO-1 task-5] o9VIUMoVRJSaD-5TDu7RAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.116 [XNIO-1 task-5] o9VIUMoVRJSaD-5TDu7RAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.116 [XNIO-1 task-5] o9VIUMoVRJSaD-5TDu7RAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDNkMTM2MjItNGNmZS00YjVhLWJhMWYtODAwMjdlOGUxOGM1OjBkOHQzZ2hJUVAtVDJUNUt3cG5DUUE=", "Basic MDNkMTM2MjItNGNmZS00YjVhLWJhMWYtODAwMjdlOGUxOGM1OjBkOHQzZ2hJUVAtVDJUNUt3cG5DUUE=", authorization) +09:03:01.122 [XNIO-1 task-5] o9VIUMoVRJSaD-5TDu7RAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.126 [XNIO-1 task-5] qHH_d9f2QRai4ovf2zstyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.127 [XNIO-1 task-5] qHH_d9f2QRai4ovf2zstyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.127 [XNIO-1 task-5] qHH_d9f2QRai4ovf2zstyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.127 [XNIO-1 task-5] qHH_d9f2QRai4ovf2zstyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:01.132 [XNIO-1 task-5] qHH_d9f2QRai4ovf2zstyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.136 [XNIO-1 task-5] qS_z3jOERf-DjdYn4nEP0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.137 [XNIO-1 task-5] qS_z3jOERf-DjdYn4nEP0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.137 [XNIO-1 task-5] qS_z3jOERf-DjdYn4nEP0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.137 [XNIO-1 task-5] qS_z3jOERf-DjdYn4nEP0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:01.142 [XNIO-1 task-5] qS_z3jOERf-DjdYn4nEP0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.148 [XNIO-1 task-5] kV-OusGER2qeNuN57kxrGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.148 [XNIO-1 task-5] kV-OusGER2qeNuN57kxrGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.148 [XNIO-1 task-5] kV-OusGER2qeNuN57kxrGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.148 [XNIO-1 task-5] kV-OusGER2qeNuN57kxrGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:01.154 [XNIO-1 task-5] kV-OusGER2qeNuN57kxrGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.157 [XNIO-1 task-5] aU5LYDgtSROwrE7bLYd3Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.157 [XNIO-1 task-5] aU5LYDgtSROwrE7bLYd3Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.158 [XNIO-1 task-5] aU5LYDgtSROwrE7bLYd3Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.158 [XNIO-1 task-5] aU5LYDgtSROwrE7bLYd3Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:01.163 [XNIO-1 task-5] aU5LYDgtSROwrE7bLYd3Yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.170 [XNIO-1 task-5] jVmf6w6GR3yJylQRUGloqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.170 [XNIO-1 task-5] jVmf6w6GR3yJylQRUGloqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.171 [XNIO-1 task-5] jVmf6w6GR3yJylQRUGloqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.171 [XNIO-1 task-5] jVmf6w6GR3yJylQRUGloqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.176 [XNIO-1 task-5] jVmf6w6GR3yJylQRUGloqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.180 [XNIO-1 task-5] -f-eG4dZRXiiWPupVMnFGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.180 [XNIO-1 task-5] -f-eG4dZRXiiWPupVMnFGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.180 [XNIO-1 task-5] -f-eG4dZRXiiWPupVMnFGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.180 [XNIO-1 task-5] -f-eG4dZRXiiWPupVMnFGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.185 [XNIO-1 task-5] -f-eG4dZRXiiWPupVMnFGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.190 [XNIO-1 task-5] yVkdn9skTVqOBqJxhITzRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.190 [XNIO-1 task-5] yVkdn9skTVqOBqJxhITzRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.191 [XNIO-1 task-5] yVkdn9skTVqOBqJxhITzRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.191 [XNIO-1 task-5] yVkdn9skTVqOBqJxhITzRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.196 [XNIO-1 task-5] yVkdn9skTVqOBqJxhITzRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.201 [XNIO-1 task-5] C3fbIeAUTmejRmEyt0gTPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.201 [XNIO-1 task-5] C3fbIeAUTmejRmEyt0gTPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.201 [XNIO-1 task-5] C3fbIeAUTmejRmEyt0gTPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.201 [XNIO-1 task-5] C3fbIeAUTmejRmEyt0gTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.207 [XNIO-1 task-5] C3fbIeAUTmejRmEyt0gTPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.212 [XNIO-1 task-5] 9J7-vQ21Reuh5r_U_WCUlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.212 [XNIO-1 task-5] 9J7-vQ21Reuh5r_U_WCUlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.212 [XNIO-1 task-5] 9J7-vQ21Reuh5r_U_WCUlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.212 [XNIO-1 task-5] 9J7-vQ21Reuh5r_U_WCUlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.217 [XNIO-1 task-5] 9J7-vQ21Reuh5r_U_WCUlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.221 [XNIO-1 task-5] CRmCBbhRRkCoLCrTeC-vJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.221 [XNIO-1 task-5] CRmCBbhRRkCoLCrTeC-vJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.221 [XNIO-1 task-5] CRmCBbhRRkCoLCrTeC-vJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.221 [XNIO-1 task-5] CRmCBbhRRkCoLCrTeC-vJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:01.227 [XNIO-1 task-5] CRmCBbhRRkCoLCrTeC-vJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.230 [XNIO-1 task-5] Gr59KdtcRE2kvU4DgryJGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.230 [XNIO-1 task-5] Gr59KdtcRE2kvU4DgryJGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.230 [XNIO-1 task-5] Gr59KdtcRE2kvU4DgryJGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.230 [XNIO-1 task-5] Gr59KdtcRE2kvU4DgryJGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:01.236 [XNIO-1 task-5] Gr59KdtcRE2kvU4DgryJGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.240 [XNIO-1 task-5] BI1NaKAkSnax4aa3YzjonQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.240 [XNIO-1 task-5] BI1NaKAkSnax4aa3YzjonQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.241 [XNIO-1 task-5] BI1NaKAkSnax4aa3YzjonQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.241 [XNIO-1 task-5] BI1NaKAkSnax4aa3YzjonQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:01.246 [XNIO-1 task-5] BI1NaKAkSnax4aa3YzjonQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.251 [XNIO-1 task-5] Vsjx3j5QQISDQVgd-jxvwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.251 [XNIO-1 task-5] Vsjx3j5QQISDQVgd-jxvwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.251 [XNIO-1 task-5] Vsjx3j5QQISDQVgd-jxvwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.252 [XNIO-1 task-5] Vsjx3j5QQISDQVgd-jxvwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.257 [XNIO-1 task-5] Vsjx3j5QQISDQVgd-jxvwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.262 [XNIO-1 task-5] X2_6T5VZRX6CSj7WrNyDFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.262 [XNIO-1 task-5] X2_6T5VZRX6CSj7WrNyDFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.262 [XNIO-1 task-5] X2_6T5VZRX6CSj7WrNyDFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.262 [XNIO-1 task-5] X2_6T5VZRX6CSj7WrNyDFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:01.267 [XNIO-1 task-5] X2_6T5VZRX6CSj7WrNyDFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.271 [XNIO-1 task-5] H6UIOhaOTam4MbGQtVGQEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.271 [XNIO-1 task-5] H6UIOhaOTam4MbGQtVGQEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.271 [XNIO-1 task-5] H6UIOhaOTam4MbGQtVGQEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.272 [XNIO-1 task-5] H6UIOhaOTam4MbGQtVGQEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.277 [XNIO-1 task-5] H6UIOhaOTam4MbGQtVGQEg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.282 [XNIO-1 task-5] WKcdkQ_TTnSROaS-FKOkZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.282 [XNIO-1 task-5] WKcdkQ_TTnSROaS-FKOkZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.282 [XNIO-1 task-5] WKcdkQ_TTnSROaS-FKOkZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.282 [XNIO-1 task-5] WKcdkQ_TTnSROaS-FKOkZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.288 [XNIO-1 task-5] WKcdkQ_TTnSROaS-FKOkZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.291 [XNIO-1 task-5] 6w1tJoSJT3eG2J7xMILRqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.291 [XNIO-1 task-5] 6w1tJoSJT3eG2J7xMILRqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.292 [XNIO-1 task-5] 6w1tJoSJT3eG2J7xMILRqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.292 [XNIO-1 task-5] 6w1tJoSJT3eG2J7xMILRqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:01.297 [XNIO-1 task-5] 6w1tJoSJT3eG2J7xMILRqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.302 [XNIO-1 task-5] _7yXXWUdQoS3Z6ecPDL8GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.302 [XNIO-1 task-5] _7yXXWUdQoS3Z6ecPDL8GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.302 [XNIO-1 task-5] _7yXXWUdQoS3Z6ecPDL8GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.302 [XNIO-1 task-5] _7yXXWUdQoS3Z6ecPDL8GA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:01.308 [XNIO-1 task-5] _7yXXWUdQoS3Z6ecPDL8GA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.317 [XNIO-1 task-5] NzPz8DyiR5CLIr75QrhYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.318 [XNIO-1 task-5] NzPz8DyiR5CLIr75QrhYhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.318 [XNIO-1 task-5] NzPz8DyiR5CLIr75QrhYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.318 [XNIO-1 task-5] NzPz8DyiR5CLIr75QrhYhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:01.324 [XNIO-1 task-5] NzPz8DyiR5CLIr75QrhYhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.328 [XNIO-1 task-5] 4zulHPlOQZi7_wPynAGKNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.328 [XNIO-1 task-5] 4zulHPlOQZi7_wPynAGKNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.328 [XNIO-1 task-5] 4zulHPlOQZi7_wPynAGKNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.328 [XNIO-1 task-5] 4zulHPlOQZi7_wPynAGKNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:01.333 [XNIO-1 task-5] 4zulHPlOQZi7_wPynAGKNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.337 [XNIO-1 task-5] WoUwrA17T-eHX5OgcoVSrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.337 [XNIO-1 task-5] WoUwrA17T-eHX5OgcoVSrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.337 [XNIO-1 task-5] WoUwrA17T-eHX5OgcoVSrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.337 [XNIO-1 task-5] WoUwrA17T-eHX5OgcoVSrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:01.344 [XNIO-1 task-5] WoUwrA17T-eHX5OgcoVSrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.348 [XNIO-1 task-5] Dne0J8hiT66D-QzQg8rRxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.348 [XNIO-1 task-5] Dne0J8hiT66D-QzQg8rRxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.349 [XNIO-1 task-5] Dne0J8hiT66D-QzQg8rRxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.349 [XNIO-1 task-5] Dne0J8hiT66D-QzQg8rRxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:01.354 [XNIO-1 task-5] Dne0J8hiT66D-QzQg8rRxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.358 [XNIO-1 task-5] ys_aFmOSQbKyxKLF7S5xXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.359 [XNIO-1 task-5] ys_aFmOSQbKyxKLF7S5xXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.359 [XNIO-1 task-5] ys_aFmOSQbKyxKLF7S5xXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.359 [XNIO-1 task-5] ys_aFmOSQbKyxKLF7S5xXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:01.364 [XNIO-1 task-5] ys_aFmOSQbKyxKLF7S5xXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.368 [XNIO-1 task-5] 4cYWSC9NRhGH_rU1TYDfGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.368 [XNIO-1 task-5] 4cYWSC9NRhGH_rU1TYDfGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.368 [XNIO-1 task-5] 4cYWSC9NRhGH_rU1TYDfGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.368 [XNIO-1 task-5] 4cYWSC9NRhGH_rU1TYDfGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:01.374 [XNIO-1 task-5] 4cYWSC9NRhGH_rU1TYDfGQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.379 [XNIO-1 task-5] WGCTxRI2Qk6PxmFfBGZO5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.380 [XNIO-1 task-5] WGCTxRI2Qk6PxmFfBGZO5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.380 [XNIO-1 task-5] WGCTxRI2Qk6PxmFfBGZO5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.380 [XNIO-1 task-5] WGCTxRI2Qk6PxmFfBGZO5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:01.385 [XNIO-1 task-5] WGCTxRI2Qk6PxmFfBGZO5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.390 [XNIO-1 task-5] KiXZJ4LkRlWXu-uwJVsCmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.390 [XNIO-1 task-5] KiXZJ4LkRlWXu-uwJVsCmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.390 [XNIO-1 task-5] KiXZJ4LkRlWXu-uwJVsCmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.390 [XNIO-1 task-5] KiXZJ4LkRlWXu-uwJVsCmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:01.395 [XNIO-1 task-5] KiXZJ4LkRlWXu-uwJVsCmA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.405 [XNIO-1 task-6] cDWue66dTyiZRLL7tMmNLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.405 [XNIO-1 task-4] nhFvm-UDSKucjvkHijf6Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.405 [XNIO-1 task-4] nhFvm-UDSKucjvkHijf6Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.405 [XNIO-1 task-4] nhFvm-UDSKucjvkHijf6Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.405 [XNIO-1 task-6] cDWue66dTyiZRLL7tMmNLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.405 [XNIO-1 task-4] nhFvm-UDSKucjvkHijf6Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.406 [XNIO-1 task-6] cDWue66dTyiZRLL7tMmNLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", authorization) +09:03:01.406 [XNIO-1 task-6] cDWue66dTyiZRLL7tMmNLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1332a8f6-a934-4190-b6b0-33fb17f9e3dc scope = null +09:03:01.411 [XNIO-1 task-4] nhFvm-UDSKucjvkHijf6Gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.414 [XNIO-1 task-6] cDWue66dTyiZRLL7tMmNLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.417 [XNIO-1 task-4] HPx67GadRZyETK-pPCYdqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.418 [XNIO-1 task-4] HPx67GadRZyETK-pPCYdqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.418 [XNIO-1 task-4] HPx67GadRZyETK-pPCYdqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.418 [XNIO-1 task-4] HPx67GadRZyETK-pPCYdqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGI2YWNhYTEtZDJjZS00NmU4LTkwMmItYzlmNTc1NmRhMDU3OkdFNm93aThiUmhDSE5Zb0lEam5JaHc=", "Basic MGI2YWNhYTEtZDJjZS00NmU4LTkwMmItYzlmNTc1NmRhMDU3OkdFNm93aThiUmhDSE5Zb0lEam5JaHc=", authorization) +09:03:01.419 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6b18ec6c +09:03:01.422 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6b18ec6c +09:03:01.426 [XNIO-1 task-4] HPx67GadRZyETK-pPCYdqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.430 [XNIO-1 task-4] VPkKHMaPRnuBjMS2cESg4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.430 [XNIO-1 task-4] VPkKHMaPRnuBjMS2cESg4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.430 [XNIO-1 task-4] VPkKHMaPRnuBjMS2cESg4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.430 [XNIO-1 task-4] VPkKHMaPRnuBjMS2cESg4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cmhTcZ6fQCq5SQc9JZAtzA redirectUri = http://localhost:8080/authorization +09:03:01.435 [XNIO-1 task-6] 6Efj9WxmTSi7q4AuNDlOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.435 [XNIO-1 task-6] 6Efj9WxmTSi7q4AuNDlOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.435 [XNIO-1 task-6] 6Efj9WxmTSi7q4AuNDlOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.435 [XNIO-1 task-6] 6Efj9WxmTSi7q4AuNDlOtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.440 [XNIO-1 task-6] 6Efj9WxmTSi7q4AuNDlOtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.441 [XNIO-1 task-4] VPkKHMaPRnuBjMS2cESg4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.450 [XNIO-1 task-4] wxVgYPn9RBOIcPPK7SxNgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.450 [XNIO-1 task-4] wxVgYPn9RBOIcPPK7SxNgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.450 [XNIO-1 task-4] wxVgYPn9RBOIcPPK7SxNgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.451 [XNIO-1 task-4] wxVgYPn9RBOIcPPK7SxNgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:01.456 [XNIO-1 task-4] wxVgYPn9RBOIcPPK7SxNgQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.457 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:41971637 +09:03:01.462 [XNIO-1 task-4] NeOcZ8XqTHa13isIufx17A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.462 [XNIO-1 task-4] NeOcZ8XqTHa13isIufx17A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.462 [XNIO-1 task-4] NeOcZ8XqTHa13isIufx17A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.462 [XNIO-1 task-4] NeOcZ8XqTHa13isIufx17A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:01.467 [XNIO-1 task-4] NeOcZ8XqTHa13isIufx17A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.469 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6b18ec6c +09:03:01.470 [XNIO-1 task-4] NVDM055PS7e7ZsE2W9mONg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.470 [XNIO-1 task-4] NVDM055PS7e7ZsE2W9mONg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.470 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6b18ec6c +09:03:01.470 [XNIO-1 task-6] uA2-l8xwSGazZ_45T1RUvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.470 [XNIO-1 task-6] uA2-l8xwSGazZ_45T1RUvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.470 [XNIO-1 task-6] uA2-l8xwSGazZ_45T1RUvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", authorization) +09:03:01.472 [XNIO-1 task-5] h1x7bkwqTvWu2nYdotaLCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.473 [XNIO-1 task-5] h1x7bkwqTvWu2nYdotaLCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.473 [XNIO-1 task-5] h1x7bkwqTvWu2nYdotaLCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.473 [XNIO-1 task-5] h1x7bkwqTvWu2nYdotaLCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:01.476 [XNIO-1 task-4] NVDM055PS7e7ZsE2W9mONg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.476 [XNIO-1 task-4] NVDM055PS7e7ZsE2W9mONg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", authorization) +09:03:01.477 [XNIO-1 task-6] uA2-l8xwSGazZ_45T1RUvg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:01.477 [XNIO-1 task-6] uA2-l8xwSGazZ_45T1RUvg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.479 [XNIO-1 task-5] h1x7bkwqTvWu2nYdotaLCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.484 [XNIO-1 task-4] NVDM055PS7e7ZsE2W9mONg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.487 [XNIO-1 task-6] S0fYbHssRPex-MdztkJ7LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.487 [XNIO-1 task-6] S0fYbHssRPex-MdztkJ7LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.488 [XNIO-1 task-6] S0fYbHssRPex-MdztkJ7LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.488 [XNIO-1 task-6] S0fYbHssRPex-MdztkJ7LA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", "Basic MmZiZmQ5MWQtYmRjNC00Yzk1LTg0MTctN2M2NTU2YjA0ZWI0Om5icFJjaDBaU2JxUFZpMXpMMExBcEE=", authorization) +09:03:01.489 [XNIO-1 task-5] jPnapWclTx6RQZf4v6ic7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.490 [XNIO-1 task-5] jPnapWclTx6RQZf4v6ic7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.490 [XNIO-1 task-5] jPnapWclTx6RQZf4v6ic7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.490 [XNIO-1 task-5] jPnapWclTx6RQZf4v6ic7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", "Basic MTA1N2U4OTAtNTBiYi00NTJlLWIzZGItZTc2MDIzMDA5OWJkOmpZaU0yOHhwUUJDWDhCRmFGUEN0T3c=", authorization) +09:03:01.493 [XNIO-1 task-6] S0fYbHssRPex-MdztkJ7LA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.500 [XNIO-1 task-5] jPnapWclTx6RQZf4v6ic7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.501 [XNIO-1 task-4] SQLj7gdDSDi6Bz4v-GYWuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.501 [XNIO-1 task-4] SQLj7gdDSDi6Bz4v-GYWuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.501 [XNIO-1 task-4] SQLj7gdDSDi6Bz4v-GYWuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.501 [XNIO-1 task-4] SQLj7gdDSDi6Bz4v-GYWuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", "Basic NDllYjA4ZDctNTdjZi00MjE4LWE0MzEtY2IzN2NmMDEzZjRkOkpEUVI4TnZ2UW9DV25xVnAxN3FqZXc=", authorization) +09:03:01.506 [XNIO-1 task-4] SQLj7gdDSDi6Bz4v-GYWuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.513 [XNIO-1 task-5] hI-_3paVSVubvC4T25JSPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.513 [XNIO-1 task-5] hI-_3paVSVubvC4T25JSPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.513 [XNIO-1 task-5] hI-_3paVSVubvC4T25JSPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.514 [XNIO-1 task-5] hI-_3paVSVubvC4T25JSPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:01.514 [XNIO-1 task-4] qwnsvUOFRAKVty3Mp4iQPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.515 [XNIO-1 task-4] qwnsvUOFRAKVty3Mp4iQPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.515 [XNIO-1 task-4] qwnsvUOFRAKVty3Mp4iQPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.515 [XNIO-1 task-4] qwnsvUOFRAKVty3Mp4iQPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +09:03:01.519 [XNIO-1 task-5] hI-_3paVSVubvC4T25JSPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.520 [XNIO-1 task-4] qwnsvUOFRAKVty3Mp4iQPw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:03:01.524 [XNIO-1 task-5] Kd3WzqeYQ9iNqhfI_2K2wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.525 [XNIO-1 task-5] Kd3WzqeYQ9iNqhfI_2K2wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.525 [XNIO-1 task-5] Kd3WzqeYQ9iNqhfI_2K2wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.526 [XNIO-1 task-5] Kd3WzqeYQ9iNqhfI_2K2wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:01.530 [XNIO-1 task-4] q6aTEOGHQa6-2beMWqpe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.530 [XNIO-1 task-4] q6aTEOGHQa6-2beMWqpe4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.531 [XNIO-1 task-4] q6aTEOGHQa6-2beMWqpe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.531 [XNIO-1 task-4] q6aTEOGHQa6-2beMWqpe4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.532 [XNIO-1 task-5] Kd3WzqeYQ9iNqhfI_2K2wQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:01.532 [XNIO-1 task-5] Kd3WzqeYQ9iNqhfI_2K2wQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.538 [XNIO-1 task-4] q6aTEOGHQa6-2beMWqpe4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.542 [XNIO-1 task-5] rlLKtbdHSZmWW4NojYhmSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.542 [XNIO-1 task-5] rlLKtbdHSZmWW4NojYhmSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.542 [XNIO-1 task-5] rlLKtbdHSZmWW4NojYhmSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.542 [XNIO-1 task-5] rlLKtbdHSZmWW4NojYhmSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.545 [XNIO-1 task-4] MNAhy_wvRVuTUS6IiKwu4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.545 [XNIO-1 task-4] MNAhy_wvRVuTUS6IiKwu4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.545 [XNIO-1 task-4] MNAhy_wvRVuTUS6IiKwu4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.545 [XNIO-1 task-4] MNAhy_wvRVuTUS6IiKwu4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 27c1b790-6561-419e-a979-7d670fbc51bb scope = null +09:03:01.548 [XNIO-1 task-5] rlLKtbdHSZmWW4NojYhmSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.552 [XNIO-1 task-5] V3MEaR8ASciZV4RQeg4lpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.553 [XNIO-1 task-5] V3MEaR8ASciZV4RQeg4lpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.553 [XNIO-1 task-5] V3MEaR8ASciZV4RQeg4lpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.553 [XNIO-1 task-5] V3MEaR8ASciZV4RQeg4lpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.555 [XNIO-1 task-4] MNAhy_wvRVuTUS6IiKwu4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.558 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c065adbe-3bf6-4ca6-8bcb-b931a8770296 +09:03:01.558 [XNIO-1 task-5] V3MEaR8ASciZV4RQeg4lpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.562 [XNIO-1 task-5] pVCCsxC7SEutQFtDy92ajA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.562 [XNIO-1 task-5] pVCCsxC7SEutQFtDy92ajA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.562 [XNIO-1 task-5] pVCCsxC7SEutQFtDy92ajA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.562 [XNIO-1 task-5] pVCCsxC7SEutQFtDy92ajA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", authorization) +09:03:01.568 [XNIO-1 task-4] fncgS479RyepZ5LJJudNPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.568 [XNIO-1 task-4] fncgS479RyepZ5LJJudNPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.568 [XNIO-1 task-5] pVCCsxC7SEutQFtDy92ajA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.568 [XNIO-1 task-4] fncgS479RyepZ5LJJudNPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.571 [XNIO-1 task-4] fncgS479RyepZ5LJJudNPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.571 [XNIO-1 task-4] fncgS479RyepZ5LJJudNPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.573 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3a8d71d6 +09:03:01.580 [XNIO-1 task-4] fncgS479RyepZ5LJJudNPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.590 [XNIO-1 task-4] 75O1MFPBRnGS8SUcvi4rpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.590 [XNIO-1 task-4] 75O1MFPBRnGS8SUcvi4rpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.590 [XNIO-1 task-5] BlV8EYSMQ-mS7fLx8qxRGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.590 [XNIO-1 task-4] 75O1MFPBRnGS8SUcvi4rpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.591 [XNIO-1 task-5] BlV8EYSMQ-mS7fLx8qxRGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.591 [XNIO-1 task-4] 75O1MFPBRnGS8SUcvi4rpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.591 [XNIO-1 task-4] 75O1MFPBRnGS8SUcvi4rpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.591 [XNIO-1 task-4] 75O1MFPBRnGS8SUcvi4rpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.597 [XNIO-1 task-4] 75O1MFPBRnGS8SUcvi4rpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.598 [XNIO-1 task-5] BlV8EYSMQ-mS7fLx8qxRGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.600 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b24b84a6-41be-474a-82d9-d2dbadbef4fa +09:03:01.602 [XNIO-1 task-4] o6KMVvW5RyKVWOr55dTFyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.602 [XNIO-1 task-4] o6KMVvW5RyKVWOr55dTFyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.602 [XNIO-1 task-4] o6KMVvW5RyKVWOr55dTFyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.602 [XNIO-1 task-4] o6KMVvW5RyKVWOr55dTFyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.607 [XNIO-1 task-4] o6KMVvW5RyKVWOr55dTFyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.609 [XNIO-1 task-5] ow7XWs29Q3WuR6texZkq0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.609 [XNIO-1 task-6] VoqHw3--SPe75Gq_BTTYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.609 [XNIO-1 task-6] VoqHw3--SPe75Gq_BTTYHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.609 [XNIO-1 task-6] VoqHw3--SPe75Gq_BTTYHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.609 [XNIO-1 task-5] ow7XWs29Q3WuR6texZkq0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.609 [XNIO-1 task-6] VoqHw3--SPe75Gq_BTTYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.609 [XNIO-1 task-5] ow7XWs29Q3WuR6texZkq0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", authorization) +09:03:01.609 [XNIO-1 task-5] ow7XWs29Q3WuR6texZkq0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uPV7fiVnTuab-VTGQBKTcg redirectUri = http://localhost:8080/authorization +09:03:01.614 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b24b84a6-41be-474a-82d9-d2dbadbef4fa +09:03:01.615 [XNIO-1 task-5] ow7XWs29Q3WuR6texZkq0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.617 [XNIO-1 task-4] DiAu0fhSQcm4kGsQCFLtMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.617 [XNIO-1 task-4] DiAu0fhSQcm4kGsQCFLtMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.617 [XNIO-1 task-4] DiAu0fhSQcm4kGsQCFLtMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.617 [XNIO-1 task-4] DiAu0fhSQcm4kGsQCFLtMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.618 [XNIO-1 task-6] VoqHw3--SPe75Gq_BTTYHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.625 [XNIO-1 task-4] DiAu0fhSQcm4kGsQCFLtMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.629 [XNIO-1 task-4] qlc7xznCTVytCJTd1Fsj8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.629 [XNIO-1 task-4] qlc7xznCTVytCJTd1Fsj8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.629 [XNIO-1 task-4] qlc7xznCTVytCJTd1Fsj8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.629 [XNIO-1 task-4] qlc7xznCTVytCJTd1Fsj8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:01.634 [XNIO-1 task-6] UTdaoIHGRBWNRklA5EAo3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.634 [XNIO-1 task-6] UTdaoIHGRBWNRklA5EAo3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.634 [XNIO-1 task-6] UTdaoIHGRBWNRklA5EAo3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.634 [XNIO-1 task-6] UTdaoIHGRBWNRklA5EAo3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.634 [XNIO-1 task-6] UTdaoIHGRBWNRklA5EAo3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.639 [XNIO-1 task-6] UTdaoIHGRBWNRklA5EAo3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.641 [XNIO-1 task-4] qlc7xznCTVytCJTd1Fsj8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.642 [XNIO-1 task-6] F9s3dW1ZRvibcra8pWwWLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.643 [XNIO-1 task-6] F9s3dW1ZRvibcra8pWwWLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.643 [XNIO-1 task-6] F9s3dW1ZRvibcra8pWwWLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.643 [XNIO-1 task-6] F9s3dW1ZRvibcra8pWwWLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.646 [XNIO-1 task-5] pIgQmO4ORU2U24Jv7a5QzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.646 [XNIO-1 task-5] pIgQmO4ORU2U24Jv7a5QzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.646 [XNIO-1 task-5] pIgQmO4ORU2U24Jv7a5QzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.646 [XNIO-1 task-5] pIgQmO4ORU2U24Jv7a5QzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = aNZ0vtblQ9OYCxS66q1SAQ redirectUri = http://localhost:8080/authorization +09:03:01.648 [XNIO-1 task-6] F9s3dW1ZRvibcra8pWwWLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.652 [XNIO-1 task-4] wj3ukx4jQqypbOTgbVsv-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.652 [XNIO-1 task-4] wj3ukx4jQqypbOTgbVsv-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.652 [XNIO-1 task-4] wj3ukx4jQqypbOTgbVsv-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.652 [XNIO-1 task-4] wj3ukx4jQqypbOTgbVsv-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.654 [XNIO-1 task-5] pIgQmO4ORU2U24Jv7a5QzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.656 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3b4e1be1-b104-4ae1-acb1-c00bfabe41ae +09:03:01.657 [XNIO-1 task-4] wj3ukx4jQqypbOTgbVsv-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.662 [XNIO-1 task-5] PCywQwgnTh28ykuuR5pSpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.662 [XNIO-1 task-5] PCywQwgnTh28ykuuR5pSpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.662 [XNIO-1 task-5] PCywQwgnTh28ykuuR5pSpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.662 [XNIO-1 task-5] PCywQwgnTh28ykuuR5pSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.664 [XNIO-1 task-4] nVUKN6T7QtK1QoOgHOODLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.664 [XNIO-1 task-6] T4ZySgO0SlaD2RIGcvDIHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.664 [XNIO-1 task-6] T4ZySgO0SlaD2RIGcvDIHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.664 [XNIO-1 task-6] T4ZySgO0SlaD2RIGcvDIHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.664 [XNIO-1 task-6] T4ZySgO0SlaD2RIGcvDIHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3b4e1be1-b104-4ae1-acb1-c00bfabe41ae scope = null +09:03:01.667 [XNIO-1 task-5] PCywQwgnTh28ykuuR5pSpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.669 [XNIO-1 task-4] nVUKN6T7QtK1QoOgHOODLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.669 [XNIO-1 task-4] nVUKN6T7QtK1QoOgHOODLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.669 [XNIO-1 task-4] nVUKN6T7QtK1QoOgHOODLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.669 [XNIO-1 task-4] nVUKN6T7QtK1QoOgHOODLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jpb-hdIcQuizd1EEajSBUQ redirectUri = http://localhost:8080/authorization +09:03:01.672 [XNIO-1 task-6] T4ZySgO0SlaD2RIGcvDIHg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.673 [XNIO-1 task-5] sJMUaUCkTmeWA5gZKfK9sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.673 [XNIO-1 task-5] sJMUaUCkTmeWA5gZKfK9sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.673 [XNIO-1 task-5] sJMUaUCkTmeWA5gZKfK9sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.673 [XNIO-1 task-5] sJMUaUCkTmeWA5gZKfK9sg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.675 [XNIO-1 task-4] nVUKN6T7QtK1QoOgHOODLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.678 [XNIO-1 task-5] sJMUaUCkTmeWA5gZKfK9sg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.679 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1d174254-54ee-4849-a174-de2937d0fa19 +09:03:01.680 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1d174254-54ee-4849-a174-de2937d0fa19 +09:03:01.689 [XNIO-1 task-4] W4Qy16O1RiG7CDlRuI2B6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.689 [XNIO-1 task-4] W4Qy16O1RiG7CDlRuI2B6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.689 [XNIO-1 task-4] W4Qy16O1RiG7CDlRuI2B6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.690 [XNIO-1 task-4] W4Qy16O1RiG7CDlRuI2B6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.695 [XNIO-1 task-4] W4Qy16O1RiG7CDlRuI2B6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.700 [XNIO-1 task-4] nTBjjvnaRwyWkArB5vfbSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.701 [XNIO-1 task-4] nTBjjvnaRwyWkArB5vfbSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.701 [XNIO-1 task-4] nTBjjvnaRwyWkArB5vfbSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.701 [XNIO-1 task-4] nTBjjvnaRwyWkArB5vfbSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.704 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6e005732 +09:03:01.706 [XNIO-1 task-4] nTBjjvnaRwyWkArB5vfbSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.712 [XNIO-1 task-4] Oc04LdGiRh6nVQtzOJbCjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.713 [XNIO-1 task-4] Oc04LdGiRh6nVQtzOJbCjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.713 [XNIO-1 task-4] Oc04LdGiRh6nVQtzOJbCjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.713 [XNIO-1 task-4] Oc04LdGiRh6nVQtzOJbCjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", authorization) +09:03:01.716 [XNIO-1 task-5] g54zTeA-TOWDiPOic42_Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.716 [XNIO-1 task-5] g54zTeA-TOWDiPOic42_Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.717 [XNIO-1 task-5] g54zTeA-TOWDiPOic42_Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.717 [XNIO-1 task-5] g54zTeA-TOWDiPOic42_Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:01.719 [XNIO-1 task-4] Oc04LdGiRh6nVQtzOJbCjw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.722 [XNIO-1 task-5] g54zTeA-TOWDiPOic42_Bg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:01.723 [XNIO-1 task-5] g54zTeA-TOWDiPOic42_Bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.727 [XNIO-1 task-4] 9JsRCCESSLS8qbBF4-dW_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.727 [XNIO-1 task-4] 9JsRCCESSLS8qbBF4-dW_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.727 [XNIO-1 task-4] 9JsRCCESSLS8qbBF4-dW_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.727 [XNIO-1 task-4] 9JsRCCESSLS8qbBF4-dW_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.733 [XNIO-1 task-4] 9JsRCCESSLS8qbBF4-dW_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.738 [XNIO-1 task-4] 9Eb-28xMTjuat3rUYmjjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.738 [XNIO-1 task-4] 9Eb-28xMTjuat3rUYmjjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.739 [XNIO-1 task-4] 9Eb-28xMTjuat3rUYmjjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.740 [XNIO-1 task-4] 9Eb-28xMTjuat3rUYmjjjw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.746 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b1e4a137 +09:03:01.748 [XNIO-1 task-4] 9Eb-28xMTjuat3rUYmjjjw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.758 [XNIO-1 task-4] w3fVSpphQl2kB6DlqKia9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.759 [XNIO-1 task-4] w3fVSpphQl2kB6DlqKia9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.759 [XNIO-1 task-4] w3fVSpphQl2kB6DlqKia9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.759 [XNIO-1 task-4] w3fVSpphQl2kB6DlqKia9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1YTlkYjYtY2Q4Zi00Mzc3LWFkMzktMGUyNWVkMmE3YWI0OnNhUGVPUGtzUkZxaVpSZ0ozcFV2TWc=", "Basic MTg1YTlkYjYtY2Q4Zi00Mzc3LWFkMzktMGUyNWVkMmE3YWI0OnNhUGVPUGtzUkZxaVpSZ0ozcFV2TWc=", authorization) +09:03:01.761 [XNIO-1 task-5] xVIJ_Nw5Ry2XIkHCDx6o0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.761 [XNIO-1 task-5] xVIJ_Nw5Ry2XIkHCDx6o0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.761 [XNIO-1 task-5] xVIJ_Nw5Ry2XIkHCDx6o0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.762 [XNIO-1 task-5] xVIJ_Nw5Ry2XIkHCDx6o0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.765 [XNIO-1 task-4] w3fVSpphQl2kB6DlqKia9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.767 [XNIO-1 task-5] xVIJ_Nw5Ry2XIkHCDx6o0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:01.768 [XNIO-1 task-5] xVIJ_Nw5Ry2XIkHCDx6o0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.768 [XNIO-1 task-4] baIXNh4kR36Boy56qbAp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.768 [XNIO-1 task-4] baIXNh4kR36Boy56qbAp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.768 [XNIO-1 task-4] baIXNh4kR36Boy56qbAp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.769 [XNIO-1 task-4] baIXNh4kR36Boy56qbAp1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YyawxATsQXuZAvo-tCseiA redirectUri = http://localhost:8080/authorization +09:03:01.774 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b1e4a137 +09:03:01.775 [XNIO-1 task-5] QDFIXKtgSFqX33E83FHOCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.775 [XNIO-1 task-5] QDFIXKtgSFqX33E83FHOCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.775 [XNIO-1 task-4] baIXNh4kR36Boy56qbAp1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.775 [XNIO-1 task-5] QDFIXKtgSFqX33E83FHOCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.775 [XNIO-1 task-5] QDFIXKtgSFqX33E83FHOCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", authorization) +09:03:01.778 [XNIO-1 task-6] tIzLPwU2SsaHFp-2CjBQGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.778 [XNIO-1 task-6] tIzLPwU2SsaHFp-2CjBQGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.778 [XNIO-1 task-6] tIzLPwU2SsaHFp-2CjBQGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.778 [XNIO-1 task-6] tIzLPwU2SsaHFp-2CjBQGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.780 [XNIO-1 task-5] QDFIXKtgSFqX33E83FHOCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.782 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:39fda913-6015-478d-b141-985d4f37c70c +09:03:01.783 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:39fda913-6015-478d-b141-985d4f37c70c +09:03:01.787 [XNIO-1 task-5] gZfCs2vdSbiF5xUq7kUK1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.787 [XNIO-1 task-5] gZfCs2vdSbiF5xUq7kUK1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.787 [XNIO-1 task-5] gZfCs2vdSbiF5xUq7kUK1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.787 [XNIO-1 task-5] gZfCs2vdSbiF5xUq7kUK1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", authorization) +09:03:01.790 [XNIO-1 task-6] tIzLPwU2SsaHFp-2CjBQGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.793 [XNIO-1 task-5] gZfCs2vdSbiF5xUq7kUK1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.796 [XNIO-1 task-5] XIkrdm5uR82VdaResErX7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.796 [XNIO-1 task-5] XIkrdm5uR82VdaResErX7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.796 [XNIO-1 task-5] XIkrdm5uR82VdaResErX7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.797 [XNIO-1 task-5] XIkrdm5uR82VdaResErX7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:01.802 [XNIO-1 task-5] XIkrdm5uR82VdaResErX7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.807 [XNIO-1 task-6] FQzjMR6-SY6QY6yq9s7Qug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.807 [XNIO-1 task-6] FQzjMR6-SY6QY6yq9s7Qug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.807 [XNIO-1 task-6] FQzjMR6-SY6QY6yq9s7Qug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.807 [XNIO-1 task-6] FQzjMR6-SY6QY6yq9s7Qug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:01.809 [XNIO-1 task-5] zKnOfyXhRUqC1Gt1COw7Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.809 [XNIO-1 task-5] zKnOfyXhRUqC1Gt1COw7Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.809 [XNIO-1 task-5] zKnOfyXhRUqC1Gt1COw7Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.809 [XNIO-1 task-5] zKnOfyXhRUqC1Gt1COw7Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:01.813 [XNIO-1 task-6] FQzjMR6-SY6QY6yq9s7Qug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +Jun 29, 2024 9:03:02 AM com.hazelcast.map.impl.operation.DeleteOperation +09:03:01.819 [XNIO-1 task-5] zKnOfyXhRUqC1Gt1COw7Ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.819 [XNIO-1 task-5] zKnOfyXhRUqC1Gt1COw7Ug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.823 [XNIO-1 task-6] HrATYFOoTwCnYuvzq1qJ_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +09:03:01.830 [XNIO-1 task-5] gvaWaBKCSXih9TZ6ORsCPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.831 [XNIO-1 task-5] gvaWaBKCSXih9TZ6ORsCPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.831 [XNIO-1 task-5] gvaWaBKCSXih9TZ6ORsCPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:03:01.837 [XNIO-1 task-5] gvaWaBKCSXih9TZ6ORsCPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.838 [XNIO-1 task-6] Oo02SLSXTHCONM7u1ib62Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.838 [XNIO-1 task-6] Oo02SLSXTHCONM7u1ib62Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.838 [XNIO-1 task-6] Oo02SLSXTHCONM7u1ib62Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.838 [XNIO-1 task-6] Oo02SLSXTHCONM7u1ib62Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", authorization) +09:03:01.844 [XNIO-1 task-6] Oo02SLSXTHCONM7u1ib62Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.848 [XNIO-1 task-6] Hcbtuh1mRTWVBfwt_FepTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.849 [XNIO-1 task-6] Hcbtuh1mRTWVBfwt_FepTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.849 [XNIO-1 task-6] Hcbtuh1mRTWVBfwt_FepTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.849 [XNIO-1 task-6] Hcbtuh1mRTWVBfwt_FepTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", authorization) +09:03:01.854 [XNIO-1 task-6] Hcbtuh1mRTWVBfwt_FepTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.859 [XNIO-1 task-6] pAFl22kPSOqLDAP0WW_qWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.859 [XNIO-1 task-6] pAFl22kPSOqLDAP0WW_qWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.859 [XNIO-1 task-6] pAFl22kPSOqLDAP0WW_qWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.859 [XNIO-1 task-6] pAFl22kPSOqLDAP0WW_qWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", authorization) +09:03:01.864 [XNIO-1 task-6] pAFl22kPSOqLDAP0WW_qWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.867 [XNIO-1 task-6] t9UqXXInTiOSB7XfrvgiHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.867 [XNIO-1 task-6] t9UqXXInTiOSB7XfrvgiHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.867 [XNIO-1 task-6] t9UqXXInTiOSB7XfrvgiHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.867 [XNIO-1 task-6] t9UqXXInTiOSB7XfrvgiHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", authorization) +09:03:01.900 [XNIO-1 task-6] t9UqXXInTiOSB7XfrvgiHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.907 [XNIO-1 task-6] bkv24oHsSRSSJuL6d5CmAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.908 [XNIO-1 task-6] bkv24oHsSRSSJuL6d5CmAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.909 [XNIO-1 task-5] gxKLvXwrQDyOmnnE7Mnuuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.910 [XNIO-1 task-5] gxKLvXwrQDyOmnnE7Mnuuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.910 [XNIO-1 task-5] gxKLvXwrQDyOmnnE7Mnuuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.910 [XNIO-1 task-6] bkv24oHsSRSSJuL6d5CmAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.910 [XNIO-1 task-6] bkv24oHsSRSSJuL6d5CmAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.910 [XNIO-1 task-6] bkv24oHsSRSSJuL6d5CmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQyZWMzZDgtYzFkMy00MmExLTljZWYtYTZmMzc1MDZiOWQ3OnJZT2VMTUl1UWxLV1EzcDNDcUJPZnc=", "Basic YzQyZWMzZDgtYzFkMy00MmExLTljZWYtYTZmMzc1MDZiOWQ3OnJZT2VMTUl1UWxLV1EzcDNDcUJPZnc=", authorization) +09:03:01.911 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6e005732 +09:03:01.915 [XNIO-1 task-5] gxKLvXwrQDyOmnnE7Mnuuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.917 [XNIO-1 task-6] bkv24oHsSRSSJuL6d5CmAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:01.917 [XNIO-1 task-6] bkv24oHsSRSSJuL6d5CmAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.922 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.922 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.922 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.922 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.922 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.922 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.923 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1YTlkYjYtY2Q4Zi00Mzc3LWFkMzktMGUyNWVkMmE3YWI0OnNhUGVPUGtzUkZxaVpSZ0ozcFV2TWc=", "Basic MTg1YTlkYjYtY2Q4Zi00Mzc3LWFkMzktMGUyNWVkMmE3YWI0OnNhUGVPUGtzUkZxaVpSZ0ozcFV2TWc=", authorization) +09:03:01.923 [XNIO-1 task-5] WasZUDVsShW2vB6w3-rV1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = NdActFZ2S_Wm3p6LtblGMg redirectUri = http://localhost:8080/authorization +09:03:01.928 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.928 [XNIO-1 task-4] Um_46-uNTpG1aYkJyw40sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.928 [XNIO-1 task-6] vY6CdceKSeimBJ5iQ9kq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.928 [XNIO-1 task-6] vY6CdceKSeimBJ5iQ9kq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.928 [XNIO-1 task-6] vY6CdceKSeimBJ5iQ9kq5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 70e8a433-3532-49b2-9bde-59c9faa18491 scope = null +09:03:01.931 [XNIO-1 task-5] WasZUDVsShW2vB6w3-rV1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.933 [XNIO-1 task-4] euViFhx0TM2F396iCfms0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.933 [XNIO-1 task-4] euViFhx0TM2F396iCfms0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.933 [XNIO-1 task-4] euViFhx0TM2F396iCfms0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.933 [XNIO-1 task-4] euViFhx0TM2F396iCfms0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.942 [XNIO-1 task-6] vY6CdceKSeimBJ5iQ9kq5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.942 [XNIO-1 task-6] vY6CdceKSeimBJ5iQ9kq5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.943 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0719e5ec-03f3-4a5d-be5a-6ffcca9f6a7e +09:03:01.944 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0719e5ec-03f3-4a5d-be5a-6ffcca9f6a7e +09:03:01.947 [XNIO-1 task-4] CCM7Jq3cQ32ENnKlgLgm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.948 [XNIO-1 task-4] CCM7Jq3cQ32ENnKlgLgm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.948 [XNIO-1 task-4] CCM7Jq3cQ32ENnKlgLgm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.948 [XNIO-1 task-4] CCM7Jq3cQ32ENnKlgLgm4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.954 [XNIO-1 task-4] CCM7Jq3cQ32ENnKlgLgm4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.958 [XNIO-1 task-4] vLznLipUQi-SrfNYfThskQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.959 [XNIO-1 task-4] vLznLipUQi-SrfNYfThskQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.959 [XNIO-1 task-4] vLznLipUQi-SrfNYfThskQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.959 [XNIO-1 task-4] vLznLipUQi-SrfNYfThskQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 8eee138d-9f0f-4f2b-be8c-d10303da753a scope = null +09:03:01.960 [XNIO-1 task-6] 0nFJHATFT9uF_0sZmzuPFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.960 [XNIO-1 task-6] 0nFJHATFT9uF_0sZmzuPFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.960 [XNIO-1 task-6] 0nFJHATFT9uF_0sZmzuPFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.960 [XNIO-1 task-6] 0nFJHATFT9uF_0sZmzuPFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:01.963 [XNIO-1 task-5] EdQD3T5QR8WGz1il7hSPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.963 [XNIO-1 task-5] EdQD3T5QR8WGz1il7hSPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.964 [XNIO-1 task-5] EdQD3T5QR8WGz1il7hSPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:01.964 [XNIO-1 task-5] EdQD3T5QR8WGz1il7hSPeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sxnjb11AQLi7BNwCzdyUqw redirectUri = http://localhost:8080/authorization +09:03:01.966 [XNIO-1 task-6] 0nFJHATFT9uF_0sZmzuPFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.971 [XNIO-1 task-4] vLznLipUQi-SrfNYfThskQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.972 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fbd7075c +09:03:01.973 [XNIO-1 task-6] VkUUs2JrS_y3vz2VpXeJqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.973 [XNIO-1 task-6] VkUUs2JrS_y3vz2VpXeJqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.973 [XNIO-1 task-6] VkUUs2JrS_y3vz2VpXeJqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.974 [XNIO-1 task-6] VkUUs2JrS_y3vz2VpXeJqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.974 [XNIO-1 task-5] EdQD3T5QR8WGz1il7hSPeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:01.974 [XNIO-1 task-5] EdQD3T5QR8WGz1il7hSPeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.981 [XNIO-1 task-6] VkUUs2JrS_y3vz2VpXeJqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:01.983 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8effa557 +09:03:01.989 [XNIO-1 task-5] _Q4mXvw-QW2EfoWh7OWGdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.989 [XNIO-1 task-5] _Q4mXvw-QW2EfoWh7OWGdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.989 [XNIO-1 task-5] _Q4mXvw-QW2EfoWh7OWGdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.989 [XNIO-1 task-5] _Q4mXvw-QW2EfoWh7OWGdw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:01.994 [XNIO-1 task-5] _Q4mXvw-QW2EfoWh7OWGdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:01.994 [XNIO-1 task-6] 4Ewx27l7SUCywoKEuY3iRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.995 [XNIO-1 task-6] 4Ewx27l7SUCywoKEuY3iRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:01.995 [XNIO-1 task-6] 4Ewx27l7SUCywoKEuY3iRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:01.995 [XNIO-1 task-6] 4Ewx27l7SUCywoKEuY3iRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", authorization) +09:03:02.000 [XNIO-1 task-5] 06KsuBHQS6KJV3rbGoDrcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.000 [XNIO-1 task-5] 06KsuBHQS6KJV3rbGoDrcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.000 [XNIO-1 task-5] 06KsuBHQS6KJV3rbGoDrcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.000 [XNIO-1 task-5] 06KsuBHQS6KJV3rbGoDrcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", authorization) +09:03:02.004 [XNIO-1 task-6] 4Ewx27l7SUCywoKEuY3iRQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:03:02.007 [XNIO-1 task-5] 06KsuBHQS6KJV3rbGoDrcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.020 [XNIO-1 task-5] 0Jg4MXblTZCq2oCSIWjENw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.020 [XNIO-1 task-5] 0Jg4MXblTZCq2oCSIWjENw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.020 [XNIO-1 task-5] 0Jg4MXblTZCq2oCSIWjENw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.020 [XNIO-1 task-5] 0Jg4MXblTZCq2oCSIWjENw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.025 [XNIO-1 task-5] 0Jg4MXblTZCq2oCSIWjENw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.030 [XNIO-1 task-5] TIhdJ1WEQSiqzxrNeRHYyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.030 [XNIO-1 task-5] TIhdJ1WEQSiqzxrNeRHYyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.030 [XNIO-1 task-5] TIhdJ1WEQSiqzxrNeRHYyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.030 [XNIO-1 task-5] TIhdJ1WEQSiqzxrNeRHYyQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vCLyMPWJRzm13nlNlBAxKg redirectUri = http://localhost:8080/authorization +09:03:02.036 [XNIO-1 task-5] TIhdJ1WEQSiqzxrNeRHYyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.039 [XNIO-1 task-6] Sxo-5-OLTb6nviQGYOtWzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.040 [XNIO-1 task-6] Sxo-5-OLTb6nviQGYOtWzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.040 [XNIO-1 task-6] Sxo-5-OLTb6nviQGYOtWzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.041 [XNIO-1 task-6] Sxo-5-OLTb6nviQGYOtWzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +09:03:02.041 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8effa557 +09:03:02.046 [XNIO-1 task-5] ZrS-mkbJRkSwnhYHlqzM9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.046 [XNIO-1 task-5] ZrS-mkbJRkSwnhYHlqzM9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.047 [XNIO-1 task-5] ZrS-mkbJRkSwnhYHlqzM9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.047 [XNIO-1 task-5] ZrS-mkbJRkSwnhYHlqzM9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", authorization) +09:03:02.047 [XNIO-1 task-6] Sxo-5-OLTb6nviQGYOtWzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.052 [XNIO-1 task-6] d35VD-V2RtyBoKoXce7m9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.052 [XNIO-1 task-6] d35VD-V2RtyBoKoXce7m9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.052 [XNIO-1 task-6] d35VD-V2RtyBoKoXce7m9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.052 [XNIO-1 task-6] d35VD-V2RtyBoKoXce7m9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +09:03:02.055 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1057e890-50bb-452e-b3db-e760230099bd +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:02.058 [XNIO-1 task-6] d35VD-V2RtyBoKoXce7m9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.062 [XNIO-1 task-6] gJI5OqDqQdW7wBzGb5TPPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.062 [XNIO-1 task-6] gJI5OqDqQdW7wBzGb5TPPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.062 [XNIO-1 task-6] gJI5OqDqQdW7wBzGb5TPPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.062 [XNIO-1 task-6] gJI5OqDqQdW7wBzGb5TPPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", "Basic ZWE4MGNjMDAtMjk4YS00NTYwLWE5YWUtNGZkODlhOGQ3MGQ5OkZHSDJJVzNBU2F1XzFyeDloNDlpYlE=", authorization) +09:03:02.068 [XNIO-1 task-6] gJI5OqDqQdW7wBzGb5TPPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.076 [XNIO-1 task-6] tiT3jJvBQ1WzXqMtCl5oVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.076 [XNIO-1 task-6] tiT3jJvBQ1WzXqMtCl5oVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.077 [XNIO-1 task-6] tiT3jJvBQ1WzXqMtCl5oVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.077 [XNIO-1 task-6] tiT3jJvBQ1WzXqMtCl5oVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:02.081 [XNIO-1 task-6] tiT3jJvBQ1WzXqMtCl5oVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.086 [XNIO-1 task-5] ZrS-mkbJRkSwnhYHlqzM9w ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:03:02.090 [XNIO-1 task-5] d5M1AdzTQ2KXwoQIYY5Hiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.090 [XNIO-1 task-5] d5M1AdzTQ2KXwoQIYY5Hiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.090 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b9a093f6 +09:03:02.090 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9a093f6 +09:03:02.090 [XNIO-1 task-5] d5M1AdzTQ2KXwoQIYY5Hiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", "Basic NWUzYjIzMmUtYzg3Ny00MTI4LTg4NGYtZjZjN2NkM2E4ZmZmOjNXVEsyOGJOU0VhTV9UYmhTVk9DalE=", authorization) +09:03:02.093 [XNIO-1 task-6] bsly1REdToarD5yxc4t_Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.093 [XNIO-1 task-6] bsly1REdToarD5yxc4t_Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.093 [XNIO-1 task-6] bsly1REdToarD5yxc4t_Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.093 [XNIO-1 task-6] bsly1REdToarD5yxc4t_Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:02.096 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8effa557 +09:03:02.096 [XNIO-1 task-5] d5M1AdzTQ2KXwoQIYY5Hiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.105 [XNIO-1 task-5] sirbDcoRQl6NxtACBuC48g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.105 [XNIO-1 task-6] bsly1REdToarD5yxc4t_Ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.106 [XNIO-1 task-5] sirbDcoRQl6NxtACBuC48g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.106 [XNIO-1 task-5] sirbDcoRQl6NxtACBuC48g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.106 [XNIO-1 task-5] sirbDcoRQl6NxtACBuC48g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.106 [XNIO-1 task-5] sirbDcoRQl6NxtACBuC48g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.112 [XNIO-1 task-5] sirbDcoRQl6NxtACBuC48g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.118 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6e005732 +09:03:02.119 [XNIO-1 task-6] DADAiiEBQF2NgIbntU1S4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.119 [XNIO-1 task-6] DADAiiEBQF2NgIbntU1S4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.119 [XNIO-1 task-6] DADAiiEBQF2NgIbntU1S4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.119 [XNIO-1 task-6] DADAiiEBQF2NgIbntU1S4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", "Basic ZThlYmFhMTMtNzcyYi00ZTk2LWJhMzItZDVhNWVlMmYxODJhOkQ4cDNrenNKUV82dEVHN05wZ2VaUFE=", authorization) +09:03:02.122 [XNIO-1 task-5] AFbZWcewQWyIUg_E-e80MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.122 [XNIO-1 task-5] AFbZWcewQWyIUg_E-e80MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.122 [XNIO-1 task-5] AFbZWcewQWyIUg_E-e80MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.122 [XNIO-1 task-5] AFbZWcewQWyIUg_E-e80MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", "Basic ZmE4MzE1OWYtMzI2Yy00MDlkLWE0ZmItMThiMGFmZmIyMzYxOjRneGljNERqUkYtX3lUZjlYZVdac0E=", authorization) +09:03:02.125 [XNIO-1 task-4] 2BtlHN2ESSWnTmA6x33RSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.125 [XNIO-1 task-4] 2BtlHN2ESSWnTmA6x33RSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.125 [XNIO-1 task-4] 2BtlHN2ESSWnTmA6x33RSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.125 [XNIO-1 task-4] 2BtlHN2ESSWnTmA6x33RSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", authorization) +09:03:02.128 [XNIO-1 task-5] AFbZWcewQWyIUg_E-e80MQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.129 [XNIO-1 task-5] AFbZWcewQWyIUg_E-e80MQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.129 [XNIO-1 task-5] AFbZWcewQWyIUg_E-e80MQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.131 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:984fba66-1f3c-463c-b10c-775e16b765f9 +09:03:02.131 [XNIO-1 task-4] 2BtlHN2ESSWnTmA6x33RSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.135 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:152fbf09-7830-4606-ae4a-061357f52ea7 +09:03:02.136 [XNIO-1 task-4] 35XEJQbpRT64KdmX-b23vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.136 [XNIO-1 task-4] 35XEJQbpRT64KdmX-b23vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.136 [XNIO-1 task-4] 35XEJQbpRT64KdmX-b23vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.136 [XNIO-1 task-4] 35XEJQbpRT64KdmX-b23vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", authorization) +09:03:02.140 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0719e5ec-03f3-4a5d-be5a-6ffcca9f6a7e +09:03:02.143 [XNIO-1 task-4] 35XEJQbpRT64KdmX-b23vQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.147 [XNIO-1 task-6] fK9c9mM8QumbwOK_wy8Auw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.147 [XNIO-1 task-6] fK9c9mM8QumbwOK_wy8Auw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.148 [XNIO-1 task-6] fK9c9mM8QumbwOK_wy8Auw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.148 [XNIO-1 task-6] fK9c9mM8QumbwOK_wy8Auw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.149 [XNIO-1 task-4] oYVHk7bSRP2fBNWgz-Q-7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.149 [XNIO-1 task-4] oYVHk7bSRP2fBNWgz-Q-7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.149 [XNIO-1 task-4] oYVHk7bSRP2fBNWgz-Q-7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.149 [XNIO-1 task-4] oYVHk7bSRP2fBNWgz-Q-7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 152fbf09-7830-4606-ae4a-061357f52ea7 scope = null +09:03:02.154 [XNIO-1 task-6] fK9c9mM8QumbwOK_wy8Auw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.158 [XNIO-1 task-4] oYVHk7bSRP2fBNWgz-Q-7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.164 [XNIO-1 task-6] bOtriX9dQ-GoFeAKJhf4Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.165 [XNIO-1 task-6] bOtriX9dQ-GoFeAKJhf4Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.165 [XNIO-1 task-6] bOtriX9dQ-GoFeAKJhf4Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.165 [XNIO-1 task-6] bOtriX9dQ-GoFeAKJhf4Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:02.166 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c0734aa8 +09:03:02.167 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c0734aa8 +09:03:02.170 [XNIO-1 task-4] kGugIb2kRS2Xqlltr1cM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.170 [XNIO-1 task-4] kGugIb2kRS2Xqlltr1cM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.170 [XNIO-1 task-4] kGugIb2kRS2Xqlltr1cM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.170 [XNIO-1 task-4] kGugIb2kRS2Xqlltr1cM4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0719e5ec-03f3-4a5d-be5a-6ffcca9f6a7e scope = null +09:03:02.171 [XNIO-1 task-6] bOtriX9dQ-GoFeAKJhf4Vg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.175 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0719e5ec-03f3-4a5d-be5a-6ffcca9f6a7e +09:03:02.175 [XNIO-1 task-6] PoN25NnETym04UJJjw-IRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.176 [XNIO-1 task-6] PoN25NnETym04UJJjw-IRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.176 [XNIO-1 task-6] PoN25NnETym04UJJjw-IRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:02.176 [XNIO-1 task-4] kGugIb2kRS2Xqlltr1cM4Q ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:03:02.180 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:984fba66-1f3c-463c-b10c-775e16b765f9 +09:03:02.181 [XNIO-1 task-6] PoN25NnETym04UJJjw-IRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.181 [XNIO-1 task-4] OduPSs86SAuP9AleiUSymg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.181 [XNIO-1 task-4] OduPSs86SAuP9AleiUSymg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:03:02.182 [XNIO-1 task-4] OduPSs86SAuP9AleiUSymg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0719e5ec-03f3-4a5d-be5a-6ffcca9f6a7e scope = null +09:03:02.184 [XNIO-1 task-6] 27Jdtf4sRWmnDOZOgSbOKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.184 [XNIO-1 task-6] 27Jdtf4sRWmnDOZOgSbOKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.184 [XNIO-1 task-6] 27Jdtf4sRWmnDOZOgSbOKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.185 [XNIO-1 task-6] 27Jdtf4sRWmnDOZOgSbOKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +09:03:02.185 [XNIO-1 task-6] 27Jdtf4sRWmnDOZOgSbOKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 4jewwG9mQX2uZW6uHISTIw redirectUri = http://localhost:8080/authorization + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:03:02.185 [XNIO-1 task-5] libtC1GORKKOj7xEdv69FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.185 [XNIO-1 task-5] libtC1GORKKOj7xEdv69FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + +09:03:02.185 [XNIO-1 task-5] libtC1GORKKOj7xEdv69FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.186 [XNIO-1 task-5] libtC1GORKKOj7xEdv69FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.186 [XNIO-1 task-5] libtC1GORKKOj7xEdv69FA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.187 [XNIO-1 task-4] OduPSs86SAuP9AleiUSymg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:03:02.191 [XNIO-1 task-5] libtC1GORKKOj7xEdv69FA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.192 [XNIO-1 task-6] 27Jdtf4sRWmnDOZOgSbOKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.198 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:984fba66-1f3c-463c-b10c-775e16b765f9 +09:03:02.200 [XNIO-1 task-5] 6BL2Ygt3SvS0eMoptqvzQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.200 [XNIO-1 task-5] 6BL2Ygt3SvS0eMoptqvzQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.200 [XNIO-1 task-5] 6BL2Ygt3SvS0eMoptqvzQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.200 [XNIO-1 task-5] 6BL2Ygt3SvS0eMoptqvzQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.205 [XNIO-1 task-5] 6BL2Ygt3SvS0eMoptqvzQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.208 [XNIO-1 task-5] UFgnv9YVTqelMG1xE107YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.209 [XNIO-1 task-5] UFgnv9YVTqelMG1xE107YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.209 [XNIO-1 task-5] UFgnv9YVTqelMG1xE107YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.209 [XNIO-1 task-5] UFgnv9YVTqelMG1xE107YA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = bNir7mppTimA3qF2KejSjA redirectUri = http://localhost:8080/authorization +09:03:02.211 [XNIO-1 task-6] NjKuB7J-QCy9O-BymxWeOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.211 [XNIO-1 task-6] NjKuB7J-QCy9O-BymxWeOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.211 [XNIO-1 task-6] NjKuB7J-QCy9O-BymxWeOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.212 [XNIO-1 task-6] NjKuB7J-QCy9O-BymxWeOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 71adf091-aaef-4c0e-9519-91e20503b7f0 scope = null +09:03:02.212 [XNIO-1 task-4] nJDecz9ZRsSfExT70R2jZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.213 [XNIO-1 task-4] nJDecz9ZRsSfExT70R2jZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.213 [XNIO-1 task-4] nJDecz9ZRsSfExT70R2jZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.213 [XNIO-1 task-4] nJDecz9ZRsSfExT70R2jZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.216 [XNIO-1 task-5] UFgnv9YVTqelMG1xE107YA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.219 [XNIO-1 task-4] nJDecz9ZRsSfExT70R2jZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.226 [XNIO-1 task-6] NjKuB7J-QCy9O-BymxWeOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.230 [XNIO-1 task-5] pGg8XxKFTpiW1CXz8G76Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.230 [XNIO-1 task-5] pGg8XxKFTpiW1CXz8G76Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.230 [XNIO-1 task-5] pGg8XxKFTpiW1CXz8G76Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.230 [XNIO-1 task-5] pGg8XxKFTpiW1CXz8G76Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWYyNjlkNzYtYTRkZC00N2FjLTg3YjItMzBiNzBkODcwZmIxOmJzbVVXTDk4VDV5RWlrV0l6UnVJTFE=", "Basic ZWYyNjlkNzYtYTRkZC00N2FjLTg3YjItMzBiNzBkODcwZmIxOmJzbVVXTDk4VDV5RWlrV0l6UnVJTFE=", authorization) +09:03:02.230 [XNIO-1 task-5] pGg8XxKFTpiW1CXz8G76Rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.232 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d152d378-74e9-4822-9952-1abd9551a08f +09:03:02.236 [XNIO-1 task-5] pGg8XxKFTpiW1CXz8G76Rg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.241 [XNIO-1 task-5] ts-vQjmNSs237gB4dku3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.241 [XNIO-1 task-5] ts-vQjmNSs237gB4dku3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.241 [XNIO-1 task-5] ts-vQjmNSs237gB4dku3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.242 [XNIO-1 task-5] ts-vQjmNSs237gB4dku3zw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.245 [XNIO-1 task-6] OMpbA-itQ1uq6W3WG508vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.245 [XNIO-1 task-6] OMpbA-itQ1uq6W3WG508vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.246 [XNIO-1 task-6] OMpbA-itQ1uq6W3WG508vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.246 [XNIO-1 task-6] OMpbA-itQ1uq6W3WG508vQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = efa04812-166b-4b06-9bf8-adc22b03291e scope = null +09:03:02.247 [XNIO-1 task-5] ts-vQjmNSs237gB4dku3zw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.250 [XNIO-1 task-5] O3VwgAO_SVq2jyMsGn9rhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.250 [XNIO-1 task-5] O3VwgAO_SVq2jyMsGn9rhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.250 [XNIO-1 task-5] O3VwgAO_SVq2jyMsGn9rhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.251 [XNIO-1 task-5] O3VwgAO_SVq2jyMsGn9rhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ARVxwD0MS7CPT4fQoMYULw redirectUri = http://localhost:8080/authorization +09:03:02.252 [XNIO-1 task-4] 5Abrv-KyQuS-Ek6oybarTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.252 [XNIO-1 task-4] 5Abrv-KyQuS-Ek6oybarTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.252 [XNIO-1 task-4] 5Abrv-KyQuS-Ek6oybarTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.252 [XNIO-1 task-4] 5Abrv-KyQuS-Ek6oybarTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.255 [XNIO-1 task-6] OMpbA-itQ1uq6W3WG508vQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.256 [XNIO-1 task-5] O3VwgAO_SVq2jyMsGn9rhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.257 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c0734aa8 +09:03:02.258 [XNIO-1 task-4] 5Abrv-KyQuS-Ek6oybarTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.264 [XNIO-1 task-4] 3Cp0TOsmQFaEPAEVKKwU1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.264 [XNIO-1 task-4] 3Cp0TOsmQFaEPAEVKKwU1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.264 [XNIO-1 task-4] 3Cp0TOsmQFaEPAEVKKwU1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.264 [XNIO-1 task-4] 3Cp0TOsmQFaEPAEVKKwU1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.266 [XNIO-1 task-6] sp_livG_SQqA-HCcbAOv1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.266 [XNIO-1 task-6] sp_livG_SQqA-HCcbAOv1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.266 [XNIO-1 task-6] sp_livG_SQqA-HCcbAOv1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.266 [XNIO-1 task-6] sp_livG_SQqA-HCcbAOv1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f3b6592f-3ea7-4d93-8901-a6c09b61086c scope = null +09:03:02.269 [XNIO-1 task-4] 3Cp0TOsmQFaEPAEVKKwU1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.272 [XNIO-1 task-4] vSzUCO_eQPaF3Lx_116eEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.272 [XNIO-1 task-4] vSzUCO_eQPaF3Lx_116eEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.272 [XNIO-1 task-4] vSzUCO_eQPaF3Lx_116eEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.273 [XNIO-1 task-4] vSzUCO_eQPaF3Lx_116eEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.277 [XNIO-1 task-6] sp_livG_SQqA-HCcbAOv1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.278 [XNIO-1 task-4] vSzUCO_eQPaF3Lx_116eEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.283 [XNIO-1 task-4] Af3147aHQGqGZJbsnaOTZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.283 [XNIO-1 task-4] Af3147aHQGqGZJbsnaOTZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.283 [XNIO-1 task-4] Af3147aHQGqGZJbsnaOTZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.283 [XNIO-1 task-4] Af3147aHQGqGZJbsnaOTZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.286 [XNIO-1 task-5] wv07WRWrSN6M8DYu7FWcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.287 [XNIO-1 task-5] wv07WRWrSN6M8DYu7FWcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.287 [XNIO-1 task-5] wv07WRWrSN6M8DYu7FWcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.287 [XNIO-1 task-5] wv07WRWrSN6M8DYu7FWcQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = lz3uKv_HQQWuS-0IKCeu_g redirectUri = http://localhost:8080/authorization +09:03:02.289 [XNIO-1 task-4] Af3147aHQGqGZJbsnaOTZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.296 [XNIO-1 task-5] wv07WRWrSN6M8DYu7FWcQg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.297 [XNIO-1 task-4] 58m0k5DpTqq7CQxMuiRGLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.297 [XNIO-1 task-4] 58m0k5DpTqq7CQxMuiRGLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.297 [XNIO-1 task-4] 58m0k5DpTqq7CQxMuiRGLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.297 [XNIO-1 task-4] 58m0k5DpTqq7CQxMuiRGLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", authorization) +09:03:02.302 [XNIO-1 task-4] 58m0k5DpTqq7CQxMuiRGLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.307 [XNIO-1 task-4] 4ZlEh0LTS3C0g5XJ3Gu0zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.307 [XNIO-1 task-4] 4ZlEh0LTS3C0g5XJ3Gu0zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.308 [XNIO-1 task-4] 4ZlEh0LTS3C0g5XJ3Gu0zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.308 [XNIO-1 task-4] 4ZlEh0LTS3C0g5XJ3Gu0zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", "Basic MWQxNzQyNTQtNTRlZS00ODQ5LWExNzQtZGUyOTM3ZDBmYTE5Om5aMFMyNDUyUnN5LURzMlVXZEMyX2c=", authorization) +09:03:02.313 [XNIO-1 task-5] PABm57KwS5uvygC0R6g-Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.313 [XNIO-1 task-4] 4ZlEh0LTS3C0g5XJ3Gu0zQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.313 [XNIO-1 task-5] PABm57KwS5uvygC0R6g-Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.313 [XNIO-1 task-5] PABm57KwS5uvygC0R6g-Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.313 [XNIO-1 task-5] PABm57KwS5uvygC0R6g-Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", authorization) +09:03:02.314 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b9a093f6 +09:03:02.318 [XNIO-1 task-4] qqZpHukiQimxoyxU48-V6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.319 [XNIO-1 task-4] qqZpHukiQimxoyxU48-V6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.319 [XNIO-1 task-4] qqZpHukiQimxoyxU48-V6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.319 [XNIO-1 task-5] PABm57KwS5uvygC0R6g-Pw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.319 [XNIO-1 task-4] qqZpHukiQimxoyxU48-V6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.319 [XNIO-1 task-4] qqZpHukiQimxoyxU48-V6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = t0yF03kBTQ-RsatTSONVIQ redirectUri = http://localhost:8080/authorization +09:03:02.321 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:865dcf39-bc1a-472f-9381-b9f9445e8082 +09:03:02.323 [XNIO-1 task-6] CeDz3PgQTuu4lXLCQ-xsVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.323 [XNIO-1 task-6] CeDz3PgQTuu4lXLCQ-xsVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.324 [XNIO-1 task-6] CeDz3PgQTuu4lXLCQ-xsVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.324 [XNIO-1 task-6] CeDz3PgQTuu4lXLCQ-xsVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.326 [XNIO-1 task-4] qqZpHukiQimxoyxU48-V6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.327 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5fae7b19-7e69-4092-a3de-7da5ac44e89a +09:03:02.330 [XNIO-1 task-6] CeDz3PgQTuu4lXLCQ-xsVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.331 [XNIO-1 task-4] eOmHlYZ3TQ6aLJbhHFGPUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.331 [XNIO-1 task-4] eOmHlYZ3TQ6aLJbhHFGPUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.331 [XNIO-1 task-4] eOmHlYZ3TQ6aLJbhHFGPUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.331 [XNIO-1 task-4] eOmHlYZ3TQ6aLJbhHFGPUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", authorization) +09:03:02.335 [XNIO-1 task-6] rgDCXpJmSwW3jXbYUkM4wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.335 [XNIO-1 task-6] rgDCXpJmSwW3jXbYUkM4wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.335 [XNIO-1 task-6] rgDCXpJmSwW3jXbYUkM4wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.335 [XNIO-1 task-6] rgDCXpJmSwW3jXbYUkM4wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:02.336 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:865dcf39-bc1a-472f-9381-b9f9445e8082 +09:03:02.341 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9a093f6 +09:03:02.341 [XNIO-1 task-6] rgDCXpJmSwW3jXbYUkM4wQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.342 [XNIO-1 task-4] eOmHlYZ3TQ6aLJbhHFGPUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.346 [XNIO-1 task-6] tEk0iKEWRs68okQz4Zc9jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.346 [XNIO-1 task-6] tEk0iKEWRs68okQz4Zc9jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.346 [XNIO-1 task-6] tEk0iKEWRs68okQz4Zc9jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.346 [XNIO-1 task-6] tEk0iKEWRs68okQz4Zc9jQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.354 [XNIO-1 task-6] tEk0iKEWRs68okQz4Zc9jQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.355 [XNIO-1 task-4] XG-0jUp_SfOun_7fG4_z3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.355 [XNIO-1 task-4] XG-0jUp_SfOun_7fG4_z3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.355 [XNIO-1 task-4] XG-0jUp_SfOun_7fG4_z3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.355 [XNIO-1 task-4] XG-0jUp_SfOun_7fG4_z3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", authorization) +09:03:02.358 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b9a093f6 +09:03:02.359 [XNIO-1 task-6] MHbJ9dhBQrCdCpIbUPjLYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.359 [XNIO-1 task-6] MHbJ9dhBQrCdCpIbUPjLYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.359 [XNIO-1 task-6] MHbJ9dhBQrCdCpIbUPjLYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.359 [XNIO-1 task-6] MHbJ9dhBQrCdCpIbUPjLYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", "Basic ZTEyOWU0NmMtMGZkYS00MzAyLTk0NjgtYzA1OTYyNjYyMTQ2Old1eVp2VjhQU2NTQ1ByT3l2bFctdkE=", authorization) +09:03:02.365 [XNIO-1 task-4] XG-0jUp_SfOun_7fG4_z3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.366 [XNIO-1 task-5] ht8YHHA7QpOJnE-vytJYLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.366 [XNIO-1 task-5] ht8YHHA7QpOJnE-vytJYLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.367 [XNIO-1 task-5] ht8YHHA7QpOJnE-vytJYLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.367 [XNIO-1 task-5] ht8YHHA7QpOJnE-vytJYLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", authorization) +09:03:02.368 [XNIO-1 task-6] MHbJ9dhBQrCdCpIbUPjLYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.372 [XNIO-1 task-5] ht8YHHA7QpOJnE-vytJYLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.373 [XNIO-1 task-5] ht8YHHA7QpOJnE-vytJYLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.374 [XNIO-1 task-4] j49DpbYARDyGe4DLXrd6EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.374 [XNIO-1 task-4] j49DpbYARDyGe4DLXrd6EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.374 [XNIO-1 task-4] j49DpbYARDyGe4DLXrd6EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.374 [XNIO-1 task-4] j49DpbYARDyGe4DLXrd6EQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.376 [XNIO-1 task-6] 5Qm5TUxaRjS2lN223k_vJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.377 [XNIO-1 task-6] 5Qm5TUxaRjS2lN223k_vJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.378 [XNIO-1 task-6] 5Qm5TUxaRjS2lN223k_vJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.378 [XNIO-1 task-6] 5Qm5TUxaRjS2lN223k_vJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 16a39c6b-c81c-43a3-937e-a25680341038 scope = null +09:03:02.379 [XNIO-1 task-4] j49DpbYARDyGe4DLXrd6EQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.387 [XNIO-1 task-4] ExPPAeEyRgCy9DERubHM4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.387 [XNIO-1 task-4] ExPPAeEyRgCy9DERubHM4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.387 [XNIO-1 task-4] ExPPAeEyRgCy9DERubHM4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.387 [XNIO-1 task-4] ExPPAeEyRgCy9DERubHM4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.392 [XNIO-1 task-6] 5Qm5TUxaRjS2lN223k_vJA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.393 [XNIO-1 task-4] ExPPAeEyRgCy9DERubHM4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.397 [XNIO-1 task-4] 36fzRIg_Rlmjm1VuxyCvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.397 [XNIO-1 task-4] 36fzRIg_Rlmjm1VuxyCvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.397 [XNIO-1 task-4] 36fzRIg_Rlmjm1VuxyCvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.397 [XNIO-1 task-4] 36fzRIg_Rlmjm1VuxyCvEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.403 [XNIO-1 task-4] 36fzRIg_Rlmjm1VuxyCvEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.409 [XNIO-1 task-4] JlV8WjOFQuSLkRP_0Y2lKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.409 [XNIO-1 task-4] JlV8WjOFQuSLkRP_0Y2lKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.409 [XNIO-1 task-4] JlV8WjOFQuSLkRP_0Y2lKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.410 [XNIO-1 task-4] JlV8WjOFQuSLkRP_0Y2lKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b6d23369-b918-4fb0-920b-03b7f400a574 scope = null +09:03:02.410 [XNIO-1 task-6] DejE-5mnQQ6DVoWB-O9KoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.410 [XNIO-1 task-6] DejE-5mnQQ6DVoWB-O9KoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.410 [XNIO-1 task-6] DejE-5mnQQ6DVoWB-O9KoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.410 [XNIO-1 task-6] DejE-5mnQQ6DVoWB-O9KoA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.415 [XNIO-1 task-6] DejE-5mnQQ6DVoWB-O9KoA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.419 [XNIO-1 task-4] JlV8WjOFQuSLkRP_0Y2lKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.421 [XNIO-1 task-6] nr5TdUPJRrqQA-AHWUbtXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.421 [XNIO-1 task-6] nr5TdUPJRrqQA-AHWUbtXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.421 [XNIO-1 task-6] nr5TdUPJRrqQA-AHWUbtXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.421 [XNIO-1 task-6] nr5TdUPJRrqQA-AHWUbtXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.426 [XNIO-1 task-6] nr5TdUPJRrqQA-AHWUbtXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.430 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6e005732 +09:03:02.433 [XNIO-1 task-4] 6b4gUrT1QBet-MoqCkuz3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.433 [XNIO-1 task-4] 6b4gUrT1QBet-MoqCkuz3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.434 [XNIO-1 task-4] 6b4gUrT1QBet-MoqCkuz3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.434 [XNIO-1 task-4] 6b4gUrT1QBet-MoqCkuz3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = l2VSWYQ6SC2orlAxV4f_Kg redirectUri = http://localhost:8080/authorization +09:03:02.435 [XNIO-1 task-6] 2phbL7srSe2H8hLxYw4vQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.436 [XNIO-1 task-6] 2phbL7srSe2H8hLxYw4vQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.436 [XNIO-1 task-5] v_R28BBCSZOBEjEB5RoVQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.436 [XNIO-1 task-5] v_R28BBCSZOBEjEB5RoVQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.436 [XNIO-1 task-6] 2phbL7srSe2H8hLxYw4vQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.436 [XNIO-1 task-6] 2phbL7srSe2H8hLxYw4vQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.436 [XNIO-1 task-6] 2phbL7srSe2H8hLxYw4vQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", authorization) +09:03:02.436 [XNIO-1 task-6] 2phbL7srSe2H8hLxYw4vQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 91826c75-a2c5-419f-8339-daa171db4283 scope = null +09:03:02.441 [XNIO-1 task-4] 6b4gUrT1QBet-MoqCkuz3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.441 [XNIO-1 task-5] v_R28BBCSZOBEjEB5RoVQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.447 [XNIO-1 task-5] UepM4W6sQQ6HVMFUw-5wzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.447 [XNIO-1 task-5] UepM4W6sQQ6HVMFUw-5wzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.447 [XNIO-1 task-5] UepM4W6sQQ6HVMFUw-5wzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.447 [XNIO-1 task-5] UepM4W6sQQ6HVMFUw-5wzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", authorization) +09:03:02.448 [XNIO-1 task-6] 2phbL7srSe2H8hLxYw4vQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.453 [XNIO-1 task-5] UepM4W6sQQ6HVMFUw-5wzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.456 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fbd7075c +09:03:02.458 [XNIO-1 task-5] TE43hRCQQgCpPaTYCT_9XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.459 [XNIO-1 task-5] TE43hRCQQgCpPaTYCT_9XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.459 [XNIO-1 task-5] TE43hRCQQgCpPaTYCT_9XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.459 [XNIO-1 task-5] TE43hRCQQgCpPaTYCT_9XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", authorization) +09:03:02.465 [XNIO-1 task-5] TE43hRCQQgCpPaTYCT_9XQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.472 [XNIO-1 task-5] F5rAdwFbThiec2uN3h40dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.473 [XNIO-1 task-5] F5rAdwFbThiec2uN3h40dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.473 [XNIO-1 task-5] F5rAdwFbThiec2uN3h40dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.473 [XNIO-1 task-5] F5rAdwFbThiec2uN3h40dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", authorization) +09:03:02.478 [XNIO-1 task-5] F5rAdwFbThiec2uN3h40dQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.481 [XNIO-1 task-5] 0CKRSs79QJeYAZts5px57A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.481 [XNIO-1 task-5] 0CKRSs79QJeYAZts5px57A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.481 [XNIO-1 task-5] 0CKRSs79QJeYAZts5px57A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.481 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:002bf5d8 +09:03:02.481 [XNIO-1 task-5] 0CKRSs79QJeYAZts5px57A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 35z_UvEvRR631tZ2ULpAxw redirectUri = http://localhost:8080/authorization +09:03:02.482 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:002bf5d8 +09:03:02.487 [XNIO-1 task-6] WLPaFJeIRhadse_fY7lRPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.487 [XNIO-1 task-6] WLPaFJeIRhadse_fY7lRPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.487 [XNIO-1 task-6] WLPaFJeIRhadse_fY7lRPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.488 [XNIO-1 task-6] WLPaFJeIRhadse_fY7lRPg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.493 [XNIO-1 task-5] 0CKRSs79QJeYAZts5px57A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.494 [XNIO-1 task-6] WLPaFJeIRhadse_fY7lRPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.497 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b9a093f6 +09:03:02.499 [XNIO-1 task-6] L-sDCLAsTcuQiQ559Xqz8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.499 [XNIO-1 task-6] L-sDCLAsTcuQiQ559Xqz8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.500 [XNIO-1 task-6] L-sDCLAsTcuQiQ559Xqz8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.500 [XNIO-1 task-6] L-sDCLAsTcuQiQ559Xqz8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.507 [XNIO-1 task-6] L-sDCLAsTcuQiQ559Xqz8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.510 [XNIO-1 task-6] 8QB3-x7cQn6vEmzJ1IqQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.510 [XNIO-1 task-6] 8QB3-x7cQn6vEmzJ1IqQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.510 [XNIO-1 task-6] 8QB3-x7cQn6vEmzJ1IqQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.510 [XNIO-1 task-6] 8QB3-x7cQn6vEmzJ1IqQiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 60bd98d9-6c48-4c07-8cb7-4f8dc7bf7b91 scope = null +09:03:02.515 [XNIO-1 task-5] IBgRres8RLGAGw7lrbwFKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.515 [XNIO-1 task-5] IBgRres8RLGAGw7lrbwFKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.515 [XNIO-1 task-5] IBgRres8RLGAGw7lrbwFKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.515 [XNIO-1 task-5] IBgRres8RLGAGw7lrbwFKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vuFdKpWoSX2Q0ipwGRMZTw redirectUri = http://localhost:8080/authorization +09:03:02.519 [XNIO-1 task-4] 22lz8KILSpi8QQ2uo16sEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.519 [XNIO-1 task-4] 22lz8KILSpi8QQ2uo16sEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.519 [XNIO-1 task-4] 22lz8KILSpi8QQ2uo16sEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.519 [XNIO-1 task-4] 22lz8KILSpi8QQ2uo16sEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.521 [XNIO-1 task-5] IBgRres8RLGAGw7lrbwFKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.521 [XNIO-1 task-6] 8QB3-x7cQn6vEmzJ1IqQiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.524 [XNIO-1 task-4] 22lz8KILSpi8QQ2uo16sEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.525 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1a3cdff2-ac0b-4ddd-b57e-400fa72fb120 +09:03:02.527 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1a3cdff2-ac0b-4ddd-b57e-400fa72fb120 +09:03:02.530 [XNIO-1 task-4] kT97OXpVQZGG6KovI-aYZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.530 [XNIO-1 task-4] kT97OXpVQZGG6KovI-aYZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.530 [XNIO-1 task-4] kT97OXpVQZGG6KovI-aYZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.530 [XNIO-1 task-4] kT97OXpVQZGG6KovI-aYZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.537 [XNIO-1 task-4] kT97OXpVQZGG6KovI-aYZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.546 [XNIO-1 task-4] 3SWEYo1eQVmqO3m6GcUIeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.546 [XNIO-1 task-4] 3SWEYo1eQVmqO3m6GcUIeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.546 [XNIO-1 task-4] 3SWEYo1eQVmqO3m6GcUIeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.546 [XNIO-1 task-4] 3SWEYo1eQVmqO3m6GcUIeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.547 [XNIO-1 task-6] eZuEgsEGRR63p04fcOA-aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.547 [XNIO-1 task-6] eZuEgsEGRR63p04fcOA-aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.547 [XNIO-1 task-6] eZuEgsEGRR63p04fcOA-aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.547 [XNIO-1 task-6] eZuEgsEGRR63p04fcOA-aA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1a3cdff2-ac0b-4ddd-b57e-400fa72fb120 scope = null +09:03:02.552 [XNIO-1 task-4] 3SWEYo1eQVmqO3m6GcUIeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.559 [XNIO-1 task-6] eZuEgsEGRR63p04fcOA-aA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.562 [XNIO-1 task-4] bw6f27LbS0Cwk3hj-XaANg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.562 [XNIO-1 task-4] bw6f27LbS0Cwk3hj-XaANg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.562 [XNIO-1 task-4] bw6f27LbS0Cwk3hj-XaANg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.563 [XNIO-1 task-4] bw6f27LbS0Cwk3hj-XaANg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzEwZmUyN2UtN2Q4My00YWIzLWE4ZDAtNDJjZDZhNzQ5NGQ5OlBQM09yX2R6UTJhV3VVNWJaRk9lVkE=", "Basic YzEwZmUyN2UtN2Q4My00YWIzLWE4ZDAtNDJjZDZhNzQ5NGQ5OlBQM09yX2R6UTJhV3VVNWJaRk9lVkE=", authorization) +09:03:02.563 [XNIO-1 task-5] RVFNrUYzSOiPr8JE2nh1bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.563 [XNIO-1 task-5] RVFNrUYzSOiPr8JE2nh1bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.563 [XNIO-1 task-5] RVFNrUYzSOiPr8JE2nh1bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.564 [XNIO-1 task-5] RVFNrUYzSOiPr8JE2nh1bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ3ZGRhM2ItMGI4My00YzA4LTljMTgtZDg4ODFjZjg3M2Q2OlRReGN1TWVtUkhHSDVwY25Ca2ZPYVE=", "Basic OWQ3ZGRhM2ItMGI4My00YzA4LTljMTgtZDg4ODFjZjg3M2Q2OlRReGN1TWVtUkhHSDVwY25Ca2ZPYVE=", authorization) +09:03:02.568 [XNIO-1 task-4] bw6f27LbS0Cwk3hj-XaANg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.570 [XNIO-1 task-5] RVFNrUYzSOiPr8JE2nh1bg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.570 [XNIO-1 task-5] RVFNrUYzSOiPr8JE2nh1bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.579 [XNIO-1 task-5] 0c5woT71S6qulhl-Cu63bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.579 [XNIO-1 task-5] 0c5woT71S6qulhl-Cu63bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.579 [XNIO-1 task-5] 0c5woT71S6qulhl-Cu63bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.579 [XNIO-1 task-5] 0c5woT71S6qulhl-Cu63bg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.585 [XNIO-1 task-5] 0c5woT71S6qulhl-Cu63bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.589 [XNIO-1 task-5] S3yIN7TbQwSAvra7b-uBgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.589 [XNIO-1 task-5] S3yIN7TbQwSAvra7b-uBgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.589 [XNIO-1 task-5] S3yIN7TbQwSAvra7b-uBgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.590 [XNIO-1 task-5] S3yIN7TbQwSAvra7b-uBgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmYwOGU1OTgtNzFlZC00YjFjLWI2OTgtMjkxMjNiY2JlNjQ0OmpyNy1SOHVtUmxLQWVUNlJiUEZPamc=", "Basic YmYwOGU1OTgtNzFlZC00YjFjLWI2OTgtMjkxMjNiY2JlNjQ0OmpyNy1SOHVtUmxLQWVUNlJiUEZPamc=", authorization) +09:03:02.592 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:03:02.595 [XNIO-1 task-5] S3yIN7TbQwSAvra7b-uBgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.602 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fbd7075c +09:03:02.604 [XNIO-1 task-5] LPokB6DHRHuFs6sz3TKiOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.605 [XNIO-1 task-5] LPokB6DHRHuFs6sz3TKiOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.605 [XNIO-1 task-5] LPokB6DHRHuFs6sz3TKiOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.605 [XNIO-1 task-5] LPokB6DHRHuFs6sz3TKiOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.610 [XNIO-1 task-5] LPokB6DHRHuFs6sz3TKiOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.617 [XNIO-1 task-5] VGUjIFZ7QoanCM8EfdYFKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.617 [XNIO-1 task-5] VGUjIFZ7QoanCM8EfdYFKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.617 [XNIO-1 task-5] VGUjIFZ7QoanCM8EfdYFKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.617 [XNIO-1 task-5] VGUjIFZ7QoanCM8EfdYFKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.622 [XNIO-1 task-5] VGUjIFZ7QoanCM8EfdYFKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.630 [XNIO-1 task-5] xIjZm965TPqL60kH6CItJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.630 [XNIO-1 task-5] xIjZm965TPqL60kH6CItJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.630 [XNIO-1 task-5] xIjZm965TPqL60kH6CItJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.630 [XNIO-1 task-5] xIjZm965TPqL60kH6CItJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.636 [XNIO-1 task-5] xIjZm965TPqL60kH6CItJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.636 [XNIO-1 task-4] Nu5ZZv-AQQWdNHBsR6HVUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.636 [XNIO-1 task-4] Nu5ZZv-AQQWdNHBsR6HVUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.637 [XNIO-1 task-6] aQNeGshKTRusso9SXI8lew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.637 [XNIO-1 task-6] aQNeGshKTRusso9SXI8lew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.637 [XNIO-1 task-6] aQNeGshKTRusso9SXI8lew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.637 [XNIO-1 task-6] aQNeGshKTRusso9SXI8lew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.637 [XNIO-1 task-4] Nu5ZZv-AQQWdNHBsR6HVUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9kArlevfT5mGueCHOLBAgQ redirectUri = http://localhost:8080/authorization +09:03:02.637 [XNIO-1 task-6] aQNeGshKTRusso9SXI8lew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Atj7j_W_RryOnBf2HkxYwg redirectUri = http://localhost:8080/authorization +09:03:02.642 [XNIO-1 task-5] FzGx1nACRQC1tIBhpdXstg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.642 [XNIO-1 task-5] FzGx1nACRQC1tIBhpdXstg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.642 [XNIO-1 task-5] FzGx1nACRQC1tIBhpdXstg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.642 [XNIO-1 task-5] FzGx1nACRQC1tIBhpdXstg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.646 [XNIO-1 task-6] aQNeGshKTRusso9SXI8lew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.647 [XNIO-1 task-5] FzGx1nACRQC1tIBhpdXstg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.649 [XNIO-1 task-4] Nu5ZZv-AQQWdNHBsR6HVUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.649 [XNIO-1 task-4] Nu5ZZv-AQQWdNHBsR6HVUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.655 [XNIO-1 task-4] 0_SlPjlySDuxxYFDFaC5Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.656 [XNIO-1 task-4] 0_SlPjlySDuxxYFDFaC5Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.656 [XNIO-1 task-4] 0_SlPjlySDuxxYFDFaC5Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.656 [XNIO-1 task-4] 0_SlPjlySDuxxYFDFaC5Wg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.661 [XNIO-1 task-4] 0_SlPjlySDuxxYFDFaC5Wg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.663 [XNIO-1 task-6] F1Pm-DUYQPqoUKNoWkQ8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.663 [XNIO-1 task-6] F1Pm-DUYQPqoUKNoWkQ8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.663 [XNIO-1 task-6] F1Pm-DUYQPqoUKNoWkQ8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.663 [XNIO-1 task-6] F1Pm-DUYQPqoUKNoWkQ8AA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c0b1a5f1-3bcd-4e69-b05c-0036bf967f30 scope = null +09:03:02.666 [XNIO-1 task-4] 71sJVUycRKeS3WvGU9dIEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.666 [XNIO-1 task-4] 71sJVUycRKeS3WvGU9dIEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.666 [XNIO-1 task-4] 71sJVUycRKeS3WvGU9dIEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.666 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fbd7075c +09:03:02.667 [XNIO-1 task-4] 71sJVUycRKeS3WvGU9dIEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.673 [XNIO-1 task-4] 71sJVUycRKeS3WvGU9dIEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.674 [XNIO-1 task-6] F1Pm-DUYQPqoUKNoWkQ8AA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.679 [XNIO-1 task-4] cRuZaObAQiqkgY8J6ry6eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.679 [XNIO-1 task-4] cRuZaObAQiqkgY8J6ry6eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.679 [XNIO-1 task-4] cRuZaObAQiqkgY8J6ry6eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.679 [XNIO-1 task-4] cRuZaObAQiqkgY8J6ry6eA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.685 [XNIO-1 task-4] cRuZaObAQiqkgY8J6ry6eA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.688 [XNIO-1 task-4] zNiIDWHaQbqckxcKRdayHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.688 [XNIO-1 task-4] zNiIDWHaQbqckxcKRdayHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.688 [XNIO-1 task-4] zNiIDWHaQbqckxcKRdayHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.688 [XNIO-1 task-4] zNiIDWHaQbqckxcKRdayHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 415f5635-efa4-434e-9d94-19b383709f99 scope = null +09:03:02.691 [XNIO-1 task-6] LAT3Q8kAQjelRiqY2z8Cyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.691 [XNIO-1 task-6] LAT3Q8kAQjelRiqY2z8Cyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.691 [XNIO-1 task-6] LAT3Q8kAQjelRiqY2z8Cyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.692 [XNIO-1 task-6] LAT3Q8kAQjelRiqY2z8Cyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.696 [XNIO-1 task-6] LAT3Q8kAQjelRiqY2z8Cyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.699 [XNIO-1 task-5] 711CeECVSZyQVuByqy9jug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.699 [XNIO-1 task-5] 711CeECVSZyQVuByqy9jug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.699 [XNIO-1 task-5] 711CeECVSZyQVuByqy9jug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.699 [XNIO-1 task-5] 711CeECVSZyQVuByqy9jug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = D4tkN7x3TNa46W0-AS5gCQ redirectUri = http://localhost:8080/authorization +09:03:02.702 [XNIO-1 task-4] zNiIDWHaQbqckxcKRdayHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.704 [XNIO-1 task-6] puMd26J6RdC5uVSVYxTl9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.704 [XNIO-1 task-6] puMd26J6RdC5uVSVYxTl9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.704 [XNIO-1 task-6] puMd26J6RdC5uVSVYxTl9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.704 [XNIO-1 task-6] puMd26J6RdC5uVSVYxTl9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.705 [XNIO-1 task-5] 711CeECVSZyQVuByqy9jug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.712 [XNIO-1 task-6] puMd26J6RdC5uVSVYxTl9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.716 [XNIO-1 task-6] 4zqb8KLITqm44xPOa9uSZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.716 [XNIO-1 task-6] 4zqb8KLITqm44xPOa9uSZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.717 [XNIO-1 task-6] 4zqb8KLITqm44xPOa9uSZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.717 [XNIO-1 task-6] 4zqb8KLITqm44xPOa9uSZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", "Basic ODhmMzExODEtZjc5NC00ZDU5LWFjYTktMzYyM2I4YjQxY2NiOmZTNmZkUVVHVGpDaWFYMnMyVkpwNHc=", authorization) +09:03:02.722 [XNIO-1 task-6] 4zqb8KLITqm44xPOa9uSZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.731 [XNIO-1 task-6] ur1dZhCbTdyuY_M1dsKbxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.731 [XNIO-1 task-6] ur1dZhCbTdyuY_M1dsKbxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.731 [XNIO-1 task-6] ur1dZhCbTdyuY_M1dsKbxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.731 [XNIO-1 task-6] ur1dZhCbTdyuY_M1dsKbxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", "Basic MTJmMDJiYTgtM2E1Ni00ZDBkLTg1ZDMtM2VlNDljNmM2YTZhOm1IU2NZaU5CVFdDSDNYTi1LNjZmZXc=", authorization) +09:03:02.737 [XNIO-1 task-6] ur1dZhCbTdyuY_M1dsKbxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.746 [XNIO-1 task-6] RgsGYPeiSWK_1Pxcg0anJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.747 [XNIO-1 task-6] RgsGYPeiSWK_1Pxcg0anJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.752 [XNIO-1 task-6] RgsGYPeiSWK_1Pxcg0anJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.753 [XNIO-1 task-6] RgsGYPeiSWK_1Pxcg0anJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzlmZGE5MTMtNjAxNS00NzhkLWIxNDEtOTg1ZDRmMzdjNzBjOmJabEFpcVVXUmNpc3ZKQ2toeTJkTUE=", "Basic MzlmZGE5MTMtNjAxNS00NzhkLWIxNDEtOTg1ZDRmMzdjNzBjOmJabEFpcVVXUmNpc3ZKQ2toeTJkTUE=", authorization) +09:03:02.756 [XNIO-1 task-5] fHBFr_8bSW62wYj8RoELZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.756 [XNIO-1 task-5] fHBFr_8bSW62wYj8RoELZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.756 [XNIO-1 task-5] fHBFr_8bSW62wYj8RoELZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.756 [XNIO-1 task-5] fHBFr_8bSW62wYj8RoELZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUwZGY4M2ItZWRlMC00N2Y1LWE5YmItODA0MTBkY2M4ZWI2Om1pRFoyWHhXVElLSEs0T29zc0ZXMVE=", "Basic NjUwZGY4M2ItZWRlMC00N2Y1LWE5YmItODA0MTBkY2M4ZWI2Om1pRFoyWHhXVElLSEs0T29zc0ZXMVE=", authorization) +09:03:02.758 [XNIO-1 task-6] RgsGYPeiSWK_1Pxcg0anJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.763 [XNIO-1 task-5] fHBFr_8bSW62wYj8RoELZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.763 [XNIO-1 task-5] fHBFr_8bSW62wYj8RoELZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.771 [XNIO-1 task-6] BJ414KXiRdWIWsoep-2tyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.771 [XNIO-1 task-6] BJ414KXiRdWIWsoep-2tyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.771 [XNIO-1 task-6] BJ414KXiRdWIWsoep-2tyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.771 [XNIO-1 task-6] BJ414KXiRdWIWsoep-2tyQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.772 [XNIO-1 task-4] 8APHfz7lSKSocFh5-4Se4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.772 [XNIO-1 task-4] 8APHfz7lSKSocFh5-4Se4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.773 [XNIO-1 task-4] 8APHfz7lSKSocFh5-4Se4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.773 [XNIO-1 task-4] 8APHfz7lSKSocFh5-4Se4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1685a10a-d573-4c61-ab69-975d682d40a8 scope = null +09:03:02.777 [XNIO-1 task-6] BJ414KXiRdWIWsoep-2tyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.780 [XNIO-1 task-6] jLmAVfxeTtuFeuriTlcz5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.780 [XNIO-1 task-6] jLmAVfxeTtuFeuriTlcz5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.780 [XNIO-1 task-6] jLmAVfxeTtuFeuriTlcz5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.780 [XNIO-1 task-6] jLmAVfxeTtuFeuriTlcz5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8DfnaKjbSJqIOronc_MvyQ redirectUri = http://localhost:8080/authorization +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1685a10a-d573-4c61-ab69-975d682d40a8 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:03:02.784 [XNIO-1 task-4] fkS45kRPTia2XhoD8HgcdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.784 [XNIO-1 task-4] fkS45kRPTia2XhoD8HgcdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.784 [XNIO-1 task-4] fkS45kRPTia2XhoD8HgcdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.784 [XNIO-1 task-4] fkS45kRPTia2XhoD8HgcdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.784 [XNIO-1 task-4] fkS45kRPTia2XhoD8HgcdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.785 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0b604115-7915-40fa-bc54-4e9c11771254 +09:03:02.789 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4da004d9 +09:03:02.790 [XNIO-1 task-6] jLmAVfxeTtuFeuriTlcz5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.790 [XNIO-1 task-6] jLmAVfxeTtuFeuriTlcz5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.791 [XNIO-1 task-4] fkS45kRPTia2XhoD8HgcdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.793 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:002bf5d8 +09:03:02.798 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4da004d9 +09:03:02.799 [XNIO-1 task-6] OeWPXGdDTMKsfGh3Hya9cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.799 [XNIO-1 task-6] OeWPXGdDTMKsfGh3Hya9cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.799 [XNIO-1 task-6] OeWPXGdDTMKsfGh3Hya9cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.800 [XNIO-1 task-6] OeWPXGdDTMKsfGh3Hya9cA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.805 [XNIO-1 task-6] OeWPXGdDTMKsfGh3Hya9cA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.812 [XNIO-1 task-6] Paw7coJlRYyQpJRDIcyYyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.812 [XNIO-1 task-6] Paw7coJlRYyQpJRDIcyYyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.812 [XNIO-1 task-6] Paw7coJlRYyQpJRDIcyYyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.813 [XNIO-1 task-6] Paw7coJlRYyQpJRDIcyYyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.818 [XNIO-1 task-6] Paw7coJlRYyQpJRDIcyYyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.823 [XNIO-1 task-6] FoYicw-TRm2pp6DRMODmqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.823 [XNIO-1 task-6] FoYicw-TRm2pp6DRMODmqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.824 [XNIO-1 task-6] FoYicw-TRm2pp6DRMODmqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.824 [XNIO-1 task-6] FoYicw-TRm2pp6DRMODmqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI0MmZmY2QtM2YxNS00OGE3LWI3NjMtYmQyNTQwMGU2YzQ5OmcyLVh1NzNmUkVpQVhKTDRXRDdJRHc=", "Basic ZmI0MmZmY2QtM2YxNS00OGE3LWI3NjMtYmQyNTQwMGU2YzQ5OmcyLVh1NzNmUkVpQVhKTDRXRDdJRHc=", authorization) +09:03:02.829 [XNIO-1 task-6] FoYicw-TRm2pp6DRMODmqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.834 [XNIO-1 task-6] OzN2Gr7ATJurzZn2Or7Qmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.834 [XNIO-1 task-6] OzN2Gr7ATJurzZn2Or7Qmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.834 [XNIO-1 task-6] OzN2Gr7ATJurzZn2Or7Qmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.834 [XNIO-1 task-6] OzN2Gr7ATJurzZn2Or7Qmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzEwZmUyN2UtN2Q4My00YWIzLWE4ZDAtNDJjZDZhNzQ5NGQ5OlBQM09yX2R6UTJhV3VVNWJaRk9lVkE=", "Basic YzEwZmUyN2UtN2Q4My00YWIzLWE4ZDAtNDJjZDZhNzQ5NGQ5OlBQM09yX2R6UTJhV3VVNWJaRk9lVkE=", authorization) +09:03:02.836 [XNIO-1 task-4] bVdy7KwERcWXPA7C8GJmOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.836 [XNIO-1 task-4] bVdy7KwERcWXPA7C8GJmOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.836 [XNIO-1 task-4] bVdy7KwERcWXPA7C8GJmOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.836 [XNIO-1 task-4] bVdy7KwERcWXPA7C8GJmOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWU1M2Y4YTUtYTMzOS00MTlhLTljZDctMDM5NWU4MzMwY2MyOkJLQ2JsZ1FhU1BldmxBenVYTkZ6Z2c=", "Basic ZWU1M2Y4YTUtYTMzOS00MTlhLTljZDctMDM5NWU4MzMwY2MyOkJLQ2JsZ1FhU1BldmxBenVYTkZ6Z2c=", authorization) +09:03:02.839 [XNIO-1 task-6] OzN2Gr7ATJurzZn2Or7Qmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.839 [XNIO-1 task-6] OzN2Gr7ATJurzZn2Or7Qmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.841 [XNIO-1 task-4] bVdy7KwERcWXPA7C8GJmOA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.842 [XNIO-1 task-5] 4u_6IeVCSYiaI9iB5pYhHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.842 [XNIO-1 task-5] 4u_6IeVCSYiaI9iB5pYhHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.842 [XNIO-1 task-5] 4u_6IeVCSYiaI9iB5pYhHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.842 [XNIO-1 task-5] 4u_6IeVCSYiaI9iB5pYhHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WShuSU-1TMePCp6xnpNgkg redirectUri = http://localhost:8080/authorization +09:03:02.847 [XNIO-1 task-6] svwQ80TrT5yEe-0O1Lowzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.847 [XNIO-1 task-6] svwQ80TrT5yEe-0O1Lowzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.847 [XNIO-1 task-6] svwQ80TrT5yEe-0O1Lowzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.847 [XNIO-1 task-5] 4u_6IeVCSYiaI9iB5pYhHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:02.848 [XNIO-1 task-5] 4u_6IeVCSYiaI9iB5pYhHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.849 [XNIO-1 task-4] cvwOpVrPRqu8D5riyof1Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.850 [XNIO-1 task-4] cvwOpVrPRqu8D5riyof1Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.850 [XNIO-1 task-4] cvwOpVrPRqu8D5riyof1Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.850 [XNIO-1 task-4] cvwOpVrPRqu8D5riyof1Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzEwZmUyN2UtN2Q4My00YWIzLWE4ZDAtNDJjZDZhNzQ5NGQ5OlBQM09yX2R6UTJhV3VVNWJaRk9lVkE=", "Basic YzEwZmUyN2UtN2Q4My00YWIzLWE4ZDAtNDJjZDZhNzQ5NGQ5OlBQM09yX2R6UTJhV3VVNWJaRk9lVkE=", authorization) +09:03:02.851 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ba7b244a-c551-4745-bfa0-295c7c734ce0 +09:03:02.852 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ba7b244a-c551-4745-bfa0-295c7c734ce0 +09:03:02.854 [XNIO-1 task-6] svwQ80TrT5yEe-0O1Lowzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.859 [XNIO-1 task-6] iuDFxYbYTEmsbNNb4RCOgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.859 [XNIO-1 task-6] iuDFxYbYTEmsbNNb4RCOgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.860 [XNIO-1 task-6] iuDFxYbYTEmsbNNb4RCOgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.860 [XNIO-1 task-6] iuDFxYbYTEmsbNNb4RCOgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.862 [XNIO-1 task-4] cvwOpVrPRqu8D5riyof1Pw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.865 [XNIO-1 task-6] iuDFxYbYTEmsbNNb4RCOgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.871 [XNIO-1 task-4] u-KU0lunRueHejS34uyb0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.871 [XNIO-1 task-4] u-KU0lunRueHejS34uyb0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.872 [XNIO-1 task-4] u-KU0lunRueHejS34uyb0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.872 [XNIO-1 task-4] u-KU0lunRueHejS34uyb0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.877 [XNIO-1 task-4] u-KU0lunRueHejS34uyb0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.882 [XNIO-1 task-4] ayMowEP2SeGX2juVQPfSRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.882 [XNIO-1 task-4] ayMowEP2SeGX2juVQPfSRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.882 [XNIO-1 task-4] ayMowEP2SeGX2juVQPfSRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.882 [XNIO-1 task-4] ayMowEP2SeGX2juVQPfSRQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.888 [XNIO-1 task-4] ayMowEP2SeGX2juVQPfSRQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.896 [XNIO-1 task-4] zsrwUtflRJ-Zs-cetKsMVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.896 [XNIO-1 task-4] zsrwUtflRJ-Zs-cetKsMVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.897 [XNIO-1 task-4] zsrwUtflRJ-Zs-cetKsMVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.897 [XNIO-1 task-4] zsrwUtflRJ-Zs-cetKsMVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.933 [XNIO-1 task-4] zsrwUtflRJ-Zs-cetKsMVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.937 [XNIO-1 task-4] GF_VIr7eSF-9Rjs42_gHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.937 [XNIO-1 task-4] GF_VIr7eSF-9Rjs42_gHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.938 [XNIO-1 task-4] GF_VIr7eSF-9Rjs42_gHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.938 [XNIO-1 task-4] GF_VIr7eSF-9Rjs42_gHig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = w_cGgjTlSkasMElx235Wrw redirectUri = http://localhost:8080/authorization +09:03:02.942 [XNIO-1 task-6] TDE00x2mRwiBiojkzSkC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.942 [XNIO-1 task-6] TDE00x2mRwiBiojkzSkC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.942 [XNIO-1 task-6] TDE00x2mRwiBiojkzSkC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.942 [XNIO-1 task-6] TDE00x2mRwiBiojkzSkC3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:02.944 [XNIO-1 task-4] GF_VIr7eSF-9Rjs42_gHig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.947 [XNIO-1 task-6] TDE00x2mRwiBiojkzSkC3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.953 [XNIO-1 task-4] 71ex6HhiSFiGK8iMLdsNNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.954 [XNIO-1 task-4] 71ex6HhiSFiGK8iMLdsNNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.954 [XNIO-1 task-4] 71ex6HhiSFiGK8iMLdsNNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.954 [XNIO-1 task-4] 71ex6HhiSFiGK8iMLdsNNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +09:03:02.957 [XNIO-1 task-6] eqo5tJ9LR8mi-D1A7pMpQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.957 [XNIO-1 task-6] eqo5tJ9LR8mi-D1A7pMpQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.957 [XNIO-1 task-6] eqo5tJ9LR8mi-D1A7pMpQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.957 [XNIO-1 task-6] eqo5tJ9LR8mi-D1A7pMpQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", authorization) +09:03:02.959 [XNIO-1 task-4] 71ex6HhiSFiGK8iMLdsNNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.965 [XNIO-1 task-4] hnUq-8fuSMyKwjlYJi3UNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.965 [XNIO-1 task-4] hnUq-8fuSMyKwjlYJi3UNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.965 [XNIO-1 task-4] hnUq-8fuSMyKwjlYJi3UNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.965 [XNIO-1 task-4] hnUq-8fuSMyKwjlYJi3UNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) +Jun 29, 2024 9:03:03 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:03:02.968 [XNIO-1 task-6] eqo5tJ9LR8mi-D1A7pMpQg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +09:03:02.970 [XNIO-1 task-4] hnUq-8fuSMyKwjlYJi3UNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:03:02.983 [XNIO-1 task-6] domJo0EhQ8ay6P2P0mdMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +09:03:02.983 [XNIO-1 task-6] domJo0EhQ8ay6P2P0mdMuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", "Basic NzZjODdiOWUtOWQxNy00MzBhLTliODEtMzMxOGQyZmI5MDczOl8wOFBHNEF4U1c2MzFMNUtWSXVpcUE=", authorization) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +09:03:02.984 [XNIO-1 task-4] eN1FpIPbTlGP_rnkVb_wHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.984 [XNIO-1 task-4] eN1FpIPbTlGP_rnkVb_wHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:02.984 [XNIO-1 task-4] eN1FpIPbTlGP_rnkVb_wHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:02.984 [XNIO-1 task-4] eN1FpIPbTlGP_rnkVb_wHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.984 [XNIO-1 task-4] eN1FpIPbTlGP_rnkVb_wHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", authorization) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:03:02.984 [XNIO-1 task-4] eN1FpIPbTlGP_rnkVb_wHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7dedb3a0-f705-4db5-91df-2547181434e6 scope = null +09:03:02.988 [XNIO-1 task-6] domJo0EhQ8ay6P2P0mdMuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:02.988 [XNIO-1 task-6] domJo0EhQ8ay6P2P0mdMuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.993 [XNIO-1 task-6] H9jKUcnDRTaikOqq_4cciw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.993 [XNIO-1 task-6] H9jKUcnDRTaikOqq_4cciw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:02.993 [XNIO-1 task-6] H9jKUcnDRTaikOqq_4cciw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:03:02.995 [XNIO-1 task-4] eN1FpIPbTlGP_rnkVb_wHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:02.999 [XNIO-1 task-6] H9jKUcnDRTaikOqq_4cciw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.004 [XNIO-1 task-6] 9s3joZDAQduv4o4urvcfxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.004 [XNIO-1 task-6] 9s3joZDAQduv4o4urvcfxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.004 [XNIO-1 task-6] 9s3joZDAQduv4o4urvcfxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.004 [XNIO-1 task-6] 9s3joZDAQduv4o4urvcfxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.008 [XNIO-1 task-4] DEaGxIAlT5q_0L9179l-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.008 [XNIO-1 task-4] DEaGxIAlT5q_0L9179l-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.008 [XNIO-1 task-4] DEaGxIAlT5q_0L9179l-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.009 [XNIO-1 task-4] DEaGxIAlT5q_0L9179l-mA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b9f6fe14-5213-4969-8c90-16a66ffec43d scope = null +09:03:03.009 [XNIO-1 task-6] 9s3joZDAQduv4o4urvcfxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.013 [XNIO-1 task-6] bwKwlIxhSMiv51M_WuObaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.013 [XNIO-1 task-6] bwKwlIxhSMiv51M_WuObaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.013 [XNIO-1 task-6] bwKwlIxhSMiv51M_WuObaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.013 [XNIO-1 task-6] bwKwlIxhSMiv51M_WuObaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = xgR1lyYnSmOZh8ICIG-L2A redirectUri = http://localhost:8080/authorization +09:03:03.016 [XNIO-1 task-5] 56qJ0tTVR52piKXGaOJBRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.016 [XNIO-1 task-5] 56qJ0tTVR52piKXGaOJBRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.017 [XNIO-1 task-5] 56qJ0tTVR52piKXGaOJBRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.017 [XNIO-1 task-5] 56qJ0tTVR52piKXGaOJBRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.018 [XNIO-1 task-4] DEaGxIAlT5q_0L9179l-mA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.020 [XNIO-1 task-6] bwKwlIxhSMiv51M_WuObaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:03.020 [XNIO-1 task-6] bwKwlIxhSMiv51M_WuObaA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.022 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4c6c1086-fd22-4e21-a19d-4dbf28bcafff +09:03:03.023 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c6c1086-fd22-4e21-a19d-4dbf28bcafff +09:03:03.033 [XNIO-1 task-6] jgKHoYZnS0yhOcB94YsTvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.033 [XNIO-1 task-6] jgKHoYZnS0yhOcB94YsTvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.033 [XNIO-1 task-6] jgKHoYZnS0yhOcB94YsTvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.033 [XNIO-1 task-6] jgKHoYZnS0yhOcB94YsTvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWU1M2Y4YTUtYTMzOS00MTlhLTljZDctMDM5NWU4MzMwY2MyOkJLQ2JsZ1FhU1BldmxBenVYTkZ6Z2c=", "Basic ZWU1M2Y4YTUtYTMzOS00MTlhLTljZDctMDM5NWU4MzMwY2MyOkJLQ2JsZ1FhU1BldmxBenVYTkZ6Z2c=", authorization) +09:03:03.038 [XNIO-1 task-6] jgKHoYZnS0yhOcB94YsTvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.038 [XNIO-1 task-4] E6yqvjJUT5exblmLlfAMAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.038 [XNIO-1 task-4] E6yqvjJUT5exblmLlfAMAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.039 [XNIO-1 task-4] E6yqvjJUT5exblmLlfAMAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.039 [XNIO-1 task-4] E6yqvjJUT5exblmLlfAMAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", "Basic NDVhMDkxZTctNWUxNS00ZjNiLWI0OTMtOWFhZTQ2YzUyZWE3OkVlWjI5LXJ5Uy1XT0YyX2FaVENibHc=", authorization) +09:03:03.044 [XNIO-1 task-6] 2oY_EobpT7a9lNzUusZYtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.044 [XNIO-1 task-6] 2oY_EobpT7a9lNzUusZYtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.044 [XNIO-1 task-6] 2oY_EobpT7a9lNzUusZYtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.044 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4c6c1086-fd22-4e21-a19d-4dbf28bcafff +09:03:03.045 [XNIO-1 task-6] 2oY_EobpT7a9lNzUusZYtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.050 [XNIO-1 task-6] 2oY_EobpT7a9lNzUusZYtQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.050 [XNIO-1 task-6] 2oY_EobpT7a9lNzUusZYtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.060 [XNIO-1 task-4] bOXQGL3NTSySQD7VsgRlog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.060 [XNIO-1 task-4] bOXQGL3NTSySQD7VsgRlog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.060 [XNIO-1 task-4] bOXQGL3NTSySQD7VsgRlog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.060 [XNIO-1 task-4] bOXQGL3NTSySQD7VsgRlog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.065 [XNIO-1 task-4] bOXQGL3NTSySQD7VsgRlog INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.076 [XNIO-1 task-4] HiyiAXfPT2CF6jKgGMUlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.076 [XNIO-1 task-4] HiyiAXfPT2CF6jKgGMUlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.076 [XNIO-1 task-4] HiyiAXfPT2CF6jKgGMUlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.076 [XNIO-1 task-4] HiyiAXfPT2CF6jKgGMUlGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.079 [XNIO-1 task-6] SVdIKd7MRb-P3FGzV7gX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.080 [XNIO-1 task-6] SVdIKd7MRb-P3FGzV7gX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.080 [XNIO-1 task-6] SVdIKd7MRb-P3FGzV7gX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.080 [XNIO-1 task-6] SVdIKd7MRb-P3FGzV7gX5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _LMv6Mu4S3CdSENI0Hr1Kg redirectUri = http://localhost:8080/authorization +09:03:03.081 [XNIO-1 task-4] HiyiAXfPT2CF6jKgGMUlGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.084 [XNIO-1 task-4] 2Cuv2OQdQO-_aVNrxxLV2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.084 [XNIO-1 task-4] 2Cuv2OQdQO-_aVNrxxLV2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.084 [XNIO-1 task-4] 2Cuv2OQdQO-_aVNrxxLV2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.084 [XNIO-1 task-4] 2Cuv2OQdQO-_aVNrxxLV2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.085 [XNIO-1 task-5] Pr9BfzeGTPmLG8xnoBE68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.086 [XNIO-1 task-5] Pr9BfzeGTPmLG8xnoBE68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.086 [XNIO-1 task-5] Pr9BfzeGTPmLG8xnoBE68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.086 [XNIO-1 task-5] Pr9BfzeGTPmLG8xnoBE68Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = yY9V0Fr4QtWSQ8WwDitUHA redirectUri = http://localhost:8080/authorization +09:03:03.088 [XNIO-1 task-6] SVdIKd7MRb-P3FGzV7gX5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.089 [XNIO-1 task-4] 2Cuv2OQdQO-_aVNrxxLV2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.092 [XNIO-1 task-5] Pr9BfzeGTPmLG8xnoBE68Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:03.093 [XNIO-1 task-5] Pr9BfzeGTPmLG8xnoBE68Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.094 [XNIO-1 task-4] xvUvmjBMQV-OyYCNiKD2Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.094 [XNIO-1 task-4] xvUvmjBMQV-OyYCNiKD2Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.094 [XNIO-1 task-4] xvUvmjBMQV-OyYCNiKD2Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.094 [XNIO-1 task-4] xvUvmjBMQV-OyYCNiKD2Gw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.099 [XNIO-1 task-4] xvUvmjBMQV-OyYCNiKD2Gw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.103 [XNIO-1 task-4] jp3B8HH9Qsyrfn6yW5RsKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.103 [XNIO-1 task-4] jp3B8HH9Qsyrfn6yW5RsKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.103 [XNIO-1 task-4] jp3B8HH9Qsyrfn6yW5RsKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.103 [XNIO-1 task-4] jp3B8HH9Qsyrfn6yW5RsKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.108 [XNIO-1 task-4] jp3B8HH9Qsyrfn6yW5RsKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.112 [XNIO-1 task-4] 5SaIIwmiTXG98OvKun4X8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.112 [XNIO-1 task-4] 5SaIIwmiTXG98OvKun4X8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.112 [XNIO-1 task-4] 5SaIIwmiTXG98OvKun4X8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.112 [XNIO-1 task-4] 5SaIIwmiTXG98OvKun4X8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.117 [XNIO-1 task-4] 5SaIIwmiTXG98OvKun4X8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.126 [XNIO-1 task-4] TY4Gw-xESMm7h30kyGbXgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.126 [XNIO-1 task-4] TY4Gw-xESMm7h30kyGbXgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.126 [XNIO-1 task-4] TY4Gw-xESMm7h30kyGbXgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.126 [XNIO-1 task-4] TY4Gw-xESMm7h30kyGbXgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.132 [XNIO-1 task-4] TY4Gw-xESMm7h30kyGbXgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.136 [XNIO-1 task-4] DdH8aMaeT0iKg-BGpv_2dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.136 [XNIO-1 task-4] DdH8aMaeT0iKg-BGpv_2dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.136 [XNIO-1 task-4] DdH8aMaeT0iKg-BGpv_2dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.136 [XNIO-1 task-4] DdH8aMaeT0iKg-BGpv_2dA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.137 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8072ce34 +09:03:03.141 [XNIO-1 task-4] DdH8aMaeT0iKg-BGpv_2dA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.145 [XNIO-1 task-4] _JCH4cTISna0hiQXf1veUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.145 [XNIO-1 task-5] LwV9PC0rQr2sGhZZWVZx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.146 [XNIO-1 task-5] LwV9PC0rQr2sGhZZWVZx9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.146 [XNIO-1 task-5] LwV9PC0rQr2sGhZZWVZx9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.146 [XNIO-1 task-4] _JCH4cTISna0hiQXf1veUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.146 [XNIO-1 task-5] LwV9PC0rQr2sGhZZWVZx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.147 [XNIO-1 task-4] _JCH4cTISna0hiQXf1veUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", authorization) +09:03:03.147 [XNIO-1 task-4] _JCH4cTISna0hiQXf1veUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VGwuefSSSnS79mlKYWXMKA redirectUri = http://localhost:8080/authorization +09:03:03.149 [XNIO-1 task-6] ub54LswHQ8malDid0A7hwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.150 [XNIO-1 task-6] ub54LswHQ8malDid0A7hwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.150 [XNIO-1 task-6] ub54LswHQ8malDid0A7hwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.150 [XNIO-1 task-6] ub54LswHQ8malDid0A7hwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQwYWI2YWItMTQyMS00YzFjLWFiMWQtYzU5MTViNzQ1YTExOm1mV0NDQ3lhUU55VlJVZDQwZnROcnc=", "Basic NWQwYWI2YWItMTQyMS00YzFjLWFiMWQtYzU5MTViNzQ1YTExOm1mV0NDQ3lhUU55VlJVZDQwZnROcnc=", authorization) +09:03:03.152 [XNIO-1 task-4] _JCH4cTISna0hiQXf1veUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:03.152 [XNIO-1 task-4] _JCH4cTISna0hiQXf1veUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.152 [XNIO-1 task-5] LwV9PC0rQr2sGhZZWVZx9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.154 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3a0be591-61f7-488c-82fe-1fd9e3fcd467 +09:03:03.155 [XNIO-1 task-6] ub54LswHQ8malDid0A7hwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.160 [XNIO-1 task-4] 8zDuF-GERDOgoknK0qKDLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.161 [XNIO-1 task-4] 8zDuF-GERDOgoknK0qKDLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.161 [XNIO-1 task-4] 8zDuF-GERDOgoknK0qKDLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.161 [XNIO-1 task-4] 8zDuF-GERDOgoknK0qKDLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQwYWI2YWItMTQyMS00YzFjLWFiMWQtYzU5MTViNzQ1YTExOm1mV0NDQ3lhUU55VlJVZDQwZnROcnc=", "Basic NWQwYWI2YWItMTQyMS00YzFjLWFiMWQtYzU5MTViNzQ1YTExOm1mV0NDQ3lhUU55VlJVZDQwZnROcnc=", authorization) +09:03:03.162 [XNIO-1 task-6] 99IDkv4VTw6MpO7qNH3McQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.162 [XNIO-1 task-6] 99IDkv4VTw6MpO7qNH3McQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.162 [XNIO-1 task-6] 99IDkv4VTw6MpO7qNH3McQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.162 [XNIO-1 task-6] 99IDkv4VTw6MpO7qNH3McQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", authorization) +09:03:03.166 [XNIO-1 task-4] 8zDuF-GERDOgoknK0qKDLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.172 [XNIO-1 task-4] jJPCz5VLRo-tCNPVeGflPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.172 [XNIO-1 task-4] jJPCz5VLRo-tCNPVeGflPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.172 [XNIO-1 task-4] jJPCz5VLRo-tCNPVeGflPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.172 [XNIO-1 task-4] jJPCz5VLRo-tCNPVeGflPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQwYWI2YWItMTQyMS00YzFjLWFiMWQtYzU5MTViNzQ1YTExOm1mV0NDQ3lhUU55VlJVZDQwZnROcnc=", "Basic NWQwYWI2YWItMTQyMS00YzFjLWFiMWQtYzU5MTViNzQ1YTExOm1mV0NDQ3lhUU55VlJVZDQwZnROcnc=", authorization) +09:03:03.173 [XNIO-1 task-6] 99IDkv4VTw6MpO7qNH3McQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.178 [XNIO-1 task-4] jJPCz5VLRo-tCNPVeGflPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.187 [XNIO-1 task-6] sHTmTObASMSAfkvxe6XIvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.187 [XNIO-1 task-6] sHTmTObASMSAfkvxe6XIvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.188 [XNIO-1 task-6] sHTmTObASMSAfkvxe6XIvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.188 [XNIO-1 task-6] sHTmTObASMSAfkvxe6XIvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:03.193 [XNIO-1 task-6] sHTmTObASMSAfkvxe6XIvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.194 [XNIO-1 task-4] TCUrT6wgRdWA3MQPWX9ktw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.194 [XNIO-1 task-4] TCUrT6wgRdWA3MQPWX9ktw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.194 [XNIO-1 task-4] TCUrT6wgRdWA3MQPWX9ktw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.195 [XNIO-1 task-4] TCUrT6wgRdWA3MQPWX9ktw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", "Basic MjMyMTg2MTItM2JjYS00ZjE5LTg2ZTAtZDNlNTNjOThhNjc2OnhMWjBRYkhUUWlTS2RJc0xiaFJxOFE=", authorization) +09:03:03.203 [XNIO-1 task-6] _kpE9VwXQFirLYt10WQQ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.205 [XNIO-1 task-6] _kpE9VwXQFirLYt10WQQ7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.205 [XNIO-1 task-6] _kpE9VwXQFirLYt10WQQ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.205 [XNIO-1 task-6] _kpE9VwXQFirLYt10WQQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", "Basic MDhkYWZiZDItNWY4Zi00OTA3LWEzZjgtMTIyNDhjZjliY2Q2OlNjYWszNVp6Um1DV01ZV2wyQnJNQUE=", authorization) +09:03:03.207 [XNIO-1 task-4] TCUrT6wgRdWA3MQPWX9ktw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.211 [XNIO-1 task-6] _kpE9VwXQFirLYt10WQQ7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.221 [XNIO-1 task-6] I7Kh6exfQMy8oFg8qiv-TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.222 [XNIO-1 task-6] I7Kh6exfQMy8oFg8qiv-TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.222 [XNIO-1 task-6] I7Kh6exfQMy8oFg8qiv-TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.222 [XNIO-1 task-6] I7Kh6exfQMy8oFg8qiv-TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", "Basic ZTQ4ODA4MzAtMDJmNy00ODQxLWJmZjgtMDg1ZDUwMTllNGUzOi1oOVp5dEI0U2FPODB5Z1dMNlE1YlE=", authorization) +09:03:03.228 [XNIO-1 task-6] I7Kh6exfQMy8oFg8qiv-TQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.237 [XNIO-1 task-6] xp8hsSXGRJGMsfnZxFB8MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.237 [XNIO-1 task-6] xp8hsSXGRJGMsfnZxFB8MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.237 [XNIO-1 task-6] xp8hsSXGRJGMsfnZxFB8MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.237 [XNIO-1 task-6] xp8hsSXGRJGMsfnZxFB8MA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4MGY4YjktYzUxOS00ZDBjLWJlNzMtZmRjZDAwNzljZTQ3OlVHaU5MMkIwU2thdTdJWTB0dENYV3c=", "Basic NDM4MGY4YjktYzUxOS00ZDBjLWJlNzMtZmRjZDAwNzljZTQ3OlVHaU5MMkIwU2thdTdJWTB0dENYV3c=", authorization) +09:03:03.244 [XNIO-1 task-6] xp8hsSXGRJGMsfnZxFB8MA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.245 [XNIO-1 task-4] BrSbka_5QIeDVOqaDhUESw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.245 [XNIO-1 task-4] BrSbka_5QIeDVOqaDhUESw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.245 [XNIO-1 task-4] BrSbka_5QIeDVOqaDhUESw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.246 [XNIO-1 task-4] BrSbka_5QIeDVOqaDhUESw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:03.248 [XNIO-1 task-6] kbrD4yzvSXa20ZFwTqQnbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.248 [XNIO-1 task-6] kbrD4yzvSXa20ZFwTqQnbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.249 [XNIO-1 task-6] kbrD4yzvSXa20ZFwTqQnbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.249 [XNIO-1 task-6] kbrD4yzvSXa20ZFwTqQnbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUwZGY4M2ItZWRlMC00N2Y1LWE5YmItODA0MTBkY2M4ZWI2Om1pRFoyWHhXVElLSEs0T29zc0ZXMVE=", "Basic NjUwZGY4M2ItZWRlMC00N2Y1LWE5YmItODA0MTBkY2M4ZWI2Om1pRFoyWHhXVElLSEs0T29zc0ZXMVE=", authorization) +09:03:03.252 [XNIO-1 task-4] BrSbka_5QIeDVOqaDhUESw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:03:03.252 [XNIO-1 task-4] BrSbka_5QIeDVOqaDhUESw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.252 [XNIO-1 task-5] qmOnowOBT_KqH5thE1rEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.252 [XNIO-1 task-5] qmOnowOBT_KqH5thE1rEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.253 [XNIO-1 task-5] qmOnowOBT_KqH5thE1rEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.253 [XNIO-1 task-5] qmOnowOBT_KqH5thE1rEzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = n2H9iZuAQZyUmKvSgMXEAw redirectUri = http://localhost:8080/authorization +09:03:03.254 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dc5d2a27-30dd-44c2-9a3d-62a830f31adf +09:03:03.254 [XNIO-1 task-6] kbrD4yzvSXa20ZFwTqQnbA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:03:03.258 [XNIO-1 task-6] efP_QlR3RSGgUiIudvnRAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.258 [XNIO-1 task-6] efP_QlR3RSGgUiIudvnRAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.258 [XNIO-1 task-6] efP_QlR3RSGgUiIudvnRAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.258 [XNIO-1 task-6] efP_QlR3RSGgUiIudvnRAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:03:03.259 [XNIO-1 task-5] qmOnowOBT_KqH5thE1rEzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.262 [XNIO-1 task-4] QXXVcI5bTl6SrCkL0s1n1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.262 [XNIO-1 task-4] QXXVcI5bTl6SrCkL0s1n1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:03:03.262 [XNIO-1 task-4] QXXVcI5bTl6SrCkL0s1n1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:03:03.262 [XNIO-1 task-4] QXXVcI5bTl6SrCkL0s1n1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", "Basic YzQ2NmEyYjktMmE1NC00Yzc3LTljNzEtY2Y1NDY5ZTQxNzA4OnIxMTBGSERqUXd5NnVaMG9pcVlJMWc=", authorization) +09:03:03.264 [XNIO-1 task-6] efP_QlR3RSGgUiIudvnRAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:03:03.268 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:dc5d2a27-30dd-44c2-9a3d-62a830f31adf +09:03:03.270 [XNIO-1 task-6] Xjpn7WRxSQ2b4TO4odGoow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.270 [XNIO-1 task-6] Xjpn7WRxSQ2b4TO4odGoow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.270 [XNIO-1 task-6] Xjpn7WRxSQ2b4TO4odGoow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:03:03.270 [XNIO-1 task-6] Xjpn7WRxSQ2b4TO4odGoow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null diff --git a/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..1d56ef0 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_1/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1822 @@ +09:02:57.861 [XNIO-1 task-1] mqU8l2_HRRyR5Jin7mg9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "920f67ac-061d-4f4f-91a4-e92bcfcb4ccc", {"password":"a54c83b5-79b9-4b55-8de6-bb90a71761ea","newPassword":"920f67ac-061d-4f4f-91a4-e92bcfcb4ccc","newPasswordConfirm":"920f67ac-061d-4f4f-91a4-e92bcfcb4ccc"}, requestBody.newPassword) +09:02:57.877 [XNIO-1 task-1] rH1Qwv9CTJ2kl3WMGnSiTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/826ea71b, base path is set to: null +09:02:57.877 [XNIO-1 task-1] rH1Qwv9CTJ2kl3WMGnSiTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:57.877 [XNIO-1 task-1] rH1Qwv9CTJ2kl3WMGnSiTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:57.877 [XNIO-1 task-1] rH1Qwv9CTJ2kl3WMGnSiTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/826ea71b, base path is set to: null +09:02:57.877 [XNIO-1 task-1] rH1Qwv9CTJ2kl3WMGnSiTA DEBUG com.networknt.schema.TypeValidator debug - validate( "826ea71b", "826ea71b", userId) +09:02:57.884 [XNIO-1 task-1] 4dOl5iuKQ0qqXy3qG88aDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.884 [XNIO-1 task-1] 4dOl5iuKQ0qqXy3qG88aDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.884 [XNIO-1 task-1] 4dOl5iuKQ0qqXy3qG88aDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.884 [XNIO-1 task-1] 4dOl5iuKQ0qqXy3qG88aDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:57.890 [XNIO-1 task-1] gd5b5NjgR4W_ZYVRKYVWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.890 [XNIO-1 task-1] gd5b5NjgR4W_ZYVRKYVWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.891 [XNIO-1 task-1] gd5b5NjgR4W_ZYVRKYVWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.902 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb0dec17 +09:02:57.902 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.902 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:57.902 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:57.902 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb0dec17 +09:02:57.902 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"62ea7a03-83d6-45f0-b384-427e6821daef","newPassword":"b4618af2-be81-4bb8-bd78-f393eb1df420","newPasswordConfirm":"b4618af2-be81-4bb8-bd78-f393eb1df420"}, {"password":"62ea7a03-83d6-45f0-b384-427e6821daef","newPassword":"b4618af2-be81-4bb8-bd78-f393eb1df420","newPasswordConfirm":"b4618af2-be81-4bb8-bd78-f393eb1df420"}, requestBody) +09:02:57.903 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"62ea7a03-83d6-45f0-b384-427e6821daef","newPassword":"b4618af2-be81-4bb8-bd78-f393eb1df420","newPasswordConfirm":"b4618af2-be81-4bb8-bd78-f393eb1df420"}, {"password":"62ea7a03-83d6-45f0-b384-427e6821daef","newPassword":"b4618af2-be81-4bb8-bd78-f393eb1df420","newPasswordConfirm":"b4618af2-be81-4bb8-bd78-f393eb1df420"}, requestBody) +09:02:57.903 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG com.networknt.schema.FormatValidator debug - validate( "b4618af2-be81-4bb8-bd78-f393eb1df420", {"password":"62ea7a03-83d6-45f0-b384-427e6821daef","newPassword":"b4618af2-be81-4bb8-bd78-f393eb1df420","newPasswordConfirm":"b4618af2-be81-4bb8-bd78-f393eb1df420"}, requestBody.newPasswordConfirm) +09:02:57.903 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG com.networknt.schema.FormatValidator debug - validate( "62ea7a03-83d6-45f0-b384-427e6821daef", {"password":"62ea7a03-83d6-45f0-b384-427e6821daef","newPassword":"b4618af2-be81-4bb8-bd78-f393eb1df420","newPasswordConfirm":"b4618af2-be81-4bb8-bd78-f393eb1df420"}, requestBody.password) +09:02:57.903 [XNIO-1 task-1] zKd8G1wqQfWpkpgwZcKNow DEBUG com.networknt.schema.FormatValidator debug - validate( "b4618af2-be81-4bb8-bd78-f393eb1df420", {"password":"62ea7a03-83d6-45f0-b384-427e6821daef","newPassword":"b4618af2-be81-4bb8-bd78-f393eb1df420","newPasswordConfirm":"b4618af2-be81-4bb8-bd78-f393eb1df420"}, requestBody.newPassword) +09:02:57.918 [XNIO-1 task-1] PTCNWxdxTDmtjVCV1kbAgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.918 [XNIO-1 task-1] PTCNWxdxTDmtjVCV1kbAgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.919 [XNIO-1 task-1] PTCNWxdxTDmtjVCV1kbAgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.925 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4f32aef4 +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f32aef4, base path is set to: null +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f32aef4, base path is set to: null +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG com.networknt.schema.TypeValidator debug - validate( "4f32aef4", "4f32aef4", userId) +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6487e71d-2f8f-4af3-88ca-032c09907ad9","newPassword":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPasswordConfirm":"c0827092-72ae-42eb-afd6-03b647b2bcb6"}, {"password":"6487e71d-2f8f-4af3-88ca-032c09907ad9","newPassword":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPasswordConfirm":"c0827092-72ae-42eb-afd6-03b647b2bcb6"}, requestBody) +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0827092-72ae-42eb-afd6-03b647b2bcb6", {"password":"6487e71d-2f8f-4af3-88ca-032c09907ad9","newPassword":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPasswordConfirm":"c0827092-72ae-42eb-afd6-03b647b2bcb6"}, requestBody.newPasswordConfirm) +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG com.networknt.schema.TypeValidator debug - validate( "6487e71d-2f8f-4af3-88ca-032c09907ad9", {"password":"6487e71d-2f8f-4af3-88ca-032c09907ad9","newPassword":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPasswordConfirm":"c0827092-72ae-42eb-afd6-03b647b2bcb6"}, requestBody.password) +09:02:57.933 [XNIO-1 task-1] XODXdMDqTD2bS8ArXojJUg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0827092-72ae-42eb-afd6-03b647b2bcb6", {"password":"6487e71d-2f8f-4af3-88ca-032c09907ad9","newPassword":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPasswordConfirm":"c0827092-72ae-42eb-afd6-03b647b2bcb6"}, requestBody.newPassword) +09:02:57.940 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:72b34c24 +09:02:57.941 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:72b34c24 +09:02:57.943 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f32aef4 +09:02:57.948 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:72b34c24 +09:02:57.950 [XNIO-1 task-1] cSQ_dcMfRsKbz2BS_mfmJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.950 [XNIO-1 task-1] cSQ_dcMfRsKbz2BS_mfmJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.950 [XNIO-1 task-1] cSQ_dcMfRsKbz2BS_mfmJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.962 [XNIO-1 task-1] P7na1UNTQ72Yw4Z34jv2PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9b6be7d4 +09:02:57.963 [XNIO-1 task-1] P7na1UNTQ72Yw4Z34jv2PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.963 [XNIO-1 task-1] P7na1UNTQ72Yw4Z34jv2PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:57.963 [XNIO-1 task-1] P7na1UNTQ72Yw4Z34jv2PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9b6be7d4 +09:02:57.966 [XNIO-1 task-1] b9xF99xhQb2sYbn-qPTQkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:57.966 [XNIO-1 task-1] b9xF99xhQb2sYbn-qPTQkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:57.966 [XNIO-1 task-1] b9xF99xhQb2sYbn-qPTQkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:57.975 [XNIO-1 task-1] TDLzUqyIRWSCo1uJZwhDfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f32aef4, base path is set to: null +09:02:57.976 [XNIO-1 task-1] TDLzUqyIRWSCo1uJZwhDfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:57.976 [XNIO-1 task-1] TDLzUqyIRWSCo1uJZwhDfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:57.976 [XNIO-1 task-1] TDLzUqyIRWSCo1uJZwhDfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f32aef4, base path is set to: null +09:02:57.976 [XNIO-1 task-1] TDLzUqyIRWSCo1uJZwhDfA DEBUG com.networknt.schema.TypeValidator debug - validate( "4f32aef4", "4f32aef4", userId) +09:02:57.979 [XNIO-1 task-1] zys4i6mIQmqzO5jRv5su7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.979 [XNIO-1 task-1] zys4i6mIQmqzO5jRv5su7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.979 [XNIO-1 task-1] zys4i6mIQmqzO5jRv5su7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.984 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:72b34c24 +09:02:57.985 [XNIO-1 task-1] hWRDCxlxR3-bADqrTsQoWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9b6be7d4 +09:02:57.985 [XNIO-1 task-1] hWRDCxlxR3-bADqrTsQoWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:57.985 [XNIO-1 task-1] hWRDCxlxR3-bADqrTsQoWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:57.986 [XNIO-1 task-1] hWRDCxlxR3-bADqrTsQoWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9b6be7d4 +09:02:57.995 [XNIO-1 task-1] hKhnHMsaQmi5tMkNUqgphg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:57.995 [XNIO-1 task-1] hKhnHMsaQmi5tMkNUqgphg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:57.995 [XNIO-1 task-1] hKhnHMsaQmi5tMkNUqgphg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:57.996 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4f32aef4 +09:02:58.001 [XNIO-1 task-1] gp9pzqGoTXaDX_Yqex2rHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fb0dec17, base path is set to: null +09:02:58.001 [XNIO-1 task-1] gp9pzqGoTXaDX_Yqex2rHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.001 [XNIO-1 task-1] gp9pzqGoTXaDX_Yqex2rHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.002 [XNIO-1 task-1] gp9pzqGoTXaDX_Yqex2rHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fb0dec17, base path is set to: null +09:02:58.002 [XNIO-1 task-1] gp9pzqGoTXaDX_Yqex2rHw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0dec17", "fb0dec17", userId) +09:02:58.004 [XNIO-1 task-1] IgsEAD_vQgycF0g3kSPODQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fb0dec17 +09:02:58.004 [XNIO-1 task-1] IgsEAD_vQgycF0g3kSPODQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.004 [XNIO-1 task-1] IgsEAD_vQgycF0g3kSPODQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.004 [XNIO-1 task-1] IgsEAD_vQgycF0g3kSPODQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fb0dec17 +09:02:58.009 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f32aef4, base path is set to: null +09:02:58.009 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.009 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.009 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.009 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f32aef4, base path is set to: null +09:02:58.010 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f32aef4", "4f32aef4", userId) +09:02:58.010 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPassword":"e6bec9d6-6698-459a-95b1-e347361ab747","newPasswordConfirm":"e6bec9d6-6698-459a-95b1-e347361ab747"}, {"password":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPassword":"e6bec9d6-6698-459a-95b1-e347361ab747","newPasswordConfirm":"e6bec9d6-6698-459a-95b1-e347361ab747"}, requestBody) +09:02:58.010 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6bec9d6-6698-459a-95b1-e347361ab747", {"password":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPassword":"e6bec9d6-6698-459a-95b1-e347361ab747","newPasswordConfirm":"e6bec9d6-6698-459a-95b1-e347361ab747"}, requestBody.newPasswordConfirm) +09:02:58.010 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0827092-72ae-42eb-afd6-03b647b2bcb6", {"password":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPassword":"e6bec9d6-6698-459a-95b1-e347361ab747","newPasswordConfirm":"e6bec9d6-6698-459a-95b1-e347361ab747"}, requestBody.password) +09:02:58.010 [XNIO-1 task-1] -4bsc-23TD6I12tYXGDnmw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6bec9d6-6698-459a-95b1-e347361ab747", {"password":"c0827092-72ae-42eb-afd6-03b647b2bcb6","newPassword":"e6bec9d6-6698-459a-95b1-e347361ab747","newPasswordConfirm":"e6bec9d6-6698-459a-95b1-e347361ab747"}, requestBody.newPassword) +09:02:58.020 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4f32aef4 +09:02:58.025 [XNIO-1 task-1] zuTDgPgoRPCTXqf-sh3ZQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.025 [XNIO-1 task-1] zuTDgPgoRPCTXqf-sh3ZQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.025 [XNIO-1 task-1] zuTDgPgoRPCTXqf-sh3ZQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.037 [XNIO-1 task-1] wt-Iz4o8R9qknhDErGjR_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.037 [XNIO-1 task-1] wt-Iz4o8R9qknhDErGjR_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.037 [XNIO-1 task-1] wt-Iz4o8R9qknhDErGjR_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.048 [XNIO-1 task-1] qEmQaWp9Tui5lR_OzKNR8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/951fcb1f, base path is set to: null +09:02:58.049 [XNIO-1 task-1] qEmQaWp9Tui5lR_OzKNR8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.049 [XNIO-1 task-1] qEmQaWp9Tui5lR_OzKNR8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.049 [XNIO-1 task-1] qEmQaWp9Tui5lR_OzKNR8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/951fcb1f, base path is set to: null +09:02:58.049 [XNIO-1 task-1] qEmQaWp9Tui5lR_OzKNR8A DEBUG com.networknt.schema.TypeValidator debug - validate( "951fcb1f", "951fcb1f", userId) +09:02:58.052 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d02002f5 +09:02:58.052 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.052 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.052 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.053 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d02002f5 +09:02:58.053 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ec013f25-e0b1-43d4-801c-89ae6f68c223","newPassword":"2b07d197-0164-461c-b878-0d171448b5f4","newPasswordConfirm":"2b07d197-0164-461c-b878-0d171448b5f4"}, {"password":"ec013f25-e0b1-43d4-801c-89ae6f68c223","newPassword":"2b07d197-0164-461c-b878-0d171448b5f4","newPasswordConfirm":"2b07d197-0164-461c-b878-0d171448b5f4"}, requestBody) +09:02:58.053 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ec013f25-e0b1-43d4-801c-89ae6f68c223","newPassword":"2b07d197-0164-461c-b878-0d171448b5f4","newPasswordConfirm":"2b07d197-0164-461c-b878-0d171448b5f4"}, {"password":"ec013f25-e0b1-43d4-801c-89ae6f68c223","newPassword":"2b07d197-0164-461c-b878-0d171448b5f4","newPasswordConfirm":"2b07d197-0164-461c-b878-0d171448b5f4"}, requestBody) +09:02:58.053 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG com.networknt.schema.FormatValidator debug - validate( "2b07d197-0164-461c-b878-0d171448b5f4", {"password":"ec013f25-e0b1-43d4-801c-89ae6f68c223","newPassword":"2b07d197-0164-461c-b878-0d171448b5f4","newPasswordConfirm":"2b07d197-0164-461c-b878-0d171448b5f4"}, requestBody.newPasswordConfirm) +09:02:58.053 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG com.networknt.schema.FormatValidator debug - validate( "ec013f25-e0b1-43d4-801c-89ae6f68c223", {"password":"ec013f25-e0b1-43d4-801c-89ae6f68c223","newPassword":"2b07d197-0164-461c-b878-0d171448b5f4","newPasswordConfirm":"2b07d197-0164-461c-b878-0d171448b5f4"}, requestBody.password) +09:02:58.053 [XNIO-1 task-1] 4VZQ9afZT2KzEruscQpsew DEBUG com.networknt.schema.FormatValidator debug - validate( "2b07d197-0164-461c-b878-0d171448b5f4", {"password":"ec013f25-e0b1-43d4-801c-89ae6f68c223","newPassword":"2b07d197-0164-461c-b878-0d171448b5f4","newPasswordConfirm":"2b07d197-0164-461c-b878-0d171448b5f4"}, requestBody.newPassword) +09:02:58.070 [XNIO-1 task-1] LtDf-OQJRjWzXyT6lSuNLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/951fcb1f +09:02:58.070 [XNIO-1 task-1] LtDf-OQJRjWzXyT6lSuNLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.070 [XNIO-1 task-1] LtDf-OQJRjWzXyT6lSuNLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.070 [XNIO-1 task-1] LtDf-OQJRjWzXyT6lSuNLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/951fcb1f +09:02:58.073 [XNIO-1 task-1] p1QJvsajTriDP10o_XlT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.073 [XNIO-1 task-1] p1QJvsajTriDP10o_XlT6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.073 [XNIO-1 task-1] p1QJvsajTriDP10o_XlT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.087 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f32aef4, base path is set to: null +09:02:58.087 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.087 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.087 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.087 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f32aef4, base path is set to: null +09:02:58.087 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f32aef4", "4f32aef4", userId) +09:02:58.088 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e6bec9d6-6698-459a-95b1-e347361ab747","newPassword":"d7d0101f-2948-44cf-a31b-e3bc333d81f2","newPasswordConfirm":"d7d0101f-2948-44cf-a31b-e3bc333d81f2"}, {"password":"e6bec9d6-6698-459a-95b1-e347361ab747","newPassword":"d7d0101f-2948-44cf-a31b-e3bc333d81f2","newPasswordConfirm":"d7d0101f-2948-44cf-a31b-e3bc333d81f2"}, requestBody) +09:02:58.088 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG com.networknt.schema.TypeValidator debug - validate( "d7d0101f-2948-44cf-a31b-e3bc333d81f2", {"password":"e6bec9d6-6698-459a-95b1-e347361ab747","newPassword":"d7d0101f-2948-44cf-a31b-e3bc333d81f2","newPasswordConfirm":"d7d0101f-2948-44cf-a31b-e3bc333d81f2"}, requestBody.newPasswordConfirm) +09:02:58.088 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6bec9d6-6698-459a-95b1-e347361ab747", {"password":"e6bec9d6-6698-459a-95b1-e347361ab747","newPassword":"d7d0101f-2948-44cf-a31b-e3bc333d81f2","newPasswordConfirm":"d7d0101f-2948-44cf-a31b-e3bc333d81f2"}, requestBody.password) +09:02:58.089 [XNIO-1 task-1] sIghSsCYSaC7bGRVpzPCyw DEBUG com.networknt.schema.TypeValidator debug - validate( "d7d0101f-2948-44cf-a31b-e3bc333d81f2", {"password":"e6bec9d6-6698-459a-95b1-e347361ab747","newPassword":"d7d0101f-2948-44cf-a31b-e3bc333d81f2","newPasswordConfirm":"d7d0101f-2948-44cf-a31b-e3bc333d81f2"}, requestBody.newPassword) +09:02:58.098 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4f32aef4 +09:02:58.106 [XNIO-1 task-1] 8mL-MeY8R-2lO4jOkg958A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/951fcb1f, base path is set to: null +09:02:58.106 [XNIO-1 task-1] 8mL-MeY8R-2lO4jOkg958A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.106 [XNIO-1 task-1] 8mL-MeY8R-2lO4jOkg958A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.106 [XNIO-1 task-1] 8mL-MeY8R-2lO4jOkg958A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/951fcb1f, base path is set to: null +09:02:58.106 [XNIO-1 task-1] 8mL-MeY8R-2lO4jOkg958A DEBUG com.networknt.schema.TypeValidator debug - validate( "951fcb1f", "951fcb1f", userId) +09:02:58.112 [XNIO-1 task-1] fiak6pdmSFmroMzgTNzDVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.112 [XNIO-1 task-1] fiak6pdmSFmroMzgTNzDVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.112 [XNIO-1 task-1] fiak6pdmSFmroMzgTNzDVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.112 [XNIO-1 task-1] fiak6pdmSFmroMzgTNzDVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.115 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/474831c1 +09:02:58.115 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.115 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.115 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.115 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/474831c1 +09:02:58.116 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"985a6fe9-d284-4b1f-b48f-ec8a031545ea","newPassword":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPasswordConfirm":"b181d3c7-9cf8-4df0-b7c5-80143a927152"}, {"password":"985a6fe9-d284-4b1f-b48f-ec8a031545ea","newPassword":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPasswordConfirm":"b181d3c7-9cf8-4df0-b7c5-80143a927152"}, requestBody) +09:02:58.116 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"985a6fe9-d284-4b1f-b48f-ec8a031545ea","newPassword":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPasswordConfirm":"b181d3c7-9cf8-4df0-b7c5-80143a927152"}, {"password":"985a6fe9-d284-4b1f-b48f-ec8a031545ea","newPassword":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPasswordConfirm":"b181d3c7-9cf8-4df0-b7c5-80143a927152"}, requestBody) +09:02:58.116 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b181d3c7-9cf8-4df0-b7c5-80143a927152", {"password":"985a6fe9-d284-4b1f-b48f-ec8a031545ea","newPassword":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPasswordConfirm":"b181d3c7-9cf8-4df0-b7c5-80143a927152"}, requestBody.newPasswordConfirm) +09:02:58.116 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "985a6fe9-d284-4b1f-b48f-ec8a031545ea", {"password":"985a6fe9-d284-4b1f-b48f-ec8a031545ea","newPassword":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPasswordConfirm":"b181d3c7-9cf8-4df0-b7c5-80143a927152"}, requestBody.password) +09:02:58.116 [XNIO-1 task-1] JJSxWUYnSf2h7raVjx9VQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b181d3c7-9cf8-4df0-b7c5-80143a927152", {"password":"985a6fe9-d284-4b1f-b48f-ec8a031545ea","newPassword":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPasswordConfirm":"b181d3c7-9cf8-4df0-b7c5-80143a927152"}, requestBody.newPassword) +09:02:58.132 [XNIO-1 task-1] mbmU1NM1Qg6xMaqe5eaM6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.132 [XNIO-1 task-1] mbmU1NM1Qg6xMaqe5eaM6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.132 [XNIO-1 task-1] mbmU1NM1Qg6xMaqe5eaM6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.132 [XNIO-1 task-1] mbmU1NM1Qg6xMaqe5eaM6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.137 [XNIO-1 task-1] sjaLmWHzQ1eg7NaKJyMwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4f32aef4 +09:02:58.137 [XNIO-1 task-1] sjaLmWHzQ1eg7NaKJyMwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.137 [XNIO-1 task-1] sjaLmWHzQ1eg7NaKJyMwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.137 [XNIO-1 task-1] sjaLmWHzQ1eg7NaKJyMwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4f32aef4 +09:02:58.138 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4f32aef4 +09:02:58.143 [XNIO-1 task-1] rC_jtAbtR7aEJJgsX2vJUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/474831c1 +09:02:58.143 [XNIO-1 task-1] rC_jtAbtR7aEJJgsX2vJUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.143 [XNIO-1 task-1] rC_jtAbtR7aEJJgsX2vJUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.143 [XNIO-1 task-1] rC_jtAbtR7aEJJgsX2vJUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/474831c1 +09:02:58.144 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3b352e11 +09:02:58.146 [XNIO-1 task-1] ETMifrAHRR6K-7Q8aeJBLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.146 [XNIO-1 task-1] ETMifrAHRR6K-7Q8aeJBLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.146 [XNIO-1 task-1] ETMifrAHRR6K-7Q8aeJBLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.147 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3b352e11 +09:02:58.151 [XNIO-1 task-1] rZrTDkv6RV6iu4kEj8p9AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.151 [XNIO-1 task-1] rZrTDkv6RV6iu4kEj8p9AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.152 [XNIO-1 task-1] rZrTDkv6RV6iu4kEj8p9AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.152 [XNIO-1 task-1] rZrTDkv6RV6iu4kEj8p9AQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.158 [XNIO-1 task-1] n9HlTTxzRtSOACicwLRSTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.158 [XNIO-1 task-1] n9HlTTxzRtSOACicwLRSTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.158 [XNIO-1 task-1] n9HlTTxzRtSOACicwLRSTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.164 [XNIO-1 task-1] KDZ8gEiGSsi-UEq9i2i4Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.164 [XNIO-1 task-1] KDZ8gEiGSsi-UEq9i2i4Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.164 [XNIO-1 task-1] KDZ8gEiGSsi-UEq9i2i4Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.164 [XNIO-1 task-1] KDZ8gEiGSsi-UEq9i2i4Jg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.168 [XNIO-1 task-1] PKVIvdmyTaau6EJuNzHcVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.168 [XNIO-1 task-1] PKVIvdmyTaau6EJuNzHcVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.168 [XNIO-1 task-1] PKVIvdmyTaau6EJuNzHcVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.176 [XNIO-1 task-1] FcKdydOoTQyXzNCeMj7j0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.176 [XNIO-1 task-1] FcKdydOoTQyXzNCeMj7j0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.176 [XNIO-1 task-1] FcKdydOoTQyXzNCeMj7j0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.184 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:872334cb-e1f8-493c-aef5-bc958bc46e00 +09:02:58.191 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/474831c1, base path is set to: null +09:02:58.191 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.192 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.192 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.192 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/474831c1, base path is set to: null +09:02:58.192 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG com.networknt.schema.TypeValidator debug - validate( "474831c1", "474831c1", userId) +09:02:58.192 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPassword":"3183a6cb-704a-4e86-8a46-e4c7a927acdb","newPasswordConfirm":"3183a6cb-704a-4e86-8a46-e4c7a927acdb"}, {"password":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPassword":"3183a6cb-704a-4e86-8a46-e4c7a927acdb","newPasswordConfirm":"3183a6cb-704a-4e86-8a46-e4c7a927acdb"}, requestBody) +09:02:58.192 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG com.networknt.schema.TypeValidator debug - validate( "3183a6cb-704a-4e86-8a46-e4c7a927acdb", {"password":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPassword":"3183a6cb-704a-4e86-8a46-e4c7a927acdb","newPasswordConfirm":"3183a6cb-704a-4e86-8a46-e4c7a927acdb"}, requestBody.newPasswordConfirm) +09:02:58.192 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG com.networknt.schema.TypeValidator debug - validate( "b181d3c7-9cf8-4df0-b7c5-80143a927152", {"password":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPassword":"3183a6cb-704a-4e86-8a46-e4c7a927acdb","newPasswordConfirm":"3183a6cb-704a-4e86-8a46-e4c7a927acdb"}, requestBody.password) +09:02:58.193 [XNIO-1 task-1] c-45xieuSUyCCsx2bmC13g DEBUG com.networknt.schema.TypeValidator debug - validate( "3183a6cb-704a-4e86-8a46-e4c7a927acdb", {"password":"b181d3c7-9cf8-4df0-b7c5-80143a927152","newPassword":"3183a6cb-704a-4e86-8a46-e4c7a927acdb","newPasswordConfirm":"3183a6cb-704a-4e86-8a46-e4c7a927acdb"}, requestBody.newPassword) +09:02:58.208 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3b352e11 +09:02:58.213 [XNIO-1 task-1] bIgtAHieTjuxUF0qbrJogg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d02002f5, base path is set to: null +09:02:58.213 [XNIO-1 task-1] bIgtAHieTjuxUF0qbrJogg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.214 [XNIO-1 task-1] bIgtAHieTjuxUF0qbrJogg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.214 [XNIO-1 task-1] bIgtAHieTjuxUF0qbrJogg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d02002f5, base path is set to: null +09:02:58.214 [XNIO-1 task-1] bIgtAHieTjuxUF0qbrJogg DEBUG com.networknt.schema.TypeValidator debug - validate( "d02002f5", "d02002f5", userId) +09:02:58.217 [XNIO-1 task-1] JDwW4yFtRZKM8MVtencx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.217 [XNIO-1 task-1] JDwW4yFtRZKM8MVtencx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.217 [XNIO-1 task-1] JDwW4yFtRZKM8MVtencx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.217 [XNIO-1 task-1] JDwW4yFtRZKM8MVtencx2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.220 [XNIO-1 task-1] VptV26j3RyWQMluj2x1sEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.220 [XNIO-1 task-1] VptV26j3RyWQMluj2x1sEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.220 [XNIO-1 task-1] VptV26j3RyWQMluj2x1sEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.225 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:19caf7ec +09:02:58.233 [XNIO-1 task-1] 8NfI0fQsRVeU7Hf_6WSTTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d59f532, base path is set to: null +09:02:58.233 [XNIO-1 task-1] 8NfI0fQsRVeU7Hf_6WSTTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.233 [XNIO-1 task-1] 8NfI0fQsRVeU7Hf_6WSTTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.233 [XNIO-1 task-1] 8NfI0fQsRVeU7Hf_6WSTTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d59f532, base path is set to: null +09:02:58.234 [XNIO-1 task-1] 8NfI0fQsRVeU7Hf_6WSTTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d59f532", "1d59f532", userId) +09:02:58.236 [XNIO-1 task-1] 8qZp1SmRSEC5fOiFtS0gTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4faccee7 +09:02:58.236 [XNIO-1 task-1] 8qZp1SmRSEC5fOiFtS0gTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.236 [XNIO-1 task-1] 8qZp1SmRSEC5fOiFtS0gTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.236 [XNIO-1 task-1] 8qZp1SmRSEC5fOiFtS0gTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4faccee7 +09:02:58.239 [XNIO-1 task-1] kvdhFBpNQBulOjsF9FqziQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/474831c1, base path is set to: null +09:02:58.239 [XNIO-1 task-1] kvdhFBpNQBulOjsF9FqziQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.239 [XNIO-1 task-1] kvdhFBpNQBulOjsF9FqziQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.239 [XNIO-1 task-1] kvdhFBpNQBulOjsF9FqziQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/474831c1, base path is set to: null +09:02:58.239 [XNIO-1 task-1] kvdhFBpNQBulOjsF9FqziQ DEBUG com.networknt.schema.TypeValidator debug - validate( "474831c1", "474831c1", userId) +09:02:58.241 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ac9eba07 +09:02:58.241 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:872334cb-e1f8-493c-aef5-bc958bc46e00 +09:02:58.244 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d02002f5 +09:02:58.244 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.244 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.244 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.245 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d02002f5 +09:02:58.245 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2b07d197-0164-461c-b878-0d171448b5f4","newPassword":"8e77af7d-1307-4194-b56c-9fe9c958a20d","newPasswordConfirm":"8e77af7d-1307-4194-b56c-9fe9c958a20d"}, {"password":"2b07d197-0164-461c-b878-0d171448b5f4","newPassword":"8e77af7d-1307-4194-b56c-9fe9c958a20d","newPasswordConfirm":"8e77af7d-1307-4194-b56c-9fe9c958a20d"}, requestBody) +09:02:58.245 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2b07d197-0164-461c-b878-0d171448b5f4","newPassword":"8e77af7d-1307-4194-b56c-9fe9c958a20d","newPasswordConfirm":"8e77af7d-1307-4194-b56c-9fe9c958a20d"}, {"password":"2b07d197-0164-461c-b878-0d171448b5f4","newPassword":"8e77af7d-1307-4194-b56c-9fe9c958a20d","newPasswordConfirm":"8e77af7d-1307-4194-b56c-9fe9c958a20d"}, requestBody) +09:02:58.245 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG com.networknt.schema.FormatValidator debug - validate( "8e77af7d-1307-4194-b56c-9fe9c958a20d", {"password":"2b07d197-0164-461c-b878-0d171448b5f4","newPassword":"8e77af7d-1307-4194-b56c-9fe9c958a20d","newPasswordConfirm":"8e77af7d-1307-4194-b56c-9fe9c958a20d"}, requestBody.newPasswordConfirm) +09:02:58.245 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG com.networknt.schema.FormatValidator debug - validate( "2b07d197-0164-461c-b878-0d171448b5f4", {"password":"2b07d197-0164-461c-b878-0d171448b5f4","newPassword":"8e77af7d-1307-4194-b56c-9fe9c958a20d","newPasswordConfirm":"8e77af7d-1307-4194-b56c-9fe9c958a20d"}, requestBody.password) +09:02:58.245 [XNIO-1 task-1] b_yePf3VRXaHmLckiovblA DEBUG com.networknt.schema.FormatValidator debug - validate( "8e77af7d-1307-4194-b56c-9fe9c958a20d", {"password":"2b07d197-0164-461c-b878-0d171448b5f4","newPassword":"8e77af7d-1307-4194-b56c-9fe9c958a20d","newPasswordConfirm":"8e77af7d-1307-4194-b56c-9fe9c958a20d"}, requestBody.newPassword) +09:02:58.256 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ac9eba07 +09:02:58.260 [XNIO-1 task-1] NPrcPW1CTSqMAdPFsldGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d02002f5 +09:02:58.260 [XNIO-1 task-1] NPrcPW1CTSqMAdPFsldGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.260 [XNIO-1 task-1] NPrcPW1CTSqMAdPFsldGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.260 [XNIO-1 task-1] NPrcPW1CTSqMAdPFsldGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d02002f5 +09:02:58.263 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1d59f532, base path is set to: null +09:02:58.263 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1d59f532, base path is set to: null +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d59f532", "1d59f532", userId) +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2bf56ce7-9fe5-48e7-a07d-25e248056335","newPassword":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPasswordConfirm":"a48885ca-460a-4c4d-91e7-30d549d5c843"}, {"password":"2bf56ce7-9fe5-48e7-a07d-25e248056335","newPassword":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPasswordConfirm":"a48885ca-460a-4c4d-91e7-30d549d5c843"}, requestBody) +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG com.networknt.schema.TypeValidator debug - validate( "a48885ca-460a-4c4d-91e7-30d549d5c843", {"password":"2bf56ce7-9fe5-48e7-a07d-25e248056335","newPassword":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPasswordConfirm":"a48885ca-460a-4c4d-91e7-30d549d5c843"}, requestBody.newPasswordConfirm) +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG com.networknt.schema.TypeValidator debug - validate( "2bf56ce7-9fe5-48e7-a07d-25e248056335", {"password":"2bf56ce7-9fe5-48e7-a07d-25e248056335","newPassword":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPasswordConfirm":"a48885ca-460a-4c4d-91e7-30d549d5c843"}, requestBody.password) +09:02:58.264 [XNIO-1 task-1] D0avm5NYTtKNAZ4nZQ99zg DEBUG com.networknt.schema.TypeValidator debug - validate( "a48885ca-460a-4c4d-91e7-30d549d5c843", {"password":"2bf56ce7-9fe5-48e7-a07d-25e248056335","newPassword":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPasswordConfirm":"a48885ca-460a-4c4d-91e7-30d549d5c843"}, requestBody.newPassword) +09:02:58.271 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:19caf7ec +09:02:58.285 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4faccee7, base path is set to: null +09:02:58.285 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.285 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.285 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.286 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4faccee7, base path is set to: null +09:02:58.286 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4faccee7", "4faccee7", userId) +09:02:58.287 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ee0182f1-20f2-4e23-81e4-d8638d57df40","newPassword":"899e87f1-0869-4f22-9507-67d998759f74","newPasswordConfirm":"899e87f1-0869-4f22-9507-67d998759f74"}, {"password":"ee0182f1-20f2-4e23-81e4-d8638d57df40","newPassword":"899e87f1-0869-4f22-9507-67d998759f74","newPasswordConfirm":"899e87f1-0869-4f22-9507-67d998759f74"}, requestBody) +09:02:58.287 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "899e87f1-0869-4f22-9507-67d998759f74", {"password":"ee0182f1-20f2-4e23-81e4-d8638d57df40","newPassword":"899e87f1-0869-4f22-9507-67d998759f74","newPasswordConfirm":"899e87f1-0869-4f22-9507-67d998759f74"}, requestBody.newPasswordConfirm) +09:02:58.287 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee0182f1-20f2-4e23-81e4-d8638d57df40", {"password":"ee0182f1-20f2-4e23-81e4-d8638d57df40","newPassword":"899e87f1-0869-4f22-9507-67d998759f74","newPasswordConfirm":"899e87f1-0869-4f22-9507-67d998759f74"}, requestBody.password) +09:02:58.287 [XNIO-1 task-1] 52a84yQLSmCba3B6PAmiGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "899e87f1-0869-4f22-9507-67d998759f74", {"password":"ee0182f1-20f2-4e23-81e4-d8638d57df40","newPassword":"899e87f1-0869-4f22-9507-67d998759f74","newPasswordConfirm":"899e87f1-0869-4f22-9507-67d998759f74"}, requestBody.newPassword) +09:02:58.303 [XNIO-1 task-1] m91Bl59UQIOYpyBhO8lvTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d02002f5, base path is set to: null +09:02:58.303 [XNIO-1 task-1] m91Bl59UQIOYpyBhO8lvTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.303 [XNIO-1 task-1] m91Bl59UQIOYpyBhO8lvTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.303 [XNIO-1 task-1] m91Bl59UQIOYpyBhO8lvTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d02002f5, base path is set to: null +09:02:58.304 [XNIO-1 task-1] m91Bl59UQIOYpyBhO8lvTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d02002f5", "d02002f5", userId) +09:02:58.308 [XNIO-1 task-1] NOEm9_NyQNanbqj_skJsBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d59f532 +09:02:58.308 [XNIO-1 task-1] NOEm9_NyQNanbqj_skJsBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.308 [XNIO-1 task-1] NOEm9_NyQNanbqj_skJsBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.309 [XNIO-1 task-1] NOEm9_NyQNanbqj_skJsBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d59f532 +09:02:58.311 [XNIO-1 task-1] ikcC6VV2Qhycu4mqI_EDIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.311 [XNIO-1 task-1] ikcC6VV2Qhycu4mqI_EDIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.311 [XNIO-1 task-1] ikcC6VV2Qhycu4mqI_EDIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.316 [XNIO-1 task-1] X9DjOMW-T7qZo28z01l__w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.316 [XNIO-1 task-1] X9DjOMW-T7qZo28z01l__w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.317 [XNIO-1 task-1] X9DjOMW-T7qZo28z01l__w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.317 [XNIO-1 task-1] X9DjOMW-T7qZo28z01l__w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1d59f532, base path is set to: null +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1d59f532, base path is set to: null +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d59f532", "1d59f532", userId) +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPassword":"7d73adca-4851-423b-8e6d-a6950f887877","newPasswordConfirm":"7d73adca-4851-423b-8e6d-a6950f887877"}, {"password":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPassword":"7d73adca-4851-423b-8e6d-a6950f887877","newPasswordConfirm":"7d73adca-4851-423b-8e6d-a6950f887877"}, requestBody) +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG com.networknt.schema.TypeValidator debug - validate( "7d73adca-4851-423b-8e6d-a6950f887877", {"password":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPassword":"7d73adca-4851-423b-8e6d-a6950f887877","newPasswordConfirm":"7d73adca-4851-423b-8e6d-a6950f887877"}, requestBody.newPasswordConfirm) +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG com.networknt.schema.TypeValidator debug - validate( "a48885ca-460a-4c4d-91e7-30d549d5c843", {"password":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPassword":"7d73adca-4851-423b-8e6d-a6950f887877","newPasswordConfirm":"7d73adca-4851-423b-8e6d-a6950f887877"}, requestBody.password) +09:02:58.320 [XNIO-1 task-1] N1Qh8AgHRk-15ShOrU5_zg DEBUG com.networknt.schema.TypeValidator debug - validate( "7d73adca-4851-423b-8e6d-a6950f887877", {"password":"a48885ca-460a-4c4d-91e7-30d549d5c843","newPassword":"7d73adca-4851-423b-8e6d-a6950f887877","newPasswordConfirm":"7d73adca-4851-423b-8e6d-a6950f887877"}, requestBody.newPassword) +09:02:58.326 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf63be00 +09:02:58.327 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf63be00 +09:02:58.333 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9330d924-9f7f-4768-a597-62d825f6c906 +09:02:58.342 [XNIO-1 task-1] GbUManKnQ7mkUdq5Ah_tvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.342 [XNIO-1 task-1] GbUManKnQ7mkUdq5Ah_tvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.343 [XNIO-1 task-1] GbUManKnQ7mkUdq5Ah_tvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.360 [XNIO-1 task-1] L1uv45QaRcmWUUcxE5sffA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.360 [XNIO-1 task-1] L1uv45QaRcmWUUcxE5sffA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.361 [XNIO-1 task-1] L1uv45QaRcmWUUcxE5sffA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.370 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2b8a0c5f, base path is set to: null +09:02:58.370 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.370 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.370 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.371 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2b8a0c5f, base path is set to: null +09:02:58.371 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2b8a0c5f", "2b8a0c5f", userId) +09:02:58.371 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6340b6a3-b0d2-432e-be31-8b4f4b61bd3e","newPassword":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPasswordConfirm":"ee1cb160-efc9-47ab-8eab-372af3c731b0"}, {"password":"6340b6a3-b0d2-432e-be31-8b4f4b61bd3e","newPassword":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPasswordConfirm":"ee1cb160-efc9-47ab-8eab-372af3c731b0"}, requestBody) +09:02:58.371 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee1cb160-efc9-47ab-8eab-372af3c731b0", {"password":"6340b6a3-b0d2-432e-be31-8b4f4b61bd3e","newPassword":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPasswordConfirm":"ee1cb160-efc9-47ab-8eab-372af3c731b0"}, requestBody.newPasswordConfirm) +09:02:58.371 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6340b6a3-b0d2-432e-be31-8b4f4b61bd3e", {"password":"6340b6a3-b0d2-432e-be31-8b4f4b61bd3e","newPassword":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPasswordConfirm":"ee1cb160-efc9-47ab-8eab-372af3c731b0"}, requestBody.password) +09:02:58.371 [XNIO-1 task-1] ALdBgphfRqG4_WHb8W-IJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee1cb160-efc9-47ab-8eab-372af3c731b0", {"password":"6340b6a3-b0d2-432e-be31-8b4f4b61bd3e","newPassword":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPasswordConfirm":"ee1cb160-efc9-47ab-8eab-372af3c731b0"}, requestBody.newPassword) +09:02:58.385 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:96523236-5688-4348-8ba4-c29221ccf640 +09:02:58.386 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:96523236-5688-4348-8ba4-c29221ccf640 +09:02:58.389 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2b8a0c5f +09:02:58.389 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.389 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.389 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.389 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2b8a0c5f +09:02:58.390 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPassword":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c","newPasswordConfirm":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c"}, {"password":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPassword":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c","newPasswordConfirm":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c"}, requestBody) +09:02:58.390 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPassword":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c","newPasswordConfirm":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c"}, {"password":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPassword":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c","newPasswordConfirm":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c"}, requestBody) +09:02:58.390 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG com.networknt.schema.FormatValidator debug - validate( "beddb6bd-07fc-4ef4-9866-f15ae44c5b0c", {"password":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPassword":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c","newPasswordConfirm":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c"}, requestBody.newPasswordConfirm) +09:02:58.390 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG com.networknt.schema.FormatValidator debug - validate( "ee1cb160-efc9-47ab-8eab-372af3c731b0", {"password":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPassword":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c","newPasswordConfirm":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c"}, requestBody.password) +09:02:58.390 [XNIO-1 task-1] 4FJ_SmOUREWUq1fsfDGSIw DEBUG com.networknt.schema.FormatValidator debug - validate( "beddb6bd-07fc-4ef4-9866-f15ae44c5b0c", {"password":"ee1cb160-efc9-47ab-8eab-372af3c731b0","newPassword":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c","newPasswordConfirm":"beddb6bd-07fc-4ef4-9866-f15ae44c5b0c"}, requestBody.newPassword) +09:02:58.391 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf63be00 +09:02:58.406 [XNIO-1 task-1] kNlFR3MbQNCXuogixOz7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.407 [XNIO-1 task-1] kNlFR3MbQNCXuogixOz7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.407 [XNIO-1 task-1] kNlFR3MbQNCXuogixOz7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.423 [XNIO-1 task-1] pQyU9EkeTTK6s7jrJ0iGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4faccee7 +09:02:58.423 [XNIO-1 task-1] pQyU9EkeTTK6s7jrJ0iGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.423 [XNIO-1 task-1] pQyU9EkeTTK6s7jrJ0iGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.423 [XNIO-1 task-1] pQyU9EkeTTK6s7jrJ0iGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4faccee7 +09:02:58.425 [XNIO-1 task-1] jPX4K5OITDu7J46Toh_Ezg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.426 [XNIO-1 task-1] jPX4K5OITDu7J46Toh_Ezg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.426 [XNIO-1 task-1] jPX4K5OITDu7J46Toh_Ezg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.431 [XNIO-1 task-1] 2ltB271iQtWZjMmwg-7McQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.431 [XNIO-1 task-1] 2ltB271iQtWZjMmwg-7McQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.431 [XNIO-1 task-1] 2ltB271iQtWZjMmwg-7McQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.432 [XNIO-1 task-1] 2ltB271iQtWZjMmwg-7McQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.439 [XNIO-1 task-1] _lhZlUXVQjKd5jmcgdNPxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d59f532, base path is set to: null +09:02:58.439 [XNIO-1 task-1] _lhZlUXVQjKd5jmcgdNPxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.439 [XNIO-1 task-1] _lhZlUXVQjKd5jmcgdNPxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.439 [XNIO-1 task-1] _lhZlUXVQjKd5jmcgdNPxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d59f532, base path is set to: null +09:02:58.440 [XNIO-1 task-1] _lhZlUXVQjKd5jmcgdNPxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d59f532", "1d59f532", userId) +09:02:58.442 [XNIO-1 task-1] _oE9ofc-RSmube-9sHmPGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d59f532 +09:02:58.442 [XNIO-1 task-1] _oE9ofc-RSmube-9sHmPGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.442 [XNIO-1 task-1] _oE9ofc-RSmube-9sHmPGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.442 [XNIO-1 task-1] _oE9ofc-RSmube-9sHmPGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d59f532 +09:02:58.449 [XNIO-1 task-1] AqSJyiZISeKtwQ4701efYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.449 [XNIO-1 task-1] AqSJyiZISeKtwQ4701efYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.449 [XNIO-1 task-1] AqSJyiZISeKtwQ4701efYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.456 [XNIO-1 task-1] nYeK5-27S2eHgJoGWxCi6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.456 [XNIO-1 task-1] nYeK5-27S2eHgJoGWxCi6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.456 [XNIO-1 task-1] nYeK5-27S2eHgJoGWxCi6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.462 [XNIO-1 task-1] 1cW31Q80Si6C2UphCzm0GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4faccee7, base path is set to: null +09:02:58.462 [XNIO-1 task-1] 1cW31Q80Si6C2UphCzm0GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.462 [XNIO-1 task-1] 1cW31Q80Si6C2UphCzm0GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.463 [XNIO-1 task-1] 1cW31Q80Si6C2UphCzm0GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4faccee7, base path is set to: null +09:02:58.463 [XNIO-1 task-1] 1cW31Q80Si6C2UphCzm0GA DEBUG com.networknt.schema.TypeValidator debug - validate( "4faccee7", "4faccee7", userId) +09:02:58.469 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0b6231a8 +09:02:58.469 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.469 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.470 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.470 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0b6231a8 +09:02:58.470 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c7ff31d1-0500-469e-b1b0-23cef4f3cede","newPassword":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPasswordConfirm":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5"}, {"password":"c7ff31d1-0500-469e-b1b0-23cef4f3cede","newPassword":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPasswordConfirm":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5"}, requestBody) +09:02:58.470 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c7ff31d1-0500-469e-b1b0-23cef4f3cede","newPassword":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPasswordConfirm":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5"}, {"password":"c7ff31d1-0500-469e-b1b0-23cef4f3cede","newPassword":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPasswordConfirm":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5"}, requestBody) +09:02:58.470 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG com.networknt.schema.FormatValidator debug - validate( "b43116a8-9dff-4881-9033-cbc6ba9ef3d5", {"password":"c7ff31d1-0500-469e-b1b0-23cef4f3cede","newPassword":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPasswordConfirm":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5"}, requestBody.newPasswordConfirm) +09:02:58.471 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG com.networknt.schema.FormatValidator debug - validate( "c7ff31d1-0500-469e-b1b0-23cef4f3cede", {"password":"c7ff31d1-0500-469e-b1b0-23cef4f3cede","newPassword":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPasswordConfirm":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5"}, requestBody.password) +09:02:58.471 [XNIO-1 task-1] zZHvb9BUR1in4tWoLabdcg DEBUG com.networknt.schema.FormatValidator debug - validate( "b43116a8-9dff-4881-9033-cbc6ba9ef3d5", {"password":"c7ff31d1-0500-469e-b1b0-23cef4f3cede","newPassword":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPasswordConfirm":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5"}, requestBody.newPassword) +09:02:58.488 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf63be00 +09:02:58.491 [XNIO-1 task-1] 8ZPKTXrNSnOtMI4tD3hkuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2b8a0c5f +09:02:58.491 [XNIO-1 task-1] 8ZPKTXrNSnOtMI4tD3hkuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.491 [XNIO-1 task-1] 8ZPKTXrNSnOtMI4tD3hkuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.491 [XNIO-1 task-1] 8ZPKTXrNSnOtMI4tD3hkuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2b8a0c5f +09:02:58.493 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:739cb797-f381-4f27-a5c1-c5125a42f607 +09:02:58.494 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:739cb797-f381-4f27-a5c1-c5125a42f607 +09:02:58.497 [XNIO-1 task-1] V0AA3wLVTy-t0PdsgomUnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.497 [XNIO-1 task-1] V0AA3wLVTy-t0PdsgomUnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.497 [XNIO-1 task-1] V0AA3wLVTy-t0PdsgomUnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.504 [XNIO-1 task-1] RPn1c9VdToWPYUDJWlYZpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.504 [XNIO-1 task-1] RPn1c9VdToWPYUDJWlYZpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.504 [XNIO-1 task-1] RPn1c9VdToWPYUDJWlYZpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.515 [XNIO-1 task-1] qw37otCZTbWMOTiLipDEmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/72131b38, base path is set to: null +09:02:58.515 [XNIO-1 task-1] qw37otCZTbWMOTiLipDEmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.515 [XNIO-1 task-1] qw37otCZTbWMOTiLipDEmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.515 [XNIO-1 task-1] qw37otCZTbWMOTiLipDEmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/72131b38, base path is set to: null +09:02:58.515 [XNIO-1 task-1] qw37otCZTbWMOTiLipDEmA DEBUG com.networknt.schema.TypeValidator debug - validate( "72131b38", "72131b38", userId) +09:02:58.518 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/72131b38 +09:02:58.518 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.518 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.518 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.518 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/72131b38 +09:02:58.519 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"93de25fe-1959-431d-aef3-3995542b7a8c","newPassword":"747b70df-62db-4a99-871e-5d587a25da63","newPasswordConfirm":"747b70df-62db-4a99-871e-5d587a25da63"}, {"password":"93de25fe-1959-431d-aef3-3995542b7a8c","newPassword":"747b70df-62db-4a99-871e-5d587a25da63","newPasswordConfirm":"747b70df-62db-4a99-871e-5d587a25da63"}, requestBody) +09:02:58.519 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"93de25fe-1959-431d-aef3-3995542b7a8c","newPassword":"747b70df-62db-4a99-871e-5d587a25da63","newPasswordConfirm":"747b70df-62db-4a99-871e-5d587a25da63"}, {"password":"93de25fe-1959-431d-aef3-3995542b7a8c","newPassword":"747b70df-62db-4a99-871e-5d587a25da63","newPasswordConfirm":"747b70df-62db-4a99-871e-5d587a25da63"}, requestBody) +09:02:58.519 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG com.networknt.schema.FormatValidator debug - validate( "747b70df-62db-4a99-871e-5d587a25da63", {"password":"93de25fe-1959-431d-aef3-3995542b7a8c","newPassword":"747b70df-62db-4a99-871e-5d587a25da63","newPasswordConfirm":"747b70df-62db-4a99-871e-5d587a25da63"}, requestBody.newPasswordConfirm) +09:02:58.519 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG com.networknt.schema.FormatValidator debug - validate( "93de25fe-1959-431d-aef3-3995542b7a8c", {"password":"93de25fe-1959-431d-aef3-3995542b7a8c","newPassword":"747b70df-62db-4a99-871e-5d587a25da63","newPasswordConfirm":"747b70df-62db-4a99-871e-5d587a25da63"}, requestBody.password) +09:02:58.519 [XNIO-1 task-1] kXLG0CYXR1yHu9sHx-C69Q DEBUG com.networknt.schema.FormatValidator debug - validate( "747b70df-62db-4a99-871e-5d587a25da63", {"password":"93de25fe-1959-431d-aef3-3995542b7a8c","newPassword":"747b70df-62db-4a99-871e-5d587a25da63","newPasswordConfirm":"747b70df-62db-4a99-871e-5d587a25da63"}, requestBody.newPassword) +09:02:58.537 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:bf63be00 +09:02:58.560 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0b6231a8, base path is set to: null +09:02:58.560 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.560 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.560 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.560 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0b6231a8, base path is set to: null +09:02:58.561 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG com.networknt.schema.TypeValidator debug - validate( "0b6231a8", "0b6231a8", userId) +09:02:58.561 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPassword":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f","newPasswordConfirm":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f"}, {"password":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPassword":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f","newPasswordConfirm":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f"}, requestBody) +09:02:58.561 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG com.networknt.schema.TypeValidator debug - validate( "a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f", {"password":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPassword":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f","newPasswordConfirm":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f"}, requestBody.newPasswordConfirm) +09:02:58.561 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG com.networknt.schema.TypeValidator debug - validate( "b43116a8-9dff-4881-9033-cbc6ba9ef3d5", {"password":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPassword":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f","newPasswordConfirm":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f"}, requestBody.password) +09:02:58.561 [XNIO-1 task-1] v0z6wcNdSHyvSglFrzKhpA DEBUG com.networknt.schema.TypeValidator debug - validate( "a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f", {"password":"b43116a8-9dff-4881-9033-cbc6ba9ef3d5","newPassword":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f","newPasswordConfirm":"a870bf0b-d07f-4c2a-99bf-2b91a94f8e6f"}, requestBody.newPassword) +09:02:58.579 [XNIO-1 task-1] fogow_G3QKGZtXvRtqMS8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.579 [XNIO-1 task-1] fogow_G3QKGZtXvRtqMS8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.579 [XNIO-1 task-1] fogow_G3QKGZtXvRtqMS8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.579 [XNIO-1 task-1] fogow_G3QKGZtXvRtqMS8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.584 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/72131b38, base path is set to: null +09:02:58.584 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.584 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.584 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:58.585 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/72131b38, base path is set to: null +09:02:58.585 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG com.networknt.schema.TypeValidator debug - validate( "72131b38", "72131b38", userId) +09:02:58.585 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"747b70df-62db-4a99-871e-5d587a25da63","newPassword":"f2fc165a-8037-4f18-a39c-a6120d32b190","newPasswordConfirm":"f2fc165a-8037-4f18-a39c-a6120d32b190"}, {"password":"747b70df-62db-4a99-871e-5d587a25da63","newPassword":"f2fc165a-8037-4f18-a39c-a6120d32b190","newPasswordConfirm":"f2fc165a-8037-4f18-a39c-a6120d32b190"}, requestBody) +09:02:58.586 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG com.networknt.schema.TypeValidator debug - validate( "f2fc165a-8037-4f18-a39c-a6120d32b190", {"password":"747b70df-62db-4a99-871e-5d587a25da63","newPassword":"f2fc165a-8037-4f18-a39c-a6120d32b190","newPasswordConfirm":"f2fc165a-8037-4f18-a39c-a6120d32b190"}, requestBody.newPasswordConfirm) +09:02:58.586 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG com.networknt.schema.TypeValidator debug - validate( "747b70df-62db-4a99-871e-5d587a25da63", {"password":"747b70df-62db-4a99-871e-5d587a25da63","newPassword":"f2fc165a-8037-4f18-a39c-a6120d32b190","newPasswordConfirm":"f2fc165a-8037-4f18-a39c-a6120d32b190"}, requestBody.password) +09:02:58.586 [XNIO-1 task-1] EkLuTdtvQXK3rsaM_h_Y-A DEBUG com.networknt.schema.TypeValidator debug - validate( "f2fc165a-8037-4f18-a39c-a6120d32b190", {"password":"747b70df-62db-4a99-871e-5d587a25da63","newPassword":"f2fc165a-8037-4f18-a39c-a6120d32b190","newPasswordConfirm":"f2fc165a-8037-4f18-a39c-a6120d32b190"}, requestBody.newPassword) +09:02:58.604 [XNIO-1 task-1] ciSfhiPCS9mlhQSdCKqBWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.604 [XNIO-1 task-1] ciSfhiPCS9mlhQSdCKqBWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.605 [XNIO-1 task-1] ciSfhiPCS9mlhQSdCKqBWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.616 [XNIO-1 task-1] o4VpFlBtSK62oVRsVDs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0b6231a8, base path is set to: null +09:02:58.616 [XNIO-1 task-1] o4VpFlBtSK62oVRsVDs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.616 [XNIO-1 task-1] o4VpFlBtSK62oVRsVDs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.616 [XNIO-1 task-1] o4VpFlBtSK62oVRsVDs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0b6231a8, base path is set to: null +09:02:58.616 [XNIO-1 task-1] o4VpFlBtSK62oVRsVDs2sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0b6231a8", "0b6231a8", userId) +09:02:58.622 [XNIO-1 task-1] BMfojFWnRtGUTs8xYzn_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.622 [XNIO-1 task-1] BMfojFWnRtGUTs8xYzn_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.622 [XNIO-1 task-1] BMfojFWnRtGUTs8xYzn_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.631 [XNIO-1 task-1] 4c5mzzvZRKODY_Zb4Iy2vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/72131b38 +09:02:58.632 [XNIO-1 task-1] 4c5mzzvZRKODY_Zb4Iy2vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.632 [XNIO-1 task-1] 4c5mzzvZRKODY_Zb4Iy2vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.632 [XNIO-1 task-1] 4c5mzzvZRKODY_Zb4Iy2vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/72131b38 +09:02:58.641 [XNIO-1 task-1] fTqDhkkzSbOy-5P8-wur6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/62be7a1c, base path is set to: null +09:02:58.641 [XNIO-1 task-1] fTqDhkkzSbOy-5P8-wur6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.641 [XNIO-1 task-1] fTqDhkkzSbOy-5P8-wur6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.642 [XNIO-1 task-1] fTqDhkkzSbOy-5P8-wur6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/62be7a1c, base path is set to: null +09:02:58.642 [XNIO-1 task-1] fTqDhkkzSbOy-5P8-wur6w DEBUG com.networknt.schema.TypeValidator debug - validate( "62be7a1c", "62be7a1c", userId) +09:02:58.648 [XNIO-1 task-1] FDq2lB4QRb6c_uw0tPfopA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.648 [XNIO-1 task-1] FDq2lB4QRb6c_uw0tPfopA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.648 [XNIO-1 task-1] FDq2lB4QRb6c_uw0tPfopA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.648 [XNIO-1 task-1] FDq2lB4QRb6c_uw0tPfopA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.655 [XNIO-1 task-1] tASOqYQ-T9O8_vIJ8cRApg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.655 [XNIO-1 task-1] tASOqYQ-T9O8_vIJ8cRApg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.655 [XNIO-1 task-1] tASOqYQ-T9O8_vIJ8cRApg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.655 [XNIO-1 task-1] tASOqYQ-T9O8_vIJ8cRApg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.659 [XNIO-1 task-1] bbuNCK6oTLG7QYMg1iGO1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.659 [XNIO-1 task-1] bbuNCK6oTLG7QYMg1iGO1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.659 [XNIO-1 task-1] bbuNCK6oTLG7QYMg1iGO1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.659 [XNIO-1 task-1] bbuNCK6oTLG7QYMg1iGO1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.663 [XNIO-1 task-1] aXV7OBNYR2ebmFZkG79e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.663 [XNIO-1 task-1] aXV7OBNYR2ebmFZkG79e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.663 [XNIO-1 task-1] aXV7OBNYR2ebmFZkG79e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.677 [XNIO-1 task-1] nV8TwWjHSKiNeJ77UTtLMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.677 [XNIO-1 task-1] nV8TwWjHSKiNeJ77UTtLMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.677 [XNIO-1 task-1] nV8TwWjHSKiNeJ77UTtLMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.677 [XNIO-1 task-1] nV8TwWjHSKiNeJ77UTtLMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.680 [XNIO-1 task-1] bArUEvquT8mSdWAVz3PpMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.680 [XNIO-1 task-1] bArUEvquT8mSdWAVz3PpMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.680 [XNIO-1 task-1] bArUEvquT8mSdWAVz3PpMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.716 [XNIO-1 task-1] 6-At_WvORXGbKevzM2hEhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.716 [XNIO-1 task-1] 6-At_WvORXGbKevzM2hEhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.716 [XNIO-1 task-1] 6-At_WvORXGbKevzM2hEhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.728 [XNIO-1 task-1] ZJZzQW7BT1SC2l1H5uYQLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.728 [XNIO-1 task-1] ZJZzQW7BT1SC2l1H5uYQLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.728 [XNIO-1 task-1] ZJZzQW7BT1SC2l1H5uYQLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.735 [XNIO-1 task-1] 6E_05C1QQ7W6qXeHbH3FoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.735 [XNIO-1 task-1] 6E_05C1QQ7W6qXeHbH3FoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.735 [XNIO-1 task-1] 6E_05C1QQ7W6qXeHbH3FoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.746 [XNIO-1 task-1] jHxTn2lwQKCXJpxce-YV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.746 [XNIO-1 task-1] jHxTn2lwQKCXJpxce-YV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.746 [XNIO-1 task-1] jHxTn2lwQKCXJpxce-YV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.747 [XNIO-1 task-1] jHxTn2lwQKCXJpxce-YV9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.749 [XNIO-1 task-1] Nt_mg9qsTQqcsq_KshJOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ff3e1b7 +09:02:58.749 [XNIO-1 task-1] Nt_mg9qsTQqcsq_KshJOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.749 [XNIO-1 task-1] Nt_mg9qsTQqcsq_KshJOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.749 [XNIO-1 task-1] Nt_mg9qsTQqcsq_KshJOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ff3e1b7 +09:02:58.757 [XNIO-1 task-1] XIb6_-1KQDWXDhBroHCNZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ff3e1b7, base path is set to: null +09:02:58.758 [XNIO-1 task-1] XIb6_-1KQDWXDhBroHCNZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.758 [XNIO-1 task-1] XIb6_-1KQDWXDhBroHCNZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.758 [XNIO-1 task-1] XIb6_-1KQDWXDhBroHCNZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ff3e1b7, base path is set to: null +09:02:58.758 [XNIO-1 task-1] XIb6_-1KQDWXDhBroHCNZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7ff3e1b7", "7ff3e1b7", userId) +09:02:58.786 [XNIO-1 task-1] y6qAdKxeTJqKqwsvyPr4eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.786 [XNIO-1 task-1] y6qAdKxeTJqKqwsvyPr4eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.786 [XNIO-1 task-1] y6qAdKxeTJqKqwsvyPr4eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7ff3e1b7 +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7ff3e1b7 +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c7525999-2e8e-4679-8c76-9b433001a075","newPassword":"268400bb-b969-4c22-8222-3c3b4efcde69","newPasswordConfirm":"268400bb-b969-4c22-8222-3c3b4efcde69"}, {"password":"c7525999-2e8e-4679-8c76-9b433001a075","newPassword":"268400bb-b969-4c22-8222-3c3b4efcde69","newPasswordConfirm":"268400bb-b969-4c22-8222-3c3b4efcde69"}, requestBody) +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c7525999-2e8e-4679-8c76-9b433001a075","newPassword":"268400bb-b969-4c22-8222-3c3b4efcde69","newPasswordConfirm":"268400bb-b969-4c22-8222-3c3b4efcde69"}, {"password":"c7525999-2e8e-4679-8c76-9b433001a075","newPassword":"268400bb-b969-4c22-8222-3c3b4efcde69","newPasswordConfirm":"268400bb-b969-4c22-8222-3c3b4efcde69"}, requestBody) +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG com.networknt.schema.FormatValidator debug - validate( "268400bb-b969-4c22-8222-3c3b4efcde69", {"password":"c7525999-2e8e-4679-8c76-9b433001a075","newPassword":"268400bb-b969-4c22-8222-3c3b4efcde69","newPasswordConfirm":"268400bb-b969-4c22-8222-3c3b4efcde69"}, requestBody.newPasswordConfirm) +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG com.networknt.schema.FormatValidator debug - validate( "c7525999-2e8e-4679-8c76-9b433001a075", {"password":"c7525999-2e8e-4679-8c76-9b433001a075","newPassword":"268400bb-b969-4c22-8222-3c3b4efcde69","newPasswordConfirm":"268400bb-b969-4c22-8222-3c3b4efcde69"}, requestBody.password) +09:02:58.807 [XNIO-1 task-1] tppdzUk-RVG5fit8c-yPtA DEBUG com.networknt.schema.FormatValidator debug - validate( "268400bb-b969-4c22-8222-3c3b4efcde69", {"password":"c7525999-2e8e-4679-8c76-9b433001a075","newPassword":"268400bb-b969-4c22-8222-3c3b4efcde69","newPasswordConfirm":"268400bb-b969-4c22-8222-3c3b4efcde69"}, requestBody.newPassword) +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/14373940 +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/14373940 +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"94dbe47c-8301-4de6-a86a-7b952163cf8d","newPassword":"f5935d83-d58b-4dbe-8f79-412cb329d69e","newPasswordConfirm":"f5935d83-d58b-4dbe-8f79-412cb329d69e"}, {"password":"94dbe47c-8301-4de6-a86a-7b952163cf8d","newPassword":"f5935d83-d58b-4dbe-8f79-412cb329d69e","newPasswordConfirm":"f5935d83-d58b-4dbe-8f79-412cb329d69e"}, requestBody) +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"94dbe47c-8301-4de6-a86a-7b952163cf8d","newPassword":"f5935d83-d58b-4dbe-8f79-412cb329d69e","newPasswordConfirm":"f5935d83-d58b-4dbe-8f79-412cb329d69e"}, {"password":"94dbe47c-8301-4de6-a86a-7b952163cf8d","newPassword":"f5935d83-d58b-4dbe-8f79-412cb329d69e","newPasswordConfirm":"f5935d83-d58b-4dbe-8f79-412cb329d69e"}, requestBody) +09:02:58.838 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG com.networknt.schema.FormatValidator debug - validate( "f5935d83-d58b-4dbe-8f79-412cb329d69e", {"password":"94dbe47c-8301-4de6-a86a-7b952163cf8d","newPassword":"f5935d83-d58b-4dbe-8f79-412cb329d69e","newPasswordConfirm":"f5935d83-d58b-4dbe-8f79-412cb329d69e"}, requestBody.newPasswordConfirm) +09:02:58.839 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG com.networknt.schema.FormatValidator debug - validate( "94dbe47c-8301-4de6-a86a-7b952163cf8d", {"password":"94dbe47c-8301-4de6-a86a-7b952163cf8d","newPassword":"f5935d83-d58b-4dbe-8f79-412cb329d69e","newPasswordConfirm":"f5935d83-d58b-4dbe-8f79-412cb329d69e"}, requestBody.password) +09:02:58.839 [XNIO-1 task-1] _lX-z7BVR5aL8bC60pp1-g DEBUG com.networknt.schema.FormatValidator debug - validate( "f5935d83-d58b-4dbe-8f79-412cb329d69e", {"password":"94dbe47c-8301-4de6-a86a-7b952163cf8d","newPassword":"f5935d83-d58b-4dbe-8f79-412cb329d69e","newPasswordConfirm":"f5935d83-d58b-4dbe-8f79-412cb329d69e"}, requestBody.newPassword) +09:02:58.863 [XNIO-1 task-1] mZeb95HNQxafGLvCpgk6qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.863 [XNIO-1 task-1] mZeb95HNQxafGLvCpgk6qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.863 [XNIO-1 task-1] mZeb95HNQxafGLvCpgk6qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.938 [XNIO-1 task-1] OX646-hCRN6Uv5moyjdA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.938 [XNIO-1 task-1] OX646-hCRN6Uv5moyjdA4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.938 [XNIO-1 task-1] OX646-hCRN6Uv5moyjdA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.938 [XNIO-1 task-1] OX646-hCRN6Uv5moyjdA4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:58.949 [XNIO-1 task-1] wHjOyiXcTIqoqSl96U_Igg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/555c66d6, base path is set to: null +09:02:58.949 [XNIO-1 task-1] wHjOyiXcTIqoqSl96U_Igg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.949 [XNIO-1 task-1] wHjOyiXcTIqoqSl96U_Igg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.949 [XNIO-1 task-1] wHjOyiXcTIqoqSl96U_Igg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/555c66d6, base path is set to: null +09:02:58.950 [XNIO-1 task-1] wHjOyiXcTIqoqSl96U_Igg DEBUG com.networknt.schema.TypeValidator debug - validate( "555c66d6", "555c66d6", userId) +09:02:58.955 [XNIO-1 task-1] vrAWzrEsTzepOSelfxObOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/14373940 +09:02:58.955 [XNIO-1 task-1] vrAWzrEsTzepOSelfxObOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.955 [XNIO-1 task-1] vrAWzrEsTzepOSelfxObOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.955 [XNIO-1 task-1] vrAWzrEsTzepOSelfxObOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/14373940 +09:02:58.962 [XNIO-1 task-1] a0tJ-oCMQ-aEHYADt8iMyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.962 [XNIO-1 task-1] a0tJ-oCMQ-aEHYADt8iMyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.962 [XNIO-1 task-1] a0tJ-oCMQ-aEHYADt8iMyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.975 [XNIO-1 task-1] WbDGSqXlSe2QbmbfEJI_cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.975 [XNIO-1 task-1] WbDGSqXlSe2QbmbfEJI_cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.975 [XNIO-1 task-1] WbDGSqXlSe2QbmbfEJI_cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:58.982 [XNIO-1 task-1] H2_9oTXpTuS4ZmBB-9-kgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/512e8ad2, base path is set to: null +09:02:58.982 [XNIO-1 task-1] H2_9oTXpTuS4ZmBB-9-kgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:58.983 [XNIO-1 task-1] H2_9oTXpTuS4ZmBB-9-kgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:58.983 [XNIO-1 task-1] H2_9oTXpTuS4ZmBB-9-kgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/512e8ad2, base path is set to: null +09:02:58.983 [XNIO-1 task-1] H2_9oTXpTuS4ZmBB-9-kgA DEBUG com.networknt.schema.TypeValidator debug - validate( "512e8ad2", "512e8ad2", userId) +09:02:58.986 [XNIO-1 task-1] qvAhR1jmSzGnzhDhhdgbNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/512e8ad2 +09:02:58.986 [XNIO-1 task-1] qvAhR1jmSzGnzhDhhdgbNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.986 [XNIO-1 task-1] qvAhR1jmSzGnzhDhhdgbNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:58.986 [XNIO-1 task-1] qvAhR1jmSzGnzhDhhdgbNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/512e8ad2 +09:02:58.988 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe9ab2b5 +09:02:58.988 [XNIO-1 task-1] x8NYKvWISt6Q7xHa35Pw8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.988 [XNIO-1 task-1] x8NYKvWISt6Q7xHa35Pw8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.988 [XNIO-1 task-1] x8NYKvWISt6Q7xHa35Pw8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.988 [XNIO-1 task-1] x8NYKvWISt6Q7xHa35Pw8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:58.989 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe9ab2b5 +09:02:58.991 [XNIO-1 task-1] 4sJ1of2wR-a9VRGPm0pplw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.991 [XNIO-1 task-1] 4sJ1of2wR-a9VRGPm0pplw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:58.991 [XNIO-1 task-1] 4sJ1of2wR-a9VRGPm0pplw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.000 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fe9ab2b5 +09:02:59.008 [XNIO-1 task-1] Tc9rbTqQQ92nPQRC0FsO0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.008 [XNIO-1 task-1] Tc9rbTqQQ92nPQRC0FsO0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.008 [XNIO-1 task-1] Tc9rbTqQQ92nPQRC0FsO0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.020 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/62359927 +09:02:59.020 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.020 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.020 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:59.020 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/62359927 +09:02:59.021 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8c06b055-78d7-4a72-8394-18b82d2152d7","newPassword":"00584bb4-da38-43a1-906d-9c95c35966bc","newPasswordConfirm":"00584bb4-da38-43a1-906d-9c95c35966bc"}, {"password":"8c06b055-78d7-4a72-8394-18b82d2152d7","newPassword":"00584bb4-da38-43a1-906d-9c95c35966bc","newPasswordConfirm":"00584bb4-da38-43a1-906d-9c95c35966bc"}, requestBody) +09:02:59.021 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8c06b055-78d7-4a72-8394-18b82d2152d7","newPassword":"00584bb4-da38-43a1-906d-9c95c35966bc","newPasswordConfirm":"00584bb4-da38-43a1-906d-9c95c35966bc"}, {"password":"8c06b055-78d7-4a72-8394-18b82d2152d7","newPassword":"00584bb4-da38-43a1-906d-9c95c35966bc","newPasswordConfirm":"00584bb4-da38-43a1-906d-9c95c35966bc"}, requestBody) +09:02:59.021 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG com.networknt.schema.FormatValidator debug - validate( "00584bb4-da38-43a1-906d-9c95c35966bc", {"password":"8c06b055-78d7-4a72-8394-18b82d2152d7","newPassword":"00584bb4-da38-43a1-906d-9c95c35966bc","newPasswordConfirm":"00584bb4-da38-43a1-906d-9c95c35966bc"}, requestBody.newPasswordConfirm) +09:02:59.021 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG com.networknt.schema.FormatValidator debug - validate( "8c06b055-78d7-4a72-8394-18b82d2152d7", {"password":"8c06b055-78d7-4a72-8394-18b82d2152d7","newPassword":"00584bb4-da38-43a1-906d-9c95c35966bc","newPasswordConfirm":"00584bb4-da38-43a1-906d-9c95c35966bc"}, requestBody.password) +09:02:59.021 [XNIO-1 task-1] 8sUS0A2UQQKnJ-RevIT42A DEBUG com.networknt.schema.FormatValidator debug - validate( "00584bb4-da38-43a1-906d-9c95c35966bc", {"password":"8c06b055-78d7-4a72-8394-18b82d2152d7","newPassword":"00584bb4-da38-43a1-906d-9c95c35966bc","newPasswordConfirm":"00584bb4-da38-43a1-906d-9c95c35966bc"}, requestBody.newPassword) +09:02:59.040 [XNIO-1 task-1] oc8eRMKHSAid9_vD-FMFDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/62359927 +09:02:59.040 [XNIO-1 task-1] oc8eRMKHSAid9_vD-FMFDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.040 [XNIO-1 task-1] oc8eRMKHSAid9_vD-FMFDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.040 [XNIO-1 task-1] oc8eRMKHSAid9_vD-FMFDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/62359927 +09:02:59.043 [XNIO-1 task-1] Jr0MawjlRuu83sqJWLYvKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ff3e1b7, base path is set to: null +09:02:59.044 [XNIO-1 task-1] Jr0MawjlRuu83sqJWLYvKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.044 [XNIO-1 task-1] Jr0MawjlRuu83sqJWLYvKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.044 [XNIO-1 task-1] Jr0MawjlRuu83sqJWLYvKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ff3e1b7, base path is set to: null +09:02:59.045 [XNIO-1 task-1] Jr0MawjlRuu83sqJWLYvKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7ff3e1b7", "7ff3e1b7", userId) +09:02:59.047 [XNIO-1 task-1] m5FT8MlSTfuN7PcqOmgLbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ff3e1b7 +09:02:59.047 [XNIO-1 task-1] m5FT8MlSTfuN7PcqOmgLbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.047 [XNIO-1 task-1] m5FT8MlSTfuN7PcqOmgLbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.048 [XNIO-1 task-1] m5FT8MlSTfuN7PcqOmgLbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ff3e1b7 +09:02:59.058 [XNIO-1 task-1] rY9c1nb9TSyJta1ZByTbnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.058 [XNIO-1 task-1] rY9c1nb9TSyJta1ZByTbnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.058 [XNIO-1 task-1] rY9c1nb9TSyJta1ZByTbnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.067 [XNIO-1 task-1] rhh9__jKSnGM4uEPBqtl1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/62359927, base path is set to: null +09:02:59.067 [XNIO-1 task-1] rhh9__jKSnGM4uEPBqtl1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.067 [XNIO-1 task-1] rhh9__jKSnGM4uEPBqtl1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.067 [XNIO-1 task-1] rhh9__jKSnGM4uEPBqtl1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/62359927, base path is set to: null +09:02:59.068 [XNIO-1 task-1] rhh9__jKSnGM4uEPBqtl1w DEBUG com.networknt.schema.TypeValidator debug - validate( "62359927", "62359927", userId) +09:02:59.074 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/512e8ad2 +09:02:59.075 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.075 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.075 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:59.075 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/512e8ad2 +09:02:59.076 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8b332830-b99a-4122-8881-805d5bb540f5","newPassword":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPasswordConfirm":"ab69cac2-ddf3-4115-b999-439750dcfa6c"}, {"password":"8b332830-b99a-4122-8881-805d5bb540f5","newPassword":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPasswordConfirm":"ab69cac2-ddf3-4115-b999-439750dcfa6c"}, requestBody) +09:02:59.076 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8b332830-b99a-4122-8881-805d5bb540f5","newPassword":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPasswordConfirm":"ab69cac2-ddf3-4115-b999-439750dcfa6c"}, {"password":"8b332830-b99a-4122-8881-805d5bb540f5","newPassword":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPasswordConfirm":"ab69cac2-ddf3-4115-b999-439750dcfa6c"}, requestBody) +09:02:59.076 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG com.networknt.schema.FormatValidator debug - validate( "ab69cac2-ddf3-4115-b999-439750dcfa6c", {"password":"8b332830-b99a-4122-8881-805d5bb540f5","newPassword":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPasswordConfirm":"ab69cac2-ddf3-4115-b999-439750dcfa6c"}, requestBody.newPasswordConfirm) +09:02:59.076 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG com.networknt.schema.FormatValidator debug - validate( "8b332830-b99a-4122-8881-805d5bb540f5", {"password":"8b332830-b99a-4122-8881-805d5bb540f5","newPassword":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPasswordConfirm":"ab69cac2-ddf3-4115-b999-439750dcfa6c"}, requestBody.password) +09:02:59.076 [XNIO-1 task-1] xzYItIJVTB6tF8wPGwVPXA DEBUG com.networknt.schema.FormatValidator debug - validate( "ab69cac2-ddf3-4115-b999-439750dcfa6c", {"password":"8b332830-b99a-4122-8881-805d5bb540f5","newPassword":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPasswordConfirm":"ab69cac2-ddf3-4115-b999-439750dcfa6c"}, requestBody.newPassword) +09:02:59.095 [XNIO-1 task-1] I_yadFXgTpWcBu1DJ9GbhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.096 [XNIO-1 task-1] I_yadFXgTpWcBu1DJ9GbhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.096 [XNIO-1 task-1] I_yadFXgTpWcBu1DJ9GbhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.106 [XNIO-1 task-1] H_KK3Mt4RsaZJKi3TPAihQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.106 [XNIO-1 task-1] H_KK3Mt4RsaZJKi3TPAihQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.106 [XNIO-1 task-1] H_KK3Mt4RsaZJKi3TPAihQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.115 [XNIO-1 task-1] 90YUliEvRMSo63EaDauxkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.115 [XNIO-1 task-1] 90YUliEvRMSo63EaDauxkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.116 [XNIO-1 task-1] 90YUliEvRMSo63EaDauxkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.121 [XNIO-1 task-1] 6SgZDr6XS6alxVnLeF6LxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/512e8ad2 +09:02:59.122 [XNIO-1 task-1] 6SgZDr6XS6alxVnLeF6LxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.122 [XNIO-1 task-1] 6SgZDr6XS6alxVnLeF6LxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.122 [XNIO-1 task-1] 6SgZDr6XS6alxVnLeF6LxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/512e8ad2 +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/512e8ad2, base path is set to: null +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/512e8ad2, base path is set to: null +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG com.networknt.schema.TypeValidator debug - validate( "512e8ad2", "512e8ad2", userId) +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPassword":"5f654d38-ecab-43e1-b6d8-ae446db945bd","newPasswordConfirm":"5f654d38-ecab-43e1-b6d8-ae446db945bd"}, {"password":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPassword":"5f654d38-ecab-43e1-b6d8-ae446db945bd","newPasswordConfirm":"5f654d38-ecab-43e1-b6d8-ae446db945bd"}, requestBody) +09:02:59.128 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG com.networknt.schema.TypeValidator debug - validate( "5f654d38-ecab-43e1-b6d8-ae446db945bd", {"password":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPassword":"5f654d38-ecab-43e1-b6d8-ae446db945bd","newPasswordConfirm":"5f654d38-ecab-43e1-b6d8-ae446db945bd"}, requestBody.newPasswordConfirm) +09:02:59.129 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG com.networknt.schema.TypeValidator debug - validate( "ab69cac2-ddf3-4115-b999-439750dcfa6c", {"password":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPassword":"5f654d38-ecab-43e1-b6d8-ae446db945bd","newPasswordConfirm":"5f654d38-ecab-43e1-b6d8-ae446db945bd"}, requestBody.password) +09:02:59.129 [XNIO-1 task-1] WlvUwRRvS8afK7Ab645D8w DEBUG com.networknt.schema.TypeValidator debug - validate( "5f654d38-ecab-43e1-b6d8-ae446db945bd", {"password":"ab69cac2-ddf3-4115-b999-439750dcfa6c","newPassword":"5f654d38-ecab-43e1-b6d8-ae446db945bd","newPasswordConfirm":"5f654d38-ecab-43e1-b6d8-ae446db945bd"}, requestBody.newPassword) +09:02:59.131 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fd4d51a6-2013-4e3d-b53a-94b61c03b5d9 +09:02:59.131 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fd4d51a6-2013-4e3d-b53a-94b61c03b5d9 +09:02:59.147 [XNIO-1 task-1] 2Y4cMj-gRS-NR_XOT-snMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/512e8ad2 +09:02:59.147 [XNIO-1 task-1] 2Y4cMj-gRS-NR_XOT-snMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.147 [XNIO-1 task-1] 2Y4cMj-gRS-NR_XOT-snMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.147 [XNIO-1 task-1] 2Y4cMj-gRS-NR_XOT-snMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/512e8ad2 +09:02:59.153 [XNIO-1 task-1] LvuWzr2MRXibF-ZjVf3log DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.153 [XNIO-1 task-1] LvuWzr2MRXibF-ZjVf3log DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.153 [XNIO-1 task-1] LvuWzr2MRXibF-ZjVf3log DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.158 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9330d924-9f7f-4768-a597-62d825f6c906 +09:02:59.167 [XNIO-1 task-1] OrYnMVqlT9CxmkrUBvKtaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.167 [XNIO-1 task-1] OrYnMVqlT9CxmkrUBvKtaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.167 [XNIO-1 task-1] OrYnMVqlT9CxmkrUBvKtaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.167 [XNIO-1 task-1] OrYnMVqlT9CxmkrUBvKtaQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.173 [XNIO-1 task-1] YkFz-_68Qt-nRKx-VwtZnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/364a9ea4 +09:02:59.173 [XNIO-1 task-1] YkFz-_68Qt-nRKx-VwtZnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.173 [XNIO-1 task-1] YkFz-_68Qt-nRKx-VwtZnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.173 [XNIO-1 task-1] YkFz-_68Qt-nRKx-VwtZnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/364a9ea4 +09:02:59.176 [XNIO-1 task-1] 2e6MXtgkSEiEjf2r8wIhUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/364a9ea4, base path is set to: null +09:02:59.176 [XNIO-1 task-1] 2e6MXtgkSEiEjf2r8wIhUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.176 [XNIO-1 task-1] 2e6MXtgkSEiEjf2r8wIhUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.176 [XNIO-1 task-1] 2e6MXtgkSEiEjf2r8wIhUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/364a9ea4, base path is set to: null +09:02:59.176 [XNIO-1 task-1] 2e6MXtgkSEiEjf2r8wIhUg DEBUG com.networknt.schema.TypeValidator debug - validate( "364a9ea4", "364a9ea4", userId) +09:02:59.184 [XNIO-1 task-1] mPp2CMeeSpW_C3711LRoBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.184 [XNIO-1 task-1] mPp2CMeeSpW_C3711LRoBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.184 [XNIO-1 task-1] mPp2CMeeSpW_C3711LRoBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.184 [XNIO-1 task-1] mPp2CMeeSpW_C3711LRoBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.191 [XNIO-1 task-1] xcIRQ6CsRE-44tBsXHRsYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.191 [XNIO-1 task-1] xcIRQ6CsRE-44tBsXHRsYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.191 [XNIO-1 task-1] xcIRQ6CsRE-44tBsXHRsYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.191 [XNIO-1 task-1] xcIRQ6CsRE-44tBsXHRsYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.194 [XNIO-1 task-1] GHLoeVamRTGlgQzXeHOtJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.194 [XNIO-1 task-1] GHLoeVamRTGlgQzXeHOtJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.194 [XNIO-1 task-1] GHLoeVamRTGlgQzXeHOtJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.207 [XNIO-1 task-1] Aj7kYUWHQWaeltRh6wQztg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.207 [XNIO-1 task-1] Aj7kYUWHQWaeltRh6wQztg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.207 [XNIO-1 task-1] Aj7kYUWHQWaeltRh6wQztg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.214 [XNIO-1 task-1] 9IyyFHQKSci2KdBRBTLfUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.214 [XNIO-1 task-1] 9IyyFHQKSci2KdBRBTLfUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.214 [XNIO-1 task-1] 9IyyFHQKSci2KdBRBTLfUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.220 [XNIO-1 task-1] m9qbmjkbRjCLmJPWS5-Dnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66697650 +09:02:59.220 [XNIO-1 task-1] m9qbmjkbRjCLmJPWS5-Dnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.220 [XNIO-1 task-1] m9qbmjkbRjCLmJPWS5-Dnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.220 [XNIO-1 task-1] m9qbmjkbRjCLmJPWS5-Dnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66697650 +09:02:59.226 [XNIO-1 task-1] qZ-C-q4dRnqFe_iv8rbX4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/66697650, base path is set to: null +09:02:59.226 [XNIO-1 task-1] qZ-C-q4dRnqFe_iv8rbX4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.226 [XNIO-1 task-1] qZ-C-q4dRnqFe_iv8rbX4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.226 [XNIO-1 task-1] qZ-C-q4dRnqFe_iv8rbX4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/66697650, base path is set to: null +09:02:59.226 [XNIO-1 task-1] qZ-C-q4dRnqFe_iv8rbX4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "66697650", "66697650", userId) +09:02:59.230 [XNIO-1 task-1] K8XtDlR8Rk23HYewlZCn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66697650 +09:02:59.230 [XNIO-1 task-1] K8XtDlR8Rk23HYewlZCn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.230 [XNIO-1 task-1] K8XtDlR8Rk23HYewlZCn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.230 [XNIO-1 task-1] K8XtDlR8Rk23HYewlZCn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66697650 +09:02:59.233 [XNIO-1 task-1] MmXZlCczQuaCdbG5BcK3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/66697650, base path is set to: null +09:02:59.233 [XNIO-1 task-1] MmXZlCczQuaCdbG5BcK3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.233 [XNIO-1 task-1] MmXZlCczQuaCdbG5BcK3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.234 [XNIO-1 task-1] MmXZlCczQuaCdbG5BcK3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/66697650, base path is set to: null +09:02:59.234 [XNIO-1 task-1] MmXZlCczQuaCdbG5BcK3rw DEBUG com.networknt.schema.TypeValidator debug - validate( "66697650", "66697650", userId) +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/66697650 +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/66697650 +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ff57e364-8389-4d4b-a608-c96207d7e0c8","newPassword":"e48754b8-5162-4a2b-9d91-a6efab75d8f5","newPasswordConfirm":"e48754b8-5162-4a2b-9d91-a6efab75d8f5"}, {"password":"ff57e364-8389-4d4b-a608-c96207d7e0c8","newPassword":"e48754b8-5162-4a2b-9d91-a6efab75d8f5","newPasswordConfirm":"e48754b8-5162-4a2b-9d91-a6efab75d8f5"}, requestBody) +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ff57e364-8389-4d4b-a608-c96207d7e0c8","newPassword":"e48754b8-5162-4a2b-9d91-a6efab75d8f5","newPasswordConfirm":"e48754b8-5162-4a2b-9d91-a6efab75d8f5"}, {"password":"ff57e364-8389-4d4b-a608-c96207d7e0c8","newPassword":"e48754b8-5162-4a2b-9d91-a6efab75d8f5","newPasswordConfirm":"e48754b8-5162-4a2b-9d91-a6efab75d8f5"}, requestBody) +09:02:59.237 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG com.networknt.schema.FormatValidator debug - validate( "e48754b8-5162-4a2b-9d91-a6efab75d8f5", {"password":"ff57e364-8389-4d4b-a608-c96207d7e0c8","newPassword":"e48754b8-5162-4a2b-9d91-a6efab75d8f5","newPasswordConfirm":"e48754b8-5162-4a2b-9d91-a6efab75d8f5"}, requestBody.newPasswordConfirm) +09:02:59.238 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG com.networknt.schema.FormatValidator debug - validate( "ff57e364-8389-4d4b-a608-c96207d7e0c8", {"password":"ff57e364-8389-4d4b-a608-c96207d7e0c8","newPassword":"e48754b8-5162-4a2b-9d91-a6efab75d8f5","newPasswordConfirm":"e48754b8-5162-4a2b-9d91-a6efab75d8f5"}, requestBody.password) +09:02:59.238 [XNIO-1 task-1] xFPUNg3JTb2E6HOCgmitOg DEBUG com.networknt.schema.FormatValidator debug - validate( "e48754b8-5162-4a2b-9d91-a6efab75d8f5", {"password":"ff57e364-8389-4d4b-a608-c96207d7e0c8","newPassword":"e48754b8-5162-4a2b-9d91-a6efab75d8f5","newPasswordConfirm":"e48754b8-5162-4a2b-9d91-a6efab75d8f5"}, requestBody.newPassword) +09:02:59.255 [XNIO-1 task-1] dbc_bIypS6iqD_TNrUf6fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66697650 +09:02:59.255 [XNIO-1 task-1] dbc_bIypS6iqD_TNrUf6fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.255 [XNIO-1 task-1] dbc_bIypS6iqD_TNrUf6fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.255 [XNIO-1 task-1] dbc_bIypS6iqD_TNrUf6fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66697650 +09:02:59.269 [XNIO-1 task-1] XpbmmRdUQIOHbDlI5-WA0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.269 [XNIO-1 task-1] XpbmmRdUQIOHbDlI5-WA0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.270 [XNIO-1 task-1] XpbmmRdUQIOHbDlI5-WA0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.278 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fdc274a8-1b59-452d-8597-d6da235338db +09:02:59.283 [XNIO-1 task-1] 5zg87ogHRR-kjk-HRcCHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.283 [XNIO-1 task-1] 5zg87ogHRR-kjk-HRcCHvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.285 [XNIO-1 task-1] 5zg87ogHRR-kjk-HRcCHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.298 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a7b793b +09:02:59.298 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a7b793b +09:02:59.305 [XNIO-1 task-1] tjWOpLXTSB-akW2JVZcWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.305 [XNIO-1 task-1] tjWOpLXTSB-akW2JVZcWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.305 [XNIO-1 task-1] tjWOpLXTSB-akW2JVZcWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.317 [XNIO-1 task-1] 1rxiovXGQyaXlRc38hp0CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.317 [XNIO-1 task-1] 1rxiovXGQyaXlRc38hp0CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.317 [XNIO-1 task-1] 1rxiovXGQyaXlRc38hp0CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.323 [XNIO-1 task-1] sOFmY2s8Rda8u5bjdWg8yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.323 [XNIO-1 task-1] sOFmY2s8Rda8u5bjdWg8yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.323 [XNIO-1 task-1] sOFmY2s8Rda8u5bjdWg8yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.323 [XNIO-1 task-1] sOFmY2s8Rda8u5bjdWg8yg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.331 [XNIO-1 task-1] I02ef5AzTQKAvXjVdDUGOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.331 [XNIO-1 task-1] I02ef5AzTQKAvXjVdDUGOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.331 [XNIO-1 task-1] I02ef5AzTQKAvXjVdDUGOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.344 [XNIO-1 task-1] 7ijVCcTuTHC5pW7_Sw2AVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6d3056d9, base path is set to: null +09:02:59.344 [XNIO-1 task-1] 7ijVCcTuTHC5pW7_Sw2AVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.344 [XNIO-1 task-1] 7ijVCcTuTHC5pW7_Sw2AVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.344 [XNIO-1 task-1] 7ijVCcTuTHC5pW7_Sw2AVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6d3056d9, base path is set to: null +09:02:59.344 [XNIO-1 task-1] 7ijVCcTuTHC5pW7_Sw2AVw DEBUG com.networknt.schema.TypeValidator debug - validate( "6d3056d9", "6d3056d9", userId) +09:02:59.347 [XNIO-1 task-1] ZIy1juWDS7m5cuS9aknW5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.347 [XNIO-1 task-1] ZIy1juWDS7m5cuS9aknW5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.347 [XNIO-1 task-1] ZIy1juWDS7m5cuS9aknW5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.358 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a7b793b +09:02:59.360 [XNIO-1 task-1] lQ8qhKOCRv28Egkd0H_jkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0732e471 +09:02:59.360 [XNIO-1 task-1] lQ8qhKOCRv28Egkd0H_jkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.360 [XNIO-1 task-1] lQ8qhKOCRv28Egkd0H_jkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.360 [XNIO-1 task-1] lQ8qhKOCRv28Egkd0H_jkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0732e471 +09:02:59.366 [XNIO-1 task-1] mOHsOL54Sm2wwjd0MINH-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0732e471, base path is set to: null +09:02:59.366 [XNIO-1 task-1] mOHsOL54Sm2wwjd0MINH-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.366 [XNIO-1 task-1] mOHsOL54Sm2wwjd0MINH-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.367 [XNIO-1 task-1] mOHsOL54Sm2wwjd0MINH-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0732e471, base path is set to: null +09:02:59.367 [XNIO-1 task-1] mOHsOL54Sm2wwjd0MINH-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0732e471", "0732e471", userId) +09:02:59.379 [XNIO-1 task-1] 3xOWkPXpQFaKhynsEZzfvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.379 [XNIO-1 task-1] 3xOWkPXpQFaKhynsEZzfvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.379 [XNIO-1 task-1] 3xOWkPXpQFaKhynsEZzfvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.379 [XNIO-1 task-1] 3xOWkPXpQFaKhynsEZzfvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.381 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8abf3953 +09:02:59.389 [XNIO-1 task-1] w-WL4N8KQSmXyyeLmRaA5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.389 [XNIO-1 task-1] w-WL4N8KQSmXyyeLmRaA5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.389 [XNIO-1 task-1] w-WL4N8KQSmXyyeLmRaA5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.392 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9a7b793b +09:02:59.402 [XNIO-1 task-1] u9FESx-DQZycx81th78gag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.403 [XNIO-1 task-1] u9FESx-DQZycx81th78gag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.403 [XNIO-1 task-1] u9FESx-DQZycx81th78gag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.403 [XNIO-1 task-1] u9FESx-DQZycx81th78gag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.406 [XNIO-1 task-1] DazPiQrwR_uH8vZ9jfW0hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.406 [XNIO-1 task-1] DazPiQrwR_uH8vZ9jfW0hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.406 [XNIO-1 task-1] DazPiQrwR_uH8vZ9jfW0hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.421 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a79f4523, base path is set to: null +09:02:59.421 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.422 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.422 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:59.423 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a79f4523, base path is set to: null +09:02:59.423 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG com.networknt.schema.TypeValidator debug - validate( "a79f4523", "a79f4523", userId) +09:02:59.423 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"fcbcc873-dd96-46f3-ba4a-a91f08354ae7","newPassword":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3","newPasswordConfirm":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3"}, {"password":"fcbcc873-dd96-46f3-ba4a-a91f08354ae7","newPassword":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3","newPasswordConfirm":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3"}, requestBody) +09:02:59.423 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG com.networknt.schema.TypeValidator debug - validate( "4b03ad60-ad27-46ef-a7dd-94fe5210b1f3", {"password":"fcbcc873-dd96-46f3-ba4a-a91f08354ae7","newPassword":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3","newPasswordConfirm":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3"}, requestBody.newPasswordConfirm) +09:02:59.423 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG com.networknt.schema.TypeValidator debug - validate( "fcbcc873-dd96-46f3-ba4a-a91f08354ae7", {"password":"fcbcc873-dd96-46f3-ba4a-a91f08354ae7","newPassword":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3","newPasswordConfirm":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3"}, requestBody.password) +09:02:59.424 [XNIO-1 task-1] 3IKFtIBOSXqo6U8GPLYxRg DEBUG com.networknt.schema.TypeValidator debug - validate( "4b03ad60-ad27-46ef-a7dd-94fe5210b1f3", {"password":"fcbcc873-dd96-46f3-ba4a-a91f08354ae7","newPassword":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3","newPasswordConfirm":"4b03ad60-ad27-46ef-a7dd-94fe5210b1f3"}, requestBody.newPassword) +09:02:59.441 [XNIO-1 task-1] 9wux5y8gQFuddDbJvNoMcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.441 [XNIO-1 task-1] 9wux5y8gQFuddDbJvNoMcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.441 [XNIO-1 task-1] 9wux5y8gQFuddDbJvNoMcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.447 [XNIO-1 task-1] bSN7iy5eRMiwfPymrL-yiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.447 [XNIO-1 task-1] bSN7iy5eRMiwfPymrL-yiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.447 [XNIO-1 task-1] bSN7iy5eRMiwfPymrL-yiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.448 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6cefadb6-a85b-4c19-86bf-8ca663579cf4 +09:02:59.453 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd00191d +09:02:59.454 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd00191d +09:02:59.460 [XNIO-1 task-1] Teo1wStzTpulM86f1uHbeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8af4485c, base path is set to: null +09:02:59.460 [XNIO-1 task-1] Teo1wStzTpulM86f1uHbeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.461 [XNIO-1 task-1] Teo1wStzTpulM86f1uHbeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.461 [XNIO-1 task-1] Teo1wStzTpulM86f1uHbeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8af4485c, base path is set to: null +09:02:59.461 [XNIO-1 task-1] Teo1wStzTpulM86f1uHbeA DEBUG com.networknt.schema.TypeValidator debug - validate( "8af4485c", "8af4485c", userId) +09:02:59.468 [XNIO-1 task-1] Dc164GbbS16RHhMus6QFZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.468 [XNIO-1 task-1] Dc164GbbS16RHhMus6QFZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.468 [XNIO-1 task-1] Dc164GbbS16RHhMus6QFZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.469 [XNIO-1 task-1] Dc164GbbS16RHhMus6QFZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.472 [XNIO-1 task-1] vzLQZNhFRRiBwglmQKvQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.472 [XNIO-1 task-1] vzLQZNhFRRiBwglmQKvQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.472 [XNIO-1 task-1] vzLQZNhFRRiBwglmQKvQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.492 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/28b808a4 +09:02:59.492 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.492 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.492 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:59.493 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/28b808a4 +09:02:59.493 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"076d245e-9be9-4e12-a241-4b894ec19ef3","newPassword":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPasswordConfirm":"90097df5-5414-4421-a6cd-2d04f2824d0d"}, {"password":"076d245e-9be9-4e12-a241-4b894ec19ef3","newPassword":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPasswordConfirm":"90097df5-5414-4421-a6cd-2d04f2824d0d"}, requestBody) +09:02:59.493 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"076d245e-9be9-4e12-a241-4b894ec19ef3","newPassword":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPasswordConfirm":"90097df5-5414-4421-a6cd-2d04f2824d0d"}, {"password":"076d245e-9be9-4e12-a241-4b894ec19ef3","newPassword":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPasswordConfirm":"90097df5-5414-4421-a6cd-2d04f2824d0d"}, requestBody) +09:02:59.494 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "90097df5-5414-4421-a6cd-2d04f2824d0d", {"password":"076d245e-9be9-4e12-a241-4b894ec19ef3","newPassword":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPasswordConfirm":"90097df5-5414-4421-a6cd-2d04f2824d0d"}, requestBody.newPasswordConfirm) +09:02:59.494 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "076d245e-9be9-4e12-a241-4b894ec19ef3", {"password":"076d245e-9be9-4e12-a241-4b894ec19ef3","newPassword":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPasswordConfirm":"90097df5-5414-4421-a6cd-2d04f2824d0d"}, requestBody.password) +09:02:59.494 [XNIO-1 task-1] GOhOdVyvSnSxxrjExfaTfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "90097df5-5414-4421-a6cd-2d04f2824d0d", {"password":"076d245e-9be9-4e12-a241-4b894ec19ef3","newPassword":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPasswordConfirm":"90097df5-5414-4421-a6cd-2d04f2824d0d"}, requestBody.newPassword) +09:02:59.503 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:edca6084 +09:02:59.514 [XNIO-1 task-1] mNvYWCU_TsGY4gX9GLSZ3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd00191d, base path is set to: null +09:02:59.514 [XNIO-1 task-1] mNvYWCU_TsGY4gX9GLSZ3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.514 [XNIO-1 task-1] mNvYWCU_TsGY4gX9GLSZ3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.514 [XNIO-1 task-1] mNvYWCU_TsGY4gX9GLSZ3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd00191d, base path is set to: null +09:02:59.514 [XNIO-1 task-1] mNvYWCU_TsGY4gX9GLSZ3A DEBUG com.networknt.schema.TypeValidator debug - validate( "dd00191d", "dd00191d", userId) +09:02:59.520 [XNIO-1 task-1] w-wB3zEyS2qdH00IhHctVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.520 [XNIO-1 task-1] w-wB3zEyS2qdH00IhHctVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.520 [XNIO-1 task-1] w-wB3zEyS2qdH00IhHctVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.520 [XNIO-1 task-1] w-wB3zEyS2qdH00IhHctVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.523 [XNIO-1 task-1] -xdY4XunSiOvIqaMk7NfTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.523 [XNIO-1 task-1] -xdY4XunSiOvIqaMk7NfTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.523 [XNIO-1 task-1] -xdY4XunSiOvIqaMk7NfTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.523 [XNIO-1 task-1] -xdY4XunSiOvIqaMk7NfTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.528 [XNIO-1 task-1] kyyi9TZUTsSX-zy4jQ68fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.529 [XNIO-1 task-1] kyyi9TZUTsSX-zy4jQ68fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.529 [XNIO-1 task-1] kyyi9TZUTsSX-zy4jQ68fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.529 [XNIO-1 task-1] kyyi9TZUTsSX-zy4jQ68fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:02:59.533 [XNIO-1 task-1] o-CziXWwTta-7gaqExSIuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6d3056d9, base path is set to: null +09:02:59.533 [XNIO-1 task-1] o-CziXWwTta-7gaqExSIuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.533 [XNIO-1 task-1] o-CziXWwTta-7gaqExSIuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.533 [XNIO-1 task-1] o-CziXWwTta-7gaqExSIuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6d3056d9, base path is set to: null +09:02:59.533 [XNIO-1 task-1] o-CziXWwTta-7gaqExSIuA DEBUG com.networknt.schema.TypeValidator debug - validate( "6d3056d9", "6d3056d9", userId) +09:02:59.540 [XNIO-1 task-1] fYmDk1v1SQuGvKkbH8VA5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.540 [XNIO-1 task-1] fYmDk1v1SQuGvKkbH8VA5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.540 [XNIO-1 task-1] fYmDk1v1SQuGvKkbH8VA5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.540 [XNIO-1 task-1] fYmDk1v1SQuGvKkbH8VA5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.544 [XNIO-1 task-1] WltYbAB1Qr66iTt8ePv68A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.544 [XNIO-1 task-1] WltYbAB1Qr66iTt8ePv68A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.544 [XNIO-1 task-1] WltYbAB1Qr66iTt8ePv68A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.559 [XNIO-1 task-1] jb4BEzv6Sdu8aE_YdS3Wtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a79f4523 +09:02:59.559 [XNIO-1 task-1] jb4BEzv6Sdu8aE_YdS3Wtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.559 [XNIO-1 task-1] jb4BEzv6Sdu8aE_YdS3Wtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.559 [XNIO-1 task-1] jb4BEzv6Sdu8aE_YdS3Wtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a79f4523 +09:02:59.562 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8abf3953 +09:02:59.566 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/08957d01, base path is set to: null +09:02:59.566 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.566 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.566 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:59.566 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/08957d01, base path is set to: null +09:02:59.566 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG com.networknt.schema.TypeValidator debug - validate( "08957d01", "08957d01", userId) +09:02:59.567 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"78d32d3e-e003-4723-a363-b6134b528420","newPassword":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPasswordConfirm":"37460f7f-5e92-4f3d-a572-521bd2e74acc"}, {"password":"78d32d3e-e003-4723-a363-b6134b528420","newPassword":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPasswordConfirm":"37460f7f-5e92-4f3d-a572-521bd2e74acc"}, requestBody) +09:02:59.567 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG com.networknt.schema.TypeValidator debug - validate( "37460f7f-5e92-4f3d-a572-521bd2e74acc", {"password":"78d32d3e-e003-4723-a363-b6134b528420","newPassword":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPasswordConfirm":"37460f7f-5e92-4f3d-a572-521bd2e74acc"}, requestBody.newPasswordConfirm) +09:02:59.567 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG com.networknt.schema.TypeValidator debug - validate( "78d32d3e-e003-4723-a363-b6134b528420", {"password":"78d32d3e-e003-4723-a363-b6134b528420","newPassword":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPasswordConfirm":"37460f7f-5e92-4f3d-a572-521bd2e74acc"}, requestBody.password) +09:02:59.567 [XNIO-1 task-1] KLT7xH7cSY2P-l6lcnESqA DEBUG com.networknt.schema.TypeValidator debug - validate( "37460f7f-5e92-4f3d-a572-521bd2e74acc", {"password":"78d32d3e-e003-4723-a363-b6134b528420","newPassword":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPasswordConfirm":"37460f7f-5e92-4f3d-a572-521bd2e74acc"}, requestBody.newPassword) +09:02:59.572 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0b6acaa1-d2ce-46e8-902b-c9f5756da057 +09:02:59.573 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0b6acaa1-d2ce-46e8-902b-c9f5756da057 +09:02:59.587 [XNIO-1 task-1] uY1rqck-TDqiVhLbOpKl_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.588 [XNIO-1 task-1] uY1rqck-TDqiVhLbOpKl_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.588 [XNIO-1 task-1] uY1rqck-TDqiVhLbOpKl_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.588 [XNIO-1 task-1] uY1rqck-TDqiVhLbOpKl_g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.593 [XNIO-1 task-1] NgwGITPkRN6yQoZSkoq9uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.593 [XNIO-1 task-1] NgwGITPkRN6yQoZSkoq9uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.594 [XNIO-1 task-1] NgwGITPkRN6yQoZSkoq9uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.598 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8abf3953 +09:02:59.599 [XNIO-1 task-1] 74ULH96cRTOkmsyvarK_1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.599 [XNIO-1 task-1] 74ULH96cRTOkmsyvarK_1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.600 [XNIO-1 task-1] 74ULH96cRTOkmsyvarK_1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.600 [XNIO-1 task-1] 74ULH96cRTOkmsyvarK_1w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:02:59.604 [XNIO-1 task-1] 54RgSDnIRq69R_tZTofzHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.604 [XNIO-1 task-1] 54RgSDnIRq69R_tZTofzHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.604 [XNIO-1 task-1] 54RgSDnIRq69R_tZTofzHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.612 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/28b808a4 +09:02:59.612 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.612 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.613 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:59.613 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/28b808a4 +09:02:59.613 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPassword":"dddd776f-d4b9-4765-aa2b-ad4486dca867","newPasswordConfirm":"dddd776f-d4b9-4765-aa2b-ad4486dca867"}, {"password":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPassword":"dddd776f-d4b9-4765-aa2b-ad4486dca867","newPasswordConfirm":"dddd776f-d4b9-4765-aa2b-ad4486dca867"}, requestBody) +09:02:59.614 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPassword":"dddd776f-d4b9-4765-aa2b-ad4486dca867","newPasswordConfirm":"dddd776f-d4b9-4765-aa2b-ad4486dca867"}, {"password":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPassword":"dddd776f-d4b9-4765-aa2b-ad4486dca867","newPasswordConfirm":"dddd776f-d4b9-4765-aa2b-ad4486dca867"}, requestBody) +09:02:59.614 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG com.networknt.schema.FormatValidator debug - validate( "dddd776f-d4b9-4765-aa2b-ad4486dca867", {"password":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPassword":"dddd776f-d4b9-4765-aa2b-ad4486dca867","newPasswordConfirm":"dddd776f-d4b9-4765-aa2b-ad4486dca867"}, requestBody.newPasswordConfirm) +09:02:59.614 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG com.networknt.schema.FormatValidator debug - validate( "90097df5-5414-4421-a6cd-2d04f2824d0d", {"password":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPassword":"dddd776f-d4b9-4765-aa2b-ad4486dca867","newPasswordConfirm":"dddd776f-d4b9-4765-aa2b-ad4486dca867"}, requestBody.password) +09:02:59.614 [XNIO-1 task-1] h4oFBhlBSTmqWUiCtNmG8g DEBUG com.networknt.schema.FormatValidator debug - validate( "dddd776f-d4b9-4765-aa2b-ad4486dca867", {"password":"90097df5-5414-4421-a6cd-2d04f2824d0d","newPassword":"dddd776f-d4b9-4765-aa2b-ad4486dca867","newPasswordConfirm":"dddd776f-d4b9-4765-aa2b-ad4486dca867"}, requestBody.newPassword) +09:02:59.630 [XNIO-1 task-1] isYQ3waKRHumjGGHHQ1QhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.630 [XNIO-1 task-1] isYQ3waKRHumjGGHHQ1QhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.630 [XNIO-1 task-1] isYQ3waKRHumjGGHHQ1QhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.637 [XNIO-1 task-1] Kx91iVxUT1mWDUElWz0qIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/08957d01 +09:02:59.637 [XNIO-1 task-1] Kx91iVxUT1mWDUElWz0qIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.637 [XNIO-1 task-1] Kx91iVxUT1mWDUElWz0qIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.638 [XNIO-1 task-1] Kx91iVxUT1mWDUElWz0qIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/08957d01 +09:02:59.638 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:edca6084 +09:02:59.640 [XNIO-1 task-1] D0UUPJ7cT42YGi9_uzgJxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/28b808a4, base path is set to: null +09:02:59.640 [XNIO-1 task-1] D0UUPJ7cT42YGi9_uzgJxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.640 [XNIO-1 task-1] D0UUPJ7cT42YGi9_uzgJxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.640 [XNIO-1 task-1] D0UUPJ7cT42YGi9_uzgJxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/28b808a4, base path is set to: null +09:02:59.640 [XNIO-1 task-1] D0UUPJ7cT42YGi9_uzgJxg DEBUG com.networknt.schema.TypeValidator debug - validate( "28b808a4", "28b808a4", userId) +09:02:59.643 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:02:59.643 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.643 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:02:59.643 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:02:59.643 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:02:59.644 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7b75006e-827b-4291-9b70-3870e82230ff","newPassword":"80118a00-0056-46f4-8488-a48afbcdca7d","newPasswordConfirm":"80118a00-0056-46f4-8488-a48afbcdca7d"}, {"password":"7b75006e-827b-4291-9b70-3870e82230ff","newPassword":"80118a00-0056-46f4-8488-a48afbcdca7d","newPasswordConfirm":"80118a00-0056-46f4-8488-a48afbcdca7d"}, requestBody) +09:02:59.644 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7b75006e-827b-4291-9b70-3870e82230ff","newPassword":"80118a00-0056-46f4-8488-a48afbcdca7d","newPasswordConfirm":"80118a00-0056-46f4-8488-a48afbcdca7d"}, {"password":"7b75006e-827b-4291-9b70-3870e82230ff","newPassword":"80118a00-0056-46f4-8488-a48afbcdca7d","newPasswordConfirm":"80118a00-0056-46f4-8488-a48afbcdca7d"}, requestBody) +09:02:59.644 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG com.networknt.schema.FormatValidator debug - validate( "80118a00-0056-46f4-8488-a48afbcdca7d", {"password":"7b75006e-827b-4291-9b70-3870e82230ff","newPassword":"80118a00-0056-46f4-8488-a48afbcdca7d","newPasswordConfirm":"80118a00-0056-46f4-8488-a48afbcdca7d"}, requestBody.newPasswordConfirm) +09:02:59.644 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG com.networknt.schema.FormatValidator debug - validate( "7b75006e-827b-4291-9b70-3870e82230ff", {"password":"7b75006e-827b-4291-9b70-3870e82230ff","newPassword":"80118a00-0056-46f4-8488-a48afbcdca7d","newPasswordConfirm":"80118a00-0056-46f4-8488-a48afbcdca7d"}, requestBody.password) +09:02:59.644 [XNIO-1 task-1] BBMwu8DtQ_Cl1AsTf-lEDA DEBUG com.networknt.schema.FormatValidator debug - validate( "80118a00-0056-46f4-8488-a48afbcdca7d", {"password":"7b75006e-827b-4291-9b70-3870e82230ff","newPassword":"80118a00-0056-46f4-8488-a48afbcdca7d","newPasswordConfirm":"80118a00-0056-46f4-8488-a48afbcdca7d"}, requestBody.newPassword) +09:02:59.659 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d69d6f21 +09:02:59.659 [XNIO-1 task-1] 33u1_k5WQN-6V-9fMrvV_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.659 [XNIO-1 task-1] 33u1_k5WQN-6V-9fMrvV_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.659 [XNIO-1 task-1] 33u1_k5WQN-6V-9fMrvV_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.667 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fe4cd13c, base path is set to: null +09:02:59.667 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.667 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.667 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:02:59.667 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fe4cd13c, base path is set to: null +09:02:59.667 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe4cd13c", "fe4cd13c", userId) +09:02:59.668 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"80118a00-0056-46f4-8488-a48afbcdca7d","newPassword":"071a477e-f1f6-4246-9098-af74c81bd68b","newPasswordConfirm":"071a477e-f1f6-4246-9098-af74c81bd68b"}, {"password":"80118a00-0056-46f4-8488-a48afbcdca7d","newPassword":"071a477e-f1f6-4246-9098-af74c81bd68b","newPasswordConfirm":"071a477e-f1f6-4246-9098-af74c81bd68b"}, requestBody) +09:02:59.668 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG com.networknt.schema.TypeValidator debug - validate( "071a477e-f1f6-4246-9098-af74c81bd68b", {"password":"80118a00-0056-46f4-8488-a48afbcdca7d","newPassword":"071a477e-f1f6-4246-9098-af74c81bd68b","newPasswordConfirm":"071a477e-f1f6-4246-9098-af74c81bd68b"}, requestBody.newPasswordConfirm) +09:02:59.668 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG com.networknt.schema.TypeValidator debug - validate( "80118a00-0056-46f4-8488-a48afbcdca7d", {"password":"80118a00-0056-46f4-8488-a48afbcdca7d","newPassword":"071a477e-f1f6-4246-9098-af74c81bd68b","newPasswordConfirm":"071a477e-f1f6-4246-9098-af74c81bd68b"}, requestBody.password) +09:02:59.669 [XNIO-1 task-1] HAT-uPxGRnm39mYpNTCXPA DEBUG com.networknt.schema.TypeValidator debug - validate( "071a477e-f1f6-4246-9098-af74c81bd68b", {"password":"80118a00-0056-46f4-8488-a48afbcdca7d","newPassword":"071a477e-f1f6-4246-9098-af74c81bd68b","newPasswordConfirm":"071a477e-f1f6-4246-9098-af74c81bd68b"}, requestBody.newPassword) +09:02:59.687 [XNIO-1 task-1] angCikNeSqeZvLYX9Q8cbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.688 [XNIO-1 task-1] angCikNeSqeZvLYX9Q8cbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.688 [XNIO-1 task-1] angCikNeSqeZvLYX9Q8cbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:02:59.739 [XNIO-1 task-1] cLXqpLTNQ-mAgzraxEbNFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/08957d01, base path is set to: null +09:02:59.740 [XNIO-1 task-1] cLXqpLTNQ-mAgzraxEbNFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:02:59.740 [XNIO-1 task-1] cLXqpLTNQ-mAgzraxEbNFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:02:59.740 [XNIO-1 task-1] cLXqpLTNQ-mAgzraxEbNFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/08957d01, base path is set to: null +09:02:59.740 [XNIO-1 task-1] cLXqpLTNQ-mAgzraxEbNFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08957d01", "08957d01", userId) +09:02:59.740 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:edca6084 +09:02:59.743 [XNIO-1 task-1] XH4KQGbHTu6JNIxSUhVeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.743 [XNIO-1 task-1] XH4KQGbHTu6JNIxSUhVeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:02:59.743 [XNIO-1 task-1] XH4KQGbHTu6JNIxSUhVeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.408 [XNIO-1 task-1] bkvCTTCLTvWQLJm85tAm5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d2708282 +09:03:01.408 [XNIO-1 task-1] bkvCTTCLTvWQLJm85tAm5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.408 [XNIO-1 task-1] bkvCTTCLTvWQLJm85tAm5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.408 [XNIO-1 task-1] bkvCTTCLTvWQLJm85tAm5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d2708282 +09:03:01.418 [XNIO-1 task-1] 1WwQwLDORhGc_99htBFx4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.418 [XNIO-1 task-1] 1WwQwLDORhGc_99htBFx4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.418 [XNIO-1 task-1] 1WwQwLDORhGc_99htBFx4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.430 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8abf3953 +09:03:01.451 [XNIO-1 task-1] 46x5E0lhToiB_QPhPpBjBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.451 [XNIO-1 task-1] 46x5E0lhToiB_QPhPpBjBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.451 [XNIO-1 task-1] 46x5E0lhToiB_QPhPpBjBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.463 [XNIO-1 task-1] HHMDmES8Sc6kaBOJsBwdXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/629f5ec2, base path is set to: null +09:03:01.463 [XNIO-1 task-1] HHMDmES8Sc6kaBOJsBwdXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.463 [XNIO-1 task-1] HHMDmES8Sc6kaBOJsBwdXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.463 [XNIO-1 task-1] HHMDmES8Sc6kaBOJsBwdXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/629f5ec2, base path is set to: null +09:03:01.463 [XNIO-1 task-1] HHMDmES8Sc6kaBOJsBwdXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "629f5ec2", "629f5ec2", userId) +09:03:01.468 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.468 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.468 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.468 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:01.468 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.469 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"071a477e-f1f6-4246-9098-af74c81bd68b","newPassword":"bfdf33d4-e227-405d-968e-6b76782489f6","newPasswordConfirm":"bfdf33d4-e227-405d-968e-6b76782489f6"}, {"password":"071a477e-f1f6-4246-9098-af74c81bd68b","newPassword":"bfdf33d4-e227-405d-968e-6b76782489f6","newPasswordConfirm":"bfdf33d4-e227-405d-968e-6b76782489f6"}, requestBody) +09:03:01.469 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"071a477e-f1f6-4246-9098-af74c81bd68b","newPassword":"bfdf33d4-e227-405d-968e-6b76782489f6","newPasswordConfirm":"bfdf33d4-e227-405d-968e-6b76782489f6"}, {"password":"071a477e-f1f6-4246-9098-af74c81bd68b","newPassword":"bfdf33d4-e227-405d-968e-6b76782489f6","newPasswordConfirm":"bfdf33d4-e227-405d-968e-6b76782489f6"}, requestBody) +09:03:01.469 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG com.networknt.schema.FormatValidator debug - validate( "bfdf33d4-e227-405d-968e-6b76782489f6", {"password":"071a477e-f1f6-4246-9098-af74c81bd68b","newPassword":"bfdf33d4-e227-405d-968e-6b76782489f6","newPasswordConfirm":"bfdf33d4-e227-405d-968e-6b76782489f6"}, requestBody.newPasswordConfirm) +09:03:01.469 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG com.networknt.schema.FormatValidator debug - validate( "071a477e-f1f6-4246-9098-af74c81bd68b", {"password":"071a477e-f1f6-4246-9098-af74c81bd68b","newPassword":"bfdf33d4-e227-405d-968e-6b76782489f6","newPasswordConfirm":"bfdf33d4-e227-405d-968e-6b76782489f6"}, requestBody.password) +09:03:01.469 [XNIO-1 task-1] sU1reX15Se6Y27xXDL43gg DEBUG com.networknt.schema.FormatValidator debug - validate( "bfdf33d4-e227-405d-968e-6b76782489f6", {"password":"071a477e-f1f6-4246-9098-af74c81bd68b","newPassword":"bfdf33d4-e227-405d-968e-6b76782489f6","newPasswordConfirm":"bfdf33d4-e227-405d-968e-6b76782489f6"}, requestBody.newPassword) +09:03:01.491 [XNIO-1 task-1] hvx4-Pk7Tw6e9btz2kPtig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.491 [XNIO-1 task-1] hvx4-Pk7Tw6e9btz2kPtig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.492 [XNIO-1 task-1] hvx4-Pk7Tw6e9btz2kPtig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.492 [XNIO-1 task-1] hvx4-Pk7Tw6e9btz2kPtig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.497 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d69d6f21 +09:03:01.498 [XNIO-1 task-1] 67ro0qJcRiiWGmdJKxJ6Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/28b808a4 +09:03:01.498 [XNIO-1 task-1] 67ro0qJcRiiWGmdJKxJ6Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.498 [XNIO-1 task-1] 67ro0qJcRiiWGmdJKxJ6Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.499 [XNIO-1 task-1] 67ro0qJcRiiWGmdJKxJ6Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/28b808a4 +09:03:01.504 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:edca6084 +09:03:01.507 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fe4cd13c, base path is set to: null +09:03:01.507 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.507 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.507 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:01.507 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fe4cd13c, base path is set to: null +09:03:01.508 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG com.networknt.schema.TypeValidator debug - validate( "fe4cd13c", "fe4cd13c", userId) +09:03:01.508 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"bfdf33d4-e227-405d-968e-6b76782489f6","newPassword":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPasswordConfirm":"1ce1c895-91d6-4316-81b9-4289f78aa074"}, {"password":"bfdf33d4-e227-405d-968e-6b76782489f6","newPassword":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPasswordConfirm":"1ce1c895-91d6-4316-81b9-4289f78aa074"}, requestBody) +09:03:01.508 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1ce1c895-91d6-4316-81b9-4289f78aa074", {"password":"bfdf33d4-e227-405d-968e-6b76782489f6","newPassword":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPasswordConfirm":"1ce1c895-91d6-4316-81b9-4289f78aa074"}, requestBody.newPasswordConfirm) +09:03:01.508 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG com.networknt.schema.TypeValidator debug - validate( "bfdf33d4-e227-405d-968e-6b76782489f6", {"password":"bfdf33d4-e227-405d-968e-6b76782489f6","newPassword":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPasswordConfirm":"1ce1c895-91d6-4316-81b9-4289f78aa074"}, requestBody.password) +09:03:01.508 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9e38cc06-8e3c-4d44-9813-610466eb25e2 +09:03:01.508 [XNIO-1 task-1] hBFaGpLOQu2WunOafAvc_g DEBUG com.networknt.schema.FormatValidator debug - validate( "1ce1c895-91d6-4316-81b9-4289f78aa074", {"password":"bfdf33d4-e227-405d-968e-6b76782489f6","newPassword":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPasswordConfirm":"1ce1c895-91d6-4316-81b9-4289f78aa074"}, requestBody.newPassword) +09:03:01.517 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9e38cc06-8e3c-4d44-9813-610466eb25e2 +09:03:01.532 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.532 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.532 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.532 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:01.533 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.533 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPassword":"37b032b5-c898-4276-a37f-87f705706d67","newPasswordConfirm":"37b032b5-c898-4276-a37f-87f705706d67"}, {"password":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPassword":"37b032b5-c898-4276-a37f-87f705706d67","newPasswordConfirm":"37b032b5-c898-4276-a37f-87f705706d67"}, requestBody) +09:03:01.533 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPassword":"37b032b5-c898-4276-a37f-87f705706d67","newPasswordConfirm":"37b032b5-c898-4276-a37f-87f705706d67"}, {"password":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPassword":"37b032b5-c898-4276-a37f-87f705706d67","newPasswordConfirm":"37b032b5-c898-4276-a37f-87f705706d67"}, requestBody) +09:03:01.533 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG com.networknt.schema.FormatValidator debug - validate( "37b032b5-c898-4276-a37f-87f705706d67", {"password":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPassword":"37b032b5-c898-4276-a37f-87f705706d67","newPasswordConfirm":"37b032b5-c898-4276-a37f-87f705706d67"}, requestBody.newPasswordConfirm) +09:03:01.533 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1ce1c895-91d6-4316-81b9-4289f78aa074", {"password":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPassword":"37b032b5-c898-4276-a37f-87f705706d67","newPasswordConfirm":"37b032b5-c898-4276-a37f-87f705706d67"}, requestBody.password) +09:03:01.533 [XNIO-1 task-1] s13W2jEUTc-sF4jkUMFGGw DEBUG com.networknt.schema.FormatValidator debug - validate( "37b032b5-c898-4276-a37f-87f705706d67", {"password":"1ce1c895-91d6-4316-81b9-4289f78aa074","newPassword":"37b032b5-c898-4276-a37f-87f705706d67","newPasswordConfirm":"37b032b5-c898-4276-a37f-87f705706d67"}, requestBody.newPassword) +09:03:01.552 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9e38cc06-8e3c-4d44-9813-610466eb25e2 +09:03:01.557 [XNIO-1 task-1] aBs-DR7SQQqDfuWYuzf5QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fe4cd13c +09:03:01.557 [XNIO-1 task-1] aBs-DR7SQQqDfuWYuzf5QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.557 [XNIO-1 task-1] aBs-DR7SQQqDfuWYuzf5QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.557 [XNIO-1 task-1] aBs-DR7SQQqDfuWYuzf5QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fe4cd13c +09:03:01.567 [XNIO-1 task-1] 9Z353_nNRKap0G9baFeWIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.567 [XNIO-1 task-1] 9Z353_nNRKap0G9baFeWIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.567 [XNIO-1 task-1] 9Z353_nNRKap0G9baFeWIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.570 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:133dd8cd-ebe8-4b04-bd99-6aacab5b8d0e +09:03:01.574 [XNIO-1 task-1] jzWfxCMWS0yk2HAlkQJ1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.575 [XNIO-1 task-1] jzWfxCMWS0yk2HAlkQJ1RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.575 [XNIO-1 task-1] jzWfxCMWS0yk2HAlkQJ1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.575 [XNIO-1 task-1] jzWfxCMWS0yk2HAlkQJ1RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.579 [XNIO-1 task-1] mTMFPI-5QVmCZrJ-YkxPIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/629f5ec2, base path is set to: null +09:03:01.579 [XNIO-1 task-1] mTMFPI-5QVmCZrJ-YkxPIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.579 [XNIO-1 task-1] mTMFPI-5QVmCZrJ-YkxPIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.579 [XNIO-1 task-1] mTMFPI-5QVmCZrJ-YkxPIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/629f5ec2, base path is set to: null +09:03:01.579 [XNIO-1 task-1] mTMFPI-5QVmCZrJ-YkxPIg DEBUG com.networknt.schema.TypeValidator debug - validate( "629f5ec2", "629f5ec2", userId) +09:03:01.590 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/08957d01 +09:03:01.590 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.590 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.590 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:01.590 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/08957d01 +09:03:01.591 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPassword":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1","newPasswordConfirm":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1"}, {"password":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPassword":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1","newPasswordConfirm":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1"}, requestBody) +09:03:01.591 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPassword":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1","newPasswordConfirm":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1"}, {"password":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPassword":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1","newPasswordConfirm":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1"}, requestBody) +09:03:01.591 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG com.networknt.schema.FormatValidator debug - validate( "8a01ac2d-2fe3-4159-ab48-0fc12a470ba1", {"password":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPassword":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1","newPasswordConfirm":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1"}, requestBody.newPasswordConfirm) +09:03:01.591 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG com.networknt.schema.FormatValidator debug - validate( "37460f7f-5e92-4f3d-a572-521bd2e74acc", {"password":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPassword":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1","newPasswordConfirm":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1"}, requestBody.password) +09:03:01.591 [XNIO-1 task-1] GvR1HtrqRZCTiS4_imgiZw DEBUG com.networknt.schema.FormatValidator debug - validate( "8a01ac2d-2fe3-4159-ab48-0fc12a470ba1", {"password":"37460f7f-5e92-4f3d-a572-521bd2e74acc","newPassword":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1","newPasswordConfirm":"8a01ac2d-2fe3-4159-ab48-0fc12a470ba1"}, requestBody.newPassword) +09:03:01.606 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a1f6fd3 +09:03:01.612 [XNIO-1 task-1] 8mU_TREcRYuUf2OthIVGdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.612 [XNIO-1 task-1] 8mU_TREcRYuUf2OthIVGdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.612 [XNIO-1 task-1] 8mU_TREcRYuUf2OthIVGdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.620 [XNIO-1 task-1] bAbabLj5TpWJ3wXfGZJvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/08957d01, base path is set to: null +09:03:01.621 [XNIO-1 task-1] bAbabLj5TpWJ3wXfGZJvnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.621 [XNIO-1 task-1] bAbabLj5TpWJ3wXfGZJvnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.621 [XNIO-1 task-1] bAbabLj5TpWJ3wXfGZJvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/08957d01, base path is set to: null +09:03:01.622 [XNIO-1 task-1] bAbabLj5TpWJ3wXfGZJvnw DEBUG com.networknt.schema.TypeValidator debug - validate( "08957d01", "08957d01", userId) +09:03:01.636 [XNIO-1 task-1] 4So7X4bQQ5uhMxlTxZWR9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.636 [XNIO-1 task-1] 4So7X4bQQ5uhMxlTxZWR9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.637 [XNIO-1 task-1] 4So7X4bQQ5uhMxlTxZWR9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.656 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.657 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.657 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.657 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:01.657 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.657 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"37b032b5-c898-4276-a37f-87f705706d67","newPassword":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPasswordConfirm":"585a1773-45ac-418a-95dd-a9c6c6bc32f9"}, {"password":"37b032b5-c898-4276-a37f-87f705706d67","newPassword":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPasswordConfirm":"585a1773-45ac-418a-95dd-a9c6c6bc32f9"}, requestBody) +09:03:01.658 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"37b032b5-c898-4276-a37f-87f705706d67","newPassword":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPasswordConfirm":"585a1773-45ac-418a-95dd-a9c6c6bc32f9"}, {"password":"37b032b5-c898-4276-a37f-87f705706d67","newPassword":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPasswordConfirm":"585a1773-45ac-418a-95dd-a9c6c6bc32f9"}, requestBody) +09:03:01.658 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "585a1773-45ac-418a-95dd-a9c6c6bc32f9", {"password":"37b032b5-c898-4276-a37f-87f705706d67","newPassword":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPasswordConfirm":"585a1773-45ac-418a-95dd-a9c6c6bc32f9"}, requestBody.newPasswordConfirm) +09:03:01.659 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "37b032b5-c898-4276-a37f-87f705706d67", {"password":"37b032b5-c898-4276-a37f-87f705706d67","newPassword":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPasswordConfirm":"585a1773-45ac-418a-95dd-a9c6c6bc32f9"}, requestBody.password) +09:03:01.659 [XNIO-1 task-1] aoIz2rphQBS4zQqxr9v-Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "585a1773-45ac-418a-95dd-a9c6c6bc32f9", {"password":"37b032b5-c898-4276-a37f-87f705706d67","newPassword":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPasswordConfirm":"585a1773-45ac-418a-95dd-a9c6c6bc32f9"}, requestBody.newPassword) +09:03:01.662 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a1f6fd3 +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fe4cd13c +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPassword":"b4141012-ffbf-42ae-86db-ca86e68d84ce","newPasswordConfirm":"b4141012-ffbf-42ae-86db-ca86e68d84ce"}, {"password":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPassword":"b4141012-ffbf-42ae-86db-ca86e68d84ce","newPasswordConfirm":"b4141012-ffbf-42ae-86db-ca86e68d84ce"}, requestBody) +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPassword":"b4141012-ffbf-42ae-86db-ca86e68d84ce","newPasswordConfirm":"b4141012-ffbf-42ae-86db-ca86e68d84ce"}, {"password":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPassword":"b4141012-ffbf-42ae-86db-ca86e68d84ce","newPasswordConfirm":"b4141012-ffbf-42ae-86db-ca86e68d84ce"}, requestBody) +09:03:01.689 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b4141012-ffbf-42ae-86db-ca86e68d84ce", {"password":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPassword":"b4141012-ffbf-42ae-86db-ca86e68d84ce","newPasswordConfirm":"b4141012-ffbf-42ae-86db-ca86e68d84ce"}, requestBody.newPasswordConfirm) +09:03:01.690 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG com.networknt.schema.FormatValidator debug - validate( "585a1773-45ac-418a-95dd-a9c6c6bc32f9", {"password":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPassword":"b4141012-ffbf-42ae-86db-ca86e68d84ce","newPasswordConfirm":"b4141012-ffbf-42ae-86db-ca86e68d84ce"}, requestBody.password) +09:03:01.690 [XNIO-1 task-1] 8VUmGa3kQDGbsg4KOjX0sQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b4141012-ffbf-42ae-86db-ca86e68d84ce", {"password":"585a1773-45ac-418a-95dd-a9c6c6bc32f9","newPassword":"b4141012-ffbf-42ae-86db-ca86e68d84ce","newPasswordConfirm":"b4141012-ffbf-42ae-86db-ca86e68d84ce"}, requestBody.newPassword) +09:03:01.707 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e8b600c7 +09:03:01.707 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.707 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.707 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:01.707 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e8b600c7 +09:03:01.708 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5fc7cb2e-8616-491b-9581-7b5aec8550d1","newPassword":"7008014f-47cc-4542-8773-a42432ebb97f","newPasswordConfirm":"7008014f-47cc-4542-8773-a42432ebb97f"}, {"password":"5fc7cb2e-8616-491b-9581-7b5aec8550d1","newPassword":"7008014f-47cc-4542-8773-a42432ebb97f","newPasswordConfirm":"7008014f-47cc-4542-8773-a42432ebb97f"}, requestBody) +09:03:01.708 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5fc7cb2e-8616-491b-9581-7b5aec8550d1","newPassword":"7008014f-47cc-4542-8773-a42432ebb97f","newPasswordConfirm":"7008014f-47cc-4542-8773-a42432ebb97f"}, {"password":"5fc7cb2e-8616-491b-9581-7b5aec8550d1","newPassword":"7008014f-47cc-4542-8773-a42432ebb97f","newPasswordConfirm":"7008014f-47cc-4542-8773-a42432ebb97f"}, requestBody) +09:03:01.709 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "7008014f-47cc-4542-8773-a42432ebb97f", {"password":"5fc7cb2e-8616-491b-9581-7b5aec8550d1","newPassword":"7008014f-47cc-4542-8773-a42432ebb97f","newPasswordConfirm":"7008014f-47cc-4542-8773-a42432ebb97f"}, requestBody.newPasswordConfirm) +09:03:01.709 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5fc7cb2e-8616-491b-9581-7b5aec8550d1", {"password":"5fc7cb2e-8616-491b-9581-7b5aec8550d1","newPassword":"7008014f-47cc-4542-8773-a42432ebb97f","newPasswordConfirm":"7008014f-47cc-4542-8773-a42432ebb97f"}, requestBody.password) +09:03:01.709 [XNIO-1 task-1] jndn0ZyBRXyHrUlO5FUsdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "7008014f-47cc-4542-8773-a42432ebb97f", {"password":"5fc7cb2e-8616-491b-9581-7b5aec8550d1","newPassword":"7008014f-47cc-4542-8773-a42432ebb97f","newPasswordConfirm":"7008014f-47cc-4542-8773-a42432ebb97f"}, requestBody.newPassword) +09:03:01.733 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a1f6fd3 +09:03:01.737 [XNIO-1 task-1] xt0M0oJDTM-FwnxGGLJAuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.738 [XNIO-1 task-1] xt0M0oJDTM-FwnxGGLJAuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.738 [XNIO-1 task-1] xt0M0oJDTM-FwnxGGLJAuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.743 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:133dd8cd-ebe8-4b04-bd99-6aacab5b8d0e +09:03:01.750 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9ea83179 +09:03:01.761 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b1e4a137, base path is set to: null +09:03:01.761 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.761 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.761 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:01.761 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b1e4a137, base path is set to: null +09:03:01.762 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG com.networknt.schema.TypeValidator debug - validate( "b1e4a137", "b1e4a137", userId) +09:03:01.763 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"77d0f7d2-7fe1-4663-9efa-de3241f1dc70","newPassword":"b53ecd04-5246-40c0-9396-9774bb65044a","newPasswordConfirm":"b53ecd04-5246-40c0-9396-9774bb65044a"}, {"password":"77d0f7d2-7fe1-4663-9efa-de3241f1dc70","newPassword":"b53ecd04-5246-40c0-9396-9774bb65044a","newPasswordConfirm":"b53ecd04-5246-40c0-9396-9774bb65044a"}, requestBody) +09:03:01.763 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG com.networknt.schema.TypeValidator debug - validate( "b53ecd04-5246-40c0-9396-9774bb65044a", {"password":"77d0f7d2-7fe1-4663-9efa-de3241f1dc70","newPassword":"b53ecd04-5246-40c0-9396-9774bb65044a","newPasswordConfirm":"b53ecd04-5246-40c0-9396-9774bb65044a"}, requestBody.newPasswordConfirm) +09:03:01.763 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG com.networknt.schema.TypeValidator debug - validate( "77d0f7d2-7fe1-4663-9efa-de3241f1dc70", {"password":"77d0f7d2-7fe1-4663-9efa-de3241f1dc70","newPassword":"b53ecd04-5246-40c0-9396-9774bb65044a","newPasswordConfirm":"b53ecd04-5246-40c0-9396-9774bb65044a"}, requestBody.password) +09:03:01.763 [XNIO-1 task-1] yJHVbLUaRrugN-zeeoZ1UA DEBUG com.networknt.schema.TypeValidator debug - validate( "b53ecd04-5246-40c0-9396-9774bb65044a", {"password":"77d0f7d2-7fe1-4663-9efa-de3241f1dc70","newPassword":"b53ecd04-5246-40c0-9396-9774bb65044a","newPasswordConfirm":"b53ecd04-5246-40c0-9396-9774bb65044a"}, requestBody.newPassword) +09:03:01.780 [XNIO-1 task-1] T0PupBNRRxqYqA4nWwYQjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1e4a137, base path is set to: null +09:03:01.780 [XNIO-1 task-1] T0PupBNRRxqYqA4nWwYQjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.780 [XNIO-1 task-1] T0PupBNRRxqYqA4nWwYQjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.780 [XNIO-1 task-1] T0PupBNRRxqYqA4nWwYQjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1e4a137, base path is set to: null +09:03:01.781 [XNIO-1 task-1] T0PupBNRRxqYqA4nWwYQjw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1e4a137", "b1e4a137", userId) +09:03:01.784 [XNIO-1 task-1] ZEzP2jONQnyIqGyhJVMWzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1e4a137 +09:03:01.784 [XNIO-1 task-1] ZEzP2jONQnyIqGyhJVMWzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.784 [XNIO-1 task-1] ZEzP2jONQnyIqGyhJVMWzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.784 [XNIO-1 task-1] ZEzP2jONQnyIqGyhJVMWzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1e4a137 +09:03:01.792 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:77200ca6-895a-422d-a46b-5fe5069ae27f +09:03:01.797 [XNIO-1 task-1] yTaNUdwPTtiFgiZNDjaULQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.797 [XNIO-1 task-1] yTaNUdwPTtiFgiZNDjaULQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.797 [XNIO-1 task-1] yTaNUdwPTtiFgiZNDjaULQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.797 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:77200ca6-895a-422d-a46b-5fe5069ae27f +09:03:01.815 [XNIO-1 task-1] bktAuFNxTbmnXHHjpBpEIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.815 [XNIO-1 task-1] bktAuFNxTbmnXHHjpBpEIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.815 [XNIO-1 task-1] bktAuFNxTbmnXHHjpBpEIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.815 [XNIO-1 task-1] bktAuFNxTbmnXHHjpBpEIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.823 [XNIO-1 task-1] fPMFwT3jSLuT4mx22fH2Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.823 [XNIO-1 task-1] fPMFwT3jSLuT4mx22fH2Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.823 [XNIO-1 task-1] fPMFwT3jSLuT4mx22fH2Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.823 [XNIO-1 task-1] fPMFwT3jSLuT4mx22fH2Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.827 [XNIO-1 task-1] 9gDzNX05Rnu4SSBnrenejA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fe4cd13c, base path is set to: null +09:03:01.827 [XNIO-1 task-1] 9gDzNX05Rnu4SSBnrenejA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.827 [XNIO-1 task-1] 9gDzNX05Rnu4SSBnrenejA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.827 [XNIO-1 task-1] 9gDzNX05Rnu4SSBnrenejA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fe4cd13c, base path is set to: null +09:03:01.827 [XNIO-1 task-1] 9gDzNX05Rnu4SSBnrenejA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe4cd13c", "fe4cd13c", userId) +09:03:01.841 [XNIO-1 task-1] OJ5ALzEpRS2RClKV2BheYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e8b600c7 +09:03:01.841 [XNIO-1 task-1] OJ5ALzEpRS2RClKV2BheYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.841 [XNIO-1 task-1] OJ5ALzEpRS2RClKV2BheYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.841 [XNIO-1 task-1] OJ5ALzEpRS2RClKV2BheYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e8b600c7 +09:03:01.850 [XNIO-1 task-1] C0EzFhEBTs6RwVD8aNMvZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/737302df, base path is set to: null +09:03:01.850 [XNIO-1 task-1] C0EzFhEBTs6RwVD8aNMvZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.850 [XNIO-1 task-1] C0EzFhEBTs6RwVD8aNMvZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.850 [XNIO-1 task-1] C0EzFhEBTs6RwVD8aNMvZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/737302df, base path is set to: null +09:03:01.850 [XNIO-1 task-1] C0EzFhEBTs6RwVD8aNMvZg DEBUG com.networknt.schema.TypeValidator debug - validate( "737302df", "737302df", userId) +09:03:01.853 [XNIO-1 task-1] 1TlUBPHWSTiwZlVhMvJfdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.853 [XNIO-1 task-1] 1TlUBPHWSTiwZlVhMvJfdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.853 [XNIO-1 task-1] 1TlUBPHWSTiwZlVhMvJfdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.861 [XNIO-1 task-1] EfXkni82RAW_GXZLQXc4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.862 [XNIO-1 task-1] EfXkni82RAW_GXZLQXc4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.862 [XNIO-1 task-1] EfXkni82RAW_GXZLQXc4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.892 [XNIO-1 task-1] c99laI9lR42wI_KAulA_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.892 [XNIO-1 task-1] c99laI9lR42wI_KAulA_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.892 [XNIO-1 task-1] c99laI9lR42wI_KAulA_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.892 [XNIO-1 task-1] c99laI9lR42wI_KAulA_yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:01.907 [XNIO-1 task-1] T8a-f-lNSpmBNSdczrZp-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.907 [XNIO-1 task-1] T8a-f-lNSpmBNSdczrZp-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.907 [XNIO-1 task-1] T8a-f-lNSpmBNSdczrZp-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.918 [XNIO-1 task-1] 0yaX_BbDRRSD4aI2Vu48UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/737302df +09:03:01.918 [XNIO-1 task-1] 0yaX_BbDRRSD4aI2Vu48UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:01.918 [XNIO-1 task-1] 0yaX_BbDRRSD4aI2Vu48UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:01.918 [XNIO-1 task-1] 0yaX_BbDRRSD4aI2Vu48UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/737302df +09:03:01.925 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4acbc7cb, base path is set to: null +09:03:01.925 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.927 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.927 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:01.927 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a1f6fd3 +09:03:01.927 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a1f6fd3 +09:03:01.927 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "4acbc7cb", "4acbc7cb", userId) +09:03:01.927 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f404a8ae-b35b-4b48-ae32-56bbc2efd635","newPassword":"92f23c88-ef58-404f-b77b-a3f2b58153c8","newPasswordConfirm":"92f23c88-ef58-404f-b77b-a3f2b58153c8"}, {"password":"f404a8ae-b35b-4b48-ae32-56bbc2efd635","newPassword":"92f23c88-ef58-404f-b77b-a3f2b58153c8","newPasswordConfirm":"92f23c88-ef58-404f-b77b-a3f2b58153c8"}, requestBody) +09:03:01.927 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "92f23c88-ef58-404f-b77b-a3f2b58153c8", {"password":"f404a8ae-b35b-4b48-ae32-56bbc2efd635","newPassword":"92f23c88-ef58-404f-b77b-a3f2b58153c8","newPasswordConfirm":"92f23c88-ef58-404f-b77b-a3f2b58153c8"}, requestBody.newPasswordConfirm) +09:03:01.927 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "f404a8ae-b35b-4b48-ae32-56bbc2efd635", {"password":"f404a8ae-b35b-4b48-ae32-56bbc2efd635","newPassword":"92f23c88-ef58-404f-b77b-a3f2b58153c8","newPasswordConfirm":"92f23c88-ef58-404f-b77b-a3f2b58153c8"}, requestBody.password) +09:03:01.927 [XNIO-1 task-1] 0_qTdjHtQRyRDAENm982Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "92f23c88-ef58-404f-b77b-a3f2b58153c8", {"password":"f404a8ae-b35b-4b48-ae32-56bbc2efd635","newPassword":"92f23c88-ef58-404f-b77b-a3f2b58153c8","newPasswordConfirm":"92f23c88-ef58-404f-b77b-a3f2b58153c8"}, requestBody.newPassword) +09:03:01.950 [XNIO-1 task-1] ENY6nGrqQhyfyFxrpWXKQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.951 [XNIO-1 task-1] ENY6nGrqQhyfyFxrpWXKQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.951 [XNIO-1 task-1] ENY6nGrqQhyfyFxrpWXKQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.961 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9ea83179 +09:03:01.968 [XNIO-1 task-1] YLlky59MQM-PIm9O1C0_Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.968 [XNIO-1 task-1] YLlky59MQM-PIm9O1C0_Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.968 [XNIO-1 task-1] YLlky59MQM-PIm9O1C0_Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.968 [XNIO-1 task-1] YLlky59MQM-PIm9O1C0_Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:01.978 [XNIO-1 task-1] oobitPa_SDOtsuAwjOZZwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.978 [XNIO-1 task-1] oobitPa_SDOtsuAwjOZZwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.978 [XNIO-1 task-1] oobitPa_SDOtsuAwjOZZwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:01.991 [XNIO-1 task-1] bB3U4ktDSbqw78fLHccqkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4acbc7cb, base path is set to: null +09:03:01.991 [XNIO-1 task-1] bB3U4ktDSbqw78fLHccqkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:01.991 [XNIO-1 task-1] bB3U4ktDSbqw78fLHccqkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:01.991 [XNIO-1 task-1] bB3U4ktDSbqw78fLHccqkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4acbc7cb, base path is set to: null +09:03:01.991 [XNIO-1 task-1] bB3U4ktDSbqw78fLHccqkA DEBUG com.networknt.schema.TypeValidator debug - validate( "4acbc7cb", "4acbc7cb", userId) +09:03:01.998 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a1f6fd3 +09:03:02.005 [XNIO-1 task-1] _45ZPB4SSN6LE-t4euTtqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/737302df +09:03:02.005 [XNIO-1 task-1] _45ZPB4SSN6LE-t4euTtqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.005 [XNIO-1 task-1] _45ZPB4SSN6LE-t4euTtqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.005 [XNIO-1 task-1] _45ZPB4SSN6LE-t4euTtqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/737302df +09:03:02.019 [XNIO-1 task-1] 1dYt8DLRTau7gM10v7stTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7609ab6e, base path is set to: null +09:03:02.019 [XNIO-1 task-1] 1dYt8DLRTau7gM10v7stTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.019 [XNIO-1 task-1] 1dYt8DLRTau7gM10v7stTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.019 [XNIO-1 task-1] 1dYt8DLRTau7gM10v7stTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7609ab6e, base path is set to: null +09:03:02.020 [XNIO-1 task-1] 1dYt8DLRTau7gM10v7stTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7609ab6e", "7609ab6e", userId) +09:03:02.030 [XNIO-1 task-1] Oo-k-sFHQK-ws3jABiH03w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.030 [XNIO-1 task-1] Oo-k-sFHQK-ws3jABiH03w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.030 [XNIO-1 task-1] Oo-k-sFHQK-ws3jABiH03w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.038 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:efa04812-166b-4b06-9bf8-adc22b03291e +09:03:02.044 [XNIO-1 task-1] vWrdr8ZISHeylosXso_bmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.044 [XNIO-1 task-1] vWrdr8ZISHeylosXso_bmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.044 [XNIO-1 task-1] vWrdr8ZISHeylosXso_bmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.064 [XNIO-1 task-1] niwpLmwfRFu3P5Np2Ocx0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.064 [XNIO-1 task-1] niwpLmwfRFu3P5Np2Ocx0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.064 [XNIO-1 task-1] niwpLmwfRFu3P5Np2Ocx0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.096 [XNIO-1 task-1] RNmGFmXKQe6bmRTpf9_wWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.097 [XNIO-1 task-1] RNmGFmXKQe6bmRTpf9_wWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.097 [XNIO-1 task-1] RNmGFmXKQe6bmRTpf9_wWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.106 [XNIO-1 task-1] sZzSNifoSqSvb3c0srDJag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.106 [XNIO-1 task-1] sZzSNifoSqSvb3c0srDJag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.106 [XNIO-1 task-1] sZzSNifoSqSvb3c0srDJag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.117 [XNIO-1 task-1] sS7g2gL2TAaPMBUDshtbxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.117 [XNIO-1 task-1] sS7g2gL2TAaPMBUDshtbxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.117 [XNIO-1 task-1] sS7g2gL2TAaPMBUDshtbxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.132 [XNIO-1 task-1] _eGQS6EpRzqTZBeIJimqYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.132 [XNIO-1 task-1] _eGQS6EpRzqTZBeIJimqYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.132 [XNIO-1 task-1] _eGQS6EpRzqTZBeIJimqYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.138 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7609e12c +09:03:02.152 [XNIO-1 task-1] GkfHqxqBQGqtzYpG8H8tVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.152 [XNIO-1 task-1] GkfHqxqBQGqtzYpG8H8tVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.152 [XNIO-1 task-1] GkfHqxqBQGqtzYpG8H8tVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.152 [XNIO-1 task-1] GkfHqxqBQGqtzYpG8H8tVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.160 [XNIO-1 task-1] potHrfnLRdaRnDgs3RaPUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.160 [XNIO-1 task-1] potHrfnLRdaRnDgs3RaPUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.160 [XNIO-1 task-1] potHrfnLRdaRnDgs3RaPUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.182 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7609e12c, base path is set to: null +09:03:02.182 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.182 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.182 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:02.182 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7609e12c, base path is set to: null +09:03:02.183 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG com.networknt.schema.TypeValidator debug - validate( "7609e12c", "7609e12c", userId) +09:03:02.183 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c3b38ad7-4885-4817-af68-ed06e2c2576f","newPassword":"e19e17ff-473d-442f-98f9-6873a94e7015","newPasswordConfirm":"e19e17ff-473d-442f-98f9-6873a94e7015"}, {"password":"c3b38ad7-4885-4817-af68-ed06e2c2576f","newPassword":"e19e17ff-473d-442f-98f9-6873a94e7015","newPasswordConfirm":"e19e17ff-473d-442f-98f9-6873a94e7015"}, requestBody) +09:03:02.183 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG com.networknt.schema.TypeValidator debug - validate( "e19e17ff-473d-442f-98f9-6873a94e7015", {"password":"c3b38ad7-4885-4817-af68-ed06e2c2576f","newPassword":"e19e17ff-473d-442f-98f9-6873a94e7015","newPasswordConfirm":"e19e17ff-473d-442f-98f9-6873a94e7015"}, requestBody.newPasswordConfirm) +09:03:02.183 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG com.networknt.schema.TypeValidator debug - validate( "c3b38ad7-4885-4817-af68-ed06e2c2576f", {"password":"c3b38ad7-4885-4817-af68-ed06e2c2576f","newPassword":"e19e17ff-473d-442f-98f9-6873a94e7015","newPasswordConfirm":"e19e17ff-473d-442f-98f9-6873a94e7015"}, requestBody.password) +09:03:02.183 [XNIO-1 task-1] SM68dymIQUWj8xR1hM-jKg DEBUG com.networknt.schema.TypeValidator debug - validate( "e19e17ff-473d-442f-98f9-6873a94e7015", {"password":"c3b38ad7-4885-4817-af68-ed06e2c2576f","newPassword":"e19e17ff-473d-442f-98f9-6873a94e7015","newPasswordConfirm":"e19e17ff-473d-442f-98f9-6873a94e7015"}, requestBody.newPassword) +09:03:02.194 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7609e12c +09:03:02.201 [XNIO-1 task-1] 02XcwuR3QomFlFP2YoaQpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7609e12c, base path is set to: null +09:03:02.201 [XNIO-1 task-1] 02XcwuR3QomFlFP2YoaQpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.201 [XNIO-1 task-1] 02XcwuR3QomFlFP2YoaQpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.202 [XNIO-1 task-1] 02XcwuR3QomFlFP2YoaQpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7609e12c, base path is set to: null +09:03:02.202 [XNIO-1 task-1] 02XcwuR3QomFlFP2YoaQpw DEBUG com.networknt.schema.TypeValidator debug - validate( "7609e12c", "7609e12c", userId) +09:03:02.211 [XNIO-1 task-1] 51sF3HLoQU-9LDoo0EkFyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7609ab6e, base path is set to: null +09:03:02.211 [XNIO-1 task-1] 51sF3HLoQU-9LDoo0EkFyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.211 [XNIO-1 task-1] 51sF3HLoQU-9LDoo0EkFyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.211 [XNIO-1 task-1] 51sF3HLoQU-9LDoo0EkFyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7609ab6e, base path is set to: null +09:03:02.211 [XNIO-1 task-1] 51sF3HLoQU-9LDoo0EkFyg DEBUG com.networknt.schema.TypeValidator debug - validate( "7609ab6e", "7609ab6e", userId) +09:03:02.217 [XNIO-1 task-1] _nmpUGdpSrWivhwjyqsQoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7609ab6e +09:03:02.217 [XNIO-1 task-1] _nmpUGdpSrWivhwjyqsQoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.217 [XNIO-1 task-1] _nmpUGdpSrWivhwjyqsQoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.217 [XNIO-1 task-1] _nmpUGdpSrWivhwjyqsQoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7609ab6e +09:03:02.229 [XNIO-1 task-1] LpvLt6QLSR-m1oQfkF0kYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.229 [XNIO-1 task-1] LpvLt6QLSR-m1oQfkF0kYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.230 [XNIO-1 task-1] LpvLt6QLSR-m1oQfkF0kYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.245 [XNIO-1 task-1] 4Da8_YsnQ5G8UQ6wWIi4Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.245 [XNIO-1 task-1] 4Da8_YsnQ5G8UQ6wWIi4Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.245 [XNIO-1 task-1] 4Da8_YsnQ5G8UQ6wWIi4Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.246 [XNIO-1 task-1] 4Da8_YsnQ5G8UQ6wWIi4Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.251 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:efa04812-166b-4b06-9bf8-adc22b03291e +09:03:02.255 [XNIO-1 task-1] jeAVCztcSm-382aaN4IR_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c0734aa8 +09:03:02.255 [XNIO-1 task-1] jeAVCztcSm-382aaN4IR_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.255 [XNIO-1 task-1] jeAVCztcSm-382aaN4IR_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.255 [XNIO-1 task-1] jeAVCztcSm-382aaN4IR_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c0734aa8 +09:03:02.264 [XNIO-1 task-1] Kw19MTPaRzimRGR5-_JH_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.264 [XNIO-1 task-1] Kw19MTPaRzimRGR5-_JH_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.264 [XNIO-1 task-1] Kw19MTPaRzimRGR5-_JH_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.265 [XNIO-1 task-1] Kw19MTPaRzimRGR5-_JH_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.271 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c797b551, base path is set to: null +09:03:02.271 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.271 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.271 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:02.271 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c797b551, base path is set to: null +09:03:02.272 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c797b551", "c797b551", userId) +09:03:02.272 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cddfb7be-ee58-4ca9-a796-f1f4f430e51a","newPassword":"c226c315-0219-4432-8a2a-dca3355057e9","newPasswordConfirm":"c226c315-0219-4432-8a2a-dca3355057e9"}, {"password":"cddfb7be-ee58-4ca9-a796-f1f4f430e51a","newPassword":"c226c315-0219-4432-8a2a-dca3355057e9","newPasswordConfirm":"c226c315-0219-4432-8a2a-dca3355057e9"}, requestBody) +09:03:02.272 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c226c315-0219-4432-8a2a-dca3355057e9", {"password":"cddfb7be-ee58-4ca9-a796-f1f4f430e51a","newPassword":"c226c315-0219-4432-8a2a-dca3355057e9","newPasswordConfirm":"c226c315-0219-4432-8a2a-dca3355057e9"}, requestBody.newPasswordConfirm) +09:03:02.272 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cddfb7be-ee58-4ca9-a796-f1f4f430e51a", {"password":"cddfb7be-ee58-4ca9-a796-f1f4f430e51a","newPassword":"c226c315-0219-4432-8a2a-dca3355057e9","newPasswordConfirm":"c226c315-0219-4432-8a2a-dca3355057e9"}, requestBody.password) +09:03:02.272 [XNIO-1 task-1] veo0anOCSBmmxhBuY34HVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c226c315-0219-4432-8a2a-dca3355057e9", {"password":"cddfb7be-ee58-4ca9-a796-f1f4f430e51a","newPassword":"c226c315-0219-4432-8a2a-dca3355057e9","newPasswordConfirm":"c226c315-0219-4432-8a2a-dca3355057e9"}, requestBody.newPassword) +09:03:02.299 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:05bfe334-6f81-4eee-a1b7-d648dec541d5 +09:03:02.301 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b9a093f6, base path is set to: null +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b9a093f6, base path is set to: null +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG com.networknt.schema.TypeValidator debug - validate( "b9a093f6", "b9a093f6", userId) +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"35aea57e-cb84-4dce-8f38-fd7baffff961","newPassword":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a","newPasswordConfirm":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a"}, {"password":"35aea57e-cb84-4dce-8f38-fd7baffff961","newPassword":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a","newPasswordConfirm":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a"}, requestBody) +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG com.networknt.schema.TypeValidator debug - validate( "55b53a8b-3873-4b4b-a4be-4892d2bcba6a", {"password":"35aea57e-cb84-4dce-8f38-fd7baffff961","newPassword":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a","newPasswordConfirm":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a"}, requestBody.newPasswordConfirm) +09:03:02.302 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG com.networknt.schema.TypeValidator debug - validate( "35aea57e-cb84-4dce-8f38-fd7baffff961", {"password":"35aea57e-cb84-4dce-8f38-fd7baffff961","newPassword":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a","newPasswordConfirm":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a"}, requestBody.password) +09:03:02.303 [XNIO-1 task-1] lq7aRVSvRNyzSUQ1zv8qgA DEBUG com.networknt.schema.TypeValidator debug - validate( "55b53a8b-3873-4b4b-a4be-4892d2bcba6a", {"password":"35aea57e-cb84-4dce-8f38-fd7baffff961","newPassword":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a","newPasswordConfirm":"55b53a8b-3873-4b4b-a4be-4892d2bcba6a"}, requestBody.newPassword) +09:03:02.310 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a1f6fd3 +09:03:02.322 [XNIO-1 task-1] zforNqLEQlmjxsmsUaIsLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.322 [XNIO-1 task-1] zforNqLEQlmjxsmsUaIsLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.322 [XNIO-1 task-1] zforNqLEQlmjxsmsUaIsLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.323 [XNIO-1 task-1] zforNqLEQlmjxsmsUaIsLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.331 [XNIO-1 task-1] JUuCU2b2RCOx4Ssq_bVGkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.331 [XNIO-1 task-1] JUuCU2b2RCOx4Ssq_bVGkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.331 [XNIO-1 task-1] JUuCU2b2RCOx4Ssq_bVGkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.337 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9 +09:03:02.338 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c10fe27e-7d83-4ab3-a8d0-42cd6a7494d9 +09:03:02.339 [XNIO-1 task-1] Ack9fWqQQDqOxEY3kyE6qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.340 [XNIO-1 task-1] Ack9fWqQQDqOxEY3kyE6qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.340 [XNIO-1 task-1] Ack9fWqQQDqOxEY3kyE6qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.353 [XNIO-1 task-1] dhGNZOsjRqeYmF3euo7gHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.353 [XNIO-1 task-1] dhGNZOsjRqeYmF3euo7gHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.353 [XNIO-1 task-1] dhGNZOsjRqeYmF3euo7gHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.353 [XNIO-1 task-1] dhGNZOsjRqeYmF3euo7gHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.357 [XNIO-1 task-1] iKLgw0u1SEK7bawskvyPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.357 [XNIO-1 task-1] iKLgw0u1SEK7bawskvyPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.358 [XNIO-1 task-1] iKLgw0u1SEK7bawskvyPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.367 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/97186359 +09:03:02.367 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.367 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.368 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:02.368 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/97186359 +09:03:02.368 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"03dc9588-821f-4488-8a0f-4b1c2260aa9b","newPassword":"bf765704-d210-407b-9818-0a23804e482c","newPasswordConfirm":"bf765704-d210-407b-9818-0a23804e482c"}, {"password":"03dc9588-821f-4488-8a0f-4b1c2260aa9b","newPassword":"bf765704-d210-407b-9818-0a23804e482c","newPasswordConfirm":"bf765704-d210-407b-9818-0a23804e482c"}, requestBody) +09:03:02.368 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"03dc9588-821f-4488-8a0f-4b1c2260aa9b","newPassword":"bf765704-d210-407b-9818-0a23804e482c","newPasswordConfirm":"bf765704-d210-407b-9818-0a23804e482c"}, {"password":"03dc9588-821f-4488-8a0f-4b1c2260aa9b","newPassword":"bf765704-d210-407b-9818-0a23804e482c","newPasswordConfirm":"bf765704-d210-407b-9818-0a23804e482c"}, requestBody) +09:03:02.368 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bf765704-d210-407b-9818-0a23804e482c", {"password":"03dc9588-821f-4488-8a0f-4b1c2260aa9b","newPassword":"bf765704-d210-407b-9818-0a23804e482c","newPasswordConfirm":"bf765704-d210-407b-9818-0a23804e482c"}, requestBody.newPasswordConfirm) +09:03:02.368 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG com.networknt.schema.FormatValidator debug - validate( "03dc9588-821f-4488-8a0f-4b1c2260aa9b", {"password":"03dc9588-821f-4488-8a0f-4b1c2260aa9b","newPassword":"bf765704-d210-407b-9818-0a23804e482c","newPasswordConfirm":"bf765704-d210-407b-9818-0a23804e482c"}, requestBody.password) +09:03:02.368 [XNIO-1 task-1] 1mmGCt9zS9Cav348jqO1eQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bf765704-d210-407b-9818-0a23804e482c", {"password":"03dc9588-821f-4488-8a0f-4b1c2260aa9b","newPassword":"bf765704-d210-407b-9818-0a23804e482c","newPasswordConfirm":"bf765704-d210-407b-9818-0a23804e482c"}, requestBody.newPassword) +09:03:02.389 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a1f6fd3 +09:03:02.391 [XNIO-1 task-1] O5Bn2vhEQoeNbUeGTHWUAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c797b551 +09:03:02.391 [XNIO-1 task-1] O5Bn2vhEQoeNbUeGTHWUAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.392 [XNIO-1 task-1] O5Bn2vhEQoeNbUeGTHWUAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.392 [XNIO-1 task-1] O5Bn2vhEQoeNbUeGTHWUAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c797b551 +09:03:02.393 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b6d23369-b918-4fb0-920b-03b7f400a574 +09:03:02.394 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b6d23369-b918-4fb0-920b-03b7f400a574 +09:03:02.395 [XNIO-1 task-1] 5xskvwtYRuGKLUZ-63LVdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186359 +09:03:02.395 [XNIO-1 task-1] 5xskvwtYRuGKLUZ-63LVdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.395 [XNIO-1 task-1] 5xskvwtYRuGKLUZ-63LVdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.395 [XNIO-1 task-1] 5xskvwtYRuGKLUZ-63LVdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186359 +09:03:02.402 [XNIO-1 task-1] x8KcUjqvRT-kSVLLM5r1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.403 [XNIO-1 task-1] x8KcUjqvRT-kSVLLM5r1ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.403 [XNIO-1 task-1] x8KcUjqvRT-kSVLLM5r1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.414 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b6d23369-b918-4fb0-920b-03b7f400a574 +09:03:02.422 [XNIO-1 task-1] 4Oz1RU3MQ0m-Vkro9CLLNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c797b551 +09:03:02.422 [XNIO-1 task-1] 4Oz1RU3MQ0m-Vkro9CLLNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.423 [XNIO-1 task-1] 4Oz1RU3MQ0m-Vkro9CLLNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.423 [XNIO-1 task-1] 4Oz1RU3MQ0m-Vkro9CLLNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c797b551 +09:03:02.428 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/97186359, base path is set to: null +09:03:02.428 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.428 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.429 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:02.429 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/97186359, base path is set to: null +09:03:02.429 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "97186359", "97186359", userId) +09:03:02.429 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"bf765704-d210-407b-9818-0a23804e482c","newPassword":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPasswordConfirm":"57142bca-8041-4f63-ab70-1b9b935d2fb9"}, {"password":"bf765704-d210-407b-9818-0a23804e482c","newPassword":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPasswordConfirm":"57142bca-8041-4f63-ab70-1b9b935d2fb9"}, requestBody) +09:03:02.429 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "57142bca-8041-4f63-ab70-1b9b935d2fb9", {"password":"bf765704-d210-407b-9818-0a23804e482c","newPassword":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPasswordConfirm":"57142bca-8041-4f63-ab70-1b9b935d2fb9"}, requestBody.newPasswordConfirm) +09:03:02.429 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bf765704-d210-407b-9818-0a23804e482c", {"password":"bf765704-d210-407b-9818-0a23804e482c","newPassword":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPasswordConfirm":"57142bca-8041-4f63-ab70-1b9b935d2fb9"}, requestBody.password) +09:03:02.429 [XNIO-1 task-1] EcX52rAgR-qHTqTGuPkCTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "57142bca-8041-4f63-ab70-1b9b935d2fb9", {"password":"bf765704-d210-407b-9818-0a23804e482c","newPassword":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPasswordConfirm":"57142bca-8041-4f63-ab70-1b9b935d2fb9"}, requestBody.newPassword) +09:03:02.447 [XNIO-1 task-1] HC5V-F9hSSitRTmOeNhuyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.447 [XNIO-1 task-1] HC5V-F9hSSitRTmOeNhuyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.447 [XNIO-1 task-1] HC5V-F9hSSitRTmOeNhuyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.451 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:60bd98d9-6c48-4c07-8cb7-4f8dc7bf7b91 +09:03:02.453 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:60bd98d9-6c48-4c07-8cb7-4f8dc7bf7b91 +09:03:02.471 [XNIO-1 task-1] L-k39C-BSxq2vqVnDr0v5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.471 [XNIO-1 task-1] L-k39C-BSxq2vqVnDr0v5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.471 [XNIO-1 task-1] L-k39C-BSxq2vqVnDr0v5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.496 [XNIO-1 task-1] MIY2rPucT1GbzUrIJL5bsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9a093f6 +09:03:02.496 [XNIO-1 task-1] MIY2rPucT1GbzUrIJL5bsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.496 [XNIO-1 task-1] MIY2rPucT1GbzUrIJL5bsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.496 [XNIO-1 task-1] MIY2rPucT1GbzUrIJL5bsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9a093f6 +09:03:02.506 [XNIO-1 task-1] 3_RoKgeVTnyWFaEiuNHNLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1f570d01, base path is set to: null +09:03:02.507 [XNIO-1 task-1] 3_RoKgeVTnyWFaEiuNHNLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.507 [XNIO-1 task-1] 3_RoKgeVTnyWFaEiuNHNLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.507 [XNIO-1 task-1] 3_RoKgeVTnyWFaEiuNHNLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1f570d01, base path is set to: null +09:03:02.507 [XNIO-1 task-1] 3_RoKgeVTnyWFaEiuNHNLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1f570d01", "1f570d01", userId) +09:03:02.520 [XNIO-1 task-1] 04PUP7t4RRKCIALOM3Bylg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/002bf5d8, base path is set to: null +09:03:02.520 [XNIO-1 task-1] 04PUP7t4RRKCIALOM3Bylg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.520 [XNIO-1 task-1] 04PUP7t4RRKCIALOM3Bylg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.520 [XNIO-1 task-1] 04PUP7t4RRKCIALOM3Bylg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/002bf5d8, base path is set to: null +09:03:02.521 [XNIO-1 task-1] 04PUP7t4RRKCIALOM3Bylg DEBUG com.networknt.schema.TypeValidator debug - validate( "002bf5d8", "002bf5d8", userId) +09:03:02.523 [XNIO-1 task-1] Ei1731i9TpGaYQFBmsY6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.523 [XNIO-1 task-1] Ei1731i9TpGaYQFBmsY6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.523 [XNIO-1 task-1] Ei1731i9TpGaYQFBmsY6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.524 [XNIO-1 task-1] Ei1731i9TpGaYQFBmsY6bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.530 [XNIO-1 task-1] iiRuEp1UTmSBKvVolhYpcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.530 [XNIO-1 task-1] iiRuEp1UTmSBKvVolhYpcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.530 [XNIO-1 task-1] iiRuEp1UTmSBKvVolhYpcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.531 [XNIO-1 task-1] iiRuEp1UTmSBKvVolhYpcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.539 [XNIO-1 task-1] iuakNEmIS3WqJ-Ls8OjZgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.539 [XNIO-1 task-1] iuakNEmIS3WqJ-Ls8OjZgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.539 [XNIO-1 task-1] iuakNEmIS3WqJ-Ls8OjZgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.541 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a1f6fd3 +09:03:02.558 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:feb55490 +09:03:02.561 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5db0279d-d477-4745-a7ea-5133f75b9d1d +09:03:02.562 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5db0279d-d477-4745-a7ea-5133f75b9d1d +09:03:02.576 [XNIO-1 task-1] M9PrihpHRG2_Ol-8Ko2MlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.576 [XNIO-1 task-1] M9PrihpHRG2_Ol-8Ko2MlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.576 [XNIO-1 task-1] M9PrihpHRG2_Ol-8Ko2MlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.577 [XNIO-1 task-1] M9PrihpHRG2_Ol-8Ko2MlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.583 [XNIO-1 task-1] VHgjJWf_SmynNyyYq5bKTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.584 [XNIO-1 task-1] VHgjJWf_SmynNyyYq5bKTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.584 [XNIO-1 task-1] VHgjJWf_SmynNyyYq5bKTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.596 [XNIO-1 task-1] EaKmxNlzQxu4onf6sWAZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.596 [XNIO-1 task-1] EaKmxNlzQxu4onf6sWAZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.596 [XNIO-1 task-1] EaKmxNlzQxu4onf6sWAZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.596 [XNIO-1 task-1] EaKmxNlzQxu4onf6sWAZGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.604 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/97186359 +09:03:02.604 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.604 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.605 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:02.605 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/97186359 +09:03:02.605 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPassword":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b","newPasswordConfirm":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b"}, {"password":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPassword":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b","newPasswordConfirm":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b"}, requestBody) +09:03:02.605 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPassword":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b","newPasswordConfirm":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b"}, {"password":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPassword":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b","newPasswordConfirm":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b"}, requestBody) +09:03:02.605 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG com.networknt.schema.FormatValidator debug - validate( "ec0e5eda-f8a2-402f-904b-5da8ca31f41b", {"password":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPassword":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b","newPasswordConfirm":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b"}, requestBody.newPasswordConfirm) +09:03:02.605 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG com.networknt.schema.FormatValidator debug - validate( "57142bca-8041-4f63-ab70-1b9b935d2fb9", {"password":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPassword":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b","newPasswordConfirm":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b"}, requestBody.password) +09:03:02.605 [XNIO-1 task-1] P5OKG-kFQD2f7U6-G9GLJw DEBUG com.networknt.schema.FormatValidator debug - validate( "ec0e5eda-f8a2-402f-904b-5da8ca31f41b", {"password":"57142bca-8041-4f63-ab70-1b9b935d2fb9","newPassword":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b","newPasswordConfirm":"ec0e5eda-f8a2-402f-904b-5da8ca31f41b"}, requestBody.newPassword) +09:03:02.618 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7a1f6fd3 +09:03:02.626 [XNIO-1 task-1] DTZAvZM4Te2U_qMtYlhj-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c797b551 +09:03:02.626 [XNIO-1 task-1] DTZAvZM4Te2U_qMtYlhj-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.626 [XNIO-1 task-1] DTZAvZM4Te2U_qMtYlhj-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.626 [XNIO-1 task-1] DTZAvZM4Te2U_qMtYlhj-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c797b551 +09:03:02.636 [XNIO-1 task-1] EgPoFuTYREWNW_lvYAjFFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.636 [XNIO-1 task-1] EgPoFuTYREWNW_lvYAjFFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.637 [XNIO-1 task-1] EgPoFuTYREWNW_lvYAjFFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.655 [XNIO-1 task-1] ttgSw1SiTBKONNh_E_x9_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.656 [XNIO-1 task-1] ttgSw1SiTBKONNh_E_x9_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.656 [XNIO-1 task-1] ttgSw1SiTBKONNh_E_x9_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.666 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d7c23354 +09:03:02.666 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d7c23354 +09:03:02.677 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/feb55490 +09:03:02.677 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.677 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.677 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:02.678 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/feb55490 +09:03:02.678 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"77371b26-bf3c-407a-bff2-97cd44d73239","newPassword":"42307a00-75b2-4168-9c4f-781a6a6b8600","newPasswordConfirm":"42307a00-75b2-4168-9c4f-781a6a6b8600"}, {"password":"77371b26-bf3c-407a-bff2-97cd44d73239","newPassword":"42307a00-75b2-4168-9c4f-781a6a6b8600","newPasswordConfirm":"42307a00-75b2-4168-9c4f-781a6a6b8600"}, requestBody) +09:03:02.679 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"77371b26-bf3c-407a-bff2-97cd44d73239","newPassword":"42307a00-75b2-4168-9c4f-781a6a6b8600","newPasswordConfirm":"42307a00-75b2-4168-9c4f-781a6a6b8600"}, {"password":"77371b26-bf3c-407a-bff2-97cd44d73239","newPassword":"42307a00-75b2-4168-9c4f-781a6a6b8600","newPasswordConfirm":"42307a00-75b2-4168-9c4f-781a6a6b8600"}, requestBody) +09:03:02.679 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG com.networknt.schema.FormatValidator debug - validate( "42307a00-75b2-4168-9c4f-781a6a6b8600", {"password":"77371b26-bf3c-407a-bff2-97cd44d73239","newPassword":"42307a00-75b2-4168-9c4f-781a6a6b8600","newPasswordConfirm":"42307a00-75b2-4168-9c4f-781a6a6b8600"}, requestBody.newPasswordConfirm) +09:03:02.679 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG com.networknt.schema.FormatValidator debug - validate( "77371b26-bf3c-407a-bff2-97cd44d73239", {"password":"77371b26-bf3c-407a-bff2-97cd44d73239","newPassword":"42307a00-75b2-4168-9c4f-781a6a6b8600","newPasswordConfirm":"42307a00-75b2-4168-9c4f-781a6a6b8600"}, requestBody.password) +09:03:02.679 [XNIO-1 task-1] 0idF3RPITFag0VczOuMh2A DEBUG com.networknt.schema.FormatValidator debug - validate( "42307a00-75b2-4168-9c4f-781a6a6b8600", {"password":"77371b26-bf3c-407a-bff2-97cd44d73239","newPassword":"42307a00-75b2-4168-9c4f-781a6a6b8600","newPasswordConfirm":"42307a00-75b2-4168-9c4f-781a6a6b8600"}, requestBody.newPassword) +09:03:02.689 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:feb55490 +09:03:02.704 [XNIO-1 task-1] oFtSDNd2RK-tHYDLY3dFaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186359 +09:03:02.705 [XNIO-1 task-1] oFtSDNd2RK-tHYDLY3dFaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.705 [XNIO-1 task-1] oFtSDNd2RK-tHYDLY3dFaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.705 [XNIO-1 task-1] oFtSDNd2RK-tHYDLY3dFaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186359 +09:03:02.709 [XNIO-1 task-1] nObqXGtpSaWF3GUkAzmZOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.710 [XNIO-1 task-1] nObqXGtpSaWF3GUkAzmZOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.710 [XNIO-1 task-1] nObqXGtpSaWF3GUkAzmZOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.711 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d7c23354 +09:03:02.720 [XNIO-1 task-1] VtjrLWn5SWCEeOey-3rOYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.720 [XNIO-1 task-1] VtjrLWn5SWCEeOey-3rOYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.720 [XNIO-1 task-1] VtjrLWn5SWCEeOey-3rOYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.736 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:96efa30e +09:03:02.737 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:96efa30e +09:03:02.746 [XNIO-1 task-1] erwxd716QdqT_A-bgQkjiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.746 [XNIO-1 task-1] erwxd716QdqT_A-bgQkjiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.746 [XNIO-1 task-1] erwxd716QdqT_A-bgQkjiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.758 [XNIO-1 task-1] lGsbnkQzTFyhDbP9cwXwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/feb55490 +09:03:02.759 [XNIO-1 task-1] lGsbnkQzTFyhDbP9cwXwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.759 [XNIO-1 task-1] lGsbnkQzTFyhDbP9cwXwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.759 [XNIO-1 task-1] lGsbnkQzTFyhDbP9cwXwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/feb55490 +09:03:02.766 [XNIO-1 task-1] q7e15FBSSx2zTtDBe7aidQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.766 [XNIO-1 task-1] q7e15FBSSx2zTtDBe7aidQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.766 [XNIO-1 task-1] q7e15FBSSx2zTtDBe7aidQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.778 [XNIO-1 task-1] 0Z82tL8aRkSzbqzwhJglcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d7c23354, base path is set to: null +09:03:02.778 [XNIO-1 task-1] 0Z82tL8aRkSzbqzwhJglcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.778 [XNIO-1 task-1] 0Z82tL8aRkSzbqzwhJglcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.778 [XNIO-1 task-1] 0Z82tL8aRkSzbqzwhJglcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d7c23354, base path is set to: null +09:03:02.778 [XNIO-1 task-1] 0Z82tL8aRkSzbqzwhJglcA DEBUG com.networknt.schema.TypeValidator debug - validate( "d7c23354", "d7c23354", userId) +09:03:02.782 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/002bf5d8 +09:03:02.782 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.782 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.782 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:02.782 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/002bf5d8 +09:03:02.782 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0b53e1ec-7618-4f6c-951f-3545a13e80d0","newPassword":"855fb098-9495-4002-91e8-ad0d686e785a","newPasswordConfirm":"855fb098-9495-4002-91e8-ad0d686e785a"}, {"password":"0b53e1ec-7618-4f6c-951f-3545a13e80d0","newPassword":"855fb098-9495-4002-91e8-ad0d686e785a","newPasswordConfirm":"855fb098-9495-4002-91e8-ad0d686e785a"}, requestBody) +09:03:02.783 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0b53e1ec-7618-4f6c-951f-3545a13e80d0","newPassword":"855fb098-9495-4002-91e8-ad0d686e785a","newPasswordConfirm":"855fb098-9495-4002-91e8-ad0d686e785a"}, {"password":"0b53e1ec-7618-4f6c-951f-3545a13e80d0","newPassword":"855fb098-9495-4002-91e8-ad0d686e785a","newPasswordConfirm":"855fb098-9495-4002-91e8-ad0d686e785a"}, requestBody) +09:03:02.783 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "855fb098-9495-4002-91e8-ad0d686e785a", {"password":"0b53e1ec-7618-4f6c-951f-3545a13e80d0","newPassword":"855fb098-9495-4002-91e8-ad0d686e785a","newPasswordConfirm":"855fb098-9495-4002-91e8-ad0d686e785a"}, requestBody.newPasswordConfirm) +09:03:02.783 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "0b53e1ec-7618-4f6c-951f-3545a13e80d0", {"password":"0b53e1ec-7618-4f6c-951f-3545a13e80d0","newPassword":"855fb098-9495-4002-91e8-ad0d686e785a","newPasswordConfirm":"855fb098-9495-4002-91e8-ad0d686e785a"}, requestBody.password) +09:03:02.783 [XNIO-1 task-1] b23lULwiQySw66xNV6B1cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "855fb098-9495-4002-91e8-ad0d686e785a", {"password":"0b53e1ec-7618-4f6c-951f-3545a13e80d0","newPassword":"855fb098-9495-4002-91e8-ad0d686e785a","newPasswordConfirm":"855fb098-9495-4002-91e8-ad0d686e785a"}, requestBody.newPassword) +09:03:02.805 [XNIO-1 task-1] Kakz9wNKSN6fYRhbeo768w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e221a3d +09:03:02.805 [XNIO-1 task-1] Kakz9wNKSN6fYRhbeo768w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.806 [XNIO-1 task-1] Kakz9wNKSN6fYRhbeo768w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.806 [XNIO-1 task-1] Kakz9wNKSN6fYRhbeo768w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e221a3d +09:03:02.809 [XNIO-1 task-1] 1qmyNHq4TZiIpmJLiFBo0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/96efa30e, base path is set to: null +09:03:02.809 [XNIO-1 task-1] 1qmyNHq4TZiIpmJLiFBo0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.810 [XNIO-1 task-1] 1qmyNHq4TZiIpmJLiFBo0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.810 [XNIO-1 task-1] 1qmyNHq4TZiIpmJLiFBo0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/96efa30e, base path is set to: null +09:03:02.810 [XNIO-1 task-1] 1qmyNHq4TZiIpmJLiFBo0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "96efa30e", "96efa30e", userId) +09:03:02.814 [XNIO-1 task-1] x4F5vVgOTdmZchXFanoiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.814 [XNIO-1 task-1] x4F5vVgOTdmZchXFanoiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.814 [XNIO-1 task-1] x4F5vVgOTdmZchXFanoiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.845 [XNIO-1 task-1] tAN8er1cQ0GBghJskQO9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e221a3d +09:03:02.845 [XNIO-1 task-1] tAN8er1cQ0GBghJskQO9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.845 [XNIO-1 task-1] tAN8er1cQ0GBghJskQO9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.845 [XNIO-1 task-1] tAN8er1cQ0GBghJskQO9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e221a3d +09:03:02.851 [XNIO-1 task-1] -1_7z2x4QkOt__q2tktDVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.852 [XNIO-1 task-1] -1_7z2x4QkOt__q2tktDVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.852 [XNIO-1 task-1] -1_7z2x4QkOt__q2tktDVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.876 [XNIO-1 task-1] tiSMm3kUTYyxsTiZg4u_hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.876 [XNIO-1 task-1] tiSMm3kUTYyxsTiZg4u_hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.877 [XNIO-1 task-1] tiSMm3kUTYyxsTiZg4u_hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:02.877 [XNIO-1 task-1] tiSMm3kUTYyxsTiZg4u_hg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:02.883 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/96efa30e, base path is set to: null +09:03:02.884 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.884 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.884 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:02.884 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/96efa30e, base path is set to: null +09:03:02.884 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "96efa30e", "96efa30e", userId) +09:03:02.884 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5b18849a-b4d2-4bd9-aa64-ce1a40b3f392","newPassword":"18fa3124-0104-4ac0-a3cd-89808602a962","newPasswordConfirm":"18fa3124-0104-4ac0-a3cd-89808602a962"}, {"password":"5b18849a-b4d2-4bd9-aa64-ce1a40b3f392","newPassword":"18fa3124-0104-4ac0-a3cd-89808602a962","newPasswordConfirm":"18fa3124-0104-4ac0-a3cd-89808602a962"}, requestBody) +09:03:02.884 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "18fa3124-0104-4ac0-a3cd-89808602a962", {"password":"5b18849a-b4d2-4bd9-aa64-ce1a40b3f392","newPassword":"18fa3124-0104-4ac0-a3cd-89808602a962","newPasswordConfirm":"18fa3124-0104-4ac0-a3cd-89808602a962"}, requestBody.newPasswordConfirm) +09:03:02.885 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b18849a-b4d2-4bd9-aa64-ce1a40b3f392", {"password":"5b18849a-b4d2-4bd9-aa64-ce1a40b3f392","newPassword":"18fa3124-0104-4ac0-a3cd-89808602a962","newPasswordConfirm":"18fa3124-0104-4ac0-a3cd-89808602a962"}, requestBody.password) +09:03:02.885 [XNIO-1 task-1] eUlkchnUTQC4xtzG7_7jIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "18fa3124-0104-4ac0-a3cd-89808602a962", {"password":"5b18849a-b4d2-4bd9-aa64-ce1a40b3f392","newPassword":"18fa3124-0104-4ac0-a3cd-89808602a962","newPasswordConfirm":"18fa3124-0104-4ac0-a3cd-89808602a962"}, requestBody.newPassword) +09:03:02.896 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:96efa30e +09:03:02.915 [XNIO-1 task-1] i2kGWr8ASMywQDqBMwRipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e221a3d, base path is set to: null +09:03:02.915 [XNIO-1 task-1] i2kGWr8ASMywQDqBMwRipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.915 [XNIO-1 task-1] i2kGWr8ASMywQDqBMwRipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.915 [XNIO-1 task-1] i2kGWr8ASMywQDqBMwRipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e221a3d, base path is set to: null +09:03:02.916 [XNIO-1 task-1] i2kGWr8ASMywQDqBMwRipg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e221a3d", "0e221a3d", userId) +09:03:02.922 [XNIO-1 task-1] afuAIM0NSZav8MpOien-yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.922 [XNIO-1 task-1] afuAIM0NSZav8MpOien-yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.922 [XNIO-1 task-1] afuAIM0NSZav8MpOien-yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.923 [XNIO-1 task-1] afuAIM0NSZav8MpOien-yQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.935 [XNIO-1 task-1] ZjlG-BnsSamtWansB4aOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96efa30e +09:03:02.935 [XNIO-1 task-1] ZjlG-BnsSamtWansB4aOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.935 [XNIO-1 task-1] ZjlG-BnsSamtWansB4aOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:02.935 [XNIO-1 task-1] ZjlG-BnsSamtWansB4aOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96efa30e +09:03:02.942 [XNIO-1 task-1] FBd7XJ0KQjSV75LYarY3mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e221a3d, base path is set to: null +09:03:02.942 [XNIO-1 task-1] FBd7XJ0KQjSV75LYarY3mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:02.942 [XNIO-1 task-1] FBd7XJ0KQjSV75LYarY3mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:02.942 [XNIO-1 task-1] FBd7XJ0KQjSV75LYarY3mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e221a3d, base path is set to: null +09:03:02.942 [XNIO-1 task-1] FBd7XJ0KQjSV75LYarY3mw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e221a3d", "0e221a3d", userId) +09:03:02.960 [XNIO-1 task-1] -f-5FblATHiYWMlOI8Zx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.960 [XNIO-1 task-1] -f-5FblATHiYWMlOI8Zx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.961 [XNIO-1 task-1] -f-5FblATHiYWMlOI8Zx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.961 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:96efa30e +09:03:02.968 [XNIO-1 task-1] -y04aqTgRVWd6ApXvrTxvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.968 [XNIO-1 task-1] -y04aqTgRVWd6ApXvrTxvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.968 [XNIO-1 task-1] -y04aqTgRVWd6ApXvrTxvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.981 [XNIO-1 task-1] LqCmBpooT-2NgPZ6nvQ7_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.981 [XNIO-1 task-1] LqCmBpooT-2NgPZ6nvQ7_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.982 [XNIO-1 task-1] LqCmBpooT-2NgPZ6nvQ7_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.982 [XNIO-1 task-1] LqCmBpooT-2NgPZ6nvQ7_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:02.990 [XNIO-1 task-1] _Hl_U9OPSby3q_B-HIOzug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.990 [XNIO-1 task-1] _Hl_U9OPSby3q_B-HIOzug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:02.990 [XNIO-1 task-1] _Hl_U9OPSby3q_B-HIOzug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.008 [XNIO-1 task-1] muGq5lcjQym3BaarB1hWGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.008 [XNIO-1 task-1] muGq5lcjQym3BaarB1hWGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.008 [XNIO-1 task-1] muGq5lcjQym3BaarB1hWGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.023 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e58dd8d7-b828-45e0-a2b2-8d7118aa2af7 +09:03:03.032 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0e901a6c +09:03:03.032 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.032 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.033 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:03.033 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0e901a6c +09:03:03.033 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"29b458b2-6439-4bf0-bfc1-d4f118bceb73","newPassword":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPasswordConfirm":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67"}, {"password":"29b458b2-6439-4bf0-bfc1-d4f118bceb73","newPassword":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPasswordConfirm":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67"}, requestBody) +09:03:03.033 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"29b458b2-6439-4bf0-bfc1-d4f118bceb73","newPassword":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPasswordConfirm":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67"}, {"password":"29b458b2-6439-4bf0-bfc1-d4f118bceb73","newPassword":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPasswordConfirm":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67"}, requestBody) +09:03:03.033 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG com.networknt.schema.FormatValidator debug - validate( "7858dadf-3ce8-44d7-a373-6b8bf6ef5f67", {"password":"29b458b2-6439-4bf0-bfc1-d4f118bceb73","newPassword":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPasswordConfirm":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67"}, requestBody.newPasswordConfirm) +09:03:03.033 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG com.networknt.schema.FormatValidator debug - validate( "29b458b2-6439-4bf0-bfc1-d4f118bceb73", {"password":"29b458b2-6439-4bf0-bfc1-d4f118bceb73","newPassword":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPasswordConfirm":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67"}, requestBody.password) +09:03:03.033 [XNIO-1 task-1] P73RB9bqTmmvS5nbuY_whw DEBUG com.networknt.schema.FormatValidator debug - validate( "7858dadf-3ce8-44d7-a373-6b8bf6ef5f67", {"password":"29b458b2-6439-4bf0-bfc1-d4f118bceb73","newPassword":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPasswordConfirm":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67"}, requestBody.newPassword) +09:03:03.060 [XNIO-1 task-1] 9pYvn6IVTq696AHQQX85QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.060 [XNIO-1 task-1] 9pYvn6IVTq696AHQQX85QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.060 [XNIO-1 task-1] 9pYvn6IVTq696AHQQX85QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.084 [XNIO-1 task-1] sUal-oHiSZKPpv5QSurYig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.084 [XNIO-1 task-1] sUal-oHiSZKPpv5QSurYig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.084 [XNIO-1 task-1] sUal-oHiSZKPpv5QSurYig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.084 [XNIO-1 task-1] sUal-oHiSZKPpv5QSurYig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.115 [XNIO-1 task-1] JMO1J40USx-TPcPZiCJheA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.116 [XNIO-1 task-1] JMO1J40USx-TPcPZiCJheA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.116 [XNIO-1 task-1] JMO1J40USx-TPcPZiCJheA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.127 [XNIO-1 task-1] 15c3QOrHTM2C01prNFxzbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.127 [XNIO-1 task-1] 15c3QOrHTM2C01prNFxzbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.129 [XNIO-1 task-1] 15c3QOrHTM2C01prNFxzbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.152 [XNIO-1 task-1] j8NdnstWQ2-C7VxucpFapA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d7c23354 +09:03:03.152 [XNIO-1 task-1] j8NdnstWQ2-C7VxucpFapA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.152 [XNIO-1 task-1] j8NdnstWQ2-C7VxucpFapA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.152 [XNIO-1 task-1] j8NdnstWQ2-C7VxucpFapA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d7c23354 +09:03:03.162 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/96efa30e, base path is set to: null +09:03:03.162 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/96efa30e, base path is set to: null +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG com.networknt.schema.TypeValidator debug - validate( "96efa30e", "96efa30e", userId) +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"18fa3124-0104-4ac0-a3cd-89808602a962","newPassword":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a","newPasswordConfirm":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a"}, {"password":"18fa3124-0104-4ac0-a3cd-89808602a962","newPassword":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a","newPasswordConfirm":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a"}, requestBody) +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG com.networknt.schema.TypeValidator debug - validate( "e7fa2b6b-fbf5-4941-b269-faa1ebbf103a", {"password":"18fa3124-0104-4ac0-a3cd-89808602a962","newPassword":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a","newPasswordConfirm":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a"}, requestBody.newPasswordConfirm) +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG com.networknt.schema.TypeValidator debug - validate( "18fa3124-0104-4ac0-a3cd-89808602a962", {"password":"18fa3124-0104-4ac0-a3cd-89808602a962","newPassword":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a","newPasswordConfirm":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a"}, requestBody.password) +09:03:03.163 [XNIO-1 task-1] 6KsoTENCQC6e62ZAu0_OOA DEBUG com.networknt.schema.TypeValidator debug - validate( "e7fa2b6b-fbf5-4941-b269-faa1ebbf103a", {"password":"18fa3124-0104-4ac0-a3cd-89808602a962","newPassword":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a","newPasswordConfirm":"e7fa2b6b-fbf5-4941-b269-faa1ebbf103a"}, requestBody.newPassword) +09:03:03.174 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:96efa30e +09:03:03.174 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8b851ba8-34b8-48af-b128-ec9304934f92 +09:03:03.177 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8b851ba8-34b8-48af-b128-ec9304934f92 +09:03:03.186 [XNIO-1 task-1] DntYEZkeSs6Y1duFW5qQHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.186 [XNIO-1 task-1] DntYEZkeSs6Y1duFW5qQHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.187 [XNIO-1 task-1] DntYEZkeSs6Y1duFW5qQHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.187 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d7c23354 +09:03:03.194 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e58dd8d7-b828-45e0-a2b2-8d7118aa2af7 +09:03:03.205 [XNIO-1 task-1] _VaEs1v6TQedQhRvliFqfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.205 [XNIO-1 task-1] _VaEs1v6TQedQhRvliFqfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.205 [XNIO-1 task-1] _VaEs1v6TQedQhRvliFqfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.206 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:96efa30e +09:03:03.208 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0b55b95c-b8bf-443c-b2f4-8783a81c9321 +09:03:03.209 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0b55b95c-b8bf-443c-b2f4-8783a81c9321 +09:03:03.215 [XNIO-1 task-1] vTcZAAnfQiqm3xb5bzgypw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.215 [XNIO-1 task-1] vTcZAAnfQiqm3xb5bzgypw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.215 [XNIO-1 task-1] vTcZAAnfQiqm3xb5bzgypw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.241 [XNIO-1 task-1] XVdTL-I5RqiazIUZQKJtJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.241 [XNIO-1 task-1] XVdTL-I5RqiazIUZQKJtJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.241 [XNIO-1 task-1] XVdTL-I5RqiazIUZQKJtJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.241 [XNIO-1 task-1] XVdTL-I5RqiazIUZQKJtJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.250 [XNIO-1 task-1] _NjGM_4pTVaCbpK1n6KJXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.250 [XNIO-1 task-1] _NjGM_4pTVaCbpK1n6KJXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.250 [XNIO-1 task-1] _NjGM_4pTVaCbpK1n6KJXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.258 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:99ac8459 +09:03:03.259 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:99ac8459 +09:03:03.267 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0ee27c60-68c7-4475-9fb6-16339b2b6d56 +09:03:03.272 [XNIO-1 task-1] kGNMlo2KQCi14NE0Poy16w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/97186359, base path is set to: null +09:03:03.273 [XNIO-1 task-1] kGNMlo2KQCi14NE0Poy16w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.273 [XNIO-1 task-1] kGNMlo2KQCi14NE0Poy16w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.273 [XNIO-1 task-1] kGNMlo2KQCi14NE0Poy16w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/97186359, base path is set to: null +09:03:03.273 [XNIO-1 task-1] kGNMlo2KQCi14NE0Poy16w DEBUG com.networknt.schema.TypeValidator debug - validate( "97186359", "97186359", userId) +09:03:03.286 [XNIO-1 task-1] mqnFf8l6R3KVcBYZ_Bq6fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/002bf5d8 +09:03:03.286 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0ee27c60-68c7-4475-9fb6-16339b2b6d56 +09:03:03.286 [XNIO-1 task-1] mqnFf8l6R3KVcBYZ_Bq6fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.286 [XNIO-1 task-1] mqnFf8l6R3KVcBYZ_Bq6fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/002bf5d8, base path is set to: null +09:03:03.286 [XNIO-1 task-1] mqnFf8l6R3KVcBYZ_Bq6fg DEBUG com.networknt.schema.TypeValidator debug - validate( "002bf5d8", "002bf5d8", userId) +09:03:03.295 [XNIO-1 task-1] d9F0PF0eT0uXWR0MScsagA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96efa30e +09:03:03.295 [XNIO-1 task-1] d9F0PF0eT0uXWR0MScsagA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.295 [XNIO-1 task-1] d9F0PF0eT0uXWR0MScsagA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.295 [XNIO-1 task-1] d9F0PF0eT0uXWR0MScsagA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96efa30e +09:03:03.305 [XNIO-1 task-1] yx6Vu3CcRxibjaEQtlC6eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.305 [XNIO-1 task-1] yx6Vu3CcRxibjaEQtlC6eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.306 [XNIO-1 task-1] yx6Vu3CcRxibjaEQtlC6eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.332 [XNIO-1 task-1] MLCG1fKAQeeE2DveSaWuVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.332 [XNIO-1 task-1] MLCG1fKAQeeE2DveSaWuVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.332 [XNIO-1 task-1] MLCG1fKAQeeE2DveSaWuVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.347 [XNIO-1 task-1] 4CFypquXTC-oRqBoO8WkgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/96efa30e, base path is set to: null +09:03:03.349 [XNIO-1 task-1] 4CFypquXTC-oRqBoO8WkgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.349 [XNIO-1 task-1] 4CFypquXTC-oRqBoO8WkgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.349 [XNIO-1 task-1] 4CFypquXTC-oRqBoO8WkgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/96efa30e, base path is set to: null +09:03:03.349 [XNIO-1 task-1] 4CFypquXTC-oRqBoO8WkgA DEBUG com.networknt.schema.TypeValidator debug - validate( "96efa30e", "96efa30e", userId) +09:03:03.353 [XNIO-1 task-1] 0Yc1H1zyS_SSl8Uq8nyQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.353 [XNIO-1 task-1] 0Yc1H1zyS_SSl8Uq8nyQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.355 [XNIO-1 task-1] 0Yc1H1zyS_SSl8Uq8nyQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.369 [XNIO-1 task-1] gq14DyppTaaVjK6ZjGHxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4b0a95d2 +09:03:03.369 [XNIO-1 task-1] gq14DyppTaaVjK6ZjGHxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.369 [XNIO-1 task-1] gq14DyppTaaVjK6ZjGHxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.369 [XNIO-1 task-1] gq14DyppTaaVjK6ZjGHxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4b0a95d2 +09:03:03.380 [XNIO-1 task-1] LtEGV_7IQiGbuo3rjVlrzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.380 [XNIO-1 task-1] LtEGV_7IQiGbuo3rjVlrzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.381 [XNIO-1 task-1] LtEGV_7IQiGbuo3rjVlrzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.392 [XNIO-1 task-1] E9aeACVwTyWWIqQM31XEUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a582b38, base path is set to: null +09:03:03.392 [XNIO-1 task-1] E9aeACVwTyWWIqQM31XEUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.392 [XNIO-1 task-1] E9aeACVwTyWWIqQM31XEUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.392 [XNIO-1 task-1] E9aeACVwTyWWIqQM31XEUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a582b38, base path is set to: null +09:03:03.393 [XNIO-1 task-1] E9aeACVwTyWWIqQM31XEUw DEBUG com.networknt.schema.TypeValidator debug - validate( "3a582b38", "3a582b38", userId) +09:03:03.400 [XNIO-1 task-1] 81cMHABqQQa-c9FZgVtbGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.400 [XNIO-1 task-1] 81cMHABqQQa-c9FZgVtbGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.400 [XNIO-1 task-1] 81cMHABqQQa-c9FZgVtbGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.400 [XNIO-1 task-1] 81cMHABqQQa-c9FZgVtbGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.407 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:13764efc-6572-407b-963e-5dde53e75c53 +09:03:03.412 [XNIO-1 task-1] kI8ve4w3Q5qv5Tfs-KciFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.412 [XNIO-1 task-1] kI8ve4w3Q5qv5Tfs-KciFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.412 [XNIO-1 task-1] kI8ve4w3Q5qv5Tfs-KciFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.413 [XNIO-1 task-1] kI8ve4w3Q5qv5Tfs-KciFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.419 [XNIO-1 task-1] JbvVPBrDSNi27Rgf18wT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/002bf5d8, base path is set to: null +09:03:03.419 [XNIO-1 task-1] JbvVPBrDSNi27Rgf18wT6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.419 [XNIO-1 task-1] JbvVPBrDSNi27Rgf18wT6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.419 [XNIO-1 task-1] JbvVPBrDSNi27Rgf18wT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/002bf5d8, base path is set to: null +09:03:03.420 [XNIO-1 task-1] JbvVPBrDSNi27Rgf18wT6w DEBUG com.networknt.schema.TypeValidator debug - validate( "002bf5d8", "002bf5d8", userId) +09:03:03.431 [XNIO-1 task-1] 04A7cbzUQsitNsq-gKnCSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.431 [XNIO-1 task-1] 04A7cbzUQsitNsq-gKnCSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.431 [XNIO-1 task-1] 04A7cbzUQsitNsq-gKnCSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.431 [XNIO-1 task-1] 04A7cbzUQsitNsq-gKnCSA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:03:03.440 [XNIO-1 task-1] jGfVdoCCS52ryXgvFXByzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a582b38 +09:03:03.441 [XNIO-1 task-1] jGfVdoCCS52ryXgvFXByzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.441 [XNIO-1 task-1] jGfVdoCCS52ryXgvFXByzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.441 [XNIO-1 task-1] jGfVdoCCS52ryXgvFXByzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a582b38 +09:03:03.448 [XNIO-1 task-1] 4JWqX96rRyq7FkWjaWas8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a582b38, base path is set to: null +09:03:03.448 [XNIO-1 task-1] 4JWqX96rRyq7FkWjaWas8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.448 [XNIO-1 task-1] 4JWqX96rRyq7FkWjaWas8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.448 [XNIO-1 task-1] 4JWqX96rRyq7FkWjaWas8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a582b38, base path is set to: null +09:03:03.448 [XNIO-1 task-1] 4JWqX96rRyq7FkWjaWas8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3a582b38", "3a582b38", userId) +09:03:03.456 [XNIO-1 task-1] n_r9JP-8Ri6MxDyKSlfMiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a582b38 +09:03:03.456 [XNIO-1 task-1] n_r9JP-8Ri6MxDyKSlfMiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.456 [XNIO-1 task-1] n_r9JP-8Ri6MxDyKSlfMiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.456 [XNIO-1 task-1] n_r9JP-8Ri6MxDyKSlfMiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a582b38 +09:03:03.473 [XNIO-1 task-1] 61COBRlRSsm__7EhUDTu7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6d8ba34a, base path is set to: null +09:03:03.473 [XNIO-1 task-1] 61COBRlRSsm__7EhUDTu7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.473 [XNIO-1 task-1] 61COBRlRSsm__7EhUDTu7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.473 [XNIO-1 task-1] 61COBRlRSsm__7EhUDTu7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6d8ba34a, base path is set to: null +09:03:03.473 [XNIO-1 task-1] 61COBRlRSsm__7EhUDTu7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6d8ba34a +09:03:03.473 [XNIO-1 task-1] 61COBRlRSsm__7EhUDTu7A DEBUG com.networknt.schema.TypeValidator debug - validate( "6d8ba34a", "6d8ba34a", userId) +09:03:03.480 [XNIO-1 task-1] MmEVdQRcSYyaM9Y0LWh-qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/feb55490, base path is set to: null +09:03:03.480 [XNIO-1 task-1] MmEVdQRcSYyaM9Y0LWh-qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/feb55490 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +09:03:03.480 [XNIO-1 task-1] MmEVdQRcSYyaM9Y0LWh-qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/feb55490 +09:03:03.480 [XNIO-1 task-1] MmEVdQRcSYyaM9Y0LWh-qA DEBUG com.networknt.schema.TypeValidator debug - validate( "feb55490", "feb55490", userId) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:03.484 [XNIO-1 task-1] 9HFYcp_2Qn-ziwJ7ANstpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +09:03:03.485 [XNIO-1 task-1] 9HFYcp_2Qn-ziwJ7ANstpA DEBUG com.networknt.schema.TypeValidator debug - validate( "8072ce34", "8072ce34", userId) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:03:03.499 [XNIO-1 task-1] x8HHL1TWR5yBzbW4MEmOHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + ... 14 more + +09:03:03.499 [XNIO-1 task-1] x8HHL1TWR5yBzbW4MEmOHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:03:03.520 [XNIO-1 task-1] MicFzR2SSpCjHdD5Bms-3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.520 [XNIO-1 task-1] MicFzR2SSpCjHdD5Bms-3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.520 [XNIO-1 task-1] MicFzR2SSpCjHdD5Bms-3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.521 [XNIO-1 task-1] MicFzR2SSpCjHdD5Bms-3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.528 [XNIO-1 task-1] a6eayuajQe2nwgtc5i-YVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.529 [XNIO-1 task-1] a6eayuajQe2nwgtc5i-YVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.529 [XNIO-1 task-1] a6eayuajQe2nwgtc5i-YVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.529 [XNIO-1 task-1] a6eayuajQe2nwgtc5i-YVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.533 [XNIO-1 task-1] M5aZv1UDTme2oTawSXoI-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.534 [XNIO-1 task-1] M5aZv1UDTme2oTawSXoI-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.534 [XNIO-1 task-1] M5aZv1UDTme2oTawSXoI-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.557 [XNIO-1 task-1] HBURgrGjR8e9nopuEvDxgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/feb55490, base path is set to: null +09:03:03.557 [XNIO-1 task-1] HBURgrGjR8e9nopuEvDxgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.557 [XNIO-1 task-1] HBURgrGjR8e9nopuEvDxgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.557 [XNIO-1 task-1] HBURgrGjR8e9nopuEvDxgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/feb55490, base path is set to: null +09:03:03.557 [XNIO-1 task-1] HBURgrGjR8e9nopuEvDxgA DEBUG com.networknt.schema.TypeValidator debug - validate( "feb55490", "feb55490", userId) +09:03:03.562 [XNIO-1 task-1] k8AFiQePRB-eq32SbNyBOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c54f5c01 +09:03:03.562 [XNIO-1 task-1] k8AFiQePRB-eq32SbNyBOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.562 [XNIO-1 task-1] k8AFiQePRB-eq32SbNyBOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.562 [XNIO-1 task-1] k8AFiQePRB-eq32SbNyBOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c54f5c01 +09:03:03.571 [XNIO-1 task-1] 00vKyGc2T0KW3ok2yCMv8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/feb55490, base path is set to: null +09:03:03.572 [XNIO-1 task-1] 00vKyGc2T0KW3ok2yCMv8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.572 [XNIO-1 task-1] 00vKyGc2T0KW3ok2yCMv8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.572 [XNIO-1 task-1] 00vKyGc2T0KW3ok2yCMv8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/feb55490, base path is set to: null +09:03:03.572 [XNIO-1 task-1] 00vKyGc2T0KW3ok2yCMv8A DEBUG com.networknt.schema.TypeValidator debug - validate( "feb55490", "feb55490", userId) +09:03:03.574 [XNIO-1 task-1] HQTCo9CpRNWMR6y0rHD_yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c54f5c01 +09:03:03.574 [XNIO-1 task-1] HQTCo9CpRNWMR6y0rHD_yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.574 [XNIO-1 task-1] HQTCo9CpRNWMR6y0rHD_yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.574 [XNIO-1 task-1] HQTCo9CpRNWMR6y0rHD_yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c54f5c01 +09:03:03.577 [XNIO-1 task-1] AzdN1q0FSyKg69wwdM9rBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.577 [XNIO-1 task-1] AzdN1q0FSyKg69wwdM9rBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.577 [XNIO-1 task-1] AzdN1q0FSyKg69wwdM9rBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.586 [XNIO-1 task-1] BgX-npKSQSyGDpYvjtV2bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/feb55490, base path is set to: null +09:03:03.586 [XNIO-1 task-1] BgX-npKSQSyGDpYvjtV2bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.586 [XNIO-1 task-1] BgX-npKSQSyGDpYvjtV2bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.586 [XNIO-1 task-1] BgX-npKSQSyGDpYvjtV2bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/feb55490, base path is set to: null +09:03:03.586 [XNIO-1 task-1] BgX-npKSQSyGDpYvjtV2bw DEBUG com.networknt.schema.TypeValidator debug - validate( "feb55490", "feb55490", userId) +09:03:03.605 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c54f5c01, base path is set to: null +09:03:03.605 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.605 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.606 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:03.606 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c54f5c01, base path is set to: null +09:03:03.606 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG com.networknt.schema.TypeValidator debug - validate( "c54f5c01", "c54f5c01", userId) +09:03:03.606 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"73c0012f-8499-4dcf-8235-e5f552572a50","newPassword":"990d8abd-3673-4e78-87bd-3656cebfaa17","newPasswordConfirm":"990d8abd-3673-4e78-87bd-3656cebfaa17"}, {"password":"73c0012f-8499-4dcf-8235-e5f552572a50","newPassword":"990d8abd-3673-4e78-87bd-3656cebfaa17","newPasswordConfirm":"990d8abd-3673-4e78-87bd-3656cebfaa17"}, requestBody) +09:03:03.606 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG com.networknt.schema.TypeValidator debug - validate( "990d8abd-3673-4e78-87bd-3656cebfaa17", {"password":"73c0012f-8499-4dcf-8235-e5f552572a50","newPassword":"990d8abd-3673-4e78-87bd-3656cebfaa17","newPasswordConfirm":"990d8abd-3673-4e78-87bd-3656cebfaa17"}, requestBody.newPasswordConfirm) +09:03:03.606 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG com.networknt.schema.TypeValidator debug - validate( "73c0012f-8499-4dcf-8235-e5f552572a50", {"password":"73c0012f-8499-4dcf-8235-e5f552572a50","newPassword":"990d8abd-3673-4e78-87bd-3656cebfaa17","newPasswordConfirm":"990d8abd-3673-4e78-87bd-3656cebfaa17"}, requestBody.password) +09:03:03.606 [XNIO-1 task-1] jUTRi6ChRVu1PDJVgk-AzA DEBUG com.networknt.schema.TypeValidator debug - validate( "990d8abd-3673-4e78-87bd-3656cebfaa17", {"password":"73c0012f-8499-4dcf-8235-e5f552572a50","newPassword":"990d8abd-3673-4e78-87bd-3656cebfaa17","newPasswordConfirm":"990d8abd-3673-4e78-87bd-3656cebfaa17"}, requestBody.newPassword) +09:03:03.630 [XNIO-1 task-1] AY9nJL0vQPmfTweWdMYMjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.630 [XNIO-1 task-1] AY9nJL0vQPmfTweWdMYMjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.630 [XNIO-1 task-1] AY9nJL0vQPmfTweWdMYMjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.638 [XNIO-1 task-1] nJ_AlA3kTaGtbtocSqgHog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/99ac8459, base path is set to: null +09:03:03.638 [XNIO-1 task-1] nJ_AlA3kTaGtbtocSqgHog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.638 [XNIO-1 task-1] nJ_AlA3kTaGtbtocSqgHog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.639 [XNIO-1 task-1] nJ_AlA3kTaGtbtocSqgHog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/99ac8459, base path is set to: null +09:03:03.639 [XNIO-1 task-1] nJ_AlA3kTaGtbtocSqgHog DEBUG com.networknt.schema.TypeValidator debug - validate( "99ac8459", "99ac8459", userId) +09:03:03.647 [XNIO-1 task-1] zPFaOSB6TUOkX3VU7gctBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.647 [XNIO-1 task-1] zPFaOSB6TUOkX3VU7gctBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.648 [XNIO-1 task-1] zPFaOSB6TUOkX3VU7gctBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.669 [XNIO-1 task-1] VvobD-sdS8yFhmY29J1dhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.669 [XNIO-1 task-1] VvobD-sdS8yFhmY29J1dhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.669 [XNIO-1 task-1] VvobD-sdS8yFhmY29J1dhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.669 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a9146b36-0aa7-496e-af1f-696e5c85d4dd +09:03:03.691 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a9146b36-0aa7-496e-af1f-696e5c85d4dd +09:03:03.691 [XNIO-1 task-1] QlDflh-LRI2kwQh6MrNaHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.691 [XNIO-1 task-1] QlDflh-LRI2kwQh6MrNaHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.691 [XNIO-1 task-1] QlDflh-LRI2kwQh6MrNaHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.704 [XNIO-1 task-1] v-NLdsNPTFGrc7EdgkzFsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.706 [XNIO-1 task-1] v-NLdsNPTFGrc7EdgkzFsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.706 [XNIO-1 task-1] v-NLdsNPTFGrc7EdgkzFsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.706 [XNIO-1 task-1] v-NLdsNPTFGrc7EdgkzFsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.717 [XNIO-1 task-1] BTPvs6acSR2RuvSRd3lFig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.717 [XNIO-1 task-1] BTPvs6acSR2RuvSRd3lFig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.717 [XNIO-1 task-1] BTPvs6acSR2RuvSRd3lFig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.723 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f66a2910 +09:03:03.724 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f66a2910 +09:03:03.736 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/978614e1 +09:03:03.736 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.736 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.736 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:03:03.736 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/978614e1 +09:03:03.737 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9aa1a55a-f6d7-43ee-adab-6a369c2695a6","newPassword":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66","newPasswordConfirm":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66"}, {"password":"9aa1a55a-f6d7-43ee-adab-6a369c2695a6","newPassword":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66","newPasswordConfirm":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66"}, requestBody) +09:03:03.737 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9aa1a55a-f6d7-43ee-adab-6a369c2695a6","newPassword":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66","newPasswordConfirm":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66"}, {"password":"9aa1a55a-f6d7-43ee-adab-6a369c2695a6","newPassword":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66","newPasswordConfirm":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66"}, requestBody) +09:03:03.737 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG com.networknt.schema.FormatValidator debug - validate( "76fe0938-9b6b-45d1-b2a8-b183c75f6a66", {"password":"9aa1a55a-f6d7-43ee-adab-6a369c2695a6","newPassword":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66","newPasswordConfirm":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66"}, requestBody.newPasswordConfirm) +09:03:03.737 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG com.networknt.schema.FormatValidator debug - validate( "9aa1a55a-f6d7-43ee-adab-6a369c2695a6", {"password":"9aa1a55a-f6d7-43ee-adab-6a369c2695a6","newPassword":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66","newPasswordConfirm":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66"}, requestBody.password) +09:03:03.737 [XNIO-1 task-1] eiqPjwcLS3m6jjKDCQS4aw DEBUG com.networknt.schema.FormatValidator debug - validate( "76fe0938-9b6b-45d1-b2a8-b183c75f6a66", {"password":"9aa1a55a-f6d7-43ee-adab-6a369c2695a6","newPassword":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66","newPasswordConfirm":"76fe0938-9b6b-45d1-b2a8-b183c75f6a66"}, requestBody.newPassword) +09:03:03.757 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:40c6eef4 +09:03:03.763 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0e901a6c, base path is set to: null +09:03:03.763 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.763 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.763 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:03.763 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0e901a6c, base path is set to: null +09:03:03.764 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e901a6c", "0e901a6c", userId) +09:03:03.764 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPassword":"f2137793-5f7e-43be-b328-5654304a4e74","newPasswordConfirm":"f2137793-5f7e-43be-b328-5654304a4e74"}, {"password":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPassword":"f2137793-5f7e-43be-b328-5654304a4e74","newPasswordConfirm":"f2137793-5f7e-43be-b328-5654304a4e74"}, requestBody) +09:03:03.764 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG com.networknt.schema.TypeValidator debug - validate( "f2137793-5f7e-43be-b328-5654304a4e74", {"password":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPassword":"f2137793-5f7e-43be-b328-5654304a4e74","newPasswordConfirm":"f2137793-5f7e-43be-b328-5654304a4e74"}, requestBody.newPasswordConfirm) +09:03:03.764 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG com.networknt.schema.TypeValidator debug - validate( "7858dadf-3ce8-44d7-a373-6b8bf6ef5f67", {"password":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPassword":"f2137793-5f7e-43be-b328-5654304a4e74","newPasswordConfirm":"f2137793-5f7e-43be-b328-5654304a4e74"}, requestBody.password) +09:03:03.764 [XNIO-1 task-1] ZPYxXGWWTwW_mc5GpFR_sw DEBUG com.networknt.schema.TypeValidator debug - validate( "f2137793-5f7e-43be-b328-5654304a4e74", {"password":"7858dadf-3ce8-44d7-a373-6b8bf6ef5f67","newPassword":"f2137793-5f7e-43be-b328-5654304a4e74","newPasswordConfirm":"f2137793-5f7e-43be-b328-5654304a4e74"}, requestBody.newPassword) +09:03:03.780 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:40c6eef4 +09:03:03.792 [XNIO-1 task-1] t7waB9iiQpCrU0gJcDGJYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.792 [XNIO-1 task-1] t7waB9iiQpCrU0gJcDGJYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.792 [XNIO-1 task-1] t7waB9iiQpCrU0gJcDGJYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.793 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d7c23354 +09:03:03.804 [XNIO-1 task-1] 6UPiISFdSTWm3uDf6ZJouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/978614e1, base path is set to: null +09:03:03.804 [XNIO-1 task-1] 6UPiISFdSTWm3uDf6ZJouw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.804 [XNIO-1 task-1] 6UPiISFdSTWm3uDf6ZJouw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.805 [XNIO-1 task-1] 6UPiISFdSTWm3uDf6ZJouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/978614e1, base path is set to: null +09:03:03.805 [XNIO-1 task-1] 6UPiISFdSTWm3uDf6ZJouw DEBUG com.networknt.schema.TypeValidator debug - validate( "978614e1", "978614e1", userId) +09:03:03.812 [XNIO-1 task-1] eEf9lurxR4ipXursyYWfFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e901a6c +09:03:03.812 [XNIO-1 task-1] eEf9lurxR4ipXursyYWfFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.812 [XNIO-1 task-1] eEf9lurxR4ipXursyYWfFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.812 [XNIO-1 task-1] eEf9lurxR4ipXursyYWfFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e901a6c +09:03:03.823 [XNIO-1 task-1] omizAFy7Qo2gtcSxjX40dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ec911600, base path is set to: null +09:03:03.823 [XNIO-1 task-1] omizAFy7Qo2gtcSxjX40dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.823 [XNIO-1 task-1] omizAFy7Qo2gtcSxjX40dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.823 [XNIO-1 task-1] omizAFy7Qo2gtcSxjX40dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ec911600, base path is set to: null +09:03:03.823 [XNIO-1 task-1] omizAFy7Qo2gtcSxjX40dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec911600", "ec911600", userId) +09:03:03.847 [XNIO-1 task-1] sU7jEYxJRxmvGRqVaKb6EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96efa30e +09:03:03.847 [XNIO-1 task-1] sU7jEYxJRxmvGRqVaKb6EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.847 [XNIO-1 task-1] sU7jEYxJRxmvGRqVaKb6EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.847 [XNIO-1 task-1] sU7jEYxJRxmvGRqVaKb6EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96efa30e +09:03:03.855 [XNIO-1 task-1] AjDXmfE_QM6ou2s8rGw7Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.855 [XNIO-1 task-1] AjDXmfE_QM6ou2s8rGw7Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.855 [XNIO-1 task-1] AjDXmfE_QM6ou2s8rGw7Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.855 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:96efa30e +09:03:03.862 [XNIO-1 task-1] iz37z3PNRv6Zjo4MrABQ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.862 [XNIO-1 task-1] iz37z3PNRv6Zjo4MrABQ3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.862 [XNIO-1 task-1] iz37z3PNRv6Zjo4MrABQ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.879 [XNIO-1 task-1] LZS9ZCksT26c240aLBjUlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f66a2910, base path is set to: null +09:03:03.879 [XNIO-1 task-1] LZS9ZCksT26c240aLBjUlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.879 [XNIO-1 task-1] LZS9ZCksT26c240aLBjUlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.879 [XNIO-1 task-1] LZS9ZCksT26c240aLBjUlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f66a2910, base path is set to: null +09:03:03.879 [XNIO-1 task-1] LZS9ZCksT26c240aLBjUlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f66a2910", "f66a2910", userId) +09:03:03.890 [XNIO-1 task-1] EhhwzRl8S4OSGVdi0UuMGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.890 [XNIO-1 task-1] EhhwzRl8S4OSGVdi0UuMGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.890 [XNIO-1 task-1] EhhwzRl8S4OSGVdi0UuMGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.896 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1490a880-4128-43c8-a7eb-f582be4e8e8d +09:03:03.911 [XNIO-1 task-1] 7L55RStORIKRF3j1twfgrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.911 [XNIO-1 task-1] 7L55RStORIKRF3j1twfgrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.911 [XNIO-1 task-1] 7L55RStORIKRF3j1twfgrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.911 [XNIO-1 task-1] 7L55RStORIKRF3j1twfgrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.941 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ff632cfd, base path is set to: null +09:03:03.941 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.941 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.941 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:03:03.942 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ff632cfd, base path is set to: null +09:03:03.942 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "ff632cfd", "ff632cfd", userId) +09:03:03.942 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"efa48b97-a842-4626-8487-42ec5cff9e21","newPassword":"36625b4c-053c-4566-b430-21642630ba39","newPasswordConfirm":"36625b4c-053c-4566-b430-21642630ba39"}, {"password":"efa48b97-a842-4626-8487-42ec5cff9e21","newPassword":"36625b4c-053c-4566-b430-21642630ba39","newPasswordConfirm":"36625b4c-053c-4566-b430-21642630ba39"}, requestBody) +09:03:03.942 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "36625b4c-053c-4566-b430-21642630ba39", {"password":"efa48b97-a842-4626-8487-42ec5cff9e21","newPassword":"36625b4c-053c-4566-b430-21642630ba39","newPasswordConfirm":"36625b4c-053c-4566-b430-21642630ba39"}, requestBody.newPasswordConfirm) +09:03:03.942 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "efa48b97-a842-4626-8487-42ec5cff9e21", {"password":"efa48b97-a842-4626-8487-42ec5cff9e21","newPassword":"36625b4c-053c-4566-b430-21642630ba39","newPasswordConfirm":"36625b4c-053c-4566-b430-21642630ba39"}, requestBody.password) +09:03:03.942 [XNIO-1 task-1] Z4sojTWfRxW6jjZj0wYjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "36625b4c-053c-4566-b430-21642630ba39", {"password":"efa48b97-a842-4626-8487-42ec5cff9e21","newPassword":"36625b4c-053c-4566-b430-21642630ba39","newPasswordConfirm":"36625b4c-053c-4566-b430-21642630ba39"}, requestBody.newPassword) +09:03:03.948 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6f7f2f51-597c-4795-a004-9c69d8bf4eb3 +09:03:03.960 [XNIO-1 task-1] Ukx35HgCQAai_yKF0K4YEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.961 [XNIO-1 task-1] Ukx35HgCQAai_yKF0K4YEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.961 [XNIO-1 task-1] Ukx35HgCQAai_yKF0K4YEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:03:03.961 [XNIO-1 task-1] Ukx35HgCQAai_yKF0K4YEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:03:03.962 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6f7f2f51-597c-4795-a004-9c69d8bf4eb3 +09:03:03.964 [XNIO-1 task-1] MuVvZ1euSFyWf-AwKlhTGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.965 [XNIO-1 task-1] MuVvZ1euSFyWf-AwKlhTGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.965 [XNIO-1 task-1] MuVvZ1euSFyWf-AwKlhTGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.981 [XNIO-1 task-1] CstWNCkaT4KVi-_6Be0btQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ff632cfd +09:03:03.981 [XNIO-1 task-1] CstWNCkaT4KVi-_6Be0btQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:03:03.981 [XNIO-1 task-1] CstWNCkaT4KVi-_6Be0btQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:03:03.981 [XNIO-1 task-1] CstWNCkaT4KVi-_6Be0btQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ff632cfd +09:03:03.990 [XNIO-1 task-1] i-oc_ipvQNyOua1yjXauCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6f839517, base path is set to: null +09:03:03.990 [XNIO-1 task-1] i-oc_ipvQNyOua1yjXauCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:03:03.990 [XNIO-1 task-1] i-oc_ipvQNyOua1yjXauCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:03:03.990 [XNIO-1 task-1] i-oc_ipvQNyOua1yjXauCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} diff --git a/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..9969e70 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-client-1.log @@ -0,0 +1,7211 @@ + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.403 [XNIO-1 task-1] O4-hdJ4uS3iOyZ8tR41vUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:35.408 [XNIO-1 task-1] jVjobQsNSqCwWca91HAk5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.408 [XNIO-1 task-1] jVjobQsNSqCwWca91HAk5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.408 [XNIO-1 task-1] jVjobQsNSqCwWca91HAk5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.431 [XNIO-1 task-1] G4FOqr5DRs-OtY_oMrpqwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.431 [XNIO-1 task-1] G4FOqr5DRs-OtY_oMrpqwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.431 [XNIO-1 task-1] G4FOqr5DRs-OtY_oMrpqwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.446 [XNIO-1 task-1] 6XaYomjfSique0YLzS-yZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53a25264-bacd-4422-85f2-88fdd8881f72 +08:11:35.446 [XNIO-1 task-1] 6XaYomjfSique0YLzS-yZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.446 [XNIO-1 task-1] 6XaYomjfSique0YLzS-yZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.446 [XNIO-1 task-1] 6XaYomjfSique0YLzS-yZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53a25264-bacd-4422-85f2-88fdd8881f72 +08:11:35.460 [XNIO-1 task-1] ZlCQQjIiSuyPM9Vy03NeVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2275ea81-ec6c-43b9-811e-bad9f85be0fd, base path is set to: null +08:11:35.460 [XNIO-1 task-1] ZlCQQjIiSuyPM9Vy03NeVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.461 [XNIO-1 task-1] ZlCQQjIiSuyPM9Vy03NeVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:35.461 [XNIO-1 task-1] ZlCQQjIiSuyPM9Vy03NeVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2275ea81-ec6c-43b9-811e-bad9f85be0fd, base path is set to: null +08:11:35.461 [XNIO-1 task-1] ZlCQQjIiSuyPM9Vy03NeVw DEBUG com.networknt.schema.TypeValidator debug - validate( "2275ea81-ec6c-43b9-811e-bad9f85be0fd", "2275ea81-ec6c-43b9-811e-bad9f85be0fd", clientId) +08:11:35.468 [XNIO-1 task-1] juYX-OqVQxebPC4rr80J8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.469 [XNIO-1 task-1] juYX-OqVQxebPC4rr80J8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.469 [XNIO-1 task-1] juYX-OqVQxebPC4rr80J8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.469 [XNIO-1 task-1] juYX-OqVQxebPC4rr80J8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:35.473 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed8a6820 +08:11:35.474 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed8a6820 +08:11:35.477 [XNIO-1 task-1] h7shNMoGT0e0T_BOGy-gQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3353da57-ba33-4447-bb99-b967b18f6e9a +08:11:35.477 [XNIO-1 task-1] h7shNMoGT0e0T_BOGy-gQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.477 [XNIO-1 task-1] h7shNMoGT0e0T_BOGy-gQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.477 [XNIO-1 task-1] h7shNMoGT0e0T_BOGy-gQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3353da57-ba33-4447-bb99-b967b18f6e9a +08:11:35.478 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3353da57-ba33-4447-bb99-b967b18f6e9a +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +08:11:35.482 [XNIO-1 task-1] h7shNMoGT0e0T_BOGy-gQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/3353da57-ba33-4447-bb99-b967b18f6e9a} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:35.488 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ed8a6820 +08:11:35.488 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.489 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5baa4e5-031f-4aea-9c44-d9c31aa6","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.490 [XNIO-1 task-1] 6fzw_s83RdONkFIwYiPCUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:35.492 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.492 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.492 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a969086-b164-410e-8c35-e14e06544619", {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG com.networknt.schema.TypeValidator debug - validate( "df8e4ae3-b47c-4d4a-bea4-33573e3d", {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"df8e4ae3-b47c-4d4a-bea4-33573e3d","clientDesc":"4a969086-b164-410e-8c35-e14e06544619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:35.493 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.494 [XNIO-1 task-1] fPeGrgIUTZKRh2nRE2kenA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:35.496 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.496 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.496 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.496 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.496 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.496 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.497 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.497 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.497 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.497 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.497 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.497 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b871bd8a-b022-4979-90f1-909805c5","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.497 [XNIO-1 task-1] o-2f8wOMTeK5iDNEUsTKTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:35.503 [XNIO-1 task-1] 2DR-rR_5Sn--JBiKMTNVug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.503 [XNIO-1 task-1] 2DR-rR_5Sn--JBiKMTNVug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.503 [XNIO-1 task-1] 2DR-rR_5Sn--JBiKMTNVug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.503 [XNIO-1 task-1] 2DR-rR_5Sn--JBiKMTNVug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:35.505 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0a86b6d9 +08:11:35.514 [XNIO-1 task-1] OTgBbF9qTJSOmIFpIHVWNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.514 [XNIO-1 task-1] OTgBbF9qTJSOmIFpIHVWNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.514 [XNIO-1 task-1] OTgBbF9qTJSOmIFpIHVWNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.514 [XNIO-1 task-1] OTgBbF9qTJSOmIFpIHVWNg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:35.529 [XNIO-1 task-1] 1ltmVSqkQ7e3gUvwUnt7RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d5b3b3e7-889a-488e-8354-4031320e9d99 +08:11:35.529 [XNIO-1 task-1] 1ltmVSqkQ7e3gUvwUnt7RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.529 [XNIO-1 task-1] 1ltmVSqkQ7e3gUvwUnt7RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.529 [XNIO-1 task-1] 1ltmVSqkQ7e3gUvwUnt7RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d5b3b3e7-889a-488e-8354-4031320e9d99 +08:11:35.531 [XNIO-1 task-1] RRccKqKSQYmVyQBVys2H7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.531 [XNIO-1 task-1] RRccKqKSQYmVyQBVys2H7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.531 [XNIO-1 task-1] RRccKqKSQYmVyQBVys2H7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.531 [XNIO-1 task-1] RRccKqKSQYmVyQBVys2H7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:35.536 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c0d532ce-7949-402c-be70-b58d590e5961 +08:11:35.559 [XNIO-1 task-1] pOqTOzAJRwWQ1w3q8SJ08g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d5b3b3e7-889a-488e-8354-4031320e9d99, base path is set to: null +08:11:35.559 [XNIO-1 task-1] pOqTOzAJRwWQ1w3q8SJ08g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.559 [XNIO-1 task-1] pOqTOzAJRwWQ1w3q8SJ08g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:35.559 [XNIO-1 task-1] pOqTOzAJRwWQ1w3q8SJ08g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d5b3b3e7-889a-488e-8354-4031320e9d99, base path is set to: null +08:11:35.559 [XNIO-1 task-1] pOqTOzAJRwWQ1w3q8SJ08g DEBUG com.networknt.schema.TypeValidator debug - validate( "d5b3b3e7-889a-488e-8354-4031320e9d99", "d5b3b3e7-889a-488e-8354-4031320e9d99", clientId) +08:11:35.560 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed8a6820 +08:11:35.568 [XNIO-1 task-1] gmT_BPSoQY6N7GNuR3x2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aac1381d-72dd-4acb-9221-20477bf5a30a +08:11:35.568 [XNIO-1 task-1] gmT_BPSoQY6N7GNuR3x2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.568 [XNIO-1 task-1] gmT_BPSoQY6N7GNuR3x2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.568 [XNIO-1 task-1] gmT_BPSoQY6N7GNuR3x2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aac1381d-72dd-4acb-9221-20477bf5a30a +08:11:35.580 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6f97ad64-eacf-42fd-ba7c-39291eb34b19 +08:11:35.580 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.580 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.580 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.580 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab1965d5-5958-4cb7-bdc2-3ef6dccd","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.581 [XNIO-1 task-1] olCIZbBJT-a0EtpRKR52wQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:35.590 [XNIO-1 task-1] uyZfC2ObR2iw3XwmtNMEPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a380f92-a74f-4a25-9add-5275eb3173a4 +08:11:35.590 [XNIO-1 task-1] uyZfC2ObR2iw3XwmtNMEPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.590 [XNIO-1 task-1] uyZfC2ObR2iw3XwmtNMEPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.590 [XNIO-1 task-1] uyZfC2ObR2iw3XwmtNMEPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a380f92-a74f-4a25-9add-5275eb3173a4 +08:11:35.595 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65127627 +08:11:35.596 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65127627 +08:11:35.599 [XNIO-1 task-1] RyDFx-X-QtW_PeM3cBrg4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.599 [XNIO-1 task-1] RyDFx-X-QtW_PeM3cBrg4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.600 [XNIO-1 task-1] RyDFx-X-QtW_PeM3cBrg4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.607 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f434b664-5833-49dd-865e-39736baf5976 +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.623 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.624 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca454486-9829-4c67-a67d-246776f6","clientDesc":"444816e4-d9d5-442b-8aee-9d5f8420d841","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.624 [XNIO-1 task-1] oL0SmvbARmqE1C7AZEsZLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1b9f2e7-4ea8-4341-884d-cff890da8011", {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.633 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.634 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG com.networknt.schema.TypeValidator debug - validate( "bd67aa7d-8668-4e54-ba93-7071f432", {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:35.634 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:35.634 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bd67aa7d-8668-4e54-ba93-7071f432","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:35.634 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.634 [XNIO-1 task-1] 6ei-xLLUTi-eH3vSKsAthw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:35.637 [XNIO-1 task-1] Tl9GltK6Q823X0eFAr_4Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3931752c-e10d-4c18-8e0c-bd07844c1671, base path is set to: null +08:11:35.637 [XNIO-1 task-1] Tl9GltK6Q823X0eFAr_4Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.637 [XNIO-1 task-1] Tl9GltK6Q823X0eFAr_4Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:35.637 [XNIO-1 task-1] Tl9GltK6Q823X0eFAr_4Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3931752c-e10d-4c18-8e0c-bd07844c1671, base path is set to: null +08:11:35.637 [XNIO-1 task-1] Tl9GltK6Q823X0eFAr_4Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "3931752c-e10d-4c18-8e0c-bd07844c1671", "3931752c-e10d-4c18-8e0c-bd07844c1671", clientId) +08:11:35.646 [XNIO-1 task-1] i1gYmDZLT_GOPIamvvF5Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.646 [XNIO-1 task-1] i1gYmDZLT_GOPIamvvF5Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.646 [XNIO-1 task-1] i1gYmDZLT_GOPIamvvF5Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.646 [XNIO-1 task-1] i1gYmDZLT_GOPIamvvF5Ig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:35.658 [XNIO-1 task-1] wg9NLMAtR2iau4x1OuJ8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.658 [XNIO-1 task-1] wg9NLMAtR2iau4x1OuJ8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.658 [XNIO-1 task-1] wg9NLMAtR2iau4x1OuJ8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.658 [XNIO-1 task-1] wg9NLMAtR2iau4x1OuJ8Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:35.670 [XNIO-1 task-1] xDWtgiinRtevHvaBq5XF8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31c7d4f0-64b0-42da-93ac-fd2b31d920d5 +08:11:35.670 [XNIO-1 task-1] xDWtgiinRtevHvaBq5XF8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.670 [XNIO-1 task-1] xDWtgiinRtevHvaBq5XF8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.670 [XNIO-1 task-1] xDWtgiinRtevHvaBq5XF8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31c7d4f0-64b0-42da-93ac-fd2b31d920d5 +08:11:35.670 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ed8a6820 +08:11:35.675 [XNIO-1 task-1] KXIgLXRPSLm8XP4m2OTBMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.675 [XNIO-1 task-1] KXIgLXRPSLm8XP4m2OTBMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.675 [XNIO-1 task-1] KXIgLXRPSLm8XP4m2OTBMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.683 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81ddd9ed +08:11:35.685 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81ddd9ed +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG com.networknt.schema.TypeValidator debug - validate( "73da2cb1-ec19-4117-8978-1d98d8698b78", {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.690 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.691 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG com.networknt.schema.TypeValidator debug - validate( "5cf0cd9c-02c7-44d0-a2ea-f1bfeee8", {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:35.691 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:35.691 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5cf0cd9c-02c7-44d0-a2ea-f1bfeee8","clientDesc":"73da2cb1-ec19-4117-8978-1d98d8698b78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:35.691 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.691 [XNIO-1 task-1] 8-YGY3-LREGqq-07g0__hw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:35.693 [XNIO-1 task-1] 4dbcxeNtRLaegzkaH0Z0Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f396186a-0b6d-477e-a4fc-f3c8830751b4, base path is set to: null +08:11:35.693 [XNIO-1 task-1] 4dbcxeNtRLaegzkaH0Z0Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.693 [XNIO-1 task-1] 4dbcxeNtRLaegzkaH0Z0Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:35.693 [XNIO-1 task-1] 4dbcxeNtRLaegzkaH0Z0Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f396186a-0b6d-477e-a4fc-f3c8830751b4, base path is set to: null +08:11:35.694 [XNIO-1 task-1] 4dbcxeNtRLaegzkaH0Z0Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "f396186a-0b6d-477e-a4fc-f3c8830751b4", "f396186a-0b6d-477e-a4fc-f3c8830751b4", clientId) +08:11:35.700 [XNIO-1 task-1] s5gT4s_xQjSTJVy-WuuJaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f396186a-0b6d-477e-a4fc-f3c8830751b4 +08:11:35.701 [XNIO-1 task-1] s5gT4s_xQjSTJVy-WuuJaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.701 [XNIO-1 task-1] s5gT4s_xQjSTJVy-WuuJaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.701 [XNIO-1 task-1] s5gT4s_xQjSTJVy-WuuJaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f396186a-0b6d-477e-a4fc-f3c8830751b4 +08:11:35.705 [XNIO-1 task-1] oFBr8JNpShGqUawyBaTkuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.705 [XNIO-1 task-1] oFBr8JNpShGqUawyBaTkuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.705 [XNIO-1 task-1] oFBr8JNpShGqUawyBaTkuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.719 [XNIO-1 task-1] VL1SDmhdSB-2oqSnH0XYXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f396186a-0b6d-477e-a4fc-f3c8830751b4, base path is set to: null +08:11:35.719 [XNIO-1 task-1] VL1SDmhdSB-2oqSnH0XYXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.719 [XNIO-1 task-1] VL1SDmhdSB-2oqSnH0XYXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:35.719 [XNIO-1 task-1] VL1SDmhdSB-2oqSnH0XYXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f396186a-0b6d-477e-a4fc-f3c8830751b4, base path is set to: null +08:11:35.719 [XNIO-1 task-1] VL1SDmhdSB-2oqSnH0XYXA DEBUG com.networknt.schema.TypeValidator debug - validate( "f396186a-0b6d-477e-a4fc-f3c8830751b4", "f396186a-0b6d-477e-a4fc-f3c8830751b4", clientId) +08:11:35.722 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81ddd9ed +08:11:35.727 [XNIO-1 task-1] 4KhCqx6ZSAm4B7Z7ONsFXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.727 [XNIO-1 task-1] 4KhCqx6ZSAm4B7Z7ONsFXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.727 [XNIO-1 task-1] 4KhCqx6ZSAm4B7Z7ONsFXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.727 [XNIO-1 task-1] 4KhCqx6ZSAm4B7Z7ONsFXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:35.734 [XNIO-1 task-1] oqkCUL3cTBmkdR8omuLbkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61cbe87e-6b04-4beb-84b8-ad0691ce8512 +08:11:35.734 [XNIO-1 task-1] oqkCUL3cTBmkdR8omuLbkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.734 [XNIO-1 task-1] oqkCUL3cTBmkdR8omuLbkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.734 [XNIO-1 task-1] oqkCUL3cTBmkdR8omuLbkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61cbe87e-6b04-4beb-84b8-ad0691ce8512 +08:11:35.739 [XNIO-1 task-1] DiUmc8zQQOS4UhPUmFS0jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.739 [XNIO-1 task-1] DiUmc8zQQOS4UhPUmFS0jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.740 [XNIO-1 task-1] DiUmc8zQQOS4UhPUmFS0jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.777 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.777 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.777 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d4737c4-3cf5-4e5e-8551-2442ada1","clientDesc":"7ab66b5e-fa69-4456-a5bf-2cc4c06c7394","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.778 [XNIO-1 task-1] uG2LCvobRYSCKj8qks54Ug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:35.783 [XNIO-1 task-1] jYg_Wx6PTL6DWxxMS6iTGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.783 [XNIO-1 task-1] jYg_Wx6PTL6DWxxMS6iTGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.784 [XNIO-1 task-1] jYg_Wx6PTL6DWxxMS6iTGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.784 [XNIO-1 task-1] jYg_Wx6PTL6DWxxMS6iTGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:35.794 [XNIO-1 task-1] 9HvjY6AYRK-US56bCYWFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a17d6ea-b060-4c47-9295-d9f76954ba7d +08:11:35.794 [XNIO-1 task-1] 9HvjY6AYRK-US56bCYWFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.794 [XNIO-1 task-1] 9HvjY6AYRK-US56bCYWFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.794 [XNIO-1 task-1] 9HvjY6AYRK-US56bCYWFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a17d6ea-b060-4c47-9295-d9f76954ba7d +08:11:35.799 [XNIO-1 task-1] 9HvjY6AYRK-US56bCYWFCg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:35.800 [XNIO-1 task-1] 9HvjY6AYRK-US56bCYWFCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:35.807 [XNIO-1 task-1] pB1VlF5CRBOiRaLV77dyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.807 [XNIO-1 task-1] pB1VlF5CRBOiRaLV77dyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.807 [XNIO-1 task-1] pB1VlF5CRBOiRaLV77dyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.819 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:14fba116-7e92-45ea-9356-6426c1501b03 +08:11:35.826 [XNIO-1 task-1] SIXODdSoSTSIqfS4CSCylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.827 [XNIO-1 task-1] SIXODdSoSTSIqfS4CSCylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.827 [XNIO-1 task-1] SIXODdSoSTSIqfS4CSCylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.827 [XNIO-1 task-1] SIXODdSoSTSIqfS4CSCylQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:35.840 [XNIO-1 task-1] IHo6i09ZREuobOJveE5U3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.840 [XNIO-1 task-1] IHo6i09ZREuobOJveE5U3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.840 [XNIO-1 task-1] IHo6i09ZREuobOJveE5U3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.857 [XNIO-1 task-1] luZkmkgqTK2PzS_BdpkwBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.857 [XNIO-1 task-1] luZkmkgqTK2PzS_BdpkwBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.857 [XNIO-1 task-1] luZkmkgqTK2PzS_BdpkwBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.876 [XNIO-1 task-1] MmMf3iyiQDyvTZOxSa-DZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3ebef9-8ebb-4a50-b158-f513f47bd3d7, base path is set to: null +08:11:35.876 [XNIO-1 task-1] MmMf3iyiQDyvTZOxSa-DZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.877 [XNIO-1 task-1] MmMf3iyiQDyvTZOxSa-DZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:35.877 [XNIO-1 task-1] MmMf3iyiQDyvTZOxSa-DZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3ebef9-8ebb-4a50-b158-f513f47bd3d7, base path is set to: null +08:11:35.877 [XNIO-1 task-1] MmMf3iyiQDyvTZOxSa-DZw DEBUG com.networknt.schema.TypeValidator debug - validate( "3c3ebef9-8ebb-4a50-b158-f513f47bd3d7", "3c3ebef9-8ebb-4a50-b158-f513f47bd3d7", clientId) +08:11:35.878 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12264568 +08:11:35.882 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c0a34589 +08:11:35.883 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c0a34589 +08:11:35.890 [XNIO-1 task-1] LmKS5HiJSaGHZRrKdOALGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b7018b05-0d8c-4abe-bf31-f077acb85ead +08:11:35.890 [XNIO-1 task-1] LmKS5HiJSaGHZRrKdOALGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:35.890 [XNIO-1 task-1] LmKS5HiJSaGHZRrKdOALGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:35.890 [XNIO-1 task-1] LmKS5HiJSaGHZRrKdOALGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b7018b05-0d8c-4abe-bf31-f077acb85ead +08:11:35.897 [XNIO-1 task-1] kAAlsmJPTqq8xM1ZR0hgog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.897 [XNIO-1 task-1] kAAlsmJPTqq8xM1ZR0hgog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.897 [XNIO-1 task-1] kAAlsmJPTqq8xM1ZR0hgog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.897 [XNIO-1 task-1] kAAlsmJPTqq8xM1ZR0hgog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:35.904 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c0a34589 +08:11:35.907 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.907 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:35.907 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:35.908 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:35.926 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c0a34589 +08:11:38.145 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c0a34589 +08:11:38.145 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:38.145 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ce1cbe15-9697-46f3-a9b6-e9542519ffc1", {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:38.146 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.146 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.146 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a6ba0508-af58-4c08-9d21-154e2614", {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:38.146 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:38.146 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a6ba0508-af58-4c08-9d21-154e2614","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:38.146 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.146 [XNIO-1 task-1] C7Swo6IAR_WGd48PJZDxhQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.146 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8030d311-4ef1-47b3-8fec-41139423f13a +08:11:38.150 [XNIO-1 task-1] fhG9KXhPQPujhUuEnwXw9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.150 [XNIO-1 task-1] fhG9KXhPQPujhUuEnwXw9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.150 [XNIO-1 task-1] fhG9KXhPQPujhUuEnwXw9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.155 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3559f970-addd-401d-a412-e8beedc7ce37 +08:11:38.156 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c0a34589 +08:11:38.161 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81ddd9ed +08:11:38.176 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.176 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.176 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG com.networknt.schema.TypeValidator debug - validate( "af0a7f51-0449-4ba9-bf9d-bf1a91cff318", {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG com.networknt.schema.TypeValidator debug - validate( "a3668158-5b0e-4b3b-9332-a9ea665c", {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a3668158-5b0e-4b3b-9332-a9ea665c","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.177 [XNIO-1 task-1] ROjIE5aPQBy2lgZalmVUng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.180 [XNIO-1 task-1] vZhJmimlQK6u-JEdxGNJgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.180 [XNIO-1 task-1] vZhJmimlQK6u-JEdxGNJgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.180 [XNIO-1 task-1] vZhJmimlQK6u-JEdxGNJgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.197 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.197 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.197 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.197 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.197 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7d06b81-2896-4766-941e-941a0821","clientDesc":"af0a7f51-0449-4ba9-bf9d-bf1a91cff318","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.198 [XNIO-1 task-1] qTgn8ztcSI-mU0dyhmtjzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.202 [XNIO-1 task-1] esWOnW9ZTmKt-C_z0GuV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51c142c0-a856-443d-abf6-65873c7ded09 +08:11:38.202 [XNIO-1 task-1] esWOnW9ZTmKt-C_z0GuV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.202 [XNIO-1 task-1] esWOnW9ZTmKt-C_z0GuV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.203 [XNIO-1 task-1] esWOnW9ZTmKt-C_z0GuV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51c142c0-a856-443d-abf6-65873c7ded09 +08:11:38.208 [XNIO-1 task-1] esWOnW9ZTmKt-C_z0GuV5Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.209 [XNIO-1 task-1] esWOnW9ZTmKt-C_z0GuV5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.216 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.216 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.216 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b074baad +08:11:38.216 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.216 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.216 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d1b096a2-ce57-434b-98c4-783b9071","clientDesc":"b1b9f2e7-4ea8-4341-884d-cff890da8011","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.217 [XNIO-1 task-1] M5wQg9BzQ8anNZmE3LXhlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.223 [XNIO-1 task-1] xbdyAEysSi-gaA4HRriKsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.223 [XNIO-1 task-1] xbdyAEysSi-gaA4HRriKsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.223 [XNIO-1 task-1] xbdyAEysSi-gaA4HRriKsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.223 [XNIO-1 task-1] xbdyAEysSi-gaA4HRriKsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:38.233 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.234 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.234 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.234 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.234 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.234 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:38.235 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce1cbe15-9697-46f3-a9b6-e9542519ffc1", {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:38.235 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.235 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.235 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG com.networknt.schema.TypeValidator debug - validate( "99b4a595-b99a-4a4d-85ee-84d0dd33", {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:38.235 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:38.235 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"99b4a595-b99a-4a4d-85ee-84d0dd33","clientDesc":"ce1cbe15-9697-46f3-a9b6-e9542519ffc1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:38.235 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.236 [XNIO-1 task-1] JS0IigB3SkyewH5oXU3puA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.239 [XNIO-1 task-1] XrONxVmvTCevUR6nmNCEuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/38684475-cbef-41b2-a8e5-4e93af865e1e, base path is set to: null +08:11:38.239 [XNIO-1 task-1] XrONxVmvTCevUR6nmNCEuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.239 [XNIO-1 task-1] XrONxVmvTCevUR6nmNCEuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.239 [XNIO-1 task-1] XrONxVmvTCevUR6nmNCEuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/38684475-cbef-41b2-a8e5-4e93af865e1e, base path is set to: null +08:11:38.239 [XNIO-1 task-1] XrONxVmvTCevUR6nmNCEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "38684475-cbef-41b2-a8e5-4e93af865e1e", "38684475-cbef-41b2-a8e5-4e93af865e1e", clientId) +08:11:38.244 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.248 [XNIO-1 task-1] d4V0vBRiQmKIDA9e4ZnBHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7aff6276-381b-40ec-8603-d1ddccf10183 +08:11:38.248 [XNIO-1 task-1] d4V0vBRiQmKIDA9e4ZnBHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.248 [XNIO-1 task-1] d4V0vBRiQmKIDA9e4ZnBHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.248 [XNIO-1 task-1] d4V0vBRiQmKIDA9e4ZnBHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7aff6276-381b-40ec-8603-d1ddccf10183 +08:11:38.250 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.250 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.250 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.250 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.251 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.251 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.251 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.251 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.252 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.252 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.252 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.252 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a9fe7b5-6ac3-4f4f-bfeb-8daf46c5","clientDesc":"4f4c0efd-3bdc-4906-9dcb-ddc5544a099a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.252 [XNIO-1 task-1] BPqvaF8pRbq9-lthjeplnw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.258 [XNIO-1 task-1] 14TxOYm4RByeZ1swTjLpkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.258 [XNIO-1 task-1] 14TxOYm4RByeZ1swTjLpkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.258 [XNIO-1 task-1] 14TxOYm4RByeZ1swTjLpkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.258 [XNIO-1 task-1] 14TxOYm4RByeZ1swTjLpkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:38.264 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8030d311-4ef1-47b3-8fec-41139423f13a +08:11:38.267 [XNIO-1 task-1] 5lyrjyBwT2WCfhKFWrm8bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.267 [XNIO-1 task-1] 5lyrjyBwT2WCfhKFWrm8bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.267 [XNIO-1 task-1] 5lyrjyBwT2WCfhKFWrm8bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.273 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e806a8f9-5279-4524-ad24-d42b8952a27e +08:11:38.278 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8030d311-4ef1-47b3-8fec-41139423f13a +08:11:38.281 [XNIO-1 task-1] dyLCfzG9RwSxLPLz2EF3Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.281 [XNIO-1 task-1] dyLCfzG9RwSxLPLz2EF3Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.281 [XNIO-1 task-1] dyLCfzG9RwSxLPLz2EF3Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.281 [XNIO-1 task-1] dyLCfzG9RwSxLPLz2EF3Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:38.301 [XNIO-1 task-1] 6DaOOXK0QJucQudpp-5NYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.301 [XNIO-1 task-1] 6DaOOXK0QJucQudpp-5NYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.301 [XNIO-1 task-1] 6DaOOXK0QJucQudpp-5NYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.302 [XNIO-1 task-1] 6DaOOXK0QJucQudpp-5NYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:38.311 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.311 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.311 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62276027-4dc2-4785-b21e-705911d88001", {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1e29de20-813c-4616-8db9-a368a7bf", {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1e29de20-813c-4616-8db9-a368a7bf","clientDesc":"62276027-4dc2-4785-b21e-705911d88001","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.312 [XNIO-1 task-1] mv9aZjgjTSeTb2rXXVIzVQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.319 [XNIO-1 task-1] wqgy2WVCT3Offwn9GOP4lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3ebef9-8ebb-4a50-b158-f513f47bd3d7, base path is set to: null +08:11:38.319 [XNIO-1 task-1] wqgy2WVCT3Offwn9GOP4lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.319 [XNIO-1 task-1] wqgy2WVCT3Offwn9GOP4lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.319 [XNIO-1 task-1] wqgy2WVCT3Offwn9GOP4lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3ebef9-8ebb-4a50-b158-f513f47bd3d7, base path is set to: null +08:11:38.319 [XNIO-1 task-1] wqgy2WVCT3Offwn9GOP4lw DEBUG com.networknt.schema.TypeValidator debug - validate( "3c3ebef9-8ebb-4a50-b158-f513f47bd3d7", "3c3ebef9-8ebb-4a50-b158-f513f47bd3d7", clientId) +08:11:38.332 [XNIO-1 task-1] YDNrkATsRdKzIfBROeOwtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.332 [XNIO-1 task-1] YDNrkATsRdKzIfBROeOwtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.332 [XNIO-1 task-1] YDNrkATsRdKzIfBROeOwtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.344 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.352 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.353 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.354 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.354 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.354 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d5dbe86-f034-4e1d-9a2f-eab6c469","clientDesc":"746d24d5-735f-4f39-b100-59bf5de8bb25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.354 [XNIO-1 task-1] hTanLWwfQ1uDnKAC3QJkiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.360 [XNIO-1 task-1] hzJ4o6FtTSKY53P5ogHLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86144081-1564-4614-8f01-777a70cd369e +08:11:38.360 [XNIO-1 task-1] hzJ4o6FtTSKY53P5ogHLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.360 [XNIO-1 task-1] hzJ4o6FtTSKY53P5ogHLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.360 [XNIO-1 task-1] hzJ4o6FtTSKY53P5ogHLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86144081-1564-4614-8f01-777a70cd369e +08:11:38.368 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.369 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.369 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"468020d2-9e0b-4e69-b514-b121be36","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.370 [XNIO-1 task-1] 6fS5fZavQSGGSRGXxm-CnA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.377 [XNIO-1 task-1] B0Y0GghdTDu1lZW8TDG_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.377 [XNIO-1 task-1] B0Y0GghdTDu1lZW8TDG_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.377 [XNIO-1 task-1] B0Y0GghdTDu1lZW8TDG_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.394 [XNIO-1 task-1] 2SNUy1yYQaWhP_rYSpjfUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0ddcce4-f1ce-4565-8540-81fc31f97dbf +08:11:38.394 [XNIO-1 task-1] 2SNUy1yYQaWhP_rYSpjfUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.394 [XNIO-1 task-1] 2SNUy1yYQaWhP_rYSpjfUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.395 [XNIO-1 task-1] 2SNUy1yYQaWhP_rYSpjfUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0ddcce4-f1ce-4565-8540-81fc31f97dbf +08:11:38.397 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b074baad +08:11:38.401 [XNIO-1 task-1] d641kKRQR36r65OmT-_ATg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584, base path is set to: null +08:11:38.402 [XNIO-1 task-1] d641kKRQR36r65OmT-_ATg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.402 [XNIO-1 task-1] d641kKRQR36r65OmT-_ATg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.402 [XNIO-1 task-1] d641kKRQR36r65OmT-_ATg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584, base path is set to: null +08:11:38.402 [XNIO-1 task-1] d641kKRQR36r65OmT-_ATg DEBUG com.networknt.schema.TypeValidator debug - validate( "cfb8ac78-8574-43e2-a89b-c2e1b4bca584", "cfb8ac78-8574-43e2-a89b-c2e1b4bca584", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:38.409 [XNIO-1 task-1] d641kKRQR36r65OmT-_ATg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.412 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:65127627 +08:11:38.414 [XNIO-1 task-1] pafSPQxDTquLp10bKrVMrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.414 [XNIO-1 task-1] pafSPQxDTquLp10bKrVMrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.414 [XNIO-1 task-1] pafSPQxDTquLp10bKrVMrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.415 [XNIO-1 task-1] pafSPQxDTquLp10bKrVMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:38.429 [XNIO-1 task-1] W1dw2BWISZGfPDVFqrX9kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.429 [XNIO-1 task-1] W1dw2BWISZGfPDVFqrX9kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.429 [XNIO-1 task-1] W1dw2BWISZGfPDVFqrX9kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.430 [XNIO-1 task-1] W1dw2BWISZGfPDVFqrX9kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:38.443 [XNIO-1 task-1] Xi4fZrsxT0-ujPhSJZT4Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.443 [XNIO-1 task-1] Xi4fZrsxT0-ujPhSJZT4Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.444 [XNIO-1 task-1] Xi4fZrsxT0-ujPhSJZT4Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.460 [XNIO-1 task-1] RK1iq7rTT1SpeShq0WrsUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.460 [XNIO-1 task-1] RK1iq7rTT1SpeShq0WrsUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.460 [XNIO-1 task-1] RK1iq7rTT1SpeShq0WrsUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.476 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.476 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a6d1fc0-ae9b-401f-8783-c9fedc9d","clientDesc":"3fcf2e46-6ba6-4b3a-a848-53feac683306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.477 [XNIO-1 task-1] fdAUHp9gSMuJRGU4Oon7sg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.482 [XNIO-1 task-1] jsKPJe4rT9OI_iwNt4A1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4ebd0f4-d635-4d93-a2de-bbb273057743 +08:11:38.482 [XNIO-1 task-1] jsKPJe4rT9OI_iwNt4A1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.482 [XNIO-1 task-1] jsKPJe4rT9OI_iwNt4A1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.482 [XNIO-1 task-1] jsKPJe4rT9OI_iwNt4A1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4ebd0f4-d635-4d93-a2de-bbb273057743 +08:11:38.489 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9bc90b4 +08:11:38.490 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9bc90b4 +08:11:38.491 [XNIO-1 task-1] 2pk0zeg4Sde6l-sjByp2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/48015aad-4cfe-46d0-939c-b4124214b3dd +08:11:38.492 [XNIO-1 task-1] 2pk0zeg4Sde6l-sjByp2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.492 [XNIO-1 task-1] 2pk0zeg4Sde6l-sjByp2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.492 [XNIO-1 task-1] 2pk0zeg4Sde6l-sjByp2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/48015aad-4cfe-46d0-939c-b4124214b3dd +08:11:38.498 [XNIO-1 task-1] YaxQqFuxQGSvCMKuymSFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.499 [XNIO-1 task-1] YaxQqFuxQGSvCMKuymSFbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.499 [XNIO-1 task-1] YaxQqFuxQGSvCMKuymSFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.500 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c9bc90b4 +08:11:38.509 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.513 [XNIO-1 task-1] 3WvS2ULiRqeicqKwZkuHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.513 [XNIO-1 task-1] 3WvS2ULiRqeicqKwZkuHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.513 [XNIO-1 task-1] 3WvS2ULiRqeicqKwZkuHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.528 [XNIO-1 task-1] nxcnVuhPST-cXBehQZodsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/18b12695-f779-435b-a934-052ef859f0b9 +08:11:38.528 [XNIO-1 task-1] nxcnVuhPST-cXBehQZodsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.528 [XNIO-1 task-1] nxcnVuhPST-cXBehQZodsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.528 [XNIO-1 task-1] nxcnVuhPST-cXBehQZodsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/18b12695-f779-435b-a934-052ef859f0b9 +08:11:38.533 [XNIO-1 task-1] nxcnVuhPST-cXBehQZodsg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.533 [XNIO-1 task-1] nxcnVuhPST-cXBehQZodsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.536 [XNIO-1 task-1] Chtk1lURT3OMNK4gjN6wVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.537 [XNIO-1 task-1] Chtk1lURT3OMNK4gjN6wVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.537 [XNIO-1 task-1] Chtk1lURT3OMNK4gjN6wVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.552 [XNIO-1 task-1] eC05_0U7Rq-_XZ-TgGg7kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.552 [XNIO-1 task-1] eC05_0U7Rq-_XZ-TgGg7kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.552 [XNIO-1 task-1] eC05_0U7Rq-_XZ-TgGg7kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.552 [XNIO-1 task-1] eC05_0U7Rq-_XZ-TgGg7kw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:38.555 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:65127627 +08:11:38.566 [XNIO-1 task-1] F6NCwEWFSYSO5fB4u3Ll3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584 +08:11:38.566 [XNIO-1 task-1] F6NCwEWFSYSO5fB4u3Ll3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.567 [XNIO-1 task-1] F6NCwEWFSYSO5fB4u3Ll3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.567 [XNIO-1 task-1] F6NCwEWFSYSO5fB4u3Ll3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584 +08:11:38.575 [XNIO-1 task-1] F6NCwEWFSYSO5fB4u3Ll3g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.576 [XNIO-1 task-1] F6NCwEWFSYSO5fB4u3Ll3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.580 [XNIO-1 task-1] e0jCNa2xR128gJfOawQ0wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.580 [XNIO-1 task-1] e0jCNa2xR128gJfOawQ0wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.580 [XNIO-1 task-1] e0jCNa2xR128gJfOawQ0wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.580 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12264568 +08:11:38.580 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:12264568 +08:11:38.590 [XNIO-1 task-1] oRDToeBQSVu7Bn4f7O0CCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.590 [XNIO-1 task-1] oRDToeBQSVu7Bn4f7O0CCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.590 [XNIO-1 task-1] oRDToeBQSVu7Bn4f7O0CCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.591 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:12264568 +08:11:38.607 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.607 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.607 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.607 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.607 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "39c4a199-48e1-4680-89bd-c85109c32073", {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cfc86bc5-166b-4b5a-b1e8-4c1ddafe", {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cfc86bc5-166b-4b5a-b1e8-4c1ddafe","clientDesc":"39c4a199-48e1-4680-89bd-c85109c32073","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.608 [XNIO-1 task-1] zhKJ2-F_SX6bnlAElCXDcQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.612 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73699572 +08:11:38.613 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73699572 +08:11:38.615 [XNIO-1 task-1] f9yr776YRc2dRkZQWzvQ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1407f29f-3074-43b4-90dd-6d6d2f3dfe3b +08:11:38.615 [XNIO-1 task-1] f9yr776YRc2dRkZQWzvQ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.615 [XNIO-1 task-1] f9yr776YRc2dRkZQWzvQ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.615 [XNIO-1 task-1] f9yr776YRc2dRkZQWzvQ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1407f29f-3074-43b4-90dd-6d6d2f3dfe3b +08:11:38.621 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.622 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.622 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.622 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.622 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.622 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.622 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.623 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.623 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.623 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.623 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.623 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08be71b2-1ba7-4616-b737-aa3c178d","clientDesc":"cdb17c17-1d63-48f7-ba28-e9d42f51412d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.623 [XNIO-1 task-1] 6TO2gFVVQEiMtxl-_XigjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.630 [XNIO-1 task-1] gDs1i5GmThu4PxcTgGfj-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.630 [XNIO-1 task-1] gDs1i5GmThu4PxcTgGfj-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.630 [XNIO-1 task-1] gDs1i5GmThu4PxcTgGfj-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.648 [XNIO-1 task-1] BCqCN-k-TEO5gCx22NE_uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/561d21e4-8c34-4079-b64c-bf1f3541d318 +08:11:38.648 [XNIO-1 task-1] BCqCN-k-TEO5gCx22NE_uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.648 [XNIO-1 task-1] BCqCN-k-TEO5gCx22NE_uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.648 [XNIO-1 task-1] BCqCN-k-TEO5gCx22NE_uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/561d21e4-8c34-4079-b64c-bf1f3541d318 +08:11:38.655 [XNIO-1 task-1] XYCyiZiiToyNJIalNeCUkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d7b7fa4e-3c43-4d76-b4db-9310e8e47bc1, base path is set to: null +08:11:38.656 [XNIO-1 task-1] XYCyiZiiToyNJIalNeCUkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.656 [XNIO-1 task-1] XYCyiZiiToyNJIalNeCUkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.656 [XNIO-1 task-1] XYCyiZiiToyNJIalNeCUkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d7b7fa4e-3c43-4d76-b4db-9310e8e47bc1, base path is set to: null +08:11:38.656 [XNIO-1 task-1] XYCyiZiiToyNJIalNeCUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "d7b7fa4e-3c43-4d76-b4db-9310e8e47bc1", "d7b7fa4e-3c43-4d76-b4db-9310e8e47bc1", clientId) +08:11:38.665 [XNIO-1 task-1] SOJH87ORQrWPJfPty0QyUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.665 [XNIO-1 task-1] SOJH87ORQrWPJfPty0QyUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.665 [XNIO-1 task-1] SOJH87ORQrWPJfPty0QyUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.673 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.682 [XNIO-1 task-1] skt1PUKETLyBJzMkhIX7Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.682 [XNIO-1 task-1] skt1PUKETLyBJzMkhIX7Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.682 [XNIO-1 task-1] skt1PUKETLyBJzMkhIX7Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.682 [XNIO-1 task-1] skt1PUKETLyBJzMkhIX7Lw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:38.695 [XNIO-1 task-1] -q2oqgTITEqx4xViQDiqdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.695 [XNIO-1 task-1] -q2oqgTITEqx4xViQDiqdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.695 [XNIO-1 task-1] -q2oqgTITEqx4xViQDiqdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.703 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:535098db-aa88-4b10-86fe-172bc6638215 +08:11:38.711 [XNIO-1 task-1] XVzn2Ev1TTmIEjcAvENVYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b7018b05-0d8c-4abe-bf31-f077acb85ead, base path is set to: null +08:11:38.711 [XNIO-1 task-1] XVzn2Ev1TTmIEjcAvENVYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.711 [XNIO-1 task-1] XVzn2Ev1TTmIEjcAvENVYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.711 [XNIO-1 task-1] XVzn2Ev1TTmIEjcAvENVYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b7018b05-0d8c-4abe-bf31-f077acb85ead, base path is set to: null +08:11:38.712 [XNIO-1 task-1] XVzn2Ev1TTmIEjcAvENVYA DEBUG com.networknt.schema.TypeValidator debug - validate( "b7018b05-0d8c-4abe-bf31-f077acb85ead", "b7018b05-0d8c-4abe-bf31-f077acb85ead", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:38.719 [XNIO-1 task-1] XVzn2Ev1TTmIEjcAvENVYA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/b7018b05-0d8c-4abe-bf31-f077acb85ead} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.725 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.725 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.726 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.727 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.727 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81c67a4a-9f5b-4bad-88c5-c4860c6b","clientDesc":"cd87fccc-7c69-43d5-805b-f7897fbc1a67","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.727 [XNIO-1 task-1] Gh9iffZ_SEuvFxce-xuqRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.730 [XNIO-1 task-1] vdhCYDXdR96U6s6UxI1lSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0076e556-42e5-4ba2-a19c-d7a2a5186382 +08:11:38.730 [XNIO-1 task-1] vdhCYDXdR96U6s6UxI1lSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.730 [XNIO-1 task-1] vdhCYDXdR96U6s6UxI1lSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.730 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.730 [XNIO-1 task-1] vdhCYDXdR96U6s6UxI1lSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0076e556-42e5-4ba2-a19c-d7a2a5186382 +08:11:38.734 [XNIO-1 task-1] On-KKuAXTy6oM-EnVUQ6Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.734 [XNIO-1 task-1] On-KKuAXTy6oM-EnVUQ6Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.734 [XNIO-1 task-1] On-KKuAXTy6oM-EnVUQ6Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.734 [XNIO-1 task-1] On-KKuAXTy6oM-EnVUQ6Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:38.744 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.745 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.745 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.746 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.746 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.746 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.746 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.747 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.747 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.747 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.747 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.747 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3492199-f8e7-4aab-9b0f-6d89e92f","clientDesc":"a4e8206b-c8d6-4c84-b7e4-d2033aa2190b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.747 [XNIO-1 task-1] HvWVviK2QKCO-tnrGG8XCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.750 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b074baad +08:11:38.754 [XNIO-1 task-1] Zw37Bx2HTGW6vNw8r0iAVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2e1fef28-7ca9-45e4-953c-7c235df40011 +08:11:38.754 [XNIO-1 task-1] Zw37Bx2HTGW6vNw8r0iAVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.754 [XNIO-1 task-1] Zw37Bx2HTGW6vNw8r0iAVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.754 [XNIO-1 task-1] Zw37Bx2HTGW6vNw8r0iAVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2e1fef28-7ca9-45e4-953c-7c235df40011 +08:11:38.772 [XNIO-1 task-1] YNTob1oXSLi2e8ycmwioJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.773 [XNIO-1 task-1] YNTob1oXSLi2e8ycmwioJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.773 [XNIO-1 task-1] YNTob1oXSLi2e8ycmwioJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.786 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b074baad +08:11:38.791 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.791 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.791 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.791 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.791 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:38.791 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG com.networknt.schema.TypeValidator debug - validate( "772fe5f5-ce96-40a4-aed3-9cf79fcd9af8", {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:38.791 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.792 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.792 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG com.networknt.schema.TypeValidator debug - validate( "d0c0fa87-c9fb-4691-b8e7-a41ee509", {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:38.792 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:38.792 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d0c0fa87-c9fb-4691-b8e7-a41ee509","clientDesc":"772fe5f5-ce96-40a4-aed3-9cf79fcd9af8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:38.792 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.792 [XNIO-1 task-1] CIAVsdKrT2Opl8lYWritQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.798 [XNIO-1 task-1] 7XnNvWtaRTWHqw4xztOKsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.799 [XNIO-1 task-1] 7XnNvWtaRTWHqw4xztOKsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.799 [XNIO-1 task-1] 7XnNvWtaRTWHqw4xztOKsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.799 [XNIO-1 task-1] 7XnNvWtaRTWHqw4xztOKsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:38.807 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c5dea572 +08:11:38.809 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c5dea572 +08:11:38.814 [XNIO-1 task-1] 5Vmw4CPgQAC8_zp2wlsrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.814 [XNIO-1 task-1] 5Vmw4CPgQAC8_zp2wlsrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.815 [XNIO-1 task-1] 5Vmw4CPgQAC8_zp2wlsrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.830 [XNIO-1 task-1] BlU9ViGVQ0u9QHbr91emOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.830 [XNIO-1 task-1] BlU9ViGVQ0u9QHbr91emOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.830 [XNIO-1 task-1] BlU9ViGVQ0u9QHbr91emOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.848 [XNIO-1 task-1] 7V1CWYcUTKqT_1US_PXRNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4ebd0f4-d635-4d93-a2de-bbb273057743, base path is set to: null +08:11:38.850 [XNIO-1 task-1] 7V1CWYcUTKqT_1US_PXRNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.850 [XNIO-1 task-1] 7V1CWYcUTKqT_1US_PXRNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.850 [XNIO-1 task-1] 7V1CWYcUTKqT_1US_PXRNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4ebd0f4-d635-4d93-a2de-bbb273057743, base path is set to: null +08:11:38.850 [XNIO-1 task-1] 7V1CWYcUTKqT_1US_PXRNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4ebd0f4-d635-4d93-a2de-bbb273057743", "b4ebd0f4-d635-4d93-a2de-bbb273057743", clientId) +08:11:38.853 [XNIO-1 task-1] rOIy5aomS2GHH2Gj7msrvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6be4fc5a-dfd4-49ca-89e6-2132319fbe82 +08:11:38.855 [XNIO-1 task-1] rOIy5aomS2GHH2Gj7msrvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.855 [XNIO-1 task-1] rOIy5aomS2GHH2Gj7msrvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.855 [XNIO-1 task-1] rOIy5aomS2GHH2Gj7msrvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6be4fc5a-dfd4-49ca-89e6-2132319fbe82 +08:11:38.861 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.861 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.861 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.861 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.861 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c26c3033-e68c-4a8b-996b-ab82c9e6","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.862 [XNIO-1 task-1] bdzwJ-BjRZGP-J7MkdtKVA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.868 [XNIO-1 task-1] 5UPUmU6kTBO0nwxgut-ITg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.868 [XNIO-1 task-1] 5UPUmU6kTBO0nwxgut-ITg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.869 [XNIO-1 task-1] 5UPUmU6kTBO0nwxgut-ITg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.869 [XNIO-1 task-1] 5UPUmU6kTBO0nwxgut-ITg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.869 [XNIO-1 task-1] 5UPUmU6kTBO0nwxgut-ITg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:38.885 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73699572 +08:11:38.886 [XNIO-1 task-1] uJYMZwRjQgGosP2hM8rlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4ebd0f4-d635-4d93-a2de-bbb273057743 +08:11:38.886 [XNIO-1 task-1] uJYMZwRjQgGosP2hM8rlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.886 [XNIO-1 task-1] uJYMZwRjQgGosP2hM8rlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.886 [XNIO-1 task-1] uJYMZwRjQgGosP2hM8rlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4ebd0f4-d635-4d93-a2de-bbb273057743 +08:11:38.895 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.895 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.895 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45fc76f5-bf29-472d-b78a-03d89191","clientDesc":"860647cb-550e-4a48-b7f1-055d49e5037f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.896 [XNIO-1 task-1] cn9QhPcHSaeUpZ7Qi9DkIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:38.902 [XNIO-1 task-1] siQJixKBQFaRRbouMMRGqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.902 [XNIO-1 task-1] siQJixKBQFaRRbouMMRGqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.902 [XNIO-1 task-1] siQJixKBQFaRRbouMMRGqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.902 [XNIO-1 task-1] siQJixKBQFaRRbouMMRGqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:38.917 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.917 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.917 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.917 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:38.918 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:38.918 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "b729a907-2f48-447b-892c-848733d2d726", {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:38.918 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:38.918 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:38.918 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "10bbc925-e409-442b-ae24-f85441de", {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:38.918 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:38.919 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"10bbc925-e409-442b-ae24-f85441de","clientDesc":"b729a907-2f48-447b-892c-848733d2d726","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:38.919 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:38.919 [XNIO-1 task-1] 4u7u9lBBSeW5eNgnzhsJ3g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:38.928 [XNIO-1 task-1] 22URaGyhQrWp6chySpH9_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.928 [XNIO-1 task-1] 22URaGyhQrWp6chySpH9_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.928 [XNIO-1 task-1] 22URaGyhQrWp6chySpH9_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.947 [XNIO-1 task-1] gZbHzIXvSaC-uJ7_eQ1bWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.947 [XNIO-1 task-1] gZbHzIXvSaC-uJ7_eQ1bWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.947 [XNIO-1 task-1] gZbHzIXvSaC-uJ7_eQ1bWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.953 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:98b035fe-a69a-4644-b474-ea1b449f45ff +08:11:38.954 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:98b035fe-a69a-4644-b474-ea1b449f45ff +08:11:38.956 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8388312b +08:11:38.969 [XNIO-1 task-1] CX6kVadvQEKt5-EEkkLlww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.970 [XNIO-1 task-1] CX6kVadvQEKt5-EEkkLlww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.970 [XNIO-1 task-1] CX6kVadvQEKt5-EEkkLlww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.970 [XNIO-1 task-1] CX6kVadvQEKt5-EEkkLlww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:38.978 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8388312b +08:11:38.984 [XNIO-1 task-1] _Bj1x4pbQqqt75KVtsbNhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2cdad58e-915f-4be1-bc79-48c9f56d4762, base path is set to: null +08:11:38.984 [XNIO-1 task-1] _Bj1x4pbQqqt75KVtsbNhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.984 [XNIO-1 task-1] _Bj1x4pbQqqt75KVtsbNhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:38.984 [XNIO-1 task-1] _Bj1x4pbQqqt75KVtsbNhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2cdad58e-915f-4be1-bc79-48c9f56d4762, base path is set to: null +08:11:38.984 [XNIO-1 task-1] _Bj1x4pbQqqt75KVtsbNhA DEBUG com.networknt.schema.TypeValidator debug - validate( "2cdad58e-915f-4be1-bc79-48c9f56d4762", "2cdad58e-915f-4be1-bc79-48c9f56d4762", clientId) +08:11:38.994 [XNIO-1 task-1] 4KCfodplQU2-62ArK0ib1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/885e88dc-dfd6-4637-a6fd-eb87344bf76b +08:11:38.994 [XNIO-1 task-1] 4KCfodplQU2-62ArK0ib1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:38.994 [XNIO-1 task-1] 4KCfodplQU2-62ArK0ib1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:38.994 [XNIO-1 task-1] 4KCfodplQU2-62ArK0ib1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/885e88dc-dfd6-4637-a6fd-eb87344bf76b +08:11:38.996 [XNIO-1 task-1] fyHUy89KTLelYabSw1pA9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.997 [XNIO-1 task-1] fyHUy89KTLelYabSw1pA9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:38.997 [XNIO-1 task-1] fyHUy89KTLelYabSw1pA9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:38.997 [XNIO-1 task-1] fyHUy89KTLelYabSw1pA9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.006 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8388312b +08:11:39.008 [XNIO-1 task-1] rcE1k8e7Q2uvHrlffuSVmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.009 [XNIO-1 task-1] rcE1k8e7Q2uvHrlffuSVmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.009 [XNIO-1 task-1] rcE1k8e7Q2uvHrlffuSVmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.027 [XNIO-1 task-1] KQYEFUOKQf2BVUo8EI3W0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.027 [XNIO-1 task-1] KQYEFUOKQf2BVUo8EI3W0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.028 [XNIO-1 task-1] KQYEFUOKQf2BVUo8EI3W0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.028 [XNIO-1 task-1] KQYEFUOKQf2BVUo8EI3W0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.034 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8388312b +08:11:39.039 [XNIO-1 task-1] QbzWw3GET2CK7slQfrAKAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3353da57-ba33-4447-bb99-b967b18f6e9a, base path is set to: null +08:11:39.039 [XNIO-1 task-1] QbzWw3GET2CK7slQfrAKAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.039 [XNIO-1 task-1] QbzWw3GET2CK7slQfrAKAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.039 [XNIO-1 task-1] QbzWw3GET2CK7slQfrAKAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3353da57-ba33-4447-bb99-b967b18f6e9a, base path is set to: null +08:11:39.040 [XNIO-1 task-1] QbzWw3GET2CK7slQfrAKAw DEBUG com.networknt.schema.TypeValidator debug - validate( "3353da57-ba33-4447-bb99-b967b18f6e9a", "3353da57-ba33-4447-bb99-b967b18f6e9a", clientId) +08:11:39.043 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +08:11:39.044 [XNIO-1 task-1] QbzWw3GET2CK7slQfrAKAw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.044 [XNIO-1 task-1] QbzWw3GET2CK7slQfrAKAw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.050 [XNIO-1 task-1] HIf-WYMrREW9hugP9LgVCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51c142c0-a856-443d-abf6-65873c7ded09 +08:11:39.050 [XNIO-1 task-1] HIf-WYMrREW9hugP9LgVCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.050 [XNIO-1 task-1] HIf-WYMrREW9hugP9LgVCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.050 [XNIO-1 task-1] HIf-WYMrREW9hugP9LgVCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51c142c0-a856-443d-abf6-65873c7ded09 +08:11:39.050 [XNIO-1 task-1] HIf-WYMrREW9hugP9LgVCw DEBUG com.networknt.schema.TypeValidator debug - validate( "51c142c0-a856-443d-abf6-65873c7ded09", "51c142c0-a856-443d-abf6-65873c7ded09", clientId) +08:11:39.055 [XNIO-1 task-1] HIf-WYMrREW9hugP9LgVCw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.056 [XNIO-1 task-1] HIf-WYMrREW9hugP9LgVCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.064 [XNIO-1 task-1] 040IKnSFQ9OS7XJDqlUVBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39635b5d-3c25-4d63-b02a-e9f03d7b2e2f +08:11:39.064 [XNIO-1 task-1] 040IKnSFQ9OS7XJDqlUVBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.064 [XNIO-1 task-1] 040IKnSFQ9OS7XJDqlUVBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.064 [XNIO-1 task-1] 040IKnSFQ9OS7XJDqlUVBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39635b5d-3c25-4d63-b02a-e9f03d7b2e2f +08:11:39.068 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:8388312b +08:11:39.070 [XNIO-1 task-1] t6gdpD0OR22g0_5JY5tHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.070 [XNIO-1 task-1] t6gdpD0OR22g0_5JY5tHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.071 [XNIO-1 task-1] t6gdpD0OR22g0_5JY5tHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.071 [XNIO-1 task-1] t6gdpD0OR22g0_5JY5tHSw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.079 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:13f6d79d-46bb-4006-87cc-bc3db79daa5e +08:11:39.083 [XNIO-1 task-1] CG6mcfE_SBuktqffwd8UBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5, base path is set to: null +08:11:39.083 [XNIO-1 task-1] CG6mcfE_SBuktqffwd8UBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.083 [XNIO-1 task-1] CG6mcfE_SBuktqffwd8UBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.083 [XNIO-1 task-1] CG6mcfE_SBuktqffwd8UBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5, base path is set to: null +08:11:39.083 [XNIO-1 task-1] CG6mcfE_SBuktqffwd8UBg DEBUG com.networknt.schema.TypeValidator debug - validate( "4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5", "4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5", clientId) +08:11:39.091 [XNIO-1 task-1] w2QsiYb9SsigDh98ui3Isg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39635b5d-3c25-4d63-b02a-e9f03d7b2e2f +08:11:39.091 [XNIO-1 task-1] w2QsiYb9SsigDh98ui3Isg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.091 [XNIO-1 task-1] w2QsiYb9SsigDh98ui3Isg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.091 [XNIO-1 task-1] w2QsiYb9SsigDh98ui3Isg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39635b5d-3c25-4d63-b02a-e9f03d7b2e2f +08:11:39.101 [XNIO-1 task-1] ef9-9NeHRHqW14V03Euxmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.101 [XNIO-1 task-1] ef9-9NeHRHqW14V03Euxmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.102 [XNIO-1 task-1] ef9-9NeHRHqW14V03Euxmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.115 [XNIO-1 task-1] U64Q9vozRz6eVreQU6jKqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.115 [XNIO-1 task-1] U64Q9vozRz6eVreQU6jKqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.115 [XNIO-1 task-1] U64Q9vozRz6eVreQU6jKqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.122 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a36a189e +08:11:39.123 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a36a189e +08:11:39.130 [XNIO-1 task-1] 4t_n5uTvTrS6xEPrVOoWvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.130 [XNIO-1 task-1] 4t_n5uTvTrS6xEPrVOoWvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.130 [XNIO-1 task-1] 4t_n5uTvTrS6xEPrVOoWvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.130 [XNIO-1 task-1] 4t_n5uTvTrS6xEPrVOoWvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.138 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.138 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.138 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.138 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.138 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a", {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "63033100-1631-4e76-b9cb-73201681", {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"63033100-1631-4e76-b9cb-73201681","clientDesc":"bf4a4a4d-a9ba-45ad-949f-94a4baacfd9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.139 [XNIO-1 task-1] xcY3AbUtSCiBOWhZIyTq9Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.145 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a36a189e +08:11:39.146 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.146 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.146 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.147 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b7ee7e3-f558-43e1-bfec-64df9890","clientDesc":"68d2b6fa-6487-4672-80ac-3dda95f9875e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.148 [XNIO-1 task-1] sendxw0ZTy6UxFBpNPvD2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.151 [XNIO-1 task-1] 2HYDtrBDSn-rpab0UZt9vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.151 [XNIO-1 task-1] 2HYDtrBDSn-rpab0UZt9vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.151 [XNIO-1 task-1] 2HYDtrBDSn-rpab0UZt9vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.151 [XNIO-1 task-1] 2HYDtrBDSn-rpab0UZt9vQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.156 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a36a189e +08:11:39.165 [XNIO-1 task-1] -HqtQ6faRZ24ff3XdRKL-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/edea2703-2806-4c6f-875a-6750b78f6650 +08:11:39.165 [XNIO-1 task-1] -HqtQ6faRZ24ff3XdRKL-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.165 [XNIO-1 task-1] -HqtQ6faRZ24ff3XdRKL-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.165 [XNIO-1 task-1] -HqtQ6faRZ24ff3XdRKL-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/edea2703-2806-4c6f-875a-6750b78f6650 +08:11:39.167 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a36a189e +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:39.175 [XNIO-1 task-1] -HqtQ6faRZ24ff3XdRKL-g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/edea2703-2806-4c6f-875a-6750b78f6650} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.180 [XNIO-1 task-1] MTrwtF-SSXK2vCsI4QjrVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1407f29f-3074-43b4-90dd-6d6d2f3dfe3b, base path is set to: null +08:11:39.180 [XNIO-1 task-1] MTrwtF-SSXK2vCsI4QjrVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.180 [XNIO-1 task-1] MTrwtF-SSXK2vCsI4QjrVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.180 [XNIO-1 task-1] MTrwtF-SSXK2vCsI4QjrVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1407f29f-3074-43b4-90dd-6d6d2f3dfe3b, base path is set to: null +08:11:39.181 [XNIO-1 task-1] MTrwtF-SSXK2vCsI4QjrVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1407f29f-3074-43b4-90dd-6d6d2f3dfe3b", "1407f29f-3074-43b4-90dd-6d6d2f3dfe3b", clientId) +08:11:39.186 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.186 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.186 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4b2a4b0-7052-4fcc-a0de-bf49cf07f066", {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "bcb2b858-ec41-495a-b242-0cd7c6ae", {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bcb2b858-ec41-495a-b242-0cd7c6ae","clientDesc":"b4b2a4b0-7052-4fcc-a0de-bf49cf07f066","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.187 [XNIO-1 task-1] AYSvNOriSCeFKB_YWrC1Xw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.193 [XNIO-1 task-1] 8_H_JGtqQKyfV9rdrW6pmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.193 [XNIO-1 task-1] 8_H_JGtqQKyfV9rdrW6pmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.193 [XNIO-1 task-1] 8_H_JGtqQKyfV9rdrW6pmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.193 [XNIO-1 task-1] 8_H_JGtqQKyfV9rdrW6pmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.204 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.204 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.204 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.204 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.205 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.205 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.205 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.205 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.205 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.205 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.206 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.206 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7099be6-5aac-46cc-9e71-ca3cab8a","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.206 [XNIO-1 task-1] ZW82Nf9RTXmwCTqLztz6iw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.213 [XNIO-1 task-1] mtB9nFcrSXqQHa8vSTVCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/650ffcbb-4b01-4779-a713-fae45ac7cdf2 +08:11:39.213 [XNIO-1 task-1] mtB9nFcrSXqQHa8vSTVCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.213 [XNIO-1 task-1] mtB9nFcrSXqQHa8vSTVCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.213 [XNIO-1 task-1] mtB9nFcrSXqQHa8vSTVCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/650ffcbb-4b01-4779-a713-fae45ac7cdf2 +08:11:39.223 [XNIO-1 task-1] mtB9nFcrSXqQHa8vSTVCzQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.223 [XNIO-1 task-1] mtB9nFcrSXqQHa8vSTVCzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.233 [XNIO-1 task-1] vFAX-5NkS1KFYLOSs13l8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.233 [XNIO-1 task-1] vFAX-5NkS1KFYLOSs13l8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.234 [XNIO-1 task-1] vFAX-5NkS1KFYLOSs13l8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.237 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:543e6392 +08:11:39.248 [XNIO-1 task-1] bK6eOpmQSGmekiCWXD2knw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0a17d6ea-b060-4c47-9295-d9f76954ba7d, base path is set to: null +08:11:39.249 [XNIO-1 task-1] bK6eOpmQSGmekiCWXD2knw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.249 [XNIO-1 task-1] bK6eOpmQSGmekiCWXD2knw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.249 [XNIO-1 task-1] bK6eOpmQSGmekiCWXD2knw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0a17d6ea-b060-4c47-9295-d9f76954ba7d, base path is set to: null +08:11:39.249 [XNIO-1 task-1] bK6eOpmQSGmekiCWXD2knw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a17d6ea-b060-4c47-9295-d9f76954ba7d", "0a17d6ea-b060-4c47-9295-d9f76954ba7d", clientId) +08:11:39.253 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:543e6392 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:39.254 [XNIO-1 task-1] bK6eOpmQSGmekiCWXD2knw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/0a17d6ea-b060-4c47-9295-d9f76954ba7d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.264 [XNIO-1 task-1] lSYMWGrCSimHbqF-HZ4dCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.264 [XNIO-1 task-1] lSYMWGrCSimHbqF-HZ4dCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.264 [XNIO-1 task-1] lSYMWGrCSimHbqF-HZ4dCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.264 [XNIO-1 task-1] lSYMWGrCSimHbqF-HZ4dCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.275 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.275 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.275 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee667c4-269a-44a8-8c1b-32fd22d7","clientDesc":"01e20a25-5c89-4ca3-b832-6e464c4c42f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.276 [XNIO-1 task-1] RC07lSFNTrqUeo27qE7n7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.279 [XNIO-1 task-1] 8UWIolTTS-mhMUjsEmxw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2cdad58e-915f-4be1-bc79-48c9f56d4762 +08:11:39.279 [XNIO-1 task-1] 8UWIolTTS-mhMUjsEmxw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.279 [XNIO-1 task-1] 8UWIolTTS-mhMUjsEmxw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.279 [XNIO-1 task-1] 8UWIolTTS-mhMUjsEmxw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2cdad58e-915f-4be1-bc79-48c9f56d4762 +08:11:39.288 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.288 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.288 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.288 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.288 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.288 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.289 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.289 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.289 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.289 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.289 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.289 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2585ee5f-b378-4ea0-8f5a-9bb2f2f6","clientDesc":"7b228dd2-3e53-4a6a-b311-5ff7457dd520","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.289 [XNIO-1 task-1] -U-LSCEsTBWHj0u0_ZVadQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.297 [XNIO-1 task-1] bBySRCZqSfmTp5n_MO8CKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fefec00b-83d7-45cb-9716-82a5fc90c2a3 +08:11:39.297 [XNIO-1 task-1] bBySRCZqSfmTp5n_MO8CKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.297 [XNIO-1 task-1] bBySRCZqSfmTp5n_MO8CKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.297 [XNIO-1 task-1] bBySRCZqSfmTp5n_MO8CKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fefec00b-83d7-45cb-9716-82a5fc90c2a3 +08:11:39.299 [XNIO-1 task-1] GOQHG6ppQS-_9OM8IYCcWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.300 [XNIO-1 task-1] GOQHG6ppQS-_9OM8IYCcWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.300 [XNIO-1 task-1] GOQHG6ppQS-_9OM8IYCcWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.310 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:90ff6f5e-53ae-4db2-a8df-944285a9065a +08:11:39.312 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:81ddd9ed +08:11:39.312 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:81ddd9ed +08:11:39.314 [XNIO-1 task-1] i0iOvOpcTf-Ox7UWoX7egg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fefec00b-83d7-45cb-9716-82a5fc90c2a3 +08:11:39.314 [XNIO-1 task-1] i0iOvOpcTf-Ox7UWoX7egg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.315 [XNIO-1 task-1] i0iOvOpcTf-Ox7UWoX7egg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.315 [XNIO-1 task-1] i0iOvOpcTf-Ox7UWoX7egg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fefec00b-83d7-45cb-9716-82a5fc90c2a3 +08:11:39.317 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9a1f751 +08:11:39.325 [XNIO-1 task-1] vKY401drThWuzU6l0vBxWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/535098db-aa88-4b10-86fe-172bc6638215, base path is set to: null +08:11:39.325 [XNIO-1 task-1] vKY401drThWuzU6l0vBxWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.325 [XNIO-1 task-1] vKY401drThWuzU6l0vBxWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.325 [XNIO-1 task-1] vKY401drThWuzU6l0vBxWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/535098db-aa88-4b10-86fe-172bc6638215, base path is set to: null +08:11:39.325 [XNIO-1 task-1] vKY401drThWuzU6l0vBxWg DEBUG com.networknt.schema.TypeValidator debug - validate( "535098db-aa88-4b10-86fe-172bc6638215", "535098db-aa88-4b10-86fe-172bc6638215", clientId) +08:11:39.332 [XNIO-1 task-1] KDVi8OyNQRetLBEamTr7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.332 [XNIO-1 task-1] KDVi8OyNQRetLBEamTr7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.333 [XNIO-1 task-1] KDVi8OyNQRetLBEamTr7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.345 [XNIO-1 task-1] nTzA2GjWQHWViNEafIhGYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.345 [XNIO-1 task-1] nTzA2GjWQHWViNEafIhGYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.346 [XNIO-1 task-1] nTzA2GjWQHWViNEafIhGYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.363 [XNIO-1 task-1] Fa7o2BJLRNych3ss_ho2Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f434b664-5833-49dd-865e-39736baf5976, base path is set to: null +08:11:39.363 [XNIO-1 task-1] Fa7o2BJLRNych3ss_ho2Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.363 [XNIO-1 task-1] Fa7o2BJLRNych3ss_ho2Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.363 [XNIO-1 task-1] Fa7o2BJLRNych3ss_ho2Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f434b664-5833-49dd-865e-39736baf5976, base path is set to: null +08:11:39.364 [XNIO-1 task-1] Fa7o2BJLRNych3ss_ho2Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "f434b664-5833-49dd-865e-39736baf5976", "f434b664-5833-49dd-865e-39736baf5976", clientId) +08:11:39.366 [XNIO-1 task-1] vM8DEv31R5C0MZ2x6E9LSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f434b664-5833-49dd-865e-39736baf5976 +08:11:39.367 [XNIO-1 task-1] vM8DEv31R5C0MZ2x6E9LSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.367 [XNIO-1 task-1] vM8DEv31R5C0MZ2x6E9LSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.367 [XNIO-1 task-1] vM8DEv31R5C0MZ2x6E9LSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f434b664-5833-49dd-865e-39736baf5976 +08:11:39.367 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f434b664-5833-49dd-865e-39736baf5976 +08:11:39.378 [XNIO-1 task-1] gFPfvKrzS_aKkUwgE7s0dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.378 [XNIO-1 task-1] gFPfvKrzS_aKkUwgE7s0dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.378 [XNIO-1 task-1] gFPfvKrzS_aKkUwgE7s0dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.386 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:25db4a2a-d750-4272-804b-6a98acb8fa4b +08:11:39.393 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.393 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.394 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.394 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.394 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.394 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.394 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.394 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.394 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.395 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.395 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.395 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"114a690d-4398-416c-bfd4-2d084af1","clientDesc":"1c2d9964-2b7d-4064-a5da-98f21db56125","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.395 [XNIO-1 task-1] mxvP3eIlTc2k_GmfmVvScQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.396 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9a1f751 +08:11:39.401 [XNIO-1 task-1] nkCahOMkRtOoxqQoxAN5zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.401 [XNIO-1 task-1] nkCahOMkRtOoxqQoxAN5zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.401 [XNIO-1 task-1] nkCahOMkRtOoxqQoxAN5zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.402 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3facc83e +08:11:39.411 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3facc83e +08:11:39.421 [XNIO-1 task-1] UN6HZUO3SjKEhHJ2t7kE7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.421 [XNIO-1 task-1] UN6HZUO3SjKEhHJ2t7kE7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.421 [XNIO-1 task-1] UN6HZUO3SjKEhHJ2t7kE7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.421 [XNIO-1 task-1] UN6HZUO3SjKEhHJ2t7kE7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.441 [XNIO-1 task-1] Btw84KBeSQCAgNmUDnsTIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/15ac5bae-17ea-418e-bf41-19c208eac243, base path is set to: null +08:11:39.441 [XNIO-1 task-1] Btw84KBeSQCAgNmUDnsTIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.441 [XNIO-1 task-1] Btw84KBeSQCAgNmUDnsTIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.441 [XNIO-1 task-1] Btw84KBeSQCAgNmUDnsTIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/15ac5bae-17ea-418e-bf41-19c208eac243, base path is set to: null +08:11:39.441 [XNIO-1 task-1] Btw84KBeSQCAgNmUDnsTIA DEBUG com.networknt.schema.TypeValidator debug - validate( "15ac5bae-17ea-418e-bf41-19c208eac243", "15ac5bae-17ea-418e-bf41-19c208eac243", clientId) +08:11:39.443 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6a7f18a0-f6d8-42a4-99b5-5fa446ad1611 +08:11:39.444 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.444 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.444 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.444 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.444 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "dabed9d0-19a9-4b88-9c46-0bf3923c5027", {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6e38f00-3fe5-46fa-bb75-bb348452", {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c6e38f00-3fe5-46fa-bb75-bb348452","clientDesc":"dabed9d0-19a9-4b88-9c46-0bf3923c5027","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.445 [XNIO-1 task-1] 87f838YuQ52Pf12yCsPWHg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.451 [XNIO-1 task-1] _v_TUGWXTTWfGrhTFst1fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e806a8f9-5279-4524-ad24-d42b8952a27e, base path is set to: null +08:11:39.454 [XNIO-1 task-1] _v_TUGWXTTWfGrhTFst1fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.454 [XNIO-1 task-1] _v_TUGWXTTWfGrhTFst1fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.454 [XNIO-1 task-1] _v_TUGWXTTWfGrhTFst1fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e806a8f9-5279-4524-ad24-d42b8952a27e, base path is set to: null +08:11:39.454 [XNIO-1 task-1] _v_TUGWXTTWfGrhTFst1fw DEBUG com.networknt.schema.TypeValidator debug - validate( "e806a8f9-5279-4524-ad24-d42b8952a27e", "e806a8f9-5279-4524-ad24-d42b8952a27e", clientId) +08:11:39.462 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6a7f18a0-f6d8-42a4-99b5-5fa446ad1611 +08:11:39.462 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9a1f751 +08:11:39.463 [XNIO-1 task-1] rj6oH2YwSBqgajb0cDgpqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.463 [XNIO-1 task-1] rj6oH2YwSBqgajb0cDgpqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.463 [XNIO-1 task-1] rj6oH2YwSBqgajb0cDgpqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.464 [XNIO-1 task-1] rj6oH2YwSBqgajb0cDgpqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.478 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.478 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.478 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6abd0de3-f167-4a38-88cb-ddd5af6bcba0", {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9264cee-7ff2-46c4-a619-9da74500", {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f9264cee-7ff2-46c4-a619-9da74500","clientDesc":"6abd0de3-f167-4a38-88cb-ddd5af6bcba0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.479 [XNIO-1 task-1] r3SR3zxuQV61T7dEvHvajQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.483 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:73699572 +08:11:39.487 [XNIO-1 task-1] sC1yvzTIS_G090XKfPhf4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.489 [XNIO-1 task-1] sC1yvzTIS_G090XKfPhf4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.490 [XNIO-1 task-1] sC1yvzTIS_G090XKfPhf4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.490 [XNIO-1 task-1] sC1yvzTIS_G090XKfPhf4g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.493 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9a1f751 +08:11:39.497 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3facc83e +08:11:39.502 [XNIO-1 task-1] VuAU8klqQQ2WnIp_39sNvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.502 [XNIO-1 task-1] VuAU8klqQQ2WnIp_39sNvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.502 [XNIO-1 task-1] VuAU8klqQQ2WnIp_39sNvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.518 [XNIO-1 task-1] GPLw2OskSy6ourTASwO0tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d5a0fa86-779c-480f-880f-2b8e03d21875, base path is set to: null +08:11:39.518 [XNIO-1 task-1] GPLw2OskSy6ourTASwO0tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.519 [XNIO-1 task-1] GPLw2OskSy6ourTASwO0tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.519 [XNIO-1 task-1] GPLw2OskSy6ourTASwO0tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d5a0fa86-779c-480f-880f-2b8e03d21875, base path is set to: null +08:11:39.519 [XNIO-1 task-1] GPLw2OskSy6ourTASwO0tA DEBUG com.networknt.schema.TypeValidator debug - validate( "d5a0fa86-779c-480f-880f-2b8e03d21875", "d5a0fa86-779c-480f-880f-2b8e03d21875", clientId) +08:11:39.529 [XNIO-1 task-1] Xl9oDshISNaTh6gAJtHyKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4fd31a65-64ec-49fb-b485-aa43cfa883e0 +08:11:39.529 [XNIO-1 task-1] Xl9oDshISNaTh6gAJtHyKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.529 [XNIO-1 task-1] Xl9oDshISNaTh6gAJtHyKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.529 [XNIO-1 task-1] Xl9oDshISNaTh6gAJtHyKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4fd31a65-64ec-49fb-b485-aa43cfa883e0 +08:11:39.531 [XNIO-1 task-1] 7kieTr-IRQOi7QrkI8WKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/abadc2a4-6896-4102-a84b-aeefca0d63e1, base path is set to: null +08:11:39.531 [XNIO-1 task-1] 7kieTr-IRQOi7QrkI8WKNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.531 [XNIO-1 task-1] 7kieTr-IRQOi7QrkI8WKNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.531 [XNIO-1 task-1] 7kieTr-IRQOi7QrkI8WKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/abadc2a4-6896-4102-a84b-aeefca0d63e1, base path is set to: null +08:11:39.532 [XNIO-1 task-1] 7kieTr-IRQOi7QrkI8WKNA DEBUG com.networknt.schema.TypeValidator debug - validate( "abadc2a4-6896-4102-a84b-aeefca0d63e1", "abadc2a4-6896-4102-a84b-aeefca0d63e1", clientId) +08:11:39.539 [XNIO-1 task-1] ubzGH0ZdQfunnObixzrnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b846eb8e-e3b9-4f58-8054-35fcc08c6adb +08:11:39.539 [XNIO-1 task-1] ubzGH0ZdQfunnObixzrnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.539 [XNIO-1 task-1] ubzGH0ZdQfunnObixzrnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.539 [XNIO-1 task-1] ubzGH0ZdQfunnObixzrnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b846eb8e-e3b9-4f58-8054-35fcc08c6adb +08:11:39.539 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b846eb8e-e3b9-4f58-8054-35fcc08c6adb +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +08:11:39.546 [XNIO-1 task-1] ubzGH0ZdQfunnObixzrnvA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/b846eb8e-e3b9-4f58-8054-35fcc08c6adb} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.551 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.551 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:39.552 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ccfb77-310c-4ff9-9d2f-c734de9b","clientDesc":"f8888f37-d814-42fb-9b3d-e8a88a5b3d48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.553 [XNIO-1 task-1] 4FQBAxeHQIi2A89fs_FA3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.558 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:91d4e0eb-a088-47eb-b8e6-1179985eeaa1 +08:11:39.560 [XNIO-1 task-1] 69KL6KoXQsKyzZ1YeRx8Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.561 [XNIO-1 task-1] 69KL6KoXQsKyzZ1YeRx8Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.561 [XNIO-1 task-1] 69KL6KoXQsKyzZ1YeRx8Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:39.565 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b8554cad-c266-4111-872a-f5f34401e62b +08:11:39.576 [XNIO-1 task-1] WMzIbBCXR8WyXid1kNL4lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584, base path is set to: null +08:11:39.576 [XNIO-1 task-1] WMzIbBCXR8WyXid1kNL4lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.576 [XNIO-1 task-1] WMzIbBCXR8WyXid1kNL4lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.576 [XNIO-1 task-1] WMzIbBCXR8WyXid1kNL4lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584, base path is set to: null +08:11:39.576 [XNIO-1 task-1] WMzIbBCXR8WyXid1kNL4lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cfb8ac78-8574-43e2-a89b-c2e1b4bca584", "cfb8ac78-8574-43e2-a89b-c2e1b4bca584", clientId) +08:11:39.578 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9a1f751 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:39.582 [XNIO-1 task-1] WMzIbBCXR8WyXid1kNL4lQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/cfb8ac78-8574-43e2-a89b-c2e1b4bca584} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:39.588 [XNIO-1 task-1] rx0xZA5SQX2uwoILeyKs0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5, base path is set to: null +08:11:39.588 [XNIO-1 task-1] rx0xZA5SQX2uwoILeyKs0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:39.588 [XNIO-1 task-1] rx0xZA5SQX2uwoILeyKs0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:39.588 [XNIO-1 task-1] rx0xZA5SQX2uwoILeyKs0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5, base path is set to: null +08:11:39.588 [XNIO-1 task-1] rx0xZA5SQX2uwoILeyKs0w DEBUG com.networknt.schema.TypeValidator debug - validate( "4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5", "4bc6dc3f-f950-4bbd-9634-bb1ebd4c40e5", clientId) +08:11:39.595 [XNIO-1 task-1] e0xXy9G2TSqH8Mv0FlMCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6be4fc5a-dfd4-49ca-89e6-2132319fbe82 +08:11:39.595 [XNIO-1 task-1] e0xXy9G2TSqH8Mv0FlMCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.595 [XNIO-1 task-1] e0xXy9G2TSqH8Mv0FlMCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:39.595 [XNIO-1 task-1] e0xXy9G2TSqH8Mv0FlMCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6be4fc5a-dfd4-49ca-89e6-2132319fbe82 +08:11:39.601 [XNIO-1 task-1] e0xXy9G2TSqH8Mv0FlMCTw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:39.602 [XNIO-1 task-1] e0xXy9G2TSqH8Mv0FlMCTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:39.605 [XNIO-1 task-1] PFrnLrWpRkKrqUYIA5NORg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.605 [XNIO-1 task-1] PFrnLrWpRkKrqUYIA5NORg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.605 [XNIO-1 task-1] PFrnLrWpRkKrqUYIA5NORg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:39.606 [XNIO-1 task-1] PFrnLrWpRkKrqUYIA5NORg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.610 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9a1f751 +08:11:44.037 [XNIO-1 task-1] lb7ZISCTQy-zI4t4zp8mWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.037 [XNIO-1 task-1] lb7ZISCTQy-zI4t4zp8mWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.037 [XNIO-1 task-1] lb7ZISCTQy-zI4t4zp8mWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.084 [XNIO-1 task-1] 9r-TexkyR3W__L_R0SWkBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/231e8f3a-1a0c-4d60-92de-e7f9572c8a0f +08:11:44.084 [XNIO-1 task-1] 9r-TexkyR3W__L_R0SWkBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.084 [XNIO-1 task-1] 9r-TexkyR3W__L_R0SWkBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.084 [XNIO-1 task-1] 9r-TexkyR3W__L_R0SWkBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/231e8f3a-1a0c-4d60-92de-e7f9572c8a0f +08:11:44.087 [XNIO-1 task-1] ar6Rkl0LTnq8Zg1WFpx9gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.087 [XNIO-1 task-1] ar6Rkl0LTnq8Zg1WFpx9gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.087 [XNIO-1 task-1] ar6Rkl0LTnq8Zg1WFpx9gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.100 [XNIO-1 task-1] ONxRGe5nTPeO3WvIGOSUpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.100 [XNIO-1 task-1] ONxRGe5nTPeO3WvIGOSUpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.100 [XNIO-1 task-1] ONxRGe5nTPeO3WvIGOSUpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.113 [XNIO-1 task-1] I2Dv2dvySNaToC2ygblHLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/231e8f3a-1a0c-4d60-92de-e7f9572c8a0f, base path is set to: null +08:11:44.113 [XNIO-1 task-1] I2Dv2dvySNaToC2ygblHLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.113 [XNIO-1 task-1] I2Dv2dvySNaToC2ygblHLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.113 [XNIO-1 task-1] I2Dv2dvySNaToC2ygblHLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/231e8f3a-1a0c-4d60-92de-e7f9572c8a0f, base path is set to: null +08:11:44.114 [XNIO-1 task-1] I2Dv2dvySNaToC2ygblHLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "231e8f3a-1a0c-4d60-92de-e7f9572c8a0f", "231e8f3a-1a0c-4d60-92de-e7f9572c8a0f", clientId) +08:11:44.122 [XNIO-1 task-1] DkIk6fGzTviGIqzRcGq3RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3f824d9-c242-4233-afc9-f8e036b4febd +08:11:44.122 [XNIO-1 task-1] DkIk6fGzTviGIqzRcGq3RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.122 [XNIO-1 task-1] DkIk6fGzTviGIqzRcGq3RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.122 [XNIO-1 task-1] DkIk6fGzTviGIqzRcGq3RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3f824d9-c242-4233-afc9-f8e036b4febd +08:11:44.131 [XNIO-1 task-1] 68cQf5vFT5yiyHhLmJDpTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6b7492e5-6a4c-47c2-bda0-170793dde795, base path is set to: null +08:11:44.131 [XNIO-1 task-1] 68cQf5vFT5yiyHhLmJDpTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.131 [XNIO-1 task-1] 68cQf5vFT5yiyHhLmJDpTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.131 [XNIO-1 task-1] 68cQf5vFT5yiyHhLmJDpTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6b7492e5-6a4c-47c2-bda0-170793dde795, base path is set to: null +08:11:44.131 [XNIO-1 task-1] 68cQf5vFT5yiyHhLmJDpTg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b7492e5-6a4c-47c2-bda0-170793dde795", "6b7492e5-6a4c-47c2-bda0-170793dde795", clientId) +08:11:44.134 [XNIO-1 task-1] sgqzk2z1RMqy0hcW_o8YrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6b7492e5-6a4c-47c2-bda0-170793dde795 +08:11:44.134 [XNIO-1 task-1] sgqzk2z1RMqy0hcW_o8YrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.134 [XNIO-1 task-1] sgqzk2z1RMqy0hcW_o8YrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.134 [XNIO-1 task-1] sgqzk2z1RMqy0hcW_o8YrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6b7492e5-6a4c-47c2-bda0-170793dde795 +08:11:44.140 [XNIO-1 task-1] HNAfIZVCS8aez5LSNRdsSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.140 [XNIO-1 task-1] HNAfIZVCS8aez5LSNRdsSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.140 [XNIO-1 task-1] HNAfIZVCS8aez5LSNRdsSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.140 [XNIO-1 task-1] HNAfIZVCS8aez5LSNRdsSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.146 [XNIO-1 task-1] 0bnOr1LtTj6_Ws8Tk_yUpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.146 [XNIO-1 task-1] 0bnOr1LtTj6_Ws8Tk_yUpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.146 [XNIO-1 task-1] 0bnOr1LtTj6_Ws8Tk_yUpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.147 [XNIO-1 task-1] 0bnOr1LtTj6_Ws8Tk_yUpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.152 [XNIO-1 task-1] xncJuvZoR9uwTMJFdAtTlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.152 [XNIO-1 task-1] xncJuvZoR9uwTMJFdAtTlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.152 [XNIO-1 task-1] xncJuvZoR9uwTMJFdAtTlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.157 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:365f2fb1-81eb-4e2c-8475-9302d4997035 +08:11:44.158 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:365f2fb1-81eb-4e2c-8475-9302d4997035 +08:11:44.163 [XNIO-1 task-1] Ka7S4tGETomDDv7de3XuGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/365f2fb1-81eb-4e2c-8475-9302d4997035 +08:11:44.163 [XNIO-1 task-1] Ka7S4tGETomDDv7de3XuGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.163 [XNIO-1 task-1] Ka7S4tGETomDDv7de3XuGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.164 [XNIO-1 task-1] Ka7S4tGETomDDv7de3XuGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/365f2fb1-81eb-4e2c-8475-9302d4997035 +08:11:44.164 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:365f2fb1-81eb-4e2c-8475-9302d4997035 +08:11:44.171 [XNIO-1 task-1] LVgsdUO4Ro2tfRRKttmSKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.171 [XNIO-1 task-1] LVgsdUO4Ro2tfRRKttmSKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.171 [XNIO-1 task-1] LVgsdUO4Ro2tfRRKttmSKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.177 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8c66ce15-0cea-44e7-b824-866a9068f40f +08:11:44.182 [XNIO-1 task-1] KnZ66kRoTEeGdRmMBEkoTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8c66ce15-0cea-44e7-b824-866a9068f40f, base path is set to: null +08:11:44.182 [XNIO-1 task-1] KnZ66kRoTEeGdRmMBEkoTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.182 [XNIO-1 task-1] KnZ66kRoTEeGdRmMBEkoTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.183 [XNIO-1 task-1] KnZ66kRoTEeGdRmMBEkoTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8c66ce15-0cea-44e7-b824-866a9068f40f, base path is set to: null +08:11:44.183 [XNIO-1 task-1] KnZ66kRoTEeGdRmMBEkoTg DEBUG com.networknt.schema.TypeValidator debug - validate( "8c66ce15-0cea-44e7-b824-866a9068f40f", "8c66ce15-0cea-44e7-b824-866a9068f40f", clientId) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG com.networknt.schema.TypeValidator debug - validate( "3233d3e7-c9df-4c95-9e58-0de66d4571a0", {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG com.networknt.schema.TypeValidator debug - validate( "51b1e4eb-ddf2-4e20-a725-82a2cb77", {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.186 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"51b1e4eb-ddf2-4e20-a725-82a2cb77","clientDesc":"3233d3e7-c9df-4c95-9e58-0de66d4571a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.187 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.187 [XNIO-1 task-1] jXA2311fTCqc8OA4d9qANA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.189 [XNIO-1 task-1] ZT7yc47ARV2fqL6pHO2EVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.189 [XNIO-1 task-1] ZT7yc47ARV2fqL6pHO2EVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.189 [XNIO-1 task-1] ZT7yc47ARV2fqL6pHO2EVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.201 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.201 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.201 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.201 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.201 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.201 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.201 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.202 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.202 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.202 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.202 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.202 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95192ff3-30e3-4cff-a819-593c2944","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.202 [XNIO-1 task-1] V3NEWVuBSO270YPpa7P1Rg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:44.204 [XNIO-1 task-1] 6XKYUuiER12qxXIjaL1O1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8c66ce15-0cea-44e7-b824-866a9068f40f +08:11:44.204 [XNIO-1 task-1] 6XKYUuiER12qxXIjaL1O1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.204 [XNIO-1 task-1] 6XKYUuiER12qxXIjaL1O1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.204 [XNIO-1 task-1] 6XKYUuiER12qxXIjaL1O1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8c66ce15-0cea-44e7-b824-866a9068f40f +08:11:44.205 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8c66ce15-0cea-44e7-b824-866a9068f40f +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0b3912a9-42db-42de-9cf9-a9db2ac851b7", {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.212 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a480f520-91e0-40c6-a3ea-efa1c505", {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.213 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.213 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a480f520-91e0-40c6-a3ea-efa1c505","clientDesc":"0b3912a9-42db-42de-9cf9-a9db2ac851b7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.213 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.213 [XNIO-1 task-1] H-d7yIdxQ0ye2I8WgONOSQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.215 [XNIO-1 task-1] LwrYmPL3S6OILgGbZtHklg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.215 [XNIO-1 task-1] LwrYmPL3S6OILgGbZtHklg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.215 [XNIO-1 task-1] LwrYmPL3S6OILgGbZtHklg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.229 [XNIO-1 task-1] 1SDltpb0SpObJqhP-39HdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95, base path is set to: null +08:11:44.229 [XNIO-1 task-1] 1SDltpb0SpObJqhP-39HdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.229 [XNIO-1 task-1] 1SDltpb0SpObJqhP-39HdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.229 [XNIO-1 task-1] 1SDltpb0SpObJqhP-39HdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95, base path is set to: null +08:11:44.229 [XNIO-1 task-1] 1SDltpb0SpObJqhP-39HdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "59078ce0-8313-42de-b20c-b3fdfe6c7f95", "59078ce0-8313-42de-b20c-b3fdfe6c7f95", clientId) +08:11:44.232 [XNIO-1 task-1] FYEXOmceSM6WROJpWYyf4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.232 [XNIO-1 task-1] FYEXOmceSM6WROJpWYyf4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.232 [XNIO-1 task-1] FYEXOmceSM6WROJpWYyf4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.237 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9c077249-b5c3-4105-894d-a7f8fffbaee9 +08:11:44.243 [XNIO-1 task-1] kFRcGdHkTDGboF9sWVgvDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c077249-b5c3-4105-894d-a7f8fffbaee9, base path is set to: null +08:11:44.243 [XNIO-1 task-1] kFRcGdHkTDGboF9sWVgvDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.243 [XNIO-1 task-1] kFRcGdHkTDGboF9sWVgvDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.243 [XNIO-1 task-1] kFRcGdHkTDGboF9sWVgvDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c077249-b5c3-4105-894d-a7f8fffbaee9, base path is set to: null +08:11:44.243 [XNIO-1 task-1] kFRcGdHkTDGboF9sWVgvDA DEBUG com.networknt.schema.TypeValidator debug - validate( "9c077249-b5c3-4105-894d-a7f8fffbaee9", "9c077249-b5c3-4105-894d-a7f8fffbaee9", clientId) +08:11:44.250 [XNIO-1 task-1] SOzhfbvpTp-3U3HFrw8bOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.250 [XNIO-1 task-1] SOzhfbvpTp-3U3HFrw8bOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.250 [XNIO-1 task-1] SOzhfbvpTp-3U3HFrw8bOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.250 [XNIO-1 task-1] SOzhfbvpTp-3U3HFrw8bOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.256 [XNIO-1 task-1] TM_aouRLQqygGVTj0rz_YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/70463ca2-3a42-4fdc-8fc9-b8d39f51f908, base path is set to: null +08:11:44.256 [XNIO-1 task-1] TM_aouRLQqygGVTj0rz_YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.256 [XNIO-1 task-1] TM_aouRLQqygGVTj0rz_YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.257 [XNIO-1 task-1] TM_aouRLQqygGVTj0rz_YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/70463ca2-3a42-4fdc-8fc9-b8d39f51f908, base path is set to: null +08:11:44.257 [XNIO-1 task-1] TM_aouRLQqygGVTj0rz_YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "70463ca2-3a42-4fdc-8fc9-b8d39f51f908", "70463ca2-3a42-4fdc-8fc9-b8d39f51f908", clientId) +08:11:44.263 [XNIO-1 task-1] 7KHGMWYYTKa1BVcFkgN5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95 +08:11:44.263 [XNIO-1 task-1] 7KHGMWYYTKa1BVcFkgN5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.263 [XNIO-1 task-1] 7KHGMWYYTKa1BVcFkgN5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.263 [XNIO-1 task-1] 7KHGMWYYTKa1BVcFkgN5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95 +08:11:44.265 [XNIO-1 task-1] TDf0bCXiR4O5_Pqv450OKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.265 [XNIO-1 task-1] TDf0bCXiR4O5_Pqv450OKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.265 [XNIO-1 task-1] TDf0bCXiR4O5_Pqv450OKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.265 [XNIO-1 task-1] TDf0bCXiR4O5_Pqv450OKw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.271 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.271 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.271 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.271 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.271 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.271 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.272 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.272 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.272 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.272 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.272 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.272 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26611fc1-de7f-43b0-8ae0-c330961e","clientDesc":"ee2182ad-0a60-43a5-a829-1b0acfb7cc69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.273 [XNIO-1 task-1] IGQhtsmeSHmixn4GlaP4ew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:44.274 [XNIO-1 task-1] zyBN5wtvQoyJpHQjuclchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95 +08:11:44.275 [XNIO-1 task-1] zyBN5wtvQoyJpHQjuclchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.275 [XNIO-1 task-1] zyBN5wtvQoyJpHQjuclchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.275 [XNIO-1 task-1] zyBN5wtvQoyJpHQjuclchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95 +08:11:44.276 [XNIO-1 task-1] yGNzVTJBTbGeOxPvNW12sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95, base path is set to: null +08:11:44.277 [XNIO-1 task-1] yGNzVTJBTbGeOxPvNW12sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.277 [XNIO-1 task-1] yGNzVTJBTbGeOxPvNW12sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.277 [XNIO-1 task-1] yGNzVTJBTbGeOxPvNW12sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59078ce0-8313-42de-b20c-b3fdfe6c7f95, base path is set to: null +08:11:44.277 [XNIO-1 task-1] yGNzVTJBTbGeOxPvNW12sg DEBUG com.networknt.schema.TypeValidator debug - validate( "59078ce0-8313-42de-b20c-b3fdfe6c7f95", "59078ce0-8313-42de-b20c-b3fdfe6c7f95", clientId) +08:11:44.283 [XNIO-1 task-1] ljBWDm3_Qb-jYVFNc6a4yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.283 [XNIO-1 task-1] ljBWDm3_Qb-jYVFNc6a4yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.283 [XNIO-1 task-1] ljBWDm3_Qb-jYVFNc6a4yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.283 [XNIO-1 task-1] ljBWDm3_Qb-jYVFNc6a4yA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.288 [XNIO-1 task-1] 684BDiPpSmuIzIakPcjaaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.288 [XNIO-1 task-1] 684BDiPpSmuIzIakPcjaaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.288 [XNIO-1 task-1] 684BDiPpSmuIzIakPcjaaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.304 [XNIO-1 task-1] i-k6NEijRam20MVLMuOiVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.304 [XNIO-1 task-1] i-k6NEijRam20MVLMuOiVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.304 [XNIO-1 task-1] i-k6NEijRam20MVLMuOiVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.315 [XNIO-1 task-1] 0Z93WUf3SU-6HaXnWS9hOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.316 [XNIO-1 task-1] 0Z93WUf3SU-6HaXnWS9hOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.316 [XNIO-1 task-1] 0Z93WUf3SU-6HaXnWS9hOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.328 [XNIO-1 task-1] 5y-78vtqRhiSDDjZXezf2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.328 [XNIO-1 task-1] 5y-78vtqRhiSDDjZXezf2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.328 [XNIO-1 task-1] 5y-78vtqRhiSDDjZXezf2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.328 [XNIO-1 task-1] 5y-78vtqRhiSDDjZXezf2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.336 [XNIO-1 task-1] aTzYEdlkSxe_4VMgrJkd2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/825b3510-2c8b-4283-9778-3223e67c3398 +08:11:44.337 [XNIO-1 task-1] aTzYEdlkSxe_4VMgrJkd2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.337 [XNIO-1 task-1] aTzYEdlkSxe_4VMgrJkd2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.337 [XNIO-1 task-1] aTzYEdlkSxe_4VMgrJkd2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/825b3510-2c8b-4283-9778-3223e67c3398 +08:11:44.343 [XNIO-1 task-1] SDGmoOqpSb2CcGmMZgb9Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.343 [XNIO-1 task-1] SDGmoOqpSb2CcGmMZgb9Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.343 [XNIO-1 task-1] SDGmoOqpSb2CcGmMZgb9Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.355 [XNIO-1 task-1] ATN6WAt9Rruh_jqEW_Hy_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a397407-2184-417d-8687-c6e8079a513b, base path is set to: null +08:11:44.355 [XNIO-1 task-1] ATN6WAt9Rruh_jqEW_Hy_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.355 [XNIO-1 task-1] ATN6WAt9Rruh_jqEW_Hy_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.355 [XNIO-1 task-1] ATN6WAt9Rruh_jqEW_Hy_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a397407-2184-417d-8687-c6e8079a513b, base path is set to: null +08:11:44.356 [XNIO-1 task-1] ATN6WAt9Rruh_jqEW_Hy_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2a397407-2184-417d-8687-c6e8079a513b", "2a397407-2184-417d-8687-c6e8079a513b", clientId) +08:11:44.362 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.362 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.362 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.362 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.362 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.362 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG com.networknt.schema.TypeValidator debug - validate( "a87493a8-e390-4d9f-bf5b-1d23872fceba", {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.362 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.363 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.363 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG com.networknt.schema.TypeValidator debug - validate( "8c0eebb8-d168-4be1-962b-c3684012", {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.363 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.363 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8c0eebb8-d168-4be1-962b-c3684012","clientDesc":"a87493a8-e390-4d9f-bf5b-1d23872fceba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.363 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.363 [XNIO-1 task-1] 3hUCMfDpRyyj8JlisO1dew DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.365 [XNIO-1 task-1] RtFaEQR3QGK_ToTDwJ4Oag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fea9f8e3-b30e-49b2-b313-004e547fe8f6, base path is set to: null +08:11:44.365 [XNIO-1 task-1] RtFaEQR3QGK_ToTDwJ4Oag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.365 [XNIO-1 task-1] RtFaEQR3QGK_ToTDwJ4Oag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.365 [XNIO-1 task-1] RtFaEQR3QGK_ToTDwJ4Oag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fea9f8e3-b30e-49b2-b313-004e547fe8f6, base path is set to: null +08:11:44.365 [XNIO-1 task-1] RtFaEQR3QGK_ToTDwJ4Oag DEBUG com.networknt.schema.TypeValidator debug - validate( "fea9f8e3-b30e-49b2-b313-004e547fe8f6", "fea9f8e3-b30e-49b2-b313-004e547fe8f6", clientId) +08:11:44.368 [XNIO-1 task-1] cqy_aABISHOyiJGAiJIi9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.368 [XNIO-1 task-1] cqy_aABISHOyiJGAiJIi9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.368 [XNIO-1 task-1] cqy_aABISHOyiJGAiJIi9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.381 [XNIO-1 task-1] DtqhSQVyTJOZpxYrg1H0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/45a5473a-928e-4459-bb49-f3618403e28b +08:11:44.381 [XNIO-1 task-1] DtqhSQVyTJOZpxYrg1H0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.381 [XNIO-1 task-1] DtqhSQVyTJOZpxYrg1H0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.381 [XNIO-1 task-1] DtqhSQVyTJOZpxYrg1H0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/45a5473a-928e-4459-bb49-f3618403e28b +08:11:44.387 [XNIO-1 task-1] hJ7qXb45QcGEa3NX-MALfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.387 [XNIO-1 task-1] hJ7qXb45QcGEa3NX-MALfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.387 [XNIO-1 task-1] hJ7qXb45QcGEa3NX-MALfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.398 [XNIO-1 task-1] 32tTuEZMRRiB3Sw8IzQneQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.398 [XNIO-1 task-1] 32tTuEZMRRiB3Sw8IzQneQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.398 [XNIO-1 task-1] 32tTuEZMRRiB3Sw8IzQneQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.399 [XNIO-1 task-1] 32tTuEZMRRiB3Sw8IzQneQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.404 [XNIO-1 task-1] CgY_4OaaR3yEXh93IASCsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.405 [XNIO-1 task-1] CgY_4OaaR3yEXh93IASCsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.405 [XNIO-1 task-1] CgY_4OaaR3yEXh93IASCsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.405 [XNIO-1 task-1] CgY_4OaaR3yEXh93IASCsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.411 [XNIO-1 task-1] dp5GWG9sT5KxO0MUu1S4Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fea9f8e3-b30e-49b2-b313-004e547fe8f6, base path is set to: null +08:11:44.411 [XNIO-1 task-1] dp5GWG9sT5KxO0MUu1S4Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.412 [XNIO-1 task-1] dp5GWG9sT5KxO0MUu1S4Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.412 [XNIO-1 task-1] dp5GWG9sT5KxO0MUu1S4Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fea9f8e3-b30e-49b2-b313-004e547fe8f6, base path is set to: null +08:11:44.412 [XNIO-1 task-1] dp5GWG9sT5KxO0MUu1S4Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "fea9f8e3-b30e-49b2-b313-004e547fe8f6", "fea9f8e3-b30e-49b2-b313-004e547fe8f6", clientId) +08:11:44.418 [XNIO-1 task-1] R9PwZ2YNRVS7snABOaapGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.418 [XNIO-1 task-1] R9PwZ2YNRVS7snABOaapGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.418 [XNIO-1 task-1] R9PwZ2YNRVS7snABOaapGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.418 [XNIO-1 task-1] R9PwZ2YNRVS7snABOaapGg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.424 [XNIO-1 task-1] _io0tKsRSNyTTj3amOtzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.424 [XNIO-1 task-1] _io0tKsRSNyTTj3amOtzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.424 [XNIO-1 task-1] _io0tKsRSNyTTj3amOtzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.437 [XNIO-1 task-1] tbWssTzYS3CdzuBUIdUQgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7707dc9e-5ba3-49af-8b7a-cf9a3e28f34c +08:11:44.437 [XNIO-1 task-1] tbWssTzYS3CdzuBUIdUQgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.437 [XNIO-1 task-1] tbWssTzYS3CdzuBUIdUQgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.437 [XNIO-1 task-1] tbWssTzYS3CdzuBUIdUQgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7707dc9e-5ba3-49af-8b7a-cf9a3e28f34c +08:11:44.439 [XNIO-1 task-1] biV6VsCnQAycwLtGXpkIQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.439 [XNIO-1 task-1] biV6VsCnQAycwLtGXpkIQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.440 [XNIO-1 task-1] biV6VsCnQAycwLtGXpkIQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.440 [XNIO-1 task-1] biV6VsCnQAycwLtGXpkIQA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.445 [XNIO-1 task-1] -C74qibgQ3aYWpGd0Og_ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.445 [XNIO-1 task-1] -C74qibgQ3aYWpGd0Og_ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.445 [XNIO-1 task-1] -C74qibgQ3aYWpGd0Og_ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.457 [XNIO-1 task-1] d3AOjFqHQOK9BKmOFlpU9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7707dc9e-5ba3-49af-8b7a-cf9a3e28f34c, base path is set to: null +08:11:44.457 [XNIO-1 task-1] d3AOjFqHQOK9BKmOFlpU9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.457 [XNIO-1 task-1] d3AOjFqHQOK9BKmOFlpU9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.457 [XNIO-1 task-1] d3AOjFqHQOK9BKmOFlpU9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7707dc9e-5ba3-49af-8b7a-cf9a3e28f34c, base path is set to: null +08:11:44.457 [XNIO-1 task-1] d3AOjFqHQOK9BKmOFlpU9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7707dc9e-5ba3-49af-8b7a-cf9a3e28f34c", "7707dc9e-5ba3-49af-8b7a-cf9a3e28f34c", clientId) +08:11:44.464 [XNIO-1 task-1] ZWJTtVb-QTqIPJArr1vAow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.464 [XNIO-1 task-1] ZWJTtVb-QTqIPJArr1vAow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.464 [XNIO-1 task-1] ZWJTtVb-QTqIPJArr1vAow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.464 [XNIO-1 task-1] ZWJTtVb-QTqIPJArr1vAow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.469 [XNIO-1 task-1] Iwl_kdgmRZSHhme867sFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.469 [XNIO-1 task-1] Iwl_kdgmRZSHhme867sFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.470 [XNIO-1 task-1] Iwl_kdgmRZSHhme867sFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.470 [XNIO-1 task-1] Iwl_kdgmRZSHhme867sFYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.475 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.475 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.475 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.475 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.475 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.475 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb1721e2-26fb-4a90-bcfc-4b022a6fce92", {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.475 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.476 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.476 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG com.networknt.schema.TypeValidator debug - validate( "9d97f521-2299-47c5-a90d-24c81309", {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.476 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.476 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9d97f521-2299-47c5-a90d-24c81309","clientDesc":"bb1721e2-26fb-4a90-bcfc-4b022a6fce92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.476 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.476 [XNIO-1 task-1] w1h3PIpgTdax9nZGoHKMHg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.478 [XNIO-1 task-1] g0pbAeeBT-OdHF9_gNEATQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.478 [XNIO-1 task-1] g0pbAeeBT-OdHF9_gNEATQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.478 [XNIO-1 task-1] g0pbAeeBT-OdHF9_gNEATQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.478 [XNIO-1 task-1] g0pbAeeBT-OdHF9_gNEATQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.483 [XNIO-1 task-1] Xfqg5Yq0SaOgllhFVKXZwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c7023c98-9f0a-43ad-9189-eae07c21807a, base path is set to: null +08:11:44.484 [XNIO-1 task-1] Xfqg5Yq0SaOgllhFVKXZwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.484 [XNIO-1 task-1] Xfqg5Yq0SaOgllhFVKXZwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.484 [XNIO-1 task-1] Xfqg5Yq0SaOgllhFVKXZwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c7023c98-9f0a-43ad-9189-eae07c21807a, base path is set to: null +08:11:44.484 [XNIO-1 task-1] Xfqg5Yq0SaOgllhFVKXZwA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7023c98-9f0a-43ad-9189-eae07c21807a", "c7023c98-9f0a-43ad-9189-eae07c21807a", clientId) +08:11:44.489 [XNIO-1 task-1] hNwYmtr2QYGn_TGM6gtc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c +08:11:44.489 [XNIO-1 task-1] hNwYmtr2QYGn_TGM6gtc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.489 [XNIO-1 task-1] hNwYmtr2QYGn_TGM6gtc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.489 [XNIO-1 task-1] hNwYmtr2QYGn_TGM6gtc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c +08:11:44.491 [XNIO-1 task-1] d7FcUx4DQAmpOWSuv9dD5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c, base path is set to: null +08:11:44.491 [XNIO-1 task-1] d7FcUx4DQAmpOWSuv9dD5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.491 [XNIO-1 task-1] d7FcUx4DQAmpOWSuv9dD5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.492 [XNIO-1 task-1] d7FcUx4DQAmpOWSuv9dD5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c, base path is set to: null +08:11:44.492 [XNIO-1 task-1] d7FcUx4DQAmpOWSuv9dD5w DEBUG com.networknt.schema.TypeValidator debug - validate( "5b98ab49-2e35-459d-b07e-40c653f8ef5c", "5b98ab49-2e35-459d-b07e-40c653f8ef5c", clientId) +08:11:44.493 [XNIO-1 task-1] _pst8c1MQbSvKPR7fD_p0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.493 [XNIO-1 task-1] _pst8c1MQbSvKPR7fD_p0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.493 [XNIO-1 task-1] _pst8c1MQbSvKPR7fD_p0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.494 [XNIO-1 task-1] _pst8c1MQbSvKPR7fD_p0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.498 [XNIO-1 task-1] HFVoT83FTRid_P0L3ZsYPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c +08:11:44.498 [XNIO-1 task-1] HFVoT83FTRid_P0L3ZsYPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.498 [XNIO-1 task-1] HFVoT83FTRid_P0L3ZsYPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.499 [XNIO-1 task-1] HFVoT83FTRid_P0L3ZsYPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c +08:11:44.500 [XNIO-1 task-1] brYOk5vqTSecdBVZUdPWSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/464665bd-288f-480f-8f2f-5ea1f0092094, base path is set to: null +08:11:44.500 [XNIO-1 task-1] brYOk5vqTSecdBVZUdPWSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.500 [XNIO-1 task-1] brYOk5vqTSecdBVZUdPWSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.500 [XNIO-1 task-1] brYOk5vqTSecdBVZUdPWSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/464665bd-288f-480f-8f2f-5ea1f0092094, base path is set to: null +08:11:44.500 [XNIO-1 task-1] brYOk5vqTSecdBVZUdPWSg DEBUG com.networknt.schema.TypeValidator debug - validate( "464665bd-288f-480f-8f2f-5ea1f0092094", "464665bd-288f-480f-8f2f-5ea1f0092094", clientId) +08:11:44.507 [XNIO-1 task-1] SLXzM8nzQCSyNCHnk6GG2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c +08:11:44.507 [XNIO-1 task-1] SLXzM8nzQCSyNCHnk6GG2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.507 [XNIO-1 task-1] SLXzM8nzQCSyNCHnk6GG2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.507 [XNIO-1 task-1] SLXzM8nzQCSyNCHnk6GG2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b98ab49-2e35-459d-b07e-40c653f8ef5c +08:11:44.513 [XNIO-1 task-1] OAMwdWpiT8eo4K2Y9b40Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.513 [XNIO-1 task-1] OAMwdWpiT8eo4K2Y9b40Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.514 [XNIO-1 task-1] OAMwdWpiT8eo4K2Y9b40Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.514 [XNIO-1 task-1] OAMwdWpiT8eo4K2Y9b40Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.519 [XNIO-1 task-1] Ourcmrr-TpyhyUvvSjG3_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.519 [XNIO-1 task-1] Ourcmrr-TpyhyUvvSjG3_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.519 [XNIO-1 task-1] Ourcmrr-TpyhyUvvSjG3_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.519 [XNIO-1 task-1] Ourcmrr-TpyhyUvvSjG3_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.524 [XNIO-1 task-1] C9kQ8OoIRt-aq2MAcjVCRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.525 [XNIO-1 task-1] C9kQ8OoIRt-aq2MAcjVCRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.525 [XNIO-1 task-1] C9kQ8OoIRt-aq2MAcjVCRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.525 [XNIO-1 task-1] C9kQ8OoIRt-aq2MAcjVCRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.530 [XNIO-1 task-1] rGqB-C2WQ0OMRP0Dipyfyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.530 [XNIO-1 task-1] rGqB-C2WQ0OMRP0Dipyfyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.531 [XNIO-1 task-1] rGqB-C2WQ0OMRP0Dipyfyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.535 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5d45d306-3a8b-4b9a-baee-e69eac530ab1 +08:11:44.536 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5d45d306-3a8b-4b9a-baee-e69eac530ab1 +08:11:44.542 [XNIO-1 task-1] UF8q7uXlSUaZlTe2sloCnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.542 [XNIO-1 task-1] UF8q7uXlSUaZlTe2sloCnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.542 [XNIO-1 task-1] UF8q7uXlSUaZlTe2sloCnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.547 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d6c2ed8b-de3e-4b03-8c05-38aa24130855 +08:11:44.553 [XNIO-1 task-1] qQ2_2_vMTy2S4otNRVkcoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d6c2ed8b-de3e-4b03-8c05-38aa24130855, base path is set to: null +08:11:44.553 [XNIO-1 task-1] qQ2_2_vMTy2S4otNRVkcoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.553 [XNIO-1 task-1] qQ2_2_vMTy2S4otNRVkcoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.553 [XNIO-1 task-1] qQ2_2_vMTy2S4otNRVkcoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d6c2ed8b-de3e-4b03-8c05-38aa24130855, base path is set to: null +08:11:44.553 [XNIO-1 task-1] qQ2_2_vMTy2S4otNRVkcoA DEBUG com.networknt.schema.TypeValidator debug - validate( "d6c2ed8b-de3e-4b03-8c05-38aa24130855", "d6c2ed8b-de3e-4b03-8c05-38aa24130855", clientId) +08:11:44.555 [XNIO-1 task-1] MspFc4nVTbSJ5rMxqQcHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.555 [XNIO-1 task-1] MspFc4nVTbSJ5rMxqQcHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.555 [XNIO-1 task-1] MspFc4nVTbSJ5rMxqQcHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.555 [XNIO-1 task-1] MspFc4nVTbSJ5rMxqQcHFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.561 [XNIO-1 task-1] zdNY-D0URmC5Vd67BTohNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.561 [XNIO-1 task-1] zdNY-D0URmC5Vd67BTohNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.561 [XNIO-1 task-1] zdNY-D0URmC5Vd67BTohNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.573 [XNIO-1 task-1] MFzWk-3lRdyRjfuzqFD9kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6c2ed8b-de3e-4b03-8c05-38aa24130855 +08:11:44.573 [XNIO-1 task-1] MFzWk-3lRdyRjfuzqFD9kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.573 [XNIO-1 task-1] MFzWk-3lRdyRjfuzqFD9kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.573 [XNIO-1 task-1] MFzWk-3lRdyRjfuzqFD9kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6c2ed8b-de3e-4b03-8c05-38aa24130855 +08:11:44.573 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d6c2ed8b-de3e-4b03-8c05-38aa24130855 +08:11:44.580 [XNIO-1 task-1] sLf_Ek5vQVOVwrsI5dI9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.580 [XNIO-1 task-1] sLf_Ek5vQVOVwrsI5dI9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.580 [XNIO-1 task-1] sLf_Ek5vQVOVwrsI5dI9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.593 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.593 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.593 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.593 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.593 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.593 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG com.networknt.schema.TypeValidator debug - validate( "ade9e4b1-91fb-4960-b25d-654521cdf722", {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.594 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.594 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.594 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG com.networknt.schema.TypeValidator debug - validate( "c9654a0b-c2bf-46de-9748-e6f72bda", {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.594 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.594 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c9654a0b-c2bf-46de-9748-e6f72bda","clientDesc":"ade9e4b1-91fb-4960-b25d-654521cdf722","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.594 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.594 [XNIO-1 task-1] pHIC_pBnRMy7uLKSX9-UQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.596 [XNIO-1 task-1] 6m2p2cmDRBynX0WUIsdVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.596 [XNIO-1 task-1] 6m2p2cmDRBynX0WUIsdVTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.596 [XNIO-1 task-1] 6m2p2cmDRBynX0WUIsdVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.601 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c955ee23-2a9c-450c-be75-a7295ab76fb5 +08:11:44.602 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c955ee23-2a9c-450c-be75-a7295ab76fb5 +08:11:44.607 [XNIO-1 task-1] w3NebLIaTiSfMkRxehBijA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.607 [XNIO-1 task-1] w3NebLIaTiSfMkRxehBijA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.607 [XNIO-1 task-1] w3NebLIaTiSfMkRxehBijA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.607 [XNIO-1 task-1] w3NebLIaTiSfMkRxehBijA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.614 [XNIO-1 task-1] iawySYFhQsKMHNdWiFdo3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d45d306-3a8b-4b9a-baee-e69eac530ab1 +08:11:44.614 [XNIO-1 task-1] iawySYFhQsKMHNdWiFdo3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.614 [XNIO-1 task-1] iawySYFhQsKMHNdWiFdo3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.614 [XNIO-1 task-1] iawySYFhQsKMHNdWiFdo3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d45d306-3a8b-4b9a-baee-e69eac530ab1 +08:11:44.614 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5d45d306-3a8b-4b9a-baee-e69eac530ab1 +08:11:44.621 [XNIO-1 task-1] w6MkXU6WRHqMAXb3fdAffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.621 [XNIO-1 task-1] w6MkXU6WRHqMAXb3fdAffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.621 [XNIO-1 task-1] w6MkXU6WRHqMAXb3fdAffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.645 [XNIO-1 task-1] iyf4mm9jSoigfMJ7NBGQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.645 [XNIO-1 task-1] iyf4mm9jSoigfMJ7NBGQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.645 [XNIO-1 task-1] iyf4mm9jSoigfMJ7NBGQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.645 [XNIO-1 task-1] iyf4mm9jSoigfMJ7NBGQ-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.651 [XNIO-1 task-1] tCbOsmxWTwaQ7WYQAEXgkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a526b85d-51a1-467b-8073-ea7139eee607 +08:11:44.651 [XNIO-1 task-1] tCbOsmxWTwaQ7WYQAEXgkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.651 [XNIO-1 task-1] tCbOsmxWTwaQ7WYQAEXgkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.651 [XNIO-1 task-1] tCbOsmxWTwaQ7WYQAEXgkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a526b85d-51a1-467b-8073-ea7139eee607 +08:11:44.653 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.653 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.653 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.653 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c428de-4bb8-4488-a0e8-b1bdeba3","clientDesc":"1d326d1e-adc6-43f0-aff7-fbde342de18d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.654 [XNIO-1 task-1] OnFmuPLMTzG9a6kkTPXtNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:44.656 [XNIO-1 task-1] 0srY1OlCSsekD-6dhO102Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.656 [XNIO-1 task-1] 0srY1OlCSsekD-6dhO102Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.656 [XNIO-1 task-1] 0srY1OlCSsekD-6dhO102Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.656 [XNIO-1 task-1] 0srY1OlCSsekD-6dhO102Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.662 [XNIO-1 task-1] VGMPFgZBSCWo7g-zn03uOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a526b85d-51a1-467b-8073-ea7139eee607 +08:11:44.662 [XNIO-1 task-1] VGMPFgZBSCWo7g-zn03uOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.662 [XNIO-1 task-1] VGMPFgZBSCWo7g-zn03uOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.662 [XNIO-1 task-1] VGMPFgZBSCWo7g-zn03uOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a526b85d-51a1-467b-8073-ea7139eee607 +08:11:44.668 [XNIO-1 task-1] mSYgmnEqRZ2dOZbG5VQ9hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.668 [XNIO-1 task-1] mSYgmnEqRZ2dOZbG5VQ9hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.668 [XNIO-1 task-1] mSYgmnEqRZ2dOZbG5VQ9hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.679 [XNIO-1 task-1] l1KjqrfYQkCghlHe2Pn3SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e9765483-00a3-4dca-8a2b-38e691070b77, base path is set to: null +08:11:44.679 [XNIO-1 task-1] l1KjqrfYQkCghlHe2Pn3SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.679 [XNIO-1 task-1] l1KjqrfYQkCghlHe2Pn3SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.679 [XNIO-1 task-1] l1KjqrfYQkCghlHe2Pn3SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e9765483-00a3-4dca-8a2b-38e691070b77, base path is set to: null +08:11:44.679 [XNIO-1 task-1] l1KjqrfYQkCghlHe2Pn3SA DEBUG com.networknt.schema.TypeValidator debug - validate( "e9765483-00a3-4dca-8a2b-38e691070b77", "e9765483-00a3-4dca-8a2b-38e691070b77", clientId) +08:11:44.682 [XNIO-1 task-1] iahiJWhTRWqr_kE2zL-Quw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f885bfc0-c543-41e6-abfb-94033bb71b85 +08:11:44.682 [XNIO-1 task-1] iahiJWhTRWqr_kE2zL-Quw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.682 [XNIO-1 task-1] iahiJWhTRWqr_kE2zL-Quw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.682 [XNIO-1 task-1] iahiJWhTRWqr_kE2zL-Quw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f885bfc0-c543-41e6-abfb-94033bb71b85 +08:11:44.689 [XNIO-1 task-1] e3wGINNbTruz4fsac126lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/64a04184-5848-4f1d-8280-25a8c0e4a350, base path is set to: null +08:11:44.689 [XNIO-1 task-1] e3wGINNbTruz4fsac126lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.689 [XNIO-1 task-1] e3wGINNbTruz4fsac126lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.689 [XNIO-1 task-1] e3wGINNbTruz4fsac126lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/64a04184-5848-4f1d-8280-25a8c0e4a350, base path is set to: null +08:11:44.689 [XNIO-1 task-1] e3wGINNbTruz4fsac126lA DEBUG com.networknt.schema.TypeValidator debug - validate( "64a04184-5848-4f1d-8280-25a8c0e4a350", "64a04184-5848-4f1d-8280-25a8c0e4a350", clientId) +08:11:44.695 [XNIO-1 task-1] Iq4FfyNRRCiefVE2H4neyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.695 [XNIO-1 task-1] Iq4FfyNRRCiefVE2H4neyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.695 [XNIO-1 task-1] Iq4FfyNRRCiefVE2H4neyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.706 [XNIO-1 task-1] DTOQl0HtSxOCnGN-V1Y9nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.706 [XNIO-1 task-1] DTOQl0HtSxOCnGN-V1Y9nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.706 [XNIO-1 task-1] DTOQl0HtSxOCnGN-V1Y9nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.707 [XNIO-1 task-1] DTOQl0HtSxOCnGN-V1Y9nA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.712 [XNIO-1 task-1] eTQodm3HQTqjE7yg95FpdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.712 [XNIO-1 task-1] eTQodm3HQTqjE7yg95FpdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.712 [XNIO-1 task-1] eTQodm3HQTqjE7yg95FpdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.712 [XNIO-1 task-1] eTQodm3HQTqjE7yg95FpdA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.718 [XNIO-1 task-1] shf5wBDjTEeqZOvua-buiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.718 [XNIO-1 task-1] shf5wBDjTEeqZOvua-buiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.718 [XNIO-1 task-1] shf5wBDjTEeqZOvua-buiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.718 [XNIO-1 task-1] shf5wBDjTEeqZOvua-buiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.724 [XNIO-1 task-1] 923lppNLRbmafQUZ7S5mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c955ee23-2a9c-450c-be75-a7295ab76fb5 +08:11:44.724 [XNIO-1 task-1] 923lppNLRbmafQUZ7S5mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.724 [XNIO-1 task-1] 923lppNLRbmafQUZ7S5mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.724 [XNIO-1 task-1] 923lppNLRbmafQUZ7S5mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c955ee23-2a9c-450c-be75-a7295ab76fb5 +08:11:44.724 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c955ee23-2a9c-450c-be75-a7295ab76fb5 +08:11:44.730 [XNIO-1 task-1] 4hL_y_5BQzqxG4zQTba_og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5bde517c-5077-4bf3-973a-cef6e68d43c0 +08:11:44.730 [XNIO-1 task-1] 4hL_y_5BQzqxG4zQTba_og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.730 [XNIO-1 task-1] 4hL_y_5BQzqxG4zQTba_og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.730 [XNIO-1 task-1] 4hL_y_5BQzqxG4zQTba_og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5bde517c-5077-4bf3-973a-cef6e68d43c0 +08:11:44.736 [XNIO-1 task-1] s39Cv-8QSNW8Q-qUegra3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e9765483-00a3-4dca-8a2b-38e691070b77, base path is set to: null +08:11:44.736 [XNIO-1 task-1] s39Cv-8QSNW8Q-qUegra3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.736 [XNIO-1 task-1] s39Cv-8QSNW8Q-qUegra3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.736 [XNIO-1 task-1] s39Cv-8QSNW8Q-qUegra3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e9765483-00a3-4dca-8a2b-38e691070b77, base path is set to: null +08:11:44.736 [XNIO-1 task-1] s39Cv-8QSNW8Q-qUegra3w DEBUG com.networknt.schema.TypeValidator debug - validate( "e9765483-00a3-4dca-8a2b-38e691070b77", "e9765483-00a3-4dca-8a2b-38e691070b77", clientId) +08:11:44.738 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.738 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.738 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "24d2942f-a186-49e8-8dca-5a8942f4b306", {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "90d340ce-87be-4510-ab00-f1f2ec93", {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"90d340ce-87be-4510-ab00-f1f2ec93","clientDesc":"24d2942f-a186-49e8-8dca-5a8942f4b306","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.739 [XNIO-1 task-1] KvZHkT-kQ0Gll6BO1nFBEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.741 [XNIO-1 task-1] mDw_zyBMTs2blBPjln3Gsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e9765483-00a3-4dca-8a2b-38e691070b77, base path is set to: null +08:11:44.741 [XNIO-1 task-1] mDw_zyBMTs2blBPjln3Gsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.741 [XNIO-1 task-1] mDw_zyBMTs2blBPjln3Gsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.741 [XNIO-1 task-1] mDw_zyBMTs2blBPjln3Gsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e9765483-00a3-4dca-8a2b-38e691070b77, base path is set to: null +08:11:44.742 [XNIO-1 task-1] mDw_zyBMTs2blBPjln3Gsw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9765483-00a3-4dca-8a2b-38e691070b77", "e9765483-00a3-4dca-8a2b-38e691070b77", clientId) +08:11:44.748 [XNIO-1 task-1] ilExumwbTQalo2M61I6r0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.748 [XNIO-1 task-1] ilExumwbTQalo2M61I6r0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.748 [XNIO-1 task-1] ilExumwbTQalo2M61I6r0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.761 [XNIO-1 task-1] YcZjqxDKT4in-0i2Y8m8iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8fe0a741-0de4-48ec-98c4-e4313b750a4f +08:11:44.761 [XNIO-1 task-1] YcZjqxDKT4in-0i2Y8m8iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.761 [XNIO-1 task-1] YcZjqxDKT4in-0i2Y8m8iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.762 [XNIO-1 task-1] YcZjqxDKT4in-0i2Y8m8iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8fe0a741-0de4-48ec-98c4-e4313b750a4f +08:11:44.768 [XNIO-1 task-1] OCa1453AS0O0UupqDhvggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.769 [XNIO-1 task-1] OCa1453AS0O0UupqDhvggA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.769 [XNIO-1 task-1] OCa1453AS0O0UupqDhvggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.769 [XNIO-1 task-1] OCa1453AS0O0UupqDhvggA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.775 [XNIO-1 task-1] iDgCEkHvRVmWqOavo8AIHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.775 [XNIO-1 task-1] iDgCEkHvRVmWqOavo8AIHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.775 [XNIO-1 task-1] iDgCEkHvRVmWqOavo8AIHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.776 [XNIO-1 task-1] iDgCEkHvRVmWqOavo8AIHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.781 [XNIO-1 task-1] q27GHj78SoWvhFQ8hXbijQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.781 [XNIO-1 task-1] q27GHj78SoWvhFQ8hXbijQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.781 [XNIO-1 task-1] q27GHj78SoWvhFQ8hXbijQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.781 [XNIO-1 task-1] q27GHj78SoWvhFQ8hXbijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.788 [XNIO-1 task-1] zQQDVzq4S_msxThPzOYoyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.788 [XNIO-1 task-1] zQQDVzq4S_msxThPzOYoyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.788 [XNIO-1 task-1] zQQDVzq4S_msxThPzOYoyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.800 [XNIO-1 task-1] HvT1r8sNSp2gg0AJqCmTQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1481b236-7dd6-4e70-b081-1136d6b5eb23, base path is set to: null +08:11:44.800 [XNIO-1 task-1] HvT1r8sNSp2gg0AJqCmTQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.800 [XNIO-1 task-1] HvT1r8sNSp2gg0AJqCmTQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.800 [XNIO-1 task-1] HvT1r8sNSp2gg0AJqCmTQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1481b236-7dd6-4e70-b081-1136d6b5eb23, base path is set to: null +08:11:44.800 [XNIO-1 task-1] HvT1r8sNSp2gg0AJqCmTQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1481b236-7dd6-4e70-b081-1136d6b5eb23", "1481b236-7dd6-4e70-b081-1136d6b5eb23", clientId) +08:11:44.807 [XNIO-1 task-1] d0wAm9oATN6pkK3TfSoqAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.807 [XNIO-1 task-1] d0wAm9oATN6pkK3TfSoqAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.807 [XNIO-1 task-1] d0wAm9oATN6pkK3TfSoqAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.818 [XNIO-1 task-1] VyuXBFpASXCIFpBZ_e_ONw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.819 [XNIO-1 task-1] VyuXBFpASXCIFpBZ_e_ONw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.819 [XNIO-1 task-1] VyuXBFpASXCIFpBZ_e_ONw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.819 [XNIO-1 task-1] VyuXBFpASXCIFpBZ_e_ONw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:44.825 [XNIO-1 task-1] OtRkHcpPRiOMTfLVyJJZhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b27e76e4-0a94-4256-a735-046c6374050b +08:11:44.825 [XNIO-1 task-1] OtRkHcpPRiOMTfLVyJJZhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.825 [XNIO-1 task-1] OtRkHcpPRiOMTfLVyJJZhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.825 [XNIO-1 task-1] OtRkHcpPRiOMTfLVyJJZhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b27e76e4-0a94-4256-a735-046c6374050b +08:11:44.828 [XNIO-1 task-1] waYWaLlyS7GsSNt-Q9VpDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.828 [XNIO-1 task-1] waYWaLlyS7GsSNt-Q9VpDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.828 [XNIO-1 task-1] waYWaLlyS7GsSNt-Q9VpDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.839 [XNIO-1 task-1] I2PvdT6UR3emctQY6Twjfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b27e76e4-0a94-4256-a735-046c6374050b, base path is set to: null +08:11:44.839 [XNIO-1 task-1] I2PvdT6UR3emctQY6Twjfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.839 [XNIO-1 task-1] I2PvdT6UR3emctQY6Twjfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.839 [XNIO-1 task-1] I2PvdT6UR3emctQY6Twjfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b27e76e4-0a94-4256-a735-046c6374050b, base path is set to: null +08:11:44.839 [XNIO-1 task-1] I2PvdT6UR3emctQY6Twjfg DEBUG com.networknt.schema.TypeValidator debug - validate( "b27e76e4-0a94-4256-a735-046c6374050b", "b27e76e4-0a94-4256-a735-046c6374050b", clientId) +08:11:44.844 [XNIO-1 task-1] aXwaC2tzQrGeA7HQ4CMbNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.844 [XNIO-1 task-1] aXwaC2tzQrGeA7HQ4CMbNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.845 [XNIO-1 task-1] aXwaC2tzQrGeA7HQ4CMbNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.857 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.857 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.857 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.857 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.857 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "aa91cedb-730d-4043-b9a9-7e1f8bca4e84", {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "ea8eef9b-6be9-49bc-a2a7-997949e0", {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ea8eef9b-6be9-49bc-a2a7-997949e0","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.858 [XNIO-1 task-1] PNgqxRQiRGyOmCHU5YSQ7g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.860 [XNIO-1 task-1] d-rV0vu3SKaUoXg1YlDmgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b31e5091-3059-45bf-8c8b-feb5c5564305, base path is set to: null +08:11:44.860 [XNIO-1 task-1] d-rV0vu3SKaUoXg1YlDmgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.860 [XNIO-1 task-1] d-rV0vu3SKaUoXg1YlDmgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.861 [XNIO-1 task-1] d-rV0vu3SKaUoXg1YlDmgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b31e5091-3059-45bf-8c8b-feb5c5564305, base path is set to: null +08:11:44.861 [XNIO-1 task-1] d-rV0vu3SKaUoXg1YlDmgA DEBUG com.networknt.schema.TypeValidator debug - validate( "b31e5091-3059-45bf-8c8b-feb5c5564305", "b31e5091-3059-45bf-8c8b-feb5c5564305", clientId) +08:11:44.867 [XNIO-1 task-1] _wjl25rdRcq4c7E-wpO2hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.867 [XNIO-1 task-1] _wjl25rdRcq4c7E-wpO2hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.867 [XNIO-1 task-1] _wjl25rdRcq4c7E-wpO2hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.878 [XNIO-1 task-1] LIRJIteRTAypoBuKhttsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cea36a60-bac1-40e3-b69a-d9ec894a526c +08:11:44.878 [XNIO-1 task-1] LIRJIteRTAypoBuKhttsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.878 [XNIO-1 task-1] LIRJIteRTAypoBuKhttsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.878 [XNIO-1 task-1] LIRJIteRTAypoBuKhttsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cea36a60-bac1-40e3-b69a-d9ec894a526c +08:11:44.881 [XNIO-1 task-1] rF-ASiWRThGIdqykO7Lm6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f8d434f-4c07-4ae4-8640-506afc823ffe, base path is set to: null +08:11:44.881 [XNIO-1 task-1] rF-ASiWRThGIdqykO7Lm6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.881 [XNIO-1 task-1] rF-ASiWRThGIdqykO7Lm6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.881 [XNIO-1 task-1] rF-ASiWRThGIdqykO7Lm6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f8d434f-4c07-4ae4-8640-506afc823ffe, base path is set to: null +08:11:44.881 [XNIO-1 task-1] rF-ASiWRThGIdqykO7Lm6w DEBUG com.networknt.schema.TypeValidator debug - validate( "4f8d434f-4c07-4ae4-8640-506afc823ffe", "4f8d434f-4c07-4ae4-8640-506afc823ffe", clientId) +08:11:44.883 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.883 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.883 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.883 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.883 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.883 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "aa91cedb-730d-4043-b9a9-7e1f8bca4e84", {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.884 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.884 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.884 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "0cb802ae-d721-45a9-9b1e-5fdb1166", {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.884 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.884 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0cb802ae-d721-45a9-9b1e-5fdb1166","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.884 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.884 [XNIO-1 task-1] b2aRIHDBR4WVaIskkf_OXA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.886 [XNIO-1 task-1] lVewl3gBTZm_950S3qtqtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.886 [XNIO-1 task-1] lVewl3gBTZm_950S3qtqtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.886 [XNIO-1 task-1] lVewl3gBTZm_950S3qtqtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.886 [XNIO-1 task-1] lVewl3gBTZm_950S3qtqtw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.891 [XNIO-1 task-1] Gg5j61DZSJ-9OsPRWlYkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.891 [XNIO-1 task-1] Gg5j61DZSJ-9OsPRWlYkjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.892 [XNIO-1 task-1] Gg5j61DZSJ-9OsPRWlYkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.903 [XNIO-1 task-1] d39kGZIIQnadEImBy7mE8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f8d434f-4c07-4ae4-8640-506afc823ffe, base path is set to: null +08:11:44.903 [XNIO-1 task-1] d39kGZIIQnadEImBy7mE8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.903 [XNIO-1 task-1] d39kGZIIQnadEImBy7mE8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.903 [XNIO-1 task-1] d39kGZIIQnadEImBy7mE8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f8d434f-4c07-4ae4-8640-506afc823ffe, base path is set to: null +08:11:44.903 [XNIO-1 task-1] d39kGZIIQnadEImBy7mE8g DEBUG com.networknt.schema.TypeValidator debug - validate( "4f8d434f-4c07-4ae4-8640-506afc823ffe", "4f8d434f-4c07-4ae4-8640-506afc823ffe", clientId) +08:11:44.909 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.909 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.909 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "aa91cedb-730d-4043-b9a9-7e1f8bca4e84", {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "82e76a18-b4f6-4103-bd54-6ae7859d", {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"82e76a18-b4f6-4103-bd54-6ae7859d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.910 [XNIO-1 task-1] YqefoD2NRb2dFe9gqIbP-w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.912 [XNIO-1 task-1] R12dMEZnT4KCfbFOqKo-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.912 [XNIO-1 task-1] R12dMEZnT4KCfbFOqKo-9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.912 [XNIO-1 task-1] R12dMEZnT4KCfbFOqKo-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.913 [XNIO-1 task-1] R12dMEZnT4KCfbFOqKo-9A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.918 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.918 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.918 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b010b3c8-2c5d-409e-ae14-b400067d","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.919 [XNIO-1 task-1] 4ud24_BnRYWDZpF-V0j2QA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:44.921 [XNIO-1 task-1] al52BYiXR3KoNHQL-rhjSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/74cc3361-6a33-4729-b5b0-426595f1e5a0 +08:11:44.921 [XNIO-1 task-1] al52BYiXR3KoNHQL-rhjSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.921 [XNIO-1 task-1] al52BYiXR3KoNHQL-rhjSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.921 [XNIO-1 task-1] al52BYiXR3KoNHQL-rhjSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/74cc3361-6a33-4729-b5b0-426595f1e5a0 +08:11:44.924 [XNIO-1 task-1] HA5sHG-TRqChWR2Allib_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/74cc3361-6a33-4729-b5b0-426595f1e5a0, base path is set to: null +08:11:44.924 [XNIO-1 task-1] HA5sHG-TRqChWR2Allib_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.924 [XNIO-1 task-1] HA5sHG-TRqChWR2Allib_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.924 [XNIO-1 task-1] HA5sHG-TRqChWR2Allib_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/74cc3361-6a33-4729-b5b0-426595f1e5a0, base path is set to: null +08:11:44.924 [XNIO-1 task-1] HA5sHG-TRqChWR2Allib_A DEBUG com.networknt.schema.TypeValidator debug - validate( "74cc3361-6a33-4729-b5b0-426595f1e5a0", "74cc3361-6a33-4729-b5b0-426595f1e5a0", clientId) +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG com.networknt.schema.TypeValidator debug - validate( "aa91cedb-730d-4043-b9a9-7e1f8bca4e84", {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.930 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.931 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG com.networknt.schema.TypeValidator debug - validate( "3090ec12-6e68-426d-beb3-4ba4c989", {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.931 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.931 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3090ec12-6e68-426d-beb3-4ba4c989","clientDesc":"aa91cedb-730d-4043-b9a9-7e1f8bca4e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.931 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.931 [XNIO-1 task-1] kCnSu6jER5KtW0rVIGlIzg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.933 [XNIO-1 task-1] JhhgAFhQSieFIfsH1s0aQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.933 [XNIO-1 task-1] JhhgAFhQSieFIfsH1s0aQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.934 [XNIO-1 task-1] JhhgAFhQSieFIfsH1s0aQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.946 [XNIO-1 task-1] TSISur6pQo62iZSnxabZbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.946 [XNIO-1 task-1] TSISur6pQo62iZSnxabZbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.946 [XNIO-1 task-1] TSISur6pQo62iZSnxabZbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:44.947 [XNIO-1 task-1] TSISur6pQo62iZSnxabZbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:44.953 [XNIO-1 task-1] OuQQYsNVRTmKg4mRnLUcpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cea36a60-bac1-40e3-b69a-d9ec894a526c, base path is set to: null +08:11:44.953 [XNIO-1 task-1] OuQQYsNVRTmKg4mRnLUcpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.953 [XNIO-1 task-1] OuQQYsNVRTmKg4mRnLUcpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.953 [XNIO-1 task-1] OuQQYsNVRTmKg4mRnLUcpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cea36a60-bac1-40e3-b69a-d9ec894a526c, base path is set to: null +08:11:44.953 [XNIO-1 task-1] OuQQYsNVRTmKg4mRnLUcpw DEBUG com.networknt.schema.TypeValidator debug - validate( "cea36a60-bac1-40e3-b69a-d9ec894a526c", "cea36a60-bac1-40e3-b69a-d9ec894a526c", clientId) +08:11:44.956 [XNIO-1 task-1] -NgBkuTgRAmDpRK6KAcMIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.956 [XNIO-1 task-1] -NgBkuTgRAmDpRK6KAcMIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.956 [XNIO-1 task-1] -NgBkuTgRAmDpRK6KAcMIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.961 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dd95cd20-2db0-4245-896a-4d9ec7c77c14 +08:11:44.967 [XNIO-1 task-1] ovmlMDoOR7S5jZKC4uyMRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cea36a60-bac1-40e3-b69a-d9ec894a526c, base path is set to: null +08:11:44.967 [XNIO-1 task-1] ovmlMDoOR7S5jZKC4uyMRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.967 [XNIO-1 task-1] ovmlMDoOR7S5jZKC4uyMRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.967 [XNIO-1 task-1] ovmlMDoOR7S5jZKC4uyMRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cea36a60-bac1-40e3-b69a-d9ec894a526c, base path is set to: null +08:11:44.967 [XNIO-1 task-1] ovmlMDoOR7S5jZKC4uyMRg DEBUG com.networknt.schema.TypeValidator debug - validate( "cea36a60-bac1-40e3-b69a-d9ec894a526c", "cea36a60-bac1-40e3-b69a-d9ec894a526c", clientId) +08:11:44.974 [XNIO-1 task-1] Rlu-GXFAQluzYAT6Vth_Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dd95cd20-2db0-4245-896a-4d9ec7c77c14 +08:11:44.974 [XNIO-1 task-1] Rlu-GXFAQluzYAT6Vth_Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.974 [XNIO-1 task-1] Rlu-GXFAQluzYAT6Vth_Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:44.974 [XNIO-1 task-1] Rlu-GXFAQluzYAT6Vth_Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dd95cd20-2db0-4245-896a-4d9ec7c77c14 +08:11:44.974 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:dd95cd20-2db0-4245-896a-4d9ec7c77c14 +08:11:44.979 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG com.networknt.schema.TypeValidator debug - validate( "22a3426d-aab7-4b37-a2ec-a53c2aefeee1", {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG com.networknt.schema.TypeValidator debug - validate( "c4f18556-250c-434a-a66b-b7f9e418", {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c4f18556-250c-434a-a66b-b7f9e418","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.980 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.981 [XNIO-1 task-1] jrLvxZ4rRMCFEB2-m_buRA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.983 [XNIO-1 task-1] alFyE-RaSeKwrUFpegr8BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ea23e17-aa3c-432b-a344-0d6abd6c358e, base path is set to: null +08:11:44.983 [XNIO-1 task-1] alFyE-RaSeKwrUFpegr8BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.983 [XNIO-1 task-1] alFyE-RaSeKwrUFpegr8BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.983 [XNIO-1 task-1] alFyE-RaSeKwrUFpegr8BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ea23e17-aa3c-432b-a344-0d6abd6c358e, base path is set to: null +08:11:44.983 [XNIO-1 task-1] alFyE-RaSeKwrUFpegr8BA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea23e17-aa3c-432b-a344-0d6abd6c358e", "4ea23e17-aa3c-432b-a344-0d6abd6c358e", clientId) +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "22a3426d-aab7-4b37-a2ec-a53c2aefeee1", {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:44.986 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:44.987 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2adef07c-6c87-41cd-8d7b-e002e122", {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:44.987 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:44.987 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2adef07c-6c87-41cd-8d7b-e002e122","clientDesc":"22a3426d-aab7-4b37-a2ec-a53c2aefeee1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:44.987 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:44.987 [XNIO-1 task-1] dT069asIQQ2o5nsZaiXSPQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:44.989 [XNIO-1 task-1] BYUWWGEeQh6LQgAlrlrbUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ea23e17-aa3c-432b-a344-0d6abd6c358e, base path is set to: null +08:11:44.989 [XNIO-1 task-1] BYUWWGEeQh6LQgAlrlrbUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:44.989 [XNIO-1 task-1] BYUWWGEeQh6LQgAlrlrbUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:44.989 [XNIO-1 task-1] BYUWWGEeQh6LQgAlrlrbUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ea23e17-aa3c-432b-a344-0d6abd6c358e, base path is set to: null +08:11:44.989 [XNIO-1 task-1] BYUWWGEeQh6LQgAlrlrbUw DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea23e17-aa3c-432b-a344-0d6abd6c358e", "4ea23e17-aa3c-432b-a344-0d6abd6c358e", clientId) +08:11:44.994 [XNIO-1 task-1] OtHHaCAtSgCb8crR0OSe_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.994 [XNIO-1 task-1] OtHHaCAtSgCb8crR0OSe_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:44.994 [XNIO-1 task-1] OtHHaCAtSgCb8crR0OSe_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.005 [XNIO-1 task-1] qZekH4btSBujubKQGN6dRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.005 [XNIO-1 task-1] qZekH4btSBujubKQGN6dRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.006 [XNIO-1 task-1] qZekH4btSBujubKQGN6dRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.021 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG com.networknt.schema.TypeValidator debug - validate( "d3f241af-76cb-4814-89db-05258ffa33b6", {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG com.networknt.schema.TypeValidator debug - validate( "d8763831-324f-410a-9a10-e0cf06ba", {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d8763831-324f-410a-9a10-e0cf06ba","clientDesc":"d3f241af-76cb-4814-89db-05258ffa33b6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.022 [XNIO-1 task-1] wPE_Y1LSRCaP0yq9Bg2g1g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.024 [XNIO-1 task-1] fbVRgr-yQ1SRcUz9MFF-ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a9d6b0fb-062f-42f2-8604-a78bcc4fab94, base path is set to: null +08:11:45.024 [XNIO-1 task-1] fbVRgr-yQ1SRcUz9MFF-ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.024 [XNIO-1 task-1] fbVRgr-yQ1SRcUz9MFF-ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.024 [XNIO-1 task-1] fbVRgr-yQ1SRcUz9MFF-ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a9d6b0fb-062f-42f2-8604-a78bcc4fab94, base path is set to: null +08:11:45.025 [XNIO-1 task-1] fbVRgr-yQ1SRcUz9MFF-ug DEBUG com.networknt.schema.TypeValidator debug - validate( "a9d6b0fb-062f-42f2-8604-a78bcc4fab94", "a9d6b0fb-062f-42f2-8604-a78bcc4fab94", clientId) +08:11:45.032 [XNIO-1 task-1] QfYmNHtEQTWED1Seam4rxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5dbe6ac-4e84-4250-8199-e1ac207a3352 +08:11:45.032 [XNIO-1 task-1] QfYmNHtEQTWED1Seam4rxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.032 [XNIO-1 task-1] QfYmNHtEQTWED1Seam4rxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.032 [XNIO-1 task-1] QfYmNHtEQTWED1Seam4rxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5dbe6ac-4e84-4250-8199-e1ac207a3352 +08:11:45.034 [XNIO-1 task-1] xygIUSoiRjizUS1yGMh7IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c5dbe6ac-4e84-4250-8199-e1ac207a3352, base path is set to: null +08:11:45.034 [XNIO-1 task-1] xygIUSoiRjizUS1yGMh7IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.034 [XNIO-1 task-1] xygIUSoiRjizUS1yGMh7IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.034 [XNIO-1 task-1] xygIUSoiRjizUS1yGMh7IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c5dbe6ac-4e84-4250-8199-e1ac207a3352, base path is set to: null +08:11:45.034 [XNIO-1 task-1] xygIUSoiRjizUS1yGMh7IA DEBUG com.networknt.schema.TypeValidator debug - validate( "c5dbe6ac-4e84-4250-8199-e1ac207a3352", "c5dbe6ac-4e84-4250-8199-e1ac207a3352", clientId) +08:11:45.036 [XNIO-1 task-1] pfmhUYmVRHOz3LLGF9fYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5dbe6ac-4e84-4250-8199-e1ac207a3352 +08:11:45.036 [XNIO-1 task-1] pfmhUYmVRHOz3LLGF9fYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.036 [XNIO-1 task-1] pfmhUYmVRHOz3LLGF9fYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.036 [XNIO-1 task-1] pfmhUYmVRHOz3LLGF9fYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5dbe6ac-4e84-4250-8199-e1ac207a3352 +08:11:45.041 [XNIO-1 task-1] MPy_xtZoRN2k3ZU1W0eG2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.041 [XNIO-1 task-1] MPy_xtZoRN2k3ZU1W0eG2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.041 [XNIO-1 task-1] MPy_xtZoRN2k3ZU1W0eG2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.041 [XNIO-1 task-1] MPy_xtZoRN2k3ZU1W0eG2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.048 [XNIO-1 task-1] Np-_hzluRt-l4IYM0PJ75w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.048 [XNIO-1 task-1] Np-_hzluRt-l4IYM0PJ75w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.048 [XNIO-1 task-1] Np-_hzluRt-l4IYM0PJ75w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.060 [XNIO-1 task-1] z8CDM36jSFObT83blQDe1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c19b66fe-d938-4b1d-9fbf-643f4fc12a92, base path is set to: null +08:11:45.060 [XNIO-1 task-1] z8CDM36jSFObT83blQDe1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.060 [XNIO-1 task-1] z8CDM36jSFObT83blQDe1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.060 [XNIO-1 task-1] z8CDM36jSFObT83blQDe1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c19b66fe-d938-4b1d-9fbf-643f4fc12a92, base path is set to: null +08:11:45.060 [XNIO-1 task-1] z8CDM36jSFObT83blQDe1A DEBUG com.networknt.schema.TypeValidator debug - validate( "c19b66fe-d938-4b1d-9fbf-643f4fc12a92", "c19b66fe-d938-4b1d-9fbf-643f4fc12a92", clientId) +08:11:45.066 [XNIO-1 task-1] J35wVF9dS2Wp63bmiiyXrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.066 [XNIO-1 task-1] J35wVF9dS2Wp63bmiiyXrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.066 [XNIO-1 task-1] J35wVF9dS2Wp63bmiiyXrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.077 [XNIO-1 task-1] ZnAgBSXtTSCrQBY0IecGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.077 [XNIO-1 task-1] ZnAgBSXtTSCrQBY0IecGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.077 [XNIO-1 task-1] ZnAgBSXtTSCrQBY0IecGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.077 [XNIO-1 task-1] ZnAgBSXtTSCrQBY0IecGtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.083 [XNIO-1 task-1] ZoqT91kYRiOhDUyw-xgUDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.083 [XNIO-1 task-1] ZoqT91kYRiOhDUyw-xgUDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.083 [XNIO-1 task-1] ZoqT91kYRiOhDUyw-xgUDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.094 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.094 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b7f787ba-1b70-4d18-93f2-21e9fe014679", {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "057b1212-fd00-421e-aa48-1a5bb9cf", {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"057b1212-fd00-421e-aa48-1a5bb9cf","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.095 [XNIO-1 task-1] vK4MXPWlRMGSlusUGGL2fQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.097 [XNIO-1 task-1] 7p63IgzuTIqtbvmKu852vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b21f66c9-2b95-412e-b62e-95e0fbfdf231, base path is set to: null +08:11:45.097 [XNIO-1 task-1] 7p63IgzuTIqtbvmKu852vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.097 [XNIO-1 task-1] 7p63IgzuTIqtbvmKu852vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.097 [XNIO-1 task-1] 7p63IgzuTIqtbvmKu852vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b21f66c9-2b95-412e-b62e-95e0fbfdf231, base path is set to: null +08:11:45.098 [XNIO-1 task-1] 7p63IgzuTIqtbvmKu852vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b21f66c9-2b95-412e-b62e-95e0fbfdf231", "b21f66c9-2b95-412e-b62e-95e0fbfdf231", clientId) +08:11:45.104 [XNIO-1 task-1] CWeUgY0QS-WAIylnAiwuvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6 +08:11:45.104 [XNIO-1 task-1] CWeUgY0QS-WAIylnAiwuvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.104 [XNIO-1 task-1] CWeUgY0QS-WAIylnAiwuvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.104 [XNIO-1 task-1] CWeUgY0QS-WAIylnAiwuvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6 +08:11:45.106 [XNIO-1 task-1] 4YSzNpOfRcuKWWUKNgPbAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.106 [XNIO-1 task-1] 4YSzNpOfRcuKWWUKNgPbAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.106 [XNIO-1 task-1] 4YSzNpOfRcuKWWUKNgPbAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.106 [XNIO-1 task-1] 4YSzNpOfRcuKWWUKNgPbAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.111 [XNIO-1 task-1] F7LD3KD0SYS985P8KwBJtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6, base path is set to: null +08:11:45.112 [XNIO-1 task-1] F7LD3KD0SYS985P8KwBJtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.112 [XNIO-1 task-1] F7LD3KD0SYS985P8KwBJtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.112 [XNIO-1 task-1] F7LD3KD0SYS985P8KwBJtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6, base path is set to: null +08:11:45.112 [XNIO-1 task-1] F7LD3KD0SYS985P8KwBJtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "665f360e-18b6-435c-b01a-3a468c5a30c6", "665f360e-18b6-435c-b01a-3a468c5a30c6", clientId) +08:11:45.114 [XNIO-1 task-1] jEcKamJJTtOgSX_RWSZkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.114 [XNIO-1 task-1] jEcKamJJTtOgSX_RWSZkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.114 [XNIO-1 task-1] jEcKamJJTtOgSX_RWSZkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.114 [XNIO-1 task-1] jEcKamJJTtOgSX_RWSZkrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.120 [XNIO-1 task-1] 5a5GQ6cqTCS-whp65jCLWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.120 [XNIO-1 task-1] 5a5GQ6cqTCS-whp65jCLWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.120 [XNIO-1 task-1] 5a5GQ6cqTCS-whp65jCLWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.121 [XNIO-1 task-1] 5a5GQ6cqTCS-whp65jCLWw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG com.networknt.schema.TypeValidator debug - validate( "b7f787ba-1b70-4d18-93f2-21e9fe014679", {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.129 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.130 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG com.networknt.schema.TypeValidator debug - validate( "eeaee71e-7d74-4e8a-97ed-35a31597", {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.130 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.130 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"eeaee71e-7d74-4e8a-97ed-35a31597","clientDesc":"b7f787ba-1b70-4d18-93f2-21e9fe014679","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.130 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.130 [XNIO-1 task-1] w-8Jv3yXSJ-NV2ysKCG03A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.132 [XNIO-1 task-1] 1kzDY_lJRz6Yzz2y0-KWWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.132 [XNIO-1 task-1] 1kzDY_lJRz6Yzz2y0-KWWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.132 [XNIO-1 task-1] 1kzDY_lJRz6Yzz2y0-KWWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.132 [XNIO-1 task-1] 1kzDY_lJRz6Yzz2y0-KWWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.140 [XNIO-1 task-1] bC1ouxwpQlKeivTgWkkT-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6, base path is set to: null +08:11:45.140 [XNIO-1 task-1] bC1ouxwpQlKeivTgWkkT-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.140 [XNIO-1 task-1] bC1ouxwpQlKeivTgWkkT-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.140 [XNIO-1 task-1] bC1ouxwpQlKeivTgWkkT-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6, base path is set to: null +08:11:45.140 [XNIO-1 task-1] bC1ouxwpQlKeivTgWkkT-A DEBUG com.networknt.schema.TypeValidator debug - validate( "665f360e-18b6-435c-b01a-3a468c5a30c6", "665f360e-18b6-435c-b01a-3a468c5a30c6", clientId) +08:11:45.142 [XNIO-1 task-1] VD5n8EAHR1aNYQtQC-6N6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6 +08:11:45.142 [XNIO-1 task-1] VD5n8EAHR1aNYQtQC-6N6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.142 [XNIO-1 task-1] VD5n8EAHR1aNYQtQC-6N6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.142 [XNIO-1 task-1] VD5n8EAHR1aNYQtQC-6N6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/665f360e-18b6-435c-b01a-3a468c5a30c6 +08:11:45.148 [XNIO-1 task-1] DYiBRODzToiQ1iJqH_P6WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.148 [XNIO-1 task-1] DYiBRODzToiQ1iJqH_P6WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.148 [XNIO-1 task-1] DYiBRODzToiQ1iJqH_P6WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.148 [XNIO-1 task-1] DYiBRODzToiQ1iJqH_P6WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.156 [XNIO-1 task-1] _eiuJIpiRH-13na2aQRygA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.156 [XNIO-1 task-1] _eiuJIpiRH-13na2aQRygA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.156 [XNIO-1 task-1] _eiuJIpiRH-13na2aQRygA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.157 [XNIO-1 task-1] _eiuJIpiRH-13na2aQRygA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.164 [XNIO-1 task-1] ZyBTDpKZSUKC0BXC1v8Hiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.164 [XNIO-1 task-1] ZyBTDpKZSUKC0BXC1v8Hiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.164 [XNIO-1 task-1] ZyBTDpKZSUKC0BXC1v8Hiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.176 [XNIO-1 task-1] RFRO2UBTSiC9Aixum7r5rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a257d237-2fde-4e92-893d-6f0747c48b92, base path is set to: null +08:11:45.176 [XNIO-1 task-1] RFRO2UBTSiC9Aixum7r5rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.176 [XNIO-1 task-1] RFRO2UBTSiC9Aixum7r5rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.176 [XNIO-1 task-1] RFRO2UBTSiC9Aixum7r5rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a257d237-2fde-4e92-893d-6f0747c48b92, base path is set to: null +08:11:45.176 [XNIO-1 task-1] RFRO2UBTSiC9Aixum7r5rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a257d237-2fde-4e92-893d-6f0747c48b92", "a257d237-2fde-4e92-893d-6f0747c48b92", clientId) +08:11:45.179 [XNIO-1 task-1] pjoCfb_QTl2uO1EbyAzjJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a257d237-2fde-4e92-893d-6f0747c48b92 +08:11:45.179 [XNIO-1 task-1] pjoCfb_QTl2uO1EbyAzjJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.179 [XNIO-1 task-1] pjoCfb_QTl2uO1EbyAzjJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.179 [XNIO-1 task-1] pjoCfb_QTl2uO1EbyAzjJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a257d237-2fde-4e92-893d-6f0747c48b92 +08:11:45.185 [XNIO-1 task-1] mEYxkvlmQPCHPJe-qYRsxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.186 [XNIO-1 task-1] mEYxkvlmQPCHPJe-qYRsxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.186 [XNIO-1 task-1] mEYxkvlmQPCHPJe-qYRsxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.197 [XNIO-1 task-1] l3nEfjRvTICj1z8qETdt2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4, base path is set to: null +08:11:45.198 [XNIO-1 task-1] l3nEfjRvTICj1z8qETdt2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.198 [XNIO-1 task-1] l3nEfjRvTICj1z8qETdt2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.198 [XNIO-1 task-1] l3nEfjRvTICj1z8qETdt2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4, base path is set to: null +08:11:45.198 [XNIO-1 task-1] l3nEfjRvTICj1z8qETdt2A DEBUG com.networknt.schema.TypeValidator debug - validate( "e31ddc1f-12da-4076-9e47-fd940b0edbb4", "e31ddc1f-12da-4076-9e47-fd940b0edbb4", clientId) +08:11:45.201 [XNIO-1 task-1] x4LFe0MORJmGtMUv6IV_Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.201 [XNIO-1 task-1] x4LFe0MORJmGtMUv6IV_Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.201 [XNIO-1 task-1] x4LFe0MORJmGtMUv6IV_Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.201 [XNIO-1 task-1] x4LFe0MORJmGtMUv6IV_Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bf07e6e5-1db4-43ca-ba06-6460ab23882c", {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4694e20-120c-4cd5-94fb-49338893", {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.210 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b4694e20-120c-4cd5-94fb-49338893","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.211 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.211 [XNIO-1 task-1] wsl37PzmSYOntwnCUWvncQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.213 [XNIO-1 task-1] _T_CVTsiSMCACz184EOUbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.213 [XNIO-1 task-1] _T_CVTsiSMCACz184EOUbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.213 [XNIO-1 task-1] _T_CVTsiSMCACz184EOUbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.224 [XNIO-1 task-1] 22xgAfR4TkC-zevTlIn7cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43fcacce-7357-47a0-94c9-093f2b5691ef, base path is set to: null +08:11:45.224 [XNIO-1 task-1] 22xgAfR4TkC-zevTlIn7cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.224 [XNIO-1 task-1] 22xgAfR4TkC-zevTlIn7cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.225 [XNIO-1 task-1] 22xgAfR4TkC-zevTlIn7cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43fcacce-7357-47a0-94c9-093f2b5691ef, base path is set to: null +08:11:45.225 [XNIO-1 task-1] 22xgAfR4TkC-zevTlIn7cg DEBUG com.networknt.schema.TypeValidator debug - validate( "43fcacce-7357-47a0-94c9-093f2b5691ef", "43fcacce-7357-47a0-94c9-093f2b5691ef", clientId) +08:11:45.228 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.228 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.228 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.228 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.228 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf07e6e5-1db4-43ca-ba06-6460ab23882c", {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG com.networknt.schema.TypeValidator debug - validate( "89366839-13bf-4a18-85a5-52ae4fbb", {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"89366839-13bf-4a18-85a5-52ae4fbb","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.229 [XNIO-1 task-1] U7AbAO35R2yM1zRr5GNLMw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.233 [XNIO-1 task-1] iyFc-9DJTrKRqjJk9mHx4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43fcacce-7357-47a0-94c9-093f2b5691ef, base path is set to: null +08:11:45.233 [XNIO-1 task-1] iyFc-9DJTrKRqjJk9mHx4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.233 [XNIO-1 task-1] iyFc-9DJTrKRqjJk9mHx4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.233 [XNIO-1 task-1] iyFc-9DJTrKRqjJk9mHx4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43fcacce-7357-47a0-94c9-093f2b5691ef, base path is set to: null +08:11:45.233 [XNIO-1 task-1] iyFc-9DJTrKRqjJk9mHx4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "43fcacce-7357-47a0-94c9-093f2b5691ef", "43fcacce-7357-47a0-94c9-093f2b5691ef", clientId) +08:11:45.235 [XNIO-1 task-1] EE0Q37t0TeSWV_gHjgmgEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.235 [XNIO-1 task-1] EE0Q37t0TeSWV_gHjgmgEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.236 [XNIO-1 task-1] EE0Q37t0TeSWV_gHjgmgEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.247 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.247 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.247 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG com.networknt.schema.TypeValidator debug - validate( "0da993e9-08b4-4548-a7d9-0e9e87cf8249", {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG com.networknt.schema.TypeValidator debug - validate( "9ece7394-7e00-4830-a740-b9104f30", {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9ece7394-7e00-4830-a740-b9104f30","clientDesc":"0da993e9-08b4-4548-a7d9-0e9e87cf8249","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.248 [XNIO-1 task-1] AMqcZYpUSPu-LzsgE5SOvA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.250 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.250 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.250 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae1e9152-7ff4-4695-ae92-36b75adc","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.251 [XNIO-1 task-1] 1TRmfLlaRlqYr1OImw6Zuw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.253 [XNIO-1 task-1] Jhq6LWr7Q5mH0sf142ELjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.254 [XNIO-1 task-1] Jhq6LWr7Q5mH0sf142ELjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.254 [XNIO-1 task-1] Jhq6LWr7Q5mH0sf142ELjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.266 [XNIO-1 task-1] 0gNEujj8Q9mFaAmjoBoovw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.266 [XNIO-1 task-1] 0gNEujj8Q9mFaAmjoBoovw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.266 [XNIO-1 task-1] 0gNEujj8Q9mFaAmjoBoovw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.266 [XNIO-1 task-1] 0gNEujj8Q9mFaAmjoBoovw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.271 [XNIO-1 task-1] hVIqBp77SbSIxXOMDg1U4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4 +08:11:45.272 [XNIO-1 task-1] hVIqBp77SbSIxXOMDg1U4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.272 [XNIO-1 task-1] hVIqBp77SbSIxXOMDg1U4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.272 [XNIO-1 task-1] hVIqBp77SbSIxXOMDg1U4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4 +08:11:45.273 [XNIO-1 task-1] AAkWvps_TR6CaE6nDS_WkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.273 [XNIO-1 task-1] AAkWvps_TR6CaE6nDS_WkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.274 [XNIO-1 task-1] AAkWvps_TR6CaE6nDS_WkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.286 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.287 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b45f90-bd01-4223-83d5-8048dcd0","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.288 [XNIO-1 task-1] ac-KvJfPRfSml3JgoDWH2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.290 [XNIO-1 task-1] 7gRiFqxbQu-EwfgiJSY8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/43fcacce-7357-47a0-94c9-093f2b5691ef +08:11:45.290 [XNIO-1 task-1] 7gRiFqxbQu-EwfgiJSY8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.290 [XNIO-1 task-1] 7gRiFqxbQu-EwfgiJSY8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.290 [XNIO-1 task-1] 7gRiFqxbQu-EwfgiJSY8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/43fcacce-7357-47a0-94c9-093f2b5691ef +08:11:45.296 [XNIO-1 task-1] DNWzXZYERz6ksNxbOfINrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4, base path is set to: null +08:11:45.296 [XNIO-1 task-1] DNWzXZYERz6ksNxbOfINrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.296 [XNIO-1 task-1] DNWzXZYERz6ksNxbOfINrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.296 [XNIO-1 task-1] DNWzXZYERz6ksNxbOfINrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4, base path is set to: null +08:11:45.296 [XNIO-1 task-1] DNWzXZYERz6ksNxbOfINrA DEBUG com.networknt.schema.TypeValidator debug - validate( "e31ddc1f-12da-4076-9e47-fd940b0edbb4", "e31ddc1f-12da-4076-9e47-fd940b0edbb4", clientId) +08:11:45.298 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.298 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.298 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.298 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.298 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.298 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bf07e6e5-1db4-43ca-ba06-6460ab23882c", {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.298 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.299 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.299 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7bf513de-997a-48a8-b96b-fcd912e7", {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.299 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.299 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7bf513de-997a-48a8-b96b-fcd912e7","clientDesc":"bf07e6e5-1db4-43ca-ba06-6460ab23882c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.299 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.299 [XNIO-1 task-1] MgSLuvWPSgCPhAtVrmNV6Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.301 [XNIO-1 task-1] Q3RGBl7eRV-heMZOAatSoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4, base path is set to: null +08:11:45.301 [XNIO-1 task-1] Q3RGBl7eRV-heMZOAatSoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.301 [XNIO-1 task-1] Q3RGBl7eRV-heMZOAatSoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.301 [XNIO-1 task-1] Q3RGBl7eRV-heMZOAatSoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31ddc1f-12da-4076-9e47-fd940b0edbb4, base path is set to: null +08:11:45.301 [XNIO-1 task-1] Q3RGBl7eRV-heMZOAatSoA DEBUG com.networknt.schema.TypeValidator debug - validate( "e31ddc1f-12da-4076-9e47-fd940b0edbb4", "e31ddc1f-12da-4076-9e47-fd940b0edbb4", clientId) +08:11:45.309 [XNIO-1 task-1] BtuQchw6SAKRDuWJ9rhIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.309 [XNIO-1 task-1] BtuQchw6SAKRDuWJ9rhIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.309 [XNIO-1 task-1] BtuQchw6SAKRDuWJ9rhIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.309 [XNIO-1 task-1] BtuQchw6SAKRDuWJ9rhIvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.317 [XNIO-1 task-1] iEKUBN0USW-tZ6B2cIEg5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2bbee21-92cb-4af3-b90f-c051e6805a6b +08:11:45.317 [XNIO-1 task-1] iEKUBN0USW-tZ6B2cIEg5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.317 [XNIO-1 task-1] iEKUBN0USW-tZ6B2cIEg5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.317 [XNIO-1 task-1] iEKUBN0USW-tZ6B2cIEg5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2bbee21-92cb-4af3-b90f-c051e6805a6b +08:11:45.323 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.323 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.323 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.323 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6c32fb5-5d08-4203-bb4c-6eda336e","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.324 [XNIO-1 task-1] Ng3AM5YSSV-8zRB3xgUR3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.326 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.326 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.326 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.326 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.326 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.326 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e5e6111-3755-4e3b-869a-1c12e1e113f8", {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.326 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.327 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.327 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG com.networknt.schema.TypeValidator debug - validate( "b1c5ac8c-cb56-4a55-aec1-0e18fae4", {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.327 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.327 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b1c5ac8c-cb56-4a55-aec1-0e18fae4","clientDesc":"0e5e6111-3755-4e3b-869a-1c12e1e113f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.327 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.327 [XNIO-1 task-1] hBeni8b_TNu9X5M8wEFPvg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.328 [XNIO-1 task-1] LUPQ-I36QLWU81_J-hLQsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8b76a61b-3199-44ae-9edf-bbe766a63834, base path is set to: null +08:11:45.328 [XNIO-1 task-1] LUPQ-I36QLWU81_J-hLQsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.329 [XNIO-1 task-1] LUPQ-I36QLWU81_J-hLQsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.329 [XNIO-1 task-1] LUPQ-I36QLWU81_J-hLQsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8b76a61b-3199-44ae-9edf-bbe766a63834, base path is set to: null +08:11:45.329 [XNIO-1 task-1] LUPQ-I36QLWU81_J-hLQsg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b76a61b-3199-44ae-9edf-bbe766a63834", "8b76a61b-3199-44ae-9edf-bbe766a63834", clientId) +08:11:45.333 [XNIO-1 task-1] ZsLPOdeKQbmb4jHhPsK86g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.333 [XNIO-1 task-1] ZsLPOdeKQbmb4jHhPsK86g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.333 [XNIO-1 task-1] ZsLPOdeKQbmb4jHhPsK86g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.345 [XNIO-1 task-1] 29nO14PETLywXaIxds7oCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.345 [XNIO-1 task-1] 29nO14PETLywXaIxds7oCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.346 [XNIO-1 task-1] 29nO14PETLywXaIxds7oCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.357 [XNIO-1 task-1] u7yNN3tQRROqg-pubzTIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8b76a61b-3199-44ae-9edf-bbe766a63834 +08:11:45.357 [XNIO-1 task-1] u7yNN3tQRROqg-pubzTIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.357 [XNIO-1 task-1] u7yNN3tQRROqg-pubzTIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.357 [XNIO-1 task-1] u7yNN3tQRROqg-pubzTIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8b76a61b-3199-44ae-9edf-bbe766a63834 +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.363 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f147c4ac-ebb8-477b-9f87-3834957d","clientDesc":"13c8c71d-5b84-409c-9895-014d550b876f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.364 [XNIO-1 task-1] jl26HkwqSe6QMMfUVPePGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.366 [XNIO-1 task-1] lQ_d8amFT8uM5dnxoJL80g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1825680b-986d-4818-83ff-f43c6400b2c6 +08:11:45.366 [XNIO-1 task-1] lQ_d8amFT8uM5dnxoJL80g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.366 [XNIO-1 task-1] lQ_d8amFT8uM5dnxoJL80g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.366 [XNIO-1 task-1] lQ_d8amFT8uM5dnxoJL80g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1825680b-986d-4818-83ff-f43c6400b2c6 +08:11:45.368 [XNIO-1 task-1] TG71Ew4uRbKFW7_I7CUvqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/42ad553e-8eaf-4e4a-b66d-ce2d82341b26, base path is set to: null +08:11:45.368 [XNIO-1 task-1] TG71Ew4uRbKFW7_I7CUvqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.368 [XNIO-1 task-1] TG71Ew4uRbKFW7_I7CUvqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.368 [XNIO-1 task-1] TG71Ew4uRbKFW7_I7CUvqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/42ad553e-8eaf-4e4a-b66d-ce2d82341b26, base path is set to: null +08:11:45.368 [XNIO-1 task-1] TG71Ew4uRbKFW7_I7CUvqA DEBUG com.networknt.schema.TypeValidator debug - validate( "42ad553e-8eaf-4e4a-b66d-ce2d82341b26", "42ad553e-8eaf-4e4a-b66d-ce2d82341b26", clientId) +08:11:45.373 [XNIO-1 task-1] sYSWLY7DRpSwi8Koxy3Fnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6f7f92b-25e7-4d86-838e-caa558b1ea28 +08:11:45.373 [XNIO-1 task-1] sYSWLY7DRpSwi8Koxy3Fnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.373 [XNIO-1 task-1] sYSWLY7DRpSwi8Koxy3Fnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.373 [XNIO-1 task-1] sYSWLY7DRpSwi8Koxy3Fnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6f7f92b-25e7-4d86-838e-caa558b1ea28 +08:11:45.375 [XNIO-1 task-1] jB6bFb7ASJixLn6eLOEtvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.375 [XNIO-1 task-1] jB6bFb7ASJixLn6eLOEtvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.376 [XNIO-1 task-1] jB6bFb7ASJixLn6eLOEtvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.389 [XNIO-1 task-1] IhfAWMr3QkuZhcu6leFakQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1825680b-986d-4818-83ff-f43c6400b2c6, base path is set to: null +08:11:45.389 [XNIO-1 task-1] IhfAWMr3QkuZhcu6leFakQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.389 [XNIO-1 task-1] IhfAWMr3QkuZhcu6leFakQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.389 [XNIO-1 task-1] IhfAWMr3QkuZhcu6leFakQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1825680b-986d-4818-83ff-f43c6400b2c6, base path is set to: null +08:11:45.389 [XNIO-1 task-1] IhfAWMr3QkuZhcu6leFakQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1825680b-986d-4818-83ff-f43c6400b2c6", "1825680b-986d-4818-83ff-f43c6400b2c6", clientId) +08:11:45.391 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.391 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.391 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG com.networknt.schema.TypeValidator debug - validate( "9f6b7f1d-5953-477d-a35c-eee028d3d2fa", {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG com.networknt.schema.TypeValidator debug - validate( "f95b66c3-fa54-4052-bf35-fc8e45e7", {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f95b66c3-fa54-4052-bf35-fc8e45e7","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.392 [XNIO-1 task-1] B7kn4ceITeKGTuYyoTYGMw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.394 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.394 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.394 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.394 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.394 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.394 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.394 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.395 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.395 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.395 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.395 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.395 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0efa7739-905d-4105-9e67-cf11ff72","clientDesc":"9f6b7f1d-5953-477d-a35c-eee028d3d2fa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.395 [XNIO-1 task-1] jo4p8T8pSTKuBXGodk9VkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.397 [XNIO-1 task-1] Wtvj6eH2SwaPJk0b4hE-fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.397 [XNIO-1 task-1] Wtvj6eH2SwaPJk0b4hE-fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.397 [XNIO-1 task-1] Wtvj6eH2SwaPJk0b4hE-fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.397 [XNIO-1 task-1] Wtvj6eH2SwaPJk0b4hE-fA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "181a4e06-34d8-4501-bbf6-8fcdbd33bf1c", {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1937b2a-3b80-49a0-8d4d-7b0fe42b", {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a1937b2a-3b80-49a0-8d4d-7b0fe42b","clientDesc":"181a4e06-34d8-4501-bbf6-8fcdbd33bf1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.404 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.405 [XNIO-1 task-1] hEEkfzT6TMetKwdf97DqWg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.407 [XNIO-1 task-1] RHgcL9TsSCeSZ247WDsDUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.407 [XNIO-1 task-1] RHgcL9TsSCeSZ247WDsDUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.407 [XNIO-1 task-1] RHgcL9TsSCeSZ247WDsDUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.418 [XNIO-1 task-1] 18ItILDRRAe0G2EJEYkAhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3643b2ed-1fe1-400a-997e-098493df2ba4, base path is set to: null +08:11:45.418 [XNIO-1 task-1] 18ItILDRRAe0G2EJEYkAhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.418 [XNIO-1 task-1] 18ItILDRRAe0G2EJEYkAhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.418 [XNIO-1 task-1] 18ItILDRRAe0G2EJEYkAhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3643b2ed-1fe1-400a-997e-098493df2ba4, base path is set to: null +08:11:45.419 [XNIO-1 task-1] 18ItILDRRAe0G2EJEYkAhw DEBUG com.networknt.schema.TypeValidator debug - validate( "3643b2ed-1fe1-400a-997e-098493df2ba4", "3643b2ed-1fe1-400a-997e-098493df2ba4", clientId) +08:11:45.421 [XNIO-1 task-1] lQxW5E6STJ-YdhEZEvux7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/89db2e78-5298-4fc4-a453-b5b240b58c21 +08:11:45.421 [XNIO-1 task-1] lQxW5E6STJ-YdhEZEvux7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.421 [XNIO-1 task-1] lQxW5E6STJ-YdhEZEvux7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.421 [XNIO-1 task-1] lQxW5E6STJ-YdhEZEvux7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/89db2e78-5298-4fc4-a453-b5b240b58c21 +08:11:45.427 [XNIO-1 task-1] vR9z-841R3SV8FMOaIq1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3643b2ed-1fe1-400a-997e-098493df2ba4, base path is set to: null +08:11:45.427 [XNIO-1 task-1] vR9z-841R3SV8FMOaIq1ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.427 [XNIO-1 task-1] vR9z-841R3SV8FMOaIq1ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.427 [XNIO-1 task-1] vR9z-841R3SV8FMOaIq1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3643b2ed-1fe1-400a-997e-098493df2ba4, base path is set to: null +08:11:45.427 [XNIO-1 task-1] vR9z-841R3SV8FMOaIq1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "3643b2ed-1fe1-400a-997e-098493df2ba4", "3643b2ed-1fe1-400a-997e-098493df2ba4", clientId) +08:11:45.433 [XNIO-1 task-1] BYjQAiblRO6sFfBuHLOVwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1825680b-986d-4818-83ff-f43c6400b2c6 +08:11:45.433 [XNIO-1 task-1] BYjQAiblRO6sFfBuHLOVwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.433 [XNIO-1 task-1] BYjQAiblRO6sFfBuHLOVwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.433 [XNIO-1 task-1] BYjQAiblRO6sFfBuHLOVwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1825680b-986d-4818-83ff-f43c6400b2c6 +08:11:45.439 [XNIO-1 task-1] XTTfYrjVQ3ycZ0H4HZ-S7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6f7f92b-25e7-4d86-838e-caa558b1ea28, base path is set to: null +08:11:45.439 [XNIO-1 task-1] XTTfYrjVQ3ycZ0H4HZ-S7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.439 [XNIO-1 task-1] XTTfYrjVQ3ycZ0H4HZ-S7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.439 [XNIO-1 task-1] XTTfYrjVQ3ycZ0H4HZ-S7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6f7f92b-25e7-4d86-838e-caa558b1ea28, base path is set to: null +08:11:45.439 [XNIO-1 task-1] XTTfYrjVQ3ycZ0H4HZ-S7w DEBUG com.networknt.schema.TypeValidator debug - validate( "a6f7f92b-25e7-4d86-838e-caa558b1ea28", "a6f7f92b-25e7-4d86-838e-caa558b1ea28", clientId) +08:11:45.444 [XNIO-1 task-1] 4njwo4EAQBqxpd8R99QocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.444 [XNIO-1 task-1] 4njwo4EAQBqxpd8R99QocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.444 [XNIO-1 task-1] 4njwo4EAQBqxpd8R99QocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.455 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG com.networknt.schema.TypeValidator debug - validate( "24f65aa1-c765-4c50-9d02-2f71eac82d76", {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG com.networknt.schema.TypeValidator debug - validate( "9a536073-a149-4a7c-abda-4268095c", {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.456 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9a536073-a149-4a7c-abda-4268095c","clientDesc":"24f65aa1-c765-4c50-9d02-2f71eac82d76","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.457 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.457 [XNIO-1 task-1] T9zjRHh8SE2DmylAfVWctA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.459 [XNIO-1 task-1] H6iJIPC4TRWu2mraGnpbyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/71c61e95-a84f-4318-a874-d8c6590c8f1f, base path is set to: null +08:11:45.459 [XNIO-1 task-1] H6iJIPC4TRWu2mraGnpbyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.459 [XNIO-1 task-1] H6iJIPC4TRWu2mraGnpbyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.459 [XNIO-1 task-1] H6iJIPC4TRWu2mraGnpbyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/71c61e95-a84f-4318-a874-d8c6590c8f1f, base path is set to: null +08:11:45.459 [XNIO-1 task-1] H6iJIPC4TRWu2mraGnpbyw DEBUG com.networknt.schema.TypeValidator debug - validate( "71c61e95-a84f-4318-a874-d8c6590c8f1f", "71c61e95-a84f-4318-a874-d8c6590c8f1f", clientId) +08:11:45.465 [XNIO-1 task-1] xof2talyR5u20x663xpBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.465 [XNIO-1 task-1] xof2talyR5u20x663xpBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.465 [XNIO-1 task-1] xof2talyR5u20x663xpBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.466 [XNIO-1 task-1] xof2talyR5u20x663xpBxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.472 [XNIO-1 task-1] ckpXGc-LS3--yNfarWkhEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.472 [XNIO-1 task-1] ckpXGc-LS3--yNfarWkhEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.472 [XNIO-1 task-1] ckpXGc-LS3--yNfarWkhEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.472 [XNIO-1 task-1] ckpXGc-LS3--yNfarWkhEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.478 [XNIO-1 task-1] P5Tw8BOIQ_-rmX0AJGe12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.478 [XNIO-1 task-1] P5Tw8BOIQ_-rmX0AJGe12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.478 [XNIO-1 task-1] P5Tw8BOIQ_-rmX0AJGe12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.478 [XNIO-1 task-1] P5Tw8BOIQ_-rmX0AJGe12Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.485 [XNIO-1 task-1] gAFMgAoaT2qSAx2ID2kp0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.485 [XNIO-1 task-1] gAFMgAoaT2qSAx2ID2kp0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.485 [XNIO-1 task-1] gAFMgAoaT2qSAx2ID2kp0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.485 [XNIO-1 task-1] gAFMgAoaT2qSAx2ID2kp0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.491 [XNIO-1 task-1] 0RfCVrfZSyO1uY0pkRsmwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.491 [XNIO-1 task-1] 0RfCVrfZSyO1uY0pkRsmwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.491 [XNIO-1 task-1] 0RfCVrfZSyO1uY0pkRsmwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.502 [XNIO-1 task-1] ppZkQr_VSgm3U6EdDoaLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.502 [XNIO-1 task-1] ppZkQr_VSgm3U6EdDoaLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.503 [XNIO-1 task-1] ppZkQr_VSgm3U6EdDoaLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.503 [XNIO-1 task-1] ppZkQr_VSgm3U6EdDoaLqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.509 [XNIO-1 task-1] zMI3e1cqQ0uD7Eo6s1GFjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d523184-ef26-44aa-a240-be9fe9ed9f32 +08:11:45.509 [XNIO-1 task-1] zMI3e1cqQ0uD7Eo6s1GFjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.509 [XNIO-1 task-1] zMI3e1cqQ0uD7Eo6s1GFjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.509 [XNIO-1 task-1] zMI3e1cqQ0uD7Eo6s1GFjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d523184-ef26-44aa-a240-be9fe9ed9f32 +08:11:45.514 [XNIO-1 task-1] uB0-5TogSGafHazSHW1pfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.514 [XNIO-1 task-1] uB0-5TogSGafHazSHW1pfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.514 [XNIO-1 task-1] uB0-5TogSGafHazSHW1pfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.525 [XNIO-1 task-1] GeoIOxidR1SOSL1OIQojDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27b94562-e4d8-4685-8c33-01492e6c2c72, base path is set to: null +08:11:45.525 [XNIO-1 task-1] GeoIOxidR1SOSL1OIQojDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.525 [XNIO-1 task-1] GeoIOxidR1SOSL1OIQojDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.525 [XNIO-1 task-1] GeoIOxidR1SOSL1OIQojDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27b94562-e4d8-4685-8c33-01492e6c2c72, base path is set to: null +08:11:45.525 [XNIO-1 task-1] GeoIOxidR1SOSL1OIQojDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "27b94562-e4d8-4685-8c33-01492e6c2c72", "27b94562-e4d8-4685-8c33-01492e6c2c72", clientId) +08:11:45.533 [XNIO-1 task-1] v8wvukaXRp-IRn8lfCOnyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.533 [XNIO-1 task-1] v8wvukaXRp-IRn8lfCOnyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.533 [XNIO-1 task-1] v8wvukaXRp-IRn8lfCOnyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.533 [XNIO-1 task-1] v8wvukaXRp-IRn8lfCOnyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.538 [XNIO-1 task-1] Lv1tIifIT0-14XqG5JpGSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.539 [XNIO-1 task-1] Lv1tIifIT0-14XqG5JpGSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.539 [XNIO-1 task-1] Lv1tIifIT0-14XqG5JpGSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.539 [XNIO-1 task-1] Lv1tIifIT0-14XqG5JpGSQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.545 [XNIO-1 task-1] eWI21Di_Q3iTBNqiqkXuCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.545 [XNIO-1 task-1] eWI21Di_Q3iTBNqiqkXuCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.546 [XNIO-1 task-1] eWI21Di_Q3iTBNqiqkXuCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.557 [XNIO-1 task-1] lBvmHlYDS0qp34mJUNn-ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/63f7709e-73c2-49f5-97cd-b73d61289b68 +08:11:45.557 [XNIO-1 task-1] lBvmHlYDS0qp34mJUNn-ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.557 [XNIO-1 task-1] lBvmHlYDS0qp34mJUNn-ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.557 [XNIO-1 task-1] lBvmHlYDS0qp34mJUNn-ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/63f7709e-73c2-49f5-97cd-b73d61289b68 +08:11:45.563 [XNIO-1 task-1] HvT_zq-wT6CpkMTy7bRQ_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.563 [XNIO-1 task-1] HvT_zq-wT6CpkMTy7bRQ_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.563 [XNIO-1 task-1] HvT_zq-wT6CpkMTy7bRQ_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.563 [XNIO-1 task-1] HvT_zq-wT6CpkMTy7bRQ_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.570 [XNIO-1 task-1] lws0Cku8RVaU4EKgCyFvgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.570 [XNIO-1 task-1] lws0Cku8RVaU4EKgCyFvgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.570 [XNIO-1 task-1] lws0Cku8RVaU4EKgCyFvgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.580 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.580 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.580 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.580 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.580 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.580 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.581 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.581 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.581 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.581 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.581 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.581 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6525c552-15da-40eb-a85c-cdf19ba2","clientDesc":"bd4b63da-a265-4a8d-8a00-2be7eb91e905","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.581 [XNIO-1 task-1] y2ukLrzXTCyun8L3tNheWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.583 [XNIO-1 task-1] GjWP-r5ESbGEilf30i69Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.583 [XNIO-1 task-1] GjWP-r5ESbGEilf30i69Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.583 [XNIO-1 task-1] GjWP-r5ESbGEilf30i69Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.594 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.594 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG com.networknt.schema.TypeValidator debug - validate( "ea071d4d-1694-42bb-b2a3-05fdfe09e5ea", {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG com.networknt.schema.TypeValidator debug - validate( "35ceaaaf-2436-48e3-92ec-a5b285a5", {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"35ceaaaf-2436-48e3-92ec-a5b285a5","clientDesc":"ea071d4d-1694-42bb-b2a3-05fdfe09e5ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.595 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.596 [XNIO-1 task-1] gGWlNzgESfmy7-P0X1smSA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.597 [XNIO-1 task-1] SYtg8Zz1Qval4lsgOFqiJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.598 [XNIO-1 task-1] SYtg8Zz1Qval4lsgOFqiJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.598 [XNIO-1 task-1] SYtg8Zz1Qval4lsgOFqiJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.598 [XNIO-1 task-1] SYtg8Zz1Qval4lsgOFqiJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.604 [XNIO-1 task-1] Osg9JMePRqiAq4CsMKkwSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73, base path is set to: null +08:11:45.604 [XNIO-1 task-1] Osg9JMePRqiAq4CsMKkwSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.604 [XNIO-1 task-1] Osg9JMePRqiAq4CsMKkwSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.604 [XNIO-1 task-1] Osg9JMePRqiAq4CsMKkwSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73, base path is set to: null +08:11:45.604 [XNIO-1 task-1] Osg9JMePRqiAq4CsMKkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b2a03634-1ba2-4279-a862-a79395256b73", "b2a03634-1ba2-4279-a862-a79395256b73", clientId) +08:11:45.606 [XNIO-1 task-1] DPsN6shQRRaRYqDlg6Da8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73 +08:11:45.607 [XNIO-1 task-1] DPsN6shQRRaRYqDlg6Da8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.607 [XNIO-1 task-1] DPsN6shQRRaRYqDlg6Da8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.607 [XNIO-1 task-1] DPsN6shQRRaRYqDlg6Da8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73 +08:11:45.609 [XNIO-1 task-1] Z4QSEreOQEW5JfNdHAmYZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73, base path is set to: null +08:11:45.609 [XNIO-1 task-1] Z4QSEreOQEW5JfNdHAmYZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.609 [XNIO-1 task-1] Z4QSEreOQEW5JfNdHAmYZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.609 [XNIO-1 task-1] Z4QSEreOQEW5JfNdHAmYZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73, base path is set to: null +08:11:45.609 [XNIO-1 task-1] Z4QSEreOQEW5JfNdHAmYZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b2a03634-1ba2-4279-a862-a79395256b73", "b2a03634-1ba2-4279-a862-a79395256b73", clientId) +08:11:45.611 [XNIO-1 task-1] IyuFMEB4QGKzNWCyrPvfKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.611 [XNIO-1 task-1] IyuFMEB4QGKzNWCyrPvfKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.611 [XNIO-1 task-1] IyuFMEB4QGKzNWCyrPvfKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.611 [XNIO-1 task-1] IyuFMEB4QGKzNWCyrPvfKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.617 [XNIO-1 task-1] Kj83GlhlSyebdbb421Jaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0939c5d8-1038-42a7-ba7f-2844ee281120 +08:11:45.617 [XNIO-1 task-1] Kj83GlhlSyebdbb421Jaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.617 [XNIO-1 task-1] Kj83GlhlSyebdbb421Jaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.617 [XNIO-1 task-1] Kj83GlhlSyebdbb421Jaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0939c5d8-1038-42a7-ba7f-2844ee281120 +08:11:45.620 [XNIO-1 task-1] BTYNdbqITA6z_oJC44DP2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73, base path is set to: null +08:11:45.620 [XNIO-1 task-1] BTYNdbqITA6z_oJC44DP2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.620 [XNIO-1 task-1] BTYNdbqITA6z_oJC44DP2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.620 [XNIO-1 task-1] BTYNdbqITA6z_oJC44DP2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2a03634-1ba2-4279-a862-a79395256b73, base path is set to: null +08:11:45.621 [XNIO-1 task-1] BTYNdbqITA6z_oJC44DP2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b2a03634-1ba2-4279-a862-a79395256b73", "b2a03634-1ba2-4279-a862-a79395256b73", clientId) +08:11:45.626 [XNIO-1 task-1] 5EiSH-orSnCtZDweVvXRTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.626 [XNIO-1 task-1] 5EiSH-orSnCtZDweVvXRTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.627 [XNIO-1 task-1] 5EiSH-orSnCtZDweVvXRTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.627 [XNIO-1 task-1] 5EiSH-orSnCtZDweVvXRTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.635 [XNIO-1 task-1] qUCXDsrDT46wyIHQsfwvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0939c5d8-1038-42a7-ba7f-2844ee281120 +08:11:45.635 [XNIO-1 task-1] qUCXDsrDT46wyIHQsfwvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.635 [XNIO-1 task-1] qUCXDsrDT46wyIHQsfwvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.635 [XNIO-1 task-1] qUCXDsrDT46wyIHQsfwvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0939c5d8-1038-42a7-ba7f-2844ee281120 +08:11:45.640 [XNIO-1 task-1] INNKcjG4RnG0e00ku6zceQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.640 [XNIO-1 task-1] INNKcjG4RnG0e00ku6zceQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.640 [XNIO-1 task-1] INNKcjG4RnG0e00ku6zceQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.641 [XNIO-1 task-1] INNKcjG4RnG0e00ku6zceQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.647 [XNIO-1 task-1] gTg_L5OZR7eGXM-Q8UDvMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.647 [XNIO-1 task-1] gTg_L5OZR7eGXM-Q8UDvMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.647 [XNIO-1 task-1] gTg_L5OZR7eGXM-Q8UDvMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.658 [XNIO-1 task-1] eELgc2m7TaWQHwC0DP7VwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.658 [XNIO-1 task-1] eELgc2m7TaWQHwC0DP7VwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.658 [XNIO-1 task-1] eELgc2m7TaWQHwC0DP7VwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.669 [XNIO-1 task-1] biKpMLaPRaKpG1qQPcCbaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79ee20ab-7607-4bca-a642-ffcc5c20c6d3, base path is set to: null +08:11:45.670 [XNIO-1 task-1] biKpMLaPRaKpG1qQPcCbaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.670 [XNIO-1 task-1] biKpMLaPRaKpG1qQPcCbaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.670 [XNIO-1 task-1] biKpMLaPRaKpG1qQPcCbaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79ee20ab-7607-4bca-a642-ffcc5c20c6d3, base path is set to: null +08:11:45.670 [XNIO-1 task-1] biKpMLaPRaKpG1qQPcCbaA DEBUG com.networknt.schema.TypeValidator debug - validate( "79ee20ab-7607-4bca-a642-ffcc5c20c6d3", "79ee20ab-7607-4bca-a642-ffcc5c20c6d3", clientId) +08:11:45.676 [XNIO-1 task-1] 5ly-OocNToOTlU6VbuCHKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e +08:11:45.676 [XNIO-1 task-1] 5ly-OocNToOTlU6VbuCHKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.676 [XNIO-1 task-1] 5ly-OocNToOTlU6VbuCHKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.676 [XNIO-1 task-1] 5ly-OocNToOTlU6VbuCHKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e +08:11:45.678 [XNIO-1 task-1] d1ZNDbb1QCukolCXWtsgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e, base path is set to: null +08:11:45.678 [XNIO-1 task-1] d1ZNDbb1QCukolCXWtsgaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.679 [XNIO-1 task-1] d1ZNDbb1QCukolCXWtsgaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.679 [XNIO-1 task-1] d1ZNDbb1QCukolCXWtsgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e, base path is set to: null +08:11:45.679 [XNIO-1 task-1] d1ZNDbb1QCukolCXWtsgaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ae124697-1b06-42d2-8523-124adf4d125e", "ae124697-1b06-42d2-8523-124adf4d125e", clientId) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2cc802d7-8b81-4aac-913c-08ed706f47c5", {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d8aaa570-e741-4235-8741-46c10c75", {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.681 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d8aaa570-e741-4235-8741-46c10c75","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.682 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.682 [XNIO-1 task-1] _qF_AjwVS0u1UuIWDzCmIQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.683 [XNIO-1 task-1] U1PXxiuUS9OdnEgacBsjLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e, base path is set to: null +08:11:45.683 [XNIO-1 task-1] U1PXxiuUS9OdnEgacBsjLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.683 [XNIO-1 task-1] U1PXxiuUS9OdnEgacBsjLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.683 [XNIO-1 task-1] U1PXxiuUS9OdnEgacBsjLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e, base path is set to: null +08:11:45.684 [XNIO-1 task-1] U1PXxiuUS9OdnEgacBsjLA DEBUG com.networknt.schema.TypeValidator debug - validate( "ae124697-1b06-42d2-8523-124adf4d125e", "ae124697-1b06-42d2-8523-124adf4d125e", clientId) +08:11:45.685 [XNIO-1 task-1] VEp9pciGQCiH1GEQAreu5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.685 [XNIO-1 task-1] VEp9pciGQCiH1GEQAreu5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.685 [XNIO-1 task-1] VEp9pciGQCiH1GEQAreu5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.686 [XNIO-1 task-1] VEp9pciGQCiH1GEQAreu5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.707 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.707 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.707 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.707 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.707 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.707 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "2cc802d7-8b81-4aac-913c-08ed706f47c5", {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.708 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.708 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.708 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "ba0fad4d-bd92-4e8f-9663-fcfb4739", {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.708 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.708 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ba0fad4d-bd92-4e8f-9663-fcfb4739","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.708 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.708 [XNIO-1 task-1] fYMoUQOfSRC0bUeT79DAUg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.710 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.710 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.710 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad33beff-67f7-4799-954e-c6d474a4","clientDesc":"2cc802d7-8b81-4aac-913c-08ed706f47c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.711 [XNIO-1 task-1] ZrkZTlegRGC5qEfk-_hT8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.713 [XNIO-1 task-1] 455ORbNmQd6U9p-4q2rlWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e +08:11:45.713 [XNIO-1 task-1] 455ORbNmQd6U9p-4q2rlWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.714 [XNIO-1 task-1] 455ORbNmQd6U9p-4q2rlWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.714 [XNIO-1 task-1] 455ORbNmQd6U9p-4q2rlWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ae124697-1b06-42d2-8523-124adf4d125e +08:11:45.720 [XNIO-1 task-1] g8VAER4yQ8urVxdq65qYjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.721 [XNIO-1 task-1] g8VAER4yQ8urVxdq65qYjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.721 [XNIO-1 task-1] g8VAER4yQ8urVxdq65qYjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.721 [XNIO-1 task-1] g8VAER4yQ8urVxdq65qYjw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.727 [XNIO-1 task-1] 2eFqlVVdQqWVXZnLbhejaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.727 [XNIO-1 task-1] 2eFqlVVdQqWVXZnLbhejaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.727 [XNIO-1 task-1] 2eFqlVVdQqWVXZnLbhejaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.727 [XNIO-1 task-1] 2eFqlVVdQqWVXZnLbhejaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.733 [XNIO-1 task-1] 0dt5weaXSCGJY9OAFjh7Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.733 [XNIO-1 task-1] 0dt5weaXSCGJY9OAFjh7Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.734 [XNIO-1 task-1] 0dt5weaXSCGJY9OAFjh7Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.745 [XNIO-1 task-1] uwRgiYvPShyv3c8Qmg8DSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.745 [XNIO-1 task-1] uwRgiYvPShyv3c8Qmg8DSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.745 [XNIO-1 task-1] uwRgiYvPShyv3c8Qmg8DSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.745 [XNIO-1 task-1] uwRgiYvPShyv3c8Qmg8DSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.757 [XNIO-1 task-1] Gz5mybtTTa-mT9jsCj8yVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.757 [XNIO-1 task-1] Gz5mybtTTa-mT9jsCj8yVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.757 [XNIO-1 task-1] Gz5mybtTTa-mT9jsCj8yVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.757 [XNIO-1 task-1] Gz5mybtTTa-mT9jsCj8yVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.763 [XNIO-1 task-1] x7tFHCqOQj6RO9PAa38gMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14e49a64-b310-4e3b-825e-a8320e5d497c, base path is set to: null +08:11:45.763 [XNIO-1 task-1] x7tFHCqOQj6RO9PAa38gMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.764 [XNIO-1 task-1] x7tFHCqOQj6RO9PAa38gMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.764 [XNIO-1 task-1] x7tFHCqOQj6RO9PAa38gMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14e49a64-b310-4e3b-825e-a8320e5d497c, base path is set to: null +08:11:45.764 [XNIO-1 task-1] x7tFHCqOQj6RO9PAa38gMA DEBUG com.networknt.schema.TypeValidator debug - validate( "14e49a64-b310-4e3b-825e-a8320e5d497c", "14e49a64-b310-4e3b-825e-a8320e5d497c", clientId) +08:11:45.769 [XNIO-1 task-1] BfpdizyeTYCuNrKzuJ196g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.769 [XNIO-1 task-1] BfpdizyeTYCuNrKzuJ196g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.769 [XNIO-1 task-1] BfpdizyeTYCuNrKzuJ196g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.770 [XNIO-1 task-1] BfpdizyeTYCuNrKzuJ196g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.775 [XNIO-1 task-1] D6KBoaEyQ8CrR08mQ0APeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.775 [XNIO-1 task-1] D6KBoaEyQ8CrR08mQ0APeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.775 [XNIO-1 task-1] D6KBoaEyQ8CrR08mQ0APeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.776 [XNIO-1 task-1] D6KBoaEyQ8CrR08mQ0APeA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.782 [XNIO-1 task-1] PTo7H7JUQvOoSgvj8MRp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.782 [XNIO-1 task-1] PTo7H7JUQvOoSgvj8MRp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.782 [XNIO-1 task-1] PTo7H7JUQvOoSgvj8MRp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.782 [XNIO-1 task-1] PTo7H7JUQvOoSgvj8MRp6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.788 [XNIO-1 task-1] igsvuIbuQyKySJd9lqMLDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.788 [XNIO-1 task-1] igsvuIbuQyKySJd9lqMLDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.789 [XNIO-1 task-1] igsvuIbuQyKySJd9lqMLDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.794 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1d000f0b-00cc-46f0-b5ee-e11d05be3e78 +08:11:45.799 [XNIO-1 task-1] dmLKswlLQh2VQgrrKuzNww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.799 [XNIO-1 task-1] dmLKswlLQh2VQgrrKuzNww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.799 [XNIO-1 task-1] dmLKswlLQh2VQgrrKuzNww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.800 [XNIO-1 task-1] dmLKswlLQh2VQgrrKuzNww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.807 [XNIO-1 task-1] lrZkr3Z5QyWLIdQd2y7Zew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1d000f0b-00cc-46f0-b5ee-e11d05be3e78, base path is set to: null +08:11:45.807 [XNIO-1 task-1] lrZkr3Z5QyWLIdQd2y7Zew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.807 [XNIO-1 task-1] lrZkr3Z5QyWLIdQd2y7Zew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.807 [XNIO-1 task-1] lrZkr3Z5QyWLIdQd2y7Zew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1d000f0b-00cc-46f0-b5ee-e11d05be3e78, base path is set to: null +08:11:45.808 [XNIO-1 task-1] lrZkr3Z5QyWLIdQd2y7Zew DEBUG com.networknt.schema.TypeValidator debug - validate( "1d000f0b-00cc-46f0-b5ee-e11d05be3e78", "1d000f0b-00cc-46f0-b5ee-e11d05be3e78", clientId) +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG com.networknt.schema.TypeValidator debug - validate( "ba389e8b-beb1-4736-87af-500ac4fcecc4", {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.810 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG com.networknt.schema.TypeValidator debug - validate( "b3d4e551-1f2e-47ea-a9f2-ae45c36a", {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.811 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.811 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b3d4e551-1f2e-47ea-a9f2-ae45c36a","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.811 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.811 [XNIO-1 task-1] uJAHSNSPRu6_6T183pU5WA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.812 [XNIO-1 task-1] Y_2l_dYNT3mEkU069WwcHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.812 [XNIO-1 task-1] Y_2l_dYNT3mEkU069WwcHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.813 [XNIO-1 task-1] Y_2l_dYNT3mEkU069WwcHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.813 [XNIO-1 task-1] Y_2l_dYNT3mEkU069WwcHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.818 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.818 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.819 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28bec2bb-a27d-4ef7-8ddc-83519b8e","clientDesc":"ba389e8b-beb1-4736-87af-500ac4fcecc4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.820 [XNIO-1 task-1] HusJAZzCT4yL3FSKaJdLNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.821 [XNIO-1 task-1] pTkVmzE7TfmKnh2zq0AaXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d000f0b-00cc-46f0-b5ee-e11d05be3e78 +08:11:45.821 [XNIO-1 task-1] pTkVmzE7TfmKnh2zq0AaXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.821 [XNIO-1 task-1] pTkVmzE7TfmKnh2zq0AaXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.822 [XNIO-1 task-1] pTkVmzE7TfmKnh2zq0AaXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d000f0b-00cc-46f0-b5ee-e11d05be3e78 +08:11:45.822 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1d000f0b-00cc-46f0-b5ee-e11d05be3e78 +08:11:45.826 [XNIO-1 task-1] g5TUHfdyRLSN55IQ4qjcRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.827 [XNIO-1 task-1] g5TUHfdyRLSN55IQ4qjcRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.827 [XNIO-1 task-1] g5TUHfdyRLSN55IQ4qjcRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.838 [XNIO-1 task-1] 8mMsVTn7SsKz39ZyxrgbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a944f16c-6591-479f-b251-607a664b50b9 +08:11:45.838 [XNIO-1 task-1] 8mMsVTn7SsKz39ZyxrgbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.838 [XNIO-1 task-1] 8mMsVTn7SsKz39ZyxrgbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.839 [XNIO-1 task-1] 8mMsVTn7SsKz39ZyxrgbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a944f16c-6591-479f-b251-607a664b50b9 +08:11:45.841 [XNIO-1 task-1] N6Iqxe-nQS-f9OX3knFOUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.841 [XNIO-1 task-1] N6Iqxe-nQS-f9OX3knFOUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.841 [XNIO-1 task-1] N6Iqxe-nQS-f9OX3knFOUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.852 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.852 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.852 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.852 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c51cbb84-9072-4cc4-a10f-c571ad51","clientDesc":"e535ebad-dc18-4cc3-ac6b-280f29be9678","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.853 [XNIO-1 task-1] fhqRo_z9TsOejUdwyiLK5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.855 [XNIO-1 task-1] xo1QN8P4TLOB6QN2K7KKtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.855 [XNIO-1 task-1] xo1QN8P4TLOB6QN2K7KKtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.855 [XNIO-1 task-1] xo1QN8P4TLOB6QN2K7KKtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.855 [XNIO-1 task-1] xo1QN8P4TLOB6QN2K7KKtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.862 [XNIO-1 task-1] YbdDKzglTUupEybOkaoUfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.862 [XNIO-1 task-1] YbdDKzglTUupEybOkaoUfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.862 [XNIO-1 task-1] YbdDKzglTUupEybOkaoUfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.874 [XNIO-1 task-1] c7zN2cdITbi6o8HP3J-2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cd99f7b1-4326-4f88-b173-8ece23d37625 +08:11:45.874 [XNIO-1 task-1] c7zN2cdITbi6o8HP3J-2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.874 [XNIO-1 task-1] c7zN2cdITbi6o8HP3J-2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.874 [XNIO-1 task-1] c7zN2cdITbi6o8HP3J-2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cd99f7b1-4326-4f88-b173-8ece23d37625 +08:11:45.881 [XNIO-1 task-1] YicJX5U8R7-fW_a_BPyAMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.881 [XNIO-1 task-1] YicJX5U8R7-fW_a_BPyAMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.881 [XNIO-1 task-1] YicJX5U8R7-fW_a_BPyAMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.893 [XNIO-1 task-1] tQQQtDE6S-maiM5N3A7RKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.893 [XNIO-1 task-1] tQQQtDE6S-maiM5N3A7RKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.893 [XNIO-1 task-1] tQQQtDE6S-maiM5N3A7RKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.893 [XNIO-1 task-1] tQQQtDE6S-maiM5N3A7RKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:45.896 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - Pool stats (total=2, active=0, idle=2, waiting=0) +08:11:45.899 [XNIO-1 task-1] cxTsaUbuQi6c4lVStQPGHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.899 [XNIO-1 task-1] cxTsaUbuQi6c4lVStQPGHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.900 [XNIO-1 task-1] cxTsaUbuQi6c4lVStQPGHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.911 [XNIO-1 task-1] JdrQVck9Q8ymdNQyTWYAzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a944f16c-6591-479f-b251-607a664b50b9 +08:11:45.911 [XNIO-1 task-1] JdrQVck9Q8ymdNQyTWYAzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.911 [XNIO-1 task-1] JdrQVck9Q8ymdNQyTWYAzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.911 [XNIO-1 task-1] JdrQVck9Q8ymdNQyTWYAzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a944f16c-6591-479f-b251-607a664b50b9 +08:11:45.917 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.918 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.919 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.919 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.919 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6acde708-3fd9-431f-9c91-f0b724fa","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.919 [XNIO-1 task-1] 1rtfqjWDSa6xzejNX5K91A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.921 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.921 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.921 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.921 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.921 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.921 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "8e1729c9-f704-4006-9390-762352f955ac", {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.922 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.922 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.922 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "63150597-2d51-41c7-ba72-3758b655", {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.922 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.922 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"63150597-2d51-41c7-ba72-3758b655","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.922 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.922 [XNIO-1 task-1] nOFt_uWxTM2nZ_bVOTmiWg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.926 [XNIO-1 task-1] NFCqmIizSDyoSv-zGz2lHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.926 [XNIO-1 task-1] NFCqmIizSDyoSv-zGz2lHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.926 [XNIO-1 task-1] NFCqmIizSDyoSv-zGz2lHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.937 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.937 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.937 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.937 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.937 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"901340eb-fb2c-4477-a989-aacc0c02","clientDesc":"33c2cf74-0781-4a86-8944-1defed1d7f91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.938 [XNIO-1 task-1] sAqfzdMnQsS-vPGKlHeBXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:45.940 [XNIO-1 task-1] S8MpTeyVQvui5nbH3X6C8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.940 [XNIO-1 task-1] S8MpTeyVQvui5nbH3X6C8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.940 [XNIO-1 task-1] S8MpTeyVQvui5nbH3X6C8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.940 [XNIO-1 task-1] S8MpTeyVQvui5nbH3X6C8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.946 [XNIO-1 task-1] JhyPJsvoTA6CzZMnZdb78A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.946 [XNIO-1 task-1] JhyPJsvoTA6CzZMnZdb78A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.946 [XNIO-1 task-1] JhyPJsvoTA6CzZMnZdb78A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.947 [XNIO-1 task-1] JhyPJsvoTA6CzZMnZdb78A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:45.952 [XNIO-1 task-1] kBnLa8prTqWehWdourykDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/131415c2-d730-4bf6-8304-e2a9845c503a +08:11:45.953 [XNIO-1 task-1] kBnLa8prTqWehWdourykDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.953 [XNIO-1 task-1] kBnLa8prTqWehWdourykDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:45.953 [XNIO-1 task-1] kBnLa8prTqWehWdourykDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/131415c2-d730-4bf6-8304-e2a9845c503a +08:11:45.955 [XNIO-1 task-1] 2_RBCHimTjKSZrAzd7bzpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/131415c2-d730-4bf6-8304-e2a9845c503a, base path is set to: null +08:11:45.955 [XNIO-1 task-1] 2_RBCHimTjKSZrAzd7bzpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.955 [XNIO-1 task-1] 2_RBCHimTjKSZrAzd7bzpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.955 [XNIO-1 task-1] 2_RBCHimTjKSZrAzd7bzpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/131415c2-d730-4bf6-8304-e2a9845c503a, base path is set to: null +08:11:45.956 [XNIO-1 task-1] 2_RBCHimTjKSZrAzd7bzpA DEBUG com.networknt.schema.TypeValidator debug - validate( "131415c2-d730-4bf6-8304-e2a9845c503a", "131415c2-d730-4bf6-8304-e2a9845c503a", clientId) +08:11:45.957 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.957 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.957 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1e2b2692-d0db-4f76-b189-31869b2ed4a6", {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "09d42367-7a49-40c1-b60a-1f13f4c3", {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"09d42367-7a49-40c1-b60a-1f13f4c3","clientDesc":"1e2b2692-d0db-4f76-b189-31869b2ed4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:45.958 [XNIO-1 task-1] MMdksAbKSd6-R7luzREbjQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:45.960 [XNIO-1 task-1] UpRCAvsGTYyPuvkTmayjqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.960 [XNIO-1 task-1] UpRCAvsGTYyPuvkTmayjqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.960 [XNIO-1 task-1] UpRCAvsGTYyPuvkTmayjqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:45.971 [XNIO-1 task-1] dGqRBgzCQD6UfgjEMnU6cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/131415c2-d730-4bf6-8304-e2a9845c503a, base path is set to: null +08:11:45.971 [XNIO-1 task-1] dGqRBgzCQD6UfgjEMnU6cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.971 [XNIO-1 task-1] dGqRBgzCQD6UfgjEMnU6cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.971 [XNIO-1 task-1] dGqRBgzCQD6UfgjEMnU6cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/131415c2-d730-4bf6-8304-e2a9845c503a, base path is set to: null +08:11:45.971 [XNIO-1 task-1] dGqRBgzCQD6UfgjEMnU6cg DEBUG com.networknt.schema.TypeValidator debug - validate( "131415c2-d730-4bf6-8304-e2a9845c503a", "131415c2-d730-4bf6-8304-e2a9845c503a", clientId) +08:11:45.977 [XNIO-1 task-1] IqIkgKZTS-ehBdBMJh9lNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.978 [XNIO-1 task-1] IqIkgKZTS-ehBdBMJh9lNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.978 [XNIO-1 task-1] IqIkgKZTS-ehBdBMJh9lNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.983 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:45.989 [XNIO-1 task-1] ju4NJfipTH2G1p_9WjJ3jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1ad7222-4a72-4c67-af8b-4ac382bfadb9, base path is set to: null +08:11:45.989 [XNIO-1 task-1] ju4NJfipTH2G1p_9WjJ3jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:45.989 [XNIO-1 task-1] ju4NJfipTH2G1p_9WjJ3jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:45.989 [XNIO-1 task-1] ju4NJfipTH2G1p_9WjJ3jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1ad7222-4a72-4c67-af8b-4ac382bfadb9, base path is set to: null +08:11:45.989 [XNIO-1 task-1] ju4NJfipTH2G1p_9WjJ3jw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ad7222-4a72-4c67-af8b-4ac382bfadb9", "c1ad7222-4a72-4c67-af8b-4ac382bfadb9", clientId) +08:11:45.995 [XNIO-1 task-1] To-_ClB3RQmNvhnfTcWzsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.995 [XNIO-1 task-1] To-_ClB3RQmNvhnfTcWzsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.995 [XNIO-1 task-1] To-_ClB3RQmNvhnfTcWzsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:45.996 [XNIO-1 task-1] To-_ClB3RQmNvhnfTcWzsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.022 [XNIO-1 task-1] 2je7zlCvTdq7jTfAf02Imw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.022 [XNIO-1 task-1] 2je7zlCvTdq7jTfAf02Imw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.023 [XNIO-1 task-1] 2je7zlCvTdq7jTfAf02Imw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.023 [XNIO-1 task-1] 2je7zlCvTdq7jTfAf02Imw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.031 [XNIO-1 task-1] QVLeqxTTQLmecfI4me8VmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.031 [XNIO-1 task-1] QVLeqxTTQLmecfI4me8VmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.032 [XNIO-1 task-1] QVLeqxTTQLmecfI4me8VmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.049 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.049 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.049 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6cedd021-268c-4536-a44e-6add59a75803", {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1bddfc85-52ac-4e87-abd7-691425f1", {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1bddfc85-52ac-4e87-abd7-691425f1","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.050 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.051 [XNIO-1 task-1] sYuGi1X9QvW0_nG8bxmLrQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.054 [XNIO-1 task-1] UAZbH16AQP6xR4IkaTZWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a, base path is set to: null +08:11:46.054 [XNIO-1 task-1] UAZbH16AQP6xR4IkaTZWeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.054 [XNIO-1 task-1] UAZbH16AQP6xR4IkaTZWeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.054 [XNIO-1 task-1] UAZbH16AQP6xR4IkaTZWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a, base path is set to: null +08:11:46.054 [XNIO-1 task-1] UAZbH16AQP6xR4IkaTZWeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8d7eadb3-0b43-48b5-9e20-6c77954e6a5a", "8d7eadb3-0b43-48b5-9e20-6c77954e6a5a", clientId) +08:11:46.058 [XNIO-1 task-1] Ccp-EEc_SmqC3iVTH_QPHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:46.058 [XNIO-1 task-1] Ccp-EEc_SmqC3iVTH_QPHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.058 [XNIO-1 task-1] Ccp-EEc_SmqC3iVTH_QPHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.058 [XNIO-1 task-1] Ccp-EEc_SmqC3iVTH_QPHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:46.061 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.061 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.061 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1f21b8-957e-4ed4-94f8-36abc099","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.062 [XNIO-1 task-1] 58GGLuMsQaez0paNtA4i-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG com.networknt.schema.TypeValidator debug - validate( "33f43242-38f5-442a-bc7e-61a96b9fec44", {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG com.networknt.schema.TypeValidator debug - validate( "7bbdd53a-68dc-441c-a33f-82cea0bf", {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.065 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7bbdd53a-68dc-441c-a33f-82cea0bf","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.066 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.066 [XNIO-1 task-1] JlhTc6FnR6CBi1ZIkLUsww DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.069 [XNIO-1 task-1] D7O9BJOiQleus8CyjY1-4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.070 [XNIO-1 task-1] D7O9BJOiQleus8CyjY1-4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.070 [XNIO-1 task-1] D7O9BJOiQleus8CyjY1-4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.082 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.082 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.083 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"52f4c598-d33e-48f7-a1b2-e20898cc","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.084 [XNIO-1 task-1] v7pcgj0kQTWtLWVVf1CyhQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.086 [XNIO-1 task-1] fGQnnW00RLqga8e7rf7E8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a +08:11:46.086 [XNIO-1 task-1] fGQnnW00RLqga8e7rf7E8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.086 [XNIO-1 task-1] fGQnnW00RLqga8e7rf7E8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.086 [XNIO-1 task-1] fGQnnW00RLqga8e7rf7E8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a +08:11:46.088 [XNIO-1 task-1] 7G0fdjuYQwe3Y7fsN981ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.088 [XNIO-1 task-1] 7G0fdjuYQwe3Y7fsN981ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.088 [XNIO-1 task-1] 7G0fdjuYQwe3Y7fsN981ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.088 [XNIO-1 task-1] 7G0fdjuYQwe3Y7fsN981ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.096 [XNIO-1 task-1] Z-ps7MFRS1idQutKapuFKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb, base path is set to: null +08:11:46.096 [XNIO-1 task-1] Z-ps7MFRS1idQutKapuFKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.097 [XNIO-1 task-1] Z-ps7MFRS1idQutKapuFKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.097 [XNIO-1 task-1] Z-ps7MFRS1idQutKapuFKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb, base path is set to: null +08:11:46.097 [XNIO-1 task-1] Z-ps7MFRS1idQutKapuFKw DEBUG com.networknt.schema.TypeValidator debug - validate( "de7db4ea-d94d-45e0-b95d-266003b29fcb", "de7db4ea-d94d-45e0-b95d-266003b29fcb", clientId) +08:11:46.101 [XNIO-1 task-1] tuoy4nnJSe6ty3DBBtxRCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.101 [XNIO-1 task-1] tuoy4nnJSe6ty3DBBtxRCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.101 [XNIO-1 task-1] tuoy4nnJSe6ty3DBBtxRCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.101 [XNIO-1 task-1] tuoy4nnJSe6ty3DBBtxRCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.109 [XNIO-1 task-1] kjiB2djpQ9-wMoxpqU26xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.109 [XNIO-1 task-1] kjiB2djpQ9-wMoxpqU26xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.109 [XNIO-1 task-1] kjiB2djpQ9-wMoxpqU26xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.109 [XNIO-1 task-1] kjiB2djpQ9-wMoxpqU26xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.113 [XNIO-1 task-1] gjIA-SSDTP-nrqr_FZYBTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.113 [XNIO-1 task-1] gjIA-SSDTP-nrqr_FZYBTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.113 [XNIO-1 task-1] gjIA-SSDTP-nrqr_FZYBTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.113 [XNIO-1 task-1] gjIA-SSDTP-nrqr_FZYBTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.121 [XNIO-1 task-1] vyAtypD_Qceu3ZB3YTtsaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.121 [XNIO-1 task-1] vyAtypD_Qceu3ZB3YTtsaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.121 [XNIO-1 task-1] vyAtypD_Qceu3ZB3YTtsaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.121 [XNIO-1 task-1] vyAtypD_Qceu3ZB3YTtsaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.121 [XNIO-1 task-1] vyAtypD_Qceu3ZB3YTtsaw DEBUG com.networknt.schema.TypeValidator debug - validate( "8f57815a-bc4e-4673-8777-733a87453ac1", "8f57815a-bc4e-4673-8777-733a87453ac1", clientId) +08:11:46.124 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.124 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.124 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.124 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.124 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.124 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34", {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.124 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.125 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.125 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "6baac4a5-9cac-4379-80f0-d1fe0c11", {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.125 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.125 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6baac4a5-9cac-4379-80f0-d1fe0c11","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.125 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.125 [XNIO-1 task-1] E9bnyFdHTSehkRb5PHvDmw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.127 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.127 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d37c15-21d3-462f-b1e7-8f687a8b","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.128 [XNIO-1 task-1] 7gh5ET5MSIinYX1TiqaI0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.132 [XNIO-1 task-1] -lNatUqTSvmaEfkCilrKAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.132 [XNIO-1 task-1] -lNatUqTSvmaEfkCilrKAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.132 [XNIO-1 task-1] -lNatUqTSvmaEfkCilrKAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.132 [XNIO-1 task-1] -lNatUqTSvmaEfkCilrKAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.135 [XNIO-1 task-1] 1skramL0S5SgULzif1HTwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.135 [XNIO-1 task-1] 1skramL0S5SgULzif1HTwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.135 [XNIO-1 task-1] 1skramL0S5SgULzif1HTwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.151 [XNIO-1 task-1] 5HHIKE_nRfOgbhtX-WLDtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.151 [XNIO-1 task-1] 5HHIKE_nRfOgbhtX-WLDtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.151 [XNIO-1 task-1] 5HHIKE_nRfOgbhtX-WLDtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.164 [XNIO-1 task-1] xW9KEwrTRgGqOt6-yTQ3sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.164 [XNIO-1 task-1] xW9KEwrTRgGqOt6-yTQ3sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.164 [XNIO-1 task-1] xW9KEwrTRgGqOt6-yTQ3sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.164 [XNIO-1 task-1] xW9KEwrTRgGqOt6-yTQ3sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.164 [XNIO-1 task-1] xW9KEwrTRgGqOt6-yTQ3sA DEBUG com.networknt.schema.TypeValidator debug - validate( "8f57815a-bc4e-4673-8777-733a87453ac1", "8f57815a-bc4e-4673-8777-733a87453ac1", clientId) +08:11:46.167 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.167 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.167 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34", {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "e27fc9ca-a093-4d3e-8d60-0acf8b5d", {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.168 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e27fc9ca-a093-4d3e-8d60-0acf8b5d","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.169 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.169 [XNIO-1 task-1] qIxadlLNRi-NllbdnaFdpA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.172 [XNIO-1 task-1] -CAJkseaRXSKmtH6ygN1Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.172 [XNIO-1 task-1] -CAJkseaRXSKmtH6ygN1Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.172 [XNIO-1 task-1] -CAJkseaRXSKmtH6ygN1Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.173 [XNIO-1 task-1] -CAJkseaRXSKmtH6ygN1Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.173 [XNIO-1 task-1] -CAJkseaRXSKmtH6ygN1Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "8f57815a-bc4e-4673-8777-733a87453ac1", "8f57815a-bc4e-4673-8777-733a87453ac1", clientId) +08:11:46.175 [XNIO-1 task-1] xxvT97iDS9awe6XCedxWxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9981b7f1-6a15-4b05-9a70-7003a4ed7624 +08:11:46.175 [XNIO-1 task-1] xxvT97iDS9awe6XCedxWxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.175 [XNIO-1 task-1] xxvT97iDS9awe6XCedxWxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.175 [XNIO-1 task-1] xxvT97iDS9awe6XCedxWxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9981b7f1-6a15-4b05-9a70-7003a4ed7624 +08:11:46.181 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.181 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.181 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.182 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.182 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.182 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.183 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.183 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.183 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.183 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.184 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.184 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4196e976-bf97-4926-a8d5-28f04b97","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.184 [XNIO-1 task-1] CjHVahsDRa2tp_0MEskm0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.186 [XNIO-1 task-1] HlUHD7bbSr2d6LXoXrhAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.187 [XNIO-1 task-1] HlUHD7bbSr2d6LXoXrhAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.187 [XNIO-1 task-1] HlUHD7bbSr2d6LXoXrhAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.187 [XNIO-1 task-1] HlUHD7bbSr2d6LXoXrhAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.189 [XNIO-1 task-1] QYaFeewcTVOuBQRbRSI-EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.189 [XNIO-1 task-1] QYaFeewcTVOuBQRbRSI-EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.189 [XNIO-1 task-1] QYaFeewcTVOuBQRbRSI-EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.189 [XNIO-1 task-1] QYaFeewcTVOuBQRbRSI-EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1, base path is set to: null +08:11:46.189 [XNIO-1 task-1] QYaFeewcTVOuBQRbRSI-EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8f57815a-bc4e-4673-8777-733a87453ac1", "8f57815a-bc4e-4673-8777-733a87453ac1", clientId) +08:11:46.192 [XNIO-1 task-1] OpJMtkKeT-myBBm_9LNozA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.192 [XNIO-1 task-1] OpJMtkKeT-myBBm_9LNozA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.192 [XNIO-1 task-1] OpJMtkKeT-myBBm_9LNozA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.206 [XNIO-1 task-1] gmWQ5Xp5S6eQLhWPOacvDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.206 [XNIO-1 task-1] gmWQ5Xp5S6eQLhWPOacvDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.206 [XNIO-1 task-1] gmWQ5Xp5S6eQLhWPOacvDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.207 [XNIO-1 task-1] gmWQ5Xp5S6eQLhWPOacvDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.214 [XNIO-1 task-1] gY_IHgBoTu6yfE22yu6T1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.214 [XNIO-1 task-1] gY_IHgBoTu6yfE22yu6T1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.215 [XNIO-1 task-1] gY_IHgBoTu6yfE22yu6T1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.215 [XNIO-1 task-1] gY_IHgBoTu6yfE22yu6T1g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.223 [XNIO-1 task-1] UMc3TOslToiDoePNNktoZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e +08:11:46.223 [XNIO-1 task-1] UMc3TOslToiDoePNNktoZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.223 [XNIO-1 task-1] UMc3TOslToiDoePNNktoZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.223 [XNIO-1 task-1] UMc3TOslToiDoePNNktoZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e +08:11:46.227 [XNIO-1 task-1] 9weQvDFzSOq_yPWMafqz-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a, base path is set to: null +08:11:46.227 [XNIO-1 task-1] 9weQvDFzSOq_yPWMafqz-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.227 [XNIO-1 task-1] 9weQvDFzSOq_yPWMafqz-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.227 [XNIO-1 task-1] 9weQvDFzSOq_yPWMafqz-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a, base path is set to: null +08:11:46.227 [XNIO-1 task-1] 9weQvDFzSOq_yPWMafqz-w DEBUG com.networknt.schema.TypeValidator debug - validate( "8d7eadb3-0b43-48b5-9e20-6c77954e6a5a", "8d7eadb3-0b43-48b5-9e20-6c77954e6a5a", clientId) +08:11:46.230 [XNIO-1 task-1] vipYyjbmRl-C_8WpdsOHwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:46.230 [XNIO-1 task-1] vipYyjbmRl-C_8WpdsOHwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.230 [XNIO-1 task-1] vipYyjbmRl-C_8WpdsOHwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.230 [XNIO-1 task-1] vipYyjbmRl-C_8WpdsOHwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.233 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.234 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.234 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.234 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f134b13c-9840-468c-9f3b-41d588e1","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.234 [XNIO-1 task-1] 9GzQBMWGTRiP4Mw1UrH6Qg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.236 [XNIO-1 task-1] YG3CH4E5QIOAeFFEiUmq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.236 [XNIO-1 task-1] YG3CH4E5QIOAeFFEiUmq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.236 [XNIO-1 task-1] YG3CH4E5QIOAeFFEiUmq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.249 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.249 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "33f43242-38f5-442a-bc7e-61a96b9fec44", {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "75b1ea2b-8a66-4573-9574-f79d0fb0", {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.250 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"75b1ea2b-8a66-4573-9574-f79d0fb0","clientDesc":"33f43242-38f5-442a-bc7e-61a96b9fec44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.251 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.251 [XNIO-1 task-1] tCCWCW59RGilQ7cl79eyPg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.253 [XNIO-1 task-1] RxXd30PMSuqNeCKcqgcJPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1f301dab-a369-49c9-b380-becd2acee7f3, base path is set to: null +08:11:46.254 [XNIO-1 task-1] RxXd30PMSuqNeCKcqgcJPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.254 [XNIO-1 task-1] RxXd30PMSuqNeCKcqgcJPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.254 [XNIO-1 task-1] RxXd30PMSuqNeCKcqgcJPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1f301dab-a369-49c9-b380-becd2acee7f3, base path is set to: null +08:11:46.254 [XNIO-1 task-1] RxXd30PMSuqNeCKcqgcJPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f301dab-a369-49c9-b380-becd2acee7f3", "1f301dab-a369-49c9-b380-becd2acee7f3", clientId) +08:11:46.269 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.269 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.269 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.269 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.269 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.269 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG com.networknt.schema.TypeValidator debug - validate( "914473d1-ac96-4d92-8d59-4034451114c3", {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.270 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.270 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.270 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG com.networknt.schema.TypeValidator debug - validate( "ebe5a205-20d2-4833-94ec-3e4e5ade", {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.270 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.270 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ebe5a205-20d2-4833-94ec-3e4e5ade","clientDesc":"914473d1-ac96-4d92-8d59-4034451114c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.270 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.270 [XNIO-1 task-1] dp0zvwklTpCpzEoWQDZnQA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.274 [XNIO-1 task-1] rVxg0i9qQrCHSBiabCHUbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.274 [XNIO-1 task-1] rVxg0i9qQrCHSBiabCHUbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.274 [XNIO-1 task-1] rVxg0i9qQrCHSBiabCHUbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.274 [XNIO-1 task-1] rVxg0i9qQrCHSBiabCHUbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.285 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.286 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.286 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.287 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.287 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.288 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.288 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.292 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.292 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.293 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.293 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.293 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75738e8f-27c6-4468-9ade-ddfc662f","clientDesc":"a731885a-4846-4cd3-866e-6c899cb9efa8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.293 [XNIO-1 task-1] 8_3HJbd-TW2w8I3PHLaH6Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.296 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.296 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.296 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.296 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.297 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.297 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8e1729c9-f704-4006-9390-762352f955ac", {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.297 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.297 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.297 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "254d8242-d626-4b1e-a628-ccae3198", {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.297 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.297 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"254d8242-d626-4b1e-a628-ccae3198","clientDesc":"8e1729c9-f704-4006-9390-762352f955ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.298 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.298 [XNIO-1 task-1] lkOMPF12QjmlcG5ryqMf9Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.301 [XNIO-1 task-1] jx_g1NXFTzKBO7do3ZSrQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.301 [XNIO-1 task-1] jx_g1NXFTzKBO7do3ZSrQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.301 [XNIO-1 task-1] jx_g1NXFTzKBO7do3ZSrQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.326 [XNIO-1 task-1] 6iusYYP1T2iGzP5tSpEgYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b411f809-1e60-4a85-bb54-3d0f1e8c00d3, base path is set to: null +08:11:46.326 [XNIO-1 task-1] 6iusYYP1T2iGzP5tSpEgYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.326 [XNIO-1 task-1] 6iusYYP1T2iGzP5tSpEgYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.326 [XNIO-1 task-1] 6iusYYP1T2iGzP5tSpEgYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b411f809-1e60-4a85-bb54-3d0f1e8c00d3, base path is set to: null +08:11:46.326 [XNIO-1 task-1] 6iusYYP1T2iGzP5tSpEgYg DEBUG com.networknt.schema.TypeValidator debug - validate( "b411f809-1e60-4a85-bb54-3d0f1e8c00d3", "b411f809-1e60-4a85-bb54-3d0f1e8c00d3", clientId) +08:11:46.328 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:085ce6c0 +08:11:46.328 [XNIO-1 task-1] EHpZT9SaQ4-_S6eklIe97w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.329 [XNIO-1 task-1] EHpZT9SaQ4-_S6eklIe97w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.329 [XNIO-1 task-1] EHpZT9SaQ4-_S6eklIe97w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.329 [XNIO-1 task-1] EHpZT9SaQ4-_S6eklIe97w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.342 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.342 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.342 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.342 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.342 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.342 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.343 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.343 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.343 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.343 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.343 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.343 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"00904611-d6af-4a71-865a-c1ea7f8c","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.343 [XNIO-1 task-1] JETphVRsR0m8c-8Xgw2dcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.350 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.350 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.350 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "6cedd021-268c-4536-a44e-6add59a75803", {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "9950c5db-476e-47ab-ba97-4bc7927d", {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9950c5db-476e-47ab-ba97-4bc7927d","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.351 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.352 [XNIO-1 task-1] hM26FuJSTMW3IE8yHNq2ow DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.354 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.354 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.354 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.354 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.354 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.354 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.355 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.355 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.355 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.355 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.355 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.355 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16981e92-8695-4df4-9dcb-32f9e0f0","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.355 [XNIO-1 task-1] S9mPG3B_RVOfoq1ygLGJPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.357 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0ea402c4 +08:11:46.357 [XNIO-1 task-1] 5XDk9hmLTs2aiucNi_Q6hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.357 [XNIO-1 task-1] 5XDk9hmLTs2aiucNi_Q6hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.357 [XNIO-1 task-1] 5XDk9hmLTs2aiucNi_Q6hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.385 [XNIO-1 task-1] x46SpIw5T3Ozc0WPo_jqPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e, base path is set to: null +08:11:46.385 [XNIO-1 task-1] x46SpIw5T3Ozc0WPo_jqPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.385 [XNIO-1 task-1] x46SpIw5T3Ozc0WPo_jqPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.385 [XNIO-1 task-1] x46SpIw5T3Ozc0WPo_jqPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e, base path is set to: null +08:11:46.385 [XNIO-1 task-1] x46SpIw5T3Ozc0WPo_jqPw DEBUG com.networknt.schema.TypeValidator debug - validate( "87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e", "87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e", clientId) +08:11:46.388 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.388 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.388 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.388 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.388 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.388 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG com.networknt.schema.TypeValidator debug - validate( "6cedd021-268c-4536-a44e-6add59a75803", {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.388 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.389 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.389 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG com.networknt.schema.TypeValidator debug - validate( "2169e0bf-407d-4758-bee4-295c7a41", {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.389 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.389 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2169e0bf-407d-4758-bee4-295c7a41","clientDesc":"6cedd021-268c-4536-a44e-6add59a75803","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.389 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.389 [XNIO-1 task-1] Py1QBeqgStqfLNn2mhDKfg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.391 [XNIO-1 task-1] pcZHqmiHTE6dOHXAI4TOXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.394 [XNIO-1 task-1] pcZHqmiHTE6dOHXAI4TOXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.396 [XNIO-1 task-1] pcZHqmiHTE6dOHXAI4TOXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.396 [XNIO-1 task-1] pcZHqmiHTE6dOHXAI4TOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.410 [XNIO-1 task-1] uJrP3J9cS62Lgg_ClLqdxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e, base path is set to: null +08:11:46.410 [XNIO-1 task-1] uJrP3J9cS62Lgg_ClLqdxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.410 [XNIO-1 task-1] uJrP3J9cS62Lgg_ClLqdxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.410 [XNIO-1 task-1] uJrP3J9cS62Lgg_ClLqdxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e, base path is set to: null +08:11:46.410 [XNIO-1 task-1] uJrP3J9cS62Lgg_ClLqdxw DEBUG com.networknt.schema.TypeValidator debug - validate( "87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e", "87f92daf-8eca-44a9-9e2b-b3ff2fcb3b8e", clientId) +08:11:46.425 [XNIO-1 task-1] 5f0s0pPqQQqGc-ij0iS0Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.425 [XNIO-1 task-1] 5f0s0pPqQQqGc-ij0iS0Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.426 [XNIO-1 task-1] 5f0s0pPqQQqGc-ij0iS0Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.433 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:085ce6c0 +08:11:46.444 [XNIO-1 task-1] HHpPIUUfR-e1JAaySC_iBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a +08:11:46.444 [XNIO-1 task-1] HHpPIUUfR-e1JAaySC_iBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.444 [XNIO-1 task-1] HHpPIUUfR-e1JAaySC_iBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.444 [XNIO-1 task-1] HHpPIUUfR-e1JAaySC_iBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a +08:11:46.446 [XNIO-1 task-1] 1a5Y40MYT8eEhEDhtli3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.447 [XNIO-1 task-1] 1a5Y40MYT8eEhEDhtli3sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.447 [XNIO-1 task-1] 1a5Y40MYT8eEhEDhtli3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.452 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0b9840ad-ef7b-455b-9e22-1816d2c3dc62 +08:11:46.452 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0b9840ad-ef7b-455b-9e22-1816d2c3dc62 +08:11:46.459 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea402c4 +08:11:46.468 [XNIO-1 task-1] nAxcpwwASVuKIGsTx38mKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:46.468 [XNIO-1 task-1] nAxcpwwASVuKIGsTx38mKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.468 [XNIO-1 task-1] nAxcpwwASVuKIGsTx38mKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.468 [XNIO-1 task-1] nAxcpwwASVuKIGsTx38mKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:46.469 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:de7db4ea-d94d-45e0-b95d-266003b29fcb +08:11:46.493 [XNIO-1 task-1] -uOFHvxqTB2cTe_6r_NYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a +08:11:46.494 [XNIO-1 task-1] -uOFHvxqTB2cTe_6r_NYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.494 [XNIO-1 task-1] -uOFHvxqTB2cTe_6r_NYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.494 [XNIO-1 task-1] -uOFHvxqTB2cTe_6r_NYAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8d7eadb3-0b43-48b5-9e20-6c77954e6a5a +08:11:46.517 [XNIO-1 task-1] NNOfF23zRdOzfNlMnuC6TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.517 [XNIO-1 task-1] NNOfF23zRdOzfNlMnuC6TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.517 [XNIO-1 task-1] NNOfF23zRdOzfNlMnuC6TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.517 [XNIO-1 task-1] NNOfF23zRdOzfNlMnuC6TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.525 [XNIO-1 task-1] aQpwZA72TMuBLOq4PSMpvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/942aeace-981a-48c2-99f8-f9dbfe22fbba, base path is set to: null +08:11:46.525 [XNIO-1 task-1] aQpwZA72TMuBLOq4PSMpvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.525 [XNIO-1 task-1] aQpwZA72TMuBLOq4PSMpvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.526 [XNIO-1 task-1] aQpwZA72TMuBLOq4PSMpvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/942aeace-981a-48c2-99f8-f9dbfe22fbba, base path is set to: null +08:11:46.526 [XNIO-1 task-1] aQpwZA72TMuBLOq4PSMpvw DEBUG com.networknt.schema.TypeValidator debug - validate( "942aeace-981a-48c2-99f8-f9dbfe22fbba", "942aeace-981a-48c2-99f8-f9dbfe22fbba", clientId) +08:11:46.543 [XNIO-1 task-1] 1-mZsRDvRZOi9cjAzUHSxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.544 [XNIO-1 task-1] 1-mZsRDvRZOi9cjAzUHSxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.544 [XNIO-1 task-1] 1-mZsRDvRZOi9cjAzUHSxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.570 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.570 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.571 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.571 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.571 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.571 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "39b92547-dd25-4b14-8051-042054cf6eca", {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.576 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.577 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.577 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "621ee835-5183-4214-a00c-58aba30f", {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.577 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.577 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"621ee835-5183-4214-a00c-58aba30f","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.577 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.578 [XNIO-1 task-1] 1W1f_wPiTzeFxFC83BMbWw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.582 [XNIO-1 task-1] d-pKK-ypRkuhOtAUleFzOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2d2a637-6f93-4408-bb98-6c6e66892b32, base path is set to: null +08:11:46.582 [XNIO-1 task-1] d-pKK-ypRkuhOtAUleFzOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.582 [XNIO-1 task-1] d-pKK-ypRkuhOtAUleFzOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.583 [XNIO-1 task-1] d-pKK-ypRkuhOtAUleFzOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2d2a637-6f93-4408-bb98-6c6e66892b32, base path is set to: null +08:11:46.583 [XNIO-1 task-1] d-pKK-ypRkuhOtAUleFzOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a2d2a637-6f93-4408-bb98-6c6e66892b32", "a2d2a637-6f93-4408-bb98-6c6e66892b32", clientId) +08:11:46.587 [XNIO-1 task-1] h72rXgTrRfmG1T8AofH40A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/65ade9a5-bd65-4ad2-a0a5-6a3cf9b408ab +08:11:46.587 [XNIO-1 task-1] h72rXgTrRfmG1T8AofH40A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.587 [XNIO-1 task-1] h72rXgTrRfmG1T8AofH40A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.587 [XNIO-1 task-1] h72rXgTrRfmG1T8AofH40A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/65ade9a5-bd65-4ad2-a0a5-6a3cf9b408ab +08:11:46.605 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0ea402c4 +08:11:46.617 [XNIO-1 task-1] dtrGp_q5RRSXnYhymO39vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.617 [XNIO-1 task-1] dtrGp_q5RRSXnYhymO39vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.617 [XNIO-1 task-1] dtrGp_q5RRSXnYhymO39vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.617 [XNIO-1 task-1] dtrGp_q5RRSXnYhymO39vg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.625 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.625 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.625 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.626 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9784e2ac-3b5f-47d3-8882-0a6a8984","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.627 [XNIO-1 task-1] 3B7viDveTPOGlyM1_wBJrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG com.networknt.schema.TypeValidator debug - validate( "39b92547-dd25-4b14-8051-042054cf6eca", {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.630 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG com.networknt.schema.TypeValidator debug - validate( "92906ec2-8385-43f6-8ed4-d3a1aaca", {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.631 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.631 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"92906ec2-8385-43f6-8ed4-d3a1aaca","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.631 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.631 [XNIO-1 task-1] ZFY24MWYT0SR8-urxBQktA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.634 [XNIO-1 task-1] lMk_gjvhSiKKVGJ7RoQEIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.634 [XNIO-1 task-1] lMk_gjvhSiKKVGJ7RoQEIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.634 [XNIO-1 task-1] lMk_gjvhSiKKVGJ7RoQEIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.634 [XNIO-1 task-1] lMk_gjvhSiKKVGJ7RoQEIw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.636 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:45c93f7b +08:11:46.637 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:45c93f7b +08:11:46.653 [XNIO-1 task-1] qFrZTKkrQuWgB0hV1h08Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.653 [XNIO-1 task-1] qFrZTKkrQuWgB0hV1h08Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.653 [XNIO-1 task-1] qFrZTKkrQuWgB0hV1h08Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.653 [XNIO-1 task-1] qFrZTKkrQuWgB0hV1h08Ng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.662 [XNIO-1 task-1] Vm94SzYHRDubS9vNvrSYvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.662 [XNIO-1 task-1] Vm94SzYHRDubS9vNvrSYvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.663 [XNIO-1 task-1] Vm94SzYHRDubS9vNvrSYvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.692 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:45c93f7b +08:11:46.700 [XNIO-1 task-1] FaZzHkHSR9WOVesl6pPg2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.700 [XNIO-1 task-1] FaZzHkHSR9WOVesl6pPg2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.700 [XNIO-1 task-1] FaZzHkHSR9WOVesl6pPg2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.728 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.728 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.728 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "39b92547-dd25-4b14-8051-042054cf6eca", {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "79457cab-f425-4051-bfc4-7b507d20", {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"79457cab-f425-4051-bfc4-7b507d20","clientDesc":"39b92547-dd25-4b14-8051-042054cf6eca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.729 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.736 [XNIO-1 task-1] BVcpwUWyTW-IN31hFQ8DUQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.739 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.739 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.739 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.739 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36eebb8f-1b57-40b8-bfe4-0b9c474a","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.740 [XNIO-1 task-1] KxkDa6nWR7GCdmY0T2Yr5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.742 [XNIO-1 task-1] 9g0xFFpLQRm-Cy_zChMRCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.743 [XNIO-1 task-1] 9g0xFFpLQRm-Cy_zChMRCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.743 [XNIO-1 task-1] 9g0xFFpLQRm-Cy_zChMRCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.746 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea402c4 +08:11:46.749 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3cbf6f3c-c23d-49d2-8f93-9bc202612751 +08:11:46.776 [XNIO-1 task-1] ne3nPpOpTn6IBB5L9pa03Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.777 [XNIO-1 task-1] ne3nPpOpTn6IBB5L9pa03Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.777 [XNIO-1 task-1] ne3nPpOpTn6IBB5L9pa03Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.777 [XNIO-1 task-1] ne3nPpOpTn6IBB5L9pa03Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.785 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.786 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.786 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.786 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.786 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.786 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.786 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.786 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.787 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.787 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.787 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.787 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f348af8-efc0-4829-b294-a0d2cb9f","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.787 [XNIO-1 task-1] e6xF4AJsRaaXtBUpGS7q4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.791 [XNIO-1 task-1] VPVA-fygT2u-vjezkpA3qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.791 [XNIO-1 task-1] VPVA-fygT2u-vjezkpA3qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.792 [XNIO-1 task-1] VPVA-fygT2u-vjezkpA3qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.792 [XNIO-1 task-1] VPVA-fygT2u-vjezkpA3qg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.798 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f8745a00 +08:11:46.798 [XNIO-1 task-1] NVT_UPb9Sb-kndf6p-3VmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2d2a637-6f93-4408-bb98-6c6e66892b32, base path is set to: null +08:11:46.799 [XNIO-1 task-1] NVT_UPb9Sb-kndf6p-3VmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.799 [XNIO-1 task-1] NVT_UPb9Sb-kndf6p-3VmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.799 [XNIO-1 task-1] NVT_UPb9Sb-kndf6p-3VmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2d2a637-6f93-4408-bb98-6c6e66892b32, base path is set to: null +08:11:46.799 [XNIO-1 task-1] NVT_UPb9Sb-kndf6p-3VmA DEBUG com.networknt.schema.TypeValidator debug - validate( "a2d2a637-6f93-4408-bb98-6c6e66892b32", "a2d2a637-6f93-4408-bb98-6c6e66892b32", clientId) +08:11:46.818 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea402c4 +08:11:46.829 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.829 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "f543e2e9-f0a3-4af6-9b06-3b2782eb64bd", {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "fa741129-dbc5-4ab0-b8ef-0ec8ef8b", {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.830 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fa741129-dbc5-4ab0-b8ef-0ec8ef8b","clientDesc":"f543e2e9-f0a3-4af6-9b06-3b2782eb64bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.831 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.831 [XNIO-1 task-1] gJmzzhmCTSSsxZ2klxZeQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.833 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.833 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.833 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.834 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adc72258-fe55-4a25-b9da-0de4f308","clientDesc":"bccf10ed-9c3a-4a8c-82ce-0b53b4ce6e34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.835 [XNIO-1 task-1] VZXhJB_NTSy0j4trAdtTyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:46.837 [XNIO-1 task-1] uPKS0y-qRBWhgTND2CFYOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:46.855 [XNIO-1 task-1] PejGbl7LRmGjQM8x48SwAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.855 [XNIO-1 task-1] PejGbl7LRmGjQM8x48SwAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +08:11:46.882 [XNIO-1 task-1] au-HvIl4Tim-i46OeAqBMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +08:11:46.882 [XNIO-1 task-1] au-HvIl4Tim-i46OeAqBMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.882 [XNIO-1 task-1] au-HvIl4Tim-i46OeAqBMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.882 [XNIO-1 task-1] au-HvIl4Tim-i46OeAqBMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.882 [XNIO-1 task-1] au-HvIl4Tim-i46OeAqBMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.915 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:46.915 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + ... 13 more + +08:11:46.915 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.915 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.915 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.915 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "80a63171-8239-4a1b-b8cc-a6a82f80820b", {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "30f72956-f242-4e9f-8db0-a782ce29", {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"30f72956-f242-4e9f-8db0-a782ce29","clientDesc":"80a63171-8239-4a1b-b8cc-a6a82f80820b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:46.916 [XNIO-1 task-1] JXLr7l_KRYCLTdlP2kkMrA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:46.918 [XNIO-1 task-1] lD9JHMAWTaSHM2I21ojvqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/255885b6-d7d5-4d0c-877a-878ec3a5f4f2, base path is set to: null +08:11:46.918 [XNIO-1 task-1] lD9JHMAWTaSHM2I21ojvqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.918 [XNIO-1 task-1] lD9JHMAWTaSHM2I21ojvqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.918 [XNIO-1 task-1] lD9JHMAWTaSHM2I21ojvqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/255885b6-d7d5-4d0c-877a-878ec3a5f4f2, base path is set to: null +08:11:46.918 [XNIO-1 task-1] lD9JHMAWTaSHM2I21ojvqg DEBUG com.networknt.schema.TypeValidator debug - validate( "255885b6-d7d5-4d0c-877a-878ec3a5f4f2", "255885b6-d7d5-4d0c-877a-878ec3a5f4f2", clientId) +08:11:46.921 [XNIO-1 task-1] avUEXd8bQ8ql1RZU9CqoBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.921 [XNIO-1 task-1] avUEXd8bQ8ql1RZU9CqoBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.921 [XNIO-1 task-1] avUEXd8bQ8ql1RZU9CqoBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:46.921 [XNIO-1 task-1] avUEXd8bQ8ql1RZU9CqoBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f57815a-bc4e-4673-8777-733a87453ac1 +08:11:46.936 [XNIO-1 task-1] l55GLKrgRoK8l1U31Vndfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/255885b6-d7d5-4d0c-877a-878ec3a5f4f2, base path is set to: null +08:11:46.937 [XNIO-1 task-1] l55GLKrgRoK8l1U31Vndfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.937 [XNIO-1 task-1] l55GLKrgRoK8l1U31Vndfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.937 [XNIO-1 task-1] l55GLKrgRoK8l1U31Vndfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/255885b6-d7d5-4d0c-877a-878ec3a5f4f2, base path is set to: null +08:11:46.937 [XNIO-1 task-1] l55GLKrgRoK8l1U31Vndfg DEBUG com.networknt.schema.TypeValidator debug - validate( "255885b6-d7d5-4d0c-877a-878ec3a5f4f2", "255885b6-d7d5-4d0c-877a-878ec3a5f4f2", clientId) +08:11:46.939 [XNIO-1 task-1] mQ0Xk6FxSdGgg9zkbPK-Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.939 [XNIO-1 task-1] mQ0Xk6FxSdGgg9zkbPK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.939 [XNIO-1 task-1] mQ0Xk6FxSdGgg9zkbPK-Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.939 [XNIO-1 task-1] mQ0Xk6FxSdGgg9zkbPK-Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.945 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4ae783ec-7f28-471d-bf02-5bff18b1807a +08:11:46.963 [XNIO-1 task-1] tk9B1g4wTsuupr9s3rV1og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/255885b6-d7d5-4d0c-877a-878ec3a5f4f2, base path is set to: null +08:11:46.968 [XNIO-1 task-1] tk9B1g4wTsuupr9s3rV1og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:46.968 [XNIO-1 task-1] tk9B1g4wTsuupr9s3rV1og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:46.968 [XNIO-1 task-1] tk9B1g4wTsuupr9s3rV1og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/255885b6-d7d5-4d0c-877a-878ec3a5f4f2, base path is set to: null +08:11:46.968 [XNIO-1 task-1] tk9B1g4wTsuupr9s3rV1og DEBUG com.networknt.schema.TypeValidator debug - validate( "255885b6-d7d5-4d0c-877a-878ec3a5f4f2", "255885b6-d7d5-4d0c-877a-878ec3a5f4f2", clientId) +08:11:46.993 [XNIO-1 task-1] 88gwaGv9QJ6K8kB3pa-jng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.994 [XNIO-1 task-1] 88gwaGv9QJ6K8kB3pa-jng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.994 [XNIO-1 task-1] 88gwaGv9QJ6K8kB3pa-jng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:46.995 [XNIO-1 task-1] 88gwaGv9QJ6K8kB3pa-jng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.029 [XNIO-1 task-1] kXlNZDuMRGOgOAvkO5sCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.029 [XNIO-1 task-1] kXlNZDuMRGOgOAvkO5sCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.029 [XNIO-1 task-1] kXlNZDuMRGOgOAvkO5sCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.029 [XNIO-1 task-1] kXlNZDuMRGOgOAvkO5sCdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.041 [XNIO-1 task-1] FvZPDipdQcyEt-Cb-ldwcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.041 [XNIO-1 task-1] FvZPDipdQcyEt-Cb-ldwcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.041 [XNIO-1 task-1] FvZPDipdQcyEt-Cb-ldwcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.042 [XNIO-1 task-1] FvZPDipdQcyEt-Cb-ldwcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.052 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.052 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.052 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.053 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.053 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:47.053 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG com.networknt.schema.TypeValidator debug - validate( "a197d6e0-7cc8-4205-8b13-27f6cde5605a", {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:47.053 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.053 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.053 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9d64b-a008-46a8-9557-db6cc420", {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:47.053 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.054 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"33c9d64b-a008-46a8-9557-db6cc420","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.054 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +08:11:47.054 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +08:11:47.054 [XNIO-1 task-1] tP5mgZh2S0-ab2fdToWJew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +08:11:47.056 [XNIO-1 task-1] lACydgcqSl6spGVznkqWiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.057 [XNIO-1 task-1] lACydgcqSl6spGVznkqWiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.057 [XNIO-1 task-1] lACydgcqSl6spGVznkqWiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.058 [XNIO-1 task-1] lACydgcqSl6spGVznkqWiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.065 [XNIO-1 task-1] sIssNhGuTFGgXZWPaOLVzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ae783ec-7f28-471d-bf02-5bff18b1807a, base path is set to: null +08:11:47.065 [XNIO-1 task-1] sIssNhGuTFGgXZWPaOLVzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.065 [XNIO-1 task-1] sIssNhGuTFGgXZWPaOLVzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.065 [XNIO-1 task-1] sIssNhGuTFGgXZWPaOLVzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ae783ec-7f28-471d-bf02-5bff18b1807a, base path is set to: null +08:11:47.065 [XNIO-1 task-1] sIssNhGuTFGgXZWPaOLVzw DEBUG com.networknt.schema.TypeValidator debug - validate( "4ae783ec-7f28-471d-bf02-5bff18b1807a", "4ae783ec-7f28-471d-bf02-5bff18b1807a", clientId) +08:11:47.067 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.068 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.068 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.068 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "32ee0a54-86d4-4371-9658-3f7c5c46f657", {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e04a54b-5b93-4367-b680-240be19d", {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7e04a54b-5b93-4367-b680-240be19d","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.069 [XNIO-1 task-1] vZnxPtZAS72CoSMxOUw6SA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:47.071 [XNIO-1 task-1] kApLvwV0QNygEy93VJqzkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b411f809-1e60-4a85-bb54-3d0f1e8c00d3, base path is set to: null +08:11:47.071 [XNIO-1 task-1] kApLvwV0QNygEy93VJqzkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.071 [XNIO-1 task-1] kApLvwV0QNygEy93VJqzkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.072 [XNIO-1 task-1] kApLvwV0QNygEy93VJqzkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b411f809-1e60-4a85-bb54-3d0f1e8c00d3, base path is set to: null +08:11:47.072 [XNIO-1 task-1] kApLvwV0QNygEy93VJqzkA DEBUG com.networknt.schema.TypeValidator debug - validate( "b411f809-1e60-4a85-bb54-3d0f1e8c00d3", "b411f809-1e60-4a85-bb54-3d0f1e8c00d3", clientId) +08:11:47.075 [XNIO-1 task-1] JiOfNa6FRSig8TU-vj8AvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.075 [XNIO-1 task-1] JiOfNa6FRSig8TU-vj8AvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.075 [XNIO-1 task-1] JiOfNa6FRSig8TU-vj8AvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.075 [XNIO-1 task-1] JiOfNa6FRSig8TU-vj8AvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.085 [XNIO-1 task-1] qZZQS3jsQ9OawOBSZJLVYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/42fed491-7dd3-4844-acd3-3142c7688c19 +08:11:47.085 [XNIO-1 task-1] qZZQS3jsQ9OawOBSZJLVYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.086 [XNIO-1 task-1] qZZQS3jsQ9OawOBSZJLVYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.086 [XNIO-1 task-1] qZZQS3jsQ9OawOBSZJLVYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/42fed491-7dd3-4844-acd3-3142c7688c19 +08:11:47.091 [XNIO-1 task-1] IzwAXuMfTuqoLNoKTI2rSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.091 [XNIO-1 task-1] IzwAXuMfTuqoLNoKTI2rSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.091 [XNIO-1 task-1] IzwAXuMfTuqoLNoKTI2rSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.091 [XNIO-1 task-1] IzwAXuMfTuqoLNoKTI2rSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.102 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.103 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.103 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.103 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.103 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c3871f-93b8-478c-9cd2-09fe2f58","clientDesc":"32ee0a54-86d4-4371-9658-3f7c5c46f657","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.103 [XNIO-1 task-1] P3tB8aT9SmuzO-cdv4Cs2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:47.105 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f89a8fd-afe8-4832-a66a-14c7d736c1a6", {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2711a747-532c-41f6-abf6-748443dc", {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2711a747-532c-41f6-abf6-748443dc","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.106 [XNIO-1 task-1] q2gPQ1A2QN-YnLz0npAmmQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:47.108 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.109 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20e57944-2d62-4c90-8118-37978413","clientDesc":"b953776e-fb0b-4b47-8102-a02cc5f2a8b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.110 [XNIO-1 task-1] 8J7c0KIoR2uX67trWbOM0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:47.112 [XNIO-1 task-1] McqT1FpDQ9KNKkd6dQB0Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0b9840ad-ef7b-455b-9e22-1816d2c3dc62 +08:11:47.112 [XNIO-1 task-1] McqT1FpDQ9KNKkd6dQB0Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.112 [XNIO-1 task-1] McqT1FpDQ9KNKkd6dQB0Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.112 [XNIO-1 task-1] McqT1FpDQ9KNKkd6dQB0Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0b9840ad-ef7b-455b-9e22-1816d2c3dc62 +08:11:47.114 [XNIO-1 task-1] Qs-MizEcQBG-sl71_KkuuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5a5f07a3-154f-4a1c-9599-f99eee243c2d, base path is set to: null +08:11:47.114 [XNIO-1 task-1] Qs-MizEcQBG-sl71_KkuuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.114 [XNIO-1 task-1] Qs-MizEcQBG-sl71_KkuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.114 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea402c4 +08:11:47.114 [XNIO-1 task-1] Qs-MizEcQBG-sl71_KkuuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5a5f07a3-154f-4a1c-9599-f99eee243c2d, base path is set to: null +08:11:47.115 [XNIO-1 task-1] Qs-MizEcQBG-sl71_KkuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a5f07a3-154f-4a1c-9599-f99eee243c2d", "5a5f07a3-154f-4a1c-9599-f99eee243c2d", clientId) +08:11:47.123 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.123 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.123 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.124 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.124 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4f89a8fd-afe8-4832-a66a-14c7d736c1a6", {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4b7b3a3e-258d-4b46-9bd7-023e6f34", {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4b7b3a3e-258d-4b46-9bd7-023e6f34","clientDesc":"4f89a8fd-afe8-4832-a66a-14c7d736c1a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.125 [XNIO-1 task-1] dILCmrNBQw2iS6ZHU-pJ9Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:47.128 [XNIO-1 task-1] F7QuMLDbQsilFgHqVBE7tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.128 [XNIO-1 task-1] F7QuMLDbQsilFgHqVBE7tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.128 [XNIO-1 task-1] F7QuMLDbQsilFgHqVBE7tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.128 [XNIO-1 task-1] F7QuMLDbQsilFgHqVBE7tA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.132 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0ea402c4 +08:11:47.138 [XNIO-1 task-1] Z_qY4akyRDKMXD74c7XjEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b411f809-1e60-4a85-bb54-3d0f1e8c00d3, base path is set to: null +08:11:47.139 [XNIO-1 task-1] Z_qY4akyRDKMXD74c7XjEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.139 [XNIO-1 task-1] Z_qY4akyRDKMXD74c7XjEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.139 [XNIO-1 task-1] Z_qY4akyRDKMXD74c7XjEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b411f809-1e60-4a85-bb54-3d0f1e8c00d3, base path is set to: null +08:11:47.139 [XNIO-1 task-1] Z_qY4akyRDKMXD74c7XjEA DEBUG com.networknt.schema.TypeValidator debug - validate( "b411f809-1e60-4a85-bb54-3d0f1e8c00d3", "b411f809-1e60-4a85-bb54-3d0f1e8c00d3", clientId) +08:11:47.144 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.144 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.144 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG com.networknt.schema.TypeValidator debug - validate( "5785a136-50c3-4a6f-98a7-3f0392c246ac", {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e510e7e-b1d0-41e3-8e77-7cdf6cc8", {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7e510e7e-b1d0-41e3-8e77-7cdf6cc8","clientDesc":"5785a136-50c3-4a6f-98a7-3f0392c246ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.145 [XNIO-1 task-1] 86Jjf9bSSD6EBFGnK_djHA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:47.148 [XNIO-1 task-1] qzRDxC42SvKeA-8Q7Clc-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0b9840ad-ef7b-455b-9e22-1816d2c3dc62, base path is set to: null +08:11:47.148 [XNIO-1 task-1] qzRDxC42SvKeA-8Q7Clc-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.148 [XNIO-1 task-1] qzRDxC42SvKeA-8Q7Clc-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.148 [XNIO-1 task-1] qzRDxC42SvKeA-8Q7Clc-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0b9840ad-ef7b-455b-9e22-1816d2c3dc62, base path is set to: null +08:11:47.148 [XNIO-1 task-1] qzRDxC42SvKeA-8Q7Clc-A DEBUG com.networknt.schema.TypeValidator debug - validate( "0b9840ad-ef7b-455b-9e22-1816d2c3dc62", "0b9840ad-ef7b-455b-9e22-1816d2c3dc62", clientId) +08:11:47.155 [XNIO-1 task-1] CmVwiAwNTXG8pA4E8AeDuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/53f7d345-5ff5-409e-acc4-071de7d18a30, base path is set to: null +08:11:47.155 [XNIO-1 task-1] CmVwiAwNTXG8pA4E8AeDuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.155 [XNIO-1 task-1] CmVwiAwNTXG8pA4E8AeDuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.156 [XNIO-1 task-1] CmVwiAwNTXG8pA4E8AeDuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/53f7d345-5ff5-409e-acc4-071de7d18a30, base path is set to: null +08:11:47.156 [XNIO-1 task-1] CmVwiAwNTXG8pA4E8AeDuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "53f7d345-5ff5-409e-acc4-071de7d18a30", "53f7d345-5ff5-409e-acc4-071de7d18a30", clientId) +08:11:47.159 [XNIO-1 task-1] vHdMyRznS_S5tHb0-0DSDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1074d9a2-348d-4406-a548-f3bf05902e86 +08:11:47.159 [XNIO-1 task-1] vHdMyRznS_S5tHb0-0DSDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.159 [XNIO-1 task-1] vHdMyRznS_S5tHb0-0DSDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.159 [XNIO-1 task-1] vHdMyRznS_S5tHb0-0DSDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1074d9a2-348d-4406-a548-f3bf05902e86 +08:11:47.166 [XNIO-1 task-1] uNj1ZoVETQyhucMFSSLbVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.166 [XNIO-1 task-1] uNj1ZoVETQyhucMFSSLbVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.166 [XNIO-1 task-1] uNj1ZoVETQyhucMFSSLbVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.166 [XNIO-1 task-1] uNj1ZoVETQyhucMFSSLbVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.174 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f8745a00 +08:11:47.174 [XNIO-1 task-1] Z_o_paLhS66356k3nTVRpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3cbf6f3c-c23d-49d2-8f93-9bc202612751, base path is set to: null +08:11:47.175 [XNIO-1 task-1] Z_o_paLhS66356k3nTVRpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.175 [XNIO-1 task-1] Z_o_paLhS66356k3nTVRpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.175 [XNIO-1 task-1] Z_o_paLhS66356k3nTVRpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3cbf6f3c-c23d-49d2-8f93-9bc202612751, base path is set to: null +08:11:47.175 [XNIO-1 task-1] Z_o_paLhS66356k3nTVRpg DEBUG com.networknt.schema.TypeValidator debug - validate( "3cbf6f3c-c23d-49d2-8f93-9bc202612751", "3cbf6f3c-c23d-49d2-8f93-9bc202612751", clientId) +08:11:47.177 [XNIO-1 task-1] gx1U3OijTGi0Q5g2JqRwag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.177 [XNIO-1 task-1] gx1U3OijTGi0Q5g2JqRwag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.177 [XNIO-1 task-1] gx1U3OijTGi0Q5g2JqRwag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.177 [XNIO-1 task-1] gx1U3OijTGi0Q5g2JqRwag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.183 [XNIO-1 task-1] -ED8ncniSJCheJe7CyKOPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3cbf6f3c-c23d-49d2-8f93-9bc202612751 +08:11:47.184 [XNIO-1 task-1] -ED8ncniSJCheJe7CyKOPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.184 [XNIO-1 task-1] -ED8ncniSJCheJe7CyKOPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.184 [XNIO-1 task-1] -ED8ncniSJCheJe7CyKOPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3cbf6f3c-c23d-49d2-8f93-9bc202612751 +08:11:47.186 [XNIO-1 task-1] f1a6ealiQq-ePMlhMLn-qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.186 [XNIO-1 task-1] f1a6ealiQq-ePMlhMLn-qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.186 [XNIO-1 task-1] f1a6ealiQq-ePMlhMLn-qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.187 [XNIO-1 task-1] f1a6ealiQq-ePMlhMLn-qA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.193 [XNIO-1 task-1] 6cKPjs8IRgKGvx6WrcFypg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.193 [XNIO-1 task-1] 6cKPjs8IRgKGvx6WrcFypg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.193 [XNIO-1 task-1] 6cKPjs8IRgKGvx6WrcFypg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.193 [XNIO-1 task-1] 6cKPjs8IRgKGvx6WrcFypg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.199 [XNIO-1 task-1] 2GtsWvNpQ2eIsar_hbJ_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3cbf6f3c-c23d-49d2-8f93-9bc202612751, base path is set to: null +08:11:47.200 [XNIO-1 task-1] 2GtsWvNpQ2eIsar_hbJ_QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.200 [XNIO-1 task-1] 2GtsWvNpQ2eIsar_hbJ_QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.200 [XNIO-1 task-1] 2GtsWvNpQ2eIsar_hbJ_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3cbf6f3c-c23d-49d2-8f93-9bc202612751, base path is set to: null +08:11:47.200 [XNIO-1 task-1] 2GtsWvNpQ2eIsar_hbJ_QA DEBUG com.networknt.schema.TypeValidator debug - validate( "3cbf6f3c-c23d-49d2-8f93-9bc202612751", "3cbf6f3c-c23d-49d2-8f93-9bc202612751", clientId) +08:11:47.206 [XNIO-1 task-1] T3phPgriQPqm7yC2-lKzpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5704e666-37e6-45d3-8a99-8698328f0c27, base path is set to: null +08:11:47.206 [XNIO-1 task-1] T3phPgriQPqm7yC2-lKzpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.206 [XNIO-1 task-1] T3phPgriQPqm7yC2-lKzpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.206 [XNIO-1 task-1] T3phPgriQPqm7yC2-lKzpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5704e666-37e6-45d3-8a99-8698328f0c27, base path is set to: null +08:11:47.207 [XNIO-1 task-1] T3phPgriQPqm7yC2-lKzpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5704e666-37e6-45d3-8a99-8698328f0c27", "5704e666-37e6-45d3-8a99-8698328f0c27", clientId) +08:11:47.214 [XNIO-1 task-1] PwWgmgOpTL2i5y30WQiYbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.214 [XNIO-1 task-1] PwWgmgOpTL2i5y30WQiYbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.214 [XNIO-1 task-1] PwWgmgOpTL2i5y30WQiYbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.221 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea402c4 +08:11:47.227 [XNIO-1 task-1] pHn2TVgjSE2m9ORA4qwoeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.227 [XNIO-1 task-1] pHn2TVgjSE2m9ORA4qwoeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.227 [XNIO-1 task-1] pHn2TVgjSE2m9ORA4qwoeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.239 [XNIO-1 task-1] 9oNUriFLThCgYTie3B1plQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.239 [XNIO-1 task-1] 9oNUriFLThCgYTie3B1plQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.239 [XNIO-1 task-1] 9oNUriFLThCgYTie3B1plQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.254 [XNIO-1 task-1] NCdymW_PSGOBRzhHfBgmLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/476b91c7-5f33-4e9f-87ae-a9efe853ee8e +08:11:47.254 [XNIO-1 task-1] NCdymW_PSGOBRzhHfBgmLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.254 [XNIO-1 task-1] NCdymW_PSGOBRzhHfBgmLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.254 [XNIO-1 task-1] NCdymW_PSGOBRzhHfBgmLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/476b91c7-5f33-4e9f-87ae-a9efe853ee8e +08:11:47.258 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f8745a00 +08:11:47.261 [XNIO-1 task-1] _a_xkSUzTOGz6dEUFKFHJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.261 [XNIO-1 task-1] _a_xkSUzTOGz6dEUFKFHJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.262 [XNIO-1 task-1] _a_xkSUzTOGz6dEUFKFHJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.262 [XNIO-1 task-1] _a_xkSUzTOGz6dEUFKFHJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.268 [XNIO-1 task-1] pGzm8M-7TFWx63M5_Ak_qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a78337fb-beae-4ad0-b3a2-6b55dbeafad9, base path is set to: null +08:11:47.268 [XNIO-1 task-1] pGzm8M-7TFWx63M5_Ak_qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.268 [XNIO-1 task-1] pGzm8M-7TFWx63M5_Ak_qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.268 [XNIO-1 task-1] pGzm8M-7TFWx63M5_Ak_qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a78337fb-beae-4ad0-b3a2-6b55dbeafad9, base path is set to: null +08:11:47.268 [XNIO-1 task-1] pGzm8M-7TFWx63M5_Ak_qA DEBUG com.networknt.schema.TypeValidator debug - validate( "a78337fb-beae-4ad0-b3a2-6b55dbeafad9", "a78337fb-beae-4ad0-b3a2-6b55dbeafad9", clientId) +08:11:47.275 [XNIO-1 task-1] BGwQe3zeRqisKBJ421lPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.276 [XNIO-1 task-1] BGwQe3zeRqisKBJ421lPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.276 [XNIO-1 task-1] BGwQe3zeRqisKBJ421lPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.276 [XNIO-1 task-1] BGwQe3zeRqisKBJ421lPog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.283 [XNIO-1 task-1] 3oRkga29RhiiYdK1YhacUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.283 [XNIO-1 task-1] 3oRkga29RhiiYdK1YhacUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.283 [XNIO-1 task-1] 3oRkga29RhiiYdK1YhacUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.293 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:45c93f7b +08:11:47.294 [XNIO-1 task-1] gjLK53SjQC61oMIV8Fwc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2f691d89-78a3-4174-b8d3-56ddb5b2bb53 +08:11:47.295 [XNIO-1 task-1] gjLK53SjQC61oMIV8Fwc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.295 [XNIO-1 task-1] gjLK53SjQC61oMIV8Fwc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.295 [XNIO-1 task-1] gjLK53SjQC61oMIV8Fwc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2f691d89-78a3-4174-b8d3-56ddb5b2bb53 +08:11:47.302 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.302 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.302 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.302 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.303 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"365516ec-e0d1-4d95-8137-6e6cf2f3","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.304 [XNIO-1 task-1] iwba-JRUScGl-RUuh0nGbQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:47.308 [XNIO-1 task-1] dGzNCnO1T2KSyWu2LVsOgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.308 [XNIO-1 task-1] dGzNCnO1T2KSyWu2LVsOgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.308 [XNIO-1 task-1] dGzNCnO1T2KSyWu2LVsOgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.309 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0ea402c4 +08:11:47.320 [XNIO-1 task-1] ypvSCofBQ0uTonsdw90ZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.320 [XNIO-1 task-1] ypvSCofBQ0uTonsdw90ZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.320 [XNIO-1 task-1] ypvSCofBQ0uTonsdw90ZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.330 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:225b311d +08:11:47.338 [XNIO-1 task-1] YfGssWZkTwGOFN_3AALXYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.338 [XNIO-1 task-1] YfGssWZkTwGOFN_3AALXYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.338 [XNIO-1 task-1] YfGssWZkTwGOFN_3AALXYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.338 [XNIO-1 task-1] YfGssWZkTwGOFN_3AALXYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.344 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.345 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.345 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.345 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.345 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.345 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.345 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.345 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.347 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.349 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.349 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.349 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65401ead-7ade-4c91-8cbb-63f64f77","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.350 [XNIO-1 task-1] WvrcsC4sRwWI2Zy-rNHWDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:47.352 [XNIO-1 task-1] qDLtB61SQUauKp_qCEh4aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.352 [XNIO-1 task-1] qDLtB61SQUauKp_qCEh4aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.353 [XNIO-1 task-1] qDLtB61SQUauKp_qCEh4aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.360 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2a840d9e +08:11:47.363 [XNIO-1 task-1] _ce_CFfJRj6KqXHya6W3aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.364 [XNIO-1 task-1] _ce_CFfJRj6KqXHya6W3aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.364 [XNIO-1 task-1] _ce_CFfJRj6KqXHya6W3aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.364 [XNIO-1 task-1] _ce_CFfJRj6KqXHya6W3aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.373 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.373 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:225b311d +08:11:47.373 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.374 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0cbca64-a460-4975-acd9-579a8b26","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.375 [XNIO-1 task-1] JG_YWrIYRQe7KTk_p3ZHEA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG com.networknt.schema.TypeValidator debug - validate( "be6b75cc-3aa4-45ee-97ff-3a662d66f408", {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG com.networknt.schema.TypeValidator debug - validate( "b1d575e9-4e01-489f-801a-60da99a4", {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:47.378 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.379 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b1d575e9-4e01-489f-801a-60da99a4","clientDesc":"be6b75cc-3aa4-45ee-97ff-3a662d66f408","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.379 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.379 [XNIO-1 task-1] 3GVoZkyASR-JPYwyTTmgdg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:47.381 [XNIO-1 task-1] XQEbt93IQBqFOCVmzDfkGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ba412728-9531-4761-9eab-c21ce3292267, base path is set to: null +08:11:47.382 [XNIO-1 task-1] XQEbt93IQBqFOCVmzDfkGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.382 [XNIO-1 task-1] XQEbt93IQBqFOCVmzDfkGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.382 [XNIO-1 task-1] XQEbt93IQBqFOCVmzDfkGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ba412728-9531-4761-9eab-c21ce3292267, base path is set to: null +08:11:47.382 [XNIO-1 task-1] XQEbt93IQBqFOCVmzDfkGw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba412728-9531-4761-9eab-c21ce3292267", "ba412728-9531-4761-9eab-c21ce3292267", clientId) +08:11:47.386 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.386 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.386 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8222df6f-2348-4e40-983c-13999c1d437c", {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fd400a9e-f9c4-40ca-89c3-e42404fe", {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fd400a9e-f9c4-40ca-89c3-e42404fe","clientDesc":"8222df6f-2348-4e40-983c-13999c1d437c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.387 [XNIO-1 task-1] VrhSnTOJQnCW-PNaxhtN9Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:47.389 [XNIO-1 task-1] Wl4XlfuAQLuNCJbU-oYL7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ae783ec-7f28-471d-bf02-5bff18b1807a, base path is set to: null +08:11:47.389 [XNIO-1 task-1] Wl4XlfuAQLuNCJbU-oYL7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.389 [XNIO-1 task-1] Wl4XlfuAQLuNCJbU-oYL7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.389 [XNIO-1 task-1] Wl4XlfuAQLuNCJbU-oYL7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ae783ec-7f28-471d-bf02-5bff18b1807a, base path is set to: null +08:11:47.389 [XNIO-1 task-1] Wl4XlfuAQLuNCJbU-oYL7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4ae783ec-7f28-471d-bf02-5bff18b1807a", "4ae783ec-7f28-471d-bf02-5bff18b1807a", clientId) +08:11:47.395 [XNIO-1 task-1] WtVTupabQx2_0roALtIpUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.396 [XNIO-1 task-1] WtVTupabQx2_0roALtIpUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.396 [XNIO-1 task-1] WtVTupabQx2_0roALtIpUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.396 [XNIO-1 task-1] WtVTupabQx2_0roALtIpUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.402 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:225b311d +08:11:47.402 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:225b311d +08:11:47.402 [XNIO-1 task-1] QKWKjspQTSmxmXEEpr9t2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.402 [XNIO-1 task-1] QKWKjspQTSmxmXEEpr9t2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.402 [XNIO-1 task-1] QKWKjspQTSmxmXEEpr9t2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.408 [XNIO-1 task-1] sehhshVNTT2CD2_A7NKQWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d53a444d-f455-4961-b57e-12324f3ac32b, base path is set to: null +08:11:47.408 [XNIO-1 task-1] sehhshVNTT2CD2_A7NKQWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.408 [XNIO-1 task-1] sehhshVNTT2CD2_A7NKQWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.408 [XNIO-1 task-1] sehhshVNTT2CD2_A7NKQWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d53a444d-f455-4961-b57e-12324f3ac32b, base path is set to: null +08:11:47.408 [XNIO-1 task-1] sehhshVNTT2CD2_A7NKQWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d53a444d-f455-4961-b57e-12324f3ac32b", "d53a444d-f455-4961-b57e-12324f3ac32b", clientId) +08:11:47.410 [XNIO-1 task-1] RFoJ2KaWRbuZ8HgRMmO7lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d53a444d-f455-4961-b57e-12324f3ac32b +08:11:47.410 [XNIO-1 task-1] RFoJ2KaWRbuZ8HgRMmO7lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.410 [XNIO-1 task-1] RFoJ2KaWRbuZ8HgRMmO7lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.410 [XNIO-1 task-1] RFoJ2KaWRbuZ8HgRMmO7lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d53a444d-f455-4961-b57e-12324f3ac32b +08:11:47.414 [XNIO-1 task-1] iZGDdUzQQkW5ju0S7lRQzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.414 [XNIO-1 task-1] iZGDdUzQQkW5ju0S7lRQzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.414 [XNIO-1 task-1] iZGDdUzQQkW5ju0S7lRQzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.427 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f8745a00 +08:11:47.428 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.428 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.428 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.428 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.428 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3d855040-a2fd-4d68-91ad-5f5812d0","clientDesc":"a197d6e0-7cc8-4205-8b13-27f6cde5605a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.429 [XNIO-1 task-1] TH0BWwErSSuM_aDHSIuEbg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:47.431 [XNIO-1 task-1] 8p_1JxNnT12hSuWn6QnonA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/305c6f96-15fd-402e-8c13-b85a6930281d +08:11:47.431 [XNIO-1 task-1] 8p_1JxNnT12hSuWn6QnonA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.431 [XNIO-1 task-1] 8p_1JxNnT12hSuWn6QnonA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.431 [XNIO-1 task-1] 8p_1JxNnT12hSuWn6QnonA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/305c6f96-15fd-402e-8c13-b85a6930281d +08:11:47.437 [XNIO-1 task-1] GQtGUl0UQfi9Zzlfku1KyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.437 [XNIO-1 task-1] GQtGUl0UQfi9Zzlfku1KyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.437 [XNIO-1 task-1] GQtGUl0UQfi9Zzlfku1KyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.437 [XNIO-1 task-1] GQtGUl0UQfi9Zzlfku1KyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.443 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f8745a00 +08:11:47.445 [XNIO-1 task-1] 19zuLKvwS7WSXTlzw0OBMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.445 [XNIO-1 task-1] 19zuLKvwS7WSXTlzw0OBMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.445 [XNIO-1 task-1] 19zuLKvwS7WSXTlzw0OBMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.446 [XNIO-1 task-1] 19zuLKvwS7WSXTlzw0OBMw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.454 [XNIO-1 task-1] H0BDLRIsRHOi97hmcoRdGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ee93c038-3d9a-41b3-8c6c-1e7bb1026cd2, base path is set to: null +08:11:47.454 [XNIO-1 task-1] H0BDLRIsRHOi97hmcoRdGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.454 [XNIO-1 task-1] H0BDLRIsRHOi97hmcoRdGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +08:11:47.454 [XNIO-1 task-1] H0BDLRIsRHOi97hmcoRdGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ee93c038-3d9a-41b3-8c6c-1e7bb1026cd2, base path is set to: null +08:11:47.455 [XNIO-1 task-1] H0BDLRIsRHOi97hmcoRdGw DEBUG com.networknt.schema.TypeValidator debug - validate( "ee93c038-3d9a-41b3-8c6c-1e7bb1026cd2", "ee93c038-3d9a-41b3-8c6c-1e7bb1026cd2", clientId) +08:11:47.457 [XNIO-1 task-1] ruZCp59uSeC3x48nPPcaBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.457 [XNIO-1 task-1] ruZCp59uSeC3x48nPPcaBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.457 [XNIO-1 task-1] ruZCp59uSeC3x48nPPcaBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.463 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0319e2f7-bcdc-458e-ad2f-05e752b90dde +08:11:47.463 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:225b311d +08:11:47.471 [XNIO-1 task-1] y6B2pDIBRM68tQVpdpIdbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.471 [XNIO-1 task-1] y6B2pDIBRM68tQVpdpIdbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.471 [XNIO-1 task-1] y6B2pDIBRM68tQVpdpIdbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.472 [XNIO-1 task-1] y6B2pDIBRM68tQVpdpIdbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.478 [XNIO-1 task-1] 9IZL00RzRNGHsZa2q7i2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.478 [XNIO-1 task-1] 9IZL00RzRNGHsZa2q7i2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.478 [XNIO-1 task-1] 9IZL00RzRNGHsZa2q7i2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.478 [XNIO-1 task-1] 9IZL00RzRNGHsZa2q7i2cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.488 [XNIO-1 task-1] 88XxlQ1DQ2KkXWVKoCDJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7231885-f9f6-4581-870f-0afa0ba0d3bc +08:11:47.488 [XNIO-1 task-1] 88XxlQ1DQ2KkXWVKoCDJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +08:11:47.488 [XNIO-1 task-1] 88XxlQ1DQ2KkXWVKoCDJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +08:11:47.488 [XNIO-1 task-1] 88XxlQ1DQ2KkXWVKoCDJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7231885-f9f6-4581-870f-0afa0ba0d3bc +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.494 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.495 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.495 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.495 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.495 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5043feae-36ba-4e24-91f4-2fc54264","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +08:11:47.495 [XNIO-1 task-1] e6Moh-lGSnmwUemp0neTYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +08:11:47.498 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fb4533dd +08:11:47.499 [XNIO-1 task-1] 3cwtkISxSOiBeTd0Fgy_MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.500 [XNIO-1 task-1] 3cwtkISxSOiBeTd0Fgy_MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.501 [XNIO-1 task-1] 3cwtkISxSOiBeTd0Fgy_MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.501 [XNIO-1 task-1] 3cwtkISxSOiBeTd0Fgy_MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.507 [XNIO-1 task-1] 21w9J8SkQrOwJ4bBk4qXxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.507 [XNIO-1 task-1] 21w9J8SkQrOwJ4bBk4qXxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.508 [XNIO-1 task-1] 21w9J8SkQrOwJ4bBk4qXxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.520 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.520 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +08:11:47.520 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +08:11:47.520 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.520 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.521 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.521 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.521 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +08:11:47.521 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +08:11:47.521 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.521 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.521 [XNIO-1 task-1] SFI-jfVoQ2ar5glJznIzQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54875b8b-5a69-49af-8779-6028950c","clientDesc":"dda22eb0-9151-482d-b677-d1724b15bffa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) diff --git a/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..f00f551 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-code-1.log @@ -0,0 +1,1563 @@ +08:11:48.144 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.145 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.145 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.145 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.145 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.147 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:be098c10 +08:11:48.151 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.151 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.153 [XNIO-1 task-3] YUakhNi5S1GsfTLaa7RrGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jh3mnknRRhGjn3zyDCeRcg +08:11:48.156 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.157 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.157 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.157 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.157 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.157 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.157 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.159 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f5de37f +08:11:48.159 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f5de37f +08:11:48.162 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.168 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.168 [XNIO-1 task-3] Ps-Lz65nQ--WUFkhFEcDqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.171 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.171 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.171 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.171 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:48.172 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.172 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.172 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.172 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.172 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.176 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f5de37f +08:11:48.180 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.180 [XNIO-1 task-3] _IOPcG0kQTS6QpLaFxUx0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.186 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.186 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.186 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.186 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:48.187 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.187 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.187 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.187 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.187 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.195 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f5de37f +08:11:48.196 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.196 [XNIO-1 task-3] 1OxX2w0uTRSLBvf7bTJJIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.201 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.202 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.202 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.202 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG com.networknt.schema.TypeValidator debug - validate( "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", client_id) +08:11:48.202 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.202 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.202 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.202 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.203 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.210 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.211 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.213 [XNIO-1 task-3] pjTYr3H-QAWcd-yFBLkx3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xTTfX_yHQCqnB9Kz2hvFrg +08:11:48.235 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.235 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.236 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.236 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.236 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.236 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.236 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.236 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.242 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.242 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.243 [XNIO-1 task-3] jNAZCaEKQi2fKBQciG9eug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vzwE5yXyRqO0uKSLM6rWdQ +08:11:48.282 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.283 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.283 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.283 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.283 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.283 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.283 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.283 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.291 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.291 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.293 [XNIO-1 task-3] wxjCKh0FTI2tLHwdCS6i5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5oAIayeMSDGzPBL8DraJLg +08:11:48.296 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.296 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.296 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.296 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.296 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.297 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.297 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.297 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.304 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.305 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.305 [XNIO-1 task-3] PNLVFiMhRFmfTty7XOI64Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3Fsq8onKT3mSIIVRirs_jg +08:11:48.307 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.308 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.308 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.308 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.308 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.308 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.308 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.308 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.317 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.317 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.320 [XNIO-1 task-3] -qwDEg2-SeyF0IAsaf3gNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=g7d4nl_ZTWK3mPSa93sIJQ +08:11:48.340 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.341 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.348 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.349 [XNIO-1 task-3] VrAK7Gv4SwCKdONtk-jsYg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.352 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.352 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.352 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.352 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:48.352 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.353 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.353 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.353 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.353 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.359 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.359 [XNIO-1 task-3] 5J5drJOoR9Kw2-qbhHpqJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.363 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:12fe4fd3 +08:11:48.382 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.382 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.382 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.382 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:48.383 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.383 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.383 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.383 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.383 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.389 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.389 [XNIO-1 task-3] zct7twiKS6S4JH0juW1eaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.402 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:12fe4fd3 +08:11:48.410 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:12fe4fd3 +08:11:48.440 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0a179ec1-79d7-4400-9c06-bc9729e14740 +08:11:48.447 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.447 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.448 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.448 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b699189b-bcce-4250-8620-1ddb83e92767", "b699189b-bcce-4250-8620-1ddb83e92767", client_id) +08:11:48.448 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.448 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.448 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.448 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.450 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.456 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.456 [XNIO-1 task-3] d_b9AsTrRy6tAZDIL3ScbQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.462 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.462 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.462 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.463 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:48.463 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.463 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.463 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.463 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.463 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.469 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.469 [XNIO-1 task-3] xbQHY-7FSSmyd3tWdmF7Zg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.489 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.490 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.498 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.498 [XNIO-1 task-3] rC6bz_3ASCmVmirPwR-0ug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.551 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.552 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.552 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.552 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", client_id) +08:11:48.552 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.552 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.553 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.553 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.553 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.562 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.562 [XNIO-1 task-3] CSOUCkMTRd6bbchLHDkkgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.569 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ca6db6f9 +08:11:48.570 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ca6db6f9 +08:11:48.576 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dc1587c8-1bc7-4735-be6b-56d6699eba86 +08:11:48.588 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dcfbe954-fffe-4667-89bb-582e77e10809 +08:11:48.600 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:dcfbe954-fffe-4667-89bb-582e77e10809 +08:11:48.604 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.604 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.604 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.604 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.604 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.604 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.604 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.608 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.613 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.614 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.615 [XNIO-1 task-3] chfQfm6xSiyf9zlZj6aCVg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=26O5McZMQWCaSe9hzvj0hg +08:11:48.632 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.632 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.633 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.633 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.633 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.633 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.633 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.633 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.639 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.639 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.639 [XNIO-1 task-3] Tgg_HXocTYK_pReQvgB4_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TuAORKvYRyGZRrVsRJLkhw +08:11:48.659 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.659 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.660 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.660 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.660 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.660 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.660 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.660 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.666 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.667 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.667 [XNIO-1 task-3] Pb4NE1PYRVOoLcfrpkXd9A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fcLPvTekSDmCWRQt8w738Q +08:11:48.671 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.671 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.671 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.672 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:48.672 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:48.672 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:48.672 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:48.672 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:48.678 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.678 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.679 [XNIO-1 task-3] RdXqdzSvROi40ayR8V7g7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PKwnlGnmSjW0mfNmull4xw +08:11:48.709 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ca6db6f9 +08:11:48.745 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.745 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.745 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.745 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:48.745 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.745 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.746 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.746 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.746 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.753 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.753 [XNIO-1 task-3] kTBtl56VRlGsBA3e4i8UKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.781 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.781 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.782 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.782 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ad4b22a0-8a0c-43f6-9351-578475c406b3", "ad4b22a0-8a0c-43f6-9351-578475c406b3", client_id) +08:11:48.782 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.782 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.782 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.782 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.783 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.789 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.789 [XNIO-1 task-3] A8szlkrfQRib4zAYnzx4aQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.795 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.795 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.795 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.795 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG com.networknt.schema.TypeValidator debug - validate( "ad4b22a0-8a0c-43f6-9351-578475c406b3", "ad4b22a0-8a0c-43f6-9351-578475c406b3", client_id) +08:11:48.795 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.796 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.796 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.796 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.796 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.802 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.802 [XNIO-1 task-3] rXdVmlhxR0uNoycfbZbRAg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.806 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.807 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.807 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.808 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG com.networknt.schema.TypeValidator debug - validate( "ad4b22a0-8a0c-43f6-9351-578475c406b3", "ad4b22a0-8a0c-43f6-9351-578475c406b3", client_id) +08:11:48.808 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.808 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.808 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.808 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.808 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.814 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.814 [XNIO-1 task-3] atbNH0eiTxyNM10IffHP8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.829 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.830 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.830 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.831 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG com.networknt.schema.TypeValidator debug - validate( "ad4b22a0-8a0c-43f6-9351-578475c406b3", "ad4b22a0-8a0c-43f6-9351-578475c406b3", client_id) +08:11:48.831 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.831 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.831 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.831 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.831 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.836 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.837 [XNIO-1 task-3] sd_COeToSrako7n9-bdzkA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.847 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.847 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.847 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.847 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG com.networknt.schema.TypeValidator debug - validate( "ad4b22a0-8a0c-43f6-9351-578475c406b3", "ad4b22a0-8a0c-43f6-9351-578475c406b3", client_id) +08:11:48.847 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.848 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.848 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.848 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.848 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.854 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.854 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:48.854 [XNIO-1 task-3] lNCR8Ya3RlaRH0ayusjaww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ehS7iBUbQHicUXJotkFIXg +08:11:48.855 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9ea82791 +08:11:48.868 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.868 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:48.868 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.868 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:48.868 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.869 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.869 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.869 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.869 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.879 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.879 [XNIO-1 task-3] 2QXKcVpVQHqN00hZtCLbEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.887 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.887 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.887 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.887 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:48.887 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.888 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.888 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.888 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.888 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.894 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.894 [XNIO-1 task-3] M2qD8_3FQT-doA0ohtHYAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.898 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.898 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.898 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.899 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e70adf8c-4a75-4db6-8134-793fe5c80567", "e70adf8c-4a75-4db6-8134-793fe5c80567", client_id) +08:11:48.899 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.899 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.900 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.900 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.900 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.905 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:48.906 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7e741dca-8370-4cfb-8fb8-e061b5c91595 +08:11:48.906 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7e741dca-8370-4cfb-8fb8-e061b5c91595 +08:11:48.906 [XNIO-1 task-3] ajflr4OBRhOTDUkmfwlUYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1p-bCCQjTIiZpNYO4eG0aQ +08:11:48.943 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:48.951 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.951 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.951 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.951 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:48.951 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.952 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.952 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.952 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.952 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.958 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.958 [XNIO-1 task-3] eW4KveiVSF2OdF4YtTNKYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:48.990 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.990 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:48.990 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:48.991 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:48.991 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:48.991 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:48.991 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:48.991 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:48.991 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:48.997 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:48.997 [XNIO-1 task-3] 5-9lsYCSS4KEbItaGBVmRA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:49.030 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.031 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:49.031 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.031 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", client_id) +08:11:49.032 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:49.032 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:49.032 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:49.032 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:49.032 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:49.039 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:49.039 [XNIO-1 task-2] rVuQM95sSOiz42q6sUYWiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:49.057 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.057 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:49.057 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.058 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "T6LFEF42SpZ_umwy41c2ZDBxM3ufB5e9zAH30Q_ItLQ", "T6LFEF42SpZ_umwy41c2ZDBxM3ufB5e9zAH30Q_ItLQ", code_challenge) +08:11:49.058 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:49.058 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:49.058 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:49.058 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:49.059 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:49.059 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:49.062 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.062 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.062 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.062 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.062 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.062 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.062 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.063 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.066 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.066 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.067 [XNIO-1 task-2] 36zW5ACzR0Ce0n-YaRj6Hg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uaquDc0KRsCOJTWg9VgIxA +08:11:49.070 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:49.070 [XNIO-1 task-3] XeukgK4HQzKbZKbJc_o8Aw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:49.072 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG com.networknt.schema.TypeValidator debug - validate( "OsY-KJvGQJvUKfJVDHtkDBF1YE8HZjYf73oh6F9bEaE", "OsY-KJvGQJvUKfJVDHtkDBF1YE8HZjYf73oh6F9bEaE", code_challenge) +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:49.073 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:49.079 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.079 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.080 [XNIO-1 task-3] IyEhiaLLRpq10HmYW8dRFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k64kU1CoQb2jfzKuEnPvuQ +08:11:49.083 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.083 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.083 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.084 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7e741dca-8370-4cfb-8fb8-e061b5c91595", "7e741dca-8370-4cfb-8fb8-e061b5c91595", client_id) +08:11:49.084 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.084 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.084 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.084 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.084 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.090 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.090 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.090 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:49.090 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:49.091 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.091 [XNIO-1 task-3] ezTnia_hTtC4NFc9QX9swQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FhsPaeBURg20QL2ToIyDYQ +08:11:49.091 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.091 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.091 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.091 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.092 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.097 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.098 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.101 [XNIO-1 task-2] YnfMemjDRDWfvrI-2BK8fA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1Ek2daMHSAuPp88epbigaQ +08:11:49.123 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.124 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.124 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.124 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.124 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.124 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.124 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.125 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.126 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.132 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:49.132 [XNIO-1 task-2] uFv7DLVDQbassoyoyBU7Ig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:49.136 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.137 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:49.137 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.137 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:49.137 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:49.137 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:49.138 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:49.138 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:49.138 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:49.144 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:49.144 [XNIO-1 task-2] X2bkQaJdS9WixbPe13H3Iw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:49.147 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.147 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:49.147 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:49.148 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:49.149 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:49.149 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:49.149 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:49.149 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:49.149 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:49.156 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2646831f-1530-4529-9a5b-5fc53d2b9212 +08:11:49.159 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.159 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.160 [XNIO-1 task-2] G7mmGZyCRDG6wqv3unOolw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nPZNKHTWTwqzgE2K7TUYxA +08:11:49.164 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.165 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.165 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.165 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.165 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.165 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.166 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.166 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.168 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2646831f-1530-4529-9a5b-5fc53d2b9212 +08:11:49.175 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.175 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.176 [XNIO-1 task-2] dz6_HKa2TLyqYJS9R4ki-A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2an9DvGvQB6BrhwJIztAqQ +08:11:49.193 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.193 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.194 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.194 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.194 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.194 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.195 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.195 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.202 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.202 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.204 [XNIO-1 task-2] kpQsfURQT0CS5pJyN6LUdQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sOcI5bO5Q5mHrYlOjQqi7g +08:11:49.209 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.209 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.209 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.209 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG com.networknt.schema.TypeValidator debug - validate( "7e741dca-8370-4cfb-8fb8-e061b5c91595", "7e741dca-8370-4cfb-8fb8-e061b5c91595", client_id) +08:11:49.209 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.210 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.210 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.210 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.210 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.216 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.216 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.217 [XNIO-1 task-2] jtveGgnQQIaXx7z17KVZKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HUWPoNGCQXeHukxpCtfHcQ +08:11:49.239 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.239 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.239 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.239 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7e741dca-8370-4cfb-8fb8-e061b5c91595", "7e741dca-8370-4cfb-8fb8-e061b5c91595", client_id) +08:11:49.239 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.239 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.240 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.240 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.240 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.246 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.246 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.246 [XNIO-1 task-2] e0pMvfF8RRmBUxCEWlSHEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fitMz6UPSymwG8P8CYaBTQ +08:11:49.251 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.251 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.251 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:49.251 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:49.252 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:49.252 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:49.252 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:49.252 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:49.252 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:49.260 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:49.260 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:49.261 [XNIO-1 task-2] 8cJSxLz8SFutFO7uTZrB2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=q6_aI0AjQz-pfYyxUM-7mQ +08:11:51.248 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.248 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.248 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.249 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.249 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.249 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.249 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.249 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.252 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "GVBHRC0SmTbUEcavzMxqudAIgIt3VuUa7ZzBLcYIxy0", "GVBHRC0SmTbUEcavzMxqudAIgIt3VuUa7ZzBLcYIxy0", code_challenge) +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.253 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.255 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.258 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.258 [XNIO-1 task-2] NqAAT6niSE65KWfRTEP-dA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.261 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.261 [XNIO-1 task-3] I90viZguSIufh32HdXZQ2Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +08:11:51.267 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.267 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.267 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.267 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.267 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG com.networknt.schema.TypeValidator debug - validate( "5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053", "5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053", client_id) +08:11:51.267 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.268 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.268 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +08:11:51.268 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.268 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.268 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.275 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.275 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.275 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.275 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.276 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7e741dca-8370-4cfb-8fb8-e061b5c91595 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +08:11:51.276 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.276 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG com.networknt.schema.TypeValidator debug - validate( "fgeaCglElFQZAHat7Da5GNjofWvR5LHe2e5FQ2AkBxQ", "fgeaCglElFQZAHat7Da5GNjofWvR5LHe2e5FQ2AkBxQ", code_challenge) +08:11:51.276 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.276 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.276 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.277 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.277 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.277 [XNIO-1 task-3] 3HNnRB54SPCWHc9okjlT1g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dqmuFJxtTpqu4S9vywf0-A +08:11:51.281 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.282 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.282 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.285 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.285 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.285 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.285 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.285 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.286 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.286 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.286 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.289 [XNIO-1 task-2] g0JXK_lDQaG4cHr8KlPLTA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=u-jXCXKSSQeG9vuxWQR3mA +08:11:51.291 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.291 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.291 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.292 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG com.networknt.schema.TypeValidator debug - validate( "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", client_id) +08:11:51.292 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.292 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.293 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.293 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.293 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.298 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.298 [XNIO-1 task-3] xjNUiVz8Tk2wosYw1iG9Vg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.298 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.298 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.301 [XNIO-1 task-2] a1bOpev8RZKoblNE2J1slg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=b8eS5SiOQReYymmTjNRZfg +08:11:51.305 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.305 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.305 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.306 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de2a4836-399f-4be4-a81f-eaac05cd6dbe", "de2a4836-399f-4be4-a81f-eaac05cd6dbe", client_id) +08:11:51.306 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.306 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.306 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.306 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.306 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.306 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.306 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.306 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.306 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG com.networknt.schema.TypeValidator debug - validate( "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", client_id) +08:11:51.307 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.307 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.307 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.307 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.307 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.316 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.316 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.316 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.316 [XNIO-1 task-2] GYUzidSYT3CkvcF2DjWrTQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.317 [XNIO-1 task-3] 9H0nLiZQTWCAnXNomQ15bA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=J9fkXjyRRrqb00TTAg6WNg +08:11:51.320 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.320 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.320 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.320 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ad4b22a0-8a0c-43f6-9351-578475c406b3", "ad4b22a0-8a0c-43f6-9351-578475c406b3", client_id) +08:11:51.321 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.321 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.321 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.321 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.322 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.325 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.326 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.326 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.326 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG com.networknt.schema.TypeValidator debug - validate( "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", "52cc6cdd-e417-4c76-b638-f82ed6b5ac85", client_id) +08:11:51.328 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.328 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.328 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.328 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.328 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.328 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.328 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.329 [XNIO-1 task-2] coc9HrItR6u7_KsTe43sqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FMf2ODSQQkCZiRHwl-bTQA +08:11:51.335 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.335 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.336 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.336 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.336 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.336 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.336 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.336 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.343 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.344 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.344 [XNIO-1 task-3] ZdoOGbBGTQ65Kq3uVm55cw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2RVT8dS0RWuKRfw5BxjIGQ +08:11:51.348 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.348 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.348 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.348 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:51.349 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.350 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.350 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.350 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.354 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.354 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:84b28702 +08:11:51.355 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:84b28702 +08:11:51.356 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.356 [XNIO-1 task-2] FCKuek3OQt6gVYiSa5bIGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.361 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.361 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.362 [XNIO-1 task-3] ei1imm-DRpe2E9mVyE3Rag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wsyxVNosQeCC8bMEQSoOLg +08:11:51.366 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ca6db6f9 +08:11:51.369 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.369 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.369 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.369 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:51.369 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.369 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.369 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.370 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.370 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.376 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.377 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.377 [XNIO-1 task-3] 3kNWvcY5QHOfXqhA9ePWaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=X58fCg4jQra4g7V9w9ljkA +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.384 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG com.networknt.schema.TypeValidator debug - validate( "hyVR8-tzwox1A-ZDMsEZWuzRLXO7rkgHuqk0BranTiY", "hyVR8-tzwox1A-ZDMsEZWuzRLXO7rkgHuqk0BranTiY", code_challenge) +08:11:51.384 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:51.384 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.384 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.384 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.385 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.385 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.385 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.385 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.385 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.385 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.388 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:84b28702 +08:11:51.391 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.391 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.392 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.392 [XNIO-1 task-3] 4BdhiW56Q3ubDTs48XJZLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.395 [XNIO-1 task-2] 8_9obEV7Tz615nzl4v53yg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pzHw6qLQQ6qQHRuGCOw2dg +08:11:51.425 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.426 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.426 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.426 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.426 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a5EQEN0xuy9WrRlXX7n9QH3ddHkp0X9XXbCJbooXJa0", "a5EQEN0xuy9WrRlXX7n9QH3ddHkp0X9XXbCJbooXJa0", code_challenge) +08:11:51.427 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.427 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.427 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.427 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.427 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.427 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.427 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.427 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.432 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +08:11:51.433 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.433 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.433 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.433 [XNIO-1 task-2] 9lgtId5QQeOsxehA_BsiAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fUQp1fSuSL-CXY8jFq5QgA + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +08:11:51.433 [XNIO-1 task-3] dFHKdHpLTdazlVcxvnUgHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WSr_b7uNRV-P0oedd84_ng +08:11:51.439 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.439 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +08:11:51.439 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.440 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.440 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "2t8ZrCSO6f4sf67vj3co8MOSFEwRaXOXZyg7ZeXUqPI", "2t8ZrCSO6f4sf67vj3co8MOSFEwRaXOXZyg7ZeXUqPI", code_challenge) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +08:11:51.442 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) + +08:11:51.443 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.443 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.443 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.443 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.443 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.449 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.449 [XNIO-1 task-3] R525es3dSVGgMlOB2p91Pg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.461 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.461 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.461 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.461 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.461 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.461 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.462 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG com.networknt.schema.TypeValidator debug - validate( "7e741dca-8370-4cfb-8fb8-e061b5c91595", "7e741dca-8370-4cfb-8fb8-e061b5c91595", client_id) +08:11:51.462 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:51.462 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.462 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.462 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.462 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.462 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.462 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.462 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.462 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.462 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.462 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.466 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:84b28702 +08:11:51.467 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.467 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.468 [XNIO-1 task-3] 5jv38HC0S_yguMWEZy2K3g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eXxmbaLeQrS0YIEenCG7FA +08:11:51.469 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.469 [XNIO-1 task-2] YnqCnCGlSUylnx36ghTupw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.472 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.472 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.472 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.473 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "7e741dca-8370-4cfb-8fb8-e061b5c91595", "7e741dca-8370-4cfb-8fb8-e061b5c91595", client_id) +08:11:51.473 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.473 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.473 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.473 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.473 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.479 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.479 [XNIO-1 task-2] WGpWYx7QT0aM8SzFqNf9Lw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.488 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.489 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.489 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.489 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053", "5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053", client_id) +08:11:51.489 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.489 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.490 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.490 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.490 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.496 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.496 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.496 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.496 [XNIO-1 task-2] 8nFTMlrCRnKUcSbAuuLrnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.496 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.496 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG com.networknt.schema.TypeValidator debug - validate( "6fae42b4-1de9-4df6-bccf-61c8019a9d98", "6fae42b4-1de9-4df6-bccf-61c8019a9d98", client_id) +08:11:51.496 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.496 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.497 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.497 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.497 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.497 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.501 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.501 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.501 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.501 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.502 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.502 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.502 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.502 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.503 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.503 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.504 [XNIO-1 task-3] zz34fiJZS2Cu0AbFV3qvWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pD7wqwE-QFaa4XW7zkOAXw +08:11:51.507 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.507 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.508 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.508 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.508 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.508 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.508 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.508 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.508 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.508 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.508 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.509 [XNIO-1 task-2] 6UksZMKkSkyAFtJIkN30YA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HZ650pY7TpOngdweT-0NMA +08:11:51.514 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.514 [XNIO-1 task-3] G1r5sMzqQhqFgu5seHTF_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053", "5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053", client_id) +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.516 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.522 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.522 [XNIO-1 task-3] CrGuE3OkRz6CmtgwWks40Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.530 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.530 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.530 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.530 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG com.networknt.schema.TypeValidator debug - validate( "e70adf8c-4a75-4db6-8134-793fe5c80567", "e70adf8c-4a75-4db6-8134-793fe5c80567", client_id) +08:11:51.531 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.531 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.531 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.531 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.531 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.538 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.538 [XNIO-1 task-3] nCCkfQsHROadfJBA7G4GnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.543 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.543 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.543 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.543 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "HgUMs5JdVDmuSt6Li8RsTQj5eS825BSEXHkEkUZnMs8", "HgUMs5JdVDmuSt6Li8RsTQj5eS825BSEXHkEkUZnMs8", code_challenge) +08:11:51.543 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.543 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.544 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.545 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.545 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.545 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.552 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.552 [XNIO-1 task-3] x9Flp7-URLm1Z5Gp265-eQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.559 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.559 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.560 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.560 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG com.networknt.schema.TypeValidator debug - validate( "idYhuZV6URUnXzW0SGAyNy77lfXbRoeqaffMlaVxojY", "idYhuZV6URUnXzW0SGAyNy77lfXbRoeqaffMlaVxojY", code_challenge) +08:11:51.560 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.560 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.561 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.561 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.561 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.561 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.569 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.569 [XNIO-1 task-3] zNeIEBwdSp6nO_Nh4_hyOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.572 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.573 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.573 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.573 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "ZbZrp8NJ1CPDF0r1Uf_ol80mF5SHmoKSbRXZeM2wRlg", "ZbZrp8NJ1CPDF0r1Uf_ol80mF5SHmoKSbRXZeM2wRlg", code_challenge) +08:11:51.574 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.574 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.574 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.574 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.574 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.575 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.580 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:997a3f8e-94c5-4830-a9ee-c72a7663ffa7 +08:11:51.582 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.582 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.586 [XNIO-1 task-3] cKUZ5ETUStamhV-K0av2Pg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LpD7pAApRyCs4i3uIeRhxQ +08:11:51.595 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.596 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.596 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.596 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Zo8PslrkESD1EnQehBFNxqLG01epCdWXOQolJquIVUU", "Zo8PslrkESD1EnQehBFNxqLG01epCdWXOQolJquIVUU", code_challenge) +08:11:51.596 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.596 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.596 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.597 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.597 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.597 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:51.603 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.603 [XNIO-1 task-3] -tNc3jHGScKQj_uiCHbxTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +08:11:51.610 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG com.networknt.schema.TypeValidator debug - validate( "58f0c3cb-1168-4e2e-afb4-f91426a9cf83", "58f0c3cb-1168-4e2e-afb4-f91426a9cf83", client_id) +08:11:51.610 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +08:11:51.610 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +08:11:51.610 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.610 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +08:11:51.619 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.619 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.620 [XNIO-1 task-3] 7R5fnal2TiKGHUNsv5Iplg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wAorJrGGSLiPg2Vt5BDoTg +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.649 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.649 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.649 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG com.networknt.schema.TypeValidator debug - validate( "e70adf8c-4a75-4db6-8134-793fe5c80567", "e70adf8c-4a75-4db6-8134-793fe5c80567", client_id) +08:11:51.649 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG com.networknt.schema.TypeValidator debug - validate( "gvd5tN01HemgCinpkhqfDwvlEckw-VZO5mraVfG4-o4", "gvd5tN01HemgCinpkhqfDwvlEckw-VZO5mraVfG4-o4", code_challenge) +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.649 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.649 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:51.650 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.650 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.650 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.650 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.650 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.650 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:22151fe4 +08:11:51.652 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7e741dca-8370-4cfb-8fb8-e061b5c91595 +08:11:51.656 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.656 [XNIO-1 task-3] Cezd_NnRQtqxVzPsmvlFDA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.657 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.657 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.659 [XNIO-1 task-2] qjJcsZLBRMaGlZeT9IfiuA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kaapTQLxRNasXCO-yMd56w +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e70adf8c-4a75-4db6-8134-793fe5c80567", "e70adf8c-4a75-4db6-8134-793fe5c80567", client_id) +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.660 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.665 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:22151fe4 +08:11:51.668 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.668 [XNIO-1 task-2] cyI5IHp6SzGP5ce1bsM_pQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.671 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.671 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.671 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.671 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG com.networknt.schema.TypeValidator debug - validate( "e70adf8c-4a75-4db6-8134-793fe5c80567", "e70adf8c-4a75-4db6-8134-793fe5c80567", client_id) +08:11:51.671 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.671 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.671 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.672 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.672 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.674 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e9b28a3f-336c-4b17-a405-937a605ee09e +08:11:51.679 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.679 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.679 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:51.679 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.680 [XNIO-1 task-2] D75G3hrRSuegVr2QZz5IQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BQIrGv0FTDGPrMEQIUyyEQ +08:11:51.683 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.683 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.683 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +08:11:51.683 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.684 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG com.networknt.schema.TypeValidator debug - validate( "e70adf8c-4a75-4db6-8134-793fe5c80567", "e70adf8c-4a75-4db6-8134-793fe5c80567", client_id) +08:11:51.684 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.684 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.684 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.684 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.684 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.684 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +08:11:51.690 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.691 [XNIO-1 task-2] f2OwLQMZTpKGhW8mu7yU-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5xbtvEVPRyCEi7eYragtOQ + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +08:11:51.696 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.696 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.696 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.697 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.697 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.697 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.697 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.697 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.702 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.703 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.703 [XNIO-1 task-2] fDfL2Le5SpGtgKHQ_cqJkw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xazKZPtuQ2GS_2xyiUeoOw +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.710 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.711 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f89a5856 +08:11:51.712 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f89a5856 +08:11:51.713 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:04720a81-f550-4ef2-942c-31ba0b54b952 +08:11:51.717 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.717 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.720 [XNIO-1 task-2] z4jxj49zTZ6gnf53QBbN2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WGsRIwppSNm01tCt0v6lrQ +08:11:51.731 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f89a5856 +08:11:51.740 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f89a5856 +08:11:51.741 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.741 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.741 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.742 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.742 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.742 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +Jun 29, 2024 8:11:52 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +08:11:51.742 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.751 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.752 [XNIO-1 task-2] N2e_l9t3S6azWebVo6J4RQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.760 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.765 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG com.networknt.schema.TypeValidator debug - validate( "s3klqQTtJsRrWana9_iYsaIhVZyyqwI00Ayl6v_5Xfw", "s3klqQTtJsRrWana9_iYsaIhVZyyqwI00Ayl6v_5Xfw", code_challenge) + +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.766 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.767 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.767 [XNIO-1 task-2] IqVvIxGXSGihEwsx9ctOUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RNjLGmWPSLyPYduCok4krw +08:11:51.772 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.772 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.772 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.773 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:51.773 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.773 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.773 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.773 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.773 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.773 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.773 [XNIO-1 task-3] wMDYBBpkQMucf4sns2-YiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=G8-e3Z-BQxKBORpi8yohew +08:11:51.780 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.780 [XNIO-1 task-2] CAhmSB7sSjSfTYEAPAyn3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.783 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.783 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.784 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.784 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG com.networknt.schema.TypeValidator debug - validate( "58f0c3cb-1168-4e2e-afb4-f91426a9cf83", "58f0c3cb-1168-4e2e-afb4-f91426a9cf83", client_id) +08:11:51.784 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.784 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.785 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.785 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.785 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.792 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.792 [XNIO-1 task-2] M0rVocOnQFO_2UQWWxuFDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.798 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.798 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.798 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.798 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG com.networknt.schema.TypeValidator debug - validate( "04720a81-f550-4ef2-942c-31ba0b54b952", "04720a81-f550-4ef2-942c-31ba0b54b952", client_id) +08:11:51.798 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.798 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.799 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.799 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.799 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.804 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.804 [XNIO-1 task-2] z6EZ9B0xScu63J0WmwCxZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.834 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.835 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.835 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.835 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG com.networknt.schema.TypeValidator debug - validate( "04720a81-f550-4ef2-942c-31ba0b54b952", "04720a81-f550-4ef2-942c-31ba0b54b952", client_id) +08:11:51.835 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.836 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.836 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.836 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.836 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.842 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.842 [XNIO-1 task-2] k8jpO8N0SWOXbZpF_Qrq7w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG com.networknt.schema.TypeValidator debug - validate( "EyVMBKd3daigvXbUqp9RJztkN8UqBNYNXFgr_BoKSzQ", "EyVMBKd3daigvXbUqp9RJztkN8UqBNYNXFgr_BoKSzQ", code_challenge) +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.843 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.844 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.844 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.849 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.850 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.850 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.851 [XNIO-1 task-2] 1PV_udr2QGWlSm4xhCfyew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xB8mRfndTuCvNK5hlf9xRA +08:11:51.855 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.855 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.855 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.856 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:51.856 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.856 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.856 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.856 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.856 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.856 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.856 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.857 [XNIO-1 task-3] 2_Pqc4VCRFSri0cechAibA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=c33MS3nES-mph0Otb2kt0w +08:11:51.862 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.862 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.862 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.862 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.862 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.862 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.862 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.862 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.862 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.863 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.863 [XNIO-1 task-2] BJBk1SFxQIOEIVtEWcgA_g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PsWMDnZTS6K7gbiOnsRlsg +08:11:51.868 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.869 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.870 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.870 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.870 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.870 [XNIO-1 task-3] gm1MUabvRpKb-ITULymOKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=t4fIVmcnRcuz6ut_6rFj6w +08:11:51.870 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.871 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.871 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.872 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.872 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.872 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.879 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.879 [XNIO-1 task-2] f13_QH_CT_CQQ1I7vbBi1g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.886 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.886 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.886 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.887 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0GKaF9IJ9d5TgDAHpaguG5Enk8NNY_MiQ32a2MVWuY", "a0GKaF9IJ9d5TgDAHpaguG5Enk8NNY_MiQ32a2MVWuY", code_challenge) +08:11:51.887 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.887 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.887 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.887 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.887 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.887 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.893 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.893 [XNIO-1 task-2] jpCYRYKHTT2ySyJxP0lJjA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.899 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.899 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.899 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.899 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:51.899 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.900 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.900 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.900 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.900 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.906 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.906 [XNIO-1 task-2] AyPuAnaqRZK8ERYqwcBr7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.908 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d587cc2f-d9d0-46c9-ac72-2b3a596cc649 +08:11:51.910 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe5c798-702d-4db1-aa2c-0025768d8ec1", "0fe5c798-702d-4db1-aa2c-0025768d8ec1", client_id) +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.911 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.918 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.918 [XNIO-1 task-2] iMNUaKf4QfqPpJTCtJtpKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.921 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.922 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.922 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.923 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG com.networknt.schema.TypeValidator debug - validate( "K4PH9VBs-FeeL-PAkqgvfGa5WRolZSwOItQqRiT-Kfc", "K4PH9VBs-FeeL-PAkqgvfGa5WRolZSwOItQqRiT-Kfc", code_challenge) +08:11:51.923 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.923 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.923 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.923 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.923 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.923 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.930 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.930 [XNIO-1 task-2] pCTMwJANSz2m6IKQgq4kOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.934 [XNIO-1 task-2] S31PwIkmRtC692aSYTS-qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.935 [XNIO-1 task-2] S31PwIkmRtC692aSYTS-qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.935 [XNIO-1 task-2] S31PwIkmRtC692aSYTS-qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +Jun 29, 2024 8:11:52 AM com.hazelcast.map.impl.operation.DeleteOperation +08:11:51.936 [XNIO-1 task-2] S31PwIkmRtC692aSYTS-qw DEBUG com.networknt.schema.TypeValidator debug - validate( "25tgyNCQkMjTtCtH9VMYGaBdZMxZ9mX8e7-R4xpg4Dg", "25tgyNCQkMjTtCtH9VMYGaBdZMxZ9mX8e7-R4xpg4Dg", code_challenge) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:51.944 [XNIO-1 task-2] S31PwIkmRtC692aSYTS-qw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.944 [XNIO-1 task-2] S31PwIkmRtC692aSYTS-qw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.945 [XNIO-1 task-2] S31PwIkmRtC692aSYTS-qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kYEg80KCQcWozQnyM2UUKA +08:11:51.946 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.946 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.946 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.947 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.947 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.947 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.947 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.947 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:51.951 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.951 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG com.networknt.schema.TypeValidator debug - validate( "qDF5bXTjeNBnAe-IAZt1okB2W7EE6I8aqpakUSSA--8", "qDF5bXTjeNBnAe-IAZt1okB2W7EE6I8aqpakUSSA--8", code_challenge) +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.952 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.953 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.953 [XNIO-1 task-2] IZB-vnYoRGiFQLU9g8OhKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG com.networknt.schema.TypeValidator debug - validate( "51d84757-3efe-4fcd-9ab9-f6c33bf731b7", "51d84757-3efe-4fcd-9ab9-f6c33bf731b7", client_id) +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +Jun 29, 2024 8:11:52 AM com.hazelcast.map.impl.operation.DeleteOperation +08:11:51.958 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +08:11:51.958 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.959 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +08:11:51.959 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.959 [XNIO-1 task-3] Miv8RygXRBahfR5VZowykQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=olQG15cqQlO8Dkuccz8dcg +08:11:51.965 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] + at com.hazelcast.spi.Operation.call(Operation.java:170) +08:11:51.965 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.965 [XNIO-1 task-2] Dn7yhMFYSRiX54UJKvyS4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +08:11:51.972 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +08:11:51.973 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:51.973 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.973 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.974 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.974 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.974 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.981 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:51.981 [XNIO-1 task-2] hmI8e7JYTQCT34X__zHe8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:51.987 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.988 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:51.988 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:51.988 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a179ec1-79d7-4400-9c06-bc9729e14740", "0a179ec1-79d7-4400-9c06-bc9729e14740", client_id) +08:11:51.989 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:51.989 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:51.989 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:51.989 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:51.989 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:51.993 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:030e0dc6-4c3e-4856-b8ab-7f9eb06202f1 +08:11:51.994 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:51.995 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:51.995 [XNIO-1 task-2] wgnJb9scQbqQSU7a6uiuJw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ujiDLrdbRC6-JdHGpP9hvw +08:11:51.998 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.998 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.999 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:51.999 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:51.999 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:51.999 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:51.999 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:51.999 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:52.007 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:52.007 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:52.007 [XNIO-1 task-2] i96BerORQLO-EYRleP9Lqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dU94ovVqSMu6Ksjf5yQPvQ +08:11:52.028 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.028 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:52.028 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.028 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6fae42b4-1de9-4df6-bccf-61c8019a9d98", "6fae42b4-1de9-4df6-bccf-61c8019a9d98", client_id) +08:11:52.029 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:52.029 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:52.029 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:52.029 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:52.029 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:52.040 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c5d5b02d-677d-4793-bbea-b7ba7ae68297 +08:11:52.042 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:52.042 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:52.044 [XNIO-1 task-2] EYW08PKTTS2rBhZimvJdNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=f7JfOGlCQjGxUQ7h3dgHzg +08:11:52.048 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.048 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.048 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.049 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:52.049 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:52.049 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:52.049 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:52.049 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:52.049 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0f392b69-ba76-4090-8b0f-8e281414e80f +08:11:52.051 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0f392b69-ba76-4090-8b0f-8e281414e80f +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:52.058 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:52.059 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:52.059 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:52.060 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:52.060 [XNIO-1 task-2] J5miUcVIQUyvfoSnr-xBLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Vc2qqaWbRBCOMtaK1OgUiQ +08:11:52.064 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:52.064 [XNIO-1 task-3] BIm5-aCWQ5aN7CzWYiAE6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:52.073 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0a179ec1-79d7-4400-9c06-bc9729e14740 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:52.108 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.108 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:52.108 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.108 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG com.networknt.schema.TypeValidator debug - validate( "9E8UOJTt5YEzRU04Ja-9J8pcs7Ev77l0F3cQoARZZ3M", "9E8UOJTt5YEzRU04Ja-9J8pcs7Ev77l0F3cQoARZZ3M", code_challenge) +08:11:52.109 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:52.110 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:52.110 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:52.110 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:52.110 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:52.110 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:52.116 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:52.116 [XNIO-1 task-3] OhEcvVMsScq8UgQ27vp-dw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:52.121 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.121 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:52.121 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.121 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG com.networknt.schema.TypeValidator debug - validate( "DfhLtnGp-5lBWsS6i47H1WCIn4d_ER3Gmmb0YLAsGuc", "DfhLtnGp-5lBWsS6i47H1WCIn4d_ER3Gmmb0YLAsGuc", code_challenge) +08:11:52.121 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +08:11:52.121 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:52.121 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:52.122 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:52.122 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:52.122 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:52.126 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.126 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.126 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.126 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:52.126 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:52.126 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:52.126 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:52.127 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:52.128 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:52.130 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:52.132 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:52.132 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:52.133 [XNIO-1 task-2] R-LMja2MRJenL5sCmviedw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=b_ybKkWOR0yfEbD86zEZ5g +08:11:52.135 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.136 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.136 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.136 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:52.136 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:52.136 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:52.136 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:52.137 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:52.139 [XNIO-1 task-3] vdaBHlvRQHGrWVrd_xyqug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NHxl8H1qTMaVknimh-gB4A +08:11:52.143 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.143 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.143 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:52.143 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.143 [XNIO-1 task-2] K36uq95VSViF895OULeXoA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:52.143 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG com.networknt.schema.TypeValidator debug - validate( "9982685e-6e46-4b38-a0f9-e36597c102a5", "9982685e-6e46-4b38-a0f9-e36597c102a5", client_id) +08:11:52.143 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:52.143 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:52.144 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:52.144 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:52.144 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:52.144 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +08:11:52.149 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.149 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.149 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.150 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:52.150 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:52.150 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:52.150 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:52.150 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:52.152 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +08:11:52.152 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +08:11:52.153 [XNIO-1 task-3] mVikA8S-Qm6zFWF76aZAow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UFg2WLwqQt-i4LtsBs6NUA +08:11:52.156 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:52.156 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:52.161 [XNIO-1 task-2] lLnjFbkUQ3yynSNr2C_9Xg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3mbHcP2ySfGS0xm69Evv9w +08:11:52.164 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.165 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.165 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +08:11:52.165 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +08:11:52.165 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +08:11:52.165 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:429db766-b90e-4db0-835d-22c180a43367 +08:11:52.165 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +08:11:52.165 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4bcf1dbb for /oauth2/code +08:11:52.165 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +08:11:52.165 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:52.171 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@11d45f49 for /oauth2/code +08:11:52.171 [XNIO-1 task-2] TTT_AeF6S5-3YKUIqu6kOQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +08:11:52.176 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.177 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +08:11:52.177 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +08:11:52.177 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c5d5b02d-677d-4793-bbea-b7ba7ae68297", "c5d5b02d-677d-4793-bbea-b7ba7ae68297", client_id) +08:11:52.177 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +08:11:52.178 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +08:11:52.178 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +08:11:52.178 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +08:11:52.178 [XNIO-1 task-2] JyX9KNFATGemX9728eYIhQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth diff --git a/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..7a35ba7 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-key-1.log @@ -0,0 +1,310 @@ +08:11:48.372 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +Jun 29, 2024 8:11:48 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +08:11:48.409 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:60881b46-4089-4aa1-b9a2-12c356cd7f47 +08:11:48.409 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:189bb082 +08:11:48.410 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:60881b46-4089-4aa1-b9a2-12c356cd7f47 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +08:11:48.446 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b4e23211 +08:11:48.447 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b4e23211 +08:11:48.447 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b4e23211 + +08:11:48.452 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:60881b46-4089-4aa1-b9a2-12c356cd7f47 +08:11:48.507 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:64f91000 +08:11:48.518 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:31afa1d9-a39f-46e9-b1db-354e6bbc680a +08:11:48.519 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:31afa1d9-a39f-46e9-b1db-354e6bbc680a +08:11:48.527 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:64f91000 +08:11:48.548 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b4e23211 +08:11:48.587 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b4e23211 +08:11:48.615 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b4e23211 +08:11:48.636 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:28794536 +08:11:48.637 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:28794536 +08:11:48.644 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ad4b22a0-8a0c-43f6-9351-578475c406b3 +08:11:48.661 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51c534c2 +08:11:48.661 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51c534c2 +08:11:48.735 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c473bb39-d461-4619-9538-52098a872078 +08:11:48.750 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9982685e-6e46-4b38-a0f9-e36597c102a5 +08:11:48.751 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9982685e-6e46-4b38-a0f9-e36597c102a5 +08:11:48.751 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:28794536 +08:11:48.766 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:81615deb-2f8c-40b8-9c1c-c61e885f0cfb +08:11:48.803 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b95d2d07 +08:11:48.810 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:51c534c2 +08:11:48.828 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b95d2d07 +08:11:48.835 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b95d2d07 +08:11:48.868 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:51c534c2 +08:11:48.898 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b4e23211 +08:11:48.926 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b4e23211 +08:11:49.159 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:445098d4 +08:11:49.178 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:445098d4 +08:11:51.406 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b4e23211 +08:11:51.412 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ce59d550-4b84-473d-8c5a-e361dfd304ae +08:11:51.483 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8ed911e3-66b7-4ea0-b7bd-941d48a35e30 +08:11:51.490 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:51d84757-3efe-4fcd-9ab9-f6c33bf731b7 +08:11:51.533 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ad4b22a0-8a0c-43f6-9351-578475c406b3 +08:11:51.539 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.597 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b80984b +Jun 29, 2024 8:11:51 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.619 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b80984b +08:11:51.632 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4b80984b +08:11:51.674 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ecfea2c9 +08:11:51.682 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ecfea2c9 +08:11:51.691 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ecfea2c9 +08:11:51.789 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:658ba1f5-860f-4c6c-b6e0-a0350ce70e31 +08:11:51.808 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:14f654d7 +08:11:51.809 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:14f654d7 +08:11:51.817 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:14f654d7 +08:11:51.906 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +08:11:51.933 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a3c36b57 +08:11:51.933 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a3c36b57 +08:11:51.981 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e629c36a-1d74-4131-95d6-b7150aa07126 +08:11:51.981 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e629c36a-1d74-4131-95d6-b7150aa07126 +08:11:52.057 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f984289e-c77a-4947-b28b-bcd7ab98b1d2 +08:11:52.094 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d6337ed-cbbc-4518-8858-de7c78c5ddb2 +08:11:52.096 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d6337ed-cbbc-4518-8858-de7c78c5ddb2 +08:11:52.113 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f2a8d05e +08:11:52.114 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f2a8d05e +08:11:52.117 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:da61276f-b93c-43ab-a806-75af2a555cc9 +08:11:52.123 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f2a8d05e +08:11:52.153 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e629c36a-1d74-4131-95d6-b7150aa07126 +08:11:52.155 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f2a8d05e +Jun 29, 2024 8:11:52 AM com.hazelcast.map.impl.operation.DeleteOperation +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:52.187 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0941e37d +08:11:52.188 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0941e37d +08:11:52.196 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0941e37d +08:11:52.246 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dc0e8564-1984-42f6-ab40-686ec8daab9f +08:11:52.297 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0941e37d +08:11:52.306 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:443ab9af-e72c-4554-9242-f79f1385b720 +08:11:52.319 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0941e37d +08:11:52.495 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9982685e-6e46-4b38-a0f9-e36597c102a5 +08:11:52.499 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:52.591 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0fba929a-868f-4d94-a02f-712f3c36587b +08:11:52.712 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:52.753 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:134da14d +08:11:52.755 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:134da14d +08:11:52.792 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0e835a8-4f54-44cd-8a88-d565e06e07f6 +08:11:52.836 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d04e2ba2-ed95-46af-997f-196e9b5de296 +08:11:52.838 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d04e2ba2-ed95-46af-997f-196e9b5de296 +08:11:52.868 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:134da14d +08:11:52.909 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f982c0b5-debe-4e2a-879e-122971f10d97 +08:11:52.922 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:134da14d +08:11:52.923 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:134da14d +08:11:52.977 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) diff --git a/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..65e30ce --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,2099 @@ +08:11:39.306 [XNIO-1 task-1] bKVufU6hRvysrbB3uuGDIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.306 [XNIO-1 task-1] bKVufU6hRvysrbB3uuGDIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0 +08:11:39.306 [XNIO-1 task-1] bKVufU6hRvysrbB3uuGDIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9d6e8340-b502-4dda-b70a-665c289cfff0 +08:11:39.307 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:184c4ca5-a90a-4fa9-abf8-9f9d058af452 +08:11:39.317 [XNIO-1 task-1] fvNKQ-pbT1KSwqDcX6oEIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df, base path is set to: null +08:11:39.317 [XNIO-1 task-1] fvNKQ-pbT1KSwqDcX6oEIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.318 [XNIO-1 task-1] fvNKQ-pbT1KSwqDcX6oEIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.318 [XNIO-1 task-1] fvNKQ-pbT1KSwqDcX6oEIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df, base path is set to: null +08:11:39.318 [XNIO-1 task-1] fvNKQ-pbT1KSwqDcX6oEIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7f730b7-02da-4af9-aff4-61ccff3652df", "c7f730b7-02da-4af9-aff4-61ccff3652df", refreshToken) +08:11:39.318 [XNIO-1 task-1] fvNKQ-pbT1KSwqDcX6oEIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7f730b7-02da-4af9-aff4-61ccff3652df is not found.","severity":"ERROR"} +08:11:39.325 [XNIO-1 task-1] 2q4dpP4lTp6syZXoATs42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.325 [XNIO-1 task-1] 2q4dpP4lTp6syZXoATs42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.325 [XNIO-1 task-1] 2q4dpP4lTp6syZXoATs42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.325 [XNIO-1 task-1] 2q4dpP4lTp6syZXoATs42g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.333 [XNIO-1 task-1] 4DQYhnTiTiK4kzNmnhegCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2e556d2-d9ea-434f-86eb-d579f123c2b8, base path is set to: null +08:11:39.333 [XNIO-1 task-1] 4DQYhnTiTiK4kzNmnhegCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.333 [XNIO-1 task-1] 4DQYhnTiTiK4kzNmnhegCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.333 [XNIO-1 task-1] 4DQYhnTiTiK4kzNmnhegCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2e556d2-d9ea-434f-86eb-d579f123c2b8, base path is set to: null +08:11:39.333 [XNIO-1 task-1] 4DQYhnTiTiK4kzNmnhegCw DEBUG com.networknt.schema.TypeValidator debug - validate( "f2e556d2-d9ea-434f-86eb-d579f123c2b8", "f2e556d2-d9ea-434f-86eb-d579f123c2b8", refreshToken) +08:11:39.342 [XNIO-1 task-1] rbm_eJp8R3-HNineERKHRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.342 [XNIO-1 task-1] rbm_eJp8R3-HNineERKHRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.342 [XNIO-1 task-1] rbm_eJp8R3-HNineERKHRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.343 [XNIO-1 task-1] rbm_eJp8R3-HNineERKHRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.343 [XNIO-1 task-1] rbm_eJp8R3-HNineERKHRw DEBUG com.networknt.schema.TypeValidator debug - validate( "9d6e8340-b502-4dda-b70a-665c289cfff0", "9d6e8340-b502-4dda-b70a-665c289cfff0", refreshToken) +08:11:39.343 [XNIO-1 task-1] rbm_eJp8R3-HNineERKHRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9d6e8340-b502-4dda-b70a-665c289cfff0 is not found.","severity":"ERROR"} +08:11:39.351 [XNIO-1 task-1] Mm0G8LUkQcGQMhQy5OQC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0 +08:11:39.351 [XNIO-1 task-1] Mm0G8LUkQcGQMhQy5OQC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.351 [XNIO-1 task-1] Mm0G8LUkQcGQMhQy5OQC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.351 [XNIO-1 task-1] Mm0G8LUkQcGQMhQy5OQC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0 +08:11:39.352 [XNIO-1 task-1] Mm0G8LUkQcGQMhQy5OQC3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9d6e8340-b502-4dda-b70a-665c289cfff0 +08:11:39.353 [XNIO-1 task-1] 27n25meBTPyJz4rgzusyXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.354 [XNIO-1 task-1] 27n25meBTPyJz4rgzusyXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.354 [XNIO-1 task-1] 27n25meBTPyJz4rgzusyXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.354 [XNIO-1 task-1] 27n25meBTPyJz4rgzusyXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.354 [XNIO-1 task-1] 27n25meBTPyJz4rgzusyXw DEBUG com.networknt.schema.TypeValidator debug - validate( "9d6e8340-b502-4dda-b70a-665c289cfff0", "9d6e8340-b502-4dda-b70a-665c289cfff0", refreshToken) +08:11:39.354 [XNIO-1 task-1] 27n25meBTPyJz4rgzusyXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9d6e8340-b502-4dda-b70a-665c289cfff0 is not found.","severity":"ERROR"} +08:11:39.363 [XNIO-1 task-1] z9_jI4TEQaev5pflk2dy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.363 [XNIO-1 task-1] z9_jI4TEQaev5pflk2dy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.364 [XNIO-1 task-1] z9_jI4TEQaev5pflk2dy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.364 [XNIO-1 task-1] z9_jI4TEQaev5pflk2dy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.364 [XNIO-1 task-1] z9_jI4TEQaev5pflk2dy8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.365 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f75df803 +08:11:39.372 [XNIO-1 task-1] ruz1IMLKTUeV9BqLyU8kzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.372 [XNIO-1 task-1] ruz1IMLKTUeV9BqLyU8kzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.373 [XNIO-1 task-1] ruz1IMLKTUeV9BqLyU8kzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.373 [XNIO-1 task-1] ruz1IMLKTUeV9BqLyU8kzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.373 [XNIO-1 task-1] ruz1IMLKTUeV9BqLyU8kzg DEBUG com.networknt.schema.TypeValidator debug - validate( "9d6e8340-b502-4dda-b70a-665c289cfff0", "9d6e8340-b502-4dda-b70a-665c289cfff0", refreshToken) +08:11:39.373 [XNIO-1 task-1] ruz1IMLKTUeV9BqLyU8kzg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9d6e8340-b502-4dda-b70a-665c289cfff0 is not found.","severity":"ERROR"} +08:11:39.377 [XNIO-1 task-1] gyj4nNSgQ9OZqN0uFyxLDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.377 [XNIO-1 task-1] gyj4nNSgQ9OZqN0uFyxLDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.377 [XNIO-1 task-1] gyj4nNSgQ9OZqN0uFyxLDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.377 [XNIO-1 task-1] gyj4nNSgQ9OZqN0uFyxLDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.377 [XNIO-1 task-1] gyj4nNSgQ9OZqN0uFyxLDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.382 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f75df803 +08:11:39.383 [XNIO-1 task-1] PzmF0m9rT0a7YO0DIS-1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d, base path is set to: null +08:11:39.383 [XNIO-1 task-1] PzmF0m9rT0a7YO0DIS-1RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.383 [XNIO-1 task-1] PzmF0m9rT0a7YO0DIS-1RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.383 [XNIO-1 task-1] PzmF0m9rT0a7YO0DIS-1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d, base path is set to: null +08:11:39.383 [XNIO-1 task-1] PzmF0m9rT0a7YO0DIS-1RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7e719c87-afe1-4692-b134-f8d5d65d8a2d", "7e719c87-afe1-4692-b134-f8d5d65d8a2d", refreshToken) +08:11:39.384 [XNIO-1 task-1] PzmF0m9rT0a7YO0DIS-1RQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7e719c87-afe1-4692-b134-f8d5d65d8a2d is not found.","severity":"ERROR"} +08:11:39.391 [XNIO-1 task-1] DemyGX9XSA6S3P9ldpZZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d0d3ab5a-8519-4ed0-979c-5eeded1c9d42 +08:11:39.391 [XNIO-1 task-1] DemyGX9XSA6S3P9ldpZZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.391 [XNIO-1 task-1] DemyGX9XSA6S3P9ldpZZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.391 [XNIO-1 task-1] DemyGX9XSA6S3P9ldpZZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d0d3ab5a-8519-4ed0-979c-5eeded1c9d42 +08:11:39.391 [XNIO-1 task-1] DemyGX9XSA6S3P9ldpZZng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d0d3ab5a-8519-4ed0-979c-5eeded1c9d42 +08:11:39.395 [XNIO-1 task-1] BmcYJncdS3Srzyi_sSA0dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.395 [XNIO-1 task-1] BmcYJncdS3Srzyi_sSA0dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.395 [XNIO-1 task-1] BmcYJncdS3Srzyi_sSA0dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.395 [XNIO-1 task-1] BmcYJncdS3Srzyi_sSA0dg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.395 [XNIO-1 task-1] BmcYJncdS3Srzyi_sSA0dg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:39.404 [XNIO-1 task-1] cC0IZNgpTLeIT5Bo7Hx5uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.404 [XNIO-1 task-1] cC0IZNgpTLeIT5Bo7Hx5uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.404 [XNIO-1 task-1] cC0IZNgpTLeIT5Bo7Hx5uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.404 [XNIO-1 task-1] cC0IZNgpTLeIT5Bo7Hx5uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.404 [XNIO-1 task-1] cC0IZNgpTLeIT5Bo7Hx5uQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e719c87-afe1-4692-b134-f8d5d65d8a2d +08:11:39.409 [XNIO-1 task-1] cGrXmEu0QPavcKsI-INDOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d0d3ab5a-8519-4ed0-979c-5eeded1c9d42, base path is set to: null +08:11:39.409 [XNIO-1 task-1] cGrXmEu0QPavcKsI-INDOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.409 [XNIO-1 task-1] cGrXmEu0QPavcKsI-INDOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.409 [XNIO-1 task-1] cGrXmEu0QPavcKsI-INDOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d0d3ab5a-8519-4ed0-979c-5eeded1c9d42, base path is set to: null +08:11:39.409 [XNIO-1 task-1] cGrXmEu0QPavcKsI-INDOg DEBUG com.networknt.schema.TypeValidator debug - validate( "d0d3ab5a-8519-4ed0-979c-5eeded1c9d42", "d0d3ab5a-8519-4ed0-979c-5eeded1c9d42", refreshToken) +08:11:39.409 [XNIO-1 task-1] cGrXmEu0QPavcKsI-INDOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d0d3ab5a-8519-4ed0-979c-5eeded1c9d42 is not found.","severity":"ERROR"} +08:11:39.413 [XNIO-1 task-1] o8efMlwvQlegabHtW5-z1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.413 [XNIO-1 task-1] o8efMlwvQlegabHtW5-z1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.413 [XNIO-1 task-1] o8efMlwvQlegabHtW5-z1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.413 [XNIO-1 task-1] o8efMlwvQlegabHtW5-z1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.413 [XNIO-1 task-1] o8efMlwvQlegabHtW5-z1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.414 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b64e2d86-1cf7-4893-8816-5c2a5cc86f01 +08:11:39.416 [XNIO-1 task-1] Q1PnFcUKRPuQXhLaqnxkeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.416 [XNIO-1 task-1] Q1PnFcUKRPuQXhLaqnxkeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.416 [XNIO-1 task-1] Q1PnFcUKRPuQXhLaqnxkeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.416 [XNIO-1 task-1] Q1PnFcUKRPuQXhLaqnxkeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.416 [XNIO-1 task-1] Q1PnFcUKRPuQXhLaqnxkeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:39.422 [XNIO-1 task-1] 4-Mel31mTxaTVtlevzj_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.422 [XNIO-1 task-1] 4-Mel31mTxaTVtlevzj_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.422 [XNIO-1 task-1] 4-Mel31mTxaTVtlevzj_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.423 [XNIO-1 task-1] 4-Mel31mTxaTVtlevzj_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.423 [XNIO-1 task-1] 4-Mel31mTxaTVtlevzj_tw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.429 [XNIO-1 task-1] VFPUg2nqRYCdHHSRAKbB9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.429 [XNIO-1 task-1] VFPUg2nqRYCdHHSRAKbB9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.429 [XNIO-1 task-1] VFPUg2nqRYCdHHSRAKbB9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.430 [XNIO-1 task-1] VFPUg2nqRYCdHHSRAKbB9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.430 [XNIO-1 task-1] VFPUg2nqRYCdHHSRAKbB9w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:39.436 [XNIO-1 task-1] FSScMdXpSPa8ZunexAazUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.436 [XNIO-1 task-1] FSScMdXpSPa8ZunexAazUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.436 [XNIO-1 task-1] FSScMdXpSPa8ZunexAazUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.436 [XNIO-1 task-1] FSScMdXpSPa8ZunexAazUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.437 [XNIO-1 task-1] FSScMdXpSPa8ZunexAazUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.439 [XNIO-1 task-1] Artm5uH0Q4mW7MWdtScPRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df, base path is set to: null +08:11:39.439 [XNIO-1 task-1] Artm5uH0Q4mW7MWdtScPRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.439 [XNIO-1 task-1] Artm5uH0Q4mW7MWdtScPRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.439 [XNIO-1 task-1] Artm5uH0Q4mW7MWdtScPRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df, base path is set to: null +08:11:39.440 [XNIO-1 task-1] Artm5uH0Q4mW7MWdtScPRw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7f730b7-02da-4af9-aff4-61ccff3652df", "c7f730b7-02da-4af9-aff4-61ccff3652df", refreshToken) +08:11:39.440 [XNIO-1 task-1] Artm5uH0Q4mW7MWdtScPRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7f730b7-02da-4af9-aff4-61ccff3652df is not found.","severity":"ERROR"} +08:11:39.441 [XNIO-1 task-1] a5AAhPSwTASpdyAC2zN9Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.441 [XNIO-1 task-1] a5AAhPSwTASpdyAC2zN9Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.442 [XNIO-1 task-1] a5AAhPSwTASpdyAC2zN9Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.442 [XNIO-1 task-1] a5AAhPSwTASpdyAC2zN9Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.442 [XNIO-1 task-1] a5AAhPSwTASpdyAC2zN9Yg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.445 [XNIO-1 task-1] oDQdDfiuQu-ySCq3ln9d3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df, base path is set to: null +08:11:39.445 [XNIO-1 task-1] oDQdDfiuQu-ySCq3ln9d3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.445 [XNIO-1 task-1] oDQdDfiuQu-ySCq3ln9d3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.445 [XNIO-1 task-1] oDQdDfiuQu-ySCq3ln9d3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df, base path is set to: null +08:11:39.445 [XNIO-1 task-1] oDQdDfiuQu-ySCq3ln9d3A DEBUG com.networknt.schema.TypeValidator debug - validate( "c7f730b7-02da-4af9-aff4-61ccff3652df", "c7f730b7-02da-4af9-aff4-61ccff3652df", refreshToken) +08:11:39.445 [XNIO-1 task-1] oDQdDfiuQu-ySCq3ln9d3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7f730b7-02da-4af9-aff4-61ccff3652df is not found.","severity":"ERROR"} +08:11:39.452 [XNIO-1 task-1] DzULUPj-RJardv1wn_gfDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.452 [XNIO-1 task-1] DzULUPj-RJardv1wn_gfDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.452 [XNIO-1 task-1] DzULUPj-RJardv1wn_gfDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.452 [XNIO-1 task-1] DzULUPj-RJardv1wn_gfDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.459 [XNIO-1 task-1] mETMbfPDTTm-QAguO4Wh7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278, base path is set to: null +08:11:39.459 [XNIO-1 task-1] mETMbfPDTTm-QAguO4Wh7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.459 [XNIO-1 task-1] mETMbfPDTTm-QAguO4Wh7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.459 [XNIO-1 task-1] mETMbfPDTTm-QAguO4Wh7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278, base path is set to: null +08:11:39.460 [XNIO-1 task-1] mETMbfPDTTm-QAguO4Wh7w DEBUG com.networknt.schema.TypeValidator debug - validate( "bd93e425-b650-4651-9dbf-781c1dc74278", "bd93e425-b650-4651-9dbf-781c1dc74278", refreshToken) +08:11:39.460 [XNIO-1 task-1] mETMbfPDTTm-QAguO4Wh7w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bd93e425-b650-4651-9dbf-781c1dc74278 is not found.","severity":"ERROR"} +08:11:39.462 [XNIO-1 task-1] BGpOYb1sTamB6jKY1wLTwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.462 [XNIO-1 task-1] BGpOYb1sTamB6jKY1wLTwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.463 [XNIO-1 task-1] BGpOYb1sTamB6jKY1wLTwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.463 [XNIO-1 task-1] BGpOYb1sTamB6jKY1wLTwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.463 [XNIO-1 task-1] BGpOYb1sTamB6jKY1wLTwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7f730b7-02da-4af9-aff4-61ccff3652df +08:11:39.465 [XNIO-1 task-1] 1GNv4TbyTre6ZENsLbubVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.465 [XNIO-1 task-1] 1GNv4TbyTre6ZENsLbubVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.465 [XNIO-1 task-1] 1GNv4TbyTre6ZENsLbubVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.465 [XNIO-1 task-1] 1GNv4TbyTre6ZENsLbubVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.465 [XNIO-1 task-1] 1GNv4TbyTre6ZENsLbubVw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:39.478 [XNIO-1 task-1] t8nXfzNLR9CHKXogWKOOUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.478 [XNIO-1 task-1] t8nXfzNLR9CHKXogWKOOUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.478 [XNIO-1 task-1] t8nXfzNLR9CHKXogWKOOUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.478 [XNIO-1 task-1] t8nXfzNLR9CHKXogWKOOUw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.486 [XNIO-1 task-1] CKvqKJN6Rv2R4NH_ZycwHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.487 [XNIO-1 task-1] CKvqKJN6Rv2R4NH_ZycwHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.487 [XNIO-1 task-1] CKvqKJN6Rv2R4NH_ZycwHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.487 [XNIO-1 task-1] CKvqKJN6Rv2R4NH_ZycwHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.487 [XNIO-1 task-1] CKvqKJN6Rv2R4NH_ZycwHg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:39.493 [XNIO-1 task-1] sq1Db_G-T8OGU0nUP3W08A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.493 [XNIO-1 task-1] sq1Db_G-T8OGU0nUP3W08A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.493 [XNIO-1 task-1] sq1Db_G-T8OGU0nUP3W08A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.493 [XNIO-1 task-1] sq1Db_G-T8OGU0nUP3W08A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.493 [XNIO-1 task-1] sq1Db_G-T8OGU0nUP3W08A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.499 [XNIO-1 task-1] ShfpZV7RRIyJdMilMRqVRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278, base path is set to: null +08:11:39.499 [XNIO-1 task-1] ShfpZV7RRIyJdMilMRqVRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.499 [XNIO-1 task-1] ShfpZV7RRIyJdMilMRqVRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.499 [XNIO-1 task-1] ShfpZV7RRIyJdMilMRqVRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278, base path is set to: null +08:11:39.499 [XNIO-1 task-1] ShfpZV7RRIyJdMilMRqVRA DEBUG com.networknt.schema.TypeValidator debug - validate( "bd93e425-b650-4651-9dbf-781c1dc74278", "bd93e425-b650-4651-9dbf-781c1dc74278", refreshToken) +08:11:39.500 [XNIO-1 task-1] ShfpZV7RRIyJdMilMRqVRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bd93e425-b650-4651-9dbf-781c1dc74278 is not found.","severity":"ERROR"} +08:11:39.505 [XNIO-1 task-1] 3S3v6zXvQrW9fPjlBM4klg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.505 [XNIO-1 task-1] 3S3v6zXvQrW9fPjlBM4klg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.505 [XNIO-1 task-1] 3S3v6zXvQrW9fPjlBM4klg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.505 [XNIO-1 task-1] 3S3v6zXvQrW9fPjlBM4klg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.506 [XNIO-1 task-1] 3S3v6zXvQrW9fPjlBM4klg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.507 [XNIO-1 task-1] 6pflEcpnQiKPq6dhXsb5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2, base path is set to: null +08:11:39.507 [XNIO-1 task-1] 6pflEcpnQiKPq6dhXsb5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.507 [XNIO-1 task-1] 6pflEcpnQiKPq6dhXsb5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.507 [XNIO-1 task-1] 6pflEcpnQiKPq6dhXsb5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2, base path is set to: null +08:11:39.507 [XNIO-1 task-1] 6pflEcpnQiKPq6dhXsb5ig DEBUG com.networknt.schema.TypeValidator debug - validate( "5cf09283-0d86-4a92-8cd4-df7c5771cea2", "5cf09283-0d86-4a92-8cd4-df7c5771cea2", refreshToken) +08:11:39.507 [XNIO-1 task-1] 6pflEcpnQiKPq6dhXsb5ig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5cf09283-0d86-4a92-8cd4-df7c5771cea2 is not found.","severity":"ERROR"} +08:11:39.511 [XNIO-1 task-1] 5mlD9jywSqS-TQe_z8e4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.511 [XNIO-1 task-1] 5mlD9jywSqS-TQe_z8e4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.511 [XNIO-1 task-1] 5mlD9jywSqS-TQe_z8e4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.512 [XNIO-1 task-1] 5mlD9jywSqS-TQe_z8e4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.512 [XNIO-1 task-1] 5mlD9jywSqS-TQe_z8e4Dw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.514 [XNIO-1 task-1] xXya6B2BQ1GEA5ODQJX58g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2, base path is set to: null +08:11:39.514 [XNIO-1 task-1] xXya6B2BQ1GEA5ODQJX58g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.514 [XNIO-1 task-1] xXya6B2BQ1GEA5ODQJX58g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.514 [XNIO-1 task-1] xXya6B2BQ1GEA5ODQJX58g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2, base path is set to: null +08:11:39.514 [XNIO-1 task-1] xXya6B2BQ1GEA5ODQJX58g DEBUG com.networknt.schema.TypeValidator debug - validate( "5cf09283-0d86-4a92-8cd4-df7c5771cea2", "5cf09283-0d86-4a92-8cd4-df7c5771cea2", refreshToken) +08:11:39.514 [XNIO-1 task-1] xXya6B2BQ1GEA5ODQJX58g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5cf09283-0d86-4a92-8cd4-df7c5771cea2 is not found.","severity":"ERROR"} +08:11:39.517 [XNIO-1 task-1] 60j3GSvzSTOvU7dq5FEfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.517 [XNIO-1 task-1] 60j3GSvzSTOvU7dq5FEfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.517 [XNIO-1 task-1] 60j3GSvzSTOvU7dq5FEfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.517 [XNIO-1 task-1] 60j3GSvzSTOvU7dq5FEfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.517 [XNIO-1 task-1] 60j3GSvzSTOvU7dq5FEfZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bd93e425-b650-4651-9dbf-781c1dc74278 +08:11:39.519 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d5a0fa86-779c-480f-880f-2b8e03d21875 +08:11:39.522 [XNIO-1 task-1] imia3nqvTsOcNUMJW3R4ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.522 [XNIO-1 task-1] imia3nqvTsOcNUMJW3R4ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.522 [XNIO-1 task-1] imia3nqvTsOcNUMJW3R4ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.522 [XNIO-1 task-1] imia3nqvTsOcNUMJW3R4ww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.532 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:abadc2a4-6896-4102-a84b-aeefca0d63e1 +08:11:39.533 [XNIO-1 task-1] Ai8HmuniTrOkfLaQMn7FYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.533 [XNIO-1 task-1] Ai8HmuniTrOkfLaQMn7FYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.533 [XNIO-1 task-1] Ai8HmuniTrOkfLaQMn7FYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.534 [XNIO-1 task-1] Ai8HmuniTrOkfLaQMn7FYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.545 [XNIO-1 task-1] OHN6O0XYSWWNla3mTVxxZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2, base path is set to: null +08:11:39.545 [XNIO-1 task-1] OHN6O0XYSWWNla3mTVxxZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.545 [XNIO-1 task-1] OHN6O0XYSWWNla3mTVxxZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.545 [XNIO-1 task-1] OHN6O0XYSWWNla3mTVxxZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2, base path is set to: null +08:11:39.545 [XNIO-1 task-1] OHN6O0XYSWWNla3mTVxxZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5cf09283-0d86-4a92-8cd4-df7c5771cea2", "5cf09283-0d86-4a92-8cd4-df7c5771cea2", refreshToken) +08:11:39.545 [XNIO-1 task-1] OHN6O0XYSWWNla3mTVxxZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5cf09283-0d86-4a92-8cd4-df7c5771cea2 is not found.","severity":"ERROR"} +08:11:39.552 [XNIO-1 task-1] yjMP8Er2SH63nKIltXNsEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2 +08:11:39.552 [XNIO-1 task-1] yjMP8Er2SH63nKIltXNsEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.552 [XNIO-1 task-1] yjMP8Er2SH63nKIltXNsEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.552 [XNIO-1 task-1] yjMP8Er2SH63nKIltXNsEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5cf09283-0d86-4a92-8cd4-df7c5771cea2 +08:11:39.552 [XNIO-1 task-1] yjMP8Er2SH63nKIltXNsEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5cf09283-0d86-4a92-8cd4-df7c5771cea2 +08:11:39.557 [XNIO-1 task-1] cnomHvqyQiK3YOiR-vVPoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7f79ccb-4092-4534-a5b0-f56da0c76fa5, base path is set to: null +08:11:39.557 [XNIO-1 task-1] cnomHvqyQiK3YOiR-vVPoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.557 [XNIO-1 task-1] cnomHvqyQiK3YOiR-vVPoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.557 [XNIO-1 task-1] cnomHvqyQiK3YOiR-vVPoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7f79ccb-4092-4534-a5b0-f56da0c76fa5, base path is set to: null +08:11:39.558 [XNIO-1 task-1] cnomHvqyQiK3YOiR-vVPoA DEBUG com.networknt.schema.TypeValidator debug - validate( "d7f79ccb-4092-4534-a5b0-f56da0c76fa5", "d7f79ccb-4092-4534-a5b0-f56da0c76fa5", refreshToken) +08:11:39.558 [XNIO-1 task-1] cnomHvqyQiK3YOiR-vVPoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d7f79ccb-4092-4534-a5b0-f56da0c76fa5 is not found.","severity":"ERROR"} +08:11:39.564 [XNIO-1 task-1] AGzuGiaGQkaGAR_tsZCyzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7f79ccb-4092-4534-a5b0-f56da0c76fa5 +08:11:39.564 [XNIO-1 task-1] AGzuGiaGQkaGAR_tsZCyzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.564 [XNIO-1 task-1] AGzuGiaGQkaGAR_tsZCyzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:39.564 [XNIO-1 task-1] AGzuGiaGQkaGAR_tsZCyzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7f79ccb-4092-4534-a5b0-f56da0c76fa5 +08:11:39.564 [XNIO-1 task-1] AGzuGiaGQkaGAR_tsZCyzQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d7f79ccb-4092-4534-a5b0-f56da0c76fa5 +08:11:39.568 [XNIO-1 task-1] dyPSqhBMTtaoWlqGdA6e3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.568 [XNIO-1 task-1] dyPSqhBMTtaoWlqGdA6e3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.568 [XNIO-1 task-1] dyPSqhBMTtaoWlqGdA6e3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:39.568 [XNIO-1 task-1] dyPSqhBMTtaoWlqGdA6e3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:39.568 [XNIO-1 task-1] dyPSqhBMTtaoWlqGdA6e3w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:39.579 [XNIO-1 task-1] IQL_tET1S0CTN7M9SdvMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.580 [XNIO-1 task-1] IQL_tET1S0CTN7M9SdvMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.580 [XNIO-1 task-1] IQL_tET1S0CTN7M9SdvMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.580 [XNIO-1 task-1] IQL_tET1S0CTN7M9SdvMYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.580 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1864439b +08:11:39.588 [XNIO-1 task-1] gRiGDnWUQ9y4h9NiZrUy8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fc7ab21e-e3b9-4228-85c9-0ad6ef7a9cf6, base path is set to: null +08:11:39.588 [XNIO-1 task-1] gRiGDnWUQ9y4h9NiZrUy8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.588 [XNIO-1 task-1] gRiGDnWUQ9y4h9NiZrUy8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.589 [XNIO-1 task-1] gRiGDnWUQ9y4h9NiZrUy8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fc7ab21e-e3b9-4228-85c9-0ad6ef7a9cf6, base path is set to: null +08:11:39.589 [XNIO-1 task-1] gRiGDnWUQ9y4h9NiZrUy8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fc7ab21e-e3b9-4228-85c9-0ad6ef7a9cf6", "fc7ab21e-e3b9-4228-85c9-0ad6ef7a9cf6", refreshToken) +08:11:39.589 [XNIO-1 task-1] gRiGDnWUQ9y4h9NiZrUy8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fc7ab21e-e3b9-4228-85c9-0ad6ef7a9cf6 is not found.","severity":"ERROR"} +08:11:39.595 [XNIO-1 task-1] mFunnrD7QgubTse8OaycYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.595 [XNIO-1 task-1] mFunnrD7QgubTse8OaycYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.595 [XNIO-1 task-1] mFunnrD7QgubTse8OaycYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:39.595 [XNIO-1 task-1] mFunnrD7QgubTse8OaycYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:39.606 [XNIO-1 task-1] F2GOKzC_RlimSQUIpB-BpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.606 [XNIO-1 task-1] F2GOKzC_RlimSQUIpB-BpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:39.606 [XNIO-1 task-1] F2GOKzC_RlimSQUIpB-BpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:39.606 [XNIO-1 task-1] F2GOKzC_RlimSQUIpB-BpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d6e8340-b502-4dda-b70a-665c289cfff0, base path is set to: null +08:11:39.606 [XNIO-1 task-1] F2GOKzC_RlimSQUIpB-BpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9d6e8340-b502-4dda-b70a-665c289cfff0", "9d6e8340-b502-4dda-b70a-665c289cfff0", refreshToken) +08:11:39.606 [XNIO-1 task-1] F2GOKzC_RlimSQUIpB-BpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9d6e8340-b502-4dda-b70a-665c289cfff0 is not found.","severity":"ERROR"} +08:11:44.451 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:464665bd-288f-480f-8f2f-5ea1f0092094 +08:11:44.501 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:464665bd-288f-480f-8f2f-5ea1f0092094 +08:11:45.089 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b21f66c9-2b95-412e-b62e-95e0fbfdf231 +08:11:45.098 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b21f66c9-2b95-412e-b62e-95e0fbfdf231 +08:11:45.170 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a257d237-2fde-4e92-893d-6f0747c48b92 +08:11:45.179 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a257d237-2fde-4e92-893d-6f0747c48b92 +08:11:45.412 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:89db2e78-5298-4fc4-a453-b5b240b58c21 +08:11:45.421 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:89db2e78-5298-4fc4-a453-b5b240b58c21 +08:11:45.520 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:27b94562-e4d8-4685-8c33-01492e6c2c72 +08:11:45.526 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:27b94562-e4d8-4685-8c33-01492e6c2c72 +08:11:45.847 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cd99f7b1-4326-4f88-b173-8ece23d37625 +08:11:45.875 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cd99f7b1-4326-4f88-b173-8ece23d37625 +08:11:46.112 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ffdcee92 +08:11:46.123 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ffdcee92 +08:11:46.130 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c9815a6b +08:11:46.132 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c9815a6b +08:11:46.139 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c9815a6b +08:11:46.363 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:255885b6-d7d5-4d0c-877a-878ec3a5f4f2 +08:11:46.958 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e31260a8 +08:11:46.959 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e31260a8 +08:11:47.047 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c571b313 +08:11:47.048 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c571b313 +08:11:47.140 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c571b313 +08:11:47.160 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c571b313 +08:11:47.221 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:476b91c7-5f33-4e9f-87ae-a9efe853ee8e +08:11:47.255 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:476b91c7-5f33-4e9f-87ae-a9efe853ee8e +08:11:47.267 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e31260a8 +08:11:47.271 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a2609187 +08:11:47.291 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a2609187 +08:11:47.304 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a2609187 +08:11:47.317 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a2609187 +08:11:47.371 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d40afc03 +08:11:47.371 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d40afc03 +08:11:47.392 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d40afc03 +08:11:47.694 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:12315a50 +08:11:47.695 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:12315a50 +08:11:47.751 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:25082127-11f3-4783-a1a1-68e52b3b422b +08:11:47.820 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12315a50 +08:11:47.863 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ee70186c +08:11:47.863 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ee70186c +08:11:47.928 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12315a50 +08:11:48.102 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ee70186c +08:11:48.108 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:258f4923 +08:11:48.109 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:258f4923 +08:11:48.126 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:12315a50 +08:11:48.200 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:258f4923 +08:11:48.396 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b699189b-bcce-4250-8620-1ddb83e92767 +08:11:48.437 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d6d3c79d-b036-4a32-8000-2b8d7013c873 +08:11:48.438 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d6d3c79d-b036-4a32-8000-2b8d7013c873 +08:11:48.482 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:39e9247f-beb5-4692-9c53-f6b7f6e20057 +08:11:48.510 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d6d3c79d-b036-4a32-8000-2b8d7013c873 +08:11:48.626 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1939ce60-2a29-4073-b87d-c170318023ef +08:11:48.644 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d7efaf56 +08:11:48.654 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d7efaf56 +08:11:48.695 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a3acd6b9-da90-4f3b-8e91-35c332aee3c0 +08:11:48.697 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a3acd6b9-da90-4f3b-8e91-35c332aee3c0 +08:11:48.801 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2ac1a6fc +08:11:48.802 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2ac1a6fc +08:11:48.917 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1e247dee +08:11:49.062 [XNIO-1 task-1] -Rdk7FphQ1uz8H_PFtAcOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.063 [XNIO-1 task-1] -Rdk7FphQ1uz8H_PFtAcOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.063 [XNIO-1 task-1] -Rdk7FphQ1uz8H_PFtAcOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.063 [XNIO-1 task-1] -Rdk7FphQ1uz8H_PFtAcOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.063 [XNIO-1 task-1] -Rdk7FphQ1uz8H_PFtAcOw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.066 [XNIO-1 task-1] UY80DF1BSW-DQwY8MLtPjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.066 [XNIO-1 task-1] UY80DF1BSW-DQwY8MLtPjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.066 [XNIO-1 task-1] UY80DF1BSW-DQwY8MLtPjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.066 [XNIO-1 task-1] UY80DF1BSW-DQwY8MLtPjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.066 [XNIO-1 task-1] UY80DF1BSW-DQwY8MLtPjw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.069 [XNIO-1 task-1] uap9Ose2TqqlcWdAmBC9oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.069 [XNIO-1 task-1] uap9Ose2TqqlcWdAmBC9oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.069 [XNIO-1 task-1] uap9Ose2TqqlcWdAmBC9oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.069 [XNIO-1 task-1] uap9Ose2TqqlcWdAmBC9oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.069 [XNIO-1 task-1] uap9Ose2TqqlcWdAmBC9oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.075 [XNIO-1 task-1] HM-F-ca3SQqCXyMPujrJgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.075 [XNIO-1 task-1] HM-F-ca3SQqCXyMPujrJgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.075 [XNIO-1 task-1] HM-F-ca3SQqCXyMPujrJgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.075 [XNIO-1 task-1] HM-F-ca3SQqCXyMPujrJgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.075 [XNIO-1 task-1] HM-F-ca3SQqCXyMPujrJgg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.084 [XNIO-1 task-1] rVCIGlUxRLKb0X8L3sJZXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.084 [XNIO-1 task-1] rVCIGlUxRLKb0X8L3sJZXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.084 [XNIO-1 task-1] rVCIGlUxRLKb0X8L3sJZXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.085 [XNIO-1 task-1] rVCIGlUxRLKb0X8L3sJZXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.085 [XNIO-1 task-1] rVCIGlUxRLKb0X8L3sJZXw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.093 [XNIO-1 task-1] -HMTninKQme69yBez5tNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.093 [XNIO-1 task-1] -HMTninKQme69yBez5tNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.093 [XNIO-1 task-1] -HMTninKQme69yBez5tNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.093 [XNIO-1 task-1] -HMTninKQme69yBez5tNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.093 [XNIO-1 task-1] -HMTninKQme69yBez5tNzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.096 [XNIO-1 task-1] bR-Gh5VZTpKkei4Ws1HFFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.096 [XNIO-1 task-1] bR-Gh5VZTpKkei4Ws1HFFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.096 [XNIO-1 task-1] bR-Gh5VZTpKkei4Ws1HFFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.096 [XNIO-1 task-1] bR-Gh5VZTpKkei4Ws1HFFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.096 [XNIO-1 task-1] bR-Gh5VZTpKkei4Ws1HFFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.126 [XNIO-1 task-1] 2_sTqpxuTjCaYGXm3dwN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.126 [XNIO-1 task-1] 2_sTqpxuTjCaYGXm3dwN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.126 [XNIO-1 task-1] 2_sTqpxuTjCaYGXm3dwN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.126 [XNIO-1 task-1] 2_sTqpxuTjCaYGXm3dwN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.126 [XNIO-1 task-1] 2_sTqpxuTjCaYGXm3dwN3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.132 [XNIO-1 task-1] w9dbRgpfSlaHBRNm3WnABg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.132 [XNIO-1 task-1] w9dbRgpfSlaHBRNm3WnABg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.132 [XNIO-1 task-1] w9dbRgpfSlaHBRNm3WnABg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.132 [XNIO-1 task-1] w9dbRgpfSlaHBRNm3WnABg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.132 [XNIO-1 task-1] w9dbRgpfSlaHBRNm3WnABg DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.134 [XNIO-1 task-1] w9dbRgpfSlaHBRNm3WnABg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.138 [XNIO-1 task-1] TmJAgaEXSyGg0L5ENS7-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.138 [XNIO-1 task-1] TmJAgaEXSyGg0L5ENS7-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.138 [XNIO-1 task-1] TmJAgaEXSyGg0L5ENS7-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.138 [XNIO-1 task-1] TmJAgaEXSyGg0L5ENS7-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.138 [XNIO-1 task-1] TmJAgaEXSyGg0L5ENS7-ow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.140 [XNIO-1 task-1] wLk2bducSFO-p2iLEZqDkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.140 [XNIO-1 task-1] wLk2bducSFO-p2iLEZqDkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.140 [XNIO-1 task-1] wLk2bducSFO-p2iLEZqDkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.141 [XNIO-1 task-1] wLk2bducSFO-p2iLEZqDkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.141 [XNIO-1 task-1] wLk2bducSFO-p2iLEZqDkw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.148 [XNIO-1 task-1] 4rCAx2W4RAy4gh7zAxxvYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.148 [XNIO-1 task-1] 4rCAx2W4RAy4gh7zAxxvYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.149 [XNIO-1 task-1] 4rCAx2W4RAy4gh7zAxxvYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.149 [XNIO-1 task-1] 4rCAx2W4RAy4gh7zAxxvYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.149 [XNIO-1 task-1] 4rCAx2W4RAy4gh7zAxxvYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.151 [XNIO-1 task-1] im9BAYGIRsu6IO1B5Zl81Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.151 [XNIO-1 task-1] im9BAYGIRsu6IO1B5Zl81Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.151 [XNIO-1 task-1] im9BAYGIRsu6IO1B5Zl81Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.151 [XNIO-1 task-1] im9BAYGIRsu6IO1B5Zl81Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.151 [XNIO-1 task-1] im9BAYGIRsu6IO1B5Zl81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.151 [XNIO-1 task-1] im9BAYGIRsu6IO1B5Zl81Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.153 [XNIO-1 task-1] tc2yXXqAR5CA_coELFo6mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.153 [XNIO-1 task-1] tc2yXXqAR5CA_coELFo6mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.153 [XNIO-1 task-1] tc2yXXqAR5CA_coELFo6mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.154 [XNIO-1 task-1] tc2yXXqAR5CA_coELFo6mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.154 [XNIO-1 task-1] tc2yXXqAR5CA_coELFo6mw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.155 [XNIO-1 task-1] 5RiH5zRNRdGbF0Wa5OXqbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a171d97a-1cba-4df3-8deb-d68297eec9fb, base path is set to: null +08:11:49.155 [XNIO-1 task-1] 5RiH5zRNRdGbF0Wa5OXqbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.155 [XNIO-1 task-1] 5RiH5zRNRdGbF0Wa5OXqbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.155 [XNIO-1 task-1] 5RiH5zRNRdGbF0Wa5OXqbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a171d97a-1cba-4df3-8deb-d68297eec9fb, base path is set to: null +08:11:49.155 [XNIO-1 task-1] 5RiH5zRNRdGbF0Wa5OXqbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a171d97a-1cba-4df3-8deb-d68297eec9fb", "a171d97a-1cba-4df3-8deb-d68297eec9fb", refreshToken) +08:11:49.157 [XNIO-1 task-1] 5RiH5zRNRdGbF0Wa5OXqbQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a171d97a-1cba-4df3-8deb-d68297eec9fb is not found.","severity":"ERROR"} +08:11:49.160 [XNIO-1 task-1] KSBGhNRkQFuMl10SpzUNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.160 [XNIO-1 task-1] KSBGhNRkQFuMl10SpzUNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.160 [XNIO-1 task-1] KSBGhNRkQFuMl10SpzUNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.160 [XNIO-1 task-1] KSBGhNRkQFuMl10SpzUNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.160 [XNIO-1 task-1] KSBGhNRkQFuMl10SpzUNow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.164 [XNIO-1 task-1] lKB14W0ASf23JA_0jkjDcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.164 [XNIO-1 task-1] lKB14W0ASf23JA_0jkjDcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.164 [XNIO-1 task-1] lKB14W0ASf23JA_0jkjDcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.164 [XNIO-1 task-1] lKB14W0ASf23JA_0jkjDcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.164 [XNIO-1 task-1] lKB14W0ASf23JA_0jkjDcw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.165 [XNIO-1 task-1] lKB14W0ASf23JA_0jkjDcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.167 [XNIO-1 task-1] e-INcM6YQ1SfjVnIdRD6Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2646831f-1530-4529-9a5b-5fc53d2b9212 +08:11:49.167 [XNIO-1 task-1] e-INcM6YQ1SfjVnIdRD6Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.167 [XNIO-1 task-1] e-INcM6YQ1SfjVnIdRD6Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.167 [XNIO-1 task-1] e-INcM6YQ1SfjVnIdRD6Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2646831f-1530-4529-9a5b-5fc53d2b9212 +08:11:49.167 [XNIO-1 task-1] e-INcM6YQ1SfjVnIdRD6Ew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2646831f-1530-4529-9a5b-5fc53d2b9212 +08:11:49.176 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1b6f9187-b1eb-4433-a26b-29f84a587418 +08:11:49.176 [XNIO-1 task-1] 6U00ilbtTmiQzF1yXjxd8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.177 [XNIO-1 task-1] 6U00ilbtTmiQzF1yXjxd8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.177 [XNIO-1 task-1] 6U00ilbtTmiQzF1yXjxd8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.177 [XNIO-1 task-1] 6U00ilbtTmiQzF1yXjxd8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.177 [XNIO-1 task-1] 6U00ilbtTmiQzF1yXjxd8g DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.177 [XNIO-1 task-1] 6U00ilbtTmiQzF1yXjxd8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.182 [XNIO-1 task-1] ZgqL5xBjQM-32v_azUY9DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.182 [XNIO-1 task-1] ZgqL5xBjQM-32v_azUY9DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.182 [XNIO-1 task-1] ZgqL5xBjQM-32v_azUY9DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.182 [XNIO-1 task-1] ZgqL5xBjQM-32v_azUY9DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.182 [XNIO-1 task-1] ZgqL5xBjQM-32v_azUY9DA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.184 [XNIO-1 task-1] wEsuEeHzTLSKE0Hv_4m9tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.184 [XNIO-1 task-1] wEsuEeHzTLSKE0Hv_4m9tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.184 [XNIO-1 task-1] wEsuEeHzTLSKE0Hv_4m9tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.184 [XNIO-1 task-1] wEsuEeHzTLSKE0Hv_4m9tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.184 [XNIO-1 task-1] wEsuEeHzTLSKE0Hv_4m9tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.184 [XNIO-1 task-1] wEsuEeHzTLSKE0Hv_4m9tQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.186 [XNIO-1 task-1] JVZPMoq9RF2967wmHNRdDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.186 [XNIO-1 task-1] JVZPMoq9RF2967wmHNRdDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.186 [XNIO-1 task-1] JVZPMoq9RF2967wmHNRdDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.186 [XNIO-1 task-1] JVZPMoq9RF2967wmHNRdDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.189 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1b6f9187-b1eb-4433-a26b-29f84a587418 +08:11:49.193 [XNIO-1 task-1] Xk-vxFZWTYqhyMedVv5t6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.193 [XNIO-1 task-1] Xk-vxFZWTYqhyMedVv5t6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.193 [XNIO-1 task-1] Xk-vxFZWTYqhyMedVv5t6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.193 [XNIO-1 task-1] Xk-vxFZWTYqhyMedVv5t6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.197 [XNIO-1 task-1] ILhdnOL2TQKl25-rE9--YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.197 [XNIO-1 task-1] ILhdnOL2TQKl25-rE9--YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.197 [XNIO-1 task-1] ILhdnOL2TQKl25-rE9--YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.197 [XNIO-1 task-1] ILhdnOL2TQKl25-rE9--YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.198 [XNIO-1 task-1] ILhdnOL2TQKl25-rE9--YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.198 [XNIO-1 task-1] ILhdnOL2TQKl25-rE9--YQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.199 [XNIO-1 task-1] eBDkWX3CSrGXTzkwQgM42Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.199 [XNIO-1 task-1] eBDkWX3CSrGXTzkwQgM42Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.199 [XNIO-1 task-1] eBDkWX3CSrGXTzkwQgM42Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.199 [XNIO-1 task-1] eBDkWX3CSrGXTzkwQgM42Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.200 [XNIO-1 task-1] eBDkWX3CSrGXTzkwQgM42Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.202 [XNIO-1 task-1] VzL7mu2qS6ikU-ltr62VYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b6f9187-b1eb-4433-a26b-29f84a587418, base path is set to: null +08:11:49.202 [XNIO-1 task-1] VzL7mu2qS6ikU-ltr62VYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.202 [XNIO-1 task-1] VzL7mu2qS6ikU-ltr62VYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.202 [XNIO-1 task-1] VzL7mu2qS6ikU-ltr62VYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b6f9187-b1eb-4433-a26b-29f84a587418, base path is set to: null +08:11:49.202 [XNIO-1 task-1] VzL7mu2qS6ikU-ltr62VYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1b6f9187-b1eb-4433-a26b-29f84a587418", "1b6f9187-b1eb-4433-a26b-29f84a587418", refreshToken) +08:11:49.202 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1b6f9187-b1eb-4433-a26b-29f84a587418 +08:11:49.205 [XNIO-1 task-1] BYqatqVrSFOX00bHFuFfoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.205 [XNIO-1 task-1] BYqatqVrSFOX00bHFuFfoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.205 [XNIO-1 task-1] BYqatqVrSFOX00bHFuFfoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.206 [XNIO-1 task-1] BYqatqVrSFOX00bHFuFfoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.206 [XNIO-1 task-1] BYqatqVrSFOX00bHFuFfoA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.210 [XNIO-1 task-1] 0Ydiy4jfRV6Ib70j5r5yCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.210 [XNIO-1 task-1] 0Ydiy4jfRV6Ib70j5r5yCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.210 [XNIO-1 task-1] 0Ydiy4jfRV6Ib70j5r5yCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.210 [XNIO-1 task-1] 0Ydiy4jfRV6Ib70j5r5yCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.210 [XNIO-1 task-1] 0Ydiy4jfRV6Ib70j5r5yCw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.213 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e1ba441 +08:11:49.214 [XNIO-1 task-1] _1OkuTPGSUGUscawFGgc4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.214 [XNIO-1 task-1] _1OkuTPGSUGUscawFGgc4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.214 [XNIO-1 task-1] _1OkuTPGSUGUscawFGgc4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.214 [XNIO-1 task-1] _1OkuTPGSUGUscawFGgc4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.219 [XNIO-1 task-1] q76MaGegSFCWxTmJZaVaLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.219 [XNIO-1 task-1] q76MaGegSFCWxTmJZaVaLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.219 [XNIO-1 task-1] q76MaGegSFCWxTmJZaVaLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.219 [XNIO-1 task-1] q76MaGegSFCWxTmJZaVaLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.219 [XNIO-1 task-1] q76MaGegSFCWxTmJZaVaLA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.219 [XNIO-1 task-1] q76MaGegSFCWxTmJZaVaLA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.223 [XNIO-1 task-1] k7Jg68LMRxeM8_zWnsYlXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.223 [XNIO-1 task-1] k7Jg68LMRxeM8_zWnsYlXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.223 [XNIO-1 task-1] k7Jg68LMRxeM8_zWnsYlXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.223 [XNIO-1 task-1] k7Jg68LMRxeM8_zWnsYlXg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.228 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6e1ba441 +08:11:49.229 [XNIO-1 task-1] PSeoYp33T02U3rjYO5hvVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.229 [XNIO-1 task-1] PSeoYp33T02U3rjYO5hvVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.229 [XNIO-1 task-1] PSeoYp33T02U3rjYO5hvVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.229 [XNIO-1 task-1] PSeoYp33T02U3rjYO5hvVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.234 [XNIO-1 task-1] ROyJuuBFShqQEXOuzVyD0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.234 [XNIO-1 task-1] ROyJuuBFShqQEXOuzVyD0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.234 [XNIO-1 task-1] ROyJuuBFShqQEXOuzVyD0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.234 [XNIO-1 task-1] ROyJuuBFShqQEXOuzVyD0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.234 [XNIO-1 task-1] ROyJuuBFShqQEXOuzVyD0A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.240 [XNIO-1 task-1] Zxk9GJgVQryV1QdyftBB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.240 [XNIO-1 task-1] Zxk9GJgVQryV1QdyftBB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.240 [XNIO-1 task-1] Zxk9GJgVQryV1QdyftBB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.240 [XNIO-1 task-1] Zxk9GJgVQryV1QdyftBB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.241 [XNIO-1 task-1] Zxk9GJgVQryV1QdyftBB8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.243 [XNIO-1 task-1] ZTgp8fuVRHu204IO-_JgCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.243 [XNIO-1 task-1] ZTgp8fuVRHu204IO-_JgCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.243 [XNIO-1 task-1] ZTgp8fuVRHu204IO-_JgCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.243 [XNIO-1 task-1] ZTgp8fuVRHu204IO-_JgCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.243 [XNIO-1 task-1] ZTgp8fuVRHu204IO-_JgCA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.243 [XNIO-1 task-1] ZTgp8fuVRHu204IO-_JgCA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.245 [XNIO-1 task-1] Tt8h5qvsT8qnd8DV3BQIXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.245 [XNIO-1 task-1] Tt8h5qvsT8qnd8DV3BQIXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.245 [XNIO-1 task-1] Tt8h5qvsT8qnd8DV3BQIXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.245 [XNIO-1 task-1] Tt8h5qvsT8qnd8DV3BQIXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.245 [XNIO-1 task-1] Tt8h5qvsT8qnd8DV3BQIXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.248 [XNIO-1 task-1] N1_pPuA4Qc6bJnUyfnRv9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.248 [XNIO-1 task-1] N1_pPuA4Qc6bJnUyfnRv9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.249 [XNIO-1 task-1] N1_pPuA4Qc6bJnUyfnRv9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.249 [XNIO-1 task-1] N1_pPuA4Qc6bJnUyfnRv9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.249 [XNIO-1 task-1] N1_pPuA4Qc6bJnUyfnRv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.249 [XNIO-1 task-1] N1_pPuA4Qc6bJnUyfnRv9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.253 [XNIO-1 task-1] xa3GkoBTTqyzUtRvMdUn7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.253 [XNIO-1 task-1] xa3GkoBTTqyzUtRvMdUn7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.253 [XNIO-1 task-1] xa3GkoBTTqyzUtRvMdUn7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.253 [XNIO-1 task-1] xa3GkoBTTqyzUtRvMdUn7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.253 [XNIO-1 task-1] xa3GkoBTTqyzUtRvMdUn7w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.255 [XNIO-1 task-1] p5S8yJxTQimEGBvuWyivyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.255 [XNIO-1 task-1] p5S8yJxTQimEGBvuWyivyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.255 [XNIO-1 task-1] p5S8yJxTQimEGBvuWyivyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.255 [XNIO-1 task-1] p5S8yJxTQimEGBvuWyivyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.255 [XNIO-1 task-1] p5S8yJxTQimEGBvuWyivyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.260 [XNIO-1 task-1] Dclxsxi3RsOTIosa6qiisQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.260 [XNIO-1 task-1] Dclxsxi3RsOTIosa6qiisQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.261 [XNIO-1 task-1] Dclxsxi3RsOTIosa6qiisQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.261 [XNIO-1 task-1] Dclxsxi3RsOTIosa6qiisQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.261 [XNIO-1 task-1] Dclxsxi3RsOTIosa6qiisQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.263 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a49a89d +08:11:49.264 [XNIO-1 task-1] TO63UHKHQlWEM2vLkE-KnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.264 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3a49a89d +08:11:49.264 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a49a89d +08:11:49.264 [XNIO-1 task-1] TO63UHKHQlWEM2vLkE-KnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.264 [XNIO-1 task-1] TO63UHKHQlWEM2vLkE-KnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.268 [XNIO-1 task-1] wtnaMpgZQo-3wYSWLbTQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.268 [XNIO-1 task-1] wtnaMpgZQo-3wYSWLbTQNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.268 [XNIO-1 task-1] wtnaMpgZQo-3wYSWLbTQNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.268 [XNIO-1 task-1] wtnaMpgZQo-3wYSWLbTQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.268 [XNIO-1 task-1] wtnaMpgZQo-3wYSWLbTQNw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.269 [XNIO-1 task-1] wtnaMpgZQo-3wYSWLbTQNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.271 [XNIO-1 task-1] JYcYM5a3TKCJu5MRSn2h2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.271 [XNIO-1 task-1] JYcYM5a3TKCJu5MRSn2h2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.271 [XNIO-1 task-1] JYcYM5a3TKCJu5MRSn2h2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.271 [XNIO-1 task-1] JYcYM5a3TKCJu5MRSn2h2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.271 [XNIO-1 task-1] JYcYM5a3TKCJu5MRSn2h2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.273 [XNIO-1 task-1] XAvUQ7HcQsmj41guu9EnOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.273 [XNIO-1 task-1] XAvUQ7HcQsmj41guu9EnOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.273 [XNIO-1 task-1] XAvUQ7HcQsmj41guu9EnOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.273 [XNIO-1 task-1] XAvUQ7HcQsmj41guu9EnOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.273 [XNIO-1 task-1] XAvUQ7HcQsmj41guu9EnOw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.280 [XNIO-1 task-1] wyLcutXERrCumeVrqEQd4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.280 [XNIO-1 task-1] wyLcutXERrCumeVrqEQd4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.281 [XNIO-1 task-1] wyLcutXERrCumeVrqEQd4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.281 [XNIO-1 task-1] wyLcutXERrCumeVrqEQd4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.281 [XNIO-1 task-1] wyLcutXERrCumeVrqEQd4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.281 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3a49a89d +08:11:49.282 [XNIO-1 task-1] 3QTedlRdThez5uGcU_3ENQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.282 [XNIO-1 task-1] 3QTedlRdThez5uGcU_3ENQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.282 [XNIO-1 task-1] 3QTedlRdThez5uGcU_3ENQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.283 [XNIO-1 task-1] 3QTedlRdThez5uGcU_3ENQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.283 [XNIO-1 task-1] 3QTedlRdThez5uGcU_3ENQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.287 [XNIO-1 task-1] 6LqKYu6UTBy2cIfHw-8y8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.287 [XNIO-1 task-1] 6LqKYu6UTBy2cIfHw-8y8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.287 [XNIO-1 task-1] 6LqKYu6UTBy2cIfHw-8y8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.287 [XNIO-1 task-1] 6LqKYu6UTBy2cIfHw-8y8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.287 [XNIO-1 task-1] 6LqKYu6UTBy2cIfHw-8y8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.289 [XNIO-1 task-1] wGY-sBAMSNm_kEKsqPbl3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.290 [XNIO-1 task-1] wGY-sBAMSNm_kEKsqPbl3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.290 [XNIO-1 task-1] wGY-sBAMSNm_kEKsqPbl3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.290 [XNIO-1 task-1] wGY-sBAMSNm_kEKsqPbl3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.290 [XNIO-1 task-1] wGY-sBAMSNm_kEKsqPbl3w DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.290 [XNIO-1 task-1] wGY-sBAMSNm_kEKsqPbl3w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.291 [XNIO-1 task-1] ZLRvql0hRSmTLmSVRqSIZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.292 [XNIO-1 task-1] ZLRvql0hRSmTLmSVRqSIZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.292 [XNIO-1 task-1] ZLRvql0hRSmTLmSVRqSIZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.292 [XNIO-1 task-1] ZLRvql0hRSmTLmSVRqSIZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.295 [XNIO-1 task-1] IumyRRjqTVG0Bbh5STlRLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.295 [XNIO-1 task-1] IumyRRjqTVG0Bbh5STlRLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.295 [XNIO-1 task-1] IumyRRjqTVG0Bbh5STlRLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.295 [XNIO-1 task-1] IumyRRjqTVG0Bbh5STlRLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.295 [XNIO-1 task-1] IumyRRjqTVG0Bbh5STlRLg DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.295 [XNIO-1 task-1] IumyRRjqTVG0Bbh5STlRLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.298 [XNIO-1 task-1] QBNsivEuS0K-_fOHooAGnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.298 [XNIO-1 task-1] QBNsivEuS0K-_fOHooAGnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.298 [XNIO-1 task-1] QBNsivEuS0K-_fOHooAGnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.298 [XNIO-1 task-1] QBNsivEuS0K-_fOHooAGnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.298 [XNIO-1 task-1] QBNsivEuS0K-_fOHooAGnw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.300 [XNIO-1 task-1] ngskdQ8WS2yZE_KXpr2rvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.300 [XNIO-1 task-1] ngskdQ8WS2yZE_KXpr2rvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.300 [XNIO-1 task-1] ngskdQ8WS2yZE_KXpr2rvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.300 [XNIO-1 task-1] ngskdQ8WS2yZE_KXpr2rvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.300 [XNIO-1 task-1] ngskdQ8WS2yZE_KXpr2rvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.300 [XNIO-1 task-1] ngskdQ8WS2yZE_KXpr2rvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.302 [XNIO-1 task-1] w7YrCL_SSD2DTXNONniY5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.302 [XNIO-1 task-1] w7YrCL_SSD2DTXNONniY5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.302 [XNIO-1 task-1] w7YrCL_SSD2DTXNONniY5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.302 [XNIO-1 task-1] w7YrCL_SSD2DTXNONniY5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.307 [XNIO-1 task-1] Yhm0wETuRKChbRZblfcQtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.307 [XNIO-1 task-1] Yhm0wETuRKChbRZblfcQtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.307 [XNIO-1 task-1] Yhm0wETuRKChbRZblfcQtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.307 [XNIO-1 task-1] Yhm0wETuRKChbRZblfcQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.307 [XNIO-1 task-1] Yhm0wETuRKChbRZblfcQtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.312 [XNIO-1 task-1] N-caYqcrTgWwcQjejZ1xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.312 [XNIO-1 task-1] N-caYqcrTgWwcQjejZ1xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.312 [XNIO-1 task-1] N-caYqcrTgWwcQjejZ1xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.312 [XNIO-1 task-1] N-caYqcrTgWwcQjejZ1xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.313 [XNIO-1 task-1] N-caYqcrTgWwcQjejZ1xug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.316 [XNIO-1 task-1] nMtZIUJ4SoK6iNux__MYBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.316 [XNIO-1 task-1] nMtZIUJ4SoK6iNux__MYBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.316 [XNIO-1 task-1] nMtZIUJ4SoK6iNux__MYBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.316 [XNIO-1 task-1] nMtZIUJ4SoK6iNux__MYBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.316 [XNIO-1 task-1] nMtZIUJ4SoK6iNux__MYBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.321 [XNIO-1 task-1] pVLJXiW7RF2zWd-jm_20zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.321 [XNIO-1 task-1] pVLJXiW7RF2zWd-jm_20zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.321 [XNIO-1 task-1] pVLJXiW7RF2zWd-jm_20zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.321 [XNIO-1 task-1] pVLJXiW7RF2zWd-jm_20zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.325 [XNIO-1 task-1] JAhEeMc9Qz-ZtZcW2Q3nwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.325 [XNIO-1 task-1] JAhEeMc9Qz-ZtZcW2Q3nwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.325 [XNIO-1 task-1] JAhEeMc9Qz-ZtZcW2Q3nwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.325 [XNIO-1 task-1] JAhEeMc9Qz-ZtZcW2Q3nwg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.325 [XNIO-1 task-1] JAhEeMc9Qz-ZtZcW2Q3nwg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.329 [XNIO-1 task-1] 0qLlU591Sd-EAo60fbEXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.329 [XNIO-1 task-1] 0qLlU591Sd-EAo60fbEXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.329 [XNIO-1 task-1] 0qLlU591Sd-EAo60fbEXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.329 [XNIO-1 task-1] 0qLlU591Sd-EAo60fbEXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.330 [XNIO-1 task-1] 0qLlU591Sd-EAo60fbEXGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.332 [XNIO-1 task-1] JF5GNMINSRe0KdgNSpf0YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.332 [XNIO-1 task-1] JF5GNMINSRe0KdgNSpf0YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.332 [XNIO-1 task-1] JF5GNMINSRe0KdgNSpf0YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.332 [XNIO-1 task-1] JF5GNMINSRe0KdgNSpf0YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.332 [XNIO-1 task-1] JF5GNMINSRe0KdgNSpf0YA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.332 [XNIO-1 task-1] JF5GNMINSRe0KdgNSpf0YA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.334 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a49a89d +08:11:49.336 [XNIO-1 task-1] C3yvlN1HR9SVRirC05ZWzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.337 [XNIO-1 task-1] C3yvlN1HR9SVRirC05ZWzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.337 [XNIO-1 task-1] C3yvlN1HR9SVRirC05ZWzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.337 [XNIO-1 task-1] C3yvlN1HR9SVRirC05ZWzg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.342 [XNIO-1 task-1] wIh7IHyKTVmSbET7Ffy4zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.342 [XNIO-1 task-1] wIh7IHyKTVmSbET7Ffy4zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.342 [XNIO-1 task-1] wIh7IHyKTVmSbET7Ffy4zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.342 [XNIO-1 task-1] wIh7IHyKTVmSbET7Ffy4zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.342 [XNIO-1 task-1] wIh7IHyKTVmSbET7Ffy4zA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.343 [XNIO-1 task-1] wIh7IHyKTVmSbET7Ffy4zA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.347 [XNIO-1 task-1] 6kX2pGOFQC299a_eaGk_5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.347 [XNIO-1 task-1] 6kX2pGOFQC299a_eaGk_5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.347 [XNIO-1 task-1] 6kX2pGOFQC299a_eaGk_5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.347 [XNIO-1 task-1] 6kX2pGOFQC299a_eaGk_5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.351 [XNIO-1 task-1] bNKthymNRd2JNkqGxMLdbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.351 [XNIO-1 task-1] bNKthymNRd2JNkqGxMLdbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.352 [XNIO-1 task-1] bNKthymNRd2JNkqGxMLdbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.352 [XNIO-1 task-1] bNKthymNRd2JNkqGxMLdbw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.352 [XNIO-1 task-1] bNKthymNRd2JNkqGxMLdbw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.356 [XNIO-1 task-1] kILJ51_6R7-gQDOZnFKnMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.356 [XNIO-1 task-1] kILJ51_6R7-gQDOZnFKnMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.356 [XNIO-1 task-1] kILJ51_6R7-gQDOZnFKnMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.356 [XNIO-1 task-1] kILJ51_6R7-gQDOZnFKnMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.356 [XNIO-1 task-1] kILJ51_6R7-gQDOZnFKnMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.358 [XNIO-1 task-1] PoHsnArHQUeokrHup4mqdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.358 [XNIO-1 task-1] PoHsnArHQUeokrHup4mqdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.358 [XNIO-1 task-1] PoHsnArHQUeokrHup4mqdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.359 [XNIO-1 task-1] PoHsnArHQUeokrHup4mqdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.359 [XNIO-1 task-1] PoHsnArHQUeokrHup4mqdg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.359 [XNIO-1 task-1] PoHsnArHQUeokrHup4mqdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.360 [XNIO-1 task-1] T_8uIRcjSo26jCDGfqkcSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.360 [XNIO-1 task-1] T_8uIRcjSo26jCDGfqkcSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.360 [XNIO-1 task-1] T_8uIRcjSo26jCDGfqkcSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.360 [XNIO-1 task-1] T_8uIRcjSo26jCDGfqkcSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.365 [XNIO-1 task-1] lhJCgWafSlWYxKXEeRLyBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.365 [XNIO-1 task-1] lhJCgWafSlWYxKXEeRLyBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.365 [XNIO-1 task-1] lhJCgWafSlWYxKXEeRLyBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.365 [XNIO-1 task-1] lhJCgWafSlWYxKXEeRLyBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.365 [XNIO-1 task-1] lhJCgWafSlWYxKXEeRLyBg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.365 [XNIO-1 task-1] lhJCgWafSlWYxKXEeRLyBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.367 [XNIO-1 task-1] XvQ8QIGKSNa8ySaPMfkbvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.367 [XNIO-1 task-1] XvQ8QIGKSNa8ySaPMfkbvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.367 [XNIO-1 task-1] XvQ8QIGKSNa8ySaPMfkbvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.367 [XNIO-1 task-1] XvQ8QIGKSNa8ySaPMfkbvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.367 [XNIO-1 task-1] XvQ8QIGKSNa8ySaPMfkbvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.368 [XNIO-1 task-1] 6c_xWZETQlSrvrGW5VrqzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.369 [XNIO-1 task-1] 6c_xWZETQlSrvrGW5VrqzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.369 [XNIO-1 task-1] 6c_xWZETQlSrvrGW5VrqzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.369 [XNIO-1 task-1] 6c_xWZETQlSrvrGW5VrqzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.369 [XNIO-1 task-1] 6c_xWZETQlSrvrGW5VrqzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.369 [XNIO-1 task-1] 6c_xWZETQlSrvrGW5VrqzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.371 [XNIO-1 task-1] L8kRgqkARBKNNM-TtQsEGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.371 [XNIO-1 task-1] L8kRgqkARBKNNM-TtQsEGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.371 [XNIO-1 task-1] L8kRgqkARBKNNM-TtQsEGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.371 [XNIO-1 task-1] L8kRgqkARBKNNM-TtQsEGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.371 [XNIO-1 task-1] L8kRgqkARBKNNM-TtQsEGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.373 [XNIO-1 task-1] y2kGVydqQq-Bpwn7_Ms4kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.373 [XNIO-1 task-1] y2kGVydqQq-Bpwn7_Ms4kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.373 [XNIO-1 task-1] y2kGVydqQq-Bpwn7_Ms4kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.373 [XNIO-1 task-1] y2kGVydqQq-Bpwn7_Ms4kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.373 [XNIO-1 task-1] y2kGVydqQq-Bpwn7_Ms4kw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.377 [XNIO-1 task-1] riAzKPNkQueVTbHJVKYWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.377 [XNIO-1 task-1] riAzKPNkQueVTbHJVKYWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.377 [XNIO-1 task-1] riAzKPNkQueVTbHJVKYWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.377 [XNIO-1 task-1] riAzKPNkQueVTbHJVKYWYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.382 [XNIO-1 task-1] Zs4cww-7Ru6-6uPbbLUZQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.382 [XNIO-1 task-1] Zs4cww-7Ru6-6uPbbLUZQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.382 [XNIO-1 task-1] Zs4cww-7Ru6-6uPbbLUZQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.382 [XNIO-1 task-1] Zs4cww-7Ru6-6uPbbLUZQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.382 [XNIO-1 task-1] Zs4cww-7Ru6-6uPbbLUZQg DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.382 [XNIO-1 task-1] Zs4cww-7Ru6-6uPbbLUZQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.384 [XNIO-1 task-1] 9X6iJ0RHQ4iVX0WvkjnGtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.384 [XNIO-1 task-1] 9X6iJ0RHQ4iVX0WvkjnGtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.384 [XNIO-1 task-1] 9X6iJ0RHQ4iVX0WvkjnGtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.384 [XNIO-1 task-1] 9X6iJ0RHQ4iVX0WvkjnGtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.384 [XNIO-1 task-1] 9X6iJ0RHQ4iVX0WvkjnGtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.385 [XNIO-1 task-1] prTZ96orQmSzlWJhKwTI-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.385 [XNIO-1 task-1] prTZ96orQmSzlWJhKwTI-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.385 [XNIO-1 task-1] prTZ96orQmSzlWJhKwTI-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.386 [XNIO-1 task-1] prTZ96orQmSzlWJhKwTI-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.386 [XNIO-1 task-1] prTZ96orQmSzlWJhKwTI-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.386 [XNIO-1 task-1] prTZ96orQmSzlWJhKwTI-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.387 [XNIO-1 task-1] iv4IGnSNRoenT43qZeD0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.387 [XNIO-1 task-1] iv4IGnSNRoenT43qZeD0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.387 [XNIO-1 task-1] iv4IGnSNRoenT43qZeD0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.387 [XNIO-1 task-1] iv4IGnSNRoenT43qZeD0MQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.392 [XNIO-1 task-1] _cIOLyRNQlG86d0IkCJXkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.392 [XNIO-1 task-1] _cIOLyRNQlG86d0IkCJXkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.392 [XNIO-1 task-1] _cIOLyRNQlG86d0IkCJXkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.392 [XNIO-1 task-1] _cIOLyRNQlG86d0IkCJXkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.392 [XNIO-1 task-1] _cIOLyRNQlG86d0IkCJXkg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.392 [XNIO-1 task-1] _cIOLyRNQlG86d0IkCJXkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.394 [XNIO-1 task-1] x_0XcUEKSOmwBioylXLv2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.394 [XNIO-1 task-1] x_0XcUEKSOmwBioylXLv2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.394 [XNIO-1 task-1] x_0XcUEKSOmwBioylXLv2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.394 [XNIO-1 task-1] x_0XcUEKSOmwBioylXLv2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.394 [XNIO-1 task-1] x_0XcUEKSOmwBioylXLv2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.395 [XNIO-1 task-1] bcSbKqOtQoeqVCMrHQmwig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.395 [XNIO-1 task-1] bcSbKqOtQoeqVCMrHQmwig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.395 [XNIO-1 task-1] bcSbKqOtQoeqVCMrHQmwig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.396 [XNIO-1 task-1] bcSbKqOtQoeqVCMrHQmwig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.396 [XNIO-1 task-1] bcSbKqOtQoeqVCMrHQmwig DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.396 [XNIO-1 task-1] bcSbKqOtQoeqVCMrHQmwig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.397 [XNIO-1 task-1] Xozs-sEHS2W5lyEOkwYVCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.397 [XNIO-1 task-1] Xozs-sEHS2W5lyEOkwYVCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.397 [XNIO-1 task-1] Xozs-sEHS2W5lyEOkwYVCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.397 [XNIO-1 task-1] Xozs-sEHS2W5lyEOkwYVCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.401 [XNIO-1 task-1] hW2t8Sb5QVurXQgXt2t--g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.401 [XNIO-1 task-1] hW2t8Sb5QVurXQgXt2t--g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.401 [XNIO-1 task-1] hW2t8Sb5QVurXQgXt2t--g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.401 [XNIO-1 task-1] hW2t8Sb5QVurXQgXt2t--g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.401 [XNIO-1 task-1] hW2t8Sb5QVurXQgXt2t--g DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.401 [XNIO-1 task-1] hW2t8Sb5QVurXQgXt2t--g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.403 [XNIO-1 task-1] 5RQZP24oRgeKg_wEsSeYWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.403 [XNIO-1 task-1] 5RQZP24oRgeKg_wEsSeYWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.403 [XNIO-1 task-1] 5RQZP24oRgeKg_wEsSeYWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.403 [XNIO-1 task-1] 5RQZP24oRgeKg_wEsSeYWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.403 [XNIO-1 task-1] 5RQZP24oRgeKg_wEsSeYWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.404 [XNIO-1 task-1] nrszJ_KQSXyRhNoDc6IlkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.404 [XNIO-1 task-1] nrszJ_KQSXyRhNoDc6IlkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.404 [XNIO-1 task-1] nrszJ_KQSXyRhNoDc6IlkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.404 [XNIO-1 task-1] nrszJ_KQSXyRhNoDc6IlkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.405 [XNIO-1 task-1] nrszJ_KQSXyRhNoDc6IlkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.405 [XNIO-1 task-1] nrszJ_KQSXyRhNoDc6IlkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.406 [XNIO-1 task-1] wAGQg13aT4qyRgTAb-UzIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.407 [XNIO-1 task-1] wAGQg13aT4qyRgTAb-UzIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.407 [XNIO-1 task-1] wAGQg13aT4qyRgTAb-UzIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.407 [XNIO-1 task-1] wAGQg13aT4qyRgTAb-UzIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.407 [XNIO-1 task-1] wAGQg13aT4qyRgTAb-UzIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.408 [XNIO-1 task-1] BOH5a4BwQAKr6MRPyIajnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.408 [XNIO-1 task-1] BOH5a4BwQAKr6MRPyIajnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.408 [XNIO-1 task-1] BOH5a4BwQAKr6MRPyIajnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.409 [XNIO-1 task-1] BOH5a4BwQAKr6MRPyIajnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.409 [XNIO-1 task-1] BOH5a4BwQAKr6MRPyIajnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.413 [XNIO-1 task-1] rx8zMM_HTt6YPnSL5lDfww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.413 [XNIO-1 task-1] rx8zMM_HTt6YPnSL5lDfww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.413 [XNIO-1 task-1] rx8zMM_HTt6YPnSL5lDfww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.413 [XNIO-1 task-1] rx8zMM_HTt6YPnSL5lDfww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.413 [XNIO-1 task-1] rx8zMM_HTt6YPnSL5lDfww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.414 [XNIO-1 task-1] -u7mbLgtQV65Dr2FH0Tgrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.414 [XNIO-1 task-1] -u7mbLgtQV65Dr2FH0Tgrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.414 [XNIO-1 task-1] -u7mbLgtQV65Dr2FH0Tgrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.414 [XNIO-1 task-1] -u7mbLgtQV65Dr2FH0Tgrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.414 [XNIO-1 task-1] -u7mbLgtQV65Dr2FH0Tgrw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.415 [XNIO-1 task-1] -u7mbLgtQV65Dr2FH0Tgrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.416 [XNIO-1 task-1] dbOqL09sQfKSZpJAtinEXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.416 [XNIO-1 task-1] dbOqL09sQfKSZpJAtinEXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.416 [XNIO-1 task-1] dbOqL09sQfKSZpJAtinEXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.416 [XNIO-1 task-1] dbOqL09sQfKSZpJAtinEXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.416 [XNIO-1 task-1] dbOqL09sQfKSZpJAtinEXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.418 [XNIO-1 task-1] l19TT2ndTH-qTCT9k2v9rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.418 [XNIO-1 task-1] l19TT2ndTH-qTCT9k2v9rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.418 [XNIO-1 task-1] l19TT2ndTH-qTCT9k2v9rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.418 [XNIO-1 task-1] l19TT2ndTH-qTCT9k2v9rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.418 [XNIO-1 task-1] l19TT2ndTH-qTCT9k2v9rA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.418 [XNIO-1 task-1] l19TT2ndTH-qTCT9k2v9rA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.419 [XNIO-1 task-1] K-iz-X7iQWC0MYdj2oANWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.419 [XNIO-1 task-1] K-iz-X7iQWC0MYdj2oANWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.419 [XNIO-1 task-1] K-iz-X7iQWC0MYdj2oANWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.420 [XNIO-1 task-1] K-iz-X7iQWC0MYdj2oANWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.420 [XNIO-1 task-1] K-iz-X7iQWC0MYdj2oANWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.421 [XNIO-1 task-1] fkeENeaZTxKd0l3dDf2vUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.421 [XNIO-1 task-1] fkeENeaZTxKd0l3dDf2vUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.421 [XNIO-1 task-1] fkeENeaZTxKd0l3dDf2vUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.421 [XNIO-1 task-1] fkeENeaZTxKd0l3dDf2vUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.421 [XNIO-1 task-1] fkeENeaZTxKd0l3dDf2vUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.421 [XNIO-1 task-1] fkeENeaZTxKd0l3dDf2vUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.423 [XNIO-1 task-1] it0IyBuJTO2veS4yAcJ4tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.423 [XNIO-1 task-1] it0IyBuJTO2veS4yAcJ4tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.423 [XNIO-1 task-1] it0IyBuJTO2veS4yAcJ4tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.423 [XNIO-1 task-1] it0IyBuJTO2veS4yAcJ4tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.423 [XNIO-1 task-1] it0IyBuJTO2veS4yAcJ4tQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.424 [XNIO-1 task-1] v_sgHCGNTUukM45fGMVi4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.425 [XNIO-1 task-1] v_sgHCGNTUukM45fGMVi4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.425 [XNIO-1 task-1] v_sgHCGNTUukM45fGMVi4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.425 [XNIO-1 task-1] v_sgHCGNTUukM45fGMVi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.425 [XNIO-1 task-1] v_sgHCGNTUukM45fGMVi4A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.429 [XNIO-1 task-1] LPBGHykcQu-XndDGRlJ_dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.429 [XNIO-1 task-1] LPBGHykcQu-XndDGRlJ_dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.430 [XNIO-1 task-1] LPBGHykcQu-XndDGRlJ_dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.430 [XNIO-1 task-1] LPBGHykcQu-XndDGRlJ_dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.433 [XNIO-1 task-1] pZ01wzcFTr2bzTUmL9rl0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.433 [XNIO-1 task-1] pZ01wzcFTr2bzTUmL9rl0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.433 [XNIO-1 task-1] pZ01wzcFTr2bzTUmL9rl0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.433 [XNIO-1 task-1] pZ01wzcFTr2bzTUmL9rl0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.433 [XNIO-1 task-1] pZ01wzcFTr2bzTUmL9rl0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.433 [XNIO-1 task-1] pZ01wzcFTr2bzTUmL9rl0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.436 [XNIO-1 task-1] CE9wPVbQTQinl1BZe7QruQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.436 [XNIO-1 task-1] CE9wPVbQTQinl1BZe7QruQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.436 [XNIO-1 task-1] CE9wPVbQTQinl1BZe7QruQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.437 [XNIO-1 task-1] CE9wPVbQTQinl1BZe7QruQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.441 [XNIO-1 task-1] bnyCZ0I8RTKzkJn9MFrI9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.441 [XNIO-1 task-1] bnyCZ0I8RTKzkJn9MFrI9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.441 [XNIO-1 task-1] bnyCZ0I8RTKzkJn9MFrI9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.441 [XNIO-1 task-1] bnyCZ0I8RTKzkJn9MFrI9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.441 [XNIO-1 task-1] bnyCZ0I8RTKzkJn9MFrI9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.445 [XNIO-1 task-1] BDNNZObFRv2ieKY7vA4Btg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.445 [XNIO-1 task-1] BDNNZObFRv2ieKY7vA4Btg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.445 [XNIO-1 task-1] BDNNZObFRv2ieKY7vA4Btg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.445 [XNIO-1 task-1] BDNNZObFRv2ieKY7vA4Btg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.450 [XNIO-1 task-1] cGxL2LxlR7OVr2bfitNREg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.450 [XNIO-1 task-1] cGxL2LxlR7OVr2bfitNREg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.450 [XNIO-1 task-1] cGxL2LxlR7OVr2bfitNREg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.450 [XNIO-1 task-1] cGxL2LxlR7OVr2bfitNREg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.450 [XNIO-1 task-1] cGxL2LxlR7OVr2bfitNREg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.450 [XNIO-1 task-1] cGxL2LxlR7OVr2bfitNREg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.452 [XNIO-1 task-1] _oAGDhzMQJe3wg0d5u6FuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.452 [XNIO-1 task-1] _oAGDhzMQJe3wg0d5u6FuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.452 [XNIO-1 task-1] _oAGDhzMQJe3wg0d5u6FuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.452 [XNIO-1 task-1] _oAGDhzMQJe3wg0d5u6FuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.456 [XNIO-1 task-1] sawIBjnUQW6dhxiIIrPdig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.456 [XNIO-1 task-1] sawIBjnUQW6dhxiIIrPdig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.456 [XNIO-1 task-1] sawIBjnUQW6dhxiIIrPdig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.456 [XNIO-1 task-1] sawIBjnUQW6dhxiIIrPdig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.456 [XNIO-1 task-1] sawIBjnUQW6dhxiIIrPdig DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.461 [XNIO-1 task-1] 4wrb7AEFR4-DPfT63ZVNkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.461 [XNIO-1 task-1] 4wrb7AEFR4-DPfT63ZVNkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.461 [XNIO-1 task-1] 4wrb7AEFR4-DPfT63ZVNkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.461 [XNIO-1 task-1] 4wrb7AEFR4-DPfT63ZVNkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.461 [XNIO-1 task-1] 4wrb7AEFR4-DPfT63ZVNkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.462 [XNIO-1 task-1] pWaZr24SSX6AaN5zUSpgdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.462 [XNIO-1 task-1] pWaZr24SSX6AaN5zUSpgdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.463 [XNIO-1 task-1] pWaZr24SSX6AaN5zUSpgdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.463 [XNIO-1 task-1] pWaZr24SSX6AaN5zUSpgdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.463 [XNIO-1 task-1] pWaZr24SSX6AaN5zUSpgdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.463 [XNIO-1 task-1] pWaZr24SSX6AaN5zUSpgdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.464 [XNIO-1 task-1] 1-3RIzT2QOi5Zts7O28phA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.464 [XNIO-1 task-1] 1-3RIzT2QOi5Zts7O28phA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.464 [XNIO-1 task-1] 1-3RIzT2QOi5Zts7O28phA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.464 [XNIO-1 task-1] 1-3RIzT2QOi5Zts7O28phA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.464 [XNIO-1 task-1] 1-3RIzT2QOi5Zts7O28phA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.466 [XNIO-1 task-1] 2QAaI0vBRpOO23f3YLIwlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.466 [XNIO-1 task-1] 2QAaI0vBRpOO23f3YLIwlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.466 [XNIO-1 task-1] 2QAaI0vBRpOO23f3YLIwlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.466 [XNIO-1 task-1] 2QAaI0vBRpOO23f3YLIwlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.466 [XNIO-1 task-1] 2QAaI0vBRpOO23f3YLIwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.466 [XNIO-1 task-1] 2QAaI0vBRpOO23f3YLIwlw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.468 [XNIO-1 task-1] jDO3DJ86Rnuq_t7vOo9IPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.468 [XNIO-1 task-1] jDO3DJ86Rnuq_t7vOo9IPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.468 [XNIO-1 task-1] jDO3DJ86Rnuq_t7vOo9IPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.468 [XNIO-1 task-1] jDO3DJ86Rnuq_t7vOo9IPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.468 [XNIO-1 task-1] jDO3DJ86Rnuq_t7vOo9IPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.469 [XNIO-1 task-1] 2wx_OgllRmyN6qxips4WTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.469 [XNIO-1 task-1] 2wx_OgllRmyN6qxips4WTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.469 [XNIO-1 task-1] 2wx_OgllRmyN6qxips4WTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.469 [XNIO-1 task-1] 2wx_OgllRmyN6qxips4WTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.469 [XNIO-1 task-1] 2wx_OgllRmyN6qxips4WTg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.470 [XNIO-1 task-1] 2wx_OgllRmyN6qxips4WTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.471 [XNIO-1 task-1] z3sGUb0jReeIHePVhEXbJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.471 [XNIO-1 task-1] z3sGUb0jReeIHePVhEXbJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.471 [XNIO-1 task-1] z3sGUb0jReeIHePVhEXbJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.471 [XNIO-1 task-1] z3sGUb0jReeIHePVhEXbJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.471 [XNIO-1 task-1] z3sGUb0jReeIHePVhEXbJA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.473 [XNIO-1 task-1] 3651phybQES_YVBJdobgyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.473 [XNIO-1 task-1] 3651phybQES_YVBJdobgyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.473 [XNIO-1 task-1] 3651phybQES_YVBJdobgyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.473 [XNIO-1 task-1] 3651phybQES_YVBJdobgyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.473 [XNIO-1 task-1] 3651phybQES_YVBJdobgyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.477 [XNIO-1 task-1] tQSHJpTtT1ymAiqyFipdGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.477 [XNIO-1 task-1] tQSHJpTtT1ymAiqyFipdGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.477 [XNIO-1 task-1] tQSHJpTtT1ymAiqyFipdGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.477 [XNIO-1 task-1] tQSHJpTtT1ymAiqyFipdGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.477 [XNIO-1 task-1] tQSHJpTtT1ymAiqyFipdGw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.479 [XNIO-1 task-1] mb8kotWTSSiujH7qyiakXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.479 [XNIO-1 task-1] mb8kotWTSSiujH7qyiakXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.479 [XNIO-1 task-1] mb8kotWTSSiujH7qyiakXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.479 [XNIO-1 task-1] mb8kotWTSSiujH7qyiakXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.479 [XNIO-1 task-1] mb8kotWTSSiujH7qyiakXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.483 [XNIO-1 task-1] lGDzGXp5Q5mr3gOOfd4rbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.483 [XNIO-1 task-1] lGDzGXp5Q5mr3gOOfd4rbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.483 [XNIO-1 task-1] lGDzGXp5Q5mr3gOOfd4rbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.484 [XNIO-1 task-1] lGDzGXp5Q5mr3gOOfd4rbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.484 [XNIO-1 task-1] lGDzGXp5Q5mr3gOOfd4rbg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.485 [XNIO-1 task-1] s9xOwngrTguDFfnL04C6Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.485 [XNIO-1 task-1] s9xOwngrTguDFfnL04C6Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.485 [XNIO-1 task-1] s9xOwngrTguDFfnL04C6Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.485 [XNIO-1 task-1] s9xOwngrTguDFfnL04C6Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.486 [XNIO-1 task-1] s9xOwngrTguDFfnL04C6Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.486 [XNIO-1 task-1] s9xOwngrTguDFfnL04C6Iw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.487 [XNIO-1 task-1] vKx6fUOTR3iyjste3_7g2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.487 [XNIO-1 task-1] vKx6fUOTR3iyjste3_7g2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.487 [XNIO-1 task-1] vKx6fUOTR3iyjste3_7g2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.488 [XNIO-1 task-1] vKx6fUOTR3iyjste3_7g2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.488 [XNIO-1 task-1] vKx6fUOTR3iyjste3_7g2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.489 [XNIO-1 task-1] 87P_3rWiTEqninVGseqaEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.490 [XNIO-1 task-1] 87P_3rWiTEqninVGseqaEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.490 [XNIO-1 task-1] 87P_3rWiTEqninVGseqaEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.490 [XNIO-1 task-1] 87P_3rWiTEqninVGseqaEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.490 [XNIO-1 task-1] 87P_3rWiTEqninVGseqaEg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.490 [XNIO-1 task-1] 87P_3rWiTEqninVGseqaEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.491 [XNIO-1 task-1] 4u_o0BGuQqmR9KpimMITJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.491 [XNIO-1 task-1] 4u_o0BGuQqmR9KpimMITJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.491 [XNIO-1 task-1] 4u_o0BGuQqmR9KpimMITJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.491 [XNIO-1 task-1] 4u_o0BGuQqmR9KpimMITJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.491 [XNIO-1 task-1] 4u_o0BGuQqmR9KpimMITJA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.494 [XNIO-1 task-1] csyXBjvYQae1RlAclJ1h_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.494 [XNIO-1 task-1] csyXBjvYQae1RlAclJ1h_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.494 [XNIO-1 task-1] csyXBjvYQae1RlAclJ1h_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.494 [XNIO-1 task-1] csyXBjvYQae1RlAclJ1h_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.494 [XNIO-1 task-1] csyXBjvYQae1RlAclJ1h_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.498 [XNIO-1 task-1] 4n5vPX8KQoqZMZ0v-MZByg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.498 [XNIO-1 task-1] 4n5vPX8KQoqZMZ0v-MZByg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.498 [XNIO-1 task-1] 4n5vPX8KQoqZMZ0v-MZByg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.498 [XNIO-1 task-1] 4n5vPX8KQoqZMZ0v-MZByg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.498 [XNIO-1 task-1] 4n5vPX8KQoqZMZ0v-MZByg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.500 [XNIO-1 task-1] sVh5b9MsRUOG7BqfGTW6cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.500 [XNIO-1 task-1] sVh5b9MsRUOG7BqfGTW6cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.500 [XNIO-1 task-1] sVh5b9MsRUOG7BqfGTW6cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.500 [XNIO-1 task-1] sVh5b9MsRUOG7BqfGTW6cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.500 [XNIO-1 task-1] sVh5b9MsRUOG7BqfGTW6cw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.500 [XNIO-1 task-1] sVh5b9MsRUOG7BqfGTW6cw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.502 [XNIO-1 task-1] 60r8H6yoTP2hzhsyM02ocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.502 [XNIO-1 task-1] 60r8H6yoTP2hzhsyM02ocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.502 [XNIO-1 task-1] 60r8H6yoTP2hzhsyM02ocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.502 [XNIO-1 task-1] 60r8H6yoTP2hzhsyM02ocA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.506 [XNIO-1 task-1] bDT7TS9kTRi81IzueweFEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.506 [XNIO-1 task-1] bDT7TS9kTRi81IzueweFEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.506 [XNIO-1 task-1] bDT7TS9kTRi81IzueweFEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.506 [XNIO-1 task-1] bDT7TS9kTRi81IzueweFEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.506 [XNIO-1 task-1] bDT7TS9kTRi81IzueweFEg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.507 [XNIO-1 task-1] bDT7TS9kTRi81IzueweFEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.508 [XNIO-1 task-1] fRZSEUgcSPa_zSpb-zYmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.508 [XNIO-1 task-1] fRZSEUgcSPa_zSpb-zYmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.508 [XNIO-1 task-1] fRZSEUgcSPa_zSpb-zYmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.508 [XNIO-1 task-1] fRZSEUgcSPa_zSpb-zYmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.508 [XNIO-1 task-1] fRZSEUgcSPa_zSpb-zYmwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.510 [XNIO-1 task-1] dHdttHWHQ_SVu737vU7GWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.510 [XNIO-1 task-1] dHdttHWHQ_SVu737vU7GWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.510 [XNIO-1 task-1] dHdttHWHQ_SVu737vU7GWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.510 [XNIO-1 task-1] dHdttHWHQ_SVu737vU7GWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.510 [XNIO-1 task-1] dHdttHWHQ_SVu737vU7GWg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.514 [XNIO-1 task-1] Z7gG5zCPQwmkiofSnUw6kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.514 [XNIO-1 task-1] Z7gG5zCPQwmkiofSnUw6kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.514 [XNIO-1 task-1] Z7gG5zCPQwmkiofSnUw6kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.515 [XNIO-1 task-1] Z7gG5zCPQwmkiofSnUw6kg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.519 [XNIO-1 task-1] Kt0kYIEfRcW7gdlnCAyjzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.519 [XNIO-1 task-1] Kt0kYIEfRcW7gdlnCAyjzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.519 [XNIO-1 task-1] Kt0kYIEfRcW7gdlnCAyjzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.519 [XNIO-1 task-1] Kt0kYIEfRcW7gdlnCAyjzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.519 [XNIO-1 task-1] Kt0kYIEfRcW7gdlnCAyjzQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.523 [XNIO-1 task-1] CSH0bDqLS7KMb55SOyid_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.523 [XNIO-1 task-1] CSH0bDqLS7KMb55SOyid_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.523 [XNIO-1 task-1] CSH0bDqLS7KMb55SOyid_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.523 [XNIO-1 task-1] CSH0bDqLS7KMb55SOyid_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.523 [XNIO-1 task-1] CSH0bDqLS7KMb55SOyid_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.525 [XNIO-1 task-1] 5x125C4hSqiMJfH3-505Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.525 [XNIO-1 task-1] 5x125C4hSqiMJfH3-505Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.525 [XNIO-1 task-1] 5x125C4hSqiMJfH3-505Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.525 [XNIO-1 task-1] 5x125C4hSqiMJfH3-505Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.525 [XNIO-1 task-1] 5x125C4hSqiMJfH3-505Xw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.528 [XNIO-1 task-1] e3yPOXGtR9aacwqvcmRX2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.529 [XNIO-1 task-1] e3yPOXGtR9aacwqvcmRX2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.529 [XNIO-1 task-1] e3yPOXGtR9aacwqvcmRX2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.529 [XNIO-1 task-1] e3yPOXGtR9aacwqvcmRX2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.532 [XNIO-1 task-1] uTCM356xTRqifDSFgf4DAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.533 [XNIO-1 task-1] uTCM356xTRqifDSFgf4DAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.533 [XNIO-1 task-1] uTCM356xTRqifDSFgf4DAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.533 [XNIO-1 task-1] uTCM356xTRqifDSFgf4DAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.533 [XNIO-1 task-1] uTCM356xTRqifDSFgf4DAA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.533 [XNIO-1 task-1] uTCM356xTRqifDSFgf4DAA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.535 [XNIO-1 task-1] Hf9fAXYlQwq32wHptcrdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.535 [XNIO-1 task-1] Hf9fAXYlQwq32wHptcrdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.535 [XNIO-1 task-1] Hf9fAXYlQwq32wHptcrdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.535 [XNIO-1 task-1] Hf9fAXYlQwq32wHptcrdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.535 [XNIO-1 task-1] Hf9fAXYlQwq32wHptcrdhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.538 [XNIO-1 task-1] 8rMgfwnfQXm_7RgypNGmAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.538 [XNIO-1 task-1] 8rMgfwnfQXm_7RgypNGmAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.538 [XNIO-1 task-1] 8rMgfwnfQXm_7RgypNGmAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.538 [XNIO-1 task-1] 8rMgfwnfQXm_7RgypNGmAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.538 [XNIO-1 task-1] 8rMgfwnfQXm_7RgypNGmAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.543 [XNIO-1 task-1] UmuOW11XTTqATZ1bxYhe6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.543 [XNIO-1 task-1] UmuOW11XTTqATZ1bxYhe6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.543 [XNIO-1 task-1] UmuOW11XTTqATZ1bxYhe6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.543 [XNIO-1 task-1] UmuOW11XTTqATZ1bxYhe6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.543 [XNIO-1 task-1] UmuOW11XTTqATZ1bxYhe6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.545 [XNIO-1 task-1] HOGGsGXsQOGvzyF3g_-L1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.545 [XNIO-1 task-1] HOGGsGXsQOGvzyF3g_-L1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.545 [XNIO-1 task-1] HOGGsGXsQOGvzyF3g_-L1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.545 [XNIO-1 task-1] HOGGsGXsQOGvzyF3g_-L1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.545 [XNIO-1 task-1] HOGGsGXsQOGvzyF3g_-L1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.545 [XNIO-1 task-1] HOGGsGXsQOGvzyF3g_-L1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.547 [XNIO-1 task-1] t0CuU_DnRaCJq5LVZgfxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.547 [XNIO-1 task-1] t0CuU_DnRaCJq5LVZgfxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.547 [XNIO-1 task-1] t0CuU_DnRaCJq5LVZgfxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.547 [XNIO-1 task-1] t0CuU_DnRaCJq5LVZgfxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.548 [XNIO-1 task-1] t0CuU_DnRaCJq5LVZgfxUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.549 [XNIO-1 task-1] PidXeEy3TCSFZTWOqvE2nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.549 [XNIO-1 task-1] PidXeEy3TCSFZTWOqvE2nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.549 [XNIO-1 task-1] PidXeEy3TCSFZTWOqvE2nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.550 [XNIO-1 task-1] PidXeEy3TCSFZTWOqvE2nA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.550 [XNIO-1 task-1] PidXeEy3TCSFZTWOqvE2nA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.553 [XNIO-1 task-1] q0ugt4OHQdyTkIpVhJNKNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.553 [XNIO-1 task-1] q0ugt4OHQdyTkIpVhJNKNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.553 [XNIO-1 task-1] q0ugt4OHQdyTkIpVhJNKNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.553 [XNIO-1 task-1] q0ugt4OHQdyTkIpVhJNKNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.558 [XNIO-1 task-1] HfYW8KvqRF6fPgXea6G3aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.558 [XNIO-1 task-1] HfYW8KvqRF6fPgXea6G3aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.558 [XNIO-1 task-1] HfYW8KvqRF6fPgXea6G3aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.558 [XNIO-1 task-1] HfYW8KvqRF6fPgXea6G3aA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.558 [XNIO-1 task-1] HfYW8KvqRF6fPgXea6G3aA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.562 [XNIO-1 task-1] JBHfODm5S_uoVsu32gZ-aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.562 [XNIO-1 task-1] JBHfODm5S_uoVsu32gZ-aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.562 [XNIO-1 task-1] JBHfODm5S_uoVsu32gZ-aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.562 [XNIO-1 task-1] JBHfODm5S_uoVsu32gZ-aQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.566 [XNIO-1 task-1] 4iNgSY4iSwKJy4J-B__TiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.567 [XNIO-1 task-1] 4iNgSY4iSwKJy4J-B__TiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.567 [XNIO-1 task-1] 4iNgSY4iSwKJy4J-B__TiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.567 [XNIO-1 task-1] 4iNgSY4iSwKJy4J-B__TiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.567 [XNIO-1 task-1] 4iNgSY4iSwKJy4J-B__TiA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.567 [XNIO-1 task-1] 4iNgSY4iSwKJy4J-B__TiA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.569 [XNIO-1 task-1] gQw6cbSMRSOG8tFb7CYThA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.569 [XNIO-1 task-1] gQw6cbSMRSOG8tFb7CYThA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.569 [XNIO-1 task-1] gQw6cbSMRSOG8tFb7CYThA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.569 [XNIO-1 task-1] gQw6cbSMRSOG8tFb7CYThA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.569 [XNIO-1 task-1] gQw6cbSMRSOG8tFb7CYThA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.571 [XNIO-1 task-1] MVlnbd23S42REFdesOfxpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.571 [XNIO-1 task-1] MVlnbd23S42REFdesOfxpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.571 [XNIO-1 task-1] MVlnbd23S42REFdesOfxpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.571 [XNIO-1 task-1] MVlnbd23S42REFdesOfxpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.571 [XNIO-1 task-1] MVlnbd23S42REFdesOfxpw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.576 [XNIO-1 task-1] yCNS2_c9TTa1VK30Y1oykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.576 [XNIO-1 task-1] yCNS2_c9TTa1VK30Y1oykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.576 [XNIO-1 task-1] yCNS2_c9TTa1VK30Y1oykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.576 [XNIO-1 task-1] yCNS2_c9TTa1VK30Y1oykg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.579 [XNIO-1 task-1] -f0O9-nGSEymaL00CJkDdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.579 [XNIO-1 task-1] -f0O9-nGSEymaL00CJkDdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.579 [XNIO-1 task-1] -f0O9-nGSEymaL00CJkDdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.579 [XNIO-1 task-1] -f0O9-nGSEymaL00CJkDdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.579 [XNIO-1 task-1] -f0O9-nGSEymaL00CJkDdw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.586 [XNIO-1 task-1] IAWoJT0lREW-Gawf8Uc6sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.586 [XNIO-1 task-1] IAWoJT0lREW-Gawf8Uc6sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.586 [XNIO-1 task-1] IAWoJT0lREW-Gawf8Uc6sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.587 [XNIO-1 task-1] IAWoJT0lREW-Gawf8Uc6sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.587 [XNIO-1 task-1] IAWoJT0lREW-Gawf8Uc6sg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.588 [XNIO-1 task-1] fB7mCmdYQ8S8VgCmXRptWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.588 [XNIO-1 task-1] fB7mCmdYQ8S8VgCmXRptWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.588 [XNIO-1 task-1] fB7mCmdYQ8S8VgCmXRptWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.588 [XNIO-1 task-1] fB7mCmdYQ8S8VgCmXRptWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.588 [XNIO-1 task-1] fB7mCmdYQ8S8VgCmXRptWA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.589 [XNIO-1 task-1] fB7mCmdYQ8S8VgCmXRptWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.590 [XNIO-1 task-1] 29cTCDjETLWx4ekBqjnSFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.590 [XNIO-1 task-1] 29cTCDjETLWx4ekBqjnSFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.590 [XNIO-1 task-1] 29cTCDjETLWx4ekBqjnSFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.590 [XNIO-1 task-1] 29cTCDjETLWx4ekBqjnSFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.590 [XNIO-1 task-1] 29cTCDjETLWx4ekBqjnSFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.592 [XNIO-1 task-1] G074sq72SeC-1P2oXrfa9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.592 [XNIO-1 task-1] G074sq72SeC-1P2oXrfa9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.592 [XNIO-1 task-1] G074sq72SeC-1P2oXrfa9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.592 [XNIO-1 task-1] G074sq72SeC-1P2oXrfa9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.592 [XNIO-1 task-1] G074sq72SeC-1P2oXrfa9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.592 [XNIO-1 task-1] G074sq72SeC-1P2oXrfa9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.593 [XNIO-1 task-1] S5RSD6ORTnu53xQ0ZNHieg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.593 [XNIO-1 task-1] S5RSD6ORTnu53xQ0ZNHieg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.594 [XNIO-1 task-1] S5RSD6ORTnu53xQ0ZNHieg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.594 [XNIO-1 task-1] S5RSD6ORTnu53xQ0ZNHieg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.594 [XNIO-1 task-1] S5RSD6ORTnu53xQ0ZNHieg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.595 [XNIO-1 task-1] 2-vJ5LonQU-gL-qLoqi0YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.595 [XNIO-1 task-1] 2-vJ5LonQU-gL-qLoqi0YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.595 [XNIO-1 task-1] 2-vJ5LonQU-gL-qLoqi0YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.595 [XNIO-1 task-1] 2-vJ5LonQU-gL-qLoqi0YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.595 [XNIO-1 task-1] 2-vJ5LonQU-gL-qLoqi0YA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.596 [XNIO-1 task-1] 2-vJ5LonQU-gL-qLoqi0YA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.597 [XNIO-1 task-1] _FEfF9U7Q9ipgDrfWTPcZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.597 [XNIO-1 task-1] _FEfF9U7Q9ipgDrfWTPcZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.597 [XNIO-1 task-1] _FEfF9U7Q9ipgDrfWTPcZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.597 [XNIO-1 task-1] _FEfF9U7Q9ipgDrfWTPcZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.597 [XNIO-1 task-1] _FEfF9U7Q9ipgDrfWTPcZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.599 [XNIO-1 task-1] WPGgf1fiS0K6T0rLOGkzMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.602 [XNIO-1 task-1] WPGgf1fiS0K6T0rLOGkzMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.602 [XNIO-1 task-1] WPGgf1fiS0K6T0rLOGkzMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.602 [XNIO-1 task-1] WPGgf1fiS0K6T0rLOGkzMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.602 [XNIO-1 task-1] WPGgf1fiS0K6T0rLOGkzMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.603 [XNIO-1 task-1] WPGgf1fiS0K6T0rLOGkzMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.604 [XNIO-1 task-1] mnGdveL1RDGomZELYRe--g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.604 [XNIO-1 task-1] mnGdveL1RDGomZELYRe--g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.604 [XNIO-1 task-1] mnGdveL1RDGomZELYRe--g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.604 [XNIO-1 task-1] mnGdveL1RDGomZELYRe--g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.604 [XNIO-1 task-1] mnGdveL1RDGomZELYRe--g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.606 [XNIO-1 task-1] -UaAXpd0RNKORgBzJW3PKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.606 [XNIO-1 task-1] -UaAXpd0RNKORgBzJW3PKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.606 [XNIO-1 task-1] -UaAXpd0RNKORgBzJW3PKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.606 [XNIO-1 task-1] -UaAXpd0RNKORgBzJW3PKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.606 [XNIO-1 task-1] -UaAXpd0RNKORgBzJW3PKg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.606 [XNIO-1 task-1] -UaAXpd0RNKORgBzJW3PKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.608 [XNIO-1 task-1] ZxGffZL2Rwuta7WfvIztrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.608 [XNIO-1 task-1] ZxGffZL2Rwuta7WfvIztrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.608 [XNIO-1 task-1] ZxGffZL2Rwuta7WfvIztrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.608 [XNIO-1 task-1] ZxGffZL2Rwuta7WfvIztrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.608 [XNIO-1 task-1] ZxGffZL2Rwuta7WfvIztrQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.610 [XNIO-1 task-1] VtrMQ77ISVagOazJXWWNQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.610 [XNIO-1 task-1] VtrMQ77ISVagOazJXWWNQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.610 [XNIO-1 task-1] VtrMQ77ISVagOazJXWWNQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.610 [XNIO-1 task-1] VtrMQ77ISVagOazJXWWNQw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.610 [XNIO-1 task-1] VtrMQ77ISVagOazJXWWNQw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.615 [XNIO-1 task-1] 4E2UY_sSRy6mbeVcAgGtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.615 [XNIO-1 task-1] 4E2UY_sSRy6mbeVcAgGtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.615 [XNIO-1 task-1] 4E2UY_sSRy6mbeVcAgGtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.615 [XNIO-1 task-1] 4E2UY_sSRy6mbeVcAgGtnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.619 [XNIO-1 task-1] uQ9z2idqSBu7JyLd6Ogm7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.619 [XNIO-1 task-1] uQ9z2idqSBu7JyLd6Ogm7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.619 [XNIO-1 task-1] uQ9z2idqSBu7JyLd6Ogm7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.619 [XNIO-1 task-1] uQ9z2idqSBu7JyLd6Ogm7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.619 [XNIO-1 task-1] uQ9z2idqSBu7JyLd6Ogm7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.624 [XNIO-1 task-1] DMR0umM3S1mADy6uN6ffjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.624 [XNIO-1 task-1] DMR0umM3S1mADy6uN6ffjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.624 [XNIO-1 task-1] DMR0umM3S1mADy6uN6ffjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.624 [XNIO-1 task-1] DMR0umM3S1mADy6uN6ffjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.629 [XNIO-1 task-1] h0c5nAjuSy-63eWQdrx05g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.629 [XNIO-1 task-1] h0c5nAjuSy-63eWQdrx05g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.629 [XNIO-1 task-1] h0c5nAjuSy-63eWQdrx05g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.629 [XNIO-1 task-1] h0c5nAjuSy-63eWQdrx05g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.629 [XNIO-1 task-1] h0c5nAjuSy-63eWQdrx05g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.633 [XNIO-1 task-1] W_6ZmuX5RM2XOoKZeOgPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.633 [XNIO-1 task-1] W_6ZmuX5RM2XOoKZeOgPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.633 [XNIO-1 task-1] W_6ZmuX5RM2XOoKZeOgPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.633 [XNIO-1 task-1] W_6ZmuX5RM2XOoKZeOgPog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.637 [XNIO-1 task-1] DP7hzcceRpKE4uOhKh772Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.637 [XNIO-1 task-1] DP7hzcceRpKE4uOhKh772Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.637 [XNIO-1 task-1] DP7hzcceRpKE4uOhKh772Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.637 [XNIO-1 task-1] DP7hzcceRpKE4uOhKh772Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.637 [XNIO-1 task-1] DP7hzcceRpKE4uOhKh772Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.637 [XNIO-1 task-1] DP7hzcceRpKE4uOhKh772Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.639 [XNIO-1 task-1] cxiaRedeQJeO-XZ0ZIoaUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.639 [XNIO-1 task-1] cxiaRedeQJeO-XZ0ZIoaUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.639 [XNIO-1 task-1] cxiaRedeQJeO-XZ0ZIoaUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.639 [XNIO-1 task-1] cxiaRedeQJeO-XZ0ZIoaUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.639 [XNIO-1 task-1] cxiaRedeQJeO-XZ0ZIoaUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.640 [XNIO-1 task-1] LLsA6W37RBSSmopxGx7YFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.640 [XNIO-1 task-1] LLsA6W37RBSSmopxGx7YFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.640 [XNIO-1 task-1] LLsA6W37RBSSmopxGx7YFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.640 [XNIO-1 task-1] LLsA6W37RBSSmopxGx7YFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.641 [XNIO-1 task-1] LLsA6W37RBSSmopxGx7YFA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.644 [XNIO-1 task-1] 1rCCzjn5RdKz8oPRI7Hz_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.644 [XNIO-1 task-1] 1rCCzjn5RdKz8oPRI7Hz_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.644 [XNIO-1 task-1] 1rCCzjn5RdKz8oPRI7Hz_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.644 [XNIO-1 task-1] 1rCCzjn5RdKz8oPRI7Hz_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.647 [XNIO-1 task-1] 5PjyBPdNQiy-tuZhcV8Fzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.647 [XNIO-1 task-1] 5PjyBPdNQiy-tuZhcV8Fzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.647 [XNIO-1 task-1] 5PjyBPdNQiy-tuZhcV8Fzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.648 [XNIO-1 task-1] 5PjyBPdNQiy-tuZhcV8Fzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.648 [XNIO-1 task-1] 5PjyBPdNQiy-tuZhcV8Fzg DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.648 [XNIO-1 task-1] 5PjyBPdNQiy-tuZhcV8Fzg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.649 [XNIO-1 task-1] lsUFRdphTj6dNxDv3ALrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.649 [XNIO-1 task-1] lsUFRdphTj6dNxDv3ALrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.649 [XNIO-1 task-1] lsUFRdphTj6dNxDv3ALrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.649 [XNIO-1 task-1] lsUFRdphTj6dNxDv3ALrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.649 [XNIO-1 task-1] lsUFRdphTj6dNxDv3ALrJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.651 [XNIO-1 task-1] l_TWsqBXSbSk02za7T-7Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.651 [XNIO-1 task-1] l_TWsqBXSbSk02za7T-7Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.651 [XNIO-1 task-1] l_TWsqBXSbSk02za7T-7Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.651 [XNIO-1 task-1] l_TWsqBXSbSk02za7T-7Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.651 [XNIO-1 task-1] l_TWsqBXSbSk02za7T-7Eg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.656 [XNIO-1 task-1] rOk7E4TBQyyP_LGJZbA-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.656 [XNIO-1 task-1] rOk7E4TBQyyP_LGJZbA-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.656 [XNIO-1 task-1] rOk7E4TBQyyP_LGJZbA-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.656 [XNIO-1 task-1] rOk7E4TBQyyP_LGJZbA-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.657 [XNIO-1 task-1] rOk7E4TBQyyP_LGJZbA-kQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.659 [XNIO-1 task-1] xlVQtOEvSDWxbOHyrERZvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.659 [XNIO-1 task-1] xlVQtOEvSDWxbOHyrERZvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.659 [XNIO-1 task-1] xlVQtOEvSDWxbOHyrERZvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.659 [XNIO-1 task-1] xlVQtOEvSDWxbOHyrERZvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.659 [XNIO-1 task-1] xlVQtOEvSDWxbOHyrERZvg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.659 [XNIO-1 task-1] xlVQtOEvSDWxbOHyrERZvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.660 [XNIO-1 task-1] klJRpsfmRwmmUObq6_TYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.660 [XNIO-1 task-1] klJRpsfmRwmmUObq6_TYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.660 [XNIO-1 task-1] klJRpsfmRwmmUObq6_TYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.661 [XNIO-1 task-1] klJRpsfmRwmmUObq6_TYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.661 [XNIO-1 task-1] klJRpsfmRwmmUObq6_TYKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.662 [XNIO-1 task-1] WEc0arbHSce3yD8BcSMbNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.662 [XNIO-1 task-1] WEc0arbHSce3yD8BcSMbNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.662 [XNIO-1 task-1] WEc0arbHSce3yD8BcSMbNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.662 [XNIO-1 task-1] WEc0arbHSce3yD8BcSMbNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.662 [XNIO-1 task-1] WEc0arbHSce3yD8BcSMbNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.662 [XNIO-1 task-1] WEc0arbHSce3yD8BcSMbNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.664 [XNIO-1 task-1] u6qEWPaBRIWqEqUwAq8zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.664 [XNIO-1 task-1] u6qEWPaBRIWqEqUwAq8zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.664 [XNIO-1 task-1] u6qEWPaBRIWqEqUwAq8zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.664 [XNIO-1 task-1] u6qEWPaBRIWqEqUwAq8zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.664 [XNIO-1 task-1] u6qEWPaBRIWqEqUwAq8zMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.666 [XNIO-1 task-1] 3j_Cbz6sTGSBmQWhheoA3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.666 [XNIO-1 task-1] 3j_Cbz6sTGSBmQWhheoA3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.666 [XNIO-1 task-1] 3j_Cbz6sTGSBmQWhheoA3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.666 [XNIO-1 task-1] 3j_Cbz6sTGSBmQWhheoA3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.666 [XNIO-1 task-1] 3j_Cbz6sTGSBmQWhheoA3g DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.666 [XNIO-1 task-1] 3j_Cbz6sTGSBmQWhheoA3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.668 [XNIO-1 task-1] r7qoDiinRC-hRStjoeNngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.668 [XNIO-1 task-1] r7qoDiinRC-hRStjoeNngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.668 [XNIO-1 task-1] r7qoDiinRC-hRStjoeNngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.668 [XNIO-1 task-1] r7qoDiinRC-hRStjoeNngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.668 [XNIO-1 task-1] r7qoDiinRC-hRStjoeNngA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.670 [XNIO-1 task-1] VwCmUcIHQImGXYIRNGbtlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.670 [XNIO-1 task-1] VwCmUcIHQImGXYIRNGbtlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.670 [XNIO-1 task-1] VwCmUcIHQImGXYIRNGbtlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.670 [XNIO-1 task-1] VwCmUcIHQImGXYIRNGbtlw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.670 [XNIO-1 task-1] VwCmUcIHQImGXYIRNGbtlw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.675 [XNIO-1 task-1] 5hECuqWzTeWMRB2ERsQIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.676 [XNIO-1 task-1] 5hECuqWzTeWMRB2ERsQIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.676 [XNIO-1 task-1] 5hECuqWzTeWMRB2ERsQIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.676 [XNIO-1 task-1] 5hECuqWzTeWMRB2ERsQIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.676 [XNIO-1 task-1] 5hECuqWzTeWMRB2ERsQIzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.677 [XNIO-1 task-1] 113h9BdxSqeL4SBwI-4sYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.677 [XNIO-1 task-1] 113h9BdxSqeL4SBwI-4sYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.677 [XNIO-1 task-1] 113h9BdxSqeL4SBwI-4sYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.677 [XNIO-1 task-1] 113h9BdxSqeL4SBwI-4sYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.678 [XNIO-1 task-1] 113h9BdxSqeL4SBwI-4sYA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.678 [XNIO-1 task-1] 113h9BdxSqeL4SBwI-4sYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.679 [XNIO-1 task-1] ABCan5xQRq6nmUdbHf7jOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.679 [XNIO-1 task-1] ABCan5xQRq6nmUdbHf7jOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.679 [XNIO-1 task-1] ABCan5xQRq6nmUdbHf7jOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.679 [XNIO-1 task-1] ABCan5xQRq6nmUdbHf7jOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.679 [XNIO-1 task-1] ABCan5xQRq6nmUdbHf7jOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.681 [XNIO-1 task-1] MXKFbj78Q1KWA8Gv1Oc63A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.681 [XNIO-1 task-1] MXKFbj78Q1KWA8Gv1Oc63A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.681 [XNIO-1 task-1] MXKFbj78Q1KWA8Gv1Oc63A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.681 [XNIO-1 task-1] MXKFbj78Q1KWA8Gv1Oc63A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.681 [XNIO-1 task-1] MXKFbj78Q1KWA8Gv1Oc63A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.685 [XNIO-1 task-1] 1_xx4ujLTLuFaNFtqoHZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.685 [XNIO-1 task-1] 1_xx4ujLTLuFaNFtqoHZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.685 [XNIO-1 task-1] 1_xx4ujLTLuFaNFtqoHZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.686 [XNIO-1 task-1] 1_xx4ujLTLuFaNFtqoHZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.686 [XNIO-1 task-1] 1_xx4ujLTLuFaNFtqoHZng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.687 [XNIO-1 task-1] nGKzunj1RcmK7gZXM7u3aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.687 [XNIO-1 task-1] nGKzunj1RcmK7gZXM7u3aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.687 [XNIO-1 task-1] nGKzunj1RcmK7gZXM7u3aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.687 [XNIO-1 task-1] nGKzunj1RcmK7gZXM7u3aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.688 [XNIO-1 task-1] nGKzunj1RcmK7gZXM7u3aw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.688 [XNIO-1 task-1] nGKzunj1RcmK7gZXM7u3aw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.689 [XNIO-1 task-1] bZAihdOJQlKt_3fOQOEM2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.689 [XNIO-1 task-1] bZAihdOJQlKt_3fOQOEM2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.689 [XNIO-1 task-1] bZAihdOJQlKt_3fOQOEM2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.689 [XNIO-1 task-1] bZAihdOJQlKt_3fOQOEM2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.689 [XNIO-1 task-1] bZAihdOJQlKt_3fOQOEM2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.691 [XNIO-1 task-1] JTqY58yDTc2RuFIKG9YhdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.691 [XNIO-1 task-1] JTqY58yDTc2RuFIKG9YhdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.691 [XNIO-1 task-1] JTqY58yDTc2RuFIKG9YhdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.691 [XNIO-1 task-1] JTqY58yDTc2RuFIKG9YhdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.691 [XNIO-1 task-1] JTqY58yDTc2RuFIKG9YhdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.691 [XNIO-1 task-1] JTqY58yDTc2RuFIKG9YhdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.693 [XNIO-1 task-1] 7yvhMs-MTt6xfMijUUnx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.693 [XNIO-1 task-1] 7yvhMs-MTt6xfMijUUnx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.693 [XNIO-1 task-1] 7yvhMs-MTt6xfMijUUnx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.693 [XNIO-1 task-1] 7yvhMs-MTt6xfMijUUnx9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.697 [XNIO-1 task-1] 51XAfuK2Q_OC4Z4yvsmBZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.697 [XNIO-1 task-1] 51XAfuK2Q_OC4Z4yvsmBZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.697 [XNIO-1 task-1] 51XAfuK2Q_OC4Z4yvsmBZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.697 [XNIO-1 task-1] 51XAfuK2Q_OC4Z4yvsmBZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.697 [XNIO-1 task-1] 51XAfuK2Q_OC4Z4yvsmBZw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.697 [XNIO-1 task-1] 51XAfuK2Q_OC4Z4yvsmBZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.699 [XNIO-1 task-1] H2OUc0zfQD2U6ebt9r-2Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.699 [XNIO-1 task-1] H2OUc0zfQD2U6ebt9r-2Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.699 [XNIO-1 task-1] H2OUc0zfQD2U6ebt9r-2Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.699 [XNIO-1 task-1] H2OUc0zfQD2U6ebt9r-2Ow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.703 [XNIO-1 task-1] cordcIrqRp2E-llV6AdbiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.704 [XNIO-1 task-1] cordcIrqRp2E-llV6AdbiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.704 [XNIO-1 task-1] cordcIrqRp2E-llV6AdbiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.704 [XNIO-1 task-1] cordcIrqRp2E-llV6AdbiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.704 [XNIO-1 task-1] cordcIrqRp2E-llV6AdbiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.704 [XNIO-1 task-1] cordcIrqRp2E-llV6AdbiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.706 [XNIO-1 task-1] Pqcy4uw-QNe0FupdIL-hrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.706 [XNIO-1 task-1] Pqcy4uw-QNe0FupdIL-hrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.706 [XNIO-1 task-1] Pqcy4uw-QNe0FupdIL-hrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.706 [XNIO-1 task-1] Pqcy4uw-QNe0FupdIL-hrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.706 [XNIO-1 task-1] Pqcy4uw-QNe0FupdIL-hrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.707 [XNIO-1 task-1] IbpEEN1sRCOaaKcR4cs7LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.707 [XNIO-1 task-1] IbpEEN1sRCOaaKcR4cs7LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.708 [XNIO-1 task-1] IbpEEN1sRCOaaKcR4cs7LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.708 [XNIO-1 task-1] IbpEEN1sRCOaaKcR4cs7LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.708 [XNIO-1 task-1] IbpEEN1sRCOaaKcR4cs7LA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.708 [XNIO-1 task-1] IbpEEN1sRCOaaKcR4cs7LA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.709 [XNIO-1 task-1] Y3DH7Nd9T6y6cqs2egizUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.709 [XNIO-1 task-1] Y3DH7Nd9T6y6cqs2egizUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.709 [XNIO-1 task-1] Y3DH7Nd9T6y6cqs2egizUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.709 [XNIO-1 task-1] Y3DH7Nd9T6y6cqs2egizUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.709 [XNIO-1 task-1] Y3DH7Nd9T6y6cqs2egizUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.711 [XNIO-1 task-1] IdWq--ZZRZyppaUlBcgxbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.711 [XNIO-1 task-1] IdWq--ZZRZyppaUlBcgxbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.711 [XNIO-1 task-1] IdWq--ZZRZyppaUlBcgxbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.711 [XNIO-1 task-1] IdWq--ZZRZyppaUlBcgxbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.711 [XNIO-1 task-1] IdWq--ZZRZyppaUlBcgxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.711 [XNIO-1 task-1] IdWq--ZZRZyppaUlBcgxbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.712 [XNIO-1 task-1] __vdINFrQ4aB3QAil3Oc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.713 [XNIO-1 task-1] __vdINFrQ4aB3QAil3Oc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.713 [XNIO-1 task-1] __vdINFrQ4aB3QAil3Oc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.713 [XNIO-1 task-1] __vdINFrQ4aB3QAil3Oc6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.733 [XNIO-1 task-1] zs_5HUD1SI-q0NKFKbG6xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.734 [XNIO-1 task-1] zs_5HUD1SI-q0NKFKbG6xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.734 [XNIO-1 task-1] zs_5HUD1SI-q0NKFKbG6xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.734 [XNIO-1 task-1] zs_5HUD1SI-q0NKFKbG6xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.734 [XNIO-1 task-1] zs_5HUD1SI-q0NKFKbG6xw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.734 [XNIO-1 task-1] zs_5HUD1SI-q0NKFKbG6xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.736 [XNIO-1 task-1] OD6P361WRWmeqXkOGb57dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.736 [XNIO-1 task-1] OD6P361WRWmeqXkOGb57dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.736 [XNIO-1 task-1] OD6P361WRWmeqXkOGb57dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.736 [XNIO-1 task-1] OD6P361WRWmeqXkOGb57dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.736 [XNIO-1 task-1] OD6P361WRWmeqXkOGb57dA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.738 [XNIO-1 task-1] _36hBx3uT02AIobLA7Ot8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.738 [XNIO-1 task-1] _36hBx3uT02AIobLA7Ot8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.738 [XNIO-1 task-1] _36hBx3uT02AIobLA7Ot8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.738 [XNIO-1 task-1] _36hBx3uT02AIobLA7Ot8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.738 [XNIO-1 task-1] _36hBx3uT02AIobLA7Ot8w DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.738 [XNIO-1 task-1] _36hBx3uT02AIobLA7Ot8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.740 [XNIO-1 task-1] 2GGyyt5qQOiMnSpSAkgGIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.740 [XNIO-1 task-1] 2GGyyt5qQOiMnSpSAkgGIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.740 [XNIO-1 task-1] 2GGyyt5qQOiMnSpSAkgGIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.740 [XNIO-1 task-1] 2GGyyt5qQOiMnSpSAkgGIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.740 [XNIO-1 task-1] 2GGyyt5qQOiMnSpSAkgGIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.741 [XNIO-1 task-1] O9ZpAJRvTtCZPMBQAb8LGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.741 [XNIO-1 task-1] O9ZpAJRvTtCZPMBQAb8LGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.741 [XNIO-1 task-1] O9ZpAJRvTtCZPMBQAb8LGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.742 [XNIO-1 task-1] O9ZpAJRvTtCZPMBQAb8LGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.742 [XNIO-1 task-1] O9ZpAJRvTtCZPMBQAb8LGg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.742 [XNIO-1 task-1] O9ZpAJRvTtCZPMBQAb8LGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.743 [XNIO-1 task-1] KdJ8jSDySHiTxtPZEEd_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.743 [XNIO-1 task-1] KdJ8jSDySHiTxtPZEEd_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.743 [XNIO-1 task-1] KdJ8jSDySHiTxtPZEEd_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.743 [XNIO-1 task-1] KdJ8jSDySHiTxtPZEEd_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.743 [XNIO-1 task-1] KdJ8jSDySHiTxtPZEEd_kg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.745 [XNIO-1 task-1] w_zsy1djTz-jKxwRdDTecA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.745 [XNIO-1 task-1] w_zsy1djTz-jKxwRdDTecA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.745 [XNIO-1 task-1] w_zsy1djTz-jKxwRdDTecA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.745 [XNIO-1 task-1] w_zsy1djTz-jKxwRdDTecA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.745 [XNIO-1 task-1] w_zsy1djTz-jKxwRdDTecA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.745 [XNIO-1 task-1] w_zsy1djTz-jKxwRdDTecA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.747 [XNIO-1 task-1] 81oEKRv7RpO8rFuI_tPuEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.747 [XNIO-1 task-1] 81oEKRv7RpO8rFuI_tPuEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.747 [XNIO-1 task-1] 81oEKRv7RpO8rFuI_tPuEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.747 [XNIO-1 task-1] 81oEKRv7RpO8rFuI_tPuEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.751 [XNIO-1 task-1] 1MjvPTAzQmKwoPNC4LZt0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.751 [XNIO-1 task-1] 1MjvPTAzQmKwoPNC4LZt0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.751 [XNIO-1 task-1] 1MjvPTAzQmKwoPNC4LZt0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.752 [XNIO-1 task-1] 1MjvPTAzQmKwoPNC4LZt0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.752 [XNIO-1 task-1] 1MjvPTAzQmKwoPNC4LZt0A DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.752 [XNIO-1 task-1] 1MjvPTAzQmKwoPNC4LZt0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.753 [XNIO-1 task-1] _-6EHJkrT1q52ZD_S9JlKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.753 [XNIO-1 task-1] _-6EHJkrT1q52ZD_S9JlKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.753 [XNIO-1 task-1] _-6EHJkrT1q52ZD_S9JlKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.753 [XNIO-1 task-1] _-6EHJkrT1q52ZD_S9JlKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.754 [XNIO-1 task-1] _-6EHJkrT1q52ZD_S9JlKw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.755 [XNIO-1 task-1] vk4_bBCJTVG9WINbDPf6PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.755 [XNIO-1 task-1] vk4_bBCJTVG9WINbDPf6PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.755 [XNIO-1 task-1] vk4_bBCJTVG9WINbDPf6PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.755 [XNIO-1 task-1] vk4_bBCJTVG9WINbDPf6PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.755 [XNIO-1 task-1] vk4_bBCJTVG9WINbDPf6PQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.759 [XNIO-1 task-1] jr_C5T8JS2qj0JYBpMa5mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.759 [XNIO-1 task-1] jr_C5T8JS2qj0JYBpMa5mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.759 [XNIO-1 task-1] jr_C5T8JS2qj0JYBpMa5mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.759 [XNIO-1 task-1] jr_C5T8JS2qj0JYBpMa5mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.759 [XNIO-1 task-1] jr_C5T8JS2qj0JYBpMa5mA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.760 [XNIO-1 task-1] zAe5xx79Qs2w-A3Nd5aLkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.760 [XNIO-1 task-1] zAe5xx79Qs2w-A3Nd5aLkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.761 [XNIO-1 task-1] zAe5xx79Qs2w-A3Nd5aLkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.761 [XNIO-1 task-1] zAe5xx79Qs2w-A3Nd5aLkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.761 [XNIO-1 task-1] zAe5xx79Qs2w-A3Nd5aLkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.765 [XNIO-1 task-1] ZKI9KAvsTBqjqYbyqdlyxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.765 [XNIO-1 task-1] ZKI9KAvsTBqjqYbyqdlyxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.765 [XNIO-1 task-1] ZKI9KAvsTBqjqYbyqdlyxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.765 [XNIO-1 task-1] ZKI9KAvsTBqjqYbyqdlyxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.769 [XNIO-1 task-1] 898bq-dSQD2nSUUciI4-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.769 [XNIO-1 task-1] 898bq-dSQD2nSUUciI4-PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.769 [XNIO-1 task-1] 898bq-dSQD2nSUUciI4-PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.770 [XNIO-1 task-1] 898bq-dSQD2nSUUciI4-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.770 [XNIO-1 task-1] 898bq-dSQD2nSUUciI4-PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.770 [XNIO-1 task-1] 898bq-dSQD2nSUUciI4-PQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.771 [XNIO-1 task-1] 922zmgdhSWyYuqZK4QzmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.771 [XNIO-1 task-1] 922zmgdhSWyYuqZK4QzmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.771 [XNIO-1 task-1] 922zmgdhSWyYuqZK4QzmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.771 [XNIO-1 task-1] 922zmgdhSWyYuqZK4QzmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.772 [XNIO-1 task-1] 922zmgdhSWyYuqZK4QzmgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.773 [XNIO-1 task-1] z_DffsxaQcOtUdxA0oYaxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.773 [XNIO-1 task-1] z_DffsxaQcOtUdxA0oYaxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.773 [XNIO-1 task-1] z_DffsxaQcOtUdxA0oYaxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.773 [XNIO-1 task-1] z_DffsxaQcOtUdxA0oYaxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.773 [XNIO-1 task-1] z_DffsxaQcOtUdxA0oYaxA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.773 [XNIO-1 task-1] z_DffsxaQcOtUdxA0oYaxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.775 [XNIO-1 task-1] 3oIHvEk4ShOH-ZkR44TS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.775 [XNIO-1 task-1] 3oIHvEk4ShOH-ZkR44TS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.775 [XNIO-1 task-1] 3oIHvEk4ShOH-ZkR44TS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.775 [XNIO-1 task-1] 3oIHvEk4ShOH-ZkR44TS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.775 [XNIO-1 task-1] 3oIHvEk4ShOH-ZkR44TS7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.776 [XNIO-1 task-1] xqZfxoZuQCmkw-0MGzF7fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.776 [XNIO-1 task-1] xqZfxoZuQCmkw-0MGzF7fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.777 [XNIO-1 task-1] xqZfxoZuQCmkw-0MGzF7fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.777 [XNIO-1 task-1] xqZfxoZuQCmkw-0MGzF7fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.777 [XNIO-1 task-1] xqZfxoZuQCmkw-0MGzF7fA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.777 [XNIO-1 task-1] xqZfxoZuQCmkw-0MGzF7fA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.778 [XNIO-1 task-1] keiIUSk7R6OY6wIINm53aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.778 [XNIO-1 task-1] keiIUSk7R6OY6wIINm53aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.778 [XNIO-1 task-1] keiIUSk7R6OY6wIINm53aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.778 [XNIO-1 task-1] keiIUSk7R6OY6wIINm53aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.778 [XNIO-1 task-1] keiIUSk7R6OY6wIINm53aw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.780 [XNIO-1 task-1] B8GDGovsSpS2J6v7KKr3hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.780 [XNIO-1 task-1] B8GDGovsSpS2J6v7KKr3hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.780 [XNIO-1 task-1] B8GDGovsSpS2J6v7KKr3hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.780 [XNIO-1 task-1] B8GDGovsSpS2J6v7KKr3hg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.780 [XNIO-1 task-1] B8GDGovsSpS2J6v7KKr3hg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.785 [XNIO-1 task-1] dxZ6PCheTW2k55akijA8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.785 [XNIO-1 task-1] dxZ6PCheTW2k55akijA8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.785 [XNIO-1 task-1] dxZ6PCheTW2k55akijA8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.785 [XNIO-1 task-1] dxZ6PCheTW2k55akijA8eQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.789 [XNIO-1 task-1] VCRNs6hfRxawerSUM-PbCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.789 [XNIO-1 task-1] VCRNs6hfRxawerSUM-PbCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.789 [XNIO-1 task-1] VCRNs6hfRxawerSUM-PbCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.789 [XNIO-1 task-1] VCRNs6hfRxawerSUM-PbCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.789 [XNIO-1 task-1] VCRNs6hfRxawerSUM-PbCg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.793 [XNIO-1 task-1] hhlgvkElQbGhMF72oaQa5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.793 [XNIO-1 task-1] hhlgvkElQbGhMF72oaQa5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.794 [XNIO-1 task-1] hhlgvkElQbGhMF72oaQa5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.794 [XNIO-1 task-1] hhlgvkElQbGhMF72oaQa5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.798 [XNIO-1 task-1] fZxTH3FwTZiRl-bFGHD4qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.798 [XNIO-1 task-1] fZxTH3FwTZiRl-bFGHD4qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.798 [XNIO-1 task-1] fZxTH3FwTZiRl-bFGHD4qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.798 [XNIO-1 task-1] fZxTH3FwTZiRl-bFGHD4qg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.798 [XNIO-1 task-1] fZxTH3FwTZiRl-bFGHD4qg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.802 [XNIO-1 task-1] GaueAobSRSO3GPCfYQ-18w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.802 [XNIO-1 task-1] GaueAobSRSO3GPCfYQ-18w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.802 [XNIO-1 task-1] GaueAobSRSO3GPCfYQ-18w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.802 [XNIO-1 task-1] GaueAobSRSO3GPCfYQ-18w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.802 [XNIO-1 task-1] GaueAobSRSO3GPCfYQ-18w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.804 [XNIO-1 task-1] 1YrZSV9ISlWDRJE4fZy0aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.804 [XNIO-1 task-1] 1YrZSV9ISlWDRJE4fZy0aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.804 [XNIO-1 task-1] 1YrZSV9ISlWDRJE4fZy0aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.804 [XNIO-1 task-1] 1YrZSV9ISlWDRJE4fZy0aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.804 [XNIO-1 task-1] 1YrZSV9ISlWDRJE4fZy0aw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.804 [XNIO-1 task-1] 1YrZSV9ISlWDRJE4fZy0aw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.806 [XNIO-1 task-1] ahQqlIYETkSQy2YdUSQlFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.806 [XNIO-1 task-1] ahQqlIYETkSQy2YdUSQlFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.806 [XNIO-1 task-1] ahQqlIYETkSQy2YdUSQlFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.806 [XNIO-1 task-1] ahQqlIYETkSQy2YdUSQlFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.806 [XNIO-1 task-1] ahQqlIYETkSQy2YdUSQlFg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.808 [XNIO-1 task-1] 1O7Clg4bRE2uE80EHXqtUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.808 [XNIO-1 task-1] 1O7Clg4bRE2uE80EHXqtUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.808 [XNIO-1 task-1] 1O7Clg4bRE2uE80EHXqtUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.808 [XNIO-1 task-1] 1O7Clg4bRE2uE80EHXqtUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.808 [XNIO-1 task-1] 1O7Clg4bRE2uE80EHXqtUg DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.808 [XNIO-1 task-1] 1O7Clg4bRE2uE80EHXqtUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.810 [XNIO-1 task-1] 1s84KftHS0S0v9DrvLNuqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.810 [XNIO-1 task-1] 1s84KftHS0S0v9DrvLNuqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.810 [XNIO-1 task-1] 1s84KftHS0S0v9DrvLNuqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.810 [XNIO-1 task-1] 1s84KftHS0S0v9DrvLNuqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.810 [XNIO-1 task-1] 1s84KftHS0S0v9DrvLNuqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.811 [XNIO-1 task-1] -l6-kP3eQsye4iW4o3NSYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.811 [XNIO-1 task-1] -l6-kP3eQsye4iW4o3NSYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.812 [XNIO-1 task-1] -l6-kP3eQsye4iW4o3NSYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.812 [XNIO-1 task-1] -l6-kP3eQsye4iW4o3NSYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.812 [XNIO-1 task-1] -l6-kP3eQsye4iW4o3NSYw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.816 [XNIO-1 task-1] QstfjeHVTROqqjbN03o4Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.816 [XNIO-1 task-1] QstfjeHVTROqqjbN03o4Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.816 [XNIO-1 task-1] QstfjeHVTROqqjbN03o4Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.816 [XNIO-1 task-1] QstfjeHVTROqqjbN03o4Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.816 [XNIO-1 task-1] QstfjeHVTROqqjbN03o4Rg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.817 [XNIO-1 task-1] nuwgz0RhSgG5PQsm1vuk6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.818 [XNIO-1 task-1] nuwgz0RhSgG5PQsm1vuk6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.818 [XNIO-1 task-1] nuwgz0RhSgG5PQsm1vuk6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.818 [XNIO-1 task-1] nuwgz0RhSgG5PQsm1vuk6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.818 [XNIO-1 task-1] nuwgz0RhSgG5PQsm1vuk6g DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.818 [XNIO-1 task-1] nuwgz0RhSgG5PQsm1vuk6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.819 [XNIO-1 task-1] JWwUPcKaQRCPkHiDMq6BgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.819 [XNIO-1 task-1] JWwUPcKaQRCPkHiDMq6BgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.819 [XNIO-1 task-1] JWwUPcKaQRCPkHiDMq6BgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.819 [XNIO-1 task-1] JWwUPcKaQRCPkHiDMq6BgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.820 [XNIO-1 task-1] JWwUPcKaQRCPkHiDMq6BgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.821 [XNIO-1 task-1] 2TSrJxbiT2Oegh7nEWW10A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.821 [XNIO-1 task-1] 2TSrJxbiT2Oegh7nEWW10A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.821 [XNIO-1 task-1] 2TSrJxbiT2Oegh7nEWW10A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.821 [XNIO-1 task-1] 2TSrJxbiT2Oegh7nEWW10A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.821 [XNIO-1 task-1] 2TSrJxbiT2Oegh7nEWW10A DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.821 [XNIO-1 task-1] 2TSrJxbiT2Oegh7nEWW10A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.823 [XNIO-1 task-1] silTAK9eTmWLScRjPMxSOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.823 [XNIO-1 task-1] silTAK9eTmWLScRjPMxSOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.823 [XNIO-1 task-1] silTAK9eTmWLScRjPMxSOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.823 [XNIO-1 task-1] silTAK9eTmWLScRjPMxSOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.823 [XNIO-1 task-1] silTAK9eTmWLScRjPMxSOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.825 [XNIO-1 task-1] 6XZ2IM5nTGWhN8y-Hzd-GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.825 [XNIO-1 task-1] 6XZ2IM5nTGWhN8y-Hzd-GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.825 [XNIO-1 task-1] 6XZ2IM5nTGWhN8y-Hzd-GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.825 [XNIO-1 task-1] 6XZ2IM5nTGWhN8y-Hzd-GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.825 [XNIO-1 task-1] 6XZ2IM5nTGWhN8y-Hzd-GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.825 [XNIO-1 task-1] 6XZ2IM5nTGWhN8y-Hzd-GQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.826 [XNIO-1 task-1] Lc_PNfFZQWabxRaTENFmew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.826 [XNIO-1 task-1] Lc_PNfFZQWabxRaTENFmew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.826 [XNIO-1 task-1] Lc_PNfFZQWabxRaTENFmew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.827 [XNIO-1 task-1] Lc_PNfFZQWabxRaTENFmew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.827 [XNIO-1 task-1] Lc_PNfFZQWabxRaTENFmew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.828 [XNIO-1 task-1] F5j__lBLRQe_P8CdJk-7bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.828 [XNIO-1 task-1] F5j__lBLRQe_P8CdJk-7bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.828 [XNIO-1 task-1] F5j__lBLRQe_P8CdJk-7bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.828 [XNIO-1 task-1] F5j__lBLRQe_P8CdJk-7bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.828 [XNIO-1 task-1] F5j__lBLRQe_P8CdJk-7bA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.828 [XNIO-1 task-1] F5j__lBLRQe_P8CdJk-7bA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.830 [XNIO-1 task-1] 4yokKk2kQc6GmA3ePV90bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.830 [XNIO-1 task-1] 4yokKk2kQc6GmA3ePV90bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.830 [XNIO-1 task-1] 4yokKk2kQc6GmA3ePV90bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.830 [XNIO-1 task-1] 4yokKk2kQc6GmA3ePV90bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.830 [XNIO-1 task-1] 4yokKk2kQc6GmA3ePV90bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.831 [XNIO-1 task-1] yJsnEqiFQBGLYpvlFERrrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.832 [XNIO-1 task-1] yJsnEqiFQBGLYpvlFERrrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.832 [XNIO-1 task-1] yJsnEqiFQBGLYpvlFERrrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.832 [XNIO-1 task-1] yJsnEqiFQBGLYpvlFERrrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.832 [XNIO-1 task-1] yJsnEqiFQBGLYpvlFERrrw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.832 [XNIO-1 task-1] yJsnEqiFQBGLYpvlFERrrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.833 [XNIO-1 task-1] fgSkYm31TVmLfiEzTHd5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.833 [XNIO-1 task-1] fgSkYm31TVmLfiEzTHd5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.833 [XNIO-1 task-1] fgSkYm31TVmLfiEzTHd5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.833 [XNIO-1 task-1] fgSkYm31TVmLfiEzTHd5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.833 [XNIO-1 task-1] fgSkYm31TVmLfiEzTHd5hA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.835 [XNIO-1 task-1] kH6QR6QqRv2XqNs_fQYlsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.835 [XNIO-1 task-1] kH6QR6QqRv2XqNs_fQYlsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.835 [XNIO-1 task-1] kH6QR6QqRv2XqNs_fQYlsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.835 [XNIO-1 task-1] kH6QR6QqRv2XqNs_fQYlsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.835 [XNIO-1 task-1] kH6QR6QqRv2XqNs_fQYlsA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.835 [XNIO-1 task-1] kH6QR6QqRv2XqNs_fQYlsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.837 [XNIO-1 task-1] OltXFjKWT7SPUozCF4eFTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.837 [XNIO-1 task-1] OltXFjKWT7SPUozCF4eFTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.837 [XNIO-1 task-1] OltXFjKWT7SPUozCF4eFTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.837 [XNIO-1 task-1] OltXFjKWT7SPUozCF4eFTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.842 [XNIO-1 task-1] QhXwqQIxQuOxuvaQGN446g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.842 [XNIO-1 task-1] QhXwqQIxQuOxuvaQGN446g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.842 [XNIO-1 task-1] QhXwqQIxQuOxuvaQGN446g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.843 [XNIO-1 task-1] QhXwqQIxQuOxuvaQGN446g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.843 [XNIO-1 task-1] QhXwqQIxQuOxuvaQGN446g DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.843 [XNIO-1 task-1] QhXwqQIxQuOxuvaQGN446g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.844 [XNIO-1 task-1] fHyGRn8TQaC0qHRTq2JlHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.844 [XNIO-1 task-1] fHyGRn8TQaC0qHRTq2JlHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.844 [XNIO-1 task-1] fHyGRn8TQaC0qHRTq2JlHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.844 [XNIO-1 task-1] fHyGRn8TQaC0qHRTq2JlHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.845 [XNIO-1 task-1] fHyGRn8TQaC0qHRTq2JlHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.846 [XNIO-1 task-1] I7y47AmbQliFhN3-uFlEYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.846 [XNIO-1 task-1] I7y47AmbQliFhN3-uFlEYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.846 [XNIO-1 task-1] I7y47AmbQliFhN3-uFlEYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.846 [XNIO-1 task-1] I7y47AmbQliFhN3-uFlEYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.846 [XNIO-1 task-1] I7y47AmbQliFhN3-uFlEYg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.846 [XNIO-1 task-1] I7y47AmbQliFhN3-uFlEYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.848 [XNIO-1 task-1] FDRePJCaRPeOhwVwL6yGoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.848 [XNIO-1 task-1] FDRePJCaRPeOhwVwL6yGoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.848 [XNIO-1 task-1] FDRePJCaRPeOhwVwL6yGoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.848 [XNIO-1 task-1] FDRePJCaRPeOhwVwL6yGoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.848 [XNIO-1 task-1] FDRePJCaRPeOhwVwL6yGoA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.849 [XNIO-1 task-1] os9-xQJ0QgiDRE1ZXcrvFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.849 [XNIO-1 task-1] os9-xQJ0QgiDRE1ZXcrvFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.849 [XNIO-1 task-1] os9-xQJ0QgiDRE1ZXcrvFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.849 [XNIO-1 task-1] os9-xQJ0QgiDRE1ZXcrvFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.849 [XNIO-1 task-1] os9-xQJ0QgiDRE1ZXcrvFg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.850 [XNIO-1 task-1] os9-xQJ0QgiDRE1ZXcrvFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.851 [XNIO-1 task-1] TmajgN1JRW2SD1BC1vCD1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.851 [XNIO-1 task-1] TmajgN1JRW2SD1BC1vCD1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.851 [XNIO-1 task-1] TmajgN1JRW2SD1BC1vCD1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.851 [XNIO-1 task-1] TmajgN1JRW2SD1BC1vCD1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.855 [XNIO-1 task-1] OsFGlzLQTEuwI35HbQsn7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.855 [XNIO-1 task-1] OsFGlzLQTEuwI35HbQsn7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.856 [XNIO-1 task-1] OsFGlzLQTEuwI35HbQsn7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.856 [XNIO-1 task-1] OsFGlzLQTEuwI35HbQsn7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.856 [XNIO-1 task-1] OsFGlzLQTEuwI35HbQsn7A DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.856 [XNIO-1 task-1] OsFGlzLQTEuwI35HbQsn7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.857 [XNIO-1 task-1] ANNXvXxNR4G12XI70cu2Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.857 [XNIO-1 task-1] ANNXvXxNR4G12XI70cu2Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.857 [XNIO-1 task-1] ANNXvXxNR4G12XI70cu2Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.857 [XNIO-1 task-1] ANNXvXxNR4G12XI70cu2Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.857 [XNIO-1 task-1] ANNXvXxNR4G12XI70cu2Qw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.859 [XNIO-1 task-1] 0gRSj1LCRreJ-LkkCIV2Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.859 [XNIO-1 task-1] 0gRSj1LCRreJ-LkkCIV2Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.859 [XNIO-1 task-1] 0gRSj1LCRreJ-LkkCIV2Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.859 [XNIO-1 task-1] 0gRSj1LCRreJ-LkkCIV2Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.859 [XNIO-1 task-1] 0gRSj1LCRreJ-LkkCIV2Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.859 [XNIO-1 task-1] 0gRSj1LCRreJ-LkkCIV2Zw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.861 [XNIO-1 task-1] 1odB_NKzShmPpoRlzIESBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.861 [XNIO-1 task-1] 1odB_NKzShmPpoRlzIESBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.861 [XNIO-1 task-1] 1odB_NKzShmPpoRlzIESBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.861 [XNIO-1 task-1] 1odB_NKzShmPpoRlzIESBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.861 [XNIO-1 task-1] 1odB_NKzShmPpoRlzIESBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.862 [XNIO-1 task-1] TnGT5wL8T5eTGlFaMoOuSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.862 [XNIO-1 task-1] TnGT5wL8T5eTGlFaMoOuSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.863 [XNIO-1 task-1] TnGT5wL8T5eTGlFaMoOuSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.863 [XNIO-1 task-1] TnGT5wL8T5eTGlFaMoOuSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.863 [XNIO-1 task-1] TnGT5wL8T5eTGlFaMoOuSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.863 [XNIO-1 task-1] TnGT5wL8T5eTGlFaMoOuSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.864 [XNIO-1 task-1] crnGgQnJTQ--fpiklZKzog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.864 [XNIO-1 task-1] crnGgQnJTQ--fpiklZKzog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.864 [XNIO-1 task-1] crnGgQnJTQ--fpiklZKzog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.864 [XNIO-1 task-1] crnGgQnJTQ--fpiklZKzog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.864 [XNIO-1 task-1] crnGgQnJTQ--fpiklZKzog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.866 [XNIO-1 task-1] ISp1OquBTZer7iq4zFqxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.866 [XNIO-1 task-1] ISp1OquBTZer7iq4zFqxTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.866 [XNIO-1 task-1] ISp1OquBTZer7iq4zFqxTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.866 [XNIO-1 task-1] ISp1OquBTZer7iq4zFqxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.866 [XNIO-1 task-1] ISp1OquBTZer7iq4zFqxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.866 [XNIO-1 task-1] ISp1OquBTZer7iq4zFqxTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.868 [XNIO-1 task-1] W0JDCf2IQf2twtNzrLKtKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.868 [XNIO-1 task-1] W0JDCf2IQf2twtNzrLKtKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.868 [XNIO-1 task-1] W0JDCf2IQf2twtNzrLKtKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.868 [XNIO-1 task-1] W0JDCf2IQf2twtNzrLKtKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.872 [XNIO-1 task-1] JZ2vgAyzS5i8JPLrack_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.872 [XNIO-1 task-1] JZ2vgAyzS5i8JPLrack_PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.872 [XNIO-1 task-1] JZ2vgAyzS5i8JPLrack_PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.872 [XNIO-1 task-1] JZ2vgAyzS5i8JPLrack_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.872 [XNIO-1 task-1] JZ2vgAyzS5i8JPLrack_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.873 [XNIO-1 task-1] JZ2vgAyzS5i8JPLrack_PA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.874 [XNIO-1 task-1] ME6SoWidQPmw9AHcUOkKwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.874 [XNIO-1 task-1] ME6SoWidQPmw9AHcUOkKwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.874 [XNIO-1 task-1] ME6SoWidQPmw9AHcUOkKwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.874 [XNIO-1 task-1] ME6SoWidQPmw9AHcUOkKwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.874 [XNIO-1 task-1] ME6SoWidQPmw9AHcUOkKwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.877 [XNIO-1 task-1] 0VJNErWyQVK72iJlox2CiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.877 [XNIO-1 task-1] 0VJNErWyQVK72iJlox2CiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.877 [XNIO-1 task-1] 0VJNErWyQVK72iJlox2CiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.877 [XNIO-1 task-1] 0VJNErWyQVK72iJlox2CiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.877 [XNIO-1 task-1] 0VJNErWyQVK72iJlox2CiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.877 [XNIO-1 task-1] 0VJNErWyQVK72iJlox2CiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.879 [XNIO-1 task-1] Snr_EfSIQh-7i2I-z6loAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.879 [XNIO-1 task-1] Snr_EfSIQh-7i2I-z6loAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.879 [XNIO-1 task-1] Snr_EfSIQh-7i2I-z6loAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.879 [XNIO-1 task-1] Snr_EfSIQh-7i2I-z6loAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.879 [XNIO-1 task-1] Snr_EfSIQh-7i2I-z6loAw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.880 [XNIO-1 task-1] xG1NCOojTya8Zq3vCnsVYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.880 [XNIO-1 task-1] xG1NCOojTya8Zq3vCnsVYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.880 [XNIO-1 task-1] xG1NCOojTya8Zq3vCnsVYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.881 [XNIO-1 task-1] xG1NCOojTya8Zq3vCnsVYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.881 [XNIO-1 task-1] xG1NCOojTya8Zq3vCnsVYw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.881 [XNIO-1 task-1] xG1NCOojTya8Zq3vCnsVYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.882 [XNIO-1 task-1] jAPvkxQDTbimGs9QwT9BWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.882 [XNIO-1 task-1] jAPvkxQDTbimGs9QwT9BWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.882 [XNIO-1 task-1] jAPvkxQDTbimGs9QwT9BWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.882 [XNIO-1 task-1] jAPvkxQDTbimGs9QwT9BWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.887 [XNIO-1 task-1] Hc5LY1-ZTwW-rY_umRRxtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.887 [XNIO-1 task-1] Hc5LY1-ZTwW-rY_umRRxtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.887 [XNIO-1 task-1] Hc5LY1-ZTwW-rY_umRRxtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.887 [XNIO-1 task-1] Hc5LY1-ZTwW-rY_umRRxtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.887 [XNIO-1 task-1] Hc5LY1-ZTwW-rY_umRRxtg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.887 [XNIO-1 task-1] Hc5LY1-ZTwW-rY_umRRxtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.889 [XNIO-1 task-1] e-lfjSOrQ3Wob-UzNS5_5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.889 [XNIO-1 task-1] e-lfjSOrQ3Wob-UzNS5_5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.889 [XNIO-1 task-1] e-lfjSOrQ3Wob-UzNS5_5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.889 [XNIO-1 task-1] e-lfjSOrQ3Wob-UzNS5_5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.889 [XNIO-1 task-1] e-lfjSOrQ3Wob-UzNS5_5w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.890 [XNIO-1 task-1] a92K8tp8TSC36ohS-12rFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.890 [XNIO-1 task-1] a92K8tp8TSC36ohS-12rFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.890 [XNIO-1 task-1] a92K8tp8TSC36ohS-12rFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.890 [XNIO-1 task-1] a92K8tp8TSC36ohS-12rFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.891 [XNIO-1 task-1] a92K8tp8TSC36ohS-12rFA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.891 [XNIO-1 task-1] a92K8tp8TSC36ohS-12rFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.892 [XNIO-1 task-1] VV8NJXWvQ3qVrd6sh6xwYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.892 [XNIO-1 task-1] VV8NJXWvQ3qVrd6sh6xwYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.892 [XNIO-1 task-1] VV8NJXWvQ3qVrd6sh6xwYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.892 [XNIO-1 task-1] VV8NJXWvQ3qVrd6sh6xwYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.892 [XNIO-1 task-1] VV8NJXWvQ3qVrd6sh6xwYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.894 [XNIO-1 task-1] fXyTArGpSwal5A22UMIcEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.894 [XNIO-1 task-1] fXyTArGpSwal5A22UMIcEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.894 [XNIO-1 task-1] fXyTArGpSwal5A22UMIcEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.894 [XNIO-1 task-1] fXyTArGpSwal5A22UMIcEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.894 [XNIO-1 task-1] fXyTArGpSwal5A22UMIcEA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.894 [XNIO-1 task-1] fXyTArGpSwal5A22UMIcEA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.895 [XNIO-1 task-1] pJ1tEc0eQWOIx43G8GJ60w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.895 [XNIO-1 task-1] pJ1tEc0eQWOIx43G8GJ60w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.896 [XNIO-1 task-1] pJ1tEc0eQWOIx43G8GJ60w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.896 [XNIO-1 task-1] pJ1tEc0eQWOIx43G8GJ60w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.900 [XNIO-1 task-1] WDOi8Q9BQnaDq4cRusuNhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.900 [XNIO-1 task-1] WDOi8Q9BQnaDq4cRusuNhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.900 [XNIO-1 task-1] WDOi8Q9BQnaDq4cRusuNhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.900 [XNIO-1 task-1] WDOi8Q9BQnaDq4cRusuNhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.900 [XNIO-1 task-1] WDOi8Q9BQnaDq4cRusuNhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.904 [XNIO-1 task-1] bsvAHqKhQEuZXJ_OeSYnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.904 [XNIO-1 task-1] bsvAHqKhQEuZXJ_OeSYnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.904 [XNIO-1 task-1] bsvAHqKhQEuZXJ_OeSYnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.904 [XNIO-1 task-1] bsvAHqKhQEuZXJ_OeSYnDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.909 [XNIO-1 task-1] oInHx94UR1WqAFIMISDsiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.909 [XNIO-1 task-1] oInHx94UR1WqAFIMISDsiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.909 [XNIO-1 task-1] oInHx94UR1WqAFIMISDsiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.909 [XNIO-1 task-1] oInHx94UR1WqAFIMISDsiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.909 [XNIO-1 task-1] oInHx94UR1WqAFIMISDsiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.909 [XNIO-1 task-1] oInHx94UR1WqAFIMISDsiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.910 [XNIO-1 task-1] VELfe5G0TPKy7sRAM7ISFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.911 [XNIO-1 task-1] VELfe5G0TPKy7sRAM7ISFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.911 [XNIO-1 task-1] VELfe5G0TPKy7sRAM7ISFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.911 [XNIO-1 task-1] VELfe5G0TPKy7sRAM7ISFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.911 [XNIO-1 task-1] VELfe5G0TPKy7sRAM7ISFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.912 [XNIO-1 task-1] RUzq8Sp8S8a74uhEBX_-2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.912 [XNIO-1 task-1] RUzq8Sp8S8a74uhEBX_-2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.912 [XNIO-1 task-1] RUzq8Sp8S8a74uhEBX_-2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.912 [XNIO-1 task-1] RUzq8Sp8S8a74uhEBX_-2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.913 [XNIO-1 task-1] RUzq8Sp8S8a74uhEBX_-2A DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.913 [XNIO-1 task-1] RUzq8Sp8S8a74uhEBX_-2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.914 [XNIO-1 task-1] iDle7W5aQzyFHHEGzEA2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.914 [XNIO-1 task-1] iDle7W5aQzyFHHEGzEA2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.914 [XNIO-1 task-1] iDle7W5aQzyFHHEGzEA2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.914 [XNIO-1 task-1] iDle7W5aQzyFHHEGzEA2Pg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.918 [XNIO-1 task-1] iAcZv27ST-a9rqU5RWZb0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.918 [XNIO-1 task-1] iAcZv27ST-a9rqU5RWZb0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.918 [XNIO-1 task-1] iAcZv27ST-a9rqU5RWZb0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.918 [XNIO-1 task-1] iAcZv27ST-a9rqU5RWZb0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.918 [XNIO-1 task-1] iAcZv27ST-a9rqU5RWZb0w DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.919 [XNIO-1 task-1] iAcZv27ST-a9rqU5RWZb0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.921 [XNIO-1 task-1] queUdz16QNKGk4oZhofgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.921 [XNIO-1 task-1] queUdz16QNKGk4oZhofgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.922 [XNIO-1 task-1] queUdz16QNKGk4oZhofgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.922 [XNIO-1 task-1] queUdz16QNKGk4oZhofgvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.927 [XNIO-1 task-1] hfqHiy9yRfiAiG_hyy0wMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.927 [XNIO-1 task-1] hfqHiy9yRfiAiG_hyy0wMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.927 [XNIO-1 task-1] hfqHiy9yRfiAiG_hyy0wMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.927 [XNIO-1 task-1] hfqHiy9yRfiAiG_hyy0wMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.927 [XNIO-1 task-1] hfqHiy9yRfiAiG_hyy0wMA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.931 [XNIO-1 task-1] CkmTV8tQQGO2wyxXVnWn2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.931 [XNIO-1 task-1] CkmTV8tQQGO2wyxXVnWn2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.931 [XNIO-1 task-1] CkmTV8tQQGO2wyxXVnWn2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.932 [XNIO-1 task-1] CkmTV8tQQGO2wyxXVnWn2g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.935 [XNIO-1 task-1] DH7P8kKhSxuETpYHr6hzzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.935 [XNIO-1 task-1] DH7P8kKhSxuETpYHr6hzzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.935 [XNIO-1 task-1] DH7P8kKhSxuETpYHr6hzzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.936 [XNIO-1 task-1] DH7P8kKhSxuETpYHr6hzzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.936 [XNIO-1 task-1] DH7P8kKhSxuETpYHr6hzzA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.939 [XNIO-1 task-1] PSB08zNfTM2OswOiGRNcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.940 [XNIO-1 task-1] PSB08zNfTM2OswOiGRNcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.940 [XNIO-1 task-1] PSB08zNfTM2OswOiGRNcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.940 [XNIO-1 task-1] PSB08zNfTM2OswOiGRNcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.940 [XNIO-1 task-1] PSB08zNfTM2OswOiGRNcQg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.941 [XNIO-1 task-1] 6Vz8tUgCRMyglSrGzlf3Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.942 [XNIO-1 task-1] 6Vz8tUgCRMyglSrGzlf3Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.942 [XNIO-1 task-1] 6Vz8tUgCRMyglSrGzlf3Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.942 [XNIO-1 task-1] 6Vz8tUgCRMyglSrGzlf3Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.942 [XNIO-1 task-1] 6Vz8tUgCRMyglSrGzlf3Zg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.946 [XNIO-1 task-1] 5EQoay9cRN-53Eej8jx96g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.946 [XNIO-1 task-1] 5EQoay9cRN-53Eej8jx96g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.946 [XNIO-1 task-1] 5EQoay9cRN-53Eej8jx96g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.946 [XNIO-1 task-1] 5EQoay9cRN-53Eej8jx96g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.949 [XNIO-1 task-1] n_emsj1WTGmNz7viEQ93Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.950 [XNIO-1 task-1] n_emsj1WTGmNz7viEQ93Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.950 [XNIO-1 task-1] n_emsj1WTGmNz7viEQ93Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.950 [XNIO-1 task-1] n_emsj1WTGmNz7viEQ93Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.950 [XNIO-1 task-1] n_emsj1WTGmNz7viEQ93Yw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.953 [XNIO-1 task-1] KF-Y0j1jSdCoXUflg7gshA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.954 [XNIO-1 task-1] KF-Y0j1jSdCoXUflg7gshA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.954 [XNIO-1 task-1] KF-Y0j1jSdCoXUflg7gshA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.954 [XNIO-1 task-1] KF-Y0j1jSdCoXUflg7gshA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.957 [XNIO-1 task-1] t5nwtEYqRQChYz3qpQspyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.957 [XNIO-1 task-1] t5nwtEYqRQChYz3qpQspyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.957 [XNIO-1 task-1] t5nwtEYqRQChYz3qpQspyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.957 [XNIO-1 task-1] t5nwtEYqRQChYz3qpQspyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.958 [XNIO-1 task-1] t5nwtEYqRQChYz3qpQspyw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.962 [XNIO-1 task-1] C_dEPfv7Ti2zoizFRDdf1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.962 [XNIO-1 task-1] C_dEPfv7Ti2zoizFRDdf1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.962 [XNIO-1 task-1] C_dEPfv7Ti2zoizFRDdf1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.962 [XNIO-1 task-1] C_dEPfv7Ti2zoizFRDdf1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.962 [XNIO-1 task-1] C_dEPfv7Ti2zoizFRDdf1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.964 [XNIO-1 task-1] fHsQ_-VQQNiY-1oV4towJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.964 [XNIO-1 task-1] fHsQ_-VQQNiY-1oV4towJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.964 [XNIO-1 task-1] fHsQ_-VQQNiY-1oV4towJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.964 [XNIO-1 task-1] fHsQ_-VQQNiY-1oV4towJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:49.964 [XNIO-1 task-1] fHsQ_-VQQNiY-1oV4towJA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:49.964 [XNIO-1 task-1] fHsQ_-VQQNiY-1oV4towJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:49.966 [XNIO-1 task-1] v2CAAe5KQw61A6ICKbOG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.966 [XNIO-1 task-1] v2CAAe5KQw61A6ICKbOG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.966 [XNIO-1 task-1] v2CAAe5KQw61A6ICKbOG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.966 [XNIO-1 task-1] v2CAAe5KQw61A6ICKbOG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.966 [XNIO-1 task-1] v2CAAe5KQw61A6ICKbOG4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.967 [XNIO-1 task-1] HpXOrtq2RcGio7LRL1UnGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.967 [XNIO-1 task-1] HpXOrtq2RcGio7LRL1UnGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.967 [XNIO-1 task-1] HpXOrtq2RcGio7LRL1UnGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.967 [XNIO-1 task-1] HpXOrtq2RcGio7LRL1UnGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.968 [XNIO-1 task-1] HpXOrtq2RcGio7LRL1UnGg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.971 [XNIO-1 task-1] vkgx36HuQEWPLs61FzETMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.972 [XNIO-1 task-1] vkgx36HuQEWPLs61FzETMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.972 [XNIO-1 task-1] vkgx36HuQEWPLs61FzETMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.972 [XNIO-1 task-1] vkgx36HuQEWPLs61FzETMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.976 [XNIO-1 task-1] cjQOZvnoRDCJOkzDQkBf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.976 [XNIO-1 task-1] cjQOZvnoRDCJOkzDQkBf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.976 [XNIO-1 task-1] cjQOZvnoRDCJOkzDQkBf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.976 [XNIO-1 task-1] cjQOZvnoRDCJOkzDQkBf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.976 [XNIO-1 task-1] cjQOZvnoRDCJOkzDQkBf6A DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.976 [XNIO-1 task-1] cjQOZvnoRDCJOkzDQkBf6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.978 [XNIO-1 task-1] l4dP_p-TRmarXf_P0iLLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.978 [XNIO-1 task-1] l4dP_p-TRmarXf_P0iLLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.978 [XNIO-1 task-1] l4dP_p-TRmarXf_P0iLLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.978 [XNIO-1 task-1] l4dP_p-TRmarXf_P0iLLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.978 [XNIO-1 task-1] l4dP_p-TRmarXf_P0iLLuA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:49.979 [XNIO-1 task-1] RIysi_vrQxuhkpA6nnfxtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.979 [XNIO-1 task-1] RIysi_vrQxuhkpA6nnfxtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.979 [XNIO-1 task-1] RIysi_vrQxuhkpA6nnfxtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.979 [XNIO-1 task-1] RIysi_vrQxuhkpA6nnfxtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.980 [XNIO-1 task-1] RIysi_vrQxuhkpA6nnfxtg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.980 [XNIO-1 task-1] RIysi_vrQxuhkpA6nnfxtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.981 [XNIO-1 task-1] X3Bs829uSxiPfh-7ToXtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.981 [XNIO-1 task-1] X3Bs829uSxiPfh-7ToXtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.981 [XNIO-1 task-1] X3Bs829uSxiPfh-7ToXtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.981 [XNIO-1 task-1] X3Bs829uSxiPfh-7ToXtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.981 [XNIO-1 task-1] X3Bs829uSxiPfh-7ToXtEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.983 [XNIO-1 task-1] lLpom3TDR-CoFrjtVJjLRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.983 [XNIO-1 task-1] lLpom3TDR-CoFrjtVJjLRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.983 [XNIO-1 task-1] lLpom3TDR-CoFrjtVJjLRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.983 [XNIO-1 task-1] lLpom3TDR-CoFrjtVJjLRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.983 [XNIO-1 task-1] lLpom3TDR-CoFrjtVJjLRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.987 [XNIO-1 task-1] fsB2P4Z7Q66AWjQzqDkrfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.987 [XNIO-1 task-1] fsB2P4Z7Q66AWjQzqDkrfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.987 [XNIO-1 task-1] fsB2P4Z7Q66AWjQzqDkrfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.988 [XNIO-1 task-1] fsB2P4Z7Q66AWjQzqDkrfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.991 [XNIO-1 task-1] LW-YZ8rTSz6_T0JQXLFEyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.991 [XNIO-1 task-1] LW-YZ8rTSz6_T0JQXLFEyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.991 [XNIO-1 task-1] LW-YZ8rTSz6_T0JQXLFEyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:49.991 [XNIO-1 task-1] LW-YZ8rTSz6_T0JQXLFEyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:49.991 [XNIO-1 task-1] LW-YZ8rTSz6_T0JQXLFEyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:49.992 [XNIO-1 task-1] LW-YZ8rTSz6_T0JQXLFEyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:49.993 [XNIO-1 task-1] GIf5_CzeQVymtyyjZgGVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.993 [XNIO-1 task-1] GIf5_CzeQVymtyyjZgGVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.993 [XNIO-1 task-1] GIf5_CzeQVymtyyjZgGVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:49.993 [XNIO-1 task-1] GIf5_CzeQVymtyyjZgGVbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.993 [XNIO-1 task-1] GIf5_CzeQVymtyyjZgGVbw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.995 [XNIO-1 task-1] LA7s2XM1QiGq5T9mA-8JmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.995 [XNIO-1 task-1] LA7s2XM1QiGq5T9mA-8JmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:49.995 [XNIO-1 task-1] LA7s2XM1QiGq5T9mA-8JmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:49.995 [XNIO-1 task-1] LA7s2XM1QiGq5T9mA-8JmA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.995 [XNIO-1 task-1] LA7s2XM1QiGq5T9mA-8JmA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:49.999 [XNIO-1 task-1] vnsBS1RoRlm8m7tiAfKOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.999 [XNIO-1 task-1] vnsBS1RoRlm8m7tiAfKOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.999 [XNIO-1 task-1] vnsBS1RoRlm8m7tiAfKOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:49.999 [XNIO-1 task-1] vnsBS1RoRlm8m7tiAfKOWA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.026 [XNIO-1 task-1] 1uTIr1mOQguXjfUHAopPPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.026 [XNIO-1 task-1] 1uTIr1mOQguXjfUHAopPPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.026 [XNIO-1 task-1] 1uTIr1mOQguXjfUHAopPPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.026 [XNIO-1 task-1] 1uTIr1mOQguXjfUHAopPPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.026 [XNIO-1 task-1] 1uTIr1mOQguXjfUHAopPPA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.027 [XNIO-1 task-1] 1uTIr1mOQguXjfUHAopPPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.029 [XNIO-1 task-1] ulcnQMoST1iiZ7VjypB3JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:50.029 [XNIO-1 task-1] ulcnQMoST1iiZ7VjypB3JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.029 [XNIO-1 task-1] ulcnQMoST1iiZ7VjypB3JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.030 [XNIO-1 task-1] ulcnQMoST1iiZ7VjypB3JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:50.030 [XNIO-1 task-1] ulcnQMoST1iiZ7VjypB3JQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:50.032 [XNIO-1 task-1] 0RI-EzuPQBGeR2zX_k8PgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:50.032 [XNIO-1 task-1] 0RI-EzuPQBGeR2zX_k8PgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.032 [XNIO-1 task-1] 0RI-EzuPQBGeR2zX_k8PgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.032 [XNIO-1 task-1] 0RI-EzuPQBGeR2zX_k8PgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:50.032 [XNIO-1 task-1] 0RI-EzuPQBGeR2zX_k8PgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:50.032 [XNIO-1 task-1] 0RI-EzuPQBGeR2zX_k8PgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:50.034 [XNIO-1 task-1] bjw-W-26RfKhf4fwpju5wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.034 [XNIO-1 task-1] bjw-W-26RfKhf4fwpju5wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.034 [XNIO-1 task-1] bjw-W-26RfKhf4fwpju5wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.034 [XNIO-1 task-1] bjw-W-26RfKhf4fwpju5wg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.038 [XNIO-1 task-1] HQWL-bIkQ7mMxumQExJQQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.038 [XNIO-1 task-1] HQWL-bIkQ7mMxumQExJQQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.038 [XNIO-1 task-1] HQWL-bIkQ7mMxumQExJQQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.038 [XNIO-1 task-1] HQWL-bIkQ7mMxumQExJQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:50.038 [XNIO-1 task-1] HQWL-bIkQ7mMxumQExJQQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:50.044 [XNIO-1 task-1] _cmWLea1Rta2E6O7Tng2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.044 [XNIO-1 task-1] _cmWLea1Rta2E6O7Tng2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.044 [XNIO-1 task-1] _cmWLea1Rta2E6O7Tng2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.044 [XNIO-1 task-1] _cmWLea1Rta2E6O7Tng2nw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.048 [XNIO-1 task-1] TTuxgf6dRfyX2urxz5ePgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:50.048 [XNIO-1 task-1] TTuxgf6dRfyX2urxz5ePgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.048 [XNIO-1 task-1] TTuxgf6dRfyX2urxz5ePgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.048 [XNIO-1 task-1] TTuxgf6dRfyX2urxz5ePgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613, base path is set to: null +08:11:50.048 [XNIO-1 task-1] TTuxgf6dRfyX2urxz5ePgg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7586fdd-b182-4620-a20f-24092ea9c613", "c7586fdd-b182-4620-a20f-24092ea9c613", refreshToken) +08:11:50.048 [XNIO-1 task-1] TTuxgf6dRfyX2urxz5ePgg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7586fdd-b182-4620-a20f-24092ea9c613 is not found.","severity":"ERROR"} +08:11:50.050 [XNIO-1 task-1] cwF381pCQ-6CwuwnIUmmXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.050 [XNIO-1 task-1] cwF381pCQ-6CwuwnIUmmXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.050 [XNIO-1 task-1] cwF381pCQ-6CwuwnIUmmXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.051 [XNIO-1 task-1] cwF381pCQ-6CwuwnIUmmXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.055 [XNIO-1 task-1] G-pZCcXjS3-7QeeUEU3zrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.055 [XNIO-1 task-1] G-pZCcXjS3-7QeeUEU3zrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.055 [XNIO-1 task-1] G-pZCcXjS3-7QeeUEU3zrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.055 [XNIO-1 task-1] G-pZCcXjS3-7QeeUEU3zrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.055 [XNIO-1 task-1] G-pZCcXjS3-7QeeUEU3zrg DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.055 [XNIO-1 task-1] G-pZCcXjS3-7QeeUEU3zrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.057 [XNIO-1 task-1] oENdicE-SuSxDi-QNykTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:50.057 [XNIO-1 task-1] oENdicE-SuSxDi-QNykTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.057 [XNIO-1 task-1] oENdicE-SuSxDi-QNykTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.057 [XNIO-1 task-1] oENdicE-SuSxDi-QNykTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:50.057 [XNIO-1 task-1] oENdicE-SuSxDi-QNykTSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7586fdd-b182-4620-a20f-24092ea9c613 +08:11:50.059 [XNIO-1 task-1] yy9gyujuRE6lVWs2kddnvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.059 [XNIO-1 task-1] yy9gyujuRE6lVWs2kddnvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.059 [XNIO-1 task-1] yy9gyujuRE6lVWs2kddnvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.059 [XNIO-1 task-1] yy9gyujuRE6lVWs2kddnvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.059 [XNIO-1 task-1] yy9gyujuRE6lVWs2kddnvA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.059 [XNIO-1 task-1] yy9gyujuRE6lVWs2kddnvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.061 [XNIO-1 task-1] cMULTa42SJmN73TNPzPmgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.062 [XNIO-1 task-1] cMULTa42SJmN73TNPzPmgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.062 [XNIO-1 task-1] cMULTa42SJmN73TNPzPmgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.062 [XNIO-1 task-1] cMULTa42SJmN73TNPzPmgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.066 [XNIO-1 task-1] bAgCa-0AR1iKE6M4pFcslA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.066 [XNIO-1 task-1] bAgCa-0AR1iKE6M4pFcslA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.066 [XNIO-1 task-1] bAgCa-0AR1iKE6M4pFcslA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.066 [XNIO-1 task-1] bAgCa-0AR1iKE6M4pFcslA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.066 [XNIO-1 task-1] bAgCa-0AR1iKE6M4pFcslA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.066 [XNIO-1 task-1] bAgCa-0AR1iKE6M4pFcslA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.068 [XNIO-1 task-1] bx05Bu2vSz6733ZRKcIsBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.068 [XNIO-1 task-1] bx05Bu2vSz6733ZRKcIsBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.068 [XNIO-1 task-1] bx05Bu2vSz6733ZRKcIsBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.068 [XNIO-1 task-1] bx05Bu2vSz6733ZRKcIsBA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.072 [XNIO-1 task-1] wiV7uwHsSIS15fWbWdZejA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.072 [XNIO-1 task-1] wiV7uwHsSIS15fWbWdZejA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.072 [XNIO-1 task-1] wiV7uwHsSIS15fWbWdZejA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.072 [XNIO-1 task-1] wiV7uwHsSIS15fWbWdZejA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:50.072 [XNIO-1 task-1] wiV7uwHsSIS15fWbWdZejA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:50.076 [XNIO-1 task-1] ZMqceymCTdOmRrrFFhiS8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.076 [XNIO-1 task-1] ZMqceymCTdOmRrrFFhiS8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.076 [XNIO-1 task-1] ZMqceymCTdOmRrrFFhiS8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.076 [XNIO-1 task-1] ZMqceymCTdOmRrrFFhiS8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.076 [XNIO-1 task-1] ZMqceymCTdOmRrrFFhiS8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.079 [XNIO-1 task-1] 9BZT2FdmRw63ssfTAWbxbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.079 [XNIO-1 task-1] 9BZT2FdmRw63ssfTAWbxbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.079 [XNIO-1 task-1] 9BZT2FdmRw63ssfTAWbxbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.079 [XNIO-1 task-1] 9BZT2FdmRw63ssfTAWbxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:50.079 [XNIO-1 task-1] 9BZT2FdmRw63ssfTAWbxbw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:50.083 [XNIO-1 task-1] 6mO-59p1T4utaE6MD4hC0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.083 [XNIO-1 task-1] 6mO-59p1T4utaE6MD4hC0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.083 [XNIO-1 task-1] 6mO-59p1T4utaE6MD4hC0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.083 [XNIO-1 task-1] 6mO-59p1T4utaE6MD4hC0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.084 [XNIO-1 task-1] 6mO-59p1T4utaE6MD4hC0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.085 [XNIO-1 task-1] S78nwT8oSDaTP6pRdpuQWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.085 [XNIO-1 task-1] S78nwT8oSDaTP6pRdpuQWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.085 [XNIO-1 task-1] S78nwT8oSDaTP6pRdpuQWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.085 [XNIO-1 task-1] S78nwT8oSDaTP6pRdpuQWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.085 [XNIO-1 task-1] S78nwT8oSDaTP6pRdpuQWw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.085 [XNIO-1 task-1] S78nwT8oSDaTP6pRdpuQWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.088 [XNIO-1 task-1] lVxXVGP8T7GROjnFMdrheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.088 [XNIO-1 task-1] lVxXVGP8T7GROjnFMdrheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.088 [XNIO-1 task-1] lVxXVGP8T7GROjnFMdrheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.088 [XNIO-1 task-1] lVxXVGP8T7GROjnFMdrheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.088 [XNIO-1 task-1] lVxXVGP8T7GROjnFMdrheg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.090 [XNIO-1 task-1] R2Yx3bHgRjeUY6Pl71yxIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.090 [XNIO-1 task-1] R2Yx3bHgRjeUY6Pl71yxIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.090 [XNIO-1 task-1] R2Yx3bHgRjeUY6Pl71yxIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.090 [XNIO-1 task-1] R2Yx3bHgRjeUY6Pl71yxIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.090 [XNIO-1 task-1] R2Yx3bHgRjeUY6Pl71yxIw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.090 [XNIO-1 task-1] R2Yx3bHgRjeUY6Pl71yxIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.091 [XNIO-1 task-1] 300CHxElQrWyCkQOqgCWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.091 [XNIO-1 task-1] 300CHxElQrWyCkQOqgCWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.091 [XNIO-1 task-1] 300CHxElQrWyCkQOqgCWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.092 [XNIO-1 task-1] 300CHxElQrWyCkQOqgCWww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.097 [XNIO-1 task-1] SNolNaaXRIOLGPTY9yPfZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.097 [XNIO-1 task-1] SNolNaaXRIOLGPTY9yPfZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.097 [XNIO-1 task-1] SNolNaaXRIOLGPTY9yPfZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.097 [XNIO-1 task-1] SNolNaaXRIOLGPTY9yPfZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:50.097 [XNIO-1 task-1] SNolNaaXRIOLGPTY9yPfZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:50.102 [XNIO-1 task-1] eWIxs9mZRzKqzJeeZL_QLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.102 [XNIO-1 task-1] eWIxs9mZRzKqzJeeZL_QLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.102 [XNIO-1 task-1] eWIxs9mZRzKqzJeeZL_QLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.102 [XNIO-1 task-1] eWIxs9mZRzKqzJeeZL_QLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.102 [XNIO-1 task-1] eWIxs9mZRzKqzJeeZL_QLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.105 [XNIO-1 task-1] X6nOkrgSSc6QO36l0Lz47w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.105 [XNIO-1 task-1] X6nOkrgSSc6QO36l0Lz47w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.105 [XNIO-1 task-1] X6nOkrgSSc6QO36l0Lz47w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.105 [XNIO-1 task-1] X6nOkrgSSc6QO36l0Lz47w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:50.105 [XNIO-1 task-1] X6nOkrgSSc6QO36l0Lz47w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:50.109 [XNIO-1 task-1] 0eaKDR-sRt-cRg-lBAqTQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.109 [XNIO-1 task-1] 0eaKDR-sRt-cRg-lBAqTQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.109 [XNIO-1 task-1] 0eaKDR-sRt-cRg-lBAqTQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.109 [XNIO-1 task-1] 0eaKDR-sRt-cRg-lBAqTQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.109 [XNIO-1 task-1] 0eaKDR-sRt-cRg-lBAqTQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.111 [XNIO-1 task-1] GszuhLrfT4O_CN1tEpERDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.111 [XNIO-1 task-1] GszuhLrfT4O_CN1tEpERDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.111 [XNIO-1 task-1] GszuhLrfT4O_CN1tEpERDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.111 [XNIO-1 task-1] GszuhLrfT4O_CN1tEpERDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.111 [XNIO-1 task-1] GszuhLrfT4O_CN1tEpERDA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.111 [XNIO-1 task-1] GszuhLrfT4O_CN1tEpERDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.113 [XNIO-1 task-1] mlZ5UtWhTn-97zrxuZHfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.113 [XNIO-1 task-1] mlZ5UtWhTn-97zrxuZHfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.114 [XNIO-1 task-1] mlZ5UtWhTn-97zrxuZHfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.114 [XNIO-1 task-1] mlZ5UtWhTn-97zrxuZHfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.114 [XNIO-1 task-1] mlZ5UtWhTn-97zrxuZHfhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.115 [XNIO-1 task-1] seNQM3uQSlW4Vx_T_V8m_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.115 [XNIO-1 task-1] seNQM3uQSlW4Vx_T_V8m_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.115 [XNIO-1 task-1] seNQM3uQSlW4Vx_T_V8m_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.115 [XNIO-1 task-1] seNQM3uQSlW4Vx_T_V8m_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.115 [XNIO-1 task-1] seNQM3uQSlW4Vx_T_V8m_w DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.115 [XNIO-1 task-1] seNQM3uQSlW4Vx_T_V8m_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.117 [XNIO-1 task-1] bLAyfnk3RIOEQZK2kHLfrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.117 [XNIO-1 task-1] bLAyfnk3RIOEQZK2kHLfrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.117 [XNIO-1 task-1] bLAyfnk3RIOEQZK2kHLfrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.117 [XNIO-1 task-1] bLAyfnk3RIOEQZK2kHLfrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.117 [XNIO-1 task-1] bLAyfnk3RIOEQZK2kHLfrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.118 [XNIO-1 task-1] VDR8AjHARXeGfegNT-Oc7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.118 [XNIO-1 task-1] VDR8AjHARXeGfegNT-Oc7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.119 [XNIO-1 task-1] VDR8AjHARXeGfegNT-Oc7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.119 [XNIO-1 task-1] VDR8AjHARXeGfegNT-Oc7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:50.119 [XNIO-1 task-1] VDR8AjHARXeGfegNT-Oc7w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:50.122 [XNIO-1 task-1] d0WcWaPuQWWKwTMyTD0DVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.123 [XNIO-1 task-1] d0WcWaPuQWWKwTMyTD0DVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.123 [XNIO-1 task-1] d0WcWaPuQWWKwTMyTD0DVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.123 [XNIO-1 task-1] d0WcWaPuQWWKwTMyTD0DVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.127 [XNIO-1 task-1] BbWxUmECRo-YEaiA9SdSvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.127 [XNIO-1 task-1] BbWxUmECRo-YEaiA9SdSvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.127 [XNIO-1 task-1] BbWxUmECRo-YEaiA9SdSvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.127 [XNIO-1 task-1] BbWxUmECRo-YEaiA9SdSvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.127 [XNIO-1 task-1] BbWxUmECRo-YEaiA9SdSvw DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.127 [XNIO-1 task-1] BbWxUmECRo-YEaiA9SdSvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.129 [XNIO-1 task-1] I4ZWdemmT-iMWQyCQQe59g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.129 [XNIO-1 task-1] I4ZWdemmT-iMWQyCQQe59g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.129 [XNIO-1 task-1] I4ZWdemmT-iMWQyCQQe59g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.129 [XNIO-1 task-1] I4ZWdemmT-iMWQyCQQe59g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.133 [XNIO-1 task-1] BMqRiG0IRuioIwQ0k0dmcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.133 [XNIO-1 task-1] BMqRiG0IRuioIwQ0k0dmcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.133 [XNIO-1 task-1] BMqRiG0IRuioIwQ0k0dmcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.133 [XNIO-1 task-1] BMqRiG0IRuioIwQ0k0dmcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.133 [XNIO-1 task-1] BMqRiG0IRuioIwQ0k0dmcg DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.133 [XNIO-1 task-1] BMqRiG0IRuioIwQ0k0dmcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.135 [XNIO-1 task-1] _EOf4m-ISVeCLc2HeGV2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.135 [XNIO-1 task-1] _EOf4m-ISVeCLc2HeGV2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.135 [XNIO-1 task-1] _EOf4m-ISVeCLc2HeGV2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.135 [XNIO-1 task-1] _EOf4m-ISVeCLc2HeGV2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.135 [XNIO-1 task-1] _EOf4m-ISVeCLc2HeGV2YA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.136 [XNIO-1 task-1] qgZKHp3PRfmXlt1AGxIkdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.136 [XNIO-1 task-1] qgZKHp3PRfmXlt1AGxIkdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.137 [XNIO-1 task-1] qgZKHp3PRfmXlt1AGxIkdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +08:11:50.137 [XNIO-1 task-1] qgZKHp3PRfmXlt1AGxIkdA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:50.137 [XNIO-1 task-1] qgZKHp3PRfmXlt1AGxIkdA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +08:11:50.142 [XNIO-1 task-1] yOwGYVsNQ1-gfkO6XIhmYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.142 [XNIO-1 task-1] yOwGYVsNQ1-gfkO6XIhmYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.142 [XNIO-1 task-1] yOwGYVsNQ1-gfkO6XIhmYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +08:11:50.142 [XNIO-1 task-1] yOwGYVsNQ1-gfkO6XIhmYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.142 [XNIO-1 task-1] yOwGYVsNQ1-gfkO6XIhmYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:50.144 [XNIO-1 task-1] EjL_SdyaR2muUQpNyYrhBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.144 [XNIO-1 task-1] EjL_SdyaR2muUQpNyYrhBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.144 [XNIO-1 task-1] EjL_SdyaR2muUQpNyYrhBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.144 [XNIO-1 task-1] EjL_SdyaR2muUQpNyYrhBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.145 [XNIO-1 task-1] EjL_SdyaR2muUQpNyYrhBA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.145 [XNIO-1 task-1] EjL_SdyaR2muUQpNyYrhBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.146 [XNIO-1 task-1] 6tvizrc2QeecD7ynAwVPgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.146 [XNIO-1 task-1] 6tvizrc2QeecD7ynAwVPgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.146 [XNIO-1 task-1] 6tvizrc2QeecD7ynAwVPgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.146 [XNIO-1 task-1] 6tvizrc2QeecD7ynAwVPgA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:50.150 [XNIO-1 task-1] CMpTzagZRbSU6ORPMoSa3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.150 [XNIO-1 task-1] CMpTzagZRbSU6ORPMoSa3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +08:11:50.150 [XNIO-1 task-1] CMpTzagZRbSU6ORPMoSa3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +08:11:50.150 [XNIO-1 task-1] CMpTzagZRbSU6ORPMoSa3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/77db8c0b-1378-4a85-95fa-a37d91473880, base path is set to: null +08:11:50.150 [XNIO-1 task-1] CMpTzagZRbSU6ORPMoSa3g DEBUG com.networknt.schema.TypeValidator debug - validate( "77db8c0b-1378-4a85-95fa-a37d91473880", "77db8c0b-1378-4a85-95fa-a37d91473880", refreshToken) +08:11:50.151 [XNIO-1 task-1] CMpTzagZRbSU6ORPMoSa3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 77db8c0b-1378-4a85-95fa-a37d91473880 is not found.","severity":"ERROR"} +08:11:50.152 [XNIO-1 task-1] CCvgNZrKTb64_d3MeC0akw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.152 [XNIO-1 task-1] CCvgNZrKTb64_d3MeC0akw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.152 [XNIO-1 task-1] CCvgNZrKTb64_d3MeC0akw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +08:11:50.152 [XNIO-1 task-1] CCvgNZrKTb64_d3MeC0akw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.301 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3a49a89d +08:11:51.307 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2ac1a6fc +08:11:51.314 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3a49a89d +08:11:51.326 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1e247dee +08:11:51.457 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:dda0f829 +08:11:51.520 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1e247dee +08:11:51.537 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2ac1a6fc +08:11:51.566 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1e247dee +08:11:51.591 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:dda0f829 +08:11:51.611 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4b22663a +08:11:51.612 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4b22663a +08:11:51.623 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4b22663a +08:11:51.640 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ff32a5df-4eba-4ba7-b4aa-9739544826bb +08:11:51.687 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4b22663a +08:11:51.703 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c036796-482a-4b1d-afaa-ea49ab736b5c +08:11:51.704 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c036796-482a-4b1d-afaa-ea49ab736b5c +08:11:51.720 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5c036796-482a-4b1d-afaa-ea49ab736b5c +08:11:51.734 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3e5f13af-5f71-4ed8-bb6e-f9ef25ec3543 +08:11:51.765 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ff32a5df-4eba-4ba7-b4aa-9739544826bb +08:11:51.817 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4b2dae6a-e742-431d-a25a-7c2502b2d0e5 +08:11:51.918 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e99aaf5f +08:11:51.919 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e99aaf5f +08:11:51.929 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e99aaf5f +08:11:51.939 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e99aaf5f +08:11:52.028 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9d5dc702-1829-407f-a8b6-d5dd2f8726d5 +08:11:52.041 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9d5dc702-1829-407f-a8b6-d5dd2f8726d5 +08:11:52.278 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:82e6fbaa-3b5f-4dde-80b9-8c98fd590f7d +08:11:52.333 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:820d8b42 +08:11:52.366 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:820d8b42 +08:11:52.401 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:820d8b42 +08:11:52.484 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:820d8b42 +08:11:52.508 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:346a77af +08:11:52.509 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:346a77af +08:11:52.521 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e9ba52fe +08:11:52.579 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d016232f-1a56-455b-a2a2-709b17cf394b +08:11:52.629 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e9ba52fe +08:11:52.642 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:346a77af +08:11:52.651 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a6a4c752-f4ce-4102-84c6-27693d649bde +08:11:52.652 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a6a4c752-f4ce-4102-84c6-27693d649bde +08:11:52.676 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e42a0eab-5c43-499d-84f1-72ce8e37707e +08:11:52.714 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:db6b6cb9-65db-4de2-af6b-b917ee732f62 +08:11:52.716 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:db6b6cb9-65db-4de2-af6b-b917ee732f62 +08:11:52.732 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:737e61f4-e1ff-42b2-a6f0-44670c50a90c +08:11:52.737 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:db6b6cb9-65db-4de2-af6b-b917ee732f62 +08:11:52.778 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e9ba52fe +08:11:52.840 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:346a77af +08:11:52.862 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:346a77af +08:11:52.944 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2309fe6e-2907-44fb-bcd1-16a5019d23c0 +08:11:52.996 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3315f844 +08:11:52.997 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3315f844 diff --git a/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..bf3ec3d --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-service-1.log @@ -0,0 +1,2561 @@ +08:11:46.169 [XNIO-1 task-2] MBjlzHl4Q6O-EmMDAPKNyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65b2e657 +08:11:46.171 [XNIO-1 task-2] b-F_aN9kQe-3VV9jNiqYZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65b2e657, base path is set to: null +08:11:46.171 [XNIO-1 task-2] b-F_aN9kQe-3VV9jNiqYZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.171 [XNIO-1 task-2] b-F_aN9kQe-3VV9jNiqYZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.171 [XNIO-1 task-2] b-F_aN9kQe-3VV9jNiqYZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65b2e657, base path is set to: null +08:11:46.171 [XNIO-1 task-2] b-F_aN9kQe-3VV9jNiqYZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "65b2e657", "65b2e657", serviceId) +08:11:46.172 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:65b2e657 +08:11:46.179 [XNIO-1 task-2] 9TbcZOUWTGumKojklXfqug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.179 [XNIO-1 task-2] 9TbcZOUWTGumKojklXfqug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.180 [XNIO-1 task-2] 9TbcZOUWTGumKojklXfqug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.188 [XNIO-1 task-2] cbfrCWZRROOpevMERj50iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/39728dc7 +08:11:46.188 [XNIO-1 task-2] cbfrCWZRROOpevMERj50iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.188 [XNIO-1 task-2] cbfrCWZRROOpevMERj50iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.188 [XNIO-1 task-2] cbfrCWZRROOpevMERj50iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/39728dc7 +08:11:46.190 [XNIO-1 task-2] f4sIhgO-ReC2b7xKDFy4kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/39728dc7, base path is set to: null +08:11:46.191 [XNIO-1 task-2] f4sIhgO-ReC2b7xKDFy4kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.191 [XNIO-1 task-2] f4sIhgO-ReC2b7xKDFy4kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.191 [XNIO-1 task-2] f4sIhgO-ReC2b7xKDFy4kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/39728dc7, base path is set to: null +08:11:46.191 [XNIO-1 task-2] f4sIhgO-ReC2b7xKDFy4kg DEBUG com.networknt.schema.TypeValidator debug - validate( "39728dc7", "39728dc7", serviceId) +08:11:46.193 [XNIO-1 task-2] RcNDJI49Sx2Fah2Nkyprgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.193 [XNIO-1 task-2] RcNDJI49Sx2Fah2Nkyprgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.193 [XNIO-1 task-2] RcNDJI49Sx2Fah2Nkyprgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.193 [XNIO-1 task-2] RcNDJI49Sx2Fah2Nkyprgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c30277d-c0c6-4bdb-aa40-5e484c66a55f", {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG com.networknt.schema.TypeValidator debug - validate( "39728dc7", {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.198 [XNIO-1 task-2] S4eT__IPSaapb4SLa9rznw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39728dc7","serviceName":"f5aea36e-0336-4dd4-995e-2792b3a2","serviceDesc":"4c30277d-c0c6-4bdb-aa40-5e484c66a55f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.204 [XNIO-1 task-2] M8KeuY_bRSeoJ9hkxvMHYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/39728dc7 +08:11:46.204 [XNIO-1 task-2] M8KeuY_bRSeoJ9hkxvMHYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.204 [XNIO-1 task-2] M8KeuY_bRSeoJ9hkxvMHYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.204 [XNIO-1 task-2] M8KeuY_bRSeoJ9hkxvMHYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/39728dc7 +08:11:46.211 [XNIO-1 task-2] ygJ2lkL2TfisyXcqiZZssg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.211 [XNIO-1 task-2] ygJ2lkL2TfisyXcqiZZssg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.211 [XNIO-1 task-2] ygJ2lkL2TfisyXcqiZZssg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.211 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c10dd78 +08:11:46.212 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c10dd78 +08:11:46.218 [XNIO-1 task-2] La9AAFBrRbODFP8vHLft4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.218 [XNIO-1 task-2] La9AAFBrRbODFP8vHLft4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.218 [XNIO-1 task-2] La9AAFBrRbODFP8vHLft4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.219 [XNIO-1 task-2] La9AAFBrRbODFP8vHLft4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.225 [XNIO-1 task-2] EnDyrP28TzC9t9aGIqMcfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.225 [XNIO-1 task-2] EnDyrP28TzC9t9aGIqMcfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.225 [XNIO-1 task-2] EnDyrP28TzC9t9aGIqMcfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.234 [XNIO-1 task-2] 9tKMWdcnQYi2Nq3c6gXkRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.234 [XNIO-1 task-2] 9tKMWdcnQYi2Nq3c6gXkRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.234 [XNIO-1 task-2] 9tKMWdcnQYi2Nq3c6gXkRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.241 [XNIO-1 task-2] iWVVA46eTgOIo6-5fOt7Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dcf25189 +08:11:46.241 [XNIO-1 task-2] iWVVA46eTgOIo6-5fOt7Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.241 [XNIO-1 task-2] iWVVA46eTgOIo6-5fOt7Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.241 [XNIO-1 task-2] iWVVA46eTgOIo6-5fOt7Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dcf25189 +08:11:46.244 [XNIO-1 task-2] 8-0149CRSXWPGiVmKkHp8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dcf25189, base path is set to: null +08:11:46.245 [XNIO-1 task-2] 8-0149CRSXWPGiVmKkHp8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.245 [XNIO-1 task-2] 8-0149CRSXWPGiVmKkHp8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.245 [XNIO-1 task-2] 8-0149CRSXWPGiVmKkHp8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dcf25189, base path is set to: null +08:11:46.245 [XNIO-1 task-2] 8-0149CRSXWPGiVmKkHp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "dcf25189", "dcf25189", serviceId) +08:11:46.252 [XNIO-1 task-2] 3jR8QQuUQ7aEoY3dmd4wfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0f15663 +08:11:46.252 [XNIO-1 task-2] 3jR8QQuUQ7aEoY3dmd4wfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.252 [XNIO-1 task-2] 3jR8QQuUQ7aEoY3dmd4wfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.252 [XNIO-1 task-2] 3jR8QQuUQ7aEoY3dmd4wfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0f15663 +08:11:46.256 [XNIO-1 task-2] SpuNgGGkRk-h_wNZbQo1_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2c10dd78, base path is set to: null +08:11:46.256 [XNIO-1 task-2] SpuNgGGkRk-h_wNZbQo1_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.256 [XNIO-1 task-2] SpuNgGGkRk-h_wNZbQo1_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.256 [XNIO-1 task-2] SpuNgGGkRk-h_wNZbQo1_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2c10dd78, base path is set to: null +08:11:46.256 [XNIO-1 task-2] SpuNgGGkRk-h_wNZbQo1_g DEBUG com.networknt.schema.TypeValidator debug - validate( "2c10dd78", "2c10dd78", serviceId) +08:11:46.257 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2c10dd78 +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "af2dff08-3ba4-4f0b-999e-022d5dca0f7e", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a0f15663", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.273 [XNIO-1 task-2] OrtPUIiFRzu0aNFHAC3c5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.285 [XNIO-1 task-2] 0jdo-BwfQm-goUx8yLcaiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.285 [XNIO-1 task-2] 0jdo-BwfQm-goUx8yLcaiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.286 [XNIO-1 task-2] 0jdo-BwfQm-goUx8yLcaiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.299 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.299 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.300 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.300 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.300 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.300 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG com.networknt.schema.TypeValidator debug - validate( "af2dff08-3ba4-4f0b-999e-022d5dca0f7e", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.300 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG com.networknt.schema.TypeValidator debug - validate( "a0f15663", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.300 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.300 [XNIO-1 task-2] q0LPcSHLR3yAmIHdpOzN0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.308 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:942aeace-981a-48c2-99f8-f9dbfe22fbba +08:11:46.314 [XNIO-1 task-2] MonYEUiKSAyc52oMs-_Kow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.319 [XNIO-1 task-2] MonYEUiKSAyc52oMs-_Kow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.319 [XNIO-1 task-2] MonYEUiKSAyc52oMs-_Kow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.319 [XNIO-1 task-2] MonYEUiKSAyc52oMs-_Kow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.327 [XNIO-1 task-2] nw_PiUUcSQiHeAxoW_bnaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.327 [XNIO-1 task-2] nw_PiUUcSQiHeAxoW_bnaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.327 [XNIO-1 task-2] nw_PiUUcSQiHeAxoW_bnaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.343 [XNIO-1 task-2] sL-Cz5u6SxyQSGOAoU_GbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.343 [XNIO-1 task-2] sL-Cz5u6SxyQSGOAoU_GbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.343 [XNIO-1 task-2] sL-Cz5u6SxyQSGOAoU_GbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.343 [XNIO-1 task-2] sL-Cz5u6SxyQSGOAoU_GbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.351 [XNIO-1 task-2] QIxsWgkRRWOyUyirAzwdOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/04c6468d, base path is set to: null +08:11:46.351 [XNIO-1 task-2] QIxsWgkRRWOyUyirAzwdOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.351 [XNIO-1 task-2] QIxsWgkRRWOyUyirAzwdOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.351 [XNIO-1 task-2] QIxsWgkRRWOyUyirAzwdOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/04c6468d, base path is set to: null +08:11:46.352 [XNIO-1 task-2] QIxsWgkRRWOyUyirAzwdOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c6468d", "04c6468d", serviceId) +08:11:46.355 [XNIO-1 task-2] SawDAsi2Qg2NuwDFroR47Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.355 [XNIO-1 task-2] SawDAsi2Qg2NuwDFroR47Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.355 [XNIO-1 task-2] SawDAsi2Qg2NuwDFroR47Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.372 [XNIO-1 task-2] -bxo5BRPRT-zE-G6_vdIHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.372 [XNIO-1 task-2] -bxo5BRPRT-zE-G6_vdIHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.372 [XNIO-1 task-2] -bxo5BRPRT-zE-G6_vdIHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.390 [XNIO-1 task-2] vd4mFrEwQyGgu9ZQlkdM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/085ce6c0 +08:11:46.390 [XNIO-1 task-2] vd4mFrEwQyGgu9ZQlkdM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.390 [XNIO-1 task-2] vd4mFrEwQyGgu9ZQlkdM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.390 [XNIO-1 task-2] vd4mFrEwQyGgu9ZQlkdM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/085ce6c0 +08:11:46.392 [XNIO-1 task-2] ocL4VAcwQRid3LAtCBMMEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/085ce6c0, base path is set to: null +08:11:46.392 [XNIO-1 task-2] ocL4VAcwQRid3LAtCBMMEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.392 [XNIO-1 task-2] ocL4VAcwQRid3LAtCBMMEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.393 [XNIO-1 task-2] ocL4VAcwQRid3LAtCBMMEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/085ce6c0, base path is set to: null +08:11:46.393 [XNIO-1 task-2] ocL4VAcwQRid3LAtCBMMEw DEBUG com.networknt.schema.TypeValidator debug - validate( "085ce6c0", "085ce6c0", serviceId) +08:11:46.394 [XNIO-1 task-2] uAg8WHRqTUiMmAVf2eCLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.394 [XNIO-1 task-2] uAg8WHRqTUiMmAVf2eCLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.395 [XNIO-1 task-2] uAg8WHRqTUiMmAVf2eCLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.411 [XNIO-1 task-2] b42Xdw4PTGyUKqpkgvpBYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.411 [XNIO-1 task-2] b42Xdw4PTGyUKqpkgvpBYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.411 [XNIO-1 task-2] b42Xdw4PTGyUKqpkgvpBYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.412 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ed346242 +08:11:46.432 [XNIO-1 task-2] 3XeHLJ--T2aDTaY3Lokoxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/085ce6c0, base path is set to: null +08:11:46.432 [XNIO-1 task-2] 3XeHLJ--T2aDTaY3Lokoxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.432 [XNIO-1 task-2] 3XeHLJ--T2aDTaY3Lokoxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.432 [XNIO-1 task-2] 3XeHLJ--T2aDTaY3Lokoxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/085ce6c0, base path is set to: null +08:11:46.432 [XNIO-1 task-2] 3XeHLJ--T2aDTaY3Lokoxw DEBUG com.networknt.schema.TypeValidator debug - validate( "085ce6c0", "085ce6c0", serviceId) +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cfb90e9d-ee58-4169-8f30-12f9a78731de", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea402c4", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.458 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.459 [XNIO-1 task-2] zfUInLviTfek3Gedi3gWvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.481 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.481 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.481 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.481 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.482 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.482 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG com.networknt.schema.TypeValidator debug - validate( "e48b6760-3b0d-45e6-84b5-f2476466ead3", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.482 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1dbcb916", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.482 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.482 [XNIO-1 task-2] Orp5eYS6SJiswmIOFuCCNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.501 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f303cbad-1651-49b6-bbeb-9f462801b8fe", {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c6468d", {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.502 [XNIO-1 task-2] w3lu4maVSO68e-ihHDi1ZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.527 [XNIO-1 task-2] LNZMuTAWTCm5vXdKYBo5QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ed346242, base path is set to: null +08:11:46.527 [XNIO-1 task-2] LNZMuTAWTCm5vXdKYBo5QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.527 [XNIO-1 task-2] LNZMuTAWTCm5vXdKYBo5QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.527 [XNIO-1 task-2] LNZMuTAWTCm5vXdKYBo5QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ed346242, base path is set to: null +08:11:46.527 [XNIO-1 task-2] LNZMuTAWTCm5vXdKYBo5QA DEBUG com.networknt.schema.TypeValidator debug - validate( "ed346242", "ed346242", serviceId) +08:11:46.534 [XNIO-1 task-2] 7N9WT0NtRIeSqen77TkOcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.534 [XNIO-1 task-2] 7N9WT0NtRIeSqen77TkOcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.534 [XNIO-1 task-2] 7N9WT0NtRIeSqen77TkOcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.534 [XNIO-1 task-2] 7N9WT0NtRIeSqen77TkOcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.542 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.542 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.542 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.542 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.543 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.543 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e48b6760-3b0d-45e6-84b5-f2476466ead3", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.543 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1dbcb916", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.543 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.543 [XNIO-1 task-2] OUw-MuN1Q1ekv6DJti1vcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1dbcb916","serviceName":"c45d0f3b-9d60-4104-a4f4-05f5afd4","serviceDesc":"e48b6760-3b0d-45e6-84b5-f2476466ead3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.559 [XNIO-1 task-2] 1Btwv-vERu-OadniVm8Z1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.559 [XNIO-1 task-2] 1Btwv-vERu-OadniVm8Z1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.559 [XNIO-1 task-2] 1Btwv-vERu-OadniVm8Z1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.559 [XNIO-1 task-2] 1Btwv-vERu-OadniVm8Z1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.569 [XNIO-1 task-2] VIPeo5TKQBif70Lv16ky4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.569 [XNIO-1 task-2] VIPeo5TKQBif70Lv16ky4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.569 [XNIO-1 task-2] VIPeo5TKQBif70Lv16ky4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.570 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fcdbb025 +08:11:46.585 [XNIO-1 task-2] jSZP-GveSI-jiDTMZm6vTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ed346242, base path is set to: null +08:11:46.585 [XNIO-1 task-2] jSZP-GveSI-jiDTMZm6vTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.585 [XNIO-1 task-2] jSZP-GveSI-jiDTMZm6vTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.585 [XNIO-1 task-2] jSZP-GveSI-jiDTMZm6vTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ed346242, base path is set to: null +08:11:46.586 [XNIO-1 task-2] jSZP-GveSI-jiDTMZm6vTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed346242", "ed346242", serviceId) +08:11:46.586 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ed346242 +08:11:46.603 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.603 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.604 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.604 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.604 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.604 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cfb90e9d-ee58-4169-8f30-12f9a78731de", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.604 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea402c4", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.604 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.604 [XNIO-1 task-2] bYXP36-9R0GRVl6eFdQHtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.626 [XNIO-1 task-2] nwc12m0MRiWIqHA2E6v8GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcdbb025 +08:11:46.626 [XNIO-1 task-2] nwc12m0MRiWIqHA2E6v8GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.626 [XNIO-1 task-2] nwc12m0MRiWIqHA2E6v8GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.627 [XNIO-1 task-2] nwc12m0MRiWIqHA2E6v8GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcdbb025 +08:11:46.630 [XNIO-1 task-2] qaif-_ctS9KR5-kd6T0UPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd271b3a, base path is set to: null +08:11:46.630 [XNIO-1 task-2] qaif-_ctS9KR5-kd6T0UPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.630 [XNIO-1 task-2] qaif-_ctS9KR5-kd6T0UPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.630 [XNIO-1 task-2] qaif-_ctS9KR5-kd6T0UPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd271b3a, base path is set to: null +08:11:46.630 [XNIO-1 task-2] qaif-_ctS9KR5-kd6T0UPA DEBUG com.networknt.schema.TypeValidator debug - validate( "fd271b3a", "fd271b3a", serviceId) +08:11:46.633 [XNIO-1 task-2] 2cSSI9QyRVOZBdNGpIV30A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd271b3a +08:11:46.633 [XNIO-1 task-2] 2cSSI9QyRVOZBdNGpIV30A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.633 [XNIO-1 task-2] 2cSSI9QyRVOZBdNGpIV30A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.633 [XNIO-1 task-2] 2cSSI9QyRVOZBdNGpIV30A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd271b3a +08:11:46.635 [XNIO-1 task-2] WVBdM_-3Re2mInZ4x2YtiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.635 [XNIO-1 task-2] WVBdM_-3Re2mInZ4x2YtiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.635 [XNIO-1 task-2] WVBdM_-3Re2mInZ4x2YtiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.654 [XNIO-1 task-2] tQvX2V5mROmDVMHTpOr76g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.654 [XNIO-1 task-2] tQvX2V5mROmDVMHTpOr76g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.654 [XNIO-1 task-2] tQvX2V5mROmDVMHTpOr76g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.656 [XNIO-1 task-2] tQvX2V5mROmDVMHTpOr76g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.661 [XNIO-1 task-2] NumzUthNSrm6SwMbGoyvQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0f15663, base path is set to: null +08:11:46.661 [XNIO-1 task-2] NumzUthNSrm6SwMbGoyvQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.661 [XNIO-1 task-2] NumzUthNSrm6SwMbGoyvQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.661 [XNIO-1 task-2] NumzUthNSrm6SwMbGoyvQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0f15663, base path is set to: null +08:11:46.661 [XNIO-1 task-2] NumzUthNSrm6SwMbGoyvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0f15663", "a0f15663", serviceId) +08:11:46.663 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG com.networknt.schema.TypeValidator debug - validate( "af2dff08-3ba4-4f0b-999e-022d5dca0f7e", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0f15663", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:46.664 [XNIO-1 task-2] 7cKpMN0oQP68RiXwYe6xAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.688 [XNIO-1 task-2] urKnGop_QZK0xwAw9w3M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/45c93f7b +08:11:46.688 [XNIO-1 task-2] urKnGop_QZK0xwAw9w3M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.688 [XNIO-1 task-2] urKnGop_QZK0xwAw9w3M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.688 [XNIO-1 task-2] urKnGop_QZK0xwAw9w3M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/45c93f7b +08:11:46.691 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.691 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.691 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.691 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.692 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.692 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.692 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.692 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ab891ef-f880-4976-990c-bbf7f252", {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.692 [XNIO-1 task-2] b6en-2S1R-ayTtdSn-27Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.705 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1074d9a2-348d-4406-a548-f3bf05902e86 +08:11:46.707 [XNIO-1 task-2] LjTJnNjoRta90tsETws8vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.707 [XNIO-1 task-2] LjTJnNjoRta90tsETws8vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.707 [XNIO-1 task-2] LjTJnNjoRta90tsETws8vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.708 [XNIO-1 task-2] LjTJnNjoRta90tsETws8vg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.708 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1074d9a2-348d-4406-a548-f3bf05902e86 +08:11:46.726 [XNIO-1 task-2] 3pzt9NATRWW4ye5JOb7kNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1dbcb916 +08:11:46.726 [XNIO-1 task-2] 3pzt9NATRWW4ye5JOb7kNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.726 [XNIO-1 task-2] 3pzt9NATRWW4ye5JOb7kNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.727 [XNIO-1 task-2] 3pzt9NATRWW4ye5JOb7kNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1dbcb916 +08:11:46.745 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.745 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.745 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.745 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.745 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.745 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.745 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.746 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a003056-ede9-44f1-9ca7-c9caa125", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.746 [XNIO-1 task-2] eEC1fXLbREGKeDJ-iye_EQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.760 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG com.networknt.schema.TypeValidator debug - validate( "21dd158c-d67b-4774-b5b9-5962eebc", {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.764 [XNIO-1 task-2] B_bjaGQWRQqMITqLMg_j1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"04c6468d","serviceName":"21dd158c-d67b-4774-b5b9-5962eebc","serviceDesc":"f303cbad-1651-49b6-bbeb-9f462801b8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.783 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.783 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.784 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.784 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.784 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.784 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.784 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.784 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG com.networknt.schema.TypeValidator debug - validate( "e8c731a5-105b-42e6-a119-b18f2b8a", {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.784 [XNIO-1 task-2] s7VkubVYQsK_MEwnMIUYfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0f15663","serviceName":"e8c731a5-105b-42e6-a119-b18f2b8a","serviceDesc":"af2dff08-3ba4-4f0b-999e-022d5dca0f7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.797 [XNIO-1 task-2] KkQDKGvvQA2OhEI3tIUehA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.797 [XNIO-1 task-2] KkQDKGvvQA2OhEI3tIUehA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.797 [XNIO-1 task-2] KkQDKGvvQA2OhEI3tIUehA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.813 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.816 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.816 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.817 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.817 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.817 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.817 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.817 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a003056-ede9-44f1-9ca7-c9caa125", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.817 [XNIO-1 task-2] -Cn0MGgoT-aipFlpS-DCJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.836 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.836 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.836 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.837 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.837 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.837 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.837 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.837 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG com.networknt.schema.TypeValidator debug - validate( "7a003056-ede9-44f1-9ca7-c9caa125", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.837 [XNIO-1 task-2] uZSnGC_AQEO0BeETPmlbnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.854 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.854 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.854 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.854 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.855 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.855 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.855 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.855 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG com.networknt.schema.TypeValidator debug - validate( "9778e95b-8e62-4ca9-a9a0-117f95c7", {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.855 [XNIO-1 task-2] yR-wlp1KTUq6WCdJjcR9sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.855 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fcdbb025 +08:11:46.869 [XNIO-1 task-2] _hxqqcEtTLuUooD1kP_zFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.869 [XNIO-1 task-2] _hxqqcEtTLuUooD1kP_zFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.869 [XNIO-1 task-2] _hxqqcEtTLuUooD1kP_zFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.869 [XNIO-1 task-2] _hxqqcEtTLuUooD1kP_zFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.880 [XNIO-1 task-2] qVDPIrDyTfGwc7tFd2qKsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.881 [XNIO-1 task-2] qVDPIrDyTfGwc7tFd2qKsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.881 [XNIO-1 task-2] qVDPIrDyTfGwc7tFd2qKsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.881 [XNIO-1 task-2] qVDPIrDyTfGwc7tFd2qKsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:46.885 [XNIO-1 task-2] J73SSWYpT_2o8b9dCSmTWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.885 [XNIO-1 task-2] J73SSWYpT_2o8b9dCSmTWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.885 [XNIO-1 task-2] J73SSWYpT_2o8b9dCSmTWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.899 [XNIO-1 task-2] 9Dg_FC7CQ5iEQqAP4d-Kpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/749cd2d0, base path is set to: null +08:11:46.899 [XNIO-1 task-2] 9Dg_FC7CQ5iEQqAP4d-Kpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.899 [XNIO-1 task-2] 9Dg_FC7CQ5iEQqAP4d-Kpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:46.899 [XNIO-1 task-2] 9Dg_FC7CQ5iEQqAP4d-Kpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/749cd2d0, base path is set to: null +08:11:46.899 [XNIO-1 task-2] 9Dg_FC7CQ5iEQqAP4d-Kpw DEBUG com.networknt.schema.TypeValidator debug - validate( "749cd2d0", "749cd2d0", serviceId) +08:11:46.922 [XNIO-1 task-2] Ziru0ZZvQDmU8fR7dv_D0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.922 [XNIO-1 task-2] Ziru0ZZvQDmU8fR7dv_D0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.922 [XNIO-1 task-2] Ziru0ZZvQDmU8fR7dv_D0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.928 [XNIO-1 task-2] Ziru0ZZvQDmU8fR7dv_D0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:46.935 [XNIO-1 task-2] dh0xdARxSXu-9k0U0O54vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/45c93f7b +08:11:46.935 [XNIO-1 task-2] dh0xdARxSXu-9k0U0O54vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:46.935 [XNIO-1 task-2] dh0xdARxSXu-9k0U0O54vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:46.935 [XNIO-1 task-2] dh0xdARxSXu-9k0U0O54vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/45c93f7b +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ab891ef-f880-4976-990c-bbf7f252", {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:46.938 [XNIO-1 task-2] uxeQ3EHmQjigXp0-ySgUWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"45c93f7b","serviceName":"5ab891ef-f880-4976-990c-bbf7f252","serviceDesc":"ae9e8a6f-2184-4de4-8acb-17736490a47e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:46.953 [XNIO-1 task-2] U_bd4840Q_CSfOxN_4a62Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.957 [XNIO-1 task-2] U_bd4840Q_CSfOxN_4a62Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.957 [XNIO-1 task-2] U_bd4840Q_CSfOxN_4a62Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.975 [XNIO-1 task-2] WLsAgLNXQWmGRkWuey1C0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:46.978 [XNIO-1 task-2] WLsAgLNXQWmGRkWuey1C0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:46.979 [XNIO-1 task-2] WLsAgLNXQWmGRkWuey1C0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.001 [XNIO-1 task-2] oWm2PivgS66SDpFENH435g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.001 [XNIO-1 task-2] oWm2PivgS66SDpFENH435g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.001 [XNIO-1 task-2] oWm2PivgS66SDpFENH435g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.001 [XNIO-1 task-2] oWm2PivgS66SDpFENH435g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.029 [XNIO-1 task-2] fKutTHthRAG-gwjXS9f7VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1ed6423, base path is set to: null +08:11:47.029 [XNIO-1 task-2] fKutTHthRAG-gwjXS9f7VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.029 [XNIO-1 task-2] fKutTHthRAG-gwjXS9f7VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.029 [XNIO-1 task-2] fKutTHthRAG-gwjXS9f7VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1ed6423, base path is set to: null +08:11:47.029 [XNIO-1 task-2] fKutTHthRAG-gwjXS9f7VA DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ed6423", "c1ed6423", serviceId) +08:11:47.034 [XNIO-1 task-2] LLT4Kbm7R7SOuVl3X1bFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.034 [XNIO-1 task-2] LLT4Kbm7R7SOuVl3X1bFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.034 [XNIO-1 task-2] LLT4Kbm7R7SOuVl3X1bFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.034 [XNIO-1 task-2] LLT4Kbm7R7SOuVl3X1bFeg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.040 [XNIO-1 task-2] siUE01d9T2OgMviyQR4RTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.041 [XNIO-1 task-2] siUE01d9T2OgMviyQR4RTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.041 [XNIO-1 task-2] siUE01d9T2OgMviyQR4RTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.047 [XNIO-1 task-2] we492OEjQZKoNTuSY-3s-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.047 [XNIO-1 task-2] we492OEjQZKoNTuSY-3s-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.047 [XNIO-1 task-2] we492OEjQZKoNTuSY-3s-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.053 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.053 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.053 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.054 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.054 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.054 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG com.networknt.schema.TypeValidator debug - validate( "3c6fbaee-2b39-4663-ba6d-065a1c89d73c", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.054 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ed6423", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.054 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.054 [XNIO-1 task-2] mxH90I1rTPenF_rex7iaDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.059 [XNIO-1 task-2] 4v2t-wI9TlK_rvDMKRI8PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.059 [XNIO-1 task-2] 4v2t-wI9TlK_rvDMKRI8PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.059 [XNIO-1 task-2] 4v2t-wI9TlK_rvDMKRI8PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.059 [XNIO-1 task-2] 4v2t-wI9TlK_rvDMKRI8PA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.066 [XNIO-1 task-2] DnZUCKHwQjCi1S7oxRaiYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.066 [XNIO-1 task-2] DnZUCKHwQjCi1S7oxRaiYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.067 [XNIO-1 task-2] DnZUCKHwQjCi1S7oxRaiYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.067 [XNIO-1 task-2] DnZUCKHwQjCi1S7oxRaiYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.070 [XNIO-1 task-2] JxQamPa_Qwa18mzEBEEh6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.070 [XNIO-1 task-2] JxQamPa_Qwa18mzEBEEh6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.070 [XNIO-1 task-2] JxQamPa_Qwa18mzEBEEh6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.070 [XNIO-1 task-2] JxQamPa_Qwa18mzEBEEh6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.074 [XNIO-1 task-2] N_oNl5hrRM6lEK-lMlUJfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1ed6423 +08:11:47.074 [XNIO-1 task-2] N_oNl5hrRM6lEK-lMlUJfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.074 [XNIO-1 task-2] N_oNl5hrRM6lEK-lMlUJfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.074 [XNIO-1 task-2] N_oNl5hrRM6lEK-lMlUJfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1ed6423 +08:11:47.077 [XNIO-1 task-2] qJl1ElKaQsSFNEZzh4XxTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.077 [XNIO-1 task-2] qJl1ElKaQsSFNEZzh4XxTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.077 [XNIO-1 task-2] qJl1ElKaQsSFNEZzh4XxTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.084 [XNIO-1 task-2] vz5QdDP6T3Sk1YFDNeMh2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1ed6423, base path is set to: null +08:11:47.084 [XNIO-1 task-2] vz5QdDP6T3Sk1YFDNeMh2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.084 [XNIO-1 task-2] vz5QdDP6T3Sk1YFDNeMh2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.084 [XNIO-1 task-2] vz5QdDP6T3Sk1YFDNeMh2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1ed6423, base path is set to: null +08:11:47.084 [XNIO-1 task-2] vz5QdDP6T3Sk1YFDNeMh2w DEBUG com.networknt.schema.TypeValidator debug - validate( "c1ed6423", "c1ed6423", serviceId) +08:11:47.087 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.087 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.087 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.087 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.088 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.088 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.089 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.089 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "00848bba-9e63-4d8a-a293-5076601a", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.089 [XNIO-1 task-2] xj5lUILqQKSobWUo-v9Y8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.096 [XNIO-1 task-2] _v2J9oYVQzusSp5DfOgWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.097 [XNIO-1 task-2] _v2J9oYVQzusSp5DfOgWMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.097 [XNIO-1 task-2] _v2J9oYVQzusSp5DfOgWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.097 [XNIO-1 task-2] _v2J9oYVQzusSp5DfOgWMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.104 [XNIO-1 task-2] gi5sH5yrSXW19EGDAyV9pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/04c6468d, base path is set to: null +08:11:47.104 [XNIO-1 task-2] gi5sH5yrSXW19EGDAyV9pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.104 [XNIO-1 task-2] gi5sH5yrSXW19EGDAyV9pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.104 [XNIO-1 task-2] gi5sH5yrSXW19EGDAyV9pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/04c6468d, base path is set to: null +08:11:47.104 [XNIO-1 task-2] gi5sH5yrSXW19EGDAyV9pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c6468d", "04c6468d", serviceId) +08:11:47.113 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.113 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.113 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.114 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.114 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.114 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG com.networknt.schema.TypeValidator debug - validate( "cfb90e9d-ee58-4169-8f30-12f9a78731de", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.114 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea402c4", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.114 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.114 [XNIO-1 task-2] upt60BqkQZyoGyAgz4M37A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.122 [XNIO-1 task-2] c0IZB_ImTCCy8HklZaOomQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.122 [XNIO-1 task-2] c0IZB_ImTCCy8HklZaOomQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.122 [XNIO-1 task-2] c0IZB_ImTCCy8HklZaOomQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.122 [XNIO-1 task-2] c0IZB_ImTCCy8HklZaOomQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.130 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG com.networknt.schema.TypeValidator debug - validate( "cfb90e9d-ee58-4169-8f30-12f9a78731de", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea402c4", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.131 [XNIO-1 task-2] al5AYdi-R72HGphMbAypRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG com.networknt.schema.TypeValidator debug - validate( "12697a98-3493-4c96-ba4d-e1c01f2def33", {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG com.networknt.schema.TypeValidator debug - validate( "c571b313", {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.138 [XNIO-1 task-2] 3tnMajbvSteHRq8hARaIQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c571b313","serviceName":"56443568-dbab-4a0c-8ca7-2af41463","serviceDesc":"12697a98-3493-4c96-ba4d-e1c01f2def33","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.151 [XNIO-1 task-2] agfX0ZYSRfCwZNPZSj9s7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.151 [XNIO-1 task-2] agfX0ZYSRfCwZNPZSj9s7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.151 [XNIO-1 task-2] agfX0ZYSRfCwZNPZSj9s7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.152 [XNIO-1 task-2] agfX0ZYSRfCwZNPZSj9s7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.158 [XNIO-1 task-2] LEqECepYRbiCVId3kFvmNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c571b313 +08:11:47.158 [XNIO-1 task-2] LEqECepYRbiCVId3kFvmNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.158 [XNIO-1 task-2] LEqECepYRbiCVId3kFvmNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.158 [XNIO-1 task-2] LEqECepYRbiCVId3kFvmNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c571b313 +08:11:47.159 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1074d9a2-348d-4406-a548-f3bf05902e86 +08:11:47.170 [XNIO-1 task-2] E63X8ahCRhyulOJriuajbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd271b3a +08:11:47.170 [XNIO-1 task-2] E63X8ahCRhyulOJriuajbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.170 [XNIO-1 task-2] E63X8ahCRhyulOJriuajbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.170 [XNIO-1 task-2] E63X8ahCRhyulOJriuajbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd271b3a +08:11:47.172 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG com.networknt.schema.TypeValidator debug - validate( "610f68a9-312f-4fc3-839b-4f2b3927", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.173 [XNIO-1 task-2] RnSVfB3WSEC136-RHf_Snw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.179 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.179 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.180 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.180 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.180 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.180 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.180 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.180 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG com.networknt.schema.TypeValidator debug - validate( "060a408e-b747-4be7-bf17-52004a7b", {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.180 [XNIO-1 task-2] oF9PbozwTZ6sVwt7jsVdFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.188 [XNIO-1 task-2] _iUslMFmTMGDgQCqF3ZT-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ea402c4, base path is set to: null +08:11:47.188 [XNIO-1 task-2] _iUslMFmTMGDgQCqF3ZT-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.189 [XNIO-1 task-2] _iUslMFmTMGDgQCqF3ZT-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.189 [XNIO-1 task-2] _iUslMFmTMGDgQCqF3ZT-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ea402c4, base path is set to: null +08:11:47.189 [XNIO-1 task-2] _iUslMFmTMGDgQCqF3ZT-w DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea402c4", "0ea402c4", serviceId) +08:11:47.191 [XNIO-1 task-2] DiUAzS5lRMGlPHo_d6mjGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.191 [XNIO-1 task-2] DiUAzS5lRMGlPHo_d6mjGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.191 [XNIO-1 task-2] DiUAzS5lRMGlPHo_d6mjGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.191 [XNIO-1 task-2] DiUAzS5lRMGlPHo_d6mjGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.196 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.196 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.196 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.197 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.197 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.197 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG com.networknt.schema.TypeValidator debug - validate( "387fa2b0-3ec6-47ef-a564-cca34222b40c", {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.197 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG com.networknt.schema.TypeValidator debug - validate( "fd271b3a", {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.197 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.197 [XNIO-1 task-2] RQBHokuTRbeyn-Um0xZj9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fd271b3a","serviceName":"e37f77a0-bf0d-4c96-bc3c-dffe7f94","serviceDesc":"387fa2b0-3ec6-47ef-a564-cca34222b40c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.203 [XNIO-1 task-2] 4FRIu7nbTcOAQkILvpc3yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ea402c4 +08:11:47.203 [XNIO-1 task-2] 4FRIu7nbTcOAQkILvpc3yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.203 [XNIO-1 task-2] 4FRIu7nbTcOAQkILvpc3yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.203 [XNIO-1 task-2] 4FRIu7nbTcOAQkILvpc3yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ea402c4 +08:11:47.205 [XNIO-1 task-2] 0XzZyfFYTSWuG4sFOmcuug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.205 [XNIO-1 task-2] 0XzZyfFYTSWuG4sFOmcuug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.205 [XNIO-1 task-2] 0XzZyfFYTSWuG4sFOmcuug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.211 [XNIO-1 task-2] ql65flSvSPibb7_R9wJL3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.211 [XNIO-1 task-2] ql65flSvSPibb7_R9wJL3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.212 [XNIO-1 task-2] ql65flSvSPibb7_R9wJL3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.212 [XNIO-1 task-2] ql65flSvSPibb7_R9wJL3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.220 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.220 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.220 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.220 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.220 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.220 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.221 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.221 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a003056-ede9-44f1-9ca7-c9caa125", {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.221 [XNIO-1 task-2] hUsWOiGoQoOu2eadsSPOMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea402c4","serviceName":"7a003056-ede9-44f1-9ca7-c9caa125","serviceDesc":"cfb90e9d-ee58-4169-8f30-12f9a78731de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.230 [XNIO-1 task-2] mQ-uJninSoSfa--4pj6-tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.230 [XNIO-1 task-2] mQ-uJninSoSfa--4pj6-tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.230 [XNIO-1 task-2] mQ-uJninSoSfa--4pj6-tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.230 [XNIO-1 task-2] mQ-uJninSoSfa--4pj6-tA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.240 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.240 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.241 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.241 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.241 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.241 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.241 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.241 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9778e95b-8e62-4ca9-a9a0-117f95c7", {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.241 [XNIO-1 task-2] K8dCzKyEQDqsbIKvB3xMTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcdbb025","serviceName":"9778e95b-8e62-4ca9-a9a0-117f95c7","serviceDesc":"4b99c59d-6e82-4a21-8b05-320346739902","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.241 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fcdbb025 +08:11:47.248 [XNIO-1 task-2] MNzGTZiWRXmvDj3b9vjSRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0f15663, base path is set to: null +08:11:47.248 [XNIO-1 task-2] MNzGTZiWRXmvDj3b9vjSRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.248 [XNIO-1 task-2] MNzGTZiWRXmvDj3b9vjSRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.249 [XNIO-1 task-2] MNzGTZiWRXmvDj3b9vjSRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0f15663, base path is set to: null +08:11:47.249 [XNIO-1 task-2] MNzGTZiWRXmvDj3b9vjSRw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0f15663", "a0f15663", serviceId) +08:11:47.256 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.256 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.256 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.256 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.256 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.256 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG com.networknt.schema.TypeValidator debug - validate( "2efb34a3-b198-4ad7-9246-ecfeb7f386da", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.256 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8745a00", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.257 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.258 [XNIO-1 task-2] iWuAo4rVTeWX88aXCbNQlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.266 [XNIO-1 task-2] 5DA7dbXJRSiLJ8sPIU63Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e31260a8 +08:11:47.266 [XNIO-1 task-2] 5DA7dbXJRSiLJ8sPIU63Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.266 [XNIO-1 task-2] 5DA7dbXJRSiLJ8sPIU63Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.266 [XNIO-1 task-2] 5DA7dbXJRSiLJ8sPIU63Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e31260a8 +08:11:47.272 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.272 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.273 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.273 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.273 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.273 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.275 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.275 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b145a711-2ac8-44f5-b922-818ac288", {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.275 [XNIO-1 task-2] m2SbC_shRL2hgTTugQNhYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG com.networknt.schema.TypeValidator debug - validate( "00848bba-9e63-4d8a-a293-5076601a", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.282 [XNIO-1 task-2] C8iznvVmSnCGEYhab657HA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.291 [XNIO-1 task-2] fZWvO1niTKuFZfUGlwhVMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/45c93f7b, base path is set to: null +08:11:47.291 [XNIO-1 task-2] fZWvO1niTKuFZfUGlwhVMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.291 [XNIO-1 task-2] fZWvO1niTKuFZfUGlwhVMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.291 [XNIO-1 task-2] fZWvO1niTKuFZfUGlwhVMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/45c93f7b, base path is set to: null +08:11:47.292 [XNIO-1 task-2] fZWvO1niTKuFZfUGlwhVMg DEBUG com.networknt.schema.TypeValidator debug - validate( "45c93f7b", "45c93f7b", serviceId) +08:11:47.299 [XNIO-1 task-2] oOLS2fjGT9uozzgcgXFi5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcdbb025 +08:11:47.299 [XNIO-1 task-2] oOLS2fjGT9uozzgcgXFi5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.299 [XNIO-1 task-2] oOLS2fjGT9uozzgcgXFi5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.299 [XNIO-1 task-2] oOLS2fjGT9uozzgcgXFi5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcdbb025 +08:11:47.300 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fcdbb025 +08:11:47.305 [XNIO-1 task-2] 1LlM_WgQSjCAYkhoMOLP2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f9b2169, base path is set to: null +08:11:47.305 [XNIO-1 task-2] 1LlM_WgQSjCAYkhoMOLP2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.305 [XNIO-1 task-2] 1LlM_WgQSjCAYkhoMOLP2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.305 [XNIO-1 task-2] 1LlM_WgQSjCAYkhoMOLP2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f9b2169, base path is set to: null +08:11:47.306 [XNIO-1 task-2] 1LlM_WgQSjCAYkhoMOLP2g DEBUG com.networknt.schema.TypeValidator debug - validate( "0f9b2169", "0f9b2169", serviceId) +08:11:47.308 [XNIO-1 task-2] j1nTQyX0SP26rh4uyAxbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ea402c4 +08:11:47.308 [XNIO-1 task-2] j1nTQyX0SP26rh4uyAxbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.308 [XNIO-1 task-2] j1nTQyX0SP26rh4uyAxbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.308 [XNIO-1 task-2] j1nTQyX0SP26rh4uyAxbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ea402c4 +08:11:47.313 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ee93c038-3d9a-41b3-8c6c-1e7bb1026cd2 +08:11:47.314 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ee93c038-3d9a-41b3-8c6c-1e7bb1026cd2 +08:11:47.314 [XNIO-1 task-2] GWiGVtfjTSqJQJ1FHMBsxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.314 [XNIO-1 task-2] GWiGVtfjTSqJQJ1FHMBsxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.314 [XNIO-1 task-2] GWiGVtfjTSqJQJ1FHMBsxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.314 [XNIO-1 task-2] GWiGVtfjTSqJQJ1FHMBsxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.320 [XNIO-1 task-2] B9o7gO9jQ6G9JX9dq9VfKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.320 [XNIO-1 task-2] B9o7gO9jQ6G9JX9dq9VfKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.320 [XNIO-1 task-2] B9o7gO9jQ6G9JX9dq9VfKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.320 [XNIO-1 task-2] B9o7gO9jQ6G9JX9dq9VfKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.324 [XNIO-1 task-2] wZ94MOr0R_SnYabM5ZKwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.324 [XNIO-1 task-2] wZ94MOr0R_SnYabM5ZKwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.324 [XNIO-1 task-2] wZ94MOr0R_SnYabM5ZKwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.331 [XNIO-1 task-2] OMgqJ9l7TTKFRmz9ygwhXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.331 [XNIO-1 task-2] OMgqJ9l7TTKFRmz9ygwhXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.331 [XNIO-1 task-2] OMgqJ9l7TTKFRmz9ygwhXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.332 [XNIO-1 task-2] OMgqJ9l7TTKFRmz9ygwhXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.343 [XNIO-1 task-2] VsThsz4VS4uk23m2hRfRtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1ed6423 +08:11:47.343 [XNIO-1 task-2] VsThsz4VS4uk23m2hRfRtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.343 [XNIO-1 task-2] VsThsz4VS4uk23m2hRfRtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.343 [XNIO-1 task-2] VsThsz4VS4uk23m2hRfRtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1ed6423 +08:11:47.346 [XNIO-1 task-2] -4vSfh_tTUOxraK1j4KZnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd271b3a, base path is set to: null +08:11:47.347 [XNIO-1 task-2] -4vSfh_tTUOxraK1j4KZnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.347 [XNIO-1 task-2] -4vSfh_tTUOxraK1j4KZnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.347 [XNIO-1 task-2] -4vSfh_tTUOxraK1j4KZnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd271b3a, base path is set to: null +08:11:47.347 [XNIO-1 task-2] -4vSfh_tTUOxraK1j4KZnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fd271b3a", "fd271b3a", serviceId) +08:11:47.349 [XNIO-1 task-2] 0l7Oaj8AQlGAigu42S8iXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.349 [XNIO-1 task-2] 0l7Oaj8AQlGAigu42S8iXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.349 [XNIO-1 task-2] 0l7Oaj8AQlGAigu42S8iXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.349 [XNIO-1 task-2] 0l7Oaj8AQlGAigu42S8iXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.358 [XNIO-1 task-2] XzK5751AQFCDBdrt-mqpiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.358 [XNIO-1 task-2] XzK5751AQFCDBdrt-mqpiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.358 [XNIO-1 task-2] XzK5751AQFCDBdrt-mqpiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.370 [XNIO-1 task-2] NMz-9fQ9S26KNQTdmku72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.370 [XNIO-1 task-2] NMz-9fQ9S26KNQTdmku72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.370 [XNIO-1 task-2] NMz-9fQ9S26KNQTdmku72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.376 [XNIO-1 task-2] 4nlhYUEOTdubkX6DtSr8qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d02cda0 +08:11:47.376 [XNIO-1 task-2] 4nlhYUEOTdubkX6DtSr8qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.376 [XNIO-1 task-2] 4nlhYUEOTdubkX6DtSr8qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.377 [XNIO-1 task-2] 4nlhYUEOTdubkX6DtSr8qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d02cda0 +08:11:47.382 [XNIO-1 task-2] CKrqBCVKR3C8MbvLNPPhHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd271b3a, base path is set to: null +08:11:47.383 [XNIO-1 task-2] CKrqBCVKR3C8MbvLNPPhHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.383 [XNIO-1 task-2] CKrqBCVKR3C8MbvLNPPhHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.383 [XNIO-1 task-2] CKrqBCVKR3C8MbvLNPPhHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd271b3a, base path is set to: null +08:11:47.383 [XNIO-1 task-2] CKrqBCVKR3C8MbvLNPPhHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fd271b3a", "fd271b3a", serviceId) +08:11:47.385 [XNIO-1 task-2] GMVLL3H7TueHBzNSPoGTug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd271b3a +08:11:47.385 [XNIO-1 task-2] GMVLL3H7TueHBzNSPoGTug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.385 [XNIO-1 task-2] GMVLL3H7TueHBzNSPoGTug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.385 [XNIO-1 task-2] GMVLL3H7TueHBzNSPoGTug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd271b3a +08:11:47.390 [XNIO-1 task-2] PV8QaJynSkuSOUnBDL5EPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d40afc03, base path is set to: null +08:11:47.390 [XNIO-1 task-2] PV8QaJynSkuSOUnBDL5EPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.390 [XNIO-1 task-2] PV8QaJynSkuSOUnBDL5EPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.390 [XNIO-1 task-2] PV8QaJynSkuSOUnBDL5EPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d40afc03, base path is set to: null +08:11:47.390 [XNIO-1 task-2] PV8QaJynSkuSOUnBDL5EPw DEBUG com.networknt.schema.TypeValidator debug - validate( "d40afc03", "d40afc03", serviceId) +08:11:47.399 [XNIO-1 task-2] 9Q_a3kBpS1SDNb5NVwQ5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.399 [XNIO-1 task-2] 9Q_a3kBpS1SDNb5NVwQ5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.399 [XNIO-1 task-2] 9Q_a3kBpS1SDNb5NVwQ5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.400 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:be6c4d35 +08:11:47.405 [XNIO-1 task-2] bcb91g3TQH2KctoUgpbEjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/be6c4d35, base path is set to: null +08:11:47.405 [XNIO-1 task-2] bcb91g3TQH2KctoUgpbEjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.405 [XNIO-1 task-2] bcb91g3TQH2KctoUgpbEjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.405 [XNIO-1 task-2] bcb91g3TQH2KctoUgpbEjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/be6c4d35, base path is set to: null +08:11:47.405 [XNIO-1 task-2] bcb91g3TQH2KctoUgpbEjw DEBUG com.networknt.schema.TypeValidator debug - validate( "be6c4d35", "be6c4d35", serviceId) +08:11:47.406 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:be6c4d35 +08:11:47.412 [XNIO-1 task-2] TO3D9L3AS1KbW6V-xutSHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.413 [XNIO-1 task-2] TO3D9L3AS1KbW6V-xutSHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.413 [XNIO-1 task-2] TO3D9L3AS1KbW6V-xutSHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.414 [XNIO-1 task-2] TO3D9L3AS1KbW6V-xutSHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.426 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.426 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.426 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.426 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.426 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.427 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG com.networknt.schema.TypeValidator debug - validate( "2efb34a3-b198-4ad7-9246-ecfeb7f386da", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.427 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG com.networknt.schema.TypeValidator debug - validate( "f8745a00", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.427 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.427 [XNIO-1 task-2] gL4ExRMiR5iKM16esoi2dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8745a00","serviceName":"610f68a9-312f-4fc3-839b-4f2b3927","serviceDesc":"2efb34a3-b198-4ad7-9246-ecfeb7f386da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.434 [XNIO-1 task-2] CXUUaBq8T2anu1o9xYz7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/829682b4 +08:11:47.434 [XNIO-1 task-2] CXUUaBq8T2anu1o9xYz7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.434 [XNIO-1 task-2] CXUUaBq8T2anu1o9xYz7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.434 [XNIO-1 task-2] CXUUaBq8T2anu1o9xYz7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/829682b4 +08:11:47.441 [XNIO-1 task-2] nkeRfpYUS4aGZIB9fExXeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8745a00, base path is set to: null +08:11:47.441 [XNIO-1 task-2] nkeRfpYUS4aGZIB9fExXeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.441 [XNIO-1 task-2] nkeRfpYUS4aGZIB9fExXeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.441 [XNIO-1 task-2] nkeRfpYUS4aGZIB9fExXeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8745a00, base path is set to: null +08:11:47.442 [XNIO-1 task-2] nkeRfpYUS4aGZIB9fExXeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f8745a00", "f8745a00", serviceId) +08:11:47.449 [XNIO-1 task-2] iV8j8tR3TO6gzddbBVFwrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.450 [XNIO-1 task-2] iV8j8tR3TO6gzddbBVFwrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.450 [XNIO-1 task-2] iV8j8tR3TO6gzddbBVFwrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.450 [XNIO-1 task-2] iV8j8tR3TO6gzddbBVFwrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.458 [XNIO-1 task-2] d79C1tAvRuqjT7ReG6BSuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.458 [XNIO-1 task-2] d79C1tAvRuqjT7ReG6BSuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.458 [XNIO-1 task-2] d79C1tAvRuqjT7ReG6BSuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.465 [XNIO-1 task-2] wwxhn_aPTqWvaJ54H3gnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/695b01dd +08:11:47.465 [XNIO-1 task-2] wwxhn_aPTqWvaJ54H3gnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.465 [XNIO-1 task-2] wwxhn_aPTqWvaJ54H3gnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.465 [XNIO-1 task-2] wwxhn_aPTqWvaJ54H3gnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/695b01dd +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG com.networknt.schema.TypeValidator debug - validate( "b145a711-2ac8-44f5-b922-818ac288", {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.468 [XNIO-1 task-2] -SIe2r5VQBy8EM5m5EGbLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f9b2169","serviceName":"b145a711-2ac8-44f5-b922-818ac288","serviceDesc":"d2bc7ce2-426c-4ffb-a06d-48f01ca34a43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.475 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.475 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.475 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.475 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.476 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.476 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.476 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.476 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG com.networknt.schema.TypeValidator debug - validate( "00848bba-9e63-4d8a-a293-5076601a", {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.476 [XNIO-1 task-2] gcZnxkC-T36hDAPnIJRsTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1ed6423","serviceName":"00848bba-9e63-4d8a-a293-5076601a","serviceDesc":"3c6fbaee-2b39-4663-ba6d-065a1c89d73c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.485 [XNIO-1 task-2] HWRVyFvlQCmKYvt0C9ySbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/37b59f21, base path is set to: null +08:11:47.485 [XNIO-1 task-2] HWRVyFvlQCmKYvt0C9ySbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.485 [XNIO-1 task-2] HWRVyFvlQCmKYvt0C9ySbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.485 [XNIO-1 task-2] HWRVyFvlQCmKYvt0C9ySbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/37b59f21, base path is set to: null +08:11:47.485 [XNIO-1 task-2] HWRVyFvlQCmKYvt0C9ySbA DEBUG com.networknt.schema.TypeValidator debug - validate( "37b59f21", "37b59f21", serviceId) +08:11:47.489 [XNIO-1 task-2] h7_sudG0SWyzP78J6Grylw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37b59f21 +08:11:47.489 [XNIO-1 task-2] h7_sudG0SWyzP78J6Grylw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.489 [XNIO-1 task-2] h7_sudG0SWyzP78J6Grylw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.489 [XNIO-1 task-2] h7_sudG0SWyzP78J6Grylw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37b59f21 +08:11:47.497 [XNIO-1 task-2] khrpMrA2SIafQNTLL4_dhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2a840d9e, base path is set to: null +08:11:47.497 [XNIO-1 task-2] khrpMrA2SIafQNTLL4_dhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.497 [XNIO-1 task-2] khrpMrA2SIafQNTLL4_dhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.497 [XNIO-1 task-2] khrpMrA2SIafQNTLL4_dhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2a840d9e, base path is set to: null +08:11:47.497 [XNIO-1 task-2] khrpMrA2SIafQNTLL4_dhA DEBUG com.networknt.schema.TypeValidator debug - validate( "2a840d9e", "2a840d9e", serviceId) +08:11:47.499 [XNIO-1 task-2] OApegONUT2W8WbzMwm2p9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.499 [XNIO-1 task-2] OApegONUT2W8WbzMwm2p9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.499 [XNIO-1 task-2] OApegONUT2W8WbzMwm2p9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.499 [XNIO-1 task-2] OApegONUT2W8WbzMwm2p9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.504 [XNIO-1 task-2] wZH4YGqZSs6DN8_BnVPLlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1ed6423 +08:11:47.504 [XNIO-1 task-2] wZH4YGqZSs6DN8_BnVPLlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.504 [XNIO-1 task-2] wZH4YGqZSs6DN8_BnVPLlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.504 [XNIO-1 task-2] wZH4YGqZSs6DN8_BnVPLlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1ed6423 +08:11:47.510 [XNIO-1 task-2] baIQedmhQtCkHvaXsdqHCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f9b2169, base path is set to: null +08:11:47.510 [XNIO-1 task-2] baIQedmhQtCkHvaXsdqHCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.510 [XNIO-1 task-2] baIQedmhQtCkHvaXsdqHCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.510 [XNIO-1 task-2] baIQedmhQtCkHvaXsdqHCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f9b2169, base path is set to: null +08:11:47.510 [XNIO-1 task-2] baIQedmhQtCkHvaXsdqHCw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f9b2169", "0f9b2169", serviceId) +08:11:47.516 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.516 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.516 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.516 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.516 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.517 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG com.networknt.schema.TypeValidator debug - validate( "53e995e9-b42a-40b1-b812-4fded2714884", {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.517 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG com.networknt.schema.TypeValidator debug - validate( "695b01dd", {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.517 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.517 [XNIO-1 task-2] EDS-Fuf3QyGvRGzK_P84mA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"695b01dd","serviceName":"060a408e-b747-4be7-bf17-52004a7b","serviceDesc":"53e995e9-b42a-40b1-b812-4fded2714884","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.523 [XNIO-1 task-2] 9adoj_b7RcexCD93UzXfAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2a840d9e +08:11:47.523 [XNIO-1 task-2] 9adoj_b7RcexCD93UzXfAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.523 [XNIO-1 task-2] 9adoj_b7RcexCD93UzXfAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.523 [XNIO-1 task-2] 9adoj_b7RcexCD93UzXfAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2a840d9e +08:11:47.525 [XNIO-1 task-2] RXY6UXelSF2M7gi3XoYQgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.525 [XNIO-1 task-2] RXY6UXelSF2M7gi3XoYQgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.526 [XNIO-1 task-2] RXY6UXelSF2M7gi3XoYQgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.526 [XNIO-1 task-2] RXY6UXelSF2M7gi3XoYQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.531 [XNIO-1 task-2] jlyMkY4uS_ysjswNKeLMEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.532 [XNIO-1 task-2] jlyMkY4uS_ysjswNKeLMEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.532 [XNIO-1 task-2] jlyMkY4uS_ysjswNKeLMEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.532 [XNIO-1 task-2] jlyMkY4uS_ysjswNKeLMEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.538 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.538 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.538 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.539 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.539 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.539 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.539 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.539 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG com.networknt.schema.TypeValidator debug - validate( "eb26d91a-d4b7-441d-b1e0-d8d452bb", {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.539 [XNIO-1 task-2] nmkuh6-RRyygGa1Sa9WG1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.544 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.544 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.544 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.544 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.545 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.545 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.545 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:47.545 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "eb26d91a-d4b7-441d-b1e0-d8d452bb", {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:47.545 [XNIO-1 task-2] dRcH2ByiTe26PraqUBtg0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a840d9e","serviceName":"eb26d91a-d4b7-441d-b1e0-d8d452bb","serviceDesc":"353e78f5-0827-4730-b2be-957fde741e89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.551 [XNIO-1 task-2] QC7UOHmkRt-Ud3_nxFUVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2a840d9e, base path is set to: null +08:11:47.551 [XNIO-1 task-2] QC7UOHmkRt-Ud3_nxFUVvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.551 [XNIO-1 task-2] QC7UOHmkRt-Ud3_nxFUVvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.551 [XNIO-1 task-2] QC7UOHmkRt-Ud3_nxFUVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2a840d9e, base path is set to: null +08:11:47.551 [XNIO-1 task-2] QC7UOHmkRt-Ud3_nxFUVvw DEBUG com.networknt.schema.TypeValidator debug - validate( "2a840d9e", "2a840d9e", serviceId) +08:11:47.554 [XNIO-1 task-2] YOpB5Tg0TQ67i_afuEw4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2a840d9e +08:11:47.554 [XNIO-1 task-2] YOpB5Tg0TQ67i_afuEw4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.554 [XNIO-1 task-2] YOpB5Tg0TQ67i_afuEw4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.554 [XNIO-1 task-2] YOpB5Tg0TQ67i_afuEw4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2a840d9e +08:11:47.560 [XNIO-1 task-2] lrciTL85TQyez4rvrKvSnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/695b01dd, base path is set to: null +08:11:47.560 [XNIO-1 task-2] lrciTL85TQyez4rvrKvSnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.560 [XNIO-1 task-2] lrciTL85TQyez4rvrKvSnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.560 [XNIO-1 task-2] lrciTL85TQyez4rvrKvSnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/695b01dd, base path is set to: null +08:11:47.560 [XNIO-1 task-2] lrciTL85TQyez4rvrKvSnw DEBUG com.networknt.schema.TypeValidator debug - validate( "695b01dd", "695b01dd", serviceId) +08:11:47.562 [XNIO-1 task-2] dQ2o0JXnSpi5jbk2M9_dTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/695b01dd +08:11:47.562 [XNIO-1 task-2] dQ2o0JXnSpi5jbk2M9_dTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.562 [XNIO-1 task-2] dQ2o0JXnSpi5jbk2M9_dTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.562 [XNIO-1 task-2] dQ2o0JXnSpi5jbk2M9_dTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/695b01dd +08:11:47.564 [XNIO-1 task-2] OKc43u_UTUOhfkdOmqJcZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/695b01dd, base path is set to: null +08:11:47.564 [XNIO-1 task-2] OKc43u_UTUOhfkdOmqJcZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.564 [XNIO-1 task-2] OKc43u_UTUOhfkdOmqJcZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.565 [XNIO-1 task-2] OKc43u_UTUOhfkdOmqJcZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/695b01dd, base path is set to: null +08:11:47.565 [XNIO-1 task-2] OKc43u_UTUOhfkdOmqJcZw DEBUG com.networknt.schema.TypeValidator debug - validate( "695b01dd", "695b01dd", serviceId) +08:11:47.573 [XNIO-1 task-2] wcipLJ-FR3icHqecBJjqsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.573 [XNIO-1 task-2] wcipLJ-FR3icHqecBJjqsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.573 [XNIO-1 task-2] wcipLJ-FR3icHqecBJjqsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.573 [XNIO-1 task-2] wcipLJ-FR3icHqecBJjqsQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.583 [XNIO-1 task-2] Uk8He1H_Rke_CdCPPxTHvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.583 [XNIO-1 task-2] Uk8He1H_Rke_CdCPPxTHvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.583 [XNIO-1 task-2] Uk8He1H_Rke_CdCPPxTHvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG com.networknt.schema.TypeValidator debug - validate( "bf601f9a-84b4-4f0b-b2a6-fc780e9c431e", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG com.networknt.schema.TypeValidator debug - validate( "3905264d", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.591 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.592 [XNIO-1 task-2] v0udVCDHQaCTdCNFFLjTlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.600 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.601 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.601 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.601 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.601 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.601 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bf601f9a-84b4-4f0b-b2a6-fc780e9c431e", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.602 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3905264d", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.602 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.602 [XNIO-1 task-2] oSZP2ZjbSqqn2ebJXd8dVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3905264d","serviceName":"42851a14-e48a-4fa4-8b1d-e7fb0d18","serviceDesc":"bf601f9a-84b4-4f0b-b2a6-fc780e9c431e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.608 [XNIO-1 task-2] Z3HXtryQRvu2hER0ORYf-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3905264d +08:11:47.608 [XNIO-1 task-2] Z3HXtryQRvu2hER0ORYf-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.608 [XNIO-1 task-2] Z3HXtryQRvu2hER0ORYf-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.608 [XNIO-1 task-2] Z3HXtryQRvu2hER0ORYf-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3905264d +08:11:47.614 [XNIO-1 task-2] 5le4t_QlT7eIr4vK0B84vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.614 [XNIO-1 task-2] 5le4t_QlT7eIr4vK0B84vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.614 [XNIO-1 task-2] 5le4t_QlT7eIr4vK0B84vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.622 [XNIO-1 task-2] PBnm5XjUTHODW5AoQ_Sf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/621c1eb5, base path is set to: null +08:11:47.622 [XNIO-1 task-2] PBnm5XjUTHODW5AoQ_Sf1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.623 [XNIO-1 task-2] PBnm5XjUTHODW5AoQ_Sf1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.623 [XNIO-1 task-2] PBnm5XjUTHODW5AoQ_Sf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/621c1eb5, base path is set to: null +08:11:47.623 [XNIO-1 task-2] PBnm5XjUTHODW5AoQ_Sf1w DEBUG com.networknt.schema.TypeValidator debug - validate( "621c1eb5", "621c1eb5", serviceId) +08:11:47.629 [XNIO-1 task-2] PKCf067KRDmmZLMcWvvhAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.630 [XNIO-1 task-2] PKCf067KRDmmZLMcWvvhAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.630 [XNIO-1 task-2] PKCf067KRDmmZLMcWvvhAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.636 [XNIO-1 task-2] Cfv3LZ-kT7eA4xxncVVchw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.636 [XNIO-1 task-2] Cfv3LZ-kT7eA4xxncVVchw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.636 [XNIO-1 task-2] Cfv3LZ-kT7eA4xxncVVchw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.637 [XNIO-1 task-2] Cfv3LZ-kT7eA4xxncVVchw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.647 [XNIO-1 task-2] nGx1GfCyQPCTGnDIkFhOgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.647 [XNIO-1 task-2] nGx1GfCyQPCTGnDIkFhOgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.647 [XNIO-1 task-2] nGx1GfCyQPCTGnDIkFhOgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.654 [XNIO-1 task-2] g8HNtd2DQxaI8uC8EsA4iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.654 [XNIO-1 task-2] g8HNtd2DQxaI8uC8EsA4iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.655 [XNIO-1 task-2] g8HNtd2DQxaI8uC8EsA4iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.658 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:78a6d612-f689-4cbb-959d-f463712fa921 +08:11:47.659 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae60a541 +08:11:47.659 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:78a6d612-f689-4cbb-959d-f463712fa921 +08:11:47.663 [XNIO-1 task-2] lbTc-Ta6SoCneqEDq3Fclg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae60a541 +08:11:47.663 [XNIO-1 task-2] lbTc-Ta6SoCneqEDq3Fclg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.663 [XNIO-1 task-2] lbTc-Ta6SoCneqEDq3Fclg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.664 [XNIO-1 task-2] lbTc-Ta6SoCneqEDq3Fclg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae60a541 +08:11:47.664 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bc861bc9 +08:11:47.664 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bc861bc9 +08:11:47.666 [XNIO-1 task-2] IpDu5iOXR8OaW6Iud0I2Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.666 [XNIO-1 task-2] IpDu5iOXR8OaW6Iud0I2Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.666 [XNIO-1 task-2] IpDu5iOXR8OaW6Iud0I2Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.666 [XNIO-1 task-2] IpDu5iOXR8OaW6Iud0I2Fg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.672 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.672 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.672 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.672 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.672 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.673 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "90aa2e72-19eb-4795-9e14-ec135d5a517e", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.673 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a444d651", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.673 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.673 [XNIO-1 task-2] _9-HANlxTweQ6AZhA-W-0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.680 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.680 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.681 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.681 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.681 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.681 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG com.networknt.schema.TypeValidator debug - validate( "90aa2e72-19eb-4795-9e14-ec135d5a517e", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.681 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG com.networknt.schema.TypeValidator debug - validate( "a444d651", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.681 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.681 [XNIO-1 task-2] KSJ1ltwQSlC9EssfR_WD9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a444d651","serviceName":"95cac054-95bb-4d69-94d1-d4a3117d","serviceDesc":"90aa2e72-19eb-4795-9e14-ec135d5a517e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.693 [XNIO-1 task-2] 8S5vxJOPTvKKFVNPrJJuMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.693 [XNIO-1 task-2] 8S5vxJOPTvKKFVNPrJJuMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.693 [XNIO-1 task-2] 8S5vxJOPTvKKFVNPrJJuMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.702 [XNIO-1 task-2] pB3xgZG7QsCMxTYoGA6blw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a444d651 +08:11:47.702 [XNIO-1 task-2] pB3xgZG7QsCMxTYoGA6blw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.702 [XNIO-1 task-2] pB3xgZG7QsCMxTYoGA6blw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.702 [XNIO-1 task-2] pB3xgZG7QsCMxTYoGA6blw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a444d651 +08:11:47.710 [XNIO-1 task-2] 9q2GUIZhSKSTEoNZQ99hXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/12315a50, base path is set to: null +08:11:47.711 [XNIO-1 task-2] 9q2GUIZhSKSTEoNZQ99hXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.711 [XNIO-1 task-2] 9q2GUIZhSKSTEoNZQ99hXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.711 [XNIO-1 task-2] 9q2GUIZhSKSTEoNZQ99hXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/12315a50, base path is set to: null +08:11:47.711 [XNIO-1 task-2] 9q2GUIZhSKSTEoNZQ99hXw DEBUG com.networknt.schema.TypeValidator debug - validate( "12315a50", "12315a50", serviceId) +08:11:47.714 [XNIO-1 task-2] lLWz3e4fS5K6s-DciEK0-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.714 [XNIO-1 task-2] lLWz3e4fS5K6s-DciEK0-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.714 [XNIO-1 task-2] lLWz3e4fS5K6s-DciEK0-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.734 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bc861bc9 +08:11:47.737 [XNIO-1 task-2] MCpYLBujT6OK_xxnfxgz0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.737 [XNIO-1 task-2] MCpYLBujT6OK_xxnfxgz0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.737 [XNIO-1 task-2] MCpYLBujT6OK_xxnfxgz0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.737 [XNIO-1 task-2] MCpYLBujT6OK_xxnfxgz0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.743 [XNIO-1 task-2] OkQ1CSJMQLuFLWvdo0tUgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.743 [XNIO-1 task-2] OkQ1CSJMQLuFLWvdo0tUgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.743 [XNIO-1 task-2] OkQ1CSJMQLuFLWvdo0tUgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.749 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.749 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.749 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.749 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.749 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.750 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG com.networknt.schema.TypeValidator debug - validate( "3de001cc-3892-4b5c-86e8-74f6dd9fea77", {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.750 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG com.networknt.schema.TypeValidator debug - validate( "70e328fe", {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.750 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.750 [XNIO-1 task-2] wOyF-8vLTaGP4_s60hxiaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"70e328fe","serviceName":"c8a8de94-9b8d-4749-97be-e86f9395","serviceDesc":"3de001cc-3892-4b5c-86e8-74f6dd9fea77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.756 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.756 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.756 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.757 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.757 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.757 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de2b5d1d-eaf9-4326-aa4f-411af0353c15", {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.757 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e6bfdff8", {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.757 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.757 [XNIO-1 task-2] Yll-FIEARMiH2v-zDQ4VSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6bfdff8","serviceName":"64d714cd-d036-41a1-beda-6f77f6b4","serviceDesc":"de2b5d1d-eaf9-4326-aa4f-411af0353c15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG com.networknt.schema.TypeValidator debug - validate( "3c0a51bc-f876-40bf-bb7f-5aeabd28df2e", {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG com.networknt.schema.TypeValidator debug - validate( "ae60a541", {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.764 [XNIO-1 task-2] nnknpIgMTHSADXeJFOaPbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae60a541","serviceName":"0f9f2e15-2046-4448-a1c4-fc489ef7","serviceDesc":"3c0a51bc-f876-40bf-bb7f-5aeabd28df2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.765 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae60a541 +08:11:47.770 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bc861bc9 +08:11:47.772 [XNIO-1 task-2] TJAe7w4-Tn-RBfRg0KHxDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.772 [XNIO-1 task-2] TJAe7w4-Tn-RBfRg0KHxDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.773 [XNIO-1 task-2] TJAe7w4-Tn-RBfRg0KHxDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.773 [XNIO-1 task-2] TJAe7w4-Tn-RBfRg0KHxDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.778 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.778 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.779 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.779 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.779 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.779 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e24ea2e-5867-4243-8351-ebd0299a2246", {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.779 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG com.networknt.schema.TypeValidator debug - validate( "4a258ccf", {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.779 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.779 [XNIO-1 task-2] OrQjflo2Sd-pbOhBjOKNAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4a258ccf","serviceName":"48ec6403-1fd5-48e5-a37c-59094ece","serviceDesc":"9e24ea2e-5867-4243-8351-ebd0299a2246","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.784 [XNIO-1 task-2] lgS2cvv3T1uDCEFtIqClKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.784 [XNIO-1 task-2] lgS2cvv3T1uDCEFtIqClKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.785 [XNIO-1 task-2] lgS2cvv3T1uDCEFtIqClKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.791 [XNIO-1 task-2] 4t2-_b9QT1y2TLWar03MBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae60a541, base path is set to: null +08:11:47.792 [XNIO-1 task-2] 4t2-_b9QT1y2TLWar03MBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.792 [XNIO-1 task-2] 4t2-_b9QT1y2TLWar03MBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.792 [XNIO-1 task-2] 4t2-_b9QT1y2TLWar03MBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae60a541, base path is set to: null +08:11:47.792 [XNIO-1 task-2] 4t2-_b9QT1y2TLWar03MBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ae60a541", "ae60a541", serviceId) +08:11:47.793 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ae60a541 +08:11:47.801 [XNIO-1 task-2] G5TJAPzbS7SCPYK_xDgHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.801 [XNIO-1 task-2] G5TJAPzbS7SCPYK_xDgHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.801 [XNIO-1 task-2] G5TJAPzbS7SCPYK_xDgHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.810 [XNIO-1 task-2] a1ctMpgXRUGO6qPydu01lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/70e328fe, base path is set to: null +08:11:47.810 [XNIO-1 task-2] a1ctMpgXRUGO6qPydu01lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.810 [XNIO-1 task-2] a1ctMpgXRUGO6qPydu01lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.810 [XNIO-1 task-2] a1ctMpgXRUGO6qPydu01lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/70e328fe, base path is set to: null +08:11:47.810 [XNIO-1 task-2] a1ctMpgXRUGO6qPydu01lA DEBUG com.networknt.schema.TypeValidator debug - validate( "70e328fe", "70e328fe", serviceId) +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG com.networknt.schema.TypeValidator debug - validate( "aae8387d-5b9e-40b5-8cc8-9c3d659d479f", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG com.networknt.schema.TypeValidator debug - validate( "12315a50", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.819 [XNIO-1 task-2] ssRVdg07Sfeup6ZkS1w06g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.825 [XNIO-1 task-2] aSGkG6q3SUa7VluVpXjEbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.825 [XNIO-1 task-2] aSGkG6q3SUa7VluVpXjEbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.825 [XNIO-1 task-2] aSGkG6q3SUa7VluVpXjEbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.826 [XNIO-1 task-2] aSGkG6q3SUa7VluVpXjEbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.838 [XNIO-1 task-2] -U2HJMLzSF2avAn4xPxZeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.838 [XNIO-1 task-2] -U2HJMLzSF2avAn4xPxZeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.838 [XNIO-1 task-2] -U2HJMLzSF2avAn4xPxZeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.838 [XNIO-1 task-2] -U2HJMLzSF2avAn4xPxZeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.845 [XNIO-1 task-2] 3NmbpMnFRdyksKAJ6UVciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a258ccf +08:11:47.845 [XNIO-1 task-2] 3NmbpMnFRdyksKAJ6UVciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.845 [XNIO-1 task-2] 3NmbpMnFRdyksKAJ6UVciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.845 [XNIO-1 task-2] 3NmbpMnFRdyksKAJ6UVciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a258ccf +08:11:47.853 [XNIO-1 task-2] ubGTkbMtSlqeA7OYyOppAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.853 [XNIO-1 task-2] ubGTkbMtSlqeA7OYyOppAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.853 [XNIO-1 task-2] ubGTkbMtSlqeA7OYyOppAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.862 [XNIO-1 task-2] lZfam6vgRhOKpaFOTpHgqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.862 [XNIO-1 task-2] lZfam6vgRhOKpaFOTpHgqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.862 [XNIO-1 task-2] lZfam6vgRhOKpaFOTpHgqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.869 [XNIO-1 task-2] 7H4GLKC8QuCbT4LQtoFkiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.870 [XNIO-1 task-2] 7H4GLKC8QuCbT4LQtoFkiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.870 [XNIO-1 task-2] 7H4GLKC8QuCbT4LQtoFkiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.877 [XNIO-1 task-2] I8SrvaBZQcyq6eEa4IkOOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6bfdff8, base path is set to: null +08:11:47.877 [XNIO-1 task-2] I8SrvaBZQcyq6eEa4IkOOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.877 [XNIO-1 task-2] I8SrvaBZQcyq6eEa4IkOOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.877 [XNIO-1 task-2] I8SrvaBZQcyq6eEa4IkOOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6bfdff8, base path is set to: null +08:11:47.877 [XNIO-1 task-2] I8SrvaBZQcyq6eEa4IkOOA DEBUG com.networknt.schema.TypeValidator debug - validate( "e6bfdff8", "e6bfdff8", serviceId) +08:11:47.882 [XNIO-1 task-2] iUQEJ8PxSgmqCqOwVclkPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.882 [XNIO-1 task-2] iUQEJ8PxSgmqCqOwVclkPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.882 [XNIO-1 task-2] iUQEJ8PxSgmqCqOwVclkPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.883 [XNIO-1 task-2] iUQEJ8PxSgmqCqOwVclkPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.890 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.890 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.890 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.890 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.890 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.891 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG com.networknt.schema.TypeValidator debug - validate( "eed0c2c5-60a8-4f37-9351-423cf1ef9cdc", {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.891 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG com.networknt.schema.TypeValidator debug - validate( "56bdaaca", {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.891 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.891 [XNIO-1 task-2] fuGLMFGlSbOo4b0i0B1YTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"56bdaaca","serviceName":"2824ecdc-4dcd-42c5-b6de-0538330b","serviceDesc":"eed0c2c5-60a8-4f37-9351-423cf1ef9cdc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.896 [XNIO-1 task-2] iE7n6S_wTVeHDmJVKaCgPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4c102c7c +08:11:47.896 [XNIO-1 task-2] iE7n6S_wTVeHDmJVKaCgPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.896 [XNIO-1 task-2] iE7n6S_wTVeHDmJVKaCgPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.897 [XNIO-1 task-2] iE7n6S_wTVeHDmJVKaCgPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4c102c7c +08:11:47.900 [XNIO-1 task-2] Bj02p5TnQRuAdGGb0tD7KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4c102c7c, base path is set to: null +08:11:47.900 [XNIO-1 task-2] Bj02p5TnQRuAdGGb0tD7KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.900 [XNIO-1 task-2] Bj02p5TnQRuAdGGb0tD7KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.900 [XNIO-1 task-2] Bj02p5TnQRuAdGGb0tD7KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4c102c7c, base path is set to: null +08:11:47.900 [XNIO-1 task-2] Bj02p5TnQRuAdGGb0tD7KA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c102c7c", "4c102c7c", serviceId) +08:11:47.907 [XNIO-1 task-2] uMuNb0zwQ-6uFsn0zZwYvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.907 [XNIO-1 task-2] uMuNb0zwQ-6uFsn0zZwYvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.907 [XNIO-1 task-2] uMuNb0zwQ-6uFsn0zZwYvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.907 [XNIO-1 task-2] uMuNb0zwQ-6uFsn0zZwYvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.915 [XNIO-1 task-2] 15ILiXlMS3O0zjE_K1zjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.915 [XNIO-1 task-2] 15ILiXlMS3O0zjE_K1zjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.915 [XNIO-1 task-2] 15ILiXlMS3O0zjE_K1zjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.916 [XNIO-1 task-2] 15ILiXlMS3O0zjE_K1zjhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.926 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.926 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.927 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.927 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.927 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.927 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG com.networknt.schema.TypeValidator debug - validate( "aae8387d-5b9e-40b5-8cc8-9c3d659d479f", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.927 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG com.networknt.schema.TypeValidator debug - validate( "12315a50", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.927 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.927 [XNIO-1 task-2] 7vMRNxbdTkquijo_3QZXOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12315a50","serviceName":"ad0b3425-6069-4aa6-a3cb-c8d7c5db","serviceDesc":"aae8387d-5b9e-40b5-8cc8-9c3d659d479f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.938 [XNIO-1 task-2] zsp4RTk1QTCL4meCTalL0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.938 [XNIO-1 task-2] zsp4RTk1QTCL4meCTalL0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.939 [XNIO-1 task-2] zsp4RTk1QTCL4meCTalL0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.948 [XNIO-1 task-2] PaIVbOUlTueQ7vGtF1AV9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.948 [XNIO-1 task-2] PaIVbOUlTueQ7vGtF1AV9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.948 [XNIO-1 task-2] PaIVbOUlTueQ7vGtF1AV9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.948 [XNIO-1 task-2] PaIVbOUlTueQ7vGtF1AV9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.959 [XNIO-1 task-2] aroxRk_SS1uT_DBBGoZ_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.959 [XNIO-1 task-2] aroxRk_SS1uT_DBBGoZ_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.959 [XNIO-1 task-2] aroxRk_SS1uT_DBBGoZ_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.965 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.965 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.965 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.965 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.966 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:47.966 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG com.networknt.schema.TypeValidator debug - validate( "f25ae9f5-24f5-478f-a1d0-44dbf009f720", {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:47.966 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG com.networknt.schema.TypeValidator debug - validate( "39fd2fdb", {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:47.966 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:47.966 [XNIO-1 task-2] zeIK5b-_TG-HNVBtxk6MDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39fd2fdb","serviceName":"73a2f3b1-1121-485d-8dd9-1b32d592","serviceDesc":"f25ae9f5-24f5-478f-a1d0-44dbf009f720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:47.973 [XNIO-1 task-2] JCy7qLLcSxaHZtVE8dO1KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.973 [XNIO-1 task-2] JCy7qLLcSxaHZtVE8dO1KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.973 [XNIO-1 task-2] JCy7qLLcSxaHZtVE8dO1KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.980 [XNIO-1 task-2] -d2cXNVwR7mC0I1zeaZKpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ef21fe5 +08:11:47.980 [XNIO-1 task-2] -d2cXNVwR7mC0I1zeaZKpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.980 [XNIO-1 task-2] -d2cXNVwR7mC0I1zeaZKpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.980 [XNIO-1 task-2] -d2cXNVwR7mC0I1zeaZKpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ef21fe5 +08:11:47.986 [XNIO-1 task-2] 21vASFOAT1WxdhEjsPY2SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1703e38, base path is set to: null +08:11:47.986 [XNIO-1 task-2] 21vASFOAT1WxdhEjsPY2SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.986 [XNIO-1 task-2] 21vASFOAT1WxdhEjsPY2SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.986 [XNIO-1 task-2] 21vASFOAT1WxdhEjsPY2SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1703e38, base path is set to: null +08:11:47.986 [XNIO-1 task-2] 21vASFOAT1WxdhEjsPY2SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1703e38", "a1703e38", serviceId) +08:11:47.989 [XNIO-1 task-2] Kk5_eCPjTEqpGdJmBJzLKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be098c10 +08:11:47.989 [XNIO-1 task-2] Kk5_eCPjTEqpGdJmBJzLKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:47.989 [XNIO-1 task-2] Kk5_eCPjTEqpGdJmBJzLKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:47.989 [XNIO-1 task-2] Kk5_eCPjTEqpGdJmBJzLKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be098c10 +08:11:47.992 [XNIO-1 task-2] EzENnv-aQWuS_G5LuMLINA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.992 [XNIO-1 task-2] EzENnv-aQWuS_G5LuMLINA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.992 [XNIO-1 task-2] EzENnv-aQWuS_G5LuMLINA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:47.999 [XNIO-1 task-2] mjWDWebbQy-wNCbueFSzNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/be098c10, base path is set to: null +08:11:47.999 [XNIO-1 task-2] mjWDWebbQy-wNCbueFSzNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:47.999 [XNIO-1 task-2] mjWDWebbQy-wNCbueFSzNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:47.999 [XNIO-1 task-2] mjWDWebbQy-wNCbueFSzNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/be098c10, base path is set to: null +08:11:48.000 [XNIO-1 task-2] mjWDWebbQy-wNCbueFSzNA DEBUG com.networknt.schema.TypeValidator debug - validate( "be098c10", "be098c10", serviceId) +08:11:48.004 [XNIO-1 task-2] X4lRLOnMTIqrvd9Aa16Org DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be098c10 +08:11:48.004 [XNIO-1 task-2] X4lRLOnMTIqrvd9Aa16Org DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.004 [XNIO-1 task-2] X4lRLOnMTIqrvd9Aa16Org DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.004 [XNIO-1 task-2] X4lRLOnMTIqrvd9Aa16Org DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be098c10 +08:11:48.028 [XNIO-1 task-2] yyZEFGeaR06kJ8dpUN-CzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4937f286, base path is set to: null +08:11:48.029 [XNIO-1 task-2] yyZEFGeaR06kJ8dpUN-CzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.029 [XNIO-1 task-2] yyZEFGeaR06kJ8dpUN-CzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.029 [XNIO-1 task-2] yyZEFGeaR06kJ8dpUN-CzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4937f286, base path is set to: null +08:11:48.029 [XNIO-1 task-2] yyZEFGeaR06kJ8dpUN-CzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4937f286", "4937f286", serviceId) +08:11:48.038 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:54413f22-b7ca-4fad-b67d-1821627e5811 +08:11:48.046 [XNIO-1 task-2] Hjm2QGQLQ8Wfa5pJIFMovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.046 [XNIO-1 task-2] Hjm2QGQLQ8Wfa5pJIFMovg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.047 [XNIO-1 task-2] Hjm2QGQLQ8Wfa5pJIFMovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.047 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:829d345a +08:11:48.047 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:829d345a +08:11:48.080 [XNIO-1 task-2] cY5GVexXTm-5_cZXkAi2XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.080 [XNIO-1 task-2] cY5GVexXTm-5_cZXkAi2XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.080 [XNIO-1 task-2] cY5GVexXTm-5_cZXkAi2XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.080 [XNIO-1 task-2] cY5GVexXTm-5_cZXkAi2XQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.087 [XNIO-1 task-2] 9chpksKaTmmk8WzM6zUo9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.087 [XNIO-1 task-2] 9chpksKaTmmk8WzM6zUo9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.087 [XNIO-1 task-2] 9chpksKaTmmk8WzM6zUo9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.087 [XNIO-1 task-2] 9chpksKaTmmk8WzM6zUo9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.094 [XNIO-1 task-2] vqxioBPfRK6_N44BJivpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/56bdaaca +08:11:48.094 [XNIO-1 task-2] vqxioBPfRK6_N44BJivpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.094 [XNIO-1 task-2] vqxioBPfRK6_N44BJivpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.094 [XNIO-1 task-2] vqxioBPfRK6_N44BJivpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/56bdaaca +08:11:48.101 [XNIO-1 task-2] GvHMQSitTjuqSjS9nOCxSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee70186c, base path is set to: null +08:11:48.101 [XNIO-1 task-2] GvHMQSitTjuqSjS9nOCxSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.101 [XNIO-1 task-2] GvHMQSitTjuqSjS9nOCxSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.102 [XNIO-1 task-2] GvHMQSitTjuqSjS9nOCxSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee70186c, base path is set to: null +08:11:48.102 [XNIO-1 task-2] GvHMQSitTjuqSjS9nOCxSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee70186c", "ee70186c", serviceId) +08:11:48.108 [XNIO-1 task-2] Shs4TyEVTvidpMgv3eWhZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.108 [XNIO-1 task-2] Shs4TyEVTvidpMgv3eWhZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.108 [XNIO-1 task-2] Shs4TyEVTvidpMgv3eWhZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.119 [XNIO-1 task-2] 1l6JcMBBTzud_7oNWTP5Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.119 [XNIO-1 task-2] 1l6JcMBBTzud_7oNWTP5Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.120 [XNIO-1 task-2] 1l6JcMBBTzud_7oNWTP5Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.120 [XNIO-1 task-2] 1l6JcMBBTzud_7oNWTP5Iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.125 [XNIO-1 task-2] CEI4qgh3Riy38hDmAQPy_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12315a50 +08:11:48.125 [XNIO-1 task-2] CEI4qgh3Riy38hDmAQPy_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.125 [XNIO-1 task-2] CEI4qgh3Riy38hDmAQPy_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.125 [XNIO-1 task-2] CEI4qgh3Riy38hDmAQPy_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12315a50 +08:11:48.133 [XNIO-1 task-2] Qn8qkIb5R-eNLG4raMZjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.133 [XNIO-1 task-2] Qn8qkIb5R-eNLG4raMZjoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.133 [XNIO-1 task-2] Qn8qkIb5R-eNLG4raMZjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.133 [XNIO-1 task-2] Qn8qkIb5R-eNLG4raMZjoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.139 [XNIO-1 task-2] c81Awby8Qw2aqY5KCW3tOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.140 [XNIO-1 task-2] c81Awby8Qw2aqY5KCW3tOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.140 [XNIO-1 task-2] c81Awby8Qw2aqY5KCW3tOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.140 [XNIO-1 task-2] c81Awby8Qw2aqY5KCW3tOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.143 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:604b908d-6739-4203-8a11-06ecee55f757 +08:11:48.144 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:604b908d-6739-4203-8a11-06ecee55f757 +08:11:48.146 [XNIO-1 task-2] SItAjIW_QymIgAS3ZlIzGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be098c10 +08:11:48.146 [XNIO-1 task-2] SItAjIW_QymIgAS3ZlIzGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.147 [XNIO-1 task-2] SItAjIW_QymIgAS3ZlIzGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.147 [XNIO-1 task-2] SItAjIW_QymIgAS3ZlIzGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be098c10 +08:11:48.159 [XNIO-1 task-2] hk3UsrRETrGQh8dzKJuNRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.159 [XNIO-1 task-2] hk3UsrRETrGQh8dzKJuNRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.159 [XNIO-1 task-2] hk3UsrRETrGQh8dzKJuNRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.164 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:54413f22-b7ca-4fad-b67d-1821627e5811 +08:11:48.172 [XNIO-1 task-2] pp8QHDE3QFOcWoTJwlwrKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.172 [XNIO-1 task-2] pp8QHDE3QFOcWoTJwlwrKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.172 [XNIO-1 task-2] pp8QHDE3QFOcWoTJwlwrKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.173 [XNIO-1 task-2] pp8QHDE3QFOcWoTJwlwrKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.182 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:604b908d-6739-4203-8a11-06ecee55f757 +08:11:48.184 [XNIO-1 task-2] TEvwrMhzTTyErmvY-hqncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.185 [XNIO-1 task-2] TEvwrMhzTTyErmvY-hqncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.185 [XNIO-1 task-2] TEvwrMhzTTyErmvY-hqncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.185 [XNIO-1 task-2] TEvwrMhzTTyErmvY-hqncQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.190 [XNIO-1 task-2] VCHvyMnyT7GNSHJ11_Ibsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/39fd2fdb +08:11:48.190 [XNIO-1 task-2] VCHvyMnyT7GNSHJ11_Ibsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.190 [XNIO-1 task-2] VCHvyMnyT7GNSHJ11_Ibsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.190 [XNIO-1 task-2] VCHvyMnyT7GNSHJ11_Ibsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/39fd2fdb +08:11:48.197 [XNIO-1 task-2] yIG9DVFSSJqnDG61a2_mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/258f4923, base path is set to: null +08:11:48.197 [XNIO-1 task-2] yIG9DVFSSJqnDG61a2_mzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.197 [XNIO-1 task-2] yIG9DVFSSJqnDG61a2_mzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.197 [XNIO-1 task-2] yIG9DVFSSJqnDG61a2_mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/258f4923, base path is set to: null +08:11:48.198 [XNIO-1 task-2] yIG9DVFSSJqnDG61a2_mzw DEBUG com.networknt.schema.TypeValidator debug - validate( "258f4923", "258f4923", serviceId) +08:11:48.205 [XNIO-1 task-2] BeJxoWF6QjqGL2gZlVltOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.205 [XNIO-1 task-2] BeJxoWF6QjqGL2gZlVltOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.205 [XNIO-1 task-2] BeJxoWF6QjqGL2gZlVltOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.206 [XNIO-1 task-2] BeJxoWF6QjqGL2gZlVltOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.214 [XNIO-1 task-2] hSvzMFFxT3qt9w6VLmxruA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.214 [XNIO-1 task-2] hSvzMFFxT3qt9w6VLmxruA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.214 [XNIO-1 task-2] hSvzMFFxT3qt9w6VLmxruA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.223 [XNIO-1 task-2] 2QYyboGyQVGSMR1x3FX0DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/189bb082 +08:11:48.223 [XNIO-1 task-2] 2QYyboGyQVGSMR1x3FX0DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.223 [XNIO-1 task-2] 2QYyboGyQVGSMR1x3FX0DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.224 [XNIO-1 task-2] 2QYyboGyQVGSMR1x3FX0DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/189bb082 +08:11:48.226 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1aaedd48-8d09-4b52-9222-3a4516ce9890 +08:11:48.226 [XNIO-1 task-2] sGZoOByZTrWRSEhR5CGjbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.226 [XNIO-1 task-2] sGZoOByZTrWRSEhR5CGjbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.226 [XNIO-1 task-2] sGZoOByZTrWRSEhR5CGjbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.226 [XNIO-1 task-2] sGZoOByZTrWRSEhR5CGjbw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.232 [XNIO-1 task-2] SOT1kKZERr6UnZUFMFO52Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0e2980d, base path is set to: null +08:11:48.232 [XNIO-1 task-2] SOT1kKZERr6UnZUFMFO52Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.232 [XNIO-1 task-2] SOT1kKZERr6UnZUFMFO52Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.232 [XNIO-1 task-2] SOT1kKZERr6UnZUFMFO52Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0e2980d, base path is set to: null +08:11:48.232 [XNIO-1 task-2] SOT1kKZERr6UnZUFMFO52Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f0e2980d", "f0e2980d", serviceId) +08:11:48.241 [XNIO-1 task-2] LglFvIiMSl67WUtQWQ-eEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.242 [XNIO-1 task-2] LglFvIiMSl67WUtQWQ-eEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.242 [XNIO-1 task-2] LglFvIiMSl67WUtQWQ-eEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.242 [XNIO-1 task-2] LglFvIiMSl67WUtQWQ-eEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.251 [XNIO-1 task-2] APAgsUllR62PJk6p2oZ7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.251 [XNIO-1 task-2] APAgsUllR62PJk6p2oZ7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.251 [XNIO-1 task-2] APAgsUllR62PJk6p2oZ7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.251 [XNIO-1 task-2] APAgsUllR62PJk6p2oZ7AA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.256 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2434a021-f547-43b4-887b-ad486ae21563 +08:11:48.256 [XNIO-1 task-2] 5ceuY5fjQrCR80BFrJvHdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.257 [XNIO-1 task-2] 5ceuY5fjQrCR80BFrJvHdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.257 [XNIO-1 task-2] 5ceuY5fjQrCR80BFrJvHdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.257 [XNIO-1 task-2] 5ceuY5fjQrCR80BFrJvHdw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.263 [XNIO-1 task-2] tHDUz-waSz2sNIenwM_UGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.264 [XNIO-1 task-2] tHDUz-waSz2sNIenwM_UGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.264 [XNIO-1 task-2] tHDUz-waSz2sNIenwM_UGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.264 [XNIO-1 task-2] tHDUz-waSz2sNIenwM_UGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.268 [XNIO-1 task-2] fyM8Zo8gRQ-m7RTC43oBUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.269 [XNIO-1 task-2] fyM8Zo8gRQ-m7RTC43oBUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.269 [XNIO-1 task-2] fyM8Zo8gRQ-m7RTC43oBUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.269 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1e920c60 +08:11:48.270 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1e920c60 +08:11:48.275 [XNIO-1 task-2] AD4aJ0AETW6xZFKakFdCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1703e38 +08:11:48.276 [XNIO-1 task-2] AD4aJ0AETW6xZFKakFdCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.276 [XNIO-1 task-2] AD4aJ0AETW6xZFKakFdCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.276 [XNIO-1 task-2] AD4aJ0AETW6xZFKakFdCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1703e38 +08:11:48.277 [XNIO-1 task-2] q8A2MSN-R46Wer3sJX0HSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.278 [XNIO-1 task-2] q8A2MSN-R46Wer3sJX0HSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.278 [XNIO-1 task-2] q8A2MSN-R46Wer3sJX0HSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.285 [XNIO-1 task-2] 3pqse_TrRmyr2Rs1Et8g3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.285 [XNIO-1 task-2] 3pqse_TrRmyr2Rs1Et8g3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.285 [XNIO-1 task-2] 3pqse_TrRmyr2Rs1Et8g3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.285 [XNIO-1 task-2] 3pqse_TrRmyr2Rs1Et8g3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.293 [XNIO-1 task-2] DSI3T4PRQcSLvtasu6aYYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.293 [XNIO-1 task-2] DSI3T4PRQcSLvtasu6aYYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.294 [XNIO-1 task-2] DSI3T4PRQcSLvtasu6aYYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.294 [XNIO-1 task-2] DSI3T4PRQcSLvtasu6aYYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.301 [XNIO-1 task-2] 0YnnO7odQ9OUkLKMiWt4ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/829d345a, base path is set to: null +08:11:48.301 [XNIO-1 task-2] 0YnnO7odQ9OUkLKMiWt4ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.301 [XNIO-1 task-2] 0YnnO7odQ9OUkLKMiWt4ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.301 [XNIO-1 task-2] 0YnnO7odQ9OUkLKMiWt4ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/829d345a, base path is set to: null +08:11:48.302 [XNIO-1 task-2] 0YnnO7odQ9OUkLKMiWt4ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "829d345a", "829d345a", serviceId) +08:11:48.303 [XNIO-1 task-2] UtjIZ0diQf6VaXgzbnxyNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/829d345a +08:11:48.303 [XNIO-1 task-2] UtjIZ0diQf6VaXgzbnxyNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.304 [XNIO-1 task-2] UtjIZ0diQf6VaXgzbnxyNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.304 [XNIO-1 task-2] UtjIZ0diQf6VaXgzbnxyNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/829d345a +08:11:48.304 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:829d345a +08:11:48.309 [XNIO-1 task-2] FKSw18AcSB2Tape8nIlqBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.309 [XNIO-1 task-2] FKSw18AcSB2Tape8nIlqBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.310 [XNIO-1 task-2] FKSw18AcSB2Tape8nIlqBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.310 [XNIO-1 task-2] FKSw18AcSB2Tape8nIlqBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.320 [XNIO-1 task-2] 4SBgawyNRW6kX24aMOnv7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.320 [XNIO-1 task-2] 4SBgawyNRW6kX24aMOnv7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.320 [XNIO-1 task-2] 4SBgawyNRW6kX24aMOnv7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.320 [XNIO-1 task-2] 4SBgawyNRW6kX24aMOnv7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.327 [XNIO-1 task-2] F9pM_G5tSj-uZU_3RqXHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/189bb082, base path is set to: null +08:11:48.328 [XNIO-1 task-2] F9pM_G5tSj-uZU_3RqXHlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.328 [XNIO-1 task-2] F9pM_G5tSj-uZU_3RqXHlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.328 [XNIO-1 task-2] F9pM_G5tSj-uZU_3RqXHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/189bb082, base path is set to: null +08:11:48.328 [XNIO-1 task-2] F9pM_G5tSj-uZU_3RqXHlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "189bb082", "189bb082", serviceId) +08:11:48.330 [XNIO-1 task-2] xVK2wgG-RjSBzcCb3I1sCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.330 [XNIO-1 task-2] xVK2wgG-RjSBzcCb3I1sCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.330 [XNIO-1 task-2] xVK2wgG-RjSBzcCb3I1sCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.330 [XNIO-1 task-2] xVK2wgG-RjSBzcCb3I1sCA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.333 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:04182ff3-75e7-45e8-80b8-b1b7b61b8250 +08:11:48.348 [XNIO-1 task-2] mtthxkbGSCuTI0wPwOJjDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.348 [XNIO-1 task-2] mtthxkbGSCuTI0wPwOJjDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.348 [XNIO-1 task-2] mtthxkbGSCuTI0wPwOJjDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.355 [XNIO-1 task-2] cCQEEnKkSwGbQAz6IZk9JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.355 [XNIO-1 task-2] cCQEEnKkSwGbQAz6IZk9JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.355 [XNIO-1 task-2] cCQEEnKkSwGbQAz6IZk9JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.356 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c8dd7655 +08:11:48.362 [XNIO-1 task-2] 3kkCVxDXRoevnbGilE0Cng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.362 [XNIO-1 task-2] 3kkCVxDXRoevnbGilE0Cng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.362 [XNIO-1 task-2] 3kkCVxDXRoevnbGilE0Cng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.362 [XNIO-1 task-2] 3kkCVxDXRoevnbGilE0Cng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.368 [XNIO-1 task-2] PzGySpWnTze2QUV8jr9Z6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.368 [XNIO-1 task-2] PzGySpWnTze2QUV8jr9Z6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.368 [XNIO-1 task-2] PzGySpWnTze2QUV8jr9Z6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.369 [XNIO-1 task-2] PzGySpWnTze2QUV8jr9Z6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.377 [XNIO-1 task-2] FQu027njTJ6Y79JB5ulr7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.377 [XNIO-1 task-2] FQu027njTJ6Y79JB5ulr7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.377 [XNIO-1 task-2] FQu027njTJ6Y79JB5ulr7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.377 [XNIO-1 task-2] FQu027njTJ6Y79JB5ulr7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.385 [XNIO-1 task-2] 2oI5QBrnTFyiBK82eYcBAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.385 [XNIO-1 task-2] 2oI5QBrnTFyiBK82eYcBAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.386 [XNIO-1 task-2] 2oI5QBrnTFyiBK82eYcBAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.391 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.391 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.391 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.392 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.392 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.392 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.392 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.392 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG com.networknt.schema.TypeValidator debug - validate( "67942675-0f13-4c3a-bfdd-da250c5a", {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.392 [XNIO-1 task-2] t5VlUWHmSOWgBfNRjdYxJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.398 [XNIO-1 task-2] lMJZ4GepT5iZeU-mXvgjFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e920c60, base path is set to: null +08:11:48.399 [XNIO-1 task-2] lMJZ4GepT5iZeU-mXvgjFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1e920c60 +08:11:48.400 [XNIO-1 task-2] lMJZ4GepT5iZeU-mXvgjFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.400 [XNIO-1 task-2] lMJZ4GepT5iZeU-mXvgjFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.400 [XNIO-1 task-2] lMJZ4GepT5iZeU-mXvgjFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1e920c60 +08:11:48.404 [XNIO-1 task-2] u93t7WvSSgSVC7iYilELOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/189bb082, base path is set to: null +08:11:48.404 [XNIO-1 task-2] u93t7WvSSgSVC7iYilELOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.404 [XNIO-1 task-2] u93t7WvSSgSVC7iYilELOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.404 [XNIO-1 task-2] u93t7WvSSgSVC7iYilELOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/189bb082, base path is set to: null +08:11:48.405 [XNIO-1 task-2] u93t7WvSSgSVC7iYilELOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "189bb082", "189bb082", serviceId) +08:11:48.423 [XNIO-1 task-2] 262FK8pxSdSHPFJVJ8A5oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.423 [XNIO-1 task-2] 262FK8pxSdSHPFJVJ8A5oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.423 [XNIO-1 task-2] 262FK8pxSdSHPFJVJ8A5oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.423 [XNIO-1 task-2] 262FK8pxSdSHPFJVJ8A5oA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.426 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d4715d3d +08:11:48.428 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.428 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.428 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.428 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.429 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.429 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.429 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.429 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1b32d18a-5c47-4d63-a9b7-c8caca0f", {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.429 [XNIO-1 task-2] qk2fWk4ASdKqEyMrasRJJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e920c60","serviceName":"1b32d18a-5c47-4d63-a9b7-c8caca0f","serviceDesc":"db79a980-4f86-414e-a894-060aca6bd68e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.429 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1e920c60 +08:11:48.435 [XNIO-1 task-2] r-L8BL7nQoK6mvGg6Z5oSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.435 [XNIO-1 task-2] r-L8BL7nQoK6mvGg6Z5oSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.435 [XNIO-1 task-2] r-L8BL7nQoK6mvGg6Z5oSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.438 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:86a085f4 +08:11:48.439 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:86a085f4 +08:11:48.440 [XNIO-1 task-2] JQpXiuUsReuY7zqLufIuYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/68e0d72e +08:11:48.440 [XNIO-1 task-2] JQpXiuUsReuY7zqLufIuYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.440 [XNIO-1 task-2] JQpXiuUsReuY7zqLufIuYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.441 [XNIO-1 task-2] JQpXiuUsReuY7zqLufIuYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/68e0d72e +08:11:48.443 [XNIO-1 task-2] 7F34SGY0TMqj-0M1dV-4Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e920c60, base path is set to: null +08:11:48.443 [XNIO-1 task-2] 7F34SGY0TMqj-0M1dV-4Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.443 [XNIO-1 task-2] 7F34SGY0TMqj-0M1dV-4Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.443 [XNIO-1 task-2] 7F34SGY0TMqj-0M1dV-4Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e920c60, base path is set to: null +08:11:48.443 [XNIO-1 task-2] 7F34SGY0TMqj-0M1dV-4Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "1e920c60", "1e920c60", serviceId) +08:11:48.446 [XNIO-1 task-2] fkiZCbnkThmCNU61Q4iCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.446 [XNIO-1 task-2] fkiZCbnkThmCNU61Q4iCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.446 [XNIO-1 task-2] fkiZCbnkThmCNU61Q4iCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.452 [XNIO-1 task-2] F7ZPhsV5SR-hoVPXQbF33w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.452 [XNIO-1 task-2] F7ZPhsV5SR-hoVPXQbF33w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.452 [XNIO-1 task-2] F7ZPhsV5SR-hoVPXQbF33w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.452 [XNIO-1 task-2] F7ZPhsV5SR-hoVPXQbF33w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.455 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:86a085f4 +08:11:48.457 [XNIO-1 task-2] Hv2vj4fGRu-ExKwvQ3kX6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8dd7655 +08:11:48.458 [XNIO-1 task-2] Hv2vj4fGRu-ExKwvQ3kX6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.458 [XNIO-1 task-2] Hv2vj4fGRu-ExKwvQ3kX6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.458 [XNIO-1 task-2] Hv2vj4fGRu-ExKwvQ3kX6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8dd7655 +08:11:48.458 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c8dd7655 +08:11:48.463 [XNIO-1 task-2] TGkVrH9vRi-oD5aWRG1Ujg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.463 [XNIO-1 task-2] TGkVrH9vRi-oD5aWRG1Ujg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.463 [XNIO-1 task-2] TGkVrH9vRi-oD5aWRG1Ujg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.463 [XNIO-1 task-2] TGkVrH9vRi-oD5aWRG1Ujg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.468 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d4715d3d +08:11:48.472 [XNIO-1 task-2] g_bsNSH9S462HO_a-D5XIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2396178d, base path is set to: null +08:11:48.472 [XNIO-1 task-2] g_bsNSH9S462HO_a-D5XIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.472 [XNIO-1 task-2] g_bsNSH9S462HO_a-D5XIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.472 [XNIO-1 task-2] g_bsNSH9S462HO_a-D5XIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2396178d, base path is set to: null +08:11:48.472 [XNIO-1 task-2] g_bsNSH9S462HO_a-D5XIw DEBUG com.networknt.schema.TypeValidator debug - validate( "2396178d", "2396178d", serviceId) +08:11:48.477 [XNIO-1 task-2] z4ymvBasQH6uxFjBpQLlhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2396178d +08:11:48.477 [XNIO-1 task-2] z4ymvBasQH6uxFjBpQLlhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.477 [XNIO-1 task-2] z4ymvBasQH6uxFjBpQLlhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.477 [XNIO-1 task-2] z4ymvBasQH6uxFjBpQLlhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2396178d +08:11:48.479 [XNIO-1 task-2] wJvQqVDBT4qtqYl-duNziQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2396178d, base path is set to: null +08:11:48.479 [XNIO-1 task-2] wJvQqVDBT4qtqYl-duNziQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.479 [XNIO-1 task-2] wJvQqVDBT4qtqYl-duNziQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.479 [XNIO-1 task-2] wJvQqVDBT4qtqYl-duNziQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2396178d, base path is set to: null +08:11:48.479 [XNIO-1 task-2] wJvQqVDBT4qtqYl-duNziQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2396178d", "2396178d", serviceId) +08:11:48.486 [XNIO-1 task-2] ayIyu1uOQfumDfGNgnkSsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37e18cca +08:11:48.486 [XNIO-1 task-2] ayIyu1uOQfumDfGNgnkSsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.487 [XNIO-1 task-2] ayIyu1uOQfumDfGNgnkSsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.487 [XNIO-1 task-2] ayIyu1uOQfumDfGNgnkSsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37e18cca +08:11:48.494 [XNIO-1 task-2] 7NO5uGKySjGjIbWSILzxrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e920c60, base path is set to: null +08:11:48.494 [XNIO-1 task-2] 7NO5uGKySjGjIbWSILzxrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.494 [XNIO-1 task-2] 7NO5uGKySjGjIbWSILzxrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.494 [XNIO-1 task-2] 7NO5uGKySjGjIbWSILzxrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e920c60, base path is set to: null +08:11:48.494 [XNIO-1 task-2] 7NO5uGKySjGjIbWSILzxrg DEBUG com.networknt.schema.TypeValidator debug - validate( "1e920c60", "1e920c60", serviceId) +08:11:48.495 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1e920c60 +08:11:48.500 [XNIO-1 task-2] xm4BkLhrTemnH6mKG-EIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.500 [XNIO-1 task-2] xm4BkLhrTemnH6mKG-EIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.500 [XNIO-1 task-2] xm4BkLhrTemnH6mKG-EIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.500 [XNIO-1 task-2] xm4BkLhrTemnH6mKG-EIDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.506 [XNIO-1 task-2] 1aP6SVM4QkmSYOkcwfbjsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.506 [XNIO-1 task-2] 1aP6SVM4QkmSYOkcwfbjsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.506 [XNIO-1 task-2] 1aP6SVM4QkmSYOkcwfbjsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.512 [XNIO-1 task-2] T5X_iDYwQcay_iOWwvun0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.512 [XNIO-1 task-2] T5X_iDYwQcay_iOWwvun0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.512 [XNIO-1 task-2] T5X_iDYwQcay_iOWwvun0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.514 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cb9e4b18-e47c-4123-be8c-e11894ddde20 +08:11:48.515 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cb9e4b18-e47c-4123-be8c-e11894ddde20 +08:11:48.526 [XNIO-1 task-2] NXUy0MB6SjeLxMvj12770Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/64f91000, base path is set to: null +08:11:48.526 [XNIO-1 task-2] NXUy0MB6SjeLxMvj12770Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.526 [XNIO-1 task-2] NXUy0MB6SjeLxMvj12770Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.526 [XNIO-1 task-2] NXUy0MB6SjeLxMvj12770Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/64f91000, base path is set to: null +08:11:48.526 [XNIO-1 task-2] NXUy0MB6SjeLxMvj12770Q DEBUG com.networknt.schema.TypeValidator debug - validate( "64f91000", "64f91000", serviceId) +08:11:48.532 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.533 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.533 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.533 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.533 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.533 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.533 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.533 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5622e99-cd79-4440-8b9c-0739360a", {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.534 [XNIO-1 task-2] x1se0JqyShiAmnAOWMz8cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"477dece0","serviceName":"e5622e99-cd79-4440-8b9c-0739360a","serviceDesc":"22f571d9-c08d-4e9f-ae48-0eaba0ed561a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.538 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:86a085f4 +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG com.networknt.schema.TypeValidator debug - validate( "66f7b3b9-59cc-4c88-811e-26adb8c7ff6c", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:48.547 [XNIO-1 task-2] 72ABMjeZTBO1j5I4KG_Hwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.555 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.555 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.555 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.555 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.556 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.556 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG com.networknt.schema.TypeValidator debug - validate( "e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:48.556 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG com.networknt.schema.TypeValidator debug - validate( "4472361a", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:48.556 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:48.556 [XNIO-1 task-2] fwkx5h2EQ9CkhDah7s2bhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.562 [XNIO-1 task-2] 6B2EbDbHR8Klp-AhBb_FWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1703e38, base path is set to: null +08:11:48.562 [XNIO-1 task-2] 6B2EbDbHR8Klp-AhBb_FWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.562 [XNIO-1 task-2] 6B2EbDbHR8Klp-AhBb_FWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.562 [XNIO-1 task-2] 6B2EbDbHR8Klp-AhBb_FWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1703e38, base path is set to: null +08:11:48.562 [XNIO-1 task-2] 6B2EbDbHR8Klp-AhBb_FWw DEBUG com.networknt.schema.TypeValidator debug - validate( "a1703e38", "a1703e38", serviceId) +08:11:48.568 [XNIO-1 task-2] HadDqOHtR5WK3tFjdHq83g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.568 [XNIO-1 task-2] HadDqOHtR5WK3tFjdHq83g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.569 [XNIO-1 task-2] HadDqOHtR5WK3tFjdHq83g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.578 [XNIO-1 task-2] epuBzo4gQ_iB6X0OH8zEHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.578 [XNIO-1 task-2] epuBzo4gQ_iB6X0OH8zEHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.578 [XNIO-1 task-2] epuBzo4gQ_iB6X0OH8zEHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.578 [XNIO-1 task-2] epuBzo4gQ_iB6X0OH8zEHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.586 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.586 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.586 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.586 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.586 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.586 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "66f7b3b9-59cc-4c88-811e-26adb8c7ff6c", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:48.586 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:48.587 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:48.587 [XNIO-1 task-2] O7SRY-sYQMWP6Zg7GAjhgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.593 [XNIO-1 task-2] ZtPvMMyaRE-Qmjr1nEaYHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.593 [XNIO-1 task-2] ZtPvMMyaRE-Qmjr1nEaYHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.593 [XNIO-1 task-2] ZtPvMMyaRE-Qmjr1nEaYHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.594 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:268447c3 +08:11:48.595 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7d57cecd-0f44-4e7c-b639-78e2327159d2 +08:11:48.602 [XNIO-1 task-2] UlaN21xTRseojk7y9wp18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.602 [XNIO-1 task-2] UlaN21xTRseojk7y9wp18g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.602 [XNIO-1 task-2] UlaN21xTRseojk7y9wp18g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.602 [XNIO-1 task-2] UlaN21xTRseojk7y9wp18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.602 [XNIO-1 task-2] UlaN21xTRseojk7y9wp18g DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", "b4e23211", serviceId) +08:11:48.605 [XNIO-1 task-2] MoTwYAEoTbmmRJNXrKHpGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.605 [XNIO-1 task-2] MoTwYAEoTbmmRJNXrKHpGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.605 [XNIO-1 task-2] MoTwYAEoTbmmRJNXrKHpGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.605 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fa5062c1 +08:11:48.612 [XNIO-1 task-2] lT7iigC1TVikw6NtD3ejSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.612 [XNIO-1 task-2] lT7iigC1TVikw6NtD3ejSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.612 [XNIO-1 task-2] lT7iigC1TVikw6NtD3ejSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.612 [XNIO-1 task-2] lT7iigC1TVikw6NtD3ejSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.612 [XNIO-1 task-2] lT7iigC1TVikw6NtD3ejSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", "b4e23211", serviceId) +08:11:48.614 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.614 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.614 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.615 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.615 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.615 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG com.networknt.schema.TypeValidator debug - validate( "66f7b3b9-59cc-4c88-811e-26adb8c7ff6c", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:48.615 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:48.615 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:48.615 [XNIO-1 task-2] yVY4NquVRwW2rJ2RndipQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.627 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.627 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.627 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.628 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.628 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.628 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77192d96-d839-4511-9cdf-53aba2e419da", {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:48.628 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "68e0d72e", {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:48.628 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:48.628 [XNIO-1 task-2] zIz1PlC2QmmIOh0gzJnyAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"68e0d72e","serviceName":"67942675-0f13-4c3a-bfdd-da250c5a","serviceDesc":"77192d96-d839-4511-9cdf-53aba2e419da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.635 [XNIO-1 task-2] mrfHrtwfSImyp1Ff7A9Bqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.635 [XNIO-1 task-2] mrfHrtwfSImyp1Ff7A9Bqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.636 [XNIO-1 task-2] mrfHrtwfSImyp1Ff7A9Bqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.643 [XNIO-1 task-2] FzY6lpMfSl6oT3u6tVuEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.643 [XNIO-1 task-2] FzY6lpMfSl6oT3u6tVuEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.643 [XNIO-1 task-2] FzY6lpMfSl6oT3u6tVuEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.649 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8cb1e719-191a-41b1-817e-781a370babbe +08:11:48.653 [XNIO-1 task-2] UvI23ANXTxuO9W1ioRr7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d7efaf56 +08:11:48.653 [XNIO-1 task-2] UvI23ANXTxuO9W1ioRr7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.653 [XNIO-1 task-2] UvI23ANXTxuO9W1ioRr7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.653 [XNIO-1 task-2] UvI23ANXTxuO9W1ioRr7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d7efaf56 +08:11:48.660 [XNIO-1 task-2] Vk8E8B_PR0yv6DwUVASVTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.660 [XNIO-1 task-2] Vk8E8B_PR0yv6DwUVASVTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.660 [XNIO-1 task-2] Vk8E8B_PR0yv6DwUVASVTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.668 [XNIO-1 task-2] SF42O-8mQdmWumDrwUrENA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.668 [XNIO-1 task-2] SF42O-8mQdmWumDrwUrENA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.669 [XNIO-1 task-2] SF42O-8mQdmWumDrwUrENA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.669 [XNIO-1 task-2] SF42O-8mQdmWumDrwUrENA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.676 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG com.networknt.schema.TypeValidator debug - validate( "de4ad236-0c56-4040-bb47-70ff2a54", {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.677 [XNIO-1 task-2] nsO3MWY5R6uWDrwwwRGaWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1edae829","serviceName":"de4ad236-0c56-4040-bb47-70ff2a54","serviceDesc":"b199340c-6d44-41b9-8683-07ec0d51454d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.685 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.685 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.685 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.686 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.686 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.686 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.686 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.686 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG com.networknt.schema.TypeValidator debug - validate( "2753c8c6-3a30-4929-9ffb-cc3e0805", {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.686 [XNIO-1 task-2] tlPrvbXnQD-ILqxyWhAWOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.695 [XNIO-1 task-2] 1-ATF0RtTX-XIWz8G1cmag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa5062c1, base path is set to: null +08:11:48.695 [XNIO-1 task-2] 1-ATF0RtTX-XIWz8G1cmag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.695 [XNIO-1 task-2] 1-ATF0RtTX-XIWz8G1cmag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.695 [XNIO-1 task-2] 1-ATF0RtTX-XIWz8G1cmag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa5062c1, base path is set to: null +08:11:48.695 [XNIO-1 task-2] 1-ATF0RtTX-XIWz8G1cmag DEBUG com.networknt.schema.TypeValidator debug - validate( "fa5062c1", "fa5062c1", serviceId) +08:11:48.696 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fa5062c1 +08:11:48.703 [XNIO-1 task-2] p6vxD5wVRpaWXC8vlmak4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ca6db6f9 +08:11:48.703 [XNIO-1 task-2] p6vxD5wVRpaWXC8vlmak4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.703 [XNIO-1 task-2] p6vxD5wVRpaWXC8vlmak4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.703 [XNIO-1 task-2] p6vxD5wVRpaWXC8vlmak4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ca6db6f9 +08:11:48.708 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.708 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.709 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.709 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.709 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.709 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.709 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.709 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f48e31fb-ddc4-4390-94f9-a30639c8", {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.709 [XNIO-1 task-2] YW7-l4wYRJqcTB3cuZK5SQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ca6db6f9","serviceName":"f48e31fb-ddc4-4390-94f9-a30639c8","serviceDesc":"b41c666b-7834-4f00-ad98-d47e7215a621","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.735 [XNIO-1 task-2] lFaioidIRDS7Q9ptnd6BzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/477dece0, base path is set to: null +08:11:48.735 [XNIO-1 task-2] lFaioidIRDS7Q9ptnd6BzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.735 [XNIO-1 task-2] lFaioidIRDS7Q9ptnd6BzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.735 [XNIO-1 task-2] lFaioidIRDS7Q9ptnd6BzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/477dece0, base path is set to: null +08:11:48.735 [XNIO-1 task-2] lFaioidIRDS7Q9ptnd6BzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "477dece0", "477dece0", serviceId) +08:11:48.750 [XNIO-1 task-2] Cj-h9FNzSTqlIJBViXL4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28794536 +08:11:48.750 [XNIO-1 task-2] Cj-h9FNzSTqlIJBViXL4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.750 [XNIO-1 task-2] Cj-h9FNzSTqlIJBViXL4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.750 [XNIO-1 task-2] Cj-h9FNzSTqlIJBViXL4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28794536 +08:11:48.766 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053 +08:11:48.767 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053 +08:11:48.768 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.768 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.768 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.769 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.769 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.769 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG com.networknt.schema.TypeValidator debug - validate( "e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:48.769 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG com.networknt.schema.TypeValidator debug - validate( "4472361a", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:48.769 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:48.769 [XNIO-1 task-2] fXGDOBaDQFyXvbMz2L-NVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4472361a","serviceName":"f619044e-8b5f-41b9-b335-d9deb092","serviceDesc":"e0f8a391-2fd5-4536-9dc8-c33b87f4b6f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.781 [XNIO-1 task-2] EN_vh1pCQJWVL7zV_zYhpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/68e0d72e +08:11:48.781 [XNIO-1 task-2] EN_vh1pCQJWVL7zV_zYhpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.781 [XNIO-1 task-2] EN_vh1pCQJWVL7zV_zYhpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.781 [XNIO-1 task-2] EN_vh1pCQJWVL7zV_zYhpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/68e0d72e +08:11:48.791 [XNIO-1 task-2] QlbKVfXHRxaAg27JNGwJmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.791 [XNIO-1 task-2] QlbKVfXHRxaAg27JNGwJmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.791 [XNIO-1 task-2] QlbKVfXHRxaAg27JNGwJmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.800 [XNIO-1 task-2] tExnDTt0SEmpI9F6v2q-dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.801 [XNIO-1 task-2] tExnDTt0SEmpI9F6v2q-dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.801 [XNIO-1 task-2] tExnDTt0SEmpI9F6v2q-dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.809 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.809 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.809 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.809 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.809 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.809 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.809 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.810 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60d6ee75-fda1-4592-bd64-0dac06c4", {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.810 [XNIO-1 task-2] npnwOMPNRUSI6VmSF3QOTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"51c534c2","serviceName":"60d6ee75-fda1-4592-bd64-0dac06c4","serviceDesc":"642e5ef5-02e8-4126-982e-70a8f7eafda6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.825 [XNIO-1 task-2] KdiSdp7nRemuKUefF9rSLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.825 [XNIO-1 task-2] KdiSdp7nRemuKUefF9rSLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.825 [XNIO-1 task-2] KdiSdp7nRemuKUefF9rSLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.825 [XNIO-1 task-2] KdiSdp7nRemuKUefF9rSLw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.837 [XNIO-1 task-2] 1kL-H_NuTl21_MxM6TRCvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1703e38, base path is set to: null +08:11:48.838 [XNIO-1 task-2] 1kL-H_NuTl21_MxM6TRCvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.838 [XNIO-1 task-2] 1kL-H_NuTl21_MxM6TRCvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.838 [XNIO-1 task-2] 1kL-H_NuTl21_MxM6TRCvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1703e38, base path is set to: null +08:11:48.838 [XNIO-1 task-2] 1kL-H_NuTl21_MxM6TRCvA DEBUG com.networknt.schema.TypeValidator debug - validate( "a1703e38", "a1703e38", serviceId) +08:11:48.845 [XNIO-1 task-2] AHleXDxpRRa8GFgnsWOjdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.845 [XNIO-1 task-2] AHleXDxpRRa8GFgnsWOjdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.845 [XNIO-1 task-2] AHleXDxpRRa8GFgnsWOjdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.845 [XNIO-1 task-2] AHleXDxpRRa8GFgnsWOjdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.851 [XNIO-1 task-2] LrLN05wCR6WRt5XnNPNb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.851 [XNIO-1 task-2] LrLN05wCR6WRt5XnNPNb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.851 [XNIO-1 task-2] LrLN05wCR6WRt5XnNPNb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.863 [XNIO-1 task-2] XEsgyiLzRFCcTxLT5F1_Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/51c534c2 +08:11:48.863 [XNIO-1 task-2] XEsgyiLzRFCcTxLT5F1_Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.863 [XNIO-1 task-2] XEsgyiLzRFCcTxLT5F1_Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.864 [XNIO-1 task-2] XEsgyiLzRFCcTxLT5F1_Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/51c534c2 +08:11:48.876 [XNIO-1 task-2] pA_twrqHRceDCzP1NhIrRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.876 [XNIO-1 task-2] pA_twrqHRceDCzP1NhIrRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.876 [XNIO-1 task-2] pA_twrqHRceDCzP1NhIrRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.884 [XNIO-1 task-2] Z53f-FNsQpO8inlo2Mj7Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.884 [XNIO-1 task-2] Z53f-FNsQpO8inlo2Mj7Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.884 [XNIO-1 task-2] Z53f-FNsQpO8inlo2Mj7Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.884 [XNIO-1 task-2] Z53f-FNsQpO8inlo2Mj7Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.885 [XNIO-1 task-2] Z53f-FNsQpO8inlo2Mj7Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", "b4e23211", serviceId) +08:11:48.888 [XNIO-1 task-2] OHtaOgcySXmMmPkJv9uTHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c4db7990 +08:11:48.888 [XNIO-1 task-2] OHtaOgcySXmMmPkJv9uTHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.888 [XNIO-1 task-2] OHtaOgcySXmMmPkJv9uTHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.888 [XNIO-1 task-2] OHtaOgcySXmMmPkJv9uTHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c4db7990 +08:11:48.896 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.896 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.897 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.897 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.897 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.897 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.897 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:48.897 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "22279465-1924-475d-b5b6-3f083ba4", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:48.897 [XNIO-1 task-2] hfo7ryptTmu-0wT4iDIQxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.906 [XNIO-1 task-2] YPbVyhCiSFulWuod_DeG5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.907 [XNIO-1 task-2] YPbVyhCiSFulWuod_DeG5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.907 [XNIO-1 task-2] YPbVyhCiSFulWuod_DeG5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.908 [XNIO-1 task-2] YPbVyhCiSFulWuod_DeG5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.915 [XNIO-1 task-2] Jfe1DC6PTm23D3IyoNACnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.915 [XNIO-1 task-2] Jfe1DC6PTm23D3IyoNACnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.916 [XNIO-1 task-2] Jfe1DC6PTm23D3IyoNACnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.922 [XNIO-1 task-2] o4H8_1n8T4yP0kDfjpCMDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.922 [XNIO-1 task-2] o4H8_1n8T4yP0kDfjpCMDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.922 [XNIO-1 task-2] o4H8_1n8T4yP0kDfjpCMDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:48.922 [XNIO-1 task-2] o4H8_1n8T4yP0kDfjpCMDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:48.922 [XNIO-1 task-2] o4H8_1n8T4yP0kDfjpCMDw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", "b4e23211", serviceId) +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG com.networknt.schema.TypeValidator debug - validate( "66f7b3b9-59cc-4c88-811e-26adb8c7ff6c", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:48.925 [XNIO-1 task-2] 6g8jRnaBT-O7GtMybheWVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b4e23211","serviceName":"22279465-1924-475d-b5b6-3f083ba4","serviceDesc":"66f7b3b9-59cc-4c88-811e-26adb8c7ff6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:48.932 [XNIO-1 task-2] JD-8LLwxR3qTY3DSsJuEPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/268447c3 +08:11:48.932 [XNIO-1 task-2] JD-8LLwxR3qTY3DSsJuEPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:48.932 [XNIO-1 task-2] JD-8LLwxR3qTY3DSsJuEPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:48.932 [XNIO-1 task-2] JD-8LLwxR3qTY3DSsJuEPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/268447c3 +08:11:48.934 [XNIO-1 task-2] -LoNXoE3RgqQMjdDxpH0RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:48.934 [XNIO-1 task-2] -LoNXoE3RgqQMjdDxpH0RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:48.934 [XNIO-1 task-2] -LoNXoE3RgqQMjdDxpH0RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:49.009 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0147f7ac-2927-4d2a-98cf-51b50ae62903 +08:11:51.259 [XNIO-1 task-2] aYkUgf58TMqfohnV-66COA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/268447c3, base path is set to: null +08:11:51.259 [XNIO-1 task-2] aYkUgf58TMqfohnV-66COA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.259 [XNIO-1 task-2] aYkUgf58TMqfohnV-66COA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.259 [XNIO-1 task-2] aYkUgf58TMqfohnV-66COA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/268447c3, base path is set to: null +08:11:51.260 [XNIO-1 task-2] aYkUgf58TMqfohnV-66COA DEBUG com.networknt.schema.TypeValidator debug - validate( "268447c3", "268447c3", serviceId) +08:11:51.260 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:268447c3 +08:11:51.274 [XNIO-1 task-2] c5Px8Mx1SYCCxm7TRrFTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1edae829 +08:11:51.275 [XNIO-1 task-2] c5Px8Mx1SYCCxm7TRrFTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.275 [XNIO-1 task-2] c5Px8Mx1SYCCxm7TRrFTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.275 [XNIO-1 task-2] c5Px8Mx1SYCCxm7TRrFTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1edae829 +08:11:51.289 [XNIO-1 task-2] KXkA19GwTOa-jTQC57J-dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b29d530, base path is set to: null +08:11:51.290 [XNIO-1 task-2] KXkA19GwTOa-jTQC57J-dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.290 [XNIO-1 task-2] KXkA19GwTOa-jTQC57J-dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.290 [XNIO-1 task-2] KXkA19GwTOa-jTQC57J-dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b29d530, base path is set to: null +08:11:51.290 [XNIO-1 task-2] KXkA19GwTOa-jTQC57J-dg DEBUG com.networknt.schema.TypeValidator debug - validate( "4b29d530", "4b29d530", serviceId) +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "59a5cddc-4652-4481-b3f4-f7a9efd7412a", {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ac1a6fc", {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:51.300 [XNIO-1 task-2] Yk6c2i0qQTuvltdn2fLrWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2ac1a6fc","serviceName":"749ba344-7c2f-4e7c-8e3e-16b5c427","serviceDesc":"59a5cddc-4652-4481-b3f4-f7a9efd7412a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.312 [XNIO-1 task-2] xHw2k-QnTTO7j0GGFurInw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.313 [XNIO-1 task-2] xHw2k-QnTTO7j0GGFurInw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.313 [XNIO-1 task-2] xHw2k-QnTTO7j0GGFurInw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.313 [XNIO-1 task-2] xHw2k-QnTTO7j0GGFurInw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.323 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7365902a-8977-4338-b0d4-4b7610fd3676 +08:11:51.324 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.324 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.324 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.324 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.324 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.325 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.325 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:51.325 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG com.networknt.schema.TypeValidator debug - validate( "825dd5c9-abdb-4cd2-9cca-fe6f75ff", {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:51.325 [XNIO-1 task-2] WJaelOBmQjWQot93pIeuBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.337 [XNIO-1 task-2] Hos_3z1pQn-8qdUUVuzxWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.338 [XNIO-1 task-2] Hos_3z1pQn-8qdUUVuzxWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.338 [XNIO-1 task-2] Hos_3z1pQn-8qdUUVuzxWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.338 [XNIO-1 task-2] Hos_3z1pQn-8qdUUVuzxWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.353 [XNIO-1 task-2] rAaez_AdSry5dkH5yqS8ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.354 [XNIO-1 task-2] rAaez_AdSry5dkH5yqS8ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.354 [XNIO-1 task-2] rAaez_AdSry5dkH5yqS8ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.361 [XNIO-1 task-2] MsG3qSE9R1KIPsYIf0KGmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84b28702, base path is set to: null +08:11:51.361 [XNIO-1 task-2] MsG3qSE9R1KIPsYIf0KGmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.361 [XNIO-1 task-2] MsG3qSE9R1KIPsYIf0KGmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.361 [XNIO-1 task-2] MsG3qSE9R1KIPsYIf0KGmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84b28702, base path is set to: null +08:11:51.361 [XNIO-1 task-2] MsG3qSE9R1KIPsYIf0KGmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84b28702", "84b28702", serviceId) +08:11:51.365 [XNIO-1 task-2] QpqdmMroTeCvJ-972NXbeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ca6db6f9 +08:11:51.365 [XNIO-1 task-2] QpqdmMroTeCvJ-972NXbeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.365 [XNIO-1 task-2] QpqdmMroTeCvJ-972NXbeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.365 [XNIO-1 task-2] QpqdmMroTeCvJ-972NXbeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ca6db6f9 +08:11:51.372 [XNIO-1 task-2] SeL4MUFzT-6x2uUQSyQcMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84b28702, base path is set to: null +08:11:51.372 [XNIO-1 task-2] SeL4MUFzT-6x2uUQSyQcMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.372 [XNIO-1 task-2] SeL4MUFzT-6x2uUQSyQcMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.372 [XNIO-1 task-2] SeL4MUFzT-6x2uUQSyQcMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84b28702, base path is set to: null +08:11:51.372 [XNIO-1 task-2] SeL4MUFzT-6x2uUQSyQcMA DEBUG com.networknt.schema.TypeValidator debug - validate( "84b28702", "84b28702", serviceId) +08:11:51.374 [XNIO-1 task-2] 3Vouqp_XSIS7Z1MSOk9qNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.375 [XNIO-1 task-2] 3Vouqp_XSIS7Z1MSOk9qNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.375 [XNIO-1 task-2] 3Vouqp_XSIS7Z1MSOk9qNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.375 [XNIO-1 task-2] 3Vouqp_XSIS7Z1MSOk9qNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG com.networknt.schema.TypeValidator debug - validate( "b00e0dd3-346e-4f9f-b2b9-35759e86aa25", {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG com.networknt.schema.TypeValidator debug - validate( "84b28702", {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:51.387 [XNIO-1 task-2] zfaFHMYRSqy-s0Z7DN3JZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84b28702","serviceName":"6df37794-553e-46c2-86b9-d4f2fe92","serviceDesc":"b00e0dd3-346e-4f9f-b2b9-35759e86aa25","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.394 [XNIO-1 task-2] g1Rk0yIhRsyXzZTtXfnZWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4472361a +08:11:51.394 [XNIO-1 task-2] g1Rk0yIhRsyXzZTtXfnZWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.394 [XNIO-1 task-2] g1Rk0yIhRsyXzZTtXfnZWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.394 [XNIO-1 task-2] g1Rk0yIhRsyXzZTtXfnZWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4472361a +08:11:51.404 [XNIO-1 task-2] utl0w2ABS0CUkTSpl14rCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:51.404 [XNIO-1 task-2] utl0w2ABS0CUkTSpl14rCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.404 [XNIO-1 task-2] utl0w2ABS0CUkTSpl14rCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.404 [XNIO-1 task-2] utl0w2ABS0CUkTSpl14rCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4e23211, base path is set to: null +08:11:51.404 [XNIO-1 task-2] utl0w2ABS0CUkTSpl14rCA DEBUG com.networknt.schema.TypeValidator debug - validate( "b4e23211", "b4e23211", serviceId) +08:11:51.421 [XNIO-1 task-2] u3gKv5fcSZaG99sbQLX5Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/703ef681, base path is set to: null +08:11:51.421 [XNIO-1 task-2] u3gKv5fcSZaG99sbQLX5Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.421 [XNIO-1 task-2] u3gKv5fcSZaG99sbQLX5Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.421 [XNIO-1 task-2] u3gKv5fcSZaG99sbQLX5Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/703ef681, base path is set to: null +08:11:51.421 [XNIO-1 task-2] u3gKv5fcSZaG99sbQLX5Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "703ef681", "703ef681", serviceId) +08:11:51.436 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.436 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.436 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.437 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.437 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.437 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "361305b0-16d5-4a5b-a65b-c6a2489192b1", {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:51.437 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "a1703e38", {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:51.437 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:51.437 [XNIO-1 task-2] CK3CrSYKRlChWZEcLBiUkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1703e38","serviceName":"2753c8c6-3a30-4929-9ffb-cc3e0805","serviceDesc":"361305b0-16d5-4a5b-a65b-c6a2489192b1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.451 [XNIO-1 task-2] mAViOrUxQcupH6WHkzL6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84b28702 +08:11:51.451 [XNIO-1 task-2] mAViOrUxQcupH6WHkzL6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.451 [XNIO-1 task-2] mAViOrUxQcupH6WHkzL6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.451 [XNIO-1 task-2] mAViOrUxQcupH6WHkzL6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84b28702 +08:11:51.456 [XNIO-1 task-2] nSeCdOjzQj6O0b0vxda0HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.456 [XNIO-1 task-2] nSeCdOjzQj6O0b0vxda0HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.456 [XNIO-1 task-2] nSeCdOjzQj6O0b0vxda0HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.465 [XNIO-1 task-2] eiERQTB_RBGp4e7Qx0aSjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84b28702, base path is set to: null +08:11:51.465 [XNIO-1 task-2] eiERQTB_RBGp4e7Qx0aSjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.465 [XNIO-1 task-2] eiERQTB_RBGp4e7Qx0aSjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.465 [XNIO-1 task-2] eiERQTB_RBGp4e7Qx0aSjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84b28702, base path is set to: null +08:11:51.465 [XNIO-1 task-2] eiERQTB_RBGp4e7Qx0aSjg DEBUG com.networknt.schema.TypeValidator debug - validate( "84b28702", "84b28702", serviceId) +08:11:51.476 [XNIO-1 task-2] lvJIgvGTRruvf0Q5PTcQAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.476 [XNIO-1 task-2] lvJIgvGTRruvf0Q5PTcQAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.476 [XNIO-1 task-2] lvJIgvGTRruvf0Q5PTcQAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.476 [XNIO-1 task-2] lvJIgvGTRruvf0Q5PTcQAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.487 [XNIO-1 task-2] 76dtgpWMQpSvuMCJKGcSzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.487 [XNIO-1 task-2] 76dtgpWMQpSvuMCJKGcSzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.487 [XNIO-1 task-2] 76dtgpWMQpSvuMCJKGcSzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.487 [XNIO-1 task-2] 76dtgpWMQpSvuMCJKGcSzw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.497 [XNIO-1 task-2] m_lq6SjHSkaFmSBzSQ_bWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fc0861e +08:11:51.497 [XNIO-1 task-2] m_lq6SjHSkaFmSBzSQ_bWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.497 [XNIO-1 task-2] m_lq6SjHSkaFmSBzSQ_bWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.498 [XNIO-1 task-2] m_lq6SjHSkaFmSBzSQ_bWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fc0861e +08:11:51.512 [XNIO-1 task-2] xu0vtB9PSwqy_MDVIA6kOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e247dee, base path is set to: null +08:11:51.512 [XNIO-1 task-2] xu0vtB9PSwqy_MDVIA6kOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.512 [XNIO-1 task-2] xu0vtB9PSwqy_MDVIA6kOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.512 [XNIO-1 task-2] xu0vtB9PSwqy_MDVIA6kOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e247dee, base path is set to: null +08:11:51.512 [XNIO-1 task-2] xu0vtB9PSwqy_MDVIA6kOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1e247dee", "1e247dee", serviceId) +08:11:51.519 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.519 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.519 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.520 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.520 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.520 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG com.networknt.schema.TypeValidator debug - validate( "69236e91-b3bc-4dde-93f9-98386676ad03", {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:51.520 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG com.networknt.schema.TypeValidator debug - validate( "1e247dee", {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:51.520 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:51.520 [XNIO-1 task-2] -69IDsCQRJioilg-Ph358g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1e247dee","serviceName":"825dd5c9-abdb-4cd2-9cca-fe6f75ff","serviceDesc":"69236e91-b3bc-4dde-93f9-98386676ad03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.532 [XNIO-1 task-2] AH68bPXNRx-y1LADj-K6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2ac1a6fc +08:11:51.532 [XNIO-1 task-2] AH68bPXNRx-y1LADj-K6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.532 [XNIO-1 task-2] AH68bPXNRx-y1LADj-K6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.532 [XNIO-1 task-2] AH68bPXNRx-y1LADj-K6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2ac1a6fc +08:11:51.536 [XNIO-1 task-2] xgvoVHrUTxCxkL3MOB8tpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2ac1a6fc, base path is set to: null +08:11:51.537 [XNIO-1 task-2] xgvoVHrUTxCxkL3MOB8tpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.537 [XNIO-1 task-2] xgvoVHrUTxCxkL3MOB8tpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.537 [XNIO-1 task-2] xgvoVHrUTxCxkL3MOB8tpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2ac1a6fc, base path is set to: null +08:11:51.537 [XNIO-1 task-2] xgvoVHrUTxCxkL3MOB8tpA DEBUG com.networknt.schema.TypeValidator debug - validate( "2ac1a6fc", "2ac1a6fc", serviceId) +08:11:51.547 [XNIO-1 task-2] uhyMKScaR6uAjQ5Fif8AOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1703e38 +08:11:51.547 [XNIO-1 task-2] uhyMKScaR6uAjQ5Fif8AOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.547 [XNIO-1 task-2] uhyMKScaR6uAjQ5Fif8AOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.547 [XNIO-1 task-2] uhyMKScaR6uAjQ5Fif8AOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1703e38 +08:11:51.559 [XNIO-1 task-2] 8IZ9xN_yQ1O89dXPTWMgJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.559 [XNIO-1 task-2] 8IZ9xN_yQ1O89dXPTWMgJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.559 [XNIO-1 task-2] 8IZ9xN_yQ1O89dXPTWMgJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.559 [XNIO-1 task-2] 8IZ9xN_yQ1O89dXPTWMgJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.565 [XNIO-1 task-2] ge_y5k7MQnSjU5elf-G6FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e247dee, base path is set to: null +08:11:51.565 [XNIO-1 task-2] ge_y5k7MQnSjU5elf-G6FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.565 [XNIO-1 task-2] ge_y5k7MQnSjU5elf-G6FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.565 [XNIO-1 task-2] ge_y5k7MQnSjU5elf-G6FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e247dee, base path is set to: null +08:11:51.565 [XNIO-1 task-2] ge_y5k7MQnSjU5elf-G6FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1e247dee", "1e247dee", serviceId) +08:11:51.578 [XNIO-1 task-2] Gxf4LB_jRMiWWkVeE9d2yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dda0f829 +08:11:51.578 [XNIO-1 task-2] Gxf4LB_jRMiWWkVeE9d2yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.578 [XNIO-1 task-2] Gxf4LB_jRMiWWkVeE9d2yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.579 [XNIO-1 task-2] Gxf4LB_jRMiWWkVeE9d2yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dda0f829 +08:11:51.585 [XNIO-1 task-2] rQg-ehQGSmeRd0b02zIZMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dda0f829, base path is set to: null +08:11:51.585 [XNIO-1 task-2] rQg-ehQGSmeRd0b02zIZMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.585 [XNIO-1 task-2] rQg-ehQGSmeRd0b02zIZMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.585 [XNIO-1 task-2] rQg-ehQGSmeRd0b02zIZMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dda0f829, base path is set to: null +08:11:51.585 [XNIO-1 task-2] rQg-ehQGSmeRd0b02zIZMA DEBUG com.networknt.schema.TypeValidator debug - validate( "dda0f829", "dda0f829", serviceId) +08:11:51.590 [XNIO-1 task-2] fb2ptam0QN6kff8EXx-6qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dda0f829 +08:11:51.590 [XNIO-1 task-2] fb2ptam0QN6kff8EXx-6qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.590 [XNIO-1 task-2] fb2ptam0QN6kff8EXx-6qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.590 [XNIO-1 task-2] fb2ptam0QN6kff8EXx-6qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dda0f829 +08:11:51.597 [XNIO-1 task-2] 06t3piQBTKSCR8QdXgX84Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.597 [XNIO-1 task-2] 06t3piQBTKSCR8QdXgX84Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.597 [XNIO-1 task-2] 06t3piQBTKSCR8QdXgX84Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.609 [XNIO-1 task-2] 9uJj8gWhRDOVPoUlzb5bfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.609 [XNIO-1 task-2] 9uJj8gWhRDOVPoUlzb5bfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.609 [XNIO-1 task-2] 9uJj8gWhRDOVPoUlzb5bfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.609 [XNIO-1 task-2] 9uJj8gWhRDOVPoUlzb5bfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:51.617 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c3a9ead6-f182-4a3f-a35d-d3c457ba", {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:51.618 [XNIO-1 task-2] Oam3pVypSESlfKS4g10daQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b80984b","serviceName":"c3a9ead6-f182-4a3f-a35d-d3c457ba","serviceDesc":"7c4a382f-11da-42bd-893c-0a5ca02e2959","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.626 [XNIO-1 task-2] xMvQgLqlRtWtobQeTQD8XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b80984b, base path is set to: null +08:11:51.627 [XNIO-1 task-2] xMvQgLqlRtWtobQeTQD8XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.627 [XNIO-1 task-2] xMvQgLqlRtWtobQeTQD8XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.627 [XNIO-1 task-2] xMvQgLqlRtWtobQeTQD8XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b80984b, base path is set to: null +08:11:51.627 [XNIO-1 task-2] xMvQgLqlRtWtobQeTQD8XA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b80984b", "4b80984b", serviceId) +08:11:51.631 [XNIO-1 task-2] mERwAqo0SWm9DocYohAMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4b80984b +08:11:51.631 [XNIO-1 task-2] mERwAqo0SWm9DocYohAMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.631 [XNIO-1 task-2] mERwAqo0SWm9DocYohAMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.631 [XNIO-1 task-2] mERwAqo0SWm9DocYohAMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4b80984b +08:11:51.648 [XNIO-1 task-2] lZgcbEHSTz6HhHvIMooL1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.649 [XNIO-1 task-2] lZgcbEHSTz6HhHvIMooL1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.649 [XNIO-1 task-2] lZgcbEHSTz6HhHvIMooL1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.649 [XNIO-1 task-2] lZgcbEHSTz6HhHvIMooL1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.665 [XNIO-1 task-2] QRDomM3HTse1jfKheK6ebg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.665 [XNIO-1 task-2] QRDomM3HTse1jfKheK6ebg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.665 [XNIO-1 task-2] QRDomM3HTse1jfKheK6ebg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.665 [XNIO-1 task-2] QRDomM3HTse1jfKheK6ebg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.673 [XNIO-1 task-2] lIU-NlK8TCudvzosNmz87Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.673 [XNIO-1 task-2] lIU-NlK8TCudvzosNmz87Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.674 [XNIO-1 task-2] lIU-NlK8TCudvzosNmz87Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.681 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.681 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.681 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.682 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.682 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.682 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.682 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:51.682 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG com.networknt.schema.TypeValidator debug - validate( "ff17b172-3cdb-499a-85b0-af78c877", {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:51.682 [XNIO-1 task-2] tLApBvyiTvqkXd43FOmP4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ecfea2c9","serviceName":"ff17b172-3cdb-499a-85b0-af78c877","serviceDesc":"01f53048-7b03-4414-8446-0cb23da40535","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.689 [XNIO-1 task-2] I8NEEcZpSeGHChpBgiBfSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecfea2c9, base path is set to: null +08:11:51.690 [XNIO-1 task-2] I8NEEcZpSeGHChpBgiBfSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.690 [XNIO-1 task-2] I8NEEcZpSeGHChpBgiBfSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.690 [XNIO-1 task-2] I8NEEcZpSeGHChpBgiBfSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecfea2c9, base path is set to: null +08:11:51.690 [XNIO-1 task-2] I8NEEcZpSeGHChpBgiBfSg DEBUG com.networknt.schema.TypeValidator debug - validate( "ecfea2c9", "ecfea2c9", serviceId) +08:11:51.704 [XNIO-1 task-2] 0BjdYlKSS1W6mj94NsExbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.704 [XNIO-1 task-2] 0BjdYlKSS1W6mj94NsExbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.705 [XNIO-1 task-2] 0BjdYlKSS1W6mj94NsExbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.705 [XNIO-1 task-2] 0BjdYlKSS1W6mj94NsExbw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.711 [XNIO-1 task-2] DoMS9c32QaCUCaM1IsNcpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.711 [XNIO-1 task-2] DoMS9c32QaCUCaM1IsNcpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.711 [XNIO-1 task-2] DoMS9c32QaCUCaM1IsNcpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.721 [XNIO-1 task-2] XeAgl6BORP2BY2N5oRYSdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.721 [XNIO-1 task-2] XeAgl6BORP2BY2N5oRYSdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.721 [XNIO-1 task-2] XeAgl6BORP2BY2N5oRYSdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.721 [XNIO-1 task-2] XeAgl6BORP2BY2N5oRYSdw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.729 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2c3616d8-3476-448d-b0e9-7cdc42b76b92", {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f89a5856", {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:51.730 [XNIO-1 task-2] 5sXKHQqhQ3m_k1ujKUZSVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f89a5856","serviceName":"83c2e761-a064-4d5c-a231-ac022589","serviceDesc":"2c3616d8-3476-448d-b0e9-7cdc42b76b92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.738 [XNIO-1 task-2] vOzYckXuQcmPrk0WBUO_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f89a5856 +08:11:51.738 [XNIO-1 task-2] vOzYckXuQcmPrk0WBUO_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.738 [XNIO-1 task-2] vOzYckXuQcmPrk0WBUO_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.738 [XNIO-1 task-2] vOzYckXuQcmPrk0WBUO_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f89a5856 +08:11:51.747 [XNIO-1 task-2] syYkTsqVRAK-3rfoclkdRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.748 [XNIO-1 task-2] syYkTsqVRAK-3rfoclkdRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.748 [XNIO-1 task-2] syYkTsqVRAK-3rfoclkdRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.776 [XNIO-1 task-2] QyY0MIDKSdmeNp4sEUHdkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.776 [XNIO-1 task-2] QyY0MIDKSdmeNp4sEUHdkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.776 [XNIO-1 task-2] QyY0MIDKSdmeNp4sEUHdkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.777 [XNIO-1 task-2] QyY0MIDKSdmeNp4sEUHdkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.781 [XNIO-1 task-2] Kid3bUhjQFKY_uHX_Aq_jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.782 [XNIO-1 task-2] Kid3bUhjQFKY_uHX_Aq_jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.782 [XNIO-1 task-2] Kid3bUhjQFKY_uHX_Aq_jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.782 [XNIO-1 task-2] Kid3bUhjQFKY_uHX_Aq_jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.787 [XNIO-1 task-2] b7E3td_fSFS8V14HBQUeeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.787 [XNIO-1 task-2] b7E3td_fSFS8V14HBQUeeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.787 [XNIO-1 task-2] b7E3td_fSFS8V14HBQUeeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.788 [XNIO-1 task-2] b7E3td_fSFS8V14HBQUeeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.802 [XNIO-1 task-2] q-shYgYHTHyny1j3f1JPTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7800fb84, base path is set to: null +08:11:51.803 [XNIO-1 task-2] q-shYgYHTHyny1j3f1JPTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.803 [XNIO-1 task-2] q-shYgYHTHyny1j3f1JPTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.803 [XNIO-1 task-2] q-shYgYHTHyny1j3f1JPTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7800fb84, base path is set to: null +08:11:51.803 [XNIO-1 task-2] q-shYgYHTHyny1j3f1JPTA DEBUG com.networknt.schema.TypeValidator debug - validate( "7800fb84", "7800fb84", serviceId) +08:11:51.806 [XNIO-1 task-2] wDJTNSVOTxS6Ah4mL_LVHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7800fb84 +08:11:51.806 [XNIO-1 task-2] wDJTNSVOTxS6Ah4mL_LVHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.807 [XNIO-1 task-2] wDJTNSVOTxS6Ah4mL_LVHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.807 [XNIO-1 task-2] wDJTNSVOTxS6Ah4mL_LVHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7800fb84 +08:11:51.811 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.811 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.811 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.811 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.812 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.812 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.812 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:51.812 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG com.networknt.schema.TypeValidator debug - validate( "657ffaec-6849-4379-adab-830eeef7", {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:51.812 [XNIO-1 task-2] 4VwqnKf_SXWVVRbb7WcG0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7800fb84","serviceName":"657ffaec-6849-4379-adab-830eeef7","serviceDesc":"daa718d8-9e23-47fd-b2aa-81299975b9f7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.825 [XNIO-1 task-2] -usZ5oXVRMOMCiF8jneOBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7800fb84, base path is set to: null +08:11:51.825 [XNIO-1 task-2] -usZ5oXVRMOMCiF8jneOBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.825 [XNIO-1 task-2] -usZ5oXVRMOMCiF8jneOBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.825 [XNIO-1 task-2] -usZ5oXVRMOMCiF8jneOBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7800fb84, base path is set to: null +08:11:51.825 [XNIO-1 task-2] -usZ5oXVRMOMCiF8jneOBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7800fb84", "7800fb84", serviceId) +08:11:51.831 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5690697d-3e5a-4641-a068-e3dd5c7e3452 +08:11:51.837 [XNIO-1 task-2] DerR4tSbQgidkXIEw2tbSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.838 [XNIO-1 task-2] DerR4tSbQgidkXIEw2tbSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.838 [XNIO-1 task-2] DerR4tSbQgidkXIEw2tbSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.844 [XNIO-1 task-2] M8RSq8QwRsGpj0q9gDSnaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.844 [XNIO-1 task-2] M8RSq8QwRsGpj0q9gDSnaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.844 [XNIO-1 task-2] M8RSq8QwRsGpj0q9gDSnaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.844 [XNIO-1 task-2] M8RSq8QwRsGpj0q9gDSnaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.845 [XNIO-1 task-2] M8RSq8QwRsGpj0q9gDSnaA DEBUG com.networknt.schema.TypeValidator debug - validate( "abe09316", "abe09316", serviceId) +08:11:51.850 [XNIO-1 task-2] dMvQY2VPT62fD5WizFVmEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/abe09316 +08:11:51.850 [XNIO-1 task-2] dMvQY2VPT62fD5WizFVmEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.850 [XNIO-1 task-2] dMvQY2VPT62fD5WizFVmEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.850 [XNIO-1 task-2] dMvQY2VPT62fD5WizFVmEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/abe09316 +08:11:51.855 [XNIO-1 task-2] 72nQsAmeTSKAOjGrAaIyew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.855 [XNIO-1 task-2] 72nQsAmeTSKAOjGrAaIyew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.855 [XNIO-1 task-2] 72nQsAmeTSKAOjGrAaIyew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.855 [XNIO-1 task-2] 72nQsAmeTSKAOjGrAaIyew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.855 [XNIO-1 task-2] 72nQsAmeTSKAOjGrAaIyew DEBUG com.networknt.schema.TypeValidator debug - validate( "abe09316", "abe09316", serviceId) +08:11:51.858 [XNIO-1 task-2] Xww_UA8pRj-Xj1x4dcqL-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.858 [XNIO-1 task-2] Xww_UA8pRj-Xj1x4dcqL-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.858 [XNIO-1 task-2] Xww_UA8pRj-Xj1x4dcqL-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.858 [XNIO-1 task-2] Xww_UA8pRj-Xj1x4dcqL-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.864 [XNIO-1 task-2] _I3l8cwVR56bcxmldnzrdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/abe09316 +08:11:51.864 [XNIO-1 task-2] _I3l8cwVR56bcxmldnzrdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.864 [XNIO-1 task-2] _I3l8cwVR56bcxmldnzrdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.865 [XNIO-1 task-2] _I3l8cwVR56bcxmldnzrdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/abe09316 +08:11:51.869 [XNIO-1 task-2] 3MmayRJsQI2mp1ignhOfcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.869 [XNIO-1 task-2] 3MmayRJsQI2mp1ignhOfcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.869 [XNIO-1 task-2] 3MmayRJsQI2mp1ignhOfcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.869 [XNIO-1 task-2] 3MmayRJsQI2mp1ignhOfcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.869 [XNIO-1 task-2] 3MmayRJsQI2mp1ignhOfcg DEBUG com.networknt.schema.TypeValidator debug - validate( "abe09316", "abe09316", serviceId) +08:11:51.875 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.875 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.875 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.876 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.876 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.876 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06e90845-a695-4c48-861b-1495ad9fb8b3", {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:51.876 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "abe09316", {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:51.876 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:51.876 [XNIO-1 task-2] a7F5Dk_bTBWozsQwjPJfDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"abe09316","serviceName":"e6f9b050-85b0-4a4d-a200-e2bd9cd1","serviceDesc":"06e90845-a695-4c48-861b-1495ad9fb8b3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.889 [XNIO-1 task-2] TaWTMjQtSySbkEL0cgazXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/abe09316 +08:11:51.889 [XNIO-1 task-2] TaWTMjQtSySbkEL0cgazXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.889 [XNIO-1 task-2] TaWTMjQtSySbkEL0cgazXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.890 [XNIO-1 task-2] TaWTMjQtSySbkEL0cgazXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/abe09316 +08:11:51.893 [XNIO-1 task-2] 65ihNzDEQAmAPPcKK6QTwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.893 [XNIO-1 task-2] 65ihNzDEQAmAPPcKK6QTwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.893 [XNIO-1 task-2] 65ihNzDEQAmAPPcKK6QTwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:51.893 [XNIO-1 task-2] 65ihNzDEQAmAPPcKK6QTwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.893 [XNIO-1 task-2] 65ihNzDEQAmAPPcKK6QTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "abe09316", "abe09316", serviceId) +08:11:51.899 [XNIO-1 task-2] weGO6bbvQ8eV6-5eurFV1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/abe09316 +08:11:51.899 [XNIO-1 task-2] weGO6bbvQ8eV6-5eurFV1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.899 [XNIO-1 task-2] weGO6bbvQ8eV6-5eurFV1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +08:11:51.899 [XNIO-1 task-2] weGO6bbvQ8eV6-5eurFV1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/abe09316, base path is set to: null +08:11:51.899 [XNIO-1 task-2] weGO6bbvQ8eV6-5eurFV1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "abe09316", "abe09316", serviceId) +08:11:51.918 [XNIO-1 task-2] ZeugZSUUT9y0Caewb4Hf6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.918 [XNIO-1 task-2] ZeugZSUUT9y0Caewb4Hf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.918 [XNIO-1 task-2] ZeugZSUUT9y0Caewb4Hf6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +08:11:51.923 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053 +08:11:51.927 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG com.networknt.schema.TypeValidator debug - validate( "da61277f-2ccd-47d7-b6a5-3167ba2dc928", {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG com.networknt.schema.TypeValidator debug - validate( "e99aaf5f", {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:51.928 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:51.929 [XNIO-1 task-2] 2msYbxIpRc-0i4m6Vejx3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e99aaf5f","serviceName":"6ac13847-fcfe-4e88-8b69-b9c799ab","serviceDesc":"da61277f-2ccd-47d7-b6a5-3167ba2dc928","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:51.937 [XNIO-1 task-2] rl75tcUxT82pJU8bEd63fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e99aaf5f +08:11:51.937 [XNIO-1 task-2] rl75tcUxT82pJU8bEd63fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:51.937 [XNIO-1 task-2] rl75tcUxT82pJU8bEd63fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:51.937 [XNIO-1 task-2] rl75tcUxT82pJU8bEd63fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e99aaf5f +08:11:51.950 [XNIO-1 task-2] Ew7liL3_TXCfkYMcMR6zYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.950 [XNIO-1 task-2] Ew7liL3_TXCfkYMcMR6zYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.950 [XNIO-1 task-2] Ew7liL3_TXCfkYMcMR6zYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.950 [XNIO-1 task-2] Ew7liL3_TXCfkYMcMR6zYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.957 [XNIO-1 task-2] aCFiHQ4wSGCpb4qKc0CjvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.958 [XNIO-1 task-2] aCFiHQ4wSGCpb4qKc0CjvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.958 [XNIO-1 task-2] aCFiHQ4wSGCpb4qKc0CjvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.958 [XNIO-1 task-2] aCFiHQ4wSGCpb4qKc0CjvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.963 [XNIO-1 task-2] b9GWIJ4kS3WeTj_qpWkOUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.963 [XNIO-1 task-2] b9GWIJ4kS3WeTj_qpWkOUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.963 [XNIO-1 task-2] b9GWIJ4kS3WeTj_qpWkOUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.963 [XNIO-1 task-2] b9GWIJ4kS3WeTj_qpWkOUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.974 [XNIO-1 task-2] fd2DzgM6T727CUOPx4hIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.974 [XNIO-1 task-2] fd2DzgM6T727CUOPx4hIXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.974 [XNIO-1 task-2] fd2DzgM6T727CUOPx4hIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.974 [XNIO-1 task-2] fd2DzgM6T727CUOPx4hIXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.982 [XNIO-1 task-2] S74EW7tXQDGHfJ66Ya0DiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.982 [XNIO-1 task-2] S74EW7tXQDGHfJ66Ya0DiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.982 [XNIO-1 task-2] S74EW7tXQDGHfJ66Ya0DiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.982 [XNIO-1 task-2] S74EW7tXQDGHfJ66Ya0DiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.991 [XNIO-1 task-2] yMwAFeBpRISQ2DN4hFQIVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.991 [XNIO-1 task-2] yMwAFeBpRISQ2DN4hFQIVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:51.991 [XNIO-1 task-2] yMwAFeBpRISQ2DN4hFQIVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:51.991 [XNIO-1 task-2] yMwAFeBpRISQ2DN4hFQIVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.002 [XNIO-1 task-2] iB06kabcSvKBWjuSeCyfFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.003 [XNIO-1 task-2] iB06kabcSvKBWjuSeCyfFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.003 [XNIO-1 task-2] iB06kabcSvKBWjuSeCyfFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.003 [XNIO-1 task-2] iB06kabcSvKBWjuSeCyfFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.015 [XNIO-1 task-2] ZlnReJooQlOrFuzG6BKm5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.015 [XNIO-1 task-2] ZlnReJooQlOrFuzG6BKm5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.015 [XNIO-1 task-2] ZlnReJooQlOrFuzG6BKm5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.015 [XNIO-1 task-2] ZlnReJooQlOrFuzG6BKm5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.024 [XNIO-1 task-2] MtLqfaR0RhWfYai18QCUpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.024 [XNIO-1 task-2] MtLqfaR0RhWfYai18QCUpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.024 [XNIO-1 task-2] MtLqfaR0RhWfYai18QCUpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.024 [XNIO-1 task-2] MtLqfaR0RhWfYai18QCUpg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.032 [XNIO-1 task-2] Al49gpWkTuqiBIfLz2iCOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.032 [XNIO-1 task-2] Al49gpWkTuqiBIfLz2iCOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.032 [XNIO-1 task-2] Al49gpWkTuqiBIfLz2iCOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.032 [XNIO-1 task-2] Al49gpWkTuqiBIfLz2iCOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.046 [XNIO-1 task-2] GDW52zqkRm-gmRK9Z6yCZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.046 [XNIO-1 task-2] GDW52zqkRm-gmRK9Z6yCZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.046 [XNIO-1 task-2] GDW52zqkRm-gmRK9Z6yCZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.046 [XNIO-1 task-2] GDW52zqkRm-gmRK9Z6yCZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.053 [XNIO-1 task-2] zhpEw090Toi_vTTe-Qmiew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.053 [XNIO-1 task-2] zhpEw090Toi_vTTe-Qmiew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.053 [XNIO-1 task-2] zhpEw090Toi_vTTe-Qmiew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG com.networknt.schema.TypeValidator debug - validate( "df08d21e-8f9b-47a4-92ce-f0aef740", {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.061 [XNIO-1 task-2] CjQLzcDtQSOLMf6yRkSPVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.071 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.071 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.072 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.072 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.072 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.072 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.072 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.072 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "df08d21e-8f9b-47a4-92ce-f0aef740", {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.072 [XNIO-1 task-2] vGcA3Wy2Qoyk9Jp3sXt6Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cae72da5","serviceName":"df08d21e-8f9b-47a4-92ce-f0aef740","serviceDesc":"0d053606-9950-4599-87a4-391623d214d2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.079 [XNIO-1 task-2] Tf5Yhg5PQvO89UnzmQ6fMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cae72da5, base path is set to: null +08:11:52.079 [XNIO-1 task-2] Tf5Yhg5PQvO89UnzmQ6fMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.079 [XNIO-1 task-2] Tf5Yhg5PQvO89UnzmQ6fMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.079 [XNIO-1 task-2] Tf5Yhg5PQvO89UnzmQ6fMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cae72da5, base path is set to: null +08:11:52.079 [XNIO-1 task-2] Tf5Yhg5PQvO89UnzmQ6fMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cae72da5", "cae72da5", serviceId) +08:11:52.087 [XNIO-1 task-2] oxOu3nwIRqeOH6UnByWs6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.087 [XNIO-1 task-2] oxOu3nwIRqeOH6UnByWs6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.087 [XNIO-1 task-2] oxOu3nwIRqeOH6UnByWs6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.087 [XNIO-1 task-2] oxOu3nwIRqeOH6UnByWs6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.096 [XNIO-1 task-2] sAXemX-RSVuiJNk8185MIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.096 [XNIO-1 task-2] sAXemX-RSVuiJNk8185MIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.096 [XNIO-1 task-2] sAXemX-RSVuiJNk8185MIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.108 [XNIO-1 task-2] FlzSUzHzQ0yJBRvo_e7ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1d5dbc3 +08:11:52.108 [XNIO-1 task-2] FlzSUzHzQ0yJBRvo_e7ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.108 [XNIO-1 task-2] FlzSUzHzQ0yJBRvo_e7ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.108 [XNIO-1 task-2] FlzSUzHzQ0yJBRvo_e7ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1d5dbc3 +08:11:52.112 [XNIO-1 task-2] mroCsMqBQUK7HSJUvgZ76Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.113 [XNIO-1 task-2] mroCsMqBQUK7HSJUvgZ76Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.113 [XNIO-1 task-2] mroCsMqBQUK7HSJUvgZ76Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.122 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.122 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.123 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.123 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.123 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.123 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.123 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.123 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ad922935-7f55-4e4f-887a-5f70e6aa", {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.123 [XNIO-1 task-2] H877LPjVRLWxs4gQKX4R9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f2a8d05e","serviceName":"ad922935-7f55-4e4f-887a-5f70e6aa","serviceDesc":"703f3425-f02f-4ada-bdee-e5bba5e5f459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.130 [XNIO-1 task-2] SqapnYUGQE6yJlCkDGNFZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.130 [XNIO-1 task-2] SqapnYUGQE6yJlCkDGNFZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.130 [XNIO-1 task-2] SqapnYUGQE6yJlCkDGNFZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.130 [XNIO-1 task-2] SqapnYUGQE6yJlCkDGNFZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.131 [XNIO-1 task-2] SqapnYUGQE6yJlCkDGNFZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1d5dbc3", "a1d5dbc3", serviceId) +08:11:52.133 [XNIO-1 task-2] WI29uAeXTDujbyOuDYderA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.133 [XNIO-1 task-2] WI29uAeXTDujbyOuDYderA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.133 [XNIO-1 task-2] WI29uAeXTDujbyOuDYderA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.133 [XNIO-1 task-2] WI29uAeXTDujbyOuDYderA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.138 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:964aacd2-3670-4683-ae30-c3a22de50ed6 +08:11:52.144 [XNIO-1 task-2] 4Ase7X69RpaCuE1TmW577g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2a8d05e, base path is set to: null +08:11:52.144 [XNIO-1 task-2] 4Ase7X69RpaCuE1TmW577g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.144 [XNIO-1 task-2] 4Ase7X69RpaCuE1TmW577g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.144 [XNIO-1 task-2] 4Ase7X69RpaCuE1TmW577g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2a8d05e, base path is set to: null +08:11:52.144 [XNIO-1 task-2] 4Ase7X69RpaCuE1TmW577g DEBUG com.networknt.schema.TypeValidator debug - validate( "f2a8d05e", "f2a8d05e", serviceId) +08:11:52.152 [XNIO-1 task-2] afGTn8opTqioRXPVO5VTDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2a8d05e +08:11:52.152 [XNIO-1 task-2] afGTn8opTqioRXPVO5VTDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.152 [XNIO-1 task-2] afGTn8opTqioRXPVO5VTDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.152 [XNIO-1 task-2] afGTn8opTqioRXPVO5VTDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2a8d05e +08:11:52.162 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.162 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.162 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.163 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.163 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.163 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.163 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.163 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG com.networknt.schema.TypeValidator debug - validate( "8b7870ea-b2d5-4869-ada3-da77dfaa", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.163 [XNIO-1 task-2] PhqrCNxNR5Khz6Tb0VH-5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.171 [XNIO-1 task-2] nVrg2hx0SN-0YO42wNK3bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.171 [XNIO-1 task-2] nVrg2hx0SN-0YO42wNK3bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.171 [XNIO-1 task-2] nVrg2hx0SN-0YO42wNK3bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.179 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:964aacd2-3670-4683-ae30-c3a22de50ed6 +08:11:52.180 [XNIO-1 task-2] 1nP_m14ASkSLnCnaiN3XBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5139fa6d +08:11:52.180 [XNIO-1 task-2] 1nP_m14ASkSLnCnaiN3XBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.180 [XNIO-1 task-2] 1nP_m14ASkSLnCnaiN3XBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.180 [XNIO-1 task-2] 1nP_m14ASkSLnCnaiN3XBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5139fa6d +08:11:52.186 [XNIO-1 task-2] 6vG_jf39TIC9QlbRE2xFXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.187 [XNIO-1 task-2] 6vG_jf39TIC9QlbRE2xFXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.187 [XNIO-1 task-2] 6vG_jf39TIC9QlbRE2xFXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.194 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.194 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.194 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.194 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.194 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.194 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.195 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.195 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG com.networknt.schema.TypeValidator debug - validate( "77ef37f4-4654-4f90-a8d5-a84f1078", {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.195 [XNIO-1 task-2] fK70Qq_hQ0-zmxKZ2bTSkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.205 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6c9aa58e-320a-4b95-ac56-c8a5f07311ff +08:11:52.206 [XNIO-1 task-2] RXqDGKaCRRO6Itzl1xnY6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.206 [XNIO-1 task-2] RXqDGKaCRRO6Itzl1xnY6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.206 [XNIO-1 task-2] RXqDGKaCRRO6Itzl1xnY6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.207 [XNIO-1 task-2] RXqDGKaCRRO6Itzl1xnY6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.217 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.217 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.217 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.218 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.218 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.218 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.218 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.218 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b7870ea-b2d5-4869-ada3-da77dfaa", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.218 [XNIO-1 task-2] H2_SafWNSUqhuu1yMiOrPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.221 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6c9aa58e-320a-4b95-ac56-c8a5f07311ff +08:11:52.232 [XNIO-1 task-2] Dc6In2SdQRiK46h_YeeA5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.232 [XNIO-1 task-2] Dc6In2SdQRiK46h_YeeA5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.232 [XNIO-1 task-2] Dc6In2SdQRiK46h_YeeA5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.232 [XNIO-1 task-2] Dc6In2SdQRiK46h_YeeA5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 29, 2024 8:11:52 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +08:11:52.232 [XNIO-1 task-2] Dc6In2SdQRiK46h_YeeA5A DEBUG com.networknt.schema.TypeValidator debug - validate( "d5dc3208-c971-4d1c-947a-309eb46775e0", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG com.networknt.schema.TypeValidator debug - validate( "d5dc3208-c971-4d1c-947a-309eb46775e0", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1d5dbc3", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:52.241 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b7870ea-b2d5-4869-ada3-da77dfaa", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.242 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:52.242 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.242 [XNIO-1 task-2] 0lws5MOnT3qKLW0vNx3agg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +08:11:52.249 [XNIO-1 task-2] iSsVCaJPT-ehuwNkyagtgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.249 [XNIO-1 task-2] iSsVCaJPT-ehuwNkyagtgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + +08:11:52.249 [XNIO-1 task-2] iSsVCaJPT-ehuwNkyagtgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.249 [XNIO-1 task-2] iSsVCaJPT-ehuwNkyagtgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.250 [XNIO-1 task-2] iSsVCaJPT-ehuwNkyagtgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.259 [XNIO-1 task-2] s0EtUoMzTPGj0rVYnp8z_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.259 [XNIO-1 task-2] s0EtUoMzTPGj0rVYnp8z_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.260 [XNIO-1 task-2] s0EtUoMzTPGj0rVYnp8z_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.260 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5c5e2cd0-1a5d-47d5-8b56-a5d80c79d053 +08:11:52.260 [XNIO-1 task-2] s0EtUoMzTPGj0rVYnp8z_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:52.278 [XNIO-1 task-2] ZveUZ52QRg6IrD8HPp7cQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5139fa6d, base path is set to: null +08:11:52.279 [XNIO-1 task-2] ZveUZ52QRg6IrD8HPp7cQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.279 [XNIO-1 task-2] ZveUZ52QRg6IrD8HPp7cQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.279 [XNIO-1 task-2] ZveUZ52QRg6IrD8HPp7cQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5139fa6d, base path is set to: null +08:11:52.279 [XNIO-1 task-2] ZveUZ52QRg6IrD8HPp7cQA DEBUG com.networknt.schema.TypeValidator debug - validate( "5139fa6d", "5139fa6d", serviceId) +08:11:52.281 [XNIO-1 task-2] v634XBrYTuuMRXDMrAGShA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.281 [XNIO-1 task-2] v634XBrYTuuMRXDMrAGShA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.281 [XNIO-1 task-2] v634XBrYTuuMRXDMrAGShA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.281 [XNIO-1 task-2] v634XBrYTuuMRXDMrAGShA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.289 [XNIO-1 task-2] 8Zi6jomtR66PQekWh6a7nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5139fa6d +08:11:52.289 [XNIO-1 task-2] 8Zi6jomtR66PQekWh6a7nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.289 [XNIO-1 task-2] 8Zi6jomtR66PQekWh6a7nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.289 [XNIO-1 task-2] 8Zi6jomtR66PQekWh6a7nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5139fa6d +08:11:52.295 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "77ef37f4-4654-4f90-a8d5-a84f1078", {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.296 [XNIO-1 task-2] 2ZzoYyuCSteBt_cwB9jn_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0941e37d","serviceName":"77ef37f4-4654-4f90-a8d5-a84f1078","serviceDesc":"d0a8fb00-cda5-4a97-a2b4-8d21092d760c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.299 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c0fdef49-783a-4cc6-afbd-8d834bbf5628 +08:11:52.300 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c0fdef49-783a-4cc6-afbd-8d834bbf5628 +08:11:52.308 [XNIO-1 task-2] P6oY06YeQcS9khNrXf4i2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.308 [XNIO-1 task-2] P6oY06YeQcS9khNrXf4i2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.308 [XNIO-1 task-2] P6oY06YeQcS9khNrXf4i2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.318 [XNIO-1 task-2] oSg3gYBiQla7uDPFRQAYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0941e37d +08:11:52.318 [XNIO-1 task-2] oSg3gYBiQla7uDPFRQAYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.318 [XNIO-1 task-2] oSg3gYBiQla7uDPFRQAYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.318 [XNIO-1 task-2] oSg3gYBiQla7uDPFRQAYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0941e37d +08:11:52.325 [XNIO-1 task-2] oI8XsDlwTHyJ0nniLx5T_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.325 [XNIO-1 task-2] oI8XsDlwTHyJ0nniLx5T_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.325 [XNIO-1 task-2] oI8XsDlwTHyJ0nniLx5T_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.325 [XNIO-1 task-2] oI8XsDlwTHyJ0nniLx5T_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.325 [XNIO-1 task-2] oI8XsDlwTHyJ0nniLx5T_w DEBUG com.networknt.schema.TypeValidator debug - validate( "a1d5dbc3", "a1d5dbc3", serviceId) +08:11:52.332 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1ac35138-4a4f-44c8-95a8-04ab18e33d99 +08:11:52.332 [XNIO-1 task-2] 6C6U4phzROGnGSkpOfoCFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.332 [XNIO-1 task-2] 6C6U4phzROGnGSkpOfoCFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.333 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1ac35138-4a4f-44c8-95a8-04ab18e33d99 +08:11:52.344 [XNIO-1 task-2] axc9B5dbSHiXjMBmkMiXRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c37236fb, base path is set to: null +08:11:52.344 [XNIO-1 task-2] axc9B5dbSHiXjMBmkMiXRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.345 [XNIO-1 task-2] axc9B5dbSHiXjMBmkMiXRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.345 [XNIO-1 task-2] axc9B5dbSHiXjMBmkMiXRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c37236fb, base path is set to: null +08:11:52.346 [XNIO-1 task-2] axc9B5dbSHiXjMBmkMiXRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c37236fb", "c37236fb", serviceId) +08:11:52.359 [XNIO-1 task-2] Oka1BXfNSG6BzcLCH1dCCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.359 [XNIO-1 task-2] Oka1BXfNSG6BzcLCH1dCCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.359 [XNIO-1 task-2] Oka1BXfNSG6BzcLCH1dCCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.359 [XNIO-1 task-2] Oka1BXfNSG6BzcLCH1dCCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.364 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.365 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.365 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.366 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.366 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.366 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.366 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.366 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b5c31b10-f158-4515-ab43-9600a7f2", {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.366 [XNIO-1 task-2] j9_1rLnbSqSHyDGhPwVRHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.373 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:90b34f37-f133-4a81-9e94-352b5d3d1fe6 +08:11:52.374 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:90b34f37-f133-4a81-9e94-352b5d3d1fe6 +08:11:52.375 [XNIO-1 task-2] b8RzS6fYToaOz-AAbuZaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1d5dbc3 +08:11:52.375 [XNIO-1 task-2] b8RzS6fYToaOz-AAbuZaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.375 [XNIO-1 task-2] b8RzS6fYToaOz-AAbuZaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.375 [XNIO-1 task-2] b8RzS6fYToaOz-AAbuZaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1d5dbc3 +08:11:52.380 [XNIO-1 task-2] Eziz7r6wR8qigSLTScAZJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.381 [XNIO-1 task-2] Eziz7r6wR8qigSLTScAZJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.381 [XNIO-1 task-2] Eziz7r6wR8qigSLTScAZJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.381 [XNIO-1 task-2] Eziz7r6wR8qigSLTScAZJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.391 [XNIO-1 task-2] k-2n_fCESqSDqgfC7KwA1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.391 [XNIO-1 task-2] k-2n_fCESqSDqgfC7KwA1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.392 [XNIO-1 task-2] k-2n_fCESqSDqgfC7KwA1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.392 [XNIO-1 task-2] k-2n_fCESqSDqgfC7KwA1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.399 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.399 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.400 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.400 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.400 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.400 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.400 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.400 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG com.networknt.schema.TypeValidator debug - validate( "b5c31b10-f158-4515-ab43-9600a7f2", {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.401 [XNIO-1 task-2] GoBGuwJQShG6oTT03l-JYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"820d8b42","serviceName":"b5c31b10-f158-4515-ab43-9600a7f2","serviceDesc":"d379c394-294c-4df0-ae83-b1a52ed90806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.417 [XNIO-1 task-2] p8TDSq-gQ_ef14Qk_lhZww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.417 [XNIO-1 task-2] p8TDSq-gQ_ef14Qk_lhZww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.417 [XNIO-1 task-2] p8TDSq-gQ_ef14Qk_lhZww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.417 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:01974f12 +08:11:52.418 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:01974f12 +08:11:52.425 [XNIO-1 task-2] O_Kndq8WRlaCOZgM9m5SyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/820d8b42 +08:11:52.425 [XNIO-1 task-2] O_Kndq8WRlaCOZgM9m5SyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.425 [XNIO-1 task-2] O_Kndq8WRlaCOZgM9m5SyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.425 [XNIO-1 task-2] O_Kndq8WRlaCOZgM9m5SyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/820d8b42 +08:11:52.429 [XNIO-1 task-2] odFnmc8kQKS8TVX4P5LvkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.429 [XNIO-1 task-2] odFnmc8kQKS8TVX4P5LvkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.429 [XNIO-1 task-2] odFnmc8kQKS8TVX4P5LvkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.442 [XNIO-1 task-2] axodPpa7SgyWWB68QfUcQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.442 [XNIO-1 task-2] axodPpa7SgyWWB68QfUcQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.442 [XNIO-1 task-2] axodPpa7SgyWWB68QfUcQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.455 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.455 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.455 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.456 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.456 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.456 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.456 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.457 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b7870ea-b2d5-4869-ada3-da77dfaa", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.457 [XNIO-1 task-2] FAkzm4OrSe2V8hL9_AIDAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.471 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.471 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.471 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.471 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.471 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.472 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.472 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.472 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "45426476-b2b6-440a-adec-5006dc98", {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.472 [XNIO-1 task-2] IJiqdAQeSE-6oBUpJVAZQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.480 [XNIO-1 task-2] E784f6g0RWOmxWpCZSEDcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/820d8b42, base path is set to: null +08:11:52.480 [XNIO-1 task-2] E784f6g0RWOmxWpCZSEDcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.480 [XNIO-1 task-2] E784f6g0RWOmxWpCZSEDcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.480 [XNIO-1 task-2] E784f6g0RWOmxWpCZSEDcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/820d8b42, base path is set to: null +08:11:52.481 [XNIO-1 task-2] E784f6g0RWOmxWpCZSEDcg DEBUG com.networknt.schema.TypeValidator debug - validate( "820d8b42", "820d8b42", serviceId) +08:11:52.498 [XNIO-1 task-2] inkQNlUSRbKQjLowu2Ydxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.498 [XNIO-1 task-2] inkQNlUSRbKQjLowu2Ydxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.498 [XNIO-1 task-2] inkQNlUSRbKQjLowu2Ydxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.507 [XNIO-1 task-2] E6_F54xuS0OhpDKy3vhXfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d0f182b6 +08:11:52.507 [XNIO-1 task-2] E6_F54xuS0OhpDKy3vhXfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.507 [XNIO-1 task-2] E6_F54xuS0OhpDKy3vhXfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.507 [XNIO-1 task-2] E6_F54xuS0OhpDKy3vhXfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d0f182b6 +08:11:52.509 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8bc4b6c7-9df1-4471-b988-571e5f981207 +08:11:52.509 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8bc4b6c7-9df1-4471-b988-571e5f981207 +08:11:52.510 [XNIO-1 task-2] CD1oGk3vT5GeeuxwKo7FIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.510 [XNIO-1 task-2] CD1oGk3vT5GeeuxwKo7FIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.510 [XNIO-1 task-2] CD1oGk3vT5GeeuxwKo7FIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.510 [XNIO-1 task-2] CD1oGk3vT5GeeuxwKo7FIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.519 [XNIO-1 task-2] KnMFKjZ4RuOI3mwOGwwldQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.519 [XNIO-1 task-2] KnMFKjZ4RuOI3mwOGwwldQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.520 [XNIO-1 task-2] KnMFKjZ4RuOI3mwOGwwldQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.529 [XNIO-1 task-2] utPjadgWRae0JwnMLlyTQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.529 [XNIO-1 task-2] utPjadgWRae0JwnMLlyTQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.529 [XNIO-1 task-2] utPjadgWRae0JwnMLlyTQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.537 [XNIO-1 task-2] -lV20PUzRSOuqdFEqJoTRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.537 [XNIO-1 task-2] -lV20PUzRSOuqdFEqJoTRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.537 [XNIO-1 task-2] -lV20PUzRSOuqdFEqJoTRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.547 [XNIO-1 task-2] o_39bQjNQnS1FFLMMZ33Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.547 [XNIO-1 task-2] o_39bQjNQnS1FFLMMZ33Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.548 [XNIO-1 task-2] o_39bQjNQnS1FFLMMZ33Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.548 [XNIO-1 task-2] o_39bQjNQnS1FFLMMZ33Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.548 [XNIO-1 task-2] o_39bQjNQnS1FFLMMZ33Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1d5dbc3", "a1d5dbc3", serviceId) +08:11:52.554 [XNIO-1 task-2] OcT5Er73RaWgMs7kpUSKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6dbd2d07 +08:11:52.554 [XNIO-1 task-2] OcT5Er73RaWgMs7kpUSKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.554 [XNIO-1 task-2] OcT5Er73RaWgMs7kpUSKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.555 [XNIO-1 task-2] OcT5Er73RaWgMs7kpUSKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6dbd2d07 +08:11:52.560 [XNIO-1 task-2] AM2W0-ofTO-tIA17c1z2Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.560 [XNIO-1 task-2] AM2W0-ofTO-tIA17c1z2Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.560 [XNIO-1 task-2] AM2W0-ofTO-tIA17c1z2Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.571 [XNIO-1 task-2] FbxtBWGkSIuLIjrafBw3Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d0f182b6, base path is set to: null +08:11:52.571 [XNIO-1 task-2] FbxtBWGkSIuLIjrafBw3Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.571 [XNIO-1 task-2] FbxtBWGkSIuLIjrafBw3Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.571 [XNIO-1 task-2] FbxtBWGkSIuLIjrafBw3Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d0f182b6, base path is set to: null +08:11:52.571 [XNIO-1 task-2] FbxtBWGkSIuLIjrafBw3Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "d0f182b6", "d0f182b6", serviceId) +08:11:52.581 [XNIO-1 task-2] W9T5rBQKTAW5RqucAxazhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/765433f9 +08:11:52.581 [XNIO-1 task-2] W9T5rBQKTAW5RqucAxazhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.581 [XNIO-1 task-2] W9T5rBQKTAW5RqucAxazhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.581 [XNIO-1 task-2] W9T5rBQKTAW5RqucAxazhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/765433f9 +08:11:52.587 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.587 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.587 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.587 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.587 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.588 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.588 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.588 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84cc8112-645e-4747-9234-9c2afa37", {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.588 [XNIO-1 task-2] hmS4Get7Rd-w9ExKYQ7-uQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e2512a3d","serviceName":"84cc8112-645e-4747-9234-9c2afa37","serviceDesc":"e381b695-1b56-4e29-a64b-5efad7192cfd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.601 [XNIO-1 task-2] xYlcTMlNQqKRDbOxm6tpxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.601 [XNIO-1 task-2] xYlcTMlNQqKRDbOxm6tpxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.601 [XNIO-1 task-2] xYlcTMlNQqKRDbOxm6tpxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.602 [XNIO-1 task-2] xYlcTMlNQqKRDbOxm6tpxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.609 [XNIO-1 task-2] VIPzJjAPQHCAo4wMyyu-tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.609 [XNIO-1 task-2] VIPzJjAPQHCAo4wMyyu-tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.609 [XNIO-1 task-2] VIPzJjAPQHCAo4wMyyu-tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.609 [XNIO-1 task-2] VIPzJjAPQHCAo4wMyyu-tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.609 [XNIO-1 task-2] VIPzJjAPQHCAo4wMyyu-tA DEBUG com.networknt.schema.TypeValidator debug - validate( "a1d5dbc3", "a1d5dbc3", serviceId) +08:11:52.612 [XNIO-1 task-2] zkUOVPFeRUSuqViwf1C06g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce51231b +08:11:52.612 [XNIO-1 task-2] zkUOVPFeRUSuqViwf1C06g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.612 [XNIO-1 task-2] zkUOVPFeRUSuqViwf1C06g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.612 [XNIO-1 task-2] zkUOVPFeRUSuqViwf1C06g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce51231b +08:11:52.617 [XNIO-1 task-2] ZbYt8nm6TLeDe4hxCJwkGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/765433f9, base path is set to: null +08:11:52.617 [XNIO-1 task-2] ZbYt8nm6TLeDe4hxCJwkGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.617 [XNIO-1 task-2] ZbYt8nm6TLeDe4hxCJwkGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.617 [XNIO-1 task-2] ZbYt8nm6TLeDe4hxCJwkGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/765433f9, base path is set to: null +08:11:52.618 [XNIO-1 task-2] ZbYt8nm6TLeDe4hxCJwkGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "765433f9", "765433f9", serviceId) +08:11:52.620 [XNIO-1 task-2] GdiW3GzzRtSgmxYIwAGUlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/01974f12 +08:11:52.620 [XNIO-1 task-2] GdiW3GzzRtSgmxYIwAGUlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.620 [XNIO-1 task-2] GdiW3GzzRtSgmxYIwAGUlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.620 [XNIO-1 task-2] GdiW3GzzRtSgmxYIwAGUlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/01974f12 +08:11:52.620 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:01974f12 +08:11:52.627 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.627 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.628 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.628 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.628 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.628 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.628 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.628 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG com.networknt.schema.TypeValidator debug - validate( "99aa4b95-3d95-428d-b4bf-9e24d19b", {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.628 [XNIO-1 task-2] JJyvZgnjTcm9LGCYivaFDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e9ba52fe","serviceName":"99aa4b95-3d95-428d-b4bf-9e24d19b","serviceDesc":"3735709f-fa4f-4dbb-a17f-ba006ddc4585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.638 [XNIO-1 task-2] 7XHzeP2DSO6RUUmvTEfvIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.638 [XNIO-1 task-2] 7XHzeP2DSO6RUUmvTEfvIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.638 [XNIO-1 task-2] 7XHzeP2DSO6RUUmvTEfvIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.638 [XNIO-1 task-2] 7XHzeP2DSO6RUUmvTEfvIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.643 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.643 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.644 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.644 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.644 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.644 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.644 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +08:11:52.644 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG com.networknt.schema.TypeValidator debug - validate( "45426476-b2b6-440a-adec-5006dc98", {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.644 [XNIO-1 task-2] XP20TlYdQaK6hJ3K92N6NA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc75ae1a","serviceName":"45426476-b2b6-440a-adec-5006dc98","serviceDesc":"46a1dbc2-3111-44a8-a532-c7b1cc3904f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.652 [XNIO-1 task-2] l4OwlI2iRq2sHwloWT97SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2512a3d, base path is set to: null +08:11:52.652 [XNIO-1 task-2] l4OwlI2iRq2sHwloWT97SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.652 [XNIO-1 task-2] l4OwlI2iRq2sHwloWT97SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.652 [XNIO-1 task-2] l4OwlI2iRq2sHwloWT97SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:52.653 [XNIO-1 task-2] l4OwlI2iRq2sHwloWT97SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e2512a3d +08:11:52.653 [XNIO-1 task-2] l4OwlI2iRq2sHwloWT97SA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2512a3d", "e2512a3d", serviceId) +08:11:52.657 [XNIO-1 task-2] hhWG_DSGSZ-3Vms4xp1v2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2512a3d, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +08:11:52.658 [XNIO-1 task-2] hhWG_DSGSZ-3Vms4xp1v2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +08:11:52.667 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG com.networknt.schema.TypeValidator debug - validate( "cdd5151f-e5c5-4a91-9cb4-ceac80d7", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + +08:11:52.668 [XNIO-1 task-2] qY2XZPJlSOqEgNYZyRqVzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.674 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.674 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.675 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.675 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.675 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.675 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d5dc3208-c971-4d1c-947a-309eb46775e0", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:52.675 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1d5dbc3", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:52.675 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:52.676 [XNIO-1 task-2] wOMrCpdvR6CZ3L-d1cjWLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a1d5dbc3","serviceName":"8b7870ea-b2d5-4869-ada3-da77dfaa","serviceDesc":"d5dc3208-c971-4d1c-947a-309eb46775e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.683 [XNIO-1 task-2] 8ZNKxHhIQAmYZ8T2Vm3YNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1d5dbc3 +08:11:52.683 [XNIO-1 task-2] 8ZNKxHhIQAmYZ8T2Vm3YNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.683 [XNIO-1 task-2] 8ZNKxHhIQAmYZ8T2Vm3YNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.684 [XNIO-1 task-2] 8ZNKxHhIQAmYZ8T2Vm3YNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a1d5dbc3 +08:11:52.691 [XNIO-1 task-2] M7cdVIL-R8ubsYHrznaKhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.691 [XNIO-1 task-2] M7cdVIL-R8ubsYHrznaKhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.692 [XNIO-1 task-2] M7cdVIL-R8ubsYHrznaKhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.692 [XNIO-1 task-2] M7cdVIL-R8ubsYHrznaKhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a1d5dbc3, base path is set to: null +08:11:52.692 [XNIO-1 task-2] M7cdVIL-R8ubsYHrznaKhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1d5dbc3", "a1d5dbc3", serviceId) +08:11:52.721 [XNIO-1 task-2] zyryix6tSC66PCvmJ78CPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce51231b +08:11:52.721 [XNIO-1 task-2] zyryix6tSC66PCvmJ78CPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.721 [XNIO-1 task-2] zyryix6tSC66PCvmJ78CPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +08:11:52.721 [XNIO-1 task-2] zyryix6tSC66PCvmJ78CPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce51231b +08:11:52.730 [XNIO-1 task-2] 6MyfS-Q-QOOMB72SQmDAQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.730 [XNIO-1 task-2] 6MyfS-Q-QOOMB72SQmDAQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.730 [XNIO-1 task-2] 6MyfS-Q-QOOMB72SQmDAQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.738 [XNIO-1 task-2] wVInLc6BSxyUEfnuHuvrqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cc75ae1a, base path is set to: null +08:11:52.739 [XNIO-1 task-2] wVInLc6BSxyUEfnuHuvrqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.739 [XNIO-1 task-2] wVInLc6BSxyUEfnuHuvrqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.739 [XNIO-1 task-2] wVInLc6BSxyUEfnuHuvrqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cc75ae1a, base path is set to: null +08:11:52.739 [XNIO-1 task-2] wVInLc6BSxyUEfnuHuvrqw DEBUG com.networknt.schema.TypeValidator debug - validate( "cc75ae1a", "cc75ae1a", serviceId) +08:11:52.752 [XNIO-1 task-2] Oz0Fq23LQ1-GsuQhcxB4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.752 [XNIO-1 task-2] Oz0Fq23LQ1-GsuQhcxB4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.752 [XNIO-1 task-2] Oz0Fq23LQ1-GsuQhcxB4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.756 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:30eb8470-6ae1-4d03-93b7-c73ac415adce +08:11:52.768 [XNIO-1 task-2] 7jZrNfDCRv2jg2BrS23MSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.768 [XNIO-1 task-2] 7jZrNfDCRv2jg2BrS23MSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.768 [XNIO-1 task-2] 7jZrNfDCRv2jg2BrS23MSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +08:11:52.777 [XNIO-1 task-2] 1S2m5_5HT6S7Uui2HoyRsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e9ba52fe, base path is set to: null +08:11:52.777 [XNIO-1 task-2] 1S2m5_5HT6S7Uui2HoyRsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.777 [XNIO-1 task-2] 1S2m5_5HT6S7Uui2HoyRsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.777 [XNIO-1 task-2] 1S2m5_5HT6S7Uui2HoyRsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e9ba52fe, base path is set to: null +08:11:52.777 [XNIO-1 task-2] 1S2m5_5HT6S7Uui2HoyRsw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9ba52fe", "e9ba52fe", serviceId) +08:11:52.781 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:52.786 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.786 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.786 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.787 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.787 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.787 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG com.networknt.schema.TypeValidator debug - validate( "af4fabff-e823-41d1-8a84-84cad9769998", {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:52.787 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG com.networknt.schema.TypeValidator debug - validate( "5f437170", {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:52.787 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:52.787 [XNIO-1 task-2] zALMQ2_DS-qBgrvZoU-pxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f437170","serviceName":"1c5f178f-4675-40f8-9e1f-8fc285a4","serviceDesc":"af4fabff-e823-41d1-8a84-84cad9769998","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.794 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.794 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.795 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.795 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.795 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +08:11:52.795 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9866f8ef-5835-426f-beda-5988918d28cb", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +08:11:52.795 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "765433f9", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +08:11:52.795 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +08:11:52.795 [XNIO-1 task-2] 7UqHPxsJQvix1r_nn_HDGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"765433f9","serviceName":"cdd5151f-e5c5-4a91-9cb4-ceac80d7","serviceDesc":"9866f8ef-5835-426f-beda-5988918d28cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +08:11:52.805 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:aae6119e +08:11:52.812 [XNIO-1 task-2] k8DZjLuxSfaJyl27LmN9dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9e082352, base path is set to: null +08:11:52.812 [XNIO-1 task-2] k8DZjLuxSfaJyl27LmN9dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +08:11:52.812 [XNIO-1 task-2] k8DZjLuxSfaJyl27LmN9dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +08:11:52.812 [XNIO-1 task-2] k8DZjLuxSfaJyl27LmN9dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9e082352, base path is set to: null +08:11:52.812 [XNIO-1 task-2] k8DZjLuxSfaJyl27LmN9dg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e082352", "9e082352", serviceId) +08:11:52.815 [XNIO-1 task-2] 3XbBdIEnScCdcZNiHITJ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.815 [XNIO-1 task-2] 3XbBdIEnScCdcZNiHITJ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.815 [XNIO-1 task-2] 3XbBdIEnScCdcZNiHITJ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.815 [XNIO-1 task-2] 3XbBdIEnScCdcZNiHITJ4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.828 [XNIO-1 task-2] sW6_6OJkQVa7jexsELocAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.829 [XNIO-1 task-2] sW6_6OJkQVa7jexsELocAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.829 [XNIO-1 task-2] sW6_6OJkQVa7jexsELocAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.829 [XNIO-1 task-2] sW6_6OJkQVa7jexsELocAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.851 [XNIO-1 task-2] DYGRBYYgTn2E2q2khUbNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.851 [XNIO-1 task-2] DYGRBYYgTn2E2q2khUbNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.851 [XNIO-1 task-2] DYGRBYYgTn2E2q2khUbNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.851 [XNIO-1 task-2] DYGRBYYgTn2E2q2khUbNoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.861 [XNIO-1 task-2] b4KoPd3uRIOR9EFU12qbDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +08:11:52.861 [XNIO-1 task-2] b4KoPd3uRIOR9EFU12qbDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service diff --git a/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..65b0e0f --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-token-1.log @@ -0,0 +1,1732 @@ +08:11:48.387 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:37e18cca +08:11:48.393 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:68e0d72e +08:11:48.394 [XNIO-1 task-3] TdlbBtR7QCCKFhhdypITwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.394 [XNIO-1 task-3] TdlbBtR7QCCKFhhdypITwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.394 [XNIO-1 task-3] TdlbBtR7QCCKFhhdypITwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.394 [XNIO-1 task-3] TdlbBtR7QCCKFhhdypITwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 04182ff3-75e7-45e8-80b8-b1b7b61b8250 scope = null +08:11:48.404 [XNIO-1 task-3] TdlbBtR7QCCKFhhdypITwA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:48.410 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:01320eb9-f46e-4d6a-82cb-e2857be1a1d5 +08:11:48.421 [XNIO-1 task-3] uWaNUI6ESKGLs05QSjKiCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.422 [XNIO-1 task-3] uWaNUI6ESKGLs05QSjKiCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.422 [XNIO-1 task-3] uWaNUI6ESKGLs05QSjKiCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.422 [XNIO-1 task-3] uWaNUI6ESKGLs05QSjKiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:48.428 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:01320eb9-f46e-4d6a-82cb-e2857be1a1d5 +08:11:48.435 [XNIO-1 task-3] uWaNUI6ESKGLs05QSjKiCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:48.465 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:80f5c4c8-1775-4db2-9a61-f89b4601e552 +08:11:48.474 [XNIO-1 task-3] y4UOFvovT4ym6iUV6WmCSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.474 [XNIO-1 task-3] y4UOFvovT4ym6iUV6WmCSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.474 [XNIO-1 task-3] y4UOFvovT4ym6iUV6WmCSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.474 [XNIO-1 task-3] y4UOFvovT4ym6iUV6WmCSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:48.480 [XNIO-1 task-3] y4UOFvovT4ym6iUV6WmCSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:48.481 [XNIO-1 task-3] y4UOFvovT4ym6iUV6WmCSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:48.487 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:37e18cca +08:11:48.504 [XNIO-1 task-3] weclt6HRR1OaPydkYxW9sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.504 [XNIO-1 task-3] weclt6HRR1OaPydkYxW9sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.505 [XNIO-1 task-3] weclt6HRR1OaPydkYxW9sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.505 [XNIO-1 task-3] weclt6HRR1OaPydkYxW9sg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:48.516 [XNIO-1 task-3] weclt6HRR1OaPydkYxW9sg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.527 [XNIO-1 task-3] ShWdAoUqSk6whyyc_N6gFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.527 [XNIO-1 task-3] ShWdAoUqSk6whyyc_N6gFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.527 [XNIO-1 task-3] ShWdAoUqSk6whyyc_N6gFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.528 [XNIO-1 task-3] ShWdAoUqSk6whyyc_N6gFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:48.538 [XNIO-1 task-3] ShWdAoUqSk6whyyc_N6gFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.540 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7e02ce7a-7441-45c6-b747-43f717f97067 +08:11:48.542 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7e02ce7a-7441-45c6-b747-43f717f97067 +08:11:48.569 [XNIO-1 task-3] gfltCwhNR0y4-oT7SQLWlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.569 [XNIO-1 task-3] gfltCwhNR0y4-oT7SQLWlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.569 [XNIO-1 task-3] gfltCwhNR0y4-oT7SQLWlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.569 [XNIO-1 task-3] gfltCwhNR0y4-oT7SQLWlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 22M7s_67RJ2CLUuNvhxgAw redirectUri = http://localhost:8080/authorization +08:11:48.575 [XNIO-1 task-3] gfltCwhNR0y4-oT7SQLWlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.584 [XNIO-1 task-3] 3YKJ-TO9TM2dT7GAhKz1gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.584 [XNIO-1 task-3] 3YKJ-TO9TM2dT7GAhKz1gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.584 [XNIO-1 task-3] 3YKJ-TO9TM2dT7GAhKz1gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.584 [XNIO-1 task-3] 3YKJ-TO9TM2dT7GAhKz1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:48.593 [XNIO-1 task-3] 3YKJ-TO9TM2dT7GAhKz1gQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:48.593 [XNIO-1 task-3] 3YKJ-TO9TM2dT7GAhKz1gQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:48.618 [XNIO-1 task-3] l1bQIILfQZu5gzKaT6029A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.619 [XNIO-1 task-3] l1bQIILfQZu5gzKaT6029A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.619 [XNIO-1 task-3] l1bQIILfQZu5gzKaT6029A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.619 [XNIO-1 task-3] l1bQIILfQZu5gzKaT6029A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = d4xIVZEqREer-rKjy7MwNw redirectUri = http://localhost:8080/authorization +08:11:48.624 [XNIO-1 task-3] l1bQIILfQZu5gzKaT6029A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.628 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:68e0d72e +08:11:48.631 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:06ac82f4-b876-4983-8e20-807e9fb8816d +08:11:48.632 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:06ac82f4-b876-4983-8e20-807e9fb8816d +08:11:48.642 [XNIO-1 task-3] rXXEOz2NTAuzEh9JnqQuGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.642 [XNIO-1 task-3] rXXEOz2NTAuzEh9JnqQuGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.642 [XNIO-1 task-3] rXXEOz2NTAuzEh9JnqQuGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.642 [XNIO-1 task-3] rXXEOz2NTAuzEh9JnqQuGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = TuAORKvYRyGZRrVsRJLkhw redirectUri = http://localhost:8080/authorization +08:11:48.647 [XNIO-1 task-3] rXXEOz2NTAuzEh9JnqQuGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.660 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:06ac82f4-b876-4983-8e20-807e9fb8816d +08:11:48.678 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:de2a4836-399f-4be4-a81f-eaac05cd6dbe +08:11:48.684 [XNIO-1 task-3] KvpNq1ERRD6cbNhzkGlIUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.684 [XNIO-1 task-3] KvpNq1ERRD6cbNhzkGlIUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.684 [XNIO-1 task-3] KvpNq1ERRD6cbNhzkGlIUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.684 [XNIO-1 task-3] KvpNq1ERRD6cbNhzkGlIUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:48.686 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a1703e38 +08:11:48.694 [XNIO-1 task-3] KvpNq1ERRD6cbNhzkGlIUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.710 [XNIO-1 task-3] KUgb-XLsSQqmnB5_7slBow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.710 [XNIO-1 task-3] KUgb-XLsSQqmnB5_7slBow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.710 [XNIO-1 task-3] KUgb-XLsSQqmnB5_7slBow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.710 [XNIO-1 task-3] KUgb-XLsSQqmnB5_7slBow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:48.721 [XNIO-1 task-3] KUgb-XLsSQqmnB5_7slBow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.757 [XNIO-1 task-3] LWv8aXrfTpCRotJCIoDnpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.758 [XNIO-1 task-3] LWv8aXrfTpCRotJCIoDnpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.758 [XNIO-1 task-3] LWv8aXrfTpCRotJCIoDnpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.759 [XNIO-1 task-3] LWv8aXrfTpCRotJCIoDnpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:48.764 [XNIO-1 task-3] LWv8aXrfTpCRotJCIoDnpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:48.764 [XNIO-1 task-3] LWv8aXrfTpCRotJCIoDnpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:48.783 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:68e0d72e +08:11:48.900 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f41f7bf0 +08:11:48.909 [XNIO-1 task-3] HCuAoVp6SYi98ISpyY_LWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.909 [XNIO-1 task-3] HCuAoVp6SYi98ISpyY_LWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.909 [XNIO-1 task-3] HCuAoVp6SYi98ISpyY_LWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.909 [XNIO-1 task-3] HCuAoVp6SYi98ISpyY_LWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:48.917 [XNIO-1 task-3] HCuAoVp6SYi98ISpyY_LWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:48.917 [XNIO-1 task-3] HCuAoVp6SYi98ISpyY_LWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:48.919 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6e821879-4ca6-4cba-b9a1-416b7bd5720c +08:11:48.930 [XNIO-1 task-3] XxJrZOOmS9CBh_cIJwnC1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.930 [XNIO-1 task-3] XxJrZOOmS9CBh_cIJwnC1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:48.930 [XNIO-1 task-3] XxJrZOOmS9CBh_cIJwnC1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:48.930 [XNIO-1 task-3] XxJrZOOmS9CBh_cIJwnC1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:48.935 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6e821879-4ca6-4cba-b9a1-416b7bd5720c +08:11:48.940 [XNIO-1 task-3] XxJrZOOmS9CBh_cIJwnC1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:48.976 [XNIO-1 task-3] 3oIEAWOASlyFS8hZ1f6sEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.976 [XNIO-1 task-3] 3oIEAWOASlyFS8hZ1f6sEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.976 [XNIO-1 task-3] 3oIEAWOASlyFS8hZ1f6sEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:48.976 [XNIO-1 task-3] 3oIEAWOASlyFS8hZ1f6sEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = icGEGzJVR5KldbDLwMxlaQ redirectUri = http://localhost:8080/authorization +08:11:48.982 [XNIO-1 task-3] 3oIEAWOASlyFS8hZ1f6sEg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:48.984 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b2032193-24dd-49b1-8f53-0f9a5761eb67 +08:11:49.000 [XNIO-1 task-3] DZVPBJ9bQQ2Tt_PCLdiBYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.000 [XNIO-1 task-3] DZVPBJ9bQQ2Tt_PCLdiBYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:49.000 [XNIO-1 task-3] DZVPBJ9bQQ2Tt_PCLdiBYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.000 [XNIO-1 task-3] DZVPBJ9bQQ2Tt_PCLdiBYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:49.008 [XNIO-1 task-3] DZVPBJ9bQQ2Tt_PCLdiBYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:49.008 [XNIO-1 task-3] DZVPBJ9bQQ2Tt_PCLdiBYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:49.075 [XNIO-1 task-3] WVuzFtZVR_ibJaQ0UXuY5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.075 [XNIO-1 task-3] WVuzFtZVR_ibJaQ0UXuY5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.075 [XNIO-1 task-3] WVuzFtZVR_ibJaQ0UXuY5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.075 [XNIO-1 task-3] WVuzFtZVR_ibJaQ0UXuY5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dxvHjrHCQpC0e7cb8s3q_Q redirectUri = http://localhost:8080/authorization +08:11:49.081 [XNIO-1 task-3] WVuzFtZVR_ibJaQ0UXuY5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:49.126 [XNIO-1 task-3] GEkyPn5_SUWKGClx-8J-uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.127 [XNIO-1 task-3] GEkyPn5_SUWKGClx-8J-uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:49.127 [XNIO-1 task-3] GEkyPn5_SUWKGClx-8J-uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.127 [XNIO-1 task-3] GEkyPn5_SUWKGClx-8J-uA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:49.134 [XNIO-1 task-3] GEkyPn5_SUWKGClx-8J-uA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:49.134 [XNIO-1 task-3] GEkyPn5_SUWKGClx-8J-uA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:49.136 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a171d97a-1cba-4df3-8deb-d68297eec9fb +08:11:49.143 [XNIO-1 task-3] KzvpiHyrSQWqkRHQEGCIpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.143 [XNIO-1 task-3] KzvpiHyrSQWqkRHQEGCIpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.143 [XNIO-1 task-3] KzvpiHyrSQWqkRHQEGCIpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.143 [XNIO-1 task-3] KzvpiHyrSQWqkRHQEGCIpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a171d97a-1cba-4df3-8deb-d68297eec9fb scope = null +08:11:49.145 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da858682 +08:11:49.149 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a171d97a-1cba-4df3-8deb-d68297eec9fb +08:11:49.153 [XNIO-1 task-3] KzvpiHyrSQWqkRHQEGCIpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:49.162 [XNIO-1 task-3] B6lTVsFdRZyBJpNqnIwj-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.162 [XNIO-1 task-3] B6lTVsFdRZyBJpNqnIwj-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:49.162 [XNIO-1 task-3] B6lTVsFdRZyBJpNqnIwj-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.163 [XNIO-1 task-3] B6lTVsFdRZyBJpNqnIwj-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:49.170 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:da858682 +08:11:49.173 [XNIO-1 task-3] B6lTVsFdRZyBJpNqnIwj-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:49.180 [XNIO-1 task-2] AGRPsc4fRVWNJDRhan27rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.180 [XNIO-1 task-2] AGRPsc4fRVWNJDRhan27rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.181 [XNIO-1 task-2] AGRPsc4fRVWNJDRhan27rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.181 [XNIO-1 task-2] AGRPsc4fRVWNJDRhan27rQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = k64kU1CoQb2jfzKuEnPvuQ redirectUri = http://localhost:8080/authorization +08:11:49.183 [XNIO-1 task-3] gg7bOwIxTvKcT9lRLv-3eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.183 [XNIO-1 task-3] gg7bOwIxTvKcT9lRLv-3eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.183 [XNIO-1 task-3] gg7bOwIxTvKcT9lRLv-3eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.183 [XNIO-1 task-3] gg7bOwIxTvKcT9lRLv-3eA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1b6f9187-b1eb-4433-a26b-29f84a587418 scope = null +08:11:49.188 [XNIO-1 task-2] AGRPsc4fRVWNJDRhan27rQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:49.196 [XNIO-1 task-3] gg7bOwIxTvKcT9lRLv-3eA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:49.207 [XNIO-1 task-3] p-fwz5rLSL2vKxtXMMBoUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.207 [XNIO-1 task-3] p-fwz5rLSL2vKxtXMMBoUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.207 [XNIO-1 task-3] p-fwz5rLSL2vKxtXMMBoUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.208 [XNIO-1 task-3] p-fwz5rLSL2vKxtXMMBoUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sOcI5bO5Q5mHrYlOjQqi7g redirectUri = http://localhost:8080/authorization +08:11:49.213 [XNIO-1 task-3] p-fwz5rLSL2vKxtXMMBoUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:49.221 [XNIO-1 task-2] bpRdQz7wRSGA9YqPm0x2mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.222 [XNIO-1 task-2] bpRdQz7wRSGA9YqPm0x2mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:49.222 [XNIO-1 task-2] bpRdQz7wRSGA9YqPm0x2mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:49.222 [XNIO-1 task-2] bpRdQz7wRSGA9YqPm0x2mA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:49.229 [XNIO-1 task-2] bpRdQz7wRSGA9YqPm0x2mA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:49.229 [XNIO-1 task-2] bpRdQz7wRSGA9YqPm0x2mA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:49.264 [XNIO-1 task-2] 27sXVZlbQnimNWNLUZeV8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.265 [XNIO-1 task-2] 27sXVZlbQnimNWNLUZeV8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.265 [XNIO-1 task-2] 27sXVZlbQnimNWNLUZeV8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:49.265 [XNIO-1 task-2] 27sXVZlbQnimNWNLUZeV8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = q6_aI0AjQz-pfYyxUM-7mQ redirectUri = http://localhost:8080/authorization +08:11:49.271 [XNIO-1 task-2] 27sXVZlbQnimNWNLUZeV8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:49.294 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a376c95d +08:11:49.295 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a376c95d +08:11:50.032 [XNIO-1 task-4] sZ_091QgQhGtXsySpfkA2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.032 [XNIO-1 task-4] sZ_091QgQhGtXsySpfkA2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.032 [XNIO-1 task-4] sZ_091QgQhGtXsySpfkA2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.032 [XNIO-1 task-4] sZ_091QgQhGtXsySpfkA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.037 [XNIO-1 task-4] sZ_091QgQhGtXsySpfkA2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.043 [XNIO-1 task-4] aNKLyv8VQs-DtJ2-4zK5Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.043 [XNIO-1 task-4] aNKLyv8VQs-DtJ2-4zK5Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.043 [XNIO-1 task-4] aNKLyv8VQs-DtJ2-4zK5Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.043 [XNIO-1 task-4] aNKLyv8VQs-DtJ2-4zK5Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.048 [XNIO-1 task-4] aNKLyv8VQs-DtJ2-4zK5Lg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.051 [XNIO-1 task-4] nd48UqCoQEihGosBgjcwQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.051 [XNIO-1 task-4] nd48UqCoQEihGosBgjcwQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.052 [XNIO-1 task-4] nd48UqCoQEihGosBgjcwQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.052 [XNIO-1 task-4] nd48UqCoQEihGosBgjcwQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.057 [XNIO-1 task-4] nd48UqCoQEihGosBgjcwQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.061 [XNIO-1 task-4] djFPpR0cQymcPe6Pv6-bKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.061 [XNIO-1 task-4] djFPpR0cQymcPe6Pv6-bKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.061 [XNIO-1 task-4] djFPpR0cQymcPe6Pv6-bKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.061 [XNIO-1 task-4] djFPpR0cQymcPe6Pv6-bKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:50.066 [XNIO-1 task-4] djFPpR0cQymcPe6Pv6-bKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.069 [XNIO-1 task-4] _nT0g5s6QIyqmBNWQjHq-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.069 [XNIO-1 task-4] _nT0g5s6QIyqmBNWQjHq-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.069 [XNIO-1 task-4] _nT0g5s6QIyqmBNWQjHq-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.070 [XNIO-1 task-4] _nT0g5s6QIyqmBNWQjHq-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.075 [XNIO-1 task-4] _nT0g5s6QIyqmBNWQjHq-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.078 [XNIO-1 task-4] 8AXsTq7ZSIqx7NRwwi7PLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.078 [XNIO-1 task-4] 8AXsTq7ZSIqx7NRwwi7PLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.078 [XNIO-1 task-4] 8AXsTq7ZSIqx7NRwwi7PLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.078 [XNIO-1 task-4] 8AXsTq7ZSIqx7NRwwi7PLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.084 [XNIO-1 task-4] 8AXsTq7ZSIqx7NRwwi7PLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.087 [XNIO-1 task-4] 03PrjYbxTFOPHm7WWXIjDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.087 [XNIO-1 task-4] 03PrjYbxTFOPHm7WWXIjDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.087 [XNIO-1 task-4] 03PrjYbxTFOPHm7WWXIjDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.087 [XNIO-1 task-4] 03PrjYbxTFOPHm7WWXIjDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.092 [XNIO-1 task-4] 03PrjYbxTFOPHm7WWXIjDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.096 [XNIO-1 task-4] bguqxZzGQlaCEcauXyyYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.096 [XNIO-1 task-4] bguqxZzGQlaCEcauXyyYcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.096 [XNIO-1 task-4] bguqxZzGQlaCEcauXyyYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.096 [XNIO-1 task-4] bguqxZzGQlaCEcauXyyYcw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.100 [XNIO-1 task-4] bguqxZzGQlaCEcauXyyYcw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.104 [XNIO-1 task-4] RFP2WRKeSh2uLVlzoBeUHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.104 [XNIO-1 task-4] RFP2WRKeSh2uLVlzoBeUHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.104 [XNIO-1 task-4] RFP2WRKeSh2uLVlzoBeUHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.104 [XNIO-1 task-4] RFP2WRKeSh2uLVlzoBeUHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.108 [XNIO-1 task-4] RFP2WRKeSh2uLVlzoBeUHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.112 [XNIO-1 task-4] VhzcWh5qTgGwD5g6y7lYzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.113 [XNIO-1 task-4] VhzcWh5qTgGwD5g6y7lYzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.113 [XNIO-1 task-4] VhzcWh5qTgGwD5g6y7lYzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.113 [XNIO-1 task-4] VhzcWh5qTgGwD5g6y7lYzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.118 [XNIO-1 task-4] VhzcWh5qTgGwD5g6y7lYzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.120 [XNIO-1 task-4] XtCTtqO4QbOZIflEBx81gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.120 [XNIO-1 task-4] XtCTtqO4QbOZIflEBx81gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.121 [XNIO-1 task-4] XtCTtqO4QbOZIflEBx81gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.121 [XNIO-1 task-4] XtCTtqO4QbOZIflEBx81gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.126 [XNIO-1 task-4] XtCTtqO4QbOZIflEBx81gQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.131 [XNIO-1 task-4] ewGLrWGbR7-ZKWYCJU7VcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.131 [XNIO-1 task-4] ewGLrWGbR7-ZKWYCJU7VcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.131 [XNIO-1 task-4] ewGLrWGbR7-ZKWYCJU7VcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.131 [XNIO-1 task-4] ewGLrWGbR7-ZKWYCJU7VcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:50.136 [XNIO-1 task-4] ewGLrWGbR7-ZKWYCJU7VcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.141 [XNIO-1 task-4] _Jh7maPQSMqIIMoB3hqxQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.141 [XNIO-1 task-4] _Jh7maPQSMqIIMoB3hqxQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.141 [XNIO-1 task-4] _Jh7maPQSMqIIMoB3hqxQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.141 [XNIO-1 task-4] _Jh7maPQSMqIIMoB3hqxQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:50.146 [XNIO-1 task-4] _Jh7maPQSMqIIMoB3hqxQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.149 [XNIO-1 task-4] EBqP8AyFToyEnojrAS91rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.149 [XNIO-1 task-4] EBqP8AyFToyEnojrAS91rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.149 [XNIO-1 task-4] EBqP8AyFToyEnojrAS91rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.150 [XNIO-1 task-4] EBqP8AyFToyEnojrAS91rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:50.154 [XNIO-1 task-4] EBqP8AyFToyEnojrAS91rQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.158 [XNIO-1 task-4] A676ojSvRw67Mlc_TjjgJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.158 [XNIO-1 task-4] A676ojSvRw67Mlc_TjjgJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.158 [XNIO-1 task-4] A676ojSvRw67Mlc_TjjgJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.158 [XNIO-1 task-4] A676ojSvRw67Mlc_TjjgJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:50.163 [XNIO-1 task-4] A676ojSvRw67Mlc_TjjgJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.166 [XNIO-1 task-4] NPJ11GroQNWWda0m9RS2wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.166 [XNIO-1 task-4] NPJ11GroQNWWda0m9RS2wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.166 [XNIO-1 task-4] NPJ11GroQNWWda0m9RS2wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.166 [XNIO-1 task-4] NPJ11GroQNWWda0m9RS2wg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:50.171 [XNIO-1 task-4] NPJ11GroQNWWda0m9RS2wg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.175 [XNIO-1 task-4] hasgRN0uTkeKu1Nx-lnmow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.175 [XNIO-1 task-4] hasgRN0uTkeKu1Nx-lnmow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.175 [XNIO-1 task-4] hasgRN0uTkeKu1Nx-lnmow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.175 [XNIO-1 task-4] hasgRN0uTkeKu1Nx-lnmow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:50.180 [XNIO-1 task-4] hasgRN0uTkeKu1Nx-lnmow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.184 [XNIO-1 task-4] 6s4uobMZSC2CMe_KxOtqug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.184 [XNIO-1 task-4] 6s4uobMZSC2CMe_KxOtqug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.184 [XNIO-1 task-4] 6s4uobMZSC2CMe_KxOtqug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.184 [XNIO-1 task-4] 6s4uobMZSC2CMe_KxOtqug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:50.189 [XNIO-1 task-4] 6s4uobMZSC2CMe_KxOtqug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.197 [XNIO-1 task-4] JIwNzOu7TYyDTC74Aej3tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.197 [XNIO-1 task-4] JIwNzOu7TYyDTC74Aej3tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.197 [XNIO-1 task-4] JIwNzOu7TYyDTC74Aej3tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.197 [XNIO-1 task-4] JIwNzOu7TYyDTC74Aej3tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.202 [XNIO-1 task-4] JIwNzOu7TYyDTC74Aej3tQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.206 [XNIO-1 task-4] 9Ed2XDTWRmmp1RyxbFtr-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.206 [XNIO-1 task-4] 9Ed2XDTWRmmp1RyxbFtr-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.206 [XNIO-1 task-4] 9Ed2XDTWRmmp1RyxbFtr-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.206 [XNIO-1 task-4] 9Ed2XDTWRmmp1RyxbFtr-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.210 [XNIO-1 task-4] 9Ed2XDTWRmmp1RyxbFtr-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.215 [XNIO-1 task-4] USnWA1xoSHSPNskr3MsJxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.215 [XNIO-1 task-4] USnWA1xoSHSPNskr3MsJxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.215 [XNIO-1 task-4] USnWA1xoSHSPNskr3MsJxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.215 [XNIO-1 task-4] USnWA1xoSHSPNskr3MsJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.220 [XNIO-1 task-4] USnWA1xoSHSPNskr3MsJxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.224 [XNIO-1 task-4] CcWd36rqQ1mEEqDG6zQaBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.224 [XNIO-1 task-4] CcWd36rqQ1mEEqDG6zQaBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.224 [XNIO-1 task-4] CcWd36rqQ1mEEqDG6zQaBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.225 [XNIO-1 task-4] CcWd36rqQ1mEEqDG6zQaBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.229 [XNIO-1 task-4] CcWd36rqQ1mEEqDG6zQaBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.234 [XNIO-1 task-4] obm_EEhaTnWr7v2NuLLnJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.234 [XNIO-1 task-4] obm_EEhaTnWr7v2NuLLnJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.234 [XNIO-1 task-4] obm_EEhaTnWr7v2NuLLnJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.234 [XNIO-1 task-4] obm_EEhaTnWr7v2NuLLnJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.238 [XNIO-1 task-4] obm_EEhaTnWr7v2NuLLnJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.242 [XNIO-1 task-4] U7JY3wXATuamMsuGccfW1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.242 [XNIO-1 task-4] U7JY3wXATuamMsuGccfW1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.242 [XNIO-1 task-4] U7JY3wXATuamMsuGccfW1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.242 [XNIO-1 task-4] U7JY3wXATuamMsuGccfW1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.247 [XNIO-1 task-4] U7JY3wXATuamMsuGccfW1A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.250 [XNIO-1 task-4] NFNoMOZPSPWaza8C1_XoXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.251 [XNIO-1 task-4] NFNoMOZPSPWaza8C1_XoXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.251 [XNIO-1 task-4] NFNoMOZPSPWaza8C1_XoXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.251 [XNIO-1 task-4] NFNoMOZPSPWaza8C1_XoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.255 [XNIO-1 task-4] NFNoMOZPSPWaza8C1_XoXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.259 [XNIO-1 task-4] GgOye7cLTPuSsC_RFUdL8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.259 [XNIO-1 task-4] GgOye7cLTPuSsC_RFUdL8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.259 [XNIO-1 task-4] GgOye7cLTPuSsC_RFUdL8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.259 [XNIO-1 task-4] GgOye7cLTPuSsC_RFUdL8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.264 [XNIO-1 task-4] GgOye7cLTPuSsC_RFUdL8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.267 [XNIO-1 task-4] sO7OtRyyS_WaQgUsccDPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.267 [XNIO-1 task-4] sO7OtRyyS_WaQgUsccDPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.267 [XNIO-1 task-4] sO7OtRyyS_WaQgUsccDPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.267 [XNIO-1 task-4] sO7OtRyyS_WaQgUsccDPgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.272 [XNIO-1 task-4] sO7OtRyyS_WaQgUsccDPgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.276 [XNIO-1 task-4] hoG92kZqQA2-A9A7xhm8GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.276 [XNIO-1 task-4] hoG92kZqQA2-A9A7xhm8GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.276 [XNIO-1 task-4] hoG92kZqQA2-A9A7xhm8GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.276 [XNIO-1 task-4] hoG92kZqQA2-A9A7xhm8GA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.281 [XNIO-1 task-4] hoG92kZqQA2-A9A7xhm8GA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.284 [XNIO-1 task-4] ne0LCLViR4e_cge5G6EgjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.285 [XNIO-1 task-4] ne0LCLViR4e_cge5G6EgjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.285 [XNIO-1 task-4] ne0LCLViR4e_cge5G6EgjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.285 [XNIO-1 task-4] ne0LCLViR4e_cge5G6EgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.289 [XNIO-1 task-4] ne0LCLViR4e_cge5G6EgjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.293 [XNIO-1 task-4] 6Ezwy-8RRNC4vCAp9O1GmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.293 [XNIO-1 task-4] 6Ezwy-8RRNC4vCAp9O1GmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.293 [XNIO-1 task-4] 6Ezwy-8RRNC4vCAp9O1GmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.294 [XNIO-1 task-4] 6Ezwy-8RRNC4vCAp9O1GmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:50.298 [XNIO-1 task-4] 6Ezwy-8RRNC4vCAp9O1GmA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.302 [XNIO-1 task-4] mkucH2P5TLuP2rY9RQpsVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.302 [XNIO-1 task-4] mkucH2P5TLuP2rY9RQpsVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.302 [XNIO-1 task-4] mkucH2P5TLuP2rY9RQpsVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.302 [XNIO-1 task-4] mkucH2P5TLuP2rY9RQpsVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:50.306 [XNIO-1 task-4] mkucH2P5TLuP2rY9RQpsVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.310 [XNIO-1 task-4] plh_wV_RTyuUo-0lolQZgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.310 [XNIO-1 task-4] plh_wV_RTyuUo-0lolQZgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.310 [XNIO-1 task-4] plh_wV_RTyuUo-0lolQZgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.310 [XNIO-1 task-4] plh_wV_RTyuUo-0lolQZgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:50.315 [XNIO-1 task-4] plh_wV_RTyuUo-0lolQZgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.319 [XNIO-1 task-4] __7F4j1AQSKRZcovS7saMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.319 [XNIO-1 task-4] __7F4j1AQSKRZcovS7saMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.319 [XNIO-1 task-4] __7F4j1AQSKRZcovS7saMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.319 [XNIO-1 task-4] __7F4j1AQSKRZcovS7saMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:50.324 [XNIO-1 task-4] __7F4j1AQSKRZcovS7saMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.327 [XNIO-1 task-4] Vk9BNWuhR-eV_TAtZJ_qXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.328 [XNIO-1 task-4] Vk9BNWuhR-eV_TAtZJ_qXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.328 [XNIO-1 task-4] Vk9BNWuhR-eV_TAtZJ_qXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.328 [XNIO-1 task-4] Vk9BNWuhR-eV_TAtZJ_qXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:50.332 [XNIO-1 task-4] Vk9BNWuhR-eV_TAtZJ_qXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.336 [XNIO-1 task-4] t3NPP1aiRuGN9uzjsix3aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.336 [XNIO-1 task-4] t3NPP1aiRuGN9uzjsix3aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.336 [XNIO-1 task-4] t3NPP1aiRuGN9uzjsix3aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.336 [XNIO-1 task-4] t3NPP1aiRuGN9uzjsix3aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:50.340 [XNIO-1 task-4] t3NPP1aiRuGN9uzjsix3aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.345 [XNIO-1 task-4] MI6PKJ9-S1i_MmC4vC6Uew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.345 [XNIO-1 task-4] MI6PKJ9-S1i_MmC4vC6Uew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.345 [XNIO-1 task-4] MI6PKJ9-S1i_MmC4vC6Uew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.345 [XNIO-1 task-4] MI6PKJ9-S1i_MmC4vC6Uew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.351 [XNIO-1 task-4] MI6PKJ9-S1i_MmC4vC6Uew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.356 [XNIO-1 task-4] gfF7WS7ZTHef7amc4aE07w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.356 [XNIO-1 task-4] gfF7WS7ZTHef7amc4aE07w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.356 [XNIO-1 task-4] gfF7WS7ZTHef7amc4aE07w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.356 [XNIO-1 task-4] gfF7WS7ZTHef7amc4aE07w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.362 [XNIO-1 task-4] gfF7WS7ZTHef7amc4aE07w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.366 [XNIO-1 task-4] 3W5eAQDVSvmtXLHjKTrsiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.366 [XNIO-1 task-4] 3W5eAQDVSvmtXLHjKTrsiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.366 [XNIO-1 task-4] 3W5eAQDVSvmtXLHjKTrsiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.366 [XNIO-1 task-4] 3W5eAQDVSvmtXLHjKTrsiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.370 [XNIO-1 task-4] 3W5eAQDVSvmtXLHjKTrsiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.374 [XNIO-1 task-4] H541bpI5QpOuY9Y6sVwLNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.374 [XNIO-1 task-4] H541bpI5QpOuY9Y6sVwLNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.374 [XNIO-1 task-4] H541bpI5QpOuY9Y6sVwLNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.374 [XNIO-1 task-4] H541bpI5QpOuY9Y6sVwLNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.379 [XNIO-1 task-4] H541bpI5QpOuY9Y6sVwLNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.382 [XNIO-1 task-4] 0I8udrFKRhqqZJycRmaJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.383 [XNIO-1 task-4] 0I8udrFKRhqqZJycRmaJWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.383 [XNIO-1 task-4] 0I8udrFKRhqqZJycRmaJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.383 [XNIO-1 task-4] 0I8udrFKRhqqZJycRmaJWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.387 [XNIO-1 task-4] 0I8udrFKRhqqZJycRmaJWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.391 [XNIO-1 task-4] A6TccRUaRoSrIaDMNH4euw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.391 [XNIO-1 task-4] A6TccRUaRoSrIaDMNH4euw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.391 [XNIO-1 task-4] A6TccRUaRoSrIaDMNH4euw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.391 [XNIO-1 task-4] A6TccRUaRoSrIaDMNH4euw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.396 [XNIO-1 task-4] A6TccRUaRoSrIaDMNH4euw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.399 [XNIO-1 task-4] aJZCcQThQwuSlQztzU_Qsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.399 [XNIO-1 task-4] aJZCcQThQwuSlQztzU_Qsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.399 [XNIO-1 task-4] aJZCcQThQwuSlQztzU_Qsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.399 [XNIO-1 task-4] aJZCcQThQwuSlQztzU_Qsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.404 [XNIO-1 task-4] aJZCcQThQwuSlQztzU_Qsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.407 [XNIO-1 task-4] qbfuFNjrTISQvuJzHL-DEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.407 [XNIO-1 task-4] qbfuFNjrTISQvuJzHL-DEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.407 [XNIO-1 task-4] qbfuFNjrTISQvuJzHL-DEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.407 [XNIO-1 task-4] qbfuFNjrTISQvuJzHL-DEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.412 [XNIO-1 task-4] qbfuFNjrTISQvuJzHL-DEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.415 [XNIO-1 task-4] nOWLKA8tQf60F-l-dxTAPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.416 [XNIO-1 task-4] nOWLKA8tQf60F-l-dxTAPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.416 [XNIO-1 task-4] nOWLKA8tQf60F-l-dxTAPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.416 [XNIO-1 task-4] nOWLKA8tQf60F-l-dxTAPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.420 [XNIO-1 task-4] nOWLKA8tQf60F-l-dxTAPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.424 [XNIO-1 task-4] LmVg-uslSsS19EhICP-Q2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.424 [XNIO-1 task-4] LmVg-uslSsS19EhICP-Q2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.424 [XNIO-1 task-4] LmVg-uslSsS19EhICP-Q2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.424 [XNIO-1 task-4] LmVg-uslSsS19EhICP-Q2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.428 [XNIO-1 task-4] LmVg-uslSsS19EhICP-Q2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.432 [XNIO-1 task-4] YHNAb1aOSsKdEVcQ9EunLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.432 [XNIO-1 task-4] YHNAb1aOSsKdEVcQ9EunLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.432 [XNIO-1 task-4] YHNAb1aOSsKdEVcQ9EunLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.432 [XNIO-1 task-4] YHNAb1aOSsKdEVcQ9EunLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:50.437 [XNIO-1 task-4] YHNAb1aOSsKdEVcQ9EunLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.440 [XNIO-1 task-4] P0D6og7RSSyhU5XtiRCR9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.440 [XNIO-1 task-4] P0D6og7RSSyhU5XtiRCR9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.440 [XNIO-1 task-4] P0D6og7RSSyhU5XtiRCR9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.440 [XNIO-1 task-4] P0D6og7RSSyhU5XtiRCR9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:50.445 [XNIO-1 task-4] P0D6og7RSSyhU5XtiRCR9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.449 [XNIO-1 task-4] VtmsmtPuQgOADUIBLlx5Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.449 [XNIO-1 task-4] VtmsmtPuQgOADUIBLlx5Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.449 [XNIO-1 task-4] VtmsmtPuQgOADUIBLlx5Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.449 [XNIO-1 task-4] VtmsmtPuQgOADUIBLlx5Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.454 [XNIO-1 task-4] VtmsmtPuQgOADUIBLlx5Pg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.457 [XNIO-1 task-4] 34E2aNjiRYKTQqTn-6M3pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.457 [XNIO-1 task-4] 34E2aNjiRYKTQqTn-6M3pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.457 [XNIO-1 task-4] 34E2aNjiRYKTQqTn-6M3pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.458 [XNIO-1 task-4] 34E2aNjiRYKTQqTn-6M3pA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.462 [XNIO-1 task-4] 34E2aNjiRYKTQqTn-6M3pA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.466 [XNIO-1 task-4] vgrFqi_XSKy4ZCsN3QAYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.466 [XNIO-1 task-4] vgrFqi_XSKy4ZCsN3QAYPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.466 [XNIO-1 task-4] vgrFqi_XSKy4ZCsN3QAYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.467 [XNIO-1 task-4] vgrFqi_XSKy4ZCsN3QAYPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.471 [XNIO-1 task-4] vgrFqi_XSKy4ZCsN3QAYPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.475 [XNIO-1 task-4] p5rxJhNxSpmwtp3fp7YgVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.475 [XNIO-1 task-4] p5rxJhNxSpmwtp3fp7YgVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.475 [XNIO-1 task-4] p5rxJhNxSpmwtp3fp7YgVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.475 [XNIO-1 task-4] p5rxJhNxSpmwtp3fp7YgVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.480 [XNIO-1 task-4] p5rxJhNxSpmwtp3fp7YgVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.483 [XNIO-1 task-4] A0aiG1vIRFqyj7XurwkvgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.484 [XNIO-1 task-4] A0aiG1vIRFqyj7XurwkvgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.484 [XNIO-1 task-4] A0aiG1vIRFqyj7XurwkvgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.484 [XNIO-1 task-4] A0aiG1vIRFqyj7XurwkvgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.488 [XNIO-1 task-4] A0aiG1vIRFqyj7XurwkvgQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.492 [XNIO-1 task-4] plEnUusjSBuM1nvaf1QO0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.492 [XNIO-1 task-4] plEnUusjSBuM1nvaf1QO0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.492 [XNIO-1 task-4] plEnUusjSBuM1nvaf1QO0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.492 [XNIO-1 task-4] plEnUusjSBuM1nvaf1QO0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.497 [XNIO-1 task-4] plEnUusjSBuM1nvaf1QO0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.501 [XNIO-1 task-4] 9AjVhO28S2eZUW5XdhLIUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.501 [XNIO-1 task-4] 9AjVhO28S2eZUW5XdhLIUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.501 [XNIO-1 task-4] 9AjVhO28S2eZUW5XdhLIUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.501 [XNIO-1 task-4] 9AjVhO28S2eZUW5XdhLIUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.506 [XNIO-1 task-4] 9AjVhO28S2eZUW5XdhLIUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.510 [XNIO-1 task-4] wsabgiBDRvS0Wt31fluY7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.510 [XNIO-1 task-4] wsabgiBDRvS0Wt31fluY7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.510 [XNIO-1 task-4] wsabgiBDRvS0Wt31fluY7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.510 [XNIO-1 task-4] wsabgiBDRvS0Wt31fluY7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.515 [XNIO-1 task-4] wsabgiBDRvS0Wt31fluY7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.518 [XNIO-1 task-4] 6FmuLn-rQ0CbhrXWhQgD2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.518 [XNIO-1 task-4] 6FmuLn-rQ0CbhrXWhQgD2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.519 [XNIO-1 task-4] 6FmuLn-rQ0CbhrXWhQgD2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.519 [XNIO-1 task-4] 6FmuLn-rQ0CbhrXWhQgD2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.523 [XNIO-1 task-4] 6FmuLn-rQ0CbhrXWhQgD2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.527 [XNIO-1 task-4] eHsg5OFRSJeG1oW4ThInoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.527 [XNIO-1 task-4] eHsg5OFRSJeG1oW4ThInoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.527 [XNIO-1 task-4] eHsg5OFRSJeG1oW4ThInoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.527 [XNIO-1 task-4] eHsg5OFRSJeG1oW4ThInoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.532 [XNIO-1 task-4] eHsg5OFRSJeG1oW4ThInoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.535 [XNIO-1 task-4] mMh7W3NzRwST1OLxR_bMpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.536 [XNIO-1 task-4] mMh7W3NzRwST1OLxR_bMpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.536 [XNIO-1 task-4] mMh7W3NzRwST1OLxR_bMpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.536 [XNIO-1 task-4] mMh7W3NzRwST1OLxR_bMpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.540 [XNIO-1 task-4] mMh7W3NzRwST1OLxR_bMpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.544 [XNIO-1 task-4] dlElGhNHTrWB0bAC1oiwhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.544 [XNIO-1 task-4] dlElGhNHTrWB0bAC1oiwhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.544 [XNIO-1 task-4] dlElGhNHTrWB0bAC1oiwhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.544 [XNIO-1 task-4] dlElGhNHTrWB0bAC1oiwhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.548 [XNIO-1 task-4] dlElGhNHTrWB0bAC1oiwhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.552 [XNIO-1 task-4] OmOisQyeQa-U2gc6h9o65w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.552 [XNIO-1 task-4] OmOisQyeQa-U2gc6h9o65w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.552 [XNIO-1 task-4] OmOisQyeQa-U2gc6h9o65w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.552 [XNIO-1 task-4] OmOisQyeQa-U2gc6h9o65w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:50.557 [XNIO-1 task-4] OmOisQyeQa-U2gc6h9o65w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.561 [XNIO-1 task-4] bf-5H3O_S0-UsUBP9rQ-LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.561 [XNIO-1 task-4] bf-5H3O_S0-UsUBP9rQ-LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.561 [XNIO-1 task-4] bf-5H3O_S0-UsUBP9rQ-LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.561 [XNIO-1 task-4] bf-5H3O_S0-UsUBP9rQ-LA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.566 [XNIO-1 task-4] bf-5H3O_S0-UsUBP9rQ-LA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.570 [XNIO-1 task-4] 1aXuOkItSt-explZZch4PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.570 [XNIO-1 task-4] 1aXuOkItSt-explZZch4PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.570 [XNIO-1 task-4] 1aXuOkItSt-explZZch4PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.570 [XNIO-1 task-4] 1aXuOkItSt-explZZch4PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.575 [XNIO-1 task-4] 1aXuOkItSt-explZZch4PQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.578 [XNIO-1 task-4] fT1F6m4zRJKsyEmC_UtFkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.578 [XNIO-1 task-4] fT1F6m4zRJKsyEmC_UtFkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.578 [XNIO-1 task-4] fT1F6m4zRJKsyEmC_UtFkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.578 [XNIO-1 task-4] fT1F6m4zRJKsyEmC_UtFkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.583 [XNIO-1 task-4] fT1F6m4zRJKsyEmC_UtFkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.586 [XNIO-1 task-4] O8VmjE2aRSqPuVtw9Vvc5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.586 [XNIO-1 task-4] O8VmjE2aRSqPuVtw9Vvc5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.586 [XNIO-1 task-4] O8VmjE2aRSqPuVtw9Vvc5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.586 [XNIO-1 task-4] O8VmjE2aRSqPuVtw9Vvc5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.591 [XNIO-1 task-4] O8VmjE2aRSqPuVtw9Vvc5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.594 [XNIO-1 task-4] uI3tNR-0RK-dK-GVQd2o_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.594 [XNIO-1 task-4] uI3tNR-0RK-dK-GVQd2o_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.594 [XNIO-1 task-4] uI3tNR-0RK-dK-GVQd2o_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.594 [XNIO-1 task-4] uI3tNR-0RK-dK-GVQd2o_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.599 [XNIO-1 task-4] uI3tNR-0RK-dK-GVQd2o_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.602 [XNIO-1 task-4] z1q6BQYgQAWZM8KemZJOVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.602 [XNIO-1 task-4] z1q6BQYgQAWZM8KemZJOVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.602 [XNIO-1 task-4] z1q6BQYgQAWZM8KemZJOVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.603 [XNIO-1 task-4] z1q6BQYgQAWZM8KemZJOVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.607 [XNIO-1 task-4] z1q6BQYgQAWZM8KemZJOVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.610 [XNIO-1 task-4] kSFXxcy5Qp20Z1FWCCyRvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.610 [XNIO-1 task-4] kSFXxcy5Qp20Z1FWCCyRvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.610 [XNIO-1 task-4] kSFXxcy5Qp20Z1FWCCyRvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.610 [XNIO-1 task-4] kSFXxcy5Qp20Z1FWCCyRvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.615 [XNIO-1 task-4] kSFXxcy5Qp20Z1FWCCyRvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.619 [XNIO-1 task-4] 9VulJjfQSECxxrMXJckdTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.620 [XNIO-1 task-4] 9VulJjfQSECxxrMXJckdTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.620 [XNIO-1 task-4] 9VulJjfQSECxxrMXJckdTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.620 [XNIO-1 task-4] 9VulJjfQSECxxrMXJckdTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.625 [XNIO-1 task-4] 9VulJjfQSECxxrMXJckdTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.628 [XNIO-1 task-4] QP0eUvmGR0aHAbtDYQw1nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.629 [XNIO-1 task-4] QP0eUvmGR0aHAbtDYQw1nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.629 [XNIO-1 task-4] QP0eUvmGR0aHAbtDYQw1nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.629 [XNIO-1 task-4] QP0eUvmGR0aHAbtDYQw1nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.633 [XNIO-1 task-4] QP0eUvmGR0aHAbtDYQw1nw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.637 [XNIO-1 task-4] ytl0mqt1TTma9yAXxLDNPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.637 [XNIO-1 task-4] ytl0mqt1TTma9yAXxLDNPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.638 [XNIO-1 task-4] ytl0mqt1TTma9yAXxLDNPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.638 [XNIO-1 task-4] ytl0mqt1TTma9yAXxLDNPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.643 [XNIO-1 task-4] ytl0mqt1TTma9yAXxLDNPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.646 [XNIO-1 task-4] 2ErPCmcATViAUpPnDowbyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.646 [XNIO-1 task-4] 2ErPCmcATViAUpPnDowbyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.646 [XNIO-1 task-4] 2ErPCmcATViAUpPnDowbyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.646 [XNIO-1 task-4] 2ErPCmcATViAUpPnDowbyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.651 [XNIO-1 task-4] 2ErPCmcATViAUpPnDowbyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.655 [XNIO-1 task-4] adq4NhEWTgujLsIgOFAK-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.655 [XNIO-1 task-4] adq4NhEWTgujLsIgOFAK-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.655 [XNIO-1 task-4] adq4NhEWTgujLsIgOFAK-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.655 [XNIO-1 task-4] adq4NhEWTgujLsIgOFAK-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.660 [XNIO-1 task-4] adq4NhEWTgujLsIgOFAK-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.664 [XNIO-1 task-4] C2aROwWWQX2lDZVndsWpMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.664 [XNIO-1 task-4] C2aROwWWQX2lDZVndsWpMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.664 [XNIO-1 task-4] C2aROwWWQX2lDZVndsWpMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.664 [XNIO-1 task-4] C2aROwWWQX2lDZVndsWpMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.669 [XNIO-1 task-4] C2aROwWWQX2lDZVndsWpMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.672 [XNIO-1 task-4] R7ZYzr6dT4SC9VsbFOtpXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.673 [XNIO-1 task-4] R7ZYzr6dT4SC9VsbFOtpXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.673 [XNIO-1 task-4] R7ZYzr6dT4SC9VsbFOtpXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.673 [XNIO-1 task-4] R7ZYzr6dT4SC9VsbFOtpXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.678 [XNIO-1 task-4] R7ZYzr6dT4SC9VsbFOtpXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.681 [XNIO-1 task-4] ynOVtaPSRa-RdRSwBjM7cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.681 [XNIO-1 task-4] ynOVtaPSRa-RdRSwBjM7cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.682 [XNIO-1 task-4] ynOVtaPSRa-RdRSwBjM7cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.682 [XNIO-1 task-4] ynOVtaPSRa-RdRSwBjM7cA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.687 [XNIO-1 task-4] ynOVtaPSRa-RdRSwBjM7cA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.690 [XNIO-1 task-4] nMv6208jTtOu3tj3WL-P3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.690 [XNIO-1 task-4] nMv6208jTtOu3tj3WL-P3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.690 [XNIO-1 task-4] nMv6208jTtOu3tj3WL-P3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.690 [XNIO-1 task-4] nMv6208jTtOu3tj3WL-P3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.695 [XNIO-1 task-4] nMv6208jTtOu3tj3WL-P3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.699 [XNIO-1 task-4] GV0cC4ttQJyHeHRy5M4wUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.699 [XNIO-1 task-4] GV0cC4ttQJyHeHRy5M4wUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.699 [XNIO-1 task-4] GV0cC4ttQJyHeHRy5M4wUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.699 [XNIO-1 task-4] GV0cC4ttQJyHeHRy5M4wUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.704 [XNIO-1 task-4] GV0cC4ttQJyHeHRy5M4wUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.708 [XNIO-1 task-4] cUS-OFjTRQyhR_zms6IKrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.708 [XNIO-1 task-4] cUS-OFjTRQyhR_zms6IKrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.708 [XNIO-1 task-4] cUS-OFjTRQyhR_zms6IKrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.708 [XNIO-1 task-4] cUS-OFjTRQyhR_zms6IKrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.713 [XNIO-1 task-4] cUS-OFjTRQyhR_zms6IKrA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.737 [XNIO-1 task-4] IHx2Ha0wQl6eKe3IIJrDrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.737 [XNIO-1 task-4] IHx2Ha0wQl6eKe3IIJrDrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.737 [XNIO-1 task-4] IHx2Ha0wQl6eKe3IIJrDrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.737 [XNIO-1 task-4] IHx2Ha0wQl6eKe3IIJrDrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.742 [XNIO-1 task-4] IHx2Ha0wQl6eKe3IIJrDrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.746 [XNIO-1 task-4] jqIUSufzTJS7bt7Vnh67Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.746 [XNIO-1 task-4] jqIUSufzTJS7bt7Vnh67Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.746 [XNIO-1 task-4] jqIUSufzTJS7bt7Vnh67Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.747 [XNIO-1 task-4] jqIUSufzTJS7bt7Vnh67Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.751 [XNIO-1 task-4] jqIUSufzTJS7bt7Vnh67Kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.755 [XNIO-1 task-4] 0QivEEz3S6i7SL892rYQCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.755 [XNIO-1 task-4] 0QivEEz3S6i7SL892rYQCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.755 [XNIO-1 task-4] 0QivEEz3S6i7SL892rYQCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.755 [XNIO-1 task-4] 0QivEEz3S6i7SL892rYQCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.760 [XNIO-1 task-4] 0QivEEz3S6i7SL892rYQCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.763 [XNIO-1 task-4] -BJzSecPTiasDd_4mCSpaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.764 [XNIO-1 task-4] -BJzSecPTiasDd_4mCSpaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.764 [XNIO-1 task-4] -BJzSecPTiasDd_4mCSpaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.764 [XNIO-1 task-4] -BJzSecPTiasDd_4mCSpaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.768 [XNIO-1 task-4] -BJzSecPTiasDd_4mCSpaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.774 [XNIO-1 task-4] pCoQr5EmR7mJhhGJ22WmvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.774 [XNIO-1 task-4] pCoQr5EmR7mJhhGJ22WmvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.775 [XNIO-1 task-4] pCoQr5EmR7mJhhGJ22WmvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.775 [XNIO-1 task-4] pCoQr5EmR7mJhhGJ22WmvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.780 [XNIO-1 task-4] pCoQr5EmR7mJhhGJ22WmvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.784 [XNIO-1 task-4] tJqf8fkvQ6OrmcIZZ8cuYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.784 [XNIO-1 task-4] tJqf8fkvQ6OrmcIZZ8cuYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.784 [XNIO-1 task-4] tJqf8fkvQ6OrmcIZZ8cuYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.784 [XNIO-1 task-4] tJqf8fkvQ6OrmcIZZ8cuYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.789 [XNIO-1 task-4] tJqf8fkvQ6OrmcIZZ8cuYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.794 [XNIO-1 task-4] ddgIzkEUQxa9JUyvockskg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.794 [XNIO-1 task-4] ddgIzkEUQxa9JUyvockskg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.794 [XNIO-1 task-4] ddgIzkEUQxa9JUyvockskg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.794 [XNIO-1 task-4] ddgIzkEUQxa9JUyvockskg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:50.799 [XNIO-1 task-4] ddgIzkEUQxa9JUyvockskg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.803 [XNIO-1 task-4] czeqFLSkTt-9dewnqWWpcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.803 [XNIO-1 task-4] czeqFLSkTt-9dewnqWWpcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.803 [XNIO-1 task-4] czeqFLSkTt-9dewnqWWpcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.803 [XNIO-1 task-4] czeqFLSkTt-9dewnqWWpcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:50.808 [XNIO-1 task-4] czeqFLSkTt-9dewnqWWpcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.812 [XNIO-1 task-4] qrPN1Hq8QIGnXjo6BQ2y4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.812 [XNIO-1 task-4] qrPN1Hq8QIGnXjo6BQ2y4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.812 [XNIO-1 task-4] qrPN1Hq8QIGnXjo6BQ2y4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.812 [XNIO-1 task-4] qrPN1Hq8QIGnXjo6BQ2y4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.817 [XNIO-1 task-4] qrPN1Hq8QIGnXjo6BQ2y4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.820 [XNIO-1 task-4] yiCmu1ZLS5mSSWJ3A9U3ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.820 [XNIO-1 task-4] yiCmu1ZLS5mSSWJ3A9U3ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.820 [XNIO-1 task-4] yiCmu1ZLS5mSSWJ3A9U3ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.821 [XNIO-1 task-4] yiCmu1ZLS5mSSWJ3A9U3ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.825 [XNIO-1 task-4] yiCmu1ZLS5mSSWJ3A9U3ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.829 [XNIO-1 task-4] xXRpcgXlTsWsipAXcnDLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.829 [XNIO-1 task-4] xXRpcgXlTsWsipAXcnDLjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.829 [XNIO-1 task-4] xXRpcgXlTsWsipAXcnDLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.829 [XNIO-1 task-4] xXRpcgXlTsWsipAXcnDLjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.834 [XNIO-1 task-4] xXRpcgXlTsWsipAXcnDLjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.838 [XNIO-1 task-4] YCaKJK6QTsG-EH_WeeNAww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.838 [XNIO-1 task-4] YCaKJK6QTsG-EH_WeeNAww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.838 [XNIO-1 task-4] YCaKJK6QTsG-EH_WeeNAww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.838 [XNIO-1 task-4] YCaKJK6QTsG-EH_WeeNAww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:50.843 [XNIO-1 task-4] YCaKJK6QTsG-EH_WeeNAww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.846 [XNIO-1 task-4] nbqsi7ukQtW5RK3F6OJSgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.846 [XNIO-1 task-4] nbqsi7ukQtW5RK3F6OJSgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.847 [XNIO-1 task-4] nbqsi7ukQtW5RK3F6OJSgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.847 [XNIO-1 task-4] nbqsi7ukQtW5RK3F6OJSgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:50.851 [XNIO-1 task-4] nbqsi7ukQtW5RK3F6OJSgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.855 [XNIO-1 task-4] Azp-EKDlQYu45VU3q8WA-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.855 [XNIO-1 task-4] Azp-EKDlQYu45VU3q8WA-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.855 [XNIO-1 task-4] Azp-EKDlQYu45VU3q8WA-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.855 [XNIO-1 task-4] Azp-EKDlQYu45VU3q8WA-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:50.860 [XNIO-1 task-4] Azp-EKDlQYu45VU3q8WA-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.866 [XNIO-1 task-4] XbSfQpJWTWeJFee0Eyaoow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.866 [XNIO-1 task-4] XbSfQpJWTWeJFee0Eyaoow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.866 [XNIO-1 task-4] XbSfQpJWTWeJFee0Eyaoow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.866 [XNIO-1 task-4] XbSfQpJWTWeJFee0Eyaoow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.872 [XNIO-1 task-4] XbSfQpJWTWeJFee0Eyaoow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.877 [XNIO-1 task-4] 14BFld4_S_Wq3tF4Q44iaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.877 [XNIO-1 task-4] 14BFld4_S_Wq3tF4Q44iaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.877 [XNIO-1 task-4] 14BFld4_S_Wq3tF4Q44iaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.877 [XNIO-1 task-4] 14BFld4_S_Wq3tF4Q44iaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.882 [XNIO-1 task-4] 14BFld4_S_Wq3tF4Q44iaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.886 [XNIO-1 task-4] spyGxZOXQ4-AHAybFsWFbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.886 [XNIO-1 task-4] spyGxZOXQ4-AHAybFsWFbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.886 [XNIO-1 task-4] spyGxZOXQ4-AHAybFsWFbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.886 [XNIO-1 task-4] spyGxZOXQ4-AHAybFsWFbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.891 [XNIO-1 task-4] spyGxZOXQ4-AHAybFsWFbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.895 [XNIO-1 task-4] igu2MEW7T2WyNt2LqC9JOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.895 [XNIO-1 task-4] igu2MEW7T2WyNt2LqC9JOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.895 [XNIO-1 task-4] igu2MEW7T2WyNt2LqC9JOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.895 [XNIO-1 task-4] igu2MEW7T2WyNt2LqC9JOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:50.900 [XNIO-1 task-4] igu2MEW7T2WyNt2LqC9JOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.904 [XNIO-1 task-4] uJlvPf39QqGyWMOqteN1Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.904 [XNIO-1 task-4] uJlvPf39QqGyWMOqteN1Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.904 [XNIO-1 task-4] uJlvPf39QqGyWMOqteN1Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.904 [XNIO-1 task-4] uJlvPf39QqGyWMOqteN1Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.909 [XNIO-1 task-4] uJlvPf39QqGyWMOqteN1Ow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.913 [XNIO-1 task-4] sFZYvGN8R9iha-NUbjUJxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.913 [XNIO-1 task-4] sFZYvGN8R9iha-NUbjUJxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.913 [XNIO-1 task-4] sFZYvGN8R9iha-NUbjUJxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.913 [XNIO-1 task-4] sFZYvGN8R9iha-NUbjUJxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.918 [XNIO-1 task-4] sFZYvGN8R9iha-NUbjUJxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.922 [XNIO-1 task-4] a9xXvQXFQfir3Qf3aQKtNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.922 [XNIO-1 task-4] a9xXvQXFQfir3Qf3aQKtNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.922 [XNIO-1 task-4] a9xXvQXFQfir3Qf3aQKtNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.922 [XNIO-1 task-4] a9xXvQXFQfir3Qf3aQKtNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.926 [XNIO-1 task-4] a9xXvQXFQfir3Qf3aQKtNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.931 [XNIO-1 task-4] ZwGOBh7mRGyBpyPThjurJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.931 [XNIO-1 task-4] ZwGOBh7mRGyBpyPThjurJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.931 [XNIO-1 task-4] ZwGOBh7mRGyBpyPThjurJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.931 [XNIO-1 task-4] ZwGOBh7mRGyBpyPThjurJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.935 [XNIO-1 task-4] ZwGOBh7mRGyBpyPThjurJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.939 [XNIO-1 task-4] WgQzBrxTRZyPJwV68OFNHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.939 [XNIO-1 task-4] WgQzBrxTRZyPJwV68OFNHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.939 [XNIO-1 task-4] WgQzBrxTRZyPJwV68OFNHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.939 [XNIO-1 task-4] WgQzBrxTRZyPJwV68OFNHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.944 [XNIO-1 task-4] WgQzBrxTRZyPJwV68OFNHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.948 [XNIO-1 task-4] nEBiPMZFS8GCVdXSOGn14w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.949 [XNIO-1 task-4] nEBiPMZFS8GCVdXSOGn14w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.949 [XNIO-1 task-4] nEBiPMZFS8GCVdXSOGn14w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.949 [XNIO-1 task-4] nEBiPMZFS8GCVdXSOGn14w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:50.953 [XNIO-1 task-4] nEBiPMZFS8GCVdXSOGn14w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.958 [XNIO-1 task-4] 7XGLefKCSOSXOE7xTjUMLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.958 [XNIO-1 task-4] 7XGLefKCSOSXOE7xTjUMLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.958 [XNIO-1 task-4] 7XGLefKCSOSXOE7xTjUMLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.958 [XNIO-1 task-4] 7XGLefKCSOSXOE7xTjUMLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.962 [XNIO-1 task-4] 7XGLefKCSOSXOE7xTjUMLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.967 [XNIO-1 task-4] BsHXwOjVTOKgX_IVKZpXMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.967 [XNIO-1 task-4] BsHXwOjVTOKgX_IVKZpXMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.967 [XNIO-1 task-4] BsHXwOjVTOKgX_IVKZpXMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.967 [XNIO-1 task-4] BsHXwOjVTOKgX_IVKZpXMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.971 [XNIO-1 task-4] BsHXwOjVTOKgX_IVKZpXMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.975 [XNIO-1 task-4] iYlm5zYWSXWZfffYWaboNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.975 [XNIO-1 task-4] iYlm5zYWSXWZfffYWaboNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.975 [XNIO-1 task-4] iYlm5zYWSXWZfffYWaboNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.976 [XNIO-1 task-4] iYlm5zYWSXWZfffYWaboNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:50.980 [XNIO-1 task-4] iYlm5zYWSXWZfffYWaboNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.984 [XNIO-1 task-4] Ecb1uyXKSOG9JXrzRvWm8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.984 [XNIO-1 task-4] Ecb1uyXKSOG9JXrzRvWm8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.984 [XNIO-1 task-4] Ecb1uyXKSOG9JXrzRvWm8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.984 [XNIO-1 task-4] Ecb1uyXKSOG9JXrzRvWm8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:50.989 [XNIO-1 task-4] Ecb1uyXKSOG9JXrzRvWm8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:50.993 [XNIO-1 task-4] D1zkhQOQQj2Yc96_Xno3fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.993 [XNIO-1 task-4] D1zkhQOQQj2Yc96_Xno3fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:50.993 [XNIO-1 task-4] D1zkhQOQQj2Yc96_Xno3fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:50.993 [XNIO-1 task-4] D1zkhQOQQj2Yc96_Xno3fw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:50.998 [XNIO-1 task-4] D1zkhQOQQj2Yc96_Xno3fw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.002 [XNIO-1 task-4] XT26HZfcRuOja8Je3bWhcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.002 [XNIO-1 task-4] XT26HZfcRuOja8Je3bWhcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.002 [XNIO-1 task-4] XT26HZfcRuOja8Je3bWhcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.003 [XNIO-1 task-4] XT26HZfcRuOja8Je3bWhcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:51.007 [XNIO-1 task-4] XT26HZfcRuOja8Je3bWhcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.011 [XNIO-1 task-4] I0sFrMiETqmJe2arbdh68g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.011 [XNIO-1 task-4] I0sFrMiETqmJe2arbdh68g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.011 [XNIO-1 task-4] I0sFrMiETqmJe2arbdh68g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.011 [XNIO-1 task-4] I0sFrMiETqmJe2arbdh68g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:51.016 [XNIO-1 task-4] I0sFrMiETqmJe2arbdh68g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.020 [XNIO-1 task-4] Aa781wlnTESUZQbPLaxIYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.020 [XNIO-1 task-4] Aa781wlnTESUZQbPLaxIYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.020 [XNIO-1 task-4] Aa781wlnTESUZQbPLaxIYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.020 [XNIO-1 task-4] Aa781wlnTESUZQbPLaxIYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:51.025 [XNIO-1 task-4] Aa781wlnTESUZQbPLaxIYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.029 [XNIO-1 task-4] MOGC44rtRgyGj4KhV3NLuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.029 [XNIO-1 task-4] MOGC44rtRgyGj4KhV3NLuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.029 [XNIO-1 task-4] MOGC44rtRgyGj4KhV3NLuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.029 [XNIO-1 task-4] MOGC44rtRgyGj4KhV3NLuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.034 [XNIO-1 task-4] MOGC44rtRgyGj4KhV3NLuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.039 [XNIO-1 task-4] QjtH1FUuSs-C81wbawXHWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.039 [XNIO-1 task-4] QjtH1FUuSs-C81wbawXHWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.039 [XNIO-1 task-4] QjtH1FUuSs-C81wbawXHWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.039 [XNIO-1 task-4] QjtH1FUuSs-C81wbawXHWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.043 [XNIO-1 task-4] QjtH1FUuSs-C81wbawXHWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.047 [XNIO-1 task-4] JXI8uXVhTeK-F1Td2T6Epw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.047 [XNIO-1 task-4] JXI8uXVhTeK-F1Td2T6Epw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.048 [XNIO-1 task-4] JXI8uXVhTeK-F1Td2T6Epw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.048 [XNIO-1 task-4] JXI8uXVhTeK-F1Td2T6Epw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.052 [XNIO-1 task-4] JXI8uXVhTeK-F1Td2T6Epw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.056 [XNIO-1 task-4] TL1SQnU6ThaF-xG2mSX-ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.056 [XNIO-1 task-4] TL1SQnU6ThaF-xG2mSX-ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.057 [XNIO-1 task-4] TL1SQnU6ThaF-xG2mSX-ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.057 [XNIO-1 task-4] TL1SQnU6ThaF-xG2mSX-ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.061 [XNIO-1 task-4] TL1SQnU6ThaF-xG2mSX-ew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.065 [XNIO-1 task-4] BetrEi4IQDuq6mgNCgmloQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.065 [XNIO-1 task-4] BetrEi4IQDuq6mgNCgmloQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.066 [XNIO-1 task-4] BetrEi4IQDuq6mgNCgmloQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.066 [XNIO-1 task-4] BetrEi4IQDuq6mgNCgmloQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.071 [XNIO-1 task-4] BetrEi4IQDuq6mgNCgmloQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.074 [XNIO-1 task-4] 0Me-nyZbRjiQVOOlvwgmLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.074 [XNIO-1 task-4] 0Me-nyZbRjiQVOOlvwgmLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.075 [XNIO-1 task-4] 0Me-nyZbRjiQVOOlvwgmLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.075 [XNIO-1 task-4] 0Me-nyZbRjiQVOOlvwgmLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.079 [XNIO-1 task-4] 0Me-nyZbRjiQVOOlvwgmLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.084 [XNIO-1 task-4] 9fBT_HfJSvGqZOawUvwpJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.084 [XNIO-1 task-4] 9fBT_HfJSvGqZOawUvwpJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.084 [XNIO-1 task-4] 9fBT_HfJSvGqZOawUvwpJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.084 [XNIO-1 task-4] 9fBT_HfJSvGqZOawUvwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:51.089 [XNIO-1 task-4] 9fBT_HfJSvGqZOawUvwpJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.095 [XNIO-1 task-4] _CkSd6d_TJqqu7lhVp5CfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.096 [XNIO-1 task-4] _CkSd6d_TJqqu7lhVp5CfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.096 [XNIO-1 task-4] _CkSd6d_TJqqu7lhVp5CfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.096 [XNIO-1 task-4] _CkSd6d_TJqqu7lhVp5CfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:51.100 [XNIO-1 task-4] _CkSd6d_TJqqu7lhVp5CfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.104 [XNIO-1 task-4] jGbCthsWRheYQSunBqGfKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.104 [XNIO-1 task-4] jGbCthsWRheYQSunBqGfKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.105 [XNIO-1 task-4] jGbCthsWRheYQSunBqGfKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.105 [XNIO-1 task-4] jGbCthsWRheYQSunBqGfKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.109 [XNIO-1 task-4] jGbCthsWRheYQSunBqGfKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.113 [XNIO-1 task-4] 5WyyfnNbQ4CibYTGg8Kyhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.113 [XNIO-1 task-4] 5WyyfnNbQ4CibYTGg8Kyhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.113 [XNIO-1 task-4] 5WyyfnNbQ4CibYTGg8Kyhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.113 [XNIO-1 task-4] 5WyyfnNbQ4CibYTGg8Kyhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:51.118 [XNIO-1 task-4] 5WyyfnNbQ4CibYTGg8Kyhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.122 [XNIO-1 task-4] v6y9hYrMRU6w4IaP-e8ShQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.122 [XNIO-1 task-4] v6y9hYrMRU6w4IaP-e8ShQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.122 [XNIO-1 task-4] v6y9hYrMRU6w4IaP-e8ShQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.122 [XNIO-1 task-4] v6y9hYrMRU6w4IaP-e8ShQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.127 [XNIO-1 task-4] v6y9hYrMRU6w4IaP-e8ShQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.131 [XNIO-1 task-4] BKgEd-H9QnaD80zG4kI6Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.131 [XNIO-1 task-4] BKgEd-H9QnaD80zG4kI6Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.131 [XNIO-1 task-4] BKgEd-H9QnaD80zG4kI6Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.131 [XNIO-1 task-4] BKgEd-H9QnaD80zG4kI6Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.136 [XNIO-1 task-4] BKgEd-H9QnaD80zG4kI6Kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.140 [XNIO-1 task-4] EKApiECGS9O7DqZPJ0wFoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.140 [XNIO-1 task-4] EKApiECGS9O7DqZPJ0wFoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.140 [XNIO-1 task-4] EKApiECGS9O7DqZPJ0wFoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.140 [XNIO-1 task-4] EKApiECGS9O7DqZPJ0wFoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.145 [XNIO-1 task-4] EKApiECGS9O7DqZPJ0wFoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.152 [XNIO-1 task-4] 7wylC_WqRHyuyxL7vUk-uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.153 [XNIO-1 task-4] 7wylC_WqRHyuyxL7vUk-uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.153 [XNIO-1 task-4] 7wylC_WqRHyuyxL7vUk-uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.153 [XNIO-1 task-4] 7wylC_WqRHyuyxL7vUk-uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.158 [XNIO-1 task-4] 7wylC_WqRHyuyxL7vUk-uQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.161 [XNIO-1 task-4] h4XsrYKORXmuZUd95jmx9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.161 [XNIO-1 task-4] h4XsrYKORXmuZUd95jmx9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.161 [XNIO-1 task-4] h4XsrYKORXmuZUd95jmx9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.161 [XNIO-1 task-4] h4XsrYKORXmuZUd95jmx9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.166 [XNIO-1 task-4] h4XsrYKORXmuZUd95jmx9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.169 [XNIO-1 task-4] CCt74ciQT_Sol8f9_LV9aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.170 [XNIO-1 task-4] CCt74ciQT_Sol8f9_LV9aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.170 [XNIO-1 task-4] CCt74ciQT_Sol8f9_LV9aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.170 [XNIO-1 task-4] CCt74ciQT_Sol8f9_LV9aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.175 [XNIO-1 task-4] CCt74ciQT_Sol8f9_LV9aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.180 [XNIO-1 task-4] Opb9o_KfQf2bkQVmhHDl6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.180 [XNIO-1 task-4] Opb9o_KfQf2bkQVmhHDl6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.180 [XNIO-1 task-4] Opb9o_KfQf2bkQVmhHDl6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.180 [XNIO-1 task-4] Opb9o_KfQf2bkQVmhHDl6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:51.185 [XNIO-1 task-4] Opb9o_KfQf2bkQVmhHDl6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.191 [XNIO-1 task-4] AmP0s-cYTx-WLzZU-isuSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.191 [XNIO-1 task-4] AmP0s-cYTx-WLzZU-isuSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.191 [XNIO-1 task-4] AmP0s-cYTx-WLzZU-isuSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.191 [XNIO-1 task-4] AmP0s-cYTx-WLzZU-isuSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:51.196 [XNIO-1 task-4] AmP0s-cYTx-WLzZU-isuSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.200 [XNIO-1 task-4] TlnXyL6OR5qwT6_NV1NA1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.200 [XNIO-1 task-4] TlnXyL6OR5qwT6_NV1NA1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.200 [XNIO-1 task-4] TlnXyL6OR5qwT6_NV1NA1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.200 [XNIO-1 task-4] TlnXyL6OR5qwT6_NV1NA1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:51.205 [XNIO-1 task-4] TlnXyL6OR5qwT6_NV1NA1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.209 [XNIO-1 task-4] UesbGSiSSluBy8YO41zcwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.209 [XNIO-1 task-4] UesbGSiSSluBy8YO41zcwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.209 [XNIO-1 task-4] UesbGSiSSluBy8YO41zcwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.209 [XNIO-1 task-4] UesbGSiSSluBy8YO41zcwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:51.213 [XNIO-1 task-4] UesbGSiSSluBy8YO41zcwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.217 [XNIO-1 task-4] UThrSDL1QqWLTcSyBqJBZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.217 [XNIO-1 task-4] UThrSDL1QqWLTcSyBqJBZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.217 [XNIO-1 task-4] UThrSDL1QqWLTcSyBqJBZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.217 [XNIO-1 task-4] UThrSDL1QqWLTcSyBqJBZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:51.222 [XNIO-1 task-4] UThrSDL1QqWLTcSyBqJBZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.226 [XNIO-1 task-4] 4GnntJXQRZSp-WSHq8i6mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.226 [XNIO-1 task-4] 4GnntJXQRZSp-WSHq8i6mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.226 [XNIO-1 task-4] 4GnntJXQRZSp-WSHq8i6mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.226 [XNIO-1 task-4] 4GnntJXQRZSp-WSHq8i6mg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", "Basic N2M4NTQwN2MtNGU1Zi00NDU1LTk3NjItNTdlMGEzZTk0MDQ3Om1LcVM0VEJyVDJ1TVlHclJacU5lb2c=", authorization) +08:11:51.231 [XNIO-1 task-4] 4GnntJXQRZSp-WSHq8i6mg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.235 [XNIO-1 task-4] LrCYHehGS728tpgYKaaM6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.235 [XNIO-1 task-4] LrCYHehGS728tpgYKaaM6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.235 [XNIO-1 task-4] LrCYHehGS728tpgYKaaM6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.236 [XNIO-1 task-4] LrCYHehGS728tpgYKaaM6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.240 [XNIO-1 task-4] LrCYHehGS728tpgYKaaM6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.246 [XNIO-1 task-4] 6PAPfjE-SROWkWtdGVXO0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.246 [XNIO-1 task-4] 6PAPfjE-SROWkWtdGVXO0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.246 [XNIO-1 task-4] 6PAPfjE-SROWkWtdGVXO0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.246 [XNIO-1 task-4] 6PAPfjE-SROWkWtdGVXO0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.251 [XNIO-1 task-4] 6PAPfjE-SROWkWtdGVXO0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.257 [XNIO-1 task-4] xvkS88D0ROqby2G-vpwdog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.257 [XNIO-1 task-4] xvkS88D0ROqby2G-vpwdog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.257 [XNIO-1 task-4] xvkS88D0ROqby2G-vpwdog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.258 [XNIO-1 task-4] xvkS88D0ROqby2G-vpwdog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.263 [XNIO-1 task-4] xvkS88D0ROqby2G-vpwdog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.275 [XNIO-1 task-4] CsOckFf3TKuSNDMR4mSCkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.275 [XNIO-1 task-4] CsOckFf3TKuSNDMR4mSCkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.275 [XNIO-1 task-4] CsOckFf3TKuSNDMR4mSCkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.276 [XNIO-1 task-4] CsOckFf3TKuSNDMR4mSCkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:51.280 [XNIO-1 task-4] CsOckFf3TKuSNDMR4mSCkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.288 [XNIO-1 task-4] pC1We07ETpuoP50ZqGN0Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.288 [XNIO-1 task-4] pC1We07ETpuoP50ZqGN0Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.288 [XNIO-1 task-4] pC1We07ETpuoP50ZqGN0Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.289 [XNIO-1 task-4] pC1We07ETpuoP50ZqGN0Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.293 [XNIO-1 task-4] pC1We07ETpuoP50ZqGN0Eg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.298 [XNIO-1 task-4] -q638sI7TLmt6mqu9Y3Vng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.298 [XNIO-1 task-4] -q638sI7TLmt6mqu9Y3Vng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.298 [XNIO-1 task-4] -q638sI7TLmt6mqu9Y3Vng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.298 [XNIO-1 task-4] -q638sI7TLmt6mqu9Y3Vng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.303 [XNIO-1 task-4] -q638sI7TLmt6mqu9Y3Vng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.307 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cc41997d-6543-4669-978d-a663698a6048 +08:11:51.308 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cc41997d-6543-4669-978d-a663698a6048 +08:11:51.308 [XNIO-1 task-4] o_FyPnohTuSKhos83XPu9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.308 [XNIO-1 task-4] o_FyPnohTuSKhos83XPu9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.308 [XNIO-1 task-4] o_FyPnohTuSKhos83XPu9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.308 [XNIO-1 task-4] o_FyPnohTuSKhos83XPu9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.314 [XNIO-1 task-4] o_FyPnohTuSKhos83XPu9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.317 [XNIO-1 task-4] Qb2y0JF7SfKN_nh8YbmHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.317 [XNIO-1 task-4] Qb2y0JF7SfKN_nh8YbmHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.317 [XNIO-1 task-4] Qb2y0JF7SfKN_nh8YbmHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.317 [XNIO-1 task-4] Qb2y0JF7SfKN_nh8YbmHtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.322 [XNIO-1 task-4] Qb2y0JF7SfKN_nh8YbmHtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.326 [XNIO-1 task-4] 1kt3iht7QiaRJ44iqs1yIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.326 [XNIO-1 task-4] 1kt3iht7QiaRJ44iqs1yIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.326 [XNIO-1 task-4] 1kt3iht7QiaRJ44iqs1yIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.326 [XNIO-1 task-4] 1kt3iht7QiaRJ44iqs1yIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.330 [XNIO-1 task-4] 1kt3iht7QiaRJ44iqs1yIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.337 [XNIO-1 task-4] pUoZ9pvzTFe6IlzGBL8jIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.337 [XNIO-1 task-4] pUoZ9pvzTFe6IlzGBL8jIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.337 [XNIO-1 task-4] pUoZ9pvzTFe6IlzGBL8jIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.337 [XNIO-1 task-4] pUoZ9pvzTFe6IlzGBL8jIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.339 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8baf54c7-e88c-4dab-b5ba-1d5e0fae30d4 +08:11:51.342 [XNIO-1 task-4] pUoZ9pvzTFe6IlzGBL8jIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.353 [XNIO-1 task-4] fter2b8XSteJuLImMmsylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.353 [XNIO-1 task-4] fter2b8XSteJuLImMmsylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.354 [XNIO-1 task-4] fter2b8XSteJuLImMmsylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.354 [XNIO-1 task-4] fter2b8XSteJuLImMmsylQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.360 [XNIO-1 task-4] fter2b8XSteJuLImMmsylQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.360 [XNIO-1 task-2] OMuF_MTtSbq3hYnsnqIeug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.360 [XNIO-1 task-2] OMuF_MTtSbq3hYnsnqIeug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.360 [XNIO-1 task-2] OMuF_MTtSbq3hYnsnqIeug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.361 [XNIO-1 task-2] OMuF_MTtSbq3hYnsnqIeug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:51.367 [XNIO-1 task-2] OMuF_MTtSbq3hYnsnqIeug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.367 [XNIO-1 task-2] OMuF_MTtSbq3hYnsnqIeug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.369 [XNIO-1 task-4] yf9zfIolR4u-TgrguRjuAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.369 [XNIO-1 task-4] yf9zfIolR4u-TgrguRjuAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.369 [XNIO-1 task-4] yf9zfIolR4u-TgrguRjuAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.369 [XNIO-1 task-4] yf9zfIolR4u-TgrguRjuAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.374 [XNIO-1 task-4] yf9zfIolR4u-TgrguRjuAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.379 [XNIO-1 task-2] ytnIzMR5TjST_3A4RVyryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.379 [XNIO-1 task-2] ytnIzMR5TjST_3A4RVyryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.380 [XNIO-1 task-2] ytnIzMR5TjST_3A4RVyryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.380 [XNIO-1 task-2] ytnIzMR5TjST_3A4RVyryA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.385 [XNIO-1 task-2] ytnIzMR5TjST_3A4RVyryA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.389 [XNIO-1 task-2] o1KQkA71QtyiFvlZ97Mikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.389 [XNIO-1 task-2] o1KQkA71QtyiFvlZ97Mikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.389 [XNIO-1 task-2] o1KQkA71QtyiFvlZ97Mikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.389 [XNIO-1 task-2] o1KQkA71QtyiFvlZ97Mikg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.394 [XNIO-1 task-2] o1KQkA71QtyiFvlZ97Mikg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.395 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:045f7c1b +08:11:51.396 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:045f7c1b +08:11:51.398 [XNIO-1 task-2] jTkYeACpRvmMiVYlzIZKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.398 [XNIO-1 task-2] jTkYeACpRvmMiVYlzIZKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.398 [XNIO-1 task-2] jTkYeACpRvmMiVYlzIZKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.398 [XNIO-1 task-2] jTkYeACpRvmMiVYlzIZKrg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0-7LDkkVT1ueTMqK7Tl0Yg redirectUri = http://localhost:8080/authorization +08:11:51.402 [XNIO-1 task-4] yD2pqbROQIaB57_MqgqX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.402 [XNIO-1 task-4] yD2pqbROQIaB57_MqgqX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.402 [XNIO-1 task-4] yD2pqbROQIaB57_MqgqX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.403 [XNIO-1 task-4] yD2pqbROQIaB57_MqgqX5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pzHw6qLQQ6qQHRuGCOw2dg redirectUri = http://localhost:8080/authorization +08:11:51.404 [XNIO-1 task-2] jTkYeACpRvmMiVYlzIZKrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.404 [XNIO-1 task-3] uEsK3TnDQo67qZd7zKnKSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.404 [XNIO-1 task-3] uEsK3TnDQo67qZd7zKnKSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.404 [XNIO-1 task-3] uEsK3TnDQo67qZd7zKnKSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.404 [XNIO-1 task-3] uEsK3TnDQo67qZd7zKnKSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:51.407 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7739dcc3-3eb7-48ca-8550-3e31d214644b +08:11:51.409 [XNIO-1 task-4] yD2pqbROQIaB57_MqgqX5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.410 [XNIO-1 task-4] yD2pqbROQIaB57_MqgqX5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.412 [XNIO-1 task-3] uEsK3TnDQo67qZd7zKnKSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.418 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:045f7c1b +08:11:51.421 [XNIO-1 task-4] pOFOPiGtQQK-Qfry5VXRBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.421 [XNIO-1 task-4] pOFOPiGtQQK-Qfry5VXRBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.421 [XNIO-1 task-4] pOFOPiGtQQK-Qfry5VXRBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.421 [XNIO-1 task-4] pOFOPiGtQQK-Qfry5VXRBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.426 [XNIO-1 task-4] pOFOPiGtQQK-Qfry5VXRBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.431 [XNIO-1 task-4] pXkTGN4pT2yEhRFkM-pQ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.431 [XNIO-1 task-4] pXkTGN4pT2yEhRFkM-pQ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.431 [XNIO-1 task-4] pXkTGN4pT2yEhRFkM-pQ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.431 [XNIO-1 task-4] pXkTGN4pT2yEhRFkM-pQ1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.436 [XNIO-1 task-4] pXkTGN4pT2yEhRFkM-pQ1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.437 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a1703e38 +08:11:51.439 [XNIO-1 task-4] H_mXTPYgTqKvg_3v1XwPnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.439 [XNIO-1 task-4] H_mXTPYgTqKvg_3v1XwPnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.439 [XNIO-1 task-4] H_mXTPYgTqKvg_3v1XwPnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.439 [XNIO-1 task-4] H_mXTPYgTqKvg_3v1XwPnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WSr_b7uNRV-P0oedd84_ng redirectUri = http://localhost:8080/authorization +08:11:51.443 [XNIO-1 task-2] 0fNPif_YTCOFb7glseTGHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.444 [XNIO-1 task-2] 0fNPif_YTCOFb7glseTGHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.444 [XNIO-1 task-2] 0fNPif_YTCOFb7glseTGHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.444 [XNIO-1 task-2] 0fNPif_YTCOFb7glseTGHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.447 [XNIO-1 task-4] H_mXTPYgTqKvg_3v1XwPnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.450 [XNIO-1 task-2] 0fNPif_YTCOFb7glseTGHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.456 [XNIO-1 task-4] CCu25JYkS6qNDrdwispw9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.457 [XNIO-1 task-4] CCu25JYkS6qNDrdwispw9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.457 [XNIO-1 task-4] CCu25JYkS6qNDrdwispw9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.457 [XNIO-1 task-4] CCu25JYkS6qNDrdwispw9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", "Basic NTJjYzZjZGQtZTQxNy00Yzc2LWI2MzgtZjgyZWQ2YjVhYzg1OmhHZWhGX2NlUzgtSlE3VXlBa1UyOGc=", authorization) +08:11:51.461 [XNIO-1 task-4] CCu25JYkS6qNDrdwispw9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.466 [XNIO-1 task-4] 7CDSfphbQI6ToqCnQwoISA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.466 [XNIO-1 task-4] 7CDSfphbQI6ToqCnQwoISA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.466 [XNIO-1 task-4] 7CDSfphbQI6ToqCnQwoISA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.467 [XNIO-1 task-4] 7CDSfphbQI6ToqCnQwoISA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:51.471 [XNIO-1 task-4] 7CDSfphbQI6ToqCnQwoISA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.475 [XNIO-1 task-4] Fx8p2ExZR2W4VohdVHNpmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.475 [XNIO-1 task-4] Fx8p2ExZR2W4VohdVHNpmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.475 [XNIO-1 task-4] Fx8p2ExZR2W4VohdVHNpmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.475 [XNIO-1 task-4] Fx8p2ExZR2W4VohdVHNpmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:51.477 [XNIO-1 task-2] RxekItIKRJa5-CLZVVT-Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.477 [XNIO-1 task-2] RxekItIKRJa5-CLZVVT-Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.477 [XNIO-1 task-2] RxekItIKRJa5-CLZVVT-Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.477 [XNIO-1 task-2] RxekItIKRJa5-CLZVVT-Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:51.481 [XNIO-1 task-4] Fx8p2ExZR2W4VohdVHNpmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.481 [XNIO-1 task-4] Fx8p2ExZR2W4VohdVHNpmQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.482 [XNIO-1 task-2] RxekItIKRJa5-CLZVVT-Fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.489 [XNIO-1 task-4] 72HLn42GSF2RSwppsMYQqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.489 [XNIO-1 task-4] 72HLn42GSF2RSwppsMYQqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.490 [XNIO-1 task-4] 72HLn42GSF2RSwppsMYQqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.490 [XNIO-1 task-4] 72HLn42GSF2RSwppsMYQqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.494 [XNIO-1 task-4] 72HLn42GSF2RSwppsMYQqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.498 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:045f7c1b +08:11:51.499 [XNIO-1 task-4] CHdf-1cGQKef8wiRHxWgLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.499 [XNIO-1 task-4] CHdf-1cGQKef8wiRHxWgLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.499 [XNIO-1 task-4] CHdf-1cGQKef8wiRHxWgLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.499 [XNIO-1 task-4] CHdf-1cGQKef8wiRHxWgLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.504 [XNIO-1 task-4] CHdf-1cGQKef8wiRHxWgLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.512 [XNIO-1 task-4] 1T7oC4MATVOP3JJTJ7MAJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.512 [XNIO-1 task-4] 1T7oC4MATVOP3JJTJ7MAJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.512 [XNIO-1 task-4] 1T7oC4MATVOP3JJTJ7MAJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.513 [XNIO-1 task-4] 1T7oC4MATVOP3JJTJ7MAJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.517 [XNIO-1 task-4] 1T7oC4MATVOP3JJTJ7MAJA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.522 [XNIO-1 task-4] -gSq_JfYQEu1ny1v9A6fAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.522 [XNIO-1 task-4] -gSq_JfYQEu1ny1v9A6fAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.523 [XNIO-1 task-4] -gSq_JfYQEu1ny1v9A6fAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.523 [XNIO-1 task-4] -gSq_JfYQEu1ny1v9A6fAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9NyuzDZdToWgVli3nk-www redirectUri = http://localhost:8080/authorization +08:11:51.526 [XNIO-1 task-2] WZLOVJQsRZyyhvfZZbh9hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.526 [XNIO-1 task-2] WZLOVJQsRZyyhvfZZbh9hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.526 [XNIO-1 task-2] WZLOVJQsRZyyhvfZZbh9hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.526 [XNIO-1 task-2] WZLOVJQsRZyyhvfZZbh9hw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.529 [XNIO-1 task-4] -gSq_JfYQEu1ny1v9A6fAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.530 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:620c9fa0-116c-4dd1-905b-e48b5e002ac8 +08:11:51.531 [XNIO-1 task-2] WZLOVJQsRZyyhvfZZbh9hw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.535 [XNIO-1 task-2] YoHibZ1YQhCz6laDlM2eoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.535 [XNIO-1 task-2] YoHibZ1YQhCz6laDlM2eoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.535 [XNIO-1 task-2] YoHibZ1YQhCz6laDlM2eoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.535 [XNIO-1 task-2] YoHibZ1YQhCz6laDlM2eoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:51.540 [XNIO-1 task-2] YoHibZ1YQhCz6laDlM2eoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.541 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:045f7c1b +08:11:51.547 [XNIO-1 task-2] eknYRdk9Rz2DoGFr19j8LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.547 [XNIO-1 task-2] eknYRdk9Rz2DoGFr19j8LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.547 [XNIO-1 task-2] eknYRdk9Rz2DoGFr19j8LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.548 [XNIO-1 task-2] eknYRdk9Rz2DoGFr19j8LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.548 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a1703e38 +08:11:51.550 [XNIO-1 task-4] 0HlBMhrKSAib-sAzTp_dqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.550 [XNIO-1 task-4] 0HlBMhrKSAib-sAzTp_dqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.550 [XNIO-1 task-4] 0HlBMhrKSAib-sAzTp_dqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.550 [XNIO-1 task-4] 0HlBMhrKSAib-sAzTp_dqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:51.553 [XNIO-1 task-2] eknYRdk9Rz2DoGFr19j8LQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.553 [XNIO-1 task-2] eknYRdk9Rz2DoGFr19j8LQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.555 [XNIO-1 task-4] 0HlBMhrKSAib-sAzTp_dqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.561 [XNIO-1 task-4] gHq3fLnJSAqHto0ppnAeZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.561 [XNIO-1 task-4] gHq3fLnJSAqHto0ppnAeZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.561 [XNIO-1 task-4] gHq3fLnJSAqHto0ppnAeZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.561 [XNIO-1 task-4] gHq3fLnJSAqHto0ppnAeZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.564 [XNIO-1 task-2] C6wcm1vrRgS8Gzi86HmquQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.564 [XNIO-1 task-2] C6wcm1vrRgS8Gzi86HmquQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.564 [XNIO-1 task-2] C6wcm1vrRgS8Gzi86HmquQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.565 [XNIO-1 task-2] C6wcm1vrRgS8Gzi86HmquQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 8c0e5d0a-8691-4734-8825-82c04e8d07dd scope = null +08:11:51.566 [XNIO-1 task-4] gHq3fLnJSAqHto0ppnAeZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.567 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:045f7c1b +08:11:51.570 [XNIO-1 task-4] a_ekel1rT06PRCxv0bbzYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.570 [XNIO-1 task-4] a_ekel1rT06PRCxv0bbzYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.571 [XNIO-1 task-4] a_ekel1rT06PRCxv0bbzYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.571 [XNIO-1 task-4] a_ekel1rT06PRCxv0bbzYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.577 [XNIO-1 task-2] C6wcm1vrRgS8Gzi86HmquQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.577 [XNIO-1 task-4] a_ekel1rT06PRCxv0bbzYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.581 [XNIO-1 task-4] fw3JMuETQSWLV9QtRl_Czw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.582 [XNIO-1 task-4] fw3JMuETQSWLV9QtRl_Czw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.582 [XNIO-1 task-4] fw3JMuETQSWLV9QtRl_Czw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.582 [XNIO-1 task-4] fw3JMuETQSWLV9QtRl_Czw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", "Basic ZGUyYTQ4MzYtMzk5Zi00YmU0LWE4MWYtZWFhYzA1Y2Q2ZGJlOnZZekRIbTUwUlNhMlhIT2Q2SWljTVE=", authorization) +08:11:51.587 [XNIO-1 task-4] fw3JMuETQSWLV9QtRl_Czw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.590 [XNIO-1 task-4] FaRMRvTQR8SK7CCI1VcpnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.590 [XNIO-1 task-4] FaRMRvTQR8SK7CCI1VcpnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.590 [XNIO-1 task-4] FaRMRvTQR8SK7CCI1VcpnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.590 [XNIO-1 task-4] FaRMRvTQR8SK7CCI1VcpnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.595 [XNIO-1 task-2] 5WcmtcFATe2zC_pV_LEv1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.595 [XNIO-1 task-2] 5WcmtcFATe2zC_pV_LEv1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.595 [XNIO-1 task-2] 5WcmtcFATe2zC_pV_LEv1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.596 [XNIO-1 task-2] 5WcmtcFATe2zC_pV_LEv1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:51.602 [XNIO-1 task-2] 5WcmtcFATe2zC_pV_LEv1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.603 [XNIO-1 task-4] FaRMRvTQR8SK7CCI1VcpnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.606 [XNIO-1 task-2] 7uA_aCTeQmCalSv3qu1XCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.606 [XNIO-1 task-2] 7uA_aCTeQmCalSv3qu1XCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.606 [XNIO-1 task-2] 7uA_aCTeQmCalSv3qu1XCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.607 [XNIO-1 task-2] 7uA_aCTeQmCalSv3qu1XCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:51.612 [XNIO-1 task-2] 7uA_aCTeQmCalSv3qu1XCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.618 [XNIO-1 task-2] 2ukvSBokSM2RMvghJwSVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.618 [XNIO-1 task-4] dD3WBhXPSc2bNgYlTEs8_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.618 [XNIO-1 task-4] dD3WBhXPSc2bNgYlTEs8_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.618 [XNIO-1 task-4] dD3WBhXPSc2bNgYlTEs8_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.618 [XNIO-1 task-2] 2ukvSBokSM2RMvghJwSVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.618 [XNIO-1 task-4] dD3WBhXPSc2bNgYlTEs8_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.618 [XNIO-1 task-4] dD3WBhXPSc2bNgYlTEs8_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.618 [XNIO-1 task-4] dD3WBhXPSc2bNgYlTEs8_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a136e7bb-d5a6-4b38-9a9d-df6a5c68fe22 scope = null +08:11:51.623 [XNIO-1 task-3] 1RtVNM3MScepitVR8P-nQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.624 [XNIO-1 task-3] 1RtVNM3MScepitVR8P-nQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.624 [XNIO-1 task-3] 1RtVNM3MScepitVR8P-nQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.624 [XNIO-1 task-3] 1RtVNM3MScepitVR8P-nQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NThmMGMzY2ItMTE2OC00ZTJlLWFmYjQtZjkxNDI2YTljZjgzOmlQUmk5ZEVIVFRXblhWM1p3YUo0VEE=", "Basic NThmMGMzY2ItMTE2OC00ZTJlLWFmYjQtZjkxNDI2YTljZjgzOmlQUmk5ZEVIVFRXblhWM1p3YUo0VEE=", authorization) +08:11:51.625 [XNIO-1 task-2] 2ukvSBokSM2RMvghJwSVTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.630 [XNIO-1 task-4] dD3WBhXPSc2bNgYlTEs8_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.631 [XNIO-1 task-2] ho0NzSdARgquKerj7qQ8yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.631 [XNIO-1 task-2] ho0NzSdARgquKerj7qQ8yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.631 [XNIO-1 task-2] ho0NzSdARgquKerj7qQ8yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.631 [XNIO-1 task-2] ho0NzSdARgquKerj7qQ8yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:51.631 [XNIO-1 task-3] 1RtVNM3MScepitVR8P-nQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.631 [XNIO-1 task-3] 1RtVNM3MScepitVR8P-nQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.637 [XNIO-1 task-2] ho0NzSdARgquKerj7qQ8yQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.642 [XNIO-1 task-2] n9vewxRyQe-clKZ4Y-3y2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.642 [XNIO-1 task-2] n9vewxRyQe-clKZ4Y-3y2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.642 [XNIO-1 task-2] n9vewxRyQe-clKZ4Y-3y2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.642 [XNIO-1 task-2] n9vewxRyQe-clKZ4Y-3y2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.647 [XNIO-1 task-2] n9vewxRyQe-clKZ4Y-3y2Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.652 [XNIO-1 task-2] vORYg9RORsmFHTWgvQCN6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.653 [XNIO-1 task-2] vORYg9RORsmFHTWgvQCN6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.653 [XNIO-1 task-2] vORYg9RORsmFHTWgvQCN6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.653 [XNIO-1 task-2] vORYg9RORsmFHTWgvQCN6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.658 [XNIO-1 task-2] vORYg9RORsmFHTWgvQCN6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.666 [XNIO-1 task-2] HFzQrc7ARqaVyUIwtqNImQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.666 [XNIO-1 task-2] HFzQrc7ARqaVyUIwtqNImQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.666 [XNIO-1 task-4] 4djHe1rZQFe09ebEXELpOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.666 [XNIO-1 task-2] HFzQrc7ARqaVyUIwtqNImQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.666 [XNIO-1 task-4] 4djHe1rZQFe09ebEXELpOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.666 [XNIO-1 task-4] 4djHe1rZQFe09ebEXELpOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.666 [XNIO-1 task-2] HFzQrc7ARqaVyUIwtqNImQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.666 [XNIO-1 task-4] 4djHe1rZQFe09ebEXELpOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = kaapTQLxRNasXCO-yMd56w redirectUri = http://localhost:8080/authorization +08:11:51.672 [XNIO-1 task-2] HFzQrc7ARqaVyUIwtqNImQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.672 [XNIO-1 task-4] 4djHe1rZQFe09ebEXELpOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.676 [XNIO-1 task-2] EW7Hu7QyRGy1exKjutJv3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.678 [XNIO-1 task-2] EW7Hu7QyRGy1exKjutJv3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.678 [XNIO-1 task-2] EW7Hu7QyRGy1exKjutJv3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.678 [XNIO-1 task-2] EW7Hu7QyRGy1exKjutJv3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.683 [XNIO-1 task-2] EW7Hu7QyRGy1exKjutJv3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.686 [XNIO-1 task-2] Ch0W-1crRHK6e53VmJ1m8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.686 [XNIO-1 task-2] Ch0W-1crRHK6e53VmJ1m8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.686 [XNIO-1 task-2] Ch0W-1crRHK6e53VmJ1m8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.686 [XNIO-1 task-2] Ch0W-1crRHK6e53VmJ1m8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:51.688 [XNIO-1 task-4] RBAK-GCrTLGwv5aQgrKtoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.688 [XNIO-1 task-4] RBAK-GCrTLGwv5aQgrKtoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.688 [XNIO-1 task-4] RBAK-GCrTLGwv5aQgrKtoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.688 [XNIO-1 task-4] RBAK-GCrTLGwv5aQgrKtoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.691 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cc41997d-6543-4669-978d-a663698a6048 +08:11:51.695 [XNIO-1 task-4] RBAK-GCrTLGwv5aQgrKtoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.701 [XNIO-1 task-2] Ch0W-1crRHK6e53VmJ1m8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.701 [XNIO-1 task-2] Ch0W-1crRHK6e53VmJ1m8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.701 [XNIO-1 task-4] oWnH91LTTCOgxAKzqLkUOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.701 [XNIO-1 task-4] oWnH91LTTCOgxAKzqLkUOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.701 [XNIO-1 task-4] oWnH91LTTCOgxAKzqLkUOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.707 [XNIO-1 task-4] oWnH91LTTCOgxAKzqLkUOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.714 [XNIO-1 task-2] GNUiY5dVRsOTGufF62cfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.714 [XNIO-1 task-2] GNUiY5dVRsOTGufF62cfaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.714 [XNIO-1 task-2] GNUiY5dVRsOTGufF62cfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.714 [XNIO-1 task-4] 9iPB1Z9WTa6p3ZijMrJJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.714 [XNIO-1 task-2] GNUiY5dVRsOTGufF62cfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.714 [XNIO-1 task-4] 9iPB1Z9WTa6p3ZijMrJJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.715 [XNIO-1 task-4] 9iPB1Z9WTa6p3ZijMrJJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:51.715 [XNIO-1 task-4] 9iPB1Z9WTa6p3ZijMrJJOA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.720 [XNIO-1 task-4] 9iPB1Z9WTa6p3ZijMrJJOA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.725 [XNIO-1 task-4] cK3ymvGiQrKqXoWvgmELhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.725 [XNIO-1 task-4] cK3ymvGiQrKqXoWvgmELhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.725 [XNIO-1 task-2] GNUiY5dVRsOTGufF62cfaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.725 [XNIO-1 task-4] cK3ymvGiQrKqXoWvgmELhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.725 [XNIO-1 task-4] cK3ymvGiQrKqXoWvgmELhQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WGsRIwppSNm01tCt0v6lrQ redirectUri = http://localhost:8080/authorization +08:11:51.727 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ed296d87-b10f-4484-9461-6d0934c489ed +08:11:51.729 [XNIO-1 task-3] CAeaXFxbRQqOjoNuPeLn2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.729 [XNIO-1 task-3] CAeaXFxbRQqOjoNuPeLn2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.729 [XNIO-1 task-3] CAeaXFxbRQqOjoNuPeLn2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.729 [XNIO-1 task-3] CAeaXFxbRQqOjoNuPeLn2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:51.730 [XNIO-1 task-4] cK3ymvGiQrKqXoWvgmELhQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.730 [XNIO-1 task-4] cK3ymvGiQrKqXoWvgmELhQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.734 [XNIO-1 task-2] kXrqbGrtQ7SCCz-qzfWxCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.734 [XNIO-1 task-2] kXrqbGrtQ7SCCz-qzfWxCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.735 [XNIO-1 task-2] kXrqbGrtQ7SCCz-qzfWxCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.735 [XNIO-1 task-2] kXrqbGrtQ7SCCz-qzfWxCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ed296d87-b10f-4484-9461-6d0934c489ed scope = null +08:11:51.740 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ed296d87-b10f-4484-9461-6d0934c489ed +08:11:51.744 [XNIO-1 task-3] VYgnuB5JQEC61JWNh0E1iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.745 [XNIO-1 task-3] VYgnuB5JQEC61JWNh0E1iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.745 [XNIO-1 task-3] VYgnuB5JQEC61JWNh0E1iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.745 [XNIO-1 task-3] VYgnuB5JQEC61JWNh0E1iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:51.746 [XNIO-1 task-2] kXrqbGrtQ7SCCz-qzfWxCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.748 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0a6cd27-cf64-443b-9cd5-411fb259f536 +08:11:51.749 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0a6cd27-cf64-443b-9cd5-411fb259f536 +08:11:51.756 [XNIO-1 task-3] VYgnuB5JQEC61JWNh0E1iQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.761 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7800fb84 +08:11:51.762 [XNIO-1 task-2] jhTG_6rtS9qQKetpP-wXqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.762 [XNIO-1 task-2] jhTG_6rtS9qQKetpP-wXqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.762 [XNIO-1 task-2] jhTG_6rtS9qQKetpP-wXqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.763 [XNIO-1 task-2] jhTG_6rtS9qQKetpP-wXqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:51.767 [XNIO-1 task-2] jhTG_6rtS9qQKetpP-wXqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.777 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:917c3a45 +08:11:51.779 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:917c3a45 +08:11:51.780 [XNIO-1 task-2] KjWZS-DiS9ipqTmC-34j8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.780 [XNIO-1 task-2] KjWZS-DiS9ipqTmC-34j8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.780 [XNIO-1 task-2] KjWZS-DiS9ipqTmC-34j8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.781 [XNIO-1 task-3] k3zfjLAoQK-GTlJMr5pECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.781 [XNIO-1 task-3] k3zfjLAoQK-GTlJMr5pECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.781 [XNIO-1 task-3] k3zfjLAoQK-GTlJMr5pECw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.781 [XNIO-1 task-2] KjWZS-DiS9ipqTmC-34j8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = G8-e3Z-BQxKBORpi8yohew redirectUri = http://localhost:8080/authorization +08:11:51.782 [XNIO-1 task-3] k3zfjLAoQK-GTlJMr5pECw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.787 [XNIO-1 task-2] KjWZS-DiS9ipqTmC-34j8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.787 [XNIO-1 task-3] k3zfjLAoQK-GTlJMr5pECw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.799 [XNIO-1 task-2] yYkCMlhxRjCfzNORtzYSrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.799 [XNIO-1 task-2] yYkCMlhxRjCfzNORtzYSrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.799 [XNIO-1 task-2] yYkCMlhxRjCfzNORtzYSrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.799 [XNIO-1 task-2] yYkCMlhxRjCfzNORtzYSrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.802 [XNIO-1 task-3] Z-I2HHxBRZqPC5p6_dZ_-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.803 [XNIO-1 task-3] Z-I2HHxBRZqPC5p6_dZ_-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.803 [XNIO-1 task-3] Z-I2HHxBRZqPC5p6_dZ_-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.803 [XNIO-1 task-3] Z-I2HHxBRZqPC5p6_dZ_-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:51.804 [XNIO-1 task-2] yYkCMlhxRjCfzNORtzYSrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.809 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.809 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.809 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.809 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.809 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.809 [XNIO-1 task-4] n6I56iW2RNiKoIj5FtPqLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.810 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", "Basic ZTcwYWRmOGMtNGE3NS00ZGI2LTgxMzQtNzkzZmU1YzgwNTY3OkNfWUM0bHltVFBxeHZzN2EweE5YWFE=", authorization) +08:11:51.810 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.812 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7800fb84 +08:11:51.815 [XNIO-1 task-2] cicuhUOUT2O3vmK3LGL9fg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.815 [XNIO-1 task-4] n6I56iW2RNiKoIj5FtPqLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.815 [XNIO-1 task-4] n6I56iW2RNiKoIj5FtPqLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.821 [XNIO-1 task-2] nDxRJDkhRCuFMMtW_mkrQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.821 [XNIO-1 task-2] nDxRJDkhRCuFMMtW_mkrQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.822 [XNIO-1 task-2] nDxRJDkhRCuFMMtW_mkrQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.822 [XNIO-1 task-2] nDxRJDkhRCuFMMtW_mkrQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.826 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7800fb84 +08:11:51.827 [XNIO-1 task-2] nDxRJDkhRCuFMMtW_mkrQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.828 [XNIO-1 task-3] Z-I2HHxBRZqPC5p6_dZ_-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.835 [XNIO-1 task-2] TCorCrcLSgaKqG2B3rmoxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.835 [XNIO-1 task-2] TCorCrcLSgaKqG2B3rmoxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.835 [XNIO-1 task-2] TCorCrcLSgaKqG2B3rmoxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.836 [XNIO-1 task-2] TCorCrcLSgaKqG2B3rmoxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.839 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:abe09316 +08:11:51.840 [XNIO-1 task-2] TCorCrcLSgaKqG2B3rmoxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.849 [XNIO-1 task-2] HGWsn9dNQF2kSt5QVZxEJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.849 [XNIO-1 task-2] HGWsn9dNQF2kSt5QVZxEJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.849 [XNIO-1 task-2] HGWsn9dNQF2kSt5QVZxEJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.849 [XNIO-1 task-2] HGWsn9dNQF2kSt5QVZxEJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:51.855 [XNIO-1 task-2] HGWsn9dNQF2kSt5QVZxEJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.861 [XNIO-1 task-2] RYW6bvMcTwu1BXEq8fS5AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.862 [XNIO-1 task-2] RYW6bvMcTwu1BXEq8fS5AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.862 [XNIO-1 task-2] RYW6bvMcTwu1BXEq8fS5AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.862 [XNIO-1 task-2] RYW6bvMcTwu1BXEq8fS5AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:51.867 [XNIO-1 task-2] RYW6bvMcTwu1BXEq8fS5AQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.868 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:de2a4836-399f-4be4-a81f-eaac05cd6dbe +08:11:51.869 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:917c3a45 +08:11:51.872 [XNIO-1 task-2] 82P9y_82RhmeuIlec3I1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.872 [XNIO-1 task-2] 82P9y_82RhmeuIlec3I1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.872 [XNIO-1 task-2] 82P9y_82RhmeuIlec3I1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.872 [XNIO-1 task-2] 82P9y_82RhmeuIlec3I1Xw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.877 [XNIO-1 task-2] 82P9y_82RhmeuIlec3I1Xw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.878 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:abe09316 +08:11:51.879 [XNIO-1 task-2] TMYLy39pQOCZXA2yceMXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.879 [XNIO-1 task-2] TMYLy39pQOCZXA2yceMXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.879 [XNIO-1 task-2] TMYLy39pQOCZXA2yceMXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.879 [XNIO-1 task-2] TMYLy39pQOCZXA2yceMXQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = wmXfs-7HRnSAX8phnbjn8w redirectUri = http://localhost:8080/authorization +08:11:51.885 [XNIO-1 task-2] TMYLy39pQOCZXA2yceMXQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.886 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5dab20cf-ef85-4edd-b5cb-826123f6d41d +08:11:51.887 [XNIO-1 task-3] yTihRwFjQyak-tlqccOX3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.887 [XNIO-1 task-3] yTihRwFjQyak-tlqccOX3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.888 [XNIO-1 task-3] yTihRwFjQyak-tlqccOX3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.888 [XNIO-1 task-3] yTihRwFjQyak-tlqccOX3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:51.893 [XNIO-1 task-3] yTihRwFjQyak-tlqccOX3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.898 [XNIO-1 task-2] EpWP9zQMTI-fonfdpy1L-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.898 [XNIO-1 task-2] EpWP9zQMTI-fonfdpy1L-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.899 [XNIO-1 task-2] EpWP9zQMTI-fonfdpy1L-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.899 [XNIO-1 task-2] EpWP9zQMTI-fonfdpy1L-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:51.899 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:abe09316 +08:11:51.900 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:917c3a45 +08:11:51.901 [XNIO-1 task-3] o4J_nhZpT-aALvHMlqmyhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.901 [XNIO-1 task-3] o4J_nhZpT-aALvHMlqmyhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.901 [XNIO-1 task-3] o4J_nhZpT-aALvHMlqmyhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.901 [XNIO-1 task-3] o4J_nhZpT-aALvHMlqmyhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.905 [XNIO-1 task-2] EpWP9zQMTI-fonfdpy1L-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:51.905 [XNIO-1 task-2] EpWP9zQMTI-fonfdpy1L-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.908 [XNIO-1 task-3] o4J_nhZpT-aALvHMlqmyhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.919 [XNIO-1 task-2] nafJ7L-eRXyN0cIEN9jV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.919 [XNIO-1 task-2] nafJ7L-eRXyN0cIEN9jV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.919 [XNIO-1 task-2] nafJ7L-eRXyN0cIEN9jV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.919 [XNIO-1 task-2] nafJ7L-eRXyN0cIEN9jV2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.924 [XNIO-1 task-3] 0Ld1arXhSp24CySEGDn_Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.924 [XNIO-1 task-3] 0Ld1arXhSp24CySEGDn_Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.924 [XNIO-1 task-3] 0Ld1arXhSp24CySEGDn_Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.924 [XNIO-1 task-2] nafJ7L-eRXyN0cIEN9jV2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.924 [XNIO-1 task-2] nafJ7L-eRXyN0cIEN9jV2Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.930 [XNIO-1 task-2] -ho1BsBSSnCOq4YkMp_qcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.931 [XNIO-1 task-3] 0Ld1arXhSp24CySEGDn_Jg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.931 [XNIO-1 task-2] -ho1BsBSSnCOq4YkMp_qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.932 [XNIO-1 task-2] -ho1BsBSSnCOq4YkMp_qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.932 [XNIO-1 task-2] -ho1BsBSSnCOq4YkMp_qcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.936 [XNIO-1 task-2] -ho1BsBSSnCOq4YkMp_qcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.943 [XNIO-1 task-3] bqjlooz4Rw6kyvJt3YbOkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.944 [XNIO-1 task-3] bqjlooz4Rw6kyvJt3YbOkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.944 [XNIO-1 task-3] bqjlooz4Rw6kyvJt3YbOkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.944 [XNIO-1 task-3] bqjlooz4Rw6kyvJt3YbOkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:51.949 [XNIO-1 task-3] bqjlooz4Rw6kyvJt3YbOkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.953 [XNIO-1 task-3] cok7nmJSTYSfn2yeqLwr7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.954 [XNIO-1 task-3] cok7nmJSTYSfn2yeqLwr7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.954 [XNIO-1 task-3] cok7nmJSTYSfn2yeqLwr7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.954 [XNIO-1 task-3] cok7nmJSTYSfn2yeqLwr7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:51.961 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:917c3a45 +08:11:51.962 [XNIO-1 task-2] gbGNvBkvS6-sfIpudZAIXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.962 [XNIO-1 task-2] gbGNvBkvS6-sfIpudZAIXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.962 [XNIO-1 task-2] gbGNvBkvS6-sfIpudZAIXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.962 [XNIO-1 task-2] gbGNvBkvS6-sfIpudZAIXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:51.962 [XNIO-1 task-3] cok7nmJSTYSfn2yeqLwr7w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.968 [XNIO-1 task-3] -qrwT26ERDCoeP7KO8qfrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.968 [XNIO-1 task-3] -qrwT26ERDCoeP7KO8qfrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.968 [XNIO-1 task-3] -qrwT26ERDCoeP7KO8qfrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.968 [XNIO-1 task-3] -qrwT26ERDCoeP7KO8qfrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.968 [XNIO-1 task-3] -qrwT26ERDCoeP7KO8qfrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:51.970 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4db30cb3-00bf-4820-b9a3-33fa64c2abe1 +08:11:51.974 [XNIO-1 task-3] -qrwT26ERDCoeP7KO8qfrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:51.978 [XNIO-1 task-2] P80K3YfPRc6A9o02GAqubw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.978 [XNIO-1 task-2] P80K3YfPRc6A9o02GAqubw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:51.978 [XNIO-1 task-2] P80K3YfPRc6A9o02GAqubw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:51.978 [XNIO-1 task-2] P80K3YfPRc6A9o02GAqubw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:51.984 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4db30cb3-00bf-4820-b9a3-33fa64c2abe1 +08:11:51.985 [XNIO-1 task-3] nk8mOtH5SNWekFamMs20fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.985 [XNIO-1 task-3] nk8mOtH5SNWekFamMs20fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.986 [XNIO-1 task-3] nk8mOtH5SNWekFamMs20fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.986 [XNIO-1 task-3] nk8mOtH5SNWekFamMs20fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:51.990 [XNIO-1 task-2] P80K3YfPRc6A9o02GAqubw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.990 [XNIO-1 task-3] nk8mOtH5SNWekFamMs20fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:51.996 [XNIO-1 task-3] wX7p4Q7CQIWK2b1MuUaklg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.996 [XNIO-1 task-3] wX7p4Q7CQIWK2b1MuUaklg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.996 [XNIO-1 task-3] wX7p4Q7CQIWK2b1MuUaklg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:51.997 [XNIO-1 task-3] wX7p4Q7CQIWK2b1MuUaklg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.000 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:67850884 +08:11:52.001 [XNIO-1 task-2] O7GSPM7IS-OkJ8hEoYAbIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.001 [XNIO-1 task-2] O7GSPM7IS-OkJ8hEoYAbIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.001 [XNIO-1 task-2] O7GSPM7IS-OkJ8hEoYAbIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.002 [XNIO-1 task-2] O7GSPM7IS-OkJ8hEoYAbIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", "Basic OTk4MjY4NWUtNmU0Ni00YjM4LWEwZjktZTM2NTk3YzEwMmE1Ok1KM1RuenpVUUdtR3dZY0FIME5qYlE=", authorization) +08:11:52.003 [XNIO-1 task-3] wX7p4Q7CQIWK2b1MuUaklg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.016 [XNIO-1 task-3] Onwnu1f3QFO_vRSRiRr8wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.016 [XNIO-1 task-3] Onwnu1f3QFO_vRSRiRr8wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.016 [XNIO-1 task-3] Onwnu1f3QFO_vRSRiRr8wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.016 [XNIO-1 task-3] Onwnu1f3QFO_vRSRiRr8wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:52.016 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:67850884 +08:11:52.018 [XNIO-1 task-4] 8NCEtTWBTWCnoI8gjSziRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.018 [XNIO-1 task-4] 8NCEtTWBTWCnoI8gjSziRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.018 [XNIO-1 task-4] 8NCEtTWBTWCnoI8gjSziRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.018 [XNIO-1 task-4] 8NCEtTWBTWCnoI8gjSziRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.023 [XNIO-1 task-2] O7GSPM7IS-OkJ8hEoYAbIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.024 [XNIO-1 task-2] O7GSPM7IS-OkJ8hEoYAbIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.024 [XNIO-1 task-3] Onwnu1f3QFO_vRSRiRr8wQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +08:11:52.031 [XNIO-1 task-4] CvOg5ae8QTiqpjh1vJxOyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.031 [XNIO-1 task-4] CvOg5ae8QTiqpjh1vJxOyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.031 [XNIO-1 task-4] CvOg5ae8QTiqpjh1vJxOyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.032 [XNIO-1 task-4] CvOg5ae8QTiqpjh1vJxOyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.035 [XNIO-1 task-2] B2KuzoywR4SPLyTPZ6PPSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.035 [XNIO-1 task-2] B2KuzoywR4SPLyTPZ6PPSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.035 [XNIO-1 task-2] B2KuzoywR4SPLyTPZ6PPSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.036 [XNIO-1 task-2] B2KuzoywR4SPLyTPZ6PPSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9d5dc702-1829-407f-a8b6-d5dd2f8726d5 scope = null +08:11:52.038 [XNIO-1 task-4] CvOg5ae8QTiqpjh1vJxOyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.046 [XNIO-1 task-4] DWBYHHEyRSmx2AbepLrE8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.046 [XNIO-1 task-4] DWBYHHEyRSmx2AbepLrE8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.046 [XNIO-1 task-4] DWBYHHEyRSmx2AbepLrE8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.046 [XNIO-1 task-4] DWBYHHEyRSmx2AbepLrE8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.047 [XNIO-1 task-2] B2KuzoywR4SPLyTPZ6PPSQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.051 [XNIO-1 task-4] DWBYHHEyRSmx2AbepLrE8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.055 [XNIO-1 task-2] nyfjMv8FRAuyLy2HEStPWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.056 [XNIO-1 task-2] nyfjMv8FRAuyLy2HEStPWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.056 [XNIO-1 task-2] nyfjMv8FRAuyLy2HEStPWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.056 [XNIO-1 task-2] nyfjMv8FRAuyLy2HEStPWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.061 [XNIO-1 task-2] nyfjMv8FRAuyLy2HEStPWQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.064 [XNIO-1 task-2] W-XUd7_ARXSF1JOPAAF2jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.064 [XNIO-1 task-2] W-XUd7_ARXSF1JOPAAF2jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.064 [XNIO-1 task-2] W-XUd7_ARXSF1JOPAAF2jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.065 [XNIO-1 task-2] W-XUd7_ARXSF1JOPAAF2jQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _tj6WbOARg2XHnSlU7CnBQ redirectUri = http://localhost:8080/authorization +08:11:52.068 [XNIO-1 task-4] kscImwqSRvStaQqlhkxHZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.069 [XNIO-1 task-4] kscImwqSRvStaQqlhkxHZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.069 [XNIO-1 task-4] kscImwqSRvStaQqlhkxHZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.069 [XNIO-1 task-4] kscImwqSRvStaQqlhkxHZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.069 [XNIO-1 task-3] Qv7izp_fQjSofQPZp6L3Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.069 [XNIO-1 task-3] Qv7izp_fQjSofQPZp6L3Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.069 [XNIO-1 task-3] Qv7izp_fQjSofQPZp6L3Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.069 [XNIO-1 task-3] Qv7izp_fQjSofQPZp6L3Yg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = zVJkJAbjTrCCmqgP1hpWbw redirectUri = http://localhost:8080/authorization +08:11:52.071 [XNIO-1 task-2] W-XUd7_ARXSF1JOPAAF2jQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.074 [XNIO-1 task-4] kscImwqSRvStaQqlhkxHZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.075 [XNIO-1 task-3] Qv7izp_fQjSofQPZp6L3Yg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:52.075 [XNIO-1 task-3] Qv7izp_fQjSofQPZp6L3Yg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.080 [XNIO-1 task-2] Ayqbw1ExQ4q5WwB6SzbstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.081 [XNIO-1 task-2] Ayqbw1ExQ4q5WwB6SzbstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.081 [XNIO-1 task-2] Ayqbw1ExQ4q5WwB6SzbstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.081 [XNIO-1 task-2] Ayqbw1ExQ4q5WwB6SzbstQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.082 [XNIO-1 task-3] VDz5HpcMTtelKTh8V8UlSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.082 [XNIO-1 task-3] VDz5HpcMTtelKTh8V8UlSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.083 [XNIO-1 task-3] VDz5HpcMTtelKTh8V8UlSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.083 [XNIO-1 task-3] VDz5HpcMTtelKTh8V8UlSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c66d7055-c29e-4b10-adeb-6d0cdbdf7fb5 scope = null +08:11:52.084 [XNIO-1 task-4] ipk4Aip5Q46dEP8DUk2yVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.084 [XNIO-1 task-4] ipk4Aip5Q46dEP8DUk2yVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.084 [XNIO-1 task-4] ipk4Aip5Q46dEP8DUk2yVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.084 [XNIO-1 task-4] ipk4Aip5Q46dEP8DUk2yVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6785bd50-be65-42ce-8403-2e45fc89a7b3 scope = null +08:11:52.087 [XNIO-1 task-2] Ayqbw1ExQ4q5WwB6SzbstQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.092 [XNIO-1 task-3] VDz5HpcMTtelKTh8V8UlSg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.093 [XNIO-1 task-2] UghvNyOfQYGQ8-GEboGTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.093 [XNIO-1 task-2] UghvNyOfQYGQ8-GEboGTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.093 [XNIO-1 task-2] UghvNyOfQYGQ8-GEboGTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.094 [XNIO-1 task-2] UghvNyOfQYGQ8-GEboGTgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.094 [XNIO-1 task-4] ipk4Aip5Q46dEP8DUk2yVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.097 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:df155407-a87f-4033-b8cb-0dafb0b1be31 +08:11:52.098 [XNIO-1 task-2] UghvNyOfQYGQ8-GEboGTgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.103 [XNIO-1 task-4] rMe3hnOQTb-38qPkZ7etUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.103 [XNIO-1 task-4] rMe3hnOQTb-38qPkZ7etUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.103 [XNIO-1 task-4] rMe3hnOQTb-38qPkZ7etUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.103 [XNIO-1 task-4] rMe3hnOQTb-38qPkZ7etUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTFkODQ3NTctM2VmZS00ZmNkLTlhYjktZjZjMzNiZjczMWI3OkJ0WXhzQ01hUUFxMmZlaFJRUVNaakE=", "Basic NTFkODQ3NTctM2VmZS00ZmNkLTlhYjktZjZjMzNiZjczMWI3OkJ0WXhzQ01hUUFxMmZlaFJRUVNaakE=", authorization) +08:11:52.105 [XNIO-1 task-2] DeGtM9eWSdS8R4RFFuh3vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.105 [XNIO-1 task-2] DeGtM9eWSdS8R4RFFuh3vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.105 [XNIO-1 task-2] DeGtM9eWSdS8R4RFFuh3vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.105 [XNIO-1 task-2] DeGtM9eWSdS8R4RFFuh3vA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.110 [XNIO-1 task-2] DeGtM9eWSdS8R4RFFuh3vA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.114 [XNIO-1 task-4] rMe3hnOQTb-38qPkZ7etUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.115 [XNIO-1 task-2] C3HPR7KSTDuYifMBPCSnXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.115 [XNIO-1 task-2] C3HPR7KSTDuYifMBPCSnXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.115 [XNIO-1 task-2] C3HPR7KSTDuYifMBPCSnXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.116 [XNIO-1 task-2] C3HPR7KSTDuYifMBPCSnXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.121 [XNIO-1 task-2] C3HPR7KSTDuYifMBPCSnXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.129 [XNIO-1 task-2] 7Bc9OkgxS9KVPKTE2nRIPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.129 [XNIO-1 task-2] 7Bc9OkgxS9KVPKTE2nRIPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.129 [XNIO-1 task-2] 7Bc9OkgxS9KVPKTE2nRIPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.129 [XNIO-1 task-2] 7Bc9OkgxS9KVPKTE2nRIPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.134 [XNIO-1 task-2] 7Bc9OkgxS9KVPKTE2nRIPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.138 [XNIO-1 task-2] cdDE_0cBRLKKZNZHrxM-kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.138 [XNIO-1 task-2] cdDE_0cBRLKKZNZHrxM-kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.138 [XNIO-1 task-2] cdDE_0cBRLKKZNZHrxM-kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.138 [XNIO-1 task-2] cdDE_0cBRLKKZNZHrxM-kg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.144 [XNIO-1 task-2] cdDE_0cBRLKKZNZHrxM-kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.152 [XNIO-1 task-2] xAgHlq6tR4yKVnEJE_nSkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.152 [XNIO-1 task-2] xAgHlq6tR4yKVnEJE_nSkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.152 [XNIO-1 task-2] xAgHlq6tR4yKVnEJE_nSkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.152 [XNIO-1 task-2] xAgHlq6tR4yKVnEJE_nSkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.156 [XNIO-1 task-4] r5Ii8C6VSxuf0XvI3E4Fpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.157 [XNIO-1 task-4] r5Ii8C6VSxuf0XvI3E4Fpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.157 [XNIO-1 task-4] r5Ii8C6VSxuf0XvI3E4Fpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.157 [XNIO-1 task-4] r5Ii8C6VSxuf0XvI3E4Fpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:52.157 [XNIO-1 task-2] xAgHlq6tR4yKVnEJE_nSkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.161 [XNIO-1 task-2] 29yUVJ9JR4S3KSuInlAKkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.161 [XNIO-1 task-2] 29yUVJ9JR4S3KSuInlAKkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.161 [XNIO-1 task-2] 29yUVJ9JR4S3KSuInlAKkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.161 [XNIO-1 task-2] 29yUVJ9JR4S3KSuInlAKkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.163 [XNIO-1 task-4] r5Ii8C6VSxuf0XvI3E4Fpg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:52.163 [XNIO-1 task-4] r5Ii8C6VSxuf0XvI3E4Fpg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.167 [XNIO-1 task-2] 29yUVJ9JR4S3KSuInlAKkg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.173 [XNIO-1 task-4] zLxpql-pR1mIjz4iszFNIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.173 [XNIO-1 task-4] zLxpql-pR1mIjz4iszFNIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.174 [XNIO-1 task-4] zLxpql-pR1mIjz4iszFNIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.174 [XNIO-1 task-4] zLxpql-pR1mIjz4iszFNIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.177 [XNIO-1 task-2] Y86yp3u0TLOdj2izP-y6jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.177 [XNIO-1 task-2] Y86yp3u0TLOdj2izP-y6jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.177 [XNIO-1 task-2] Y86yp3u0TLOdj2izP-y6jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.177 [XNIO-1 task-2] Y86yp3u0TLOdj2izP-y6jw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 429db766-b90e-4db0-835d-22c180a43367 scope = null +08:11:52.179 [XNIO-1 task-4] zLxpql-pR1mIjz4iszFNIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.184 [XNIO-1 task-4] SsfVgt_DTEuBBuy601tcWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.184 [XNIO-1 task-4] SsfVgt_DTEuBBuy601tcWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.184 [XNIO-1 task-4] SsfVgt_DTEuBBuy601tcWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.184 [XNIO-1 task-4] SsfVgt_DTEuBBuy601tcWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.188 [XNIO-1 task-2] Y86yp3u0TLOdj2izP-y6jw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.188 [XNIO-1 task-3] yI2LtbxLR0GfTNVnet-o2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.188 [XNIO-1 task-3] yI2LtbxLR0GfTNVnet-o2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.189 [XNIO-1 task-3] yI2LtbxLR0GfTNVnet-o2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.190 [XNIO-1 task-4] SsfVgt_DTEuBBuy601tcWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.190 [XNIO-1 task-4] SsfVgt_DTEuBBuy601tcWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.192 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:23f44d39-9aad-4426-beac-c244708b5a89 +08:11:52.201 [XNIO-1 task-4] chZLviGPRfyH3uOdIk4pzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.201 [XNIO-1 task-4] chZLviGPRfyH3uOdIk4pzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.201 [XNIO-1 task-4] chZLviGPRfyH3uOdIk4pzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.201 [XNIO-1 task-4] chZLviGPRfyH3uOdIk4pzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTU1YTg3OGYtMjMzNS00OTc3LWExZDctNjc1OGJlYjI5ZDJlOmZiQUljS01qUW1hMEZEWkFPWERuWXc=", "Basic YTU1YTg3OGYtMjMzNS00OTc3LWExZDctNjc1OGJlYjI5ZDJlOmZiQUljS01qUW1hMEZEWkFPWERuWXc=", authorization) +08:11:52.202 [XNIO-1 task-3] yI2LtbxLR0GfTNVnet-o2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:52.202 [XNIO-1 task-3] yI2LtbxLR0GfTNVnet-o2Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.208 [XNIO-1 task-4] chZLviGPRfyH3uOdIk4pzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.212 [XNIO-1 task-4] Z6-LD_v7T8yc4fBkn3dvmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.212 [XNIO-1 task-4] Z6-LD_v7T8yc4fBkn3dvmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.212 [XNIO-1 task-4] Z6-LD_v7T8yc4fBkn3dvmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.213 [XNIO-1 task-4] Z6-LD_v7T8yc4fBkn3dvmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.216 [XNIO-1 task-3] g5QTVMDFSS-VAlfA6O7uxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.216 [XNIO-1 task-3] g5QTVMDFSS-VAlfA6O7uxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.216 [XNIO-1 task-3] g5QTVMDFSS-VAlfA6O7uxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.216 [XNIO-1 task-3] g5QTVMDFSS-VAlfA6O7uxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6c9aa58e-320a-4b95-ac56-c8a5f07311ff scope = null +08:11:52.219 [XNIO-1 task-4] Z6-LD_v7T8yc4fBkn3dvmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.223 [XNIO-1 task-4] e7K-VOBaQL-yCA292IpcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.223 [XNIO-1 task-4] e7K-VOBaQL-yCA292IpcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.223 [XNIO-1 task-4] e7K-VOBaQL-yCA292IpcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.223 [XNIO-1 task-4] e7K-VOBaQL-yCA292IpcDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.228 [XNIO-1 task-3] g5QTVMDFSS-VAlfA6O7uxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.228 [XNIO-1 task-4] e7K-VOBaQL-yCA292IpcDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.234 [XNIO-1 task-4] JnDz-BuOQT-z6eW0CvS3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.234 [XNIO-1 task-4] JnDz-BuOQT-z6eW0CvS3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.234 [XNIO-1 task-4] JnDz-BuOQT-z6eW0CvS3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.234 [XNIO-1 task-4] JnDz-BuOQT-z6eW0CvS3bw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.237 [XNIO-1 task-3] Ymc5vFlBRb-ScYASvq4pdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.237 [XNIO-1 task-3] Ymc5vFlBRb-ScYASvq4pdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.237 [XNIO-1 task-3] Ymc5vFlBRb-ScYASvq4pdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.237 [XNIO-1 task-3] Ymc5vFlBRb-ScYASvq4pdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CLh4srvwRzCGTKoly_RRVg redirectUri = http://localhost:8080/authorization +08:11:52.243 [XNIO-1 task-4] JnDz-BuOQT-z6eW0CvS3bw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.244 [XNIO-1 task-3] Ymc5vFlBRb-ScYASvq4pdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.247 [XNIO-1 task-4] fUvSWu9jRu6Y6nkBVFpVBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.247 [XNIO-1 task-4] fUvSWu9jRu6Y6nkBVFpVBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.247 [XNIO-1 task-4] fUvSWu9jRu6Y6nkBVFpVBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.247 [XNIO-1 task-4] fUvSWu9jRu6Y6nkBVFpVBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzRmMTE0ZTctZGY5ZS00NmFiLWJjYzMtYWQyOWI2MmJkOTExOmpzdXc4SjZBUUFhcWZtUUZJc2VEcGc=", "Basic YzRmMTE0ZTctZGY5ZS00NmFiLWJjYzMtYWQyOWI2MmJkOTExOmpzdXc4SjZBUUFhcWZtUUZJc2VEcGc=", authorization) +08:11:52.254 [XNIO-1 task-4] fUvSWu9jRu6Y6nkBVFpVBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.261 [XNIO-1 task-4] H5DC5SJMTZ2uJZZELOGH8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.261 [XNIO-1 task-4] H5DC5SJMTZ2uJZZELOGH8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.261 [XNIO-1 task-4] H5DC5SJMTZ2uJZZELOGH8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.261 [XNIO-1 task-4] H5DC5SJMTZ2uJZZELOGH8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:52.265 [XNIO-1 task-3] W9mnqTWRSg29jwozjx7JnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.266 [XNIO-1 task-3] W9mnqTWRSg29jwozjx7JnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.266 [XNIO-1 task-3] W9mnqTWRSg29jwozjx7JnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.266 [XNIO-1 task-3] W9mnqTWRSg29jwozjx7JnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:52.266 [XNIO-1 task-4] H5DC5SJMTZ2uJZZELOGH8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.267 [XNIO-1 task-2] LOVztf9_SxWo-r3QStQz8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.267 [XNIO-1 task-2] LOVztf9_SxWo-r3QStQz8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.267 [XNIO-1 task-2] LOVztf9_SxWo-r3QStQz8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.267 [XNIO-1 task-2] LOVztf9_SxWo-r3QStQz8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:52.272 [XNIO-1 task-3] W9mnqTWRSg29jwozjx7JnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:52.272 [XNIO-1 task-3] W9mnqTWRSg29jwozjx7JnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.274 [XNIO-1 task-2] LOVztf9_SxWo-r3QStQz8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.277 [XNIO-1 task-4] _7f6FNCBRsCMgjXvuUy9yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.277 [XNIO-1 task-4] _7f6FNCBRsCMgjXvuUy9yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.277 [XNIO-1 task-4] _7f6FNCBRsCMgjXvuUy9yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.278 [XNIO-1 task-4] _7f6FNCBRsCMgjXvuUy9yw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:52.286 [XNIO-1 task-4] _7f6FNCBRsCMgjXvuUy9yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.290 [XNIO-1 task-3] 2S9HIU55Se-8yRpg5UjqFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.290 [XNIO-1 task-3] 2S9HIU55Se-8yRpg5UjqFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.291 [XNIO-1 task-3] 2S9HIU55Se-8yRpg5UjqFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.291 [XNIO-1 task-3] 2S9HIU55Se-8yRpg5UjqFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", "Basic YWQ0YjIyYTAtOGEwYy00M2Y2LTkzNTEtNTc4NDc1YzQwNmIzOmowT2lieUdyVFJtdE15Ykh0YWdyY2c=", authorization) +08:11:52.295 [XNIO-1 task-3] 2S9HIU55Se-8yRpg5UjqFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.298 [XNIO-1 task-3] XEdw-QPRT7eH9Frt-GmSGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.298 [XNIO-1 task-3] XEdw-QPRT7eH9Frt-GmSGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.298 [XNIO-1 task-3] XEdw-QPRT7eH9Frt-GmSGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.299 [XNIO-1 task-3] XEdw-QPRT7eH9Frt-GmSGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:52.301 [XNIO-1 task-4] ylU2MHjCT9mx08nIYLdtLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.302 [XNIO-1 task-4] ylU2MHjCT9mx08nIYLdtLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.302 [XNIO-1 task-4] ylU2MHjCT9mx08nIYLdtLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.302 [XNIO-1 task-4] ylU2MHjCT9mx08nIYLdtLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:52.304 [XNIO-1 task-3] XEdw-QPRT7eH9Frt-GmSGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:52.305 [XNIO-1 task-3] XEdw-QPRT7eH9Frt-GmSGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.308 [XNIO-1 task-4] ylU2MHjCT9mx08nIYLdtLA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.312 [XNIO-1 task-3] RG30pgn8SUeDUiHX7KDAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.312 [XNIO-1 task-3] RG30pgn8SUeDUiHX7KDAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.312 [XNIO-1 task-3] RG30pgn8SUeDUiHX7KDAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.312 [XNIO-1 task-3] RG30pgn8SUeDUiHX7KDAOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3mbHcP2ySfGS0xm69Evv9w redirectUri = http://localhost:8080/authorization +08:11:52.313 [XNIO-1 task-4] WZBYtwcxRo2ndEhmQj3ovA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.314 [XNIO-1 task-4] WZBYtwcxRo2ndEhmQj3ovA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.314 [XNIO-1 task-4] WZBYtwcxRo2ndEhmQj3ovA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.314 [XNIO-1 task-4] WZBYtwcxRo2ndEhmQj3ovA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.315 [XNIO-1 task-2] IrqrnadvSvuX3twMU_P83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.315 [XNIO-1 task-2] IrqrnadvSvuX3twMU_P83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.315 [XNIO-1 task-2] IrqrnadvSvuX3twMU_P83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.315 [XNIO-1 task-2] IrqrnadvSvuX3twMU_P83A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 443ab9af-e72c-4554-9242-f79f1385b720 scope = null +08:11:52.318 [XNIO-1 task-3] RG30pgn8SUeDUiHX7KDAOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.319 [XNIO-1 task-4] WZBYtwcxRo2ndEhmQj3ovA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.324 [XNIO-1 task-4] _xY6w0zjToKmbrBcwWRIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.325 [XNIO-1 task-4] _xY6w0zjToKmbrBcwWRIIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.325 [XNIO-1 task-4] _xY6w0zjToKmbrBcwWRIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.325 [XNIO-1 task-4] _xY6w0zjToKmbrBcwWRIIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:52.329 [XNIO-1 task-2] IrqrnadvSvuX3twMU_P83A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.329 [XNIO-1 task-3] FfZlAGiAT3Gb8s4xb3vf3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.329 [XNIO-1 task-3] FfZlAGiAT3Gb8s4xb3vf3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.329 [XNIO-1 task-3] FfZlAGiAT3Gb8s4xb3vf3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.330 [XNIO-1 task-3] FfZlAGiAT3Gb8s4xb3vf3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTFkODQ3NTctM2VmZS00ZmNkLTlhYjktZjZjMzNiZjczMWI3OkJ0WXhzQ01hUUFxMmZlaFJRUVNaakE=", "Basic NTFkODQ3NTctM2VmZS00ZmNkLTlhYjktZjZjMzNiZjczMWI3OkJ0WXhzQ01hUUFxMmZlaFJRUVNaakE=", authorization) +08:11:52.332 [XNIO-1 task-4] _xY6w0zjToKmbrBcwWRIIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.341 [XNIO-1 task-2] RWggG6qvTGGxrSOTfQfbyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.341 [XNIO-1 task-2] RWggG6qvTGGxrSOTfQfbyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.342 [XNIO-1 task-2] RWggG6qvTGGxrSOTfQfbyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.342 [XNIO-1 task-2] RWggG6qvTGGxrSOTfQfbyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzBmZGVmNDktNzgzYS00Y2M2LWFmYmQtOGQ4MzRiYmY1NjI4Okw3a1ZBWlc3UmZXb0xxSkxDQVN2Wnc=", "Basic YzBmZGVmNDktNzgzYS00Y2M2LWFmYmQtOGQ4MzRiYmY1NjI4Okw3a1ZBWlc3UmZXb0xxSkxDQVN2Wnc=", authorization) +08:11:52.342 [XNIO-1 task-3] FfZlAGiAT3Gb8s4xb3vf3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.344 [XNIO-1 task-4] rlLCaDroSteE82Go0L1aCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.344 [XNIO-1 task-4] rlLCaDroSteE82Go0L1aCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.344 [XNIO-1 task-4] rlLCaDroSteE82Go0L1aCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.344 [XNIO-1 task-4] rlLCaDroSteE82Go0L1aCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", "Basic MGZlNWM3OTgtNzAyZC00ZGIxLWFhMmMtMDAyNTc2OGQ4ZWMxOlpnd09rUWpPUjhpUnRwSzJfaE5STlE=", authorization) +08:11:52.345 [XNIO-1 task-4] rlLCaDroSteE82Go0L1aCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1ac35138-4a4f-44c8-95a8-04ab18e33d99 scope = null +08:11:52.347 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a5f56cbc-8318-460e-8535-42fbdd2afcd5 +08:11:52.353 [XNIO-1 task-2] RWggG6qvTGGxrSOTfQfbyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.360 [XNIO-1 task-4] rlLCaDroSteE82Go0L1aCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.363 [XNIO-1 task-2] IPR03upMRCKkusiHH-Kxkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.363 [XNIO-1 task-2] IPR03upMRCKkusiHH-Kxkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.363 [XNIO-1 task-2] IPR03upMRCKkusiHH-Kxkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.364 [XNIO-1 task-2] IPR03upMRCKkusiHH-Kxkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.371 [XNIO-1 task-4] H7G2tFhRS9GRQ9tWJAvCdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.371 [XNIO-1 task-4] H7G2tFhRS9GRQ9tWJAvCdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.371 [XNIO-1 task-4] H7G2tFhRS9GRQ9tWJAvCdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.372 [XNIO-1 task-4] H7G2tFhRS9GRQ9tWJAvCdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = RsFoNuAESWKWG1hABgeVSA redirectUri = http://localhost:8080/authorization +08:11:52.375 [XNIO-1 task-2] IPR03upMRCKkusiHH-Kxkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.377 [XNIO-1 task-4] H7G2tFhRS9GRQ9tWJAvCdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.383 [XNIO-1 task-2] 9roGoc4ZSuyI5WKt1147yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.383 [XNIO-1 task-2] 9roGoc4ZSuyI5WKt1147yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.383 [XNIO-1 task-2] 9roGoc4ZSuyI5WKt1147yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.383 [XNIO-1 task-2] 9roGoc4ZSuyI5WKt1147yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzBmZGVmNDktNzgzYS00Y2M2LWFmYmQtOGQ4MzRiYmY1NjI4Okw3a1ZBWlc3UmZXb0xxSkxDQVN2Wnc=", "Basic YzBmZGVmNDktNzgzYS00Y2M2LWFmYmQtOGQ4MzRiYmY1NjI4Okw3a1ZBWlc3UmZXb0xxSkxDQVN2Wnc=", authorization) +08:11:52.390 [XNIO-1 task-2] 9roGoc4ZSuyI5WKt1147yg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.397 [XNIO-1 task-2] EN4vkfmvQO-mSu3J1ZUdaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.397 [XNIO-1 task-2] EN4vkfmvQO-mSu3J1ZUdaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.397 [XNIO-1 task-2] EN4vkfmvQO-mSu3J1ZUdaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.397 [XNIO-1 task-2] EN4vkfmvQO-mSu3J1ZUdaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:52.401 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:88f7076c +08:11:52.403 [XNIO-1 task-2] EN4vkfmvQO-mSu3J1ZUdaA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.403 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:88f7076c +08:11:52.412 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:37344f81-3eaf-4663-81c3-285ab2f33b71 +08:11:52.413 [XNIO-1 task-2] gURqfOCnSweCGRF4BXggcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.414 [XNIO-1 task-2] gURqfOCnSweCGRF4BXggcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.414 [XNIO-1 task-2] gURqfOCnSweCGRF4BXggcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.415 [XNIO-1 task-2] gURqfOCnSweCGRF4BXggcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:52.417 [XNIO-1 task-4] pHuc-TugQFG624aqI3PwRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.417 [XNIO-1 task-4] pHuc-TugQFG624aqI3PwRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.417 [XNIO-1 task-4] pHuc-TugQFG624aqI3PwRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.418 [XNIO-1 task-4] pHuc-TugQFG624aqI3PwRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:52.423 [XNIO-1 task-2] gURqfOCnSweCGRF4BXggcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.428 [XNIO-1 task-2] 3hxxv-aLTb-HXeayAyOTpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.428 [XNIO-1 task-2] 3hxxv-aLTb-HXeayAyOTpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.428 [XNIO-1 task-2] 3hxxv-aLTb-HXeayAyOTpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.428 [XNIO-1 task-2] 3hxxv-aLTb-HXeayAyOTpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzVkNWIwMmQtNjc3ZC00NzkzLWJiZWEtYjdiYTdhZTY4Mjk3OnhpQllBUWJSUUdhOF9OSmJLNmwtd0E=", "Basic YzVkNWIwMmQtNjc3ZC00NzkzLWJiZWEtYjdiYTdhZTY4Mjk3OnhpQllBUWJSUUdhOF9OSmJLNmwtd0E=", authorization) +08:11:52.429 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ed827b18-ea7f-4c81-95bb-5aa8b05c7464 +08:11:52.431 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ed827b18-ea7f-4c81-95bb-5aa8b05c7464 +08:11:52.431 [XNIO-1 task-4] pHuc-TugQFG624aqI3PwRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.431 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:88f7076c +08:11:52.437 [XNIO-1 task-2] 3hxxv-aLTb-HXeayAyOTpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.444 [XNIO-1 task-4] 5yHFi_FUT8ypVliLuKbmEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.445 [XNIO-1 task-4] 5yHFi_FUT8ypVliLuKbmEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.445 [XNIO-1 task-4] 5yHFi_FUT8ypVliLuKbmEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.445 [XNIO-1 task-4] 5yHFi_FUT8ypVliLuKbmEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:52.447 [XNIO-1 task-2] 7q1r0HeJS6eImUwszxTDDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.450 [XNIO-1 task-2] 7q1r0HeJS6eImUwszxTDDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.450 [XNIO-1 task-2] 7q1r0HeJS6eImUwszxTDDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.451 [XNIO-1 task-2] 7q1r0HeJS6eImUwszxTDDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzVkNWIwMmQtNjc3ZC00NzkzLWJiZWEtYjdiYTdhZTY4Mjk3OnhpQllBUWJSUUdhOF9OSmJLNmwtd0E=", "Basic YzVkNWIwMmQtNjc3ZC00NzkzLWJiZWEtYjdiYTdhZTY4Mjk3OnhpQllBUWJSUUdhOF9OSmJLNmwtd0E=", authorization) +08:11:52.453 [XNIO-1 task-3] t7dAhNz9ThCnWgOr9c5xUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.453 [XNIO-1 task-3] t7dAhNz9ThCnWgOr9c5xUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.453 [XNIO-1 task-3] t7dAhNz9ThCnWgOr9c5xUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.453 [XNIO-1 task-3] t7dAhNz9ThCnWgOr9c5xUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NThmMGMzY2ItMTE2OC00ZTJlLWFmYjQtZjkxNDI2YTljZjgzOmlQUmk5ZEVIVFRXblhWM1p3YUo0VEE=", "Basic NThmMGMzY2ItMTE2OC00ZTJlLWFmYjQtZjkxNDI2YTljZjgzOmlQUmk5ZEVIVFRXblhWM1p3YUo0VEE=", authorization) +08:11:52.456 [XNIO-1 task-4] 5yHFi_FUT8ypVliLuKbmEg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.459 [XNIO-1 task-2] 7q1r0HeJS6eImUwszxTDDw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.459 [XNIO-1 task-3] t7dAhNz9ThCnWgOr9c5xUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:52.460 [XNIO-1 task-3] t7dAhNz9ThCnWgOr9c5xUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.468 [XNIO-1 task-4] RQLSyVauSuWMCoh4A9muhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.468 [XNIO-1 task-4] RQLSyVauSuWMCoh4A9muhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.468 [XNIO-1 task-4] RQLSyVauSuWMCoh4A9muhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.469 [XNIO-1 task-4] RQLSyVauSuWMCoh4A9muhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.470 [XNIO-1 task-3] h6kSLgUrTESybWCd8oznKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.471 [XNIO-1 task-3] h6kSLgUrTESybWCd8oznKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.471 [XNIO-1 task-3] h6kSLgUrTESybWCd8oznKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.471 [XNIO-1 task-3] h6kSLgUrTESybWCd8oznKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 61d5a3d2-602e-4a92-a40b-eec834cc058e scope = null +08:11:52.473 [XNIO-1 task-2] W8yEpnahTxKAuv-l1ZxVVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.473 [XNIO-1 task-2] W8yEpnahTxKAuv-l1ZxVVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.473 [XNIO-1 task-2] W8yEpnahTxKAuv-l1ZxVVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.473 [XNIO-1 task-2] W8yEpnahTxKAuv-l1ZxVVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4c4c88cf-fa5c-4426-a2f4-41185ea047f9 scope = null +08:11:52.474 [XNIO-1 task-4] RQLSyVauSuWMCoh4A9muhw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.480 [XNIO-1 task-3] h6kSLgUrTESybWCd8oznKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.481 [XNIO-1 task-3] h6kSLgUrTESybWCd8oznKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.481 [XNIO-1 task-4] ssH3aRh5RsuFMxHPqVODJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.481 [XNIO-1 task-4] ssH3aRh5RsuFMxHPqVODJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.481 [XNIO-1 task-4] ssH3aRh5RsuFMxHPqVODJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.484 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c7a5ff17-a745-4278-8378-b707ff2f61e4 +08:11:52.484 [XNIO-1 task-2] W8yEpnahTxKAuv-l1ZxVVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.485 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:88f7076c +08:11:52.487 [XNIO-1 task-4] ssH3aRh5RsuFMxHPqVODJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.488 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d5c96b7-dedb-476b-8624-f8de737da12c +08:11:52.490 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d5c96b7-dedb-476b-8624-f8de737da12c +08:11:52.491 [XNIO-1 task-4] 1AcXYS6KQn6EnezClBAcfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.491 [XNIO-1 task-4] 1AcXYS6KQn6EnezClBAcfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.491 [XNIO-1 task-4] 1AcXYS6KQn6EnezClBAcfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.492 [XNIO-1 task-4] 1AcXYS6KQn6EnezClBAcfg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c7a5ff17-a745-4278-8378-b707ff2f61e4 scope = null +08:11:52.495 [XNIO-1 task-2] gW_Ucp-nTZmVlS6K_lSqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.495 [XNIO-1 task-2] gW_Ucp-nTZmVlS6K_lSqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.495 [XNIO-1 task-2] gW_Ucp-nTZmVlS6K_lSqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.495 [XNIO-1 task-2] gW_Ucp-nTZmVlS6K_lSqmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.498 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d0f182b6 +08:11:52.499 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d0f182b6 +08:11:52.501 [XNIO-1 task-2] gW_Ucp-nTZmVlS6K_lSqmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.502 [XNIO-1 task-4] 1AcXYS6KQn6EnezClBAcfg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.504 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:84f3cde2-ea7d-4bed-a612-50c3bc9ea9c5 +08:11:52.506 [XNIO-1 task-2] 2OO2sCRaT4SoXTs2i1VI7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.506 [XNIO-1 task-2] 2OO2sCRaT4SoXTs2i1VI7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.506 [XNIO-1 task-2] 2OO2sCRaT4SoXTs2i1VI7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.506 [XNIO-1 task-2] 2OO2sCRaT4SoXTs2i1VI7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", "Basic MGExNzllYzEtNzlkNy00NDAwLTljMDYtYmM5NzI5ZTE0NzQwOjdjV0ZqWEh0UkRpS09QRVRIaEZDUmc=", authorization) +08:11:52.512 [XNIO-1 task-2] 2OO2sCRaT4SoXTs2i1VI7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.513 [XNIO-1 task-4] sD-l5KGlQyubtVgMLLaTww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.513 [XNIO-1 task-4] sD-l5KGlQyubtVgMLLaTww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.514 [XNIO-1 task-4] sD-l5KGlQyubtVgMLLaTww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.514 [XNIO-1 task-4] sD-l5KGlQyubtVgMLLaTww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", "Basic N2U3NDFkY2EtODM3MC00Y2ZiLThmYjgtZTA2MWI1YzkxNTk1Om90Qm55eDAzVDJpcHN4UTVTbHVqN1E=", authorization) +08:11:52.514 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:88f7076c +08:11:52.519 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:84f3cde2-ea7d-4bed-a612-50c3bc9ea9c5 +08:11:52.519 [XNIO-1 task-2] L4FLLOAeSYa5jk4KNLEEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.519 [XNIO-1 task-2] L4FLLOAeSYa5jk4KNLEEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.519 [XNIO-1 task-2] L4FLLOAeSYa5jk4KNLEEhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.519 [XNIO-1 task-2] L4FLLOAeSYa5jk4KNLEEhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.524 [XNIO-1 task-4] sD-l5KGlQyubtVgMLLaTww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.527 [XNIO-1 task-2] L4FLLOAeSYa5jk4KNLEEhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.532 [XNIO-1 task-2] yqObaUK1Td6gFF3ddhowOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.532 [XNIO-1 task-2] yqObaUK1Td6gFF3ddhowOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.532 [XNIO-1 task-2] yqObaUK1Td6gFF3ddhowOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.533 [XNIO-1 task-2] yqObaUK1Td6gFF3ddhowOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Rzx46QQrSIGrEaHuu__Buw redirectUri = http://localhost:8080/authorization +08:11:52.534 [XNIO-1 task-4] glJMh-AcROqBNUQubXIeAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.534 [XNIO-1 task-4] glJMh-AcROqBNUQubXIeAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.534 [XNIO-1 task-4] glJMh-AcROqBNUQubXIeAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.535 [XNIO-1 task-4] glJMh-AcROqBNUQubXIeAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.540 [XNIO-1 task-4] glJMh-AcROqBNUQubXIeAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.540 [XNIO-1 task-2] yqObaUK1Td6gFF3ddhowOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.547 [XNIO-1 task-2] EcwlPPy2RPODyX0IT8ITkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.548 [XNIO-1 task-2] EcwlPPy2RPODyX0IT8ITkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.548 [XNIO-1 task-2] EcwlPPy2RPODyX0IT8ITkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.548 [XNIO-1 task-2] EcwlPPy2RPODyX0IT8ITkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.552 [XNIO-1 task-2] EcwlPPy2RPODyX0IT8ITkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.556 [XNIO-1 task-2] oTv_3rLrS62JZJFFPDpu3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.556 [XNIO-1 task-2] oTv_3rLrS62JZJFFPDpu3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.556 [XNIO-1 task-2] oTv_3rLrS62JZJFFPDpu3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.556 [XNIO-1 task-2] oTv_3rLrS62JZJFFPDpu3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", "Basic NWM1ZTJjZDAtMWE1ZC00N2Q1LThiNTYtYTVkODBjNzlkMDUzOnR6TThsanNGU0ZDNFRtOWpWei1hWmc=", authorization) +08:11:52.561 [XNIO-1 task-2] oTv_3rLrS62JZJFFPDpu3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.565 [XNIO-1 task-2] orD8bcJLTsioCoCI_9O2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.566 [XNIO-1 task-2] orD8bcJLTsioCoCI_9O2xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.566 [XNIO-1 task-2] orD8bcJLTsioCoCI_9O2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.566 [XNIO-1 task-2] orD8bcJLTsioCoCI_9O2xA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", "Basic NmZhZTQyYjQtMWRlOS00ZGY2LWJjY2YtNjFjODAxOWE5ZDk4OkMtSVdrUm4xVGZlek9ZQTZsWGpWTmc=", authorization) +08:11:52.568 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d498e398-db82-446e-8e14-7b6afa364346 +08:11:52.568 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d498e398-db82-446e-8e14-7b6afa364346 +08:11:52.569 [XNIO-1 task-4] XdMhUwD_Rd6D4AfGauJdEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.569 [XNIO-1 task-4] XdMhUwD_Rd6D4AfGauJdEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.569 [XNIO-1 task-4] XdMhUwD_Rd6D4AfGauJdEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.569 [XNIO-1 task-4] XdMhUwD_Rd6D4AfGauJdEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.572 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d0f182b6 +08:11:52.574 [XNIO-1 task-4] XdMhUwD_Rd6D4AfGauJdEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.577 [XNIO-1 task-2] orD8bcJLTsioCoCI_9O2xA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.581 [XNIO-1 task-4] gTzL34vxRMW6xKd1-6CUAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.581 [XNIO-1 task-4] gTzL34vxRMW6xKd1-6CUAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.581 [XNIO-1 task-4] gTzL34vxRMW6xKd1-6CUAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.581 [XNIO-1 task-4] gTzL34vxRMW6xKd1-6CUAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NThmMGMzY2ItMTE2OC00ZTJlLWFmYjQtZjkxNDI2YTljZjgzOmlQUmk5ZEVIVFRXblhWM1p3YUo0VEE=", "Basic NThmMGMzY2ItMTE2OC00ZTJlLWFmYjQtZjkxNDI2YTljZjgzOmlQUmk5ZEVIVFRXblhWM1p3YUo0VEE=", authorization) +08:11:52.582 [XNIO-1 task-3] pUCWp-2ARBCWXEYHF_eEYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.583 [XNIO-1 task-3] pUCWp-2ARBCWXEYHF_eEYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +08:11:52.583 [XNIO-1 task-3] pUCWp-2ARBCWXEYHF_eEYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.583 [XNIO-1 task-3] pUCWp-2ARBCWXEYHF_eEYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjRjZGFkNDctZDg0MS00ZWIwLTliM2EtMmI4ZGNlYWEwZGM3OmZ5dE5ILW1IUkVpa3JNcnN4eGpVNnc=", "Basic YjRjZGFkNDctZDg0MS00ZWIwLTliM2EtMmI4ZGNlYWEwZGM3OmZ5dE5ILW1IUkVpa3JNcnN4eGpVNnc=", authorization) +08:11:52.586 [XNIO-1 task-4] gTzL34vxRMW6xKd1-6CUAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.589 [XNIO-1 task-3] pUCWp-2ARBCWXEYHF_eEYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +08:11:52.589 [XNIO-1 task-3] pUCWp-2ARBCWXEYHF_eEYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.593 [XNIO-1 task-4] l3GiIiwWROyVXXuKa3efiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.593 [XNIO-1 task-4] l3GiIiwWROyVXXuKa3efiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.593 [XNIO-1 task-4] l3GiIiwWROyVXXuKa3efiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.593 [XNIO-1 task-4] l3GiIiwWROyVXXuKa3efiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.598 [XNIO-1 task-4] l3GiIiwWROyVXXuKa3efiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.603 [XNIO-1 task-4] tAY1i6sbQ_iBOIMlLt7kmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.603 [XNIO-1 task-4] tAY1i6sbQ_iBOIMlLt7kmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.604 [XNIO-1 task-4] tAY1i6sbQ_iBOIMlLt7kmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.604 [XNIO-1 task-4] tAY1i6sbQ_iBOIMlLt7kmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WGFy3L8YQGumeXEwIwXTfg redirectUri = http://localhost:8080/authorization +08:11:52.605 [XNIO-1 task-3] 3b5i5FFLQoy9y0YC6ZVUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.605 [XNIO-1 task-3] 3b5i5FFLQoy9y0YC6ZVUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.605 [XNIO-1 task-3] 3b5i5FFLQoy9y0YC6ZVUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +08:11:52.605 [XNIO-1 task-3] 3b5i5FFLQoy9y0YC6ZVUrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +08:11:52.611 [XNIO-1 task-3] 3b5i5FFLQoy9y0YC6ZVUrQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +08:11:52.612 [XNIO-1 task-4] tAY1i6sbQ_iBOIMlLt7kmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +08:11:52.617 [XNIO-1 task-3] MPPMGZtyTwWyWVUPvXLGdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +08:11:52.618 [XNIO-1 task-3] MPPMGZtyTwWyWVUPvXLGdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token diff --git a/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..c812ac4 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_2/light-oauth2-oauth2-user-1.log @@ -0,0 +1,2522 @@ +08:11:47.155 [XNIO-1 task-1] C_evqtqKS3-qNhoVDUEtQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.155 [XNIO-1 task-1] C_evqtqKS3-qNhoVDUEtQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.155 [XNIO-1 task-1] C_evqtqKS3-qNhoVDUEtQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9f4e8ce9 +08:11:47.155 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9f4e8ce9 +08:11:47.161 [XNIO-1 task-1] a8LaszVrTr6nIdqT16wIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.162 [XNIO-1 task-1] a8LaszVrTr6nIdqT16wIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.163 [XNIO-1 task-1] a8LaszVrTr6nIdqT16wIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.163 [XNIO-1 task-1] a8LaszVrTr6nIdqT16wIDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.168 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.169 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.169 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.169 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, requestBody) +08:11:47.169 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG com.networknt.schema.TypeValidator debug - validate( "2320048a-7db0-4ef7-bb97-916891e4", {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, requestBody.firstName) +08:11:47.169 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG com.networknt.schema.TypeValidator debug - validate( "b45e32ca-aaf8-4d22-b60a-d621d0130e1b", {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, requestBody.password) +08:11:47.169 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, requestBody) +08:11:47.170 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, requestBody.userType) +08:11:47.170 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG com.networknt.schema.TypeValidator debug - validate( "afb77666", {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, requestBody.userId) +08:11:47.170 [XNIO-1 task-1] PWxdoQiES8e7yreVK9VMvw DEBUG com.networknt.schema.TypeValidator debug - validate( "12b8ae92-4f37-4f16-9c31-803520ef06ae", {"userId":"afb77666","userType":"admin","firstName":"2320048a-7db0-4ef7-bb97-916891e4","lastName":"69f729d6-3123-4a5b-8a97-6435efc1","email":"12b8ae92-4f37-4f16-9c31-803520ef06ae","password":"b45e32ca-aaf8-4d22-b60a-d621d0130e1b"}, requestBody.email) +08:11:47.174 [XNIO-1 task-1] 18Cs28a8TmGh_XNPhPVlVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.175 [XNIO-1 task-1] 18Cs28a8TmGh_XNPhPVlVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.175 [XNIO-1 task-1] 18Cs28a8TmGh_XNPhPVlVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.175 [XNIO-1 task-1] 18Cs28a8TmGh_XNPhPVlVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.182 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.182 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.182 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.183 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, requestBody) +08:11:47.183 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, requestBody) +08:11:47.183 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1b688325-e9fa-46fe-a5f3-4a36de97", {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, requestBody.lastName) +08:11:47.184 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b", {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, requestBody.password) +08:11:47.184 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, requestBody.userType) +08:11:47.184 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, requestBody) +08:11:47.184 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, {"userId":"4b4c63f4","userType":"admin","firstName":"6e768583-9405-4439-a208-1c8a6c8c","lastName":"1b688325-e9fa-46fe-a5f3-4a36de97","email":"016dc926-9262-45cc-bcdb-789a1fe509ef","password":"f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b"}, requestBody) +08:11:47.185 [XNIO-1 task-1] MQAiFAwMQxCnGDB7GjZ1Cw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password f1d5bd46-b0f6-4b30-8ff3-5f93b712e48b or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.189 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.189 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.189 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.189 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, requestBody) +08:11:47.190 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG com.networknt.schema.TypeValidator debug - validate( "382cef68-bba5-4eb9-ab77-69a26d8d", {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, requestBody.firstName) +08:11:47.190 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG com.networknt.schema.TypeValidator debug - validate( "2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc", {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, requestBody.password) +08:11:47.190 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, requestBody) +08:11:47.190 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, requestBody.userType) +08:11:47.190 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG com.networknt.schema.TypeValidator debug - validate( "d085e23c", {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, requestBody.userId) +08:11:47.191 [XNIO-1 task-1] Dy_-Ey5zRBO4l2ghVpMMjw DEBUG com.networknt.schema.TypeValidator debug - validate( "24380684-2848-48e5-abc1-58e3cb750fae", {"userId":"d085e23c","userType":"admin","firstName":"382cef68-bba5-4eb9-ab77-69a26d8d","lastName":"fffd1c87-e251-4e44-8fd4-3aefb56f","email":"24380684-2848-48e5-abc1-58e3cb750fae","password":"2e3126d2-1ac4-4ebe-9720-0fd181e1f3dc"}, requestBody.email) +08:11:47.194 [XNIO-1 task-1] BpUucSayQemD73ooKS4reQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.194 [XNIO-1 task-1] BpUucSayQemD73ooKS4reQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.195 [XNIO-1 task-1] BpUucSayQemD73ooKS4reQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.208 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/510f80e8, base path is set to: null +08:11:47.208 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.208 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.209 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:47.209 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/510f80e8, base path is set to: null +08:11:47.209 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG com.networknt.schema.TypeValidator debug - validate( "510f80e8", "510f80e8", userId) +08:11:47.210 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5993edbf-243f-45e1-86fb-0e852457414e","newPassword":"35545261-2330-49ff-9dc2-ddcec180fd90","newPasswordConfirm":"35545261-2330-49ff-9dc2-ddcec180fd90"}, {"password":"5993edbf-243f-45e1-86fb-0e852457414e","newPassword":"35545261-2330-49ff-9dc2-ddcec180fd90","newPasswordConfirm":"35545261-2330-49ff-9dc2-ddcec180fd90"}, requestBody) +08:11:47.210 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG com.networknt.schema.TypeValidator debug - validate( "35545261-2330-49ff-9dc2-ddcec180fd90", {"password":"5993edbf-243f-45e1-86fb-0e852457414e","newPassword":"35545261-2330-49ff-9dc2-ddcec180fd90","newPasswordConfirm":"35545261-2330-49ff-9dc2-ddcec180fd90"}, requestBody.newPasswordConfirm) +08:11:47.210 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG com.networknt.schema.TypeValidator debug - validate( "5993edbf-243f-45e1-86fb-0e852457414e", {"password":"5993edbf-243f-45e1-86fb-0e852457414e","newPassword":"35545261-2330-49ff-9dc2-ddcec180fd90","newPasswordConfirm":"35545261-2330-49ff-9dc2-ddcec180fd90"}, requestBody.password) +08:11:47.210 [XNIO-1 task-1] vxegIMUzR5CfGY9rwP6iLg DEBUG com.networknt.schema.TypeValidator debug - validate( "35545261-2330-49ff-9dc2-ddcec180fd90", {"password":"5993edbf-243f-45e1-86fb-0e852457414e","newPassword":"35545261-2330-49ff-9dc2-ddcec180fd90","newPasswordConfirm":"35545261-2330-49ff-9dc2-ddcec180fd90"}, requestBody.newPassword) +08:11:47.231 [XNIO-1 task-1] IRLK1ketR2u_Vm8Hc4uG3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.232 [XNIO-1 task-1] IRLK1ketR2u_Vm8Hc4uG3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.232 [XNIO-1 task-1] IRLK1ketR2u_Vm8Hc4uG3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.232 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2f691d89-78a3-4174-b8d3-56ddb5b2bb53 +08:11:47.233 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2f691d89-78a3-4174-b8d3-56ddb5b2bb53 +08:11:47.242 [XNIO-1 task-1] bOr-Z0vzSl6ZDd-by1ytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/510f80e8 +08:11:47.242 [XNIO-1 task-1] bOr-Z0vzSl6ZDd-by1ytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.242 [XNIO-1 task-1] bOr-Z0vzSl6ZDd-by1ytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.242 [XNIO-1 task-1] bOr-Z0vzSl6ZDd-by1ytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/510f80e8 +08:11:47.251 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.252 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.252 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.252 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, requestBody) +08:11:47.253 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, requestBody) +08:11:47.253 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG com.networknt.schema.TypeValidator debug - validate( "be4dc835-e770-458e-aefe-8f741fc3", {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, requestBody.lastName) +08:11:47.253 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG com.networknt.schema.FormatValidator debug - validate( "b20ffd99-684c-4401-a420-4dbb1a4bc095", {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, requestBody.password) +08:11:47.253 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, requestBody.userType) +08:11:47.253 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, requestBody) +08:11:47.253 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, {"userId":"7efdc802","userType":"admin","firstName":"eb81bb4a-425e-449d-bb14-e34b56c2","lastName":"be4dc835-e770-458e-aefe-8f741fc3","email":"6321b6b2-f45b-499f-a3a8-c579354c66c2","password":"b20ffd99-684c-4401-a420-4dbb1a4bc095"}, requestBody) +08:11:47.254 [XNIO-1 task-1] txkA1jXiTl6uLCrI5KdRMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password b20ffd99-684c-4401-a420-4dbb1a4bc095 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.258 [XNIO-1 task-1] nrgajPYSR7OkDFFYOqUAOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.258 [XNIO-1 task-1] nrgajPYSR7OkDFFYOqUAOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.258 [XNIO-1 task-1] nrgajPYSR7OkDFFYOqUAOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.258 [XNIO-1 task-1] nrgajPYSR7OkDFFYOqUAOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.264 [XNIO-1 task-1] I8cDW8rETQCYVrdVOH3aEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.264 [XNIO-1 task-1] I8cDW8rETQCYVrdVOH3aEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.264 [XNIO-1 task-1] I8cDW8rETQCYVrdVOH3aEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.280 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a2609187, base path is set to: null +08:11:47.280 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.280 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.280 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:47.280 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a2609187, base path is set to: null +08:11:47.280 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG com.networknt.schema.TypeValidator debug - validate( "a2609187", "a2609187", userId) +08:11:47.281 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"39c55a45-0d6d-48f5-9c37-e19525e8b570","newPassword":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8","newPasswordConfirm":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8"}, {"password":"39c55a45-0d6d-48f5-9c37-e19525e8b570","newPassword":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8","newPasswordConfirm":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8"}, requestBody) +08:11:47.281 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG com.networknt.schema.TypeValidator debug - validate( "8329ce8f-6213-43c3-a8a9-4d10b1ec18c8", {"password":"39c55a45-0d6d-48f5-9c37-e19525e8b570","newPassword":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8","newPasswordConfirm":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8"}, requestBody.newPasswordConfirm) +08:11:47.281 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG com.networknt.schema.TypeValidator debug - validate( "39c55a45-0d6d-48f5-9c37-e19525e8b570", {"password":"39c55a45-0d6d-48f5-9c37-e19525e8b570","newPassword":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8","newPasswordConfirm":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8"}, requestBody.password) +08:11:47.281 [XNIO-1 task-1] Jup6VHbSSla3K5SHfw4ugA DEBUG com.networknt.schema.TypeValidator debug - validate( "8329ce8f-6213-43c3-a8a9-4d10b1ec18c8", {"password":"39c55a45-0d6d-48f5-9c37-e19525e8b570","newPassword":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8","newPasswordConfirm":"8329ce8f-6213-43c3-a8a9-4d10b1ec18c8"}, requestBody.newPassword) +08:11:47.288 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ba412728-9531-4761-9eab-c21ce3292267 +08:11:47.289 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ba412728-9531-4761-9eab-c21ce3292267 +08:11:47.297 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.297 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.297 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.298 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, requestBody) +08:11:47.299 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, requestBody) +08:11:47.299 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "85d10557-156a-4722-8816-54935662", {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, requestBody.lastName) +08:11:47.299 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG com.networknt.schema.FormatValidator debug - validate( "52df0bd9-9bb2-4511-80be-6da48a2c2def", {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, requestBody.password) +08:11:47.299 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, requestBody.userType) +08:11:47.299 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, requestBody) +08:11:47.299 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, {"userId":"6fce19fa","userType":"admin","firstName":"3f1ace9f-90e6-4162-ad69-e3f84ade","lastName":"85d10557-156a-4722-8816-54935662","email":"a9cdcf50-2165-4d94-aeee-c2b747275300","password":"52df0bd9-9bb2-4511-80be-6da48a2c2def"}, requestBody) +08:11:47.300 [XNIO-1 task-1] sfwpv57ZS2S6V6fUtGVUtw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 52df0bd9-9bb2-4511-80be-6da48a2c2def or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.303 [XNIO-1 task-1] Xeu6ktojRoaFbH7BXQfrfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.303 [XNIO-1 task-1] Xeu6ktojRoaFbH7BXQfrfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.303 [XNIO-1 task-1] Xeu6ktojRoaFbH7BXQfrfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.310 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.310 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.310 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.311 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, requestBody) +08:11:47.311 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG com.networknt.schema.TypeValidator debug - validate( "a2f20346-54a9-4b87-a316-c1d34ad4", {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, requestBody.firstName) +08:11:47.312 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG com.networknt.schema.TypeValidator debug - validate( "b3d0632f-30e5-412a-a591-b597d8e339e3", {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, requestBody.password) +08:11:47.312 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, requestBody) +08:11:47.312 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, requestBody.userType) +08:11:47.312 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG com.networknt.schema.TypeValidator debug - validate( "cf51a4c5", {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, requestBody.userId) +08:11:47.312 [XNIO-1 task-1] DM_aXl80RGSKfuJ_HkXRSw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc538b41-bbfd-40b6-a5a6-a0c7a8838310", {"userId":"cf51a4c5","userType":"admin","firstName":"a2f20346-54a9-4b87-a316-c1d34ad4","lastName":"088458c9-80f0-457d-91f5-413a66a0","email":"dc538b41-bbfd-40b6-a5a6-a0c7a8838310","password":"b3d0632f-30e5-412a-a591-b597d8e339e3"}, requestBody.email) +08:11:47.315 [XNIO-1 task-1] q4kUiZlhTl-6vnz7UKki5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.316 [XNIO-1 task-1] q4kUiZlhTl-6vnz7UKki5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.316 [XNIO-1 task-1] q4kUiZlhTl-6vnz7UKki5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.323 [XNIO-1 task-1] ykL2rZPgSjOFJoGsFUJetg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.323 [XNIO-1 task-1] ykL2rZPgSjOFJoGsFUJetg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.323 [XNIO-1 task-1] ykL2rZPgSjOFJoGsFUJetg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.325 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:829682b4 +08:11:47.325 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:829682b4 +08:11:47.342 [XNIO-1 task-1] 2pP7jNkzQfiGk6ea0csLcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.342 [XNIO-1 task-1] 2pP7jNkzQfiGk6ea0csLcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.343 [XNIO-1 task-1] 2pP7jNkzQfiGk6ea0csLcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.359 [XNIO-1 task-1] RqK1AAwVSsGRnB6IYDxJ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2609187 +08:11:47.359 [XNIO-1 task-1] RqK1AAwVSsGRnB6IYDxJ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.359 [XNIO-1 task-1] RqK1AAwVSsGRnB6IYDxJ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.360 [XNIO-1 task-1] RqK1AAwVSsGRnB6IYDxJ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2609187 +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/225b311d, base path is set to: null +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/225b311d, base path is set to: null +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "225b311d", "225b311d", userId) +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"3f87fbe1-3d70-41fc-9c2e-dcb5089a524b","newPassword":"6e903056-b527-400f-9709-44f9aecdd82a","newPasswordConfirm":"6e903056-b527-400f-9709-44f9aecdd82a"}, {"password":"3f87fbe1-3d70-41fc-9c2e-dcb5089a524b","newPassword":"6e903056-b527-400f-9709-44f9aecdd82a","newPasswordConfirm":"6e903056-b527-400f-9709-44f9aecdd82a"}, requestBody) +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "6e903056-b527-400f-9709-44f9aecdd82a", {"password":"3f87fbe1-3d70-41fc-9c2e-dcb5089a524b","newPassword":"6e903056-b527-400f-9709-44f9aecdd82a","newPasswordConfirm":"6e903056-b527-400f-9709-44f9aecdd82a"}, requestBody.newPasswordConfirm) +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "3f87fbe1-3d70-41fc-9c2e-dcb5089a524b", {"password":"3f87fbe1-3d70-41fc-9c2e-dcb5089a524b","newPassword":"6e903056-b527-400f-9709-44f9aecdd82a","newPasswordConfirm":"6e903056-b527-400f-9709-44f9aecdd82a"}, requestBody.password) +08:11:47.362 [XNIO-1 task-1] ULqzkthGQAKKfh8z7olGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "6e903056-b527-400f-9709-44f9aecdd82a", {"password":"3f87fbe1-3d70-41fc-9c2e-dcb5089a524b","newPassword":"6e903056-b527-400f-9709-44f9aecdd82a","newPasswordConfirm":"6e903056-b527-400f-9709-44f9aecdd82a"}, requestBody.newPassword) +08:11:47.379 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6d4c423, base path is set to: null +08:11:47.380 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.380 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.380 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:47.380 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6d4c423, base path is set to: null +08:11:47.380 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG com.networknt.schema.TypeValidator debug - validate( "a6d4c423", "a6d4c423", userId) +08:11:47.380 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6e617607-b1a0-4751-a3ac-8b274ab96ed0","newPassword":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPasswordConfirm":"af714b70-d7d0-4312-a07b-17ff17bf2314"}, {"password":"6e617607-b1a0-4751-a3ac-8b274ab96ed0","newPassword":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPasswordConfirm":"af714b70-d7d0-4312-a07b-17ff17bf2314"}, requestBody) +08:11:47.380 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG com.networknt.schema.TypeValidator debug - validate( "af714b70-d7d0-4312-a07b-17ff17bf2314", {"password":"6e617607-b1a0-4751-a3ac-8b274ab96ed0","newPassword":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPasswordConfirm":"af714b70-d7d0-4312-a07b-17ff17bf2314"}, requestBody.newPasswordConfirm) +08:11:47.381 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG com.networknt.schema.TypeValidator debug - validate( "6e617607-b1a0-4751-a3ac-8b274ab96ed0", {"password":"6e617607-b1a0-4751-a3ac-8b274ab96ed0","newPassword":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPasswordConfirm":"af714b70-d7d0-4312-a07b-17ff17bf2314"}, requestBody.password) +08:11:47.381 [XNIO-1 task-1] zskUNCy9QSG2kdjVwt0EwA DEBUG com.networknt.schema.TypeValidator debug - validate( "af714b70-d7d0-4312-a07b-17ff17bf2314", {"password":"6e617607-b1a0-4751-a3ac-8b274ab96ed0","newPassword":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPasswordConfirm":"af714b70-d7d0-4312-a07b-17ff17bf2314"}, requestBody.newPassword) +08:11:47.382 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ba412728-9531-4761-9eab-c21ce3292267 +08:11:47.401 [XNIO-1 task-1] SnBXdwrFQxKoKXFvW3s5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.401 [XNIO-1 task-1] SnBXdwrFQxKoKXFvW3s5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.401 [XNIO-1 task-1] SnBXdwrFQxKoKXFvW3s5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.409 [XNIO-1 task-1] U_yA7X8rR6OF4EIpqP0IAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.409 [XNIO-1 task-1] U_yA7X8rR6OF4EIpqP0IAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.409 [XNIO-1 task-1] U_yA7X8rR6OF4EIpqP0IAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.416 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.416 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.416 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.417 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, requestBody) +08:11:47.417 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG com.networknt.schema.TypeValidator debug - validate( "a78e08a3-f001-438a-ba0e-b3a8579f", {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, requestBody.firstName) +08:11:47.417 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG com.networknt.schema.TypeValidator debug - validate( "3bdf917b-0834-4ca7-bc00-7a47710f867c", {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, requestBody.password) +08:11:47.417 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, requestBody) +08:11:47.417 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, requestBody.userType) +08:11:47.417 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG com.networknt.schema.TypeValidator debug - validate( "42b97ad7", {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, requestBody.userId) +08:11:47.417 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA DEBUG com.networknt.schema.TypeValidator debug - validate( "eef5213b-ad12-43da-a744-63eabda76e28", {"userId":"42b97ad7","userType":"admin","firstName":"a78e08a3-f001-438a-ba0e-b3a8579f","lastName":"2e3360e1-55ed-4586-a891-2e4ee247","email":"eef5213b-ad12-43da-a744-63eabda76e28","password":"3bdf917b-0834-4ca7-bc00-7a47710f867c"}, requestBody.email) +08:11:47.419 [XNIO-1 task-1] 2kgnpjarTPCcB9GUS5KXwA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 3bdf917b-0834-4ca7-bc00-7a47710f867c or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.420 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:47b6911a-03d9-4c7f-98a5-2d2d12921f9f +08:11:47.422 [XNIO-1 task-1] 4NmY4UbKRK29SUqSPITY_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.422 [XNIO-1 task-1] 4NmY4UbKRK29SUqSPITY_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.422 [XNIO-1 task-1] 4NmY4UbKRK29SUqSPITY_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.423 [XNIO-1 task-1] 4NmY4UbKRK29SUqSPITY_g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.428 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a6d4c423 +08:11:47.428 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.428 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.428 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:47.429 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a6d4c423 +08:11:47.429 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPassword":"9bac28eb-2295-401a-9076-d43895540825","newPasswordConfirm":"9bac28eb-2295-401a-9076-d43895540825"}, {"password":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPassword":"9bac28eb-2295-401a-9076-d43895540825","newPasswordConfirm":"9bac28eb-2295-401a-9076-d43895540825"}, requestBody) +08:11:47.429 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPassword":"9bac28eb-2295-401a-9076-d43895540825","newPasswordConfirm":"9bac28eb-2295-401a-9076-d43895540825"}, {"password":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPassword":"9bac28eb-2295-401a-9076-d43895540825","newPasswordConfirm":"9bac28eb-2295-401a-9076-d43895540825"}, requestBody) +08:11:47.429 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG com.networknt.schema.FormatValidator debug - validate( "9bac28eb-2295-401a-9076-d43895540825", {"password":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPassword":"9bac28eb-2295-401a-9076-d43895540825","newPasswordConfirm":"9bac28eb-2295-401a-9076-d43895540825"}, requestBody.newPasswordConfirm) +08:11:47.429 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG com.networknt.schema.FormatValidator debug - validate( "af714b70-d7d0-4312-a07b-17ff17bf2314", {"password":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPassword":"9bac28eb-2295-401a-9076-d43895540825","newPasswordConfirm":"9bac28eb-2295-401a-9076-d43895540825"}, requestBody.password) +08:11:47.429 [XNIO-1 task-1] 0Rh2Q22dREWyBJ-8hElvbw DEBUG com.networknt.schema.FormatValidator debug - validate( "9bac28eb-2295-401a-9076-d43895540825", {"password":"af714b70-d7d0-4312-a07b-17ff17bf2314","newPassword":"9bac28eb-2295-401a-9076-d43895540825","newPasswordConfirm":"9bac28eb-2295-401a-9076-d43895540825"}, requestBody.newPassword) +08:11:47.435 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:829682b4 +08:11:47.444 [XNIO-1 task-1] rDCh4WjOSSSuozjMzDBgdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2609187 +08:11:47.444 [XNIO-1 task-1] rDCh4WjOSSSuozjMzDBgdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.444 [XNIO-1 task-1] rDCh4WjOSSSuozjMzDBgdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.444 [XNIO-1 task-1] rDCh4WjOSSSuozjMzDBgdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2609187 +08:11:47.447 [XNIO-1 task-1] zulZ5q58QNal2QdbQjRsSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.448 [XNIO-1 task-1] zulZ5q58QNal2QdbQjRsSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.448 [XNIO-1 task-1] zulZ5q58QNal2QdbQjRsSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.455 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.455 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.456 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.456 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, requestBody) +08:11:47.456 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, requestBody) +08:11:47.456 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG com.networknt.schema.TypeValidator debug - validate( "cf927dff-b17c-4d12-a41f-3acd8eae", {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, requestBody.lastName) +08:11:47.456 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG com.networknt.schema.FormatValidator debug - validate( "75f6c3fc-66a0-4297-a63b-ca20a2de74ec", {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, requestBody.password) +08:11:47.456 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, requestBody.userType) +08:11:47.456 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, requestBody) +08:11:47.457 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, {"userId":"be5a82e7","userType":"admin","firstName":"dabde9b6-5e01-4ab7-b00d-a7019957","lastName":"cf927dff-b17c-4d12-a41f-3acd8eae","email":"4af0aca6-2c90-4558-9ea6-0eb38ca9b3ff","password":"75f6c3fc-66a0-4297-a63b-ca20a2de74ec"}, requestBody) +08:11:47.459 [XNIO-1 task-1] yEGFBVEUQmW8AabZtuscmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 75f6c3fc-66a0-4297-a63b-ca20a2de74ec or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.460 [XNIO-1 task-1] ClDFzQ9EQ_ikmZqbTEsc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/225b311d +08:11:47.460 [XNIO-1 task-1] ClDFzQ9EQ_ikmZqbTEsc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.460 [XNIO-1 task-1] ClDFzQ9EQ_ikmZqbTEsc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.462 [XNIO-1 task-1] ClDFzQ9EQ_ikmZqbTEsc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/225b311d +08:11:47.469 [XNIO-1 task-1] fgbXvq_zQfKn3ZsrARp8pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.469 [XNIO-1 task-1] fgbXvq_zQfKn3ZsrARp8pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.469 [XNIO-1 task-1] fgbXvq_zQfKn3ZsrARp8pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.469 [XNIO-1 task-1] fgbXvq_zQfKn3ZsrARp8pA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.473 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.473 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.473 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.473 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, requestBody) +08:11:47.474 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, requestBody) +08:11:47.474 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG com.networknt.schema.TypeValidator debug - validate( "9ab08f95-ea5c-47ad-9f76-bc9508e6", {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, requestBody.lastName) +08:11:47.474 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG com.networknt.schema.FormatValidator debug - validate( "b521e523-f712-4d5a-bb23-be562d91d621", {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, requestBody.password) +08:11:47.474 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, requestBody.userType) +08:11:47.474 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, requestBody) +08:11:47.474 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, {"userId":"34f734bd","userType":"admin","firstName":"6d4fc0bf-eacb-45f2-b6ac-d8ec38bd","lastName":"9ab08f95-ea5c-47ad-9f76-bc9508e6","email":"80d63965-dc34-4dc3-803d-efc3da0fef01","password":"b521e523-f712-4d5a-bb23-be562d91d621"}, requestBody) +08:11:47.476 [XNIO-1 task-1] 0MDV-rAhQhK7v4C0scndug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password b521e523-f712-4d5a-bb23-be562d91d621 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.480 [XNIO-1 task-1] 7C6GL_LATAyrl-pR0nTPQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2609187 +08:11:47.480 [XNIO-1 task-1] 7C6GL_LATAyrl-pR0nTPQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.480 [XNIO-1 task-1] 7C6GL_LATAyrl-pR0nTPQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.480 [XNIO-1 task-1] 7C6GL_LATAyrl-pR0nTPQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2609187 +08:11:47.486 [XNIO-1 task-1] H4dRvZxSRcSs_xSu28LHpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a2609187, base path is set to: null +08:11:47.486 [XNIO-1 task-1] H4dRvZxSRcSs_xSu28LHpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.486 [XNIO-1 task-1] H4dRvZxSRcSs_xSu28LHpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.487 [XNIO-1 task-1] H4dRvZxSRcSs_xSu28LHpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a2609187, base path is set to: null +08:11:47.487 [XNIO-1 task-1] H4dRvZxSRcSs_xSu28LHpw DEBUG com.networknt.schema.TypeValidator debug - validate( "a2609187", "a2609187", userId) +08:11:47.492 [XNIO-1 task-1] qHCYjBR_TGaRmhscdmSu-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.492 [XNIO-1 task-1] qHCYjBR_TGaRmhscdmSu-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.492 [XNIO-1 task-1] qHCYjBR_TGaRmhscdmSu-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.506 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a6d4c423 +08:11:47.506 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.506 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.506 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:47.507 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a6d4c423 +08:11:47.508 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9bac28eb-2295-401a-9076-d43895540825","newPassword":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPasswordConfirm":"12faf33a-c81b-4299-a00a-879ab65d03d8"}, {"password":"9bac28eb-2295-401a-9076-d43895540825","newPassword":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPasswordConfirm":"12faf33a-c81b-4299-a00a-879ab65d03d8"}, requestBody) +08:11:47.508 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9bac28eb-2295-401a-9076-d43895540825","newPassword":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPasswordConfirm":"12faf33a-c81b-4299-a00a-879ab65d03d8"}, {"password":"9bac28eb-2295-401a-9076-d43895540825","newPassword":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPasswordConfirm":"12faf33a-c81b-4299-a00a-879ab65d03d8"}, requestBody) +08:11:47.508 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG com.networknt.schema.FormatValidator debug - validate( "12faf33a-c81b-4299-a00a-879ab65d03d8", {"password":"9bac28eb-2295-401a-9076-d43895540825","newPassword":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPasswordConfirm":"12faf33a-c81b-4299-a00a-879ab65d03d8"}, requestBody.newPasswordConfirm) +08:11:47.508 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG com.networknt.schema.FormatValidator debug - validate( "9bac28eb-2295-401a-9076-d43895540825", {"password":"9bac28eb-2295-401a-9076-d43895540825","newPassword":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPasswordConfirm":"12faf33a-c81b-4299-a00a-879ab65d03d8"}, requestBody.password) +08:11:47.508 [XNIO-1 task-1] NC8jC2VITqyc0dooeL6NtA DEBUG com.networknt.schema.FormatValidator debug - validate( "12faf33a-c81b-4299-a00a-879ab65d03d8", {"password":"9bac28eb-2295-401a-9076-d43895540825","newPassword":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPasswordConfirm":"12faf33a-c81b-4299-a00a-879ab65d03d8"}, requestBody.newPassword) +08:11:47.514 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7ba84836-0e24-400e-8e61-d250e8e78ed9 +08:11:47.526 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, requestBody) +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, requestBody) +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG com.networknt.schema.TypeValidator debug - validate( "952c9d69-d9ba-49e3-92ef-3cdb2ab0", {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, requestBody.lastName) +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG com.networknt.schema.FormatValidator debug - validate( "8b378739-0cc5-4250-a75d-daac390d12c2", {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, requestBody.password) +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, requestBody.userType) +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, requestBody) +08:11:47.527 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, {"userId":"78c92088","userType":"admin","firstName":"b3661201-669c-498a-acee-059df31e","lastName":"952c9d69-d9ba-49e3-92ef-3cdb2ab0","email":"d359e589-a81b-474d-96d9-86fcb8632883","password":"8b378739-0cc5-4250-a75d-daac390d12c2"}, requestBody) +08:11:47.529 [XNIO-1 task-1] qr5d4u3EQO6fkWHaHHC0kA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 8b378739-0cc5-4250-a75d-daac390d12c2 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.533 [XNIO-1 task-1] XBRfqrLRQOicjoyUm5IHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.533 [XNIO-1 task-1] XBRfqrLRQOicjoyUm5IHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.533 [XNIO-1 task-1] XBRfqrLRQOicjoyUm5IHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.533 [XNIO-1 task-1] XBRfqrLRQOicjoyUm5IHZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.536 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb4533dd +08:11:47.536 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.536 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.536 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:47.537 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb4533dd +08:11:47.537 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"77d3a801-4b8a-4062-b1b3-b25eb96c5959","newPassword":"41fa50dc-1e84-4f9b-aa98-502c462244c8","newPasswordConfirm":"41fa50dc-1e84-4f9b-aa98-502c462244c8"}, {"password":"77d3a801-4b8a-4062-b1b3-b25eb96c5959","newPassword":"41fa50dc-1e84-4f9b-aa98-502c462244c8","newPasswordConfirm":"41fa50dc-1e84-4f9b-aa98-502c462244c8"}, requestBody) +08:11:47.537 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"77d3a801-4b8a-4062-b1b3-b25eb96c5959","newPassword":"41fa50dc-1e84-4f9b-aa98-502c462244c8","newPasswordConfirm":"41fa50dc-1e84-4f9b-aa98-502c462244c8"}, {"password":"77d3a801-4b8a-4062-b1b3-b25eb96c5959","newPassword":"41fa50dc-1e84-4f9b-aa98-502c462244c8","newPasswordConfirm":"41fa50dc-1e84-4f9b-aa98-502c462244c8"}, requestBody) +08:11:47.537 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG com.networknt.schema.FormatValidator debug - validate( "41fa50dc-1e84-4f9b-aa98-502c462244c8", {"password":"77d3a801-4b8a-4062-b1b3-b25eb96c5959","newPassword":"41fa50dc-1e84-4f9b-aa98-502c462244c8","newPasswordConfirm":"41fa50dc-1e84-4f9b-aa98-502c462244c8"}, requestBody.newPasswordConfirm) +08:11:47.537 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG com.networknt.schema.FormatValidator debug - validate( "77d3a801-4b8a-4062-b1b3-b25eb96c5959", {"password":"77d3a801-4b8a-4062-b1b3-b25eb96c5959","newPassword":"41fa50dc-1e84-4f9b-aa98-502c462244c8","newPasswordConfirm":"41fa50dc-1e84-4f9b-aa98-502c462244c8"}, requestBody.password) +08:11:47.537 [XNIO-1 task-1] GW_PgVj7SlCEAMbJ9Ct_8w DEBUG com.networknt.schema.FormatValidator debug - validate( "41fa50dc-1e84-4f9b-aa98-502c462244c8", {"password":"77d3a801-4b8a-4062-b1b3-b25eb96c5959","newPassword":"41fa50dc-1e84-4f9b-aa98-502c462244c8","newPasswordConfirm":"41fa50dc-1e84-4f9b-aa98-502c462244c8"}, requestBody.newPassword) +08:11:47.557 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a6d4c423 +08:11:47.557 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.557 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.557 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:47.557 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a6d4c423 +08:11:47.558 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPassword":"a224e5df-4c72-408a-89b7-574944fc594a","newPasswordConfirm":"a224e5df-4c72-408a-89b7-574944fc594a"}, {"password":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPassword":"a224e5df-4c72-408a-89b7-574944fc594a","newPasswordConfirm":"a224e5df-4c72-408a-89b7-574944fc594a"}, requestBody) +08:11:47.558 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPassword":"a224e5df-4c72-408a-89b7-574944fc594a","newPasswordConfirm":"a224e5df-4c72-408a-89b7-574944fc594a"}, {"password":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPassword":"a224e5df-4c72-408a-89b7-574944fc594a","newPasswordConfirm":"a224e5df-4c72-408a-89b7-574944fc594a"}, requestBody) +08:11:47.558 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "a224e5df-4c72-408a-89b7-574944fc594a", {"password":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPassword":"a224e5df-4c72-408a-89b7-574944fc594a","newPasswordConfirm":"a224e5df-4c72-408a-89b7-574944fc594a"}, requestBody.newPasswordConfirm) +08:11:47.558 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "12faf33a-c81b-4299-a00a-879ab65d03d8", {"password":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPassword":"a224e5df-4c72-408a-89b7-574944fc594a","newPasswordConfirm":"a224e5df-4c72-408a-89b7-574944fc594a"}, requestBody.password) +08:11:47.558 [XNIO-1 task-1] odrb1W9JRWm67_lOqZhI6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "a224e5df-4c72-408a-89b7-574944fc594a", {"password":"12faf33a-c81b-4299-a00a-879ab65d03d8","newPassword":"a224e5df-4c72-408a-89b7-574944fc594a","newPasswordConfirm":"a224e5df-4c72-408a-89b7-574944fc594a"}, requestBody.newPassword) +08:11:47.583 [XNIO-1 task-1] nd7fKKh0RyqeLbTFNpeTbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.583 [XNIO-1 task-1] nd7fKKh0RyqeLbTFNpeTbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.583 [XNIO-1 task-1] nd7fKKh0RyqeLbTFNpeTbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.584 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3905264d +08:11:47.592 [XNIO-1 task-1] HgZxc5v-T9iDTDfiS83z8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fb4533dd, base path is set to: null +08:11:47.592 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3905264d +08:11:47.592 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3905264d +08:11:47.592 [XNIO-1 task-1] HgZxc5v-T9iDTDfiS83z8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.592 [XNIO-1 task-1] HgZxc5v-T9iDTDfiS83z8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fb4533dd, base path is set to: null +08:11:47.592 [XNIO-1 task-1] HgZxc5v-T9iDTDfiS83z8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fb4533dd", "fb4533dd", userId) +08:11:47.602 [XNIO-1 task-1] _fEPnGOZRHG7mDCDr8Kp7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.602 [XNIO-1 task-1] _fEPnGOZRHG7mDCDr8Kp7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.602 [XNIO-1 task-1] _fEPnGOZRHG7mDCDr8Kp7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.602 [XNIO-1 task-1] _fEPnGOZRHG7mDCDr8Kp7g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.602 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3905264d +08:11:47.606 [XNIO-1 task-1] 5i-TNwNdQW-Hxkx9OOZbQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.606 [XNIO-1 task-1] 5i-TNwNdQW-Hxkx9OOZbQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.607 [XNIO-1 task-1] 5i-TNwNdQW-Hxkx9OOZbQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.609 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3905264d +08:11:47.613 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0c33a125 +08:11:47.620 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6d4c423, base path is set to: null +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6d4c423, base path is set to: null +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG com.networknt.schema.TypeValidator debug - validate( "a6d4c423", "a6d4c423", userId) +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a224e5df-4c72-408a-89b7-574944fc594a","newPassword":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPasswordConfirm":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc"}, {"password":"a224e5df-4c72-408a-89b7-574944fc594a","newPassword":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPasswordConfirm":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc"}, requestBody) +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG com.networknt.schema.TypeValidator debug - validate( "df1c2eaf-a027-492c-8cbd-aac9c7ac48cc", {"password":"a224e5df-4c72-408a-89b7-574944fc594a","newPassword":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPasswordConfirm":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc"}, requestBody.newPasswordConfirm) +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG com.networknt.schema.TypeValidator debug - validate( "a224e5df-4c72-408a-89b7-574944fc594a", {"password":"a224e5df-4c72-408a-89b7-574944fc594a","newPassword":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPasswordConfirm":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc"}, requestBody.password) +08:11:47.621 [XNIO-1 task-1] bd3wpSVmSnW4Dewzx8ET6w DEBUG com.networknt.schema.TypeValidator debug - validate( "df1c2eaf-a027-492c-8cbd-aac9c7ac48cc", {"password":"a224e5df-4c72-408a-89b7-574944fc594a","newPassword":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPasswordConfirm":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc"}, requestBody.newPassword) +08:11:47.641 [XNIO-1 task-1] eqYqGb2IQx-_17yNif3qgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0c33a125, base path is set to: null +08:11:47.642 [XNIO-1 task-1] eqYqGb2IQx-_17yNif3qgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.642 [XNIO-1 task-1] eqYqGb2IQx-_17yNif3qgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.642 [XNIO-1 task-1] eqYqGb2IQx-_17yNif3qgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0c33a125, base path is set to: null +08:11:47.642 [XNIO-1 task-1] eqYqGb2IQx-_17yNif3qgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c33a125", "0c33a125", userId) +08:11:47.647 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6bfdff8 +08:11:47.648 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6bfdff8 +08:11:47.649 [XNIO-1 task-1] yUq2F9YVSgaiWfppjiz04A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.649 [XNIO-1 task-1] yUq2F9YVSgaiWfppjiz04A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.650 [XNIO-1 task-1] yUq2F9YVSgaiWfppjiz04A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.651 [XNIO-1 task-1] yUq2F9YVSgaiWfppjiz04A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.656 [XNIO-1 task-1] XWLWb0cmTb-D8QjmwWXA8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.656 [XNIO-1 task-1] XWLWb0cmTb-D8QjmwWXA8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.656 [XNIO-1 task-1] XWLWb0cmTb-D8QjmwWXA8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.670 [XNIO-1 task-1] Bi5gRd9FQ9ONhU-R2ujs_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.670 [XNIO-1 task-1] Bi5gRd9FQ9ONhU-R2ujs_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.670 [XNIO-1 task-1] Bi5gRd9FQ9ONhU-R2ujs_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.678 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f9c93bac-5b4c-43e6-9a4d-0b0c60ee1f61 +08:11:47.678 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6d4c423, base path is set to: null +08:11:47.679 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.679 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.679 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:47.679 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6d4c423, base path is set to: null +08:11:47.679 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6d4c423", "a6d4c423", userId) +08:11:47.679 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPassword":"465c0c82-39d5-4630-979d-c1a37dc80c16","newPasswordConfirm":"465c0c82-39d5-4630-979d-c1a37dc80c16"}, {"password":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPassword":"465c0c82-39d5-4630-979d-c1a37dc80c16","newPasswordConfirm":"465c0c82-39d5-4630-979d-c1a37dc80c16"}, requestBody) +08:11:47.680 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG com.networknt.schema.TypeValidator debug - validate( "465c0c82-39d5-4630-979d-c1a37dc80c16", {"password":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPassword":"465c0c82-39d5-4630-979d-c1a37dc80c16","newPasswordConfirm":"465c0c82-39d5-4630-979d-c1a37dc80c16"}, requestBody.newPasswordConfirm) +08:11:47.681 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG com.networknt.schema.TypeValidator debug - validate( "df1c2eaf-a027-492c-8cbd-aac9c7ac48cc", {"password":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPassword":"465c0c82-39d5-4630-979d-c1a37dc80c16","newPasswordConfirm":"465c0c82-39d5-4630-979d-c1a37dc80c16"}, requestBody.password) +08:11:47.681 [XNIO-1 task-1] pSVZXr3nR9WM1kIHHavLlw DEBUG com.networknt.schema.TypeValidator debug - validate( "465c0c82-39d5-4630-979d-c1a37dc80c16", {"password":"df1c2eaf-a027-492c-8cbd-aac9c7ac48cc","newPassword":"465c0c82-39d5-4630-979d-c1a37dc80c16","newPasswordConfirm":"465c0c82-39d5-4630-979d-c1a37dc80c16"}, requestBody.newPassword) +08:11:47.696 [XNIO-1 task-1] ld-RAMCXQge9MJaG6ABS3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bc861bc9, base path is set to: null +08:11:47.696 [XNIO-1 task-1] ld-RAMCXQge9MJaG6ABS3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.696 [XNIO-1 task-1] ld-RAMCXQge9MJaG6ABS3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.696 [XNIO-1 task-1] ld-RAMCXQge9MJaG6ABS3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bc861bc9, base path is set to: null +08:11:47.697 [XNIO-1 task-1] ld-RAMCXQge9MJaG6ABS3g DEBUG com.networknt.schema.TypeValidator debug - validate( "bc861bc9", "bc861bc9", userId) +08:11:47.699 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.699 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.699 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.699 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, requestBody) +08:11:47.699 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG com.networknt.schema.TypeValidator debug - validate( "3b92dc4e-d557-416d-b215-84dde821", {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, requestBody.firstName) +08:11:47.699 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG com.networknt.schema.TypeValidator debug - validate( "74d766cb-bf24-4da9-9c8c-ccae1df22fec", {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, requestBody.password) +08:11:47.699 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, requestBody) +08:11:47.700 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, requestBody.userType) +08:11:47.700 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG com.networknt.schema.TypeValidator debug - validate( "bc5afd4b", {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, requestBody.userId) +08:11:47.700 [XNIO-1 task-1] BrkOMu9LThKcJN6hB9Xjag DEBUG com.networknt.schema.TypeValidator debug - validate( "8006758b-af81-458d-8090-506075bf6733", {"userId":"bc5afd4b","userType":"admin","firstName":"3b92dc4e-d557-416d-b215-84dde821","lastName":"464ac3a7-6c98-4bb1-8d92-5c659bb9","email":"8006758b-af81-458d-8090-506075bf6733","password":"74d766cb-bf24-4da9-9c8c-ccae1df22fec"}, requestBody.email) +08:11:47.703 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.703 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.703 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.704 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, requestBody) +08:11:47.704 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, requestBody) +08:11:47.704 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dbb336c5-7999-4dab-a8ad-cff342c9", {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, requestBody.lastName) +08:11:47.704 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG com.networknt.schema.FormatValidator debug - validate( "315a2398-9298-4e93-a030-c48ea38881bc", {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, requestBody.password) +08:11:47.704 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, requestBody.userType) +08:11:47.704 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, requestBody) +08:11:47.704 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, {"userId":"22a58d4d","userType":"admin","firstName":"674be2d6-62b8-41ba-bc2a-b0d24a66","lastName":"dbb336c5-7999-4dab-a8ad-cff342c9","email":"53353221-a343-4620-858d-48e871ab73c7","password":"315a2398-9298-4e93-a030-c48ea38881bc"}, requestBody) +08:11:47.705 [XNIO-1 task-1] uoDkatRSQCacnjqez-O0aQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 315a2398-9298-4e93-a030-c48ea38881bc or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.709 [XNIO-1 task-1] 3IpOMoNFRvy9JB07TTo80Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a6d4c423 +08:11:47.709 [XNIO-1 task-1] 3IpOMoNFRvy9JB07TTo80Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.709 [XNIO-1 task-1] 3IpOMoNFRvy9JB07TTo80Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.709 [XNIO-1 task-1] 3IpOMoNFRvy9JB07TTo80Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a6d4c423 +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bc861bc9, base path is set to: null +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bc861bc9, base path is set to: null +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bc861bc9", "bc861bc9", userId) +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"15311344-0c71-4386-8a6f-61c31fd00e4a","newPassword":"d6067233-dc7b-4060-a592-897f5bdedfe3","newPasswordConfirm":"d6067233-dc7b-4060-a592-897f5bdedfe3"}, {"password":"15311344-0c71-4386-8a6f-61c31fd00e4a","newPassword":"d6067233-dc7b-4060-a592-897f5bdedfe3","newPasswordConfirm":"d6067233-dc7b-4060-a592-897f5bdedfe3"}, requestBody) +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d6067233-dc7b-4060-a592-897f5bdedfe3", {"password":"15311344-0c71-4386-8a6f-61c31fd00e4a","newPassword":"d6067233-dc7b-4060-a592-897f5bdedfe3","newPasswordConfirm":"d6067233-dc7b-4060-a592-897f5bdedfe3"}, requestBody.newPasswordConfirm) +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "15311344-0c71-4386-8a6f-61c31fd00e4a", {"password":"15311344-0c71-4386-8a6f-61c31fd00e4a","newPassword":"d6067233-dc7b-4060-a592-897f5bdedfe3","newPasswordConfirm":"d6067233-dc7b-4060-a592-897f5bdedfe3"}, requestBody.password) +08:11:47.713 [XNIO-1 task-1] Tp6ngGweT2OL6nFDnYi6YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d6067233-dc7b-4060-a592-897f5bdedfe3", {"password":"15311344-0c71-4386-8a6f-61c31fd00e4a","newPassword":"d6067233-dc7b-4060-a592-897f5bdedfe3","newPasswordConfirm":"d6067233-dc7b-4060-a592-897f5bdedfe3"}, requestBody.newPassword) +08:11:47.741 [XNIO-1 task-1] COPmtdk9TWK9AZ6ZhgiPbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.742 [XNIO-1 task-1] COPmtdk9TWK9AZ6ZhgiPbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.742 [XNIO-1 task-1] COPmtdk9TWK9AZ6ZhgiPbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.742 [XNIO-1 task-1] COPmtdk9TWK9AZ6ZhgiPbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.747 [XNIO-1 task-1] 2VqqbQAJT0Sdph7u9if1Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.747 [XNIO-1 task-1] 2VqqbQAJT0Sdph7u9if1Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.747 [XNIO-1 task-1] 2VqqbQAJT0Sdph7u9if1Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.747 [XNIO-1 task-1] 2VqqbQAJT0Sdph7u9if1Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.750 [XNIO-1 task-1] oh5wKmDATQmPygPV8KQA8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a6d4c423, base path is set to: null +08:11:47.750 [XNIO-1 task-1] oh5wKmDATQmPygPV8KQA8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.750 [XNIO-1 task-1] oh5wKmDATQmPygPV8KQA8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.750 [XNIO-1 task-1] oh5wKmDATQmPygPV8KQA8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a6d4c423, base path is set to: null +08:11:47.751 [XNIO-1 task-1] oh5wKmDATQmPygPV8KQA8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a6d4c423", "a6d4c423", userId) +08:11:47.753 [XNIO-1 task-1] 8UXBUaytSXajhdrGAmV11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a6d4c423 +08:11:47.753 [XNIO-1 task-1] 8UXBUaytSXajhdrGAmV11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.753 [XNIO-1 task-1] 8UXBUaytSXajhdrGAmV11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.753 [XNIO-1 task-1] 8UXBUaytSXajhdrGAmV11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a6d4c423 +08:11:47.755 [XNIO-1 task-1] s5SUtvy8RFqAGhG5c5JBQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.755 [XNIO-1 task-1] s5SUtvy8RFqAGhG5c5JBQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.755 [XNIO-1 task-1] s5SUtvy8RFqAGhG5c5JBQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.755 [XNIO-1 task-1] s5SUtvy8RFqAGhG5c5JBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.758 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6bfdff8 +08:11:47.759 [XNIO-1 task-1] emmEGIWSRt-lNicfuUkoEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a6d4c423, base path is set to: null +08:11:47.760 [XNIO-1 task-1] emmEGIWSRt-lNicfuUkoEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.760 [XNIO-1 task-1] emmEGIWSRt-lNicfuUkoEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.760 [XNIO-1 task-1] emmEGIWSRt-lNicfuUkoEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a6d4c423, base path is set to: null +08:11:47.760 [XNIO-1 task-1] emmEGIWSRt-lNicfuUkoEA DEBUG com.networknt.schema.TypeValidator debug - validate( "a6d4c423", "a6d4c423", userId) +08:11:47.767 [XNIO-1 task-1] 4ef1_hwUTr6E_LqWA-kVuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bc861bc9 +08:11:47.767 [XNIO-1 task-1] 4ef1_hwUTr6E_LqWA-kVuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.767 [XNIO-1 task-1] 4ef1_hwUTr6E_LqWA-kVuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.767 [XNIO-1 task-1] 4ef1_hwUTr6E_LqWA-kVuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bc861bc9 +08:11:47.769 [XNIO-1 task-1] aPR1OwbDRHynzSBl86hy-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.769 [XNIO-1 task-1] aPR1OwbDRHynzSBl86hy-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.769 [XNIO-1 task-1] aPR1OwbDRHynzSBl86hy-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.779 [XNIO-1 task-1] uDv3T5oFRQip3VQuGiANpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bc861bc9, base path is set to: null +08:11:47.779 [XNIO-1 task-1] uDv3T5oFRQip3VQuGiANpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.779 [XNIO-1 task-1] uDv3T5oFRQip3VQuGiANpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.779 [XNIO-1 task-1] uDv3T5oFRQip3VQuGiANpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bc861bc9, base path is set to: null +08:11:47.780 [XNIO-1 task-1] uDv3T5oFRQip3VQuGiANpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bc861bc9", "bc861bc9", userId) +08:11:47.788 [XNIO-1 task-1] fXQC3J3CQ3mW8FQg6jiMUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.788 [XNIO-1 task-1] fXQC3J3CQ3mW8FQg6jiMUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.788 [XNIO-1 task-1] fXQC3J3CQ3mW8FQg6jiMUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.788 [XNIO-1 task-1] fXQC3J3CQ3mW8FQg6jiMUA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.793 [XNIO-1 task-1] 5U4i0qijTeSoDpYRDEsgCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.793 [XNIO-1 task-1] 5U4i0qijTeSoDpYRDEsgCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.793 [XNIO-1 task-1] 5U4i0qijTeSoDpYRDEsgCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.793 [XNIO-1 task-1] 5U4i0qijTeSoDpYRDEsgCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.796 [XNIO-1 task-1] rrKiMKqtRlic6msN-qwukQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.796 [XNIO-1 task-1] rrKiMKqtRlic6msN-qwukQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.797 [XNIO-1 task-1] rrKiMKqtRlic6msN-qwukQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.797 [XNIO-1 task-1] rrKiMKqtRlic6msN-qwukQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, requestBody) +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG com.networknt.schema.TypeValidator debug - validate( "63481583-a609-4989-807f-fc443968", {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, requestBody.firstName) +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG com.networknt.schema.TypeValidator debug - validate( "50260cc3-a7ce-4893-a8ee-d455d788657e", {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, requestBody.password) +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, requestBody) +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, requestBody.userType) +08:11:47.801 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c3c9b33", {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, requestBody.userId) +08:11:47.802 [XNIO-1 task-1] jLfcLXxDTpGTuZNttfubRA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a236d88-1c0a-4bd8-9c6b-6678e4108036", {"userId":"4c3c9b33","userType":"admin","firstName":"63481583-a609-4989-807f-fc443968","lastName":"eb386df6-d990-4179-8a84-13a06549","email":"7a236d88-1c0a-4bd8-9c6b-6678e4108036","password":"50260cc3-a7ce-4893-a8ee-d455d788657e"}, requestBody.email) +08:11:47.804 [XNIO-1 task-1] pM_Kl5MPR1eUDwgkv0AZ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.804 [XNIO-1 task-1] pM_Kl5MPR1eUDwgkv0AZ3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.804 [XNIO-1 task-1] pM_Kl5MPR1eUDwgkv0AZ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.810 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6fab6f97 +08:11:47.810 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6fab6f97 +08:11:47.815 [XNIO-1 task-1] LqUf-TllQZSO69clBUtv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6fab6f97 +08:11:47.815 [XNIO-1 task-1] LqUf-TllQZSO69clBUtv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.815 [XNIO-1 task-1] LqUf-TllQZSO69clBUtv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.815 [XNIO-1 task-1] LqUf-TllQZSO69clBUtv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6fab6f97 +08:11:47.815 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6fab6f97 +08:11:47.823 [XNIO-1 task-1] u8ItKqpLSfyE1nAG_YLE-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.823 [XNIO-1 task-1] u8ItKqpLSfyE1nAG_YLE-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.823 [XNIO-1 task-1] u8ItKqpLSfyE1nAG_YLE-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.842 [XNIO-1 task-1] 7GZe0uIJTcak0BPaSriUSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.842 [XNIO-1 task-1] 7GZe0uIJTcak0BPaSriUSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.842 [XNIO-1 task-1] 7GZe0uIJTcak0BPaSriUSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.857 [XNIO-1 task-1] ynyQ9GZFTMCy2tiIymVS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.857 [XNIO-1 task-1] ynyQ9GZFTMCy2tiIymVS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.857 [XNIO-1 task-1] ynyQ9GZFTMCy2tiIymVS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.857 [XNIO-1 task-1] ynyQ9GZFTMCy2tiIymVS5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.862 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.862 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.862 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.862 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, requestBody) +08:11:47.863 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0bf99a9b-f20d-46fc-87cd-57afe49f", {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, requestBody.firstName) +08:11:47.863 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62234179-d263-4e37-ba0c-0a3844e620b8", {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, requestBody.password) +08:11:47.863 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, requestBody) +08:11:47.863 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, requestBody.userType) +08:11:47.863 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a247b614", {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, requestBody.userId) +08:11:47.863 [XNIO-1 task-1] G1IDFDKjTHGuY_rkB_E5ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f996ee6-0ab0-45ec-9b16-1c8fa008892f", {"userId":"a247b614","userType":"admin","firstName":"0bf99a9b-f20d-46fc-87cd-57afe49f","lastName":"a5f01c6e-9ea7-40ce-8636-a21c9856","email":"1f996ee6-0ab0-45ec-9b16-1c8fa008892f","password":"62234179-d263-4e37-ba0c-0a3844e620b8"}, requestBody.email) +08:11:47.866 [XNIO-1 task-1] 6_5mmPdKShq3TjMQlcirUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cf20c480, base path is set to: null +08:11:47.866 [XNIO-1 task-1] 6_5mmPdKShq3TjMQlcirUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.866 [XNIO-1 task-1] 6_5mmPdKShq3TjMQlcirUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.866 [XNIO-1 task-1] 6_5mmPdKShq3TjMQlcirUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cf20c480, base path is set to: null +08:11:47.866 [XNIO-1 task-1] 6_5mmPdKShq3TjMQlcirUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cf20c480", "cf20c480", userId) +08:11:47.871 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:56bdaaca +08:11:47.872 [XNIO-1 task-1] tv4bLMIgQhGelcxntCEQFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a25df7, base path is set to: null +08:11:47.872 [XNIO-1 task-1] tv4bLMIgQhGelcxntCEQFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.872 [XNIO-1 task-1] tv4bLMIgQhGelcxntCEQFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.872 [XNIO-1 task-1] tv4bLMIgQhGelcxntCEQFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a25df7, base path is set to: null +08:11:47.873 [XNIO-1 task-1] tv4bLMIgQhGelcxntCEQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "77a25df7", "77a25df7", userId) +08:11:47.878 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e6bfdff8 +08:11:47.879 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, requestBody) +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG com.networknt.schema.TypeValidator debug - validate( "815369f7-1c30-406c-947a-d7b2c40d", {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, requestBody.firstName) +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG com.networknt.schema.TypeValidator debug - validate( "55668608-e014-405c-8ce8-e68980b3ee9b", {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, requestBody.password) +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, requestBody) +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, requestBody.userType) +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG com.networknt.schema.TypeValidator debug - validate( "ff06ba2c", {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, requestBody.userId) +08:11:47.880 [XNIO-1 task-1] VXLRGOpUStGekkKrxbKYow DEBUG com.networknt.schema.TypeValidator debug - validate( "693177e0-a033-4b78-a444-fb243d5747e7", {"userId":"ff06ba2c","userType":"admin","firstName":"815369f7-1c30-406c-947a-d7b2c40d","lastName":"0ad211fd-1390-4d42-b72e-2ed2b611","email":"693177e0-a033-4b78-a444-fb243d5747e7","password":"55668608-e014-405c-8ce8-e68980b3ee9b"}, requestBody.email) +08:11:47.884 [XNIO-1 task-1] WrNfy9INQASBCPL_g4xidA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.884 [XNIO-1 task-1] WrNfy9INQASBCPL_g4xidA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.884 [XNIO-1 task-1] WrNfy9INQASBCPL_g4xidA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.885 [XNIO-1 task-1] WrNfy9INQASBCPL_g4xidA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.889 [XNIO-1 task-1] uQi_BqawThO45x2PnoTjRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.889 [XNIO-1 task-1] uQi_BqawThO45x2PnoTjRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.890 [XNIO-1 task-1] uQi_BqawThO45x2PnoTjRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.890 [XNIO-1 task-1] uQi_BqawThO45x2PnoTjRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.891 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:56bdaaca +08:11:47.893 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, requestBody) +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, requestBody) +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "bf22edce-2e4c-4e94-9fb9-eb79b909", {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, requestBody.lastName) +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG com.networknt.schema.FormatValidator debug - validate( "80fd9f15-75b9-47b9-8f77-b04a18dacd25", {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, requestBody.password) +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, requestBody.userType) +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, requestBody) +08:11:47.894 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, {"userId":"49d516a3","userType":"admin","firstName":"1c7c92e3-6a8b-4056-b1af-1540c161","lastName":"bf22edce-2e4c-4e94-9fb9-eb79b909","email":"bdd911be-5e1f-4695-b595-9864594da46b","password":"80fd9f15-75b9-47b9-8f77-b04a18dacd25"}, requestBody) +08:11:47.895 [XNIO-1 task-1] G4Gp08YwTS6XBtF09dy9Yg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 80fd9f15-75b9-47b9-8f77-b04a18dacd25 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.897 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.897 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, requestBody) +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "48cac205-5ba6-4da1-8857-f2cff9c6", {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, requestBody.firstName) +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "e38d6f59-b891-471b-b984-f2e48bcc1909", {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, requestBody.password) +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, requestBody) +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, requestBody.userType) +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "667e959c", {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, requestBody.userId) +08:11:47.898 [XNIO-1 task-1] V9UwdLX_QsqoDeXxY69_Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1a6e9489-34af-4e54-bf9c-0116e583bb28", {"userId":"667e959c","userType":"admin","firstName":"48cac205-5ba6-4da1-8857-f2cff9c6","lastName":"82adcf77-1533-4be6-a483-3cad4032","email":"1a6e9489-34af-4e54-bf9c-0116e583bb28","password":"e38d6f59-b891-471b-b984-f2e48bcc1909"}, requestBody.email) +08:11:47.902 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.902 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.903 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.903 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, requestBody) +08:11:47.903 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, requestBody) +08:11:47.903 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG com.networknt.schema.TypeValidator debug - validate( "71efa9d7-1bde-4166-8c42-967edb8f", {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, requestBody.lastName) +08:11:47.903 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG com.networknt.schema.FormatValidator debug - validate( "5da8d88e-50e3-4ebd-b4dd-e961ba87374b", {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, requestBody.password) +08:11:47.904 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, requestBody.userType) +08:11:47.904 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, requestBody) +08:11:47.904 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, {"userId":"545844c1","userType":"admin","firstName":"5cf98104-d6ba-446f-983b-f4d23392","lastName":"71efa9d7-1bde-4166-8c42-967edb8f","email":"657e5412-cbef-4839-8f4a-9b7631ec2d7e","password":"5da8d88e-50e3-4ebd-b4dd-e961ba87374b"}, requestBody) +08:11:47.905 [XNIO-1 task-1] hKgdrsgHTY2u0-FgHHZ7YA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 5da8d88e-50e3-4ebd-b4dd-e961ba87374b or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:47.908 [XNIO-1 task-1] 4vE8cK1nRDSAu2UTYqi3GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.909 [XNIO-1 task-1] 4vE8cK1nRDSAu2UTYqi3GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.909 [XNIO-1 task-1] 4vE8cK1nRDSAu2UTYqi3GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.909 [XNIO-1 task-1] 4vE8cK1nRDSAu2UTYqi3GA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.913 [XNIO-1 task-1] iaUwzyZvTK-1QiWIekQ4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.913 [XNIO-1 task-1] iaUwzyZvTK-1QiWIekQ4Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.913 [XNIO-1 task-1] iaUwzyZvTK-1QiWIekQ4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.913 [XNIO-1 task-1] iaUwzyZvTK-1QiWIekQ4Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.918 [XNIO-1 task-1] y3W_0q-GSMSjrDB1ISFKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.918 [XNIO-1 task-1] y3W_0q-GSMSjrDB1ISFKSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.918 [XNIO-1 task-1] y3W_0q-GSMSjrDB1ISFKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.932 [XNIO-1 task-1] msX7U0DgR9-aLrY60DzG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.932 [XNIO-1 task-1] msX7U0DgR9-aLrY60DzG-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.932 [XNIO-1 task-1] msX7U0DgR9-aLrY60DzG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.933 [XNIO-1 task-1] msX7U0DgR9-aLrY60DzG-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:47.938 [XNIO-1 task-1] YTZlkcHDTua49Y_ej6uOLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.938 [XNIO-1 task-1] YTZlkcHDTua49Y_ej6uOLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.938 [XNIO-1 task-1] YTZlkcHDTua49Y_ej6uOLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:47.945 [XNIO-1 task-1] -SD8fEYIQru_xRcpgt0m0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eb72fbdf, base path is set to: null +08:11:47.945 [XNIO-1 task-1] -SD8fEYIQru_xRcpgt0m0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.945 [XNIO-1 task-1] -SD8fEYIQru_xRcpgt0m0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.945 [XNIO-1 task-1] -SD8fEYIQru_xRcpgt0m0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eb72fbdf, base path is set to: null +08:11:47.946 [XNIO-1 task-1] -SD8fEYIQru_xRcpgt0m0w DEBUG com.networknt.schema.TypeValidator debug - validate( "eb72fbdf", "eb72fbdf", userId) +08:11:47.950 [XNIO-1 task-1] -yDDyhcDRtKuQgg1pPNQCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.950 [XNIO-1 task-1] -yDDyhcDRtKuQgg1pPNQCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.950 [XNIO-1 task-1] -yDDyhcDRtKuQgg1pPNQCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.956 [XNIO-1 task-1] G5K_dZLnSjOBoHw5m-5Adw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eb72fbdf +08:11:47.956 [XNIO-1 task-1] G5K_dZLnSjOBoHw5m-5Adw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.956 [XNIO-1 task-1] G5K_dZLnSjOBoHw5m-5Adw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.956 [XNIO-1 task-1] G5K_dZLnSjOBoHw5m-5Adw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eb72fbdf +08:11:47.961 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/eb72fbdf, base path is set to: null +08:11:47.961 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:47.961 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:47.962 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.962 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:47.963 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/eb72fbdf +08:11:47.963 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"475ae81c-8a28-4c47-a893-98beaebcbdfe","newPassword":"e953311a-2387-497d-a48b-2c3bd1f21ff0","newPasswordConfirm":"e953311a-2387-497d-a48b-2c3bd1f21ff0"}, {"password":"475ae81c-8a28-4c47-a893-98beaebcbdfe","newPassword":"e953311a-2387-497d-a48b-2c3bd1f21ff0","newPasswordConfirm":"e953311a-2387-497d-a48b-2c3bd1f21ff0"}, requestBody) +08:11:47.963 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"475ae81c-8a28-4c47-a893-98beaebcbdfe","newPassword":"e953311a-2387-497d-a48b-2c3bd1f21ff0","newPasswordConfirm":"e953311a-2387-497d-a48b-2c3bd1f21ff0"}, {"password":"475ae81c-8a28-4c47-a893-98beaebcbdfe","newPassword":"e953311a-2387-497d-a48b-2c3bd1f21ff0","newPasswordConfirm":"e953311a-2387-497d-a48b-2c3bd1f21ff0"}, requestBody) +08:11:47.963 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e953311a-2387-497d-a48b-2c3bd1f21ff0", {"password":"475ae81c-8a28-4c47-a893-98beaebcbdfe","newPassword":"e953311a-2387-497d-a48b-2c3bd1f21ff0","newPasswordConfirm":"e953311a-2387-497d-a48b-2c3bd1f21ff0"}, requestBody.newPasswordConfirm) +08:11:47.963 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "475ae81c-8a28-4c47-a893-98beaebcbdfe", {"password":"475ae81c-8a28-4c47-a893-98beaebcbdfe","newPassword":"e953311a-2387-497d-a48b-2c3bd1f21ff0","newPasswordConfirm":"e953311a-2387-497d-a48b-2c3bd1f21ff0"}, requestBody.password) +08:11:47.963 [XNIO-1 task-1] omJIFey4SKq1QNHVW-NnPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e953311a-2387-497d-a48b-2c3bd1f21ff0", {"password":"475ae81c-8a28-4c47-a893-98beaebcbdfe","newPassword":"e953311a-2387-497d-a48b-2c3bd1f21ff0","newPasswordConfirm":"e953311a-2387-497d-a48b-2c3bd1f21ff0"}, requestBody.newPassword) +08:11:47.985 [XNIO-1 task-1] 3rO6QmUtRneQklnIDukZMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.985 [XNIO-1 task-1] 3rO6QmUtRneQklnIDukZMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.985 [XNIO-1 task-1] 3rO6QmUtRneQklnIDukZMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.994 [XNIO-1 task-1] sWputYKwTm6xKhrqaLEUBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.994 [XNIO-1 task-1] sWputYKwTm6xKhrqaLEUBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.994 [XNIO-1 task-1] sWputYKwTm6xKhrqaLEUBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.994 [XNIO-1 task-1] sWputYKwTm6xKhrqaLEUBw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:47.998 [XNIO-1 task-1] Bk5vvMXwSaKB8IMYMUUQdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eb72fbdf +08:11:47.998 [XNIO-1 task-1] Bk5vvMXwSaKB8IMYMUUQdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:47.998 [XNIO-1 task-1] Bk5vvMXwSaKB8IMYMUUQdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:47.998 [XNIO-1 task-1] Bk5vvMXwSaKB8IMYMUUQdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eb72fbdf +08:11:48.028 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.028 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, requestBody) +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, requestBody) +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG com.networknt.schema.TypeValidator debug - validate( "e7a30ae6-9de7-4064-87af-7c301325", {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, requestBody.lastName) +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG com.networknt.schema.FormatValidator debug - validate( "81fa7e7c-397b-4448-9a4a-93387831a758", {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, requestBody.password) +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, requestBody.userType) +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, requestBody) +08:11:48.029 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, {"userId":"580d2369","userType":"admin","firstName":"1dec5499-c292-4ec3-ad53-e7080434","lastName":"e7a30ae6-9de7-4064-87af-7c301325","email":"c0b60d9c-2553-49e0-ad49-600040d1abde","password":"81fa7e7c-397b-4448-9a4a-93387831a758"}, requestBody) +08:11:48.032 [XNIO-1 task-1] mzEzlq7RS-Wm9oa_PPC-1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 81fa7e7c-397b-4448-9a4a-93387831a758 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:48.035 [XNIO-1 task-1] VrblIEttSe6ILuPZJEoQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.035 [XNIO-1 task-1] VrblIEttSe6ILuPZJEoQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.035 [XNIO-1 task-1] VrblIEttSe6ILuPZJEoQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.036 [XNIO-1 task-1] VrblIEttSe6ILuPZJEoQ-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.040 [XNIO-1 task-1] WLL38RgtSYayENcjHRRyzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.040 [XNIO-1 task-1] WLL38RgtSYayENcjHRRyzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.040 [XNIO-1 task-1] WLL38RgtSYayENcjHRRyzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.080 [XNIO-1 task-1] f3Rvao3zQkyf-nGPc0n3Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3f9dc185 +08:11:48.080 [XNIO-1 task-1] f3Rvao3zQkyf-nGPc0n3Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.080 [XNIO-1 task-1] f3Rvao3zQkyf-nGPc0n3Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.080 [XNIO-1 task-1] f3Rvao3zQkyf-nGPc0n3Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3f9dc185 +08:11:48.085 [XNIO-1 task-1] uEySd095QdWlIOtmz2XE2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.085 [XNIO-1 task-1] uEySd095QdWlIOtmz2XE2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.085 [XNIO-1 task-1] uEySd095QdWlIOtmz2XE2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.085 [XNIO-1 task-1] uEySd095QdWlIOtmz2XE2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.089 [XNIO-1 task-1] 7lTMctwBRDuhuAZI9PRKjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3f9dc185, base path is set to: null +08:11:48.089 [XNIO-1 task-1] 7lTMctwBRDuhuAZI9PRKjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.090 [XNIO-1 task-1] 7lTMctwBRDuhuAZI9PRKjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.090 [XNIO-1 task-1] 7lTMctwBRDuhuAZI9PRKjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3f9dc185, base path is set to: null +08:11:48.090 [XNIO-1 task-1] 7lTMctwBRDuhuAZI9PRKjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f9dc185", "3f9dc185", userId) +08:11:48.092 [XNIO-1 task-1] Rxi1cTAEQMqmTYDz1OMkkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.092 [XNIO-1 task-1] Rxi1cTAEQMqmTYDz1OMkkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.092 [XNIO-1 task-1] Rxi1cTAEQMqmTYDz1OMkkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.092 [XNIO-1 task-1] Rxi1cTAEQMqmTYDz1OMkkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.096 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:56bdaaca +08:11:48.096 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3f9dc185 +08:11:48.096 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.096 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.097 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:48.097 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3f9dc185 +08:11:48.098 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c3c78629-8d0b-4274-9a0a-dadb644d6c93","newPassword":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3","newPasswordConfirm":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3"}, {"password":"c3c78629-8d0b-4274-9a0a-dadb644d6c93","newPassword":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3","newPasswordConfirm":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3"}, requestBody) +08:11:48.098 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c3c78629-8d0b-4274-9a0a-dadb644d6c93","newPassword":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3","newPasswordConfirm":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3"}, {"password":"c3c78629-8d0b-4274-9a0a-dadb644d6c93","newPassword":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3","newPasswordConfirm":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3"}, requestBody) +08:11:48.098 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG com.networknt.schema.FormatValidator debug - validate( "6b702f68-ac3f-40dc-971b-2b5b169b3dc3", {"password":"c3c78629-8d0b-4274-9a0a-dadb644d6c93","newPassword":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3","newPasswordConfirm":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3"}, requestBody.newPasswordConfirm) +08:11:48.098 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG com.networknt.schema.FormatValidator debug - validate( "c3c78629-8d0b-4274-9a0a-dadb644d6c93", {"password":"c3c78629-8d0b-4274-9a0a-dadb644d6c93","newPassword":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3","newPasswordConfirm":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3"}, requestBody.password) +08:11:48.098 [XNIO-1 task-1] Aspu85OvTeuKUx6Ry5m9Tg DEBUG com.networknt.schema.FormatValidator debug - validate( "6b702f68-ac3f-40dc-971b-2b5b169b3dc3", {"password":"c3c78629-8d0b-4274-9a0a-dadb644d6c93","newPassword":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3","newPasswordConfirm":"6b702f68-ac3f-40dc-971b-2b5b169b3dc3"}, requestBody.newPassword) +08:11:48.115 [XNIO-1 task-1] auuKIfMmR0uw-yMk8O82jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3f9dc185, base path is set to: null +08:11:48.115 [XNIO-1 task-1] auuKIfMmR0uw-yMk8O82jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.115 [XNIO-1 task-1] auuKIfMmR0uw-yMk8O82jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.115 [XNIO-1 task-1] auuKIfMmR0uw-yMk8O82jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3f9dc185, base path is set to: null +08:11:48.115 [XNIO-1 task-1] auuKIfMmR0uw-yMk8O82jg DEBUG com.networknt.schema.TypeValidator debug - validate( "3f9dc185", "3f9dc185", userId) +08:11:48.118 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cd36cfcb-448c-40cd-8f2f-97352d4fbde2 +08:11:48.118 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cd36cfcb-448c-40cd-8f2f-97352d4fbde2 +08:11:48.118 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0fe5c798-702d-4db1-aa2c-0025768d8ec1 +08:11:48.123 [XNIO-1 task-1] d38yN-YUTt62kIRf_FhaqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.123 [XNIO-1 task-1] d38yN-YUTt62kIRf_FhaqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.123 [XNIO-1 task-1] d38yN-YUTt62kIRf_FhaqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.124 [XNIO-1 task-1] d38yN-YUTt62kIRf_FhaqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.130 [XNIO-1 task-1] -DlgheALTYKTZyQ1cRPhGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +08:11:48.130 [XNIO-1 task-1] -DlgheALTYKTZyQ1cRPhGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +08:11:48.135 [XNIO-1 task-1] 1XB4KVdCRCio1fSDOuznKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.135 [XNIO-1 task-1] 1XB4KVdCRCio1fSDOuznKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.135 [XNIO-1 task-1] 1XB4KVdCRCio1fSDOuznKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.135 [XNIO-1 task-1] 1XB4KVdCRCio1fSDOuznKw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.135 [XNIO-1 task-1] 1XB4KVdCRCio1fSDOuznKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.140 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody) +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody) +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG com.networknt.schema.TypeValidator debug - validate( "96296523-ce83-4d64-92b7-d1227069", {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody.firstName) +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG com.networknt.schema.TypeValidator debug - validate( "1354f825-8137-4580-bb6b-e373c9d2", {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody.lastName) +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG com.networknt.schema.TypeValidator debug - validate( "a30582eb-5d07-4187-a567-8b18ed93e708", {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody.password) +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG com.networknt.schema.FormatValidator debug - validate( "a30582eb-5d07-4187-a567-8b18ed93e708", {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody.password) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +08:11:48.141 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody) +08:11:48.142 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, {"userId":"d1a65afc","userType":"admin","firstName":"96296523-ce83-4d64-92b7-d1227069","lastName":"1354f825-8137-4580-bb6b-e373c9d2","email":"2df7a064-101b-47f2-882c-522531b4a756","password":"a30582eb-5d07-4187-a567-8b18ed93e708"}, requestBody) +Jun 29, 2024 8:11:48 AM com.hazelcast.map.impl.operation.DeleteOperation +08:11:48.143 [XNIO-1 task-1] vsCi8YdtTJ-a-CIHXC0kQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password a30582eb-5d07-4187-a567-8b18ed93e708 or PasswordConfirm null is empty.","severity":"ERROR"} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:48.146 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, requestBody) +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, requestBody) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG com.networknt.schema.TypeValidator debug - validate( "94c7c3a8-f778-4c92-abcf-fe6badfb", {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, requestBody.lastName) +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG com.networknt.schema.FormatValidator debug - validate( "a9a5997a-8147-42da-9bc4-f6dc20adf623", {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, requestBody.password) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, requestBody.userType) +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, requestBody) +08:11:48.147 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, {"userId":"afbae184","userType":"admin","firstName":"f6589fbb-c445-441d-87e6-877df8ea","lastName":"94c7c3a8-f778-4c92-abcf-fe6badfb","email":"dfb9644f-1507-4a91-9b89-c9baf2f18ef8","password":"a9a5997a-8147-42da-9bc4-f6dc20adf623"}, requestBody) +08:11:48.150 [XNIO-1 task-1] 8gX7w26cSXqMBdRgYWqsqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password a9a5997a-8147-42da-9bc4-f6dc20adf623 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:48.152 [XNIO-1 task-1] ANG5Kmb0S52offezzc632A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.152 [XNIO-1 task-1] ANG5Kmb0S52offezzc632A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.152 [XNIO-1 task-1] ANG5Kmb0S52offezzc632A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.152 [XNIO-1 task-1] ANG5Kmb0S52offezzc632A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4f5de37f +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f5de37f, base path is set to: null +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f5de37f", "4f5de37f", userId) +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"50b0ad60-e86e-4cb9-a722-7f39e326884f","newPassword":"2983687a-0936-4beb-9808-fd0ee651a283","newPasswordConfirm":"2983687a-0936-4beb-9808-fd0ee651a283"}, {"password":"50b0ad60-e86e-4cb9-a722-7f39e326884f","newPassword":"2983687a-0936-4beb-9808-fd0ee651a283","newPasswordConfirm":"2983687a-0936-4beb-9808-fd0ee651a283"}, requestBody) +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2983687a-0936-4beb-9808-fd0ee651a283", {"password":"50b0ad60-e86e-4cb9-a722-7f39e326884f","newPassword":"2983687a-0936-4beb-9808-fd0ee651a283","newPasswordConfirm":"2983687a-0936-4beb-9808-fd0ee651a283"}, requestBody.newPasswordConfirm) +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0ad60-e86e-4cb9-a722-7f39e326884f", {"password":"50b0ad60-e86e-4cb9-a722-7f39e326884f","newPassword":"2983687a-0936-4beb-9808-fd0ee651a283","newPasswordConfirm":"2983687a-0936-4beb-9808-fd0ee651a283"}, requestBody.password) +08:11:48.165 [XNIO-1 task-1] JtnC5bK7TPqvm0YJkc_clQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2983687a-0936-4beb-9808-fd0ee651a283", {"password":"50b0ad60-e86e-4cb9-a722-7f39e326884f","newPassword":"2983687a-0936-4beb-9808-fd0ee651a283","newPasswordConfirm":"2983687a-0936-4beb-9808-fd0ee651a283"}, requestBody.newPassword) +08:11:48.183 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f5de37f, base path is set to: null +08:11:48.183 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.183 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.183 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:48.183 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f5de37f, base path is set to: null +08:11:48.183 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f5de37f", "4f5de37f", userId) +08:11:48.184 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2983687a-0936-4beb-9808-fd0ee651a283","newPassword":"197edaa6-dcb4-48ef-91b0-e3e5c156f121","newPasswordConfirm":"197edaa6-dcb4-48ef-91b0-e3e5c156f121"}, {"password":"2983687a-0936-4beb-9808-fd0ee651a283","newPassword":"197edaa6-dcb4-48ef-91b0-e3e5c156f121","newPasswordConfirm":"197edaa6-dcb4-48ef-91b0-e3e5c156f121"}, requestBody) +08:11:48.184 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG com.networknt.schema.TypeValidator debug - validate( "197edaa6-dcb4-48ef-91b0-e3e5c156f121", {"password":"2983687a-0936-4beb-9808-fd0ee651a283","newPassword":"197edaa6-dcb4-48ef-91b0-e3e5c156f121","newPasswordConfirm":"197edaa6-dcb4-48ef-91b0-e3e5c156f121"}, requestBody.newPasswordConfirm) +08:11:48.184 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG com.networknt.schema.TypeValidator debug - validate( "2983687a-0936-4beb-9808-fd0ee651a283", {"password":"2983687a-0936-4beb-9808-fd0ee651a283","newPassword":"197edaa6-dcb4-48ef-91b0-e3e5c156f121","newPasswordConfirm":"197edaa6-dcb4-48ef-91b0-e3e5c156f121"}, requestBody.password) +08:11:48.184 [XNIO-1 task-1] ww9K_QAOS2CdDLNONnCFrw DEBUG com.networknt.schema.TypeValidator debug - validate( "197edaa6-dcb4-48ef-91b0-e3e5c156f121", {"password":"2983687a-0936-4beb-9808-fd0ee651a283","newPassword":"197edaa6-dcb4-48ef-91b0-e3e5c156f121","newPasswordConfirm":"197edaa6-dcb4-48ef-91b0-e3e5c156f121"}, requestBody.newPassword) +08:11:48.204 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.204 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.204 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.204 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4284ded7-6ce2-4485-b557-ffbde880ddf8 +08:11:48.204 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, requestBody) +08:11:48.204 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ca2c80d-7b5b-4db3-b4f2-492e8187", {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, requestBody.firstName) +08:11:48.205 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "78a1aec9-4680-4604-a14c-0d771411f8b4", {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, requestBody.password) +08:11:48.205 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, requestBody) +08:11:48.205 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, requestBody.userType) +08:11:48.205 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "0dedd075", {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, requestBody.userId) +08:11:48.205 [XNIO-1 task-1] UWx0qOF4SkWi1QgTR9G5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "7931bdd4-0e04-4dc0-a8aa-b6786c7b4676", {"userId":"0dedd075","userType":"admin","firstName":"0ca2c80d-7b5b-4db3-b4f2-492e8187","lastName":"94bc7f5e-ea16-421a-b4dc-a9985e97","email":"7931bdd4-0e04-4dc0-a8aa-b6786c7b4676","password":"78a1aec9-4680-4604-a14c-0d771411f8b4"}, requestBody.email) +08:11:48.208 [XNIO-1 task-1] HbohqwDDTqGIpuQMo_jzDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f5de37f, base path is set to: null +08:11:48.209 [XNIO-1 task-1] HbohqwDDTqGIpuQMo_jzDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.209 [XNIO-1 task-1] HbohqwDDTqGIpuQMo_jzDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.209 [XNIO-1 task-1] HbohqwDDTqGIpuQMo_jzDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f5de37f, base path is set to: null +08:11:48.209 [XNIO-1 task-1] HbohqwDDTqGIpuQMo_jzDA DEBUG com.networknt.schema.TypeValidator debug - validate( "4f5de37f", "4f5de37f", userId) +08:11:48.215 [XNIO-1 task-1] JFVl43XWRiuHTeEV8jee-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.215 [XNIO-1 task-1] JFVl43XWRiuHTeEV8jee-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.216 [XNIO-1 task-1] JFVl43XWRiuHTeEV8jee-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.229 [XNIO-1 task-1] vi682vJyTsSeD_oXgmKChg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.229 [XNIO-1 task-1] vi682vJyTsSeD_oXgmKChg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.229 [XNIO-1 task-1] vi682vJyTsSeD_oXgmKChg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.229 [XNIO-1 task-1] vi682vJyTsSeD_oXgmKChg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.236 [XNIO-1 task-1] z198QUWsQzCivp57C8chtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.236 [XNIO-1 task-1] z198QUWsQzCivp57C8chtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.236 [XNIO-1 task-1] z198QUWsQzCivp57C8chtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.246 [XNIO-1 task-1] G2gNgmpRQYCdRyySLArIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5ffcb53 +08:11:48.246 [XNIO-1 task-1] G2gNgmpRQYCdRyySLArIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.246 [XNIO-1 task-1] G2gNgmpRQYCdRyySLArIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.246 [XNIO-1 task-1] G2gNgmpRQYCdRyySLArIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5ffcb53 +08:11:48.250 [XNIO-1 task-1] g4eJw-KiSC-A32LdveWdwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.250 [XNIO-1 task-1] g4eJw-KiSC-A32LdveWdwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.250 [XNIO-1 task-1] g4eJw-KiSC-A32LdveWdwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.250 [XNIO-1 task-1] g4eJw-KiSC-A32LdveWdwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.254 [XNIO-1 task-1] scqgvaj8RauDLbMUP43kXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.254 [XNIO-1 task-1] scqgvaj8RauDLbMUP43kXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.254 [XNIO-1 task-1] scqgvaj8RauDLbMUP43kXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.260 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.260 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody) +Jun 29, 2024 8:11:48 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.TypeValidator debug - validate( "54a3251c-a683-4cdc-92f1-4b7aeb96", {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody.lastName) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.TypeValidator debug - validate( "f28f8e99-292f-4d1c-8b79-f4edb47994bf", {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody.password) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.FormatValidator debug - validate( "f28f8e99-292f-4d1c-8b79-f4edb47994bf", {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody.password) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody.userType) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody.userType) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.TypeValidator debug - validate( "71af1716", {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody.userId) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody) +08:11:48.261 [XNIO-1 task-1] 3j6ksnCmT96PfarAP_jjxg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b19c582-de68-481d-966b-db9a7082ae64", {"userId":"71af1716","userType":"admin","firstName":"8d698d76-a6de-4a62-a3ae-c117004b","lastName":"54a3251c-a683-4cdc-92f1-4b7aeb96","email":"1b19c582-de68-481d-966b-db9a7082ae64","password":"f28f8e99-292f-4d1c-8b79-f4edb47994bf"}, requestBody.email) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +08:11:48.265 [XNIO-1 task-1] 2FPxC4ifRs67vTVwqim9yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.266 [XNIO-1 task-1] 2FPxC4ifRs67vTVwqim9yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.266 [XNIO-1 task-1] 2FPxC4ifRs67vTVwqim9yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +08:11:48.266 [XNIO-1 task-1] 2FPxC4ifRs67vTVwqim9yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.271 [XNIO-1 task-1] qASbcE5gQEKVvtz1C15IGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.271 [XNIO-1 task-1] qASbcE5gQEKVvtz1C15IGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.271 [XNIO-1 task-1] qASbcE5gQEKVvtz1C15IGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + +08:11:48.271 [XNIO-1 task-1] qASbcE5gQEKVvtz1C15IGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.274 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0fe5c798-702d-4db1-aa2c-0025768d8ec1 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:48.286 [XNIO-1 task-1] GfhJ-2gESfexlAnN-I5lhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/117854cf +08:11:48.286 [XNIO-1 task-1] GfhJ-2gESfexlAnN-I5lhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.286 [XNIO-1 task-1] GfhJ-2gESfexlAnN-I5lhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.286 [XNIO-1 task-1] GfhJ-2gESfexlAnN-I5lhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/117854cf + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +08:11:48.297 [XNIO-1 task-1] N_kOLmcaTHyFSpwvXWKVRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.297 [XNIO-1 task-1] N_kOLmcaTHyFSpwvXWKVRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.298 [XNIO-1 task-1] N_kOLmcaTHyFSpwvXWKVRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5ffcb53, base path is set to: null +08:11:48.298 [XNIO-1 task-1] N_kOLmcaTHyFSpwvXWKVRw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5ffcb53", "e5ffcb53", userId) +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e5ffcb53 +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e5ffcb53 +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5af888ad-fddb-4ac3-bcd6-a8012379ee1c","newPassword":"f60b6133-4a74-465a-8388-17e5d8af1356","newPasswordConfirm":"f60b6133-4a74-465a-8388-17e5d8af1356"}, {"password":"5af888ad-fddb-4ac3-bcd6-a8012379ee1c","newPassword":"f60b6133-4a74-465a-8388-17e5d8af1356","newPasswordConfirm":"f60b6133-4a74-465a-8388-17e5d8af1356"}, requestBody) +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5af888ad-fddb-4ac3-bcd6-a8012379ee1c","newPassword":"f60b6133-4a74-465a-8388-17e5d8af1356","newPasswordConfirm":"f60b6133-4a74-465a-8388-17e5d8af1356"}, {"password":"5af888ad-fddb-4ac3-bcd6-a8012379ee1c","newPassword":"f60b6133-4a74-465a-8388-17e5d8af1356","newPasswordConfirm":"f60b6133-4a74-465a-8388-17e5d8af1356"}, requestBody) +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG com.networknt.schema.FormatValidator debug - validate( "f60b6133-4a74-465a-8388-17e5d8af1356", {"password":"5af888ad-fddb-4ac3-bcd6-a8012379ee1c","newPassword":"f60b6133-4a74-465a-8388-17e5d8af1356","newPasswordConfirm":"f60b6133-4a74-465a-8388-17e5d8af1356"}, requestBody.newPasswordConfirm) +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG com.networknt.schema.FormatValidator debug - validate( "5af888ad-fddb-4ac3-bcd6-a8012379ee1c", {"password":"5af888ad-fddb-4ac3-bcd6-a8012379ee1c","newPassword":"f60b6133-4a74-465a-8388-17e5d8af1356","newPasswordConfirm":"f60b6133-4a74-465a-8388-17e5d8af1356"}, requestBody.password) +08:11:48.303 [XNIO-1 task-1] jr_rU3PORZ2OdHefsAk8zw DEBUG com.networknt.schema.FormatValidator debug - validate( "f60b6133-4a74-465a-8388-17e5d8af1356", {"password":"5af888ad-fddb-4ac3-bcd6-a8012379ee1c","newPassword":"f60b6133-4a74-465a-8388-17e5d8af1356","newPasswordConfirm":"f60b6133-4a74-465a-8388-17e5d8af1356"}, requestBody.newPassword) +08:11:48.319 [XNIO-1 task-1] C8IDRu24TH-UONhJEQkvwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5ffcb53, base path is set to: null +08:11:48.319 [XNIO-1 task-1] C8IDRu24TH-UONhJEQkvwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:48.319 [XNIO-1 task-1] C8IDRu24TH-UONhJEQkvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.319 [XNIO-1 task-1] C8IDRu24TH-UONhJEQkvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.319 [XNIO-1 task-1] C8IDRu24TH-UONhJEQkvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5ffcb53 +08:11:48.328 [XNIO-1 task-1] tqhduDWwQ1OAjkhue1huow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.329 [XNIO-1 task-1] tqhduDWwQ1OAjkhue1huow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.329 [XNIO-1 task-1] tqhduDWwQ1OAjkhue1huow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.349 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/12fe4fd3, base path is set to: null +08:11:48.350 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.350 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.350 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:48.350 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/12fe4fd3, base path is set to: null +08:11:48.350 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG com.networknt.schema.TypeValidator debug - validate( "12fe4fd3", "12fe4fd3", userId) +08:11:48.351 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7e88d5b7-70cc-4bb9-8ea1-3040712c6579","newPassword":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPasswordConfirm":"6d6c39a7-ed18-443d-b201-94b6310afcf2"}, {"password":"7e88d5b7-70cc-4bb9-8ea1-3040712c6579","newPassword":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPasswordConfirm":"6d6c39a7-ed18-443d-b201-94b6310afcf2"}, requestBody) +08:11:48.351 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG com.networknt.schema.TypeValidator debug - validate( "6d6c39a7-ed18-443d-b201-94b6310afcf2", {"password":"7e88d5b7-70cc-4bb9-8ea1-3040712c6579","newPassword":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPasswordConfirm":"6d6c39a7-ed18-443d-b201-94b6310afcf2"}, requestBody.newPasswordConfirm) +08:11:48.351 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG com.networknt.schema.TypeValidator debug - validate( "7e88d5b7-70cc-4bb9-8ea1-3040712c6579", {"password":"7e88d5b7-70cc-4bb9-8ea1-3040712c6579","newPassword":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPasswordConfirm":"6d6c39a7-ed18-443d-b201-94b6310afcf2"}, requestBody.password) +08:11:48.351 [XNIO-1 task-1] rZ71Zz5lSWWUyQMVq84oKg DEBUG com.networknt.schema.TypeValidator debug - validate( "6d6c39a7-ed18-443d-b201-94b6310afcf2", {"password":"7e88d5b7-70cc-4bb9-8ea1-3040712c6579","newPassword":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPasswordConfirm":"6d6c39a7-ed18-443d-b201-94b6310afcf2"}, requestBody.newPassword) +08:11:48.370 [XNIO-1 task-1] bBcQcZaiT8qKE8aAHoA8Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/12fe4fd3, base path is set to: null +08:11:48.371 [XNIO-1 task-1] bBcQcZaiT8qKE8aAHoA8Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.371 [XNIO-1 task-1] bBcQcZaiT8qKE8aAHoA8Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.371 [XNIO-1 task-1] bBcQcZaiT8qKE8aAHoA8Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/12fe4fd3, base path is set to: null +08:11:48.371 [XNIO-1 task-1] bBcQcZaiT8qKE8aAHoA8Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "12fe4fd3", "12fe4fd3", userId) +08:11:48.382 [XNIO-1 task-1] jgX75DmYQBCqV-4iJwP7sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.382 [XNIO-1 task-1] jgX75DmYQBCqV-4iJwP7sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.382 [XNIO-1 task-1] jgX75DmYQBCqV-4iJwP7sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.382 [XNIO-1 task-1] jgX75DmYQBCqV-4iJwP7sQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.388 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/12fe4fd3 +08:11:48.388 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.388 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.389 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:48.389 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/12fe4fd3 +08:11:48.389 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPassword":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd","newPasswordConfirm":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd"}, {"password":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPassword":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd","newPasswordConfirm":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd"}, requestBody) +08:11:48.389 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPassword":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd","newPasswordConfirm":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd"}, {"password":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPassword":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd","newPasswordConfirm":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd"}, requestBody) +08:11:48.389 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd", {"password":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPassword":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd","newPasswordConfirm":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd"}, requestBody.newPasswordConfirm) +08:11:48.389 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "6d6c39a7-ed18-443d-b201-94b6310afcf2", {"password":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPassword":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd","newPasswordConfirm":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd"}, requestBody.password) +08:11:48.389 [XNIO-1 task-1] uvUDOKtwQt6VtN_ECQ0BFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd", {"password":"6d6c39a7-ed18-443d-b201-94b6310afcf2","newPassword":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd","newPasswordConfirm":"a93574fc-d70e-4c7a-b8a8-98c8e7ef81bd"}, requestBody.newPassword) +08:11:48.409 [XNIO-1 task-1] 8UYvPjs4R2Km7IK3fgr-pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/12fe4fd3 +08:11:48.409 [XNIO-1 task-1] 8UYvPjs4R2Km7IK3fgr-pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.409 [XNIO-1 task-1] 8UYvPjs4R2Km7IK3fgr-pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.409 [XNIO-1 task-1] 8UYvPjs4R2Km7IK3fgr-pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/12fe4fd3 +08:11:48.417 [XNIO-1 task-1] 4FI3Icy9QBKv64-60nsmTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.417 [XNIO-1 task-1] 4FI3Icy9QBKv64-60nsmTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.417 [XNIO-1 task-1] 4FI3Icy9QBKv64-60nsmTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.417 [XNIO-1 task-1] 4FI3Icy9QBKv64-60nsmTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.417 [XNIO-1 task-1] 4FI3Icy9QBKv64-60nsmTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:48.432 [XNIO-1 task-1] kvpuHG2IRreucgXgyp6vJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.432 [XNIO-1 task-1] kvpuHG2IRreucgXgyp6vJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +08:11:48.432 [XNIO-1 task-1] kvpuHG2IRreucgXgyp6vJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.435 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:477dece0 +08:11:48.436 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:477dece0 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +08:11:48.444 [XNIO-1 task-1] 6umDwAUkSI20K8hSPP-5OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +08:11:48.444 [XNIO-1 task-1] 6umDwAUkSI20K8hSPP-5OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.444 [XNIO-1 task-1] 6umDwAUkSI20K8hSPP-5OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.444 [XNIO-1 task-1] 6umDwAUkSI20K8hSPP-5OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.444 [XNIO-1 task-1] 6umDwAUkSI20K8hSPP-5OA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +08:11:48.449 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.449 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, requestBody) +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, requestBody) +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG com.networknt.schema.TypeValidator debug - validate( "05d96751-4042-41ee-8c37-fd76c3de", {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, requestBody.lastName) +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG com.networknt.schema.FormatValidator debug - validate( "68bd6a8a-2a2d-451f-925b-4d6a78d10c3b", {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, requestBody.password) +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, requestBody.userType) +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, requestBody) +08:11:48.450 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, {"userId":"ddf7f6fa","userType":"admin","firstName":"dff179d1-b81a-4f93-a3fc-24ac3ee1","lastName":"05d96751-4042-41ee-8c37-fd76c3de","email":"969fd57b-ffe5-4624-b8cb-034bea4dd810","password":"68bd6a8a-2a2d-451f-925b-4d6a78d10c3b"}, requestBody) +08:11:48.452 [XNIO-1 task-1] 8Y-OiMdySL6RdczHlzOlGw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 68bd6a8a-2a2d-451f-925b-4d6a78d10c3b or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:48.454 [XNIO-1 task-1] FFSfKWcbRZ6vz75IJ9CtDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.454 [XNIO-1 task-1] FFSfKWcbRZ6vz75IJ9CtDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.455 [XNIO-1 task-1] FFSfKWcbRZ6vz75IJ9CtDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.460 [XNIO-1 task-1] FkRGnZfHSv2ouqYXXrZb5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.460 [XNIO-1 task-1] FkRGnZfHSv2ouqYXXrZb5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.460 [XNIO-1 task-1] FkRGnZfHSv2ouqYXXrZb5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.461 [XNIO-1 task-1] FkRGnZfHSv2ouqYXXrZb5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.467 [XNIO-1 task-1] 59-2lR34RiikL7xIBMYj-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.467 [XNIO-1 task-1] 59-2lR34RiikL7xIBMYj-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.467 [XNIO-1 task-1] 59-2lR34RiikL7xIBMYj-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.476 [XNIO-1 task-1] MPFjzWTdR_ORb-zKo9qgNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.476 [XNIO-1 task-1] MPFjzWTdR_ORb-zKo9qgNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.476 [XNIO-1 task-1] MPFjzWTdR_ORb-zKo9qgNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.477 [XNIO-1 task-1] MPFjzWTdR_ORb-zKo9qgNw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.481 [XNIO-1 task-1] aowZrBQ8SCmL2KJYZQ4hcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.481 [XNIO-1 task-1] aowZrBQ8SCmL2KJYZQ4hcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.481 [XNIO-1 task-1] aowZrBQ8SCmL2KJYZQ4hcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.481 [XNIO-1 task-1] aowZrBQ8SCmL2KJYZQ4hcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.484 [XNIO-1 task-1] gXWTl-58QnucZQS0Qxe1dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.484 [XNIO-1 task-1] gXWTl-58QnucZQS0Qxe1dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.484 [XNIO-1 task-1] gXWTl-58QnucZQS0Qxe1dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.484 [XNIO-1 task-1] gXWTl-58QnucZQS0Qxe1dA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.487 [XNIO-1 task-1] qkE35BwCQMaZM9TG_zG91g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.487 [XNIO-1 task-1] qkE35BwCQMaZM9TG_zG91g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.488 [XNIO-1 task-1] qkE35BwCQMaZM9TG_zG91g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.488 [XNIO-1 task-1] qkE35BwCQMaZM9TG_zG91g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.492 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.492 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.492 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.492 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, requestBody) +08:11:48.492 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG com.networknt.schema.TypeValidator debug - validate( "c100a7a4-4c3e-4ef9-97b7-e9fdf84b", {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, requestBody.firstName) +08:11:48.492 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1f98a3b-c24c-4da4-b0f2-e7bc5538f466", {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, requestBody.password) +08:11:48.493 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, requestBody) +08:11:48.493 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, requestBody.userType) +08:11:48.493 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb9a333", {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, requestBody.userId) +08:11:48.493 [XNIO-1 task-1] FkrCP4roR4q60aeYpucCFg DEBUG com.networknt.schema.TypeValidator debug - validate( "50a7c593-64ff-416f-8acb-e2162e5287a7", {"userId":"6bb9a333","userType":"admin","firstName":"c100a7a4-4c3e-4ef9-97b7-e9fdf84b","lastName":"a33c019f-6eae-4d96-ac11-8a1e1ff8","email":"50a7c593-64ff-416f-8acb-e2162e5287a7","password":"a1f98a3b-c24c-4da4-b0f2-e7bc5538f466"}, requestBody.email) +08:11:48.496 [XNIO-1 task-1] t3vHsvhiQ8yh5mZKqvnzmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.496 [XNIO-1 task-1] t3vHsvhiQ8yh5mZKqvnzmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.496 [XNIO-1 task-1] t3vHsvhiQ8yh5mZKqvnzmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.496 [XNIO-1 task-1] t3vHsvhiQ8yh5mZKqvnzmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.502 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0fe5c798-702d-4db1-aa2c-0025768d8ec1 +08:11:48.504 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d4715d3d +08:11:48.504 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.504 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.504 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:48.505 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d4715d3d +08:11:48.505 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"aebb2602-6928-44b7-bd58-8da8ff611a0d","newPassword":"be59e880-2175-41e0-9358-7832c8bb412a","newPasswordConfirm":"be59e880-2175-41e0-9358-7832c8bb412a"}, {"password":"aebb2602-6928-44b7-bd58-8da8ff611a0d","newPassword":"be59e880-2175-41e0-9358-7832c8bb412a","newPasswordConfirm":"be59e880-2175-41e0-9358-7832c8bb412a"}, requestBody) +08:11:48.505 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"aebb2602-6928-44b7-bd58-8da8ff611a0d","newPassword":"be59e880-2175-41e0-9358-7832c8bb412a","newPasswordConfirm":"be59e880-2175-41e0-9358-7832c8bb412a"}, {"password":"aebb2602-6928-44b7-bd58-8da8ff611a0d","newPassword":"be59e880-2175-41e0-9358-7832c8bb412a","newPasswordConfirm":"be59e880-2175-41e0-9358-7832c8bb412a"}, requestBody) +08:11:48.505 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "be59e880-2175-41e0-9358-7832c8bb412a", {"password":"aebb2602-6928-44b7-bd58-8da8ff611a0d","newPassword":"be59e880-2175-41e0-9358-7832c8bb412a","newPasswordConfirm":"be59e880-2175-41e0-9358-7832c8bb412a"}, requestBody.newPasswordConfirm) +08:11:48.505 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "aebb2602-6928-44b7-bd58-8da8ff611a0d", {"password":"aebb2602-6928-44b7-bd58-8da8ff611a0d","newPassword":"be59e880-2175-41e0-9358-7832c8bb412a","newPasswordConfirm":"be59e880-2175-41e0-9358-7832c8bb412a"}, requestBody.password) +Jun 29, 2024 8:11:48 AM com.hazelcast.map.impl.operation.DeleteOperation +08:11:48.505 [XNIO-1 task-1] YVEYPm3iS4G5vGH84rVxFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "be59e880-2175-41e0-9358-7832c8bb412a", {"password":"aebb2602-6928-44b7-bd58-8da8ff611a0d","newPassword":"be59e880-2175-41e0-9358-7832c8bb412a","newPasswordConfirm":"be59e880-2175-41e0-9358-7832c8bb412a"}, requestBody.newPassword) +08:11:48.505 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:48.527 [XNIO-1 task-1] 4vT85JnTTVaPNTLnpSFnng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d4715d3d, base path is set to: null + +08:11:48.527 [XNIO-1 task-1] 4vT85JnTTVaPNTLnpSFnng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d4715d3d +08:11:48.527 [XNIO-1 task-1] 4vT85JnTTVaPNTLnpSFnng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.527 [XNIO-1 task-1] 4vT85JnTTVaPNTLnpSFnng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.527 [XNIO-1 task-1] 4vT85JnTTVaPNTLnpSFnng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d4715d3d +08:11:48.530 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0fe5c798-702d-4db1-aa2c-0025768d8ec1 +08:11:48.535 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:477dece0 +08:11:48.537 [XNIO-1 task-1] d-XVRGpnT6-H73J8X9rSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/86a085f4 +08:11:48.537 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:48.537 [XNIO-1 task-1] d-XVRGpnT6-H73J8X9rSgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.537 [XNIO-1 task-1] d-XVRGpnT6-H73J8X9rSgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/86a085f4, base path is set to: null +08:11:48.538 [XNIO-1 task-1] d-XVRGpnT6-H73J8X9rSgg DEBUG com.networknt.schema.TypeValidator debug - validate( "86a085f4", "86a085f4", userId) +08:11:48.549 [XNIO-1 task-1] 4IuZWDIFSMigeH_ScVBq7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.549 [XNIO-1 task-1] 4IuZWDIFSMigeH_ScVBq7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.550 [XNIO-1 task-1] 4IuZWDIFSMigeH_ScVBq7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.550 [XNIO-1 task-1] 4IuZWDIFSMigeH_ScVBq7g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.556 [XNIO-1 task-1] HSbzidoVRqmB4EOu1KAJ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.556 [XNIO-1 task-1] HSbzidoVRqmB4EOu1KAJ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.556 [XNIO-1 task-1] HSbzidoVRqmB4EOu1KAJ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.557 [XNIO-1 task-1] HSbzidoVRqmB4EOu1KAJ6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.560 [XNIO-1 task-1] qvXsH-CxSTCwXRRomhYtFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.560 [XNIO-1 task-1] qvXsH-CxSTCwXRRomhYtFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.560 [XNIO-1 task-1] qvXsH-CxSTCwXRRomhYtFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.560 [XNIO-1 task-1] qvXsH-CxSTCwXRRomhYtFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.568 [XNIO-1 task-1] hKvmSP-LTHWnsXsUZc7n_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.568 [XNIO-1 task-1] hKvmSP-LTHWnsXsUZc7n_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.568 [XNIO-1 task-1] hKvmSP-LTHWnsXsUZc7n_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.568 [XNIO-1 task-1] hKvmSP-LTHWnsXsUZc7n_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.573 [XNIO-1 task-1] tJ6058h0RMOGhZmFRRQlPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.573 [XNIO-1 task-1] tJ6058h0RMOGhZmFRRQlPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.574 [XNIO-1 task-1] tJ6058h0RMOGhZmFRRQlPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.574 [XNIO-1 task-1] tJ6058h0RMOGhZmFRRQlPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.579 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.579 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.580 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.581 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, requestBody) +08:11:48.581 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG com.networknt.schema.TypeValidator debug - validate( "201330a0-ca69-488d-b975-c9baca78", {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, requestBody.firstName) +08:11:48.581 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG com.networknt.schema.TypeValidator debug - validate( "8bcdf945-e255-44d6-9f31-fe9c2fe0b218", {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, requestBody.password) +08:11:48.581 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, requestBody) +08:11:48.581 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, requestBody.userType) +08:11:48.581 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG com.networknt.schema.TypeValidator debug - validate( "a7bf4d47", {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, requestBody.userId) +08:11:48.581 [XNIO-1 task-1] PJiGs0-NQoqVab6ZBakc9A DEBUG com.networknt.schema.TypeValidator debug - validate( "7cbcac9d-6a3d-4aa7-ab10-b148879756c3", {"userId":"a7bf4d47","userType":"admin","firstName":"201330a0-ca69-488d-b975-c9baca78","lastName":"da5f7c67-0180-4c16-9215-569ba058","email":"7cbcac9d-6a3d-4aa7-ab10-b148879756c3","password":"8bcdf945-e255-44d6-9f31-fe9c2fe0b218"}, requestBody.email) +08:11:48.586 [XNIO-1 task-1] tnLQP2ZOSCCWFYTdmTU2rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.586 [XNIO-1 task-1] tnLQP2ZOSCCWFYTdmTU2rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.586 [XNIO-1 task-1] tnLQP2ZOSCCWFYTdmTU2rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.586 [XNIO-1 task-1] tnLQP2ZOSCCWFYTdmTU2rw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.590 [XNIO-1 task-1] d-IxYVrnT3yOpAryDGBtgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.590 [XNIO-1 task-1] d-IxYVrnT3yOpAryDGBtgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.590 [XNIO-1 task-1] d-IxYVrnT3yOpAryDGBtgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.590 [XNIO-1 task-1] d-IxYVrnT3yOpAryDGBtgg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.597 [XNIO-1 task-1] b1wjY2AFRk-sDOAymGQrVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.597 [XNIO-1 task-1] b1wjY2AFRk-sDOAymGQrVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.597 [XNIO-1 task-1] b1wjY2AFRk-sDOAymGQrVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.597 [XNIO-1 task-1] b1wjY2AFRk-sDOAymGQrVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.602 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.602 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, requestBody) +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, requestBody) +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG com.networknt.schema.TypeValidator debug - validate( "d87ed8c3-b07d-496f-965d-9415d08f", {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, requestBody.lastName) +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG com.networknt.schema.FormatValidator debug - validate( "9977f47d-f2ed-4f3b-bb5d-9a74306913dc", {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, requestBody.password) +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, requestBody.userType) +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, requestBody) +08:11:48.603 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, {"userId":"3fdbd1b5","userType":"admin","firstName":"1ae9aa09-6852-45f0-9353-c007d59f","lastName":"d87ed8c3-b07d-496f-965d-9415d08f","email":"62737710-909a-4eda-81d8-a8994521f360","password":"9977f47d-f2ed-4f3b-bb5d-9a74306913dc"}, requestBody) +08:11:48.605 [XNIO-1 task-1] AmR7FnVdRCCmT5kq9ITseg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 9977f47d-f2ed-4f3b-bb5d-9a74306913dc or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:48.608 [XNIO-1 task-1] eJe9nspYQ-KG8OhXW0kbVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.608 [XNIO-1 task-1] eJe9nspYQ-KG8OhXW0kbVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.608 [XNIO-1 task-1] eJe9nspYQ-KG8OhXW0kbVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.608 [XNIO-1 task-1] eJe9nspYQ-KG8OhXW0kbVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.617 [XNIO-1 task-1] 4nWGAeGxRI2W18kcuFEJUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.617 [XNIO-1 task-1] 4nWGAeGxRI2W18kcuFEJUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.617 [XNIO-1 task-1] 4nWGAeGxRI2W18kcuFEJUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.623 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:678e9a92 +08:11:48.633 [XNIO-1 task-1] ySO0vB0xTViOIDJ70przlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/678e9a92, base path is set to: null +08:11:48.633 [XNIO-1 task-1] ySO0vB0xTViOIDJ70przlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.633 [XNIO-1 task-1] ySO0vB0xTViOIDJ70przlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.633 [XNIO-1 task-1] ySO0vB0xTViOIDJ70przlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/678e9a92, base path is set to: null +08:11:48.634 [XNIO-1 task-1] ySO0vB0xTViOIDJ70przlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "678e9a92", "678e9a92", userId) +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/678e9a92 +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/678e9a92 +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da","newPassword":"89a82a18-1658-4535-90ea-e7bf52997d89","newPasswordConfirm":"89a82a18-1658-4535-90ea-e7bf52997d89"}, {"password":"73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da","newPassword":"89a82a18-1658-4535-90ea-e7bf52997d89","newPasswordConfirm":"89a82a18-1658-4535-90ea-e7bf52997d89"}, requestBody) +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da","newPassword":"89a82a18-1658-4535-90ea-e7bf52997d89","newPasswordConfirm":"89a82a18-1658-4535-90ea-e7bf52997d89"}, {"password":"73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da","newPassword":"89a82a18-1658-4535-90ea-e7bf52997d89","newPasswordConfirm":"89a82a18-1658-4535-90ea-e7bf52997d89"}, requestBody) +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG com.networknt.schema.FormatValidator debug - validate( "89a82a18-1658-4535-90ea-e7bf52997d89", {"password":"73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da","newPassword":"89a82a18-1658-4535-90ea-e7bf52997d89","newPasswordConfirm":"89a82a18-1658-4535-90ea-e7bf52997d89"}, requestBody.newPasswordConfirm) +08:11:48.637 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG com.networknt.schema.FormatValidator debug - validate( "73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da", {"password":"73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da","newPassword":"89a82a18-1658-4535-90ea-e7bf52997d89","newPasswordConfirm":"89a82a18-1658-4535-90ea-e7bf52997d89"}, requestBody.password) +08:11:48.638 [XNIO-1 task-1] BH3NMAzsTAOfFUvGY3Jerg DEBUG com.networknt.schema.FormatValidator debug - validate( "89a82a18-1658-4535-90ea-e7bf52997d89", {"password":"73a7bdd8-cd8d-44c3-aa1e-4ea2d320a5da","newPassword":"89a82a18-1658-4535-90ea-e7bf52997d89","newPasswordConfirm":"89a82a18-1658-4535-90ea-e7bf52997d89"}, requestBody.newPassword) +08:11:48.647 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:678e9a92 +08:11:48.657 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/678e9a92 +08:11:48.657 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.657 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.657 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:48.657 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/678e9a92 +08:11:48.658 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"89a82a18-1658-4535-90ea-e7bf52997d89","newPassword":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPasswordConfirm":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e"}, {"password":"89a82a18-1658-4535-90ea-e7bf52997d89","newPassword":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPasswordConfirm":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e"}, requestBody) +08:11:48.658 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"89a82a18-1658-4535-90ea-e7bf52997d89","newPassword":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPasswordConfirm":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e"}, {"password":"89a82a18-1658-4535-90ea-e7bf52997d89","newPassword":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPasswordConfirm":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e"}, requestBody) +08:11:48.658 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG com.networknt.schema.FormatValidator debug - validate( "3a36366b-b778-4d27-92c4-dc5cc6f3df8e", {"password":"89a82a18-1658-4535-90ea-e7bf52997d89","newPassword":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPasswordConfirm":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e"}, requestBody.newPasswordConfirm) +08:11:48.658 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG com.networknt.schema.FormatValidator debug - validate( "89a82a18-1658-4535-90ea-e7bf52997d89", {"password":"89a82a18-1658-4535-90ea-e7bf52997d89","newPassword":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPasswordConfirm":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e"}, requestBody.password) +08:11:48.658 [XNIO-1 task-1] 46NZG0_kRgusrAc5aULQEg DEBUG com.networknt.schema.FormatValidator debug - validate( "3a36366b-b778-4d27-92c4-dc5cc6f3df8e", {"password":"89a82a18-1658-4535-90ea-e7bf52997d89","newPassword":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPasswordConfirm":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e"}, requestBody.newPassword) +08:11:48.670 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:678e9a92 +08:11:48.682 [XNIO-1 task-1] pwla1oe7T0G3VXLNXesM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.682 [XNIO-1 task-1] pwla1oe7T0G3VXLNXesM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.682 [XNIO-1 task-1] pwla1oe7T0G3VXLNXesM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.683 [XNIO-1 task-1] pwla1oe7T0G3VXLNXesM0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.687 [XNIO-1 task-1] 9FIGpik4Qz2fChH4hSY9KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/678e9a92 +08:11:48.687 [XNIO-1 task-1] 9FIGpik4Qz2fChH4hSY9KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.687 [XNIO-1 task-1] 9FIGpik4Qz2fChH4hSY9KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.687 [XNIO-1 task-1] 9FIGpik4Qz2fChH4hSY9KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/678e9a92 +08:11:48.691 [XNIO-1 task-1] NKIHG5UMTDSN6JMZhNDWug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/678e9a92, base path is set to: null +08:11:48.691 [XNIO-1 task-1] NKIHG5UMTDSN6JMZhNDWug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.692 [XNIO-1 task-1] NKIHG5UMTDSN6JMZhNDWug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.693 [XNIO-1 task-1] NKIHG5UMTDSN6JMZhNDWug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/678e9a92, base path is set to: null +08:11:48.693 [XNIO-1 task-1] NKIHG5UMTDSN6JMZhNDWug DEBUG com.networknt.schema.TypeValidator debug - validate( "678e9a92", "678e9a92", userId) +08:11:48.696 [XNIO-1 task-1] p20Ps_QZQBq7DMj5oifdnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/678e9a92 +08:11:48.696 [XNIO-1 task-1] p20Ps_QZQBq7DMj5oifdnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.696 [XNIO-1 task-1] p20Ps_QZQBq7DMj5oifdnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.696 [XNIO-1 task-1] p20Ps_QZQBq7DMj5oifdnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/678e9a92 +08:11:48.698 [XNIO-1 task-1] 051tdg4LS5i9fFGSIVkxjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/678e9a92, base path is set to: null +08:11:48.699 [XNIO-1 task-1] 051tdg4LS5i9fFGSIVkxjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.699 [XNIO-1 task-1] 051tdg4LS5i9fFGSIVkxjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.699 [XNIO-1 task-1] 051tdg4LS5i9fFGSIVkxjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/678e9a92, base path is set to: null +08:11:48.699 [XNIO-1 task-1] 051tdg4LS5i9fFGSIVkxjw DEBUG com.networknt.schema.TypeValidator debug - validate( "678e9a92", "678e9a92", userId) +08:11:48.700 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7c85407c-4e5f-4455-9762-57e0a3e94047 +08:11:48.701 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/678e9a92, base path is set to: null +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/678e9a92, base path is set to: null +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG com.networknt.schema.TypeValidator debug - validate( "678e9a92", "678e9a92", userId) +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPassword":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPasswordConfirm":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1"}, {"password":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPassword":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPasswordConfirm":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1"}, requestBody) +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG com.networknt.schema.TypeValidator debug - validate( "00fe4f6f-aeb6-460e-b605-a33c03e2cca1", {"password":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPassword":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPasswordConfirm":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1"}, requestBody.newPasswordConfirm) +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG com.networknt.schema.TypeValidator debug - validate( "3a36366b-b778-4d27-92c4-dc5cc6f3df8e", {"password":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPassword":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPasswordConfirm":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1"}, requestBody.password) +08:11:48.702 [XNIO-1 task-1] YR6twDVXSoewlFXiZRCi-g DEBUG com.networknt.schema.TypeValidator debug - validate( "00fe4f6f-aeb6-460e-b605-a33c03e2cca1", {"password":"3a36366b-b778-4d27-92c4-dc5cc6f3df8e","newPassword":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPasswordConfirm":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1"}, requestBody.newPassword) +08:11:48.712 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:678e9a92 +08:11:48.736 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:477dece0 +08:11:48.737 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/678e9a92, base path is set to: null +08:11:48.737 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.737 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.737 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:48.737 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/678e9a92, base path is set to: null +08:11:48.738 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "678e9a92", "678e9a92", userId) +08:11:48.738 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPassword":"9288978d-9e9c-4aee-96a2-cadab738cbc7","newPasswordConfirm":"9288978d-9e9c-4aee-96a2-cadab738cbc7"}, {"password":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPassword":"9288978d-9e9c-4aee-96a2-cadab738cbc7","newPasswordConfirm":"9288978d-9e9c-4aee-96a2-cadab738cbc7"}, requestBody) +08:11:48.738 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "9288978d-9e9c-4aee-96a2-cadab738cbc7", {"password":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPassword":"9288978d-9e9c-4aee-96a2-cadab738cbc7","newPasswordConfirm":"9288978d-9e9c-4aee-96a2-cadab738cbc7"}, requestBody.newPasswordConfirm) +08:11:48.738 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "00fe4f6f-aeb6-460e-b605-a33c03e2cca1", {"password":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPassword":"9288978d-9e9c-4aee-96a2-cadab738cbc7","newPasswordConfirm":"9288978d-9e9c-4aee-96a2-cadab738cbc7"}, requestBody.password) +08:11:48.738 [XNIO-1 task-1] 0pnQfs11SE2ikYmFYWb8Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "9288978d-9e9c-4aee-96a2-cadab738cbc7", {"password":"00fe4f6f-aeb6-460e-b605-a33c03e2cca1","newPassword":"9288978d-9e9c-4aee-96a2-cadab738cbc7","newPasswordConfirm":"9288978d-9e9c-4aee-96a2-cadab738cbc7"}, requestBody.newPassword) +08:11:48.747 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:678e9a92 +08:11:48.756 [XNIO-1 task-1] NOH3z_RdTsydNfDICpgROg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.756 [XNIO-1 task-1] NOH3z_RdTsydNfDICpgROg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.756 [XNIO-1 task-1] NOH3z_RdTsydNfDICpgROg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.756 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:678e9a92 +08:11:48.767 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.767 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.767 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.767 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, requestBody) +08:11:48.768 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, requestBody) +08:11:48.768 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "57a2a953-1dbd-485a-a929-3b3482ee", {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, requestBody.lastName) +08:11:48.768 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "e8f356df-e4d6-49bd-95e1-69a5e934e82b", {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, requestBody.password) +08:11:48.768 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, requestBody.userType) +08:11:48.768 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, requestBody) +08:11:48.768 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, {"userId":"864d0755","userType":"admin","firstName":"6212180c-7782-4e16-b660-ab94f7e0","lastName":"57a2a953-1dbd-485a-a929-3b3482ee","email":"bf18b46d-9b51-49ca-995e-94f83356c91a","password":"e8f356df-e4d6-49bd-95e1-69a5e934e82b"}, requestBody) +08:11:48.769 [XNIO-1 task-1] KNM4JfgWTJyAyN4dp9Jf8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password e8f356df-e4d6-49bd-95e1-69a5e934e82b or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:48.772 [XNIO-1 task-1] QHefCLAWTGio67ecqK6OhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.772 [XNIO-1 task-1] QHefCLAWTGio67ecqK6OhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.772 [XNIO-1 task-1] QHefCLAWTGio67ecqK6OhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.772 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:678e9a92 +08:11:48.781 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:48.783 [XNIO-1 task-1] RxXJMg_JRxOLrvfrURve8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/678e9a92 +08:11:48.783 [XNIO-1 task-1] RxXJMg_JRxOLrvfrURve8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.784 [XNIO-1 task-1] RxXJMg_JRxOLrvfrURve8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.784 [XNIO-1 task-1] RxXJMg_JRxOLrvfrURve8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/678e9a92 +08:11:48.784 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:678e9a92 +08:11:48.795 [XNIO-1 task-1] CQe7goeyQ9eEy2uHC48eLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.795 [XNIO-1 task-1] CQe7goeyQ9eEy2uHC48eLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.795 [XNIO-1 task-1] CQe7goeyQ9eEy2uHC48eLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.812 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.812 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.812 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.813 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, requestBody) +08:11:48.813 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "2fc6e890-f181-4ea7-abb4-b3fa82ef", {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, requestBody.firstName) +08:11:48.813 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5", {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, requestBody.password) +08:11:48.813 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, requestBody) +08:11:48.813 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, requestBody.userType) +08:11:48.813 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb0707a9", {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, requestBody.userId) +08:11:48.813 [XNIO-1 task-1] rYAt1QpUTlCE37ljuhDYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "595f815f-4d80-4381-810e-823cf68d36ab", {"userId":"bb0707a9","userType":"admin","firstName":"2fc6e890-f181-4ea7-abb4-b3fa82ef","lastName":"2b2f2001-fd38-42ed-b5a4-712ba490","email":"595f815f-4d80-4381-810e-823cf68d36ab","password":"e2f157b2-f5cf-4a30-b0be-2b8eb67cfda5"}, requestBody.email) +08:11:48.817 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b95d2d07, base path is set to: null +08:11:48.817 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.817 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.817 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:48.817 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b95d2d07, base path is set to: null +08:11:48.817 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG com.networknt.schema.TypeValidator debug - validate( "b95d2d07", "b95d2d07", userId) +08:11:48.817 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b3ce4fbd-546d-4406-b8a3-7ae586907176","newPassword":"02b5a663-ec45-4c88-878d-5c8b2f86aab2","newPasswordConfirm":"02b5a663-ec45-4c88-878d-5c8b2f86aab2"}, {"password":"b3ce4fbd-546d-4406-b8a3-7ae586907176","newPassword":"02b5a663-ec45-4c88-878d-5c8b2f86aab2","newPasswordConfirm":"02b5a663-ec45-4c88-878d-5c8b2f86aab2"}, requestBody) +08:11:48.818 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG com.networknt.schema.TypeValidator debug - validate( "02b5a663-ec45-4c88-878d-5c8b2f86aab2", {"password":"b3ce4fbd-546d-4406-b8a3-7ae586907176","newPassword":"02b5a663-ec45-4c88-878d-5c8b2f86aab2","newPasswordConfirm":"02b5a663-ec45-4c88-878d-5c8b2f86aab2"}, requestBody.newPasswordConfirm) +08:11:48.818 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG com.networknt.schema.TypeValidator debug - validate( "b3ce4fbd-546d-4406-b8a3-7ae586907176", {"password":"b3ce4fbd-546d-4406-b8a3-7ae586907176","newPassword":"02b5a663-ec45-4c88-878d-5c8b2f86aab2","newPasswordConfirm":"02b5a663-ec45-4c88-878d-5c8b2f86aab2"}, requestBody.password) +08:11:48.818 [XNIO-1 task-1] NJ_pxT3ET4GtT6C_k6PCvA DEBUG com.networknt.schema.TypeValidator debug - validate( "02b5a663-ec45-4c88-878d-5c8b2f86aab2", {"password":"b3ce4fbd-546d-4406-b8a3-7ae586907176","newPassword":"02b5a663-ec45-4c88-878d-5c8b2f86aab2","newPasswordConfirm":"02b5a663-ec45-4c88-878d-5c8b2f86aab2"}, requestBody.newPassword) +08:11:48.834 [XNIO-1 task-1] QaTUw5ZzRh-_Be0mYCx2_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b95d2d07, base path is set to: null +08:11:48.834 [XNIO-1 task-1] QaTUw5ZzRh-_Be0mYCx2_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.834 [XNIO-1 task-1] QaTUw5ZzRh-_Be0mYCx2_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.834 [XNIO-1 task-1] QaTUw5ZzRh-_Be0mYCx2_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b95d2d07, base path is set to: null +08:11:48.835 [XNIO-1 task-1] QaTUw5ZzRh-_Be0mYCx2_g DEBUG com.networknt.schema.TypeValidator debug - validate( "b95d2d07", "b95d2d07", userId) +08:11:48.846 [XNIO-1 task-1] k6c5nY5nSy2SRS1tlQ9gIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.846 [XNIO-1 task-1] k6c5nY5nSy2SRS1tlQ9gIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.846 [XNIO-1 task-1] k6c5nY5nSy2SRS1tlQ9gIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.853 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4b29d530 +08:11:48.860 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e70adf8c-4a75-4db6-8134-793fe5c80567 +08:11:48.862 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e70adf8c-4a75-4db6-8134-793fe5c80567 +08:11:48.867 [XNIO-1 task-1] cIKZa9oEQZuNmp5NGWl3GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ea82791 +08:11:48.867 [XNIO-1 task-1] cIKZa9oEQZuNmp5NGWl3GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.867 [XNIO-1 task-1] cIKZa9oEQZuNmp5NGWl3GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.867 [XNIO-1 task-1] cIKZa9oEQZuNmp5NGWl3GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ea82791 +08:11:48.877 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c4db7990 +08:11:48.878 [XNIO-1 task-1] O8LUW7aUSlKkRykcsPttVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.878 [XNIO-1 task-1] O8LUW7aUSlKkRykcsPttVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.878 [XNIO-1 task-1] O8LUW7aUSlKkRykcsPttVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.878 [XNIO-1 task-1] O8LUW7aUSlKkRykcsPttVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.878 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c4db7990 +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, requestBody) +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e62bc9-ebbe-4b0a-933d-a6338e07", {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, requestBody.firstName) +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d", {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, requestBody.password) +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, requestBody) +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, requestBody.userType) +08:11:48.883 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG com.networknt.schema.TypeValidator debug - validate( "b6fb65a1", {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, requestBody.userId) +08:11:48.884 [XNIO-1 task-1] sL_KwjinT2WmZEudNduWDw DEBUG com.networknt.schema.TypeValidator debug - validate( "8a3f0ae6-0ad1-4191-b28b-13548e0fb28b", {"userId":"b6fb65a1","userType":"admin","firstName":"f6e62bc9-ebbe-4b0a-933d-a6338e07","lastName":"36905d4c-9f3e-47ae-8be7-5073ab9a","email":"8a3f0ae6-0ad1-4191-b28b-13548e0fb28b","password":"c7933743-45c3-4f88-bbb4-cf2ae5a9ad4d"}, requestBody.email) +08:11:48.887 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0fe5c798-702d-4db1-aa2c-0025768d8ec1 +08:11:48.889 [XNIO-1 task-1] O2UVhA6YTP2mP4_Spl7Fcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.890 [XNIO-1 task-1] O2UVhA6YTP2mP4_Spl7Fcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.890 [XNIO-1 task-1] O2UVhA6YTP2mP4_Spl7Fcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.890 [XNIO-1 task-1] O2UVhA6YTP2mP4_Spl7Fcg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.890 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c4db7990 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:48.893 [XNIO-1 task-1] -wNshsgyTxuEG3B-lqovxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.893 [XNIO-1 task-1] -wNshsgyTxuEG3B-lqovxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.893 [XNIO-1 task-1] -wNshsgyTxuEG3B-lqovxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.910 [XNIO-1 task-1] iAj7oYrORQKSXoKktvYWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f41f7bf0, base path is set to: null +08:11:48.910 [XNIO-1 task-1] iAj7oYrORQKSXoKktvYWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.910 [XNIO-1 task-1] iAj7oYrORQKSXoKktvYWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.911 [XNIO-1 task-1] iAj7oYrORQKSXoKktvYWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f41f7bf0, base path is set to: null +08:11:48.911 [XNIO-1 task-1] iAj7oYrORQKSXoKktvYWWg DEBUG com.networknt.schema.TypeValidator debug - validate( "f41f7bf0", "f41f7bf0", userId) +08:11:48.914 [XNIO-1 task-1] djK_wmOUSsewcWbQvLGSdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f41f7bf0 +08:11:48.914 [XNIO-1 task-1] djK_wmOUSsewcWbQvLGSdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.914 [XNIO-1 task-1] djK_wmOUSsewcWbQvLGSdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:48.914 [XNIO-1 task-1] djK_wmOUSsewcWbQvLGSdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f41f7bf0 +08:11:48.918 [XNIO-1 task-1] w2-tUcOyQweG6dl9WBucnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f41f7bf0, base path is set to: null +08:11:48.918 [XNIO-1 task-1] w2-tUcOyQweG6dl9WBucnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.918 [XNIO-1 task-1] w2-tUcOyQweG6dl9WBucnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.918 [XNIO-1 task-1] w2-tUcOyQweG6dl9WBucnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f41f7bf0, base path is set to: null +08:11:48.918 [XNIO-1 task-1] w2-tUcOyQweG6dl9WBucnA DEBUG com.networknt.schema.TypeValidator debug - validate( "f41f7bf0", "f41f7bf0", userId) +08:11:48.926 [XNIO-1 task-1] dcZoKwf-TpOoBvd7Hwrelg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.926 [XNIO-1 task-1] dcZoKwf-TpOoBvd7Hwrelg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.926 [XNIO-1 task-1] dcZoKwf-TpOoBvd7Hwrelg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.926 [XNIO-1 task-1] dcZoKwf-TpOoBvd7Hwrelg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:48.931 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.931 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.931 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.931 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, requestBody) +08:11:48.932 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "50f14f3b-6ca1-4818-bb9a-ed57cf7c", {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, requestBody.firstName) +08:11:48.932 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "04dfbaca-aadd-4571-b2a6-fc91ad7eb417", {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, requestBody.password) +08:11:48.932 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, requestBody) +08:11:48.932 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, requestBody.userType) +08:11:48.932 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "763cb7ff", {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, requestBody.userId) +08:11:48.932 [XNIO-1 task-1] lbpAt-OzTZSIWlXw3rEO6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1f13e4cc-5d5d-4439-bdbc-2f81972fc511", {"userId":"763cb7ff","userType":"admin","firstName":"50f14f3b-6ca1-4818-bb9a-ed57cf7c","lastName":"b3e92441-c3b6-4421-8c5a-18fab3fa","email":"1f13e4cc-5d5d-4439-bdbc-2f81972fc511","password":"04dfbaca-aadd-4571-b2a6-fc91ad7eb417"}, requestBody.email) +08:11:48.935 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, requestBody) +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, requestBody) +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG com.networknt.schema.TypeValidator debug - validate( "9abe0288-d82e-4557-843c-47f77792", {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, requestBody.lastName) +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG com.networknt.schema.FormatValidator debug - validate( "9b1b4c0e-8889-4f8a-bf6b-77ff9899a671", {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, requestBody.password) +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, requestBody.userType) +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, requestBody) +08:11:48.936 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, {"userId":"308792d2","userType":"admin","firstName":"f5a9fb87-2919-4412-ab18-0bec589c","lastName":"9abe0288-d82e-4557-843c-47f77792","email":"0dc80421-adf7-44c5-82d6-61a98db5eb85","password":"9b1b4c0e-8889-4f8a-bf6b-77ff9899a671"}, requestBody) +08:11:48.937 [XNIO-1 task-1] Gtv1FIC8Rb6TIC4GVkLizg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 9b1b4c0e-8889-4f8a-bf6b-77ff9899a671 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:48.939 [XNIO-1 task-1] 4Od6_uWjRSSUXpG2XU-jRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.939 [XNIO-1 task-1] 4Od6_uWjRSSUXpG2XU-jRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.939 [XNIO-1 task-1] 4Od6_uWjRSSUXpG2XU-jRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:48.945 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ca69cc77 +08:11:48.954 [XNIO-1 task-1] rq-7dCZfQwOAkKIX5Gla8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.954 [XNIO-1 task-1] rq-7dCZfQwOAkKIX5Gla8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.954 [XNIO-1 task-1] rq-7dCZfQwOAkKIX5Gla8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.955 [XNIO-1 task-1] rq-7dCZfQwOAkKIX5Gla8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.958 [XNIO-1 task-1] E4Iuru10QgWFotCsCPC3eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.958 [XNIO-1 task-1] E4Iuru10QgWFotCsCPC3eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.958 [XNIO-1 task-1] E4Iuru10QgWFotCsCPC3eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.959 [XNIO-1 task-1] E4Iuru10QgWFotCsCPC3eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.977 [XNIO-1 task-1] seHppOG9S4uF9mqsEQ67JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.977 [XNIO-1 task-1] seHppOG9S4uF9mqsEQ67JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.977 [XNIO-1 task-1] seHppOG9S4uF9mqsEQ67JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.977 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ca69cc77 +08:11:48.983 [XNIO-1 task-1] tDkmGoWAQDmxxO69pDlcYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.983 [XNIO-1 task-1] tDkmGoWAQDmxxO69pDlcYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.983 [XNIO-1 task-1] tDkmGoWAQDmxxO69pDlcYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:48.983 [XNIO-1 task-1] tDkmGoWAQDmxxO69pDlcYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:48.986 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ca69cc77, base path is set to: null +08:11:48.987 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:48.987 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:48.987 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:48.987 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ca69cc77, base path is set to: null +08:11:48.987 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "ca69cc77", "ca69cc77", userId) +08:11:48.988 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"14277d17-85fe-41ae-9bcd-b3d566ec68fd","newPassword":"98778658-d31a-4470-a3b1-7327d35dfef4","newPasswordConfirm":"98778658-d31a-4470-a3b1-7327d35dfef4"}, {"password":"14277d17-85fe-41ae-9bcd-b3d566ec68fd","newPassword":"98778658-d31a-4470-a3b1-7327d35dfef4","newPasswordConfirm":"98778658-d31a-4470-a3b1-7327d35dfef4"}, requestBody) +08:11:48.988 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "98778658-d31a-4470-a3b1-7327d35dfef4", {"password":"14277d17-85fe-41ae-9bcd-b3d566ec68fd","newPassword":"98778658-d31a-4470-a3b1-7327d35dfef4","newPasswordConfirm":"98778658-d31a-4470-a3b1-7327d35dfef4"}, requestBody.newPasswordConfirm) +08:11:48.988 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "14277d17-85fe-41ae-9bcd-b3d566ec68fd", {"password":"14277d17-85fe-41ae-9bcd-b3d566ec68fd","newPassword":"98778658-d31a-4470-a3b1-7327d35dfef4","newPasswordConfirm":"98778658-d31a-4470-a3b1-7327d35dfef4"}, requestBody.password) +08:11:48.988 [XNIO-1 task-1] SIqVbnosRTaKDhJCHhZwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "98778658-d31a-4470-a3b1-7327d35dfef4", {"password":"14277d17-85fe-41ae-9bcd-b3d566ec68fd","newPassword":"98778658-d31a-4470-a3b1-7327d35dfef4","newPasswordConfirm":"98778658-d31a-4470-a3b1-7327d35dfef4"}, requestBody.newPassword) +08:11:48.997 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ca69cc77 +08:11:49.028 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ca69cc77, base path is set to: null +08:11:49.028 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.028 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:49.028 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:49.028 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ca69cc77, base path is set to: null +08:11:49.029 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca69cc77", "ca69cc77", userId) +08:11:49.029 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"98778658-d31a-4470-a3b1-7327d35dfef4","newPassword":"8dbd75d8-d642-443c-948c-08ee5e259886","newPasswordConfirm":"8dbd75d8-d642-443c-948c-08ee5e259886"}, {"password":"98778658-d31a-4470-a3b1-7327d35dfef4","newPassword":"8dbd75d8-d642-443c-948c-08ee5e259886","newPasswordConfirm":"8dbd75d8-d642-443c-948c-08ee5e259886"}, requestBody) +08:11:49.029 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG com.networknt.schema.TypeValidator debug - validate( "8dbd75d8-d642-443c-948c-08ee5e259886", {"password":"98778658-d31a-4470-a3b1-7327d35dfef4","newPassword":"8dbd75d8-d642-443c-948c-08ee5e259886","newPasswordConfirm":"8dbd75d8-d642-443c-948c-08ee5e259886"}, requestBody.newPasswordConfirm) +08:11:49.029 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG com.networknt.schema.TypeValidator debug - validate( "98778658-d31a-4470-a3b1-7327d35dfef4", {"password":"98778658-d31a-4470-a3b1-7327d35dfef4","newPassword":"8dbd75d8-d642-443c-948c-08ee5e259886","newPasswordConfirm":"8dbd75d8-d642-443c-948c-08ee5e259886"}, requestBody.password) +08:11:49.029 [XNIO-1 task-1] rGpvROADS0OB6WYG-4sFjw DEBUG com.networknt.schema.TypeValidator debug - validate( "8dbd75d8-d642-443c-948c-08ee5e259886", {"password":"98778658-d31a-4470-a3b1-7327d35dfef4","newPassword":"8dbd75d8-d642-443c-948c-08ee5e259886","newPasswordConfirm":"8dbd75d8-d642-443c-948c-08ee5e259886"}, requestBody.newPassword) +08:11:49.039 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ca69cc77 +08:11:49.061 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.061 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.061 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.061 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, requestBody) +08:11:49.062 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, requestBody) +08:11:49.062 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a375051-6cbd-4849-9497-5ae718f4", {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, requestBody.lastName) +08:11:49.062 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG com.networknt.schema.FormatValidator debug - validate( "802b751f-b2f1-4c8f-b954-9e9794268d7e", {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, requestBody.password) +08:11:49.062 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, requestBody.userType) +08:11:49.062 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, requestBody) +08:11:49.062 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, {"userId":"11bbee20","userType":"admin","firstName":"467af55e-e802-419e-af66-e5f30647","lastName":"5a375051-6cbd-4849-9497-5ae718f4","email":"135ed9f0-a097-4ed7-86e2-9201a9643693","password":"802b751f-b2f1-4c8f-b954-9e9794268d7e"}, requestBody) +08:11:49.065 [XNIO-1 task-1] sK9JKuQ-SUmUYOPDeZrhZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 802b751f-b2f1-4c8f-b954-9e9794268d7e or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:49.068 [XNIO-1 task-1] vnvXWCheRZ-8_sh7KbrDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ca69cc77 +08:11:49.068 [XNIO-1 task-1] vnvXWCheRZ-8_sh7KbrDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.068 [XNIO-1 task-1] vnvXWCheRZ-8_sh7KbrDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:49.068 [XNIO-1 task-1] vnvXWCheRZ-8_sh7KbrDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ca69cc77 +08:11:49.068 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ca69cc77 +08:11:49.076 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.076 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, requestBody) +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8853541c-9d31-4526-8c60-cb41d63d", {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, requestBody.firstName) +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e68e41c9-a797-4333-a30f-f6ac68110f20", {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, requestBody.password) +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, requestBody) +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, requestBody.userType) +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "46ccf9e4", {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, requestBody.userId) +08:11:49.077 [XNIO-1 task-1] IzhI0kh6QmCak2smvu8UpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb", {"userId":"46ccf9e4","userType":"admin","firstName":"8853541c-9d31-4526-8c60-cb41d63d","lastName":"f0e104f3-1758-44f1-9585-b67b64d8","email":"d0e05e34-4562-49c5-a2c3-0fbcf1b4dbdb","password":"e68e41c9-a797-4333-a30f-f6ac68110f20"}, requestBody.email) +08:11:49.081 [XNIO-1 task-1] fNwmeiEPR3Or7ikdwyOo0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.081 [XNIO-1 task-1] fNwmeiEPR3Or7ikdwyOo0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.081 [XNIO-1 task-1] fNwmeiEPR3Or7ikdwyOo0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.081 [XNIO-1 task-1] fNwmeiEPR3Or7ikdwyOo0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.082 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.085 [XNIO-1 task-1] o3smcwPtSGShrRyv6uLuaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.087 [XNIO-1 task-1] o3smcwPtSGShrRyv6uLuaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.087 [XNIO-1 task-1] o3smcwPtSGShrRyv6uLuaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.087 [XNIO-1 task-1] o3smcwPtSGShrRyv6uLuaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.092 [XNIO-1 task-1] Rn59IFjuRrae_gU_83N-MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.092 [XNIO-1 task-1] Rn59IFjuRrae_gU_83N-MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.092 [XNIO-1 task-1] Rn59IFjuRrae_gU_83N-MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.093 [XNIO-1 task-1] Rn59IFjuRrae_gU_83N-MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.096 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:77db8c0b-1378-4a85-95fa-a37d91473880 +08:11:49.119 [XNIO-1 task-1] ZTbB1zvjSSW8EUtaLA-gEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.119 [XNIO-1 task-1] ZTbB1zvjSSW8EUtaLA-gEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.119 [XNIO-1 task-1] ZTbB1zvjSSW8EUtaLA-gEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.119 [XNIO-1 task-1] ZTbB1zvjSSW8EUtaLA-gEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.126 [XNIO-1 task-1] P9S7bBXwTRKJEbTN5LAyhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.126 [XNIO-1 task-1] P9S7bBXwTRKJEbTN5LAyhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.126 [XNIO-1 task-1] P9S7bBXwTRKJEbTN5LAyhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.127 [XNIO-1 task-1] P9S7bBXwTRKJEbTN5LAyhw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.130 [XNIO-1 task-1] QcFvFsxzTIu7LcdA-gnLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.131 [XNIO-1 task-1] QcFvFsxzTIu7LcdA-gnLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.131 [XNIO-1 task-1] QcFvFsxzTIu7LcdA-gnLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.131 [XNIO-1 task-1] QcFvFsxzTIu7LcdA-gnLlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.134 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.134 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.134 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.135 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, requestBody) +08:11:49.135 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, requestBody) +08:11:49.135 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG com.networknt.schema.TypeValidator debug - validate( "cd24b563-46b1-4c55-8c6d-6dbb12d5", {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, requestBody.lastName) +08:11:49.135 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG com.networknt.schema.FormatValidator debug - validate( "930a422f-e81e-471c-9f61-38064b09c053", {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, requestBody.password) +08:11:49.135 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, requestBody.userType) +08:11:49.135 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, requestBody) +08:11:49.135 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, {"userId":"8afb0f7a","userType":"admin","firstName":"f44a8bd6-18ad-4df9-b506-2d8b91e6","lastName":"cd24b563-46b1-4c55-8c6d-6dbb12d5","email":"19e25630-113f-4f61-8881-6fce35089cb1","password":"930a422f-e81e-471c-9f61-38064b09c053"}, requestBody) +08:11:49.136 [XNIO-1 task-1] yl50Nr7CTBew3Z07dXF4dg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 930a422f-e81e-471c-9f61-38064b09c053 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:49.139 [XNIO-1 task-1] IMWQe9h_QWiUe2pOGG8gLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.139 [XNIO-1 task-1] IMWQe9h_QWiUe2pOGG8gLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.139 [XNIO-1 task-1] IMWQe9h_QWiUe2pOGG8gLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.152 [XNIO-1 task-1] F8_Uzo2bSrW1jiAJUlMrcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.152 [XNIO-1 task-1] F8_Uzo2bSrW1jiAJUlMrcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.153 [XNIO-1 task-1] F8_Uzo2bSrW1jiAJUlMrcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.166 [XNIO-1 task-1] Pnui_W51SsyPrJjBgYYEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/445098d4 +08:11:49.166 [XNIO-1 task-1] Pnui_W51SsyPrJjBgYYEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.166 [XNIO-1 task-1] Pnui_W51SsyPrJjBgYYEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:49.166 [XNIO-1 task-1] Pnui_W51SsyPrJjBgYYEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/445098d4 +08:11:49.169 [XNIO-1 task-1] TNxkLSwPSK6Xeiqoff9fzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da858682, base path is set to: null +08:11:49.169 [XNIO-1 task-1] TNxkLSwPSK6Xeiqoff9fzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.170 [XNIO-1 task-1] TNxkLSwPSK6Xeiqoff9fzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:49.170 [XNIO-1 task-1] TNxkLSwPSK6Xeiqoff9fzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da858682, base path is set to: null +08:11:49.170 [XNIO-1 task-1] TNxkLSwPSK6Xeiqoff9fzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da858682", "da858682", userId) +08:11:49.178 [XNIO-1 task-1] OojmbafiR4uvz8ZTjUfj3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/445098d4 +08:11:49.178 [XNIO-1 task-1] OojmbafiR4uvz8ZTjUfj3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.178 [XNIO-1 task-1] OojmbafiR4uvz8ZTjUfj3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:49.178 [XNIO-1 task-1] OojmbafiR4uvz8ZTjUfj3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/445098d4 +08:11:49.190 [XNIO-1 task-1] gaQ7mzUgTj2_I5xRcNYZMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.190 [XNIO-1 task-1] gaQ7mzUgTj2_I5xRcNYZMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.190 [XNIO-1 task-1] gaQ7mzUgTj2_I5xRcNYZMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.190 [XNIO-1 task-1] gaQ7mzUgTj2_I5xRcNYZMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.194 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.194 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.194 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.194 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, requestBody) +08:11:49.195 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, requestBody) +08:11:49.195 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e67b7e4-ae38-404c-97e8-8b60a4e4", {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, requestBody.lastName) +08:11:49.195 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG com.networknt.schema.FormatValidator debug - validate( "838b9074-28c8-4d3f-994a-6e30586c1a38", {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, requestBody.password) +08:11:49.195 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, requestBody.userType) +08:11:49.195 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, requestBody) +08:11:49.195 [XNIO-1 task-1] SrPnCUsxRLGtWeyVYSPGGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, {"userId":"c19ae896","userType":"admin","firstName":"6265ac29-8425-4c31-b87a-5a055f11","lastName":"0e67b7e4-ae38-404c-97e8-8b60a4e4","email":"3adb36a6-a377-44ba-971d-311148e263e8","password":"838b9074-28c8-4d3f-994a-6e30586c1a38"}, requestBody) +08:11:49.197 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c566512c-df47-406d-b6a1-f5a3502f5e13 +08:11:49.198 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c566512c-df47-406d-b6a1-f5a3502f5e13 +08:11:49.201 [XNIO-1 task-1] Eah10A_4QjyGty5p9amUZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.201 [XNIO-1 task-1] Eah10A_4QjyGty5p9amUZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.201 [XNIO-1 task-1] Eah10A_4QjyGty5p9amUZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.221 [XNIO-1 task-1] eCQIxH7YTq-oBAJgEiBuzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6e1ba441, base path is set to: null +08:11:49.221 [XNIO-1 task-1] eCQIxH7YTq-oBAJgEiBuzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.221 [XNIO-1 task-1] eCQIxH7YTq-oBAJgEiBuzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:49.221 [XNIO-1 task-1] eCQIxH7YTq-oBAJgEiBuzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6e1ba441, base path is set to: null +08:11:49.222 [XNIO-1 task-1] eCQIxH7YTq-oBAJgEiBuzA DEBUG com.networknt.schema.TypeValidator debug - validate( "6e1ba441", "6e1ba441", userId) +08:11:49.224 [XNIO-1 task-1] suJbtFXqSn299eI40MOc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.224 [XNIO-1 task-1] suJbtFXqSn299eI40MOc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.224 [XNIO-1 task-1] suJbtFXqSn299eI40MOc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.225 [XNIO-1 task-1] suJbtFXqSn299eI40MOc_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:49.228 [XNIO-1 task-1] al5JFQy9SlGNxFz3DRzr0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e1ba441 +08:11:49.228 [XNIO-1 task-1] al5JFQy9SlGNxFz3DRzr0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.228 [XNIO-1 task-1] al5JFQy9SlGNxFz3DRzr0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:49.228 [XNIO-1 task-1] al5JFQy9SlGNxFz3DRzr0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e1ba441 +08:11:49.231 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:48415ed3-ff6e-48d2-816d-4a8dced65dfb +08:11:49.236 [XNIO-1 task-1] 6tfv4MbWTDyRuIqY-93sVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.236 [XNIO-1 task-1] 6tfv4MbWTDyRuIqY-93sVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.236 [XNIO-1 task-1] 6tfv4MbWTDyRuIqY-93sVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.236 [XNIO-1 task-1] 6tfv4MbWTDyRuIqY-93sVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.240 [XNIO-1 task-1] MHclpF8LQy2YWDWY7slMlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.240 [XNIO-1 task-1] MHclpF8LQy2YWDWY7slMlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.240 [XNIO-1 task-1] MHclpF8LQy2YWDWY7slMlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.240 [XNIO-1 task-1] MHclpF8LQy2YWDWY7slMlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.244 [XNIO-1 task-1] UlvGqS7tSgaqDEGE22fmEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.244 [XNIO-1 task-1] UlvGqS7tSgaqDEGE22fmEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.244 [XNIO-1 task-1] UlvGqS7tSgaqDEGE22fmEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.244 [XNIO-1 task-1] UlvGqS7tSgaqDEGE22fmEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.247 [XNIO-1 task-1] Kp_wWenXRKalF-dayyHacA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.247 [XNIO-1 task-1] Kp_wWenXRKalF-dayyHacA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.247 [XNIO-1 task-1] Kp_wWenXRKalF-dayyHacA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.247 [XNIO-1 task-1] Kp_wWenXRKalF-dayyHacA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.253 [XNIO-1 task-1] m00no7sKS6mQmzQnDoi_kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.253 [XNIO-1 task-1] m00no7sKS6mQmzQnDoi_kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.253 [XNIO-1 task-1] m00no7sKS6mQmzQnDoi_kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.253 [XNIO-1 task-1] m00no7sKS6mQmzQnDoi_kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.257 [XNIO-1 task-1] Yo22KIoYTHeefOwG0mYMVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.257 [XNIO-1 task-1] Yo22KIoYTHeefOwG0mYMVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.257 [XNIO-1 task-1] Yo22KIoYTHeefOwG0mYMVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.270 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3a49a89d, base path is set to: null +08:11:49.270 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.270 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:49.270 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:49.270 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3a49a89d, base path is set to: null +08:11:49.271 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG com.networknt.schema.TypeValidator debug - validate( "3a49a89d", "3a49a89d", userId) +08:11:49.271 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"04900ead-906d-4c66-936c-a42f89263ebe","newPassword":"dbf2240d-8288-4264-bbf8-311496bad448","newPasswordConfirm":"dbf2240d-8288-4264-bbf8-311496bad448"}, {"password":"04900ead-906d-4c66-936c-a42f89263ebe","newPassword":"dbf2240d-8288-4264-bbf8-311496bad448","newPasswordConfirm":"dbf2240d-8288-4264-bbf8-311496bad448"}, requestBody) +08:11:49.271 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG com.networknt.schema.TypeValidator debug - validate( "dbf2240d-8288-4264-bbf8-311496bad448", {"password":"04900ead-906d-4c66-936c-a42f89263ebe","newPassword":"dbf2240d-8288-4264-bbf8-311496bad448","newPasswordConfirm":"dbf2240d-8288-4264-bbf8-311496bad448"}, requestBody.newPasswordConfirm) +08:11:49.271 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG com.networknt.schema.TypeValidator debug - validate( "04900ead-906d-4c66-936c-a42f89263ebe", {"password":"04900ead-906d-4c66-936c-a42f89263ebe","newPassword":"dbf2240d-8288-4264-bbf8-311496bad448","newPasswordConfirm":"dbf2240d-8288-4264-bbf8-311496bad448"}, requestBody.password) +08:11:49.271 [XNIO-1 task-1] GPCy5BAnQ1W28ZarJ7uh2w DEBUG com.networknt.schema.TypeValidator debug - validate( "dbf2240d-8288-4264-bbf8-311496bad448", {"password":"04900ead-906d-4c66-936c-a42f89263ebe","newPassword":"dbf2240d-8288-4264-bbf8-311496bad448","newPasswordConfirm":"dbf2240d-8288-4264-bbf8-311496bad448"}, requestBody.newPassword) +08:11:49.288 [XNIO-1 task-1] 7-8RodkHTI67hpoiEoKd1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.289 [XNIO-1 task-1] 7-8RodkHTI67hpoiEoKd1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.289 [XNIO-1 task-1] 7-8RodkHTI67hpoiEoKd1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.301 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.301 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.301 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.302 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, requestBody) +08:11:49.302 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, requestBody) +08:11:49.302 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "141b395a-a03a-4e8d-a7a3-492daeb7", {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, requestBody.lastName) +08:11:49.302 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG com.networknt.schema.FormatValidator debug - validate( "412aa156-6eab-4f08-bbe9-9f5571b9a08f", {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, requestBody.password) +08:11:49.302 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, requestBody.userType) +08:11:49.302 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, requestBody) +08:11:49.302 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, {"userId":"61b1ab60","userType":"admin","firstName":"6e8daf42-9a02-4809-a2dc-f5da75ce","lastName":"141b395a-a03a-4e8d-a7a3-492daeb7","email":"e8bfd7a5-26f1-4a4b-b9a8-4029ff78c9c6","password":"412aa156-6eab-4f08-bbe9-9f5571b9a08f"}, requestBody) +08:11:49.304 [XNIO-1 task-1] PbRMlEo7ReKaqxl4DdG1Qw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 412aa156-6eab-4f08-bbe9-9f5571b9a08f or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:49.306 [XNIO-1 task-1] IoGgvVfUROmgc_Y2KeDXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a376c95d +08:11:49.306 [XNIO-1 task-1] IoGgvVfUROmgc_Y2KeDXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.306 [XNIO-1 task-1] IoGgvVfUROmgc_Y2KeDXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:49.306 [XNIO-1 task-1] IoGgvVfUROmgc_Y2KeDXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a376c95d +08:11:49.309 [XNIO-1 task-1] Wq1tlJ9VSC-Kr0Z0BA-Cxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a376c95d, base path is set to: null +08:11:49.309 [XNIO-1 task-1] Wq1tlJ9VSC-Kr0Z0BA-Cxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.309 [XNIO-1 task-1] Wq1tlJ9VSC-Kr0Z0BA-Cxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:49.309 [XNIO-1 task-1] Wq1tlJ9VSC-Kr0Z0BA-Cxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a376c95d, base path is set to: null +08:11:49.309 [XNIO-1 task-1] Wq1tlJ9VSC-Kr0Z0BA-Cxg DEBUG com.networknt.schema.TypeValidator debug - validate( "a376c95d", "a376c95d", userId) +08:11:49.314 [XNIO-1 task-1] fcLo3KrXQsaoo2QmjhzTqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a49a89d +08:11:49.314 [XNIO-1 task-1] fcLo3KrXQsaoo2QmjhzTqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.315 [XNIO-1 task-1] fcLo3KrXQsaoo2QmjhzTqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:49.315 [XNIO-1 task-1] fcLo3KrXQsaoo2QmjhzTqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a49a89d +08:11:49.317 [XNIO-1 task-1] DsAZZOhGSUKJVPFzgDd1Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.317 [XNIO-1 task-1] DsAZZOhGSUKJVPFzgDd1Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.317 [XNIO-1 task-1] DsAZZOhGSUKJVPFzgDd1Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.324 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9bab2b9 +08:11:49.325 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9bab2b9 +08:11:49.331 [XNIO-1 task-1] JhKziiROQluoXfQhMq_Cug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a49a89d +08:11:49.331 [XNIO-1 task-1] JhKziiROQluoXfQhMq_Cug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:49.331 [XNIO-1 task-1] JhKziiROQluoXfQhMq_Cug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:49.331 [XNIO-1 task-1] JhKziiROQluoXfQhMq_Cug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a49a89d +08:11:49.333 [XNIO-1 task-1] dA5aUpAtQ2e8zw69oFWs3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.333 [XNIO-1 task-1] dA5aUpAtQ2e8zw69oFWs3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.334 [XNIO-1 task-1] dA5aUpAtQ2e8zw69oFWs3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.341 [XNIO-1 task-1] wviBtTobRaudGLKlVLYYgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.341 [XNIO-1 task-1] wviBtTobRaudGLKlVLYYgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.341 [XNIO-1 task-1] wviBtTobRaudGLKlVLYYgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.341 [XNIO-1 task-1] wviBtTobRaudGLKlVLYYgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:49.345 [XNIO-1 task-1] x2dXhjVqTteN3n-H2p4wIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:49.346 [XNIO-1 task-1] x2dXhjVqTteN3n-H2p4wIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:49.346 [XNIO-1 task-1] x2dXhjVqTteN3n-H2p4wIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.262 [XNIO-1 task-1] 8p4JluWlSKq_YJni1spHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.262 [XNIO-1 task-1] 8p4JluWlSKq_YJni1spHrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.262 [XNIO-1 task-1] 8p4JluWlSKq_YJni1spHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.262 [XNIO-1 task-1] 8p4JluWlSKq_YJni1spHrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.277 [XNIO-1 task-1] uucWOvNyQ-6erdJxnX1mAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9bab2b9, base path is set to: null +08:11:51.277 [XNIO-1 task-1] uucWOvNyQ-6erdJxnX1mAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.277 [XNIO-1 task-1] uucWOvNyQ-6erdJxnX1mAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.277 [XNIO-1 task-1] uucWOvNyQ-6erdJxnX1mAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9bab2b9, base path is set to: null +08:11:51.279 [XNIO-1 task-1] uucWOvNyQ-6erdJxnX1mAw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9bab2b9", "e9bab2b9", userId) +08:11:51.288 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a49a89d +08:11:51.288 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.288 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.288 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:51.289 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a49a89d +08:11:51.289 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"dbf2240d-8288-4264-bbf8-311496bad448","newPassword":"63aff615-d93b-4da7-a357-a6b42b29ca7a","newPasswordConfirm":"63aff615-d93b-4da7-a357-a6b42b29ca7a"}, {"password":"dbf2240d-8288-4264-bbf8-311496bad448","newPassword":"63aff615-d93b-4da7-a357-a6b42b29ca7a","newPasswordConfirm":"63aff615-d93b-4da7-a357-a6b42b29ca7a"}, requestBody) +08:11:51.289 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"dbf2240d-8288-4264-bbf8-311496bad448","newPassword":"63aff615-d93b-4da7-a357-a6b42b29ca7a","newPasswordConfirm":"63aff615-d93b-4da7-a357-a6b42b29ca7a"}, {"password":"dbf2240d-8288-4264-bbf8-311496bad448","newPassword":"63aff615-d93b-4da7-a357-a6b42b29ca7a","newPasswordConfirm":"63aff615-d93b-4da7-a357-a6b42b29ca7a"}, requestBody) +08:11:51.289 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG com.networknt.schema.FormatValidator debug - validate( "63aff615-d93b-4da7-a357-a6b42b29ca7a", {"password":"dbf2240d-8288-4264-bbf8-311496bad448","newPassword":"63aff615-d93b-4da7-a357-a6b42b29ca7a","newPasswordConfirm":"63aff615-d93b-4da7-a357-a6b42b29ca7a"}, requestBody.newPasswordConfirm) +08:11:51.289 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG com.networknt.schema.FormatValidator debug - validate( "dbf2240d-8288-4264-bbf8-311496bad448", {"password":"dbf2240d-8288-4264-bbf8-311496bad448","newPassword":"63aff615-d93b-4da7-a357-a6b42b29ca7a","newPasswordConfirm":"63aff615-d93b-4da7-a357-a6b42b29ca7a"}, requestBody.password) +08:11:51.289 [XNIO-1 task-1] Ud2DHCc7QNSLHmD7znX5Gg DEBUG com.networknt.schema.FormatValidator debug - validate( "63aff615-d93b-4da7-a357-a6b42b29ca7a", {"password":"dbf2240d-8288-4264-bbf8-311496bad448","newPassword":"63aff615-d93b-4da7-a357-a6b42b29ca7a","newPasswordConfirm":"63aff615-d93b-4da7-a357-a6b42b29ca7a"}, requestBody.newPassword) +08:11:51.291 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4b29d530 +08:11:51.306 [XNIO-1 task-1] Cubtkg6ITpK6XaxUJ8PaCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f360a121 +08:11:51.307 [XNIO-1 task-1] Cubtkg6ITpK6XaxUJ8PaCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.307 [XNIO-1 task-1] Cubtkg6ITpK6XaxUJ8PaCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.307 [XNIO-1 task-1] Cubtkg6ITpK6XaxUJ8PaCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f360a121 +08:11:51.309 [XNIO-1 task-1] INZKZ002T3inKlzFUexIFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.309 [XNIO-1 task-1] INZKZ002T3inKlzFUexIFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.309 [XNIO-1 task-1] INZKZ002T3inKlzFUexIFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.309 [XNIO-1 task-1] INZKZ002T3inKlzFUexIFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.313 [XNIO-1 task-1] rv9kaZGpQDiKEkz3j6k9yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a49a89d, base path is set to: null +08:11:51.313 [XNIO-1 task-1] rv9kaZGpQDiKEkz3j6k9yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.313 [XNIO-1 task-1] rv9kaZGpQDiKEkz3j6k9yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.314 [XNIO-1 task-1] rv9kaZGpQDiKEkz3j6k9yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a49a89d, base path is set to: null +08:11:51.314 [XNIO-1 task-1] rv9kaZGpQDiKEkz3j6k9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "3a49a89d", "3a49a89d", userId) +08:11:51.324 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f360a121 +08:11:51.324 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.324 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.324 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:51.324 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f360a121 +08:11:51.324 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a016da02-9242-4fcb-811c-66c662569175","newPassword":"3a73e083-d148-49aa-8c87-45578c8a9647","newPasswordConfirm":"3a73e083-d148-49aa-8c87-45578c8a9647"}, {"password":"a016da02-9242-4fcb-811c-66c662569175","newPassword":"3a73e083-d148-49aa-8c87-45578c8a9647","newPasswordConfirm":"3a73e083-d148-49aa-8c87-45578c8a9647"}, requestBody) +08:11:51.324 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a016da02-9242-4fcb-811c-66c662569175","newPassword":"3a73e083-d148-49aa-8c87-45578c8a9647","newPasswordConfirm":"3a73e083-d148-49aa-8c87-45578c8a9647"}, {"password":"a016da02-9242-4fcb-811c-66c662569175","newPassword":"3a73e083-d148-49aa-8c87-45578c8a9647","newPasswordConfirm":"3a73e083-d148-49aa-8c87-45578c8a9647"}, requestBody) +08:11:51.325 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG com.networknt.schema.FormatValidator debug - validate( "3a73e083-d148-49aa-8c87-45578c8a9647", {"password":"a016da02-9242-4fcb-811c-66c662569175","newPassword":"3a73e083-d148-49aa-8c87-45578c8a9647","newPasswordConfirm":"3a73e083-d148-49aa-8c87-45578c8a9647"}, requestBody.newPasswordConfirm) +08:11:51.325 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG com.networknt.schema.FormatValidator debug - validate( "a016da02-9242-4fcb-811c-66c662569175", {"password":"a016da02-9242-4fcb-811c-66c662569175","newPassword":"3a73e083-d148-49aa-8c87-45578c8a9647","newPasswordConfirm":"3a73e083-d148-49aa-8c87-45578c8a9647"}, requestBody.password) +08:11:51.325 [XNIO-1 task-1] bJP57ZHfSeajQfOECW3xag DEBUG com.networknt.schema.FormatValidator debug - validate( "3a73e083-d148-49aa-8c87-45578c8a9647", {"password":"a016da02-9242-4fcb-811c-66c662569175","newPassword":"3a73e083-d148-49aa-8c87-45578c8a9647","newPasswordConfirm":"3a73e083-d148-49aa-8c87-45578c8a9647"}, requestBody.newPassword) +Jun 29, 2024 8:11:51 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:51.343 [XNIO-1 task-1] 7Hsz7wGfQ_qj3MbueIEg7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.343 [XNIO-1 task-1] 7Hsz7wGfQ_qj3MbueIEg7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +08:11:51.343 [XNIO-1 task-1] 7Hsz7wGfQ_qj3MbueIEg7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +08:11:51.344 [XNIO-1 task-1] 7Hsz7wGfQ_qj3MbueIEg7w DEBUG com.networknt.schema.TypeValidator debug - validate( "f360a121", "f360a121", userId) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +08:11:51.355 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9bab2b9 +08:11:51.355 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.356 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.356 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:51.356 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9bab2b9 +08:11:51.356 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"aa3498a9-75f2-495c-9e95-e8781ed92c94","newPassword":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPasswordConfirm":"f667c276-64d0-48ee-9149-9007b82cc6c6"}, {"password":"aa3498a9-75f2-495c-9e95-e8781ed92c94","newPassword":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPasswordConfirm":"f667c276-64d0-48ee-9149-9007b82cc6c6"}, requestBody) +08:11:51.357 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"aa3498a9-75f2-495c-9e95-e8781ed92c94","newPassword":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPasswordConfirm":"f667c276-64d0-48ee-9149-9007b82cc6c6"}, {"password":"aa3498a9-75f2-495c-9e95-e8781ed92c94","newPassword":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPasswordConfirm":"f667c276-64d0-48ee-9149-9007b82cc6c6"}, requestBody) +08:11:51.357 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG com.networknt.schema.FormatValidator debug - validate( "f667c276-64d0-48ee-9149-9007b82cc6c6", {"password":"aa3498a9-75f2-495c-9e95-e8781ed92c94","newPassword":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPasswordConfirm":"f667c276-64d0-48ee-9149-9007b82cc6c6"}, requestBody.newPasswordConfirm) +08:11:51.357 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG com.networknt.schema.FormatValidator debug - validate( "aa3498a9-75f2-495c-9e95-e8781ed92c94", {"password":"aa3498a9-75f2-495c-9e95-e8781ed92c94","newPassword":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPasswordConfirm":"f667c276-64d0-48ee-9149-9007b82cc6c6"}, requestBody.password) +08:11:51.357 [XNIO-1 task-1] qDw7TcdFSx2B16T5yKXCzw DEBUG com.networknt.schema.FormatValidator debug - validate( "f667c276-64d0-48ee-9149-9007b82cc6c6", {"password":"aa3498a9-75f2-495c-9e95-e8781ed92c94","newPassword":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPasswordConfirm":"f667c276-64d0-48ee-9149-9007b82cc6c6"}, requestBody.newPassword) +08:11:51.361 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.369 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9bab2b9 +08:11:51.369 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6357fcb4-6b1b-4e74-a3a2-741514f8474e +08:11:51.376 [XNIO-1 task-1] La2KtczhSLuy3lGK_fNegg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.376 [XNIO-1 task-1] La2KtczhSLuy3lGK_fNegg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.376 [XNIO-1 task-1] La2KtczhSLuy3lGK_fNegg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.377 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9bab2b9 +08:11:51.386 [XNIO-1 task-1] 2ChL6T0OT6OaXtq5iEFfIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.386 [XNIO-1 task-1] 2ChL6T0OT6OaXtq5iEFfIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.387 [XNIO-1 task-1] 2ChL6T0OT6OaXtq5iEFfIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.409 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.410 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.410 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.410 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, requestBody) +08:11:51.410 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG com.networknt.schema.TypeValidator debug - validate( "0e6983da-3046-418f-a185-5fa781cc", {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, requestBody.firstName) +08:11:51.410 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG com.networknt.schema.TypeValidator debug - validate( "067b0444-e8c9-424e-af79-f66300ca2e1c", {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, requestBody.password) +08:11:51.410 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, requestBody) +08:11:51.411 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, requestBody.userType) +08:11:51.411 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG com.networknt.schema.TypeValidator debug - validate( "682f7f15", {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, requestBody.userId) +08:11:51.411 [XNIO-1 task-1] zQ31UW7pT3aEym7dIYJt4A DEBUG com.networknt.schema.TypeValidator debug - validate( "bfbd11a3-ba70-465c-a4cc-0db9201dec46", {"userId":"682f7f15","userType":"admin","firstName":"0e6983da-3046-418f-a185-5fa781cc","lastName":"ba13ad9c-b716-42d6-a840-34afc49e","email":"bfbd11a3-ba70-465c-a4cc-0db9201dec46","password":"067b0444-e8c9-424e-af79-f66300ca2e1c"}, requestBody.email) +08:11:51.414 [XNIO-1 task-1] ieNZgFmmSrC3Je3fozzKHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9bab2b9, base path is set to: null +08:11:51.415 [XNIO-1 task-1] ieNZgFmmSrC3Je3fozzKHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.415 [XNIO-1 task-1] ieNZgFmmSrC3Je3fozzKHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.415 [XNIO-1 task-1] ieNZgFmmSrC3Je3fozzKHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9bab2b9, base path is set to: null +08:11:51.415 [XNIO-1 task-1] ieNZgFmmSrC3Je3fozzKHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9bab2b9", "e9bab2b9", userId) +08:11:51.418 [XNIO-1 task-1] s8cF-ny6TT2UAaTWA5-KMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.418 [XNIO-1 task-1] s8cF-ny6TT2UAaTWA5-KMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.418 [XNIO-1 task-1] s8cF-ny6TT2UAaTWA5-KMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.429 [XNIO-1 task-1] eu74rgxoS4mqRDoa30Ccqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e9bab2b9 +08:11:51.429 [XNIO-1 task-1] eu74rgxoS4mqRDoa30Ccqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.429 [XNIO-1 task-1] eu74rgxoS4mqRDoa30Ccqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.429 [XNIO-1 task-1] eu74rgxoS4mqRDoa30Ccqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e9bab2b9 +08:11:51.433 [XNIO-1 task-1] vjdKyL7yR46FCzw2iXen8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.434 [XNIO-1 task-1] vjdKyL7yR46FCzw2iXen8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.434 [XNIO-1 task-1] vjdKyL7yR46FCzw2iXen8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.434 [XNIO-1 task-1] vjdKyL7yR46FCzw2iXen8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.437 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7c85407c-4e5f-4455-9762-57e0a3e94047 +08:11:51.443 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9bab2b9 +08:11:51.443 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.443 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.444 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:51.444 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9bab2b9 +08:11:51.444 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPassword":"71471d23-0537-45c9-a654-903f8e56c541","newPasswordConfirm":"71471d23-0537-45c9-a654-903f8e56c541"}, {"password":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPassword":"71471d23-0537-45c9-a654-903f8e56c541","newPasswordConfirm":"71471d23-0537-45c9-a654-903f8e56c541"}, requestBody) +08:11:51.444 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPassword":"71471d23-0537-45c9-a654-903f8e56c541","newPasswordConfirm":"71471d23-0537-45c9-a654-903f8e56c541"}, {"password":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPassword":"71471d23-0537-45c9-a654-903f8e56c541","newPasswordConfirm":"71471d23-0537-45c9-a654-903f8e56c541"}, requestBody) +08:11:51.444 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG com.networknt.schema.FormatValidator debug - validate( "71471d23-0537-45c9-a654-903f8e56c541", {"password":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPassword":"71471d23-0537-45c9-a654-903f8e56c541","newPasswordConfirm":"71471d23-0537-45c9-a654-903f8e56c541"}, requestBody.newPasswordConfirm) +08:11:51.444 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG com.networknt.schema.FormatValidator debug - validate( "f667c276-64d0-48ee-9149-9007b82cc6c6", {"password":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPassword":"71471d23-0537-45c9-a654-903f8e56c541","newPasswordConfirm":"71471d23-0537-45c9-a654-903f8e56c541"}, requestBody.password) +08:11:51.444 [XNIO-1 task-1] iLvCeFisQliFM2yfm2ieLA DEBUG com.networknt.schema.FormatValidator debug - validate( "71471d23-0537-45c9-a654-903f8e56c541", {"password":"f667c276-64d0-48ee-9149-9007b82cc6c6","newPassword":"71471d23-0537-45c9-a654-903f8e56c541","newPasswordConfirm":"71471d23-0537-45c9-a654-903f8e56c541"}, requestBody.newPassword) +08:11:51.449 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d833079e-6b26-4534-8268-bfe673740fd2 +08:11:51.454 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9bab2b9 +08:11:51.463 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.463 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.463 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.463 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, requestBody) +08:11:51.463 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG com.networknt.schema.TypeValidator debug - validate( "e04cfb91-542f-4cdb-a9a5-b659a856", {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, requestBody.firstName) +08:11:51.463 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG com.networknt.schema.TypeValidator debug - validate( "88f11e62-0ac8-4ea1-8031-c426565d0315", {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, requestBody.password) +08:11:51.463 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, requestBody) +08:11:51.464 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, requestBody.userType) +08:11:51.464 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG com.networknt.schema.TypeValidator debug - validate( "813e290e", {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, requestBody.userId) +08:11:51.464 [XNIO-1 task-1] R7R2Jke_Sni_hkIaXccsrg DEBUG com.networknt.schema.TypeValidator debug - validate( "61d30b62-d1fc-4700-a5ee-f2d6d82de107", {"userId":"813e290e","userType":"admin","firstName":"e04cfb91-542f-4cdb-a9a5-b659a856","lastName":"02133800-52d4-4b4e-8d6f-3a505235","email":"61d30b62-d1fc-4700-a5ee-f2d6d82de107","password":"88f11e62-0ac8-4ea1-8031-c426565d0315"}, requestBody.email) +08:11:51.470 [XNIO-1 task-1] OHpoo6nuS6mSzLOUtyHlJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9bab2b9, base path is set to: null +08:11:51.470 [XNIO-1 task-1] OHpoo6nuS6mSzLOUtyHlJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.470 [XNIO-1 task-1] OHpoo6nuS6mSzLOUtyHlJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.470 [XNIO-1 task-1] OHpoo6nuS6mSzLOUtyHlJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9bab2b9, base path is set to: null +08:11:51.470 [XNIO-1 task-1] OHpoo6nuS6mSzLOUtyHlJg DEBUG com.networknt.schema.TypeValidator debug - validate( "e9bab2b9", "e9bab2b9", userId) +08:11:51.480 [XNIO-1 task-1] J8303reaQjWcBfKwcs9LHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/045f7c1b, base path is set to: null +08:11:51.480 [XNIO-1 task-1] J8303reaQjWcBfKwcs9LHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.480 [XNIO-1 task-1] J8303reaQjWcBfKwcs9LHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.480 [XNIO-1 task-1] J8303reaQjWcBfKwcs9LHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/045f7c1b, base path is set to: null +08:11:51.480 [XNIO-1 task-1] J8303reaQjWcBfKwcs9LHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "045f7c1b", "045f7c1b", userId) +08:11:51.487 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/045f7c1b +08:11:51.487 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.487 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.487 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:51.487 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/045f7c1b +08:11:51.488 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6c6d5820-0c80-477a-8341-c35118ddfc8e","newPassword":"0196ca32-3f90-4413-9257-af442526c7d9","newPasswordConfirm":"0196ca32-3f90-4413-9257-af442526c7d9"}, {"password":"6c6d5820-0c80-477a-8341-c35118ddfc8e","newPassword":"0196ca32-3f90-4413-9257-af442526c7d9","newPasswordConfirm":"0196ca32-3f90-4413-9257-af442526c7d9"}, requestBody) +08:11:51.488 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6c6d5820-0c80-477a-8341-c35118ddfc8e","newPassword":"0196ca32-3f90-4413-9257-af442526c7d9","newPasswordConfirm":"0196ca32-3f90-4413-9257-af442526c7d9"}, {"password":"6c6d5820-0c80-477a-8341-c35118ddfc8e","newPassword":"0196ca32-3f90-4413-9257-af442526c7d9","newPasswordConfirm":"0196ca32-3f90-4413-9257-af442526c7d9"}, requestBody) +08:11:51.488 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG com.networknt.schema.FormatValidator debug - validate( "0196ca32-3f90-4413-9257-af442526c7d9", {"password":"6c6d5820-0c80-477a-8341-c35118ddfc8e","newPassword":"0196ca32-3f90-4413-9257-af442526c7d9","newPasswordConfirm":"0196ca32-3f90-4413-9257-af442526c7d9"}, requestBody.newPasswordConfirm) +08:11:51.488 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG com.networknt.schema.FormatValidator debug - validate( "6c6d5820-0c80-477a-8341-c35118ddfc8e", {"password":"6c6d5820-0c80-477a-8341-c35118ddfc8e","newPassword":"0196ca32-3f90-4413-9257-af442526c7d9","newPasswordConfirm":"0196ca32-3f90-4413-9257-af442526c7d9"}, requestBody.password) +08:11:51.488 [XNIO-1 task-1] 5IKbyRV6Rvq1ufgWQv8P_w DEBUG com.networknt.schema.FormatValidator debug - validate( "0196ca32-3f90-4413-9257-af442526c7d9", {"password":"6c6d5820-0c80-477a-8341-c35118ddfc8e","newPassword":"0196ca32-3f90-4413-9257-af442526c7d9","newPasswordConfirm":"0196ca32-3f90-4413-9257-af442526c7d9"}, requestBody.newPassword) +08:11:51.504 [XNIO-1 task-1] zlUMufVESamooOvwslnCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/045f7c1b +08:11:51.504 [XNIO-1 task-1] zlUMufVESamooOvwslnCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.504 [XNIO-1 task-1] zlUMufVESamooOvwslnCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.504 [XNIO-1 task-1] zlUMufVESamooOvwslnCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/045f7c1b +08:11:51.512 [XNIO-1 task-1] Clfe0o_vSiCuHvxOk-os-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.512 [XNIO-1 task-1] Clfe0o_vSiCuHvxOk-os-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.512 [XNIO-1 task-1] Clfe0o_vSiCuHvxOk-os-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.512 [XNIO-1 task-1] Clfe0o_vSiCuHvxOk-os-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.519 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.519 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.519 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.519 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, requestBody) +08:11:51.519 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, requestBody) +08:11:51.519 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce749062-a861-4b11-920d-13c89cc7", {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, requestBody.lastName) +08:11:51.520 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG com.networknt.schema.FormatValidator debug - validate( "a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed", {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, requestBody.password) +08:11:51.520 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, requestBody.userType) +08:11:51.520 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, requestBody) +08:11:51.520 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, {"userId":"cd57a0c4","userType":"admin","firstName":"7ffa0c1d-bfed-4494-9d98-57257e26","lastName":"ce749062-a861-4b11-920d-13c89cc7","email":"55103666-1c82-4a21-ab55-98dbdda24abf","password":"a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed"}, requestBody) +08:11:51.521 [XNIO-1 task-1] _ArKvXuZRoOpKxWyhbkpzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password a70b4a12-0c67-4d3f-91b4-e96b9a4bdbed or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:51.523 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:58f0c3cb-1168-4e2e-afb4-f91426a9cf83 +08:11:51.530 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/045f7c1b, base path is set to: null +08:11:51.530 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.530 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.530 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:51.530 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/045f7c1b, base path is set to: null +08:11:51.530 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "045f7c1b", "045f7c1b", userId) +08:11:51.531 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0196ca32-3f90-4413-9257-af442526c7d9","newPassword":"82638687-9ac3-48c8-976a-dbef51eadf12","newPasswordConfirm":"82638687-9ac3-48c8-976a-dbef51eadf12"}, {"password":"0196ca32-3f90-4413-9257-af442526c7d9","newPassword":"82638687-9ac3-48c8-976a-dbef51eadf12","newPasswordConfirm":"82638687-9ac3-48c8-976a-dbef51eadf12"}, requestBody) +08:11:51.531 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82638687-9ac3-48c8-976a-dbef51eadf12", {"password":"0196ca32-3f90-4413-9257-af442526c7d9","newPassword":"82638687-9ac3-48c8-976a-dbef51eadf12","newPasswordConfirm":"82638687-9ac3-48c8-976a-dbef51eadf12"}, requestBody.newPasswordConfirm) +08:11:51.531 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0196ca32-3f90-4413-9257-af442526c7d9", {"password":"0196ca32-3f90-4413-9257-af442526c7d9","newPassword":"82638687-9ac3-48c8-976a-dbef51eadf12","newPasswordConfirm":"82638687-9ac3-48c8-976a-dbef51eadf12"}, requestBody.password) +08:11:51.531 [XNIO-1 task-1] qFIe4XI1Rii1si_YY5zMeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82638687-9ac3-48c8-976a-dbef51eadf12", {"password":"0196ca32-3f90-4413-9257-af442526c7d9","newPassword":"82638687-9ac3-48c8-976a-dbef51eadf12","newPasswordConfirm":"82638687-9ac3-48c8-976a-dbef51eadf12"}, requestBody.newPassword) +08:11:51.550 [XNIO-1 task-1] zxV9cV9ITtu4CJd64zBsdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.550 [XNIO-1 task-1] zxV9cV9ITtu4CJd64zBsdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.550 [XNIO-1 task-1] zxV9cV9ITtu4CJd64zBsdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.550 [XNIO-1 task-1] zxV9cV9ITtu4CJd64zBsdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.555 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8c0e5d0a-8691-4734-8825-82c04e8d07dd +08:11:51.555 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8c0e5d0a-8691-4734-8825-82c04e8d07dd +08:11:51.555 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.555 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.555 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:51.555 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/045f7c1b, base path is set to: null +08:11:51.555 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG com.networknt.schema.TypeValidator debug - validate( "045f7c1b", "045f7c1b", userId) +08:11:51.556 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"82638687-9ac3-48c8-976a-dbef51eadf12","newPassword":"e311ed82-053e-432b-af22-791f1a8be9ef","newPasswordConfirm":"e311ed82-053e-432b-af22-791f1a8be9ef"}, {"password":"82638687-9ac3-48c8-976a-dbef51eadf12","newPassword":"e311ed82-053e-432b-af22-791f1a8be9ef","newPasswordConfirm":"e311ed82-053e-432b-af22-791f1a8be9ef"}, requestBody) +08:11:51.556 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG com.networknt.schema.TypeValidator debug - validate( "e311ed82-053e-432b-af22-791f1a8be9ef", {"password":"82638687-9ac3-48c8-976a-dbef51eadf12","newPassword":"e311ed82-053e-432b-af22-791f1a8be9ef","newPasswordConfirm":"e311ed82-053e-432b-af22-791f1a8be9ef"}, requestBody.newPasswordConfirm) +08:11:51.556 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG com.networknt.schema.TypeValidator debug - validate( "82638687-9ac3-48c8-976a-dbef51eadf12", {"password":"82638687-9ac3-48c8-976a-dbef51eadf12","newPassword":"e311ed82-053e-432b-af22-791f1a8be9ef","newPasswordConfirm":"e311ed82-053e-432b-af22-791f1a8be9ef"}, requestBody.password) +08:11:51.556 [XNIO-1 task-1] 8q06QbvKRvOVGjkqa64gyw DEBUG com.networknt.schema.TypeValidator debug - validate( "e311ed82-053e-432b-af22-791f1a8be9ef", {"password":"82638687-9ac3-48c8-976a-dbef51eadf12","newPassword":"e311ed82-053e-432b-af22-791f1a8be9ef","newPasswordConfirm":"e311ed82-053e-432b-af22-791f1a8be9ef"}, requestBody.newPassword) +08:11:51.570 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8c0e5d0a-8691-4734-8825-82c04e8d07dd +08:11:51.576 [XNIO-1 task-1] jtmQ_yteRzS8HbIPsZQ7EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/045f7c1b +08:11:51.576 [XNIO-1 task-1] jtmQ_yteRzS8HbIPsZQ7EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.576 [XNIO-1 task-1] jtmQ_yteRzS8HbIPsZQ7EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.576 [XNIO-1 task-1] jtmQ_yteRzS8HbIPsZQ7EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/045f7c1b +08:11:51.585 [XNIO-1 task-1] 47C5tLvWS1qi-rOEvm3zKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.585 [XNIO-1 task-1] 47C5tLvWS1qi-rOEvm3zKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.585 [XNIO-1 task-1] 47C5tLvWS1qi-rOEvm3zKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.585 [XNIO-1 task-1] 47C5tLvWS1qi-rOEvm3zKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.595 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.595 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.595 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.596 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, requestBody) +08:11:51.596 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, requestBody) +08:11:51.596 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG com.networknt.schema.TypeValidator debug - validate( "cf816496-5f59-4f0a-9e49-697939a9", {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, requestBody.lastName) +08:11:51.596 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG com.networknt.schema.FormatValidator debug - validate( "05de64e2-6940-4d5e-8971-144f001d8043", {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, requestBody.password) +08:11:51.596 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, requestBody.userType) +08:11:51.596 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, requestBody) +08:11:51.596 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, {"userId":"34d1d4e5","userType":"admin","firstName":"9fdc5008-b792-4b1b-9088-9c268b04","lastName":"cf816496-5f59-4f0a-9e49-697939a9","email":"fd1d052e-fd50-47c8-9e5d-e4d06d9f98db","password":"05de64e2-6940-4d5e-8971-144f001d8043"}, requestBody) +08:11:51.598 [XNIO-1 task-1] yGBxu-VqTuCFjxLSROk93A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 05de64e2-6940-4d5e-8971-144f001d8043 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:51.601 [XNIO-1 task-1] UYNRYLXjSJWoiDkR4KpNRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.601 [XNIO-1 task-1] UYNRYLXjSJWoiDkR4KpNRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.601 [XNIO-1 task-1] UYNRYLXjSJWoiDkR4KpNRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.601 [XNIO-1 task-1] UYNRYLXjSJWoiDkR4KpNRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.605 [XNIO-1 task-1] 1fpOftb6SsO5KITpoj5-ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.605 [XNIO-1 task-1] 1fpOftb6SsO5KITpoj5-ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.605 [XNIO-1 task-1] 1fpOftb6SsO5KITpoj5-ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.622 [XNIO-1 task-1] 9S81ShaDT-aZtouhCay9lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.622 [XNIO-1 task-1] 9S81ShaDT-aZtouhCay9lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.622 [XNIO-1 task-1] 9S81ShaDT-aZtouhCay9lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.629 [XNIO-1 task-1] aBYmSzycQA-2VJfo1PBh5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4b22663a +08:11:51.629 [XNIO-1 task-1] aBYmSzycQA-2VJfo1PBh5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.629 [XNIO-1 task-1] aBYmSzycQA-2VJfo1PBh5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.629 [XNIO-1 task-1] aBYmSzycQA-2VJfo1PBh5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4b22663a +08:11:51.631 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:09b79cb4-4e28-456d-9d05-8df72afa7f06 +08:11:51.633 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:09b79cb4-4e28-456d-9d05-8df72afa7f06 +08:11:51.634 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.634 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.634 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.635 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, requestBody) +08:11:51.635 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG com.networknt.schema.TypeValidator debug - validate( "40cd69f9-bf37-449f-a5f6-69650d00", {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, requestBody.firstName) +08:11:51.635 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG com.networknt.schema.TypeValidator debug - validate( "bd531b1c-d927-4b15-9152-bb14a3b2c7d8", {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, requestBody.password) +08:11:51.635 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, requestBody) +08:11:51.635 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, requestBody.userType) +08:11:51.635 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG com.networknt.schema.TypeValidator debug - validate( "47c071f3", {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, requestBody.userId) +08:11:51.635 [XNIO-1 task-1] mrWglAh4RbWjyt8m5j_F0w DEBUG com.networknt.schema.TypeValidator debug - validate( "4ebb017d-24b4-4ff6-880c-fdb1ed2df746", {"userId":"47c071f3","userType":"admin","firstName":"40cd69f9-bf37-449f-a5f6-69650d00","lastName":"0e3c476c-026c-4538-8184-c0a75072","email":"4ebb017d-24b4-4ff6-880c-fdb1ed2df746","password":"bd531b1c-d927-4b15-9152-bb14a3b2c7d8"}, requestBody.email) +08:11:51.643 [XNIO-1 task-1] 5nYOD_LuRS-OE0ZFAHrlIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.643 [XNIO-1 task-1] 5nYOD_LuRS-OE0ZFAHrlIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.643 [XNIO-1 task-1] 5nYOD_LuRS-OE0ZFAHrlIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.662 [XNIO-1 task-1] mFC9fAcBQse5EtBNekMidw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.663 [XNIO-1 task-1] mFC9fAcBQse5EtBNekMidw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.663 [XNIO-1 task-1] mFC9fAcBQse5EtBNekMidw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.672 [XNIO-1 task-1] nOLrdG5eRDebUCyJy0L5Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.672 [XNIO-1 task-1] nOLrdG5eRDebUCyJy0L5Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.673 [XNIO-1 task-1] nOLrdG5eRDebUCyJy0L5Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.673 [XNIO-1 task-1] nOLrdG5eRDebUCyJy0L5Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.679 [XNIO-1 task-1] M59ps5ngS7yzhf8hJDoFkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4b22663a, base path is set to: null +08:11:51.680 [XNIO-1 task-1] M59ps5ngS7yzhf8hJDoFkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.680 [XNIO-1 task-1] M59ps5ngS7yzhf8hJDoFkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.680 [XNIO-1 task-1] M59ps5ngS7yzhf8hJDoFkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4b22663a, base path is set to: null +08:11:51.680 [XNIO-1 task-1] M59ps5ngS7yzhf8hJDoFkw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b22663a", "4b22663a", userId) +08:11:51.686 [XNIO-1 task-1] w9qdfmz5TvezKwpYc0nTxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.686 [XNIO-1 task-1] w9qdfmz5TvezKwpYc0nTxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.687 [XNIO-1 task-1] w9qdfmz5TvezKwpYc0nTxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.693 [XNIO-1 task-1] 5W0RXRk8R7ODiJBcd9NSug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/22151fe4 +08:11:51.693 [XNIO-1 task-1] 5W0RXRk8R7ODiJBcd9NSug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.693 [XNIO-1 task-1] 5W0RXRk8R7ODiJBcd9NSug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.695 [XNIO-1 task-1] 5W0RXRk8R7ODiJBcd9NSug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/22151fe4 +08:11:51.704 [XNIO-1 task-1] 3ikw0iX9Tg-yCIIax2_Svw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4b22663a, base path is set to: null +08:11:51.704 [XNIO-1 task-1] 3ikw0iX9Tg-yCIIax2_Svw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.704 [XNIO-1 task-1] 3ikw0iX9Tg-yCIIax2_Svw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.704 [XNIO-1 task-1] 3ikw0iX9Tg-yCIIax2_Svw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4b22663a, base path is set to: null +08:11:51.704 [XNIO-1 task-1] 3ikw0iX9Tg-yCIIax2_Svw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b22663a", "4b22663a", userId) +08:11:51.707 [XNIO-1 task-1] Fe8OQJrmQQ2wcYQ7g3TFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4b22663a +08:11:51.707 [XNIO-1 task-1] Fe8OQJrmQQ2wcYQ7g3TFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.707 [XNIO-1 task-1] Fe8OQJrmQQ2wcYQ7g3TFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.707 [XNIO-1 task-1] Fe8OQJrmQQ2wcYQ7g3TFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4b22663a +08:11:51.715 [XNIO-1 task-1] FILcUzbkQViKtP3Z8SBSbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.715 [XNIO-1 task-1] FILcUzbkQViKtP3Z8SBSbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.715 [XNIO-1 task-1] FILcUzbkQViKtP3Z8SBSbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.715 [XNIO-1 task-1] FILcUzbkQViKtP3Z8SBSbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.728 [XNIO-1 task-1] s1vwUDBtTPiQRcBDmYvR_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.728 [XNIO-1 task-1] s1vwUDBtTPiQRcBDmYvR_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.728 [XNIO-1 task-1] s1vwUDBtTPiQRcBDmYvR_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.732 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cb3b650c-5b13-480c-8832-3e30c76a1b42 +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/afe510bc, base path is set to: null +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/afe510bc, base path is set to: null +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG com.networknt.schema.TypeValidator debug - validate( "afe510bc", "afe510bc", userId) +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e6d717f1-0447-4e20-a5ca-f76f96eab14a","newPassword":"6e4242db-e435-43dd-aaef-65b366f30deb","newPasswordConfirm":"6e4242db-e435-43dd-aaef-65b366f30deb"}, {"password":"e6d717f1-0447-4e20-a5ca-f76f96eab14a","newPassword":"6e4242db-e435-43dd-aaef-65b366f30deb","newPasswordConfirm":"6e4242db-e435-43dd-aaef-65b366f30deb"}, requestBody) +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6e4242db-e435-43dd-aaef-65b366f30deb", {"password":"e6d717f1-0447-4e20-a5ca-f76f96eab14a","newPassword":"6e4242db-e435-43dd-aaef-65b366f30deb","newPasswordConfirm":"6e4242db-e435-43dd-aaef-65b366f30deb"}, requestBody.newPasswordConfirm) +08:11:51.749 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e6d717f1-0447-4e20-a5ca-f76f96eab14a", {"password":"e6d717f1-0447-4e20-a5ca-f76f96eab14a","newPassword":"6e4242db-e435-43dd-aaef-65b366f30deb","newPasswordConfirm":"6e4242db-e435-43dd-aaef-65b366f30deb"}, requestBody.password) +08:11:51.750 [XNIO-1 task-1] JpMWMVZyQbGoHXc36nc59Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6e4242db-e435-43dd-aaef-65b366f30deb", {"password":"e6d717f1-0447-4e20-a5ca-f76f96eab14a","newPassword":"6e4242db-e435-43dd-aaef-65b366f30deb","newPasswordConfirm":"6e4242db-e435-43dd-aaef-65b366f30deb"}, requestBody.newPassword) +08:11:51.768 [XNIO-1 task-1] UsjRwm-OQdi6jsMlgs18zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.769 [XNIO-1 task-1] UsjRwm-OQdi6jsMlgs18zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.769 [XNIO-1 task-1] UsjRwm-OQdi6jsMlgs18zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.784 [XNIO-1 task-1] Xiv13JSgQCqUqY16VGkVLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/afe510bc, base path is set to: null +08:11:51.784 [XNIO-1 task-1] Xiv13JSgQCqUqY16VGkVLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +Jun 29, 2024 8:11:51 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +08:11:51.785 [XNIO-1 task-1] Xiv13JSgQCqUqY16VGkVLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/afe510bc, base path is set to: null +08:11:51.785 [XNIO-1 task-1] Xiv13JSgQCqUqY16VGkVLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/afe510bc +08:11:51.785 [XNIO-1 task-1] Xiv13JSgQCqUqY16VGkVLw DEBUG com.networknt.schema.TypeValidator debug - validate( "afe510bc", "afe510bc", userId) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +08:11:51.790 [XNIO-1 task-1] aJ57tvZwQq-nla7tGnhPzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.790 [XNIO-1 task-1] aJ57tvZwQq-nla7tGnhPzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/917c3a45 +08:11:51.790 [XNIO-1 task-1] aJ57tvZwQq-nla7tGnhPzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.791 [XNIO-1 task-1] aJ57tvZwQq-nla7tGnhPzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:51.791 [XNIO-1 task-1] aJ57tvZwQq-nla7tGnhPzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/917c3a45 +08:11:51.791 [XNIO-1 task-1] aJ57tvZwQq-nla7tGnhPzg DEBUG com.networknt.schema.TypeValidator debug - validate( "917c3a45", "917c3a45", userId) +08:11:51.794 [XNIO-1 task-1] sXwxq0xyQKSZQ2nR7TE7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/917c3a45 +08:11:51.794 [XNIO-1 task-1] sXwxq0xyQKSZQ2nR7TE7tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.794 [XNIO-1 task-1] sXwxq0xyQKSZQ2nR7TE7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.794 [XNIO-1 task-1] sXwxq0xyQKSZQ2nR7TE7tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +08:11:51.795 [XNIO-1 task-1] sXwxq0xyQKSZQ2nR7TE7tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.795 [XNIO-1 task-1] sXwxq0xyQKSZQ2nR7TE7tg DEBUG com.networknt.schema.TypeValidator debug - validate( "917c3a45", "917c3a45", userId) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +08:11:51.802 [XNIO-1 task-1] YHaJjKpERRe6qZB8IfCaWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.802 [XNIO-1 task-1] YHaJjKpERRe6qZB8IfCaWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.802 [XNIO-1 task-1] YHaJjKpERRe6qZB8IfCaWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.802 [XNIO-1 task-1] YHaJjKpERRe6qZB8IfCaWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.814 [XNIO-1 task-1] HhlSAdJuRs-56-EUg_iHgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.814 [XNIO-1 task-1] HhlSAdJuRs-56-EUg_iHgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.814 [XNIO-1 task-1] HhlSAdJuRs-56-EUg_iHgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.814 [XNIO-1 task-1] HhlSAdJuRs-56-EUg_iHgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.817 [XNIO-1 task-1] sYBo1xvzQT23p4vYdC7EWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/14f654d7 +08:11:51.817 [XNIO-1 task-1] sYBo1xvzQT23p4vYdC7EWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.817 [XNIO-1 task-1] sYBo1xvzQT23p4vYdC7EWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +08:11:51.835 [XNIO-1 task-1] r5gErgfIR221nDJVqFqLng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.835 [XNIO-1 task-1] r5gErgfIR221nDJVqFqLng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + ... 14 more + +08:11:51.835 [XNIO-1 task-1] r5gErgfIR221nDJVqFqLng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.835 [XNIO-1 task-1] r5gErgfIR221nDJVqFqLng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.842 [XNIO-1 task-1] Wax6jAZFTSeKTLwF4U3JEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/917c3a45 +08:11:51.842 [XNIO-1 task-1] Wax6jAZFTSeKTLwF4U3JEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.842 [XNIO-1 task-1] Wax6jAZFTSeKTLwF4U3JEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.842 [XNIO-1 task-1] Wax6jAZFTSeKTLwF4U3JEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/917c3a45 +08:11:51.848 [XNIO-1 task-1] GGVQWIsASTCBgxxkD3ZzZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.848 [XNIO-1 task-1] GGVQWIsASTCBgxxkD3ZzZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.848 [XNIO-1 task-1] GGVQWIsASTCBgxxkD3ZzZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.849 [XNIO-1 task-1] GGVQWIsASTCBgxxkD3ZzZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.852 [XNIO-1 task-1] biIDM_D-SiKVWoWXBPdjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.852 [XNIO-1 task-1] biIDM_D-SiKVWoWXBPdjoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.852 [XNIO-1 task-1] biIDM_D-SiKVWoWXBPdjoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.852 [XNIO-1 task-1] biIDM_D-SiKVWoWXBPdjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.852 [XNIO-1 task-1] biIDM_D-SiKVWoWXBPdjoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "917c3a45", "917c3a45", userId) +08:11:51.856 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/917c3a45 +08:11:51.856 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.856 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.857 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:51.857 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/917c3a45 +08:11:51.857 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9ef4e2e9-e91f-4cd9-93da-957da6c2bc30","newPassword":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPasswordConfirm":"bafd82bf-573a-46ee-958c-243c0bf9de21"}, {"password":"9ef4e2e9-e91f-4cd9-93da-957da6c2bc30","newPassword":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPasswordConfirm":"bafd82bf-573a-46ee-958c-243c0bf9de21"}, requestBody) +08:11:51.857 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9ef4e2e9-e91f-4cd9-93da-957da6c2bc30","newPassword":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPasswordConfirm":"bafd82bf-573a-46ee-958c-243c0bf9de21"}, {"password":"9ef4e2e9-e91f-4cd9-93da-957da6c2bc30","newPassword":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPasswordConfirm":"bafd82bf-573a-46ee-958c-243c0bf9de21"}, requestBody) +08:11:51.857 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG com.networknt.schema.FormatValidator debug - validate( "bafd82bf-573a-46ee-958c-243c0bf9de21", {"password":"9ef4e2e9-e91f-4cd9-93da-957da6c2bc30","newPassword":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPasswordConfirm":"bafd82bf-573a-46ee-958c-243c0bf9de21"}, requestBody.newPasswordConfirm) +08:11:51.857 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG com.networknt.schema.FormatValidator debug - validate( "9ef4e2e9-e91f-4cd9-93da-957da6c2bc30", {"password":"9ef4e2e9-e91f-4cd9-93da-957da6c2bc30","newPassword":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPasswordConfirm":"bafd82bf-573a-46ee-958c-243c0bf9de21"}, requestBody.password) +08:11:51.857 [XNIO-1 task-1] 4I0freplQ1C06PMHrwhrwg DEBUG com.networknt.schema.FormatValidator debug - validate( "bafd82bf-573a-46ee-958c-243c0bf9de21", {"password":"9ef4e2e9-e91f-4cd9-93da-957da6c2bc30","newPassword":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPasswordConfirm":"bafd82bf-573a-46ee-958c-243c0bf9de21"}, requestBody.newPassword) +08:11:51.882 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.882 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.882 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.883 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, requestBody) +08:11:51.883 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb2f93c8-0154-49db-80d6-5e633b9e", {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, requestBody.firstName) +08:11:51.883 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG com.networknt.schema.TypeValidator debug - validate( "c8cb7437-3a31-487e-b991-2b31a6b08898", {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, requestBody.password) +08:11:51.883 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, requestBody) +08:11:51.883 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, requestBody.userType) +08:11:51.883 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG com.networknt.schema.TypeValidator debug - validate( "fdc88cb0", {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, requestBody.userId) +08:11:51.883 [XNIO-1 task-1] o0xvpz4CTCGYE4I1qsHdCw DEBUG com.networknt.schema.TypeValidator debug - validate( "a53234ec-e4af-42d4-893c-4f5de14d2fe3", {"userId":"fdc88cb0","userType":"admin","firstName":"cb2f93c8-0154-49db-80d6-5e633b9e","lastName":"da402152-d749-4a85-9ac7-c044cc65","email":"a53234ec-e4af-42d4-893c-4f5de14d2fe3","password":"c8cb7437-3a31-487e-b991-2b31a6b08898"}, requestBody.email) +08:11:51.887 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:58f0c3cb-1168-4e2e-afb4-f91426a9cf83 +08:11:51.888 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/917c3a45 +08:11:51.889 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.889 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.889 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:51.889 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/917c3a45 +08:11:51.890 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPassword":"e37a8b2f-b9a2-42ec-b329-340f427f476b","newPasswordConfirm":"e37a8b2f-b9a2-42ec-b329-340f427f476b"}, {"password":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPassword":"e37a8b2f-b9a2-42ec-b329-340f427f476b","newPasswordConfirm":"e37a8b2f-b9a2-42ec-b329-340f427f476b"}, requestBody) +08:11:51.890 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPassword":"e37a8b2f-b9a2-42ec-b329-340f427f476b","newPasswordConfirm":"e37a8b2f-b9a2-42ec-b329-340f427f476b"}, {"password":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPassword":"e37a8b2f-b9a2-42ec-b329-340f427f476b","newPasswordConfirm":"e37a8b2f-b9a2-42ec-b329-340f427f476b"}, requestBody) +08:11:51.890 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG com.networknt.schema.FormatValidator debug - validate( "e37a8b2f-b9a2-42ec-b329-340f427f476b", {"password":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPassword":"e37a8b2f-b9a2-42ec-b329-340f427f476b","newPasswordConfirm":"e37a8b2f-b9a2-42ec-b329-340f427f476b"}, requestBody.newPasswordConfirm) +08:11:51.890 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG com.networknt.schema.FormatValidator debug - validate( "bafd82bf-573a-46ee-958c-243c0bf9de21", {"password":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPassword":"e37a8b2f-b9a2-42ec-b329-340f427f476b","newPasswordConfirm":"e37a8b2f-b9a2-42ec-b329-340f427f476b"}, requestBody.password) +08:11:51.890 [XNIO-1 task-1] udDNrfE3T4OiOGvBxe467A DEBUG com.networknt.schema.FormatValidator debug - validate( "e37a8b2f-b9a2-42ec-b329-340f427f476b", {"password":"bafd82bf-573a-46ee-958c-243c0bf9de21","newPassword":"e37a8b2f-b9a2-42ec-b329-340f427f476b","newPasswordConfirm":"e37a8b2f-b9a2-42ec-b329-340f427f476b"}, requestBody.newPassword) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:51.905 [XNIO-1 task-1] 912BLy-RRuS0bnA2cGrvaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.905 [XNIO-1 task-1] 912BLy-RRuS0bnA2cGrvaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.906 [XNIO-1 task-1] 912BLy-RRuS0bnA2cGrvaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.906 [XNIO-1 task-1] 912BLy-RRuS0bnA2cGrvaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.906 [XNIO-1 task-1] 912BLy-RRuS0bnA2cGrvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "917c3a45", "917c3a45", userId) +08:11:51.914 [XNIO-1 task-1] WSgurWffQS-T83P5fsol7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/917c3a45 +08:11:51.914 [XNIO-1 task-1] WSgurWffQS-T83P5fsol7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.914 [XNIO-1 task-1] WSgurWffQS-T83P5fsol7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.914 [XNIO-1 task-1] WSgurWffQS-T83P5fsol7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/917c3a45 +08:11:51.921 [XNIO-1 task-1] 2EzEK0WDSgW8vZc2rc3OUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.922 [XNIO-1 task-1] 2EzEK0WDSgW8vZc2rc3OUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.922 [XNIO-1 task-1] 2EzEK0WDSgW8vZc2rc3OUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.922 [XNIO-1 task-1] 2EzEK0WDSgW8vZc2rc3OUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.926 [XNIO-1 task-1] 5T6yzgiJT3qNEqEu4LiCbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.926 [XNIO-1 task-1] 5T6yzgiJT3qNEqEu4LiCbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.926 [XNIO-1 task-1] 5T6yzgiJT3qNEqEu4LiCbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.934 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e31dccf4-4408-4e1d-9b5d-108c7fa9fb27 +08:11:51.939 [XNIO-1 task-1] OdgibCfASy2BbB1nHRX5gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.939 [XNIO-1 task-1] OdgibCfASy2BbB1nHRX5gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.940 [XNIO-1 task-1] OdgibCfASy2BbB1nHRX5gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.940 [XNIO-1 task-1] OdgibCfASy2BbB1nHRX5gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.940 [XNIO-1 task-1] OdgibCfASy2BbB1nHRX5gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "917c3a45", "917c3a45", userId) +08:11:51.946 [XNIO-1 task-1] NmtaMpItTUqVzm9N3NP7kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.946 [XNIO-1 task-1] NmtaMpItTUqVzm9N3NP7kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.946 [XNIO-1 task-1] NmtaMpItTUqVzm9N3NP7kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.947 [XNIO-1 task-1] NmtaMpItTUqVzm9N3NP7kA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:51.952 [XNIO-1 task-1] s_SUcmNZQ_GtozTRoNc7xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a3c36b57 +08:11:51.952 [XNIO-1 task-1] s_SUcmNZQ_GtozTRoNc7xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.952 [XNIO-1 task-1] s_SUcmNZQ_GtozTRoNc7xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:51.952 [XNIO-1 task-1] s_SUcmNZQ_GtozTRoNc7xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a3c36b57 +08:11:51.960 [XNIO-1 task-1] fZqR2GpxTY2zhdBraQpnAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.960 [XNIO-1 task-1] fZqR2GpxTY2zhdBraQpnAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.960 [XNIO-1 task-1] fZqR2GpxTY2zhdBraQpnAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:51.960 [XNIO-1 task-1] fZqR2GpxTY2zhdBraQpnAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/917c3a45, base path is set to: null +08:11:51.961 [XNIO-1 task-1] fZqR2GpxTY2zhdBraQpnAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "917c3a45", "917c3a45", userId) +08:11:51.972 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.972 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.972 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:51.972 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, requestBody) +08:11:51.972 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "95087682-d75b-477e-893b-28fd2606", {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, requestBody.firstName) +08:11:51.972 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a", {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, requestBody.password) +08:11:51.972 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, requestBody) +08:11:51.973 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, requestBody.userType) +08:11:51.973 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aa1cf661", {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, requestBody.userId) +08:11:51.973 [XNIO-1 task-1] 4R17HUOmSYSx0cajlziUVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "997941aa-264e-402a-970b-79ae7eab6aef", {"userId":"aa1cf661","userType":"admin","firstName":"95087682-d75b-477e-893b-28fd2606","lastName":"1ffff758-68dd-45e2-962f-be22db51","email":"997941aa-264e-402a-970b-79ae7eab6aef","password":"e4e5ddc3-271a-46c1-b12a-98e2c9a9f42a"}, requestBody.email) +08:11:51.978 [XNIO-1 task-1] TJYmg1lHTg2Nb2X4Vgix9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.978 [XNIO-1 task-1] TJYmg1lHTg2Nb2X4Vgix9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.978 [XNIO-1 task-1] TJYmg1lHTg2Nb2X4Vgix9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.978 [XNIO-1 task-1] TJYmg1lHTg2Nb2X4Vgix9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.983 [XNIO-1 task-1] e9CYOUCMSS2IyCRaDhD-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.983 [XNIO-1 task-1] e9CYOUCMSS2IyCRaDhD-Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.983 [XNIO-1 task-1] e9CYOUCMSS2IyCRaDhD-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.984 [XNIO-1 task-1] e9CYOUCMSS2IyCRaDhD-Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:51.991 [XNIO-1 task-1] -5i4zMtISaey0LiQy2eKzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:51.991 [XNIO-1 task-1] -5i4zMtISaey0LiQy2eKzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:51.991 [XNIO-1 task-1] -5i4zMtISaey0LiQy2eKzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.014 [XNIO-1 task-1] serni7C-TxWwSuHsJLT2dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/67850884, base path is set to: null +08:11:52.015 [XNIO-1 task-1] serni7C-TxWwSuHsJLT2dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.015 [XNIO-1 task-1] serni7C-TxWwSuHsJLT2dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.015 [XNIO-1 task-1] serni7C-TxWwSuHsJLT2dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/67850884, base path is set to: null +08:11:52.015 [XNIO-1 task-1] serni7C-TxWwSuHsJLT2dg DEBUG com.networknt.schema.TypeValidator debug - validate( "67850884", "67850884", userId) +08:11:52.022 [XNIO-1 task-1] Ii-oTHr4SveoyRAbX_xaLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.022 [XNIO-1 task-1] Ii-oTHr4SveoyRAbX_xaLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.022 [XNIO-1 task-1] Ii-oTHr4SveoyRAbX_xaLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.023 [XNIO-1 task-1] Ii-oTHr4SveoyRAbX_xaLg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +08:11:52.026 [XNIO-1 task-1] K-J4gDaTQsOX2U3v50hVkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.027 [XNIO-1 task-1] K-J4gDaTQsOX2U3v50hVkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.027 [XNIO-1 task-1] K-J4gDaTQsOX2U3v50hVkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.041 [XNIO-1 task-1] M-34ZYJnTTmgRhgugU6g4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.043 [XNIO-1 task-1] M-34ZYJnTTmgRhgugU6g4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.043 [XNIO-1 task-1] M-34ZYJnTTmgRhgugU6g4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.053 [XNIO-1 task-1] 21P3g5CtR8idMhN67EvXsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.054 [XNIO-1 task-1] 21P3g5CtR8idMhN67EvXsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.054 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cae72da5 +08:11:52.054 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cae72da5 +08:11:52.065 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cae72da5 +08:11:52.072 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cae72da5 +08:11:52.073 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cae72da5 +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, requestBody) +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, requestBody) +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2d07deb-faec-47e5-940c-ec9585ef", {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, requestBody.lastName) +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG com.networknt.schema.FormatValidator debug - validate( "f2cffac7-db2d-4db4-b12e-e2b2cf198df6", {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, requestBody.password) +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, requestBody.userType) +08:11:52.074 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, requestBody) +08:11:52.075 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, {"userId":"367e47c4","userType":"admin","firstName":"908d7e68-0a7f-4324-9081-dce695f4","lastName":"f2d07deb-faec-47e5-940c-ec9585ef","email":"0954a839-498f-43fc-b7c4-e69beafdf4a9","password":"f2cffac7-db2d-4db4-b12e-e2b2cf198df6"}, requestBody) +08:11:52.075 [XNIO-1 task-1] kvU7eMf1Rlusdv8VzEB5MA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password f2cffac7-db2d-4db4-b12e-e2b2cf198df6 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:52.078 [XNIO-1 task-1] Tg1wHeTdTY61nH_RSJXxNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.078 [XNIO-1 task-1] Tg1wHeTdTY61nH_RSJXxNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.078 [XNIO-1 task-1] Tg1wHeTdTY61nH_RSJXxNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.081 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cae72da5 +08:11:52.090 [XNIO-1 task-1] vYZ2U9dDQPS3yOapdIhjAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.090 [XNIO-1 task-1] vYZ2U9dDQPS3yOapdIhjAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.090 [XNIO-1 task-1] vYZ2U9dDQPS3yOapdIhjAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.095 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a55a878f-2335-4977-a1d7-6758beb29d2e +08:11:52.097 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a55a878f-2335-4977-a1d7-6758beb29d2e +08:11:52.103 [XNIO-1 task-1] zhzwyPnjS0SO4ej-Fs9inQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.103 [XNIO-1 task-1] zhzwyPnjS0SO4ej-Fs9inQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.103 [XNIO-1 task-1] zhzwyPnjS0SO4ej-Fs9inQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.117 [XNIO-1 task-1] 5QT4vgC_RcukOZFqEJnEYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.117 [XNIO-1 task-1] 5QT4vgC_RcukOZFqEJnEYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.117 [XNIO-1 task-1] 5QT4vgC_RcukOZFqEJnEYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ce8dd55d +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ce8dd55d +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"49f57d77-d140-4a9a-b5c1-0a16cef6dc4c","newPassword":"4eeccb8e-3789-4d59-8a68-5efcc53545db","newPasswordConfirm":"4eeccb8e-3789-4d59-8a68-5efcc53545db"}, {"password":"49f57d77-d140-4a9a-b5c1-0a16cef6dc4c","newPassword":"4eeccb8e-3789-4d59-8a68-5efcc53545db","newPasswordConfirm":"4eeccb8e-3789-4d59-8a68-5efcc53545db"}, requestBody) +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"49f57d77-d140-4a9a-b5c1-0a16cef6dc4c","newPassword":"4eeccb8e-3789-4d59-8a68-5efcc53545db","newPasswordConfirm":"4eeccb8e-3789-4d59-8a68-5efcc53545db"}, {"password":"49f57d77-d140-4a9a-b5c1-0a16cef6dc4c","newPassword":"4eeccb8e-3789-4d59-8a68-5efcc53545db","newPasswordConfirm":"4eeccb8e-3789-4d59-8a68-5efcc53545db"}, requestBody) +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG com.networknt.schema.FormatValidator debug - validate( "4eeccb8e-3789-4d59-8a68-5efcc53545db", {"password":"49f57d77-d140-4a9a-b5c1-0a16cef6dc4c","newPassword":"4eeccb8e-3789-4d59-8a68-5efcc53545db","newPasswordConfirm":"4eeccb8e-3789-4d59-8a68-5efcc53545db"}, requestBody.newPasswordConfirm) +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG com.networknt.schema.FormatValidator debug - validate( "49f57d77-d140-4a9a-b5c1-0a16cef6dc4c", {"password":"49f57d77-d140-4a9a-b5c1-0a16cef6dc4c","newPassword":"4eeccb8e-3789-4d59-8a68-5efcc53545db","newPasswordConfirm":"4eeccb8e-3789-4d59-8a68-5efcc53545db"}, requestBody.password) +08:11:52.129 [XNIO-1 task-1] upSvRppCRs2duBsInSzcwg DEBUG com.networknt.schema.FormatValidator debug - validate( "4eeccb8e-3789-4d59-8a68-5efcc53545db", {"password":"49f57d77-d140-4a9a-b5c1-0a16cef6dc4c","newPassword":"4eeccb8e-3789-4d59-8a68-5efcc53545db","newPasswordConfirm":"4eeccb8e-3789-4d59-8a68-5efcc53545db"}, requestBody.newPassword) +08:11:52.152 [XNIO-1 task-1] LWQip7kmQdmUNYQv4Eu6DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6860e286 +08:11:52.152 [XNIO-1 task-1] LWQip7kmQdmUNYQv4Eu6DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.152 [XNIO-1 task-1] LWQip7kmQdmUNYQv4Eu6DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.152 [XNIO-1 task-1] LWQip7kmQdmUNYQv4Eu6DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6860e286 +08:11:52.157 [XNIO-1 task-1] mMOcB0bqRBeeYGy2bIm3vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ce8dd55d, base path is set to: null +08:11:52.157 [XNIO-1 task-1] mMOcB0bqRBeeYGy2bIm3vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.157 [XNIO-1 task-1] mMOcB0bqRBeeYGy2bIm3vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.158 [XNIO-1 task-1] mMOcB0bqRBeeYGy2bIm3vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ce8dd55d, base path is set to: null +08:11:52.158 [XNIO-1 task-1] mMOcB0bqRBeeYGy2bIm3vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ce8dd55d", "ce8dd55d", userId) +08:11:52.166 [XNIO-1 task-1] a99GNihUQVGNYgpYEcgjEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.167 [XNIO-1 task-1] a99GNihUQVGNYgpYEcgjEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.167 [XNIO-1 task-1] a99GNihUQVGNYgpYEcgjEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.172 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5139fa6d +08:11:52.180 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.180 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.181 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.181 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, requestBody) +08:11:52.182 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, requestBody) +08:11:52.182 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG com.networknt.schema.TypeValidator debug - validate( "c791ddbf-4d1c-4efa-95a4-56d08cb7", {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, requestBody.lastName) +08:11:52.182 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG com.networknt.schema.FormatValidator debug - validate( "940a0248-7459-4fcd-950b-20cb04745048", {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, requestBody.password) +08:11:52.182 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, requestBody.userType) +08:11:52.182 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, requestBody) +08:11:52.182 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, {"userId":"0593e5dd","userType":"admin","firstName":"96ba4022-037a-4672-983c-34bc5726","lastName":"c791ddbf-4d1c-4efa-95a4-56d08cb7","email":"b4109d8a-7c44-4eb9-9077-a4d6ce7b1db7","password":"940a0248-7459-4fcd-950b-20cb04745048"}, requestBody) +08:11:52.183 [XNIO-1 task-1] hlG5kbOrQHiIk4BwExl2xA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 940a0248-7459-4fcd-950b-20cb04745048 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:52.189 [XNIO-1 task-1] KfLaglj4SjiBlzp4YM01bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4d6fb680 +08:11:52.189 [XNIO-1 task-1] KfLaglj4SjiBlzp4YM01bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.189 [XNIO-1 task-1] KfLaglj4SjiBlzp4YM01bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.189 [XNIO-1 task-1] KfLaglj4SjiBlzp4YM01bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4d6fb680 +08:11:52.191 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b4cdad47-d841-4eb0-9b3a-2b8dceaa0dc7 +08:11:52.193 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b4cdad47-d841-4eb0-9b3a-2b8dceaa0dc7 +08:11:52.204 [XNIO-1 task-1] nRxJlyTaSnClL9NDVhP86w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.204 [XNIO-1 task-1] nRxJlyTaSnClL9NDVhP86w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.204 [XNIO-1 task-1] nRxJlyTaSnClL9NDVhP86w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.211 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ed1ee355 +08:11:52.220 [XNIO-1 task-1] OTt3L9WtT3Sc6YTK07QTpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ed1ee355, base path is set to: null +08:11:52.220 [XNIO-1 task-1] OTt3L9WtT3Sc6YTK07QTpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.221 [XNIO-1 task-1] OTt3L9WtT3Sc6YTK07QTpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.221 [XNIO-1 task-1] OTt3L9WtT3Sc6YTK07QTpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ed1ee355, base path is set to: null +08:11:52.222 [XNIO-1 task-1] OTt3L9WtT3Sc6YTK07QTpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed1ee355", "ed1ee355", userId) +08:11:52.227 [XNIO-1 task-1] 400PuIa0RqqurbJE5Q4aXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.228 [XNIO-1 task-1] 400PuIa0RqqurbJE5Q4aXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.228 [XNIO-1 task-1] 400PuIa0RqqurbJE5Q4aXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.234 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49c42c1a +08:11:52.235 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49c42c1a +08:11:52.242 [XNIO-1 task-1] amT-haJVSHueZry6UqPlPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/49c42c1a +08:11:52.242 [XNIO-1 task-1] amT-haJVSHueZry6UqPlPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.242 [XNIO-1 task-1] amT-haJVSHueZry6UqPlPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.242 [XNIO-1 task-1] amT-haJVSHueZry6UqPlPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/49c42c1a +08:11:52.243 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:49c42c1a +08:11:52.256 [XNIO-1 task-1] V2HOSB8KRUics48Btz5e1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.257 [XNIO-1 task-1] V2HOSB8KRUics48Btz5e1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.257 [XNIO-1 task-1] V2HOSB8KRUics48Btz5e1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.284 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1850c701, base path is set to: null +08:11:52.284 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1850c701, base path is set to: null +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1850c701", "1850c701", userId) +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"858f18ea-31fb-4477-8b09-09f14ef39fbf","newPassword":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPasswordConfirm":"cffec468-a1ed-46fd-b11b-c48bd264a942"}, {"password":"858f18ea-31fb-4477-8b09-09f14ef39fbf","newPassword":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPasswordConfirm":"cffec468-a1ed-46fd-b11b-c48bd264a942"}, requestBody) +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cffec468-a1ed-46fd-b11b-c48bd264a942", {"password":"858f18ea-31fb-4477-8b09-09f14ef39fbf","newPassword":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPasswordConfirm":"cffec468-a1ed-46fd-b11b-c48bd264a942"}, requestBody.newPasswordConfirm) +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "858f18ea-31fb-4477-8b09-09f14ef39fbf", {"password":"858f18ea-31fb-4477-8b09-09f14ef39fbf","newPassword":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPasswordConfirm":"cffec468-a1ed-46fd-b11b-c48bd264a942"}, requestBody.password) +08:11:52.285 [XNIO-1 task-1] qF9I2VlgSamecd1NxtxSsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cffec468-a1ed-46fd-b11b-c48bd264a942", {"password":"858f18ea-31fb-4477-8b09-09f14ef39fbf","newPassword":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPasswordConfirm":"cffec468-a1ed-46fd-b11b-c48bd264a942"}, requestBody.newPassword) +08:11:52.290 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5139fa6d +08:11:52.304 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1850c701, base path is set to: null +08:11:52.304 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.304 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.304 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:52.305 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1850c701, base path is set to: null +08:11:52.305 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1850c701", "1850c701", userId) +08:11:52.305 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPassword":"6bc71d49-b661-4565-8320-635dc6d6811d","newPasswordConfirm":"6bc71d49-b661-4565-8320-635dc6d6811d"}, {"password":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPassword":"6bc71d49-b661-4565-8320-635dc6d6811d","newPasswordConfirm":"6bc71d49-b661-4565-8320-635dc6d6811d"}, requestBody) +08:11:52.305 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG com.networknt.schema.TypeValidator debug - validate( "6bc71d49-b661-4565-8320-635dc6d6811d", {"password":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPassword":"6bc71d49-b661-4565-8320-635dc6d6811d","newPasswordConfirm":"6bc71d49-b661-4565-8320-635dc6d6811d"}, requestBody.newPasswordConfirm) +08:11:52.305 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG com.networknt.schema.TypeValidator debug - validate( "cffec468-a1ed-46fd-b11b-c48bd264a942", {"password":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPassword":"6bc71d49-b661-4565-8320-635dc6d6811d","newPasswordConfirm":"6bc71d49-b661-4565-8320-635dc6d6811d"}, requestBody.password) +08:11:52.305 [XNIO-1 task-1] iZe-GwK0T46a6HAlFb4MTw DEBUG com.networknt.schema.TypeValidator debug - validate( "6bc71d49-b661-4565-8320-635dc6d6811d", {"password":"cffec468-a1ed-46fd-b11b-c48bd264a942","newPassword":"6bc71d49-b661-4565-8320-635dc6d6811d","newPasswordConfirm":"6bc71d49-b661-4565-8320-635dc6d6811d"}, requestBody.newPassword) +08:11:52.309 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c37236fb +08:11:52.310 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c37236fb +08:11:52.321 [XNIO-1 task-1] B6yxYvEiTMGttVujEYzxPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.321 [XNIO-1 task-1] B6yxYvEiTMGttVujEYzxPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.321 [XNIO-1 task-1] B6yxYvEiTMGttVujEYzxPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.333 [XNIO-1 task-1] OIQVMVt9SHKkXNjaOEGtpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1850c701 +08:11:52.333 [XNIO-1 task-1] OIQVMVt9SHKkXNjaOEGtpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.333 [XNIO-1 task-1] OIQVMVt9SHKkXNjaOEGtpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.334 [XNIO-1 task-1] OIQVMVt9SHKkXNjaOEGtpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1850c701 +08:11:52.341 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1850c701, base path is set to: null +08:11:52.341 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.341 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.341 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:52.341 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1850c701, base path is set to: null +08:11:52.342 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1850c701", "1850c701", userId) +08:11:52.342 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6bc71d49-b661-4565-8320-635dc6d6811d","newPassword":"22d2bc9c-14ed-437b-8111-7020add9c2ec","newPasswordConfirm":"22d2bc9c-14ed-437b-8111-7020add9c2ec"}, {"password":"6bc71d49-b661-4565-8320-635dc6d6811d","newPassword":"22d2bc9c-14ed-437b-8111-7020add9c2ec","newPasswordConfirm":"22d2bc9c-14ed-437b-8111-7020add9c2ec"}, requestBody) +08:11:52.342 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG com.networknt.schema.TypeValidator debug - validate( "22d2bc9c-14ed-437b-8111-7020add9c2ec", {"password":"6bc71d49-b661-4565-8320-635dc6d6811d","newPassword":"22d2bc9c-14ed-437b-8111-7020add9c2ec","newPasswordConfirm":"22d2bc9c-14ed-437b-8111-7020add9c2ec"}, requestBody.newPasswordConfirm) +08:11:52.342 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG com.networknt.schema.TypeValidator debug - validate( "6bc71d49-b661-4565-8320-635dc6d6811d", {"password":"6bc71d49-b661-4565-8320-635dc6d6811d","newPassword":"22d2bc9c-14ed-437b-8111-7020add9c2ec","newPasswordConfirm":"22d2bc9c-14ed-437b-8111-7020add9c2ec"}, requestBody.password) +08:11:52.342 [XNIO-1 task-1] xC_fFeD2T4-bl1jGhHcT_A DEBUG com.networknt.schema.TypeValidator debug - validate( "22d2bc9c-14ed-437b-8111-7020add9c2ec", {"password":"6bc71d49-b661-4565-8320-635dc6d6811d","newPassword":"22d2bc9c-14ed-437b-8111-7020add9c2ec","newPasswordConfirm":"22d2bc9c-14ed-437b-8111-7020add9c2ec"}, requestBody.newPassword) +08:11:52.347 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c37236fb +08:11:52.362 [XNIO-1 task-1] Gffg09Q5T1O2_6KaudAbXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1850c701, base path is set to: null +08:11:52.362 [XNIO-1 task-1] Gffg09Q5T1O2_6KaudAbXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.362 [XNIO-1 task-1] Gffg09Q5T1O2_6KaudAbXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.362 [XNIO-1 task-1] Gffg09Q5T1O2_6KaudAbXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1850c701, base path is set to: null +08:11:52.363 [XNIO-1 task-1] Gffg09Q5T1O2_6KaudAbXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1850c701", "1850c701", userId) +08:11:52.369 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.369 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.370 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.370 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, requestBody) +08:11:52.370 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8e83603-f47f-451e-b7c4-b67a220b", {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, requestBody.firstName) +08:11:52.370 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG com.networknt.schema.TypeValidator debug - validate( "75c77528-9bd5-44e0-991d-b5793c893ac5", {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, requestBody.password) +08:11:52.370 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, requestBody) +08:11:52.371 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, requestBody.userType) +08:11:52.371 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG com.networknt.schema.TypeValidator debug - validate( "feb15603", {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, requestBody.userId) +08:11:52.371 [XNIO-1 task-1] lJeXjBhHR1WABok5Y-Inxg DEBUG com.networknt.schema.TypeValidator debug - validate( "df9845a3-afc5-48a0-b1c5-ee800cb455ec", {"userId":"feb15603","userType":"admin","firstName":"f8e83603-f47f-451e-b7c4-b67a220b","lastName":"d498b45b-8c9b-4ea1-a3a6-45581181","email":"df9845a3-afc5-48a0-b1c5-ee800cb455ec","password":"75c77528-9bd5-44e0-991d-b5793c893ac5"}, requestBody.email) +08:11:52.375 [XNIO-1 task-1] GoAq7ZFTRUuxE1Rt-1qPcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.375 [XNIO-1 task-1] GoAq7ZFTRUuxE1Rt-1qPcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.375 [XNIO-1 task-1] GoAq7ZFTRUuxE1Rt-1qPcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.375 [XNIO-1 task-1] GoAq7ZFTRUuxE1Rt-1qPcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.378 [XNIO-1 task-1] 2ihD2f_zRLa-sLmv5DzLSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.378 [XNIO-1 task-1] 2ihD2f_zRLa-sLmv5DzLSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.378 [XNIO-1 task-1] 2ihD2f_zRLa-sLmv5DzLSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.379 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:43ff7feb-8286-4007-a2ce-1049beeb3f4d +08:11:52.384 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8421642f +08:11:52.384 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8421642f +08:11:52.393 [XNIO-1 task-1] EQKNvfyxTyanKdzk4O5E4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.393 [XNIO-1 task-1] EQKNvfyxTyanKdzk4O5E4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.393 [XNIO-1 task-1] EQKNvfyxTyanKdzk4O5E4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.420 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/88f7076c +08:11:52.420 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.420 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.420 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:52.421 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/88f7076c +08:11:52.421 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"dc01dc85-1513-4ffc-8b55-db7b67359bca","newPassword":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPasswordConfirm":"dedae829-cd8c-4e30-ad03-e7448d6870c6"}, {"password":"dc01dc85-1513-4ffc-8b55-db7b67359bca","newPassword":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPasswordConfirm":"dedae829-cd8c-4e30-ad03-e7448d6870c6"}, requestBody) +08:11:52.421 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"dc01dc85-1513-4ffc-8b55-db7b67359bca","newPassword":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPasswordConfirm":"dedae829-cd8c-4e30-ad03-e7448d6870c6"}, {"password":"dc01dc85-1513-4ffc-8b55-db7b67359bca","newPassword":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPasswordConfirm":"dedae829-cd8c-4e30-ad03-e7448d6870c6"}, requestBody) +08:11:52.421 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "dedae829-cd8c-4e30-ad03-e7448d6870c6", {"password":"dc01dc85-1513-4ffc-8b55-db7b67359bca","newPassword":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPasswordConfirm":"dedae829-cd8c-4e30-ad03-e7448d6870c6"}, requestBody.newPasswordConfirm) +08:11:52.421 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "dc01dc85-1513-4ffc-8b55-db7b67359bca", {"password":"dc01dc85-1513-4ffc-8b55-db7b67359bca","newPassword":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPasswordConfirm":"dedae829-cd8c-4e30-ad03-e7448d6870c6"}, requestBody.password) +08:11:52.421 [XNIO-1 task-1] bgmDadFURL2EB9Q9P70MkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "dedae829-cd8c-4e30-ad03-e7448d6870c6", {"password":"dc01dc85-1513-4ffc-8b55-db7b67359bca","newPassword":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPasswordConfirm":"dedae829-cd8c-4e30-ad03-e7448d6870c6"}, requestBody.newPassword) +08:11:52.442 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.442 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, requestBody) +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG com.networknt.schema.TypeValidator debug - validate( "fb4e784b-87d0-4930-b27f-3e23346f", {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, requestBody.firstName) +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG com.networknt.schema.TypeValidator debug - validate( "a30b9069-63d0-41e3-acc1-84982f3e591e", {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, requestBody.password) +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, requestBody) +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, requestBody.userType) +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG com.networknt.schema.TypeValidator debug - validate( "7b027d05", {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, requestBody.userId) +08:11:52.443 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w DEBUG com.networknt.schema.TypeValidator debug - validate( "c4031f20-9971-4e3f-9307-a7eaaf23ef2c", {"userId":"7b027d05","userType":"admin","firstName":"fb4e784b-87d0-4930-b27f-3e23346f","lastName":"c9a46a3b-e4dc-4246-ba50-fdba00a7","email":"c4031f20-9971-4e3f-9307-a7eaaf23ef2c","password":"a30b9069-63d0-41e3-acc1-84982f3e591e"}, requestBody.email) +08:11:52.444 [XNIO-1 task-1] FZwgxHKFQ9yAt-UFEZ9k0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password a30b9069-63d0-41e3-acc1-84982f3e591e or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:52.447 [XNIO-1 task-1] WaodMtyiTpmHF9Tr4Og09A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.447 [XNIO-1 task-1] WaodMtyiTpmHF9Tr4Og09A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.447 [XNIO-1 task-1] WaodMtyiTpmHF9Tr4Og09A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:52.448 [XNIO-1 task-1] WaodMtyiTpmHF9Tr4Og09A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.448 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8421642f +08:11:52.456 [XNIO-1 task-1] ELquU1PaT8-8Tjby1P_HwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.456 [XNIO-1 task-1] ELquU1PaT8-8Tjby1P_HwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +08:11:52.456 [XNIO-1 task-1] ELquU1PaT8-8Tjby1P_HwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +08:11:52.458 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:61d5a3d2-602e-4a92-a40b-eec834cc058e +08:11:52.458 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8421642f + ... 14 more + +Jun 29, 2024 8:11:52 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +08:11:52.468 [XNIO-1 task-1] D7ziH_1kTSiXiZ5xZ1bMcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.468 [XNIO-1 task-1] D7ziH_1kTSiXiZ5xZ1bMcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.468 [XNIO-1 task-1] D7ziH_1kTSiXiZ5xZ1bMcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.468 [XNIO-1 task-1] D7ziH_1kTSiXiZ5xZ1bMcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.hazelcast.spi.Operation.call(Operation.java:170) +08:11:52.468 [XNIO-1 task-1] D7ziH_1kTSiXiZ5xZ1bMcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/88f7076c, base path is set to: null +08:11:52.468 [XNIO-1 task-1] D7ziH_1kTSiXiZ5xZ1bMcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/88f7076c +08:11:52.468 [XNIO-1 task-1] D7ziH_1kTSiXiZ5xZ1bMcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88f7076c", "88f7076c", userId) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/88f7076c, base path is set to: null +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/88f7076c, base path is set to: null +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "88f7076c", "88f7076c", userId) +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPassword":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec","newPasswordConfirm":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec"}, {"password":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPassword":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec","newPasswordConfirm":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec"}, requestBody) +08:11:52.473 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f3e4ee19-d232-4509-a0ac-557b9ae2e9ec", {"password":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPassword":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec","newPasswordConfirm":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec"}, requestBody.newPasswordConfirm) +08:11:52.474 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "dedae829-cd8c-4e30-ad03-e7448d6870c6", {"password":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPassword":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec","newPasswordConfirm":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec"}, requestBody.password) +08:11:52.474 [XNIO-1 task-1] wbWUoeKUTt-fVluxGJzh6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f3e4ee19-d232-4509-a0ac-557b9ae2e9ec", {"password":"dedae829-cd8c-4e30-ad03-e7448d6870c6","newPassword":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec","newPasswordConfirm":"f3e4ee19-d232-4509-a0ac-557b9ae2e9ec"}, requestBody.newPassword) +08:11:52.475 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:61d5a3d2-602e-4a92-a40b-eec834cc058e +08:11:52.481 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:52.498 [XNIO-1 task-1] nRki_0ITSKO4-bvmVYOABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/88f7076c +08:11:52.498 [XNIO-1 task-1] nRki_0ITSKO4-bvmVYOABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.498 [XNIO-1 task-1] nRki_0ITSKO4-bvmVYOABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.499 [XNIO-1 task-1] nRki_0ITSKO4-bvmVYOABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/88f7076c +08:11:52.502 [XNIO-1 task-1] y480dPytTDKoSe6ZGLxNGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.502 [XNIO-1 task-1] y480dPytTDKoSe6ZGLxNGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.503 [XNIO-1 task-1] y480dPytTDKoSe6ZGLxNGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.513 [XNIO-1 task-1] 76WlnLSuQgmeGlcaqMirXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.513 [XNIO-1 task-1] 76WlnLSuQgmeGlcaqMirXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.514 [XNIO-1 task-1] 76WlnLSuQgmeGlcaqMirXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.521 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8421642f, base path is set to: null +08:11:52.522 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.522 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.522 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:52.522 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8421642f, base path is set to: null +08:11:52.523 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "8421642f", "8421642f", userId) +08:11:52.523 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"38bca150-26f5-4237-a1ca-95655077f556","newPassword":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPasswordConfirm":"43927b67-cf78-4b69-b2d9-508b9c6a1c42"}, {"password":"38bca150-26f5-4237-a1ca-95655077f556","newPassword":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPasswordConfirm":"43927b67-cf78-4b69-b2d9-508b9c6a1c42"}, requestBody) +08:11:52.523 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "43927b67-cf78-4b69-b2d9-508b9c6a1c42", {"password":"38bca150-26f5-4237-a1ca-95655077f556","newPassword":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPasswordConfirm":"43927b67-cf78-4b69-b2d9-508b9c6a1c42"}, requestBody.newPasswordConfirm) +08:11:52.523 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "38bca150-26f5-4237-a1ca-95655077f556", {"password":"38bca150-26f5-4237-a1ca-95655077f556","newPassword":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPasswordConfirm":"43927b67-cf78-4b69-b2d9-508b9c6a1c42"}, requestBody.password) +08:11:52.523 [XNIO-1 task-1] ep1fWLnwTYqzqfuYme57Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "43927b67-cf78-4b69-b2d9-508b9c6a1c42", {"password":"38bca150-26f5-4237-a1ca-95655077f556","newPassword":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPasswordConfirm":"43927b67-cf78-4b69-b2d9-508b9c6a1c42"}, requestBody.newPassword) +08:11:52.529 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:765433f9 +08:11:52.530 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:765433f9 +08:11:52.534 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8421642f +08:11:52.538 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e2512a3d +08:11:52.541 [XNIO-1 task-1] VWQFIiAgQuK8-TdMQuvdFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.542 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:64c38d06-fabd-4d41-be3e-b8814f9cdfd7 +08:11:52.542 [XNIO-1 task-1] VWQFIiAgQuK8-TdMQuvdFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.542 [XNIO-1 task-1] VWQFIiAgQuK8-TdMQuvdFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.542 [XNIO-1 task-1] VWQFIiAgQuK8-TdMQuvdFw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.552 [XNIO-1 task-1] 0DXBR5uGQpafaUDk7ebEVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.552 [XNIO-1 task-1] 0DXBR5uGQpafaUDk7ebEVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.552 [XNIO-1 task-1] 0DXBR5uGQpafaUDk7ebEVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.560 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6c13180f +08:11:52.560 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6c13180f +08:11:52.571 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8421642f +Jun 29, 2024 8:11:52 AM com.hazelcast.map.impl.operation.DeleteOperation +08:11:52.571 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +08:11:52.571 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:52.571 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:52.571 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8421642f, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +08:11:52.572 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG com.networknt.schema.TypeValidator debug - validate( "208e792e-d1eb-4f1a-9af2-010f4e069bf4", {"password":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPassword":"208e792e-d1eb-4f1a-9af2-010f4e069bf4","newPasswordConfirm":"208e792e-d1eb-4f1a-9af2-010f4e069bf4"}, requestBody.newPasswordConfirm) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +08:11:52.572 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG com.networknt.schema.TypeValidator debug - validate( "43927b67-cf78-4b69-b2d9-508b9c6a1c42", {"password":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPassword":"208e792e-d1eb-4f1a-9af2-010f4e069bf4","newPasswordConfirm":"208e792e-d1eb-4f1a-9af2-010f4e069bf4"}, requestBody.password) +08:11:52.572 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG com.networknt.schema.FormatValidator debug - validate( "43927b67-cf78-4b69-b2d9-508b9c6a1c42", {"password":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPassword":"208e792e-d1eb-4f1a-9af2-010f4e069bf4","newPasswordConfirm":"208e792e-d1eb-4f1a-9af2-010f4e069bf4"}, requestBody.password) +08:11:52.572 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG com.networknt.schema.TypeValidator debug - validate( "208e792e-d1eb-4f1a-9af2-010f4e069bf4", {"password":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPassword":"208e792e-d1eb-4f1a-9af2-010f4e069bf4","newPasswordConfirm":"208e792e-d1eb-4f1a-9af2-010f4e069bf4"}, requestBody.newPassword) +08:11:52.572 [XNIO-1 task-1] 8bBba9p1QFWOdY7xHjIojg DEBUG com.networknt.schema.FormatValidator debug - validate( "208e792e-d1eb-4f1a-9af2-010f4e069bf4", {"password":"43927b67-cf78-4b69-b2d9-508b9c6a1c42","newPassword":"208e792e-d1eb-4f1a-9af2-010f4e069bf4","newPasswordConfirm":"208e792e-d1eb-4f1a-9af2-010f4e069bf4"}, requestBody.newPassword) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +08:11:52.589 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e2512a3d +08:11:52.589 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e2512a3d +08:11:52.591 [XNIO-1 task-1] E0ikfNAYSeWeLD_Uni2VJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.591 [XNIO-1 task-1] E0ikfNAYSeWeLD_Uni2VJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +08:11:52.591 [XNIO-1 task-1] E0ikfNAYSeWeLD_Uni2VJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.592 [XNIO-1 task-1] E0ikfNAYSeWeLD_Uni2VJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.606 [XNIO-1 task-1] KdYRjR3cRKGg8Ga1xdlIow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.606 [XNIO-1 task-1] KdYRjR3cRKGg8Ga1xdlIow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.606 [XNIO-1 task-1] KdYRjR3cRKGg8Ga1xdlIow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.606 [XNIO-1 task-1] KdYRjR3cRKGg8Ga1xdlIow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + ... 14 more + +08:11:52.607 [XNIO-1 task-1] KdYRjR3cRKGg8Ga1xdlIow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.613 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4f8b91f1-e939-4427-b66c-e3d902c0a51e +08:11:52.614 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0395bf97-9276-4a8f-994c-5af7aa370328 +08:11:52.614 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0395bf97-9276-4a8f-994c-5af7aa370328 +08:11:52.615 [XNIO-1 task-1] AmSfhV5STGuxLkkjYNiX_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8421642f +08:11:52.615 [XNIO-1 task-1] AmSfhV5STGuxLkkjYNiX_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.615 [XNIO-1 task-1] AmSfhV5STGuxLkkjYNiX_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.615 [XNIO-1 task-1] AmSfhV5STGuxLkkjYNiX_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8421642f +08:11:52.615 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:8421642f +08:11:52.625 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/346a77af +08:11:52.625 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.625 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.625 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:52.626 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/346a77af +08:11:52.626 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b665e12f-523b-471a-9413-4f80dc8b9847","newPassword":"ea37ac4e-976f-44cd-8e12-a91df80eb90d","newPasswordConfirm":"ea37ac4e-976f-44cd-8e12-a91df80eb90d"}, {"password":"b665e12f-523b-471a-9413-4f80dc8b9847","newPassword":"ea37ac4e-976f-44cd-8e12-a91df80eb90d","newPasswordConfirm":"ea37ac4e-976f-44cd-8e12-a91df80eb90d"}, requestBody) +08:11:52.626 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b665e12f-523b-471a-9413-4f80dc8b9847","newPassword":"ea37ac4e-976f-44cd-8e12-a91df80eb90d","newPasswordConfirm":"ea37ac4e-976f-44cd-8e12-a91df80eb90d"}, {"password":"b665e12f-523b-471a-9413-4f80dc8b9847","newPassword":"ea37ac4e-976f-44cd-8e12-a91df80eb90d","newPasswordConfirm":"ea37ac4e-976f-44cd-8e12-a91df80eb90d"}, requestBody) +08:11:52.626 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG com.networknt.schema.FormatValidator debug - validate( "ea37ac4e-976f-44cd-8e12-a91df80eb90d", {"password":"b665e12f-523b-471a-9413-4f80dc8b9847","newPassword":"ea37ac4e-976f-44cd-8e12-a91df80eb90d","newPasswordConfirm":"ea37ac4e-976f-44cd-8e12-a91df80eb90d"}, requestBody.newPasswordConfirm) +08:11:52.626 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG com.networknt.schema.FormatValidator debug - validate( "b665e12f-523b-471a-9413-4f80dc8b9847", {"password":"b665e12f-523b-471a-9413-4f80dc8b9847","newPassword":"ea37ac4e-976f-44cd-8e12-a91df80eb90d","newPasswordConfirm":"ea37ac4e-976f-44cd-8e12-a91df80eb90d"}, requestBody.password) +08:11:52.626 [XNIO-1 task-1] 87PkNw8RTJuPHWF2tjVFzA DEBUG com.networknt.schema.FormatValidator debug - validate( "ea37ac4e-976f-44cd-8e12-a91df80eb90d", {"password":"b665e12f-523b-471a-9413-4f80dc8b9847","newPassword":"ea37ac4e-976f-44cd-8e12-a91df80eb90d","newPasswordConfirm":"ea37ac4e-976f-44cd-8e12-a91df80eb90d"}, requestBody.newPassword) +08:11:52.641 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3d0d2f23-2618-4100-8dc0-28749172e296 +08:11:52.651 [XNIO-1 task-1] Ab--8LtISPeHvVAJteLUaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/346a77af +08:11:52.651 [XNIO-1 task-1] Ab--8LtISPeHvVAJteLUaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.651 [XNIO-1 task-1] Ab--8LtISPeHvVAJteLUaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.651 [XNIO-1 task-1] Ab--8LtISPeHvVAJteLUaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/346a77af +08:11:52.655 [XNIO-1 task-1] ei7HdM87TOCpyvtmccoPEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.655 [XNIO-1 task-1] ei7HdM87TOCpyvtmccoPEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.656 [XNIO-1 task-1] ei7HdM87TOCpyvtmccoPEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.658 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e2512a3d +08:11:52.668 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:765433f9 +08:11:52.670 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.671 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.671 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.672 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, requestBody) +08:11:52.672 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, requestBody) +08:11:52.672 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG com.networknt.schema.TypeValidator debug - validate( "74da6225-f879-4fb6-8abf-72344456", {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, requestBody.lastName) +08:11:52.672 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG com.networknt.schema.FormatValidator debug - validate( "8e664e89-4c9a-4c3b-aafe-36d754e6da86", {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, requestBody.password) +08:11:52.672 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, requestBody.userType) +08:11:52.672 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, requestBody) +08:11:52.672 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, {"userId":"0a1260e5","userType":"admin","firstName":"37032b26-b017-4267-9459-7808b476","lastName":"74da6225-f879-4fb6-8abf-72344456","email":"d200d747-70a6-48cf-805d-e60576795f6e","password":"8e664e89-4c9a-4c3b-aafe-36d754e6da86"}, requestBody) +08:11:52.676 [XNIO-1 task-1] IjaoevEkTR6SV69ZXHJUpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 8e664e89-4c9a-4c3b-aafe-36d754e6da86 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:52.682 [XNIO-1 task-1] NpSw1CEkQcGZPdtL3WJbLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.682 [XNIO-1 task-1] NpSw1CEkQcGZPdtL3WJbLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.682 [XNIO-1 task-1] NpSw1CEkQcGZPdtL3WJbLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.690 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/14bd6964 +08:11:52.690 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.690 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.691 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +08:11:52.691 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/14bd6964 +08:11:52.691 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"32406d7a-44ea-4f2f-85ca-81b946488c1f","newPassword":"05965f03-e098-4e7c-bd74-2560e25f99df","newPasswordConfirm":"05965f03-e098-4e7c-bd74-2560e25f99df"}, {"password":"32406d7a-44ea-4f2f-85ca-81b946488c1f","newPassword":"05965f03-e098-4e7c-bd74-2560e25f99df","newPasswordConfirm":"05965f03-e098-4e7c-bd74-2560e25f99df"}, requestBody) +08:11:52.691 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"32406d7a-44ea-4f2f-85ca-81b946488c1f","newPassword":"05965f03-e098-4e7c-bd74-2560e25f99df","newPasswordConfirm":"05965f03-e098-4e7c-bd74-2560e25f99df"}, {"password":"32406d7a-44ea-4f2f-85ca-81b946488c1f","newPassword":"05965f03-e098-4e7c-bd74-2560e25f99df","newPasswordConfirm":"05965f03-e098-4e7c-bd74-2560e25f99df"}, requestBody) +08:11:52.691 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG com.networknt.schema.FormatValidator debug - validate( "05965f03-e098-4e7c-bd74-2560e25f99df", {"password":"32406d7a-44ea-4f2f-85ca-81b946488c1f","newPassword":"05965f03-e098-4e7c-bd74-2560e25f99df","newPasswordConfirm":"05965f03-e098-4e7c-bd74-2560e25f99df"}, requestBody.newPasswordConfirm) +08:11:52.691 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG com.networknt.schema.FormatValidator debug - validate( "32406d7a-44ea-4f2f-85ca-81b946488c1f", {"password":"32406d7a-44ea-4f2f-85ca-81b946488c1f","newPassword":"05965f03-e098-4e7c-bd74-2560e25f99df","newPasswordConfirm":"05965f03-e098-4e7c-bd74-2560e25f99df"}, requestBody.password) +08:11:52.691 [XNIO-1 task-1] uEhoYofdShG1DAAPGGtBCw DEBUG com.networknt.schema.FormatValidator debug - validate( "05965f03-e098-4e7c-bd74-2560e25f99df", {"password":"32406d7a-44ea-4f2f-85ca-81b946488c1f","newPassword":"05965f03-e098-4e7c-bd74-2560e25f99df","newPasswordConfirm":"05965f03-e098-4e7c-bd74-2560e25f99df"}, requestBody.newPassword) +08:11:52.722 [XNIO-1 task-1] 2uhiPrzZS320GOZyonzBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/14bd6964 +08:11:52.722 [XNIO-1 task-1] 2uhiPrzZS320GOZyonzBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.722 [XNIO-1 task-1] 2uhiPrzZS320GOZyonzBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.722 [XNIO-1 task-1] 2uhiPrzZS320GOZyonzBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/14bd6964 +08:11:52.726 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b4cdad47-d841-4eb0-9b3a-2b8dceaa0dc7 +08:11:52.728 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.728 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.728 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.729 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, requestBody) +08:11:52.729 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG com.networknt.schema.TypeValidator debug - validate( "c77c40c5-e5a1-47a8-8fbc-079c4b35", {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, requestBody.firstName) +08:11:52.729 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG com.networknt.schema.TypeValidator debug - validate( "8907033c-196e-4397-8bd5-8d45d782e15c", {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, requestBody.password) +08:11:52.729 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, requestBody) +08:11:52.729 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, requestBody.userType) +08:11:52.729 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG com.networknt.schema.TypeValidator debug - validate( "13b67908", {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, requestBody.userId) +08:11:52.729 [XNIO-1 task-1] gUCvVElpTmqZ9rClnZGvjA DEBUG com.networknt.schema.TypeValidator debug - validate( "b71bbfc8-4434-4850-9920-0891f6f95ef7", {"userId":"13b67908","userType":"admin","firstName":"c77c40c5-e5a1-47a8-8fbc-079c4b35","lastName":"8081d6b8-4e53-46f8-8343-c0d2665d","email":"b71bbfc8-4434-4850-9920-0891f6f95ef7","password":"8907033c-196e-4397-8bd5-8d45d782e15c"}, requestBody.email) +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/14bd6964, base path is set to: null +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +08:11:52.732 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/14bd6964 +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"05965f03-e098-4e7c-bd74-2560e25f99df","newPassword":"7e54ccce-cd59-4d4e-8912-be56d2746c6a","newPasswordConfirm":"7e54ccce-cd59-4d4e-8912-be56d2746c6a"}, {"password":"05965f03-e098-4e7c-bd74-2560e25f99df","newPassword":"7e54ccce-cd59-4d4e-8912-be56d2746c6a","newPasswordConfirm":"7e54ccce-cd59-4d4e-8912-be56d2746c6a"}, requestBody) +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"05965f03-e098-4e7c-bd74-2560e25f99df","newPassword":"7e54ccce-cd59-4d4e-8912-be56d2746c6a","newPasswordConfirm":"7e54ccce-cd59-4d4e-8912-be56d2746c6a"}, {"password":"05965f03-e098-4e7c-bd74-2560e25f99df","newPassword":"7e54ccce-cd59-4d4e-8912-be56d2746c6a","newPasswordConfirm":"7e54ccce-cd59-4d4e-8912-be56d2746c6a"}, requestBody) +08:11:52.732 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG com.networknt.schema.FormatValidator debug - validate( "7e54ccce-cd59-4d4e-8912-be56d2746c6a", {"password":"05965f03-e098-4e7c-bd74-2560e25f99df","newPassword":"7e54ccce-cd59-4d4e-8912-be56d2746c6a","newPasswordConfirm":"7e54ccce-cd59-4d4e-8912-be56d2746c6a"}, requestBody.newPasswordConfirm) +08:11:52.733 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG com.networknt.schema.FormatValidator debug - validate( "05965f03-e098-4e7c-bd74-2560e25f99df", {"password":"05965f03-e098-4e7c-bd74-2560e25f99df","newPassword":"7e54ccce-cd59-4d4e-8912-be56d2746c6a","newPasswordConfirm":"7e54ccce-cd59-4d4e-8912-be56d2746c6a"}, requestBody.password) +08:11:52.733 [XNIO-1 task-1] ZHfHxqCSQeu02HLUUAGiiA DEBUG com.networknt.schema.FormatValidator debug - validate( "7e54ccce-cd59-4d4e-8912-be56d2746c6a", {"password":"05965f03-e098-4e7c-bd74-2560e25f99df","newPassword":"7e54ccce-cd59-4d4e-8912-be56d2746c6a","newPasswordConfirm":"7e54ccce-cd59-4d4e-8912-be56d2746c6a"}, requestBody.newPassword) +08:11:52.752 [XNIO-1 task-1] 8W1Kx8n8RA-L2i7HiVhDkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.752 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e0bec30e-af1c-45d8-affa-d7ab62d90ff0 +08:11:52.753 [XNIO-1 task-1] 8W1Kx8n8RA-L2i7HiVhDkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.754 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e0bec30e-af1c-45d8-affa-d7ab62d90ff0 +08:11:52.766 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.766 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.766 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.767 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, requestBody) +08:11:52.767 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, requestBody) +08:11:52.767 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG com.networknt.schema.TypeValidator debug - validate( "803c25b1-34c1-480b-a414-45bdf998", {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, requestBody.lastName) +08:11:52.767 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG com.networknt.schema.FormatValidator debug - validate( "1690304b-d684-4b5c-b07e-b5b348239788", {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, requestBody.password) +08:11:52.767 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, requestBody.userType) +08:11:52.767 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, requestBody) +08:11:52.767 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, {"userId":"4e6b2b64","userType":"admin","firstName":"6c4ab129-09f1-42b4-acc5-0b138ab7","lastName":"803c25b1-34c1-480b-a414-45bdf998","email":"99ca7dbc-81c1-4b58-b020-5b8836465896","password":"1690304b-d684-4b5c-b07e-b5b348239788"}, requestBody) +08:11:52.768 [XNIO-1 task-1] V1tChtRcS6u-fiV6JUW1vA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 1690304b-d684-4b5c-b07e-b5b348239788 or PasswordConfirm null is empty.","severity":"ERROR"} +08:11:52.774 [XNIO-1 task-1] 0Qcc0elkT7WYalDZvMHNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7e1671fa +08:11:52.774 [XNIO-1 task-1] 0Qcc0elkT7WYalDZvMHNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +08:11:52.774 [XNIO-1 task-1] 0Qcc0elkT7WYalDZvMHNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +08:11:52.774 [XNIO-1 task-1] 0Qcc0elkT7WYalDZvMHNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7e1671fa +08:11:52.782 [XNIO-1 task-1] c4_MtZNaSDOfXwXseSVUDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.782 [XNIO-1 task-1] c4_MtZNaSDOfXwXseSVUDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.783 [XNIO-1 task-1] c4_MtZNaSDOfXwXseSVUDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.783 [XNIO-1 task-1] c4_MtZNaSDOfXwXseSVUDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +08:11:52.790 [XNIO-1 task-1] B0MS5P85RdCoDSRPXEzeig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c13180f, base path is set to: null +08:11:52.790 [XNIO-1 task-1] B0MS5P85RdCoDSRPXEzeig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.790 [XNIO-1 task-1] B0MS5P85RdCoDSRPXEzeig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.790 [XNIO-1 task-1] B0MS5P85RdCoDSRPXEzeig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c13180f, base path is set to: null +08:11:52.790 [XNIO-1 task-1] B0MS5P85RdCoDSRPXEzeig DEBUG com.networknt.schema.TypeValidator debug - validate( "6c13180f", "6c13180f", userId) +08:11:52.798 [XNIO-1 task-1] hI8eiwPjSxCwobvzf1GO7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.798 [XNIO-1 task-1] hI8eiwPjSxCwobvzf1GO7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.798 [XNIO-1 task-1] hI8eiwPjSxCwobvzf1GO7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +08:11:52.799 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:765433f9 +08:11:52.814 [XNIO-1 task-1] RoceH5bjRwOduQAukDrQrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/88f7076c, base path is set to: null +08:11:52.814 [XNIO-1 task-1] RoceH5bjRwOduQAukDrQrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +08:11:52.814 [XNIO-1 task-1] RoceH5bjRwOduQAukDrQrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +08:11:52.815 [XNIO-1 task-1] RoceH5bjRwOduQAukDrQrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/88f7076c, base path is set to: null +08:11:52.815 [XNIO-1 task-1] RoceH5bjRwOduQAukDrQrA DEBUG com.networknt.schema.TypeValidator debug - validate( "88f7076c", "88f7076c", userId) diff --git a/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..72ab1da --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4620 @@ +07:00:39.569 [XNIO-1 task-2] -1hnY9XZSJ-K2U21Us14fg INFO com.networknt.config.Config getConfigStream - Trying to load config from classpath directory for file status.yml +07:00:39.581 [XNIO-1 task-2] -1hnY9XZSJ-K2U21Us14fg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:39.588 [XNIO-1 task-2] uumyWzY2TwCT46ldcBvKBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/289a92f7-c9ec-4597-9709-5e757aa63e57, base path is set to: null +07:00:39.588 [XNIO-1 task-2] uumyWzY2TwCT46ldcBvKBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:39.588 [XNIO-1 task-2] uumyWzY2TwCT46ldcBvKBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:39.589 [XNIO-1 task-2] uumyWzY2TwCT46ldcBvKBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/289a92f7-c9ec-4597-9709-5e757aa63e57, base path is set to: null +07:00:39.590 [XNIO-1 task-2] uumyWzY2TwCT46ldcBvKBg DEBUG com.networknt.schema.TypeValidator debug - validate( "289a92f7-c9ec-4597-9709-5e757aa63e57", "289a92f7-c9ec-4597-9709-5e757aa63e57", clientId) +07:00:39.600 [XNIO-1 task-2] QJnj7_roTy6G4kmDpa7x0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/289a92f7-c9ec-4597-9709-5e757aa63e57 +07:00:39.601 [XNIO-1 task-2] QJnj7_roTy6G4kmDpa7x0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.601 [XNIO-1 task-2] QJnj7_roTy6G4kmDpa7x0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:39.601 [XNIO-1 task-2] QJnj7_roTy6G4kmDpa7x0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/289a92f7-c9ec-4597-9709-5e757aa63e57 +07:00:39.619 [XNIO-1 task-2] BB8YucA2RcS_Z9rPTiar-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:39.619 [XNIO-1 task-2] BB8YucA2RcS_Z9rPTiar-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:39.620 [XNIO-1 task-2] BB8YucA2RcS_Z9rPTiar-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:39.623 [XNIO-1 task-2] BB8YucA2RcS_Z9rPTiar-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:39.728 [XNIO-1 task-2] t-0CMuLWTB6e9alVq-TQmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:39.728 [XNIO-1 task-2] t-0CMuLWTB6e9alVq-TQmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:39.729 [XNIO-1 task-2] t-0CMuLWTB6e9alVq-TQmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:39.753 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c9f3335c +07:00:39.755 [XNIO-1 task-2] saAEB3MgTsaPmEBP9yvhVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09fa64c3-225a-42a7-bc71-74cb82983f2a, base path is set to: null +07:00:39.756 [XNIO-1 task-2] saAEB3MgTsaPmEBP9yvhVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:39.756 [XNIO-1 task-2] saAEB3MgTsaPmEBP9yvhVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:39.756 [XNIO-1 task-2] saAEB3MgTsaPmEBP9yvhVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09fa64c3-225a-42a7-bc71-74cb82983f2a, base path is set to: null +07:00:39.757 [XNIO-1 task-2] saAEB3MgTsaPmEBP9yvhVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "09fa64c3-225a-42a7-bc71-74cb82983f2a", "09fa64c3-225a-42a7-bc71-74cb82983f2a", clientId) +07:00:39.776 [XNIO-1 task-2] uGFWMm8KQ0awkN7THhjXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.776 [XNIO-1 task-2] uGFWMm8KQ0awkN7THhjXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.776 [XNIO-1 task-2] uGFWMm8KQ0awkN7THhjXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.777 [XNIO-1 task-2] uGFWMm8KQ0awkN7THhjXFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:39.783 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9f3335c +07:00:39.804 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9f3335c +07:00:39.824 [XNIO-1 task-2] ukv01d6ZSJuAPzUFf3mJDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.824 [XNIO-1 task-2] ukv01d6ZSJuAPzUFf3mJDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.825 [XNIO-1 task-2] ukv01d6ZSJuAPzUFf3mJDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.826 [XNIO-1 task-2] ukv01d6ZSJuAPzUFf3mJDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:39.844 [XNIO-1 task-2] WZ6_zI4IRWWfBPvcbDIM0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.844 [XNIO-1 task-2] WZ6_zI4IRWWfBPvcbDIM0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.844 [XNIO-1 task-2] WZ6_zI4IRWWfBPvcbDIM0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.845 [XNIO-1 task-2] WZ6_zI4IRWWfBPvcbDIM0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:39.876 [XNIO-1 task-2] ZK93eYRlTGy3V5ULF024lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.876 [XNIO-1 task-2] ZK93eYRlTGy3V5ULF024lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.877 [XNIO-1 task-2] ZK93eYRlTGy3V5ULF024lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.963 [XNIO-1 task-2] GT_jJgaKRu-v3zGR67novA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b406f0f3-d8d1-46bb-99a2-2a26e45073bd +07:00:39.963 [XNIO-1 task-2] GT_jJgaKRu-v3zGR67novA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:39.963 [XNIO-1 task-2] GT_jJgaKRu-v3zGR67novA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:39.963 [XNIO-1 task-2] GT_jJgaKRu-v3zGR67novA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b406f0f3-d8d1-46bb-99a2-2a26e45073bd +07:00:39.977 [XNIO-1 task-2] S5vakHr1SyW438VwNttNTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:39.977 [XNIO-1 task-2] S5vakHr1SyW438VwNttNTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:39.978 [XNIO-1 task-2] S5vakHr1SyW438VwNttNTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.015 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a94b50b1 +07:00:40.019 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a94b50b1 +07:00:40.061 [XNIO-1 task-2] zGdx12EKTCGn4Q_-VW6bNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a191f7d0-217a-4e55-ad68-cba7847dd87d +07:00:40.061 [XNIO-1 task-2] zGdx12EKTCGn4Q_-VW6bNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.061 [XNIO-1 task-2] zGdx12EKTCGn4Q_-VW6bNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:40.061 [XNIO-1 task-2] zGdx12EKTCGn4Q_-VW6bNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a191f7d0-217a-4e55-ad68-cba7847dd87d +07:00:40.150 [XNIO-1 task-2] oaIm4ODJRnG4PDW2PR5SAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.151 [XNIO-1 task-2] oaIm4ODJRnG4PDW2PR5SAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.151 [XNIO-1 task-2] oaIm4ODJRnG4PDW2PR5SAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.207 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.208 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.208 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.210 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.211 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.211 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.211 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.211 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:40.212 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:40.212 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.212 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.212 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1875edad-3025-43cd-810b-6433dccc","clientDesc":"9e1f7f95-6ba0-4034-b8c2-1d92795d647d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:40.213 [XNIO-1 task-2] qBMkAWphQ5Cdt2QhoUucFw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:40.219 [XNIO-1 task-2] RCQ3cCU1RiSVZGSwIJCsUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.220 [XNIO-1 task-2] RCQ3cCU1RiSVZGSwIJCsUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.220 [XNIO-1 task-2] RCQ3cCU1RiSVZGSwIJCsUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.221 [XNIO-1 task-2] RCQ3cCU1RiSVZGSwIJCsUw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.299 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a94b50b1 +07:00:40.305 [XNIO-1 task-2] CoshQcgVTA2uLb5vSxmGyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b5f36b4c-b4af-4005-a15c-8e24646ec8ea +07:00:40.305 [XNIO-1 task-2] CoshQcgVTA2uLb5vSxmGyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.305 [XNIO-1 task-2] CoshQcgVTA2uLb5vSxmGyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:40.305 [XNIO-1 task-2] CoshQcgVTA2uLb5vSxmGyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b5f36b4c-b4af-4005-a15c-8e24646ec8ea +07:00:40.320 [XNIO-1 task-2] Khsif42ZRP6lrjyrOSKvxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.321 [XNIO-1 task-2] Khsif42ZRP6lrjyrOSKvxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.321 [XNIO-1 task-2] Khsif42ZRP6lrjyrOSKvxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.321 [XNIO-1 task-2] Khsif42ZRP6lrjyrOSKvxg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:40.345 [XNIO-1 task-2] k_61_Pe6Qr2DxDJhdT7ENg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.345 [XNIO-1 task-2] k_61_Pe6Qr2DxDJhdT7ENg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.345 [XNIO-1 task-2] k_61_Pe6Qr2DxDJhdT7ENg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.352 [XNIO-1 task-2] k_61_Pe6Qr2DxDJhdT7ENg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:40.393 [XNIO-1 task-2] lcQKuQPRTcW_0hxU_Xy5gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.393 [XNIO-1 task-2] lcQKuQPRTcW_0hxU_Xy5gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.394 [XNIO-1 task-2] lcQKuQPRTcW_0hxU_Xy5gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.525 [XNIO-1 task-2] eltels7kTIKMdCdrTdEkBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fe9d821a-2550-4010-a183-19d859052e3b, base path is set to: null +07:00:40.525 [XNIO-1 task-2] eltels7kTIKMdCdrTdEkBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.525 [XNIO-1 task-2] eltels7kTIKMdCdrTdEkBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:40.525 [XNIO-1 task-2] eltels7kTIKMdCdrTdEkBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fe9d821a-2550-4010-a183-19d859052e3b, base path is set to: null +07:00:40.526 [XNIO-1 task-2] eltels7kTIKMdCdrTdEkBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe9d821a-2550-4010-a183-19d859052e3b", "fe9d821a-2550-4010-a183-19d859052e3b", clientId) +07:00:40.534 [XNIO-1 task-2] liDnF_cORV-0MWlPuO3VUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fe9d821a-2550-4010-a183-19d859052e3b +07:00:40.535 [XNIO-1 task-2] liDnF_cORV-0MWlPuO3VUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.535 [XNIO-1 task-2] liDnF_cORV-0MWlPuO3VUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:40.535 [XNIO-1 task-2] liDnF_cORV-0MWlPuO3VUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fe9d821a-2550-4010-a183-19d859052e3b +07:00:40.554 [XNIO-1 task-2] zFfJc6i2QoOWZuoLr9meew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.554 [XNIO-1 task-2] zFfJc6i2QoOWZuoLr9meew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.554 [XNIO-1 task-2] zFfJc6i2QoOWZuoLr9meew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.555 [XNIO-1 task-2] zFfJc6i2QoOWZuoLr9meew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:40.570 [XNIO-1 task-2] Qk5UcabFQC-VCV0_vNt_2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.571 [XNIO-1 task-2] Qk5UcabFQC-VCV0_vNt_2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.571 [XNIO-1 task-2] Qk5UcabFQC-VCV0_vNt_2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.592 [XNIO-1 task-2] PIw2KiwtRgia6zQmjcHdYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:40.593 [XNIO-1 task-2] PIw2KiwtRgia6zQmjcHdYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.593 [XNIO-1 task-2] PIw2KiwtRgia6zQmjcHdYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:40.593 [XNIO-1 task-2] PIw2KiwtRgia6zQmjcHdYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:40.593 [XNIO-1 task-2] PIw2KiwtRgia6zQmjcHdYA DEBUG com.networknt.schema.TypeValidator debug - validate( "86e8fee3-b392-40d2-b33f-4572f1e4473f", "86e8fee3-b392-40d2-b33f-4572f1e4473f", clientId) +07:00:40.599 [XNIO-1 task-2] oq2YvkypRIaNqahDfyWmEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.599 [XNIO-1 task-2] oq2YvkypRIaNqahDfyWmEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.599 [XNIO-1 task-2] oq2YvkypRIaNqahDfyWmEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.600 [XNIO-1 task-2] oq2YvkypRIaNqahDfyWmEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.629 [XNIO-1 task-2] GVSl0T1RQieilNccWCWCRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.629 [XNIO-1 task-2] GVSl0T1RQieilNccWCWCRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.629 [XNIO-1 task-2] GVSl0T1RQieilNccWCWCRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.630 [XNIO-1 task-2] GVSl0T1RQieilNccWCWCRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.656 [XNIO-1 task-2] ywqC7eNKQYOjDOolicRJ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f +07:00:40.657 [XNIO-1 task-2] ywqC7eNKQYOjDOolicRJ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.657 [XNIO-1 task-2] ywqC7eNKQYOjDOolicRJ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:40.657 [XNIO-1 task-2] ywqC7eNKQYOjDOolicRJ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f +07:00:40.661 [XNIO-1 task-2] ed4d4D4VR5mF8Cx4z3xOWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.661 [XNIO-1 task-2] ed4d4D4VR5mF8Cx4z3xOWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.662 [XNIO-1 task-2] ed4d4D4VR5mF8Cx4z3xOWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.707 [XNIO-1 task-2] CcgaNJdMQTCYxvScUj825A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.707 [XNIO-1 task-2] CcgaNJdMQTCYxvScUj825A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.707 [XNIO-1 task-2] CcgaNJdMQTCYxvScUj825A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.747 [XNIO-1 task-2] XadQ9zIjR8i2gbTLaQrpIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.748 [XNIO-1 task-2] XadQ9zIjR8i2gbTLaQrpIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.748 [XNIO-1 task-2] XadQ9zIjR8i2gbTLaQrpIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.748 [XNIO-1 task-2] XadQ9zIjR8i2gbTLaQrpIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:40.774 [XNIO-1 task-2] 4-m-q39lQdmwwBA6oiEi-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.774 [XNIO-1 task-2] 4-m-q39lQdmwwBA6oiEi-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.775 [XNIO-1 task-2] 4-m-q39lQdmwwBA6oiEi-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.784 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2ec929f9-99c9-4db3-8509-7bf05d0c08c7 +07:00:40.786 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2ec929f9-99c9-4db3-8509-7bf05d0c08c7 +07:00:40.798 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.799 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.799 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.800 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.800 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:40.801 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "83712c11-523a-48dc-9d77-76c08f93ac86", {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:40.801 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:40.801 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:40.802 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "12c19f05-cf9f-4f82-811a-9172bd33", {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:40.802 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:40.802 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"12c19f05-cf9f-4f82-811a-9172bd33","clientDesc":"83712c11-523a-48dc-9d77-76c08f93ac86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:40.803 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:40.803 [XNIO-1 task-2] RmFZ7FqjSTKuW8MFtloMfA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:40.825 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.826 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.826 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.827 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.827 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.827 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.827 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.828 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:40.828 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:40.828 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.828 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.828 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c88aafc6-909c-47ee-94fa-21f078d8","clientDesc":"acca2731-fedf-460f-b192-ec98688cb1bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:40.829 [XNIO-1 task-2] jssobDQjRM6wi7gx7rL49g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:40.836 [XNIO-1 task-2] c_-MS1LoRCmzSEcLFzJbUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca819b1f-c010-4070-bbd3-4c1be3186fcb +07:00:40.836 [XNIO-1 task-2] c_-MS1LoRCmzSEcLFzJbUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.836 [XNIO-1 task-2] c_-MS1LoRCmzSEcLFzJbUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:40.837 [XNIO-1 task-2] c_-MS1LoRCmzSEcLFzJbUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca819b1f-c010-4070-bbd3-4c1be3186fcb +07:00:40.847 [XNIO-1 task-2] DFQdLJdLS_y-TYP6VpG00A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.847 [XNIO-1 task-2] DFQdLJdLS_y-TYP6VpG00A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.848 [XNIO-1 task-2] DFQdLJdLS_y-TYP6VpG00A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.854 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1bb0c9cb-cb0a-4d37-b293-e39dd550830a +07:00:40.855 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1bb0c9cb-cb0a-4d37-b293-e39dd550830a +07:00:40.882 [XNIO-1 task-2] FSl6t23fQ5OW5YQQp824Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.882 [XNIO-1 task-2] FSl6t23fQ5OW5YQQp824Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.882 [XNIO-1 task-2] FSl6t23fQ5OW5YQQp824Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.884 [XNIO-1 task-2] FSl6t23fQ5OW5YQQp824Pw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.974 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.974 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.974 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.975 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.975 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:40.975 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG com.networknt.schema.TypeValidator debug - validate( "a7bcfa9e-c19f-4a78-9119-c45e346eaf8b", {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:40.976 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:40.976 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:40.976 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG com.networknt.schema.TypeValidator debug - validate( "ef381e2c-0c78-4f63-bc0d-695e0f35", {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:40.976 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:40.976 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ef381e2c-0c78-4f63-bc0d-695e0f35","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:40.976 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:40.977 [XNIO-1 task-2] q52swVDTRfmkMK7wOSfpJA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:40.982 [XNIO-1 task-2] UBiOgZ5ZTaWBkJu4rf8PCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a, base path is set to: null +07:00:40.982 [XNIO-1 task-2] UBiOgZ5ZTaWBkJu4rf8PCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.982 [XNIO-1 task-2] UBiOgZ5ZTaWBkJu4rf8PCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:40.982 [XNIO-1 task-2] UBiOgZ5ZTaWBkJu4rf8PCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a, base path is set to: null +07:00:40.983 [XNIO-1 task-2] UBiOgZ5ZTaWBkJu4rf8PCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1bb0c9cb-cb0a-4d37-b293-e39dd550830a", "1bb0c9cb-cb0a-4d37-b293-e39dd550830a", clientId) +07:00:40.986 [XNIO-1 task-2] 1dQAOIesT_eEiT0z4RKmpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a +07:00:40.986 [XNIO-1 task-2] 1dQAOIesT_eEiT0z4RKmpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:40.986 [XNIO-1 task-2] 1dQAOIesT_eEiT0z4RKmpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:40.986 [XNIO-1 task-2] 1dQAOIesT_eEiT0z4RKmpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a +07:00:40.989 [XNIO-1 task-2] TxyO1ISkTmepgAiA5mdr0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:40.989 [XNIO-1 task-2] TxyO1ISkTmepgAiA5mdr0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:40.989 [XNIO-1 task-2] TxyO1ISkTmepgAiA5mdr0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.026 [XNIO-1 task-2] T0aQZSoqRr26Rs5iotkDDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a, base path is set to: null +07:00:41.027 [XNIO-1 task-2] T0aQZSoqRr26Rs5iotkDDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.027 [XNIO-1 task-2] T0aQZSoqRr26Rs5iotkDDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:41.027 [XNIO-1 task-2] T0aQZSoqRr26Rs5iotkDDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a, base path is set to: null +07:00:41.027 [XNIO-1 task-2] T0aQZSoqRr26Rs5iotkDDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1bb0c9cb-cb0a-4d37-b293-e39dd550830a", "1bb0c9cb-cb0a-4d37-b293-e39dd550830a", clientId) +07:00:41.031 [XNIO-1 task-2] rsfH2FUSQnyxkPclQEHxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.031 [XNIO-1 task-2] rsfH2FUSQnyxkPclQEHxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.032 [XNIO-1 task-2] rsfH2FUSQnyxkPclQEHxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.032 [XNIO-1 task-2] rsfH2FUSQnyxkPclQEHxRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.061 [XNIO-1 task-2] Wqp_uFwLRqqrinEjXQJ6gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f +07:00:41.061 [XNIO-1 task-2] Wqp_uFwLRqqrinEjXQJ6gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.061 [XNIO-1 task-2] Wqp_uFwLRqqrinEjXQJ6gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.062 [XNIO-1 task-2] Wqp_uFwLRqqrinEjXQJ6gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f +07:00:41.062 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:209de3b0 +07:00:41.064 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:209de3b0 +07:00:41.065 [XNIO-1 task-2] HhEZwbAeTvK8GHUD7a_ngQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ec929f9-99c9-4db3-8509-7bf05d0c08c7 +07:00:41.066 [XNIO-1 task-2] HhEZwbAeTvK8GHUD7a_ngQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.066 [XNIO-1 task-2] HhEZwbAeTvK8GHUD7a_ngQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.066 [XNIO-1 task-2] HhEZwbAeTvK8GHUD7a_ngQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ec929f9-99c9-4db3-8509-7bf05d0c08c7 +07:00:41.067 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2ec929f9-99c9-4db3-8509-7bf05d0c08c7 +07:00:41.148 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.148 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.149 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.150 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.150 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:41.150 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7bcfa9e-c19f-4a78-9119-c45e346eaf8b", {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:41.150 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:41.150 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:41.150 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "e8a60656-4b70-4528-b5f1-b7c7d8d6", {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:41.151 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:41.151 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e8a60656-4b70-4528-b5f1-b7c7d8d6","clientDesc":"a7bcfa9e-c19f-4a78-9119-c45e346eaf8b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.151 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:41.151 [XNIO-1 task-2] 4FGg7cTBQVSjzEnIE7a6Gw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:41.155 [XNIO-1 task-2] xjGVbzpFS0qW8EyaiCJYag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.155 [XNIO-1 task-2] xjGVbzpFS0qW8EyaiCJYag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.156 [XNIO-1 task-2] xjGVbzpFS0qW8EyaiCJYag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.207 [XNIO-1 task-2] DcwaAf2DSuCTT9eLctkRlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:41.207 [XNIO-1 task-2] DcwaAf2DSuCTT9eLctkRlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.207 [XNIO-1 task-2] DcwaAf2DSuCTT9eLctkRlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:41.207 [XNIO-1 task-2] DcwaAf2DSuCTT9eLctkRlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:41.208 [XNIO-1 task-2] DcwaAf2DSuCTT9eLctkRlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "86e8fee3-b392-40d2-b33f-4572f1e4473f", "86e8fee3-b392-40d2-b33f-4572f1e4473f", clientId) +07:00:41.211 [XNIO-1 task-2] AKzRyQ3nQxiCsa3bIB4GDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca819b1f-c010-4070-bbd3-4c1be3186fcb +07:00:41.212 [XNIO-1 task-2] AKzRyQ3nQxiCsa3bIB4GDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.212 [XNIO-1 task-2] AKzRyQ3nQxiCsa3bIB4GDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.212 [XNIO-1 task-2] AKzRyQ3nQxiCsa3bIB4GDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca819b1f-c010-4070-bbd3-4c1be3186fcb +07:00:41.233 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a871bd0 +07:00:41.236 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a871bd0 +07:00:41.236 [XNIO-1 task-2] hJbu86xuQMGEDE_H7MbDbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:41.237 [XNIO-1 task-2] hJbu86xuQMGEDE_H7MbDbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.237 [XNIO-1 task-2] hJbu86xuQMGEDE_H7MbDbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.237 [XNIO-1 task-2] hJbu86xuQMGEDE_H7MbDbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:41.242 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:209de3b0 +07:00:41.243 [XNIO-1 task-2] -XSCuMtKTUaK5kwy2f9AlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.243 [XNIO-1 task-2] -XSCuMtKTUaK5kwy2f9AlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.243 [XNIO-1 task-2] -XSCuMtKTUaK5kwy2f9AlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.244 [XNIO-1 task-2] -XSCuMtKTUaK5kwy2f9AlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:41.256 [XNIO-1 task-2] eb4XxtVdSDKm7587tWPOHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.256 [XNIO-1 task-2] eb4XxtVdSDKm7587tWPOHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.257 [XNIO-1 task-2] eb4XxtVdSDKm7587tWPOHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.257 [XNIO-1 task-2] eb4XxtVdSDKm7587tWPOHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:41.260 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c9f3335c +07:00:41.289 [XNIO-1 task-2] okjPww19Q8CQH-zQufgfgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dccb8db0-6575-4ab2-ab68-3e6ac0dfb113 +07:00:41.289 [XNIO-1 task-2] okjPww19Q8CQH-zQufgfgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.289 [XNIO-1 task-2] okjPww19Q8CQH-zQufgfgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.289 [XNIO-1 task-2] okjPww19Q8CQH-zQufgfgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dccb8db0-6575-4ab2-ab68-3e6ac0dfb113 +07:00:41.304 [XNIO-1 task-2] Rc1PWDszSdqMXzwQsLpsDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.305 [XNIO-1 task-2] Rc1PWDszSdqMXzwQsLpsDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.305 [XNIO-1 task-2] Rc1PWDszSdqMXzwQsLpsDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.305 [XNIO-1 task-2] Rc1PWDszSdqMXzwQsLpsDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:41.323 [XNIO-1 task-2] AXlH5zXvTCOF1s6YC3EYWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/402f68b0-67ae-402a-b5e2-3ff4afe91025, base path is set to: null +07:00:41.324 [XNIO-1 task-2] AXlH5zXvTCOF1s6YC3EYWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.324 [XNIO-1 task-2] AXlH5zXvTCOF1s6YC3EYWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:41.324 [XNIO-1 task-2] AXlH5zXvTCOF1s6YC3EYWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/402f68b0-67ae-402a-b5e2-3ff4afe91025, base path is set to: null +07:00:41.324 [XNIO-1 task-2] AXlH5zXvTCOF1s6YC3EYWg DEBUG com.networknt.schema.TypeValidator debug - validate( "402f68b0-67ae-402a-b5e2-3ff4afe91025", "402f68b0-67ae-402a-b5e2-3ff4afe91025", clientId) +07:00:41.335 [XNIO-1 task-2] aTErqvSQSJ6VmyE8ik8SRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.335 [XNIO-1 task-2] aTErqvSQSJ6VmyE8ik8SRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.336 [XNIO-1 task-2] aTErqvSQSJ6VmyE8ik8SRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.336 [XNIO-1 task-2] aTErqvSQSJ6VmyE8ik8SRA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:41.373 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a871bd0 +07:00:41.392 [XNIO-1 task-2] FkW_DQ8PTuyaby7E0rG4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.392 [XNIO-1 task-2] FkW_DQ8PTuyaby7E0rG4RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.392 [XNIO-1 task-2] FkW_DQ8PTuyaby7E0rG4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.445 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.445 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.446 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.447 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.447 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.447 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.448 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.448 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:41.448 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:41.448 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.448 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.448 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac8d55f9-fdaa-46f7-b007-075b3aa9","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:41.449 [XNIO-1 task-2] dhGtowFFSRq1lKazi3uWyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:41.458 [XNIO-1 task-2] A5vqz7CTR4edTDBOdtRF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.458 [XNIO-1 task-2] A5vqz7CTR4edTDBOdtRF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.459 [XNIO-1 task-2] A5vqz7CTR4edTDBOdtRF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.496 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3d885eb1-c059-436e-aa07-1775a1305849 +07:00:41.534 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.534 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.535 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.535 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.535 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.536 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.536 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.536 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:41.539 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:41.541 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.541 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.542 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d80c7813-531e-42c6-8ec8-8a970f36","clientDesc":"cf58fb5f-44b8-4df1-a529-e30ad5ab16d7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:41.543 [XNIO-1 task-2] jpi09xEcQ4GYG11QMvU3Ig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:41.546 [XNIO-1 task-2] 61DZTOD6SFimxFQDsrIFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/402f68b0-67ae-402a-b5e2-3ff4afe91025 +07:00:41.547 [XNIO-1 task-2] 61DZTOD6SFimxFQDsrIFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.547 [XNIO-1 task-2] 61DZTOD6SFimxFQDsrIFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.547 [XNIO-1 task-2] 61DZTOD6SFimxFQDsrIFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/402f68b0-67ae-402a-b5e2-3ff4afe91025 +07:00:41.620 [XNIO-1 task-2] X2nbsdMMQr-_nSG6oxKpIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a, base path is set to: null +07:00:41.620 [XNIO-1 task-2] X2nbsdMMQr-_nSG6oxKpIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.620 [XNIO-1 task-2] X2nbsdMMQr-_nSG6oxKpIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:41.620 [XNIO-1 task-2] X2nbsdMMQr-_nSG6oxKpIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1bb0c9cb-cb0a-4d37-b293-e39dd550830a, base path is set to: null +07:00:41.621 [XNIO-1 task-2] X2nbsdMMQr-_nSG6oxKpIw DEBUG com.networknt.schema.TypeValidator debug - validate( "1bb0c9cb-cb0a-4d37-b293-e39dd550830a", "1bb0c9cb-cb0a-4d37-b293-e39dd550830a", clientId) +07:00:41.629 [XNIO-1 task-2] bbdmASFYSS-SZ8j0qH6PbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.629 [XNIO-1 task-2] bbdmASFYSS-SZ8j0qH6PbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.629 [XNIO-1 task-2] bbdmASFYSS-SZ8j0qH6PbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.629 [XNIO-1 task-2] bbdmASFYSS-SZ8j0qH6PbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:41.677 [XNIO-1 task-2] Cf-tNmszQ7-RFtbWrd13DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.677 [XNIO-1 task-2] Cf-tNmszQ7-RFtbWrd13DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.678 [XNIO-1 task-2] Cf-tNmszQ7-RFtbWrd13DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.705 [XNIO-1 task-2] hTo4Y960SJauPoLSV8ftbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:41.705 [XNIO-1 task-2] hTo4Y960SJauPoLSV8ftbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.705 [XNIO-1 task-2] hTo4Y960SJauPoLSV8ftbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:41.706 [XNIO-1 task-2] hTo4Y960SJauPoLSV8ftbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:41.706 [XNIO-1 task-2] hTo4Y960SJauPoLSV8ftbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "86e8fee3-b392-40d2-b33f-4572f1e4473f", "86e8fee3-b392-40d2-b33f-4572f1e4473f", clientId) +07:00:41.710 [XNIO-1 task-2] naFcbt3xQfuks6lhFBYvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.710 [XNIO-1 task-2] naFcbt3xQfuks6lhFBYvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.710 [XNIO-1 task-2] naFcbt3xQfuks6lhFBYvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.711 [XNIO-1 task-2] naFcbt3xQfuks6lhFBYvYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.787 [XNIO-1 task-2] RwQmtRWTTxe02IZwxOfTDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:41.787 [XNIO-1 task-2] RwQmtRWTTxe02IZwxOfTDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.787 [XNIO-1 task-2] RwQmtRWTTxe02IZwxOfTDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.787 [XNIO-1 task-2] RwQmtRWTTxe02IZwxOfTDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:41.791 [XNIO-1 task-2] 1qmQ0nhmS92Q0DyBVZi8CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.791 [XNIO-1 task-2] 1qmQ0nhmS92Q0DyBVZi8CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.791 [XNIO-1 task-2] 1qmQ0nhmS92Q0DyBVZi8CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.840 [XNIO-1 task-2] ZqRUbZH1QY-VWCDfxlhnUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:41.840 [XNIO-1 task-2] ZqRUbZH1QY-VWCDfxlhnUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.840 [XNIO-1 task-2] ZqRUbZH1QY-VWCDfxlhnUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:41.840 [XNIO-1 task-2] ZqRUbZH1QY-VWCDfxlhnUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/86e8fee3-b392-40d2-b33f-4572f1e4473f, base path is set to: null +07:00:41.841 [XNIO-1 task-2] ZqRUbZH1QY-VWCDfxlhnUg DEBUG com.networknt.schema.TypeValidator debug - validate( "86e8fee3-b392-40d2-b33f-4572f1e4473f", "86e8fee3-b392-40d2-b33f-4572f1e4473f", clientId) +07:00:41.855 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.855 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.856 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.856 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.856 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:41.857 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG com.networknt.schema.TypeValidator debug - validate( "08a552c7-2164-4826-9fb5-5112eab232ba", {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:41.857 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:41.857 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:41.857 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG com.networknt.schema.TypeValidator debug - validate( "a8976da7-bb5a-4ea5-9eb0-ceb93c00", {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:41.857 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:41.857 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a8976da7-bb5a-4ea5-9eb0-ceb93c00","clientDesc":"08a552c7-2164-4826-9fb5-5112eab232ba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.857 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:41.858 [XNIO-1 task-2] VVWKQMgrQiyhcxMer3NJrw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:41.861 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.861 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.861 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.862 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.862 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.866 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.866 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.866 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:41.867 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:41.867 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.867 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.867 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43e32f0f-19f2-4d63-9ee0-8ae08cb9","clientDesc":"ae9c6c54-8343-4a61-8b6c-56a728a60b01","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:41.868 [XNIO-1 task-2] fjHCLuuDRSSbsWXxznX16A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:41.872 [XNIO-1 task-2] fmthaGk6ST6SJLAsIuiKiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:41.872 [XNIO-1 task-2] fmthaGk6ST6SJLAsIuiKiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.872 [XNIO-1 task-2] fmthaGk6ST6SJLAsIuiKiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.873 [XNIO-1 task-2] fmthaGk6ST6SJLAsIuiKiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:41.877 [XNIO-1 task-2] E_EOqVYDSKyo1U59nkSH-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.877 [XNIO-1 task-2] E_EOqVYDSKyo1U59nkSH-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.877 [XNIO-1 task-2] E_EOqVYDSKyo1U59nkSH-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.909 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a871bd0 +07:00:41.917 [XNIO-1 task-2] Glw-UjfuToeyPi1wxvgedQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.917 [XNIO-1 task-2] Glw-UjfuToeyPi1wxvgedQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.918 [XNIO-1 task-2] Glw-UjfuToeyPi1wxvgedQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.943 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0a871bd0 +07:00:41.951 [XNIO-1 task-2] Q_DIOQSQS4yc7mB8X0dYVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/256fbd4b-7f84-4422-a812-fd467c47f51e, base path is set to: null +07:00:41.951 [XNIO-1 task-2] Q_DIOQSQS4yc7mB8X0dYVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.951 [XNIO-1 task-2] Q_DIOQSQS4yc7mB8X0dYVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:41.951 [XNIO-1 task-2] Q_DIOQSQS4yc7mB8X0dYVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/256fbd4b-7f84-4422-a812-fd467c47f51e, base path is set to: null +07:00:41.952 [XNIO-1 task-2] Q_DIOQSQS4yc7mB8X0dYVg DEBUG com.networknt.schema.TypeValidator debug - validate( "256fbd4b-7f84-4422-a812-fd467c47f51e", "256fbd4b-7f84-4422-a812-fd467c47f51e", clientId) +07:00:41.965 [XNIO-1 task-2] 8ssRCoHuTmG7CT_qFUtzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9a45d681-f5ef-4c1a-ae7c-1e2a02a124c3 +07:00:41.965 [XNIO-1 task-2] 8ssRCoHuTmG7CT_qFUtzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.965 [XNIO-1 task-2] 8ssRCoHuTmG7CT_qFUtzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:41.965 [XNIO-1 task-2] 8ssRCoHuTmG7CT_qFUtzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9a45d681-f5ef-4c1a-ae7c-1e2a02a124c3 +07:00:41.970 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.970 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.970 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.971 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.972 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.972 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.972 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.972 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:41.972 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:41.972 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.972 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.973 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7887e538-71b1-462a-a319-bb15bbe3","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:41.973 [XNIO-1 task-2] ra_hE3mJTKGWTGE-LDH4Dw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:41.978 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.978 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.978 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:41.979 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.979 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:41.979 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "7cf45790-fd76-40e8-80f9-4915f7101535", {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:41.979 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:41.980 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:41.980 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "bc3ebfc5-be76-40c1-89e6-265fa650", {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:41.980 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:41.980 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bc3ebfc5-be76-40c1-89e6-265fa650","clientDesc":"7cf45790-fd76-40e8-80f9-4915f7101535","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.980 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:41.980 [XNIO-1 task-2] M-pnitiKQkuO7kUnmTCXfw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:41.984 [XNIO-1 task-2] x5IiARHhQe-DJv65QbQJ0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:41.985 [XNIO-1 task-2] x5IiARHhQe-DJv65QbQJ0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:41.985 [XNIO-1 task-2] x5IiARHhQe-DJv65QbQJ0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.012 [XNIO-1 task-2] npueJEUNTWyKpNhPwFToog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.012 [XNIO-1 task-2] npueJEUNTWyKpNhPwFToog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.013 [XNIO-1 task-2] npueJEUNTWyKpNhPwFToog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.066 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cf498ad6 +07:00:42.068 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cf498ad6 +07:00:42.099 [XNIO-1 task-2] RtzEdyySQGK6cPMeVx0xrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9a45d681-f5ef-4c1a-ae7c-1e2a02a124c3 +07:00:42.099 [XNIO-1 task-2] RtzEdyySQGK6cPMeVx0xrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.099 [XNIO-1 task-2] RtzEdyySQGK6cPMeVx0xrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.099 [XNIO-1 task-2] RtzEdyySQGK6cPMeVx0xrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9a45d681-f5ef-4c1a-ae7c-1e2a02a124c3 +07:00:42.151 [XNIO-1 task-2] zUT2YR7xR5y7WSCIlEtDYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59b6b5bd-0f2b-4d56-8e7b-f790b84e8e48, base path is set to: null +07:00:42.151 [XNIO-1 task-2] zUT2YR7xR5y7WSCIlEtDYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.151 [XNIO-1 task-2] zUT2YR7xR5y7WSCIlEtDYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:42.151 [XNIO-1 task-2] zUT2YR7xR5y7WSCIlEtDYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59b6b5bd-0f2b-4d56-8e7b-f790b84e8e48, base path is set to: null +07:00:42.152 [XNIO-1 task-2] zUT2YR7xR5y7WSCIlEtDYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "59b6b5bd-0f2b-4d56-8e7b-f790b84e8e48", "59b6b5bd-0f2b-4d56-8e7b-f790b84e8e48", clientId) +07:00:42.161 [XNIO-1 task-2] IK-o6o0hSQahgHidiWM5Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:42.161 [XNIO-1 task-2] IK-o6o0hSQahgHidiWM5Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.161 [XNIO-1 task-2] IK-o6o0hSQahgHidiWM5Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.161 [XNIO-1 task-2] IK-o6o0hSQahgHidiWM5Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7cf02903-c62a-41da-91b2-5c4806c67c9f +07:00:42.174 [XNIO-1 task-2] bNdzUnwSTyCfuSmJWhW_fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:42.174 [XNIO-1 task-2] bNdzUnwSTyCfuSmJWhW_fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.174 [XNIO-1 task-2] bNdzUnwSTyCfuSmJWhW_fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:42.174 [XNIO-1 task-2] bNdzUnwSTyCfuSmJWhW_fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:42.174 [XNIO-1 task-2] bNdzUnwSTyCfuSmJWhW_fw DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", clientId) +07:00:42.178 [XNIO-1 task-2] Q-9IXAN2TDeUdCT16jNN6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:42.178 [XNIO-1 task-2] Q-9IXAN2TDeUdCT16jNN6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.179 [XNIO-1 task-2] Q-9IXAN2TDeUdCT16jNN6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.179 [XNIO-1 task-2] Q-9IXAN2TDeUdCT16jNN6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:42.182 [XNIO-1 task-2] YsXySK_ESSCjn1XRFmebmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.182 [XNIO-1 task-2] YsXySK_ESSCjn1XRFmebmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.182 [XNIO-1 task-2] YsXySK_ESSCjn1XRFmebmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.183 [XNIO-1 task-2] YsXySK_ESSCjn1XRFmebmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.211 [XNIO-1 task-2] 6QooJ6DXR8-Ck5xKpbvLNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d885eb1-c059-436e-aa07-1775a1305849, base path is set to: null +07:00:42.212 [XNIO-1 task-2] 6QooJ6DXR8-Ck5xKpbvLNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.212 [XNIO-1 task-2] 6QooJ6DXR8-Ck5xKpbvLNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:42.212 [XNIO-1 task-2] 6QooJ6DXR8-Ck5xKpbvLNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d885eb1-c059-436e-aa07-1775a1305849, base path is set to: null +07:00:42.212 [XNIO-1 task-2] 6QooJ6DXR8-Ck5xKpbvLNw DEBUG com.networknt.schema.TypeValidator debug - validate( "3d885eb1-c059-436e-aa07-1775a1305849", "3d885eb1-c059-436e-aa07-1775a1305849", clientId) +07:00:42.225 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.225 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.225 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.227 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.227 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.227 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.227 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.227 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:42.227 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:42.227 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.228 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.228 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44f9d156-b9f1-43d5-932e-b082f935","clientDesc":"810d9f84-d63f-435c-b742-83902c0ca386","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:42.228 [XNIO-1 task-2] JT2bMLXNT_eTeaUL-FWKhA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:42.232 [XNIO-1 task-2] fiH6o2uDTyigZLSJOOwSRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:42.232 [XNIO-1 task-2] fiH6o2uDTyigZLSJOOwSRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.232 [XNIO-1 task-2] fiH6o2uDTyigZLSJOOwSRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.232 [XNIO-1 task-2] fiH6o2uDTyigZLSJOOwSRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:42.282 [XNIO-1 task-2] _3k2Fns6SDiATHDrJSpU6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.283 [XNIO-1 task-2] _3k2Fns6SDiATHDrJSpU6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.283 [XNIO-1 task-2] _3k2Fns6SDiATHDrJSpU6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.284 [XNIO-1 task-2] _3k2Fns6SDiATHDrJSpU6w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.310 [XNIO-1 task-2] 01mJohWqQuKMAJiuIek1dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.310 [XNIO-1 task-2] 01mJohWqQuKMAJiuIek1dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.311 [XNIO-1 task-2] 01mJohWqQuKMAJiuIek1dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.311 [XNIO-1 task-2] 01mJohWqQuKMAJiuIek1dg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.314 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cf498ad6 +07:00:42.331 [XNIO-1 task-2] SSym9KlYS9W--EQIYUa_rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.331 [XNIO-1 task-2] SSym9KlYS9W--EQIYUa_rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.332 [XNIO-1 task-2] SSym9KlYS9W--EQIYUa_rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.359 [XNIO-1 task-2] gmqN3SI2R5ah1vszTk260g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/02e029d1-a225-48cb-b458-93ba1d259e6c +07:00:42.359 [XNIO-1 task-2] gmqN3SI2R5ah1vszTk260g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.359 [XNIO-1 task-2] gmqN3SI2R5ah1vszTk260g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.359 [XNIO-1 task-2] gmqN3SI2R5ah1vszTk260g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/02e029d1-a225-48cb-b458-93ba1d259e6c +07:00:42.365 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.365 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.365 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.366 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.366 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.366 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.366 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.366 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:42.366 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:42.367 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.367 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.367 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac87049c-1b32-494a-8438-3fa885a0","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:42.367 [XNIO-1 task-2] e9G6VV1eS7KzQSFwdyQxew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:42.373 [XNIO-1 task-2] bx777Ou2SEiJDh5VyFx_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.373 [XNIO-1 task-2] bx777Ou2SEiJDh5VyFx_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.373 [XNIO-1 task-2] bx777Ou2SEiJDh5VyFx_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.373 [XNIO-1 task-2] bx777Ou2SEiJDh5VyFx_fQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.437 [XNIO-1 task-2] DY5owyP2SiapLFSScHUWZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.437 [XNIO-1 task-2] DY5owyP2SiapLFSScHUWZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.438 [XNIO-1 task-2] DY5owyP2SiapLFSScHUWZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.461 [XNIO-1 task-2] MCAjhGonSPC1CU0DdTq0-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7daabf54-b36b-4827-a2ae-b55ae5cd019a +07:00:42.461 [XNIO-1 task-2] MCAjhGonSPC1CU0DdTq0-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.461 [XNIO-1 task-2] MCAjhGonSPC1CU0DdTq0-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.461 [XNIO-1 task-2] MCAjhGonSPC1CU0DdTq0-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7daabf54-b36b-4827-a2ae-b55ae5cd019a +07:00:42.598 [XNIO-1 task-2] 6V8pm_PxQ9CIggMKgyU1qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.598 [XNIO-1 task-2] 6V8pm_PxQ9CIggMKgyU1qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.599 [XNIO-1 task-2] 6V8pm_PxQ9CIggMKgyU1qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.599 [XNIO-1 task-2] 6V8pm_PxQ9CIggMKgyU1qw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.715 [XNIO-1 task-2] DNCMj5QrQqyDM7voRpiSBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/02e029d1-a225-48cb-b458-93ba1d259e6c, base path is set to: null +07:00:42.715 [XNIO-1 task-2] DNCMj5QrQqyDM7voRpiSBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.715 [XNIO-1 task-2] DNCMj5QrQqyDM7voRpiSBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:42.715 [XNIO-1 task-2] DNCMj5QrQqyDM7voRpiSBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/02e029d1-a225-48cb-b458-93ba1d259e6c, base path is set to: null +07:00:42.715 [XNIO-1 task-2] DNCMj5QrQqyDM7voRpiSBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "02e029d1-a225-48cb-b458-93ba1d259e6c", "02e029d1-a225-48cb-b458-93ba1d259e6c", clientId) +07:00:42.727 [XNIO-1 task-2] HM_gA-_dSQWR_TnUwlTFDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7daabf54-b36b-4827-a2ae-b55ae5cd019a +07:00:42.727 [XNIO-1 task-2] HM_gA-_dSQWR_TnUwlTFDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.727 [XNIO-1 task-2] HM_gA-_dSQWR_TnUwlTFDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.727 [XNIO-1 task-2] HM_gA-_dSQWR_TnUwlTFDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7daabf54-b36b-4827-a2ae-b55ae5cd019a +07:00:42.769 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.769 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.769 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.770 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.770 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.771 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.771 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.771 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:42.771 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:42.772 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.772 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.772 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"951fe827-a1cc-4047-b046-0d4c530b","clientDesc":"3c670da8-ad07-4fca-a5b0-c9baef06d92f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:42.772 [XNIO-1 task-2] u755tWMhTVuR8hx_izzcJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:42.775 [XNIO-1 task-2] uSaB1Vh8QSuST6d-kEPpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e3f0d6f-006c-4e72-a5d3-852b8fef891f +07:00:42.775 [XNIO-1 task-2] uSaB1Vh8QSuST6d-kEPpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.776 [XNIO-1 task-2] uSaB1Vh8QSuST6d-kEPpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:42.776 [XNIO-1 task-2] uSaB1Vh8QSuST6d-kEPpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e3f0d6f-006c-4e72-a5d3-852b8fef891f +07:00:42.789 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.789 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.789 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.791 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.791 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.791 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.791 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.791 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:42.791 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:42.791 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.795 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.795 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f89ee54-1389-4dc5-9743-69a305d2","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:42.795 [XNIO-1 task-2] cLXldBmFRuGfUGbVudPX0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:42.798 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.798 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.799 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.799 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "9c0d1d54-1f47-494b-9b3c-6fff87a98379", {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "975086c2-7b3d-4e4a-b82e-49295314", {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"975086c2-7b3d-4e4a-b82e-49295314","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:42.800 [XNIO-1 task-2] KzHOcmDRRACGtj4cBpKn4g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:42.804 [XNIO-1 task-2] 4gJMvD32RAyBQMDJvzwoDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.804 [XNIO-1 task-2] 4gJMvD32RAyBQMDJvzwoDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:42.805 [XNIO-1 task-2] 4gJMvD32RAyBQMDJvzwoDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:42.834 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4db35149 +07:00:42.843 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4db35149 +07:00:42.845 [XNIO-1 task-2] BH3EJUP_SimOYK6_GVi6fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.845 [XNIO-1 task-2] BH3EJUP_SimOYK6_GVi6fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.846 [XNIO-1 task-2] BH3EJUP_SimOYK6_GVi6fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.870 [XNIO-1 task-2] 6-sd4MdWQbGGBXBwjA5l5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.870 [XNIO-1 task-2] 6-sd4MdWQbGGBXBwjA5l5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.871 [XNIO-1 task-2] 6-sd4MdWQbGGBXBwjA5l5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.871 [XNIO-1 task-2] 6-sd4MdWQbGGBXBwjA5l5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.898 [XNIO-1 task-2] BC-e5DdSRY2EYIQM_jmFgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.898 [XNIO-1 task-2] BC-e5DdSRY2EYIQM_jmFgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.898 [XNIO-1 task-2] BC-e5DdSRY2EYIQM_jmFgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.899 [XNIO-1 task-2] BC-e5DdSRY2EYIQM_jmFgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.951 [XNIO-1 task-2] KOEizqzOQNqOlqxzahUNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.951 [XNIO-1 task-2] KOEizqzOQNqOlqxzahUNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.951 [XNIO-1 task-2] KOEizqzOQNqOlqxzahUNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.952 [XNIO-1 task-2] KOEizqzOQNqOlqxzahUNdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.971 [XNIO-1 task-2] ncNnxQ5iQL-uLmp0_AXvxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.972 [XNIO-1 task-2] ncNnxQ5iQL-uLmp0_AXvxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.972 [XNIO-1 task-2] ncNnxQ5iQL-uLmp0_AXvxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:42.972 [XNIO-1 task-2] ncNnxQ5iQL-uLmp0_AXvxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.989 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4db35149 +07:00:43.013 [XNIO-1 task-2] Q27dJKIuS7WqdTtaSuUiAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.013 [XNIO-1 task-2] Q27dJKIuS7WqdTtaSuUiAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.014 [XNIO-1 task-2] Q27dJKIuS7WqdTtaSuUiAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.014 [XNIO-1 task-2] Q27dJKIuS7WqdTtaSuUiAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.034 [XNIO-1 task-2] mduiWvGMTGyHN4hR_f06AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27874e26-32b2-409c-a6dc-cc521c22927d, base path is set to: null +07:00:43.034 [XNIO-1 task-2] mduiWvGMTGyHN4hR_f06AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.035 [XNIO-1 task-2] mduiWvGMTGyHN4hR_f06AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:43.035 [XNIO-1 task-2] mduiWvGMTGyHN4hR_f06AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27874e26-32b2-409c-a6dc-cc521c22927d, base path is set to: null +07:00:43.035 [XNIO-1 task-2] mduiWvGMTGyHN4hR_f06AA DEBUG com.networknt.schema.TypeValidator debug - validate( "27874e26-32b2-409c-a6dc-cc521c22927d", "27874e26-32b2-409c-a6dc-cc521c22927d", clientId) +07:00:43.040 [XNIO-1 task-2] 7iY6-hj2TGKrZabwj2mk3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.040 [XNIO-1 task-2] 7iY6-hj2TGKrZabwj2mk3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.041 [XNIO-1 task-2] 7iY6-hj2TGKrZabwj2mk3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.041 [XNIO-1 task-2] 7iY6-hj2TGKrZabwj2mk3w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.067 [XNIO-1 task-2] fiRnlxehQNOKaP3aDujTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/19ed1979-c5d5-446d-aec7-686367601b28 +07:00:43.067 [XNIO-1 task-2] fiRnlxehQNOKaP3aDujTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.067 [XNIO-1 task-2] fiRnlxehQNOKaP3aDujTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.067 [XNIO-1 task-2] fiRnlxehQNOKaP3aDujTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/19ed1979-c5d5-446d-aec7-686367601b28 +07:00:43.077 [XNIO-1 task-2] cUSt81oQTD6jeqsDWbHm6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.078 [XNIO-1 task-2] cUSt81oQTD6jeqsDWbHm6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.078 [XNIO-1 task-2] cUSt81oQTD6jeqsDWbHm6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.106 [XNIO-1 task-2] 7QvPhykTSFyooU3D6vsCVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/19ed1979-c5d5-446d-aec7-686367601b28, base path is set to: null +07:00:43.106 [XNIO-1 task-2] 7QvPhykTSFyooU3D6vsCVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.106 [XNIO-1 task-2] 7QvPhykTSFyooU3D6vsCVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:43.106 [XNIO-1 task-2] 7QvPhykTSFyooU3D6vsCVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/19ed1979-c5d5-446d-aec7-686367601b28, base path is set to: null +07:00:43.107 [XNIO-1 task-2] 7QvPhykTSFyooU3D6vsCVg DEBUG com.networknt.schema.TypeValidator debug - validate( "19ed1979-c5d5-446d-aec7-686367601b28", "19ed1979-c5d5-446d-aec7-686367601b28", clientId) +07:00:43.112 [XNIO-1 task-2] awdoDgdlQuOfN91iByfaaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.112 [XNIO-1 task-2] awdoDgdlQuOfN91iByfaaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.112 [XNIO-1 task-2] awdoDgdlQuOfN91iByfaaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.112 [XNIO-1 task-2] awdoDgdlQuOfN91iByfaaQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.198 [XNIO-1 task-2] Lk8wm13NR12NzfeurtS68A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:43.198 [XNIO-1 task-2] Lk8wm13NR12NzfeurtS68A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.198 [XNIO-1 task-2] Lk8wm13NR12NzfeurtS68A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.199 [XNIO-1 task-2] Lk8wm13NR12NzfeurtS68A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:43.202 [XNIO-1 task-2] u-569Z2_S6imNwT-zZTP8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.202 [XNIO-1 task-2] u-569Z2_S6imNwT-zZTP8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.203 [XNIO-1 task-2] u-569Z2_S6imNwT-zZTP8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.224 [XNIO-1 task-2] WXpgt8CtRJmEPfsMuvnUHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.224 [XNIO-1 task-2] WXpgt8CtRJmEPfsMuvnUHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.224 [XNIO-1 task-2] WXpgt8CtRJmEPfsMuvnUHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.246 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb2ab481 +07:00:43.248 [XNIO-1 task-2] sbo1OPCjQVKfSmSKfWn-Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/19ed1979-c5d5-446d-aec7-686367601b28 +07:00:43.248 [XNIO-1 task-2] sbo1OPCjQVKfSmSKfWn-Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.248 [XNIO-1 task-2] sbo1OPCjQVKfSmSKfWn-Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.249 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fb2ab481 +07:00:43.249 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb2ab481 +07:00:43.267 [XNIO-1 task-2] gyWjj6nOQYujHBnOcYlGIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.268 [XNIO-1 task-2] gyWjj6nOQYujHBnOcYlGIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.268 [XNIO-1 task-2] gyWjj6nOQYujHBnOcYlGIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.268 [XNIO-1 task-2] gyWjj6nOQYujHBnOcYlGIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.296 [XNIO-1 task-2] aYxchVbVQlW9btHWHyjzNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.296 [XNIO-1 task-2] aYxchVbVQlW9btHWHyjzNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.296 [XNIO-1 task-2] aYxchVbVQlW9btHWHyjzNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.317 [XNIO-1 task-2] KDQ9TLknRaSLjll3AOk_4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.317 [XNIO-1 task-2] KDQ9TLknRaSLjll3AOk_4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.318 [XNIO-1 task-2] KDQ9TLknRaSLjll3AOk_4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.358 [XNIO-1 task-2] dquoc0vhQ36rLL7g-cFyGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27874e26-32b2-409c-a6dc-cc521c22927d, base path is set to: null +07:00:43.358 [XNIO-1 task-2] dquoc0vhQ36rLL7g-cFyGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.359 [XNIO-1 task-2] dquoc0vhQ36rLL7g-cFyGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:43.359 [XNIO-1 task-2] dquoc0vhQ36rLL7g-cFyGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27874e26-32b2-409c-a6dc-cc521c22927d, base path is set to: null +07:00:43.359 [XNIO-1 task-2] dquoc0vhQ36rLL7g-cFyGA DEBUG com.networknt.schema.TypeValidator debug - validate( "27874e26-32b2-409c-a6dc-cc521c22927d", "27874e26-32b2-409c-a6dc-cc521c22927d", clientId) +07:00:43.367 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe60b9e8 +07:00:43.369 [XNIO-1 task-2] g6OY0ccWS86CB6OZuaU8KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.369 [XNIO-1 task-2] g6OY0ccWS86CB6OZuaU8KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.370 [XNIO-1 task-2] g6OY0ccWS86CB6OZuaU8KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.370 [XNIO-1 task-2] g6OY0ccWS86CB6OZuaU8KA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.416 [XNIO-1 task-2] 8oUVR2CsSPuFDsRHo4H-Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb07cd75-53e2-4b25-ab1b-b3a35a075bb3, base path is set to: null +07:00:43.416 [XNIO-1 task-2] 8oUVR2CsSPuFDsRHo4H-Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.417 [XNIO-1 task-2] 8oUVR2CsSPuFDsRHo4H-Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:43.417 [XNIO-1 task-2] 8oUVR2CsSPuFDsRHo4H-Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb07cd75-53e2-4b25-ab1b-b3a35a075bb3, base path is set to: null +07:00:43.417 [XNIO-1 task-2] 8oUVR2CsSPuFDsRHo4H-Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb07cd75-53e2-4b25-ab1b-b3a35a075bb3", "eb07cd75-53e2-4b25-ab1b-b3a35a075bb3", clientId) +07:00:43.496 [XNIO-1 task-2] UNikap1zSUaOViSnKpVxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.496 [XNIO-1 task-2] UNikap1zSUaOViSnKpVxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.496 [XNIO-1 task-2] UNikap1zSUaOViSnKpVxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.497 [XNIO-1 task-2] UNikap1zSUaOViSnKpVxuw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.508 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.508 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.509 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.509 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe9726d-d2c2-4b48-ad69-96be112816d9", {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc111eda-d226-4c96-be4b-b716fd85", {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dc111eda-d226-4c96-be4b-b716fd85","clientDesc":"dbe9726d-d2c2-4b48-ad69-96be112816d9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:43.510 [XNIO-1 task-2] sgG98ZHCS6Sb-rACeR0Ewg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:43.513 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.513 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.514 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.514 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.515 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.515 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.515 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.515 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:43.515 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:43.515 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.516 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.516 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddf4831-064e-491b-a675-80a54276","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:43.517 [XNIO-1 task-2] 73QDdTfVRXicSmxHLEaLNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:43.519 [XNIO-1 task-2] I3EgnRYMQLKNguxNgh7rfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.520 [XNIO-1 task-2] I3EgnRYMQLKNguxNgh7rfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.520 [XNIO-1 task-2] I3EgnRYMQLKNguxNgh7rfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.557 [XNIO-1 task-2] nISw_z-HSWWGhbBEMmtHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/081cc4b3-b453-4c52-8244-00dab6b931c6 +07:00:43.557 [XNIO-1 task-2] nISw_z-HSWWGhbBEMmtHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.557 [XNIO-1 task-2] nISw_z-HSWWGhbBEMmtHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.558 [XNIO-1 task-2] nISw_z-HSWWGhbBEMmtHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/081cc4b3-b453-4c52-8244-00dab6b931c6 +07:00:43.640 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:41db30de-dd85-4234-ac2b-6b273cec7a97 +07:00:43.643 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:41db30de-dd85-4234-ac2b-6b273cec7a97 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:43.667 [XNIO-1 task-2] nISw_z-HSWWGhbBEMmtHEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/081cc4b3-b453-4c52-8244-00dab6b931c6} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:43.676 [XNIO-1 task-2] X-10KRIMQ9Wqd8e8ET9G8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4e3f0d6f-006c-4e72-a5d3-852b8fef891f, base path is set to: null +07:00:43.676 [XNIO-1 task-2] X-10KRIMQ9Wqd8e8ET9G8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.676 [XNIO-1 task-2] X-10KRIMQ9Wqd8e8ET9G8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:43.676 [XNIO-1 task-2] X-10KRIMQ9Wqd8e8ET9G8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4e3f0d6f-006c-4e72-a5d3-852b8fef891f, base path is set to: null +07:00:43.677 [XNIO-1 task-2] X-10KRIMQ9Wqd8e8ET9G8w DEBUG com.networknt.schema.TypeValidator debug - validate( "4e3f0d6f-006c-4e72-a5d3-852b8fef891f", "4e3f0d6f-006c-4e72-a5d3-852b8fef891f", clientId) +07:00:43.702 [XNIO-1 task-2] fO2QrYiXTx2Ws__Ya-_GGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.702 [XNIO-1 task-2] fO2QrYiXTx2Ws__Ya-_GGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.705 [XNIO-1 task-2] fO2QrYiXTx2Ws__Ya-_GGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.705 [XNIO-1 task-2] fO2QrYiXTx2Ws__Ya-_GGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.729 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fe60b9e8 +07:00:43.731 [XNIO-1 task-2] 8Brq5J7RR3i6X-pLWrgwxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:43.731 [XNIO-1 task-2] 8Brq5J7RR3i6X-pLWrgwxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.732 [XNIO-1 task-2] 8Brq5J7RR3i6X-pLWrgwxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.732 [XNIO-1 task-2] 8Brq5J7RR3i6X-pLWrgwxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:43.741 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fb2ab481 +07:00:43.742 [XNIO-1 task-2] 2ADZUHSgR4KmyM_ymtcOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:43.742 [XNIO-1 task-2] 2ADZUHSgR4KmyM_ymtcOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.742 [XNIO-1 task-2] 2ADZUHSgR4KmyM_ymtcOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.742 [XNIO-1 task-2] 2ADZUHSgR4KmyM_ymtcOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:43.743 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fb2ab481 +07:00:43.748 [XNIO-1 task-2] UVVkWP0cThqmQtbhN5Ij0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:43.748 [XNIO-1 task-2] UVVkWP0cThqmQtbhN5Ij0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.748 [XNIO-1 task-2] UVVkWP0cThqmQtbhN5Ij0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.749 [XNIO-1 task-2] UVVkWP0cThqmQtbhN5Ij0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:43.753 [XNIO-1 task-2] nt6eZVS1TZmHZApTp7yKUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.753 [XNIO-1 task-2] nt6eZVS1TZmHZApTp7yKUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.754 [XNIO-1 task-2] nt6eZVS1TZmHZApTp7yKUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.754 [XNIO-1 task-2] nt6eZVS1TZmHZApTp7yKUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.770 [XNIO-1 task-2] 580AUX3SQ9O4aaoUNMWVPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.770 [XNIO-1 task-2] 580AUX3SQ9O4aaoUNMWVPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.770 [XNIO-1 task-2] 580AUX3SQ9O4aaoUNMWVPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.771 [XNIO-1 task-2] 580AUX3SQ9O4aaoUNMWVPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.840 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.841 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.841 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.842 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.843 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94ca0e72-e619-41c3-8c97-94abcb50","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:43.862 [XNIO-1 task-2] PkMyORRTS8GGsxd35OU4mg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:43.866 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.866 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.866 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.867 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.867 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:43.869 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d9eb08d-e547-42c8-8420-b5355b14c9e1", {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:43.869 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:43.869 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:43.869 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "e393d461-98f4-4ab4-a3da-262f94a2", {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:43.869 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:43.870 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e393d461-98f4-4ab4-a3da-262f94a2","clientDesc":"8d9eb08d-e547-42c8-8420-b5355b14c9e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:43.870 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:43.870 [XNIO-1 task-2] HigXbtzeRH6xALCwjyNfqA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:43.874 [XNIO-1 task-2] 3-r556J0T8CXRvlam-pVKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2, base path is set to: null +07:00:43.874 [XNIO-1 task-2] 3-r556J0T8CXRvlam-pVKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.874 [XNIO-1 task-2] 3-r556J0T8CXRvlam-pVKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:43.874 [XNIO-1 task-2] 3-r556J0T8CXRvlam-pVKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2, base path is set to: null +07:00:43.875 [XNIO-1 task-2] 3-r556J0T8CXRvlam-pVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "438d3759-5b50-4abe-ba8c-c6029b3055e2", "438d3759-5b50-4abe-ba8c-c6029b3055e2", clientId) +07:00:43.879 [XNIO-1 task-2] P5ZfEtE0S6y1mahoD989WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:43.879 [XNIO-1 task-2] P5ZfEtE0S6y1mahoD989WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.879 [XNIO-1 task-2] P5ZfEtE0S6y1mahoD989WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.881 [XNIO-1 task-2] P5ZfEtE0S6y1mahoD989WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:43.888 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.888 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.889 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.890 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d39f5932-c752-43c2-8647-c9499416","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:43.891 [XNIO-1 task-2] vsqarnnhQhWchJ93MDpwKQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:43.894 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.894 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.895 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "537c604f-05dc-499c-9539-822e6d539775", {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "be152289-dfb5-462d-8f60-35efed24", {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"be152289-dfb5-462d-8f60-35efed24","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:43.896 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:43.897 [XNIO-1 task-2] CBvSfqMTT9ugRk7ijhCK2g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:43.902 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.902 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.903 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.903 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.903 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.903 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.903 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.904 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:43.904 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:43.904 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.904 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.904 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"314b31b3-efbd-439b-b6b9-07d3c232","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:43.907 [XNIO-1 task-2] g4NPawUMR-6P_fZETJ3xjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:43.912 [XNIO-1 task-2] ezefsBEjRWKk0TX8cv_e3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:43.912 [XNIO-1 task-2] ezefsBEjRWKk0TX8cv_e3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.912 [XNIO-1 task-2] ezefsBEjRWKk0TX8cv_e3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.913 [XNIO-1 task-2] ezefsBEjRWKk0TX8cv_e3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:43.917 [XNIO-1 task-2] VsyVEKajSaCyYYG3ileozQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.918 [XNIO-1 task-2] VsyVEKajSaCyYYG3ileozQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.918 [XNIO-1 task-2] VsyVEKajSaCyYYG3ileozQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.945 [XNIO-1 task-2] roSbx0U2TIeqyx0GaOryKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.945 [XNIO-1 task-2] roSbx0U2TIeqyx0GaOryKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:43.945 [XNIO-1 task-2] roSbx0U2TIeqyx0GaOryKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:43.946 [XNIO-1 task-2] roSbx0U2TIeqyx0GaOryKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.953 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ff01db6e +07:00:43.955 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ff01db6e +07:00:43.965 [XNIO-1 task-2] -UfqgfrsTd6giEBpuvhbIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef6f0ae9-b19f-4f1f-b19d-8f66329ba633 +07:00:43.966 [XNIO-1 task-2] -UfqgfrsTd6giEBpuvhbIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:43.966 [XNIO-1 task-2] -UfqgfrsTd6giEBpuvhbIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:43.966 [XNIO-1 task-2] -UfqgfrsTd6giEBpuvhbIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef6f0ae9-b19f-4f1f-b19d-8f66329ba633 +07:00:43.971 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ff01db6e +07:00:44.020 [XNIO-1 task-2] -UfqgfrsTd6giEBpuvhbIw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.021 [XNIO-1 task-2] -UfqgfrsTd6giEBpuvhbIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:44.029 [XNIO-1 task-2] 6iyS-JQ8QWCwWmiM_InQaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.029 [XNIO-1 task-2] 6iyS-JQ8QWCwWmiM_InQaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.030 [XNIO-1 task-2] 6iyS-JQ8QWCwWmiM_InQaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.030 [XNIO-1 task-2] 6iyS-JQ8QWCwWmiM_InQaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.043 [XNIO-1 task-2] toqKooLDRBuHclvcBcgmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.043 [XNIO-1 task-2] toqKooLDRBuHclvcBcgmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.047 [XNIO-1 task-2] toqKooLDRBuHclvcBcgmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.070 [XNIO-1 task-2] VarWRt2yTfmyDxziScUszw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.070 [XNIO-1 task-2] VarWRt2yTfmyDxziScUszw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.071 [XNIO-1 task-2] VarWRt2yTfmyDxziScUszw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.076 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8be9e01b +07:00:44.078 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:16a43d3f-0b9e-4270-9f4b-8e237a82ff1b +07:00:44.080 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8be9e01b +07:00:44.105 [XNIO-1 task-2] r6O4SIekTseE0LGOXKGRnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:44.105 [XNIO-1 task-2] r6O4SIekTseE0LGOXKGRnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.105 [XNIO-1 task-2] r6O4SIekTseE0LGOXKGRnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.105 [XNIO-1 task-2] r6O4SIekTseE0LGOXKGRnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:44.150 [XNIO-1 task-2] r6O4SIekTseE0LGOXKGRnw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.150 [XNIO-1 task-2] r6O4SIekTseE0LGOXKGRnw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:44.153 [XNIO-1 task-2] f4R9mbVWT5KR4VY-M6S8-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.153 [XNIO-1 task-2] f4R9mbVWT5KR4VY-M6S8-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.154 [XNIO-1 task-2] f4R9mbVWT5KR4VY-M6S8-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.174 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.174 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.175 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.175 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.175 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.175 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.175 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.176 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.176 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.176 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.176 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.176 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c94360e-51c0-44b4-9806-03ab1f2a","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.176 [XNIO-1 task-2] pz9BmoYiT4-0gQEOjukIIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:44.186 [XNIO-1 task-2] Cx5dlGI-SSK9QABLi3T56Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038 +07:00:44.186 [XNIO-1 task-2] Cx5dlGI-SSK9QABLi3T56Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.186 [XNIO-1 task-2] Cx5dlGI-SSK9QABLi3T56Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.186 [XNIO-1 task-2] Cx5dlGI-SSK9QABLi3T56Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038 +07:00:44.192 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1dee9bf4 +07:00:44.194 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1dee9bf4 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:44.202 [XNIO-1 task-2] Cx5dlGI-SSK9QABLi3T56Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.205 [XNIO-1 task-2] KpandbwsRYidUaiZJXG59g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:44.205 [XNIO-1 task-2] KpandbwsRYidUaiZJXG59g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.205 [XNIO-1 task-2] KpandbwsRYidUaiZJXG59g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.205 [XNIO-1 task-2] KpandbwsRYidUaiZJXG59g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:44.206 [XNIO-1 task-2] KpandbwsRYidUaiZJXG59g DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", clientId) +07:00:44.211 [XNIO-1 task-2] se2T0t6RRlWDVzLuJBO7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.211 [XNIO-1 task-2] se2T0t6RRlWDVzLuJBO7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.211 [XNIO-1 task-2] se2T0t6RRlWDVzLuJBO7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.230 [XNIO-1 task-2] SWMujxxgSDuYyrlcO1kxjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.230 [XNIO-1 task-2] SWMujxxgSDuYyrlcO1kxjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.230 [XNIO-1 task-2] SWMujxxgSDuYyrlcO1kxjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.237 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:483db353-57e2-4802-974e-73caedeb2822 +07:00:44.250 [XNIO-1 task-2] vLRPyu04SXeLpXN01CEknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9713d99e-540c-40cc-84b0-76d09ef95a04, base path is set to: null +07:00:44.250 [XNIO-1 task-2] vLRPyu04SXeLpXN01CEknA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.250 [XNIO-1 task-2] vLRPyu04SXeLpXN01CEknA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.250 [XNIO-1 task-2] vLRPyu04SXeLpXN01CEknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9713d99e-540c-40cc-84b0-76d09ef95a04, base path is set to: null +07:00:44.251 [XNIO-1 task-2] vLRPyu04SXeLpXN01CEknA DEBUG com.networknt.schema.TypeValidator debug - validate( "9713d99e-540c-40cc-84b0-76d09ef95a04", "9713d99e-540c-40cc-84b0-76d09ef95a04", clientId) +07:00:44.260 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1dee9bf4 +07:00:44.263 [XNIO-1 task-2] h7PGDfwrR5a_FMWOlxikvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.263 [XNIO-1 task-2] h7PGDfwrR5a_FMWOlxikvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.263 [XNIO-1 task-2] h7PGDfwrR5a_FMWOlxikvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.265 [XNIO-1 task-2] h7PGDfwrR5a_FMWOlxikvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.285 [XNIO-1 task-2] qH6ZkO6RQy2lV8R4wKqWkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:44.285 [XNIO-1 task-2] qH6ZkO6RQy2lV8R4wKqWkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.285 [XNIO-1 task-2] qH6ZkO6RQy2lV8R4wKqWkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.285 [XNIO-1 task-2] qH6ZkO6RQy2lV8R4wKqWkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:44.320 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1dee9bf4 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:44.352 [XNIO-1 task-2] qH6ZkO6RQy2lV8R4wKqWkg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.361 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.361 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.362 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.363 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac8c480-fadb-4453-940a-1ee2545f","clientDesc":"535a9307-5111-468e-8008-88c5e484a54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.364 [XNIO-1 task-2] vHPkCf6UTl-ZBYYW-MckFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:44.373 [XNIO-1 task-2] B4dRIh5FTbiFDdAwGcv9eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.373 [XNIO-1 task-2] B4dRIh5FTbiFDdAwGcv9eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.373 [XNIO-1 task-2] B4dRIh5FTbiFDdAwGcv9eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.374 [XNIO-1 task-2] B4dRIh5FTbiFDdAwGcv9eg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.395 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.395 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.395 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG com.networknt.schema.TypeValidator debug - validate( "4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981", {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab84c6f7-62c1-47f5-a56b-8645dd9e", {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.396 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ab84c6f7-62c1-47f5-a56b-8645dd9e","clientDesc":"4f5dc76f-2f1f-48ab-b7de-4f0e6ac26981","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:44.401 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.401 [XNIO-1 task-2] Di8S88N-TuuWxWmRBm2YeA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.406 [XNIO-1 task-2] i4OcdjRhSrOz3ODCQuuYYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:44.406 [XNIO-1 task-2] i4OcdjRhSrOz3ODCQuuYYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.406 [XNIO-1 task-2] i4OcdjRhSrOz3ODCQuuYYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.407 [XNIO-1 task-2] i4OcdjRhSrOz3ODCQuuYYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:44.407 [XNIO-1 task-2] i4OcdjRhSrOz3ODCQuuYYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:44.419 [XNIO-1 task-2] i4OcdjRhSrOz3ODCQuuYYQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.422 [XNIO-1 task-2] 24CK2XnTR-mD0NRBZOUwHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.423 [XNIO-1 task-2] 24CK2XnTR-mD0NRBZOUwHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.423 [XNIO-1 task-2] 24CK2XnTR-mD0NRBZOUwHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.423 [XNIO-1 task-2] 24CK2XnTR-mD0NRBZOUwHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.437 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.438 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.438 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.438 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.439 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be72b53a-d892-4fd9-b6f5-2f6d3145","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.468 [XNIO-1 task-2] vVMOIVcJRAm4L2CXiIdjRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:44.472 [XNIO-1 task-2] HOePy3I4RFyZja5cQJrgyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:44.472 [XNIO-1 task-2] HOePy3I4RFyZja5cQJrgyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.472 [XNIO-1 task-2] HOePy3I4RFyZja5cQJrgyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.472 [XNIO-1 task-2] HOePy3I4RFyZja5cQJrgyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:44.477 [XNIO-1 task-2] 1nopJPhZSaWOjMJYfG1RAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null +07:00:44.477 [XNIO-1 task-2] 1nopJPhZSaWOjMJYfG1RAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.477 [XNIO-1 task-2] 1nopJPhZSaWOjMJYfG1RAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.477 [XNIO-1 task-2] 1nopJPhZSaWOjMJYfG1RAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null +07:00:44.477 [XNIO-1 task-2] 1nopJPhZSaWOjMJYfG1RAA DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:44.493 [XNIO-1 task-2] 1nopJPhZSaWOjMJYfG1RAA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.501 [XNIO-1 task-2] 68efHGW_TyuI-l7NK-jwqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.501 [XNIO-1 task-2] 68efHGW_TyuI-l7NK-jwqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.502 [XNIO-1 task-2] 68efHGW_TyuI-l7NK-jwqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.528 [XNIO-1 task-2] JCL7xeNYTduI3GRiMfUZxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.528 [XNIO-1 task-2] JCL7xeNYTduI3GRiMfUZxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.528 [XNIO-1 task-2] JCL7xeNYTduI3GRiMfUZxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.545 [XNIO-1 task-2] rslUN2wbTqCDbOPTyO3z7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null +07:00:44.545 [XNIO-1 task-2] rslUN2wbTqCDbOPTyO3z7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.545 [XNIO-1 task-2] rslUN2wbTqCDbOPTyO3z7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.545 [XNIO-1 task-2] rslUN2wbTqCDbOPTyO3z7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null +07:00:44.546 [XNIO-1 task-2] rslUN2wbTqCDbOPTyO3z7g DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", clientId) +07:00:44.550 [XNIO-1 task-2] NyGB_V8eSOOM12MkXcpxTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a0a7ed57-363d-456a-87af-991f73cbc05a +07:00:44.550 [XNIO-1 task-2] NyGB_V8eSOOM12MkXcpxTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.550 [XNIO-1 task-2] NyGB_V8eSOOM12MkXcpxTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.550 [XNIO-1 task-2] NyGB_V8eSOOM12MkXcpxTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a0a7ed57-363d-456a-87af-991f73cbc05a +07:00:44.557 [XNIO-1 task-2] WxTN6tKvSyWaU-O6MGsXGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.557 [XNIO-1 task-2] WxTN6tKvSyWaU-O6MGsXGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.557 [XNIO-1 task-2] WxTN6tKvSyWaU-O6MGsXGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.575 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.575 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.576 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.576 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.576 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.576 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.576 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.577 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.577 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.577 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.577 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.577 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64ea09bb-5f9c-4569-b303-4eaede03","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.585 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f3cdc711 +07:00:44.590 [XNIO-1 task-2] eJb5ljoaTn2HwFf9yytsJA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.595 [XNIO-1 task-2] 7mLjcwI2R-up13hWOt26Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.596 [XNIO-1 task-2] 7mLjcwI2R-up13hWOt26Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.596 [XNIO-1 task-2] 7mLjcwI2R-up13hWOt26Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.625 [XNIO-1 task-2] 3ahZKwU7QZWc1mE9sxOGyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d345606f-20c4-4c5d-8684-fe1271615bbf, base path is set to: null +07:00:44.625 [XNIO-1 task-2] 3ahZKwU7QZWc1mE9sxOGyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.625 [XNIO-1 task-2] 3ahZKwU7QZWc1mE9sxOGyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.626 [XNIO-1 task-2] 3ahZKwU7QZWc1mE9sxOGyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d345606f-20c4-4c5d-8684-fe1271615bbf, base path is set to: null +07:00:44.626 [XNIO-1 task-2] 3ahZKwU7QZWc1mE9sxOGyw DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:44.638 [XNIO-1 task-2] 3ahZKwU7QZWc1mE9sxOGyw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/d345606f-20c4-4c5d-8684-fe1271615bbf} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.643 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.643 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.644 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.644 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.644 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.644 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.645 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.645 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.645 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.645 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.645 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.645 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80294a72-d491-4cec-8232-7de98da8","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.645 [XNIO-1 task-2] hkJa3LuOTt-PfPWq1deIwQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:44.650 [XNIO-1 task-2] fmiyEne6Qum6gpsp9N9m7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.650 [XNIO-1 task-2] fmiyEne6Qum6gpsp9N9m7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.651 [XNIO-1 task-2] fmiyEne6Qum6gpsp9N9m7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.741 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.741 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.743 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "f4e96753-ee91-4de4-ae88-6277e285d75d", {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "cae57e46-eba5-4d4a-8132-1241963f", {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cae57e46-eba5-4d4a-8132-1241963f","clientDesc":"f4e96753-ee91-4de4-ae88-6277e285d75d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:44.747 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.748 [XNIO-1 task-2] F64ShL5kQWWkpLgzbdpi1A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.757 [XNIO-1 task-2] Gso89XfESfGzuB7tz1jANQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9ad75b4a-5f87-45be-a771-1bd505f4f61d, base path is set to: null +07:00:44.757 [XNIO-1 task-2] Gso89XfESfGzuB7tz1jANQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.757 [XNIO-1 task-2] Gso89XfESfGzuB7tz1jANQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.757 [XNIO-1 task-2] Gso89XfESfGzuB7tz1jANQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9ad75b4a-5f87-45be-a771-1bd505f4f61d, base path is set to: null +07:00:44.758 [XNIO-1 task-2] Gso89XfESfGzuB7tz1jANQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9ad75b4a-5f87-45be-a771-1bd505f4f61d", "9ad75b4a-5f87-45be-a771-1bd505f4f61d", clientId) +07:00:44.771 [XNIO-1 task-2] 8ZxGqGYJS6KU4pQROdVpYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.771 [XNIO-1 task-2] 8ZxGqGYJS6KU4pQROdVpYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.772 [XNIO-1 task-2] 8ZxGqGYJS6KU4pQROdVpYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.772 [XNIO-1 task-2] 8ZxGqGYJS6KU4pQROdVpYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.789 [XNIO-1 task-2] tYVrGvOET3eBQyUHkrB8vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d345606f-20c4-4c5d-8684-fe1271615bbf +07:00:44.789 [XNIO-1 task-2] tYVrGvOET3eBQyUHkrB8vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.789 [XNIO-1 task-2] tYVrGvOET3eBQyUHkrB8vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.789 [XNIO-1 task-2] tYVrGvOET3eBQyUHkrB8vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d345606f-20c4-4c5d-8684-fe1271615bbf +07:00:44.815 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f3cdc711 +07:00:44.815 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.816 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.816 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "fadbe813-c0c5-4c2d-8d36-d8e330d920ad", {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "7b5aca98-087c-4a61-a48a-1cfff4d3", {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.817 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7b5aca98-087c-4a61-a48a-1cfff4d3","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:44.818 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.818 [XNIO-1 task-2] UfhtNmESS0CPKN41SRKMqg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.821 [XNIO-1 task-2] KFq_HsMVTHW5Cm8nMFar-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074, base path is set to: null +07:00:44.822 [XNIO-1 task-2] KFq_HsMVTHW5Cm8nMFar-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.822 [XNIO-1 task-2] KFq_HsMVTHW5Cm8nMFar-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.822 [XNIO-1 task-2] KFq_HsMVTHW5Cm8nMFar-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074, base path is set to: null +07:00:44.822 [XNIO-1 task-2] KFq_HsMVTHW5Cm8nMFar-w DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", clientId) +07:00:44.831 [XNIO-1 task-2] KWfb6siMSUyh5vi_-mvMzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074 +07:00:44.831 [XNIO-1 task-2] KWfb6siMSUyh5vi_-mvMzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.831 [XNIO-1 task-2] KWfb6siMSUyh5vi_-mvMzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.832 [XNIO-1 task-2] KWfb6siMSUyh5vi_-mvMzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074 +07:00:44.834 [XNIO-1 task-2] 5YRg_2vdQuyEzFn5rvUOHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074, base path is set to: null +07:00:44.835 [XNIO-1 task-2] 5YRg_2vdQuyEzFn5rvUOHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.835 [XNIO-1 task-2] 5YRg_2vdQuyEzFn5rvUOHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.835 [XNIO-1 task-2] 5YRg_2vdQuyEzFn5rvUOHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074, base path is set to: null +07:00:44.835 [XNIO-1 task-2] 5YRg_2vdQuyEzFn5rvUOHg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", clientId) +07:00:44.840 [XNIO-1 task-2] ladnpcvES3u_57cGZ2b9ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:44.841 [XNIO-1 task-2] ladnpcvES3u_57cGZ2b9ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.841 [XNIO-1 task-2] ladnpcvES3u_57cGZ2b9ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.841 [XNIO-1 task-2] ladnpcvES3u_57cGZ2b9ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:44.855 [XNIO-1 task-2] ladnpcvES3u_57cGZ2b9ww ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.855 [XNIO-1 task-2] ladnpcvES3u_57cGZ2b9ww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:44.861 [XNIO-1 task-2] 7hcOm-pES2OZwlAeRTMV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.862 [XNIO-1 task-2] 7hcOm-pES2OZwlAeRTMV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.862 [XNIO-1 task-2] 7hcOm-pES2OZwlAeRTMV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.862 [XNIO-1 task-2] 7hcOm-pES2OZwlAeRTMV2g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.872 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:525d03da +07:00:44.876 [XNIO-1 task-2] OlhB9UCbS3S0B7t6rnHdKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.877 [XNIO-1 task-2] OlhB9UCbS3S0B7t6rnHdKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.877 [XNIO-1 task-2] OlhB9UCbS3S0B7t6rnHdKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.882 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:869b1cfc-cd78-40db-80e0-40d9762b482c +07:00:44.886 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:869b1cfc-cd78-40db-80e0-40d9762b482c +07:00:44.900 [XNIO-1 task-2] Bj6r-3E0REmQA3HRniu1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.900 [XNIO-1 task-2] Bj6r-3E0REmQA3HRniu1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.900 [XNIO-1 task-2] Bj6r-3E0REmQA3HRniu1eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.901 [XNIO-1 task-2] Bj6r-3E0REmQA3HRniu1eQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.911 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.912 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.912 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "967f2f24-f132-405b-b81f-b6a6ec5f35c5", {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9beb7b0-21e0-49d2-bad9-e3b9c34d", {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.913 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e9beb7b0-21e0-49d2-bad9-e3b9c34d","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:44.914 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.914 [XNIO-1 task-2] S1ufwnHYRrqd7v8i96UyPQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:44.918 [XNIO-1 task-2] RI4CQLkMQNadfu-_-qa_Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.918 [XNIO-1 task-2] RI4CQLkMQNadfu-_-qa_Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.918 [XNIO-1 task-2] RI4CQLkMQNadfu-_-qa_Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.919 [XNIO-1 task-2] RI4CQLkMQNadfu-_-qa_Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.940 [XNIO-1 task-2] 0_ONQbrvTTeqqJ9LL4Uu1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.940 [XNIO-1 task-2] 0_ONQbrvTTeqqJ9LL4Uu1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.941 [XNIO-1 task-2] 0_ONQbrvTTeqqJ9LL4Uu1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:44.963 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e8995a98 +07:00:44.965 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e8995a98 +07:00:44.967 [XNIO-1 task-2] PLw-UuQlS-GRPNLWnAa9Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbe1be3e-c8ed-44e5-812c-7a07602e8b2f +07:00:44.967 [XNIO-1 task-2] PLw-UuQlS-GRPNLWnAa9Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.967 [XNIO-1 task-2] PLw-UuQlS-GRPNLWnAa9Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:44.967 [XNIO-1 task-2] PLw-UuQlS-GRPNLWnAa9Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbe1be3e-c8ed-44e5-812c-7a07602e8b2f +07:00:44.988 [XNIO-1 task-2] MZpHVPKqSOGA4tseE6fz_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1, base path is set to: null +07:00:44.989 [XNIO-1 task-2] MZpHVPKqSOGA4tseE6fz_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:44.989 [XNIO-1 task-2] MZpHVPKqSOGA4tseE6fz_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:44.989 [XNIO-1 task-2] MZpHVPKqSOGA4tseE6fz_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1, base path is set to: null +07:00:44.989 [XNIO-1 task-2] MZpHVPKqSOGA4tseE6fz_g DEBUG com.networknt.schema.TypeValidator debug - validate( "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", clientId) +07:00:44.994 [XNIO-1 task-2] R2ro-qylTUyUE-_Y7q7Rrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.994 [XNIO-1 task-2] R2ro-qylTUyUE-_Y7q7Rrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.994 [XNIO-1 task-2] R2ro-qylTUyUE-_Y7q7Rrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:44.994 [XNIO-1 task-2] R2ro-qylTUyUE-_Y7q7Rrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.021 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:47fe2d99-c0d6-4aa5-9160-df5fe2bf1575 +07:00:45.053 [XNIO-1 task-2] EaBcAX6aQlOW_srkF5eg7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:45.054 [XNIO-1 task-2] EaBcAX6aQlOW_srkF5eg7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.054 [XNIO-1 task-2] EaBcAX6aQlOW_srkF5eg7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.054 [XNIO-1 task-2] EaBcAX6aQlOW_srkF5eg7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:45.054 [XNIO-1 task-2] EaBcAX6aQlOW_srkF5eg7g DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", clientId) +07:00:45.058 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.058 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9c0d1d54-1f47-494b-9b3c-6fff87a98379", {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ed118a66-3887-4e1a-b1a6-aaa833fa", {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.059 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.060 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ed118a66-3887-4e1a-b1a6-aaa833fa","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.060 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.060 [XNIO-1 task-2] px-HZe1aRJqSATaEY6lJ8Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.063 [XNIO-1 task-2] TIyvTsPoQKyJhtVvxI2B_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:45.063 [XNIO-1 task-2] TIyvTsPoQKyJhtVvxI2B_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.063 [XNIO-1 task-2] TIyvTsPoQKyJhtVvxI2B_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.063 [XNIO-1 task-2] TIyvTsPoQKyJhtVvxI2B_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:45.063 [XNIO-1 task-2] TIyvTsPoQKyJhtVvxI2B_A DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", clientId) +07:00:45.066 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.067 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.067 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.067 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.067 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9c0d1d54-1f47-494b-9b3c-6fff87a98379", {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4a7dac7f-2e3a-4730-834d-dadff38a", {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4a7dac7f-2e3a-4730-834d-dadff38a","clientDesc":"9c0d1d54-1f47-494b-9b3c-6fff87a98379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.068 [XNIO-1 task-2] 8ONpNV63QAKF5be-SmLQgQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.071 [XNIO-1 task-2] L8TV2gTWSee1KRrzezKliA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:45.071 [XNIO-1 task-2] L8TV2gTWSee1KRrzezKliA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.071 [XNIO-1 task-2] L8TV2gTWSee1KRrzezKliA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.071 [XNIO-1 task-2] L8TV2gTWSee1KRrzezKliA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce, base path is set to: null +07:00:45.072 [XNIO-1 task-2] L8TV2gTWSee1KRrzezKliA DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", clientId) +07:00:45.083 [XNIO-1 task-2] gjX72nQjQUql49XZRdmXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.083 [XNIO-1 task-2] gjX72nQjQUql49XZRdmXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.084 [XNIO-1 task-2] gjX72nQjQUql49XZRdmXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.084 [XNIO-1 task-2] gjX72nQjQUql49XZRdmXFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.108 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.110 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.111 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.111 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.111 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG com.networknt.schema.TypeValidator debug - validate( "ca9e55c6-89fe-4323-96cb-45d4545d6d55", {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG com.networknt.schema.TypeValidator debug - validate( "ea43602f-b658-4def-9bb8-8059b678", {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ea43602f-b658-4def-9bb8-8059b678","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.112 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.117 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:47fe2d99-c0d6-4aa5-9160-df5fe2bf1575 +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.118 [XNIO-1 task-2] jmYVFZe5THCayFyGLDs61g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:45.123 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.123 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.124 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "ca9e55c6-89fe-4323-96cb-45d4545d6d55", {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "fc3d64d1-ee5b-4816-bfb0-463d37a9", {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fc3d64d1-ee5b-4816-bfb0-463d37a9","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.125 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.126 [XNIO-1 task-2] vGsiaoNPTRy5w05ku4xh1A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.134 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.134 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.135 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.135 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.136 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b930371-d28c-4889-9667-0a4d9131","clientDesc":"18c227c3-3cf3-47f8-8280-2efb2602d165","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.137 [XNIO-1 task-2] e5lG8E05SCOfwvxbg5j_Og ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:45.142 [XNIO-1 task-2] CIfLtPS0Quibi_5fTlBKQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.142 [XNIO-1 task-2] CIfLtPS0Quibi_5fTlBKQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.142 [XNIO-1 task-2] CIfLtPS0Quibi_5fTlBKQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.143 [XNIO-1 task-2] CIfLtPS0Quibi_5fTlBKQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.169 [XNIO-1 task-2] _3hsZAALTwSVP5PC8LV9Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0a7ed57-363d-456a-87af-991f73cbc05a, base path is set to: null +07:00:45.169 [XNIO-1 task-2] _3hsZAALTwSVP5PC8LV9Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.169 [XNIO-1 task-2] _3hsZAALTwSVP5PC8LV9Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.169 [XNIO-1 task-2] _3hsZAALTwSVP5PC8LV9Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0a7ed57-363d-456a-87af-991f73cbc05a, base path is set to: null +07:00:45.170 [XNIO-1 task-2] _3hsZAALTwSVP5PC8LV9Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0a7ed57-363d-456a-87af-991f73cbc05a", "a0a7ed57-363d-456a-87af-991f73cbc05a", clientId) +07:00:45.188 [XNIO-1 task-2] 4ckr6NAUTPeIzuGhcGNJpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/57fcc2d8-e21b-49d4-a719-0d86c76ab05d, base path is set to: null +07:00:45.189 [XNIO-1 task-2] 4ckr6NAUTPeIzuGhcGNJpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.189 [XNIO-1 task-2] 4ckr6NAUTPeIzuGhcGNJpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.189 [XNIO-1 task-2] 4ckr6NAUTPeIzuGhcGNJpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/57fcc2d8-e21b-49d4-a719-0d86c76ab05d, base path is set to: null +07:00:45.190 [XNIO-1 task-2] 4ckr6NAUTPeIzuGhcGNJpw DEBUG com.networknt.schema.TypeValidator debug - validate( "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", clientId) +07:00:45.218 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:525d03da +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:45.278 [XNIO-1 task-2] 4ckr6NAUTPeIzuGhcGNJpw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/57fcc2d8-e21b-49d4-a719-0d86c76ab05d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.283 [XNIO-1 task-2] JnRhbbvETNCUCyOKUM7HnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:45.284 [XNIO-1 task-2] JnRhbbvETNCUCyOKUM7HnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.284 [XNIO-1 task-2] JnRhbbvETNCUCyOKUM7HnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.285 [XNIO-1 task-2] JnRhbbvETNCUCyOKUM7HnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:45.285 [XNIO-1 task-2] JnRhbbvETNCUCyOKUM7HnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", clientId) +07:00:45.293 [XNIO-1 task-2] 8fvK7MHDS-a269j961sxmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.293 [XNIO-1 task-2] 8fvK7MHDS-a269j961sxmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.294 [XNIO-1 task-2] 8fvK7MHDS-a269j961sxmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.326 [XNIO-1 task-2] Ondel4tuT9OFYD9E2Hyc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.326 [XNIO-1 task-2] Ondel4tuT9OFYD9E2Hyc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.327 [XNIO-1 task-2] Ondel4tuT9OFYD9E2Hyc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.352 [XNIO-1 task-2] kbnu5jyLTTus9N76h6ogWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.352 [XNIO-1 task-2] kbnu5jyLTTus9N76h6ogWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.353 [XNIO-1 task-2] kbnu5jyLTTus9N76h6ogWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.378 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.378 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.379 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.380 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.380 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.380 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "6219e3c7-204b-4b17-8312-2cbf5acbac36", {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.380 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.380 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.381 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "2cca61c5-1aed-4001-9932-e961ca1d", {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.381 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.381 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2cca61c5-1aed-4001-9932-e961ca1d","clientDesc":"6219e3c7-204b-4b17-8312-2cbf5acbac36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.381 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.381 [XNIO-1 task-2] 1oMBA0SvQUKeKvGqIVmXlw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.382 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e8995a98 +07:00:45.388 [XNIO-1 task-2] 1Y9O4ogzTa2qkT6Sf93eJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333, base path is set to: null +07:00:45.389 [XNIO-1 task-2] 1Y9O4ogzTa2qkT6Sf93eJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.389 [XNIO-1 task-2] 1Y9O4ogzTa2qkT6Sf93eJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.389 [XNIO-1 task-2] 1Y9O4ogzTa2qkT6Sf93eJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333, base path is set to: null +07:00:45.389 [XNIO-1 task-2] 1Y9O4ogzTa2qkT6Sf93eJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1880c1ae-3333-4c37-ad0c-78954f005333", "1880c1ae-3333-4c37-ad0c-78954f005333", clientId) +07:00:45.394 [XNIO-1 task-2] VdSJSzzaTQKk-XwlJMGoDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.394 [XNIO-1 task-2] VdSJSzzaTQKk-XwlJMGoDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.394 [XNIO-1 task-2] VdSJSzzaTQKk-XwlJMGoDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.395 [XNIO-1 task-2] VdSJSzzaTQKk-XwlJMGoDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.413 [XNIO-1 task-2] iIRURmb3RqOrePAqanr6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/57fcc2d8-e21b-49d4-a719-0d86c76ab05d +07:00:45.413 [XNIO-1 task-2] iIRURmb3RqOrePAqanr6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.413 [XNIO-1 task-2] iIRURmb3RqOrePAqanr6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:45.414 [XNIO-1 task-2] iIRURmb3RqOrePAqanr6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/57fcc2d8-e21b-49d4-a719-0d86c76ab05d +07:00:45.425 [XNIO-1 task-2] iIRURmb3RqOrePAqanr6Qg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.425 [XNIO-1 task-2] iIRURmb3RqOrePAqanr6Qg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:45.432 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf5b7127-88af-4fc0-b036-1bc862589f2c +07:00:45.433 [XNIO-1 task-2] VCFi0xudRRW86gFHURVWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.434 [XNIO-1 task-2] VCFi0xudRRW86gFHURVWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.434 [XNIO-1 task-2] VCFi0xudRRW86gFHURVWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.434 [XNIO-1 task-2] VCFi0xudRRW86gFHURVWPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.453 [XNIO-1 task-2] geiq0YJJT3ysb8WKXIMMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d312c992-d2a1-4166-b52c-8e6bf086a9ac +07:00:45.453 [XNIO-1 task-2] geiq0YJJT3ysb8WKXIMMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.453 [XNIO-1 task-2] geiq0YJJT3ysb8WKXIMMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:45.453 [XNIO-1 task-2] geiq0YJJT3ysb8WKXIMMKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d312c992-d2a1-4166-b52c-8e6bf086a9ac +07:00:45.459 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bf5b7127-88af-4fc0-b036-1bc862589f2c +07:00:45.472 [XNIO-1 task-2] 8DCB9JoRSyK8WJwG_qAELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:45.472 [XNIO-1 task-2] 8DCB9JoRSyK8WJwG_qAELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.472 [XNIO-1 task-2] 8DCB9JoRSyK8WJwG_qAELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:45.472 [XNIO-1 task-2] 8DCB9JoRSyK8WJwG_qAELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:45.476 [XNIO-1 task-2] mmqH25EyT9O1w597oNaQrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.476 [XNIO-1 task-2] mmqH25EyT9O1w597oNaQrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.476 [XNIO-1 task-2] mmqH25EyT9O1w597oNaQrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.502 [XNIO-1 task-2] FZ0qaaf3RSOMR-AaYfPF3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.502 [XNIO-1 task-2] FZ0qaaf3RSOMR-AaYfPF3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.502 [XNIO-1 task-2] FZ0qaaf3RSOMR-AaYfPF3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.502 [XNIO-1 task-2] FZ0qaaf3RSOMR-AaYfPF3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.515 [XNIO-1 task-2] CiZz63M8SGC_OlYZx_Nn9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.515 [XNIO-1 task-2] CiZz63M8SGC_OlYZx_Nn9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.515 [XNIO-1 task-2] CiZz63M8SGC_OlYZx_Nn9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.547 [XNIO-1 task-2] P1OwrsTfRP-M43ww52lgbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.547 [XNIO-1 task-2] P1OwrsTfRP-M43ww52lgbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.547 [XNIO-1 task-2] P1OwrsTfRP-M43ww52lgbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.573 [XNIO-1 task-2] CbaSXmowQrOSBN6_Xagpww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.573 [XNIO-1 task-2] CbaSXmowQrOSBN6_Xagpww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.573 [XNIO-1 task-2] CbaSXmowQrOSBN6_Xagpww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.574 [XNIO-1 task-2] CbaSXmowQrOSBN6_Xagpww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.577 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:294f40bd +07:00:45.579 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:294f40bd +07:00:45.591 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.591 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.592 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.592 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.593 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.594 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d31a8af-70e6-422b-88a1-3c4fae7989ea", {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.594 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.594 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.594 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4ee8226-0e8f-472a-8f75-f677eb72", {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.594 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.594 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e4ee8226-0e8f-472a-8f75-f677eb72","clientDesc":"1d31a8af-70e6-422b-88a1-3c4fae7989ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.594 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.618 [XNIO-1 task-2] vMQiuLwlQzCsuJUey6XSmQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.627 [XNIO-1 task-2] 3QYuJ5MIT_KIjb3kABEJoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.627 [XNIO-1 task-2] 3QYuJ5MIT_KIjb3kABEJoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.627 [XNIO-1 task-2] 3QYuJ5MIT_KIjb3kABEJoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.627 [XNIO-1 task-2] 3QYuJ5MIT_KIjb3kABEJoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.645 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.645 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.646 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.646 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.647 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.647 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.647 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG com.networknt.schema.TypeValidator debug - validate( "99bb8571-a867-4371-9c49-d8cf6c91f710", {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.647 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.647 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.647 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.648 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.649 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.650 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16caa3bc-03c7-41dc-a3cd-9fd40b48","clientDesc":"99bb8571-a867-4371-9c49-d8cf6c91f710","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.651 [XNIO-1 task-2] G1mMu52AQCC1U_evkdvyCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:45.655 [XNIO-1 task-2] pHP1c-rYSYClu19a7qTOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.655 [XNIO-1 task-2] pHP1c-rYSYClu19a7qTOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.655 [XNIO-1 task-2] pHP1c-rYSYClu19a7qTOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.655 [XNIO-1 task-2] pHP1c-rYSYClu19a7qTOBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.673 [XNIO-1 task-2] bD09O81KQjeOZSfQTeiM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.673 [XNIO-1 task-2] bD09O81KQjeOZSfQTeiM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.674 [XNIO-1 task-2] bD09O81KQjeOZSfQTeiM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.674 [XNIO-1 task-2] bD09O81KQjeOZSfQTeiM4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.732 [XNIO-1 task-2] vvi71hc1TB2ciHKUO4Dfqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.732 [XNIO-1 task-2] vvi71hc1TB2ciHKUO4Dfqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.732 [XNIO-1 task-2] vvi71hc1TB2ciHKUO4Dfqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.732 [XNIO-1 task-2] vvi71hc1TB2ciHKUO4Dfqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.756 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:294f40bd +07:00:45.771 [XNIO-1 task-2] -f3yDmRnTWmjNK1kEpiOaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1 +07:00:45.771 [XNIO-1 task-2] -f3yDmRnTWmjNK1kEpiOaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.771 [XNIO-1 task-2] -f3yDmRnTWmjNK1kEpiOaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:45.771 [XNIO-1 task-2] -f3yDmRnTWmjNK1kEpiOaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1 +07:00:45.775 [XNIO-1 task-2] P_03p_XOSIyAcUnQz_dyhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1, base path is set to: null +07:00:45.776 [XNIO-1 task-2] P_03p_XOSIyAcUnQz_dyhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.776 [XNIO-1 task-2] P_03p_XOSIyAcUnQz_dyhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.776 [XNIO-1 task-2] P_03p_XOSIyAcUnQz_dyhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1, base path is set to: null +07:00:45.776 [XNIO-1 task-2] P_03p_XOSIyAcUnQz_dyhw DEBUG com.networknt.schema.TypeValidator debug - validate( "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:45.789 [XNIO-1 task-2] P_03p_XOSIyAcUnQz_dyhw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.794 [XNIO-1 task-2] Rk93fpMvTA2pjSQCCE1kPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829, base path is set to: null +07:00:45.795 [XNIO-1 task-2] Rk93fpMvTA2pjSQCCE1kPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.795 [XNIO-1 task-2] Rk93fpMvTA2pjSQCCE1kPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.795 [XNIO-1 task-2] Rk93fpMvTA2pjSQCCE1kPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829, base path is set to: null +07:00:45.795 [XNIO-1 task-2] Rk93fpMvTA2pjSQCCE1kPw DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", clientId) +07:00:45.802 [XNIO-1 task-2] QvmiDaTYTXmnVgPt-HddgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829 +07:00:45.802 [XNIO-1 task-2] QvmiDaTYTXmnVgPt-HddgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.802 [XNIO-1 task-2] QvmiDaTYTXmnVgPt-HddgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:45.802 [XNIO-1 task-2] QvmiDaTYTXmnVgPt-HddgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829 +07:00:45.806 [XNIO-1 task-2] 3VV-srL-SMaoJg0aBjgSqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.806 [XNIO-1 task-2] 3VV-srL-SMaoJg0aBjgSqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.806 [XNIO-1 task-2] 3VV-srL-SMaoJg0aBjgSqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.808 [XNIO-1 task-2] 3VV-srL-SMaoJg0aBjgSqg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.831 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.833 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.838 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.839 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.840 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.841 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.841 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.841 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.841 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.841 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.841 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.841 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4417bb62-fcec-4fef-afd2-9957185b","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.842 [XNIO-1 task-2] CTaUlWLaTxiK3g77V0DI3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:45.854 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.856 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.856 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.857 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.857 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.857 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d1c4a78-09a1-4f6d-936d-cf0e85803585", {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.858 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.860 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.860 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG com.networknt.schema.TypeValidator debug - validate( "c60ebda5-9e9f-4807-8aee-9bc2dce8", {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.862 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.862 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c60ebda5-9e9f-4807-8aee-9bc2dce8","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.866 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.866 [XNIO-1 task-2] xGrqpcZbRvOgxIwT8SExSA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.872 [XNIO-1 task-2] bZNXmd2MRUq1wSmzkm5C_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.872 [XNIO-1 task-2] bZNXmd2MRUq1wSmzkm5C_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.873 [XNIO-1 task-2] bZNXmd2MRUq1wSmzkm5C_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.879 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cf8fcfb9-c7fe-4bb2-a588-4e61b9309939 +07:00:45.885 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cf8fcfb9-c7fe-4bb2-a588-4e61b9309939 +07:00:45.897 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.897 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.898 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.899 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.899 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.899 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG com.networknt.schema.TypeValidator debug - validate( "6222d199-eb97-4e70-ac42-b100b4fe196f", {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.900 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.900 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.900 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG com.networknt.schema.TypeValidator debug - validate( "a144cbe1-5a98-42ec-a79e-29a81a78", {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.900 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.900 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a144cbe1-5a98-42ec-a79e-29a81a78","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.901 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.901 [XNIO-1 task-2] H0qTO7wXQy-XjkFR2W1d9A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.908 [XNIO-1 task-2] Etbl3FuVQ7yv55D6FHJjhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.908 [XNIO-1 task-2] Etbl3FuVQ7yv55D6FHJjhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.908 [XNIO-1 task-2] Etbl3FuVQ7yv55D6FHJjhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.909 [XNIO-1 task-2] Etbl3FuVQ7yv55D6FHJjhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.936 [XNIO-1 task-2] usAhn-b2Sp-m4xG66yhjQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333, base path is set to: null +07:00:45.937 [XNIO-1 task-2] usAhn-b2Sp-m4xG66yhjQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.937 [XNIO-1 task-2] usAhn-b2Sp-m4xG66yhjQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:45.937 [XNIO-1 task-2] usAhn-b2Sp-m4xG66yhjQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333, base path is set to: null +07:00:45.937 [XNIO-1 task-2] usAhn-b2Sp-m4xG66yhjQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1880c1ae-3333-4c37-ad0c-78954f005333", "1880c1ae-3333-4c37-ad0c-78954f005333", clientId) +07:00:45.942 [XNIO-1 task-2] ttUGipSIQRmW1g3JG0xBcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.942 [XNIO-1 task-2] ttUGipSIQRmW1g3JG0xBcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.943 [XNIO-1 task-2] ttUGipSIQRmW1g3JG0xBcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.946 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e8995a98 +07:00:45.970 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.970 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.972 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:45.972 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG com.networknt.schema.TypeValidator debug - validate( "967f2f24-f132-405b-b81f-b6a6ec5f35c5", {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG com.networknt.schema.TypeValidator debug - validate( "419cc557-7480-405c-a2fb-187f81c8", {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"419cc557-7480-405c-a2fb-187f81c8","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.973 [XNIO-1 task-2] hVLLx4knRP-J5NZ05cJAAg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.977 [XNIO-1 task-2] DMGNV66mRZie9xq7kzkplQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:45.978 [XNIO-1 task-2] DMGNV66mRZie9xq7kzkplQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:45.978 [XNIO-1 task-2] DMGNV66mRZie9xq7kzkplQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.004 [XNIO-1 task-2] _AjRdGQqRROvESQJq-didg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c63596fb-21ac-4d94-9cb1-10ebc0bc1106, base path is set to: null +07:00:46.004 [XNIO-1 task-2] _AjRdGQqRROvESQJq-didg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.005 [XNIO-1 task-2] _AjRdGQqRROvESQJq-didg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.006 [XNIO-1 task-2] _AjRdGQqRROvESQJq-didg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c63596fb-21ac-4d94-9cb1-10ebc0bc1106, base path is set to: null +07:00:46.006 [XNIO-1 task-2] _AjRdGQqRROvESQJq-didg DEBUG com.networknt.schema.TypeValidator debug - validate( "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", clientId) +07:00:46.013 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.013 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.013 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "26d499f2-92ef-4fb2-8607-fd1fd01a6664", {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b6ae9c8-9e59-4221-b725-8c74aada", {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.014 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5b6ae9c8-9e59-4221-b725-8c74aada","clientDesc":"26d499f2-92ef-4fb2-8607-fd1fd01a6664","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.015 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.015 [XNIO-1 task-2] sNVqtCulSWiz6NkPIDGgqQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.019 [XNIO-1 task-2] iZBY7oe-SD-1sRI9-XYkbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.019 [XNIO-1 task-2] iZBY7oe-SD-1sRI9-XYkbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.019 [XNIO-1 task-2] iZBY7oe-SD-1sRI9-XYkbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.020 [XNIO-1 task-2] iZBY7oe-SD-1sRI9-XYkbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.032 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ffd1a05d-9c10-4945-9708-b144bffe6723 +07:00:46.040 [XNIO-1 task-2] 9qUfn-heTkiCVU6q0zSniQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.040 [XNIO-1 task-2] 9qUfn-heTkiCVU6q0zSniQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.040 [XNIO-1 task-2] 9qUfn-heTkiCVU6q0zSniQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.041 [XNIO-1 task-2] 9qUfn-heTkiCVU6q0zSniQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.058 [XNIO-1 task-2] WR7CIczKSIOxOU3s69zA0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.058 [XNIO-1 task-2] WR7CIczKSIOxOU3s69zA0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.058 [XNIO-1 task-2] WR7CIczKSIOxOU3s69zA0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.067 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ffd1a05d-9c10-4945-9708-b144bffe6723 +07:00:46.085 [XNIO-1 task-2] qvppoHTFSdG7dH1EXQA1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ac39abed-6d09-4db9-9adc-2b5868dae136 +07:00:46.086 [XNIO-1 task-2] qvppoHTFSdG7dH1EXQA1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.086 [XNIO-1 task-2] qvppoHTFSdG7dH1EXQA1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.086 [XNIO-1 task-2] qvppoHTFSdG7dH1EXQA1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ac39abed-6d09-4db9-9adc-2b5868dae136 +07:00:46.088 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:294f40bd +07:00:46.106 [XNIO-1 task-2] rFKBpNpeQoKgiAJQgjQRYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829 +07:00:46.106 [XNIO-1 task-2] rFKBpNpeQoKgiAJQgjQRYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.106 [XNIO-1 task-2] rFKBpNpeQoKgiAJQgjQRYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.106 [XNIO-1 task-2] rFKBpNpeQoKgiAJQgjQRYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829 +07:00:46.110 [XNIO-1 task-2] e9ZHDVILS2qnO2nZXzECpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4524324b-3b61-43ac-89f8-c0a941476a41, base path is set to: null +07:00:46.110 [XNIO-1 task-2] e9ZHDVILS2qnO2nZXzECpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.110 [XNIO-1 task-2] e9ZHDVILS2qnO2nZXzECpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.110 [XNIO-1 task-2] e9ZHDVILS2qnO2nZXzECpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4524324b-3b61-43ac-89f8-c0a941476a41, base path is set to: null +07:00:46.111 [XNIO-1 task-2] e9ZHDVILS2qnO2nZXzECpw DEBUG com.networknt.schema.TypeValidator debug - validate( "4524324b-3b61-43ac-89f8-c0a941476a41", "4524324b-3b61-43ac-89f8-c0a941476a41", clientId) +07:00:46.130 [XNIO-1 task-2] yCRZ1qIrQ1S68T_yo1r7Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.130 [XNIO-1 task-2] yCRZ1qIrQ1S68T_yo1r7Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.130 [XNIO-1 task-2] yCRZ1qIrQ1S68T_yo1r7Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.131 [XNIO-1 task-2] yCRZ1qIrQ1S68T_yo1r7Pg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.147 [XNIO-1 task-2] tpU-vPNeSTam7pLfpUFjPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.147 [XNIO-1 task-2] tpU-vPNeSTam7pLfpUFjPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.147 [XNIO-1 task-2] tpU-vPNeSTam7pLfpUFjPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.166 [XNIO-1 task-2] UMzzpxAjQR6Wga3vntjzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.166 [XNIO-1 task-2] UMzzpxAjQR6Wga3vntjzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.166 [XNIO-1 task-2] UMzzpxAjQR6Wga3vntjzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.167 [XNIO-1 task-2] UMzzpxAjQR6Wga3vntjzZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.181 [XNIO-1 task-2] gHFm1LxKQji7JNivDVeEZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.181 [XNIO-1 task-2] gHFm1LxKQji7JNivDVeEZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.181 [XNIO-1 task-2] gHFm1LxKQji7JNivDVeEZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.189 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d79571cd-c2be-4cd5-9d64-4cf9767aef4b +07:00:46.200 [XNIO-1 task-2] PeMaVqH6S06_2WWVjBoaXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.200 [XNIO-1 task-2] PeMaVqH6S06_2WWVjBoaXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.201 [XNIO-1 task-2] PeMaVqH6S06_2WWVjBoaXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.201 [XNIO-1 task-2] PeMaVqH6S06_2WWVjBoaXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.213 [XNIO-1 task-2] QpSMkU7jRmukd5apdjWr5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.213 [XNIO-1 task-2] QpSMkU7jRmukd5apdjWr5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.214 [XNIO-1 task-2] QpSMkU7jRmukd5apdjWr5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.214 [XNIO-1 task-2] QpSMkU7jRmukd5apdjWr5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.243 [XNIO-1 task-2] kY05M1CjRceClBaHIfMO2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/39b0882a-7f6d-41e2-8322-9fa229a30a81, base path is set to: null +07:00:46.243 [XNIO-1 task-2] kY05M1CjRceClBaHIfMO2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.243 [XNIO-1 task-2] kY05M1CjRceClBaHIfMO2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.244 [XNIO-1 task-2] kY05M1CjRceClBaHIfMO2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/39b0882a-7f6d-41e2-8322-9fa229a30a81, base path is set to: null +07:00:46.244 [XNIO-1 task-2] kY05M1CjRceClBaHIfMO2w DEBUG com.networknt.schema.TypeValidator debug - validate( "39b0882a-7f6d-41e2-8322-9fa229a30a81", "39b0882a-7f6d-41e2-8322-9fa229a30a81", clientId) +07:00:46.249 [XNIO-1 task-2] 9bUBH4p_QWK-ucjyPhfn0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39b0882a-7f6d-41e2-8322-9fa229a30a81 +07:00:46.249 [XNIO-1 task-2] 9bUBH4p_QWK-ucjyPhfn0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.249 [XNIO-1 task-2] 9bUBH4p_QWK-ucjyPhfn0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.249 [XNIO-1 task-2] 9bUBH4p_QWK-ucjyPhfn0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39b0882a-7f6d-41e2-8322-9fa229a30a81 +07:00:46.253 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.253 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.254 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.254 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.254 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.254 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.254 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.254 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.254 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.255 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.255 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.255 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0517aa9-352e-4219-8d0b-abd0d79e","clientDesc":"72b7dde7-bd7c-4e0f-8d8f-218a4220e78e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.260 [XNIO-1 task-2] Tt3ruJg0S36B_TO8n6LQcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:46.266 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.266 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.267 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.267 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.267 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.267 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG com.networknt.schema.TypeValidator debug - validate( "6222d199-eb97-4e70-ac42-b100b4fe196f", {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.267 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.268 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.268 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed2b2d82-7602-469a-aafc-34874c5c", {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.268 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.268 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ed2b2d82-7602-469a-aafc-34874c5c","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.268 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.269 [XNIO-1 task-2] O1Fq0hcaQjWBZjWZNPuUQg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.273 [XNIO-1 task-2] o9hnN-5rRUGoWSfqO5JCLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.274 [XNIO-1 task-2] o9hnN-5rRUGoWSfqO5JCLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.274 [XNIO-1 task-2] o9hnN-5rRUGoWSfqO5JCLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.294 [XNIO-1 task-2] ft8QWTEhT0u5V8iiChnVLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/529a26ab-1897-48cc-80d1-1a72865d78e8, base path is set to: null +07:00:46.294 [XNIO-1 task-2] ft8QWTEhT0u5V8iiChnVLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.295 [XNIO-1 task-2] ft8QWTEhT0u5V8iiChnVLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.295 [XNIO-1 task-2] ft8QWTEhT0u5V8iiChnVLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/529a26ab-1897-48cc-80d1-1a72865d78e8, base path is set to: null +07:00:46.296 [XNIO-1 task-2] ft8QWTEhT0u5V8iiChnVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "529a26ab-1897-48cc-80d1-1a72865d78e8", "529a26ab-1897-48cc-80d1-1a72865d78e8", clientId) +07:00:46.311 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.311 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.312 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.312 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.312 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.312 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "8deafa63-ce24-44fd-bf8c-58e934adbd5c", {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.312 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.313 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.313 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "f645e479-8d45-4d0b-8f4f-05770733", {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.313 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.313 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f645e479-8d45-4d0b-8f4f-05770733","clientDesc":"8deafa63-ce24-44fd-bf8c-58e934adbd5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.313 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.313 [XNIO-1 task-2] vq-BSE3qSZ-JquAsIxRPfg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.326 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.327 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.327 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +07:00:46.327 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "69ee866d-5d2f-41b5-b854-d01d07d2690e", {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ba682bd-022e-45fd-bab5-0b07199f","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.328 [XNIO-1 task-2] c5ZIJp4uSyW1XOEcKpkjdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:46.332 [XNIO-1 task-2] IvmEXnyiS---VxzhkIKogQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef6f0ae9-b19f-4f1f-b19d-8f66329ba633 +07:00:46.332 [XNIO-1 task-2] IvmEXnyiS---VxzhkIKogQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.332 [XNIO-1 task-2] IvmEXnyiS---VxzhkIKogQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.332 [XNIO-1 task-2] IvmEXnyiS---VxzhkIKogQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef6f0ae9-b19f-4f1f-b19d-8f66329ba633 +07:00:46.340 [XNIO-1 task-2] N6NvwDl6RCKDylvrXOroNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.340 [XNIO-1 task-2] N6NvwDl6RCKDylvrXOroNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.341 [XNIO-1 task-2] N6NvwDl6RCKDylvrXOroNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.361 [XNIO-1 task-2] L1Oo4cidQxm_fkNEjLWlhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.362 [XNIO-1 task-2] L1Oo4cidQxm_fkNEjLWlhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.362 [XNIO-1 task-2] L1Oo4cidQxm_fkNEjLWlhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.390 [XNIO-1 task-2] uDOPcdLSSjedyAi7WM0v1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.390 [XNIO-1 task-2] uDOPcdLSSjedyAi7WM0v1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.390 [XNIO-1 task-2] uDOPcdLSSjedyAi7WM0v1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.391 [XNIO-1 task-2] uDOPcdLSSjedyAi7WM0v1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.405 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.405 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.405 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.406 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.407 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37939799-38e6-43aa-81f0-a30d2aae","clientDesc":"537c604f-05dc-499c-9539-822e6d539775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.407 [XNIO-1 task-2] bifDOW_2SL6NyYbzput_VQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:46.411 [XNIO-1 task-2] pRsovFd6Qf680ym68HtKAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.411 [XNIO-1 task-2] pRsovFd6Qf680ym68HtKAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.411 [XNIO-1 task-2] pRsovFd6Qf680ym68HtKAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.411 [XNIO-1 task-2] pRsovFd6Qf680ym68HtKAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.423 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.423 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.424 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.424 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.424 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.425 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "967f2f24-f132-405b-b81f-b6a6ec5f35c5", {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.425 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.425 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.425 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "85617f90-8ed9-4235-ae9e-917b42ae", {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.425 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.425 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"85617f90-8ed9-4235-ae9e-917b42ae","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.425 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.426 [XNIO-1 task-2] h97BhDUVSK2srfksc7bHWA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.434 [XNIO-1 task-2] 6Io89hGnQiuRsiKe0zb3UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.434 [XNIO-1 task-2] 6Io89hGnQiuRsiKe0zb3UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.435 [XNIO-1 task-2] 6Io89hGnQiuRsiKe0zb3UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.485 [XNIO-1 task-2] GV-ZEJhZTQ-sbBWHQj3KFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.486 [XNIO-1 task-2] GV-ZEJhZTQ-sbBWHQj3KFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.486 [XNIO-1 task-2] GV-ZEJhZTQ-sbBWHQj3KFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.486 [XNIO-1 task-2] GV-ZEJhZTQ-sbBWHQj3KFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.500 [XNIO-1 task-2] 7EVKdaDdTDGJpKQXd54Xhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.500 [XNIO-1 task-2] 7EVKdaDdTDGJpKQXd54Xhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.500 [XNIO-1 task-2] 7EVKdaDdTDGJpKQXd54Xhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.501 [XNIO-1 task-2] 7EVKdaDdTDGJpKQXd54Xhw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.604 [XNIO-1 task-2] buXT120SSJWbP87E8oRE_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.604 [XNIO-1 task-2] buXT120SSJWbP87E8oRE_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.604 [XNIO-1 task-2] buXT120SSJWbP87E8oRE_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.604 [XNIO-1 task-2] buXT120SSJWbP87E8oRE_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.605 [XNIO-1 task-2] buXT120SSJWbP87E8oRE_w DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", clientId) +07:00:46.609 [XNIO-1 task-2] vgVv4gIrRBePKDefeHNPMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:46.609 [XNIO-1 task-2] vgVv4gIrRBePKDefeHNPMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.609 [XNIO-1 task-2] vgVv4gIrRBePKDefeHNPMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.610 [XNIO-1 task-2] vgVv4gIrRBePKDefeHNPMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:46.614 [XNIO-1 task-2] 0xo74r0xSI61-U9nZp1dZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.614 [XNIO-1 task-2] 0xo74r0xSI61-U9nZp1dZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.614 [XNIO-1 task-2] 0xo74r0xSI61-U9nZp1dZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.614 [XNIO-1 task-2] 0xo74r0xSI61-U9nZp1dZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.614 [XNIO-1 task-2] 0xo74r0xSI61-U9nZp1dZg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", clientId) +07:00:46.623 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.624 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.624 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.624 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b025bf64-d297-4bc8-98b0-ec3062319239", {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "76192acb-5db1-4eee-ae8e-f43a00c7", {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"76192acb-5db1-4eee-ae8e-f43a00c7","clientDesc":"b025bf64-d297-4bc8-98b0-ec3062319239","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.625 [XNIO-1 task-2] HtOP5Gw-SNWBXHO5xcPDTQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.629 [XNIO-1 task-2] W4tDhknbRiqM1eLaITFZmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.630 [XNIO-1 task-2] W4tDhknbRiqM1eLaITFZmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.630 [XNIO-1 task-2] W4tDhknbRiqM1eLaITFZmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +07:00:46.630 [XNIO-1 task-2] W4tDhknbRiqM1eLaITFZmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:46.630 [XNIO-1 task-2] W4tDhknbRiqM1eLaITFZmg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", clientId) +07:00:46.634 [XNIO-1 task-2] 8WJCfO3VTkenbbDmcR3mbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.634 [XNIO-1 task-2] 8WJCfO3VTkenbbDmcR3mbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +07:00:46.651 [XNIO-1 task-2] 1oCH5r_hQJ2B6IDLrOgjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:46.651 [XNIO-1 task-2] 1oCH5r_hQJ2B6IDLrOgjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.651 [XNIO-1 task-2] 1oCH5r_hQJ2B6IDLrOgjog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.667 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.667 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.668 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.668 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.668 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.668 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d52509ea-84d0-4212-896d-28ec9e72b775", {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.668 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.668 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.669 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2812c25d-03b4-4289-8dbc-2ae05d14", {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.669 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.669 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2812c25d-03b4-4289-8dbc-2ae05d14","clientDesc":"d52509ea-84d0-4212-896d-28ec9e72b775","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.669 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.669 [XNIO-1 task-2] 4iADXvwLRMqU2A_1_V0xpQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.673 [XNIO-1 task-2] uoOPXVuFTACWKA8RVcagyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.673 [XNIO-1 task-2] uoOPXVuFTACWKA8RVcagyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.673 [XNIO-1 task-2] uoOPXVuFTACWKA8RVcagyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.673 [XNIO-1 task-2] uoOPXVuFTACWKA8RVcagyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.686 [XNIO-1 task-2] HVFUWOkvTWi8WVPI2_exRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/600d2c0e-f6f3-4b84-899f-350dfda23523, base path is set to: null +07:00:46.686 [XNIO-1 task-2] HVFUWOkvTWi8WVPI2_exRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.687 [XNIO-1 task-2] HVFUWOkvTWi8WVPI2_exRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.687 [XNIO-1 task-2] HVFUWOkvTWi8WVPI2_exRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/600d2c0e-f6f3-4b84-899f-350dfda23523, base path is set to: null +07:00:46.687 [XNIO-1 task-2] HVFUWOkvTWi8WVPI2_exRA DEBUG com.networknt.schema.TypeValidator debug - validate( "600d2c0e-f6f3-4b84-899f-350dfda23523", "600d2c0e-f6f3-4b84-899f-350dfda23523", clientId) +07:00:46.705 [XNIO-1 task-2] SfhE2dvBS6CSZXnqZZi97Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ede60085-6e12-4464-968a-10a4950dbbce +07:00:46.705 [XNIO-1 task-2] SfhE2dvBS6CSZXnqZZi97Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.705 [XNIO-1 task-2] SfhE2dvBS6CSZXnqZZi97Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.705 [XNIO-1 task-2] SfhE2dvBS6CSZXnqZZi97Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ede60085-6e12-4464-968a-10a4950dbbce +07:00:46.722 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.722 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.723 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.723 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.723 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.723 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.723 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.723 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.724 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.724 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.724 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.724 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"075189e4-f698-4db7-b17f-2db55641","clientDesc":"69ee866d-5d2f-41b5-b854-d01d07d2690e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.724 [XNIO-1 task-2] f30gYPQvTxmwYO2mWgJkIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:46.727 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.727 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.727 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "6222d199-eb97-4e70-ac42-b100b4fe196f", {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "12be05b6-507e-4400-b76c-d7612439", {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.728 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"12be05b6-507e-4400-b76c-d7612439","clientDesc":"6222d199-eb97-4e70-ac42-b100b4fe196f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.729 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.729 [XNIO-1 task-2] VVNTLuxhQFC7ETBOD9wMsA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.732 [XNIO-1 task-2] Llgz-RqAR42Dx8A4fKK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:46.732 [XNIO-1 task-2] Llgz-RqAR42Dx8A4fKK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.732 [XNIO-1 task-2] Llgz-RqAR42Dx8A4fKK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.732 [XNIO-1 task-2] Llgz-RqAR42Dx8A4fKK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038, base path is set to: null +07:00:46.733 [XNIO-1 task-2] Llgz-RqAR42Dx8A4fKK-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:46.742 [XNIO-1 task-2] Llgz-RqAR42Dx8A4fKK-Ow DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/4867bd15-38e1-4015-b857-1ecba5753038} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.748 [XNIO-1 task-2] aSFsuQl9QiG9ZFOpzyws3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/96662cae-4329-4564-92fe-d1e6775b8dd5, base path is set to: null +07:00:46.749 [XNIO-1 task-2] aSFsuQl9QiG9ZFOpzyws3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.749 [XNIO-1 task-2] aSFsuQl9QiG9ZFOpzyws3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.749 [XNIO-1 task-2] aSFsuQl9QiG9ZFOpzyws3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/96662cae-4329-4564-92fe-d1e6775b8dd5, base path is set to: null +07:00:46.753 [XNIO-1 task-2] aSFsuQl9QiG9ZFOpzyws3w DEBUG com.networknt.schema.TypeValidator debug - validate( "96662cae-4329-4564-92fe-d1e6775b8dd5", "96662cae-4329-4564-92fe-d1e6775b8dd5", clientId) +07:00:46.788 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.788 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.789 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.789 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.789 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.789 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG com.networknt.schema.TypeValidator debug - validate( "fadbe813-c0c5-4c2d-8d36-d8e330d920ad", {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.789 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.789 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.790 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG com.networknt.schema.TypeValidator debug - validate( "2e36c64e-b729-4471-9f00-812ed9a7", {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:46.790 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.790 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2e36c64e-b729-4471-9f00-812ed9a7","clientDesc":"fadbe813-c0c5-4c2d-8d36-d8e330d920ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.790 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.790 [XNIO-1 task-2] I6U0Wj-wSj-2k1YTNe8xfw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.800 [XNIO-1 task-2] conn33ucRtCKHvjs2S-e8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/96662cae-4329-4564-92fe-d1e6775b8dd5, base path is set to: null +07:00:46.800 [XNIO-1 task-2] conn33ucRtCKHvjs2S-e8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.800 [XNIO-1 task-2] conn33ucRtCKHvjs2S-e8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.800 [XNIO-1 task-2] conn33ucRtCKHvjs2S-e8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/96662cae-4329-4564-92fe-d1e6775b8dd5, base path is set to: null +07:00:46.801 [XNIO-1 task-2] conn33ucRtCKHvjs2S-e8A DEBUG com.networknt.schema.TypeValidator debug - validate( "96662cae-4329-4564-92fe-d1e6775b8dd5", "96662cae-4329-4564-92fe-d1e6775b8dd5", clientId) +07:00:46.806 [XNIO-1 task-2] UmrWtvXKRWya5FR5jl2yLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d79571cd-c2be-4cd5-9d64-4cf9767aef4b +07:00:46.806 [XNIO-1 task-2] UmrWtvXKRWya5FR5jl2yLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.806 [XNIO-1 task-2] UmrWtvXKRWya5FR5jl2yLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.807 [XNIO-1 task-2] UmrWtvXKRWya5FR5jl2yLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d79571cd-c2be-4cd5-9d64-4cf9767aef4b +07:00:46.809 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d79571cd-c2be-4cd5-9d64-4cf9767aef4b +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +07:00:46.831 [XNIO-1 task-2] UmrWtvXKRWya5FR5jl2yLA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/d79571cd-c2be-4cd5-9d64-4cf9767aef4b} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.837 [XNIO-1 task-2] e5qCvqFPTYK0ep8HDgEESQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.837 [XNIO-1 task-2] e5qCvqFPTYK0ep8HDgEESQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.838 [XNIO-1 task-2] e5qCvqFPTYK0ep8HDgEESQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.864 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.865 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.865 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.866 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13907f13-a039-4efe-b1bd-2a3c959e","clientDesc":"a49d4589-aaf4-443c-8c3a-141ea573b764","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.867 [XNIO-1 task-2] WkslbTVAStWbEkC-6V_6AQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:46.872 [XNIO-1 task-2] yoGGJ-bRT46n_3pl4-P4LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/869b1cfc-cd78-40db-80e0-40d9762b482c +07:00:46.873 [XNIO-1 task-2] yoGGJ-bRT46n_3pl4-P4LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.873 [XNIO-1 task-2] yoGGJ-bRT46n_3pl4-P4LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.873 [XNIO-1 task-2] yoGGJ-bRT46n_3pl4-P4LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/869b1cfc-cd78-40db-80e0-40d9762b482c +07:00:46.877 [XNIO-1 task-2] vuFj4M5kTX6aljJWuAAxmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.877 [XNIO-1 task-2] vuFj4M5kTX6aljJWuAAxmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.877 [XNIO-1 task-2] vuFj4M5kTX6aljJWuAAxmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.877 [XNIO-1 task-2] vuFj4M5kTX6aljJWuAAxmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.877 [XNIO-1 task-2] vuFj4M5kTX6aljJWuAAxmg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", clientId) +07:00:46.889 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.889 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.890 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.890 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +07:00:46.890 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:46.890 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.890 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca9e55c6-89fe-4323-96cb-45d4545d6d55", {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:46.891 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.891 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +07:00:46.891 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +07:00:46.891 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"249ce42b-897f-4d9f-b014-51227916","clientDesc":"ca9e55c6-89fe-4323-96cb-45d4545d6d55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:46.891 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:46.891 [XNIO-1 task-2] iWelbR2ERcGh2dLmlFO9GQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.896 [XNIO-1 task-2] n07qXG-QRXWDoM6-hDzMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.896 [XNIO-1 task-2] n07qXG-QRXWDoM6-hDzMQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.896 [XNIO-1 task-2] n07qXG-QRXWDoM6-hDzMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.897 [XNIO-1 task-2] n07qXG-QRXWDoM6-hDzMQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.913 [XNIO-1 task-2] fup_vzFeSdeDZVKBwmlqsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.913 [XNIO-1 task-2] fup_vzFeSdeDZVKBwmlqsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.913 [XNIO-1 task-2] fup_vzFeSdeDZVKBwmlqsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:46.913 [XNIO-1 task-2] fup_vzFeSdeDZVKBwmlqsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:46.913 [XNIO-1 task-2] fup_vzFeSdeDZVKBwmlqsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", clientId) +07:00:46.916 [XNIO-1 task-2] IsyJHt0jQtWhboJt86GT0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:46.917 [XNIO-1 task-2] IsyJHt0jQtWhboJt86GT0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.917 [XNIO-1 task-2] IsyJHt0jQtWhboJt86GT0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:46.917 [XNIO-1 task-2] IsyJHt0jQtWhboJt86GT0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:46.924 [XNIO-1 task-2] 9VuKCIxdQ5CKX57TIVZ9yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.925 [XNIO-1 task-2] 9VuKCIxdQ5CKX57TIVZ9yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.925 [XNIO-1 task-2] 9VuKCIxdQ5CKX57TIVZ9yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.944 [XNIO-1 task-2] tHWO1336RFKC27MMtAqCoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.944 [XNIO-1 task-2] tHWO1336RFKC27MMtAqCoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:46.945 [XNIO-1 task-2] tHWO1336RFKC27MMtAqCoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:46.950 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:73755f4c-b049-434b-b9ea-8780a6888a9b +07:00:46.951 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:73755f4c-b049-434b-b9ea-8780a6888a9b +07:00:46.966 [XNIO-1 task-2] t36ZUAGJRW2qrOPVtM-XFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.966 [XNIO-1 task-2] t36ZUAGJRW2qrOPVtM-XFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.966 [XNIO-1 task-2] t36ZUAGJRW2qrOPVtM-XFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.994 [XNIO-1 task-2] GHNP2gfASe-V1hhNAA4PNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.994 [XNIO-1 task-2] GHNP2gfASe-V1hhNAA4PNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:46.995 [XNIO-1 task-2] GHNP2gfASe-V1hhNAA4PNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.026 [XNIO-1 task-2] PxD2OCfLQFi58yUYnMLIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.026 [XNIO-1 task-2] PxD2OCfLQFi58yUYnMLIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.026 [XNIO-1 task-2] PxD2OCfLQFi58yUYnMLIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.045 [XNIO-1 task-2] 7YB6tNEYRQeudBABgGh70g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29 +07:00:47.045 [XNIO-1 task-2] 7YB6tNEYRQeudBABgGh70g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.045 [XNIO-1 task-2] 7YB6tNEYRQeudBABgGh70g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.045 [XNIO-1 task-2] 7YB6tNEYRQeudBABgGh70g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29 +07:00:47.055 [XNIO-1 task-2] 7YB6tNEYRQeudBABgGh70g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.055 [XNIO-1 task-2] 7YB6tNEYRQeudBABgGh70g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.060 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.060 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.060 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "f426a688-1a45-404d-844e-02475e5e44b5", {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "7cff925f-2f16-4f45-b5f8-5f18ceaf", {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7cff925f-2f16-4f45-b5f8-5f18ceaf","clientDesc":"f426a688-1a45-404d-844e-02475e5e44b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.061 [XNIO-1 task-2] -gbt2dhUSvi0ulBh_4Sy5w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:47.070 [XNIO-1 task-2] -TOQJ1xRTGSVRVxOmXhfeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.070 [XNIO-1 task-2] -TOQJ1xRTGSVRVxOmXhfeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.070 [XNIO-1 task-2] -TOQJ1xRTGSVRVxOmXhfeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.071 [XNIO-1 task-2] -TOQJ1xRTGSVRVxOmXhfeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.082 [XNIO-1 task-2] VA4ByxCxQI6vvEdk3jjzwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.082 [XNIO-1 task-2] VA4ByxCxQI6vvEdk3jjzwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.082 [XNIO-1 task-2] VA4ByxCxQI6vvEdk3jjzwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.108 [XNIO-1 task-2] E3OE77cQSHqW7J6JV16zhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.108 [XNIO-1 task-2] E3OE77cQSHqW7J6JV16zhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.109 [XNIO-1 task-2] E3OE77cQSHqW7J6JV16zhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.109 [XNIO-1 task-2] E3OE77cQSHqW7J6JV16zhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.121 [XNIO-1 task-2] QHSzganDT6SRqRHXIBxAAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/483db353-57e2-4802-974e-73caedeb2822, base path is set to: null +07:00:47.121 [XNIO-1 task-2] QHSzganDT6SRqRHXIBxAAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.121 [XNIO-1 task-2] QHSzganDT6SRqRHXIBxAAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:47.122 [XNIO-1 task-2] QHSzganDT6SRqRHXIBxAAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/483db353-57e2-4802-974e-73caedeb2822, base path is set to: null +07:00:47.122 [XNIO-1 task-2] QHSzganDT6SRqRHXIBxAAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "483db353-57e2-4802-974e-73caedeb2822", "483db353-57e2-4802-974e-73caedeb2822", clientId) +07:00:47.134 [XNIO-1 task-2] TMgDAKnHThOa0tqtbgUxBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.134 [XNIO-1 task-2] TMgDAKnHThOa0tqtbgUxBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.134 [XNIO-1 task-2] TMgDAKnHThOa0tqtbgUxBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.145 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1280a592-8f97-4fff-97a5-3893af17ab92 +07:00:47.155 [XNIO-1 task-2] rT1LRQQ2T0C_Cyo7oZRrFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/974cdf1f-003f-49cc-a3a5-724df7423575, base path is set to: null +07:00:47.156 [XNIO-1 task-2] rT1LRQQ2T0C_Cyo7oZRrFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.156 [XNIO-1 task-2] rT1LRQQ2T0C_Cyo7oZRrFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:47.156 [XNIO-1 task-2] rT1LRQQ2T0C_Cyo7oZRrFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/974cdf1f-003f-49cc-a3a5-724df7423575, base path is set to: null +07:00:47.156 [XNIO-1 task-2] rT1LRQQ2T0C_Cyo7oZRrFg DEBUG com.networknt.schema.TypeValidator debug - validate( "974cdf1f-003f-49cc-a3a5-724df7423575", "974cdf1f-003f-49cc-a3a5-724df7423575", clientId) +07:00:47.172 [XNIO-1 task-2] CKN41i0pRGuUG3LDzBVRCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:47.172 [XNIO-1 task-2] CKN41i0pRGuUG3LDzBVRCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.172 [XNIO-1 task-2] CKN41i0pRGuUG3LDzBVRCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.173 [XNIO-1 task-2] CKN41i0pRGuUG3LDzBVRCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:47.181 [XNIO-1 task-2] CKN41i0pRGuUG3LDzBVRCA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.182 [XNIO-1 task-2] CKN41i0pRGuUG3LDzBVRCA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.185 [XNIO-1 task-2] mrLA9opLRk27Z-ZfAl3XGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333, base path is set to: null +07:00:47.185 [XNIO-1 task-2] mrLA9opLRk27Z-ZfAl3XGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:47.185 [XNIO-1 task-2] mrLA9opLRk27Z-ZfAl3XGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.185 [XNIO-1 task-2] mrLA9opLRk27Z-ZfAl3XGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.186 [XNIO-1 task-2] mrLA9opLRk27Z-ZfAl3XGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:47.194 [XNIO-1 task-2] mrLA9opLRk27Z-ZfAl3XGQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +Jun 29, 2024 7:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.195 [XNIO-1 task-2] mrLA9opLRk27Z-ZfAl3XGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.198 [XNIO-1 task-2] JBi5fyz0R4yZwB7TPPBrag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d79571cd-c2be-4cd5-9d64-4cf9767aef4b +07:00:47.198 [XNIO-1 task-2] JBi5fyz0R4yZwB7TPPBrag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.198 [XNIO-1 task-2] JBi5fyz0R4yZwB7TPPBrag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.198 [XNIO-1 task-2] JBi5fyz0R4yZwB7TPPBrag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d79571cd-c2be-4cd5-9d64-4cf9767aef4b +07:00:47.199 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d79571cd-c2be-4cd5-9d64-4cf9767aef4b +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +07:00:47.203 [XNIO-1 task-2] JBi5fyz0R4yZwB7TPPBrag DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/d79571cd-c2be-4cd5-9d64-4cf9767aef4b} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:47.211 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.211 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.211 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.212 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.212 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.212 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.212 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.212 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.212 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.213 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.213 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.213 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aaa662e0-80fe-47fb-ae33-fa53b3ff","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.213 [XNIO-1 task-2] HPiAUXnVSrqH406xJcDK8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.218 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.218 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.218 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG com.networknt.schema.TypeValidator debug - validate( "83e3357d-61d2-4d94-a80f-4529f7adfe83", {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG com.networknt.schema.TypeValidator debug - validate( "eb3e527c-d1d4-40c2-84ae-c45d642e", {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.219 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"eb3e527c-d1d4-40c2-84ae-c45d642e","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.220 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.220 [XNIO-1 task-2] IeayEozlRjimlUYVsDif9w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:47.224 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.224 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.225 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.225 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.225 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.225 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.226 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.226 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.226 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.226 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.226 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.226 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41fe80cc-b2f3-49f7-ab1d-262c1194","clientDesc":"83e3357d-61d2-4d94-a80f-4529f7adfe83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.226 [XNIO-1 task-2] asvdPDhrT5GDwo9_EOC2OA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.235 [XNIO-1 task-2] KTBBFrAqRSW-EViKx6bYHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.235 [XNIO-1 task-2] KTBBFrAqRSW-EViKx6bYHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.235 [XNIO-1 task-2] KTBBFrAqRSW-EViKx6bYHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.244 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6d0724c8-062b-4b84-8b59-5772cf7952a9 +07:00:47.271 [XNIO-1 task-2] Uc75X-EiSfO1z7pAxVTIIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.272 [XNIO-1 task-2] Uc75X-EiSfO1z7pAxVTIIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.272 [XNIO-1 task-2] Uc75X-EiSfO1z7pAxVTIIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.292 [XNIO-1 task-2] 1nBCARJzSH2671t4QzSe3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c63596fb-21ac-4d94-9cb1-10ebc0bc1106, base path is set to: null +07:00:47.292 [XNIO-1 task-2] 1nBCARJzSH2671t4QzSe3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.292 [XNIO-1 task-2] 1nBCARJzSH2671t4QzSe3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:47.292 [XNIO-1 task-2] 1nBCARJzSH2671t4QzSe3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c63596fb-21ac-4d94-9cb1-10ebc0bc1106, base path is set to: null +07:00:47.293 [XNIO-1 task-2] 1nBCARJzSH2671t4QzSe3w DEBUG com.networknt.schema.TypeValidator debug - validate( "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", clientId) +07:00:47.302 [XNIO-1 task-2] GgLU1j3rT9yBVrYfXjQmFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.302 [XNIO-1 task-2] GgLU1j3rT9yBVrYfXjQmFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.303 [XNIO-1 task-2] GgLU1j3rT9yBVrYfXjQmFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.328 [XNIO-1 task-2] UzSoZYvTR0uhNd104kE3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c2429e5-2cc3-4b8d-81f5-766c3b7c81f6 +07:00:47.328 [XNIO-1 task-2] UzSoZYvTR0uhNd104kE3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.328 [XNIO-1 task-2] UzSoZYvTR0uhNd104kE3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.328 [XNIO-1 task-2] UzSoZYvTR0uhNd104kE3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c2429e5-2cc3-4b8d-81f5-766c3b7c81f6 +07:00:47.342 [XNIO-1 task-2] yookovgXT--FF9ujb3FpTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.342 [XNIO-1 task-2] yookovgXT--FF9ujb3FpTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.343 [XNIO-1 task-2] yookovgXT--FF9ujb3FpTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.343 [XNIO-1 task-2] yookovgXT--FF9ujb3FpTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.363 [XNIO-1 task-2] j-F0BsViTbuaudJo8CJz0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:47.363 [XNIO-1 task-2] j-F0BsViTbuaudJo8CJz0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.363 [XNIO-1 task-2] j-F0BsViTbuaudJo8CJz0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:47.363 [XNIO-1 task-2] j-F0BsViTbuaudJo8CJz0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bb81d148-63cb-4d99-a2e1-5d82993cc627, base path is set to: null +07:00:47.364 [XNIO-1 task-2] j-F0BsViTbuaudJo8CJz0w DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", clientId) +07:00:47.369 [XNIO-1 task-2] EgpbjQbXSDG4_Q1Yjh7GcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.369 [XNIO-1 task-2] EgpbjQbXSDG4_Q1Yjh7GcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.369 [XNIO-1 task-2] EgpbjQbXSDG4_Q1Yjh7GcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.370 [XNIO-1 task-2] EgpbjQbXSDG4_Q1Yjh7GcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.388 [XNIO-1 task-2] JGJmzxe-SfW9X6vSdpMkVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.388 [XNIO-1 task-2] JGJmzxe-SfW9X6vSdpMkVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.388 [XNIO-1 task-2] JGJmzxe-SfW9X6vSdpMkVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.389 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5bfc6acf +07:00:47.419 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.419 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.419 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.420 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.420 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.420 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.420 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.420 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.420 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.421 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.421 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.421 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22b682c5-a4c0-40a2-876e-0708f2a6","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.421 [XNIO-1 task-2] Ci0ii-RFQVulRvOvzPrMYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.426 [XNIO-1 task-2] Jr5v1pdpTfuKCbyBQIiDcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074 +07:00:47.426 [XNIO-1 task-2] Jr5v1pdpTfuKCbyBQIiDcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.426 [XNIO-1 task-2] Jr5v1pdpTfuKCbyBQIiDcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.426 [XNIO-1 task-2] Jr5v1pdpTfuKCbyBQIiDcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074 +07:00:47.434 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.435 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.437 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.438 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.439 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6bccf59-342e-494a-b894-9bb780a0","clientDesc":"c9e50ab4-16f7-47d8-9747-92af63707909","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.439 [XNIO-1 task-2] EaLS0ztdS-eKd6bd_sdZ6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.448 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.449 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.449 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "967f2f24-f132-405b-b81f-b6a6ec5f35c5", {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62cb1b41-84f1-41b9-a732-89a01296", {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"62cb1b41-84f1-41b9-a732-89a01296","clientDesc":"967f2f24-f132-405b-b81f-b6a6ec5f35c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.450 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.451 [XNIO-1 task-2] 150LIQTWSpSOPib-_qBqUQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:47.454 [XNIO-1 task-2] bvSDq1HNQ-2-OEBxRgDK-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.455 [XNIO-1 task-2] bvSDq1HNQ-2-OEBxRgDK-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.455 [XNIO-1 task-2] bvSDq1HNQ-2-OEBxRgDK-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.473 [XNIO-1 task-2] atdlgbCCRranHbbyH6bx6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1280a592-8f97-4fff-97a5-3893af17ab92, base path is set to: null +Jun 29, 2024 7:00:49 AM com.hazelcast.map.impl.operation.DeleteOperation +07:00:47.473 [XNIO-1 task-2] atdlgbCCRranHbbyH6bx6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +07:00:47.473 [XNIO-1 task-2] atdlgbCCRranHbbyH6bx6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +07:00:47.474 [XNIO-1 task-2] atdlgbCCRranHbbyH6bx6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1280a592-8f97-4fff-97a5-3893af17ab92", "1280a592-8f97-4fff-97a5-3893af17ab92", clientId) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +07:00:47.491 [XNIO-1 task-2] tZLz3eXmQfii_gQb7Y1diA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.491 [XNIO-1 task-2] tZLz3eXmQfii_gQb7Y1diA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.491 [XNIO-1 task-2] tZLz3eXmQfii_gQb7Y1diA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.523 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d39c7e1f-a99a-4431-a1a9-0a4f5cf6288d +07:00:47.535 [XNIO-1 task-2] 3wOhKJqISSauFKam8zmH2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +07:00:47.535 [XNIO-1 task-2] 3wOhKJqISSauFKam8zmH2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.535 [XNIO-1 task-2] 3wOhKJqISSauFKam8zmH2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.535 [XNIO-1 task-2] 3wOhKJqISSauFKam8zmH2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.536 [XNIO-1 task-2] 3wOhKJqISSauFKam8zmH2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null +07:00:47.536 [XNIO-1 task-2] 3wOhKJqISSauFKam8zmH2g DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", clientId) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +07:00:47.544 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5bfc6acf +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +Jun 29, 2024 7:00:49 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.548 [XNIO-1 task-2] 3wOhKJqISSauFKam8zmH2g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:47.552 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:388eb875-e3d1-42f0-9f43-861dcb1c7c02 +07:00:47.553 [XNIO-1 task-2] 7ZO5c5NaQSqETajQfO5rPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.553 [XNIO-1 task-2] 7ZO5c5NaQSqETajQfO5rPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.553 [XNIO-1 task-2] 7ZO5c5NaQSqETajQfO5rPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.553 [XNIO-1 task-2] 7ZO5c5NaQSqETajQfO5rPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.567 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d39c7e1f-a99a-4431-a1a9-0a4f5cf6288d +07:00:47.583 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.583 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.583 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +07:00:47.584 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.584 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.584 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.584 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.585 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +07:00:47.585 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +07:00:47.586 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.586 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.586 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0b87288-cc86-4112-ad38-80a04226","clientDesc":"8d1c4a78-09a1-4f6d-936d-cf0e85803585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.586 [XNIO-1 task-2] b7UXXdrQSdyL4Gizv092YA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +07:00:47.591 [XNIO-1 task-2] _HfCeK72TI-4lAyDtlvfvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29 +07:00:47.591 [XNIO-1 task-2] _HfCeK72TI-4lAyDtlvfvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.593 [XNIO-1 task-2] _HfCeK72TI-4lAyDtlvfvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.593 [XNIO-1 task-2] _HfCeK72TI-4lAyDtlvfvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29 +07:00:47.601 [XNIO-1 task-2] _RC9LSMrSXytc3HmH-2v9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null +07:00:47.601 [XNIO-1 task-2] _RC9LSMrSXytc3HmH-2v9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +07:00:47.601 [XNIO-1 task-2] _RC9LSMrSXytc3HmH-2v9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +07:00:47.601 [XNIO-1 task-2] _RC9LSMrSXytc3HmH-2v9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29, base path is set to: null +07:00:47.602 [XNIO-1 task-2] _RC9LSMrSXytc3HmH-2v9w DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", clientId) +07:00:47.606 [XNIO-1 task-2] w4jzwv3jR8ueEfLqRJT1mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.607 [XNIO-1 task-2] w4jzwv3jR8ueEfLqRJT1mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.607 [XNIO-1 task-2] w4jzwv3jR8ueEfLqRJT1mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.607 [XNIO-1 task-2] w4jzwv3jR8ueEfLqRJT1mg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.618 [XNIO-1 task-2] lXld_vDNS0u_sL_xj652YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29 +07:00:47.618 [XNIO-1 task-2] lXld_vDNS0u_sL_xj652YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +07:00:47.618 [XNIO-1 task-2] lXld_vDNS0u_sL_xj652YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +07:00:47.619 [XNIO-1 task-2] lXld_vDNS0u_sL_xj652YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c3506d6-5228-4036-ba09-d44141934b29 +07:00:47.619 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d51e3d5 +07:00:47.622 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d51e3d5 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) diff --git a/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..0f8f15d --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2972 @@ +07:00:40.791 [XNIO-1 task-2] Cz46E0YXStmGnL2XBW8dNw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:40.792 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb7480c5 +07:00:40.795 [XNIO-1 task-1] fVOLe5u9TpaIbtncsJiq-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HTeEge0nTTWmp03ctQQa-g +07:00:40.826 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:40.827 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:40.827 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:40.828 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:40.828 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:40.830 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:40.830 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:40.830 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:40.830 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:40.843 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:40.843 [XNIO-1 task-2] 8dcC9003SwOHu_hB0A-z4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:40.854 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b204305e +07:00:41.014 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:402f68b0-67ae-402a-b5e2-3ff4afe91025 +07:00:41.016 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:402f68b0-67ae-402a-b5e2-3ff4afe91025 +07:00:41.359 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb7480c5 +07:00:41.482 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9ba2d242 +07:00:41.547 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cb7480c5 +07:00:41.865 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9ba2d242 +07:00:41.881 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b204305e +07:00:41.924 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:59b6b5bd-0f2b-4d56-8e7b-f790b84e8e48 +07:00:41.927 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:59b6b5bd-0f2b-4d56-8e7b-f790b84e8e48 +07:00:42.238 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b204305e +07:00:42.297 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9ba2d242 +07:00:42.313 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:771601b5 +07:00:42.444 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b204305e +07:00:42.460 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b204305e +07:00:42.474 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b204305e +07:00:42.541 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.542 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.542 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.544 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:42.544 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:42.564 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:42.564 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:42.565 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:42.589 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:42.589 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:42.593 [XNIO-1 task-2] RM3kFLoBRCe2YyY1PGAAUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=os33533dQdmvq7KXyhAcvQ +07:00:42.598 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.598 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.598 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.599 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:42.600 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:42.600 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:42.600 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:42.600 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:42.701 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:42.701 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:42.728 [XNIO-1 task-2] Nk0UX8PNR5qylTWRWQ1cCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xpIReowTSvSQuF1sQsZsqQ +07:00:42.733 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.733 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.733 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.734 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:42.735 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:42.735 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:42.735 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:42.735 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:42.772 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:42.772 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:42.780 [XNIO-1 task-2] _aDbA68UTCqhb2LqR7RiMg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=us326ScDR_SntpI5oiZ5GQ +07:00:42.785 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.785 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.785 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.786 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:42.786 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:42.787 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:42.787 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:42.787 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:42.800 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:771601b5 +07:00:42.811 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:081cc4b3-b453-4c52-8244-00dab6b931c6 +07:00:42.812 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:42.812 [XNIO-1 task-2] qaT6o1xeRBGnwXEf6aBkVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:42.819 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:081cc4b3-b453-4c52-8244-00dab6b931c6 +07:00:42.853 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:27874e26-32b2-409c-a6dc-cc521c22927d +07:00:42.857 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:27874e26-32b2-409c-a6dc-cc521c22927d +07:00:42.857 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:87cb12a1-718b-4ffd-b7e9-2eadb4e58502 +07:00:42.859 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.860 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.860 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.861 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", "d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce", client_id) +07:00:42.861 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:42.861 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:42.862 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:42.862 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:42.863 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:42.871 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:42.871 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:42.871 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:42.872 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:42.872 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:42.873 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:42.873 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:42.873 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:42.874 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:42.875 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:42.875 [XNIO-1 task-2] qB-na-GKQIGGJgGeC8R1SA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:42.891 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:42.891 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:42.895 [XNIO-1 task-1] 41TP-NhsQResGGiYri9ShA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WaVBeSfEQqaPDyGsVwd8WQ +07:00:42.904 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:771601b5 +07:00:42.933 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7d145dd9-0d40-4dde-8ef5-f678e4c0e1cd +07:00:42.944 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:42.944 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:42.945 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:42.947 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "081cc4b3-b453-4c52-8244-00dab6b931c6", "081cc4b3-b453-4c52-8244-00dab6b931c6", client_id) +07:00:42.947 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:42.949 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:42.949 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:42.950 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:42.950 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:42.962 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:42.962 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7d145dd9-0d40-4dde-8ef5-f678e4c0e1cd +07:00:42.964 [XNIO-1 task-1] qyGxf7bLQJOLNJEim2I3bQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=EFNexVuATH6uiNKH5jetGw +07:00:42.969 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.969 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.969 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:42.970 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:42.970 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:42.971 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:42.971 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:42.972 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:42.986 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:42.986 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:42.998 [XNIO-1 task-1] Q9M9lQDqT72p9jp3mJVSXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BZaoibL_R5G2r0nNcYuaOQ +07:00:43.004 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.004 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.005 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.006 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.006 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.007 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.007 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.007 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.021 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.022 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.026 [XNIO-1 task-1] nGiGGS9pSSeF9Hx1Gp-jpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0sy4Eki-QiChgil6VqTOQQ +07:00:43.034 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:860a8058 +07:00:43.034 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.035 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.035 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.036 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4e3f0d6f-006c-4e72-a5d3-852b8fef891f", "4e3f0d6f-006c-4e72-a5d3-852b8fef891f", client_id) +07:00:43.038 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.038 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.039 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.039 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.041 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.052 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.052 [XNIO-1 task-1] CaIbQMhCQv-QXmV_w37jdQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.059 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:860a8058 +07:00:43.060 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.060 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.060 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.061 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:964725dd-3634-4277-a053-bf4c33c754c8 +07:00:43.062 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:964725dd-3634-4277-a053-bf4c33c754c8 +07:00:43.062 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.063 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.069 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.069 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.070 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.088 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.088 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.090 [XNIO-1 task-1] PmdknmDbTGmgcj0JaNhEkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZSDiyOuIS7O_-HU6k164uA +07:00:43.094 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.094 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.094 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.095 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG com.networknt.schema.TypeValidator debug - validate( "081cc4b3-b453-4c52-8244-00dab6b931c6", "081cc4b3-b453-4c52-8244-00dab6b931c6", client_id) +07:00:43.096 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.097 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.097 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.097 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.098 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.099 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:860a8058 +07:00:43.104 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.104 [XNIO-1 task-1] UguEtg52THC0soIdc3iTEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.130 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.130 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.131 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.132 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG com.networknt.schema.TypeValidator debug - validate( "081cc4b3-b453-4c52-8244-00dab6b931c6", "081cc4b3-b453-4c52-8244-00dab6b931c6", client_id) +07:00:43.132 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.133 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.133 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.134 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.134 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.142 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.142 [XNIO-1 task-1] Bh0SfdBORTCly1qOqVMCyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.190 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2aa0fefd +07:00:43.208 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.208 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.208 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.209 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.210 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2aa0fefd +07:00:43.210 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2aa0fefd +07:00:43.210 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.210 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.213 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.222 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.225 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.230 [XNIO-1 task-1] cKeMmZsRTSKz0QskiR76ow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RJe4S8WBSuiZXO_LwzBDXg +07:00:43.301 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2ca91285 +07:00:43.303 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2ca91285 +07:00:43.329 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.329 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.329 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.330 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.330 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.331 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.331 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.338 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.345 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.346 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.346 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.347 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG com.networknt.schema.TypeValidator debug - validate( "t8WiGNcQdSpZUYCdnfxaqMvkTFwi_B8Y98rnaHO1_Qw", "t8WiGNcQdSpZUYCdnfxaqMvkTFwi_B8Y98rnaHO1_Qw", code_challenge) +07:00:43.347 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG com.networknt.schema.TypeValidator debug - validate( "ef6f0ae9-b19f-4f1f-b19d-8f66329ba633", "ef6f0ae9-b19f-4f1f-b19d-8f66329ba633", client_id) +07:00:43.347 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.347 [XNIO-1 task-1] zUZgITs0RRa2G0bTMjC4NA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.352 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.352 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.354 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.354 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.354 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.360 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:27874e26-32b2-409c-a6dc-cc521c22927d +07:00:43.367 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.367 [XNIO-1 task-2] bElalf7vR2utibEl94jvfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.373 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.373 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.377 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.378 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "tgQninSzyVMZTVHoYmiNRk0RarYs0HzugJoJjRVlFgE", "tgQninSzyVMZTVHoYmiNRk0RarYs0HzugJoJjRVlFgE", code_challenge) +07:00:43.380 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2aa0fefd +07:00:43.379 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:43.381 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.382 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.382 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.382 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.382 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.395 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.395 [XNIO-1 task-2] XcEAvY-SQ-e3AE02zo4kYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.413 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.413 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.414 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.415 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG com.networknt.schema.TypeValidator debug - validate( "1880c1ae-3333-4c37-ad0c-78954f005333", "1880c1ae-3333-4c37-ad0c-78954f005333", client_id) +07:00:43.416 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.423 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.423 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.423 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.424 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.439 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.439 [XNIO-1 task-2] f__DMWm4TgSrMlayzwEmeA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.460 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:909861e9-e616-4a15-9e06-e8956da170c2 +07:00:43.472 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.472 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.473 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.473 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG com.networknt.schema.TypeValidator debug - validate( "1880c1ae-3333-4c37-ad0c-78954f005333", "1880c1ae-3333-4c37-ad0c-78954f005333", client_id) +07:00:43.476 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.476 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.477 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.477 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.477 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.485 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.485 [XNIO-1 task-2] vGm2btBqTEa0YJ3_TUbaew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.488 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:49b0dea2-21f2-4969-a6e5-787611877e6e +07:00:43.497 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2ca91285 +07:00:43.510 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:49b0dea2-21f2-4969-a6e5-787611877e6e +07:00:43.519 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5e4171fe-54c3-40f6-9b1f-1f9f7956aaf7 +07:00:43.563 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:081cc4b3-b453-4c52-8244-00dab6b931c6 +07:00:43.575 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c3938b4f-de09-4914-b22f-13e554e837f7 +07:00:43.581 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7d453acb-4a6b-45fa-ae89-69373a22e73d +Jun 29, 2024 7:00:43 AM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +07:00:43.585 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.585 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.585 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +07:00:43.609 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG com.networknt.schema.TypeValidator debug - validate( "ef6f0ae9-b19f-4f1f-b19d-8f66329ba633", "ef6f0ae9-b19f-4f1f-b19d-8f66329ba633", client_id) +07:00:43.609 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.610 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:43.610 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.612 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.612 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.620 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7d453acb-4a6b-45fa-ae89-69373a22e73d +07:00:43.625 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.625 [XNIO-1 task-2] oiL2FrUVSxKcnSme1wbTKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.689 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2ca91285 +07:00:43.690 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.690 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.691 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.691 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.692 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.692 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.692 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.692 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.694 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.704 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.704 [XNIO-1 task-2] F7Ycoj-aSP--pRYyMmBhTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.714 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.714 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.714 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.715 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1880c1ae-3333-4c37-ad0c-78954f005333", "1880c1ae-3333-4c37-ad0c-78954f005333", client_id) +07:00:43.715 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.716 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.716 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.716 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.716 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.722 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.722 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.723 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.723 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.723 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.724 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:43.724 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.728 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.728 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.728 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.729 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.730 [XNIO-1 task-2] dABBoL2jTMC0b6zkT8HQnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nZkn1GYYSIWB7_IxFXpxrA +07:00:43.735 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.735 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.735 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.737 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.737 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.738 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.738 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.738 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.739 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.748 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.750 [XNIO-1 task-1] ioWqsGBwQH-5KRvBZTl7XA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IEwlpCC8T4SxRzY_WNdYkA +07:00:43.757 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.757 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.758 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.758 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG com.networknt.schema.TypeValidator debug - validate( "081cc4b3-b453-4c52-8244-00dab6b931c6", "081cc4b3-b453-4c52-8244-00dab6b931c6", client_id) +07:00:43.761 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.761 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.762 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.763 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.764 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.766 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.767 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.779 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.779 [XNIO-1 task-1] ltwC7D-oSKqJyQlhMq5anw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.781 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:94b0429f +07:00:43.785 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:94b0429f +07:00:43.795 [XNIO-1 task-2] HkVfnUgvTYmEmiMXC5a1EA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=homPxe9MTRShHMBYQoWRaw +07:00:43.799 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2aa0fefd +07:00:43.800 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.801 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.804 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.805 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.805 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.807 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.809 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.809 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.814 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.827 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.828 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.833 [XNIO-1 task-2] xk_mO_zeSq2zeA_0Gj3WGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VIexPR6ATQidU010Hbt9Gg +07:00:43.839 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.839 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.840 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.840 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.841 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.841 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.841 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.841 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.846 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.850 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.850 [XNIO-1 task-2] 5Jr9R0qiTxqlroDSdeIrhA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.885 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.885 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.886 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.887 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG com.networknt.schema.TypeValidator debug - validate( "e8wQd9WvILW8HqoWFJwwxxSgJRu1gUVRmx4AvH4NVWw", "e8wQd9WvILW8HqoWFJwwxxSgJRu1gUVRmx4AvH4NVWw", code_challenge) +07:00:43.887 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:43.887 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.888 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.888 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.888 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.888 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.910 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.910 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.910 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.911 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG com.networknt.schema.TypeValidator debug - validate( "ef6f0ae9-b19f-4f1f-b19d-8f66329ba633", "ef6f0ae9-b19f-4f1f-b19d-8f66329ba633", client_id) +07:00:43.911 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.911 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.912 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.912 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.912 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.913 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.913 [XNIO-1 task-1] -ROzcQ3aTIehQY63czlKrw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.924 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.925 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.928 [XNIO-1 task-2] YkKlKW5rQ0i86WOTrDVFlg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eKotO3lDRnO9OfdvTKowtA +07:00:43.934 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:94b0429f +07:00:43.959 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.959 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.959 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:43.960 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:43.962 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:43.964 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.964 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.965 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.966 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.967 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.967 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.967 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG com.networknt.schema.TypeValidator debug - validate( "bI3sc6c-iUlXx2-CCEyP3rrVzlqKS2EE_CQhbjfmV7w", "bI3sc6c-iUlXx2-CCEyP3rrVzlqKS2EE_CQhbjfmV7w", code_challenge) +07:00:43.968 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:43.968 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.968 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.968 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.969 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.969 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:43.972 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.972 [XNIO-1 task-2] ydpSpgTxQTOOJz8t8b1hEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:43.979 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:43.980 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:43.981 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.982 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.982 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.983 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:43.984 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.984 [XNIO-1 task-1] _Lnd3sePQICzLcT2eVjpZw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=s0XMxVcAT0uSUlarEk96Ng +07:00:43.984 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:43.985 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:43.985 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:43.988 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.988 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:43.989 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:43.989 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "z_-Ryjl7RoIlg7k-MUmT4Bruq1qVfruVMBcJxVaBMiU", "z_-Ryjl7RoIlg7k-MUmT4Bruq1qVfruVMBcJxVaBMiU", code_challenge) +07:00:43.990 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:43.990 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:43.991 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:43.991 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:43.991 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:43.995 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:43.995 [XNIO-1 task-2] M94BaseQRVy0jyDcl1fqAw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.032 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.041 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.041 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.047 [XNIO-1 task-1] WlJTxUszT2KERddQ5mtTLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HYoPUkyERTqU3FMsN_36LA +07:00:44.054 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.054 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.054 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.055 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:44.055 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.055 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.057 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.058 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.058 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.066 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.066 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.068 [XNIO-1 task-1] if07tHmCQo2wM2P0uIUVtQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PxEt453uQKyOx84015d_bA +07:00:44.173 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.173 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.173 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.174 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.174 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.174 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.174 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.178 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.191 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.191 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.193 [XNIO-1 task-1] 47dbSzwQQPmhnanFxdAbvw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=g5q9Lyq3SxGJ74H1v5gIEQ +07:00:44.197 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.198 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.198 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.199 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:44.199 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.199 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.200 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.200 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.202 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.210 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.211 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.213 [XNIO-1 task-1] w6AbUc8uQoS9Alkxm6WpoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Pvu4B7c0SMColRlO_o7Bmg +07:00:44.219 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9c3506d6-5228-4036-ba09-d44141934b29 +07:00:44.220 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.221 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.221 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.221 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG com.networknt.schema.TypeValidator debug - validate( "CkfIHyIxgglJJnN_sPj5UQfT0r6PJ2mTlof3NGTOzIk", "CkfIHyIxgglJJnN_sPj5UQfT0r6PJ2mTlof3NGTOzIk", code_challenge) +07:00:44.222 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.222 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.222 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.223 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.223 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.223 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.228 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.228 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.229 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.229 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.229 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.230 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.230 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.230 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.231 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.232 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.233 [XNIO-1 task-1] hejah5_dSU-F-idUD2oxqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zex1rA01SqSZz-ioHucl7g +07:00:44.237 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.237 [XNIO-1 task-2] 1XYk_4EbSWuqfhG1EfW4LA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.247 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.248 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.248 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.248 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:44.248 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.249 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.249 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.249 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.249 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.259 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a4a04019-dd68-4bbd-9fc6-093a59423a19 +07:00:44.261 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.261 [XNIO-1 task-2] gS4eEa50T0ObFQQc2kCY9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.267 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.267 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.269 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.269 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f5141477-8d3b-4c80-b936-33c38f386fd1", "f5141477-8d3b-4c80-b936-33c38f386fd1", client_id) +07:00:44.270 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.270 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.270 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.270 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.271 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.281 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.281 [XNIO-1 task-2] iXnZ5OabSkKj1HsbgzzR3Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.290 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a4a04019-dd68-4bbd-9fc6-093a59423a19 +07:00:44.294 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.294 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.294 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.295 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.295 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.296 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.296 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.296 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.305 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.306 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.308 [XNIO-1 task-2] mpnk5KTjSJi7z9zvHe3S1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=R_hewGguQTGeAF4AzVQ1UQ +07:00:44.318 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.318 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.318 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.319 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:44.319 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.320 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.320 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.320 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.320 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.352 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.353 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.355 [XNIO-1 task-2] Qzez3hgnTHafTZJoovee7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RJEcRZGsSkmdwJe0kylNRQ +07:00:44.357 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:44.364 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.365 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.365 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.365 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG com.networknt.schema.TypeValidator debug - validate( "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", client_id) +07:00:44.366 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.366 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.366 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.366 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.367 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.370 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.370 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.371 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.371 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG com.networknt.schema.TypeValidator debug - validate( "081cc4b3-b453-4c52-8244-00dab6b931c6", "081cc4b3-b453-4c52-8244-00dab6b931c6", client_id) +07:00:44.371 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.372 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.372 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.372 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.372 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.379 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.379 [XNIO-1 task-2] z-kqa5dRTr-IDnLdJ9km8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.384 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.385 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.388 [XNIO-1 task-1] bghCNK70QQifs_A9315HMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0fWrS8F0RWGBV4Kfb66jJg +07:00:44.388 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.389 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.389 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.389 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG com.networknt.schema.TypeValidator debug - validate( "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", client_id) +07:00:44.390 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.390 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.391 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.391 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.391 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.392 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.392 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.393 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.393 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG com.networknt.schema.TypeValidator debug - validate( "081cc4b3-b453-4c52-8244-00dab6b931c6", "081cc4b3-b453-4c52-8244-00dab6b931c6", client_id) +07:00:44.393 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.393 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.394 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.394 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.394 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.397 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e707ed3b +07:00:44.400 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.400 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.401 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.401 [XNIO-1 task-1] Zt0P-TulTTS4wYeWWvGwGw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.429 [XNIO-1 task-2] PWfk8VxVSHyeA3JMP2Oyxg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Xh6SbLnDTDilSAmbx_UwTA +07:00:44.434 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.434 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +07:00:44.435 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.435 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "6xPKwRnxnJsixBGrqSvI1X7RGQL1YNbUxfs4oEBLkKs", "6xPKwRnxnJsixBGrqSvI1X7RGQL1YNbUxfs4oEBLkKs", code_challenge) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) +07:00:44.435 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", client_id) +07:00:44.435 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.435 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +07:00:44.436 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:44.436 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.436 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.436 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.437 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.437 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.437 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.438 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:44.438 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.438 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.440 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.440 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.440 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.443 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.443 [XNIO-1 task-1] 8S-vbi2FSTqgQKuU8lHzNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.448 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.448 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.453 [XNIO-1 task-2] hNGu1GdsRkqn6QDQseeoWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uB7QzcNfQh6uzqnK4YucVw +07:00:44.460 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.460 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.460 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.461 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.461 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.462 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.462 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.463 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.474 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.477 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.481 [XNIO-1 task-2] Y9EHZBJsTUya5G2DTy9dPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wgJN4DdHT2GUqVAlHPorBQ +07:00:44.489 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.489 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.489 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.489 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:44.490 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.490 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:44.491 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.492 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.493 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG com.networknt.schema.TypeValidator debug - validate( "xDhLbO-OgrPjlL6KSD9ARe9UBP82tjaAeESzipTVsf0", "xDhLbO-OgrPjlL6KSD9ARe9UBP82tjaAeESzipTVsf0", code_challenge) +07:00:44.493 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.493 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.494 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.494 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.495 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.495 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.495 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.495 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.496 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.496 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.501 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.502 [XNIO-1 task-2] jKulQxSkSqOmLKZIYL2oLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.510 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.510 [XNIO-1 task-1] qPfuLGB-RPi5SseCXf3Fsw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.511 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +07:00:44.512 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG com.networknt.schema.TypeValidator debug - validate( "DBqk8BOpS44UGgTy64xAtx-kLN6JqloW7yMB0okbpao", "DBqk8BOpS44UGgTy64xAtx-kLN6JqloW7yMB0okbpao", code_challenge) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:44.513 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.513 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.513 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.513 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.513 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.513 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.514 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.514 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.514 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.516 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e707ed3b + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +07:00:44.516 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e707ed3b + +07:00:44.517 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.518 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.523 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.523 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.523 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.524 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.524 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.524 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.525 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.525 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.527 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.528 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.531 [XNIO-1 task-2] weoRFmIzR-uAWfB-jNwEJw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=I0vvCj5hSeCjPhtPipCsEA +07:00:44.532 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.532 [XNIO-1 task-1] LgvSjUkJTsSNPrlm3CmB0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.537 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.537 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.537 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.538 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", client_id) +07:00:44.538 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.539 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.539 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.540 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.540 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.541 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.556 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.556 [XNIO-1 task-2] JiWqxUApTzyMCQNQ4GrhaQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.566 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.566 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.566 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.567 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "DxMJd-kr_55uAtcPrGullTR5tw3lQ9fbgOUaiyIhb0o", "DxMJd-kr_55uAtcPrGullTR5tw3lQ9fbgOUaiyIhb0o", code_challenge) +07:00:44.567 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.568 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.568 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.568 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.569 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.569 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.584 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.584 [XNIO-1 task-2] FLJRINrlSi2Ncl_HulvPpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.601 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e707ed3b +07:00:44.611 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.611 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.611 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.612 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG com.networknt.schema.TypeValidator debug - validate( "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", client_id) +07:00:44.612 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.612 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.615 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.615 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.615 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.620 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.620 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.621 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.621 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG com.networknt.schema.TypeValidator debug - validate( "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", client_id) +07:00:44.622 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.622 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.622 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.622 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.622 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.628 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d345606f-20c4-4c5d-8684-fe1271615bbf +07:00:44.630 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.631 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e707ed3b +07:00:44.631 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e707ed3b +07:00:44.631 [XNIO-1 task-2] Duqqk4hKToKBAcWuNCGAFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.635 [XNIO-1 task-1] Q6-os742TYuS3JfbiddXZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OwpkUByeR5eNqVdnYTKCQA +07:00:44.636 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:44.645 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.645 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.645 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.645 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG com.networknt.schema.TypeValidator debug - validate( "cuL-i0TMqMlrULuXxgHc-XGXcUgb9lZjEWx6XDDgfFY", "cuL-i0TMqMlrULuXxgHc-XGXcUgb9lZjEWx6XDDgfFY", code_challenge) +07:00:44.646 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.646 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.646 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.647 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.647 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.647 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.647 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.648 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.648 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.648 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.649 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.649 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.649 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.649 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.658 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.661 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.662 [XNIO-1 task-2] R5yQ9esgSwmrtDz44TiK8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GhONvOF9TPWeeU2lqF2wgA +07:00:44.663 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.663 [XNIO-1 task-1] pBdRn_2kQd2WT_K-mVTG6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.673 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.674 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.674 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.674 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG com.networknt.schema.TypeValidator debug - validate( "5gt1Q3HDdpUuc3CEaGNcNoQ9sjCIZIRPFkkdAT17SYE", "5gt1Q3HDdpUuc3CEaGNcNoQ9sjCIZIRPFkkdAT17SYE", code_challenge) +07:00:44.675 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.675 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.675 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.676 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.676 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.676 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.688 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.688 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.704 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.704 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.704 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.705 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.705 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.705 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.705 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.706 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.716 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.716 [XNIO-1 task-2] dnyuHrNzQcizKGsa2r7IxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.717 [XNIO-1 task-1] OVCurxGGRY6syCNFqjSfDg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dCqVBI_kRDOHop3x-aWbmw +07:00:44.722 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.722 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.722 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.723 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9Bapo7rCDP3UwSAb72jz_euDvcNO29xsMs4Emb81IAo", "9Bapo7rCDP3UwSAb72jz_euDvcNO29xsMs4Emb81IAo", code_challenge) +07:00:44.724 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.724 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.725 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.725 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.725 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.725 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.731 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.731 [XNIO-1 task-2] pMpeRpBwQzqWGIa71uYH4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.757 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e707ed3b +07:00:44.793 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.793 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.793 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.794 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:44.794 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:58ce18cd +07:00:44.794 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.794 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.796 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:58ce18cd +07:00:44.794 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.800 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.801 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.804 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.804 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.804 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.805 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.805 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.805 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.805 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.805 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.817 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.817 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.822 [XNIO-1 task-2] HhjMC6XNQluVrXlAcxLK8Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7GXeTkJfSseVWUfpG2elgw +07:00:44.826 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.828 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.828 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.828 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:44.829 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.829 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.829 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.829 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.829 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.830 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.830 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.835 [XNIO-1 task-1] uh6gqNhRS9GE7kgvvwwoYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XvgmLvROQRePRK3oS80f2A +07:00:44.840 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.840 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.841 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.841 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.841 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.842 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.842 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.843 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.843 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.844 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.845 [XNIO-1 task-2] VJCsON8PRI2ze4YvMzJcGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=v1t4ca4ORfuIZaCmXd2J4Q +07:00:44.860 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.860 [XNIO-1 task-1] v6tmLYIkTAWhxNB3tCytrg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.868 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.868 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.868 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.869 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1880c1ae-3333-4c37-ad0c-78954f005333", "1880c1ae-3333-4c37-ad0c-78954f005333", client_id) +07:00:44.869 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.870 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.870 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.870 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.871 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.880 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.880 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.883 [XNIO-1 task-1] BAQdsj6FRfOpnkpUNVPe4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k_umno_wTC-QN7-mcMFqsA +07:00:44.883 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.884 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.884 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG com.networknt.schema.TypeValidator debug - validate( "cx3jEJn_fxbl6Cj284qrDXFiFjtCdAv0DezBBMjNZsc", "cx3jEJn_fxbl6Cj284qrDXFiFjtCdAv0DezBBMjNZsc", code_challenge) +07:00:44.884 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:44.884 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.885 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.885 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.885 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.885 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.891 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.891 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.892 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.892 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.893 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.893 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.893 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.893 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.898 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.898 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.900 [XNIO-1 task-2] 8QLji-CgQKeGY2YFpEgl1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=V77hrf0PSjiuGzQLCYbADw +07:00:44.906 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.906 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.906 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:44.907 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:44.907 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:44.907 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:44.908 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:44.908 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:44.908 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:44.911 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.911 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:44.916 [XNIO-1 task-1] XqYn898mT3O4jtMtrZPlJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vF1mcRTyTymIWuplkrPq_Q +07:00:44.924 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:44.925 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.925 [XNIO-1 task-2] UmGJ8fgBQkOEzHf7bQ3oUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.927 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21f6f3af +07:00:44.961 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:511784a3-2c0c-4ce0-9462-70415138ea19 +07:00:44.961 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.962 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:44.962 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:44.963 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1880c1ae-3333-4c37-ad0c-78954f005333", "1880c1ae-3333-4c37-ad0c-78954f005333", client_id) +07:00:44.963 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:44.963 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:44.963 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:44.966 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:44.967 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:44.985 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:511784a3-2c0c-4ce0-9462-70415138ea19 +07:00:44.988 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:44.988 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:44.993 [XNIO-1 task-2] GizIs7aNQ-yRkSdolYSdCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Kc2tIJspSYC_sDmnrxiupg +07:00:45.000 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.000 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.000 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.001 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.001 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.001 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.001 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.001 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.015 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.015 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.028 [XNIO-1 task-2] 3EF5ChIxS9eTXRcTqKPr9A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OVkj5L8BSZCVdFXj6U3v3A +07:00:45.100 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.100 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.100 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.101 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.101 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.101 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.101 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.101 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.120 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.120 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.123 [XNIO-1 task-2] MYf3BB2rQ4GEBN2vhZUvtw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U4zvHetzRNa-jdf17_6nUg +07:00:45.132 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.133 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.133 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.133 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.133 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.133 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.134 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.134 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.134 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "k4b3Dov9kKSv90fFg0FGfQmUyaLFIpTdSWexia9fPmw", "k4b3Dov9kKSv90fFg0FGfQmUyaLFIpTdSWexia9fPmw", code_challenge) +07:00:45.135 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.135 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", client_id) +07:00:45.135 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.135 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.135 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.135 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.136 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.136 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.146 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.146 [XNIO-1 task-2] 7FvYI6qpTp-6Kwl68E_1Dg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.151 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.152 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.152 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.152 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.153 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", client_id) +07:00:45.153 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.153 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.154 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.154 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.154 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.164 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.166 [XNIO-1 task-1] a7_DjXCoSM-9V2xiVYWUxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.173 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.174 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.174 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.175 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG com.networknt.schema.TypeValidator debug - validate( "DWdkQj4RxQaIx3yd_dqhmLq45BKeMsU_9ZQQUsOviAs", "DWdkQj4RxQaIx3yd_dqhmLq45BKeMsU_9ZQQUsOviAs", code_challenge) +07:00:45.175 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.175 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.175 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.176 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.176 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.176 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.178 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.178 [XNIO-1 task-2] IecPpcInS--87u6tjcuA3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.193 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.194 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.197 [XNIO-1 task-1] O36CnTqwQsy9j7Meo7EY4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ElDLXpq-Q--0mCZVDGfA6w +07:00:45.240 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.241 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.241 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.241 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", client_id) +07:00:45.241 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.242 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.242 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.242 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.242 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.250 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.250 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.253 [XNIO-1 task-1] V-t-Vx9-S1K4KrIQcmSoCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VAN1d02mT9KUXLIi_7dAAw +07:00:45.262 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.262 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.262 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.262 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.263 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.263 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.263 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", client_id) +07:00:45.263 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.263 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.263 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.263 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.264 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.264 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.264 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.264 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.264 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.264 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.264 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.271 [XNIO-1 task-2] xMpy_YpZQVW3BKfa1p8i2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.271 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.271 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.271 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.354 [XNIO-1 task-1] KUDAfR_hRGuhUn98jG_lbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=X8dUfn0rT-KA4QqoigdpOA +07:00:45.361 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.361 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.361 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.362 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG com.networknt.schema.TypeValidator debug - validate( "e9MZsrfYBy1-FIZk6Eq-KEFa2hIamsiNIaxJJ4tcDk0", "e9MZsrfYBy1-FIZk6Eq-KEFa2hIamsiNIaxJJ4tcDk0", code_challenge) +07:00:45.362 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.362 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.362 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.363 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.363 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.363 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.364 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:491d9055-639f-4d5f-8ae7-c64cb1d72640 +07:00:45.374 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.374 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.378 [XNIO-1 task-1] i-SPgWwsSCSNjA4_28v1hA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SaP1A4qASf6lAeGukqDxuQ +07:00:45.385 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.386 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.387 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.387 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.387 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.388 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.388 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.388 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.390 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.390 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.390 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.390 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG com.networknt.schema.TypeValidator debug - validate( "KtLafkukYWfMfZ0LPkqRUFo5RGjcoNdhs7mxmayQnoo", "KtLafkukYWfMfZ0LPkqRUFo5RGjcoNdhs7mxmayQnoo", code_challenge) +07:00:45.390 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.391 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.391 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.391 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.391 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.391 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.401 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.401 [XNIO-1 task-1] DIipHVYISCOcYJuEkf5yWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.402 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.403 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.411 [XNIO-1 task-2] I9Izes7_SzGrpAF3pMfgWA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9arz7n3QR3a6DDm7DGNLcQ +07:00:45.417 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.417 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.417 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.418 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", client_id) +07:00:45.418 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.418 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.419 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.419 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.419 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.426 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.427 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.432 [XNIO-1 task-2] fDTXPeHARMS8E6KkQh2vxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Xh1ATNTrSXSUVMtq2a9T7A +07:00:45.466 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.466 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.466 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.467 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", client_id) +07:00:45.467 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.467 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.468 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.468 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.468 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.481 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.481 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.483 [XNIO-1 task-2] t8iOd1J3QfuqPc0Z24rY-A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zh33GsqHR2mdZLl1mQ9YYA +07:00:45.494 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.495 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.495 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.495 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5141477-8d3b-4c80-b936-33c38f386fd1", "f5141477-8d3b-4c80-b936-33c38f386fd1", client_id) +07:00:45.495 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.496 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.496 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.496 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.496 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.505 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.505 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.507 [XNIO-1 task-2] pw3641DCSeG4rp5ExV5gRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9Gpckt3LT26wKbHaDTupRw +07:00:45.512 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.512 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.512 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.513 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5141477-8d3b-4c80-b936-33c38f386fd1", "f5141477-8d3b-4c80-b936-33c38f386fd1", client_id) +07:00:45.513 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.513 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.514 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.514 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.515 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.527 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.527 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.529 [XNIO-1 task-2] 6UUd17TJTqCrU8k3hJPWvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1Im2us8nTCav7bJ0MsPVVA +07:00:45.539 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21f6f3af +07:00:45.545 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.545 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.545 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.546 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.546 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.546 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.547 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.547 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.553 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.555 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.560 [XNIO-1 task-2] JcE5eoDQS9-nc0R-JierOQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8AJtGnmvRCeHLB29doUXgw +07:00:45.563 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.564 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.564 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.564 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:45.564 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.564 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.565 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.565 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.565 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.572 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:659fa2d8 +07:00:45.575 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:659fa2d8 +07:00:45.578 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.578 [XNIO-1 task-2] UztkKoKkQ7uEVYpIlsJGJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.578 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7fba1cae-8125-4ebc-bb50-99603f39191e +07:00:45.595 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.595 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.595 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.595 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mUH9MDlRJdlKqeMBWBwdGEoLrZKEK3yVmhhaSsu1wGY", "mUH9MDlRJdlKqeMBWBwdGEoLrZKEK3yVmhhaSsu1wGY", code_challenge) +07:00:45.596 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.596 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.596 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.596 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.597 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.597 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.599 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.599 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.600 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.600 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.600 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.600 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.601 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.601 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.606 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:21f6f3af +07:00:45.606 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.606 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.608 [XNIO-1 task-2] z1YnHThKQAOJa_AzjMV4OQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wstBNzo6QKWY4gyF6oayMA +07:00:45.611 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.611 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.613 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.613 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.614 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.614 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:45.614 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.615 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.615 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.615 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.615 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.617 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:659fa2d8 +07:00:45.618 [XNIO-1 task-1] uplnn3GcT-Glvf4w4BuC8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=t8Vub6g2TQKUei0zQjVbEw +07:00:45.622 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.622 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.626 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.626 [XNIO-1 task-2] g5jMeT9ERdyQ3232NX8l1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3o4XBGC6SDWcNnZuyZN2dg +07:00:45.626 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.626 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4cd70054 +07:00:45.626 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.631 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:45.631 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.631 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.631 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.631 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.631 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.632 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.633 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:45.633 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.633 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.633 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.634 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.634 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.635 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.635 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.643 [XNIO-1 task-1] 7Nf2ctiQQ_ydbatbAg5ozQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.643 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.643 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.643 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.645 [XNIO-1 task-2] WCdtjP0MR6OaeJBHODiX7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iLFeplPlRUqc2LPGEreLCw +07:00:45.651 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.651 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.651 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.652 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG com.networknt.schema.TypeValidator debug - validate( "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", "16a43d3f-0b9e-4270-9f4b-8e237a82ff1b", client_id) +07:00:45.652 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.652 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.652 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.652 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.653 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.687 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3fb4e30c-41f5-4578-90a6-5eca9e1254cc +07:00:45.698 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.698 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.701 [XNIO-1 task-1] D8TrMgypSqqlFb4SGSeBIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=R45CqOucT_CsKZ1DhkwMbQ +07:00:45.706 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.706 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.706 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.706 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG com.networknt.schema.TypeValidator debug - validate( "96662cae-4329-4564-92fe-d1e6775b8dd5", "96662cae-4329-4564-92fe-d1e6775b8dd5", client_id) +07:00:45.711 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.711 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.714 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.714 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.732 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.733 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.733 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.733 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.734 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:45.734 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.734 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.735 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.735 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.735 [XNIO-1 task-2] oCtUf71KSUedPzzOfULQLQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.742 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.742 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.742 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.742 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.748 [XNIO-1 task-1] 2BQWFIaQRr2GXZfpyyeosg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=c339TbgES3-eKZA4I0NJiA +07:00:45.768 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:45.780 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.780 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.780 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.781 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.781 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.781 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.781 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.782 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.790 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.791 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.796 [XNIO-1 task-2] 33XwJf2LTfWsP7lUl3rTaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PycPwxn_RiONnYF3CVwb9Q +07:00:45.803 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.805 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.806 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.806 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.806 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.811 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.812 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.814 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.817 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e582a549 +07:00:45.822 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.822 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.822 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.822 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:45.823 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.823 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.824 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.824 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.824 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.824 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e582a549 +07:00:45.831 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.831 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.839 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.840 [XNIO-1 task-1] TkFdL3cZRbG8zIMqa9jE9w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:45.841 [XNIO-1 task-2] xW7_FmhwSYWlAkM9UNXYFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CJ-TRur9Tk-B5ncl-87-0g +07:00:45.901 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.902 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.902 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.902 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", client_id) +07:00:45.902 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.903 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.903 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.903 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.903 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.921 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:45.921 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.921 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.921 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.921 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.922 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:45.922 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.922 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:45.922 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:45.923 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:45.923 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:45.926 [XNIO-1 task-1] swqeGrWlRHKNri3EtD6bcg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_D0-fRvbSCCnkP4RTbUzPQ +07:00:45.940 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.940 [XNIO-1 task-2] HovBS7sVQguAc5ZlpsR9Hg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.950 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.950 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.951 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.951 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG com.networknt.schema.TypeValidator debug - validate( "bULfU2hH23N0jTOJqU6Z3p3rj3faLmwOQG7THsqQj_Y", "bULfU2hH23N0jTOJqU6Z3p3rj3faLmwOQG7THsqQj_Y", code_challenge) +07:00:45.951 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.951 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.952 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.952 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.952 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.952 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.969 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.969 [XNIO-1 task-2] Du4ZbHuHTVS6YtwQ6Lkhdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.974 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.974 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:45.975 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.975 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG com.networknt.schema.TypeValidator debug - validate( "sGdKhWO046yMn4Pg3anLtQPUiMQHYwOGQpPRYeOrfKg", "sGdKhWO046yMn4Pg3anLtQPUiMQHYwOGQpPRYeOrfKg", code_challenge) +07:00:45.975 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:45.975 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:45.976 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:45.976 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:45.976 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:45.976 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:45.991 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:45.991 [XNIO-1 task-2] GMX2aB-lTKOhd9ds62aW-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:45.996 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7732b8ac-90a9-4c51-b94a-cd1c6966c82e +07:00:45.998 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:45.998 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.998 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.998 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:45.999 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "438d3759-5b50-4abe-ba8c-c6029b3055e2", "438d3759-5b50-4abe-ba8c-c6029b3055e2", client_id) +07:00:45.999 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:45.999 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.000 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.000 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.000 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.007 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.008 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.010 [XNIO-1 task-2] I7tyFCo1SF-J--avq5Hm5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=T_ICEF1IRISNEVY0jqa5XQ +07:00:46.070 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:659fa2d8 +07:00:46.084 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9f54bd3c-4424-4169-8614-7bc8aeb27320 +07:00:46.085 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9f54bd3c-4424-4169-8614-7bc8aeb27320 +07:00:46.090 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.090 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.091 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.091 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.094 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.094 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.094 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.094 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.115 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.116 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.121 [XNIO-1 task-2] rf53BH-xQ1OygXvytB3K2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2LEeFp6ATkiDKKsNmbkV1g +07:00:46.131 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.132 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.132 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.132 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.132 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.133 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.133 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.137 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.139 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.139 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.139 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.140 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5qredh8yRaiG5fVmlA4wydv7W2I9rq3HuwSFcoxIsJM", "5qredh8yRaiG5fVmlA4wydv7W2I9rq3HuwSFcoxIsJM", code_challenge) +07:00:46.140 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.140 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.140 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.141 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.141 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.141 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.146 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.149 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.153 [XNIO-1 task-2] iDprfpDmQ5OaZu3eYl7Prg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SbZjLpatT4evNdUodunFWg +07:00:46.155 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.155 [XNIO-1 task-1] -DfpD11YR5SmseoRUFIvVQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.157 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:39b0882a-7f6d-41e2-8322-9fa229a30a81 +07:00:46.158 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.159 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.159 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.159 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG com.networknt.schema.TypeValidator debug - validate( "600d2c0e-f6f3-4b84-899f-350dfda23523", "600d2c0e-f6f3-4b84-899f-350dfda23523", client_id) +07:00:46.159 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.159 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.160 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.160 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.161 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.169 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.169 [XNIO-1 task-1] gDra_ul1S_yw-84aoh4FQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.178 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.178 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.179 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.179 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG com.networknt.schema.TypeValidator debug - validate( "600d2c0e-f6f3-4b84-899f-350dfda23523", "600d2c0e-f6f3-4b84-899f-350dfda23523", client_id) +07:00:46.180 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.181 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.181 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.181 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.181 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.192 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.192 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.194 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.194 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.194 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.195 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", client_id) +07:00:46.195 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.195 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.195 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.195 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.195 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.197 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:21f6f3af +07:00:46.198 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4cd70054 +07:00:46.201 [XNIO-1 task-1] z1JE0NLHTn6epP8tXVmGgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=H49HujUiRyuGHxKQSUwd1g +07:00:46.208 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.208 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.208 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.209 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.209 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.209 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.209 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.209 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.211 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.212 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.215 [XNIO-1 task-2] _ar_2j7KQR2zXmROYZFJcg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_3RUed2jQdur6_z3MlFf0Q +07:00:46.225 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.226 [XNIO-1 task-1] FWSN3tqETgSnja6cbLy2RA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.237 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.237 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.237 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.237 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "BvSIj8t0DFLe6gV_wdkpUo6eJ-JxiVd3at0yOsNJXAg", "BvSIj8t0DFLe6gV_wdkpUo6eJ-JxiVd3at0yOsNJXAg", code_challenge) +07:00:46.237 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.238 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.238 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.238 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.238 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.239 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.249 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.249 [XNIO-1 task-1] PnIveSv7Q_SXEN3_uOtOsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.257 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.258 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.258 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.258 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "v2_29Mn6CwJM3TruPlPADgxDHIU4Gt_zAwfV5JR7fx4", "v2_29Mn6CwJM3TruPlPADgxDHIU4Gt_zAwfV5JR7fx4", code_challenge) +07:00:46.261 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.261 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.262 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.262 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.262 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.262 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.272 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.272 [XNIO-1 task-1] fmdvuBR1SXWhYjq36Ei-hQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.318 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a1a263d2 +07:00:46.325 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a1a263d2 +07:00:46.327 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.327 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.328 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.329 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG com.networknt.schema.TypeValidator debug - validate( "l7FoStvUkjjnI8EcGqEg82xU4aXBS5XYuI6njssxyaM", "l7FoStvUkjjnI8EcGqEg82xU4aXBS5XYuI6njssxyaM", code_challenge) +07:00:46.329 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.330 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.330 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.331 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.331 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.331 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.348 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0d9327b4-4c30-496e-9bc2-f020d4e8d8ac +07:00:46.375 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.375 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.376 [XNIO-1 task-1] v7ntDefJQ1Kh0ylUmpLEYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NuIcNgWKT6iXZbkHHZcHlQ +07:00:46.405 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:94e2bb3c +07:00:46.406 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fa6ff093-7b6e-4849-812b-4aa5f6c43c4c +07:00:46.407 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fa6ff093-7b6e-4849-812b-4aa5f6c43c4c +07:00:46.428 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.428 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.429 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.429 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.429 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.429 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.429 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "zKlyuaUglFDf-GcbXxuoPOtRh1q2TRkjCXhRpzDrDgk", "zKlyuaUglFDf-GcbXxuoPOtRh1q2TRkjCXhRpzDrDgk", code_challenge) +07:00:46.429 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.429 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.429 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.430 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.430 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.430 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.430 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.430 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.430 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.431 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.457 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.465 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.466 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.467 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e193dd84-6c54-4986-bfd0-6dcfb3408045 +07:00:46.471 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.472 [XNIO-1 task-1] cHhQmPyjRIKRomWN73UGOA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.474 [XNIO-1 task-2] SBjXpsuPQAiFDuXw3ysDjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uFk4NwB4QS-kjmCC636Qog +07:00:46.480 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.481 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.481 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.481 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG com.networknt.schema.TypeValidator debug - validate( "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", client_id) +07:00:46.482 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.483 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.483 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.483 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.484 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.503 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.503 [XNIO-1 task-1] g4et6AecTUC036OaJnF3jA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.513 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.513 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.514 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.514 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG com.networknt.schema.TypeValidator debug - validate( "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", client_id) +07:00:46.515 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.515 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.515 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.515 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.515 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.519 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.519 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.519 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.519 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG com.networknt.schema.TypeValidator debug - validate( "d79571cd-c2be-4cd5-9d64-4cf9767aef4b", "d79571cd-c2be-4cd5-9d64-4cf9767aef4b", client_id) +07:00:46.520 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.520 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.520 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.520 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.520 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.530 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.530 [XNIO-1 task-1] JrklDq4hTV2YKA6Kw_yJxw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.535 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.535 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.537 [XNIO-1 task-2] OU6M-wOGQn-006EFGeiOFg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xHIhYrEsQFu2Pv6VMfglKg +07:00:46.544 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.545 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.545 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.545 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG com.networknt.schema.TypeValidator debug - validate( "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", client_id) +07:00:46.546 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.546 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.547 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.547 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.548 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.563 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4cd70054 +07:00:46.566 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.567 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.591 [XNIO-1 task-2] V4wg_WVWSRu95zGpAp7w9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ebXjChebT--iACPpEmnwqw +07:00:46.596 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.596 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.596 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.597 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG com.networknt.schema.TypeValidator debug - validate( "Kq7SCuj6kfgq117bbq8lxbvL4SbXmB9eoC-gCocbZr8", "Kq7SCuj6kfgq117bbq8lxbvL4SbXmB9eoC-gCocbZr8", code_challenge) +07:00:46.597 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.597 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.597 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.598 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.598 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.598 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.598 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.598 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.598 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.599 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.599 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.599 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.599 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.599 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.601 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e582a549 +07:00:46.603 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4cd70054 +07:00:46.607 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.608 [XNIO-1 task-1] cG3vOmxhR5WrwkEwnfjITg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.610 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.611 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.615 [XNIO-1 task-2] xfJRs609SwmwMxiBE4NT2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AYPAItDASn6dwUSyRfQPiA +07:00:46.625 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.625 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.626 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.626 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", client_id) +07:00:46.626 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.627 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.631 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.631 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.633 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.645 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.645 [XNIO-1 task-1] rMq7ZzwcQVKq7of6zWnpiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.651 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.651 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.652 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.654 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG com.networknt.schema.TypeValidator debug - validate( "Z-uXphwV3t7YRBIEr8DINyk-TKXu6h0YIlDqOwnPhMw", "Z-uXphwV3t7YRBIEr8DINyk-TKXu6h0YIlDqOwnPhMw", code_challenge) +07:00:46.655 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.656 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.656 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.656 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.656 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.656 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.660 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a1a263d2 +07:00:46.660 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.660 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.660 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.661 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.661 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.661 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.661 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.661 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.666 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.666 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.669 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.669 [XNIO-1 task-1] D6K1VGq_QNm3sTB5BJzvCg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.669 [XNIO-1 task-2] Fs1xaoCmTDuKaM56f_l63g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-fi3b7gzRH-R5p6nb5JweA +07:00:46.711 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.711 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.711 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.711 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.716 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", client_id) +07:00:46.716 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.716 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.716 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.716 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.717 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.718 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.720 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.720 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.720 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:46.720 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.721 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.721 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.721 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.721 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.731 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.731 [XNIO-1 task-1] bVjkGIGaS1OdZhHYdrUaAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.734 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.734 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.737 [XNIO-1 task-2] 4rfVFN95SWOFohikqfGBJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0YIBgsC0SPKqyE66nXA2kA +07:00:46.741 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.741 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.741 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.741 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "cf8fcfb9-c7fe-4bb2-a588-4e61b9309939", "cf8fcfb9-c7fe-4bb2-a588-4e61b9309939", client_id) +07:00:46.742 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.744 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.744 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.744 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.746 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.746 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.747 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.747 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.747 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:46.748 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.748 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.748 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.748 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.748 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.777 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:94e2bb3c +07:00:46.778 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.778 [XNIO-1 task-2] ohao-OBxRGiIa9EKL1u8bw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.787 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.788 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.788 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.789 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.790 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.790 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a9T3avKmkLaKhJLAg_gd0luPYuYQLevkPi1qykWzeFI", "a9T3avKmkLaKhJLAg_gd0luPYuYQLevkPi1qykWzeFI", code_challenge) +07:00:46.792 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.793 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.793 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.793 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.794 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.795 [XNIO-1 task-1] rwHXdoF-R06WRu_UiIBnBA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NKHhASO-RtC8rcVeY7CEIg +07:00:46.802 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a1a263d2 +07:00:46.811 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.811 [XNIO-1 task-2] ttcdePmEShyr9pupINym7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.812 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:32772cb1 +07:00:46.815 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:32772cb1 +07:00:46.820 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.820 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.821 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.821 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "zEBrl68KMm3FJLGqHu-buQl-Rr1Y6U1WVYO0HDTUA88", "zEBrl68KMm3FJLGqHu-buQl-Rr1Y6U1WVYO0HDTUA88", code_challenge) +07:00:46.822 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:46.822 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.822 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.822 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.823 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.823 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.839 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4cd70054 +07:00:46.841 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.841 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.841 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.841 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.841 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:46.841 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.842 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.842 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.842 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.842 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.844 [XNIO-1 task-2] IML5Da_rQrKswCN7iKdaPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7keYevyxTFSnAv_OIk0XbQ +07:00:46.851 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.851 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.851 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.851 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.851 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.852 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG com.networknt.schema.TypeValidator debug - validate( "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", client_id) +07:00:46.852 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.852 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.853 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.853 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.853 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.856 [XNIO-1 task-1] P67Q3WzJRouhW-tnCAop8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qAIr8MW4Sw62v4XjRpLjrw +07:00:46.861 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.861 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.861 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.861 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.862 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.862 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.862 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.864 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.866 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.866 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.870 [XNIO-1 task-2] _1UwKCB7R-Cw-l7rTGs5ug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=L-xJC-UhTKefjOHrmyhqRw +07:00:46.878 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.878 [XNIO-1 task-1] 2-tFzjLLSa6Vciz8K_Dahw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.891 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.891 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.891 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.891 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "39b0882a-7f6d-41e2-8322-9fa229a30a81", "39b0882a-7f6d-41e2-8322-9fa229a30a81", client_id) +07:00:46.892 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.892 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.892 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.892 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.892 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.895 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.895 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.896 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.896 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG com.networknt.schema.TypeValidator debug - validate( "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", "c63596fb-21ac-4d94-9cb1-10ebc0bc1106", client_id) +07:00:46.896 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.896 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.897 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.897 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.897 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.903 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:46.903 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:46.905 [XNIO-1 task-1] QTokg4RDQZCzpF50ogSNmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oIIE_Z1FREu2pvAQUbEaDw +07:00:46.907 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.908 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.912 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.913 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a1a263d2 +07:00:46.915 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a1a263d2 +07:00:46.915 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:46.916 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:46.916 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:46.916 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:46.916 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:46.916 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:46.919 [XNIO-1 task-2] H52O9RxUSXuchifC-6vpPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aQq5BxiuSZ2JW5Wda8gSiA +07:00:46.927 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.927 [XNIO-1 task-1] gRq__FZ6S-i5iltJcvQ8ag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.931 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.931 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.931 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.932 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG com.networknt.schema.TypeValidator debug - validate( "39b0882a-7f6d-41e2-8322-9fa229a30a81", "39b0882a-7f6d-41e2-8322-9fa229a30a81", client_id) +07:00:46.932 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.932 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.932 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.932 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.932 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.939 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:32772cb1 +07:00:46.941 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.941 [XNIO-1 task-1] WmgqLadRRxmXw4T9JCjaow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.951 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:94e2bb3c +07:00:46.964 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.964 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.965 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.965 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", client_id) +07:00:46.965 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.965 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4cd70054 +07:00:46.965 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.966 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.966 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.966 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.975 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:46.975 [XNIO-1 task-1] LGdOUXQYR-WFTnmDIowicw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:46.989 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.989 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:46.990 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:46.990 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", client_id) +07:00:46.990 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:46.991 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:46.991 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:46.991 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:46.991 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:46.998 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3095988b-270f-44ef-9982-aef8967318fc +07:00:47.005 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.005 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.007 [XNIO-1 task-1] bVaOU1WTTS6e_-zq4cWUeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5XzJJZNOQ0-lMWhfp5_MZg +07:00:47.013 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a1a263d2 +07:00:47.014 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.014 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +07:00:47.015 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d863a9c-1ddf-4cad-af0f-b24011e8f5eb", "5d863a9c-1ddf-4cad-af0f-b24011e8f5eb", client_id) +07:00:47.015 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +07:00:47.016 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +07:00:47.017 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.017 [XNIO-1 task-2] bcWk6W-ERhiVZfAPKS54Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.017 [XNIO-1 task-2] bcWk6W-ERhiVZfAPKS54Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.018 [XNIO-1 task-2] bcWk6W-ERhiVZfAPKS54Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.018 [XNIO-1 task-2] bcWk6W-ERhiVZfAPKS54Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +07:00:47.018 [XNIO-1 task-2] bcWk6W-ERhiVZfAPKS54Pw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +07:00:47.028 [XNIO-1 task-2] bcWk6W-ERhiVZfAPKS54Pw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.029 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.029 [XNIO-1 task-1] CAyBRZZKTc-20R-CJezzIw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.032 [XNIO-1 task-2] bcWk6W-ERhiVZfAPKS54Pw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GgKJLNFhS5y5WAYx-9zbOQ +07:00:47.039 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.040 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.040 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.041 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "jXqxJjirt9AyTqki5rOBqbjvZK_tgnP4Mlpmd2bNUYA", "jXqxJjirt9AyTqki5rOBqbjvZK_tgnP4Mlpmd2bNUYA", code_challenge) +07:00:47.041 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.041 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.042 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.043 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.043 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.043 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.051 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.057 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.057 [XNIO-1 task-1] GPGrm1Y4SpiYfvEANKhhAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.066 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.067 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.067 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.067 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG com.networknt.schema.TypeValidator debug - validate( "_o72md7IR9ESYJkr0MiU75bBQhDahBYX_52qlxNRX9w", "_o72md7IR9ESYJkr0MiU75bBQhDahBYX_52qlxNRX9w", code_challenge) +07:00:47.067 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.068 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.068 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.068 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.068 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.073 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4cd70054 +07:00:47.077 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.081 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:32772cb1 +07:00:47.088 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e9ee56e0-37df-4323-b068-e034f02a40ef +07:00:47.093 [XNIO-1 task-1] OQ8otSpUS26pNJM3-ceMbg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.093 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3095988b-270f-44ef-9982-aef8967318fc +07:00:47.093 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e9ee56e0-37df-4323-b068-e034f02a40ef +07:00:47.105 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.106 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4cd70054 +07:00:47.105 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.106 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.107 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "HzYhTq_V-iZ_QGhSIUzuuYqvaM0U8DYWLWa-PYzelc4", "HzYhTq_V-iZ_QGhSIUzuuYqvaM0U8DYWLWa-PYzelc4", code_challenge) +07:00:47.107 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.107 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.108 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.108 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.108 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.111 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.123 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.123 [XNIO-1 task-1] 0qXU2RClTjKfAtvUfVAGTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.172 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.172 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.172 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.175 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3095988b-270f-44ef-9982-aef8967318fc +07:00:47.178 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.179 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.179 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.179 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.179 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.179 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.179 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.179 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.180 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.180 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.180 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.180 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.180 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.180 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.181 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.193 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.193 [XNIO-1 task-2] j7jYZhmiRl-dXrliYeT59Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.196 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.196 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.203 [XNIO-1 task-1] yQO-9BLgQVanHXwjp8r7Vw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HRN59HM1R2-sedEJk_Aduw +07:00:47.208 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.208 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.209 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.209 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:47.209 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.209 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.209 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.210 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.210 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.210 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.211 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.211 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.211 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:47.211 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.212 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.212 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.212 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.212 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.224 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.225 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.227 [XNIO-1 task-1] AfbmvxVUTMOtcac-ij5JhQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.227 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ba8b014b +07:00:47.230 [XNIO-1 task-2] LgyiCB5OTQiy9P6GP6NATQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rkEKZ9xBSd25FCXMIpCDQQ +07:00:47.230 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ba8b014b +07:00:47.241 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.241 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.242 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.242 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb81d148-63cb-4d99-a2e1-5d82993cc627", "bb81d148-63cb-4d99-a2e1-5d82993cc627", client_id) +07:00:47.242 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.242 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.242 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.242 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.243 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.247 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.249 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.249 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.250 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:47.250 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.250 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.250 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.250 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.251 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.251 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.252 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.254 [XNIO-1 task-2] D3sqmUQhQ1e36KBHSBvcrA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=shw7F3-wRwOQrqWoCkn-dA +07:00:47.257 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.257 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.257 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.257 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.258 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.258 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.258 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.258 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.258 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.258 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.263 [XNIO-1 task-1] 1aJsFZVKQrSdmPXRunPpWQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xMww34ktQ4eP0ZXpcRVPrA +07:00:47.268 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.268 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.268 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.268 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.269 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.269 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Mv7Vbo_UnMxRJExN5JQyZLaLuJtGAYd8MNY86y8iGOc", "Mv7Vbo_UnMxRJExN5JQyZLaLuJtGAYd8MNY86y8iGOc", code_challenge) +07:00:47.269 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:47.269 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.269 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.269 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.269 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.270 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.272 [XNIO-1 task-2] YZpthzp5QQCUr0NbMmJcbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KQnWNNxhQL2zgP0lVqyrig +07:00:47.277 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.277 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.278 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.278 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.278 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.278 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.278 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.280 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.285 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.285 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.287 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.287 [XNIO-1 task-2] BPm_d6x_S1yZ0LfowyI1fQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.289 [XNIO-1 task-1] L1BS8yP5SpS27b6uPYMM0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Mw7gJF33RnaDoIHG-V1zQQ +07:00:47.297 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.297 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.298 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.298 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG com.networknt.schema.TypeValidator debug - validate( "n16sTtZjx-S-efv5HCU_Ap8oijJTCI7bq6ooE6oMmXs", "n16sTtZjx-S-efv5HCU_Ap8oijJTCI7bq6ooE6oMmXs", code_challenge) +07:00:47.298 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.298 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.299 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.299 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.299 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.299 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.302 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.302 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.303 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.303 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.304 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.305 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.305 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.305 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.316 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.316 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.317 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.318 [XNIO-1 task-1] ORtLtxjKT8GcVgh5DETdsg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.336 [XNIO-1 task-2] L2X-EyIVQgals_cuwP0pGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JU4tN8YGQQqEn0DvpyQnNQ +07:00:47.342 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.343 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +07:00:47.343 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.344 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.344 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.344 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.344 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.344 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +07:00:47.363 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code + +07:00:47.363 [XNIO-1 task-1] 0dFSZtxQRL-Cooq7JM58Gw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.385 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.385 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.385 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.386 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG com.networknt.schema.TypeValidator debug - validate( "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", "470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2", client_id) +07:00:47.386 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.386 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.386 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.386 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.387 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.400 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.400 [XNIO-1 task-2] rn2ZV6v3SKeW9_TLJk1oFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.402 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.402 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.402 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.403 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ruFRb2EYFkbK58XNr3KvLKuL3m6PbysaO7gI-XqyDOY", "ruFRb2EYFkbK58XNr3KvLKuL3m6PbysaO7gI-XqyDOY", code_challenge) +07:00:47.403 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.403 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.403 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.403 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.404 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.404 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.416 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0bc50c25 +07:00:47.417 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.417 [XNIO-1 task-1] _jxAB0ujRxSZMdlEHBAbHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.425 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0bc50c25 +07:00:47.438 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:94e2bb3c +07:00:47.449 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.450 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.450 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.450 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG com.networknt.schema.TypeValidator debug - validate( "3f063e54-9279-47fc-96e9-9437f26cec5c", "3f063e54-9279-47fc-96e9-9437f26cec5c", client_id) +07:00:47.450 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.451 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.451 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.451 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.453 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.461 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.468 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.468 [XNIO-1 task-1] 5IaBeovSQ2KKB8KmW9vbxw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +07:00:47.477 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.477 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG com.networknt.schema.TypeValidator debug - validate( "4f82904e-55cf-4d90-8709-b14a60895fa5", "4f82904e-55cf-4d90-8709-b14a60895fa5", client_id) +07:00:47.477 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.478 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.479 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.479 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.479 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +07:00:47.480 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.481 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.481 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.487 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.487 [XNIO-1 task-1] _8ZQ6ujLTnOREvMDo0GoSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.509 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.509 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +07:00:47.509 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG com.networknt.schema.TypeValidator debug - validate( "QCAE_5BLTbylcM9nLYrCSSAetb1Z_omngLi5V3aMl34", "QCAE_5BLTbylcM9nLYrCSSAetb1Z_omngLi5V3aMl34", code_challenge) +07:00:47.509 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG com.networknt.schema.TypeValidator debug - validate( "e150299f-eed8-4cd9-8752-1a8a9b818ca9", "e150299f-eed8-4cd9-8752-1a8a9b818ca9", client_id) + +07:00:47.510 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.510 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.510 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.510 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.510 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.515 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.522 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.522 [XNIO-1 task-1] q8xylh8WSFWqlhvAzV5ZEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.537 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9c3506d6-5228-4036-ba09-d44141934b29 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +07:00:47.582 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1d434d85-d54e-41ca-9e43-e4dd171a775f + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.586 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +07:00:47.586 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.586 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:47.587 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.588 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.588 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.588 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.588 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.588 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0bc50c25 +07:00:47.595 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.595 [XNIO-1 task-1] FDoDdnKIRE-JhdowVNOHZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.604 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1d434d85-d54e-41ca-9e43-e4dd171a775f +07:00:47.623 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.625 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1be7e4fc-4c75-4465-9ec5-31f4b3a1139e +07:00:47.629 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:93915ce3 +07:00:47.631 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.631 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.631 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.631 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "rutoinrsCFnnIgxkKjyh7is_AtMcLjIQJm8YPE6SGxc", "rutoinrsCFnnIgxkKjyh7is_AtMcLjIQJm8YPE6SGxc", code_challenge) +07:00:47.631 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.632 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.632 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.632 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.632 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.632 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.641 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.641 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.641 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.641 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.641 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.642 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.642 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.642 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.642 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.642 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.643 [XNIO-1 task-1] 2NtRV9f2S-Sm5a4URwN4wQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yhhpL0MAQxqGvYHE5XdxbQ +07:00:47.648 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.649 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.649 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.649 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG com.networknt.schema.TypeValidator debug - validate( "e150299f-eed8-4cd9-8752-1a8a9b818ca9", "e150299f-eed8-4cd9-8752-1a8a9b818ca9", client_id) +07:00:47.649 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.649 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.650 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.650 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.650 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.650 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.650 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.653 [XNIO-1 task-2] vQm4AZiyTyaOMMta5X1-nw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jqBhiZ8GS_CxD1DhEP75OQ +07:00:47.657 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.657 [XNIO-1 task-1] ZmnXSg_8QiqQeWnuM93ezA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.661 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.661 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.662 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +07:00:47.662 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9ee56e0-37df-4323-b068-e034f02a40ef", "e9ee56e0-37df-4323-b068-e034f02a40ef", client_id) +07:00:47.662 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.662 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.662 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.662 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +07:00:47.664 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0bc50c25 +07:00:47.664 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.664 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.664 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.665 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG com.networknt.schema.TypeValidator debug - validate( "x_l-8VlpM22Os2hwrHBQI3WFcbJWfvOu9KtghVavJyw", "x_l-8VlpM22Os2hwrHBQI3WFcbJWfvOu9KtghVavJyw", code_challenge) +07:00:47.665 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG com.networknt.schema.TypeValidator debug - validate( "e150299f-eed8-4cd9-8752-1a8a9b818ca9", "e150299f-eed8-4cd9-8752-1a8a9b818ca9", client_id) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +07:00:47.665 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.665 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.665 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.665 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +07:00:47.673 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.673 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.673 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.673 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.673 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.673 [XNIO-1 task-2] -YM6hQOUSYCgMJmsqjXhQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + +07:00:47.677 [XNIO-1 task-1] 0SLu3vY5SQWxXtGWrfdKUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xO5UlLjWSlq1-i1mLZh8kw +07:00:47.680 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.684 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.684 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.685 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.685 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93915ce3 +07:00:47.685 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.685 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.686 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.686 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.686 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.693 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.693 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.696 [XNIO-1 task-1] z37E0VpDQAKc0Zeqj4pcSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8XaHF1UPSVK8iEJOMHmcgg +07:00:47.700 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.700 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.704 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.704 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.704 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.705 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.705 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.705 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.709 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.710 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.710 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.710 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "JBKjZQS63C2Lwpt0R9QPpLbDuDdTv-sBorFG_wWvrco", "JBKjZQS63C2Lwpt0R9QPpLbDuDdTv-sBorFG_wWvrco", code_challenge) +07:00:47.710 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.710 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.711 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.711 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.711 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.711 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.712 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.712 [XNIO-1 task-1] s7_DQrRHQl-Haj8a1k7dwQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.720 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.720 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.720 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.720 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.721 [XNIO-1 task-2] Qy-x8iwFQuWIUD1We1W_lg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.721 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "42a7833a-e83a-4fd6-b12f-48f18409c463", "42a7833a-e83a-4fd6-b12f-48f18409c463", client_id) +07:00:47.721 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.721 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.721 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.721 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.724 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.731 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.732 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.736 [XNIO-1 task-1] SXLHTHtNShyCAYsiqKoeYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=a9OXmpUxTdCrZHpG9S0C8w +07:00:47.741 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.743 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.744 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.744 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.744 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.745 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.745 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.746 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.748 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.759 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.759 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.761 [XNIO-1 task-1] G1WyMhkQR76tKZO-U65g1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uk2um_x6SxyTM2vUHstpHA +07:00:47.798 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.799 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.799 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.799 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", client_id) +07:00:47.799 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.801 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.802 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.802 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.803 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.816 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4cd70054 +07:00:47.818 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.819 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.819 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.820 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:47.820 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.820 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.820 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.820 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.821 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.821 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.822 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.825 [XNIO-1 task-1] nvAiTsaTSQ6yQfiHgv9fZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=csZm6XibTHGCxQlh5NcOVw +07:00:47.827 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.828 [XNIO-1 task-2] -2UiASslRxS510GwWTSbag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.829 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.829 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.829 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.829 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", client_id) +07:00:47.829 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.830 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.830 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:47.830 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.830 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.830 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.835 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4cd70054 +07:00:47.841 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.841 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.841 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.841 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.841 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.844 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.844 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.844 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.844 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.844 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.846 [XNIO-1 task-1] L55S7_15RP2H0RFv7Up9sQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NCwLPt3HRC-IeFD5JAtakw +07:00:47.852 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.852 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.855 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.855 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.855 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.856 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", "c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829", client_id) +07:00:47.857 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.857 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.857 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.857 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.858 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.859 [XNIO-1 task-2] 182HdEVETZSAcFkOiJOK6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qtaAoy3gTiesOpznbJy4eg +07:00:47.863 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.863 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.864 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.864 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.864 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.866 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.866 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.866 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.871 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.872 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.876 [XNIO-1 task-1] LYkpK2i7QUSPwg7gbbaS5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rIeU1-RTQT67QAKRmSoiKw +07:00:47.878 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.878 [XNIO-1 task-2] yUwJIuLNSMiXOsOkQr4fVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.888 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.888 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.890 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.890 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG com.networknt.schema.TypeValidator debug - validate( "d345606f-20c4-4c5d-8684-fe1271615bbf", "d345606f-20c4-4c5d-8684-fe1271615bbf", client_id) +07:00:47.891 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.891 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.892 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.892 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.892 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.909 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:93915ce3 +07:00:47.912 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.912 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.916 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.916 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.916 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.916 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG com.networknt.schema.TypeValidator debug - validate( "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", client_id) +07:00:47.916 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.917 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.919 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.919 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.922 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.922 [XNIO-1 task-2] W_EmlfRaQqa6jgf_IdAXxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pc7xzOkSRFCVH5FYF27_Aw +07:00:47.936 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:47.936 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:47.938 [XNIO-1 task-1] rPDO715gS9SaN1d8ucMvgA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wkxc1k_7R_SrHn8B7IQrMw +07:00:47.944 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.945 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.945 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.945 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:47.946 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:47.947 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:47.947 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:47.947 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:47.947 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.948 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.948 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ba8b014b +07:00:47.949 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:47.950 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ba8b014b +07:00:47.950 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:47.950 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.950 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.951 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.951 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.952 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.955 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.955 [XNIO-1 task-1] f6hT2b9zSrSTatuq5VOa1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.967 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.968 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.968 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.968 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f063e54-9279-47fc-96e9-9437f26cec5c", "3f063e54-9279-47fc-96e9-9437f26cec5c", client_id) +07:00:47.968 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.968 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.969 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.969 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.969 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:47.971 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.971 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.974 [XNIO-1 task-2] ibF8Gbw4QwOma7o67QdiEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7XjILXVoTC6jLcz1eavJDQ +07:00:47.979 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:47.979 [XNIO-1 task-1] TbPPXt-dSYCV4c9K3IKzvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:47.988 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.989 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:47.989 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:47.989 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", client_id) +07:00:47.990 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:47.991 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:47.991 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:47.991 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:47.991 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.007 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.008 [XNIO-1 task-1] t2_34b0LQG6FEmFXAG-bWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.027 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.027 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.027 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.030 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG com.networknt.schema.TypeValidator debug - validate( "GmMgHaYkuFWxZ6td_Dzo6p0xQE_CXTmoUEBjZlebPTc", "GmMgHaYkuFWxZ6td_Dzo6p0xQE_CXTmoUEBjZlebPTc", code_challenge) +07:00:48.030 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:48.030 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.031 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.031 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.032 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.032 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.038 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.039 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.044 [XNIO-1 task-1] Brx-z0r3QTqva45_7Qy2nw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=h3-8dfHFRyiSzYDcavjFHg +07:00:48.079 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.079 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.079 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.080 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG com.networknt.schema.TypeValidator debug - validate( "939UgZWqqMkOnBerxLexFoVnmyCC1aWTSkqdQDUzNK4", "939UgZWqqMkOnBerxLexFoVnmyCC1aWTSkqdQDUzNK4", code_challenge) +07:00:48.080 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:48.080 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.080 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.080 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.081 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.081 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.086 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.086 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.087 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.087 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.087 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.090 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.090 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.090 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.090 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.090 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.093 [XNIO-1 task-1] OO5kW6KDSSuZ9gQYfK_crg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KXh-lZGKTseUv-Ab_ToIXQ +07:00:48.097 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.097 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.099 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2a5caa75 +07:00:48.099 [XNIO-1 task-2] X_npC3FmSZm8K_ha34aunA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hAUiVH4WQh-gFJQmCyJfhg +07:00:48.105 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.105 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.105 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.105 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "d79571cd-c2be-4cd5-9d64-4cf9767aef4b", "d79571cd-c2be-4cd5-9d64-4cf9767aef4b", client_id) +07:00:48.105 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.106 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.106 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.106 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.106 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.117 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.117 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.120 [XNIO-1 task-2] AL9WNKVMQr-l6IFl0Bo5Dw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hoTKeCjuRESLaEUd1BDDRg +07:00:48.137 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.137 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.137 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.137 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.137 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.138 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.138 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.138 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.149 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.149 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.150 [XNIO-1 task-2] KPo9ZLScROqCQdpJI888JA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=89BNNaE7RaeN7QfDlxNIag +07:00:48.166 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.166 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.166 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.167 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.167 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.168 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.168 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.168 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.178 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.178 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.178 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.180 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "6ZF3odCQEbNF4QlGI_-oMubVUnd80RKeTOXrglZoID4", "6ZF3odCQEbNF4QlGI_-oMubVUnd80RKeTOXrglZoID4", code_challenge) +07:00:48.180 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:48.180 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.180 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.180 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.180 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.181 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.185 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.185 [XNIO-1 task-2] HYP8SOMzRc6b1jHIoTg4ZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.192 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.192 [XNIO-1 task-1] _QD-Wku6R42ceiruFsP4Kg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.193 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.193 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.193 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.194 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", "0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074", client_id) +07:00:48.194 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.194 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.195 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.195 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.195 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.204 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.205 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.213 [XNIO-1 task-2] wdIEkW6oTJyv3WCd2umqJg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=d46pZxt1Q_G5-3SH55IFkg +07:00:48.220 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.220 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.221 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.221 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.221 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.221 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.221 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.221 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.233 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.233 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.235 [XNIO-1 task-2] 1FwNvPdnTeSBWLQ88pqipg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_WuXZqeGTLyKXogw-T855g +07:00:48.238 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.239 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.239 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.239 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG com.networknt.schema.TypeValidator debug - validate( "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", client_id) +07:00:48.240 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.241 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.242 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.242 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.243 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.261 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.262 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.266 [XNIO-1 task-1] YrIYan93Sr2HqTJQ5anfxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Abenu-vhTAefxDIsu24-Uw +07:00:48.272 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.273 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.274 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.274 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG com.networknt.schema.TypeValidator debug - validate( "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", client_id) +07:00:48.274 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.274 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.274 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.275 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.275 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.286 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.286 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.294 [XNIO-1 task-1] dcoZW-hQT7KRCCRONitW8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XN5_kqDxS5SnRknyOlTysw +07:00:48.298 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.298 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.298 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.299 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG com.networknt.schema.TypeValidator debug - validate( "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", "57fcc2d8-e21b-49d4-a719-0d86c76ab05d", client_id) +07:00:48.299 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.299 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.301 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.301 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.301 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.313 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.313 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.318 [XNIO-1 task-1] FB8Ogl0WRP6N7nzX2tgLAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1C3XndvHQcC_Jz_pKz8ISg +07:00:48.323 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0bc50c25 +07:00:48.369 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:32a22622-ed32-4863-b6aa-b702bd830735 +07:00:48.381 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.382 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.382 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.382 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG com.networknt.schema.TypeValidator debug - validate( "4867bd15-38e1-4015-b857-1ecba5753038", "4867bd15-38e1-4015-b857-1ecba5753038", client_id) +07:00:48.382 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.382 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.383 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.383 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.383 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.398 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:32a22622-ed32-4863-b6aa-b702bd830735 +07:00:48.403 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.403 [XNIO-1 task-1] 59-TKRPBQGu9E_XTHP_wDg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.447 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:10a9a90b +07:00:48.450 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:10a9a90b +07:00:48.477 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.477 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.477 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.477 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.477 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.478 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.478 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:48.484 [XNIO-1 task-1] rNySnI8uQ4uYPyiLbLc11A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +07:00:48.501 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bc6e754d-f0b7-415a-81e6-ef3cd948c9ef +07:00:48.520 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.520 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.520 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.520 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.521 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "438d3759-5b50-4abe-ba8c-c6029b3055e2", "438d3759-5b50-4abe-ba8c-c6029b3055e2", client_id) +07:00:48.521 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +07:00:48.521 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.521 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.521 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.521 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth + +07:00:48.526 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.526 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.527 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.527 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG com.networknt.schema.TypeValidator debug - validate( "0eddd44b-0026-4b91-b493-4567e377861b", "0eddd44b-0026-4b91-b493-4567e377861b", client_id) +07:00:48.527 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.527 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.527 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.527 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.527 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.527 [XNIO-1 task-1] P72WXUGjTc6MyQ7Jm3rSPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.529 [XNIO-1 task-2] 9GiWBYDdSyaUa9kqEl4CSA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.535 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.535 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.535 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.535 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG com.networknt.schema.TypeValidator debug - validate( "TiIfuy8qmL6qR2SSDQtEaU4ppL0mdSuN-XZa49dsLKA", "TiIfuy8qmL6qR2SSDQtEaU4ppL0mdSuN-XZa49dsLKA", code_challenge) +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.536 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.542 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2a5caa75 +07:00:48.543 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.544 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.545 [XNIO-1 task-1] VXBYcIoVSHGGTyqqfXX0lw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WuHW5ipCQjGxNe_oXTz9xA +07:00:48.592 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.592 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.593 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.593 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG com.networknt.schema.TypeValidator debug - validate( "f5141477-8d3b-4c80-b936-33c38f386fd1", "f5141477-8d3b-4c80-b936-33c38f386fd1", client_id) +07:00:48.593 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.593 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.594 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.594 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.596 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.596 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.596 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.596 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0eddd44b-0026-4b91-b493-4567e377861b", "0eddd44b-0026-4b91-b493-4567e377861b", client_id) +07:00:48.597 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.597 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.597 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.597 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.597 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.597 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.605 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2a5caa75 +07:00:48.608 [XNIO-1 task-2] IZc8d5sASRuT2wlSuzxeCQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.608 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.608 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.608 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.610 [XNIO-1 task-1] 41csMtKnTwS78twxTNG7gg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CGHbZf9DTJqSa-DVjUcESA +07:00:48.619 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.619 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.620 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.620 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "c698ac61-a5f9-49f3-83db-9c1c6b591882", "c698ac61-a5f9-49f3-83db-9c1c6b591882", client_id) +07:00:48.620 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.620 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.620 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.621 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.621 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.627 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.627 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.632 [XNIO-1 task-1] 1uLPOgiIQ6C9g5c_cGi4gg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sQuUyXsjRb6CLqZUEJoRQQ +07:00:48.652 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:48.658 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.658 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.658 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.659 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.659 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.659 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.660 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.661 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.661 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.661 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.662 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "BuC3fxmXmMB2iqiPl4usjsrm1KcsB8QIAJO5e7Id8Z8", "BuC3fxmXmMB2iqiPl4usjsrm1KcsB8QIAJO5e7Id8Z8", code_challenge) +07:00:48.662 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:48.662 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.662 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.662 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.662 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.662 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.663 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.670 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.670 [XNIO-1 task-2] Kn2mn_X_SW6cTWa9Njj7rQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.676 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.676 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.679 [XNIO-1 task-1] qVdjUSdbQTOSvkzmwaHDqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tSybrobNQzmvsxzni--AIA +07:00:48.680 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.680 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.680 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.681 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6d0724c8-062b-4b84-8b59-5772cf7952a9", "6d0724c8-062b-4b84-8b59-5772cf7952a9", client_id) +07:00:48.682 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.682 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.682 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.683 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.683 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.690 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.690 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.692 [XNIO-1 task-2] gmSrsZzGQnSV-RKppsgivQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jfIOedteRh2sYyr9EtWzog +07:00:48.696 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.696 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.696 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.696 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG com.networknt.schema.TypeValidator debug - validate( "6d0724c8-062b-4b84-8b59-5772cf7952a9", "6d0724c8-062b-4b84-8b59-5772cf7952a9", client_id) +07:00:48.696 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.696 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.697 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.697 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.698 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.707 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0bc50c25 +07:00:48.712 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.712 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.719 [XNIO-1 task-2] XSDBrFWTQ4GSRo4umU_TGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zeW6i9RNRTujYOWNNoTEeA +07:00:48.726 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.726 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.726 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.726 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG com.networknt.schema.TypeValidator debug - validate( "6d0724c8-062b-4b84-8b59-5772cf7952a9", "6d0724c8-062b-4b84-8b59-5772cf7952a9", client_id) +07:00:48.727 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.727 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.727 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.727 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.727 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.731 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.731 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.732 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.732 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG com.networknt.schema.TypeValidator debug - validate( "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", "36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1", client_id) +07:00:48.732 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.732 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.733 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.733 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.734 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.734 [XNIO-1 task-2] YeuS8BqlSmKjEZ8-c_qtug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.734 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.741 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.741 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.749 [XNIO-1 task-1] 8sTeqpqzTqO4B5luyOH9wg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_FdS6FfdTsyi4KUqM2lQIg +07:00:48.754 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0bc50c25 +07:00:48.818 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.818 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.818 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.818 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.818 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.818 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.818 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", client_id) +07:00:48.818 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +07:00:48.819 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.819 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.819 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.819 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.819 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.819 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.819 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.819 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.819 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.819 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.825 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.825 [XNIO-1 task-1] _8SSH7zbQGmlginlBXwNJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.831 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.831 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.836 [XNIO-1 task-2] qpQnAdC_RMe36yKVkCt1uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CsrdumKcTPO5UlnpADoSUA +07:00:48.838 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:10a9a90b +07:00:48.839 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.839 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.839 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.840 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG com.networknt.schema.TypeValidator debug - validate( "f5141477-8d3b-4c80-b936-33c38f386fd1", "f5141477-8d3b-4c80-b936-33c38f386fd1", client_id) +07:00:48.840 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.841 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.841 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.841 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.841 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.842 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.842 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.842 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.843 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG com.networknt.schema.TypeValidator debug - validate( "9c3506d6-5228-4036-ba09-d44141934b29", "9c3506d6-5228-4036-ba09-d44141934b29", client_id) +07:00:48.843 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.843 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.843 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.843 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.843 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.848 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.848 [XNIO-1 task-2] PN3husPWQMK9E2qsjW1w7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.851 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.851 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.853 [XNIO-1 task-1] 13dGcUpqTQu7VMGGYD73uw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DSCOjKEfSy2NNCHCkKgbcA +07:00:48.861 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0bc50c25 +07:00:48.876 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2a5caa75 +07:00:48.891 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.891 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.891 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.892 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG com.networknt.schema.TypeValidator debug - validate( "869b1cfc-cd78-40db-80e0-40d9762b482c", "869b1cfc-cd78-40db-80e0-40d9762b482c", client_id) +07:00:48.892 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.892 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.892 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.892 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.892 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.901 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +07:00:48.901 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +07:00:48.904 [XNIO-1 task-1] _8UmLJe6Tw20vMDm5XFdWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vlb9GKieQJGSahMqfBlEwg +07:00:48.907 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0bc50c25 +07:00:48.909 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2a5caa75 +07:00:48.911 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.912 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.912 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +07:00:48.913 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG com.networknt.schema.TypeValidator debug - validate( "869b1cfc-cd78-40db-80e0-40d9762b482c", "869b1cfc-cd78-40db-80e0-40d9762b482c", client_id) +07:00:48.913 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +07:00:48.913 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +07:00:48.913 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +07:00:48.913 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@460c4c39 for /oauth2/code +07:00:48.913 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +07:00:48.919 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f061451b-8a8f-4ebc-ba15-15f0305fc3dd +07:00:48.921 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.921 [XNIO-1 task-1] sRoBOTS0TgG-aGS3eC2leg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.922 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f061451b-8a8f-4ebc-ba15-15f0305fc3dd +07:00:48.925 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0bc50c25 +07:00:48.925 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.926 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.926 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.926 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG com.networknt.schema.TypeValidator debug - validate( "c27d80ab-6a2d-4ec6-96cd-28a902e559ef", "c27d80ab-6a2d-4ec6-96cd-28a902e559ef", client_id) +07:00:48.926 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.928 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.928 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.928 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.929 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2a5caa75 +07:00:48.929 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.938 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.938 [XNIO-1 task-2] hGstg1LgTX6LAA74g5QdhA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.945 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c7091e2f-b1fa-4cba-86f2-88e86886c32b +07:00:48.946 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.946 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +07:00:48.947 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.947 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG com.networknt.schema.TypeValidator debug - validate( "081cc4b3-b453-4c52-8244-00dab6b931c6", "081cc4b3-b453-4c52-8244-00dab6b931c6", client_id) +07:00:48.947 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +07:00:48.947 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +07:00:48.948 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +07:00:48.948 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +07:00:48.952 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +07:00:48.962 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5caee0c for /oauth2/code +07:00:48.962 [XNIO-1 task-2] K7NM04HMSNSqlkhNqWzRng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +07:00:48.967 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2a5caa75 +07:00:48.983 [XNIO-1 task-2] wRjzheRUSbCUSvtZzuIMgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +07:00:48.983 [XNIO-1 task-2] wRjzheRUSbCUSvtZzuIMgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code diff --git a/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..df830bd --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-key-1.log @@ -0,0 +1,207 @@ + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:45.248 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:97c935bc-4325-4316-8f00-eb36eee0df22 +07:00:45.303 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0c2429e5-2cc3-4b8d-81f5-766c3b7c81f6 +07:00:45.352 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f897c60 +07:00:45.355 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f897c60 +07:00:45.362 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d312c992-d2a1-4166-b52c-8e6bf086a9ac +07:00:45.406 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4f897c60 +07:00:45.418 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:57fcc2d8-e21b-49d4-a719-0d86c76ab05d +Jun 29, 2024 7:00:45 AM com.hazelcast.map.impl.operation.DeleteOperation +07:00:45.422 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:45.765 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e7ca1906-8655-4c73-99de-3dec97f1ce21 +07:00:45.953 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4524324b-3b61-43ac-89f8-c0a941476a41 +07:00:45.984 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ac39abed-6d09-4db9-9adc-2b5868dae136 +07:00:45.987 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ac39abed-6d09-4db9-9adc-2b5868dae136 +07:00:46.043 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8d334abc-3cbe-4fec-99c5-3975946e9ad5 +07:00:46.064 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:529a26ab-1897-48cc-80d1-1a72865d78e8 +07:00:46.068 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:529a26ab-1897-48cc-80d1-1a72865d78e8 +07:00:46.090 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ac39abed-6d09-4db9-9adc-2b5868dae136 +07:00:46.139 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:71c90023 +07:00:46.142 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:71c90023 +07:00:46.180 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.297 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:529a26ab-1897-48cc-80d1-1a72865d78e8 +07:00:46.390 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:71c90023 +07:00:46.399 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:366df279 +07:00:46.417 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.517 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:366df279 +07:00:46.693 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:873412ad-0202-4b19-9a80-cfab20275ade +07:00:46.719 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:71c90023 +07:00:46.866 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:96082ece +07:00:46.885 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d59102b0-b489-4456-9b2e-175bfb1a18ac +07:00:46.889 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:08c208e2 +07:00:46.890 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:08c208e2 +07:00:46.892 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6f73d91 +07:00:46.915 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:873412ad-0202-4b19-9a80-cfab20275ade +07:00:47.006 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6f73d91 +07:00:47.047 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:96082ece +07:00:47.149 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:91798587 +07:00:47.151 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:91798587 +07:00:47.160 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:739d7adc-03e5-45fc-aefb-f9ebb071782c +07:00:47.175 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:37e272e3 +07:00:47.176 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:37e272e3 +07:00:47.245 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:71c90023 +07:00:47.310 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0eddd44b-0026-4b91-b493-4567e377861b +07:00:47.331 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0c2429e5-2cc3-4b8d-81f5-766c3b7c81f6 +07:00:47.458 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:71c90023 +07:00:47.472 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:37e272e3 +07:00:47.526 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:91798587 +07:00:47.557 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.614 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b457277-dd03-419b-9cfe-c111f63d9b5d +07:00:47.615 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b457277-dd03-419b-9cfe-c111f63d9b5d +07:00:47.682 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.786 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:65e1f51f-2a92-4cce-9846-42f96ba2965f +07:00:47.895 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.901 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:47.978 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f131230e +07:00:47.984 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:37e272e3 +07:00:47.986 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:48.020 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:48.026 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:08c208e2 +07:00:48.081 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:aa1047c8 +07:00:48.083 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6f73d91 +07:00:48.095 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08c208e2 +07:00:48.115 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:91798587 +07:00:48.119 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:96082ece +07:00:48.161 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:96082ece +07:00:48.198 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:91798587 +07:00:48.340 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7b1c7227 +07:00:48.343 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7b1c7227 +07:00:48.367 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:977b937e +07:00:48.417 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f131230e +07:00:48.446 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0879f6a4 +07:00:48.448 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0879f6a4 +07:00:48.492 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f131230e +07:00:48.499 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:beb2faa7-2096-411e-8f29-aec58cef178f +07:00:48.526 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08c208e2 +07:00:48.560 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:08c208e2 +07:00:48.579 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:beb2faa7-2096-411e-8f29-aec58cef178f +07:00:48.621 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e6f73d91 +07:00:48.624 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:beb2faa7-2096-411e-8f29-aec58cef178f +07:00:48.635 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f131230e +07:00:48.648 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:248547d8-424f-4534-87fb-7d1262629d49 +07:00:48.657 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7b1c7227 +07:00:48.780 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:03f70b6c +07:00:48.785 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:aa1047c8 +07:00:48.872 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:48.880 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:248547d8-424f-4534-87fb-7d1262629d49 +07:00:48.972 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:32e531eb-26a3-4a62-84a3-e19b1f6a2f7c +07:00:48.973 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:32e531eb-26a3-4a62-84a3-e19b1f6a2f7c +07:00:49.032 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.133 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7b1c7227 +07:00:49.171 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a43fea8-8581-433a-90da-57607aa8e5a3 +07:00:49.173 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a43fea8-8581-433a-90da-57607aa8e5a3 +07:00:49.206 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:310e28de +07:00:49.208 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:310e28de +07:00:49.232 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:03f70b6c +07:00:49.300 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:03f70b6c +07:00:49.305 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.313 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:310e28de +07:00:49.345 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:310e28de +07:00:49.407 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f131230e +07:00:49.420 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6fbc72c8-0e8b-4508-8848-0cb8091136b6 +07:00:49.455 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.527 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:395e145b-ca57-44a7-8b03-a7da50ffb4b4 +07:00:49.529 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:395e145b-ca57-44a7-8b03-a7da50ffb4b4 +07:00:49.622 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0eddd44b-0026-4b91-b493-4567e377861b +Jun 29, 2024 7:00:49 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:49.640 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0e8bfc8c + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +07:00:49.642 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0e8bfc8c + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:49.659 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:03f70b6c +07:00:49.726 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0e8bfc8c +07:00:49.788 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f21ccb1c +07:00:49.789 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f21ccb1c +07:00:49.850 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3b500c5a-4937-4997-aab7-2e193df85cec +07:00:49.871 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:532f9ece-522d-4ede-bef5-3890b7c0538f +07:00:49.903 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2c1f62f5-c7d0-40bd-a29a-c2bf4039d058 +07:00:49.978 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b763c696 +07:00:49.981 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b763c696 +07:00:50.332 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:03f70b6c +07:00:50.371 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c45414f-0bb5-4e97-be8a-d75e4eae5921 +07:00:50.380 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:694282b7-4c92-42b8-ad7a-418f29d2dd13 +07:00:50.390 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4c45414f-0bb5-4e97-be8a-d75e4eae5921 +07:00:50.410 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d1885efe-1329-49b7-8446-e99569f3217e +07:00:50.481 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:248547d8-424f-4534-87fb-7d1262629d49 diff --git a/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..be0ebb7 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,3875 @@ +07:00:43.724 [XNIO-1 task-1] WlNhEEpqSs20ZmBhrenNaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:43.724 [XNIO-1 task-1] WlNhEEpqSs20ZmBhrenNaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.726 [XNIO-1 task-1] WlNhEEpqSs20ZmBhrenNaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.742 [XNIO-1 task-1] JHbi6-Q5Tcu5AW0v0zIbcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.742 [XNIO-1 task-1] JHbi6-Q5Tcu5AW0v0zIbcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.742 [XNIO-1 task-1] JHbi6-Q5Tcu5AW0v0zIbcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:43.743 [XNIO-1 task-1] JHbi6-Q5Tcu5AW0v0zIbcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.753 [XNIO-1 task-1] JHbi6-Q5Tcu5AW0v0zIbcw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.760 [XNIO-1 task-1] UAkHFyrzTqughlfnrgpx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.760 [XNIO-1 task-1] UAkHFyrzTqughlfnrgpx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.765 [XNIO-1 task-1] UAkHFyrzTqughlfnrgpx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.769 [XNIO-1 task-1] UAkHFyrzTqughlfnrgpx-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.785 [XNIO-1 task-1] PIH_1IgTQVq39QHlDGCoiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:43.786 [XNIO-1 task-1] PIH_1IgTQVq39QHlDGCoiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:43.787 [XNIO-1 task-1] PIH_1IgTQVq39QHlDGCoiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:43.787 [XNIO-1 task-1] PIH_1IgTQVq39QHlDGCoiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.788 [XNIO-1 task-1] PIH_1IgTQVq39QHlDGCoiw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:43.804 [XNIO-1 task-1] AMX9pE7xSuenHAgcpk5pQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.805 [XNIO-1 task-1] AMX9pE7xSuenHAgcpk5pQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.805 [XNIO-1 task-1] AMX9pE7xSuenHAgcpk5pQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:43.809 [XNIO-1 task-1] AMX9pE7xSuenHAgcpk5pQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.810 [XNIO-1 task-1] AMX9pE7xSuenHAgcpk5pQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.817 [XNIO-1 task-1] gsSNytWrSO6U3RxRRLWvaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.817 [XNIO-1 task-1] gsSNytWrSO6U3RxRRLWvaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.817 [XNIO-1 task-1] gsSNytWrSO6U3RxRRLWvaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:43.817 [XNIO-1 task-1] gsSNytWrSO6U3RxRRLWvaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.821 [XNIO-1 task-1] gsSNytWrSO6U3RxRRLWvaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.828 [XNIO-1 task-1] rEwVnQOWSWKYrkuzL4ONMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.828 [XNIO-1 task-1] rEwVnQOWSWKYrkuzL4ONMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.828 [XNIO-1 task-1] rEwVnQOWSWKYrkuzL4ONMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:43.828 [XNIO-1 task-1] rEwVnQOWSWKYrkuzL4ONMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.830 [XNIO-1 task-1] rEwVnQOWSWKYrkuzL4ONMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.844 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6aad93e4 +07:00:43.848 [XNIO-1 task-1] byqFYojvTWmPsvIZIrKXWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.849 [XNIO-1 task-1] byqFYojvTWmPsvIZIrKXWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.849 [XNIO-1 task-1] byqFYojvTWmPsvIZIrKXWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:43.849 [XNIO-1 task-1] byqFYojvTWmPsvIZIrKXWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.850 [XNIO-1 task-1] byqFYojvTWmPsvIZIrKXWg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.860 [XNIO-1 task-1] TCxWQ5FGRKiRQ96uzvR4fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4, base path is set to: null +07:00:43.860 [XNIO-1 task-1] TCxWQ5FGRKiRQ96uzvR4fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:43.861 [XNIO-1 task-1] TCxWQ5FGRKiRQ96uzvR4fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:43.861 [XNIO-1 task-1] TCxWQ5FGRKiRQ96uzvR4fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4, base path is set to: null +07:00:43.861 [XNIO-1 task-1] TCxWQ5FGRKiRQ96uzvR4fg DEBUG com.networknt.schema.TypeValidator debug - validate( "4d169dfd-501c-4ba3-baa8-4e31a562b0e4", "4d169dfd-501c-4ba3-baa8-4e31a562b0e4", refreshToken) +07:00:43.862 [XNIO-1 task-1] TCxWQ5FGRKiRQ96uzvR4fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d169dfd-501c-4ba3-baa8-4e31a562b0e4 is not found.","severity":"ERROR"} +07:00:43.869 [XNIO-1 task-1] 9ym20IYDReW3vgPN_XjKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.870 [XNIO-1 task-1] 9ym20IYDReW3vgPN_XjKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:43.870 [XNIO-1 task-1] 9ym20IYDReW3vgPN_XjKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:43.870 [XNIO-1 task-1] 9ym20IYDReW3vgPN_XjKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.871 [XNIO-1 task-1] 9ym20IYDReW3vgPN_XjKng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4d169dfd-501c-4ba3-baa8-4e31a562b0e4 +07:00:43.876 [XNIO-1 task-1] ryzg1vTSR92kGULpY9fZkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4, base path is set to: null +07:00:43.876 [XNIO-1 task-1] ryzg1vTSR92kGULpY9fZkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:43.876 [XNIO-1 task-1] ryzg1vTSR92kGULpY9fZkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:43.876 [XNIO-1 task-1] ryzg1vTSR92kGULpY9fZkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d169dfd-501c-4ba3-baa8-4e31a562b0e4, base path is set to: null +07:00:43.877 [XNIO-1 task-1] ryzg1vTSR92kGULpY9fZkw DEBUG com.networknt.schema.TypeValidator debug - validate( "4d169dfd-501c-4ba3-baa8-4e31a562b0e4", "4d169dfd-501c-4ba3-baa8-4e31a562b0e4", refreshToken) +07:00:43.878 [XNIO-1 task-1] ryzg1vTSR92kGULpY9fZkw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d169dfd-501c-4ba3-baa8-4e31a562b0e4 is not found.","severity":"ERROR"} +07:00:43.929 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9ad75b4a-5f87-45be-a771-1bd505f4f61d +07:00:43.969 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ef6f0ae9-b19f-4f1f-b19d-8f66329ba633 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +Jun 29, 2024 7:00:43 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:44.039 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:022ec7db-82b9-490e-8a59-b4b874a42066 +07:00:44.117 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9de0d68f-a350-412e-8226-0fccf14f5c4b +07:00:44.119 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9de0d68f-a350-412e-8226-0fccf14f5c4b +07:00:44.155 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e301a7cc-c300-4b5a-8034-45de4b4890d7 +07:00:44.156 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e301a7cc-c300-4b5a-8034-45de4b4890d7 +07:00:44.161 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9713d99e-540c-40cc-84b0-76d09ef95a04 +07:00:44.253 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9713d99e-540c-40cc-84b0-76d09ef95a04 +07:00:44.474 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9e4c60ed-f209-44d1-bcc6-341a700d28f3 +07:00:44.684 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a36b58e4-f78b-48bd-adb6-57bbc86164c9 +07:00:44.708 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0ff7da14 +07:00:44.759 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9ad75b4a-5f87-45be-a771-1bd505f4f61d +07:00:44.778 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2fe95e4c-1bbd-43b6-9576-f6136c91be29 +07:00:44.852 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ff7da14 +07:00:44.865 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:00840b79-b377-49d2-83c6-f6bc881f2fa9 +07:00:44.888 [XNIO-1 task-1] -wIl-5cZReWhHIlOXy72NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928, base path is set to: null +07:00:44.889 [XNIO-1 task-1] -wIl-5cZReWhHIlOXy72NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:44.889 [XNIO-1 task-1] -wIl-5cZReWhHIlOXy72NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:44.889 [XNIO-1 task-1] -wIl-5cZReWhHIlOXy72NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928, base path is set to: null +07:00:44.889 [XNIO-1 task-1] -wIl-5cZReWhHIlOXy72NA DEBUG com.networknt.schema.TypeValidator debug - validate( "e6ceae2e-f9ef-464d-b366-2c32bd4ab928", "e6ceae2e-f9ef-464d-b366-2c32bd4ab928", refreshToken) +07:00:44.891 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5b8a104a +07:00:44.897 [XNIO-1 task-1] PgFy6yQbSAK1SAQCbS7RZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928, base path is set to: null +07:00:44.897 [XNIO-1 task-1] PgFy6yQbSAK1SAQCbS7RZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:44.897 [XNIO-1 task-1] PgFy6yQbSAK1SAQCbS7RZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:44.897 [XNIO-1 task-1] PgFy6yQbSAK1SAQCbS7RZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928, base path is set to: null +07:00:44.898 [XNIO-1 task-1] PgFy6yQbSAK1SAQCbS7RZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e6ceae2e-f9ef-464d-b366-2c32bd4ab928", "e6ceae2e-f9ef-464d-b366-2c32bd4ab928", refreshToken) +07:00:44.901 [XNIO-1 task-1] GlFZytCeQJ6RNU6brL4x7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:44.902 [XNIO-1 task-1] GlFZytCeQJ6RNU6brL4x7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:44.902 [XNIO-1 task-1] GlFZytCeQJ6RNU6brL4x7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:44.902 [XNIO-1 task-1] GlFZytCeQJ6RNU6brL4x7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.903 [XNIO-1 task-1] GlFZytCeQJ6RNU6brL4x7g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:44.910 [XNIO-1 task-1] TPfX3BDYTeuQzn1E0jbbMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:44.910 [XNIO-1 task-1] TPfX3BDYTeuQzn1E0jbbMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:44.911 [XNIO-1 task-1] TPfX3BDYTeuQzn1E0jbbMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:44.912 [XNIO-1 task-1] TPfX3BDYTeuQzn1E0jbbMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:44.913 [XNIO-1 task-1] TPfX3BDYTeuQzn1E0jbbMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:44.915 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ff7da14 +07:00:44.937 [XNIO-1 task-1] U-OG8k18Q7SPc46b85LIMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:44.938 [XNIO-1 task-1] U-OG8k18Q7SPc46b85LIMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:44.938 [XNIO-1 task-1] U-OG8k18Q7SPc46b85LIMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:44.939 [XNIO-1 task-1] U-OG8k18Q7SPc46b85LIMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.940 [XNIO-1 task-1] U-OG8k18Q7SPc46b85LIMg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:44.948 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5b8a104a +07:00:44.971 [XNIO-1 task-1] iA-WXmh3SruvRjM45w7xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:44.971 [XNIO-1 task-1] iA-WXmh3SruvRjM45w7xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:44.971 [XNIO-1 task-1] iA-WXmh3SruvRjM45w7xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:44.972 [XNIO-1 task-1] iA-WXmh3SruvRjM45w7xug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:44.973 [XNIO-1 task-1] iA-WXmh3SruvRjM45w7xug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:44.987 [XNIO-1 task-1] qPCeSJqhSz69WpMGOrdStQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/511784a3-2c0c-4ce0-9462-70415138ea19, base path is set to: null +07:00:44.988 [XNIO-1 task-1] qPCeSJqhSz69WpMGOrdStQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:44.988 [XNIO-1 task-1] qPCeSJqhSz69WpMGOrdStQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:44.988 [XNIO-1 task-1] qPCeSJqhSz69WpMGOrdStQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/511784a3-2c0c-4ce0-9462-70415138ea19, base path is set to: null +07:00:44.990 [XNIO-1 task-1] qPCeSJqhSz69WpMGOrdStQ DEBUG com.networknt.schema.TypeValidator debug - validate( "511784a3-2c0c-4ce0-9462-70415138ea19", "511784a3-2c0c-4ce0-9462-70415138ea19", refreshToken) +07:00:44.993 [XNIO-1 task-1] qPCeSJqhSz69WpMGOrdStQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 511784a3-2c0c-4ce0-9462-70415138ea19 is not found.","severity":"ERROR"} +07:00:44.997 [XNIO-1 task-1] DhONotLgRfWHDqth-skUHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/511784a3-2c0c-4ce0-9462-70415138ea19 +07:00:44.997 [XNIO-1 task-1] DhONotLgRfWHDqth-skUHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:44.997 [XNIO-1 task-1] DhONotLgRfWHDqth-skUHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:44.997 [XNIO-1 task-1] DhONotLgRfWHDqth-skUHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/511784a3-2c0c-4ce0-9462-70415138ea19 +07:00:44.998 [XNIO-1 task-1] DhONotLgRfWHDqth-skUHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 511784a3-2c0c-4ce0-9462-70415138ea19 +07:00:45.004 [XNIO-1 task-1] H6f0t8kISVKWHHoONyeDmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.005 [XNIO-1 task-1] H6f0t8kISVKWHHoONyeDmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.005 [XNIO-1 task-1] H6f0t8kISVKWHHoONyeDmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.005 [XNIO-1 task-1] H6f0t8kISVKWHHoONyeDmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.006 [XNIO-1 task-1] H6f0t8kISVKWHHoONyeDmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:45.029 [XNIO-1 task-1] gjc9AUp3ReypqMEMuwPGQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.030 [XNIO-1 task-1] gjc9AUp3ReypqMEMuwPGQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.030 [XNIO-1 task-1] gjc9AUp3ReypqMEMuwPGQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.030 [XNIO-1 task-1] gjc9AUp3ReypqMEMuwPGQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.053 [XNIO-1 task-1] 2yST7jetRhCOF5Zkxl-4fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.053 [XNIO-1 task-1] 2yST7jetRhCOF5Zkxl-4fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.053 [XNIO-1 task-1] 2yST7jetRhCOF5Zkxl-4fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.054 [XNIO-1 task-1] 2yST7jetRhCOF5Zkxl-4fg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.054 [XNIO-1 task-1] 2yST7jetRhCOF5Zkxl-4fg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:45.085 [XNIO-1 task-1] LoT6jn3pT4Cfuugds0uFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:45.085 [XNIO-1 task-1] LoT6jn3pT4Cfuugds0uFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.085 [XNIO-1 task-1] LoT6jn3pT4Cfuugds0uFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:45.087 [XNIO-1 task-1] LoT6jn3pT4Cfuugds0uFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:45.087 [XNIO-1 task-1] LoT6jn3pT4Cfuugds0uFtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e6ceae2e-f9ef-464d-b366-2c32bd4ab928 +07:00:45.091 [XNIO-1 task-1] n0Z1YpL0QqyzlQdpwUbutg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928, base path is set to: null +07:00:45.091 [XNIO-1 task-1] n0Z1YpL0QqyzlQdpwUbutg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.091 [XNIO-1 task-1] n0Z1YpL0QqyzlQdpwUbutg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:45.091 [XNIO-1 task-1] n0Z1YpL0QqyzlQdpwUbutg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e6ceae2e-f9ef-464d-b366-2c32bd4ab928, base path is set to: null +07:00:45.092 [XNIO-1 task-1] n0Z1YpL0QqyzlQdpwUbutg DEBUG com.networknt.schema.TypeValidator debug - validate( "e6ceae2e-f9ef-464d-b366-2c32bd4ab928", "e6ceae2e-f9ef-464d-b366-2c32bd4ab928", refreshToken) +07:00:45.093 [XNIO-1 task-1] n0Z1YpL0QqyzlQdpwUbutg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e6ceae2e-f9ef-464d-b366-2c32bd4ab928 is not found.","severity":"ERROR"} +07:00:45.096 [XNIO-1 task-1] ia93XiAYR16HKZtyyYCDsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.097 [XNIO-1 task-1] ia93XiAYR16HKZtyyYCDsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.097 [XNIO-1 task-1] ia93XiAYR16HKZtyyYCDsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.098 [XNIO-1 task-1] ia93XiAYR16HKZtyyYCDsQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.113 [XNIO-1 task-1] o37Cj1HCRj6pCcYpEYl2dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/47fe2d99-c0d6-4aa5-9160-df5fe2bf1575, base path is set to: null +07:00:45.116 [XNIO-1 task-1] o37Cj1HCRj6pCcYpEYl2dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.116 [XNIO-1 task-1] o37Cj1HCRj6pCcYpEYl2dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:45.116 [XNIO-1 task-1] o37Cj1HCRj6pCcYpEYl2dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/47fe2d99-c0d6-4aa5-9160-df5fe2bf1575, base path is set to: null +07:00:45.117 [XNIO-1 task-1] o37Cj1HCRj6pCcYpEYl2dA DEBUG com.networknt.schema.TypeValidator debug - validate( "47fe2d99-c0d6-4aa5-9160-df5fe2bf1575", "47fe2d99-c0d6-4aa5-9160-df5fe2bf1575", refreshToken) +07:00:45.117 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5b8a104a +07:00:45.122 [XNIO-1 task-1] o37Cj1HCRj6pCcYpEYl2dA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 47fe2d99-c0d6-4aa5-9160-df5fe2bf1575 is not found.","severity":"ERROR"} +07:00:45.127 [XNIO-1 task-1] 034NDrVwRkae1PyzZ8869g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47fe2d99-c0d6-4aa5-9160-df5fe2bf1575 +07:00:45.127 [XNIO-1 task-1] 034NDrVwRkae1PyzZ8869g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.127 [XNIO-1 task-1] 034NDrVwRkae1PyzZ8869g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:45.128 [XNIO-1 task-1] 034NDrVwRkae1PyzZ8869g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47fe2d99-c0d6-4aa5-9160-df5fe2bf1575 +07:00:45.129 [XNIO-1 task-1] 034NDrVwRkae1PyzZ8869g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 47fe2d99-c0d6-4aa5-9160-df5fe2bf1575 +07:00:45.135 [XNIO-1 task-1] 0YW-zyNMQNCfO0mJWs6pCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.135 [XNIO-1 task-1] 0YW-zyNMQNCfO0mJWs6pCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.136 [XNIO-1 task-1] 0YW-zyNMQNCfO0mJWs6pCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.136 [XNIO-1 task-1] 0YW-zyNMQNCfO0mJWs6pCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.136 [XNIO-1 task-1] 0YW-zyNMQNCfO0mJWs6pCw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:45.157 [XNIO-1 task-1] LRVpULQuR3SUtyZCmc6kRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.157 [XNIO-1 task-1] LRVpULQuR3SUtyZCmc6kRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.158 [XNIO-1 task-1] LRVpULQuR3SUtyZCmc6kRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:45.158 [XNIO-1 task-1] LRVpULQuR3SUtyZCmc6kRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.158 [XNIO-1 task-1] LRVpULQuR3SUtyZCmc6kRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.176 [XNIO-1 task-1] S39zei8oSoGsqQmtn2_drQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.177 [XNIO-1 task-1] S39zei8oSoGsqQmtn2_drQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.177 [XNIO-1 task-1] S39zei8oSoGsqQmtn2_drQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:45.177 [XNIO-1 task-1] S39zei8oSoGsqQmtn2_drQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.178 [XNIO-1 task-1] S39zei8oSoGsqQmtn2_drQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.186 [XNIO-1 task-1] hDsLkY5uTf6UE_jibLIdKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.186 [XNIO-1 task-1] hDsLkY5uTf6UE_jibLIdKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.187 [XNIO-1 task-1] hDsLkY5uTf6UE_jibLIdKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.187 [XNIO-1 task-1] hDsLkY5uTf6UE_jibLIdKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.188 [XNIO-1 task-1] hDsLkY5uTf6UE_jibLIdKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:45.193 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:62fbdbcc +07:00:45.196 [XNIO-1 task-1] iCw9VVJRRNqcUjtb_p6PFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3, base path is set to: null +07:00:45.196 [XNIO-1 task-1] iCw9VVJRRNqcUjtb_p6PFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.196 [XNIO-1 task-1] iCw9VVJRRNqcUjtb_p6PFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:45.197 [XNIO-1 task-1] iCw9VVJRRNqcUjtb_p6PFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3, base path is set to: null +07:00:45.197 [XNIO-1 task-1] iCw9VVJRRNqcUjtb_p6PFA DEBUG com.networknt.schema.TypeValidator debug - validate( "49d3b9ee-310d-4975-a8dc-97618e37a5e3", "49d3b9ee-310d-4975-a8dc-97618e37a5e3", refreshToken) +07:00:45.198 [XNIO-1 task-1] iCw9VVJRRNqcUjtb_p6PFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 49d3b9ee-310d-4975-a8dc-97618e37a5e3 is not found.","severity":"ERROR"} +07:00:45.205 [XNIO-1 task-1] HIO-J3RaTBiRYzhR-31btA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.205 [XNIO-1 task-1] HIO-J3RaTBiRYzhR-31btA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.205 [XNIO-1 task-1] HIO-J3RaTBiRYzhR-31btA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.206 [XNIO-1 task-1] HIO-J3RaTBiRYzhR-31btA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.221 [XNIO-1 task-1] LOxamktwSW-TVGvtVSjG0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3, base path is set to: null +07:00:45.221 [XNIO-1 task-1] LOxamktwSW-TVGvtVSjG0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.221 [XNIO-1 task-1] LOxamktwSW-TVGvtVSjG0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:45.222 [XNIO-1 task-1] LOxamktwSW-TVGvtVSjG0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3, base path is set to: null +07:00:45.222 [XNIO-1 task-1] LOxamktwSW-TVGvtVSjG0w DEBUG com.networknt.schema.TypeValidator debug - validate( "49d3b9ee-310d-4975-a8dc-97618e37a5e3", "49d3b9ee-310d-4975-a8dc-97618e37a5e3", refreshToken) +07:00:45.224 [XNIO-1 task-1] LOxamktwSW-TVGvtVSjG0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 49d3b9ee-310d-4975-a8dc-97618e37a5e3 is not found.","severity":"ERROR"} +07:00:45.229 [XNIO-1 task-1] JH09QX9HQo6YwJacWBsAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.229 [XNIO-1 task-1] JH09QX9HQo6YwJacWBsAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:45.229 [XNIO-1 task-1] JH09QX9HQo6YwJacWBsAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:45.232 [XNIO-1 task-1] JH09QX9HQo6YwJacWBsAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.232 [XNIO-1 task-1] JH09QX9HQo6YwJacWBsAwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 49d3b9ee-310d-4975-a8dc-97618e37a5e3 +07:00:45.241 [XNIO-1 task-1] Rdcmm67qR3GBdgdxa0nUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.241 [XNIO-1 task-1] Rdcmm67qR3GBdgdxa0nUeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:45.241 [XNIO-1 task-1] Rdcmm67qR3GBdgdxa0nUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:45.242 [XNIO-1 task-1] Rdcmm67qR3GBdgdxa0nUeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.243 [XNIO-1 task-1] Rdcmm67qR3GBdgdxa0nUeg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:45.442 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:62fbdbcc +07:00:45.454 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:61c2a64c-a0eb-4ea9-bea5-41a8ed701921 +07:00:45.502 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5b8a104a +07:00:45.524 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5b8a104a +07:00:45.530 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5589de65-3218-4679-ac97-aa7440b3add1 +07:00:45.532 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5589de65-3218-4679-ac97-aa7440b3add1 +07:00:45.555 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6aa3fc95 +07:00:45.660 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5b8a104a +07:00:45.773 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6aa3fc95 +07:00:45.777 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:36b18ca7-9dac-4ef4-b8fc-4ff9123d05f1 +07:00:45.780 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e60c9edd +Jun 29, 2024 7:00:45 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:45.958 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e60c9edd +07:00:45.979 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e60c9edd +07:00:46.095 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e1df52d2 +07:00:46.158 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e1df52d2 +07:00:46.160 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e2ccbac5 +07:00:46.161 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e2ccbac5 +07:00:46.255 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e60c9edd +07:00:46.258 [XNIO-1 task-1] e4em03aYTyCKiwtCrOOKyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.258 [XNIO-1 task-1] e4em03aYTyCKiwtCrOOKyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.258 [XNIO-1 task-1] e4em03aYTyCKiwtCrOOKyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.258 [XNIO-1 task-1] e4em03aYTyCKiwtCrOOKyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.259 [XNIO-1 task-1] e4em03aYTyCKiwtCrOOKyg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.271 [XNIO-1 task-1] V3dg5WY6SlGHYYiP8TYLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.271 [XNIO-1 task-1] V3dg5WY6SlGHYYiP8TYLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.271 [XNIO-1 task-1] V3dg5WY6SlGHYYiP8TYLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.272 [XNIO-1 task-1] V3dg5WY6SlGHYYiP8TYLtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.280 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3f063e54-9279-47fc-96e9-9437f26cec5c +07:00:46.281 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3f063e54-9279-47fc-96e9-9437f26cec5c +07:00:46.281 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3f063e54-9279-47fc-96e9-9437f26cec5c +07:00:46.282 [XNIO-1 task-1] 3e555xv4R7eZXjEryHt9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.282 [XNIO-1 task-1] 3e555xv4R7eZXjEryHt9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.282 [XNIO-1 task-1] 3e555xv4R7eZXjEryHt9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.282 [XNIO-1 task-1] 3e555xv4R7eZXjEryHt9aQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.297 [XNIO-1 task-1] 5aw9epCbSxiUq8ix71kW2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.297 [XNIO-1 task-1] 5aw9epCbSxiUq8ix71kW2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.297 [XNIO-1 task-1] 5aw9epCbSxiUq8ix71kW2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.298 [XNIO-1 task-1] 5aw9epCbSxiUq8ix71kW2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.299 [XNIO-1 task-1] 5aw9epCbSxiUq8ix71kW2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.306 [XNIO-1 task-1] V2SxLp98StiXR5nPCQcQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.308 [XNIO-1 task-1] V2SxLp98StiXR5nPCQcQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.308 [XNIO-1 task-1] V2SxLp98StiXR5nPCQcQbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:46.309 [XNIO-1 task-1] V2SxLp98StiXR5nPCQcQbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.309 [XNIO-1 task-1] V2SxLp98StiXR5nPCQcQbA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:46.312 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2d9360f7 +07:00:46.318 [XNIO-1 task-1] A1RKBNCrTTCU6ZVG7ezW6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.318 [XNIO-1 task-1] A1RKBNCrTTCU6ZVG7ezW6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.318 [XNIO-1 task-1] A1RKBNCrTTCU6ZVG7ezW6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.319 [XNIO-1 task-1] A1RKBNCrTTCU6ZVG7ezW6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.319 [XNIO-1 task-1] A1RKBNCrTTCU6ZVG7ezW6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.370 [XNIO-1 task-1] ymzdyd25TiuqpRzwwWGGyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4dd1ae63-8751-4a16-8298-a3a03ec4b217, base path is set to: null +07:00:46.370 [XNIO-1 task-1] ymzdyd25TiuqpRzwwWGGyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.371 [XNIO-1 task-1] ymzdyd25TiuqpRzwwWGGyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.371 [XNIO-1 task-1] ymzdyd25TiuqpRzwwWGGyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.371 [XNIO-1 task-1] ymzdyd25TiuqpRzwwWGGyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.371 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1d066ce2-5d24-46a6-b96e-ba6207f2302a +07:00:46.372 [XNIO-1 task-1] ymzdyd25TiuqpRzwwWGGyw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.372 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5d863a9c-1ddf-4cad-af0f-b24011e8f5eb +07:00:46.390 [XNIO-1 task-1] nfZalDUMS8KgafKxb-VeZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.391 [XNIO-1 task-1] nfZalDUMS8KgafKxb-VeZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.391 [XNIO-1 task-1] nfZalDUMS8KgafKxb-VeZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.391 [XNIO-1 task-1] nfZalDUMS8KgafKxb-VeZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.397 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1d066ce2-5d24-46a6-b96e-ba6207f2302a +07:00:46.404 [XNIO-1 task-1] kqzH78UjRb22x5o-7U0OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.404 [XNIO-1 task-1] kqzH78UjRb22x5o-7U0OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.404 [XNIO-1 task-1] kqzH78UjRb22x5o-7U0OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.404 [XNIO-1 task-1] kqzH78UjRb22x5o-7U0OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.405 [XNIO-1 task-1] kqzH78UjRb22x5o-7U0OGw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.415 [XNIO-1 task-1] EAZCSpjLR3-zCVoEINc1Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.416 [XNIO-1 task-1] EAZCSpjLR3-zCVoEINc1Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.416 [XNIO-1 task-1] EAZCSpjLR3-zCVoEINc1Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.416 [XNIO-1 task-1] EAZCSpjLR3-zCVoEINc1Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.416 [XNIO-1 task-1] EAZCSpjLR3-zCVoEINc1Mw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.433 [XNIO-1 task-1] 0cBSQA1HQ7CrqZhV0EAkEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.434 [XNIO-1 task-1] 0cBSQA1HQ7CrqZhV0EAkEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.434 [XNIO-1 task-1] 0cBSQA1HQ7CrqZhV0EAkEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.435 [XNIO-1 task-1] 0cBSQA1HQ7CrqZhV0EAkEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.465 [XNIO-1 task-1] W5YNfdatTzGceSAoOG3p6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33, base path is set to: null +07:00:46.465 [XNIO-1 task-1] W5YNfdatTzGceSAoOG3p6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.465 [XNIO-1 task-1] W5YNfdatTzGceSAoOG3p6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.466 [XNIO-1 task-1] W5YNfdatTzGceSAoOG3p6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33, base path is set to: null +07:00:46.467 [XNIO-1 task-1] W5YNfdatTzGceSAoOG3p6w DEBUG com.networknt.schema.TypeValidator debug - validate( "0d849e85-0830-4b0e-a9b2-2023150f5c33", "0d849e85-0830-4b0e-a9b2-2023150f5c33", refreshToken) +07:00:46.469 [XNIO-1 task-1] W5YNfdatTzGceSAoOG3p6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d849e85-0830-4b0e-a9b2-2023150f5c33 is not found.","severity":"ERROR"} +07:00:46.474 [XNIO-1 task-1] LCpY5puqT1qkJLpJmV3Zug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.474 [XNIO-1 task-1] LCpY5puqT1qkJLpJmV3Zug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.475 [XNIO-1 task-1] LCpY5puqT1qkJLpJmV3Zug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.475 [XNIO-1 task-1] LCpY5puqT1qkJLpJmV3Zug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.475 [XNIO-1 task-1] LCpY5puqT1qkJLpJmV3Zug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.481 [XNIO-1 task-1] Q14TEqkvSdmUaF494aENjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33, base path is set to: null +07:00:46.482 [XNIO-1 task-1] Q14TEqkvSdmUaF494aENjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.482 [XNIO-1 task-1] Q14TEqkvSdmUaF494aENjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.482 [XNIO-1 task-1] Q14TEqkvSdmUaF494aENjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33, base path is set to: null +07:00:46.483 [XNIO-1 task-1] Q14TEqkvSdmUaF494aENjg DEBUG com.networknt.schema.TypeValidator debug - validate( "0d849e85-0830-4b0e-a9b2-2023150f5c33", "0d849e85-0830-4b0e-a9b2-2023150f5c33", refreshToken) +07:00:46.483 [XNIO-1 task-1] Q14TEqkvSdmUaF494aENjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d849e85-0830-4b0e-a9b2-2023150f5c33 is not found.","severity":"ERROR"} +07:00:46.487 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2d9360f7 +07:00:46.488 [XNIO-1 task-1] qddIaD13TPyvqSywnx9Exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.488 [XNIO-1 task-1] qddIaD13TPyvqSywnx9Exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.489 [XNIO-1 task-1] qddIaD13TPyvqSywnx9Exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.489 [XNIO-1 task-1] qddIaD13TPyvqSywnx9Exg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.594 [XNIO-1 task-1] FW8SGj7LT1Kb07ToJmKRGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33, base path is set to: null +07:00:46.594 [XNIO-1 task-1] FW8SGj7LT1Kb07ToJmKRGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.595 [XNIO-1 task-1] FW8SGj7LT1Kb07ToJmKRGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.595 [XNIO-1 task-1] FW8SGj7LT1Kb07ToJmKRGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33, base path is set to: null +07:00:46.595 [XNIO-1 task-1] FW8SGj7LT1Kb07ToJmKRGg DEBUG com.networknt.schema.TypeValidator debug - validate( "0d849e85-0830-4b0e-a9b2-2023150f5c33", "0d849e85-0830-4b0e-a9b2-2023150f5c33", refreshToken) +07:00:46.596 [XNIO-1 task-1] FW8SGj7LT1Kb07ToJmKRGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d849e85-0830-4b0e-a9b2-2023150f5c33 is not found.","severity":"ERROR"} +07:00:46.605 [XNIO-1 task-1] VSGcY0FNRsG4vYTSDVo5ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.605 [XNIO-1 task-1] VSGcY0FNRsG4vYTSDVo5ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.605 [XNIO-1 task-1] VSGcY0FNRsG4vYTSDVo5ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.606 [XNIO-1 task-1] VSGcY0FNRsG4vYTSDVo5ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.606 [XNIO-1 task-1] VSGcY0FNRsG4vYTSDVo5ag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.611 [XNIO-1 task-1] Opfpu2iNTiGQ7AytkhtoNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:46.611 [XNIO-1 task-1] Opfpu2iNTiGQ7AytkhtoNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.612 [XNIO-1 task-1] Opfpu2iNTiGQ7AytkhtoNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:46.612 [XNIO-1 task-1] Opfpu2iNTiGQ7AytkhtoNA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.612 [XNIO-1 task-1] Opfpu2iNTiGQ7AytkhtoNA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:46.629 [XNIO-1 task-1] vhfKVqHzShmyl167oYoKWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:46.629 [XNIO-1 task-1] vhfKVqHzShmyl167oYoKWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.629 [XNIO-1 task-1] vhfKVqHzShmyl167oYoKWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.629 [XNIO-1 task-1] vhfKVqHzShmyl167oYoKWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:46.630 [XNIO-1 task-1] vhfKVqHzShmyl167oYoKWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:46.637 [XNIO-1 task-1] aqAL1wPRRZevbhpc1tkFkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.638 [XNIO-1 task-1] aqAL1wPRRZevbhpc1tkFkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.638 [XNIO-1 task-1] aqAL1wPRRZevbhpc1tkFkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.638 [XNIO-1 task-1] aqAL1wPRRZevbhpc1tkFkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.639 [XNIO-1 task-1] aqAL1wPRRZevbhpc1tkFkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0d849e85-0830-4b0e-a9b2-2023150f5c33 +07:00:46.644 [XNIO-1 task-1] 4adsIc7EQEaHs1DHmWo3VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5, base path is set to: null +07:00:46.648 [XNIO-1 task-1] 4adsIc7EQEaHs1DHmWo3VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.648 [XNIO-1 task-1] 4adsIc7EQEaHs1DHmWo3VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.648 [XNIO-1 task-1] 4adsIc7EQEaHs1DHmWo3VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5, base path is set to: null +07:00:46.648 [XNIO-1 task-1] 4adsIc7EQEaHs1DHmWo3VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcb54c59-e457-4226-85a8-953415e3b0d5", "dcb54c59-e457-4226-85a8-953415e3b0d5", refreshToken) +07:00:46.667 [XNIO-1 task-1] iwYDUc9wTo6kAQvrKtjleg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8d65ba98-7ef7-40af-8ada-1b09a8429298, base path is set to: null +07:00:46.668 [XNIO-1 task-1] iwYDUc9wTo6kAQvrKtjleg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.668 [XNIO-1 task-1] iwYDUc9wTo6kAQvrKtjleg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.668 [XNIO-1 task-1] iwYDUc9wTo6kAQvrKtjleg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8d65ba98-7ef7-40af-8ada-1b09a8429298, base path is set to: null +07:00:46.669 [XNIO-1 task-1] iwYDUc9wTo6kAQvrKtjleg DEBUG com.networknt.schema.TypeValidator debug - validate( "8d65ba98-7ef7-40af-8ada-1b09a8429298", "8d65ba98-7ef7-40af-8ada-1b09a8429298", refreshToken) +07:00:46.687 [XNIO-1 task-1] Jb4qnuh3SfSzmAdcrv_uSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8d65ba98-7ef7-40af-8ada-1b09a8429298, base path is set to: null +07:00:46.688 [XNIO-1 task-1] Jb4qnuh3SfSzmAdcrv_uSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.688 [XNIO-1 task-1] Jb4qnuh3SfSzmAdcrv_uSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.690 [XNIO-1 task-1] Jb4qnuh3SfSzmAdcrv_uSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8d65ba98-7ef7-40af-8ada-1b09a8429298, base path is set to: null +07:00:46.691 [XNIO-1 task-1] Jb4qnuh3SfSzmAdcrv_uSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8d65ba98-7ef7-40af-8ada-1b09a8429298", "8d65ba98-7ef7-40af-8ada-1b09a8429298", refreshToken) +07:00:46.697 [XNIO-1 task-1] Jb4qnuh3SfSzmAdcrv_uSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8d65ba98-7ef7-40af-8ada-1b09a8429298 is not found.","severity":"ERROR"} +07:00:46.706 [XNIO-1 task-1] sEHp_zgjR6G5dRSip7YnIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.706 [XNIO-1 task-1] sEHp_zgjR6G5dRSip7YnIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.706 [XNIO-1 task-1] sEHp_zgjR6G5dRSip7YnIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.707 [XNIO-1 task-1] sEHp_zgjR6G5dRSip7YnIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.707 [XNIO-1 task-1] sEHp_zgjR6G5dRSip7YnIg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:46.725 [XNIO-1 task-1] gIPt6l5uSaGsNWSCD0p3Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.726 [XNIO-1 task-1] gIPt6l5uSaGsNWSCD0p3Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.726 [XNIO-1 task-1] gIPt6l5uSaGsNWSCD0p3Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.726 [XNIO-1 task-1] gIPt6l5uSaGsNWSCD0p3Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.727 [XNIO-1 task-1] gIPt6l5uSaGsNWSCD0p3Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "84a03f61-b567-4599-8588-ff9d4605240a", "84a03f61-b567-4599-8588-ff9d4605240a", refreshToken) +07:00:46.738 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4de56de9 +07:00:46.741 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4de56de9 +07:00:46.747 [XNIO-1 task-1] 65sBp1lmRJKrJH0wa8G2ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.747 [XNIO-1 task-1] 65sBp1lmRJKrJH0wa8G2ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.747 [XNIO-1 task-1] 65sBp1lmRJKrJH0wa8G2ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.747 [XNIO-1 task-1] 65sBp1lmRJKrJH0wa8G2ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.748 [XNIO-1 task-1] 65sBp1lmRJKrJH0wa8G2ig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.759 [XNIO-1 task-1] fnaFFeASQIKRAVwbMZtROA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.759 [XNIO-1 task-1] fnaFFeASQIKRAVwbMZtROA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.759 [XNIO-1 task-1] fnaFFeASQIKRAVwbMZtROA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.760 [XNIO-1 task-1] fnaFFeASQIKRAVwbMZtROA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.789 [XNIO-1 task-1] L7TbdT7VTgyKExMk0KYLKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.790 [XNIO-1 task-1] L7TbdT7VTgyKExMk0KYLKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.790 [XNIO-1 task-1] L7TbdT7VTgyKExMk0KYLKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.790 [XNIO-1 task-1] L7TbdT7VTgyKExMk0KYLKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.790 [XNIO-1 task-1] L7TbdT7VTgyKExMk0KYLKA DEBUG com.networknt.schema.TypeValidator debug - validate( "84a03f61-b567-4599-8588-ff9d4605240a", "84a03f61-b567-4599-8588-ff9d4605240a", refreshToken) +07:00:46.797 [XNIO-1 task-1] brwnhTl5SvaSeXi7n23VbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.797 [XNIO-1 task-1] brwnhTl5SvaSeXi7n23VbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.797 [XNIO-1 task-1] brwnhTl5SvaSeXi7n23VbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.798 [XNIO-1 task-1] brwnhTl5SvaSeXi7n23VbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.798 [XNIO-1 task-1] brwnhTl5SvaSeXi7n23VbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84a03f61-b567-4599-8588-ff9d4605240a", "84a03f61-b567-4599-8588-ff9d4605240a", refreshToken) +07:00:46.803 [XNIO-1 task-1] ITMeIfU0RTurLN2AJ-MYEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.804 [XNIO-1 task-1] ITMeIfU0RTurLN2AJ-MYEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.804 [XNIO-1 task-1] ITMeIfU0RTurLN2AJ-MYEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.804 [XNIO-1 task-1] ITMeIfU0RTurLN2AJ-MYEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.805 [XNIO-1 task-1] ITMeIfU0RTurLN2AJ-MYEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84a03f61-b567-4599-8588-ff9d4605240a", "84a03f61-b567-4599-8588-ff9d4605240a", refreshToken) +07:00:46.823 [XNIO-1 task-1] NSh3sTxOQX6k-VaGAVvnZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.823 [XNIO-1 task-1] NSh3sTxOQX6k-VaGAVvnZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.823 [XNIO-1 task-1] NSh3sTxOQX6k-VaGAVvnZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.823 [XNIO-1 task-1] NSh3sTxOQX6k-VaGAVvnZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.824 [XNIO-1 task-1] NSh3sTxOQX6k-VaGAVvnZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84a03f61-b567-4599-8588-ff9d4605240a", "84a03f61-b567-4599-8588-ff9d4605240a", refreshToken) +07:00:46.826 [XNIO-1 task-1] NSh3sTxOQX6k-VaGAVvnZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84a03f61-b567-4599-8588-ff9d4605240a is not found.","severity":"ERROR"} +07:00:46.834 [XNIO-1 task-1] VgXtAX7RRPCnEBkavkBAlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.834 [XNIO-1 task-1] VgXtAX7RRPCnEBkavkBAlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.834 [XNIO-1 task-1] VgXtAX7RRPCnEBkavkBAlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.834 [XNIO-1 task-1] VgXtAX7RRPCnEBkavkBAlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.846 [XNIO-1 task-1] svQnZWbUTruU6XP_TRx-lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.846 [XNIO-1 task-1] svQnZWbUTruU6XP_TRx-lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.846 [XNIO-1 task-1] svQnZWbUTruU6XP_TRx-lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.846 [XNIO-1 task-1] svQnZWbUTruU6XP_TRx-lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.847 [XNIO-1 task-1] svQnZWbUTruU6XP_TRx-lg DEBUG com.networknt.schema.TypeValidator debug - validate( "84a03f61-b567-4599-8588-ff9d4605240a", "84a03f61-b567-4599-8588-ff9d4605240a", refreshToken) +07:00:46.847 [XNIO-1 task-1] svQnZWbUTruU6XP_TRx-lg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84a03f61-b567-4599-8588-ff9d4605240a is not found.","severity":"ERROR"} +07:00:46.858 [XNIO-1 task-1] Xh3MGALhSJKsXTePe3Nm4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.858 [XNIO-1 task-1] Xh3MGALhSJKsXTePe3Nm4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.858 [XNIO-1 task-1] Xh3MGALhSJKsXTePe3Nm4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.858 [XNIO-1 task-1] Xh3MGALhSJKsXTePe3Nm4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.861 [XNIO-1 task-1] Xh3MGALhSJKsXTePe3Nm4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.866 [XNIO-1 task-1] AEyFyy-1TnSwbnbf1O_ylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.866 [XNIO-1 task-1] AEyFyy-1TnSwbnbf1O_ylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.866 [XNIO-1 task-1] AEyFyy-1TnSwbnbf1O_ylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.867 [XNIO-1 task-1] AEyFyy-1TnSwbnbf1O_ylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84a03f61-b567-4599-8588-ff9d4605240a, base path is set to: null +07:00:46.867 [XNIO-1 task-1] AEyFyy-1TnSwbnbf1O_ylQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84a03f61-b567-4599-8588-ff9d4605240a", "84a03f61-b567-4599-8588-ff9d4605240a", refreshToken) +07:00:46.867 [XNIO-1 task-1] AEyFyy-1TnSwbnbf1O_ylQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84a03f61-b567-4599-8588-ff9d4605240a is not found.","severity":"ERROR"} +07:00:46.873 [XNIO-1 task-1] PCiF42fgRFWMIUTqTtOQKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/873412ad-0202-4b19-9a80-cfab20275ade +07:00:46.873 [XNIO-1 task-1] PCiF42fgRFWMIUTqTtOQKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.873 [XNIO-1 task-1] PCiF42fgRFWMIUTqTtOQKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.873 [XNIO-1 task-1] PCiF42fgRFWMIUTqTtOQKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/873412ad-0202-4b19-9a80-cfab20275ade +07:00:46.874 [XNIO-1 task-1] PCiF42fgRFWMIUTqTtOQKA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 873412ad-0202-4b19-9a80-cfab20275ade +07:00:46.881 [XNIO-1 task-1] C6MSqTrHTLKWfaGS7_29Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:46.881 [XNIO-1 task-1] C6MSqTrHTLKWfaGS7_29Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.881 [XNIO-1 task-1] C6MSqTrHTLKWfaGS7_29Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.881 [XNIO-1 task-1] C6MSqTrHTLKWfaGS7_29Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:46.881 [XNIO-1 task-1] C6MSqTrHTLKWfaGS7_29Uw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:46.896 [XNIO-1 task-1] uaasN3HwShm05LvcP-s2kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:46.896 [XNIO-1 task-1] uaasN3HwShm05LvcP-s2kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.897 [XNIO-1 task-1] uaasN3HwShm05LvcP-s2kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:46.897 [XNIO-1 task-1] uaasN3HwShm05LvcP-s2kA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.898 [XNIO-1 task-1] uaasN3HwShm05LvcP-s2kA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:46.913 [XNIO-1 task-1] OlVsDFhkTYGm6ClY_bXP7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/873412ad-0202-4b19-9a80-cfab20275ade +07:00:46.914 [XNIO-1 task-1] OlVsDFhkTYGm6ClY_bXP7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.914 [XNIO-1 task-1] OlVsDFhkTYGm6ClY_bXP7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:46.914 [XNIO-1 task-1] OlVsDFhkTYGm6ClY_bXP7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/873412ad-0202-4b19-9a80-cfab20275ade +07:00:46.914 [XNIO-1 task-1] OlVsDFhkTYGm6ClY_bXP7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 873412ad-0202-4b19-9a80-cfab20275ade +07:00:46.925 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2d9360f7 +07:00:46.928 [XNIO-1 task-1] YSkuru13SIqnw2AYQnivFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.928 [XNIO-1 task-1] YSkuru13SIqnw2AYQnivFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.928 [XNIO-1 task-1] YSkuru13SIqnw2AYQnivFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.929 [XNIO-1 task-1] YSkuru13SIqnw2AYQnivFw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.960 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5b0f6fd0-9cd0-474a-a04c-c144088d3e8d +07:00:46.961 [XNIO-1 task-1] fW8eTxlzTAOI_uxqWZtfvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:46.962 [XNIO-1 task-1] fW8eTxlzTAOI_uxqWZtfvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.962 [XNIO-1 task-1] fW8eTxlzTAOI_uxqWZtfvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:46.962 [XNIO-1 task-1] fW8eTxlzTAOI_uxqWZtfvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:46.962 [XNIO-1 task-1] fW8eTxlzTAOI_uxqWZtfvg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:46.963 [XNIO-1 task-1] fW8eTxlzTAOI_uxqWZtfvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:46.967 [XNIO-1 task-1] WDYpzvfJTsKJY_NWxR7EBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.967 [XNIO-1 task-1] WDYpzvfJTsKJY_NWxR7EBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.967 [XNIO-1 task-1] WDYpzvfJTsKJY_NWxR7EBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:46.968 [XNIO-1 task-1] WDYpzvfJTsKJY_NWxR7EBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.984 [XNIO-1 task-1] I8b85IyfQseL3XYz8VypHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:46.984 [XNIO-1 task-1] I8b85IyfQseL3XYz8VypHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.984 [XNIO-1 task-1] I8b85IyfQseL3XYz8VypHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:46.985 [XNIO-1 task-1] I8b85IyfQseL3XYz8VypHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.985 [XNIO-1 task-1] I8b85IyfQseL3XYz8VypHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:46.994 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e2ccbac5 +07:00:46.997 [XNIO-1 task-1] x1RBGdl8SO2U30QQNah_Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:46.998 [XNIO-1 task-1] x1RBGdl8SO2U30QQNah_Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:46.999 [XNIO-1 task-1] x1RBGdl8SO2U30QQNah_Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.000 [XNIO-1 task-1] x1RBGdl8SO2U30QQNah_Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.000 [XNIO-1 task-1] x1RBGdl8SO2U30QQNah_Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.001 [XNIO-1 task-1] x1RBGdl8SO2U30QQNah_Tw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.007 [XNIO-1 task-1] QD_YNAArRe6DuWXs_xAgNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.007 [XNIO-1 task-1] QD_YNAArRe6DuWXs_xAgNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.007 [XNIO-1 task-1] QD_YNAArRe6DuWXs_xAgNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.007 [XNIO-1 task-1] QD_YNAArRe6DuWXs_xAgNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.013 [XNIO-1 task-1] QD_YNAArRe6DuWXs_xAgNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.022 [XNIO-1 task-1] 75Qmh4AUQ16MJmdDQsuT_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.022 [XNIO-1 task-1] 75Qmh4AUQ16MJmdDQsuT_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.023 [XNIO-1 task-1] 75Qmh4AUQ16MJmdDQsuT_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.023 [XNIO-1 task-1] 75Qmh4AUQ16MJmdDQsuT_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.023 [XNIO-1 task-1] 75Qmh4AUQ16MJmdDQsuT_w DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.023 [XNIO-1 task-1] 75Qmh4AUQ16MJmdDQsuT_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.030 [XNIO-1 task-1] uQ-fa6I8QOq-hCykm9bKCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.030 [XNIO-1 task-1] uQ-fa6I8QOq-hCykm9bKCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.031 [XNIO-1 task-1] uQ-fa6I8QOq-hCykm9bKCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.031 [XNIO-1 task-1] uQ-fa6I8QOq-hCykm9bKCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.043 [XNIO-1 task-1] 0cCJjFFyTne7pih2ledGBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.044 [XNIO-1 task-1] 0cCJjFFyTne7pih2ledGBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.044 [XNIO-1 task-1] 0cCJjFFyTne7pih2ledGBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.044 [XNIO-1 task-1] 0cCJjFFyTne7pih2ledGBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.045 [XNIO-1 task-1] 0cCJjFFyTne7pih2ledGBg DEBUG com.networknt.schema.TypeValidator debug - validate( "3095988b-270f-44ef-9982-aef8967318fc", "3095988b-270f-44ef-9982-aef8967318fc", refreshToken) +07:00:47.050 [XNIO-1 task-1] ipRTCvWoRTW2xnL8S6LjwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.050 [XNIO-1 task-1] ipRTCvWoRTW2xnL8S6LjwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.051 [XNIO-1 task-1] ipRTCvWoRTW2xnL8S6LjwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.051 [XNIO-1 task-1] ipRTCvWoRTW2xnL8S6LjwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.051 [XNIO-1 task-1] ipRTCvWoRTW2xnL8S6LjwA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.051 [XNIO-1 task-1] ipRTCvWoRTW2xnL8S6LjwA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.055 [XNIO-1 task-1] wW8GlXHnQEWr0dmD1dnNqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.055 [XNIO-1 task-1] wW8GlXHnQEWr0dmD1dnNqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.055 [XNIO-1 task-1] wW8GlXHnQEWr0dmD1dnNqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.056 [XNIO-1 task-1] wW8GlXHnQEWr0dmD1dnNqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.063 [XNIO-1 task-1] 2v86Lt-TSSiUfsjCfVWvjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.063 [XNIO-1 task-1] 2v86Lt-TSSiUfsjCfVWvjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.063 [XNIO-1 task-1] 2v86Lt-TSSiUfsjCfVWvjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.063 [XNIO-1 task-1] 2v86Lt-TSSiUfsjCfVWvjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.064 [XNIO-1 task-1] 2v86Lt-TSSiUfsjCfVWvjA DEBUG com.networknt.schema.TypeValidator debug - validate( "3095988b-270f-44ef-9982-aef8967318fc", "3095988b-270f-44ef-9982-aef8967318fc", refreshToken) +07:00:47.070 [XNIO-1 task-1] Me375QEmTuCFxNM2zWMttA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.070 [XNIO-1 task-1] Me375QEmTuCFxNM2zWMttA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.070 [XNIO-1 task-1] Me375QEmTuCFxNM2zWMttA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.071 [XNIO-1 task-1] Me375QEmTuCFxNM2zWMttA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.071 [XNIO-1 task-1] Me375QEmTuCFxNM2zWMttA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.080 [XNIO-1 task-1] fMF523U8SDugOE36M8FJJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.080 [XNIO-1 task-1] fMF523U8SDugOE36M8FJJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.080 [XNIO-1 task-1] fMF523U8SDugOE36M8FJJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.080 [XNIO-1 task-1] fMF523U8SDugOE36M8FJJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.081 [XNIO-1 task-1] fMF523U8SDugOE36M8FJJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.088 [XNIO-1 task-1] _AY0t2DnTrqvYnYIyJhL_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.089 [XNIO-1 task-1] _AY0t2DnTrqvYnYIyJhL_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.089 [XNIO-1 task-1] _AY0t2DnTrqvYnYIyJhL_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.089 [XNIO-1 task-1] _AY0t2DnTrqvYnYIyJhL_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.089 [XNIO-1 task-1] _AY0t2DnTrqvYnYIyJhL_w DEBUG com.networknt.schema.TypeValidator debug - validate( "3095988b-270f-44ef-9982-aef8967318fc", "3095988b-270f-44ef-9982-aef8967318fc", refreshToken) +07:00:47.104 [XNIO-1 task-1] y430oBUNTkOg_02BTzt1nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.105 [XNIO-1 task-1] y430oBUNTkOg_02BTzt1nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.105 [XNIO-1 task-1] y430oBUNTkOg_02BTzt1nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.105 [XNIO-1 task-1] y430oBUNTkOg_02BTzt1nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.105 [XNIO-1 task-1] y430oBUNTkOg_02BTzt1nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.106 [XNIO-1 task-1] y430oBUNTkOg_02BTzt1nQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.111 [XNIO-1 task-1] EHmHqf14SRW71zzlLRr3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.111 [XNIO-1 task-1] EHmHqf14SRW71zzlLRr3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.111 [XNIO-1 task-1] EHmHqf14SRW71zzlLRr3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.111 [XNIO-1 task-1] EHmHqf14SRW71zzlLRr3dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.113 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4de56de9 +07:00:47.120 [XNIO-1 task-1] cMrll5rbQD6UMC_iFutMsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.120 [XNIO-1 task-1] cMrll5rbQD6UMC_iFutMsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.120 [XNIO-1 task-1] cMrll5rbQD6UMC_iFutMsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.121 [XNIO-1 task-1] cMrll5rbQD6UMC_iFutMsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.121 [XNIO-1 task-1] cMrll5rbQD6UMC_iFutMsg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.121 [XNIO-1 task-1] cMrll5rbQD6UMC_iFutMsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.129 [XNIO-1 task-1] ZHVUYLkOR4OQgdcICA2YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f0d8b91-4400-4427-99ee-dbd53c5f0af2 +07:00:47.129 [XNIO-1 task-1] ZHVUYLkOR4OQgdcICA2YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.129 [XNIO-1 task-1] ZHVUYLkOR4OQgdcICA2YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.129 [XNIO-1 task-1] ZHVUYLkOR4OQgdcICA2YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f0d8b91-4400-4427-99ee-dbd53c5f0af2 +07:00:47.129 [XNIO-1 task-1] ZHVUYLkOR4OQgdcICA2YOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5f0d8b91-4400-4427-99ee-dbd53c5f0af2 +07:00:47.136 [XNIO-1 task-1] VjfNFAmEQ8OZINdZgofQjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.137 [XNIO-1 task-1] VjfNFAmEQ8OZINdZgofQjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.137 [XNIO-1 task-1] VjfNFAmEQ8OZINdZgofQjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.137 [XNIO-1 task-1] VjfNFAmEQ8OZINdZgofQjw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.137 [XNIO-1 task-1] VjfNFAmEQ8OZINdZgofQjw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.147 [XNIO-1 task-1] NKyaX_nMQxiqKULU0pNTcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5, base path is set to: null +07:00:47.147 [XNIO-1 task-1] NKyaX_nMQxiqKULU0pNTcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:47.147 [XNIO-1 task-1] NKyaX_nMQxiqKULU0pNTcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.147 [XNIO-1 task-1] NKyaX_nMQxiqKULU0pNTcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.147 [XNIO-1 task-1] NKyaX_nMQxiqKULU0pNTcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:47.148 [XNIO-1 task-1] NKyaX_nMQxiqKULU0pNTcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:47.153 [XNIO-1 task-1] yZQTz3wMQYy9CHeG3TOZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.153 [XNIO-1 task-1] yZQTz3wMQYy9CHeG3TOZ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.153 [XNIO-1 task-1] yZQTz3wMQYy9CHeG3TOZ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.153 [XNIO-1 task-1] yZQTz3wMQYy9CHeG3TOZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.157 [XNIO-1 task-1] yZQTz3wMQYy9CHeG3TOZ4A DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.157 [XNIO-1 task-1] yZQTz3wMQYy9CHeG3TOZ4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.173 [XNIO-1 task-1] SbL9U1pMRzSawhSrMhyq_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc +07:00:47.173 [XNIO-1 task-1] SbL9U1pMRzSawhSrMhyq_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.173 [XNIO-1 task-1] SbL9U1pMRzSawhSrMhyq_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.173 [XNIO-1 task-1] SbL9U1pMRzSawhSrMhyq_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc +07:00:47.174 [XNIO-1 task-1] SbL9U1pMRzSawhSrMhyq_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3095988b-270f-44ef-9982-aef8967318fc +07:00:47.181 [XNIO-1 task-1] m_vqWYxxQzyHVrYScp5Gfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.182 [XNIO-1 task-1] m_vqWYxxQzyHVrYScp5Gfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.183 [XNIO-1 task-1] m_vqWYxxQzyHVrYScp5Gfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.183 [XNIO-1 task-1] m_vqWYxxQzyHVrYScp5Gfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.184 [XNIO-1 task-1] m_vqWYxxQzyHVrYScp5Gfw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.197 [XNIO-1 task-1] evGX-SpOTMCplNc9OLUALA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.198 [XNIO-1 task-1] evGX-SpOTMCplNc9OLUALA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.198 [XNIO-1 task-1] evGX-SpOTMCplNc9OLUALA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.198 [XNIO-1 task-1] evGX-SpOTMCplNc9OLUALA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.198 [XNIO-1 task-1] evGX-SpOTMCplNc9OLUALA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.202 [XNIO-1 task-1] jboKRYW3TymEeCJjCIctUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.202 [XNIO-1 task-1] jboKRYW3TymEeCJjCIctUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.202 [XNIO-1 task-1] jboKRYW3TymEeCJjCIctUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.202 [XNIO-1 task-1] jboKRYW3TymEeCJjCIctUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.203 [XNIO-1 task-1] jboKRYW3TymEeCJjCIctUg DEBUG com.networknt.schema.TypeValidator debug - validate( "3095988b-270f-44ef-9982-aef8967318fc", "3095988b-270f-44ef-9982-aef8967318fc", refreshToken) +07:00:47.203 [XNIO-1 task-1] jboKRYW3TymEeCJjCIctUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3095988b-270f-44ef-9982-aef8967318fc is not found.","severity":"ERROR"} +07:00:47.211 [XNIO-1 task-1] 68y5MOhFTjOIuPm7Iq4SmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.211 [XNIO-1 task-1] 68y5MOhFTjOIuPm7Iq4SmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.211 [XNIO-1 task-1] 68y5MOhFTjOIuPm7Iq4SmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.212 [XNIO-1 task-1] 68y5MOhFTjOIuPm7Iq4SmA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.222 [XNIO-1 task-1] poPnFStZTA2ptBM5i7UN_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.223 [XNIO-1 task-1] poPnFStZTA2ptBM5i7UN_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.223 [XNIO-1 task-1] poPnFStZTA2ptBM5i7UN_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.223 [XNIO-1 task-1] poPnFStZTA2ptBM5i7UN_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.223 [XNIO-1 task-1] poPnFStZTA2ptBM5i7UN_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.240 [XNIO-1 task-1] kWjHTT9xRRmfvbNlS0MS4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.241 [XNIO-1 task-1] kWjHTT9xRRmfvbNlS0MS4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.241 [XNIO-1 task-1] kWjHTT9xRRmfvbNlS0MS4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.241 [XNIO-1 task-1] kWjHTT9xRRmfvbNlS0MS4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.242 [XNIO-1 task-1] kWjHTT9xRRmfvbNlS0MS4w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.254 [XNIO-1 task-1] -KfSzQmbQgO9vbaVcsTBMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.254 [XNIO-1 task-1] -KfSzQmbQgO9vbaVcsTBMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.254 [XNIO-1 task-1] -KfSzQmbQgO9vbaVcsTBMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.254 [XNIO-1 task-1] -KfSzQmbQgO9vbaVcsTBMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.255 [XNIO-1 task-1] -KfSzQmbQgO9vbaVcsTBMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3095988b-270f-44ef-9982-aef8967318fc", "3095988b-270f-44ef-9982-aef8967318fc", refreshToken) +07:00:47.256 [XNIO-1 task-1] -KfSzQmbQgO9vbaVcsTBMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3095988b-270f-44ef-9982-aef8967318fc is not found.","severity":"ERROR"} +07:00:47.263 [XNIO-1 task-1] nfk8NNlDQkaXnVtPjIbA4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.263 [XNIO-1 task-1] nfk8NNlDQkaXnVtPjIbA4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.263 [XNIO-1 task-1] nfk8NNlDQkaXnVtPjIbA4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.263 [XNIO-1 task-1] nfk8NNlDQkaXnVtPjIbA4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.264 [XNIO-1 task-1] nfk8NNlDQkaXnVtPjIbA4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.270 [XNIO-1 task-1] RN-qZFnJSDyBqIaIjc69qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.271 [XNIO-1 task-1] RN-qZFnJSDyBqIaIjc69qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.271 [XNIO-1 task-1] RN-qZFnJSDyBqIaIjc69qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.275 [XNIO-1 task-1] RN-qZFnJSDyBqIaIjc69qg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.275 [XNIO-1 task-1] RN-qZFnJSDyBqIaIjc69qg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.283 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bf8929a8-4149-4d87-8e83-b1ce4abdff36 +07:00:47.285 [XNIO-1 task-1] 7Qk7yrDVSmaBIr5Ip4ZDCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.286 [XNIO-1 task-1] 7Qk7yrDVSmaBIr5Ip4ZDCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.293 [XNIO-1 task-1] 7Qk7yrDVSmaBIr5Ip4ZDCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.293 [XNIO-1 task-1] 7Qk7yrDVSmaBIr5Ip4ZDCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3095988b-270f-44ef-9982-aef8967318fc, base path is set to: null +07:00:47.293 [XNIO-1 task-1] 7Qk7yrDVSmaBIr5Ip4ZDCg DEBUG com.networknt.schema.TypeValidator debug - validate( "3095988b-270f-44ef-9982-aef8967318fc", "3095988b-270f-44ef-9982-aef8967318fc", refreshToken) +07:00:47.294 [XNIO-1 task-1] 7Qk7yrDVSmaBIr5Ip4ZDCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3095988b-270f-44ef-9982-aef8967318fc is not found.","severity":"ERROR"} +07:00:47.304 [XNIO-1 task-1] wSPIEOgFTrir8EBOH0ey2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.304 [XNIO-1 task-1] wSPIEOgFTrir8EBOH0ey2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.305 [XNIO-1 task-1] wSPIEOgFTrir8EBOH0ey2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.335 [XNIO-1 task-1] wSPIEOgFTrir8EBOH0ey2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.336 [XNIO-1 task-1] wSPIEOgFTrir8EBOH0ey2g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.349 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:330d5c3d +07:00:47.350 [XNIO-1 task-1] 6Zv5R57DSpqBbzAdCc94nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.350 [XNIO-1 task-1] 6Zv5R57DSpqBbzAdCc94nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.350 [XNIO-1 task-1] 6Zv5R57DSpqBbzAdCc94nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.350 [XNIO-1 task-1] 6Zv5R57DSpqBbzAdCc94nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.351 [XNIO-1 task-1] 6Zv5R57DSpqBbzAdCc94nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.359 [XNIO-1 task-1] Dd1TqwUXSO6GbVlgzP1ltw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.360 [XNIO-1 task-1] Dd1TqwUXSO6GbVlgzP1ltw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.360 [XNIO-1 task-1] Dd1TqwUXSO6GbVlgzP1ltw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.364 [XNIO-1 task-1] Dd1TqwUXSO6GbVlgzP1ltw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.365 [XNIO-1 task-1] Dd1TqwUXSO6GbVlgzP1ltw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.369 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.375 [XNIO-1 task-1] 0nKzTOLzSfuj59tQOiJceA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.375 [XNIO-1 task-1] 0nKzTOLzSfuj59tQOiJceA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.375 [XNIO-1 task-1] 0nKzTOLzSfuj59tQOiJceA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.377 [XNIO-1 task-1] 0nKzTOLzSfuj59tQOiJceA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.389 [XNIO-1 task-1] QacABaQ5Rnmhv9VSXzLbSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.389 [XNIO-1 task-1] QacABaQ5Rnmhv9VSXzLbSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.389 [XNIO-1 task-1] QacABaQ5Rnmhv9VSXzLbSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.389 [XNIO-1 task-1] QacABaQ5Rnmhv9VSXzLbSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.390 [XNIO-1 task-1] QacABaQ5Rnmhv9VSXzLbSg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.390 [XNIO-1 task-1] QacABaQ5Rnmhv9VSXzLbSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.396 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:35a65e46-f57a-4402-bed2-2972db3b0fac +07:00:47.397 [XNIO-1 task-1] kwpN7W0sSwOYrLn0b8rqyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.397 [XNIO-1 task-1] kwpN7W0sSwOYrLn0b8rqyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.398 [XNIO-1 task-1] kwpN7W0sSwOYrLn0b8rqyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.398 [XNIO-1 task-1] kwpN7W0sSwOYrLn0b8rqyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.399 [XNIO-1 task-1] kwpN7W0sSwOYrLn0b8rqyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.409 [XNIO-1 task-1] FF2wk5eYT6OxAkQw00xliQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.409 [XNIO-1 task-1] FF2wk5eYT6OxAkQw00xliQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.410 [XNIO-1 task-1] FF2wk5eYT6OxAkQw00xliQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.410 [XNIO-1 task-1] FF2wk5eYT6OxAkQw00xliQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.410 [XNIO-1 task-1] FF2wk5eYT6OxAkQw00xliQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.422 [XNIO-1 task-1] E0aMyiGKRb250CJN0K6BRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.423 [XNIO-1 task-1] E0aMyiGKRb250CJN0K6BRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.423 [XNIO-1 task-1] E0aMyiGKRb250CJN0K6BRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.423 [XNIO-1 task-1] E0aMyiGKRb250CJN0K6BRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.423 [XNIO-1 task-1] E0aMyiGKRb250CJN0K6BRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.436 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:64f5a241-60df-4bb8-8732-675dc1fd058f +07:00:47.447 [XNIO-1 task-1] DjuIRuDnQmCv8QwnSsv8rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.451 [XNIO-1 task-1] DjuIRuDnQmCv8QwnSsv8rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.451 [XNIO-1 task-1] DjuIRuDnQmCv8QwnSsv8rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.451 [XNIO-1 task-1] DjuIRuDnQmCv8QwnSsv8rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.451 [XNIO-1 task-1] DjuIRuDnQmCv8QwnSsv8rw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.454 [XNIO-1 task-1] DjuIRuDnQmCv8QwnSsv8rw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 27c53a0b-2213-4306-811a-c6eff5cc144f is not found.","severity":"ERROR"} +07:00:47.460 [XNIO-1 task-1] _GBlgqY2QKOA3ugkOBzaYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.460 [XNIO-1 task-1] _GBlgqY2QKOA3ugkOBzaYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.460 [XNIO-1 task-1] _GBlgqY2QKOA3ugkOBzaYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.460 [XNIO-1 task-1] _GBlgqY2QKOA3ugkOBzaYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.461 [XNIO-1 task-1] _GBlgqY2QKOA3ugkOBzaYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.463 [XNIO-1 task-1] _GBlgqY2QKOA3ugkOBzaYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 27c53a0b-2213-4306-811a-c6eff5cc144f is not found.","severity":"ERROR"} +07:00:47.468 [XNIO-1 task-1] _woOlPVbRpipusqdCoBJMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70f3cbe7-003a-4e5f-8fe1-9aac2fede87d +07:00:47.468 [XNIO-1 task-1] _woOlPVbRpipusqdCoBJMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.468 [XNIO-1 task-1] _woOlPVbRpipusqdCoBJMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.468 [XNIO-1 task-1] _woOlPVbRpipusqdCoBJMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70f3cbe7-003a-4e5f-8fe1-9aac2fede87d +07:00:47.469 [XNIO-1 task-1] _woOlPVbRpipusqdCoBJMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 70f3cbe7-003a-4e5f-8fe1-9aac2fede87d +07:00:47.487 [XNIO-1 task-1] 7OWvq33LQMqQKCRNAcFCQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.488 [XNIO-1 task-1] 7OWvq33LQMqQKCRNAcFCQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.488 [XNIO-1 task-1] 7OWvq33LQMqQKCRNAcFCQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.488 [XNIO-1 task-1] 7OWvq33LQMqQKCRNAcFCQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.488 [XNIO-1 task-1] 7OWvq33LQMqQKCRNAcFCQA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.489 [XNIO-1 task-1] 7OWvq33LQMqQKCRNAcFCQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.492 [XNIO-1 task-1] BkuGWnHXRLamw1lU_07I7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.492 [XNIO-1 task-1] BkuGWnHXRLamw1lU_07I7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.492 [XNIO-1 task-1] BkuGWnHXRLamw1lU_07I7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.493 [XNIO-1 task-1] BkuGWnHXRLamw1lU_07I7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.493 [XNIO-1 task-1] BkuGWnHXRLamw1lU_07I7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.497 [XNIO-1 task-1] RJw5icufSA-91K_lFOKjUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.498 [XNIO-1 task-1] RJw5icufSA-91K_lFOKjUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.498 [XNIO-1 task-1] RJw5icufSA-91K_lFOKjUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.499 [XNIO-1 task-1] RJw5icufSA-91K_lFOKjUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.499 [XNIO-1 task-1] RJw5icufSA-91K_lFOKjUw DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.499 [XNIO-1 task-1] RJw5icufSA-91K_lFOKjUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.503 [XNIO-1 task-1] iOy9oGkhST6EcLRXnQ_Lmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.503 [XNIO-1 task-1] iOy9oGkhST6EcLRXnQ_Lmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.503 [XNIO-1 task-1] iOy9oGkhST6EcLRXnQ_Lmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.503 [XNIO-1 task-1] iOy9oGkhST6EcLRXnQ_Lmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.504 [XNIO-1 task-1] iOy9oGkhST6EcLRXnQ_Lmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.512 [XNIO-1 task-1] BCWmeBHgT4-HeBqmbbKupg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.512 [XNIO-1 task-1] BCWmeBHgT4-HeBqmbbKupg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.513 [XNIO-1 task-1] BCWmeBHgT4-HeBqmbbKupg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.513 [XNIO-1 task-1] BCWmeBHgT4-HeBqmbbKupg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.513 [XNIO-1 task-1] BCWmeBHgT4-HeBqmbbKupg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.531 [XNIO-1 task-1] s9z0bPW7RtOoW0HJynlGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.531 [XNIO-1 task-1] s9z0bPW7RtOoW0HJynlGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.531 [XNIO-1 task-1] s9z0bPW7RtOoW0HJynlGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.532 [XNIO-1 task-1] s9z0bPW7RtOoW0HJynlGig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.545 [XNIO-1 task-1] pH27oq9YTDSL1fyjdob-Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f, base path is set to: null +07:00:47.546 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:330d5c3d +07:00:47.546 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:330d5c3d +07:00:47.546 [XNIO-1 task-1] pH27oq9YTDSL1fyjdob-Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.546 [XNIO-1 task-1] pH27oq9YTDSL1fyjdob-Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f, base path is set to: null +07:00:47.548 [XNIO-1 task-1] pH27oq9YTDSL1fyjdob-Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "27c53a0b-2213-4306-811a-c6eff5cc144f", "27c53a0b-2213-4306-811a-c6eff5cc144f", refreshToken) +07:00:47.548 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.557 [XNIO-1 task-1] CPKdQquNSueRVIIKNPBI3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.557 [XNIO-1 task-1] CPKdQquNSueRVIIKNPBI3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.557 [XNIO-1 task-1] CPKdQquNSueRVIIKNPBI3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.557 [XNIO-1 task-1] CPKdQquNSueRVIIKNPBI3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898, base path is set to: null +07:00:47.558 [XNIO-1 task-1] CPKdQquNSueRVIIKNPBI3g DEBUG com.networknt.schema.TypeValidator debug - validate( "5b1ca26c-8532-4fde-b073-88f9f009e898", "5b1ca26c-8532-4fde-b073-88f9f009e898", refreshToken) +07:00:47.558 [XNIO-1 task-1] CPKdQquNSueRVIIKNPBI3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b1ca26c-8532-4fde-b073-88f9f009e898 is not found.","severity":"ERROR"} +07:00:47.562 [XNIO-1 task-1] LFUIs3MaSJWMClGRHMSa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d39c7e1f-a99a-4431-a1a9-0a4f5cf6288d +07:00:47.563 [XNIO-1 task-1] LFUIs3MaSJWMClGRHMSa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.563 [XNIO-1 task-1] LFUIs3MaSJWMClGRHMSa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.563 [XNIO-1 task-1] LFUIs3MaSJWMClGRHMSa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d39c7e1f-a99a-4431-a1a9-0a4f5cf6288d +07:00:47.563 [XNIO-1 task-1] LFUIs3MaSJWMClGRHMSa4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d39c7e1f-a99a-4431-a1a9-0a4f5cf6288d +07:00:47.578 [XNIO-1 task-1] tOHlDvhPReShFxHMalOEvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f, base path is set to: null +07:00:47.579 [XNIO-1 task-1] tOHlDvhPReShFxHMalOEvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.579 [XNIO-1 task-1] tOHlDvhPReShFxHMalOEvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.579 [XNIO-1 task-1] tOHlDvhPReShFxHMalOEvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/27c53a0b-2213-4306-811a-c6eff5cc144f, base path is set to: null +07:00:47.579 [XNIO-1 task-1] tOHlDvhPReShFxHMalOEvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "27c53a0b-2213-4306-811a-c6eff5cc144f", "27c53a0b-2213-4306-811a-c6eff5cc144f", refreshToken) +07:00:47.581 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:27c53a0b-2213-4306-811a-c6eff5cc144f +07:00:47.594 [XNIO-1 task-1] 2QEPIGVOR26Brl6p5uy_ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee895ceb-b7c5-4983-9b40-2ca080d4eb70, base path is set to: null +07:00:47.596 [XNIO-1 task-1] 2QEPIGVOR26Brl6p5uy_ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.596 [XNIO-1 task-1] 2QEPIGVOR26Brl6p5uy_ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.596 [XNIO-1 task-1] 2QEPIGVOR26Brl6p5uy_ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee895ceb-b7c5-4983-9b40-2ca080d4eb70, base path is set to: null +07:00:47.596 [XNIO-1 task-1] 2QEPIGVOR26Brl6p5uy_ug DEBUG com.networknt.schema.TypeValidator debug - validate( "ee895ceb-b7c5-4983-9b40-2ca080d4eb70", "ee895ceb-b7c5-4983-9b40-2ca080d4eb70", refreshToken) +07:00:47.616 [XNIO-1 task-1] lI8dKafLRKCb7qLEwklKcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f, base path is set to: null +07:00:47.616 [XNIO-1 task-1] lI8dKafLRKCb7qLEwklKcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.616 [XNIO-1 task-1] lI8dKafLRKCb7qLEwklKcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.617 [XNIO-1 task-1] lI8dKafLRKCb7qLEwklKcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f, base path is set to: null +07:00:47.617 [XNIO-1 task-1] lI8dKafLRKCb7qLEwklKcA DEBUG com.networknt.schema.TypeValidator debug - validate( "64f5a241-60df-4bb8-8732-675dc1fd058f", "64f5a241-60df-4bb8-8732-675dc1fd058f", refreshToken) +07:00:47.621 [XNIO-1 task-1] w2R-hewWRnyaeeQmVG9q3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f, base path is set to: null +07:00:47.621 [XNIO-1 task-1] w2R-hewWRnyaeeQmVG9q3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.622 [XNIO-1 task-1] w2R-hewWRnyaeeQmVG9q3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.622 [XNIO-1 task-1] w2R-hewWRnyaeeQmVG9q3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f, base path is set to: null +07:00:47.622 [XNIO-1 task-1] w2R-hewWRnyaeeQmVG9q3w DEBUG com.networknt.schema.TypeValidator debug - validate( "64f5a241-60df-4bb8-8732-675dc1fd058f", "64f5a241-60df-4bb8-8732-675dc1fd058f", refreshToken) +07:00:47.628 [XNIO-1 task-1] hFbGkt_VSQ2niZtjw8TLug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.628 [XNIO-1 task-1] hFbGkt_VSQ2niZtjw8TLug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.628 [XNIO-1 task-1] hFbGkt_VSQ2niZtjw8TLug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.629 [XNIO-1 task-1] hFbGkt_VSQ2niZtjw8TLug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.629 [XNIO-1 task-1] hFbGkt_VSQ2niZtjw8TLug DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", refreshToken) +07:00:47.645 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4de56de9 +07:00:47.647 [XNIO-1 task-1] yWu0eLVNSoupqu9Q90pUfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.647 [XNIO-1 task-1] yWu0eLVNSoupqu9Q90pUfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.647 [XNIO-1 task-1] yWu0eLVNSoupqu9Q90pUfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.649 [XNIO-1 task-1] yWu0eLVNSoupqu9Q90pUfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.650 [XNIO-1 task-1] yWu0eLVNSoupqu9Q90pUfg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.663 [XNIO-1 task-1] z3YV2uDkSK6S3ZVK1CAjCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.663 [XNIO-1 task-1] z3YV2uDkSK6S3ZVK1CAjCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.664 [XNIO-1 task-1] z3YV2uDkSK6S3ZVK1CAjCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.666 [XNIO-1 task-1] z3YV2uDkSK6S3ZVK1CAjCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.677 [XNIO-1 task-1] bC1FRO3NTdeik3PU2oMGqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.681 [XNIO-1 task-1] bC1FRO3NTdeik3PU2oMGqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.681 [XNIO-1 task-1] bC1FRO3NTdeik3PU2oMGqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.681 [XNIO-1 task-1] bC1FRO3NTdeik3PU2oMGqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.682 [XNIO-1 task-1] bC1FRO3NTdeik3PU2oMGqA DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", refreshToken) +07:00:47.686 [XNIO-1 task-1] bC1FRO3NTdeik3PU2oMGqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 is not found.","severity":"ERROR"} +07:00:47.693 [XNIO-1 task-1] -oF4lsn8SA2zmivUb88LFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.693 [XNIO-1 task-1] -oF4lsn8SA2zmivUb88LFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.693 [XNIO-1 task-1] -oF4lsn8SA2zmivUb88LFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.693 [XNIO-1 task-1] -oF4lsn8SA2zmivUb88LFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.694 [XNIO-1 task-1] -oF4lsn8SA2zmivUb88LFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.697 [XNIO-1 task-1] F49sdJoxTyyy0jRebevxXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f, base path is set to: null +07:00:47.698 [XNIO-1 task-1] F49sdJoxTyyy0jRebevxXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.698 [XNIO-1 task-1] F49sdJoxTyyy0jRebevxXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.698 [XNIO-1 task-1] F49sdJoxTyyy0jRebevxXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f, base path is set to: null +07:00:47.698 [XNIO-1 task-1] F49sdJoxTyyy0jRebevxXw DEBUG com.networknt.schema.TypeValidator debug - validate( "64f5a241-60df-4bb8-8732-675dc1fd058f", "64f5a241-60df-4bb8-8732-675dc1fd058f", refreshToken) +07:00:47.701 [XNIO-1 task-1] 2FR6j8pUTbSR0NG-BhmPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.702 [XNIO-1 task-1] 2FR6j8pUTbSR0NG-BhmPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.702 [XNIO-1 task-1] 2FR6j8pUTbSR0NG-BhmPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.702 [XNIO-1 task-1] 2FR6j8pUTbSR0NG-BhmPgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.702 [XNIO-1 task-1] 2FR6j8pUTbSR0NG-BhmPgA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.716 [XNIO-1 task-1] DBk4h4zsRZKhKITmh4jw4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.716 [XNIO-1 task-1] DBk4h4zsRZKhKITmh4jw4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.716 [XNIO-1 task-1] DBk4h4zsRZKhKITmh4jw4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.717 [XNIO-1 task-1] DBk4h4zsRZKhKITmh4jw4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.717 [XNIO-1 task-1] DBk4h4zsRZKhKITmh4jw4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 +07:00:47.724 [XNIO-1 task-1] 61vBkNhETsanBHf2dUN36g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.724 [XNIO-1 task-1] 61vBkNhETsanBHf2dUN36g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.724 [XNIO-1 task-1] 61vBkNhETsanBHf2dUN36g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.724 [XNIO-1 task-1] 61vBkNhETsanBHf2dUN36g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.725 [XNIO-1 task-1] 61vBkNhETsanBHf2dUN36g DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", refreshToken) +07:00:47.725 [XNIO-1 task-1] 61vBkNhETsanBHf2dUN36g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 is not found.","severity":"ERROR"} +07:00:47.730 [XNIO-1 task-1] h-wdGtBbQ96UBqH4pYy8ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f +07:00:47.730 [XNIO-1 task-1] h-wdGtBbQ96UBqH4pYy8ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.730 [XNIO-1 task-1] h-wdGtBbQ96UBqH4pYy8ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.730 [XNIO-1 task-1] h-wdGtBbQ96UBqH4pYy8ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/64f5a241-60df-4bb8-8732-675dc1fd058f +07:00:47.731 [XNIO-1 task-1] h-wdGtBbQ96UBqH4pYy8ag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 64f5a241-60df-4bb8-8732-675dc1fd058f +07:00:47.747 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2e411145-2f65-4eca-8b32-7430a42dc9ef +07:00:47.748 [XNIO-1 task-1] TkY39xH-SmK2_euacz7LZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.749 [XNIO-1 task-1] TkY39xH-SmK2_euacz7LZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.749 [XNIO-1 task-1] TkY39xH-SmK2_euacz7LZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.749 [XNIO-1 task-1] TkY39xH-SmK2_euacz7LZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.749 [XNIO-1 task-1] TkY39xH-SmK2_euacz7LZw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:47.761 [XNIO-1 task-1] 21jnmV7DRlu2t54BIGYWAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.761 [XNIO-1 task-1] 21jnmV7DRlu2t54BIGYWAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.761 [XNIO-1 task-1] 21jnmV7DRlu2t54BIGYWAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.762 [XNIO-1 task-1] 21jnmV7DRlu2t54BIGYWAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.763 [XNIO-1 task-1] 21jnmV7DRlu2t54BIGYWAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.772 [XNIO-1 task-1] 5wNMrKj2Ryyr_VDcS1uCqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:47.772 [XNIO-1 task-1] 5wNMrKj2Ryyr_VDcS1uCqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.772 [XNIO-1 task-1] 5wNMrKj2Ryyr_VDcS1uCqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.772 [XNIO-1 task-1] 5wNMrKj2Ryyr_VDcS1uCqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:47.773 [XNIO-1 task-1] 5wNMrKj2Ryyr_VDcS1uCqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:47.778 [XNIO-1 task-1] W1hQYU46RXaCdJXvp_jyIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee895ceb-b7c5-4983-9b40-2ca080d4eb70, base path is set to: null +07:00:47.778 [XNIO-1 task-1] W1hQYU46RXaCdJXvp_jyIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.778 [XNIO-1 task-1] W1hQYU46RXaCdJXvp_jyIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.778 [XNIO-1 task-1] W1hQYU46RXaCdJXvp_jyIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee895ceb-b7c5-4983-9b40-2ca080d4eb70, base path is set to: null +07:00:47.779 [XNIO-1 task-1] W1hQYU46RXaCdJXvp_jyIg DEBUG com.networknt.schema.TypeValidator debug - validate( "ee895ceb-b7c5-4983-9b40-2ca080d4eb70", "ee895ceb-b7c5-4983-9b40-2ca080d4eb70", refreshToken) +07:00:47.786 [XNIO-1 task-1] W1hQYU46RXaCdJXvp_jyIg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ee895ceb-b7c5-4983-9b40-2ca080d4eb70 is not found.","severity":"ERROR"} +07:00:47.791 [XNIO-1 task-1] 45t9YaI_QKWxruBWohUhug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.791 [XNIO-1 task-1] 45t9YaI_QKWxruBWohUhug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.791 [XNIO-1 task-1] 45t9YaI_QKWxruBWohUhug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.791 [XNIO-1 task-1] 45t9YaI_QKWxruBWohUhug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.807 [XNIO-1 task-1] _bueYGXVQCuEaKRF2UNCmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.808 [XNIO-1 task-1] _bueYGXVQCuEaKRF2UNCmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.808 [XNIO-1 task-1] _bueYGXVQCuEaKRF2UNCmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.808 [XNIO-1 task-1] _bueYGXVQCuEaKRF2UNCmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.809 [XNIO-1 task-1] _bueYGXVQCuEaKRF2UNCmw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:47.814 [XNIO-1 task-1] DGxSn5sESY2qhjmXppkwDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.814 [XNIO-1 task-1] DGxSn5sESY2qhjmXppkwDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.814 [XNIO-1 task-1] DGxSn5sESY2qhjmXppkwDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.815 [XNIO-1 task-1] DGxSn5sESY2qhjmXppkwDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.815 [XNIO-1 task-1] DGxSn5sESY2qhjmXppkwDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:47.825 [XNIO-1 task-1] mBBNq_D0TV-lnuqdlfFyLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.825 [XNIO-1 task-1] mBBNq_D0TV-lnuqdlfFyLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.825 [XNIO-1 task-1] mBBNq_D0TV-lnuqdlfFyLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.826 [XNIO-1 task-1] mBBNq_D0TV-lnuqdlfFyLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.827 [XNIO-1 task-1] mBBNq_D0TV-lnuqdlfFyLA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:47.830 [XNIO-1 task-1] mBBNq_D0TV-lnuqdlfFyLA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:47.834 [XNIO-1 task-1] EGAyOXmyRo219AJGfVrZcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.834 [XNIO-1 task-1] EGAyOXmyRo219AJGfVrZcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.834 [XNIO-1 task-1] EGAyOXmyRo219AJGfVrZcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.834 [XNIO-1 task-1] EGAyOXmyRo219AJGfVrZcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.841 [XNIO-1 task-1] -WHSfviESyG1QUId8UyG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.841 [XNIO-1 task-1] -WHSfviESyG1QUId8UyG8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.841 [XNIO-1 task-1] -WHSfviESyG1QUId8UyG8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.842 [XNIO-1 task-1] -WHSfviESyG1QUId8UyG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.842 [XNIO-1 task-1] -WHSfviESyG1QUId8UyG8g DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:47.842 [XNIO-1 task-1] -WHSfviESyG1QUId8UyG8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:47.848 [XNIO-1 task-1] JeAaMzovSYWXPx4wEaCpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.849 [XNIO-1 task-1] JeAaMzovSYWXPx4wEaCpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.849 [XNIO-1 task-1] JeAaMzovSYWXPx4wEaCpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.849 [XNIO-1 task-1] JeAaMzovSYWXPx4wEaCpRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.857 [XNIO-1 task-1] lb6DY8SNQF-Mwl9vdgnLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.857 [XNIO-1 task-1] lb6DY8SNQF-Mwl9vdgnLhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.858 [XNIO-1 task-1] lb6DY8SNQF-Mwl9vdgnLhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.858 [XNIO-1 task-1] lb6DY8SNQF-Mwl9vdgnLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:47.858 [XNIO-1 task-1] lb6DY8SNQF-Mwl9vdgnLhw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:47.858 [XNIO-1 task-1] lb6DY8SNQF-Mwl9vdgnLhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:47.861 [XNIO-1 task-1] z3A3j8gKSrqqVprZMD7cWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.862 [XNIO-1 task-1] z3A3j8gKSrqqVprZMD7cWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.862 [XNIO-1 task-1] z3A3j8gKSrqqVprZMD7cWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.862 [XNIO-1 task-1] z3A3j8gKSrqqVprZMD7cWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.873 [XNIO-1 task-1] bW8c_Pb9RCWe-qTKeR7XKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1be7e4fc-4c75-4465-9ec5-31f4b3a1139e, base path is set to: null +07:00:47.874 [XNIO-1 task-1] bW8c_Pb9RCWe-qTKeR7XKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.874 [XNIO-1 task-1] bW8c_Pb9RCWe-qTKeR7XKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.874 [XNIO-1 task-1] bW8c_Pb9RCWe-qTKeR7XKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1be7e4fc-4c75-4465-9ec5-31f4b3a1139e, base path is set to: null +07:00:47.875 [XNIO-1 task-1] bW8c_Pb9RCWe-qTKeR7XKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1be7e4fc-4c75-4465-9ec5-31f4b3a1139e", "1be7e4fc-4c75-4465-9ec5-31f4b3a1139e", refreshToken) +07:00:47.879 [XNIO-1 task-1] Y2gT7jUBS8ip5vt52G4ZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:47.879 [XNIO-1 task-1] Y2gT7jUBS8ip5vt52G4ZVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.879 [XNIO-1 task-1] Y2gT7jUBS8ip5vt52G4ZVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.879 [XNIO-1 task-1] Y2gT7jUBS8ip5vt52G4ZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:47.880 [XNIO-1 task-1] Y2gT7jUBS8ip5vt52G4ZVw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf3e000f-819c-41dc-89f6-25a87c108bb0", "bf3e000f-819c-41dc-89f6-25a87c108bb0", refreshToken) +07:00:47.893 [XNIO-1 task-1] uZ---vk5SuydzAg8jg1VFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.894 [XNIO-1 task-1] uZ---vk5SuydzAg8jg1VFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.894 [XNIO-1 task-1] uZ---vk5SuydzAg8jg1VFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.894 [XNIO-1 task-1] uZ---vk5SuydzAg8jg1VFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.894 [XNIO-1 task-1] uZ---vk5SuydzAg8jg1VFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.895 [XNIO-1 task-1] uZ---vk5SuydzAg8jg1VFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.896 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:986ff0d8 +07:00:47.909 [XNIO-1 task-1] 0SndjcWAQiSMc6aWhbpM2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.909 [XNIO-1 task-1] 0SndjcWAQiSMc6aWhbpM2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.909 [XNIO-1 task-1] 0SndjcWAQiSMc6aWhbpM2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.910 [XNIO-1 task-1] 0SndjcWAQiSMc6aWhbpM2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.910 [XNIO-1 task-1] 0SndjcWAQiSMc6aWhbpM2A DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", refreshToken) +07:00:47.912 [XNIO-1 task-1] 0SndjcWAQiSMc6aWhbpM2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 is not found.","severity":"ERROR"} +07:00:47.921 [XNIO-1 task-1] VQ5FVDr8RiOtngCjKewJvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.921 [XNIO-1 task-1] VQ5FVDr8RiOtngCjKewJvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.921 [XNIO-1 task-1] VQ5FVDr8RiOtngCjKewJvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.922 [XNIO-1 task-1] VQ5FVDr8RiOtngCjKewJvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.922 [XNIO-1 task-1] VQ5FVDr8RiOtngCjKewJvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.938 [XNIO-1 task-1] hMAgzNHCTqi3WcBXBpPh-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.938 [XNIO-1 task-1] hMAgzNHCTqi3WcBXBpPh-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.938 [XNIO-1 task-1] hMAgzNHCTqi3WcBXBpPh-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.938 [XNIO-1 task-1] hMAgzNHCTqi3WcBXBpPh-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.939 [XNIO-1 task-1] hMAgzNHCTqi3WcBXBpPh-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.946 [XNIO-1 task-1] 822gorZRTKiKfg5Wm9z8KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.946 [XNIO-1 task-1] 822gorZRTKiKfg5Wm9z8KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.946 [XNIO-1 task-1] 822gorZRTKiKfg5Wm9z8KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.947 [XNIO-1 task-1] 822gorZRTKiKfg5Wm9z8KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.947 [XNIO-1 task-1] 822gorZRTKiKfg5Wm9z8KA DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", refreshToken) +07:00:47.947 [XNIO-1 task-1] 822gorZRTKiKfg5Wm9z8KA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 is not found.","severity":"ERROR"} +07:00:47.953 [XNIO-1 task-1] 8yhJQ5ehRniabnP0ZyM-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:47.953 [XNIO-1 task-1] 8yhJQ5ehRniabnP0ZyM-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.953 [XNIO-1 task-1] 8yhJQ5ehRniabnP0ZyM-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.953 [XNIO-1 task-1] 8yhJQ5ehRniabnP0ZyM-kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:47.954 [XNIO-1 task-1] 8yhJQ5ehRniabnP0ZyM-kg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:47.960 [XNIO-1 task-1] p-MS3Qp9Qn-hoviVy0kfrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.961 [XNIO-1 task-1] p-MS3Qp9Qn-hoviVy0kfrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.961 [XNIO-1 task-1] p-MS3Qp9Qn-hoviVy0kfrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.961 [XNIO-1 task-1] p-MS3Qp9Qn-hoviVy0kfrw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.962 [XNIO-1 task-1] p-MS3Qp9Qn-hoviVy0kfrw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.970 [XNIO-1 task-1] JS-6ykNBT4WidRWhjyc-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.970 [XNIO-1 task-1] JS-6ykNBT4WidRWhjyc-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.970 [XNIO-1 task-1] JS-6ykNBT4WidRWhjyc-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.970 [XNIO-1 task-1] JS-6ykNBT4WidRWhjyc-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.971 [XNIO-1 task-1] JS-6ykNBT4WidRWhjyc-kQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 +07:00:47.973 [XNIO-1 task-1] JsfFg702SfW5X28Ehaj13Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.973 [XNIO-1 task-1] JsfFg702SfW5X28Ehaj13Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.974 [XNIO-1 task-1] JsfFg702SfW5X28Ehaj13Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:47.974 [XNIO-1 task-1] JsfFg702SfW5X28Ehaj13Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.974 [XNIO-1 task-1] JsfFg702SfW5X28Ehaj13Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:47.983 [XNIO-1 task-1] HZ8S9AgxRMyXofiOilZxhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:47.983 [XNIO-1 task-1] HZ8S9AgxRMyXofiOilZxhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:47.983 [XNIO-1 task-1] HZ8S9AgxRMyXofiOilZxhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:47.984 [XNIO-1 task-1] HZ8S9AgxRMyXofiOilZxhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:47.984 [XNIO-1 task-1] HZ8S9AgxRMyXofiOilZxhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:47.993 [XNIO-1 task-1] IbfHpCMJSk2QP4LUpX7W2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.993 [XNIO-1 task-1] IbfHpCMJSk2QP4LUpX7W2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:47.993 [XNIO-1 task-1] IbfHpCMJSk2QP4LUpX7W2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:47.993 [XNIO-1 task-1] IbfHpCMJSk2QP4LUpX7W2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:47.994 [XNIO-1 task-1] IbfHpCMJSk2QP4LUpX7W2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", refreshToken) +07:00:47.994 [XNIO-1 task-1] IbfHpCMJSk2QP4LUpX7W2Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 is not found.","severity":"ERROR"} +07:00:48.000 [XNIO-1 task-1] HNdIBCBVRauptWoZOLWNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.001 [XNIO-1 task-1] HNdIBCBVRauptWoZOLWNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.003 [XNIO-1 task-1] HNdIBCBVRauptWoZOLWNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.003 [XNIO-1 task-1] HNdIBCBVRauptWoZOLWNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.005 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:330d5c3d +07:00:48.006 [XNIO-1 task-1] HNdIBCBVRauptWoZOLWNvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.010 [XNIO-1 task-1] -nBg4_4ORBKPqrigXkSzQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:48.010 [XNIO-1 task-1] -nBg4_4ORBKPqrigXkSzQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.011 [XNIO-1 task-1] -nBg4_4ORBKPqrigXkSzQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.011 [XNIO-1 task-1] -nBg4_4ORBKPqrigXkSzQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6, base path is set to: null +07:00:48.011 [XNIO-1 task-1] -nBg4_4ORBKPqrigXkSzQg DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", "e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6", refreshToken) +07:00:48.011 [XNIO-1 task-1] -nBg4_4ORBKPqrigXkSzQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 is not found.","severity":"ERROR"} +07:00:48.017 [XNIO-1 task-1] bN_g2nNKSGaALf7jRFsg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.017 [XNIO-1 task-1] bN_g2nNKSGaALf7jRFsg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.018 [XNIO-1 task-1] bN_g2nNKSGaALf7jRFsg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.018 [XNIO-1 task-1] bN_g2nNKSGaALf7jRFsg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.018 [XNIO-1 task-1] bN_g2nNKSGaALf7jRFsg1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.022 [XNIO-1 task-1] FDx_c9NVQUaApNFNMoJmcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.023 [XNIO-1 task-1] FDx_c9NVQUaApNFNMoJmcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.023 [XNIO-1 task-1] FDx_c9NVQUaApNFNMoJmcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.023 [XNIO-1 task-1] FDx_c9NVQUaApNFNMoJmcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:48.023 [XNIO-1 task-1] FDx_c9NVQUaApNFNMoJmcw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:48.031 [XNIO-1 task-1] jTk2LUPcSCyLSHEEyFGdTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.031 [XNIO-1 task-1] jTk2LUPcSCyLSHEEyFGdTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.031 [XNIO-1 task-1] jTk2LUPcSCyLSHEEyFGdTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.032 [XNIO-1 task-1] jTk2LUPcSCyLSHEEyFGdTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.032 [XNIO-1 task-1] jTk2LUPcSCyLSHEEyFGdTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.036 [XNIO-1 task-1] LDGsysDzQl2Ult_m6ROz4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:48.037 [XNIO-1 task-1] LDGsysDzQl2Ult_m6ROz4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.037 [XNIO-1 task-1] LDGsysDzQl2Ult_m6ROz4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.037 [XNIO-1 task-1] LDGsysDzQl2Ult_m6ROz4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:48.037 [XNIO-1 task-1] LDGsysDzQl2Ult_m6ROz4w DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:48.040 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.041 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.045 [XNIO-1 task-1] h2gwKTUxQuyEJ2GWPW626Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1be7e4fc-4c75-4465-9ec5-31f4b3a1139e +07:00:48.045 [XNIO-1 task-1] h2gwKTUxQuyEJ2GWPW626Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.045 [XNIO-1 task-1] h2gwKTUxQuyEJ2GWPW626Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.045 [XNIO-1 task-1] h2gwKTUxQuyEJ2GWPW626Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1be7e4fc-4c75-4465-9ec5-31f4b3a1139e +07:00:48.046 [XNIO-1 task-1] h2gwKTUxQuyEJ2GWPW626Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1be7e4fc-4c75-4465-9ec5-31f4b3a1139e +07:00:48.061 [XNIO-1 task-1] fi3IUnsnT9qME6-A9YOkYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:48.061 [XNIO-1 task-1] fi3IUnsnT9qME6-A9YOkYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.061 [XNIO-1 task-1] fi3IUnsnT9qME6-A9YOkYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.061 [XNIO-1 task-1] fi3IUnsnT9qME6-A9YOkYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:48.061 [XNIO-1 task-1] fi3IUnsnT9qME6-A9YOkYw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf3e000f-819c-41dc-89f6-25a87c108bb0", "bf3e000f-819c-41dc-89f6-25a87c108bb0", refreshToken) +07:00:48.062 [XNIO-1 task-1] fi3IUnsnT9qME6-A9YOkYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bf3e000f-819c-41dc-89f6-25a87c108bb0 is not found.","severity":"ERROR"} +07:00:48.066 [XNIO-1 task-1] y9Pbo8EDQrWZ0gRaFNV5pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.066 [XNIO-1 task-1] y9Pbo8EDQrWZ0gRaFNV5pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.066 [XNIO-1 task-1] y9Pbo8EDQrWZ0gRaFNV5pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.066 [XNIO-1 task-1] y9Pbo8EDQrWZ0gRaFNV5pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.066 [XNIO-1 task-1] y9Pbo8EDQrWZ0gRaFNV5pQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.068 [XNIO-1 task-1] y9Pbo8EDQrWZ0gRaFNV5pQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 87ab06a8-a197-4116-9aa7-9cf7287146a3 is not found.","severity":"ERROR"} +07:00:48.080 [XNIO-1 task-1] UFcWsM5qRHaC5AF1x-huMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.081 [XNIO-1 task-1] UFcWsM5qRHaC5AF1x-huMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.081 [XNIO-1 task-1] UFcWsM5qRHaC5AF1x-huMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.081 [XNIO-1 task-1] UFcWsM5qRHaC5AF1x-huMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.081 [XNIO-1 task-1] UFcWsM5qRHaC5AF1x-huMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 87ab06a8-a197-4116-9aa7-9cf7287146a3 +07:00:48.083 [XNIO-1 task-1] UFcWsM5qRHaC5AF1x-huMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 87ab06a8-a197-4116-9aa7-9cf7287146a3 is not found.","severity":"ERROR"} +07:00:48.091 [XNIO-1 task-1] FGKoai5QTzeyx1Ow3FGXMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.091 [XNIO-1 task-1] FGKoai5QTzeyx1Ow3FGXMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.091 [XNIO-1 task-1] FGKoai5QTzeyx1Ow3FGXMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.092 [XNIO-1 task-1] FGKoai5QTzeyx1Ow3FGXMA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.113 [XNIO-1 task-1] ZjOVIrceQ9yFwhB7mzN6mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:48.113 [XNIO-1 task-1] ZjOVIrceQ9yFwhB7mzN6mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.113 [XNIO-1 task-1] ZjOVIrceQ9yFwhB7mzN6mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.113 [XNIO-1 task-1] ZjOVIrceQ9yFwhB7mzN6mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:48.113 [XNIO-1 task-1] ZjOVIrceQ9yFwhB7mzN6mw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf3e000f-819c-41dc-89f6-25a87c108bb0", "bf3e000f-819c-41dc-89f6-25a87c108bb0", refreshToken) +07:00:48.114 [XNIO-1 task-1] ZjOVIrceQ9yFwhB7mzN6mw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bf3e000f-819c-41dc-89f6-25a87c108bb0 is not found.","severity":"ERROR"} +07:00:48.118 [XNIO-1 task-1] Mm5X6eJhQueC46vZB0nmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.118 [XNIO-1 task-1] Mm5X6eJhQueC46vZB0nmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.118 [XNIO-1 task-1] Mm5X6eJhQueC46vZB0nmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.118 [XNIO-1 task-1] Mm5X6eJhQueC46vZB0nmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.118 [XNIO-1 task-1] Mm5X6eJhQueC46vZB0nmsA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.122 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:566996e0-211d-4ce9-a153-ca8ef7b291fb +07:00:48.127 [XNIO-1 task-1] S8smKvIRQJy8JKQ3CHOX-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.128 [XNIO-1 task-1] S8smKvIRQJy8JKQ3CHOX-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.128 [XNIO-1 task-1] S8smKvIRQJy8JKQ3CHOX-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.128 [XNIO-1 task-1] S8smKvIRQJy8JKQ3CHOX-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:48.128 [XNIO-1 task-1] S8smKvIRQJy8JKQ3CHOX-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:48.138 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.140 [XNIO-1 task-1] gBg4IwXgRli1xMxEeDSTeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.141 [XNIO-1 task-1] gBg4IwXgRli1xMxEeDSTeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.141 [XNIO-1 task-1] gBg4IwXgRli1xMxEeDSTeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.141 [XNIO-1 task-1] gBg4IwXgRli1xMxEeDSTeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.142 [XNIO-1 task-1] gBg4IwXgRli1xMxEeDSTeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:48.147 [XNIO-1 task-1] tsKaWpJ2TKanojsuVJL0XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:48.148 [XNIO-1 task-1] tsKaWpJ2TKanojsuVJL0XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.148 [XNIO-1 task-1] tsKaWpJ2TKanojsuVJL0XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.148 [XNIO-1 task-1] tsKaWpJ2TKanojsuVJL0XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:48.148 [XNIO-1 task-1] tsKaWpJ2TKanojsuVJL0XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:48.166 [XNIO-1 task-1] yr1SdGH9RFmBfMU76_U5rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:48.166 [XNIO-1 task-1] yr1SdGH9RFmBfMU76_U5rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.166 [XNIO-1 task-1] yr1SdGH9RFmBfMU76_U5rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.167 [XNIO-1 task-1] yr1SdGH9RFmBfMU76_U5rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf3e000f-819c-41dc-89f6-25a87c108bb0, base path is set to: null +07:00:48.167 [XNIO-1 task-1] yr1SdGH9RFmBfMU76_U5rA DEBUG com.networknt.schema.TypeValidator debug - validate( "bf3e000f-819c-41dc-89f6-25a87c108bb0", "bf3e000f-819c-41dc-89f6-25a87c108bb0", refreshToken) +07:00:48.167 [XNIO-1 task-1] yr1SdGH9RFmBfMU76_U5rA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bf3e000f-819c-41dc-89f6-25a87c108bb0 is not found.","severity":"ERROR"} +07:00:48.179 [XNIO-1 task-1] g0h-Ag2JR36PGtLj0_VqJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.179 [XNIO-1 task-1] g0h-Ag2JR36PGtLj0_VqJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.180 [XNIO-1 task-1] g0h-Ag2JR36PGtLj0_VqJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.180 [XNIO-1 task-1] g0h-Ag2JR36PGtLj0_VqJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.187 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:35a65e46-f57a-4402-bed2-2972db3b0fac +07:00:48.190 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4de56de9 +07:00:48.191 [XNIO-1 task-1] bZ0E0qAcSKiibfbUe6Xw1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.191 [XNIO-1 task-1] bZ0E0qAcSKiibfbUe6Xw1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.191 [XNIO-1 task-1] bZ0E0qAcSKiibfbUe6Xw1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.191 [XNIO-1 task-1] bZ0E0qAcSKiibfbUe6Xw1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.192 [XNIO-1 task-1] bZ0E0qAcSKiibfbUe6Xw1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.201 [XNIO-1 task-1] PDyD0nPBTGGz3Rgzy2dZFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.202 [XNIO-1 task-1] PDyD0nPBTGGz3Rgzy2dZFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.202 [XNIO-1 task-1] PDyD0nPBTGGz3Rgzy2dZFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.203 [XNIO-1 task-1] PDyD0nPBTGGz3Rgzy2dZFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.204 [XNIO-1 task-1] PDyD0nPBTGGz3Rgzy2dZFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f0095409-49fd-47eb-bc5a-0fad18c43b50", "f0095409-49fd-47eb-bc5a-0fad18c43b50", refreshToken) +07:00:48.216 [XNIO-1 task-1] 4t9ovs9sSGSo7vpAS8fi6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.216 [XNIO-1 task-1] 4t9ovs9sSGSo7vpAS8fi6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.216 [XNIO-1 task-1] 4t9ovs9sSGSo7vpAS8fi6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.217 [XNIO-1 task-1] 4t9ovs9sSGSo7vpAS8fi6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.217 [XNIO-1 task-1] 4t9ovs9sSGSo7vpAS8fi6g DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:48.217 [XNIO-1 task-1] 4t9ovs9sSGSo7vpAS8fi6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:48.225 [XNIO-1 task-1] _pmOVLB1ScqosaUR2BT10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.225 [XNIO-1 task-1] _pmOVLB1ScqosaUR2BT10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.226 [XNIO-1 task-1] _pmOVLB1ScqosaUR2BT10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.226 [XNIO-1 task-1] _pmOVLB1ScqosaUR2BT10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.226 [XNIO-1 task-1] _pmOVLB1ScqosaUR2BT10g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.235 [XNIO-1 task-1] ZZ63y-VbQ3ea_5rJqeXRSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:48.235 [XNIO-1 task-1] ZZ63y-VbQ3ea_5rJqeXRSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.235 [XNIO-1 task-1] ZZ63y-VbQ3ea_5rJqeXRSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.236 [XNIO-1 task-1] ZZ63y-VbQ3ea_5rJqeXRSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:48.236 [XNIO-1 task-1] ZZ63y-VbQ3ea_5rJqeXRSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:48.248 [XNIO-1 task-1] UsJbZpDISauhXuL1vtZIJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.248 [XNIO-1 task-1] UsJbZpDISauhXuL1vtZIJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.249 [XNIO-1 task-1] UsJbZpDISauhXuL1vtZIJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.249 [XNIO-1 task-1] UsJbZpDISauhXuL1vtZIJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.258 [XNIO-1 task-1] XkrkaJooRLmHm-HmHckskg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.258 [XNIO-1 task-1] XkrkaJooRLmHm-HmHckskg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.258 [XNIO-1 task-1] XkrkaJooRLmHm-HmHckskg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.258 [XNIO-1 task-1] XkrkaJooRLmHm-HmHckskg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.259 [XNIO-1 task-1] XkrkaJooRLmHm-HmHckskg DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:48.259 [XNIO-1 task-1] XkrkaJooRLmHm-HmHckskg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:48.262 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e2ccbac5 +07:00:48.267 [XNIO-1 task-1] aQNV4rG_QuW0k_trcxbXHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.267 [XNIO-1 task-1] aQNV4rG_QuW0k_trcxbXHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.267 [XNIO-1 task-1] aQNV4rG_QuW0k_trcxbXHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.268 [XNIO-1 task-1] aQNV4rG_QuW0k_trcxbXHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.270 [XNIO-1 task-1] aQNV4rG_QuW0k_trcxbXHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.280 [XNIO-1 task-1] rf09JOq4Tki0cX9NMN-TiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.280 [XNIO-1 task-1] rf09JOq4Tki0cX9NMN-TiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.280 [XNIO-1 task-1] rf09JOq4Tki0cX9NMN-TiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.280 [XNIO-1 task-1] rf09JOq4Tki0cX9NMN-TiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.289 [XNIO-1 task-1] 6_18JOMcTNeZ8Wu2JSWFGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.290 [XNIO-1 task-1] 6_18JOMcTNeZ8Wu2JSWFGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.290 [XNIO-1 task-1] 6_18JOMcTNeZ8Wu2JSWFGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.290 [XNIO-1 task-1] 6_18JOMcTNeZ8Wu2JSWFGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.290 [XNIO-1 task-1] 6_18JOMcTNeZ8Wu2JSWFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:48.291 [XNIO-1 task-1] 6_18JOMcTNeZ8Wu2JSWFGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:48.295 [XNIO-1 task-1] x2a_NbupQhmK5CyvHLOhLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.295 [XNIO-1 task-1] x2a_NbupQhmK5CyvHLOhLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.295 [XNIO-1 task-1] x2a_NbupQhmK5CyvHLOhLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.295 [XNIO-1 task-1] x2a_NbupQhmK5CyvHLOhLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.295 [XNIO-1 task-1] x2a_NbupQhmK5CyvHLOhLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.301 [XNIO-1 task-1] xZgIz8HZTL-I1AxtzJG5FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.302 [XNIO-1 task-1] xZgIz8HZTL-I1AxtzJG5FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.302 [XNIO-1 task-1] xZgIz8HZTL-I1AxtzJG5FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.302 [XNIO-1 task-1] xZgIz8HZTL-I1AxtzJG5FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.302 [XNIO-1 task-1] xZgIz8HZTL-I1AxtzJG5FA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:48.302 [XNIO-1 task-1] xZgIz8HZTL-I1AxtzJG5FA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:48.307 [XNIO-1 task-1] jJC3eqV0QX2L_ox7lAWdow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.307 [XNIO-1 task-1] jJC3eqV0QX2L_ox7lAWdow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.307 [XNIO-1 task-1] jJC3eqV0QX2L_ox7lAWdow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.308 [XNIO-1 task-1] jJC3eqV0QX2L_ox7lAWdow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.320 [XNIO-1 task-1] 43HePEy9RrWmJUPvRlKCEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b789711c-0463-4af6-853c-f6fc2658e71f, base path is set to: null +07:00:48.321 [XNIO-1 task-1] 43HePEy9RrWmJUPvRlKCEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.321 [XNIO-1 task-1] 43HePEy9RrWmJUPvRlKCEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.321 [XNIO-1 task-1] 43HePEy9RrWmJUPvRlKCEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b789711c-0463-4af6-853c-f6fc2658e71f, base path is set to: null +07:00:48.321 [XNIO-1 task-1] 43HePEy9RrWmJUPvRlKCEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b789711c-0463-4af6-853c-f6fc2658e71f", "b789711c-0463-4af6-853c-f6fc2658e71f", refreshToken) +07:00:48.331 [XNIO-1 task-1] 43HePEy9RrWmJUPvRlKCEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b789711c-0463-4af6-853c-f6fc2658e71f is not found.","severity":"ERROR"} +07:00:48.360 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.361 [XNIO-1 task-1] MQaA1Fa8SNmITtz_i-yXug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc, base path is set to: null +07:00:48.361 [XNIO-1 task-1] MQaA1Fa8SNmITtz_i-yXug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.361 [XNIO-1 task-1] MQaA1Fa8SNmITtz_i-yXug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.361 [XNIO-1 task-1] MQaA1Fa8SNmITtz_i-yXug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc, base path is set to: null +07:00:48.361 [XNIO-1 task-1] MQaA1Fa8SNmITtz_i-yXug DEBUG com.networknt.schema.TypeValidator debug - validate( "ff01404c-7c7c-4148-a287-42c55b8caafc", "ff01404c-7c7c-4148-a287-42c55b8caafc", refreshToken) +07:00:48.367 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.385 [XNIO-1 task-1] WJ_16OUgT5yRBc6lyoRQmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.385 [XNIO-1 task-1] WJ_16OUgT5yRBc6lyoRQmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.385 [XNIO-1 task-1] WJ_16OUgT5yRBc6lyoRQmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.386 [XNIO-1 task-1] WJ_16OUgT5yRBc6lyoRQmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.386 [XNIO-1 task-1] WJ_16OUgT5yRBc6lyoRQmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.387 [XNIO-1 task-1] WJ_16OUgT5yRBc6lyoRQmQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ff01404c-7c7c-4148-a287-42c55b8caafc is not found.","severity":"ERROR"} +07:00:48.393 [XNIO-1 task-1] oTcuC5HZQe-B-S-jZvCDmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d8996987-d447-4728-9513-b00e9aafeaf3 +07:00:48.393 [XNIO-1 task-1] oTcuC5HZQe-B-S-jZvCDmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.393 [XNIO-1 task-1] oTcuC5HZQe-B-S-jZvCDmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.393 [XNIO-1 task-1] oTcuC5HZQe-B-S-jZvCDmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d8996987-d447-4728-9513-b00e9aafeaf3 +07:00:48.394 [XNIO-1 task-1] oTcuC5HZQe-B-S-jZvCDmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d8996987-d447-4728-9513-b00e9aafeaf3 +07:00:48.407 [XNIO-1 task-1] p-B5Y5i8QYeL54uH3UtPnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.407 [XNIO-1 task-1] p-B5Y5i8QYeL54uH3UtPnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.407 [XNIO-1 task-1] p-B5Y5i8QYeL54uH3UtPnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.408 [XNIO-1 task-1] p-B5Y5i8QYeL54uH3UtPnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.408 [XNIO-1 task-1] p-B5Y5i8QYeL54uH3UtPnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.409 [XNIO-1 task-1] p-B5Y5i8QYeL54uH3UtPnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ff01404c-7c7c-4148-a287-42c55b8caafc is not found.","severity":"ERROR"} +07:00:48.413 [XNIO-1 task-1] x3gm0gDSTJWzgf8ta_lTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d8996987-d447-4728-9513-b00e9aafeaf3 +07:00:48.413 [XNIO-1 task-1] x3gm0gDSTJWzgf8ta_lTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.413 [XNIO-1 task-1] x3gm0gDSTJWzgf8ta_lTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.413 [XNIO-1 task-1] x3gm0gDSTJWzgf8ta_lTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d8996987-d447-4728-9513-b00e9aafeaf3 +07:00:48.414 [XNIO-1 task-1] x3gm0gDSTJWzgf8ta_lTYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d8996987-d447-4728-9513-b00e9aafeaf3 +07:00:48.421 [XNIO-1 task-1] D3rnWGAGRp6heMrmFobYaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc, base path is set to: null +07:00:48.421 [XNIO-1 task-1] D3rnWGAGRp6heMrmFobYaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.421 [XNIO-1 task-1] D3rnWGAGRp6heMrmFobYaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.421 [XNIO-1 task-1] D3rnWGAGRp6heMrmFobYaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc, base path is set to: null +07:00:48.421 [XNIO-1 task-1] D3rnWGAGRp6heMrmFobYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "ff01404c-7c7c-4148-a287-42c55b8caafc", "ff01404c-7c7c-4148-a287-42c55b8caafc", refreshToken) +07:00:48.422 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.428 [XNIO-1 task-1] DiPin80kQb-buShkzSM2MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d8996987-d447-4728-9513-b00e9aafeaf3, base path is set to: null +07:00:48.428 [XNIO-1 task-1] DiPin80kQb-buShkzSM2MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.428 [XNIO-1 task-1] DiPin80kQb-buShkzSM2MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.428 [XNIO-1 task-1] DiPin80kQb-buShkzSM2MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d8996987-d447-4728-9513-b00e9aafeaf3, base path is set to: null +07:00:48.429 [XNIO-1 task-1] DiPin80kQb-buShkzSM2MA DEBUG com.networknt.schema.TypeValidator debug - validate( "d8996987-d447-4728-9513-b00e9aafeaf3", "d8996987-d447-4728-9513-b00e9aafeaf3", refreshToken) +07:00:48.429 [XNIO-1 task-1] DiPin80kQb-buShkzSM2MA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d8996987-d447-4728-9513-b00e9aafeaf3 is not found.","severity":"ERROR"} +07:00:48.433 [XNIO-1 task-1] fUE4shgqSfS4edulN6J7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.434 [XNIO-1 task-1] fUE4shgqSfS4edulN6J7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.435 [XNIO-1 task-1] fUE4shgqSfS4edulN6J7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.435 [XNIO-1 task-1] fUE4shgqSfS4edulN6J7wA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.445 [XNIO-1 task-1] R_ygj0o5TyaYliQZeO4ymQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc, base path is set to: null +07:00:48.446 [XNIO-1 task-1] R_ygj0o5TyaYliQZeO4ymQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.446 [XNIO-1 task-1] R_ygj0o5TyaYliQZeO4ymQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.446 [XNIO-1 task-1] R_ygj0o5TyaYliQZeO4ymQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ff01404c-7c7c-4148-a287-42c55b8caafc, base path is set to: null +07:00:48.446 [XNIO-1 task-1] R_ygj0o5TyaYliQZeO4ymQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ff01404c-7c7c-4148-a287-42c55b8caafc", "ff01404c-7c7c-4148-a287-42c55b8caafc", refreshToken) +07:00:48.447 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ff01404c-7c7c-4148-a287-42c55b8caafc +07:00:48.451 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9de28e91-586e-4a68-8941-307a5d07e15f +07:00:48.452 [XNIO-1 task-1] _DR1Ki4FR62EgRTJHKzO2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.453 [XNIO-1 task-1] _DR1Ki4FR62EgRTJHKzO2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.453 [XNIO-1 task-1] _DR1Ki4FR62EgRTJHKzO2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.453 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9de28e91-586e-4a68-8941-307a5d07e15f +07:00:48.453 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9de28e91-586e-4a68-8941-307a5d07e15f +07:00:48.463 [XNIO-1 task-1] lqDGTgW_TcemjuKdaSmVUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.464 [XNIO-1 task-1] lqDGTgW_TcemjuKdaSmVUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.464 [XNIO-1 task-1] lqDGTgW_TcemjuKdaSmVUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.464 [XNIO-1 task-1] lqDGTgW_TcemjuKdaSmVUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.464 [XNIO-1 task-1] lqDGTgW_TcemjuKdaSmVUA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:48.465 [XNIO-1 task-1] lqDGTgW_TcemjuKdaSmVUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:48.468 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:369b420c-daca-4aa9-b019-6bd41fa57c17 +07:00:48.469 [XNIO-1 task-1] 3UqJB0h1TRC0WPi99yG5NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.470 [XNIO-1 task-1] 3UqJB0h1TRC0WPi99yG5NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.470 [XNIO-1 task-1] 3UqJB0h1TRC0WPi99yG5NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.470 [XNIO-1 task-1] 3UqJB0h1TRC0WPi99yG5NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.471 [XNIO-1 task-1] 3UqJB0h1TRC0WPi99yG5NA DEBUG com.networknt.schema.TypeValidator debug - validate( "f0095409-49fd-47eb-bc5a-0fad18c43b50", "f0095409-49fd-47eb-bc5a-0fad18c43b50", refreshToken) +07:00:48.471 [XNIO-1 task-1] 3UqJB0h1TRC0WPi99yG5NA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f0095409-49fd-47eb-bc5a-0fad18c43b50 is not found.","severity":"ERROR"} +07:00:48.475 [XNIO-1 task-1] 2B0MB8XSRnSYDSKYHHMhLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.476 [XNIO-1 task-1] 2B0MB8XSRnSYDSKYHHMhLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.476 [XNIO-1 task-1] 2B0MB8XSRnSYDSKYHHMhLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.476 [XNIO-1 task-1] 2B0MB8XSRnSYDSKYHHMhLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.476 [XNIO-1 task-1] 2B0MB8XSRnSYDSKYHHMhLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.484 [XNIO-1 task-1] Ihm1NCoiQduoQ1NiaQiIBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.484 [XNIO-1 task-1] Ihm1NCoiQduoQ1NiaQiIBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.484 [XNIO-1 task-1] Ihm1NCoiQduoQ1NiaQiIBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.485 [XNIO-1 task-1] Ihm1NCoiQduoQ1NiaQiIBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f, base path is set to: null +07:00:48.485 [XNIO-1 task-1] Ihm1NCoiQduoQ1NiaQiIBg DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4a1287-15fd-488f-953d-55aa69c8358f", "5c4a1287-15fd-488f-953d-55aa69c8358f", refreshToken) +07:00:48.485 [XNIO-1 task-1] Ihm1NCoiQduoQ1NiaQiIBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:48.489 [XNIO-1 task-1] gvYaECL-TgO2H1jsQTUG3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.490 [XNIO-1 task-1] gvYaECL-TgO2H1jsQTUG3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.490 [XNIO-1 task-1] gvYaECL-TgO2H1jsQTUG3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.490 [XNIO-1 task-1] gvYaECL-TgO2H1jsQTUG3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.490 [XNIO-1 task-1] gvYaECL-TgO2H1jsQTUG3A DEBUG com.networknt.schema.TypeValidator debug - validate( "f0095409-49fd-47eb-bc5a-0fad18c43b50", "f0095409-49fd-47eb-bc5a-0fad18c43b50", refreshToken) +07:00:48.491 [XNIO-1 task-1] gvYaECL-TgO2H1jsQTUG3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f0095409-49fd-47eb-bc5a-0fad18c43b50 is not found.","severity":"ERROR"} +07:00:48.497 [XNIO-1 task-1] kFa6mVahRIyHxoyihMYiVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.498 [XNIO-1 task-1] kFa6mVahRIyHxoyihMYiVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.498 [XNIO-1 task-1] kFa6mVahRIyHxoyihMYiVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.498 [XNIO-1 task-1] kFa6mVahRIyHxoyihMYiVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.499 [XNIO-1 task-1] kFa6mVahRIyHxoyihMYiVw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.500 [XNIO-1 task-1] kFa6mVahRIyHxoyihMYiVw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.508 [XNIO-1 task-1] XIG21dmDRC6V0QCmQt8aqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.508 [XNIO-1 task-1] XIG21dmDRC6V0QCmQt8aqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.508 [XNIO-1 task-1] XIG21dmDRC6V0QCmQt8aqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.508 [XNIO-1 task-1] XIG21dmDRC6V0QCmQt8aqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.508 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e2ccbac5 +07:00:48.509 [XNIO-1 task-1] XIG21dmDRC6V0QCmQt8aqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} +07:00:48.512 [XNIO-1 task-1] ep0wdrUGT4eixCL4he0FKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.512 [XNIO-1 task-1] ep0wdrUGT4eixCL4he0FKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.512 [XNIO-1 task-1] ep0wdrUGT4eixCL4he0FKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.512 [XNIO-1 task-1] ep0wdrUGT4eixCL4he0FKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.515 [XNIO-1 task-1] ep0wdrUGT4eixCL4he0FKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.525 [XNIO-1 task-1] k2BuvLkoQx2ssA7653Phcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31, base path is set to: null +07:00:48.525 [XNIO-1 task-1] k2BuvLkoQx2ssA7653Phcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.525 [XNIO-1 task-1] k2BuvLkoQx2ssA7653Phcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.525 [XNIO-1 task-1] k2BuvLkoQx2ssA7653Phcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31, base path is set to: null +07:00:48.525 [XNIO-1 task-1] k2BuvLkoQx2ssA7653Phcg DEBUG com.networknt.schema.TypeValidator debug - validate( "184464a2-4d20-4b98-a230-d18a0ed93e31", "184464a2-4d20-4b98-a230-d18a0ed93e31", refreshToken) +07:00:48.526 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.536 [XNIO-1 task-1] mz_u6O5OTpWKm2EgtCYySg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.536 [XNIO-1 task-1] mz_u6O5OTpWKm2EgtCYySg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.536 [XNIO-1 task-1] mz_u6O5OTpWKm2EgtCYySg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.537 [XNIO-1 task-1] mz_u6O5OTpWKm2EgtCYySg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.537 [XNIO-1 task-1] mz_u6O5OTpWKm2EgtCYySg DEBUG com.networknt.schema.TypeValidator debug - validate( "f0095409-49fd-47eb-bc5a-0fad18c43b50", "f0095409-49fd-47eb-bc5a-0fad18c43b50", refreshToken) +07:00:48.537 [XNIO-1 task-1] mz_u6O5OTpWKm2EgtCYySg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f0095409-49fd-47eb-bc5a-0fad18c43b50 is not found.","severity":"ERROR"} +07:00:48.542 [XNIO-1 task-1] 16UfS2l_RuGK6RRwrE5H9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.542 [XNIO-1 task-1] 16UfS2l_RuGK6RRwrE5H9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.542 [XNIO-1 task-1] 16UfS2l_RuGK6RRwrE5H9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.542 [XNIO-1 task-1] 16UfS2l_RuGK6RRwrE5H9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.542 [XNIO-1 task-1] 16UfS2l_RuGK6RRwrE5H9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.547 [XNIO-1 task-1] 16UfS2l_RuGK6RRwrE5H9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.553 [XNIO-1 task-1] 6GxXDLeFRsilSxUQl9ctNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.553 [XNIO-1 task-1] 6GxXDLeFRsilSxUQl9ctNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.553 [XNIO-1 task-1] 6GxXDLeFRsilSxUQl9ctNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.553 [XNIO-1 task-1] 6GxXDLeFRsilSxUQl9ctNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.554 [XNIO-1 task-1] 6GxXDLeFRsilSxUQl9ctNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f0095409-49fd-47eb-bc5a-0fad18c43b50 +07:00:48.556 [XNIO-1 task-1] H8DDiD2gSnaFlSvv9jcpeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.557 [XNIO-1 task-1] H8DDiD2gSnaFlSvv9jcpeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.557 [XNIO-1 task-1] H8DDiD2gSnaFlSvv9jcpeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.557 [XNIO-1 task-1] H8DDiD2gSnaFlSvv9jcpeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f0095409-49fd-47eb-bc5a-0fad18c43b50, base path is set to: null +07:00:48.557 [XNIO-1 task-1] H8DDiD2gSnaFlSvv9jcpeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f0095409-49fd-47eb-bc5a-0fad18c43b50", "f0095409-49fd-47eb-bc5a-0fad18c43b50", refreshToken) +07:00:48.557 [XNIO-1 task-1] H8DDiD2gSnaFlSvv9jcpeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f0095409-49fd-47eb-bc5a-0fad18c43b50 is not found.","severity":"ERROR"} +07:00:48.561 [XNIO-1 task-1] NBso8ZE6RpW8RZcfDUcfoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f +07:00:48.561 [XNIO-1 task-1] NBso8ZE6RpW8RZcfDUcfoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.561 [XNIO-1 task-1] NBso8ZE6RpW8RZcfDUcfoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.561 [XNIO-1 task-1] NBso8ZE6RpW8RZcfDUcfoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f +07:00:48.565 [XNIO-1 task-1] NBso8ZE6RpW8RZcfDUcfoA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = beb2faa7-2096-411e-8f29-aec58cef178f +07:00:48.569 [XNIO-1 task-1] nNYFbxZuQo6RAa0rKIgDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.569 [XNIO-1 task-1] nNYFbxZuQo6RAa0rKIgDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.569 [XNIO-1 task-1] nNYFbxZuQo6RAa0rKIgDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.570 [XNIO-1 task-1] nNYFbxZuQo6RAa0rKIgDwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.576 [XNIO-1 task-1] di4PHBDzTmGQ0qmb7g1rvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f, base path is set to: null +07:00:48.576 [XNIO-1 task-1] di4PHBDzTmGQ0qmb7g1rvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.576 [XNIO-1 task-1] di4PHBDzTmGQ0qmb7g1rvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.577 [XNIO-1 task-1] di4PHBDzTmGQ0qmb7g1rvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f, base path is set to: null +07:00:48.577 [XNIO-1 task-1] di4PHBDzTmGQ0qmb7g1rvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "beb2faa7-2096-411e-8f29-aec58cef178f", "beb2faa7-2096-411e-8f29-aec58cef178f", refreshToken) +07:00:48.595 [XNIO-1 task-1] JWEp1sYvTTub1byv7wpxAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.595 [XNIO-1 task-1] JWEp1sYvTTub1byv7wpxAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.596 [XNIO-1 task-1] JWEp1sYvTTub1byv7wpxAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.596 [XNIO-1 task-1] JWEp1sYvTTub1byv7wpxAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:48.596 [XNIO-1 task-1] JWEp1sYvTTub1byv7wpxAw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:48.612 [XNIO-1 task-1] 5lXiCKuqTjmW_0PXUeh-hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.612 [XNIO-1 task-1] 5lXiCKuqTjmW_0PXUeh-hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.612 [XNIO-1 task-1] 5lXiCKuqTjmW_0PXUeh-hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.614 [XNIO-1 task-1] 5lXiCKuqTjmW_0PXUeh-hA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.622 [XNIO-1 task-1] 2U7DEKRHTaSML1BwGnnb8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f, base path is set to: null +07:00:48.622 [XNIO-1 task-1] 2U7DEKRHTaSML1BwGnnb8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.622 [XNIO-1 task-1] 2U7DEKRHTaSML1BwGnnb8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.623 [XNIO-1 task-1] 2U7DEKRHTaSML1BwGnnb8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f, base path is set to: null +07:00:48.623 [XNIO-1 task-1] 2U7DEKRHTaSML1BwGnnb8g DEBUG com.networknt.schema.TypeValidator debug - validate( "beb2faa7-2096-411e-8f29-aec58cef178f", "beb2faa7-2096-411e-8f29-aec58cef178f", refreshToken) +07:00:48.625 [XNIO-1 task-1] 2U7DEKRHTaSML1BwGnnb8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token beb2faa7-2096-411e-8f29-aec58cef178f is not found.","severity":"ERROR"} +07:00:48.628 [XNIO-1 task-1] b2G_gDWHQ0mFypMBxUXrFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.628 [XNIO-1 task-1] b2G_gDWHQ0mFypMBxUXrFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.628 [XNIO-1 task-1] b2G_gDWHQ0mFypMBxUXrFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.629 [XNIO-1 task-1] b2G_gDWHQ0mFypMBxUXrFw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.638 [XNIO-1 task-1] nS8btNKOQ1mrtHWnsZ6sdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.638 [XNIO-1 task-1] nS8btNKOQ1mrtHWnsZ6sdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.639 [XNIO-1 task-1] nS8btNKOQ1mrtHWnsZ6sdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.639 [XNIO-1 task-1] nS8btNKOQ1mrtHWnsZ6sdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:48.639 [XNIO-1 task-1] nS8btNKOQ1mrtHWnsZ6sdw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:48.648 [XNIO-1 task-1] Paq9cpp3Q5iW_P_lSKWKfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.648 [XNIO-1 task-1] Paq9cpp3Q5iW_P_lSKWKfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.648 [XNIO-1 task-1] Paq9cpp3Q5iW_P_lSKWKfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.648 [XNIO-1 task-1] Paq9cpp3Q5iW_P_lSKWKfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.648 [XNIO-1 task-1] Paq9cpp3Q5iW_P_lSKWKfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.650 [XNIO-1 task-1] Paq9cpp3Q5iW_P_lSKWKfQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.658 [XNIO-1 task-1] JYk9IdlXTYegQHOayJaOlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.658 [XNIO-1 task-1] JYk9IdlXTYegQHOayJaOlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.658 [XNIO-1 task-1] JYk9IdlXTYegQHOayJaOlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.659 [XNIO-1 task-1] JYk9IdlXTYegQHOayJaOlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.670 [XNIO-1 task-1] 9WsJd7gXTnO42WcnZGa0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f, base path is set to: null +07:00:48.670 [XNIO-1 task-1] 9WsJd7gXTnO42WcnZGa0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.670 [XNIO-1 task-1] 9WsJd7gXTnO42WcnZGa0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.671 [XNIO-1 task-1] 9WsJd7gXTnO42WcnZGa0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/beb2faa7-2096-411e-8f29-aec58cef178f, base path is set to: null +07:00:48.671 [XNIO-1 task-1] 9WsJd7gXTnO42WcnZGa0ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "beb2faa7-2096-411e-8f29-aec58cef178f", "beb2faa7-2096-411e-8f29-aec58cef178f", refreshToken) +07:00:48.671 [XNIO-1 task-1] 9WsJd7gXTnO42WcnZGa0ZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token beb2faa7-2096-411e-8f29-aec58cef178f is not found.","severity":"ERROR"} +07:00:48.674 [XNIO-1 task-1] eauHXaHPTVG3sSlYzD7rng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.674 [XNIO-1 task-1] eauHXaHPTVG3sSlYzD7rng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.674 [XNIO-1 task-1] eauHXaHPTVG3sSlYzD7rng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.675 [XNIO-1 task-1] eauHXaHPTVG3sSlYzD7rng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.677 [XNIO-1 task-1] eauHXaHPTVG3sSlYzD7rng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.678 [XNIO-1 task-1] eauHXaHPTVG3sSlYzD7rng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.686 [XNIO-1 task-1] ssJHhaYtQL-HDH56NQbnSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.686 [XNIO-1 task-1] ssJHhaYtQL-HDH56NQbnSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.692 [XNIO-1 task-1] ssJHhaYtQL-HDH56NQbnSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.693 [XNIO-1 task-1] ssJHhaYtQL-HDH56NQbnSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.694 [XNIO-1 task-1] ssJHhaYtQL-HDH56NQbnSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.703 [XNIO-1 task-1] ssJHhaYtQL-HDH56NQbnSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.706 [XNIO-1 task-1] D_fyzGRSRp2Ts5_PTct6ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.707 [XNIO-1 task-1] D_fyzGRSRp2Ts5_PTct6ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.707 [XNIO-1 task-1] D_fyzGRSRp2Ts5_PTct6ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.707 [XNIO-1 task-1] D_fyzGRSRp2Ts5_PTct6ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.708 [XNIO-1 task-1] D_fyzGRSRp2Ts5_PTct6ZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.710 [XNIO-1 task-1] D_fyzGRSRp2Ts5_PTct6ZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.713 [XNIO-1 task-1] ACN0nPmmTvSM8x-pRJdWHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.713 [XNIO-1 task-1] ACN0nPmmTvSM8x-pRJdWHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.713 [XNIO-1 task-1] ACN0nPmmTvSM8x-pRJdWHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.715 [XNIO-1 task-1] ACN0nPmmTvSM8x-pRJdWHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.715 [XNIO-1 task-1] ACN0nPmmTvSM8x-pRJdWHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.718 [XNIO-1 task-1] ACN0nPmmTvSM8x-pRJdWHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.728 [XNIO-1 task-1] UUeid_QMRL-63Tjgy0qvhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99a1a5f3-e024-4618-a565-5902ef05ee1d, base path is set to: null +07:00:48.729 [XNIO-1 task-1] UUeid_QMRL-63Tjgy0qvhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.729 [XNIO-1 task-1] UUeid_QMRL-63Tjgy0qvhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.731 [XNIO-1 task-1] UUeid_QMRL-63Tjgy0qvhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99a1a5f3-e024-4618-a565-5902ef05ee1d, base path is set to: null +07:00:48.733 [XNIO-1 task-1] UUeid_QMRL-63Tjgy0qvhg DEBUG com.networknt.schema.TypeValidator debug - validate( "99a1a5f3-e024-4618-a565-5902ef05ee1d", "99a1a5f3-e024-4618-a565-5902ef05ee1d", refreshToken) +07:00:48.745 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa2d756 +07:00:48.750 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa2d756 +07:00:48.751 [XNIO-1 task-1] NEFLPmgrQ7edoh3rMwhvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.751 [XNIO-1 task-1] NEFLPmgrQ7edoh3rMwhvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.751 [XNIO-1 task-1] NEFLPmgrQ7edoh3rMwhvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.752 [XNIO-1 task-1] NEFLPmgrQ7edoh3rMwhvfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.758 [XNIO-1 task-1] RGiG5Nj6QuafnNRgiYwaPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99a1a5f3-e024-4618-a565-5902ef05ee1d, base path is set to: null +07:00:48.775 [XNIO-1 task-1] RGiG5Nj6QuafnNRgiYwaPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.776 [XNIO-1 task-1] RGiG5Nj6QuafnNRgiYwaPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.776 [XNIO-1 task-1] RGiG5Nj6QuafnNRgiYwaPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99a1a5f3-e024-4618-a565-5902ef05ee1d, base path is set to: null +07:00:48.777 [XNIO-1 task-1] RGiG5Nj6QuafnNRgiYwaPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "99a1a5f3-e024-4618-a565-5902ef05ee1d", "99a1a5f3-e024-4618-a565-5902ef05ee1d", refreshToken) +07:00:48.782 [XNIO-1 task-1] RGiG5Nj6QuafnNRgiYwaPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 99a1a5f3-e024-4618-a565-5902ef05ee1d is not found.","severity":"ERROR"} +07:00:48.791 [XNIO-1 task-1] mL-TTW-MSNuwUy18w0QTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.791 [XNIO-1 task-1] mL-TTW-MSNuwUy18w0QTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.792 [XNIO-1 task-1] mL-TTW-MSNuwUy18w0QTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.792 [XNIO-1 task-1] mL-TTW-MSNuwUy18w0QTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.792 [XNIO-1 task-1] mL-TTW-MSNuwUy18w0QTjw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.797 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9c38bfba +07:00:48.798 [XNIO-1 task-1] bEhhKzklRKuSxwvmO0-Uww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.799 [XNIO-1 task-1] bEhhKzklRKuSxwvmO0-Uww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.799 [XNIO-1 task-1] bEhhKzklRKuSxwvmO0-Uww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.799 [XNIO-1 task-1] bEhhKzklRKuSxwvmO0-Uww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.802 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9c38bfba +07:00:48.804 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c2104234-969d-42d3-881e-d65aaa1204bd +07:00:48.809 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c2104234-969d-42d3-881e-d65aaa1204bd +07:00:48.827 [XNIO-1 task-1] -3U5VRsqSrGNtucBxsVLIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:48.827 [XNIO-1 task-1] -3U5VRsqSrGNtucBxsVLIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.827 [XNIO-1 task-1] -3U5VRsqSrGNtucBxsVLIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.827 [XNIO-1 task-1] -3U5VRsqSrGNtucBxsVLIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:48.827 [XNIO-1 task-1] -3U5VRsqSrGNtucBxsVLIg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:48.835 [XNIO-1 task-1] eUdZ6MbbTTG0x3K0EOUznQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.835 [XNIO-1 task-1] eUdZ6MbbTTG0x3K0EOUznQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.835 [XNIO-1 task-1] eUdZ6MbbTTG0x3K0EOUznQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.835 [XNIO-1 task-1] eUdZ6MbbTTG0x3K0EOUznQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.835 [XNIO-1 task-1] eUdZ6MbbTTG0x3K0EOUznQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:48.837 [XNIO-1 task-1] eUdZ6MbbTTG0x3K0EOUznQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:48.846 [XNIO-1 task-1] BuKZM2KHRLewHHXNWG9a_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.846 [XNIO-1 task-1] BuKZM2KHRLewHHXNWG9a_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.846 [XNIO-1 task-1] BuKZM2KHRLewHHXNWG9a_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.847 [XNIO-1 task-1] BuKZM2KHRLewHHXNWG9a_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.855 [XNIO-1 task-1] yipYhkSDQWW1RW0Dke9-AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:48.855 [XNIO-1 task-1] yipYhkSDQWW1RW0Dke9-AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.855 [XNIO-1 task-1] yipYhkSDQWW1RW0Dke9-AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.855 [XNIO-1 task-1] yipYhkSDQWW1RW0Dke9-AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:48.856 [XNIO-1 task-1] yipYhkSDQWW1RW0Dke9-AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:48.859 [XNIO-1 task-1] yipYhkSDQWW1RW0Dke9-AQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:48.868 [XNIO-1 task-1] V1953GhOSi2Coe8yUyzYsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.868 [XNIO-1 task-1] V1953GhOSi2Coe8yUyzYsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.868 [XNIO-1 task-1] V1953GhOSi2Coe8yUyzYsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.868 [XNIO-1 task-1] V1953GhOSi2Coe8yUyzYsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.868 [XNIO-1 task-1] V1953GhOSi2Coe8yUyzYsg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:48.875 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2460d480-f766-4fb0-9a55-251770333ea9 +07:00:48.877 [XNIO-1 task-1] Knm7vdNPR029EezRUOnRkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:48.877 [XNIO-1 task-1] Knm7vdNPR029EezRUOnRkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.877 [XNIO-1 task-1] Knm7vdNPR029EezRUOnRkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.877 [XNIO-1 task-1] Knm7vdNPR029EezRUOnRkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:48.878 [XNIO-1 task-1] Knm7vdNPR029EezRUOnRkA DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:48.893 [XNIO-1 task-1] fY6iWtxBS364C_4jRo0Elw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.893 [XNIO-1 task-1] fY6iWtxBS364C_4jRo0Elw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.893 [XNIO-1 task-1] fY6iWtxBS364C_4jRo0Elw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.894 [XNIO-1 task-1] fY6iWtxBS364C_4jRo0Elw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.894 [XNIO-1 task-1] fY6iWtxBS364C_4jRo0Elw DEBUG com.networknt.schema.TypeValidator debug - validate( "4317da6d-60dd-453b-9209-ab10eda9f64a", "4317da6d-60dd-453b-9209-ab10eda9f64a", refreshToken) +07:00:48.900 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2460d480-f766-4fb0-9a55-251770333ea9 +07:00:48.901 [XNIO-1 task-1] I9dK72PLQgKx76Zu0-HQAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:48.901 [XNIO-1 task-1] I9dK72PLQgKx76Zu0-HQAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.902 [XNIO-1 task-1] I9dK72PLQgKx76Zu0-HQAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.902 [XNIO-1 task-1] I9dK72PLQgKx76Zu0-HQAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:48.904 [XNIO-1 task-1] I9dK72PLQgKx76Zu0-HQAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:48.913 [XNIO-1 task-1] UTt15zBiR_61m4AHvBh8Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.913 [XNIO-1 task-1] UTt15zBiR_61m4AHvBh8Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.913 [XNIO-1 task-1] UTt15zBiR_61m4AHvBh8Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.913 [XNIO-1 task-1] UTt15zBiR_61m4AHvBh8Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.927 [XNIO-1 task-1] 4J5023H3Sc-QmCcAYk9Pgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.928 [XNIO-1 task-1] 4J5023H3Sc-QmCcAYk9Pgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.928 [XNIO-1 task-1] 4J5023H3Sc-QmCcAYk9Pgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.929 [XNIO-1 task-1] 4J5023H3Sc-QmCcAYk9Pgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.930 [XNIO-1 task-1] 4J5023H3Sc-QmCcAYk9Pgw DEBUG com.networknt.schema.TypeValidator debug - validate( "4317da6d-60dd-453b-9209-ab10eda9f64a", "4317da6d-60dd-453b-9209-ab10eda9f64a", refreshToken) +07:00:48.933 [XNIO-1 task-1] LKOeKqptTwaVkBBriiboOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.934 [XNIO-1 task-1] LKOeKqptTwaVkBBriiboOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.934 [XNIO-1 task-1] LKOeKqptTwaVkBBriiboOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:48.934 [XNIO-1 task-1] LKOeKqptTwaVkBBriiboOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:48.935 [XNIO-1 task-1] LKOeKqptTwaVkBBriiboOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:48.947 [XNIO-1 task-1] jqAmVWJUTnWwlgfmqEVrYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:48.947 [XNIO-1 task-1] jqAmVWJUTnWwlgfmqEVrYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.947 [XNIO-1 task-1] jqAmVWJUTnWwlgfmqEVrYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:48.947 [XNIO-1 task-1] jqAmVWJUTnWwlgfmqEVrYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:48.948 [XNIO-1 task-1] jqAmVWJUTnWwlgfmqEVrYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:48.953 [XNIO-1 task-1] ImhkM0fiTHerse9d6QQCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.953 [XNIO-1 task-1] ImhkM0fiTHerse9d6QQCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.954 [XNIO-1 task-1] ImhkM0fiTHerse9d6QQCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:48.954 [XNIO-1 task-1] ImhkM0fiTHerse9d6QQCNw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:48.963 [XNIO-1 task-1] -u0qvgFtT3CMSXxEG--U7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.963 [XNIO-1 task-1] -u0qvgFtT3CMSXxEG--U7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.963 [XNIO-1 task-1] -u0qvgFtT3CMSXxEG--U7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.963 [XNIO-1 task-1] -u0qvgFtT3CMSXxEG--U7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.964 [XNIO-1 task-1] -u0qvgFtT3CMSXxEG--U7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4317da6d-60dd-453b-9209-ab10eda9f64a", "4317da6d-60dd-453b-9209-ab10eda9f64a", refreshToken) +07:00:48.973 [XNIO-1 task-1] 9KnflGD9RQiocYtT2PJHgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.974 [XNIO-1 task-1] 9KnflGD9RQiocYtT2PJHgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.974 [XNIO-1 task-1] 9KnflGD9RQiocYtT2PJHgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.974 [XNIO-1 task-1] 9KnflGD9RQiocYtT2PJHgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.982 [XNIO-1 task-1] 9KnflGD9RQiocYtT2PJHgw DEBUG com.networknt.schema.TypeValidator debug - validate( "4317da6d-60dd-453b-9209-ab10eda9f64a", "4317da6d-60dd-453b-9209-ab10eda9f64a", refreshToken) +07:00:48.994 [XNIO-1 task-1] SE0clw_MSlq3AX9sdJoKYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.994 [XNIO-1 task-1] SE0clw_MSlq3AX9sdJoKYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:48.994 [XNIO-1 task-1] SE0clw_MSlq3AX9sdJoKYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:48.995 [XNIO-1 task-1] SE0clw_MSlq3AX9sdJoKYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:48.995 [XNIO-1 task-1] SE0clw_MSlq3AX9sdJoKYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4317da6d-60dd-453b-9209-ab10eda9f64a", "4317da6d-60dd-453b-9209-ab10eda9f64a", refreshToken) +07:00:48.997 [XNIO-1 task-1] SE0clw_MSlq3AX9sdJoKYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4317da6d-60dd-453b-9209-ab10eda9f64a is not found.","severity":"ERROR"} +07:00:49.000 [XNIO-1 task-1] QIOEBV6SRdalN7NyX7UDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.000 [XNIO-1 task-1] QIOEBV6SRdalN7NyX7UDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.000 [XNIO-1 task-1] QIOEBV6SRdalN7NyX7UDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.000 [XNIO-1 task-1] QIOEBV6SRdalN7NyX7UDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.001 [XNIO-1 task-1] QIOEBV6SRdalN7NyX7UDrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.004 [XNIO-1 task-1] jVA7kf_4Tzan7SkfljhmGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:49.004 [XNIO-1 task-1] jVA7kf_4Tzan7SkfljhmGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.004 [XNIO-1 task-1] jVA7kf_4Tzan7SkfljhmGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.004 [XNIO-1 task-1] jVA7kf_4Tzan7SkfljhmGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:49.005 [XNIO-1 task-1] jVA7kf_4Tzan7SkfljhmGw DEBUG com.networknt.schema.TypeValidator debug - validate( "4317da6d-60dd-453b-9209-ab10eda9f64a", "4317da6d-60dd-453b-9209-ab10eda9f64a", refreshToken) +07:00:49.005 [XNIO-1 task-1] jVA7kf_4Tzan7SkfljhmGw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4317da6d-60dd-453b-9209-ab10eda9f64a is not found.","severity":"ERROR"} +07:00:49.013 [XNIO-1 task-1] K-iLJzvvSNqB13WhhAdyrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.013 [XNIO-1 task-1] K-iLJzvvSNqB13WhhAdyrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.013 [XNIO-1 task-1] K-iLJzvvSNqB13WhhAdyrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.013 [XNIO-1 task-1] K-iLJzvvSNqB13WhhAdyrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.014 [XNIO-1 task-1] K-iLJzvvSNqB13WhhAdyrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.018 [XNIO-1 task-1] Ey9xDXfJRmeRyFEl5tat_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.018 [XNIO-1 task-1] Ey9xDXfJRmeRyFEl5tat_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.018 [XNIO-1 task-1] Ey9xDXfJRmeRyFEl5tat_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.018 [XNIO-1 task-1] Ey9xDXfJRmeRyFEl5tat_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.018 [XNIO-1 task-1] Ey9xDXfJRmeRyFEl5tat_w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.025 [XNIO-1 task-1] GVrIDhzlQ22AxMUVxcpy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.025 [XNIO-1 task-1] GVrIDhzlQ22AxMUVxcpy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.025 [XNIO-1 task-1] GVrIDhzlQ22AxMUVxcpy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.026 [XNIO-1 task-1] GVrIDhzlQ22AxMUVxcpy9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.027 [XNIO-1 task-1] GVrIDhzlQ22AxMUVxcpy9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.040 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fb72aa90-5acf-4834-93e7-2cb413fc34e9 +07:00:49.044 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:70de24d2 +07:00:49.045 [XNIO-1 task-1] SHsnIVfzREKToNwYcE5r3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.045 [XNIO-1 task-1] SHsnIVfzREKToNwYcE5r3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.046 [XNIO-1 task-1] SHsnIVfzREKToNwYcE5r3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.046 [XNIO-1 task-1] SHsnIVfzREKToNwYcE5r3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.046 [XNIO-1 task-1] SHsnIVfzREKToNwYcE5r3w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.053 [XNIO-1 task-1] KYlolh6fTqq6dtnQT5Iisw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.053 [XNIO-1 task-1] KYlolh6fTqq6dtnQT5Iisw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.053 [XNIO-1 task-1] KYlolh6fTqq6dtnQT5Iisw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.054 [XNIO-1 task-1] KYlolh6fTqq6dtnQT5Iisw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.054 [XNIO-1 task-1] KYlolh6fTqq6dtnQT5Iisw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.066 [XNIO-1 task-1] 2oodM5h2Q6mN50sgkh_88Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.067 [XNIO-1 task-1] 2oodM5h2Q6mN50sgkh_88Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.067 [XNIO-1 task-1] 2oodM5h2Q6mN50sgkh_88Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.068 [XNIO-1 task-1] 2oodM5h2Q6mN50sgkh_88Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.077 [XNIO-1 task-1] XF8SF4LzTb20NJ8KkojdEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.078 [XNIO-1 task-1] XF8SF4LzTb20NJ8KkojdEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.078 [XNIO-1 task-1] XF8SF4LzTb20NJ8KkojdEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.078 [XNIO-1 task-1] XF8SF4LzTb20NJ8KkojdEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.078 [XNIO-1 task-1] XF8SF4LzTb20NJ8KkojdEw DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.080 [XNIO-1 task-1] XF8SF4LzTb20NJ8KkojdEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.085 [XNIO-1 task-1] w2P7CdPMSoq5DE9gn2zOcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.085 [XNIO-1 task-1] w2P7CdPMSoq5DE9gn2zOcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.085 [XNIO-1 task-1] w2P7CdPMSoq5DE9gn2zOcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.085 [XNIO-1 task-1] w2P7CdPMSoq5DE9gn2zOcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.086 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aafe55bc-1845-4ee6-a1ec-f3e9c575f498 +07:00:49.096 [XNIO-1 task-1] rZGvPlu7Rzez8j_mCyJFvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.096 [XNIO-1 task-1] rZGvPlu7Rzez8j_mCyJFvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.097 [XNIO-1 task-1] rZGvPlu7Rzez8j_mCyJFvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.097 [XNIO-1 task-1] rZGvPlu7Rzez8j_mCyJFvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.097 [XNIO-1 task-1] rZGvPlu7Rzez8j_mCyJFvg DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.097 [XNIO-1 task-1] rZGvPlu7Rzez8j_mCyJFvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.104 [XNIO-1 task-1] BixQ0_ADQ0q_eZZGrIj3CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.105 [XNIO-1 task-1] BixQ0_ADQ0q_eZZGrIj3CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.105 [XNIO-1 task-1] BixQ0_ADQ0q_eZZGrIj3CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.105 [XNIO-1 task-1] BixQ0_ADQ0q_eZZGrIj3CA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.105 [XNIO-1 task-1] BixQ0_ADQ0q_eZZGrIj3CA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.114 [XNIO-1 task-1] c-mnlNOMQaGh53BvZgmZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.114 [XNIO-1 task-1] c-mnlNOMQaGh53BvZgmZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.114 [XNIO-1 task-1] c-mnlNOMQaGh53BvZgmZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.114 [XNIO-1 task-1] c-mnlNOMQaGh53BvZgmZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.115 [XNIO-1 task-1] c-mnlNOMQaGh53BvZgmZig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.120 [XNIO-1 task-1] YHrutuiiQoCMFE8B6kqWag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.120 [XNIO-1 task-1] YHrutuiiQoCMFE8B6kqWag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.120 [XNIO-1 task-1] YHrutuiiQoCMFE8B6kqWag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.120 [XNIO-1 task-1] YHrutuiiQoCMFE8B6kqWag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.121 [XNIO-1 task-1] YHrutuiiQoCMFE8B6kqWag DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.121 [XNIO-1 task-1] YHrutuiiQoCMFE8B6kqWag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.132 [XNIO-1 task-1] 7LpAD19FSzGBBJkYuSpj1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.132 [XNIO-1 task-1] 7LpAD19FSzGBBJkYuSpj1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.132 [XNIO-1 task-1] 7LpAD19FSzGBBJkYuSpj1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.132 [XNIO-1 task-1] 7LpAD19FSzGBBJkYuSpj1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.133 [XNIO-1 task-1] 7LpAD19FSzGBBJkYuSpj1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.135 [XNIO-1 task-1] bFVnop0ETGavYNpRwu2ZUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6672cd83-c1a2-42c4-a953-0871a7861183, base path is set to: null +07:00:49.135 [XNIO-1 task-1] bFVnop0ETGavYNpRwu2ZUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.135 [XNIO-1 task-1] bFVnop0ETGavYNpRwu2ZUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.135 [XNIO-1 task-1] bFVnop0ETGavYNpRwu2ZUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6672cd83-c1a2-42c4-a953-0871a7861183, base path is set to: null +07:00:49.136 [XNIO-1 task-1] bFVnop0ETGavYNpRwu2ZUA DEBUG com.networknt.schema.TypeValidator debug - validate( "6672cd83-c1a2-42c4-a953-0871a7861183", "6672cd83-c1a2-42c4-a953-0871a7861183", refreshToken) +07:00:49.139 [XNIO-1 task-1] AF6psmJORbmn1nyNvAuXCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.139 [XNIO-1 task-1] AF6psmJORbmn1nyNvAuXCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.139 [XNIO-1 task-1] AF6psmJORbmn1nyNvAuXCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.139 [XNIO-1 task-1] AF6psmJORbmn1nyNvAuXCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.139 [XNIO-1 task-1] AF6psmJORbmn1nyNvAuXCA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.139 [XNIO-1 task-1] AF6psmJORbmn1nyNvAuXCA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.143 [XNIO-1 task-1] EnwFSsc9RZ6BcL6iGXC1yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.143 [XNIO-1 task-1] EnwFSsc9RZ6BcL6iGXC1yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.143 [XNIO-1 task-1] EnwFSsc9RZ6BcL6iGXC1yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.144 [XNIO-1 task-1] EnwFSsc9RZ6BcL6iGXC1yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.144 [XNIO-1 task-1] EnwFSsc9RZ6BcL6iGXC1yw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4317da6d-60dd-453b-9209-ab10eda9f64a +07:00:49.147 [XNIO-1 task-1] yiO1nDDESbC_UwAQIXV5UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7091e2f-b1fa-4cba-86f2-88e86886c32b, base path is set to: null +07:00:49.147 [XNIO-1 task-1] yiO1nDDESbC_UwAQIXV5UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.147 [XNIO-1 task-1] yiO1nDDESbC_UwAQIXV5UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.147 [XNIO-1 task-1] yiO1nDDESbC_UwAQIXV5UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7091e2f-b1fa-4cba-86f2-88e86886c32b, base path is set to: null +07:00:49.148 [XNIO-1 task-1] yiO1nDDESbC_UwAQIXV5UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7091e2f-b1fa-4cba-86f2-88e86886c32b", "c7091e2f-b1fa-4cba-86f2-88e86886c32b", refreshToken) +07:00:49.156 [XNIO-1 task-1] YkWbu0QwTSms1s0Qu1qzRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:49.156 [XNIO-1 task-1] YkWbu0QwTSms1s0Qu1qzRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.156 [XNIO-1 task-1] YkWbu0QwTSms1s0Qu1qzRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.156 [XNIO-1 task-1] YkWbu0QwTSms1s0Qu1qzRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4317da6d-60dd-453b-9209-ab10eda9f64a, base path is set to: null +07:00:49.157 [XNIO-1 task-1] YkWbu0QwTSms1s0Qu1qzRw DEBUG com.networknt.schema.TypeValidator debug - validate( "4317da6d-60dd-453b-9209-ab10eda9f64a", "4317da6d-60dd-453b-9209-ab10eda9f64a", refreshToken) +07:00:49.157 [XNIO-1 task-1] YkWbu0QwTSms1s0Qu1qzRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4317da6d-60dd-453b-9209-ab10eda9f64a is not found.","severity":"ERROR"} +07:00:49.163 [XNIO-1 task-1] 4fYoB8fHRaafB1rukH6OIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.163 [XNIO-1 task-1] 4fYoB8fHRaafB1rukH6OIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.164 [XNIO-1 task-1] 4fYoB8fHRaafB1rukH6OIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.164 [XNIO-1 task-1] 4fYoB8fHRaafB1rukH6OIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.165 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9c38bfba +07:00:49.175 [XNIO-1 task-1] V-ieo_UNTl2XoTbsSRw_wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.175 [XNIO-1 task-1] V-ieo_UNTl2XoTbsSRw_wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.176 [XNIO-1 task-1] V-ieo_UNTl2XoTbsSRw_wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.176 [XNIO-1 task-1] V-ieo_UNTl2XoTbsSRw_wg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.176 [XNIO-1 task-1] V-ieo_UNTl2XoTbsSRw_wg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.189 [XNIO-1 task-1] STNmlXf1Rwar3yTrCzGBfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.189 [XNIO-1 task-1] STNmlXf1Rwar3yTrCzGBfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.189 [XNIO-1 task-1] STNmlXf1Rwar3yTrCzGBfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.190 [XNIO-1 task-1] STNmlXf1Rwar3yTrCzGBfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.190 [XNIO-1 task-1] STNmlXf1Rwar3yTrCzGBfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.191 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:99245091 +07:00:49.194 [XNIO-1 task-1] VGa8joq6R5e2JUDBoV58cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.194 [XNIO-1 task-1] VGa8joq6R5e2JUDBoV58cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.194 [XNIO-1 task-1] VGa8joq6R5e2JUDBoV58cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.194 [XNIO-1 task-1] VGa8joq6R5e2JUDBoV58cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.195 [XNIO-1 task-1] VGa8joq6R5e2JUDBoV58cA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.203 [XNIO-1 task-1] lVY0IAvlR5GLbjJjcrH8DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.203 [XNIO-1 task-1] lVY0IAvlR5GLbjJjcrH8DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.203 [XNIO-1 task-1] lVY0IAvlR5GLbjJjcrH8DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.203 [XNIO-1 task-1] lVY0IAvlR5GLbjJjcrH8DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.204 [XNIO-1 task-1] lVY0IAvlR5GLbjJjcrH8DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:49.206 [XNIO-1 task-1] lVY0IAvlR5GLbjJjcrH8DQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:49.211 [XNIO-1 task-1] 19p6PBY9QYm8KqfXvClW8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.212 [XNIO-1 task-1] 19p6PBY9QYm8KqfXvClW8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.212 [XNIO-1 task-1] 19p6PBY9QYm8KqfXvClW8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.213 [XNIO-1 task-1] 19p6PBY9QYm8KqfXvClW8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.218 [XNIO-1 task-1] xFXUIZmMTQS7j1g_CEKK7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.218 [XNIO-1 task-1] xFXUIZmMTQS7j1g_CEKK7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.219 [XNIO-1 task-1] xFXUIZmMTQS7j1g_CEKK7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.219 [XNIO-1 task-1] xFXUIZmMTQS7j1g_CEKK7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.219 [XNIO-1 task-1] xFXUIZmMTQS7j1g_CEKK7g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.230 [XNIO-1 task-1] Tmece1ieRqKYT8q_V8YVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.230 [XNIO-1 task-1] Tmece1ieRqKYT8q_V8YVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.230 [XNIO-1 task-1] Tmece1ieRqKYT8q_V8YVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.230 [XNIO-1 task-1] Tmece1ieRqKYT8q_V8YVMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31, base path is set to: null +07:00:49.230 [XNIO-1 task-1] Tmece1ieRqKYT8q_V8YVMA DEBUG com.networknt.schema.TypeValidator debug - validate( "184464a2-4d20-4b98-a230-d18a0ed93e31", "184464a2-4d20-4b98-a230-d18a0ed93e31", refreshToken) +07:00:49.231 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.235 [XNIO-1 task-1] MZZ-1UTdQWazhHZezwm_Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.235 [XNIO-1 task-1] MZZ-1UTdQWazhHZezwm_Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.235 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:70de24d2 +07:00:49.235 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:70de24d2 +07:00:49.238 [XNIO-1 task-1] MZZ-1UTdQWazhHZezwm_Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.239 [XNIO-1 task-1] MZZ-1UTdQWazhHZezwm_Dg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.248 [XNIO-1 task-1] F16Q9nwER9-gBwQB3CDCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.248 [XNIO-1 task-1] F16Q9nwER9-gBwQB3CDCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.248 [XNIO-1 task-1] F16Q9nwER9-gBwQB3CDCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.248 [XNIO-1 task-1] F16Q9nwER9-gBwQB3CDCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.249 [XNIO-1 task-1] F16Q9nwER9-gBwQB3CDCTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.252 [XNIO-1 task-1] cGQrvuw_RPOIDKjpQVTHwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.252 [XNIO-1 task-1] cGQrvuw_RPOIDKjpQVTHwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.253 [XNIO-1 task-1] cGQrvuw_RPOIDKjpQVTHwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.253 [XNIO-1 task-1] cGQrvuw_RPOIDKjpQVTHwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.253 [XNIO-1 task-1] cGQrvuw_RPOIDKjpQVTHwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.282 [XNIO-1 task-1] BKr1Ljb_REOG51l9D06H5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.282 [XNIO-1 task-1] BKr1Ljb_REOG51l9D06H5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.283 [XNIO-1 task-1] BKr1Ljb_REOG51l9D06H5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.284 [XNIO-1 task-1] BKr1Ljb_REOG51l9D06H5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.304 [XNIO-1 task-1] uGKZXOVRTGuZJXxnOwsqow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.304 [XNIO-1 task-1] uGKZXOVRTGuZJXxnOwsqow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.305 [XNIO-1 task-1] uGKZXOVRTGuZJXxnOwsqow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.305 [XNIO-1 task-1] uGKZXOVRTGuZJXxnOwsqow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.305 [XNIO-1 task-1] uGKZXOVRTGuZJXxnOwsqow DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:49.305 [XNIO-1 task-1] uGKZXOVRTGuZJXxnOwsqow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:49.308 [XNIO-1 task-1] OredpVZDR6SFG_N1sovhiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.308 [XNIO-1 task-1] OredpVZDR6SFG_N1sovhiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.309 [XNIO-1 task-1] OredpVZDR6SFG_N1sovhiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.309 [XNIO-1 task-1] OredpVZDR6SFG_N1sovhiw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.320 [XNIO-1 task-1] uBAV1TeQSNygX1N9hTOIgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.320 [XNIO-1 task-1] uBAV1TeQSNygX1N9hTOIgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.321 [XNIO-1 task-1] uBAV1TeQSNygX1N9hTOIgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.321 [XNIO-1 task-1] uBAV1TeQSNygX1N9hTOIgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.321 [XNIO-1 task-1] uBAV1TeQSNygX1N9hTOIgw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.327 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa2d756 +07:00:49.330 [XNIO-1 task-1] AB24gdGrTaiILpKXLtVJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.330 [XNIO-1 task-1] AB24gdGrTaiILpKXLtVJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.330 [XNIO-1 task-1] AB24gdGrTaiILpKXLtVJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.331 [XNIO-1 task-1] AB24gdGrTaiILpKXLtVJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.331 [XNIO-1 task-1] AB24gdGrTaiILpKXLtVJvw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.332 [XNIO-1 task-1] AB24gdGrTaiILpKXLtVJvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:49.336 [XNIO-1 task-1] fReVuPs7QzKUpH1SrEpCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.336 [XNIO-1 task-1] fReVuPs7QzKUpH1SrEpCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.336 [XNIO-1 task-1] fReVuPs7QzKUpH1SrEpCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.337 [XNIO-1 task-1] fReVuPs7QzKUpH1SrEpCBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.350 [XNIO-1 task-1] 9aqTUB6uT1qkLuu2EV1XaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.350 [XNIO-1 task-1] 9aqTUB6uT1qkLuu2EV1XaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.351 [XNIO-1 task-1] 9aqTUB6uT1qkLuu2EV1XaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.351 [XNIO-1 task-1] 9aqTUB6uT1qkLuu2EV1XaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.351 [XNIO-1 task-1] 9aqTUB6uT1qkLuu2EV1XaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.379 [XNIO-1 task-1] ktr7TljtTDGvKyvz4MmsYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.379 [XNIO-1 task-1] ktr7TljtTDGvKyvz4MmsYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.379 [XNIO-1 task-1] ktr7TljtTDGvKyvz4MmsYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.379 [XNIO-1 task-1] ktr7TljtTDGvKyvz4MmsYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.380 [XNIO-1 task-1] ktr7TljtTDGvKyvz4MmsYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.389 [XNIO-1 task-1] SJWIYr5wT5G7aHAf72Lkng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.389 [XNIO-1 task-1] SJWIYr5wT5G7aHAf72Lkng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.390 [XNIO-1 task-1] SJWIYr5wT5G7aHAf72Lkng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.390 [XNIO-1 task-1] SJWIYr5wT5G7aHAf72Lkng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.390 [XNIO-1 task-1] SJWIYr5wT5G7aHAf72Lkng DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:49.390 [XNIO-1 task-1] SJWIYr5wT5G7aHAf72Lkng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:49.393 [XNIO-1 task-1] _PScaSDoTGW9bAwn4fskrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.393 [XNIO-1 task-1] _PScaSDoTGW9bAwn4fskrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.393 [XNIO-1 task-1] _PScaSDoTGW9bAwn4fskrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.396 [XNIO-1 task-1] _PScaSDoTGW9bAwn4fskrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.396 [XNIO-1 task-1] _PScaSDoTGW9bAwn4fskrg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 +07:00:49.397 [XNIO-1 task-1] _PScaSDoTGW9bAwn4fskrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} +07:00:49.407 [XNIO-1 task-1] lQfplyF4Sh-code6DKeNxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.407 [XNIO-1 task-1] lQfplyF4Sh-code6DKeNxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.407 [XNIO-1 task-1] lQfplyF4Sh-code6DKeNxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.407 [XNIO-1 task-1] lQfplyF4Sh-code6DKeNxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.408 [XNIO-1 task-1] lQfplyF4Sh-code6DKeNxw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c4a1287-15fd-488f-953d-55aa69c8358f +07:00:49.414 [XNIO-1 task-1] xszlrEwWSo6vsE2RECkE9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.415 [XNIO-1 task-1] xszlrEwWSo6vsE2RECkE9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.415 [XNIO-1 task-1] xszlrEwWSo6vsE2RECkE9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.415 [XNIO-1 task-1] xszlrEwWSo6vsE2RECkE9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.415 [XNIO-1 task-1] xszlrEwWSo6vsE2RECkE9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:49.416 [XNIO-1 task-1] xszlrEwWSo6vsE2RECkE9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:49.424 [XNIO-1 task-1] wUPObMMfRpC69QBTTHj5xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.425 [XNIO-1 task-1] wUPObMMfRpC69QBTTHj5xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.425 [XNIO-1 task-1] wUPObMMfRpC69QBTTHj5xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.425 [XNIO-1 task-1] wUPObMMfRpC69QBTTHj5xA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.425 [XNIO-1 task-1] wUPObMMfRpC69QBTTHj5xA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.427 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:48ae136d +07:00:49.438 [XNIO-1 task-1] L2GgvAdqTDewlTN6QkkzZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.438 [XNIO-1 task-1] L2GgvAdqTDewlTN6QkkzZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.438 [XNIO-1 task-1] L2GgvAdqTDewlTN6QkkzZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.438 [XNIO-1 task-1] L2GgvAdqTDewlTN6QkkzZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.443 [XNIO-1 task-1] Af1NRKvcTt2A53Md45V1jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.443 [XNIO-1 task-1] Af1NRKvcTt2A53Md45V1jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.443 [XNIO-1 task-1] Af1NRKvcTt2A53Md45V1jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.444 [XNIO-1 task-1] Af1NRKvcTt2A53Md45V1jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.444 [XNIO-1 task-1] Af1NRKvcTt2A53Md45V1jg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.448 [XNIO-1 task-1] 10FjZ04-QT28uLX9jrqQpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.448 [XNIO-1 task-1] 10FjZ04-QT28uLX9jrqQpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.449 [XNIO-1 task-1] 10FjZ04-QT28uLX9jrqQpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.450 [XNIO-1 task-1] 10FjZ04-QT28uLX9jrqQpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.457 [XNIO-1 task-1] Vta_FSFFQJyPIBepV6TJqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31, base path is set to: null +07:00:49.457 [XNIO-1 task-1] Vta_FSFFQJyPIBepV6TJqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.457 [XNIO-1 task-1] Vta_FSFFQJyPIBepV6TJqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.458 [XNIO-1 task-1] Vta_FSFFQJyPIBepV6TJqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/184464a2-4d20-4b98-a230-d18a0ed93e31, base path is set to: null +07:00:49.458 [XNIO-1 task-1] Vta_FSFFQJyPIBepV6TJqw DEBUG com.networknt.schema.TypeValidator debug - validate( "184464a2-4d20-4b98-a230-d18a0ed93e31", "184464a2-4d20-4b98-a230-d18a0ed93e31", refreshToken) +07:00:49.458 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:184464a2-4d20-4b98-a230-d18a0ed93e31 +Jun 29, 2024 7:00:49 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +07:00:49.459 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f635881d +07:00:49.463 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f635881d + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +07:00:49.464 [XNIO-1 task-1] VESa3hwYTD295RlxL0WMmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.464 [XNIO-1 task-1] VESa3hwYTD295RlxL0WMmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.464 [XNIO-1 task-1] VESa3hwYTD295RlxL0WMmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.464 [XNIO-1 task-1] VESa3hwYTD295RlxL0WMmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +07:00:49.464 [XNIO-1 task-1] VESa3hwYTD295RlxL0WMmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aafe55bc-1845-4ee6-a1ec-f3e9c575f498", "aafe55bc-1845-4ee6-a1ec-f3e9c575f498", refreshToken) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +07:00:49.475 [XNIO-1 task-1] -VnyUtOGRbOXyt38nZq4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.475 [XNIO-1 task-1] -VnyUtOGRbOXyt38nZq4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.475 [XNIO-1 task-1] -VnyUtOGRbOXyt38nZq4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +Jun 29, 2024 7:00:49 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +07:00:49.477 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:59997512 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +07:00:49.488 [XNIO-1 task-1] 1l9pa13gSkyz9pGo0XVL3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.488 [XNIO-1 task-1] 1l9pa13gSkyz9pGo0XVL3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +07:00:49.489 [XNIO-1 task-1] 1l9pa13gSkyz9pGo0XVL3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 184464a2-4d20-4b98-a230-d18a0ed93e31 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +07:00:49.490 [XNIO-1 task-1] 1l9pa13gSkyz9pGo0XVL3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 184464a2-4d20-4b98-a230-d18a0ed93e31 is not found.","severity":"ERROR"} + ... 14 more + +07:00:49.493 [XNIO-1 task-1] h2L2h1-0QImBAYHvN0D12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.493 [XNIO-1 task-1] h2L2h1-0QImBAYHvN0D12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.493 [XNIO-1 task-1] h2L2h1-0QImBAYHvN0D12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.494 [XNIO-1 task-1] h2L2h1-0QImBAYHvN0D12Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.498 [XNIO-1 task-1] CcSW6XxvRUWHvhEvOpvflQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.498 [XNIO-1 task-1] CcSW6XxvRUWHvhEvOpvflQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.499 [XNIO-1 task-1] CcSW6XxvRUWHvhEvOpvflQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.499 [XNIO-1 task-1] CcSW6XxvRUWHvhEvOpvflQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.499 [XNIO-1 task-1] CcSW6XxvRUWHvhEvOpvflQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.507 [XNIO-1 task-1] IoiusdrjSTyuKHbXhu2XhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.507 [XNIO-1 task-1] IoiusdrjSTyuKHbXhu2XhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.507 [XNIO-1 task-1] IoiusdrjSTyuKHbXhu2XhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.508 [XNIO-1 task-1] IoiusdrjSTyuKHbXhu2XhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.514 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aafe55bc-1845-4ee6-a1ec-f3e9c575f498 +07:00:49.516 [XNIO-1 task-1] xXMbQIP2R7aL1rWWEpJTlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.516 [XNIO-1 task-1] xXMbQIP2R7aL1rWWEpJTlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.517 [XNIO-1 task-1] xXMbQIP2R7aL1rWWEpJTlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.517 [XNIO-1 task-1] xXMbQIP2R7aL1rWWEpJTlg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.525 [XNIO-1 task-1] n6kncQ_4SPCSZojQtwD1Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.525 [XNIO-1 task-1] n6kncQ_4SPCSZojQtwD1Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.525 [XNIO-1 task-1] n6kncQ_4SPCSZojQtwD1Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.526 [XNIO-1 task-1] n6kncQ_4SPCSZojQtwD1Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.526 [XNIO-1 task-1] n6kncQ_4SPCSZojQtwD1Nw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.540 [XNIO-1 task-1] iLhZaM40RwmfF8v52oyYVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.540 [XNIO-1 task-1] iLhZaM40RwmfF8v52oyYVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.540 [XNIO-1 task-1] iLhZaM40RwmfF8v52oyYVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.541 [XNIO-1 task-1] iLhZaM40RwmfF8v52oyYVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.567 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ef6f0ae9-b19f-4f1f-b19d-8f66329ba633 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:49.574 [XNIO-1 task-1] b0MtBr-BSlSy6scXeltRSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.575 [XNIO-1 task-1] b0MtBr-BSlSy6scXeltRSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.576 [XNIO-1 task-1] b0MtBr-BSlSy6scXeltRSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.580 [XNIO-1 task-1] b0MtBr-BSlSy6scXeltRSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.580 [XNIO-1 task-1] b0MtBr-BSlSy6scXeltRSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.589 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:49.595 [XNIO-1 task-1] lwcgsDS4RZu3mL9hoPVTmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.596 [XNIO-1 task-1] lwcgsDS4RZu3mL9hoPVTmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.596 [XNIO-1 task-1] lwcgsDS4RZu3mL9hoPVTmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.597 [XNIO-1 task-1] lwcgsDS4RZu3mL9hoPVTmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.599 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f635881d +07:00:49.609 [XNIO-1 task-1] 3mnUJh3CSk2dELCiXZghfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:49.609 [XNIO-1 task-1] 3mnUJh3CSk2dELCiXZghfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.609 [XNIO-1 task-1] 3mnUJh3CSk2dELCiXZghfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.610 [XNIO-1 task-1] 3mnUJh3CSk2dELCiXZghfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:49.610 [XNIO-1 task-1] 3mnUJh3CSk2dELCiXZghfA DEBUG com.networknt.schema.TypeValidator debug - validate( "c76fcefd-ade6-4ce7-963a-e82f6854d29e", "c76fcefd-ade6-4ce7-963a-e82f6854d29e", refreshToken) +07:00:49.613 [XNIO-1 task-1] 3mnUJh3CSk2dELCiXZghfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c76fcefd-ade6-4ce7-963a-e82f6854d29e is not found.","severity":"ERROR"} +07:00:49.616 [XNIO-1 task-1] _7ahoNPqTT6O0gHI1RJS-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9c5d6ba3-8d0a-43d8-82df-2a180a23239c, base path is set to: null +07:00:49.617 [XNIO-1 task-1] _7ahoNPqTT6O0gHI1RJS-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.617 [XNIO-1 task-1] _7ahoNPqTT6O0gHI1RJS-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.617 [XNIO-1 task-1] _7ahoNPqTT6O0gHI1RJS-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9c5d6ba3-8d0a-43d8-82df-2a180a23239c, base path is set to: null +07:00:49.617 [XNIO-1 task-1] _7ahoNPqTT6O0gHI1RJS-g DEBUG com.networknt.schema.TypeValidator debug - validate( "9c5d6ba3-8d0a-43d8-82df-2a180a23239c", "9c5d6ba3-8d0a-43d8-82df-2a180a23239c", refreshToken) +07:00:49.620 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:aeeb56cd +07:00:49.631 [XNIO-1 task-1] SH3trJXzTeSuwEqrGIQfuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.632 [XNIO-1 task-1] SH3trJXzTeSuwEqrGIQfuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.633 [XNIO-1 task-1] SH3trJXzTeSuwEqrGIQfuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.633 [XNIO-1 task-1] SH3trJXzTeSuwEqrGIQfuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.633 [XNIO-1 task-1] SH3trJXzTeSuwEqrGIQfuA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.640 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:70de24d2 +07:00:49.641 [XNIO-1 task-1] Gzk11yhkRMSaC24Dmf4SRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.642 [XNIO-1 task-1] Gzk11yhkRMSaC24Dmf4SRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.642 [XNIO-1 task-1] Gzk11yhkRMSaC24Dmf4SRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.642 [XNIO-1 task-1] Gzk11yhkRMSaC24Dmf4SRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.643 [XNIO-1 task-1] Gzk11yhkRMSaC24Dmf4SRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.655 [XNIO-1 task-1] pROQFTcRRsatQUu6sOn0Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9c5d6ba3-8d0a-43d8-82df-2a180a23239c, base path is set to: null +07:00:49.655 [XNIO-1 task-1] pROQFTcRRsatQUu6sOn0Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.655 [XNIO-1 task-1] pROQFTcRRsatQUu6sOn0Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.655 [XNIO-1 task-1] pROQFTcRRsatQUu6sOn0Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9c5d6ba3-8d0a-43d8-82df-2a180a23239c, base path is set to: null +07:00:49.656 [XNIO-1 task-1] pROQFTcRRsatQUu6sOn0Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "9c5d6ba3-8d0a-43d8-82df-2a180a23239c", "9c5d6ba3-8d0a-43d8-82df-2a180a23239c", refreshToken) +07:00:49.660 [XNIO-1 task-1] pROQFTcRRsatQUu6sOn0Dg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9c5d6ba3-8d0a-43d8-82df-2a180a23239c is not found.","severity":"ERROR"} +07:00:49.667 [XNIO-1 task-1] Cj4_XuLtRqqlprqQlK0yrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.667 [XNIO-1 task-1] Cj4_XuLtRqqlprqQlK0yrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.667 [XNIO-1 task-1] Cj4_XuLtRqqlprqQlK0yrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.668 [XNIO-1 task-1] Cj4_XuLtRqqlprqQlK0yrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.668 [XNIO-1 task-1] Cj4_XuLtRqqlprqQlK0yrQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.678 [XNIO-1 task-1] ONiOLDARQLuLfcWe-pX6eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.679 [XNIO-1 task-1] ONiOLDARQLuLfcWe-pX6eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.679 [XNIO-1 task-1] ONiOLDARQLuLfcWe-pX6eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.679 [XNIO-1 task-1] ONiOLDARQLuLfcWe-pX6eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.679 [XNIO-1 task-1] ONiOLDARQLuLfcWe-pX6eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.679 [XNIO-1 task-1] ONiOLDARQLuLfcWe-pX6eQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.684 [XNIO-1 task-1] 68JhzG7NRFGLjurFDokj2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.684 [XNIO-1 task-1] 68JhzG7NRFGLjurFDokj2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.684 [XNIO-1 task-1] 68JhzG7NRFGLjurFDokj2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.684 [XNIO-1 task-1] 68JhzG7NRFGLjurFDokj2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.684 [XNIO-1 task-1] 68JhzG7NRFGLjurFDokj2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.688 [XNIO-1 task-1] vBNNtud7QL2oPGBOfEQV0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.688 [XNIO-1 task-1] vBNNtud7QL2oPGBOfEQV0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.688 [XNIO-1 task-1] vBNNtud7QL2oPGBOfEQV0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.689 [XNIO-1 task-1] vBNNtud7QL2oPGBOfEQV0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.689 [XNIO-1 task-1] vBNNtud7QL2oPGBOfEQV0g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.693 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa2d756 +07:00:49.698 [XNIO-1 task-1] MKAuhubBQnm5_zJSNsmyrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.698 [XNIO-1 task-1] MKAuhubBQnm5_zJSNsmyrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.698 [XNIO-1 task-1] MKAuhubBQnm5_zJSNsmyrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.698 [XNIO-1 task-1] MKAuhubBQnm5_zJSNsmyrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.700 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d13d7fc3-6ebd-4eec-9a92-c530e3999aa3 +07:00:49.706 [XNIO-1 task-1] K6CkcCZiRrmAyCmQaKFV0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.707 [XNIO-1 task-1] K6CkcCZiRrmAyCmQaKFV0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.707 [XNIO-1 task-1] K6CkcCZiRrmAyCmQaKFV0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.707 [XNIO-1 task-1] K6CkcCZiRrmAyCmQaKFV0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.707 [XNIO-1 task-1] K6CkcCZiRrmAyCmQaKFV0g DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.708 [XNIO-1 task-1] K6CkcCZiRrmAyCmQaKFV0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.715 [XNIO-1 task-1] dr5ZdBmtQlCPIF05-TTyAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.716 [XNIO-1 task-1] dr5ZdBmtQlCPIF05-TTyAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.716 [XNIO-1 task-1] dr5ZdBmtQlCPIF05-TTyAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.716 [XNIO-1 task-1] dr5ZdBmtQlCPIF05-TTyAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.717 [XNIO-1 task-1] dr5ZdBmtQlCPIF05-TTyAw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.721 [XNIO-1 task-1] ItQheZaGSaKGUzpT-PwgzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.722 [XNIO-1 task-1] ItQheZaGSaKGUzpT-PwgzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.722 [XNIO-1 task-1] ItQheZaGSaKGUzpT-PwgzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.722 [XNIO-1 task-1] ItQheZaGSaKGUzpT-PwgzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.722 [XNIO-1 task-1] ItQheZaGSaKGUzpT-PwgzA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.722 [XNIO-1 task-1] ItQheZaGSaKGUzpT-PwgzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.727 [XNIO-1 task-1] i1uUNOhfQa6_Wshsn47N8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.728 [XNIO-1 task-1] i1uUNOhfQa6_Wshsn47N8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.728 [XNIO-1 task-1] i1uUNOhfQa6_Wshsn47N8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.728 [XNIO-1 task-1] i1uUNOhfQa6_Wshsn47N8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.728 [XNIO-1 task-1] i1uUNOhfQa6_Wshsn47N8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.737 [XNIO-1 task-1] vtjZgQCdQxGg6E8tGyXEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.737 [XNIO-1 task-1] vtjZgQCdQxGg6E8tGyXEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.737 [XNIO-1 task-1] vtjZgQCdQxGg6E8tGyXEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.738 [XNIO-1 task-1] vtjZgQCdQxGg6E8tGyXEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.739 [XNIO-1 task-1] vtjZgQCdQxGg6E8tGyXEjw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.741 [XNIO-1 task-1] ImAeORgNSleVA_wFVA6K2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.743 [XNIO-1 task-1] ImAeORgNSleVA_wFVA6K2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.743 [XNIO-1 task-1] ImAeORgNSleVA_wFVA6K2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.743 [XNIO-1 task-1] ImAeORgNSleVA_wFVA6K2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.743 [XNIO-1 task-1] ImAeORgNSleVA_wFVA6K2A DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:49.744 [XNIO-1 task-1] ImAeORgNSleVA_wFVA6K2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:49.749 [XNIO-1 task-1] 5KRXNeTTQwmt3vcNt7LAdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.749 [XNIO-1 task-1] 5KRXNeTTQwmt3vcNt7LAdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.749 [XNIO-1 task-1] 5KRXNeTTQwmt3vcNt7LAdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.749 [XNIO-1 task-1] 5KRXNeTTQwmt3vcNt7LAdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.749 [XNIO-1 task-1] 5KRXNeTTQwmt3vcNt7LAdA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.750 [XNIO-1 task-1] 5KRXNeTTQwmt3vcNt7LAdA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.756 [XNIO-1 task-1] 01hVegn7T2WGttq9A5YaDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.758 [XNIO-1 task-1] 01hVegn7T2WGttq9A5YaDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.758 [XNIO-1 task-1] 01hVegn7T2WGttq9A5YaDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.759 [XNIO-1 task-1] 01hVegn7T2WGttq9A5YaDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.759 [XNIO-1 task-1] 01hVegn7T2WGttq9A5YaDw DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.760 [XNIO-1 task-1] 01hVegn7T2WGttq9A5YaDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.765 [XNIO-1 task-1] 6GbAAf2gRH-IDrs7idXkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6fbc72c8-0e8b-4508-8848-0cb8091136b6 +07:00:49.765 [XNIO-1 task-1] 6GbAAf2gRH-IDrs7idXkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.766 [XNIO-1 task-1] 6GbAAf2gRH-IDrs7idXkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.766 [XNIO-1 task-1] 6GbAAf2gRH-IDrs7idXkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6fbc72c8-0e8b-4508-8848-0cb8091136b6 +07:00:49.766 [XNIO-1 task-1] 6GbAAf2gRH-IDrs7idXkXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6fbc72c8-0e8b-4508-8848-0cb8091136b6 +07:00:49.788 [XNIO-1 task-1] FnMRjBXlSMWyYFamFgKl6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.788 [XNIO-1 task-1] FnMRjBXlSMWyYFamFgKl6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.788 [XNIO-1 task-1] FnMRjBXlSMWyYFamFgKl6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.788 [XNIO-1 task-1] FnMRjBXlSMWyYFamFgKl6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.789 [XNIO-1 task-1] FnMRjBXlSMWyYFamFgKl6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.792 [XNIO-1 task-1] FNJ5qmMuSYShzG6SqB2Pvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.794 [XNIO-1 task-1] FNJ5qmMuSYShzG6SqB2Pvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.794 [XNIO-1 task-1] FNJ5qmMuSYShzG6SqB2Pvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.795 [XNIO-1 task-1] FNJ5qmMuSYShzG6SqB2Pvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.795 [XNIO-1 task-1] FNJ5qmMuSYShzG6SqB2Pvg DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:49.796 [XNIO-1 task-1] FNJ5qmMuSYShzG6SqB2Pvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:49.801 [XNIO-1 task-1] PJZz_B-zRli6Pae_fFCcow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.802 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa2d756 +07:00:49.803 [XNIO-1 task-1] PJZz_B-zRli6Pae_fFCcow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.803 [XNIO-1 task-1] PJZz_B-zRli6Pae_fFCcow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.803 [XNIO-1 task-1] PJZz_B-zRli6Pae_fFCcow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.804 [XNIO-1 task-1] PJZz_B-zRli6Pae_fFCcow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.814 [XNIO-1 task-1] w8ksrsegQne7pxc0vLlleQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.816 [XNIO-1 task-1] w8ksrsegQne7pxc0vLlleQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.816 [XNIO-1 task-1] w8ksrsegQne7pxc0vLlleQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.816 [XNIO-1 task-1] w8ksrsegQne7pxc0vLlleQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.817 [XNIO-1 task-1] w8ksrsegQne7pxc0vLlleQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:49.817 [XNIO-1 task-1] w8ksrsegQne7pxc0vLlleQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:49.823 [XNIO-1 task-1] nKX-sOsjRPqE5FAbHpTpZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.823 [XNIO-1 task-1] nKX-sOsjRPqE5FAbHpTpZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.823 [XNIO-1 task-1] nKX-sOsjRPqE5FAbHpTpZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.823 [XNIO-1 task-1] nKX-sOsjRPqE5FAbHpTpZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.824 [XNIO-1 task-1] nKX-sOsjRPqE5FAbHpTpZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.828 [XNIO-1 task-1] UpHvkm8NQUu-O7V-SeJKpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.828 [XNIO-1 task-1] UpHvkm8NQUu-O7V-SeJKpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.828 [XNIO-1 task-1] UpHvkm8NQUu-O7V-SeJKpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.828 [XNIO-1 task-1] UpHvkm8NQUu-O7V-SeJKpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:49.828 [XNIO-1 task-1] UpHvkm8NQUu-O7V-SeJKpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:49.829 [XNIO-1 task-1] UpHvkm8NQUu-O7V-SeJKpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:49.832 [XNIO-1 task-1] 3e1kKpiRR1GKMCus6wi66w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.832 [XNIO-1 task-1] 3e1kKpiRR1GKMCus6wi66w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.833 [XNIO-1 task-1] 3e1kKpiRR1GKMCus6wi66w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.833 [XNIO-1 task-1] 3e1kKpiRR1GKMCus6wi66w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.870 [XNIO-1 task-1] MVSlW127SD-IyEzlbQCEUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.870 [XNIO-1 task-1] MVSlW127SD-IyEzlbQCEUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.870 [XNIO-1 task-1] MVSlW127SD-IyEzlbQCEUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.870 [XNIO-1 task-1] MVSlW127SD-IyEzlbQCEUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.871 [XNIO-1 task-1] MVSlW127SD-IyEzlbQCEUA DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:49.871 [XNIO-1 task-1] MVSlW127SD-IyEzlbQCEUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:49.875 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa2d756 +07:00:49.879 [XNIO-1 task-1] SP0ia1vpTDaQ2bzANkaBtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.879 [XNIO-1 task-1] SP0ia1vpTDaQ2bzANkaBtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.879 [XNIO-1 task-1] SP0ia1vpTDaQ2bzANkaBtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.879 [XNIO-1 task-1] SP0ia1vpTDaQ2bzANkaBtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.879 [XNIO-1 task-1] SP0ia1vpTDaQ2bzANkaBtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:49.883 [XNIO-1 task-1] gdvNQJeLSUa-ZGOhEMdAwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.884 [XNIO-1 task-1] gdvNQJeLSUa-ZGOhEMdAwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.884 [XNIO-1 task-1] gdvNQJeLSUa-ZGOhEMdAwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.884 [XNIO-1 task-1] gdvNQJeLSUa-ZGOhEMdAwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:49.884 [XNIO-1 task-1] gdvNQJeLSUa-ZGOhEMdAwg DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:49.884 [XNIO-1 task-1] gdvNQJeLSUa-ZGOhEMdAwg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:49.890 [XNIO-1 task-1] OXuKre9eTkq6_gdBh1rpcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.890 [XNIO-1 task-1] OXuKre9eTkq6_gdBh1rpcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.890 [XNIO-1 task-1] OXuKre9eTkq6_gdBh1rpcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.890 [XNIO-1 task-1] OXuKre9eTkq6_gdBh1rpcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.890 [XNIO-1 task-1] OXuKre9eTkq6_gdBh1rpcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:49.894 [XNIO-1 task-1] kCCGf-rSTEy9YKFXpOZaZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.894 [XNIO-1 task-1] kCCGf-rSTEy9YKFXpOZaZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.894 [XNIO-1 task-1] kCCGf-rSTEy9YKFXpOZaZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.894 [XNIO-1 task-1] kCCGf-rSTEy9YKFXpOZaZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.895 [XNIO-1 task-1] kCCGf-rSTEy9YKFXpOZaZA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.895 [XNIO-1 task-1] kCCGf-rSTEy9YKFXpOZaZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.897 [XNIO-1 task-1] IJ_0DqyRREi3Uu0Q5aqYew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.897 [XNIO-1 task-1] IJ_0DqyRREi3Uu0Q5aqYew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.897 [XNIO-1 task-1] IJ_0DqyRREi3Uu0Q5aqYew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.898 [XNIO-1 task-1] IJ_0DqyRREi3Uu0Q5aqYew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.899 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c661d05e-161b-4ea6-9cf3-d88475ff6457 +07:00:49.904 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c661d05e-161b-4ea6-9cf3-d88475ff6457 +07:00:49.904 [XNIO-1 task-1] cYlAr_ZdR1CQGT3bS0oKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.904 [XNIO-1 task-1] cYlAr_ZdR1CQGT3bS0oKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.904 [XNIO-1 task-1] cYlAr_ZdR1CQGT3bS0oKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.904 [XNIO-1 task-1] cYlAr_ZdR1CQGT3bS0oKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.905 [XNIO-1 task-1] cYlAr_ZdR1CQGT3bS0oKZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f3b8b55a-3656-4383-93ed-3ce3c1cd809b +07:00:49.910 [XNIO-1 task-1] LCZ16ggoT2mLzshncMQ2NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.910 [XNIO-1 task-1] LCZ16ggoT2mLzshncMQ2NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.910 [XNIO-1 task-1] LCZ16ggoT2mLzshncMQ2NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.911 [XNIO-1 task-1] LCZ16ggoT2mLzshncMQ2NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f3b8b55a-3656-4383-93ed-3ce3c1cd809b, base path is set to: null +07:00:49.911 [XNIO-1 task-1] LCZ16ggoT2mLzshncMQ2NA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", "f3b8b55a-3656-4383-93ed-3ce3c1cd809b", refreshToken) +07:00:49.911 [XNIO-1 task-1] LCZ16ggoT2mLzshncMQ2NA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f3b8b55a-3656-4383-93ed-3ce3c1cd809b is not found.","severity":"ERROR"} +07:00:49.916 [XNIO-1 task-1] NRqzdKGjQWmyISk1BWfXhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.916 [XNIO-1 task-1] NRqzdKGjQWmyISk1BWfXhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.916 [XNIO-1 task-1] NRqzdKGjQWmyISk1BWfXhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.916 [XNIO-1 task-1] NRqzdKGjQWmyISk1BWfXhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.916 [XNIO-1 task-1] NRqzdKGjQWmyISk1BWfXhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.922 [XNIO-1 task-1] W_fQshsfSbmFlCy7zTJTCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.922 [XNIO-1 task-1] W_fQshsfSbmFlCy7zTJTCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.922 [XNIO-1 task-1] W_fQshsfSbmFlCy7zTJTCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.923 [XNIO-1 task-1] W_fQshsfSbmFlCy7zTJTCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.923 [XNIO-1 task-1] W_fQshsfSbmFlCy7zTJTCA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.930 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:70de24d2 +07:00:49.931 [XNIO-1 task-1] KJ8cKl-oSDen8nav1Si83w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.931 [XNIO-1 task-1] KJ8cKl-oSDen8nav1Si83w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.931 [XNIO-1 task-1] KJ8cKl-oSDen8nav1Si83w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.932 [XNIO-1 task-1] KJ8cKl-oSDen8nav1Si83w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.936 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:97af84aa-3195-481e-8460-9b60a6c039d5 +07:00:49.944 [XNIO-1 task-1] 4O2R3neLTMGJmvoAT6N6vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:49.944 [XNIO-1 task-1] 4O2R3neLTMGJmvoAT6N6vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.944 [XNIO-1 task-1] 4O2R3neLTMGJmvoAT6N6vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:49.944 [XNIO-1 task-1] 4O2R3neLTMGJmvoAT6N6vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:49.944 [XNIO-1 task-1] 4O2R3neLTMGJmvoAT6N6vA DEBUG com.networknt.schema.TypeValidator debug - validate( "c76fcefd-ade6-4ce7-963a-e82f6854d29e", "c76fcefd-ade6-4ce7-963a-e82f6854d29e", refreshToken) +07:00:49.945 [XNIO-1 task-1] 4O2R3neLTMGJmvoAT6N6vA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c76fcefd-ade6-4ce7-963a-e82f6854d29e is not found.","severity":"ERROR"} +07:00:49.952 [XNIO-1 task-1] CCytEhK5RVa9-MTT7V_krA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.952 [XNIO-1 task-1] CCytEhK5RVa9-MTT7V_krA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.952 [XNIO-1 task-1] CCytEhK5RVa9-MTT7V_krA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.952 [XNIO-1 task-1] CCytEhK5RVa9-MTT7V_krA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:49.966 [XNIO-1 task-1] NVSo_aGJSHK7dJNjCbGOGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.966 [XNIO-1 task-1] NVSo_aGJSHK7dJNjCbGOGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.966 [XNIO-1 task-1] NVSo_aGJSHK7dJNjCbGOGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.967 [XNIO-1 task-1] NVSo_aGJSHK7dJNjCbGOGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.967 [XNIO-1 task-1] NVSo_aGJSHK7dJNjCbGOGw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:49.979 [XNIO-1 task-1] Fsjn1xXIQL-JRk52gVf1Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.979 [XNIO-1 task-1] Fsjn1xXIQL-JRk52gVf1Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:49.979 [XNIO-1 task-1] Fsjn1xXIQL-JRk52gVf1Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:49.980 [XNIO-1 task-1] Fsjn1xXIQL-JRk52gVf1Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.980 [XNIO-1 task-1] Fsjn1xXIQL-JRk52gVf1Ow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:49.989 [XNIO-1 task-1] LjoE2pRCSeufYmH5hU44Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.989 [XNIO-1 task-1] LjoE2pRCSeufYmH5hU44Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:49.989 [XNIO-1 task-1] LjoE2pRCSeufYmH5hU44Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:49.990 [XNIO-1 task-1] LjoE2pRCSeufYmH5hU44Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:49.990 [XNIO-1 task-1] LjoE2pRCSeufYmH5hU44Dw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.009 [XNIO-1 task-1] 8F6dBhdYQjOb2hIfMZmC9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.009 [XNIO-1 task-1] 8F6dBhdYQjOb2hIfMZmC9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.010 [XNIO-1 task-1] 8F6dBhdYQjOb2hIfMZmC9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.010 [XNIO-1 task-1] 8F6dBhdYQjOb2hIfMZmC9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.038 [XNIO-1 task-1] -UTY5_hwQWOXKjUu5UrHHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.038 [XNIO-1 task-1] -UTY5_hwQWOXKjUu5UrHHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.039 [XNIO-1 task-1] -UTY5_hwQWOXKjUu5UrHHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.040 [XNIO-1 task-1] -UTY5_hwQWOXKjUu5UrHHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.040 [XNIO-1 task-1] -UTY5_hwQWOXKjUu5UrHHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.054 [XNIO-1 task-1] CMUG9NpqRuW6u6w44-VewQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:50.054 [XNIO-1 task-1] CMUG9NpqRuW6u6w44-VewQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.054 [XNIO-1 task-1] CMUG9NpqRuW6u6w44-VewQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.054 [XNIO-1 task-1] CMUG9NpqRuW6u6w44-VewQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:50.054 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:99245091 +07:00:50.055 [XNIO-1 task-1] CMUG9NpqRuW6u6w44-VewQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:50.056 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:99245091 +07:00:50.063 [XNIO-1 task-1] KaSxto-3R52kirFLJFSf8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7d6d5e77-9d51-45a2-98fd-0204027c04c5, base path is set to: null +07:00:50.063 [XNIO-1 task-1] KaSxto-3R52kirFLJFSf8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.063 [XNIO-1 task-1] KaSxto-3R52kirFLJFSf8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.063 [XNIO-1 task-1] KaSxto-3R52kirFLJFSf8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7d6d5e77-9d51-45a2-98fd-0204027c04c5, base path is set to: null +07:00:50.065 [XNIO-1 task-1] KaSxto-3R52kirFLJFSf8A DEBUG com.networknt.schema.TypeValidator debug - validate( "7d6d5e77-9d51-45a2-98fd-0204027c04c5", "7d6d5e77-9d51-45a2-98fd-0204027c04c5", refreshToken) +07:00:50.083 [XNIO-1 task-1] 9saOOqzLQMGqDYIS4HUf4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:50.084 [XNIO-1 task-1] 9saOOqzLQMGqDYIS4HUf4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.084 [XNIO-1 task-1] 9saOOqzLQMGqDYIS4HUf4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.084 [XNIO-1 task-1] 9saOOqzLQMGqDYIS4HUf4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e, base path is set to: null +07:00:50.084 [XNIO-1 task-1] 9saOOqzLQMGqDYIS4HUf4g DEBUG com.networknt.schema.TypeValidator debug - validate( "c76fcefd-ade6-4ce7-963a-e82f6854d29e", "c76fcefd-ade6-4ce7-963a-e82f6854d29e", refreshToken) +07:00:50.085 [XNIO-1 task-1] 9saOOqzLQMGqDYIS4HUf4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c76fcefd-ade6-4ce7-963a-e82f6854d29e is not found.","severity":"ERROR"} +07:00:50.091 [XNIO-1 task-1] PkFqTULtQsG9fVIN82UQLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d0a3e0e-9199-44c3-a5c4-3757e17187a4 +07:00:50.091 [XNIO-1 task-1] PkFqTULtQsG9fVIN82UQLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.091 [XNIO-1 task-1] PkFqTULtQsG9fVIN82UQLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.091 [XNIO-1 task-1] PkFqTULtQsG9fVIN82UQLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d0a3e0e-9199-44c3-a5c4-3757e17187a4 +07:00:50.092 [XNIO-1 task-1] PkFqTULtQsG9fVIN82UQLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4d0a3e0e-9199-44c3-a5c4-3757e17187a4 +07:00:50.105 [XNIO-1 task-1] -ludSWCXRZeShIa0Ft7e8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.105 [XNIO-1 task-1] -ludSWCXRZeShIa0Ft7e8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.105 [XNIO-1 task-1] -ludSWCXRZeShIa0Ft7e8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.105 [XNIO-1 task-1] -ludSWCXRZeShIa0Ft7e8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.117 [XNIO-1 task-1] keJDCEKvTSCG5UhSa1LDCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7d6d5e77-9d51-45a2-98fd-0204027c04c5, base path is set to: null +07:00:50.117 [XNIO-1 task-1] keJDCEKvTSCG5UhSa1LDCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.117 [XNIO-1 task-1] keJDCEKvTSCG5UhSa1LDCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.118 [XNIO-1 task-1] keJDCEKvTSCG5UhSa1LDCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7d6d5e77-9d51-45a2-98fd-0204027c04c5, base path is set to: null +07:00:50.118 [XNIO-1 task-1] keJDCEKvTSCG5UhSa1LDCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7d6d5e77-9d51-45a2-98fd-0204027c04c5", "7d6d5e77-9d51-45a2-98fd-0204027c04c5", refreshToken) +07:00:50.122 [XNIO-1 task-1] keJDCEKvTSCG5UhSa1LDCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7d6d5e77-9d51-45a2-98fd-0204027c04c5 is not found.","severity":"ERROR"} +07:00:50.127 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8a15d709-78c5-41e1-a5cb-cd06222c09cf +07:00:50.130 [XNIO-1 task-1] 9LBgkiUjSAWjpK4WTWZxMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:50.131 [XNIO-1 task-1] 9LBgkiUjSAWjpK4WTWZxMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.131 [XNIO-1 task-1] 9LBgkiUjSAWjpK4WTWZxMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.131 [XNIO-1 task-1] 9LBgkiUjSAWjpK4WTWZxMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:50.132 [XNIO-1 task-1] 9LBgkiUjSAWjpK4WTWZxMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c76fcefd-ade6-4ce7-963a-e82f6854d29e +07:00:50.135 [XNIO-1 task-1] nWcxjI71Twymf5CIR9w-rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.135 [XNIO-1 task-1] nWcxjI71Twymf5CIR9w-rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.135 [XNIO-1 task-1] nWcxjI71Twymf5CIR9w-rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.136 [XNIO-1 task-1] nWcxjI71Twymf5CIR9w-rA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.136 [XNIO-1 task-1] nWcxjI71Twymf5CIR9w-rA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.152 [XNIO-1 task-1] BDaKFiYeRdyNopjSctZUYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.152 [XNIO-1 task-1] BDaKFiYeRdyNopjSctZUYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.152 [XNIO-1 task-1] BDaKFiYeRdyNopjSctZUYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.157 [XNIO-1 task-1] BDaKFiYeRdyNopjSctZUYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.157 [XNIO-1 task-1] BDaKFiYeRdyNopjSctZUYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.162 [XNIO-1 task-1] lfsCSvrzTpe6G-7iiwKitw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.162 [XNIO-1 task-1] lfsCSvrzTpe6G-7iiwKitw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.162 [XNIO-1 task-1] lfsCSvrzTpe6G-7iiwKitw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.162 [XNIO-1 task-1] lfsCSvrzTpe6G-7iiwKitw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.162 [XNIO-1 task-1] lfsCSvrzTpe6G-7iiwKitw DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:50.163 [XNIO-1 task-1] lfsCSvrzTpe6G-7iiwKitw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:50.170 [XNIO-1 task-1] dH61iJXuSU2EuDeiqFrtEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.170 [XNIO-1 task-1] dH61iJXuSU2EuDeiqFrtEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.170 [XNIO-1 task-1] dH61iJXuSU2EuDeiqFrtEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.170 [XNIO-1 task-1] dH61iJXuSU2EuDeiqFrtEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.170 [XNIO-1 task-1] dH61iJXuSU2EuDeiqFrtEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.174 [XNIO-1 task-1] lKV4fC-ZSJ6HNfN3G2QQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.174 [XNIO-1 task-1] lKV4fC-ZSJ6HNfN3G2QQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.174 [XNIO-1 task-1] lKV4fC-ZSJ6HNfN3G2QQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.175 [XNIO-1 task-1] lKV4fC-ZSJ6HNfN3G2QQXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.176 [XNIO-1 task-1] lKV4fC-ZSJ6HNfN3G2QQXw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.193 [XNIO-1 task-1] f5qzztnmRPidCaO-Nr-gjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.193 [XNIO-1 task-1] f5qzztnmRPidCaO-Nr-gjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.194 [XNIO-1 task-1] f5qzztnmRPidCaO-Nr-gjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.194 [XNIO-1 task-1] f5qzztnmRPidCaO-Nr-gjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.206 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:330d5c3d +07:00:50.206 [XNIO-1 task-1] 0UKQJTI7QbChYp7VxU0E4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:50.206 [XNIO-1 task-1] 0UKQJTI7QbChYp7VxU0E4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.206 [XNIO-1 task-1] 0UKQJTI7QbChYp7VxU0E4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.206 [XNIO-1 task-1] 0UKQJTI7QbChYp7VxU0E4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:50.207 [XNIO-1 task-1] 0UKQJTI7QbChYp7VxU0E4g DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:50.207 [XNIO-1 task-1] 0UKQJTI7QbChYp7VxU0E4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:50.210 [XNIO-1 task-1] VckmnsT9TWm3BPxL0JCY4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.210 [XNIO-1 task-1] VckmnsT9TWm3BPxL0JCY4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.210 [XNIO-1 task-1] VckmnsT9TWm3BPxL0JCY4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.210 [XNIO-1 task-1] VckmnsT9TWm3BPxL0JCY4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.225 [XNIO-1 task-1] LpZgyU8PRjO3H5NL1Rqk-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.225 [XNIO-1 task-1] LpZgyU8PRjO3H5NL1Rqk-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.226 [XNIO-1 task-1] LpZgyU8PRjO3H5NL1Rqk-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.226 [XNIO-1 task-1] LpZgyU8PRjO3H5NL1Rqk-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.226 [XNIO-1 task-1] LpZgyU8PRjO3H5NL1Rqk-w DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:50.226 [XNIO-1 task-1] LpZgyU8PRjO3H5NL1Rqk-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:50.228 [XNIO-1 task-1] -lKL4eHzS92sjC8wkWbsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.228 [XNIO-1 task-1] -lKL4eHzS92sjC8wkWbsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.229 [XNIO-1 task-1] -lKL4eHzS92sjC8wkWbsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.229 [XNIO-1 task-1] -lKL4eHzS92sjC8wkWbsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.229 [XNIO-1 task-1] -lKL4eHzS92sjC8wkWbsFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.232 [XNIO-1 task-1] aZLVt20iRuCBWZF2-xDOXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.233 [XNIO-1 task-1] aZLVt20iRuCBWZF2-xDOXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.233 [XNIO-1 task-1] aZLVt20iRuCBWZF2-xDOXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.233 [XNIO-1 task-1] aZLVt20iRuCBWZF2-xDOXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.233 [XNIO-1 task-1] aZLVt20iRuCBWZF2-xDOXA DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:50.233 [XNIO-1 task-1] aZLVt20iRuCBWZF2-xDOXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:50.250 [XNIO-1 task-1] PO2xgGzCQyqjuBNAPTnkIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.250 [XNIO-1 task-1] PO2xgGzCQyqjuBNAPTnkIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.250 [XNIO-1 task-1] PO2xgGzCQyqjuBNAPTnkIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.250 [XNIO-1 task-1] PO2xgGzCQyqjuBNAPTnkIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.251 [XNIO-1 task-1] PO2xgGzCQyqjuBNAPTnkIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.257 [XNIO-1 task-1] p0wCMXL_QGOWu8dP1jKODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.257 [XNIO-1 task-1] p0wCMXL_QGOWu8dP1jKODA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.258 [XNIO-1 task-1] p0wCMXL_QGOWu8dP1jKODA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.258 [XNIO-1 task-1] p0wCMXL_QGOWu8dP1jKODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.258 [XNIO-1 task-1] p0wCMXL_QGOWu8dP1jKODA DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:50.259 [XNIO-1 task-1] p0wCMXL_QGOWu8dP1jKODA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:50.262 [XNIO-1 task-1] 7jsI2B9QSYSra6rcQhHMWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.262 [XNIO-1 task-1] 7jsI2B9QSYSra6rcQhHMWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.262 [XNIO-1 task-1] 7jsI2B9QSYSra6rcQhHMWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.263 [XNIO-1 task-1] 7jsI2B9QSYSra6rcQhHMWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.263 [XNIO-1 task-1] 7jsI2B9QSYSra6rcQhHMWA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.272 [XNIO-1 task-1] Vc9K8UU5TRyvsxN12kL8hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.272 [XNIO-1 task-1] Vc9K8UU5TRyvsxN12kL8hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.272 [XNIO-1 task-1] Vc9K8UU5TRyvsxN12kL8hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.274 [XNIO-1 task-1] Vc9K8UU5TRyvsxN12kL8hg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.274 [XNIO-1 task-1] Vc9K8UU5TRyvsxN12kL8hg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.282 [XNIO-1 task-1] jUbpgqUlRzycW490_EcKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8a15d709-78c5-41e1-a5cb-cd06222c09cf +07:00:50.282 [XNIO-1 task-1] jUbpgqUlRzycW490_EcKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.282 [XNIO-1 task-1] jUbpgqUlRzycW490_EcKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.282 [XNIO-1 task-1] jUbpgqUlRzycW490_EcKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8a15d709-78c5-41e1-a5cb-cd06222c09cf +07:00:50.282 [XNIO-1 task-1] jUbpgqUlRzycW490_EcKXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8a15d709-78c5-41e1-a5cb-cd06222c09cf +07:00:50.291 [XNIO-1 task-1] w7afVC5aS9WABqTXbkIknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8a15d709-78c5-41e1-a5cb-cd06222c09cf, base path is set to: null +07:00:50.291 [XNIO-1 task-1] w7afVC5aS9WABqTXbkIknA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.291 [XNIO-1 task-1] w7afVC5aS9WABqTXbkIknA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.291 [XNIO-1 task-1] w7afVC5aS9WABqTXbkIknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8a15d709-78c5-41e1-a5cb-cd06222c09cf, base path is set to: null +07:00:50.291 [XNIO-1 task-1] w7afVC5aS9WABqTXbkIknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8a15d709-78c5-41e1-a5cb-cd06222c09cf +07:00:50.291 [XNIO-1 task-1] w7afVC5aS9WABqTXbkIknA DEBUG com.networknt.schema.TypeValidator debug - validate( "8a15d709-78c5-41e1-a5cb-cd06222c09cf", "8a15d709-78c5-41e1-a5cb-cd06222c09cf", refreshToken) +07:00:50.294 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:330d5c3d +07:00:50.295 [XNIO-1 task-1] 0LHwstCaR52TeSrewqdPzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8a15d709-78c5-41e1-a5cb-cd06222c09cf, base path is set to: null +07:00:50.295 [XNIO-1 task-1] 0LHwstCaR52TeSrewqdPzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.296 [XNIO-1 task-1] 0LHwstCaR52TeSrewqdPzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.296 [XNIO-1 task-1] 0LHwstCaR52TeSrewqdPzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8a15d709-78c5-41e1-a5cb-cd06222c09cf, base path is set to: null +07:00:50.296 [XNIO-1 task-1] 0LHwstCaR52TeSrewqdPzg DEBUG com.networknt.schema.TypeValidator debug - validate( "8a15d709-78c5-41e1-a5cb-cd06222c09cf", "8a15d709-78c5-41e1-a5cb-cd06222c09cf", refreshToken) +07:00:50.296 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8a15d709-78c5-41e1-a5cb-cd06222c09cf +07:00:50.312 [XNIO-1 task-1] tdLp2c5XTD-hWzBk88hfkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.312 [XNIO-1 task-1] tdLp2c5XTD-hWzBk88hfkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.312 [XNIO-1 task-1] tdLp2c5XTD-hWzBk88hfkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.312 [XNIO-1 task-1] tdLp2c5XTD-hWzBk88hfkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.321 [XNIO-1 task-1] xr8fmOXWTBOiC7t32pC4WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.321 [XNIO-1 task-1] xr8fmOXWTBOiC7t32pC4WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.321 [XNIO-1 task-1] xr8fmOXWTBOiC7t32pC4WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.322 [XNIO-1 task-1] xr8fmOXWTBOiC7t32pC4WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.322 [XNIO-1 task-1] xr8fmOXWTBOiC7t32pC4WA DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:50.322 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6d9fb496-663d-4e20-95ab-a6a0c5a7e1b4 +07:00:50.324 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6d9fb496-663d-4e20-95ab-a6a0c5a7e1b4 +07:00:50.333 [XNIO-1 task-1] 5P9y-UkqT6OSIjW_8m9OhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.333 [XNIO-1 task-1] 5P9y-UkqT6OSIjW_8m9OhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.334 [XNIO-1 task-1] 5P9y-UkqT6OSIjW_8m9OhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.334 [XNIO-1 task-1] 5P9y-UkqT6OSIjW_8m9OhA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.341 [XNIO-1 task-1] Ju0T6nJiQxmGL2BTttaAxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.341 [XNIO-1 task-1] Ju0T6nJiQxmGL2BTttaAxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.341 [XNIO-1 task-1] Ju0T6nJiQxmGL2BTttaAxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.341 [XNIO-1 task-1] Ju0T6nJiQxmGL2BTttaAxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.342 [XNIO-1 task-1] Ju0T6nJiQxmGL2BTttaAxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:50.354 [XNIO-1 task-1] HXUpGZrTSpCTS7nNrhaPEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.354 [XNIO-1 task-1] HXUpGZrTSpCTS7nNrhaPEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.355 [XNIO-1 task-1] HXUpGZrTSpCTS7nNrhaPEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.356 [XNIO-1 task-1] HXUpGZrTSpCTS7nNrhaPEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.356 [XNIO-1 task-1] HXUpGZrTSpCTS7nNrhaPEw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.394 [XNIO-1 task-1] urbilWnDRMS21kVafAXG3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.394 [XNIO-1 task-1] urbilWnDRMS21kVafAXG3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.394 [XNIO-1 task-1] urbilWnDRMS21kVafAXG3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.394 [XNIO-1 task-1] urbilWnDRMS21kVafAXG3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.394 [XNIO-1 task-1] urbilWnDRMS21kVafAXG3Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.406 [XNIO-1 task-1] v5eOK2uqSwiAzmQy6mVSxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.406 [XNIO-1 task-1] v5eOK2uqSwiAzmQy6mVSxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.406 [XNIO-1 task-1] v5eOK2uqSwiAzmQy6mVSxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.407 [XNIO-1 task-1] v5eOK2uqSwiAzmQy6mVSxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.407 [XNIO-1 task-1] v5eOK2uqSwiAzmQy6mVSxg DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:50.410 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.413 [XNIO-1 task-1] AkgWVmAoRbaU_muww8xz0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.414 [XNIO-1 task-1] AkgWVmAoRbaU_muww8xz0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.414 [XNIO-1 task-1] AkgWVmAoRbaU_muww8xz0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.414 [XNIO-1 task-1] AkgWVmAoRbaU_muww8xz0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.414 [XNIO-1 task-1] AkgWVmAoRbaU_muww8xz0A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.422 [XNIO-1 task-1] OZI6VSsfSUa4DBjmKdqM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.422 [XNIO-1 task-1] OZI6VSsfSUa4DBjmKdqM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.422 [XNIO-1 task-1] OZI6VSsfSUa4DBjmKdqM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.422 [XNIO-1 task-1] OZI6VSsfSUa4DBjmKdqM1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.423 [XNIO-1 task-1] OZI6VSsfSUa4DBjmKdqM1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.424 [XNIO-1 task-1] OZI6VSsfSUa4DBjmKdqM1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:50.430 [XNIO-1 task-1] lxCKubf4QIifSe1e3jC5oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.430 [XNIO-1 task-1] lxCKubf4QIifSe1e3jC5oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.430 [XNIO-1 task-1] lxCKubf4QIifSe1e3jC5oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.431 [XNIO-1 task-1] lxCKubf4QIifSe1e3jC5oA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.439 [XNIO-1 task-1] 14zQYyPgRR6lJmbAK-jCVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.440 [XNIO-1 task-1] 14zQYyPgRR6lJmbAK-jCVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.440 [XNIO-1 task-1] 14zQYyPgRR6lJmbAK-jCVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.440 [XNIO-1 task-1] 14zQYyPgRR6lJmbAK-jCVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:50.440 [XNIO-1 task-1] 14zQYyPgRR6lJmbAK-jCVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:50.442 [XNIO-1 task-1] 14zQYyPgRR6lJmbAK-jCVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:50.445 [XNIO-1 task-1] 6mUVzL4EQaiI9bQtiwRM2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.445 [XNIO-1 task-1] 6mUVzL4EQaiI9bQtiwRM2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.446 [XNIO-1 task-1] 6mUVzL4EQaiI9bQtiwRM2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.446 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:28708ec1-14ac-4f70-ba45-bfad0de0321c +07:00:50.446 [XNIO-1 task-1] 6mUVzL4EQaiI9bQtiwRM2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.463 [XNIO-1 task-1] QCORJlUFQS6dFNR_-menmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.463 [XNIO-1 task-1] QCORJlUFQS6dFNR_-menmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.463 [XNIO-1 task-1] QCORJlUFQS6dFNR_-menmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.463 [XNIO-1 task-1] QCORJlUFQS6dFNR_-menmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.464 [XNIO-1 task-1] QCORJlUFQS6dFNR_-menmg DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:50.464 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.465 [XNIO-1 task-1] QCORJlUFQS6dFNR_-menmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:50.470 [XNIO-1 task-1] IELiy-DcR7elgPFgz0yBHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.471 [XNIO-1 task-1] IELiy-DcR7elgPFgz0yBHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.471 [XNIO-1 task-1] IELiy-DcR7elgPFgz0yBHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.471 [XNIO-1 task-1] IELiy-DcR7elgPFgz0yBHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.473 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5d4abfc9-9ca2-41f8-afc4-96c29a0bbbf0 +07:00:50.474 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5d4abfc9-9ca2-41f8-afc4-96c29a0bbbf0 +07:00:50.481 [XNIO-1 task-1] KE8i3IRvSOaewvhU_tHtng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:50.481 [XNIO-1 task-1] KE8i3IRvSOaewvhU_tHtng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.481 [XNIO-1 task-1] KE8i3IRvSOaewvhU_tHtng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.481 [XNIO-1 task-1] KE8i3IRvSOaewvhU_tHtng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:50.482 [XNIO-1 task-1] KE8i3IRvSOaewvhU_tHtng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:50.487 [XNIO-1 task-1] RmWFo_WqTZGpvrltqI6wEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.487 [XNIO-1 task-1] RmWFo_WqTZGpvrltqI6wEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.487 [XNIO-1 task-1] RmWFo_WqTZGpvrltqI6wEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.487 [XNIO-1 task-1] RmWFo_WqTZGpvrltqI6wEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.487 [XNIO-1 task-1] RmWFo_WqTZGpvrltqI6wEA DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.494 [XNIO-1 task-1] JlXcCVO3SP-oAfVM3J5tJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.494 [XNIO-1 task-1] JlXcCVO3SP-oAfVM3J5tJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.494 [XNIO-1 task-1] JlXcCVO3SP-oAfVM3J5tJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.495 [XNIO-1 task-1] JlXcCVO3SP-oAfVM3J5tJg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.495 [XNIO-1 task-1] JlXcCVO3SP-oAfVM3J5tJg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.504 [XNIO-1 task-1] 4YLULvF2SZKuTsY4K-PpcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.504 [XNIO-1 task-1] 4YLULvF2SZKuTsY4K-PpcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.504 [XNIO-1 task-1] 4YLULvF2SZKuTsY4K-PpcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.505 [XNIO-1 task-1] 4YLULvF2SZKuTsY4K-PpcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.511 [XNIO-1 task-1] 6oJzqweSQM6MlO8LMLCJjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.511 [XNIO-1 task-1] 6oJzqweSQM6MlO8LMLCJjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.511 [XNIO-1 task-1] 6oJzqweSQM6MlO8LMLCJjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.511 [XNIO-1 task-1] 6oJzqweSQM6MlO8LMLCJjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.512 [XNIO-1 task-1] 6oJzqweSQM6MlO8LMLCJjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.517 [XNIO-1 task-1] 6509bIdtT7iIJOEFL39CWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.517 [XNIO-1 task-1] 6509bIdtT7iIJOEFL39CWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.517 [XNIO-1 task-1] 6509bIdtT7iIJOEFL39CWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.517 [XNIO-1 task-1] 6509bIdtT7iIJOEFL39CWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.518 [XNIO-1 task-1] 6509bIdtT7iIJOEFL39CWg DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.520 [XNIO-1 task-1] ZMqj8fD3QGuymqrefkts8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.520 [XNIO-1 task-1] ZMqj8fD3QGuymqrefkts8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.520 [XNIO-1 task-1] ZMqj8fD3QGuymqrefkts8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.520 [XNIO-1 task-1] ZMqj8fD3QGuymqrefkts8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.521 [XNIO-1 task-1] ZMqj8fD3QGuymqrefkts8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.530 [XNIO-1 task-1] nLGjZMwHRM63woR4C3K9nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.531 [XNIO-1 task-1] nLGjZMwHRM63woR4C3K9nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.531 [XNIO-1 task-1] nLGjZMwHRM63woR4C3K9nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.531 [XNIO-1 task-1] nLGjZMwHRM63woR4C3K9nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.531 [XNIO-1 task-1] nLGjZMwHRM63woR4C3K9nQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.539 [XNIO-1 task-1] uo68Mi9lQ7isPzlYe42nTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.539 [XNIO-1 task-1] uo68Mi9lQ7isPzlYe42nTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.539 [XNIO-1 task-1] uo68Mi9lQ7isPzlYe42nTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.539 [XNIO-1 task-1] uo68Mi9lQ7isPzlYe42nTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.540 [XNIO-1 task-1] uo68Mi9lQ7isPzlYe42nTw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.551 [XNIO-1 task-1] KJqUQvoNTcGJ5JpfMWMJtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.552 [XNIO-1 task-1] KJqUQvoNTcGJ5JpfMWMJtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.552 [XNIO-1 task-1] KJqUQvoNTcGJ5JpfMWMJtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.552 [XNIO-1 task-1] KJqUQvoNTcGJ5JpfMWMJtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.553 [XNIO-1 task-1] KJqUQvoNTcGJ5JpfMWMJtg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.566 [XNIO-1 task-1] 1Hqyb4xwRRerxzPtLYB4_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.566 [XNIO-1 task-1] 1Hqyb4xwRRerxzPtLYB4_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.566 [XNIO-1 task-1] 1Hqyb4xwRRerxzPtLYB4_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.566 [XNIO-1 task-1] 1Hqyb4xwRRerxzPtLYB4_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.566 [XNIO-1 task-1] 1Hqyb4xwRRerxzPtLYB4_A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.569 [XNIO-1 task-1] F-T9UeQPQBihoIbG-4oNlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.569 [XNIO-1 task-1] F-T9UeQPQBihoIbG-4oNlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.569 [XNIO-1 task-1] F-T9UeQPQBihoIbG-4oNlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.569 [XNIO-1 task-1] F-T9UeQPQBihoIbG-4oNlw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.570 [XNIO-1 task-1] F-T9UeQPQBihoIbG-4oNlw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.581 [XNIO-1 task-1] -AkzAIiTRJmpUkLgPUZykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.581 [XNIO-1 task-1] -AkzAIiTRJmpUkLgPUZykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.582 [XNIO-1 task-1] -AkzAIiTRJmpUkLgPUZykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.583 [XNIO-1 task-1] -AkzAIiTRJmpUkLgPUZykg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.595 [XNIO-1 task-1] yoB1l37yQWaNtUwKXlTVqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.595 [XNIO-1 task-1] yoB1l37yQWaNtUwKXlTVqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.595 [XNIO-1 task-1] yoB1l37yQWaNtUwKXlTVqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.595 [XNIO-1 task-1] yoB1l37yQWaNtUwKXlTVqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.596 [XNIO-1 task-1] yoB1l37yQWaNtUwKXlTVqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.596 [XNIO-1 task-1] yoB1l37yQWaNtUwKXlTVqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 82b14ba3-e517-49aa-8285-6663bfe5a4ad is not found.","severity":"ERROR"} +07:00:50.613 [XNIO-1 task-1] 7n_GccRRQ6-Bbq1eajUHNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.613 [XNIO-1 task-1] 7n_GccRRQ6-Bbq1eajUHNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.613 [XNIO-1 task-1] 7n_GccRRQ6-Bbq1eajUHNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.613 [XNIO-1 task-1] 7n_GccRRQ6-Bbq1eajUHNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.614 [XNIO-1 task-1] 7n_GccRRQ6-Bbq1eajUHNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.623 [XNIO-1 task-1] uwAZJlA2TvuXh5XkpqUuTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.625 [XNIO-1 task-1] uwAZJlA2TvuXh5XkpqUuTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.625 [XNIO-1 task-1] uwAZJlA2TvuXh5XkpqUuTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.625 [XNIO-1 task-1] uwAZJlA2TvuXh5XkpqUuTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.625 [XNIO-1 task-1] uwAZJlA2TvuXh5XkpqUuTw DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.625 [XNIO-1 task-1] uwAZJlA2TvuXh5XkpqUuTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 82b14ba3-e517-49aa-8285-6663bfe5a4ad is not found.","severity":"ERROR"} +07:00:50.632 [XNIO-1 task-1] brTtIstqQwynHJv-LBvT_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.632 [XNIO-1 task-1] brTtIstqQwynHJv-LBvT_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.632 [XNIO-1 task-1] brTtIstqQwynHJv-LBvT_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.633 [XNIO-1 task-1] brTtIstqQwynHJv-LBvT_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.633 [XNIO-1 task-1] brTtIstqQwynHJv-LBvT_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.634 [XNIO-1 task-1] brTtIstqQwynHJv-LBvT_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:50.639 [XNIO-1 task-1] JKSuzuazQiSho5u0zp73fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.639 [XNIO-1 task-1] JKSuzuazQiSho5u0zp73fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.639 [XNIO-1 task-1] JKSuzuazQiSho5u0zp73fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.640 [XNIO-1 task-1] JKSuzuazQiSho5u0zp73fg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.657 [XNIO-1 task-1] meYMYJwRQdOZflHMirBzEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.659 [XNIO-1 task-1] meYMYJwRQdOZflHMirBzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.659 [XNIO-1 task-1] meYMYJwRQdOZflHMirBzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.659 [XNIO-1 task-1] meYMYJwRQdOZflHMirBzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.659 [XNIO-1 task-1] meYMYJwRQdOZflHMirBzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.659 [XNIO-1 task-1] meYMYJwRQdOZflHMirBzEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.661 [XNIO-1 task-1] meYMYJwRQdOZflHMirBzEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:50.670 [XNIO-1 task-1] EbB5RaffQKqdkXSXeffS1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.671 [XNIO-1 task-1] EbB5RaffQKqdkXSXeffS1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.671 [XNIO-1 task-1] EbB5RaffQKqdkXSXeffS1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.671 [XNIO-1 task-1] EbB5RaffQKqdkXSXeffS1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.671 [XNIO-1 task-1] EbB5RaffQKqdkXSXeffS1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.676 [XNIO-1 task-1] EbB5RaffQKqdkXSXeffS1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:50.682 [XNIO-1 task-1] lArMarCuRP230eKx7p2e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ede094da-2d49-4235-979d-6f881b461757 +07:00:50.682 [XNIO-1 task-1] lArMarCuRP230eKx7p2e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.682 [XNIO-1 task-1] lArMarCuRP230eKx7p2e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.682 [XNIO-1 task-1] lArMarCuRP230eKx7p2e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ede094da-2d49-4235-979d-6f881b461757 +07:00:50.683 [XNIO-1 task-1] lArMarCuRP230eKx7p2e4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ede094da-2d49-4235-979d-6f881b461757 +07:00:50.699 [XNIO-1 task-1] Wo66ZRJnRj-jqxZU7kibkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.699 [XNIO-1 task-1] Wo66ZRJnRj-jqxZU7kibkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.699 [XNIO-1 task-1] Wo66ZRJnRj-jqxZU7kibkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.699 [XNIO-1 task-1] Wo66ZRJnRj-jqxZU7kibkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.699 [XNIO-1 task-1] Wo66ZRJnRj-jqxZU7kibkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:50.709 [XNIO-1 task-1] LoNeDC2fRmCtQlS6DItuOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.709 [XNIO-1 task-1] LoNeDC2fRmCtQlS6DItuOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.709 [XNIO-1 task-1] LoNeDC2fRmCtQlS6DItuOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.709 [XNIO-1 task-1] LoNeDC2fRmCtQlS6DItuOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.710 [XNIO-1 task-1] LoNeDC2fRmCtQlS6DItuOg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.721 [XNIO-1 task-1] ILAAGW5aTaaWrS46f0aZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.722 [XNIO-1 task-1] ILAAGW5aTaaWrS46f0aZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.722 [XNIO-1 task-1] ILAAGW5aTaaWrS46f0aZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.722 [XNIO-1 task-1] ILAAGW5aTaaWrS46f0aZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.722 [XNIO-1 task-1] ILAAGW5aTaaWrS46f0aZOw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:50.726 [XNIO-1 task-1] ILAAGW5aTaaWrS46f0aZOw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:50.735 [XNIO-1 task-1] 2vTW8ijMTie4sQWTayXJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ede094da-2d49-4235-979d-6f881b461757 +07:00:50.735 [XNIO-1 task-1] 2vTW8ijMTie4sQWTayXJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.735 [XNIO-1 task-1] 2vTW8ijMTie4sQWTayXJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.735 [XNIO-1 task-1] 2vTW8ijMTie4sQWTayXJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ede094da-2d49-4235-979d-6f881b461757 +07:00:50.736 [XNIO-1 task-1] 2vTW8ijMTie4sQWTayXJ9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ede094da-2d49-4235-979d-6f881b461757 +07:00:50.738 [XNIO-1 task-1] eazDbB8nQbOU5nbOeT6yrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.739 [XNIO-1 task-1] eazDbB8nQbOU5nbOeT6yrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.739 [XNIO-1 task-1] eazDbB8nQbOU5nbOeT6yrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.740 [XNIO-1 task-1] eazDbB8nQbOU5nbOeT6yrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.746 [XNIO-1 task-1] FsdYX1PdR_Sl_LOwDU-lNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:50.746 [XNIO-1 task-1] FsdYX1PdR_Sl_LOwDU-lNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.746 [XNIO-1 task-1] FsdYX1PdR_Sl_LOwDU-lNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.746 [XNIO-1 task-1] FsdYX1PdR_Sl_LOwDU-lNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:50.746 [XNIO-1 task-1] FsdYX1PdR_Sl_LOwDU-lNg DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:50.746 [XNIO-1 task-1] FsdYX1PdR_Sl_LOwDU-lNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:50.747 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:50.755 [XNIO-1 task-1] HcBtXVHoRSGkn1VbBdtpvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.755 [XNIO-1 task-1] HcBtXVHoRSGkn1VbBdtpvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.755 [XNIO-1 task-1] HcBtXVHoRSGkn1VbBdtpvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.755 [XNIO-1 task-1] HcBtXVHoRSGkn1VbBdtpvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.756 [XNIO-1 task-1] HcBtXVHoRSGkn1VbBdtpvA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea4b92e-500a-442b-89e2-b00cde0af762", "4ea4b92e-500a-442b-89e2-b00cde0af762", refreshToken) +07:00:50.760 [XNIO-1 task-1] Lj7rcTFYTfqHWS7op-Zy5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.760 [XNIO-1 task-1] Lj7rcTFYTfqHWS7op-Zy5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.760 [XNIO-1 task-1] Lj7rcTFYTfqHWS7op-Zy5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.760 [XNIO-1 task-1] Lj7rcTFYTfqHWS7op-Zy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.761 [XNIO-1 task-1] Lj7rcTFYTfqHWS7op-Zy5w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.771 [XNIO-1 task-1] XLwXPTWeQuqgNShhW9y3lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.771 [XNIO-1 task-1] XLwXPTWeQuqgNShhW9y3lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.771 [XNIO-1 task-1] XLwXPTWeQuqgNShhW9y3lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.772 [XNIO-1 task-1] XLwXPTWeQuqgNShhW9y3lA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.776 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a827e8e +07:00:50.779 [XNIO-1 task-1] nuD4nk2iQhCx1m2GRK9aLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.779 [XNIO-1 task-1] nuD4nk2iQhCx1m2GRK9aLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.779 [XNIO-1 task-1] nuD4nk2iQhCx1m2GRK9aLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.779 [XNIO-1 task-1] nuD4nk2iQhCx1m2GRK9aLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.780 [XNIO-1 task-1] nuD4nk2iQhCx1m2GRK9aLA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea4b92e-500a-442b-89e2-b00cde0af762", "4ea4b92e-500a-442b-89e2-b00cde0af762", refreshToken) +07:00:50.781 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5a827e8e +07:00:50.781 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:aeeb56cd +07:00:50.783 [XNIO-1 task-1] _m3uHj9-Qye98dY1dLE3fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:50.783 [XNIO-1 task-1] _m3uHj9-Qye98dY1dLE3fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.783 [XNIO-1 task-1] _m3uHj9-Qye98dY1dLE3fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.783 [XNIO-1 task-1] _m3uHj9-Qye98dY1dLE3fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:50.784 [XNIO-1 task-1] _m3uHj9-Qye98dY1dLE3fQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:50.796 [XNIO-1 task-1] 5q47PGhuT3qSCQg_35_itg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:50.796 [XNIO-1 task-1] 5q47PGhuT3qSCQg_35_itg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.796 [XNIO-1 task-1] 5q47PGhuT3qSCQg_35_itg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.797 [XNIO-1 task-1] 5q47PGhuT3qSCQg_35_itg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:50.797 [XNIO-1 task-1] 5q47PGhuT3qSCQg_35_itg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:50.804 [XNIO-1 task-1] feVxLvHDQg6GNTlciJTcQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c, base path is set to: null +07:00:50.804 [XNIO-1 task-1] feVxLvHDQg6GNTlciJTcQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.804 [XNIO-1 task-1] feVxLvHDQg6GNTlciJTcQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.804 [XNIO-1 task-1] feVxLvHDQg6GNTlciJTcQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c, base path is set to: null +07:00:50.805 [XNIO-1 task-1] feVxLvHDQg6GNTlciJTcQg DEBUG com.networknt.schema.TypeValidator debug - validate( "be4170f3-4743-465b-b424-bb4f3b6c2c8c", "be4170f3-4743-465b-b424-bb4f3b6c2c8c", refreshToken) +07:00:50.814 [XNIO-1 task-1] sGuBCuHwSmCwpvrpaAJ5Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.814 [XNIO-1 task-1] sGuBCuHwSmCwpvrpaAJ5Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.814 [XNIO-1 task-1] sGuBCuHwSmCwpvrpaAJ5Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.815 [XNIO-1 task-1] sGuBCuHwSmCwpvrpaAJ5Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.815 [XNIO-1 task-1] sGuBCuHwSmCwpvrpaAJ5Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea4b92e-500a-442b-89e2-b00cde0af762", "4ea4b92e-500a-442b-89e2-b00cde0af762", refreshToken) +07:00:50.815 [XNIO-1 task-1] sGuBCuHwSmCwpvrpaAJ5Hg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4ea4b92e-500a-442b-89e2-b00cde0af762 is not found.","severity":"ERROR"} +07:00:50.822 [XNIO-1 task-1] EV-mAQj6ROyUKRwArGVgfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.822 [XNIO-1 task-1] EV-mAQj6ROyUKRwArGVgfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.822 [XNIO-1 task-1] EV-mAQj6ROyUKRwArGVgfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.823 [XNIO-1 task-1] EV-mAQj6ROyUKRwArGVgfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.831 [XNIO-1 task-1] mt89T79mSE-aYZnv9wlMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.831 [XNIO-1 task-1] mt89T79mSE-aYZnv9wlMyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.831 [XNIO-1 task-1] mt89T79mSE-aYZnv9wlMyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.832 [XNIO-1 task-1] mt89T79mSE-aYZnv9wlMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.832 [XNIO-1 task-1] mt89T79mSE-aYZnv9wlMyA DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.832 [XNIO-1 task-1] mt89T79mSE-aYZnv9wlMyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 82b14ba3-e517-49aa-8285-6663bfe5a4ad is not found.","severity":"ERROR"} +07:00:50.834 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:faa2d756 +07:00:50.835 [XNIO-1 task-1] Cu2f-dLaRFe0b5DgvnPkoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:50.835 [XNIO-1 task-1] Cu2f-dLaRFe0b5DgvnPkoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.835 [XNIO-1 task-1] Cu2f-dLaRFe0b5DgvnPkoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.835 [XNIO-1 task-1] Cu2f-dLaRFe0b5DgvnPkoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:50.836 [XNIO-1 task-1] Cu2f-dLaRFe0b5DgvnPkoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:50.842 [XNIO-1 task-1] iZpWR68ESpyWI1OXe_i_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.842 [XNIO-1 task-1] iZpWR68ESpyWI1OXe_i_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.842 [XNIO-1 task-1] iZpWR68ESpyWI1OXe_i_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.842 [XNIO-1 task-1] iZpWR68ESpyWI1OXe_i_AQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.873 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5a827e8e +07:00:50.881 [XNIO-1 task-1] ff1WPQhgRhO5xT6eEeSilQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.882 [XNIO-1 task-1] ff1WPQhgRhO5xT6eEeSilQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.882 [XNIO-1 task-1] ff1WPQhgRhO5xT6eEeSilQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.882 [XNIO-1 task-1] ff1WPQhgRhO5xT6eEeSilQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:50.882 [XNIO-1 task-1] ff1WPQhgRhO5xT6eEeSilQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea4b92e-500a-442b-89e2-b00cde0af762", "4ea4b92e-500a-442b-89e2-b00cde0af762", refreshToken) +07:00:50.882 [XNIO-1 task-1] ff1WPQhgRhO5xT6eEeSilQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4ea4b92e-500a-442b-89e2-b00cde0af762 is not found.","severity":"ERROR"} +07:00:50.886 [XNIO-1 task-1] __4AMhRNR66j1L4NBYbN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.886 [XNIO-1 task-1] __4AMhRNR66j1L4NBYbN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.886 [XNIO-1 task-1] __4AMhRNR66j1L4NBYbN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.887 [XNIO-1 task-1] __4AMhRNR66j1L4NBYbN6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.893 [XNIO-1 task-1] 02IMLeivTDSGNvVExS6RSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.894 [XNIO-1 task-1] 02IMLeivTDSGNvVExS6RSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.895 [XNIO-1 task-1] 02IMLeivTDSGNvVExS6RSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.895 [XNIO-1 task-1] 02IMLeivTDSGNvVExS6RSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.895 [XNIO-1 task-1] 02IMLeivTDSGNvVExS6RSg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.904 [XNIO-1 task-1] UK7RrnS6QFG5Bi1DhcPGKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.904 [XNIO-1 task-1] UK7RrnS6QFG5Bi1DhcPGKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.905 [XNIO-1 task-1] UK7RrnS6QFG5Bi1DhcPGKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.905 [XNIO-1 task-1] UK7RrnS6QFG5Bi1DhcPGKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.911 [XNIO-1 task-1] dlZcUXArRhy7TxczfEFT9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.911 [XNIO-1 task-1] dlZcUXArRhy7TxczfEFT9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.911 [XNIO-1 task-1] dlZcUXArRhy7TxczfEFT9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.911 [XNIO-1 task-1] dlZcUXArRhy7TxczfEFT9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.911 [XNIO-1 task-1] dlZcUXArRhy7TxczfEFT9g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.919 [XNIO-1 task-1] 7czTDX-zTrO2cg-4M6loBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.919 [XNIO-1 task-1] 7czTDX-zTrO2cg-4M6loBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.919 [XNIO-1 task-1] 7czTDX-zTrO2cg-4M6loBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.919 [XNIO-1 task-1] 7czTDX-zTrO2cg-4M6loBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.920 [XNIO-1 task-1] 7czTDX-zTrO2cg-4M6loBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 82b14ba3-e517-49aa-8285-6663bfe5a4ad +07:00:50.929 [XNIO-1 task-1] gSAT52_jQFG7GVSFj9APjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.930 [XNIO-1 task-1] gSAT52_jQFG7GVSFj9APjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.930 [XNIO-1 task-1] gSAT52_jQFG7GVSFj9APjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:50.931 [XNIO-1 task-1] gSAT52_jQFG7GVSFj9APjw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:50.931 [XNIO-1 task-1] gSAT52_jQFG7GVSFj9APjw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:50.940 [XNIO-1 task-1] 63TRhRawTkqMJjJIBO9yaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:50.940 [XNIO-1 task-1] 63TRhRawTkqMJjJIBO9yaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.940 [XNIO-1 task-1] 63TRhRawTkqMJjJIBO9yaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.941 [XNIO-1 task-1] 63TRhRawTkqMJjJIBO9yaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:50.941 [XNIO-1 task-1] 63TRhRawTkqMJjJIBO9yaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:50.960 [XNIO-1 task-1] 6mzkCtYJQQyf0fvCNXlC1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.960 [XNIO-1 task-1] 6mzkCtYJQQyf0fvCNXlC1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.960 [XNIO-1 task-1] 6mzkCtYJQQyf0fvCNXlC1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.960 [XNIO-1 task-1] 6mzkCtYJQQyf0fvCNXlC1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:50.961 [XNIO-1 task-1] 6mzkCtYJQQyf0fvCNXlC1g DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:50.961 [XNIO-1 task-1] 6mzkCtYJQQyf0fvCNXlC1g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 82b14ba3-e517-49aa-8285-6663bfe5a4ad is not found.","severity":"ERROR"} +07:00:50.964 [XNIO-1 task-1] XyNNRSxEQnWl8svf_Owjxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:50.964 [XNIO-1 task-1] XyNNRSxEQnWl8svf_Owjxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.964 [XNIO-1 task-1] XyNNRSxEQnWl8svf_Owjxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.964 [XNIO-1 task-1] XyNNRSxEQnWl8svf_Owjxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:50.964 [XNIO-1 task-1] XyNNRSxEQnWl8svf_Owjxw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:50.970 [XNIO-1 task-1] A1UDoa3rTZWnCRL7ii1c1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b021613-4e9a-473e-8c08-e8eefd91134e +07:00:50.971 [XNIO-1 task-1] A1UDoa3rTZWnCRL7ii1c1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.971 [XNIO-1 task-1] A1UDoa3rTZWnCRL7ii1c1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:50.971 [XNIO-1 task-1] A1UDoa3rTZWnCRL7ii1c1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b021613-4e9a-473e-8c08-e8eefd91134e +07:00:50.972 [XNIO-1 task-1] A1UDoa3rTZWnCRL7ii1c1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9b021613-4e9a-473e-8c08-e8eefd91134e +07:00:50.986 [XNIO-1 task-1] XV85Gq_TTwGggDo46_1XLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.986 [XNIO-1 task-1] XV85Gq_TTwGggDo46_1XLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.986 [XNIO-1 task-1] XV85Gq_TTwGggDo46_1XLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:50.986 [XNIO-1 task-1] XV85Gq_TTwGggDo46_1XLg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:50.995 [XNIO-1 task-1] X3d3GWCfQ4yVMsdO1GWwAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.995 [XNIO-1 task-1] X3d3GWCfQ4yVMsdO1GWwAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:50.995 [XNIO-1 task-1] X3d3GWCfQ4yVMsdO1GWwAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:50.996 [XNIO-1 task-1] X3d3GWCfQ4yVMsdO1GWwAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:50.996 [XNIO-1 task-1] X3d3GWCfQ4yVMsdO1GWwAw DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:50.996 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:51.000 [XNIO-1 task-1] P90TELkLQ3Wn9tTohSqP5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.000 [XNIO-1 task-1] P90TELkLQ3Wn9tTohSqP5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.001 [XNIO-1 task-1] P90TELkLQ3Wn9tTohSqP5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.001 [XNIO-1 task-1] P90TELkLQ3Wn9tTohSqP5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.001 [XNIO-1 task-1] P90TELkLQ3Wn9tTohSqP5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.008 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a9cfba9a +07:00:51.010 [XNIO-1 task-1] 6TwFrV_PQFi7xt5Iz7C2ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.011 [XNIO-1 task-1] 6TwFrV_PQFi7xt5Iz7C2ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.011 [XNIO-1 task-1] 6TwFrV_PQFi7xt5Iz7C2ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.011 [XNIO-1 task-1] 6TwFrV_PQFi7xt5Iz7C2ng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.014 [XNIO-1 task-1] 6TwFrV_PQFi7xt5Iz7C2ng DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.022 [XNIO-1 task-1] BnSclgkbQCmflVehkEGB3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.022 [XNIO-1 task-1] BnSclgkbQCmflVehkEGB3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.023 [XNIO-1 task-1] BnSclgkbQCmflVehkEGB3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.023 [XNIO-1 task-1] BnSclgkbQCmflVehkEGB3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.031 [XNIO-1 task-1] WJFw5BI3QHi92yOKuU0sAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.031 [XNIO-1 task-1] WJFw5BI3QHi92yOKuU0sAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.032 [XNIO-1 task-1] WJFw5BI3QHi92yOKuU0sAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.032 [XNIO-1 task-1] WJFw5BI3QHi92yOKuU0sAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.032 [XNIO-1 task-1] WJFw5BI3QHi92yOKuU0sAA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.036 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:668d498d-665b-414d-a937-1f660d1b87b2 +07:00:51.042 [XNIO-1 task-1] YVoFjmj5TCy0QlA2vSPhMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.042 [XNIO-1 task-1] YVoFjmj5TCy0QlA2vSPhMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.042 [XNIO-1 task-1] YVoFjmj5TCy0QlA2vSPhMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.042 [XNIO-1 task-1] YVoFjmj5TCy0QlA2vSPhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.043 [XNIO-1 task-1] YVoFjmj5TCy0QlA2vSPhMg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.047 [XNIO-1 task-1] u9Kk-TxiTQO4ZatLyt86VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.047 [XNIO-1 task-1] u9Kk-TxiTQO4ZatLyt86VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.047 [XNIO-1 task-1] u9Kk-TxiTQO4ZatLyt86VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.048 [XNIO-1 task-1] u9Kk-TxiTQO4ZatLyt86VQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.058 [XNIO-1 task-1] kGWDP2IrQ46Ny3JJCc47eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.058 [XNIO-1 task-1] kGWDP2IrQ46Ny3JJCc47eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.058 [XNIO-1 task-1] kGWDP2IrQ46Ny3JJCc47eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.059 [XNIO-1 task-1] kGWDP2IrQ46Ny3JJCc47eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.059 [XNIO-1 task-1] kGWDP2IrQ46Ny3JJCc47eA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b45df80-5389-4d46-82d0-dbf0987e37de", "9b45df80-5389-4d46-82d0-dbf0987e37de", refreshToken) +07:00:51.072 [XNIO-1 task-1] UlJUUIgKREe0XsUqC78xYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b021613-4e9a-473e-8c08-e8eefd91134e, base path is set to: null +07:00:51.072 [XNIO-1 task-1] UlJUUIgKREe0XsUqC78xYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.072 [XNIO-1 task-1] UlJUUIgKREe0XsUqC78xYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.072 [XNIO-1 task-1] UlJUUIgKREe0XsUqC78xYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b021613-4e9a-473e-8c08-e8eefd91134e, base path is set to: null +07:00:51.074 [XNIO-1 task-1] UlJUUIgKREe0XsUqC78xYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b021613-4e9a-473e-8c08-e8eefd91134e +07:00:51.074 [XNIO-1 task-1] UlJUUIgKREe0XsUqC78xYA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b021613-4e9a-473e-8c08-e8eefd91134e", "9b021613-4e9a-473e-8c08-e8eefd91134e", refreshToken) +07:00:51.077 [XNIO-1 task-1] UlJUUIgKREe0XsUqC78xYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9b021613-4e9a-473e-8c08-e8eefd91134e is not found.","severity":"ERROR"} +07:00:51.085 [XNIO-1 task-1] RSk9-dodRtmMAbjP3Crplg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.085 [XNIO-1 task-1] RSk9-dodRtmMAbjP3Crplg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.085 [XNIO-1 task-1] RSk9-dodRtmMAbjP3Crplg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.085 [XNIO-1 task-1] RSk9-dodRtmMAbjP3Crplg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.086 [XNIO-1 task-1] RSk9-dodRtmMAbjP3Crplg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.091 [XNIO-1 task-1] YlHjBywjRc-d3VP3jM8ZqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.091 [XNIO-1 task-1] YlHjBywjRc-d3VP3jM8ZqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.091 [XNIO-1 task-1] YlHjBywjRc-d3VP3jM8ZqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.091 [XNIO-1 task-1] YlHjBywjRc-d3VP3jM8ZqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.092 [XNIO-1 task-1] YlHjBywjRc-d3VP3jM8ZqA DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:51.092 [XNIO-1 task-1] YlHjBywjRc-d3VP3jM8ZqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:51.096 [XNIO-1 task-1] tV2YNpw1QZWfYZyfGSslkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.096 [XNIO-1 task-1] tV2YNpw1QZWfYZyfGSslkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.097 [XNIO-1 task-1] tV2YNpw1QZWfYZyfGSslkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.097 [XNIO-1 task-1] tV2YNpw1QZWfYZyfGSslkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.097 [XNIO-1 task-1] tV2YNpw1QZWfYZyfGSslkg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.102 [XNIO-1 task-1] -k-XoMlMSvaeasKltXh_fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.102 [XNIO-1 task-1] -k-XoMlMSvaeasKltXh_fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.103 [XNIO-1 task-1] -k-XoMlMSvaeasKltXh_fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.103 [XNIO-1 task-1] -k-XoMlMSvaeasKltXh_fA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.113 [XNIO-1 task-1] dXVxU3qIQkm0P_gTxWpsdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.114 [XNIO-1 task-1] dXVxU3qIQkm0P_gTxWpsdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.115 [XNIO-1 task-1] dXVxU3qIQkm0P_gTxWpsdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.115 [XNIO-1 task-1] dXVxU3qIQkm0P_gTxWpsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.116 [XNIO-1 task-1] dXVxU3qIQkm0P_gTxWpsdg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.127 [XNIO-1 task-1] -kk08OEjQuq7ShndibuZ7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.127 [XNIO-1 task-1] -kk08OEjQuq7ShndibuZ7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.127 [XNIO-1 task-1] -kk08OEjQuq7ShndibuZ7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.127 [XNIO-1 task-1] -kk08OEjQuq7ShndibuZ7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.127 [XNIO-1 task-1] -kk08OEjQuq7ShndibuZ7w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.142 [XNIO-1 task-1] 6ZDlLxhASg-fOoDorkqnPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032, base path is set to: null +07:00:51.142 [XNIO-1 task-1] 6ZDlLxhASg-fOoDorkqnPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.143 [XNIO-1 task-1] 6ZDlLxhASg-fOoDorkqnPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.143 [XNIO-1 task-1] 6ZDlLxhASg-fOoDorkqnPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032, base path is set to: null +07:00:51.143 [XNIO-1 task-1] 6ZDlLxhASg-fOoDorkqnPg DEBUG com.networknt.schema.TypeValidator debug - validate( "483b55a5-eb31-4437-ba5d-4cdef4c96032", "483b55a5-eb31-4437-ba5d-4cdef4c96032", refreshToken) +07:00:51.144 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.146 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b2f678d2-e750-49c4-8a0a-f9289d5cece8 +07:00:51.147 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b2f678d2-e750-49c4-8a0a-f9289d5cece8 +07:00:51.149 [XNIO-1 task-1] 2C-Ov1ScROWFY7fGKzuRSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.149 [XNIO-1 task-1] 2C-Ov1ScROWFY7fGKzuRSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.149 [XNIO-1 task-1] 2C-Ov1ScROWFY7fGKzuRSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.149 [XNIO-1 task-1] 2C-Ov1ScROWFY7fGKzuRSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.150 [XNIO-1 task-1] 2C-Ov1ScROWFY7fGKzuRSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.157 [XNIO-1 task-1] 2C-Ov1ScROWFY7fGKzuRSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 483b55a5-eb31-4437-ba5d-4cdef4c96032 is not found.","severity":"ERROR"} +07:00:51.166 [XNIO-1 task-1] Zd1Pr-QuSi6fPDTof_yTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.166 [XNIO-1 task-1] Zd1Pr-QuSi6fPDTof_yTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.167 [XNIO-1 task-1] Zd1Pr-QuSi6fPDTof_yTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.167 [XNIO-1 task-1] Zd1Pr-QuSi6fPDTof_yTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.167 [XNIO-1 task-1] Zd1Pr-QuSi6fPDTof_yTYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.168 [XNIO-1 task-1] Zd1Pr-QuSi6fPDTof_yTYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 483b55a5-eb31-4437-ba5d-4cdef4c96032 is not found.","severity":"ERROR"} +07:00:51.171 [XNIO-1 task-1] YDKa3zvXRcqPMnz897Gkgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.171 [XNIO-1 task-1] YDKa3zvXRcqPMnz897Gkgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.172 [XNIO-1 task-1] YDKa3zvXRcqPMnz897Gkgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.172 [XNIO-1 task-1] YDKa3zvXRcqPMnz897Gkgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.184 [XNIO-1 task-1] _9WiojNATM68jzvJRTwQtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.184 [XNIO-1 task-1] _9WiojNATM68jzvJRTwQtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.185 [XNIO-1 task-1] _9WiojNATM68jzvJRTwQtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.185 [XNIO-1 task-1] _9WiojNATM68jzvJRTwQtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.185 [XNIO-1 task-1] _9WiojNATM68jzvJRTwQtA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.194 [XNIO-1 task-1] NcjlLYLzSpCGgUsr0H6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.194 [XNIO-1 task-1] NcjlLYLzSpCGgUsr0H6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.194 [XNIO-1 task-1] NcjlLYLzSpCGgUsr0H6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.195 [XNIO-1 task-1] NcjlLYLzSpCGgUsr0H6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.195 [XNIO-1 task-1] NcjlLYLzSpCGgUsr0H6nVA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.196 [XNIO-1 task-1] NcjlLYLzSpCGgUsr0H6nVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 483b55a5-eb31-4437-ba5d-4cdef4c96032 is not found.","severity":"ERROR"} +07:00:51.201 [XNIO-1 task-1] I-cIy9IuT6GQRoQmMjbArQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.202 [XNIO-1 task-1] I-cIy9IuT6GQRoQmMjbArQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.202 [XNIO-1 task-1] I-cIy9IuT6GQRoQmMjbArQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.202 [XNIO-1 task-1] I-cIy9IuT6GQRoQmMjbArQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.203 [XNIO-1 task-1] I-cIy9IuT6GQRoQmMjbArQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.206 [XNIO-1 task-1] I-cIy9IuT6GQRoQmMjbArQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 483b55a5-eb31-4437-ba5d-4cdef4c96032 is not found.","severity":"ERROR"} +07:00:51.214 [XNIO-1 task-1] Nhsb7BotSiCYHVrz1gA49w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.214 [XNIO-1 task-1] Nhsb7BotSiCYHVrz1gA49w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.215 [XNIO-1 task-1] Nhsb7BotSiCYHVrz1gA49w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.215 [XNIO-1 task-1] Nhsb7BotSiCYHVrz1gA49w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.215 [XNIO-1 task-1] Nhsb7BotSiCYHVrz1gA49w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.217 [XNIO-1 task-1] Nhsb7BotSiCYHVrz1gA49w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 483b55a5-eb31-4437-ba5d-4cdef4c96032 is not found.","severity":"ERROR"} +07:00:51.221 [XNIO-1 task-1] zZocOuVtSsmweNrpVJRztQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.221 [XNIO-1 task-1] zZocOuVtSsmweNrpVJRztQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.221 [XNIO-1 task-1] zZocOuVtSsmweNrpVJRztQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.222 [XNIO-1 task-1] zZocOuVtSsmweNrpVJRztQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.238 [XNIO-1 task-1] ChOiOGASRmqxsIu1QkSBwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032, base path is set to: null +07:00:51.239 [XNIO-1 task-1] ChOiOGASRmqxsIu1QkSBwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.239 [XNIO-1 task-1] ChOiOGASRmqxsIu1QkSBwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.239 [XNIO-1 task-1] ChOiOGASRmqxsIu1QkSBwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032, base path is set to: null +07:00:51.239 [XNIO-1 task-1] ChOiOGASRmqxsIu1QkSBwA DEBUG com.networknt.schema.TypeValidator debug - validate( "483b55a5-eb31-4437-ba5d-4cdef4c96032", "483b55a5-eb31-4437-ba5d-4cdef4c96032", refreshToken) +07:00:51.240 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.245 [XNIO-1 task-1] 2A6hoqKUSSGnZbw6jJoD9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032, base path is set to: null +07:00:51.246 [XNIO-1 task-1] 2A6hoqKUSSGnZbw6jJoD9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.246 [XNIO-1 task-1] 2A6hoqKUSSGnZbw6jJoD9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.247 [XNIO-1 task-1] 2A6hoqKUSSGnZbw6jJoD9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032, base path is set to: null +07:00:51.247 [XNIO-1 task-1] 2A6hoqKUSSGnZbw6jJoD9A DEBUG com.networknt.schema.TypeValidator debug - validate( "483b55a5-eb31-4437-ba5d-4cdef4c96032", "483b55a5-eb31-4437-ba5d-4cdef4c96032", refreshToken) +07:00:51.247 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.253 [XNIO-1 task-1] KG2PlPuyQ-yABiHiJKTEBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.254 [XNIO-1 task-1] KG2PlPuyQ-yABiHiJKTEBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.254 [XNIO-1 task-1] KG2PlPuyQ-yABiHiJKTEBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.254 [XNIO-1 task-1] KG2PlPuyQ-yABiHiJKTEBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.256 [XNIO-1 task-1] KG2PlPuyQ-yABiHiJKTEBw DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:51.256 [XNIO-1 task-1] KG2PlPuyQ-yABiHiJKTEBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:51.267 [XNIO-1 task-1] 4GDEp14NSvmZ5ikkIjMmTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.267 [XNIO-1 task-1] 4GDEp14NSvmZ5ikkIjMmTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.268 [XNIO-1 task-1] 4GDEp14NSvmZ5ikkIjMmTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.268 [XNIO-1 task-1] 4GDEp14NSvmZ5ikkIjMmTA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.277 [XNIO-1 task-1] GwzTnF-qS8yRzhtwhCyACw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.278 [XNIO-1 task-1] GwzTnF-qS8yRzhtwhCyACw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.278 [XNIO-1 task-1] GwzTnF-qS8yRzhtwhCyACw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.278 [XNIO-1 task-1] GwzTnF-qS8yRzhtwhCyACw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.278 [XNIO-1 task-1] GwzTnF-qS8yRzhtwhCyACw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.284 [XNIO-1 task-1] ebDhaxOSSea7AGtO2f2zyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.284 [XNIO-1 task-1] ebDhaxOSSea7AGtO2f2zyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.284 [XNIO-1 task-1] ebDhaxOSSea7AGtO2f2zyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.284 [XNIO-1 task-1] ebDhaxOSSea7AGtO2f2zyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.291 [XNIO-1 task-1] TRio9JTeQEmW_qwdBKh0Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.292 [XNIO-1 task-1] TRio9JTeQEmW_qwdBKh0Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.292 [XNIO-1 task-1] TRio9JTeQEmW_qwdBKh0Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.292 [XNIO-1 task-1] TRio9JTeQEmW_qwdBKh0Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.292 [XNIO-1 task-1] TRio9JTeQEmW_qwdBKh0Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:51.292 [XNIO-1 task-1] TRio9JTeQEmW_qwdBKh0Bg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:51.301 [XNIO-1 task-1] p8-23dzxSn2DiKRqs0oRaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.301 [XNIO-1 task-1] p8-23dzxSn2DiKRqs0oRaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.301 [XNIO-1 task-1] p8-23dzxSn2DiKRqs0oRaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.301 [XNIO-1 task-1] p8-23dzxSn2DiKRqs0oRaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.302 [XNIO-1 task-1] p8-23dzxSn2DiKRqs0oRaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.307 [XNIO-1 task-1] szMYj5qUR26wvgnxrYPYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.307 [XNIO-1 task-1] szMYj5qUR26wvgnxrYPYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.307 [XNIO-1 task-1] szMYj5qUR26wvgnxrYPYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.307 [XNIO-1 task-1] szMYj5qUR26wvgnxrYPYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.308 [XNIO-1 task-1] szMYj5qUR26wvgnxrYPYCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 483b55a5-eb31-4437-ba5d-4cdef4c96032 +07:00:51.309 [XNIO-1 task-1] szMYj5qUR26wvgnxrYPYCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 483b55a5-eb31-4437-ba5d-4cdef4c96032 is not found.","severity":"ERROR"} +07:00:51.317 [XNIO-1 task-1] eN55Ap5LS4qrRvpylB8FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.317 [XNIO-1 task-1] eN55Ap5LS4qrRvpylB8FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.317 [XNIO-1 task-1] eN55Ap5LS4qrRvpylB8FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.317 [XNIO-1 task-1] eN55Ap5LS4qrRvpylB8FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.317 [XNIO-1 task-1] eN55Ap5LS4qrRvpylB8FaA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.321 [XNIO-1 task-1] 0NKAgxNGRNWAoNKAbRYbFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/060c44e7-994d-47b6-8936-588511851b4a, base path is set to: null +07:00:51.321 [XNIO-1 task-1] 0NKAgxNGRNWAoNKAbRYbFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.322 [XNIO-1 task-1] 0NKAgxNGRNWAoNKAbRYbFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.322 [XNIO-1 task-1] 0NKAgxNGRNWAoNKAbRYbFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/060c44e7-994d-47b6-8936-588511851b4a, base path is set to: null +07:00:51.322 [XNIO-1 task-1] 0NKAgxNGRNWAoNKAbRYbFw DEBUG com.networknt.schema.TypeValidator debug - validate( "060c44e7-994d-47b6-8936-588511851b4a", "060c44e7-994d-47b6-8936-588511851b4a", refreshToken) +07:00:51.327 [XNIO-1 task-1] u8UgeIDxRO6Sa0c8onNj8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.327 [XNIO-1 task-1] u8UgeIDxRO6Sa0c8onNj8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.327 [XNIO-1 task-1] u8UgeIDxRO6Sa0c8onNj8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.327 [XNIO-1 task-1] u8UgeIDxRO6Sa0c8onNj8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.327 [XNIO-1 task-1] u8UgeIDxRO6Sa0c8onNj8w DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:51.328 [XNIO-1 task-1] u8UgeIDxRO6Sa0c8onNj8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:51.334 [XNIO-1 task-1] DG0pjtzLQam5SWH7UTVzqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.334 [XNIO-1 task-1] DG0pjtzLQam5SWH7UTVzqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.334 [XNIO-1 task-1] DG0pjtzLQam5SWH7UTVzqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.335 [XNIO-1 task-1] DG0pjtzLQam5SWH7UTVzqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.335 [XNIO-1 task-1] DG0pjtzLQam5SWH7UTVzqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.348 [XNIO-1 task-1] YO1l5xuQR8-gt3OWOeMrBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.348 [XNIO-1 task-1] YO1l5xuQR8-gt3OWOeMrBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.349 [XNIO-1 task-1] YO1l5xuQR8-gt3OWOeMrBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.349 [XNIO-1 task-1] YO1l5xuQR8-gt3OWOeMrBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.349 [XNIO-1 task-1] YO1l5xuQR8-gt3OWOeMrBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.354 [XNIO-1 task-1] pPrA5g4WQzO4_YEutGxtrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:51.354 [XNIO-1 task-1] pPrA5g4WQzO4_YEutGxtrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.354 [XNIO-1 task-1] pPrA5g4WQzO4_YEutGxtrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.354 [XNIO-1 task-1] pPrA5g4WQzO4_YEutGxtrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:51.355 [XNIO-1 task-1] pPrA5g4WQzO4_YEutGxtrA DEBUG com.networknt.schema.TypeValidator debug - validate( "7fb471a0-5264-42f0-babc-5367d202ccad", "7fb471a0-5264-42f0-babc-5367d202ccad", refreshToken) +07:00:51.369 [XNIO-1 task-1] hCKlI11TQlemLKq2Y8HeBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2, base path is set to: null +07:00:51.369 [XNIO-1 task-1] hCKlI11TQlemLKq2Y8HeBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.369 [XNIO-1 task-1] hCKlI11TQlemLKq2Y8HeBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.369 [XNIO-1 task-1] hCKlI11TQlemLKq2Y8HeBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2, base path is set to: null +07:00:51.370 [XNIO-1 task-1] hCKlI11TQlemLKq2Y8HeBg DEBUG com.networknt.schema.TypeValidator debug - validate( "60ba3c04-849a-4df5-9378-58694ecc9cd2", "60ba3c04-849a-4df5-9378-58694ecc9cd2", refreshToken) +07:00:51.385 [XNIO-1 task-1] fCZPZSHpSfuTGi1Td0Q1jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.386 [XNIO-1 task-1] fCZPZSHpSfuTGi1Td0Q1jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.386 [XNIO-1 task-1] fCZPZSHpSfuTGi1Td0Q1jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.386 [XNIO-1 task-1] fCZPZSHpSfuTGi1Td0Q1jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.390 [XNIO-1 task-1] fCZPZSHpSfuTGi1Td0Q1jQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.400 [XNIO-1 task-1] aS9g1BO6SrWZMtZd_M0Dtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:51.400 [XNIO-1 task-1] aS9g1BO6SrWZMtZd_M0Dtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.400 [XNIO-1 task-1] aS9g1BO6SrWZMtZd_M0Dtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.400 [XNIO-1 task-1] aS9g1BO6SrWZMtZd_M0Dtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:51.400 [XNIO-1 task-1] aS9g1BO6SrWZMtZd_M0Dtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:51.417 [XNIO-1 task-1] kETRFGCcQ0K5TKPvuwYaag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:51.417 [XNIO-1 task-1] kETRFGCcQ0K5TKPvuwYaag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.417 [XNIO-1 task-1] kETRFGCcQ0K5TKPvuwYaag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.417 [XNIO-1 task-1] kETRFGCcQ0K5TKPvuwYaag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:51.418 [XNIO-1 task-1] kETRFGCcQ0K5TKPvuwYaag DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea4b92e-500a-442b-89e2-b00cde0af762", "4ea4b92e-500a-442b-89e2-b00cde0af762", refreshToken) +07:00:51.418 [XNIO-1 task-1] kETRFGCcQ0K5TKPvuwYaag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4ea4b92e-500a-442b-89e2-b00cde0af762 is not found.","severity":"ERROR"} +07:00:51.421 [XNIO-1 task-1] B_gL6p5FTVK5wKzirrQqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad +07:00:51.421 [XNIO-1 task-1] B_gL6p5FTVK5wKzirrQqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.421 [XNIO-1 task-1] B_gL6p5FTVK5wKzirrQqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.421 [XNIO-1 task-1] B_gL6p5FTVK5wKzirrQqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad +07:00:51.422 [XNIO-1 task-1] B_gL6p5FTVK5wKzirrQqlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7fb471a0-5264-42f0-babc-5367d202ccad +07:00:51.429 [XNIO-1 task-1] ow2nv3ZkQTmqY5vEqgu4nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2, base path is set to: null +07:00:51.430 [XNIO-1 task-1] ow2nv3ZkQTmqY5vEqgu4nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.430 [XNIO-1 task-1] ow2nv3ZkQTmqY5vEqgu4nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.430 [XNIO-1 task-1] ow2nv3ZkQTmqY5vEqgu4nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2, base path is set to: null +07:00:51.430 [XNIO-1 task-1] ow2nv3ZkQTmqY5vEqgu4nw DEBUG com.networknt.schema.TypeValidator debug - validate( "60ba3c04-849a-4df5-9378-58694ecc9cd2", "60ba3c04-849a-4df5-9378-58694ecc9cd2", refreshToken) +07:00:51.438 [XNIO-1 task-1] 5hhfGo40SOyzJkiEylgkFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:51.439 [XNIO-1 task-1] 5hhfGo40SOyzJkiEylgkFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.439 [XNIO-1 task-1] 5hhfGo40SOyzJkiEylgkFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.439 [XNIO-1 task-1] 5hhfGo40SOyzJkiEylgkFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/82b14ba3-e517-49aa-8285-6663bfe5a4ad, base path is set to: null +07:00:51.439 [XNIO-1 task-1] 5hhfGo40SOyzJkiEylgkFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82b14ba3-e517-49aa-8285-6663bfe5a4ad", "82b14ba3-e517-49aa-8285-6663bfe5a4ad", refreshToken) +07:00:51.439 [XNIO-1 task-1] 5hhfGo40SOyzJkiEylgkFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 82b14ba3-e517-49aa-8285-6663bfe5a4ad is not found.","severity":"ERROR"} +07:00:51.443 [XNIO-1 task-1] dPuFFHrBS-ifhaaWdz8h6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.443 [XNIO-1 task-1] dPuFFHrBS-ifhaaWdz8h6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.444 [XNIO-1 task-1] dPuFFHrBS-ifhaaWdz8h6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.447 [XNIO-1 task-1] dPuFFHrBS-ifhaaWdz8h6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.453 [XNIO-1 task-1] LZHtcwzDRF-NZGybxLocQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.453 [XNIO-1 task-1] LZHtcwzDRF-NZGybxLocQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.454 [XNIO-1 task-1] LZHtcwzDRF-NZGybxLocQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.454 [XNIO-1 task-1] LZHtcwzDRF-NZGybxLocQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.454 [XNIO-1 task-1] LZHtcwzDRF-NZGybxLocQg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.466 [XNIO-1 task-1] 5K_lO9lkTQ2D_zxAYWsp-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.466 [XNIO-1 task-1] 5K_lO9lkTQ2D_zxAYWsp-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.466 [XNIO-1 task-1] 5K_lO9lkTQ2D_zxAYWsp-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.466 [XNIO-1 task-1] 5K_lO9lkTQ2D_zxAYWsp-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.476 [XNIO-1 task-1] NuU6ZMd-R5Go6E7I0BhCxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.476 [XNIO-1 task-1] NuU6ZMd-R5Go6E7I0BhCxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.476 [XNIO-1 task-1] NuU6ZMd-R5Go6E7I0BhCxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.477 [XNIO-1 task-1] NuU6ZMd-R5Go6E7I0BhCxw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.477 [XNIO-1 task-1] NuU6ZMd-R5Go6E7I0BhCxw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.486 [XNIO-1 task-1] K1BD2jyEQeGexr3I7oc34Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.487 [XNIO-1 task-1] K1BD2jyEQeGexr3I7oc34Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.487 [XNIO-1 task-1] K1BD2jyEQeGexr3I7oc34Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.487 [XNIO-1 task-1] K1BD2jyEQeGexr3I7oc34Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.487 [XNIO-1 task-1] K1BD2jyEQeGexr3I7oc34Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.498 [XNIO-1 task-1] 54F0e5IkS-m685SA7rStlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.498 [XNIO-1 task-1] 54F0e5IkS-m685SA7rStlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.499 [XNIO-1 task-1] 54F0e5IkS-m685SA7rStlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.499 [XNIO-1 task-1] 54F0e5IkS-m685SA7rStlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.507 [XNIO-1 task-1] 8KFsfpbGQxaSOe1kvk4hLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.507 [XNIO-1 task-1] 8KFsfpbGQxaSOe1kvk4hLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.508 [XNIO-1 task-1] 8KFsfpbGQxaSOe1kvk4hLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.508 [XNIO-1 task-1] 8KFsfpbGQxaSOe1kvk4hLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.508 [XNIO-1 task-1] 8KFsfpbGQxaSOe1kvk4hLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.519 [XNIO-1 task-1] qFC_UbgNR2S2z8y2jbyxYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.519 [XNIO-1 task-1] qFC_UbgNR2S2z8y2jbyxYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.519 [XNIO-1 task-1] qFC_UbgNR2S2z8y2jbyxYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.519 [XNIO-1 task-1] qFC_UbgNR2S2z8y2jbyxYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.528 [XNIO-1 task-1] 61w57TXKRqqOv363gItsbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c, base path is set to: null +07:00:51.528 [XNIO-1 task-1] 61w57TXKRqqOv363gItsbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.528 [XNIO-1 task-1] 61w57TXKRqqOv363gItsbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.529 [XNIO-1 task-1] 61w57TXKRqqOv363gItsbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c, base path is set to: null +07:00:51.529 [XNIO-1 task-1] 61w57TXKRqqOv363gItsbw DEBUG com.networknt.schema.TypeValidator debug - validate( "be4170f3-4743-465b-b424-bb4f3b6c2c8c", "be4170f3-4743-465b-b424-bb4f3b6c2c8c", refreshToken) +07:00:51.529 [XNIO-1 task-1] 61w57TXKRqqOv363gItsbw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be4170f3-4743-465b-b424-bb4f3b6c2c8c is not found.","severity":"ERROR"} +07:00:51.532 [XNIO-1 task-1] rkTCFIq_S2eSAS_RzUvhSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.533 [XNIO-1 task-1] rkTCFIq_S2eSAS_RzUvhSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.533 [XNIO-1 task-1] rkTCFIq_S2eSAS_RzUvhSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.533 [XNIO-1 task-1] rkTCFIq_S2eSAS_RzUvhSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.533 [XNIO-1 task-1] rkTCFIq_S2eSAS_RzUvhSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.542 [XNIO-1 task-1] uj0IOkCLQ0W3-YrEwNdWvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.544 [XNIO-1 task-1] uj0IOkCLQ0W3-YrEwNdWvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.545 [XNIO-1 task-1] uj0IOkCLQ0W3-YrEwNdWvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.546 [XNIO-1 task-1] uj0IOkCLQ0W3-YrEwNdWvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.546 [XNIO-1 task-1] uj0IOkCLQ0W3-YrEwNdWvA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.552 [XNIO-1 task-1] _ycrwLk0TlWlfDxWbicpaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.552 [XNIO-1 task-1] _ycrwLk0TlWlfDxWbicpaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.554 [XNIO-1 task-1] _ycrwLk0TlWlfDxWbicpaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.555 [XNIO-1 task-1] _ycrwLk0TlWlfDxWbicpaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.562 [XNIO-1 task-1] hLnPArrPQ4Ss8Efxu2x2lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.562 [XNIO-1 task-1] hLnPArrPQ4Ss8Efxu2x2lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.563 [XNIO-1 task-1] hLnPArrPQ4Ss8Efxu2x2lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.563 [XNIO-1 task-1] hLnPArrPQ4Ss8Efxu2x2lw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.563 [XNIO-1 task-1] hLnPArrPQ4Ss8Efxu2x2lw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.570 [XNIO-1 task-1] sDPs9iIFSmuvLHvvTFVinQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.571 [XNIO-1 task-1] sDPs9iIFSmuvLHvvTFVinQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.571 [XNIO-1 task-1] sDPs9iIFSmuvLHvvTFVinQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.571 [XNIO-1 task-1] sDPs9iIFSmuvLHvvTFVinQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.582 [XNIO-1 task-1] lOOipVdlRni1Nj5_oE6mFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:51.582 [XNIO-1 task-1] lOOipVdlRni1Nj5_oE6mFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.582 [XNIO-1 task-1] lOOipVdlRni1Nj5_oE6mFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.582 [XNIO-1 task-1] lOOipVdlRni1Nj5_oE6mFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:51.583 [XNIO-1 task-1] lOOipVdlRni1Nj5_oE6mFA DEBUG com.networknt.schema.TypeValidator debug - validate( "7fb471a0-5264-42f0-babc-5367d202ccad", "7fb471a0-5264-42f0-babc-5367d202ccad", refreshToken) +07:00:51.583 [XNIO-1 task-1] lOOipVdlRni1Nj5_oE6mFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7fb471a0-5264-42f0-babc-5367d202ccad is not found.","severity":"ERROR"} +07:00:51.585 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:34fa3ba5-617d-48e7-8986-62edccd0d5c2 +07:00:51.586 [XNIO-1 task-1] xwqsIJZQRG21uMoOf9rosw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.586 [XNIO-1 task-1] xwqsIJZQRG21uMoOf9rosw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.586 [XNIO-1 task-1] xwqsIJZQRG21uMoOf9rosw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.586 [XNIO-1 task-1] xwqsIJZQRG21uMoOf9rosw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.587 [XNIO-1 task-1] xwqsIJZQRG21uMoOf9rosw DEBUG com.networknt.schema.TypeValidator debug - validate( "9b45df80-5389-4d46-82d0-dbf0987e37de", "9b45df80-5389-4d46-82d0-dbf0987e37de", refreshToken) +07:00:51.590 [XNIO-1 task-1] xwqsIJZQRG21uMoOf9rosw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9b45df80-5389-4d46-82d0-dbf0987e37de is not found.","severity":"ERROR"} +07:00:51.598 [XNIO-1 task-1] qiA65J29Symw98ByJNXtyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.598 [XNIO-1 task-1] qiA65J29Symw98ByJNXtyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.598 [XNIO-1 task-1] qiA65J29Symw98ByJNXtyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.599 [XNIO-1 task-1] qiA65J29Symw98ByJNXtyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.604 [XNIO-1 task-1] Zxs95UomS0S2cnt8EhmaRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:51.605 [XNIO-1 task-1] Zxs95UomS0S2cnt8EhmaRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.605 [XNIO-1 task-1] Zxs95UomS0S2cnt8EhmaRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.605 [XNIO-1 task-1] Zxs95UomS0S2cnt8EhmaRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:51.605 [XNIO-1 task-1] Zxs95UomS0S2cnt8EhmaRg DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:51.605 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:51.610 [XNIO-1 task-1] HJfbXzogS6ujLqUAwiFUBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2, base path is set to: null +07:00:51.610 [XNIO-1 task-1] HJfbXzogS6ujLqUAwiFUBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.610 [XNIO-1 task-1] HJfbXzogS6ujLqUAwiFUBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.610 [XNIO-1 task-1] HJfbXzogS6ujLqUAwiFUBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2, base path is set to: null +07:00:51.610 [XNIO-1 task-1] HJfbXzogS6ujLqUAwiFUBg DEBUG com.networknt.schema.TypeValidator debug - validate( "60ba3c04-849a-4df5-9378-58694ecc9cd2", "60ba3c04-849a-4df5-9378-58694ecc9cd2", refreshToken) +07:00:51.617 [XNIO-1 task-1] F-98si9UTr6ZJyoZj3j5Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.617 [XNIO-1 task-1] F-98si9UTr6ZJyoZj3j5Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.617 [XNIO-1 task-1] F-98si9UTr6ZJyoZj3j5Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.618 [XNIO-1 task-1] F-98si9UTr6ZJyoZj3j5Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.618 [XNIO-1 task-1] F-98si9UTr6ZJyoZj3j5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "9b45df80-5389-4d46-82d0-dbf0987e37de", "9b45df80-5389-4d46-82d0-dbf0987e37de", refreshToken) +07:00:51.618 [XNIO-1 task-1] F-98si9UTr6ZJyoZj3j5Ng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9b45df80-5389-4d46-82d0-dbf0987e37de is not found.","severity":"ERROR"} +07:00:51.621 [XNIO-1 task-1] nVRkwS_dQEeU27vFBxLDbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:51.621 [XNIO-1 task-1] nVRkwS_dQEeU27vFBxLDbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.621 [XNIO-1 task-1] nVRkwS_dQEeU27vFBxLDbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.621 [XNIO-1 task-1] nVRkwS_dQEeU27vFBxLDbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:51.621 [XNIO-1 task-1] nVRkwS_dQEeU27vFBxLDbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:51.622 [XNIO-1 task-1] nVRkwS_dQEeU27vFBxLDbQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:51.627 [XNIO-1 task-1] z-JnMEI6SQK5a1CW38ULVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.627 [XNIO-1 task-1] z-JnMEI6SQK5a1CW38ULVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.627 [XNIO-1 task-1] z-JnMEI6SQK5a1CW38ULVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.627 [XNIO-1 task-1] z-JnMEI6SQK5a1CW38ULVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.638 [XNIO-1 task-1] U8mIRgqxQiG0EU5X9XJk6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:51.638 [XNIO-1 task-1] U8mIRgqxQiG0EU5X9XJk6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.639 [XNIO-1 task-1] U8mIRgqxQiG0EU5X9XJk6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.639 [XNIO-1 task-1] U8mIRgqxQiG0EU5X9XJk6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:51.639 [XNIO-1 task-1] U8mIRgqxQiG0EU5X9XJk6g DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea4b92e-500a-442b-89e2-b00cde0af762", "4ea4b92e-500a-442b-89e2-b00cde0af762", refreshToken) +07:00:51.639 [XNIO-1 task-1] U8mIRgqxQiG0EU5X9XJk6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4ea4b92e-500a-442b-89e2-b00cde0af762 is not found.","severity":"ERROR"} +07:00:51.646 [XNIO-1 task-1] sUlrPWlTRGeDFDgXnMsxJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2 +07:00:51.646 [XNIO-1 task-1] sUlrPWlTRGeDFDgXnMsxJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.646 [XNIO-1 task-1] sUlrPWlTRGeDFDgXnMsxJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.646 [XNIO-1 task-1] sUlrPWlTRGeDFDgXnMsxJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2 +07:00:51.646 [XNIO-1 task-1] sUlrPWlTRGeDFDgXnMsxJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 60ba3c04-849a-4df5-9378-58694ecc9cd2 +07:00:51.652 [XNIO-1 task-1] La-orLk7TSmO--o6GaI19g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.652 [XNIO-1 task-1] La-orLk7TSmO--o6GaI19g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.652 [XNIO-1 task-1] La-orLk7TSmO--o6GaI19g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.652 [XNIO-1 task-1] La-orLk7TSmO--o6GaI19g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.652 [XNIO-1 task-1] La-orLk7TSmO--o6GaI19g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.658 [XNIO-1 task-1] XRvKKeuIT4SnD-CaNuPOZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:51.658 [XNIO-1 task-1] XRvKKeuIT4SnD-CaNuPOZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.659 [XNIO-1 task-1] XRvKKeuIT4SnD-CaNuPOZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.659 [XNIO-1 task-1] XRvKKeuIT4SnD-CaNuPOZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:51.659 [XNIO-1 task-1] XRvKKeuIT4SnD-CaNuPOZw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:51.663 [XNIO-1 task-1] irbBRTjGRKiWjrwaV9kKUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.663 [XNIO-1 task-1] irbBRTjGRKiWjrwaV9kKUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.663 [XNIO-1 task-1] irbBRTjGRKiWjrwaV9kKUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.663 [XNIO-1 task-1] irbBRTjGRKiWjrwaV9kKUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.663 [XNIO-1 task-1] irbBRTjGRKiWjrwaV9kKUw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.670 [XNIO-1 task-1] mUAGggg0S5C0k_Z4m1DQow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.670 [XNIO-1 task-1] mUAGggg0S5C0k_Z4m1DQow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.670 [XNIO-1 task-1] mUAGggg0S5C0k_Z4m1DQow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.671 [XNIO-1 task-1] mUAGggg0S5C0k_Z4m1DQow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.678 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8d55fe94-036b-43ca-bd5c-6228e7a165a2 +07:00:51.679 [XNIO-1 task-1] 38eGRNSxR4mJ436FofRv5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.679 [XNIO-1 task-1] 38eGRNSxR4mJ436FofRv5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.680 [XNIO-1 task-1] 38eGRNSxR4mJ436FofRv5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.680 [XNIO-1 task-1] 38eGRNSxR4mJ436FofRv5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.680 [XNIO-1 task-1] 38eGRNSxR4mJ436FofRv5g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.684 [XNIO-1 task-1] FUMhPPPsRK6r44lI-eQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:51.685 [XNIO-1 task-1] FUMhPPPsRK6r44lI-eQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.685 [XNIO-1 task-1] FUMhPPPsRK6r44lI-eQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.685 [XNIO-1 task-1] FUMhPPPsRK6r44lI-eQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:51.685 [XNIO-1 task-1] FUMhPPPsRK6r44lI-eQ0mg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:51.689 [XNIO-1 task-1] zrjbxMv_RmOCqe7FsfjFVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.689 [XNIO-1 task-1] zrjbxMv_RmOCqe7FsfjFVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.689 [XNIO-1 task-1] zrjbxMv_RmOCqe7FsfjFVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.689 [XNIO-1 task-1] zrjbxMv_RmOCqe7FsfjFVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.689 [XNIO-1 task-1] zrjbxMv_RmOCqe7FsfjFVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:51.690 [XNIO-1 task-1] zrjbxMv_RmOCqe7FsfjFVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:51.692 [XNIO-1 task-1] SbtKDC9TQ8m65VpMnBMi_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.693 [XNIO-1 task-1] SbtKDC9TQ8m65VpMnBMi_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.693 [XNIO-1 task-1] SbtKDC9TQ8m65VpMnBMi_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.693 [XNIO-1 task-1] SbtKDC9TQ8m65VpMnBMi_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.693 [XNIO-1 task-1] SbtKDC9TQ8m65VpMnBMi_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.698 [XNIO-1 task-1] hUtVyJyvRH-fe3WXH6NFGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.698 [XNIO-1 task-1] hUtVyJyvRH-fe3WXH6NFGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.698 [XNIO-1 task-1] hUtVyJyvRH-fe3WXH6NFGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.698 [XNIO-1 task-1] hUtVyJyvRH-fe3WXH6NFGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4, base path is set to: null +07:00:51.698 [XNIO-1 task-1] hUtVyJyvRH-fe3WXH6NFGA DEBUG com.networknt.schema.TypeValidator debug - validate( "b20099a9-5602-4d0f-a901-cede2030eeb4", "b20099a9-5602-4d0f-a901-cede2030eeb4", refreshToken) +07:00:51.698 [XNIO-1 task-1] hUtVyJyvRH-fe3WXH6NFGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} +07:00:51.703 [XNIO-1 task-1] tOAs8DWOTVylsOEFq7I_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43, base path is set to: null +07:00:51.703 [XNIO-1 task-1] tOAs8DWOTVylsOEFq7I_qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.703 [XNIO-1 task-1] tOAs8DWOTVylsOEFq7I_qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.703 [XNIO-1 task-1] tOAs8DWOTVylsOEFq7I_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43, base path is set to: null +07:00:51.703 [XNIO-1 task-1] tOAs8DWOTVylsOEFq7I_qw DEBUG com.networknt.schema.TypeValidator debug - validate( "7435f100-30ea-49c3-8615-2fab85752a43", "7435f100-30ea-49c3-8615-2fab85752a43", refreshToken) +07:00:51.704 [XNIO-1 task-1] tOAs8DWOTVylsOEFq7I_qw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7435f100-30ea-49c3-8615-2fab85752a43 is not found.","severity":"ERROR"} +07:00:51.710 [XNIO-1 task-1] oV6YLTI8TF-XzX_7_Z7d3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:51.710 [XNIO-1 task-1] oV6YLTI8TF-XzX_7_Z7d3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.710 [XNIO-1 task-1] oV6YLTI8TF-XzX_7_Z7d3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.710 [XNIO-1 task-1] oV6YLTI8TF-XzX_7_Z7d3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:51.711 [XNIO-1 task-1] oV6YLTI8TF-XzX_7_Z7d3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b20099a9-5602-4d0f-a901-cede2030eeb4 +07:00:51.713 [XNIO-1 task-1] P1tVO-MMSsGi-b5btXE9QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.714 [XNIO-1 task-1] P1tVO-MMSsGi-b5btXE9QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.714 [XNIO-1 task-1] P1tVO-MMSsGi-b5btXE9QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.714 [XNIO-1 task-1] P1tVO-MMSsGi-b5btXE9QA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.715 [XNIO-1 task-1] P1tVO-MMSsGi-b5btXE9QA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.724 [XNIO-1 task-1] OawvfQdiRISDaaYqUE845w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.724 [XNIO-1 task-1] OawvfQdiRISDaaYqUE845w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.724 [XNIO-1 task-1] OawvfQdiRISDaaYqUE845w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.725 [XNIO-1 task-1] OawvfQdiRISDaaYqUE845w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.735 [XNIO-1 task-1] bqZLkz6qQ92TGMyWnPDqxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:51.735 [XNIO-1 task-1] bqZLkz6qQ92TGMyWnPDqxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.735 [XNIO-1 task-1] bqZLkz6qQ92TGMyWnPDqxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.735 [XNIO-1 task-1] bqZLkz6qQ92TGMyWnPDqxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:51.736 [XNIO-1 task-1] bqZLkz6qQ92TGMyWnPDqxw DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:51.736 [XNIO-1 task-1] bqZLkz6qQ92TGMyWnPDqxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:51.739 [XNIO-1 task-1] 5yzy1L7BSyKgmRymzU2uFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e +07:00:51.739 [XNIO-1 task-1] 5yzy1L7BSyKgmRymzU2uFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.739 [XNIO-1 task-1] 5yzy1L7BSyKgmRymzU2uFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.739 [XNIO-1 task-1] 5yzy1L7BSyKgmRymzU2uFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e +07:00:51.739 [XNIO-1 task-1] 5yzy1L7BSyKgmRymzU2uFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8fd3e748-102b-4611-9740-f1f05f7c5d0e +07:00:51.748 [XNIO-1 task-1] YNLehy7SSvunKaovkj5uNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.748 [XNIO-1 task-1] YNLehy7SSvunKaovkj5uNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.748 [XNIO-1 task-1] YNLehy7SSvunKaovkj5uNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.749 [XNIO-1 task-1] YNLehy7SSvunKaovkj5uNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.749 [XNIO-1 task-1] YNLehy7SSvunKaovkj5uNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7435f100-30ea-49c3-8615-2fab85752a43 +07:00:51.757 [XNIO-1 task-1] hw48UyHfQ_CGtn0aZuQ6aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.757 [XNIO-1 task-1] hw48UyHfQ_CGtn0aZuQ6aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.757 [XNIO-1 task-1] hw48UyHfQ_CGtn0aZuQ6aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.758 [XNIO-1 task-1] hw48UyHfQ_CGtn0aZuQ6aA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.758 [XNIO-1 task-1] hw48UyHfQ_CGtn0aZuQ6aA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.765 [XNIO-1 task-1] xF-yzieYSeSCW8MMSRFd1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.765 [XNIO-1 task-1] xF-yzieYSeSCW8MMSRFd1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.765 [XNIO-1 task-1] xF-yzieYSeSCW8MMSRFd1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.765 [XNIO-1 task-1] xF-yzieYSeSCW8MMSRFd1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.765 [XNIO-1 task-1] xF-yzieYSeSCW8MMSRFd1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.772 [XNIO-1 task-1] CQf0sVxNTraF_vmkNGW0Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e, base path is set to: null +07:00:51.773 [XNIO-1 task-1] CQf0sVxNTraF_vmkNGW0Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.773 [XNIO-1 task-1] CQf0sVxNTraF_vmkNGW0Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.773 [XNIO-1 task-1] CQf0sVxNTraF_vmkNGW0Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e, base path is set to: null +07:00:51.773 [XNIO-1 task-1] CQf0sVxNTraF_vmkNGW0Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "8fd3e748-102b-4611-9740-f1f05f7c5d0e", "8fd3e748-102b-4611-9740-f1f05f7c5d0e", refreshToken) +07:00:51.784 [XNIO-1 task-1] rg4IMdNBQAqyEj6W6vzV_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.784 [XNIO-1 task-1] rg4IMdNBQAqyEj6W6vzV_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.784 [XNIO-1 task-1] rg4IMdNBQAqyEj6W6vzV_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.784 [XNIO-1 task-1] rg4IMdNBQAqyEj6W6vzV_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.784 [XNIO-1 task-1] rg4IMdNBQAqyEj6W6vzV_A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.790 [XNIO-1 task-1] a00nnjc2TceKe7yws4_cOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.791 [XNIO-1 task-1] a00nnjc2TceKe7yws4_cOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.791 [XNIO-1 task-1] a00nnjc2TceKe7yws4_cOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.791 [XNIO-1 task-1] a00nnjc2TceKe7yws4_cOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.792 [XNIO-1 task-1] a00nnjc2TceKe7yws4_cOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:51.794 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:16428a36 +07:00:51.795 [XNIO-1 task-1] RcrfCzX8QZK9oKQeOG4e_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.795 [XNIO-1 task-1] RcrfCzX8QZK9oKQeOG4e_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.795 [XNIO-1 task-1] RcrfCzX8QZK9oKQeOG4e_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.795 [XNIO-1 task-1] RcrfCzX8QZK9oKQeOG4e_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.795 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:16428a36 +07:00:51.803 [XNIO-1 task-1] Qjv2yxp1QQCN5y_doy8vJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e, base path is set to: null +07:00:51.803 [XNIO-1 task-1] Qjv2yxp1QQCN5y_doy8vJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.803 [XNIO-1 task-1] Qjv2yxp1QQCN5y_doy8vJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.803 [XNIO-1 task-1] Qjv2yxp1QQCN5y_doy8vJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e, base path is set to: null +07:00:51.804 [XNIO-1 task-1] Qjv2yxp1QQCN5y_doy8vJA DEBUG com.networknt.schema.TypeValidator debug - validate( "8fd3e748-102b-4611-9740-f1f05f7c5d0e", "8fd3e748-102b-4611-9740-f1f05f7c5d0e", refreshToken) +07:00:51.805 [XNIO-1 task-1] Qjv2yxp1QQCN5y_doy8vJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8fd3e748-102b-4611-9740-f1f05f7c5d0e is not found.","severity":"ERROR"} +07:00:51.810 [XNIO-1 task-1] zKnyDTliRjSTIhPVCgW5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.810 [XNIO-1 task-1] zKnyDTliRjSTIhPVCgW5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.810 [XNIO-1 task-1] zKnyDTliRjSTIhPVCgW5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.811 [XNIO-1 task-1] zKnyDTliRjSTIhPVCgW5Yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.817 [XNIO-1 task-1] gJv3FVt8QOSsVGB274wc4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:51.817 [XNIO-1 task-1] gJv3FVt8QOSsVGB274wc4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.818 [XNIO-1 task-1] gJv3FVt8QOSsVGB274wc4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.818 [XNIO-1 task-1] gJv3FVt8QOSsVGB274wc4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49, base path is set to: null +07:00:51.818 [XNIO-1 task-1] gJv3FVt8QOSsVGB274wc4g DEBUG com.networknt.schema.TypeValidator debug - validate( "248547d8-424f-4534-87fb-7d1262629d49", "248547d8-424f-4534-87fb-7d1262629d49", refreshToken) +07:00:51.818 [XNIO-1 task-1] gJv3FVt8QOSsVGB274wc4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 248547d8-424f-4534-87fb-7d1262629d49 is not found.","severity":"ERROR"} +07:00:51.820 [XNIO-1 task-1] UVdf6bw4QQaVnfH5DHf4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e +07:00:51.820 [XNIO-1 task-1] UVdf6bw4QQaVnfH5DHf4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.820 [XNIO-1 task-1] UVdf6bw4QQaVnfH5DHf4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.821 [XNIO-1 task-1] UVdf6bw4QQaVnfH5DHf4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8fd3e748-102b-4611-9740-f1f05f7c5d0e +07:00:51.821 [XNIO-1 task-1] UVdf6bw4QQaVnfH5DHf4Xw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8fd3e748-102b-4611-9740-f1f05f7c5d0e +07:00:51.825 [XNIO-1 task-1] shKQEBlISsK8dRVneRyAPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cb9c1f2-4a93-4dc1-9507-32c3cecb8f67, base path is set to: null +07:00:51.825 [XNIO-1 task-1] shKQEBlISsK8dRVneRyAPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.825 [XNIO-1 task-1] shKQEBlISsK8dRVneRyAPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.825 [XNIO-1 task-1] shKQEBlISsK8dRVneRyAPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cb9c1f2-4a93-4dc1-9507-32c3cecb8f67, base path is set to: null +07:00:51.826 [XNIO-1 task-1] shKQEBlISsK8dRVneRyAPA DEBUG com.networknt.schema.TypeValidator debug - validate( "8cb9c1f2-4a93-4dc1-9507-32c3cecb8f67", "8cb9c1f2-4a93-4dc1-9507-32c3cecb8f67", refreshToken) +07:00:51.831 [XNIO-1 task-1] shKQEBlISsK8dRVneRyAPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8cb9c1f2-4a93-4dc1-9507-32c3cecb8f67 is not found.","severity":"ERROR"} +07:00:51.840 [XNIO-1 task-1] omD0U4K7T7CQ00n3TA9uGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.840 [XNIO-1 task-1] omD0U4K7T7CQ00n3TA9uGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.840 [XNIO-1 task-1] omD0U4K7T7CQ00n3TA9uGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.840 [XNIO-1 task-1] omD0U4K7T7CQ00n3TA9uGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.840 [XNIO-1 task-1] omD0U4K7T7CQ00n3TA9uGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.843 [XNIO-1 task-1] aZtQqpVvRKOJg_77_qQVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:51.843 [XNIO-1 task-1] aZtQqpVvRKOJg_77_qQVvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.843 [XNIO-1 task-1] aZtQqpVvRKOJg_77_qQVvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.844 [XNIO-1 task-1] aZtQqpVvRKOJg_77_qQVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:51.844 [XNIO-1 task-1] aZtQqpVvRKOJg_77_qQVvw DEBUG com.networknt.schema.TypeValidator debug - validate( "7fb471a0-5264-42f0-babc-5367d202ccad", "7fb471a0-5264-42f0-babc-5367d202ccad", refreshToken) +07:00:51.844 [XNIO-1 task-1] aZtQqpVvRKOJg_77_qQVvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7fb471a0-5264-42f0-babc-5367d202ccad is not found.","severity":"ERROR"} +07:00:51.846 [XNIO-1 task-1] 2-m-rCmMSY2NHubaEjLaSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2 +07:00:51.847 [XNIO-1 task-1] 2-m-rCmMSY2NHubaEjLaSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.847 [XNIO-1 task-1] 2-m-rCmMSY2NHubaEjLaSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.847 [XNIO-1 task-1] 2-m-rCmMSY2NHubaEjLaSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60ba3c04-849a-4df5-9378-58694ecc9cd2 +07:00:51.847 [XNIO-1 task-1] 2-m-rCmMSY2NHubaEjLaSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 60ba3c04-849a-4df5-9378-58694ecc9cd2 +07:00:51.853 [XNIO-1 task-1] JhjcDxUAS02whZPG6zfwhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.853 [XNIO-1 task-1] JhjcDxUAS02whZPG6zfwhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.853 [XNIO-1 task-1] JhjcDxUAS02whZPG6zfwhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.854 [XNIO-1 task-1] JhjcDxUAS02whZPG6zfwhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.854 [XNIO-1 task-1] JhjcDxUAS02whZPG6zfwhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.861 [XNIO-1 task-1] 7kYQIGK3SqyFM4IIRC1U-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.861 [XNIO-1 task-1] 7kYQIGK3SqyFM4IIRC1U-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.861 [XNIO-1 task-1] 7kYQIGK3SqyFM4IIRC1U-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.862 [XNIO-1 task-1] 7kYQIGK3SqyFM4IIRC1U-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.870 [XNIO-1 task-1] z8p2-nYsSPiK-4rVSXw2cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c, base path is set to: null +07:00:51.870 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.870 [XNIO-1 task-1] z8p2-nYsSPiK-4rVSXw2cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.871 [XNIO-1 task-1] z8p2-nYsSPiK-4rVSXw2cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.871 [XNIO-1 task-1] z8p2-nYsSPiK-4rVSXw2cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c, base path is set to: null +07:00:51.872 [XNIO-1 task-1] z8p2-nYsSPiK-4rVSXw2cg DEBUG com.networknt.schema.TypeValidator debug - validate( "be4170f3-4743-465b-b424-bb4f3b6c2c8c", "be4170f3-4743-465b-b424-bb4f3b6c2c8c", refreshToken) +07:00:51.872 [XNIO-1 task-1] z8p2-nYsSPiK-4rVSXw2cg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be4170f3-4743-465b-b424-bb4f3b6c2c8c is not found.","severity":"ERROR"} +07:00:51.875 [XNIO-1 task-1] bVDUkbBKTA6xQQYPdi92PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.875 [XNIO-1 task-1] bVDUkbBKTA6xQQYPdi92PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.875 [XNIO-1 task-1] bVDUkbBKTA6xQQYPdi92PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.875 [XNIO-1 task-1] bVDUkbBKTA6xQQYPdi92PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.876 [XNIO-1 task-1] bVDUkbBKTA6xQQYPdi92PA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:51.880 [XNIO-1 task-1] ETjQpkaVRjO1oXRoxBe8lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483, base path is set to: null +07:00:51.880 [XNIO-1 task-1] ETjQpkaVRjO1oXRoxBe8lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.880 [XNIO-1 task-1] ETjQpkaVRjO1oXRoxBe8lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.880 [XNIO-1 task-1] ETjQpkaVRjO1oXRoxBe8lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483, base path is set to: null +07:00:51.881 [XNIO-1 task-1] ETjQpkaVRjO1oXRoxBe8lA DEBUG com.networknt.schema.TypeValidator debug - validate( "db4541c1-4057-4e7a-870b-5a55a30fe483", "db4541c1-4057-4e7a-870b-5a55a30fe483", refreshToken) +07:00:51.884 [XNIO-1 task-1] tl3EHfjZRUWfvW5_BITaIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483, base path is set to: null +07:00:51.884 [XNIO-1 task-1] tl3EHfjZRUWfvW5_BITaIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.884 [XNIO-1 task-1] tl3EHfjZRUWfvW5_BITaIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.885 [XNIO-1 task-1] tl3EHfjZRUWfvW5_BITaIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483, base path is set to: null +07:00:51.885 [XNIO-1 task-1] tl3EHfjZRUWfvW5_BITaIA DEBUG com.networknt.schema.TypeValidator debug - validate( "db4541c1-4057-4e7a-870b-5a55a30fe483", "db4541c1-4057-4e7a-870b-5a55a30fe483", refreshToken) +07:00:51.890 [XNIO-1 task-1] 5PWIXUwQRFOGWJ0ay2-ilg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.891 [XNIO-1 task-1] 5PWIXUwQRFOGWJ0ay2-ilg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.891 [XNIO-1 task-1] 5PWIXUwQRFOGWJ0ay2-ilg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.891 [XNIO-1 task-1] 5PWIXUwQRFOGWJ0ay2-ilg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.891 [XNIO-1 task-1] 5PWIXUwQRFOGWJ0ay2-ilg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.903 [XNIO-1 task-1] peVcuKCdRUSLhP3lp49RnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.904 [XNIO-1 task-1] peVcuKCdRUSLhP3lp49RnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.904 [XNIO-1 task-1] peVcuKCdRUSLhP3lp49RnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.904 [XNIO-1 task-1] peVcuKCdRUSLhP3lp49RnA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.912 [XNIO-1 task-1] lR3rMamOSGaLbCMXs-N7bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:51.912 [XNIO-1 task-1] lR3rMamOSGaLbCMXs-N7bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.913 [XNIO-1 task-1] lR3rMamOSGaLbCMXs-N7bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.913 [XNIO-1 task-1] lR3rMamOSGaLbCMXs-N7bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:51.913 [XNIO-1 task-1] lR3rMamOSGaLbCMXs-N7bg DEBUG com.networknt.schema.TypeValidator debug - validate( "746d9b87-50c2-423d-bd99-3c601627c9b5", "746d9b87-50c2-423d-bd99-3c601627c9b5", refreshToken) +07:00:51.913 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:51.928 [XNIO-1 task-1] ENECwhHOToGPsywOo3FSOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.928 [XNIO-1 task-1] ENECwhHOToGPsywOo3FSOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.928 [XNIO-1 task-1] ENECwhHOToGPsywOo3FSOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.928 [XNIO-1 task-1] ENECwhHOToGPsywOo3FSOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.928 [XNIO-1 task-1] ENECwhHOToGPsywOo3FSOw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.931 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:16428a36 +07:00:51.934 [XNIO-1 task-1] DGfbhN0hSnqpMlq3SBPOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.934 [XNIO-1 task-1] DGfbhN0hSnqpMlq3SBPOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.934 [XNIO-1 task-1] DGfbhN0hSnqpMlq3SBPOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.934 [XNIO-1 task-1] DGfbhN0hSnqpMlq3SBPOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.934 [XNIO-1 task-1] DGfbhN0hSnqpMlq3SBPOZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.938 [XNIO-1 task-1] 6RPKOO-pSA6DUXXu5rR_TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.938 [XNIO-1 task-1] 6RPKOO-pSA6DUXXu5rR_TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.938 [XNIO-1 task-1] 6RPKOO-pSA6DUXXu5rR_TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.938 [XNIO-1 task-1] 6RPKOO-pSA6DUXXu5rR_TA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:51.948 [XNIO-1 task-1] UOJBGbR8THqqy_EnwUEYtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:51.949 [XNIO-1 task-1] UOJBGbR8THqqy_EnwUEYtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.949 [XNIO-1 task-1] UOJBGbR8THqqy_EnwUEYtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.949 [XNIO-1 task-1] UOJBGbR8THqqy_EnwUEYtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:51.949 [XNIO-1 task-1] UOJBGbR8THqqy_EnwUEYtA DEBUG com.networknt.schema.TypeValidator debug - validate( "746d9b87-50c2-423d-bd99-3c601627c9b5", "746d9b87-50c2-423d-bd99-3c601627c9b5", refreshToken) +07:00:51.952 [XNIO-1 task-1] UOJBGbR8THqqy_EnwUEYtA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 746d9b87-50c2-423d-bd99-3c601627c9b5 is not found.","severity":"ERROR"} +07:00:51.957 [XNIO-1 task-1] zGZv3JHuQWeU-fmbVkWiSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.957 [XNIO-1 task-1] zGZv3JHuQWeU-fmbVkWiSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.957 [XNIO-1 task-1] zGZv3JHuQWeU-fmbVkWiSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.957 [XNIO-1 task-1] zGZv3JHuQWeU-fmbVkWiSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.957 [XNIO-1 task-1] zGZv3JHuQWeU-fmbVkWiSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.968 [XNIO-1 task-1] 9s3aSv46QDWd_ZvKCKexLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.969 [XNIO-1 task-1] 9s3aSv46QDWd_ZvKCKexLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.969 [XNIO-1 task-1] 9s3aSv46QDWd_ZvKCKexLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.969 [XNIO-1 task-1] 9s3aSv46QDWd_ZvKCKexLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:51.969 [XNIO-1 task-1] 9s3aSv46QDWd_ZvKCKexLw DEBUG com.networknt.schema.TypeValidator debug - validate( "9b45df80-5389-4d46-82d0-dbf0987e37de", "9b45df80-5389-4d46-82d0-dbf0987e37de", refreshToken) +07:00:51.969 [XNIO-1 task-1] 9s3aSv46QDWd_ZvKCKexLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9b45df80-5389-4d46-82d0-dbf0987e37de is not found.","severity":"ERROR"} +07:00:51.975 [XNIO-1 task-1] PaUtyKcgTiuxeDW_k9DUVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:51.975 [XNIO-1 task-1] PaUtyKcgTiuxeDW_k9DUVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.975 [XNIO-1 task-1] PaUtyKcgTiuxeDW_k9DUVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.975 [XNIO-1 task-1] PaUtyKcgTiuxeDW_k9DUVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:51.975 [XNIO-1 task-1] PaUtyKcgTiuxeDW_k9DUVA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:51.981 [XNIO-1 task-1] X5SUw-9xR_2bQaEmWaYRSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:51.981 [XNIO-1 task-1] X5SUw-9xR_2bQaEmWaYRSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.981 [XNIO-1 task-1] X5SUw-9xR_2bQaEmWaYRSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:51.981 [XNIO-1 task-1] X5SUw-9xR_2bQaEmWaYRSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:51.982 [XNIO-1 task-1] X5SUw-9xR_2bQaEmWaYRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:51.982 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:51.987 [XNIO-1 task-1] 6RUJyMc1SteNdSBzQADu6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.987 [XNIO-1 task-1] 6RUJyMc1SteNdSBzQADu6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:51.987 [XNIO-1 task-1] 6RUJyMc1SteNdSBzQADu6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:51.987 [XNIO-1 task-1] 6RUJyMc1SteNdSBzQADu6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:51.987 [XNIO-1 task-1] 6RUJyMc1SteNdSBzQADu6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:51.999 [XNIO-1 task-1] t4jFBKUMQKi35_qQ6Ye6Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.999 [XNIO-1 task-1] t4jFBKUMQKi35_qQ6Ye6Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:51.999 [XNIO-1 task-1] t4jFBKUMQKi35_qQ6Ye6Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:51.999 [XNIO-1 task-1] t4jFBKUMQKi35_qQ6Ye6Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:51.999 [XNIO-1 task-1] t4jFBKUMQKi35_qQ6Ye6Vg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = db4541c1-4057-4e7a-870b-5a55a30fe483 +07:00:52.000 [XNIO-1 task-1] t4jFBKUMQKi35_qQ6Ye6Vg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token db4541c1-4057-4e7a-870b-5a55a30fe483 is not found.","severity":"ERROR"} +07:00:52.004 [XNIO-1 task-1] mCwI9RS6Q6uMfzQnY-6gCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.004 [XNIO-1 task-1] mCwI9RS6Q6uMfzQnY-6gCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.005 [XNIO-1 task-1] mCwI9RS6Q6uMfzQnY-6gCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.005 [XNIO-1 task-1] mCwI9RS6Q6uMfzQnY-6gCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.017 [XNIO-1 task-1] L0gvx7LFSBay-6-mBnnXRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:52.017 [XNIO-1 task-1] L0gvx7LFSBay-6-mBnnXRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.017 [XNIO-1 task-1] L0gvx7LFSBay-6-mBnnXRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.017 [XNIO-1 task-1] L0gvx7LFSBay-6-mBnnXRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de, base path is set to: null +07:00:52.017 [XNIO-1 task-1] L0gvx7LFSBay-6-mBnnXRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9b45df80-5389-4d46-82d0-dbf0987e37de", "9b45df80-5389-4d46-82d0-dbf0987e37de", refreshToken) +07:00:52.018 [XNIO-1 task-1] L0gvx7LFSBay-6-mBnnXRQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9b45df80-5389-4d46-82d0-dbf0987e37de is not found.","severity":"ERROR"} +07:00:52.021 [XNIO-1 task-1] OMotwm8ERP2XxjmhBsqu1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.021 [XNIO-1 task-1] OMotwm8ERP2XxjmhBsqu1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.021 [XNIO-1 task-1] OMotwm8ERP2XxjmhBsqu1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.021 [XNIO-1 task-1] OMotwm8ERP2XxjmhBsqu1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.027 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0db421b4-7193-4bd0-9fd4-af929b0ef37a +07:00:52.030 [XNIO-1 task-1] xgn6ZEOZToybhKiLGzGhYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:52.030 [XNIO-1 task-1] xgn6ZEOZToybhKiLGzGhYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.031 [XNIO-1 task-1] xgn6ZEOZToybhKiLGzGhYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.031 [XNIO-1 task-1] xgn6ZEOZToybhKiLGzGhYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:52.031 [XNIO-1 task-1] xgn6ZEOZToybhKiLGzGhYw DEBUG com.networknt.schema.TypeValidator debug - validate( "746d9b87-50c2-423d-bd99-3c601627c9b5", "746d9b87-50c2-423d-bd99-3c601627c9b5", refreshToken) +07:00:52.031 [XNIO-1 task-1] xgn6ZEOZToybhKiLGzGhYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 746d9b87-50c2-423d-bd99-3c601627c9b5 is not found.","severity":"ERROR"} +07:00:52.034 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:18e66b97-fac0-44d6-b197-84fb06714011 +07:00:52.039 [XNIO-1 task-1] ESRgr06DS0ei9blglioyBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.040 [XNIO-1 task-1] ESRgr06DS0ei9blglioyBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.040 [XNIO-1 task-1] ESRgr06DS0ei9blglioyBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.040 [XNIO-1 task-1] ESRgr06DS0ei9blglioyBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.040 [XNIO-1 task-1] ESRgr06DS0ei9blglioyBw DEBUG com.networknt.schema.TypeValidator debug - validate( "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", refreshToken) +07:00:52.051 [XNIO-1 task-1] jKpXzhjARs-dcWGKK-ijdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:52.051 [XNIO-1 task-1] jKpXzhjARs-dcWGKK-ijdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.051 [XNIO-1 task-1] jKpXzhjARs-dcWGKK-ijdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.051 [XNIO-1 task-1] jKpXzhjARs-dcWGKK-ijdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:52.051 [XNIO-1 task-1] jKpXzhjARs-dcWGKK-ijdg DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:52.052 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:52.056 [XNIO-1 task-1] xWwQas4CRpuxnGWSyKn89w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.056 [XNIO-1 task-1] xWwQas4CRpuxnGWSyKn89w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.056 [XNIO-1 task-1] xWwQas4CRpuxnGWSyKn89w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.056 [XNIO-1 task-1] xWwQas4CRpuxnGWSyKn89w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.057 [XNIO-1 task-1] xWwQas4CRpuxnGWSyKn89w DEBUG com.networknt.schema.TypeValidator debug - validate( "b1b4e971-8102-4062-8f7c-e6a1da63b44a", "b1b4e971-8102-4062-8f7c-e6a1da63b44a", refreshToken) +07:00:52.061 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0db421b4-7193-4bd0-9fd4-af929b0ef37a +07:00:52.068 [XNIO-1 task-1] -mQI6fUIQqSkjaBM85e-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:52.068 [XNIO-1 task-1] -mQI6fUIQqSkjaBM85e-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.068 [XNIO-1 task-1] -mQI6fUIQqSkjaBM85e-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.068 [XNIO-1 task-1] -mQI6fUIQqSkjaBM85e-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:52.069 [XNIO-1 task-1] -mQI6fUIQqSkjaBM85e-lw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9b45df80-5389-4d46-82d0-dbf0987e37de +07:00:52.073 [XNIO-1 task-1] d8dXTPzBRS-B9-K3QTPCRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.074 [XNIO-1 task-1] d8dXTPzBRS-B9-K3QTPCRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.074 [XNIO-1 task-1] d8dXTPzBRS-B9-K3QTPCRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.074 [XNIO-1 task-1] d8dXTPzBRS-B9-K3QTPCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.074 [XNIO-1 task-1] d8dXTPzBRS-B9-K3QTPCRg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.087 [XNIO-1 task-1] D1ss-xfxQRaR80icA0upwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.087 [XNIO-1 task-1] D1ss-xfxQRaR80icA0upwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.087 [XNIO-1 task-1] D1ss-xfxQRaR80icA0upwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.087 [XNIO-1 task-1] D1ss-xfxQRaR80icA0upwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.087 [XNIO-1 task-1] D1ss-xfxQRaR80icA0upwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.095 [XNIO-1 task-1] P-tXbRBbT7ikMkifUsfJSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.095 [XNIO-1 task-1] P-tXbRBbT7ikMkifUsfJSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.095 [XNIO-1 task-1] P-tXbRBbT7ikMkifUsfJSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.095 [XNIO-1 task-1] P-tXbRBbT7ikMkifUsfJSw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.096 [XNIO-1 task-1] P-tXbRBbT7ikMkifUsfJSw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.102 [XNIO-1 task-1] CFIqEa_zRmWs4WwC1Qu5cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.102 [XNIO-1 task-1] CFIqEa_zRmWs4WwC1Qu5cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.103 [XNIO-1 task-1] CFIqEa_zRmWs4WwC1Qu5cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.103 [XNIO-1 task-1] CFIqEa_zRmWs4WwC1Qu5cg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.110 [XNIO-1 task-1] gXaNvwPQSPeUVng3o0UtVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.110 [XNIO-1 task-1] gXaNvwPQSPeUVng3o0UtVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.110 [XNIO-1 task-1] gXaNvwPQSPeUVng3o0UtVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.110 [XNIO-1 task-1] gXaNvwPQSPeUVng3o0UtVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.111 [XNIO-1 task-1] gXaNvwPQSPeUVng3o0UtVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", refreshToken) +07:00:52.112 [XNIO-1 task-1] gXaNvwPQSPeUVng3o0UtVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 is not found.","severity":"ERROR"} +07:00:52.117 [XNIO-1 task-1] pZ_pPBhzQhGO0RkTuwcgww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.117 [XNIO-1 task-1] pZ_pPBhzQhGO0RkTuwcgww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.117 [XNIO-1 task-1] pZ_pPBhzQhGO0RkTuwcgww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.117 [XNIO-1 task-1] pZ_pPBhzQhGO0RkTuwcgww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.118 [XNIO-1 task-1] pZ_pPBhzQhGO0RkTuwcgww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.121 [XNIO-1 task-1] 7c-V0Ho4Sn2tGFnXerz1rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.121 [XNIO-1 task-1] 7c-V0Ho4Sn2tGFnXerz1rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.121 [XNIO-1 task-1] 7c-V0Ho4Sn2tGFnXerz1rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.121 [XNIO-1 task-1] 7c-V0Ho4Sn2tGFnXerz1rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.122 [XNIO-1 task-1] 7c-V0Ho4Sn2tGFnXerz1rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b1b4e971-8102-4062-8f7c-e6a1da63b44a", "b1b4e971-8102-4062-8f7c-e6a1da63b44a", refreshToken) +07:00:52.124 [XNIO-1 task-1] 7c-V0Ho4Sn2tGFnXerz1rQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b1b4e971-8102-4062-8f7c-e6a1da63b44a is not found.","severity":"ERROR"} +07:00:52.128 [XNIO-1 task-1] ar8bLFo-QOmf9dyUqiEXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.128 [XNIO-1 task-1] ar8bLFo-QOmf9dyUqiEXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.129 [XNIO-1 task-1] ar8bLFo-QOmf9dyUqiEXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.129 [XNIO-1 task-1] ar8bLFo-QOmf9dyUqiEXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.129 [XNIO-1 task-1] ar8bLFo-QOmf9dyUqiEXvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.142 [XNIO-1 task-1] CmfSPJ0LSuSc_XHUJbErXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.142 [XNIO-1 task-1] CmfSPJ0LSuSc_XHUJbErXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.142 [XNIO-1 task-1] CmfSPJ0LSuSc_XHUJbErXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.142 [XNIO-1 task-1] CmfSPJ0LSuSc_XHUJbErXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.142 [XNIO-1 task-1] CmfSPJ0LSuSc_XHUJbErXA DEBUG com.networknt.schema.TypeValidator debug - validate( "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", refreshToken) +07:00:52.143 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.144 [XNIO-1 task-1] CmfSPJ0LSuSc_XHUJbErXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 is not found.","severity":"ERROR"} +07:00:52.147 [XNIO-1 task-1] gZvBQuK0Q0CZun4JN2bcfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.148 [XNIO-1 task-1] gZvBQuK0Q0CZun4JN2bcfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.148 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5aac8876 +07:00:52.148 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5aac8876 +07:00:52.148 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22d79a87-8f07-4f6d-a42d-c31d1bf550a2 +07:00:52.148 [XNIO-1 task-1] gZvBQuK0Q0CZun4JN2bcfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.158 [XNIO-1 task-1] -_SNRx4VT0u-_Dap4NvOHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.158 [XNIO-1 task-1] -_SNRx4VT0u-_Dap4NvOHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.158 [XNIO-1 task-1] -_SNRx4VT0u-_Dap4NvOHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.158 [XNIO-1 task-1] -_SNRx4VT0u-_Dap4NvOHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.160 [XNIO-1 task-1] -_SNRx4VT0u-_Dap4NvOHg DEBUG com.networknt.schema.TypeValidator debug - validate( "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", refreshToken) +07:00:52.160 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.168 [XNIO-1 task-1] U8BoVYURRveIa2TbrAnobA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.168 [XNIO-1 task-1] U8BoVYURRveIa2TbrAnobA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.168 [XNIO-1 task-1] U8BoVYURRveIa2TbrAnobA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.169 [XNIO-1 task-1] U8BoVYURRveIa2TbrAnobA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.169 [XNIO-1 task-1] U8BoVYURRveIa2TbrAnobA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.179 [XNIO-1 task-1] iCtpPwugQ62zid376pcZAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.179 [XNIO-1 task-1] iCtpPwugQ62zid376pcZAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.179 [XNIO-1 task-1] iCtpPwugQ62zid376pcZAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.180 [XNIO-1 task-1] iCtpPwugQ62zid376pcZAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.180 [XNIO-1 task-1] iCtpPwugQ62zid376pcZAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.181 [XNIO-1 task-1] iCtpPwugQ62zid376pcZAQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 is not found.","severity":"ERROR"} +07:00:52.192 [XNIO-1 task-1] pfz9cQ8dRoimRvtS-UqIBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.192 [XNIO-1 task-1] pfz9cQ8dRoimRvtS-UqIBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.192 [XNIO-1 task-1] pfz9cQ8dRoimRvtS-UqIBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.192 [XNIO-1 task-1] pfz9cQ8dRoimRvtS-UqIBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.192 [XNIO-1 task-1] pfz9cQ8dRoimRvtS-UqIBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.193 [XNIO-1 task-1] pfz9cQ8dRoimRvtS-UqIBQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 is not found.","severity":"ERROR"} +07:00:52.198 [XNIO-1 task-1] enmGDsAnQDOfmFPyedom_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.198 [XNIO-1 task-1] enmGDsAnQDOfmFPyedom_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.198 [XNIO-1 task-1] enmGDsAnQDOfmFPyedom_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.198 [XNIO-1 task-1] enmGDsAnQDOfmFPyedom_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.204 [XNIO-1 task-1] 4I0DskAWSxueDFzHj0fmFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.204 [XNIO-1 task-1] 4I0DskAWSxueDFzHj0fmFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.205 [XNIO-1 task-1] 4I0DskAWSxueDFzHj0fmFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.205 [XNIO-1 task-1] 4I0DskAWSxueDFzHj0fmFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.205 [XNIO-1 task-1] 4I0DskAWSxueDFzHj0fmFg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.211 [XNIO-1 task-1] go4pjNH4Tfut36-p8WE4zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.211 [XNIO-1 task-1] go4pjNH4Tfut36-p8WE4zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.211 [XNIO-1 task-1] go4pjNH4Tfut36-p8WE4zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.211 [XNIO-1 task-1] go4pjNH4Tfut36-p8WE4zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.212 [XNIO-1 task-1] go4pjNH4Tfut36-p8WE4zA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.213 [XNIO-1 task-1] go4pjNH4Tfut36-p8WE4zA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 is not found.","severity":"ERROR"} +07:00:52.221 [XNIO-1 task-1] t41NINBzRu2T0yiEM6JaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.221 [XNIO-1 task-1] t41NINBzRu2T0yiEM6JaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.221 [XNIO-1 task-1] t41NINBzRu2T0yiEM6JaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.221 [XNIO-1 task-1] t41NINBzRu2T0yiEM6JaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.221 [XNIO-1 task-1] t41NINBzRu2T0yiEM6JaCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.223 [XNIO-1 task-1] t41NINBzRu2T0yiEM6JaCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 is not found.","severity":"ERROR"} +07:00:52.226 [XNIO-1 task-1] ZeZ_ikHUT_iMc0N60InhWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.226 [XNIO-1 task-1] ZeZ_ikHUT_iMc0N60InhWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.226 [XNIO-1 task-1] ZeZ_ikHUT_iMc0N60InhWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.226 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2971320f-1d1f-45f1-b98b-af9ece4d4625 +07:00:52.226 [XNIO-1 task-1] ZeZ_ikHUT_iMc0N60InhWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.230 [XNIO-1 task-1] Zeruj8L8TIuoH3S9eY32sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.230 [XNIO-1 task-1] Zeruj8L8TIuoH3S9eY32sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.230 [XNIO-1 task-1] Zeruj8L8TIuoH3S9eY32sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.230 [XNIO-1 task-1] Zeruj8L8TIuoH3S9eY32sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.230 [XNIO-1 task-1] Zeruj8L8TIuoH3S9eY32sw DEBUG com.networknt.schema.TypeValidator debug - validate( "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", refreshToken) +07:00:52.230 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.235 [XNIO-1 task-1] 7NNHHsyERhqGStyfZL2cEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.236 [XNIO-1 task-1] 7NNHHsyERhqGStyfZL2cEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.236 [XNIO-1 task-1] 7NNHHsyERhqGStyfZL2cEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.236 [XNIO-1 task-1] 7NNHHsyERhqGStyfZL2cEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b36450d5-4c92-4fbb-b32a-12bc5ffd54c8, base path is set to: null +07:00:52.236 [XNIO-1 task-1] 7NNHHsyERhqGStyfZL2cEA DEBUG com.networknt.schema.TypeValidator debug - validate( "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", "b36450d5-4c92-4fbb-b32a-12bc5ffd54c8", refreshToken) +07:00:52.236 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b36450d5-4c92-4fbb-b32a-12bc5ffd54c8 +07:00:52.238 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2971320f-1d1f-45f1-b98b-af9ece4d4625 +07:00:52.241 [XNIO-1 task-1] Vej5X2MUT3-dqNKbc6SX9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.241 [XNIO-1 task-1] Vej5X2MUT3-dqNKbc6SX9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.241 [XNIO-1 task-1] Vej5X2MUT3-dqNKbc6SX9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.241 [XNIO-1 task-1] Vej5X2MUT3-dqNKbc6SX9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.253 [XNIO-1 task-1] 4GlpHJX_QcmCX5VvOU9NnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.253 [XNIO-1 task-1] 4GlpHJX_QcmCX5VvOU9NnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.253 [XNIO-1 task-1] 4GlpHJX_QcmCX5VvOU9NnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.254 [XNIO-1 task-1] 4GlpHJX_QcmCX5VvOU9NnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.254 [XNIO-1 task-1] 4GlpHJX_QcmCX5VvOU9NnA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.260 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5f69a1fc +07:00:52.267 [XNIO-1 task-1] kjVO4hARSbqqXxNYY5FXCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.267 [XNIO-1 task-1] kjVO4hARSbqqXxNYY5FXCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.267 [XNIO-1 task-1] kjVO4hARSbqqXxNYY5FXCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.268 [XNIO-1 task-1] kjVO4hARSbqqXxNYY5FXCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.268 [XNIO-1 task-1] kjVO4hARSbqqXxNYY5FXCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.277 [XNIO-1 task-1] EIsf0J1VQ7q_T8LLZswRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c +07:00:52.277 [XNIO-1 task-1] EIsf0J1VQ7q_T8LLZswRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.277 [XNIO-1 task-1] EIsf0J1VQ7q_T8LLZswRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.277 [XNIO-1 task-1] EIsf0J1VQ7q_T8LLZswRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c +07:00:52.278 [XNIO-1 task-1] EIsf0J1VQ7q_T8LLZswRtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 62800157-1349-4351-84a2-a7d07512654c +07:00:52.280 [XNIO-1 task-1] TM-YXuIAS82z2YxiYnDcvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59eac079-90b2-4edb-82ec-0bd60333d7fa +07:00:52.280 [XNIO-1 task-1] TM-YXuIAS82z2YxiYnDcvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.280 [XNIO-1 task-1] TM-YXuIAS82z2YxiYnDcvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.281 [XNIO-1 task-1] TM-YXuIAS82z2YxiYnDcvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59eac079-90b2-4edb-82ec-0bd60333d7fa +07:00:52.281 [XNIO-1 task-1] TM-YXuIAS82z2YxiYnDcvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 59eac079-90b2-4edb-82ec-0bd60333d7fa +07:00:52.293 [XNIO-1 task-1] EzOtQURYRq2kLTw-G_RjMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.293 [XNIO-1 task-1] EzOtQURYRq2kLTw-G_RjMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.293 [XNIO-1 task-1] EzOtQURYRq2kLTw-G_RjMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.293 [XNIO-1 task-1] EzOtQURYRq2kLTw-G_RjMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.300 [XNIO-1 task-1] DoMOAMwLSD6ZnZ1wADelJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c, base path is set to: null +07:00:52.300 [XNIO-1 task-1] DoMOAMwLSD6ZnZ1wADelJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.300 [XNIO-1 task-1] DoMOAMwLSD6ZnZ1wADelJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.300 [XNIO-1 task-1] DoMOAMwLSD6ZnZ1wADelJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c, base path is set to: null +07:00:52.300 [XNIO-1 task-1] DoMOAMwLSD6ZnZ1wADelJA DEBUG com.networknt.schema.TypeValidator debug - validate( "62800157-1349-4351-84a2-a7d07512654c", "62800157-1349-4351-84a2-a7d07512654c", refreshToken) +07:00:52.315 [XNIO-1 task-1] QB5szpcWRgqhAieVSIuo0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c, base path is set to: null +07:00:52.316 [XNIO-1 task-1] QB5szpcWRgqhAieVSIuo0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.316 [XNIO-1 task-1] QB5szpcWRgqhAieVSIuo0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.316 [XNIO-1 task-1] QB5szpcWRgqhAieVSIuo0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c, base path is set to: null +07:00:52.316 [XNIO-1 task-1] QB5szpcWRgqhAieVSIuo0g DEBUG com.networknt.schema.TypeValidator debug - validate( "62800157-1349-4351-84a2-a7d07512654c", "62800157-1349-4351-84a2-a7d07512654c", refreshToken) +07:00:52.318 [XNIO-1 task-1] QB5szpcWRgqhAieVSIuo0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 62800157-1349-4351-84a2-a7d07512654c is not found.","severity":"ERROR"} +07:00:52.321 [XNIO-1 task-1] C0Z4HgyKRSqh7kDFDJjhzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c +07:00:52.321 [XNIO-1 task-1] C0Z4HgyKRSqh7kDFDJjhzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.321 [XNIO-1 task-1] C0Z4HgyKRSqh7kDFDJjhzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.321 [XNIO-1 task-1] C0Z4HgyKRSqh7kDFDJjhzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/62800157-1349-4351-84a2-a7d07512654c +07:00:52.322 [XNIO-1 task-1] C0Z4HgyKRSqh7kDFDJjhzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 62800157-1349-4351-84a2-a7d07512654c +07:00:52.326 [XNIO-1 task-1] nBxl9vtJQr22MH8ykL2efQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd979164-6015-440f-a82c-f58bb3ca4bc0, base path is set to: null +07:00:52.326 [XNIO-1 task-1] nBxl9vtJQr22MH8ykL2efQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.326 [XNIO-1 task-1] nBxl9vtJQr22MH8ykL2efQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.327 [XNIO-1 task-1] nBxl9vtJQr22MH8ykL2efQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd979164-6015-440f-a82c-f58bb3ca4bc0, base path is set to: null +07:00:52.327 [XNIO-1 task-1] nBxl9vtJQr22MH8ykL2efQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fd979164-6015-440f-a82c-f58bb3ca4bc0", "fd979164-6015-440f-a82c-f58bb3ca4bc0", refreshToken) +07:00:52.333 [XNIO-1 task-1] J8L8YxeuTuyi0500O5ElEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:52.333 [XNIO-1 task-1] J8L8YxeuTuyi0500O5ElEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.333 [XNIO-1 task-1] J8L8YxeuTuyi0500O5ElEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.333 [XNIO-1 task-1] J8L8YxeuTuyi0500O5ElEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:52.333 [XNIO-1 task-1] J8L8YxeuTuyi0500O5ElEg DEBUG com.networknt.schema.TypeValidator debug - validate( "7fb471a0-5264-42f0-babc-5367d202ccad", "7fb471a0-5264-42f0-babc-5367d202ccad", refreshToken) +07:00:52.333 [XNIO-1 task-1] J8L8YxeuTuyi0500O5ElEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7fb471a0-5264-42f0-babc-5367d202ccad is not found.","severity":"ERROR"} +07:00:52.341 [XNIO-1 task-1] YOhGfDeOTU60yVW2ICo1lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.341 [XNIO-1 task-1] YOhGfDeOTU60yVW2ICo1lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.341 [XNIO-1 task-1] YOhGfDeOTU60yVW2ICo1lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.341 [XNIO-1 task-1] YOhGfDeOTU60yVW2ICo1lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.342 [XNIO-1 task-1] YOhGfDeOTU60yVW2ICo1lA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.361 [XNIO-1 task-1] g-XtkNHcTqiGubdHIO84-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.361 [XNIO-1 task-1] g-XtkNHcTqiGubdHIO84-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.361 [XNIO-1 task-1] g-XtkNHcTqiGubdHIO84-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.361 [XNIO-1 task-1] g-XtkNHcTqiGubdHIO84-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.372 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +Jun 29, 2024 7:00:52 AM com.hazelcast.map.impl.operation.DeleteOperation +07:00:52.373 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.373 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.373 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.373 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad, base path is set to: null +07:00:52.373 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad +07:00:52.373 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7fb471a0-5264-42f0-babc-5367d202ccad", "7fb471a0-5264-42f0-babc-5367d202ccad", refreshToken) +07:00:52.374 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7fb471a0-5264-42f0-babc-5367d202ccad +07:00:52.374 [XNIO-1 task-1] bM0igTAjRrWvn1by1PbagQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7fb471a0-5264-42f0-babc-5367d202ccad is not found.","severity":"ERROR"} +07:00:52.379 [XNIO-1 task-1] f3WdiZcqS0S5UZZ0d9sMZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:52.387 [XNIO-1 task-1] f3WdiZcqS0S5UZZ0d9sMZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9bd5158f-0560-44bb-aecd-dd1d8e73626b is not found.","severity":"ERROR"} + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +07:00:52.393 [XNIO-1 task-1] slY3EnxISjON5MlE6jdTCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +07:00:52.394 [XNIO-1 task-1] slY3EnxISjON5MlE6jdTCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:52.409 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9494a8c2 +07:00:52.410 [XNIO-1 task-1] 4z4LCjD_RhiasMeCVYVhNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad +07:00:52.410 [XNIO-1 task-1] 4z4LCjD_RhiasMeCVYVhNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.411 [XNIO-1 task-1] 4z4LCjD_RhiasMeCVYVhNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.411 [XNIO-1 task-1] 4z4LCjD_RhiasMeCVYVhNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7fb471a0-5264-42f0-babc-5367d202ccad +07:00:52.411 [XNIO-1 task-1] 4z4LCjD_RhiasMeCVYVhNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7fb471a0-5264-42f0-babc-5367d202ccad +07:00:52.411 [XNIO-1 task-1] 4z4LCjD_RhiasMeCVYVhNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7fb471a0-5264-42f0-babc-5367d202ccad is not found.","severity":"ERROR"} +07:00:52.412 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9494a8c2 +07:00:52.412 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9494a8c2 +07:00:52.415 [XNIO-1 task-1] d4-EPIcJTHO0JkdPzl12aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +07:00:52.416 [XNIO-1 task-1] d4-EPIcJTHO0JkdPzl12aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.416 [XNIO-1 task-1] d4-EPIcJTHO0JkdPzl12aA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.421 [XNIO-1 task-1] TdlEKDS8SfGihFmoohaoZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.421 [XNIO-1 task-1] TdlEKDS8SfGihFmoohaoZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +07:00:52.421 [XNIO-1 task-1] TdlEKDS8SfGihFmoohaoZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.421 [XNIO-1 task-1] TdlEKDS8SfGihFmoohaoZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.422 [XNIO-1 task-1] TdlEKDS8SfGihFmoohaoZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.430 [XNIO-1 task-1] zb21ZGetQaWL7G5KNNVe4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db4541c1-4057-4e7a-870b-5a55a30fe483, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +07:00:52.431 [XNIO-1 task-1] zb21ZGetQaWL7G5KNNVe4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +07:00:52.431 [XNIO-1 task-1] zb21ZGetQaWL7G5KNNVe4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +07:00:52.436 [XNIO-1 task-1] zb21ZGetQaWL7G5KNNVe4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token db4541c1-4057-4e7a-870b-5a55a30fe483 is not found.","severity":"ERROR"} +07:00:52.439 [XNIO-1 task-1] l04s0NlrQsqj7VK8KECMNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.439 [XNIO-1 task-1] l04s0NlrQsqj7VK8KECMNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.439 [XNIO-1 task-1] l04s0NlrQsqj7VK8KECMNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.439 [XNIO-1 task-1] l04s0NlrQsqj7VK8KECMNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.440 [XNIO-1 task-1] l04s0NlrQsqj7VK8KECMNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.444 [XNIO-1 task-1] 1_-dvytQRtmFcjgYv4ZHGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.444 [XNIO-1 task-1] 1_-dvytQRtmFcjgYv4ZHGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.444 [XNIO-1 task-1] 1_-dvytQRtmFcjgYv4ZHGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.445 [XNIO-1 task-1] 1_-dvytQRtmFcjgYv4ZHGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.445 [XNIO-1 task-1] 1_-dvytQRtmFcjgYv4ZHGg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.453 [XNIO-1 task-1] Cwy-BjboR5CL5JaLJfMWew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.453 [XNIO-1 task-1] Cwy-BjboR5CL5JaLJfMWew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.454 [XNIO-1 task-1] Cwy-BjboR5CL5JaLJfMWew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.454 [XNIO-1 task-1] Cwy-BjboR5CL5JaLJfMWew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.463 [XNIO-1 task-1] CZ_zcY3VQ9WONnwE5m8U3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b, base path is set to: null +07:00:52.463 [XNIO-1 task-1] CZ_zcY3VQ9WONnwE5m8U3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.464 [XNIO-1 task-1] CZ_zcY3VQ9WONnwE5m8U3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.464 [XNIO-1 task-1] CZ_zcY3VQ9WONnwE5m8U3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b, base path is set to: null +07:00:52.464 [XNIO-1 task-1] CZ_zcY3VQ9WONnwE5m8U3A DEBUG com.networknt.schema.TypeValidator debug - validate( "9bd5158f-0560-44bb-aecd-dd1d8e73626b", "9bd5158f-0560-44bb-aecd-dd1d8e73626b", refreshToken) +07:00:52.464 [XNIO-1 task-1] CZ_zcY3VQ9WONnwE5m8U3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9bd5158f-0560-44bb-aecd-dd1d8e73626b is not found.","severity":"ERROR"} +07:00:52.470 [XNIO-1 task-1] kIVHGdBgR-eQz-QsAojacA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.470 [XNIO-1 task-1] kIVHGdBgR-eQz-QsAojacA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.470 [XNIO-1 task-1] kIVHGdBgR-eQz-QsAojacA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.470 [XNIO-1 task-1] kIVHGdBgR-eQz-QsAojacA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.475 [XNIO-1 task-1] 2TvHJFnpQxuifdkmVpjvJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.475 [XNIO-1 task-1] 2TvHJFnpQxuifdkmVpjvJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.475 [XNIO-1 task-1] 2TvHJFnpQxuifdkmVpjvJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.475 [XNIO-1 task-1] 2TvHJFnpQxuifdkmVpjvJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.475 [XNIO-1 task-1] 2TvHJFnpQxuifdkmVpjvJw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.484 [XNIO-1 task-1] cLL512BfR_-c9b4TM5OjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.485 [XNIO-1 task-1] cLL512BfR_-c9b4TM5OjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.485 [XNIO-1 task-1] cLL512BfR_-c9b4TM5OjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.485 [XNIO-1 task-1] cLL512BfR_-c9b4TM5OjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.485 [XNIO-1 task-1] cLL512BfR_-c9b4TM5OjvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.494 [XNIO-1 task-1] mb_kGcwiR8OY4bC97yTYjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:52.494 [XNIO-1 task-1] mb_kGcwiR8OY4bC97yTYjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.494 [XNIO-1 task-1] mb_kGcwiR8OY4bC97yTYjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.495 [XNIO-1 task-1] mb_kGcwiR8OY4bC97yTYjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:52.495 [XNIO-1 task-1] mb_kGcwiR8OY4bC97yTYjg DEBUG com.networknt.schema.TypeValidator debug - validate( "746d9b87-50c2-423d-bd99-3c601627c9b5", "746d9b87-50c2-423d-bd99-3c601627c9b5", refreshToken) +07:00:52.495 [XNIO-1 task-1] mb_kGcwiR8OY4bC97yTYjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 746d9b87-50c2-423d-bd99-3c601627c9b5 is not found.","severity":"ERROR"} +07:00:52.499 [XNIO-1 task-1] lysEI2laTVyf5A0TBmyH9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.500 [XNIO-1 task-1] lysEI2laTVyf5A0TBmyH9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.500 [XNIO-1 task-1] lysEI2laTVyf5A0TBmyH9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.500 [XNIO-1 task-1] lysEI2laTVyf5A0TBmyH9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.501 [XNIO-1 task-1] lysEI2laTVyf5A0TBmyH9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.507 [XNIO-1 task-1] HGq5ulUeSoq17FdtTr460w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:52.507 [XNIO-1 task-1] HGq5ulUeSoq17FdtTr460w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.507 [XNIO-1 task-1] HGq5ulUeSoq17FdtTr460w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.507 [XNIO-1 task-1] HGq5ulUeSoq17FdtTr460w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:52.508 [XNIO-1 task-1] HGq5ulUeSoq17FdtTr460w DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:52.508 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:52.514 [XNIO-1 task-1] daERRpKLSzaDdlQ8935p-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:52.514 [XNIO-1 task-1] daERRpKLSzaDdlQ8935p-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.514 [XNIO-1 task-1] daERRpKLSzaDdlQ8935p-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.514 [XNIO-1 task-1] daERRpKLSzaDdlQ8935p-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:52.515 [XNIO-1 task-1] daERRpKLSzaDdlQ8935p-A DEBUG com.networknt.schema.TypeValidator debug - validate( "746d9b87-50c2-423d-bd99-3c601627c9b5", "746d9b87-50c2-423d-bd99-3c601627c9b5", refreshToken) +07:00:52.515 [XNIO-1 task-1] daERRpKLSzaDdlQ8935p-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 746d9b87-50c2-423d-bd99-3c601627c9b5 is not found.","severity":"ERROR"} +07:00:52.519 [XNIO-1 task-1] WySTV46wS466tbb-duPLQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:52.519 [XNIO-1 task-1] WySTV46wS466tbb-duPLQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.519 [XNIO-1 task-1] WySTV46wS466tbb-duPLQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.520 [XNIO-1 task-1] WySTV46wS466tbb-duPLQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:52.520 [XNIO-1 task-1] WySTV46wS466tbb-duPLQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:52.521 [XNIO-1 task-1] WySTV46wS466tbb-duPLQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 is not found.","severity":"ERROR"} +07:00:52.524 [XNIO-1 task-1] ebBTniTHRoeFr9m5m4BvCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.524 [XNIO-1 task-1] ebBTniTHRoeFr9m5m4BvCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.524 [XNIO-1 task-1] ebBTniTHRoeFr9m5m4BvCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.524 [XNIO-1 task-1] ebBTniTHRoeFr9m5m4BvCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.525 [XNIO-1 task-1] ebBTniTHRoeFr9m5m4BvCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 746d9b87-50c2-423d-bd99-3c601627c9b5 +07:00:52.532 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5aac8876 +07:00:52.533 [XNIO-1 task-1] ynejh4HZS7mCcUyteEEupQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.534 [XNIO-1 task-1] ynejh4HZS7mCcUyteEEupQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.534 [XNIO-1 task-1] ynejh4HZS7mCcUyteEEupQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.534 [XNIO-1 task-1] ynejh4HZS7mCcUyteEEupQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.534 [XNIO-1 task-1] ynejh4HZS7mCcUyteEEupQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", refreshToken) +07:00:52.534 [XNIO-1 task-1] ynejh4HZS7mCcUyteEEupQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 is not found.","severity":"ERROR"} +07:00:52.539 [XNIO-1 task-1] 5Rqc93dZQxmyIRePYzjzpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.539 [XNIO-1 task-1] 5Rqc93dZQxmyIRePYzjzpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.539 [XNIO-1 task-1] 5Rqc93dZQxmyIRePYzjzpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.539 [XNIO-1 task-1] 5Rqc93dZQxmyIRePYzjzpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.549 [XNIO-1 task-1] hKuvThR-QR2W-IaEL8ZoyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:52.549 [XNIO-1 task-1] hKuvThR-QR2W-IaEL8ZoyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.549 [XNIO-1 task-1] hKuvThR-QR2W-IaEL8ZoyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.549 [XNIO-1 task-1] hKuvThR-QR2W-IaEL8ZoyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74, base path is set to: null +07:00:52.551 [XNIO-1 task-1] hKuvThR-QR2W-IaEL8ZoyA DEBUG com.networknt.schema.TypeValidator debug - validate( "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", "e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74", refreshToken) +07:00:52.551 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e02a5fc6-fe7a-484b-b2ed-d3db6d2e5c74 +07:00:52.555 [XNIO-1 task-1] BZ_z6SS_SsOSW3c7jmpJ1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.555 [XNIO-1 task-1] BZ_z6SS_SsOSW3c7jmpJ1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.555 [XNIO-1 task-1] BZ_z6SS_SsOSW3c7jmpJ1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.556 [XNIO-1 task-1] BZ_z6SS_SsOSW3c7jmpJ1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.556 [XNIO-1 task-1] BZ_z6SS_SsOSW3c7jmpJ1g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.566 [XNIO-1 task-1] 1J4BzqpPQL2osP8jNBEwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 +07:00:52.566 [XNIO-1 task-1] 1J4BzqpPQL2osP8jNBEwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.566 [XNIO-1 task-1] 1J4BzqpPQL2osP8jNBEwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.567 [XNIO-1 task-1] 1J4BzqpPQL2osP8jNBEwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 +07:00:52.568 [XNIO-1 task-1] 1J4BzqpPQL2osP8jNBEwYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 +07:00:52.570 [XNIO-1 task-1] hIt6jNX9QmOZ8gkgo3L22w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.570 [XNIO-1 task-1] hIt6jNX9QmOZ8gkgo3L22w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.570 [XNIO-1 task-1] hIt6jNX9QmOZ8gkgo3L22w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.571 [XNIO-1 task-1] hIt6jNX9QmOZ8gkgo3L22w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.571 [XNIO-1 task-1] hIt6jNX9QmOZ8gkgo3L22w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.597 [XNIO-1 task-1] 0KoCoaOjT5-45OISpptEBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.597 [XNIO-1 task-1] 0KoCoaOjT5-45OISpptEBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.597 [XNIO-1 task-1] 0KoCoaOjT5-45OISpptEBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.597 [XNIO-1 task-1] 0KoCoaOjT5-45OISpptEBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.605 [XNIO-1 task-1] VRuK_pRNSaWMXBRuT0HHvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.607 [XNIO-1 task-1] VRuK_pRNSaWMXBRuT0HHvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.607 [XNIO-1 task-1] VRuK_pRNSaWMXBRuT0HHvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.607 [XNIO-1 task-1] VRuK_pRNSaWMXBRuT0HHvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.607 [XNIO-1 task-1] VRuK_pRNSaWMXBRuT0HHvw DEBUG com.networknt.schema.TypeValidator debug - validate( "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", refreshToken) +07:00:52.622 [XNIO-1 task-1] UeYiTlt1TVCZra8Pd7xUeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.622 [XNIO-1 task-1] UeYiTlt1TVCZra8Pd7xUeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.622 [XNIO-1 task-1] UeYiTlt1TVCZra8Pd7xUeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.622 [XNIO-1 task-1] UeYiTlt1TVCZra8Pd7xUeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72, base path is set to: null +07:00:52.623 [XNIO-1 task-1] UeYiTlt1TVCZra8Pd7xUeA DEBUG com.networknt.schema.TypeValidator debug - validate( "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", "f5e9807e-bacc-4155-92bf-a1dd4d2dfa72", refreshToken) +07:00:52.623 [XNIO-1 task-1] UeYiTlt1TVCZra8Pd7xUeA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 is not found.","severity":"ERROR"} +07:00:52.629 [XNIO-1 task-1] 2J4cdm63Qfi25KGMyuwvfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.629 [XNIO-1 task-1] 2J4cdm63Qfi25KGMyuwvfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.629 [XNIO-1 task-1] 2J4cdm63Qfi25KGMyuwvfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.629 [XNIO-1 task-1] 2J4cdm63Qfi25KGMyuwvfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.629 [XNIO-1 task-1] 2J4cdm63Qfi25KGMyuwvfA DEBUG com.networknt.schema.TypeValidator debug - validate( "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", refreshToken) +07:00:52.631 [XNIO-1 task-1] 2J4cdm63Qfi25KGMyuwvfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 10bb504c-d4e5-4758-82ea-3bda45ca3fe9 is not found.","severity":"ERROR"} +07:00:52.634 [XNIO-1 task-1] 9p00-swxSGKs38YX4j0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 +07:00:52.634 [XNIO-1 task-1] 9p00-swxSGKs38YX4j0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.634 [XNIO-1 task-1] 9p00-swxSGKs38YX4j0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.634 [XNIO-1 task-1] 9p00-swxSGKs38YX4j0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 +07:00:52.635 [XNIO-1 task-1] 9p00-swxSGKs38YX4j0z9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f5e9807e-bacc-4155-92bf-a1dd4d2dfa72 +07:00:52.636 [XNIO-1 task-1] G3r3Nl8pTxuJWC6hNUHiZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.637 [XNIO-1 task-1] G3r3Nl8pTxuJWC6hNUHiZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.637 [XNIO-1 task-1] G3r3Nl8pTxuJWC6hNUHiZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.637 [XNIO-1 task-1] G3r3Nl8pTxuJWC6hNUHiZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.637 [XNIO-1 task-1] G3r3Nl8pTxuJWC6hNUHiZw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.645 [XNIO-1 task-1] TcoRozbrSEODgPBVUeU2rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d6ea23a0-6771-4b4d-a6e4-63f717092701, base path is set to: null +07:00:52.645 [XNIO-1 task-1] TcoRozbrSEODgPBVUeU2rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.645 [XNIO-1 task-1] TcoRozbrSEODgPBVUeU2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.645 [XNIO-1 task-1] TcoRozbrSEODgPBVUeU2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.645 [XNIO-1 task-1] TcoRozbrSEODgPBVUeU2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d6ea23a0-6771-4b4d-a6e4-63f717092701 +07:00:52.646 [XNIO-1 task-1] TcoRozbrSEODgPBVUeU2rg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d6ea23a0-6771-4b4d-a6e4-63f717092701 +07:00:52.646 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:eea9df46-69de-40fe-955b-3f3dcaad3c4a +07:00:52.654 [XNIO-1 task-1] 1pZwawv0S-aH7gSb6HFVfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.654 [XNIO-1 task-1] 1pZwawv0S-aH7gSb6HFVfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.654 [XNIO-1 task-1] 1pZwawv0S-aH7gSb6HFVfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.655 [XNIO-1 task-1] 1pZwawv0S-aH7gSb6HFVfA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.655 [XNIO-1 task-1] 1pZwawv0S-aH7gSb6HFVfA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.661 [XNIO-1 task-1] 8EeIeoXPSc-tYNfKYdU1nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.662 [XNIO-1 task-1] 8EeIeoXPSc-tYNfKYdU1nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.662 [XNIO-1 task-1] 8EeIeoXPSc-tYNfKYdU1nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.662 [XNIO-1 task-1] 8EeIeoXPSc-tYNfKYdU1nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.662 [XNIO-1 task-1] 8EeIeoXPSc-tYNfKYdU1nw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1b4e971-8102-4062-8f7c-e6a1da63b44a", "b1b4e971-8102-4062-8f7c-e6a1da63b44a", refreshToken) +07:00:52.662 [XNIO-1 task-1] 8EeIeoXPSc-tYNfKYdU1nw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b1b4e971-8102-4062-8f7c-e6a1da63b44a is not found.","severity":"ERROR"} +07:00:52.666 [XNIO-1 task-1] jy21bM1iR6ajSwWyBNvtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.666 [XNIO-1 task-1] jy21bM1iR6ajSwWyBNvtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.666 [XNIO-1 task-1] jy21bM1iR6ajSwWyBNvtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.666 [XNIO-1 task-1] jy21bM1iR6ajSwWyBNvtxg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.667 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:eea9df46-69de-40fe-955b-3f3dcaad3c4a +07:00:52.671 [XNIO-1 task-1] zQt6XT85TmaiKg8xTl51zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.671 [XNIO-1 task-1] zQt6XT85TmaiKg8xTl51zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.671 [XNIO-1 task-1] zQt6XT85TmaiKg8xTl51zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.671 [XNIO-1 task-1] zQt6XT85TmaiKg8xTl51zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.672 [XNIO-1 task-1] zQt6XT85TmaiKg8xTl51zg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.676 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:28088533-4847-40f5-83cb-8b82b8144893 +07:00:52.676 [XNIO-1 task-1] NfSAJvgiRAeahbN-QAEGPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.676 [XNIO-1 task-1] NfSAJvgiRAeahbN-QAEGPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.676 [XNIO-1 task-1] NfSAJvgiRAeahbN-QAEGPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.677 [XNIO-1 task-1] NfSAJvgiRAeahbN-QAEGPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.677 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:28088533-4847-40f5-83cb-8b82b8144893 +07:00:52.677 [XNIO-1 task-1] NfSAJvgiRAeahbN-QAEGPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.680 [XNIO-1 task-1] jyZExhzTR2KKAKEMPvhGzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.681 [XNIO-1 task-1] jyZExhzTR2KKAKEMPvhGzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.681 [XNIO-1 task-1] jyZExhzTR2KKAKEMPvhGzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.681 [XNIO-1 task-1] jyZExhzTR2KKAKEMPvhGzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.681 [XNIO-1 task-1] jyZExhzTR2KKAKEMPvhGzg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.686 [XNIO-1 task-1] 1Lwi4XVgRVOXQdMl7Uh74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.686 [XNIO-1 task-1] 1Lwi4XVgRVOXQdMl7Uh74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.686 [XNIO-1 task-1] 1Lwi4XVgRVOXQdMl7Uh74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.686 [XNIO-1 task-1] 1Lwi4XVgRVOXQdMl7Uh74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.687 [XNIO-1 task-1] 1Lwi4XVgRVOXQdMl7Uh74Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.692 [XNIO-1 task-1] tNPRSDhrRTmQagK8yXQ8xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.693 [XNIO-1 task-1] tNPRSDhrRTmQagK8yXQ8xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.693 [XNIO-1 task-1] tNPRSDhrRTmQagK8yXQ8xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.693 [XNIO-1 task-1] tNPRSDhrRTmQagK8yXQ8xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.693 [XNIO-1 task-1] tNPRSDhrRTmQagK8yXQ8xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b1b4e971-8102-4062-8f7c-e6a1da63b44a", "b1b4e971-8102-4062-8f7c-e6a1da63b44a", refreshToken) +07:00:52.693 [XNIO-1 task-1] tNPRSDhrRTmQagK8yXQ8xQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b1b4e971-8102-4062-8f7c-e6a1da63b44a is not found.","severity":"ERROR"} +07:00:52.696 [XNIO-1 task-1] a6HT-mE2R_ec4iwZvptFqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.696 [XNIO-1 task-1] a6HT-mE2R_ec4iwZvptFqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.696 [XNIO-1 task-1] a6HT-mE2R_ec4iwZvptFqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.696 [XNIO-1 task-1] a6HT-mE2R_ec4iwZvptFqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.698 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:28088533-4847-40f5-83cb-8b82b8144893 +07:00:52.700 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9494a8c2 +07:00:52.701 [XNIO-1 task-1] bcRwjYb1QT2FK7wCZcJ9Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.701 [XNIO-1 task-1] bcRwjYb1QT2FK7wCZcJ9Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.701 [XNIO-1 task-1] bcRwjYb1QT2FK7wCZcJ9Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.702 [XNIO-1 task-1] bcRwjYb1QT2FK7wCZcJ9Eg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.709 [XNIO-1 task-1] PF-heOnjT5mYo-ik5gL7pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.710 [XNIO-1 task-1] PF-heOnjT5mYo-ik5gL7pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.711 [XNIO-1 task-1] PF-heOnjT5mYo-ik5gL7pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.711 [XNIO-1 task-1] PF-heOnjT5mYo-ik5gL7pw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.711 [XNIO-1 task-1] PF-heOnjT5mYo-ik5gL7pw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.725 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:52.736 [XNIO-1 task-1] kzY9VfWJQh-SjLP7xRzuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.736 [XNIO-1 task-1] kzY9VfWJQh-SjLP7xRzuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.736 [XNIO-1 task-1] kzY9VfWJQh-SjLP7xRzuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.737 [XNIO-1 task-1] kzY9VfWJQh-SjLP7xRzuuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.744 [XNIO-1 task-1] uIrghkD2Ttyll5tO3bV0_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.744 [XNIO-1 task-1] uIrghkD2Ttyll5tO3bV0_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.744 [XNIO-1 task-1] uIrghkD2Ttyll5tO3bV0_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.744 [XNIO-1 task-1] uIrghkD2Ttyll5tO3bV0_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a, base path is set to: null +07:00:52.744 [XNIO-1 task-1] uIrghkD2Ttyll5tO3bV0_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b1b4e971-8102-4062-8f7c-e6a1da63b44a", "b1b4e971-8102-4062-8f7c-e6a1da63b44a", refreshToken) +07:00:52.745 [XNIO-1 task-1] uIrghkD2Ttyll5tO3bV0_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b1b4e971-8102-4062-8f7c-e6a1da63b44a is not found.","severity":"ERROR"} +07:00:52.747 [XNIO-1 task-1] o9qFo6KETcyPn8KudRxAMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.747 [XNIO-1 task-1] o9qFo6KETcyPn8KudRxAMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.747 [XNIO-1 task-1] o9qFo6KETcyPn8KudRxAMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.747 [XNIO-1 task-1] o9qFo6KETcyPn8KudRxAMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.747 [XNIO-1 task-1] o9qFo6KETcyPn8KudRxAMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.750 [XNIO-1 task-1] CnXVD_unT7eJmxEMgHDsyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.750 [XNIO-1 task-1] CnXVD_unT7eJmxEMgHDsyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.750 [XNIO-1 task-1] CnXVD_unT7eJmxEMgHDsyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.750 [XNIO-1 task-1] CnXVD_unT7eJmxEMgHDsyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.752 [XNIO-1 task-1] CnXVD_unT7eJmxEMgHDsyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.755 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:52.763 [XNIO-1 task-1] S2Tde2IzRY2_WcksAKEJhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.763 [XNIO-1 task-1] S2Tde2IzRY2_WcksAKEJhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.763 [XNIO-1 task-1] S2Tde2IzRY2_WcksAKEJhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.764 [XNIO-1 task-1] S2Tde2IzRY2_WcksAKEJhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.766 [XNIO-1 task-1] S2Tde2IzRY2_WcksAKEJhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b1b4e971-8102-4062-8f7c-e6a1da63b44a +07:00:52.773 [XNIO-1 task-1] Dm3RcPDSRoObwHQaE3kfOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5, base path is set to: null +07:00:52.774 [XNIO-1 task-1] Dm3RcPDSRoObwHQaE3kfOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.774 [XNIO-1 task-1] Dm3RcPDSRoObwHQaE3kfOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.774 [XNIO-1 task-1] Dm3RcPDSRoObwHQaE3kfOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5, base path is set to: null +07:00:52.774 [XNIO-1 task-1] Dm3RcPDSRoObwHQaE3kfOw DEBUG com.networknt.schema.TypeValidator debug - validate( "283754ca-6554-4e34-b595-0743f9c3e7b5", "283754ca-6554-4e34-b595-0743f9c3e7b5", refreshToken) +07:00:52.781 [XNIO-1 task-1] I5UU3rBOSPedmlT2QYf-fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5, base path is set to: null +07:00:52.781 [XNIO-1 task-1] I5UU3rBOSPedmlT2QYf-fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.781 [XNIO-1 task-1] I5UU3rBOSPedmlT2QYf-fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.781 [XNIO-1 task-1] I5UU3rBOSPedmlT2QYf-fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5, base path is set to: null +07:00:52.781 [XNIO-1 task-1] I5UU3rBOSPedmlT2QYf-fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "283754ca-6554-4e34-b595-0743f9c3e7b5", "283754ca-6554-4e34-b595-0743f9c3e7b5", refreshToken) +07:00:52.785 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3139e53c-c9c6-484a-99ef-5241e07aac19 +07:00:52.787 [XNIO-1 task-1] -NXqMJQJShWed18jaeP7CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5, base path is set to: null +07:00:52.787 [XNIO-1 task-1] -NXqMJQJShWed18jaeP7CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.787 [XNIO-1 task-1] -NXqMJQJShWed18jaeP7CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.787 [XNIO-1 task-1] -NXqMJQJShWed18jaeP7CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5, base path is set to: null +07:00:52.787 [XNIO-1 task-1] -NXqMJQJShWed18jaeP7CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "283754ca-6554-4e34-b595-0743f9c3e7b5", "283754ca-6554-4e34-b595-0743f9c3e7b5", refreshToken) +07:00:52.800 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3139e53c-c9c6-484a-99ef-5241e07aac19 +07:00:52.802 [XNIO-1 task-1] -6HbL_kDSWuixHj8vUGMgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.802 [XNIO-1 task-1] -6HbL_kDSWuixHj8vUGMgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.802 [XNIO-1 task-1] -6HbL_kDSWuixHj8vUGMgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.802 [XNIO-1 task-1] -6HbL_kDSWuixHj8vUGMgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.802 [XNIO-1 task-1] -6HbL_kDSWuixHj8vUGMgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.807 [XNIO-1 task-1] ZEBFHo5URz-ET0pjwb0jJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.807 [XNIO-1 task-1] ZEBFHo5URz-ET0pjwb0jJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.807 [XNIO-1 task-1] ZEBFHo5URz-ET0pjwb0jJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.807 [XNIO-1 task-1] ZEBFHo5URz-ET0pjwb0jJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.807 [XNIO-1 task-1] ZEBFHo5URz-ET0pjwb0jJg DEBUG com.networknt.schema.TypeValidator debug - validate( "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", refreshToken) +07:00:52.807 [XNIO-1 task-1] ZEBFHo5URz-ET0pjwb0jJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 10bb504c-d4e5-4758-82ea-3bda45ca3fe9 is not found.","severity":"ERROR"} +07:00:52.811 [XNIO-1 task-1] p-cBMpPXSBCu4ajWiiO2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.811 [XNIO-1 task-1] p-cBMpPXSBCu4ajWiiO2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.811 [XNIO-1 task-1] p-cBMpPXSBCu4ajWiiO2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.812 [XNIO-1 task-1] p-cBMpPXSBCu4ajWiiO2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.812 [XNIO-1 task-1] p-cBMpPXSBCu4ajWiiO2BA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.827 [XNIO-1 task-1] YrEMRyNHSliBIpGVBObE8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.827 [XNIO-1 task-1] YrEMRyNHSliBIpGVBObE8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.827 [XNIO-1 task-1] YrEMRyNHSliBIpGVBObE8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.827 [XNIO-1 task-1] YrEMRyNHSliBIpGVBObE8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.827 [XNIO-1 task-1] YrEMRyNHSliBIpGVBObE8w DEBUG com.networknt.schema.TypeValidator debug - validate( "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", refreshToken) +07:00:52.828 [XNIO-1 task-1] YrEMRyNHSliBIpGVBObE8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 10bb504c-d4e5-4758-82ea-3bda45ca3fe9 is not found.","severity":"ERROR"} +07:00:52.830 [XNIO-1 task-1] ejBBA4AqQNuxXQ7n5C092A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.830 [XNIO-1 task-1] ejBBA4AqQNuxXQ7n5C092A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.830 [XNIO-1 task-1] ejBBA4AqQNuxXQ7n5C092A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.830 [XNIO-1 task-1] ejBBA4AqQNuxXQ7n5C092A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.831 [XNIO-1 task-1] ejBBA4AqQNuxXQ7n5C092A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 283754ca-6554-4e34-b595-0743f9c3e7b5 +07:00:52.833 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b15f1c71 +07:00:52.834 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b15f1c71 +07:00:52.837 [XNIO-1 task-1] 30WUXugnSDWe0S51_KSA3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:52.837 [XNIO-1 task-1] 30WUXugnSDWe0S51_KSA3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.837 [XNIO-1 task-1] 30WUXugnSDWe0S51_KSA3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.837 [XNIO-1 task-1] 30WUXugnSDWe0S51_KSA3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:52.838 [XNIO-1 task-1] 30WUXugnSDWe0S51_KSA3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:52.843 [XNIO-1 task-1] GjH01JdOSyKfdSIm8YDQvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.843 [XNIO-1 task-1] GjH01JdOSyKfdSIm8YDQvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.843 [XNIO-1 task-1] GjH01JdOSyKfdSIm8YDQvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.843 [XNIO-1 task-1] GjH01JdOSyKfdSIm8YDQvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9, base path is set to: null +07:00:52.844 [XNIO-1 task-1] GjH01JdOSyKfdSIm8YDQvg DEBUG com.networknt.schema.TypeValidator debug - validate( "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", "10bb504c-d4e5-4758-82ea-3bda45ca3fe9", refreshToken) +07:00:52.844 [XNIO-1 task-1] GjH01JdOSyKfdSIm8YDQvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 10bb504c-d4e5-4758-82ea-3bda45ca3fe9 is not found.","severity":"ERROR"} +07:00:52.847 [XNIO-1 task-1] RLp8QwrqQZywBhlz19wwzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:52.847 [XNIO-1 task-1] RLp8QwrqQZywBhlz19wwzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.847 [XNIO-1 task-1] RLp8QwrqQZywBhlz19wwzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.847 [XNIO-1 task-1] RLp8QwrqQZywBhlz19wwzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/248547d8-424f-4534-87fb-7d1262629d49 +07:00:52.848 [XNIO-1 task-1] RLp8QwrqQZywBhlz19wwzQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 248547d8-424f-4534-87fb-7d1262629d49 +07:00:52.851 [XNIO-1 task-1] QLZO2FsxRTukS9Mm04og_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.851 [XNIO-1 task-1] QLZO2FsxRTukS9Mm04og_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.851 [XNIO-1 task-1] QLZO2FsxRTukS9Mm04og_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.851 [XNIO-1 task-1] QLZO2FsxRTukS9Mm04og_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.851 [XNIO-1 task-1] QLZO2FsxRTukS9Mm04og_g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.862 [XNIO-1 task-1] -QhKmWlgSxaTYHCELhkySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.863 [XNIO-1 task-1] -QhKmWlgSxaTYHCELhkySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.863 [XNIO-1 task-1] -QhKmWlgSxaTYHCELhkySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.863 [XNIO-1 task-1] -QhKmWlgSxaTYHCELhkySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.863 [XNIO-1 task-1] -QhKmWlgSxaTYHCELhkySQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 10bb504c-d4e5-4758-82ea-3bda45ca3fe9 +07:00:52.872 [XNIO-1 task-1] 2j8j9WnTSAqZJ2uBVeOYmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:52.872 [XNIO-1 task-1] 2j8j9WnTSAqZJ2uBVeOYmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.872 [XNIO-1 task-1] 2j8j9WnTSAqZJ2uBVeOYmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.872 [XNIO-1 task-1] 2j8j9WnTSAqZJ2uBVeOYmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762, base path is set to: null +07:00:52.873 [XNIO-1 task-1] 2j8j9WnTSAqZJ2uBVeOYmw DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea4b92e-500a-442b-89e2-b00cde0af762", "4ea4b92e-500a-442b-89e2-b00cde0af762", refreshToken) +07:00:52.873 [XNIO-1 task-1] 2j8j9WnTSAqZJ2uBVeOYmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4ea4b92e-500a-442b-89e2-b00cde0af762 is not found.","severity":"ERROR"} +07:00:52.880 [XNIO-1 task-1] CHlQqlXzQLqQgGhMnhKAyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.880 [XNIO-1 task-1] CHlQqlXzQLqQgGhMnhKAyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.880 [XNIO-1 task-1] CHlQqlXzQLqQgGhMnhKAyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.880 [XNIO-1 task-1] CHlQqlXzQLqQgGhMnhKAyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:52.887 [XNIO-1 task-1] yiU5Cs9qRoiv57hlXrL0Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.887 [XNIO-1 task-1] yiU5Cs9qRoiv57hlXrL0Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.887 [XNIO-1 task-1] yiU5Cs9qRoiv57hlXrL0Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.887 [XNIO-1 task-1] yiU5Cs9qRoiv57hlXrL0Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.888 [XNIO-1 task-1] yiU5Cs9qRoiv57hlXrL0Wg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.908 [XNIO-1 task-1] 5XHNrLnrROSvQF6IkOPxzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:52.908 [XNIO-1 task-1] 5XHNrLnrROSvQF6IkOPxzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.908 [XNIO-1 task-1] 5XHNrLnrROSvQF6IkOPxzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.908 [XNIO-1 task-1] 5XHNrLnrROSvQF6IkOPxzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:52.908 [XNIO-1 task-1] 5XHNrLnrROSvQF6IkOPxzQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:52.914 [XNIO-1 task-1] Sc0wvni9R5CzNfVdsYdeOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b, base path is set to: null +07:00:52.914 [XNIO-1 task-1] Sc0wvni9R5CzNfVdsYdeOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.914 [XNIO-1 task-1] Sc0wvni9R5CzNfVdsYdeOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +07:00:52.914 [XNIO-1 task-1] Sc0wvni9R5CzNfVdsYdeOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b, base path is set to: null +07:00:52.914 [XNIO-1 task-1] Sc0wvni9R5CzNfVdsYdeOg DEBUG com.networknt.schema.TypeValidator debug - validate( "9bd5158f-0560-44bb-aecd-dd1d8e73626b", "9bd5158f-0560-44bb-aecd-dd1d8e73626b", refreshToken) +07:00:52.914 [XNIO-1 task-1] Sc0wvni9R5CzNfVdsYdeOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9bd5158f-0560-44bb-aecd-dd1d8e73626b is not found.","severity":"ERROR"} +07:00:52.918 [XNIO-1 task-1] uLCbkqKzTemzuY3EAuIQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aeb5235a-312c-413c-9d36-7b2b55a97f95 +07:00:52.918 [XNIO-1 task-1] uLCbkqKzTemzuY3EAuIQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.918 [XNIO-1 task-1] uLCbkqKzTemzuY3EAuIQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.918 [XNIO-1 task-1] uLCbkqKzTemzuY3EAuIQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aeb5235a-312c-413c-9d36-7b2b55a97f95 +07:00:52.919 [XNIO-1 task-1] uLCbkqKzTemzuY3EAuIQbA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aeb5235a-312c-413c-9d36-7b2b55a97f95 +07:00:52.925 [XNIO-1 task-1] krhLPEX-Q9Gy5fM2_iPiow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:52.925 [XNIO-1 task-1] krhLPEX-Q9Gy5fM2_iPiow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.925 [XNIO-1 task-1] krhLPEX-Q9Gy5fM2_iPiow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.925 [XNIO-1 task-1] krhLPEX-Q9Gy5fM2_iPiow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:52.926 [XNIO-1 task-1] krhLPEX-Q9Gy5fM2_iPiow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:52.929 [XNIO-1 task-1] 8q3epHBiRb2vmSwtvOvsqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.929 [XNIO-1 task-1] 8q3epHBiRb2vmSwtvOvsqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.929 [XNIO-1 task-1] 8q3epHBiRb2vmSwtvOvsqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.930 [XNIO-1 task-1] 8q3epHBiRb2vmSwtvOvsqg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.930 [XNIO-1 task-1] 8q3epHBiRb2vmSwtvOvsqg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.940 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5f69a1fc +07:00:52.943 [XNIO-1 task-1] 81HLU30TR6GMUoYun5vixw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:52.944 [XNIO-1 task-1] 81HLU30TR6GMUoYun5vixw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.944 [XNIO-1 task-1] 81HLU30TR6GMUoYun5vixw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.944 [XNIO-1 task-1] 81HLU30TR6GMUoYun5vixw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:52.944 [XNIO-1 task-1] 81HLU30TR6GMUoYun5vixw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4ea4b92e-500a-442b-89e2-b00cde0af762 +07:00:52.950 [XNIO-1 task-1] VkMC2c2KQOe3bLZ0DuznxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.951 [XNIO-1 task-1] VkMC2c2KQOe3bLZ0DuznxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.951 [XNIO-1 task-1] VkMC2c2KQOe3bLZ0DuznxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.951 [XNIO-1 task-1] VkMC2c2KQOe3bLZ0DuznxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.951 [XNIO-1 task-1] VkMC2c2KQOe3bLZ0DuznxA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.966 [XNIO-1 task-1] Nu_vmimaQCWTu9xWxzoSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.966 [XNIO-1 task-1] Nu_vmimaQCWTu9xWxzoSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.966 [XNIO-1 task-1] Nu_vmimaQCWTu9xWxzoSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.966 [XNIO-1 task-1] Nu_vmimaQCWTu9xWxzoSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.967 [XNIO-1 task-1] Nu_vmimaQCWTu9xWxzoSmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9bd5158f-0560-44bb-aecd-dd1d8e73626b +07:00:52.976 [XNIO-1 task-1] HfWppA7XQHe_bDTDpV9aiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.978 [XNIO-1 task-1] HfWppA7XQHe_bDTDpV9aiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +07:00:52.979 [XNIO-1 task-1] HfWppA7XQHe_bDTDpV9aiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +07:00:52.979 [XNIO-1 task-1] HfWppA7XQHe_bDTDpV9aiA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:52.979 [XNIO-1 task-1] HfWppA7XQHe_bDTDpV9aiA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +07:00:52.985 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5f69a1fc +07:00:52.986 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b15f1c71 +07:00:52.991 [XNIO-1 task-1] WhG1FH9QTuKGuu61pQxz3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:52.991 [XNIO-1 task-1] WhG1FH9QTuKGuu61pQxz3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +07:00:52.991 [XNIO-1 task-1] WhG1FH9QTuKGuu61pQxz3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +07:00:52.991 [XNIO-1 task-1] WhG1FH9QTuKGuu61pQxz3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:52.991 [XNIO-1 task-1] WhG1FH9QTuKGuu61pQxz3Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = be4170f3-4743-465b-b424-bb4f3b6c2c8c +07:00:53.002 [XNIO-1 task-1] pizrbV-DRBuSwb2a0HfDJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/746d9b87-50c2-423d-bd99-3c601627c9b5, base path is set to: null +07:00:53.002 [XNIO-1 task-1] pizrbV-DRBuSwb2a0HfDJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token diff --git a/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..1581322 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1828 @@ +07:00:39.862 [XNIO-1 task-1] IVjgpRcpS0uPIqi1rvEOyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b2d764de", "b2d764de", serviceId) +07:00:39.876 [XNIO-1 task-1] zYR_0SldQE2NWCfdYwWltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:39.876 [XNIO-1 task-1] zYR_0SldQE2NWCfdYwWltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:39.876 [XNIO-1 task-1] zYR_0SldQE2NWCfdYwWltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:39.877 [XNIO-1 task-1] zYR_0SldQE2NWCfdYwWltA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:39.949 [XNIO-1 task-1] 3VGRLLA4RnizfIFljhoYYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:39.949 [XNIO-1 task-1] 3VGRLLA4RnizfIFljhoYYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:39.950 [XNIO-1 task-1] 3VGRLLA4RnizfIFljhoYYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:39.984 [XNIO-1 task-1] TK7-l-nSSP249gcM71_HZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5abf16c4 +07:00:39.984 [XNIO-1 task-1] TK7-l-nSSP249gcM71_HZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:39.984 [XNIO-1 task-1] TK7-l-nSSP249gcM71_HZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:39.985 [XNIO-1 task-1] TK7-l-nSSP249gcM71_HZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5abf16c4 +07:00:39.991 [XNIO-1 task-1] 6pLo8P-xRTSMxQvDapdJSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:39.991 [XNIO-1 task-1] 6pLo8P-xRTSMxQvDapdJSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:39.992 [XNIO-1 task-1] 6pLo8P-xRTSMxQvDapdJSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.013 [XNIO-1 task-1] Zs1hTgjrTRuw-LDPNP0uoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.013 [XNIO-1 task-1] Zs1hTgjrTRuw-LDPNP0uoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.014 [XNIO-1 task-1] Zs1hTgjrTRuw-LDPNP0uoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.050 [XNIO-1 task-1] Mmogb8FNQa2LTBbWXHZtdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.050 [XNIO-1 task-1] Mmogb8FNQa2LTBbWXHZtdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.051 [XNIO-1 task-1] Mmogb8FNQa2LTBbWXHZtdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.051 [XNIO-1 task-1] Mmogb8FNQa2LTBbWXHZtdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:40.146 [XNIO-1 task-1] O4vqdKToRLCAaxEF1E1sdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5abf16c4, base path is set to: null +07:00:40.147 [XNIO-1 task-1] O4vqdKToRLCAaxEF1E1sdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.147 [XNIO-1 task-1] O4vqdKToRLCAaxEF1E1sdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:40.147 [XNIO-1 task-1] O4vqdKToRLCAaxEF1E1sdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5abf16c4, base path is set to: null +07:00:40.148 [XNIO-1 task-1] O4vqdKToRLCAaxEF1E1sdg DEBUG com.networknt.schema.TypeValidator debug - validate( "5abf16c4", "5abf16c4", serviceId) +07:00:40.167 [XNIO-1 task-1] MS8YmA1ES8uKSNwz4WJfjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/513bed4a +07:00:40.167 [XNIO-1 task-1] MS8YmA1ES8uKSNwz4WJfjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.167 [XNIO-1 task-1] MS8YmA1ES8uKSNwz4WJfjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:40.167 [XNIO-1 task-1] MS8YmA1ES8uKSNwz4WJfjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/513bed4a +07:00:40.180 [XNIO-1 task-1] q8-0xSy1Tl6dDd1JbSn8BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.180 [XNIO-1 task-1] q8-0xSy1Tl6dDd1JbSn8BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.180 [XNIO-1 task-1] q8-0xSy1Tl6dDd1JbSn8BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.181 [XNIO-1 task-1] q8-0xSy1Tl6dDd1JbSn8BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:40.286 [XNIO-1 task-1] pUkJZp8mREKIEiWrUF9BCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a94b50b1, base path is set to: null +07:00:40.287 [XNIO-1 task-1] pUkJZp8mREKIEiWrUF9BCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.287 [XNIO-1 task-1] pUkJZp8mREKIEiWrUF9BCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:40.288 [XNIO-1 task-1] pUkJZp8mREKIEiWrUF9BCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a94b50b1, base path is set to: null +07:00:40.289 [XNIO-1 task-1] pUkJZp8mREKIEiWrUF9BCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a94b50b1", "a94b50b1", serviceId) +07:00:40.293 [XNIO-1 task-1] t9mZYEtbRruayaP2Sm1W1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a94b50b1 +07:00:40.293 [XNIO-1 task-1] t9mZYEtbRruayaP2Sm1W1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.293 [XNIO-1 task-1] t9mZYEtbRruayaP2Sm1W1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:40.294 [XNIO-1 task-1] t9mZYEtbRruayaP2Sm1W1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a94b50b1 +07:00:40.308 [XNIO-1 task-1] 9SxRlvnQQkGhr5pJT9wU7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.308 [XNIO-1 task-1] 9SxRlvnQQkGhr5pJT9wU7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.308 [XNIO-1 task-1] 9SxRlvnQQkGhr5pJT9wU7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.329 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5587675 +07:00:40.332 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5587675 +07:00:40.345 [XNIO-1 task-1] Bj-LFIpBSoiuFo4-gOiwFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.345 [XNIO-1 task-1] Bj-LFIpBSoiuFo4-gOiwFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.345 [XNIO-1 task-1] Bj-LFIpBSoiuFo4-gOiwFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.346 [XNIO-1 task-1] Bj-LFIpBSoiuFo4-gOiwFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.393 [XNIO-1 task-1] o3QYIYJ1QfmeD2LGxXTwCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.393 [XNIO-1 task-1] o3QYIYJ1QfmeD2LGxXTwCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.394 [XNIO-1 task-1] o3QYIYJ1QfmeD2LGxXTwCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.407 [XNIO-1 task-1] yrdPowcGTY2RvQt3d9o31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/723c5458 +07:00:40.407 [XNIO-1 task-1] yrdPowcGTY2RvQt3d9o31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.408 [XNIO-1 task-1] yrdPowcGTY2RvQt3d9o31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:40.408 [XNIO-1 task-1] yrdPowcGTY2RvQt3d9o31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/723c5458 +07:00:40.503 [XNIO-1 task-1] RQ3vnOn-T7-wDXk7x-jSnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/150369aa, base path is set to: null +07:00:40.504 [XNIO-1 task-1] RQ3vnOn-T7-wDXk7x-jSnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.504 [XNIO-1 task-1] RQ3vnOn-T7-wDXk7x-jSnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:40.508 [XNIO-1 task-1] RQ3vnOn-T7-wDXk7x-jSnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/150369aa, base path is set to: null +07:00:40.509 [XNIO-1 task-1] RQ3vnOn-T7-wDXk7x-jSnw DEBUG com.networknt.schema.TypeValidator debug - validate( "150369aa", "150369aa", serviceId) +07:00:40.552 [XNIO-1 task-1] ZQ59zxhMRYysDjl2_ztuWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.552 [XNIO-1 task-1] ZQ59zxhMRYysDjl2_ztuWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.552 [XNIO-1 task-1] ZQ59zxhMRYysDjl2_ztuWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.553 [XNIO-1 task-1] ZQ59zxhMRYysDjl2_ztuWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.564 [XNIO-1 task-1] Zy_IZihWSCS2IbCdJw0bIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.565 [XNIO-1 task-1] Zy_IZihWSCS2IbCdJw0bIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.565 [XNIO-1 task-1] Zy_IZihWSCS2IbCdJw0bIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.584 [XNIO-1 task-1] 4-RVPw_BS7Kn1rGRw-vJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.585 [XNIO-1 task-1] 4-RVPw_BS7Kn1rGRw-vJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.585 [XNIO-1 task-1] 4-RVPw_BS7Kn1rGRw-vJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.649 [XNIO-1 task-1] dkjj0V25S5Cu_D1vcHdaFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.649 [XNIO-1 task-1] dkjj0V25S5Cu_D1vcHdaFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.650 [XNIO-1 task-1] dkjj0V25S5Cu_D1vcHdaFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.653 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b5e24d0b +07:00:40.666 [XNIO-1 task-1] rcl2ZKFoTfC_2rZWkdffng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2d956442, base path is set to: null +07:00:40.667 [XNIO-1 task-1] rcl2ZKFoTfC_2rZWkdffng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.667 [XNIO-1 task-1] rcl2ZKFoTfC_2rZWkdffng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:40.668 [XNIO-1 task-1] rcl2ZKFoTfC_2rZWkdffng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2d956442, base path is set to: null +07:00:40.668 [XNIO-1 task-1] rcl2ZKFoTfC_2rZWkdffng DEBUG com.networknt.schema.TypeValidator debug - validate( "2d956442", "2d956442", serviceId) +07:00:40.699 [XNIO-1 task-1] aHjhC0zsQ5Kf_36yC5x0Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b5e24d0b +07:00:40.699 [XNIO-1 task-1] aHjhC0zsQ5Kf_36yC5x0Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.699 [XNIO-1 task-1] aHjhC0zsQ5Kf_36yC5x0Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:40.699 [XNIO-1 task-1] aHjhC0zsQ5Kf_36yC5x0Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b5e24d0b +07:00:40.703 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b5e24d0b +07:00:40.730 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ca819b1f-c010-4070-bbd3-4c1be3186fcb +07:00:40.732 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ca819b1f-c010-4070-bbd3-4c1be3186fcb +07:00:40.736 [XNIO-1 task-1] XCOiWwPpRLW8PVpqkBKEjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.737 [XNIO-1 task-1] XCOiWwPpRLW8PVpqkBKEjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.737 [XNIO-1 task-1] XCOiWwPpRLW8PVpqkBKEjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.737 [XNIO-1 task-1] XCOiWwPpRLW8PVpqkBKEjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.755 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5587675 +07:00:40.773 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.773 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.774 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.775 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.775 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:40.775 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f19ae046-191c-4e4c-b2bc-87e00cb8d977", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:40.775 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9bbaf2b9", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:40.775 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:40.776 [XNIO-1 task-1] s8lgeTAoRQeGafzeLq5YeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.791 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.792 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.792 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.793 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.793 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:40.793 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f19ae046-191c-4e4c-b2bc-87e00cb8d977", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:40.794 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9bbaf2b9", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:40.794 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:40.794 [XNIO-1 task-1] zFXK9yQBSqSF61DCRl8TJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9bbaf2b9","serviceName":"14dab29d-2e2b-41a8-a537-9da83896","serviceDesc":"f19ae046-191c-4e4c-b2bc-87e00cb8d977","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.828 [XNIO-1 task-1] H1MxLqtXTgykHiXDrkv2hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bbaf2b9 +07:00:40.828 [XNIO-1 task-1] H1MxLqtXTgykHiXDrkv2hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.828 [XNIO-1 task-1] H1MxLqtXTgykHiXDrkv2hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:40.829 [XNIO-1 task-1] H1MxLqtXTgykHiXDrkv2hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bbaf2b9 +07:00:40.836 [XNIO-1 task-1] KqSAXNR4QrKn5owesxafkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.836 [XNIO-1 task-1] KqSAXNR4QrKn5owesxafkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.836 [XNIO-1 task-1] KqSAXNR4QrKn5owesxafkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.837 [XNIO-1 task-1] KqSAXNR4QrKn5owesxafkA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:40.882 [XNIO-1 task-1] 7Y44vYVPRDK0P_WQqjn5VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.882 [XNIO-1 task-1] 7Y44vYVPRDK0P_WQqjn5VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:40.883 [XNIO-1 task-1] 7Y44vYVPRDK0P_WQqjn5VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:40.905 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a6337b48 +07:00:40.906 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5587675 +07:00:40.964 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a6337b48 +07:00:40.977 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.977 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.978 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.978 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.979 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:40.979 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b6c7e42-c13e-4184-b17d-c48710c2e506", {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:40.979 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6337b48", {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:40.979 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:40.979 [XNIO-1 task-1] j8ZWzo40QyiSrwjZVCgnUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6337b48","serviceName":"49d788c7-6849-4c15-9f42-88b36757","serviceDesc":"8b6c7e42-c13e-4184-b17d-c48710c2e506","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:40.980 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a6337b48 +07:00:40.994 [XNIO-1 task-1] vSXCAi0FRd6bKTydF2d65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.995 [XNIO-1 task-1] vSXCAi0FRd6bKTydF2d65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:40.995 [XNIO-1 task-1] vSXCAi0FRd6bKTydF2d65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.012 [XNIO-1 task-1] YXJv1cNbTZewyT4JAi_lDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a6337b48 +07:00:41.012 [XNIO-1 task-1] YXJv1cNbTZewyT4JAi_lDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.012 [XNIO-1 task-1] YXJv1cNbTZewyT4JAi_lDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:41.012 [XNIO-1 task-1] YXJv1cNbTZewyT4JAi_lDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a6337b48 +07:00:41.016 [XNIO-1 task-1] Cx_xk986Rm2kfha0DON1Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f6f9161, base path is set to: null +07:00:41.016 [XNIO-1 task-1] Cx_xk986Rm2kfha0DON1Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.016 [XNIO-1 task-1] Cx_xk986Rm2kfha0DON1Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.016 [XNIO-1 task-1] Cx_xk986Rm2kfha0DON1Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f6f9161, base path is set to: null +07:00:41.017 [XNIO-1 task-1] Cx_xk986Rm2kfha0DON1Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1f6f9161", "1f6f9161", serviceId) +07:00:41.032 [XNIO-1 task-1] w7L7TjlaQwquuLH-ShKCAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.032 [XNIO-1 task-1] w7L7TjlaQwquuLH-ShKCAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.033 [XNIO-1 task-1] w7L7TjlaQwquuLH-ShKCAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.108 [XNIO-1 task-1] 0SEZYRITR5OOFRzo-r2mIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bbaf2b9 +07:00:41.108 [XNIO-1 task-1] 0SEZYRITR5OOFRzo-r2mIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.108 [XNIO-1 task-1] 0SEZYRITR5OOFRzo-r2mIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:41.108 [XNIO-1 task-1] 0SEZYRITR5OOFRzo-r2mIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bbaf2b9 +07:00:41.122 [XNIO-1 task-1] 3uHf4CbqTF2Q5vpAVbj-Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a6337b48, base path is set to: null +07:00:41.122 [XNIO-1 task-1] 3uHf4CbqTF2Q5vpAVbj-Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.122 [XNIO-1 task-1] 3uHf4CbqTF2Q5vpAVbj-Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.122 [XNIO-1 task-1] 3uHf4CbqTF2Q5vpAVbj-Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a6337b48, base path is set to: null +07:00:41.123 [XNIO-1 task-1] 3uHf4CbqTF2Q5vpAVbj-Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "a6337b48", "a6337b48", serviceId) +07:00:41.144 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a6337b48 +07:00:41.158 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.159 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.159 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.160 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.160 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.160 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9880fc7-c048-4082-aa13-cfb4b4338e80", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:41.160 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06e1bb6b", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:41.160 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.160 [XNIO-1 task-1] kR66lm_jSDumQS6m8KXwDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.200 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.200 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.201 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.202 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.202 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.202 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG com.networknt.schema.TypeValidator debug - validate( "e9880fc7-c048-4082-aa13-cfb4b4338e80", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:41.202 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG com.networknt.schema.TypeValidator debug - validate( "06e1bb6b", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:41.202 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.202 [XNIO-1 task-1] gs56KunXQeWv-QFa5n1pyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.215 [XNIO-1 task-1] 6Yu985koQTaQg5cLvI_OkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.216 [XNIO-1 task-1] 6Yu985koQTaQg5cLvI_OkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.217 [XNIO-1 task-1] 6Yu985koQTaQg5cLvI_OkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.249 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.249 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.250 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.250 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.251 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.251 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.251 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:41.251 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG com.networknt.schema.TypeValidator debug - validate( "4ecc8bac-330e-45f2-9b81-456489a1", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:41.251 [XNIO-1 task-1] g7NLKR9QR3ub_beJvxEHVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.297 [XNIO-1 task-1] Px4VYBpNRyKz_ymx-ZMGFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.298 [XNIO-1 task-1] Px4VYBpNRyKz_ymx-ZMGFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.298 [XNIO-1 task-1] Px4VYBpNRyKz_ymx-ZMGFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.298 [XNIO-1 task-1] Px4VYBpNRyKz_ymx-ZMGFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.298 [XNIO-1 task-1] Px4VYBpNRyKz_ymx-ZMGFw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a871bd0", "0a871bd0", serviceId) +07:00:41.307 [XNIO-1 task-1] eu9zh1_1RPWLZvnQ-GmCjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.307 [XNIO-1 task-1] eu9zh1_1RPWLZvnQ-GmCjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.307 [XNIO-1 task-1] eu9zh1_1RPWLZvnQ-GmCjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.309 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:752c8796 +07:00:41.323 [XNIO-1 task-1] sqTyKxtjRTW3QfIULP3nCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06e1bb6b, base path is set to: null +07:00:41.324 [XNIO-1 task-1] sqTyKxtjRTW3QfIULP3nCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.324 [XNIO-1 task-1] sqTyKxtjRTW3QfIULP3nCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.324 [XNIO-1 task-1] sqTyKxtjRTW3QfIULP3nCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06e1bb6b, base path is set to: null +07:00:41.325 [XNIO-1 task-1] sqTyKxtjRTW3QfIULP3nCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06e1bb6b", "06e1bb6b", serviceId) +07:00:41.340 [XNIO-1 task-1] uzEyds5HSdGzdrevaluC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/752c8796 +07:00:41.340 [XNIO-1 task-1] uzEyds5HSdGzdrevaluC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.340 [XNIO-1 task-1] uzEyds5HSdGzdrevaluC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:41.340 [XNIO-1 task-1] uzEyds5HSdGzdrevaluC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/752c8796 +07:00:41.341 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:752c8796 +07:00:41.349 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b5587675 +07:00:41.358 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.358 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.358 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.359 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.359 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.359 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG com.networknt.schema.TypeValidator debug - validate( "54bace29-fba7-4bc7-a20d-f0fee86b1c18", {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:41.359 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG com.networknt.schema.TypeValidator debug - validate( "0a871bd0", {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:41.359 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.359 [XNIO-1 task-1] 4-v9cZw9QF6pROybOMWC5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.402 [XNIO-1 task-1] baPpWGEmRwuieF-knT860w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.402 [XNIO-1 task-1] baPpWGEmRwuieF-knT860w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.402 [XNIO-1 task-1] baPpWGEmRwuieF-knT860w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.402 [XNIO-1 task-1] baPpWGEmRwuieF-knT860w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.462 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.462 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.462 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.463 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.463 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.463 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e9880fc7-c048-4082-aa13-cfb4b4338e80", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:41.463 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "06e1bb6b", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:41.464 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.464 [XNIO-1 task-1] o8l0PKQ2R_ut87RCnuJY9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06e1bb6b","serviceName":"4ecc8bac-330e-45f2-9b81-456489a1","serviceDesc":"e9880fc7-c048-4082-aa13-cfb4b4338e80","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.533 [XNIO-1 task-1] weXaQMejQhumNbp5i1uP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06e1bb6b +07:00:41.534 [XNIO-1 task-1] weXaQMejQhumNbp5i1uP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.534 [XNIO-1 task-1] weXaQMejQhumNbp5i1uP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:41.534 [XNIO-1 task-1] weXaQMejQhumNbp5i1uP9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06e1bb6b +07:00:41.587 [XNIO-1 task-1] kIg4o7N1TeqUC_gXxkzW2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.587 [XNIO-1 task-1] kIg4o7N1TeqUC_gXxkzW2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.587 [XNIO-1 task-1] kIg4o7N1TeqUC_gXxkzW2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.613 [XNIO-1 task-1] ygc40k-XSsmbUlF_Bth9_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.613 [XNIO-1 task-1] ygc40k-XSsmbUlF_Bth9_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.613 [XNIO-1 task-1] ygc40k-XSsmbUlF_Bth9_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.613 [XNIO-1 task-1] ygc40k-XSsmbUlF_Bth9_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.614 [XNIO-1 task-1] ygc40k-XSsmbUlF_Bth9_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0a871bd0", "0a871bd0", serviceId) +07:00:41.617 [XNIO-1 task-1] Q3q3Sm7eTySv8mdUmtwsiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.618 [XNIO-1 task-1] Q3q3Sm7eTySv8mdUmtwsiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.618 [XNIO-1 task-1] Q3q3Sm7eTySv8mdUmtwsiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.618 [XNIO-1 task-1] Q3q3Sm7eTySv8mdUmtwsiw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.646 [XNIO-1 task-1] rdIhYKhtSzedkRxATC4lXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.646 [XNIO-1 task-1] rdIhYKhtSzedkRxATC4lXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.647 [XNIO-1 task-1] rdIhYKhtSzedkRxATC4lXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.659 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.659 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.660 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.661 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.661 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.661 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5955d4bc-be16-4d5e-a6a2-90b628ace398", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:41.661 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec82d242", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:41.661 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.661 [XNIO-1 task-1] 8kcMYjSFT_GXqtKosl3dMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.674 [XNIO-1 task-1] nE8NATfNQuuJMXTL5f-gYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.674 [XNIO-1 task-1] nE8NATfNQuuJMXTL5f-gYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.674 [XNIO-1 task-1] nE8NATfNQuuJMXTL5f-gYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.675 [XNIO-1 task-1] nE8NATfNQuuJMXTL5f-gYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.698 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.699 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.699 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.700 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.700 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.700 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5955d4bc-be16-4d5e-a6a2-90b628ace398", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:41.700 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec82d242", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:41.700 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:41.700 [XNIO-1 task-1] 6aO3Tj2ZT_erJfG7Kfz-WQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec82d242","serviceName":"e6e97044-5923-4c5f-a76d-c9ba49b5","serviceDesc":"5955d4bc-be16-4d5e-a6a2-90b628ace398","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.714 [XNIO-1 task-1] vUeADa3GQZmyJblTS_ePYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.714 [XNIO-1 task-1] vUeADa3GQZmyJblTS_ePYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.715 [XNIO-1 task-1] vUeADa3GQZmyJblTS_ePYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.716 [XNIO-1 task-1] vUeADa3GQZmyJblTS_ePYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.789 [XNIO-1 task-1] PoaJDZJdR7aITkeKF3yXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec82d242 +07:00:41.789 [XNIO-1 task-1] PoaJDZJdR7aITkeKF3yXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.789 [XNIO-1 task-1] PoaJDZJdR7aITkeKF3yXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:41.789 [XNIO-1 task-1] PoaJDZJdR7aITkeKF3yXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec82d242 +07:00:41.791 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5caaf6e8 +07:00:41.809 [XNIO-1 task-1] K65R_ebNTwyZtjCuxtFyTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.810 [XNIO-1 task-1] K65R_ebNTwyZtjCuxtFyTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.810 [XNIO-1 task-1] K65R_ebNTwyZtjCuxtFyTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.810 [XNIO-1 task-1] K65R_ebNTwyZtjCuxtFyTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:41.834 [XNIO-1 task-1] nZk1KB03T3Co1vC7nvdMrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79856890, base path is set to: null +07:00:41.834 [XNIO-1 task-1] nZk1KB03T3Co1vC7nvdMrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.834 [XNIO-1 task-1] nZk1KB03T3Co1vC7nvdMrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.835 [XNIO-1 task-1] nZk1KB03T3Co1vC7nvdMrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79856890, base path is set to: null +07:00:41.835 [XNIO-1 task-1] nZk1KB03T3Co1vC7nvdMrg DEBUG com.networknt.schema.TypeValidator debug - validate( "79856890", "79856890", serviceId) +07:00:41.847 [XNIO-1 task-1] NzrDqMe6SyqOh_JIDssPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec82d242 +07:00:41.847 [XNIO-1 task-1] NzrDqMe6SyqOh_JIDssPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.847 [XNIO-1 task-1] NzrDqMe6SyqOh_JIDssPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:41.847 [XNIO-1 task-1] NzrDqMe6SyqOh_JIDssPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec82d242 +07:00:41.860 [XNIO-1 task-1] I63yAtRdSlGfoDkwQrf5ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.861 [XNIO-1 task-1] I63yAtRdSlGfoDkwQrf5ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.861 [XNIO-1 task-1] I63yAtRdSlGfoDkwQrf5ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.861 [XNIO-1 task-1] I63yAtRdSlGfoDkwQrf5ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.861 [XNIO-1 task-1] I63yAtRdSlGfoDkwQrf5ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0a871bd0", "0a871bd0", serviceId) +07:00:41.865 [XNIO-1 task-1] 9loJX8-WQOOEa95MS4e1QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.865 [XNIO-1 task-1] 9loJX8-WQOOEa95MS4e1QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.865 [XNIO-1 task-1] 9loJX8-WQOOEa95MS4e1QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.867 [XNIO-1 task-1] 9loJX8-WQOOEa95MS4e1QQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.902 [XNIO-1 task-1] sKXrLTyqSw-PBXIjtmgG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a871bd0 +07:00:41.902 [XNIO-1 task-1] sKXrLTyqSw-PBXIjtmgG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.902 [XNIO-1 task-1] sKXrLTyqSw-PBXIjtmgG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:41.902 [XNIO-1 task-1] sKXrLTyqSw-PBXIjtmgG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a871bd0 +07:00:41.906 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.907 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.907 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:41.907 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.908 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.908 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:41.908 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:41.908 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG com.networknt.schema.TypeValidator debug - validate( "7724cb59-6603-438e-8043-c55990c1", {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:41.908 [XNIO-1 task-1] ZYavMl9LSKiMyWGf3JDGxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a871bd0","serviceName":"7724cb59-6603-438e-8043-c55990c1","serviceDesc":"54bace29-fba7-4bc7-a20d-f0fee86b1c18","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:41.924 [XNIO-1 task-1] 5OFEmvyvQaKfTRpvn1oCAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.924 [XNIO-1 task-1] 5OFEmvyvQaKfTRpvn1oCAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:41.924 [XNIO-1 task-1] 5OFEmvyvQaKfTRpvn1oCAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:41.925 [XNIO-1 task-1] 5OFEmvyvQaKfTRpvn1oCAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a871bd0, base path is set to: null +07:00:41.925 [XNIO-1 task-1] 5OFEmvyvQaKfTRpvn1oCAg DEBUG com.networknt.schema.TypeValidator debug - validate( "0a871bd0", "0a871bd0", serviceId) +07:00:41.956 [XNIO-1 task-1] b-M9l6FwQMWfTJq11OWxyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.956 [XNIO-1 task-1] b-M9l6FwQMWfTJq11OWxyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.956 [XNIO-1 task-1] b-M9l6FwQMWfTJq11OWxyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.957 [XNIO-1 task-1] b-M9l6FwQMWfTJq11OWxyQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.967 [XNIO-1 task-1] jrVyix0JTGWXKbdu7qrc3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.967 [XNIO-1 task-1] jrVyix0JTGWXKbdu7qrc3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:41.967 [XNIO-1 task-1] jrVyix0JTGWXKbdu7qrc3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.011 [XNIO-1 task-1] NX1TMeBUTtynZVvrQxMgPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/42932a18 +07:00:42.011 [XNIO-1 task-1] NX1TMeBUTtynZVvrQxMgPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.011 [XNIO-1 task-1] NX1TMeBUTtynZVvrQxMgPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:42.011 [XNIO-1 task-1] NX1TMeBUTtynZVvrQxMgPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/42932a18 +07:00:42.016 [XNIO-1 task-1] EuVD6mWTS6azCLG7MX_VeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/42932a18, base path is set to: null +07:00:42.016 [XNIO-1 task-1] EuVD6mWTS6azCLG7MX_VeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.016 [XNIO-1 task-1] EuVD6mWTS6azCLG7MX_VeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:42.016 [XNIO-1 task-1] EuVD6mWTS6azCLG7MX_VeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/42932a18, base path is set to: null +07:00:42.017 [XNIO-1 task-1] EuVD6mWTS6azCLG7MX_VeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "42932a18", "42932a18", serviceId) +07:00:42.019 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.019 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.020 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.020 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.020 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.021 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da57c080-0dfb-49a2-8902-428a3d6d2e37", {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:42.021 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "42932a18", {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:42.021 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:42.021 [XNIO-1 task-1] feax8BCXRIa9FlCrmF0UHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.095 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.096 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.096 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.097 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.097 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.097 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.097 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:42.097 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG com.networknt.schema.TypeValidator debug - validate( "a9f8b5ad-5020-4543-992a-2e972dbf", {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:42.098 [XNIO-1 task-1] ETArBDtWSWetm7UYkxR4qA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"42932a18","serviceName":"a9f8b5ad-5020-4543-992a-2e972dbf","serviceDesc":"da57c080-0dfb-49a2-8902-428a3d6d2e37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.135 [XNIO-1 task-1] h0YxZF9tSL6ML88EOSvCIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.135 [XNIO-1 task-1] h0YxZF9tSL6ML88EOSvCIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.135 [XNIO-1 task-1] h0YxZF9tSL6ML88EOSvCIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.136 [XNIO-1 task-1] h0YxZF9tSL6ML88EOSvCIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.210 [XNIO-1 task-1] lAF2GTWnTb6sq6zxtJyYoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/42932a18, base path is set to: null +07:00:42.210 [XNIO-1 task-1] lAF2GTWnTb6sq6zxtJyYoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.210 [XNIO-1 task-1] lAF2GTWnTb6sq6zxtJyYoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:42.210 [XNIO-1 task-1] lAF2GTWnTb6sq6zxtJyYoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/42932a18, base path is set to: null +07:00:42.211 [XNIO-1 task-1] lAF2GTWnTb6sq6zxtJyYoA DEBUG com.networknt.schema.TypeValidator debug - validate( "42932a18", "42932a18", serviceId) +07:00:42.226 [XNIO-1 task-1] 851TPG-hTxuK0892GHX3Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.226 [XNIO-1 task-1] 851TPG-hTxuK0892GHX3Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.227 [XNIO-1 task-1] 851TPG-hTxuK0892GHX3Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.229 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:352cd172 +07:00:42.239 [XNIO-1 task-1] rUJNwV58SyWx29_UlW0RHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/352cd172, base path is set to: null +07:00:42.239 [XNIO-1 task-1] rUJNwV58SyWx29_UlW0RHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.239 [XNIO-1 task-1] rUJNwV58SyWx29_UlW0RHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:42.239 [XNIO-1 task-1] rUJNwV58SyWx29_UlW0RHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/352cd172, base path is set to: null +07:00:42.240 [XNIO-1 task-1] rUJNwV58SyWx29_UlW0RHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "352cd172", "352cd172", serviceId) +07:00:42.244 [XNIO-1 task-1] mCgvDeRFQ5WFHOnezJHVUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/352cd172 +07:00:42.244 [XNIO-1 task-1] mCgvDeRFQ5WFHOnezJHVUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.244 [XNIO-1 task-1] mCgvDeRFQ5WFHOnezJHVUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:42.244 [XNIO-1 task-1] mCgvDeRFQ5WFHOnezJHVUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/352cd172 +07:00:42.245 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:352cd172 +07:00:42.256 [XNIO-1 task-1] 7jL77WnNTCS-A8MLd6hQcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.256 [XNIO-1 task-1] 7jL77WnNTCS-A8MLd6hQcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.257 [XNIO-1 task-1] 7jL77WnNTCS-A8MLd6hQcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.269 [XNIO-1 task-1] hySfzSd_TRe87QHKe6bjBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.269 [XNIO-1 task-1] hySfzSd_TRe87QHKe6bjBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.270 [XNIO-1 task-1] hySfzSd_TRe87QHKe6bjBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.292 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.292 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.292 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.294 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.294 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.294 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.294 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:42.294 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG com.networknt.schema.TypeValidator debug - validate( "8219cd31-e4ee-40e7-bc99-7aafaead", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:42.294 [XNIO-1 task-1] d_umsMbMRLiCQFF2wEJwog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.308 [XNIO-1 task-1] dkwLHCJCQOWzS4sXCWhODg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.309 [XNIO-1 task-1] dkwLHCJCQOWzS4sXCWhODg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.309 [XNIO-1 task-1] dkwLHCJCQOWzS4sXCWhODg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.327 [XNIO-1 task-1] ii4G-4YYS6CKj4Eme5juRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.327 [XNIO-1 task-1] ii4G-4YYS6CKj4Eme5juRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.328 [XNIO-1 task-1] ii4G-4YYS6CKj4Eme5juRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.328 [XNIO-1 task-1] ii4G-4YYS6CKj4Eme5juRA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.342 [XNIO-1 task-1] LHdFScFNTP2o5mmK6Eo_Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/771601b5, base path is set to: null +07:00:42.342 [XNIO-1 task-1] LHdFScFNTP2o5mmK6Eo_Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.342 [XNIO-1 task-1] LHdFScFNTP2o5mmK6Eo_Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:42.342 [XNIO-1 task-1] LHdFScFNTP2o5mmK6Eo_Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/771601b5, base path is set to: null +07:00:42.343 [XNIO-1 task-1] LHdFScFNTP2o5mmK6Eo_Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "771601b5", "771601b5", serviceId) +07:00:42.356 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.356 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.356 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.357 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.358 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.358 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG com.networknt.schema.TypeValidator debug - validate( "18669abc-9b01-4497-bfaa-f81727e18b52", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:42.358 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG com.networknt.schema.TypeValidator debug - validate( "20a7b66b", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:42.358 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:42.358 [XNIO-1 task-1] EBZvOWFSQbGvHKX5r6H-rA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.380 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.381 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.381 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.382 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.382 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.382 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "18669abc-9b01-4497-bfaa-f81727e18b52", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:42.382 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "20a7b66b", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:42.382 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:42.382 [XNIO-1 task-1] RS7ur5fNR3WreM16C57A9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.417 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b9634ddb-a3e5-4148-9020-a127f1093738 +07:00:42.430 [XNIO-1 task-1] 5TCLT8L4SvqaO61OKGm54w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.430 [XNIO-1 task-1] 5TCLT8L4SvqaO61OKGm54w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.430 [XNIO-1 task-1] 5TCLT8L4SvqaO61OKGm54w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.431 [XNIO-1 task-1] 5TCLT8L4SvqaO61OKGm54w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.579 [XNIO-1 task-1] kTtwkdy_Rs2mCBJ06hr7gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.580 [XNIO-1 task-1] kTtwkdy_Rs2mCBJ06hr7gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.601 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b9634ddb-a3e5-4148-9020-a127f1093738 +07:00:42.623 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c1140bdb +07:00:42.603 [XNIO-1 task-1] kTtwkdy_Rs2mCBJ06hr7gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.624 [XNIO-1 task-1] kTtwkdy_Rs2mCBJ06hr7gA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.691 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1140bdb +07:00:42.709 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1140bdb +07:00:42.715 [XNIO-1 task-1] w51CZXD3QCeXA1lAE3P6qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.716 [XNIO-1 task-1] w51CZXD3QCeXA1lAE3P6qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.716 [XNIO-1 task-1] w51CZXD3QCeXA1lAE3P6qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.716 [XNIO-1 task-1] w51CZXD3QCeXA1lAE3P6qA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.740 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1140bdb +07:00:42.772 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.772 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.773 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.773 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.773 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.774 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5186555-0ecb-40e5-9680-7131e2cbd210", {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:42.774 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8a6bd883", {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:42.774 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:42.774 [XNIO-1 task-1] lOyN0oUtTj6Iu6cHa4epbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8a6bd883","serviceName":"af224e13-3119-472f-bbe3-7b09863b","serviceDesc":"e5186555-0ecb-40e5-9680-7131e2cbd210","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.788 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1140bdb +07:00:42.796 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.796 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.797 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.797 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.798 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.798 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG com.networknt.schema.TypeValidator debug - validate( "f9410fdf-c581-49aa-b45d-2b7ddec5839f", {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:42.798 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG com.networknt.schema.TypeValidator debug - validate( "771601b5", {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:42.798 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:42.798 [XNIO-1 task-1] tOXk_QI6Rt-8V-vuvOWt6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"771601b5","serviceName":"98f65f43-a9a3-486c-962a-63b63591","serviceDesc":"f9410fdf-c581-49aa-b45d-2b7ddec5839f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.826 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:08cd00bc-23c7-4cfe-891f-b260e9761905 +07:00:42.848 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.849 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.849 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.850 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.850 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.850 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.850 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:42.850 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG com.networknt.schema.TypeValidator debug - validate( "8219cd31-e4ee-40e7-bc99-7aafaead", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:42.850 [XNIO-1 task-1] D3We_iTvSAmALiHuNcL_wg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.869 [XNIO-1 task-1] QI5UIijrQhSOAw5-lQTUtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a6bd883, base path is set to: null +07:00:42.875 [XNIO-1 task-1] QI5UIijrQhSOAw5-lQTUtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.875 [XNIO-1 task-1] QI5UIijrQhSOAw5-lQTUtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:42.875 [XNIO-1 task-1] QI5UIijrQhSOAw5-lQTUtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a6bd883, base path is set to: null +07:00:42.876 [XNIO-1 task-1] QI5UIijrQhSOAw5-lQTUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "8a6bd883", "8a6bd883", serviceId) +07:00:42.892 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1140bdb +07:00:42.897 [XNIO-1 task-1] g0-4xh_mShOmONjOU0tnOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/771601b5 +07:00:42.897 [XNIO-1 task-1] g0-4xh_mShOmONjOU0tnOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.897 [XNIO-1 task-1] g0-4xh_mShOmONjOU0tnOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:42.898 [XNIO-1 task-1] g0-4xh_mShOmONjOU0tnOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/771601b5 +07:00:42.904 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:08cd00bc-23c7-4cfe-891f-b260e9761905 +07:00:42.908 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1140bdb +07:00:42.919 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.919 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.919 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.920 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.920 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:42.920 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG com.networknt.schema.TypeValidator debug - validate( "18669abc-9b01-4497-bfaa-f81727e18b52", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:42.920 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG com.networknt.schema.TypeValidator debug - validate( "20a7b66b", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:42.920 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:42.922 [XNIO-1 task-1] tqrhqeBzQMGuQJUvN3inqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20a7b66b","serviceName":"8219cd31-e4ee-40e7-bc99-7aafaead","serviceDesc":"18669abc-9b01-4497-bfaa-f81727e18b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:42.936 [XNIO-1 task-1] 3G-CERVyRCqBIJ4GPs2w5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/20a7b66b +07:00:42.936 [XNIO-1 task-1] 3G-CERVyRCqBIJ4GPs2w5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.936 [XNIO-1 task-1] 3G-CERVyRCqBIJ4GPs2w5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:42.936 [XNIO-1 task-1] 3G-CERVyRCqBIJ4GPs2w5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/20a7b66b +07:00:42.950 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c1140bdb +07:00:42.954 [XNIO-1 task-1] Hk7A48IJSsCRdZ8DXtBGew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.954 [XNIO-1 task-1] Hk7A48IJSsCRdZ8DXtBGew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.955 [XNIO-1 task-1] Hk7A48IJSsCRdZ8DXtBGew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.977 [XNIO-1 task-1] 1CBykqZkSSapo-CzPNCjMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/04abed33 +07:00:42.977 [XNIO-1 task-1] 1CBykqZkSSapo-CzPNCjMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:42.979 [XNIO-1 task-1] 1CBykqZkSSapo-CzPNCjMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:42.980 [XNIO-1 task-1] 1CBykqZkSSapo-CzPNCjMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/04abed33 +07:00:42.992 [XNIO-1 task-1] Ww4hp3TnRs6qVGDPpPAUqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:42.993 [XNIO-1 task-1] Ww4hp3TnRs6qVGDPpPAUqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:42.993 [XNIO-1 task-1] Ww4hp3TnRs6qVGDPpPAUqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.008 [XNIO-1 task-1] BPclaG-BT0Sht3WW_abs9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/baafd9ff, base path is set to: null +07:00:43.008 [XNIO-1 task-1] BPclaG-BT0Sht3WW_abs9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.008 [XNIO-1 task-1] BPclaG-BT0Sht3WW_abs9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.008 [XNIO-1 task-1] BPclaG-BT0Sht3WW_abs9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/baafd9ff, base path is set to: null +07:00:43.009 [XNIO-1 task-1] BPclaG-BT0Sht3WW_abs9g DEBUG com.networknt.schema.TypeValidator debug - validate( "baafd9ff", "baafd9ff", serviceId) +07:00:43.018 [XNIO-1 task-1] qLOGfAO0Qpen4swdhF8d8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/baafd9ff +07:00:43.018 [XNIO-1 task-1] qLOGfAO0Qpen4swdhF8d8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.019 [XNIO-1 task-1] qLOGfAO0Qpen4swdhF8d8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.019 [XNIO-1 task-1] qLOGfAO0Qpen4swdhF8d8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/baafd9ff +07:00:43.031 [XNIO-1 task-1] rf4t8dRzRQy7qypF9FWlKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.031 [XNIO-1 task-1] rf4t8dRzRQy7qypF9FWlKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.031 [XNIO-1 task-1] rf4t8dRzRQy7qypF9FWlKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.069 [XNIO-1 task-1] SniDjlzcScOP5nabJXg_bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/af6de373, base path is set to: null +07:00:43.069 [XNIO-1 task-1] SniDjlzcScOP5nabJXg_bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.069 [XNIO-1 task-1] SniDjlzcScOP5nabJXg_bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.069 [XNIO-1 task-1] SniDjlzcScOP5nabJXg_bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/af6de373, base path is set to: null +07:00:43.070 [XNIO-1 task-1] SniDjlzcScOP5nabJXg_bA DEBUG com.networknt.schema.TypeValidator debug - validate( "af6de373", "af6de373", serviceId) +07:00:43.074 [XNIO-1 task-1] C8M57rJZRmaOtICE5xyw3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.074 [XNIO-1 task-1] C8M57rJZRmaOtICE5xyw3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.075 [XNIO-1 task-1] C8M57rJZRmaOtICE5xyw3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.129 [XNIO-1 task-1] iR1SkImTTHq3a0SPH8IncA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/af6de373 +07:00:43.129 [XNIO-1 task-1] iR1SkImTTHq3a0SPH8IncA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.129 [XNIO-1 task-1] iR1SkImTTHq3a0SPH8IncA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.130 [XNIO-1 task-1] iR1SkImTTHq3a0SPH8IncA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/af6de373 +07:00:43.163 [XNIO-1 task-1] hV7isG3-Txynh7GBpR2eRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.163 [XNIO-1 task-1] hV7isG3-Txynh7GBpR2eRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.164 [XNIO-1 task-1] hV7isG3-Txynh7GBpR2eRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.171 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bdbf87ee-b4b4-4043-99f6-230f5ad7f94f +07:00:43.226 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.226 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.227 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.228 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.228 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.228 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:43.228 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:43.228 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG com.networknt.schema.TypeValidator debug - validate( "3684e824-0306-4aa0-869a-868862a6", {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:43.228 [XNIO-1 task-1] ztnVSSN_RfygxYs_CEZ4rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.245 [XNIO-1 task-1] a-OuDjG3TaG7X3z0CYFKZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.245 [XNIO-1 task-1] a-OuDjG3TaG7X3z0CYFKZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.245 [XNIO-1 task-1] a-OuDjG3TaG7X3z0CYFKZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.266 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.266 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.266 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.267 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.267 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.267 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:43.267 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:43.267 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG com.networknt.schema.TypeValidator debug - validate( "3684e824-0306-4aa0-869a-868862a6", {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:43.268 [XNIO-1 task-1] jJQpNRG2T0KvtXyOh5Szvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6aad93e4","serviceName":"3684e824-0306-4aa0-869a-868862a6","serviceDesc":"6dce3107-5ce2-4ca0-9d76-270c8b4e2e8b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.299 [XNIO-1 task-1] EwPXJFD6Srq5UcWDJitA_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.299 [XNIO-1 task-1] EwPXJFD6Srq5UcWDJitA_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.300 [XNIO-1 task-1] EwPXJFD6Srq5UcWDJitA_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.314 [XNIO-1 task-1] b06_RaPfQ1KCjWDExesLBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.314 [XNIO-1 task-1] b06_RaPfQ1KCjWDExesLBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.314 [XNIO-1 task-1] b06_RaPfQ1KCjWDExesLBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.350 [XNIO-1 task-1] USLerdG_QEChswDSAHdWOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.350 [XNIO-1 task-1] USLerdG_QEChswDSAHdWOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.351 [XNIO-1 task-1] USLerdG_QEChswDSAHdWOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.351 [XNIO-1 task-1] USLerdG_QEChswDSAHdWOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.362 [XNIO-1 task-1] AkM1BoUPRsmzKYTEjy59UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.362 [XNIO-1 task-1] AkM1BoUPRsmzKYTEjy59UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.362 [XNIO-1 task-1] AkM1BoUPRsmzKYTEjy59UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.377 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.377 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.378 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.378 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.378 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.378 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:43.378 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:43.379 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "961290a4-bd24-4617-a93e-32dcbf4e", {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:43.379 [XNIO-1 task-1] _Mbs3Dd-Qi2FH5LoR650Hg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2aa0fefd","serviceName":"961290a4-bd24-4617-a93e-32dcbf4e","serviceDesc":"2e2a0e4f-6703-48c6-8685-787fe357d6dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.390 [XNIO-1 task-1] uGGnKtMxSPiVXkqVBp7ETw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.390 [XNIO-1 task-1] uGGnKtMxSPiVXkqVBp7ETw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.391 [XNIO-1 task-1] uGGnKtMxSPiVXkqVBp7ETw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.391 [XNIO-1 task-1] uGGnKtMxSPiVXkqVBp7ETw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.415 [XNIO-1 task-1] jsYUiBJjRxy2jNaZuzu4jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.415 [XNIO-1 task-1] jsYUiBJjRxy2jNaZuzu4jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.415 [XNIO-1 task-1] jsYUiBJjRxy2jNaZuzu4jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.426 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b9634ddb-a3e5-4148-9020-a127f1093738 +07:00:43.487 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.487 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.487 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.488 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.488 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:43.488 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG com.networknt.schema.TypeValidator debug - validate( "29cb08ce-1d82-49af-b621-946d09ccec8e", {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:43.488 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG com.networknt.schema.TypeValidator debug - validate( "2ca91285", {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:43.489 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:43.489 [XNIO-1 task-1] QcDC3ZCYSeONxX_YjA_MZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2ca91285","serviceName":"e2b39352-1c98-4d56-bd54-58ad49ab","serviceDesc":"29cb08ce-1d82-49af-b621-946d09ccec8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.510 [XNIO-1 task-1] wKvwF6mcQkCP7pNjaX0bQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/731bfac0 +07:00:43.510 [XNIO-1 task-1] wKvwF6mcQkCP7pNjaX0bQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.510 [XNIO-1 task-1] wKvwF6mcQkCP7pNjaX0bQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.511 [XNIO-1 task-1] wKvwF6mcQkCP7pNjaX0bQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/731bfac0 +07:00:43.544 [XNIO-1 task-2] X2lG6UjDTH2SurbCgF7-fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.547 [XNIO-1 task-2] X2lG6UjDTH2SurbCgF7-fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.548 [XNIO-1 task-2] X2lG6UjDTH2SurbCgF7-fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.548 [XNIO-1 task-2] X2lG6UjDTH2SurbCgF7-fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.641 [XNIO-1 task-2] qhRE9mm6SwymaXG-MXpqLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3075e909, base path is set to: null +07:00:43.641 [XNIO-1 task-2] qhRE9mm6SwymaXG-MXpqLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.642 [XNIO-1 task-2] qhRE9mm6SwymaXG-MXpqLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.642 [XNIO-1 task-2] qhRE9mm6SwymaXG-MXpqLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3075e909, base path is set to: null +07:00:43.642 [XNIO-1 task-2] qhRE9mm6SwymaXG-MXpqLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3075e909", "3075e909", serviceId) +07:00:43.655 [XNIO-1 task-2] PI9nQLBcT0eaaSOPQCeIFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.656 [XNIO-1 task-2] PI9nQLBcT0eaaSOPQCeIFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.656 [XNIO-1 task-2] PI9nQLBcT0eaaSOPQCeIFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.658 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:70cfd298 +07:00:43.670 [XNIO-1 task-2] zKspcrR9QrGnpR238gz-ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2ca91285, base path is set to: null +07:00:43.671 [XNIO-1 task-2] zKspcrR9QrGnpR238gz-ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.671 [XNIO-1 task-2] zKspcrR9QrGnpR238gz-ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.671 [XNIO-1 task-2] zKspcrR9QrGnpR238gz-ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2ca91285, base path is set to: null +07:00:43.671 [XNIO-1 task-2] zKspcrR9QrGnpR238gz-ng DEBUG com.networknt.schema.TypeValidator debug - validate( "2ca91285", "2ca91285", serviceId) +07:00:43.715 [XNIO-1 task-2] 1qnSSIAJQNe49tiRtDGVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6aad93e4 +07:00:43.715 [XNIO-1 task-2] 1qnSSIAJQNe49tiRtDGVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.715 [XNIO-1 task-2] 1qnSSIAJQNe49tiRtDGVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.715 [XNIO-1 task-2] 1qnSSIAJQNe49tiRtDGVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6aad93e4 +07:00:43.722 [XNIO-1 task-2] hU6PylgjTE-QdAkqBjLRCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe60b9e8, base path is set to: null +07:00:43.723 [XNIO-1 task-2] hU6PylgjTE-QdAkqBjLRCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.723 [XNIO-1 task-2] hU6PylgjTE-QdAkqBjLRCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.723 [XNIO-1 task-2] hU6PylgjTE-QdAkqBjLRCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe60b9e8, base path is set to: null +07:00:43.724 [XNIO-1 task-2] hU6PylgjTE-QdAkqBjLRCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe60b9e8", "fe60b9e8", serviceId) +07:00:43.739 [XNIO-1 task-2] b_joQ-suT1SjZ1A_-rIgDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb2ab481 +07:00:43.739 [XNIO-1 task-2] b_joQ-suT1SjZ1A_-rIgDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.739 [XNIO-1 task-2] b_joQ-suT1SjZ1A_-rIgDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.739 [XNIO-1 task-2] b_joQ-suT1SjZ1A_-rIgDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb2ab481 +07:00:43.756 [XNIO-1 task-2] feXpJJZ_Qz28tfvyL_8S2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2aa0fefd, base path is set to: null +07:00:43.756 [XNIO-1 task-2] feXpJJZ_Qz28tfvyL_8S2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.756 [XNIO-1 task-2] feXpJJZ_Qz28tfvyL_8S2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.756 [XNIO-1 task-2] feXpJJZ_Qz28tfvyL_8S2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2aa0fefd, base path is set to: null +07:00:43.756 [XNIO-1 task-2] feXpJJZ_Qz28tfvyL_8S2w DEBUG com.networknt.schema.TypeValidator debug - validate( "2aa0fefd", "2aa0fefd", serviceId) +07:00:43.762 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.763 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.763 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.764 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.764 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:43.764 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG com.networknt.schema.TypeValidator debug - validate( "25866727-4b20-4205-8562-71f3e517f5c8", {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:43.764 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG com.networknt.schema.TypeValidator debug - validate( "70cfd298", {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:43.764 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:43.764 [XNIO-1 task-2] M2OqGR6gQzKYhiwY6_3mLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"70cfd298","serviceName":"0389cf4d-d008-4890-8c7b-aa87ed15","serviceDesc":"25866727-4b20-4205-8562-71f3e517f5c8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.765 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:70cfd298 +07:00:43.780 [XNIO-1 task-2] yLkyaPZrQRCvhmbg6RyjKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.780 [XNIO-1 task-2] yLkyaPZrQRCvhmbg6RyjKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.780 [XNIO-1 task-2] yLkyaPZrQRCvhmbg6RyjKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.795 [XNIO-1 task-2] F-5fUeU9RNqTqTbiv3Ss1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2aa0fefd +07:00:43.795 [XNIO-1 task-2] F-5fUeU9RNqTqTbiv3Ss1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.796 [XNIO-1 task-2] F-5fUeU9RNqTqTbiv3Ss1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.796 [XNIO-1 task-2] F-5fUeU9RNqTqTbiv3Ss1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2aa0fefd +07:00:43.812 [XNIO-1 task-2] kOZHWvOqSxCar59dUUMb1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/70cfd298, base path is set to: null +07:00:43.812 [XNIO-1 task-2] kOZHWvOqSxCar59dUUMb1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.812 [XNIO-1 task-2] kOZHWvOqSxCar59dUUMb1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.812 [XNIO-1 task-2] kOZHWvOqSxCar59dUUMb1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/70cfd298, base path is set to: null +07:00:43.813 [XNIO-1 task-2] kOZHWvOqSxCar59dUUMb1w DEBUG com.networknt.schema.TypeValidator debug - validate( "70cfd298", "70cfd298", serviceId) +07:00:43.814 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:70cfd298 +07:00:43.822 [XNIO-1 task-2] U-Wdn-nkR8mzFNPEpYnCYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.822 [XNIO-1 task-2] U-Wdn-nkR8mzFNPEpYnCYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.823 [XNIO-1 task-2] U-Wdn-nkR8mzFNPEpYnCYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.839 [XNIO-1 task-2] j-VBHBRXTISEsUegpGVAZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6aad93e4 +07:00:43.839 [XNIO-1 task-2] j-VBHBRXTISEsUegpGVAZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.839 [XNIO-1 task-2] j-VBHBRXTISEsUegpGVAZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.840 [XNIO-1 task-2] j-VBHBRXTISEsUegpGVAZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6aad93e4 +07:00:43.844 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ccdce0c +07:00:43.848 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ccdce0c +07:00:43.883 [XNIO-1 task-2] i9lcwAaNTXOsjwL_pexkLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/94b0429f +07:00:43.883 [XNIO-1 task-2] i9lcwAaNTXOsjwL_pexkLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.883 [XNIO-1 task-2] i9lcwAaNTXOsjwL_pexkLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.884 [XNIO-1 task-2] i9lcwAaNTXOsjwL_pexkLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/94b0429f +07:00:43.890 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.890 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.890 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.891 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.891 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.891 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:43.891 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:43.891 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG com.networknt.schema.TypeValidator debug - validate( "ebc4ad3d-39ae-48fc-b1a6-96ab37e3", {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:43.893 [XNIO-1 task-2] C3UYExp8QuaMPwzpHGghww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f30f8b3","serviceName":"ebc4ad3d-39ae-48fc-b1a6-96ab37e3","serviceDesc":"d2e1e6c7-b9b5-46c9-864a-ef494b412f4d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:43.905 [XNIO-1 task-2] frzZuV5ISnyPAa7sBNq7dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f30f8b3, base path is set to: null +07:00:43.905 [XNIO-1 task-2] frzZuV5ISnyPAa7sBNq7dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.905 [XNIO-1 task-2] frzZuV5ISnyPAa7sBNq7dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.905 [XNIO-1 task-2] frzZuV5ISnyPAa7sBNq7dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f30f8b3, base path is set to: null +07:00:43.906 [XNIO-1 task-2] frzZuV5ISnyPAa7sBNq7dw DEBUG com.networknt.schema.TypeValidator debug - validate( "3f30f8b3", "3f30f8b3", serviceId) +07:00:43.914 [XNIO-1 task-2] FHHRGfl1RjakHmzVc0BAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f30f8b3 +07:00:43.915 [XNIO-1 task-2] FHHRGfl1RjakHmzVc0BAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.915 [XNIO-1 task-2] FHHRGfl1RjakHmzVc0BAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.915 [XNIO-1 task-2] FHHRGfl1RjakHmzVc0BAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f30f8b3 +07:00:43.922 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5ccdce0c +07:00:43.931 [XNIO-1 task-2] EvbhEUWjSuCZBQMXLKUkHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/94b0429f, base path is set to: null +07:00:43.931 [XNIO-1 task-2] EvbhEUWjSuCZBQMXLKUkHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.931 [XNIO-1 task-2] EvbhEUWjSuCZBQMXLKUkHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:43.931 [XNIO-1 task-2] EvbhEUWjSuCZBQMXLKUkHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/94b0429f, base path is set to: null +07:00:43.932 [XNIO-1 task-2] EvbhEUWjSuCZBQMXLKUkHw DEBUG com.networknt.schema.TypeValidator debug - validate( "94b0429f", "94b0429f", serviceId) +07:00:43.941 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ccdce0c +07:00:43.948 [XNIO-1 task-2] Yfqf_FQxSYioaIwZh2icpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.948 [XNIO-1 task-2] Yfqf_FQxSYioaIwZh2icpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.949 [XNIO-1 task-2] Yfqf_FQxSYioaIwZh2icpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.969 [XNIO-1 task-2] zz2YDmICS3WMATZ8iopFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff01db6e +07:00:43.970 [XNIO-1 task-2] zz2YDmICS3WMATZ8iopFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:43.970 [XNIO-1 task-2] zz2YDmICS3WMATZ8iopFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:43.970 [XNIO-1 task-2] zz2YDmICS3WMATZ8iopFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff01db6e +07:00:43.971 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5ccdce0c +07:00:43.984 [XNIO-1 task-2] LZ2s5GszRGum2a0wWjyXmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.984 [XNIO-1 task-2] LZ2s5GszRGum2a0wWjyXmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:43.985 [XNIO-1 task-2] LZ2s5GszRGum2a0wWjyXmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:43.985 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5ccdce0c +07:00:43.985 [XNIO-1 task-2] LZ2s5GszRGum2a0wWjyXmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.997 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5ccdce0c +07:00:44.029 [XNIO-1 task-2] UDS831tzSQW_usVzflcqFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.029 [XNIO-1 task-2] UDS831tzSQW_usVzflcqFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.029 [XNIO-1 task-2] UDS831tzSQW_usVzflcqFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.030 [XNIO-1 task-2] UDS831tzSQW_usVzflcqFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.041 [XNIO-1 task-2] mFgB-uzUQwiCWoxKOnmPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.041 [XNIO-1 task-2] mFgB-uzUQwiCWoxKOnmPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.042 [XNIO-1 task-2] mFgB-uzUQwiCWoxKOnmPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.061 [XNIO-1 task-2] KZ_kYe9fSyiyiOxFp866og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.063 [XNIO-1 task-2] KZ_kYe9fSyiyiOxFp866og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.064 [XNIO-1 task-2] KZ_kYe9fSyiyiOxFp866og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.075 [XNIO-1 task-2] g1gm467FTRedKTR1KUh41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.075 [XNIO-1 task-2] g1gm467FTRedKTR1KUh41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.075 [XNIO-1 task-2] g1gm467FTRedKTR1KUh41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.076 [XNIO-1 task-2] g1gm467FTRedKTR1KUh41Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.114 [XNIO-1 task-2] DVNrWSwDTWaTDQNSr2d-yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/27fc8526 +07:00:44.114 [XNIO-1 task-2] DVNrWSwDTWaTDQNSr2d-yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.114 [XNIO-1 task-2] DVNrWSwDTWaTDQNSr2d-yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.114 [XNIO-1 task-2] DVNrWSwDTWaTDQNSr2d-yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/27fc8526 +07:00:44.152 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.152 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.153 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.154 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.154 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.154 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.154 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.154 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG com.networknt.schema.TypeValidator debug - validate( "7c7af856-415f-40c0-9366-75aef2b9", {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:44.154 [XNIO-1 task-2] DrWqlWz7RrWUCuuYSYgR1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.168 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.169 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.169 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.170 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.170 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.170 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.170 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.170 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7c7af856-415f-40c0-9366-75aef2b9", {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:44.170 [XNIO-1 task-2] OEdiiHFVSRePbK5AUHaGMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ab1c937","serviceName":"7c7af856-415f-40c0-9366-75aef2b9","serviceDesc":"8ae5efc9-812c-45ac-b608-36b6bf7bd821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.186 [XNIO-1 task-2] t9OoYAvcQBOPqUesmcYZZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ab1c937, base path is set to: null +07:00:44.186 [XNIO-1 task-2] t9OoYAvcQBOPqUesmcYZZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.186 [XNIO-1 task-2] t9OoYAvcQBOPqUesmcYZZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.187 [XNIO-1 task-2] t9OoYAvcQBOPqUesmcYZZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ab1c937, base path is set to: null +07:00:44.187 [XNIO-1 task-2] t9OoYAvcQBOPqUesmcYZZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0ab1c937", "0ab1c937", serviceId) +07:00:44.203 [XNIO-1 task-2] HTOZttXvR_m2N6j2Yn0Uog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.204 [XNIO-1 task-2] HTOZttXvR_m2N6j2Yn0Uog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.204 [XNIO-1 task-2] HTOZttXvR_m2N6j2Yn0Uog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.204 [XNIO-1 task-2] HTOZttXvR_m2N6j2Yn0Uog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.214 [XNIO-1 task-2] TalQYVUySxitTpOt4N2S_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.214 [XNIO-1 task-2] TalQYVUySxitTpOt4N2S_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.214 [XNIO-1 task-2] TalQYVUySxitTpOt4N2S_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.217 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4be021c7-96dd-400e-a2d9-fc6e554e7ae3 +07:00:44.250 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.250 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.251 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.251 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.251 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.251 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG com.networknt.schema.TypeValidator debug - validate( "22af3553-dc95-4e7b-9129-2fd4260f8c6c", {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:44.251 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG com.networknt.schema.TypeValidator debug - validate( "a4bfc3fc", {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:44.251 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:44.252 [XNIO-1 task-2] T-Ntoi7eTJ6JH2MQPJFOZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a4bfc3fc","serviceName":"859045f2-474e-4429-b4a9-fd71380f","serviceDesc":"22af3553-dc95-4e7b-9129-2fd4260f8c6c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.265 [XNIO-1 task-2] pP6dgzmqQReFKJ9KmATp7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.265 [XNIO-1 task-2] pP6dgzmqQReFKJ9KmATp7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.266 [XNIO-1 task-2] pP6dgzmqQReFKJ9KmATp7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.287 [XNIO-1 task-2] REvG_DTMQQ-ahK93VdJPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a4bfc3fc +07:00:44.287 [XNIO-1 task-2] REvG_DTMQQ-ahK93VdJPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.287 [XNIO-1 task-2] REvG_DTMQQ-ahK93VdJPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.288 [XNIO-1 task-2] REvG_DTMQQ-ahK93VdJPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a4bfc3fc +07:00:44.292 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.294 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.294 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.295 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.295 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.295 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.295 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.295 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG com.networknt.schema.TypeValidator debug - validate( "8e983a2d-c5f7-4fc4-9573-108fcc2f", {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:44.296 [XNIO-1 task-2] HCY8DVF9SYmPblRfpTeaGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.302 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30effe4b-0d93-4690-b371-5560ed8d6175 +07:00:44.304 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30effe4b-0d93-4690-b371-5560ed8d6175 +07:00:44.326 [XNIO-1 task-2] ZXHvuSJ_RvuYpPlAUuwy0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a4bfc3fc +07:00:44.326 [XNIO-1 task-2] ZXHvuSJ_RvuYpPlAUuwy0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.326 [XNIO-1 task-2] ZXHvuSJ_RvuYpPlAUuwy0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.326 [XNIO-1 task-2] ZXHvuSJ_RvuYpPlAUuwy0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a4bfc3fc +07:00:44.357 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.357 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.357 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.359 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.359 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.359 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.360 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.360 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8e983a2d-c5f7-4fc4-9573-108fcc2f", {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:44.360 [XNIO-1 task-2] 8-8FY3vWSzWxKx9mDGaRpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d7f11f8d","serviceName":"8e983a2d-c5f7-4fc4-9573-108fcc2f","serviceDesc":"e70dadef-30bf-435e-9c6c-3ccb8abdd3b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.382 [XNIO-1 task-2] hpWoBNlESWqJcduAm2INUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.382 [XNIO-1 task-2] hpWoBNlESWqJcduAm2INUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.383 [XNIO-1 task-2] hpWoBNlESWqJcduAm2INUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.383 [XNIO-1 task-2] hpWoBNlESWqJcduAm2INUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.409 [XNIO-1 task-2] 7pOX4n83SKGkJzQ0VG_c0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d7f11f8d, base path is set to: null +07:00:44.409 [XNIO-1 task-2] 7pOX4n83SKGkJzQ0VG_c0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.409 [XNIO-1 task-2] 7pOX4n83SKGkJzQ0VG_c0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.410 [XNIO-1 task-2] 7pOX4n83SKGkJzQ0VG_c0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d7f11f8d, base path is set to: null +07:00:44.410 [XNIO-1 task-2] 7pOX4n83SKGkJzQ0VG_c0w DEBUG com.networknt.schema.TypeValidator debug - validate( "d7f11f8d", "d7f11f8d", serviceId) +07:00:44.414 [XNIO-1 task-2] D_Qw3HU9TqejolILoht1EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d7f11f8d +07:00:44.414 [XNIO-1 task-2] D_Qw3HU9TqejolILoht1EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.414 [XNIO-1 task-2] D_Qw3HU9TqejolILoht1EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.414 [XNIO-1 task-2] D_Qw3HU9TqejolILoht1EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d7f11f8d +07:00:44.418 [XNIO-1 task-2] iI3VMbk4Rg6mN6DfWwL28w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d7f11f8d, base path is set to: null +07:00:44.418 [XNIO-1 task-2] iI3VMbk4Rg6mN6DfWwL28w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.418 [XNIO-1 task-2] iI3VMbk4Rg6mN6DfWwL28w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.418 [XNIO-1 task-2] iI3VMbk4Rg6mN6DfWwL28w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d7f11f8d, base path is set to: null +07:00:44.418 [XNIO-1 task-2] iI3VMbk4Rg6mN6DfWwL28w DEBUG com.networknt.schema.TypeValidator debug - validate( "d7f11f8d", "d7f11f8d", serviceId) +07:00:44.422 [XNIO-1 task-2] 1Fopos3RQyCMIoYE_FDKVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.422 [XNIO-1 task-2] 1Fopos3RQyCMIoYE_FDKVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.422 [XNIO-1 task-2] 1Fopos3RQyCMIoYE_FDKVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.422 [XNIO-1 task-2] 1Fopos3RQyCMIoYE_FDKVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.441 [XNIO-1 task-2] 9HmekA5VTqimmlNQr6leWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d7f11f8d +07:00:44.441 [XNIO-1 task-2] 9HmekA5VTqimmlNQr6leWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.441 [XNIO-1 task-2] 9HmekA5VTqimmlNQr6leWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.442 [XNIO-1 task-2] 9HmekA5VTqimmlNQr6leWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d7f11f8d +07:00:44.456 [XNIO-1 task-2] Y4oBlQBrTNeKYm6OUvR8vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.456 [XNIO-1 task-2] Y4oBlQBrTNeKYm6OUvR8vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.456 [XNIO-1 task-2] Y4oBlQBrTNeKYm6OUvR8vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.474 [XNIO-1 task-2] z35Mo9X2QoqAmk2bBliwdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.475 [XNIO-1 task-2] z35Mo9X2QoqAmk2bBliwdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.475 [XNIO-1 task-2] z35Mo9X2QoqAmk2bBliwdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.492 [XNIO-1 task-2] sYw9jOQkSeWP5smAig8GzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2e415185, base path is set to: null +07:00:44.492 [XNIO-1 task-2] sYw9jOQkSeWP5smAig8GzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.492 [XNIO-1 task-2] sYw9jOQkSeWP5smAig8GzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.492 [XNIO-1 task-2] sYw9jOQkSeWP5smAig8GzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2e415185, base path is set to: null +07:00:44.493 [XNIO-1 task-2] sYw9jOQkSeWP5smAig8GzA DEBUG com.networknt.schema.TypeValidator debug - validate( "2e415185", "2e415185", serviceId) +07:00:44.502 [XNIO-1 task-2] g7-EpfRUQHmlQNIhlnK5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.502 [XNIO-1 task-2] g7-EpfRUQHmlQNIhlnK5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.503 [XNIO-1 task-2] g7-EpfRUQHmlQNIhlnK5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.518 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.519 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.519 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.520 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.520 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.520 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG com.networknt.schema.TypeValidator debug - validate( "7cba5879-f093-4f4e-98cc-2902510c90e9", {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:44.520 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG com.networknt.schema.TypeValidator debug - validate( "c46c9553", {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:44.520 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:44.520 [XNIO-1 task-2] sEs6BHtlTNuh_285BCFqXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.534 [XNIO-1 task-2] sKfGq2RVTfGhSR-uY4hsyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.535 [XNIO-1 task-2] sKfGq2RVTfGhSR-uY4hsyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.535 [XNIO-1 task-2] sKfGq2RVTfGhSR-uY4hsyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.535 [XNIO-1 task-2] sKfGq2RVTfGhSR-uY4hsyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.569 [XNIO-1 task-2] JS7IgVPAS6eEc6N3IlcZxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d1a222e +07:00:44.569 [XNIO-1 task-2] JS7IgVPAS6eEc6N3IlcZxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.569 [XNIO-1 task-2] JS7IgVPAS6eEc6N3IlcZxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.570 [XNIO-1 task-2] JS7IgVPAS6eEc6N3IlcZxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d1a222e +07:00:44.576 [XNIO-1 task-2] zm9M-_L4TJ65qcytgIMqBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2e415185, base path is set to: null +07:00:44.576 [XNIO-1 task-2] zm9M-_L4TJ65qcytgIMqBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.576 [XNIO-1 task-2] zm9M-_L4TJ65qcytgIMqBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.577 [XNIO-1 task-2] zm9M-_L4TJ65qcytgIMqBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2e415185, base path is set to: null +07:00:44.577 [XNIO-1 task-2] zm9M-_L4TJ65qcytgIMqBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2e415185", "2e415185", serviceId) +07:00:44.589 [XNIO-1 task-2] QYmsW7aHT0KUuXzj-UVfpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.589 [XNIO-1 task-2] QYmsW7aHT0KUuXzj-UVfpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.589 [XNIO-1 task-2] QYmsW7aHT0KUuXzj-UVfpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.591 [XNIO-1 task-2] QYmsW7aHT0KUuXzj-UVfpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.606 [XNIO-1 task-2] EEnVFbGOTXKzKlPSAhrQBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.610 [XNIO-1 task-2] EEnVFbGOTXKzKlPSAhrQBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.610 [XNIO-1 task-2] EEnVFbGOTXKzKlPSAhrQBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.611 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:470ecfe1-0f1c-49b9-ab92-bc0185f1b6a2 +07:00:44.612 [XNIO-1 task-2] EEnVFbGOTXKzKlPSAhrQBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.634 [XNIO-1 task-2] u8e4x4-QSseUSnpFv87K8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c46c9553, base path is set to: null +07:00:44.634 [XNIO-1 task-2] u8e4x4-QSseUSnpFv87K8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.635 [XNIO-1 task-2] u8e4x4-QSseUSnpFv87K8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.635 [XNIO-1 task-2] u8e4x4-QSseUSnpFv87K8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c46c9553, base path is set to: null +07:00:44.635 [XNIO-1 task-2] u8e4x4-QSseUSnpFv87K8w DEBUG com.networknt.schema.TypeValidator debug - validate( "c46c9553", "c46c9553", serviceId) +07:00:44.646 [XNIO-1 task-2] 0LuAZpKHQESoSqCq_wstug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d1a222e +07:00:44.646 [XNIO-1 task-2] 0LuAZpKHQESoSqCq_wstug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.646 [XNIO-1 task-2] 0LuAZpKHQESoSqCq_wstug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.646 [XNIO-1 task-2] 0LuAZpKHQESoSqCq_wstug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d1a222e +07:00:44.745 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.746 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.746 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.747 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.747 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.747 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.747 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.747 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG com.networknt.schema.TypeValidator debug - validate( "b3b7948f-2365-4243-888c-85d88bda", {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:44.747 [XNIO-1 task-2] zOO7SGLvRWebXxb_GNo-9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c46c9553","serviceName":"b3b7948f-2365-4243-888c-85d88bda","serviceDesc":"7cba5879-f093-4f4e-98cc-2902510c90e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.755 [XNIO-1 task-2] yV2f8ncVSMmhkiBfnsPuAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c46c9553, base path is set to: null +07:00:44.755 [XNIO-1 task-2] yV2f8ncVSMmhkiBfnsPuAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.755 [XNIO-1 task-2] yV2f8ncVSMmhkiBfnsPuAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.756 [XNIO-1 task-2] yV2f8ncVSMmhkiBfnsPuAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c46c9553, base path is set to: null +07:00:44.756 [XNIO-1 task-2] yV2f8ncVSMmhkiBfnsPuAw DEBUG com.networknt.schema.TypeValidator debug - validate( "c46c9553", "c46c9553", serviceId) +07:00:44.774 [XNIO-1 task-2] i4CpOCk8SkKgqdH8uvTaAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.774 [XNIO-1 task-2] i4CpOCk8SkKgqdH8uvTaAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.774 [XNIO-1 task-2] i4CpOCk8SkKgqdH8uvTaAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.774 [XNIO-1 task-2] i4CpOCk8SkKgqdH8uvTaAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.792 [XNIO-1 task-2] IJLznu_ORkiFkDvyMW4F5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.793 [XNIO-1 task-2] IJLznu_ORkiFkDvyMW4F5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.793 [XNIO-1 task-2] IJLznu_ORkiFkDvyMW4F5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.811 [XNIO-1 task-2] dexPykLaQ62ptmJjYHoqvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58ce18cd +07:00:44.811 [XNIO-1 task-2] dexPykLaQ62ptmJjYHoqvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.811 [XNIO-1 task-2] dexPykLaQ62ptmJjYHoqvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.812 [XNIO-1 task-2] dexPykLaQ62ptmJjYHoqvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58ce18cd +07:00:44.820 [XNIO-1 task-2] A-tASJXfQ5qecw10VcVckg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.820 [XNIO-1 task-2] A-tASJXfQ5qecw10VcVckg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.820 [XNIO-1 task-2] A-tASJXfQ5qecw10VcVckg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.833 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.833 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.834 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.834 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.834 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.834 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.834 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:44.835 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cdd9e425-33c4-41f2-8bf8-a08a808e", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:44.835 [XNIO-1 task-2] n6VBZcGiTQGRedMLfjNwlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.853 [XNIO-1 task-2] DejqbkKoQF2VC3r1YpKAKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.853 [XNIO-1 task-2] DejqbkKoQF2VC3r1YpKAKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.853 [XNIO-1 task-2] DejqbkKoQF2VC3r1YpKAKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.869 [XNIO-1 task-2] T_eZAPP6QfyxsozYepHrxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.869 [XNIO-1 task-2] T_eZAPP6QfyxsozYepHrxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.870 [XNIO-1 task-2] T_eZAPP6QfyxsozYepHrxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.884 [XNIO-1 task-2] qDocDotyTlec5nVAfcsIWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.885 [XNIO-1 task-2] qDocDotyTlec5nVAfcsIWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.885 [XNIO-1 task-2] qDocDotyTlec5nVAfcsIWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.911 [XNIO-1 task-2] l-75Jx-QQ7eu8A6PjTqiTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:44.911 [XNIO-1 task-2] l-75Jx-QQ7eu8A6PjTqiTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.911 [XNIO-1 task-2] l-75Jx-QQ7eu8A6PjTqiTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.911 [XNIO-1 task-2] l-75Jx-QQ7eu8A6PjTqiTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:44.912 [XNIO-1 task-2] l-75Jx-QQ7eu8A6PjTqiTA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8a104a", "5b8a104a", serviceId) +07:00:44.915 [XNIO-1 task-2] snHnP38lQJqPycyw79FEGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8a104a +07:00:44.915 [XNIO-1 task-2] snHnP38lQJqPycyw79FEGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.915 [XNIO-1 task-2] snHnP38lQJqPycyw79FEGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:44.915 [XNIO-1 task-2] snHnP38lQJqPycyw79FEGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8a104a +07:00:44.922 [XNIO-1 task-2] -6YRwSHsRrCULurkt02lEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.922 [XNIO-1 task-2] -6YRwSHsRrCULurkt02lEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.922 [XNIO-1 task-2] -6YRwSHsRrCULurkt02lEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:44.941 [XNIO-1 task-2] 5Bgbo1hhR7uGUYpu_9altw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:44.941 [XNIO-1 task-2] 5Bgbo1hhR7uGUYpu_9altw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.941 [XNIO-1 task-2] 5Bgbo1hhR7uGUYpu_9altw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.941 [XNIO-1 task-2] 5Bgbo1hhR7uGUYpu_9altw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:44.942 [XNIO-1 task-2] 5Bgbo1hhR7uGUYpu_9altw DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8a104a", "5b8a104a", serviceId) +07:00:44.946 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.946 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.947 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.947 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.947 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:44.947 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:44.947 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8a104a", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:44.947 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:44.948 [XNIO-1 task-2] sLXQgVLHQUm5Snh9lIVh8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:44.960 [XNIO-1 task-2] Cf1dTXTQRd-j3YHKyaoFVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.960 [XNIO-1 task-2] Cf1dTXTQRd-j3YHKyaoFVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.961 [XNIO-1 task-2] Cf1dTXTQRd-j3YHKyaoFVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.973 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6c616bd0 +07:00:44.981 [XNIO-1 task-2] yTazWcr_T4WeKonnaRCjNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:44.984 [XNIO-1 task-2] yTazWcr_T4WeKonnaRCjNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:44.984 [XNIO-1 task-2] yTazWcr_T4WeKonnaRCjNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:44.984 [XNIO-1 task-2] yTazWcr_T4WeKonnaRCjNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:44.985 [XNIO-1 task-2] yTazWcr_T4WeKonnaRCjNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8a104a", "5b8a104a", serviceId) +07:00:44.992 [XNIO-1 task-2] zy3TnQBpSP6JnyniqU8FEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.992 [XNIO-1 task-2] zy3TnQBpSP6JnyniqU8FEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.992 [XNIO-1 task-2] zy3TnQBpSP6JnyniqU8FEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:44.996 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:04d0203a +07:00:45.005 [XNIO-1 task-2] rbozgq7MR_GY5XjQhJGRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.006 [XNIO-1 task-2] rbozgq7MR_GY5XjQhJGRHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.006 [XNIO-1 task-2] rbozgq7MR_GY5XjQhJGRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.006 [XNIO-1 task-2] rbozgq7MR_GY5XjQhJGRHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.054 [XNIO-1 task-2] hTPESqxwSaiKmv4BlfTcmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.054 [XNIO-1 task-2] hTPESqxwSaiKmv4BlfTcmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.054 [XNIO-1 task-2] hTPESqxwSaiKmv4BlfTcmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.056 [XNIO-1 task-2] hTPESqxwSaiKmv4BlfTcmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.102 [XNIO-1 task-2] sUb5HxYjQUK0qlkWtPUa2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:45.102 [XNIO-1 task-2] sUb5HxYjQUK0qlkWtPUa2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.102 [XNIO-1 task-2] sUb5HxYjQUK0qlkWtPUa2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.103 [XNIO-1 task-2] sUb5HxYjQUK0qlkWtPUa2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:45.103 [XNIO-1 task-2] sUb5HxYjQUK0qlkWtPUa2w DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8a104a", "5b8a104a", serviceId) +07:00:45.111 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.112 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.114 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.115 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.115 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.115 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:45.115 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8a104a", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:45.115 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.115 [XNIO-1 task-2] zZgtyWvyToK-VXQtwuh2eg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.161 [XNIO-1 task-2] aRA9oHwZRpCr93zBoFljkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.161 [XNIO-1 task-2] aRA9oHwZRpCr93zBoFljkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.164 [XNIO-1 task-2] aRA9oHwZRpCr93zBoFljkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.164 [XNIO-1 task-2] aRA9oHwZRpCr93zBoFljkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.184 [XNIO-1 task-2] 0KQjn8nHQDW_mVyqe8Xxcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/513b8a6c +07:00:45.184 [XNIO-1 task-2] 0KQjn8nHQDW_mVyqe8Xxcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.184 [XNIO-1 task-2] 0KQjn8nHQDW_mVyqe8Xxcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.185 [XNIO-1 task-2] 0KQjn8nHQDW_mVyqe8Xxcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/513b8a6c +07:00:45.193 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.195 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.196 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.196 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.196 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.196 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.196 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.196 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG com.networknt.schema.TypeValidator debug - validate( "cdd9e425-33c4-41f2-8bf8-a08a808e", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.197 [XNIO-1 task-2] yyBRLC-SQsKKX2emvVFqvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.215 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.215 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.216 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.217 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.217 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.217 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.217 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.217 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG com.networknt.schema.TypeValidator debug - validate( "c4a21424-3c7e-4cb0-8cc5-ef6b84d6", {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.217 [XNIO-1 task-2] Xd9DyuXPQkmzPKH6EXcbMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"525d03da","serviceName":"c4a21424-3c7e-4cb0-8cc5-ef6b84d6","serviceDesc":"833337f8-5f0d-4dfe-9905-bedb39ab9c73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.222 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:947a358d-f49c-4a81-b1a5-96683d29ae5d +07:00:45.238 [XNIO-1 task-2] O7Lb7Zv5To2T3kZUOER7JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.238 [XNIO-1 task-2] O7Lb7Zv5To2T3kZUOER7JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.238 [XNIO-1 task-2] O7Lb7Zv5To2T3kZUOER7JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.238 [XNIO-1 task-2] O7Lb7Zv5To2T3kZUOER7JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.281 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6c616bd0 +07:00:45.357 [XNIO-1 task-2] RRY88T58QlS71Yawpk2KPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58ce18cd +07:00:45.357 [XNIO-1 task-2] RRY88T58QlS71Yawpk2KPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.357 [XNIO-1 task-2] RRY88T58QlS71Yawpk2KPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.358 [XNIO-1 task-2] RRY88T58QlS71Yawpk2KPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58ce18cd +07:00:45.380 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.380 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.381 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.381 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.381 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.381 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.381 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.381 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "c060c2fa-9d68-4b33-94fd-cbd28e82", {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.381 [XNIO-1 task-2] o6M_FJ-_TN6htoCUk6f4Hg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e8995a98","serviceName":"c060c2fa-9d68-4b33-94fd-cbd28e82","serviceDesc":"be7b0327-b4d2-4b36-8a1e-318a9c408c0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.395 [XNIO-1 task-2] RY8XlPFaQ4qZAK58kbYRdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/04d0203a, base path is set to: null +07:00:45.395 [XNIO-1 task-2] RY8XlPFaQ4qZAK58kbYRdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.395 [XNIO-1 task-2] RY8XlPFaQ4qZAK58kbYRdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.395 [XNIO-1 task-2] RY8XlPFaQ4qZAK58kbYRdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/04d0203a, base path is set to: null +07:00:45.396 [XNIO-1 task-2] RY8XlPFaQ4qZAK58kbYRdw DEBUG com.networknt.schema.TypeValidator debug - validate( "04d0203a", "04d0203a", serviceId) +07:00:45.398 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:04d0203a +07:00:45.410 [XNIO-1 task-2] JFChzct9Qd2dgsq2qQofEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.410 [XNIO-1 task-2] JFChzct9Qd2dgsq2qQofEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.411 [XNIO-1 task-2] JFChzct9Qd2dgsq2qQofEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.411 [XNIO-1 task-2] JFChzct9Qd2dgsq2qQofEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.427 [XNIO-1 task-2] v5Vjk_GxQrSpJSDMh8TlwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.428 [XNIO-1 task-2] v5Vjk_GxQrSpJSDMh8TlwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.428 [XNIO-1 task-2] v5Vjk_GxQrSpJSDMh8TlwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.428 [XNIO-1 task-2] v5Vjk_GxQrSpJSDMh8TlwA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.448 [XNIO-1 task-2] 8RdeNVYHTyyUVKqjJFBd5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:45.448 [XNIO-1 task-2] 8RdeNVYHTyyUVKqjJFBd5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.448 [XNIO-1 task-2] 8RdeNVYHTyyUVKqjJFBd5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.449 [XNIO-1 task-2] 8RdeNVYHTyyUVKqjJFBd5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:45.457 [XNIO-1 task-2] RYZRtpzdRHaE-2vTikXbXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:45.457 [XNIO-1 task-2] RYZRtpzdRHaE-2vTikXbXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.457 [XNIO-1 task-2] RYZRtpzdRHaE-2vTikXbXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.457 [XNIO-1 task-2] RYZRtpzdRHaE-2vTikXbXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8a104a, base path is set to: null +07:00:45.458 [XNIO-1 task-2] RYZRtpzdRHaE-2vTikXbXw DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8a104a", "5b8a104a", serviceId) +07:00:45.469 [XNIO-1 task-2] _6NLqNQ1RsmqyVJXXo77MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.470 [XNIO-1 task-2] _6NLqNQ1RsmqyVJXXo77MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.471 [XNIO-1 task-2] _6NLqNQ1RsmqyVJXXo77MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.471 [XNIO-1 task-2] _6NLqNQ1RsmqyVJXXo77MA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.493 [XNIO-1 task-2] rRAklkw9TI6SsboIL0myRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:45.493 [XNIO-1 task-2] rRAklkw9TI6SsboIL0myRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.493 [XNIO-1 task-2] rRAklkw9TI6SsboIL0myRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.493 [XNIO-1 task-2] rRAklkw9TI6SsboIL0myRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:45.498 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.498 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.498 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.499 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.499 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.499 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.499 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.499 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG com.networknt.schema.TypeValidator debug - validate( "35f7fbda-241d-4be4-910f-12aa57b0", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.499 [XNIO-1 task-2] pzOzfN2PQM635UtplxxSRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.512 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2a0471c6 +07:00:45.513 [XNIO-1 task-2] -7tP2B61QnukjedRtOWA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:45.513 [XNIO-1 task-2] -7tP2B61QnukjedRtOWA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.513 [XNIO-1 task-2] -7tP2B61QnukjedRtOWA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.513 [XNIO-1 task-2] -7tP2B61QnukjedRtOWA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:45.515 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2a0471c6 +07:00:45.520 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.520 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.520 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.521 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.521 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.521 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.521 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.521 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG com.networknt.schema.TypeValidator debug - validate( "35f7fbda-241d-4be4-910f-12aa57b0", {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.521 [XNIO-1 task-2] z7gFVkyXTViU6A8ci1dObg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8a104a","serviceName":"35f7fbda-241d-4be4-910f-12aa57b0","serviceDesc":"1a0a0a7b-e62d-4a55-bc1a-b0901b172ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.536 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.536 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.536 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.537 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.537 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.538 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.538 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.539 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2c9354-68eb-411a-a2cf-0409a0dd", {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.539 [XNIO-1 task-2] PyyI3WIRRIu4S4IkQEZaSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.552 [XNIO-1 task-2] Bf7Jn7sXSTaDTsGJ5YCcgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.552 [XNIO-1 task-2] Bf7Jn7sXSTaDTsGJ5YCcgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.553 [XNIO-1 task-2] Bf7Jn7sXSTaDTsGJ5YCcgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.553 [XNIO-1 task-2] Bf7Jn7sXSTaDTsGJ5YCcgg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.571 [XNIO-1 task-2] jY-EaCsfQrqoU1gJqUdB6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.571 [XNIO-1 task-2] jY-EaCsfQrqoU1gJqUdB6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.572 [XNIO-1 task-2] jY-EaCsfQrqoU1gJqUdB6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.590 [XNIO-1 task-2] Sr7r0tK5SIOj1E5TuhP78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21f6f3af, base path is set to: null +07:00:45.590 [XNIO-1 task-2] Sr7r0tK5SIOj1E5TuhP78Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.591 [XNIO-1 task-2] Sr7r0tK5SIOj1E5TuhP78Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.591 [XNIO-1 task-2] Sr7r0tK5SIOj1E5TuhP78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21f6f3af, base path is set to: null +07:00:45.591 [XNIO-1 task-2] Sr7r0tK5SIOj1E5TuhP78Q DEBUG com.networknt.schema.TypeValidator debug - validate( "21f6f3af", "21f6f3af", serviceId) +07:00:45.596 [XNIO-1 task-2] GHEkN6mhTxSMI3pyOAKuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/659fa2d8 +07:00:45.596 [XNIO-1 task-2] GHEkN6mhTxSMI3pyOAKuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.596 [XNIO-1 task-2] GHEkN6mhTxSMI3pyOAKuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.597 [XNIO-1 task-2] GHEkN6mhTxSMI3pyOAKuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/659fa2d8 +07:00:45.603 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.603 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.603 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.604 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.604 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.604 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.604 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.604 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2c9354-68eb-411a-a2cf-0409a0dd", {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.604 [XNIO-1 task-2] 1Md8Zq54SDGAYltN3S3oyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21f6f3af","serviceName":"6b2c9354-68eb-411a-a2cf-0409a0dd","serviceDesc":"1f2e869b-fe26-48f5-9136-9418bf08aebc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.615 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.615 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.616 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.616 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.616 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.616 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.616 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.616 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1e3212b3-f3a2-493b-b874-ee0dbab1", {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.617 [XNIO-1 task-2] BLYx_R6lSzydRBhMpEvJ4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"659fa2d8","serviceName":"1e3212b3-f3a2-493b-b874-ee0dbab1","serviceDesc":"12bc441b-852f-4b7d-aafe-ee00b639aeda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.631 [XNIO-1 task-2] QNssg_f9T0udNd03UuicFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.632 [XNIO-1 task-2] QNssg_f9T0udNd03UuicFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.632 [XNIO-1 task-2] QNssg_f9T0udNd03UuicFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.632 [XNIO-1 task-2] QNssg_f9T0udNd03UuicFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.643 [XNIO-1 task-2] geHzLOoOSpOdf8Khvpt8hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/525d03da, base path is set to: null +07:00:45.644 [XNIO-1 task-2] geHzLOoOSpOdf8Khvpt8hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.644 [XNIO-1 task-2] geHzLOoOSpOdf8Khvpt8hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.644 [XNIO-1 task-2] geHzLOoOSpOdf8Khvpt8hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/525d03da, base path is set to: null +07:00:45.644 [XNIO-1 task-2] geHzLOoOSpOdf8Khvpt8hw DEBUG com.networknt.schema.TypeValidator debug - validate( "525d03da", "525d03da", serviceId) +07:00:45.658 [XNIO-1 task-2] uccsMdkxSwayjvqvH2OvNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8a104a +07:00:45.658 [XNIO-1 task-2] uccsMdkxSwayjvqvH2OvNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.658 [XNIO-1 task-2] uccsMdkxSwayjvqvH2OvNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.658 [XNIO-1 task-2] uccsMdkxSwayjvqvH2OvNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8a104a +07:00:45.670 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.670 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.671 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.671 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.671 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.672 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.672 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:45.672 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG com.networknt.schema.TypeValidator debug - validate( "45cce4f9-3238-46ed-9e08-5f154996", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:45.672 [XNIO-1 task-2] SajVJ9FEQveetc3BHkEDvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.683 [XNIO-1 task-2] tYbIgjVNTKCtGGetdf5oZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.683 [XNIO-1 task-2] tYbIgjVNTKCtGGetdf5oZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.683 [XNIO-1 task-2] tYbIgjVNTKCtGGetdf5oZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.684 [XNIO-1 task-2] tYbIgjVNTKCtGGetdf5oZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.758 [XNIO-1 task-2] kOhtkBZSQjCx84_-gVjzMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21f6f3af, base path is set to: null +07:00:45.758 [XNIO-1 task-2] kOhtkBZSQjCx84_-gVjzMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.758 [XNIO-1 task-2] kOhtkBZSQjCx84_-gVjzMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.758 [XNIO-1 task-2] kOhtkBZSQjCx84_-gVjzMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21f6f3af, base path is set to: null +07:00:45.758 [XNIO-1 task-2] kOhtkBZSQjCx84_-gVjzMg DEBUG com.networknt.schema.TypeValidator debug - validate( "21f6f3af", "21f6f3af", serviceId) +07:00:45.771 [XNIO-1 task-2] sQl34x7mR_OfdG1_OMTVcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.771 [XNIO-1 task-2] sQl34x7mR_OfdG1_OMTVcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.772 [XNIO-1 task-2] sQl34x7mR_OfdG1_OMTVcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.797 [XNIO-1 task-2] phdromUnRU6pIkeeibjiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.797 [XNIO-1 task-2] phdromUnRU6pIkeeibjiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.797 [XNIO-1 task-2] phdromUnRU6pIkeeibjiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.798 [XNIO-1 task-2] phdromUnRU6pIkeeibjiVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.800 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6d3d7f44-f3e0-418c-80c9-9d5d214ae1a3 +07:00:45.815 [XNIO-1 task-2] 3DLgUs1XQaW8h8_sHuJImw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.815 [XNIO-1 task-2] 3DLgUs1XQaW8h8_sHuJImw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.816 [XNIO-1 task-2] 3DLgUs1XQaW8h8_sHuJImw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.850 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.851 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.851 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.852 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.852 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.852 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG com.networknt.schema.TypeValidator debug - validate( "0927cce9-516b-4a1d-9e30-2c71405b6e58", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:45.852 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG com.networknt.schema.TypeValidator debug - validate( "2f6e3188", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:45.852 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.852 [XNIO-1 task-2] 7S9G61-mRMOibFOkK5XAlw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f6e3188","serviceName":"cdd9e425-33c4-41f2-8bf8-a08a808e","serviceDesc":"0927cce9-516b-4a1d-9e30-2c71405b6e58","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.864 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2edea82a-3915-467f-bfe1-fd916b0b61f3 +07:00:45.867 [XNIO-1 task-2] Xju7A8MTSDK7R88vuRCnYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e8995a98 +07:00:45.867 [XNIO-1 task-2] Xju7A8MTSDK7R88vuRCnYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.867 [XNIO-1 task-2] Xju7A8MTSDK7R88vuRCnYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.867 [XNIO-1 task-2] Xju7A8MTSDK7R88vuRCnYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e8995a98 +07:00:45.879 [XNIO-1 task-2] pU9O7B2yQtaOpsYHKLZQow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.879 [XNIO-1 task-2] pU9O7B2yQtaOpsYHKLZQow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.879 [XNIO-1 task-2] pU9O7B2yQtaOpsYHKLZQow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:45.880 [XNIO-1 task-2] pU9O7B2yQtaOpsYHKLZQow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.889 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2edea82a-3915-467f-bfe1-fd916b0b61f3 +07:00:45.940 [XNIO-1 task-2] WyiqOT-pT6GqRHqrfX6vmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e8995a98 +07:00:45.940 [XNIO-1 task-2] WyiqOT-pT6GqRHqrfX6vmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.940 [XNIO-1 task-2] WyiqOT-pT6GqRHqrfX6vmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:45.941 [XNIO-1 task-2] WyiqOT-pT6GqRHqrfX6vmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e8995a98 +07:00:45.944 [XNIO-1 task-2] m1HDVhs5Teuw-eBwhi12vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e8995a98, base path is set to: null +07:00:45.944 [XNIO-1 task-2] m1HDVhs5Teuw-eBwhi12vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.944 [XNIO-1 task-2] m1HDVhs5Teuw-eBwhi12vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.944 [XNIO-1 task-2] m1HDVhs5Teuw-eBwhi12vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e8995a98, base path is set to: null +07:00:45.944 [XNIO-1 task-2] m1HDVhs5Teuw-eBwhi12vA DEBUG com.networknt.schema.TypeValidator debug - validate( "e8995a98", "e8995a98", serviceId) +07:00:45.955 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.955 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.956 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.956 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.956 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.956 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG com.networknt.schema.TypeValidator debug - validate( "f40a359c-1306-4f99-8c70-110eaf87aa9e", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:45.956 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG com.networknt.schema.TypeValidator debug - validate( "e60c9edd", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:45.956 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.956 [XNIO-1 task-2] H4zbWlsOSvivoDxA27-Y6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.975 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.975 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.975 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.976 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.976 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:45.976 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "f40a359c-1306-4f99-8c70-110eaf87aa9e", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:45.976 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "e60c9edd", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:45.976 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:45.977 [XNIO-1 task-2] HJvrDBcjRiuBj9DCaS0ZJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e60c9edd","serviceName":"7dd8d378-0426-4f19-bf5f-0d1e7509","serviceDesc":"f40a359c-1306-4f99-8c70-110eaf87aa9e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:45.990 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:25649d27 +07:00:45.990 [XNIO-1 task-2] k2wgdHi9S6-9pFPavY-wCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/513b8a6c, base path is set to: null +07:00:45.990 [XNIO-1 task-2] k2wgdHi9S6-9pFPavY-wCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:45.990 [XNIO-1 task-2] k2wgdHi9S6-9pFPavY-wCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:45.990 [XNIO-1 task-2] k2wgdHi9S6-9pFPavY-wCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/513b8a6c, base path is set to: null +07:00:45.991 [XNIO-1 task-2] k2wgdHi9S6-9pFPavY-wCg DEBUG com.networknt.schema.TypeValidator debug - validate( "513b8a6c", "513b8a6c", serviceId) +07:00:45.996 [XNIO-1 task-2] 5XVHycjxQLCcnlypwnyZkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.996 [XNIO-1 task-2] 5XVHycjxQLCcnlypwnyZkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:45.996 [XNIO-1 task-2] 5XVHycjxQLCcnlypwnyZkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.025 [XNIO-1 task-2] 9zKVuU7ETBSBSaDSXymNTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f6e3188 +07:00:46.025 [XNIO-1 task-2] 9zKVuU7ETBSBSaDSXymNTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.025 [XNIO-1 task-2] 9zKVuU7ETBSBSaDSXymNTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.025 [XNIO-1 task-2] 9zKVuU7ETBSBSaDSXymNTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f6e3188 +07:00:46.033 [XNIO-1 task-2] zVvljuETRkCUFa5Sw5ZG0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.033 [XNIO-1 task-2] zVvljuETRkCUFa5Sw5ZG0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.033 [XNIO-1 task-2] zVvljuETRkCUFa5Sw5ZG0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.034 [XNIO-1 task-2] zVvljuETRkCUFa5Sw5ZG0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.061 [XNIO-1 task-2] YcT6oLLtRDOYUzPLPgNkBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/659fa2d8, base path is set to: null +07:00:46.061 [XNIO-1 task-2] YcT6oLLtRDOYUzPLPgNkBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.061 [XNIO-1 task-2] YcT6oLLtRDOYUzPLPgNkBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.061 [XNIO-1 task-2] YcT6oLLtRDOYUzPLPgNkBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/659fa2d8, base path is set to: null +07:00:46.062 [XNIO-1 task-2] YcT6oLLtRDOYUzPLPgNkBw DEBUG com.networknt.schema.TypeValidator debug - validate( "659fa2d8", "659fa2d8", serviceId) +07:00:46.091 [XNIO-1 task-2] Vkg3GptNTwu0YgUOiEG-Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.091 [XNIO-1 task-2] Vkg3GptNTwu0YgUOiEG-Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.093 [XNIO-1 task-2] Vkg3GptNTwu0YgUOiEG-Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.107 [XNIO-1 task-2] 7EVHVPHPQYSaQ627QBgOUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.107 [XNIO-1 task-2] 7EVHVPHPQYSaQ627QBgOUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.108 [XNIO-1 task-2] 7EVHVPHPQYSaQ627QBgOUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.108 [XNIO-1 task-2] 7EVHVPHPQYSaQ627QBgOUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.130 [XNIO-1 task-2] r_2hvcgfQ5uoKo0eV3YZmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1df52d2, base path is set to: null +07:00:46.131 [XNIO-1 task-2] r_2hvcgfQ5uoKo0eV3YZmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.131 [XNIO-1 task-2] r_2hvcgfQ5uoKo0eV3YZmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.132 [XNIO-1 task-2] r_2hvcgfQ5uoKo0eV3YZmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1df52d2, base path is set to: null +07:00:46.132 [XNIO-1 task-2] r_2hvcgfQ5uoKo0eV3YZmA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1df52d2", "e1df52d2", serviceId) +07:00:46.133 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:93115c9e +07:00:46.138 [XNIO-1 task-2] x5J6jcscRAKx9J3DWF8aig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.138 [XNIO-1 task-2] x5J6jcscRAKx9J3DWF8aig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.138 [XNIO-1 task-2] x5J6jcscRAKx9J3DWF8aig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.152 [XNIO-1 task-2] SxJJrOZ8RHSBK7UScagHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1df52d2 +07:00:46.152 [XNIO-1 task-2] SxJJrOZ8RHSBK7UScagHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.152 [XNIO-1 task-2] SxJJrOZ8RHSBK7UScagHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.152 [XNIO-1 task-2] SxJJrOZ8RHSBK7UScagHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1df52d2 +07:00:46.156 [XNIO-1 task-2] OU6dcpOmT0KKoukzpAyWaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1df52d2, base path is set to: null +07:00:46.156 [XNIO-1 task-2] OU6dcpOmT0KKoukzpAyWaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.156 [XNIO-1 task-2] OU6dcpOmT0KKoukzpAyWaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.157 [XNIO-1 task-2] OU6dcpOmT0KKoukzpAyWaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1df52d2, base path is set to: null +07:00:46.157 [XNIO-1 task-2] OU6dcpOmT0KKoukzpAyWaw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1df52d2", "e1df52d2", serviceId) +07:00:46.169 [XNIO-1 task-2] ui9IhVw8QveoWyVkl99Nfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.169 [XNIO-1 task-2] ui9IhVw8QveoWyVkl99Nfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.169 [XNIO-1 task-2] ui9IhVw8QveoWyVkl99Nfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.170 [XNIO-1 task-2] ui9IhVw8QveoWyVkl99Nfg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.185 [XNIO-1 task-2] mKC72xd2QlyhQXpWHuyBwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e582a549, base path is set to: null +07:00:46.185 [XNIO-1 task-2] mKC72xd2QlyhQXpWHuyBwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.185 [XNIO-1 task-2] mKC72xd2QlyhQXpWHuyBwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.186 [XNIO-1 task-2] mKC72xd2QlyhQXpWHuyBwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e582a549, base path is set to: null +07:00:46.186 [XNIO-1 task-2] mKC72xd2QlyhQXpWHuyBwg DEBUG com.networknt.schema.TypeValidator debug - validate( "e582a549", "e582a549", serviceId) +07:00:46.191 [XNIO-1 task-2] o1WZKGVERAOPwL_XQGvWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:46.191 [XNIO-1 task-2] o1WZKGVERAOPwL_XQGvWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.191 [XNIO-1 task-2] o1WZKGVERAOPwL_XQGvWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.191 [XNIO-1 task-2] o1WZKGVERAOPwL_XQGvWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21f6f3af +07:00:46.210 [XNIO-1 task-2] _JiSH0aoTEKCy88Fzc2PMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f6e3188, base path is set to: null +07:00:46.210 [XNIO-1 task-2] _JiSH0aoTEKCy88Fzc2PMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.210 [XNIO-1 task-2] _JiSH0aoTEKCy88Fzc2PMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.211 [XNIO-1 task-2] _JiSH0aoTEKCy88Fzc2PMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f6e3188, base path is set to: null +07:00:46.211 [XNIO-1 task-2] _JiSH0aoTEKCy88Fzc2PMg DEBUG com.networknt.schema.TypeValidator debug - validate( "2f6e3188", "2f6e3188", serviceId) +07:00:46.214 [XNIO-1 task-2] _kHBOWQpQGOBaGbjvCEMag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c3d68072 +07:00:46.214 [XNIO-1 task-2] _kHBOWQpQGOBaGbjvCEMag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.215 [XNIO-1 task-2] _kHBOWQpQGOBaGbjvCEMag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.215 [XNIO-1 task-2] _kHBOWQpQGOBaGbjvCEMag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c3d68072 +07:00:46.241 [XNIO-1 task-2] y9r5byHdSkuvfF97qWmORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e60c9edd, base path is set to: null +07:00:46.241 [XNIO-1 task-2] y9r5byHdSkuvfF97qWmORQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.241 [XNIO-1 task-2] y9r5byHdSkuvfF97qWmORQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.241 [XNIO-1 task-2] y9r5byHdSkuvfF97qWmORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e60c9edd, base path is set to: null +07:00:46.242 [XNIO-1 task-2] y9r5byHdSkuvfF97qWmORQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e60c9edd", "e60c9edd", serviceId) +07:00:46.269 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.270 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.271 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.271 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.271 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.271 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG com.networknt.schema.TypeValidator debug - validate( "e920b5ce-04f5-4096-92de-3e83287330f2", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:46.271 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG com.networknt.schema.TypeValidator debug - validate( "513b8a6c", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:46.272 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.272 [XNIO-1 task-2] UbVg4cJDRPmrZwDU-wUvwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.288 [XNIO-1 task-2] TWaauI0oSqu8FCV0krpqwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/71c90023 +07:00:46.288 [XNIO-1 task-2] TWaauI0oSqu8FCV0krpqwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.288 [XNIO-1 task-2] TWaauI0oSqu8FCV0krpqwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.292 [XNIO-1 task-2] TWaauI0oSqu8FCV0krpqwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/71c90023 +07:00:46.299 [XNIO-1 task-2] F_7x4DXbSxyRa2t2NFOBmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.299 [XNIO-1 task-2] F_7x4DXbSxyRa2t2NFOBmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.301 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:82ddbfb3-00e9-432f-9e1b-bdef25b296cb +07:00:46.303 [XNIO-1 task-2] F_7x4DXbSxyRa2t2NFOBmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.303 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:82ddbfb3-00e9-432f-9e1b-bdef25b296cb +07:00:46.313 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b949f273-d169-42a4-849b-662df9675b42 +07:00:46.331 [XNIO-1 task-2] VukXMA1ESi6d_45DD6rs6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f6e3188, base path is set to: null +07:00:46.331 [XNIO-1 task-2] VukXMA1ESi6d_45DD6rs6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.331 [XNIO-1 task-2] VukXMA1ESi6d_45DD6rs6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.331 [XNIO-1 task-2] VukXMA1ESi6d_45DD6rs6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f6e3188, base path is set to: null +07:00:46.332 [XNIO-1 task-2] VukXMA1ESi6d_45DD6rs6A DEBUG com.networknt.schema.TypeValidator debug - validate( "2f6e3188", "2f6e3188", serviceId) +07:00:46.336 [XNIO-1 task-2] hr16EzAfQdWVim7etpCheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.336 [XNIO-1 task-2] hr16EzAfQdWVim7etpCheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.336 [XNIO-1 task-2] hr16EzAfQdWVim7etpCheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.336 [XNIO-1 task-2] hr16EzAfQdWVim7etpCheg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.374 [XNIO-1 task-2] gbWk4dvXRsGwvbe_WgcAOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.375 [XNIO-1 task-2] gbWk4dvXRsGwvbe_WgcAOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.375 [XNIO-1 task-2] gbWk4dvXRsGwvbe_WgcAOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.376 [XNIO-1 task-2] gbWk4dvXRsGwvbe_WgcAOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.387 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.387 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.387 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.388 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.388 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.388 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.388 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.389 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG com.networknt.schema.TypeValidator debug - validate( "b793d8a7-6b5e-4511-b58b-cd96f315", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:46.389 [XNIO-1 task-2] O3n9-JLvTcWDbCgxb8psPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.400 [XNIO-1 task-2] mxLgOfyBT-2UI-ybGccZJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.401 [XNIO-1 task-2] mxLgOfyBT-2UI-ybGccZJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.401 [XNIO-1 task-2] mxLgOfyBT-2UI-ybGccZJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.420 [XNIO-1 task-2] 6DiaJEfmS2KAZNHcOYq_yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.421 [XNIO-1 task-2] 6DiaJEfmS2KAZNHcOYq_yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.422 [XNIO-1 task-2] 6DiaJEfmS2KAZNHcOYq_yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.435 [XNIO-1 task-2] kCC4-f38TYyxhcMJCUAoug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.436 [XNIO-1 task-2] kCC4-f38TYyxhcMJCUAoug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.436 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:edea0309 +07:00:46.436 [XNIO-1 task-2] kCC4-f38TYyxhcMJCUAoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.440 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:edea0309 +07:00:46.457 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.457 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.458 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.458 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.458 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.459 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e920b5ce-04f5-4096-92de-3e83287330f2", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:46.459 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "513b8a6c", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:46.459 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.459 [XNIO-1 task-2] QTBywygeQemHNzj_ddY8eQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"513b8a6c","serviceName":"45cce4f9-3238-46ed-9e08-5f154996","serviceDesc":"e920b5ce-04f5-4096-92de-3e83287330f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.477 [XNIO-1 task-2] 0gekTsejSeK73ywLNypazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d9360f7 +07:00:46.477 [XNIO-1 task-2] 0gekTsejSeK73ywLNypazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.477 [XNIO-1 task-2] 0gekTsejSeK73ywLNypazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.478 [XNIO-1 task-2] 0gekTsejSeK73ywLNypazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d9360f7 +07:00:46.483 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.484 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.484 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.484 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.485 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.485 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.485 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.485 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG com.networknt.schema.TypeValidator debug - validate( "33d2c172-7fb8-411d-a381-91603be6", {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:46.485 [XNIO-1 task-2] sP3kFC2iQy2wX3Dme8deXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d9360f7","serviceName":"33d2c172-7fb8-411d-a381-91603be6","serviceDesc":"c48103c7-7344-4310-b1f0-afa6d2c5c0e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.502 [XNIO-1 task-2] syGoNMCpRPKqqE-koR5a-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.502 [XNIO-1 task-2] syGoNMCpRPKqqE-koR5a-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.502 [XNIO-1 task-2] syGoNMCpRPKqqE-koR5a-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.503 [XNIO-1 task-2] syGoNMCpRPKqqE-koR5a-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.600 [XNIO-1 task-2] QrHvZDv4SeOiPuFnL5mt5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e582a549, base path is set to: null +07:00:46.600 [XNIO-1 task-2] QrHvZDv4SeOiPuFnL5mt5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.600 [XNIO-1 task-2] QrHvZDv4SeOiPuFnL5mt5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.600 [XNIO-1 task-2] QrHvZDv4SeOiPuFnL5mt5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e582a549, base path is set to: null +07:00:46.601 [XNIO-1 task-2] QrHvZDv4SeOiPuFnL5mt5w DEBUG com.networknt.schema.TypeValidator debug - validate( "e582a549", "e582a549", serviceId) +07:00:46.613 [XNIO-1 task-2] TGvjPKziR9mxKZdJqjFzPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.613 [XNIO-1 task-2] TGvjPKziR9mxKZdJqjFzPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.613 [XNIO-1 task-2] TGvjPKziR9mxKZdJqjFzPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.613 [XNIO-1 task-2] TGvjPKziR9mxKZdJqjFzPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.626 [XNIO-1 task-2] ozf2nbGRS4aY1Kzbpo4gZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.626 [XNIO-1 task-2] ozf2nbGRS4aY1Kzbpo4gZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.628 [XNIO-1 task-2] ozf2nbGRS4aY1Kzbpo4gZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.629 [XNIO-1 task-2] ozf2nbGRS4aY1Kzbpo4gZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.648 [XNIO-1 task-2] n9swOhctSoyqb4G9Nt0ISg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.648 [XNIO-1 task-2] n9swOhctSoyqb4G9Nt0ISg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.648 [XNIO-1 task-2] n9swOhctSoyqb4G9Nt0ISg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.650 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9bc8b88b +07:00:46.667 [XNIO-1 task-2] tIpD6m9eTRiVyycXETm8Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/73790e32, base path is set to: null +07:00:46.667 [XNIO-1 task-2] tIpD6m9eTRiVyycXETm8Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.667 [XNIO-1 task-2] tIpD6m9eTRiVyycXETm8Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.667 [XNIO-1 task-2] tIpD6m9eTRiVyycXETm8Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/73790e32, base path is set to: null +07:00:46.667 [XNIO-1 task-2] tIpD6m9eTRiVyycXETm8Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "73790e32", "73790e32", serviceId) +07:00:46.671 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:edea0309 +07:00:46.677 [XNIO-1 task-2] Jvic_A-bS82dtvaibSA9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f6e3188 +07:00:46.677 [XNIO-1 task-2] Jvic_A-bS82dtvaibSA9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.677 [XNIO-1 task-2] Jvic_A-bS82dtvaibSA9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.677 [XNIO-1 task-2] Jvic_A-bS82dtvaibSA9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f6e3188 +07:00:46.685 [XNIO-1 task-2] ZgfQ04ybQDGnRXe86M_dLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.685 [XNIO-1 task-2] ZgfQ04ybQDGnRXe86M_dLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.686 [XNIO-1 task-2] ZgfQ04ybQDGnRXe86M_dLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.686 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:edea0309 +07:00:46.705 [XNIO-1 task-2] Rw_1rSadTROstuFrNpEC5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b536850 +07:00:46.705 [XNIO-1 task-2] Rw_1rSadTROstuFrNpEC5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.705 [XNIO-1 task-2] Rw_1rSadTROstuFrNpEC5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.706 [XNIO-1 task-2] Rw_1rSadTROstuFrNpEC5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b536850 +07:00:46.716 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.716 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.716 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.717 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.717 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.717 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.717 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.717 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG com.networknt.schema.TypeValidator debug - validate( "b793d8a7-6b5e-4511-b58b-cd96f315", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:46.718 [XNIO-1 task-2] OaqnJ3CoTZeZzgo-5VO3mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.733 [XNIO-1 task-2] O1pVTN3WT2qIrByO9yny0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/513b8a6c, base path is set to: null +07:00:46.733 [XNIO-1 task-2] O1pVTN3WT2qIrByO9yny0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.733 [XNIO-1 task-2] O1pVTN3WT2qIrByO9yny0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.733 [XNIO-1 task-2] O1pVTN3WT2qIrByO9yny0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/513b8a6c, base path is set to: null +07:00:46.733 [XNIO-1 task-2] O1pVTN3WT2qIrByO9yny0A DEBUG com.networknt.schema.TypeValidator debug - validate( "513b8a6c", "513b8a6c", serviceId) +07:00:46.737 [XNIO-1 task-2] uC7znvtyQ8KOnqH-VBQ8VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.737 [XNIO-1 task-2] uC7znvtyQ8KOnqH-VBQ8VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.737 [XNIO-1 task-2] uC7znvtyQ8KOnqH-VBQ8VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.772 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.773 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.773 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.773 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.773 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.774 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.774 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:46.774 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "71aba744-6dea-411b-bf35-ff98cd7f", {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:46.774 [XNIO-1 task-2] RM4ff6kaTt-QCQ0xdP7eLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.791 [XNIO-1 task-2] Sa2as6EzTCOGBWILtLqzFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.791 [XNIO-1 task-2] Sa2as6EzTCOGBWILtLqzFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.791 [XNIO-1 task-2] Sa2as6EzTCOGBWILtLqzFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.792 [XNIO-1 task-2] Sa2as6EzTCOGBWILtLqzFw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.811 [XNIO-1 task-2] QcFgRve9QGO6dbOLMIwHOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.811 [XNIO-1 task-2] QcFgRve9QGO6dbOLMIwHOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.811 [XNIO-1 task-2] QcFgRve9QGO6dbOLMIwHOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:46.823 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6ad5428b-6e09-464b-b92f-21e3f78ecc38 +07:00:46.840 [XNIO-1 task-2] dzOXxc0fQK-QWNvyI654_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ffcafb8e, base path is set to: null +07:00:46.840 [XNIO-1 task-2] dzOXxc0fQK-QWNvyI654_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.840 [XNIO-1 task-2] dzOXxc0fQK-QWNvyI654_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.840 [XNIO-1 task-2] dzOXxc0fQK-QWNvyI654_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ffcafb8e, base path is set to: null +07:00:46.840 [XNIO-1 task-2] dzOXxc0fQK-QWNvyI654_w DEBUG com.networknt.schema.TypeValidator debug - validate( "ffcafb8e", "ffcafb8e", serviceId) +07:00:46.847 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e150299f-eed8-4cd9-8752-1a8a9b818ca9 +07:00:46.857 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:93115c9e +07:00:46.860 [XNIO-1 task-2] X_M95AAERouRV8KDL2CqGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.860 [XNIO-1 task-2] X_M95AAERouRV8KDL2CqGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.861 [XNIO-1 task-2] X_M95AAERouRV8KDL2CqGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.883 [XNIO-1 task-2] o0UkjNoMQH2Rkhy2d6jMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.883 [XNIO-1 task-2] o0UkjNoMQH2Rkhy2d6jMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.883 [XNIO-1 task-2] o0UkjNoMQH2Rkhy2d6jMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.907 [XNIO-1 task-2] x0JngO9PQCCcNoKeRq2OOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.907 [XNIO-1 task-2] x0JngO9PQCCcNoKeRq2OOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.908 [XNIO-1 task-2] x0JngO9PQCCcNoKeRq2OOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.909 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:499cb88c +07:00:46.918 [XNIO-1 task-2] 0lHcvWj8STSuyjbGuQ_TZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2d9360f7, base path is set to: null +07:00:46.919 [XNIO-1 task-2] 0lHcvWj8STSuyjbGuQ_TZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.919 [XNIO-1 task-2] 0lHcvWj8STSuyjbGuQ_TZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.919 [XNIO-1 task-2] 0lHcvWj8STSuyjbGuQ_TZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2d9360f7, base path is set to: null +07:00:46.919 [XNIO-1 task-2] 0lHcvWj8STSuyjbGuQ_TZg DEBUG com.networknt.schema.TypeValidator debug - validate( "2d9360f7", "2d9360f7", serviceId) +07:00:46.933 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.933 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.934 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.934 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.934 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.935 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "7335e416-193f-44ca-a804-fbbb93f432f1", {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:46.935 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "32772cb1", {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:46.935 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.935 [XNIO-1 task-2] olLvZdE_TPOHZB506PaiCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32772cb1","serviceName":"663e31f5-2ebd-442f-b57e-efa77756","serviceDesc":"7335e416-193f-44ca-a804-fbbb93f432f1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.949 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.949 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.949 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.950 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.950 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:46.950 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9f7cfe94-a5a5-4be3-a79e-64186128a115", {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:46.950 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "94e2bb3c", {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:46.950 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:46.950 [XNIO-1 task-2] nQEZxmZZSHqdeTEUajU2UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"94e2bb3c","serviceName":"71aba744-6dea-411b-bf35-ff98cd7f","serviceDesc":"9f7cfe94-a5a5-4be3-a79e-64186128a115","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:46.967 [XNIO-1 task-2] GaZXNmRhTEyN7x5u24gI-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bc8b88b +07:00:46.967 [XNIO-1 task-2] GaZXNmRhTEyN7x5u24gI-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:46.967 [XNIO-1 task-2] GaZXNmRhTEyN7x5u24gI-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:46.968 [XNIO-1 task-2] GaZXNmRhTEyN7x5u24gI-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bc8b88b +07:00:46.969 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9bc8b88b +07:00:46.979 [XNIO-1 task-2] DCqWC3rWQLWd4scJ61YqYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f6e3188, base path is set to: null +07:00:46.979 [XNIO-1 task-2] DCqWC3rWQLWd4scJ61YqYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:46.979 [XNIO-1 task-2] DCqWC3rWQLWd4scJ61YqYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:46.979 [XNIO-1 task-2] DCqWC3rWQLWd4scJ61YqYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f6e3188, base path is set to: null +07:00:46.979 [XNIO-1 task-2] DCqWC3rWQLWd4scJ61YqYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2f6e3188", "2f6e3188", serviceId) +07:00:47.001 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.001 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.002 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.003 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.003 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.003 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "9a5b7640-ac19-4775-ba8d-1bd1a93eef0e", {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:47.003 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6f73d91", {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:47.003 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.003 [XNIO-1 task-2] jm03uqVjQH-xwaHy0t-hzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6f73d91","serviceName":"78083321-ee42-479f-b8a5-bf79cf84","serviceDesc":"9a5b7640-ac19-4775-ba8d-1bd1a93eef0e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.026 [XNIO-1 task-2] Nd3zZrNXQviwrok57_cm4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.026 [XNIO-1 task-2] Nd3zZrNXQviwrok57_cm4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.026 [XNIO-1 task-2] Nd3zZrNXQviwrok57_cm4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.026 [XNIO-1 task-2] Nd3zZrNXQviwrok57_cm4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.044 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.044 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.044 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.045 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.045 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.045 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f25e7fb9-63c3-41fc-80ad-dbcd32c8196c", {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:47.045 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "96082ece", {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:47.045 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.045 [XNIO-1 task-2] cOS2YuAvTQauJNpyMk61jQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"96082ece","serviceName":"7cf9b0d9-63ba-410e-8b9c-7df32b64","serviceDesc":"f25e7fb9-63c3-41fc-80ad-dbcd32c8196c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.060 [XNIO-1 task-2] kHmRKAfRSWC5JCrM6Jn4HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.060 [XNIO-1 task-2] kHmRKAfRSWC5JCrM6Jn4HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.060 [XNIO-1 task-2] kHmRKAfRSWC5JCrM6Jn4HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.062 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b23994a6 +07:00:47.078 [XNIO-1 task-2] FdehYOHgR9ad84GC32XFaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/32772cb1, base path is set to: null +07:00:47.078 [XNIO-1 task-2] FdehYOHgR9ad84GC32XFaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.078 [XNIO-1 task-2] FdehYOHgR9ad84GC32XFaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.078 [XNIO-1 task-2] FdehYOHgR9ad84GC32XFaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/32772cb1, base path is set to: null +07:00:47.079 [XNIO-1 task-2] FdehYOHgR9ad84GC32XFaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "32772cb1", "32772cb1", serviceId) +07:00:47.091 [XNIO-1 task-2] mUCrMpWzSwK0rDhv2hyL-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.091 [XNIO-1 task-2] mUCrMpWzSwK0rDhv2hyL-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.091 [XNIO-1 task-2] mUCrMpWzSwK0rDhv2hyL-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.091 [XNIO-1 task-2] mUCrMpWzSwK0rDhv2hyL-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.110 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.110 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.111 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.112 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.112 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.112 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c886449-3f42-4e29-bb64-987e35e698aa", {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:47.112 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG com.networknt.schema.TypeValidator debug - validate( "4de56de9", {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:47.112 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.112 [XNIO-1 task-2] yc_XmVQZQ-uLWopd5C7Erg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.127 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.127 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.128 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.128 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.128 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.129 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG com.networknt.schema.TypeValidator debug - validate( "237281f0-cf8b-489d-ab20-f8b77c453910", {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:47.129 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG com.networknt.schema.TypeValidator debug - validate( "499cb88c", {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:47.129 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.129 [XNIO-1 task-2] BLR3yxBXR1WRK-JJfroWjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.132 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:499cb88c +07:00:47.142 [XNIO-1 task-2] CXm8E2qITIGuuFV2k0xV6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.142 [XNIO-1 task-2] CXm8E2qITIGuuFV2k0xV6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.142 [XNIO-1 task-2] CXm8E2qITIGuuFV2k0xV6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.143 [XNIO-1 task-2] CXm8E2qITIGuuFV2k0xV6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.157 [XNIO-1 task-2] bkChJ7dNTJqLX_FyQPnKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/73790e32 +07:00:47.157 [XNIO-1 task-2] bkChJ7dNTJqLX_FyQPnKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.157 [XNIO-1 task-2] bkChJ7dNTJqLX_FyQPnKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.158 [XNIO-1 task-2] bkChJ7dNTJqLX_FyQPnKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/73790e32 +07:00:47.173 [XNIO-1 task-2] i3dZH04PSW-g9k51DAcOGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.173 [XNIO-1 task-2] i3dZH04PSW-g9k51DAcOGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.174 [XNIO-1 task-2] i3dZH04PSW-g9k51DAcOGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.190 [XNIO-1 task-2] HSOqrRPXTte55ue_DAmTSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b536850, base path is set to: null +07:00:47.190 [XNIO-1 task-2] HSOqrRPXTte55ue_DAmTSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.190 [XNIO-1 task-2] HSOqrRPXTte55ue_DAmTSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.190 [XNIO-1 task-2] HSOqrRPXTte55ue_DAmTSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b536850, base path is set to: null +07:00:47.192 [XNIO-1 task-2] HSOqrRPXTte55ue_DAmTSg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b536850", "8b536850", serviceId) +07:00:47.205 [XNIO-1 task-2] Jr-IFsLXRv6MDdVT2weC2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.205 [XNIO-1 task-2] Jr-IFsLXRv6MDdVT2weC2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.205 [XNIO-1 task-2] Jr-IFsLXRv6MDdVT2weC2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.205 [XNIO-1 task-2] Jr-IFsLXRv6MDdVT2weC2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.226 [XNIO-1 task-2] bTqyjtThSpWJmNqW2FHQug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.227 [XNIO-1 task-2] bTqyjtThSpWJmNqW2FHQug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.227 [XNIO-1 task-2] bTqyjtThSpWJmNqW2FHQug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.227 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:375668c8 +07:00:47.242 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.242 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.243 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.243 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.243 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.243 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.244 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.244 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG com.networknt.schema.TypeValidator debug - validate( "b793d8a7-6b5e-4511-b58b-cd96f315", {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.244 [XNIO-1 task-2] L9xNjhlYTSav-b83XnIsKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"71c90023","serviceName":"b793d8a7-6b5e-4511-b58b-cd96f315","serviceDesc":"681d5d57-f7b9-453b-821a-4fb196e533ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.271 [XNIO-1 task-2] eRouXDA4Svu73Ht2m0HYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.272 [XNIO-1 task-2] eRouXDA4Svu73Ht2m0HYHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.272 [XNIO-1 task-2] eRouXDA4Svu73Ht2m0HYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.273 [XNIO-1 task-2] eRouXDA4Svu73Ht2m0HYHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.298 [XNIO-1 task-2] JePQkSNWQzmUjtUSvi3pBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.298 [XNIO-1 task-2] JePQkSNWQzmUjtUSvi3pBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.299 [XNIO-1 task-2] JePQkSNWQzmUjtUSvi3pBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.318 [XNIO-1 task-2] _GIREvXoQNSlo9V6k5K75A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.318 [XNIO-1 task-2] _GIREvXoQNSlo9V6k5K75A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.319 [XNIO-1 task-2] _GIREvXoQNSlo9V6k5K75A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.344 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cfdbad64 +07:00:47.350 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cfdbad64 +07:00:47.367 [XNIO-1 task-2] C1LBMS1vQLGEwxNNk3kF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.368 [XNIO-1 task-2] C1LBMS1vQLGEwxNNk3kF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.368 [XNIO-1 task-2] C1LBMS1vQLGEwxNNk3kF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.387 [XNIO-1 task-2] OjLip5VPRreeeTr6LyJUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cd06974 +07:00:47.387 [XNIO-1 task-2] OjLip5VPRreeeTr6LyJUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.387 [XNIO-1 task-2] OjLip5VPRreeeTr6LyJUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.389 [XNIO-1 task-2] OjLip5VPRreeeTr6LyJUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cd06974 +07:00:47.392 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.393 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.393 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.395 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.395 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.395 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.395 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.395 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG com.networknt.schema.TypeValidator debug - validate( "091d408c-f3e1-429b-a514-6bbdbc41", {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.395 [XNIO-1 task-2] b2AXqGeESZiVSIgJmozkog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3cd06974","serviceName":"091d408c-f3e1-429b-a514-6bbdbc41","serviceDesc":"6daf502a-46b4-480c-a689-be6341bd7e03","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.410 [XNIO-1 task-2] C4g0obEXS8iwTfG6Y1RWqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/513b8a6c, base path is set to: null +07:00:47.410 [XNIO-1 task-2] C4g0obEXS8iwTfG6Y1RWqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.410 [XNIO-1 task-2] C4g0obEXS8iwTfG6Y1RWqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.411 [XNIO-1 task-2] C4g0obEXS8iwTfG6Y1RWqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/513b8a6c, base path is set to: null +07:00:47.411 [XNIO-1 task-2] C4g0obEXS8iwTfG6Y1RWqg DEBUG com.networknt.schema.TypeValidator debug - validate( "513b8a6c", "513b8a6c", serviceId) +07:00:47.416 [XNIO-1 task-2] 2pGXeVZaS0is7abJ0EjQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/513b8a6c +07:00:47.416 [XNIO-1 task-2] 2pGXeVZaS0is7abJ0EjQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.416 [XNIO-1 task-2] 2pGXeVZaS0is7abJ0EjQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.416 [XNIO-1 task-2] 2pGXeVZaS0is7abJ0EjQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/513b8a6c +07:00:47.434 [XNIO-1 task-2] fD42NLc8RDy20AC-yY2oJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/94e2bb3c, base path is set to: null +07:00:47.434 [XNIO-1 task-2] fD42NLc8RDy20AC-yY2oJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.434 [XNIO-1 task-2] fD42NLc8RDy20AC-yY2oJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.434 [XNIO-1 task-2] fD42NLc8RDy20AC-yY2oJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/94e2bb3c, base path is set to: null +07:00:47.434 [XNIO-1 task-2] fD42NLc8RDy20AC-yY2oJg DEBUG com.networknt.schema.TypeValidator debug - validate( "94e2bb3c", "94e2bb3c", serviceId) +07:00:47.449 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:02928f7d-aea3-4e58-b504-278405b4edaa +07:00:47.453 [XNIO-1 task-2] KNeO6BtkRG2YkJbdgQisdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/71c90023 +07:00:47.453 [XNIO-1 task-2] KNeO6BtkRG2YkJbdgQisdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.453 [XNIO-1 task-2] KNeO6BtkRG2YkJbdgQisdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.453 [XNIO-1 task-2] KNeO6BtkRG2YkJbdgQisdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/71c90023 +07:00:47.465 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cfdbad64 +07:00:47.469 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.469 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.470 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.470 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.470 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.471 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG com.networknt.schema.TypeValidator debug - validate( "fbdf8bae-346e-4f71-b46a-813936bc7a00", {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +07:00:47.471 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG com.networknt.schema.TypeValidator debug - validate( "37e272e3", {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +07:00:47.471 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +07:00:47.471 [XNIO-1 task-2] DVX29vvZTJa-dQhdkY43oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"37e272e3","serviceName":"67c94cdd-f4a4-4b24-b1af-a530d83b","serviceDesc":"fbdf8bae-346e-4f71-b46a-813936bc7a00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.480 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:375668c8 +07:00:47.483 [XNIO-1 task-2] Y_3zUyCcQta0vjAeZHFUUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6f73d91, base path is set to: null +07:00:47.483 [XNIO-1 task-2] Y_3zUyCcQta0vjAeZHFUUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.483 [XNIO-1 task-2] Y_3zUyCcQta0vjAeZHFUUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.483 [XNIO-1 task-2] Y_3zUyCcQta0vjAeZHFUUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6f73d91, base path is set to: null +07:00:47.484 [XNIO-1 task-2] Y_3zUyCcQta0vjAeZHFUUw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6f73d91", "e6f73d91", serviceId) +07:00:47.489 [XNIO-1 task-2] mm_fv5AXRviPk6lOfq52SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/96082ece +07:00:47.490 [XNIO-1 task-2] mm_fv5AXRviPk6lOfq52SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.490 [XNIO-1 task-2] mm_fv5AXRviPk6lOfq52SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.490 [XNIO-1 task-2] mm_fv5AXRviPk6lOfq52SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/96082ece +07:00:47.496 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.497 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.497 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.497 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.498 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.498 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.498 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.498 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG com.networknt.schema.TypeValidator debug - validate( "3de4152a-e719-4ee4-9854-98051ed2", {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.498 [XNIO-1 task-2] p4CwB5LyTjmgCSIZFUtoDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.499 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b23994a6 +07:00:47.516 [XNIO-1 task-2] s71VY4V8Spqe1edGoroYVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9f0a3d5d, base path is set to: null +07:00:47.516 [XNIO-1 task-2] s71VY4V8Spqe1edGoroYVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.516 [XNIO-1 task-2] s71VY4V8Spqe1edGoroYVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.516 [XNIO-1 task-2] s71VY4V8Spqe1edGoroYVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9f0a3d5d, base path is set to: null +07:00:47.517 [XNIO-1 task-2] s71VY4V8Spqe1edGoroYVA DEBUG com.networknt.schema.TypeValidator debug - validate( "9f0a3d5d", "9f0a3d5d", serviceId) +07:00:47.524 [XNIO-1 task-2] cqZ3Bhu_QO-uipGjQC14Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cd06974 +07:00:47.525 [XNIO-1 task-2] cqZ3Bhu_QO-uipGjQC14Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.525 [XNIO-1 task-2] cqZ3Bhu_QO-uipGjQC14Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.525 [XNIO-1 task-2] cqZ3Bhu_QO-uipGjQC14Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cd06974 +07:00:47.533 [XNIO-1 task-2] QlT-vkP3RU2_wDEbcrBbLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6f73d91, base path is set to: null +07:00:47.533 [XNIO-1 task-2] QlT-vkP3RU2_wDEbcrBbLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.533 [XNIO-1 task-2] QlT-vkP3RU2_wDEbcrBbLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.534 [XNIO-1 task-2] QlT-vkP3RU2_wDEbcrBbLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6f73d91, base path is set to: null +07:00:47.534 [XNIO-1 task-2] QlT-vkP3RU2_wDEbcrBbLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e6f73d91", "e6f73d91", serviceId) +07:00:47.537 [XNIO-1 task-2] Sku6bpniT4K7lWX_k7E03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/330d5c3d +07:00:47.537 [XNIO-1 task-2] Sku6bpniT4K7lWX_k7E03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.537 [XNIO-1 task-2] Sku6bpniT4K7lWX_k7E03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.537 [XNIO-1 task-2] Sku6bpniT4K7lWX_k7E03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/330d5c3d +07:00:47.543 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.544 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.544 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.545 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.545 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.545 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.545 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.545 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG com.networknt.schema.TypeValidator debug - validate( "ad05361b-be28-4a91-a00f-61576bc9", {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.545 [XNIO-1 task-2] MUw3tz0KTjmdDj-EkhDu6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"330d5c3d","serviceName":"ad05361b-be28-4a91-a00f-61576bc9","serviceDesc":"432fa80d-d25d-4523-a2bf-2cdd005828f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.559 [XNIO-1 task-2] QSGFvCmMSSmRX8ph19pd8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.560 [XNIO-1 task-2] QSGFvCmMSSmRX8ph19pd8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.561 [XNIO-1 task-2] QSGFvCmMSSmRX8ph19pd8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.561 [XNIO-1 task-2] QSGFvCmMSSmRX8ph19pd8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.585 [XNIO-1 task-2] 1eH3-B2YSRaFyHr5bZ8zYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.585 [XNIO-1 task-2] 1eH3-B2YSRaFyHr5bZ8zYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.585 [XNIO-1 task-2] 1eH3-B2YSRaFyHr5bZ8zYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.586 [XNIO-1 task-2] 1eH3-B2YSRaFyHr5bZ8zYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.601 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.601 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.601 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.602 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.603 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.603 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.603 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.603 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG com.networknt.schema.TypeValidator debug - validate( "3de4152a-e719-4ee4-9854-98051ed2", {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.603 [XNIO-1 task-2] krpmGVH9QnWOjsG4TvemdA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b23994a6","serviceName":"3de4152a-e719-4ee4-9854-98051ed2","serviceDesc":"ad8278d4-c2f3-48f5-99e7-4abdc9896a6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.603 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b23994a6 +07:00:47.615 [XNIO-1 task-2] pXwwaAIhT9q6zhrBgxIujw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4de56de9, base path is set to: null +07:00:47.615 [XNIO-1 task-2] pXwwaAIhT9q6zhrBgxIujw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.615 [XNIO-1 task-2] pXwwaAIhT9q6zhrBgxIujw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.615 [XNIO-1 task-2] pXwwaAIhT9q6zhrBgxIujw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4de56de9, base path is set to: null +07:00:47.615 [XNIO-1 task-2] pXwwaAIhT9q6zhrBgxIujw DEBUG com.networknt.schema.TypeValidator debug - validate( "4de56de9", "4de56de9", serviceId) +07:00:47.619 [XNIO-1 task-2] c36AuHaBSq2tQxAVyYUZTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4de56de9 +07:00:47.619 [XNIO-1 task-2] c36AuHaBSq2tQxAVyYUZTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.619 [XNIO-1 task-2] c36AuHaBSq2tQxAVyYUZTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.620 [XNIO-1 task-2] c36AuHaBSq2tQxAVyYUZTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4de56de9 +07:00:47.623 [XNIO-1 task-2] jZ0wVT6XTTKUfN5O6rXyxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.624 [XNIO-1 task-2] jZ0wVT6XTTKUfN5O6rXyxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.625 [XNIO-1 task-2] jZ0wVT6XTTKUfN5O6rXyxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.643 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.643 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.644 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.644 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.644 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.645 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.645 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.645 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fee0ebb1-20d6-4aac-b546-f93865c9", {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.645 [XNIO-1 task-2] K9NX4qOGSvORQXi-YLZ93Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4de56de9","serviceName":"fee0ebb1-20d6-4aac-b546-f93865c9","serviceDesc":"4c886449-3f42-4e29-bb64-987e35e698aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.657 [XNIO-1 task-2] 3mxtR97eQ_Or-cZ3OgF1zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.657 [XNIO-1 task-2] 3mxtR97eQ_Or-cZ3OgF1zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.658 [XNIO-1 task-2] 3mxtR97eQ_Or-cZ3OgF1zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.658 [XNIO-1 task-2] 3mxtR97eQ_Or-cZ3OgF1zw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.678 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.678 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.679 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.680 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.680 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.680 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.680 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.682 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG com.networknt.schema.TypeValidator debug - validate( "7ceb9b20-fad8-4c71-9bd9-1fc0bb12", {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.682 [XNIO-1 task-2] PqBC_by0SVOktOUgyJJinA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"93915ce3","serviceName":"7ceb9b20-fad8-4c71-9bd9-1fc0bb12","serviceDesc":"53b99dbf-1adf-4805-99e0-0aef14f2599c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.700 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.700 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.700 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.701 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.702 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.702 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +07:00:47.702 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +07:00:47.702 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b53f3c40-ec7a-4e50-b81a-ddf541af", {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +07:00:47.702 [XNIO-1 task-2] doebHoLNQl2R93KHa4ljQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"499cb88c","serviceName":"b53f3c40-ec7a-4e50-b81a-ddf541af","serviceDesc":"237281f0-cf8b-489d-ab20-f8b77c453910","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +07:00:47.703 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:499cb88c +07:00:47.715 [XNIO-1 task-2] cfmYBsiNSHGjPDVlJtsRAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.716 [XNIO-1 task-2] cfmYBsiNSHGjPDVlJtsRAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.716 [XNIO-1 task-2] cfmYBsiNSHGjPDVlJtsRAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.716 [XNIO-1 task-2] cfmYBsiNSHGjPDVlJtsRAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.730 [XNIO-1 task-2] BjneebVVTqez_wIBRPta0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93915ce3, base path is set to: null +07:00:47.730 [XNIO-1 task-2] BjneebVVTqez_wIBRPta0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.730 [XNIO-1 task-2] BjneebVVTqez_wIBRPta0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.730 [XNIO-1 task-2] BjneebVVTqez_wIBRPta0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93915ce3, base path is set to: null +07:00:47.731 [XNIO-1 task-2] BjneebVVTqez_wIBRPta0w DEBUG com.networknt.schema.TypeValidator debug - validate( "93915ce3", "93915ce3", serviceId) +07:00:47.735 [XNIO-1 task-2] NvhCeaGxQV6hWKdPLyli7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.735 [XNIO-1 task-2] NvhCeaGxQV6hWKdPLyli7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.735 [XNIO-1 task-2] NvhCeaGxQV6hWKdPLyli7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.735 [XNIO-1 task-2] NvhCeaGxQV6hWKdPLyli7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.752 [XNIO-1 task-2] lA45z0qETfO4in9IeRjmog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93915ce3 +07:00:47.752 [XNIO-1 task-2] lA45z0qETfO4in9IeRjmog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.752 [XNIO-1 task-2] lA45z0qETfO4in9IeRjmog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.753 [XNIO-1 task-2] lA45z0qETfO4in9IeRjmog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93915ce3 +07:00:47.757 [XNIO-1 task-2] 6rsrPmNeQi-_vEerBmUfwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.757 [XNIO-1 task-2] 6rsrPmNeQi-_vEerBmUfwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.758 [XNIO-1 task-2] 6rsrPmNeQi-_vEerBmUfwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.799 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bf3e000f-819c-41dc-89f6-25a87c108bb0 +07:00:47.800 [XNIO-1 task-2] rBPFHVHETLiyyIu6mI-eOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93915ce3, base path is set to: null +07:00:47.800 [XNIO-1 task-2] rBPFHVHETLiyyIu6mI-eOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.800 [XNIO-1 task-2] rBPFHVHETLiyyIu6mI-eOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.800 [XNIO-1 task-2] rBPFHVHETLiyyIu6mI-eOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93915ce3, base path is set to: null +07:00:47.800 [XNIO-1 task-2] rBPFHVHETLiyyIu6mI-eOw DEBUG com.networknt.schema.TypeValidator debug - validate( "93915ce3", "93915ce3", serviceId) +07:00:47.809 [XNIO-1 task-2] dBeuDgggQbqvXT1om70Hww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93915ce3 +07:00:47.810 [XNIO-1 task-2] dBeuDgggQbqvXT1om70Hww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.810 [XNIO-1 task-2] dBeuDgggQbqvXT1om70Hww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.810 [XNIO-1 task-2] dBeuDgggQbqvXT1om70Hww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93915ce3 +07:00:47.819 [XNIO-1 task-2] 98iDtsIxTzW2xNK4_OD4Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.822 [XNIO-1 task-2] 98iDtsIxTzW2xNK4_OD4Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.822 [XNIO-1 task-2] 98iDtsIxTzW2xNK4_OD4Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.822 [XNIO-1 task-2] 98iDtsIxTzW2xNK4_OD4Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.840 [XNIO-1 task-2] kUuaPo7uTf-fhyjT76VqhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b23994a6, base path is set to: null +07:00:47.840 [XNIO-1 task-2] kUuaPo7uTf-fhyjT76VqhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.840 [XNIO-1 task-2] kUuaPo7uTf-fhyjT76VqhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.840 [XNIO-1 task-2] kUuaPo7uTf-fhyjT76VqhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b23994a6, base path is set to: null +07:00:47.841 [XNIO-1 task-2] kUuaPo7uTf-fhyjT76VqhA DEBUG com.networknt.schema.TypeValidator debug - validate( "b23994a6", "b23994a6", serviceId) +07:00:47.845 [XNIO-1 task-2] psUB5LFoQpy429hCGavhVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93915ce3 +07:00:47.845 [XNIO-1 task-2] psUB5LFoQpy429hCGavhVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.845 [XNIO-1 task-2] psUB5LFoQpy429hCGavhVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.845 [XNIO-1 task-2] psUB5LFoQpy429hCGavhVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93915ce3 +07:00:47.849 [XNIO-1 task-2] YzPKjCr2Sd-aF8fWrLjb6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b23994a6, base path is set to: null +07:00:47.849 [XNIO-1 task-2] YzPKjCr2Sd-aF8fWrLjb6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.849 [XNIO-1 task-2] YzPKjCr2Sd-aF8fWrLjb6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.849 [XNIO-1 task-2] YzPKjCr2Sd-aF8fWrLjb6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b23994a6, base path is set to: null +07:00:47.849 [XNIO-1 task-2] YzPKjCr2Sd-aF8fWrLjb6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b23994a6", "b23994a6", serviceId) +07:00:47.852 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b23994a6 +07:00:47.859 [XNIO-1 task-2] pRmdqLZhSPGbQLzRUeLnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.859 [XNIO-1 task-2] pRmdqLZhSPGbQLzRUeLnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.859 [XNIO-1 task-2] pRmdqLZhSPGbQLzRUeLnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.859 [XNIO-1 task-2] pRmdqLZhSPGbQLzRUeLnfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.872 [XNIO-1 task-2] ZJSG4lZGShe2j0DEKoSTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.872 [XNIO-1 task-2] ZJSG4lZGShe2j0DEKoSTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.873 [XNIO-1 task-2] ZJSG4lZGShe2j0DEKoSTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.873 [XNIO-1 task-2] ZJSG4lZGShe2j0DEKoSTHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.888 [XNIO-1 task-2] c8d53eZITTGGq03TVZsByg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.888 [XNIO-1 task-2] c8d53eZITTGGq03TVZsByg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.889 [XNIO-1 task-2] c8d53eZITTGGq03TVZsByg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +07:00:47.905 [XNIO-1 task-2] JwlNXO79S2eFAfU4RvkK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93915ce3, base path is set to: null +07:00:47.905 [XNIO-1 task-2] JwlNXO79S2eFAfU4RvkK5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.905 [XNIO-1 task-2] JwlNXO79S2eFAfU4RvkK5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.905 [XNIO-1 task-2] JwlNXO79S2eFAfU4RvkK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93915ce3, base path is set to: null +07:00:47.906 [XNIO-1 task-2] JwlNXO79S2eFAfU4RvkK5g DEBUG com.networknt.schema.TypeValidator debug - validate( "93915ce3", "93915ce3", serviceId) +07:00:47.920 [XNIO-1 task-2] 5t_lP3T0QDOWVL5vMSjytQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.921 [XNIO-1 task-2] 5t_lP3T0QDOWVL5vMSjytQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.921 [XNIO-1 task-2] 5t_lP3T0QDOWVL5vMSjytQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.921 [XNIO-1 task-2] 5t_lP3T0QDOWVL5vMSjytQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.938 [XNIO-1 task-2] 4fJWvEm-ScaPUYSFOxCUDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4de56de9 +07:00:47.938 [XNIO-1 task-2] 4fJWvEm-ScaPUYSFOxCUDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +07:00:47.938 [XNIO-1 task-2] 4fJWvEm-ScaPUYSFOxCUDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +07:00:47.938 [XNIO-1 task-2] 4fJWvEm-ScaPUYSFOxCUDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4de56de9 +07:00:47.946 [XNIO-1 task-2] GopNgjTsRCOBvBdnamLWaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ba8b014b, base path is set to: null +07:00:47.946 [XNIO-1 task-2] GopNgjTsRCOBvBdnamLWaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.946 [XNIO-1 task-2] GopNgjTsRCOBvBdnamLWaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.947 [XNIO-1 task-2] GopNgjTsRCOBvBdnamLWaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ba8b014b, base path is set to: null +07:00:47.947 [XNIO-1 task-2] GopNgjTsRCOBvBdnamLWaw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba8b014b", "ba8b014b", serviceId) +07:00:47.959 [XNIO-1 task-2] gR48L2GdTP2KrchRLwyjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3cd06974, base path is set to: null +07:00:47.959 [XNIO-1 task-2] gR48L2GdTP2KrchRLwyjcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +07:00:47.960 [XNIO-1 task-2] gR48L2GdTP2KrchRLwyjcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +07:00:47.960 [XNIO-1 task-2] gR48L2GdTP2KrchRLwyjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3cd06974, base path is set to: null +07:00:47.960 [XNIO-1 task-2] gR48L2GdTP2KrchRLwyjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "3cd06974", "3cd06974", serviceId) +07:00:47.964 [XNIO-1 task-2] DocvRn-VQfKVG4zb90CFMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service diff --git a/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..37eced4 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3518 @@ +07:00:42.219 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.RsaUsingShaAlgorithm$RsaPssSha512 isAvailable - PS512 vai SHA512withRSAandMGF1 is NOT available from the underlying JCE (org.jose4j.lang.JoseException: Unable to get an implementation of algorithm name: SHA512withRSAandMGF1; caused by: java.security.NoSuchAlgorithmException: SHA512withRSAandMGF1 Signature not available). +07:00:42.219 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.jose4j.jwa.AlgorithmFactoryFactory initialize - JWS signature algorithms: [none, HS256, HS384, HS512, ES256, ES384, ES512, RS256, RS384, RS512] +07:00:42.226 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.RsaKeyManagementAlgorithm$RsaOaep@54cca950 registered for alg algorithm RSA-OAEP +07:00:42.250 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.DirectKeyManagementAlgorithm@65425245 registered for alg algorithm dir +07:00:42.252 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.AesKeyWrapManagementAlgorithm$Aes192@15af636a registered for alg algorithm A192KW +07:00:42.255 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.EcdhKeyAgreementAlgorithm@2919fd6f registered for alg algorithm ECDH-ES +07:00:42.257 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:20a7b66b +07:00:42.259 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:20a7b66b +07:00:42.260 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.EcdhKeyAgreementWithAesKeyWrapAlgorithm$EcdhKeyAgreementWithAes256KeyWrapAlgorithm@34f98945 registered for alg algorithm ECDH-ES+A256KW +07:00:42.277 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.Pbes2HmacShaWithAesKeyWrapAlgorithm$HmacSha384Aes192@ed065cb registered for alg algorithm PBES2-HS384+A192KW +07:00:42.295 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.AesGcmKeyEncryptionAlgorithm$Aes128Gcm@2a78e43f registered for alg algorithm A128GCMKW +07:00:42.296 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->KeyManagementAlgorithm registerAlgorithm - org.jose4j.jwe.AesGcmKeyEncryptionAlgorithm$Aes256Gcm@514f486e registered for alg algorithm A256GCMKW +07:00:42.297 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:20a7b66b +07:00:42.298 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->ContentEncryptionAlgorithm registerAlgorithm - org.jose4j.jwe.AesCbcHmacSha2ContentEncryptionAlgorithm$Aes128CbcHmacSha256@79386b00 registered for enc algorithm A128CBC-HS256 +07:00:42.299 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->ContentEncryptionAlgorithm registerAlgorithm - org.jose4j.jwe.AesCbcHmacSha2ContentEncryptionAlgorithm$Aes256CbcHmacSha512@654fec52 registered for enc algorithm A256CBC-HS512 +07:00:42.306 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.j.j.AlgorithmFactory->ContentEncryptionAlgorithm registerAlgorithm - org.jose4j.jwe.AesGcmContentEncryptionAlgorithm$Aes192Gcm@38610a1b registered for enc algorithm A192GCM +07:00:42.307 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.jose4j.jwa.AlgorithmFactoryFactory initialize - JWE content encryption algorithms: [A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM, A256GCM] +07:00:42.315 [XNIO-1 task-2] XMkDgMQOQaikMp0gpFxR3A DEBUG o.jose4j.jwa.AlgorithmFactoryFactory initialize - JWE compression algorithms: [DEF] +07:00:42.328 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d3bdc92a +07:00:42.351 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2ce0508b +07:00:42.365 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:20a7b66b +07:00:42.413 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:20a7b66b +07:00:42.445 [XNIO-1 task-4] QHNFdWfET4az5bWAiPLOTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.445 [XNIO-1 task-4] QHNFdWfET4az5bWAiPLOTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.445 [XNIO-1 task-4] QHNFdWfET4az5bWAiPLOTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.446 [XNIO-1 task-4] QHNFdWfET4az5bWAiPLOTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", authorization) +07:00:42.518 [XNIO-1 task-4] QHNFdWfET4az5bWAiPLOTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.561 [XNIO-1 task-5] qAp_tkUiRwiarFSoe80LgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.561 [XNIO-1 task-5] qAp_tkUiRwiarFSoe80LgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.584 [XNIO-1 task-5] qAp_tkUiRwiarFSoe80LgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.585 [XNIO-1 task-5] qAp_tkUiRwiarFSoe80LgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:42.630 [XNIO-1 task-6] 7fSX7PelQNSOWWM-o2pEzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.631 [XNIO-1 task-6] 7fSX7PelQNSOWWM-o2pEzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.635 [XNIO-1 task-6] 7fSX7PelQNSOWWM-o2pEzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.636 [XNIO-1 task-6] 7fSX7PelQNSOWWM-o2pEzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.636 [XNIO-1 task-6] 7fSX7PelQNSOWWM-o2pEzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:42.649 [XNIO-1 task-6] 7fSX7PelQNSOWWM-o2pEzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.657 [XNIO-1 task-6] JbJ8ix0MTVq-qRjC5xpoJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.659 [XNIO-1 task-6] JbJ8ix0MTVq-qRjC5xpoJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.662 [XNIO-1 task-6] JbJ8ix0MTVq-qRjC5xpoJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.663 [XNIO-1 task-6] JbJ8ix0MTVq-qRjC5xpoJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", authorization) +07:00:42.680 [XNIO-1 task-6] JbJ8ix0MTVq-qRjC5xpoJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.691 [XNIO-1 task-6] ygIw1ZRBStmbNgiUBzH7yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.691 [XNIO-1 task-6] ygIw1ZRBStmbNgiUBzH7yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.692 [XNIO-1 task-6] ygIw1ZRBStmbNgiUBzH7yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.693 [XNIO-1 task-6] ygIw1ZRBStmbNgiUBzH7yw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTllZDE5NzktYzVkNS00NDZkLWFlYzctNjg2MzY3NjAxYjI4OkVpQnRkYWxRUlppd19YTGlyRU9WTVE=", "Basic MTllZDE5NzktYzVkNS00NDZkLWFlYzctNjg2MzY3NjAxYjI4OkVpQnRkYWxRUlppd19YTGlyRU9WTVE=", authorization) +07:00:42.701 [XNIO-1 task-6] ygIw1ZRBStmbNgiUBzH7yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.710 [XNIO-1 task-6] FiXDF1zcQo-HIlHtdBDITQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.711 [XNIO-1 task-6] FiXDF1zcQo-HIlHtdBDITQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.711 [XNIO-1 task-6] FiXDF1zcQo-HIlHtdBDITQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.712 [XNIO-1 task-6] FiXDF1zcQo-HIlHtdBDITQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTllZDE5NzktYzVkNS00NDZkLWFlYzctNjg2MzY3NjAxYjI4OkVpQnRkYWxRUlppd19YTGlyRU9WTVE=", "Basic MTllZDE5NzktYzVkNS00NDZkLWFlYzctNjg2MzY3NjAxYjI4OkVpQnRkYWxRUlppd19YTGlyRU9WTVE=", authorization) +07:00:42.717 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:02e029d1-a225-48cb-b458-93ba1d259e6c +07:00:42.718 [XNIO-1 task-6] FiXDF1zcQo-HIlHtdBDITQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:42.763 [XNIO-1 task-5] gh3TiDOOR4eSJCfDYn_uuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.763 [XNIO-1 task-5] gh3TiDOOR4eSJCfDYn_uuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.763 [XNIO-1 task-5] gh3TiDOOR4eSJCfDYn_uuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.765 [XNIO-1 task-5] gh3TiDOOR4eSJCfDYn_uuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.767 [XNIO-1 task-5] gh3TiDOOR4eSJCfDYn_uuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:42.770 [XNIO-1 task-6] WYXF-KbQSqSAO0KR3AjJWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.770 [XNIO-1 task-6] WYXF-KbQSqSAO0KR3AjJWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.771 [XNIO-1 task-6] WYXF-KbQSqSAO0KR3AjJWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:42.772 [XNIO-1 task-5] gh3TiDOOR4eSJCfDYn_uuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.783 [XNIO-1 task-6] WYXF-KbQSqSAO0KR3AjJWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.802 [XNIO-1 task-5] UHA-kDz5QRe8gOjzQUQ3GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.803 [XNIO-1 task-5] UHA-kDz5QRe8gOjzQUQ3GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.803 [XNIO-1 task-5] UHA-kDz5QRe8gOjzQUQ3GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.805 [XNIO-1 task-5] UHA-kDz5QRe8gOjzQUQ3GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", authorization) +07:00:42.810 [XNIO-1 task-5] UHA-kDz5QRe8gOjzQUQ3GQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.821 [XNIO-1 task-5] Sy3nl0-CQPWc5VN_VC7JDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.822 [XNIO-1 task-5] Sy3nl0-CQPWc5VN_VC7JDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.822 [XNIO-1 task-5] Sy3nl0-CQPWc5VN_VC7JDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.823 [XNIO-1 task-5] Sy3nl0-CQPWc5VN_VC7JDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", authorization) +07:00:42.832 [XNIO-1 task-5] Sy3nl0-CQPWc5VN_VC7JDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.832 [XNIO-1 task-3] xIVUk6ueRTuT_QkdbXDotA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.832 [XNIO-1 task-3] xIVUk6ueRTuT_QkdbXDotA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.833 [XNIO-1 task-3] xIVUk6ueRTuT_QkdbXDotA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.834 [XNIO-1 task-3] xIVUk6ueRTuT_QkdbXDotA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:42.838 [XNIO-1 task-5] ynSq3fsLQliU_lUNt9LLKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.839 [XNIO-1 task-5] ynSq3fsLQliU_lUNt9LLKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.839 [XNIO-1 task-5] ynSq3fsLQliU_lUNt9LLKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.840 [XNIO-1 task-5] ynSq3fsLQliU_lUNt9LLKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", authorization) +07:00:42.846 [XNIO-1 task-5] ynSq3fsLQliU_lUNt9LLKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.850 [XNIO-1 task-3] xIVUk6ueRTuT_QkdbXDotA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:42.851 [XNIO-1 task-3] xIVUk6ueRTuT_QkdbXDotA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:42.852 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:20a7b66b +07:00:42.856 [XNIO-1 task-6] 9R72FYLtQM2moA4OuD-sdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.857 [XNIO-1 task-6] 9R72FYLtQM2moA4OuD-sdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.872 [XNIO-1 task-6] 9R72FYLtQM2moA4OuD-sdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.872 [XNIO-1 task-6] 9R72FYLtQM2moA4OuD-sdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:42.879 [XNIO-1 task-6] 9R72FYLtQM2moA4OuD-sdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:42.891 [XNIO-1 task-6] mvycV4WUQ6Oi5TVnex8euw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.891 [XNIO-1 task-6] mvycV4WUQ6Oi5TVnex8euw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.892 [XNIO-1 task-6] mvycV4WUQ6Oi5TVnex8euw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.893 [XNIO-1 task-3] _q9BofM6TXqfDUcPkbgUJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.893 [XNIO-1 task-3] _q9BofM6TXqfDUcPkbgUJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.893 [XNIO-1 task-6] mvycV4WUQ6Oi5TVnex8euw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 08cd00bc-23c7-4cfe-891f-b260e9761905 scope = null +07:00:42.894 [XNIO-1 task-3] _q9BofM6TXqfDUcPkbgUJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.896 [XNIO-1 task-3] _q9BofM6TXqfDUcPkbgUJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:42.902 [XNIO-1 task-3] _q9BofM6TXqfDUcPkbgUJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:42.904 [XNIO-1 task-5] QZRfYi5JS8KLy_arpi2c6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.904 [XNIO-1 task-5] QZRfYi5JS8KLy_arpi2c6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.908 [XNIO-1 task-5] QZRfYi5JS8KLy_arpi2c6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.909 [XNIO-1 task-5] QZRfYi5JS8KLy_arpi2c6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WaVBeSfEQqaPDyGsVwd8WQ redirectUri = http://localhost:8080/authorization +07:00:42.910 [XNIO-1 task-3] Y7a8ZkxWSJG7Dt-ReCMpQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.910 [XNIO-1 task-3] Y7a8ZkxWSJG7Dt-ReCMpQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.911 [XNIO-1 task-3] Y7a8ZkxWSJG7Dt-ReCMpQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.912 [XNIO-1 task-3] Y7a8ZkxWSJG7Dt-ReCMpQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:42.912 [XNIO-1 task-6] mvycV4WUQ6Oi5TVnex8euw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:42.917 [XNIO-1 task-3] Y7a8ZkxWSJG7Dt-ReCMpQg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:42.924 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:20a7b66b +07:00:42.928 [XNIO-1 task-3] m0E5DactSfCEkBmgcKPS8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.928 [XNIO-1 task-3] m0E5DactSfCEkBmgcKPS8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.928 [XNIO-1 task-3] m0E5DactSfCEkBmgcKPS8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.929 [XNIO-1 task-3] m0E5DactSfCEkBmgcKPS8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.931 [XNIO-1 task-3] m0E5DactSfCEkBmgcKPS8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", authorization) +07:00:42.939 [XNIO-1 task-3] m0E5DactSfCEkBmgcKPS8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.939 [XNIO-1 task-3] m0E5DactSfCEkBmgcKPS8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:42.950 [XNIO-1 task-6] kw_4Rcd9SfWG7HSCtpfZGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.950 [XNIO-1 task-6] kw_4Rcd9SfWG7HSCtpfZGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.951 [XNIO-1 task-6] kw_4Rcd9SfWG7HSCtpfZGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.951 [XNIO-1 task-6] kw_4Rcd9SfWG7HSCtpfZGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.951 [XNIO-1 task-3] MsLRfAZqT6yvHhXeXL8KWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.951 [XNIO-1 task-3] MsLRfAZqT6yvHhXeXL8KWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.951 [XNIO-1 task-3] MsLRfAZqT6yvHhXeXL8KWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:42.952 [XNIO-1 task-3] MsLRfAZqT6yvHhXeXL8KWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:42.959 [XNIO-1 task-6] kw_4Rcd9SfWG7HSCtpfZGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.966 [XNIO-1 task-6] vGv-J5nNRPC2W04miHw-Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.967 [XNIO-1 task-6] vGv-J5nNRPC2W04miHw-Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.967 [XNIO-1 task-6] vGv-J5nNRPC2W04miHw-Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.968 [XNIO-1 task-6] vGv-J5nNRPC2W04miHw-Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", authorization) +07:00:42.969 [XNIO-1 task-6] vGv-J5nNRPC2W04miHw-Ag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:42.977 [XNIO-1 task-6] vGv-J5nNRPC2W04miHw-Ag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:42.984 [XNIO-1 task-6] CIvqohrbQ1mkh242gImoSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.985 [XNIO-1 task-6] CIvqohrbQ1mkh242gImoSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:42.985 [XNIO-1 task-6] CIvqohrbQ1mkh242gImoSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:42.987 [XNIO-1 task-6] CIvqohrbQ1mkh242gImoSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", authorization) +07:00:42.993 [XNIO-1 task-6] CIvqohrbQ1mkh242gImoSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.003 [XNIO-1 task-6] B5DDTEQbS72cLt8s2VvoyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.003 [XNIO-1 task-6] B5DDTEQbS72cLt8s2VvoyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.004 [XNIO-1 task-6] B5DDTEQbS72cLt8s2VvoyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.004 [XNIO-1 task-6] B5DDTEQbS72cLt8s2VvoyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", authorization) +07:00:43.010 [XNIO-1 task-6] B5DDTEQbS72cLt8s2VvoyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.013 [XNIO-1 task-3] XniVm2mDTxuj939u6Fix3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.013 [XNIO-1 task-3] XniVm2mDTxuj939u6Fix3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.014 [XNIO-1 task-3] XniVm2mDTxuj939u6Fix3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.014 [XNIO-1 task-3] XniVm2mDTxuj939u6Fix3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:43.016 [XNIO-1 task-6] vttfdDzJRm-NAXhZUmSKDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.017 [XNIO-1 task-6] vttfdDzJRm-NAXhZUmSKDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.017 [XNIO-1 task-6] vttfdDzJRm-NAXhZUmSKDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.017 [XNIO-1 task-6] vttfdDzJRm-NAXhZUmSKDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.024 [XNIO-1 task-6] vttfdDzJRm-NAXhZUmSKDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.038 [XNIO-1 task-6] CuQys99vT-yCRaWLZeMzDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.039 [XNIO-1 task-6] CuQys99vT-yCRaWLZeMzDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.039 [XNIO-1 task-6] CuQys99vT-yCRaWLZeMzDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.040 [XNIO-1 task-6] CuQys99vT-yCRaWLZeMzDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", authorization) +07:00:43.046 [XNIO-1 task-6] CuQys99vT-yCRaWLZeMzDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.052 [XNIO-1 task-6] wLJY2X-UTQCYaIRaLbeecQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.052 [XNIO-1 task-6] wLJY2X-UTQCYaIRaLbeecQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.052 [XNIO-1 task-6] wLJY2X-UTQCYaIRaLbeecQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.053 [XNIO-1 task-6] wLJY2X-UTQCYaIRaLbeecQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", authorization) +07:00:43.057 [XNIO-1 task-3] XniVm2mDTxuj939u6Fix3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.058 [XNIO-1 task-6] wLJY2X-UTQCYaIRaLbeecQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.072 [XNIO-1 task-6] i2SUVoFOTPOCJK5bV0JN9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.072 [XNIO-1 task-6] i2SUVoFOTPOCJK5bV0JN9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.072 [XNIO-1 task-6] i2SUVoFOTPOCJK5bV0JN9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.073 [XNIO-1 task-6] i2SUVoFOTPOCJK5bV0JN9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", "Basic ZDFjOWIzYjMtMWJhOC00MGZkLTkyZDEtM2ZlYTNiNTRkNmNlOlFabjJWX1ByU1RLTmRpdzZvaDZKdkE=", authorization) +07:00:43.078 [XNIO-1 task-6] i2SUVoFOTPOCJK5bV0JN9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.078 [XNIO-1 task-3] sP61pB1lRIKWNAzddwcXNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.078 [XNIO-1 task-3] sP61pB1lRIKWNAzddwcXNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.079 [XNIO-1 task-3] sP61pB1lRIKWNAzddwcXNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.085 [XNIO-1 task-6] ukk78970TIKYIGdjU4O4LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.086 [XNIO-1 task-6] ukk78970TIKYIGdjU4O4LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.087 [XNIO-1 task-3] sP61pB1lRIKWNAzddwcXNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:43.087 [XNIO-1 task-6] ukk78970TIKYIGdjU4O4LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.087 [XNIO-1 task-6] ukk78970TIKYIGdjU4O4LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTllZDE5NzktYzVkNS00NDZkLWFlYzctNjg2MzY3NjAxYjI4OkVpQnRkYWxRUlppd19YTGlyRU9WTVE=", "Basic MTllZDE5NzktYzVkNS00NDZkLWFlYzctNjg2MzY3NjAxYjI4OkVpQnRkYWxRUlppd19YTGlyRU9WTVE=", authorization) +07:00:43.092 [XNIO-1 task-6] ukk78970TIKYIGdjU4O4LQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.097 [XNIO-1 task-6] MuGiOrS6QrSBv0QnW4zJMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.098 [XNIO-1 task-6] MuGiOrS6QrSBv0QnW4zJMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.098 [XNIO-1 task-6] MuGiOrS6QrSBv0QnW4zJMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.099 [XNIO-1 task-6] MuGiOrS6QrSBv0QnW4zJMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", authorization) +07:00:43.100 [XNIO-1 task-3] sP61pB1lRIKWNAzddwcXNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.105 [XNIO-1 task-6] MuGiOrS6QrSBv0QnW4zJMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.110 [XNIO-1 task-6] X60tDjgpST6v3gDdbDzXtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.110 [XNIO-1 task-6] X60tDjgpST6v3gDdbDzXtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.111 [XNIO-1 task-6] X60tDjgpST6v3gDdbDzXtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.111 [XNIO-1 task-6] X60tDjgpST6v3gDdbDzXtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", authorization) +07:00:43.118 [XNIO-1 task-6] X60tDjgpST6v3gDdbDzXtQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.126 [XNIO-1 task-6] PJgqf4DkTLO_h2-UZNi2RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.126 [XNIO-1 task-6] PJgqf4DkTLO_h2-UZNi2RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.127 [XNIO-1 task-6] PJgqf4DkTLO_h2-UZNi2RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.127 [XNIO-1 task-6] PJgqf4DkTLO_h2-UZNi2RA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:43.135 [XNIO-1 task-6] PJgqf4DkTLO_h2-UZNi2RA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.141 [XNIO-1 task-6] ouLMGljJTPCOq_PfburtUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.141 [XNIO-1 task-6] ouLMGljJTPCOq_PfburtUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.141 [XNIO-1 task-6] ouLMGljJTPCOq_PfburtUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.142 [XNIO-1 task-6] ouLMGljJTPCOq_PfburtUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:43.147 [XNIO-1 task-6] ouLMGljJTPCOq_PfburtUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.154 [XNIO-1 task-6] pVwWU-5XTE6tf0h5hjTVLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.154 [XNIO-1 task-6] pVwWU-5XTE6tf0h5hjTVLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.155 [XNIO-1 task-6] pVwWU-5XTE6tf0h5hjTVLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.156 [XNIO-1 task-6] pVwWU-5XTE6tf0h5hjTVLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", authorization) +07:00:43.157 [XNIO-1 task-5] kNo15KjwSZ-baMFTFWWdMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.158 [XNIO-1 task-5] kNo15KjwSZ-baMFTFWWdMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.158 [XNIO-1 task-5] kNo15KjwSZ-baMFTFWWdMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.159 [XNIO-1 task-5] kNo15KjwSZ-baMFTFWWdMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.162 [XNIO-1 task-6] pVwWU-5XTE6tf0h5hjTVLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.168 [XNIO-1 task-5] kNo15KjwSZ-baMFTFWWdMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:43.169 [XNIO-1 task-5] kNo15KjwSZ-baMFTFWWdMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.178 [XNIO-1 task-3] nPFQS1GDSgmOFr-0Y07wSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.178 [XNIO-1 task-3] nPFQS1GDSgmOFr-0Y07wSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.179 [XNIO-1 task-3] nPFQS1GDSgmOFr-0Y07wSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.180 [XNIO-1 task-3] nPFQS1GDSgmOFr-0Y07wSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.185 [XNIO-1 task-5] QP9J_LfNTwuYB2xGKkUdFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.185 [XNIO-1 task-5] QP9J_LfNTwuYB2xGKkUdFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.185 [XNIO-1 task-5] QP9J_LfNTwuYB2xGKkUdFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.186 [XNIO-1 task-5] QP9J_LfNTwuYB2xGKkUdFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4b0e8857-a50b-48a4-9808-d86b0ba71ec1 scope = null +07:00:43.188 [XNIO-1 task-3] nPFQS1GDSgmOFr-0Y07wSg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.195 [XNIO-1 task-3] pBHG4NNlSc2ckeJyIKx8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.195 [XNIO-1 task-3] pBHG4NNlSc2ckeJyIKx8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.195 [XNIO-1 task-3] pBHG4NNlSc2ckeJyIKx8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.196 [XNIO-1 task-3] pBHG4NNlSc2ckeJyIKx8AA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.204 [XNIO-1 task-3] pBHG4NNlSc2ckeJyIKx8AA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.209 [XNIO-1 task-3] xMSVWzKVQhasN2I2wnm9ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.209 [XNIO-1 task-3] xMSVWzKVQhasN2I2wnm9ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.210 [XNIO-1 task-3] xMSVWzKVQhasN2I2wnm9ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.212 [XNIO-1 task-3] xMSVWzKVQhasN2I2wnm9ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.218 [XNIO-1 task-3] xMSVWzKVQhasN2I2wnm9ig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.227 [XNIO-1 task-3] qMn4_M0tTd6-55aiQ2NGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.228 [XNIO-1 task-3] qMn4_M0tTd6-55aiQ2NGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.228 [XNIO-1 task-3] qMn4_M0tTd6-55aiQ2NGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.229 [XNIO-1 task-5] QP9J_LfNTwuYB2xGKkUdFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.229 [XNIO-1 task-5] QP9J_LfNTwuYB2xGKkUdFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.231 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:43.235 [XNIO-1 task-3] qMn4_M0tTd6-55aiQ2NGpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.235 [XNIO-1 task-6] eLIVekA9SJSstHEdGyAk9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.235 [XNIO-1 task-6] eLIVekA9SJSstHEdGyAk9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.236 [XNIO-1 task-6] eLIVekA9SJSstHEdGyAk9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.236 [XNIO-1 task-6] eLIVekA9SJSstHEdGyAk9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:43.243 [XNIO-1 task-3] U-HK0G2HR5SsTmvfjaVTnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.243 [XNIO-1 task-3] U-HK0G2HR5SsTmvfjaVTnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.243 [XNIO-1 task-3] U-HK0G2HR5SsTmvfjaVTnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.244 [XNIO-1 task-3] U-HK0G2HR5SsTmvfjaVTnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.250 [XNIO-1 task-3] U-HK0G2HR5SsTmvfjaVTnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.257 [XNIO-1 task-3] z9EhDZnNRHa8Qd3SvapIiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.257 [XNIO-1 task-3] z9EhDZnNRHa8Qd3SvapIiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.258 [XNIO-1 task-3] z9EhDZnNRHa8Qd3SvapIiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.258 [XNIO-1 task-3] z9EhDZnNRHa8Qd3SvapIiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.266 [XNIO-1 task-3] z9EhDZnNRHa8Qd3SvapIiA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.272 [XNIO-1 task-3] zVs2eXq4SvmEGtyiT04eLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.272 [XNIO-1 task-3] zVs2eXq4SvmEGtyiT04eLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.272 [XNIO-1 task-3] zVs2eXq4SvmEGtyiT04eLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.273 [XNIO-1 task-3] zVs2eXq4SvmEGtyiT04eLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.278 [XNIO-1 task-3] zVs2eXq4SvmEGtyiT04eLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.286 [XNIO-1 task-6] eLIVekA9SJSstHEdGyAk9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:43.286 [XNIO-1 task-6] eLIVekA9SJSstHEdGyAk9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.291 [XNIO-1 task-5] A3Q5GwJDQKarRaq2dkCgAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.291 [XNIO-1 task-5] A3Q5GwJDQKarRaq2dkCgAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.292 [XNIO-1 task-5] A3Q5GwJDQKarRaq2dkCgAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.292 [XNIO-1 task-5] A3Q5GwJDQKarRaq2dkCgAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.299 [XNIO-1 task-5] A3Q5GwJDQKarRaq2dkCgAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.304 [XNIO-1 task-3] GqIIna8ySpCKyJULt36tLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.304 [XNIO-1 task-3] GqIIna8ySpCKyJULt36tLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.304 [XNIO-1 task-3] GqIIna8ySpCKyJULt36tLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.305 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:43.306 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:43.309 [XNIO-1 task-5] lQFzTfDKQB2_ay-OSysWaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.309 [XNIO-1 task-5] lQFzTfDKQB2_ay-OSysWaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.310 [XNIO-1 task-5] lQFzTfDKQB2_ay-OSysWaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.310 [XNIO-1 task-5] lQFzTfDKQB2_ay-OSysWaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", "Basic Mjc4NzRlMjYtMzJiMi00MDljLWE2ZGMtY2M1MjFjMjI5MjdkOlBILXYwZ2Z2U1FpaV9mR0VCSFdKYkE=", authorization) +07:00:43.317 [XNIO-1 task-5] lQFzTfDKQB2_ay-OSysWaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.319 [XNIO-1 task-3] GqIIna8ySpCKyJULt36tLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.322 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:856b19ca-4ee3-447f-9225-62a9957fcfd4 +07:00:43.325 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:856b19ca-4ee3-447f-9225-62a9957fcfd4 +07:00:43.329 [XNIO-1 task-5] Bxk9pcTASxOmG8rD_Xs8IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.329 [XNIO-1 task-5] Bxk9pcTASxOmG8rD_Xs8IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.330 [XNIO-1 task-5] Bxk9pcTASxOmG8rD_Xs8IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.330 [XNIO-1 task-5] Bxk9pcTASxOmG8rD_Xs8IQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.338 [XNIO-1 task-5] Bxk9pcTASxOmG8rD_Xs8IQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.348 [XNIO-1 task-5] TowgMiXISoGFPWbj7pxOfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.348 [XNIO-1 task-5] TowgMiXISoGFPWbj7pxOfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.357 [XNIO-1 task-3] QCisJz9iQrSRtK4tBaK4sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.357 [XNIO-1 task-3] QCisJz9iQrSRtK4tBaK4sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.358 [XNIO-1 task-3] QCisJz9iQrSRtK4tBaK4sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.358 [XNIO-1 task-3] QCisJz9iQrSRtK4tBaK4sQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = o8zFqKrSTtS5iIAmiN-ZGQ redirectUri = http://localhost:8080/authorization +07:00:43.361 [XNIO-1 task-5] TowgMiXISoGFPWbj7pxOfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.361 [XNIO-1 task-5] TowgMiXISoGFPWbj7pxOfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.372 [XNIO-1 task-3] QCisJz9iQrSRtK4tBaK4sQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.372 [XNIO-1 task-5] TowgMiXISoGFPWbj7pxOfQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.379 [XNIO-1 task-5] Xc1zSMdoQj-B8X4hMC_ClA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.379 [XNIO-1 task-5] Xc1zSMdoQj-B8X4hMC_ClA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.380 [XNIO-1 task-5] Xc1zSMdoQj-B8X4hMC_ClA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.380 [XNIO-1 task-5] Xc1zSMdoQj-B8X4hMC_ClA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.385 [XNIO-1 task-5] Xc1zSMdoQj-B8X4hMC_ClA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.392 [XNIO-1 task-5] o3BYN1OMQVKulZRoSQnKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.393 [XNIO-1 task-5] o3BYN1OMQVKulZRoSQnKCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.393 [XNIO-1 task-5] o3BYN1OMQVKulZRoSQnKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.394 [XNIO-1 task-5] o3BYN1OMQVKulZRoSQnKCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.399 [XNIO-1 task-5] o3BYN1OMQVKulZRoSQnKCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.404 [XNIO-1 task-5] nPhjjvuyTsu7X_GBbk1mzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.404 [XNIO-1 task-5] nPhjjvuyTsu7X_GBbk1mzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.405 [XNIO-1 task-5] nPhjjvuyTsu7X_GBbk1mzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.405 [XNIO-1 task-5] nPhjjvuyTsu7X_GBbk1mzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.406 [XNIO-1 task-6] nA4j7p9BSYyGgTNteJtfDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.408 [XNIO-1 task-6] nA4j7p9BSYyGgTNteJtfDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.413 [XNIO-1 task-5] nPhjjvuyTsu7X_GBbk1mzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.414 [XNIO-1 task-6] nA4j7p9BSYyGgTNteJtfDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.415 [XNIO-1 task-6] nA4j7p9BSYyGgTNteJtfDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:43.419 [XNIO-1 task-5] TgeYBPemTWeddDYCd6aN5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.420 [XNIO-1 task-5] TgeYBPemTWeddDYCd6aN5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.420 [XNIO-1 task-5] TgeYBPemTWeddDYCd6aN5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.421 [XNIO-1 task-5] TgeYBPemTWeddDYCd6aN5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", authorization) +07:00:43.426 [XNIO-1 task-5] TgeYBPemTWeddDYCd6aN5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.435 [XNIO-1 task-5] tODK6ciDRHChyTLiiBALVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.435 [XNIO-1 task-5] tODK6ciDRHChyTLiiBALVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.435 [XNIO-1 task-5] tODK6ciDRHChyTLiiBALVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.436 [XNIO-1 task-5] tODK6ciDRHChyTLiiBALVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", authorization) +07:00:43.441 [XNIO-1 task-5] tODK6ciDRHChyTLiiBALVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.449 [XNIO-1 task-5] i2m1I_OAQe-ENLrBHppeRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.449 [XNIO-1 task-5] i2m1I_OAQe-ENLrBHppeRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.449 [XNIO-1 task-3] 3BF9X-ygRGyDceb3zVu2Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.449 [XNIO-1 task-3] 3BF9X-ygRGyDceb3zVu2Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.450 [XNIO-1 task-3] 3BF9X-ygRGyDceb3zVu2Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.450 [XNIO-1 task-3] 3BF9X-ygRGyDceb3zVu2Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", "Basic NGUzZjBkNmYtMDA2Yy00ZTcyLWE1ZDMtODUyYjhmZWY4OTFmOlBGZHFRWW9MUUlhZnVCakRWSXY0WGc=", authorization) +07:00:43.450 [XNIO-1 task-3] 3BF9X-ygRGyDceb3zVu2Xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.451 [XNIO-1 task-5] i2m1I_OAQe-ENLrBHppeRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:43.455 [XNIO-1 task-3] 3BF9X-ygRGyDceb3zVu2Xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.458 [XNIO-1 task-5] i2m1I_OAQe-ENLrBHppeRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:43.458 [XNIO-1 task-5] i2m1I_OAQe-ENLrBHppeRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.462 [XNIO-1 task-3] 35dHj7jXT36x8zMurHNeYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.462 [XNIO-1 task-3] 35dHj7jXT36x8zMurHNeYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.462 [XNIO-1 task-3] 35dHj7jXT36x8zMurHNeYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.463 [XNIO-1 task-3] 35dHj7jXT36x8zMurHNeYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.472 [XNIO-1 task-3] 35dHj7jXT36x8zMurHNeYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.479 [XNIO-1 task-3] pVPXLiJmQoaC-ozlditFDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.479 [XNIO-1 task-3] pVPXLiJmQoaC-ozlditFDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.480 [XNIO-1 task-3] pVPXLiJmQoaC-ozlditFDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.482 [XNIO-1 task-6] nA4j7p9BSYyGgTNteJtfDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:43.483 [XNIO-1 task-6] nA4j7p9BSYyGgTNteJtfDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.491 [XNIO-1 task-3] pVPXLiJmQoaC-ozlditFDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.498 [XNIO-1 task-5] IB2FRhlqR_2xdgPeYmfK5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.499 [XNIO-1 task-5] IB2FRhlqR_2xdgPeYmfK5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.499 [XNIO-1 task-3] ZegdAJ8KTDCFkAGZcMIbmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.499 [XNIO-1 task-3] ZegdAJ8KTDCFkAGZcMIbmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.499 [XNIO-1 task-3] ZegdAJ8KTDCFkAGZcMIbmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.500 [XNIO-1 task-5] IB2FRhlqR_2xdgPeYmfK5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.500 [XNIO-1 task-5] IB2FRhlqR_2xdgPeYmfK5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:43.500 [XNIO-1 task-3] ZegdAJ8KTDCFkAGZcMIbmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:43.502 [XNIO-1 task-6] sYQRZjWIQJGF2c5-fKvhNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.503 [XNIO-1 task-6] sYQRZjWIQJGF2c5-fKvhNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.503 [XNIO-1 task-6] sYQRZjWIQJGF2c5-fKvhNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.503 [XNIO-1 task-6] sYQRZjWIQJGF2c5-fKvhNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:43.506 [XNIO-1 task-3] ZegdAJ8KTDCFkAGZcMIbmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.511 [XNIO-1 task-3] 7RZRee1FSNeqXboyy7vIGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.512 [XNIO-1 task-3] 7RZRee1FSNeqXboyy7vIGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.512 [XNIO-1 task-3] 7RZRee1FSNeqXboyy7vIGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.512 [XNIO-1 task-3] 7RZRee1FSNeqXboyy7vIGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:43.515 [XNIO-1 task-5] IB2FRhlqR_2xdgPeYmfK5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:43.517 [XNIO-1 task-5] IB2FRhlqR_2xdgPeYmfK5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.519 [XNIO-1 task-3] 7RZRee1FSNeqXboyy7vIGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.521 [XNIO-1 task-6] sYQRZjWIQJGF2c5-fKvhNQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.524 [XNIO-1 task-3] sn21gWDbQjmxK8zuvbid3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.525 [XNIO-1 task-3] sn21gWDbQjmxK8zuvbid3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.526 [XNIO-1 task-3] sn21gWDbQjmxK8zuvbid3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.532 [XNIO-1 task-3] sn21gWDbQjmxK8zuvbid3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.537 [XNIO-1 task-3] sn21gWDbQjmxK8zuvbid3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.530 [XNIO-1 task-5] WKjSN4uORaCBzpdNbh5YBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.543 [XNIO-1 task-5] WKjSN4uORaCBzpdNbh5YBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.543 [XNIO-1 task-3] DQisMwX8RdKPtQAwegTzFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.543 [XNIO-1 task-5] WKjSN4uORaCBzpdNbh5YBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.543 [XNIO-1 task-3] DQisMwX8RdKPtQAwegTzFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.543 [XNIO-1 task-5] WKjSN4uORaCBzpdNbh5YBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.544 [XNIO-1 task-5] WKjSN4uORaCBzpdNbh5YBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5e4171fe-54c3-40f6-9b1f-1f9f7956aaf7 scope = null +07:00:43.548 [XNIO-1 task-3] DQisMwX8RdKPtQAwegTzFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.555 [XNIO-1 task-6] gZcOFkfZQUqXhg2uXTKbHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.555 [XNIO-1 task-3] DQisMwX8RdKPtQAwegTzFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.555 [XNIO-1 task-6] gZcOFkfZQUqXhg2uXTKbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.556 [XNIO-1 task-6] gZcOFkfZQUqXhg2uXTKbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.557 [XNIO-1 task-6] gZcOFkfZQUqXhg2uXTKbHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 34a98405-eaad-49c2-bdb3-8f6cedeb43cc scope = null +07:00:43.561 [XNIO-1 task-3] YHOB5TYiQNSAgeDRSVDbDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.561 [XNIO-1 task-3] YHOB5TYiQNSAgeDRSVDbDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.562 [XNIO-1 task-3] YHOB5TYiQNSAgeDRSVDbDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.562 [XNIO-1 task-3] YHOB5TYiQNSAgeDRSVDbDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.568 [XNIO-1 task-6] gZcOFkfZQUqXhg2uXTKbHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.568 [XNIO-1 task-5] WKjSN4uORaCBzpdNbh5YBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.571 [XNIO-1 task-3] YHOB5TYiQNSAgeDRSVDbDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.580 [XNIO-1 task-3] eD66iRpNSqeLBIxW8Gfrvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.580 [XNIO-1 task-3] eD66iRpNSqeLBIxW8Gfrvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.580 [XNIO-1 task-3] eD66iRpNSqeLBIxW8Gfrvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.587 [XNIO-1 task-3] eD66iRpNSqeLBIxW8Gfrvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.592 [XNIO-1 task-3] eD66iRpNSqeLBIxW8Gfrvw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.601 [XNIO-1 task-3] cu3TpsAIRKq5L8s2OQcE8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.601 [XNIO-1 task-3] cu3TpsAIRKq5L8s2OQcE8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.601 [XNIO-1 task-3] cu3TpsAIRKq5L8s2OQcE8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.602 [XNIO-1 task-3] cu3TpsAIRKq5L8s2OQcE8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.609 [XNIO-1 task-3] cu3TpsAIRKq5L8s2OQcE8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.614 [XNIO-1 task-3] zGZvRf4_QamTWV9bkZqwsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.614 [XNIO-1 task-3] zGZvRf4_QamTWV9bkZqwsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.614 [XNIO-1 task-3] zGZvRf4_QamTWV9bkZqwsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.615 [XNIO-1 task-3] zGZvRf4_QamTWV9bkZqwsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7d453acb-4a6b-45fa-ae89-69373a22e73d scope = null +07:00:43.615 [XNIO-1 task-5] qa3hKl61TkCmp4yCjVPFjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.615 [XNIO-1 task-5] qa3hKl61TkCmp4yCjVPFjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.616 [XNIO-1 task-5] qa3hKl61TkCmp4yCjVPFjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.616 [XNIO-1 task-5] qa3hKl61TkCmp4yCjVPFjw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.623 [XNIO-1 task-5] qa3hKl61TkCmp4yCjVPFjw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.626 [XNIO-1 task-3] zGZvRf4_QamTWV9bkZqwsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.631 [XNIO-1 task-5] MFm-U-e_R7-hyLJBxiG9XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.631 [XNIO-1 task-5] MFm-U-e_R7-hyLJBxiG9XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.632 [XNIO-1 task-5] MFm-U-e_R7-hyLJBxiG9XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.633 [XNIO-1 task-5] MFm-U-e_R7-hyLJBxiG9XQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.634 [XNIO-1 task-6] K3N7zNdOQtGZ1G5hHComGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.634 [XNIO-1 task-6] K3N7zNdOQtGZ1G5hHComGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.635 [XNIO-1 task-6] K3N7zNdOQtGZ1G5hHComGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.635 [XNIO-1 task-6] K3N7zNdOQtGZ1G5hHComGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = aoWtlMZRSUSFt6mFAib_BQ redirectUri = http://localhost:8080/authorization +07:00:43.639 [XNIO-1 task-5] MFm-U-e_R7-hyLJBxiG9XQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.647 [XNIO-1 task-5] AM3RqYMOQuqjS4uk-ft44A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.647 [XNIO-1 task-5] AM3RqYMOQuqjS4uk-ft44A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.647 [XNIO-1 task-5] AM3RqYMOQuqjS4uk-ft44A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.648 [XNIO-1 task-5] AM3RqYMOQuqjS4uk-ft44A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:43.648 [XNIO-1 task-6] K3N7zNdOQtGZ1G5hHComGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.654 [XNIO-1 task-5] AM3RqYMOQuqjS4uk-ft44A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.660 [XNIO-1 task-5] 0NfCoQ0NRR6VkJrEMJfOPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.660 [XNIO-1 task-5] 0NfCoQ0NRR6VkJrEMJfOPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.661 [XNIO-1 task-5] 0NfCoQ0NRR6VkJrEMJfOPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.663 [XNIO-1 task-5] 0NfCoQ0NRR6VkJrEMJfOPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:43.670 [XNIO-1 task-5] 0NfCoQ0NRR6VkJrEMJfOPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.679 [XNIO-1 task-3] KEa_9tBHSD6pCWBnEGuKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.679 [XNIO-1 task-3] KEa_9tBHSD6pCWBnEGuKSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.680 [XNIO-1 task-3] KEa_9tBHSD6pCWBnEGuKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.680 [XNIO-1 task-5] uAGM9VBnTmuuxMpHIsoxhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.680 [XNIO-1 task-5] uAGM9VBnTmuuxMpHIsoxhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.680 [XNIO-1 task-3] KEa_9tBHSD6pCWBnEGuKSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:43.681 [XNIO-1 task-5] uAGM9VBnTmuuxMpHIsoxhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.681 [XNIO-1 task-5] uAGM9VBnTmuuxMpHIsoxhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:43.686 [XNIO-1 task-5] uAGM9VBnTmuuxMpHIsoxhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.692 [XNIO-1 task-5] AOqIN5Q6Q--2lc9PcZRqEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.696 [XNIO-1 task-3] KEa_9tBHSD6pCWBnEGuKSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.696 [XNIO-1 task-5] AOqIN5Q6Q--2lc9PcZRqEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.697 [XNIO-1 task-5] AOqIN5Q6Q--2lc9PcZRqEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.698 [XNIO-1 task-5] AOqIN5Q6Q--2lc9PcZRqEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:43.722 [XNIO-1 task-5] AOqIN5Q6Q--2lc9PcZRqEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.727 [XNIO-1 task-5] 7LzjS83VReiOSH6_i_dieQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.728 [XNIO-1 task-5] 7LzjS83VReiOSH6_i_dieQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.729 [XNIO-1 task-5] 7LzjS83VReiOSH6_i_dieQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.729 [XNIO-1 task-5] 7LzjS83VReiOSH6_i_dieQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:43.739 [XNIO-1 task-5] 7LzjS83VReiOSH6_i_dieQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.744 [XNIO-1 task-5] aRPAugf3R4CjnWB1EbjHBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.744 [XNIO-1 task-5] aRPAugf3R4CjnWB1EbjHBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.745 [XNIO-1 task-5] aRPAugf3R4CjnWB1EbjHBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.745 [XNIO-1 task-5] aRPAugf3R4CjnWB1EbjHBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:43.757 [XNIO-1 task-5] aRPAugf3R4CjnWB1EbjHBA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.764 [XNIO-1 task-5] _3yi_BTrS9KJOzUiVimSrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.765 [XNIO-1 task-5] _3yi_BTrS9KJOzUiVimSrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.765 [XNIO-1 task-5] _3yi_BTrS9KJOzUiVimSrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.766 [XNIO-1 task-5] _3yi_BTrS9KJOzUiVimSrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:43.771 [XNIO-1 task-5] _3yi_BTrS9KJOzUiVimSrA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.795 [XNIO-1 task-3] d_24v6f7SoSaAMQwn4EKMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.796 [XNIO-1 task-3] d_24v6f7SoSaAMQwn4EKMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.796 [XNIO-1 task-3] d_24v6f7SoSaAMQwn4EKMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.797 [XNIO-1 task-3] d_24v6f7SoSaAMQwn4EKMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:43.805 [XNIO-1 task-5] 5PM2_dTHQhaHg4EaldNpSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.805 [XNIO-1 task-5] 5PM2_dTHQhaHg4EaldNpSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.806 [XNIO-1 task-5] 5PM2_dTHQhaHg4EaldNpSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.806 [XNIO-1 task-5] 5PM2_dTHQhaHg4EaldNpSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:43.811 [XNIO-1 task-5] 5PM2_dTHQhaHg4EaldNpSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.812 [XNIO-1 task-5] 5PM2_dTHQhaHg4EaldNpSg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.812 [XNIO-1 task-3] d_24v6f7SoSaAMQwn4EKMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.818 [XNIO-1 task-5] TLOe3H7zSWSsAHwvutbK5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.818 [XNIO-1 task-5] TLOe3H7zSWSsAHwvutbK5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.819 [XNIO-1 task-5] TLOe3H7zSWSsAHwvutbK5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.820 [XNIO-1 task-5] TLOe3H7zSWSsAHwvutbK5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.826 [XNIO-1 task-5] TLOe3H7zSWSsAHwvutbK5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.832 [XNIO-1 task-3] l05-8ihFQHuc0gFjmZsKRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.832 [XNIO-1 task-3] l05-8ihFQHuc0gFjmZsKRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.832 [XNIO-1 task-3] l05-8ihFQHuc0gFjmZsKRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.833 [XNIO-1 task-3] l05-8ihFQHuc0gFjmZsKRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4d169dfd-501c-4ba3-baa8-4e31a562b0e4 scope = null +07:00:43.841 [XNIO-1 task-5] SWMIKLrJSz6TEsDLt9CncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.841 [XNIO-1 task-5] SWMIKLrJSz6TEsDLt9CncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.841 [XNIO-1 task-5] SWMIKLrJSz6TEsDLt9CncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.842 [XNIO-1 task-5] SWMIKLrJSz6TEsDLt9CncQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.849 [XNIO-1 task-5] SWMIKLrJSz6TEsDLt9CncQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.858 [XNIO-1 task-3] l05-8ihFQHuc0gFjmZsKRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.862 [XNIO-1 task-5] tkpJUalwT-u8QLVCCVVELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.862 [XNIO-1 task-5] tkpJUalwT-u8QLVCCVVELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.863 [XNIO-1 task-5] tkpJUalwT-u8QLVCCVVELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.864 [XNIO-1 task-5] tkpJUalwT-u8QLVCCVVELw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.875 [XNIO-1 task-5] tkpJUalwT-u8QLVCCVVELw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.909 [XNIO-1 task-3] hTmpPdt-RM2bdz2nmeCNCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.909 [XNIO-1 task-3] hTmpPdt-RM2bdz2nmeCNCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.910 [XNIO-1 task-3] hTmpPdt-RM2bdz2nmeCNCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.911 [XNIO-1 task-3] hTmpPdt-RM2bdz2nmeCNCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.921 [XNIO-1 task-3] hTmpPdt-RM2bdz2nmeCNCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.926 [XNIO-1 task-3] KSRoDxPfTSqwMma8EzQkxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.926 [XNIO-1 task-3] KSRoDxPfTSqwMma8EzQkxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.927 [XNIO-1 task-3] KSRoDxPfTSqwMma8EzQkxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.928 [XNIO-1 task-5] aS_CUSpESUSmtiwPBdZLMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.928 [XNIO-1 task-5] aS_CUSpESUSmtiwPBdZLMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.932 [XNIO-1 task-3] KSRoDxPfTSqwMma8EzQkxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = SkasBcT2Sn-EmXCTv1UGrw redirectUri = http://localhost:8080/authorization +07:00:43.932 [XNIO-1 task-5] aS_CUSpESUSmtiwPBdZLMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.933 [XNIO-1 task-6] owz1s6vwSeGksetI64c9aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:43.933 [XNIO-1 task-6] owz1s6vwSeGksetI64c9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.933 [XNIO-1 task-6] owz1s6vwSeGksetI64c9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.933 [XNIO-1 task-6] owz1s6vwSeGksetI64c9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.934 [XNIO-1 task-6] owz1s6vwSeGksetI64c9aQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = homPxe9MTRShHMBYQoWRaw redirectUri = http://localhost:8080/authorization +07:00:43.941 [XNIO-1 task-5] aS_CUSpESUSmtiwPBdZLMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.943 [XNIO-1 task-6] owz1s6vwSeGksetI64c9aQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:43.949 [XNIO-1 task-3] KSRoDxPfTSqwMma8EzQkxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:43.949 [XNIO-1 task-5] y91eeW2yQJuXEKqoC4Kvqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.949 [XNIO-1 task-5] y91eeW2yQJuXEKqoC4Kvqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:43.949 [XNIO-1 task-3] KSRoDxPfTSqwMma8EzQkxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.950 [XNIO-1 task-5] y91eeW2yQJuXEKqoC4Kvqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:43.952 [XNIO-1 task-5] y91eeW2yQJuXEKqoC4Kvqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:43.973 [XNIO-1 task-5] y91eeW2yQJuXEKqoC4Kvqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:43.988 [XNIO-1 task-5] d7EXmylHR-acze3GJ-J_Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.001 [XNIO-1 task-5] d7EXmylHR-acze3GJ-J_Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.004 [XNIO-1 task-5] d7EXmylHR-acze3GJ-J_Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.004 [XNIO-1 task-5] d7EXmylHR-acze3GJ-J_Bw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.009 [XNIO-1 task-5] d7EXmylHR-acze3GJ-J_Bw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.015 [XNIO-1 task-5] JEwfq2aPSHebqAANBbkXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.015 [XNIO-1 task-5] JEwfq2aPSHebqAANBbkXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.016 [XNIO-1 task-5] JEwfq2aPSHebqAANBbkXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.017 [XNIO-1 task-5] JEwfq2aPSHebqAANBbkXYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.023 [XNIO-1 task-5] JEwfq2aPSHebqAANBbkXYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.026 [XNIO-1 task-5] BosMli_tQIaL2bTapgCbyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.026 [XNIO-1 task-5] BosMli_tQIaL2bTapgCbyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.026 [XNIO-1 task-5] BosMli_tQIaL2bTapgCbyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.027 [XNIO-1 task-5] BosMli_tQIaL2bTapgCbyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 80U9V-pWREqBJOYLoJ_ZlA redirectUri = http://localhost:8080/authorization +07:00:44.032 [XNIO-1 task-3] GrXNDzDjS3S5jhnr8KRxDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.032 [XNIO-1 task-3] GrXNDzDjS3S5jhnr8KRxDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.033 [XNIO-1 task-3] GrXNDzDjS3S5jhnr8KRxDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.033 [XNIO-1 task-3] GrXNDzDjS3S5jhnr8KRxDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.036 [XNIO-1 task-5] BosMli_tQIaL2bTapgCbyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.040 [XNIO-1 task-3] GrXNDzDjS3S5jhnr8KRxDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.042 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:27fc8526 +07:00:44.047 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:27fc8526 +07:00:44.048 [XNIO-1 task-3] bShk_j95RHKpJxa9z0xdcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.048 [XNIO-1 task-3] bShk_j95RHKpJxa9z0xdcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.049 [XNIO-1 task-3] bShk_j95RHKpJxa9z0xdcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.049 [XNIO-1 task-3] bShk_j95RHKpJxa9z0xdcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.054 [XNIO-1 task-5] FAR9y0gzSE2dxD3eOtJbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.054 [XNIO-1 task-5] FAR9y0gzSE2dxD3eOtJbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.054 [XNIO-1 task-5] FAR9y0gzSE2dxD3eOtJbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.055 [XNIO-1 task-5] FAR9y0gzSE2dxD3eOtJbAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:44.055 [XNIO-1 task-3] bShk_j95RHKpJxa9z0xdcQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.065 [XNIO-1 task-3] Y012JPp2S7SIhPjeX_Nbsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.065 [XNIO-1 task-3] Y012JPp2S7SIhPjeX_Nbsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.066 [XNIO-1 task-3] Y012JPp2S7SIhPjeX_Nbsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.066 [XNIO-1 task-3] Y012JPp2S7SIhPjeX_Nbsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.071 [XNIO-1 task-5] FAR9y0gzSE2dxD3eOtJbAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.073 [XNIO-1 task-3] Y012JPp2S7SIhPjeX_Nbsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.074 [XNIO-1 task-6] iGdQBJhYQGmCU6bTobTMww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.074 [XNIO-1 task-6] iGdQBJhYQGmCU6bTobTMww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.074 [XNIO-1 task-6] iGdQBJhYQGmCU6bTobTMww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.075 [XNIO-1 task-6] iGdQBJhYQGmCU6bTobTMww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6e2622a1-65f3-4197-91da-c3bbeba58c30 scope = null +07:00:44.099 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:159511fc-c75e-4b41-b1c7-e1e635782ac0 +07:00:44.100 [XNIO-1 task-3] dJmdcqTLQgGgjg_Bk3oHDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.100 [XNIO-1 task-3] dJmdcqTLQgGgjg_Bk3oHDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.101 [XNIO-1 task-3] dJmdcqTLQgGgjg_Bk3oHDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.102 [XNIO-1 task-3] dJmdcqTLQgGgjg_Bk3oHDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFkNzViNGEtNWY4Ny00NWJlLWE3NzEtMWJkNTA1ZjRmNjFkOjdqTXVwUlNoUmhtSzgwU0diSHBaY3c=", "Basic OWFkNzViNGEtNWY4Ny00NWJlLWE3NzEtMWJkNTA1ZjRmNjFkOjdqTXVwUlNoUmhtSzgwU0diSHBaY3c=", authorization) +07:00:44.108 [XNIO-1 task-3] dJmdcqTLQgGgjg_Bk3oHDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.111 [XNIO-1 task-5] C6u-T2fhSnuR7WdefEjjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.111 [XNIO-1 task-5] C6u-T2fhSnuR7WdefEjjoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.111 [XNIO-1 task-5] C6u-T2fhSnuR7WdefEjjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.112 [XNIO-1 task-5] C6u-T2fhSnuR7WdefEjjoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:44.113 [XNIO-1 task-6] iGdQBJhYQGmCU6bTobTMww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.115 [XNIO-1 task-6] iGdQBJhYQGmCU6bTobTMww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.115 [XNIO-1 task-3] oz9PMe5HTI-haS_9SP2K8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.116 [XNIO-1 task-3] oz9PMe5HTI-haS_9SP2K8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.116 [XNIO-1 task-3] oz9PMe5HTI-haS_9SP2K8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFkNzViNGEtNWY4Ny00NWJlLWE3NzEtMWJkNTA1ZjRmNjFkOjdqTXVwUlNoUmhtSzgwU0diSHBaY3c=", "Basic OWFkNzViNGEtNWY4Ny00NWJlLWE3NzEtMWJkNTA1ZjRmNjFkOjdqTXVwUlNoUmhtSzgwU0diSHBaY3c=", authorization) +07:00:44.117 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:27fc8526 +07:00:44.121 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:159511fc-c75e-4b41-b1c7-e1e635782ac0 +07:00:44.123 [XNIO-1 task-3] oz9PMe5HTI-haS_9SP2K8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.130 [XNIO-1 task-3] ngySE08kT4-GcKymxAFt1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.130 [XNIO-1 task-3] ngySE08kT4-GcKymxAFt1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.130 [XNIO-1 task-5] C6u-T2fhSnuR7WdefEjjoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.130 [XNIO-1 task-3] ngySE08kT4-GcKymxAFt1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.131 [XNIO-1 task-3] ngySE08kT4-GcKymxAFt1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.136 [XNIO-1 task-3] ngySE08kT4-GcKymxAFt1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.137 [XNIO-1 task-6] b_DtVME2QViP0-OjxD7RCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.137 [XNIO-1 task-6] b_DtVME2QViP0-OjxD7RCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.137 [XNIO-1 task-6] b_DtVME2QViP0-OjxD7RCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.138 [XNIO-1 task-6] b_DtVME2QViP0-OjxD7RCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9de0d68f-a350-412e-8226-0fccf14f5c4b scope = null +07:00:44.142 [XNIO-1 task-3] rUKYIIctRC2wx_YdcVOfmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.142 [XNIO-1 task-3] rUKYIIctRC2wx_YdcVOfmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.143 [XNIO-1 task-3] rUKYIIctRC2wx_YdcVOfmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.143 [XNIO-1 task-3] rUKYIIctRC2wx_YdcVOfmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.151 [XNIO-1 task-6] b_DtVME2QViP0-OjxD7RCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.151 [XNIO-1 task-6] b_DtVME2QViP0-OjxD7RCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.161 [XNIO-1 task-3] Q8SoncdzSYOGrVHvoq743A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.161 [XNIO-1 task-3] Q8SoncdzSYOGrVHvoq743A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.162 [XNIO-1 task-3] Q8SoncdzSYOGrVHvoq743A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.163 [XNIO-1 task-3] Q8SoncdzSYOGrVHvoq743A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.174 [XNIO-1 task-3] Q8SoncdzSYOGrVHvoq743A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.175 [XNIO-1 task-6] JETRM2ApQwSywpdrhBc3Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.176 [XNIO-1 task-6] JETRM2ApQwSywpdrhBc3Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.176 [XNIO-1 task-6] JETRM2ApQwSywpdrhBc3Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.177 [XNIO-1 task-6] JETRM2ApQwSywpdrhBc3Yw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = s0XMxVcAT0uSUlarEk96Ng redirectUri = http://localhost:8080/authorization +07:00:44.181 [XNIO-1 task-3] 5qqxKfkqTpuZY3cBWqI7gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.182 [XNIO-1 task-3] 5qqxKfkqTpuZY3cBWqI7gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.183 [XNIO-1 task-3] 5qqxKfkqTpuZY3cBWqI7gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.184 [XNIO-1 task-3] 5qqxKfkqTpuZY3cBWqI7gw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.184 [XNIO-1 task-6] JETRM2ApQwSywpdrhBc3Yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.191 [XNIO-1 task-3] 5qqxKfkqTpuZY3cBWqI7gw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.199 [XNIO-1 task-6] aWoNuuOFTHmZwXNJgI8R2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.199 [XNIO-1 task-6] aWoNuuOFTHmZwXNJgI8R2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.200 [XNIO-1 task-6] aWoNuuOFTHmZwXNJgI8R2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.200 [XNIO-1 task-6] aWoNuuOFTHmZwXNJgI8R2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = g5q9Lyq3SxGJ74H1v5gIEQ redirectUri = http://localhost:8080/authorization +07:00:44.211 [XNIO-1 task-6] aWoNuuOFTHmZwXNJgI8R2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:44.211 [XNIO-1 task-6] aWoNuuOFTHmZwXNJgI8R2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.212 [XNIO-1 task-3] 0BalW6j0QRaE3yrM0JsJVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.213 [XNIO-1 task-3] 0BalW6j0QRaE3yrM0JsJVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.214 [XNIO-1 task-3] 0BalW6j0QRaE3yrM0JsJVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.214 [XNIO-1 task-3] 0BalW6j0QRaE3yrM0JsJVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.220 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a4bfc3fc +07:00:44.221 [XNIO-1 task-3] 0BalW6j0QRaE3yrM0JsJVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.226 [XNIO-1 task-3] WaIbQjeqSZiXdGS9AWUz-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.227 [XNIO-1 task-3] WaIbQjeqSZiXdGS9AWUz-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.227 [XNIO-1 task-3] WaIbQjeqSZiXdGS9AWUz-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.228 [XNIO-1 task-3] WaIbQjeqSZiXdGS9AWUz-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:44.234 [XNIO-1 task-3] WaIbQjeqSZiXdGS9AWUz-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.241 [XNIO-1 task-3] wpQg1ccFQxm7CL6nLyAW2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.241 [XNIO-1 task-3] wpQg1ccFQxm7CL6nLyAW2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.242 [XNIO-1 task-3] wpQg1ccFQxm7CL6nLyAW2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.242 [XNIO-1 task-3] wpQg1ccFQxm7CL6nLyAW2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", authorization) +07:00:44.243 [XNIO-1 task-6] sO5LOvCCSZ-3SL5BDHTvDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.244 [XNIO-1 task-6] sO5LOvCCSZ-3SL5BDHTvDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.244 [XNIO-1 task-6] sO5LOvCCSZ-3SL5BDHTvDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.244 [XNIO-1 task-6] sO5LOvCCSZ-3SL5BDHTvDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:44.252 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a4bfc3fc +07:00:44.254 [XNIO-1 task-3] wpQg1ccFQxm7CL6nLyAW2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:44.254 [XNIO-1 task-3] wpQg1ccFQxm7CL6nLyAW2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.258 [XNIO-1 task-6] sO5LOvCCSZ-3SL5BDHTvDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.283 [XNIO-1 task-6] ffFrqq7FQvWhkce5BDx9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.283 [XNIO-1 task-6] ffFrqq7FQvWhkce5BDx9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.283 [XNIO-1 task-6] ffFrqq7FQvWhkce5BDx9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.284 [XNIO-1 task-6] ffFrqq7FQvWhkce5BDx9Pw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a4a04019-dd68-4bbd-9fc6-093a59423a19 scope = null +07:00:44.284 [XNIO-1 task-3] rLiEIuKNSlmZPI4skO3sCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.290 [XNIO-1 task-3] rLiEIuKNSlmZPI4skO3sCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.290 [XNIO-1 task-3] rLiEIuKNSlmZPI4skO3sCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.291 [XNIO-1 task-3] rLiEIuKNSlmZPI4skO3sCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFkNzViNGEtNWY4Ny00NWJlLWE3NzEtMWJkNTA1ZjRmNjFkOjdqTXVwUlNoUmhtSzgwU0diSHBaY3c=", "Basic OWFkNzViNGEtNWY4Ny00NWJlLWE3NzEtMWJkNTA1ZjRmNjFkOjdqTXVwUlNoUmhtSzgwU0diSHBaY3c=", authorization) +07:00:44.296 [XNIO-1 task-3] rLiEIuKNSlmZPI4skO3sCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.299 [XNIO-1 task-6] ffFrqq7FQvWhkce5BDx9Pw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.309 [XNIO-1 task-3] g6eX_q6PSie1gLwnnUAUxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.309 [XNIO-1 task-3] g6eX_q6PSie1gLwnnUAUxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.310 [XNIO-1 task-3] g6eX_q6PSie1gLwnnUAUxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.312 [XNIO-1 task-3] g6eX_q6PSie1gLwnnUAUxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +07:00:44.316 [XNIO-1 task-6] 7pdJnHrPRuG50jXoW6b60Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:44.317 [XNIO-1 task-6] 7pdJnHrPRuG50jXoW6b60Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:44.319 [XNIO-1 task-3] g6eX_q6PSie1gLwnnUAUxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.345 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a4bfc3fc +07:00:44.352 [XNIO-1 task-3] nAiPuTsSQhmmdfAaSuZ-sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.352 [XNIO-1 task-3] nAiPuTsSQhmmdfAaSuZ-sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.353 [XNIO-1 task-3] nAiPuTsSQhmmdfAaSuZ-sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.353 [XNIO-1 task-6] 7pdJnHrPRuG50jXoW6b60Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:44.353 [XNIO-1 task-3] nAiPuTsSQhmmdfAaSuZ-sA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:44.353 [XNIO-1 task-3] nAiPuTsSQhmmdfAaSuZ-sA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.358 [XNIO-1 task-3] nAiPuTsSQhmmdfAaSuZ-sA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.366 [XNIO-1 task-3] E3j1eLxbQNOSF05uiOP5cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.366 [XNIO-1 task-3] E3j1eLxbQNOSF05uiOP5cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.366 [XNIO-1 task-3] E3j1eLxbQNOSF05uiOP5cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.367 [XNIO-1 task-3] E3j1eLxbQNOSF05uiOP5cQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.372 [XNIO-1 task-3] E3j1eLxbQNOSF05uiOP5cQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.384 [XNIO-1 task-3] QPBa2o_OQSGGu4uErW8rsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.384 [XNIO-1 task-3] QPBa2o_OQSGGu4uErW8rsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.385 [XNIO-1 task-3] QPBa2o_OQSGGu4uErW8rsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.385 [XNIO-1 task-3] QPBa2o_OQSGGu4uErW8rsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.394 [XNIO-1 task-3] QPBa2o_OQSGGu4uErW8rsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.415 [XNIO-1 task-3] QdxWyIoNT767XIYt3txcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.415 [XNIO-1 task-3] QdxWyIoNT767XIYt3txcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.416 [XNIO-1 task-3] QdxWyIoNT767XIYt3txcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.416 [XNIO-1 task-3] QdxWyIoNT767XIYt3txcbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.422 [XNIO-1 task-3] QdxWyIoNT767XIYt3txcbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.431 [XNIO-1 task-3] ggKPrnq-Qs-OAVGRnGTW2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.431 [XNIO-1 task-3] ggKPrnq-Qs-OAVGRnGTW2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.432 [XNIO-1 task-3] ggKPrnq-Qs-OAVGRnGTW2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.432 [XNIO-1 task-3] ggKPrnq-Qs-OAVGRnGTW2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.438 [XNIO-1 task-3] ggKPrnq-Qs-OAVGRnGTW2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.448 [XNIO-1 task-3] XRb3LlIvRHGVz02fKeHdGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.448 [XNIO-1 task-3] XRb3LlIvRHGVz02fKeHdGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.448 [XNIO-1 task-3] XRb3LlIvRHGVz02fKeHdGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.449 [XNIO-1 task-3] XRb3LlIvRHGVz02fKeHdGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.453 [XNIO-1 task-6] qB4fM-NSS_WDsF7p1qeVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.453 [XNIO-1 task-6] qB4fM-NSS_WDsF7p1qeVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.453 [XNIO-1 task-6] qB4fM-NSS_WDsF7p1qeVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.454 [XNIO-1 task-6] qB4fM-NSS_WDsF7p1qeVAA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = RJEcRZGsSkmdwJe0kylNRQ redirectUri = http://localhost:8080/authorization +07:00:44.454 [XNIO-1 task-3] XRb3LlIvRHGVz02fKeHdGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.460 [XNIO-1 task-3] lRZyNZ1IR_OQ7YhLNa1-Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.460 [XNIO-1 task-3] lRZyNZ1IR_OQ7YhLNa1-Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.461 [XNIO-1 task-3] lRZyNZ1IR_OQ7YhLNa1-Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.461 [XNIO-1 task-3] lRZyNZ1IR_OQ7YhLNa1-Kg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.467 [XNIO-1 task-3] lRZyNZ1IR_OQ7YhLNa1-Kg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.469 [XNIO-1 task-6] qB4fM-NSS_WDsF7p1qeVAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.472 [XNIO-1 task-3] F7rfftBmSiW8nRfOoMiTxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.473 [XNIO-1 task-3] F7rfftBmSiW8nRfOoMiTxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.473 [XNIO-1 task-3] F7rfftBmSiW8nRfOoMiTxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.473 [XNIO-1 task-3] F7rfftBmSiW8nRfOoMiTxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:44.479 [XNIO-1 task-3] F7rfftBmSiW8nRfOoMiTxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.486 [XNIO-1 task-6] SGOlns67TkuB4cijLfoxIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.487 [XNIO-1 task-6] SGOlns67TkuB4cijLfoxIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.488 [XNIO-1 task-6] SGOlns67TkuB4cijLfoxIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.488 [XNIO-1 task-6] SGOlns67TkuB4cijLfoxIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:44.495 [XNIO-1 task-6] SGOlns67TkuB4cijLfoxIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.510 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a0a7ed57-363d-456a-87af-991f73cbc05a +07:00:44.512 [XNIO-1 task-6] grOAKZ64Rh-zw70jFMmKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.512 [XNIO-1 task-6] grOAKZ64Rh-zw70jFMmKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.513 [XNIO-1 task-6] grOAKZ64Rh-zw70jFMmKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.513 [XNIO-1 task-6] grOAKZ64Rh-zw70jFMmKrg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.514 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a0a7ed57-363d-456a-87af-991f73cbc05a +07:00:44.519 [XNIO-1 task-6] grOAKZ64Rh-zw70jFMmKrg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.527 [XNIO-1 task-6] KSBMS6gDQyGuWBZwab7DcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.527 [XNIO-1 task-6] KSBMS6gDQyGuWBZwab7DcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.528 [XNIO-1 task-6] KSBMS6gDQyGuWBZwab7DcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.528 [XNIO-1 task-6] KSBMS6gDQyGuWBZwab7DcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.534 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dbe1be3e-c8ed-44e5-812c-7a07602e8b2f +07:00:44.536 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dbe1be3e-c8ed-44e5-812c-7a07602e8b2f +07:00:44.546 [XNIO-1 task-6] 9-Ar6r6NT5uov_T6ff0D_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.546 [XNIO-1 task-6] 9-Ar6r6NT5uov_T6ff0D_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.546 [XNIO-1 task-6] 9-Ar6r6NT5uov_T6ff0D_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.546 [XNIO-1 task-3] hV9Jzp-nSge708NtNkHTqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.547 [XNIO-1 task-3] hV9Jzp-nSge708NtNkHTqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.547 [XNIO-1 task-6] 9-Ar6r6NT5uov_T6ff0D_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:44.547 [XNIO-1 task-3] hV9Jzp-nSge708NtNkHTqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.547 [XNIO-1 task-3] hV9Jzp-nSge708NtNkHTqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:44.553 [XNIO-1 task-3] hV9Jzp-nSge708NtNkHTqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.558 [XNIO-1 task-6] 9-Ar6r6NT5uov_T6ff0D_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:44.558 [XNIO-1 task-3] UfabKONySWKFkpdaYz26MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.558 [XNIO-1 task-6] 9-Ar6r6NT5uov_T6ff0D_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.559 [XNIO-1 task-3] UfabKONySWKFkpdaYz26MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.559 [XNIO-1 task-3] UfabKONySWKFkpdaYz26MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.559 [XNIO-1 task-3] UfabKONySWKFkpdaYz26MA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.566 [XNIO-1 task-3] UfabKONySWKFkpdaYz26MA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.572 [XNIO-1 task-6] cyB2z7OLQDyHHhtb6SJnNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.573 [XNIO-1 task-6] cyB2z7OLQDyHHhtb6SJnNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.573 [XNIO-1 task-6] cyB2z7OLQDyHHhtb6SJnNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.574 [XNIO-1 task-3] SgKRqvqBS3y2vcsmpyZZWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.574 [XNIO-1 task-6] cyB2z7OLQDyHHhtb6SJnNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.574 [XNIO-1 task-3] SgKRqvqBS3y2vcsmpyZZWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.574 [XNIO-1 task-3] SgKRqvqBS3y2vcsmpyZZWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.575 [XNIO-1 task-3] SgKRqvqBS3y2vcsmpyZZWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bb8855ad-234b-478c-ab98-9d4a9374ea2c scope = null +07:00:44.581 [XNIO-1 task-6] cyB2z7OLQDyHHhtb6SJnNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.593 [XNIO-1 task-6] 15HdoiHfSnuW8I9CdYMA-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.593 [XNIO-1 task-6] 15HdoiHfSnuW8I9CdYMA-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.594 [XNIO-1 task-6] 15HdoiHfSnuW8I9CdYMA-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.594 [XNIO-1 task-5] 7--4t1hVRE6OF3Rd3rZnAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.594 [XNIO-1 task-5] 7--4t1hVRE6OF3Rd3rZnAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.594 [XNIO-1 task-5] 7--4t1hVRE6OF3Rd3rZnAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.594 [XNIO-1 task-3] SgKRqvqBS3y2vcsmpyZZWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.595 [XNIO-1 task-5] 7--4t1hVRE6OF3Rd3rZnAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.595 [XNIO-1 task-5] 7--4t1hVRE6OF3Rd3rZnAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3a4-fZknTviPODacoN1_Hg redirectUri = http://localhost:8080/authorization +07:00:44.603 [XNIO-1 task-6] 15HdoiHfSnuW8I9CdYMA-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.607 [XNIO-1 task-5] 7--4t1hVRE6OF3Rd3rZnAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.609 [XNIO-1 task-3] tCb3446lRUCDcEBpQKfLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.609 [XNIO-1 task-3] tCb3446lRUCDcEBpQKfLjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.609 [XNIO-1 task-3] tCb3446lRUCDcEBpQKfLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.610 [XNIO-1 task-3] tCb3446lRUCDcEBpQKfLjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGJlMWJlM2UtYzhlZC00NGU1LTgxMmMtN2EwNzYwMmU4YjJmOlM5X05FSERUU3FTWThNNVF4UXhaLXc=", "Basic ZGJlMWJlM2UtYzhlZC00NGU1LTgxMmMtN2EwNzYwMmU4YjJmOlM5X05FSERUU3FTWThNNVF4UXhaLXc=", authorization) +07:00:44.615 [XNIO-1 task-3] tCb3446lRUCDcEBpQKfLjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.623 [XNIO-1 task-3] g6EYIaUtSJCNkzRSu6ixsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.623 [XNIO-1 task-3] g6EYIaUtSJCNkzRSu6ixsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.623 [XNIO-1 task-3] g6EYIaUtSJCNkzRSu6ixsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.624 [XNIO-1 task-3] g6EYIaUtSJCNkzRSu6ixsA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", authorization) +07:00:44.635 [XNIO-1 task-3] g6EYIaUtSJCNkzRSu6ixsA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.644 [XNIO-1 task-3] 759YMi1yTZu1mXO2fpU6OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.652 [XNIO-1 task-3] 759YMi1yTZu1mXO2fpU6OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.652 [XNIO-1 task-3] 759YMi1yTZu1mXO2fpU6OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.653 [XNIO-1 task-3] 759YMi1yTZu1mXO2fpU6OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", authorization) +07:00:44.658 [XNIO-1 task-3] 759YMi1yTZu1mXO2fpU6OQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.659 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074 +07:00:44.662 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0ce7d1c7-6f53-4fb5-92e5-4a8ca38d8074 +07:00:44.664 [XNIO-1 task-3] oaSxzvt1RqqsRLKCksoyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.664 [XNIO-1 task-3] oaSxzvt1RqqsRLKCksoyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.666 [XNIO-1 task-3] oaSxzvt1RqqsRLKCksoyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.666 [XNIO-1 task-3] oaSxzvt1RqqsRLKCksoyxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.668 [XNIO-1 task-5] gJzMSJBGTB2zaBzjyC3Zgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.668 [XNIO-1 task-5] gJzMSJBGTB2zaBzjyC3Zgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.668 [XNIO-1 task-5] gJzMSJBGTB2zaBzjyC3Zgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.669 [XNIO-1 task-5] gJzMSJBGTB2zaBzjyC3Zgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = GhONvOF9TPWeeU2lqF2wgA redirectUri = http://localhost:8080/authorization +07:00:44.678 [XNIO-1 task-3] oaSxzvt1RqqsRLKCksoyxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.681 [XNIO-1 task-5] gJzMSJBGTB2zaBzjyC3Zgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.685 [XNIO-1 task-3] UsvUqwrPRuGYJLIAgzVW4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.685 [XNIO-1 task-3] UsvUqwrPRuGYJLIAgzVW4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.685 [XNIO-1 task-3] UsvUqwrPRuGYJLIAgzVW4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.686 [XNIO-1 task-3] UsvUqwrPRuGYJLIAgzVW4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:44.690 [XNIO-1 task-3] UsvUqwrPRuGYJLIAgzVW4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.697 [XNIO-1 task-5] Re_ovUhjQUuGtzOLAs1OBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.697 [XNIO-1 task-5] Re_ovUhjQUuGtzOLAs1OBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.697 [XNIO-1 task-5] Re_ovUhjQUuGtzOLAs1OBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.698 [XNIO-1 task-5] Re_ovUhjQUuGtzOLAs1OBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:44.703 [XNIO-1 task-5] Re_ovUhjQUuGtzOLAs1OBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.708 [XNIO-1 task-5] CcN5G5VlQyOkzj9GC4IYLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.708 [XNIO-1 task-5] CcN5G5VlQyOkzj9GC4IYLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.709 [XNIO-1 task-5] CcN5G5VlQyOkzj9GC4IYLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.710 [XNIO-1 task-5] CcN5G5VlQyOkzj9GC4IYLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:44.715 [XNIO-1 task-5] CcN5G5VlQyOkzj9GC4IYLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.724 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.724 [XNIO-1 task-3] jpgyS8DLSBSwIIbk2MCxWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.724 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.724 [XNIO-1 task-3] jpgyS8DLSBSwIIbk2MCxWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.725 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.725 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.725 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:44.725 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = p_adweS0RwScQk-fFgy8YA redirectUri = http://localhost:8080/authorization +07:00:44.730 [XNIO-1 task-3] jpgyS8DLSBSwIIbk2MCxWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.734 [XNIO-1 task-3] Qy0aLKSXTrSLw-iWhv634Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.735 [XNIO-1 task-3] Qy0aLKSXTrSLw-iWhv634Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.735 [XNIO-1 task-3] Qy0aLKSXTrSLw-iWhv634Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.735 [XNIO-1 task-3] Qy0aLKSXTrSLw-iWhv634Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:44.739 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:44.739 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg INFO com.networknt.config.Config getConfigStream - Unable to load config from externalized folder for status.yml in /config +07:00:44.740 [XNIO-1 task-5] viLIB_QsTVqznkbSEkMoxg INFO com.networknt.config.Config getConfigStream - Config loaded from default folder for status.yml +07:00:44.761 [XNIO-1 task-6] jRu_mPs3SaK_Sz7dsAyTdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.761 [XNIO-1 task-6] jRu_mPs3SaK_Sz7dsAyTdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.761 [XNIO-1 task-6] jRu_mPs3SaK_Sz7dsAyTdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.762 [XNIO-1 task-3] Qy0aLKSXTrSLw-iWhv634Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.762 [XNIO-1 task-6] jRu_mPs3SaK_Sz7dsAyTdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = zvYAu-0oSwmeqNLCsmxP3g redirectUri = http://localhost:8080/authorization +07:00:44.774 [XNIO-1 task-6] jRu_mPs3SaK_Sz7dsAyTdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.777 [XNIO-1 task-3] uchZihb7TRW-OvJh-BGDvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.777 [XNIO-1 task-3] uchZihb7TRW-OvJh-BGDvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.779 [XNIO-1 task-3] uchZihb7TRW-OvJh-BGDvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.780 [XNIO-1 task-3] uchZihb7TRW-OvJh-BGDvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", authorization) +07:00:44.786 [XNIO-1 task-3] uchZihb7TRW-OvJh-BGDvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.796 [XNIO-1 task-3] vvk_qjiMQrmjWnyHzf4dJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.798 [XNIO-1 task-3] vvk_qjiMQrmjWnyHzf4dJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:44.798 [XNIO-1 task-3] vvk_qjiMQrmjWnyHzf4dJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.799 [XNIO-1 task-3] vvk_qjiMQrmjWnyHzf4dJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.799 [XNIO-1 task-3] vvk_qjiMQrmjWnyHzf4dJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.811 [XNIO-1 task-3] vvk_qjiMQrmjWnyHzf4dJA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.819 [XNIO-1 task-3] 2-QZ-nS5TIa6v3eevjPODA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.821 [XNIO-1 task-3] 2-QZ-nS5TIa6v3eevjPODA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.821 [XNIO-1 task-3] 2-QZ-nS5TIa6v3eevjPODA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.833 [XNIO-1 task-3] 2-QZ-nS5TIa6v3eevjPODA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.838 [XNIO-1 task-3] 2-QZ-nS5TIa6v3eevjPODA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.846 [XNIO-1 task-3] rTlbnev_Q9q1lW8kPMj70w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.846 [XNIO-1 task-3] rTlbnev_Q9q1lW8kPMj70w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.846 [XNIO-1 task-3] rTlbnev_Q9q1lW8kPMj70w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.847 [XNIO-1 task-3] rTlbnev_Q9q1lW8kPMj70w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.852 [XNIO-1 task-5] A5QAhYn6SqKDBqCBhQqQog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.852 [XNIO-1 task-5] A5QAhYn6SqKDBqCBhQqQog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.853 [XNIO-1 task-5] A5QAhYn6SqKDBqCBhQqQog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.853 [XNIO-1 task-3] rTlbnev_Q9q1lW8kPMj70w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.853 [XNIO-1 task-5] A5QAhYn6SqKDBqCBhQqQog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = v1t4ca4ORfuIZaCmXd2J4Q redirectUri = http://localhost:8080/authorization +07:00:44.857 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:513b8a6c +07:00:44.859 [XNIO-1 task-3] QL6ed_zeQgaAEP2Y6gnXsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.859 [XNIO-1 task-3] QL6ed_zeQgaAEP2Y6gnXsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.860 [XNIO-1 task-3] QL6ed_zeQgaAEP2Y6gnXsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.860 [XNIO-1 task-3] QL6ed_zeQgaAEP2Y6gnXsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:44.862 [XNIO-1 task-5] A5QAhYn6SqKDBqCBhQqQog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:44.862 [XNIO-1 task-5] A5QAhYn6SqKDBqCBhQqQog INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.870 [XNIO-1 task-3] QL6ed_zeQgaAEP2Y6gnXsQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.875 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:decef3e9 +07:00:44.883 [XNIO-1 task-5] JUFEgp6eRmyTNSud4uACTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.883 [XNIO-1 task-5] JUFEgp6eRmyTNSud4uACTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.884 [XNIO-1 task-5] JUFEgp6eRmyTNSud4uACTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.884 [XNIO-1 task-5] JUFEgp6eRmyTNSud4uACTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:44.890 [XNIO-1 task-5] JUFEgp6eRmyTNSud4uACTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.900 [XNIO-1 task-5] _roueXNyQJalvIR1Q3vsrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.902 [XNIO-1 task-5] _roueXNyQJalvIR1Q3vsrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.902 [XNIO-1 task-5] _roueXNyQJalvIR1Q3vsrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.902 [XNIO-1 task-5] _roueXNyQJalvIR1Q3vsrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:44.910 [XNIO-1 task-5] _roueXNyQJalvIR1Q3vsrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.920 [XNIO-1 task-5] 1AdvYOigRQKecA2v9GG5Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.921 [XNIO-1 task-5] 1AdvYOigRQKecA2v9GG5Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.921 [XNIO-1 task-5] 1AdvYOigRQKecA2v9GG5Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.922 [XNIO-1 task-5] 1AdvYOigRQKecA2v9GG5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:44.923 [XNIO-1 task-3] 9aVoIhiFTl60M7IwCelEjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.924 [XNIO-1 task-3] 9aVoIhiFTl60M7IwCelEjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.924 [XNIO-1 task-3] 9aVoIhiFTl60M7IwCelEjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.925 [XNIO-1 task-3] 9aVoIhiFTl60M7IwCelEjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:44.930 [XNIO-1 task-5] 1AdvYOigRQKecA2v9GG5Yg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.937 [XNIO-1 task-6] 5h-BV87mToSH8EGoKJ1_qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.938 [XNIO-1 task-3] 9aVoIhiFTl60M7IwCelEjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:44.938 [XNIO-1 task-6] 5h-BV87mToSH8EGoKJ1_qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.939 [XNIO-1 task-3] 9aVoIhiFTl60M7IwCelEjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.939 [XNIO-1 task-6] 5h-BV87mToSH8EGoKJ1_qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.939 [XNIO-1 task-6] 5h-BV87mToSH8EGoKJ1_qg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = DwGf4olKQVOAIhFozA9bVw redirectUri = http://localhost:8080/authorization +07:00:44.941 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a7d5a858-3d6f-4984-bea4-cc8836f81535 +07:00:44.944 [XNIO-1 task-5] qqXUDcx2SH-Y8Q4gOsVLyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.944 [XNIO-1 task-5] qqXUDcx2SH-Y8Q4gOsVLyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.946 [XNIO-1 task-5] qqXUDcx2SH-Y8Q4gOsVLyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.947 [XNIO-1 task-6] 5h-BV87mToSH8EGoKJ1_qg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.946 [XNIO-1 task-5] qqXUDcx2SH-Y8Q4gOsVLyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc0Y2RmMWYtMDAzZi00OWNjLWEzYTUtNzI0ZGY3NDIzNTc1OmVVVG1VVGRlVGhTUGd4R0R0SGl6RXc=", "Basic OTc0Y2RmMWYtMDAzZi00OWNjLWEzYTUtNzI0ZGY3NDIzNTc1OmVVVG1VVGRlVGhTUGd4R0R0SGl6RXc=", authorization) +07:00:44.955 [XNIO-1 task-5] qqXUDcx2SH-Y8Q4gOsVLyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:44.967 [XNIO-1 task-5] zYiUkLruQxuM4zoxtOHCvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.968 [XNIO-1 task-5] zYiUkLruQxuM4zoxtOHCvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:44.969 [XNIO-1 task-5] zYiUkLruQxuM4zoxtOHCvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:44.969 [XNIO-1 task-5] zYiUkLruQxuM4zoxtOHCvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc0Y2RmMWYtMDAzZi00OWNjLWEzYTUtNzI0ZGY3NDIzNTc1OmVVVG1VVGRlVGhTUGd4R0R0SGl6RXc=", "Basic OTc0Y2RmMWYtMDAzZi00OWNjLWEzYTUtNzI0ZGY3NDIzNTc1OmVVVG1VVGRlVGhTUGd4R0R0SGl6RXc=", authorization) +07:00:44.972 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:dbe1be3e-c8ed-44e5-812c-7a07602e8b2f +07:00:44.976 [XNIO-1 task-5] zYiUkLruQxuM4zoxtOHCvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.979 [XNIO-1 task-5] lpasvSlHTNOsBa425xONkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.979 [XNIO-1 task-5] lpasvSlHTNOsBa425xONkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.979 [XNIO-1 task-5] lpasvSlHTNOsBa425xONkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.980 [XNIO-1 task-5] lpasvSlHTNOsBa425xONkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 511784a3-2c0c-4ce0-9462-70415138ea19 scope = null +07:00:44.987 [XNIO-1 task-6] wjzDPa-EQ9enDGPrWDJKyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.987 [XNIO-1 task-6] wjzDPa-EQ9enDGPrWDJKyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.988 [XNIO-1 task-6] wjzDPa-EQ9enDGPrWDJKyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:44.989 [XNIO-1 task-6] wjzDPa-EQ9enDGPrWDJKyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:44.993 [XNIO-1 task-5] lpasvSlHTNOsBa425xONkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:44.997 [XNIO-1 task-6] wjzDPa-EQ9enDGPrWDJKyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.008 [XNIO-1 task-6] ZhDKWup4R-yZk104ID1g-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.008 [XNIO-1 task-6] ZhDKWup4R-yZk104ID1g-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.009 [XNIO-1 task-6] ZhDKWup4R-yZk104ID1g-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.009 [XNIO-1 task-6] ZhDKWup4R-yZk104ID1g-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.015 [XNIO-1 task-6] ZhDKWup4R-yZk104ID1g-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.046 [XNIO-1 task-3] Urh3oBPoTFqbTIxoAF5sNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.046 [XNIO-1 task-3] Urh3oBPoTFqbTIxoAF5sNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.046 [XNIO-1 task-3] Urh3oBPoTFqbTIxoAF5sNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.047 [XNIO-1 task-3] Urh3oBPoTFqbTIxoAF5sNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OVkj5L8BSZCVdFXj6U3v3A redirectUri = http://localhost:8080/authorization +07:00:45.050 [XNIO-1 task-5] Cg6YFCOISlmHky1ev2UgxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.050 [XNIO-1 task-5] Cg6YFCOISlmHky1ev2UgxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.051 [XNIO-1 task-5] Cg6YFCOISlmHky1ev2UgxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.051 [XNIO-1 task-5] Cg6YFCOISlmHky1ev2UgxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 47fe2d99-c0d6-4aa5-9160-df5fe2bf1575 scope = null +07:00:45.081 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:decef3e9 +07:00:45.081 [XNIO-1 task-6] 8WckFfj9RhCbZ6kiUNUGKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.082 [XNIO-1 task-3] Urh3oBPoTFqbTIxoAF5sNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.081 [XNIO-1 task-6] 8WckFfj9RhCbZ6kiUNUGKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.084 [XNIO-1 task-6] 8WckFfj9RhCbZ6kiUNUGKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.084 [XNIO-1 task-6] 8WckFfj9RhCbZ6kiUNUGKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", authorization) +07:00:45.091 [XNIO-1 task-6] 8WckFfj9RhCbZ6kiUNUGKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.103 [XNIO-1 task-5] Cg6YFCOISlmHky1ev2UgxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.100 [XNIO-1 task-3] LW-tOmjnQf6hzQw0BoZAjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.109 [XNIO-1 task-3] LW-tOmjnQf6hzQw0BoZAjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.109 [XNIO-1 task-3] LW-tOmjnQf6hzQw0BoZAjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.109 [XNIO-1 task-3] LW-tOmjnQf6hzQw0BoZAjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.120 [XNIO-1 task-3] LW-tOmjnQf6hzQw0BoZAjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.127 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:decef3e9 +07:00:45.134 [XNIO-1 task-5] JW2UQAWsR6KhjPD8MKhi0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.134 [XNIO-1 task-5] JW2UQAWsR6KhjPD8MKhi0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.135 [XNIO-1 task-5] JW2UQAWsR6KhjPD8MKhi0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.135 [XNIO-1 task-5] JW2UQAWsR6KhjPD8MKhi0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.142 [XNIO-1 task-5] JW2UQAWsR6KhjPD8MKhi0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.148 [XNIO-1 task-5] HlvDxnATSoeI6r4O2h8ing DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.148 [XNIO-1 task-5] HlvDxnATSoeI6r4O2h8ing DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.149 [XNIO-1 task-5] HlvDxnATSoeI6r4O2h8ing DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.149 [XNIO-1 task-5] HlvDxnATSoeI6r4O2h8ing DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.155 [XNIO-1 task-5] HlvDxnATSoeI6r4O2h8ing DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.165 [XNIO-1 task-5] f2SUIGmRSpOzYk3qj8RV7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.165 [XNIO-1 task-5] f2SUIGmRSpOzYk3qj8RV7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.167 [XNIO-1 task-5] f2SUIGmRSpOzYk3qj8RV7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.169 [XNIO-1 task-5] f2SUIGmRSpOzYk3qj8RV7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.172 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a0a7ed57-363d-456a-87af-991f73cbc05a +07:00:45.181 [XNIO-1 task-5] f2SUIGmRSpOzYk3qj8RV7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.188 [XNIO-1 task-3] -94ahfxgRq63p6ZjMi6ghA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.188 [XNIO-1 task-3] -94ahfxgRq63p6ZjMi6ghA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.188 [XNIO-1 task-3] -94ahfxgRq63p6ZjMi6ghA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.189 [XNIO-1 task-3] -94ahfxgRq63p6ZjMi6ghA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pQdmMkEtQSaNlCLzg0xxVg redirectUri = http://localhost:8080/authorization +07:00:45.196 [XNIO-1 task-5] N2fR3VqYT6ORThf7Rt0U6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.196 [XNIO-1 task-5] N2fR3VqYT6ORThf7Rt0U6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.196 [XNIO-1 task-5] N2fR3VqYT6ORThf7Rt0U6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.197 [XNIO-1 task-5] N2fR3VqYT6ORThf7Rt0U6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.197 [XNIO-1 task-3] -94ahfxgRq63p6ZjMi6ghA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.202 [XNIO-1 task-6] K-WjvRTXQguxesc4ATJMzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.202 [XNIO-1 task-6] K-WjvRTXQguxesc4ATJMzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.203 [XNIO-1 task-6] K-WjvRTXQguxesc4ATJMzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.203 [XNIO-1 task-6] K-WjvRTXQguxesc4ATJMzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", authorization) +07:00:45.204 [XNIO-1 task-5] N2fR3VqYT6ORThf7Rt0U6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.211 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:decef3e9 +07:00:45.218 [XNIO-1 task-6] K-WjvRTXQguxesc4ATJMzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.220 [XNIO-1 task-5] tPSMA2GeRE6rxF4VPvefSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.221 [XNIO-1 task-5] tPSMA2GeRE6rxF4VPvefSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.221 [XNIO-1 task-5] tPSMA2GeRE6rxF4VPvefSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.222 [XNIO-1 task-5] tPSMA2GeRE6rxF4VPvefSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:45.227 [XNIO-1 task-5] tPSMA2GeRE6rxF4VPvefSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.234 [XNIO-1 task-5] PPrNBSD0S4aqJdS2JRpf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.234 [XNIO-1 task-5] PPrNBSD0S4aqJdS2JRpf1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.235 [XNIO-1 task-5] PPrNBSD0S4aqJdS2JRpf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.235 [XNIO-1 task-5] PPrNBSD0S4aqJdS2JRpf1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:45.240 [XNIO-1 task-5] PPrNBSD0S4aqJdS2JRpf1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.250 [XNIO-1 task-5] F1rZfl0CS0iX1ERhcaZHJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.250 [XNIO-1 task-5] F1rZfl0CS0iX1ERhcaZHJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.252 [XNIO-1 task-5] F1rZfl0CS0iX1ERhcaZHJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.253 [XNIO-1 task-5] F1rZfl0CS0iX1ERhcaZHJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", authorization) +07:00:45.258 [XNIO-1 task-5] F1rZfl0CS0iX1ERhcaZHJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.266 [XNIO-1 task-5] -YAERVQlR4e4sCcjxLsLcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.266 [XNIO-1 task-5] -YAERVQlR4e4sCcjxLsLcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.267 [XNIO-1 task-5] -YAERVQlR4e4sCcjxLsLcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.267 [XNIO-1 task-5] -YAERVQlR4e4sCcjxLsLcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", authorization) +07:00:45.280 [XNIO-1 task-5] -YAERVQlR4e4sCcjxLsLcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.294 [XNIO-1 task-5] WfoGD07GQx-KETY6YtV98Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.294 [XNIO-1 task-5] WfoGD07GQx-KETY6YtV98Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.295 [XNIO-1 task-5] WfoGD07GQx-KETY6YtV98Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.295 [XNIO-1 task-5] WfoGD07GQx-KETY6YtV98Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:45.300 [XNIO-1 task-5] WfoGD07GQx-KETY6YtV98Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.308 [XNIO-1 task-5] MzHp8OJRTyC3NTZ3fehxTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.308 [XNIO-1 task-5] MzHp8OJRTyC3NTZ3fehxTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.309 [XNIO-1 task-5] MzHp8OJRTyC3NTZ3fehxTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.309 [XNIO-1 task-5] MzHp8OJRTyC3NTZ3fehxTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.314 [XNIO-1 task-5] MzHp8OJRTyC3NTZ3fehxTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.319 [XNIO-1 task-5] UzoDkidKR3uvxaF8pGK9zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.319 [XNIO-1 task-5] UzoDkidKR3uvxaF8pGK9zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.319 [XNIO-1 task-5] UzoDkidKR3uvxaF8pGK9zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.320 [XNIO-1 task-5] UzoDkidKR3uvxaF8pGK9zA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.324 [XNIO-1 task-5] UzoDkidKR3uvxaF8pGK9zA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.330 [XNIO-1 task-5] A0cQNbdATdSXhE0FHtP7Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.330 [XNIO-1 task-5] A0cQNbdATdSXhE0FHtP7Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.331 [XNIO-1 task-5] A0cQNbdATdSXhE0FHtP7Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.331 [XNIO-1 task-5] A0cQNbdATdSXhE0FHtP7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.336 [XNIO-1 task-5] A0cQNbdATdSXhE0FHtP7Sw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.343 [XNIO-1 task-5] 21036VPkQGmRrbVe16YiRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.343 [XNIO-1 task-5] 21036VPkQGmRrbVe16YiRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.344 [XNIO-1 task-5] 21036VPkQGmRrbVe16YiRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.344 [XNIO-1 task-5] 21036VPkQGmRrbVe16YiRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:45.349 [XNIO-1 task-3] Kd2b9dRXQz-z2dabtyQb1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.349 [XNIO-1 task-3] Kd2b9dRXQz-z2dabtyQb1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.349 [XNIO-1 task-3] Kd2b9dRXQz-z2dabtyQb1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.350 [XNIO-1 task-3] Kd2b9dRXQz-z2dabtyQb1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:45.352 [XNIO-1 task-5] 21036VPkQGmRrbVe16YiRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.361 [XNIO-1 task-3] Kd2b9dRXQz-z2dabtyQb1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:45.361 [XNIO-1 task-5] yHmT5yTtRgGOz1d0BPe4BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.361 [XNIO-1 task-3] Kd2b9dRXQz-z2dabtyQb1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.361 [XNIO-1 task-5] yHmT5yTtRgGOz1d0BPe4BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.369 [XNIO-1 task-5] yHmT5yTtRgGOz1d0BPe4BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.370 [XNIO-1 task-5] yHmT5yTtRgGOz1d0BPe4BA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.376 [XNIO-1 task-5] yHmT5yTtRgGOz1d0BPe4BA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.385 [XNIO-1 task-5] OmKBLsOaTduezI9JyFXa4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.385 [XNIO-1 task-5] OmKBLsOaTduezI9JyFXa4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.385 [XNIO-1 task-5] OmKBLsOaTduezI9JyFXa4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.386 [XNIO-1 task-5] OmKBLsOaTduezI9JyFXa4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.392 [XNIO-1 task-5] OmKBLsOaTduezI9JyFXa4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.403 [XNIO-1 task-5] RyfYDPfWT4a0NM76VlrFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.403 [XNIO-1 task-5] RyfYDPfWT4a0NM76VlrFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.404 [XNIO-1 task-5] RyfYDPfWT4a0NM76VlrFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.405 [XNIO-1 task-5] RyfYDPfWT4a0NM76VlrFsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.412 [XNIO-1 task-5] RyfYDPfWT4a0NM76VlrFsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.414 [XNIO-1 task-3] hBTHd8uvRpOhNtmhKHwP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.414 [XNIO-1 task-3] hBTHd8uvRpOhNtmhKHwP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.415 [XNIO-1 task-3] hBTHd8uvRpOhNtmhKHwP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.416 [XNIO-1 task-3] hBTHd8uvRpOhNtmhKHwP_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = G48rDZyLSt2rXiRrSmGgVQ redirectUri = http://localhost:8080/authorization +07:00:45.424 [XNIO-1 task-5] uUQPlKMcThyWWBpYUJhBFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.424 [XNIO-1 task-5] uUQPlKMcThyWWBpYUJhBFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.426 [XNIO-1 task-5] uUQPlKMcThyWWBpYUJhBFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.426 [XNIO-1 task-5] uUQPlKMcThyWWBpYUJhBFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.427 [XNIO-1 task-3] hBTHd8uvRpOhNtmhKHwP_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.432 [XNIO-1 task-5] uUQPlKMcThyWWBpYUJhBFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.436 [XNIO-1 task-5] Ch2HsK9iT7iSjY7QR5Zv-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.437 [XNIO-1 task-5] Ch2HsK9iT7iSjY7QR5Zv-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.437 [XNIO-1 task-5] Ch2HsK9iT7iSjY7QR5Zv-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.438 [XNIO-1 task-6] NuG5mBrrS36m-jxkvpsmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.438 [XNIO-1 task-6] NuG5mBrrS36m-jxkvpsmtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.439 [XNIO-1 task-6] NuG5mBrrS36m-jxkvpsmtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.439 [XNIO-1 task-6] NuG5mBrrS36m-jxkvpsmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.439 [XNIO-1 task-6] NuG5mBrrS36m-jxkvpsmtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.445 [XNIO-1 task-6] NuG5mBrrS36m-jxkvpsmtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.446 [XNIO-1 task-3] avf0nZUSTUuxB27IlGUXvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.448 [XNIO-1 task-3] avf0nZUSTUuxB27IlGUXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.449 [XNIO-1 task-3] avf0nZUSTUuxB27IlGUXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.450 [XNIO-1 task-3] avf0nZUSTUuxB27IlGUXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.450 [XNIO-1 task-3] avf0nZUSTUuxB27IlGUXvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bf5b7127-88af-4fc0-b036-1bc862589f2c scope = null +07:00:45.451 [XNIO-1 task-5] Ch2HsK9iT7iSjY7QR5Zv-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.456 [XNIO-1 task-6] _swcSgi0RHe0oeSEadJfSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.456 [XNIO-1 task-6] _swcSgi0RHe0oeSEadJfSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.457 [XNIO-1 task-6] _swcSgi0RHe0oeSEadJfSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.458 [XNIO-1 task-6] _swcSgi0RHe0oeSEadJfSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.463 [XNIO-1 task-6] _swcSgi0RHe0oeSEadJfSg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.468 [XNIO-1 task-3] avf0nZUSTUuxB27IlGUXvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.470 [XNIO-1 task-6] t9c44HLqQnayqxcPKtUBnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.470 [XNIO-1 task-6] t9c44HLqQnayqxcPKtUBnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.472 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5bac2c46-6ec0-440a-a89b-48db320bcc5e +07:00:45.475 [XNIO-1 task-6] t9c44HLqQnayqxcPKtUBnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.475 [XNIO-1 task-6] t9c44HLqQnayqxcPKtUBnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", authorization) +07:00:45.481 [XNIO-1 task-6] t9c44HLqQnayqxcPKtUBnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.482 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:96662cae-4329-4564-92fe-d1e6775b8dd5 +07:00:45.485 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:96662cae-4329-4564-92fe-d1e6775b8dd5 +07:00:45.489 [XNIO-1 task-6] gdZzTqW4QIeJCmT_-p7YHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.489 [XNIO-1 task-6] gdZzTqW4QIeJCmT_-p7YHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.490 [XNIO-1 task-6] gdZzTqW4QIeJCmT_-p7YHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.491 [XNIO-1 task-6] gdZzTqW4QIeJCmT_-p7YHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.496 [XNIO-1 task-3] qaWrsH_XTyKLh6kuv64mkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.497 [XNIO-1 task-6] gdZzTqW4QIeJCmT_-p7YHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.496 [XNIO-1 task-3] qaWrsH_XTyKLh6kuv64mkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.500 [XNIO-1 task-3] qaWrsH_XTyKLh6kuv64mkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.501 [XNIO-1 task-3] qaWrsH_XTyKLh6kuv64mkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5bac2c46-6ec0-440a-a89b-48db320bcc5e scope = null +07:00:45.508 [XNIO-1 task-6] 7XVgROJrRJKa2DNiynkRzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.508 [XNIO-1 task-6] 7XVgROJrRJKa2DNiynkRzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.509 [XNIO-1 task-6] 7XVgROJrRJKa2DNiynkRzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.509 [XNIO-1 task-6] 7XVgROJrRJKa2DNiynkRzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.514 [XNIO-1 task-6] 7XVgROJrRJKa2DNiynkRzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.521 [XNIO-1 task-3] qaWrsH_XTyKLh6kuv64mkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.529 [XNIO-1 task-3] qaWrsH_XTyKLh6kuv64mkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.533 [XNIO-1 task-6] CgH7wWNlQ7eghIextPhemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.533 [XNIO-1 task-6] CgH7wWNlQ7eghIextPhemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.534 [XNIO-1 task-6] CgH7wWNlQ7eghIextPhemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.534 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ede60085-6e12-4464-968a-10a4950dbbce +07:00:45.534 [XNIO-1 task-6] CgH7wWNlQ7eghIextPhemQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1Im2us8nTCav7bJ0MsPVVA redirectUri = http://localhost:8080/authorization +07:00:45.535 [XNIO-1 task-5] DK8MjGYfQ2KSjpiQztQu_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.535 [XNIO-1 task-5] DK8MjGYfQ2KSjpiQztQu_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.536 [XNIO-1 task-5] DK8MjGYfQ2KSjpiQztQu_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.536 [XNIO-1 task-5] DK8MjGYfQ2KSjpiQztQu_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.542 [XNIO-1 task-5] DK8MjGYfQ2KSjpiQztQu_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.548 [XNIO-1 task-6] CgH7wWNlQ7eghIextPhemQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.553 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cdaf1bf7-859c-48ee-831a-ecfb899ad142 +07:00:45.553 [XNIO-1 task-5] 5zBmmaGzTe2zdgr0FIRbsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.554 [XNIO-1 task-5] 5zBmmaGzTe2zdgr0FIRbsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.554 [XNIO-1 task-5] 5zBmmaGzTe2zdgr0FIRbsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.554 [XNIO-1 task-5] 5zBmmaGzTe2zdgr0FIRbsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:45.560 [XNIO-1 task-5] 5zBmmaGzTe2zdgr0FIRbsg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.564 [XNIO-1 task-5] VBEmNuyxQwqcDc5-_JW3Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.564 [XNIO-1 task-5] VBEmNuyxQwqcDc5-_JW3Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.564 [XNIO-1 task-5] VBEmNuyxQwqcDc5-_JW3Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.565 [XNIO-1 task-5] VBEmNuyxQwqcDc5-_JW3Og DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:45.568 [XNIO-1 task-6] tFLeuKO8RaC5NQYq_3UhEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.568 [XNIO-1 task-6] tFLeuKO8RaC5NQYq_3UhEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.569 [XNIO-1 task-6] tFLeuKO8RaC5NQYq_3UhEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.571 [XNIO-1 task-6] tFLeuKO8RaC5NQYq_3UhEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:45.574 [XNIO-1 task-5] VBEmNuyxQwqcDc5-_JW3Og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:45.574 [XNIO-1 task-5] VBEmNuyxQwqcDc5-_JW3Og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.581 [XNIO-1 task-6] tFLeuKO8RaC5NQYq_3UhEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.588 [XNIO-1 task-6] OeL6wbrDRqa9TI1USRMaJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.588 [XNIO-1 task-6] OeL6wbrDRqa9TI1USRMaJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.588 [XNIO-1 task-6] OeL6wbrDRqa9TI1USRMaJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.589 [XNIO-1 task-6] OeL6wbrDRqa9TI1USRMaJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.595 [XNIO-1 task-6] OeL6wbrDRqa9TI1USRMaJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.602 [XNIO-1 task-6] n60RBafORYyCyUZqI4eQ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.602 [XNIO-1 task-6] n60RBafORYyCyUZqI4eQ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.603 [XNIO-1 task-6] n60RBafORYyCyUZqI4eQ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.603 [XNIO-1 task-6] n60RBafORYyCyUZqI4eQ6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.609 [XNIO-1 task-6] n60RBafORYyCyUZqI4eQ6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.615 [XNIO-1 task-6] Lk9Gli8DT9S99Og-6EYaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.615 [XNIO-1 task-6] Lk9Gli8DT9S99Og-6EYaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.616 [XNIO-1 task-6] Lk9Gli8DT9S99Og-6EYaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.616 [XNIO-1 task-6] Lk9Gli8DT9S99Og-6EYaUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.622 [XNIO-1 task-6] Lk9Gli8DT9S99Og-6EYaUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.632 [XNIO-1 task-6] a_6RfBQ7R4Odfxw3R9XfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.632 [XNIO-1 task-6] a_6RfBQ7R4Odfxw3R9XfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.633 [XNIO-1 task-6] a_6RfBQ7R4Odfxw3R9XfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.634 [XNIO-1 task-6] a_6RfBQ7R4Odfxw3R9XfLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.639 [XNIO-1 task-6] a_6RfBQ7R4Odfxw3R9XfLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.651 [XNIO-1 task-6] pU38686KQdeTa-D8xXfjUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.651 [XNIO-1 task-6] pU38686KQdeTa-D8xXfjUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.652 [XNIO-1 task-6] pU38686KQdeTa-D8xXfjUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.652 [XNIO-1 task-6] pU38686KQdeTa-D8xXfjUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:45.653 [XNIO-1 task-5] AOMJmh-aSauduBXGOSaQUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.653 [XNIO-1 task-5] AOMJmh-aSauduBXGOSaQUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.653 [XNIO-1 task-5] AOMJmh-aSauduBXGOSaQUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.654 [XNIO-1 task-5] AOMJmh-aSauduBXGOSaQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRlNjAwODUtNmUxMi00NDY0LTk2OGEtMTBhNDk1MGRiYmNlOmxQRS1mb08tVEVpSjdNcHVuM1FfeWc=", "Basic ZWRlNjAwODUtNmUxMi00NDY0LTk2OGEtMTBhNDk1MGRiYmNlOmxQRS1mb08tVEVpSjdNcHVuM1FfeWc=", authorization) +07:00:45.658 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6b8ff72b +07:00:45.659 [XNIO-1 task-5] AOMJmh-aSauduBXGOSaQUA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.663 [XNIO-1 task-6] pU38686KQdeTa-D8xXfjUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:45.663 [XNIO-1 task-6] pU38686KQdeTa-D8xXfjUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.665 [XNIO-1 task-5] wRZPq8KVSGONwHJlfvBPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.665 [XNIO-1 task-5] wRZPq8KVSGONwHJlfvBPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.665 [XNIO-1 task-5] wRZPq8KVSGONwHJlfvBPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.666 [XNIO-1 task-5] wRZPq8KVSGONwHJlfvBPiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.670 [XNIO-1 task-5] wRZPq8KVSGONwHJlfvBPiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.675 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:513b8a6c +07:00:45.680 [XNIO-1 task-5] qqaOHT5-RJyULIlzAIO7kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.680 [XNIO-1 task-5] qqaOHT5-RJyULIlzAIO7kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.681 [XNIO-1 task-5] qqaOHT5-RJyULIlzAIO7kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.681 [XNIO-1 task-5] qqaOHT5-RJyULIlzAIO7kw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.686 [XNIO-1 task-5] qqaOHT5-RJyULIlzAIO7kw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.692 [XNIO-1 task-5] yPaagcAmQcumqpimBJY3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.692 [XNIO-1 task-5] yPaagcAmQcumqpimBJY3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.692 [XNIO-1 task-5] yPaagcAmQcumqpimBJY3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.693 [XNIO-1 task-5] yPaagcAmQcumqpimBJY3bw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.698 [XNIO-1 task-5] yPaagcAmQcumqpimBJY3bw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.703 [XNIO-1 task-5] x0LhVBylQTmN_eoVyzXhtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.703 [XNIO-1 task-5] x0LhVBylQTmN_eoVyzXhtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.704 [XNIO-1 task-5] x0LhVBylQTmN_eoVyzXhtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.704 [XNIO-1 task-5] x0LhVBylQTmN_eoVyzXhtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.731 [XNIO-1 task-5] x0LhVBylQTmN_eoVyzXhtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.739 [XNIO-1 task-5] DyGEbRFlTmeqCpXCHEnpPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.739 [XNIO-1 task-5] DyGEbRFlTmeqCpXCHEnpPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.740 [XNIO-1 task-5] DyGEbRFlTmeqCpXCHEnpPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.740 [XNIO-1 task-5] DyGEbRFlTmeqCpXCHEnpPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.745 [XNIO-1 task-5] DyGEbRFlTmeqCpXCHEnpPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.751 [XNIO-1 task-5] byNVU1J7TcaAToifcZaOGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.751 [XNIO-1 task-5] byNVU1J7TcaAToifcZaOGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.752 [XNIO-1 task-5] byNVU1J7TcaAToifcZaOGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.753 [XNIO-1 task-5] byNVU1J7TcaAToifcZaOGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.753 [XNIO-1 task-6] BKri9myfTtWH-e7F0anMlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.753 [XNIO-1 task-6] BKri9myfTtWH-e7F0anMlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.754 [XNIO-1 task-6] BKri9myfTtWH-e7F0anMlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.754 [XNIO-1 task-6] BKri9myfTtWH-e7F0anMlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.754 [XNIO-1 task-3] auE9ovdPSjCfCIMbOUbRDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.754 [XNIO-1 task-3] auE9ovdPSjCfCIMbOUbRDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.754 [XNIO-1 task-6] BKri9myfTtWH-e7F0anMlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BPtiZUxVSdGmrO2H1ct-GQ redirectUri = http://localhost:8080/authorization +07:00:45.756 [XNIO-1 task-3] auE9ovdPSjCfCIMbOUbRDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = c339TbgES3-eKZA4I0NJiA redirectUri = http://localhost:8080/authorization +07:00:45.758 [XNIO-1 task-5] byNVU1J7TcaAToifcZaOGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.763 [XNIO-1 task-6] BKri9myfTtWH-e7F0anMlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.765 [XNIO-1 task-3] auE9ovdPSjCfCIMbOUbRDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:45.765 [XNIO-1 task-3] auE9ovdPSjCfCIMbOUbRDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.766 [XNIO-1 task-5] oRL_3Z2oQ9WraB9YEZyFTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.766 [XNIO-1 task-5] oRL_3Z2oQ9WraB9YEZyFTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.766 [XNIO-1 task-5] oRL_3Z2oQ9WraB9YEZyFTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.766 [XNIO-1 task-5] oRL_3Z2oQ9WraB9YEZyFTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.772 [XNIO-1 task-5] oRL_3Z2oQ9WraB9YEZyFTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.779 [XNIO-1 task-5] p0a-dHUkQcWgwQIMwqYEsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.779 [XNIO-1 task-5] p0a-dHUkQcWgwQIMwqYEsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.780 [XNIO-1 task-5] p0a-dHUkQcWgwQIMwqYEsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.780 [XNIO-1 task-5] p0a-dHUkQcWgwQIMwqYEsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.783 [XNIO-1 task-3] WGfQzpObQaW6ICCSPrBf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.783 [XNIO-1 task-3] WGfQzpObQaW6ICCSPrBf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.784 [XNIO-1 task-3] WGfQzpObQaW6ICCSPrBf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.784 [XNIO-1 task-3] WGfQzpObQaW6ICCSPrBf5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 92fHMQJOQDG0nKIz8SkGBg redirectUri = http://localhost:8080/authorization +07:00:45.790 [XNIO-1 task-5] p0a-dHUkQcWgwQIMwqYEsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.795 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bf061091 +07:00:45.796 [XNIO-1 task-5] T2rvWATBTz2BrkggvU0eRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.796 [XNIO-1 task-5] T2rvWATBTz2BrkggvU0eRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.796 [XNIO-1 task-5] T2rvWATBTz2BrkggvU0eRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.797 [XNIO-1 task-3] WGfQzpObQaW6ICCSPrBf5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:45.797 [XNIO-1 task-3] WGfQzpObQaW6ICCSPrBf5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.798 [XNIO-1 task-3] WGfQzpObQaW6ICCSPrBf5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.805 [XNIO-1 task-5] T2rvWATBTz2BrkggvU0eRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.810 [XNIO-1 task-5] fi-arAZhSR6VSfK0GkmnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.810 [XNIO-1 task-5] fi-arAZhSR6VSfK0GkmnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.810 [XNIO-1 task-5] fi-arAZhSR6VSfK0GkmnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.811 [XNIO-1 task-5] fi-arAZhSR6VSfK0GkmnxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.823 [XNIO-1 task-5] fi-arAZhSR6VSfK0GkmnxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.826 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bf061091 +07:00:45.829 [XNIO-1 task-5] JQvUFDYrSDm0GadcntQxdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.830 [XNIO-1 task-5] JQvUFDYrSDm0GadcntQxdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.830 [XNIO-1 task-5] JQvUFDYrSDm0GadcntQxdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.830 [XNIO-1 task-5] JQvUFDYrSDm0GadcntQxdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.836 [XNIO-1 task-5] JQvUFDYrSDm0GadcntQxdg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.844 [XNIO-1 task-5] _Wz2yEVRQyCOuzejq92hsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.844 [XNIO-1 task-5] _Wz2yEVRQyCOuzejq92hsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.844 [XNIO-1 task-5] _Wz2yEVRQyCOuzejq92hsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.845 [XNIO-1 task-5] _Wz2yEVRQyCOuzejq92hsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.850 [XNIO-1 task-5] _Wz2yEVRQyCOuzejq92hsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.850 [XNIO-1 task-3] RoxP-Y7mSgSb49-ZsAMMFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.850 [XNIO-1 task-3] RoxP-Y7mSgSb49-ZsAMMFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.851 [XNIO-1 task-6] getrLaVITZKErH_Ws1KFRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.851 [XNIO-1 task-6] getrLaVITZKErH_Ws1KFRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.851 [XNIO-1 task-3] RoxP-Y7mSgSb49-ZsAMMFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.851 [XNIO-1 task-6] getrLaVITZKErH_Ws1KFRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.851 [XNIO-1 task-6] getrLaVITZKErH_Ws1KFRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.851 [XNIO-1 task-3] RoxP-Y7mSgSb49-ZsAMMFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = X8dUfn0rT-KA4QqoigdpOA redirectUri = http://localhost:8080/authorization +07:00:45.854 [XNIO-1 task-5] Q0qTSkMhSpiIIy-XF4pbyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.855 [XNIO-1 task-5] Q0qTSkMhSpiIIy-XF4pbyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.855 [XNIO-1 task-5] Q0qTSkMhSpiIIy-XF4pbyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.855 [XNIO-1 task-5] Q0qTSkMhSpiIIy-XF4pbyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.861 [XNIO-1 task-6] getrLaVITZKErH_Ws1KFRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.861 [XNIO-1 task-6] getrLaVITZKErH_Ws1KFRQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.867 [XNIO-1 task-3] RoxP-Y7mSgSb49-ZsAMMFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:45.867 [XNIO-1 task-5] ncbaLGB1QKOvgWEvOCn3xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.868 [XNIO-1 task-5] ncbaLGB1QKOvgWEvOCn3xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.868 [XNIO-1 task-5] ncbaLGB1QKOvgWEvOCn3xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.867 [XNIO-1 task-3] RoxP-Y7mSgSb49-ZsAMMFg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:45.874 [XNIO-1 task-5] ncbaLGB1QKOvgWEvOCn3xA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.876 [XNIO-1 task-3] QrDqtdVQSYmGwI5g7B76xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.876 [XNIO-1 task-3] QrDqtdVQSYmGwI5g7B76xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.876 [XNIO-1 task-3] QrDqtdVQSYmGwI5g7B76xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.877 [XNIO-1 task-3] QrDqtdVQSYmGwI5g7B76xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:45.880 [XNIO-1 task-6] weN7elB7RPKPtHiWhclU4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.880 [XNIO-1 task-6] weN7elB7RPKPtHiWhclU4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.880 [XNIO-1 task-6] weN7elB7RPKPtHiWhclU4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.881 [XNIO-1 task-6] weN7elB7RPKPtHiWhclU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", "Basic ZWY2ZjBhZTktYjE5Zi00ZjFmLWIxOWQtOGY2NjMyOWJhNjMzOmRSZzYtb203UVZDbnZJWk9KSG0tQUE=", authorization) +07:00:45.881 [XNIO-1 task-5] FaNxx_L3ReqCeddLsnWDSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.881 [XNIO-1 task-5] FaNxx_L3ReqCeddLsnWDSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.882 [XNIO-1 task-5] FaNxx_L3ReqCeddLsnWDSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.882 [XNIO-1 task-5] FaNxx_L3ReqCeddLsnWDSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:45.886 [XNIO-1 task-6] weN7elB7RPKPtHiWhclU4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.891 [XNIO-1 task-6] 2t4QUJZMS8iwCCPVX_XR2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.891 [XNIO-1 task-6] 2t4QUJZMS8iwCCPVX_XR2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.892 [XNIO-1 task-6] 2t4QUJZMS8iwCCPVX_XR2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.892 [XNIO-1 task-6] 2t4QUJZMS8iwCCPVX_XR2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", authorization) +07:00:45.897 [XNIO-1 task-5] FaNxx_L3ReqCeddLsnWDSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.897 [XNIO-1 task-5] FaNxx_L3ReqCeddLsnWDSg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:45.899 [XNIO-1 task-6] 2t4QUJZMS8iwCCPVX_XR2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.899 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:149ff7b8-0832-44fb-b95d-a9e44fcb74e3 +07:00:45.900 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:149ff7b8-0832-44fb-b95d-a9e44fcb74e3 +07:00:45.909 [XNIO-1 task-6] tiR4WsOkRWaQF3v0NvicnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.909 [XNIO-1 task-6] tiR4WsOkRWaQF3v0NvicnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.909 [XNIO-1 task-6] tiR4WsOkRWaQF3v0NvicnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.910 [XNIO-1 task-6] tiR4WsOkRWaQF3v0NvicnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.916 [XNIO-1 task-6] tiR4WsOkRWaQF3v0NvicnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.922 [XNIO-1 task-6] Ju7V_iXXTYe1cwd-jxW-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.922 [XNIO-1 task-6] Ju7V_iXXTYe1cwd-jxW-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.922 [XNIO-1 task-6] Ju7V_iXXTYe1cwd-jxW-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.923 [XNIO-1 task-6] Ju7V_iXXTYe1cwd-jxW-GA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.930 [XNIO-1 task-6] Ju7V_iXXTYe1cwd-jxW-GA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.935 [XNIO-1 task-5] qrWcMpQdTCyBQkj0vmbU0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.935 [XNIO-1 task-5] qrWcMpQdTCyBQkj0vmbU0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.935 [XNIO-1 task-5] qrWcMpQdTCyBQkj0vmbU0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.936 [XNIO-1 task-5] qrWcMpQdTCyBQkj0vmbU0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _D0-fRvbSCCnkP4RTbUzPQ redirectUri = http://localhost:8080/authorization +07:00:45.937 [XNIO-1 task-6] iHHZALu1RlGTuE4J39NIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.937 [XNIO-1 task-6] iHHZALu1RlGTuE4J39NIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.938 [XNIO-1 task-6] iHHZALu1RlGTuE4J39NIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:45.938 [XNIO-1 task-6] iHHZALu1RlGTuE4J39NIVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:45.946 [XNIO-1 task-6] iHHZALu1RlGTuE4J39NIVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:45.950 [XNIO-1 task-5] qrWcMpQdTCyBQkj0vmbU0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.955 [XNIO-1 task-6] Nwt9jqP7QgCFPDqMCJyxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.955 [XNIO-1 task-6] Nwt9jqP7QgCFPDqMCJyxcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.956 [XNIO-1 task-6] Nwt9jqP7QgCFPDqMCJyxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.956 [XNIO-1 task-6] Nwt9jqP7QgCFPDqMCJyxcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:45.963 [XNIO-1 task-6] Nwt9jqP7QgCFPDqMCJyxcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.964 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bf061091 +07:00:45.969 [XNIO-1 task-5] Y-1hh783Ta6Sx-y7l9HEPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.969 [XNIO-1 task-5] Y-1hh783Ta6Sx-y7l9HEPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.969 [XNIO-1 task-5] Y-1hh783Ta6Sx-y7l9HEPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.970 [XNIO-1 task-5] Y-1hh783Ta6Sx-y7l9HEPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:45.976 [XNIO-1 task-5] Y-1hh783Ta6Sx-y7l9HEPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.971 [XNIO-1 task-6] U_KGsjHYQAKlLrB-9HSsnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.977 [XNIO-1 task-6] U_KGsjHYQAKlLrB-9HSsnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.977 [XNIO-1 task-6] U_KGsjHYQAKlLrB-9HSsnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.978 [XNIO-1 task-6] U_KGsjHYQAKlLrB-9HSsnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", authorization) +07:00:45.983 [XNIO-1 task-5] ZoMrCCELTVSUVaFAaKGqUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.985 [XNIO-1 task-5] ZoMrCCELTVSUVaFAaKGqUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:45.986 [XNIO-1 task-5] ZoMrCCELTVSUVaFAaKGqUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:45.986 [XNIO-1 task-5] ZoMrCCELTVSUVaFAaKGqUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", authorization) +07:00:45.992 [XNIO-1 task-5] ZoMrCCELTVSUVaFAaKGqUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:45.992 [XNIO-1 task-6] U_KGsjHYQAKlLrB-9HSsnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.001 [XNIO-1 task-5] ySOZNCR2TeaVmQunq3izWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.001 [XNIO-1 task-5] ySOZNCR2TeaVmQunq3izWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.002 [XNIO-1 task-5] ySOZNCR2TeaVmQunq3izWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.002 [XNIO-1 task-5] ySOZNCR2TeaVmQunq3izWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", authorization) +07:00:46.007 [XNIO-1 task-5] ySOZNCR2TeaVmQunq3izWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.017 [XNIO-1 task-6] BirON6THSAGjzlMRkIXyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.017 [XNIO-1 task-6] BirON6THSAGjzlMRkIXyTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.017 [XNIO-1 task-6] BirON6THSAGjzlMRkIXyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.018 [XNIO-1 task-6] BirON6THSAGjzlMRkIXyTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:46.018 [XNIO-1 task-3] CJCQVKi2T3uP-18waMzuRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.018 [XNIO-1 task-3] CJCQVKi2T3uP-18waMzuRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.018 [XNIO-1 task-5] L2Pu_cM3R8CFdne1fGFrOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.018 [XNIO-1 task-5] L2Pu_cM3R8CFdne1fGFrOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.019 [XNIO-1 task-5] L2Pu_cM3R8CFdne1fGFrOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.019 [XNIO-1 task-5] L2Pu_cM3R8CFdne1fGFrOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", authorization) +07:00:46.020 [XNIO-1 task-3] CJCQVKi2T3uP-18waMzuRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.022 [XNIO-1 task-3] CJCQVKi2T3uP-18waMzuRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", "Basic MzZiMThjYTctOWRhYy00ZWY0LWI4ZmMtNGZmOTEyM2QwNWYxOk0zeXRETVljVF91a2xyMFZ0Unh0anc=", authorization) +07:00:46.027 [XNIO-1 task-6] BirON6THSAGjzlMRkIXyTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:46.028 [XNIO-1 task-6] BirON6THSAGjzlMRkIXyTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.028 [XNIO-1 task-3] CJCQVKi2T3uP-18waMzuRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.039 [XNIO-1 task-5] L2Pu_cM3R8CFdne1fGFrOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.039 [XNIO-1 task-3] mr5mdUEPSUi2DCyOVNH_jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.039 [XNIO-1 task-3] mr5mdUEPSUi2DCyOVNH_jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.040 [XNIO-1 task-3] mr5mdUEPSUi2DCyOVNH_jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.040 [XNIO-1 task-3] mr5mdUEPSUi2DCyOVNH_jg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.041 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bf061091 +07:00:46.049 [XNIO-1 task-3] mr5mdUEPSUi2DCyOVNH_jg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.051 [XNIO-1 task-6] S0p1gQ7UQR-YkamxLD6fGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.051 [XNIO-1 task-6] S0p1gQ7UQR-YkamxLD6fGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.053 [XNIO-1 task-6] S0p1gQ7UQR-YkamxLD6fGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.054 [XNIO-1 task-6] S0p1gQ7UQR-YkamxLD6fGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ffd1a05d-9c10-4945-9708-b144bffe6723 scope = null +07:00:46.058 [XNIO-1 task-5] ukIOzynBSoeAQedPNXB-kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.059 [XNIO-1 task-5] ukIOzynBSoeAQedPNXB-kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.059 [XNIO-1 task-3] Ow3Lcea_QaKP_XVm8KO36g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.059 [XNIO-1 task-3] Ow3Lcea_QaKP_XVm8KO36g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.059 [XNIO-1 task-3] Ow3Lcea_QaKP_XVm8KO36g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.059 [XNIO-1 task-3] Ow3Lcea_QaKP_XVm8KO36g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.059 [XNIO-1 task-5] ukIOzynBSoeAQedPNXB-kg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:46.060 [XNIO-1 task-3] Ow3Lcea_QaKP_XVm8KO36g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", authorization) +07:00:46.066 [XNIO-1 task-5] ukIOzynBSoeAQedPNXB-kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.072 [XNIO-1 task-3] Ow3Lcea_QaKP_XVm8KO36g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.074 [XNIO-1 task-5] 9HghzSMLQa2kD7YKn1ZABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.074 [XNIO-1 task-5] 9HghzSMLQa2kD7YKn1ZABA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.074 [XNIO-1 task-5] 9HghzSMLQa2kD7YKn1ZABA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.075 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.076 [XNIO-1 task-5] 9HghzSMLQa2kD7YKn1ZABA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.078 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4dd1ae63-8751-4a16-8298-a3a03ec4b217 +07:00:46.082 [XNIO-1 task-6] S0p1gQ7UQR-YkamxLD6fGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.088 [XNIO-1 task-5] 9HghzSMLQa2kD7YKn1ZABA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.099 [XNIO-1 task-5] SXkjH8RwQHuwv8jc25dyOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.099 [XNIO-1 task-5] SXkjH8RwQHuwv8jc25dyOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.100 [XNIO-1 task-5] SXkjH8RwQHuwv8jc25dyOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.104 [XNIO-1 task-5] SXkjH8RwQHuwv8jc25dyOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.109 [XNIO-1 task-6] -B6t7T0UT1ikGZseG_70Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.109 [XNIO-1 task-6] -B6t7T0UT1ikGZseG_70Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.110 [XNIO-1 task-6] -B6t7T0UT1ikGZseG_70Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.110 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bf061091 +07:00:46.110 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bf061091 +07:00:46.114 [XNIO-1 task-5] SXkjH8RwQHuwv8jc25dyOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.121 [XNIO-1 task-5] 5dApHUqoQr-ClbG7irMIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.121 [XNIO-1 task-5] 5dApHUqoQr-ClbG7irMIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.125 [XNIO-1 task-6] -B6t7T0UT1ikGZseG_70Ng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:46.125 [XNIO-1 task-6] -B6t7T0UT1ikGZseG_70Ng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.129 [XNIO-1 task-5] 5dApHUqoQr-ClbG7irMIiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", authorization) +07:00:46.138 [XNIO-1 task-5] 5dApHUqoQr-ClbG7irMIiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.144 [XNIO-1 task-5] 94yRnCFtSFWnYkoyuo3ENw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.144 [XNIO-1 task-5] 94yRnCFtSFWnYkoyuo3ENw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.145 [XNIO-1 task-5] 94yRnCFtSFWnYkoyuo3ENw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.145 [XNIO-1 task-5] 94yRnCFtSFWnYkoyuo3ENw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRlNjAwODUtNmUxMi00NDY0LTk2OGEtMTBhNDk1MGRiYmNlOmxQRS1mb08tVEVpSjdNcHVuM1FfeWc=", "Basic ZWRlNjAwODUtNmUxMi00NDY0LTk2OGEtMTBhNDk1MGRiYmNlOmxQRS1mb08tVEVpSjdNcHVuM1FfeWc=", authorization) +07:00:46.157 [XNIO-1 task-5] 94yRnCFtSFWnYkoyuo3ENw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.164 [XNIO-1 task-6] eoNmU1pQSqqd02QlQWTo4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.165 [XNIO-1 task-6] eoNmU1pQSqqd02QlQWTo4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.165 [XNIO-1 task-6] eoNmU1pQSqqd02QlQWTo4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.165 [XNIO-1 task-6] eoNmU1pQSqqd02QlQWTo4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.165 [XNIO-1 task-5] OEbNxvUJS3aA-lbH-sGNAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.165 [XNIO-1 task-5] OEbNxvUJS3aA-lbH-sGNAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.166 [XNIO-1 task-6] eoNmU1pQSqqd02QlQWTo4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:46.166 [XNIO-1 task-5] OEbNxvUJS3aA-lbH-sGNAA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.173 [XNIO-1 task-5] OEbNxvUJS3aA-lbH-sGNAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.175 [XNIO-1 task-6] eoNmU1pQSqqd02QlQWTo4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:46.176 [XNIO-1 task-6] eoNmU1pQSqqd02QlQWTo4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.179 [XNIO-1 task-5] aqTQXaGbQO2vUYVWYEfwkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.179 [XNIO-1 task-5] aqTQXaGbQO2vUYVWYEfwkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.181 [XNIO-1 task-5] aqTQXaGbQO2vUYVWYEfwkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.182 [XNIO-1 task-5] aqTQXaGbQO2vUYVWYEfwkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.191 [XNIO-1 task-5] aqTQXaGbQO2vUYVWYEfwkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.198 [XNIO-1 task-5] iJjNrbGJSbqbBjH1Bi4PWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.199 [XNIO-1 task-5] iJjNrbGJSbqbBjH1Bi4PWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.199 [XNIO-1 task-5] iJjNrbGJSbqbBjH1Bi4PWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.199 [XNIO-1 task-5] iJjNrbGJSbqbBjH1Bi4PWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.206 [XNIO-1 task-5] iJjNrbGJSbqbBjH1Bi4PWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.210 [XNIO-1 task-5] WIp5eDikRniS2fewffKTNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.211 [XNIO-1 task-5] WIp5eDikRniS2fewffKTNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.211 [XNIO-1 task-5] WIp5eDikRniS2fewffKTNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.211 [XNIO-1 task-5] WIp5eDikRniS2fewffKTNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.218 [XNIO-1 task-5] WIp5eDikRniS2fewffKTNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.239 [XNIO-1 task-5] LOvY663nRS-q9gtWeySt-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.240 [XNIO-1 task-5] LOvY663nRS-q9gtWeySt-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.240 [XNIO-1 task-5] LOvY663nRS-q9gtWeySt-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.240 [XNIO-1 task-6] KtkGSrBqRlmaTDoTL5yETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.241 [XNIO-1 task-5] LOvY663nRS-q9gtWeySt-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3v9o9xhrSrS6OTDspicROw redirectUri = http://localhost:8080/authorization +07:00:46.241 [XNIO-1 task-6] KtkGSrBqRlmaTDoTL5yETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.241 [XNIO-1 task-6] KtkGSrBqRlmaTDoTL5yETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.241 [XNIO-1 task-6] KtkGSrBqRlmaTDoTL5yETA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.247 [XNIO-1 task-6] KtkGSrBqRlmaTDoTL5yETA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.251 [XNIO-1 task-6] UsF5HZ_PT8OXrAuyllvmLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.251 [XNIO-1 task-6] UsF5HZ_PT8OXrAuyllvmLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.252 [XNIO-1 task-6] UsF5HZ_PT8OXrAuyllvmLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.252 [XNIO-1 task-6] UsF5HZ_PT8OXrAuyllvmLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.259 [XNIO-1 task-6] UsF5HZ_PT8OXrAuyllvmLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.260 [XNIO-1 task-6] UsF5HZ_PT8OXrAuyllvmLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.262 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:491377cf-d85d-4103-a06a-f65f26423448 +07:00:46.267 [XNIO-1 task-6] FWKUrVgMSSGXYzxtXTVd-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.267 [XNIO-1 task-6] FWKUrVgMSSGXYzxtXTVd-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.270 [XNIO-1 task-6] FWKUrVgMSSGXYzxtXTVd-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.271 [XNIO-1 task-6] FWKUrVgMSSGXYzxtXTVd-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRlNjAwODUtNmUxMi00NDY0LTk2OGEtMTBhNDk1MGRiYmNlOmxQRS1mb08tVEVpSjdNcHVuM1FfeWc=", "Basic ZWRlNjAwODUtNmUxMi00NDY0LTk2OGEtMTBhNDk1MGRiYmNlOmxQRS1mb08tVEVpSjdNcHVuM1FfeWc=", authorization) +07:00:46.273 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:513b8a6c +07:00:46.275 [XNIO-1 task-5] _PITsevJQc6MJ_Del-5Z1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.276 [XNIO-1 task-5] _PITsevJQc6MJ_Del-5Z1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.276 [XNIO-1 task-6] FWKUrVgMSSGXYzxtXTVd-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.276 [XNIO-1 task-5] _PITsevJQc6MJ_Del-5Z1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.276 [XNIO-1 task-5] _PITsevJQc6MJ_Del-5Z1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", authorization) +07:00:46.284 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:491377cf-d85d-4103-a06a-f65f26423448 +07:00:46.286 [XNIO-1 task-6] FoEIP7iRS8ekrWH6846uWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.286 [XNIO-1 task-6] FoEIP7iRS8ekrWH6846uWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.287 [XNIO-1 task-6] FoEIP7iRS8ekrWH6846uWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.287 [XNIO-1 task-6] FoEIP7iRS8ekrWH6846uWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e7ca1906-8655-4c73-99de-3dec97f1ce21 scope = null +07:00:46.292 [XNIO-1 task-3] RB1yOojEQOyIoEY9olmGqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.292 [XNIO-1 task-3] RB1yOojEQOyIoEY9olmGqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.292 [XNIO-1 task-3] RB1yOojEQOyIoEY9olmGqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.293 [XNIO-1 task-3] RB1yOojEQOyIoEY9olmGqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.298 [XNIO-1 task-3] RB1yOojEQOyIoEY9olmGqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.299 [XNIO-1 task-5] _PITsevJQc6MJ_Del-5Z1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.299 [XNIO-1 task-6] FoEIP7iRS8ekrWH6846uWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.308 [XNIO-1 task-3] yRU3omVjR8Sf7T2c61mJNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.308 [XNIO-1 task-3] yRU3omVjR8Sf7T2c61mJNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.309 [XNIO-1 task-3] yRU3omVjR8Sf7T2c61mJNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.309 [XNIO-1 task-3] yRU3omVjR8Sf7T2c61mJNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.317 [XNIO-1 task-3] yRU3omVjR8Sf7T2c61mJNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.321 [XNIO-1 task-3] EgyyxL7zS6GwrNREagIA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.321 [XNIO-1 task-3] EgyyxL7zS6GwrNREagIA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.322 [XNIO-1 task-3] EgyyxL7zS6GwrNREagIA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.322 [XNIO-1 task-3] EgyyxL7zS6GwrNREagIA7w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 82ddbfb3-00e9-432f-9e1b-bdef25b296cb scope = null +07:00:46.325 [XNIO-1 task-6] ieTJRm14TWKJZw4qb05RYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.355 [XNIO-1 task-6] ieTJRm14TWKJZw4qb05RYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.356 [XNIO-1 task-6] ieTJRm14TWKJZw4qb05RYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.356 [XNIO-1 task-6] ieTJRm14TWKJZw4qb05RYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.368 [XNIO-1 task-3] EgyyxL7zS6GwrNREagIA7w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.376 [XNIO-1 task-6] ieTJRm14TWKJZw4qb05RYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.381 [XNIO-1 task-3] XA4arT8YRaeZdvuy6jXb5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.381 [XNIO-1 task-3] XA4arT8YRaeZdvuy6jXb5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.382 [XNIO-1 task-3] XA4arT8YRaeZdvuy6jXb5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.382 [XNIO-1 task-3] XA4arT8YRaeZdvuy6jXb5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:46.384 [XNIO-1 task-5] DvwEBo2oRYCfWYdgY_vv5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.385 [XNIO-1 task-5] DvwEBo2oRYCfWYdgY_vv5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.385 [XNIO-1 task-5] DvwEBo2oRYCfWYdgY_vv5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.385 [XNIO-1 task-5] DvwEBo2oRYCfWYdgY_vv5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", authorization) +07:00:46.389 [XNIO-1 task-6] qYYBZ8PnRj2eiycKvyf-tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.389 [XNIO-1 task-6] qYYBZ8PnRj2eiycKvyf-tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.389 [XNIO-1 task-6] qYYBZ8PnRj2eiycKvyf-tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.390 [XNIO-1 task-6] qYYBZ8PnRj2eiycKvyf-tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", authorization) +07:00:46.391 [XNIO-1 task-5] DvwEBo2oRYCfWYdgY_vv5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.395 [XNIO-1 task-3] XA4arT8YRaeZdvuy6jXb5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:46.399 [XNIO-1 task-5] 0UJJVZ3kS-2QIvx4VuHksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.399 [XNIO-1 task-5] 0UJJVZ3kS-2QIvx4VuHksQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.399 [XNIO-1 task-3] XA4arT8YRaeZdvuy6jXb5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.399 [XNIO-1 task-5] 0UJJVZ3kS-2QIvx4VuHksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.401 [XNIO-1 task-5] 0UJJVZ3kS-2QIvx4VuHksQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.401 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dcb54c59-e457-4226-85a8-953415e3b0d5 +07:00:46.403 [XNIO-1 task-6] qYYBZ8PnRj2eiycKvyf-tw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.406 [XNIO-1 task-5] 0UJJVZ3kS-2QIvx4VuHksQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.413 [XNIO-1 task-5] jj7mZVAXR5SU1_VidQfSeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.413 [XNIO-1 task-5] jj7mZVAXR5SU1_VidQfSeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.414 [XNIO-1 task-5] jj7mZVAXR5SU1_VidQfSeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.414 [XNIO-1 task-5] jj7mZVAXR5SU1_VidQfSeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.422 [XNIO-1 task-5] jj7mZVAXR5SU1_VidQfSeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.429 [XNIO-1 task-5] 2nf2PMPmTaK5bjRjXZgZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.429 [XNIO-1 task-5] 2nf2PMPmTaK5bjRjXZgZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.430 [XNIO-1 task-5] 2nf2PMPmTaK5bjRjXZgZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.430 [XNIO-1 task-5] 2nf2PMPmTaK5bjRjXZgZzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.437 [XNIO-1 task-5] 2nf2PMPmTaK5bjRjXZgZzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.444 [XNIO-1 task-5] SUBpRqGoRKu6O45RrfpQZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.444 [XNIO-1 task-5] SUBpRqGoRKu6O45RrfpQZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.445 [XNIO-1 task-5] SUBpRqGoRKu6O45RrfpQZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.445 [XNIO-1 task-5] SUBpRqGoRKu6O45RrfpQZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.450 [XNIO-1 task-5] SUBpRqGoRKu6O45RrfpQZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.458 [XNIO-1 task-5] Fm9mSePEQrWyEw2QmOTaEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.458 [XNIO-1 task-5] Fm9mSePEQrWyEw2QmOTaEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.458 [XNIO-1 task-5] Fm9mSePEQrWyEw2QmOTaEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.459 [XNIO-1 task-5] Fm9mSePEQrWyEw2QmOTaEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.465 [XNIO-1 task-5] Fm9mSePEQrWyEw2QmOTaEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.466 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:513b8a6c +07:00:46.474 [XNIO-1 task-5] e0WKDVm8RnGzCT8NJu2vww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.474 [XNIO-1 task-5] e0WKDVm8RnGzCT8NJu2vww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.474 [XNIO-1 task-5] e0WKDVm8RnGzCT8NJu2vww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.474 [XNIO-1 task-5] e0WKDVm8RnGzCT8NJu2vww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.479 [XNIO-1 task-5] e0WKDVm8RnGzCT8NJu2vww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.480 [XNIO-1 task-6] RHf3jCE2QqC4xMR2SJBCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.480 [XNIO-1 task-6] RHf3jCE2QqC4xMR2SJBCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.481 [XNIO-1 task-6] RHf3jCE2QqC4xMR2SJBCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.481 [XNIO-1 task-6] RHf3jCE2QqC4xMR2SJBCGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uFk4NwB4QS-kjmCC636Qog redirectUri = http://localhost:8080/authorization +07:00:46.484 [XNIO-1 task-5] g0CyiXUHQPqc_ViIMkyYkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.484 [XNIO-1 task-5] g0CyiXUHQPqc_ViIMkyYkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.485 [XNIO-1 task-5] g0CyiXUHQPqc_ViIMkyYkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.485 [XNIO-1 task-5] g0CyiXUHQPqc_ViIMkyYkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.491 [XNIO-1 task-5] g0CyiXUHQPqc_ViIMkyYkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.497 [XNIO-1 task-5] Q4L3tVVKQ7u4OhnbDaf9Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.497 [XNIO-1 task-5] Q4L3tVVKQ7u4OhnbDaf9Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.498 [XNIO-1 task-5] Q4L3tVVKQ7u4OhnbDaf9Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.498 [XNIO-1 task-5] Q4L3tVVKQ7u4OhnbDaf9Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:46.498 [XNIO-1 task-6] RHf3jCE2QqC4xMR2SJBCGQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.503 [XNIO-1 task-5] Q4L3tVVKQ7u4OhnbDaf9Nw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.510 [XNIO-1 task-5] TBx6hDKOSES3SS7qk_4OOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.510 [XNIO-1 task-5] TBx6hDKOSES3SS7qk_4OOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.510 [XNIO-1 task-5] TBx6hDKOSES3SS7qk_4OOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.511 [XNIO-1 task-5] TBx6hDKOSES3SS7qk_4OOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:46.517 [XNIO-1 task-5] TBx6hDKOSES3SS7qk_4OOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.528 [XNIO-1 task-5] Hw73M8QQSyytNeBoV8da2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.528 [XNIO-1 task-5] Hw73M8QQSyytNeBoV8da2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.531 [XNIO-1 task-5] Hw73M8QQSyytNeBoV8da2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.531 [XNIO-1 task-5] Hw73M8QQSyytNeBoV8da2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:46.536 [XNIO-1 task-5] Hw73M8QQSyytNeBoV8da2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.544 [XNIO-1 task-5] is7YOrkSSLqvbd-bEFtVkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.544 [XNIO-1 task-5] is7YOrkSSLqvbd-bEFtVkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.544 [XNIO-1 task-5] is7YOrkSSLqvbd-bEFtVkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.544 [XNIO-1 task-5] is7YOrkSSLqvbd-bEFtVkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", authorization) +07:00:46.551 [XNIO-1 task-5] is7YOrkSSLqvbd-bEFtVkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.557 [XNIO-1 task-5] 91Un_QpSTtCUx7rqvirqLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.558 [XNIO-1 task-5] 91Un_QpSTtCUx7rqvirqLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.559 [XNIO-1 task-5] 91Un_QpSTtCUx7rqvirqLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.559 [XNIO-1 task-5] 91Un_QpSTtCUx7rqvirqLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNDI5ZTUtMmNjMy00YjhkLTgxZjUtNzY2YzNiN2M4MWY2Om5sQnJGVGNtUkhlZjFlaVVpQXF0VXc=", "Basic MGMyNDI5ZTUtMmNjMy00YjhkLTgxZjUtNzY2YzNiN2M4MWY2Om5sQnJGVGNtUkhlZjFlaVVpQXF0VXc=", authorization) +07:00:46.564 [XNIO-1 task-5] 91Un_QpSTtCUx7rqvirqLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.570 [XNIO-1 task-5] rOkRyhz5QUe4_q7SXoPVRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.570 [XNIO-1 task-5] rOkRyhz5QUe4_q7SXoPVRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.570 [XNIO-1 task-5] rOkRyhz5QUe4_q7SXoPVRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.571 [XNIO-1 task-5] rOkRyhz5QUe4_q7SXoPVRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:46.576 [XNIO-1 task-5] rOkRyhz5QUe4_q7SXoPVRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.585 [XNIO-1 task-5] mlysWOGEQoelZwQDtJTqtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.586 [XNIO-1 task-5] mlysWOGEQoelZwQDtJTqtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.586 [XNIO-1 task-5] mlysWOGEQoelZwQDtJTqtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.586 [XNIO-1 task-5] mlysWOGEQoelZwQDtJTqtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:46.592 [XNIO-1 task-5] mlysWOGEQoelZwQDtJTqtQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.606 [XNIO-1 task-5] RngabsLHTAS1neggNhBD6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.606 [XNIO-1 task-5] RngabsLHTAS1neggNhBD6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.606 [XNIO-1 task-5] RngabsLHTAS1neggNhBD6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.607 [XNIO-1 task-5] RngabsLHTAS1neggNhBD6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:46.611 [XNIO-1 task-5] RngabsLHTAS1neggNhBD6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.626 [XNIO-1 task-5] XCWA9bpeRd-J9nNVDXAd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.626 [XNIO-1 task-5] XCWA9bpeRd-J9nNVDXAd6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.626 [XNIO-1 task-6] vxfuuSLXSvqKGPqLQcybJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.626 [XNIO-1 task-5] XCWA9bpeRd-J9nNVDXAd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.626 [XNIO-1 task-5] XCWA9bpeRd-J9nNVDXAd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.626 [XNIO-1 task-6] vxfuuSLXSvqKGPqLQcybJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.626 [XNIO-1 task-5] XCWA9bpeRd-J9nNVDXAd6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", authorization) +07:00:46.627 [XNIO-1 task-6] vxfuuSLXSvqKGPqLQcybJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:46.635 [XNIO-1 task-6] vxfuuSLXSvqKGPqLQcybJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.635 [XNIO-1 task-5] XCWA9bpeRd-J9nNVDXAd6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:46.636 [XNIO-1 task-5] XCWA9bpeRd-J9nNVDXAd6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.638 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8d65ba98-7ef7-40af-8ada-1b09a8429298 +07:00:46.642 [XNIO-1 task-6] 0xBnFqcDTL-sFi44jEbyuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.642 [XNIO-1 task-6] 0xBnFqcDTL-sFi44jEbyuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.643 [XNIO-1 task-6] 0xBnFqcDTL-sFi44jEbyuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.643 [XNIO-1 task-6] 0xBnFqcDTL-sFi44jEbyuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.649 [XNIO-1 task-6] 0xBnFqcDTL-sFi44jEbyuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.660 [XNIO-1 task-6] PNSTZPM6TgyTQaeTqtzBkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.661 [XNIO-1 task-6] PNSTZPM6TgyTQaeTqtzBkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.661 [XNIO-1 task-6] PNSTZPM6TgyTQaeTqtzBkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.662 [XNIO-1 task-6] PNSTZPM6TgyTQaeTqtzBkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:46.671 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8d65ba98-7ef7-40af-8ada-1b09a8429298 +07:00:46.675 [XNIO-1 task-6] PNSTZPM6TgyTQaeTqtzBkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.677 [XNIO-1 task-5] VKgbYkBAQw2jiof_YwIpjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.677 [XNIO-1 task-5] VKgbYkBAQw2jiof_YwIpjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.677 [XNIO-1 task-5] VKgbYkBAQw2jiof_YwIpjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.678 [XNIO-1 task-5] VKgbYkBAQw2jiof_YwIpjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -fi3b7gzRH-R5p6nb5JweA redirectUri = http://localhost:8080/authorization +07:00:46.679 [XNIO-1 task-6] Twdb9ltlTlSxO6nxq297Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.679 [XNIO-1 task-6] Twdb9ltlTlSxO6nxq297Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.680 [XNIO-1 task-6] Twdb9ltlTlSxO6nxq297Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.680 [XNIO-1 task-6] Twdb9ltlTlSxO6nxq297Hg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = zG2SEk8XQoC4Z2YSBt_12Q redirectUri = http://localhost:8080/authorization +07:00:46.684 [XNIO-1 task-3] i_1OnnBbTM25qsXPID8m1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.684 [XNIO-1 task-3] i_1OnnBbTM25qsXPID8m1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.684 [XNIO-1 task-3] i_1OnnBbTM25qsXPID8m1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.684 [XNIO-1 task-3] i_1OnnBbTM25qsXPID8m1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.687 [XNIO-1 task-5] VKgbYkBAQw2jiof_YwIpjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:46.687 [XNIO-1 task-5] VKgbYkBAQw2jiof_YwIpjA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.688 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ffcafb8e +07:00:46.690 [XNIO-1 task-6] Twdb9ltlTlSxO6nxq297Hg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.691 [XNIO-1 task-3] i_1OnnBbTM25qsXPID8m1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.691 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8d65ba98-7ef7-40af-8ada-1b09a8429298 +07:00:46.697 [XNIO-1 task-3] bzhSPzApTYmoWvedzl0H3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.697 [XNIO-1 task-3] bzhSPzApTYmoWvedzl0H3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.699 [XNIO-1 task-3] bzhSPzApTYmoWvedzl0H3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.700 [XNIO-1 task-3] bzhSPzApTYmoWvedzl0H3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.708 [XNIO-1 task-3] bzhSPzApTYmoWvedzl0H3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.719 [XNIO-1 task-3] ri8rxVaATpeKsG0mT8QKcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.719 [XNIO-1 task-3] ri8rxVaATpeKsG0mT8QKcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.720 [XNIO-1 task-3] ri8rxVaATpeKsG0mT8QKcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.720 [XNIO-1 task-3] ri8rxVaATpeKsG0mT8QKcw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:46.725 [XNIO-1 task-3] ri8rxVaATpeKsG0mT8QKcw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.730 [XNIO-1 task-3] ZdYCje--Ts2QUzt8eWUI5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.730 [XNIO-1 task-3] ZdYCje--Ts2QUzt8eWUI5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.731 [XNIO-1 task-3] ZdYCje--Ts2QUzt8eWUI5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.731 [XNIO-1 task-3] ZdYCje--Ts2QUzt8eWUI5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", authorization) +07:00:46.736 [XNIO-1 task-3] ZdYCje--Ts2QUzt8eWUI5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.747 [XNIO-1 task-3] NwKIlN4KQGG3_mcjlrFl1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.747 [XNIO-1 task-3] NwKIlN4KQGG3_mcjlrFl1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.747 [XNIO-1 task-3] NwKIlN4KQGG3_mcjlrFl1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.748 [XNIO-1 task-3] NwKIlN4KQGG3_mcjlrFl1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", authorization) +07:00:46.783 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:bf061091 +07:00:46.784 [XNIO-1 task-3] NwKIlN4KQGG3_mcjlrFl1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.794 [XNIO-1 task-3] 4S_UjPdsQiaQPVDp9CC3IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.794 [XNIO-1 task-3] 4S_UjPdsQiaQPVDp9CC3IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.794 [XNIO-1 task-3] 4S_UjPdsQiaQPVDp9CC3IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.795 [XNIO-1 task-3] 4S_UjPdsQiaQPVDp9CC3IQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.803 [XNIO-1 task-3] 4S_UjPdsQiaQPVDp9CC3IQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.807 [XNIO-1 task-6] 3ON51hYTTx23ZyB0LHMAxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.807 [XNIO-1 task-6] 3ON51hYTTx23ZyB0LHMAxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.812 [XNIO-1 task-6] 3ON51hYTTx23ZyB0LHMAxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.812 [XNIO-1 task-6] 3ON51hYTTx23ZyB0LHMAxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = NKHhASO-RtC8rcVeY7CEIg redirectUri = http://localhost:8080/authorization +07:00:46.817 [XNIO-1 task-3] 0APTfZsgTZCQwAGsKuiv_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.817 [XNIO-1 task-3] 0APTfZsgTZCQwAGsKuiv_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.818 [XNIO-1 task-3] 0APTfZsgTZCQwAGsKuiv_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.818 [XNIO-1 task-3] 0APTfZsgTZCQwAGsKuiv_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.820 [XNIO-1 task-6] 3ON51hYTTx23ZyB0LHMAxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.829 [XNIO-1 task-3] 0APTfZsgTZCQwAGsKuiv_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.840 [XNIO-1 task-3] gbmjO4dpQb--4hdvtbkZuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.841 [XNIO-1 task-3] gbmjO4dpQb--4hdvtbkZuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.841 [XNIO-1 task-3] gbmjO4dpQb--4hdvtbkZuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.842 [XNIO-1 task-3] gbmjO4dpQb--4hdvtbkZuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", authorization) +07:00:46.843 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ffcafb8e +07:00:46.847 [XNIO-1 task-3] gbmjO4dpQb--4hdvtbkZuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.855 [XNIO-1 task-3] Oq95ob-oTgapE0M-eeZRiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.855 [XNIO-1 task-3] Oq95ob-oTgapE0M-eeZRiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.856 [XNIO-1 task-3] Oq95ob-oTgapE0M-eeZRiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.856 [XNIO-1 task-3] Oq95ob-oTgapE0M-eeZRiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", authorization) +07:00:46.862 [XNIO-1 task-3] Oq95ob-oTgapE0M-eeZRiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.868 [XNIO-1 task-3] LpT9noEATICbbc1R_BkwSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.868 [XNIO-1 task-3] LpT9noEATICbbc1R_BkwSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.868 [XNIO-1 task-3] LpT9noEATICbbc1R_BkwSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.869 [XNIO-1 task-3] LpT9noEATICbbc1R_BkwSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:46.873 [XNIO-1 task-6] fShMVCwgT0evDdW8S1PYxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.873 [XNIO-1 task-3] LpT9noEATICbbc1R_BkwSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.874 [XNIO-1 task-6] fShMVCwgT0evDdW8S1PYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.874 [XNIO-1 task-6] fShMVCwgT0evDdW8S1PYxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.874 [XNIO-1 task-6] fShMVCwgT0evDdW8S1PYxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", authorization) +07:00:46.878 [XNIO-1 task-3] g2Q_A_zXRw28e8YtmgDKXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.878 [XNIO-1 task-3] g2Q_A_zXRw28e8YtmgDKXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.878 [XNIO-1 task-3] g2Q_A_zXRw28e8YtmgDKXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.878 [XNIO-1 task-3] g2Q_A_zXRw28e8YtmgDKXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:46.883 [XNIO-1 task-6] fShMVCwgT0evDdW8S1PYxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:46.883 [XNIO-1 task-6] fShMVCwgT0evDdW8S1PYxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.884 [XNIO-1 task-3] g2Q_A_zXRw28e8YtmgDKXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.889 [XNIO-1 task-3] KoXlMdQRRXCHypNEtOoFLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.889 [XNIO-1 task-3] KoXlMdQRRXCHypNEtOoFLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.889 [XNIO-1 task-3] KoXlMdQRRXCHypNEtOoFLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.890 [XNIO-1 task-3] KoXlMdQRRXCHypNEtOoFLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:46.895 [XNIO-1 task-3] KoXlMdQRRXCHypNEtOoFLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.901 [XNIO-1 task-3] FtHa0dvpTd-64IkwewNidg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.901 [XNIO-1 task-3] FtHa0dvpTd-64IkwewNidg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.902 [XNIO-1 task-3] FtHa0dvpTd-64IkwewNidg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.903 [XNIO-1 task-3] FtHa0dvpTd-64IkwewNidg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:46.911 [XNIO-1 task-3] FtHa0dvpTd-64IkwewNidg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.915 [XNIO-1 task-3] 1AhLNksFS1mmj0bmFPReag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.916 [XNIO-1 task-3] 1AhLNksFS1mmj0bmFPReag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.916 [XNIO-1 task-3] 1AhLNksFS1mmj0bmFPReag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.917 [XNIO-1 task-3] 1AhLNksFS1mmj0bmFPReag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:46.922 [XNIO-1 task-6] yffQ7uMHQyCZADDQGivbJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.923 [XNIO-1 task-6] yffQ7uMHQyCZADDQGivbJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.923 [XNIO-1 task-6] yffQ7uMHQyCZADDQGivbJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.923 [XNIO-1 task-3] 1AhLNksFS1mmj0bmFPReag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.924 [XNIO-1 task-3] 1AhLNksFS1mmj0bmFPReag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.930 [XNIO-1 task-3] nGXxN9FxRvSYyDtG7_nlLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.930 [XNIO-1 task-3] nGXxN9FxRvSYyDtG7_nlLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.930 [XNIO-1 task-3] nGXxN9FxRvSYyDtG7_nlLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.931 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:42a7833a-e83a-4fd6-b12f-48f18409c463 +07:00:46.931 [XNIO-1 task-3] nGXxN9FxRvSYyDtG7_nlLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.934 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:42a7833a-e83a-4fd6-b12f-48f18409c463 +07:00:46.936 [XNIO-1 task-3] nGXxN9FxRvSYyDtG7_nlLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.942 [XNIO-1 task-3] DZfX_Q8rSbaYSh7Vw4Ys7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.942 [XNIO-1 task-3] DZfX_Q8rSbaYSh7Vw4Ys7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.942 [XNIO-1 task-3] DZfX_Q8rSbaYSh7Vw4Ys7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.943 [XNIO-1 task-3] DZfX_Q8rSbaYSh7Vw4Ys7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.948 [XNIO-1 task-5] ssHKtFMWQWGIXt50Io_Hvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.948 [XNIO-1 task-3] DZfX_Q8rSbaYSh7Vw4Ys7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.949 [XNIO-1 task-3] DZfX_Q8rSbaYSh7Vw4Ys7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.949 [XNIO-1 task-5] ssHKtFMWQWGIXt50Io_Hvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:46.949 [XNIO-1 task-5] ssHKtFMWQWGIXt50Io_Hvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 873412ad-0202-4b19-9a80-cfab20275ade scope = null +07:00:46.955 [XNIO-1 task-6] yffQ7uMHQyCZADDQGivbJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.958 [XNIO-1 task-3] IsY43t7ARFubWDe3LQt5QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.958 [XNIO-1 task-3] IsY43t7ARFubWDe3LQt5QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.958 [XNIO-1 task-3] IsY43t7ARFubWDe3LQt5QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.959 [XNIO-1 task-5] ssHKtFMWQWGIXt50Io_Hvw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:46.959 [XNIO-1 task-3] IsY43t7ARFubWDe3LQt5QA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:46.968 [XNIO-1 task-3] IsY43t7ARFubWDe3LQt5QA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:46.973 [XNIO-1 task-3] Cw8vG5wGTe6Tpq_jdkpJFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.975 [XNIO-1 task-3] Cw8vG5wGTe6Tpq_jdkpJFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.975 [XNIO-1 task-3] Cw8vG5wGTe6Tpq_jdkpJFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.976 [XNIO-1 task-3] Cw8vG5wGTe6Tpq_jdkpJFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", authorization) +07:00:46.977 [XNIO-1 task-6] XR2JINjeSvGXkY5mY15oVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.978 [XNIO-1 task-6] XR2JINjeSvGXkY5mY15oVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.978 [XNIO-1 task-6] XR2JINjeSvGXkY5mY15oVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.978 [XNIO-1 task-6] XR2JINjeSvGXkY5mY15oVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:46.978 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c698ac61-a5f9-49f3-83db-9c1c6b591882 +07:00:46.984 [XNIO-1 task-6] XR2JINjeSvGXkY5mY15oVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.991 [XNIO-1 task-6] Go2JWTr5SNeAa_V4eQzUNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.991 [XNIO-1 task-6] Go2JWTr5SNeAa_V4eQzUNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:46.992 [XNIO-1 task-6] Go2JWTr5SNeAa_V4eQzUNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:46.992 [XNIO-1 task-6] Go2JWTr5SNeAa_V4eQzUNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDJhNzgzM2EtZTgzYS00ZmQ2LWIxMmYtNDhmMTg0MDljNDYzOjZyeWlPcC0xU2c2TEx0VklvajJtUWc=", "Basic NDJhNzgzM2EtZTgzYS00ZmQ2LWIxMmYtNDhmMTg0MDljNDYzOjZyeWlPcC0xU2c2TEx0VklvajJtUWc=", authorization) +07:00:46.994 [XNIO-1 task-3] Cw8vG5wGTe6Tpq_jdkpJFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:46.999 [XNIO-1 task-6] Go2JWTr5SNeAa_V4eQzUNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.008 [XNIO-1 task-3] 7Q0e22eeQHeF_oWWQupwMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.010 [XNIO-1 task-3] 7Q0e22eeQHeF_oWWQupwMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.010 [XNIO-1 task-3] 7Q0e22eeQHeF_oWWQupwMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.010 [XNIO-1 task-3] 7Q0e22eeQHeF_oWWQupwMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:47.018 [XNIO-1 task-3] 7Q0e22eeQHeF_oWWQupwMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.027 [XNIO-1 task-3] DAqzlJ2kSbO2b4mEeELu_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.028 [XNIO-1 task-3] DAqzlJ2kSbO2b4mEeELu_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.028 [XNIO-1 task-3] DAqzlJ2kSbO2b4mEeELu_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.028 [XNIO-1 task-3] DAqzlJ2kSbO2b4mEeELu_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:47.031 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5902c9f3-9e52-435a-9e44-0215e49fa165 +07:00:47.036 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5902c9f3-9e52-435a-9e44-0215e49fa165 +07:00:47.038 [XNIO-1 task-6] vpeX2O8rT2WIcbq4hDsVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.038 [XNIO-1 task-6] vpeX2O8rT2WIcbq4hDsVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.038 [XNIO-1 task-6] vpeX2O8rT2WIcbq4hDsVgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.039 [XNIO-1 task-6] vpeX2O8rT2WIcbq4hDsVgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = GgKJLNFhS5y5WAYx-9zbOQ redirectUri = http://localhost:8080/authorization +07:00:47.046 [XNIO-1 task-3] DAqzlJ2kSbO2b4mEeELu_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.050 [XNIO-1 task-6] vpeX2O8rT2WIcbq4hDsVgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.051 [XNIO-1 task-3] wYnaA06DQk6WUY-PZ1JmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.051 [XNIO-1 task-3] wYnaA06DQk6WUY-PZ1JmqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.052 [XNIO-1 task-3] wYnaA06DQk6WUY-PZ1JmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.052 [XNIO-1 task-3] wYnaA06DQk6WUY-PZ1JmqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:47.053 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a582426f-575a-48fe-924a-c5b37bd96bc6 +07:00:47.058 [XNIO-1 task-3] wYnaA06DQk6WUY-PZ1JmqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.068 [XNIO-1 task-3] hnVHGlkiQXu5ljHTavhV7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.068 [XNIO-1 task-3] hnVHGlkiQXu5ljHTavhV7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.068 [XNIO-1 task-3] hnVHGlkiQXu5ljHTavhV7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.069 [XNIO-1 task-3] hnVHGlkiQXu5ljHTavhV7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:47.070 [XNIO-1 task-6] owIVjSzrSBe5DUVZFggXKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.070 [XNIO-1 task-6] owIVjSzrSBe5DUVZFggXKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.070 [XNIO-1 task-6] owIVjSzrSBe5DUVZFggXKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.071 [XNIO-1 task-6] owIVjSzrSBe5DUVZFggXKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", "Basic NDcwZWNmZTEtMGYxYy00OWI5LWFiOTItYmMwMTg1ZjFiNmEyOmVBM1NHMEZyVEhhclF4TF83N194YXc=", authorization) +07:00:47.078 [XNIO-1 task-6] owIVjSzrSBe5DUVZFggXKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.081 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a582426f-575a-48fe-924a-c5b37bd96bc6 +07:00:47.087 [XNIO-1 task-6] 9rE0BXlQToqzMaSxAeVMqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.087 [XNIO-1 task-6] 9rE0BXlQToqzMaSxAeVMqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.087 [XNIO-1 task-6] 9rE0BXlQToqzMaSxAeVMqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.088 [XNIO-1 task-6] 9rE0BXlQToqzMaSxAeVMqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.091 [XNIO-1 task-3] hnVHGlkiQXu5ljHTavhV7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.094 [XNIO-1 task-6] 9rE0BXlQToqzMaSxAeVMqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.104 [XNIO-1 task-6] Yk7uCuS5TjiNusBjljemIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.104 [XNIO-1 task-6] Yk7uCuS5TjiNusBjljemIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.104 [XNIO-1 task-6] Yk7uCuS5TjiNusBjljemIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.104 [XNIO-1 task-6] Yk7uCuS5TjiNusBjljemIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.107 [XNIO-1 task-3] zZjItQ3FTIqf0VokBlkCfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.107 [XNIO-1 task-3] zZjItQ3FTIqf0VokBlkCfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.107 [XNIO-1 task-3] zZjItQ3FTIqf0VokBlkCfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.108 [XNIO-1 task-3] zZjItQ3FTIqf0VokBlkCfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5f0d8b91-4400-4427-99ee-dbd53c5f0af2 scope = null +07:00:47.113 [XNIO-1 task-6] Yk7uCuS5TjiNusBjljemIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.119 [XNIO-1 task-3] zZjItQ3FTIqf0VokBlkCfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.121 [XNIO-1 task-6] 5a-zJg1ES1C0Hn6MaaoWQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.121 [XNIO-1 task-6] 5a-zJg1ES1C0Hn6MaaoWQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.121 [XNIO-1 task-6] 5a-zJg1ES1C0Hn6MaaoWQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.121 [XNIO-1 task-6] 5a-zJg1ES1C0Hn6MaaoWQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY5OGFjNjEtYTVmOS00OWYzLTgzZGItOWMxYzZiNTkxODgyOktSTkhOYk5NUnJ1WEUxMzV6VVNad0E=", "Basic YzY5OGFjNjEtYTVmOS00OWYzLTgzZGItOWMxYzZiNTkxODgyOktSTkhOYk5NUnJ1WEUxMzV6VVNad0E=", authorization) +07:00:47.123 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e9f8c629-85b7-4675-b77c-6d5f0605e330 +07:00:47.126 [XNIO-1 task-6] 5a-zJg1ES1C0Hn6MaaoWQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.133 [XNIO-1 task-3] 2iETF6SOQe6GUIa2lNRoWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.133 [XNIO-1 task-6] kBYLxxwYRHS0ZuCLbbhFPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.134 [XNIO-1 task-6] kBYLxxwYRHS0ZuCLbbhFPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.134 [XNIO-1 task-6] kBYLxxwYRHS0ZuCLbbhFPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.134 [XNIO-1 task-3] 2iETF6SOQe6GUIa2lNRoWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.134 [XNIO-1 task-3] 2iETF6SOQe6GUIa2lNRoWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.134 [XNIO-1 task-6] kBYLxxwYRHS0ZuCLbbhFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", "Basic NDgzZGIzNTMtNTdlMi00ODAyLTk3NGUtNzNjYWVkZWIyODIyOnd5NkZIRTc0VFNxNEd3S2tnSHd3dUE=", authorization) +07:00:47.134 [XNIO-1 task-6] kBYLxxwYRHS0ZuCLbbhFPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.136 [XNIO-1 task-5] LBn_rDk1Tbatvw-EdVNIwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.136 [XNIO-1 task-5] LBn_rDk1Tbatvw-EdVNIwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.137 [XNIO-1 task-5] LBn_rDk1Tbatvw-EdVNIwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.137 [XNIO-1 task-5] LBn_rDk1Tbatvw-EdVNIwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:47.140 [XNIO-1 task-6] kBYLxxwYRHS0ZuCLbbhFPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.143 [XNIO-1 task-3] 2iETF6SOQe6GUIa2lNRoWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:47.144 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e9f8c629-85b7-4675-b77c-6d5f0605e330 +07:00:47.149 [XNIO-1 task-6] iHiOEtxyQva0SgK9y9B22Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.149 [XNIO-1 task-6] iHiOEtxyQva0SgK9y9B22Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.149 [XNIO-1 task-6] iHiOEtxyQva0SgK9y9B22Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.150 [XNIO-1 task-6] iHiOEtxyQva0SgK9y9B22Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:47.151 [XNIO-1 task-5] LBn_rDk1Tbatvw-EdVNIwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.155 [XNIO-1 task-6] iHiOEtxyQva0SgK9y9B22Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.166 [XNIO-1 task-6] xPrECyaXSqODNzFyCv0ocg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.166 [XNIO-1 task-6] xPrECyaXSqODNzFyCv0ocg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.166 [XNIO-1 task-6] xPrECyaXSqODNzFyCv0ocg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.167 [XNIO-1 task-6] xPrECyaXSqODNzFyCv0ocg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:47.169 [XNIO-1 task-5] exOvQ4znRniXj5-6JQv7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.169 [XNIO-1 task-5] exOvQ4znRniXj5-6JQv7hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.170 [XNIO-1 task-5] exOvQ4znRniXj5-6JQv7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.170 [XNIO-1 task-5] exOvQ4znRniXj5-6JQv7hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTllZTU2ZTAtMzdkZi00MzIzLWIwNjgtZTAzNGYwMmE0MGVmOldKTTQzTjQyVDllX0pXeGpKUVZuZUE=", "Basic ZTllZTU2ZTAtMzdkZi00MzIzLWIwNjgtZTAzNGYwMmE0MGVmOldKTTQzTjQyVDllX0pXeGpKUVZuZUE=", authorization) +07:00:47.173 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dcb54c59-e457-4226-85a8-953415e3b0d5 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dcb54c59-e457-4226-85a8-953415e3b0d5 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.180 [XNIO-1 task-5] exOvQ4znRniXj5-6JQv7hQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.188 [XNIO-1 task-5] Lv--kUePRIiDQpvtiaS9bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.188 [XNIO-1 task-5] Lv--kUePRIiDQpvtiaS9bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.189 [XNIO-1 task-5] Lv--kUePRIiDQpvtiaS9bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.189 [XNIO-1 task-5] Lv--kUePRIiDQpvtiaS9bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", authorization) +07:00:47.199 [XNIO-1 task-5] Lv--kUePRIiDQpvtiaS9bQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.208 [XNIO-1 task-5] T9osxHrpQomTEwbAQqqqFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.208 [XNIO-1 task-5] T9osxHrpQomTEwbAQqqqFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.209 [XNIO-1 task-5] T9osxHrpQomTEwbAQqqqFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.209 [XNIO-1 task-5] T9osxHrpQomTEwbAQqqqFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", authorization) +07:00:47.222 [XNIO-1 task-5] T9osxHrpQomTEwbAQqqqFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.230 [XNIO-1 task-5] CnmZ_q8uQ8ys5-YRueEZDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.230 [XNIO-1 task-5] CnmZ_q8uQ8ys5-YRueEZDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.231 [XNIO-1 task-5] CnmZ_q8uQ8ys5-YRueEZDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.231 [XNIO-1 task-5] CnmZ_q8uQ8ys5-YRueEZDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", authorization) +07:00:47.238 [XNIO-1 task-5] CnmZ_q8uQ8ys5-YRueEZDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.244 [XNIO-1 task-5] BQiV-leYQEm65n1s-sRPiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.244 [XNIO-1 task-5] BQiV-leYQEm65n1s-sRPiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.244 [XNIO-1 task-5] BQiV-leYQEm65n1s-sRPiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.245 [XNIO-1 task-5] BQiV-leYQEm65n1s-sRPiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", authorization) +07:00:47.252 [XNIO-1 task-5] BQiV-leYQEm65n1s-sRPiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.265 [XNIO-1 task-5] 8PHei-ylQA2xBYN9HS9OaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.265 [XNIO-1 task-5] 8PHei-ylQA2xBYN9HS9OaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.266 [XNIO-1 task-5] 8PHei-ylQA2xBYN9HS9OaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.266 [XNIO-1 task-5] 8PHei-ylQA2xBYN9HS9OaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", authorization) +07:00:47.272 [XNIO-1 task-5] 8PHei-ylQA2xBYN9HS9OaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.281 [XNIO-1 task-5] _TMKJ9kdTqmL1UxOZAUxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.281 [XNIO-1 task-5] _TMKJ9kdTqmL1UxOZAUxTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.282 [XNIO-1 task-5] _TMKJ9kdTqmL1UxOZAUxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.282 [XNIO-1 task-5] _TMKJ9kdTqmL1UxOZAUxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:47.289 [XNIO-1 task-5] _TMKJ9kdTqmL1UxOZAUxTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.306 [XNIO-1 task-5] _OSRcR5oRGKYZINOGMaDYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.306 [XNIO-1 task-5] _OSRcR5oRGKYZINOGMaDYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.306 [XNIO-1 task-5] _OSRcR5oRGKYZINOGMaDYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.307 [XNIO-1 task-5] _OSRcR5oRGKYZINOGMaDYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:47.314 [XNIO-1 task-5] _OSRcR5oRGKYZINOGMaDYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.326 [XNIO-1 task-5] LijvePoaS_akM2oGBUOYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.326 [XNIO-1 task-5] LijvePoaS_akM2oGBUOYPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.326 [XNIO-1 task-5] LijvePoaS_akM2oGBUOYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.327 [XNIO-1 task-5] LijvePoaS_akM2oGBUOYPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:47.332 [XNIO-1 task-5] LijvePoaS_akM2oGBUOYPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.341 [XNIO-1 task-5] 68BbksItSI6eMOVTx4f-UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.341 [XNIO-1 task-5] 68BbksItSI6eMOVTx4f-UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.341 [XNIO-1 task-5] 68BbksItSI6eMOVTx4f-UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.342 [XNIO-1 task-5] 68BbksItSI6eMOVTx4f-UA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:47.344 [XNIO-1 task-6] TBGd15xMSQqXwmISJsEdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.345 [XNIO-1 task-6] TBGd15xMSQqXwmISJsEdmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.345 [XNIO-1 task-6] TBGd15xMSQqXwmISJsEdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.345 [XNIO-1 task-6] TBGd15xMSQqXwmISJsEdmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", authorization) +07:00:47.347 [XNIO-1 task-5] 68BbksItSI6eMOVTx4f-UA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.355 [XNIO-1 task-5] JsGBlwogSpaoBFq08-zIrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.356 [XNIO-1 task-5] JsGBlwogSpaoBFq08-zIrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.356 [XNIO-1 task-5] JsGBlwogSpaoBFq08-zIrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.356 [XNIO-1 task-5] JsGBlwogSpaoBFq08-zIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:47.362 [XNIO-1 task-5] JsGBlwogSpaoBFq08-zIrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.367 [XNIO-1 task-6] TBGd15xMSQqXwmISJsEdmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:47.367 [XNIO-1 task-6] TBGd15xMSQqXwmISJsEdmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.372 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9f0a3d5d +07:00:47.377 [XNIO-1 task-5] YSn7nr2xQ4uBP-z993cCwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.377 [XNIO-1 task-5] YSn7nr2xQ4uBP-z993cCwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.378 [XNIO-1 task-5] YSn7nr2xQ4uBP-z993cCwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.378 [XNIO-1 task-5] YSn7nr2xQ4uBP-z993cCwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:47.384 [XNIO-1 task-5] YSn7nr2xQ4uBP-z993cCwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.390 [XNIO-1 task-5] MyiyBlypS4qYJhZKkR1zvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.390 [XNIO-1 task-5] MyiyBlypS4qYJhZKkR1zvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.390 [XNIO-1 task-5] MyiyBlypS4qYJhZKkR1zvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.391 [XNIO-1 task-5] MyiyBlypS4qYJhZKkR1zvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:47.396 [XNIO-1 task-5] MyiyBlypS4qYJhZKkR1zvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.417 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:513b8a6c +07:00:47.419 [XNIO-1 task-6] t4y4ZIalQYusTlXnZhF8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.419 [XNIO-1 task-6] t4y4ZIalQYusTlXnZhF8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.419 [XNIO-1 task-6] t4y4ZIalQYusTlXnZhF8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.420 [XNIO-1 task-6] t4y4ZIalQYusTlXnZhF8mQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YQ9RGW0NTMeWqFRfsbEBjw redirectUri = http://localhost:8080/authorization +07:00:47.425 [XNIO-1 task-5] bgevGOYSTB2Gn0u6A1LrIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.427 [XNIO-1 task-5] bgevGOYSTB2Gn0u6A1LrIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.427 [XNIO-1 task-5] bgevGOYSTB2Gn0u6A1LrIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.427 [XNIO-1 task-3] WNRj6CIORNeIWqYHhXv-8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.427 [XNIO-1 task-3] WNRj6CIORNeIWqYHhXv-8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.428 [XNIO-1 task-5] bgevGOYSTB2Gn0u6A1LrIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.428 [XNIO-1 task-3] WNRj6CIORNeIWqYHhXv-8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.428 [XNIO-1 task-3] WNRj6CIORNeIWqYHhXv-8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:47.431 [XNIO-1 task-6] t4y4ZIalQYusTlXnZhF8mQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:47.431 [XNIO-1 task-6] t4y4ZIalQYusTlXnZhF8mQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.433 [XNIO-1 task-5] bgevGOYSTB2Gn0u6A1LrIg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.438 [XNIO-1 task-5] Cfd8IWAPRmSlisRt_OscCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.438 [XNIO-1 task-5] Cfd8IWAPRmSlisRt_OscCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.438 [XNIO-1 task-5] Cfd8IWAPRmSlisRt_OscCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.439 [XNIO-1 task-5] Cfd8IWAPRmSlisRt_OscCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.444 [XNIO-1 task-3] WNRj6CIORNeIWqYHhXv-8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.449 [XNIO-1 task-5] Cfd8IWAPRmSlisRt_OscCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.456 [XNIO-1 task-5] UCFDQvMWRGimmWjrw6c1ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.456 [XNIO-1 task-5] UCFDQvMWRGimmWjrw6c1ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.456 [XNIO-1 task-5] UCFDQvMWRGimmWjrw6c1ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.456 [XNIO-1 task-5] UCFDQvMWRGimmWjrw6c1ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmY4OTI5YTgtNDE0OS00ZDg3LThlODMtYjFjZTRhYmRmZjM2OmJVeHRxcFIwU1I2MVoweGNzWkJLRVE=", "Basic YmY4OTI5YTgtNDE0OS00ZDg3LThlODMtYjFjZTRhYmRmZjM2OmJVeHRxcFIwU1I2MVoweGNzWkJLRVE=", authorization) +07:00:47.461 [XNIO-1 task-3] 5Ts2W9n-TYCVt2odvr8sxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.461 [XNIO-1 task-3] 5Ts2W9n-TYCVt2odvr8sxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.462 [XNIO-1 task-3] 5Ts2W9n-TYCVt2odvr8sxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.462 [XNIO-1 task-3] 5Ts2W9n-TYCVt2odvr8sxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:47.465 [XNIO-1 task-5] UCFDQvMWRGimmWjrw6c1ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.471 [XNIO-1 task-5] 9xIjQByUT1-5ev5iBi1uFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.471 [XNIO-1 task-5] 9xIjQByUT1-5ev5iBi1uFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.471 [XNIO-1 task-5] 9xIjQByUT1-5ev5iBi1uFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.472 [XNIO-1 task-5] 9xIjQByUT1-5ev5iBi1uFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmY4OTI5YTgtNDE0OS00ZDg3LThlODMtYjFjZTRhYmRmZjM2OmJVeHRxcFIwU1I2MVoweGNzWkJLRVE=", "Basic YmY4OTI5YTgtNDE0OS00ZDg3LThlODMtYjFjZTRhYmRmZjM2OmJVeHRxcFIwU1I2MVoweGNzWkJLRVE=", authorization) +07:00:47.477 [XNIO-1 task-5] 9xIjQByUT1-5ev5iBi1uFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.487 [XNIO-1 task-5] E11iWermTqeYHP07BhI2zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.487 [XNIO-1 task-5] E11iWermTqeYHP07BhI2zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.487 [XNIO-1 task-5] E11iWermTqeYHP07BhI2zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.488 [XNIO-1 task-5] E11iWermTqeYHP07BhI2zA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", "Basic ZTE5M2RkODQtNmM1NC00OTg2LWJmZDAtNmRjZmIzNDA4MDQ1OnpqQzd6Q3M2Ui1PbFU5bGIwNi1SOUE=", authorization) +07:00:47.490 [XNIO-1 task-3] 5Ts2W9n-TYCVt2odvr8sxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.491 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee895ceb-b7c5-4983-9b40-2ca080d4eb70 +07:00:47.494 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee895ceb-b7c5-4983-9b40-2ca080d4eb70 +07:00:47.495 [XNIO-1 task-5] E11iWermTqeYHP07BhI2zA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.498 [XNIO-1 task-6] q3O9a871SRyl7YIBQfe98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.498 [XNIO-1 task-6] q3O9a871SRyl7YIBQfe98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.499 [XNIO-1 task-6] q3O9a871SRyl7YIBQfe98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.500 [XNIO-1 task-6] q3O9a871SRyl7YIBQfe98Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = D_TanvlnQPKCwPuuonHOsw redirectUri = http://localhost:8080/authorization +07:00:47.502 [XNIO-1 task-5] 7W1MXnQuSmGkGdI4tb0l4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.502 [XNIO-1 task-5] 7W1MXnQuSmGkGdI4tb0l4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.503 [XNIO-1 task-5] 7W1MXnQuSmGkGdI4tb0l4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.505 [XNIO-1 task-5] 7W1MXnQuSmGkGdI4tb0l4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.514 [XNIO-1 task-5] 7W1MXnQuSmGkGdI4tb0l4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.520 [XNIO-1 task-6] q3O9a871SRyl7YIBQfe98Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.529 [XNIO-1 task-5] ycVLqK6EQq6ECe2qAz1ylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.529 [XNIO-1 task-5] ycVLqK6EQq6ECe2qAz1ylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.529 [XNIO-1 task-5] ycVLqK6EQq6ECe2qAz1ylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.530 [XNIO-1 task-5] ycVLqK6EQq6ECe2qAz1ylQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:47.532 [XNIO-1 task-3] uds0C6A_T0GY8c0DZdgwAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.532 [XNIO-1 task-3] uds0C6A_T0GY8c0DZdgwAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.533 [XNIO-1 task-3] uds0C6A_T0GY8c0DZdgwAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.533 [XNIO-1 task-3] uds0C6A_T0GY8c0DZdgwAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", authorization) +07:00:47.538 [XNIO-1 task-5] ycVLqK6EQq6ECe2qAz1ylQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.539 [XNIO-1 task-6] ulBgUufMSFeBVwpxUAQloA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.539 [XNIO-1 task-6] ulBgUufMSFeBVwpxUAQloA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.540 [XNIO-1 task-6] ulBgUufMSFeBVwpxUAQloA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.540 [XNIO-1 task-6] ulBgUufMSFeBVwpxUAQloA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", authorization) +07:00:47.548 [XNIO-1 task-5] 3mbXDtW-To2NJTOL5vyQGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.548 [XNIO-1 task-5] 3mbXDtW-To2NJTOL5vyQGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.549 [XNIO-1 task-5] 3mbXDtW-To2NJTOL5vyQGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.549 [XNIO-1 task-5] 3mbXDtW-To2NJTOL5vyQGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:47.550 [XNIO-1 task-3] uds0C6A_T0GY8c0DZdgwAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.550 [XNIO-1 task-5] 3mbXDtW-To2NJTOL5vyQGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.554 [XNIO-1 task-6] ulBgUufMSFeBVwpxUAQloA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.561 [XNIO-1 task-5] 3mbXDtW-To2NJTOL5vyQGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.562 [XNIO-1 task-3] ihcNbuiDSSyW7kdI3MgS9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.562 [XNIO-1 task-3] ihcNbuiDSSyW7kdI3MgS9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.563 [XNIO-1 task-3] ihcNbuiDSSyW7kdI3MgS9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.563 [XNIO-1 task-3] ihcNbuiDSSyW7kdI3MgS9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 388eb875-e3d1-42f0-9f43-861dcb1c7c02 scope = null +07:00:47.567 [XNIO-1 task-6] SMMBR93VTOaj0mPOjL6S5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.567 [XNIO-1 task-6] SMMBR93VTOaj0mPOjL6S5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.568 [XNIO-1 task-6] SMMBR93VTOaj0mPOjL6S5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.568 [XNIO-1 task-6] SMMBR93VTOaj0mPOjL6S5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gwnywvNOS6Su0vplQS7etg redirectUri = http://localhost:8080/authorization +07:00:47.571 [XNIO-1 task-5] ojbF5RIuSSisKphzQIGBIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.571 [XNIO-1 task-5] ojbF5RIuSSisKphzQIGBIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.571 [XNIO-1 task-5] ojbF5RIuSSisKphzQIGBIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.572 [XNIO-1 task-5] ojbF5RIuSSisKphzQIGBIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.579 [XNIO-1 task-3] ihcNbuiDSSyW7kdI3MgS9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.581 [XNIO-1 task-6] SMMBR93VTOaj0mPOjL6S5Q ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:47.588 [XNIO-1 task-5] ojbF5RIuSSisKphzQIGBIg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.594 [XNIO-1 task-3] abH4OYJBQNm1onWpZlqK5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.594 [XNIO-1 task-3] abH4OYJBQNm1onWpZlqK5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.595 [XNIO-1 task-3] abH4OYJBQNm1onWpZlqK5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.595 [XNIO-1 task-3] abH4OYJBQNm1onWpZlqK5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1d434d85-d54e-41ca-9e43-e4dd171a775f scope = null +07:00:47.602 [XNIO-1 task-5] oQdkCwN8SoSutkR4CpmmSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.603 [XNIO-1 task-5] oQdkCwN8SoSutkR4CpmmSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.603 [XNIO-1 task-5] oQdkCwN8SoSutkR4CpmmSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.604 [XNIO-1 task-5] oQdkCwN8SoSutkR4CpmmSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", authorization) +07:00:47.605 [XNIO-1 task-6] zVuw_bWRS-SRPpiABMIhNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.606 [XNIO-1 task-6] zVuw_bWRS-SRPpiABMIhNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.606 [XNIO-1 task-6] zVuw_bWRS-SRPpiABMIhNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.607 [XNIO-1 task-6] zVuw_bWRS-SRPpiABMIhNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", authorization) +07:00:47.610 [XNIO-1 task-3] abH4OYJBQNm1onWpZlqK5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.621 [XNIO-1 task-6] zVuw_bWRS-SRPpiABMIhNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:47.621 [XNIO-1 task-6] zVuw_bWRS-SRPpiABMIhNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.636 [XNIO-1 task-5] oQdkCwN8SoSutkR4CpmmSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.652 [XNIO-1 task-5] pXNheKn8QrOZNBmgs9gB9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.652 [XNIO-1 task-5] pXNheKn8QrOZNBmgs9gB9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.653 [XNIO-1 task-5] pXNheKn8QrOZNBmgs9gB9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.654 [XNIO-1 task-5] pXNheKn8QrOZNBmgs9gB9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.659 [XNIO-1 task-5] pXNheKn8QrOZNBmgs9gB9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.674 [XNIO-1 task-5] M_dqOzGzTGuqfZxMcfjkqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.675 [XNIO-1 task-5] M_dqOzGzTGuqfZxMcfjkqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.675 [XNIO-1 task-5] M_dqOzGzTGuqfZxMcfjkqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.676 [XNIO-1 task-5] M_dqOzGzTGuqfZxMcfjkqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.682 [XNIO-1 task-5] M_dqOzGzTGuqfZxMcfjkqg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.686 [XNIO-1 task-5] hQpcfIPXR4K_1Nf4-a0mVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.686 [XNIO-1 task-5] hQpcfIPXR4K_1Nf4-a0mVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.687 [XNIO-1 task-5] hQpcfIPXR4K_1Nf4-a0mVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +07:00:47.691 [XNIO-1 task-6] R0bTQ7oRRsWKABD4Y-gXvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +07:00:47.691 [XNIO-1 task-6] R0bTQ7oRRsWKABD4Y-gXvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +07:00:47.692 [XNIO-1 task-6] R0bTQ7oRRsWKABD4Y-gXvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:47.692 [XNIO-1 task-6] R0bTQ7oRRsWKABD4Y-gXvg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.694 [XNIO-1 task-5] hQpcfIPXR4K_1Nf4-a0mVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +07:00:47.694 [XNIO-1 task-5] hQpcfIPXR4K_1Nf4-a0mVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.698 [XNIO-1 task-6] R0bTQ7oRRsWKABD4Y-gXvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.698 [XNIO-1 task-6] R0bTQ7oRRsWKABD4Y-gXvg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.699 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.705 [XNIO-1 task-6] xeeVMVs5SSqyOxYgbj_Lew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.705 [XNIO-1 task-6] xeeVMVs5SSqyOxYgbj_Lew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.706 [XNIO-1 task-6] xeeVMVs5SSqyOxYgbj_Lew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.706 [XNIO-1 task-6] xeeVMVs5SSqyOxYgbj_Lew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +07:00:47.720 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:73a8cab9-fc82-4ea4-a51e-bc644a0f58ac + ... 14 more + +07:00:47.731 [XNIO-1 task-5] rwIncg54Q_yhHIDhdRajlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.731 [XNIO-1 task-5] rwIncg54Q_yhHIDhdRajlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.732 [XNIO-1 task-5] rwIncg54Q_yhHIDhdRajlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.732 [XNIO-1 task-5] rwIncg54Q_yhHIDhdRajlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", authorization) +07:00:47.734 [XNIO-1 task-6] KH4DI3l_Ts24mI4bd4Zd_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.734 [XNIO-1 task-6] KH4DI3l_Ts24mI4bd4Zd_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.734 [XNIO-1 task-6] KH4DI3l_Ts24mI4bd4Zd_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.735 [XNIO-1 task-6] KH4DI3l_Ts24mI4bd4Zd_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", "Basic NzM3NTVmNGMtYjA0OS00MzRiLWI5ZWEtODc4MGE2ODg4YTliOlYtMnlFM1NKVDEtUFp0eFFzT0d3b3c=", authorization) +07:00:47.742 [XNIO-1 task-5] rwIncg54Q_yhHIDhdRajlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:47.744 [XNIO-1 task-5] rwIncg54Q_yhHIDhdRajlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.744 [XNIO-1 task-5] rwIncg54Q_yhHIDhdRajlg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.752 [XNIO-1 task-6] kK3KMRmRQQyuU0MVtmJySA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.752 [XNIO-1 task-6] kK3KMRmRQQyuU0MVtmJySA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.753 [XNIO-1 task-6] kK3KMRmRQQyuU0MVtmJySA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.756 [XNIO-1 task-6] kK3KMRmRQQyuU0MVtmJySA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.765 [XNIO-1 task-5] omDdNa9lSwWuKpQTQCuQEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.766 [XNIO-1 task-5] omDdNa9lSwWuKpQTQCuQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.767 [XNIO-1 task-5] omDdNa9lSwWuKpQTQCuQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.767 [XNIO-1 task-5] omDdNa9lSwWuKpQTQCuQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.768 [XNIO-1 task-3] u6irI451Tf6g-Fa-w_HUiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.768 [XNIO-1 task-3] u6irI451Tf6g-Fa-w_HUiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.768 [XNIO-1 task-5] omDdNa9lSwWuKpQTQCuQEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uk2um_x6SxyTM2vUHstpHA redirectUri = http://localhost:8080/authorization +07:00:47.768 [XNIO-1 task-3] u6irI451Tf6g-Fa-w_HUiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.768 [XNIO-1 task-3] u6irI451Tf6g-Fa-w_HUiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2e411145-2f65-4eca-8b32-7430a42dc9ef scope = null +07:00:47.772 [XNIO-1 task-6] GLXqYH0CSLCFI8rJZJy3hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.772 [XNIO-1 task-6] GLXqYH0CSLCFI8rJZJy3hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.772 [XNIO-1 task-6] GLXqYH0CSLCFI8rJZJy3hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.773 [XNIO-1 task-6] GLXqYH0CSLCFI8rJZJy3hg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.781 [XNIO-1 task-6] GLXqYH0CSLCFI8rJZJy3hg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.781 [XNIO-1 task-6] GLXqYH0CSLCFI8rJZJy3hg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.783 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee895ceb-b7c5-4983-9b40-2ca080d4eb70 +07:00:47.783 [XNIO-1 task-3] u6irI451Tf6g-Fa-w_HUiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.796 [XNIO-1 task-6] 73r8KNtmQte0uEsaEmb2aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.796 [XNIO-1 task-6] 73r8KNtmQte0uEsaEmb2aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.797 [XNIO-1 task-6] 73r8KNtmQte0uEsaEmb2aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.798 [XNIO-1 task-6] 73r8KNtmQte0uEsaEmb2aA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.807 [XNIO-1 task-6] 73r8KNtmQte0uEsaEmb2aA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.820 [XNIO-1 task-5] h6mSkJnGQ_aqOQY0Np_t8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.820 [XNIO-1 task-5] h6mSkJnGQ_aqOQY0Np_t8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.821 [XNIO-1 task-5] h6mSkJnGQ_aqOQY0Np_t8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.823 [XNIO-1 task-5] h6mSkJnGQ_aqOQY0Np_t8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.829 [XNIO-1 task-5] h6mSkJnGQ_aqOQY0Np_t8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.837 [XNIO-1 task-5] ybmLzXkDT1SqpjrezUwsTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.837 [XNIO-1 task-5] ybmLzXkDT1SqpjrezUwsTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.838 [XNIO-1 task-5] ybmLzXkDT1SqpjrezUwsTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.839 [XNIO-1 task-5] ybmLzXkDT1SqpjrezUwsTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.844 [XNIO-1 task-5] ybmLzXkDT1SqpjrezUwsTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.853 [XNIO-1 task-5] 7LSxDEHSTjChGaAZwYs_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.853 [XNIO-1 task-5] 7LSxDEHSTjChGaAZwYs_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.853 [XNIO-1 task-5] 7LSxDEHSTjChGaAZwYs_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.858 [XNIO-1 task-5] 7LSxDEHSTjChGaAZwYs_yA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.864 [XNIO-1 task-5] 7LSxDEHSTjChGaAZwYs_yA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.874 [XNIO-1 task-5] FKtpJ5qXTwGuV7xfk6d7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.874 [XNIO-1 task-5] FKtpJ5qXTwGuV7xfk6d7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.875 [XNIO-1 task-5] FKtpJ5qXTwGuV7xfk6d7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.876 [XNIO-1 task-5] FKtpJ5qXTwGuV7xfk6d7Jw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.881 [XNIO-1 task-6] 69_2mz0wRH-XX56nhC4zpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.881 [XNIO-1 task-6] 69_2mz0wRH-XX56nhC4zpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.881 [XNIO-1 task-5] FKtpJ5qXTwGuV7xfk6d7Jw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.882 [XNIO-1 task-6] 69_2mz0wRH-XX56nhC4zpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.882 [XNIO-1 task-6] 69_2mz0wRH-XX56nhC4zpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = rIeU1-RTQT67QAKRmSoiKw redirectUri = http://localhost:8080/authorization +07:00:47.893 [XNIO-1 task-5] F_jMygZpTHq4SIjMY11QVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.893 [XNIO-1 task-5] F_jMygZpTHq4SIjMY11QVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.893 [XNIO-1 task-5] F_jMygZpTHq4SIjMY11QVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.893 [XNIO-1 task-5] F_jMygZpTHq4SIjMY11QVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.896 [XNIO-1 task-6] 69_2mz0wRH-XX56nhC4zpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.902 [XNIO-1 task-5] F_jMygZpTHq4SIjMY11QVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.910 [XNIO-1 task-5] 51TduZ3qSTmiMH6tDZI5Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.910 [XNIO-1 task-5] 51TduZ3qSTmiMH6tDZI5Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.911 [XNIO-1 task-5] 51TduZ3qSTmiMH6tDZI5Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.913 [XNIO-1 task-5] 51TduZ3qSTmiMH6tDZI5Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDJhNzgzM2EtZTgzYS00ZmQ2LWIxMmYtNDhmMTg0MDljNDYzOjZyeWlPcC0xU2c2TEx0VklvajJtUWc=", "Basic NDJhNzgzM2EtZTgzYS00ZmQ2LWIxMmYtNDhmMTg0MDljNDYzOjZyeWlPcC0xU2c2TEx0VklvajJtUWc=", authorization) +07:00:47.918 [XNIO-1 task-5] 51TduZ3qSTmiMH6tDZI5Bw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.927 [XNIO-1 task-5] m95exdb9QxeMsri6wjkCZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.928 [XNIO-1 task-5] m95exdb9QxeMsri6wjkCZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.928 [XNIO-1 task-5] m95exdb9QxeMsri6wjkCZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.928 [XNIO-1 task-6] 9qQDMP8fQ1KpGHhDugfFdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.928 [XNIO-1 task-6] 9qQDMP8fQ1KpGHhDugfFdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.928 [XNIO-1 task-5] m95exdb9QxeMsri6wjkCZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5b1ca26c-8532-4fde-b073-88f9f009e898 scope = null +07:00:47.929 [XNIO-1 task-6] 9qQDMP8fQ1KpGHhDugfFdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.929 [XNIO-1 task-6] 9qQDMP8fQ1KpGHhDugfFdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDJhNzgzM2EtZTgzYS00ZmQ2LWIxMmYtNDhmMTg0MDljNDYzOjZyeWlPcC0xU2c2TEx0VklvajJtUWc=", "Basic NDJhNzgzM2EtZTgzYS00ZmQ2LWIxMmYtNDhmMTg0MDljNDYzOjZyeWlPcC0xU2c2TEx0VklvajJtUWc=", authorization) +07:00:47.934 [XNIO-1 task-6] 9qQDMP8fQ1KpGHhDugfFdQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:47.937 [XNIO-1 task-5] m95exdb9QxeMsri6wjkCZA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:47.939 [XNIO-1 task-5] XC6nTXNoSGe54nYioqpTXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.939 [XNIO-1 task-5] XC6nTXNoSGe54nYioqpTXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.939 [XNIO-1 task-5] XC6nTXNoSGe54nYioqpTXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.940 [XNIO-1 task-5] XC6nTXNoSGe54nYioqpTXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.945 [XNIO-1 task-5] XC6nTXNoSGe54nYioqpTXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.950 [XNIO-1 task-5] d-kWElPHSB-43u2QIFJ3pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.951 [XNIO-1 task-5] d-kWElPHSB-43u2QIFJ3pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.951 [XNIO-1 task-5] d-kWElPHSB-43u2QIFJ3pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.951 [XNIO-1 task-5] d-kWElPHSB-43u2QIFJ3pQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.956 [XNIO-1 task-5] d-kWElPHSB-43u2QIFJ3pQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.964 [XNIO-1 task-5] hI15dsQFST25DZh_NMZvsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.964 [XNIO-1 task-5] hI15dsQFST25DZh_NMZvsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.964 [XNIO-1 task-5] hI15dsQFST25DZh_NMZvsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.964 [XNIO-1 task-5] hI15dsQFST25DZh_NMZvsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.971 [XNIO-1 task-5] hI15dsQFST25DZh_NMZvsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:47.977 [XNIO-1 task-5] z6v8kt8gTYCNL5X7cLcndQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.977 [XNIO-1 task-5] z6v8kt8gTYCNL5X7cLcndQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.977 [XNIO-1 task-5] z6v8kt8gTYCNL5X7cLcndQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.978 [XNIO-1 task-5] z6v8kt8gTYCNL5X7cLcndQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:47.979 [XNIO-1 task-6] tXH64KUuTJmZ9S1HDOOSSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.980 [XNIO-1 task-6] tXH64KUuTJmZ9S1HDOOSSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.980 [XNIO-1 task-6] tXH64KUuTJmZ9S1HDOOSSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:47.980 [XNIO-1 task-6] tXH64KUuTJmZ9S1HDOOSSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 scope = null +07:00:47.983 [XNIO-1 task-5] z6v8kt8gTYCNL5X7cLcndQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:47.992 [XNIO-1 task-6] N77_xoiYSLKsnjMMUuxROA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.993 [XNIO-1 task-6] N77_xoiYSLKsnjMMUuxROA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.995 [XNIO-1 task-6] N77_xoiYSLKsnjMMUuxROA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.995 [XNIO-1 task-6] N77_xoiYSLKsnjMMUuxROA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", authorization) +07:00:47.995 [XNIO-1 task-5] XHdulL2SRtC2x6O01Q5gVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.996 [XNIO-1 task-5] XHdulL2SRtC2x6O01Q5gVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:47.996 [XNIO-1 task-5] XHdulL2SRtC2x6O01Q5gVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:47.996 [XNIO-1 task-5] XHdulL2SRtC2x6O01Q5gVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", authorization) +07:00:48.001 [XNIO-1 task-6] N77_xoiYSLKsnjMMUuxROA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.005 [XNIO-1 task-5] XHdulL2SRtC2x6O01Q5gVQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +07:00:48.014 [XNIO-1 task-6] 2BNsFRpuTNmFbdORJDd8ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.014 [XNIO-1 task-5] We28QL71Rpe0H0VI9yPihg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.014 [XNIO-1 task-6] 2BNsFRpuTNmFbdORJDd8ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.014 [XNIO-1 task-5] We28QL71Rpe0H0VI9yPihg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +07:00:48.014 [XNIO-1 task-5] We28QL71Rpe0H0VI9yPihg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.015 [XNIO-1 task-6] 2BNsFRpuTNmFbdORJDd8ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.015 [XNIO-1 task-5] We28QL71Rpe0H0VI9yPihg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.015 [XNIO-1 task-6] 2BNsFRpuTNmFbdORJDd8ZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e5f0f544-1811-4d7e-a5ef-89e9acdf6aa6 scope = null +07:00:48.015 [XNIO-1 task-5] We28QL71Rpe0H0VI9yPihg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", authorization) +07:00:48.021 [XNIO-1 task-3] bgWhCwxoQ3GbLFJf5Akkjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.021 [XNIO-1 task-3] bgWhCwxoQ3GbLFJf5Akkjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.021 [XNIO-1 task-3] bgWhCwxoQ3GbLFJf5Akkjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +07:00:48.022 [XNIO-1 task-3] bgWhCwxoQ3GbLFJf5Akkjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:48.022 [XNIO-1 task-3] bgWhCwxoQ3GbLFJf5Akkjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.022 [XNIO-1 task-3] bgWhCwxoQ3GbLFJf5Akkjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1be7e4fc-4c75-4465-9ec5-31f4b3a1139e scope = null +07:00:48.031 [XNIO-1 task-5] We28QL71Rpe0H0VI9yPihg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.038 [XNIO-1 task-3] bgWhCwxoQ3GbLFJf5Akkjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.040 [XNIO-1 task-5] f_QuvV-cRJa9hQNNZ0RQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.040 [XNIO-1 task-5] f_QuvV-cRJa9hQNNZ0RQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.041 [XNIO-1 task-5] f_QuvV-cRJa9hQNNZ0RQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.041 [XNIO-1 task-5] f_QuvV-cRJa9hQNNZ0RQ5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.048 [XNIO-1 task-5] f_QuvV-cRJa9hQNNZ0RQ5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.051 [XNIO-1 task-3] h1YXWgioQQ-Ehz8L37yRog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.051 [XNIO-1 task-3] h1YXWgioQQ-Ehz8L37yRog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.051 [XNIO-1 task-3] h1YXWgioQQ-Ehz8L37yRog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.052 [XNIO-1 task-3] h1YXWgioQQ-Ehz8L37yRog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = h3-8dfHFRyiSzYDcavjFHg redirectUri = http://localhost:8080/authorization +07:00:48.053 [XNIO-1 task-5] VUEgzG6kS2maXSdUkJ8urQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.054 [XNIO-1 task-5] VUEgzG6kS2maXSdUkJ8urQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.054 [XNIO-1 task-5] VUEgzG6kS2maXSdUkJ8urQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.055 [XNIO-1 task-5] VUEgzG6kS2maXSdUkJ8urQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 87ab06a8-a197-4116-9aa7-9cf7287146a3 scope = null +07:00:48.058 [XNIO-1 task-3] h1YXWgioQQ-Ehz8L37yRog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.059 [XNIO-1 task-6] 3JHhH09GR2iVaf4jGyrdeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.060 [XNIO-1 task-6] 3JHhH09GR2iVaf4jGyrdeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.060 [XNIO-1 task-6] 3JHhH09GR2iVaf4jGyrdeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.060 [XNIO-1 task-6] 3JHhH09GR2iVaf4jGyrdeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:48.065 [XNIO-1 task-6] 3JHhH09GR2iVaf4jGyrdeg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.066 [XNIO-1 task-5] VUEgzG6kS2maXSdUkJ8urQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.075 [XNIO-1 task-3] rOFfVJM8RdKZ6Gpk8p701A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.075 [XNIO-1 task-3] rOFfVJM8RdKZ6Gpk8p701A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.076 [XNIO-1 task-3] rOFfVJM8RdKZ6Gpk8p701A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.076 [XNIO-1 task-3] rOFfVJM8RdKZ6Gpk8p701A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:48.082 [XNIO-1 task-3] rOFfVJM8RdKZ6Gpk8p701A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.086 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:42a7833a-e83a-4fd6-b12f-48f18409c463 +07:00:48.090 [XNIO-1 task-3] EgvIUBsJTwGNYQKDNLNu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.090 [XNIO-1 task-3] EgvIUBsJTwGNYQKDNLNu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.090 [XNIO-1 task-3] EgvIUBsJTwGNYQKDNLNu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.091 [XNIO-1 task-3] EgvIUBsJTwGNYQKDNLNu8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.104 [XNIO-1 task-3] EgvIUBsJTwGNYQKDNLNu8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.112 [XNIO-1 task-3] Juv3A_vnRluzmHoDxfWd6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.112 [XNIO-1 task-3] Juv3A_vnRluzmHoDxfWd6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.112 [XNIO-1 task-3] Juv3A_vnRluzmHoDxfWd6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.113 [XNIO-1 task-3] Juv3A_vnRluzmHoDxfWd6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = hAUiVH4WQh-gFJQmCyJfhg redirectUri = http://localhost:8080/authorization +07:00:48.115 [XNIO-1 task-5] 2nyl6ucbQCenQPttWhTOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.115 [XNIO-1 task-5] 2nyl6ucbQCenQPttWhTOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.115 [XNIO-1 task-5] 2nyl6ucbQCenQPttWhTOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.116 [XNIO-1 task-5] 2nyl6ucbQCenQPttWhTOtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.120 [XNIO-1 task-3] Juv3A_vnRluzmHoDxfWd6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.121 [XNIO-1 task-5] 2nyl6ucbQCenQPttWhTOtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.124 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:438d3759-5b50-4abe-ba8c-c6029b3055e2 +07:00:48.127 [XNIO-1 task-5] HRJVeYF0SK2QQ8ce-jZDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.127 [XNIO-1 task-5] HRJVeYF0SK2QQ8ce-jZDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.127 [XNIO-1 task-5] HRJVeYF0SK2QQ8ce-jZDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.128 [XNIO-1 task-5] HRJVeYF0SK2QQ8ce-jZDJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = hoTKeCjuRESLaEUd1BDDRg redirectUri = http://localhost:8080/authorization +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:48.134 [XNIO-1 task-3] lgyyrBAwQICKUdnVrfCYgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.134 [XNIO-1 task-3] lgyyrBAwQICKUdnVrfCYgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.134 [XNIO-1 task-3] lgyyrBAwQICKUdnVrfCYgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.135 [XNIO-1 task-3] lgyyrBAwQICKUdnVrfCYgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", authorization) +07:00:48.136 [XNIO-1 task-5] HRJVeYF0SK2QQ8ce-jZDJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.136 [XNIO-1 task-5] HRJVeYF0SK2QQ8ce-jZDJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.144 [XNIO-1 task-3] lgyyrBAwQICKUdnVrfCYgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.151 [XNIO-1 task-5] 0W24-EYDReyzXNYma_tRog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.151 [XNIO-1 task-5] 0W24-EYDReyzXNYma_tRog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.151 [XNIO-1 task-5] 0W24-EYDReyzXNYma_tRog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.152 [XNIO-1 task-5] 0W24-EYDReyzXNYma_tRog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.157 [XNIO-1 task-5] 0W24-EYDReyzXNYma_tRog INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.159 [XNIO-1 task-5] KqgwWicLSLqpMre2VdaD0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.159 [XNIO-1 task-5] KqgwWicLSLqpMre2VdaD0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.160 [XNIO-1 task-5] KqgwWicLSLqpMre2VdaD0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.160 [XNIO-1 task-5] KqgwWicLSLqpMre2VdaD0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bf3e000f-819c-41dc-89f6-25a87c108bb0 scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bf3e000f-819c-41dc-89f6-25a87c108bb0 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:48.169 [XNIO-1 task-5] oGUBYQikQkK-Mm_JmlBbfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.169 [XNIO-1 task-5] oGUBYQikQkK-Mm_JmlBbfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.170 [XNIO-1 task-5] oGUBYQikQkK-Mm_JmlBbfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.170 [XNIO-1 task-5] oGUBYQikQkK-Mm_JmlBbfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:48.176 [XNIO-1 task-5] oGUBYQikQkK-Mm_JmlBbfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.176 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9f0a3d5d +07:00:48.182 [XNIO-1 task-5] MofYlu8pSDKC8vCmJPYaww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.182 [XNIO-1 task-5] MofYlu8pSDKC8vCmJPYaww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.183 [XNIO-1 task-5] MofYlu8pSDKC8vCmJPYaww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.183 [XNIO-1 task-5] MofYlu8pSDKC8vCmJPYaww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:48.189 [XNIO-1 task-5] MofYlu8pSDKC8vCmJPYaww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.201 [XNIO-1 task-5] ofqYlOLRQIi1G9BiSqzdoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.202 [XNIO-1 task-5] ofqYlOLRQIi1G9BiSqzdoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.203 [XNIO-1 task-5] ofqYlOLRQIi1G9BiSqzdoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.203 [XNIO-1 task-5] ofqYlOLRQIi1G9BiSqzdoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:48.210 [XNIO-1 task-5] ofqYlOLRQIi1G9BiSqzdoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.212 [XNIO-1 task-3] BPjcC5x2Q9i88i3S1uMS8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.213 [XNIO-1 task-3] BPjcC5x2Q9i88i3S1uMS8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.213 [XNIO-1 task-3] BPjcC5x2Q9i88i3S1uMS8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.213 [XNIO-1 task-3] BPjcC5x2Q9i88i3S1uMS8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY5OGFjNjEtYTVmOS00OWYzLTgzZGItOWMxYzZiNTkxODgyOktSTkhOYk5NUnJ1WEUxMzV6VVNad0E=", "Basic YzY5OGFjNjEtYTVmOS00OWYzLTgzZGItOWMxYzZiNTkxODgyOktSTkhOYk5NUnJ1WEUxMzV6VVNad0E=", authorization) +07:00:48.220 [XNIO-1 task-3] BPjcC5x2Q9i88i3S1uMS8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.220 [XNIO-1 task-5] ioz-jMUIQTejKuWdtp37zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.220 [XNIO-1 task-3] BPjcC5x2Q9i88i3S1uMS8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.220 [XNIO-1 task-3] BPjcC5x2Q9i88i3S1uMS8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.220 [XNIO-1 task-5] ioz-jMUIQTejKuWdtp37zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.222 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d8996987-d447-4728-9513-b00e9aafeaf3 +07:00:48.222 [XNIO-1 task-5] ioz-jMUIQTejKuWdtp37zg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.231 [XNIO-1 task-5] ioz-jMUIQTejKuWdtp37zg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.238 [XNIO-1 task-5] hpeivwfmTLmWDIVk5Lv84g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.238 [XNIO-1 task-5] hpeivwfmTLmWDIVk5Lv84g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.238 [XNIO-1 task-5] hpeivwfmTLmWDIVk5Lv84g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.239 [XNIO-1 task-5] hpeivwfmTLmWDIVk5Lv84g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.242 [XNIO-1 task-3] rVHivVK9Si-5fCZw6gj9Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.242 [XNIO-1 task-3] rVHivVK9Si-5fCZw6gj9Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.243 [XNIO-1 task-3] rVHivVK9Si-5fCZw6gj9Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.243 [XNIO-1 task-3] rVHivVK9Si-5fCZw6gj9Vg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _WuXZqeGTLyKXogw-T855g redirectUri = http://localhost:8080/authorization +07:00:48.246 [XNIO-1 task-5] hpeivwfmTLmWDIVk5Lv84g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.250 [XNIO-1 task-3] rVHivVK9Si-5fCZw6gj9Vg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.251 [XNIO-1 task-3] rVHivVK9Si-5fCZw6gj9Vg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.255 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d7ace2ca-b53d-4c50-8b43-5a2257606d0b +07:00:48.262 [XNIO-1 task-5] hny2E8qUSd6PKknZDuwMPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.263 [XNIO-1 task-5] hny2E8qUSd6PKknZDuwMPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.263 [XNIO-1 task-5] hny2E8qUSd6PKknZDuwMPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.264 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9f0a3d5d +07:00:48.267 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9f0a3d5d +07:00:48.270 [XNIO-1 task-3] k21qy_TXQpm5umFOL1_s-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.270 [XNIO-1 task-3] k21qy_TXQpm5umFOL1_s-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.270 [XNIO-1 task-5] hny2E8qUSd6PKknZDuwMPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.272 [XNIO-1 task-3] k21qy_TXQpm5umFOL1_s-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.274 [XNIO-1 task-3] k21qy_TXQpm5umFOL1_s-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d7ace2ca-b53d-4c50-8b43-5a2257606d0b scope = null +07:00:48.277 [XNIO-1 task-5] upIo_7h7R3yQHEksb1bSaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.277 [XNIO-1 task-5] upIo_7h7R3yQHEksb1bSaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.277 [XNIO-1 task-5] upIo_7h7R3yQHEksb1bSaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.278 [XNIO-1 task-5] upIo_7h7R3yQHEksb1bSaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.284 [XNIO-1 task-5] upIo_7h7R3yQHEksb1bSaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.291 [XNIO-1 task-3] k21qy_TXQpm5umFOL1_s-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.295 [XNIO-1 task-5] EWqwN89xQBuq0DG1O_bD_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.295 [XNIO-1 task-5] EWqwN89xQBuq0DG1O_bD_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.295 [XNIO-1 task-5] EWqwN89xQBuq0DG1O_bD_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.295 [XNIO-1 task-5] EWqwN89xQBuq0DG1O_bD_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQ4NjNhOWMtMWRkZi00Y2FkLWFmMGYtYjI0MDExZThmNWViOlRQdHFNNU5aU2Y2cjdydWQ4ek5ySnc=", "Basic NWQ4NjNhOWMtMWRkZi00Y2FkLWFmMGYtYjI0MDExZThmNWViOlRQdHFNNU5aU2Y2cjdydWQ4ek5ySnc=", authorization) +07:00:48.296 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b789711c-0463-4af6-853c-f6fc2658e71f +07:00:48.297 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b789711c-0463-4af6-853c-f6fc2658e71f +07:00:48.305 [XNIO-1 task-5] EWqwN89xQBuq0DG1O_bD_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.313 [XNIO-1 task-3] uD51wQdhRtej_3e2cKc23Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.314 [XNIO-1 task-3] uD51wQdhRtej_3e2cKc23Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.314 [XNIO-1 task-3] uD51wQdhRtej_3e2cKc23Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.314 [XNIO-1 task-3] uD51wQdhRtej_3e2cKc23Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.317 [XNIO-1 task-5] qvhYhOqGRBGHesC14PwqQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.317 [XNIO-1 task-5] qvhYhOqGRBGHesC14PwqQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.317 [XNIO-1 task-5] qvhYhOqGRBGHesC14PwqQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.317 [XNIO-1 task-5] qvhYhOqGRBGHesC14PwqQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b789711c-0463-4af6-853c-f6fc2658e71f scope = null +07:00:48.322 [XNIO-1 task-6] 6JzwXZvRQ2uIq7wcLZ7F9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.323 [XNIO-1 task-6] 6JzwXZvRQ2uIq7wcLZ7F9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.323 [XNIO-1 task-6] 6JzwXZvRQ2uIq7wcLZ7F9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.324 [XNIO-1 task-6] 6JzwXZvRQ2uIq7wcLZ7F9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.324 [XNIO-1 task-3] uD51wQdhRtej_3e2cKc23Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.327 [XNIO-1 task-6] 6JzwXZvRQ2uIq7wcLZ7F9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1C3XndvHQcC_Jz_pKz8ISg redirectUri = http://localhost:8080/authorization +07:00:48.329 [XNIO-1 task-3] eVRLlbVRSTitXLHGhyc3fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.329 [XNIO-1 task-3] eVRLlbVRSTitXLHGhyc3fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.329 [XNIO-1 task-3] eVRLlbVRSTitXLHGhyc3fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.330 [XNIO-1 task-3] eVRLlbVRSTitXLHGhyc3fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:48.331 [XNIO-1 task-5] qvhYhOqGRBGHesC14PwqQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.335 [XNIO-1 task-3] eVRLlbVRSTitXLHGhyc3fA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.338 [XNIO-1 task-6] 6JzwXZvRQ2uIq7wcLZ7F9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.338 [XNIO-1 task-6] 6JzwXZvRQ2uIq7wcLZ7F9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.340 [XNIO-1 task-3] PDCEpqmDRQix4OIPtuKYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.340 [XNIO-1 task-3] PDCEpqmDRQix4OIPtuKYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.341 [XNIO-1 task-3] PDCEpqmDRQix4OIPtuKYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.341 [XNIO-1 task-3] PDCEpqmDRQix4OIPtuKYJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.348 [XNIO-1 task-3] PDCEpqmDRQix4OIPtuKYJw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.350 [XNIO-1 task-6] 31wtemL-S7yj2lyTG1XNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.350 [XNIO-1 task-6] 31wtemL-S7yj2lyTG1XNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.350 [XNIO-1 task-6] 31wtemL-S7yj2lyTG1XNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.351 [XNIO-1 task-6] 31wtemL-S7yj2lyTG1XNWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4afe44ea-c683-45d6-a7ff-e096708d7e44 scope = null +07:00:48.352 [XNIO-1 task-3] vyA8AvIRSNWWY7Q3vbbSGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.352 [XNIO-1 task-3] vyA8AvIRSNWWY7Q3vbbSGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.352 [XNIO-1 task-3] vyA8AvIRSNWWY7Q3vbbSGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.352 [XNIO-1 task-3] vyA8AvIRSNWWY7Q3vbbSGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.358 [XNIO-1 task-3] vyA8AvIRSNWWY7Q3vbbSGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.363 [XNIO-1 task-3] MIPN8al4QwaC18kiyPpYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.364 [XNIO-1 task-3] MIPN8al4QwaC18kiyPpYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.364 [XNIO-1 task-3] MIPN8al4QwaC18kiyPpYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.364 [XNIO-1 task-3] MIPN8al4QwaC18kiyPpYpg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.366 [XNIO-1 task-6] 31wtemL-S7yj2lyTG1XNWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.370 [XNIO-1 task-3] MIPN8al4QwaC18kiyPpYpg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.378 [XNIO-1 task-6] 7NCloTudQaypXRWElrxrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.378 [XNIO-1 task-6] 7NCloTudQaypXRWElrxrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.379 [XNIO-1 task-6] 7NCloTudQaypXRWElrxrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.379 [XNIO-1 task-6] 7NCloTudQaypXRWElrxrCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.385 [XNIO-1 task-6] 7NCloTudQaypXRWElrxrCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.387 [XNIO-1 task-3] rSvKLQLjTIqw7pE5146OgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 29, 2024 7:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +07:00:48.387 [XNIO-1 task-3] rSvKLQLjTIqw7pE5146OgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.388 [XNIO-1 task-3] rSvKLQLjTIqw7pE5146OgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.388 [XNIO-1 task-3] rSvKLQLjTIqw7pE5146OgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.388 [XNIO-1 task-3] rSvKLQLjTIqw7pE5146OgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:48.388 [XNIO-1 task-3] rSvKLQLjTIqw7pE5146OgA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 32a22622-ed32-4863-b6aa-b702bd830735 scope = null +07:00:48.390 [XNIO-1 task-6] A9fHzxCpQPisuDFqml5Ibw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.392 [XNIO-1 task-6] A9fHzxCpQPisuDFqml5Ibw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +07:00:48.393 [XNIO-1 task-6] A9fHzxCpQPisuDFqml5Ibw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.393 [XNIO-1 task-6] A9fHzxCpQPisuDFqml5Ibw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:48.395 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d8996987-d447-4728-9513-b00e9aafeaf3 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +07:00:48.413 [XNIO-1 task-3] rSvKLQLjTIqw7pE5146OgA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +07:00:48.413 [XNIO-1 task-6] UX1DdMYCTAiNI4mdumPYLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.413 [XNIO-1 task-6] UX1DdMYCTAiNI4mdumPYLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + ... 14 more + +07:00:48.414 [XNIO-1 task-5] BqMx9iRLRQCb9ne3IN6HnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.414 [XNIO-1 task-5] BqMx9iRLRQCb9ne3IN6HnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.415 [XNIO-1 task-5] BqMx9iRLRQCb9ne3IN6HnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.415 [XNIO-1 task-5] BqMx9iRLRQCb9ne3IN6HnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.415 [XNIO-1 task-5] BqMx9iRLRQCb9ne3IN6HnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:48.415 [XNIO-1 task-6] UX1DdMYCTAiNI4mdumPYLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:48.424 [XNIO-1 task-6] UX1DdMYCTAiNI4mdumPYLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.425 [XNIO-1 task-5] BqMx9iRLRQCb9ne3IN6HnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.425 [XNIO-1 task-5] BqMx9iRLRQCb9ne3IN6HnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +07:00:48.431 [XNIO-1 task-6] D1vE1PY5QdShheUmCLQU4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.431 [XNIO-1 task-6] D1vE1PY5QdShheUmCLQU4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +07:00:48.433 [XNIO-1 task-6] D1vE1PY5QdShheUmCLQU4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = afa168d6-dfa1-4c2b-bda5-88e2e44417de scope = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:48.438 [XNIO-1 task-5] SmuWujBeQvSNy0PduoLpfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.439 [XNIO-1 task-5] SmuWujBeQvSNy0PduoLpfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.439 [XNIO-1 task-5] SmuWujBeQvSNy0PduoLpfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:48.444 [XNIO-1 task-3] L4gQ-bmtTPyOzXo8A86kBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.444 [XNIO-1 task-3] L4gQ-bmtTPyOzXo8A86kBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.444 [XNIO-1 task-5] SmuWujBeQvSNy0PduoLpfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.444 [XNIO-1 task-3] L4gQ-bmtTPyOzXo8A86kBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.445 [XNIO-1 task-3] L4gQ-bmtTPyOzXo8A86kBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:48.447 [XNIO-1 task-6] D1vE1PY5QdShheUmCLQU4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.454 [XNIO-1 task-5] txg8UlEfTaWXFf_1Rb5BNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.454 [XNIO-1 task-5] txg8UlEfTaWXFf_1Rb5BNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.454 [XNIO-1 task-5] txg8UlEfTaWXFf_1Rb5BNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.455 [XNIO-1 task-5] txg8UlEfTaWXFf_1Rb5BNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:48.461 [XNIO-1 task-5] txg8UlEfTaWXFf_1Rb5BNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.463 [XNIO-1 task-3] L4gQ-bmtTPyOzXo8A86kBA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.468 [XNIO-1 task-5] zWPya_LxT8-CsIlSVh0Nsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.468 [XNIO-1 task-5] zWPya_LxT8-CsIlSVh0Nsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.468 [XNIO-1 task-5] zWPya_LxT8-CsIlSVh0Nsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.469 [XNIO-1 task-5] zWPya_LxT8-CsIlSVh0Nsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", "Basic MTg4MGMxYWUtMzMzMy00YzM3LWFkMGMtNzg5NTRmMDA1MzMzOldaNVdvb3h1UUZtTHA2Uk05TDJXOGc=", authorization) +07:00:48.472 [XNIO-1 task-6] f52ftw4nTq-BB49P0DNpcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.472 [XNIO-1 task-6] f52ftw4nTq-BB49P0DNpcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.473 [XNIO-1 task-6] f52ftw4nTq-BB49P0DNpcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.474 [XNIO-1 task-6] f52ftw4nTq-BB49P0DNpcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:48.475 [XNIO-1 task-5] zWPya_LxT8-CsIlSVh0Nsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.482 [XNIO-1 task-5] bOwNyXrZTHWFln3Bov3ggg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.483 [XNIO-1 task-5] bOwNyXrZTHWFln3Bov3ggg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.483 [XNIO-1 task-5] bOwNyXrZTHWFln3Bov3ggg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.483 [XNIO-1 task-5] bOwNyXrZTHWFln3Bov3ggg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", authorization) +07:00:48.489 [XNIO-1 task-5] bOwNyXrZTHWFln3Bov3ggg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.492 [XNIO-1 task-3] 0uomWLMsR6KDDdXkwdhCdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.492 [XNIO-1 task-3] 0uomWLMsR6KDDdXkwdhCdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.492 [XNIO-1 task-3] 0uomWLMsR6KDDdXkwdhCdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.493 [XNIO-1 task-3] 0uomWLMsR6KDDdXkwdhCdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:48.494 [XNIO-1 task-6] f52ftw4nTq-BB49P0DNpcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.499 [XNIO-1 task-5] jn5KeGjRRv6dVjaqOcWc1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.499 [XNIO-1 task-5] jn5KeGjRRv6dVjaqOcWc1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.500 [XNIO-1 task-3] 0uomWLMsR6KDDdXkwdhCdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.500 [XNIO-1 task-3] 0uomWLMsR6KDDdXkwdhCdg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.504 [XNIO-1 task-5] jn5KeGjRRv6dVjaqOcWc1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.504 [XNIO-1 task-5] jn5KeGjRRv6dVjaqOcWc1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.512 [XNIO-1 task-5] jn5KeGjRRv6dVjaqOcWc1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.529 [XNIO-1 task-5] dJTTA1-yToG9xzO_FD4vhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.530 [XNIO-1 task-5] dJTTA1-yToG9xzO_FD4vhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.530 [XNIO-1 task-5] dJTTA1-yToG9xzO_FD4vhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.530 [XNIO-1 task-5] dJTTA1-yToG9xzO_FD4vhQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.539 [XNIO-1 task-5] dJTTA1-yToG9xzO_FD4vhQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.547 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:87467b1e-9fac-4728-9dbe-b06b7aac583c +07:00:48.554 [XNIO-1 task-5] zD6FzJyxQ9S94Roct49sxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.555 [XNIO-1 task-3] vkXY4pftQ66Y8BezchvWqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.555 [XNIO-1 task-3] vkXY4pftQ66Y8BezchvWqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.555 [XNIO-1 task-3] vkXY4pftQ66Y8BezchvWqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.555 [XNIO-1 task-3] vkXY4pftQ66Y8BezchvWqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:48.555 [XNIO-1 task-5] zD6FzJyxQ9S94Roct49sxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.556 [XNIO-1 task-5] zD6FzJyxQ9S94Roct49sxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.556 [XNIO-1 task-5] zD6FzJyxQ9S94Roct49sxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", authorization) +07:00:48.559 [XNIO-1 task-6] aPl-euiCSImk2MwQfTT-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.559 [XNIO-1 task-6] aPl-euiCSImk2MwQfTT-PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.560 [XNIO-1 task-6] aPl-euiCSImk2MwQfTT-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.560 [XNIO-1 task-6] aPl-euiCSImk2MwQfTT-PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", authorization) +07:00:48.562 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5902c9f3-9e52-435a-9e44-0215e49fa165 +07:00:48.565 [XNIO-1 task-6] aPl-euiCSImk2MwQfTT-PQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.570 [XNIO-1 task-5] zD6FzJyxQ9S94Roct49sxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.570 [XNIO-1 task-6] N0DtJJ-VTkms-4KQwg6QhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.571 [XNIO-1 task-6] N0DtJJ-VTkms-4KQwg6QhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.571 [XNIO-1 task-3] vkXY4pftQ66Y8BezchvWqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.571 [XNIO-1 task-3] vkXY4pftQ66Y8BezchvWqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.571 [XNIO-1 task-6] N0DtJJ-VTkms-4KQwg6QhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.572 [XNIO-1 task-6] N0DtJJ-VTkms-4KQwg6QhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:48.574 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:045b937f-ce2e-4e43-abde-71902e9d3f62 +07:00:48.578 [XNIO-1 task-6] N0DtJJ-VTkms-4KQwg6QhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.592 [XNIO-1 task-5] NPdy25FMT0e0JUuI-IfxhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.592 [XNIO-1 task-5] NPdy25FMT0e0JUuI-IfxhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.593 [XNIO-1 task-5] NPdy25FMT0e0JUuI-IfxhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.593 [XNIO-1 task-5] NPdy25FMT0e0JUuI-IfxhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", authorization) +07:00:48.598 [XNIO-1 task-5] NPdy25FMT0e0JUuI-IfxhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.605 [XNIO-1 task-5] BZmAItHeS2OSjF96Q3RntA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.605 [XNIO-1 task-5] BZmAItHeS2OSjF96Q3RntA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.606 [XNIO-1 task-5] BZmAItHeS2OSjF96Q3RntA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.606 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bb81d148-63cb-4d99-a2e1-5d82993cc627 +07:00:48.606 [XNIO-1 task-5] BZmAItHeS2OSjF96Q3RntA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.611 [XNIO-1 task-5] BZmAItHeS2OSjF96Q3RntA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:48.620 [XNIO-1 task-5] XdP9AM2qRR2T-IIGtW0_7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.620 [XNIO-1 task-5] XdP9AM2qRR2T-IIGtW0_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.621 [XNIO-1 task-5] XdP9AM2qRR2T-IIGtW0_7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.621 [XNIO-1 task-6] fK6TtuLkRhq-NXU8uVRUWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.621 [XNIO-1 task-5] XdP9AM2qRR2T-IIGtW0_7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.622 [XNIO-1 task-5] XdP9AM2qRR2T-IIGtW0_7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", authorization) +07:00:48.622 [XNIO-1 task-6] fK6TtuLkRhq-NXU8uVRUWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.623 [XNIO-1 task-6] fK6TtuLkRhq-NXU8uVRUWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", authorization) +07:00:48.628 [XNIO-1 task-6] fK6TtuLkRhq-NXU8uVRUWw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.629 [XNIO-1 task-5] XdP9AM2qRR2T-IIGtW0_7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.629 [XNIO-1 task-5] XdP9AM2qRR2T-IIGtW0_7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.635 [XNIO-1 task-6] 7mDepURkQzOo-ehjwRKIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.635 [XNIO-1 task-6] 7mDepURkQzOo-ehjwRKIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.636 [XNIO-1 task-6] 7mDepURkQzOo-ehjwRKIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.636 [XNIO-1 task-3] dcc0gn_hT2GuGGGa5hSj3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.636 [XNIO-1 task-3] dcc0gn_hT2GuGGGa5hSj3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.636 [XNIO-1 task-3] dcc0gn_hT2GuGGGa5hSj3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.637 [XNIO-1 task-3] dcc0gn_hT2GuGGGa5hSj3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY5OGFjNjEtYTVmOS00OWYzLTgzZGItOWMxYzZiNTkxODgyOktSTkhOYk5NUnJ1WEUxMzV6VVNad0E=", "Basic YzY5OGFjNjEtYTVmOS00OWYzLTgzZGItOWMxYzZiNTkxODgyOktSTkhOYk5NUnJ1WEUxMzV6VVNad0E=", authorization) +07:00:48.637 [XNIO-1 task-6] 7mDepURkQzOo-ehjwRKIdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.643 [XNIO-1 task-6] 7mDepURkQzOo-ehjwRKIdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.644 [XNIO-1 task-3] dcc0gn_hT2GuGGGa5hSj3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.648 [XNIO-1 task-6] 650-PBelR_e71j1gJyJ-4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.649 [XNIO-1 task-6] 650-PBelR_e71j1gJyJ-4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.651 [XNIO-1 task-6] 650-PBelR_e71j1gJyJ-4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.651 [XNIO-1 task-6] 650-PBelR_e71j1gJyJ-4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:48.662 [XNIO-1 task-6] 650-PBelR_e71j1gJyJ-4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.670 [XNIO-1 task-6] zrI32YDDR-yH4LdyCa_tvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.670 [XNIO-1 task-6] zrI32YDDR-yH4LdyCa_tvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.670 [XNIO-1 task-6] zrI32YDDR-yH4LdyCa_tvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.671 [XNIO-1 task-6] zrI32YDDR-yH4LdyCa_tvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:48.677 [XNIO-1 task-6] zrI32YDDR-yH4LdyCa_tvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.685 [XNIO-1 task-6] c36eEY-URMy-tCjxOjRb2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.685 [XNIO-1 task-6] c36eEY-URMy-tCjxOjRb2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.685 [XNIO-1 task-6] c36eEY-URMy-tCjxOjRb2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.686 [XNIO-1 task-6] c36eEY-URMy-tCjxOjRb2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:48.691 [XNIO-1 task-3] f2VOIJjtTnyxwV-MMnQUEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.691 [XNIO-1 task-3] f2VOIJjtTnyxwV-MMnQUEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.691 [XNIO-1 task-3] f2VOIJjtTnyxwV-MMnQUEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.692 [XNIO-1 task-3] f2VOIJjtTnyxwV-MMnQUEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.692 [XNIO-1 task-3] f2VOIJjtTnyxwV-MMnQUEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTU4ZTdlZTItYjExYi00YzU1LWE2YTUtZmUzYmQ5NGViM2YxOmtnZEVlc2h3UmhTYVdkdUxQV1BOWEE=", "Basic YTU4ZTdlZTItYjExYi00YzU1LWE2YTUtZmUzYmQ5NGViM2YxOmtnZEVlc2h3UmhTYVdkdUxQV1BOWEE=", authorization) +07:00:48.699 [XNIO-1 task-6] vtKj7ncxTQ-__0viROZPzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.699 [XNIO-1 task-6] vtKj7ncxTQ-__0viROZPzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.699 [XNIO-1 task-6] vtKj7ncxTQ-__0viROZPzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.700 [XNIO-1 task-6] vtKj7ncxTQ-__0viROZPzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:48.704 [XNIO-1 task-6] vtKj7ncxTQ-__0viROZPzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.707 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3b1551ed +07:00:48.708 [XNIO-1 task-3] f2VOIJjtTnyxwV-MMnQUEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.711 [XNIO-1 task-6] wCQmuv8ISkKOX44X6Z_yiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.713 [XNIO-1 task-6] wCQmuv8ISkKOX44X6Z_yiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.711 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:da87eaef-8d37-40b5-ac9e-5cee20b6cdb6 +07:00:48.713 [XNIO-1 task-6] wCQmuv8ISkKOX44X6Z_yiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.712 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3b1551ed +07:00:48.714 [XNIO-1 task-6] wCQmuv8ISkKOX44X6Z_yiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", "Basic NTdmY2MyZDgtZTIxYi00OWQ0LWE3MTktMGQ4NmM3NmFiMDVkOkVBZEdYZ2h1VEFPMndVMEJEY3NpNFE=", authorization) +07:00:48.720 [XNIO-1 task-6] wCQmuv8ISkKOX44X6Z_yiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.734 [XNIO-1 task-6] Pjhv43GZQKqzLaiDbluxlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.734 [XNIO-1 task-6] Pjhv43GZQKqzLaiDbluxlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.735 [XNIO-1 task-6] Pjhv43GZQKqzLaiDbluxlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.735 [XNIO-1 task-6] Pjhv43GZQKqzLaiDbluxlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", authorization) +07:00:48.742 [XNIO-1 task-6] Pjhv43GZQKqzLaiDbluxlw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.743 [XNIO-1 task-3] EQqzVXGgS6yYKCL8vHwe5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.743 [XNIO-1 task-3] EQqzVXGgS6yYKCL8vHwe5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.744 [XNIO-1 task-3] EQqzVXGgS6yYKCL8vHwe5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.744 [XNIO-1 task-3] EQqzVXGgS6yYKCL8vHwe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", "Basic NmQwNzI0YzgtMDYyYi00Yjg0LThiNTktNTc3MmNmNzk1MmE5OnR5dmVmNWx3UTlleWYxMzMtRzViTWc=", authorization) +07:00:48.747 [XNIO-1 task-6] yX6f3qd7QNadfhEdYvBaWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.747 [XNIO-1 task-6] yX6f3qd7QNadfhEdYvBaWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.747 [XNIO-1 task-6] yX6f3qd7QNadfhEdYvBaWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.748 [XNIO-1 task-6] yX6f3qd7QNadfhEdYvBaWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", "Basic NGY4MjkwNGUtNTVjZi00ZDkwLTg3MDktYjE0YTYwODk1ZmE1OnBOQlVyZzBwUkdhWENfV1NBa0xfc0E=", authorization) +07:00:48.752 [XNIO-1 task-6] yX6f3qd7QNadfhEdYvBaWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.754 [XNIO-1 task-5] SesdzYwVQlqFh0DEzOtlnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.754 [XNIO-1 task-5] SesdzYwVQlqFh0DEzOtlnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.754 [XNIO-1 task-5] SesdzYwVQlqFh0DEzOtlnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.754 [XNIO-1 task-5] SesdzYwVQlqFh0DEzOtlnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", authorization) +07:00:48.755 [XNIO-1 task-3] EQqzVXGgS6yYKCL8vHwe5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.755 [XNIO-1 task-3] EQqzVXGgS6yYKCL8vHwe5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c4a1287-15fd-488f-953d-55aa69c8358f is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:48.771 [XNIO-1 task-5] 0K6Jm85WSAuecxMBIHUH-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.771 [XNIO-1 task-5] 0K6Jm85WSAuecxMBIHUH-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.772 [XNIO-1 task-5] 0K6Jm85WSAuecxMBIHUH-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.772 [XNIO-1 task-5] 0K6Jm85WSAuecxMBIHUH-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQ4NjNhOWMtMWRkZi00Y2FkLWFmMGYtYjI0MDExZThmNWViOlRQdHFNNU5aU2Y2cjdydWQ4ek5ySnc=", "Basic NWQ4NjNhOWMtMWRkZi00Y2FkLWFmMGYtYjI0MDExZThmNWViOlRQdHFNNU5aU2Y2cjdydWQ4ek5ySnc=", authorization) +07:00:48.781 [XNIO-1 task-3] tiprmSNiRjmlbJ6VOt6jqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.781 [XNIO-1 task-3] tiprmSNiRjmlbJ6VOt6jqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.781 [XNIO-1 task-3] tiprmSNiRjmlbJ6VOt6jqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.782 [XNIO-1 task-3] tiprmSNiRjmlbJ6VOt6jqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.788 [XNIO-1 task-6] 7lVJtlefRvSY7HbcuvyIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.788 [XNIO-1 task-3] tiprmSNiRjmlbJ6VOt6jqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", authorization) +07:00:48.788 [XNIO-1 task-6] 7lVJtlefRvSY7HbcuvyIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.789 [XNIO-1 task-6] 7lVJtlefRvSY7HbcuvyIcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.789 [XNIO-1 task-6] 7lVJtlefRvSY7HbcuvyIcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:48.793 [XNIO-1 task-5] 5q_h9NivRxOqVNUyJRraiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.793 [XNIO-1 task-5] 5q_h9NivRxOqVNUyJRraiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.794 [XNIO-1 task-5] 5q_h9NivRxOqVNUyJRraiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.794 [XNIO-1 task-5] 5q_h9NivRxOqVNUyJRraiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQ4NjNhOWMtMWRkZi00Y2FkLWFmMGYtYjI0MDExZThmNWViOlRQdHFNNU5aU2Y2cjdydWQ4ek5ySnc=", "Basic NWQ4NjNhOWMtMWRkZi00Y2FkLWFmMGYtYjI0MDExZThmNWViOlRQdHFNNU5aU2Y2cjdydWQ4ek5ySnc=", authorization) +07:00:48.798 [XNIO-1 task-3] tiprmSNiRjmlbJ6VOt6jqA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:48.799 [XNIO-1 task-5] 5q_h9NivRxOqVNUyJRraiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 99a1a5f3-e024-4618-a565-5902ef05ee1d is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:48.807 [XNIO-1 task-5] pwNUnXGbQxye1vkl0MA3IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.807 [XNIO-1 task-5] pwNUnXGbQxye1vkl0MA3IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.807 [XNIO-1 task-5] pwNUnXGbQxye1vkl0MA3IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.807 [XNIO-1 task-5] pwNUnXGbQxye1vkl0MA3IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", "Basic NDM4ZDM3NTktNWI1MC00YWJlLWJhOGMtYzYwMjliMzA1NWUyOlpTRkhySUZCUkltVHdnN1gtRTB1aHc=", authorization) +07:00:48.813 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3b1551ed +07:00:48.815 [XNIO-1 task-5] pwNUnXGbQxye1vkl0MA3IQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.822 [XNIO-1 task-5] e6TIlV8lRRCny7spSaO9RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.822 [XNIO-1 task-5] e6TIlV8lRRCny7spSaO9RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.822 [XNIO-1 task-5] e6TIlV8lRRCny7spSaO9RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.822 [XNIO-1 task-5] e6TIlV8lRRCny7spSaO9RA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", authorization) +07:00:48.830 [XNIO-1 task-5] e6TIlV8lRRCny7spSaO9RA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.835 [XNIO-1 task-5] vbs9Xd9GRdmF6JYdsrQsEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.836 [XNIO-1 task-5] vbs9Xd9GRdmF6JYdsrQsEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.836 [XNIO-1 task-5] vbs9Xd9GRdmF6JYdsrQsEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.837 [XNIO-1 task-5] vbs9Xd9GRdmF6JYdsrQsEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", "Basic NmIwMDFjNmMtYWJjZC00NjkxLTk0MjEtZDIzOTQ2ODhhNTBkOkNkSTFrR0RDU2VLeWxnYWQ5cVVBN1E=", authorization) +07:00:48.842 [XNIO-1 task-5] vbs9Xd9GRdmF6JYdsrQsEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.847 [XNIO-1 task-5] _9m-p4XJSKOnDCoGonplxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.848 [XNIO-1 task-5] _9m-p4XJSKOnDCoGonplxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.848 [XNIO-1 task-5] _9m-p4XJSKOnDCoGonplxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.848 [XNIO-1 task-5] _9m-p4XJSKOnDCoGonplxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:48.854 [XNIO-1 task-5] _9m-p4XJSKOnDCoGonplxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.858 [XNIO-1 task-6] a0heCV9LRyuCaFe39bDtVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.858 [XNIO-1 task-6] a0heCV9LRyuCaFe39bDtVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.858 [XNIO-1 task-6] a0heCV9LRyuCaFe39bDtVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.858 [XNIO-1 task-6] a0heCV9LRyuCaFe39bDtVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:48.859 [XNIO-1 task-3] _fDx6JP4RdOD_2_UU7gbbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.859 [XNIO-1 task-3] _fDx6JP4RdOD_2_UU7gbbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.859 [XNIO-1 task-3] _fDx6JP4RdOD_2_UU7gbbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.860 [XNIO-1 task-3] _fDx6JP4RdOD_2_UU7gbbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:48.860 [XNIO-1 task-5] XpDJFZtnToSZQVZ_W8ZKLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.860 [XNIO-1 task-5] XpDJFZtnToSZQVZ_W8ZKLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.861 [XNIO-1 task-5] XpDJFZtnToSZQVZ_W8ZKLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.861 [XNIO-1 task-5] XpDJFZtnToSZQVZ_W8ZKLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:48.865 [XNIO-1 task-3] _fDx6JP4RdOD_2_UU7gbbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.869 [XNIO-1 task-6] a0heCV9LRyuCaFe39bDtVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:48.869 [XNIO-1 task-6] a0heCV9LRyuCaFe39bDtVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.870 [XNIO-1 task-3] 4MI_u_05T1WRfOFj6Yt7ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.870 [XNIO-1 task-3] 4MI_u_05T1WRfOFj6Yt7ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.871 [XNIO-1 task-3] 4MI_u_05T1WRfOFj6Yt7ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.871 [XNIO-1 task-3] 4MI_u_05T1WRfOFj6Yt7ww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.872 [XNIO-1 task-5] XpDJFZtnToSZQVZ_W8ZKLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.877 [XNIO-1 task-3] 4MI_u_05T1WRfOFj6Yt7ww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.891 [XNIO-1 task-5] 5c9pkZvHQzSUXWiTqnEzlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.891 [XNIO-1 task-5] 5c9pkZvHQzSUXWiTqnEzlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.891 [XNIO-1 task-5] 5c9pkZvHQzSUXWiTqnEzlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.891 [XNIO-1 task-5] 5c9pkZvHQzSUXWiTqnEzlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.891 [XNIO-1 task-5] 5c9pkZvHQzSUXWiTqnEzlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.891 [XNIO-1 task-3] X_4ndiNNSHmrpkttiUl55w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.891 [XNIO-1 task-5] 5c9pkZvHQzSUXWiTqnEzlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:48.892 [XNIO-1 task-3] X_4ndiNNSHmrpkttiUl55w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:48.896 [XNIO-1 task-5] 5c9pkZvHQzSUXWiTqnEzlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.902 [XNIO-1 task-5] Xo2SO2_CQqWmVso_lEK7PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.906 [XNIO-1 task-5] Xo2SO2_CQqWmVso_lEK7PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.907 [XNIO-1 task-5] Xo2SO2_CQqWmVso_lEK7PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.907 [XNIO-1 task-5] Xo2SO2_CQqWmVso_lEK7PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", "Basic YmI4MWQxNDgtNjNjYi00ZDk5LWEyZTEtNWQ4Mjk5M2NjNjI3OmVnWHlsaUp3U0ppTVJGUnVlZkhJUXc=", authorization) +07:00:48.908 [XNIO-1 task-3] X_4ndiNNSHmrpkttiUl55w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.910 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:91a4a1b7-47e3-43bd-bcc3-baa955c39d29 +07:00:48.913 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:91a4a1b7-47e3-43bd-bcc3-baa955c39d29 +07:00:48.923 [XNIO-1 task-5] Xo2SO2_CQqWmVso_lEK7PQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.929 [XNIO-1 task-5] a7Rf4CcmQMWpxE8L9IEhZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.929 [XNIO-1 task-5] a7Rf4CcmQMWpxE8L9IEhZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.929 [XNIO-1 task-5] a7Rf4CcmQMWpxE8L9IEhZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.930 [XNIO-1 task-5] a7Rf4CcmQMWpxE8L9IEhZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.931 [XNIO-1 task-3] cOQVxvc2TZq66qMOpHaVsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.931 [XNIO-1 task-3] cOQVxvc2TZq66qMOpHaVsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.931 [XNIO-1 task-3] cOQVxvc2TZq66qMOpHaVsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.932 [XNIO-1 task-3] cOQVxvc2TZq66qMOpHaVsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MtjP84yPT2K4qmaXs311xg redirectUri = http://localhost:8080/authorization +07:00:48.935 [XNIO-1 task-5] a7Rf4CcmQMWpxE8L9IEhZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.942 [XNIO-1 task-5] HCUdbeEfQvCQuCYBBQuoTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.942 [XNIO-1 task-3] cOQVxvc2TZq66qMOpHaVsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.942 [XNIO-1 task-5] HCUdbeEfQvCQuCYBBQuoTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.943 [XNIO-1 task-5] HCUdbeEfQvCQuCYBBQuoTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.943 [XNIO-1 task-5] HCUdbeEfQvCQuCYBBQuoTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:48.949 [XNIO-1 task-5] HCUdbeEfQvCQuCYBBQuoTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.955 [XNIO-1 task-3] KQZZPMIsRpuLc-udEkmnxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.955 [XNIO-1 task-3] KQZZPMIsRpuLc-udEkmnxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.955 [XNIO-1 task-3] KQZZPMIsRpuLc-udEkmnxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.956 [XNIO-1 task-3] KQZZPMIsRpuLc-udEkmnxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:48.957 [XNIO-1 task-5] zSqMfHIPQquExqyMYEcaEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.957 [XNIO-1 task-5] zSqMfHIPQquExqyMYEcaEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:48.957 [XNIO-1 task-5] zSqMfHIPQquExqyMYEcaEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:48.958 [XNIO-1 task-5] zSqMfHIPQquExqyMYEcaEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTU4ZTdlZTItYjExYi00YzU1LWE2YTUtZmUzYmQ5NGViM2YxOmtnZEVlc2h3UmhTYVdkdUxQV1BOWEE=", "Basic YTU4ZTdlZTItYjExYi00YzU1LWE2YTUtZmUzYmQ5NGViM2YxOmtnZEVlc2h3UmhTYVdkdUxQV1BOWEE=", authorization) +07:00:48.961 [XNIO-1 task-3] KQZZPMIsRpuLc-udEkmnxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:48.963 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:da87eaef-8d37-40b5-ac9e-5cee20b6cdb6 +07:00:48.967 [XNIO-1 task-5] zSqMfHIPQquExqyMYEcaEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:48.974 [XNIO-1 task-3] 6EYsKmD8QmWsxP5PvnolOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.974 [XNIO-1 task-3] 6EYsKmD8QmWsxP5PvnolOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.975 [XNIO-1 task-3] 6EYsKmD8QmWsxP5PvnolOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.975 [XNIO-1 task-3] 6EYsKmD8QmWsxP5PvnolOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:48.978 [XNIO-1 task-6] rdJMewmBT_SZOfJRVmoFMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.978 [XNIO-1 task-6] rdJMewmBT_SZOfJRVmoFMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.979 [XNIO-1 task-6] rdJMewmBT_SZOfJRVmoFMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:48.979 [XNIO-1 task-6] rdJMewmBT_SZOfJRVmoFMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = wrWFcODjSzC1HwrnOoCv7A redirectUri = http://localhost:8080/authorization +07:00:48.981 [XNIO-1 task-3] 6EYsKmD8QmWsxP5PvnolOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.023 [XNIO-1 task-3] sc1qHQOwRTWYGVH7xvJmEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.023 [XNIO-1 task-3] sc1qHQOwRTWYGVH7xvJmEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.024 [XNIO-1 task-3] sc1qHQOwRTWYGVH7xvJmEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.024 [XNIO-1 task-3] sc1qHQOwRTWYGVH7xvJmEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.027 [XNIO-1 task-6] rdJMewmBT_SZOfJRVmoFMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.040 [XNIO-1 task-3] sc1qHQOwRTWYGVH7xvJmEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.040 [XNIO-1 task-3] sc1qHQOwRTWYGVH7xvJmEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.042 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:15ea329c-06fa-4d31-83ef-0b93053795b4 +07:00:49.048 [XNIO-1 task-5] KvTz1RgjQVO4WC4muRN41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.048 [XNIO-1 task-5] KvTz1RgjQVO4WC4muRN41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.048 [XNIO-1 task-5] KvTz1RgjQVO4WC4muRN41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.049 [XNIO-1 task-5] KvTz1RgjQVO4WC4muRN41Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.050 [XNIO-1 task-3] MbBvnYQtTgGIJcMUjGhvvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.050 [XNIO-1 task-3] MbBvnYQtTgGIJcMUjGhvvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.050 [XNIO-1 task-3] MbBvnYQtTgGIJcMUjGhvvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.050 [XNIO-1 task-3] MbBvnYQtTgGIJcMUjGhvvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2RpFr73xQ7ecGc657Pn0QQ redirectUri = http://localhost:8080/authorization +07:00:49.056 [XNIO-1 task-5] KvTz1RgjQVO4WC4muRN41Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.061 [XNIO-1 task-5] 2h_QIc2JQN6r5OGhY-X5Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.061 [XNIO-1 task-5] 2h_QIc2JQN6r5OGhY-X5Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.061 [XNIO-1 task-5] 2h_QIc2JQN6r5OGhY-X5Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.062 [XNIO-1 task-5] 2h_QIc2JQN6r5OGhY-X5Kg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.067 [XNIO-1 task-5] 2h_QIc2JQN6r5OGhY-X5Kg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.073 [XNIO-1 task-3] MbBvnYQtTgGIJcMUjGhvvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.074 [XNIO-1 task-6] rjC7vkoxRVi7gggRu3_Tew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.074 [XNIO-1 task-6] rjC7vkoxRVi7gggRu3_Tew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.074 [XNIO-1 task-5] B-vaTDkKS2mELhZ5jcDUhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.074 [XNIO-1 task-6] rjC7vkoxRVi7gggRu3_Tew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.075 [XNIO-1 task-5] B-vaTDkKS2mELhZ5jcDUhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.075 [XNIO-1 task-6] rjC7vkoxRVi7gggRu3_Tew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.075 [XNIO-1 task-6] rjC7vkoxRVi7gggRu3_Tew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzliMDg4MmEtN2Y2ZC00MWUyLTgzMjItOWZhMjI5YTMwYTgxOmVBRXktR05xUmxtalFhTWJkQjkyenc=", "Basic MzliMDg4MmEtN2Y2ZC00MWUyLTgzMjItOWZhMjI5YTMwYTgxOmVBRXktR05xUmxtalFhTWJkQjkyenc=", authorization) +07:00:49.075 [XNIO-1 task-6] rjC7vkoxRVi7gggRu3_Tew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.076 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:21e0edfc-611b-4db5-b5f3-1d7e8bcc23df +07:00:49.082 [XNIO-1 task-6] rjC7vkoxRVi7gggRu3_Tew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.084 [XNIO-1 task-5] B-vaTDkKS2mELhZ5jcDUhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:49.084 [XNIO-1 task-5] B-vaTDkKS2mELhZ5jcDUhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.091 [XNIO-1 task-6] Xv-WH03LQhKBEMBAO2Yi2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.091 [XNIO-1 task-6] Xv-WH03LQhKBEMBAO2Yi2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.091 [XNIO-1 task-3] w-TUqdUnSF6V55RpSFN0Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.091 [XNIO-1 task-6] Xv-WH03LQhKBEMBAO2Yi2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.091 [XNIO-1 task-3] w-TUqdUnSF6V55RpSFN0Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.091 [XNIO-1 task-6] Xv-WH03LQhKBEMBAO2Yi2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.092 [XNIO-1 task-6] Xv-WH03LQhKBEMBAO2Yi2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODc0NjdiMWUtOWZhYy00NzI4LTlkYmUtYjA2YjdhYWM1ODNjOmN4endZeG5tVExpbWswVnU4Nm5tU3c=", "Basic ODc0NjdiMWUtOWZhYy00NzI4LTlkYmUtYjA2YjdhYWM1ODNjOmN4endZeG5tVExpbWswVnU4Nm5tU3c=", authorization) +07:00:49.092 [XNIO-1 task-6] Xv-WH03LQhKBEMBAO2Yi2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.099 [XNIO-1 task-6] Xv-WH03LQhKBEMBAO2Yi2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.101 [XNIO-1 task-3] w-TUqdUnSF6V55RpSFN0Tg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.103 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7fbf5a88-bfb4-48ec-aefa-6373d8239287 +07:00:49.104 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7fbf5a88-bfb4-48ec-aefa-6373d8239287 +07:00:49.105 [XNIO-1 task-6] myJHpI8JQpi4gLv323CL4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.105 [XNIO-1 task-6] myJHpI8JQpi4gLv323CL4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.106 [XNIO-1 task-6] myJHpI8JQpi4gLv323CL4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.108 [XNIO-1 task-6] myJHpI8JQpi4gLv323CL4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.115 [XNIO-1 task-6] myJHpI8JQpi4gLv323CL4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.127 [XNIO-1 task-3] kGx4M0ODS4WfURr6ertgRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.128 [XNIO-1 task-3] kGx4M0ODS4WfURr6ertgRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.128 [XNIO-1 task-3] kGx4M0ODS4WfURr6ertgRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.128 [XNIO-1 task-3] kGx4M0ODS4WfURr6ertgRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.134 [XNIO-1 task-3] kGx4M0ODS4WfURr6ertgRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.146 [XNIO-1 task-3] MgbgVoy2QSCAnQvtYMgp4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.146 [XNIO-1 task-3] MgbgVoy2QSCAnQvtYMgp4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.146 [XNIO-1 task-3] MgbgVoy2QSCAnQvtYMgp4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.147 [XNIO-1 task-3] MgbgVoy2QSCAnQvtYMgp4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.155 [XNIO-1 task-6] bbNr477uTFSxz6xN0bjO0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.155 [XNIO-1 task-6] bbNr477uTFSxz6xN0bjO0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.156 [XNIO-1 task-6] bbNr477uTFSxz6xN0bjO0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.156 [XNIO-1 task-3] MgbgVoy2QSCAnQvtYMgp4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.156 [XNIO-1 task-6] bbNr477uTFSxz6xN0bjO0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = t_DXd9rgR-WWo8s8I23cIg redirectUri = http://localhost:8080/authorization +07:00:49.164 [XNIO-1 task-6] bbNr477uTFSxz6xN0bjO0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.164 [XNIO-1 task-3] Re-P5efoTuOGmCZ9JQRfyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.164 [XNIO-1 task-3] Re-P5efoTuOGmCZ9JQRfyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.165 [XNIO-1 task-3] Re-P5efoTuOGmCZ9JQRfyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.165 [XNIO-1 task-3] Re-P5efoTuOGmCZ9JQRfyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:49.176 [XNIO-1 task-3] Re-P5efoTuOGmCZ9JQRfyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.177 [XNIO-1 task-3] Re-P5efoTuOGmCZ9JQRfyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.177 [XNIO-1 task-6] dWSh_OysRQqNGzMcID5h3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.178 [XNIO-1 task-6] dWSh_OysRQqNGzMcID5h3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.179 [XNIO-1 task-6] dWSh_OysRQqNGzMcID5h3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", authorization) +07:00:49.186 [XNIO-1 task-3] 5MTMm4oVTTuHpaz-5dUOow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.186 [XNIO-1 task-3] 5MTMm4oVTTuHpaz-5dUOow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.186 [XNIO-1 task-3] 5MTMm4oVTTuHpaz-5dUOow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.187 [XNIO-1 task-3] 5MTMm4oVTTuHpaz-5dUOow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:49.190 [XNIO-1 task-6] dWSh_OysRQqNGzMcID5h3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:49.192 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c961bd58-a238-4bf7-92cc-923f498b14dd +07:00:49.193 [XNIO-1 task-3] 5MTMm4oVTTuHpaz-5dUOow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.195 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c961bd58-a238-4bf7-92cc-923f498b14dd +07:00:49.210 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.210 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.210 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.210 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.210 [XNIO-1 task-3] EyMJO40oQU6PfU9pOK4Zxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.210 [XNIO-1 task-3] EyMJO40oQU6PfU9pOK4Zxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.210 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", authorization) +07:00:49.211 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fd938e05-8916-4631-a5f1-2ac70994e918 scope = null +07:00:49.215 [XNIO-1 task-3] EyMJO40oQU6PfU9pOK4Zxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.221 [XNIO-1 task-3] 23Fq5abRQD2EUahKPcrj-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.222 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.223 [XNIO-1 task-6] iXdrPf_PTiyBvijpgrYctw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.223 [XNIO-1 task-3] 23Fq5abRQD2EUahKPcrj-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.224 [XNIO-1 task-3] 23Fq5abRQD2EUahKPcrj-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:49.231 [XNIO-1 task-3] 23Fq5abRQD2EUahKPcrj-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.241 [XNIO-1 task-6] kFY5qo95SfuYoGmlZ1Q_yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.241 [XNIO-1 task-6] kFY5qo95SfuYoGmlZ1Q_yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.241 [XNIO-1 task-6] kFY5qo95SfuYoGmlZ1Q_yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.242 [XNIO-1 task-6] kFY5qo95SfuYoGmlZ1Q_yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", "Basic MGQ5MzI3YjQtNGMzMC00OTZlLTliYzItZjAyMGQ0ZThkOGFjOm9ZZzJiWnhkU0MyMGl3dFQxc1JwMkE=", authorization) +07:00:49.247 [XNIO-1 task-6] kFY5qo95SfuYoGmlZ1Q_yg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.254 [XNIO-1 task-3] eqciu_FKT86VxzPa458bXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.255 [XNIO-1 task-3] eqciu_FKT86VxzPa458bXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.255 [XNIO-1 task-3] eqciu_FKT86VxzPa458bXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.255 [XNIO-1 task-3] eqciu_FKT86VxzPa458bXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", "Basic NTkwMmM5ZjMtOWU1Mi00MzVhLTllNDQtMDIxNWU0OWZhMTY1Ond1Zlg3QnNRUkotOVNKR2h6UTBoRmc=", authorization) +07:00:49.258 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7d6165c7 +07:00:49.259 [XNIO-1 task-6] MR7dRK7hSzieFmfrs4QEbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.259 [XNIO-1 task-6] MR7dRK7hSzieFmfrs4QEbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.259 [XNIO-1 task-6] MR7dRK7hSzieFmfrs4QEbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.260 [XNIO-1 task-6] MR7dRK7hSzieFmfrs4QEbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.265 [XNIO-1 task-6] MR7dRK7hSzieFmfrs4QEbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.273 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7d6165c7 +07:00:49.280 [XNIO-1 task-6] -rB82W2rTyyT7AxuK_u82Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.280 [XNIO-1 task-6] -rB82W2rTyyT7AxuK_u82Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.281 [XNIO-1 task-6] -rB82W2rTyyT7AxuK_u82Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.286 [XNIO-1 task-6] -rB82W2rTyyT7AxuK_u82Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.292 [XNIO-1 task-6] -rB82W2rTyyT7AxuK_u82Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.298 [XNIO-1 task-6] QGkl1q_sSR-sLWqhC8o5_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.298 [XNIO-1 task-6] QGkl1q_sSR-sLWqhC8o5_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.301 [XNIO-1 task-6] QGkl1q_sSR-sLWqhC8o5_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.301 [XNIO-1 task-6] QGkl1q_sSR-sLWqhC8o5_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.302 [XNIO-1 task-3] eqciu_FKT86VxzPa458bXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.312 [XNIO-1 task-6] QGkl1q_sSR-sLWqhC8o5_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.320 [XNIO-1 task-3] Osen8j36QCaeRyF0WoiMIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.320 [XNIO-1 task-3] Osen8j36QCaeRyF0WoiMIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.321 [XNIO-1 task-3] Osen8j36QCaeRyF0WoiMIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.321 [XNIO-1 task-3] Osen8j36QCaeRyF0WoiMIQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.332 [XNIO-1 task-3] Osen8j36QCaeRyF0WoiMIQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.342 [XNIO-1 task-6] 2328GPeQRyeCmV4U8LlQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.343 [XNIO-1 task-6] 2328GPeQRyeCmV4U8LlQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.343 [XNIO-1 task-6] 2328GPeQRyeCmV4U8LlQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.343 [XNIO-1 task-6] 2328GPeQRyeCmV4U8LlQlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = SqiuwI8yRkKXNb3gGqZVaw redirectUri = http://localhost:8080/authorization +07:00:49.344 [XNIO-1 task-3] 5YMdhqU7ScCU-m3xtGh5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.344 [XNIO-1 task-3] 5YMdhqU7ScCU-m3xtGh5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.345 [XNIO-1 task-3] 5YMdhqU7ScCU-m3xtGh5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.346 [XNIO-1 task-3] 5YMdhqU7ScCU-m3xtGh5qg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.350 [XNIO-1 task-6] 2328GPeQRyeCmV4U8LlQlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.351 [XNIO-1 task-3] 5YMdhqU7ScCU-m3xtGh5qg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.352 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9c5d6ba3-8d0a-43d8-82df-2a180a23239c +07:00:49.358 [XNIO-1 task-3] L6Dr-2vQQfyOTkQ6JaAHMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.358 [XNIO-1 task-3] L6Dr-2vQQfyOTkQ6JaAHMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.358 [XNIO-1 task-3] L6Dr-2vQQfyOTkQ6JaAHMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.359 [XNIO-1 task-3] L6Dr-2vQQfyOTkQ6JaAHMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", authorization) +07:00:49.365 [XNIO-1 task-3] L6Dr-2vQQfyOTkQ6JaAHMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.371 [XNIO-1 task-3] 1xanDdvGTtWq0SIm3kRwPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.371 [XNIO-1 task-3] 1xanDdvGTtWq0SIm3kRwPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.372 [XNIO-1 task-3] 1xanDdvGTtWq0SIm3kRwPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.373 [XNIO-1 task-3] 1xanDdvGTtWq0SIm3kRwPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", authorization) +07:00:49.380 [XNIO-1 task-3] 1xanDdvGTtWq0SIm3kRwPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.385 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:83bb595b +07:00:49.386 [XNIO-1 task-3] Ll0J63k_TE6kyqeUI9X05g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.386 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:83bb595b +07:00:49.386 [XNIO-1 task-3] Ll0J63k_TE6kyqeUI9X05g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.386 [XNIO-1 task-3] Ll0J63k_TE6kyqeUI9X05g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.387 [XNIO-1 task-3] Ll0J63k_TE6kyqeUI9X05g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.393 [XNIO-1 task-3] Ll0J63k_TE6kyqeUI9X05g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.399 [XNIO-1 task-3] 5V_s92z7S9akhok1lM74Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.399 [XNIO-1 task-3] 5V_s92z7S9akhok1lM74Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.399 [XNIO-1 task-3] 5V_s92z7S9akhok1lM74Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.400 [XNIO-1 task-3] 5V_s92z7S9akhok1lM74Aw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.403 [XNIO-1 task-6] VgAZixyoR0-yQvtLFl5XtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.404 [XNIO-1 task-6] VgAZixyoR0-yQvtLFl5XtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.404 [XNIO-1 task-6] VgAZixyoR0-yQvtLFl5XtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.405 [XNIO-1 task-6] VgAZixyoR0-yQvtLFl5XtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = U7NZtL3FRrOJHmL27qMLsw redirectUri = http://localhost:8080/authorization +07:00:49.405 [XNIO-1 task-3] 5V_s92z7S9akhok1lM74Aw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.418 [XNIO-1 task-6] VgAZixyoR0-yQvtLFl5XtQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.411 [XNIO-1 task-3] 8K1dR5YIQu6WI_kkkrYvvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.418 [XNIO-1 task-3] 8K1dR5YIQu6WI_kkkrYvvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.419 [XNIO-1 task-3] 8K1dR5YIQu6WI_kkkrYvvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.419 [XNIO-1 task-3] 8K1dR5YIQu6WI_kkkrYvvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", authorization) +07:00:49.427 [XNIO-1 task-3] 8K1dR5YIQu6WI_kkkrYvvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.430 [XNIO-1 task-6] aNfrdJnlQiyKOWoIj_2_tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.430 [XNIO-1 task-6] aNfrdJnlQiyKOWoIj_2_tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.430 [XNIO-1 task-6] aNfrdJnlQiyKOWoIj_2_tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.431 [XNIO-1 task-6] aNfrdJnlQiyKOWoIj_2_tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", authorization) +07:00:49.435 [XNIO-1 task-3] qQVYfYmtT3C8jZYPi8ITwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.435 [XNIO-1 task-3] qQVYfYmtT3C8jZYPi8ITwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.435 [XNIO-1 task-3] qQVYfYmtT3C8jZYPi8ITwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.435 [XNIO-1 task-3] qQVYfYmtT3C8jZYPi8ITwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.436 [XNIO-1 task-3] qQVYfYmtT3C8jZYPi8ITwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.436 [XNIO-1 task-5] kySj6vPTRZ6JBc_Ce8zs3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.436 [XNIO-1 task-3] qQVYfYmtT3C8jZYPi8ITwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", "Basic YzIxMDQyMzQtOTY5ZC00MmQzLTg4MWUtZDY1YWFhMTIwNGJkOjc4dHM5N0FVVDZxS1dYRW5jcmNzaGc=", authorization) +07:00:49.436 [XNIO-1 task-5] kySj6vPTRZ6JBc_Ce8zs3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", authorization) +07:00:49.441 [XNIO-1 task-6] aNfrdJnlQiyKOWoIj_2_tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:49.441 [XNIO-1 task-6] aNfrdJnlQiyKOWoIj_2_tQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b20099a9-5602-4d0f-a901-cede2030eeb4 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:49.444 [XNIO-1 task-3] qQVYfYmtT3C8jZYPi8ITwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.447 [XNIO-1 task-5] 4dv1t4_4TvaSHVeEyvYQzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.447 [XNIO-1 task-5] 4dv1t4_4TvaSHVeEyvYQzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.447 [XNIO-1 task-5] 4dv1t4_4TvaSHVeEyvYQzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.447 [XNIO-1 task-5] 4dv1t4_4TvaSHVeEyvYQzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", "Basic YzJkNmYwYjAtN2NlZC00MGI4LThjYmYtNzRkZjljOWZkODI5OmJDdFpjdnpZUzZpbElscHoxdlRDUUE=", authorization) +07:00:49.453 [XNIO-1 task-6] 1husjUXUQxWOE4BplzqNow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.453 [XNIO-1 task-6] 1husjUXUQxWOE4BplzqNow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.453 [XNIO-1 task-6] 1husjUXUQxWOE4BplzqNow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.454 [XNIO-1 task-6] 1husjUXUQxWOE4BplzqNow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzI3ZDgwYWItNmEyZC00ZWM2LTk2Y2QtMjhhOTAyZTU1OWVmOk5kRGVCSU9PUkZpUG9jT3AxTnY2WkE=", "Basic YzI3ZDgwYWItNmEyZC00ZWM2LTk2Y2QtMjhhOTAyZTU1OWVmOk5kRGVCSU9PUkZpUG9jT3AxTnY2WkE=", authorization) +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +07:00:49.458 [XNIO-1 task-5] 4dv1t4_4TvaSHVeEyvYQzw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:49.466 [XNIO-1 task-6] 1husjUXUQxWOE4BplzqNow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.479 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6f7eddd3-8e16-41bd-a571-65be05a3d18c + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +07:00:49.488 [XNIO-1 task-6] TIvPXt_fQiGeS0PBfaDD6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.488 [XNIO-1 task-6] TIvPXt_fQiGeS0PBfaDD6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:49.489 [XNIO-1 task-6] TIvPXt_fQiGeS0PBfaDD6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", "Basic ZDM0NTYwNmYtMjBjNC00YzVkLTg2ODQtZmUxMjcxNjE1YmJmOl9NLUlzUFBZVGFxNHFDWmdZMHpFVmc=", authorization) +07:00:49.496 [XNIO-1 task-6] TIvPXt_fQiGeS0PBfaDD6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +07:00:49.501 [XNIO-1 task-5] j4FmZ1gNSfiWzDSQ_bRWSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.502 [XNIO-1 task-5] j4FmZ1gNSfiWzDSQ_bRWSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.504 [XNIO-1 task-5] j4FmZ1gNSfiWzDSQ_bRWSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.504 [XNIO-1 task-5] j4FmZ1gNSfiWzDSQ_bRWSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.505 [XNIO-1 task-5] j4FmZ1gNSfiWzDSQ_bRWSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:49.505 [XNIO-1 task-5] j4FmZ1gNSfiWzDSQ_bRWSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = aafe55bc-1845-4ee6-a1ec-f3e9c575f498 scope = null +07:00:49.503 [XNIO-1 task-6] 5CONDU4oTlCMTKUdRg4iVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + +07:00:49.507 [XNIO-1 task-6] 5CONDU4oTlCMTKUdRg4iVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.507 [XNIO-1 task-6] 5CONDU4oTlCMTKUdRg4iVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.513 [XNIO-1 task-6] 5CONDU4oTlCMTKUdRg4iVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.514 [XNIO-1 task-6] 5CONDU4oTlCMTKUdRg4iVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aafe55bc-1845-4ee6-a1ec-f3e9c575f498 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +07:00:49.522 [XNIO-1 task-6] 5CONDU4oTlCMTKUdRg4iVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.530 [XNIO-1 task-6] Nhphs5vCT9aQKZnxe0pvbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.530 [XNIO-1 task-6] Nhphs5vCT9aQKZnxe0pvbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.531 [XNIO-1 task-6] Nhphs5vCT9aQKZnxe0pvbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.531 [XNIO-1 task-6] Nhphs5vCT9aQKZnxe0pvbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTU4ZTdlZTItYjExYi00YzU1LWE2YTUtZmUzYmQ5NGViM2YxOmtnZEVlc2h3UmhTYVdkdUxQV1BOWEE=", "Basic YTU4ZTdlZTItYjExYi00YzU1LWE2YTUtZmUzYmQ5NGViM2YxOmtnZEVlc2h3UmhTYVdkdUxQV1BOWEE=", authorization) +07:00:49.532 [XNIO-1 task-5] aghKyQ3KS6aUW2bRPJsovA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.532 [XNIO-1 task-5] aghKyQ3KS6aUW2bRPJsovA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.532 [XNIO-1 task-5] aghKyQ3KS6aUW2bRPJsovA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.532 [XNIO-1 task-5] aghKyQ3KS6aUW2bRPJsovA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", "Basic MDgxY2M0YjMtYjQ1My00YzUyLTgyNDQtMDBkYWI2YjkzMWM2OlU5dF9fYWFwVE5ldmxCV0kwRUcwSUE=", authorization) +07:00:49.539 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:83bb595b +07:00:49.541 [XNIO-1 task-6] Nhphs5vCT9aQKZnxe0pvbQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +07:00:49.544 [XNIO-1 task-5] aghKyQ3KS6aUW2bRPJsovA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.552 [XNIO-1 task-5] XcqymYlfQmOuTtJwY6gQ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.552 [XNIO-1 task-5] XcqymYlfQmOuTtJwY6gQ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.552 [XNIO-1 task-5] XcqymYlfQmOuTtJwY6gQ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.553 [XNIO-1 task-5] XcqymYlfQmOuTtJwY6gQ4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.559 [XNIO-1 task-5] XcqymYlfQmOuTtJwY6gQ4w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.569 [XNIO-1 task-5] -NkoXBZ4Sp6yO8RgJJJdnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.569 [XNIO-1 task-5] -NkoXBZ4Sp6yO8RgJJJdnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.570 [XNIO-1 task-5] -NkoXBZ4Sp6yO8RgJJJdnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.570 [XNIO-1 task-5] -NkoXBZ4Sp6yO8RgJJJdnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.574 [XNIO-1 task-6] HrC3jIVxThiXry58jXIkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.574 [XNIO-1 task-6] HrC3jIVxThiXry58jXIkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.574 [XNIO-1 task-6] HrC3jIVxThiXry58jXIkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.574 [XNIO-1 task-6] HrC3jIVxThiXry58jXIkZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = xBNBywAmQ5ab6unKngKYoA redirectUri = http://localhost:8080/authorization +07:00:49.579 [XNIO-1 task-5] -NkoXBZ4Sp6yO8RgJJJdnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.582 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7d6165c7 +07:00:49.586 [XNIO-1 task-5] eKBebXSYS3qqvdP4LgUoag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.586 [XNIO-1 task-5] eKBebXSYS3qqvdP4LgUoag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.586 [XNIO-1 task-5] eKBebXSYS3qqvdP4LgUoag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.587 [XNIO-1 task-5] eKBebXSYS3qqvdP4LgUoag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.592 [XNIO-1 task-6] HrC3jIVxThiXry58jXIkZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.592 [XNIO-1 task-5] eKBebXSYS3qqvdP4LgUoag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.594 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:76fc04ff +07:00:49.595 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9197072b-e92d-410a-85ca-363e729ddb36 +07:00:49.597 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:76fc04ff +07:00:49.598 [XNIO-1 task-5] g1RPMJjTQvyJyb24JMkJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.598 [XNIO-1 task-5] g1RPMJjTQvyJyb24JMkJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.598 [XNIO-1 task-5] g1RPMJjTQvyJyb24JMkJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.598 [XNIO-1 task-5] g1RPMJjTQvyJyb24JMkJoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.604 [XNIO-1 task-5] g1RPMJjTQvyJyb24JMkJoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.609 [XNIO-1 task-5] uKo2wFUCTAibv5wLGKhadQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.609 [XNIO-1 task-5] uKo2wFUCTAibv5wLGKhadQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.609 [XNIO-1 task-5] uKo2wFUCTAibv5wLGKhadQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.610 [XNIO-1 task-5] uKo2wFUCTAibv5wLGKhadQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.615 [XNIO-1 task-5] uKo2wFUCTAibv5wLGKhadQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.615 [XNIO-1 task-6] XuAr1MaHS-ehLYhZSK2ITQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.616 [XNIO-1 task-6] XuAr1MaHS-ehLYhZSK2ITQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.616 [XNIO-1 task-6] XuAr1MaHS-ehLYhZSK2ITQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.616 [XNIO-1 task-6] XuAr1MaHS-ehLYhZSK2ITQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9197072b-e92d-410a-85ca-363e729ddb36 scope = null +07:00:49.621 [XNIO-1 task-5] XzeXFUzFQH6-vzHUoTnwGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.621 [XNIO-1 task-5] XzeXFUzFQH6-vzHUoTnwGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.622 [XNIO-1 task-5] XzeXFUzFQH6-vzHUoTnwGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.622 [XNIO-1 task-5] XzeXFUzFQH6-vzHUoTnwGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", "Basic MGNlN2QxYzctNmY1My00ZmI1LTkyZTUtNGE4Y2EzOGQ4MDc0OklGeUU4elMyUVQtQjh1Y1U5WEVHV1E=", authorization) +07:00:49.628 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9197072b-e92d-410a-85ca-363e729ddb36 +07:00:49.629 [XNIO-1 task-5] XzeXFUzFQH6-vzHUoTnwGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.634 [XNIO-1 task-5] 7_WUPjxDT1qnOeMhCuBfhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.634 [XNIO-1 task-5] 7_WUPjxDT1qnOeMhCuBfhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.634 [XNIO-1 task-6] XuAr1MaHS-ehLYhZSK2ITQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.634 [XNIO-1 task-5] 7_WUPjxDT1qnOeMhCuBfhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.635 [XNIO-1 task-5] 7_WUPjxDT1qnOeMhCuBfhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.640 [XNIO-1 task-5] 7_WUPjxDT1qnOeMhCuBfhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.649 [XNIO-1 task-6] OTBtI-_HQZaDzrvjjhd7bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.649 [XNIO-1 task-6] OTBtI-_HQZaDzrvjjhd7bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.649 [XNIO-1 task-6] OTBtI-_HQZaDzrvjjhd7bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.650 [XNIO-1 task-6] OTBtI-_HQZaDzrvjjhd7bw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.655 [XNIO-1 task-6] OTBtI-_HQZaDzrvjjhd7bw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.661 [XNIO-1 task-6] NWpjjg1qTiy6BOHBVEYPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.662 [XNIO-1 task-6] NWpjjg1qTiy6BOHBVEYPUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.662 [XNIO-1 task-6] NWpjjg1qTiy6BOHBVEYPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.662 [XNIO-1 task-6] NWpjjg1qTiy6BOHBVEYPUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", "Basic MGVkZGQ0NGItMDAyNi00YjkxLWI0OTMtNDU2N2UzNzc4NjFiOkpHWklKLVc2VHZheWNmUHZyV1RUQmc=", authorization) +07:00:49.667 [XNIO-1 task-6] NWpjjg1qTiy6BOHBVEYPUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.674 [XNIO-1 task-6] Pm9n0lYDSOOkLRrjIXGGcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.674 [XNIO-1 task-6] Pm9n0lYDSOOkLRrjIXGGcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.674 [XNIO-1 task-6] Pm9n0lYDSOOkLRrjIXGGcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.675 [XNIO-1 task-6] Pm9n0lYDSOOkLRrjIXGGcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", "Basic ZTE1MDI5OWYtZWVkOC00Y2Q5LTg3NTItMWE4YTliODE4Y2E5OjQ2Tml4aHZKU3JtOEJ6NXRVSVQ5QVE=", authorization) +07:00:49.681 [XNIO-1 task-6] Pm9n0lYDSOOkLRrjIXGGcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.683 [XNIO-1 task-5] JhNaLyz2T5u31ge7szI-nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.684 [XNIO-1 task-5] JhNaLyz2T5u31ge7szI-nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.684 [XNIO-1 task-5] JhNaLyz2T5u31ge7szI-nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.684 [XNIO-1 task-5] JhNaLyz2T5u31ge7szI-nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTY5Y2M4MzYtYjJhZS00OGU5LWJmNTktYzkzMTg4OTU5YWM3OkVDUkVpVUh1UThxQzBIU3FTWjNFcWc=", "Basic YTY5Y2M4MzYtYjJhZS00OGU5LWJmNTktYzkzMTg4OTU5YWM3OkVDUkVpVUh1UThxQzBIU3FTWjNFcWc=", authorization) +07:00:49.689 [XNIO-1 task-6] q6LnNklURc2dBk8J_SjX_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.690 [XNIO-1 task-6] q6LnNklURc2dBk8J_SjX_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.690 [XNIO-1 task-6] q6LnNklURc2dBk8J_SjX_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.690 [XNIO-1 task-6] q6LnNklURc2dBk8J_SjX_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", "Basic ODY5YjFjZmMtY2Q3OC00MGRiLTgwZTAtNDBkOTc2MmI0ODJjOm1pWnNPVG14VEppangxRndQSll4TlE=", authorization) +07:00:49.697 [XNIO-1 task-6] q6LnNklURc2dBk8J_SjX_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.697 [XNIO-1 task-5] JhNaLyz2T5u31ge7szI-nw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:49.697 [XNIO-1 task-5] JhNaLyz2T5u31ge7szI-nw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.702 [XNIO-1 task-6] ZpWuLyMuTuCwYrHFAlTU0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.702 [XNIO-1 task-6] ZpWuLyMuTuCwYrHFAlTU0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.703 [XNIO-1 task-6] ZpWuLyMuTuCwYrHFAlTU0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.704 [XNIO-1 task-6] ZpWuLyMuTuCwYrHFAlTU0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.709 [XNIO-1 task-6] ZpWuLyMuTuCwYrHFAlTU0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.715 [XNIO-1 task-6] lQmOKJmTTJSyB-doWmqJPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.715 [XNIO-1 task-6] lQmOKJmTTJSyB-doWmqJPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.716 [XNIO-1 task-6] lQmOKJmTTJSyB-doWmqJPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.716 [XNIO-1 task-6] lQmOKJmTTJSyB-doWmqJPg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = C6lRiIi3SQC4Rw79zazwdQ redirectUri = http://localhost:8080/authorization +07:00:49.718 [XNIO-1 task-5] 8crQZwonSEqgPQbdbuqhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.718 [XNIO-1 task-5] 8crQZwonSEqgPQbdbuqhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.719 [XNIO-1 task-5] 8crQZwonSEqgPQbdbuqhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.719 [XNIO-1 task-3] ARvobk75SyeVYBgFpGg-UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.719 [XNIO-1 task-3] ARvobk75SyeVYBgFpGg-UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.719 [XNIO-1 task-5] 8crQZwonSEqgPQbdbuqhBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d13d7fc3-6ebd-4eec-9a92-c530e3999aa3 scope = null +07:00:49.719 [XNIO-1 task-3] ARvobk75SyeVYBgFpGg-UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.719 [XNIO-1 task-3] ARvobk75SyeVYBgFpGg-UA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", "Basic OWMzNTA2ZDYtNTIyOC00MDM2LWJhMDktZDQ0MTQxOTM0YjI5Om1WdnhpODBLU2JXMUUxTmpoUjd3SEE=", authorization) +07:00:49.722 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eb505c93 +07:00:49.726 [XNIO-1 task-3] ARvobk75SyeVYBgFpGg-UA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.726 [XNIO-1 task-3] ARvobk75SyeVYBgFpGg-UA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.727 [XNIO-1 task-6] lQmOKJmTTJSyB-doWmqJPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.730 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0c015702-e550-4e35-bb19-9a0ee6a6264e +07:00:49.730 [XNIO-1 task-5] 8crQZwonSEqgPQbdbuqhBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.732 [XNIO-1 task-3] 5m9wQfpkRQmdPMzHYH6q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.732 [XNIO-1 task-3] 5m9wQfpkRQmdPMzHYH6q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.733 [XNIO-1 task-3] 5m9wQfpkRQmdPMzHYH6q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.733 [XNIO-1 task-3] 5m9wQfpkRQmdPMzHYH6q8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.734 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5d3fbf4f-2422-47fc-b505-7c22ba38ec4c +07:00:49.744 [XNIO-1 task-3] 5m9wQfpkRQmdPMzHYH6q8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.750 [XNIO-1 task-3] 4OO1P_flTK2a0tGxF41NLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.750 [XNIO-1 task-3] 4OO1P_flTK2a0tGxF41NLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.751 [XNIO-1 task-5] R0OROnVRSdWq2HnXQVzzyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.751 [XNIO-1 task-5] R0OROnVRSdWq2HnXQVzzyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.751 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7d6165c7 +07:00:49.751 [XNIO-1 task-5] R0OROnVRSdWq2HnXQVzzyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.751 [XNIO-1 task-3] 4OO1P_flTK2a0tGxF41NLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.751 [XNIO-1 task-5] R0OROnVRSdWq2HnXQVzzyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.752 [XNIO-1 task-3] 4OO1P_flTK2a0tGxF41NLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5d3fbf4f-2422-47fc-b505-7c22ba38ec4c scope = null +07:00:49.757 [XNIO-1 task-5] R0OROnVRSdWq2HnXQVzzyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.761 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5d3fbf4f-2422-47fc-b505-7c22ba38ec4c +07:00:49.766 [XNIO-1 task-5] UZHyJnVuQFOMOhBsr_aDaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.766 [XNIO-1 task-3] 4OO1P_flTK2a0tGxF41NLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.766 [XNIO-1 task-5] UZHyJnVuQFOMOhBsr_aDaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.767 [XNIO-1 task-5] UZHyJnVuQFOMOhBsr_aDaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.767 [XNIO-1 task-5] UZHyJnVuQFOMOhBsr_aDaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.770 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:add56dcc-5b9d-43ae-af75-90435a8a900b +07:00:49.774 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5902c9f3-9e52-435a-9e44-0215e49fa165 +07:00:49.775 [XNIO-1 task-5] UZHyJnVuQFOMOhBsr_aDaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:49.783 [XNIO-1 task-3] KzXgyS_PQWeGX8sTUNsuqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.784 [XNIO-1 task-3] KzXgyS_PQWeGX8sTUNsuqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.784 [XNIO-1 task-3] KzXgyS_PQWeGX8sTUNsuqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.784 [XNIO-1 task-3] KzXgyS_PQWeGX8sTUNsuqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmY3ZWRkZDMtOGUxNi00MWJkLWE1NzEtNjViZTA1YTNkMThjOlQxa1ZNcXpGUW9XbUpsV05DS3l4R3c=", "Basic NmY3ZWRkZDMtOGUxNi00MWJkLWE1NzEtNjViZTA1YTNkMThjOlQxa1ZNcXpGUW9XbUpsV05DS3l4R3c=", authorization) +07:00:49.790 [XNIO-1 task-3] KzXgyS_PQWeGX8sTUNsuqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.795 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:74972167-47a8-4e22-934a-f464f1be0b56 +07:00:49.798 [XNIO-1 task-5] WgAi7JlQS6iBcIrmdaxDHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.799 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:74972167-47a8-4e22-934a-f464f1be0b56 +07:00:49.799 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:74972167-47a8-4e22-934a-f464f1be0b56 +07:00:49.799 [XNIO-1 task-5] WgAi7JlQS6iBcIrmdaxDHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.799 [XNIO-1 task-5] WgAi7JlQS6iBcIrmdaxDHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmY3ZWRkZDMtOGUxNi00MWJkLWE1NzEtNjViZTA1YTNkMThjOlQxa1ZNcXpGUW9XbUpsV05DS3l4R3c=", "Basic NmY3ZWRkZDMtOGUxNi00MWJkLWE1NzEtNjViZTA1YTNkMThjOlQxa1ZNcXpGUW9XbUpsV05DS3l4R3c=", authorization) +07:00:49.799 [XNIO-1 task-5] WgAi7JlQS6iBcIrmdaxDHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.799 [XNIO-1 task-3] 5B-H1XtDQcqLMuxQEvBq8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.800 [XNIO-1 task-3] 5B-H1XtDQcqLMuxQEvBq8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.800 [XNIO-1 task-3] 5B-H1XtDQcqLMuxQEvBq8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gZgostKMQYaS48Pivcf82A redirectUri = http://localhost:8080/authorization +07:00:49.805 [XNIO-1 task-5] WgAi7JlQS6iBcIrmdaxDHg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.805 [XNIO-1 task-6] F6pN7g52RxCJeziye_s7uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.806 [XNIO-1 task-6] F6pN7g52RxCJeziye_s7uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.806 [XNIO-1 task-6] F6pN7g52RxCJeziye_s7uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.806 [XNIO-1 task-6] F6pN7g52RxCJeziye_s7uA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = RZC9QlrnT8mazFIScu682g redirectUri = http://localhost:8080/authorization +07:00:49.814 [XNIO-1 task-3] 5B-H1XtDQcqLMuxQEvBq8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.817 [XNIO-1 task-5] RcOdpDD1TGy-Zo5adYaf4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.827 [XNIO-1 task-5] RcOdpDD1TGy-Zo5adYaf4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.831 [XNIO-1 task-5] RcOdpDD1TGy-Zo5adYaf4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.831 [XNIO-1 task-5] RcOdpDD1TGy-Zo5adYaf4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:49.840 [XNIO-1 task-5] RcOdpDD1TGy-Zo5adYaf4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.847 [XNIO-1 task-6] F6pN7g52RxCJeziye_s7uA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:49.847 [XNIO-1 task-6] F6pN7g52RxCJeziye_s7uA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.851 [XNIO-1 task-5] TUaNnC_NRyiRHxZ1j-Fltg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.851 [XNIO-1 task-5] TUaNnC_NRyiRHxZ1j-Fltg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.851 [XNIO-1 task-5] TUaNnC_NRyiRHxZ1j-Fltg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.852 [XNIO-1 task-5] TUaNnC_NRyiRHxZ1j-Fltg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.860 [XNIO-1 task-5] TUaNnC_NRyiRHxZ1j-Fltg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.868 [XNIO-1 task-3] RggsTaJZQXGY-rV1tVx5_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.868 [XNIO-1 task-3] RggsTaJZQXGY-rV1tVx5_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.869 [XNIO-1 task-3] RggsTaJZQXGY-rV1tVx5_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.869 [XNIO-1 task-3] RggsTaJZQXGY-rV1tVx5_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +07:00:49.874 [XNIO-1 task-3] RggsTaJZQXGY-rV1tVx5_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.877 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:986caa9f +07:00:49.884 [XNIO-1 task-3] 9tUlVU5BRbKuQ_jhEURLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.884 [XNIO-1 task-3] 9tUlVU5BRbKuQ_jhEURLTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.885 [XNIO-1 task-3] 9tUlVU5BRbKuQ_jhEURLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.885 [XNIO-1 task-3] 9tUlVU5BRbKuQ_jhEURLTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", "Basic MTZhNDNkM2YtMGI5ZS00MjcwLTlmNGItOGUyMzdhODJmZjFiOk1hQUdHbUI3UVVhck1WSEo2MWpOVlE=", authorization) +07:00:49.891 [XNIO-1 task-5] 8fmy7nn4QC69-VUxXx5nzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.891 [XNIO-1 task-5] 8fmy7nn4QC69-VUxXx5nzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.891 [XNIO-1 task-5] 8fmy7nn4QC69-VUxXx5nzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.892 [XNIO-1 task-5] 8fmy7nn4QC69-VUxXx5nzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTY5Y2M4MzYtYjJhZS00OGU5LWJmNTktYzkzMTg4OTU5YWM3OkVDUkVpVUh1UThxQzBIU3FTWjNFcWc=", "Basic YTY5Y2M4MzYtYjJhZS00OGU5LWJmNTktYzkzMTg4OTU5YWM3OkVDUkVpVUh1UThxQzBIU3FTWjNFcWc=", authorization) +07:00:49.892 [XNIO-1 task-3] 9tUlVU5BRbKuQ_jhEURLTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.900 [XNIO-1 task-3] JwFG3SfaTHaxcVl7NWk5gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.900 [XNIO-1 task-3] JwFG3SfaTHaxcVl7NWk5gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.901 [XNIO-1 task-3] JwFG3SfaTHaxcVl7NWk5gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.901 [XNIO-1 task-5] 8fmy7nn4QC69-VUxXx5nzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +07:00:49.901 [XNIO-1 task-5] 8fmy7nn4QC69-VUxXx5nzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.901 [XNIO-1 task-5] 8fmy7nn4QC69-VUxXx5nzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.908 [XNIO-1 task-3] JwFG3SfaTHaxcVl7NWk5gg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.910 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c21fd780 +07:00:49.919 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:eb505c93 +07:00:49.919 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.919 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.919 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.920 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.920 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.920 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.920 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", "Basic NDg2N2JkMTUtMzhlMS00MDE1LWI4NTctMWVjYmE1NzUzMDM4OjlOM0FxZENaU2hhdWF1OFpDbVN4Rmc=", authorization) +07:00:49.920 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = D1wwN0zpQvGjyl6r9yg0Dw redirectUri = http://localhost:8080/authorization +07:00:49.926 [XNIO-1 task-5] pl-Gi-jHQsmxRCOcr4GkWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.932 [XNIO-1 task-3] oTZae73BT4SKu8iXqnEuLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.933 [XNIO-1 task-5] ZI0kyDNATJ-99a-E-t6maQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.935 [XNIO-1 task-5] ZI0kyDNATJ-99a-E-t6maQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.935 [XNIO-1 task-5] ZI0kyDNATJ-99a-E-t6maQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.936 [XNIO-1 task-5] ZI0kyDNATJ-99a-E-t6maQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", "Basic ZDc5NTcxY2QtYzJiZS00Y2Q1LTlkNjQtNGNmOTc2N2FlZjRiOkRWZ0J6cmJnUXNtSU1xYjNkdG93bnc=", authorization) +07:00:49.942 [XNIO-1 task-5] ZI0kyDNATJ-99a-E-t6maQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.951 [XNIO-1 task-5] 48PEgQCGS6etBgCT3oMDuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.951 [XNIO-1 task-5] 48PEgQCGS6etBgCT3oMDuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.951 [XNIO-1 task-5] 48PEgQCGS6etBgCT3oMDuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.952 [XNIO-1 task-5] 48PEgQCGS6etBgCT3oMDuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk1ZTE0NWItY2E1Ny00NGE3LThiMDMtYTdkYTUwZmZiNGI0OkYxeEhwczJkUU5pZzY5VGllQjVmaGc=", "Basic Mzk1ZTE0NWItY2E1Ny00NGE3LThiMDMtYTdkYTUwZmZiNGI0OkYxeEhwczJkUU5pZzY5VGllQjVmaGc=", authorization) +07:00:49.957 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:986caa9f +07:00:49.958 [XNIO-1 task-3] NKrvaGXBSpmNQ3sm5jjnOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.958 [XNIO-1 task-3] NKrvaGXBSpmNQ3sm5jjnOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.959 [XNIO-1 task-3] NKrvaGXBSpmNQ3sm5jjnOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.959 [XNIO-1 task-3] NKrvaGXBSpmNQ3sm5jjnOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cf-ZW4IGQpqCsStFkZIBXw redirectUri = http://localhost:8080/authorization +07:00:49.960 [XNIO-1 task-5] 48PEgQCGS6etBgCT3oMDuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +07:00:49.968 [XNIO-1 task-5] boB6spsHRvy0Mu1Fc6s6Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.968 [XNIO-1 task-5] boB6spsHRvy0Mu1Fc6s6Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +07:00:49.968 [XNIO-1 task-3] NKrvaGXBSpmNQ3sm5jjnOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.969 [XNIO-1 task-5] boB6spsHRvy0Mu1Fc6s6Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.970 [XNIO-1 task-5] boB6spsHRvy0Mu1Fc6s6Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWM2Y2FmMWMtNThhOS00OGY5LWJkMDgtZGI5Mzg5NTk4NDVjOmFuTHVaV0ZnUXVDbW5abnJnTktJSWc=", "Basic MWM2Y2FmMWMtNThhOS00OGY5LWJkMDgtZGI5Mzg5NTk4NDVjOmFuTHVaV0ZnUXVDbW5abnJnTktJSWc=", authorization) +07:00:49.970 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7d6d5e77-9d51-45a2-98fd-0204027c04c5 +07:00:49.985 [XNIO-1 task-5] boB6spsHRvy0Mu1Fc6s6Eg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:49.992 [XNIO-1 task-5] VuPDBpARTUSGVEx8PruEyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.992 [XNIO-1 task-5] VuPDBpARTUSGVEx8PruEyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:49.993 [XNIO-1 task-5] VuPDBpARTUSGVEx8PruEyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:49.993 [XNIO-1 task-5] VuPDBpARTUSGVEx8PruEyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWM2Y2FmMWMtNThhOS00OGY5LWJkMDgtZGI5Mzg5NTk4NDVjOmFuTHVaV0ZnUXVDbW5abnJnTktJSWc=", "Basic MWM2Y2FmMWMtNThhOS00OGY5LWJkMDgtZGI5Mzg5NTk4NDVjOmFuTHVaV0ZnUXVDbW5abnJnTktJSWc=", authorization) +07:00:49.998 [XNIO-1 task-5] VuPDBpARTUSGVEx8PruEyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:50.007 [XNIO-1 task-5] J_9NGOlrTNWGmNk1ggGRog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:50.007 [XNIO-1 task-5] J_9NGOlrTNWGmNk1ggGRog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:50.007 [XNIO-1 task-5] J_9NGOlrTNWGmNk1ggGRog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:50.007 [XNIO-1 task-5] J_9NGOlrTNWGmNk1ggGRog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", "Basic YzYzNTk2ZmItMjFhYy00ZDk0LTljYjEtMTBlYmMwYmMxMTA2OkJiVUI3ZkhJUy11azVIUnR4ZDVfQ1E=", authorization) +07:00:50.012 [XNIO-1 task-5] J_9NGOlrTNWGmNk1ggGRog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:50.019 [XNIO-1 task-5] Kjcxy-26TCSPhH83-fVy0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:50.020 [XNIO-1 task-5] Kjcxy-26TCSPhH83-fVy0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:50.020 [XNIO-1 task-5] Kjcxy-26TCSPhH83-fVy0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:50.020 [XNIO-1 task-5] Kjcxy-26TCSPhH83-fVy0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:50.025 [XNIO-1 task-5] Kjcxy-26TCSPhH83-fVy0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:50.029 [XNIO-1 task-5] MAazyZhrQoWUKYAwmamJDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:50.030 [XNIO-1 task-5] MAazyZhrQoWUKYAwmamJDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +07:00:50.030 [XNIO-1 task-5] MAazyZhrQoWUKYAwmamJDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +07:00:50.032 [XNIO-1 task-5] MAazyZhrQoWUKYAwmamJDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", "Basic ZjUxNDE0NzctOGQzYi00YzgwLWI5MzYtMzNjMzhmMzg2ZmQxOnVRZURfNHpzUm1PVzdyejVReVI2UlE=", authorization) +07:00:50.041 [XNIO-1 task-5] MAazyZhrQoWUKYAwmamJDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +07:00:50.046 [XNIO-1 task-5] mYeRgDkhQ1qzgZF5LwPx6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..180f3f1 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_3/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1618 @@ +07:00:39.699 [XNIO-1 task-1] I0gubno2SpuOjyb0gG-UkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:39.699 [XNIO-1 task-1] I0gubno2SpuOjyb0gG-UkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:39.701 [XNIO-1 task-1] I0gubno2SpuOjyb0gG-UkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:39.704 [XNIO-1 task-1] I0gubno2SpuOjyb0gG-UkA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:39.728 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c9f3335c, base path is set to: null +07:00:39.728 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:39.733 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:39.733 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:39.734 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c9f3335c, base path is set to: null +07:00:39.735 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG com.networknt.schema.TypeValidator debug - validate( "c9f3335c", "c9f3335c", userId) +07:00:39.735 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"1bcb7844-1913-4b87-aa1f-1c73c1545a06","newPassword":"781fa65c-171c-4dcb-8feb-b04e82ad58fa","newPasswordConfirm":"781fa65c-171c-4dcb-8feb-b04e82ad58fa"}, {"password":"1bcb7844-1913-4b87-aa1f-1c73c1545a06","newPassword":"781fa65c-171c-4dcb-8feb-b04e82ad58fa","newPasswordConfirm":"781fa65c-171c-4dcb-8feb-b04e82ad58fa"}, requestBody) +07:00:39.736 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG com.networknt.schema.TypeValidator debug - validate( "781fa65c-171c-4dcb-8feb-b04e82ad58fa", {"password":"1bcb7844-1913-4b87-aa1f-1c73c1545a06","newPassword":"781fa65c-171c-4dcb-8feb-b04e82ad58fa","newPasswordConfirm":"781fa65c-171c-4dcb-8feb-b04e82ad58fa"}, requestBody.newPasswordConfirm) +07:00:39.736 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1bcb7844-1913-4b87-aa1f-1c73c1545a06", {"password":"1bcb7844-1913-4b87-aa1f-1c73c1545a06","newPassword":"781fa65c-171c-4dcb-8feb-b04e82ad58fa","newPasswordConfirm":"781fa65c-171c-4dcb-8feb-b04e82ad58fa"}, requestBody.password) +07:00:39.736 [XNIO-1 task-1] lSXandCeRTW9tRto-jIjmg DEBUG com.networknt.schema.TypeValidator debug - validate( "781fa65c-171c-4dcb-8feb-b04e82ad58fa", {"password":"1bcb7844-1913-4b87-aa1f-1c73c1545a06","newPassword":"781fa65c-171c-4dcb-8feb-b04e82ad58fa","newPasswordConfirm":"781fa65c-171c-4dcb-8feb-b04e82ad58fa"}, requestBody.newPassword) +07:00:39.769 [XNIO-1 task-1] fNLhvxUVTgSoObusuoN2fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9f3335c, base path is set to: null +07:00:39.769 [XNIO-1 task-1] fNLhvxUVTgSoObusuoN2fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:39.769 [XNIO-1 task-1] fNLhvxUVTgSoObusuoN2fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:39.769 [XNIO-1 task-1] fNLhvxUVTgSoObusuoN2fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9f3335c, base path is set to: null +07:00:39.771 [XNIO-1 task-1] fNLhvxUVTgSoObusuoN2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c9f3335c", "c9f3335c", userId) +07:00:39.780 [XNIO-1 task-1] bXWPmausSMuYriwB-fkvZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.780 [XNIO-1 task-1] bXWPmausSMuYriwB-fkvZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.781 [XNIO-1 task-1] bXWPmausSMuYriwB-fkvZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.801 [XNIO-1 task-1] uZFZbAVAQ9yqv5mOhqjaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.801 [XNIO-1 task-1] uZFZbAVAQ9yqv5mOhqjaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.802 [XNIO-1 task-1] uZFZbAVAQ9yqv5mOhqjaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.815 [XNIO-1 task-1] -bkvrkc-TjKByKJ9lr-MiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.816 [XNIO-1 task-1] -bkvrkc-TjKByKJ9lr-MiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.816 [XNIO-1 task-1] -bkvrkc-TjKByKJ9lr-MiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.818 [XNIO-1 task-1] -bkvrkc-TjKByKJ9lr-MiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:39.829 [XNIO-1 task-1] xZH3K41nRXK89HrwI4zLLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5caaf6e8 +07:00:39.830 [XNIO-1 task-1] xZH3K41nRXK89HrwI4zLLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.830 [XNIO-1 task-1] xZH3K41nRXK89HrwI4zLLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:39.830 [XNIO-1 task-1] xZH3K41nRXK89HrwI4zLLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5caaf6e8 +07:00:39.839 [XNIO-1 task-1] JO4qWrRUQA6bhO1jyk5Zgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:39.839 [XNIO-1 task-1] JO4qWrRUQA6bhO1jyk5Zgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:39.839 [XNIO-1 task-1] JO4qWrRUQA6bhO1jyk5Zgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:39.870 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb7480c5, base path is set to: null +07:00:39.870 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:39.870 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:39.870 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:39.870 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb7480c5, base path is set to: null +07:00:39.871 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cb7480c5", "cb7480c5", userId) +07:00:39.872 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c6bbb2ae-f125-4afc-89fe-2e6cde718702","newPassword":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPasswordConfirm":"30670201-a55a-4c3b-961b-7cd294fbb84e"}, {"password":"c6bbb2ae-f125-4afc-89fe-2e6cde718702","newPassword":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPasswordConfirm":"30670201-a55a-4c3b-961b-7cd294fbb84e"}, requestBody) +07:00:39.872 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30670201-a55a-4c3b-961b-7cd294fbb84e", {"password":"c6bbb2ae-f125-4afc-89fe-2e6cde718702","newPassword":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPasswordConfirm":"30670201-a55a-4c3b-961b-7cd294fbb84e"}, requestBody.newPasswordConfirm) +07:00:39.872 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c6bbb2ae-f125-4afc-89fe-2e6cde718702", {"password":"c6bbb2ae-f125-4afc-89fe-2e6cde718702","newPassword":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPasswordConfirm":"30670201-a55a-4c3b-961b-7cd294fbb84e"}, requestBody.password) +07:00:39.872 [XNIO-1 task-1] dHRkM8LVSMKcdxqNUm3haQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30670201-a55a-4c3b-961b-7cd294fbb84e", {"password":"c6bbb2ae-f125-4afc-89fe-2e6cde718702","newPassword":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPasswordConfirm":"30670201-a55a-4c3b-961b-7cd294fbb84e"}, requestBody.newPassword) +07:00:39.943 [XNIO-1 task-1] 7lJPkr1ZTkGcBXdOEuvrjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb7480c5, base path is set to: null +07:00:39.944 [XNIO-1 task-1] 7lJPkr1ZTkGcBXdOEuvrjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:39.944 [XNIO-1 task-1] 7lJPkr1ZTkGcBXdOEuvrjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:39.944 [XNIO-1 task-1] 7lJPkr1ZTkGcBXdOEuvrjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb7480c5, base path is set to: null +07:00:39.944 [XNIO-1 task-1] 7lJPkr1ZTkGcBXdOEuvrjw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb7480c5", "cb7480c5", userId) +07:00:39.961 [XNIO-1 task-1] xhr08ySRStiNA0Uu5SkZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b204305e +07:00:39.961 [XNIO-1 task-1] xhr08ySRStiNA0Uu5SkZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.961 [XNIO-1 task-1] xhr08ySRStiNA0Uu5SkZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:39.961 [XNIO-1 task-1] xhr08ySRStiNA0Uu5SkZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b204305e +07:00:39.968 [XNIO-1 task-1] KaQgspUMTyeqsUAZunYVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb7480c5, base path is set to: null +07:00:39.968 [XNIO-1 task-1] KaQgspUMTyeqsUAZunYVww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:39.968 [XNIO-1 task-1] KaQgspUMTyeqsUAZunYVww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:39.968 [XNIO-1 task-1] KaQgspUMTyeqsUAZunYVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb7480c5, base path is set to: null +07:00:39.969 [XNIO-1 task-1] KaQgspUMTyeqsUAZunYVww DEBUG com.networknt.schema.TypeValidator debug - validate( "cb7480c5", "cb7480c5", userId) +07:00:39.977 [XNIO-1 task-1] aI-Gykw2TAiHaUFrfjS8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b204305e +07:00:39.977 [XNIO-1 task-1] aI-Gykw2TAiHaUFrfjS8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:39.977 [XNIO-1 task-1] aI-Gykw2TAiHaUFrfjS8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:39.977 [XNIO-1 task-1] aI-Gykw2TAiHaUFrfjS8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b204305e +07:00:39.984 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a191f7d0-217a-4e55-ad68-cba7847dd87d +07:00:40.049 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a191f7d0-217a-4e55-ad68-cba7847dd87d +07:00:40.049 [XNIO-1 task-1] fVd_rHiCTE2IyPBn7OgOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.049 [XNIO-1 task-1] fVd_rHiCTE2IyPBn7OgOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.050 [XNIO-1 task-1] fVd_rHiCTE2IyPBn7OgOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.060 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fdde18db +07:00:40.066 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a191f7d0-217a-4e55-ad68-cba7847dd87d +07:00:40.138 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fdde18db +07:00:40.138 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.138 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:40.138 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:40.139 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fdde18db +07:00:40.140 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"42dfe745-1387-4676-be22-bc05ad4f7916","newPassword":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a","newPasswordConfirm":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a"}, {"password":"42dfe745-1387-4676-be22-bc05ad4f7916","newPassword":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a","newPasswordConfirm":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a"}, requestBody) +07:00:40.140 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"42dfe745-1387-4676-be22-bc05ad4f7916","newPassword":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a","newPasswordConfirm":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a"}, {"password":"42dfe745-1387-4676-be22-bc05ad4f7916","newPassword":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a","newPasswordConfirm":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a"}, requestBody) +07:00:40.141 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG com.networknt.schema.FormatValidator debug - validate( "3c8761e5-f9e1-4134-8bb7-2bb07d992b5a", {"password":"42dfe745-1387-4676-be22-bc05ad4f7916","newPassword":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a","newPasswordConfirm":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a"}, requestBody.newPasswordConfirm) +07:00:40.141 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG com.networknt.schema.FormatValidator debug - validate( "42dfe745-1387-4676-be22-bc05ad4f7916", {"password":"42dfe745-1387-4676-be22-bc05ad4f7916","newPassword":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a","newPasswordConfirm":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a"}, requestBody.password) +07:00:40.143 [XNIO-1 task-1] l4fWFhCHSYCwTtZ8ufsWpg DEBUG com.networknt.schema.FormatValidator debug - validate( "3c8761e5-f9e1-4134-8bb7-2bb07d992b5a", {"password":"42dfe745-1387-4676-be22-bc05ad4f7916","newPassword":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a","newPasswordConfirm":"3c8761e5-f9e1-4134-8bb7-2bb07d992b5a"}, requestBody.newPassword) +07:00:40.154 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fdde18db +07:00:40.164 [XNIO-1 task-1] rUMlGJINQ4aoD_odInhA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.164 [XNIO-1 task-1] rUMlGJINQ4aoD_odInhA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.164 [XNIO-1 task-1] rUMlGJINQ4aoD_odInhA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.165 [XNIO-1 task-1] rUMlGJINQ4aoD_odInhA9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.197 [XNIO-1 task-1] n1AWSiyjQgeS8hvuRvq32w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.198 [XNIO-1 task-1] n1AWSiyjQgeS8hvuRvq32w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.198 [XNIO-1 task-1] n1AWSiyjQgeS8hvuRvq32w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.346 [XNIO-1 task-1] ulSlwy3IToC7tToaqVpkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fdde18db +07:00:40.346 [XNIO-1 task-1] ulSlwy3IToC7tToaqVpkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.346 [XNIO-1 task-1] ulSlwy3IToC7tToaqVpkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:40.347 [XNIO-1 task-1] ulSlwy3IToC7tToaqVpkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fdde18db +07:00:40.349 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:fdde18db +07:00:40.357 [XNIO-1 task-1] g7RlTXqQQrqGKDaNn1wAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.357 [XNIO-1 task-1] g7RlTXqQQrqGKDaNn1wAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.357 [XNIO-1 task-1] g7RlTXqQQrqGKDaNn1wAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.358 [XNIO-1 task-1] g7RlTXqQQrqGKDaNn1wAmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.377 [XNIO-1 task-1] zLdYtvhKSDuVSNOd_92Rfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.378 [XNIO-1 task-1] zLdYtvhKSDuVSNOd_92Rfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.378 [XNIO-1 task-1] zLdYtvhKSDuVSNOd_92Rfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.523 [XNIO-1 task-1] jPTzox7sRoelghjB4gbfXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.523 [XNIO-1 task-1] jPTzox7sRoelghjB4gbfXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.524 [XNIO-1 task-1] jPTzox7sRoelghjB4gbfXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.525 [XNIO-1 task-1] jPTzox7sRoelghjB4gbfXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.545 [XNIO-1 task-1] p2ZAeTYRRKWhFo-0LLcQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/efbb53ed +07:00:40.546 [XNIO-1 task-1] p2ZAeTYRRKWhFo-0LLcQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.546 [XNIO-1 task-1] p2ZAeTYRRKWhFo-0LLcQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:40.546 [XNIO-1 task-1] p2ZAeTYRRKWhFo-0LLcQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/efbb53ed +07:00:40.568 [XNIO-1 task-1] uP4xPUWUTw6sQ7CgpWWTSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9f3335c, base path is set to: null +07:00:40.568 [XNIO-1 task-1] uP4xPUWUTw6sQ7CgpWWTSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:40.568 [XNIO-1 task-1] uP4xPUWUTw6sQ7CgpWWTSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:40.569 [XNIO-1 task-1] uP4xPUWUTw6sQ7CgpWWTSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9f3335c, base path is set to: null +07:00:40.569 [XNIO-1 task-1] uP4xPUWUTw6sQ7CgpWWTSw DEBUG com.networknt.schema.TypeValidator debug - validate( "c9f3335c", "c9f3335c", userId) +07:00:40.581 [XNIO-1 task-1] PH9ELrpaRLiMFrRWtY9-xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5caaf6e8 +07:00:40.581 [XNIO-1 task-1] PH9ELrpaRLiMFrRWtY9-xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.582 [XNIO-1 task-1] PH9ELrpaRLiMFrRWtY9-xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:40.582 [XNIO-1 task-1] PH9ELrpaRLiMFrRWtY9-xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5caaf6e8 +07:00:40.587 [XNIO-1 task-1] H9J0oP_KRMmDCNyaPoTHWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:40.587 [XNIO-1 task-1] H9J0oP_KRMmDCNyaPoTHWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:40.588 [XNIO-1 task-1] H9J0oP_KRMmDCNyaPoTHWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:40.600 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2c0650e1, base path is set to: null +07:00:40.600 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:40.601 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:40.601 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:40.601 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2c0650e1, base path is set to: null +07:00:40.603 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG com.networknt.schema.TypeValidator debug - validate( "2c0650e1", "2c0650e1", userId) +07:00:40.604 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e9942f94-c9cd-4b6a-b86a-3cb78f3f8438","newPassword":"9034dcd6-fd54-4593-ba78-89104e619127","newPasswordConfirm":"9034dcd6-fd54-4593-ba78-89104e619127"}, {"password":"e9942f94-c9cd-4b6a-b86a-3cb78f3f8438","newPassword":"9034dcd6-fd54-4593-ba78-89104e619127","newPasswordConfirm":"9034dcd6-fd54-4593-ba78-89104e619127"}, requestBody) +07:00:40.604 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG com.networknt.schema.TypeValidator debug - validate( "9034dcd6-fd54-4593-ba78-89104e619127", {"password":"e9942f94-c9cd-4b6a-b86a-3cb78f3f8438","newPassword":"9034dcd6-fd54-4593-ba78-89104e619127","newPasswordConfirm":"9034dcd6-fd54-4593-ba78-89104e619127"}, requestBody.newPasswordConfirm) +07:00:40.604 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG com.networknt.schema.TypeValidator debug - validate( "e9942f94-c9cd-4b6a-b86a-3cb78f3f8438", {"password":"e9942f94-c9cd-4b6a-b86a-3cb78f3f8438","newPassword":"9034dcd6-fd54-4593-ba78-89104e619127","newPasswordConfirm":"9034dcd6-fd54-4593-ba78-89104e619127"}, requestBody.password) +07:00:40.604 [XNIO-1 task-1] 344CSx1YS9WhKxY5zdPA-w DEBUG com.networknt.schema.TypeValidator debug - validate( "9034dcd6-fd54-4593-ba78-89104e619127", {"password":"e9942f94-c9cd-4b6a-b86a-3cb78f3f8438","newPassword":"9034dcd6-fd54-4593-ba78-89104e619127","newPasswordConfirm":"9034dcd6-fd54-4593-ba78-89104e619127"}, requestBody.newPassword) +07:00:40.629 [XNIO-1 task-1] uZaYU3bSSjuDekL3972-0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:40.630 [XNIO-1 task-1] uZaYU3bSSjuDekL3972-0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:40.630 [XNIO-1 task-1] uZaYU3bSSjuDekL3972-0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:40.677 [XNIO-1 task-1] bp_3CYuaQcyn50uY5DuQNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2c0650e1, base path is set to: null +07:00:40.677 [XNIO-1 task-1] bp_3CYuaQcyn50uY5DuQNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:40.677 [XNIO-1 task-1] bp_3CYuaQcyn50uY5DuQNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:40.677 [XNIO-1 task-1] bp_3CYuaQcyn50uY5DuQNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2c0650e1, base path is set to: null +07:00:40.679 [XNIO-1 task-1] bp_3CYuaQcyn50uY5DuQNg DEBUG com.networknt.schema.TypeValidator debug - validate( "2c0650e1", "2c0650e1", userId) +07:00:40.728 [XNIO-1 task-1] 0dgoQerpT8uCpieoXRy73A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.730 [XNIO-1 task-1] 0dgoQerpT8uCpieoXRy73A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.730 [XNIO-1 task-1] 0dgoQerpT8uCpieoXRy73A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.731 [XNIO-1 task-1] 0dgoQerpT8uCpieoXRy73A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:40.746 [XNIO-1 task-1] WCh2XAIwSOWs-_6osgZ7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.746 [XNIO-1 task-1] WCh2XAIwSOWs-_6osgZ7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.750 [XNIO-1 task-1] WCh2XAIwSOWs-_6osgZ7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.766 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb7480c5 +07:00:40.766 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.767 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:40.767 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:40.768 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb7480c5 +07:00:40.770 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPassword":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b","newPasswordConfirm":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b"}, {"password":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPassword":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b","newPasswordConfirm":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b"}, requestBody) +07:00:40.772 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPassword":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b","newPasswordConfirm":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b"}, {"password":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPassword":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b","newPasswordConfirm":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b"}, requestBody) +07:00:40.772 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG com.networknt.schema.FormatValidator debug - validate( "4d50f6a3-410a-4591-9b4d-166c03a6ce6b", {"password":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPassword":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b","newPasswordConfirm":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b"}, requestBody.newPasswordConfirm) +07:00:40.772 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG com.networknt.schema.FormatValidator debug - validate( "30670201-a55a-4c3b-961b-7cd294fbb84e", {"password":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPassword":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b","newPasswordConfirm":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b"}, requestBody.password) +07:00:40.772 [XNIO-1 task-1] KINfSct1SriSF8n-5fZzZg DEBUG com.networknt.schema.FormatValidator debug - validate( "4d50f6a3-410a-4591-9b4d-166c03a6ce6b", {"password":"30670201-a55a-4c3b-961b-7cd294fbb84e","newPassword":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b","newPasswordConfirm":"4d50f6a3-410a-4591-9b4d-166c03a6ce6b"}, requestBody.newPassword) +07:00:40.826 [XNIO-1 task-1] dlHljEHsQpSflNLbxaFL3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb7480c5 +07:00:40.826 [XNIO-1 task-1] dlHljEHsQpSflNLbxaFL3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.826 [XNIO-1 task-1] dlHljEHsQpSflNLbxaFL3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:40.826 [XNIO-1 task-1] dlHljEHsQpSflNLbxaFL3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb7480c5 +07:00:40.835 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b204305e, base path is set to: null +07:00:40.836 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:40.836 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:40.836 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:40.837 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b204305e, base path is set to: null +07:00:40.837 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG com.networknt.schema.TypeValidator debug - validate( "b204305e", "b204305e", userId) +07:00:40.838 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"24e1b2c1-a110-441b-bddf-88800567e52f","newPassword":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPasswordConfirm":"99c8d47a-a112-4685-9f04-f565ef3a45f3"}, {"password":"24e1b2c1-a110-441b-bddf-88800567e52f","newPassword":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPasswordConfirm":"99c8d47a-a112-4685-9f04-f565ef3a45f3"}, requestBody) +07:00:40.838 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG com.networknt.schema.TypeValidator debug - validate( "99c8d47a-a112-4685-9f04-f565ef3a45f3", {"password":"24e1b2c1-a110-441b-bddf-88800567e52f","newPassword":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPasswordConfirm":"99c8d47a-a112-4685-9f04-f565ef3a45f3"}, requestBody.newPasswordConfirm) +07:00:40.838 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG com.networknt.schema.TypeValidator debug - validate( "24e1b2c1-a110-441b-bddf-88800567e52f", {"password":"24e1b2c1-a110-441b-bddf-88800567e52f","newPassword":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPasswordConfirm":"99c8d47a-a112-4685-9f04-f565ef3a45f3"}, requestBody.password) +07:00:40.838 [XNIO-1 task-1] M21-WC6VT7yus4_D0VeB2A DEBUG com.networknt.schema.TypeValidator debug - validate( "99c8d47a-a112-4685-9f04-f565ef3a45f3", {"password":"24e1b2c1-a110-441b-bddf-88800567e52f","newPassword":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPasswordConfirm":"99c8d47a-a112-4685-9f04-f565ef3a45f3"}, requestBody.newPassword) +07:00:40.886 [XNIO-1 task-1] ODbsCkG_TEemqR6SOdza3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb7480c5, base path is set to: null +07:00:40.887 [XNIO-1 task-1] ODbsCkG_TEemqR6SOdza3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:40.887 [XNIO-1 task-1] ODbsCkG_TEemqR6SOdza3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:40.887 [XNIO-1 task-1] ODbsCkG_TEemqR6SOdza3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb7480c5, base path is set to: null +07:00:40.889 [XNIO-1 task-1] ODbsCkG_TEemqR6SOdza3A DEBUG com.networknt.schema.TypeValidator debug - validate( "cb7480c5", "cb7480c5", userId) +07:00:40.895 [XNIO-1 task-1] EAyZPGMkTsiLdO4hglQmhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.895 [XNIO-1 task-1] EAyZPGMkTsiLdO4hglQmhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.895 [XNIO-1 task-1] EAyZPGMkTsiLdO4hglQmhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.973 [XNIO-1 task-1] iVbabGiqSPubIT00dMf77Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.973 [XNIO-1 task-1] iVbabGiqSPubIT00dMf77Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:40.973 [XNIO-1 task-1] iVbabGiqSPubIT00dMf77Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.003 [XNIO-1 task-1] C2BZLXobT8KCWzhBDvW5xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.003 [XNIO-1 task-1] C2BZLXobT8KCWzhBDvW5xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.003 [XNIO-1 task-1] C2BZLXobT8KCWzhBDvW5xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.004 [XNIO-1 task-1] C2BZLXobT8KCWzhBDvW5xA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.028 [XNIO-1 task-1] 1vH_5u4kRaKaR_iKahymOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.028 [XNIO-1 task-1] 1vH_5u4kRaKaR_iKahymOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.028 [XNIO-1 task-1] 1vH_5u4kRaKaR_iKahymOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.148 [XNIO-1 task-1] e3R33PtdQAKFtBwZjTNyfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.150 [XNIO-1 task-1] e3R33PtdQAKFtBwZjTNyfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.150 [XNIO-1 task-1] e3R33PtdQAKFtBwZjTNyfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.151 [XNIO-1 task-1] e3R33PtdQAKFtBwZjTNyfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:41.159 [XNIO-1 task-1] o_2yuxOaSPehmPBXptLghQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.159 [XNIO-1 task-1] o_2yuxOaSPehmPBXptLghQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.160 [XNIO-1 task-1] o_2yuxOaSPehmPBXptLghQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.199 [XNIO-1 task-1] WoYlKZtASRuI61lBJDEGJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.199 [XNIO-1 task-1] WoYlKZtASRuI61lBJDEGJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.200 [XNIO-1 task-1] WoYlKZtASRuI61lBJDEGJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.239 [XNIO-1 task-1] 3mgqoflPQbC_DcFCSyV4zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.239 [XNIO-1 task-1] 3mgqoflPQbC_DcFCSyV4zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.239 [XNIO-1 task-1] 3mgqoflPQbC_DcFCSyV4zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.257 [XNIO-1 task-1] w29YPABKTXq_MbtgZQ8JHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c9f3335c +07:00:41.257 [XNIO-1 task-1] w29YPABKTXq_MbtgZQ8JHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.257 [XNIO-1 task-1] w29YPABKTXq_MbtgZQ8JHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:41.258 [XNIO-1 task-1] w29YPABKTXq_MbtgZQ8JHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c9f3335c +07:00:41.267 [XNIO-1 task-1] UMesnTISS06CXIiZRKgRvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5caaf6e8, base path is set to: null +07:00:41.267 [XNIO-1 task-1] UMesnTISS06CXIiZRKgRvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.267 [XNIO-1 task-1] UMesnTISS06CXIiZRKgRvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:41.267 [XNIO-1 task-1] UMesnTISS06CXIiZRKgRvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5caaf6e8, base path is set to: null +07:00:41.268 [XNIO-1 task-1] UMesnTISS06CXIiZRKgRvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5caaf6e8", "5caaf6e8", userId) +07:00:41.271 [XNIO-1 task-1] lXBuyZ0WRnCVPQvI-u8AjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.271 [XNIO-1 task-1] lXBuyZ0WRnCVPQvI-u8AjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.271 [XNIO-1 task-1] lXBuyZ0WRnCVPQvI-u8AjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.325 [XNIO-1 task-1] OrzYu6caReymULZuJS65rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5587675 +07:00:41.325 [XNIO-1 task-1] OrzYu6caReymULZuJS65rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.325 [XNIO-1 task-1] OrzYu6caReymULZuJS65rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:41.325 [XNIO-1 task-1] OrzYu6caReymULZuJS65rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5587675 +07:00:41.333 [XNIO-1 task-1] 7b2HPZYQRhSr55QRo-BGfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/209de3b0, base path is set to: null +07:00:41.334 [XNIO-1 task-1] 7b2HPZYQRhSr55QRo-BGfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.334 [XNIO-1 task-1] 7b2HPZYQRhSr55QRo-BGfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:41.334 [XNIO-1 task-1] 7b2HPZYQRhSr55QRo-BGfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/209de3b0, base path is set to: null +07:00:41.334 [XNIO-1 task-1] 7b2HPZYQRhSr55QRo-BGfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "209de3b0", "209de3b0", userId) +07:00:41.347 [XNIO-1 task-1] b5zuYZKOQYmQXjKjFvZyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5587675 +07:00:41.347 [XNIO-1 task-1] b5zuYZKOQYmQXjKjFvZyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.347 [XNIO-1 task-1] b5zuYZKOQYmQXjKjFvZyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:41.348 [XNIO-1 task-1] b5zuYZKOQYmQXjKjFvZyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5587675 +07:00:41.357 [XNIO-1 task-1] n15EsK5lSieR071FRL2hMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.358 [XNIO-1 task-1] n15EsK5lSieR071FRL2hMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.358 [XNIO-1 task-1] n15EsK5lSieR071FRL2hMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.373 [XNIO-1 task-1] 8G8ucc17SxGUE-krslBv5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b204305e, base path is set to: null +07:00:41.373 [XNIO-1 task-1] 8G8ucc17SxGUE-krslBv5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.373 [XNIO-1 task-1] 8G8ucc17SxGUE-krslBv5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:41.374 [XNIO-1 task-1] 8G8ucc17SxGUE-krslBv5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b204305e, base path is set to: null +07:00:41.374 [XNIO-1 task-1] 8G8ucc17SxGUE-krslBv5A DEBUG com.networknt.schema.TypeValidator debug - validate( "b204305e", "b204305e", userId) +07:00:41.379 [XNIO-1 task-1] psZT8tcmTW-e5h02lglwRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.379 [XNIO-1 task-1] psZT8tcmTW-e5h02lglwRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.379 [XNIO-1 task-1] psZT8tcmTW-e5h02lglwRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.440 [XNIO-1 task-1] VFS602Q2Sd-YDMYFYuMiSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b204305e +07:00:41.440 [XNIO-1 task-1] VFS602Q2Sd-YDMYFYuMiSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.440 [XNIO-1 task-1] VFS602Q2Sd-YDMYFYuMiSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:41.441 [XNIO-1 task-1] VFS602Q2Sd-YDMYFYuMiSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b204305e +07:00:41.451 [XNIO-1 task-1] uR1SqG2ORPiT0a8ODY5BuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.451 [XNIO-1 task-1] uR1SqG2ORPiT0a8ODY5BuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.451 [XNIO-1 task-1] uR1SqG2ORPiT0a8ODY5BuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.533 [XNIO-1 task-1] IJOCP6dDQsuqUe6FAV172g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd46698a, base path is set to: null +07:00:41.534 [XNIO-1 task-1] IJOCP6dDQsuqUe6FAV172g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.534 [XNIO-1 task-1] IJOCP6dDQsuqUe6FAV172g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:41.534 [XNIO-1 task-1] IJOCP6dDQsuqUe6FAV172g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd46698a, base path is set to: null +07:00:41.534 [XNIO-1 task-1] IJOCP6dDQsuqUe6FAV172g DEBUG com.networknt.schema.TypeValidator debug - validate( "dd46698a", "dd46698a", userId) +07:00:41.544 [XNIO-1 task-1] TReHhyWxTWmhcUyyrN-FcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb7480c5 +07:00:41.544 [XNIO-1 task-1] TReHhyWxTWmhcUyyrN-FcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.544 [XNIO-1 task-1] TReHhyWxTWmhcUyyrN-FcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:41.544 [XNIO-1 task-1] TReHhyWxTWmhcUyyrN-FcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb7480c5 +07:00:41.581 [XNIO-1 task-1] jz9dO2dFTlusnIU0U7d6pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.582 [XNIO-1 task-1] jz9dO2dFTlusnIU0U7d6pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.582 [XNIO-1 task-1] jz9dO2dFTlusnIU0U7d6pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.676 [XNIO-1 task-1] 0O8JAMM7S0OZqduTpNIawA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.677 [XNIO-1 task-1] 0O8JAMM7S0OZqduTpNIawA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.677 [XNIO-1 task-1] 0O8JAMM7S0OZqduTpNIawA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.677 [XNIO-1 task-1] 0O8JAMM7S0OZqduTpNIawA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:41.695 [XNIO-1 task-1] NWVdOygaRpW59UpM_wZ6EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.696 [XNIO-1 task-1] NWVdOygaRpW59UpM_wZ6EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.696 [XNIO-1 task-1] NWVdOygaRpW59UpM_wZ6EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.789 [XNIO-1 task-1] 8aZvSnioRFenQOLOY5b5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.789 [XNIO-1 task-1] 8aZvSnioRFenQOLOY5b5Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.790 [XNIO-1 task-1] 8aZvSnioRFenQOLOY5b5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.818 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd30cb55, base path is set to: null +07:00:41.819 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.819 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:41.819 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:41.819 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd30cb55, base path is set to: null +07:00:41.820 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fd30cb55", "fd30cb55", userId) +07:00:41.821 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"9f98b35f-f2e0-4cb7-bf9a-ee7b5c344256","newPassword":"93e50761-5610-4bc8-a2f4-b01d25c3bd81","newPasswordConfirm":"93e50761-5610-4bc8-a2f4-b01d25c3bd81"}, {"password":"9f98b35f-f2e0-4cb7-bf9a-ee7b5c344256","newPassword":"93e50761-5610-4bc8-a2f4-b01d25c3bd81","newPasswordConfirm":"93e50761-5610-4bc8-a2f4-b01d25c3bd81"}, requestBody) +07:00:41.821 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93e50761-5610-4bc8-a2f4-b01d25c3bd81", {"password":"9f98b35f-f2e0-4cb7-bf9a-ee7b5c344256","newPassword":"93e50761-5610-4bc8-a2f4-b01d25c3bd81","newPasswordConfirm":"93e50761-5610-4bc8-a2f4-b01d25c3bd81"}, requestBody.newPasswordConfirm) +07:00:41.821 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9f98b35f-f2e0-4cb7-bf9a-ee7b5c344256", {"password":"9f98b35f-f2e0-4cb7-bf9a-ee7b5c344256","newPassword":"93e50761-5610-4bc8-a2f4-b01d25c3bd81","newPasswordConfirm":"93e50761-5610-4bc8-a2f4-b01d25c3bd81"}, requestBody.password) +07:00:41.821 [XNIO-1 task-1] WVUaaw9xTfGRV2-95TiTqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93e50761-5610-4bc8-a2f4-b01d25c3bd81", {"password":"9f98b35f-f2e0-4cb7-bf9a-ee7b5c344256","newPassword":"93e50761-5610-4bc8-a2f4-b01d25c3bd81","newPasswordConfirm":"93e50761-5610-4bc8-a2f4-b01d25c3bd81"}, requestBody.newPassword) +07:00:41.850 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9ba2d242, base path is set to: null +07:00:41.851 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.851 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:41.851 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:41.851 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9ba2d242, base path is set to: null +07:00:41.852 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG com.networknt.schema.TypeValidator debug - validate( "9ba2d242", "9ba2d242", userId) +07:00:41.853 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5ce61eb9-1907-447b-b072-ae3d0d9108ac","newPassword":"10bdf00b-31bf-41b9-b17c-330b06c178be","newPasswordConfirm":"10bdf00b-31bf-41b9-b17c-330b06c178be"}, {"password":"5ce61eb9-1907-447b-b072-ae3d0d9108ac","newPassword":"10bdf00b-31bf-41b9-b17c-330b06c178be","newPasswordConfirm":"10bdf00b-31bf-41b9-b17c-330b06c178be"}, requestBody) +07:00:41.853 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG com.networknt.schema.TypeValidator debug - validate( "10bdf00b-31bf-41b9-b17c-330b06c178be", {"password":"5ce61eb9-1907-447b-b072-ae3d0d9108ac","newPassword":"10bdf00b-31bf-41b9-b17c-330b06c178be","newPasswordConfirm":"10bdf00b-31bf-41b9-b17c-330b06c178be"}, requestBody.newPasswordConfirm) +07:00:41.853 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ce61eb9-1907-447b-b072-ae3d0d9108ac", {"password":"5ce61eb9-1907-447b-b072-ae3d0d9108ac","newPassword":"10bdf00b-31bf-41b9-b17c-330b06c178be","newPasswordConfirm":"10bdf00b-31bf-41b9-b17c-330b06c178be"}, requestBody.password) +07:00:41.854 [XNIO-1 task-1] Fxi7RsgITymW0UiXcpLmyg DEBUG com.networknt.schema.TypeValidator debug - validate( "10bdf00b-31bf-41b9-b17c-330b06c178be", {"password":"5ce61eb9-1907-447b-b072-ae3d0d9108ac","newPassword":"10bdf00b-31bf-41b9-b17c-330b06c178be","newPasswordConfirm":"10bdf00b-31bf-41b9-b17c-330b06c178be"}, requestBody.newPassword) +07:00:41.876 [XNIO-1 task-1] hpoJP6e0Q0SIl9KhDFa1zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.876 [XNIO-1 task-1] hpoJP6e0Q0SIl9KhDFa1zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.876 [XNIO-1 task-1] hpoJP6e0Q0SIl9KhDFa1zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:41.904 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:41.906 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:41.908 [XNIO-1 task-1] ga3iCONHQ5GdhIjUIUx5yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.908 [XNIO-1 task-1] ga3iCONHQ5GdhIjUIUx5yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.908 [XNIO-1 task-1] ga3iCONHQ5GdhIjUIUx5yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.959 [XNIO-1 task-1] 0JkS6fJkR1qErDFfZYX2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd30cb55 +07:00:41.959 [XNIO-1 task-1] 0JkS6fJkR1qErDFfZYX2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:41.959 [XNIO-1 task-1] 0JkS6fJkR1qErDFfZYX2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:41.959 [XNIO-1 task-1] 0JkS6fJkR1qErDFfZYX2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd30cb55 +07:00:41.969 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d3bdc92a, base path is set to: null +07:00:41.969 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:41.969 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:41.969 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:41.969 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d3bdc92a, base path is set to: null +07:00:41.970 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d3bdc92a", "d3bdc92a", userId) +07:00:41.970 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"82c21283-e089-47ba-87c8-215310767ebb","newPassword":"3cfea475-39ed-4262-b6a6-16c36af927e3","newPasswordConfirm":"3cfea475-39ed-4262-b6a6-16c36af927e3"}, {"password":"82c21283-e089-47ba-87c8-215310767ebb","newPassword":"3cfea475-39ed-4262-b6a6-16c36af927e3","newPasswordConfirm":"3cfea475-39ed-4262-b6a6-16c36af927e3"}, requestBody) +07:00:41.970 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3cfea475-39ed-4262-b6a6-16c36af927e3", {"password":"82c21283-e089-47ba-87c8-215310767ebb","newPassword":"3cfea475-39ed-4262-b6a6-16c36af927e3","newPasswordConfirm":"3cfea475-39ed-4262-b6a6-16c36af927e3"}, requestBody.newPasswordConfirm) +07:00:41.971 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG com.networknt.schema.TypeValidator debug - validate( "82c21283-e089-47ba-87c8-215310767ebb", {"password":"82c21283-e089-47ba-87c8-215310767ebb","newPassword":"3cfea475-39ed-4262-b6a6-16c36af927e3","newPasswordConfirm":"3cfea475-39ed-4262-b6a6-16c36af927e3"}, requestBody.password) +07:00:41.971 [XNIO-1 task-1] lCe61-CTTkCcffBl_AI15Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3cfea475-39ed-4262-b6a6-16c36af927e3", {"password":"82c21283-e089-47ba-87c8-215310767ebb","newPassword":"3cfea475-39ed-4262-b6a6-16c36af927e3","newPasswordConfirm":"3cfea475-39ed-4262-b6a6-16c36af927e3"}, requestBody.newPassword) +07:00:42.017 [XNIO-1 task-1] frRL3v5YQCOSL-fwjRPv3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.017 [XNIO-1 task-1] frRL3v5YQCOSL-fwjRPv3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.018 [XNIO-1 task-1] frRL3v5YQCOSL-fwjRPv3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.078 [XNIO-1 task-1] e0UyRO_YQjGYU3aDvcBmFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5caaf6e8, base path is set to: null +07:00:42.078 [XNIO-1 task-1] e0UyRO_YQjGYU3aDvcBmFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.078 [XNIO-1 task-1] e0UyRO_YQjGYU3aDvcBmFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:42.078 [XNIO-1 task-1] e0UyRO_YQjGYU3aDvcBmFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5caaf6e8, base path is set to: null +07:00:42.079 [XNIO-1 task-1] e0UyRO_YQjGYU3aDvcBmFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5caaf6e8", "5caaf6e8", userId) +07:00:42.088 [XNIO-1 task-1] -yzW4QyXQi24pAz5NlTc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ba2d242 +07:00:42.088 [XNIO-1 task-1] -yzW4QyXQi24pAz5NlTc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.089 [XNIO-1 task-1] -yzW4QyXQi24pAz5NlTc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.089 [XNIO-1 task-1] -yzW4QyXQi24pAz5NlTc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ba2d242 +07:00:42.093 [XNIO-1 task-1] EtMYVdBkSwShYx7UTWwHxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.094 [XNIO-1 task-1] EtMYVdBkSwShYx7UTWwHxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.094 [XNIO-1 task-1] EtMYVdBkSwShYx7UTWwHxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.211 [XNIO-1 task-1] TbpBSwXQQrexvsIJb22NRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.212 [XNIO-1 task-1] TbpBSwXQQrexvsIJb22NRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.212 [XNIO-1 task-1] TbpBSwXQQrexvsIJb22NRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.213 [XNIO-1 task-1] TbpBSwXQQrexvsIJb22NRw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.223 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b204305e, base path is set to: null +07:00:42.223 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.223 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:42.223 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:42.224 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b204305e, base path is set to: null +07:00:42.224 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG com.networknt.schema.TypeValidator debug - validate( "b204305e", "b204305e", userId) +07:00:42.225 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPassword":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPasswordConfirm":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3"}, {"password":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPassword":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPasswordConfirm":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3"}, requestBody) +07:00:42.225 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG com.networknt.schema.TypeValidator debug - validate( "d0d09c0f-8241-43b6-ad62-94646f6d6ba3", {"password":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPassword":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPasswordConfirm":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3"}, requestBody.newPasswordConfirm) +07:00:42.225 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG com.networknt.schema.TypeValidator debug - validate( "99c8d47a-a112-4685-9f04-f565ef3a45f3", {"password":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPassword":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPasswordConfirm":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3"}, requestBody.password) +07:00:42.225 [XNIO-1 task-1] U1zFpqAOQ7y7eIaBaa3R_w DEBUG com.networknt.schema.TypeValidator debug - validate( "d0d09c0f-8241-43b6-ad62-94646f6d6ba3", {"password":"99c8d47a-a112-4685-9f04-f565ef3a45f3","newPassword":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPasswordConfirm":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3"}, requestBody.newPassword) +07:00:42.271 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8a6bd883 +07:00:42.277 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8a6bd883 +07:00:42.286 [XNIO-1 task-1] xwOjINFvSJaUGS91AOffQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.286 [XNIO-1 task-1] xwOjINFvSJaUGS91AOffQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.287 [XNIO-1 task-1] xwOjINFvSJaUGS91AOffQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.288 [XNIO-1 task-1] xwOjINFvSJaUGS91AOffQw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.295 [XNIO-1 task-1] al9K97RVTferbcPywVJMNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ba2d242 +07:00:42.295 [XNIO-1 task-1] al9K97RVTferbcPywVJMNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.295 [XNIO-1 task-1] al9K97RVTferbcPywVJMNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.295 [XNIO-1 task-1] al9K97RVTferbcPywVJMNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ba2d242 +07:00:42.306 [XNIO-1 task-1] rNO9pWUKS5iYmpy-SBGnsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b73a365e, base path is set to: null +07:00:42.306 [XNIO-1 task-1] rNO9pWUKS5iYmpy-SBGnsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.306 [XNIO-1 task-1] rNO9pWUKS5iYmpy-SBGnsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:42.306 [XNIO-1 task-1] rNO9pWUKS5iYmpy-SBGnsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b73a365e, base path is set to: null +07:00:42.306 [XNIO-1 task-1] rNO9pWUKS5iYmpy-SBGnsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b73a365e", "b73a365e", userId) +07:00:42.311 [XNIO-1 task-1] 4I0P2D2wR4eg__JiJNMzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cf498ad6 +07:00:42.311 [XNIO-1 task-1] 4I0P2D2wR4eg__JiJNMzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.311 [XNIO-1 task-1] 4I0P2D2wR4eg__JiJNMzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.311 [XNIO-1 task-1] 4I0P2D2wR4eg__JiJNMzvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cf498ad6 +07:00:42.323 [XNIO-1 task-1] zOGwUiuDSUq6pN_jSedfbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d3bdc92a, base path is set to: null +07:00:42.324 [XNIO-1 task-1] zOGwUiuDSUq6pN_jSedfbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.324 [XNIO-1 task-1] zOGwUiuDSUq6pN_jSedfbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:42.324 [XNIO-1 task-1] zOGwUiuDSUq6pN_jSedfbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d3bdc92a, base path is set to: null +07:00:42.325 [XNIO-1 task-1] zOGwUiuDSUq6pN_jSedfbg DEBUG com.networknt.schema.TypeValidator debug - validate( "d3bdc92a", "d3bdc92a", userId) +07:00:42.343 [XNIO-1 task-1] GoRYxER0T4SHCxBTmEXMEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.343 [XNIO-1 task-1] GoRYxER0T4SHCxBTmEXMEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.344 [XNIO-1 task-1] GoRYxER0T4SHCxBTmEXMEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.361 [XNIO-1 task-1] IOP3iKDiRduMsceSMJ6xIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b73a365e +07:00:42.361 [XNIO-1 task-1] IOP3iKDiRduMsceSMJ6xIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.361 [XNIO-1 task-1] IOP3iKDiRduMsceSMJ6xIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.361 [XNIO-1 task-1] IOP3iKDiRduMsceSMJ6xIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b73a365e +07:00:42.374 [XNIO-1 task-1] KM7AbLpzQIKQ48DEPxWdsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.374 [XNIO-1 task-1] KM7AbLpzQIKQ48DEPxWdsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.375 [XNIO-1 task-1] KM7AbLpzQIKQ48DEPxWdsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.375 [XNIO-1 task-1] KM7AbLpzQIKQ48DEPxWdsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:42.400 [XNIO-1 task-1] 0d7s-knlS7GVQ88x1_aT3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2ce0508b, base path is set to: null +07:00:42.400 [XNIO-1 task-1] 0d7s-knlS7GVQ88x1_aT3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.401 [XNIO-1 task-1] 0d7s-knlS7GVQ88x1_aT3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:42.401 [XNIO-1 task-1] 0d7s-knlS7GVQ88x1_aT3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2ce0508b, base path is set to: null +07:00:42.401 [XNIO-1 task-1] 0d7s-knlS7GVQ88x1_aT3w DEBUG com.networknt.schema.TypeValidator debug - validate( "2ce0508b", "2ce0508b", userId) +07:00:42.417 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:80760a3e-bb57-40b5-abae-04083b4eaa42 +07:00:42.431 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b204305e +07:00:42.431 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.431 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.431 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:42.432 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b204305e +07:00:42.432 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPassword":"a6e8c504-017b-48f1-b926-0dbf266a1a51","newPasswordConfirm":"a6e8c504-017b-48f1-b926-0dbf266a1a51"}, {"password":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPassword":"a6e8c504-017b-48f1-b926-0dbf266a1a51","newPasswordConfirm":"a6e8c504-017b-48f1-b926-0dbf266a1a51"}, requestBody) +07:00:42.433 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPassword":"a6e8c504-017b-48f1-b926-0dbf266a1a51","newPasswordConfirm":"a6e8c504-017b-48f1-b926-0dbf266a1a51"}, {"password":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPassword":"a6e8c504-017b-48f1-b926-0dbf266a1a51","newPasswordConfirm":"a6e8c504-017b-48f1-b926-0dbf266a1a51"}, requestBody) +07:00:42.433 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a6e8c504-017b-48f1-b926-0dbf266a1a51", {"password":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPassword":"a6e8c504-017b-48f1-b926-0dbf266a1a51","newPasswordConfirm":"a6e8c504-017b-48f1-b926-0dbf266a1a51"}, requestBody.newPasswordConfirm) +07:00:42.433 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d0d09c0f-8241-43b6-ad62-94646f6d6ba3", {"password":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPassword":"a6e8c504-017b-48f1-b926-0dbf266a1a51","newPasswordConfirm":"a6e8c504-017b-48f1-b926-0dbf266a1a51"}, requestBody.password) +07:00:42.433 [XNIO-1 task-1] S1lg7ZD8SDeZLEQ19rYIrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a6e8c504-017b-48f1-b926-0dbf266a1a51", {"password":"d0d09c0f-8241-43b6-ad62-94646f6d6ba3","newPassword":"a6e8c504-017b-48f1-b926-0dbf266a1a51","newPasswordConfirm":"a6e8c504-017b-48f1-b926-0dbf266a1a51"}, requestBody.newPassword) +07:00:42.450 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:42.456 [XNIO-1 task-1] 4w0b7FhmTumFZeGbZqVKyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.456 [XNIO-1 task-1] 4w0b7FhmTumFZeGbZqVKyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.459 [XNIO-1 task-1] 4w0b7FhmTumFZeGbZqVKyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:42.472 [XNIO-1 task-1] 703peRrxTKujb3Li0oQy1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b204305e, base path is set to: null +07:00:42.472 [XNIO-1 task-1] 703peRrxTKujb3Li0oQy1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.472 [XNIO-1 task-1] 703peRrxTKujb3Li0oQy1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:42.473 [XNIO-1 task-1] 703peRrxTKujb3Li0oQy1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b204305e, base path is set to: null +07:00:42.473 [XNIO-1 task-1] 703peRrxTKujb3Li0oQy1g DEBUG com.networknt.schema.TypeValidator debug - validate( "b204305e", "b204305e", userId) +07:00:42.483 [XNIO-1 task-1] 1m7FFWtGSqu3kfh7sE2zBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.483 [XNIO-1 task-1] 1m7FFWtGSqu3kfh7sE2zBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.483 [XNIO-1 task-1] 1m7FFWtGSqu3kfh7sE2zBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.639 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1140bdb +07:00:42.639 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.639 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.639 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:42.640 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1140bdb +07:00:42.645 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"62b0eb61-ff10-411c-9de8-957ee79600a3","newPassword":"36a44244-f18a-4f21-9b45-346cb482c457","newPasswordConfirm":"36a44244-f18a-4f21-9b45-346cb482c457"}, {"password":"62b0eb61-ff10-411c-9de8-957ee79600a3","newPassword":"36a44244-f18a-4f21-9b45-346cb482c457","newPasswordConfirm":"36a44244-f18a-4f21-9b45-346cb482c457"}, requestBody) +07:00:42.646 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"62b0eb61-ff10-411c-9de8-957ee79600a3","newPassword":"36a44244-f18a-4f21-9b45-346cb482c457","newPasswordConfirm":"36a44244-f18a-4f21-9b45-346cb482c457"}, {"password":"62b0eb61-ff10-411c-9de8-957ee79600a3","newPassword":"36a44244-f18a-4f21-9b45-346cb482c457","newPasswordConfirm":"36a44244-f18a-4f21-9b45-346cb482c457"}, requestBody) +07:00:42.646 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG com.networknt.schema.FormatValidator debug - validate( "36a44244-f18a-4f21-9b45-346cb482c457", {"password":"62b0eb61-ff10-411c-9de8-957ee79600a3","newPassword":"36a44244-f18a-4f21-9b45-346cb482c457","newPasswordConfirm":"36a44244-f18a-4f21-9b45-346cb482c457"}, requestBody.newPasswordConfirm) +07:00:42.646 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG com.networknt.schema.FormatValidator debug - validate( "62b0eb61-ff10-411c-9de8-957ee79600a3", {"password":"62b0eb61-ff10-411c-9de8-957ee79600a3","newPassword":"36a44244-f18a-4f21-9b45-346cb482c457","newPasswordConfirm":"36a44244-f18a-4f21-9b45-346cb482c457"}, requestBody.password) +07:00:42.647 [XNIO-1 task-1] _iZsJoIURi-3B0KlE8Kzig DEBUG com.networknt.schema.FormatValidator debug - validate( "36a44244-f18a-4f21-9b45-346cb482c457", {"password":"62b0eb61-ff10-411c-9de8-957ee79600a3","newPassword":"36a44244-f18a-4f21-9b45-346cb482c457","newPasswordConfirm":"36a44244-f18a-4f21-9b45-346cb482c457"}, requestBody.newPassword) +07:00:42.708 [XNIO-1 task-1] Js0Vx-Z0S9m5rOBKmNF2yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.708 [XNIO-1 task-1] Js0Vx-Z0S9m5rOBKmNF2yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.708 [XNIO-1 task-1] Js0Vx-Z0S9m5rOBKmNF2yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.723 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1140bdb +07:00:42.723 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.723 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.723 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:42.723 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1140bdb +07:00:42.724 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"36a44244-f18a-4f21-9b45-346cb482c457","newPassword":"e5124857-9452-424d-8ca7-8298e8437108","newPasswordConfirm":"e5124857-9452-424d-8ca7-8298e8437108"}, {"password":"36a44244-f18a-4f21-9b45-346cb482c457","newPassword":"e5124857-9452-424d-8ca7-8298e8437108","newPasswordConfirm":"e5124857-9452-424d-8ca7-8298e8437108"}, requestBody) +07:00:42.724 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"36a44244-f18a-4f21-9b45-346cb482c457","newPassword":"e5124857-9452-424d-8ca7-8298e8437108","newPasswordConfirm":"e5124857-9452-424d-8ca7-8298e8437108"}, {"password":"36a44244-f18a-4f21-9b45-346cb482c457","newPassword":"e5124857-9452-424d-8ca7-8298e8437108","newPasswordConfirm":"e5124857-9452-424d-8ca7-8298e8437108"}, requestBody) +07:00:42.724 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG com.networknt.schema.FormatValidator debug - validate( "e5124857-9452-424d-8ca7-8298e8437108", {"password":"36a44244-f18a-4f21-9b45-346cb482c457","newPassword":"e5124857-9452-424d-8ca7-8298e8437108","newPasswordConfirm":"e5124857-9452-424d-8ca7-8298e8437108"}, requestBody.newPasswordConfirm) +07:00:42.724 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG com.networknt.schema.FormatValidator debug - validate( "36a44244-f18a-4f21-9b45-346cb482c457", {"password":"36a44244-f18a-4f21-9b45-346cb482c457","newPassword":"e5124857-9452-424d-8ca7-8298e8437108","newPasswordConfirm":"e5124857-9452-424d-8ca7-8298e8437108"}, requestBody.password) +07:00:42.725 [XNIO-1 task-1] ufr6q4vwTf6l1rhHuQXFVA DEBUG com.networknt.schema.FormatValidator debug - validate( "e5124857-9452-424d-8ca7-8298e8437108", {"password":"36a44244-f18a-4f21-9b45-346cb482c457","newPassword":"e5124857-9452-424d-8ca7-8298e8437108","newPasswordConfirm":"e5124857-9452-424d-8ca7-8298e8437108"}, requestBody.newPassword) +07:00:42.765 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1140bdb +07:00:42.765 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.765 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.765 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:42.766 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1140bdb +07:00:42.772 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e5124857-9452-424d-8ca7-8298e8437108","newPassword":"c285fc15-48eb-4d67-a9d5-f07c9941074c","newPasswordConfirm":"c285fc15-48eb-4d67-a9d5-f07c9941074c"}, {"password":"e5124857-9452-424d-8ca7-8298e8437108","newPassword":"c285fc15-48eb-4d67-a9d5-f07c9941074c","newPasswordConfirm":"c285fc15-48eb-4d67-a9d5-f07c9941074c"}, requestBody) +07:00:42.773 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e5124857-9452-424d-8ca7-8298e8437108","newPassword":"c285fc15-48eb-4d67-a9d5-f07c9941074c","newPasswordConfirm":"c285fc15-48eb-4d67-a9d5-f07c9941074c"}, {"password":"e5124857-9452-424d-8ca7-8298e8437108","newPassword":"c285fc15-48eb-4d67-a9d5-f07c9941074c","newPasswordConfirm":"c285fc15-48eb-4d67-a9d5-f07c9941074c"}, requestBody) +07:00:42.773 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG com.networknt.schema.FormatValidator debug - validate( "c285fc15-48eb-4d67-a9d5-f07c9941074c", {"password":"e5124857-9452-424d-8ca7-8298e8437108","newPassword":"c285fc15-48eb-4d67-a9d5-f07c9941074c","newPasswordConfirm":"c285fc15-48eb-4d67-a9d5-f07c9941074c"}, requestBody.newPasswordConfirm) +07:00:42.774 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG com.networknt.schema.FormatValidator debug - validate( "e5124857-9452-424d-8ca7-8298e8437108", {"password":"e5124857-9452-424d-8ca7-8298e8437108","newPassword":"c285fc15-48eb-4d67-a9d5-f07c9941074c","newPasswordConfirm":"c285fc15-48eb-4d67-a9d5-f07c9941074c"}, requestBody.password) +07:00:42.774 [XNIO-1 task-1] 90bqPYfqRq-cZ8hKK7PnXw DEBUG com.networknt.schema.FormatValidator debug - validate( "c285fc15-48eb-4d67-a9d5-f07c9941074c", {"password":"e5124857-9452-424d-8ca7-8298e8437108","newPassword":"c285fc15-48eb-4d67-a9d5-f07c9941074c","newPasswordConfirm":"c285fc15-48eb-4d67-a9d5-f07c9941074c"}, requestBody.newPassword) +07:00:42.777 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8a6bd883 +07:00:42.810 [XNIO-1 task-1] iGqwYRZZTvuh_bQ8sWsM-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.810 [XNIO-1 task-1] iGqwYRZZTvuh_bQ8sWsM-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.810 [XNIO-1 task-1] iGqwYRZZTvuh_bQ8sWsM-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.855 [XNIO-1 task-1] s3vTeMKkRFmLRI7783Bw3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.855 [XNIO-1 task-1] s3vTeMKkRFmLRI7783Bw3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.855 [XNIO-1 task-1] s3vTeMKkRFmLRI7783Bw3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.856 [XNIO-1 task-1] s3vTeMKkRFmLRI7783Bw3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.887 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8a6bd883 +07:00:42.890 [XNIO-1 task-1] d7ZAmrw1RguXAkWCWuKSsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.890 [XNIO-1 task-1] d7ZAmrw1RguXAkWCWuKSsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.890 [XNIO-1 task-1] d7ZAmrw1RguXAkWCWuKSsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.904 [XNIO-1 task-1] 6k5RoM4CTj6BpOVBcpbiOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.904 [XNIO-1 task-1] 6k5RoM4CTj6BpOVBcpbiOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.905 [XNIO-1 task-1] 6k5RoM4CTj6BpOVBcpbiOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.928 [XNIO-1 task-1] h9vaBvg5QcGjWYsePwFg1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.928 [XNIO-1 task-1] h9vaBvg5QcGjWYsePwFg1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.929 [XNIO-1 task-1] h9vaBvg5QcGjWYsePwFg1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.929 [XNIO-1 task-1] h9vaBvg5QcGjWYsePwFg1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:42.932 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1a263a91-1526-4a66-a24c-3c15b949bdac +07:00:42.936 [XNIO-1 task-1] LOXaQWN8QKWdxiBeYgnTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4db35149 +07:00:42.936 [XNIO-1 task-1] LOXaQWN8QKWdxiBeYgnTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.936 [XNIO-1 task-1] LOXaQWN8QKWdxiBeYgnTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.936 [XNIO-1 task-1] LOXaQWN8QKWdxiBeYgnTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4db35149 +07:00:42.947 [XNIO-1 task-1] hBx9pSmeQ6eCsGxwz_dNVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1140bdb, base path is set to: null +07:00:42.947 [XNIO-1 task-1] hBx9pSmeQ6eCsGxwz_dNVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:42.947 [XNIO-1 task-1] hBx9pSmeQ6eCsGxwz_dNVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:42.947 [XNIO-1 task-1] hBx9pSmeQ6eCsGxwz_dNVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1140bdb, base path is set to: null +07:00:42.948 [XNIO-1 task-1] hBx9pSmeQ6eCsGxwz_dNVA DEBUG com.networknt.schema.TypeValidator debug - validate( "c1140bdb", "c1140bdb", userId) +07:00:42.966 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4db35149 +07:00:42.966 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:42.966 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:42.966 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:42.967 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4db35149 +07:00:42.970 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7fdbfce2-5fff-4a41-8e61-1ccad905ad23","newPassword":"73bfae70-474a-48d1-8c93-a96387316ab3","newPasswordConfirm":"73bfae70-474a-48d1-8c93-a96387316ab3"}, {"password":"7fdbfce2-5fff-4a41-8e61-1ccad905ad23","newPassword":"73bfae70-474a-48d1-8c93-a96387316ab3","newPasswordConfirm":"73bfae70-474a-48d1-8c93-a96387316ab3"}, requestBody) +07:00:42.970 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7fdbfce2-5fff-4a41-8e61-1ccad905ad23","newPassword":"73bfae70-474a-48d1-8c93-a96387316ab3","newPasswordConfirm":"73bfae70-474a-48d1-8c93-a96387316ab3"}, {"password":"7fdbfce2-5fff-4a41-8e61-1ccad905ad23","newPassword":"73bfae70-474a-48d1-8c93-a96387316ab3","newPasswordConfirm":"73bfae70-474a-48d1-8c93-a96387316ab3"}, requestBody) +07:00:42.970 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "73bfae70-474a-48d1-8c93-a96387316ab3", {"password":"7fdbfce2-5fff-4a41-8e61-1ccad905ad23","newPassword":"73bfae70-474a-48d1-8c93-a96387316ab3","newPasswordConfirm":"73bfae70-474a-48d1-8c93-a96387316ab3"}, requestBody.newPasswordConfirm) +07:00:42.970 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "7fdbfce2-5fff-4a41-8e61-1ccad905ad23", {"password":"7fdbfce2-5fff-4a41-8e61-1ccad905ad23","newPassword":"73bfae70-474a-48d1-8c93-a96387316ab3","newPasswordConfirm":"73bfae70-474a-48d1-8c93-a96387316ab3"}, requestBody.password) +07:00:42.970 [XNIO-1 task-1] o5eRW6mWTYycQy723rf1Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "73bfae70-474a-48d1-8c93-a96387316ab3", {"password":"7fdbfce2-5fff-4a41-8e61-1ccad905ad23","newPassword":"73bfae70-474a-48d1-8c93-a96387316ab3","newPasswordConfirm":"73bfae70-474a-48d1-8c93-a96387316ab3"}, requestBody.newPassword) +07:00:43.000 [XNIO-1 task-1] HVy_P568TdCNtP9bpzGs-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4db35149 +07:00:43.000 [XNIO-1 task-1] HVy_P568TdCNtP9bpzGs-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.000 [XNIO-1 task-1] HVy_P568TdCNtP9bpzGs-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.000 [XNIO-1 task-1] HVy_P568TdCNtP9bpzGs-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4db35149 +07:00:43.018 [XNIO-1 task-1] eGPKdbD5QXaQA63el79GKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.019 [XNIO-1 task-1] eGPKdbD5QXaQA63el79GKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.019 [XNIO-1 task-1] eGPKdbD5QXaQA63el79GKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.053 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:af6de373 +07:00:43.056 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:af6de373 +07:00:43.057 [XNIO-1 task-1] cCxlY5R7RS-flZs_Gp0tDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.057 [XNIO-1 task-1] cCxlY5R7RS-flZs_Gp0tDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.058 [XNIO-1 task-1] cCxlY5R7RS-flZs_Gp0tDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.072 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/860a8058 +07:00:43.072 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.073 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.073 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:43.073 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/860a8058 +07:00:43.075 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"70ed5cf6-ce42-4150-9a4c-12f2405b6629","newPassword":"a749da73-e3fd-471b-b4be-0c73e0a58336","newPasswordConfirm":"a749da73-e3fd-471b-b4be-0c73e0a58336"}, {"password":"70ed5cf6-ce42-4150-9a4c-12f2405b6629","newPassword":"a749da73-e3fd-471b-b4be-0c73e0a58336","newPasswordConfirm":"a749da73-e3fd-471b-b4be-0c73e0a58336"}, requestBody) +07:00:43.075 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"70ed5cf6-ce42-4150-9a4c-12f2405b6629","newPassword":"a749da73-e3fd-471b-b4be-0c73e0a58336","newPasswordConfirm":"a749da73-e3fd-471b-b4be-0c73e0a58336"}, {"password":"70ed5cf6-ce42-4150-9a4c-12f2405b6629","newPassword":"a749da73-e3fd-471b-b4be-0c73e0a58336","newPasswordConfirm":"a749da73-e3fd-471b-b4be-0c73e0a58336"}, requestBody) +07:00:43.075 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a749da73-e3fd-471b-b4be-0c73e0a58336", {"password":"70ed5cf6-ce42-4150-9a4c-12f2405b6629","newPassword":"a749da73-e3fd-471b-b4be-0c73e0a58336","newPasswordConfirm":"a749da73-e3fd-471b-b4be-0c73e0a58336"}, requestBody.newPasswordConfirm) +07:00:43.077 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "70ed5cf6-ce42-4150-9a4c-12f2405b6629", {"password":"70ed5cf6-ce42-4150-9a4c-12f2405b6629","newPassword":"a749da73-e3fd-471b-b4be-0c73e0a58336","newPasswordConfirm":"a749da73-e3fd-471b-b4be-0c73e0a58336"}, requestBody.password) +07:00:43.078 [XNIO-1 task-1] 8E9xAbQkSzWCsW-Kyh9ZfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a749da73-e3fd-471b-b4be-0c73e0a58336", {"password":"70ed5cf6-ce42-4150-9a4c-12f2405b6629","newPassword":"a749da73-e3fd-471b-b4be-0c73e0a58336","newPasswordConfirm":"a749da73-e3fd-471b-b4be-0c73e0a58336"}, requestBody.newPassword) +07:00:43.093 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4867bd15-38e1-4015-b857-1ecba5753038 +07:00:43.113 [XNIO-1 task-1] pa9OjpaTTTiPWrDjPLLAzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/860a8058, base path is set to: null +07:00:43.113 [XNIO-1 task-1] pa9OjpaTTTiPWrDjPLLAzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.113 [XNIO-1 task-1] pa9OjpaTTTiPWrDjPLLAzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.113 [XNIO-1 task-1] pa9OjpaTTTiPWrDjPLLAzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/860a8058, base path is set to: null +07:00:43.114 [XNIO-1 task-1] pa9OjpaTTTiPWrDjPLLAzw DEBUG com.networknt.schema.TypeValidator debug - validate( "860a8058", "860a8058", userId) +07:00:43.117 [XNIO-1 task-1] SUcn3N4bTkyEh-pMGb-CCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.118 [XNIO-1 task-1] SUcn3N4bTkyEh-pMGb-CCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.118 [XNIO-1 task-1] SUcn3N4bTkyEh-pMGb-CCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.153 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:af6de373 +07:00:43.241 [XNIO-1 task-1] 2SAeqVBYT46ndf_QqqnfXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/860a8058 +07:00:43.242 [XNIO-1 task-1] 2SAeqVBYT46ndf_QqqnfXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.242 [XNIO-1 task-1] 2SAeqVBYT46ndf_QqqnfXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.242 [XNIO-1 task-1] 2SAeqVBYT46ndf_QqqnfXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/860a8058 +07:00:43.258 [XNIO-1 task-1] 5gBGExPVTmKCr6nshWYTWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.258 [XNIO-1 task-1] 5gBGExPVTmKCr6nshWYTWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.259 [XNIO-1 task-1] 5gBGExPVTmKCr6nshWYTWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.259 [XNIO-1 task-1] 5gBGExPVTmKCr6nshWYTWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.270 [XNIO-1 task-1] wjkR7qciT3OmT7El_4_hZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.271 [XNIO-1 task-1] wjkR7qciT3OmT7El_4_hZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.271 [XNIO-1 task-1] wjkR7qciT3OmT7El_4_hZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.303 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9cd55a18 +07:00:43.328 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9cd55a18 +07:00:43.329 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:731bfac0 +07:00:43.348 [XNIO-1 task-1] pJ3ElUEnQDWQyluOqrkswQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ad16b87, base path is set to: null +07:00:43.349 [XNIO-1 task-1] pJ3ElUEnQDWQyluOqrkswQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.349 [XNIO-1 task-1] pJ3ElUEnQDWQyluOqrkswQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.349 [XNIO-1 task-1] pJ3ElUEnQDWQyluOqrkswQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ad16b87, base path is set to: null +07:00:43.349 [XNIO-1 task-1] pJ3ElUEnQDWQyluOqrkswQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4ad16b87", "4ad16b87", userId) +07:00:43.360 [XNIO-1 task-1] MkFgCUykTLakOpgTSN4TqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.360 [XNIO-1 task-1] MkFgCUykTLakOpgTSN4TqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.360 [XNIO-1 task-1] MkFgCUykTLakOpgTSN4TqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.361 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9cd55a18 +07:00:43.373 [XNIO-1 task-1] rkB8IIDXQ0S4zbs9yM1jvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9cd55a18 +07:00:43.374 [XNIO-1 task-1] rkB8IIDXQ0S4zbs9yM1jvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.374 [XNIO-1 task-1] rkB8IIDXQ0S4zbs9yM1jvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.374 [XNIO-1 task-1] rkB8IIDXQ0S4zbs9yM1jvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9cd55a18 +07:00:43.401 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ede6f067-06f7-4468-8694-740c55e53b3b +07:00:43.382 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.402 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.403 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.403 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:43.404 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.404 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG com.networknt.schema.TypeValidator debug - validate( "9cd55a18", "9cd55a18", userId) +07:00:43.405 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e56f8361-d71b-4e38-a8c3-73b659dcb47e","newPassword":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPasswordConfirm":"c6e05c6e-d939-4b67-864b-36d4ec689556"}, {"password":"e56f8361-d71b-4e38-a8c3-73b659dcb47e","newPassword":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPasswordConfirm":"c6e05c6e-d939-4b67-864b-36d4ec689556"}, requestBody) +07:00:43.405 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6e05c6e-d939-4b67-864b-36d4ec689556", {"password":"e56f8361-d71b-4e38-a8c3-73b659dcb47e","newPassword":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPasswordConfirm":"c6e05c6e-d939-4b67-864b-36d4ec689556"}, requestBody.newPasswordConfirm) +07:00:43.405 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG com.networknt.schema.TypeValidator debug - validate( "e56f8361-d71b-4e38-a8c3-73b659dcb47e", {"password":"e56f8361-d71b-4e38-a8c3-73b659dcb47e","newPassword":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPasswordConfirm":"c6e05c6e-d939-4b67-864b-36d4ec689556"}, requestBody.password) +07:00:43.405 [XNIO-1 task-1] s5AaXmJrR2axXeyOQd-cCA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6e05c6e-d939-4b67-864b-36d4ec689556", {"password":"e56f8361-d71b-4e38-a8c3-73b659dcb47e","newPassword":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPasswordConfirm":"c6e05c6e-d939-4b67-864b-36d4ec689556"}, requestBody.newPassword) +07:00:43.484 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9cd55a18 +07:00:43.500 [XNIO-1 task-1] bqS1mn5sS2mXMCkkDyBu_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.500 [XNIO-1 task-1] bqS1mn5sS2mXMCkkDyBu_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.500 [XNIO-1 task-1] bqS1mn5sS2mXMCkkDyBu_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.501 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9cd55a18 +07:00:43.514 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:731bfac0 +07:00:43.521 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.521 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.522 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.522 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:43.522 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.525 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG com.networknt.schema.TypeValidator debug - validate( "9cd55a18", "9cd55a18", userId) +07:00:43.526 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPassword":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPasswordConfirm":"acc6ac6f-71c8-4ca5-8413-e994cce59c23"}, {"password":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPassword":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPasswordConfirm":"acc6ac6f-71c8-4ca5-8413-e994cce59c23"}, requestBody) +07:00:43.526 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG com.networknt.schema.TypeValidator debug - validate( "acc6ac6f-71c8-4ca5-8413-e994cce59c23", {"password":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPassword":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPasswordConfirm":"acc6ac6f-71c8-4ca5-8413-e994cce59c23"}, requestBody.newPasswordConfirm) +07:00:43.526 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6e05c6e-d939-4b67-864b-36d4ec689556", {"password":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPassword":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPasswordConfirm":"acc6ac6f-71c8-4ca5-8413-e994cce59c23"}, requestBody.password) +07:00:43.526 [XNIO-1 task-1] WBBJMhnJRNCC7u0mXObFkw DEBUG com.networknt.schema.TypeValidator debug - validate( "acc6ac6f-71c8-4ca5-8413-e994cce59c23", {"password":"c6e05c6e-d939-4b67-864b-36d4ec689556","newPassword":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPasswordConfirm":"acc6ac6f-71c8-4ca5-8413-e994cce59c23"}, requestBody.newPassword) +07:00:43.536 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9cd55a18 +07:00:43.547 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.547 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.547 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.547 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:43.548 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.548 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG com.networknt.schema.TypeValidator debug - validate( "9cd55a18", "9cd55a18", userId) +07:00:43.549 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPassword":"378d2154-d708-41bb-a240-3bb7b89017e8","newPasswordConfirm":"378d2154-d708-41bb-a240-3bb7b89017e8"}, {"password":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPassword":"378d2154-d708-41bb-a240-3bb7b89017e8","newPasswordConfirm":"378d2154-d708-41bb-a240-3bb7b89017e8"}, requestBody) +07:00:43.549 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG com.networknt.schema.TypeValidator debug - validate( "378d2154-d708-41bb-a240-3bb7b89017e8", {"password":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPassword":"378d2154-d708-41bb-a240-3bb7b89017e8","newPasswordConfirm":"378d2154-d708-41bb-a240-3bb7b89017e8"}, requestBody.newPasswordConfirm) +07:00:43.549 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG com.networknt.schema.TypeValidator debug - validate( "acc6ac6f-71c8-4ca5-8413-e994cce59c23", {"password":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPassword":"378d2154-d708-41bb-a240-3bb7b89017e8","newPasswordConfirm":"378d2154-d708-41bb-a240-3bb7b89017e8"}, requestBody.password) +07:00:43.549 [XNIO-1 task-1] muEJrp0JQtq5tfnS9ELCfw DEBUG com.networknt.schema.TypeValidator debug - validate( "378d2154-d708-41bb-a240-3bb7b89017e8", {"password":"acc6ac6f-71c8-4ca5-8413-e994cce59c23","newPassword":"378d2154-d708-41bb-a240-3bb7b89017e8","newPasswordConfirm":"378d2154-d708-41bb-a240-3bb7b89017e8"}, requestBody.newPassword) +07:00:43.562 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9cd55a18 +07:00:43.580 [XNIO-1 task-1] P4znjEV6SNSQRDRl1njL_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.580 [XNIO-1 task-1] P4znjEV6SNSQRDRl1njL_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.580 [XNIO-1 task-1] P4znjEV6SNSQRDRl1njL_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.580 [XNIO-1 task-1] P4znjEV6SNSQRDRl1njL_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.627 [XNIO-1 task-1] zQzjlxH_RKWM584pcitjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9cd55a18, base path is set to: null +07:00:43.627 [XNIO-1 task-1] zQzjlxH_RKWM584pcitjoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.627 [XNIO-1 task-1] zQzjlxH_RKWM584pcitjoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.627 [XNIO-1 task-1] zQzjlxH_RKWM584pcitjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9cd55a18, base path is set to: null +07:00:43.628 [XNIO-1 task-1] zQzjlxH_RKWM584pcitjoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9cd55a18", "9cd55a18", userId) +07:00:43.633 [XNIO-1 task-1] uv-mONeuTa29rBy7wcoEOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.633 [XNIO-1 task-1] uv-mONeuTa29rBy7wcoEOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.634 [XNIO-1 task-1] uv-mONeuTa29rBy7wcoEOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.634 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9cd55a18 +07:00:43.644 [XNIO-1 task-1] 3Jv7x-w_SDKTzY1QO4cUOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.644 [XNIO-1 task-1] 3Jv7x-w_SDKTzY1QO4cUOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.644 [XNIO-1 task-1] 3Jv7x-w_SDKTzY1QO4cUOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.645 [XNIO-1 task-1] 3Jv7x-w_SDKTzY1QO4cUOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.651 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.677 [XNIO-1 task-1] EyppDOxMSK-1DDErN_8fXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.677 [XNIO-1 task-1] EyppDOxMSK-1DDErN_8fXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.678 [XNIO-1 task-1] EyppDOxMSK-1DDErN_8fXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.695 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b0927523 +07:00:43.696 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b0927523 +07:00:43.710 [XNIO-1 task-1] WSGC_5WnTli3A7Ai23pF-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.710 [XNIO-1 task-1] WSGC_5WnTli3A7Ai23pF-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.710 [XNIO-1 task-1] WSGC_5WnTli3A7Ai23pF-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.711 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b0927523 +07:00:43.731 [XNIO-1 task-1] kTTDNjw5Th2_runM6r1cBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.731 [XNIO-1 task-1] kTTDNjw5Th2_runM6r1cBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.732 [XNIO-1 task-1] kTTDNjw5Th2_runM6r1cBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.732 [XNIO-1 task-1] kTTDNjw5Th2_runM6r1cBw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.742 [XNIO-1 task-1] dvUId5buTe6DNpLZi_ks7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b0927523 +07:00:43.742 [XNIO-1 task-1] dvUId5buTe6DNpLZi_ks7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.742 [XNIO-1 task-1] dvUId5buTe6DNpLZi_ks7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.742 [XNIO-1 task-1] dvUId5buTe6DNpLZi_ks7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b0927523 +07:00:43.747 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.747 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.747 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.747 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:43.748 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9cd55a18, base path is set to: null +07:00:43.748 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG com.networknt.schema.TypeValidator debug - validate( "9cd55a18", "9cd55a18", userId) +07:00:43.748 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"378d2154-d708-41bb-a240-3bb7b89017e8","newPassword":"d9781db9-6651-4610-8c2e-d408a302d284","newPasswordConfirm":"d9781db9-6651-4610-8c2e-d408a302d284"}, {"password":"378d2154-d708-41bb-a240-3bb7b89017e8","newPassword":"d9781db9-6651-4610-8c2e-d408a302d284","newPasswordConfirm":"d9781db9-6651-4610-8c2e-d408a302d284"}, requestBody) +07:00:43.749 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG com.networknt.schema.TypeValidator debug - validate( "d9781db9-6651-4610-8c2e-d408a302d284", {"password":"378d2154-d708-41bb-a240-3bb7b89017e8","newPassword":"d9781db9-6651-4610-8c2e-d408a302d284","newPasswordConfirm":"d9781db9-6651-4610-8c2e-d408a302d284"}, requestBody.newPasswordConfirm) +07:00:43.749 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG com.networknt.schema.TypeValidator debug - validate( "378d2154-d708-41bb-a240-3bb7b89017e8", {"password":"378d2154-d708-41bb-a240-3bb7b89017e8","newPassword":"d9781db9-6651-4610-8c2e-d408a302d284","newPasswordConfirm":"d9781db9-6651-4610-8c2e-d408a302d284"}, requestBody.password) +07:00:43.749 [XNIO-1 task-1] vGC6fSf_Ro-ANQ7O6TGnAg DEBUG com.networknt.schema.TypeValidator debug - validate( "d9781db9-6651-4610-8c2e-d408a302d284", {"password":"378d2154-d708-41bb-a240-3bb7b89017e8","newPassword":"d9781db9-6651-4610-8c2e-d408a302d284","newPasswordConfirm":"d9781db9-6651-4610-8c2e-d408a302d284"}, requestBody.newPassword) +07:00:43.762 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9cd55a18 +07:00:43.775 [XNIO-1 task-1] 84d7w5shQny1bhNcz6mB5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9cd55a18, base path is set to: null +07:00:43.776 [XNIO-1 task-1] 84d7w5shQny1bhNcz6mB5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.776 [XNIO-1 task-1] 84d7w5shQny1bhNcz6mB5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.776 [XNIO-1 task-1] 84d7w5shQny1bhNcz6mB5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9cd55a18, base path is set to: null +07:00:43.777 [XNIO-1 task-1] 84d7w5shQny1bhNcz6mB5w DEBUG com.networknt.schema.TypeValidator debug - validate( "9cd55a18", "9cd55a18", userId) +07:00:43.784 [XNIO-1 task-1] ms1DOp-cSsK7dDRzbb9cdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.784 [XNIO-1 task-1] ms1DOp-cSsK7dDRzbb9cdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.784 [XNIO-1 task-1] ms1DOp-cSsK7dDRzbb9cdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:43.785 [XNIO-1 task-1] ms1DOp-cSsK7dDRzbb9cdA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:43.805 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b0927523, base path is set to: null +07:00:43.806 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:43.806 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:43.806 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:43.806 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b0927523, base path is set to: null +07:00:43.807 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b0927523", "b0927523", userId) +07:00:43.807 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f4fbe599-21bf-4c84-90de-25f5467b8f24","newPassword":"67ec5a6d-58a6-4276-bc58-5abaaac2d743","newPasswordConfirm":"67ec5a6d-58a6-4276-bc58-5abaaac2d743"}, {"password":"f4fbe599-21bf-4c84-90de-25f5467b8f24","newPassword":"67ec5a6d-58a6-4276-bc58-5abaaac2d743","newPasswordConfirm":"67ec5a6d-58a6-4276-bc58-5abaaac2d743"}, requestBody) +07:00:43.807 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67ec5a6d-58a6-4276-bc58-5abaaac2d743", {"password":"f4fbe599-21bf-4c84-90de-25f5467b8f24","newPassword":"67ec5a6d-58a6-4276-bc58-5abaaac2d743","newPasswordConfirm":"67ec5a6d-58a6-4276-bc58-5abaaac2d743"}, requestBody.newPasswordConfirm) +07:00:43.809 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f4fbe599-21bf-4c84-90de-25f5467b8f24", {"password":"f4fbe599-21bf-4c84-90de-25f5467b8f24","newPassword":"67ec5a6d-58a6-4276-bc58-5abaaac2d743","newPasswordConfirm":"67ec5a6d-58a6-4276-bc58-5abaaac2d743"}, requestBody.password) +07:00:43.809 [XNIO-1 task-1] CRcvyJBaTTiJr9DaTaAKiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67ec5a6d-58a6-4276-bc58-5abaaac2d743", {"password":"f4fbe599-21bf-4c84-90de-25f5467b8f24","newPassword":"67ec5a6d-58a6-4276-bc58-5abaaac2d743","newPasswordConfirm":"67ec5a6d-58a6-4276-bc58-5abaaac2d743"}, requestBody.newPassword) +07:00:43.819 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b0927523 +07:00:43.833 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9a78e01b-c9c2-46e9-910c-80d11d1d5e99 +07:00:43.834 [XNIO-1 task-1] 4h27obmrTtOjHgeA0kqJrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.834 [XNIO-1 task-1] 4h27obmrTtOjHgeA0kqJrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.835 [XNIO-1 task-1] 4h27obmrTtOjHgeA0kqJrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.888 [XNIO-1 task-1] C1J_PeqPT0K6J2pJxSP2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b0927523 +07:00:43.888 [XNIO-1 task-1] C1J_PeqPT0K6J2pJxSP2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.888 [XNIO-1 task-1] C1J_PeqPT0K6J2pJxSP2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.888 [XNIO-1 task-1] C1J_PeqPT0K6J2pJxSP2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b0927523 +07:00:43.889 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b0927523 +07:00:43.900 [XNIO-1 task-1] xXR6ZOVFTf2GA9Wlxy8Q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.900 [XNIO-1 task-1] xXR6ZOVFTf2GA9Wlxy8Q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.900 [XNIO-1 task-1] xXR6ZOVFTf2GA9Wlxy8Q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.901 [XNIO-1 task-1] xXR6ZOVFTf2GA9Wlxy8Q8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:43.907 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5ccdce0c +07:00:43.907 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.907 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.907 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:43.908 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5ccdce0c +07:00:43.908 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"df60d3e2-ea9e-4f47-b8d1-c24fa2b93493","newPassword":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPasswordConfirm":"e2677a82-b6a3-4a8c-b969-ffa51f330636"}, {"password":"df60d3e2-ea9e-4f47-b8d1-c24fa2b93493","newPassword":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPasswordConfirm":"e2677a82-b6a3-4a8c-b969-ffa51f330636"}, requestBody) +07:00:43.908 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"df60d3e2-ea9e-4f47-b8d1-c24fa2b93493","newPassword":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPasswordConfirm":"e2677a82-b6a3-4a8c-b969-ffa51f330636"}, {"password":"df60d3e2-ea9e-4f47-b8d1-c24fa2b93493","newPassword":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPasswordConfirm":"e2677a82-b6a3-4a8c-b969-ffa51f330636"}, requestBody) +07:00:43.908 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e2677a82-b6a3-4a8c-b969-ffa51f330636", {"password":"df60d3e2-ea9e-4f47-b8d1-c24fa2b93493","newPassword":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPasswordConfirm":"e2677a82-b6a3-4a8c-b969-ffa51f330636"}, requestBody.newPasswordConfirm) +07:00:43.909 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG com.networknt.schema.FormatValidator debug - validate( "df60d3e2-ea9e-4f47-b8d1-c24fa2b93493", {"password":"df60d3e2-ea9e-4f47-b8d1-c24fa2b93493","newPassword":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPasswordConfirm":"e2677a82-b6a3-4a8c-b969-ffa51f330636"}, requestBody.password) +07:00:43.909 [XNIO-1 task-1] SX2OgJHGSF2cpOdHUtP7VQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e2677a82-b6a3-4a8c-b969-ffa51f330636", {"password":"df60d3e2-ea9e-4f47-b8d1-c24fa2b93493","newPassword":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPasswordConfirm":"e2677a82-b6a3-4a8c-b969-ffa51f330636"}, requestBody.newPassword) +07:00:43.939 [XNIO-1 task-1] iMk_jLP-S7yUE5ELCnUtRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.939 [XNIO-1 task-1] iMk_jLP-S7yUE5ELCnUtRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.939 [XNIO-1 task-1] iMk_jLP-S7yUE5ELCnUtRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.953 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5ccdce0c +07:00:43.953 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.953 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.953 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:43.953 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5ccdce0c +07:00:43.954 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPassword":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e","newPasswordConfirm":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e"}, {"password":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPassword":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e","newPasswordConfirm":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e"}, requestBody) +07:00:43.954 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPassword":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e","newPasswordConfirm":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e"}, {"password":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPassword":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e","newPasswordConfirm":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e"}, requestBody) +07:00:43.954 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG com.networknt.schema.FormatValidator debug - validate( "c82ff0f8-4b66-4d4c-90ff-8c317e79516e", {"password":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPassword":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e","newPasswordConfirm":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e"}, requestBody.newPasswordConfirm) +07:00:43.955 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG com.networknt.schema.FormatValidator debug - validate( "e2677a82-b6a3-4a8c-b969-ffa51f330636", {"password":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPassword":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e","newPasswordConfirm":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e"}, requestBody.password) +07:00:43.956 [XNIO-1 task-1] DD9_Hhh0T-ySKIJSjZIhhA DEBUG com.networknt.schema.FormatValidator debug - validate( "c82ff0f8-4b66-4d4c-90ff-8c317e79516e", {"password":"e2677a82-b6a3-4a8c-b969-ffa51f330636","newPassword":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e","newPasswordConfirm":"c82ff0f8-4b66-4d4c-90ff-8c317e79516e"}, requestBody.newPassword) +07:00:43.984 [XNIO-1 task-1] 16PKaQDvTjSbDCNfGa-gzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.984 [XNIO-1 task-1] 16PKaQDvTjSbDCNfGa-gzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.984 [XNIO-1 task-1] 16PKaQDvTjSbDCNfGa-gzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.995 [XNIO-1 task-1] fZFf3rewTFqbgHCKn2w3Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5ccdce0c +07:00:43.996 [XNIO-1 task-1] fZFf3rewTFqbgHCKn2w3Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:43.996 [XNIO-1 task-1] fZFf3rewTFqbgHCKn2w3Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:43.996 [XNIO-1 task-1] fZFf3rewTFqbgHCKn2w3Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5ccdce0c +07:00:44.008 [XNIO-1 task-1] XabHFi5qQbuWVuogM5oCrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.008 [XNIO-1 task-1] XabHFi5qQbuWVuogM5oCrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.008 [XNIO-1 task-1] XabHFi5qQbuWVuogM5oCrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.009 [XNIO-1 task-1] XabHFi5qQbuWVuogM5oCrw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.030 [XNIO-1 task-1] S9jqIjxoQQGynLa1j5hjlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.030 [XNIO-1 task-1] S9jqIjxoQQGynLa1j5hjlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.030 [XNIO-1 task-1] S9jqIjxoQQGynLa1j5hjlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.030 [XNIO-1 task-1] S9jqIjxoQQGynLa1j5hjlA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.036 [XNIO-1 task-1] BnhYUGK9RmO2byGTKAfiVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.037 [XNIO-1 task-1] BnhYUGK9RmO2byGTKAfiVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.037 [XNIO-1 task-1] BnhYUGK9RmO2byGTKAfiVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.063 [XNIO-1 task-1] yCq7GBUVRF2dT7h_Vp_ldg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.064 [XNIO-1 task-1] yCq7GBUVRF2dT7h_Vp_ldg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.068 [XNIO-1 task-1] yCq7GBUVRF2dT7h_Vp_ldg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.106 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:44.113 [XNIO-1 task-1] dAtE4y6uTGueYOKWtbbyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ec262bc2 +07:00:44.113 [XNIO-1 task-1] dAtE4y6uTGueYOKWtbbyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.114 [XNIO-1 task-1] dAtE4y6uTGueYOKWtbbyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.114 [XNIO-1 task-1] dAtE4y6uTGueYOKWtbbyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ec262bc2 +Jun 29, 2024 7:00:44 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:44.148 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bb100dcd-22e0-498c-85fb-3edd23d3717e +07:00:44.148 [XNIO-1 task-1] RBRbksTgS6qBE0axBvUJSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.149 [XNIO-1 task-1] RBRbksTgS6qBE0axBvUJSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.149 [XNIO-1 task-1] RBRbksTgS6qBE0axBvUJSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.149 [XNIO-1 task-1] RBRbksTgS6qBE0axBvUJSA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.151 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bb100dcd-22e0-498c-85fb-3edd23d3717e +07:00:44.166 [XNIO-1 task-1] Gih-2YEgQw6MAM7d1oUjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8be9e01b +07:00:44.167 [XNIO-1 task-1] Gih-2YEgQw6MAM7d1oUjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.167 [XNIO-1 task-1] Gih-2YEgQw6MAM7d1oUjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.167 [XNIO-1 task-1] Gih-2YEgQw6MAM7d1oUjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8be9e01b +07:00:44.183 [XNIO-1 task-1] RkBGIjesT26kA4yvUIz0Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.183 [XNIO-1 task-1] RkBGIjesT26kA4yvUIz0Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.184 [XNIO-1 task-1] RkBGIjesT26kA4yvUIz0Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.188 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4867bd15-38e1-4015-b857-1ecba5753038 +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:44.209 [XNIO-1 task-1] r240YT44TM2VPJVh-XClgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.209 [XNIO-1 task-1] r240YT44TM2VPJVh-XClgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.209 [XNIO-1 task-1] r240YT44TM2VPJVh-XClgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +07:00:44.209 [XNIO-1 task-1] r240YT44TM2VPJVh-XClgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.218 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2a8b9083 +07:00:44.254 [XNIO-1 task-1] k9l3Io_KSgun6WkgWmAeuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.255 [XNIO-1 task-1] k9l3Io_KSgun6WkgWmAeuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.255 [XNIO-1 task-1] k9l3Io_KSgun6WkgWmAeuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.275 [XNIO-1 task-1] b3ET4zmiRM2RiHjjpZD_iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2a8b9083, base path is set to: null +07:00:44.276 [XNIO-1 task-1] b3ET4zmiRM2RiHjjpZD_iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.276 [XNIO-1 task-1] b3ET4zmiRM2RiHjjpZD_iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:44.276 [XNIO-1 task-1] b3ET4zmiRM2RiHjjpZD_iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2a8b9083, base path is set to: null +07:00:44.277 [XNIO-1 task-1] b3ET4zmiRM2RiHjjpZD_iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2a8b9083", "2a8b9083", userId) +07:00:44.281 [XNIO-1 task-1] _FqRVqtJQAKlbuZs4ZxLnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.281 [XNIO-1 task-1] _FqRVqtJQAKlbuZs4ZxLnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.282 [XNIO-1 task-1] _FqRVqtJQAKlbuZs4ZxLnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.282 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2a8b9083 +07:00:44.302 [XNIO-1 task-1] AWuJUmWPStO9kFAza0n5NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.302 [XNIO-1 task-1] AWuJUmWPStO9kFAza0n5NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.302 [XNIO-1 task-1] AWuJUmWPStO9kFAza0n5NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.303 [XNIO-1 task-1] AWuJUmWPStO9kFAza0n5NA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.315 [XNIO-1 task-1] Fg_y6ZF0SEOCgY2ohoDDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1dee9bf4 +07:00:44.315 [XNIO-1 task-1] Fg_y6ZF0SEOCgY2ohoDDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.315 [XNIO-1 task-1] Fg_y6ZF0SEOCgY2ohoDDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.315 [XNIO-1 task-1] Fg_y6ZF0SEOCgY2ohoDDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1dee9bf4 +07:00:44.328 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2a8b9083, base path is set to: null +07:00:44.328 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.328 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:44.328 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:44.329 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2a8b9083, base path is set to: null +07:00:44.329 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG com.networknt.schema.TypeValidator debug - validate( "2a8b9083", "2a8b9083", userId) +07:00:44.330 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e81eea11-0d65-471d-ab4f-285e128f172f","newPassword":"f71b3075-95d1-4427-a080-01932f3e7f61","newPasswordConfirm":"f71b3075-95d1-4427-a080-01932f3e7f61"}, {"password":"e81eea11-0d65-471d-ab4f-285e128f172f","newPassword":"f71b3075-95d1-4427-a080-01932f3e7f61","newPasswordConfirm":"f71b3075-95d1-4427-a080-01932f3e7f61"}, requestBody) +07:00:44.330 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG com.networknt.schema.TypeValidator debug - validate( "f71b3075-95d1-4427-a080-01932f3e7f61", {"password":"e81eea11-0d65-471d-ab4f-285e128f172f","newPassword":"f71b3075-95d1-4427-a080-01932f3e7f61","newPasswordConfirm":"f71b3075-95d1-4427-a080-01932f3e7f61"}, requestBody.newPasswordConfirm) +07:00:44.330 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG com.networknt.schema.TypeValidator debug - validate( "e81eea11-0d65-471d-ab4f-285e128f172f", {"password":"e81eea11-0d65-471d-ab4f-285e128f172f","newPassword":"f71b3075-95d1-4427-a080-01932f3e7f61","newPasswordConfirm":"f71b3075-95d1-4427-a080-01932f3e7f61"}, requestBody.password) +07:00:44.330 [XNIO-1 task-1] VQWzMaUQQ8-4adaY4ixYGg DEBUG com.networknt.schema.TypeValidator debug - validate( "f71b3075-95d1-4427-a080-01932f3e7f61", {"password":"e81eea11-0d65-471d-ab4f-285e128f172f","newPassword":"f71b3075-95d1-4427-a080-01932f3e7f61","newPasswordConfirm":"f71b3075-95d1-4427-a080-01932f3e7f61"}, requestBody.newPassword) +07:00:44.339 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2a8b9083 +07:00:44.350 [XNIO-1 task-1] AU4s6KcvTVWVLemP4EWCsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.351 [XNIO-1 task-1] AU4s6KcvTVWVLemP4EWCsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.351 [XNIO-1 task-1] AU4s6KcvTVWVLemP4EWCsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.353 [XNIO-1 task-1] AU4s6KcvTVWVLemP4EWCsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.362 [XNIO-1 task-1] 50HwwuCUSwmV1WJXRdjgtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.362 [XNIO-1 task-1] 50HwwuCUSwmV1WJXRdjgtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.362 [XNIO-1 task-1] 50HwwuCUSwmV1WJXRdjgtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.386 [XNIO-1 task-1] 0tWKS6q2QeSpecso6OLtJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.386 [XNIO-1 task-1] 0tWKS6q2QeSpecso6OLtJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.387 [XNIO-1 task-1] 0tWKS6q2QeSpecso6OLtJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.409 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4867bd15-38e1-4015-b857-1ecba5753038 +07:00:44.415 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:44.437 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2a8b9083, base path is set to: null +07:00:44.438 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2a8b9083 +07:00:44.438 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.438 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.438 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +07:00:44.439 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG com.networknt.schema.TypeValidator debug - validate( "2a8b9083", "2a8b9083", userId) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +07:00:44.439 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f71b3075-95d1-4427-a080-01932f3e7f61","newPassword":"09d9c03b-e95f-4997-8374-27edd1e6f31b","newPasswordConfirm":"09d9c03b-e95f-4997-8374-27edd1e6f31b"}, {"password":"f71b3075-95d1-4427-a080-01932f3e7f61","newPassword":"09d9c03b-e95f-4997-8374-27edd1e6f31b","newPasswordConfirm":"09d9c03b-e95f-4997-8374-27edd1e6f31b"}, requestBody) +07:00:44.439 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG com.networknt.schema.TypeValidator debug - validate( "09d9c03b-e95f-4997-8374-27edd1e6f31b", {"password":"f71b3075-95d1-4427-a080-01932f3e7f61","newPassword":"09d9c03b-e95f-4997-8374-27edd1e6f31b","newPasswordConfirm":"09d9c03b-e95f-4997-8374-27edd1e6f31b"}, requestBody.newPasswordConfirm) +07:00:44.439 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG com.networknt.schema.FormatValidator debug - validate( "09d9c03b-e95f-4997-8374-27edd1e6f31b", {"password":"f71b3075-95d1-4427-a080-01932f3e7f61","newPassword":"09d9c03b-e95f-4997-8374-27edd1e6f31b","newPasswordConfirm":"09d9c03b-e95f-4997-8374-27edd1e6f31b"}, requestBody.newPasswordConfirm) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +07:00:44.439 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG com.networknt.schema.FormatValidator debug - validate( "f71b3075-95d1-4427-a080-01932f3e7f61", {"password":"f71b3075-95d1-4427-a080-01932f3e7f61","newPassword":"09d9c03b-e95f-4997-8374-27edd1e6f31b","newPasswordConfirm":"09d9c03b-e95f-4997-8374-27edd1e6f31b"}, requestBody.password) +07:00:44.439 [XNIO-1 task-1] eVa1p4dpTt2wZcmO7M8i3w DEBUG com.networknt.schema.TypeValidator debug - validate( "09d9c03b-e95f-4997-8374-27edd1e6f31b", {"password":"f71b3075-95d1-4427-a080-01932f3e7f61","newPassword":"09d9c03b-e95f-4997-8374-27edd1e6f31b","newPasswordConfirm":"09d9c03b-e95f-4997-8374-27edd1e6f31b"}, requestBody.newPassword) + ... 14 more + +07:00:44.454 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2a8b9083 +07:00:44.461 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2e415185 +07:00:44.467 [XNIO-1 task-1] UrLwR6AnSn6-hMwxGpSTqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.467 [XNIO-1 task-1] UrLwR6AnSn6-hMwxGpSTqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.467 [XNIO-1 task-1] UrLwR6AnSn6-hMwxGpSTqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.468 [XNIO-1 task-1] UrLwR6AnSn6-hMwxGpSTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:44.480 [XNIO-1 task-1] pYR0TtAXRsGU1M8H2n01vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f38dd2ca, base path is set to: null +07:00:44.481 [XNIO-1 task-1] pYR0TtAXRsGU1M8H2n01vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.481 [XNIO-1 task-1] pYR0TtAXRsGU1M8H2n01vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:44.481 [XNIO-1 task-1] pYR0TtAXRsGU1M8H2n01vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f38dd2ca, base path is set to: null +07:00:44.482 [XNIO-1 task-1] pYR0TtAXRsGU1M8H2n01vg DEBUG com.networknt.schema.TypeValidator debug - validate( "f38dd2ca", "f38dd2ca", userId) +07:00:44.502 [XNIO-1 task-1] ESpawvbeQoGPDf0Opvrqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a8b9083 +07:00:44.502 [XNIO-1 task-1] ESpawvbeQoGPDf0Opvrqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.502 [XNIO-1 task-1] ESpawvbeQoGPDf0Opvrqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.502 [XNIO-1 task-1] ESpawvbeQoGPDf0Opvrqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a8b9083 +07:00:44.503 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2d1a222e +07:00:44.507 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2d1a222e +07:00:44.511 [XNIO-1 task-1] e1GxeOweQSitZb5heOmjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.511 [XNIO-1 task-1] e1GxeOweQSitZb5heOmjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.511 [XNIO-1 task-1] e1GxeOweQSitZb5heOmjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.528 [XNIO-1 task-1] eXAoJV5DSlG6nEk8hKZQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.528 [XNIO-1 task-1] eXAoJV5DSlG6nEk8hKZQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.528 [XNIO-1 task-1] eXAoJV5DSlG6nEk8hKZQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.529 [XNIO-1 task-1] eXAoJV5DSlG6nEk8hKZQlg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.538 [XNIO-1 task-1] 7mPK-CxlTwuqLT_te7W3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a8b9083 +07:00:44.538 [XNIO-1 task-1] 7mPK-CxlTwuqLT_te7W3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.538 [XNIO-1 task-1] 7mPK-CxlTwuqLT_te7W3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.538 [XNIO-1 task-1] 7mPK-CxlTwuqLT_te7W3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a8b9083 +07:00:44.539 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2a8b9083 +07:00:44.561 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bb8855ad-234b-478c-ab98-9d4a9374ea2c +07:00:44.564 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:974cdf1f-003f-49cc-a3a5-724df7423575 +07:00:44.567 [XNIO-1 task-1] TGhQOkjPRu-yeMu6v-EXkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.568 [XNIO-1 task-1] TGhQOkjPRu-yeMu6v-EXkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.568 [XNIO-1 task-1] TGhQOkjPRu-yeMu6v-EXkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.578 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2e415185 +07:00:44.581 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bb8855ad-234b-478c-ab98-9d4a9374ea2c +07:00:44.599 [XNIO-1 task-1] R8NnRm2JTwOBxefwr7Gsyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.599 [XNIO-1 task-1] R8NnRm2JTwOBxefwr7Gsyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.600 [XNIO-1 task-1] R8NnRm2JTwOBxefwr7Gsyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.610 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1ff79eb2-a89e-40d4-887e-01969e2b4fd8 +07:00:44.615 [XNIO-1 task-1] ZCCPfKyeTv6oSOMFQ3wdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3cdc711 +07:00:44.615 [XNIO-1 task-1] ZCCPfKyeTv6oSOMFQ3wdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.615 [XNIO-1 task-1] ZCCPfKyeTv6oSOMFQ3wdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.615 [XNIO-1 task-1] ZCCPfKyeTv6oSOMFQ3wdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3cdc711 +07:00:44.625 [XNIO-1 task-1] JgIeSWHYRbKA70SUMNwYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.625 [XNIO-1 task-1] JgIeSWHYRbKA70SUMNwYcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.626 [XNIO-1 task-1] JgIeSWHYRbKA70SUMNwYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.651 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2d1a222e +07:00:44.652 [XNIO-1 task-1] 6V2UNw5tRmiSN1hSmXuguw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.652 [XNIO-1 task-1] 6V2UNw5tRmiSN1hSmXuguw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.658 [XNIO-1 task-1] 6V2UNw5tRmiSN1hSmXuguw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.750 [XNIO-1 task-1] 7XeYuGCnRE-YlDWiudz9SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e707ed3b, base path is set to: null +07:00:44.752 [XNIO-1 task-1] 7XeYuGCnRE-YlDWiudz9SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.752 [XNIO-1 task-1] 7XeYuGCnRE-YlDWiudz9SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:44.752 [XNIO-1 task-1] 7XeYuGCnRE-YlDWiudz9SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e707ed3b, base path is set to: null +07:00:44.753 [XNIO-1 task-1] 7XeYuGCnRE-YlDWiudz9SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e707ed3b", "e707ed3b", userId) +07:00:44.766 [XNIO-1 task-1] LplfnifnQUi3N9Y3tSrj2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.767 [XNIO-1 task-1] LplfnifnQUi3N9Y3tSrj2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.767 [XNIO-1 task-1] LplfnifnQUi3N9Y3tSrj2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.767 [XNIO-1 task-1] LplfnifnQUi3N9Y3tSrj2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.780 [XNIO-1 task-1] bjyiI5wxQNyWvf_Nc1cJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.780 [XNIO-1 task-1] bjyiI5wxQNyWvf_Nc1cJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.780 [XNIO-1 task-1] bjyiI5wxQNyWvf_Nc1cJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.781 [XNIO-1 task-1] bjyiI5wxQNyWvf_Nc1cJgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.806 [XNIO-1 task-1] 5taon80xQLuUPbDFwyQelQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3cdc711 +07:00:44.806 [XNIO-1 task-1] 5taon80xQLuUPbDFwyQelQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.806 [XNIO-1 task-1] 5taon80xQLuUPbDFwyQelQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.806 [XNIO-1 task-1] 5taon80xQLuUPbDFwyQelQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3cdc711 +07:00:44.821 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f6e3188 +07:00:44.823 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f6e3188 +07:00:44.830 [XNIO-1 task-1] AD8TSfU6SIyXvzbFiC9S7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.830 [XNIO-1 task-1] AD8TSfU6SIyXvzbFiC9S7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.831 [XNIO-1 task-1] AD8TSfU6SIyXvzbFiC9S7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.833 [XNIO-1 task-1] AD8TSfU6SIyXvzbFiC9S7g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:44.840 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f6e3188 +07:00:44.845 [XNIO-1 task-1] pf1-hWdLQaabxRSsgxbCOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.848 [XNIO-1 task-1] pf1-hWdLQaabxRSsgxbCOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.848 [XNIO-1 task-1] pf1-hWdLQaabxRSsgxbCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.850 [XNIO-1 task-1] pf1-hWdLQaabxRSsgxbCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +07:00:44.862 [XNIO-1 task-1] nrR976Q1QAyAPZgc_QqS8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.862 [XNIO-1 task-1] nrR976Q1QAyAPZgc_QqS8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.862 [XNIO-1 task-1] nrR976Q1QAyAPZgc_QqS8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.889 [XNIO-1 task-1] wGknEwxiSY6dimUl5JI98w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ff7da14, base path is set to: null +07:00:44.891 [XNIO-1 task-1] wGknEwxiSY6dimUl5JI98w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.891 [XNIO-1 task-1] wGknEwxiSY6dimUl5JI98w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:44.892 [XNIO-1 task-1] wGknEwxiSY6dimUl5JI98w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ff7da14, base path is set to: null +07:00:44.892 [XNIO-1 task-1] wGknEwxiSY6dimUl5JI98w DEBUG com.networknt.schema.TypeValidator debug - validate( "0ff7da14", "0ff7da14", userId) +07:00:44.900 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ff7da14 +07:00:44.901 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.901 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.901 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:44.901 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ff7da14 +07:00:44.902 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"150b79ad-18ab-4289-98f2-7b626060846b","newPassword":"3a9c1b8c-5568-4862-a74c-3edf3b564c94","newPasswordConfirm":"3a9c1b8c-5568-4862-a74c-3edf3b564c94"}, {"password":"150b79ad-18ab-4289-98f2-7b626060846b","newPassword":"3a9c1b8c-5568-4862-a74c-3edf3b564c94","newPasswordConfirm":"3a9c1b8c-5568-4862-a74c-3edf3b564c94"}, requestBody) +07:00:44.902 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"150b79ad-18ab-4289-98f2-7b626060846b","newPassword":"3a9c1b8c-5568-4862-a74c-3edf3b564c94","newPasswordConfirm":"3a9c1b8c-5568-4862-a74c-3edf3b564c94"}, {"password":"150b79ad-18ab-4289-98f2-7b626060846b","newPassword":"3a9c1b8c-5568-4862-a74c-3edf3b564c94","newPasswordConfirm":"3a9c1b8c-5568-4862-a74c-3edf3b564c94"}, requestBody) +07:00:44.902 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG com.networknt.schema.FormatValidator debug - validate( "3a9c1b8c-5568-4862-a74c-3edf3b564c94", {"password":"150b79ad-18ab-4289-98f2-7b626060846b","newPassword":"3a9c1b8c-5568-4862-a74c-3edf3b564c94","newPasswordConfirm":"3a9c1b8c-5568-4862-a74c-3edf3b564c94"}, requestBody.newPasswordConfirm) +07:00:44.902 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG com.networknt.schema.FormatValidator debug - validate( "150b79ad-18ab-4289-98f2-7b626060846b", {"password":"150b79ad-18ab-4289-98f2-7b626060846b","newPassword":"3a9c1b8c-5568-4862-a74c-3edf3b564c94","newPasswordConfirm":"3a9c1b8c-5568-4862-a74c-3edf3b564c94"}, requestBody.password) +07:00:44.902 [XNIO-1 task-1] jq_YeHbIRnmr-d80VxiQUA DEBUG com.networknt.schema.FormatValidator debug - validate( "3a9c1b8c-5568-4862-a74c-3edf3b564c94", {"password":"150b79ad-18ab-4289-98f2-7b626060846b","newPassword":"3a9c1b8c-5568-4862-a74c-3edf3b564c94","newPasswordConfirm":"3a9c1b8c-5568-4862-a74c-3edf3b564c94"}, requestBody.newPassword) +07:00:44.931 [XNIO-1 task-1] xm_SHxyZRvaa-qUn2pdffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ff7da14 +07:00:44.931 [XNIO-1 task-1] xm_SHxyZRvaa-qUn2pdffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:44.931 [XNIO-1 task-1] xm_SHxyZRvaa-qUn2pdffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:44.931 [XNIO-1 task-1] xm_SHxyZRvaa-qUn2pdffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ff7da14 +07:00:44.949 [XNIO-1 task-1] 6fr2pENNTAui58BGkIP1SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.949 [XNIO-1 task-1] 6fr2pENNTAui58BGkIP1SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.949 [XNIO-1 task-1] 6fr2pENNTAui58BGkIP1SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.991 [XNIO-1 task-1] EeTbfhnkSbeOqZndxJGAbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.991 [XNIO-1 task-1] EeTbfhnkSbeOqZndxJGAbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:44.991 [XNIO-1 task-1] EeTbfhnkSbeOqZndxJGAbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:44.992 [XNIO-1 task-1] EeTbfhnkSbeOqZndxJGAbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.000 [XNIO-1 task-1] 1OTc74ujTKC5kiDu_Xyadg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/decef3e9, base path is set to: null +07:00:45.001 [XNIO-1 task-1] 1OTc74ujTKC5kiDu_Xyadg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.001 [XNIO-1 task-1] 1OTc74ujTKC5kiDu_Xyadg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.001 [XNIO-1 task-1] 1OTc74ujTKC5kiDu_Xyadg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/decef3e9, base path is set to: null +07:00:45.001 [XNIO-1 task-1] 1OTc74ujTKC5kiDu_Xyadg DEBUG com.networknt.schema.TypeValidator debug - validate( "decef3e9", "decef3e9", userId) +07:00:45.012 [XNIO-1 task-1] xqHZcYA6SwmUC4R_tGTUsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/decef3e9 +07:00:45.012 [XNIO-1 task-1] xqHZcYA6SwmUC4R_tGTUsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.012 [XNIO-1 task-1] xqHZcYA6SwmUC4R_tGTUsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.012 [XNIO-1 task-1] xqHZcYA6SwmUC4R_tGTUsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/decef3e9 +07:00:45.019 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/decef3e9, base path is set to: null +07:00:45.019 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.019 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.020 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:45.020 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/decef3e9, base path is set to: null +07:00:45.020 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG com.networknt.schema.TypeValidator debug - validate( "decef3e9", "decef3e9", userId) +07:00:45.021 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"85861168-1a68-4f4d-8c35-9d23822ef531","newPassword":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPasswordConfirm":"df6ce98e-1188-492c-89d3-dbf98133a6d6"}, {"password":"85861168-1a68-4f4d-8c35-9d23822ef531","newPassword":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPasswordConfirm":"df6ce98e-1188-492c-89d3-dbf98133a6d6"}, requestBody) +07:00:45.021 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG com.networknt.schema.TypeValidator debug - validate( "df6ce98e-1188-492c-89d3-dbf98133a6d6", {"password":"85861168-1a68-4f4d-8c35-9d23822ef531","newPassword":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPasswordConfirm":"df6ce98e-1188-492c-89d3-dbf98133a6d6"}, requestBody.newPasswordConfirm) +07:00:45.021 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG com.networknt.schema.TypeValidator debug - validate( "85861168-1a68-4f4d-8c35-9d23822ef531", {"password":"85861168-1a68-4f4d-8c35-9d23822ef531","newPassword":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPasswordConfirm":"df6ce98e-1188-492c-89d3-dbf98133a6d6"}, requestBody.password) +07:00:45.021 [XNIO-1 task-1] 5Ha3PpQuRt2-4IjrQHFm6w DEBUG com.networknt.schema.TypeValidator debug - validate( "df6ce98e-1188-492c-89d3-dbf98133a6d6", {"password":"85861168-1a68-4f4d-8c35-9d23822ef531","newPassword":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPasswordConfirm":"df6ce98e-1188-492c-89d3-dbf98133a6d6"}, requestBody.newPassword) +07:00:45.072 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d1c9b3b3-1ba8-40fd-92d1-3fea3b54d6ce +07:00:45.093 [XNIO-1 task-1] J_HtMMMQRmGRIpuZ466cuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.093 [XNIO-1 task-1] J_HtMMMQRmGRIpuZ466cuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.093 [XNIO-1 task-1] J_HtMMMQRmGRIpuZ466cuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.094 [XNIO-1 task-1] J_HtMMMQRmGRIpuZ466cuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.103 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/decef3e9 +07:00:45.103 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.103 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.103 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:45.104 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/decef3e9 +07:00:45.104 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPassword":"0b5a7212-db27-4388-84c5-81803afecabe","newPasswordConfirm":"0b5a7212-db27-4388-84c5-81803afecabe"}, {"password":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPassword":"0b5a7212-db27-4388-84c5-81803afecabe","newPasswordConfirm":"0b5a7212-db27-4388-84c5-81803afecabe"}, requestBody) +07:00:45.105 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPassword":"0b5a7212-db27-4388-84c5-81803afecabe","newPasswordConfirm":"0b5a7212-db27-4388-84c5-81803afecabe"}, {"password":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPassword":"0b5a7212-db27-4388-84c5-81803afecabe","newPasswordConfirm":"0b5a7212-db27-4388-84c5-81803afecabe"}, requestBody) +07:00:45.105 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG com.networknt.schema.FormatValidator debug - validate( "0b5a7212-db27-4388-84c5-81803afecabe", {"password":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPassword":"0b5a7212-db27-4388-84c5-81803afecabe","newPasswordConfirm":"0b5a7212-db27-4388-84c5-81803afecabe"}, requestBody.newPasswordConfirm) +07:00:45.105 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG com.networknt.schema.FormatValidator debug - validate( "df6ce98e-1188-492c-89d3-dbf98133a6d6", {"password":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPassword":"0b5a7212-db27-4388-84c5-81803afecabe","newPasswordConfirm":"0b5a7212-db27-4388-84c5-81803afecabe"}, requestBody.password) +07:00:45.105 [XNIO-1 task-1] cytZsilMQPq9CpSW9oyBPw DEBUG com.networknt.schema.FormatValidator debug - validate( "0b5a7212-db27-4388-84c5-81803afecabe", {"password":"df6ce98e-1188-492c-89d3-dbf98133a6d6","newPassword":"0b5a7212-db27-4388-84c5-81803afecabe","newPasswordConfirm":"0b5a7212-db27-4388-84c5-81803afecabe"}, requestBody.newPassword) +07:00:45.144 [XNIO-1 task-1] 7vSKiH9WRoOfAWTUjst9Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.144 [XNIO-1 task-1] 7vSKiH9WRoOfAWTUjst9Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.144 [XNIO-1 task-1] 7vSKiH9WRoOfAWTUjst9Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.162 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:15e8ad43 +07:00:45.181 [XNIO-1 task-1] _vaAluEOSd-yOlA5jssC6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.181 [XNIO-1 task-1] _vaAluEOSd-yOlA5jssC6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.181 [XNIO-1 task-1] _vaAluEOSd-yOlA5jssC6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.203 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2f6e3188 +07:00:45.210 [XNIO-1 task-1] No2NuF8zSMWrhZixotCliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/decef3e9, base path is set to: null +07:00:45.210 [XNIO-1 task-1] No2NuF8zSMWrhZixotCliw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.210 [XNIO-1 task-1] No2NuF8zSMWrhZixotCliw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.210 [XNIO-1 task-1] No2NuF8zSMWrhZixotCliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/decef3e9, base path is set to: null +07:00:45.210 [XNIO-1 task-1] No2NuF8zSMWrhZixotCliw DEBUG com.networknt.schema.TypeValidator debug - validate( "decef3e9", "decef3e9", userId) +07:00:45.222 [XNIO-1 task-1] ZpN7zeCCT_aBFPmKGjKbJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.222 [XNIO-1 task-1] ZpN7zeCCT_aBFPmKGjKbJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.223 [XNIO-1 task-1] ZpN7zeCCT_aBFPmKGjKbJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.224 [XNIO-1 task-1] ZpN7zeCCT_aBFPmKGjKbJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.250 [XNIO-1 task-1] 4X_indTdQTO2W5e6ja9MvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/62fbdbcc +07:00:45.250 [XNIO-1 task-1] 4X_indTdQTO2W5e6ja9MvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.250 [XNIO-1 task-1] 4X_indTdQTO2W5e6ja9MvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.251 [XNIO-1 task-1] 4X_indTdQTO2W5e6ja9MvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/62fbdbcc +07:00:45.264 [XNIO-1 task-1] bHm3ZWIOQV6Dz83A7WEbGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/15e8ad43, base path is set to: null +07:00:45.264 [XNIO-1 task-1] bHm3ZWIOQV6Dz83A7WEbGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.265 [XNIO-1 task-1] bHm3ZWIOQV6Dz83A7WEbGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.265 [XNIO-1 task-1] bHm3ZWIOQV6Dz83A7WEbGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/15e8ad43, base path is set to: null +07:00:45.265 [XNIO-1 task-1] bHm3ZWIOQV6Dz83A7WEbGg DEBUG com.networknt.schema.TypeValidator debug - validate( "15e8ad43", "15e8ad43", userId) +07:00:45.279 [XNIO-1 task-1] ENnSZBzhQryl6QZLU9FxLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c616bd0, base path is set to: null +07:00:45.279 [XNIO-1 task-1] ENnSZBzhQryl6QZLU9FxLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.279 [XNIO-1 task-1] ENnSZBzhQryl6QZLU9FxLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.279 [XNIO-1 task-1] ENnSZBzhQryl6QZLU9FxLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c616bd0, base path is set to: null +07:00:45.280 [XNIO-1 task-1] ENnSZBzhQryl6QZLU9FxLg DEBUG com.networknt.schema.TypeValidator debug - validate( "6c616bd0", "6c616bd0", userId) +07:00:45.292 [XNIO-1 task-1] PkcyvbRdSG2fh7mDSYUIIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.292 [XNIO-1 task-1] PkcyvbRdSG2fh7mDSYUIIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.293 [XNIO-1 task-1] PkcyvbRdSG2fh7mDSYUIIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.336 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c2d6f0b0-7ced-40b8-8cbf-74df9c9fd829 +07:00:45.371 [XNIO-1 task-1] VKaZE9O6RFeFEbr_JV46jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.371 [XNIO-1 task-1] VKaZE9O6RFeFEbr_JV46jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.372 [XNIO-1 task-1] VKaZE9O6RFeFEbr_JV46jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.372 [XNIO-1 task-1] VKaZE9O6RFeFEbr_JV46jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.388 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f897c60, base path is set to: null +07:00:45.388 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.388 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.388 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:45.389 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4f897c60, base path is set to: null +07:00:45.389 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f897c60", "4f897c60", userId) +07:00:45.390 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2a634425-a954-4f28-92a8-3cb530e7ba3f","newPassword":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068","newPasswordConfirm":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068"}, {"password":"2a634425-a954-4f28-92a8-3cb530e7ba3f","newPassword":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068","newPasswordConfirm":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068"}, requestBody) +07:00:45.390 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068", {"password":"2a634425-a954-4f28-92a8-3cb530e7ba3f","newPassword":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068","newPasswordConfirm":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068"}, requestBody.newPasswordConfirm) +07:00:45.390 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG com.networknt.schema.TypeValidator debug - validate( "2a634425-a954-4f28-92a8-3cb530e7ba3f", {"password":"2a634425-a954-4f28-92a8-3cb530e7ba3f","newPassword":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068","newPasswordConfirm":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068"}, requestBody.password) +07:00:45.390 [XNIO-1 task-1] KEbuc1X8S5eK2mT9XUErUw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068", {"password":"2a634425-a954-4f28-92a8-3cb530e7ba3f","newPassword":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068","newPasswordConfirm":"a3c13d6c-dbbe-437c-b3bd-ab75ba6d5068"}, requestBody.newPassword) +07:00:45.418 [XNIO-1 task-1] KQnXnE1HQeGK2AiyFQrcKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f897c60, base path is set to: null +07:00:45.418 [XNIO-1 task-1] KQnXnE1HQeGK2AiyFQrcKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.418 [XNIO-1 task-1] KQnXnE1HQeGK2AiyFQrcKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.418 [XNIO-1 task-1] KQnXnE1HQeGK2AiyFQrcKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f897c60, base path is set to: null +07:00:45.419 [XNIO-1 task-1] KQnXnE1HQeGK2AiyFQrcKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f897c60", "4f897c60", userId) +07:00:45.430 [XNIO-1 task-1] qdtiDBvmT765daUklLmXSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.431 [XNIO-1 task-1] qdtiDBvmT765daUklLmXSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.431 [XNIO-1 task-1] qdtiDBvmT765daUklLmXSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.431 [XNIO-1 task-1] qdtiDBvmT765daUklLmXSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.439 [XNIO-1 task-1] MnMXhiYYQdqNHD7gLp2gaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.440 [XNIO-1 task-1] MnMXhiYYQdqNHD7gLp2gaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.440 [XNIO-1 task-1] MnMXhiYYQdqNHD7gLp2gaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.453 [XNIO-1 task-1] 067Fg_G4Qu6FjRT4cbCXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/62fbdbcc +07:00:45.454 [XNIO-1 task-1] 067Fg_G4Qu6FjRT4cbCXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.454 [XNIO-1 task-1] 067Fg_G4Qu6FjRT4cbCXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.454 [XNIO-1 task-1] 067Fg_G4Qu6FjRT4cbCXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/62fbdbcc +07:00:45.477 [XNIO-1 task-1] 6UdWPgy4RqipVeCkh1RoSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.477 [XNIO-1 task-1] 6UdWPgy4RqipVeCkh1RoSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.478 [XNIO-1 task-1] 6UdWPgy4RqipVeCkh1RoSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.486 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6e42fd3 +07:00:45.488 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6e42fd3 +07:00:45.500 [XNIO-1 task-1] YHjVbbB3R_en8vUzk60X4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.500 [XNIO-1 task-1] YHjVbbB3R_en8vUzk60X4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.501 [XNIO-1 task-1] YHjVbbB3R_en8vUzk60X4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.524 [XNIO-1 task-1] ttHWy0djTSiGOwa3bbTPXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a0471c6 +07:00:45.524 [XNIO-1 task-1] ttHWy0djTSiGOwa3bbTPXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.524 [XNIO-1 task-1] ttHWy0djTSiGOwa3bbTPXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.524 [XNIO-1 task-1] ttHWy0djTSiGOwa3bbTPXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a0471c6 +07:00:45.528 [XNIO-1 task-1] umgiJFz4Qf25gNxuctzodQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.529 [XNIO-1 task-1] umgiJFz4Qf25gNxuctzodQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.529 [XNIO-1 task-1] umgiJFz4Qf25gNxuctzodQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.530 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6e42fd3 +07:00:45.543 [XNIO-1 task-1] qpv3y62xTLKegYnYgxWIyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.543 [XNIO-1 task-1] qpv3y62xTLKegYnYgxWIyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.543 [XNIO-1 task-1] qpv3y62xTLKegYnYgxWIyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.554 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:600d2c0e-f6f3-4b84-899f-350dfda23523 +07:00:45.556 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:600d2c0e-f6f3-4b84-899f-350dfda23523 +07:00:45.566 [XNIO-1 task-1] mqE2Dvk5Sxy01vSlSDR-9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.566 [XNIO-1 task-1] mqE2Dvk5Sxy01vSlSDR-9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.567 [XNIO-1 task-1] mqE2Dvk5Sxy01vSlSDR-9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.595 [XNIO-1 task-1] Z3jKadBvTXSXCLGzvbOQOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.595 [XNIO-1 task-1] Z3jKadBvTXSXCLGzvbOQOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.595 [XNIO-1 task-1] Z3jKadBvTXSXCLGzvbOQOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.638 [XNIO-1 task-1] ASoOpPIMTJaWvJCP1eDrwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.638 [XNIO-1 task-1] ASoOpPIMTJaWvJCP1eDrwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.639 [XNIO-1 task-1] ASoOpPIMTJaWvJCP1eDrwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.675 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6e42fd3 +07:00:45.675 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.675 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.676 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:45.676 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6e42fd3 +07:00:45.677 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"35a37b29-7cc7-4dcd-8712-5287d0e6131e","newPassword":"803a4e19-a364-4271-a0dc-610d32585487","newPasswordConfirm":"803a4e19-a364-4271-a0dc-610d32585487"}, {"password":"35a37b29-7cc7-4dcd-8712-5287d0e6131e","newPassword":"803a4e19-a364-4271-a0dc-610d32585487","newPasswordConfirm":"803a4e19-a364-4271-a0dc-610d32585487"}, requestBody) +07:00:45.677 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"35a37b29-7cc7-4dcd-8712-5287d0e6131e","newPassword":"803a4e19-a364-4271-a0dc-610d32585487","newPasswordConfirm":"803a4e19-a364-4271-a0dc-610d32585487"}, {"password":"35a37b29-7cc7-4dcd-8712-5287d0e6131e","newPassword":"803a4e19-a364-4271-a0dc-610d32585487","newPasswordConfirm":"803a4e19-a364-4271-a0dc-610d32585487"}, requestBody) +07:00:45.677 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "803a4e19-a364-4271-a0dc-610d32585487", {"password":"35a37b29-7cc7-4dcd-8712-5287d0e6131e","newPassword":"803a4e19-a364-4271-a0dc-610d32585487","newPasswordConfirm":"803a4e19-a364-4271-a0dc-610d32585487"}, requestBody.newPasswordConfirm) +07:00:45.677 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "35a37b29-7cc7-4dcd-8712-5287d0e6131e", {"password":"35a37b29-7cc7-4dcd-8712-5287d0e6131e","newPassword":"803a4e19-a364-4271-a0dc-610d32585487","newPasswordConfirm":"803a4e19-a364-4271-a0dc-610d32585487"}, requestBody.password) +07:00:45.677 [XNIO-1 task-1] CO9ZLVE1TeaGML5iI3GgVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "803a4e19-a364-4271-a0dc-610d32585487", {"password":"35a37b29-7cc7-4dcd-8712-5287d0e6131e","newPassword":"803a4e19-a364-4271-a0dc-610d32585487","newPasswordConfirm":"803a4e19-a364-4271-a0dc-610d32585487"}, requestBody.newPassword) +07:00:45.687 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6e42fd3 +07:00:45.749 [XNIO-1 task-1] qE1XFmj2RBC484yGSI7R2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a0471c6 +07:00:45.749 [XNIO-1 task-1] qE1XFmj2RBC484yGSI7R2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.749 [XNIO-1 task-1] qE1XFmj2RBC484yGSI7R2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.750 [XNIO-1 task-1] qE1XFmj2RBC484yGSI7R2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a0471c6 +07:00:45.754 [XNIO-1 task-1] kx-1LmerS3WlSDicANzHBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.755 [XNIO-1 task-1] kx-1LmerS3WlSDicANzHBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.755 [XNIO-1 task-1] kx-1LmerS3WlSDicANzHBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.769 [XNIO-1 task-1] ylLGhvzmSVS4Ms_-pAQGCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6aa3fc95, base path is set to: null +07:00:45.769 [XNIO-1 task-1] ylLGhvzmSVS4Ms_-pAQGCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.769 [XNIO-1 task-1] ylLGhvzmSVS4Ms_-pAQGCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.769 [XNIO-1 task-1] ylLGhvzmSVS4Ms_-pAQGCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6aa3fc95, base path is set to: null +07:00:45.769 [XNIO-1 task-1] ylLGhvzmSVS4Ms_-pAQGCg DEBUG com.networknt.schema.TypeValidator debug - validate( "6aa3fc95", "6aa3fc95", userId) +07:00:45.784 [XNIO-1 task-1] e2zSjc8SQaiuAVojAoAeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.784 [XNIO-1 task-1] e2zSjc8SQaiuAVojAoAeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.785 [XNIO-1 task-1] e2zSjc8SQaiuAVojAoAeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.804 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bf061091 +07:00:45.805 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.810 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.811 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +07:00:45.811 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bf061091 +07:00:45.812 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"03fa5ada-f083-4c34-9f94-af56bcafc130","newPassword":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPasswordConfirm":"7de2ad25-136a-4e22-9d12-93705440b9ed"}, {"password":"03fa5ada-f083-4c34-9f94-af56bcafc130","newPassword":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPasswordConfirm":"7de2ad25-136a-4e22-9d12-93705440b9ed"}, requestBody) +07:00:45.812 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"03fa5ada-f083-4c34-9f94-af56bcafc130","newPassword":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPasswordConfirm":"7de2ad25-136a-4e22-9d12-93705440b9ed"}, {"password":"03fa5ada-f083-4c34-9f94-af56bcafc130","newPassword":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPasswordConfirm":"7de2ad25-136a-4e22-9d12-93705440b9ed"}, requestBody) +07:00:45.812 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG com.networknt.schema.FormatValidator debug - validate( "7de2ad25-136a-4e22-9d12-93705440b9ed", {"password":"03fa5ada-f083-4c34-9f94-af56bcafc130","newPassword":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPasswordConfirm":"7de2ad25-136a-4e22-9d12-93705440b9ed"}, requestBody.newPasswordConfirm) +07:00:45.812 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG com.networknt.schema.FormatValidator debug - validate( "03fa5ada-f083-4c34-9f94-af56bcafc130", {"password":"03fa5ada-f083-4c34-9f94-af56bcafc130","newPassword":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPasswordConfirm":"7de2ad25-136a-4e22-9d12-93705440b9ed"}, requestBody.password) +07:00:45.812 [XNIO-1 task-1] 2igpqjulQ-2GUGD1Ybn5NQ DEBUG com.networknt.schema.FormatValidator debug - validate( "7de2ad25-136a-4e22-9d12-93705440b9ed", {"password":"03fa5ada-f083-4c34-9f94-af56bcafc130","newPassword":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPasswordConfirm":"7de2ad25-136a-4e22-9d12-93705440b9ed"}, requestBody.newPassword) +07:00:45.841 [XNIO-1 task-1] IScmSQwIT8CZbOdrAIyvCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.841 [XNIO-1 task-1] IScmSQwIT8CZbOdrAIyvCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.842 [XNIO-1 task-1] IScmSQwIT8CZbOdrAIyvCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.842 [XNIO-1 task-1] IScmSQwIT8CZbOdrAIyvCA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:45.853 [XNIO-1 task-1] A7Db5Bx1QeqUTaKSfJZV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf061091 +07:00:45.853 [XNIO-1 task-1] A7Db5Bx1QeqUTaKSfJZV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.853 [XNIO-1 task-1] A7Db5Bx1QeqUTaKSfJZV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.854 [XNIO-1 task-1] A7Db5Bx1QeqUTaKSfJZV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf061091 +07:00:45.854 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2f6e3188 +07:00:45.860 [XNIO-1 task-1] mCGuy2gwSqm9kRCrsdRWPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2a0471c6, base path is set to: null +07:00:45.860 [XNIO-1 task-1] mCGuy2gwSqm9kRCrsdRWPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.860 [XNIO-1 task-1] mCGuy2gwSqm9kRCrsdRWPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.860 [XNIO-1 task-1] mCGuy2gwSqm9kRCrsdRWPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2a0471c6, base path is set to: null +07:00:45.861 [XNIO-1 task-1] mCGuy2gwSqm9kRCrsdRWPg DEBUG com.networknt.schema.TypeValidator debug - validate( "2a0471c6", "2a0471c6", userId) +07:00:45.896 [XNIO-1 task-1] ylHOwks5Sm2--YsHm6FNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf061091 +07:00:45.896 [XNIO-1 task-1] ylHOwks5Sm2--YsHm6FNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:45.896 [XNIO-1 task-1] ylHOwks5Sm2--YsHm6FNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:45.896 [XNIO-1 task-1] ylHOwks5Sm2--YsHm6FNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf061091 +07:00:45.932 [XNIO-1 task-1] ZzYSlBxZTbSKNTQ8OMWbkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.932 [XNIO-1 task-1] ZzYSlBxZTbSKNTQ8OMWbkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.932 [XNIO-1 task-1] ZzYSlBxZTbSKNTQ8OMWbkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.932 [XNIO-1 task-1] ZzYSlBxZTbSKNTQ8OMWbkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:45.942 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bf061091, base path is set to: null +07:00:45.942 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.942 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:45.942 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:45.943 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bf061091, base path is set to: null +07:00:45.943 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf061091", "bf061091", userId) +07:00:45.943 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPassword":"fae09315-2bfd-4b14-ba60-12675a74da18","newPasswordConfirm":"fae09315-2bfd-4b14-ba60-12675a74da18"}, {"password":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPassword":"fae09315-2bfd-4b14-ba60-12675a74da18","newPasswordConfirm":"fae09315-2bfd-4b14-ba60-12675a74da18"}, requestBody) +07:00:45.943 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG com.networknt.schema.TypeValidator debug - validate( "fae09315-2bfd-4b14-ba60-12675a74da18", {"password":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPassword":"fae09315-2bfd-4b14-ba60-12675a74da18","newPasswordConfirm":"fae09315-2bfd-4b14-ba60-12675a74da18"}, requestBody.newPasswordConfirm) +07:00:45.944 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG com.networknt.schema.TypeValidator debug - validate( "7de2ad25-136a-4e22-9d12-93705440b9ed", {"password":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPassword":"fae09315-2bfd-4b14-ba60-12675a74da18","newPasswordConfirm":"fae09315-2bfd-4b14-ba60-12675a74da18"}, requestBody.password) +07:00:45.944 [XNIO-1 task-1] Fbo29FRtQhemn_ga2OjrZw DEBUG com.networknt.schema.TypeValidator debug - validate( "fae09315-2bfd-4b14-ba60-12675a74da18", {"password":"7de2ad25-136a-4e22-9d12-93705440b9ed","newPassword":"fae09315-2bfd-4b14-ba60-12675a74da18","newPasswordConfirm":"fae09315-2bfd-4b14-ba60-12675a74da18"}, requestBody.newPassword) +07:00:45.953 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:86a460c0-afbe-4d33-8a85-7514654e100d +07:00:45.977 [XNIO-1 task-1] EyLKUZiPQ2esYjvlJGILPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.977 [XNIO-1 task-1] EyLKUZiPQ2esYjvlJGILPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:45.977 [XNIO-1 task-1] EyLKUZiPQ2esYjvlJGILPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:45.984 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:86a460c0-afbe-4d33-8a85-7514654e100d +07:00:46.001 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c3d68072 +07:00:46.008 [XNIO-1 task-1] ulq6VPp0QVSUskjt_tKUPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.008 [XNIO-1 task-1] ulq6VPp0QVSUskjt_tKUPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.009 [XNIO-1 task-1] ulq6VPp0QVSUskjt_tKUPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.009 [XNIO-1 task-1] ulq6VPp0QVSUskjt_tKUPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.022 [XNIO-1 task-1] 2Z8WFTMZSyq_v-UWeKx_gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.022 [XNIO-1 task-1] 2Z8WFTMZSyq_v-UWeKx_gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.022 [XNIO-1 task-1] 2Z8WFTMZSyq_v-UWeKx_gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.023 [XNIO-1 task-1] 2Z8WFTMZSyq_v-UWeKx_gw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.035 [XNIO-1 task-1] U2m1D9M5Q52CXldfPMvBJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.035 [XNIO-1 task-1] U2m1D9M5Q52CXldfPMvBJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.036 [XNIO-1 task-1] U2m1D9M5Q52CXldfPMvBJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.051 [XNIO-1 task-1] -Z7xsbgMT0OpuxEGBrhswg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6b8ff72b, base path is set to: null +07:00:46.052 [XNIO-1 task-1] -Z7xsbgMT0OpuxEGBrhswg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.052 [XNIO-1 task-1] -Z7xsbgMT0OpuxEGBrhswg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.052 [XNIO-1 task-1] -Z7xsbgMT0OpuxEGBrhswg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6b8ff72b, base path is set to: null +07:00:46.052 [XNIO-1 task-1] -Z7xsbgMT0OpuxEGBrhswg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b8ff72b", "6b8ff72b", userId) +07:00:46.069 [XNIO-1 task-1] Vn6eKQyITZCJVwDGeRTNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.069 [XNIO-1 task-1] Vn6eKQyITZCJVwDGeRTNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.069 [XNIO-1 task-1] Vn6eKQyITZCJVwDGeRTNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.069 [XNIO-1 task-1] Vn6eKQyITZCJVwDGeRTNAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.084 [XNIO-1 task-1] bgDMSvj-SC-B8j4nSR5ZPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/294f40bd +07:00:46.084 [XNIO-1 task-1] bgDMSvj-SC-B8j4nSR5ZPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.084 [XNIO-1 task-1] bgDMSvj-SC-B8j4nSR5ZPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.084 [XNIO-1 task-1] bgDMSvj-SC-B8j4nSR5ZPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/294f40bd +07:00:46.107 [XNIO-1 task-1] beiwDimFSDyJvkAbEqWHzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.107 [XNIO-1 task-1] beiwDimFSDyJvkAbEqWHzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.107 [XNIO-1 task-1] beiwDimFSDyJvkAbEqWHzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.122 [XNIO-1 task-1] pqRicdH-Qlug9TTzO5qiQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.122 [XNIO-1 task-1] pqRicdH-Qlug9TTzO5qiQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.122 [XNIO-1 task-1] pqRicdH-Qlug9TTzO5qiQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.127 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8387fea9-a56e-4a47-85c1-0ad45335c4e4 +07:00:46.142 [XNIO-1 task-1] cGOVCDPxQTiEW8zIX-4A6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2a0471c6, base path is set to: null +07:00:46.142 [XNIO-1 task-1] cGOVCDPxQTiEW8zIX-4A6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.142 [XNIO-1 task-1] cGOVCDPxQTiEW8zIX-4A6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.142 [XNIO-1 task-1] cGOVCDPxQTiEW8zIX-4A6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2a0471c6, base path is set to: null +07:00:46.143 [XNIO-1 task-1] cGOVCDPxQTiEW8zIX-4A6A DEBUG com.networknt.schema.TypeValidator debug - validate( "2a0471c6", "2a0471c6", userId) +07:00:46.150 [XNIO-1 task-1] GQjCPIQ_SfCAQLKqaORCAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.150 [XNIO-1 task-1] GQjCPIQ_SfCAQLKqaORCAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.151 [XNIO-1 task-1] GQjCPIQ_SfCAQLKqaORCAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.170 [XNIO-1 task-1] 4nvi8HwPS86c-7SNG1xN4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a0471c6 +07:00:46.170 [XNIO-1 task-1] 4nvi8HwPS86c-7SNG1xN4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.170 [XNIO-1 task-1] 4nvi8HwPS86c-7SNG1xN4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.170 [XNIO-1 task-1] 4nvi8HwPS86c-7SNG1xN4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a0471c6 +07:00:46.184 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:46.184 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.184 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.184 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:46.184 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:46.185 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd70054", "4cd70054", userId) +07:00:46.185 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cac17ecc-e86a-43aa-9fdf-622bc3fb4cb2","newPassword":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPasswordConfirm":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd"}, {"password":"cac17ecc-e86a-43aa-9fdf-622bc3fb4cb2","newPassword":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPasswordConfirm":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd"}, requestBody) +07:00:46.185 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG com.networknt.schema.TypeValidator debug - validate( "afcdfaf9-ff25-4a97-a39a-4af3c9f774fd", {"password":"cac17ecc-e86a-43aa-9fdf-622bc3fb4cb2","newPassword":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPasswordConfirm":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd"}, requestBody.newPasswordConfirm) +07:00:46.185 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG com.networknt.schema.TypeValidator debug - validate( "cac17ecc-e86a-43aa-9fdf-622bc3fb4cb2", {"password":"cac17ecc-e86a-43aa-9fdf-622bc3fb4cb2","newPassword":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPasswordConfirm":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd"}, requestBody.password) +07:00:46.185 [XNIO-1 task-1] 8iuFjQ20TZWfdQEuM2Y_9A DEBUG com.networknt.schema.TypeValidator debug - validate( "afcdfaf9-ff25-4a97-a39a-4af3c9f774fd", {"password":"cac17ecc-e86a-43aa-9fdf-622bc3fb4cb2","newPassword":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPasswordConfirm":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd"}, requestBody.newPassword) +07:00:46.212 [XNIO-1 task-1] muhZ118lR4a-WlXMswFJnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.212 [XNIO-1 task-1] muhZ118lR4a-WlXMswFJnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.212 [XNIO-1 task-1] muhZ118lR4a-WlXMswFJnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.213 [XNIO-1 task-1] muhZ118lR4a-WlXMswFJnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.216 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c3d68072 +07:00:46.240 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6e42fd3, base path is set to: null +07:00:46.240 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.240 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.240 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:46.240 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6e42fd3, base path is set to: null +07:00:46.241 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e42fd3", "f6e42fd3", userId) +07:00:46.241 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"803a4e19-a364-4271-a0dc-610d32585487","newPassword":"8ad25d2a-d8aa-41c1-b188-542420cd1514","newPasswordConfirm":"8ad25d2a-d8aa-41c1-b188-542420cd1514"}, {"password":"803a4e19-a364-4271-a0dc-610d32585487","newPassword":"8ad25d2a-d8aa-41c1-b188-542420cd1514","newPasswordConfirm":"8ad25d2a-d8aa-41c1-b188-542420cd1514"}, requestBody) +07:00:46.241 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG com.networknt.schema.TypeValidator debug - validate( "8ad25d2a-d8aa-41c1-b188-542420cd1514", {"password":"803a4e19-a364-4271-a0dc-610d32585487","newPassword":"8ad25d2a-d8aa-41c1-b188-542420cd1514","newPasswordConfirm":"8ad25d2a-d8aa-41c1-b188-542420cd1514"}, requestBody.newPasswordConfirm) +07:00:46.241 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG com.networknt.schema.TypeValidator debug - validate( "803a4e19-a364-4271-a0dc-610d32585487", {"password":"803a4e19-a364-4271-a0dc-610d32585487","newPassword":"8ad25d2a-d8aa-41c1-b188-542420cd1514","newPasswordConfirm":"8ad25d2a-d8aa-41c1-b188-542420cd1514"}, requestBody.password) +07:00:46.241 [XNIO-1 task-1] uWeZCQabQtux76LhE5SOFA DEBUG com.networknt.schema.TypeValidator debug - validate( "8ad25d2a-d8aa-41c1-b188-542420cd1514", {"password":"803a4e19-a364-4271-a0dc-610d32585487","newPassword":"8ad25d2a-d8aa-41c1-b188-542420cd1514","newPasswordConfirm":"8ad25d2a-d8aa-41c1-b188-542420cd1514"}, requestBody.newPassword) +07:00:46.252 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6e42fd3 +07:00:46.265 [XNIO-1 task-1] cLi9FY7rS9u22Slj5q2KJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.265 [XNIO-1 task-1] cLi9FY7rS9u22Slj5q2KJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.265 [XNIO-1 task-1] cLi9FY7rS9u22Slj5q2KJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.266 [XNIO-1 task-1] cLi9FY7rS9u22Slj5q2KJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.266 [XNIO-1 task-1] cLi9FY7rS9u22Slj5q2KJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2ccbac5", "e2ccbac5", userId) +07:00:46.269 [XNIO-1 task-1] WYM01EOUSaGXkE_BBdmRsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.269 [XNIO-1 task-1] WYM01EOUSaGXkE_BBdmRsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.270 [XNIO-1 task-1] WYM01EOUSaGXkE_BBdmRsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.270 [XNIO-1 task-1] WYM01EOUSaGXkE_BBdmRsA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.281 [XNIO-1 task-1] daNRea9JRD6JqrNvNP_Tig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e42fd3 +07:00:46.281 [XNIO-1 task-1] daNRea9JRD6JqrNvNP_Tig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.282 [XNIO-1 task-1] daNRea9JRD6JqrNvNP_Tig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.282 [XNIO-1 task-1] daNRea9JRD6JqrNvNP_Tig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e42fd3 +07:00:46.288 [XNIO-1 task-1] iryhW7N5Taaw6dEfc1i0Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.288 [XNIO-1 task-1] iryhW7N5Taaw6dEfc1i0Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.292 [XNIO-1 task-1] iryhW7N5Taaw6dEfc1i0Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.292 [XNIO-1 task-1] iryhW7N5Taaw6dEfc1i0Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.292 [XNIO-1 task-1] iryhW7N5Taaw6dEfc1i0Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "e2ccbac5", "e2ccbac5", userId) +07:00:46.299 [XNIO-1 task-1] z_a_x8O9T1CrDsYyBObeiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e42fd3 +07:00:46.299 [XNIO-1 task-1] z_a_x8O9T1CrDsYyBObeiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.299 [XNIO-1 task-1] z_a_x8O9T1CrDsYyBObeiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.299 [XNIO-1 task-1] z_a_x8O9T1CrDsYyBObeiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e42fd3 +07:00:46.306 [XNIO-1 task-1] 0z9zP1VARh2yMuX-YxO7cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.306 [XNIO-1 task-1] 0z9zP1VARh2yMuX-YxO7cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.307 [XNIO-1 task-1] 0z9zP1VARh2yMuX-YxO7cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.340 [XNIO-1 task-1] z7CdIJ0gT8aCgyAwKdZ2Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.340 [XNIO-1 task-1] z7CdIJ0gT8aCgyAwKdZ2Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.340 [XNIO-1 task-1] z7CdIJ0gT8aCgyAwKdZ2Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.340 [XNIO-1 task-1] z7CdIJ0gT8aCgyAwKdZ2Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.341 [XNIO-1 task-1] z7CdIJ0gT8aCgyAwKdZ2Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "e2ccbac5", "e2ccbac5", userId) +07:00:46.344 [XNIO-1 task-1] y_WCxbmVQ1Wi9g2_fygMkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e42fd3 +07:00:46.344 [XNIO-1 task-1] y_WCxbmVQ1Wi9g2_fygMkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.344 [XNIO-1 task-1] y_WCxbmVQ1Wi9g2_fygMkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.344 [XNIO-1 task-1] y_WCxbmVQ1Wi9g2_fygMkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e42fd3 +07:00:46.347 [XNIO-1 task-1] zgVd-XTRRsG8M3RQvC8xog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.347 [XNIO-1 task-1] zgVd-XTRRsG8M3RQvC8xog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.348 [XNIO-1 task-1] zgVd-XTRRsG8M3RQvC8xog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.348 [XNIO-1 task-1] zgVd-XTRRsG8M3RQvC8xog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.361 [XNIO-1 task-1] gTvocRMDQeWmERogV4SAlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a1a263d2, base path is set to: null +07:00:46.362 [XNIO-1 task-1] gTvocRMDQeWmERogV4SAlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.362 [XNIO-1 task-1] gTvocRMDQeWmERogV4SAlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.362 [XNIO-1 task-1] gTvocRMDQeWmERogV4SAlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a1a263d2, base path is set to: null +07:00:46.363 [XNIO-1 task-1] gTvocRMDQeWmERogV4SAlg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1a263d2", "a1a263d2", userId) +07:00:46.368 [XNIO-1 task-1] -a3yAOJXQtiSuCgv-akQ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.368 [XNIO-1 task-1] -a3yAOJXQtiSuCgv-akQ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.368 [XNIO-1 task-1] -a3yAOJXQtiSuCgv-akQ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.369 [XNIO-1 task-1] -a3yAOJXQtiSuCgv-akQ8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.378 [XNIO-1 task-1] p9737iDjTDq3S3PllQo8FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.378 [XNIO-1 task-1] p9737iDjTDq3S3PllQo8FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.379 [XNIO-1 task-1] p9737iDjTDq3S3PllQo8FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.416 [XNIO-1 task-1] BeOAhRsiS5e7tsV_nan6GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.416 [XNIO-1 task-1] BeOAhRsiS5e7tsV_nan6GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.416 [XNIO-1 task-1] BeOAhRsiS5e7tsV_nan6GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.416 [XNIO-1 task-1] BeOAhRsiS5e7tsV_nan6GQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:46.425 [XNIO-1 task-1] 1WA8XG3wTVaZ1gIgvvFJRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.425 [XNIO-1 task-1] 1WA8XG3wTVaZ1gIgvvFJRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.425 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:73790e32 +07:00:46.425 [XNIO-1 task-1] 1WA8XG3wTVaZ1gIgvvFJRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.437 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8b536850 +07:00:46.439 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8b536850 +07:00:46.454 [XNIO-1 task-1] yjUVUOhaSaKFMD27GTqHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e2ccbac5 +07:00:46.454 [XNIO-1 task-1] yjUVUOhaSaKFMD27GTqHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.454 [XNIO-1 task-1] yjUVUOhaSaKFMD27GTqHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.455 [XNIO-1 task-1] yjUVUOhaSaKFMD27GTqHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e2ccbac5 +07:00:46.466 [XNIO-1 task-1] ZibEmA1kRaiY-Bqx3J9HQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e42fd3, base path is set to: null +07:00:46.466 [XNIO-1 task-1] ZibEmA1kRaiY-Bqx3J9HQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.466 [XNIO-1 task-1] ZibEmA1kRaiY-Bqx3J9HQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.467 [XNIO-1 task-1] ZibEmA1kRaiY-Bqx3J9HQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e42fd3, base path is set to: null +07:00:46.467 [XNIO-1 task-1] ZibEmA1kRaiY-Bqx3J9HQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e42fd3", "f6e42fd3", userId) +07:00:46.470 [XNIO-1 task-1] Un89krZ3RseVyrpjxPwc8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.471 [XNIO-1 task-1] Un89krZ3RseVyrpjxPwc8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.471 [XNIO-1 task-1] Un89krZ3RseVyrpjxPwc8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.484 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:086a34af +07:00:46.500 [XNIO-1 task-1] yjWTmBDhSjqS5rAXJryalA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/366df279, base path is set to: null +07:00:46.500 [XNIO-1 task-1] yjWTmBDhSjqS5rAXJryalA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.500 [XNIO-1 task-1] yjWTmBDhSjqS5rAXJryalA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.501 [XNIO-1 task-1] yjWTmBDhSjqS5rAXJryalA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/366df279, base path is set to: null +07:00:46.501 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e7531d17-4e14-45bb-999f-2a2818142d55 +07:00:46.501 [XNIO-1 task-1] yjWTmBDhSjqS5rAXJryalA DEBUG com.networknt.schema.TypeValidator debug - validate( "366df279", "366df279", userId) +07:00:46.513 [XNIO-1 task-1] WFeSi75DQbiBPoPZqECCRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/366df279 +07:00:46.513 [XNIO-1 task-1] WFeSi75DQbiBPoPZqECCRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.514 [XNIO-1 task-1] WFeSi75DQbiBPoPZqECCRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.514 [XNIO-1 task-1] WFeSi75DQbiBPoPZqECCRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/366df279 +07:00:46.529 [XNIO-1 task-1] 0lbMgQ-TTKGnaegLy-CgNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4cd70054, base path is set to: null +07:00:46.529 [XNIO-1 task-1] 0lbMgQ-TTKGnaegLy-CgNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.529 [XNIO-1 task-1] 0lbMgQ-TTKGnaegLy-CgNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.529 [XNIO-1 task-1] 0lbMgQ-TTKGnaegLy-CgNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4cd70054, base path is set to: null +07:00:46.530 [XNIO-1 task-1] 0lbMgQ-TTKGnaegLy-CgNg DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd70054", "4cd70054", userId) +07:00:46.540 [XNIO-1 task-1] zBpF8-23RPKeDfsUE9zI6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4cd70054 +07:00:46.540 [XNIO-1 task-1] zBpF8-23RPKeDfsUE9zI6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.540 [XNIO-1 task-1] zBpF8-23RPKeDfsUE9zI6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.541 [XNIO-1 task-1] zBpF8-23RPKeDfsUE9zI6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4cd70054 +07:00:46.545 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:46.546 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.546 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.546 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:46.546 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:46.546 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd70054", "4cd70054", userId) +07:00:46.547 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPassword":"2e56df00-0089-4102-8973-c525f5f0933d","newPasswordConfirm":"2e56df00-0089-4102-8973-c525f5f0933d"}, {"password":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPassword":"2e56df00-0089-4102-8973-c525f5f0933d","newPasswordConfirm":"2e56df00-0089-4102-8973-c525f5f0933d"}, requestBody) +07:00:46.547 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "2e56df00-0089-4102-8973-c525f5f0933d", {"password":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPassword":"2e56df00-0089-4102-8973-c525f5f0933d","newPasswordConfirm":"2e56df00-0089-4102-8973-c525f5f0933d"}, requestBody.newPasswordConfirm) +07:00:46.547 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "afcdfaf9-ff25-4a97-a39a-4af3c9f774fd", {"password":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPassword":"2e56df00-0089-4102-8973-c525f5f0933d","newPasswordConfirm":"2e56df00-0089-4102-8973-c525f5f0933d"}, requestBody.password) +07:00:46.547 [XNIO-1 task-1] cM4CnNLHQH-txxkqV2WSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "2e56df00-0089-4102-8973-c525f5f0933d", {"password":"afcdfaf9-ff25-4a97-a39a-4af3c9f774fd","newPassword":"2e56df00-0089-4102-8973-c525f5f0933d","newPasswordConfirm":"2e56df00-0089-4102-8973-c525f5f0933d"}, requestBody.newPassword) +07:00:46.576 [XNIO-1 task-1] G-IoOlsbRSeHMJVwEYZSxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.576 [XNIO-1 task-1] G-IoOlsbRSeHMJVwEYZSxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.576 [XNIO-1 task-1] G-IoOlsbRSeHMJVwEYZSxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.577 [XNIO-1 task-1] G-IoOlsbRSeHMJVwEYZSxw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:46.600 [XNIO-1 task-1] c-fFx09HT1mRrB5EV9G4ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.600 [XNIO-1 task-1] c-fFx09HT1mRrB5EV9G4ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.601 [XNIO-1 task-1] c-fFx09HT1mRrB5EV9G4ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.623 [XNIO-1 task-1] Zk0KCxuTRBuQ4OnlUeN2bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/086a34af, base path is set to: null +07:00:46.623 [XNIO-1 task-1] Zk0KCxuTRBuQ4OnlUeN2bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.623 [XNIO-1 task-1] Zk0KCxuTRBuQ4OnlUeN2bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.623 [XNIO-1 task-1] Zk0KCxuTRBuQ4OnlUeN2bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/086a34af, base path is set to: null +07:00:46.624 [XNIO-1 task-1] Zk0KCxuTRBuQ4OnlUeN2bA DEBUG com.networknt.schema.TypeValidator debug - validate( "086a34af", "086a34af", userId) +07:00:46.636 [XNIO-1 task-1] 4i1DuTb0SCmSovm6eFC_ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e42fd3, base path is set to: null +07:00:46.637 [XNIO-1 task-1] 4i1DuTb0SCmSovm6eFC_ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.637 [XNIO-1 task-1] 4i1DuTb0SCmSovm6eFC_ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.637 [XNIO-1 task-1] 4i1DuTb0SCmSovm6eFC_ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e42fd3, base path is set to: null +07:00:46.637 [XNIO-1 task-1] 4i1DuTb0SCmSovm6eFC_ig DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e42fd3", "f6e42fd3", userId) +07:00:46.655 [XNIO-1 task-1] 8vNI-cSHQViepMviLh8q3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.655 [XNIO-1 task-1] 8vNI-cSHQViepMviLh8q3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.656 [XNIO-1 task-1] 8vNI-cSHQViepMviLh8q3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.668 [XNIO-1 task-1] mZTTIPfSQpWYo8idLBX-Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.668 [XNIO-1 task-1] mZTTIPfSQpWYo8idLBX-Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.669 [XNIO-1 task-1] mZTTIPfSQpWYo8idLBX-Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.684 [XNIO-1 task-1] 4rfjtbVxRPevRWs-hM3xNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/edea0309, base path is set to: null +07:00:46.684 [XNIO-1 task-1] 4rfjtbVxRPevRWs-hM3xNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.684 [XNIO-1 task-1] 4rfjtbVxRPevRWs-hM3xNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.684 [XNIO-1 task-1] 4rfjtbVxRPevRWs-hM3xNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/edea0309, base path is set to: null +07:00:46.685 [XNIO-1 task-1] 4rfjtbVxRPevRWs-hM3xNA DEBUG com.networknt.schema.TypeValidator debug - validate( "edea0309", "edea0309", userId) +07:00:46.689 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.695 [XNIO-1 task-1] wb9ZcyqFQ0Wx-tcjcngs_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25649d27, base path is set to: null +07:00:46.695 [XNIO-1 task-1] wb9ZcyqFQ0Wx-tcjcngs_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.696 [XNIO-1 task-1] wb9ZcyqFQ0Wx-tcjcngs_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.696 [XNIO-1 task-1] wb9ZcyqFQ0Wx-tcjcngs_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25649d27, base path is set to: null +07:00:46.696 [XNIO-1 task-1] wb9ZcyqFQ0Wx-tcjcngs_w DEBUG com.networknt.schema.TypeValidator debug - validate( "25649d27", "25649d27", userId) +07:00:46.701 [XNIO-1 task-1] _FMGG87PTTmE14ahh13I4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.702 [XNIO-1 task-1] _FMGG87PTTmE14ahh13I4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.702 [XNIO-1 task-1] _FMGG87PTTmE14ahh13I4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.714 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6f30f85b +07:00:46.735 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4867bd15-38e1-4015-b857-1ecba5753038 +07:00:46.737 [XNIO-1 task-1] 51g5BIj0QOS1HZ51n5aGxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/25649d27 +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +07:00:46.737 [XNIO-1 task-1] 51g5BIj0QOS1HZ51n5aGxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:46.750 [XNIO-1 task-1] F9ZfjBrtQzCjWNik-juUsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bf061091, base path is set to: null +07:00:46.750 [XNIO-1 task-1] F9ZfjBrtQzCjWNik-juUsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.750 [XNIO-1 task-1] F9ZfjBrtQzCjWNik-juUsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.750 [XNIO-1 task-1] F9ZfjBrtQzCjWNik-juUsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bf061091, base path is set to: null +07:00:46.751 [XNIO-1 task-1] F9ZfjBrtQzCjWNik-juUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf061091", "bf061091", userId) +07:00:46.801 [XNIO-1 task-1] HKR0xSDDQgy-roNpLVvOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.801 [XNIO-1 task-1] HKR0xSDDQgy-roNpLVvOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.802 [XNIO-1 task-1] HKR0xSDDQgy-roNpLVvOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.816 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:46.816 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.816 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.816 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:46.817 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:46.819 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd70054", "4cd70054", userId) +07:00:46.819 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2e56df00-0089-4102-8973-c525f5f0933d","newPassword":"c7f7408c-a10f-42da-9767-290c8033452b","newPasswordConfirm":"c7f7408c-a10f-42da-9767-290c8033452b"}, {"password":"2e56df00-0089-4102-8973-c525f5f0933d","newPassword":"c7f7408c-a10f-42da-9767-290c8033452b","newPasswordConfirm":"c7f7408c-a10f-42da-9767-290c8033452b"}, requestBody) +07:00:46.820 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7f7408c-a10f-42da-9767-290c8033452b", {"password":"2e56df00-0089-4102-8973-c525f5f0933d","newPassword":"c7f7408c-a10f-42da-9767-290c8033452b","newPasswordConfirm":"c7f7408c-a10f-42da-9767-290c8033452b"}, requestBody.newPasswordConfirm) +07:00:46.820 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG com.networknt.schema.TypeValidator debug - validate( "2e56df00-0089-4102-8973-c525f5f0933d", {"password":"2e56df00-0089-4102-8973-c525f5f0933d","newPassword":"c7f7408c-a10f-42da-9767-290c8033452b","newPasswordConfirm":"c7f7408c-a10f-42da-9767-290c8033452b"}, requestBody.password) +07:00:46.820 [XNIO-1 task-1] xFnIvNdfTBKUXoQrFkPZWw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7f7408c-a10f-42da-9767-290c8033452b", {"password":"2e56df00-0089-4102-8973-c525f5f0933d","newPassword":"c7f7408c-a10f-42da-9767-290c8033452b","newPasswordConfirm":"c7f7408c-a10f-42da-9767-290c8033452b"}, requestBody.newPassword) +07:00:46.824 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:84a03f61-b567-4599-8588-ff9d4605240a +07:00:46.853 [XNIO-1 task-1] Zu0vhpAaR_KnEadL70jqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93115c9e +07:00:46.855 [XNIO-1 task-1] Zu0vhpAaR_KnEadL70jqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.855 [XNIO-1 task-1] Zu0vhpAaR_KnEadL70jqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.855 [XNIO-1 task-1] Zu0vhpAaR_KnEadL70jqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93115c9e +07:00:46.869 [XNIO-1 task-1] mMCGRi7IQFawBzGbZHYPIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a1a263d2, base path is set to: null +07:00:46.870 [XNIO-1 task-1] mMCGRi7IQFawBzGbZHYPIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.871 [XNIO-1 task-1] mMCGRi7IQFawBzGbZHYPIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.871 [XNIO-1 task-1] mMCGRi7IQFawBzGbZHYPIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a1a263d2, base path is set to: null +07:00:46.871 [XNIO-1 task-1] mMCGRi7IQFawBzGbZHYPIg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1a263d2", "a1a263d2", userId) +07:00:46.877 [XNIO-1 task-1] mt6obPoTTAiQVXM9I7YWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.877 [XNIO-1 task-1] mt6obPoTTAiQVXM9I7YWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.878 [XNIO-1 task-1] mt6obPoTTAiQVXM9I7YWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.901 [XNIO-1 task-1] hc764Ds1QQ6rpPps9h---g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a1a263d2 +07:00:46.901 [XNIO-1 task-1] hc764Ds1QQ6rpPps9h---g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.901 [XNIO-1 task-1] hc764Ds1QQ6rpPps9h---g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:46.901 [XNIO-1 task-1] hc764Ds1QQ6rpPps9h---g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a1a263d2 +07:00:46.910 [XNIO-1 task-1] Ot0FuP_rQUaiS3Xl1-hE5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.910 [XNIO-1 task-1] Ot0FuP_rQUaiS3Xl1-hE5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.910 [XNIO-1 task-1] Ot0FuP_rQUaiS3Xl1-hE5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.961 [XNIO-1 task-1] CcvG_xQhT1qOWRN5x3v8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.961 [XNIO-1 task-1] CcvG_xQhT1qOWRN5x3v8zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.962 [XNIO-1 task-1] CcvG_xQhT1qOWRN5x3v8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:46.982 [XNIO-1 task-1] Mq1jatMuSpuCDlhNLfOUdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.982 [XNIO-1 task-1] Mq1jatMuSpuCDlhNLfOUdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:46.982 [XNIO-1 task-1] Mq1jatMuSpuCDlhNLfOUdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:46.982 [XNIO-1 task-1] Mq1jatMuSpuCDlhNLfOUdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e2ccbac5, base path is set to: null +07:00:46.983 [XNIO-1 task-1] Mq1jatMuSpuCDlhNLfOUdA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2ccbac5", "e2ccbac5", userId) +07:00:46.987 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2f6e3188 +07:00:46.990 [XNIO-1 task-1] TIATImn-Rt6jDO1bRv2dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.990 [XNIO-1 task-1] TIATImn-Rt6jDO1bRv2dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:46.990 [XNIO-1 task-1] TIATImn-Rt6jDO1bRv2dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.003 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4f82904e-55cf-4d90-8709-b14a60895fa5 +07:00:47.010 [XNIO-1 task-1] 5KQhm60STT-jXFtgQT_eMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.011 [XNIO-1 task-1] 5KQhm60STT-jXFtgQT_eMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.011 [XNIO-1 task-1] 5KQhm60STT-jXFtgQT_eMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.025 [XNIO-1 task-1] 12FJMdr3QHqV_2U7UBQozw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.025 [XNIO-1 task-1] 12FJMdr3QHqV_2U7UBQozw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.026 [XNIO-1 task-1] 12FJMdr3QHqV_2U7UBQozw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.044 [XNIO-1 task-1] GDXkAYBQRPGOMIiYoLGfMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.045 [XNIO-1 task-1] GDXkAYBQRPGOMIiYoLGfMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.045 [XNIO-1 task-1] GDXkAYBQRPGOMIiYoLGfMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.045 [XNIO-1 task-1] GDXkAYBQRPGOMIiYoLGfMw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.056 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:47.056 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.057 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:47.057 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:47.057 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:47.058 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd70054", "4cd70054", userId) +07:00:47.058 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c7f7408c-a10f-42da-9767-290c8033452b","newPassword":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPasswordConfirm":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a"}, {"password":"c7f7408c-a10f-42da-9767-290c8033452b","newPassword":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPasswordConfirm":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a"}, requestBody) +07:00:47.058 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e8f9774-b7d2-4dfb-bff0-3d00c305282a", {"password":"c7f7408c-a10f-42da-9767-290c8033452b","newPassword":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPasswordConfirm":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a"}, requestBody.newPasswordConfirm) +07:00:47.058 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "c7f7408c-a10f-42da-9767-290c8033452b", {"password":"c7f7408c-a10f-42da-9767-290c8033452b","newPassword":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPasswordConfirm":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a"}, requestBody.password) +07:00:47.059 [XNIO-1 task-1] BZ_CXcO5R5iP8UL6mRy2Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e8f9774-b7d2-4dfb-bff0-3d00c305282a", {"password":"c7f7408c-a10f-42da-9767-290c8033452b","newPassword":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPasswordConfirm":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a"}, requestBody.newPassword) +07:00:47.084 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:47.085 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.085 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:47.085 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +07:00:47.086 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4cd70054, base path is set to: null +07:00:47.086 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd70054", "4cd70054", userId) +07:00:47.087 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPassword":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c","newPasswordConfirm":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c"}, {"password":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPassword":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c","newPasswordConfirm":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c"}, requestBody) +07:00:47.087 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1163ea31-10d8-4e49-a7ef-49987b9f9b9c", {"password":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPassword":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c","newPasswordConfirm":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c"}, requestBody.newPasswordConfirm) +07:00:47.087 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e8f9774-b7d2-4dfb-bff0-3d00c305282a", {"password":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPassword":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c","newPasswordConfirm":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c"}, requestBody.password) +07:00:47.087 [XNIO-1 task-1] X2OKXTW-RvKkaJg_KHsVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1163ea31-10d8-4e49-a7ef-49987b9f9b9c", {"password":"0e8f9774-b7d2-4dfb-bff0-3d00c305282a","newPassword":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c","newPasswordConfirm":"1163ea31-10d8-4e49-a7ef-49987b9f9b9c"}, requestBody.newPassword) +07:00:47.093 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5f0d8b91-4400-4427-99ee-dbd53c5f0af2 +07:00:47.094 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5f0d8b91-4400-4427-99ee-dbd53c5f0af2 +07:00:47.119 [XNIO-1 task-1] mhpsC9dmR2-uWfiDbzpcIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4cd70054, base path is set to: null +07:00:47.119 [XNIO-1 task-1] mhpsC9dmR2-uWfiDbzpcIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.119 [XNIO-1 task-1] mhpsC9dmR2-uWfiDbzpcIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +07:00:47.119 [XNIO-1 task-1] mhpsC9dmR2-uWfiDbzpcIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4cd70054, base path is set to: null +07:00:47.120 [XNIO-1 task-1] mhpsC9dmR2-uWfiDbzpcIg DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd70054", "4cd70054", userId) +07:00:47.125 [XNIO-1 task-1] sTguoZ26Q222mvvYwMOSYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f30f85b +07:00:47.125 [XNIO-1 task-1] sTguoZ26Q222mvvYwMOSYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.125 [XNIO-1 task-1] sTguoZ26Q222mvvYwMOSYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +07:00:47.125 [XNIO-1 task-1] sTguoZ26Q222mvvYwMOSYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f30f85b +07:00:47.130 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5f0d8b91-4400-4427-99ee-dbd53c5f0af2 +07:00:47.130 [XNIO-1 task-1] jyXtOXnlSt6goy69A3oxHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.130 [XNIO-1 task-1] jyXtOXnlSt6goy69A3oxHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.130 [XNIO-1 task-1] jyXtOXnlSt6goy69A3oxHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.131 [XNIO-1 task-1] jyXtOXnlSt6goy69A3oxHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +07:00:47.140 [XNIO-1 task-1] VBHLSFFjSEu8zMHQs6V11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.140 [XNIO-1 task-1] VBHLSFFjSEu8zMHQs6V11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.140 [XNIO-1 task-1] VBHLSFFjSEu8zMHQs6V11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.161 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:73790e32 +07:00:47.172 [XNIO-1 task-1] jAyZoJ3vQzyx8HrsYyxr_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.172 [XNIO-1 task-1] jAyZoJ3vQzyx8HrsYyxr_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.172 [XNIO-1 task-1] jAyZoJ3vQzyx8HrsYyxr_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.173 [XNIO-1 task-1] jAyZoJ3vQzyx8HrsYyxr_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.176 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1880c1ae-3333-4c37-ad0c-78954f005333 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +07:00:47.182 [XNIO-1 task-1] IOHY7YH8SGKn6oTFxT7VmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.182 [XNIO-1 task-1] IOHY7YH8SGKn6oTFxT7VmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +07:00:47.183 [XNIO-1 task-1] IOHY7YH8SGKn6oTFxT7VmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +07:00:47.183 [XNIO-1 task-1] IOHY7YH8SGKn6oTFxT7VmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +07:00:47.188 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1880c1ae-3333-4c37-ad0c-78954f005333 +07:00:47.191 [XNIO-1 task-1] FHF64R9rTZCwzyMB-Vw8kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +07:00:47.192 [XNIO-1 task-1] FHF64R9rTZCwzyMB-Vw8kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +07:00:47.192 [XNIO-1 task-1] FHF64R9rTZCwzyMB-Vw8kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +Jun 29, 2024 7:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +07:00:47.192 [XNIO-1 task-1] FHF64R9rTZCwzyMB-Vw8kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +07:00:47.200 [XNIO-1 task-1] HKtg7TVOTZiWL1-sCuTzmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/08c208e2, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..1002f32 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-client-1.log @@ -0,0 +1,6601 @@ + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:09.983 [XNIO-1 task-1] 3gzI8JTGTaqVTWsq66FwkA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:09.986 [XNIO-1 task-1] xwQSX1YKRkqebetdFJODBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:09.986 [XNIO-1 task-1] xwQSX1YKRkqebetdFJODBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:09.986 [XNIO-1 task-1] xwQSX1YKRkqebetdFJODBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:09.986 [XNIO-1 task-1] xwQSX1YKRkqebetdFJODBw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:09.998 [XNIO-1 task-1] pD4C6eSnSPaGVG5_dGSKaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab49d7c4-4222-41a8-8856-a85da576ecf7 +23:10:09.998 [XNIO-1 task-1] pD4C6eSnSPaGVG5_dGSKaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:09.998 [XNIO-1 task-1] pD4C6eSnSPaGVG5_dGSKaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:09.998 [XNIO-1 task-1] pD4C6eSnSPaGVG5_dGSKaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab49d7c4-4222-41a8-8856-a85da576ecf7 +23:10:10.003 [XNIO-1 task-1] t0A87NL3Q_K7PjMNjNojbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.003 [XNIO-1 task-1] t0A87NL3Q_K7PjMNjNojbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.003 [XNIO-1 task-1] t0A87NL3Q_K7PjMNjNojbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.035 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.035 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.035 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2bdb61ec-3a09-4868-bbe6-20b8aa5c","clientDesc":"69ce823d-0207-465f-ad2a-2a3acde93766","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.036 [XNIO-1 task-1] 8B5qcIvpT0CBUazhmy_aqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.042 [XNIO-1 task-1] 8eN6vjOxS66GdCfiB5Lzew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c7a2b593-9f4e-4b4b-808f-5fe4e8bf0782 +23:10:10.042 [XNIO-1 task-1] 8eN6vjOxS66GdCfiB5Lzew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.042 [XNIO-1 task-1] 8eN6vjOxS66GdCfiB5Lzew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.042 [XNIO-1 task-1] 8eN6vjOxS66GdCfiB5Lzew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c7a2b593-9f4e-4b4b-808f-5fe4e8bf0782 +23:10:10.043 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c7a2b593-9f4e-4b4b-808f-5fe4e8bf0782 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +23:10:10.065 [XNIO-1 task-1] 8eN6vjOxS66GdCfiB5Lzew DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/c7a2b593-9f4e-4b4b-808f-5fe4e8bf0782} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.072 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5eebee13-60f3-4d94-8939-3177c9aeec59 +23:10:10.072 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.072 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG com.networknt.schema.TypeValidator debug - validate( "c2d409bf-60fd-4718-83ef-9ae83b823b27", {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG com.networknt.schema.TypeValidator debug - validate( "cbd00bed-448b-45e0-a684-34783b1d", {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cbd00bed-448b-45e0-a684-34783b1d","clientDesc":"c2d409bf-60fd-4718-83ef-9ae83b823b27","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.073 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.074 [XNIO-1 task-1] jAUGoExlTpCxpdXGhcsJMg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.079 [XNIO-1 task-1] y-efTYGQTRS1dl_vfO0f7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.080 [XNIO-1 task-1] y-efTYGQTRS1dl_vfO0f7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.081 [XNIO-1 task-1] y-efTYGQTRS1dl_vfO0f7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.081 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5eebee13-60f3-4d94-8939-3177c9aeec59 +23:10:10.086 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:70c4b271-f004-4f73-b053-1386cc8e832d +23:10:10.096 [XNIO-1 task-1] mcDHSSQ-QhqQADnNXx2j4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.097 [XNIO-1 task-1] mcDHSSQ-QhqQADnNXx2j4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.098 [XNIO-1 task-1] mcDHSSQ-QhqQADnNXx2j4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.098 [XNIO-1 task-1] mcDHSSQ-QhqQADnNXx2j4g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:10.107 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5eebee13-60f3-4d94-8939-3177c9aeec59 +23:10:10.116 [XNIO-1 task-1] M2Er3GjrQ9W1PvwCN8rVog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e56b81ce-a10d-42ff-855f-3ed1df43e8b4 +23:10:10.116 [XNIO-1 task-1] M2Er3GjrQ9W1PvwCN8rVog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.116 [XNIO-1 task-1] M2Er3GjrQ9W1PvwCN8rVog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.116 [XNIO-1 task-1] M2Er3GjrQ9W1PvwCN8rVog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e56b81ce-a10d-42ff-855f-3ed1df43e8b4 +23:10:10.132 [XNIO-1 task-1] q2o7fwk9RL-u0E3Ha7OB3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a88844dc-0e7e-4c7a-a361-703e98cebe51, base path is set to: null +23:10:10.133 [XNIO-1 task-1] q2o7fwk9RL-u0E3Ha7OB3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.133 [XNIO-1 task-1] q2o7fwk9RL-u0E3Ha7OB3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.133 [XNIO-1 task-1] q2o7fwk9RL-u0E3Ha7OB3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a88844dc-0e7e-4c7a-a361-703e98cebe51, base path is set to: null +23:10:10.133 [XNIO-1 task-1] q2o7fwk9RL-u0E3Ha7OB3A DEBUG com.networknt.schema.TypeValidator debug - validate( "a88844dc-0e7e-4c7a-a361-703e98cebe51", "a88844dc-0e7e-4c7a-a361-703e98cebe51", clientId) +23:10:10.138 [XNIO-1 task-1] lDOV6-FjQ2SPh3iwR-J7rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.138 [XNIO-1 task-1] lDOV6-FjQ2SPh3iwR-J7rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.138 [XNIO-1 task-1] lDOV6-FjQ2SPh3iwR-J7rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.158 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.158 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.158 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.158 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG com.networknt.schema.TypeValidator debug - validate( "bbee9650-628e-427d-a268-96e52e4c46e7", {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG com.networknt.schema.TypeValidator debug - validate( "eef24705-3a67-449c-a010-35062d98", {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"eef24705-3a67-449c-a010-35062d98","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.159 [XNIO-1 task-1] 582TI5f5R-e-1f099i_gog DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.161 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.162 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f97c77d3-27fc-41af-99af-95e09744","clientDesc":"bbee9650-628e-427d-a268-96e52e4c46e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.163 [XNIO-1 task-1] BbBVxDD_Szmza_z4eTpM0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.166 [XNIO-1 task-1] dbXqTDUBQ2Oi-gAMbpp9sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.166 [XNIO-1 task-1] dbXqTDUBQ2Oi-gAMbpp9sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.166 [XNIO-1 task-1] dbXqTDUBQ2Oi-gAMbpp9sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.188 [XNIO-1 task-1] k3LoVuwOQqGp4h91p2ZFKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.188 [XNIO-1 task-1] k3LoVuwOQqGp4h91p2ZFKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.188 [XNIO-1 task-1] k3LoVuwOQqGp4h91p2ZFKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.188 [XNIO-1 task-1] k3LoVuwOQqGp4h91p2ZFKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:10.214 [XNIO-1 task-1] dvI8si8ISf-OhHfm1HvTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ba1fd19-5c51-4657-99b1-4f9f9aff1051 +23:10:10.215 [XNIO-1 task-1] dvI8si8ISf-OhHfm1HvTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.215 [XNIO-1 task-1] dvI8si8ISf-OhHfm1HvTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.215 [XNIO-1 task-1] dvI8si8ISf-OhHfm1HvTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ba1fd19-5c51-4657-99b1-4f9f9aff1051 +23:10:10.215 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:baa60bee +23:10:10.216 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:baa60bee +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:10.229 [XNIO-1 task-1] dvI8si8ISf-OhHfm1HvTLQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/2ba1fd19-5c51-4657-99b1-4f9f9aff1051} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.237 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.237 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.237 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.238 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3434fc9-be5c-46dd-8e26-c9ecc1d4","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.239 [XNIO-1 task-1] ehTw34LfRTiDrV06NgChBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.243 [XNIO-1 task-1] 7nySN5o3Q5GKVTD-8Z8mbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8cd1bee1-6dff-476a-807e-8953806551c7 +23:10:10.243 [XNIO-1 task-1] 7nySN5o3Q5GKVTD-8Z8mbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.243 [XNIO-1 task-1] 7nySN5o3Q5GKVTD-8Z8mbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.243 [XNIO-1 task-1] 7nySN5o3Q5GKVTD-8Z8mbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8cd1bee1-6dff-476a-807e-8953806551c7 +23:10:10.247 [XNIO-1 task-1] fCw8WNVjQT2-8W_4kSTiZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59588f29-3651-4c37-af79-3f5550b3c4a2, base path is set to: null +23:10:10.247 [XNIO-1 task-1] fCw8WNVjQT2-8W_4kSTiZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.247 [XNIO-1 task-1] fCw8WNVjQT2-8W_4kSTiZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.248 [XNIO-1 task-1] fCw8WNVjQT2-8W_4kSTiZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59588f29-3651-4c37-af79-3f5550b3c4a2, base path is set to: null +23:10:10.248 [XNIO-1 task-1] fCw8WNVjQT2-8W_4kSTiZA DEBUG com.networknt.schema.TypeValidator debug - validate( "59588f29-3651-4c37-af79-3f5550b3c4a2", "59588f29-3651-4c37-af79-3f5550b3c4a2", clientId) +23:10:10.255 [XNIO-1 task-1] 19LRs3deQp2mvE-gy8kybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b92e7a03-fde7-4f28-a986-efafef3773de +23:10:10.255 [XNIO-1 task-1] 19LRs3deQp2mvE-gy8kybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.255 [XNIO-1 task-1] 19LRs3deQp2mvE-gy8kybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.255 [XNIO-1 task-1] 19LRs3deQp2mvE-gy8kybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b92e7a03-fde7-4f28-a986-efafef3773de +23:10:10.280 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.281 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"935d14bc-cf5e-416f-bf0d-2dd72aa6","clientDesc":"34a4dd74-d387-471e-b93a-0d0de3364ae1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.282 [XNIO-1 task-1] -BwpjChIRs6j5vir6bKr8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.290 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.290 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.290 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG com.networknt.schema.TypeValidator debug - validate( "05010f09-0a32-4ac3-87d6-88e9196054d5", {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG com.networknt.schema.TypeValidator debug - validate( "147f75ca-6514-4092-979e-760f75ce", {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.291 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"147f75ca-6514-4092-979e-760f75ce","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.292 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.292 [XNIO-1 task-1] WElGcHx_TB2sVXHccHfttA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.300 [XNIO-1 task-1] u59tesAeTL2eZt8UtRlwEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.300 [XNIO-1 task-1] u59tesAeTL2eZt8UtRlwEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.300 [XNIO-1 task-1] u59tesAeTL2eZt8UtRlwEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.300 [XNIO-1 task-1] u59tesAeTL2eZt8UtRlwEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:10.310 [XNIO-1 task-1] 0tZTo5t3RdqJ8bDuzgNqVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/12d55d28-9dfb-4241-8499-8c61631c3e95, base path is set to: null +23:10:10.311 [XNIO-1 task-1] 0tZTo5t3RdqJ8bDuzgNqVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.311 [XNIO-1 task-1] 0tZTo5t3RdqJ8bDuzgNqVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.311 [XNIO-1 task-1] 0tZTo5t3RdqJ8bDuzgNqVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/12d55d28-9dfb-4241-8499-8c61631c3e95, base path is set to: null +23:10:10.311 [XNIO-1 task-1] 0tZTo5t3RdqJ8bDuzgNqVg DEBUG com.networknt.schema.TypeValidator debug - validate( "12d55d28-9dfb-4241-8499-8c61631c3e95", "12d55d28-9dfb-4241-8499-8c61631c3e95", clientId) +23:10:10.323 [XNIO-1 task-1] wFvMrfxCTKakgGd94lCOFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12d55d28-9dfb-4241-8499-8c61631c3e95 +23:10:10.323 [XNIO-1 task-1] wFvMrfxCTKakgGd94lCOFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.323 [XNIO-1 task-1] wFvMrfxCTKakgGd94lCOFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.323 [XNIO-1 task-1] wFvMrfxCTKakgGd94lCOFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12d55d28-9dfb-4241-8499-8c61631c3e95 +23:10:10.340 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.341 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"64db6c02-0fd9-4868-a4d2-ab71f5a9","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.342 [XNIO-1 task-1] gLHZi_yeS0ORG_dxbvcuHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.347 [XNIO-1 task-1] m5c99-X9TWichjEdY7AESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b695b28e-a4ff-40c3-a3b8-b52f5362a9db +23:10:10.348 [XNIO-1 task-1] m5c99-X9TWichjEdY7AESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.348 [XNIO-1 task-1] m5c99-X9TWichjEdY7AESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.348 [XNIO-1 task-1] m5c99-X9TWichjEdY7AESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b695b28e-a4ff-40c3-a3b8-b52f5362a9db +23:10:10.362 [XNIO-1 task-1] cFzj7HKMTZ6OONX2vidFEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.362 [XNIO-1 task-1] cFzj7HKMTZ6OONX2vidFEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.362 [XNIO-1 task-1] cFzj7HKMTZ6OONX2vidFEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.378 [XNIO-1 task-1] mGsmCQ--SEO-BnsIU8h-Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.378 [XNIO-1 task-1] mGsmCQ--SEO-BnsIU8h-Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.378 [XNIO-1 task-1] mGsmCQ--SEO-BnsIU8h-Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.378 [XNIO-1 task-1] mGsmCQ--SEO-BnsIU8h-Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:10.388 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5094f4c6-af59-47ec-87f3-6c9b3d042166 +23:10:10.392 [XNIO-1 task-1] Qa92Glt0Tkacy_AZnRIMRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/70c4b271-f004-4f73-b053-1386cc8e832d, base path is set to: null +23:10:10.392 [XNIO-1 task-1] Qa92Glt0Tkacy_AZnRIMRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.392 [XNIO-1 task-1] Qa92Glt0Tkacy_AZnRIMRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.392 [XNIO-1 task-1] Qa92Glt0Tkacy_AZnRIMRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/70c4b271-f004-4f73-b053-1386cc8e832d, base path is set to: null +23:10:10.393 [XNIO-1 task-1] Qa92Glt0Tkacy_AZnRIMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "70c4b271-f004-4f73-b053-1386cc8e832d", "70c4b271-f004-4f73-b053-1386cc8e832d", clientId) +23:10:10.404 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.405 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e732aee-6fa7-4ffd-9e83-32a6ce41","clientDesc":"a7dc9d4a-4c85-48b6-b8fe-6092574ef1a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.406 [XNIO-1 task-1] Y7img0b0RnGZxJWi4Q1PlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.412 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.412 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.412 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d", {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG com.networknt.schema.TypeValidator debug - validate( "c49d171f-a823-46ff-80d5-c2adf9c7", {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c49d171f-a823-46ff-80d5-c2adf9c7","clientDesc":"a3bfb2f8-5bd2-41e1-8e88-74f3bb14452d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.413 [XNIO-1 task-1] vf5Yi5reSW2uYCAvGDQEdw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.415 [XNIO-1 task-1] GR5a6JYHRZSOY2VcWOBt2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/083300e5-cda0-47e3-ab9c-c3bb6deeff37, base path is set to: null +23:10:10.416 [XNIO-1 task-1] GR5a6JYHRZSOY2VcWOBt2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.416 [XNIO-1 task-1] GR5a6JYHRZSOY2VcWOBt2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.416 [XNIO-1 task-1] GR5a6JYHRZSOY2VcWOBt2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/083300e5-cda0-47e3-ab9c-c3bb6deeff37, base path is set to: null +23:10:10.416 [XNIO-1 task-1] GR5a6JYHRZSOY2VcWOBt2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "083300e5-cda0-47e3-ab9c-c3bb6deeff37", "083300e5-cda0-47e3-ab9c-c3bb6deeff37", clientId) +23:10:10.419 [XNIO-1 task-1] d8kfjChlR7uVYpEbjmcAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.419 [XNIO-1 task-1] d8kfjChlR7uVYpEbjmcAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.420 [XNIO-1 task-1] d8kfjChlR7uVYpEbjmcAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.420 [XNIO-1 task-1] d8kfjChlR7uVYpEbjmcAIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:10.432 [XNIO-1 task-1] S3oufHAHQuK65YnU3cC9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.432 [XNIO-1 task-1] S3oufHAHQuK65YnU3cC9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.432 [XNIO-1 task-1] S3oufHAHQuK65YnU3cC9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.453 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.453 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.453 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7b4e284-37bd-479b-b38c-f928502f17f2", {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c301622-e298-4812-9063-90e35377", {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4c301622-e298-4812-9063-90e35377","clientDesc":"a7b4e284-37bd-479b-b38c-f928502f17f2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.454 [XNIO-1 task-1] BtESgh8OTR2tZR2v6wuFaw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.463 [XNIO-1 task-1] 2LurH9dwRfGBTnbClTSc5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.463 [XNIO-1 task-1] 2LurH9dwRfGBTnbClTSc5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.464 [XNIO-1 task-1] 2LurH9dwRfGBTnbClTSc5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.482 [XNIO-1 task-1] UZA9o1_YRLuBPcKlDk1vig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/af594342-dc3b-467e-a054-14a4d5c04509, base path is set to: null +23:10:10.482 [XNIO-1 task-1] UZA9o1_YRLuBPcKlDk1vig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.482 [XNIO-1 task-1] UZA9o1_YRLuBPcKlDk1vig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.482 [XNIO-1 task-1] UZA9o1_YRLuBPcKlDk1vig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/af594342-dc3b-467e-a054-14a4d5c04509, base path is set to: null +23:10:10.482 [XNIO-1 task-1] UZA9o1_YRLuBPcKlDk1vig DEBUG com.networknt.schema.TypeValidator debug - validate( "af594342-dc3b-467e-a054-14a4d5c04509", "af594342-dc3b-467e-a054-14a4d5c04509", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:10.490 [XNIO-1 task-1] UZA9o1_YRLuBPcKlDk1vig DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/af594342-dc3b-467e-a054-14a4d5c04509} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.496 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.499 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.499 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fd6edc3-7388-4053-a3e2-4452869b","clientDesc":"4eb19bee-35d4-465a-9649-f168349e04e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.500 [XNIO-1 task-1] qGJsl2pOT0KR-yiasUg_Cg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.509 [XNIO-1 task-1] IXY9WPwTSuWUWbx7c4PhkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.509 [XNIO-1 task-1] IXY9WPwTSuWUWbx7c4PhkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.509 [XNIO-1 task-1] IXY9WPwTSuWUWbx7c4PhkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.509 [XNIO-1 task-1] IXY9WPwTSuWUWbx7c4PhkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:10.512 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:48bc83b8 +23:10:10.521 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.521 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.521 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "ff52a929-4d39-47a5-8811-e1a922a134f1", {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "59a359ee-5f95-432a-88aa-949efbe2", {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"59a359ee-5f95-432a-88aa-949efbe2","clientDesc":"ff52a929-4d39-47a5-8811-e1a922a134f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.523 [XNIO-1 task-1] dZzK2P-SQiukPIPyKWcYYA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.531 [XNIO-1 task-1] GWtM6OGWQ1G660f284EErg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/23e79c41-324d-41d6-ac24-3c9c62c5388a, base path is set to: null +23:10:10.531 [XNIO-1 task-1] GWtM6OGWQ1G660f284EErg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.531 [XNIO-1 task-1] GWtM6OGWQ1G660f284EErg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.532 [XNIO-1 task-1] GWtM6OGWQ1G660f284EErg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/23e79c41-324d-41d6-ac24-3c9c62c5388a, base path is set to: null +23:10:10.532 [XNIO-1 task-1] GWtM6OGWQ1G660f284EErg DEBUG com.networknt.schema.TypeValidator debug - validate( "23e79c41-324d-41d6-ac24-3c9c62c5388a", "23e79c41-324d-41d6-ac24-3c9c62c5388a", clientId) +23:10:10.547 [XNIO-1 task-1] 3Io_zpwwTbutE89zweeZOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f04ce226-bfbc-49c5-8beb-404002928cef +23:10:10.547 [XNIO-1 task-1] 3Io_zpwwTbutE89zweeZOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.547 [XNIO-1 task-1] 3Io_zpwwTbutE89zweeZOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.547 [XNIO-1 task-1] 3Io_zpwwTbutE89zweeZOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f04ce226-bfbc-49c5-8beb-404002928cef +23:10:10.556 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.556 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.556 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.556 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"476d7ddc-c76e-4e31-9187-c2aa47aa","clientDesc":"59d6903a-726b-47b4-97e9-9a52e2d9a47a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.557 [XNIO-1 task-1] uzxC93AVR6mw2_IcESJHLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.559 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f24c486-ad67-4438-a63d-d62370e71b95 +23:10:10.561 [XNIO-1 task-1] 2Fto-6c9T6iIwzfLC3MI_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83759f89-26ca-45e3-b7fb-f4687f4f94aa +23:10:10.561 [XNIO-1 task-1] 2Fto-6c9T6iIwzfLC3MI_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.561 [XNIO-1 task-1] 2Fto-6c9T6iIwzfLC3MI_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.561 [XNIO-1 task-1] 2Fto-6c9T6iIwzfLC3MI_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83759f89-26ca-45e3-b7fb-f4687f4f94aa +23:10:10.562 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:83759f89-26ca-45e3-b7fb-f4687f4f94aa +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +23:10:10.573 [XNIO-1 task-1] 2Fto-6c9T6iIwzfLC3MI_Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/83759f89-26ca-45e3-b7fb-f4687f4f94aa} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.583 [XNIO-1 task-1] ulpH6sbVQR-HL4bSHg9HOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a039fc01-c015-4a6c-9f2f-0c99feed121e, base path is set to: null +23:10:10.583 [XNIO-1 task-1] ulpH6sbVQR-HL4bSHg9HOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.583 [XNIO-1 task-1] ulpH6sbVQR-HL4bSHg9HOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.584 [XNIO-1 task-1] ulpH6sbVQR-HL4bSHg9HOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a039fc01-c015-4a6c-9f2f-0c99feed121e, base path is set to: null +23:10:10.584 [XNIO-1 task-1] ulpH6sbVQR-HL4bSHg9HOg DEBUG com.networknt.schema.TypeValidator debug - validate( "a039fc01-c015-4a6c-9f2f-0c99feed121e", "a039fc01-c015-4a6c-9f2f-0c99feed121e", clientId) +23:10:10.590 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.590 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.590 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.590 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "22085f56-2142-4721-aedf-86140f75b355", {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "5dac1a46-5e3d-4c76-a245-fb87f958", {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5dac1a46-5e3d-4c76-a245-fb87f958","clientDesc":"22085f56-2142-4721-aedf-86140f75b355","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.591 [XNIO-1 task-1] M-EfsRj-QW-bT7MbIOe2AA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.594 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.595 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.596 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1aac87fb-7700-4f1b-8be2-fcbe2300","clientDesc":"964af370-db70-4cbf-9aba-a44d4efe600c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.596 [XNIO-1 task-1] AJU1yUS2RFqyGCEU4yDJDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.606 [XNIO-1 task-1] ClEe_67FQu6gaY7VhXNqWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.606 [XNIO-1 task-1] ClEe_67FQu6gaY7VhXNqWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.606 [XNIO-1 task-1] ClEe_67FQu6gaY7VhXNqWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.607 [XNIO-1 task-1] ClEe_67FQu6gaY7VhXNqWA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:10.622 [XNIO-1 task-1] BXFeV4P5SJGJES5FpwoqDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.622 [XNIO-1 task-1] BXFeV4P5SJGJES5FpwoqDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.622 [XNIO-1 task-1] BXFeV4P5SJGJES5FpwoqDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.622 [XNIO-1 task-1] BXFeV4P5SJGJES5FpwoqDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:10.638 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.638 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.638 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.638 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.638 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.638 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.638 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.639 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.639 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.639 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.639 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.639 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"febd87af-8913-4c44-bce8-89d40b19","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.639 [XNIO-1 task-1] DOdebwF_TqyWUi8FwdGilA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.645 [XNIO-1 task-1] FIQaoNcOTkOLqSbBt_XLeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8cd1bee1-6dff-476a-807e-8953806551c7 +23:10:10.645 [XNIO-1 task-1] FIQaoNcOTkOLqSbBt_XLeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.646 [XNIO-1 task-1] FIQaoNcOTkOLqSbBt_XLeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.646 [XNIO-1 task-1] FIQaoNcOTkOLqSbBt_XLeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8cd1bee1-6dff-476a-807e-8953806551c7 +23:10:10.652 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.652 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.652 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.652 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15e71590-cebe-4a24-91c5-18b803a8","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.653 [XNIO-1 task-1] kLlDykH-RKG7e_2LGAANdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.659 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.659 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.659 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "fb8dbf03-309d-4e27-b945-583028e63e86", {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "41a79f88-98bf-4970-8110-28fb2d0a", {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"41a79f88-98bf-4970-8110-28fb2d0a","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.660 [XNIO-1 task-1] XIvptV_kTd2FwrwVq-AtRA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:10.665 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.665 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.665 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad0391f2-a7fb-4618-b7dc-c2745549","clientDesc":"fb8dbf03-309d-4e27-b945-583028e63e86","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.666 [XNIO-1 task-1] SmV8mdLRRDa8g2yvmfWuGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.670 [XNIO-1 task-1] 0OoGC795QWybzlUoFOtzwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.671 [XNIO-1 task-1] 0OoGC795QWybzlUoFOtzwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.671 [XNIO-1 task-1] 0OoGC795QWybzlUoFOtzwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.671 [XNIO-1 task-1] 0OoGC795QWybzlUoFOtzwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:10.705 [XNIO-1 task-1] XtcJrJXnQcWosAM7H5kBBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.706 [XNIO-1 task-1] XtcJrJXnQcWosAM7H5kBBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.706 [XNIO-1 task-1] XtcJrJXnQcWosAM7H5kBBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.706 [XNIO-1 task-1] XtcJrJXnQcWosAM7H5kBBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:10.706 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60d21eb9 +23:10:10.729 [XNIO-1 task-1] 8nW5h3miRlW-N0bG9rFrvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.730 [XNIO-1 task-1] 8nW5h3miRlW-N0bG9rFrvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.730 [XNIO-1 task-1] 8nW5h3miRlW-N0bG9rFrvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.730 [XNIO-1 task-1] 8nW5h3miRlW-N0bG9rFrvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:10.742 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ce7a7410 +23:10:10.746 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ce7a7410 +23:10:10.748 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9595afb5 +23:10:10.778 [XNIO-1 task-1] sVfw0ZkiRtq27IkBoNmrAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a8bd2176-35b0-47cf-b0df-2a4abb8446ea +23:10:10.778 [XNIO-1 task-1] sVfw0ZkiRtq27IkBoNmrAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.778 [XNIO-1 task-1] sVfw0ZkiRtq27IkBoNmrAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.778 [XNIO-1 task-1] sVfw0ZkiRtq27IkBoNmrAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a8bd2176-35b0-47cf-b0df-2a4abb8446ea +23:10:10.781 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.781 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.781 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.781 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.781 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.781 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.781 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.782 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.782 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.782 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.782 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.782 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93315736-155f-4400-81ee-adffcd0d","clientDesc":"05010f09-0a32-4ac3-87d6-88e9196054d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.782 [XNIO-1 task-1] DBJWZDWaS86bsvngTmQRUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.790 [XNIO-1 task-1] N4VHMtEwSbeuWZd3FrB6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a8bd2176-35b0-47cf-b0df-2a4abb8446ea +23:10:10.790 [XNIO-1 task-1] N4VHMtEwSbeuWZd3FrB6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.790 [XNIO-1 task-1] N4VHMtEwSbeuWZd3FrB6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.790 [XNIO-1 task-1] N4VHMtEwSbeuWZd3FrB6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a8bd2176-35b0-47cf-b0df-2a4abb8446ea +23:10:10.797 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.797 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.797 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.797 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.797 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.797 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.798 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.798 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.798 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.798 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.798 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.798 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af50ce74-91b0-4d2b-a65b-dba76789","clientDesc":"8d95119a-fce8-452d-b937-edc32d260900","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.798 [XNIO-1 task-1] _zD5GQz9Rv6HTcZaTe4sBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.801 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ce7a7410 +23:10:10.802 [XNIO-1 task-1] bRo5XmRwQbyt3M0YQ9_Hnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.806 [XNIO-1 task-1] bRo5XmRwQbyt3M0YQ9_Hnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.806 [XNIO-1 task-1] bRo5XmRwQbyt3M0YQ9_Hnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.834 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.834 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.834 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be38cbe7-94a6-4269-ab93-e919626f","clientDesc":"cc0bb3d2-480e-446c-b344-ac57abdefadc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.835 [XNIO-1 task-1] BqO3OiK6REaleRruLwsq4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.841 [XNIO-1 task-1] n6sbuvBGTL-cWi6hLLHKZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.843 [XNIO-1 task-1] n6sbuvBGTL-cWi6hLLHKZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.843 [XNIO-1 task-1] n6sbuvBGTL-cWi6hLLHKZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.869 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1c70b649-8de4-4547-bb39-003e27532a84 +23:10:10.870 [XNIO-1 task-1] kIHuFjzvTaSQ6WD2-4pZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aeabcacc-c152-402f-a52b-bb48089a3fe9 +23:10:10.870 [XNIO-1 task-1] kIHuFjzvTaSQ6WD2-4pZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.870 [XNIO-1 task-1] kIHuFjzvTaSQ6WD2-4pZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.870 [XNIO-1 task-1] kIHuFjzvTaSQ6WD2-4pZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aeabcacc-c152-402f-a52b-bb48089a3fe9 +23:10:10.885 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:741b0b51 +23:10:10.886 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:741b0b51 +23:10:10.891 [XNIO-1 task-1] t1bp501yRo6rSqhAJ-Nm-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ebcdbc2d-6d7b-44b0-b722-947439eea5bc +23:10:10.891 [XNIO-1 task-1] t1bp501yRo6rSqhAJ-Nm-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.891 [XNIO-1 task-1] t1bp501yRo6rSqhAJ-Nm-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.891 [XNIO-1 task-1] t1bp501yRo6rSqhAJ-Nm-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ebcdbc2d-6d7b-44b0-b722-947439eea5bc +23:10:10.894 [XNIO-1 task-1] FuAvj1AmRzS2xv-kddz6hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.894 [XNIO-1 task-1] FuAvj1AmRzS2xv-kddz6hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.894 [XNIO-1 task-1] FuAvj1AmRzS2xv-kddz6hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.894 [XNIO-1 task-1] FuAvj1AmRzS2xv-kddz6hw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:10.908 [XNIO-1 task-1] 1t5fH6CxQ-aOBqCEMwtRAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.909 [XNIO-1 task-1] 1t5fH6CxQ-aOBqCEMwtRAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.909 [XNIO-1 task-1] 1t5fH6CxQ-aOBqCEMwtRAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.927 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:baa60bee +23:10:10.932 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.932 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.932 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:10.933 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77674de3-8898-464c-a2eb-373fca0c","clientDesc":"f7dc74a3-4dc9-4c46-9009-df6786ff7c0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:10.934 [XNIO-1 task-1] FTt0SHn3Ru681iFV0nRT3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:10.937 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ce7a7410 +23:10:10.938 [XNIO-1 task-1] 0L_GtyBzT8GhyUsOLkPAlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.938 [XNIO-1 task-1] 0L_GtyBzT8GhyUsOLkPAlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.938 [XNIO-1 task-1] 0L_GtyBzT8GhyUsOLkPAlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.966 [XNIO-1 task-1] XviCC8-2QgW__tOi9K5xVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.966 [XNIO-1 task-1] XviCC8-2QgW__tOi9K5xVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.966 [XNIO-1 task-1] XviCC8-2QgW__tOi9K5xVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.966 [XNIO-1 task-1] XviCC8-2QgW__tOi9K5xVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:10.979 [XNIO-1 task-1] Hz9FT9W0TMqTFZPg0YoQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88101d4f-daaf-4ac8-9efe-7471491db243 +23:10:10.979 [XNIO-1 task-1] Hz9FT9W0TMqTFZPg0YoQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:10.979 [XNIO-1 task-1] Hz9FT9W0TMqTFZPg0YoQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:10.980 [XNIO-1 task-1] Hz9FT9W0TMqTFZPg0YoQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88101d4f-daaf-4ac8-9efe-7471491db243 +23:10:10.998 [XNIO-1 task-1] t5M6w__ZQiSsJfsngePMzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8861bfcf-cfea-48cf-b246-44111dcb5a42, base path is set to: null +23:10:10.998 [XNIO-1 task-1] t5M6w__ZQiSsJfsngePMzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:10.998 [XNIO-1 task-1] t5M6w__ZQiSsJfsngePMzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:10.999 [XNIO-1 task-1] t5M6w__ZQiSsJfsngePMzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8861bfcf-cfea-48cf-b246-44111dcb5a42, base path is set to: null +23:10:10.999 [XNIO-1 task-1] t5M6w__ZQiSsJfsngePMzA DEBUG com.networknt.schema.TypeValidator debug - validate( "8861bfcf-cfea-48cf-b246-44111dcb5a42", "8861bfcf-cfea-48cf-b246-44111dcb5a42", clientId) +23:10:14.856 [XNIO-1 task-1] PGtsU6KOTBCJgxAvnzM1LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.856 [XNIO-1 task-1] PGtsU6KOTBCJgxAvnzM1LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.856 [XNIO-1 task-1] PGtsU6KOTBCJgxAvnzM1LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.901 [XNIO-1 task-1] qni0kcn8SUuE5gSUEBu6Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93d5b4f3-3c9f-420f-8191-f35151ed61af +23:10:14.901 [XNIO-1 task-1] qni0kcn8SUuE5gSUEBu6Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.901 [XNIO-1 task-1] qni0kcn8SUuE5gSUEBu6Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:14.901 [XNIO-1 task-1] qni0kcn8SUuE5gSUEBu6Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93d5b4f3-3c9f-420f-8191-f35151ed61af +23:10:14.904 [XNIO-1 task-1] si7EOYE6Q4qfOs8C78seuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.904 [XNIO-1 task-1] si7EOYE6Q4qfOs8C78seuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.904 [XNIO-1 task-1] si7EOYE6Q4qfOs8C78seuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.916 [XNIO-1 task-1] IaQCMkLRSUWX7wOiiQiN4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93d5b4f3-3c9f-420f-8191-f35151ed61af, base path is set to: null +23:10:14.916 [XNIO-1 task-1] IaQCMkLRSUWX7wOiiQiN4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.916 [XNIO-1 task-1] IaQCMkLRSUWX7wOiiQiN4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:14.916 [XNIO-1 task-1] IaQCMkLRSUWX7wOiiQiN4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93d5b4f3-3c9f-420f-8191-f35151ed61af, base path is set to: null +23:10:14.916 [XNIO-1 task-1] IaQCMkLRSUWX7wOiiQiN4w DEBUG com.networknt.schema.TypeValidator debug - validate( "93d5b4f3-3c9f-420f-8191-f35151ed61af", "93d5b4f3-3c9f-420f-8191-f35151ed61af", clientId) +23:10:14.923 [XNIO-1 task-1] DBD9b-NKQVS4ya87asKzVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1a00672-9eca-4bfe-b3a7-38a61ff8f429 +23:10:14.923 [XNIO-1 task-1] DBD9b-NKQVS4ya87asKzVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.923 [XNIO-1 task-1] DBD9b-NKQVS4ya87asKzVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:14.923 [XNIO-1 task-1] DBD9b-NKQVS4ya87asKzVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d1a00672-9eca-4bfe-b3a7-38a61ff8f429 +23:10:14.930 [XNIO-1 task-1] jQotRRgVTYKZFB4kwejr-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.930 [XNIO-1 task-1] jQotRRgVTYKZFB4kwejr-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.930 [XNIO-1 task-1] jQotRRgVTYKZFB4kwejr-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.941 [XNIO-1 task-1] oHjoyhr0Re67kWRCvoCHlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.942 [XNIO-1 task-1] oHjoyhr0Re67kWRCvoCHlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.942 [XNIO-1 task-1] oHjoyhr0Re67kWRCvoCHlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.942 [XNIO-1 task-1] oHjoyhr0Re67kWRCvoCHlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:14.947 [XNIO-1 task-1] CC_T-cAHS_aL0uox4HE27g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:14.947 [XNIO-1 task-1] CC_T-cAHS_aL0uox4HE27g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.947 [XNIO-1 task-1] CC_T-cAHS_aL0uox4HE27g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:14.947 [XNIO-1 task-1] CC_T-cAHS_aL0uox4HE27g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:14.947 [XNIO-1 task-1] CC_T-cAHS_aL0uox4HE27g DEBUG com.networknt.schema.TypeValidator debug - validate( "bba46c89-e9ff-4e1f-97be-8c27c88088fc", "bba46c89-e9ff-4e1f-97be-8c27c88088fc", clientId) +23:10:14.949 [XNIO-1 task-1] jvF18UtnTkOBdl3Z42PQmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.949 [XNIO-1 task-1] jvF18UtnTkOBdl3Z42PQmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.949 [XNIO-1 task-1] jvF18UtnTkOBdl3Z42PQmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.949 [XNIO-1 task-1] jvF18UtnTkOBdl3Z42PQmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d686cb-349c-446d-8cfd-cfde2c05436e", {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:14.954 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG com.networknt.schema.TypeValidator debug - validate( "373e5e97-ef22-4afe-91b9-5f271cf4", {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:14.955 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:14.955 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"373e5e97-ef22-4afe-91b9-5f271cf4","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:14.955 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:14.955 [XNIO-1 task-1] 9qmea0qLTb25bbBLx46SiA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:14.957 [XNIO-1 task-1] T18jkbRaSUKnOIPff2FcFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.957 [XNIO-1 task-1] T18jkbRaSUKnOIPff2FcFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.957 [XNIO-1 task-1] T18jkbRaSUKnOIPff2FcFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.957 [XNIO-1 task-1] T18jkbRaSUKnOIPff2FcFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:14.962 [XNIO-1 task-1] y-6PmIU8QfGQGk8vhQhymg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.962 [XNIO-1 task-1] y-6PmIU8QfGQGk8vhQhymg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.962 [XNIO-1 task-1] y-6PmIU8QfGQGk8vhQhymg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.974 [XNIO-1 task-1] Q8bj-YLlRcelOrtzyv9buQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.974 [XNIO-1 task-1] Q8bj-YLlRcelOrtzyv9buQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.974 [XNIO-1 task-1] Q8bj-YLlRcelOrtzyv9buQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.974 [XNIO-1 task-1] Q8bj-YLlRcelOrtzyv9buQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:14.980 [XNIO-1 task-1] J7vIfkXJRAiuaa-_mnNhHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.980 [XNIO-1 task-1] J7vIfkXJRAiuaa-_mnNhHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.980 [XNIO-1 task-1] J7vIfkXJRAiuaa-_mnNhHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:14.993 [XNIO-1 task-1] IHH8rgyhS1u4hVjX68t1cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/006d004a-3e17-4a3a-acee-2fc6c3f7bd5c, base path is set to: null +23:10:14.994 [XNIO-1 task-1] IHH8rgyhS1u4hVjX68t1cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:14.994 [XNIO-1 task-1] IHH8rgyhS1u4hVjX68t1cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:14.994 [XNIO-1 task-1] IHH8rgyhS1u4hVjX68t1cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/006d004a-3e17-4a3a-acee-2fc6c3f7bd5c, base path is set to: null +23:10:14.994 [XNIO-1 task-1] IHH8rgyhS1u4hVjX68t1cg DEBUG com.networknt.schema.TypeValidator debug - validate( "006d004a-3e17-4a3a-acee-2fc6c3f7bd5c", "006d004a-3e17-4a3a-acee-2fc6c3f7bd5c", clientId) +23:10:14.996 [XNIO-1 task-1] RumKR3xyRA2P_AMJsFOOKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.996 [XNIO-1 task-1] RumKR3xyRA2P_AMJsFOOKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.996 [XNIO-1 task-1] RumKR3xyRA2P_AMJsFOOKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:14.996 [XNIO-1 task-1] RumKR3xyRA2P_AMJsFOOKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.002 [XNIO-1 task-1] ceAR55WrTvikigrwMz1t9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.002 [XNIO-1 task-1] ceAR55WrTvikigrwMz1t9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.002 [XNIO-1 task-1] ceAR55WrTvikigrwMz1t9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.015 [XNIO-1 task-1] ESnnIBRUTp-YbgqP47iP0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.015 [XNIO-1 task-1] ESnnIBRUTp-YbgqP47iP0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.015 [XNIO-1 task-1] ESnnIBRUTp-YbgqP47iP0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.021 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5d9ec98e-272c-4573-8b41-3ecc0ad8c177 +23:10:15.033 [XNIO-1 task-1] boumP9qvQmWpnV49pskEuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.033 [XNIO-1 task-1] boumP9qvQmWpnV49pskEuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.033 [XNIO-1 task-1] boumP9qvQmWpnV49pskEuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.033 [XNIO-1 task-1] boumP9qvQmWpnV49pskEuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.038 [XNIO-1 task-1] Mnzt-fznS0-te53ydy7erA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.038 [XNIO-1 task-1] Mnzt-fznS0-te53ydy7erA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.038 [XNIO-1 task-1] Mnzt-fznS0-te53ydy7erA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.054 [XNIO-1 task-1] dQ51b8YmQH6pw7yTZKQS9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2c429b7e-ba2b-4413-b095-99ea94345409, base path is set to: null +23:10:15.055 [XNIO-1 task-1] dQ51b8YmQH6pw7yTZKQS9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.055 [XNIO-1 task-1] dQ51b8YmQH6pw7yTZKQS9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.055 [XNIO-1 task-1] dQ51b8YmQH6pw7yTZKQS9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2c429b7e-ba2b-4413-b095-99ea94345409, base path is set to: null +23:10:15.055 [XNIO-1 task-1] dQ51b8YmQH6pw7yTZKQS9g DEBUG com.networknt.schema.TypeValidator debug - validate( "2c429b7e-ba2b-4413-b095-99ea94345409", "2c429b7e-ba2b-4413-b095-99ea94345409", clientId) +23:10:15.062 [XNIO-1 task-1] oS8TUzecS5-GKvU2NVz6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.062 [XNIO-1 task-1] oS8TUzecS5-GKvU2NVz6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.062 [XNIO-1 task-1] oS8TUzecS5-GKvU2NVz6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.062 [XNIO-1 task-1] oS8TUzecS5-GKvU2NVz6Tg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.068 [XNIO-1 task-1] LP-nYQgpS4mFTH7ZuyRvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d9ec98e-272c-4573-8b41-3ecc0ad8c177 +23:10:15.068 [XNIO-1 task-1] LP-nYQgpS4mFTH7ZuyRvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.068 [XNIO-1 task-1] LP-nYQgpS4mFTH7ZuyRvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.068 [XNIO-1 task-1] LP-nYQgpS4mFTH7ZuyRvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d9ec98e-272c-4573-8b41-3ecc0ad8c177 +23:10:15.070 [XNIO-1 task-1] oCmr9VdxRMedBySyzZNwxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d9ec98e-272c-4573-8b41-3ecc0ad8c177, base path is set to: null +23:10:15.070 [XNIO-1 task-1] oCmr9VdxRMedBySyzZNwxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.070 [XNIO-1 task-1] oCmr9VdxRMedBySyzZNwxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.070 [XNIO-1 task-1] oCmr9VdxRMedBySyzZNwxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d9ec98e-272c-4573-8b41-3ecc0ad8c177, base path is set to: null +23:10:15.070 [XNIO-1 task-1] oCmr9VdxRMedBySyzZNwxg DEBUG com.networknt.schema.TypeValidator debug - validate( "5d9ec98e-272c-4573-8b41-3ecc0ad8c177", "5d9ec98e-272c-4573-8b41-3ecc0ad8c177", clientId) +23:10:15.072 [XNIO-1 task-1] vlP6Aj8gScmPrWe7vUSSUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.072 [XNIO-1 task-1] vlP6Aj8gScmPrWe7vUSSUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.072 [XNIO-1 task-1] vlP6Aj8gScmPrWe7vUSSUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.085 [XNIO-1 task-1] FwKRS9oZSVe7-z0kXdAbvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d9ec98e-272c-4573-8b41-3ecc0ad8c177 +23:10:15.085 [XNIO-1 task-1] FwKRS9oZSVe7-z0kXdAbvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.085 [XNIO-1 task-1] FwKRS9oZSVe7-z0kXdAbvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.085 [XNIO-1 task-1] FwKRS9oZSVe7-z0kXdAbvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d9ec98e-272c-4573-8b41-3ecc0ad8c177 +23:10:15.086 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5d9ec98e-272c-4573-8b41-3ecc0ad8c177 +23:10:15.093 [XNIO-1 task-1] IJcNXXEiSAaUdZz_AeKtsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.093 [XNIO-1 task-1] IJcNXXEiSAaUdZz_AeKtsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.093 [XNIO-1 task-1] IJcNXXEiSAaUdZz_AeKtsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.109 [XNIO-1 task-1] mLNs1UKDRwiVd7ISzkZs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbafb135-851b-47bb-80f4-423857d315f8 +23:10:15.109 [XNIO-1 task-1] mLNs1UKDRwiVd7ISzkZs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.109 [XNIO-1 task-1] mLNs1UKDRwiVd7ISzkZs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.109 [XNIO-1 task-1] mLNs1UKDRwiVd7ISzkZs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbafb135-851b-47bb-80f4-423857d315f8 +23:10:15.116 [XNIO-1 task-1] 6r-xz8W-Rt23SpGROiDR5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.116 [XNIO-1 task-1] 6r-xz8W-Rt23SpGROiDR5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.116 [XNIO-1 task-1] 6r-xz8W-Rt23SpGROiDR5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.117 [XNIO-1 task-1] 6r-xz8W-Rt23SpGROiDR5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.121 [XNIO-1 task-1] RwyI0kzxQqGfnUp2wtbRXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f00332bb-6e0c-472f-8fec-87ccda29edc7, base path is set to: null +23:10:15.121 [XNIO-1 task-1] RwyI0kzxQqGfnUp2wtbRXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.122 [XNIO-1 task-1] RwyI0kzxQqGfnUp2wtbRXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.122 [XNIO-1 task-1] RwyI0kzxQqGfnUp2wtbRXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f00332bb-6e0c-472f-8fec-87ccda29edc7, base path is set to: null +23:10:15.122 [XNIO-1 task-1] RwyI0kzxQqGfnUp2wtbRXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f00332bb-6e0c-472f-8fec-87ccda29edc7", "f00332bb-6e0c-472f-8fec-87ccda29edc7", clientId) +23:10:15.129 [XNIO-1 task-1] JwwEXhGiSJ-JA43VqaUTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9b723f3-3488-4639-aa10-651bd429e481 +23:10:15.129 [XNIO-1 task-1] JwwEXhGiSJ-JA43VqaUTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.129 [XNIO-1 task-1] JwwEXhGiSJ-JA43VqaUTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.129 [XNIO-1 task-1] JwwEXhGiSJ-JA43VqaUTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9b723f3-3488-4639-aa10-651bd429e481 +23:10:15.131 [XNIO-1 task-1] 0HVmIw47STeGu2uLpXIPPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d9b723f3-3488-4639-aa10-651bd429e481, base path is set to: null +23:10:15.131 [XNIO-1 task-1] 0HVmIw47STeGu2uLpXIPPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.131 [XNIO-1 task-1] 0HVmIw47STeGu2uLpXIPPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.132 [XNIO-1 task-1] 0HVmIw47STeGu2uLpXIPPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d9b723f3-3488-4639-aa10-651bd429e481, base path is set to: null +23:10:15.132 [XNIO-1 task-1] 0HVmIw47STeGu2uLpXIPPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d9b723f3-3488-4639-aa10-651bd429e481", "d9b723f3-3488-4639-aa10-651bd429e481", clientId) +23:10:15.139 [XNIO-1 task-1] 4P3XsgBGSSOt0C8Gfvk1bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.139 [XNIO-1 task-1] 4P3XsgBGSSOt0C8Gfvk1bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.140 [XNIO-1 task-1] 4P3XsgBGSSOt0C8Gfvk1bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.145 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f00868aa-2098-4c1c-a4fd-4dba4559b5de +23:10:15.153 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.153 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.154 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bdb95fd-2826-4fbd-a697-84ff1e92","clientDesc":"a0d686cb-349c-446d-8cfd-cfde2c05436e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.155 [XNIO-1 task-1] n3VRC0BNSvix6UxBvoOEgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.157 [XNIO-1 task-1] c_LAFeuxQW6qA1HPBZg7mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.157 [XNIO-1 task-1] c_LAFeuxQW6qA1HPBZg7mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.157 [XNIO-1 task-1] c_LAFeuxQW6qA1HPBZg7mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.172 [XNIO-1 task-1] y2HAiWkAS0yV0PYR0W0Zlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.172 [XNIO-1 task-1] y2HAiWkAS0yV0PYR0W0Zlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.173 [XNIO-1 task-1] y2HAiWkAS0yV0PYR0W0Zlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.173 [XNIO-1 task-1] y2HAiWkAS0yV0PYR0W0Zlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.179 [XNIO-1 task-1] WHqc1zyKQHSeB3kjW91oPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/006d004a-3e17-4a3a-acee-2fc6c3f7bd5c +23:10:15.179 [XNIO-1 task-1] WHqc1zyKQHSeB3kjW91oPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.179 [XNIO-1 task-1] WHqc1zyKQHSeB3kjW91oPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.179 [XNIO-1 task-1] WHqc1zyKQHSeB3kjW91oPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/006d004a-3e17-4a3a-acee-2fc6c3f7bd5c +23:10:15.193 [XNIO-1 task-1] SnnzRbNpTvmsiitMMXa_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3309166b-bb43-44b0-8b12-434a53da4cc6, base path is set to: null +23:10:15.193 [XNIO-1 task-1] SnnzRbNpTvmsiitMMXa_mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.194 [XNIO-1 task-1] SnnzRbNpTvmsiitMMXa_mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.194 [XNIO-1 task-1] SnnzRbNpTvmsiitMMXa_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3309166b-bb43-44b0-8b12-434a53da4cc6, base path is set to: null +23:10:15.194 [XNIO-1 task-1] SnnzRbNpTvmsiitMMXa_mg DEBUG com.networknt.schema.TypeValidator debug - validate( "3309166b-bb43-44b0-8b12-434a53da4cc6", "3309166b-bb43-44b0-8b12-434a53da4cc6", clientId) +23:10:15.196 [XNIO-1 task-1] LHj6Pxa_SOaY6S15IbWrew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.196 [XNIO-1 task-1] LHj6Pxa_SOaY6S15IbWrew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.197 [XNIO-1 task-1] LHj6Pxa_SOaY6S15IbWrew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.209 [XNIO-1 task-1] Etvxklr6Sk2ENLngAwiycw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3309166b-bb43-44b0-8b12-434a53da4cc6 +23:10:15.210 [XNIO-1 task-1] Etvxklr6Sk2ENLngAwiycw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.210 [XNIO-1 task-1] Etvxklr6Sk2ENLngAwiycw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.210 [XNIO-1 task-1] Etvxklr6Sk2ENLngAwiycw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3309166b-bb43-44b0-8b12-434a53da4cc6 +23:10:15.212 [XNIO-1 task-1] wjrS7BHvRh6PL3URiUBBSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.212 [XNIO-1 task-1] wjrS7BHvRh6PL3URiUBBSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.212 [XNIO-1 task-1] wjrS7BHvRh6PL3URiUBBSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.213 [XNIO-1 task-1] wjrS7BHvRh6PL3URiUBBSw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.218 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.218 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.218 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"029e9b35-d9db-46c2-8569-da9f87c2","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.219 [XNIO-1 task-1] i8h1hHqDRA2h_OYKhCONUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.221 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.221 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.221 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0de7b5d5-25f7-4556-b600-fae6aebf10eb", {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21a13094-f686-4d99-bc62-cdf0ef2e", {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"21a13094-f686-4d99-bc62-cdf0ef2e","clientDesc":"0de7b5d5-25f7-4556-b600-fae6aebf10eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.222 [XNIO-1 task-1] uqhG2uGaTgikC3caq-XzLQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.224 [XNIO-1 task-1] 04AJPQDRTs-mxL_BQAMcLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.224 [XNIO-1 task-1] 04AJPQDRTs-mxL_BQAMcLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.224 [XNIO-1 task-1] 04AJPQDRTs-mxL_BQAMcLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.225 [XNIO-1 task-1] 04AJPQDRTs-mxL_BQAMcLw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.230 [XNIO-1 task-1] R7ONsmMrR9CoDGAC8rST-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3309166b-bb43-44b0-8b12-434a53da4cc6, base path is set to: null +23:10:15.230 [XNIO-1 task-1] R7ONsmMrR9CoDGAC8rST-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.230 [XNIO-1 task-1] R7ONsmMrR9CoDGAC8rST-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.230 [XNIO-1 task-1] R7ONsmMrR9CoDGAC8rST-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3309166b-bb43-44b0-8b12-434a53da4cc6, base path is set to: null +23:10:15.230 [XNIO-1 task-1] R7ONsmMrR9CoDGAC8rST-g DEBUG com.networknt.schema.TypeValidator debug - validate( "3309166b-bb43-44b0-8b12-434a53da4cc6", "3309166b-bb43-44b0-8b12-434a53da4cc6", clientId) +23:10:15.236 [XNIO-1 task-1] m2w6HeiKQfK0jMD8czHdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f00868aa-2098-4c1c-a4fd-4dba4559b5de +23:10:15.236 [XNIO-1 task-1] m2w6HeiKQfK0jMD8czHdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.236 [XNIO-1 task-1] m2w6HeiKQfK0jMD8czHdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.236 [XNIO-1 task-1] m2w6HeiKQfK0jMD8czHdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f00868aa-2098-4c1c-a4fd-4dba4559b5de +23:10:15.238 [XNIO-1 task-1] 0ch6di2cTWSaObfOlz31JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a7b09880-d530-4ca7-8cd1-50028eefc325, base path is set to: null +23:10:15.238 [XNIO-1 task-1] 0ch6di2cTWSaObfOlz31JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.238 [XNIO-1 task-1] 0ch6di2cTWSaObfOlz31JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.238 [XNIO-1 task-1] 0ch6di2cTWSaObfOlz31JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a7b09880-d530-4ca7-8cd1-50028eefc325, base path is set to: null +23:10:15.239 [XNIO-1 task-1] 0ch6di2cTWSaObfOlz31JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a7b09880-d530-4ca7-8cd1-50028eefc325", "a7b09880-d530-4ca7-8cd1-50028eefc325", clientId) +23:10:15.251 [XNIO-1 task-1] yWn1pAJxQSGD1yAhfOA1Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.251 [XNIO-1 task-1] yWn1pAJxQSGD1yAhfOA1Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.251 [XNIO-1 task-1] yWn1pAJxQSGD1yAhfOA1Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.251 [XNIO-1 task-1] yWn1pAJxQSGD1yAhfOA1Jw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.257 [XNIO-1 task-1] puPUaioUQjaNTSWIR8I87A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.257 [XNIO-1 task-1] puPUaioUQjaNTSWIR8I87A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.257 [XNIO-1 task-1] puPUaioUQjaNTSWIR8I87A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.257 [XNIO-1 task-1] puPUaioUQjaNTSWIR8I87A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.259 [XNIO-1 task-1] mz9pcB79SfyT_0jCOD5cnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.259 [XNIO-1 task-1] mz9pcB79SfyT_0jCOD5cnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.259 [XNIO-1 task-1] mz9pcB79SfyT_0jCOD5cnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.272 [XNIO-1 task-1] vVkCseDQQPOuSzHy3kc9Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.272 [XNIO-1 task-1] vVkCseDQQPOuSzHy3kc9Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.272 [XNIO-1 task-1] vVkCseDQQPOuSzHy3kc9Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.285 [XNIO-1 task-1] aR96V6_aTjS0yaw-kQ8soA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:15.286 [XNIO-1 task-1] aR96V6_aTjS0yaw-kQ8soA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.286 [XNIO-1 task-1] aR96V6_aTjS0yaw-kQ8soA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.286 [XNIO-1 task-1] aR96V6_aTjS0yaw-kQ8soA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:15.286 [XNIO-1 task-1] aR96V6_aTjS0yaw-kQ8soA DEBUG com.networknt.schema.TypeValidator debug - validate( "bba46c89-e9ff-4e1f-97be-8c27c88088fc", "bba46c89-e9ff-4e1f-97be-8c27c88088fc", clientId) +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "baa2f781-e7e0-4a73-b517-7a3c724fa216", {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.288 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "1183da27-222b-47e6-9cc0-7d4fec27", {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.289 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.289 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1183da27-222b-47e6-9cc0-7d4fec27","clientDesc":"baa2f781-e7e0-4a73-b517-7a3c724fa216","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.289 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.289 [XNIO-1 task-1] cbd27qerRLyAlUOHqyo5Yg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.291 [XNIO-1 task-1] AL37onCjSp-MSIzNInrKkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.291 [XNIO-1 task-1] AL37onCjSp-MSIzNInrKkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.291 [XNIO-1 task-1] AL37onCjSp-MSIzNInrKkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.304 [XNIO-1 task-1] IrYDbRq8QsGKggq3r_IdUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.304 [XNIO-1 task-1] IrYDbRq8QsGKggq3r_IdUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.304 [XNIO-1 task-1] IrYDbRq8QsGKggq3r_IdUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.322 [XNIO-1 task-1] 5ZNU4c0ETQmy3d6BhgOpbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d61eea0-f767-4f16-8985-1b3cce1b2d91, base path is set to: null +23:10:15.322 [XNIO-1 task-1] 5ZNU4c0ETQmy3d6BhgOpbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.322 [XNIO-1 task-1] 5ZNU4c0ETQmy3d6BhgOpbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.322 [XNIO-1 task-1] 5ZNU4c0ETQmy3d6BhgOpbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d61eea0-f767-4f16-8985-1b3cce1b2d91, base path is set to: null +23:10:15.322 [XNIO-1 task-1] 5ZNU4c0ETQmy3d6BhgOpbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3d61eea0-f767-4f16-8985-1b3cce1b2d91", "3d61eea0-f767-4f16-8985-1b3cce1b2d91", clientId) +23:10:15.330 [XNIO-1 task-1] UuX4Lhb_Tgah5-lLKerw_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.330 [XNIO-1 task-1] UuX4Lhb_Tgah5-lLKerw_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.330 [XNIO-1 task-1] UuX4Lhb_Tgah5-lLKerw_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.343 [XNIO-1 task-1] UMyohYKsQLWSNo3UYWQPOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.343 [XNIO-1 task-1] UMyohYKsQLWSNo3UYWQPOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.343 [XNIO-1 task-1] UMyohYKsQLWSNo3UYWQPOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.357 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.357 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.357 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "39219341-1cc7-4ac3-81d7-64a989085d50", {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b0a0b8b0-b628-4b5c-9579-4972ff5b", {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b0a0b8b0-b628-4b5c-9579-4972ff5b","clientDesc":"39219341-1cc7-4ac3-81d7-64a989085d50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.358 [XNIO-1 task-1] J4hUBlYNQMeKD-Tbv0YY4Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.360 [XNIO-1 task-1] iX3pPm0lS_uboHP5fiKOqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/502589a6-0fb8-44e5-b6c7-3cb2ebd8d778, base path is set to: null +23:10:15.361 [XNIO-1 task-1] iX3pPm0lS_uboHP5fiKOqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.361 [XNIO-1 task-1] iX3pPm0lS_uboHP5fiKOqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.361 [XNIO-1 task-1] iX3pPm0lS_uboHP5fiKOqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/502589a6-0fb8-44e5-b6c7-3cb2ebd8d778, base path is set to: null +23:10:15.361 [XNIO-1 task-1] iX3pPm0lS_uboHP5fiKOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "502589a6-0fb8-44e5-b6c7-3cb2ebd8d778", "502589a6-0fb8-44e5-b6c7-3cb2ebd8d778", clientId) +23:10:15.367 [XNIO-1 task-1] CUITTKKXQ9eV063bHXWrKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.367 [XNIO-1 task-1] CUITTKKXQ9eV063bHXWrKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.367 [XNIO-1 task-1] CUITTKKXQ9eV063bHXWrKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.381 [XNIO-1 task-1] D_kfXbu8Sq-zOJMXzubCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/af99ffab-0c79-4349-8c59-a9c4e6ccd70b +23:10:15.381 [XNIO-1 task-1] D_kfXbu8Sq-zOJMXzubCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.381 [XNIO-1 task-1] D_kfXbu8Sq-zOJMXzubCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.381 [XNIO-1 task-1] D_kfXbu8Sq-zOJMXzubCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/af99ffab-0c79-4349-8c59-a9c4e6ccd70b +23:10:15.396 [XNIO-1 task-1] EKGD88OGTamlbd1T2o7lcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e7af9529-e127-430a-9afe-5decbfc95181, base path is set to: null +23:10:15.397 [XNIO-1 task-1] EKGD88OGTamlbd1T2o7lcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.397 [XNIO-1 task-1] EKGD88OGTamlbd1T2o7lcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.397 [XNIO-1 task-1] EKGD88OGTamlbd1T2o7lcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e7af9529-e127-430a-9afe-5decbfc95181, base path is set to: null +23:10:15.397 [XNIO-1 task-1] EKGD88OGTamlbd1T2o7lcg DEBUG com.networknt.schema.TypeValidator debug - validate( "e7af9529-e127-430a-9afe-5decbfc95181", "e7af9529-e127-430a-9afe-5decbfc95181", clientId) +23:10:15.399 [XNIO-1 task-1] 7WFOPTsQSJOAlTYiNJhoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.399 [XNIO-1 task-1] 7WFOPTsQSJOAlTYiNJhoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.399 [XNIO-1 task-1] 7WFOPTsQSJOAlTYiNJhoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.413 [XNIO-1 task-1] YrWZvlZhQpiLuoRzXziiEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e7af9529-e127-430a-9afe-5decbfc95181 +23:10:15.413 [XNIO-1 task-1] YrWZvlZhQpiLuoRzXziiEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.413 [XNIO-1 task-1] YrWZvlZhQpiLuoRzXziiEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.413 [XNIO-1 task-1] YrWZvlZhQpiLuoRzXziiEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e7af9529-e127-430a-9afe-5decbfc95181 +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.420 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.421 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fe155f1-fda5-4b6f-9f91-3408fca8","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.421 [XNIO-1 task-1] 0daTLjfzQMy6wh4nXk19fA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.423 [XNIO-1 task-1] TilLxP-uTFu4_yr9MpC-zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a28753a-192b-4757-9883-213e794e1e3d +23:10:15.423 [XNIO-1 task-1] TilLxP-uTFu4_yr9MpC-zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.423 [XNIO-1 task-1] TilLxP-uTFu4_yr9MpC-zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.423 [XNIO-1 task-1] TilLxP-uTFu4_yr9MpC-zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a28753a-192b-4757-9883-213e794e1e3d +23:10:15.425 [XNIO-1 task-1] YJnCq0SzQiKiSydLSdRQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.425 [XNIO-1 task-1] YJnCq0SzQiKiSydLSdRQZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.425 [XNIO-1 task-1] YJnCq0SzQiKiSydLSdRQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.438 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.438 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.438 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.438 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.438 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.438 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.438 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.439 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.439 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.439 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.439 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.439 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8afa8-57ca-49dd-b942-af62e2a4","clientDesc":"a15a4433-b2fb-470d-afba-81fca4ddc11a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.439 [XNIO-1 task-1] whokSBuzQGGuicTf3D49UQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.441 [XNIO-1 task-1] guoWIyX2RkOHF1RNHE8pVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.441 [XNIO-1 task-1] guoWIyX2RkOHF1RNHE8pVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.441 [XNIO-1 task-1] guoWIyX2RkOHF1RNHE8pVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.455 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.455 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.455 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.455 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.455 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.455 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5ee48b67-f2b7-4227-9364-dc6c90f8e183", {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.455 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.456 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.456 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "11fd4f25-90a0-4976-b637-5c35d57c", {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.456 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.456 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"11fd4f25-90a0-4976-b637-5c35d57c","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.456 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.456 [XNIO-1 task-1] CzzJ2ndJSRqJTMnbeldMzQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.458 [XNIO-1 task-1] FhZDOWQdQYeBOmO7xh_aYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.458 [XNIO-1 task-1] FhZDOWQdQYeBOmO7xh_aYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.458 [XNIO-1 task-1] FhZDOWQdQYeBOmO7xh_aYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.458 [XNIO-1 task-1] FhZDOWQdQYeBOmO7xh_aYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.463 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.464 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.465 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.465 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4cfe2dd1-ff4f-4f2f-af2e-4c48230d","clientDesc":"5ee48b67-f2b7-4227-9364-dc6c90f8e183","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.465 [XNIO-1 task-1] Wr1bygupSxy3HGs_8X3SIg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.467 [XNIO-1 task-1] vsOK7RMRSNGCMTFSOQSunQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2532bea8-6ba7-4a18-bdd7-e4724ef62803 +23:10:15.467 [XNIO-1 task-1] vsOK7RMRSNGCMTFSOQSunQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.467 [XNIO-1 task-1] vsOK7RMRSNGCMTFSOQSunQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.467 [XNIO-1 task-1] vsOK7RMRSNGCMTFSOQSunQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2532bea8-6ba7-4a18-bdd7-e4724ef62803 +23:10:15.475 [XNIO-1 task-1] vEkAoJe8TQmShCZU_Jtzdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.475 [XNIO-1 task-1] vEkAoJe8TQmShCZU_Jtzdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.475 [XNIO-1 task-1] vEkAoJe8TQmShCZU_Jtzdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.486 [XNIO-1 task-1] gtck4rclS-2kye5kSsiZKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0eff40e8-9ef0-4315-9a33-2028cc1fa440, base path is set to: null +23:10:15.486 [XNIO-1 task-1] gtck4rclS-2kye5kSsiZKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.486 [XNIO-1 task-1] gtck4rclS-2kye5kSsiZKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.486 [XNIO-1 task-1] gtck4rclS-2kye5kSsiZKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0eff40e8-9ef0-4315-9a33-2028cc1fa440, base path is set to: null +23:10:15.486 [XNIO-1 task-1] gtck4rclS-2kye5kSsiZKg DEBUG com.networknt.schema.TypeValidator debug - validate( "0eff40e8-9ef0-4315-9a33-2028cc1fa440", "0eff40e8-9ef0-4315-9a33-2028cc1fa440", clientId) +23:10:15.493 [XNIO-1 task-1] Xw-6oIwsQXS4st5uzC8_wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9c2613e-e831-4e65-a406-93e8f4a80e0b +23:10:15.493 [XNIO-1 task-1] Xw-6oIwsQXS4st5uzC8_wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.493 [XNIO-1 task-1] Xw-6oIwsQXS4st5uzC8_wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.493 [XNIO-1 task-1] Xw-6oIwsQXS4st5uzC8_wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9c2613e-e831-4e65-a406-93e8f4a80e0b +23:10:15.499 [XNIO-1 task-1] 0diY_n1dThiJx8L-LoGSPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.499 [XNIO-1 task-1] 0diY_n1dThiJx8L-LoGSPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.499 [XNIO-1 task-1] 0diY_n1dThiJx8L-LoGSPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.504 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.504 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.510 [XNIO-1 task-1] 0JSWJ0UxTrKqzL4KW7w5bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7dcceb56-0aa4-446e-9816-a1221f7cbb19 +23:10:15.510 [XNIO-1 task-1] 0JSWJ0UxTrKqzL4KW7w5bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.510 [XNIO-1 task-1] 0JSWJ0UxTrKqzL4KW7w5bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.510 [XNIO-1 task-1] 0JSWJ0UxTrKqzL4KW7w5bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7dcceb56-0aa4-446e-9816-a1221f7cbb19 +23:10:15.516 [XNIO-1 task-1] AeKlMgCNSE2f4WTDe9o9-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.516 [XNIO-1 task-1] AeKlMgCNSE2f4WTDe9o9-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.517 [XNIO-1 task-1] AeKlMgCNSE2f4WTDe9o9-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.517 [XNIO-1 task-1] AeKlMgCNSE2f4WTDe9o9-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.521 [XNIO-1 task-1] 0wxHjxOtQ8mvuetZQeC0WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723, base path is set to: null +23:10:15.521 [XNIO-1 task-1] 0wxHjxOtQ8mvuetZQeC0WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.521 [XNIO-1 task-1] 0wxHjxOtQ8mvuetZQeC0WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.521 [XNIO-1 task-1] 0wxHjxOtQ8mvuetZQeC0WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723, base path is set to: null +23:10:15.522 [XNIO-1 task-1] 0wxHjxOtQ8mvuetZQeC0WA DEBUG com.networknt.schema.TypeValidator debug - validate( "636e47e3-08dc-4f0b-93db-d65d55410723", "636e47e3-08dc-4f0b-93db-d65d55410723", clientId) +23:10:15.523 [XNIO-1 task-1] f6ocCwctRAK-aj4K6ipWcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.524 [XNIO-1 task-1] f6ocCwctRAK-aj4K6ipWcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.524 [XNIO-1 task-1] f6ocCwctRAK-aj4K6ipWcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.524 [XNIO-1 task-1] f6ocCwctRAK-aj4K6ipWcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.525 [XNIO-1 task-1] fS7tbcldQs2yJneLu_uW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.525 [XNIO-1 task-1] fS7tbcldQs2yJneLu_uW3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.525 [XNIO-1 task-1] fS7tbcldQs2yJneLu_uW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.525 [XNIO-1 task-1] fS7tbcldQs2yJneLu_uW3A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.530 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.530 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.530 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.530 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68c65000-844e-4dff-a2f3-c41831e0","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.531 [XNIO-1 task-1] kjVXVtCJRH2Wq621gabk_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.533 [XNIO-1 task-1] U6xz4PUgQ_ieJ-31mBy9Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.533 [XNIO-1 task-1] U6xz4PUgQ_ieJ-31mBy9Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.533 [XNIO-1 task-1] U6xz4PUgQ_ieJ-31mBy9Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.533 [XNIO-1 task-1] U6xz4PUgQ_ieJ-31mBy9Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.535 [XNIO-1 task-1] aFav0LvFR-S7pGIk3BNH8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6111895-176c-45b1-a5ed-265fb15a30a9, base path is set to: null +23:10:15.535 [XNIO-1 task-1] aFav0LvFR-S7pGIk3BNH8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.535 [XNIO-1 task-1] aFav0LvFR-S7pGIk3BNH8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.535 [XNIO-1 task-1] aFav0LvFR-S7pGIk3BNH8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6111895-176c-45b1-a5ed-265fb15a30a9, base path is set to: null +23:10:15.535 [XNIO-1 task-1] aFav0LvFR-S7pGIk3BNH8g DEBUG com.networknt.schema.TypeValidator debug - validate( "f6111895-176c-45b1-a5ed-265fb15a30a9", "f6111895-176c-45b1-a5ed-265fb15a30a9", clientId) +23:10:15.537 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.537 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.537 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.537 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.537 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG com.networknt.schema.TypeValidator debug - validate( "ee3ce717-f88f-4cd3-8630-66d6bdc95bb4", {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG com.networknt.schema.TypeValidator debug - validate( "4e7ce1e2-2c74-423b-bd48-dcb031be", {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4e7ce1e2-2c74-423b-bd48-dcb031be","clientDesc":"ee3ce717-f88f-4cd3-8630-66d6bdc95bb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.538 [XNIO-1 task-1] GOt75LvDTmW55vM7wTZtRw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.540 [XNIO-1 task-1] -FrzNlqMTRuvFrQfSVaCzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.540 [XNIO-1 task-1] -FrzNlqMTRuvFrQfSVaCzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.540 [XNIO-1 task-1] -FrzNlqMTRuvFrQfSVaCzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.541 [XNIO-1 task-1] -FrzNlqMTRuvFrQfSVaCzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.547 [XNIO-1 task-1] ShEh5a4eTXSzZap1paa3uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.548 [XNIO-1 task-1] ShEh5a4eTXSzZap1paa3uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.548 [XNIO-1 task-1] ShEh5a4eTXSzZap1paa3uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.564 [XNIO-1 task-1] _0PoIr1uSk247JI5u67f8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.564 [XNIO-1 task-1] _0PoIr1uSk247JI5u67f8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.564 [XNIO-1 task-1] _0PoIr1uSk247JI5u67f8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.565 [XNIO-1 task-1] _0PoIr1uSk247JI5u67f8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.572 [XNIO-1 task-1] 0XYL-o1-SJ2O_42UD7NItQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723, base path is set to: null +23:10:15.572 [XNIO-1 task-1] 0XYL-o1-SJ2O_42UD7NItQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.572 [XNIO-1 task-1] 0XYL-o1-SJ2O_42UD7NItQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.572 [XNIO-1 task-1] 0XYL-o1-SJ2O_42UD7NItQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723, base path is set to: null +23:10:15.572 [XNIO-1 task-1] 0XYL-o1-SJ2O_42UD7NItQ DEBUG com.networknt.schema.TypeValidator debug - validate( "636e47e3-08dc-4f0b-93db-d65d55410723", "636e47e3-08dc-4f0b-93db-d65d55410723", clientId) +23:10:15.574 [XNIO-1 task-1] Ja6h6OcnS9W5YWQYF_Wm1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.574 [XNIO-1 task-1] Ja6h6OcnS9W5YWQYF_Wm1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.574 [XNIO-1 task-1] Ja6h6OcnS9W5YWQYF_Wm1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.575 [XNIO-1 task-1] Ja6h6OcnS9W5YWQYF_Wm1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.581 [XNIO-1 task-1] 2SwzzVNaTI-pyT5SUE3VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6111895-176c-45b1-a5ed-265fb15a30a9 +23:10:15.582 [XNIO-1 task-1] 2SwzzVNaTI-pyT5SUE3VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.582 [XNIO-1 task-1] 2SwzzVNaTI-pyT5SUE3VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.582 [XNIO-1 task-1] 2SwzzVNaTI-pyT5SUE3VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6111895-176c-45b1-a5ed-265fb15a30a9 +23:10:15.584 [XNIO-1 task-1] nOW84iPFRneTiUYjKdujGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f00868aa-2098-4c1c-a4fd-4dba4559b5de, base path is set to: null +23:10:15.584 [XNIO-1 task-1] nOW84iPFRneTiUYjKdujGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.584 [XNIO-1 task-1] nOW84iPFRneTiUYjKdujGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.584 [XNIO-1 task-1] nOW84iPFRneTiUYjKdujGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f00868aa-2098-4c1c-a4fd-4dba4559b5de, base path is set to: null +23:10:15.584 [XNIO-1 task-1] nOW84iPFRneTiUYjKdujGg DEBUG com.networknt.schema.TypeValidator debug - validate( "f00868aa-2098-4c1c-a4fd-4dba4559b5de", "f00868aa-2098-4c1c-a4fd-4dba4559b5de", clientId) +23:10:15.590 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.590 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.590 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.591 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.592 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfba8945-fe27-4079-8903-fe8e3f8b","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.592 [XNIO-1 task-1] i6qvc8xoT1epkrV9OZqntg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.594 [XNIO-1 task-1] tgL4QTImRpeIv_CVYHf-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6111895-176c-45b1-a5ed-265fb15a30a9 +23:10:15.594 [XNIO-1 task-1] tgL4QTImRpeIv_CVYHf-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.594 [XNIO-1 task-1] tgL4QTImRpeIv_CVYHf-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.594 [XNIO-1 task-1] tgL4QTImRpeIv_CVYHf-ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6111895-176c-45b1-a5ed-265fb15a30a9 +23:10:15.603 [XNIO-1 task-1] 1viAfYkbSvO1WDSu2KViiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.603 [XNIO-1 task-1] 1viAfYkbSvO1WDSu2KViiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.603 [XNIO-1 task-1] 1viAfYkbSvO1WDSu2KViiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.610 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e258c537-67ba-43e4-94f8-26ab1a2558be +23:10:15.610 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e258c537-67ba-43e4-94f8-26ab1a2558be +23:10:15.618 [XNIO-1 task-1] K0Z_17BiSSKCXXPgU2uiBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.619 [XNIO-1 task-1] K0Z_17BiSSKCXXPgU2uiBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.619 [XNIO-1 task-1] K0Z_17BiSSKCXXPgU2uiBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.619 [XNIO-1 task-1] K0Z_17BiSSKCXXPgU2uiBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.621 [XNIO-1 task-1] o_SvA1VqSqqWNMbcARyCew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27bd7ecc-5836-46f8-ac62-0e1d880be950, base path is set to: null +23:10:15.621 [XNIO-1 task-1] o_SvA1VqSqqWNMbcARyCew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.621 [XNIO-1 task-1] o_SvA1VqSqqWNMbcARyCew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.621 [XNIO-1 task-1] o_SvA1VqSqqWNMbcARyCew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27bd7ecc-5836-46f8-ac62-0e1d880be950, base path is set to: null +23:10:15.621 [XNIO-1 task-1] o_SvA1VqSqqWNMbcARyCew DEBUG com.networknt.schema.TypeValidator debug - validate( "27bd7ecc-5836-46f8-ac62-0e1d880be950", "27bd7ecc-5836-46f8-ac62-0e1d880be950", clientId) +23:10:15.629 [XNIO-1 task-1] LrLc7J9oQ1SoA3p8GlFWtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.629 [XNIO-1 task-1] LrLc7J9oQ1SoA3p8GlFWtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.629 [XNIO-1 task-1] LrLc7J9oQ1SoA3p8GlFWtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.629 [XNIO-1 task-1] LrLc7J9oQ1SoA3p8GlFWtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.634 [XNIO-1 task-1] EUJSAXASTR63EjN8sCX1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.635 [XNIO-1 task-1] EUJSAXASTR63EjN8sCX1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.635 [XNIO-1 task-1] EUJSAXASTR63EjN8sCX1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.635 [XNIO-1 task-1] EUJSAXASTR63EjN8sCX1tQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.639 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.639 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.640 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.640 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.640 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.640 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG com.networknt.schema.TypeValidator debug - validate( "736acfbe-d957-490c-92b7-a7df45c9514a", {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.640 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.640 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.640 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG com.networknt.schema.TypeValidator debug - validate( "6c27628a-e7fc-475f-9fed-2067af3e", {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.641 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.641 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6c27628a-e7fc-475f-9fed-2067af3e","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.641 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.641 [XNIO-1 task-1] HQlLUVdaTWCNp1Hq9pjiOw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.643 [XNIO-1 task-1] 87j24l-OQ8iLrfn6u6JOug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.643 [XNIO-1 task-1] 87j24l-OQ8iLrfn6u6JOug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.643 [XNIO-1 task-1] 87j24l-OQ8iLrfn6u6JOug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.643 [XNIO-1 task-1] 87j24l-OQ8iLrfn6u6JOug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.649 [XNIO-1 task-1] z8sNx80qTz-msonFBmYbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.649 [XNIO-1 task-1] z8sNx80qTz-msonFBmYbjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.649 [XNIO-1 task-1] z8sNx80qTz-msonFBmYbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.649 [XNIO-1 task-1] z8sNx80qTz-msonFBmYbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.654 [XNIO-1 task-1] jYXZXHo5QN-tFhHLMr6gOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2b62f59-d0d3-4b21-910c-eccedd18d30b, base path is set to: null +23:10:15.654 [XNIO-1 task-1] jYXZXHo5QN-tFhHLMr6gOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.654 [XNIO-1 task-1] jYXZXHo5QN-tFhHLMr6gOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.655 [XNIO-1 task-1] jYXZXHo5QN-tFhHLMr6gOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2b62f59-d0d3-4b21-910c-eccedd18d30b, base path is set to: null +23:10:15.655 [XNIO-1 task-1] jYXZXHo5QN-tFhHLMr6gOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2b62f59-d0d3-4b21-910c-eccedd18d30b", "f2b62f59-d0d3-4b21-910c-eccedd18d30b", clientId) +23:10:15.661 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.661 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.661 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.661 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.661 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.661 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG com.networknt.schema.TypeValidator debug - validate( "736acfbe-d957-490c-92b7-a7df45c9514a", {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.661 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.662 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.662 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG com.networknt.schema.TypeValidator debug - validate( "cd9c0470-6a9c-499e-b7ed-10f0cf2f", {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.662 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.662 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cd9c0470-6a9c-499e-b7ed-10f0cf2f","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.662 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.662 [XNIO-1 task-1] rar3awoYQXi4vvgTEt__-A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.664 [XNIO-1 task-1] RytOkdOCSy6nk13Igp80qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.665 [XNIO-1 task-1] RytOkdOCSy6nk13Igp80qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.665 [XNIO-1 task-1] RytOkdOCSy6nk13Igp80qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.676 [XNIO-1 task-1] oJsqI_OXQiKREPtOwyfpsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.676 [XNIO-1 task-1] oJsqI_OXQiKREPtOwyfpsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.677 [XNIO-1 task-1] oJsqI_OXQiKREPtOwyfpsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.688 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.688 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.688 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.688 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.688 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.688 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.688 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.689 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.689 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.689 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.689 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.689 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9bf501c-33a1-4dd9-adb5-e5957d37","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.689 [XNIO-1 task-1] GWU6AT1qTFmW5vPP7AEguA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.691 [XNIO-1 task-1] uOGOmZKrQiONS5_SxyjTbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.691 [XNIO-1 task-1] uOGOmZKrQiONS5_SxyjTbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.691 [XNIO-1 task-1] uOGOmZKrQiONS5_SxyjTbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.691 [XNIO-1 task-1] uOGOmZKrQiONS5_SxyjTbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.700 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.700 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.700 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.700 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.700 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.700 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "44b1765c-a40d-4039-b168-5d2740d84bbe", {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.700 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.701 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.701 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "88cd8e8c-f960-4147-9f11-cc2a3ec7", {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.701 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.701 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"88cd8e8c-f960-4147-9f11-cc2a3ec7","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.701 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.701 [XNIO-1 task-1] RlQvgl-TQdCvV79gscC5Ng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.703 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.704 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.704 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.704 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eec3e3dd-fe85-4284-b234-a7aed983","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.704 [XNIO-1 task-1] PWlRhRrvT6idPs50hfYULw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.706 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.706 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.706 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.706 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.706 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.706 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "44b1765c-a40d-4039-b168-5d2740d84bbe", {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.706 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.707 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.707 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "96e536c0-fe41-49e1-b540-38deae48", {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.707 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.707 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"96e536c0-fe41-49e1-b540-38deae48","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.707 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.707 [XNIO-1 task-1] l2qhZu39RKW95DM-LGNVLA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.709 [XNIO-1 task-1] sd0mkac7QyOb-SNgkzlP0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.709 [XNIO-1 task-1] sd0mkac7QyOb-SNgkzlP0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.709 [XNIO-1 task-1] sd0mkac7QyOb-SNgkzlP0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.724 [XNIO-1 task-1] TgND1xe2SDC7kZJu-VZCKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a7aea688-b817-4e4d-a4e9-7b28f2366cec, base path is set to: null +23:10:15.724 [XNIO-1 task-1] TgND1xe2SDC7kZJu-VZCKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.724 [XNIO-1 task-1] TgND1xe2SDC7kZJu-VZCKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.724 [XNIO-1 task-1] TgND1xe2SDC7kZJu-VZCKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a7aea688-b817-4e4d-a4e9-7b28f2366cec, base path is set to: null +23:10:15.724 [XNIO-1 task-1] TgND1xe2SDC7kZJu-VZCKg DEBUG com.networknt.schema.TypeValidator debug - validate( "a7aea688-b817-4e4d-a4e9-7b28f2366cec", "a7aea688-b817-4e4d-a4e9-7b28f2366cec", clientId) +23:10:15.727 [XNIO-1 task-1] qP_C5LAlSamDanALEouxSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2f73a9f-9c8d-4f92-aa58-c0f0ece3b094 +23:10:15.728 [XNIO-1 task-1] qP_C5LAlSamDanALEouxSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.728 [XNIO-1 task-1] qP_C5LAlSamDanALEouxSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.728 [XNIO-1 task-1] qP_C5LAlSamDanALEouxSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2f73a9f-9c8d-4f92-aa58-c0f0ece3b094 +23:10:15.735 [XNIO-1 task-1] tNxk-9eLTqq3PTAbFJPCAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ff872697-fac4-423d-8d0a-3cfaaefd1bee, base path is set to: null +23:10:15.735 [XNIO-1 task-1] tNxk-9eLTqq3PTAbFJPCAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.735 [XNIO-1 task-1] tNxk-9eLTqq3PTAbFJPCAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.735 [XNIO-1 task-1] tNxk-9eLTqq3PTAbFJPCAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ff872697-fac4-423d-8d0a-3cfaaefd1bee, base path is set to: null +23:10:15.735 [XNIO-1 task-1] tNxk-9eLTqq3PTAbFJPCAw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff872697-fac4-423d-8d0a-3cfaaefd1bee", "ff872697-fac4-423d-8d0a-3cfaaefd1bee", clientId) +23:10:15.738 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.738 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.738 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG com.networknt.schema.TypeValidator debug - validate( "f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85", {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG com.networknt.schema.TypeValidator debug - validate( "98e360af-1a9c-4b4c-9b2b-578ea05e", {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"98e360af-1a9c-4b4c-9b2b-578ea05e","clientDesc":"f1b2fbdd-8d09-4927-8f6b-b9a5d78bda85","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.739 [XNIO-1 task-1] ltI6wl-sQ4y_z-4r2cW8bA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.741 [XNIO-1 task-1] zHirFigER9qpWlIdl9NWSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.742 [XNIO-1 task-1] zHirFigER9qpWlIdl9NWSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.742 [XNIO-1 task-1] zHirFigER9qpWlIdl9NWSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.753 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.754 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.754 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"affffcc7-3948-47aa-ba77-8e9ec239","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.754 [XNIO-1 task-1] 4DjDjuqVR9ey29Qna5ynHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.756 [XNIO-1 task-1] QODvJz8_SpOWNRw_VDQ1tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.756 [XNIO-1 task-1] QODvJz8_SpOWNRw_VDQ1tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.756 [XNIO-1 task-1] QODvJz8_SpOWNRw_VDQ1tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.756 [XNIO-1 task-1] QODvJz8_SpOWNRw_VDQ1tg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.761 [XNIO-1 task-1] Rw7UeB7TTWu9WyMAh5OC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6908329-6dea-4413-98dd-30fbc2ce837c +23:10:15.761 [XNIO-1 task-1] Rw7UeB7TTWu9WyMAh5OC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.761 [XNIO-1 task-1] Rw7UeB7TTWu9WyMAh5OC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.761 [XNIO-1 task-1] Rw7UeB7TTWu9WyMAh5OC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6908329-6dea-4413-98dd-30fbc2ce837c +23:10:15.763 [XNIO-1 task-1] RYO8IPcZSZKEAqPO0Oh3gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e6908329-6dea-4413-98dd-30fbc2ce837c, base path is set to: null +23:10:15.763 [XNIO-1 task-1] RYO8IPcZSZKEAqPO0Oh3gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.763 [XNIO-1 task-1] RYO8IPcZSZKEAqPO0Oh3gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.763 [XNIO-1 task-1] RYO8IPcZSZKEAqPO0Oh3gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e6908329-6dea-4413-98dd-30fbc2ce837c, base path is set to: null +23:10:15.763 [XNIO-1 task-1] RYO8IPcZSZKEAqPO0Oh3gg DEBUG com.networknt.schema.TypeValidator debug - validate( "e6908329-6dea-4413-98dd-30fbc2ce837c", "e6908329-6dea-4413-98dd-30fbc2ce837c", clientId) +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG com.networknt.schema.TypeValidator debug - validate( "1645d97c-bc69-4c0d-be45-ea3bc33608e0", {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.765 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.766 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG com.networknt.schema.TypeValidator debug - validate( "e425c9cd-73b7-4d4b-b364-313b8c21", {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.766 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.766 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e425c9cd-73b7-4d4b-b364-313b8c21","clientDesc":"1645d97c-bc69-4c0d-be45-ea3bc33608e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.766 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.766 [XNIO-1 task-1] 9Se1QcMFRCuU8I41piSScg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.768 [XNIO-1 task-1] mbJ-elp_S_2b8Sfyw2f-sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.768 [XNIO-1 task-1] mbJ-elp_S_2b8Sfyw2f-sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.768 [XNIO-1 task-1] mbJ-elp_S_2b8Sfyw2f-sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.773 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bf96d7e1-69a5-4e90-a6e0-04b0b1ed81c0 +23:10:15.773 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bf96d7e1-69a5-4e90-a6e0-04b0b1ed81c0 +23:10:15.780 [XNIO-1 task-1] ZFXrW8fWRc2Nht_6j1j6VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.780 [XNIO-1 task-1] ZFXrW8fWRc2Nht_6j1j6VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.780 [XNIO-1 task-1] ZFXrW8fWRc2Nht_6j1j6VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "989602b7-19bc-4ae4-a31c-419e80307379", {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.793 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6fa64290-2065-4b1d-a719-135db686", {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.794 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.794 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6fa64290-2065-4b1d-a719-135db686","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.794 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.794 [XNIO-1 task-1] zHo3QmOIRDyZS1Er-UhkrQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.796 [XNIO-1 task-1] M5eIryHwSei5GfVtc8SeqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.796 [XNIO-1 task-1] M5eIryHwSei5GfVtc8SeqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.796 [XNIO-1 task-1] M5eIryHwSei5GfVtc8SeqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.807 [XNIO-1 task-1] WE9ycKciSsGCAYGZjp7Aug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e6908329-6dea-4413-98dd-30fbc2ce837c, base path is set to: null +23:10:15.807 [XNIO-1 task-1] WE9ycKciSsGCAYGZjp7Aug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.807 [XNIO-1 task-1] WE9ycKciSsGCAYGZjp7Aug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.807 [XNIO-1 task-1] WE9ycKciSsGCAYGZjp7Aug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e6908329-6dea-4413-98dd-30fbc2ce837c, base path is set to: null +23:10:15.807 [XNIO-1 task-1] WE9ycKciSsGCAYGZjp7Aug DEBUG com.networknt.schema.TypeValidator debug - validate( "e6908329-6dea-4413-98dd-30fbc2ce837c", "e6908329-6dea-4413-98dd-30fbc2ce837c", clientId) +23:10:15.815 [XNIO-1 task-1] Fae43RgDR6S1Lz26JKoyrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9b8abc8-93fb-436a-8385-cb5a0e63b118 +23:10:15.815 [XNIO-1 task-1] Fae43RgDR6S1Lz26JKoyrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.816 [XNIO-1 task-1] Fae43RgDR6S1Lz26JKoyrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.816 [XNIO-1 task-1] Fae43RgDR6S1Lz26JKoyrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9b8abc8-93fb-436a-8385-cb5a0e63b118 +23:10:15.825 [XNIO-1 task-1] dxDX2aeFR6GQJyduPbg2mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.825 [XNIO-1 task-1] dxDX2aeFR6GQJyduPbg2mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.826 [XNIO-1 task-1] dxDX2aeFR6GQJyduPbg2mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.830 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:15.831 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:15.837 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.837 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.837 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.837 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.837 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.837 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "989602b7-19bc-4ae4-a31c-419e80307379", {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.838 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.838 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.838 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f90b2330-ab5e-4ad6-b828-6bd51415", {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.838 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.838 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f90b2330-ab5e-4ad6-b828-6bd51415","clientDesc":"989602b7-19bc-4ae4-a31c-419e80307379","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.838 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.838 [XNIO-1 task-1] 22jeOAPvQpKgquFrTQUBuQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.840 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.840 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.840 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"847d0cf9-0352-419a-82b4-f33129a8","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.841 [XNIO-1 task-1] KEYsAhLSR0qQqwgoKmG9eA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.846 [XNIO-1 task-1] we79f4adScG8gH8ZCJiPwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.846 [XNIO-1 task-1] we79f4adScG8gH8ZCJiPwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.846 [XNIO-1 task-1] we79f4adScG8gH8ZCJiPwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.846 [XNIO-1 task-1] we79f4adScG8gH8ZCJiPwA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.851 [XNIO-1 task-1] PH7gKuZZQ82KuCGwz9YVvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.851 [XNIO-1 task-1] PH7gKuZZQ82KuCGwz9YVvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.851 [XNIO-1 task-1] PH7gKuZZQ82KuCGwz9YVvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.851 [XNIO-1 task-1] PH7gKuZZQ82KuCGwz9YVvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.856 [XNIO-1 task-1] _fgpTXiYRbii6jtcZBUpzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e258c537-67ba-43e4-94f8-26ab1a2558be +23:10:15.856 [XNIO-1 task-1] _fgpTXiYRbii6jtcZBUpzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.857 [XNIO-1 task-1] _fgpTXiYRbii6jtcZBUpzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.857 [XNIO-1 task-1] _fgpTXiYRbii6jtcZBUpzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e258c537-67ba-43e4-94f8-26ab1a2558be +23:10:15.857 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e258c537-67ba-43e4-94f8-26ab1a2558be +23:10:15.863 [XNIO-1 task-1] VMzjyGJdSkaIWwq_wGL0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.863 [XNIO-1 task-1] VMzjyGJdSkaIWwq_wGL0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.863 [XNIO-1 task-1] VMzjyGJdSkaIWwq_wGL0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.863 [XNIO-1 task-1] VMzjyGJdSkaIWwq_wGL0YQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:15.868 [XNIO-1 task-1] HYuw-3czTsGwWInikxS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.868 [XNIO-1 task-1] HYuw-3czTsGwWInikxS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.868 [XNIO-1 task-1] HYuw-3czTsGwWInikxS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.868 [XNIO-1 task-1] HYuw-3czTsGwWInikxS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.868 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:636e47e3-08dc-4f0b-93db-d65d55410723 +23:10:15.874 [XNIO-1 task-1] fBY__OfkR-OwTdTwb-bK3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.874 [XNIO-1 task-1] fBY__OfkR-OwTdTwb-bK3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.874 [XNIO-1 task-1] fBY__OfkR-OwTdTwb-bK3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.874 [XNIO-1 task-1] fBY__OfkR-OwTdTwb-bK3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.878 [XNIO-1 task-1] 1FohrRdJTSSRAK08q-_NOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:15.878 [XNIO-1 task-1] 1FohrRdJTSSRAK08q-_NOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.878 [XNIO-1 task-1] 1FohrRdJTSSRAK08q-_NOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.878 [XNIO-1 task-1] 1FohrRdJTSSRAK08q-_NOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:15.878 [XNIO-1 task-1] 1FohrRdJTSSRAK08q-_NOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bba46c89-e9ff-4e1f-97be-8c27c88088fc", "bba46c89-e9ff-4e1f-97be-8c27c88088fc", clientId) +23:10:15.880 [XNIO-1 task-1] ibBMlkYhS5Sxu2ucJmguNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.880 [XNIO-1 task-1] ibBMlkYhS5Sxu2ucJmguNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.880 [XNIO-1 task-1] ibBMlkYhS5Sxu2ucJmguNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.880 [XNIO-1 task-1] ibBMlkYhS5Sxu2ucJmguNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc +23:10:15.882 [XNIO-1 task-1] vB9q6oaQTVWc8--TV-oT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:15.882 [XNIO-1 task-1] vB9q6oaQTVWc8--TV-oT6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.882 [XNIO-1 task-1] vB9q6oaQTVWc8--TV-oT6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.882 [XNIO-1 task-1] vB9q6oaQTVWc8--TV-oT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bba46c89-e9ff-4e1f-97be-8c27c88088fc, base path is set to: null +23:10:15.882 [XNIO-1 task-1] vB9q6oaQTVWc8--TV-oT6A DEBUG com.networknt.schema.TypeValidator debug - validate( "bba46c89-e9ff-4e1f-97be-8c27c88088fc", "bba46c89-e9ff-4e1f-97be-8c27c88088fc", clientId) +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7", {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.894 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "d35d2317-c454-4850-b2ea-a2837ddb", {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.895 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.895 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d35d2317-c454-4850-b2ea-a2837ddb","clientDesc":"a3a8f912-ca8f-4df6-b6a5-f792ef74fcd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.895 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.895 [XNIO-1 task-1] bkkIbEW7QdKkZqpgzevsvA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.897 [XNIO-1 task-1] DQ09gkeATYegrWHueWqewg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a, base path is set to: null +23:10:15.897 [XNIO-1 task-1] DQ09gkeATYegrWHueWqewg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.897 [XNIO-1 task-1] DQ09gkeATYegrWHueWqewg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.897 [XNIO-1 task-1] DQ09gkeATYegrWHueWqewg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a, base path is set to: null +23:10:15.897 [XNIO-1 task-1] DQ09gkeATYegrWHueWqewg DEBUG com.networknt.schema.TypeValidator debug - validate( "e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a", "e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a", clientId) +23:10:15.899 [XNIO-1 task-1] f8OVAp7dTEOjl2ONLxERiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/095c296f-6822-4c18-8e58-b02d88caddf9 +23:10:15.899 [XNIO-1 task-1] f8OVAp7dTEOjl2ONLxERiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.899 [XNIO-1 task-1] f8OVAp7dTEOjl2ONLxERiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.899 [XNIO-1 task-1] f8OVAp7dTEOjl2ONLxERiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/095c296f-6822-4c18-8e58-b02d88caddf9 +23:10:15.901 [XNIO-1 task-1] 3-Kj93WFRWyVFk9OsGKI8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/095c296f-6822-4c18-8e58-b02d88caddf9, base path is set to: null +23:10:15.901 [XNIO-1 task-1] 3-Kj93WFRWyVFk9OsGKI8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.901 [XNIO-1 task-1] 3-Kj93WFRWyVFk9OsGKI8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.902 [XNIO-1 task-1] 3-Kj93WFRWyVFk9OsGKI8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/095c296f-6822-4c18-8e58-b02d88caddf9, base path is set to: null +23:10:15.902 [XNIO-1 task-1] 3-Kj93WFRWyVFk9OsGKI8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "095c296f-6822-4c18-8e58-b02d88caddf9", "095c296f-6822-4c18-8e58-b02d88caddf9", clientId) +23:10:15.904 [XNIO-1 task-1] mUmyDMAUSqmHn17ybXN5xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.904 [XNIO-1 task-1] mUmyDMAUSqmHn17ybXN5xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.904 [XNIO-1 task-1] mUmyDMAUSqmHn17ybXN5xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.914 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.914 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.914 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "32943e04-3e66-452b-a6d8-fde464a98c48", {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "fa1cb272-ce81-442b-843e-934097c8", {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fa1cb272-ce81-442b-843e-934097c8","clientDesc":"32943e04-3e66-452b-a6d8-fde464a98c48","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.915 [XNIO-1 task-1] IVUA5-dYRs-P4x37M5w-Kg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.917 [XNIO-1 task-1] 6ZYqp2c3SeSqUAZ3HihPnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.917 [XNIO-1 task-1] 6ZYqp2c3SeSqUAZ3HihPnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.918 [XNIO-1 task-1] 6ZYqp2c3SeSqUAZ3HihPnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.918 [XNIO-1 task-1] 6ZYqp2c3SeSqUAZ3HihPnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.923 [XNIO-1 task-1] 58ztogohR0e24gtYtSWixg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/095c296f-6822-4c18-8e58-b02d88caddf9, base path is set to: null +23:10:15.923 [XNIO-1 task-1] 58ztogohR0e24gtYtSWixg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.923 [XNIO-1 task-1] 58ztogohR0e24gtYtSWixg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.923 [XNIO-1 task-1] 58ztogohR0e24gtYtSWixg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/095c296f-6822-4c18-8e58-b02d88caddf9, base path is set to: null +23:10:15.923 [XNIO-1 task-1] 58ztogohR0e24gtYtSWixg DEBUG com.networknt.schema.TypeValidator debug - validate( "095c296f-6822-4c18-8e58-b02d88caddf9", "095c296f-6822-4c18-8e58-b02d88caddf9", clientId) +23:10:15.928 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "736acfbe-d957-490c-92b7-a7df45c9514a", {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.929 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa", {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.930 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.930 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1ff0f9b7-b0a7-450b-a6d3-e4eaa2fa","clientDesc":"736acfbe-d957-490c-92b7-a7df45c9514a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.930 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.930 [XNIO-1 task-1] 0NcxY7NfSMywp3t_g-sTqw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.932 [XNIO-1 task-1] fnOPzB-wS6WYzAert4lQ0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5a28753a-192b-4757-9883-213e794e1e3d, base path is set to: null +23:10:15.932 [XNIO-1 task-1] fnOPzB-wS6WYzAert4lQ0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.932 [XNIO-1 task-1] fnOPzB-wS6WYzAert4lQ0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.932 [XNIO-1 task-1] fnOPzB-wS6WYzAert4lQ0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5a28753a-192b-4757-9883-213e794e1e3d, base path is set to: null +23:10:15.932 [XNIO-1 task-1] fnOPzB-wS6WYzAert4lQ0A DEBUG com.networknt.schema.TypeValidator debug - validate( "5a28753a-192b-4757-9883-213e794e1e3d", "5a28753a-192b-4757-9883-213e794e1e3d", clientId) +23:10:15.937 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.937 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.937 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.937 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "44b1765c-a40d-4039-b168-5d2740d84bbe", {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1decf803-0ea7-4d45-ab60-f9b33510", {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1decf803-0ea7-4d45-ab60-f9b33510","clientDesc":"44b1765c-a40d-4039-b168-5d2740d84bbe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.938 [XNIO-1 task-1] mzv5QNXGSG6gmw4HobMXBg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:15.940 [XNIO-1 task-1] TdU9U2UmTTOZ2XOq5Y_fuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.940 [XNIO-1 task-1] TdU9U2UmTTOZ2XOq5Y_fuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.940 [XNIO-1 task-1] TdU9U2UmTTOZ2XOq5Y_fuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.940 [XNIO-1 task-1] TdU9U2UmTTOZ2XOq5Y_fuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.945 [XNIO-1 task-1] ex97DqiNS4-BJvT67FYblw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.945 [XNIO-1 task-1] ex97DqiNS4-BJvT67FYblw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.945 [XNIO-1 task-1] ex97DqiNS4-BJvT67FYblw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.945 [XNIO-1 task-1] ex97DqiNS4-BJvT67FYblw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:15.950 [XNIO-1 task-1] onnEzplzR9GrpJZgOcuw6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ff872697-fac4-423d-8d0a-3cfaaefd1bee, base path is set to: null +23:10:15.950 [XNIO-1 task-1] onnEzplzR9GrpJZgOcuw6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.950 [XNIO-1 task-1] onnEzplzR9GrpJZgOcuw6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:15.950 [XNIO-1 task-1] onnEzplzR9GrpJZgOcuw6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ff872697-fac4-423d-8d0a-3cfaaefd1bee, base path is set to: null +23:10:15.950 [XNIO-1 task-1] onnEzplzR9GrpJZgOcuw6A DEBUG com.networknt.schema.TypeValidator debug - validate( "ff872697-fac4-423d-8d0a-3cfaaefd1bee", "ff872697-fac4-423d-8d0a-3cfaaefd1bee", clientId) +23:10:15.956 [XNIO-1 task-1] 2-pZaje6SKiSi5_jtC8duw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7aea688-b817-4e4d-a4e9-7b28f2366cec +23:10:15.956 [XNIO-1 task-1] 2-pZaje6SKiSi5_jtC8duw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.956 [XNIO-1 task-1] 2-pZaje6SKiSi5_jtC8duw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.956 [XNIO-1 task-1] 2-pZaje6SKiSi5_jtC8duw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7aea688-b817-4e4d-a4e9-7b28f2366cec +23:10:15.966 [XNIO-1 task-1] eLUoJ24fQLC-Rvy28PdBJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.966 [XNIO-1 task-1] eLUoJ24fQLC-Rvy28PdBJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.966 [XNIO-1 task-1] eLUoJ24fQLC-Rvy28PdBJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:15.980 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.981 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:15.981 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"348f5a6f-82de-4323-93d2-11477b0a","clientDesc":"94c2939f-73ec-4520-a8e9-d785c4120f42","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:15.981 [XNIO-1 task-1] 4rdLituySBqzpraJcLF4UA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:15.983 [XNIO-1 task-1] OxxIeOTDRPmTdwRULiP1Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf96d7e1-69a5-4e90-a6e0-04b0b1ed81c0 +23:10:15.983 [XNIO-1 task-1] OxxIeOTDRPmTdwRULiP1Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.983 [XNIO-1 task-1] OxxIeOTDRPmTdwRULiP1Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:15.983 [XNIO-1 task-1] OxxIeOTDRPmTdwRULiP1Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf96d7e1-69a5-4e90-a6e0-04b0b1ed81c0 +23:10:15.983 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bf96d7e1-69a5-4e90-a6e0-04b0b1ed81c0 +23:10:15.991 [XNIO-1 task-1] dkSUuxMaQUuOU_4NEMdzxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.991 [XNIO-1 task-1] dkSUuxMaQUuOU_4NEMdzxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:15.991 [XNIO-1 task-1] dkSUuxMaQUuOU_4NEMdzxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.005 [XNIO-1 task-1] mPc2TRaJSbiGpSz2drulhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/41929d3c-8bb8-4a61-8912-a49796ced758 +23:10:16.005 [XNIO-1 task-1] mPc2TRaJSbiGpSz2drulhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.005 [XNIO-1 task-1] mPc2TRaJSbiGpSz2drulhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.006 [XNIO-1 task-1] mPc2TRaJSbiGpSz2drulhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/41929d3c-8bb8-4a61-8912-a49796ced758 +23:10:16.015 [XNIO-1 task-1] iKk017YoQguaKovIpqziHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3613fcbb-606e-4c71-9b8c-c0203b8fd7a1, base path is set to: null +23:10:16.018 [XNIO-1 task-1] iKk017YoQguaKovIpqziHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.018 [XNIO-1 task-1] iKk017YoQguaKovIpqziHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.018 [XNIO-1 task-1] iKk017YoQguaKovIpqziHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3613fcbb-606e-4c71-9b8c-c0203b8fd7a1, base path is set to: null +23:10:16.018 [XNIO-1 task-1] iKk017YoQguaKovIpqziHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3613fcbb-606e-4c71-9b8c-c0203b8fd7a1", "3613fcbb-606e-4c71-9b8c-c0203b8fd7a1", clientId) +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c803dfad-cb6d-4cda-8c2b-a11bad2a92a0", {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.021 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9a7c231d-1623-44f8-a036-0259ea24", {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.022 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.022 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9a7c231d-1623-44f8-a036-0259ea24","clientDesc":"c803dfad-cb6d-4cda-8c2b-a11bad2a92a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.022 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.022 [XNIO-1 task-1] cGSjK-IBQDCPPuks0Z5ezQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.024 [XNIO-1 task-1] c-BTu1Y2QaGvpvOT7WU0sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3613fcbb-606e-4c71-9b8c-c0203b8fd7a1, base path is set to: null +23:10:16.024 [XNIO-1 task-1] c-BTu1Y2QaGvpvOT7WU0sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.024 [XNIO-1 task-1] c-BTu1Y2QaGvpvOT7WU0sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.024 [XNIO-1 task-1] c-BTu1Y2QaGvpvOT7WU0sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3613fcbb-606e-4c71-9b8c-c0203b8fd7a1, base path is set to: null +23:10:16.024 [XNIO-1 task-1] c-BTu1Y2QaGvpvOT7WU0sw DEBUG com.networknt.schema.TypeValidator debug - validate( "3613fcbb-606e-4c71-9b8c-c0203b8fd7a1", "3613fcbb-606e-4c71-9b8c-c0203b8fd7a1", clientId) +23:10:16.031 [XNIO-1 task-1] ZMmXj-4RTmS3WUqUpNN52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.031 [XNIO-1 task-1] ZMmXj-4RTmS3WUqUpNN52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.031 [XNIO-1 task-1] ZMmXj-4RTmS3WUqUpNN52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.031 [XNIO-1 task-1] ZMmXj-4RTmS3WUqUpNN52g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.036 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.036 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.036 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "87920b39-ca4c-4800-840c-334d4ec7785b", {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "ccda633c-7bca-46f0-9985-0d02e705", {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ccda633c-7bca-46f0-9985-0d02e705","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.037 [XNIO-1 task-1] sLOQB4xSQFezglCczSCi4A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.040 [XNIO-1 task-1] S7eNCE17Q-WabGeTE4rXAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/764ffea8-77f4-42c8-b9b5-d80b54950a70, base path is set to: null +23:10:16.040 [XNIO-1 task-1] S7eNCE17Q-WabGeTE4rXAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.040 [XNIO-1 task-1] S7eNCE17Q-WabGeTE4rXAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.040 [XNIO-1 task-1] S7eNCE17Q-WabGeTE4rXAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/764ffea8-77f4-42c8-b9b5-d80b54950a70, base path is set to: null +23:10:16.040 [XNIO-1 task-1] S7eNCE17Q-WabGeTE4rXAg DEBUG com.networknt.schema.TypeValidator debug - validate( "764ffea8-77f4-42c8-b9b5-d80b54950a70", "764ffea8-77f4-42c8-b9b5-d80b54950a70", clientId) +23:10:16.048 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.048 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.048 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG com.networknt.schema.TypeValidator debug - validate( "94463936-4966-4354-ab36-5c9a4931a0ea", {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG com.networknt.schema.TypeValidator debug - validate( "aba8f3c8-d656-44a9-8f42-b2d09135", {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"aba8f3c8-d656-44a9-8f42-b2d09135","clientDesc":"94463936-4966-4354-ab36-5c9a4931a0ea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.049 [XNIO-1 task-1] XK0cG2axSlSIumhxbkl23w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.051 [XNIO-1 task-1] XLbRyamISC6Pdh69_iLfrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.051 [XNIO-1 task-1] XLbRyamISC6Pdh69_iLfrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.051 [XNIO-1 task-1] XLbRyamISC6Pdh69_iLfrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.063 [XNIO-1 task-1] PTsn2hytQaWInB9dX_laMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.063 [XNIO-1 task-1] PTsn2hytQaWInB9dX_laMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.063 [XNIO-1 task-1] PTsn2hytQaWInB9dX_laMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.075 [XNIO-1 task-1] gMEw9nuZTOe-HCbRrb0sLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.075 [XNIO-1 task-1] gMEw9nuZTOe-HCbRrb0sLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.075 [XNIO-1 task-1] gMEw9nuZTOe-HCbRrb0sLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.075 [XNIO-1 task-1] gMEw9nuZTOe-HCbRrb0sLw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.081 [XNIO-1 task-1] unbR1byjR4idIRgLCLtz3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.081 [XNIO-1 task-1] unbR1byjR4idIRgLCLtz3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.081 [XNIO-1 task-1] unbR1byjR4idIRgLCLtz3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.098 [XNIO-1 task-1] hYVD9WlrSiqClwXlZ8S3hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.098 [XNIO-1 task-1] hYVD9WlrSiqClwXlZ8S3hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.098 [XNIO-1 task-1] hYVD9WlrSiqClwXlZ8S3hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.099 [XNIO-1 task-1] hYVD9WlrSiqClwXlZ8S3hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.104 [XNIO-1 task-1] usSE-DyoQU-bdKKG5crmaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2cacc28-a930-4a1c-a080-9b66df98cab9, base path is set to: null +23:10:16.104 [XNIO-1 task-1] usSE-DyoQU-bdKKG5crmaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.104 [XNIO-1 task-1] usSE-DyoQU-bdKKG5crmaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.104 [XNIO-1 task-1] usSE-DyoQU-bdKKG5crmaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a2cacc28-a930-4a1c-a080-9b66df98cab9, base path is set to: null +23:10:16.104 [XNIO-1 task-1] usSE-DyoQU-bdKKG5crmaw DEBUG com.networknt.schema.TypeValidator debug - validate( "a2cacc28-a930-4a1c-a080-9b66df98cab9", "a2cacc28-a930-4a1c-a080-9b66df98cab9", clientId) +23:10:16.110 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.110 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.110 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.110 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.110 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.110 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "87920b39-ca4c-4800-840c-334d4ec7785b", {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.111 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.111 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.111 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a27f7305-b8b3-4aea-9fd8-3c4e8473", {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.111 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.111 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a27f7305-b8b3-4aea-9fd8-3c4e8473","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.111 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.111 [XNIO-1 task-1] 83_MJYhRSj6X_waZLSWkZQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.113 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.113 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.113 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.113 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0b974b6c-5bce-483c-ada1-736ef957","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.114 [XNIO-1 task-1] 3hQRCvCmQe2T7IHuXanp_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.116 [XNIO-1 task-1] rplFCKbBSqisLyzVkQYAOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:16.116 [XNIO-1 task-1] rplFCKbBSqisLyzVkQYAOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.116 [XNIO-1 task-1] rplFCKbBSqisLyzVkQYAOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.116 [XNIO-1 task-1] rplFCKbBSqisLyzVkQYAOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:16.118 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.118 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.118 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2902289e-66c7-4f0a-98b7-9e84685a","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.119 [XNIO-1 task-1] KFuTAye8QIqNSYW1Dgct8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.121 [XNIO-1 task-1] rFIyz7EkT1msEDv_B7VR2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.121 [XNIO-1 task-1] rFIyz7EkT1msEDv_B7VR2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.121 [XNIO-1 task-1] rFIyz7EkT1msEDv_B7VR2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.135 [XNIO-1 task-1] c8P0GgezSH6UohdkKqCg9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/beaea5d8-7d99-4394-8714-ee81ee2655d1 +23:10:16.135 [XNIO-1 task-1] c8P0GgezSH6UohdkKqCg9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.135 [XNIO-1 task-1] c8P0GgezSH6UohdkKqCg9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.135 [XNIO-1 task-1] c8P0GgezSH6UohdkKqCg9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/beaea5d8-7d99-4394-8714-ee81ee2655d1 +23:10:16.137 [XNIO-1 task-1] B11O6CytTsmH1YCTiwXjNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3707303-bf00-4362-8781-a28d7f9acf3f, base path is set to: null +23:10:16.137 [XNIO-1 task-1] B11O6CytTsmH1YCTiwXjNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.138 [XNIO-1 task-1] B11O6CytTsmH1YCTiwXjNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.138 [XNIO-1 task-1] B11O6CytTsmH1YCTiwXjNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3707303-bf00-4362-8781-a28d7f9acf3f, base path is set to: null +23:10:16.138 [XNIO-1 task-1] B11O6CytTsmH1YCTiwXjNw DEBUG com.networknt.schema.TypeValidator debug - validate( "b3707303-bf00-4362-8781-a28d7f9acf3f", "b3707303-bf00-4362-8781-a28d7f9acf3f", clientId) +23:10:16.140 [XNIO-1 task-1] 85X4cKzOSZ6gdditF3W0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/beaea5d8-7d99-4394-8714-ee81ee2655d1 +23:10:16.140 [XNIO-1 task-1] 85X4cKzOSZ6gdditF3W0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.140 [XNIO-1 task-1] 85X4cKzOSZ6gdditF3W0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.140 [XNIO-1 task-1] 85X4cKzOSZ6gdditF3W0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/beaea5d8-7d99-4394-8714-ee81ee2655d1 +23:10:16.142 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.142 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.142 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b59eca19-b411-4bb9-8a89-295cc356","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.143 [XNIO-1 task-1] jglvo3jMTi-gXBFIl3vcZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.145 [XNIO-1 task-1] 7t-du6vqSwG1K90qkwX3QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/beaea5d8-7d99-4394-8714-ee81ee2655d1 +23:10:16.145 [XNIO-1 task-1] 7t-du6vqSwG1K90qkwX3QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.145 [XNIO-1 task-1] 7t-du6vqSwG1K90qkwX3QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.145 [XNIO-1 task-1] 7t-du6vqSwG1K90qkwX3QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/beaea5d8-7d99-4394-8714-ee81ee2655d1 +23:10:16.159 [XNIO-1 task-1] 3nBoDaMHSs6-UutRQ1y32w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3707303-bf00-4362-8781-a28d7f9acf3f, base path is set to: null +23:10:16.159 [XNIO-1 task-1] 3nBoDaMHSs6-UutRQ1y32w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.159 [XNIO-1 task-1] 3nBoDaMHSs6-UutRQ1y32w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.159 [XNIO-1 task-1] 3nBoDaMHSs6-UutRQ1y32w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3707303-bf00-4362-8781-a28d7f9acf3f, base path is set to: null +23:10:16.159 [XNIO-1 task-1] 3nBoDaMHSs6-UutRQ1y32w DEBUG com.networknt.schema.TypeValidator debug - validate( "b3707303-bf00-4362-8781-a28d7f9acf3f", "b3707303-bf00-4362-8781-a28d7f9acf3f", clientId) +23:10:16.161 [XNIO-1 task-1] u-276zwITm2OmKm5k3x3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.161 [XNIO-1 task-1] u-276zwITm2OmKm5k3x3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.161 [XNIO-1 task-1] u-276zwITm2OmKm5k3x3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.167 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e448885d-c30e-4419-bc82-cba5d58c107c +23:10:16.172 [XNIO-1 task-1] dGhxjmoFTsmEStpP_cOOag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b47ae530-332c-4813-bf1a-9bef4f9c8585, base path is set to: null +23:10:16.172 [XNIO-1 task-1] dGhxjmoFTsmEStpP_cOOag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.172 [XNIO-1 task-1] dGhxjmoFTsmEStpP_cOOag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.172 [XNIO-1 task-1] dGhxjmoFTsmEStpP_cOOag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b47ae530-332c-4813-bf1a-9bef4f9c8585, base path is set to: null +23:10:16.173 [XNIO-1 task-1] dGhxjmoFTsmEStpP_cOOag DEBUG com.networknt.schema.TypeValidator debug - validate( "b47ae530-332c-4813-bf1a-9bef4f9c8585", "b47ae530-332c-4813-bf1a-9bef4f9c8585", clientId) +23:10:16.175 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.175 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.175 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6e29a17-1719-41cb-97c9-b93c9ad3560b", {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "2ca8917f-4ce4-47ca-9ae8-f1c35cd0", {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2ca8917f-4ce4-47ca-9ae8-f1c35cd0","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.176 [XNIO-1 task-1] D5ZqkvRXQzK9NXcOc2wgDg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.178 [XNIO-1 task-1] W_pEBzvUTsCuVijh7QL8OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.178 [XNIO-1 task-1] W_pEBzvUTsCuVijh7QL8OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.178 [XNIO-1 task-1] W_pEBzvUTsCuVijh7QL8OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.191 [XNIO-1 task-1] ilhYrke1RTSHLr_SolLDZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.191 [XNIO-1 task-1] ilhYrke1RTSHLr_SolLDZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.191 [XNIO-1 task-1] ilhYrke1RTSHLr_SolLDZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.191 [XNIO-1 task-1] ilhYrke1RTSHLr_SolLDZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.197 [XNIO-1 task-1] 8KIlkBgGSAa8RKWt_efDcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e448885d-c30e-4419-bc82-cba5d58c107c, base path is set to: null +23:10:16.197 [XNIO-1 task-1] 8KIlkBgGSAa8RKWt_efDcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.197 [XNIO-1 task-1] 8KIlkBgGSAa8RKWt_efDcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.197 [XNIO-1 task-1] 8KIlkBgGSAa8RKWt_efDcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e448885d-c30e-4419-bc82-cba5d58c107c, base path is set to: null +23:10:16.197 [XNIO-1 task-1] 8KIlkBgGSAa8RKWt_efDcw DEBUG com.networknt.schema.TypeValidator debug - validate( "e448885d-c30e-4419-bc82-cba5d58c107c", "e448885d-c30e-4419-bc82-cba5d58c107c", clientId) +23:10:16.199 [XNIO-1 task-1] r10pLc7tQymci1KB2R-C0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b47ae530-332c-4813-bf1a-9bef4f9c8585 +23:10:16.199 [XNIO-1 task-1] r10pLc7tQymci1KB2R-C0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.199 [XNIO-1 task-1] r10pLc7tQymci1KB2R-C0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.200 [XNIO-1 task-1] r10pLc7tQymci1KB2R-C0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b47ae530-332c-4813-bf1a-9bef4f9c8585 +23:10:16.201 [XNIO-1 task-1] jSRbeFJWQ_SY8f9JNk_VnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e448885d-c30e-4419-bc82-cba5d58c107c, base path is set to: null +23:10:16.201 [XNIO-1 task-1] jSRbeFJWQ_SY8f9JNk_VnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.201 [XNIO-1 task-1] jSRbeFJWQ_SY8f9JNk_VnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.201 [XNIO-1 task-1] jSRbeFJWQ_SY8f9JNk_VnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e448885d-c30e-4419-bc82-cba5d58c107c, base path is set to: null +23:10:16.201 [XNIO-1 task-1] jSRbeFJWQ_SY8f9JNk_VnA DEBUG com.networknt.schema.TypeValidator debug - validate( "e448885d-c30e-4419-bc82-cba5d58c107c", "e448885d-c30e-4419-bc82-cba5d58c107c", clientId) +23:10:16.207 [XNIO-1 task-1] zKzmy5ECSCiNcnR64GJ1kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.207 [XNIO-1 task-1] zKzmy5ECSCiNcnR64GJ1kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.207 [XNIO-1 task-1] zKzmy5ECSCiNcnR64GJ1kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.220 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.220 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.220 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.220 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.220 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.220 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.220 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.221 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.221 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.221 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.221 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.221 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2977689c-74df-4ba2-8798-e6e863f5","clientDesc":"0ea69079-0bbf-442d-ac66-8bad796f9585","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.221 [XNIO-1 task-1] x92DLmOOSPSX14lxcEuT1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.223 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.223 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.223 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.223 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.223 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e104596-06fd-4351-b0c0-15bd30f35c97", {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "0530d9d0-a3b9-4bcf-8f4e-a36193b8", {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0530d9d0-a3b9-4bcf-8f4e-a36193b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.224 [XNIO-1 task-1] --VrAfurR5Sm60NGlBdhbw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.226 [XNIO-1 task-1] JQpOPvkWT8CEdDnzu7xeKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0e1cf62f-4711-47b2-ba04-2589c84d3f17, base path is set to: null +23:10:16.226 [XNIO-1 task-1] JQpOPvkWT8CEdDnzu7xeKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.226 [XNIO-1 task-1] JQpOPvkWT8CEdDnzu7xeKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.226 [XNIO-1 task-1] JQpOPvkWT8CEdDnzu7xeKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0e1cf62f-4711-47b2-ba04-2589c84d3f17, base path is set to: null +23:10:16.226 [XNIO-1 task-1] JQpOPvkWT8CEdDnzu7xeKA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e1cf62f-4711-47b2-ba04-2589c84d3f17", "0e1cf62f-4711-47b2-ba04-2589c84d3f17", clientId) +23:10:16.234 [XNIO-1 task-1] bjgNDdKYQKmyBV5B6baVDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.234 [XNIO-1 task-1] bjgNDdKYQKmyBV5B6baVDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.234 [XNIO-1 task-1] bjgNDdKYQKmyBV5B6baVDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.264 [XNIO-1 task-1] bP0kDSrkReeiUtNBoCh6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:16.264 [XNIO-1 task-1] bP0kDSrkReeiUtNBoCh6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.264 [XNIO-1 task-1] bP0kDSrkReeiUtNBoCh6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.264 [XNIO-1 task-1] bP0kDSrkReeiUtNBoCh6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:16.274 [XNIO-1 task-1] r0RnetzeS2CtGnUHowfDWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.274 [XNIO-1 task-1] r0RnetzeS2CtGnUHowfDWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.274 [XNIO-1 task-1] r0RnetzeS2CtGnUHowfDWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.288 [XNIO-1 task-1] bCkaOp-rTh6vZwEsgV1mJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.288 [XNIO-1 task-1] bCkaOp-rTh6vZwEsgV1mJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.288 [XNIO-1 task-1] bCkaOp-rTh6vZwEsgV1mJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.289 [XNIO-1 task-1] bCkaOp-rTh6vZwEsgV1mJg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.296 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03bef15a-3068-4aeb-96df-8f0f9284","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.297 [XNIO-1 task-1] SY3XI_a1Tb22M-pxdjojBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.299 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.299 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.299 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.299 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.299 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.299 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "87920b39-ca4c-4800-840c-334d4ec7785b", {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.300 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.300 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.300 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "79939889-1ae6-4d46-b59d-10710122", {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.300 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.300 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"79939889-1ae6-4d46-b59d-10710122","clientDesc":"87920b39-ca4c-4800-840c-334d4ec7785b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.300 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.300 [XNIO-1 task-1] QFa76VjTR9St8AMQw5DrVw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.302 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.303 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.303 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8513f078-30ad-4fbe-b84a-78aa4fcc","clientDesc":"2282e857-378a-4250-8c58-0123bb1851ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.303 [XNIO-1 task-1] sfEpWoghSaS4E46h317n2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.305 [XNIO-1 task-1] SyJdQAZJR9e36IdrUuyN_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:16.305 [XNIO-1 task-1] SyJdQAZJR9e36IdrUuyN_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.305 [XNIO-1 task-1] SyJdQAZJR9e36IdrUuyN_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.305 [XNIO-1 task-1] SyJdQAZJR9e36IdrUuyN_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:16.305 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e3b1bcd8-c0d4-4187-bde8-c2f14d0ba62a +23:10:16.312 [XNIO-1 task-1] m_1NDGHRRb2nuGzONnltVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.312 [XNIO-1 task-1] m_1NDGHRRb2nuGzONnltVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.312 [XNIO-1 task-1] m_1NDGHRRb2nuGzONnltVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.312 [XNIO-1 task-1] m_1NDGHRRb2nuGzONnltVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.319 [XNIO-1 task-1] v8tQ-_VFQdq0SpKlqE8xpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.319 [XNIO-1 task-1] v8tQ-_VFQdq0SpKlqE8xpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.319 [XNIO-1 task-1] v8tQ-_VFQdq0SpKlqE8xpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.333 [XNIO-1 task-1] 9VIASexsRsSul0GbPWP-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.333 [XNIO-1 task-1] 9VIASexsRsSul0GbPWP-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.333 [XNIO-1 task-1] 9VIASexsRsSul0GbPWP-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.333 [XNIO-1 task-1] 9VIASexsRsSul0GbPWP-4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.338 [XNIO-1 task-1] SCLKU1U7TZmS1u5uHyLgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a43e3df1-2bec-4334-a349-af80f9cef13b +23:10:16.338 [XNIO-1 task-1] SCLKU1U7TZmS1u5uHyLgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.338 [XNIO-1 task-1] SCLKU1U7TZmS1u5uHyLgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.338 [XNIO-1 task-1] SCLKU1U7TZmS1u5uHyLgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a43e3df1-2bec-4334-a349-af80f9cef13b +23:10:16.347 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.347 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.347 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2a50459-2932-46a9-9826-519d0387","clientDesc":"c6e29a17-1719-41cb-97c9-b93c9ad3560b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.348 [XNIO-1 task-1] KZvcVw11QnuwSpDSURvcJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.350 [XNIO-1 task-1] NPyxqyrfQ_S42ygmT5fRvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.350 [XNIO-1 task-1] NPyxqyrfQ_S42ygmT5fRvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.350 [XNIO-1 task-1] NPyxqyrfQ_S42ygmT5fRvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e104596-06fd-4351-b0c0-15bd30f35c97", {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.362 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "fea6187b-fcdd-4a98-acbf-687c3c7b", {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.363 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.363 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fea6187b-fcdd-4a98-acbf-687c3c7b","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.363 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.363 [XNIO-1 task-1] nNTuG9jfRLipEw7IbD0pfw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.365 [XNIO-1 task-1] sN9M5sylS9yElX8iD6Y6JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.365 [XNIO-1 task-1] sN9M5sylS9yElX8iD6Y6JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.365 [XNIO-1 task-1] sN9M5sylS9yElX8iD6Y6JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.365 [XNIO-1 task-1] sN9M5sylS9yElX8iD6Y6JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.372 [XNIO-1 task-1] jglWiK1_QGi2qGZR245muQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.372 [XNIO-1 task-1] jglWiK1_QGi2qGZR245muQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.372 [XNIO-1 task-1] jglWiK1_QGi2qGZR245muQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.372 [XNIO-1 task-1] jglWiK1_QGi2qGZR245muQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.392 [XNIO-1 task-1] w96o9WMdQuyLNKQtqumlRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3707303-bf00-4362-8781-a28d7f9acf3f, base path is set to: null +23:10:16.392 [XNIO-1 task-1] w96o9WMdQuyLNKQtqumlRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.392 [XNIO-1 task-1] w96o9WMdQuyLNKQtqumlRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.392 [XNIO-1 task-1] w96o9WMdQuyLNKQtqumlRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3707303-bf00-4362-8781-a28d7f9acf3f, base path is set to: null +23:10:16.393 [XNIO-1 task-1] w96o9WMdQuyLNKQtqumlRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b3707303-bf00-4362-8781-a28d7f9acf3f", "b3707303-bf00-4362-8781-a28d7f9acf3f", clientId) +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e104596-06fd-4351-b0c0-15bd30f35c97", {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG com.networknt.schema.TypeValidator debug - validate( "fed8944c-5d84-4768-bc4a-d3184a61", {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.401 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.402 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fed8944c-5d84-4768-bc4a-d3184a61","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.402 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.402 [XNIO-1 task-1] Yo9B5T7zSeWNYkgBVrTAbg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.404 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.404 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.404 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.404 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.405 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b581f8e-504c-4516-ba3a-86a72715","clientDesc":"50eacddf-237d-40e1-a021-139af7ab1c17","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.406 [XNIO-1 task-1] 2ACm3jv6SFO_nnqncXTbFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.408 [XNIO-1 task-1] r1SKtJdXSTW5gcDesphVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf07be6c-47e9-496a-a718-4e3f43dcf1f0 +23:10:16.408 [XNIO-1 task-1] r1SKtJdXSTW5gcDesphVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.408 [XNIO-1 task-1] r1SKtJdXSTW5gcDesphVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.408 [XNIO-1 task-1] r1SKtJdXSTW5gcDesphVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf07be6c-47e9-496a-a718-4e3f43dcf1f0 +23:10:16.411 [XNIO-1 task-1] LYb0_bwXQ36zyHhWHwNfvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b47ae530-332c-4813-bf1a-9bef4f9c8585, base path is set to: null +23:10:16.411 [XNIO-1 task-1] LYb0_bwXQ36zyHhWHwNfvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.411 [XNIO-1 task-1] LYb0_bwXQ36zyHhWHwNfvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.411 [XNIO-1 task-1] LYb0_bwXQ36zyHhWHwNfvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b47ae530-332c-4813-bf1a-9bef4f9c8585, base path is set to: null +23:10:16.411 [XNIO-1 task-1] LYb0_bwXQ36zyHhWHwNfvA DEBUG com.networknt.schema.TypeValidator debug - validate( "b47ae530-332c-4813-bf1a-9bef4f9c8585", "b47ae530-332c-4813-bf1a-9bef4f9c8585", clientId) +23:10:16.417 [XNIO-1 task-1] V763zY3PQBSJVwMIl7Ct3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.417 [XNIO-1 task-1] V763zY3PQBSJVwMIl7Ct3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.417 [XNIO-1 task-1] V763zY3PQBSJVwMIl7Ct3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.429 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.429 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.429 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fcf21dd3-307f-41ba-bc28-93ee2d717db4", {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5e075393-d215-46de-9d25-1f0c3195", {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5e075393-d215-46de-9d25-1f0c3195","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.430 [XNIO-1 task-1] e_HMzEdURbWwD-qYQkXMrQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.432 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.433 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f448b9e0-e312-4c8c-bbc0-b36e519f","clientDesc":"fcf21dd3-307f-41ba-bc28-93ee2d717db4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.434 [XNIO-1 task-1] S1ZZfmljQpO3G0KOnTouPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.436 [XNIO-1 task-1] mfxrMlonQKy0f65xjbn8Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca75c62c-1a03-4c8e-b115-fb44092dd8bc +23:10:16.436 [XNIO-1 task-1] mfxrMlonQKy0f65xjbn8Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.436 [XNIO-1 task-1] mfxrMlonQKy0f65xjbn8Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.436 [XNIO-1 task-1] mfxrMlonQKy0f65xjbn8Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca75c62c-1a03-4c8e-b115-fb44092dd8bc +23:10:16.438 [XNIO-1 task-1] NrA3ngT3QvmcdfjdxMC9tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dca97bf8-b435-44b1-bd61-b38140656c5c, base path is set to: null +23:10:16.438 [XNIO-1 task-1] NrA3ngT3QvmcdfjdxMC9tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.438 [XNIO-1 task-1] NrA3ngT3QvmcdfjdxMC9tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.438 [XNIO-1 task-1] NrA3ngT3QvmcdfjdxMC9tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dca97bf8-b435-44b1-bd61-b38140656c5c, base path is set to: null +23:10:16.438 [XNIO-1 task-1] NrA3ngT3QvmcdfjdxMC9tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dca97bf8-b435-44b1-bd61-b38140656c5c", "dca97bf8-b435-44b1-bd61-b38140656c5c", clientId) +23:10:16.441 [XNIO-1 task-1] E9vDBiUgSlSfTfpaTVVELA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca75c62c-1a03-4c8e-b115-fb44092dd8bc +23:10:16.441 [XNIO-1 task-1] E9vDBiUgSlSfTfpaTVVELA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.441 [XNIO-1 task-1] E9vDBiUgSlSfTfpaTVVELA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.441 [XNIO-1 task-1] E9vDBiUgSlSfTfpaTVVELA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca75c62c-1a03-4c8e-b115-fb44092dd8bc +23:10:16.451 [XNIO-1 task-1] tg-5y70WS5id6AFMMwJY4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.452 [XNIO-1 task-1] tg-5y70WS5id6AFMMwJY4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.452 [XNIO-1 task-1] tg-5y70WS5id6AFMMwJY4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.452 [XNIO-1 task-1] tg-5y70WS5id6AFMMwJY4g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.459 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.460 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.460 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.460 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.460 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b40ec186-118b-4084-baa2-eb3309ce","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.460 [XNIO-1 task-1] JAhZZ6X6RSqh34AyYnhcnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.462 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.462 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.462 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.462 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.462 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f31013d5-9892-4f91-b383-3b790f13cb52", {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f15c7a8c-2d37-489e-ac16-1d602230", {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f15c7a8c-2d37-489e-ac16-1d602230","clientDesc":"f31013d5-9892-4f91-b383-3b790f13cb52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.463 [XNIO-1 task-1] U7Nag_FERxSkAKC-Y_K99Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.465 [XNIO-1 task-1] 9ldhaPKnQy-dEWYOqcnxDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c40a496f-9fe0-4e3f-acbc-9779517cb7f2, base path is set to: null +23:10:16.465 [XNIO-1 task-1] 9ldhaPKnQy-dEWYOqcnxDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.465 [XNIO-1 task-1] 9ldhaPKnQy-dEWYOqcnxDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.465 [XNIO-1 task-1] 9ldhaPKnQy-dEWYOqcnxDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c40a496f-9fe0-4e3f-acbc-9779517cb7f2, base path is set to: null +23:10:16.465 [XNIO-1 task-1] 9ldhaPKnQy-dEWYOqcnxDw DEBUG com.networknt.schema.TypeValidator debug - validate( "c40a496f-9fe0-4e3f-acbc-9779517cb7f2", "c40a496f-9fe0-4e3f-acbc-9779517cb7f2", clientId) +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5", {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.468 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG com.networknt.schema.TypeValidator debug - validate( "9261029d-6eb2-4dca-a253-4b2e4160", {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.469 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.469 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9261029d-6eb2-4dca-a253-4b2e4160","clientDesc":"2d13dd98-5cc2-44e4-93b4-50ec4b80e6c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.469 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.469 [XNIO-1 task-1] jQ2Xlq_mTTGMcMzbsYHjsA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.471 [XNIO-1 task-1] 1VCVWrGNT9q_AYMxN5jz3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c40a496f-9fe0-4e3f-acbc-9779517cb7f2, base path is set to: null +23:10:16.471 [XNIO-1 task-1] 1VCVWrGNT9q_AYMxN5jz3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.471 [XNIO-1 task-1] 1VCVWrGNT9q_AYMxN5jz3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.471 [XNIO-1 task-1] 1VCVWrGNT9q_AYMxN5jz3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c40a496f-9fe0-4e3f-acbc-9779517cb7f2, base path is set to: null +23:10:16.471 [XNIO-1 task-1] 1VCVWrGNT9q_AYMxN5jz3w DEBUG com.networknt.schema.TypeValidator debug - validate( "c40a496f-9fe0-4e3f-acbc-9779517cb7f2", "c40a496f-9fe0-4e3f-acbc-9779517cb7f2", clientId) +23:10:16.478 [XNIO-1 task-1] xYd74xEtQxW3tVMC6GmMuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ff859bce-3af2-4696-8e0c-5e11b074a8b0 +23:10:16.478 [XNIO-1 task-1] xYd74xEtQxW3tVMC6GmMuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.478 [XNIO-1 task-1] xYd74xEtQxW3tVMC6GmMuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.478 [XNIO-1 task-1] xYd74xEtQxW3tVMC6GmMuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ff859bce-3af2-4696-8e0c-5e11b074a8b0 +23:10:16.484 [XNIO-1 task-1] Ty_I_4DDRymYSmlQdvyfBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dca97bf8-b435-44b1-bd61-b38140656c5c, base path is set to: null +23:10:16.484 [XNIO-1 task-1] Ty_I_4DDRymYSmlQdvyfBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.484 [XNIO-1 task-1] Ty_I_4DDRymYSmlQdvyfBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.484 [XNIO-1 task-1] Ty_I_4DDRymYSmlQdvyfBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dca97bf8-b435-44b1-bd61-b38140656c5c, base path is set to: null +23:10:16.484 [XNIO-1 task-1] Ty_I_4DDRymYSmlQdvyfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "dca97bf8-b435-44b1-bd61-b38140656c5c", "dca97bf8-b435-44b1-bd61-b38140656c5c", clientId) +23:10:16.490 [XNIO-1 task-1] QnWjFOszTriCGNSybotk1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.490 [XNIO-1 task-1] QnWjFOszTriCGNSybotk1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.491 [XNIO-1 task-1] QnWjFOszTriCGNSybotk1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.491 [XNIO-1 task-1] QnWjFOszTriCGNSybotk1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.495 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e104596-06fd-4351-b0c0-15bd30f35c97", {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG com.networknt.schema.TypeValidator debug - validate( "59840e3c-7dd6-43d9-8fc6-413d90b8", {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"59840e3c-7dd6-43d9-8fc6-413d90b8","clientDesc":"9e104596-06fd-4351-b0c0-15bd30f35c97","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.496 [XNIO-1 task-1] dVl1_GJXRt6bby1ZVQc0iw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.498 [XNIO-1 task-1] kVkxFyEaSjOkd__px7ujOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.498 [XNIO-1 task-1] kVkxFyEaSjOkd__px7ujOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.498 [XNIO-1 task-1] kVkxFyEaSjOkd__px7ujOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.509 [XNIO-1 task-1] GHv0JZ7QQ_-IAH5JH01wRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bf07be6c-47e9-496a-a718-4e3f43dcf1f0, base path is set to: null +23:10:16.509 [XNIO-1 task-1] GHv0JZ7QQ_-IAH5JH01wRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.509 [XNIO-1 task-1] GHv0JZ7QQ_-IAH5JH01wRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.509 [XNIO-1 task-1] GHv0JZ7QQ_-IAH5JH01wRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bf07be6c-47e9-496a-a718-4e3f43dcf1f0, base path is set to: null +23:10:16.509 [XNIO-1 task-1] GHv0JZ7QQ_-IAH5JH01wRw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf07be6c-47e9-496a-a718-4e3f43dcf1f0", "bf07be6c-47e9-496a-a718-4e3f43dcf1f0", clientId) +23:10:16.522 [XNIO-1 task-1] ZNz_A1FQQBi-DJ8ueGULKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.522 [XNIO-1 task-1] ZNz_A1FQQBi-DJ8ueGULKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.523 [XNIO-1 task-1] ZNz_A1FQQBi-DJ8ueGULKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.523 [XNIO-1 task-1] ZNz_A1FQQBi-DJ8ueGULKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.529 [XNIO-1 task-1] sQthvaDnTGqmr8aT_acBjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46600ad6-6b3b-4c30-941b-64a3fbde197e +23:10:16.529 [XNIO-1 task-1] sQthvaDnTGqmr8aT_acBjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.529 [XNIO-1 task-1] sQthvaDnTGqmr8aT_acBjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.529 [XNIO-1 task-1] sQthvaDnTGqmr8aT_acBjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46600ad6-6b3b-4c30-941b-64a3fbde197e +23:10:16.538 [XNIO-1 task-1] 27_Sc7sEStCtBmtZl4cl7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.538 [XNIO-1 task-1] 27_Sc7sEStCtBmtZl4cl7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.538 [XNIO-1 task-1] 27_Sc7sEStCtBmtZl4cl7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.538 [XNIO-1 task-1] 27_Sc7sEStCtBmtZl4cl7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.546 [XNIO-1 task-1] pwLCalXKRt2j-VJklHC1tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.546 [XNIO-1 task-1] pwLCalXKRt2j-VJklHC1tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.546 [XNIO-1 task-1] pwLCalXKRt2j-VJklHC1tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.546 [XNIO-1 task-1] pwLCalXKRt2j-VJklHC1tA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.552 [XNIO-1 task-1] hJ9dKX5YSUO6id8pUr-w7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9fadc35f-f343-47f0-bd8b-2e9021f324a7, base path is set to: null +23:10:16.552 [XNIO-1 task-1] hJ9dKX5YSUO6id8pUr-w7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.552 [XNIO-1 task-1] hJ9dKX5YSUO6id8pUr-w7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.552 [XNIO-1 task-1] hJ9dKX5YSUO6id8pUr-w7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9fadc35f-f343-47f0-bd8b-2e9021f324a7, base path is set to: null +23:10:16.552 [XNIO-1 task-1] hJ9dKX5YSUO6id8pUr-w7g DEBUG com.networknt.schema.TypeValidator debug - validate( "9fadc35f-f343-47f0-bd8b-2e9021f324a7", "9fadc35f-f343-47f0-bd8b-2e9021f324a7", clientId) +23:10:16.556 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.556 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.556 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.556 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.556 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.556 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG com.networknt.schema.TypeValidator debug - validate( "695c6ea4-5c34-4214-9e66-c738c586de69", {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.557 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.557 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.557 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG com.networknt.schema.TypeValidator debug - validate( "c542c62a-0506-4d03-8025-508f9fef", {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.557 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.557 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c542c62a-0506-4d03-8025-508f9fef","clientDesc":"695c6ea4-5c34-4214-9e66-c738c586de69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.557 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.557 [XNIO-1 task-1] SGznb3QkSkSz1jD0oX5GXA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.559 [XNIO-1 task-1] M3PgTNMURoWBKrmGIj_24Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9fadc35f-f343-47f0-bd8b-2e9021f324a7, base path is set to: null +23:10:16.560 [XNIO-1 task-1] M3PgTNMURoWBKrmGIj_24Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.560 [XNIO-1 task-1] M3PgTNMURoWBKrmGIj_24Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.560 [XNIO-1 task-1] M3PgTNMURoWBKrmGIj_24Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9fadc35f-f343-47f0-bd8b-2e9021f324a7, base path is set to: null +23:10:16.560 [XNIO-1 task-1] M3PgTNMURoWBKrmGIj_24Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9fadc35f-f343-47f0-bd8b-2e9021f324a7", "9fadc35f-f343-47f0-bd8b-2e9021f324a7", clientId) +23:10:16.566 [XNIO-1 task-1] TTnZ4nJwTkGLqtDRvx6gGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.566 [XNIO-1 task-1] TTnZ4nJwTkGLqtDRvx6gGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.566 [XNIO-1 task-1] TTnZ4nJwTkGLqtDRvx6gGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.577 [XNIO-1 task-1] yHIb8SlwTG-xbrfm1uAx1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.577 [XNIO-1 task-1] yHIb8SlwTG-xbrfm1uAx1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.577 [XNIO-1 task-1] yHIb8SlwTG-xbrfm1uAx1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.590 [XNIO-1 task-1] rfUyWoheQqydvYvjmb50Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.590 [XNIO-1 task-1] rfUyWoheQqydvYvjmb50Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.591 [XNIO-1 task-1] rfUyWoheQqydvYvjmb50Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.604 [XNIO-1 task-1] d6O5qVGzQ4-wwT69OljorA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.605 [XNIO-1 task-1] d6O5qVGzQ4-wwT69OljorA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.605 [XNIO-1 task-1] d6O5qVGzQ4-wwT69OljorA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.605 [XNIO-1 task-1] d6O5qVGzQ4-wwT69OljorA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.610 [XNIO-1 task-1] PfuQGAsWSwmPriYJRnJ6GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfeb24d1-1bc0-4443-aac4-cdcc9ac74143 +23:10:16.610 [XNIO-1 task-1] PfuQGAsWSwmPriYJRnJ6GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.610 [XNIO-1 task-1] PfuQGAsWSwmPriYJRnJ6GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.611 [XNIO-1 task-1] PfuQGAsWSwmPriYJRnJ6GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfeb24d1-1bc0-4443-aac4-cdcc9ac74143 +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.618 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.619 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.619 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"45ff2cf1-5234-4774-a54b-650ea701","clientDesc":"c3966103-327a-40b3-96d7-3ed8e9b444ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.619 [XNIO-1 task-1] cRAAtQ-rQvuRVPpyBzuiKA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.621 [XNIO-1 task-1] 2NOcAmL9RbqTz_02wk5rjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.621 [XNIO-1 task-1] 2NOcAmL9RbqTz_02wk5rjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.621 [XNIO-1 task-1] 2NOcAmL9RbqTz_02wk5rjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.621 [XNIO-1 task-1] 2NOcAmL9RbqTz_02wk5rjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.626 [XNIO-1 task-1] af_vx3vnSQOU2jA4XKmIWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5702daab-78ad-42eb-9f11-b7a0ae8c4789 +23:10:16.626 [XNIO-1 task-1] af_vx3vnSQOU2jA4XKmIWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.626 [XNIO-1 task-1] af_vx3vnSQOU2jA4XKmIWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.626 [XNIO-1 task-1] af_vx3vnSQOU2jA4XKmIWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5702daab-78ad-42eb-9f11-b7a0ae8c4789 +23:10:16.628 [XNIO-1 task-1] r7tNHByJSUaVH47byTSRbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.629 [XNIO-1 task-1] r7tNHByJSUaVH47byTSRbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.629 [XNIO-1 task-1] r7tNHByJSUaVH47byTSRbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.640 [XNIO-1 task-1] xwGZVOqkTwWeVfR6o9RXtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/46196098-8a40-42ce-b910-ea0686a11973, base path is set to: null +23:10:16.640 [XNIO-1 task-1] xwGZVOqkTwWeVfR6o9RXtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.640 [XNIO-1 task-1] xwGZVOqkTwWeVfR6o9RXtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.640 [XNIO-1 task-1] xwGZVOqkTwWeVfR6o9RXtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/46196098-8a40-42ce-b910-ea0686a11973, base path is set to: null +23:10:16.640 [XNIO-1 task-1] xwGZVOqkTwWeVfR6o9RXtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "46196098-8a40-42ce-b910-ea0686a11973", "46196098-8a40-42ce-b910-ea0686a11973", clientId) +23:10:16.647 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.647 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.647 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.647 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.647 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.647 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "247bfcad-cc7b-4df2-a206-cf742a3e350c", {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.647 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.648 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.648 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "6a790d33-30d6-42b1-acf2-3e16c6a1", {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.648 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.648 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6a790d33-30d6-42b1-acf2-3e16c6a1","clientDesc":"247bfcad-cc7b-4df2-a206-cf742a3e350c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.648 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.648 [XNIO-1 task-1] ehQPgM0MQPCR_cuH-RNk_g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.652 [XNIO-1 task-1] opltRcDdSEaCrToHu_FbGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.652 [XNIO-1 task-1] opltRcDdSEaCrToHu_FbGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.652 [XNIO-1 task-1] opltRcDdSEaCrToHu_FbGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.652 [XNIO-1 task-1] opltRcDdSEaCrToHu_FbGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.657 [XNIO-1 task-1] AzUOXpc7SAqiTxTRC0s6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5702daab-78ad-42eb-9f11-b7a0ae8c4789, base path is set to: null +23:10:16.657 [XNIO-1 task-1] AzUOXpc7SAqiTxTRC0s6dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.657 [XNIO-1 task-1] AzUOXpc7SAqiTxTRC0s6dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.657 [XNIO-1 task-1] AzUOXpc7SAqiTxTRC0s6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5702daab-78ad-42eb-9f11-b7a0ae8c4789, base path is set to: null +23:10:16.658 [XNIO-1 task-1] AzUOXpc7SAqiTxTRC0s6dg DEBUG com.networknt.schema.TypeValidator debug - validate( "5702daab-78ad-42eb-9f11-b7a0ae8c4789", "5702daab-78ad-42eb-9f11-b7a0ae8c4789", clientId) +23:10:16.664 [XNIO-1 task-1] XGZ73fz-Q6aMo3wR0mks-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.664 [XNIO-1 task-1] XGZ73fz-Q6aMo3wR0mks-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.664 [XNIO-1 task-1] XGZ73fz-Q6aMo3wR0mks-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.664 [XNIO-1 task-1] XGZ73fz-Q6aMo3wR0mks-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.669 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.669 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.669 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "a6a8524a-f34f-4009-8771-cfb449c9eebc", {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a25d7c1-ebc7-4b6f-a51c-b0b4844e", {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0a25d7c1-ebc7-4b6f-a51c-b0b4844e","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.670 [XNIO-1 task-1] fjlrD22oR2iG2Vp5_6AeLA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.672 [XNIO-1 task-1] XdfOVwbQRK6iQQxlXqEJaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:16.672 [XNIO-1 task-1] XdfOVwbQRK6iQQxlXqEJaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.672 [XNIO-1 task-1] XdfOVwbQRK6iQQxlXqEJaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.672 [XNIO-1 task-1] XdfOVwbQRK6iQQxlXqEJaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:16.673 [XNIO-1 task-1] XdfOVwbQRK6iQQxlXqEJaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", clientId) +23:10:16.675 [XNIO-1 task-1] I2m6y1B1QVafOrZf11WpoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.675 [XNIO-1 task-1] I2m6y1B1QVafOrZf11WpoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.675 [XNIO-1 task-1] I2m6y1B1QVafOrZf11WpoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.690 [XNIO-1 task-1] OwdClzGXRMaYKCPUoSZMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.690 [XNIO-1 task-1] OwdClzGXRMaYKCPUoSZMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.690 [XNIO-1 task-1] OwdClzGXRMaYKCPUoSZMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.703 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.703 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.703 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.703 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.703 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.703 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62c970b5-c814-4fcf-aa6e-bc0d0aacdecd", {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.703 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.704 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.704 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5385e7a8-fe71-4fba-a7aa-b7af1679", {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.704 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.704 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5385e7a8-fe71-4fba-a7aa-b7af1679","clientDesc":"62c970b5-c814-4fcf-aa6e-bc0d0aacdecd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.704 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.704 [XNIO-1 task-1] -x2NBaMTQo6ArMTdMIqtMQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.706 [XNIO-1 task-1] 8vnFcefSQBC8O2h6VWP3xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.706 [XNIO-1 task-1] 8vnFcefSQBC8O2h6VWP3xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.706 [XNIO-1 task-1] 8vnFcefSQBC8O2h6VWP3xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.717 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.718 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9a6eb2f-777f-43c4-8673-90836d46","clientDesc":"a60e1c0f-b47b-4fd1-974e-cb6418e36654","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.719 [XNIO-1 task-1] e5iJ-FpZTsy_23ldKBPEyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.721 [XNIO-1 task-1] hSE9HXg8TLCnZQXd0XT0qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.721 [XNIO-1 task-1] hSE9HXg8TLCnZQXd0XT0qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.721 [XNIO-1 task-1] hSE9HXg8TLCnZQXd0XT0qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.736 [XNIO-1 task-1] mDZNqNzMTOqD9y0cmGYtbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.736 [XNIO-1 task-1] mDZNqNzMTOqD9y0cmGYtbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.736 [XNIO-1 task-1] mDZNqNzMTOqD9y0cmGYtbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.736 [XNIO-1 task-1] mDZNqNzMTOqD9y0cmGYtbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.743 [XNIO-1 task-1] joEn807gQjmM3_y1V5-0_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ea9202fb-ce01-4f20-bede-cc8f89da1e2d +23:10:16.743 [XNIO-1 task-1] joEn807gQjmM3_y1V5-0_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.743 [XNIO-1 task-1] joEn807gQjmM3_y1V5-0_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.743 [XNIO-1 task-1] joEn807gQjmM3_y1V5-0_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ea9202fb-ce01-4f20-bede-cc8f89da1e2d +23:10:16.750 [XNIO-1 task-1] lHsuMAPzRVy_ncFQlgjihw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.750 [XNIO-1 task-1] lHsuMAPzRVy_ncFQlgjihw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.750 [XNIO-1 task-1] lHsuMAPzRVy_ncFQlgjihw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.765 [XNIO-1 task-1] 4MNluw4sRVuQt-DeaBJPEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:16.765 [XNIO-1 task-1] 4MNluw4sRVuQt-DeaBJPEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.765 [XNIO-1 task-1] 4MNluw4sRVuQt-DeaBJPEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.765 [XNIO-1 task-1] 4MNluw4sRVuQt-DeaBJPEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:16.765 [XNIO-1 task-1] 4MNluw4sRVuQt-DeaBJPEw DEBUG com.networknt.schema.TypeValidator debug - validate( "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", clientId) +23:10:16.768 [XNIO-1 task-1] GBCsYw65RY25yUEET2zDTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/839f3fe0-ccba-4dce-953a-e70b90fd4188 +23:10:16.768 [XNIO-1 task-1] GBCsYw65RY25yUEET2zDTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.768 [XNIO-1 task-1] GBCsYw65RY25yUEET2zDTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.768 [XNIO-1 task-1] GBCsYw65RY25yUEET2zDTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/839f3fe0-ccba-4dce-953a-e70b90fd4188 +23:10:16.770 [XNIO-1 task-1] lobR3BjBTmCJi5kckhjejg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.770 [XNIO-1 task-1] lobR3BjBTmCJi5kckhjejg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.771 [XNIO-1 task-1] lobR3BjBTmCJi5kckhjejg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.771 [XNIO-1 task-1] lobR3BjBTmCJi5kckhjejg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:16.775 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.775 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.775 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"431a0583-1ec1-4266-8ed0-564eba0d","clientDesc":"8ad1b885-e6a8-4065-ab31-d9033df5e595","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.776 [XNIO-1 task-1] PMxNc8sUSUKrHS4Rs8cikQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.778 [XNIO-1 task-1] Qdw-4S05TmKRm4gZvyD48w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/204e5bf5-afa6-43f9-9d4d-ceed27f3d93c +23:10:16.778 [XNIO-1 task-1] Qdw-4S05TmKRm4gZvyD48w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.778 [XNIO-1 task-1] Qdw-4S05TmKRm4gZvyD48w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.778 [XNIO-1 task-1] Qdw-4S05TmKRm4gZvyD48w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/204e5bf5-afa6-43f9-9d4d-ceed27f3d93c +23:10:16.780 [XNIO-1 task-1] Y2cvJqTKRQ-olBqrUiF7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.781 [XNIO-1 task-1] Y2cvJqTKRQ-olBqrUiF7Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.781 [XNIO-1 task-1] Y2cvJqTKRQ-olBqrUiF7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.793 [XNIO-1 task-1] AwWC29VZRG6MTm8Q24qXRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.793 [XNIO-1 task-1] AwWC29VZRG6MTm8Q24qXRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.793 [XNIO-1 task-1] AwWC29VZRG6MTm8Q24qXRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.805 [XNIO-1 task-1] Hm0k3ju1SQyX13qQ2LtWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/26e4ed25-3b74-4d92-aec0-7a2f3500dbd4, base path is set to: null +23:10:16.806 [XNIO-1 task-1] Hm0k3ju1SQyX13qQ2LtWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.806 [XNIO-1 task-1] Hm0k3ju1SQyX13qQ2LtWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.806 [XNIO-1 task-1] Hm0k3ju1SQyX13qQ2LtWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/26e4ed25-3b74-4d92-aec0-7a2f3500dbd4, base path is set to: null +23:10:16.806 [XNIO-1 task-1] Hm0k3ju1SQyX13qQ2LtWWg DEBUG com.networknt.schema.TypeValidator debug - validate( "26e4ed25-3b74-4d92-aec0-7a2f3500dbd4", "26e4ed25-3b74-4d92-aec0-7a2f3500dbd4", clientId) +23:10:16.808 [XNIO-1 task-1] czfEv0IRTxK4T1XUQeqngQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.808 [XNIO-1 task-1] czfEv0IRTxK4T1XUQeqngQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.808 [XNIO-1 task-1] czfEv0IRTxK4T1XUQeqngQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.808 [XNIO-1 task-1] czfEv0IRTxK4T1XUQeqngQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.813 [XNIO-1 task-1] utxgaYPbSvasO9Mnx5_K9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/839f3fe0-ccba-4dce-953a-e70b90fd4188 +23:10:16.813 [XNIO-1 task-1] utxgaYPbSvasO9Mnx5_K9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.813 [XNIO-1 task-1] utxgaYPbSvasO9Mnx5_K9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.814 [XNIO-1 task-1] utxgaYPbSvasO9Mnx5_K9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/839f3fe0-ccba-4dce-953a-e70b90fd4188 +23:10:16.815 [XNIO-1 task-1] oY0OU5BMR52_syfWZf3PGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/204e5bf5-afa6-43f9-9d4d-ceed27f3d93c, base path is set to: null +23:10:16.815 [XNIO-1 task-1] oY0OU5BMR52_syfWZf3PGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.815 [XNIO-1 task-1] oY0OU5BMR52_syfWZf3PGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.815 [XNIO-1 task-1] oY0OU5BMR52_syfWZf3PGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/204e5bf5-afa6-43f9-9d4d-ceed27f3d93c, base path is set to: null +23:10:16.816 [XNIO-1 task-1] oY0OU5BMR52_syfWZf3PGw DEBUG com.networknt.schema.TypeValidator debug - validate( "204e5bf5-afa6-43f9-9d4d-ceed27f3d93c", "204e5bf5-afa6-43f9-9d4d-ceed27f3d93c", clientId) +23:10:16.822 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.822 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG com.networknt.schema.TypeValidator debug - validate( "44eb0717-1d0d-4b19-97b4-163a375363a8", {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG com.networknt.schema.TypeValidator debug - validate( "406f112e-15b1-4b97-8449-19fb959e", {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"406f112e-15b1-4b97-8449-19fb959e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.823 [XNIO-1 task-1] 5HW5WLlNSYmHWMCzEq8i3g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.852 [XNIO-1 task-1] PhMOzDu2StaVBB3k6yB0mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/26e4ed25-3b74-4d92-aec0-7a2f3500dbd4, base path is set to: null +23:10:16.852 [XNIO-1 task-1] PhMOzDu2StaVBB3k6yB0mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.852 [XNIO-1 task-1] PhMOzDu2StaVBB3k6yB0mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.853 [XNIO-1 task-1] PhMOzDu2StaVBB3k6yB0mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/26e4ed25-3b74-4d92-aec0-7a2f3500dbd4, base path is set to: null +23:10:16.853 [XNIO-1 task-1] PhMOzDu2StaVBB3k6yB0mw DEBUG com.networknt.schema.TypeValidator debug - validate( "26e4ed25-3b74-4d92-aec0-7a2f3500dbd4", "26e4ed25-3b74-4d92-aec0-7a2f3500dbd4", clientId) +23:10:16.859 [XNIO-1 task-1] MM7jVBAVSEeNxQYItr8p3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.859 [XNIO-1 task-1] MM7jVBAVSEeNxQYItr8p3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.859 [XNIO-1 task-1] MM7jVBAVSEeNxQYItr8p3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.872 [XNIO-1 task-1] z532vF7MQGusj4G7NyERyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.872 [XNIO-1 task-1] z532vF7MQGusj4G7NyERyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.872 [XNIO-1 task-1] z532vF7MQGusj4G7NyERyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.885 [XNIO-1 task-1] 0atB_GNCQxi7-Hqdt9_4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/839f3fe0-ccba-4dce-953a-e70b90fd4188 +23:10:16.885 [XNIO-1 task-1] 0atB_GNCQxi7-Hqdt9_4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.885 [XNIO-1 task-1] 0atB_GNCQxi7-Hqdt9_4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.885 [XNIO-1 task-1] 0atB_GNCQxi7-Hqdt9_4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/839f3fe0-ccba-4dce-953a-e70b90fd4188 +23:10:16.894 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.894 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.894 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49f04aa6-19f2-4de4-a643-b090270d","clientDesc":"e8e487c2-bd3c-4470-a6b5-c15c11199f6b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.895 [XNIO-1 task-1] OhzLIpFaRrqAes8gNxruBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.897 [XNIO-1 task-1] INHHTWHPR1aLPFjfHwdMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.897 [XNIO-1 task-1] INHHTWHPR1aLPFjfHwdMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.898 [XNIO-1 task-1] INHHTWHPR1aLPFjfHwdMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.898 [XNIO-1 task-1] INHHTWHPR1aLPFjfHwdMYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6a8524a-f34f-4009-8771-cfb449c9eebc", {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.905 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG com.networknt.schema.TypeValidator debug - validate( "f9af0b34-3eeb-47d5-84cf-b8448ae9", {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:16.906 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:16.906 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f9af0b34-3eeb-47d5-84cf-b8448ae9","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.906 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.906 [XNIO-1 task-1] 17G_PR9aSr633e_Yy7TLWw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:16.907 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.908 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ad676dd-2e90-4ad8-ba99-135ad92e","clientDesc":"44eb0717-1d0d-4b19-97b4-163a375363a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:16.909 [XNIO-1 task-1] ZFCWJJ8ARUyEDnydw0RFcA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:16.913 [XNIO-1 task-1] 4SzE1NL0SmmqYzhnMSbbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/162f6cb3-bb1e-4dcd-8384-3beea3529280 +23:10:16.913 [XNIO-1 task-1] 4SzE1NL0SmmqYzhnMSbbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.913 [XNIO-1 task-1] 4SzE1NL0SmmqYzhnMSbbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.913 [XNIO-1 task-1] 4SzE1NL0SmmqYzhnMSbbBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/162f6cb3-bb1e-4dcd-8384-3beea3529280 +23:10:16.923 [XNIO-1 task-1] bxVHYJNoQLO9xXrUr_knJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:16.923 [XNIO-1 task-1] bxVHYJNoQLO9xXrUr_knJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.923 [XNIO-1 task-1] bxVHYJNoQLO9xXrUr_knJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.923 [XNIO-1 task-1] bxVHYJNoQLO9xXrUr_knJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:16.924 [XNIO-1 task-1] bxVHYJNoQLO9xXrUr_knJA DEBUG com.networknt.schema.TypeValidator debug - validate( "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", clientId) +23:10:16.926 [XNIO-1 task-1] QFKlaBx5S62dcQ_Fn6EgOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.926 [XNIO-1 task-1] QFKlaBx5S62dcQ_Fn6EgOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.926 [XNIO-1 task-1] QFKlaBx5S62dcQ_Fn6EgOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.926 [XNIO-1 task-1] QFKlaBx5S62dcQ_Fn6EgOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.931 [XNIO-1 task-1] 9uMrlbuBRR-nu_ldv-AESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9a053e0-5abc-4f7b-b0be-7e817fd77e86 +23:10:16.931 [XNIO-1 task-1] 9uMrlbuBRR-nu_ldv-AESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.931 [XNIO-1 task-1] 9uMrlbuBRR-nu_ldv-AESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.932 [XNIO-1 task-1] 9uMrlbuBRR-nu_ldv-AESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9a053e0-5abc-4f7b-b0be-7e817fd77e86 +23:10:16.934 [XNIO-1 task-1] yIT5cWmhStGt4nQRyggenA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.934 [XNIO-1 task-1] yIT5cWmhStGt4nQRyggenA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.934 [XNIO-1 task-1] yIT5cWmhStGt4nQRyggenA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.939 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9060fd4f-eebb-4610-97f2-76c6062289c5 +23:10:16.940 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9060fd4f-eebb-4610-97f2-76c6062289c5 +23:10:16.946 [XNIO-1 task-1] kBGbOmgvQG-26ZHsHqgGxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/158d31c2-7be5-45e4-a353-35ce0ab77d58 +23:10:16.946 [XNIO-1 task-1] kBGbOmgvQG-26ZHsHqgGxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.946 [XNIO-1 task-1] kBGbOmgvQG-26ZHsHqgGxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.946 [XNIO-1 task-1] kBGbOmgvQG-26ZHsHqgGxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/158d31c2-7be5-45e4-a353-35ce0ab77d58 +23:10:16.954 [XNIO-1 task-1] O7Se4qTTQJmueZ5ALEwOZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.954 [XNIO-1 task-1] O7Se4qTTQJmueZ5ALEwOZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.954 [XNIO-1 task-1] O7Se4qTTQJmueZ5ALEwOZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.966 [XNIO-1 task-1] Jgs6gmMhSwi4oM0XWGP1PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.966 [XNIO-1 task-1] Jgs6gmMhSwi4oM0XWGP1PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.966 [XNIO-1 task-1] Jgs6gmMhSwi4oM0XWGP1PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:16.981 [XNIO-1 task-1] 5dGr2GWjRe6kikoQnIjR1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5bb425ed-46e9-45d4-98a4-def69dd604be, base path is set to: null +23:10:16.981 [XNIO-1 task-1] 5dGr2GWjRe6kikoQnIjR1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.981 [XNIO-1 task-1] 5dGr2GWjRe6kikoQnIjR1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.981 [XNIO-1 task-1] 5dGr2GWjRe6kikoQnIjR1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5bb425ed-46e9-45d4-98a4-def69dd604be, base path is set to: null +23:10:16.981 [XNIO-1 task-1] 5dGr2GWjRe6kikoQnIjR1g DEBUG com.networknt.schema.TypeValidator debug - validate( "5bb425ed-46e9-45d4-98a4-def69dd604be", "5bb425ed-46e9-45d4-98a4-def69dd604be", clientId) +23:10:16.984 [XNIO-1 task-1] uslb24J9R5a00bcUyJqA5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5bb425ed-46e9-45d4-98a4-def69dd604be +23:10:16.984 [XNIO-1 task-1] uslb24J9R5a00bcUyJqA5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.984 [XNIO-1 task-1] uslb24J9R5a00bcUyJqA5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.984 [XNIO-1 task-1] uslb24J9R5a00bcUyJqA5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5bb425ed-46e9-45d4-98a4-def69dd604be +23:10:16.995 [XNIO-1 task-1] mRdJHspiTFK4loiaIXj1mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f0e8eb2-5356-4079-9c15-d3091832eae7, base path is set to: null +23:10:16.995 [XNIO-1 task-1] mRdJHspiTFK4loiaIXj1mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:16.995 [XNIO-1 task-1] mRdJHspiTFK4loiaIXj1mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:16.995 [XNIO-1 task-1] mRdJHspiTFK4loiaIXj1mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f0e8eb2-5356-4079-9c15-d3091832eae7, base path is set to: null +23:10:16.996 [XNIO-1 task-1] mRdJHspiTFK4loiaIXj1mA DEBUG com.networknt.schema.TypeValidator debug - validate( "4f0e8eb2-5356-4079-9c15-d3091832eae7", "4f0e8eb2-5356-4079-9c15-d3091832eae7", clientId) +23:10:16.997 [XNIO-1 task-1] bfqC8iMwSoCkD4YH5imuHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9a053e0-5abc-4f7b-b0be-7e817fd77e86 +23:10:16.998 [XNIO-1 task-1] bfqC8iMwSoCkD4YH5imuHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:16.998 [XNIO-1 task-1] bfqC8iMwSoCkD4YH5imuHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:16.998 [XNIO-1 task-1] bfqC8iMwSoCkD4YH5imuHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9a053e0-5abc-4f7b-b0be-7e817fd77e86 +23:10:17.005 [XNIO-1 task-1] Zs_ZdWuVRVGTOAlZEa7Tkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/397892c8-bcff-4e4d-a146-650f97032c74, base path is set to: null +23:10:17.006 [XNIO-1 task-1] Zs_ZdWuVRVGTOAlZEa7Tkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.006 [XNIO-1 task-1] Zs_ZdWuVRVGTOAlZEa7Tkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.006 [XNIO-1 task-1] Zs_ZdWuVRVGTOAlZEa7Tkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/397892c8-bcff-4e4d-a146-650f97032c74, base path is set to: null +23:10:17.006 [XNIO-1 task-1] Zs_ZdWuVRVGTOAlZEa7Tkg DEBUG com.networknt.schema.TypeValidator debug - validate( "397892c8-bcff-4e4d-a146-650f97032c74", "397892c8-bcff-4e4d-a146-650f97032c74", clientId) +23:10:17.019 [XNIO-1 task-1] xEqbWUT-QcWOlJAOCqbchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4f0e8eb2-5356-4079-9c15-d3091832eae7 +23:10:17.019 [XNIO-1 task-1] xEqbWUT-QcWOlJAOCqbchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.019 [XNIO-1 task-1] xEqbWUT-QcWOlJAOCqbchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.019 [XNIO-1 task-1] xEqbWUT-QcWOlJAOCqbchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4f0e8eb2-5356-4079-9c15-d3091832eae7 +23:10:17.024 [XNIO-1 task-1] XsQUyQ64QRWEzrv49TUWFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.024 [XNIO-1 task-1] XsQUyQ64QRWEzrv49TUWFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.024 [XNIO-1 task-1] XsQUyQ64QRWEzrv49TUWFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.024 [XNIO-1 task-1] XsQUyQ64QRWEzrv49TUWFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.031 [XNIO-1 task-1] 2w8C-N4_TH2uIWGgLmEfCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9060fd4f-eebb-4610-97f2-76c6062289c5, base path is set to: null +23:10:17.031 [XNIO-1 task-1] 2w8C-N4_TH2uIWGgLmEfCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.031 [XNIO-1 task-1] 2w8C-N4_TH2uIWGgLmEfCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.031 [XNIO-1 task-1] 2w8C-N4_TH2uIWGgLmEfCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9060fd4f-eebb-4610-97f2-76c6062289c5, base path is set to: null +23:10:17.031 [XNIO-1 task-1] 2w8C-N4_TH2uIWGgLmEfCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9060fd4f-eebb-4610-97f2-76c6062289c5", "9060fd4f-eebb-4610-97f2-76c6062289c5", clientId) +23:10:17.034 [XNIO-1 task-1] JVdV5hUVRgmvjCQ1I5JOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3 +23:10:17.034 [XNIO-1 task-1] JVdV5hUVRgmvjCQ1I5JOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.034 [XNIO-1 task-1] JVdV5hUVRgmvjCQ1I5JOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.034 [XNIO-1 task-1] JVdV5hUVRgmvjCQ1I5JOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3 +23:10:17.040 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.041 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.041 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.041 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.041 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.041 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.041 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.041 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.042 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.042 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.042 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.042 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57f62cee-46c6-4143-b421-372c069f","clientDesc":"bc25532b-9e06-4510-8513-e6c854bbdc40","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.042 [XNIO-1 task-1] h14gXvzgQhGV5fRcJGoi8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.044 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.044 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG com.networknt.schema.TypeValidator debug - validate( "a6a8524a-f34f-4009-8771-cfb449c9eebc", {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG com.networknt.schema.TypeValidator debug - validate( "4b205fa1-2c47-400c-8dd0-5217c45f", {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4b205fa1-2c47-400c-8dd0-5217c45f","clientDesc":"a6a8524a-f34f-4009-8771-cfb449c9eebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.045 [XNIO-1 task-1] iUs-IeXfReSrHLhNuYqOog DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.048 [XNIO-1 task-1] T3Cf3Pc4QcCe35Q11hTOyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9060fd4f-eebb-4610-97f2-76c6062289c5, base path is set to: null +23:10:17.048 [XNIO-1 task-1] T3Cf3Pc4QcCe35Q11hTOyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.048 [XNIO-1 task-1] T3Cf3Pc4QcCe35Q11hTOyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.048 [XNIO-1 task-1] T3Cf3Pc4QcCe35Q11hTOyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9060fd4f-eebb-4610-97f2-76c6062289c5, base path is set to: null +23:10:17.048 [XNIO-1 task-1] T3Cf3Pc4QcCe35Q11hTOyg DEBUG com.networknt.schema.TypeValidator debug - validate( "9060fd4f-eebb-4610-97f2-76c6062289c5", "9060fd4f-eebb-4610-97f2-76c6062289c5", clientId) +23:10:17.052 [XNIO-1 task-1] a7wsEM5xQW6XUYz0pV-3Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.052 [XNIO-1 task-1] a7wsEM5xQW6XUYz0pV-3Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.052 [XNIO-1 task-1] a7wsEM5xQW6XUYz0pV-3Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.058 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dc5483ca-294e-47ce-bf23-4f44c55da9fa +23:10:17.078 [XNIO-1 task-1] NVeRcsyMRyCZOUyeSG2eaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:17.078 [XNIO-1 task-1] NVeRcsyMRyCZOUyeSG2eaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.078 [XNIO-1 task-1] NVeRcsyMRyCZOUyeSG2eaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.078 [XNIO-1 task-1] NVeRcsyMRyCZOUyeSG2eaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3, base path is set to: null +23:10:17.078 [XNIO-1 task-1] NVeRcsyMRyCZOUyeSG2eaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", "93c4e6fd-e8f0-4d0c-b1d3-e3d53d160bd3", clientId) +23:10:17.085 [XNIO-1 task-1] Al7hJoYKSLCzWUCaDWIQLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9060fd4f-eebb-4610-97f2-76c6062289c5 +23:10:17.085 [XNIO-1 task-1] Al7hJoYKSLCzWUCaDWIQLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.085 [XNIO-1 task-1] Al7hJoYKSLCzWUCaDWIQLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.085 [XNIO-1 task-1] Al7hJoYKSLCzWUCaDWIQLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9060fd4f-eebb-4610-97f2-76c6062289c5 +23:10:17.085 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9060fd4f-eebb-4610-97f2-76c6062289c5 +23:10:17.086 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1d10674f +23:10:17.094 [XNIO-1 task-1] ujlDxyZKTDO7ww2tpnJfeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.094 [XNIO-1 task-1] ujlDxyZKTDO7ww2tpnJfeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.094 [XNIO-1 task-1] ujlDxyZKTDO7ww2tpnJfeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.104 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1d10674f +23:10:17.108 [XNIO-1 task-1] VPd8bnSUQ_CM-Mwf0p7urA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.108 [XNIO-1 task-1] VPd8bnSUQ_CM-Mwf0p7urA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.108 [XNIO-1 task-1] VPd8bnSUQ_CM-Mwf0p7urA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.121 [XNIO-1 task-1] _0EaEKv5SnuT6p6ekfEERA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.122 [XNIO-1 task-1] _0EaEKv5SnuT6p6ekfEERA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.122 [XNIO-1 task-1] _0EaEKv5SnuT6p6ekfEERA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.122 [XNIO-1 task-1] _0EaEKv5SnuT6p6ekfEERA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.127 [XNIO-1 task-1] ujdZKQrPSU2ZPuShSEFY2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.127 [XNIO-1 task-1] ujdZKQrPSU2ZPuShSEFY2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.127 [XNIO-1 task-1] ujdZKQrPSU2ZPuShSEFY2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.137 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1d10674f +23:10:17.141 [XNIO-1 task-1] f3lhuiWjTeO6e9onU8EJ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0b28487-5946-4468-915d-29664e0a3442, base path is set to: null +23:10:17.141 [XNIO-1 task-1] f3lhuiWjTeO6e9onU8EJ3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.141 [XNIO-1 task-1] f3lhuiWjTeO6e9onU8EJ3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.141 [XNIO-1 task-1] f3lhuiWjTeO6e9onU8EJ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0b28487-5946-4468-915d-29664e0a3442, base path is set to: null +23:10:17.141 [XNIO-1 task-1] f3lhuiWjTeO6e9onU8EJ3w DEBUG com.networknt.schema.TypeValidator debug - validate( "e0b28487-5946-4468-915d-29664e0a3442", "e0b28487-5946-4468-915d-29664e0a3442", clientId) +23:10:17.152 [XNIO-1 task-1] 1TTrEmg9RVqwBoh7Uoccrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.152 [XNIO-1 task-1] 1TTrEmg9RVqwBoh7Uoccrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.152 [XNIO-1 task-1] 1TTrEmg9RVqwBoh7Uoccrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.152 [XNIO-1 task-1] 1TTrEmg9RVqwBoh7Uoccrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.155 [XNIO-1 task-1] EQ8oHKkyT6SrsWeQ1DXMXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.155 [XNIO-1 task-1] EQ8oHKkyT6SrsWeQ1DXMXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.155 [XNIO-1 task-1] EQ8oHKkyT6SrsWeQ1DXMXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.161 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:88dc2776-10c2-49b9-be9c-1ad76f9862f0 +23:10:17.161 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:88dc2776-10c2-49b9-be9c-1ad76f9862f0 +23:10:17.169 [XNIO-1 task-1] cCrOnp5pQLGMuTSAOMT_Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.169 [XNIO-1 task-1] cCrOnp5pQLGMuTSAOMT_Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.169 [XNIO-1 task-1] cCrOnp5pQLGMuTSAOMT_Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.169 [XNIO-1 task-1] cCrOnp5pQLGMuTSAOMT_Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.172 [XNIO-1 task-1] BHhNOtNuTcalf-6BpTrf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072, base path is set to: null +23:10:17.172 [XNIO-1 task-1] BHhNOtNuTcalf-6BpTrf1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.172 [XNIO-1 task-1] BHhNOtNuTcalf-6BpTrf1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.172 [XNIO-1 task-1] BHhNOtNuTcalf-6BpTrf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072, base path is set to: null +23:10:17.172 [XNIO-1 task-1] BHhNOtNuTcalf-6BpTrf1w DEBUG com.networknt.schema.TypeValidator debug - validate( "0ffa80ea-4398-4f08-af38-62cba19e7072", "0ffa80ea-4398-4f08-af38-62cba19e7072", clientId) +23:10:17.174 [XNIO-1 task-1] kBqLS6sXSFaoffl_xpcidQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.174 [XNIO-1 task-1] kBqLS6sXSFaoffl_xpcidQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.174 [XNIO-1 task-1] kBqLS6sXSFaoffl_xpcidQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.179 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1d10674f +23:10:17.188 [XNIO-1 task-1] D2nYMCLORuullkvjves8QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.188 [XNIO-1 task-1] D2nYMCLORuullkvjves8QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.188 [XNIO-1 task-1] D2nYMCLORuullkvjves8QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.188 [XNIO-1 task-1] D2nYMCLORuullkvjves8QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.190 [XNIO-1 task-1] QtmpWmlBTe206XJDPRcyKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.191 [XNIO-1 task-1] QtmpWmlBTe206XJDPRcyKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.191 [XNIO-1 task-1] QtmpWmlBTe206XJDPRcyKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.204 [XNIO-1 task-1] MPwf5nzUT3ew1obtyP6_xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.204 [XNIO-1 task-1] MPwf5nzUT3ew1obtyP6_xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.205 [XNIO-1 task-1] MPwf5nzUT3ew1obtyP6_xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.205 [XNIO-1 task-1] MPwf5nzUT3ew1obtyP6_xg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.212 [XNIO-1 task-1] 5SQ9MPy7SyaYhaLNldMPlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.212 [XNIO-1 task-1] 5SQ9MPy7SyaYhaLNldMPlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.213 [XNIO-1 task-1] 5SQ9MPy7SyaYhaLNldMPlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.217 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8b8bb52d-5ca4-4cfe-b3ea-983c35968158 +23:10:17.218 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8b8bb52d-5ca4-4cfe-b3ea-983c35968158 +23:10:17.228 [XNIO-1 task-1] HT5oltIqSfWLawJtGNuGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6255c74-f679-4797-851a-c67eead2b538 +23:10:17.228 [XNIO-1 task-1] HT5oltIqSfWLawJtGNuGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.228 [XNIO-1 task-1] HT5oltIqSfWLawJtGNuGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.228 [XNIO-1 task-1] HT5oltIqSfWLawJtGNuGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6255c74-f679-4797-851a-c67eead2b538 +23:10:17.230 [XNIO-1 task-1] Ee-91N-8SsWfJGjAHSdW7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.232 [XNIO-1 task-1] Ee-91N-8SsWfJGjAHSdW7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.232 [XNIO-1 task-1] Ee-91N-8SsWfJGjAHSdW7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.232 [XNIO-1 task-1] Ee-91N-8SsWfJGjAHSdW7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.238 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.238 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.238 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.239 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc0ff918-b3bd-4905-ab92-5de98146","clientDesc":"4131df33-54e9-4abe-8733-529f7b2f894b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.240 [XNIO-1 task-1] kJcSeolJTmOzUL6m4k_VMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.242 [XNIO-1 task-1] rM0yoOIiSHe2rK43K6X14w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.242 [XNIO-1 task-1] rM0yoOIiSHe2rK43K6X14w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.242 [XNIO-1 task-1] rM0yoOIiSHe2rK43K6X14w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.242 [XNIO-1 task-1] rM0yoOIiSHe2rK43K6X14w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.250 [XNIO-1 task-1] VpCI4Fl8SWCfR2IWGsSwgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6255c74-f679-4797-851a-c67eead2b538 +23:10:17.250 [XNIO-1 task-1] VpCI4Fl8SWCfR2IWGsSwgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.250 [XNIO-1 task-1] VpCI4Fl8SWCfR2IWGsSwgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.250 [XNIO-1 task-1] VpCI4Fl8SWCfR2IWGsSwgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6255c74-f679-4797-851a-c67eead2b538 +23:10:17.257 [XNIO-1 task-1] d_OZ38WMRh6Szs_diyBncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.257 [XNIO-1 task-1] d_OZ38WMRh6Szs_diyBncA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.257 [XNIO-1 task-1] d_OZ38WMRh6Szs_diyBncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.268 [XNIO-1 task-1] NlYJKXndTmWtE_vMOX6_eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072, base path is set to: null +23:10:17.268 [XNIO-1 task-1] NlYJKXndTmWtE_vMOX6_eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.268 [XNIO-1 task-1] NlYJKXndTmWtE_vMOX6_eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.268 [XNIO-1 task-1] NlYJKXndTmWtE_vMOX6_eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ffa80ea-4398-4f08-af38-62cba19e7072, base path is set to: null +23:10:17.268 [XNIO-1 task-1] NlYJKXndTmWtE_vMOX6_eA DEBUG com.networknt.schema.TypeValidator debug - validate( "0ffa80ea-4398-4f08-af38-62cba19e7072", "0ffa80ea-4398-4f08-af38-62cba19e7072", clientId) +23:10:17.276 [XNIO-1 task-1] BlsvIB2dSS-0i__DEClPSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.276 [XNIO-1 task-1] BlsvIB2dSS-0i__DEClPSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.276 [XNIO-1 task-1] BlsvIB2dSS-0i__DEClPSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.277 [XNIO-1 task-1] BlsvIB2dSS-0i__DEClPSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.283 [XNIO-1 task-1] SMPwr3LhTSiT7zD8cv1jMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.283 [XNIO-1 task-1] SMPwr3LhTSiT7zD8cv1jMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.284 [XNIO-1 task-1] SMPwr3LhTSiT7zD8cv1jMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.295 [XNIO-1 task-1] jAcdpR4XRiGUZVTKMg5ywQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce7656b2-b23f-4706-92c8-abb58a582d49 +23:10:17.295 [XNIO-1 task-1] jAcdpR4XRiGUZVTKMg5ywQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.295 [XNIO-1 task-1] jAcdpR4XRiGUZVTKMg5ywQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.295 [XNIO-1 task-1] jAcdpR4XRiGUZVTKMg5ywQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce7656b2-b23f-4706-92c8-abb58a582d49 +23:10:17.302 [XNIO-1 task-1] C6VMkFYxTRugtYhEbWk6Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.302 [XNIO-1 task-1] C6VMkFYxTRugtYhEbWk6Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.302 [XNIO-1 task-1] C6VMkFYxTRugtYhEbWk6Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.303 [XNIO-1 task-1] C6VMkFYxTRugtYhEbWk6Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.309 [XNIO-1 task-1] U3wlKPI4RRylpYz4UDHlKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.309 [XNIO-1 task-1] U3wlKPI4RRylpYz4UDHlKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.309 [XNIO-1 task-1] U3wlKPI4RRylpYz4UDHlKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.309 [XNIO-1 task-1] U3wlKPI4RRylpYz4UDHlKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.317 [XNIO-1 task-1] SSeQl9tYSLKMIyhKYmZReA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.317 [XNIO-1 task-1] SSeQl9tYSLKMIyhKYmZReA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.317 [XNIO-1 task-1] SSeQl9tYSLKMIyhKYmZReA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.318 [XNIO-1 task-1] SSeQl9tYSLKMIyhKYmZReA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.323 [XNIO-1 task-1] b2GcUy06T7GyQ4OIgnrRIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/88dc2776-10c2-49b9-be9c-1ad76f9862f0, base path is set to: null +23:10:17.323 [XNIO-1 task-1] b2GcUy06T7GyQ4OIgnrRIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.323 [XNIO-1 task-1] b2GcUy06T7GyQ4OIgnrRIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.323 [XNIO-1 task-1] b2GcUy06T7GyQ4OIgnrRIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/88dc2776-10c2-49b9-be9c-1ad76f9862f0, base path is set to: null +23:10:17.323 [XNIO-1 task-1] b2GcUy06T7GyQ4OIgnrRIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88dc2776-10c2-49b9-be9c-1ad76f9862f0", "88dc2776-10c2-49b9-be9c-1ad76f9862f0", clientId) +23:10:17.329 [XNIO-1 task-1] WEtyXeN4T4mnJEEGtguAYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dc5483ca-294e-47ce-bf23-4f44c55da9fa, base path is set to: null +23:10:17.329 [XNIO-1 task-1] WEtyXeN4T4mnJEEGtguAYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.329 [XNIO-1 task-1] WEtyXeN4T4mnJEEGtguAYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.329 [XNIO-1 task-1] WEtyXeN4T4mnJEEGtguAYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dc5483ca-294e-47ce-bf23-4f44c55da9fa, base path is set to: null +23:10:17.329 [XNIO-1 task-1] WEtyXeN4T4mnJEEGtguAYg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc5483ca-294e-47ce-bf23-4f44c55da9fa", "dc5483ca-294e-47ce-bf23-4f44c55da9fa", clientId) +23:10:17.337 [XNIO-1 task-1] gg56gh82SXGUczlbaABoYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.337 [XNIO-1 task-1] gg56gh82SXGUczlbaABoYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.337 [XNIO-1 task-1] gg56gh82SXGUczlbaABoYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.349 [XNIO-1 task-1] HmPl9zTwRt6RYp2u-oO-QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.349 [XNIO-1 task-1] HmPl9zTwRt6RYp2u-oO-QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.349 [XNIO-1 task-1] HmPl9zTwRt6RYp2u-oO-QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.349 [XNIO-1 task-1] HmPl9zTwRt6RYp2u-oO-QA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.355 [XNIO-1 task-1] _3iOyzuQT3eWoPjh3UQsbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/18328be9-cc0b-49d6-b220-e4dcf78e7fd6, base path is set to: null +23:10:17.356 [XNIO-1 task-1] _3iOyzuQT3eWoPjh3UQsbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.356 [XNIO-1 task-1] _3iOyzuQT3eWoPjh3UQsbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.356 [XNIO-1 task-1] _3iOyzuQT3eWoPjh3UQsbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/18328be9-cc0b-49d6-b220-e4dcf78e7fd6, base path is set to: null +23:10:17.356 [XNIO-1 task-1] _3iOyzuQT3eWoPjh3UQsbw DEBUG com.networknt.schema.TypeValidator debug - validate( "18328be9-cc0b-49d6-b220-e4dcf78e7fd6", "18328be9-cc0b-49d6-b220-e4dcf78e7fd6", clientId) +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG com.networknt.schema.TypeValidator debug - validate( "44673453-6617-4976-bce2-9761cd337054", {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.359 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG com.networknt.schema.TypeValidator debug - validate( "2f0b3ca8-8936-4da9-96bd-e80e1bfb", {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.360 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.360 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2f0b3ca8-8936-4da9-96bd-e80e1bfb","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.360 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.360 [XNIO-1 task-1] hkGQUWw6SxShig9WJvD7NA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.363 [XNIO-1 task-1] HDG9Ea7hSuaTeggXF48dDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.363 [XNIO-1 task-1] HDG9Ea7hSuaTeggXF48dDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.363 [XNIO-1 task-1] HDG9Ea7hSuaTeggXF48dDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.382 [XNIO-1 task-1] OOa5MTH2RAKP2scTBTZ8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/18328be9-cc0b-49d6-b220-e4dcf78e7fd6, base path is set to: null +23:10:17.383 [XNIO-1 task-1] OOa5MTH2RAKP2scTBTZ8Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.383 [XNIO-1 task-1] OOa5MTH2RAKP2scTBTZ8Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.383 [XNIO-1 task-1] OOa5MTH2RAKP2scTBTZ8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/18328be9-cc0b-49d6-b220-e4dcf78e7fd6, base path is set to: null +23:10:17.383 [XNIO-1 task-1] OOa5MTH2RAKP2scTBTZ8Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "18328be9-cc0b-49d6-b220-e4dcf78e7fd6", "18328be9-cc0b-49d6-b220-e4dcf78e7fd6", clientId) +23:10:17.385 [XNIO-1 task-1] BsCfJxbeQMuFOoi1dDYbKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c52f4f69-d8dc-445c-a2c4-5df1ceabf59f +23:10:17.385 [XNIO-1 task-1] BsCfJxbeQMuFOoi1dDYbKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.385 [XNIO-1 task-1] BsCfJxbeQMuFOoi1dDYbKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.385 [XNIO-1 task-1] BsCfJxbeQMuFOoi1dDYbKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c52f4f69-d8dc-445c-a2c4-5df1ceabf59f +23:10:17.389 [XNIO-1 task-1] gpjSc1STRH6CaDhpVAXe4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ce7656b2-b23f-4706-92c8-abb58a582d49, base path is set to: null +23:10:17.389 [XNIO-1 task-1] gpjSc1STRH6CaDhpVAXe4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.389 [XNIO-1 task-1] gpjSc1STRH6CaDhpVAXe4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.389 [XNIO-1 task-1] gpjSc1STRH6CaDhpVAXe4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ce7656b2-b23f-4706-92c8-abb58a582d49, base path is set to: null +23:10:17.389 [XNIO-1 task-1] gpjSc1STRH6CaDhpVAXe4w DEBUG com.networknt.schema.TypeValidator debug - validate( "ce7656b2-b23f-4706-92c8-abb58a582d49", "ce7656b2-b23f-4706-92c8-abb58a582d49", clientId) +23:10:17.393 [XNIO-1 task-1] zFDFd0CgTl2UzUq3PBo1Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.393 [XNIO-1 task-1] zFDFd0CgTl2UzUq3PBo1Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.393 [XNIO-1 task-1] zFDFd0CgTl2UzUq3PBo1Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.394 [XNIO-1 task-1] zFDFd0CgTl2UzUq3PBo1Vg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.400 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "44673453-6617-4976-bce2-9761cd337054", {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7fd1c9c4-7956-4332-ae9b-70e3df56", {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7fd1c9c4-7956-4332-ae9b-70e3df56","clientDesc":"44673453-6617-4976-bce2-9761cd337054","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.401 [XNIO-1 task-1] 6vyeIur4TC28LzqmF9AQFQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.403 [XNIO-1 task-1] wNshAZJSQkeeRcidZAHWxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.403 [XNIO-1 task-1] wNshAZJSQkeeRcidZAHWxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.404 [XNIO-1 task-1] wNshAZJSQkeeRcidZAHWxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.408 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:00d1ea01-883a-4650-b1ee-248d6272f11d +23:10:17.409 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:00d1ea01-883a-4650-b1ee-248d6272f11d +23:10:17.416 [XNIO-1 task-1] 0rSPrJdpS8iToF9d1qVSrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/18328be9-cc0b-49d6-b220-e4dcf78e7fd6 +23:10:17.416 [XNIO-1 task-1] 0rSPrJdpS8iToF9d1qVSrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.417 [XNIO-1 task-1] 0rSPrJdpS8iToF9d1qVSrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.417 [XNIO-1 task-1] 0rSPrJdpS8iToF9d1qVSrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/18328be9-cc0b-49d6-b220-e4dcf78e7fd6 +23:10:17.424 [XNIO-1 task-1] 2FS63GrMSqCHs6Fmx4WCVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e, base path is set to: null +23:10:17.424 [XNIO-1 task-1] 2FS63GrMSqCHs6Fmx4WCVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.424 [XNIO-1 task-1] 2FS63GrMSqCHs6Fmx4WCVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.424 [XNIO-1 task-1] 2FS63GrMSqCHs6Fmx4WCVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e, base path is set to: null +23:10:17.424 [XNIO-1 task-1] 2FS63GrMSqCHs6Fmx4WCVw DEBUG com.networknt.schema.TypeValidator debug - validate( "d49d97cb-b704-4d6c-b912-59c5ddcc8b1e", "d49d97cb-b704-4d6c-b912-59c5ddcc8b1e", clientId) +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "db16b793-991a-4aa8-b470-92141f3a6222", {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.427 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.428 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf0ccec0-cc99-4173-9f19-39438722", {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.428 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.428 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bf0ccec0-cc99-4173-9f19-39438722","clientDesc":"db16b793-991a-4aa8-b470-92141f3a6222","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.428 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.428 [XNIO-1 task-1] dGdeEYzsR1qQHgCDefy3Sw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.431 [XNIO-1 task-1] biYgc9nzT6GtCcR5lH8AKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.431 [XNIO-1 task-1] biYgc9nzT6GtCcR5lH8AKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.431 [XNIO-1 task-1] biYgc9nzT6GtCcR5lH8AKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.443 [XNIO-1 task-1] 93egpIsOQvStnzG-Nfk3yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.443 [XNIO-1 task-1] 93egpIsOQvStnzG-Nfk3yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.443 [XNIO-1 task-1] 93egpIsOQvStnzG-Nfk3yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.443 [XNIO-1 task-1] 93egpIsOQvStnzG-Nfk3yw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.449 [XNIO-1 task-1] PucoH4aRSeK8IyuEQlwAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.449 [XNIO-1 task-1] PucoH4aRSeK8IyuEQlwAOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.449 [XNIO-1 task-1] PucoH4aRSeK8IyuEQlwAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.449 [XNIO-1 task-1] PucoH4aRSeK8IyuEQlwAOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.463 [XNIO-1 task-1] vsM1jf55Qv-VrhtgzEv7cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/00d1ea01-883a-4650-b1ee-248d6272f11d, base path is set to: null +23:10:17.463 [XNIO-1 task-1] vsM1jf55Qv-VrhtgzEv7cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.463 [XNIO-1 task-1] vsM1jf55Qv-VrhtgzEv7cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.463 [XNIO-1 task-1] vsM1jf55Qv-VrhtgzEv7cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/00d1ea01-883a-4650-b1ee-248d6272f11d, base path is set to: null +Jun 28, 2024 11:10:20 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:17.469 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.469 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "80334d60-c36a-4e64-aa67-fc335002fb71", {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "93c7e0a1-01be-433d-88f0-bb0ac820", {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"93c7e0a1-01be-433d-88f0-bb0ac820","clientDesc":"80334d60-c36a-4e64-aa67-fc335002fb71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:17.470 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.471 [XNIO-1 task-1] _edhEBteTPKbSyaz9VSmAg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.472 [XNIO-1 task-1] 5lIdD6ewSUeoMX440Hfb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce7656b2-b23f-4706-92c8-abb58a582d49 +23:10:17.472 [XNIO-1 task-1] 5lIdD6ewSUeoMX440Hfb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.473 [XNIO-1 task-1] 5lIdD6ewSUeoMX440Hfb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.473 [XNIO-1 task-1] 5lIdD6ewSUeoMX440Hfb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce7656b2-b23f-4706-92c8-abb58a582d49 +23:10:17.481 [XNIO-1 task-1] dwoF4TPSQHW15aBSPUnc7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/88c6b7e5-ac31-494c-bf28-01903f058915, base path is set to: null +23:10:17.481 [XNIO-1 task-1] dwoF4TPSQHW15aBSPUnc7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.481 [XNIO-1 task-1] dwoF4TPSQHW15aBSPUnc7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.481 [XNIO-1 task-1] dwoF4TPSQHW15aBSPUnc7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/88c6b7e5-ac31-494c-bf28-01903f058915, base path is set to: null +23:10:17.481 [XNIO-1 task-1] dwoF4TPSQHW15aBSPUnc7g DEBUG com.networknt.schema.TypeValidator debug - validate( "88c6b7e5-ac31-494c-bf28-01903f058915", "88c6b7e5-ac31-494c-bf28-01903f058915", clientId) +23:10:17.490 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.490 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.490 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.490 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.490 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.490 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "61908fe0-f2cc-49a1-af74-7350bbd9eb2c", {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.491 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.491 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.491 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "5c2733ea-3e6f-4023-851f-54f82819", {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.491 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.491 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5c2733ea-3e6f-4023-851f-54f82819","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.491 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.491 [XNIO-1 task-1] qZ3-jj1QQaa47bITS5xA4w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.494 [XNIO-1 task-1] wdEVTMLjQKS_qw8FkTKIRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.494 [XNIO-1 task-1] wdEVTMLjQKS_qw8FkTKIRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.494 [XNIO-1 task-1] wdEVTMLjQKS_qw8FkTKIRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.506 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.506 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.506 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61e9f1bb-0efb-4ca3-94d1-827ff609","clientDesc":"61908fe0-f2cc-49a1-af74-7350bbd9eb2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.507 [XNIO-1 task-1] pEOuX3bTROuhKfEkcHAFVg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.509 [XNIO-1 task-1] aZ3NKlDZQR6qpStlzmPm2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.509 [XNIO-1 task-1] aZ3NKlDZQR6qpStlzmPm2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.509 [XNIO-1 task-1] aZ3NKlDZQR6qpStlzmPm2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.520 [XNIO-1 task-1] rdPi8SjCQLeScCqnOFmBhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.521 [XNIO-1 task-1] rdPi8SjCQLeScCqnOFmBhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.521 [XNIO-1 task-1] rdPi8SjCQLeScCqnOFmBhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.521 [XNIO-1 task-1] rdPi8SjCQLeScCqnOFmBhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.533 [XNIO-1 task-1] WuJbpWiHRnSvkbvMZ3dqrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c309bd8e-636d-440f-a322-cc8efbfbb4ab +23:10:17.533 [XNIO-1 task-1] WuJbpWiHRnSvkbvMZ3dqrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.533 [XNIO-1 task-1] WuJbpWiHRnSvkbvMZ3dqrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.534 [XNIO-1 task-1] WuJbpWiHRnSvkbvMZ3dqrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c309bd8e-636d-440f-a322-cc8efbfbb4ab +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.542 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.543 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.543 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.543 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.543 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc6eb87a-7414-4cfb-97f1-fb2982ef","clientDesc":"a06bae94-13ea-4e46-9e37-e84545b7f5dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.543 [XNIO-1 task-1] rPn4zA4eQzKVdzXQlYeFtw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.545 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.546 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.546 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.546 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.546 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.546 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a35308e-c3cd-4f58-a484-0e672e11fd0b", {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.547 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.547 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.547 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG com.networknt.schema.TypeValidator debug - validate( "f44888a5-b3fc-4bfd-8901-9844e2fb", {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.547 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.547 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f44888a5-b3fc-4bfd-8901-9844e2fb","clientDesc":"4a35308e-c3cd-4f58-a484-0e672e11fd0b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.547 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.547 [XNIO-1 task-1] 4Ys5Q0-DTXSWnFkj6G-ySA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.549 [XNIO-1 task-1] ocRhl7MQTOOL91MNG8pmVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.549 [XNIO-1 task-1] ocRhl7MQTOOL91MNG8pmVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.549 [XNIO-1 task-1] ocRhl7MQTOOL91MNG8pmVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.549 [XNIO-1 task-1] ocRhl7MQTOOL91MNG8pmVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.554 [XNIO-1 task-1] xqR9TptyQO-YHg2qMtu3Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd754d3a-0099-4004-87d1-846b200c2419, base path is set to: null +23:10:17.554 [XNIO-1 task-1] xqR9TptyQO-YHg2qMtu3Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.554 [XNIO-1 task-1] xqR9TptyQO-YHg2qMtu3Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.554 [XNIO-1 task-1] xqR9TptyQO-YHg2qMtu3Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd754d3a-0099-4004-87d1-846b200c2419, base path is set to: null +23:10:17.554 [XNIO-1 task-1] xqR9TptyQO-YHg2qMtu3Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "dd754d3a-0099-4004-87d1-846b200c2419", "dd754d3a-0099-4004-87d1-846b200c2419", clientId) +23:10:17.563 [XNIO-1 task-1] bzNWR8i6TgCxfnfBE8jA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3826a734-63b1-491d-9e6b-41ab5b31c347 +23:10:17.563 [XNIO-1 task-1] bzNWR8i6TgCxfnfBE8jA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.563 [XNIO-1 task-1] bzNWR8i6TgCxfnfBE8jA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.563 [XNIO-1 task-1] bzNWR8i6TgCxfnfBE8jA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3826a734-63b1-491d-9e6b-41ab5b31c347 +23:10:17.569 [XNIO-1 task-1] CbxOynYaTRKC_-d5ky-8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dadacd8b-558e-4306-a4f6-89be36274a2c, base path is set to: null +23:10:17.569 [XNIO-1 task-1] CbxOynYaTRKC_-d5ky-8dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.569 [XNIO-1 task-1] CbxOynYaTRKC_-d5ky-8dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.569 [XNIO-1 task-1] CbxOynYaTRKC_-d5ky-8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dadacd8b-558e-4306-a4f6-89be36274a2c, base path is set to: null +23:10:17.569 [XNIO-1 task-1] CbxOynYaTRKC_-d5ky-8dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dadacd8b-558e-4306-a4f6-89be36274a2c", "dadacd8b-558e-4306-a4f6-89be36274a2c", clientId) +23:10:17.575 [XNIO-1 task-1] ri7qBM9yQoKBQm1T5I5IgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.576 [XNIO-1 task-1] ri7qBM9yQoKBQm1T5I5IgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.576 [XNIO-1 task-1] ri7qBM9yQoKBQm1T5I5IgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.576 [XNIO-1 task-1] ri7qBM9yQoKBQm1T5I5IgQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.581 [XNIO-1 task-1] P5k8mj7NRpGh6zrj9ZCxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c52f4f69-d8dc-445c-a2c4-5df1ceabf59f +23:10:17.581 [XNIO-1 task-1] P5k8mj7NRpGh6zrj9ZCxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.581 [XNIO-1 task-1] P5k8mj7NRpGh6zrj9ZCxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.581 [XNIO-1 task-1] P5k8mj7NRpGh6zrj9ZCxUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c52f4f69-d8dc-445c-a2c4-5df1ceabf59f +23:10:17.586 [XNIO-1 task-1] la-NCL5eTy23cJ6WkQ_ciw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.587 [XNIO-1 task-1] la-NCL5eTy23cJ6WkQ_ciw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.587 [XNIO-1 task-1] la-NCL5eTy23cJ6WkQ_ciw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.587 [XNIO-1 task-1] la-NCL5eTy23cJ6WkQ_ciw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.592 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.592 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.592 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.593 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.593 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"301200cc-0faf-409a-9356-387b223d","clientDesc":"cd56f190-3d6f-403d-bfd5-bff35da0df5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.594 [XNIO-1 task-1] c795HrcPTWeMHkx49Ko2hw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.596 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.596 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.596 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88079b-0333-4238-8abf-eb2d66d117f6", {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG com.networknt.schema.TypeValidator debug - validate( "cbbef2a2-d4c6-4571-a735-b812d78c", {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cbbef2a2-d4c6-4571-a735-b812d78c","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.597 [XNIO-1 task-1] k4Xz3KyEREmYMXufv4fCyA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.599 [XNIO-1 task-1] XT-51NbsTTq8GqXAZCPWGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.599 [XNIO-1 task-1] XT-51NbsTTq8GqXAZCPWGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.599 [XNIO-1 task-1] XT-51NbsTTq8GqXAZCPWGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.599 [XNIO-1 task-1] XT-51NbsTTq8GqXAZCPWGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.613 [XNIO-1 task-1] hF-oIxg0TJmKgwOg3zAAnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8b8bb52d-5ca4-4cfe-b3ea-983c35968158, base path is set to: null +23:10:17.613 [XNIO-1 task-1] hF-oIxg0TJmKgwOg3zAAnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.613 [XNIO-1 task-1] hF-oIxg0TJmKgwOg3zAAnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +Jun 28, 2024 11:10:21 PM com.hazelcast.map.impl.operation.DeleteOperation +23:10:17.613 [XNIO-1 task-1] hF-oIxg0TJmKgwOg3zAAnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8b8bb52d-5ca4-4cfe-b3ea-983c35968158 +23:10:17.613 [XNIO-1 task-1] hF-oIxg0TJmKgwOg3zAAnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b8bb52d-5ca4-4cfe-b3ea-983c35968158", "8b8bb52d-5ca4-4cfe-b3ea-983c35968158", clientId) +23:10:17.614 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8b8bb52d-5ca4-4cfe-b3ea-983c35968158 +23:10:17.619 [XNIO-1 task-1] pnT_GyCySKKC8v_giAiA-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.619 [XNIO-1 task-1] pnT_GyCySKKC8v_giAiA-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:17.620 [XNIO-1 task-1] pnT_GyCySKKC8v_giAiA-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.620 [XNIO-1 task-1] pnT_GyCySKKC8v_giAiA-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +23:10:17.620 [XNIO-1 task-1] pnT_GyCySKKC8v_giAiA-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.620 [XNIO-1 task-1] pnT_GyCySKKC8v_giAiA-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.625 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.625 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0edd8db1-54e4-4dd7-babe-3b1301a7","clientDesc":"bd88079b-0333-4238-8abf-eb2d66d117f6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.626 [XNIO-1 task-1] kzLWSHfKRXWbLVx2g4UEvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.628 [XNIO-1 task-1] S--occTmT_WgoNLdo68miA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e +23:10:17.628 [XNIO-1 task-1] S--occTmT_WgoNLdo68miA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.628 [XNIO-1 task-1] S--occTmT_WgoNLdo68miA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.628 [XNIO-1 task-1] S--occTmT_WgoNLdo68miA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e +23:10:17.630 [XNIO-1 task-1] 9EbiKsGLQtip__7j2h055g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e, base path is set to: null +23:10:17.630 [XNIO-1 task-1] 9EbiKsGLQtip__7j2h055g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.630 [XNIO-1 task-1] 9EbiKsGLQtip__7j2h055g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.630 [XNIO-1 task-1] 9EbiKsGLQtip__7j2h055g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e, base path is set to: null +23:10:17.631 [XNIO-1 task-1] 9EbiKsGLQtip__7j2h055g DEBUG com.networknt.schema.TypeValidator debug - validate( "d49d97cb-b704-4d6c-b912-59c5ddcc8b1e", "d49d97cb-b704-4d6c-b912-59c5ddcc8b1e", clientId) +23:10:17.632 [XNIO-1 task-1] hXmjHIZGRdaTlI-UW8FdUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e +23:10:17.632 [XNIO-1 task-1] hXmjHIZGRdaTlI-UW8FdUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.632 [XNIO-1 task-1] hXmjHIZGRdaTlI-UW8FdUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.632 [XNIO-1 task-1] hXmjHIZGRdaTlI-UW8FdUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d49d97cb-b704-4d6c-b912-59c5ddcc8b1e +23:10:17.638 [XNIO-1 task-1] WBJhqB69QD-bxQ1atdLI8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/33bb5346-ce94-47ab-9c57-a3990b6fbb87, base path is set to: null +23:10:17.638 [XNIO-1 task-1] WBJhqB69QD-bxQ1atdLI8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.638 [XNIO-1 task-1] WBJhqB69QD-bxQ1atdLI8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.639 [XNIO-1 task-1] WBJhqB69QD-bxQ1atdLI8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/33bb5346-ce94-47ab-9c57-a3990b6fbb87, base path is set to: null +23:10:17.639 [XNIO-1 task-1] WBJhqB69QD-bxQ1atdLI8w DEBUG com.networknt.schema.TypeValidator debug - validate( "33bb5346-ce94-47ab-9c57-a3990b6fbb87", "33bb5346-ce94-47ab-9c57-a3990b6fbb87", clientId) +23:10:17.641 [XNIO-1 task-1] -nGF1jJATYGCl6Obne0QGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.641 [XNIO-1 task-1] -nGF1jJATYGCl6Obne0QGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.641 [XNIO-1 task-1] -nGF1jJATYGCl6Obne0QGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.656 [XNIO-1 task-1] UsLtlDfxTc6AoNAcP8qb6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/33bb5346-ce94-47ab-9c57-a3990b6fbb87 +23:10:17.656 [XNIO-1 task-1] UsLtlDfxTc6AoNAcP8qb6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.656 [XNIO-1 task-1] UsLtlDfxTc6AoNAcP8qb6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.656 [XNIO-1 task-1] UsLtlDfxTc6AoNAcP8qb6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/33bb5346-ce94-47ab-9c57-a3990b6fbb87 +23:10:17.658 [XNIO-1 task-1] Ldi7tIxZTtSpTDs4eZt8xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/33bb5346-ce94-47ab-9c57-a3990b6fbb87, base path is set to: null +23:10:17.658 [XNIO-1 task-1] Ldi7tIxZTtSpTDs4eZt8xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.658 [XNIO-1 task-1] Ldi7tIxZTtSpTDs4eZt8xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.658 [XNIO-1 task-1] Ldi7tIxZTtSpTDs4eZt8xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/33bb5346-ce94-47ab-9c57-a3990b6fbb87, base path is set to: null +23:10:17.659 [XNIO-1 task-1] Ldi7tIxZTtSpTDs4eZt8xg DEBUG com.networknt.schema.TypeValidator debug - validate( "33bb5346-ce94-47ab-9c57-a3990b6fbb87", "33bb5346-ce94-47ab-9c57-a3990b6fbb87", clientId) +23:10:17.665 [XNIO-1 task-1] S4jO-Ev3TF6WdJTxFvBAsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2d1069a-2845-44b8-835a-d6748c001821 +23:10:17.665 [XNIO-1 task-1] S4jO-Ev3TF6WdJTxFvBAsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.665 [XNIO-1 task-1] S4jO-Ev3TF6WdJTxFvBAsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.665 [XNIO-1 task-1] S4jO-Ev3TF6WdJTxFvBAsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2d1069a-2845-44b8-835a-d6748c001821 +23:10:17.673 [XNIO-1 task-1] 8qZONHeHT_6vPoC3r7XIzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.673 [XNIO-1 task-1] 8qZONHeHT_6vPoC3r7XIzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.673 [XNIO-1 task-1] 8qZONHeHT_6vPoC3r7XIzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.676 [XNIO-1 task-1] 8qZONHeHT_6vPoC3r7XIzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.684 [XNIO-1 task-1] XeDyb0IPTuGjavn8EOra0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.684 [XNIO-1 task-1] XeDyb0IPTuGjavn8EOra0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.685 [XNIO-1 task-1] XeDyb0IPTuGjavn8EOra0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.698 [XNIO-1 task-1] OqQO97C8SHWOnoFSHH5xew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.698 [XNIO-1 task-1] OqQO97C8SHWOnoFSHH5xew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.698 [XNIO-1 task-1] OqQO97C8SHWOnoFSHH5xew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.698 [XNIO-1 task-1] OqQO97C8SHWOnoFSHH5xew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.705 [XNIO-1 task-1] dpm8Ar3OTcqaZKsqJLGTBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.705 [XNIO-1 task-1] dpm8Ar3OTcqaZKsqJLGTBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.705 [XNIO-1 task-1] dpm8Ar3OTcqaZKsqJLGTBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.717 [XNIO-1 task-1] lPq5AyrmT-OyJp0xo48SIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c4f7a0a-0ec9-4bc7-8786-6b08c1ad698e, base path is set to: null +23:10:17.718 [XNIO-1 task-1] lPq5AyrmT-OyJp0xo48SIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.718 [XNIO-1 task-1] lPq5AyrmT-OyJp0xo48SIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.718 [XNIO-1 task-1] lPq5AyrmT-OyJp0xo48SIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c4f7a0a-0ec9-4bc7-8786-6b08c1ad698e, base path is set to: null +23:10:17.718 [XNIO-1 task-1] lPq5AyrmT-OyJp0xo48SIw DEBUG com.networknt.schema.TypeValidator debug - validate( "0c4f7a0a-0ec9-4bc7-8786-6b08c1ad698e", "0c4f7a0a-0ec9-4bc7-8786-6b08c1ad698e", clientId) +23:10:17.723 [XNIO-1 task-1] pOwpZEOCReur4SvoqE9IyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/97e36120-2a2e-4384-9886-6da9c44e81a3 +23:10:17.724 [XNIO-1 task-1] pOwpZEOCReur4SvoqE9IyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.724 [XNIO-1 task-1] pOwpZEOCReur4SvoqE9IyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.724 [XNIO-1 task-1] pOwpZEOCReur4SvoqE9IyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/97e36120-2a2e-4384-9886-6da9c44e81a3 +23:10:17.731 [XNIO-1 task-1] TIOo9aV0TRGJlQcwnz-BCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.732 [XNIO-1 task-1] TIOo9aV0TRGJlQcwnz-BCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.732 [XNIO-1 task-1] TIOo9aV0TRGJlQcwnz-BCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.733 [XNIO-1 task-1] TIOo9aV0TRGJlQcwnz-BCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.738 [XNIO-1 task-1] NtmwqjrmT6i03nqWbHMZ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.738 [XNIO-1 task-1] NtmwqjrmT6i03nqWbHMZ2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.738 [XNIO-1 task-1] NtmwqjrmT6i03nqWbHMZ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.745 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d94ad7e3 +23:10:17.747 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d94ad7e3 +23:10:17.753 [XNIO-1 task-1] QrN8BazZQJ66greEVX6ryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bc3108f6-2b5c-45f9-8dbc-3ed94118d703 +23:10:17.753 [XNIO-1 task-1] QrN8BazZQJ66greEVX6ryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.753 [XNIO-1 task-1] QrN8BazZQJ66greEVX6ryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.753 [XNIO-1 task-1] QrN8BazZQJ66greEVX6ryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bc3108f6-2b5c-45f9-8dbc-3ed94118d703 +23:10:17.755 [XNIO-1 task-1] NeRNxXkeQAOgatJX14eZww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bc3108f6-2b5c-45f9-8dbc-3ed94118d703, base path is set to: null +23:10:17.755 [XNIO-1 task-1] NeRNxXkeQAOgatJX14eZww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.755 [XNIO-1 task-1] NeRNxXkeQAOgatJX14eZww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.755 [XNIO-1 task-1] NeRNxXkeQAOgatJX14eZww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bc3108f6-2b5c-45f9-8dbc-3ed94118d703, base path is set to: null +23:10:17.756 [XNIO-1 task-1] NeRNxXkeQAOgatJX14eZww DEBUG com.networknt.schema.TypeValidator debug - validate( "bc3108f6-2b5c-45f9-8dbc-3ed94118d703", "bc3108f6-2b5c-45f9-8dbc-3ed94118d703", clientId) +23:10:17.765 [XNIO-1 task-1] HxdDlcZcQvCVzAzdgxtkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.766 [XNIO-1 task-1] HxdDlcZcQvCVzAzdgxtkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.766 [XNIO-1 task-1] HxdDlcZcQvCVzAzdgxtkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.766 [XNIO-1 task-1] HxdDlcZcQvCVzAzdgxtkYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.771 [XNIO-1 task-1] CiOlaoRATJqW4ux4Kv0ikw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.771 [XNIO-1 task-1] CiOlaoRATJqW4ux4Kv0ikw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.771 [XNIO-1 task-1] CiOlaoRATJqW4ux4Kv0ikw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.784 [XNIO-1 task-1] yw7fVHXYRm-4zJHjAudl4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.784 [XNIO-1 task-1] yw7fVHXYRm-4zJHjAudl4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.784 [XNIO-1 task-1] yw7fVHXYRm-4zJHjAudl4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.785 [XNIO-1 task-1] yw7fVHXYRm-4zJHjAudl4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.789 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.789 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.789 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ac879854-3c7d-42c5-98ba-182d82bfd34b", {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ce31082-1da0-4f5e-8b63-e4cad158", {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8ce31082-1da0-4f5e-8b63-e4cad158","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.790 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.792 [XNIO-1 task-1] lUP5DsLxQ62pOohvkU6ZHQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.794 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.794 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.794 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b53ea2b7-d1b3-4acf-b0f1-44dc8223","clientDesc":"ac879854-3c7d-42c5-98ba-182d82bfd34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.795 [XNIO-1 task-1] tgB4sbApSAq9tUWcrW3kag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.797 [XNIO-1 task-1] VZkbUO1xQRiPz8LK4y7M6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.797 [XNIO-1 task-1] VZkbUO1xQRiPz8LK4y7M6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.797 [XNIO-1 task-1] VZkbUO1xQRiPz8LK4y7M6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.798 [XNIO-1 task-1] VZkbUO1xQRiPz8LK4y7M6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.803 [XNIO-1 task-1] Kn6slIFDSKKQRg3_fdUEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0309aff2-b81d-4711-b653-8e3b87f1ff1c +23:10:17.803 [XNIO-1 task-1] Kn6slIFDSKKQRg3_fdUEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.804 [XNIO-1 task-1] Kn6slIFDSKKQRg3_fdUEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.804 [XNIO-1 task-1] Kn6slIFDSKKQRg3_fdUEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0309aff2-b81d-4711-b653-8e3b87f1ff1c +23:10:17.811 [XNIO-1 task-1] caBNKsmaRkKW1j-f7beAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.811 [XNIO-1 task-1] caBNKsmaRkKW1j-f7beAOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.811 [XNIO-1 task-1] caBNKsmaRkKW1j-f7beAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.811 [XNIO-1 task-1] caBNKsmaRkKW1j-f7beAOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.817 [XNIO-1 task-1] HkY1HAznR1qysx2VMx2C9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.817 [XNIO-1 task-1] HkY1HAznR1qysx2VMx2C9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.817 [XNIO-1 task-1] HkY1HAznR1qysx2VMx2C9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.851 [XNIO-1 task-1] 6eAdPOsAS9W3HozlH_5WEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2a4a9af-0c5f-416f-804e-da3953118784, base path is set to: null +23:10:17.851 [XNIO-1 task-1] 6eAdPOsAS9W3HozlH_5WEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.851 [XNIO-1 task-1] 6eAdPOsAS9W3HozlH_5WEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:17.851 [XNIO-1 task-1] 6eAdPOsAS9W3HozlH_5WEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2a4a9af-0c5f-416f-804e-da3953118784, base path is set to: null +23:10:17.851 [XNIO-1 task-1] 6eAdPOsAS9W3HozlH_5WEA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2a4a9af-0c5f-416f-804e-da3953118784", "f2a4a9af-0c5f-416f-804e-da3953118784", clientId) +23:10:17.862 [XNIO-1 task-1] ox-7BNFFT0-XnmDF7M6inQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.862 [XNIO-1 task-1] ox-7BNFFT0-XnmDF7M6inQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.863 [XNIO-1 task-1] ox-7BNFFT0-XnmDF7M6inQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.863 [XNIO-1 task-1] ox-7BNFFT0-XnmDF7M6inQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.875 [XNIO-1 task-1] nKemgndWReCsqfV3_gFFvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.875 [XNIO-1 task-1] nKemgndWReCsqfV3_gFFvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.875 [XNIO-1 task-1] nKemgndWReCsqfV3_gFFvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.892 [XNIO-1 task-1] xn1qj7sFSwyHSCw7WLVVMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.892 [XNIO-1 task-1] xn1qj7sFSwyHSCw7WLVVMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.892 [XNIO-1 task-1] xn1qj7sFSwyHSCw7WLVVMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.911 [XNIO-1 task-1] 8-bhRHNYSnKeNXJsxhZ_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a +23:10:17.911 [XNIO-1 task-1] 8-bhRHNYSnKeNXJsxhZ_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.911 [XNIO-1 task-1] 8-bhRHNYSnKeNXJsxhZ_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:17.911 [XNIO-1 task-1] 8-bhRHNYSnKeNXJsxhZ_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a +23:10:17.914 [XNIO-1 task-1] 8Vs6B7tXSC6VmUBq910NMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.914 [XNIO-1 task-1] 8Vs6B7tXSC6VmUBq910NMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.914 [XNIO-1 task-1] 8Vs6B7tXSC6VmUBq910NMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +Jun 28, 2024 11:10:21 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +23:10:17.921 [XNIO-1 task-1] gVdA7zTYQSu4LZEwYleAjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.921 [XNIO-1 task-1] gVdA7zTYQSu4LZEwYleAjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +23:10:17.922 [XNIO-1 task-1] gVdA7zTYQSu4LZEwYleAjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.928 [XNIO-1 task-1] 9akZZpc1SSyrxlSuFSo4Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.929 [XNIO-1 task-1] 9akZZpc1SSyrxlSuFSo4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +23:10:17.929 [XNIO-1 task-1] 9akZZpc1SSyrxlSuFSo4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.943 [XNIO-1 task-1] zoBfJQRvST-n3Di9LvW1OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:17.944 [XNIO-1 task-1] zoBfJQRvST-n3Di9LvW1OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +23:10:17.944 [XNIO-1 task-1] zoBfJQRvST-n3Di9LvW1OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +23:10:17.944 [XNIO-1 task-1] zoBfJQRvST-n3Di9LvW1OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a +23:10:17.944 [XNIO-1 task-1] zoBfJQRvST-n3Di9LvW1OA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2299d4a-4460-4ab6-b603-f0df6901792a", "e2299d4a-4460-4ab6-b603-f0df6901792a", clientId) +23:10:17.946 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2454a87a + +23:10:17.947 [XNIO-1 task-1] sj9FdctBRnC6aRUPvJNuBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:17.947 [XNIO-1 task-1] sj9FdctBRnC6aRUPvJNuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.947 [XNIO-1 task-1] sj9FdctBRnC6aRUPvJNuBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.947 [XNIO-1 task-1] sj9FdctBRnC6aRUPvJNuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.947 [XNIO-1 task-1] sj9FdctBRnC6aRUPvJNuBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.947 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2454a87a +23:10:17.959 [XNIO-1 task-1] d8E1CGHuQ2qIJqdo3b9B_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +23:10:17.959 [XNIO-1 task-1] d8E1CGHuQ2qIJqdo3b9B_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +23:10:17.959 [XNIO-1 task-1] d8E1CGHuQ2qIJqdo3b9B_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a +23:10:17.959 [XNIO-1 task-1] d8E1CGHuQ2qIJqdo3b9B_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e2299d4a-4460-4ab6-b603-f0df6901792a", "e2299d4a-4460-4ab6-b603-f0df6901792a", clientId) +23:10:17.961 [XNIO-1 task-1] cprLTM5oSrOM6NGMMfhtFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.961 [XNIO-1 task-1] cprLTM5oSrOM6NGMMfhtFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +23:10:17.961 [XNIO-1 task-1] cprLTM5oSrOM6NGMMfhtFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.961 [XNIO-1 task-1] cprLTM5oSrOM6NGMMfhtFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.961 [XNIO-1 task-1] cprLTM5oSrOM6NGMMfhtFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.961 [XNIO-1 task-1] cprLTM5oSrOM6NGMMfhtFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.961 [XNIO-1 task-1] cprLTM5oSrOM6NGMMfhtFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + ... 13 more + +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7724149d-be64-4336-9d86-548bfea99e68", {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.973 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1f59e23d-c67a-4585-ad13-7996a842", {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.974 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.974 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1f59e23d-c67a-4585-ad13-7996a842","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.974 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.974 [XNIO-1 task-1] OxaAvMrZSLiJEZupzUEe7Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:17.975 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2454a87a +23:10:17.976 [XNIO-1 task-1] DfubmYuKQTuKUI6vck9Cgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.976 [XNIO-1 task-1] DfubmYuKQTuKUI6vck9Cgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.976 [XNIO-1 task-1] DfubmYuKQTuKUI6vck9Cgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.989 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2454a87a +23:10:17.993 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.993 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:17.993 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfc00ca0-706e-439b-aed8-38f00196","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.994 [XNIO-1 task-1] bIC_KBuhSwOTIYWsin5kYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG com.networknt.schema.TypeValidator debug - validate( "7724149d-be64-4336-9d86-548bfea99e68", {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ee063d0-10a8-40d2-94a1-325cd75a", {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.997 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0ee063d0-10a8-40d2-94a1-325cd75a","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.998 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:17.998 [XNIO-1 task-1] t3q0o5UERgOoRCTZp0WPGw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.002 [XNIO-1 task-1] G186FWiQS92Bjgpzl-vJeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +23:10:18.002 [XNIO-1 task-1] G186FWiQS92Bjgpzl-vJeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.002 [XNIO-1 task-1] G186FWiQS92Bjgpzl-vJeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.002 [XNIO-1 task-1] G186FWiQS92Bjgpzl-vJeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +23:10:18.002 [XNIO-1 task-1] G186FWiQS92Bjgpzl-vJeA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2299d4a-4460-4ab6-b603-f0df6901792a", "e2299d4a-4460-4ab6-b603-f0df6901792a", clientId) +23:10:18.005 [XNIO-1 task-1] FUFKyZ-lRVynrBaZXa2XaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a +23:10:18.005 [XNIO-1 task-1] FUFKyZ-lRVynrBaZXa2XaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.005 [XNIO-1 task-1] FUFKyZ-lRVynrBaZXa2XaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.005 [XNIO-1 task-1] FUFKyZ-lRVynrBaZXa2XaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a +23:10:18.008 [XNIO-1 task-1] dkGjiV46QVq-Xr6FkhHKZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +23:10:18.008 [XNIO-1 task-1] dkGjiV46QVq-Xr6FkhHKZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.008 [XNIO-1 task-1] dkGjiV46QVq-Xr6FkhHKZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.008 [XNIO-1 task-1] dkGjiV46QVq-Xr6FkhHKZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +23:10:18.008 [XNIO-1 task-1] dkGjiV46QVq-Xr6FkhHKZw DEBUG com.networknt.schema.TypeValidator debug - validate( "e2299d4a-4460-4ab6-b603-f0df6901792a", "e2299d4a-4460-4ab6-b603-f0df6901792a", clientId) +23:10:18.012 [XNIO-1 task-1] 6ursiEgrS2ScNvNLw6vs_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.012 [XNIO-1 task-1] 6ursiEgrS2ScNvNLw6vs_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.012 [XNIO-1 task-1] 6ursiEgrS2ScNvNLw6vs_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.017 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0aed73e2-d7ea-487e-8c98-01a9cfffa3ad +23:10:18.025 [XNIO-1 task-1] JZvPlceWR9ercRr0dExNmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.025 [XNIO-1 task-1] JZvPlceWR9ercRr0dExNmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.025 [XNIO-1 task-1] JZvPlceWR9ercRr0dExNmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.025 [XNIO-1 task-1] JZvPlceWR9ercRr0dExNmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.031 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2454a87a +23:10:18.032 [XNIO-1 task-1] iFKyMtjoQdGjvS-wAeBgug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61181f8f-c74d-48b7-a09e-7d77261569ff +23:10:18.032 [XNIO-1 task-1] iFKyMtjoQdGjvS-wAeBgug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.032 [XNIO-1 task-1] iFKyMtjoQdGjvS-wAeBgug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.032 [XNIO-1 task-1] iFKyMtjoQdGjvS-wAeBgug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61181f8f-c74d-48b7-a09e-7d77261569ff +23:10:18.034 [XNIO-1 task-1] RZVVf0CyS-iUfSrWf2BGzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.034 [XNIO-1 task-1] RZVVf0CyS-iUfSrWf2BGzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.035 [XNIO-1 task-1] RZVVf0CyS-iUfSrWf2BGzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.035 [XNIO-1 task-1] RZVVf0CyS-iUfSrWf2BGzw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.043 [XNIO-1 task-1] DetGPL30SHC49ZT0d-2aRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740, base path is set to: null +23:10:18.043 [XNIO-1 task-1] DetGPL30SHC49ZT0d-2aRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.043 [XNIO-1 task-1] DetGPL30SHC49ZT0d-2aRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.043 [XNIO-1 task-1] DetGPL30SHC49ZT0d-2aRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740, base path is set to: null +23:10:18.043 [XNIO-1 task-1] DetGPL30SHC49ZT0d-2aRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6911e5bb-39cc-4308-b56e-6da4b3f8b740", "6911e5bb-39cc-4308-b56e-6da4b3f8b740", clientId) +23:10:18.048 [XNIO-1 task-1] zUrxh29LRQWuolT_6MJ68w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.049 [XNIO-1 task-1] zUrxh29LRQWuolT_6MJ68w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.049 [XNIO-1 task-1] zUrxh29LRQWuolT_6MJ68w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.049 [XNIO-1 task-1] zUrxh29LRQWuolT_6MJ68w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.058 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.058 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7724149d-be64-4336-9d86-548bfea99e68", {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5e99110d-9ffe-41d7-a5c4-45fff003", {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5e99110d-9ffe-41d7-a5c4-45fff003","clientDesc":"7724149d-be64-4336-9d86-548bfea99e68","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.059 [XNIO-1 task-1] SLl35qU6TZeYiw1e9Ur5EQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.061 [XNIO-1 task-1] apGfP_yQSzWjsKXYcsCavw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61181f8f-c74d-48b7-a09e-7d77261569ff, base path is set to: null +23:10:18.061 [XNIO-1 task-1] apGfP_yQSzWjsKXYcsCavw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.062 [XNIO-1 task-1] apGfP_yQSzWjsKXYcsCavw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.062 [XNIO-1 task-1] apGfP_yQSzWjsKXYcsCavw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61181f8f-c74d-48b7-a09e-7d77261569ff, base path is set to: null +23:10:18.062 [XNIO-1 task-1] apGfP_yQSzWjsKXYcsCavw DEBUG com.networknt.schema.TypeValidator debug - validate( "61181f8f-c74d-48b7-a09e-7d77261569ff", "61181f8f-c74d-48b7-a09e-7d77261569ff", clientId) +23:10:18.077 [XNIO-1 task-1] AUM-eTvNQX63F4jwfT4DdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0aed73e2-d7ea-487e-8c98-01a9cfffa3ad +23:10:18.077 [XNIO-1 task-1] AUM-eTvNQX63F4jwfT4DdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.078 [XNIO-1 task-1] AUM-eTvNQX63F4jwfT4DdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.078 [XNIO-1 task-1] AUM-eTvNQX63F4jwfT4DdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0aed73e2-d7ea-487e-8c98-01a9cfffa3ad +23:10:18.078 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0aed73e2-d7ea-487e-8c98-01a9cfffa3ad +23:10:18.089 [XNIO-1 task-1] RLgQWXwfReW-FGehn28ROQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740 +23:10:18.090 [XNIO-1 task-1] RLgQWXwfReW-FGehn28ROQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.090 [XNIO-1 task-1] RLgQWXwfReW-FGehn28ROQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.090 [XNIO-1 task-1] RLgQWXwfReW-FGehn28ROQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740 +23:10:18.094 [XNIO-1 task-1] D8QtEnNdRnygElacRIgq9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.095 [XNIO-1 task-1] D8QtEnNdRnygElacRIgq9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.095 [XNIO-1 task-1] D8QtEnNdRnygElacRIgq9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.106 [XNIO-1 task-1] HEAdovHlQOqM3obZCLDHpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b36536a-ae8d-4b99-955e-db4859539f14, base path is set to: null +23:10:18.106 [XNIO-1 task-1] HEAdovHlQOqM3obZCLDHpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.106 [XNIO-1 task-1] HEAdovHlQOqM3obZCLDHpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.106 [XNIO-1 task-1] HEAdovHlQOqM3obZCLDHpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b36536a-ae8d-4b99-955e-db4859539f14, base path is set to: null +23:10:18.106 [XNIO-1 task-1] HEAdovHlQOqM3obZCLDHpw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b36536a-ae8d-4b99-955e-db4859539f14", "4b36536a-ae8d-4b99-955e-db4859539f14", clientId) +23:10:18.115 [XNIO-1 task-1] 3tLNhsm6Qx29E1JBFDzA8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.115 [XNIO-1 task-1] 3tLNhsm6Qx29E1JBFDzA8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.115 [XNIO-1 task-1] 3tLNhsm6Qx29E1JBFDzA8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.129 [XNIO-1 task-1] UiBDQe-nQVS0DeaRdSDnkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.129 [XNIO-1 task-1] UiBDQe-nQVS0DeaRdSDnkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.130 [XNIO-1 task-1] UiBDQe-nQVS0DeaRdSDnkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.130 [XNIO-1 task-1] UiBDQe-nQVS0DeaRdSDnkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.143 [XNIO-1 task-1] sB6a5Pt-QvWNj0Ygu9_6Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.143 [XNIO-1 task-1] sB6a5Pt-QvWNj0Ygu9_6Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.143 [XNIO-1 task-1] sB6a5Pt-QvWNj0Ygu9_6Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.157 [XNIO-1 task-1] rmIapFh-TuCwGclxIC5AbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.157 [XNIO-1 task-1] rmIapFh-TuCwGclxIC5AbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.158 [XNIO-1 task-1] rmIapFh-TuCwGclxIC5AbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.158 [XNIO-1 task-1] rmIapFh-TuCwGclxIC5AbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.165 [XNIO-1 task-1] z6RpkimfTUS8H2D0Em0pyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.165 [XNIO-1 task-1] z6RpkimfTUS8H2D0Em0pyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.165 [XNIO-1 task-1] z6RpkimfTUS8H2D0Em0pyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.165 [XNIO-1 task-1] z6RpkimfTUS8H2D0Em0pyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.173 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.173 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.173 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.173 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.173 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:18.173 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "254f5657-6fc1-4bf5-9096-b9326e0e0067", {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:18.174 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.174 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.174 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ba7914b2-fbf7-44e0-b4fb-956046ec", {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:18.174 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.174 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ba7914b2-fbf7-44e0-b4fb-956046ec","clientDesc":"254f5657-6fc1-4bf5-9096-b9326e0e0067","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.174 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.174 [XNIO-1 task-1] Ceke_sBKRHixBiamgo09bQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.178 [XNIO-1 task-1] ui0afFa6SRWSLHphjKVfPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.178 [XNIO-1 task-1] ui0afFa6SRWSLHphjKVfPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.178 [XNIO-1 task-1] ui0afFa6SRWSLHphjKVfPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.178 [XNIO-1 task-1] ui0afFa6SRWSLHphjKVfPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.186 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.186 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.186 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60abef52-1961-4ec9-b992-e3973e82","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.187 [XNIO-1 task-1] TGPigwATRsOnZ8kLzMMiGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.190 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.190 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.190 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.190 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.190 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:18.190 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "954923d8-5397-4947-a1ed-10e77c4dff25", {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:18.191 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.191 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.191 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "9b93eecc-23ac-4e7f-b0c9-493f8396", {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:18.191 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.191 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9b93eecc-23ac-4e7f-b0c9-493f8396","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.191 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.191 [XNIO-1 task-1] 1hgD8NVfSG6x-dUInt-Rvw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.193 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.193 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.194 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.195 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"297cae05-69d8-4b58-999f-c114d1cc","clientDesc":"954923d8-5397-4947-a1ed-10e77c4dff25","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.196 [XNIO-1 task-1] rJksurkfR4Sg_Kc6Hxq_zQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.198 [XNIO-1 task-1] xsAmwt8TQaO_dTPnAhtkOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cda768bf-2382-422c-aa9e-2965e5699730 +23:10:18.198 [XNIO-1 task-1] xsAmwt8TQaO_dTPnAhtkOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.198 [XNIO-1 task-1] xsAmwt8TQaO_dTPnAhtkOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.198 [XNIO-1 task-1] xsAmwt8TQaO_dTPnAhtkOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cda768bf-2382-422c-aa9e-2965e5699730 +23:10:18.214 [XNIO-1 task-1] uxHKekupTYmjD3_xIWwbDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.214 [XNIO-1 task-1] uxHKekupTYmjD3_xIWwbDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.215 [XNIO-1 task-1] uxHKekupTYmjD3_xIWwbDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.215 [XNIO-1 task-1] uxHKekupTYmjD3_xIWwbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.217 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71ded75c +23:10:18.218 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71ded75c +23:10:18.221 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.221 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.221 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG com.networknt.schema.TypeValidator debug - validate( "f46f1b3c-2065-40bb-83c1-936d9023863d", {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG com.networknt.schema.TypeValidator debug - validate( "249c7990-cc53-48c1-ae3b-c02ca370", {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"249c7990-cc53-48c1-ae3b-c02ca370","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.222 [XNIO-1 task-1] qI0ND6gmRb-6fQOK3b7XVA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.227 [XNIO-1 task-1] _KKUPVIoS5qtf1xDU4zcmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.227 [XNIO-1 task-1] _KKUPVIoS5qtf1xDU4zcmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.227 [XNIO-1 task-1] _KKUPVIoS5qtf1xDU4zcmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.237 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:71ded75c +23:10:18.238 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.240 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.241 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.241 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b0058014-be3d-4147-bc00-236c8807","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 28, 2024 11:10:22 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.241 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.241 [XNIO-1 task-1] lrau5KrcSn-UVFwsodPqRQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.243 [XNIO-1 task-1] MgBdqIdzTi6_nIO9w-pj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.243 [XNIO-1 task-1] MgBdqIdzTi6_nIO9w-pj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.243 [XNIO-1 task-1] MgBdqIdzTi6_nIO9w-pj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.249 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:abc4d7d4-95d0-4c40-b520-497830e22cb5 +23:10:18.256 [XNIO-1 task-1] a5BQ7om-TvybdBdrsFKmeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.256 [XNIO-1 task-1] a5BQ7om-TvybdBdrsFKmeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.256 [XNIO-1 task-1] a5BQ7om-TvybdBdrsFKmeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.256 [XNIO-1 task-1] a5BQ7om-TvybdBdrsFKmeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.259 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:71ded75c +23:10:18.261 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.261 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.261 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.262 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3400bf50-2b21-4e7c-9c0b-a63f0813","clientDesc":"36642694-69ff-4058-a673-ade85daae041","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.263 [XNIO-1 task-1] O_rHxKBETma1Fkpekc4xyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.266 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71ded75c +23:10:18.267 [XNIO-1 task-1] NX9_KLfoR8K7Zy7Ti2CFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.267 [XNIO-1 task-1] NX9_KLfoR8K7Zy7Ti2CFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.267 [XNIO-1 task-1] NX9_KLfoR8K7Zy7Ti2CFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.273 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aea70439-ab60-4913-9663-b9afd7163517 +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.283 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.284 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.284 [XNIO-1 task-1] b7KW78BYTxmsoXwmTcdcTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10c1af99-3d74-4953-ad95-af6b5948","clientDesc":"f46f1b3c-2065-40bb-83c1-936d9023863d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +23:10:18.287 [XNIO-1 task-1] lICzR82cSL-8iXUGHdBPpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/55e53125-5a93-40ad-8a5f-dbb5de74b1d9 +23:10:18.287 [XNIO-1 task-1] lICzR82cSL-8iXUGHdBPpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +23:10:18.287 [XNIO-1 task-1] lICzR82cSL-8iXUGHdBPpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.287 [XNIO-1 task-1] lICzR82cSL-8iXUGHdBPpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55e53125-5a93-40ad-8a5f-dbb5de74b1d9, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:18.289 [XNIO-1 task-1] EgF6mgURTzmy-4oW14CPCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.289 [XNIO-1 task-1] EgF6mgURTzmy-4oW14CPCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +23:10:18.296 [XNIO-1 task-1] HRtZwvzBR6i0V8Frl-iDHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a +23:10:18.296 [XNIO-1 task-1] HRtZwvzBR6i0V8Frl-iDHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.296 [XNIO-1 task-1] HRtZwvzBR6i0V8Frl-iDHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +23:10:18.296 [XNIO-1 task-1] HRtZwvzBR6i0V8Frl-iDHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2299d4a-4460-4ab6-b603-f0df6901792a", "e2299d4a-4460-4ab6-b603-f0df6901792a", clientId) +23:10:18.302 [XNIO-1 task-1] bEWVjWYTShGARqf1SFiUVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c35f9fd9-2998-4cee-9cc7-afe7cca9797b +23:10:18.302 [XNIO-1 task-1] bEWVjWYTShGARqf1SFiUVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.302 [XNIO-1 task-1] bEWVjWYTShGARqf1SFiUVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.302 [XNIO-1 task-1] bEWVjWYTShGARqf1SFiUVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c35f9fd9-2998-4cee-9cc7-afe7cca9797b +23:10:18.309 [XNIO-1 task-1] BUaHKN9sRMuhv0iwg10s3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.309 [XNIO-1 task-1] BUaHKN9sRMuhv0iwg10s3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.309 [XNIO-1 task-1] BUaHKN9sRMuhv0iwg10s3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.322 [XNIO-1 task-1] UJWGdQaXRpS0qJwIQjsoKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.322 [XNIO-1 task-1] UJWGdQaXRpS0qJwIQjsoKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.322 [XNIO-1 task-1] UJWGdQaXRpS0qJwIQjsoKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.323 [XNIO-1 task-1] UJWGdQaXRpS0qJwIQjsoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.331 [XNIO-1 task-1] 4Fa5-K14R_eeREwS05JreQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.331 [XNIO-1 task-1] 4Fa5-K14R_eeREwS05JreQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.332 [XNIO-1 task-1] 4Fa5-K14R_eeREwS05JreQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.332 [XNIO-1 task-1] 4Fa5-K14R_eeREwS05JreQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.345 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:71ded75c +23:10:18.345 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71ded75c +23:10:18.345 [XNIO-1 task-1] xw9vPpJrSkyNTBY0VT6gwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.345 [XNIO-1 task-1] xw9vPpJrSkyNTBY0VT6gwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.359 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:71ded75c +23:10:18.362 [XNIO-1 task-1] lhr61TPDThKRrh7QBnJW_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.362 [XNIO-1 task-1] lhr61TPDThKRrh7QBnJW_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.362 [XNIO-1 task-1] lhr61TPDThKRrh7QBnJW_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.362 [XNIO-1 task-1] lhr61TPDThKRrh7QBnJW_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +Jun 28, 2024 11:10:23 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +23:10:18.371 [XNIO-1 task-1] BxESxrerTqmsthlQjsqRbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740, base path is set to: null +23:10:18.371 [XNIO-1 task-1] BxESxrerTqmsthlQjsqRbA DEBUG com.networknt.schema.TypeValidator debug - validate( "6911e5bb-39cc-4308-b56e-6da4b3f8b740", "6911e5bb-39cc-4308-b56e-6da4b3f8b740", clientId) +23:10:18.373 [XNIO-1 task-1] EJf6w81YQqaKD054xDcIsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.373 [XNIO-1 task-1] EJf6w81YQqaKD054xDcIsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.373 [XNIO-1 task-1] EJf6w81YQqaKD054xDcIsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.373 [XNIO-1 task-1] EJf6w81YQqaKD054xDcIsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.373 [XNIO-1 task-1] EJf6w81YQqaKD054xDcIsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +23:10:18.384 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740 +23:10:18.385 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.385 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.385 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +23:10:18.385 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.385 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740, base path is set to: null +23:10:18.385 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6911e5bb-39cc-4308-b56e-6da4b3f8b740 +23:10:18.385 [XNIO-1 task-1] 5ZANzmGBToKVVuuCDxgHvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6911e5bb-39cc-4308-b56e-6da4b3f8b740", "6911e5bb-39cc-4308-b56e-6da4b3f8b740", clientId) +23:10:18.389 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:71ded75c + ... 13 more + +23:10:18.392 [XNIO-1 task-1] TVvrnHAPQhGW0bq8hLbXAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/abc4d7d4-95d0-4c40-b520-497830e22cb5, base path is set to: null +23:10:18.392 [XNIO-1 task-1] TVvrnHAPQhGW0bq8hLbXAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.392 [XNIO-1 task-1] TVvrnHAPQhGW0bq8hLbXAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.392 [XNIO-1 task-1] TVvrnHAPQhGW0bq8hLbXAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/abc4d7d4-95d0-4c40-b520-497830e22cb5, base path is set to: null +23:10:18.392 [XNIO-1 task-1] TVvrnHAPQhGW0bq8hLbXAg DEBUG com.networknt.schema.TypeValidator debug - validate( "abc4d7d4-95d0-4c40-b520-497830e22cb5", "abc4d7d4-95d0-4c40-b520-497830e22cb5", clientId) +23:10:18.401 [XNIO-1 task-1] H6SKNiR7TcSSpWVbgJHKJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.402 [XNIO-1 task-1] H6SKNiR7TcSSpWVbgJHKJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.402 [XNIO-1 task-1] H6SKNiR7TcSSpWVbgJHKJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.402 [XNIO-1 task-1] H6SKNiR7TcSSpWVbgJHKJg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.409 [XNIO-1 task-1] a3PnjXerRx-6sD_Y7ija9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.409 [XNIO-1 task-1] a3PnjXerRx-6sD_Y7ija9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.409 [XNIO-1 task-1] a3PnjXerRx-6sD_Y7ija9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.409 [XNIO-1 task-1] a3PnjXerRx-6sD_Y7ija9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.424 [XNIO-1 task-1] t9wktdL1Qki_w4Z1MAJYdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.424 [XNIO-1 task-1] t9wktdL1Qki_w4Z1MAJYdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.424 [XNIO-1 task-1] t9wktdL1Qki_w4Z1MAJYdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.426 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:71ded75c +23:10:18.440 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.441 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.441 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7a9ce3d-bd26-40b8-82b2-307840fb","clientDesc":"edea4064-d0de-417d-9c5c-b3241d96b756","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.442 [XNIO-1 task-1] Et8vizeXS1q2yjLs-vxk9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.445 [XNIO-1 task-1] 13G-MxWtRkS5qmY2K-nHZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88810ab3-1c9c-48e9-a83e-4d71e3a12785 +23:10:18.445 [XNIO-1 task-1] 13G-MxWtRkS5qmY2K-nHZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.445 [XNIO-1 task-1] 13G-MxWtRkS5qmY2K-nHZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.445 [XNIO-1 task-1] 13G-MxWtRkS5qmY2K-nHZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88810ab3-1c9c-48e9-a83e-4d71e3a12785 +23:10:18.453 [XNIO-1 task-1] QamMgSWSTlaCjat2t9JX-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/88810ab3-1c9c-48e9-a83e-4d71e3a12785, base path is set to: null +23:10:18.454 [XNIO-1 task-1] QamMgSWSTlaCjat2t9JX-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.454 [XNIO-1 task-1] QamMgSWSTlaCjat2t9JX-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.454 [XNIO-1 task-1] QamMgSWSTlaCjat2t9JX-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/88810ab3-1c9c-48e9-a83e-4d71e3a12785, base path is set to: null +23:10:18.454 [XNIO-1 task-1] QamMgSWSTlaCjat2t9JX-A DEBUG com.networknt.schema.TypeValidator debug - validate( "88810ab3-1c9c-48e9-a83e-4d71e3a12785", "88810ab3-1c9c-48e9-a83e-4d71e3a12785", clientId) +23:10:18.455 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71ded75c +23:10:18.459 [XNIO-1 task-1] 2YTvTX4_RpGwVVtfcQS1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88810ab3-1c9c-48e9-a83e-4d71e3a12785 +23:10:18.459 [XNIO-1 task-1] 2YTvTX4_RpGwVVtfcQS1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.459 [XNIO-1 task-1] 2YTvTX4_RpGwVVtfcQS1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.459 [XNIO-1 task-1] 2YTvTX4_RpGwVVtfcQS1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88810ab3-1c9c-48e9-a83e-4d71e3a12785 +23:10:18.470 [XNIO-1 task-1] tOwIJt4mTc6B3s4ICcDYSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55e37e31-edbb-4333-8336-9951275e869b, base path is set to: null +23:10:18.470 [XNIO-1 task-1] tOwIJt4mTc6B3s4ICcDYSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.470 [XNIO-1 task-1] tOwIJt4mTc6B3s4ICcDYSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.470 [XNIO-1 task-1] tOwIJt4mTc6B3s4ICcDYSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55e37e31-edbb-4333-8336-9951275e869b, base path is set to: null +23:10:18.470 [XNIO-1 task-1] tOwIJt4mTc6B3s4ICcDYSw DEBUG com.networknt.schema.TypeValidator debug - validate( "55e37e31-edbb-4333-8336-9951275e869b", "55e37e31-edbb-4333-8336-9951275e869b", clientId) +23:10:18.474 [XNIO-1 task-1] 3EZQ8U3GQF6S3h8RvLwBgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.474 [XNIO-1 task-1] 3EZQ8U3GQF6S3h8RvLwBgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.474 [XNIO-1 task-1] 3EZQ8U3GQF6S3h8RvLwBgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.474 [XNIO-1 task-1] 3EZQ8U3GQF6S3h8RvLwBgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.482 [XNIO-1 task-1] 2pO9HkTyRR2PzYbHtIinuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.482 [XNIO-1 task-1] 2pO9HkTyRR2PzYbHtIinuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.482 [XNIO-1 task-1] 2pO9HkTyRR2PzYbHtIinuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.488 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a4aa9e88-ec3a-4279-aeed-dc4a191e6cc9 +23:10:18.498 [XNIO-1 task-1] LZ_7QY52TkWdmWn7GLQiIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.498 [XNIO-1 task-1] LZ_7QY52TkWdmWn7GLQiIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.498 [XNIO-1 task-1] LZ_7QY52TkWdmWn7GLQiIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.500 [XNIO-1 task-1] LZ_7QY52TkWdmWn7GLQiIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.512 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.512 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.512 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0fc7e75-988c-4dfc-82c3-e94dc341","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.513 [XNIO-1 task-1] SEBROgnOSeq9e9Zc1eldpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.516 [XNIO-1 task-1] hxUwiQniSoqb5bmEEjEI7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.516 [XNIO-1 task-1] hxUwiQniSoqb5bmEEjEI7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.516 [XNIO-1 task-1] hxUwiQniSoqb5bmEEjEI7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.516 [XNIO-1 task-1] hxUwiQniSoqb5bmEEjEI7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.527 [XNIO-1 task-1] 9qgmFh_mSISK36zg5oUS-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.527 [XNIO-1 task-1] 9qgmFh_mSISK36zg5oUS-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.527 [XNIO-1 task-1] 9qgmFh_mSISK36zg5oUS-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.549 [XNIO-1 task-1] ZSWK7ldUQiWWQHX3o2b5LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.549 [XNIO-1 task-1] ZSWK7ldUQiWWQHX3o2b5LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.549 [XNIO-1 task-1] ZSWK7ldUQiWWQHX3o2b5LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.564 [XNIO-1 task-1] SF0ULkgUSv-WGeCJpit-GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.564 [XNIO-1 task-1] SF0ULkgUSv-WGeCJpit-GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.564 [XNIO-1 task-1] SF0ULkgUSv-WGeCJpit-GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.569 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ef274391-2960-4cc5-ac69-0d7ae590ffe2 +23:10:18.582 [XNIO-1 task-1] NBbQmv1dQeCqU-nfc5WAwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55e37e31-edbb-4333-8336-9951275e869b, base path is set to: null +23:10:18.582 [XNIO-1 task-1] NBbQmv1dQeCqU-nfc5WAwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.583 [XNIO-1 task-1] NBbQmv1dQeCqU-nfc5WAwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.583 [XNIO-1 task-1] NBbQmv1dQeCqU-nfc5WAwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55e37e31-edbb-4333-8336-9951275e869b, base path is set to: null +23:10:18.583 [XNIO-1 task-1] NBbQmv1dQeCqU-nfc5WAwg DEBUG com.networknt.schema.TypeValidator debug - validate( "55e37e31-edbb-4333-8336-9951275e869b", "55e37e31-edbb-4333-8336-9951275e869b", clientId) +23:10:18.587 [XNIO-1 task-1] b0A8KtODQPmAdvwjudSIPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/55e53125-5a93-40ad-8a5f-dbb5de74b1d9 +23:10:18.587 [XNIO-1 task-1] b0A8KtODQPmAdvwjudSIPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.587 [XNIO-1 task-1] b0A8KtODQPmAdvwjudSIPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.587 [XNIO-1 task-1] b0A8KtODQPmAdvwjudSIPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/55e53125-5a93-40ad-8a5f-dbb5de74b1d9 +23:10:18.590 [XNIO-1 task-1] cnTb1ZeiTiOv8EjNuBZi0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.590 [XNIO-1 task-1] cnTb1ZeiTiOv8EjNuBZi0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.590 [XNIO-1 task-1] cnTb1ZeiTiOv8EjNuBZi0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.590 [XNIO-1 task-1] cnTb1ZeiTiOv8EjNuBZi0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.597 [XNIO-1 task-1] ohKBTCiaS4KIKSiIt0trgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a4aa9e88-ec3a-4279-aeed-dc4a191e6cc9, base path is set to: null +23:10:18.597 [XNIO-1 task-1] ohKBTCiaS4KIKSiIt0trgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.597 [XNIO-1 task-1] ohKBTCiaS4KIKSiIt0trgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.597 [XNIO-1 task-1] ohKBTCiaS4KIKSiIt0trgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a4aa9e88-ec3a-4279-aeed-dc4a191e6cc9, base path is set to: null +23:10:18.598 [XNIO-1 task-1] ohKBTCiaS4KIKSiIt0trgA DEBUG com.networknt.schema.TypeValidator debug - validate( "a4aa9e88-ec3a-4279-aeed-dc4a191e6cc9", "a4aa9e88-ec3a-4279-aeed-dc4a191e6cc9", clientId) +23:10:18.602 [XNIO-1 task-1] kObNx2FRQICeyjWjWHSqww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.602 [XNIO-1 task-1] kObNx2FRQICeyjWjWHSqww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.602 [XNIO-1 task-1] kObNx2FRQICeyjWjWHSqww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.602 [XNIO-1 task-1] kObNx2FRQICeyjWjWHSqww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG com.networknt.schema.TypeValidator debug - validate( "fdea7fdd-e2e3-49d7-aa37-944566e9bb2a", {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG com.networknt.schema.TypeValidator debug - validate( "964721eb-0606-4be1-9ff9-cbd5ecf7", {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.614 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"964721eb-0606-4be1-9ff9-cbd5ecf7","clientDesc":"fdea7fdd-e2e3-49d7-aa37-944566e9bb2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.615 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.615 [XNIO-1 task-1] qQ8Xf6e-QKqgybgCgC3UhA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.617 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.617 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.618 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0138bc55-f4ba-4c09-a324-27510b06","clientDesc":"0320734b-aade-430e-80b6-d49a014dec55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.619 [XNIO-1 task-1] kLy3GChmRvSsFyg3WJkyfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.620 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.620 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG com.networknt.schema.TypeValidator debug - validate( "a60328bc-cbb4-4a09-ad71-49e4500f628f", {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG com.networknt.schema.TypeValidator debug - validate( "6a35c7c1-1adf-4af2-9310-f1616d39", {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6a35c7c1-1adf-4af2-9310-f1616d39","clientDesc":"a60328bc-cbb4-4a09-ad71-49e4500f628f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.621 [XNIO-1 task-1] XicY4umqTlep8VT5afkYOg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.623 [XNIO-1 task-1] YE3YT_5YSpmmUj6VUJ5q8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0e92d67-c5b5-4d68-9be8-c28737e8419a, base path is set to: null +23:10:18.623 [XNIO-1 task-1] YE3YT_5YSpmmUj6VUJ5q8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.624 [XNIO-1 task-1] YE3YT_5YSpmmUj6VUJ5q8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.624 [XNIO-1 task-1] YE3YT_5YSpmmUj6VUJ5q8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0e92d67-c5b5-4d68-9be8-c28737e8419a, base path is set to: null +23:10:18.624 [XNIO-1 task-1] YE3YT_5YSpmmUj6VUJ5q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e92d67-c5b5-4d68-9be8-c28737e8419a", "a0e92d67-c5b5-4d68-9be8-c28737e8419a", clientId) +23:10:18.626 [XNIO-1 task-1] LHJijOtuQ8i1BgnzEfVjxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.626 [XNIO-1 task-1] LHJijOtuQ8i1BgnzEfVjxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.626 [XNIO-1 task-1] LHJijOtuQ8i1BgnzEfVjxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.626 [XNIO-1 task-1] LHJijOtuQ8i1BgnzEfVjxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.636 [XNIO-1 task-1] tI7IJ4I4TNO1CgaSlP0SNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef274391-2960-4cc5-ac69-0d7ae590ffe2 +23:10:18.636 [XNIO-1 task-1] tI7IJ4I4TNO1CgaSlP0SNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.636 [XNIO-1 task-1] tI7IJ4I4TNO1CgaSlP0SNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +23:10:18.637 [XNIO-1 task-1] tI7IJ4I4TNO1CgaSlP0SNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ef274391-2960-4cc5-ac69-0d7ae590ffe2 +23:10:18.637 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ef274391-2960-4cc5-ac69-0d7ae590ffe2 +23:10:18.643 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7910129e +23:10:18.644 [XNIO-1 task-1] 0UXLdlMVRpqAeXu0RNclIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +23:10:18.644 [XNIO-1 task-1] 0UXLdlMVRpqAeXu0RNclIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.645 [XNIO-1 task-1] 0UXLdlMVRpqAeXu0RNclIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.645 [XNIO-1 task-1] 0UXLdlMVRpqAeXu0RNclIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2299d4a-4460-4ab6-b603-f0df6901792a, base path is set to: null +23:10:18.646 [XNIO-1 task-1] 0UXLdlMVRpqAeXu0RNclIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2299d4a-4460-4ab6-b603-f0df6901792a", "e2299d4a-4460-4ab6-b603-f0df6901792a", clientId) +23:10:18.650 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d8597737 +23:10:18.654 [XNIO-1 task-1] kh4_M-B4TyKHXS2vqBUEzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.656 [XNIO-1 task-1] kh4_M-B4TyKHXS2vqBUEzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.656 [XNIO-1 task-1] kh4_M-B4TyKHXS2vqBUEzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.666 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d8597737 +23:10:18.677 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d8597737 +23:10:18.678 [XNIO-1 task-1] Mlgt1h8PSxG59wklcUoXaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.678 [XNIO-1 task-1] Mlgt1h8PSxG59wklcUoXaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.678 [XNIO-1 task-1] Mlgt1h8PSxG59wklcUoXaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.694 [XNIO-1 task-1] kcrKXb-QTnyaZ46MA-N9Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55e53125-5a93-40ad-8a5f-dbb5de74b1d9, base path is set to: null +23:10:18.694 [XNIO-1 task-1] kcrKXb-QTnyaZ46MA-N9Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.695 [XNIO-1 task-1] kcrKXb-QTnyaZ46MA-N9Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +23:10:18.695 [XNIO-1 task-1] kcrKXb-QTnyaZ46MA-N9Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55e53125-5a93-40ad-8a5f-dbb5de74b1d9, base path is set to: null +23:10:18.695 [XNIO-1 task-1] kcrKXb-QTnyaZ46MA-N9Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "55e53125-5a93-40ad-8a5f-dbb5de74b1d9", "55e53125-5a93-40ad-8a5f-dbb5de74b1d9", clientId) +23:10:18.706 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.706 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.706 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea", {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "106fe073-5d86-46ac-b2e3-9e64963c", {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"106fe073-5d86-46ac-b2e3-9e64963c","clientDesc":"e8dd5a7c-526a-46b1-a8c3-fbc7b54dbaea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.707 [XNIO-1 task-1] Kes-jraETD6adnkAidyTlQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:18.712 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.712 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +23:10:18.712 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +23:10:18.713 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.713 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.713 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.713 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.713 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +23:10:18.713 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +23:10:18.714 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.714 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.714 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cea0b762-cf19-404d-93de-5a11c8ef","clientDesc":"f553b587-c3a9-4112-934f-cd42e660f23a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:18.714 [XNIO-1 task-1] z2qOsyI7SWmzxU1dwCRqQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +23:10:18.717 [XNIO-1 task-1] tZSMDV18TcG_lwZeADAp4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.717 [XNIO-1 task-1] tZSMDV18TcG_lwZeADAp4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +23:10:18.717 [XNIO-1 task-1] tZSMDV18TcG_lwZeADAp4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client diff --git a/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..2d608a4 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2262 @@ +23:10:18.926 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e92d67-c5b5-4d68-9be8-c28737e8419a", "a0e92d67-c5b5-4d68-9be8-c28737e8419a", client_id) +23:10:18.926 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:18.927 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:18.927 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:18.927 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:18.927 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:18.932 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:18.932 [XNIO-1 task-1] 2YP72ze7RiGWpiWmLDtEFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:18.938 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:18.938 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:18.938 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:18.938 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e92d67-c5b5-4d68-9be8-c28737e8419a", "a0e92d67-c5b5-4d68-9be8-c28737e8419a", client_id) +23:10:18.938 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:18.939 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:18.939 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:18.939 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:18.939 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:18.944 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:18.944 [XNIO-1 task-1] CWGmX8j0QeaOgYgNtmA7Og DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:18.952 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:18.952 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:18.952 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:18.952 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:18.953 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:18.953 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:18.953 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:18.953 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:18.954 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:18.964 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:18.964 [XNIO-1 task-1] vxnRms1lRyOL0huTuXK6XA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:18.977 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c8a9304c +23:10:19.036 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.037 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.037 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.037 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1b1064-5991-42ec-bf94-0384ba4315c5", "fc1b1064-5991-42ec-bf94-0384ba4315c5", client_id) +23:10:19.037 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.037 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.037 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.037 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.038 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.044 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.044 [XNIO-1 task-1] 7bM2mTMqS7-YYORb3JjxTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.052 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.052 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.052 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.053 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1b1064-5991-42ec-bf94-0384ba4315c5", "fc1b1064-5991-42ec-bf94-0384ba4315c5", client_id) +23:10:19.053 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.053 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.053 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.053 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.053 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.063 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.063 [XNIO-1 task-1] NV42k259Q3KbSVGRiw-Lww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.068 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.068 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.068 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.068 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1b1064-5991-42ec-bf94-0384ba4315c5", "fc1b1064-5991-42ec-bf94-0384ba4315c5", client_id) +23:10:19.069 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.069 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.069 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.069 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.069 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.075 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.075 [XNIO-1 task-1] E9_F0BoQRF-Utv9NMgE1Pw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG com.networknt.schema.TypeValidator debug - validate( "3512e897-8d26-47af-8aaf-a9b640bb8257", "3512e897-8d26-47af-8aaf-a9b640bb8257", client_id) +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.098 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.099 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.105 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.105 [XNIO-1 task-1] ZYdm6BwfRgmAUcVdCP9sFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.109 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.109 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.110 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.110 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG com.networknt.schema.TypeValidator debug - validate( "3512e897-8d26-47af-8aaf-a9b640bb8257", "3512e897-8d26-47af-8aaf-a9b640bb8257", client_id) +23:10:19.110 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.110 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.110 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.110 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.110 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.116 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.116 [XNIO-1 task-1] 1T0P2jauSpCsGuOdl-5HCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG com.networknt.schema.TypeValidator debug - validate( "3512e897-8d26-47af-8aaf-a9b640bb8257", "3512e897-8d26-47af-8aaf-a9b640bb8257", client_id) +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.122 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.129 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.129 [XNIO-1 task-1] dfoSMXR3SLGxSEK-bOJ-8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.135 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.135 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.135 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.136 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG com.networknt.schema.TypeValidator debug - validate( "3512e897-8d26-47af-8aaf-a9b640bb8257", "3512e897-8d26-47af-8aaf-a9b640bb8257", client_id) +23:10:19.136 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.136 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.136 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.136 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.136 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.144 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.144 [XNIO-1 task-1] I1LcbJ7kSz-yErC1-obnAg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.189 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.189 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.189 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.189 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "65d4459a-9c4c-4cc4-afe8-e10ba535081b", "65d4459a-9c4c-4cc4-afe8-e10ba535081b", client_id) +23:10:19.189 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.190 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.190 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.190 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.190 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.197 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.197 [XNIO-1 task-1] O77NVY-eSLiXcqxyRVSzNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG com.networknt.schema.TypeValidator debug - validate( "65d4459a-9c4c-4cc4-afe8-e10ba535081b", "65d4459a-9c4c-4cc4-afe8-e10ba535081b", client_id) +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.203 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.204 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.210 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5a650b9 +23:10:19.211 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.212 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.213 [XNIO-1 task-1] GiZgkjZDT_CCvMVbemO5vw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Y1LclXnbT8SKkm40LzHmHA +23:10:19.241 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.241 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.241 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.242 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.242 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.242 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.242 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.242 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.247 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.247 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.249 [XNIO-1 task-1] x9_BTphTSM62vJ02_pCKuw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4NFQnRPBSeSOMmCfocUEbw +23:10:19.252 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.252 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.252 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.252 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.252 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.252 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.252 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.253 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.259 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.259 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.260 [XNIO-1 task-1] a5njPVOeR-WQKMq3hS54ZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eaUrUJSdTX2K28Ytq857RA +23:10:19.273 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a27e9039 +23:10:19.283 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.283 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.283 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.283 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:19.283 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.284 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.284 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.284 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.284 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.291 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.291 [XNIO-1 task-1] TKH6khk1RPuFLLGfhtw-BQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.300 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.300 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.300 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.300 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:19.300 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.300 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.301 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.301 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.301 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.306 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.306 [XNIO-1 task-1] 6TCa72duRm-AYJvmR04-ew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.311 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.311 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.312 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.312 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:19.313 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.313 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.313 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.313 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.313 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.321 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.321 [XNIO-1 task-1] GH5_ZH9GTOCAY7YyLbxJcA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.328 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.328 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.328 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.328 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:19.328 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.328 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.328 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.329 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.329 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.334 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.334 [XNIO-1 task-1] xjpnzj9eRnyduOImNTRbSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.341 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5a650b9 +23:10:19.357 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.357 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.357 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.358 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:19.358 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.358 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.358 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.358 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.358 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.363 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.364 [XNIO-1 task-1] L4yBloR3Sf2GsPD6k7feJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG com.networknt.schema.TypeValidator debug - validate( "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", client_id) +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.370 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.371 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.376 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.377 [XNIO-1 task-1] yefJzKL3Tr-MNU9kIk6dGg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.379 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.379 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.379 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.380 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", client_id) +23:10:19.380 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.380 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.380 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.380 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.380 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.387 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.387 [XNIO-1 task-1] 5V2LyO4nQw-waNjHO6nnjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.389 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.389 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.390 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.390 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", client_id) +23:10:19.390 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.390 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.390 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.390 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.390 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.396 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.396 [XNIO-1 task-1] to68eJQzRpSlSKolekC3Rw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.446 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e08fec11-69d4-4b2c-adcc-ac37df9705a4 +23:10:19.448 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e08fec11-69d4-4b2c-adcc-ac37df9705a4 +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.491 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.497 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.497 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.504 [XNIO-1 task-1] kgkpZFcjReyQTXitzOgWOg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LSlyLlJSRPGCzaZO0i0qtg +23:10:19.507 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.507 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.507 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.508 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.508 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.508 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.508 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.508 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.521 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.521 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.522 [XNIO-1 task-1] aGqiI3zMRG-15Fz-qF2x8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jFxVHBS-T5KLHefGBxwYbw +23:10:19.528 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.528 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.528 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.528 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.528 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.529 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.529 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.529 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.535 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.535 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.536 [XNIO-1 task-1] ANRougJJS7Cj09ohTayLuA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-P8Jjm-TSRiOB60slTpLKw +23:10:19.558 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.558 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.558 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.558 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.559 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.559 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.559 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.559 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.565 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.565 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.565 [XNIO-1 task-1] 3OaWw7q3RtuSRQ55KxMv9A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pOKv2hFJT1eKMz0TjGG_pA +23:10:19.573 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.573 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.573 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.573 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.573 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.573 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.573 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.574 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.579 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.580 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.580 [XNIO-1 task-1] -ZecXhr8QPSrp_iWbl4SQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=irECC5oiSvCEBewQbp-Mag +23:10:19.607 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.607 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.607 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.607 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.607 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.607 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.608 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.608 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.613 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.614 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.615 [XNIO-1 task-1] QFjpUuGSQ0eOYSm3nziEGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IKMkVfu1REusTgZnf-oQhg +23:10:19.616 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7671566b-03f0-4ccd-811d-81eeebfb0d5c +23:10:19.620 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.620 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.620 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.620 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG com.networknt.schema.TypeValidator debug - validate( "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", client_id) +23:10:19.620 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.620 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.621 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.621 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.621 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.626 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.626 [XNIO-1 task-1] aXzNOoZiSeeDRQKLz_MZrg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.635 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.635 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.635 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.635 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1b1064-5991-42ec-bf94-0384ba4315c5", "fc1b1064-5991-42ec-bf94-0384ba4315c5", client_id) +23:10:19.636 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.636 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.636 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.636 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.636 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.642 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.642 [XNIO-1 task-1] 2OGaz2DDRKamt5V-F6Ywrg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.669 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "3512e897-8d26-47af-8aaf-a9b640bb8257", "3512e897-8d26-47af-8aaf-a9b640bb8257", client_id) +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.670 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.676 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.676 [XNIO-1 task-1] bm2q9TbcTdOGz61AlLb7Vw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.691 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a27e9039 +23:10:19.706 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7beaaa89 +23:10:19.707 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7beaaa89 +23:10:19.720 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.721 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.721 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.721 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.721 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.721 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.721 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.721 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.727 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.727 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.728 [XNIO-1 task-1] 1UmZYZ8PQWWKrInVei8f8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bLRb0YCnQ9aZqmdxc2GQ7A +23:10:19.731 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.731 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.731 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.731 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.731 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.731 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.732 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.732 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.737 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.737 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.738 [XNIO-1 task-1] zBEPjyNTT-a4vEfZsTRnow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hfiw5BxnTIOyxgCEeyBXpw +23:10:19.774 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5a650b9 +23:10:19.788 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.788 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.788 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.789 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.789 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.789 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.789 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.789 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.795 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.795 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.796 [XNIO-1 task-1] G1Tw1KZiTJGGUvtLNbG0ZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7SgYDhuWTW2taXFyb_zLKg +23:10:19.806 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.806 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.806 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.806 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.806 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.806 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.806 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.807 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.809 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c5a650b9 +23:10:19.812 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.812 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.813 [XNIO-1 task-1] 73Q8pUN7RUin3yoXQOO-sA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UanIbeLZQee09KNl_p-Big +23:10:19.817 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.817 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.817 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.818 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.818 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.818 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.818 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.819 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.825 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.825 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.826 [XNIO-1 task-1] P7QTRFOjTpqGQ5NomBdbAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k5KLnjXLSuCjF5ts3rlRpg +23:10:19.879 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.879 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.879 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.880 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.880 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.880 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.880 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.880 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.884 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.885 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.885 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.885 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG com.networknt.schema.TypeValidator debug - validate( "aZJeQgokLLsxD0qZUGxzf12zX5TEbbIAq-5_nJ2bTlw", "aZJeQgokLLsxD0qZUGxzf12zX5TEbbIAq-5_nJ2bTlw", code_challenge) +23:10:19.885 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:19.886 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.886 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.886 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:19.886 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:19.886 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:19.887 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:19.887 [XNIO-1 task-1] 9pzoqvFjToiOiNf1T7WLQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:19.893 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.893 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.894 [XNIO-1 task-2] IAWy1q44SpKSzaa5w6BzWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sWkamNkbSSKr0oMXZBVYAg +23:10:19.940 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.940 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.940 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.940 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.941 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.941 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.941 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.941 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.949 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.949 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.951 [XNIO-1 task-2] EHukrJnFTayEQNjSrtKhbw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7d2P6HoPRBWGVbJWD2iqoA +23:10:19.953 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5563dcae-8479-44d2-9e85-a7a06816d755 +23:10:19.956 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.956 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.956 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.957 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.957 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.957 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.957 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.957 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.963 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.963 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.964 [XNIO-1 task-2] 5c5SAgLaQQqaO8zQNYaBlQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7Khs-a_6Qt-AP912MKXiVg +23:10:19.964 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.964 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.964 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:19.964 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "399aa3f6-6cc2-4eee-b963-1740a58de97a", "399aa3f6-6cc2-4eee-b963-1740a58de97a", client_id) +23:10:19.964 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:19.964 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:19.965 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.965 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.965 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.970 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.970 [XNIO-1 task-1] lJGdYIuaTtCpqCdlzbbVaQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.970 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", client_id) +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:19.971 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:19.977 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:19.978 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:19.978 [XNIO-1 task-2] 59dzknTHRZutOq-6RQRqcQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1ClZjZszTBaQgUVVgNWL0A +23:10:19.995 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:31382378 +23:10:20.021 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:31382378 +23:10:20.025 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.026 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.026 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.026 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "vV3geeW2Bib-WMJlBLjJw7UDxldsgHAhmHA7YFR5yzE", "vV3geeW2Bib-WMJlBLjJw7UDxldsgHAhmHA7YFR5yzE", code_challenge) +23:10:20.026 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.026 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.026 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.026 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.027 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.027 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.032 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.032 [XNIO-1 task-2] Voi8emOtQUyoKz6f0X7SiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.035 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.035 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.035 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.035 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "997379fa-3fb5-4d26-aef0-0ce5177015cf", "997379fa-3fb5-4d26-aef0-0ce5177015cf", client_id) +23:10:20.036 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.036 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.036 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.036 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.036 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.042 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.042 [XNIO-1 task-1] HX8bqnR3TWOtABOvMo6QaQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.048 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.049 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.049 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.049 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG com.networknt.schema.TypeValidator debug - validate( "997379fa-3fb5-4d26-aef0-0ce5177015cf", "997379fa-3fb5-4d26-aef0-0ce5177015cf", client_id) +23:10:20.050 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.050 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.050 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.050 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.050 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.056 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.056 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.056 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.056 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.056 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.056 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d0e7bc93-1ed7-4dbd-8613-1abb5e5ca09c", "d0e7bc93-1ed7-4dbd-8613-1abb5e5ca09c", client_id) +23:10:20.056 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.056 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.057 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.057 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.057 [XNIO-1 task-1] Op2lgVUvSvSyoVPI-E2Apw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-FUusNOQRZKQ259_JirU0A +23:10:20.058 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.060 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.060 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.060 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.061 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.061 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.061 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.061 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.061 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.063 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.063 [XNIO-1 task-2] imHvg6nsRJ-ffF1KnYHzLQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.067 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.068 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.068 [XNIO-1 task-1] ZhXAQSB-SPWJBfQZMjZ5Sg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.096 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.096 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.096 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.096 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3d9a794-0750-4a3c-8b80-ffe2acb4831c", "f3d9a794-0750-4a3c-8b80-ffe2acb4831c", client_id) +23:10:20.097 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.097 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.097 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.097 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.097 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.103 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.103 [XNIO-1 task-1] f6wu5i45T7e_2AAfr6SvUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.110 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.110 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.110 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.110 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "65d4459a-9c4c-4cc4-afe8-e10ba535081b", "65d4459a-9c4c-4cc4-afe8-e10ba535081b", client_id) +23:10:20.110 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.110 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.111 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.111 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.111 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.114 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c91bbc4e-e0a6-4c74-b38a-929783c2cb9b +23:10:20.117 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.117 [XNIO-1 task-1] rn6lDAowRA2D1XxSe-wDBQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.155 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.155 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.155 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.157 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG com.networknt.schema.TypeValidator debug - validate( "65d4459a-9c4c-4cc4-afe8-e10ba535081b", "65d4459a-9c4c-4cc4-afe8-e10ba535081b", client_id) +23:10:20.157 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.157 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.158 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.158 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.158 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.165 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "A_vho0Pq4qYQh5Tqqxq_XxZcysGtWBU-Fzh8lmJ2R1Q", "A_vho0Pq4qYQh5Tqqxq_XxZcysGtWBU-Fzh8lmJ2R1Q", code_challenge) +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e012978-016e-4f93-8603-4703c33289ad", "9e012978-016e-4f93-8603-4703c33289ad", client_id) +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.165 [XNIO-1 task-1] sa1Q1elHSrWYAQUTiC1PEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ye3tuzAKT-iGCso61Vv8rg +23:10:20.165 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.166 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.172 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.172 [XNIO-1 task-2] VgS3wcmdSWagPE1yTewfTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.178 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.178 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.178 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.179 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG com.networknt.schema.TypeValidator debug - validate( "pxnuF17kLp8qXh1s2oF-dDGbkm3M1PROKqooxgcxsL4", "pxnuF17kLp8qXh1s2oF-dDGbkm3M1PROKqooxgcxsL4", code_challenge) +23:10:20.179 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.179 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.179 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.179 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.179 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.179 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.185 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.185 [XNIO-1 task-2] bL6uxO9sTgyvarBbgl1TFg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.196 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.196 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.196 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.196 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "o_fo3CyJ-R9vAujc5mEA5qyRX765HmsrDqPnnLaVx50", "o_fo3CyJ-R9vAujc5mEA5qyRX765HmsrDqPnnLaVx50", code_challenge) +23:10:20.197 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.197 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.197 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.197 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.197 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.197 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.198 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.199 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.199 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.199 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.199 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.199 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.199 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.199 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.203 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.203 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.204 [XNIO-1 task-2] o_rPYY4LSFamZkGEb3e3Hw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qvLpNJriQ5WUNmu7CzXq5Q +23:10:20.204 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.204 [XNIO-1 task-1] qvV5ooIBQJOUgeq9Jp2XUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.207 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7beaaa89 +23:10:20.220 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.220 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.220 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.221 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "POwIYdOaQvnpevD9i2AS12O6y1FIG0vHglQlDp67tEs", "POwIYdOaQvnpevD9i2AS12O6y1FIG0vHglQlDp67tEs", code_challenge) +23:10:20.221 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.221 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.221 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.221 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.221 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.221 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.228 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.228 [XNIO-1 task-1] 9fYHI-eXQTWWS5-JmzKXLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.242 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.242 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.242 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.242 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", client_id) +23:10:20.242 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.243 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.243 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.243 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.243 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.245 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.245 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.245 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.246 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG com.networknt.schema.TypeValidator debug - validate( "o2_STD1X-RnKMplLp8UnSwYHET5h1fVUc29W0cQ4G4w", "o2_STD1X-RnKMplLp8UnSwYHET5h1fVUc29W0cQ4G4w", code_challenge) +23:10:20.246 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.246 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.246 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.246 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.246 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.246 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.251 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.251 [XNIO-1 task-1] 3dd4Lqu9QzyfYm9qG6GjYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.252 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.252 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.253 [XNIO-1 task-2] rlJtjzF_SUOo-ixXuqePxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gH0N0CW9SAOF8F6__KkxxQ +23:10:20.296 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:907b2a4f-df0f-4899-8c78-75836f8f075e +23:10:20.310 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.310 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.310 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.311 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "997379fa-3fb5-4d26-aef0-0ce5177015cf", "997379fa-3fb5-4d26-aef0-0ce5177015cf", client_id) +23:10:20.311 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.311 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.311 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.311 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.311 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.314 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:31382378 +23:10:20.316 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.317 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.318 [XNIO-1 task-2] HAVrtMW7QJC2dkAF5MzwFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ht_hW5beS0a7k_xXleZnWQ +23:10:20.322 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.322 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.322 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.323 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG com.networknt.schema.TypeValidator debug - validate( "997379fa-3fb5-4d26-aef0-0ce5177015cf", "997379fa-3fb5-4d26-aef0-0ce5177015cf", client_id) +23:10:20.323 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.323 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.323 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.323 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.323 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.328 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.329 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.329 [XNIO-1 task-2] P8YUOzEdTt2oA5CJQUxmag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uqj9bY0GTZiPz4qJ18oSEg +23:10:20.336 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5f845934-7eee-4d55-82c4-1a0c9907e674 +23:10:20.347 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.347 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.347 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.348 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG com.networknt.schema.TypeValidator debug - validate( "_9mPOiXN7A7__IaWAodK1eHenYMyCAEfCFh2gaUrbLs", "_9mPOiXN7A7__IaWAodK1eHenYMyCAEfCFh2gaUrbLs", code_challenge) +23:10:20.348 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.348 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.348 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.348 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.348 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.348 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.353 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.353 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.353 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.354 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.354 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.354 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.354 [XNIO-1 task-2] 7iPp8V7nQ72Mg-k8GrArDA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.354 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.354 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.355 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.356 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.362 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.362 [XNIO-1 task-1] UP0jRJyjRLiropcLTbS2ng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.375 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.376 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.376 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.376 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG com.networknt.schema.TypeValidator debug - validate( "p00Dwy_PRCHUD-xganwZ6cDA5O86XMowuOvMEY8F_O4", "p00Dwy_PRCHUD-xganwZ6cDA5O86XMowuOvMEY8F_O4", code_challenge) +23:10:20.376 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.377 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.377 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.377 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.377 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.377 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.384 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.384 [XNIO-1 task-1] TGCEitI1Sy62ijIVUp78zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG com.networknt.schema.TypeValidator debug - validate( "2qtPVJbfj2X_dH08hvpZWPm4cH30rSp1RpBOwne4OOw", "2qtPVJbfj2X_dH08hvpZWPm4cH30rSp1RpBOwne4OOw", code_challenge) +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.396 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.397 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.397 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.403 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.403 [XNIO-1 task-1] RcRlHAKpQ2idENHJar8TGg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.408 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.408 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.409 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.409 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG com.networknt.schema.TypeValidator debug - validate( "35dhstsBrgFJ1H7jIUIlRpVK3s6p1RhVTShbNTUnpI8", "35dhstsBrgFJ1H7jIUIlRpVK3s6p1RhVTShbNTUnpI8", code_challenge) +23:10:20.409 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.409 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.409 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.409 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.409 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.410 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.418 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.418 [XNIO-1 task-1] m5MrvEpMQwOBaIwfxgs5zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.424 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.425 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.425 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.425 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG com.networknt.schema.TypeValidator debug - validate( "qCbhzoi1NR-VF9saLbBTcNOO4xUR_xNQcjNq6cQivcs", "qCbhzoi1NR-VF9saLbBTcNOO4xUR_xNQcjNq6cQivcs", code_challenge) +23:10:20.425 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.425 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.425 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.426 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.426 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.426 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.432 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.432 [XNIO-1 task-1] eU8SEEiXQtybbQNCO2SK9A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.458 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.458 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.458 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.458 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "842ac253-db1e-4351-8565-ac833c41bf9b", "842ac253-db1e-4351-8565-ac833c41bf9b", client_id) +23:10:20.458 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.459 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.459 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.459 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.459 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.465 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.466 [XNIO-1 task-1] 2uO-FJCTRC-Wv6o3MhbHBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.469 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.469 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.469 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.469 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "PG_2tUcG1clHeldle1ivYNbKNyESDWYWQC0kM2eAk5Y", "PG_2tUcG1clHeldle1ivYNbKNyESDWYWQC0kM2eAk5Y", code_challenge) +23:10:20.469 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.469 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.470 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.470 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.470 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.470 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:31382378 +23:10:20.470 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.471 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.471 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.473 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.473 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.473 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.473 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.473 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.473 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.475 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.476 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.476 [XNIO-1 task-1] f9ncvasgTuq6qfjP8XvX6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nfDNUTAFQbSzM7NCHhv9nQ +23:10:20.479 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.479 [XNIO-1 task-2] zy-BvNwxRoKDh2BXHVylKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.488 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.490 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.490 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.490 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.490 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.490 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.490 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.490 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.491 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.496 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.496 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.498 [XNIO-1 task-2] 4nrmx3pTRLi0vok8zhDN8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YvP_IKqERaeAagksgwo7QQ +23:10:20.531 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.531 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.531 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.531 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG com.networknt.schema.TypeValidator debug - validate( "72148cd6-ff06-4f32-93cc-b43f8e1575da", "72148cd6-ff06-4f32-93cc-b43f8e1575da", client_id) +23:10:20.533 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.533 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.533 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.533 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.533 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.539 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.539 [XNIO-1 task-2] aaZADQ7RQ8CqMgD5fXbKNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.546 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.546 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.546 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.546 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG com.networknt.schema.TypeValidator debug - validate( "giy1H-KfcyaBUZcv4k0oAryF6fM9R4cSAndxX1fhDvM", "giy1H-KfcyaBUZcv4k0oAryF6fM9R4cSAndxX1fhDvM", code_challenge) +23:10:20.547 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.547 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.547 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.547 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.547 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.547 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.552 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.553 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.554 [XNIO-1 task-2] cSjqaPS6SXKyAGSxn9fObQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zjQZMMe8ScCOSbc_WDd_RQ +23:10:20.576 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.577 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.577 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.577 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.577 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.577 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.577 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.577 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.579 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:43c362db-b8c6-4553-87f2-a74a9950742f +23:10:20.582 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.582 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.582 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.582 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1b1064-5991-42ec-bf94-0384ba4315c5", "fc1b1064-5991-42ec-bf94-0384ba4315c5", client_id) +23:10:20.582 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.582 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.583 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.583 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.583 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.583 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.583 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4bf3f85e +23:10:20.583 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.583 [XNIO-1 task-2] 7Hi90MxMQjmyM3nTqF_pUg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.583 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:43c362db-b8c6-4553-87f2-a74a9950742f +23:10:20.586 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.586 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.586 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.586 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG com.networknt.schema.TypeValidator debug - validate( "72148cd6-ff06-4f32-93cc-b43f8e1575da", "72148cd6-ff06-4f32-93cc-b43f8e1575da", client_id) +23:10:20.586 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.586 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.587 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.589 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.589 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.589 [XNIO-1 task-1] FO_rLEnqQ6SAjHv2W9juvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.590 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.597 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.597 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.597 [XNIO-1 task-2] fFBbbAFDTu-f7_R4C0UCCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IUZ6UTgDRaaHHTNKF1ZlFQ +23:10:20.603 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.603 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.603 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.604 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.604 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.604 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.604 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.604 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.609 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b3a77c15 +23:10:20.611 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.611 [XNIO-1 task-2] pAFpYXN6SZGj-KOIdBZ-lw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.615 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3a77c15 +23:10:20.618 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.619 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.619 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.619 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG com.networknt.schema.TypeValidator debug - validate( "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", client_id) +23:10:20.619 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.619 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.619 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.619 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.622 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.622 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.622 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.622 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.622 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG com.networknt.schema.TypeValidator debug - validate( "3512e897-8d26-47af-8aaf-a9b640bb8257", "3512e897-8d26-47af-8aaf-a9b640bb8257", client_id) +23:10:20.623 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.623 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.623 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.623 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.623 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.628 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.628 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.629 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.629 [XNIO-1 task-1] 3y4MJWPqRjG_Xz08ah7Dew DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.629 [XNIO-1 task-2] aQmigSX0QDiUujrPBSxvtg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BWindRLvSH2m3yZb0Lp4xw +23:10:20.635 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.635 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.636 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.636 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", client_id) +23:10:20.636 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.636 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.636 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.636 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.636 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.642 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.643 [XNIO-1 task-1] VnxERa0UQ0WAlhvi2q35Ag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.650 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.650 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.650 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.650 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG com.networknt.schema.TypeValidator debug - validate( "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", client_id) +23:10:20.651 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.651 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.651 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.652 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.652 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.657 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.657 [XNIO-1 task-1] TJIwuuQMQF6QcY6aUb1SKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.692 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.692 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.692 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.693 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG com.networknt.schema.TypeValidator debug - validate( "I7bqKvg_WHTC1RDq4Slhi03FlqNlUYsY6P1eFAwDNzs", "I7bqKvg_WHTC1RDq4Slhi03FlqNlUYsY6P1eFAwDNzs", code_challenge) +23:10:20.693 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.693 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.693 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.693 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.693 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.693 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.699 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.699 [XNIO-1 task-1] hCDDV3sGTlyxv_UqGiBn2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.706 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.706 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.706 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.706 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG com.networknt.schema.TypeValidator debug - validate( "cuviX9yV7xSwIcvzZsMfNoZJpwSlAKG5XQuOIKs0baM", "cuviX9yV7xSwIcvzZsMfNoZJpwSlAKG5XQuOIKs0baM", code_challenge) +23:10:20.707 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.707 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.707 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.707 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.707 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.707 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.712 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.712 [XNIO-1 task-1] _4Rn2wJOTlqj-jin6PXZ6A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.718 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.718 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.718 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.719 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1b1064-5991-42ec-bf94-0384ba4315c5", "fc1b1064-5991-42ec-bf94-0384ba4315c5", client_id) +23:10:20.719 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.719 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.719 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.719 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.719 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.725 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.725 [XNIO-1 task-1] U5GVY3F8S3O5uRzzTSEuqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.730 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.730 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.731 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.731 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1b1064-5991-42ec-bf94-0384ba4315c5", "fc1b1064-5991-42ec-bf94-0384ba4315c5", client_id) +23:10:20.731 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.731 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.731 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.731 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.731 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.739 [XNIO-1 task-1] VPFQ7-wHQWG9iHO0qyqEZA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.740 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.742 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG com.networknt.schema.TypeValidator debug - validate( "3da01439-ca85-4fe4-bab3-12dc3986499c", "3da01439-ca85-4fe4-bab3-12dc3986499c", client_id) +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.743 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.746 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.747 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.747 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.747 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.747 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.747 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.747 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.747 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.750 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.750 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.752 [XNIO-1 task-2] o3P8qEXvQKuuzHX13x7G0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=S9PpVbG5TIStQ4aMhgwK9A +23:10:20.754 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.754 [XNIO-1 task-1] 9FHgza-yRzCv5I5OXG81jg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.756 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.756 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.757 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.757 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "67DVLRe1z5o3_ERaVmU9iLSgnsvY3jSy1t8s0kA-meg", "67DVLRe1z5o3_ERaVmU9iLSgnsvY3jSy1t8s0kA-meg", code_challenge) +23:10:20.757 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.757 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.757 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.757 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.757 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.758 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.758 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.758 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.758 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.758 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.758 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.758 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.758 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.758 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.764 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.764 [XNIO-1 task-2] 6h_pmeufTDCmy5Bk4aXZrg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.764 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.764 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.765 [XNIO-1 task-1] FOiYpHa4QlKEp8riWHKtlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yV_su8DEQqiFRoB7HLv0fA +23:10:20.768 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.768 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG com.networknt.schema.TypeValidator debug - validate( "ZFvbrQYqHUT1H5YFI2C96cDsF34EpdtOjBOO3vrpsRs", "ZFvbrQYqHUT1H5YFI2C96cDsF34EpdtOjBOO3vrpsRs", code_challenge) +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.769 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.772 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.772 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.772 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.772 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.772 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.772 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.773 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.773 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.775 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.775 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.777 [XNIO-1 task-2] bw47zYbGSjuXU7IsWBPmSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=417ZsBlISfSKdbNaER80KA +23:10:20.778 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.779 [XNIO-1 task-1] ZT2L5Yo0S1q6vLv2Injrvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.782 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.782 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.782 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.783 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG com.networknt.schema.TypeValidator debug - validate( "4acfed89-9f16-4d0c-9f1f-b8038b28210c", "4acfed89-9f16-4d0c-9f1f-b8038b28210c", client_id) +23:10:20.783 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.783 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.783 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.783 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.783 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.783 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.786 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.786 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.786 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.787 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.787 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.787 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.787 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.788 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.791 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.791 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.791 [XNIO-1 task-2] s9yWx6PiRhySKmURKu8lgA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=l_slD7lTSGqDMA-Isgqvyg +23:10:20.794 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.794 [XNIO-1 task-1] i09-stleQ5-BxLFjd_T07A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.798 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.798 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.798 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.798 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG com.networknt.schema.TypeValidator debug - validate( "a7af2a94-f8bc-4e25-b5d5-951cc331a4d9", "a7af2a94-f8bc-4e25-b5d5-951cc331a4d9", client_id) +23:10:20.798 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.798 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.799 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.799 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.799 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG com.networknt.schema.TypeValidator debug - validate( "015734af-293b-42f1-9f85-9918a5d8f8ea", "015734af-293b-42f1-9f85-9918a5d8f8ea", client_id) +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.807 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.808 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.810 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.810 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.811 [XNIO-1 task-1] HIUl5xCvQSSJXodwW_ff6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FlQ5zugFSCCBtEe-mReIKA +23:10:20.815 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.815 [XNIO-1 task-2] ml1HFLL8QJiPXoZIHz2uMg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.815 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG com.networknt.schema.TypeValidator debug - validate( "a7af2a94-f8bc-4e25-b5d5-951cc331a4d9", "a7af2a94-f8bc-4e25-b5d5-951cc331a4d9", client_id) +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.816 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.822 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.822 [XNIO-1 task-1] 3kTs2g3_R5-zG0emC2Dwdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.835 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.835 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG com.networknt.schema.TypeValidator debug - validate( "a7af2a94-f8bc-4e25-b5d5-951cc331a4d9", "a7af2a94-f8bc-4e25-b5d5-951cc331a4d9", client_id) +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.835 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.835 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.835 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.835 [XNIO-1 task-1] aVQrwNzQSe2jGqxJPXGU2w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.836 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.836 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.836 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.841 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.841 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.841 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.841 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.842 [XNIO-1 task-2] f_BtUOJAS_OqSBF4lRGV9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KP5CfyIFRDiFtVZbNFvcJQ +23:10:20.865 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.866 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG com.networknt.schema.TypeValidator debug - validate( "d0e7bc93-1ed7-4dbd-8613-1abb5e5ca09c", "d0e7bc93-1ed7-4dbd-8613-1abb5e5ca09c", client_id) +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.866 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.866 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.866 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.867 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.867 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.867 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.867 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.873 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:20.873 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:20.875 [XNIO-1 task-2] LRM4AFp7SpSxcd4xxDicyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4YLjckcpQqiJgKMO-jIgog +23:10:20.876 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.876 [XNIO-1 task-1] p-ju9d3KR9-LbIZv-E6iEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.877 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.877 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.879 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.879 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d0e7bc93-1ed7-4dbd-8613-1abb5e5ca09c", "d0e7bc93-1ed7-4dbd-8613-1abb5e5ca09c", client_id) +23:10:20.879 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.879 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.880 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.880 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.880 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.887 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.887 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:20.887 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.887 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.887 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.887 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:20.887 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:20.887 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:20.888 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:20.888 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:20.888 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:20.888 [XNIO-1 task-1] 9_7kMqr7QyqsQ26BgO6wAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9BRiGYckQC2iydimgFl9QQ +23:10:20.894 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.894 [XNIO-1 task-2] 6MK86BLYQLmZCs4C9lst3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.899 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.899 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.899 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.899 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "U1Rhr2buWum3MgJpptEDFSJotfvn-nfK3E2PbICGsEo", "U1Rhr2buWum3MgJpptEDFSJotfvn-nfK3E2PbICGsEo", code_challenge) +23:10:20.900 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:20.900 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.900 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.900 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.900 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.903 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.909 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.909 [XNIO-1 task-2] 2-5nGlwySY61eXLNE1wdyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.935 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.935 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:20.935 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:20.935 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG com.networknt.schema.TypeValidator debug - validate( "65d4459a-9c4c-4cc4-afe8-e10ba535081b", "65d4459a-9c4c-4cc4-afe8-e10ba535081b", client_id) +23:10:20.935 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:20.936 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:20.936 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:20.936 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:20.936 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:20.941 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:20.941 [XNIO-1 task-2] 47IjuM1WQU2HXiwK62HS7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:20.969 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3a77c15 +23:10:20.997 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:20.999 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.000 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.000 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.000 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.000 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.000 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.000 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.001 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.001 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.006 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4bf3f85e +23:10:21.007 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.007 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.008 [XNIO-1 task-2] pOAQV7NHSOaCGxrev21wJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CbUViZHDQMOiNwgi-RpmGQ +23:10:21.010 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.010 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.010 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.011 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "2839cccd-29b2-421b-8713-a427088cbdc6", "2839cccd-29b2-421b-8713-a427088cbdc6", client_id) +23:10:21.011 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.011 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.011 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.011 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.011 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.017 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.017 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.018 [XNIO-1 task-2] psl4oF3jSgGt4zT42hUL2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=830BGEjwRkCsazlF52aJWw +23:10:21.020 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:685d6b51-3880-4858-87ee-2fb38f34a72c +23:10:21.033 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.033 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.033 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.033 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.033 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.034 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.034 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.034 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.040 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.040 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.040 [XNIO-1 task-2] wfPxab0qSi-pTiXrq8jI0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BqO-GUgCRLmQAlfzbHn1jQ +23:10:21.046 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.046 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.046 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.047 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.047 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.047 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.047 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.047 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.054 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.054 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.055 [XNIO-1 task-2] Kp7Oj_BXQ-uFo-EuZqGfSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Zrdzola7Si-ylQ_wdgTW7g +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG com.networknt.schema.TypeValidator debug - validate( "2839cccd-29b2-421b-8713-a427088cbdc6", "2839cccd-29b2-421b-8713-a427088cbdc6", client_id) +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.068 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.073 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.074 [XNIO-1 task-2] KsmKvhMMQh6fPJ4mc3lrhw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.074 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.074 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.074 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.075 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:21.075 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.075 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.075 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.075 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.075 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.080 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.080 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.080 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.080 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1wTgd8_Ri38dCXD_AEOqeoEFU2usSjbISonFA-XW86Q", "1wTgd8_Ri38dCXD_AEOqeoEFU2usSjbISonFA-XW86Q", code_challenge) +23:10:21.081 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.081 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.081 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.081 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.081 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.081 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.086 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.086 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.087 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.086 [XNIO-1 task-1] 88US_a2nRIChLrtHnCUhRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-kHiXGPAQxCF7RkxaJiXqA +23:10:21.088 [XNIO-1 task-2] MsT55gPxRQyU162VPWknDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Wk_5RxPsTZ-i_snrTL5xWg +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.099 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.108 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.108 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.108 [XNIO-1 task-2] EMR4hbS8Rta6cnTOfUetJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WWtJP9QnRauJs018jgWgng +23:10:21.113 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.113 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.113 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.113 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG com.networknt.schema.TypeValidator debug - validate( "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", client_id) +23:10:21.113 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.113 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.114 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.114 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.114 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.120 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.120 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.121 [XNIO-1 task-2] yK07EDs3SXuXP1Yu7H4SmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GH7UX-inQZqcQEq2ueDGaQ +23:10:21.125 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.125 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.125 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.125 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG com.networknt.schema.TypeValidator debug - validate( "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", client_id) +23:10:21.125 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.125 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.127 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.127 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.127 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.134 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.134 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.135 [XNIO-1 task-2] 7HZCycjjRUyPuNYyzQTeWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cgQoUMW1QD2xLaCe9v_ZHw +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG com.networknt.schema.TypeValidator debug - validate( "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", client_id) +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.167 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.168 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.173 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.173 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.178 [XNIO-1 task-2] UWfR_9qjRW2jfYspg1wjRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hfzraXjtTHi4G6--eYDc7g +23:10:21.181 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.181 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.181 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.181 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG com.networknt.schema.TypeValidator debug - validate( "399aa3f6-6cc2-4eee-b963-1740a58de97a", "399aa3f6-6cc2-4eee-b963-1740a58de97a", client_id) +23:10:21.181 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.181 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.181 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.182 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.182 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.193 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.193 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.194 [XNIO-1 task-2] FT3_8I7KSAO7BdwwwRdktw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Y3eASnPdQwqLI48oSsLi-Q +23:10:21.198 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.198 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.198 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.199 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.199 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.199 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.199 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.199 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.199 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.200 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e1e5f168 +23:10:21.201 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e1e5f168 +23:10:21.201 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.201 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.201 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG com.networknt.schema.TypeValidator debug - validate( "621d0516-9fac-48e7-b71b-c8759d197888", "621d0516-9fac-48e7-b71b-c8759d197888", client_id) +23:10:21.201 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.201 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.202 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.202 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.202 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.204 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.204 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.206 [XNIO-1 task-2] Hff1E5eIQrqOV89eMg8U_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XV-n6r8gQfCyscQrgGQGVQ +23:10:21.207 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.207 [XNIO-1 task-1] Rjw1NRKRTWu9vIrRHjcvew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.227 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.242 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1678806d +23:10:21.246 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG com.networknt.schema.TypeValidator debug - validate( "RZgLvrjQDsJa5KHzYGeS4R2v3atpVJhU_xGxiMToXaQ", "RZgLvrjQDsJa5KHzYGeS4R2v3atpVJhU_xGxiMToXaQ", code_challenge) +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.247 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.253 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.254 [XNIO-1 task-1] 38--sSqHQnK0dlPUTF45AA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.261 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.261 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.261 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.261 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG com.networknt.schema.TypeValidator debug - validate( "KVVR6oP_B47B73q7rQ43VdDrpVVEkFzKn7a6gfp62PQ", "KVVR6oP_B47B73q7rQ43VdDrpVVEkFzKn7a6gfp62PQ", code_challenge) +23:10:21.262 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.262 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.262 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.262 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.262 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.263 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.266 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.266 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.267 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.267 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.267 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.267 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.267 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.267 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.269 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.269 [XNIO-1 task-1] jcKLkbTTRAqEYg7Im_Cwpg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.273 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.273 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.274 [XNIO-1 task-2] T8GauDIURvGfKg0-EhMIkA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6tkAmURmRBWIgbjDV3mLIQ +23:10:21.278 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.289 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.289 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.290 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.290 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG com.networknt.schema.TypeValidator debug - validate( "621d0516-9fac-48e7-b71b-c8759d197888", "621d0516-9fac-48e7-b71b-c8759d197888", client_id) +23:10:21.290 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.290 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.290 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.290 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.290 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.296 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.296 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.296 [XNIO-1 task-1] ofGDaJBrRmqiOqyyJNAxFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jgo6YUQMSfeKHu-hm1HiiA +23:10:21.310 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4c4cd2c4-e8a2-48d9-89a4-770c21b4da61 +23:10:21.345 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.345 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.345 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.346 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e012978-016e-4f93-8603-4703c33289ad", "9e012978-016e-4f93-8603-4703c33289ad", client_id) +23:10:21.346 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.346 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.346 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.346 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.347 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.354 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.354 [XNIO-1 task-1] UA-lyLOsQgWLhdkxHyhAWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.360 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.360 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.360 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.360 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e012978-016e-4f93-8603-4703c33289ad", "9e012978-016e-4f93-8603-4703c33289ad", client_id) +23:10:21.360 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.361 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.361 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.361 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.361 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.369 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.369 [XNIO-1 task-1] HgvXssGFSwaWEJ1P7WbLpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.381 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.382 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.383 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.383 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "34554425-f83a-4e5c-a120-afe9f728562d", "34554425-f83a-4e5c-a120-afe9f728562d", client_id) +23:10:21.383 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.383 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.383 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.383 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.384 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.389 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.389 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1678806d +23:10:21.391 [XNIO-1 task-1] _siegRACQreFm-rkl4y5Bg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iEUVVPcYS6qWfNfEDrh99A +23:10:21.394 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.394 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.394 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.394 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG com.networknt.schema.TypeValidator debug - validate( "34554425-f83a-4e5c-a120-afe9f728562d", "34554425-f83a-4e5c-a120-afe9f728562d", client_id) +23:10:21.395 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.396 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.396 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.397 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.397 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.397 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4c5ceb76-7e97-47e3-be46-02a123652422 +23:10:21.402 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.403 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.403 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.403 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.404 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.404 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG com.networknt.schema.TypeValidator debug - validate( "pjH8u3gtDn5LpA2xP_1c3sBB3VET3vKNk08RCKIjF6g", "pjH8u3gtDn5LpA2xP_1c3sBB3VET3vKNk08RCKIjF6g", code_challenge) +23:10:21.404 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.404 [XNIO-1 task-1] rrFFh_yURpi6gXeXrjE4uw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=m7qeYza6RQ-XsuSFjIlbPw +23:10:21.404 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.404 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.404 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.404 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG com.networknt.schema.TypeValidator debug - validate( "3512e897-8d26-47af-8aaf-a9b640bb8257", "3512e897-8d26-47af-8aaf-a9b640bb8257", client_id) +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.408 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.410 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.410 [XNIO-1 task-2] oIH_5ZqNQM-o9Z1tBIhadg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.414 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e1e5f168 +23:10:21.416 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.416 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.418 [XNIO-1 task-1] dEhfkNZKRK6g45jHvQVE-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KxskTgDGR5-saDDW1RHQZQ +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG com.networknt.schema.TypeValidator debug - validate( "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", "22b3dc1d-b9e3-4865-ba8f-c6c80f284737", client_id) +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.436 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.437 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.442 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.443 [XNIO-1 task-1] dL_2416QSqGt7DiffMe-bg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.455 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.455 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.455 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.455 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "65d4459a-9c4c-4cc4-afe8-e10ba535081b", "65d4459a-9c4c-4cc4-afe8-e10ba535081b", client_id) +23:10:21.455 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.456 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.456 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.456 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.456 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.464 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.465 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.466 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0e8ef29a-6655-4d3a-9a6f-064076eb9508 +23:10:21.466 [XNIO-1 task-1] a07NfPb1TJKm3hFFW7uc8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wLp7j7MJS--dEom_idDIgQ +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.469 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.470 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.472 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.478 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.478 [XNIO-1 task-1] HCODxkDISxa0h_TwB_nNjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.490 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.492 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:44eb8eed +23:10:21.500 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.500 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.500 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.500 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.501 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "bddac66c-c6a9-48a9-91ac-b16950953008", "bddac66c-c6a9-48a9-91ac-b16950953008", client_id) +23:10:21.501 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.501 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.501 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.501 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.503 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.511 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.511 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.512 [XNIO-1 task-1] amppHsTMS1OWD0sKoi2qeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FCGgQ6MTS5K_7Cz9vn_oMQ +23:10:21.513 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b3a77c15 +23:10:21.528 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c7e81e6d-851d-419a-ae51-09104ac87f4a +23:10:21.545 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.545 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.545 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.545 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG com.networknt.schema.TypeValidator debug - validate( "bddac66c-c6a9-48a9-91ac-b16950953008", "bddac66c-c6a9-48a9-91ac-b16950953008", client_id) +23:10:21.545 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.545 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.545 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.546 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.546 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.554 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.554 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.555 [XNIO-1 task-1] 2ytUPqqSS-aCerQb9M5Aqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JsvCX1svQGSchj83aC7qZQ +23:10:21.562 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.562 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.562 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.563 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG com.networknt.schema.TypeValidator debug - validate( "4acfed89-9f16-4d0c-9f1f-b8038b28210c", "4acfed89-9f16-4d0c-9f1f-b8038b28210c", client_id) +23:10:21.563 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.563 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.563 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.563 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.563 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.571 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.571 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.572 [XNIO-1 task-1] RJweUINLTPWHvExiEXmN_g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0p8DJvGtRu-TFnlX6artkg +23:10:21.573 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.573 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.573 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.574 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.574 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.574 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.574 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.574 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.576 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "VTOmQ_lxifInGe9N_tO8kNY9JQl7B4uyRabLDLfFFto", "VTOmQ_lxifInGe9N_tO8kNY9JQl7B4uyRabLDLfFFto", code_challenge) +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.577 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.580 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.580 [XNIO-1 task-1] la2m1HziRrm6InghuSac8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.583 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.583 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.583 [XNIO-1 task-2] xFtT1jjpTw2wpwCC3Hj7hQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mLlcBYRxQDuwvTXJp7jo1g +23:10:21.596 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.612 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.613 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.613 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.613 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.613 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.613 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.613 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.613 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.616 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.616 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "PDDwK-BFc-kerzOQI7s6SNgnahor6UOZkXDQSL_z-F0", "PDDwK-BFc-kerzOQI7s6SNgnahor6UOZkXDQSL_z-F0", code_challenge) +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.617 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.619 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.620 [XNIO-1 task-2] NslUcUl6Qv-3O8G54Akbvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.624 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.624 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.625 [XNIO-1 task-1] LqhfgHm8SXup17EQv4BDfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xuS6h5wLTHmPZxaqTEokxw +23:10:21.634 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.634 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.634 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.634 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG com.networknt.schema.TypeValidator debug - validate( "2839cccd-29b2-421b-8713-a427088cbdc6", "2839cccd-29b2-421b-8713-a427088cbdc6", client_id) +23:10:21.634 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.634 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.635 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.635 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.635 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.640 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.641 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.643 [XNIO-1 task-1] AUtIuXD2SdKNfPus1wMdRA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lq1mJo18RX6-gMkPJhZshw +23:10:21.660 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.660 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.660 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.661 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG com.networknt.schema.TypeValidator debug - validate( "f733ec0f-e2b3-49bc-ab88-0092eead6e3b", "f733ec0f-e2b3-49bc-ab88-0092eead6e3b", client_id) +23:10:21.661 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.661 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.661 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.661 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.661 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.661 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.662 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.662 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.662 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG com.networknt.schema.TypeValidator debug - validate( "015734af-293b-42f1-9f85-9918a5d8f8ea", "015734af-293b-42f1-9f85-9918a5d8f8ea", client_id) +23:10:21.662 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.662 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.662 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.662 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.662 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.668 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.668 [XNIO-1 task-2] Q60LvkyyQK27fdZLTN0Ofw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.669 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.669 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.672 [XNIO-1 task-1] fR2Oefd8SQOg05ZpLsn28A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0P8ycKY3TVieb5k1lRXbCw +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.674 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.680 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.680 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.680 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.680 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Hz-gjQELHGi1RQqmn0OB934DHPP_keH1lg-l0kXKlOQ", "Hz-gjQELHGi1RQqmn0OB934DHPP_keH1lg-l0kXKlOQ", code_challenge) +23:10:21.680 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.680 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.681 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.681 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.681 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.681 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.681 [XNIO-1 task-1] Zjgzq35SSVG2NdA74qJC3Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.683 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.687 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.689 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.690 [XNIO-1 task-2] YaL7_rzjT9i2cpnWkmYOFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.703 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.703 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.703 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.703 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b9pb7VgenqmxI05aB29NMQNRVJbWvc_MGOxfw8EhSI4", "b9pb7VgenqmxI05aB29NMQNRVJbWvc_MGOxfw8EhSI4", code_challenge) +23:10:21.703 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.704 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.704 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.704 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.704 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.704 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.713 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.713 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.713 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.713 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.714 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.714 [XNIO-1 task-2] 2Ka3YjLkSpGLYndrASVuIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.714 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.714 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.714 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.714 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.714 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.722 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.722 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.722 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.723 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG com.networknt.schema.TypeValidator debug - validate( "m3AZTAx_ComYHFVGZj8xOTFD_H7Aum2mxn_mJRFhr5I", "m3AZTAx_ComYHFVGZj8xOTFD_H7Aum2mxn_mJRFhr5I", code_challenge) +23:10:21.723 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.723 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.723 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.723 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.723 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.723 [XNIO-1 task-1] q-99NqBZSW6ZOn6Aj8zkLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.723 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.723 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.729 [XNIO-1 task-2] PhSTFWRnRHGbZq_wEul0jg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.729 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.729 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.729 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.729 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.729 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG com.networknt.schema.TypeValidator debug - validate( "015734af-293b-42f1-9f85-9918a5d8f8ea", "015734af-293b-42f1-9f85-9918a5d8f8ea", client_id) +23:10:21.729 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.730 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.730 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.730 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.730 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.735 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.735 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.736 [XNIO-1 task-1] T2epeVPiTHCmXn8CDyYBbw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xl2rafnRSnedgQFg6kauAg +23:10:21.737 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.737 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.737 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.737 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f733ec0f-e2b3-49bc-ab88-0092eead6e3b", "f733ec0f-e2b3-49bc-ab88-0092eead6e3b", client_id) +23:10:21.737 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.738 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.738 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.738 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.738 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.745 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.745 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.745 [XNIO-1 task-2] jashwPo2QUWbAFpprbo-EQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=t1FFDpMCQLe5jHbeMWOq9g +23:10:21.752 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.752 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.752 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.753 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG com.networknt.schema.TypeValidator debug - validate( "34554425-f83a-4e5c-a120-afe9f728562d", "34554425-f83a-4e5c-a120-afe9f728562d", client_id) +23:10:21.753 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.753 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.753 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.753 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.753 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.758 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.759 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.759 [XNIO-1 task-2] nsUL_0haQziuumUd4sA0UA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hva2yD7pSIKaLN1T7bRT2A +23:10:21.762 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.762 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.762 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.762 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.762 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.762 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.763 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.763 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.769 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.769 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.770 [XNIO-1 task-2] eIrUKSCSRnSXlbEvMWkhKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M3EYZAC6Q5-JWje6bZ6hWQ +23:10:21.792 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.792 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.792 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.793 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "aAzf-c3iq44zPUFHGM7H23337nbDkLO3jmg3Q0De800", "aAzf-c3iq44zPUFHGM7H23337nbDkLO3jmg3Q0De800", code_challenge) +23:10:21.793 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.793 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.793 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.793 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.793 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.793 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.794 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.794 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.794 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.794 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.794 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.794 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.795 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.795 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.799 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.800 [XNIO-1 task-2] e8AWFsVXTbaHqLMK2EcIlw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.800 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.800 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.802 [XNIO-1 task-1] 1TWgtB_SSYeHS5JeyYjD5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WoEjhOZUSCyAL7y_IgcE9Q +23:10:21.808 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.809 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.809 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.810 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b6e3c9d-7532-4f1c-8646-b5a77e38036f", "6b6e3c9d-7532-4f1c-8646-b5a77e38036f", client_id) +23:10:21.811 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.811 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.811 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.811 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.811 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.817 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.817 [XNIO-1 task-2] NCk2WYdTT1S0CEuQ-U1eVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.821 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.821 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.821 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.821 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4cd2c4-e8a2-48d9-89a4-770c21b4da61", "4c4cd2c4-e8a2-48d9-89a4-770c21b4da61", client_id) +23:10:21.822 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.822 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.822 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.822 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.822 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.829 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.829 [XNIO-1 task-2] cZ_Z6FBRQliq0wdrMDS8jg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.832 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.832 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG com.networknt.schema.TypeValidator debug - validate( "ZycJzk39-_cM1AWmmImfuAftkhgMi-rxbwYpgHdTfqM", "ZycJzk39-_cM1AWmmImfuAftkhgMi-rxbwYpgHdTfqM", code_challenge) +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.833 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.835 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.835 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.835 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.835 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.835 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.835 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.835 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.837 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.840 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.840 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.840 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b3a77c15 +23:10:21.841 [XNIO-1 task-2] WKzX7ZnkQxygZmKMRv0AyA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w5J6LUznTBG1_G6lBGCbTA +23:10:21.843 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.843 [XNIO-1 task-1] xCZkoeO2RCanrGFIQLscVg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.846 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.846 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.846 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.847 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "vcupv16aShxTFgO4Hdps7aiwYMbcaJMvPlUmWd-WKxI", "vcupv16aShxTFgO4Hdps7aiwYMbcaJMvPlUmWd-WKxI", code_challenge) +23:10:21.847 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.847 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.847 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.847 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.847 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.847 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.853 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.851 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.853 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.853 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.853 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.853 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.854 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.854 [XNIO-1 task-1] quwfPQ3dTaSR58FsgSiTZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=S0c2s27_Rqm2I6YuP_iCzg +23:10:21.854 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.854 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.854 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.860 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.860 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.860 [XNIO-1 task-2] TiDIoTCsQ4CPirI8KkERrg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.861 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.861 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.861 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG com.networknt.schema.TypeValidator debug - validate( "efb559bc-7fc6-4cb9-82ae-ac036cd68498", "efb559bc-7fc6-4cb9-82ae-ac036cd68498", client_id) +23:10:21.861 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.861 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.861 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.862 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.862 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.863 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.870 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.870 [XNIO-1 task-1] U6ixOPDET4G68jIYdwLczA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.874 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:65919688-7187-4633-bf5b-3787978b2a64 +23:10:21.878 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG com.networknt.schema.TypeValidator debug - validate( "VQVL2vDI1CkxBDATIRHO3esClA9Qg1uUXp2jf6nyLPs", "VQVL2vDI1CkxBDATIRHO3esClA9Qg1uUXp2jf6nyLPs", code_challenge) +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.880 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.886 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.886 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.886 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:21.886 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:21.887 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:21.887 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:21.887 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:21.887 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:21.890 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:21.890 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:21.891 [XNIO-1 task-1] jXnJXXVfTPeAYsw7vFIdIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ggdKTDdLRZGf7T7XVQ2a4A +23:10:21.897 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.897 [XNIO-1 task-2] A8cH9zT3T76wLU9aqHunkA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.905 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.905 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.905 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.906 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bddac66c-c6a9-48a9-91ac-b16950953008", "bddac66c-c6a9-48a9-91ac-b16950953008", client_id) +23:10:21.906 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.906 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.906 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.906 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.906 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.912 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.912 [XNIO-1 task-2] vRW3AxK2R1yBgFyfbtAFfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:21.921 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:17f3656e +23:10:21.925 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:17f3656e +23:10:21.939 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b3a77c15 +23:10:21.955 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1015edc6-e7ba-4775-94c4-883247246582 +23:10:21.969 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4bf3f85e +23:10:21.987 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG com.networknt.schema.TypeValidator debug - validate( "JoIKiYFL9LqR3Q6LUzck2sZgukvqEy95pka1wEuethM", "JoIKiYFL9LqR3Q6LUzck2sZgukvqEy95pka1wEuethM", code_challenge) +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:21.988 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:21.995 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:21.995 [XNIO-1 task-2] FSwIIVOdTaG9EIrhMoOccA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.003 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.003 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.003 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.003 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG com.networknt.schema.TypeValidator debug - validate( "0vFzRb0ZDc3FlL-_hizOHmzKA6gUe26fxuc1dqpKgDg", "0vFzRb0ZDc3FlL-_hizOHmzKA6gUe26fxuc1dqpKgDg", code_challenge) +23:10:22.003 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:22.003 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.004 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.004 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.004 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.005 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.011 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.011 [XNIO-1 task-2] 0s0DUDiHSiCLfNMxwvQHNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.016 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.016 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.016 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.016 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bddac66c-c6a9-48a9-91ac-b16950953008", "bddac66c-c6a9-48a9-91ac-b16950953008", client_id) +23:10:22.016 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.017 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.017 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.017 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.017 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.022 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.022 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.022 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.022 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG com.networknt.schema.TypeValidator debug - validate( "08d5b9fb-36f7-48de-bf17-bb8ef26af4b5", "08d5b9fb-36f7-48de-bf17-bb8ef26af4b5", client_id) +23:10:22.022 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.022 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.022 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.023 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.023 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.023 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.023 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.023 [XNIO-1 task-2] 3CSPiy4vQzGPSYa5rK5UMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=L8l8TY0TSkiQVuoCft6jrg +23:10:22.029 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.029 [XNIO-1 task-1] 3DFXsP4mQfWcBmY5aREu4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.029 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.029 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.029 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.029 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG com.networknt.schema.TypeValidator debug - validate( "bddac66c-c6a9-48a9-91ac-b16950953008", "bddac66c-c6a9-48a9-91ac-b16950953008", client_id) +23:10:22.030 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.030 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.030 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.030 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.030 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.035 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.035 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.036 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.036 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.036 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.037 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "997379fa-3fb5-4d26-aef0-0ce5177015cf", "997379fa-3fb5-4d26-aef0-0ce5177015cf", client_id) +23:10:22.037 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.037 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.037 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.037 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.037 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.038 [XNIO-1 task-2] U2jxP3GLTx2uiZwxQm90fA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BYWjbcQTSn2pzvNPYKuHXQ +23:10:22.046 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.046 [XNIO-1 task-1] KikEM3TKS26VCDHLZbgI5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.052 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Eey7BdSKn7LOvo_ANYzSJpXXRMAgtuUMVbwnZwI8CIY", "Eey7BdSKn7LOvo_ANYzSJpXXRMAgtuUMVbwnZwI8CIY", code_challenge) +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.053 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.060 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.060 [XNIO-1 task-1] OYZekWidT96MgLMnsVvrwA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.066 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.066 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.066 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.066 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72148cd6-ff06-4f32-93cc-b43f8e1575da", "72148cd6-ff06-4f32-93cc-b43f8e1575da", client_id) +23:10:22.067 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.067 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.067 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.067 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.067 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.070 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.070 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.070 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.070 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:22.070 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.070 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.071 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.071 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.071 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.073 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.073 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.073 [XNIO-1 task-1] KUXYbDJqQIitVavaTNvClQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=m4o34WA7TLWuLs-ZExlKAA +23:10:22.078 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.078 [XNIO-1 task-2] iuNC5-MnReSu2JA-qPPN9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72148cd6-ff06-4f32-93cc-b43f8e1575da", "72148cd6-ff06-4f32-93cc-b43f8e1575da", client_id) +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.082 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.088 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.088 [XNIO-1 task-2] mIe9n4bgSmCbMRqzvi0uHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.093 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG com.networknt.schema.TypeValidator debug - validate( "1015edc6-e7ba-4775-94c4-883247246582", "1015edc6-e7ba-4775-94c4-883247246582", client_id) +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.094 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.100 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.100 [XNIO-1 task-2] nq6npHVXQiaXGZ9YEleNQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.131 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.133 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.133 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.133 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1015edc6-e7ba-4775-94c4-883247246582", "1015edc6-e7ba-4775-94c4-883247246582", client_id) +23:10:22.133 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.133 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.133 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.133 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.133 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:17f3656e +23:10:22.134 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.139 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.139 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.139 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.139 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.139 [XNIO-1 task-2] FXMOClUIRdG7NJEQUi6LoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.139 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:22.140 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.140 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.140 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.140 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.140 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.140 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.145 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.145 [XNIO-1 task-1] w--speukRUSO5TVxRCvlug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1015edc6-e7ba-4775-94c4-883247246582", "1015edc6-e7ba-4775-94c4-883247246582", client_id) +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.146 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.147 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.153 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.153 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.153 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.154 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:22.154 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.154 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.154 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.154 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.154 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.161 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.161 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.162 [XNIO-1 task-2] UYQpnV5eQnyOJ5lgQSCyVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_xEVciM5Ro2wKTTPjMvNgg +23:10:22.162 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.162 [XNIO-1 task-1] J4LDyym0TUOgbR-FJPO0eA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.169 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.169 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "QgzltAr4-dKEWJWysY1cDxp8idWQvfcRvuNm-ZEt88Q", "QgzltAr4-dKEWJWysY1cDxp8idWQvfcRvuNm-ZEt88Q", code_challenge) +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.170 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.177 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.177 [XNIO-1 task-1] Lhef175yTsqOipD7rkbJGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.180 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e960a18d +23:10:22.181 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e960a18d +23:10:22.182 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.182 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.182 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.182 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG com.networknt.schema.TypeValidator debug - validate( "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", "886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2", client_id) +23:10:22.182 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.183 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.183 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.183 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.183 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.188 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.188 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.189 [XNIO-1 task-1] gwOUcJmjQSSqhfl36DTciA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0HGjr0MITqyHtwOf9lNEFg +23:10:22.192 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:69880945 +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ILSwcfp2XSHOU0UR180sg_dWtu094Fd6YfkNiaBE5lc", "ILSwcfp2XSHOU0UR180sg_dWtu094Fd6YfkNiaBE5lc", code_challenge) +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.196 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.197 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.202 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.202 [XNIO-1 task-1] D4TuxH8sQNuIoSl82nUZMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.217 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:908716a2-3010-4b4d-9850-b5cb4eefeb42 +23:10:22.218 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:69880945 +23:10:22.222 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:17f3656e +23:10:22.225 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.225 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.225 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.225 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG com.networknt.schema.TypeValidator debug - validate( "3da01439-ca85-4fe4-bab3-12dc3986499c", "3da01439-ca85-4fe4-bab3-12dc3986499c", client_id) +23:10:22.225 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.226 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.226 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.226 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.226 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.232 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.232 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.233 [XNIO-1 task-1] e8QggE5ZTY-AjEz_Qryu4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hjp28lVTRP-oiNbQln3SSw +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.245 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.252 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.252 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.253 [XNIO-1 task-1] D74K05JZTHKaOhzQ7_oweQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VlpV4tNwTeS17GsS1C9brw +23:10:22.253 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4 +23:10:22.262 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.262 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.262 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.262 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG com.networknt.schema.TypeValidator debug - validate( "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", "d1949c2f-d446-4ae0-b6aa-dd0bede13d13", client_id) +23:10:22.262 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.263 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.263 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.263 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fd98ffe5-30ce-4ac5-928b-0862935b7633 +23:10:22.263 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.263 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.263 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fd98ffe5-30ce-4ac5-928b-0862935b7633 +23:10:22.269 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.269 [XNIO-1 task-1] CjrNgrtRTSeRluQT_GnkqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.270 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:93c248b3-58e1-43e8-8a0f-70f3c4fca60e +23:10:22.283 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.283 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.283 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.284 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e012978-016e-4f93-8603-4703c33289ad", "9e012978-016e-4f93-8603-4703c33289ad", client_id) +23:10:22.284 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.284 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.284 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.284 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.284 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.289 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.289 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.289 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.289 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.290 [XNIO-1 task-1] 7MM57CqFSkeCTyQ4YmN8Mw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.290 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4acfed89-9f16-4d0c-9f1f-b8038b28210c", "4acfed89-9f16-4d0c-9f1f-b8038b28210c", client_id) +23:10:22.290 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.290 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.290 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.290 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.290 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.290 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.296 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.296 [XNIO-1 task-2] PpvEKPzKRuSNszNqEYKTpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.305 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.305 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.305 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.305 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "HROcEKBw3kI_73c1aC_I6NVDj9sXu2__TbJ0ucaldCg", "HROcEKBw3kI_73c1aC_I6NVDj9sXu2__TbJ0ucaldCg", code_challenge) +23:10:22.305 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:22.305 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.305 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.306 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.306 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.306 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.312 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.312 [XNIO-1 task-2] jA45FmbWS-C3bARXLnlXUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.313 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.313 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.313 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.313 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.313 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.315 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.315 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.315 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.315 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.321 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.321 [XNIO-1 task-1] MwkH4KRKRqylC04vxJkM_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.329 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.329 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.330 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.330 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG com.networknt.schema.TypeValidator debug - validate( "399aa3f6-6cc2-4eee-b963-1740a58de97a", "399aa3f6-6cc2-4eee-b963-1740a58de97a", client_id) +23:10:22.330 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.330 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.330 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.330 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.330 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.335 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.336 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.336 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.336 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.336 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.336 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "997379fa-3fb5-4d26-aef0-0ce5177015cf", "997379fa-3fb5-4d26-aef0-0ce5177015cf", client_id) +23:10:22.336 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.336 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.336 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.337 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.337 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.338 [XNIO-1 task-1] X4H2RurqSv-10Ah3Dtqavg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7XIPc-uqRPq1mdGbp9REew +23:10:22.342 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.342 [XNIO-1 task-2] eM7_xacATiKW-YrpVuh6Hg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.348 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.348 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.348 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.348 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "1E9TTyRWiP1EaE70VvjTmlabDeFfhRzRK8GRnzbBXPk", "1E9TTyRWiP1EaE70VvjTmlabDeFfhRzRK8GRnzbBXPk", code_challenge) +23:10:22.348 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +23:10:22.348 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.349 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.349 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.349 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.349 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.355 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.355 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.355 [XNIO-1 task-2] guKwbm7kRKKNKsjgvgE8Ew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qYUH1eANTW2SUJWh-9Bf3g +23:10:22.371 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.371 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.372 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.372 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "a8ffbe35-c953-4bea-b5ea-f32758485da4", "a8ffbe35-c953-4bea-b5ea-f32758485da4", client_id) +23:10:22.372 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.372 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.374 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.375 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.375 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.382 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.382 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.383 [XNIO-1 task-2] bbEW1vQXQEqAo7JXwGYe5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LXqt2gIQREarWMviG9BuMw +23:10:22.394 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8e580d4f-9fcc-4a6b-871d-0cb03d5250d2 +23:10:22.396 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8e580d4f-9fcc-4a6b-871d-0cb03d5250d2 +23:10:22.404 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.404 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.404 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +23:10:22.405 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG com.networknt.schema.TypeValidator debug - validate( "a8ffbe35-c953-4bea-b5ea-f32758485da4", "a8ffbe35-c953-4bea-b5ea-f32758485da4", client_id) +23:10:22.405 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +23:10:22.405 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +23:10:22.405 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +23:10:22.405 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@59db67c5 for /oauth2/code +23:10:22.405 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +23:10:22.405 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.406 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.406 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.406 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG com.networknt.schema.TypeValidator debug - validate( "399aa3f6-6cc2-4eee-b963-1740a58de97a", "399aa3f6-6cc2-4eee-b963-1740a58de97a", client_id) +23:10:22.407 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.407 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.407 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.407 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.407 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.413 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.413 [XNIO-1 task-2] gSm3CuiDQpalGOgUGfGFEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.415 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +23:10:22.415 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +23:10:22.416 [XNIO-1 task-1] kDc3Zo1bQHa2YKa_SQXhkw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=b3uOpsbHTCefpWGHn1_OCA +23:10:22.429 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.429 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +23:10:22.430 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +23:10:22.430 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "399aa3f6-6cc2-4eee-b963-1740a58de97a", "399aa3f6-6cc2-4eee-b963-1740a58de97a", client_id) +23:10:22.430 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +23:10:22.430 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +23:10:22.430 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +23:10:22.430 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +23:10:22.430 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +23:10:22.437 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@3e296fae for /oauth2/code +23:10:22.437 [XNIO-1 task-1] iHWN2ZJwRkuMWfa2b5vUTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +23:10:22.444 [XNIO-1 task-1] -T-sRoUMTTutgxpaIZAC7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..2e14331 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-key-1.log @@ -0,0 +1,148 @@ +23:10:20.104 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1014abaf +23:10:20.105 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1014abaf +23:10:20.150 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1014abaf +23:10:20.219 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d20dbbab +23:10:20.236 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88490527 +23:10:20.263 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:91cb8b6d-b5e6-4fa6-bc19-bc47aced014b +23:10:20.273 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:12ddb23e +23:10:20.278 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:91cb8b6d-b5e6-4fa6-bc19-bc47aced014b +23:10:20.328 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1014abaf +23:10:20.356 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88490527 +23:10:20.391 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:22b3dc1d-b9e3-4865-ba8f-c6c80f284737 +23:10:20.441 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1014abaf +23:10:20.485 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb949be3 +23:10:20.486 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb949be3 +23:10:20.505 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1014abaf +23:10:20.540 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1014abaf +23:10:20.546 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4acfed89-9f16-4d0c-9f1f-b8038b28210c +23:10:20.608 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:12ddb23e +23:10:20.641 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f81861c +23:10:20.642 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f81861c +23:10:20.648 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.649 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88490527 +23:10:20.693 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb949be3 +23:10:20.723 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d20dbbab +23:10:20.729 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b8b19ed4-4f37-4b1b-9eec-9bb281bccc75 +23:10:20.764 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.783 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d20dbbab +23:10:20.867 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d20dbbab +23:10:20.876 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:88490527 +23:10:20.902 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5f1b0f6d-b5a3-4347-aa00-bbe9514d8083 +23:10:20.929 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:12ddb23e +23:10:20.938 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f81861c +23:10:20.979 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:bfcb70e4 +23:10:21.022 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fb949be3 +23:10:21.085 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:bfcb70e4 +23:10:21.126 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51d35399 +23:10:21.127 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51d35399 +23:10:21.150 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3f81861c +23:10:21.167 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ce23751b +23:10:21.228 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:78a96d06-04bd-4643-9d23-cc5d2715a708 +23:10:21.261 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d72b11e2 +23:10:21.262 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d72b11e2 +23:10:21.269 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:28535104 +23:10:21.286 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d72b11e2 +23:10:21.290 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cda4a7e +23:10:21.290 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cda4a7e +23:10:21.295 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d72b11e2 +23:10:21.323 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d0e7bc93-1ed7-4dbd-8613-1abb5e5ca09c +23:10:21.324 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d5084f92-40e2-449f-acd6-af5a6ad18401 +23:10:21.329 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cda4a7e +23:10:21.378 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4cda4a7e +23:10:21.392 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.425 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.490 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.557 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ce23751b +23:10:21.605 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b3e98af0-e688-410a-bfcd-f3aaef9b4d8f +23:10:21.678 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:32081edf +23:10:21.679 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:32081edf +23:10:21.693 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:28535104 +23:10:21.704 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d72b11e2 +23:10:21.753 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ab034fd8-7d7b-4fd0-acc2-1e10e15cecf9 +23:10:21.774 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:37098dfc-c642-4212-b6c0-bea003c859cb +23:10:21.829 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:32081edf +23:10:21.836 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d72b11e2 +23:10:21.847 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d72b11e2 +23:10:21.875 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:37098dfc-c642-4212-b6c0-bea003c859cb +23:10:21.940 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a0b557d3-aa04-49cd-8501-7a40dfeccaf9 +23:10:21.943 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a0b557d3-aa04-49cd-8501-7a40dfeccaf9 +23:10:21.978 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0e545a0-73c2-467c-a50c-4ebbbd52a448 +23:10:21.979 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0e545a0-73c2-467c-a50c-4ebbbd52a448 +23:10:21.999 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:096250ce-3af3-49d4-b23a-0b504725273d +23:10:22.017 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:32081edf +23:10:22.043 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:270e9f90 +23:10:22.044 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:270e9f90 +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:22.088 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:22b3dc1d-b9e3-4865-ba8f-c6c80f284737 +23:10:22.093 [hz._hzInstance_1_dev.partition-operation.thread-4] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:22.119 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3ef25917-368d-4f62-ad10-087e43c6d83b +23:10:22.152 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3d3fdfab-7080-4286-b857-ec584ecce689 +23:10:22.153 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3d3fdfab-7080-4286-b857-ec584ecce689 +23:10:22.157 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:270e9f90 +23:10:22.171 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:457c561e +23:10:22.192 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8b57ebe8-5ccd-465a-866b-8eda5b39318f +23:10:22.200 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a8ffbe35-c953-4bea-b5ea-f32758485da4 +23:10:22.201 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a8ffbe35-c953-4bea-b5ea-f32758485da4 +23:10:22.237 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:270e9f90 +23:10:22.237 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:32081edf +23:10:22.246 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3d3fdfab-7080-4286-b857-ec584ecce689 +23:10:22.248 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:32081edf +23:10:22.278 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:457c561e +23:10:22.322 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:270e9f90 +23:10:22.368 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:457c561e +23:10:22.404 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:270e9f90 +23:10:22.414 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:270e9f90 +23:10:22.557 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b3669fc8-d094-4d45-8510-dda6e2ac3285 +23:10:22.563 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:14baa01e +23:10:22.590 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:14baa01e +23:10:22.660 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a8ffbe35-c953-4bea-b5ea-f32758485da4 +23:10:22.691 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5eb361d0 +23:10:22.762 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:db07e121 +23:10:22.762 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5eb361d0 +23:10:22.763 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:db07e121 +23:10:22.808 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5eb361d0 +23:10:22.833 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5eb361d0 +23:10:22.835 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:db07e121 +23:10:22.876 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:db07e121 +23:10:22.938 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1f92a7f6 +23:10:22.948 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:351bd6d4-9f3c-4305-8c63-174768ead791 +23:10:22.956 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5eb361d0 +23:10:23.066 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5eb361d0 +23:10:23.088 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1f92a7f6 +23:10:23.140 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5eb361d0 +23:10:23.153 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5eb361d0 +23:10:23.282 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b80a768 +23:10:23.285 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b80a768 +23:10:23.298 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9cbfb4c5-981b-43f0-b726-6395b4255005 +23:10:23.495 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bd8b42e7-61c7-44f9-b59b-d41a5b15ed63 +23:10:23.498 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bd8b42e7-61c7-44f9-b59b-d41a5b15ed63 +23:10:23.507 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b80a768 +23:10:23.528 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bd8b42e7-61c7-44f9-b59b-d41a5b15ed63 +23:10:23.532 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5070ba63-a8fa-41a4-a875-38907ff81f39 diff --git a/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..1eda272 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,1880 @@ +23:10:19.937 [XNIO-1 task-1] v-CwHm1PQvmHEuXa-uXWTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9839f140-fbdf-42c1-a11f-3397c148ea80, base path is set to: null +23:10:19.938 [XNIO-1 task-1] v-CwHm1PQvmHEuXa-uXWTw DEBUG com.networknt.schema.TypeValidator debug - validate( "9839f140-fbdf-42c1-a11f-3397c148ea80", "9839f140-fbdf-42c1-a11f-3397c148ea80", refreshToken) +23:10:19.943 [XNIO-1 task-1] In62yu61SUCRPdOhqF_VcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:19.943 [XNIO-1 task-1] In62yu61SUCRPdOhqF_VcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:19.943 [XNIO-1 task-1] In62yu61SUCRPdOhqF_VcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:19.943 [XNIO-1 task-1] In62yu61SUCRPdOhqF_VcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:19.943 [XNIO-1 task-1] In62yu61SUCRPdOhqF_VcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:19.943 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:19.962 [XNIO-1 task-1] IW7OMqpkQ1ikChzFHhG5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:19.962 [XNIO-1 task-1] IW7OMqpkQ1ikChzFHhG5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:19.962 [XNIO-1 task-1] IW7OMqpkQ1ikChzFHhG5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:19.962 [XNIO-1 task-1] IW7OMqpkQ1ikChzFHhG5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:19.962 [XNIO-1 task-1] IW7OMqpkQ1ikChzFHhG5bQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe78823f-864e-4662-87e8-3054ef1e52be +23:10:19.963 [XNIO-1 task-1] IW7OMqpkQ1ikChzFHhG5bQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe78823f-864e-4662-87e8-3054ef1e52be is not found.","severity":"ERROR"} +23:10:19.973 [XNIO-1 task-1] Ac9dGQGgQw-dluHb0AK0-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:19.973 [XNIO-1 task-1] Ac9dGQGgQw-dluHb0AK0-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:19.973 [XNIO-1 task-1] Ac9dGQGgQw-dluHb0AK0-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:19.973 [XNIO-1 task-1] Ac9dGQGgQw-dluHb0AK0-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.981 [XNIO-1 task-1] 9TmUlbstSlyIdvBaS_nO6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/23344a32-c2ab-4f6c-89f8-377f770406d6, base path is set to: null +23:10:19.982 [XNIO-1 task-1] 9TmUlbstSlyIdvBaS_nO6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:19.982 [XNIO-1 task-1] 9TmUlbstSlyIdvBaS_nO6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:19.982 [XNIO-1 task-1] 9TmUlbstSlyIdvBaS_nO6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/23344a32-c2ab-4f6c-89f8-377f770406d6, base path is set to: null +23:10:19.982 [XNIO-1 task-1] 9TmUlbstSlyIdvBaS_nO6g DEBUG com.networknt.schema.TypeValidator debug - validate( "23344a32-c2ab-4f6c-89f8-377f770406d6", "23344a32-c2ab-4f6c-89f8-377f770406d6", refreshToken) +23:10:19.984 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cc76ee8c-083f-434f-8838-49011b91b908 +23:10:19.996 [XNIO-1 task-1] FowQb0MWSjuuNxPlqfx7-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:19.996 [XNIO-1 task-1] FowQb0MWSjuuNxPlqfx7-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:19.996 [XNIO-1 task-1] FowQb0MWSjuuNxPlqfx7-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:19.996 [XNIO-1 task-1] FowQb0MWSjuuNxPlqfx7-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:19.996 [XNIO-1 task-1] FowQb0MWSjuuNxPlqfx7-g DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:20.022 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.027 [XNIO-1 task-1] UjygqXTNRKGQDhkNQHc2TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.027 [XNIO-1 task-1] UjygqXTNRKGQDhkNQHc2TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.027 [XNIO-1 task-1] UjygqXTNRKGQDhkNQHc2TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.027 [XNIO-1 task-1] UjygqXTNRKGQDhkNQHc2TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.027 [XNIO-1 task-1] UjygqXTNRKGQDhkNQHc2TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:20.027 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.034 [XNIO-1 task-1] NgYnYF5sQIKCrtNB2BeCfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.034 [XNIO-1 task-1] NgYnYF5sQIKCrtNB2BeCfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.034 [XNIO-1 task-1] NgYnYF5sQIKCrtNB2BeCfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.035 [XNIO-1 task-1] NgYnYF5sQIKCrtNB2BeCfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.035 [XNIO-1 task-1] NgYnYF5sQIKCrtNB2BeCfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.041 [XNIO-1 task-1] 9YYsWwYWTxygqMunoyY17w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10, base path is set to: null +23:10:20.041 [XNIO-1 task-1] 9YYsWwYWTxygqMunoyY17w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.042 [XNIO-1 task-1] 9YYsWwYWTxygqMunoyY17w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.042 [XNIO-1 task-1] 9YYsWwYWTxygqMunoyY17w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10, base path is set to: null +23:10:20.042 [XNIO-1 task-1] 9YYsWwYWTxygqMunoyY17w DEBUG com.networknt.schema.TypeValidator debug - validate( "32b9445f-544e-4864-86e1-80819d64ad10", "32b9445f-544e-4864-86e1-80819d64ad10", refreshToken) +23:10:20.043 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4edbaa69 +23:10:20.045 [XNIO-1 task-1] gRQUxImHSNGOT57fMHeVkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.045 [XNIO-1 task-1] gRQUxImHSNGOT57fMHeVkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.045 [XNIO-1 task-1] gRQUxImHSNGOT57fMHeVkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.045 [XNIO-1 task-1] gRQUxImHSNGOT57fMHeVkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.045 [XNIO-1 task-1] gRQUxImHSNGOT57fMHeVkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:20.046 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.052 [XNIO-1 task-1] MmNlM4rlRXeaVjACGknQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.052 [XNIO-1 task-1] MmNlM4rlRXeaVjACGknQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.052 [XNIO-1 task-1] MmNlM4rlRXeaVjACGknQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.052 [XNIO-1 task-1] MmNlM4rlRXeaVjACGknQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.052 [XNIO-1 task-1] MmNlM4rlRXeaVjACGknQXw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:20.052 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.058 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:849a55ed +23:10:20.059 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:849a55ed +23:10:20.065 [XNIO-1 task-1] KMoRSOKpTayr4QJqOC1cfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.065 [XNIO-1 task-1] KMoRSOKpTayr4QJqOC1cfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.065 [XNIO-1 task-1] KMoRSOKpTayr4QJqOC1cfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.065 [XNIO-1 task-1] KMoRSOKpTayr4QJqOC1cfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.071 [XNIO-1 task-1] a_ubUhjESViu_nPFMtorxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.071 [XNIO-1 task-1] a_ubUhjESViu_nPFMtorxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.071 [XNIO-1 task-1] a_ubUhjESViu_nPFMtorxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.072 [XNIO-1 task-1] a_ubUhjESViu_nPFMtorxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.072 [XNIO-1 task-1] a_ubUhjESViu_nPFMtorxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.093 [XNIO-1 task-1] JUv5B---SL2gpsAikyaONA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.093 [XNIO-1 task-1] JUv5B---SL2gpsAikyaONA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.093 [XNIO-1 task-1] JUv5B---SL2gpsAikyaONA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.094 [XNIO-1 task-1] JUv5B---SL2gpsAikyaONA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.095 [XNIO-1 task-1] JUv5B---SL2gpsAikyaONA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.096 [XNIO-1 task-1] JUv5B---SL2gpsAikyaONA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe78823f-864e-4662-87e8-3054ef1e52be is not found.","severity":"ERROR"} +23:10:20.102 [XNIO-1 task-1] FQcEiZrGSaixL1pkhpseZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.102 [XNIO-1 task-1] FQcEiZrGSaixL1pkhpseZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.102 [XNIO-1 task-1] FQcEiZrGSaixL1pkhpseZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.103 [XNIO-1 task-1] FQcEiZrGSaixL1pkhpseZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.103 [XNIO-1 task-1] FQcEiZrGSaixL1pkhpseZA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.110 [XNIO-1 task-1] 4_1OoQYTTKaU9CIUWOiosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.110 [XNIO-1 task-1] 4_1OoQYTTKaU9CIUWOiosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.110 [XNIO-1 task-1] 4_1OoQYTTKaU9CIUWOiosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.110 [XNIO-1 task-1] 4_1OoQYTTKaU9CIUWOiosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.110 [XNIO-1 task-1] 4_1OoQYTTKaU9CIUWOiosg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.113 [XNIO-1 task-1] WHlPIJq6Q_ms3eZiGGToAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.113 [XNIO-1 task-1] WHlPIJq6Q_ms3eZiGGToAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.113 [XNIO-1 task-1] WHlPIJq6Q_ms3eZiGGToAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.113 [XNIO-1 task-1] WHlPIJq6Q_ms3eZiGGToAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.113 [XNIO-1 task-1] WHlPIJq6Q_ms3eZiGGToAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.116 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:18c3332c +23:10:20.116 [XNIO-1 task-1] YSVnnjnqTXSWXFXEEokLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.116 [XNIO-1 task-1] YSVnnjnqTXSWXFXEEokLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.116 [XNIO-1 task-1] YSVnnjnqTXSWXFXEEokLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.116 [XNIO-1 task-1] YSVnnjnqTXSWXFXEEokLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.116 [XNIO-1 task-1] YSVnnjnqTXSWXFXEEokLcw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.118 [XNIO-1 task-1] YSVnnjnqTXSWXFXEEokLcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe78823f-864e-4662-87e8-3054ef1e52be is not found.","severity":"ERROR"} +23:10:20.122 [XNIO-1 task-1] a0gq-IYvTFqtyxPqQvqVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.122 [XNIO-1 task-1] a0gq-IYvTFqtyxPqQvqVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.122 [XNIO-1 task-1] a0gq-IYvTFqtyxPqQvqVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.122 [XNIO-1 task-1] a0gq-IYvTFqtyxPqQvqVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.122 [XNIO-1 task-1] a0gq-IYvTFqtyxPqQvqVMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 32b9445f-544e-4864-86e1-80819d64ad10 +23:10:20.126 [XNIO-1 task-1] y0EfgFnaRDmDA11resjvUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.126 [XNIO-1 task-1] y0EfgFnaRDmDA11resjvUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.126 [XNIO-1 task-1] y0EfgFnaRDmDA11resjvUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.126 [XNIO-1 task-1] y0EfgFnaRDmDA11resjvUA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.131 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.131 [XNIO-1 task-1] 9xhuzzOyTh-GGiaxMdCa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.131 [XNIO-1 task-1] 9xhuzzOyTh-GGiaxMdCa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.131 [XNIO-1 task-1] 9xhuzzOyTh-GGiaxMdCa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.132 [XNIO-1 task-1] 9xhuzzOyTh-GGiaxMdCa4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.132 [XNIO-1 task-1] 9xhuzzOyTh-GGiaxMdCa4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.133 [XNIO-1 task-1] 9xhuzzOyTh-GGiaxMdCa4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe78823f-864e-4662-87e8-3054ef1e52be is not found.","severity":"ERROR"} +23:10:20.139 [XNIO-1 task-1] 6vuI470QToOl3BpekRlz6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.139 [XNIO-1 task-1] 6vuI470QToOl3BpekRlz6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.140 [XNIO-1 task-1] 6vuI470QToOl3BpekRlz6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.140 [XNIO-1 task-1] 6vuI470QToOl3BpekRlz6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.143 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.146 [XNIO-1 task-1] i0yIHFTuT5O4qQZm5XiGXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.146 [XNIO-1 task-1] i0yIHFTuT5O4qQZm5XiGXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.149 [XNIO-1 task-1] i0yIHFTuT5O4qQZm5XiGXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.149 [XNIO-1 task-1] i0yIHFTuT5O4qQZm5XiGXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.149 [XNIO-1 task-1] i0yIHFTuT5O4qQZm5XiGXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.162 [XNIO-1 task-1] lmzpE1eWTje-yHVPZsu2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.162 [XNIO-1 task-1] lmzpE1eWTje-yHVPZsu2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.162 [XNIO-1 task-1] lmzpE1eWTje-yHVPZsu2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.163 [XNIO-1 task-1] lmzpE1eWTje-yHVPZsu2Hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.172 [XNIO-1 task-1] lY9S8bO_TKuf_LqR23bgUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10, base path is set to: null +23:10:20.172 [XNIO-1 task-1] lY9S8bO_TKuf_LqR23bgUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.173 [XNIO-1 task-1] lY9S8bO_TKuf_LqR23bgUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.173 [XNIO-1 task-1] lY9S8bO_TKuf_LqR23bgUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10, base path is set to: null +23:10:20.173 [XNIO-1 task-1] lY9S8bO_TKuf_LqR23bgUw DEBUG com.networknt.schema.TypeValidator debug - validate( "32b9445f-544e-4864-86e1-80819d64ad10", "32b9445f-544e-4864-86e1-80819d64ad10", refreshToken) +23:10:20.178 [XNIO-1 task-1] zysjUrMIQn2B9ke6eBUN0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.178 [XNIO-1 task-1] zysjUrMIQn2B9ke6eBUN0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.178 [XNIO-1 task-1] zysjUrMIQn2B9ke6eBUN0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.178 [XNIO-1 task-1] zysjUrMIQn2B9ke6eBUN0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.178 [XNIO-1 task-1] zysjUrMIQn2B9ke6eBUN0A DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:20.178 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.188 [XNIO-1 task-1] gQpTtvCKQfm2fJEAqF31pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10, base path is set to: null +23:10:20.188 [XNIO-1 task-1] gQpTtvCKQfm2fJEAqF31pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.188 [XNIO-1 task-1] gQpTtvCKQfm2fJEAqF31pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.189 [XNIO-1 task-1] gQpTtvCKQfm2fJEAqF31pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/32b9445f-544e-4864-86e1-80819d64ad10, base path is set to: null +23:10:20.189 [XNIO-1 task-1] gQpTtvCKQfm2fJEAqF31pA DEBUG com.networknt.schema.TypeValidator debug - validate( "32b9445f-544e-4864-86e1-80819d64ad10", "32b9445f-544e-4864-86e1-80819d64ad10", refreshToken) +23:10:20.194 [XNIO-1 task-1] XN1mFRabTWyb-f4v62mQ5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.195 [XNIO-1 task-1] XN1mFRabTWyb-f4v62mQ5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.195 [XNIO-1 task-1] XN1mFRabTWyb-f4v62mQ5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.195 [XNIO-1 task-1] XN1mFRabTWyb-f4v62mQ5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.195 [XNIO-1 task-1] XN1mFRabTWyb-f4v62mQ5w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.203 [XNIO-1 task-1] 3n6KqtqIQ963oVVHI7ZEPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35ad2815-e273-44b1-bd82-b763625482cb +23:10:20.203 [XNIO-1 task-1] 3n6KqtqIQ963oVVHI7ZEPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.203 [XNIO-1 task-1] 3n6KqtqIQ963oVVHI7ZEPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.204 [XNIO-1 task-1] 3n6KqtqIQ963oVVHI7ZEPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35ad2815-e273-44b1-bd82-b763625482cb +23:10:20.204 [XNIO-1 task-1] 3n6KqtqIQ963oVVHI7ZEPg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 35ad2815-e273-44b1-bd82-b763625482cb +23:10:20.209 [XNIO-1 task-1] bwLf9kirT4SgtlHCfOk6UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.209 [XNIO-1 task-1] bwLf9kirT4SgtlHCfOk6UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.209 [XNIO-1 task-1] bwLf9kirT4SgtlHCfOk6UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.209 [XNIO-1 task-1] bwLf9kirT4SgtlHCfOk6UQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.217 [XNIO-1 task-1] _58bCF75SryeM3Po-FmwNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.217 [XNIO-1 task-1] _58bCF75SryeM3Po-FmwNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.217 [XNIO-1 task-1] _58bCF75SryeM3Po-FmwNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.217 [XNIO-1 task-1] _58bCF75SryeM3Po-FmwNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.217 [XNIO-1 task-1] _58bCF75SryeM3Po-FmwNw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:20.218 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.221 [XNIO-1 task-1] sIajdBGBR8aHeRUq8k6YuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35ad2815-e273-44b1-bd82-b763625482cb, base path is set to: null +23:10:20.222 [XNIO-1 task-1] sIajdBGBR8aHeRUq8k6YuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.222 [XNIO-1 task-1] sIajdBGBR8aHeRUq8k6YuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.222 [XNIO-1 task-1] sIajdBGBR8aHeRUq8k6YuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35ad2815-e273-44b1-bd82-b763625482cb, base path is set to: null +23:10:20.222 [XNIO-1 task-1] sIajdBGBR8aHeRUq8k6YuA DEBUG com.networknt.schema.TypeValidator debug - validate( "35ad2815-e273-44b1-bd82-b763625482cb", "35ad2815-e273-44b1-bd82-b763625482cb", refreshToken) +23:10:20.237 [XNIO-1 task-1] mVcSaxGQS7ebQqdDVErPMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.237 [XNIO-1 task-1] mVcSaxGQS7ebQqdDVErPMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.237 [XNIO-1 task-1] mVcSaxGQS7ebQqdDVErPMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.237 [XNIO-1 task-1] mVcSaxGQS7ebQqdDVErPMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.237 [XNIO-1 task-1] mVcSaxGQS7ebQqdDVErPMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.239 [XNIO-1 task-1] mVcSaxGQS7ebQqdDVErPMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.243 [XNIO-1 task-1] 5BFJkTrXRzSxdS0c9Vt_oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.243 [XNIO-1 task-1] 5BFJkTrXRzSxdS0c9Vt_oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.243 [XNIO-1 task-1] 5BFJkTrXRzSxdS0c9Vt_oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.243 [XNIO-1 task-1] 5BFJkTrXRzSxdS0c9Vt_oA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.252 [XNIO-1 task-1] l0RRnQWcQXmWLdomReV9YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.253 [XNIO-1 task-1] l0RRnQWcQXmWLdomReV9YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.253 [XNIO-1 task-1] l0RRnQWcQXmWLdomReV9YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.253 [XNIO-1 task-1] l0RRnQWcQXmWLdomReV9YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.254 [XNIO-1 task-1] l0RRnQWcQXmWLdomReV9YQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.261 [XNIO-1 task-1] e6Woqo7dR96ofHvbypNwEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.261 [XNIO-1 task-1] e6Woqo7dR96ofHvbypNwEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.261 [XNIO-1 task-1] e6Woqo7dR96ofHvbypNwEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.261 [XNIO-1 task-1] e6Woqo7dR96ofHvbypNwEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.261 [XNIO-1 task-1] e6Woqo7dR96ofHvbypNwEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.262 [XNIO-1 task-1] e6Woqo7dR96ofHvbypNwEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe78823f-864e-4662-87e8-3054ef1e52be is not found.","severity":"ERROR"} +23:10:20.266 [XNIO-1 task-1] sjXUBiC0QR6StpBB4vIRNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.266 [XNIO-1 task-1] sjXUBiC0QR6StpBB4vIRNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.266 [XNIO-1 task-1] sjXUBiC0QR6StpBB4vIRNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.266 [XNIO-1 task-1] sjXUBiC0QR6StpBB4vIRNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.270 [XNIO-1 task-1] T8r7jU_lRMW10M-GgC8PJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.271 [XNIO-1 task-1] T8r7jU_lRMW10M-GgC8PJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.271 [XNIO-1 task-1] T8r7jU_lRMW10M-GgC8PJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.272 [XNIO-1 task-1] T8r7jU_lRMW10M-GgC8PJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.272 [XNIO-1 task-1] T8r7jU_lRMW10M-GgC8PJw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.277 [XNIO-1 task-1] 6vM4jentTn-W_msm04eVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.277 [XNIO-1 task-1] 6vM4jentTn-W_msm04eVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.277 [XNIO-1 task-1] 6vM4jentTn-W_msm04eVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.277 [XNIO-1 task-1] 6vM4jentTn-W_msm04eVwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.290 [XNIO-1 task-1] Eo5tG5vQQ5SjhPWubS9igA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.291 [XNIO-1 task-1] Eo5tG5vQQ5SjhPWubS9igA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.291 [XNIO-1 task-1] Eo5tG5vQQ5SjhPWubS9igA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.291 [XNIO-1 task-1] Eo5tG5vQQ5SjhPWubS9igA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.291 [XNIO-1 task-1] Eo5tG5vQQ5SjhPWubS9igA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.304 [XNIO-1 task-1] nOLGk4RQQrCnZlbmCvT0fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.305 [XNIO-1 task-1] nOLGk4RQQrCnZlbmCvT0fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.305 [XNIO-1 task-1] nOLGk4RQQrCnZlbmCvT0fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.305 [XNIO-1 task-1] nOLGk4RQQrCnZlbmCvT0fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.305 [XNIO-1 task-1] nOLGk4RQQrCnZlbmCvT0fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "011ecb81-353a-404e-8f0f-fcbef48ccb68", "011ecb81-353a-404e-8f0f-fcbef48ccb68", refreshToken) +23:10:20.317 [XNIO-1 task-1] 1N9Twz_lSViMeIcMIpLjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.318 [XNIO-1 task-1] 1N9Twz_lSViMeIcMIpLjXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.318 [XNIO-1 task-1] 1N9Twz_lSViMeIcMIpLjXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.318 [XNIO-1 task-1] 1N9Twz_lSViMeIcMIpLjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.318 [XNIO-1 task-1] 1N9Twz_lSViMeIcMIpLjXA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.320 [XNIO-1 task-1] 1N9Twz_lSViMeIcMIpLjXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:20.328 [XNIO-1 task-1] AGkf-jYtQp21RseXCFbDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.328 [XNIO-1 task-1] AGkf-jYtQp21RseXCFbDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.328 [XNIO-1 task-1] AGkf-jYtQp21RseXCFbDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.328 [XNIO-1 task-1] AGkf-jYtQp21RseXCFbDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.328 [XNIO-1 task-1] AGkf-jYtQp21RseXCFbDwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.331 [XNIO-1 task-1] -wwqXnm8Rl6exPIv3L_cTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.331 [XNIO-1 task-1] -wwqXnm8Rl6exPIv3L_cTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.331 [XNIO-1 task-1] -wwqXnm8Rl6exPIv3L_cTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.331 [XNIO-1 task-1] -wwqXnm8Rl6exPIv3L_cTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.336 [XNIO-1 task-1] A2jgZJN-RtuCgypmqvG3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.336 [XNIO-1 task-1] A2jgZJN-RtuCgypmqvG3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.336 [XNIO-1 task-1] A2jgZJN-RtuCgypmqvG3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.336 [XNIO-1 task-1] A2jgZJN-RtuCgypmqvG3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe78823f-864e-4662-87e8-3054ef1e52be, base path is set to: null +23:10:20.336 [XNIO-1 task-1] A2jgZJN-RtuCgypmqvG3rw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe78823f-864e-4662-87e8-3054ef1e52be", "fe78823f-864e-4662-87e8-3054ef1e52be", refreshToken) +23:10:20.336 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe78823f-864e-4662-87e8-3054ef1e52be +23:10:20.340 [XNIO-1 task-1] sXYgzJXmS-Kzpih7iiGiIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.341 [XNIO-1 task-1] sXYgzJXmS-Kzpih7iiGiIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.341 [XNIO-1 task-1] sXYgzJXmS-Kzpih7iiGiIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.341 [XNIO-1 task-1] sXYgzJXmS-Kzpih7iiGiIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.341 [XNIO-1 task-1] sXYgzJXmS-Kzpih7iiGiIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.353 [XNIO-1 task-1] lrxlXLN1THmacl_S5JU4FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.353 [XNIO-1 task-1] lrxlXLN1THmacl_S5JU4FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.353 [XNIO-1 task-1] lrxlXLN1THmacl_S5JU4FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.353 [XNIO-1 task-1] lrxlXLN1THmacl_S5JU4FA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.365 [XNIO-1 task-1] RZImUQZZQqOwqcEJy0JfGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.365 [XNIO-1 task-1] RZImUQZZQqOwqcEJy0JfGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.365 [XNIO-1 task-1] RZImUQZZQqOwqcEJy0JfGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.365 [XNIO-1 task-1] RZImUQZZQqOwqcEJy0JfGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.365 [XNIO-1 task-1] RZImUQZZQqOwqcEJy0JfGg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.377 [XNIO-1 task-1] vYG--Lr1S3uGV_Eb4O-Q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.377 [XNIO-1 task-1] vYG--Lr1S3uGV_Eb4O-Q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.377 [XNIO-1 task-1] vYG--Lr1S3uGV_Eb4O-Q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.377 [XNIO-1 task-1] vYG--Lr1S3uGV_Eb4O-Q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.377 [XNIO-1 task-1] vYG--Lr1S3uGV_Eb4O-Q1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.380 [XNIO-1 task-1] _7CHVdUfThmkqUrKaMp8FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.380 [XNIO-1 task-1] _7CHVdUfThmkqUrKaMp8FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.380 [XNIO-1 task-1] _7CHVdUfThmkqUrKaMp8FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.381 [XNIO-1 task-1] _7CHVdUfThmkqUrKaMp8FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.381 [XNIO-1 task-1] _7CHVdUfThmkqUrKaMp8FQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.387 [XNIO-1 task-1] bnFOevYhQVOAU_7CqyJyrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.387 [XNIO-1 task-1] bnFOevYhQVOAU_7CqyJyrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.388 [XNIO-1 task-1] bnFOevYhQVOAU_7CqyJyrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.388 [XNIO-1 task-1] bnFOevYhQVOAU_7CqyJyrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.388 [XNIO-1 task-1] bnFOevYhQVOAU_7CqyJyrw DEBUG com.networknt.schema.TypeValidator debug - validate( "011ecb81-353a-404e-8f0f-fcbef48ccb68", "011ecb81-353a-404e-8f0f-fcbef48ccb68", refreshToken) +23:10:20.391 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4d850486 +23:10:20.398 [XNIO-1 task-1] n7Gfbk1ESwGYJz3mJQr2wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.399 [XNIO-1 task-1] n7Gfbk1ESwGYJz3mJQr2wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.399 [XNIO-1 task-1] n7Gfbk1ESwGYJz3mJQr2wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.399 [XNIO-1 task-1] n7Gfbk1ESwGYJz3mJQr2wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.399 [XNIO-1 task-1] n7Gfbk1ESwGYJz3mJQr2wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.399 [XNIO-1 task-1] n7Gfbk1ESwGYJz3mJQr2wQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.404 [XNIO-1 task-1] TCmG9O7YQqqkw3IVk912XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.404 [XNIO-1 task-1] TCmG9O7YQqqkw3IVk912XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.404 [XNIO-1 task-1] TCmG9O7YQqqkw3IVk912XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.404 [XNIO-1 task-1] TCmG9O7YQqqkw3IVk912XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.404 [XNIO-1 task-1] TCmG9O7YQqqkw3IVk912XA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.410 [XNIO-1 task-1] Cl81Ids5TSWB4zN_wDm67Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.410 [XNIO-1 task-1] Cl81Ids5TSWB4zN_wDm67Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.410 [XNIO-1 task-1] Cl81Ids5TSWB4zN_wDm67Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.411 [XNIO-1 task-1] Cl81Ids5TSWB4zN_wDm67Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.411 [XNIO-1 task-1] Cl81Ids5TSWB4zN_wDm67Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.418 [XNIO-1 task-1] IBymxzQPStCR07AIbxZQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.418 [XNIO-1 task-1] IBymxzQPStCR07AIbxZQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.418 [XNIO-1 task-1] IBymxzQPStCR07AIbxZQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.418 [XNIO-1 task-1] IBymxzQPStCR07AIbxZQ8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.427 [XNIO-1 task-1] r0nsF0lKSs28-jhRSw3TXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.427 [XNIO-1 task-1] r0nsF0lKSs28-jhRSw3TXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.427 [XNIO-1 task-1] r0nsF0lKSs28-jhRSw3TXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.428 [XNIO-1 task-1] r0nsF0lKSs28-jhRSw3TXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.428 [XNIO-1 task-1] r0nsF0lKSs28-jhRSw3TXg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.435 [XNIO-1 task-1] 1b9w-rAEQ4K4NYrPU0S0OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.435 [XNIO-1 task-1] 1b9w-rAEQ4K4NYrPU0S0OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.435 [XNIO-1 task-1] 1b9w-rAEQ4K4NYrPU0S0OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.435 [XNIO-1 task-1] 1b9w-rAEQ4K4NYrPU0S0OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.435 [XNIO-1 task-1] 1b9w-rAEQ4K4NYrPU0S0OQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.438 [XNIO-1 task-1] tcNSbWe3QBWXhiVBb6JtRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.438 [XNIO-1 task-1] tcNSbWe3QBWXhiVBb6JtRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.438 [XNIO-1 task-1] tcNSbWe3QBWXhiVBb6JtRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.438 [XNIO-1 task-1] tcNSbWe3QBWXhiVBb6JtRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.438 [XNIO-1 task-1] tcNSbWe3QBWXhiVBb6JtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.438 [XNIO-1 task-1] tcNSbWe3QBWXhiVBb6JtRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.442 [XNIO-1 task-1] 0Q-U0vNLSIOZjh2eKUJIZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.442 [XNIO-1 task-1] 0Q-U0vNLSIOZjh2eKUJIZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.443 [XNIO-1 task-1] 0Q-U0vNLSIOZjh2eKUJIZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.443 [XNIO-1 task-1] 0Q-U0vNLSIOZjh2eKUJIZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.443 [XNIO-1 task-1] 0Q-U0vNLSIOZjh2eKUJIZA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.445 [XNIO-1 task-1] 6OnoMx1_TT-B-HH2Rg1Nbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.445 [XNIO-1 task-1] 6OnoMx1_TT-B-HH2Rg1Nbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.445 [XNIO-1 task-1] 6OnoMx1_TT-B-HH2Rg1Nbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.446 [XNIO-1 task-1] 6OnoMx1_TT-B-HH2Rg1Nbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.446 [XNIO-1 task-1] 6OnoMx1_TT-B-HH2Rg1Nbw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.446 [XNIO-1 task-1] 6OnoMx1_TT-B-HH2Rg1Nbw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.449 [XNIO-1 task-1] 72DgHltQTTS-BrqIde6fAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.449 [XNIO-1 task-1] 72DgHltQTTS-BrqIde6fAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.449 [XNIO-1 task-1] 72DgHltQTTS-BrqIde6fAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.449 [XNIO-1 task-1] 72DgHltQTTS-BrqIde6fAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.449 [XNIO-1 task-1] 72DgHltQTTS-BrqIde6fAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.451 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0a987bcd-19d1-492a-b874-7984e0e012ca +23:10:20.459 [XNIO-1 task-1] iU7f_LYARV-CCbvmFNABeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.459 [XNIO-1 task-1] iU7f_LYARV-CCbvmFNABeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.459 [XNIO-1 task-1] iU7f_LYARV-CCbvmFNABeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.459 [XNIO-1 task-1] iU7f_LYARV-CCbvmFNABeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.459 [XNIO-1 task-1] iU7f_LYARV-CCbvmFNABeg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.459 [XNIO-1 task-1] iU7f_LYARV-CCbvmFNABeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.459 [XNIO-1 task-1] iU7f_LYARV-CCbvmFNABeg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.462 [XNIO-1 task-1] n1IxnIwwSomPpqiVR3Wkzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.462 [XNIO-1 task-1] n1IxnIwwSomPpqiVR3Wkzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.462 [XNIO-1 task-1] n1IxnIwwSomPpqiVR3Wkzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.463 [XNIO-1 task-1] n1IxnIwwSomPpqiVR3Wkzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.463 [XNIO-1 task-1] n1IxnIwwSomPpqiVR3Wkzw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.465 [XNIO-1 task-1] UCifiJxwS_q5ArD4747jZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.466 [XNIO-1 task-1] UCifiJxwS_q5ArD4747jZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.466 [XNIO-1 task-1] UCifiJxwS_q5ArD4747jZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.466 [XNIO-1 task-1] UCifiJxwS_q5ArD4747jZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.466 [XNIO-1 task-1] UCifiJxwS_q5ArD4747jZA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.466 [XNIO-1 task-1] UCifiJxwS_q5ArD4747jZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.473 [XNIO-1 task-1] SJ4vmI5sTNyYKmXfUs5Fmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.474 [XNIO-1 task-1] SJ4vmI5sTNyYKmXfUs5Fmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.474 [XNIO-1 task-1] SJ4vmI5sTNyYKmXfUs5Fmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.479 [XNIO-1 task-1] SJ4vmI5sTNyYKmXfUs5Fmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.488 [XNIO-1 task-1] 3FV1q7xBRd-mnwCY9lK6cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.488 [XNIO-1 task-1] 3FV1q7xBRd-mnwCY9lK6cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.488 [XNIO-1 task-1] 3FV1q7xBRd-mnwCY9lK6cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.488 [XNIO-1 task-1] 3FV1q7xBRd-mnwCY9lK6cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.489 [XNIO-1 task-1] 3FV1q7xBRd-mnwCY9lK6cQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.495 [XNIO-1 task-1] 6i2avBOwTJicEf_OQxa5zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.495 [XNIO-1 task-1] 6i2avBOwTJicEf_OQxa5zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.495 [XNIO-1 task-1] 6i2avBOwTJicEf_OQxa5zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.495 [XNIO-1 task-1] 6i2avBOwTJicEf_OQxa5zw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.497 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4d850486 +23:10:20.500 [XNIO-1 task-1] 8XtvJSoSSiidzNTxQ0-HJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.501 [XNIO-1 task-1] 8XtvJSoSSiidzNTxQ0-HJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.501 [XNIO-1 task-1] 8XtvJSoSSiidzNTxQ0-HJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.501 [XNIO-1 task-1] 8XtvJSoSSiidzNTxQ0-HJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.501 [XNIO-1 task-1] 8XtvJSoSSiidzNTxQ0-HJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.509 [XNIO-1 task-1] 4qMsrhwUSJqF2DsrcC6PKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.509 [XNIO-1 task-1] 4qMsrhwUSJqF2DsrcC6PKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.509 [XNIO-1 task-1] 4qMsrhwUSJqF2DsrcC6PKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.509 [XNIO-1 task-1] 4qMsrhwUSJqF2DsrcC6PKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.509 [XNIO-1 task-1] 4qMsrhwUSJqF2DsrcC6PKA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.511 [XNIO-1 task-1] ngB1xPGARdqU87x3QzUiZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f845934-7eee-4d55-82c4-1a0c9907e674, base path is set to: null +23:10:20.511 [XNIO-1 task-1] ngB1xPGARdqU87x3QzUiZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.511 [XNIO-1 task-1] ngB1xPGARdqU87x3QzUiZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.511 [XNIO-1 task-1] ngB1xPGARdqU87x3QzUiZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f845934-7eee-4d55-82c4-1a0c9907e674, base path is set to: null +23:10:20.511 [XNIO-1 task-1] ngB1xPGARdqU87x3QzUiZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f845934-7eee-4d55-82c4-1a0c9907e674", "5f845934-7eee-4d55-82c4-1a0c9907e674", refreshToken) +23:10:20.514 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.528 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2a67b3a0-5337-4148-832a-b6f7dbdb2229 +23:10:20.529 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2a67b3a0-5337-4148-832a-b6f7dbdb2229 +23:10:20.535 [XNIO-1 task-1] ri8fe3IeS0qdpYvLsKGRAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.535 [XNIO-1 task-1] ri8fe3IeS0qdpYvLsKGRAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.535 [XNIO-1 task-1] ri8fe3IeS0qdpYvLsKGRAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.535 [XNIO-1 task-1] ri8fe3IeS0qdpYvLsKGRAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.543 [XNIO-1 task-1] H3sfxqAAR8mjQq-QfrwT1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.543 [XNIO-1 task-1] H3sfxqAAR8mjQq-QfrwT1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.543 [XNIO-1 task-1] H3sfxqAAR8mjQq-QfrwT1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.543 [XNIO-1 task-1] H3sfxqAAR8mjQq-QfrwT1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.544 [XNIO-1 task-1] H3sfxqAAR8mjQq-QfrwT1A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.549 [XNIO-1 task-1] N9tNsVDzS-ap9P1f3HEEmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.549 [XNIO-1 task-1] N9tNsVDzS-ap9P1f3HEEmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.550 [XNIO-1 task-1] N9tNsVDzS-ap9P1f3HEEmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.550 [XNIO-1 task-1] N9tNsVDzS-ap9P1f3HEEmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.551 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4d850486 +23:10:20.556 [XNIO-1 task-1] klNt5AkmS1K4TepkdjzrLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.556 [XNIO-1 task-1] klNt5AkmS1K4TepkdjzrLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.556 [XNIO-1 task-1] klNt5AkmS1K4TepkdjzrLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.556 [XNIO-1 task-1] klNt5AkmS1K4TepkdjzrLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.556 [XNIO-1 task-1] klNt5AkmS1K4TepkdjzrLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.556 [XNIO-1 task-1] klNt5AkmS1K4TepkdjzrLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:20.566 [XNIO-1 task-1] a6WDejhpR9WD2moGfmIKOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.566 [XNIO-1 task-1] a6WDejhpR9WD2moGfmIKOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.566 [XNIO-1 task-1] a6WDejhpR9WD2moGfmIKOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.566 [XNIO-1 task-1] a6WDejhpR9WD2moGfmIKOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.566 [XNIO-1 task-1] a6WDejhpR9WD2moGfmIKOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.573 [XNIO-1 task-1] RGYAgMytTdyPrYbqViglYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.573 [XNIO-1 task-1] RGYAgMytTdyPrYbqViglYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.573 [XNIO-1 task-1] RGYAgMytTdyPrYbqViglYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.573 [XNIO-1 task-1] RGYAgMytTdyPrYbqViglYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.573 [XNIO-1 task-1] RGYAgMytTdyPrYbqViglYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.578 [XNIO-1 task-1] 4vjZc5PsQGqHl4iRFXrQHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.578 [XNIO-1 task-1] 4vjZc5PsQGqHl4iRFXrQHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.578 [XNIO-1 task-1] 4vjZc5PsQGqHl4iRFXrQHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.578 [XNIO-1 task-1] 4vjZc5PsQGqHl4iRFXrQHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.583 [XNIO-1 task-1] 6BldNKNyRj-eciins9auqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.583 [XNIO-1 task-1] 6BldNKNyRj-eciins9auqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.584 [XNIO-1 task-1] 6BldNKNyRj-eciins9auqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.584 [XNIO-1 task-1] 6BldNKNyRj-eciins9auqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.584 [XNIO-1 task-1] 6BldNKNyRj-eciins9auqw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.591 [XNIO-1 task-1] W1GtT9XUSUixTRylK0y6ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.591 [XNIO-1 task-1] W1GtT9XUSUixTRylK0y6ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.591 [XNIO-1 task-1] W1GtT9XUSUixTRylK0y6ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.591 [XNIO-1 task-1] W1GtT9XUSUixTRylK0y6ng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.605 [XNIO-1 task-1] OJoenCvETQaiX8Y1Z1CWyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.606 [XNIO-1 task-1] OJoenCvETQaiX8Y1Z1CWyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.606 [XNIO-1 task-1] OJoenCvETQaiX8Y1Z1CWyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.606 [XNIO-1 task-1] OJoenCvETQaiX8Y1Z1CWyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.606 [XNIO-1 task-1] OJoenCvETQaiX8Y1Z1CWyA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.610 [XNIO-1 task-1] jyKSmW7FQEessM-DL37-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.610 [XNIO-1 task-1] jyKSmW7FQEessM-DL37-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.610 [XNIO-1 task-1] jyKSmW7FQEessM-DL37-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.610 [XNIO-1 task-1] jyKSmW7FQEessM-DL37-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.611 [XNIO-1 task-1] jyKSmW7FQEessM-DL37-vA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.613 [XNIO-1 task-1] 8a9atuFFSqKT6pwI6XutQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.613 [XNIO-1 task-1] 8a9atuFFSqKT6pwI6XutQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.613 [XNIO-1 task-1] 8a9atuFFSqKT6pwI6XutQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.613 [XNIO-1 task-1] 8a9atuFFSqKT6pwI6XutQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.613 [XNIO-1 task-1] 8a9atuFFSqKT6pwI6XutQg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.624 [XNIO-1 task-1] IoaW600lTOiBiIlM4pg2WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.624 [XNIO-1 task-1] IoaW600lTOiBiIlM4pg2WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.624 [XNIO-1 task-1] IoaW600lTOiBiIlM4pg2WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.624 [XNIO-1 task-1] IoaW600lTOiBiIlM4pg2WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.625 [XNIO-1 task-1] IoaW600lTOiBiIlM4pg2WA DEBUG com.networknt.schema.TypeValidator debug - validate( "011ecb81-353a-404e-8f0f-fcbef48ccb68", "011ecb81-353a-404e-8f0f-fcbef48ccb68", refreshToken) +23:10:20.625 [XNIO-1 task-1] IoaW600lTOiBiIlM4pg2WA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 011ecb81-353a-404e-8f0f-fcbef48ccb68 is not found.","severity":"ERROR"} +23:10:20.627 [XNIO-1 task-1] revZQPcNQ8-KHBWa2wfAWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.627 [XNIO-1 task-1] revZQPcNQ8-KHBWa2wfAWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.627 [XNIO-1 task-1] revZQPcNQ8-KHBWa2wfAWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.627 [XNIO-1 task-1] revZQPcNQ8-KHBWa2wfAWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.627 [XNIO-1 task-1] revZQPcNQ8-KHBWa2wfAWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.630 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4edbaa69 +23:10:20.632 [XNIO-1 task-1] ejknQrk3Qii4O7kbllL03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.632 [XNIO-1 task-1] ejknQrk3Qii4O7kbllL03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.632 [XNIO-1 task-1] ejknQrk3Qii4O7kbllL03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.632 [XNIO-1 task-1] ejknQrk3Qii4O7kbllL03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.632 [XNIO-1 task-1] ejknQrk3Qii4O7kbllL03g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.638 [XNIO-1 task-1] 8X4VkYUYQDe4Q1TYfx0jIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.638 [XNIO-1 task-1] 8X4VkYUYQDe4Q1TYfx0jIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.638 [XNIO-1 task-1] 8X4VkYUYQDe4Q1TYfx0jIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.638 [XNIO-1 task-1] 8X4VkYUYQDe4Q1TYfx0jIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.638 [XNIO-1 task-1] 8X4VkYUYQDe4Q1TYfx0jIw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.639 [XNIO-1 task-1] 8X4VkYUYQDe4Q1TYfx0jIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:20.642 [XNIO-1 task-1] oavrW4MkQFCXqpSY_B8_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.642 [XNIO-1 task-1] oavrW4MkQFCXqpSY_B8_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.642 [XNIO-1 task-1] oavrW4MkQFCXqpSY_B8_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.642 [XNIO-1 task-1] oavrW4MkQFCXqpSY_B8_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.642 [XNIO-1 task-1] oavrW4MkQFCXqpSY_B8_UA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.643 [XNIO-1 task-1] 3eFjJelEREa_11l5uk2JXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.644 [XNIO-1 task-1] 3eFjJelEREa_11l5uk2JXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.644 [XNIO-1 task-1] 3eFjJelEREa_11l5uk2JXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.644 [XNIO-1 task-1] 3eFjJelEREa_11l5uk2JXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.644 [XNIO-1 task-1] 3eFjJelEREa_11l5uk2JXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.644 [XNIO-1 task-1] 3eFjJelEREa_11l5uk2JXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:20.646 [XNIO-1 task-1] Awcbw1lmQ8SjXCZyUFt-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.646 [XNIO-1 task-1] Awcbw1lmQ8SjXCZyUFt-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.646 [XNIO-1 task-1] Awcbw1lmQ8SjXCZyUFt-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.646 [XNIO-1 task-1] Awcbw1lmQ8SjXCZyUFt-Lg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.652 [XNIO-1 task-1] 6MQqTPLlSb6lkWh3iWFjeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.652 [XNIO-1 task-1] 6MQqTPLlSb6lkWh3iWFjeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.652 [XNIO-1 task-1] 6MQqTPLlSb6lkWh3iWFjeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.652 [XNIO-1 task-1] 6MQqTPLlSb6lkWh3iWFjeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.652 [XNIO-1 task-1] 6MQqTPLlSb6lkWh3iWFjeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.660 [XNIO-1 task-1] vxmtLexVTZalGj1ToQRP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.660 [XNIO-1 task-1] vxmtLexVTZalGj1ToQRP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.660 [XNIO-1 task-1] vxmtLexVTZalGj1ToQRP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.660 [XNIO-1 task-1] vxmtLexVTZalGj1ToQRP5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.667 [XNIO-1 task-1] A_f3ymeeT9iYsRLrKNOpaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.667 [XNIO-1 task-1] A_f3ymeeT9iYsRLrKNOpaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.667 [XNIO-1 task-1] A_f3ymeeT9iYsRLrKNOpaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.667 [XNIO-1 task-1] A_f3ymeeT9iYsRLrKNOpaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.667 [XNIO-1 task-1] A_f3ymeeT9iYsRLrKNOpaA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.673 [XNIO-1 task-1] 7unJLUEYRUqSITyz8BVnig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.673 [XNIO-1 task-1] 7unJLUEYRUqSITyz8BVnig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.674 [XNIO-1 task-1] 7unJLUEYRUqSITyz8BVnig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.674 [XNIO-1 task-1] 7unJLUEYRUqSITyz8BVnig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.678 [XNIO-1 task-1] dmboE7NPSW6snX-IspFnlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.678 [XNIO-1 task-1] dmboE7NPSW6snX-IspFnlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.678 [XNIO-1 task-1] dmboE7NPSW6snX-IspFnlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.678 [XNIO-1 task-1] dmboE7NPSW6snX-IspFnlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.678 [XNIO-1 task-1] dmboE7NPSW6snX-IspFnlg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.683 [XNIO-1 task-1] hVhzhhpzReO4M1aNtPrimQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.683 [XNIO-1 task-1] hVhzhhpzReO4M1aNtPrimQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.683 [XNIO-1 task-1] hVhzhhpzReO4M1aNtPrimQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.683 [XNIO-1 task-1] hVhzhhpzReO4M1aNtPrimQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.683 [XNIO-1 task-1] hVhzhhpzReO4M1aNtPrimQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.688 [XNIO-1 task-1] q0_wjR7zShaPVRNYahKRSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.688 [XNIO-1 task-1] q0_wjR7zShaPVRNYahKRSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.688 [XNIO-1 task-1] q0_wjR7zShaPVRNYahKRSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.688 [XNIO-1 task-1] q0_wjR7zShaPVRNYahKRSw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.688 [XNIO-1 task-1] q0_wjR7zShaPVRNYahKRSw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.695 [XNIO-1 task-1] b2JpnsGdSyapqsChjJywxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.695 [XNIO-1 task-1] b2JpnsGdSyapqsChjJywxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.695 [XNIO-1 task-1] b2JpnsGdSyapqsChjJywxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.695 [XNIO-1 task-1] b2JpnsGdSyapqsChjJywxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.704 [XNIO-1 task-1] YS62QoehQVGVhiLSimIDNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.704 [XNIO-1 task-1] YS62QoehQVGVhiLSimIDNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.704 [XNIO-1 task-1] YS62QoehQVGVhiLSimIDNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.704 [XNIO-1 task-1] YS62QoehQVGVhiLSimIDNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.704 [XNIO-1 task-1] YS62QoehQVGVhiLSimIDNA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.704 [XNIO-1 task-1] YS62QoehQVGVhiLSimIDNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.706 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a7af2a94-f8bc-4e25-b5d5-951cc331a4d9 +23:10:20.708 [XNIO-1 task-1] zfe2R5WzRJGsjao4MH4iBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.709 [XNIO-1 task-1] zfe2R5WzRJGsjao4MH4iBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.709 [XNIO-1 task-1] zfe2R5WzRJGsjao4MH4iBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.709 [XNIO-1 task-1] zfe2R5WzRJGsjao4MH4iBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.709 [XNIO-1 task-1] zfe2R5WzRJGsjao4MH4iBw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.709 [XNIO-1 task-1] zfe2R5WzRJGsjao4MH4iBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.711 [XNIO-1 task-1] vLb-QZJdSPWTuh0JcE7XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.711 [XNIO-1 task-1] vLb-QZJdSPWTuh0JcE7XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.711 [XNIO-1 task-1] vLb-QZJdSPWTuh0JcE7XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.711 [XNIO-1 task-1] vLb-QZJdSPWTuh0JcE7XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.712 [XNIO-1 task-1] vLb-QZJdSPWTuh0JcE7XLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.718 [XNIO-1 task-1] 2zg0c1CkSY-UfIqvinkCDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.718 [XNIO-1 task-1] 2zg0c1CkSY-UfIqvinkCDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.718 [XNIO-1 task-1] 2zg0c1CkSY-UfIqvinkCDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.718 [XNIO-1 task-1] 2zg0c1CkSY-UfIqvinkCDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.718 [XNIO-1 task-1] 2zg0c1CkSY-UfIqvinkCDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.719 [XNIO-1 task-1] 2zg0c1CkSY-UfIqvinkCDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.723 [XNIO-1 task-1] a4GPWUGASN2J4l7v_GLLAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.723 [XNIO-1 task-1] a4GPWUGASN2J4l7v_GLLAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.723 [XNIO-1 task-1] a4GPWUGASN2J4l7v_GLLAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.723 [XNIO-1 task-1] a4GPWUGASN2J4l7v_GLLAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.723 [XNIO-1 task-1] a4GPWUGASN2J4l7v_GLLAA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.727 [XNIO-1 task-1] _rFFuHfYRgKvX89tXbUFRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.727 [XNIO-1 task-1] _rFFuHfYRgKvX89tXbUFRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.727 [XNIO-1 task-1] _rFFuHfYRgKvX89tXbUFRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.727 [XNIO-1 task-1] _rFFuHfYRgKvX89tXbUFRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.727 [XNIO-1 task-1] _rFFuHfYRgKvX89tXbUFRw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.727 [XNIO-1 task-1] _rFFuHfYRgKvX89tXbUFRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.731 [XNIO-1 task-1] b61QEl59T4izIE7hGhWF5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.731 [XNIO-1 task-1] b61QEl59T4izIE7hGhWF5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.731 [XNIO-1 task-1] b61QEl59T4izIE7hGhWF5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.731 [XNIO-1 task-1] b61QEl59T4izIE7hGhWF5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.735 [XNIO-1 task-1] mlAuCiVxTNW5klaXNLvZHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.736 [XNIO-1 task-1] mlAuCiVxTNW5klaXNLvZHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.736 [XNIO-1 task-1] mlAuCiVxTNW5klaXNLvZHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.736 [XNIO-1 task-1] mlAuCiVxTNW5klaXNLvZHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.736 [XNIO-1 task-1] mlAuCiVxTNW5klaXNLvZHA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.736 [XNIO-1 task-1] mlAuCiVxTNW5klaXNLvZHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.738 [XNIO-1 task-1] Nrn496ddSiG71Oig9M_ALw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.738 [XNIO-1 task-1] Nrn496ddSiG71Oig9M_ALw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.738 [XNIO-1 task-1] Nrn496ddSiG71Oig9M_ALw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.739 [XNIO-1 task-1] Nrn496ddSiG71Oig9M_ALw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.739 [XNIO-1 task-1] Nrn496ddSiG71Oig9M_ALw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.741 [XNIO-1 task-1] Oi9I3mgDS8iRBWui6W5SDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.742 [XNIO-1 task-1] Oi9I3mgDS8iRBWui6W5SDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.742 [XNIO-1 task-1] Oi9I3mgDS8iRBWui6W5SDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.743 [XNIO-1 task-1] Oi9I3mgDS8iRBWui6W5SDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.743 [XNIO-1 task-1] Oi9I3mgDS8iRBWui6W5SDw DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.743 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.754 [XNIO-1 task-1] UsE9pv5KSrm3ug6dmEU76w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.754 [XNIO-1 task-1] UsE9pv5KSrm3ug6dmEU76w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.754 [XNIO-1 task-1] UsE9pv5KSrm3ug6dmEU76w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.754 [XNIO-1 task-1] UsE9pv5KSrm3ug6dmEU76w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.754 [XNIO-1 task-1] UsE9pv5KSrm3ug6dmEU76w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.756 [XNIO-1 task-1] UsE9pv5KSrm3ug6dmEU76w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb is not found.","severity":"ERROR"} +23:10:20.760 [XNIO-1 task-1] Abet9DwiQXW6o4rgDmcSCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.760 [XNIO-1 task-1] Abet9DwiQXW6o4rgDmcSCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.760 [XNIO-1 task-1] Abet9DwiQXW6o4rgDmcSCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.760 [XNIO-1 task-1] Abet9DwiQXW6o4rgDmcSCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.760 [XNIO-1 task-1] Abet9DwiQXW6o4rgDmcSCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.761 [XNIO-1 task-1] Abet9DwiQXW6o4rgDmcSCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb is not found.","severity":"ERROR"} +23:10:20.763 [XNIO-1 task-1] oH16FNdTStiqDPpzL6cKAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.764 [XNIO-1 task-1] oH16FNdTStiqDPpzL6cKAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.764 [XNIO-1 task-1] oH16FNdTStiqDPpzL6cKAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.764 [XNIO-1 task-1] oH16FNdTStiqDPpzL6cKAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.764 [XNIO-1 task-1] oH16FNdTStiqDPpzL6cKAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.774 [XNIO-1 task-1] wUGHQ9ZHSYqsKPMbxHzmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.774 [XNIO-1 task-1] wUGHQ9ZHSYqsKPMbxHzmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.775 [XNIO-1 task-1] wUGHQ9ZHSYqsKPMbxHzmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.775 [XNIO-1 task-1] wUGHQ9ZHSYqsKPMbxHzmtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.780 [XNIO-1 task-1] yyaEE99eQcaK0eu-WeE82A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.780 [XNIO-1 task-1] yyaEE99eQcaK0eu-WeE82A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.780 [XNIO-1 task-1] yyaEE99eQcaK0eu-WeE82A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.780 [XNIO-1 task-1] yyaEE99eQcaK0eu-WeE82A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.781 [XNIO-1 task-1] yyaEE99eQcaK0eu-WeE82A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.785 [XNIO-1 task-1] SqJ8ZpnnTNaIzpKRR726iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.785 [XNIO-1 task-1] SqJ8ZpnnTNaIzpKRR726iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.785 [XNIO-1 task-1] SqJ8ZpnnTNaIzpKRR726iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.785 [XNIO-1 task-1] SqJ8ZpnnTNaIzpKRR726iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.790 [XNIO-1 task-1] O-H7wlfvQKW3gw-_wgLXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.791 [XNIO-1 task-1] O-H7wlfvQKW3gw-_wgLXyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.791 [XNIO-1 task-1] O-H7wlfvQKW3gw-_wgLXyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.791 [XNIO-1 task-1] O-H7wlfvQKW3gw-_wgLXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.791 [XNIO-1 task-1] O-H7wlfvQKW3gw-_wgLXyA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.791 [XNIO-1 task-1] O-H7wlfvQKW3gw-_wgLXyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:20.796 [XNIO-1 task-1] vlH5rViqSDqNn-h0vNHb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.796 [XNIO-1 task-1] vlH5rViqSDqNn-h0vNHb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.796 [XNIO-1 task-1] vlH5rViqSDqNn-h0vNHb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.796 [XNIO-1 task-1] vlH5rViqSDqNn-h0vNHb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.796 [XNIO-1 task-1] vlH5rViqSDqNn-h0vNHb_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.799 [XNIO-1 task-1] 79wy71fhTHSB8RmhLGIcRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.799 [XNIO-1 task-1] 79wy71fhTHSB8RmhLGIcRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.799 [XNIO-1 task-1] 79wy71fhTHSB8RmhLGIcRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.799 [XNIO-1 task-1] 79wy71fhTHSB8RmhLGIcRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.799 [XNIO-1 task-1] 79wy71fhTHSB8RmhLGIcRg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.805 [XNIO-1 task-1] 7w5_dxk5RE-WH9CRZRT81w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.805 [XNIO-1 task-1] 7w5_dxk5RE-WH9CRZRT81w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.805 [XNIO-1 task-1] 7w5_dxk5RE-WH9CRZRT81w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.805 [XNIO-1 task-1] 7w5_dxk5RE-WH9CRZRT81w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.810 [XNIO-1 task-1] 49cMU9DJTIe0UKDquZYAxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.810 [XNIO-1 task-1] 49cMU9DJTIe0UKDquZYAxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.810 [XNIO-1 task-1] 49cMU9DJTIe0UKDquZYAxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.810 [XNIO-1 task-1] 49cMU9DJTIe0UKDquZYAxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.810 [XNIO-1 task-1] 49cMU9DJTIe0UKDquZYAxw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.810 [XNIO-1 task-1] 49cMU9DJTIe0UKDquZYAxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:20.814 [XNIO-1 task-1] gIT9rlFcR9qSE8MCa4vGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.814 [XNIO-1 task-1] gIT9rlFcR9qSE8MCa4vGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.814 [XNIO-1 task-1] gIT9rlFcR9qSE8MCa4vGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.815 [XNIO-1 task-1] gIT9rlFcR9qSE8MCa4vGpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.822 [XNIO-1 task-1] y5dUEbCSRS2cjfraOVoSUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.822 [XNIO-1 task-1] y5dUEbCSRS2cjfraOVoSUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.822 [XNIO-1 task-1] y5dUEbCSRS2cjfraOVoSUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.822 [XNIO-1 task-1] y5dUEbCSRS2cjfraOVoSUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:20.823 [XNIO-1 task-1] y5dUEbCSRS2cjfraOVoSUg DEBUG com.networknt.schema.TypeValidator debug - validate( "011ecb81-353a-404e-8f0f-fcbef48ccb68", "011ecb81-353a-404e-8f0f-fcbef48ccb68", refreshToken) +23:10:20.823 [XNIO-1 task-1] y5dUEbCSRS2cjfraOVoSUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 011ecb81-353a-404e-8f0f-fcbef48ccb68 is not found.","severity":"ERROR"} +23:10:20.825 [XNIO-1 task-1] 1SZzgbiLS6mpIYdnH0V-kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.825 [XNIO-1 task-1] 1SZzgbiLS6mpIYdnH0V-kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.825 [XNIO-1 task-1] 1SZzgbiLS6mpIYdnH0V-kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.826 [XNIO-1 task-1] 1SZzgbiLS6mpIYdnH0V-kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.826 [XNIO-1 task-1] 1SZzgbiLS6mpIYdnH0V-kw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.834 [XNIO-1 task-1] ZxliqHo1S-elQFmUd-OeYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.835 [XNIO-1 task-1] ZxliqHo1S-elQFmUd-OeYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.835 [XNIO-1 task-1] ZxliqHo1S-elQFmUd-OeYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.835 [XNIO-1 task-1] ZxliqHo1S-elQFmUd-OeYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:20.835 [XNIO-1 task-1] ZxliqHo1S-elQFmUd-OeYA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:20.835 [XNIO-1 task-1] ZxliqHo1S-elQFmUd-OeYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:20.861 [XNIO-1 task-1] SCIEjq0GRZ6fUP70Vfs7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/827c256b-a287-4590-9892-d539062e5d0a +23:10:20.861 [XNIO-1 task-1] SCIEjq0GRZ6fUP70Vfs7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.861 [XNIO-1 task-1] SCIEjq0GRZ6fUP70Vfs7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.862 [XNIO-1 task-1] SCIEjq0GRZ6fUP70Vfs7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/827c256b-a287-4590-9892-d539062e5d0a +23:10:20.862 [XNIO-1 task-1] SCIEjq0GRZ6fUP70Vfs7Og DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 827c256b-a287-4590-9892-d539062e5d0a +23:10:20.881 [XNIO-1 task-1] y_rAQQJhR7WiIEz_9Mghew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.882 [XNIO-1 task-1] y_rAQQJhR7WiIEz_9Mghew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.882 [XNIO-1 task-1] y_rAQQJhR7WiIEz_9Mghew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.882 [XNIO-1 task-1] y_rAQQJhR7WiIEz_9Mghew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.882 [XNIO-1 task-1] y_rAQQJhR7WiIEz_9Mghew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.890 [XNIO-1 task-1] Aa-ATD4xRnC10g57bz48Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.891 [XNIO-1 task-1] Aa-ATD4xRnC10g57bz48Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.891 [XNIO-1 task-1] Aa-ATD4xRnC10g57bz48Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.891 [XNIO-1 task-1] Aa-ATD4xRnC10g57bz48Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.891 [XNIO-1 task-1] Aa-ATD4xRnC10g57bz48Ng DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.896 [XNIO-1 task-1] mzBtQ-nvRFCwNtWSDLUkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.896 [XNIO-1 task-1] mzBtQ-nvRFCwNtWSDLUkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.896 [XNIO-1 task-1] mzBtQ-nvRFCwNtWSDLUkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.896 [XNIO-1 task-1] mzBtQ-nvRFCwNtWSDLUkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.896 [XNIO-1 task-1] mzBtQ-nvRFCwNtWSDLUkYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d07c0f18-2d3c-4257-ace5-efaee6bc3255 +23:10:20.899 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d6d1bc0 +23:10:20.900 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d6d1bc0 +23:10:20.902 [XNIO-1 task-1] TlLOmqgEQteSmqtGxpFsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.903 [XNIO-1 task-1] TlLOmqgEQteSmqtGxpFsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.903 [XNIO-1 task-1] TlLOmqgEQteSmqtGxpFsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.903 [XNIO-1 task-1] TlLOmqgEQteSmqtGxpFsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.903 [XNIO-1 task-1] TlLOmqgEQteSmqtGxpFsjw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:20.905 [XNIO-1 task-1] YwbpdJMwRfqM-jy3CnK8pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.905 [XNIO-1 task-1] YwbpdJMwRfqM-jy3CnK8pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.905 [XNIO-1 task-1] YwbpdJMwRfqM-jy3CnK8pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.905 [XNIO-1 task-1] YwbpdJMwRfqM-jy3CnK8pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:20.905 [XNIO-1 task-1] YwbpdJMwRfqM-jy3CnK8pg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:20.906 [XNIO-1 task-1] YwbpdJMwRfqM-jy3CnK8pg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:20.907 [XNIO-1 task-1] HrYLcVeqSBGNZPE-dIPxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.908 [XNIO-1 task-1] HrYLcVeqSBGNZPE-dIPxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.908 [XNIO-1 task-1] HrYLcVeqSBGNZPE-dIPxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.908 [XNIO-1 task-1] HrYLcVeqSBGNZPE-dIPxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.908 [XNIO-1 task-1] HrYLcVeqSBGNZPE-dIPxtg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.910 [XNIO-1 task-1] cQGRICifSX-Gs677NLQykg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.910 [XNIO-1 task-1] cQGRICifSX-Gs677NLQykg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.910 [XNIO-1 task-1] cQGRICifSX-Gs677NLQykg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.910 [XNIO-1 task-1] cQGRICifSX-Gs677NLQykg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.910 [XNIO-1 task-1] cQGRICifSX-Gs677NLQykg DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.910 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.917 [XNIO-1 task-1] XZ17njUQTOWucYgSfEzJrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.918 [XNIO-1 task-1] XZ17njUQTOWucYgSfEzJrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.918 [XNIO-1 task-1] XZ17njUQTOWucYgSfEzJrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.918 [XNIO-1 task-1] XZ17njUQTOWucYgSfEzJrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.918 [XNIO-1 task-1] XZ17njUQTOWucYgSfEzJrA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:20.924 [XNIO-1 task-1] WUe84o8JQCWZWKlW5ppbaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.925 [XNIO-1 task-1] WUe84o8JQCWZWKlW5ppbaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.925 [XNIO-1 task-1] WUe84o8JQCWZWKlW5ppbaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.925 [XNIO-1 task-1] WUe84o8JQCWZWKlW5ppbaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.926 [XNIO-1 task-1] WUe84o8JQCWZWKlW5ppbaA DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.927 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a3d996c0-0612-4ea1-92ac-1f139b00ab06 +23:10:20.931 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.933 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:47c4f13a-84e3-4181-9628-b9ae21a5dba5 +23:10:20.937 [XNIO-1 task-1] Xnf9W0rkRNif8Mn8O1Mv6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.938 [XNIO-1 task-1] Xnf9W0rkRNif8Mn8O1Mv6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.938 [XNIO-1 task-1] Xnf9W0rkRNif8Mn8O1Mv6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.938 [XNIO-1 task-1] Xnf9W0rkRNif8Mn8O1Mv6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.938 [XNIO-1 task-1] Xnf9W0rkRNif8Mn8O1Mv6w DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.941 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.948 [XNIO-1 task-1] TDPPJvuCSwGBFVWQ0k1dBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.948 [XNIO-1 task-1] TDPPJvuCSwGBFVWQ0k1dBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.948 [XNIO-1 task-1] TDPPJvuCSwGBFVWQ0k1dBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.948 [XNIO-1 task-1] TDPPJvuCSwGBFVWQ0k1dBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.948 [XNIO-1 task-1] TDPPJvuCSwGBFVWQ0k1dBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.948 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.954 [XNIO-1 task-1] ezk4aUdiQPCYtuU3rQYaqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.956 [XNIO-1 task-1] ezk4aUdiQPCYtuU3rQYaqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.956 [XNIO-1 task-1] ezk4aUdiQPCYtuU3rQYaqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.957 [XNIO-1 task-1] ezk4aUdiQPCYtuU3rQYaqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.957 [XNIO-1 task-1] ezk4aUdiQPCYtuU3rQYaqA DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.957 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.958 [XNIO-1 task-1] ezk4aUdiQPCYtuU3rQYaqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb is not found.","severity":"ERROR"} +23:10:20.961 [XNIO-1 task-1] vo7p_MsjTXOm5j7GvlQH7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.961 [XNIO-1 task-1] vo7p_MsjTXOm5j7GvlQH7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.961 [XNIO-1 task-1] vo7p_MsjTXOm5j7GvlQH7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.961 [XNIO-1 task-1] vo7p_MsjTXOm5j7GvlQH7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.962 [XNIO-1 task-1] vo7p_MsjTXOm5j7GvlQH7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.969 [XNIO-1 task-1] vo7p_MsjTXOm5j7GvlQH7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb is not found.","severity":"ERROR"} +23:10:20.971 [XNIO-1 task-1] YaVjijGjR1Cmuf-JMvouqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d996c0-0612-4ea1-92ac-1f139b00ab06 +23:10:20.971 [XNIO-1 task-1] YaVjijGjR1Cmuf-JMvouqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:20.971 [XNIO-1 task-1] YaVjijGjR1Cmuf-JMvouqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:20.972 [XNIO-1 task-1] YaVjijGjR1Cmuf-JMvouqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d996c0-0612-4ea1-92ac-1f139b00ab06 +23:10:20.972 [XNIO-1 task-1] YaVjijGjR1Cmuf-JMvouqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d996c0-0612-4ea1-92ac-1f139b00ab06 +23:10:20.988 [XNIO-1 task-1] CW0FchCEQEGrD9LWDEv7Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.988 [XNIO-1 task-1] CW0FchCEQEGrD9LWDEv7Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.988 [XNIO-1 task-1] CW0FchCEQEGrD9LWDEv7Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.989 [XNIO-1 task-1] CW0FchCEQEGrD9LWDEv7Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.989 [XNIO-1 task-1] CW0FchCEQEGrD9LWDEv7Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.989 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.993 [XNIO-1 task-1] xjgWuYp2R66Q4XVpV9CK6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.994 [XNIO-1 task-1] xjgWuYp2R66Q4XVpV9CK6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.994 [XNIO-1 task-1] xjgWuYp2R66Q4XVpV9CK6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:20.994 [XNIO-1 task-1] xjgWuYp2R66Q4XVpV9CK6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb, base path is set to: null +23:10:20.994 [XNIO-1 task-1] xjgWuYp2R66Q4XVpV9CK6g DEBUG com.networknt.schema.TypeValidator debug - validate( "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", "92169f7c-ebc1-4f5b-8b76-a4a99882fdfb", refreshToken) +23:10:20.994 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:20.997 [XNIO-1 task-1] pOt-o07tTd2vWXwTS-K09Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.998 [XNIO-1 task-1] pOt-o07tTd2vWXwTS-K09Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:20.998 [XNIO-1 task-1] pOt-o07tTd2vWXwTS-K09Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:20.998 [XNIO-1 task-1] pOt-o07tTd2vWXwTS-K09Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.998 [XNIO-1 task-1] pOt-o07tTd2vWXwTS-K09Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.007 [XNIO-1 task-1] ocfO2GcFT3ufyxf2hevf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:21.007 [XNIO-1 task-1] ocfO2GcFT3ufyxf2hevf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.007 [XNIO-1 task-1] ocfO2GcFT3ufyxf2hevf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.007 [XNIO-1 task-1] ocfO2GcFT3ufyxf2hevf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:21.008 [XNIO-1 task-1] ocfO2GcFT3ufyxf2hevf5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb +23:10:21.009 [XNIO-1 task-1] ocfO2GcFT3ufyxf2hevf5g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 92169f7c-ebc1-4f5b-8b76-a4a99882fdfb is not found.","severity":"ERROR"} +23:10:21.013 [XNIO-1 task-1] a7riXilKQ3iLdZdwtNc3CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.013 [XNIO-1 task-1] a7riXilKQ3iLdZdwtNc3CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.013 [XNIO-1 task-1] a7riXilKQ3iLdZdwtNc3CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.013 [XNIO-1 task-1] a7riXilKQ3iLdZdwtNc3CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.013 [XNIO-1 task-1] a7riXilKQ3iLdZdwtNc3CA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.019 [XNIO-1 task-1] c6eNt1emTNW4yb6yY99tkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:21.019 [XNIO-1 task-1] c6eNt1emTNW4yb6yY99tkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.019 [XNIO-1 task-1] c6eNt1emTNW4yb6yY99tkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.019 [XNIO-1 task-1] c6eNt1emTNW4yb6yY99tkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:21.019 [XNIO-1 task-1] c6eNt1emTNW4yb6yY99tkw DEBUG com.networknt.schema.TypeValidator debug - validate( "011ecb81-353a-404e-8f0f-fcbef48ccb68", "011ecb81-353a-404e-8f0f-fcbef48ccb68", refreshToken) +23:10:21.019 [XNIO-1 task-1] c6eNt1emTNW4yb6yY99tkw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 011ecb81-353a-404e-8f0f-fcbef48ccb68 is not found.","severity":"ERROR"} +23:10:21.023 [XNIO-1 task-1] bI1TY3j2RTKJLj7UCCOsng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.023 [XNIO-1 task-1] bI1TY3j2RTKJLj7UCCOsng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.023 [XNIO-1 task-1] bI1TY3j2RTKJLj7UCCOsng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.024 [XNIO-1 task-1] bI1TY3j2RTKJLj7UCCOsng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.024 [XNIO-1 task-1] bI1TY3j2RTKJLj7UCCOsng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.027 [XNIO-1 task-1] WBVqJYonRJKSWc6Y6rEIkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.027 [XNIO-1 task-1] WBVqJYonRJKSWc6Y6rEIkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.027 [XNIO-1 task-1] WBVqJYonRJKSWc6Y6rEIkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.027 [XNIO-1 task-1] WBVqJYonRJKSWc6Y6rEIkg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.027 [XNIO-1 task-1] WBVqJYonRJKSWc6Y6rEIkg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.034 [XNIO-1 task-1] Pxdg_Q2NT4q8C_l8AdyGhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:21.034 [XNIO-1 task-1] Pxdg_Q2NT4q8C_l8AdyGhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.034 [XNIO-1 task-1] Pxdg_Q2NT4q8C_l8AdyGhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.034 [XNIO-1 task-1] Pxdg_Q2NT4q8C_l8AdyGhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:21.034 [XNIO-1 task-1] Pxdg_Q2NT4q8C_l8AdyGhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:21.037 [XNIO-1 task-1] fwNVrFG1T7qrmngYejNd1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.037 [XNIO-1 task-1] fwNVrFG1T7qrmngYejNd1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.037 [XNIO-1 task-1] fwNVrFG1T7qrmngYejNd1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.037 [XNIO-1 task-1] fwNVrFG1T7qrmngYejNd1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.037 [XNIO-1 task-1] fwNVrFG1T7qrmngYejNd1w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.044 [XNIO-1 task-1] 17fMpTNtSm-DTRplEbEVdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.044 [XNIO-1 task-1] 17fMpTNtSm-DTRplEbEVdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.044 [XNIO-1 task-1] 17fMpTNtSm-DTRplEbEVdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.044 [XNIO-1 task-1] 17fMpTNtSm-DTRplEbEVdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.045 [XNIO-1 task-1] 17fMpTNtSm-DTRplEbEVdQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.048 [XNIO-1 task-1] EUnGt8sSTc61Ks1F2Yzo2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:21.048 [XNIO-1 task-1] EUnGt8sSTc61Ks1F2Yzo2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.048 [XNIO-1 task-1] EUnGt8sSTc61Ks1F2Yzo2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.048 [XNIO-1 task-1] EUnGt8sSTc61Ks1F2Yzo2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:21.048 [XNIO-1 task-1] EUnGt8sSTc61Ks1F2Yzo2g DEBUG com.networknt.schema.TypeValidator debug - validate( "011ecb81-353a-404e-8f0f-fcbef48ccb68", "011ecb81-353a-404e-8f0f-fcbef48ccb68", refreshToken) +23:10:21.049 [XNIO-1 task-1] EUnGt8sSTc61Ks1F2Yzo2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 011ecb81-353a-404e-8f0f-fcbef48ccb68 is not found.","severity":"ERROR"} +23:10:21.053 [XNIO-1 task-1] Iz-ok4tuRSS0Nrw66WMHpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.053 [XNIO-1 task-1] Iz-ok4tuRSS0Nrw66WMHpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.053 [XNIO-1 task-1] Iz-ok4tuRSS0Nrw66WMHpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.053 [XNIO-1 task-1] Iz-ok4tuRSS0Nrw66WMHpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.053 [XNIO-1 task-1] Iz-ok4tuRSS0Nrw66WMHpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.055 [XNIO-1 task-1] pRw-OlkYQR23dW6TcUx8sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.056 [XNIO-1 task-1] pRw-OlkYQR23dW6TcUx8sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.056 [XNIO-1 task-1] pRw-OlkYQR23dW6TcUx8sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.056 [XNIO-1 task-1] pRw-OlkYQR23dW6TcUx8sA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.056 [XNIO-1 task-1] pRw-OlkYQR23dW6TcUx8sA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.063 [XNIO-1 task-1] Rjzr-U43R1WXWnsaQ08HzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.063 [XNIO-1 task-1] Rjzr-U43R1WXWnsaQ08HzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.063 [XNIO-1 task-1] Rjzr-U43R1WXWnsaQ08HzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.063 [XNIO-1 task-1] Rjzr-U43R1WXWnsaQ08HzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.071 [XNIO-1 task-1] aoDYE-t3SjWpIVcG729ZRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:21.071 [XNIO-1 task-1] aoDYE-t3SjWpIVcG729ZRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.071 [XNIO-1 task-1] aoDYE-t3SjWpIVcG729ZRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.071 [XNIO-1 task-1] aoDYE-t3SjWpIVcG729ZRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68, base path is set to: null +23:10:21.071 [XNIO-1 task-1] aoDYE-t3SjWpIVcG729ZRw DEBUG com.networknt.schema.TypeValidator debug - validate( "011ecb81-353a-404e-8f0f-fcbef48ccb68", "011ecb81-353a-404e-8f0f-fcbef48ccb68", refreshToken) +23:10:21.071 [XNIO-1 task-1] aoDYE-t3SjWpIVcG729ZRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 011ecb81-353a-404e-8f0f-fcbef48ccb68 is not found.","severity":"ERROR"} +23:10:21.077 [XNIO-1 task-1] P6glwNSAQIizPPzuAMcvhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.077 [XNIO-1 task-1] P6glwNSAQIizPPzuAMcvhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.077 [XNIO-1 task-1] P6glwNSAQIizPPzuAMcvhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.078 [XNIO-1 task-1] P6glwNSAQIizPPzuAMcvhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.082 [XNIO-1 task-1] nkQCmzUzSD6oT6mOsjTCIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.082 [XNIO-1 task-1] nkQCmzUzSD6oT6mOsjTCIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.082 [XNIO-1 task-1] nkQCmzUzSD6oT6mOsjTCIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.082 [XNIO-1 task-1] nkQCmzUzSD6oT6mOsjTCIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.082 [XNIO-1 task-1] nkQCmzUzSD6oT6mOsjTCIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.089 [XNIO-1 task-1] Fa94bWTwRfGF6TfLK3ffPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.089 [XNIO-1 task-1] Fa94bWTwRfGF6TfLK3ffPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.089 [XNIO-1 task-1] Fa94bWTwRfGF6TfLK3ffPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.089 [XNIO-1 task-1] Fa94bWTwRfGF6TfLK3ffPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.089 [XNIO-1 task-1] Fa94bWTwRfGF6TfLK3ffPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.091 [XNIO-1 task-1] tVuIs4RFQleiVIFxYFvclA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.091 [XNIO-1 task-1] tVuIs4RFQleiVIFxYFvclA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.092 [XNIO-1 task-1] tVuIs4RFQleiVIFxYFvclA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.092 [XNIO-1 task-1] tVuIs4RFQleiVIFxYFvclA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.092 [XNIO-1 task-1] tVuIs4RFQleiVIFxYFvclA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.103 [XNIO-1 task-1] mDJ_7SwSRueBFnPSGXdvDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.103 [XNIO-1 task-1] mDJ_7SwSRueBFnPSGXdvDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.103 [XNIO-1 task-1] mDJ_7SwSRueBFnPSGXdvDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.103 [XNIO-1 task-1] mDJ_7SwSRueBFnPSGXdvDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.103 [XNIO-1 task-1] mDJ_7SwSRueBFnPSGXdvDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.108 [XNIO-1 task-1] O3UFidVrTxiTNtkqlK0bFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:21.108 [XNIO-1 task-1] O3UFidVrTxiTNtkqlK0bFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.108 [XNIO-1 task-1] O3UFidVrTxiTNtkqlK0bFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.108 [XNIO-1 task-1] O3UFidVrTxiTNtkqlK0bFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:21.108 [XNIO-1 task-1] O3UFidVrTxiTNtkqlK0bFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:21.117 [XNIO-1 task-1] RBL7r3j8TPmRDlC5glljaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:21.117 [XNIO-1 task-1] RBL7r3j8TPmRDlC5glljaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.117 [XNIO-1 task-1] RBL7r3j8TPmRDlC5glljaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.117 [XNIO-1 task-1] RBL7r3j8TPmRDlC5glljaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:21.117 [XNIO-1 task-1] RBL7r3j8TPmRDlC5glljaA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:21.117 [XNIO-1 task-1] RBL7r3j8TPmRDlC5glljaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:21.123 [XNIO-1 task-1] j7vA2ri1S4SSETl4J_Aaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.124 [XNIO-1 task-1] j7vA2ri1S4SSETl4J_Aaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.124 [XNIO-1 task-1] j7vA2ri1S4SSETl4J_Aaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.124 [XNIO-1 task-1] j7vA2ri1S4SSETl4J_Aaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.124 [XNIO-1 task-1] j7vA2ri1S4SSETl4J_Aaew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.126 [XNIO-1 task-1] 2N5C-2j-SV-f5zgUzfJohw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:21.127 [XNIO-1 task-1] 2N5C-2j-SV-f5zgUzfJohw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.127 [XNIO-1 task-1] 2N5C-2j-SV-f5zgUzfJohw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.127 [XNIO-1 task-1] 2N5C-2j-SV-f5zgUzfJohw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:21.127 [XNIO-1 task-1] 2N5C-2j-SV-f5zgUzfJohw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:21.128 [XNIO-1 task-1] 2N5C-2j-SV-f5zgUzfJohw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:21.130 [XNIO-1 task-1] VClebU9ARRKgIHEHWu69ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.131 [XNIO-1 task-1] VClebU9ARRKgIHEHWu69ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.131 [XNIO-1 task-1] VClebU9ARRKgIHEHWu69ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.131 [XNIO-1 task-1] VClebU9ARRKgIHEHWu69ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.131 [XNIO-1 task-1] VClebU9ARRKgIHEHWu69ug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.133 [XNIO-1 task-1] wHXVvoFqR_G7T1SG8TjWqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:21.133 [XNIO-1 task-1] wHXVvoFqR_G7T1SG8TjWqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.133 [XNIO-1 task-1] wHXVvoFqR_G7T1SG8TjWqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.133 [XNIO-1 task-1] wHXVvoFqR_G7T1SG8TjWqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3, base path is set to: null +23:10:21.134 [XNIO-1 task-1] wHXVvoFqR_G7T1SG8TjWqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", "6b5edfa8-b568-4db3-9f4c-a482f8148ca3", refreshToken) +23:10:21.134 [XNIO-1 task-1] wHXVvoFqR_G7T1SG8TjWqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 is not found.","severity":"ERROR"} +23:10:21.141 [XNIO-1 task-1] -J2DsHMcQhSDI4nvwN3jYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.142 [XNIO-1 task-1] -J2DsHMcQhSDI4nvwN3jYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.142 [XNIO-1 task-1] -J2DsHMcQhSDI4nvwN3jYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.142 [XNIO-1 task-1] -J2DsHMcQhSDI4nvwN3jYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.142 [XNIO-1 task-1] -J2DsHMcQhSDI4nvwN3jYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:21.146 [XNIO-1 task-1] LqV_Fcs4TjK-1GyRX0IXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6, base path is set to: null +23:10:21.146 [XNIO-1 task-1] LqV_Fcs4TjK-1GyRX0IXyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.146 [XNIO-1 task-1] LqV_Fcs4TjK-1GyRX0IXyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.146 [XNIO-1 task-1] LqV_Fcs4TjK-1GyRX0IXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6, base path is set to: null +23:10:21.146 [XNIO-1 task-1] LqV_Fcs4TjK-1GyRX0IXyA DEBUG com.networknt.schema.TypeValidator debug - validate( "47fef6f8-88bf-4e55-b29b-4b6034e088f6", "47fef6f8-88bf-4e55-b29b-4b6034e088f6", refreshToken) +23:10:21.152 [XNIO-1 task-1] LqV_Fcs4TjK-1GyRX0IXyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 47fef6f8-88bf-4e55-b29b-4b6034e088f6 is not found.","severity":"ERROR"} +23:10:21.158 [XNIO-1 task-1] AJSeC7Q2Q5OoLa-EI1puqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.159 [XNIO-1 task-1] AJSeC7Q2Q5OoLa-EI1puqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.159 [XNIO-1 task-1] AJSeC7Q2Q5OoLa-EI1puqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.159 [XNIO-1 task-1] AJSeC7Q2Q5OoLa-EI1puqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.165 [XNIO-1 task-1] gUWq9kHmRMK0tDi3X-zj7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6, base path is set to: null +23:10:21.166 [XNIO-1 task-1] gUWq9kHmRMK0tDi3X-zj7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.166 [XNIO-1 task-1] gUWq9kHmRMK0tDi3X-zj7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.167 [XNIO-1 task-1] gUWq9kHmRMK0tDi3X-zj7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6, base path is set to: null +23:10:21.167 [XNIO-1 task-1] gUWq9kHmRMK0tDi3X-zj7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "47fef6f8-88bf-4e55-b29b-4b6034e088f6", "47fef6f8-88bf-4e55-b29b-4b6034e088f6", refreshToken) +23:10:21.167 [XNIO-1 task-1] gUWq9kHmRMK0tDi3X-zj7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 47fef6f8-88bf-4e55-b29b-4b6034e088f6 is not found.","severity":"ERROR"} +23:10:21.169 [XNIO-1 task-1] njKUWh0YQzeQJb3pbuWnXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6 +23:10:21.169 [XNIO-1 task-1] njKUWh0YQzeQJb3pbuWnXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.169 [XNIO-1 task-1] njKUWh0YQzeQJb3pbuWnXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.169 [XNIO-1 task-1] njKUWh0YQzeQJb3pbuWnXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6 +23:10:21.169 [XNIO-1 task-1] njKUWh0YQzeQJb3pbuWnXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 47fef6f8-88bf-4e55-b29b-4b6034e088f6 +23:10:21.178 [XNIO-1 task-1] yp75tZc7TVmbMwKDTMeQfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.179 [XNIO-1 task-1] yp75tZc7TVmbMwKDTMeQfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.179 [XNIO-1 task-1] yp75tZc7TVmbMwKDTMeQfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.179 [XNIO-1 task-1] yp75tZc7TVmbMwKDTMeQfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.179 [XNIO-1 task-1] yp75tZc7TVmbMwKDTMeQfw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.188 [XNIO-1 task-1] bV4EWHUKSjWesrrF0n94VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6 +23:10:21.188 [XNIO-1 task-1] bV4EWHUKSjWesrrF0n94VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.188 [XNIO-1 task-1] bV4EWHUKSjWesrrF0n94VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.188 [XNIO-1 task-1] bV4EWHUKSjWesrrF0n94VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47fef6f8-88bf-4e55-b29b-4b6034e088f6 +23:10:21.188 [XNIO-1 task-1] bV4EWHUKSjWesrrF0n94VA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 47fef6f8-88bf-4e55-b29b-4b6034e088f6 +23:10:21.196 [XNIO-1 task-1] BK6IWxAnTxW-0sIkFNhHgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.196 [XNIO-1 task-1] BK6IWxAnTxW-0sIkFNhHgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.197 [XNIO-1 task-1] BK6IWxAnTxW-0sIkFNhHgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.197 [XNIO-1 task-1] BK6IWxAnTxW-0sIkFNhHgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.197 [XNIO-1 task-1] BK6IWxAnTxW-0sIkFNhHgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.206 [XNIO-1 task-1] oEdQEMZAQGu2Blx-9iln8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.206 [XNIO-1 task-1] oEdQEMZAQGu2Blx-9iln8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.206 [XNIO-1 task-1] oEdQEMZAQGu2Blx-9iln8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.206 [XNIO-1 task-1] oEdQEMZAQGu2Blx-9iln8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.206 [XNIO-1 task-1] oEdQEMZAQGu2Blx-9iln8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.212 [XNIO-1 task-1] xmsb_bCqRse_lKh26oAyZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.212 [XNIO-1 task-1] xmsb_bCqRse_lKh26oAyZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.212 [XNIO-1 task-1] xmsb_bCqRse_lKh26oAyZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.212 [XNIO-1 task-1] xmsb_bCqRse_lKh26oAyZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.212 [XNIO-1 task-1] xmsb_bCqRse_lKh26oAyZA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.220 [XNIO-1 task-1] qnELtkiBTqe1ijbAj2WduQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.220 [XNIO-1 task-1] qnELtkiBTqe1ijbAj2WduQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.220 [XNIO-1 task-1] qnELtkiBTqe1ijbAj2WduQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.220 [XNIO-1 task-1] qnELtkiBTqe1ijbAj2WduQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.221 [XNIO-1 task-1] qnELtkiBTqe1ijbAj2WduQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.225 [XNIO-1 task-1] GuPt72LHS1qBqPpmLMWr5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.226 [XNIO-1 task-1] GuPt72LHS1qBqPpmLMWr5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.226 [XNIO-1 task-1] GuPt72LHS1qBqPpmLMWr5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.226 [XNIO-1 task-1] GuPt72LHS1qBqPpmLMWr5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.226 [XNIO-1 task-1] GuPt72LHS1qBqPpmLMWr5w DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.238 [XNIO-1 task-1] LC-A7xYoQ5muKU0vSuxbgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.239 [XNIO-1 task-1] LC-A7xYoQ5muKU0vSuxbgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.239 [XNIO-1 task-1] LC-A7xYoQ5muKU0vSuxbgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.239 [XNIO-1 task-1] LC-A7xYoQ5muKU0vSuxbgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.239 [XNIO-1 task-1] LC-A7xYoQ5muKU0vSuxbgg DEBUG com.networknt.schema.TypeValidator debug - validate( "d7d03344-baee-43b9-8f91-35fdf22cf4d1", "d7d03344-baee-43b9-8f91-35fdf22cf4d1", refreshToken) +23:10:21.251 [XNIO-1 task-1] xEYTumz4SAK0z1DuIgFr5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.251 [XNIO-1 task-1] xEYTumz4SAK0z1DuIgFr5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.251 [XNIO-1 task-1] xEYTumz4SAK0z1DuIgFr5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.251 [XNIO-1 task-1] xEYTumz4SAK0z1DuIgFr5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.252 [XNIO-1 task-1] xEYTumz4SAK0z1DuIgFr5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d7d03344-baee-43b9-8f91-35fdf22cf4d1", "d7d03344-baee-43b9-8f91-35fdf22cf4d1", refreshToken) +23:10:21.256 [XNIO-1 task-1] xEYTumz4SAK0z1DuIgFr5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d7d03344-baee-43b9-8f91-35fdf22cf4d1 is not found.","severity":"ERROR"} +23:10:21.265 [XNIO-1 task-1] PcYWG2w8ScqLx54wInNskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.265 [XNIO-1 task-1] PcYWG2w8ScqLx54wInNskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.265 [XNIO-1 task-1] PcYWG2w8ScqLx54wInNskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.265 [XNIO-1 task-1] PcYWG2w8ScqLx54wInNskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.266 [XNIO-1 task-1] PcYWG2w8ScqLx54wInNskw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.274 [XNIO-1 task-1] Na12eZf6T-6ZNVUh7VP7OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.278 [XNIO-1 task-1] Na12eZf6T-6ZNVUh7VP7OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.278 [XNIO-1 task-1] Na12eZf6T-6ZNVUh7VP7OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.278 [XNIO-1 task-1] Na12eZf6T-6ZNVUh7VP7OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.278 [XNIO-1 task-1] Na12eZf6T-6ZNVUh7VP7OA DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.279 [XNIO-1 task-1] Na12eZf6T-6ZNVUh7VP7OA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.291 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1469198f-2db2-4462-9e1f-3068bbd6e329 +23:10:21.293 [XNIO-1 task-1] EV7x3atmR0mtYATfTcGatg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1 +23:10:21.294 [XNIO-1 task-1] EV7x3atmR0mtYATfTcGatg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.294 [XNIO-1 task-1] EV7x3atmR0mtYATfTcGatg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.294 [XNIO-1 task-1] EV7x3atmR0mtYATfTcGatg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1 +23:10:21.294 [XNIO-1 task-1] EV7x3atmR0mtYATfTcGatg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d7d03344-baee-43b9-8f91-35fdf22cf4d1 +23:10:21.297 [XNIO-1 task-1] 0sk0JDfSRbeIe_UOzL11Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.298 [XNIO-1 task-1] 0sk0JDfSRbeIe_UOzL11Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.298 [XNIO-1 task-1] 0sk0JDfSRbeIe_UOzL11Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.298 [XNIO-1 task-1] 0sk0JDfSRbeIe_UOzL11Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.298 [XNIO-1 task-1] 0sk0JDfSRbeIe_UOzL11Lg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.306 [XNIO-1 task-1] 27r03v0pSp-Cf94kbGCeuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.306 [XNIO-1 task-1] 27r03v0pSp-Cf94kbGCeuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.306 [XNIO-1 task-1] 27r03v0pSp-Cf94kbGCeuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.306 [XNIO-1 task-1] 27r03v0pSp-Cf94kbGCeuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.306 [XNIO-1 task-1] 27r03v0pSp-Cf94kbGCeuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.309 [XNIO-1 task-1] Mtyv9eh6QDaDSrI2c9H_1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.310 [XNIO-1 task-1] Mtyv9eh6QDaDSrI2c9H_1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.310 [XNIO-1 task-1] Mtyv9eh6QDaDSrI2c9H_1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.310 [XNIO-1 task-1] Mtyv9eh6QDaDSrI2c9H_1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.310 [XNIO-1 task-1] Mtyv9eh6QDaDSrI2c9H_1w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.312 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8d6d1bc0 +23:10:21.316 [XNIO-1 task-1] VrWdz51HRPSXxEPlLZDuXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.316 [XNIO-1 task-1] VrWdz51HRPSXxEPlLZDuXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.316 [XNIO-1 task-1] VrWdz51HRPSXxEPlLZDuXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.316 [XNIO-1 task-1] VrWdz51HRPSXxEPlLZDuXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.316 [XNIO-1 task-1] VrWdz51HRPSXxEPlLZDuXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7d03344-baee-43b9-8f91-35fdf22cf4d1", "d7d03344-baee-43b9-8f91-35fdf22cf4d1", refreshToken) +23:10:21.316 [XNIO-1 task-1] VrWdz51HRPSXxEPlLZDuXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d7d03344-baee-43b9-8f91-35fdf22cf4d1 is not found.","severity":"ERROR"} +23:10:21.319 [XNIO-1 task-1] gtvZf38ZTaW2f6f9A3BJmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.320 [XNIO-1 task-1] gtvZf38ZTaW2f6f9A3BJmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.320 [XNIO-1 task-1] gtvZf38ZTaW2f6f9A3BJmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.320 [XNIO-1 task-1] gtvZf38ZTaW2f6f9A3BJmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.320 [XNIO-1 task-1] gtvZf38ZTaW2f6f9A3BJmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.324 [XNIO-1 task-1] WaiyonwATTeBInauSgg3eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.324 [XNIO-1 task-1] WaiyonwATTeBInauSgg3eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.324 [XNIO-1 task-1] WaiyonwATTeBInauSgg3eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.324 [XNIO-1 task-1] WaiyonwATTeBInauSgg3eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.324 [XNIO-1 task-1] WaiyonwATTeBInauSgg3eg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.330 [XNIO-1 task-1] 3M6jtT29RvWZZHuQnqj4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.330 [XNIO-1 task-1] 3M6jtT29RvWZZHuQnqj4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.330 [XNIO-1 task-1] 3M6jtT29RvWZZHuQnqj4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.331 [XNIO-1 task-1] 3M6jtT29RvWZZHuQnqj4PQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.334 [XNIO-1 task-1] ZBYpJj-YQ56mYzDzuAvJqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.336 [XNIO-1 task-1] ZBYpJj-YQ56mYzDzuAvJqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.336 [XNIO-1 task-1] ZBYpJj-YQ56mYzDzuAvJqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.337 [XNIO-1 task-1] ZBYpJj-YQ56mYzDzuAvJqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.337 [XNIO-1 task-1] ZBYpJj-YQ56mYzDzuAvJqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7d03344-baee-43b9-8f91-35fdf22cf4d1", "d7d03344-baee-43b9-8f91-35fdf22cf4d1", refreshToken) +23:10:21.337 [XNIO-1 task-1] ZBYpJj-YQ56mYzDzuAvJqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d7d03344-baee-43b9-8f91-35fdf22cf4d1 is not found.","severity":"ERROR"} +23:10:21.339 [XNIO-1 task-1] DfXYvI0qT-2QobZk0dKIuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.339 [XNIO-1 task-1] DfXYvI0qT-2QobZk0dKIuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.339 [XNIO-1 task-1] DfXYvI0qT-2QobZk0dKIuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.339 [XNIO-1 task-1] DfXYvI0qT-2QobZk0dKIuA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.347 [XNIO-1 task-1] 3QlDIWCYRhu4n3hOOamKFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.347 [XNIO-1 task-1] 3QlDIWCYRhu4n3hOOamKFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.347 [XNIO-1 task-1] 3QlDIWCYRhu4n3hOOamKFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.347 [XNIO-1 task-1] 3QlDIWCYRhu4n3hOOamKFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.347 [XNIO-1 task-1] 3QlDIWCYRhu4n3hOOamKFg DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.348 [XNIO-1 task-1] 3QlDIWCYRhu4n3hOOamKFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.350 [XNIO-1 task-1] BZSOLH4uQleUPzBBSH9M5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.351 [XNIO-1 task-1] BZSOLH4uQleUPzBBSH9M5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.351 [XNIO-1 task-1] BZSOLH4uQleUPzBBSH9M5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.351 [XNIO-1 task-1] BZSOLH4uQleUPzBBSH9M5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.360 [XNIO-1 task-1] _v-G6_MJSHO4ZNALlFJGvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.360 [XNIO-1 task-1] _v-G6_MJSHO4ZNALlFJGvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.360 [XNIO-1 task-1] _v-G6_MJSHO4ZNALlFJGvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.360 [XNIO-1 task-1] _v-G6_MJSHO4ZNALlFJGvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.361 [XNIO-1 task-1] _v-G6_MJSHO4ZNALlFJGvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.371 [XNIO-1 task-1] XS6b7AdLTamWjlFcuaVpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.371 [XNIO-1 task-1] XS6b7AdLTamWjlFcuaVpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.371 [XNIO-1 task-1] XS6b7AdLTamWjlFcuaVpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.371 [XNIO-1 task-1] XS6b7AdLTamWjlFcuaVpyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.376 [XNIO-1 task-1] QhA_GrfjTX-s1gXHM4FxTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.376 [XNIO-1 task-1] QhA_GrfjTX-s1gXHM4FxTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.376 [XNIO-1 task-1] QhA_GrfjTX-s1gXHM4FxTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.376 [XNIO-1 task-1] QhA_GrfjTX-s1gXHM4FxTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7d03344-baee-43b9-8f91-35fdf22cf4d1, base path is set to: null +23:10:21.377 [XNIO-1 task-1] QhA_GrfjTX-s1gXHM4FxTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7d03344-baee-43b9-8f91-35fdf22cf4d1", "d7d03344-baee-43b9-8f91-35fdf22cf4d1", refreshToken) +23:10:21.377 [XNIO-1 task-1] QhA_GrfjTX-s1gXHM4FxTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d7d03344-baee-43b9-8f91-35fdf22cf4d1 is not found.","severity":"ERROR"} +23:10:21.386 [XNIO-1 task-1] t5olYzbWT26D4d_xa84rOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.386 [XNIO-1 task-1] t5olYzbWT26D4d_xa84rOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.386 [XNIO-1 task-1] t5olYzbWT26D4d_xa84rOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.386 [XNIO-1 task-1] t5olYzbWT26D4d_xa84rOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.397 [XNIO-1 task-1] SWBXDmIKRmu-IRcYMVWeGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.398 [XNIO-1 task-1] SWBXDmIKRmu-IRcYMVWeGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.398 [XNIO-1 task-1] SWBXDmIKRmu-IRcYMVWeGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.398 [XNIO-1 task-1] SWBXDmIKRmu-IRcYMVWeGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.398 [XNIO-1 task-1] SWBXDmIKRmu-IRcYMVWeGw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.406 [XNIO-1 task-1] UWcPw3fETdiF6bx65sOYrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.406 [XNIO-1 task-1] UWcPw3fETdiF6bx65sOYrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.406 [XNIO-1 task-1] UWcPw3fETdiF6bx65sOYrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.406 [XNIO-1 task-1] UWcPw3fETdiF6bx65sOYrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.415 [XNIO-1 task-1] f3bMwts8QveNNY-OUaA8Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.415 [XNIO-1 task-1] f3bMwts8QveNNY-OUaA8Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.415 [XNIO-1 task-1] f3bMwts8QveNNY-OUaA8Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.415 [XNIO-1 task-1] f3bMwts8QveNNY-OUaA8Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.415 [XNIO-1 task-1] f3bMwts8QveNNY-OUaA8Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.415 [XNIO-1 task-1] f3bMwts8QveNNY-OUaA8Bw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.424 [XNIO-1 task-1] o26W1LzjQeeLFmkeELjYTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.425 [XNIO-1 task-1] o26W1LzjQeeLFmkeELjYTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.425 [XNIO-1 task-1] o26W1LzjQeeLFmkeELjYTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.425 [XNIO-1 task-1] o26W1LzjQeeLFmkeELjYTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.425 [XNIO-1 task-1] o26W1LzjQeeLFmkeELjYTw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.432 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:760b6ae1-edd7-4abd-a6f5-f34a8c5c7de9 +23:10:21.434 [XNIO-1 task-1] javyA9OsRa2uyVd0O4MHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.434 [XNIO-1 task-1] javyA9OsRa2uyVd0O4MHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.434 [XNIO-1 task-1] javyA9OsRa2uyVd0O4MHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.435 [XNIO-1 task-1] javyA9OsRa2uyVd0O4MHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.435 [XNIO-1 task-1] javyA9OsRa2uyVd0O4MHJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.437 [XNIO-1 task-1] KnGl1RXcSZuVzP_o6rlSaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.437 [XNIO-1 task-1] KnGl1RXcSZuVzP_o6rlSaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.439 [XNIO-1 task-1] KnGl1RXcSZuVzP_o6rlSaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.439 [XNIO-1 task-1] KnGl1RXcSZuVzP_o6rlSaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.439 [XNIO-1 task-1] KnGl1RXcSZuVzP_o6rlSaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.455 [XNIO-1 task-1] IMo9od3nQoimdI9cyw7M0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.455 [XNIO-1 task-1] IMo9od3nQoimdI9cyw7M0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.456 [XNIO-1 task-1] IMo9od3nQoimdI9cyw7M0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.456 [XNIO-1 task-1] IMo9od3nQoimdI9cyw7M0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.462 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:760b6ae1-edd7-4abd-a6f5-f34a8c5c7de9 +23:10:21.470 [XNIO-1 task-1] diOPjpXKTdGdwB4TA7-NQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.470 [XNIO-1 task-1] diOPjpXKTdGdwB4TA7-NQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.470 [XNIO-1 task-1] diOPjpXKTdGdwB4TA7-NQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.470 [XNIO-1 task-1] diOPjpXKTdGdwB4TA7-NQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.470 [XNIO-1 task-1] diOPjpXKTdGdwB4TA7-NQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1fd7108c-29b1-46e1-8973-8a102432e6cc +23:10:21.475 [XNIO-1 task-1] x8R3bijZQ-ioUFS5IMdL2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.476 [XNIO-1 task-1] x8R3bijZQ-ioUFS5IMdL2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.476 [XNIO-1 task-1] x8R3bijZQ-ioUFS5IMdL2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.476 [XNIO-1 task-1] x8R3bijZQ-ioUFS5IMdL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.476 [XNIO-1 task-1] x8R3bijZQ-ioUFS5IMdL2w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.484 [XNIO-1 task-1] 0zGvNv4vQeike5wbUcO8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/760b6ae1-edd7-4abd-a6f5-f34a8c5c7de9 +23:10:21.484 [XNIO-1 task-1] 0zGvNv4vQeike5wbUcO8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.485 [XNIO-1 task-1] 0zGvNv4vQeike5wbUcO8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.485 [XNIO-1 task-1] 0zGvNv4vQeike5wbUcO8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/760b6ae1-edd7-4abd-a6f5-f34a8c5c7de9 +23:10:21.485 [XNIO-1 task-1] 0zGvNv4vQeike5wbUcO8Jw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 760b6ae1-edd7-4abd-a6f5-f34a8c5c7de9 +23:10:21.486 [XNIO-1 task-1] 0zGvNv4vQeike5wbUcO8Jw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 760b6ae1-edd7-4abd-a6f5-f34a8c5c7de9 is not found.","severity":"ERROR"} +23:10:21.489 [XNIO-1 task-1] YiPNQmNmQTSf5KW4aIUrUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.489 [XNIO-1 task-1] YiPNQmNmQTSf5KW4aIUrUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.489 [XNIO-1 task-1] YiPNQmNmQTSf5KW4aIUrUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.489 [XNIO-1 task-1] YiPNQmNmQTSf5KW4aIUrUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.490 [XNIO-1 task-1] YiPNQmNmQTSf5KW4aIUrUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.499 [XNIO-1 task-1] 8mniNwdHS06ahyqlJlRefA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.500 [XNIO-1 task-1] 8mniNwdHS06ahyqlJlRefA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.500 [XNIO-1 task-1] 8mniNwdHS06ahyqlJlRefA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.500 [XNIO-1 task-1] 8mniNwdHS06ahyqlJlRefA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.500 [XNIO-1 task-1] 8mniNwdHS06ahyqlJlRefA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.504 [XNIO-1 task-1] y-ldskDQSH23U6nEOgDHLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.504 [XNIO-1 task-1] y-ldskDQSH23U6nEOgDHLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.505 [XNIO-1 task-1] y-ldskDQSH23U6nEOgDHLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.505 [XNIO-1 task-1] y-ldskDQSH23U6nEOgDHLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.505 [XNIO-1 task-1] y-ldskDQSH23U6nEOgDHLA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.512 [XNIO-1 task-1] AtKOgQUhSi-xRxZnQCVsUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.513 [XNIO-1 task-1] AtKOgQUhSi-xRxZnQCVsUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.513 [XNIO-1 task-1] AtKOgQUhSi-xRxZnQCVsUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.516 [XNIO-1 task-1] AtKOgQUhSi-xRxZnQCVsUA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.525 [XNIO-1 task-1] xdusgUjyQdSg9ugW0viSnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.526 [XNIO-1 task-1] xdusgUjyQdSg9ugW0viSnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.526 [XNIO-1 task-1] xdusgUjyQdSg9ugW0viSnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.526 [XNIO-1 task-1] xdusgUjyQdSg9ugW0viSnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.526 [XNIO-1 task-1] xdusgUjyQdSg9ugW0viSnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "482215e8-a923-4627-81cd-c33e79fe1187", "482215e8-a923-4627-81cd-c33e79fe1187", refreshToken) +23:10:21.526 [XNIO-1 task-1] xdusgUjyQdSg9ugW0viSnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 482215e8-a923-4627-81cd-c33e79fe1187 is not found.","severity":"ERROR"} +23:10:21.528 [XNIO-1 task-1] gG1PQYT2SHyPOGr3jYZUuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.528 [XNIO-1 task-1] gG1PQYT2SHyPOGr3jYZUuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.529 [XNIO-1 task-1] gG1PQYT2SHyPOGr3jYZUuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.529 [XNIO-1 task-1] gG1PQYT2SHyPOGr3jYZUuw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.533 [XNIO-1 task-1] kFFpxHMgQIeSZA5bR6pz-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.533 [XNIO-1 task-1] kFFpxHMgQIeSZA5bR6pz-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.533 [XNIO-1 task-1] kFFpxHMgQIeSZA5bR6pz-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.534 [XNIO-1 task-1] kFFpxHMgQIeSZA5bR6pz-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.534 [XNIO-1 task-1] kFFpxHMgQIeSZA5bR6pz-g DEBUG com.networknt.schema.TypeValidator debug - validate( "482215e8-a923-4627-81cd-c33e79fe1187", "482215e8-a923-4627-81cd-c33e79fe1187", refreshToken) +23:10:21.534 [XNIO-1 task-1] kFFpxHMgQIeSZA5bR6pz-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 482215e8-a923-4627-81cd-c33e79fe1187 is not found.","severity":"ERROR"} +23:10:21.538 [XNIO-1 task-1] 232TMsNlQWq3YFO1EnBMYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.538 [XNIO-1 task-1] 232TMsNlQWq3YFO1EnBMYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.538 [XNIO-1 task-1] 232TMsNlQWq3YFO1EnBMYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.538 [XNIO-1 task-1] 232TMsNlQWq3YFO1EnBMYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.538 [XNIO-1 task-1] 232TMsNlQWq3YFO1EnBMYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.541 [XNIO-1 task-1] oq1SbLpXTC-LYri7rSwg7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.542 [XNIO-1 task-1] oq1SbLpXTC-LYri7rSwg7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.542 [XNIO-1 task-1] oq1SbLpXTC-LYri7rSwg7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.542 [XNIO-1 task-1] oq1SbLpXTC-LYri7rSwg7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.542 [XNIO-1 task-1] oq1SbLpXTC-LYri7rSwg7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "482215e8-a923-4627-81cd-c33e79fe1187", "482215e8-a923-4627-81cd-c33e79fe1187", refreshToken) +23:10:21.542 [XNIO-1 task-1] oq1SbLpXTC-LYri7rSwg7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 482215e8-a923-4627-81cd-c33e79fe1187 is not found.","severity":"ERROR"} +23:10:21.547 [XNIO-1 task-1] Hb2Fg-zdTyCBEpTPNo_YkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.547 [XNIO-1 task-1] Hb2Fg-zdTyCBEpTPNo_YkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.547 [XNIO-1 task-1] Hb2Fg-zdTyCBEpTPNo_YkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.547 [XNIO-1 task-1] Hb2Fg-zdTyCBEpTPNo_YkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.547 [XNIO-1 task-1] Hb2Fg-zdTyCBEpTPNo_YkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.554 [XNIO-1 task-1] bU-bE9vbROOyFgPp1unBuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.554 [XNIO-1 task-1] bU-bE9vbROOyFgPp1unBuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.554 [XNIO-1 task-1] bU-bE9vbROOyFgPp1unBuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.554 [XNIO-1 task-1] bU-bE9vbROOyFgPp1unBuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.554 [XNIO-1 task-1] bU-bE9vbROOyFgPp1unBuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "482215e8-a923-4627-81cd-c33e79fe1187", "482215e8-a923-4627-81cd-c33e79fe1187", refreshToken) +23:10:21.554 [XNIO-1 task-1] bU-bE9vbROOyFgPp1unBuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 482215e8-a923-4627-81cd-c33e79fe1187 is not found.","severity":"ERROR"} +23:10:21.558 [XNIO-1 task-1] Y5MQQVorRxy_ipa7cS4j5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.558 [XNIO-1 task-1] Y5MQQVorRxy_ipa7cS4j5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.558 [XNIO-1 task-1] Y5MQQVorRxy_ipa7cS4j5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.558 [XNIO-1 task-1] Y5MQQVorRxy_ipa7cS4j5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.567 [XNIO-1 task-1] HolgvftwQGeISYjGAZWkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.567 [XNIO-1 task-1] HolgvftwQGeISYjGAZWkjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.567 [XNIO-1 task-1] HolgvftwQGeISYjGAZWkjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.567 [XNIO-1 task-1] HolgvftwQGeISYjGAZWkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.567 [XNIO-1 task-1] HolgvftwQGeISYjGAZWkjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "482215e8-a923-4627-81cd-c33e79fe1187", "482215e8-a923-4627-81cd-c33e79fe1187", refreshToken) +23:10:21.567 [XNIO-1 task-1] HolgvftwQGeISYjGAZWkjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 482215e8-a923-4627-81cd-c33e79fe1187 is not found.","severity":"ERROR"} +23:10:21.573 [XNIO-1 task-1] be5t2oqZS9q3phwN2Zckbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.573 [XNIO-1 task-1] be5t2oqZS9q3phwN2Zckbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.573 [XNIO-1 task-1] be5t2oqZS9q3phwN2Zckbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.573 [XNIO-1 task-1] be5t2oqZS9q3phwN2Zckbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.573 [XNIO-1 task-1] be5t2oqZS9q3phwN2Zckbg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.580 [XNIO-1 task-1] 5tYc-ReHQlOWpScs8XekWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.580 [XNIO-1 task-1] 5tYc-ReHQlOWpScs8XekWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.580 [XNIO-1 task-1] 5tYc-ReHQlOWpScs8XekWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.580 [XNIO-1 task-1] 5tYc-ReHQlOWpScs8XekWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.580 [XNIO-1 task-1] 5tYc-ReHQlOWpScs8XekWw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:21.580 [XNIO-1 task-1] 5tYc-ReHQlOWpScs8XekWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:21.588 [XNIO-1 task-1] Z83MG2W2SCutfilM4eg9gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.588 [XNIO-1 task-1] Z83MG2W2SCutfilM4eg9gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.588 [XNIO-1 task-1] Z83MG2W2SCutfilM4eg9gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.588 [XNIO-1 task-1] Z83MG2W2SCutfilM4eg9gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.588 [XNIO-1 task-1] Z83MG2W2SCutfilM4eg9gw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.593 [XNIO-1 task-1] V5mzMVfpQe-4XnFSCekzPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.593 [XNIO-1 task-1] V5mzMVfpQe-4XnFSCekzPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.593 [XNIO-1 task-1] V5mzMVfpQe-4XnFSCekzPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.593 [XNIO-1 task-1] V5mzMVfpQe-4XnFSCekzPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.593 [XNIO-1 task-1] V5mzMVfpQe-4XnFSCekzPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.593 [XNIO-1 task-1] V5mzMVfpQe-4XnFSCekzPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.602 [XNIO-1 task-1] MYo2ubfaQOqgzCnb94XO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.602 [XNIO-1 task-1] MYo2ubfaQOqgzCnb94XO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.602 [XNIO-1 task-1] MYo2ubfaQOqgzCnb94XO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.602 [XNIO-1 task-1] MYo2ubfaQOqgzCnb94XO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.602 [XNIO-1 task-1] MYo2ubfaQOqgzCnb94XO1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.605 [XNIO-1 task-1] z_f1B1nkR2mWsEHT6_hSOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.606 [XNIO-1 task-1] z_f1B1nkR2mWsEHT6_hSOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.606 [XNIO-1 task-1] z_f1B1nkR2mWsEHT6_hSOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.606 [XNIO-1 task-1] z_f1B1nkR2mWsEHT6_hSOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.606 [XNIO-1 task-1] z_f1B1nkR2mWsEHT6_hSOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.606 [XNIO-1 task-1] z_f1B1nkR2mWsEHT6_hSOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.612 [XNIO-1 task-1] 0MSVoMinS2iAM6loSYj0nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.612 [XNIO-1 task-1] 0MSVoMinS2iAM6loSYj0nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.612 [XNIO-1 task-1] 0MSVoMinS2iAM6loSYj0nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.612 [XNIO-1 task-1] 0MSVoMinS2iAM6loSYj0nA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.619 [XNIO-1 task-1] r_CkgYffRympmd5f1UxJPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.619 [XNIO-1 task-1] r_CkgYffRympmd5f1UxJPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.619 [XNIO-1 task-1] r_CkgYffRympmd5f1UxJPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.619 [XNIO-1 task-1] r_CkgYffRympmd5f1UxJPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.619 [XNIO-1 task-1] r_CkgYffRympmd5f1UxJPg DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.619 [XNIO-1 task-1] r_CkgYffRympmd5f1UxJPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.623 [XNIO-1 task-1] jhMWVnh4Q5Grb65r52VA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.623 [XNIO-1 task-1] jhMWVnh4Q5Grb65r52VA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.623 [XNIO-1 task-1] jhMWVnh4Q5Grb65r52VA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.623 [XNIO-1 task-1] jhMWVnh4Q5Grb65r52VA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.623 [XNIO-1 task-1] jhMWVnh4Q5Grb65r52VA6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.625 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f733ec0f-e2b3-49bc-ab88-0092eead6e3b +23:10:21.626 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f733ec0f-e2b3-49bc-ab88-0092eead6e3b +23:10:21.627 [XNIO-1 task-1] cxNEqJfYTkmclx9qhDqQNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.627 [XNIO-1 task-1] cxNEqJfYTkmclx9qhDqQNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.627 [XNIO-1 task-1] cxNEqJfYTkmclx9qhDqQNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.627 [XNIO-1 task-1] cxNEqJfYTkmclx9qhDqQNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.627 [XNIO-1 task-1] cxNEqJfYTkmclx9qhDqQNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.637 [XNIO-1 task-1] kVgKeuEwTl-PbbZzkdTdwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.637 [XNIO-1 task-1] kVgKeuEwTl-PbbZzkdTdwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.638 [XNIO-1 task-1] kVgKeuEwTl-PbbZzkdTdwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.638 [XNIO-1 task-1] kVgKeuEwTl-PbbZzkdTdwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.638 [XNIO-1 task-1] kVgKeuEwTl-PbbZzkdTdwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.643 [XNIO-1 task-1] k-zvX0rfQqaqneu4RPFWZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.643 [XNIO-1 task-1] k-zvX0rfQqaqneu4RPFWZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.643 [XNIO-1 task-1] k-zvX0rfQqaqneu4RPFWZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.643 [XNIO-1 task-1] k-zvX0rfQqaqneu4RPFWZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.643 [XNIO-1 task-1] k-zvX0rfQqaqneu4RPFWZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.646 [XNIO-1 task-1] IDblRk3CT5C2gr8p80Hdyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.646 [XNIO-1 task-1] IDblRk3CT5C2gr8p80Hdyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.646 [XNIO-1 task-1] IDblRk3CT5C2gr8p80Hdyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.647 [XNIO-1 task-1] IDblRk3CT5C2gr8p80Hdyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.647 [XNIO-1 task-1] IDblRk3CT5C2gr8p80Hdyw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.652 [XNIO-1 task-1] MlFxm9fuTESkXCrH2PlWow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.652 [XNIO-1 task-1] MlFxm9fuTESkXCrH2PlWow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.652 [XNIO-1 task-1] MlFxm9fuTESkXCrH2PlWow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.652 [XNIO-1 task-1] MlFxm9fuTESkXCrH2PlWow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.652 [XNIO-1 task-1] MlFxm9fuTESkXCrH2PlWow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.659 [XNIO-1 task-1] -nAekLf1QDa_0_rdN47cVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.660 [XNIO-1 task-1] -nAekLf1QDa_0_rdN47cVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.660 [XNIO-1 task-1] -nAekLf1QDa_0_rdN47cVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.660 [XNIO-1 task-1] -nAekLf1QDa_0_rdN47cVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.660 [XNIO-1 task-1] -nAekLf1QDa_0_rdN47cVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.660 [XNIO-1 task-1] -nAekLf1QDa_0_rdN47cVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.663 [XNIO-1 task-1] yCjCKF4WSvu9kUFcCzoCcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.663 [XNIO-1 task-1] yCjCKF4WSvu9kUFcCzoCcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.663 [XNIO-1 task-1] yCjCKF4WSvu9kUFcCzoCcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.663 [XNIO-1 task-1] yCjCKF4WSvu9kUFcCzoCcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.663 [XNIO-1 task-1] yCjCKF4WSvu9kUFcCzoCcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.666 [XNIO-1 task-1] 9B9ZhgfXSIWcie-bn6Eyhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.666 [XNIO-1 task-1] 9B9ZhgfXSIWcie-bn6Eyhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.666 [XNIO-1 task-1] 9B9ZhgfXSIWcie-bn6Eyhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.666 [XNIO-1 task-1] 9B9ZhgfXSIWcie-bn6Eyhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187, base path is set to: null +23:10:21.666 [XNIO-1 task-1] 9B9ZhgfXSIWcie-bn6Eyhg DEBUG com.networknt.schema.TypeValidator debug - validate( "482215e8-a923-4627-81cd-c33e79fe1187", "482215e8-a923-4627-81cd-c33e79fe1187", refreshToken) +23:10:21.666 [XNIO-1 task-1] 9B9ZhgfXSIWcie-bn6Eyhg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 482215e8-a923-4627-81cd-c33e79fe1187 is not found.","severity":"ERROR"} +23:10:21.669 [XNIO-1 task-1] PEidirhqR2CqhcWZXt7s5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.669 [XNIO-1 task-1] PEidirhqR2CqhcWZXt7s5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.669 [XNIO-1 task-1] PEidirhqR2CqhcWZXt7s5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.669 [XNIO-1 task-1] PEidirhqR2CqhcWZXt7s5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.670 [XNIO-1 task-1] PEidirhqR2CqhcWZXt7s5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 482215e8-a923-4627-81cd-c33e79fe1187 +23:10:21.673 [XNIO-1 task-1] RDxiPyKJTPun-1e53bJ1PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7f02c24-8222-4e93-8a9e-5e3f41f50b4d, base path is set to: null +23:10:21.673 [XNIO-1 task-1] RDxiPyKJTPun-1e53bJ1PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.674 [XNIO-1 task-1] RDxiPyKJTPun-1e53bJ1PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.674 [XNIO-1 task-1] RDxiPyKJTPun-1e53bJ1PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7f02c24-8222-4e93-8a9e-5e3f41f50b4d, base path is set to: null +23:10:21.674 [XNIO-1 task-1] RDxiPyKJTPun-1e53bJ1PA DEBUG com.networknt.schema.TypeValidator debug - validate( "b7f02c24-8222-4e93-8a9e-5e3f41f50b4d", "b7f02c24-8222-4e93-8a9e-5e3f41f50b4d", refreshToken) +23:10:21.686 [XNIO-1 task-1] wEgdAd98SeK-Pl4MeaQMtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9, base path is set to: null +23:10:21.686 [XNIO-1 task-1] wEgdAd98SeK-Pl4MeaQMtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.686 [XNIO-1 task-1] wEgdAd98SeK-Pl4MeaQMtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.687 [XNIO-1 task-1] wEgdAd98SeK-Pl4MeaQMtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9, base path is set to: null +23:10:21.687 [XNIO-1 task-1] wEgdAd98SeK-Pl4MeaQMtw DEBUG com.networknt.schema.TypeValidator debug - validate( "489f6098-f8df-47dc-9c7b-528970980ad9", "489f6098-f8df-47dc-9c7b-528970980ad9", refreshToken) +23:10:21.696 [XNIO-1 task-1] G0RrBt02TeqM9XSbdrQvyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.696 [XNIO-1 task-1] G0RrBt02TeqM9XSbdrQvyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.697 [XNIO-1 task-1] G0RrBt02TeqM9XSbdrQvyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.697 [XNIO-1 task-1] G0RrBt02TeqM9XSbdrQvyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.697 [XNIO-1 task-1] G0RrBt02TeqM9XSbdrQvyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:21.697 [XNIO-1 task-1] G0RrBt02TeqM9XSbdrQvyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:21.699 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:75334213-702c-4a63-9540-73d2baffef0c +23:10:21.703 [XNIO-1 task-1] bYHTK6slR2m-cw2FLcYZeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.703 [XNIO-1 task-1] bYHTK6slR2m-cw2FLcYZeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.703 [XNIO-1 task-1] bYHTK6slR2m-cw2FLcYZeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.703 [XNIO-1 task-1] bYHTK6slR2m-cw2FLcYZeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.704 [XNIO-1 task-1] bYHTK6slR2m-cw2FLcYZeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.710 [XNIO-1 task-1] 5txeFVy9SOyUreOjwOYIXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.710 [XNIO-1 task-1] 5txeFVy9SOyUreOjwOYIXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.710 [XNIO-1 task-1] 5txeFVy9SOyUreOjwOYIXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.710 [XNIO-1 task-1] 5txeFVy9SOyUreOjwOYIXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.710 [XNIO-1 task-1] 5txeFVy9SOyUreOjwOYIXw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.715 [XNIO-1 task-1] pJ7B-l8WRsmv3v40a5yOaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.715 [XNIO-1 task-1] pJ7B-l8WRsmv3v40a5yOaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.715 [XNIO-1 task-1] pJ7B-l8WRsmv3v40a5yOaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.715 [XNIO-1 task-1] pJ7B-l8WRsmv3v40a5yOaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.719 [XNIO-1 task-1] UJoldXbJSkyzjnru1XQNTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.719 [XNIO-1 task-1] UJoldXbJSkyzjnru1XQNTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.719 [XNIO-1 task-1] UJoldXbJSkyzjnru1XQNTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.719 [XNIO-1 task-1] UJoldXbJSkyzjnru1XQNTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.720 [XNIO-1 task-1] UJoldXbJSkyzjnru1XQNTw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:21.720 [XNIO-1 task-1] UJoldXbJSkyzjnru1XQNTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:21.725 [XNIO-1 task-1] _lv8yUW7RwKl4p7v4VVgsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.725 [XNIO-1 task-1] _lv8yUW7RwKl4p7v4VVgsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.726 [XNIO-1 task-1] _lv8yUW7RwKl4p7v4VVgsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.726 [XNIO-1 task-1] _lv8yUW7RwKl4p7v4VVgsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.726 [XNIO-1 task-1] _lv8yUW7RwKl4p7v4VVgsA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.730 [XNIO-1 task-1] chErzkKXTuaqja5bs5asxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.731 [XNIO-1 task-1] chErzkKXTuaqja5bs5asxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.731 [XNIO-1 task-1] chErzkKXTuaqja5bs5asxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.731 [XNIO-1 task-1] chErzkKXTuaqja5bs5asxg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.731 [XNIO-1 task-1] chErzkKXTuaqja5bs5asxg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.738 [XNIO-1 task-1] GMjxW1mCSMC0AjtbqvQkew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3e98af0-e688-410a-bfcd-f3aaef9b4d8f +23:10:21.738 [XNIO-1 task-1] GMjxW1mCSMC0AjtbqvQkew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.738 [XNIO-1 task-1] GMjxW1mCSMC0AjtbqvQkew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.738 [XNIO-1 task-1] GMjxW1mCSMC0AjtbqvQkew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3e98af0-e688-410a-bfcd-f3aaef9b4d8f +23:10:21.739 [XNIO-1 task-1] GMjxW1mCSMC0AjtbqvQkew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b3e98af0-e688-410a-bfcd-f3aaef9b4d8f +23:10:21.742 [XNIO-1 task-1] gfTt2Q6fQs-BVX7PRN6Fug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.742 [XNIO-1 task-1] gfTt2Q6fQs-BVX7PRN6Fug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.742 [XNIO-1 task-1] gfTt2Q6fQs-BVX7PRN6Fug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.742 [XNIO-1 task-1] gfTt2Q6fQs-BVX7PRN6Fug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.744 [XNIO-1 task-1] gfTt2Q6fQs-BVX7PRN6Fug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.748 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:27c06b5b-369a-4e79-8278-175052cfbda5 +23:10:21.749 [XNIO-1 task-1] vCLWbqmUQqellgsBgKlfuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.749 [XNIO-1 task-1] vCLWbqmUQqellgsBgKlfuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.749 [XNIO-1 task-1] vCLWbqmUQqellgsBgKlfuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.749 [XNIO-1 task-1] vCLWbqmUQqellgsBgKlfuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.749 [XNIO-1 task-1] vCLWbqmUQqellgsBgKlfuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.755 [XNIO-1 task-1] BAH2Ao4uRQeB3fT62j68Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.755 [XNIO-1 task-1] BAH2Ao4uRQeB3fT62j68Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.755 [XNIO-1 task-1] BAH2Ao4uRQeB3fT62j68Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.755 [XNIO-1 task-1] BAH2Ao4uRQeB3fT62j68Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.755 [XNIO-1 task-1] BAH2Ao4uRQeB3fT62j68Wg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.762 [XNIO-1 task-1] eGVA6AeaT7KZL81-7aNITA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.762 [XNIO-1 task-1] eGVA6AeaT7KZL81-7aNITA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.762 [XNIO-1 task-1] eGVA6AeaT7KZL81-7aNITA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.762 [XNIO-1 task-1] eGVA6AeaT7KZL81-7aNITA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.762 [XNIO-1 task-1] eGVA6AeaT7KZL81-7aNITA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.770 [XNIO-1 task-1] Br8nhYQASkehx4LqOoillg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3e98af0-e688-410a-bfcd-f3aaef9b4d8f +23:10:21.770 [XNIO-1 task-1] Br8nhYQASkehx4LqOoillg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.770 [XNIO-1 task-1] Br8nhYQASkehx4LqOoillg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.770 [XNIO-1 task-1] Br8nhYQASkehx4LqOoillg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3e98af0-e688-410a-bfcd-f3aaef9b4d8f +23:10:21.770 [XNIO-1 task-1] Br8nhYQASkehx4LqOoillg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b3e98af0-e688-410a-bfcd-f3aaef9b4d8f +23:10:21.776 [XNIO-1 task-1] 6tjcVcUNTUO_gDiCJ7HGLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.776 [XNIO-1 task-1] 6tjcVcUNTUO_gDiCJ7HGLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.776 [XNIO-1 task-1] 6tjcVcUNTUO_gDiCJ7HGLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.777 [XNIO-1 task-1] 6tjcVcUNTUO_gDiCJ7HGLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.777 [XNIO-1 task-1] 6tjcVcUNTUO_gDiCJ7HGLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:21.779 [XNIO-1 task-1] -1KwF3E3TiCB0K7K9iYW5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.780 [XNIO-1 task-1] -1KwF3E3TiCB0K7K9iYW5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.780 [XNIO-1 task-1] -1KwF3E3TiCB0K7K9iYW5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.781 [XNIO-1 task-1] -1KwF3E3TiCB0K7K9iYW5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.781 [XNIO-1 task-1] -1KwF3E3TiCB0K7K9iYW5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.789 [XNIO-1 task-1] maA2W-6KRBS8yg05BacGQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.789 [XNIO-1 task-1] maA2W-6KRBS8yg05BacGQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.790 [XNIO-1 task-1] maA2W-6KRBS8yg05BacGQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.790 [XNIO-1 task-1] maA2W-6KRBS8yg05BacGQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.796 [XNIO-1 task-1] Kw4edHsnQsW_ZwW3GEzuJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.796 [XNIO-1 task-1] Kw4edHsnQsW_ZwW3GEzuJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.797 [XNIO-1 task-1] Kw4edHsnQsW_ZwW3GEzuJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.797 [XNIO-1 task-1] Kw4edHsnQsW_ZwW3GEzuJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.797 [XNIO-1 task-1] Kw4edHsnQsW_ZwW3GEzuJw DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.797 [XNIO-1 task-1] Kw4edHsnQsW_ZwW3GEzuJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.802 [XNIO-1 task-1] j0hl0zl8QeaQuPd8Dfls5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.802 [XNIO-1 task-1] j0hl0zl8QeaQuPd8Dfls5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.802 [XNIO-1 task-1] j0hl0zl8QeaQuPd8Dfls5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.802 [XNIO-1 task-1] j0hl0zl8QeaQuPd8Dfls5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.802 [XNIO-1 task-1] j0hl0zl8QeaQuPd8Dfls5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.808 [XNIO-1 task-1] TRyv6uQjSdGCwoPsvq-GbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.808 [XNIO-1 task-1] TRyv6uQjSdGCwoPsvq-GbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.809 [XNIO-1 task-1] TRyv6uQjSdGCwoPsvq-GbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.809 [XNIO-1 task-1] TRyv6uQjSdGCwoPsvq-GbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.809 [XNIO-1 task-1] TRyv6uQjSdGCwoPsvq-GbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.816 [XNIO-1 task-1] GYVVa5PYRme01jJBMKUdpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.816 [XNIO-1 task-1] GYVVa5PYRme01jJBMKUdpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.816 [XNIO-1 task-1] GYVVa5PYRme01jJBMKUdpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.816 [XNIO-1 task-1] GYVVa5PYRme01jJBMKUdpA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.823 [XNIO-1 task-1] -kSENJAfQmmpguL2Tz6zzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.823 [XNIO-1 task-1] -kSENJAfQmmpguL2Tz6zzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.823 [XNIO-1 task-1] -kSENJAfQmmpguL2Tz6zzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.824 [XNIO-1 task-1] -kSENJAfQmmpguL2Tz6zzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.824 [XNIO-1 task-1] -kSENJAfQmmpguL2Tz6zzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.824 [XNIO-1 task-1] -kSENJAfQmmpguL2Tz6zzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.832 [XNIO-1 task-1] rI53W354QyOHbg_fS8AYLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.832 [XNIO-1 task-1] rI53W354QyOHbg_fS8AYLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.832 [XNIO-1 task-1] rI53W354QyOHbg_fS8AYLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.832 [XNIO-1 task-1] rI53W354QyOHbg_fS8AYLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.833 [XNIO-1 task-1] rI53W354QyOHbg_fS8AYLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.839 [XNIO-1 task-1] hNHzTTFtRZC_4IQ-3OwK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb, base path is set to: null +23:10:21.839 [XNIO-1 task-1] hNHzTTFtRZC_4IQ-3OwK5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.839 [XNIO-1 task-1] hNHzTTFtRZC_4IQ-3OwK5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.839 [XNIO-1 task-1] hNHzTTFtRZC_4IQ-3OwK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb, base path is set to: null +23:10:21.839 [XNIO-1 task-1] hNHzTTFtRZC_4IQ-3OwK5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "37098dfc-c642-4212-b6c0-bea003c859cb", "37098dfc-c642-4212-b6c0-bea003c859cb", refreshToken) +23:10:21.843 [XNIO-1 task-1] ls6r7qWaRuO4GO83-w7AUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.843 [XNIO-1 task-1] ls6r7qWaRuO4GO83-w7AUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.843 [XNIO-1 task-1] ls6r7qWaRuO4GO83-w7AUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.843 [XNIO-1 task-1] ls6r7qWaRuO4GO83-w7AUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:21.843 [XNIO-1 task-1] ls6r7qWaRuO4GO83-w7AUg DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:21.844 [XNIO-1 task-1] ls6r7qWaRuO4GO83-w7AUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:21.849 [XNIO-1 task-1] Jg3UBboeRROQhzLSWsFqyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb +23:10:21.850 [XNIO-1 task-1] Jg3UBboeRROQhzLSWsFqyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.850 [XNIO-1 task-1] Jg3UBboeRROQhzLSWsFqyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.850 [XNIO-1 task-1] Jg3UBboeRROQhzLSWsFqyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb +23:10:21.853 [XNIO-1 task-1] Jg3UBboeRROQhzLSWsFqyw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 37098dfc-c642-4212-b6c0-bea003c859cb +23:10:21.869 [XNIO-1 task-1] JluifoDkRLC0x5xAvGU-QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.869 [XNIO-1 task-1] JluifoDkRLC0x5xAvGU-QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.870 [XNIO-1 task-1] JluifoDkRLC0x5xAvGU-QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.870 [XNIO-1 task-1] JluifoDkRLC0x5xAvGU-QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.870 [XNIO-1 task-1] JluifoDkRLC0x5xAvGU-QQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.875 [XNIO-1 task-1] wqR6zOrOTAiAMYuHyV8aGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb, base path is set to: null +23:10:21.875 [XNIO-1 task-1] wqR6zOrOTAiAMYuHyV8aGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.875 [XNIO-1 task-1] wqR6zOrOTAiAMYuHyV8aGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.875 [XNIO-1 task-1] wqR6zOrOTAiAMYuHyV8aGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb, base path is set to: null +23:10:21.875 [XNIO-1 task-1] wqR6zOrOTAiAMYuHyV8aGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "37098dfc-c642-4212-b6c0-bea003c859cb", "37098dfc-c642-4212-b6c0-bea003c859cb", refreshToken) +23:10:21.877 [XNIO-1 task-1] wqR6zOrOTAiAMYuHyV8aGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 37098dfc-c642-4212-b6c0-bea003c859cb is not found.","severity":"ERROR"} +23:10:21.886 [XNIO-1 task-1] 0yAPvlTYR8mowX99lbMuXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.887 [XNIO-1 task-1] 0yAPvlTYR8mowX99lbMuXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.887 [XNIO-1 task-1] 0yAPvlTYR8mowX99lbMuXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.887 [XNIO-1 task-1] 0yAPvlTYR8mowX99lbMuXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.892 [XNIO-1 task-1] 3c-H8O1yR66cqHWRVhoW_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.892 [XNIO-1 task-1] 3c-H8O1yR66cqHWRVhoW_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.892 [XNIO-1 task-1] 3c-H8O1yR66cqHWRVhoW_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.892 [XNIO-1 task-1] 3c-H8O1yR66cqHWRVhoW_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.892 [XNIO-1 task-1] 3c-H8O1yR66cqHWRVhoW_A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.902 [XNIO-1 task-1] NpcmClsZSEGefISzEnPxVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.902 [XNIO-1 task-1] NpcmClsZSEGefISzEnPxVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.902 [XNIO-1 task-1] NpcmClsZSEGefISzEnPxVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.902 [XNIO-1 task-1] NpcmClsZSEGefISzEnPxVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.902 [XNIO-1 task-1] NpcmClsZSEGefISzEnPxVg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.911 [XNIO-1 task-1] rt4695L6ThCeHsCjA80dTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7f02c24-8222-4e93-8a9e-5e3f41f50b4d, base path is set to: null +23:10:21.911 [XNIO-1 task-1] rt4695L6ThCeHsCjA80dTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.911 [XNIO-1 task-1] rt4695L6ThCeHsCjA80dTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.911 [XNIO-1 task-1] rt4695L6ThCeHsCjA80dTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7f02c24-8222-4e93-8a9e-5e3f41f50b4d, base path is set to: null +23:10:21.912 [XNIO-1 task-1] rt4695L6ThCeHsCjA80dTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b7f02c24-8222-4e93-8a9e-5e3f41f50b4d", "b7f02c24-8222-4e93-8a9e-5e3f41f50b4d", refreshToken) +23:10:21.913 [XNIO-1 task-1] rt4695L6ThCeHsCjA80dTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b7f02c24-8222-4e93-8a9e-5e3f41f50b4d is not found.","severity":"ERROR"} +23:10:21.919 [XNIO-1 task-1] PTzI49THSdy_jboF7iPk5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.919 [XNIO-1 task-1] PTzI49THSdy_jboF7iPk5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.919 [XNIO-1 task-1] PTzI49THSdy_jboF7iPk5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.919 [XNIO-1 task-1] PTzI49THSdy_jboF7iPk5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.919 [XNIO-1 task-1] PTzI49THSdy_jboF7iPk5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 489f6098-f8df-47dc-9c7b-528970980ad9 +23:10:21.924 [XNIO-1 task-1] eNb4zWBOTtyIVVJETWkwZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:21.924 [XNIO-1 task-1] eNb4zWBOTtyIVVJETWkwZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.925 [XNIO-1 task-1] eNb4zWBOTtyIVVJETWkwZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.925 [XNIO-1 task-1] eNb4zWBOTtyIVVJETWkwZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:21.925 [XNIO-1 task-1] eNb4zWBOTtyIVVJETWkwZA DEBUG com.networknt.schema.TypeValidator debug - validate( "ca863491-fbe7-4c9a-8470-1b43a71314a7", "ca863491-fbe7-4c9a-8470-1b43a71314a7", refreshToken) +23:10:21.941 [XNIO-1 task-1] k0p3732sQP6AGHbc-m5ODw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.943 [XNIO-1 task-1] k0p3732sQP6AGHbc-m5ODw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.943 [XNIO-1 task-1] k0p3732sQP6AGHbc-m5ODw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.943 [XNIO-1 task-1] k0p3732sQP6AGHbc-m5ODw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.944 [XNIO-1 task-1] k0p3732sQP6AGHbc-m5ODw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:21.944 [XNIO-1 task-1] k0p3732sQP6AGHbc-m5ODw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:21.951 [XNIO-1 task-1] tAzhPewVSda6d48dHf2O3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.951 [XNIO-1 task-1] tAzhPewVSda6d48dHf2O3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.951 [XNIO-1 task-1] tAzhPewVSda6d48dHf2O3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.951 [XNIO-1 task-1] tAzhPewVSda6d48dHf2O3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.958 [XNIO-1 task-1] dvKnXuivRoKepcgZ4J0k0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9, base path is set to: null +23:10:21.958 [XNIO-1 task-1] dvKnXuivRoKepcgZ4J0k0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.958 [XNIO-1 task-1] dvKnXuivRoKepcgZ4J0k0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.958 [XNIO-1 task-1] dvKnXuivRoKepcgZ4J0k0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/489f6098-f8df-47dc-9c7b-528970980ad9, base path is set to: null +23:10:21.959 [XNIO-1 task-1] dvKnXuivRoKepcgZ4J0k0w DEBUG com.networknt.schema.TypeValidator debug - validate( "489f6098-f8df-47dc-9c7b-528970980ad9", "489f6098-f8df-47dc-9c7b-528970980ad9", refreshToken) +23:10:21.959 [XNIO-1 task-1] dvKnXuivRoKepcgZ4J0k0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 489f6098-f8df-47dc-9c7b-528970980ad9 is not found.","severity":"ERROR"} +23:10:21.964 [XNIO-1 task-1] 3eelrzJ5Sy6O4trq6FIJUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:21.965 [XNIO-1 task-1] 3eelrzJ5Sy6O4trq6FIJUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.965 [XNIO-1 task-1] 3eelrzJ5Sy6O4trq6FIJUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.965 [XNIO-1 task-1] 3eelrzJ5Sy6O4trq6FIJUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:21.965 [XNIO-1 task-1] 3eelrzJ5Sy6O4trq6FIJUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:21.968 [XNIO-1 task-1] sb86ZouqQUOPRh8Mo8-ImQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.968 [XNIO-1 task-1] sb86ZouqQUOPRh8Mo8-ImQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.969 [XNIO-1 task-1] sb86ZouqQUOPRh8Mo8-ImQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.969 [XNIO-1 task-1] sb86ZouqQUOPRh8Mo8-ImQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.969 [XNIO-1 task-1] sb86ZouqQUOPRh8Mo8-ImQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:21.969 [XNIO-1 task-1] sb86ZouqQUOPRh8Mo8-ImQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:21.971 [XNIO-1 task-1] rGIK_-8-TnqXqBZAGqD2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:21.971 [XNIO-1 task-1] rGIK_-8-TnqXqBZAGqD2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.971 [XNIO-1 task-1] rGIK_-8-TnqXqBZAGqD2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:21.971 [XNIO-1 task-1] rGIK_-8-TnqXqBZAGqD2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:21.971 [XNIO-1 task-1] rGIK_-8-TnqXqBZAGqD2Wg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:21.973 [XNIO-1 task-1] e5zGr5jQTZOD3tTNF_SwLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.974 [XNIO-1 task-1] e5zGr5jQTZOD3tTNF_SwLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.974 [XNIO-1 task-1] e5zGr5jQTZOD3tTNF_SwLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:21.974 [XNIO-1 task-1] e5zGr5jQTZOD3tTNF_SwLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:21.974 [XNIO-1 task-1] e5zGr5jQTZOD3tTNF_SwLg DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:21.974 [XNIO-1 task-1] e5zGr5jQTZOD3tTNF_SwLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:21.978 [XNIO-1 task-1] bFf_1xPWQH2rZdg4sQ_2xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.978 [XNIO-1 task-1] bFf_1xPWQH2rZdg4sQ_2xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.978 [XNIO-1 task-1] bFf_1xPWQH2rZdg4sQ_2xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:21.978 [XNIO-1 task-1] bFf_1xPWQH2rZdg4sQ_2xg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.985 [XNIO-1 task-1] 64bQAiwGRGCkNEvD884xHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.985 [XNIO-1 task-1] 64bQAiwGRGCkNEvD884xHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.985 [XNIO-1 task-1] 64bQAiwGRGCkNEvD884xHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.986 [XNIO-1 task-1] 64bQAiwGRGCkNEvD884xHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.986 [XNIO-1 task-1] 64bQAiwGRGCkNEvD884xHg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.989 [XNIO-1 task-1] gMia5XE_Qy-L4NoyZg4RBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.989 [XNIO-1 task-1] gMia5XE_Qy-L4NoyZg4RBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:21.990 [XNIO-1 task-1] gMia5XE_Qy-L4NoyZg4RBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:21.990 [XNIO-1 task-1] gMia5XE_Qy-L4NoyZg4RBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.990 [XNIO-1 task-1] gMia5XE_Qy-L4NoyZg4RBw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:21.991 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:58b46ef1 +23:10:21.999 [XNIO-1 task-1] 6RbGFfCESe2BU21oqQrZyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:21.999 [XNIO-1 task-1] 6RbGFfCESe2BU21oqQrZyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.000 [XNIO-1 task-1] 6RbGFfCESe2BU21oqQrZyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.000 [XNIO-1 task-1] 6RbGFfCESe2BU21oqQrZyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.000 [XNIO-1 task-1] 6RbGFfCESe2BU21oqQrZyA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.012 [XNIO-1 task-1] Protb18CQC6YD7Yw0CnKUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.012 [XNIO-1 task-1] Protb18CQC6YD7Yw0CnKUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.013 [XNIO-1 task-1] Protb18CQC6YD7Yw0CnKUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.013 [XNIO-1 task-1] Protb18CQC6YD7Yw0CnKUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.013 [XNIO-1 task-1] Protb18CQC6YD7Yw0CnKUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.013 [XNIO-1 task-1] Protb18CQC6YD7Yw0CnKUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.022 [XNIO-1 task-1] dFKIrHCrTYKDfkiG_bUVuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.022 [XNIO-1 task-1] dFKIrHCrTYKDfkiG_bUVuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.022 [XNIO-1 task-1] dFKIrHCrTYKDfkiG_bUVuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.022 [XNIO-1 task-1] dFKIrHCrTYKDfkiG_bUVuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.022 [XNIO-1 task-1] dFKIrHCrTYKDfkiG_bUVuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.027 [XNIO-1 task-1] k4TgzeajRi6WpsbMYCOVFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb, base path is set to: null +23:10:22.027 [XNIO-1 task-1] k4TgzeajRi6WpsbMYCOVFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.027 [XNIO-1 task-1] k4TgzeajRi6WpsbMYCOVFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.027 [XNIO-1 task-1] k4TgzeajRi6WpsbMYCOVFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37098dfc-c642-4212-b6c0-bea003c859cb, base path is set to: null +23:10:22.028 [XNIO-1 task-1] k4TgzeajRi6WpsbMYCOVFA DEBUG com.networknt.schema.TypeValidator debug - validate( "37098dfc-c642-4212-b6c0-bea003c859cb", "37098dfc-c642-4212-b6c0-bea003c859cb", refreshToken) +23:10:22.028 [XNIO-1 task-1] k4TgzeajRi6WpsbMYCOVFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 37098dfc-c642-4212-b6c0-bea003c859cb is not found.","severity":"ERROR"} +23:10:22.028 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8b15d584 +23:10:22.031 [XNIO-1 task-1] IrzxwkzsQnuPy1pwninXTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.031 [XNIO-1 task-1] IrzxwkzsQnuPy1pwninXTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.032 [XNIO-1 task-1] IrzxwkzsQnuPy1pwninXTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.032 [XNIO-1 task-1] IrzxwkzsQnuPy1pwninXTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.032 [XNIO-1 task-1] IrzxwkzsQnuPy1pwninXTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.038 [XNIO-1 task-1] rhLsf-L4RF2T1jf7upZXjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.038 [XNIO-1 task-1] rhLsf-L4RF2T1jf7upZXjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.038 [XNIO-1 task-1] rhLsf-L4RF2T1jf7upZXjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.038 [XNIO-1 task-1] rhLsf-L4RF2T1jf7upZXjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.038 [XNIO-1 task-1] rhLsf-L4RF2T1jf7upZXjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.042 [XNIO-1 task-1] ncgb6f5zTM-Y2wUR4SiQwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.042 [XNIO-1 task-1] ncgb6f5zTM-Y2wUR4SiQwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.042 [XNIO-1 task-1] ncgb6f5zTM-Y2wUR4SiQwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.043 [XNIO-1 task-1] ncgb6f5zTM-Y2wUR4SiQwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.043 [XNIO-1 task-1] ncgb6f5zTM-Y2wUR4SiQwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.052 [XNIO-1 task-1] el-bZM7PRDqC_l1Cg87uYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.052 [XNIO-1 task-1] el-bZM7PRDqC_l1Cg87uYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.053 [XNIO-1 task-1] el-bZM7PRDqC_l1Cg87uYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.053 [XNIO-1 task-1] el-bZM7PRDqC_l1Cg87uYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.061 [XNIO-1 task-1] MvOGFhapRDe8VFHhbO9psQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.061 [XNIO-1 task-1] MvOGFhapRDe8VFHhbO9psQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.061 [XNIO-1 task-1] MvOGFhapRDe8VFHhbO9psQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.061 [XNIO-1 task-1] MvOGFhapRDe8VFHhbO9psQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.061 [XNIO-1 task-1] MvOGFhapRDe8VFHhbO9psQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.061 [XNIO-1 task-1] MvOGFhapRDe8VFHhbO9psQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.070 [XNIO-1 task-1] G9g1mUCFTaewVr88aZBh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.070 [XNIO-1 task-1] G9g1mUCFTaewVr88aZBh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.070 [XNIO-1 task-1] G9g1mUCFTaewVr88aZBh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.070 [XNIO-1 task-1] G9g1mUCFTaewVr88aZBh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.070 [XNIO-1 task-1] G9g1mUCFTaewVr88aZBh_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.078 [XNIO-1 task-1] d3rT7LroTNui9uTdeowaRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab, base path is set to: null +23:10:22.078 [XNIO-1 task-1] d3rT7LroTNui9uTdeowaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.078 [XNIO-1 task-1] d3rT7LroTNui9uTdeowaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.078 [XNIO-1 task-1] d3rT7LroTNui9uTdeowaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.078 [XNIO-1 task-1] d3rT7LroTNui9uTdeowaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.078 [XNIO-1 task-1] d3rT7LroTNui9uTdeowaRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.078 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a9e74739 +23:10:22.087 [XNIO-1 task-1] QMPzBv0hQCSn9-NwmuwhOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.088 [XNIO-1 task-1] QMPzBv0hQCSn9-NwmuwhOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.088 [XNIO-1 task-1] QMPzBv0hQCSn9-NwmuwhOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.088 [XNIO-1 task-1] QMPzBv0hQCSn9-NwmuwhOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.097 [XNIO-1 task-1] hOzIW_XQQMG9Bijg3PKolQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.097 [XNIO-1 task-1] hOzIW_XQQMG9Bijg3PKolQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.097 [XNIO-1 task-1] hOzIW_XQQMG9Bijg3PKolQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.097 [XNIO-1 task-1] hOzIW_XQQMG9Bijg3PKolQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.097 [XNIO-1 task-1] hOzIW_XQQMG9Bijg3PKolQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.100 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:58b46ef1 +23:10:22.105 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8a8f3bbe +23:10:22.107 [XNIO-1 task-1] t-jrioeFTWytmNwhvuwFPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.108 [XNIO-1 task-1] t-jrioeFTWytmNwhvuwFPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.108 [XNIO-1 task-1] t-jrioeFTWytmNwhvuwFPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.108 [XNIO-1 task-1] t-jrioeFTWytmNwhvuwFPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.108 [XNIO-1 task-1] t-jrioeFTWytmNwhvuwFPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.117 [XNIO-1 task-1] U2FgWxBBS36w_DIuwn-w6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.117 [XNIO-1 task-1] U2FgWxBBS36w_DIuwn-w6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.117 [XNIO-1 task-1] U2FgWxBBS36w_DIuwn-w6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.117 [XNIO-1 task-1] U2FgWxBBS36w_DIuwn-w6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.122 [XNIO-1 task-1] 01OIAEPZRL-hZktL5O3fuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.122 [XNIO-1 task-1] 01OIAEPZRL-hZktL5O3fuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.122 [XNIO-1 task-1] 01OIAEPZRL-hZktL5O3fuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.122 [XNIO-1 task-1] 01OIAEPZRL-hZktL5O3fuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.122 [XNIO-1 task-1] 01OIAEPZRL-hZktL5O3fuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.127 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6f023eca-2c83-4cb8-bc25-7a99251919af +23:10:22.128 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:109b1fa6 +23:10:22.129 [XNIO-1 task-1] _tBgYMOHTo6DCfSjKKZvYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.129 [XNIO-1 task-1] _tBgYMOHTo6DCfSjKKZvYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.129 [XNIO-1 task-1] _tBgYMOHTo6DCfSjKKZvYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.129 [XNIO-1 task-1] _tBgYMOHTo6DCfSjKKZvYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.130 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:109b1fa6 +23:10:22.135 [XNIO-1 task-1] UiWnN7tAQhOqCmodX8t5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e0b8341e-b616-4983-b8a6-83a9b7609a22, base path is set to: null +23:10:22.136 [XNIO-1 task-1] UiWnN7tAQhOqCmodX8t5vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.136 [XNIO-1 task-1] UiWnN7tAQhOqCmodX8t5vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.136 [XNIO-1 task-1] UiWnN7tAQhOqCmodX8t5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e0b8341e-b616-4983-b8a6-83a9b7609a22, base path is set to: null +23:10:22.136 [XNIO-1 task-1] UiWnN7tAQhOqCmodX8t5vA DEBUG com.networknt.schema.TypeValidator debug - validate( "e0b8341e-b616-4983-b8a6-83a9b7609a22", "e0b8341e-b616-4983-b8a6-83a9b7609a22", refreshToken) +23:10:22.138 [XNIO-1 task-1] UiWnN7tAQhOqCmodX8t5vA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e0b8341e-b616-4983-b8a6-83a9b7609a22 is not found.","severity":"ERROR"} +23:10:22.141 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8a8f3bbe +23:10:22.142 [XNIO-1 task-1] DZoQ5VKNQ2KfbZLnrUZYOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.142 [XNIO-1 task-1] DZoQ5VKNQ2KfbZLnrUZYOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.142 [XNIO-1 task-1] DZoQ5VKNQ2KfbZLnrUZYOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.142 [XNIO-1 task-1] DZoQ5VKNQ2KfbZLnrUZYOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.142 [XNIO-1 task-1] DZoQ5VKNQ2KfbZLnrUZYOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.151 [XNIO-1 task-1] PPXfVPCSTyOrV0ZR8z-whA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.151 [XNIO-1 task-1] PPXfVPCSTyOrV0ZR8z-whA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.151 [XNIO-1 task-1] PPXfVPCSTyOrV0ZR8z-whA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.151 [XNIO-1 task-1] PPXfVPCSTyOrV0ZR8z-whA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.151 [XNIO-1 task-1] PPXfVPCSTyOrV0ZR8z-whA DEBUG com.networknt.schema.TypeValidator debug - validate( "ca863491-fbe7-4c9a-8470-1b43a71314a7", "ca863491-fbe7-4c9a-8470-1b43a71314a7", refreshToken) +23:10:22.151 [XNIO-1 task-1] PPXfVPCSTyOrV0ZR8z-whA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ca863491-fbe7-4c9a-8470-1b43a71314a7 is not found.","severity":"ERROR"} +23:10:22.156 [XNIO-1 task-1] Xran--ywQfedvB7Rbq9epA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.156 [XNIO-1 task-1] Xran--ywQfedvB7Rbq9epA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.156 [XNIO-1 task-1] Xran--ywQfedvB7Rbq9epA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.156 [XNIO-1 task-1] Xran--ywQfedvB7Rbq9epA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.156 [XNIO-1 task-1] Xran--ywQfedvB7Rbq9epA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.157 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:109b1fa6 +23:10:22.159 [XNIO-1 task-1] VHVYIcUTQa6rrtH0aEdZUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.159 [XNIO-1 task-1] VHVYIcUTQa6rrtH0aEdZUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.159 [XNIO-1 task-1] VHVYIcUTQa6rrtH0aEdZUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.159 [XNIO-1 task-1] VHVYIcUTQa6rrtH0aEdZUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.159 [XNIO-1 task-1] VHVYIcUTQa6rrtH0aEdZUw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca863491-fbe7-4c9a-8470-1b43a71314a7", "ca863491-fbe7-4c9a-8470-1b43a71314a7", refreshToken) +23:10:22.160 [XNIO-1 task-1] VHVYIcUTQa6rrtH0aEdZUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ca863491-fbe7-4c9a-8470-1b43a71314a7 is not found.","severity":"ERROR"} +23:10:22.165 [XNIO-1 task-1] AA_484UcQsOcAxUXPSrmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.165 [XNIO-1 task-1] AA_484UcQsOcAxUXPSrmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.165 [XNIO-1 task-1] AA_484UcQsOcAxUXPSrmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.165 [XNIO-1 task-1] AA_484UcQsOcAxUXPSrmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.166 [XNIO-1 task-1] AA_484UcQsOcAxUXPSrmYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.172 [XNIO-1 task-1] mbEM-aNZTbiQkExrOaNWAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.172 [XNIO-1 task-1] mbEM-aNZTbiQkExrOaNWAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.173 [XNIO-1 task-1] mbEM-aNZTbiQkExrOaNWAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.173 [XNIO-1 task-1] mbEM-aNZTbiQkExrOaNWAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.173 [XNIO-1 task-1] mbEM-aNZTbiQkExrOaNWAw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.177 [XNIO-1 task-1] zxKWdLk-Re6dsybgktPcXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.177 [XNIO-1 task-1] zxKWdLk-Re6dsybgktPcXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.177 [XNIO-1 task-1] zxKWdLk-Re6dsybgktPcXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.177 [XNIO-1 task-1] zxKWdLk-Re6dsybgktPcXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.179 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8b15d584 +23:10:22.187 [XNIO-1 task-1] YHKOvgMfTNamw4NSmhgHUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.187 [XNIO-1 task-1] YHKOvgMfTNamw4NSmhgHUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.187 [XNIO-1 task-1] YHKOvgMfTNamw4NSmhgHUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.187 [XNIO-1 task-1] YHKOvgMfTNamw4NSmhgHUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.187 [XNIO-1 task-1] YHKOvgMfTNamw4NSmhgHUg DEBUG com.networknt.schema.TypeValidator debug - validate( "ca863491-fbe7-4c9a-8470-1b43a71314a7", "ca863491-fbe7-4c9a-8470-1b43a71314a7", refreshToken) +23:10:22.187 [XNIO-1 task-1] YHKOvgMfTNamw4NSmhgHUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ca863491-fbe7-4c9a-8470-1b43a71314a7 is not found.","severity":"ERROR"} +23:10:22.194 [XNIO-1 task-1] SDBSxcSmQyuxe_4gS39Kjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.194 [XNIO-1 task-1] SDBSxcSmQyuxe_4gS39Kjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.194 [XNIO-1 task-1] SDBSxcSmQyuxe_4gS39Kjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.194 [XNIO-1 task-1] SDBSxcSmQyuxe_4gS39Kjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.201 [XNIO-1 task-1] Wn-dMntwROKeMIgn-08DDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.202 [XNIO-1 task-1] Wn-dMntwROKeMIgn-08DDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.202 [XNIO-1 task-1] Wn-dMntwROKeMIgn-08DDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.203 [XNIO-1 task-1] Wn-dMntwROKeMIgn-08DDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.203 [XNIO-1 task-1] Wn-dMntwROKeMIgn-08DDA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:22.203 [XNIO-1 task-1] Wn-dMntwROKeMIgn-08DDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:22.208 [XNIO-1 task-1] NohLKB4bTlOhCAmn9M2UBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.208 [XNIO-1 task-1] NohLKB4bTlOhCAmn9M2UBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.208 [XNIO-1 task-1] NohLKB4bTlOhCAmn9M2UBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.208 [XNIO-1 task-1] NohLKB4bTlOhCAmn9M2UBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.208 [XNIO-1 task-1] NohLKB4bTlOhCAmn9M2UBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.214 [XNIO-1 task-1] 4KyCIF07RoCu032REj1fqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.214 [XNIO-1 task-1] 4KyCIF07RoCu032REj1fqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.214 [XNIO-1 task-1] 4KyCIF07RoCu032REj1fqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.214 [XNIO-1 task-1] 4KyCIF07RoCu032REj1fqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.214 [XNIO-1 task-1] 4KyCIF07RoCu032REj1fqw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.223 [XNIO-1 task-1] uTicgYTpS5O6aciIVVGigQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.223 [XNIO-1 task-1] uTicgYTpS5O6aciIVVGigQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.223 [XNIO-1 task-1] uTicgYTpS5O6aciIVVGigQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.223 [XNIO-1 task-1] uTicgYTpS5O6aciIVVGigQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.230 [XNIO-1 task-1] RMKVemw-S7GzwmL6C8uxgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.230 [XNIO-1 task-1] RMKVemw-S7GzwmL6C8uxgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.230 [XNIO-1 task-1] RMKVemw-S7GzwmL6C8uxgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.230 [XNIO-1 task-1] RMKVemw-S7GzwmL6C8uxgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.230 [XNIO-1 task-1] RMKVemw-S7GzwmL6C8uxgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.231 [XNIO-1 task-1] RMKVemw-S7GzwmL6C8uxgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.236 [XNIO-1 task-1] vJSfuU0FRQObus--duN7vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.236 [XNIO-1 task-1] vJSfuU0FRQObus--duN7vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.236 [XNIO-1 task-1] vJSfuU0FRQObus--duN7vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.236 [XNIO-1 task-1] vJSfuU0FRQObus--duN7vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.236 [XNIO-1 task-1] vJSfuU0FRQObus--duN7vg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.242 [XNIO-1 task-1] sgMqiAmpT-a0xTeJNmbh3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.242 [XNIO-1 task-1] sgMqiAmpT-a0xTeJNmbh3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.243 [XNIO-1 task-1] sgMqiAmpT-a0xTeJNmbh3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.243 [XNIO-1 task-1] sgMqiAmpT-a0xTeJNmbh3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.243 [XNIO-1 task-1] sgMqiAmpT-a0xTeJNmbh3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.250 [XNIO-1 task-1] mPsFBSs4SRiea2erjyz76A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.251 [XNIO-1 task-1] mPsFBSs4SRiea2erjyz76A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.251 [XNIO-1 task-1] mPsFBSs4SRiea2erjyz76A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.251 [XNIO-1 task-1] mPsFBSs4SRiea2erjyz76A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.251 [XNIO-1 task-1] mPsFBSs4SRiea2erjyz76A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.256 [XNIO-1 task-1] Y2AzjuCNStOKfS1i-P20cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.257 [XNIO-1 task-1] Y2AzjuCNStOKfS1i-P20cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.257 [XNIO-1 task-1] Y2AzjuCNStOKfS1i-P20cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.257 [XNIO-1 task-1] Y2AzjuCNStOKfS1i-P20cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.257 [XNIO-1 task-1] Y2AzjuCNStOKfS1i-P20cw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.265 [XNIO-1 task-1] GeLqrsU8SMS4x_9uVagSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.265 [XNIO-1 task-1] GeLqrsU8SMS4x_9uVagSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.265 [XNIO-1 task-1] GeLqrsU8SMS4x_9uVagSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.266 [XNIO-1 task-1] GeLqrsU8SMS4x_9uVagSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.266 [XNIO-1 task-1] GeLqrsU8SMS4x_9uVagSXA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.281 [XNIO-1 task-1] kDj5EaLFT5eQqu9aJkLK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.281 [XNIO-1 task-1] kDj5EaLFT5eQqu9aJkLK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.281 [XNIO-1 task-1] kDj5EaLFT5eQqu9aJkLK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.282 [XNIO-1 task-1] kDj5EaLFT5eQqu9aJkLK3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.290 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8a8f3bbe +23:10:22.291 [XNIO-1 task-1] 6IYaJ0RVRzmHB9rovkw5lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.291 [XNIO-1 task-1] 6IYaJ0RVRzmHB9rovkw5lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.291 [XNIO-1 task-1] 6IYaJ0RVRzmHB9rovkw5lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.291 [XNIO-1 task-1] 6IYaJ0RVRzmHB9rovkw5lA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.293 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8a8f3bbe +23:10:22.301 [XNIO-1 task-1] 4fVCSLRIR2GqIT5eue9--w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.302 [XNIO-1 task-1] 4fVCSLRIR2GqIT5eue9--w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.302 [XNIO-1 task-1] 4fVCSLRIR2GqIT5eue9--w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.302 [XNIO-1 task-1] 4fVCSLRIR2GqIT5eue9--w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.302 [XNIO-1 task-1] 4fVCSLRIR2GqIT5eue9--w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.310 [XNIO-1 task-1] bxgHASH3ToCEauoVvUlaTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab, base path is set to: null +23:10:22.310 [XNIO-1 task-1] bxgHASH3ToCEauoVvUlaTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.310 [XNIO-1 task-1] bxgHASH3ToCEauoVvUlaTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.310 [XNIO-1 task-1] bxgHASH3ToCEauoVvUlaTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab, base path is set to: null +23:10:22.311 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:58b46ef1 +23:10:22.311 [XNIO-1 task-1] bxgHASH3ToCEauoVvUlaTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.318 [XNIO-1 task-1] CkdOsoalQWSBI7ZtC0-hGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.318 [XNIO-1 task-1] CkdOsoalQWSBI7ZtC0-hGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.318 [XNIO-1 task-1] CkdOsoalQWSBI7ZtC0-hGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.318 [XNIO-1 task-1] CkdOsoalQWSBI7ZtC0-hGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.318 [XNIO-1 task-1] CkdOsoalQWSBI7ZtC0-hGA DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.318 [XNIO-1 task-1] CkdOsoalQWSBI7ZtC0-hGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.324 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ecc6045c-f9ea-48cb-a01c-b57e70447e4e +23:10:22.326 [XNIO-1 task-1] 8Tz_jQMATpmNhq5hxddoYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab, base path is set to: null +23:10:22.326 [XNIO-1 task-1] 8Tz_jQMATpmNhq5hxddoYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.326 [XNIO-1 task-1] 8Tz_jQMATpmNhq5hxddoYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.326 [XNIO-1 task-1] 8Tz_jQMATpmNhq5hxddoYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab, base path is set to: null +23:10:22.326 [XNIO-1 task-1] 8Tz_jQMATpmNhq5hxddoYA DEBUG com.networknt.schema.TypeValidator debug - validate( "9553c03c-a402-4137-b03a-972d0c4df2ab", "9553c03c-a402-4137-b03a-972d0c4df2ab", refreshToken) +23:10:22.326 [XNIO-1 task-1] 8Tz_jQMATpmNhq5hxddoYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9553c03c-a402-4137-b03a-972d0c4df2ab is not found.","severity":"ERROR"} +23:10:22.332 [XNIO-1 task-1] 7FQPIR3DR6K6EXRjpzG-Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.332 [XNIO-1 task-1] 7FQPIR3DR6K6EXRjpzG-Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.332 [XNIO-1 task-1] 7FQPIR3DR6K6EXRjpzG-Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.332 [XNIO-1 task-1] 7FQPIR3DR6K6EXRjpzG-Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.333 [XNIO-1 task-1] 7FQPIR3DR6K6EXRjpzG-Bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.341 [XNIO-1 task-1] snz6_7JPThyx1A0khvRoNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab, base path is set to: null +23:10:22.341 [XNIO-1 task-1] snz6_7JPThyx1A0khvRoNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.341 [XNIO-1 task-1] snz6_7JPThyx1A0khvRoNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.341 [XNIO-1 task-1] snz6_7JPThyx1A0khvRoNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab, base path is set to: null +23:10:22.341 [XNIO-1 task-1] snz6_7JPThyx1A0khvRoNg DEBUG com.networknt.schema.TypeValidator debug - validate( "9553c03c-a402-4137-b03a-972d0c4df2ab", "9553c03c-a402-4137-b03a-972d0c4df2ab", refreshToken) +23:10:22.341 [XNIO-1 task-1] snz6_7JPThyx1A0khvRoNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9553c03c-a402-4137-b03a-972d0c4df2ab is not found.","severity":"ERROR"} +23:10:22.343 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a9e74739 +23:10:22.344 [XNIO-1 task-1] DuJczDBGRQuhL1vroh9UQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.344 [XNIO-1 task-1] DuJczDBGRQuhL1vroh9UQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.344 [XNIO-1 task-1] DuJczDBGRQuhL1vroh9UQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.344 [XNIO-1 task-1] DuJczDBGRQuhL1vroh9UQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.344 [XNIO-1 task-1] DuJczDBGRQuhL1vroh9UQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.351 [XNIO-1 task-1] dOdCQ5-4QaSnqF13mG4oQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4, base path is set to: null +23:10:22.351 [XNIO-1 task-1] dOdCQ5-4QaSnqF13mG4oQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.351 [XNIO-1 task-1] dOdCQ5-4QaSnqF13mG4oQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.351 [XNIO-1 task-1] dOdCQ5-4QaSnqF13mG4oQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4, base path is set to: null +23:10:22.351 [XNIO-1 task-1] dOdCQ5-4QaSnqF13mG4oQw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4", "0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4", refreshToken) +23:10:22.362 [XNIO-1 task-1] nWJrxU9bRKyXh1HgNYO7fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.362 [XNIO-1 task-1] nWJrxU9bRKyXh1HgNYO7fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.362 [XNIO-1 task-1] nWJrxU9bRKyXh1HgNYO7fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.362 [XNIO-1 task-1] nWJrxU9bRKyXh1HgNYO7fA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.363 [XNIO-1 task-1] nWJrxU9bRKyXh1HgNYO7fA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.371 [XNIO-1 task-1] yIgW7MCuRsCRRgepA_f0Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.372 [XNIO-1 task-1] yIgW7MCuRsCRRgepA_f0Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.372 [XNIO-1 task-1] yIgW7MCuRsCRRgepA_f0Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.372 [XNIO-1 task-1] yIgW7MCuRsCRRgepA_f0Xg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.379 [XNIO-1 task-1] HVU0hhkIT5WO5o5L8qUKVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.379 [XNIO-1 task-1] HVU0hhkIT5WO5o5L8qUKVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.380 [XNIO-1 task-1] HVU0hhkIT5WO5o5L8qUKVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.380 [XNIO-1 task-1] HVU0hhkIT5WO5o5L8qUKVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.380 [XNIO-1 task-1] HVU0hhkIT5WO5o5L8qUKVA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.385 [XNIO-1 task-1] U5XTrNvTSCyBH7MyE743BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.385 [XNIO-1 task-1] U5XTrNvTSCyBH7MyE743BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.385 [XNIO-1 task-1] U5XTrNvTSCyBH7MyE743BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.385 [XNIO-1 task-1] U5XTrNvTSCyBH7MyE743BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.385 [XNIO-1 task-1] U5XTrNvTSCyBH7MyE743BA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.390 [XNIO-1 task-1] II8wt4PUQpCGgg8-F-u9bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.390 [XNIO-1 task-1] II8wt4PUQpCGgg8-F-u9bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.390 [XNIO-1 task-1] II8wt4PUQpCGgg8-F-u9bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.390 [XNIO-1 task-1] II8wt4PUQpCGgg8-F-u9bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.391 [XNIO-1 task-1] II8wt4PUQpCGgg8-F-u9bg DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:22.391 [XNIO-1 task-1] II8wt4PUQpCGgg8-F-u9bg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:22.394 [XNIO-1 task-1] PImPryVzSUmLalJs1poSCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.394 [XNIO-1 task-1] PImPryVzSUmLalJs1poSCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.394 [XNIO-1 task-1] PImPryVzSUmLalJs1poSCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.395 [XNIO-1 task-1] PImPryVzSUmLalJs1poSCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.395 [XNIO-1 task-1] PImPryVzSUmLalJs1poSCA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.397 [XNIO-1 task-1] SXDx_zlIRUS12etgvMXyzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.398 [XNIO-1 task-1] SXDx_zlIRUS12etgvMXyzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.398 [XNIO-1 task-1] SXDx_zlIRUS12etgvMXyzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.398 [XNIO-1 task-1] SXDx_zlIRUS12etgvMXyzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.398 [XNIO-1 task-1] SXDx_zlIRUS12etgvMXyzw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:22.398 [XNIO-1 task-1] SXDx_zlIRUS12etgvMXyzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:22.405 [XNIO-1 task-1] zivHF_ocSYeCTisnfS9Qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.406 [XNIO-1 task-1] zivHF_ocSYeCTisnfS9Qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.406 [XNIO-1 task-1] zivHF_ocSYeCTisnfS9Qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.407 [XNIO-1 task-1] zivHF_ocSYeCTisnfS9Qcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.414 [XNIO-1 task-1] ZWOW7AD3QpGE8PwnchQUGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.414 [XNIO-1 task-1] ZWOW7AD3QpGE8PwnchQUGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.414 [XNIO-1 task-1] ZWOW7AD3QpGE8PwnchQUGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.414 [XNIO-1 task-1] ZWOW7AD3QpGE8PwnchQUGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7, base path is set to: null +23:10:22.414 [XNIO-1 task-1] ZWOW7AD3QpGE8PwnchQUGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca863491-fbe7-4c9a-8470-1b43a71314a7", "ca863491-fbe7-4c9a-8470-1b43a71314a7", refreshToken) +23:10:22.414 [XNIO-1 task-1] ZWOW7AD3QpGE8PwnchQUGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ca863491-fbe7-4c9a-8470-1b43a71314a7 is not found.","severity":"ERROR"} +23:10:22.417 [XNIO-1 task-1] RnWcjsByRjqVGub64v418A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.417 [XNIO-1 task-1] RnWcjsByRjqVGub64v418A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.417 [XNIO-1 task-1] RnWcjsByRjqVGub64v418A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.417 [XNIO-1 task-1] RnWcjsByRjqVGub64v418A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.417 [XNIO-1 task-1] RnWcjsByRjqVGub64v418A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a0332a10-7919-4032-b06f-c7506d959444 +23:10:22.428 [XNIO-1 task-1] LcIIEqjdTcqfvjzFmbFefw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.428 [XNIO-1 task-1] LcIIEqjdTcqfvjzFmbFefw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.428 [XNIO-1 task-1] LcIIEqjdTcqfvjzFmbFefw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.428 [XNIO-1 task-1] LcIIEqjdTcqfvjzFmbFefw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.428 [XNIO-1 task-1] LcIIEqjdTcqfvjzFmbFefw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.439 [XNIO-1 task-1] X38UikgxRKOSDzOmorbbKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.439 [XNIO-1 task-1] X38UikgxRKOSDzOmorbbKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.439 [XNIO-1 task-1] X38UikgxRKOSDzOmorbbKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.439 [XNIO-1 task-1] X38UikgxRKOSDzOmorbbKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.439 [XNIO-1 task-1] X38UikgxRKOSDzOmorbbKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.445 [XNIO-1 task-1] n4oRlGsbRh-IQ8-oWGJRZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.445 [XNIO-1 task-1] n4oRlGsbRh-IQ8-oWGJRZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.445 [XNIO-1 task-1] n4oRlGsbRh-IQ8-oWGJRZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.445 [XNIO-1 task-1] n4oRlGsbRh-IQ8-oWGJRZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.445 [XNIO-1 task-1] n4oRlGsbRh-IQ8-oWGJRZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.452 [XNIO-1 task-1] _nYcqFMBRsmPY17QGxAUsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4 +23:10:22.452 [XNIO-1 task-1] _nYcqFMBRsmPY17QGxAUsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.452 [XNIO-1 task-1] _nYcqFMBRsmPY17QGxAUsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.452 [XNIO-1 task-1] _nYcqFMBRsmPY17QGxAUsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4 +23:10:22.452 [XNIO-1 task-1] _nYcqFMBRsmPY17QGxAUsQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4 +23:10:22.465 [XNIO-1 task-1] SBzFlMCWQAOutjkh6Sa1iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.465 [XNIO-1 task-1] SBzFlMCWQAOutjkh6Sa1iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.465 [XNIO-1 task-1] SBzFlMCWQAOutjkh6Sa1iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.465 [XNIO-1 task-1] SBzFlMCWQAOutjkh6Sa1iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0332a10-7919-4032-b06f-c7506d959444, base path is set to: null +23:10:22.465 [XNIO-1 task-1] SBzFlMCWQAOutjkh6Sa1iw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0332a10-7919-4032-b06f-c7506d959444", "a0332a10-7919-4032-b06f-c7506d959444", refreshToken) +23:10:22.465 [XNIO-1 task-1] SBzFlMCWQAOutjkh6Sa1iw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a0332a10-7919-4032-b06f-c7506d959444 is not found.","severity":"ERROR"} +23:10:22.469 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a9e74739 +23:10:22.472 [XNIO-1 task-1] a3mMOPD8TLSPy1G0LYN3pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.472 [XNIO-1 task-1] a3mMOPD8TLSPy1G0LYN3pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.472 [XNIO-1 task-1] a3mMOPD8TLSPy1G0LYN3pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.472 [XNIO-1 task-1] a3mMOPD8TLSPy1G0LYN3pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.472 [XNIO-1 task-1] a3mMOPD8TLSPy1G0LYN3pA DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.472 [XNIO-1 task-1] a3mMOPD8TLSPy1G0LYN3pA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.473 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:109b1fa6 +23:10:22.474 [XNIO-1 task-1] SAD9fKEyT_G1fU1x81iHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.474 [XNIO-1 task-1] SAD9fKEyT_G1fU1x81iHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.474 [XNIO-1 task-1] SAD9fKEyT_G1fU1x81iHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.474 [XNIO-1 task-1] SAD9fKEyT_G1fU1x81iHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.475 [XNIO-1 task-1] SAD9fKEyT_G1fU1x81iHog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.479 [XNIO-1 task-1] 2mIvvZnQQUOKTO-kGfDBPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.479 [XNIO-1 task-1] 2mIvvZnQQUOKTO-kGfDBPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.479 [XNIO-1 task-1] 2mIvvZnQQUOKTO-kGfDBPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +23:10:22.479 [XNIO-1 task-1] 2mIvvZnQQUOKTO-kGfDBPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.479 [XNIO-1 task-1] 2mIvvZnQQUOKTO-kGfDBPA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +23:10:22.493 [XNIO-1 task-1] 4sXv4ZyNRimz1Rjd0H08Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.493 [XNIO-1 task-1] 4sXv4ZyNRimz1Rjd0H08Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.493 [XNIO-1 task-1] 4sXv4ZyNRimz1Rjd0H08Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.493 [XNIO-1 task-1] 4sXv4ZyNRimz1Rjd0H08Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.493 [XNIO-1 task-1] 4sXv4ZyNRimz1Rjd0H08Fg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.496 [XNIO-1 task-1] sAoovP86TZOSyG1jlNmm_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.496 [XNIO-1 task-1] sAoovP86TZOSyG1jlNmm_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.496 [XNIO-1 task-1] sAoovP86TZOSyG1jlNmm_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.496 [XNIO-1 task-1] sAoovP86TZOSyG1jlNmm_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.496 [XNIO-1 task-1] sAoovP86TZOSyG1jlNmm_w DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.497 [XNIO-1 task-1] sAoovP86TZOSyG1jlNmm_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.501 [XNIO-1 task-1] 7qKNQtuiRsuf--u7iyWzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.501 [XNIO-1 task-1] 7qKNQtuiRsuf--u7iyWzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.501 [XNIO-1 task-1] 7qKNQtuiRsuf--u7iyWzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.501 [XNIO-1 task-1] 7qKNQtuiRsuf--u7iyWzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.501 [XNIO-1 task-1] 7qKNQtuiRsuf--u7iyWzDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.508 [XNIO-1 task-1] AfJW5_L5SzWWIU-CfLrthg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.508 [XNIO-1 task-1] AfJW5_L5SzWWIU-CfLrthg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.508 [XNIO-1 task-1] AfJW5_L5SzWWIU-CfLrthg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.508 [XNIO-1 task-1] AfJW5_L5SzWWIU-CfLrthg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.508 [XNIO-1 task-1] AfJW5_L5SzWWIU-CfLrthg DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.509 [XNIO-1 task-1] AfJW5_L5SzWWIU-CfLrthg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.516 [XNIO-1 task-1] Vfgxd4KnTn6-abN0DuREFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.516 [XNIO-1 task-1] Vfgxd4KnTn6-abN0DuREFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.516 [XNIO-1 task-1] Vfgxd4KnTn6-abN0DuREFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.516 [XNIO-1 task-1] Vfgxd4KnTn6-abN0DuREFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.516 [XNIO-1 task-1] Vfgxd4KnTn6-abN0DuREFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 +23:10:22.519 [XNIO-1 task-1] xU6IeaZiSVa8nXJ_GS81sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.519 [XNIO-1 task-1] xU6IeaZiSVa8nXJ_GS81sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.519 [XNIO-1 task-1] xU6IeaZiSVa8nXJ_GS81sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.520 [XNIO-1 task-1] xU6IeaZiSVa8nXJ_GS81sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.520 [XNIO-1 task-1] xU6IeaZiSVa8nXJ_GS81sw DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.520 [XNIO-1 task-1] xU6IeaZiSVa8nXJ_GS81sw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.523 [XNIO-1 task-1] nwUoZH0_S3aYXCl4WLnLPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.523 [XNIO-1 task-1] nwUoZH0_S3aYXCl4WLnLPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.523 [XNIO-1 task-1] nwUoZH0_S3aYXCl4WLnLPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.523 [XNIO-1 task-1] nwUoZH0_S3aYXCl4WLnLPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.525 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:109b1fa6 +23:10:22.532 [XNIO-1 task-1] Rk8OR6-WRpiEmOhhkBM5kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.532 [XNIO-1 task-1] Rk8OR6-WRpiEmOhhkBM5kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.532 [XNIO-1 task-1] Rk8OR6-WRpiEmOhhkBM5kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.533 [XNIO-1 task-1] Rk8OR6-WRpiEmOhhkBM5kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a070dd5d-af0a-4cd3-b1d1-b5163aa5f215, base path is set to: null +23:10:22.533 [XNIO-1 task-1] Rk8OR6-WRpiEmOhhkBM5kg DEBUG com.networknt.schema.TypeValidator debug - validate( "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", "a070dd5d-af0a-4cd3-b1d1-b5163aa5f215", refreshToken) +23:10:22.533 [XNIO-1 task-1] Rk8OR6-WRpiEmOhhkBM5kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a070dd5d-af0a-4cd3-b1d1-b5163aa5f215 is not found.","severity":"ERROR"} +23:10:22.540 [XNIO-1 task-1] Lpunx5CkTESSm023LTqixA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4, base path is set to: null +23:10:22.541 [XNIO-1 task-1] Lpunx5CkTESSm023LTqixA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +23:10:22.541 [XNIO-1 task-1] Lpunx5CkTESSm023LTqixA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +23:10:22.541 [XNIO-1 task-1] Lpunx5CkTESSm023LTqixA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4, base path is set to: null +23:10:22.542 [XNIO-1 task-1] Lpunx5CkTESSm023LTqixA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4", "0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4", refreshToken) +23:10:22.542 [XNIO-1 task-1] Lpunx5CkTESSm023LTqixA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0e3798d5-cd1c-4f17-bd6b-0c9ff3a073e4 is not found.","severity":"ERROR"} +23:10:22.547 [XNIO-1 task-1] DMWYBOuFQwK4T01vAkyZ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.547 [XNIO-1 task-1] DMWYBOuFQwK4T01vAkyZ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +23:10:22.547 [XNIO-1 task-1] DMWYBOuFQwK4T01vAkyZ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +23:10:22.547 [XNIO-1 task-1] DMWYBOuFQwK4T01vAkyZ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.548 [XNIO-1 task-1] DMWYBOuFQwK4T01vAkyZ2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:22.553 [XNIO-1 task-1] -QRtezJiRwWDyKINKWAfvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a4adb9a-0fbd-4b92-b158-bc428964ec06, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..f1abaae --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-service-1.log @@ -0,0 +1,3150 @@ +23:10:16.973 [XNIO-1 task-2] KB4SkJ9iRlyvi78ISldhXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8efbdfb1 +23:10:16.976 [XNIO-1 task-2] KB4SkJ9iRlyvi78ISldhXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:16.976 [XNIO-1 task-2] KB4SkJ9iRlyvi78ISldhXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:16.976 [XNIO-1 task-2] KB4SkJ9iRlyvi78ISldhXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8efbdfb1 +23:10:16.979 [XNIO-1 task-2] mZsbLm2ZSD-YW52OSDGK0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/284e2210, base path is set to: null +23:10:16.979 [XNIO-1 task-2] mZsbLm2ZSD-YW52OSDGK0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:16.979 [XNIO-1 task-2] mZsbLm2ZSD-YW52OSDGK0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:16.979 [XNIO-1 task-2] mZsbLm2ZSD-YW52OSDGK0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/284e2210, base path is set to: null +23:10:16.979 [XNIO-1 task-2] mZsbLm2ZSD-YW52OSDGK0g DEBUG com.networknt.schema.TypeValidator debug - validate( "284e2210", "284e2210", serviceId) +23:10:16.984 [XNIO-1 task-2] XxNKyzqaRkaoAmCusIjYoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:16.984 [XNIO-1 task-2] XxNKyzqaRkaoAmCusIjYoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:16.984 [XNIO-1 task-2] XxNKyzqaRkaoAmCusIjYoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:16.984 [XNIO-1 task-2] XxNKyzqaRkaoAmCusIjYoA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:16.995 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:16.995 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:16.996 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:16.996 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:16.996 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:16.996 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG com.networknt.schema.TypeValidator debug - validate( "dafde9de-5a0c-4139-a11d-b65eee186c08", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:16.996 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG com.networknt.schema.TypeValidator debug - validate( "284e2210", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:16.996 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:16.996 [XNIO-1 task-2] 4k0F76AWQl2SwOeCBTVf2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG com.networknt.schema.TypeValidator debug - validate( "dafde9de-5a0c-4139-a11d-b65eee186c08", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG com.networknt.schema.TypeValidator debug - validate( "284e2210", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.002 [XNIO-1 task-2] a35G4eD6TSuzT13yhuLYSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.009 [XNIO-1 task-2] PE4HSkkXRhCRadtvSEi4rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.009 [XNIO-1 task-2] PE4HSkkXRhCRadtvSEi4rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.009 [XNIO-1 task-2] PE4HSkkXRhCRadtvSEi4rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.009 [XNIO-1 task-2] PE4HSkkXRhCRadtvSEi4rA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG com.networknt.schema.TypeValidator debug - validate( "dafde9de-5a0c-4139-a11d-b65eee186c08", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG com.networknt.schema.TypeValidator debug - validate( "284e2210", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.019 [XNIO-1 task-2] LkT1f0sVSieuogclu8iTrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.034 [XNIO-1 task-2] sSrbSOpCTY2nHoCV6kVdQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8efbdfb1 +23:10:17.034 [XNIO-1 task-2] sSrbSOpCTY2nHoCV6kVdQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.034 [XNIO-1 task-2] sSrbSOpCTY2nHoCV6kVdQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.034 [XNIO-1 task-2] sSrbSOpCTY2nHoCV6kVdQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8efbdfb1 +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.045 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "64f2496e-2af4-40e9-aa7e-195abb8d", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.046 [XNIO-1 task-2] _eLuf5SlSO-yGosi2MMNpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.053 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.053 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.053 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.054 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.054 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.054 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.054 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.054 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG com.networknt.schema.TypeValidator debug - validate( "64f2496e-2af4-40e9-aa7e-195abb8d", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.054 [XNIO-1 task-2] zFNHNGedSVeB_4W1bU10_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.072 [XNIO-1 task-2] SkeiOHx8RICtjC5hMJDpXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.073 [XNIO-1 task-2] SkeiOHx8RICtjC5hMJDpXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.073 [XNIO-1 task-2] SkeiOHx8RICtjC5hMJDpXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.085 [XNIO-1 task-2] VfmUhncCTRem0o2ialvgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.085 [XNIO-1 task-2] VfmUhncCTRem0o2ialvgaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.085 [XNIO-1 task-2] VfmUhncCTRem0o2ialvgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.095 [XNIO-1 task-2] L7XFessYTlmbhTEE63WNJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d10674f, base path is set to: null +23:10:17.095 [XNIO-1 task-2] L7XFessYTlmbhTEE63WNJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.096 [XNIO-1 task-2] L7XFessYTlmbhTEE63WNJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.096 [XNIO-1 task-2] L7XFessYTlmbhTEE63WNJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d10674f, base path is set to: null +23:10:17.096 [XNIO-1 task-2] L7XFessYTlmbhTEE63WNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d10674f", "1d10674f", serviceId) +23:10:17.098 [XNIO-1 task-2] _lHm60OXTlSg-uHe_KU3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.098 [XNIO-1 task-2] _lHm60OXTlSg-uHe_KU3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.098 [XNIO-1 task-2] _lHm60OXTlSg-uHe_KU3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.098 [XNIO-1 task-2] _lHm60OXTlSg-uHe_KU3zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.103 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.103 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.103 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.104 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.104 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.104 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67a842f9-ae88-4ad6-a1a3-536d71b524f2", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.104 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d10674f", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.104 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.104 [XNIO-1 task-2] Bpf_M7sHQhS05sYZS4vZdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "dafde9de-5a0c-4139-a11d-b65eee186c08", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "284e2210", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.111 [XNIO-1 task-2] uaAErKBORyyPm5KuFphzNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"284e2210","serviceName":"64f2496e-2af4-40e9-aa7e-195abb8d","serviceDesc":"dafde9de-5a0c-4139-a11d-b65eee186c08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.119 [XNIO-1 task-2] xiiZY4UrRbaf1J_fQt49Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.119 [XNIO-1 task-2] xiiZY4UrRbaf1J_fQt49Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.119 [XNIO-1 task-2] xiiZY4UrRbaf1J_fQt49Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.127 [XNIO-1 task-2] JMWB9I0PSrCUtxRYE_kHWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b54f0e5d +23:10:17.127 [XNIO-1 task-2] JMWB9I0PSrCUtxRYE_kHWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.127 [XNIO-1 task-2] JMWB9I0PSrCUtxRYE_kHWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.127 [XNIO-1 task-2] JMWB9I0PSrCUtxRYE_kHWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b54f0e5d +23:10:17.132 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.133 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0ffa80ea-4398-4f08-af38-62cba19e7072 +23:10:17.135 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67a842f9-ae88-4ad6-a1a3-536d71b524f2", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d10674f", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.136 [XNIO-1 task-2] SWslgwgXQSG7NPb-KHCaQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d10674f","serviceName":"392c1ec5-e54f-46b2-aea2-d67bb5da","serviceDesc":"67a842f9-ae88-4ad6-a1a3-536d71b524f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.147 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.147 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.147 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.147 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.147 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.147 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG com.networknt.schema.TypeValidator debug - validate( "01355847-867a-4709-b211-ecf15b44b645", {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.148 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG com.networknt.schema.TypeValidator debug - validate( "8c90ce5e", {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.148 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.148 [XNIO-1 task-2] 8q6zL1CUR-KkTU1Psywzfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.156 [XNIO-1 task-2] S5jGSYpySH-kn3DoFZUX4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d10674f +23:10:17.157 [XNIO-1 task-2] S5jGSYpySH-kn3DoFZUX4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.157 [XNIO-1 task-2] S5jGSYpySH-kn3DoFZUX4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.157 [XNIO-1 task-2] S5jGSYpySH-kn3DoFZUX4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d10674f +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.159 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG com.networknt.schema.TypeValidator debug - validate( "41b16e09-acd5-4209-b2ce-b2c3f5cb", {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.160 [XNIO-1 task-2] vdl3PJCjScmo6AfYRXhSUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c90ce5e","serviceName":"41b16e09-acd5-4209-b2ce-b2c3f5cb","serviceDesc":"01355847-867a-4709-b211-ecf15b44b645","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.166 [XNIO-1 task-2] DextmtbFRy-p_wv6R-fJ_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.166 [XNIO-1 task-2] DextmtbFRy-p_wv6R-fJ_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.166 [XNIO-1 task-2] DextmtbFRy-p_wv6R-fJ_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.166 [XNIO-1 task-2] DextmtbFRy-p_wv6R-fJ_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.172 [XNIO-1 task-2] iyV9YmGMQyuy5_qpfm_p1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/284e2210, base path is set to: null +23:10:17.172 [XNIO-1 task-2] iyV9YmGMQyuy5_qpfm_p1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.172 [XNIO-1 task-2] iyV9YmGMQyuy5_qpfm_p1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.172 [XNIO-1 task-2] iyV9YmGMQyuy5_qpfm_p1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/284e2210, base path is set to: null +23:10:17.172 [XNIO-1 task-2] iyV9YmGMQyuy5_qpfm_p1w DEBUG com.networknt.schema.TypeValidator debug - validate( "284e2210", "284e2210", serviceId) +23:10:17.178 [XNIO-1 task-2] 0KSIJW3gRyigfksOuqegew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d10674f +23:10:17.178 [XNIO-1 task-2] 0KSIJW3gRyigfksOuqegew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.178 [XNIO-1 task-2] 0KSIJW3gRyigfksOuqegew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.178 [XNIO-1 task-2] 0KSIJW3gRyigfksOuqegew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d10674f +23:10:17.184 [XNIO-1 task-2] RqZHuzDvQTikQxL0_wT2pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c90ce5e, base path is set to: null +23:10:17.184 [XNIO-1 task-2] RqZHuzDvQTikQxL0_wT2pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.184 [XNIO-1 task-2] RqZHuzDvQTikQxL0_wT2pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.184 [XNIO-1 task-2] RqZHuzDvQTikQxL0_wT2pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c90ce5e, base path is set to: null +23:10:17.184 [XNIO-1 task-2] RqZHuzDvQTikQxL0_wT2pw DEBUG com.networknt.schema.TypeValidator debug - validate( "8c90ce5e", "8c90ce5e", serviceId) +23:10:17.193 [XNIO-1 task-2] poA8_coAQ36w0OongZYqGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.193 [XNIO-1 task-2] poA8_coAQ36w0OongZYqGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.193 [XNIO-1 task-2] poA8_coAQ36w0OongZYqGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.193 [XNIO-1 task-2] poA8_coAQ36w0OongZYqGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.197 [XNIO-1 task-2] k5Fx4j-EQu6tCE-E5MYp4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.197 [XNIO-1 task-2] k5Fx4j-EQu6tCE-E5MYp4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.197 [XNIO-1 task-2] k5Fx4j-EQu6tCE-E5MYp4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.198 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d49d97cb-b704-4d6c-b912-59c5ddcc8b1e +23:10:17.206 [XNIO-1 task-2] DuFGB1pgQ2utAGeAUdc55g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3117482a, base path is set to: null +23:10:17.206 [XNIO-1 task-2] DuFGB1pgQ2utAGeAUdc55g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.206 [XNIO-1 task-2] DuFGB1pgQ2utAGeAUdc55g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.206 [XNIO-1 task-2] DuFGB1pgQ2utAGeAUdc55g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3117482a, base path is set to: null +23:10:17.207 [XNIO-1 task-2] DuFGB1pgQ2utAGeAUdc55g DEBUG com.networknt.schema.TypeValidator debug - validate( "3117482a", "3117482a", serviceId) +23:10:17.209 [XNIO-1 task-2] hTlc47ztR5aLfGtOWjEmMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3117482a +23:10:17.209 [XNIO-1 task-2] hTlc47ztR5aLfGtOWjEmMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.209 [XNIO-1 task-2] hTlc47ztR5aLfGtOWjEmMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.209 [XNIO-1 task-2] hTlc47ztR5aLfGtOWjEmMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3117482a +23:10:17.216 [XNIO-1 task-2] 6evJLnuyRNO50M6EgPghOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.216 [XNIO-1 task-2] 6evJLnuyRNO50M6EgPghOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.216 [XNIO-1 task-2] 6evJLnuyRNO50M6EgPghOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.225 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.225 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.225 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.226 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.226 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.226 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.226 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.226 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG com.networknt.schema.TypeValidator debug - validate( "0d957159-674e-4fc5-8e6d-0c11edb8", {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.226 [XNIO-1 task-2] 0Mgfp4hfRM6T3UY7CbWn2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"20145ff9","serviceName":"0d957159-674e-4fc5-8e6d-0c11edb8","serviceDesc":"4ee66d76-5648-4402-8684-1bd25903be8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.235 [XNIO-1 task-2] edcFMkynSOyRSklrodbi-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.235 [XNIO-1 task-2] edcFMkynSOyRSklrodbi-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.236 [XNIO-1 task-2] edcFMkynSOyRSklrodbi-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.236 [XNIO-1 task-2] edcFMkynSOyRSklrodbi-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.240 [XNIO-1 task-2] Sw68p696QCOxtlwhQr_xSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.240 [XNIO-1 task-2] Sw68p696QCOxtlwhQr_xSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.240 [XNIO-1 task-2] Sw68p696QCOxtlwhQr_xSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.248 [XNIO-1 task-2] 6t9fU6l3Qeq5GxFfG41deQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.248 [XNIO-1 task-2] 6t9fU6l3Qeq5GxFfG41deQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.249 [XNIO-1 task-2] 6t9fU6l3Qeq5GxFfG41deQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.249 [XNIO-1 task-2] 6t9fU6l3Qeq5GxFfG41deQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.253 [XNIO-1 task-2] WMAor-B0Q7eHiF7tTLzb4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.255 [XNIO-1 task-2] WMAor-B0Q7eHiF7tTLzb4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.255 [XNIO-1 task-2] WMAor-B0Q7eHiF7tTLzb4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.262 [XNIO-1 task-2] DyKAaVKWTe2FRFNNL3a3KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/20145ff9, base path is set to: null +23:10:17.262 [XNIO-1 task-2] DyKAaVKWTe2FRFNNL3a3KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.262 [XNIO-1 task-2] DyKAaVKWTe2FRFNNL3a3KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.262 [XNIO-1 task-2] DyKAaVKWTe2FRFNNL3a3KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/20145ff9, base path is set to: null +23:10:17.263 [XNIO-1 task-2] DyKAaVKWTe2FRFNNL3a3KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "20145ff9", "20145ff9", serviceId) +23:10:17.270 [XNIO-1 task-2] fdmEl3LoSbObnRr1r6tNRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ed419a0, base path is set to: null +23:10:17.270 [XNIO-1 task-2] fdmEl3LoSbObnRr1r6tNRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.270 [XNIO-1 task-2] fdmEl3LoSbObnRr1r6tNRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.270 [XNIO-1 task-2] fdmEl3LoSbObnRr1r6tNRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ed419a0, base path is set to: null +23:10:17.270 [XNIO-1 task-2] fdmEl3LoSbObnRr1r6tNRA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ed419a0", "5ed419a0", serviceId) +23:10:17.273 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.273 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.273 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.274 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.274 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.274 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG com.networknt.schema.TypeValidator debug - validate( "ac396124-a7bf-4985-8826-23e918b328a0", {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.274 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG com.networknt.schema.TypeValidator debug - validate( "5ed419a0", {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.274 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.274 [XNIO-1 task-2] MvffeyhkSSq6ACAO9eIH6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5ed419a0","serviceName":"54966051-7d78-403f-a51e-2c379e77","serviceDesc":"ac396124-a7bf-4985-8826-23e918b328a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.281 [XNIO-1 task-2] 1m-pKOVWTJ6TRrAUUj7l2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8feb0ba6 +23:10:17.281 [XNIO-1 task-2] 1m-pKOVWTJ6TRrAUUj7l2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.281 [XNIO-1 task-2] 1m-pKOVWTJ6TRrAUUj7l2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.282 [XNIO-1 task-2] 1m-pKOVWTJ6TRrAUUj7l2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8feb0ba6 +23:10:17.285 [XNIO-1 task-2] 8cA63Mo8REalEX__TgZXzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ed419a0, base path is set to: null +23:10:17.285 [XNIO-1 task-2] 8cA63Mo8REalEX__TgZXzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.285 [XNIO-1 task-2] 8cA63Mo8REalEX__TgZXzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.285 [XNIO-1 task-2] 8cA63Mo8REalEX__TgZXzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ed419a0, base path is set to: null +23:10:17.285 [XNIO-1 task-2] 8cA63Mo8REalEX__TgZXzw DEBUG com.networknt.schema.TypeValidator debug - validate( "5ed419a0", "5ed419a0", serviceId) +23:10:17.292 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.292 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.292 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.292 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.292 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.292 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG com.networknt.schema.TypeValidator debug - validate( "f79b388f-4de4-43ec-874a-412faf79a896", {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.292 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG com.networknt.schema.TypeValidator debug - validate( "8feb0ba6", {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.293 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.293 [XNIO-1 task-2] -6OmCjyVTDaFFIJubQr6KA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8feb0ba6","serviceName":"d98b223a-42fc-4b06-9756-636cbc46","serviceDesc":"f79b388f-4de4-43ec-874a-412faf79a896","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.308 [XNIO-1 task-2] A56E9t1mTAmVqyEt3ucuqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8feb0ba6 +23:10:17.308 [XNIO-1 task-2] A56E9t1mTAmVqyEt3ucuqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.308 [XNIO-1 task-2] A56E9t1mTAmVqyEt3ucuqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.308 [XNIO-1 task-2] A56E9t1mTAmVqyEt3ucuqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8feb0ba6 +23:10:17.316 [XNIO-1 task-2] IONzqlW_QVOPhL3k3LwQog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.316 [XNIO-1 task-2] IONzqlW_QVOPhL3k3LwQog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.316 [XNIO-1 task-2] IONzqlW_QVOPhL3k3LwQog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.324 [XNIO-1 task-2] pXkO8VmZRnWZAIrpBhqpqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.324 [XNIO-1 task-2] pXkO8VmZRnWZAIrpBhqpqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.324 [XNIO-1 task-2] pXkO8VmZRnWZAIrpBhqpqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.331 [XNIO-1 task-2] YidU0_5zSOq0IKcndVMAfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/afb82226, base path is set to: null +23:10:17.332 [XNIO-1 task-2] YidU0_5zSOq0IKcndVMAfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.332 [XNIO-1 task-2] YidU0_5zSOq0IKcndVMAfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.332 [XNIO-1 task-2] YidU0_5zSOq0IKcndVMAfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/afb82226, base path is set to: null +23:10:17.332 [XNIO-1 task-2] YidU0_5zSOq0IKcndVMAfw DEBUG com.networknt.schema.TypeValidator debug - validate( "afb82226", "afb82226", serviceId) +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG com.networknt.schema.TypeValidator debug - validate( "afb82226", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.335 [XNIO-1 task-2] AoPPWgTgRyWxwcbY0AXIbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.342 [XNIO-1 task-2] OKFb7I7ETQK4eEkziUSxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dc38f819 +23:10:17.342 [XNIO-1 task-2] OKFb7I7ETQK4eEkziUSxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.342 [XNIO-1 task-2] OKFb7I7ETQK4eEkziUSxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.342 [XNIO-1 task-2] OKFb7I7ETQK4eEkziUSxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dc38f819 +23:10:17.344 [XNIO-1 task-2] XBUPQmYcSSOX5xgHfa8RDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/afb82226, base path is set to: null +23:10:17.344 [XNIO-1 task-2] XBUPQmYcSSOX5xgHfa8RDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.344 [XNIO-1 task-2] XBUPQmYcSSOX5xgHfa8RDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.344 [XNIO-1 task-2] XBUPQmYcSSOX5xgHfa8RDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/afb82226, base path is set to: null +23:10:17.345 [XNIO-1 task-2] XBUPQmYcSSOX5xgHfa8RDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "afb82226", "afb82226", serviceId) +23:10:17.347 [XNIO-1 task-2] voMALFUdSHKE3j6me7eM8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dc38f819 +23:10:17.347 [XNIO-1 task-2] voMALFUdSHKE3j6me7eM8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.347 [XNIO-1 task-2] voMALFUdSHKE3j6me7eM8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.347 [XNIO-1 task-2] voMALFUdSHKE3j6me7eM8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dc38f819 +23:10:17.354 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.354 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.354 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.355 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.355 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.355 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.355 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.355 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG com.networknt.schema.TypeValidator debug - validate( "36662eab-acab-4b87-864b-4caf12b5", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.355 [XNIO-1 task-2] 6wQ34tlRQQSHqU0frvtzUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.362 [XNIO-1 task-2] 0FcpsgdyQ56_7gb9boK7Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.362 [XNIO-1 task-2] 0FcpsgdyQ56_7gb9boK7Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.362 [XNIO-1 task-2] 0FcpsgdyQ56_7gb9boK7Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.375 [XNIO-1 task-2] SJtEAB1WQ8q_D-_OXyT9sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.378 [XNIO-1 task-2] SJtEAB1WQ8q_D-_OXyT9sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.378 [XNIO-1 task-2] SJtEAB1WQ8q_D-_OXyT9sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.378 [XNIO-1 task-2] SJtEAB1WQ8q_D-_OXyT9sg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.384 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.384 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.384 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.384 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.384 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.384 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.384 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.385 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "36662eab-acab-4b87-864b-4caf12b5", {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.385 [XNIO-1 task-2] hSfk_nEjRtm5TvNOaZhgUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afb82226","serviceName":"36662eab-acab-4b87-864b-4caf12b5","serviceDesc":"5ff8aebd-dcb6-49ec-817e-92e3aa33dd0a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.392 [XNIO-1 task-2] lwkCx0mMRfO2vYNXH_fxXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/afb82226, base path is set to: null +23:10:17.392 [XNIO-1 task-2] lwkCx0mMRfO2vYNXH_fxXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.392 [XNIO-1 task-2] lwkCx0mMRfO2vYNXH_fxXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.392 [XNIO-1 task-2] lwkCx0mMRfO2vYNXH_fxXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/afb82226, base path is set to: null +23:10:17.392 [XNIO-1 task-2] lwkCx0mMRfO2vYNXH_fxXA DEBUG com.networknt.schema.TypeValidator debug - validate( "afb82226", "afb82226", serviceId) +23:10:17.400 [XNIO-1 task-2] 7MAhTBxNQWm7CbEMAgcp9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.400 [XNIO-1 task-2] 7MAhTBxNQWm7CbEMAgcp9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.400 [XNIO-1 task-2] 7MAhTBxNQWm7CbEMAgcp9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.401 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:683a7e91 +23:10:17.406 [XNIO-1 task-2] 2fKne9-LTfmfhN7ZqLn5Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/683a7e91, base path is set to: null +23:10:17.406 [XNIO-1 task-2] 2fKne9-LTfmfhN7ZqLn5Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.406 [XNIO-1 task-2] 2fKne9-LTfmfhN7ZqLn5Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.406 [XNIO-1 task-2] 2fKne9-LTfmfhN7ZqLn5Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/683a7e91, base path is set to: null +23:10:17.406 [XNIO-1 task-2] 2fKne9-LTfmfhN7ZqLn5Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "683a7e91", "683a7e91", serviceId) +23:10:17.408 [XNIO-1 task-2] B5dD3-QkQtuWgmYI9DPibw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.408 [XNIO-1 task-2] B5dD3-QkQtuWgmYI9DPibw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.408 [XNIO-1 task-2] B5dD3-QkQtuWgmYI9DPibw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.408 [XNIO-1 task-2] B5dD3-QkQtuWgmYI9DPibw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.415 [XNIO-1 task-2] i_MhJZ5XS4Cz6432fOdKcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.415 [XNIO-1 task-2] i_MhJZ5XS4Cz6432fOdKcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.415 [XNIO-1 task-2] i_MhJZ5XS4Cz6432fOdKcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.422 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.422 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.422 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.423 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.423 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.423 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0b9c78f7-8acf-4324-a019-18bf208b680f", {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.423 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "afead30b", {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.423 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.423 [XNIO-1 task-2] -7Mv2j4GR32-i7anl-fBPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"afead30b","serviceName":"1f023555-74f3-44a1-8328-95efba91","serviceDesc":"0b9c78f7-8acf-4324-a019-18bf208b680f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.430 [XNIO-1 task-2] egXkEJ1dTz-auz7u2J170g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/683a7e91 +23:10:17.430 [XNIO-1 task-2] egXkEJ1dTz-auz7u2J170g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.430 [XNIO-1 task-2] egXkEJ1dTz-auz7u2J170g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.430 [XNIO-1 task-2] egXkEJ1dTz-auz7u2J170g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/683a7e91 +23:10:17.430 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:683a7e91 +23:10:17.435 [XNIO-1 task-2] kVzrBBFJRpuNfQaJPgWu-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.435 [XNIO-1 task-2] kVzrBBFJRpuNfQaJPgWu-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.436 [XNIO-1 task-2] kVzrBBFJRpuNfQaJPgWu-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.436 [XNIO-1 task-2] kVzrBBFJRpuNfQaJPgWu-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.445 [XNIO-1 task-2] Fr00bewrRTe9gAPyWF95oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.445 [XNIO-1 task-2] Fr00bewrRTe9gAPyWF95oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.446 [XNIO-1 task-2] Fr00bewrRTe9gAPyWF95oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.446 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f1478fc2 +23:10:17.446 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f1478fc2 +23:10:17.464 [XNIO-1 task-2] Acqv3tymRW6QNoZUqhwO6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.464 [XNIO-1 task-2] Acqv3tymRW6QNoZUqhwO6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.465 [XNIO-1 task-2] Acqv3tymRW6QNoZUqhwO6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.466 [XNIO-1 task-2] Acqv3tymRW6QNoZUqhwO6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.471 [XNIO-1 task-2] y-3Gw2lzTnGXmbWy7nGYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/956a7da6 +23:10:17.471 [XNIO-1 task-2] y-3Gw2lzTnGXmbWy7nGYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.471 [XNIO-1 task-2] y-3Gw2lzTnGXmbWy7nGYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.471 [XNIO-1 task-2] y-3Gw2lzTnGXmbWy7nGYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/956a7da6 +23:10:17.478 [XNIO-1 task-2] VF1C70RzTaejACkegOrjyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.478 [XNIO-1 task-2] VF1C70RzTaejACkegOrjyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.478 [XNIO-1 task-2] VF1C70RzTaejACkegOrjyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.479 [XNIO-1 task-2] VF1C70RzTaejACkegOrjyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.484 [XNIO-1 task-2] JaZ6S82jSf61QwnPWQVzug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f1478fc2, base path is set to: null +23:10:17.484 [XNIO-1 task-2] JaZ6S82jSf61QwnPWQVzug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.484 [XNIO-1 task-2] JaZ6S82jSf61QwnPWQVzug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.484 [XNIO-1 task-2] JaZ6S82jSf61QwnPWQVzug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f1478fc2, base path is set to: null +23:10:17.484 [XNIO-1 task-2] JaZ6S82jSf61QwnPWQVzug DEBUG com.networknt.schema.TypeValidator debug - validate( "f1478fc2", "f1478fc2", serviceId) +23:10:17.486 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f1478fc2 +23:10:17.493 [XNIO-1 task-2] M_RjTbSeQWS0y984uNlMpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/afead30b +23:10:17.493 [XNIO-1 task-2] M_RjTbSeQWS0y984uNlMpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.493 [XNIO-1 task-2] M_RjTbSeQWS0y984uNlMpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.493 [XNIO-1 task-2] M_RjTbSeQWS0y984uNlMpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/afead30b +23:10:17.501 [XNIO-1 task-2] vP8zlU0_SFuXwhWjZorV4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.502 [XNIO-1 task-2] vP8zlU0_SFuXwhWjZorV4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.502 [XNIO-1 task-2] vP8zlU0_SFuXwhWjZorV4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.503 [XNIO-1 task-2] vP8zlU0_SFuXwhWjZorV4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.507 [XNIO-1 task-2] yYrgIYXsQhe3QRGplmiYAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.507 [XNIO-1 task-2] yYrgIYXsQhe3QRGplmiYAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.508 [XNIO-1 task-2] yYrgIYXsQhe3QRGplmiYAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.508 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:457747b1 +23:10:17.508 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:457747b1 +23:10:17.515 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dd754d3a-0099-4004-87d1-846b200c2419 +23:10:17.518 [XNIO-1 task-2] aBh22OqgTkigroOV-BgmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.518 [XNIO-1 task-2] aBh22OqgTkigroOV-BgmqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.518 [XNIO-1 task-2] aBh22OqgTkigroOV-BgmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.533 [XNIO-1 task-2] 9FnYpPDMR0qRkYosM_BgKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/457747b1, base path is set to: null +23:10:17.534 [XNIO-1 task-2] 9FnYpPDMR0qRkYosM_BgKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.534 [XNIO-1 task-2] 9FnYpPDMR0qRkYosM_BgKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.534 [XNIO-1 task-2] 9FnYpPDMR0qRkYosM_BgKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/457747b1, base path is set to: null +23:10:17.534 [XNIO-1 task-2] 9FnYpPDMR0qRkYosM_BgKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "457747b1", "457747b1", serviceId) +23:10:17.535 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:457747b1 +23:10:17.540 [XNIO-1 task-2] uqf5Jpo8RSaIK-AqkoAp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/142c8914 +23:10:17.541 [XNIO-1 task-2] uqf5Jpo8RSaIK-AqkoAp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.541 [XNIO-1 task-2] uqf5Jpo8RSaIK-AqkoAp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.541 [XNIO-1 task-2] uqf5Jpo8RSaIK-AqkoAp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/142c8914 +23:10:17.551 [XNIO-1 task-2] TY18Rd0FTfiDCLO2M7uBbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.551 [XNIO-1 task-2] TY18Rd0FTfiDCLO2M7uBbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.552 [XNIO-1 task-2] TY18Rd0FTfiDCLO2M7uBbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.555 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:dd754d3a-0099-4004-87d1-846b200c2419 +23:10:17.561 [XNIO-1 task-2] o81lt05cSbCiNxbjZKHXAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa365158 +23:10:17.561 [XNIO-1 task-2] o81lt05cSbCiNxbjZKHXAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.562 [XNIO-1 task-2] o81lt05cSbCiNxbjZKHXAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.562 [XNIO-1 task-2] o81lt05cSbCiNxbjZKHXAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa365158 +23:10:17.564 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.564 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.564 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.565 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.565 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.565 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.565 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.565 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG com.networknt.schema.TypeValidator debug - validate( "70ac628f-12b3-4e30-b1b6-4026ce55", {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.565 [XNIO-1 task-2] QSag7XdXQUaDtVbcuof0fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.571 [XNIO-1 task-2] Zj7ba5XBQ--EaF1kCiBAow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.572 [XNIO-1 task-2] Zj7ba5XBQ--EaF1kCiBAow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.572 [XNIO-1 task-2] Zj7ba5XBQ--EaF1kCiBAow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.572 [XNIO-1 task-2] Zj7ba5XBQ--EaF1kCiBAow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.577 [XNIO-1 task-2] CbEMjgyyT4agoIIuhlo5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa365158, base path is set to: null +23:10:17.577 [XNIO-1 task-2] CbEMjgyyT4agoIIuhlo5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.577 [XNIO-1 task-2] CbEMjgyyT4agoIIuhlo5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.577 [XNIO-1 task-2] CbEMjgyyT4agoIIuhlo5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa365158, base path is set to: null +23:10:17.577 [XNIO-1 task-2] CbEMjgyyT4agoIIuhlo5ig DEBUG com.networknt.schema.TypeValidator debug - validate( "fa365158", "fa365158", serviceId) +23:10:17.579 [XNIO-1 task-2] fD6h5tGZSw6ptdfoiJSbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa365158 +23:10:17.580 [XNIO-1 task-2] fD6h5tGZSw6ptdfoiJSbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.580 [XNIO-1 task-2] fD6h5tGZSw6ptdfoiJSbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.580 [XNIO-1 task-2] fD6h5tGZSw6ptdfoiJSbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa365158 +23:10:17.582 [XNIO-1 task-2] USq5yUjtRcavi2WYVQv1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.583 [XNIO-1 task-2] USq5yUjtRcavi2WYVQv1ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.583 [XNIO-1 task-2] USq5yUjtRcavi2WYVQv1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "70ac628f-12b3-4e30-b1b6-4026ce55", {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.590 [XNIO-1 task-2] T2Ib29S6S_qmSuFhSuCw-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fa365158","serviceName":"70ac628f-12b3-4e30-b1b6-4026ce55","serviceDesc":"8bca230d-e55f-49b9-be9f-e1b76c76da4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.597 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.597 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.597 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.598 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.598 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.598 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.598 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.598 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG com.networknt.schema.TypeValidator debug - validate( "699977bf-ca8d-419c-92fb-d280ff65", {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.598 [XNIO-1 task-2] zM2cZoFbSAi736c2_MEBJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1326c029","serviceName":"699977bf-ca8d-419c-92fb-d280ff65","serviceDesc":"544516f3-f369-4e2d-89ec-f51e78ae93b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.611 [XNIO-1 task-2] O1nvk9Q6TMSTW9nYgrhRlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.611 [XNIO-1 task-2] O1nvk9Q6TMSTW9nYgrhRlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.611 [XNIO-1 task-2] O1nvk9Q6TMSTW9nYgrhRlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.611 [XNIO-1 task-2] O1nvk9Q6TMSTW9nYgrhRlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.616 [XNIO-1 task-2] 5nAXS17PSHu7ebQ5zJ_bCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.616 [XNIO-1 task-2] 5nAXS17PSHu7ebQ5zJ_bCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.616 [XNIO-1 task-2] 5nAXS17PSHu7ebQ5zJ_bCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.624 [XNIO-1 task-2] dH0Kxc4EQqOLYb2wQBDRDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1326c029, base path is set to: null +23:10:17.624 [XNIO-1 task-2] dH0Kxc4EQqOLYb2wQBDRDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.624 [XNIO-1 task-2] dH0Kxc4EQqOLYb2wQBDRDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.624 [XNIO-1 task-2] dH0Kxc4EQqOLYb2wQBDRDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1326c029, base path is set to: null +23:10:17.624 [XNIO-1 task-2] dH0Kxc4EQqOLYb2wQBDRDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1326c029", "1326c029", serviceId) +23:10:17.626 [XNIO-1 task-2] TnPJGBr9RlW5dH6Hb8cV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.626 [XNIO-1 task-2] TnPJGBr9RlW5dH6Hb8cV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.626 [XNIO-1 task-2] TnPJGBr9RlW5dH6Hb8cV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.633 [XNIO-1 task-2] Bdr_gNdQQu2jnvuBT0OqRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.633 [XNIO-1 task-2] Bdr_gNdQQu2jnvuBT0OqRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.634 [XNIO-1 task-2] Bdr_gNdQQu2jnvuBT0OqRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.642 [XNIO-1 task-2] UkmRwp_wRQ2BLWNv36_EgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1326c029, base path is set to: null +23:10:17.642 [XNIO-1 task-2] UkmRwp_wRQ2BLWNv36_EgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.642 [XNIO-1 task-2] UkmRwp_wRQ2BLWNv36_EgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.643 [XNIO-1 task-2] UkmRwp_wRQ2BLWNv36_EgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1326c029, base path is set to: null +23:10:17.643 [XNIO-1 task-2] UkmRwp_wRQ2BLWNv36_EgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1326c029", "1326c029", serviceId) +23:10:17.653 [XNIO-1 task-2] 86bazJ5BTBmhEP4TSIlj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/208a6740 +23:10:17.653 [XNIO-1 task-2] 86bazJ5BTBmhEP4TSIlj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.653 [XNIO-1 task-2] 86bazJ5BTBmhEP4TSIlj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.653 [XNIO-1 task-2] 86bazJ5BTBmhEP4TSIlj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/208a6740 +23:10:17.660 [XNIO-1 task-2] d2oQxy1KT8-qlvW2BBfIJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.662 [XNIO-1 task-2] d2oQxy1KT8-qlvW2BBfIJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.662 [XNIO-1 task-2] d2oQxy1KT8-qlvW2BBfIJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.662 [XNIO-1 task-2] d2oQxy1KT8-qlvW2BBfIJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.662 [XNIO-1 task-2] d2oQxy1KT8-qlvW2BBfIJA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8dafde", "5b8dafde", serviceId) +23:10:17.664 [XNIO-1 task-2] uIaUy0trTM6wZeNkQ4gDmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/439fc792 +23:10:17.664 [XNIO-1 task-2] uIaUy0trTM6wZeNkQ4gDmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.664 [XNIO-1 task-2] uIaUy0trTM6wZeNkQ4gDmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.664 [XNIO-1 task-2] uIaUy0trTM6wZeNkQ4gDmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/439fc792 +23:10:17.670 [XNIO-1 task-2] fVTMpDs_Teizl7voTezDCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa365158, base path is set to: null +23:10:17.670 [XNIO-1 task-2] fVTMpDs_Teizl7voTezDCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.670 [XNIO-1 task-2] fVTMpDs_Teizl7voTezDCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.670 [XNIO-1 task-2] fVTMpDs_Teizl7voTezDCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa365158, base path is set to: null +23:10:17.671 [XNIO-1 task-2] fVTMpDs_Teizl7voTezDCg DEBUG com.networknt.schema.TypeValidator debug - validate( "fa365158", "fa365158", serviceId) +23:10:17.683 [XNIO-1 task-2] uqGNmlXNQ4SFXE_3Cvehkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8dafde +23:10:17.683 [XNIO-1 task-2] uqGNmlXNQ4SFXE_3Cvehkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.683 [XNIO-1 task-2] uqGNmlXNQ4SFXE_3Cvehkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.683 [XNIO-1 task-2] uqGNmlXNQ4SFXE_3Cvehkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8dafde +23:10:17.685 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "01b198ab-ac10-48a9-b72c-7e6d9e53", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.686 [XNIO-1 task-2] QWGpSyPIRO6GkXrow8S9Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.692 [XNIO-1 task-2] 5YIbf0EcQAyjt0ToHT6gYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.694 [XNIO-1 task-2] 5YIbf0EcQAyjt0ToHT6gYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.694 [XNIO-1 task-2] 5YIbf0EcQAyjt0ToHT6gYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.694 [XNIO-1 task-2] 5YIbf0EcQAyjt0ToHT6gYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.694 [XNIO-1 task-2] 5YIbf0EcQAyjt0ToHT6gYA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8dafde", "5b8dafde", serviceId) +23:10:17.697 [XNIO-1 task-2] Ick9HULmQECDNo8EycvzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.697 [XNIO-1 task-2] Ick9HULmQECDNo8EycvzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.697 [XNIO-1 task-2] Ick9HULmQECDNo8EycvzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.697 [XNIO-1 task-2] Ick9HULmQECDNo8EycvzUg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.703 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.703 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.704 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.704 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.704 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.704 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1ac9f617-8643-4135-8faf-8885332d4c14", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.704 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8dafde", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.704 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.704 [XNIO-1 task-2] iTbycGJ_Sq2JYfEezPQKVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.713 [XNIO-1 task-2] cO7M-mX5TviHRJL-d_0JOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.713 [XNIO-1 task-2] cO7M-mX5TviHRJL-d_0JOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.714 [XNIO-1 task-2] cO7M-mX5TviHRJL-d_0JOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.721 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.721 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.721 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.722 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.722 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.722 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1ac9f617-8643-4135-8faf-8885332d4c14", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.722 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8dafde", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.722 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.722 [XNIO-1 task-2] Xwxrlfz5Qdq5sOcsaxDS_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.728 [XNIO-1 task-2] J-B-FzpbQjSwxkf6PrnzcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/792e98cb +23:10:17.728 [XNIO-1 task-2] J-B-FzpbQjSwxkf6PrnzcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.728 [XNIO-1 task-2] J-B-FzpbQjSwxkf6PrnzcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.729 [XNIO-1 task-2] J-B-FzpbQjSwxkf6PrnzcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/792e98cb +23:10:17.736 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.736 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.736 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.737 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.737 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.737 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.737 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.737 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG com.networknt.schema.TypeValidator debug - validate( "01b198ab-ac10-48a9-b72c-7e6d9e53", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.737 [XNIO-1 task-2] zGImvGxXTJiTOs0IFNoDfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.744 [XNIO-1 task-2] D4eqjSCASNyPDZvY7aiBYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.745 [XNIO-1 task-2] D4eqjSCASNyPDZvY7aiBYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.745 [XNIO-1 task-2] D4eqjSCASNyPDZvY7aiBYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.757 [XNIO-1 task-2] mbjwf7lEQs28lECZ27IkpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.757 [XNIO-1 task-2] mbjwf7lEQs28lECZ27IkpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.757 [XNIO-1 task-2] mbjwf7lEQs28lECZ27IkpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.757 [XNIO-1 task-2] mbjwf7lEQs28lECZ27IkpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.757 [XNIO-1 task-2] mbjwf7lEQs28lECZ27IkpA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8dafde", "5b8dafde", serviceId) +23:10:17.762 [XNIO-1 task-2] V-qWlgrwTYiGdawu8ssO3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.762 [XNIO-1 task-2] V-qWlgrwTYiGdawu8ssO3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.762 [XNIO-1 task-2] V-qWlgrwTYiGdawu8ssO3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.762 [XNIO-1 task-2] V-qWlgrwTYiGdawu8ssO3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.767 [XNIO-1 task-2] yHXRoy4zQVGqn-BQGPyCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8dafde +23:10:17.767 [XNIO-1 task-2] yHXRoy4zQVGqn-BQGPyCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.767 [XNIO-1 task-2] yHXRoy4zQVGqn-BQGPyCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.767 [XNIO-1 task-2] yHXRoy4zQVGqn-BQGPyCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8dafde +23:10:17.770 [XNIO-1 task-2] bqCS6EzWScKkazX1Bqe9nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d94ad7e3, base path is set to: null +23:10:17.770 [XNIO-1 task-2] bqCS6EzWScKkazX1Bqe9nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.770 [XNIO-1 task-2] bqCS6EzWScKkazX1Bqe9nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.770 [XNIO-1 task-2] bqCS6EzWScKkazX1Bqe9nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d94ad7e3, base path is set to: null +23:10:17.770 [XNIO-1 task-2] bqCS6EzWScKkazX1Bqe9nA DEBUG com.networknt.schema.TypeValidator debug - validate( "d94ad7e3", "d94ad7e3", serviceId) +23:10:17.772 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.772 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.772 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.773 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.773 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.773 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG com.networknt.schema.TypeValidator debug - validate( "1ac9f617-8643-4135-8faf-8885332d4c14", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.773 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8dafde", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.773 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.773 [XNIO-1 task-2] SIuBaIWORbaHeGgHKej3vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.781 [XNIO-1 task-2] FeNAiprUTLelLB2PNeFnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.781 [XNIO-1 task-2] FeNAiprUTLelLB2PNeFnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.781 [XNIO-1 task-2] FeNAiprUTLelLB2PNeFnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.788 [XNIO-1 task-2] hzd-_qkaT5S4AxzHON7Gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.788 [XNIO-1 task-2] hzd-_qkaT5S4AxzHON7Gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.788 [XNIO-1 task-2] hzd-_qkaT5S4AxzHON7Gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.795 [XNIO-1 task-2] TrYlKO90SJy0WPZo6xfLiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.795 [XNIO-1 task-2] TrYlKO90SJy0WPZo6xfLiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.796 [XNIO-1 task-2] TrYlKO90SJy0WPZo6xfLiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.796 [XNIO-1 task-2] TrYlKO90SJy0WPZo6xfLiw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.800 [XNIO-1 task-2] ny-qFccDSuOZ2rmY7vkFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.800 [XNIO-1 task-2] ny-qFccDSuOZ2rmY7vkFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.800 [XNIO-1 task-2] ny-qFccDSuOZ2rmY7vkFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.806 [XNIO-1 task-2] suD9KmvQSOCHBwXbB0kRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ca0fb893 +23:10:17.806 [XNIO-1 task-2] suD9KmvQSOCHBwXbB0kRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.806 [XNIO-1 task-2] suD9KmvQSOCHBwXbB0kRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.806 [XNIO-1 task-2] suD9KmvQSOCHBwXbB0kRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ca0fb893 +23:10:17.808 [XNIO-1 task-2] eBuqado9RnmZaqMUwG-TbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca0fb893, base path is set to: null +23:10:17.808 [XNIO-1 task-2] eBuqado9RnmZaqMUwG-TbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.809 [XNIO-1 task-2] eBuqado9RnmZaqMUwG-TbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.809 [XNIO-1 task-2] eBuqado9RnmZaqMUwG-TbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca0fb893, base path is set to: null +23:10:17.809 [XNIO-1 task-2] eBuqado9RnmZaqMUwG-TbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca0fb893", "ca0fb893", serviceId) +23:10:17.817 [XNIO-1 task-2] QfL5OVtgRa-1PrHYYD5mPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0b511157 +23:10:17.817 [XNIO-1 task-2] QfL5OVtgRa-1PrHYYD5mPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.817 [XNIO-1 task-2] QfL5OVtgRa-1PrHYYD5mPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.818 [XNIO-1 task-2] QfL5OVtgRa-1PrHYYD5mPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0b511157 +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG com.networknt.schema.TypeValidator debug - validate( "01b198ab-ac10-48a9-b72c-7e6d9e53", {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:17.820 [XNIO-1 task-2] XIa5cxVHT0CHmZtHalIBew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5b8dafde","serviceName":"01b198ab-ac10-48a9-b72c-7e6d9e53","serviceDesc":"1ac9f617-8643-4135-8faf-8885332d4c14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.851 [XNIO-1 task-2] UhiaK1fcQyO3atpUAq6_lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d94ad7e3, base path is set to: null +23:10:17.851 [XNIO-1 task-2] UhiaK1fcQyO3atpUAq6_lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.852 [XNIO-1 task-2] UhiaK1fcQyO3atpUAq6_lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.852 [XNIO-1 task-2] UhiaK1fcQyO3atpUAq6_lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d94ad7e3, base path is set to: null +23:10:17.852 [XNIO-1 task-2] UhiaK1fcQyO3atpUAq6_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "d94ad7e3", "d94ad7e3", serviceId) +23:10:17.854 [XNIO-1 task-2] QhTYMdZtSC2U0cmrdN8LkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.855 [XNIO-1 task-2] QhTYMdZtSC2U0cmrdN8LkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.855 [XNIO-1 task-2] QhTYMdZtSC2U0cmrdN8LkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.855 [XNIO-1 task-2] QhTYMdZtSC2U0cmrdN8LkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG com.networknt.schema.TypeValidator debug - validate( "41c1caa6-1b30-4049-8a1a-27ba57685f42", {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG com.networknt.schema.TypeValidator debug - validate( "8bd69cf9", {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:17.863 [XNIO-1 task-2] Wm9E7A_1QHm-B8X5OCtJOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:17.875 [XNIO-1 task-2] --ucfRrPRB2dcT1ZtCRmfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.875 [XNIO-1 task-2] --ucfRrPRB2dcT1ZtCRmfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.875 [XNIO-1 task-2] --ucfRrPRB2dcT1ZtCRmfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.881 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4b36536a-ae8d-4b99-955e-db4859539f14 +23:10:17.885 [XNIO-1 task-2] hUNz9RDfT7iZWOxnC9daXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.885 [XNIO-1 task-2] hUNz9RDfT7iZWOxnC9daXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.886 [XNIO-1 task-2] hUNz9RDfT7iZWOxnC9daXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.887 [XNIO-1 task-2] hUNz9RDfT7iZWOxnC9daXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5b8dafde, base path is set to: null +23:10:17.887 [XNIO-1 task-2] hUNz9RDfT7iZWOxnC9daXg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b8dafde", "5b8dafde", serviceId) +23:10:17.890 [XNIO-1 task-2] gnEaf1bcQ1Wb1bgCinGdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0b511157 +23:10:17.890 [XNIO-1 task-2] gnEaf1bcQ1Wb1bgCinGdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.890 [XNIO-1 task-2] gnEaf1bcQ1Wb1bgCinGdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.890 [XNIO-1 task-2] gnEaf1bcQ1Wb1bgCinGdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0b511157 +23:10:17.901 [XNIO-1 task-2] QqGx8BuaT3OnK01JTzGNDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.903 [XNIO-1 task-2] QqGx8BuaT3OnK01JTzGNDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.903 [XNIO-1 task-2] QqGx8BuaT3OnK01JTzGNDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.903 [XNIO-1 task-2] QqGx8BuaT3OnK01JTzGNDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.917 [XNIO-1 task-2] bLFTjGu6ROuPHnOAglGogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.917 [XNIO-1 task-2] bLFTjGu6ROuPHnOAglGogw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.917 [XNIO-1 task-2] bLFTjGu6ROuPHnOAglGogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.917 [XNIO-1 task-2] bLFTjGu6ROuPHnOAglGogw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.923 [XNIO-1 task-2] N5uta3EHTnGFR74HklL-bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.923 [XNIO-1 task-2] N5uta3EHTnGFR74HklL-bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.923 [XNIO-1 task-2] N5uta3EHTnGFR74HklL-bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.923 [XNIO-1 task-2] N5uta3EHTnGFR74HklL-bA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.932 [XNIO-1 task-2] 61pnilUnT4uRPC1xeN_LGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/22673ebf, base path is set to: null +23:10:17.932 [XNIO-1 task-2] 61pnilUnT4uRPC1xeN_LGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.932 [XNIO-1 task-2] 61pnilUnT4uRPC1xeN_LGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.933 [XNIO-1 task-2] 61pnilUnT4uRPC1xeN_LGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/22673ebf, base path is set to: null +23:10:17.933 [XNIO-1 task-2] 61pnilUnT4uRPC1xeN_LGw DEBUG com.networknt.schema.TypeValidator debug - validate( "22673ebf", "22673ebf", serviceId) +23:10:17.942 [XNIO-1 task-2] ik1xRtsJTSKgBC5EYuSSjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.942 [XNIO-1 task-2] ik1xRtsJTSKgBC5EYuSSjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.942 [XNIO-1 task-2] ik1xRtsJTSKgBC5EYuSSjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.942 [XNIO-1 task-2] ik1xRtsJTSKgBC5EYuSSjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:17.948 [XNIO-1 task-2] p-2pYRpVQ6uLTb8R30wyxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.948 [XNIO-1 task-2] p-2pYRpVQ6uLTb8R30wyxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.948 [XNIO-1 task-2] p-2pYRpVQ6uLTb8R30wyxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.953 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cda768bf-2382-422c-aa9e-2965e5699730 +23:10:17.954 [XNIO-1 task-2] gjboCHrjQV6ncBkkFx9MRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.954 [XNIO-1 task-2] gjboCHrjQV6ncBkkFx9MRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.954 [XNIO-1 task-2] gjboCHrjQV6ncBkkFx9MRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.955 [XNIO-1 task-2] gjboCHrjQV6ncBkkFx9MRw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:17.960 [XNIO-1 task-2] 6Bzg0ZCkQjGYqVslvCAzxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.960 [XNIO-1 task-2] 6Bzg0ZCkQjGYqVslvCAzxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.960 [XNIO-1 task-2] 6Bzg0ZCkQjGYqVslvCAzxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:17.971 [XNIO-1 task-2] 6b8GMBblS5KXD8evcawAvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d94ad7e3, base path is set to: null +23:10:17.971 [XNIO-1 task-2] 6b8GMBblS5KXD8evcawAvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:17.971 [XNIO-1 task-2] 6b8GMBblS5KXD8evcawAvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:17.971 [XNIO-1 task-2] 6b8GMBblS5KXD8evcawAvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d94ad7e3, base path is set to: null +23:10:17.972 [XNIO-1 task-2] 6b8GMBblS5KXD8evcawAvA DEBUG com.networknt.schema.TypeValidator debug - validate( "d94ad7e3", "d94ad7e3", serviceId) +23:10:17.983 [XNIO-1 task-2] FQKTiTJCQUSEvYu6USIJzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8dafde +23:10:17.983 [XNIO-1 task-2] FQKTiTJCQUSEvYu6USIJzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:17.983 [XNIO-1 task-2] FQKTiTJCQUSEvYu6USIJzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:17.983 [XNIO-1 task-2] FQKTiTJCQUSEvYu6USIJzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5b8dafde +23:10:17.999 [XNIO-1 task-2] WfjkzsonRKSLO1GJR35wWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.000 [XNIO-1 task-2] WfjkzsonRKSLO1GJR35wWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.000 [XNIO-1 task-2] WfjkzsonRKSLO1GJR35wWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.012 [XNIO-1 task-2] DvYdsPUZQrGbASoM8WSyqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.012 [XNIO-1 task-2] DvYdsPUZQrGbASoM8WSyqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.012 [XNIO-1 task-2] DvYdsPUZQrGbASoM8WSyqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.017 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a860649 +23:10:18.018 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a860649 +23:10:18.020 [XNIO-1 task-2] -xS3uBZWSwG-q8-J6rH52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57dd1ac7 +23:10:18.020 [XNIO-1 task-2] -xS3uBZWSwG-q8-J6rH52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.020 [XNIO-1 task-2] -xS3uBZWSwG-q8-J6rH52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.021 [XNIO-1 task-2] -xS3uBZWSwG-q8-J6rH52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57dd1ac7 +23:10:18.023 [XNIO-1 task-2] pFucL53lQ1eWrycLfdL_mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.023 [XNIO-1 task-2] pFucL53lQ1eWrycLfdL_mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.023 [XNIO-1 task-2] pFucL53lQ1eWrycLfdL_mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.033 [XNIO-1 task-2] -wDtNn3sSl6pjyA9JCRlzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/57dd1ac7, base path is set to: null +23:10:18.034 [XNIO-1 task-2] -wDtNn3sSl6pjyA9JCRlzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.034 [XNIO-1 task-2] -wDtNn3sSl6pjyA9JCRlzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.034 [XNIO-1 task-2] -wDtNn3sSl6pjyA9JCRlzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/57dd1ac7, base path is set to: null +23:10:18.034 [XNIO-1 task-2] -wDtNn3sSl6pjyA9JCRlzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "57dd1ac7", "57dd1ac7", serviceId) +23:10:18.043 [XNIO-1 task-2] INeXuiM1QjmnPgPYnqgRUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.043 [XNIO-1 task-2] INeXuiM1QjmnPgPYnqgRUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.044 [XNIO-1 task-2] INeXuiM1QjmnPgPYnqgRUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.044 [XNIO-1 task-2] INeXuiM1QjmnPgPYnqgRUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.048 [XNIO-1 task-2] DtjllSa6T_q2xkDJXw1Blw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.049 [XNIO-1 task-2] DtjllSa6T_q2xkDJXw1Blw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.049 [XNIO-1 task-2] DtjllSa6T_q2xkDJXw1Blw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.049 [XNIO-1 task-2] DtjllSa6T_q2xkDJXw1Blw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.054 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG com.networknt.schema.TypeValidator debug - validate( "23774007-e313-4be5-868d-7928f1a3", {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.055 [XNIO-1 task-2] zECbFKWoSZuTSmB7Ht0XMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8bd69cf9","serviceName":"23774007-e313-4be5-868d-7928f1a3","serviceDesc":"41c1caa6-1b30-4049-8a1a-27ba57685f42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.073 [XNIO-1 task-2] waFJ4CEARwikg2Gnic9pBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5c60704d, base path is set to: null +23:10:18.073 [XNIO-1 task-2] waFJ4CEARwikg2Gnic9pBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.073 [XNIO-1 task-2] waFJ4CEARwikg2Gnic9pBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.073 [XNIO-1 task-2] waFJ4CEARwikg2Gnic9pBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5c60704d, base path is set to: null +23:10:18.073 [XNIO-1 task-2] waFJ4CEARwikg2Gnic9pBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c60704d", "5c60704d", serviceId) +23:10:18.077 [XNIO-1 task-2] riGVDudpQci8w6dDgT_CGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.077 [XNIO-1 task-2] riGVDudpQci8w6dDgT_CGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.077 [XNIO-1 task-2] riGVDudpQci8w6dDgT_CGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.077 [XNIO-1 task-2] riGVDudpQci8w6dDgT_CGg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.091 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG com.networknt.schema.TypeValidator debug - validate( "cbd0f34f-ca12-4a08-80c7-a9e5f8e12134", {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c60704d", {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.092 [XNIO-1 task-2] R932-D86QRe-GkABOtzAhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5c60704d","serviceName":"c3d1e497-9b41-457d-b3e1-c1f1f6e3","serviceDesc":"cbd0f34f-ca12-4a08-80c7-a9e5f8e12134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.099 [XNIO-1 task-2] 1LuAa_-JSdCy3eeknn29dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c60704d +23:10:18.099 [XNIO-1 task-2] 1LuAa_-JSdCy3eeknn29dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.099 [XNIO-1 task-2] 1LuAa_-JSdCy3eeknn29dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.099 [XNIO-1 task-2] 1LuAa_-JSdCy3eeknn29dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c60704d +23:10:18.102 [XNIO-1 task-2] jNulXB3BRumEmLOKPkS_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8bd69cf9, base path is set to: null +23:10:18.102 [XNIO-1 task-2] jNulXB3BRumEmLOKPkS_qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.102 [XNIO-1 task-2] jNulXB3BRumEmLOKPkS_qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.102 [XNIO-1 task-2] jNulXB3BRumEmLOKPkS_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8bd69cf9, base path is set to: null +23:10:18.102 [XNIO-1 task-2] jNulXB3BRumEmLOKPkS_qw DEBUG com.networknt.schema.TypeValidator debug - validate( "8bd69cf9", "8bd69cf9", serviceId) +23:10:18.109 [XNIO-1 task-2] 6GWH0Ev4TDaWq2atd-4VPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.109 [XNIO-1 task-2] 6GWH0Ev4TDaWq2atd-4VPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.109 [XNIO-1 task-2] 6GWH0Ev4TDaWq2atd-4VPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.115 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.115 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.115 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.116 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.116 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.116 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.116 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.116 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "454c68e7-0427-4f4b-9a92-4bb6b783", {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.116 [XNIO-1 task-2] JejAnMSxQpi7dbYZchM4Dg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e241ceb8","serviceName":"454c68e7-0427-4f4b-9a92-4bb6b783","serviceDesc":"e1a90db3-6014-4d17-90eb-bd1f2c51ce23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.122 [XNIO-1 task-2] ans7G3vsRNGog_I-b5KmTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac2599aa, base path is set to: null +23:10:18.123 [XNIO-1 task-2] ans7G3vsRNGog_I-b5KmTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.123 [XNIO-1 task-2] ans7G3vsRNGog_I-b5KmTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.123 [XNIO-1 task-2] ans7G3vsRNGog_I-b5KmTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac2599aa, base path is set to: null +23:10:18.123 [XNIO-1 task-2] ans7G3vsRNGog_I-b5KmTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ac2599aa", "ac2599aa", serviceId) +23:10:18.128 [XNIO-1 task-2] UYhUVOY4QTqxSMQrGglkTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ac2599aa +23:10:18.128 [XNIO-1 task-2] UYhUVOY4QTqxSMQrGglkTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.128 [XNIO-1 task-2] UYhUVOY4QTqxSMQrGglkTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.128 [XNIO-1 task-2] UYhUVOY4QTqxSMQrGglkTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ac2599aa +23:10:18.141 [XNIO-1 task-2] nSHIE0y1SQG-XuGmeva81w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5bdd60d4, base path is set to: null +23:10:18.143 [XNIO-1 task-2] nSHIE0y1SQG-XuGmeva81w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.143 [XNIO-1 task-2] nSHIE0y1SQG-XuGmeva81w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.143 [XNIO-1 task-2] nSHIE0y1SQG-XuGmeva81w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5bdd60d4, base path is set to: null +23:10:18.143 [XNIO-1 task-2] nSHIE0y1SQG-XuGmeva81w DEBUG com.networknt.schema.TypeValidator debug - validate( "5bdd60d4", "5bdd60d4", serviceId) +23:10:18.152 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.152 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.153 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.154 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.154 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.154 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f691d93-c74d-4841-bf4c-6359f9a12a47", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.154 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG com.networknt.schema.TypeValidator debug - validate( "9140db42", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.154 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.154 [XNIO-1 task-2] tMw0RlW9SwqTPMyhlhGjjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.166 [XNIO-1 task-2] dK18Ko0KTc26T_P4kod9eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e241ceb8 +23:10:18.166 [XNIO-1 task-2] dK18Ko0KTc26T_P4kod9eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.166 [XNIO-1 task-2] dK18Ko0KTc26T_P4kod9eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.166 [XNIO-1 task-2] dK18Ko0KTc26T_P4kod9eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e241ceb8 +23:10:18.170 [XNIO-1 task-2] kcrOlqhfQhaAA7gImcg_5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.170 [XNIO-1 task-2] kcrOlqhfQhaAA7gImcg_5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.170 [XNIO-1 task-2] kcrOlqhfQhaAA7gImcg_5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.170 [XNIO-1 task-2] kcrOlqhfQhaAA7gImcg_5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.176 [XNIO-1 task-2] aEJD4rIfTlCi4PrSaLf-4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e241ceb8, base path is set to: null +23:10:18.176 [XNIO-1 task-2] aEJD4rIfTlCi4PrSaLf-4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.176 [XNIO-1 task-2] aEJD4rIfTlCi4PrSaLf-4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.177 [XNIO-1 task-2] aEJD4rIfTlCi4PrSaLf-4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e241ceb8, base path is set to: null +23:10:18.177 [XNIO-1 task-2] aEJD4rIfTlCi4PrSaLf-4w DEBUG com.networknt.schema.TypeValidator debug - validate( "e241ceb8", "e241ceb8", serviceId) +23:10:18.186 [XNIO-1 task-2] _IWzAuUARByT9U9-T4mngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.186 [XNIO-1 task-2] _IWzAuUARByT9U9-T4mngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.186 [XNIO-1 task-2] _IWzAuUARByT9U9-T4mngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.199 [XNIO-1 task-2] ah5cJkRWSUOWaQbPX3Tsig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.202 [XNIO-1 task-2] ah5cJkRWSUOWaQbPX3Tsig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.202 [XNIO-1 task-2] ah5cJkRWSUOWaQbPX3Tsig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.202 [XNIO-1 task-2] ah5cJkRWSUOWaQbPX3Tsig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.214 [XNIO-1 task-2] KfKh4R3wTv-1VzOz-Pe6sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9d62b7c0, base path is set to: null +23:10:18.214 [XNIO-1 task-2] KfKh4R3wTv-1VzOz-Pe6sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.214 [XNIO-1 task-2] KfKh4R3wTv-1VzOz-Pe6sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.215 [XNIO-1 task-2] KfKh4R3wTv-1VzOz-Pe6sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9d62b7c0, base path is set to: null +23:10:18.215 [XNIO-1 task-2] KfKh4R3wTv-1VzOz-Pe6sw DEBUG com.networknt.schema.TypeValidator debug - validate( "9d62b7c0", "9d62b7c0", serviceId) +23:10:18.218 [XNIO-1 task-2] Su5KWmlkQgKug5B9Az_CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c60704d +23:10:18.218 [XNIO-1 task-2] Su5KWmlkQgKug5B9Az_CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.218 [XNIO-1 task-2] Su5KWmlkQgKug5B9Az_CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.219 [XNIO-1 task-2] Su5KWmlkQgKug5B9Az_CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c60704d +23:10:18.228 [XNIO-1 task-2] tLIuWGJVTrCMS3SM0MKAiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9140db42, base path is set to: null +23:10:18.228 [XNIO-1 task-2] tLIuWGJVTrCMS3SM0MKAiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.228 [XNIO-1 task-2] tLIuWGJVTrCMS3SM0MKAiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.228 [XNIO-1 task-2] tLIuWGJVTrCMS3SM0MKAiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9140db42, base path is set to: null +23:10:18.228 [XNIO-1 task-2] tLIuWGJVTrCMS3SM0MKAiA DEBUG com.networknt.schema.TypeValidator debug - validate( "9140db42", "9140db42", serviceId) +23:10:18.235 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.235 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.236 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.236 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.236 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.236 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4f691d93-c74d-4841-bf4c-6359f9a12a47", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.236 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9140db42", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.236 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.236 [XNIO-1 task-2] SOkWSoXSR0eiBAFbTdDY9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.244 [XNIO-1 task-2] 5822UsG1SH2FotXZT6zAHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.244 [XNIO-1 task-2] 5822UsG1SH2FotXZT6zAHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.245 [XNIO-1 task-2] 5822UsG1SH2FotXZT6zAHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.249 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:277d064a +23:10:18.254 [XNIO-1 task-2] bbCq_CG4SzqVzBAdpo8yWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9140db42, base path is set to: null +23:10:18.254 [XNIO-1 task-2] bbCq_CG4SzqVzBAdpo8yWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.254 [XNIO-1 task-2] bbCq_CG4SzqVzBAdpo8yWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.254 [XNIO-1 task-2] bbCq_CG4SzqVzBAdpo8yWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9140db42, base path is set to: null +23:10:18.254 [XNIO-1 task-2] bbCq_CG4SzqVzBAdpo8yWg DEBUG com.networknt.schema.TypeValidator debug - validate( "9140db42", "9140db42", serviceId) +23:10:18.260 [XNIO-1 task-2] Q_oW_OXWRGS1NSIgrUPtgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.260 [XNIO-1 task-2] Q_oW_OXWRGS1NSIgrUPtgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.260 [XNIO-1 task-2] Q_oW_OXWRGS1NSIgrUPtgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.260 [XNIO-1 task-2] Q_oW_OXWRGS1NSIgrUPtgQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.265 [XNIO-1 task-2] bsVh1NIWRba5W-DwsY7KzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/277d064a +23:10:18.265 [XNIO-1 task-2] bsVh1NIWRba5W-DwsY7KzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.265 [XNIO-1 task-2] bsVh1NIWRba5W-DwsY7KzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.265 [XNIO-1 task-2] bsVh1NIWRba5W-DwsY7KzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/277d064a +23:10:18.265 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:277d064a +23:10:18.269 [XNIO-1 task-2] lZUJdQCBSJSk4cZ2GIyW_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.270 [XNIO-1 task-2] lZUJdQCBSJSk4cZ2GIyW_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.270 [XNIO-1 task-2] lZUJdQCBSJSk4cZ2GIyW_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.279 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "c5082a8d-fd43-45ee-9c79-f43e2793", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.280 [XNIO-1 task-2] gUCAAtB7Qm2aaPmBW1pi1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.288 [XNIO-1 task-2] Nh7rMxPsS3GypUxaiF0z0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/16f4aaf0, base path is set to: null +23:10:18.289 [XNIO-1 task-2] Nh7rMxPsS3GypUxaiF0z0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.289 [XNIO-1 task-2] Nh7rMxPsS3GypUxaiF0z0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.289 [XNIO-1 task-2] Nh7rMxPsS3GypUxaiF0z0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/16f4aaf0, base path is set to: null +23:10:18.289 [XNIO-1 task-2] Nh7rMxPsS3GypUxaiF0z0w DEBUG com.networknt.schema.TypeValidator debug - validate( "16f4aaf0", "16f4aaf0", serviceId) +23:10:18.294 [XNIO-1 task-2] zh_MtjRCSuyb15y4IsDY9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.294 [XNIO-1 task-2] zh_MtjRCSuyb15y4IsDY9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.294 [XNIO-1 task-2] zh_MtjRCSuyb15y4IsDY9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.300 [XNIO-1 task-2] dbn0eRGWS7KzJDQtFArmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d62b7c0 +23:10:18.300 [XNIO-1 task-2] dbn0eRGWS7KzJDQtFArmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.300 [XNIO-1 task-2] dbn0eRGWS7KzJDQtFArmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.300 [XNIO-1 task-2] dbn0eRGWS7KzJDQtFArmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d62b7c0 +23:10:18.306 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG com.networknt.schema.TypeValidator debug - validate( "be9e0dab-7270-4164-8315-404342bd", {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.307 [XNIO-1 task-2] GCn3mvC3RJmi3o-gKPcsFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"16f4aaf0","serviceName":"be9e0dab-7270-4164-8315-404342bd","serviceDesc":"d7cc8b91-f65a-4daa-89a7-4a6051f6845b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.319 [XNIO-1 task-2] 9B2Q-5erSNW6lOuieGU-qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.320 [XNIO-1 task-2] 9B2Q-5erSNW6lOuieGU-qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.320 [XNIO-1 task-2] 9B2Q-5erSNW6lOuieGU-qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.327 [XNIO-1 task-2] auEilqk6QDGpe2mnndDj5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/16f4aaf0, base path is set to: null +23:10:18.328 [XNIO-1 task-2] auEilqk6QDGpe2mnndDj5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.328 [XNIO-1 task-2] auEilqk6QDGpe2mnndDj5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.328 [XNIO-1 task-2] auEilqk6QDGpe2mnndDj5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/16f4aaf0, base path is set to: null +23:10:18.328 [XNIO-1 task-2] auEilqk6QDGpe2mnndDj5A DEBUG com.networknt.schema.TypeValidator debug - validate( "16f4aaf0", "16f4aaf0", serviceId) +23:10:18.336 [XNIO-1 task-2] VNQBxz5ZQWO1MeN0ZxcA-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.336 [XNIO-1 task-2] VNQBxz5ZQWO1MeN0ZxcA-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.336 [XNIO-1 task-2] VNQBxz5ZQWO1MeN0ZxcA-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG com.networknt.schema.TypeValidator debug - validate( "dab8b27b-4b9f-48a4-902b-025adbe253ca", {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG com.networknt.schema.TypeValidator debug - validate( "6f754280", {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.344 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.345 [XNIO-1 task-2] 5kw3QSucT12YDmWIMZh8WA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6f754280","serviceName":"02aaa009-d081-4df7-b38d-c1d7fa5e","serviceDesc":"dab8b27b-4b9f-48a4-902b-025adbe253ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.360 [XNIO-1 task-2] V2mKZPOeSZCuoN1OEzkayA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.360 [XNIO-1 task-2] V2mKZPOeSZCuoN1OEzkayA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.360 [XNIO-1 task-2] V2mKZPOeSZCuoN1OEzkayA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.370 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.370 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.371 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.371 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.371 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.371 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f691d93-c74d-4841-bf4c-6359f9a12a47", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.371 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9140db42", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.371 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.371 [XNIO-1 task-2] _hugFUNuQvqt0-NMO1L_LQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9140db42","serviceName":"c5082a8d-fd43-45ee-9c79-f43e2793","serviceDesc":"4f691d93-c74d-4841-bf4c-6359f9a12a47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.381 [XNIO-1 task-2] JsSGvyIVQaCq9pAfK3fUiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.381 [XNIO-1 task-2] JsSGvyIVQaCq9pAfK3fUiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.382 [XNIO-1 task-2] JsSGvyIVQaCq9pAfK3fUiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.389 [XNIO-1 task-2] MG1idcXWQGm5NP_m3lqBpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.389 [XNIO-1 task-2] MG1idcXWQGm5NP_m3lqBpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.389 [XNIO-1 task-2] MG1idcXWQGm5NP_m3lqBpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.390 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c55d4afc +23:10:18.398 [XNIO-1 task-2] va3MtetARxCx7JaIC_4L-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c55d4afc, base path is set to: null +23:10:18.399 [XNIO-1 task-2] va3MtetARxCx7JaIC_4L-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.399 [XNIO-1 task-2] va3MtetARxCx7JaIC_4L-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.399 [XNIO-1 task-2] va3MtetARxCx7JaIC_4L-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c55d4afc, base path is set to: null +23:10:18.399 [XNIO-1 task-2] va3MtetARxCx7JaIC_4L-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c55d4afc", "c55d4afc", serviceId) +23:10:18.400 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c55d4afc +23:10:18.407 [XNIO-1 task-2] iaUmUStCQ0eN4_u08MBTGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6f754280 +23:10:18.407 [XNIO-1 task-2] iaUmUStCQ0eN4_u08MBTGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.407 [XNIO-1 task-2] iaUmUStCQ0eN4_u08MBTGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.407 [XNIO-1 task-2] iaUmUStCQ0eN4_u08MBTGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6f754280 +23:10:18.418 [XNIO-1 task-2] D4TTCbRTQYOnRfK7Aqvj1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.418 [XNIO-1 task-2] D4TTCbRTQYOnRfK7Aqvj1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.418 [XNIO-1 task-2] D4TTCbRTQYOnRfK7Aqvj1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.431 [XNIO-1 task-2] YqaqTzq7T_66QrqR20F3QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c230e98, base path is set to: null +23:10:18.432 [XNIO-1 task-2] YqaqTzq7T_66QrqR20F3QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.432 [XNIO-1 task-2] YqaqTzq7T_66QrqR20F3QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.432 [XNIO-1 task-2] YqaqTzq7T_66QrqR20F3QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c230e98, base path is set to: null +23:10:18.432 [XNIO-1 task-2] YqaqTzq7T_66QrqR20F3QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7c230e98", "7c230e98", serviceId) +23:10:18.447 [XNIO-1 task-2] HW19TT0OTJ6DR7DmQn7DrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9140db42 +23:10:18.447 [XNIO-1 task-2] HW19TT0OTJ6DR7DmQn7DrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.447 [XNIO-1 task-2] HW19TT0OTJ6DR7DmQn7DrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.447 [XNIO-1 task-2] HW19TT0OTJ6DR7DmQn7DrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9140db42 +23:10:18.456 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.457 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.457 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.458 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.458 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.458 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.458 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.458 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG com.networknt.schema.TypeValidator debug - validate( "5681c6d7-12c6-43d3-a5f2-e85ea0ea", {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.458 [XNIO-1 task-2] 26seQWtlQ3SfnaUgZjtcUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.467 [XNIO-1 task-2] cw2vIVVZRSS6yDBX_YBw9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b2551f1a, base path is set to: null +23:10:18.467 [XNIO-1 task-2] cw2vIVVZRSS6yDBX_YBw9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.467 [XNIO-1 task-2] cw2vIVVZRSS6yDBX_YBw9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.467 [XNIO-1 task-2] cw2vIVVZRSS6yDBX_YBw9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b2551f1a, base path is set to: null +23:10:18.467 [XNIO-1 task-2] cw2vIVVZRSS6yDBX_YBw9A DEBUG com.networknt.schema.TypeValidator debug - validate( "b2551f1a", "b2551f1a", serviceId) +23:10:18.476 [XNIO-1 task-2] h7IG9v5kTHuLi6VfH8CBKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.476 [XNIO-1 task-2] h7IG9v5kTHuLi6VfH8CBKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.476 [XNIO-1 task-2] h7IG9v5kTHuLi6VfH8CBKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.476 [XNIO-1 task-2] h7IG9v5kTHuLi6VfH8CBKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.488 [XNIO-1 task-2] XE0Xc6OQQ_qGOBnGZpUezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.488 [XNIO-1 task-2] XE0Xc6OQQ_qGOBnGZpUezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.488 [XNIO-1 task-2] XE0Xc6OQQ_qGOBnGZpUezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.497 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:caf085fc +23:10:18.505 [XNIO-1 task-2] buAz-fhySK2NOFk-Q9T8bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.505 [XNIO-1 task-2] buAz-fhySK2NOFk-Q9T8bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.505 [XNIO-1 task-2] buAz-fhySK2NOFk-Q9T8bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.505 [XNIO-1 task-2] buAz-fhySK2NOFk-Q9T8bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.514 [XNIO-1 task-2] J_cHsfxuRqqQA-bebCna2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9de8e9e2, base path is set to: null +23:10:18.514 [XNIO-1 task-2] J_cHsfxuRqqQA-bebCna2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.514 [XNIO-1 task-2] J_cHsfxuRqqQA-bebCna2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.514 [XNIO-1 task-2] J_cHsfxuRqqQA-bebCna2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9de8e9e2, base path is set to: null +23:10:18.514 [XNIO-1 task-2] J_cHsfxuRqqQA-bebCna2A DEBUG com.networknt.schema.TypeValidator debug - validate( "9de8e9e2", "9de8e9e2", serviceId) +23:10:18.532 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG com.networknt.schema.TypeValidator debug - validate( "67144f66", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.533 [XNIO-1 task-2] hgU_hROzT2Kah2ppq2XPWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.554 [XNIO-1 task-2] 1OInB7vAR6GuYUUnktZ_Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.554 [XNIO-1 task-2] 1OInB7vAR6GuYUUnktZ_Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.554 [XNIO-1 task-2] 1OInB7vAR6GuYUUnktZ_Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.555 [XNIO-1 task-2] 1OInB7vAR6GuYUUnktZ_Iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.569 [XNIO-1 task-2] zQpYit3GRr2Bfv_lukVFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/349c699f +23:10:18.569 [XNIO-1 task-2] zQpYit3GRr2Bfv_lukVFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.569 [XNIO-1 task-2] zQpYit3GRr2Bfv_lukVFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.569 [XNIO-1 task-2] zQpYit3GRr2Bfv_lukVFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/349c699f +23:10:18.572 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.572 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.572 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.572 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.572 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.572 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.573 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.573 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG com.networknt.schema.TypeValidator debug - validate( "5681c6d7-12c6-43d3-a5f2-e85ea0ea", {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.573 [XNIO-1 task-2] qgD2bS8HQVmPNQ6Q35TG3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"349c699f","serviceName":"5681c6d7-12c6-43d3-a5f2-e85ea0ea","serviceDesc":"348271e2-a74e-4d1f-8c30-07ea7144585b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.584 [XNIO-1 task-2] sbRgobrgQkapR5aEhly9sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/349c699f, base path is set to: null +23:10:18.586 [XNIO-1 task-2] sbRgobrgQkapR5aEhly9sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.586 [XNIO-1 task-2] sbRgobrgQkapR5aEhly9sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.586 [XNIO-1 task-2] sbRgobrgQkapR5aEhly9sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/349c699f, base path is set to: null +23:10:18.586 [XNIO-1 task-2] sbRgobrgQkapR5aEhly9sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "349c699f", "349c699f", serviceId) +23:10:18.594 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.594 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.594 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.594 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.594 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.594 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG com.networknt.schema.TypeValidator debug - validate( "4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.595 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG com.networknt.schema.TypeValidator debug - validate( "67144f66", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.595 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.595 [XNIO-1 task-2] ORbI4InTSKum8Hv9Vl9w5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"67144f66","serviceName":"cb1fcc24-3d01-497c-aa3a-659502bd","serviceDesc":"4a4b23c3-a893-4f9d-8da9-2c9d3e6005cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.601 [XNIO-1 task-2] WaquFv9gTXGQXSpiia7S9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1700f5e7 +23:10:18.601 [XNIO-1 task-2] WaquFv9gTXGQXSpiia7S9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.601 [XNIO-1 task-2] WaquFv9gTXGQXSpiia7S9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.601 [XNIO-1 task-2] WaquFv9gTXGQXSpiia7S9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1700f5e7 +23:10:18.610 [XNIO-1 task-2] 3gYKhrOISjmgDNwMc5F1uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/67144f66, base path is set to: null +23:10:18.610 [XNIO-1 task-2] 3gYKhrOISjmgDNwMc5F1uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.610 [XNIO-1 task-2] 3gYKhrOISjmgDNwMc5F1uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.611 [XNIO-1 task-2] 3gYKhrOISjmgDNwMc5F1uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/67144f66, base path is set to: null +23:10:18.611 [XNIO-1 task-2] 3gYKhrOISjmgDNwMc5F1uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67144f66", "67144f66", serviceId) +23:10:18.622 [XNIO-1 task-2] cpcp5WhhTpKY8pkw3Qe8qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.622 [XNIO-1 task-2] cpcp5WhhTpKY8pkw3Qe8qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.622 [XNIO-1 task-2] cpcp5WhhTpKY8pkw3Qe8qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.638 [XNIO-1 task-2] FIysh07XRJe2VPCQxyn7Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5fc93fc7, base path is set to: null +23:10:18.638 [XNIO-1 task-2] FIysh07XRJe2VPCQxyn7Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.638 [XNIO-1 task-2] FIysh07XRJe2VPCQxyn7Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.638 [XNIO-1 task-2] FIysh07XRJe2VPCQxyn7Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5fc93fc7, base path is set to: null +23:10:18.638 [XNIO-1 task-2] FIysh07XRJe2VPCQxyn7Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "5fc93fc7", "5fc93fc7", serviceId) +23:10:18.640 [XNIO-1 task-2] K5rvSo9QS5GTO56ONEYKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5fc93fc7 +23:10:18.640 [XNIO-1 task-2] K5rvSo9QS5GTO56ONEYKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.640 [XNIO-1 task-2] K5rvSo9QS5GTO56ONEYKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.641 [XNIO-1 task-2] K5rvSo9QS5GTO56ONEYKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5fc93fc7 +23:10:18.649 [XNIO-1 task-2] XoVykjF6Q42hzXDtfnDQqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.649 [XNIO-1 task-2] XoVykjF6Q42hzXDtfnDQqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.649 [XNIO-1 task-2] XoVykjF6Q42hzXDtfnDQqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.664 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG com.networknt.schema.TypeValidator debug - validate( "ed1db401-ebfa-4583-ad22-9d61a150", {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.665 [XNIO-1 task-2] h7VpoO9_T-qrc1rD8xUWMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8597737","serviceName":"ed1db401-ebfa-4583-ad22-9d61a150","serviceDesc":"e5e98325-abfb-47d4-ae19-1a932b7825fd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.675 [XNIO-1 task-2] CvLl5YbgRXSVhy83lw158w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d8597737, base path is set to: null +23:10:18.675 [XNIO-1 task-2] CvLl5YbgRXSVhy83lw158w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.675 [XNIO-1 task-2] CvLl5YbgRXSVhy83lw158w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.675 [XNIO-1 task-2] CvLl5YbgRXSVhy83lw158w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d8597737, base path is set to: null +23:10:18.675 [XNIO-1 task-2] CvLl5YbgRXSVhy83lw158w DEBUG com.networknt.schema.TypeValidator debug - validate( "d8597737", "d8597737", serviceId) +23:10:18.684 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:997379fa-3fb5-4d26-aef0-0ce5177015cf +23:10:18.686 [XNIO-1 task-2] beTwSjPwThSzEbQYQ4DdjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.687 [XNIO-1 task-2] beTwSjPwThSzEbQYQ4DdjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.687 [XNIO-1 task-2] beTwSjPwThSzEbQYQ4DdjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.687 [XNIO-1 task-2] beTwSjPwThSzEbQYQ4DdjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.693 [XNIO-1 task-2] B4G-kBIuQxWQ2iTZJR6T6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.693 [XNIO-1 task-2] B4G-kBIuQxWQ2iTZJR6T6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.693 [XNIO-1 task-2] B4G-kBIuQxWQ2iTZJR6T6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.701 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.702 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.702 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.702 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.703 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.703 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.703 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.703 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG com.networknt.schema.TypeValidator debug - validate( "5613d8ae-0eb0-46cf-ac14-68b0b7a7", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.703 [XNIO-1 task-2] fjoVwcxKRGmS57yWwodrmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.712 [XNIO-1 task-2] QmTkPLZFT1a3VzTGDxw0ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.712 [XNIO-1 task-2] QmTkPLZFT1a3VzTGDxw0ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.712 [XNIO-1 task-2] QmTkPLZFT1a3VzTGDxw0ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.712 [XNIO-1 task-2] QmTkPLZFT1a3VzTGDxw0ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.722 [XNIO-1 task-2] SOZQtvJUSIaoebbJxg0jCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.722 [XNIO-1 task-2] SOZQtvJUSIaoebbJxg0jCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.722 [XNIO-1 task-2] SOZQtvJUSIaoebbJxg0jCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.743 [XNIO-1 task-2] B8VTipt2QbShPwZNUAwBDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e103c16e, base path is set to: null +23:10:18.743 [XNIO-1 task-2] B8VTipt2QbShPwZNUAwBDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.743 [XNIO-1 task-2] B8VTipt2QbShPwZNUAwBDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.744 [XNIO-1 task-2] B8VTipt2QbShPwZNUAwBDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e103c16e, base path is set to: null +23:10:18.744 [XNIO-1 task-2] B8VTipt2QbShPwZNUAwBDg DEBUG com.networknt.schema.TypeValidator debug - validate( "e103c16e", "e103c16e", serviceId) +23:10:18.748 [XNIO-1 task-2] YXTLUMgxT8uvtuzYDGY1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d846bc13 +23:10:18.748 [XNIO-1 task-2] YXTLUMgxT8uvtuzYDGY1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.748 [XNIO-1 task-2] YXTLUMgxT8uvtuzYDGY1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.748 [XNIO-1 task-2] YXTLUMgxT8uvtuzYDGY1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d846bc13 +23:10:18.757 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.757 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.757 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.758 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.758 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.758 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.758 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:18.758 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5613d8ae-0eb0-46cf-ac14-68b0b7a7", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:18.758 [XNIO-1 task-2] 9c6VH4DaTq6VsvkC0k9WmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.767 [XNIO-1 task-2] AlCZFwVkRIyaIYMf1VuZAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e103c16e, base path is set to: null +23:10:18.768 [XNIO-1 task-2] AlCZFwVkRIyaIYMf1VuZAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.768 [XNIO-1 task-2] AlCZFwVkRIyaIYMf1VuZAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.768 [XNIO-1 task-2] AlCZFwVkRIyaIYMf1VuZAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e103c16e, base path is set to: null +23:10:18.768 [XNIO-1 task-2] AlCZFwVkRIyaIYMf1VuZAg DEBUG com.networknt.schema.TypeValidator debug - validate( "e103c16e", "e103c16e", serviceId) +23:10:18.770 [XNIO-1 task-2] WaEUchVwTDufQ2WOU0ycZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.770 [XNIO-1 task-2] WaEUchVwTDufQ2WOU0ycZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.770 [XNIO-1 task-2] WaEUchVwTDufQ2WOU0ycZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.771 [XNIO-1 task-2] WaEUchVwTDufQ2WOU0ycZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.787 [XNIO-1 task-2] uYl2l90MRMi9eYZwencNeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e103c16e +23:10:18.787 [XNIO-1 task-2] uYl2l90MRMi9eYZwencNeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.788 [XNIO-1 task-2] uYl2l90MRMi9eYZwencNeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.788 [XNIO-1 task-2] uYl2l90MRMi9eYZwencNeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e103c16e +23:10:18.790 [XNIO-1 task-2] sl3mW6hbRaSeR0D2wgX3mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.790 [XNIO-1 task-2] sl3mW6hbRaSeR0D2wgX3mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.790 [XNIO-1 task-2] sl3mW6hbRaSeR0D2wgX3mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.807 [XNIO-1 task-2] YVIDX3yJQcynEyvxZjjgZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17ddd2e0, base path is set to: null +23:10:18.807 [XNIO-1 task-2] YVIDX3yJQcynEyvxZjjgZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.807 [XNIO-1 task-2] YVIDX3yJQcynEyvxZjjgZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.807 [XNIO-1 task-2] YVIDX3yJQcynEyvxZjjgZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17ddd2e0, base path is set to: null +23:10:18.807 [XNIO-1 task-2] YVIDX3yJQcynEyvxZjjgZw DEBUG com.networknt.schema.TypeValidator debug - validate( "17ddd2e0", "17ddd2e0", serviceId) +23:10:18.820 [XNIO-1 task-2] 9JHsq9QRQC6mluRNRGqf-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.820 [XNIO-1 task-2] 9JHsq9QRQC6mluRNRGqf-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.820 [XNIO-1 task-2] 9JHsq9QRQC6mluRNRGqf-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.820 [XNIO-1 task-2] 9JHsq9QRQC6mluRNRGqf-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.875 [XNIO-1 task-2] KOhJk7DDTzq8qdx_rH6aVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.875 [XNIO-1 task-2] KOhJk7DDTzq8qdx_rH6aVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.875 [XNIO-1 task-2] KOhJk7DDTzq8qdx_rH6aVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.875 [XNIO-1 task-2] KOhJk7DDTzq8qdx_rH6aVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.880 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.880 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.881 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.881 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.881 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.881 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG com.networknt.schema.TypeValidator debug - validate( "849bf81b-4a5f-4b16-b810-94104f7c48f6", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.881 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG com.networknt.schema.TypeValidator debug - validate( "e103c16e", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.881 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.881 [XNIO-1 task-2] TmZbFdmfQ6qt_M_3scIAzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e103c16e","serviceName":"5613d8ae-0eb0-46cf-ac14-68b0b7a7","serviceDesc":"849bf81b-4a5f-4b16-b810-94104f7c48f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.893 [XNIO-1 task-2] XxWIKmQ0STCxf_g32WL1vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17ddd2e0 +23:10:18.894 [XNIO-1 task-2] XxWIKmQ0STCxf_g32WL1vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.894 [XNIO-1 task-2] XxWIKmQ0STCxf_g32WL1vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:18.894 [XNIO-1 task-2] XxWIKmQ0STCxf_g32WL1vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17ddd2e0 +23:10:18.901 [XNIO-1 task-2] uzen8Qz-Tr-4oVqh7KBPDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.902 [XNIO-1 task-2] uzen8Qz-Tr-4oVqh7KBPDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.903 [XNIO-1 task-2] uzen8Qz-Tr-4oVqh7KBPDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:18.918 [XNIO-1 task-2] LmNOCg4JStCf919BZfzTAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e103c16e, base path is set to: null +23:10:18.918 [XNIO-1 task-2] LmNOCg4JStCf919BZfzTAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.918 [XNIO-1 task-2] LmNOCg4JStCf919BZfzTAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.918 [XNIO-1 task-2] LmNOCg4JStCf919BZfzTAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e103c16e, base path is set to: null +23:10:18.918 [XNIO-1 task-2] LmNOCg4JStCf919BZfzTAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e103c16e", "e103c16e", serviceId) +23:10:18.929 [XNIO-1 task-2] CcueiNlsRsmH2w9Bxuei6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.929 [XNIO-1 task-2] CcueiNlsRsmH2w9Bxuei6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.929 [XNIO-1 task-2] CcueiNlsRsmH2w9Bxuei6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.952 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.952 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.952 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.953 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.953 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:18.953 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG com.networknt.schema.TypeValidator debug - validate( "154233ce-5acc-4d48-b2e8-bdff5b205182", {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:18.953 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG com.networknt.schema.TypeValidator debug - validate( "6879b89e", {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:18.953 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:18.953 [XNIO-1 task-2] iLxzHZ7PTuaFuZNRXAaC2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:18.962 [XNIO-1 task-2] 7hepSeNJRrWGSNICOXy5TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.962 [XNIO-1 task-2] 7hepSeNJRrWGSNICOXy5TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.963 [XNIO-1 task-2] 7hepSeNJRrWGSNICOXy5TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:18.971 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1f6ad183-b0f9-4335-8621-229f1f1092ce +23:10:18.975 [XNIO-1 task-2] IgAGrNfjSpm4ey41wJnEoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c8a9304c, base path is set to: null +23:10:18.976 [XNIO-1 task-2] IgAGrNfjSpm4ey41wJnEoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:18.976 [XNIO-1 task-2] IgAGrNfjSpm4ey41wJnEoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:18.976 [XNIO-1 task-2] IgAGrNfjSpm4ey41wJnEoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c8a9304c, base path is set to: null +23:10:18.976 [XNIO-1 task-2] IgAGrNfjSpm4ey41wJnEoA DEBUG com.networknt.schema.TypeValidator debug - validate( "c8a9304c", "c8a9304c", serviceId) +23:10:19.005 [XNIO-1 task-2] IM2TMn30SJi0J6grnHhkMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.006 [XNIO-1 task-2] IM2TMn30SJi0J6grnHhkMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.006 [XNIO-1 task-2] IM2TMn30SJi0J6grnHhkMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.006 [XNIO-1 task-2] IM2TMn30SJi0J6grnHhkMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.013 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3512e897-8d26-47af-8aaf-a9b640bb8257 +23:10:19.014 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3512e897-8d26-47af-8aaf-a9b640bb8257 +23:10:19.015 [XNIO-1 task-2] TJHPV-q1TqGsM3L6XiuhtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.015 [XNIO-1 task-2] TJHPV-q1TqGsM3L6XiuhtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.015 [XNIO-1 task-2] TJHPV-q1TqGsM3L6XiuhtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.015 [XNIO-1 task-2] TJHPV-q1TqGsM3L6XiuhtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.018 [XNIO-1 task-2] YLI0hik0SvqBzzVXcOHvAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.019 [XNIO-1 task-2] YLI0hik0SvqBzzVXcOHvAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.019 [XNIO-1 task-2] YLI0hik0SvqBzzVXcOHvAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.033 [XNIO-1 task-2] KCtpRrowRaG9tZfWmsni8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.033 [XNIO-1 task-2] KCtpRrowRaG9tZfWmsni8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.033 [XNIO-1 task-2] KCtpRrowRaG9tZfWmsni8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.040 [XNIO-1 task-2] oai7nuVTTkm9xNUumL931A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6acd964b, base path is set to: null +23:10:19.041 [XNIO-1 task-2] oai7nuVTTkm9xNUumL931A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.041 [XNIO-1 task-2] oai7nuVTTkm9xNUumL931A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.041 [XNIO-1 task-2] oai7nuVTTkm9xNUumL931A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6acd964b, base path is set to: null +23:10:19.041 [XNIO-1 task-2] oai7nuVTTkm9xNUumL931A DEBUG com.networknt.schema.TypeValidator debug - validate( "6acd964b", "6acd964b", serviceId) +23:10:19.052 [XNIO-1 task-2] -EkjOygFQfGk7hj2qN5lOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.052 [XNIO-1 task-2] -EkjOygFQfGk7hj2qN5lOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.052 [XNIO-1 task-2] -EkjOygFQfGk7hj2qN5lOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.052 [XNIO-1 task-2] -EkjOygFQfGk7hj2qN5lOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.056 [XNIO-1 task-2] 74zyeYQzSWGBr-1p4tUGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.056 [XNIO-1 task-2] 74zyeYQzSWGBr-1p4tUGzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.056 [XNIO-1 task-2] 74zyeYQzSWGBr-1p4tUGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.056 [XNIO-1 task-2] 74zyeYQzSWGBr-1p4tUGzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.065 [XNIO-1 task-2] 6jUOcczsT3ef2vvjSBB7vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.065 [XNIO-1 task-2] 6jUOcczsT3ef2vvjSBB7vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.065 [XNIO-1 task-2] 6jUOcczsT3ef2vvjSBB7vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.066 [XNIO-1 task-2] 6jUOcczsT3ef2vvjSBB7vw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.076 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.076 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.077 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.077 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.077 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.077 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.077 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.077 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG com.networknt.schema.TypeValidator debug - validate( "878b61d0-ac9c-4af4-b224-cc2414b0", {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.077 [XNIO-1 task-2] Gv4lZ__ARFS4TFxkvwkJww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0eee723a","serviceName":"878b61d0-ac9c-4af4-b224-cc2414b0","serviceDesc":"8ce75a32-f2f1-498a-9002-69667f40b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.090 [XNIO-1 task-2] ytt-x1nPRBunke7Yxz9fpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.091 [XNIO-1 task-2] ytt-x1nPRBunke7Yxz9fpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.091 [XNIO-1 task-2] ytt-x1nPRBunke7Yxz9fpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.101 [XNIO-1 task-2] 0ZcltshqQsmMIZ29MKqAAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6879b89e, base path is set to: null +23:10:19.102 [XNIO-1 task-2] 0ZcltshqQsmMIZ29MKqAAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.102 [XNIO-1 task-2] 0ZcltshqQsmMIZ29MKqAAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.102 [XNIO-1 task-2] 0ZcltshqQsmMIZ29MKqAAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6879b89e, base path is set to: null +23:10:19.102 [XNIO-1 task-2] 0ZcltshqQsmMIZ29MKqAAw DEBUG com.networknt.schema.TypeValidator debug - validate( "6879b89e", "6879b89e", serviceId) +23:10:19.104 [XNIO-1 task-2] Rr-ifdGrQdqRoEIi68_3xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0eee723a +23:10:19.104 [XNIO-1 task-2] Rr-ifdGrQdqRoEIi68_3xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.104 [XNIO-1 task-2] Rr-ifdGrQdqRoEIi68_3xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.104 [XNIO-1 task-2] Rr-ifdGrQdqRoEIi68_3xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0eee723a +23:10:19.111 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.114 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.114 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.114 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.115 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.115 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.115 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.115 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG com.networknt.schema.TypeValidator debug - validate( "e78a0c6d-d478-4299-bba7-ec07a86a", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.115 [XNIO-1 task-2] 3VVICHhCQwK5K8lwoo8duA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.123 [XNIO-1 task-2] 6d9shaBORoWKXa5n82lJMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.123 [XNIO-1 task-2] 6d9shaBORoWKXa5n82lJMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.123 [XNIO-1 task-2] 6d9shaBORoWKXa5n82lJMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.123 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:757433a1 +23:10:19.124 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:757433a1 +23:10:19.131 [XNIO-1 task-2] HCT5bzAxRuuIkvWb9tWR1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.131 [XNIO-1 task-2] HCT5bzAxRuuIkvWb9tWR1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.131 [XNIO-1 task-2] HCT5bzAxRuuIkvWb9tWR1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.132 [XNIO-1 task-2] HCT5bzAxRuuIkvWb9tWR1w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.142 [XNIO-1 task-2] ck1UGcTZQtKGpxIbzQ55sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.143 [XNIO-1 task-2] ck1UGcTZQtKGpxIbzQ55sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.143 [XNIO-1 task-2] ck1UGcTZQtKGpxIbzQ55sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.162 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b1c02198-95b3-4715-acba-95daa5521721 +23:10:19.163 [XNIO-1 task-2] vBqa1rjeSdSUZXV5NvaSPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.163 [XNIO-1 task-2] vBqa1rjeSdSUZXV5NvaSPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.163 [XNIO-1 task-2] vBqa1rjeSdSUZXV5NvaSPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.175 [XNIO-1 task-2] SkTT6EAiQlS75AQPcmOEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ba1ba978 +23:10:19.176 [XNIO-1 task-2] SkTT6EAiQlS75AQPcmOEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.176 [XNIO-1 task-2] SkTT6EAiQlS75AQPcmOEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.176 [XNIO-1 task-2] SkTT6EAiQlS75AQPcmOEdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ba1ba978 +23:10:19.185 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.187 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.187 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.187 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.187 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.188 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.188 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.188 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG com.networknt.schema.TypeValidator debug - validate( "c14732f4-a270-40eb-a4ec-cb077ad8", {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.188 [XNIO-1 task-2] _z095JYKTBekbPmnUqzZIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b694fb19-21c8-4c4e-b4ad-84213326", {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.198 [XNIO-1 task-2] UuoOtDtMT8qIsqqaLdncLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6879b89e","serviceName":"b694fb19-21c8-4c4e-b4ad-84213326","serviceDesc":"154233ce-5acc-4d48-b2e8-bdff5b205182","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.208 [XNIO-1 task-2] 9yuJWfXeS7uwgYSvhbmlAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.209 [XNIO-1 task-2] 9yuJWfXeS7uwgYSvhbmlAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.209 [XNIO-1 task-2] 9yuJWfXeS7uwgYSvhbmlAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.220 [XNIO-1 task-2] mgpAorLmRPOkKMii_pwUWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.220 [XNIO-1 task-2] mgpAorLmRPOkKMii_pwUWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.220 [XNIO-1 task-2] mgpAorLmRPOkKMii_pwUWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.220 [XNIO-1 task-2] mgpAorLmRPOkKMii_pwUWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.229 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4f4cb752-f3cb-4f83-b13a-7fe560d49b80 +23:10:19.236 [XNIO-1 task-2] 3Q3wQOsTTmuxTMaeIlSxWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.236 [XNIO-1 task-2] 3Q3wQOsTTmuxTMaeIlSxWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.236 [XNIO-1 task-2] 3Q3wQOsTTmuxTMaeIlSxWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.236 [XNIO-1 task-2] 3Q3wQOsTTmuxTMaeIlSxWw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.245 [XNIO-1 task-2] feXNz4BrSwunc5FWs2nflQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.246 [XNIO-1 task-2] feXNz4BrSwunc5FWs2nflQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.246 [XNIO-1 task-2] feXNz4BrSwunc5FWs2nflQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.246 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6cddbf2e +23:10:19.246 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6cddbf2e +23:10:19.255 [XNIO-1 task-2] -0Jde75uTWq5AuiU8_Y6Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.255 [XNIO-1 task-2] -0Jde75uTWq5AuiU8_Y6Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.255 [XNIO-1 task-2] -0Jde75uTWq5AuiU8_Y6Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.255 [XNIO-1 task-2] -0Jde75uTWq5AuiU8_Y6Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.264 [XNIO-1 task-2] SKvurDvoRRi9vy2VDbzkYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.265 [XNIO-1 task-2] SKvurDvoRRi9vy2VDbzkYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.265 [XNIO-1 task-2] SKvurDvoRRi9vy2VDbzkYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.273 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:23344a32-c2ab-4f6c-89f8-377f770406d6 +23:10:19.284 [XNIO-1 task-2] CSruqfNUSPKVONNxp-QM-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.284 [XNIO-1 task-2] CSruqfNUSPKVONNxp-QM-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.284 [XNIO-1 task-2] CSruqfNUSPKVONNxp-QM-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.285 [XNIO-1 task-2] CSruqfNUSPKVONNxp-QM-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.302 [XNIO-1 task-2] CcXpJtyEQN6PWVc4miQhKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d9b86d12, base path is set to: null +23:10:19.302 [XNIO-1 task-2] CcXpJtyEQN6PWVc4miQhKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.302 [XNIO-1 task-2] CcXpJtyEQN6PWVc4miQhKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.302 [XNIO-1 task-2] CcXpJtyEQN6PWVc4miQhKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d9b86d12, base path is set to: null +23:10:19.303 [XNIO-1 task-2] CcXpJtyEQN6PWVc4miQhKA DEBUG com.networknt.schema.TypeValidator debug - validate( "d9b86d12", "d9b86d12", serviceId) +23:10:19.305 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.305 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.305 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.306 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.306 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.306 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG com.networknt.schema.TypeValidator debug - validate( "399ce17d-9f4d-4f0a-9794-2e014efa19da", {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:19.306 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG com.networknt.schema.TypeValidator debug - validate( "d9b86d12", {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:19.306 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:19.306 [XNIO-1 task-2] RwplonfMQhWTmR5aYZdWrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9b86d12","serviceName":"37f6fc2a-d2b5-4ee6-93ca-8007c9ba","serviceDesc":"399ce17d-9f4d-4f0a-9794-2e014efa19da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.314 [XNIO-1 task-2] QpGbO6kSRTGNC-ZBoPCCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.314 [XNIO-1 task-2] QpGbO6kSRTGNC-ZBoPCCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.314 [XNIO-1 task-2] QpGbO6kSRTGNC-ZBoPCCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.314 [XNIO-1 task-2] QpGbO6kSRTGNC-ZBoPCCfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.321 [XNIO-1 task-2] Nzv3qJ1cStahNaPRpGaoHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.321 [XNIO-1 task-2] Nzv3qJ1cStahNaPRpGaoHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.321 [XNIO-1 task-2] Nzv3qJ1cStahNaPRpGaoHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.322 [XNIO-1 task-2] Nzv3qJ1cStahNaPRpGaoHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.334 [XNIO-1 task-2] XWJZgYTnS9CBPChLmhZqGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.334 [XNIO-1 task-2] XWJZgYTnS9CBPChLmhZqGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.334 [XNIO-1 task-2] XWJZgYTnS9CBPChLmhZqGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.334 [XNIO-1 task-2] XWJZgYTnS9CBPChLmhZqGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.340 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.340 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.340 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.340 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.340 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.341 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4d22a312-4e69-4348-8a80-f1938d58821b", {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:19.341 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c5a650b9", {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:19.341 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:19.341 [XNIO-1 task-2] 1d8RM5DqQy27Vz4rs03u5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.348 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b40378cd-9663-4113-a451-d942062541dd +23:10:19.349 [XNIO-1 task-2] 6r9x56AoS8SOR4bqsKJkqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d9b86d12 +23:10:19.350 [XNIO-1 task-2] 6r9x56AoS8SOR4bqsKJkqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.350 [XNIO-1 task-2] 6r9x56AoS8SOR4bqsKJkqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.350 [XNIO-1 task-2] 6r9x56AoS8SOR4bqsKJkqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d9b86d12 +23:10:19.361 [XNIO-1 task-2] OiU52tO5SgSf55RYPNN-AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.361 [XNIO-1 task-2] OiU52tO5SgSf55RYPNN-AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.361 [XNIO-1 task-2] OiU52tO5SgSf55RYPNN-AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.361 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9b06a165 +23:10:19.362 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9b06a165 +23:10:19.378 [XNIO-1 task-2] aljexO_UROeEZMjxpOUB3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.378 [XNIO-1 task-2] aljexO_UROeEZMjxpOUB3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.378 [XNIO-1 task-2] aljexO_UROeEZMjxpOUB3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.378 [XNIO-1 task-2] aljexO_UROeEZMjxpOUB3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.380 [XNIO-1 task-2] Ni0byhqVS52GIKcJfrvpOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.381 [XNIO-1 task-2] Ni0byhqVS52GIKcJfrvpOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.381 [XNIO-1 task-2] Ni0byhqVS52GIKcJfrvpOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.399 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b7aec7ff +23:10:19.404 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.404 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.404 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.405 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.405 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.405 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d3223775-cd61-4725-85de-5ae8b6fdcb8e", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:19.405 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "757433a1", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:19.405 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:19.405 [XNIO-1 task-2] 4hKg7XDuQiqf_TFI8R0TGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.405 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:757433a1 +23:10:19.406 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b7aec7ff +23:10:19.407 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a035a30f-51e9-4696-a557-f797e44ead88 +23:10:19.415 [XNIO-1 task-2] b652V1eaQomy1OG4ruiPcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.415 [XNIO-1 task-2] b652V1eaQomy1OG4ruiPcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.415 [XNIO-1 task-2] b652V1eaQomy1OG4ruiPcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.415 [XNIO-1 task-2] b652V1eaQomy1OG4ruiPcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88490527 +23:10:19.417 [XNIO-1 task-2] ulcOu1avQ6eyUpXAit7ECg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.417 [XNIO-1 task-2] ulcOu1avQ6eyUpXAit7ECg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.417 [XNIO-1 task-2] ulcOu1avQ6eyUpXAit7ECg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.432 [XNIO-1 task-2] _rFLM1FqQEuTjASQJQ56nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9b06a165, base path is set to: null +23:10:19.432 [XNIO-1 task-2] _rFLM1FqQEuTjASQJQ56nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.432 [XNIO-1 task-2] _rFLM1FqQEuTjASQJQ56nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.432 [XNIO-1 task-2] _rFLM1FqQEuTjASQJQ56nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9b06a165, base path is set to: null +23:10:19.433 [XNIO-1 task-2] _rFLM1FqQEuTjASQJQ56nA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b06a165", "9b06a165", serviceId) +23:10:19.434 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.434 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.435 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.435 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.435 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.435 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "74da6962-bedc-49b5-b2fe-0a26e46ddd6a", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:19.435 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "88490527", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:19.435 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:19.435 [XNIO-1 task-2] rLoI_K57R2GnFJBBwok1Yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.445 [XNIO-1 task-2] IDONWFoOSd6VZQ78EGzVJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.445 [XNIO-1 task-2] IDONWFoOSd6VZQ78EGzVJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.445 [XNIO-1 task-2] IDONWFoOSd6VZQ78EGzVJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.445 [XNIO-1 task-2] IDONWFoOSd6VZQ78EGzVJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.463 [XNIO-1 task-2] 5pD633m3TMi2SSAkJLA6rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.464 [XNIO-1 task-2] 5pD633m3TMi2SSAkJLA6rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.464 [XNIO-1 task-2] 5pD633m3TMi2SSAkJLA6rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.470 [XNIO-1 task-2] InCbhsEkSrOuUMdqupikFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.471 [XNIO-1 task-2] InCbhsEkSrOuUMdqupikFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.471 [XNIO-1 task-2] InCbhsEkSrOuUMdqupikFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.471 [XNIO-1 task-2] InCbhsEkSrOuUMdqupikFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.477 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2be85ef4-9c3b-46e3-aee2-5201302ebcdf +23:10:19.478 [XNIO-1 task-2] 7tzRrL_ISpmvRKkdq5wxZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ccc9d5e +23:10:19.478 [XNIO-1 task-2] 7tzRrL_ISpmvRKkdq5wxZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.478 [XNIO-1 task-2] 7tzRrL_ISpmvRKkdq5wxZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.479 [XNIO-1 task-2] 7tzRrL_ISpmvRKkdq5wxZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ccc9d5e +23:10:19.479 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2be85ef4-9c3b-46e3-aee2-5201302ebcdf +23:10:19.494 [XNIO-1 task-2] dscLsVnMSzuC5YQeumm9oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b05269c5, base path is set to: null +23:10:19.494 [XNIO-1 task-2] dscLsVnMSzuC5YQeumm9oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.495 [XNIO-1 task-2] dscLsVnMSzuC5YQeumm9oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.495 [XNIO-1 task-2] dscLsVnMSzuC5YQeumm9oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b05269c5, base path is set to: null +23:10:19.495 [XNIO-1 task-2] dscLsVnMSzuC5YQeumm9oA DEBUG com.networknt.schema.TypeValidator debug - validate( "b05269c5", "b05269c5", serviceId) +23:10:19.502 [XNIO-1 task-2] nUcDNQYqQZGyymokPvB7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:19.502 [XNIO-1 task-2] nUcDNQYqQZGyymokPvB7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.502 [XNIO-1 task-2] nUcDNQYqQZGyymokPvB7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.502 [XNIO-1 task-2] nUcDNQYqQZGyymokPvB7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:19.504 [XNIO-1 task-2] B5lmIpOwSH-WOXG1lDb7uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/757433a1, base path is set to: null +23:10:19.504 [XNIO-1 task-2] B5lmIpOwSH-WOXG1lDb7uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.504 [XNIO-1 task-2] B5lmIpOwSH-WOXG1lDb7uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.504 [XNIO-1 task-2] B5lmIpOwSH-WOXG1lDb7uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/757433a1, base path is set to: null +23:10:19.504 [XNIO-1 task-2] B5lmIpOwSH-WOXG1lDb7uA DEBUG com.networknt.schema.TypeValidator debug - validate( "757433a1", "757433a1", serviceId) +23:10:19.508 [XNIO-1 task-2] 3YDs5MI3QjOPbv3csULQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.508 [XNIO-1 task-2] 3YDs5MI3QjOPbv3csULQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.508 [XNIO-1 task-2] 3YDs5MI3QjOPbv3csULQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.508 [XNIO-1 task-2] 3YDs5MI3QjOPbv3csULQoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.515 [XNIO-1 task-2] BwmbdbNZQSm8M3lrQfLeNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:19.515 [XNIO-1 task-2] BwmbdbNZQSm8M3lrQfLeNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.515 [XNIO-1 task-2] BwmbdbNZQSm8M3lrQfLeNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.515 [XNIO-1 task-2] BwmbdbNZQSm8M3lrQfLeNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:19.517 [XNIO-1 task-2] 92gIW3USTSa1DnIm0gvKEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.517 [XNIO-1 task-2] 92gIW3USTSa1DnIm0gvKEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.518 [XNIO-1 task-2] 92gIW3USTSa1DnIm0gvKEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.518 [XNIO-1 task-2] 92gIW3USTSa1DnIm0gvKEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.529 [XNIO-1 task-2] ewbHM61VRSGlPb5pv5swgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.529 [XNIO-1 task-2] ewbHM61VRSGlPb5pv5swgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.529 [XNIO-1 task-2] ewbHM61VRSGlPb5pv5swgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.529 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6e3f21b6 +23:10:19.530 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6e3f21b6 +23:10:19.539 [XNIO-1 task-2] 7bmeCspmT_iGusxMNzpOeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.539 [XNIO-1 task-2] 7bmeCspmT_iGusxMNzpOeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.539 [XNIO-1 task-2] 7bmeCspmT_iGusxMNzpOeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.539 [XNIO-1 task-2] 7bmeCspmT_iGusxMNzpOeA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.543 [XNIO-1 task-2] JaEdPio5RICYmhcHC0Lt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:19.544 [XNIO-1 task-2] JaEdPio5RICYmhcHC0Lt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.544 [XNIO-1 task-2] JaEdPio5RICYmhcHC0Lt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.544 [XNIO-1 task-2] JaEdPio5RICYmhcHC0Lt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG com.networknt.schema.TypeValidator debug - validate( "2fd2f21b-f43c-47a5-b111-60ab4c26", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.547 [XNIO-1 task-2] me7GT2SKS0KFn5wCcPYKiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.548 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:757433a1 +23:10:19.555 [XNIO-1 task-2] 6Fh1FmcyQ-qUhpwprWVlpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.555 [XNIO-1 task-2] 6Fh1FmcyQ-qUhpwprWVlpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.555 [XNIO-1 task-2] 6Fh1FmcyQ-qUhpwprWVlpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.555 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cbe1bbdf +23:10:19.556 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cbe1bbdf +23:10:19.567 [XNIO-1 task-2] QOMqIOugTR2vEjQegFHXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e3f21b6 +23:10:19.567 [XNIO-1 task-2] QOMqIOugTR2vEjQegFHXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.567 [XNIO-1 task-2] QOMqIOugTR2vEjQegFHXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.567 [XNIO-1 task-2] QOMqIOugTR2vEjQegFHXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e3f21b6 +23:10:19.568 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6e3f21b6 +23:10:19.579 [XNIO-1 task-2] 12NMXc5-RPywCV7bRwD09g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.579 [XNIO-1 task-2] 12NMXc5-RPywCV7bRwD09g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.579 [XNIO-1 task-2] 12NMXc5-RPywCV7bRwD09g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.579 [XNIO-1 task-2] 12NMXc5-RPywCV7bRwD09g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.589 [XNIO-1 task-2] 3i82soY-TIycfJfvKnXMtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.589 [XNIO-1 task-2] 3i82soY-TIycfJfvKnXMtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.589 [XNIO-1 task-2] 3i82soY-TIycfJfvKnXMtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.608 [XNIO-1 task-2] xyWUtyN7Rp6wzvK0gPZWtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9b06a165, base path is set to: null +23:10:19.608 [XNIO-1 task-2] xyWUtyN7Rp6wzvK0gPZWtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.608 [XNIO-1 task-2] xyWUtyN7Rp6wzvK0gPZWtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.608 [XNIO-1 task-2] xyWUtyN7Rp6wzvK0gPZWtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9b06a165, base path is set to: null +23:10:19.608 [XNIO-1 task-2] xyWUtyN7Rp6wzvK0gPZWtA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b06a165", "9b06a165", serviceId) +23:10:19.610 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9b06a165 +23:10:19.620 [XNIO-1 task-2] S4M7k9w9Q_SgBR1LmlRQ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.620 [XNIO-1 task-2] S4M7k9w9Q_SgBR1LmlRQ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.620 [XNIO-1 task-2] S4M7k9w9Q_SgBR1LmlRQ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.637 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.638 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.638 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.638 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.638 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.638 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aea1528a-a85b-46ba-8409-10e769a43d27", {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:19.638 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2872df92", {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:19.638 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:19.639 [XNIO-1 task-2] RyT1zwrYTH6pxzypMzC2cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2872df92","serviceName":"c14732f4-a270-40eb-a4ec-cb077ad8","serviceDesc":"aea1528a-a85b-46ba-8409-10e769a43d27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.655 [XNIO-1 task-2] OAW-395lSb-_qCIMnnCBdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6879b89e +23:10:19.655 [XNIO-1 task-2] OAW-395lSb-_qCIMnnCBdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.655 [XNIO-1 task-2] OAW-395lSb-_qCIMnnCBdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.655 [XNIO-1 task-2] OAW-395lSb-_qCIMnnCBdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6879b89e +23:10:19.658 [XNIO-1 task-2] dddUCeeISHid9XJ6shGb_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.658 [XNIO-1 task-2] dddUCeeISHid9XJ6shGb_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.658 [XNIO-1 task-2] dddUCeeISHid9XJ6shGb_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.683 [XNIO-1 task-2] amkAErGYSXWFE86HIW9PYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6cddbf2e, base path is set to: null +23:10:19.683 [XNIO-1 task-2] amkAErGYSXWFE86HIW9PYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.683 [XNIO-1 task-2] amkAErGYSXWFE86HIW9PYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.683 [XNIO-1 task-2] amkAErGYSXWFE86HIW9PYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6cddbf2e, base path is set to: null +23:10:19.683 [XNIO-1 task-2] amkAErGYSXWFE86HIW9PYw DEBUG com.networknt.schema.TypeValidator debug - validate( "6cddbf2e", "6cddbf2e", serviceId) +23:10:19.684 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6cddbf2e +23:10:19.690 [XNIO-1 task-2] Hws82lEaSyWTj6JcrYf09Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a27e9039 +23:10:19.690 [XNIO-1 task-2] Hws82lEaSyWTj6JcrYf09Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.690 [XNIO-1 task-2] Hws82lEaSyWTj6JcrYf09Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.690 [XNIO-1 task-2] Hws82lEaSyWTj6JcrYf09Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a27e9039 +23:10:19.705 [XNIO-1 task-2] -O4GOP1_RrykwRLjE8mMTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.705 [XNIO-1 task-2] -O4GOP1_RrykwRLjE8mMTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.705 [XNIO-1 task-2] -O4GOP1_RrykwRLjE8mMTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.715 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.716 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.716 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.716 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.716 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.716 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.716 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.717 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG com.networknt.schema.TypeValidator debug - validate( "19b9c610-279f-4482-93f0-f63962fd", {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.717 [XNIO-1 task-2] 4EseazG1RYSVE85UgQldig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79ad0ec9","serviceName":"19b9c610-279f-4482-93f0-f63962fd","serviceDesc":"fa3d272b-def1-4786-87c7-856c931324c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.727 [XNIO-1 task-2] NBDDgF7PRkqiNHtGOQEDgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.727 [XNIO-1 task-2] NBDDgF7PRkqiNHtGOQEDgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.727 [XNIO-1 task-2] NBDDgF7PRkqiNHtGOQEDgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.728 [XNIO-1 task-2] NBDDgF7PRkqiNHtGOQEDgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.742 [XNIO-1 task-2] rmWZOxBYTn2pkFTt7qKHEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2872df92, base path is set to: null +23:10:19.742 [XNIO-1 task-2] rmWZOxBYTn2pkFTt7qKHEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.742 [XNIO-1 task-2] rmWZOxBYTn2pkFTt7qKHEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.742 [XNIO-1 task-2] rmWZOxBYTn2pkFTt7qKHEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2872df92, base path is set to: null +23:10:19.742 [XNIO-1 task-2] rmWZOxBYTn2pkFTt7qKHEw DEBUG com.networknt.schema.TypeValidator debug - validate( "2872df92", "2872df92", serviceId) +23:10:19.747 [XNIO-1 task-2] yiiNyCZ3RK-j4TWtlD10PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.747 [XNIO-1 task-2] yiiNyCZ3RK-j4TWtlD10PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.747 [XNIO-1 task-2] yiiNyCZ3RK-j4TWtlD10PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.747 [XNIO-1 task-2] yiiNyCZ3RK-j4TWtlD10PQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.761 [XNIO-1 task-2] THGwR8cgSIS-woB2ZIN-0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6879b89e +23:10:19.761 [XNIO-1 task-2] THGwR8cgSIS-woB2ZIN-0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.761 [XNIO-1 task-2] THGwR8cgSIS-woB2ZIN-0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.761 [XNIO-1 task-2] THGwR8cgSIS-woB2ZIN-0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6879b89e +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG com.networknt.schema.TypeValidator debug - validate( "a20662b1-6226-4439-9628-e8df9245", {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.773 [XNIO-1 task-2] tFIWC_4zQyq1ae8qzTJScA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5a650b9","serviceName":"a20662b1-6226-4439-9628-e8df9245","serviceDesc":"4d22a312-4e69-4348-8a80-f1938d58821b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.785 [XNIO-1 task-2] 0isvi1IGSA2pz3RBuBNPOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.786 [XNIO-1 task-2] 0isvi1IGSA2pz3RBuBNPOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.786 [XNIO-1 task-2] 0isvi1IGSA2pz3RBuBNPOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.795 [XNIO-1 task-2] VE8qeVrITXyn5Et6C-V5sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2872df92, base path is set to: null +23:10:19.795 [XNIO-1 task-2] VE8qeVrITXyn5Et6C-V5sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.795 [XNIO-1 task-2] VE8qeVrITXyn5Et6C-V5sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.795 [XNIO-1 task-2] VE8qeVrITXyn5Et6C-V5sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2872df92, base path is set to: null +23:10:19.796 [XNIO-1 task-2] VE8qeVrITXyn5Et6C-V5sw DEBUG com.networknt.schema.TypeValidator debug - validate( "2872df92", "2872df92", serviceId) +23:10:19.808 [XNIO-1 task-2] 59UQ_tgtQE-42PG9u3W_vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5a650b9 +23:10:19.808 [XNIO-1 task-2] 59UQ_tgtQE-42PG9u3W_vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.808 [XNIO-1 task-2] 59UQ_tgtQE-42PG9u3W_vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.808 [XNIO-1 task-2] 59UQ_tgtQE-42PG9u3W_vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5a650b9 +23:10:19.818 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b7aec7ff +23:10:19.819 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.819 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.819 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.820 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.820 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.820 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.820 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.820 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG com.networknt.schema.TypeValidator debug - validate( "e78a0c6d-d478-4299-bba7-ec07a86a", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.820 [XNIO-1 task-2] CUlEU2iPQ_uXtRRAX4cf2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.878 [XNIO-1 task-2] FTWIl91ET3u4gZDsyORXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88490527, base path is set to: null +23:10:19.878 [XNIO-1 task-2] FTWIl91ET3u4gZDsyORXyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.878 [XNIO-1 task-2] FTWIl91ET3u4gZDsyORXyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:19.878 [XNIO-1 task-2] FTWIl91ET3u4gZDsyORXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88490527, base path is set to: null +23:10:19.878 [XNIO-1 task-2] FTWIl91ET3u4gZDsyORXyA DEBUG com.networknt.schema.TypeValidator debug - validate( "88490527", "88490527", serviceId) +23:10:19.885 [XNIO-1 task-2] zYVG9r1ESc2EktALtLhjIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.885 [XNIO-1 task-2] zYVG9r1ESc2EktALtLhjIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.886 [XNIO-1 task-2] zYVG9r1ESc2EktALtLhjIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.886 [XNIO-1 task-2] zYVG9r1ESc2EktALtLhjIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.905 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.905 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.905 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.906 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.906 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.906 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG com.networknt.schema.TypeValidator debug - validate( "31ecb9aa-5e9c-45b9-b858-efe3398b7b5a", {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:19.906 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG com.networknt.schema.TypeValidator debug - validate( "cbe1bbdf", {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:19.906 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:19.906 [XNIO-1 task-2] meGAmwtdSDOh5QRx_TDpnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cbe1bbdf","serviceName":"4ec4e70a-5c2c-4593-b2f0-94e55a0a","serviceDesc":"31ecb9aa-5e9c-45b9-b858-efe3398b7b5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.906 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cbe1bbdf +23:10:19.934 [XNIO-1 task-2] ak79hAQkS8yVG_3IjLrFSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.934 [XNIO-1 task-2] ak79hAQkS8yVG_3IjLrFSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.934 [XNIO-1 task-2] ak79hAQkS8yVG_3IjLrFSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.934 [XNIO-1 task-2] ak79hAQkS8yVG_3IjLrFSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.937 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b7aec7ff +23:10:19.945 [XNIO-1 task-2] VqKh8pvdRK6sYPgpq01IVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.945 [XNIO-1 task-2] VqKh8pvdRK6sYPgpq01IVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.945 [XNIO-1 task-2] VqKh8pvdRK6sYPgpq01IVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.945 [XNIO-1 task-2] VqKh8pvdRK6sYPgpq01IVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.961 [XNIO-1 task-2] KzcCwqEaQm-WmGOhy2_-hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.961 [XNIO-1 task-2] KzcCwqEaQm-WmGOhy2_-hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.961 [XNIO-1 task-2] KzcCwqEaQm-WmGOhy2_-hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.962 [XNIO-1 task-2] KzcCwqEaQm-WmGOhy2_-hQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.973 [XNIO-1 task-2] s9S6j0_3TBy3_sMS_EtchQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57f05f3f +23:10:19.973 [XNIO-1 task-2] s9S6j0_3TBy3_sMS_EtchQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.973 [XNIO-1 task-2] s9S6j0_3TBy3_sMS_EtchQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.973 [XNIO-1 task-2] s9S6j0_3TBy3_sMS_EtchQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57f05f3f +23:10:19.977 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:92105124 +23:10:19.978 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:92105124 +23:10:19.979 [XNIO-1 task-2] LAfhAAWCTpSfwe3KLvJd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79ad0ec9 +23:10:19.979 [XNIO-1 task-2] LAfhAAWCTpSfwe3KLvJd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.982 [XNIO-1 task-2] LAfhAAWCTpSfwe3KLvJd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.982 [XNIO-1 task-2] LAfhAAWCTpSfwe3KLvJd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79ad0ec9 +23:10:19.982 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:23344a32-c2ab-4f6c-89f8-377f770406d6 +23:10:19.991 [XNIO-1 task-2] s3fXqZv5Tx--gCyydVlIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57f05f3f +23:10:19.992 [XNIO-1 task-2] s3fXqZv5Tx--gCyydVlIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:19.992 [XNIO-1 task-2] s3fXqZv5Tx--gCyydVlIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:19.992 [XNIO-1 task-2] s3fXqZv5Tx--gCyydVlIEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57f05f3f +23:10:19.993 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d5067d1-cdc7-4c86-8a19-ed660f45", {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:19.994 [XNIO-1 task-2] k5To4HzISGSZ1i0szylSnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"57f05f3f","serviceName":"5d5067d1-cdc7-4c86-8a19-ed660f45","serviceDesc":"567090ed-bb91-4dc3-8fbb-11783fbc9ae3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.005 [XNIO-1 task-2] ls4N1QO0RVG28QvP-aVTfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.005 [XNIO-1 task-2] ls4N1QO0RVG28QvP-aVTfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.005 [XNIO-1 task-2] ls4N1QO0RVG28QvP-aVTfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.015 [XNIO-1 task-2] 1Asg8N9NTEeMgkm96UXWWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.015 [XNIO-1 task-2] 1Asg8N9NTEeMgkm96UXWWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.015 [XNIO-1 task-2] 1Asg8N9NTEeMgkm96UXWWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.016 [XNIO-1 task-2] 1Asg8N9NTEeMgkm96UXWWw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.029 [XNIO-1 task-2] g4FPsnxRQFipJnhw4IhhUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.029 [XNIO-1 task-2] g4FPsnxRQFipJnhw4IhhUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.029 [XNIO-1 task-2] g4FPsnxRQFipJnhw4IhhUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.029 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7fb16d37 +23:10:20.030 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7fb16d37 +23:10:20.043 [XNIO-1 task-2] k1_xGyx-SZGQZ0y0JfJvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57f05f3f +23:10:20.043 [XNIO-1 task-2] k1_xGyx-SZGQZ0y0JfJvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.043 [XNIO-1 task-2] k1_xGyx-SZGQZ0y0JfJvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.043 [XNIO-1 task-2] k1_xGyx-SZGQZ0y0JfJvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/57f05f3f +23:10:20.061 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "2fd2f21b-f43c-47a5-b111-60ab4c26", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.062 [XNIO-1 task-2] pd7JTpzSS-ub6H4mdYzpNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.062 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:757433a1 +23:10:20.091 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:92105124 +23:10:20.096 [XNIO-1 task-2] k701Cs90T02VvTWUx_IomQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a49e6ce, base path is set to: null +23:10:20.096 [XNIO-1 task-2] k701Cs90T02VvTWUx_IomQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.096 [XNIO-1 task-2] k701Cs90T02VvTWUx_IomQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.097 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aebdbb58-3668-4110-9dfe-1b5a15dcf822 +23:10:20.097 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:aebdbb58-3668-4110-9dfe-1b5a15dcf822 +23:10:20.097 [XNIO-1 task-2] k701Cs90T02VvTWUx_IomQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8a49e6ce", "8a49e6ce", serviceId) +23:10:20.102 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.102 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.102 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.103 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.103 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.103 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG com.networknt.schema.TypeValidator debug - validate( "17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15", {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.103 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG com.networknt.schema.TypeValidator debug - validate( "b3800ec8", {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.103 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.103 [XNIO-1 task-2] s4_nAG60QgStRdPe1xBsrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3800ec8","serviceName":"d84cfeed-bb22-4392-9a01-53aa892b","serviceDesc":"17f5f7e8-ffba-4e5c-9fb3-28c3abbcbb15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.111 [XNIO-1 task-2] aInR0JC3T7SBHmgRjKtkBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18c3332c +23:10:20.111 [XNIO-1 task-2] aInR0JC3T7SBHmgRjKtkBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.111 [XNIO-1 task-2] aInR0JC3T7SBHmgRjKtkBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.112 [XNIO-1 task-2] aInR0JC3T7SBHmgRjKtkBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18c3332c +23:10:20.128 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:194c9acd-1196-4761-ae55-dca815b960fa +23:10:20.134 [XNIO-1 task-2] tZBIIRtBTv2G7oSXddXTSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cbe1bbdf, base path is set to: null +23:10:20.134 [XNIO-1 task-2] tZBIIRtBTv2G7oSXddXTSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.134 [XNIO-1 task-2] tZBIIRtBTv2G7oSXddXTSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.134 [XNIO-1 task-2] tZBIIRtBTv2G7oSXddXTSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cbe1bbdf, base path is set to: null +23:10:20.134 [XNIO-1 task-2] tZBIIRtBTv2G7oSXddXTSA DEBUG com.networknt.schema.TypeValidator debug - validate( "cbe1bbdf", "cbe1bbdf", serviceId) +23:10:20.135 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cbe1bbdf +23:10:20.158 [XNIO-1 task-2] U5tuAGO2QoeR_VN_vC9zfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7beaaa89 +23:10:20.158 [XNIO-1 task-2] U5tuAGO2QoeR_VN_vC9zfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.158 [XNIO-1 task-2] U5tuAGO2QoeR_VN_vC9zfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.158 [XNIO-1 task-2] U5tuAGO2QoeR_VN_vC9zfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7beaaa89 +23:10:20.167 [XNIO-1 task-2] PvdeIBs0SBWqZI0Dcqh1rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7beaaa89, base path is set to: null +23:10:20.170 [XNIO-1 task-2] PvdeIBs0SBWqZI0Dcqh1rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.170 [XNIO-1 task-2] PvdeIBs0SBWqZI0Dcqh1rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.170 [XNIO-1 task-2] PvdeIBs0SBWqZI0Dcqh1rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7beaaa89, base path is set to: null +23:10:20.170 [XNIO-1 task-2] PvdeIBs0SBWqZI0Dcqh1rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7beaaa89", "7beaaa89", serviceId) +23:10:20.174 [XNIO-1 task-2] Nalrg_F9S_eq_rfmZA5MYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3800ec8 +23:10:20.174 [XNIO-1 task-2] Nalrg_F9S_eq_rfmZA5MYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.174 [XNIO-1 task-2] Nalrg_F9S_eq_rfmZA5MYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.174 [XNIO-1 task-2] Nalrg_F9S_eq_rfmZA5MYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3800ec8 +23:10:20.183 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:35ad2815-e273-44b1-bd82-b763625482cb +23:10:20.190 [XNIO-1 task-2] ZafwqEVvR3aBsG7tTyjdYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.190 [XNIO-1 task-2] ZafwqEVvR3aBsG7tTyjdYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.190 [XNIO-1 task-2] ZafwqEVvR3aBsG7tTyjdYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.206 [XNIO-1 task-2] G5M-q5V0SwmlnCe-XZMBWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7beaaa89, base path is set to: null +23:10:20.206 [XNIO-1 task-2] G5M-q5V0SwmlnCe-XZMBWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.206 [XNIO-1 task-2] G5M-q5V0SwmlnCe-XZMBWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.206 [XNIO-1 task-2] G5M-q5V0SwmlnCe-XZMBWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7beaaa89, base path is set to: null +23:10:20.206 [XNIO-1 task-2] G5M-q5V0SwmlnCe-XZMBWw DEBUG com.networknt.schema.TypeValidator debug - validate( "7beaaa89", "7beaaa89", serviceId) +23:10:20.218 [XNIO-1 task-2] SWPnzghaQj-iwsLnqaJ0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.219 [XNIO-1 task-2] SWPnzghaQj-iwsLnqaJ0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.219 [XNIO-1 task-2] SWPnzghaQj-iwsLnqaJ0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.219 [XNIO-1 task-2] SWPnzghaQj-iwsLnqaJ0jw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.234 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.235 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.235 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.235 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.235 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.236 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.236 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.236 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG com.networknt.schema.TypeValidator debug - validate( "e78a0c6d-d478-4299-bba7-ec07a86a", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.236 [XNIO-1 task-2] fUrKUODLQAuPPbSWHGka2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.245 [XNIO-1 task-2] DL0o1YzLTCSWb-6rNNxFEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c911d759, base path is set to: null +23:10:20.245 [XNIO-1 task-2] DL0o1YzLTCSWb-6rNNxFEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.245 [XNIO-1 task-2] DL0o1YzLTCSWb-6rNNxFEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.245 [XNIO-1 task-2] DL0o1YzLTCSWb-6rNNxFEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c911d759, base path is set to: null +23:10:20.246 [XNIO-1 task-2] DL0o1YzLTCSWb-6rNNxFEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c911d759", "c911d759", serviceId) +23:10:20.250 [XNIO-1 task-2] m6WFAjSNSUicQqcZJXiECQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c911d759 +23:10:20.250 [XNIO-1 task-2] m6WFAjSNSUicQqcZJXiECQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.250 [XNIO-1 task-2] m6WFAjSNSUicQqcZJXiECQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.250 [XNIO-1 task-2] m6WFAjSNSUicQqcZJXiECQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c911d759 +23:10:20.252 [XNIO-1 task-2] UUsFlF8dR4GjtRkZq0EZpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c911d759, base path is set to: null +23:10:20.252 [XNIO-1 task-2] UUsFlF8dR4GjtRkZq0EZpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.252 [XNIO-1 task-2] UUsFlF8dR4GjtRkZq0EZpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.252 [XNIO-1 task-2] UUsFlF8dR4GjtRkZq0EZpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c911d759, base path is set to: null +23:10:20.252 [XNIO-1 task-2] UUsFlF8dR4GjtRkZq0EZpA DEBUG com.networknt.schema.TypeValidator debug - validate( "c911d759", "c911d759", serviceId) +23:10:20.259 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.259 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.259 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.259 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.259 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.260 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG com.networknt.schema.TypeValidator debug - validate( "24624db7-fe4f-46ca-bb84-f4b1e7ee8a14", {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.260 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG com.networknt.schema.TypeValidator debug - validate( "c911d759", {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.260 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.260 [XNIO-1 task-2] ImLEJ4IDQqmgUyfIKvh0jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c911d759","serviceName":"5aedf40b-ca55-42e0-9a1d-b8a53c27","serviceDesc":"24624db7-fe4f-46ca-bb84-f4b1e7ee8a14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.268 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.268 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.269 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.269 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.269 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.269 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d3223775-cd61-4725-85de-5ae8b6fdcb8e", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.269 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "757433a1", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.269 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.269 [XNIO-1 task-2] -IBFQOPvQK6MuLkvwQ9aIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"757433a1","serviceName":"2fd2f21b-f43c-47a5-b111-60ab4c26","serviceDesc":"d3223775-cd61-4725-85de-5ae8b6fdcb8e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.270 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:757433a1 +23:10:20.287 [XNIO-1 task-2] G4GIyG-sRYy1UKGmNtNX7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7fb16d37 +23:10:20.287 [XNIO-1 task-2] G4GIyG-sRYy1UKGmNtNX7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.287 [XNIO-1 task-2] G4GIyG-sRYy1UKGmNtNX7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.287 [XNIO-1 task-2] G4GIyG-sRYy1UKGmNtNX7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7fb16d37 +23:10:20.288 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7fb16d37 +23:10:20.298 [XNIO-1 task-2] EH4Eqlm5Ss6CbMFkJNpV4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/037e7d31, base path is set to: null +23:10:20.299 [XNIO-1 task-2] EH4Eqlm5Ss6CbMFkJNpV4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.300 [XNIO-1 task-2] EH4Eqlm5Ss6CbMFkJNpV4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.300 [XNIO-1 task-2] EH4Eqlm5Ss6CbMFkJNpV4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/037e7d31, base path is set to: null +23:10:20.300 [XNIO-1 task-2] EH4Eqlm5Ss6CbMFkJNpV4A DEBUG com.networknt.schema.TypeValidator debug - validate( "037e7d31", "037e7d31", serviceId) +23:10:20.314 [XNIO-1 task-2] ecoJ7k1zRYCZ89zRF-TyAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:20.314 [XNIO-1 task-2] ecoJ7k1zRYCZ89zRF-TyAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.314 [XNIO-1 task-2] ecoJ7k1zRYCZ89zRF-TyAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.314 [XNIO-1 task-2] ecoJ7k1zRYCZ89zRF-TyAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/757433a1 +23:10:20.314 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:757433a1 +23:10:20.327 [XNIO-1 task-2] 7u9gccOhRnihe7e7mSViag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.327 [XNIO-1 task-2] 7u9gccOhRnihe7e7mSViag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.327 [XNIO-1 task-2] 7u9gccOhRnihe7e7mSViag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.335 [XNIO-1 task-2] 38RfBuv7SSeDCcuIKwiHeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.335 [XNIO-1 task-2] 38RfBuv7SSeDCcuIKwiHeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.335 [XNIO-1 task-2] 38RfBuv7SSeDCcuIKwiHeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.335 [XNIO-1 task-2] 38RfBuv7SSeDCcuIKwiHeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.353 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.353 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.353 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.353 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.353 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.353 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.353 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.354 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG com.networknt.schema.TypeValidator debug - validate( "e78a0c6d-d478-4299-bba7-ec07a86a", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.354 [XNIO-1 task-2] TLSB-mOWTYC-Kxl2VuULfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.369 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:35ad2815-e273-44b1-bd82-b763625482cb +23:10:20.370 [XNIO-1 task-2] NgVNsMChS_61ZmlmiGDz7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c911d759 +23:10:20.370 [XNIO-1 task-2] NgVNsMChS_61ZmlmiGDz7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.370 [XNIO-1 task-2] NgVNsMChS_61ZmlmiGDz7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.370 [XNIO-1 task-2] NgVNsMChS_61ZmlmiGDz7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c911d759 +23:10:20.371 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:aebdbb58-3668-4110-9dfe-1b5a15dcf822 +23:10:20.385 [XNIO-1 task-2] HsnaApI7QTm_s6L-lu5OsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.385 [XNIO-1 task-2] HsnaApI7QTm_s6L-lu5OsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.386 [XNIO-1 task-2] HsnaApI7QTm_s6L-lu5OsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.406 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.406 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.406 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.406 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.406 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.406 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5e21d076-6e57-4a53-b03e-4af6a334b261", {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.406 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8a49e6ce", {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.407 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.407 [XNIO-1 task-2] mL-NNs8CSZqJ_1VkJSwH4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8a49e6ce","serviceName":"0eac5b58-1472-4c73-a099-188fb9a5","serviceDesc":"5e21d076-6e57-4a53-b03e-4af6a334b261","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.417 [XNIO-1 task-2] ZmGWvZ0wRyKV5iVFIYaRdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.417 [XNIO-1 task-2] ZmGWvZ0wRyKV5iVFIYaRdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.417 [XNIO-1 task-2] ZmGWvZ0wRyKV5iVFIYaRdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.417 [XNIO-1 task-2] ZmGWvZ0wRyKV5iVFIYaRdA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.429 [XNIO-1 task-2] 5540M7M-RHulUYz8Tw2SdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.429 [XNIO-1 task-2] 5540M7M-RHulUYz8Tw2SdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.429 [XNIO-1 task-2] 5540M7M-RHulUYz8Tw2SdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.429 [XNIO-1 task-2] 5540M7M-RHulUYz8Tw2SdA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.432 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2839cccd-29b2-421b-8713-a427088cbdc6 +23:10:20.438 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c3d6fb26-5d6f-4808-9cd7-3b8902490053 +23:10:20.439 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c3d6fb26-5d6f-4808-9cd7-3b8902490053 +23:10:20.439 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c3d6fb26-5d6f-4808-9cd7-3b8902490053 +23:10:20.439 [XNIO-1 task-2] GdMBHn4_SNu3PCJTDUKKMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.439 [XNIO-1 task-2] GdMBHn4_SNu3PCJTDUKKMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.440 [XNIO-1 task-2] GdMBHn4_SNu3PCJTDUKKMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.440 [XNIO-1 task-2] GdMBHn4_SNu3PCJTDUKKMg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.440 [XNIO-1 task-2] GdMBHn4_SNu3PCJTDUKKMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1f540e46-7871-4cfa-b9c4-c43fca5099df", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:20.440 [XNIO-1 task-2] GdMBHn4_SNu3PCJTDUKKMg DEBUG com.networknt.schema.TypeValidator debug - validate( "2fea8386", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.440 [XNIO-1 task-2] GdMBHn4_SNu3PCJTDUKKMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:20.458 [XNIO-1 task-2] _9Xvc_KgTjm_njhXued74w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.458 [XNIO-1 task-2] _9Xvc_KgTjm_njhXued74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.458 [XNIO-1 task-2] _9Xvc_KgTjm_njhXued74w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:20.459 [XNIO-1 task-2] _9Xvc_KgTjm_njhXued74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +23:10:20.460 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3a6e1a5d +23:10:20.467 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:20.480 [XNIO-1 task-2] 3FfPgaHhS-21ezEwRDnrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4d850486 +23:10:20.480 [XNIO-1 task-2] 3FfPgaHhS-21ezEwRDnrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.480 [XNIO-1 task-2] 3FfPgaHhS-21ezEwRDnrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.480 [XNIO-1 task-2] 3FfPgaHhS-21ezEwRDnrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4d850486 +23:10:20.484 [XNIO-1 task-2] EQortf-QRLKIAsoP_mnx6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.485 [XNIO-1 task-2] EQortf-QRLKIAsoP_mnx6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.485 [XNIO-1 task-2] EQortf-QRLKIAsoP_mnx6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.495 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1ef93f7a-2fb8-4aa7-b931-2459f342", {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.496 [XNIO-1 task-2] yZfSmW8DR0eNdAsGo0NgSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4d850486","serviceName":"1ef93f7a-2fb8-4aa7-b931-2459f342","serviceDesc":"bd8374a0-2c54-4e23-aaa8-481c0d65a24e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.503 [XNIO-1 task-2] HlGjnX9QRVGgCY5f1r202A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3a6e1a5d, base path is set to: null +23:10:20.503 [XNIO-1 task-2] HlGjnX9QRVGgCY5f1r202A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.503 [XNIO-1 task-2] HlGjnX9QRVGgCY5f1r202A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.503 [XNIO-1 task-2] HlGjnX9QRVGgCY5f1r202A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3a6e1a5d, base path is set to: null +23:10:20.503 [XNIO-1 task-2] HlGjnX9QRVGgCY5f1r202A DEBUG com.networknt.schema.TypeValidator debug - validate( "3a6e1a5d", "3a6e1a5d", serviceId) +23:10:20.508 [XNIO-1 task-2] UpXl7jAZREm9OoCb09lvdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3a6e1a5d +23:10:20.508 [XNIO-1 task-2] UpXl7jAZREm9OoCb09lvdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.508 [XNIO-1 task-2] UpXl7jAZREm9OoCb09lvdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.508 [XNIO-1 task-2] UpXl7jAZREm9OoCb09lvdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3a6e1a5d +23:10:20.508 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3a6e1a5d +23:10:20.520 [XNIO-1 task-2] Y6XFLpimRXKJTJ19OCNIbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a49e6ce, base path is set to: null +23:10:20.521 [XNIO-1 task-2] Y6XFLpimRXKJTJ19OCNIbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.521 [XNIO-1 task-2] Y6XFLpimRXKJTJ19OCNIbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.521 [XNIO-1 task-2] Y6XFLpimRXKJTJ19OCNIbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a49e6ce, base path is set to: null +23:10:20.521 [XNIO-1 task-2] Y6XFLpimRXKJTJ19OCNIbw DEBUG com.networknt.schema.TypeValidator debug - validate( "8a49e6ce", "8a49e6ce", serviceId) +23:10:20.538 [XNIO-1 task-2] TOTHdjY9RsCH78pxQ9JmsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4d850486 +23:10:20.538 [XNIO-1 task-2] TOTHdjY9RsCH78pxQ9JmsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.538 [XNIO-1 task-2] TOTHdjY9RsCH78pxQ9JmsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.538 [XNIO-1 task-2] TOTHdjY9RsCH78pxQ9JmsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4d850486 +23:10:20.543 [XNIO-1 task-2] DzIZX4OzTvqiqpS_QSQaBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.543 [XNIO-1 task-2] DzIZX4OzTvqiqpS_QSQaBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.543 [XNIO-1 task-2] DzIZX4OzTvqiqpS_QSQaBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.543 [XNIO-1 task-2] DzIZX4OzTvqiqpS_QSQaBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.550 [XNIO-1 task-2] VKJebZ7fS862_I4TPXAu_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4d850486, base path is set to: null +23:10:20.550 [XNIO-1 task-2] VKJebZ7fS862_I4TPXAu_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.550 [XNIO-1 task-2] VKJebZ7fS862_I4TPXAu_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.550 [XNIO-1 task-2] VKJebZ7fS862_I4TPXAu_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4d850486, base path is set to: null +23:10:20.551 [XNIO-1 task-2] VKJebZ7fS862_I4TPXAu_A DEBUG com.networknt.schema.TypeValidator debug - validate( "4d850486", "4d850486", serviceId) +23:10:20.566 [XNIO-1 task-2] cvGHQ5lXS7aMSKNzrA1TMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.566 [XNIO-1 task-2] cvGHQ5lXS7aMSKNzrA1TMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.566 [XNIO-1 task-2] cvGHQ5lXS7aMSKNzrA1TMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.567 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:37145308 +23:10:20.582 [XNIO-1 task-2] jaDBQ4J2SLiHR2upTfCORg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.582 [XNIO-1 task-2] jaDBQ4J2SLiHR2upTfCORg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.582 [XNIO-1 task-2] jaDBQ4J2SLiHR2upTfCORg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.599 [XNIO-1 task-2] WKk24ZXMQGqK8wERCbX-rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.599 [XNIO-1 task-2] WKk24ZXMQGqK8wERCbX-rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.600 [XNIO-1 task-2] WKk24ZXMQGqK8wERCbX-rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.608 [XNIO-1 task-2] g2wW46X1QJCzhejbfhfkRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.608 [XNIO-1 task-2] g2wW46X1QJCzhejbfhfkRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.609 [XNIO-1 task-2] g2wW46X1QJCzhejbfhfkRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.625 [XNIO-1 task-2] QokcwYsfSEi36mro_QaQhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.625 [XNIO-1 task-2] QokcwYsfSEi36mro_QaQhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.625 [XNIO-1 task-2] QokcwYsfSEi36mro_QaQhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.625 [XNIO-1 task-2] QokcwYsfSEi36mro_QaQhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.632 [XNIO-1 task-2] yd9YtHJXTESbt04K5WpPMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.632 [XNIO-1 task-2] yd9YtHJXTESbt04K5WpPMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.633 [XNIO-1 task-2] yd9YtHJXTESbt04K5WpPMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.640 [XNIO-1 task-2] BmsWYDKWRPO3jNVR-QJNkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.641 [XNIO-1 task-2] BmsWYDKWRPO3jNVR-QJNkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.641 [XNIO-1 task-2] BmsWYDKWRPO3jNVR-QJNkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.646 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8dc39d90-7ddf-4af1-8dc0-5c33a0a72e87 +23:10:20.647 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.647 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.648 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.648 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.648 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.648 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "74da6962-bedc-49b5-b2fe-0a26e46ddd6a", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.648 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "88490527", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.648 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.648 [XNIO-1 task-2] rx5FLMY8Rhqo5soROg_c5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88490527","serviceName":"e78a0c6d-d478-4299-bba7-ec07a86a","serviceDesc":"74da6962-bedc-49b5-b2fe-0a26e46ddd6a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.649 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8dc39d90-7ddf-4af1-8dc0-5c33a0a72e87 +23:10:20.659 [XNIO-1 task-2] 6s0in7f9SOGIQn-f7n74ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.659 [XNIO-1 task-2] 6s0in7f9SOGIQn-f7n74ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.659 [XNIO-1 task-2] 6s0in7f9SOGIQn-f7n74ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.659 [XNIO-1 task-2] 6s0in7f9SOGIQn-f7n74ew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.680 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.680 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.680 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.680 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.681 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.681 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG com.networknt.schema.TypeValidator debug - validate( "9358c89c-4ef5-46fa-ace3-3ade40bcd0ca", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.681 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG com.networknt.schema.TypeValidator debug - validate( "17c3bb79", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.681 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.681 [XNIO-1 task-2] QGH7x90HRw2nt3swrInevg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.691 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:827c256b-a287-4590-9892-d539062e5d0a +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG com.networknt.schema.TypeValidator debug - validate( "79635761-e669-4a94-bc8d-58903fceeb85", {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb949be3", {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.691 [XNIO-1 task-2] ddDqA_NSTcGfivTE5plcuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb949be3","serviceName":"7ebf2cd7-733b-4fde-9bb4-66387a0b","serviceDesc":"79635761-e669-4a94-bc8d-58903fceeb85","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.705 [XNIO-1 task-2] qXp1jqnxQpaoN01jWdOaGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d6fe94b2 +23:10:20.705 [XNIO-1 task-2] qXp1jqnxQpaoN01jWdOaGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.705 [XNIO-1 task-2] qXp1jqnxQpaoN01jWdOaGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.705 [XNIO-1 task-2] qXp1jqnxQpaoN01jWdOaGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d6fe94b2 +23:10:20.710 [XNIO-1 task-2] o93yaXTJTe6bNKpycUqsPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d6fe94b2, base path is set to: null +23:10:20.710 [XNIO-1 task-2] o93yaXTJTe6bNKpycUqsPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.710 [XNIO-1 task-2] o93yaXTJTe6bNKpycUqsPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.710 [XNIO-1 task-2] o93yaXTJTe6bNKpycUqsPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d6fe94b2, base path is set to: null +23:10:20.710 [XNIO-1 task-2] o93yaXTJTe6bNKpycUqsPA DEBUG com.networknt.schema.TypeValidator debug - validate( "d6fe94b2", "d6fe94b2", serviceId) +23:10:20.718 [XNIO-1 task-2] UxEUaFv3T_WCrJIInAcvVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fea8386 +23:10:20.718 [XNIO-1 task-2] UxEUaFv3T_WCrJIInAcvVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.718 [XNIO-1 task-2] UxEUaFv3T_WCrJIInAcvVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.718 [XNIO-1 task-2] UxEUaFv3T_WCrJIInAcvVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fea8386 +23:10:20.722 [XNIO-1 task-2] G9eNatNMTvSeu9RJAoekXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.722 [XNIO-1 task-2] G9eNatNMTvSeu9RJAoekXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.723 [XNIO-1 task-2] G9eNatNMTvSeu9RJAoekXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.723 [XNIO-1 task-2] G9eNatNMTvSeu9RJAoekXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.733 [XNIO-1 task-2] 8xByRp--QL6dGHjigUAQ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.734 [XNIO-1 task-2] 8xByRp--QL6dGHjigUAQ2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.734 [XNIO-1 task-2] 8xByRp--QL6dGHjigUAQ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.734 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f404d05 +23:10:20.735 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f404d05 +23:10:20.752 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.752 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.752 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.752 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.752 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.752 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1f540e46-7871-4cfa-b9c4-c43fca5099df", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.752 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG com.networknt.schema.TypeValidator debug - validate( "2fea8386", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.753 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.753 [XNIO-1 task-2] FCMpi9fLSISFdrToy2yeaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.761 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "ffc125bd-522a-4599-a309-8f3a856faea6", {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f404d05", {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.762 [XNIO-1 task-2] A7VzFUa7Rri-jGrMJwP8Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f404d05","serviceName":"a7664114-32b3-456f-8fd8-8e5e5045","serviceDesc":"ffc125bd-522a-4599-a309-8f3a856faea6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.763 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f404d05 +23:10:20.774 [XNIO-1 task-2] 1X2XvlQFSfqupR-V351_-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.774 [XNIO-1 task-2] 1X2XvlQFSfqupR-V351_-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.774 [XNIO-1 task-2] 1X2XvlQFSfqupR-V351_-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.783 [XNIO-1 task-2] bn2uq82zQReJ4A8hR2NoNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.784 [XNIO-1 task-2] bn2uq82zQReJ4A8hR2NoNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.784 [XNIO-1 task-2] bn2uq82zQReJ4A8hR2NoNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.785 [XNIO-1 task-2] bn2uq82zQReJ4A8hR2NoNA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.797 [XNIO-1 task-2] IVeLAom-RTKmN_1uwDaNiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.797 [XNIO-1 task-2] IVeLAom-RTKmN_1uwDaNiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.797 [XNIO-1 task-2] IVeLAom-RTKmN_1uwDaNiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.797 [XNIO-1 task-2] IVeLAom-RTKmN_1uwDaNiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.808 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b7aec7ff +23:10:20.811 [XNIO-1 task-2] i9R8rWt8SMG4AJW4vzGcGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.811 [XNIO-1 task-2] i9R8rWt8SMG4AJW4vzGcGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.811 [XNIO-1 task-2] i9R8rWt8SMG4AJW4vzGcGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.812 [XNIO-1 task-2] i9R8rWt8SMG4AJW4vzGcGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.822 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.822 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.822 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.822 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.822 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.823 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG com.networknt.schema.TypeValidator debug - validate( "02a9ac15-dca4-4bda-82d3-bd08327d2f11", {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.823 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG com.networknt.schema.TypeValidator debug - validate( "37145308", {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.823 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.823 [XNIO-1 task-2] z6J1Su69SJ65wtw58fLpOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"37145308","serviceName":"b7726c68-42b7-4f91-972e-376aba42","serviceDesc":"02a9ac15-dca4-4bda-82d3-bd08327d2f11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.823 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:37145308 +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "993a2df7-aa22-4a3d-bec9-b9f291b3bb73", {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "cc0c8fe8", {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:20.859 [XNIO-1 task-2] uar9qEkoSqGB67WwCDf4gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cc0c8fe8","serviceName":"d56c1b01-eac7-460f-8777-583300fb","serviceDesc":"993a2df7-aa22-4a3d-bec9-b9f291b3bb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.873 [XNIO-1 task-2] ir1xAMuvSV-1qXnnFHGu7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88490527, base path is set to: null +23:10:20.874 [XNIO-1 task-2] ir1xAMuvSV-1qXnnFHGu7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.874 [XNIO-1 task-2] ir1xAMuvSV-1qXnnFHGu7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.874 [XNIO-1 task-2] ir1xAMuvSV-1qXnnFHGu7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88490527, base path is set to: null +23:10:20.874 [XNIO-1 task-2] ir1xAMuvSV-1qXnnFHGu7A DEBUG com.networknt.schema.TypeValidator debug - validate( "88490527", "88490527", serviceId) +23:10:20.891 [XNIO-1 task-2] T5jBda8uRUuugH7NJhnDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f81861c +23:10:20.891 [XNIO-1 task-2] T5jBda8uRUuugH7NJhnDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.891 [XNIO-1 task-2] T5jBda8uRUuugH7NJhnDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.891 [XNIO-1 task-2] T5jBda8uRUuugH7NJhnDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f81861c +23:10:20.899 [XNIO-1 task-2] 8NufoTx6RyWH3AJ-aHTFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.899 [XNIO-1 task-2] 8NufoTx6RyWH3AJ-aHTFyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.899 [XNIO-1 task-2] 8NufoTx6RyWH3AJ-aHTFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1f951c86-dcef-446b-8c9d-3c635af6", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.914 [XNIO-1 task-2] GnibBO5rRCeeCx3-pTIBBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.921 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG com.networknt.schema.TypeValidator debug - validate( "f9ce4294-2983-4c27-bd7e-6322fa2d", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.922 [XNIO-1 task-2] xQvakp4DTSCIzya7dGuPgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.937 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.937 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.937 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.938 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.938 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.938 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.938 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.938 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG com.networknt.schema.TypeValidator debug - validate( "490d14e3-d617-4586-8174-c0818bd7", {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.938 [XNIO-1 task-2] iikeqngMR1iULmX3NMmRfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f81861c","serviceName":"490d14e3-d617-4586-8174-c0818bd7","serviceDesc":"9b7dbddc-c81b-4707-8923-947d828d43e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.951 [XNIO-1 task-2] ObM8IvKlTF65Uq1IRP8scQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cc0c8fe8, base path is set to: null +23:10:20.951 [XNIO-1 task-2] ObM8IvKlTF65Uq1IRP8scQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.951 [XNIO-1 task-2] ObM8IvKlTF65Uq1IRP8scQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:20.952 [XNIO-1 task-2] ObM8IvKlTF65Uq1IRP8scQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cc0c8fe8, base path is set to: null +23:10:20.952 [XNIO-1 task-2] ObM8IvKlTF65Uq1IRP8scQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cc0c8fe8", "cc0c8fe8", serviceId) +23:10:20.965 [XNIO-1 task-2] Y2XAASsXQaCA7azL0M0LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17c3bb79 +23:10:20.965 [XNIO-1 task-2] Y2XAASsXQaCA7azL0M0LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.965 [XNIO-1 task-2] Y2XAASsXQaCA7azL0M0LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:20.965 [XNIO-1 task-2] Y2XAASsXQaCA7azL0M0LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17c3bb79 +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG com.networknt.schema.TypeValidator debug - validate( "ecc850b6-5640-4050-ae0b-47d1d0df", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:20.968 [XNIO-1 task-2] b2biNqMEQO20YOD3MwFsfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:20.970 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b7aec7ff +23:10:20.971 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf3501ff-411a-43a8-b176-2e5f4288e3fd +23:10:20.972 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf3501ff-411a-43a8-b176-2e5f4288e3fd +23:10:20.978 [XNIO-1 task-2] 0KfNaMreRmiGqgNYwb0Xbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.978 [XNIO-1 task-2] 0KfNaMreRmiGqgNYwb0Xbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.978 [XNIO-1 task-2] 0KfNaMreRmiGqgNYwb0Xbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:20.992 [XNIO-1 task-2] rs4aQ0IGS9mximoYyUF1kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.992 [XNIO-1 task-2] rs4aQ0IGS9mximoYyUF1kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:20.992 [XNIO-1 task-2] rs4aQ0IGS9mximoYyUF1kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:20.992 [XNIO-1 task-2] rs4aQ0IGS9mximoYyUF1kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.993 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b7aec7ff +23:10:21.005 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.005 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.005 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.005 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.005 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.006 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.006 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:21.006 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG com.networknt.schema.TypeValidator debug - validate( "e360f4c4-966b-436e-a57a-01c2eae2", {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:21.006 [XNIO-1 task-2] QJ40X5zjQra-dyzOrSkI3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4bf3f85e","serviceName":"e360f4c4-966b-436e-a57a-01c2eae2","serviceDesc":"69c8de25-e2c5-40f6-bd90-b5f87b356c88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.015 [XNIO-1 task-2] i2hcjtmVSDKd4AS-6wKmLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f404d05, base path is set to: null +23:10:21.015 [XNIO-1 task-2] i2hcjtmVSDKd4AS-6wKmLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.015 [XNIO-1 task-2] i2hcjtmVSDKd4AS-6wKmLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.015 [XNIO-1 task-2] i2hcjtmVSDKd4AS-6wKmLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f404d05, base path is set to: null +23:10:21.015 [XNIO-1 task-2] i2hcjtmVSDKd4AS-6wKmLw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f404d05", "0f404d05", serviceId) +23:10:21.021 [XNIO-1 task-2] bfnfVzvSTvauwUbfYE_8iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb949be3 +23:10:21.022 [XNIO-1 task-2] bfnfVzvSTvauwUbfYE_8iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.022 [XNIO-1 task-2] bfnfVzvSTvauwUbfYE_8iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.022 [XNIO-1 task-2] bfnfVzvSTvauwUbfYE_8iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb949be3 +23:10:21.035 [XNIO-1 task-2] 9iPd1bpHRvSiCX6c-RZhLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2fea8386, base path is set to: null +23:10:21.035 [XNIO-1 task-2] 9iPd1bpHRvSiCX6c-RZhLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.036 [XNIO-1 task-2] 9iPd1bpHRvSiCX6c-RZhLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.036 [XNIO-1 task-2] 9iPd1bpHRvSiCX6c-RZhLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2fea8386, base path is set to: null +23:10:21.036 [XNIO-1 task-2] 9iPd1bpHRvSiCX6c-RZhLw DEBUG com.networknt.schema.TypeValidator debug - validate( "2fea8386", "2fea8386", serviceId) +23:10:21.036 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b7aec7ff +23:10:21.039 [XNIO-1 task-2] QzVXAxrrQRmFY2MVY7TLgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fea8386 +23:10:21.039 [XNIO-1 task-2] QzVXAxrrQRmFY2MVY7TLgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.039 [XNIO-1 task-2] QzVXAxrrQRmFY2MVY7TLgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.039 [XNIO-1 task-2] QzVXAxrrQRmFY2MVY7TLgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fea8386 +23:10:21.042 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.042 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.042 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.042 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.043 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.043 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.043 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:21.043 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f951c86-dcef-446b-8c9d-3c635af6", {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:21.043 [XNIO-1 task-2] xo0NPtddTsaMTwy13t2hzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fea8386","serviceName":"1f951c86-dcef-446b-8c9d-3c635af6","serviceDesc":"1f540e46-7871-4cfa-b9c4-c43fca5099df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.050 [XNIO-1 task-2] oFu9LnUUT_WpR1C1M2eQjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.050 [XNIO-1 task-2] oFu9LnUUT_WpR1C1M2eQjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.050 [XNIO-1 task-2] oFu9LnUUT_WpR1C1M2eQjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.050 [XNIO-1 task-2] oFu9LnUUT_WpR1C1M2eQjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.069 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b7aec7ff +23:10:21.072 [XNIO-1 task-2] oBAIIJK6SRSZbvoEk8NUng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.073 [XNIO-1 task-2] oBAIIJK6SRSZbvoEk8NUng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.073 [XNIO-1 task-2] oBAIIJK6SRSZbvoEk8NUng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.079 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b7aec7ff +23:10:21.084 [XNIO-1 task-2] wnQY_av3S0C6yKwPmPnepQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bfcb70e4, base path is set to: null +23:10:21.084 [XNIO-1 task-2] wnQY_av3S0C6yKwPmPnepQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.084 [XNIO-1 task-2] wnQY_av3S0C6yKwPmPnepQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.084 [XNIO-1 task-2] wnQY_av3S0C6yKwPmPnepQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bfcb70e4, base path is set to: null +23:10:21.084 [XNIO-1 task-2] wnQY_av3S0C6yKwPmPnepQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfcb70e4", "bfcb70e4", serviceId) +23:10:21.093 [XNIO-1 task-2] Wq-HFJFFShe9EIE4al3ANg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fea8386 +23:10:21.093 [XNIO-1 task-2] Wq-HFJFFShe9EIE4al3ANg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.093 [XNIO-1 task-2] Wq-HFJFFShe9EIE4al3ANg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.093 [XNIO-1 task-2] Wq-HFJFFShe9EIE4al3ANg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2fea8386 +23:10:21.109 [XNIO-1 task-2] AvFDeTEeTbqQBaZaNQ6qdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f81861c, base path is set to: null +23:10:21.109 [XNIO-1 task-2] AvFDeTEeTbqQBaZaNQ6qdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.109 [XNIO-1 task-2] AvFDeTEeTbqQBaZaNQ6qdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.109 [XNIO-1 task-2] AvFDeTEeTbqQBaZaNQ6qdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f81861c, base path is set to: null +23:10:21.109 [XNIO-1 task-2] AvFDeTEeTbqQBaZaNQ6qdA DEBUG com.networknt.schema.TypeValidator debug - validate( "3f81861c", "3f81861c", serviceId) +23:10:21.116 [XNIO-1 task-2] CY_iDCQ2Sj2kqjzZYx6Tog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f81861c +23:10:21.116 [XNIO-1 task-2] CY_iDCQ2Sj2kqjzZYx6Tog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.116 [XNIO-1 task-2] CY_iDCQ2Sj2kqjzZYx6Tog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.116 [XNIO-1 task-2] CY_iDCQ2Sj2kqjzZYx6Tog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f81861c +23:10:21.123 [XNIO-1 task-2] 0p8xzPYPRku8ZsOXbNmOAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/37145308, base path is set to: null +23:10:21.123 [XNIO-1 task-2] 0p8xzPYPRku8ZsOXbNmOAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.123 [XNIO-1 task-2] 0p8xzPYPRku8ZsOXbNmOAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.123 [XNIO-1 task-2] 0p8xzPYPRku8ZsOXbNmOAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/37145308, base path is set to: null +23:10:21.124 [XNIO-1 task-2] 0p8xzPYPRku8ZsOXbNmOAA DEBUG com.networknt.schema.TypeValidator debug - validate( "37145308", "37145308", serviceId) +23:10:21.124 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:37145308 +23:10:21.131 [XNIO-1 task-2] Temosui0QkG7wslnjAGlmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.131 [XNIO-1 task-2] Temosui0QkG7wslnjAGlmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.132 [XNIO-1 task-2] Temosui0QkG7wslnjAGlmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.147 [XNIO-1 task-2] xhE01CxiRM6FALyZjMlNmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f81861c +23:10:21.147 [XNIO-1 task-2] xhE01CxiRM6FALyZjMlNmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.147 [XNIO-1 task-2] xhE01CxiRM6FALyZjMlNmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.147 [XNIO-1 task-2] xhE01CxiRM6FALyZjMlNmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f81861c +23:10:21.161 [XNIO-1 task-2] gEb-hB5wQiODLeX9zxFC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.161 [XNIO-1 task-2] gEb-hB5wQiODLeX9zxFC4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.161 [XNIO-1 task-2] gEb-hB5wQiODLeX9zxFC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.186 [XNIO-1 task-2] mTqPNB8uRO6IbJxBGIRDog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4bf3f85e, base path is set to: null +23:10:21.187 [XNIO-1 task-2] mTqPNB8uRO6IbJxBGIRDog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.187 [XNIO-1 task-2] mTqPNB8uRO6IbJxBGIRDog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.187 [XNIO-1 task-2] mTqPNB8uRO6IbJxBGIRDog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4bf3f85e, base path is set to: null +23:10:21.187 [XNIO-1 task-2] mTqPNB8uRO6IbJxBGIRDog DEBUG com.networknt.schema.TypeValidator debug - validate( "4bf3f85e", "4bf3f85e", serviceId) +23:10:21.198 [XNIO-1 task-2] NJOyOXqFQuOsC9JCsh7Odg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.198 [XNIO-1 task-2] NJOyOXqFQuOsC9JCsh7Odg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.199 [XNIO-1 task-2] NJOyOXqFQuOsC9JCsh7Odg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.211 [XNIO-1 task-2] XcxakIG4Ssiort2c-HB5mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.211 [XNIO-1 task-2] XcxakIG4Ssiort2c-HB5mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.211 [XNIO-1 task-2] XcxakIG4Ssiort2c-HB5mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.211 [XNIO-1 task-2] XcxakIG4Ssiort2c-HB5mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.212 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7ad700c6-4232-4867-9a68-54cb16505e8f +23:10:21.215 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7ad700c6-4232-4867-9a68-54cb16505e8f +23:10:21.218 [XNIO-1 task-2] dSBp14qWTHSFDog9jFBr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.218 [XNIO-1 task-2] dSBp14qWTHSFDog9jFBr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.218 [XNIO-1 task-2] dSBp14qWTHSFDog9jFBr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.219 [XNIO-1 task-2] dSBp14qWTHSFDog9jFBr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.222 [XNIO-1 task-2] oWQy4g1VRLWPo1GgPYEAWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3daba375, base path is set to: null +23:10:21.222 [XNIO-1 task-2] oWQy4g1VRLWPo1GgPYEAWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.222 [XNIO-1 task-2] oWQy4g1VRLWPo1GgPYEAWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.223 [XNIO-1 task-2] oWQy4g1VRLWPo1GgPYEAWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3daba375, base path is set to: null +23:10:21.223 [XNIO-1 task-2] oWQy4g1VRLWPo1GgPYEAWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3daba375", "3daba375", serviceId) +23:10:21.230 [XNIO-1 task-2] stQ6HZ9pQbC9D4bNKVL69w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.230 [XNIO-1 task-2] stQ6HZ9pQbC9D4bNKVL69w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.230 [XNIO-1 task-2] stQ6HZ9pQbC9D4bNKVL69w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.230 [XNIO-1 task-2] stQ6HZ9pQbC9D4bNKVL69w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.234 [XNIO-1 task-2] L37MmGKXSlaZ8XSaAxNw1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3daba375, base path is set to: null +23:10:21.236 [XNIO-1 task-2] L37MmGKXSlaZ8XSaAxNw1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.236 [XNIO-1 task-2] L37MmGKXSlaZ8XSaAxNw1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.236 [XNIO-1 task-2] L37MmGKXSlaZ8XSaAxNw1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3daba375, base path is set to: null +23:10:21.236 [XNIO-1 task-2] L37MmGKXSlaZ8XSaAxNw1A DEBUG com.networknt.schema.TypeValidator debug - validate( "3daba375", "3daba375", serviceId) +23:10:21.241 [XNIO-1 task-2] fNywWPCPS-Cnt_rDHwmLJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.241 [XNIO-1 task-2] fNywWPCPS-Cnt_rDHwmLJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.241 [XNIO-1 task-2] fNywWPCPS-Cnt_rDHwmLJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.248 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:907389ee-c413-453f-87d9-2c1e365ba513 +23:10:21.251 [XNIO-1 task-2] XJZMewpQRfGHA97M7-c7HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3daba375, base path is set to: null +23:10:21.251 [XNIO-1 task-2] XJZMewpQRfGHA97M7-c7HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.251 [XNIO-1 task-2] XJZMewpQRfGHA97M7-c7HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.251 [XNIO-1 task-2] XJZMewpQRfGHA97M7-c7HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3daba375, base path is set to: null +23:10:21.251 [XNIO-1 task-2] XJZMewpQRfGHA97M7-c7HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3daba375", "3daba375", serviceId) +23:10:21.254 [XNIO-1 task-2] vTrtmf6RToiLHNXBpA1VSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.254 [XNIO-1 task-2] vTrtmf6RToiLHNXBpA1VSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.254 [XNIO-1 task-2] vTrtmf6RToiLHNXBpA1VSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.254 [XNIO-1 task-2] vTrtmf6RToiLHNXBpA1VSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3daba375 +23:10:21.265 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8dc39d90-7ddf-4af1-8dc0-5c33a0a72e87 +23:10:21.268 [XNIO-1 task-2] 6yTQfmjJT4-Ht2I20dB2VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.268 [XNIO-1 task-2] 6yTQfmjJT4-Ht2I20dB2VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.268 [XNIO-1 task-2] 6yTQfmjJT4-Ht2I20dB2VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.289 [XNIO-1 task-2] vzg7Vg9CQBuEaonB1kmNqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.289 [XNIO-1 task-2] vzg7Vg9CQBuEaonB1kmNqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.289 [XNIO-1 task-2] vzg7Vg9CQBuEaonB1kmNqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.300 [XNIO-1 task-2] pPj4gYXAQWK7FJ1DOrIBaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cda4a7e, base path is set to: null +23:10:21.303 [XNIO-1 task-2] pPj4gYXAQWK7FJ1DOrIBaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.303 [XNIO-1 task-2] pPj4gYXAQWK7FJ1DOrIBaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.303 [XNIO-1 task-2] pPj4gYXAQWK7FJ1DOrIBaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cda4a7e, base path is set to: null +23:10:21.303 [XNIO-1 task-2] pPj4gYXAQWK7FJ1DOrIBaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4cda4a7e", "4cda4a7e", serviceId) +23:10:21.309 [XNIO-1 task-2] vls6v5izS6q9hx258MnKqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8d6d1bc0 +23:10:21.309 [XNIO-1 task-2] vls6v5izS6q9hx258MnKqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.310 [XNIO-1 task-2] vls6v5izS6q9hx258MnKqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.310 [XNIO-1 task-2] vls6v5izS6q9hx258MnKqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8d6d1bc0 +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a7cf6cbb-b5e2-4b00-b78a-a08704e0", {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:21.328 [XNIO-1 task-2] nYIQvkD0RLm4nGVk0NOs1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cda4a7e","serviceName":"a7cf6cbb-b5e2-4b00-b78a-a08704e0","serviceDesc":"d1fecaf9-d1b5-4cdd-9058-7cb04e00f0d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.349 [XNIO-1 task-2] s_QfpQZjRmWwItjmhmp1zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.349 [XNIO-1 task-2] s_QfpQZjRmWwItjmhmp1zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.349 [XNIO-1 task-2] s_QfpQZjRmWwItjmhmp1zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.349 [XNIO-1 task-2] s_QfpQZjRmWwItjmhmp1zA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.351 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b7aec7ff +23:10:21.366 [XNIO-1 task-2] HyIrFXa6TJWcRxWM_RzCSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1678806d +23:10:21.366 [XNIO-1 task-2] HyIrFXa6TJWcRxWM_RzCSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.366 [XNIO-1 task-2] HyIrFXa6TJWcRxWM_RzCSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.366 [XNIO-1 task-2] HyIrFXa6TJWcRxWM_RzCSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1678806d +23:10:21.374 [XNIO-1 task-2] i951mJxrSa2zBJzFmnC0hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cda4a7e, base path is set to: null +23:10:21.374 [XNIO-1 task-2] i951mJxrSa2zBJzFmnC0hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.374 [XNIO-1 task-2] i951mJxrSa2zBJzFmnC0hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.374 [XNIO-1 task-2] i951mJxrSa2zBJzFmnC0hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cda4a7e, base path is set to: null +23:10:21.374 [XNIO-1 task-2] i951mJxrSa2zBJzFmnC0hg DEBUG com.networknt.schema.TypeValidator debug - validate( "4cda4a7e", "4cda4a7e", serviceId) +23:10:21.388 [XNIO-1 task-2] C3YrEAkZSNuNeyoCaILNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1678806d +23:10:21.388 [XNIO-1 task-2] C3YrEAkZSNuNeyoCaILNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.388 [XNIO-1 task-2] C3YrEAkZSNuNeyoCaILNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.388 [XNIO-1 task-2] C3YrEAkZSNuNeyoCaILNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1678806d +23:10:21.412 [XNIO-1 task-2] jR-bJfDUQdCApJC7spQ2vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1e5f168, base path is set to: null +23:10:21.413 [XNIO-1 task-2] jR-bJfDUQdCApJC7spQ2vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.413 [XNIO-1 task-2] jR-bJfDUQdCApJC7spQ2vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.413 [XNIO-1 task-2] jR-bJfDUQdCApJC7spQ2vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1e5f168, base path is set to: null +23:10:21.413 [XNIO-1 task-2] jR-bJfDUQdCApJC7spQ2vA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1e5f168", "e1e5f168", serviceId) +23:10:21.426 [XNIO-1 task-2] 4-e-laIHQvCjKE41LvcThg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.426 [XNIO-1 task-2] 4-e-laIHQvCjKE41LvcThg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.426 [XNIO-1 task-2] 4-e-laIHQvCjKE41LvcThg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.426 [XNIO-1 task-2] 4-e-laIHQvCjKE41LvcThg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.441 [XNIO-1 task-2] D0WcqWFsSfGfEA3t7PqDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.441 [XNIO-1 task-2] D0WcqWFsSfGfEA3t7PqDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.441 [XNIO-1 task-2] D0WcqWFsSfGfEA3t7PqDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.441 [XNIO-1 task-2] D0WcqWFsSfGfEA3t7PqDxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.457 [XNIO-1 task-2] mxPxcr-0QkWcnL5K7ZNe_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.457 [XNIO-1 task-2] mxPxcr-0QkWcnL5K7ZNe_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.458 [XNIO-1 task-2] mxPxcr-0QkWcnL5K7ZNe_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.460 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:803a9648 +23:10:21.466 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.466 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.466 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.466 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.466 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.466 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.466 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:21.467 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG com.networknt.schema.TypeValidator debug - validate( "f9ce4294-2983-4c27-bd7e-6322fa2d", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:21.467 [XNIO-1 task-2] 3ddUKydHRpCZD9S7xrQ3iA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.481 [XNIO-1 task-2] uxnV6YscRUGmUREKqc6dLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.481 [XNIO-1 task-2] uxnV6YscRUGmUREKqc6dLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.481 [XNIO-1 task-2] uxnV6YscRUGmUREKqc6dLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.482 [XNIO-1 task-2] uxnV6YscRUGmUREKqc6dLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.494 [XNIO-1 task-2] hxHg3Zi_Qnmn1XzpkxNgCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.495 [XNIO-1 task-2] hxHg3Zi_Qnmn1XzpkxNgCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.495 [XNIO-1 task-2] hxHg3Zi_Qnmn1XzpkxNgCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.495 [XNIO-1 task-2] hxHg3Zi_Qnmn1XzpkxNgCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.510 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.511 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.511 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.511 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.512 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.512 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.512 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:21.512 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "ecc850b6-5640-4050-ae0b-47d1d0df", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:21.512 [XNIO-1 task-2] Y-ai-UJ6T6eRovLipknyOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.526 [XNIO-1 task-2] CqA4XVCcS_ymhDDIqwWsMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f404d05, base path is set to: null +23:10:21.526 [XNIO-1 task-2] CqA4XVCcS_ymhDDIqwWsMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.527 [XNIO-1 task-2] CqA4XVCcS_ymhDDIqwWsMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.527 [XNIO-1 task-2] CqA4XVCcS_ymhDDIqwWsMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f404d05, base path is set to: null +23:10:21.527 [XNIO-1 task-2] CqA4XVCcS_ymhDDIqwWsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f404d05", "0f404d05", serviceId) +23:10:21.529 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0f404d05 +23:10:21.545 [XNIO-1 task-2] ze55QGHEQwqVjyS6iSJ22g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.545 [XNIO-1 task-2] ze55QGHEQwqVjyS6iSJ22g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.545 [XNIO-1 task-2] ze55QGHEQwqVjyS6iSJ22g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.545 [XNIO-1 task-2] ze55QGHEQwqVjyS6iSJ22g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.555 [XNIO-1 task-2] Jj-6RsDyQ2iyKjCXz1BwXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce23751b, base path is set to: null +23:10:21.556 [XNIO-1 task-2] Jj-6RsDyQ2iyKjCXz1BwXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.556 [XNIO-1 task-2] Jj-6RsDyQ2iyKjCXz1BwXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.556 [XNIO-1 task-2] Jj-6RsDyQ2iyKjCXz1BwXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce23751b, base path is set to: null +23:10:21.556 [XNIO-1 task-2] Jj-6RsDyQ2iyKjCXz1BwXg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce23751b", "ce23751b", serviceId) +23:10:21.557 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6b6e3c9d-7532-4f1c-8646-b5a77e38036f +23:10:21.579 [XNIO-1 task-2] qcwTo3_wTfqJHujLVZXIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.579 [XNIO-1 task-2] qcwTo3_wTfqJHujLVZXIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.579 [XNIO-1 task-2] qcwTo3_wTfqJHujLVZXIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.579 [XNIO-1 task-2] qcwTo3_wTfqJHujLVZXIcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.590 [XNIO-1 task-2] vr5YyDEHSQWUACWPcHHbLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.591 [XNIO-1 task-2] vr5YyDEHSQWUACWPcHHbLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.591 [XNIO-1 task-2] vr5YyDEHSQWUACWPcHHbLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.591 [XNIO-1 task-2] vr5YyDEHSQWUACWPcHHbLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.593 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4c4ee68a-f6e5-4592-9a24-d13a22683f10 +23:10:21.600 [XNIO-1 task-2] DP7NbEEHS6qYLmYfLv-TyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.602 [XNIO-1 task-2] DP7NbEEHS6qYLmYfLv-TyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.602 [XNIO-1 task-2] DP7NbEEHS6qYLmYfLv-TyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.602 [XNIO-1 task-2] DP7NbEEHS6qYLmYfLv-TyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.616 [XNIO-1 task-2] QH6sc8y4QxmBLmy2jS561g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28535104, base path is set to: null +23:10:21.616 [XNIO-1 task-2] QH6sc8y4QxmBLmy2jS561g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.616 [XNIO-1 task-2] QH6sc8y4QxmBLmy2jS561g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.616 [XNIO-1 task-2] QH6sc8y4QxmBLmy2jS561g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28535104, base path is set to: null +23:10:21.616 [XNIO-1 task-2] QH6sc8y4QxmBLmy2jS561g DEBUG com.networknt.schema.TypeValidator debug - validate( "28535104", "28535104", serviceId) +23:10:21.624 [XNIO-1 task-2] bjCNnx6RTl2oR78I7_a66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28535104 +23:10:21.624 [XNIO-1 task-2] bjCNnx6RTl2oR78I7_a66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.624 [XNIO-1 task-2] bjCNnx6RTl2oR78I7_a66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.624 [XNIO-1 task-2] bjCNnx6RTl2oR78I7_a66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28535104 +23:10:21.634 [XNIO-1 task-2] PJiVBYAfRLWMAWzIZXq-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.634 [XNIO-1 task-2] PJiVBYAfRLWMAWzIZXq-8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.634 [XNIO-1 task-2] PJiVBYAfRLWMAWzIZXq-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.648 [XNIO-1 task-2] HJ7MpMweQGaK0ELo9Ap7zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28535104, base path is set to: null +23:10:21.650 [XNIO-1 task-2] HJ7MpMweQGaK0ELo9Ap7zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.650 [XNIO-1 task-2] HJ7MpMweQGaK0ELo9Ap7zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.651 [XNIO-1 task-2] HJ7MpMweQGaK0ELo9Ap7zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28535104, base path is set to: null +23:10:21.651 [XNIO-1 task-2] HJ7MpMweQGaK0ELo9Ap7zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "28535104", "28535104", serviceId) +23:10:21.660 [XNIO-1 task-2] T2M1hgLrRc-jlcBrjRvLBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.660 [XNIO-1 task-2] T2M1hgLrRc-jlcBrjRvLBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.660 [XNIO-1 task-2] T2M1hgLrRc-jlcBrjRvLBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.660 [XNIO-1 task-2] T2M1hgLrRc-jlcBrjRvLBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.678 [XNIO-1 task-2] Z4RdC9zuSdiBEPo86UyM3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.678 [XNIO-1 task-2] Z4RdC9zuSdiBEPo86UyM3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.678 [XNIO-1 task-2] Z4RdC9zuSdiBEPo86UyM3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.688 [XNIO-1 task-2] EHWeBO1dT4qXfcXzRMJNkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28535104 +23:10:21.688 [XNIO-1 task-2] EHWeBO1dT4qXfcXzRMJNkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.688 [XNIO-1 task-2] EHWeBO1dT4qXfcXzRMJNkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.688 [XNIO-1 task-2] EHWeBO1dT4qXfcXzRMJNkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28535104 +23:10:21.692 [XNIO-1 task-2] vICVRriLSIyNzY509tf4Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28535104, base path is set to: null +23:10:21.692 [XNIO-1 task-2] vICVRriLSIyNzY509tf4Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.692 [XNIO-1 task-2] vICVRriLSIyNzY509tf4Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.692 [XNIO-1 task-2] vICVRriLSIyNzY509tf4Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28535104, base path is set to: null +23:10:21.693 [XNIO-1 task-2] vICVRriLSIyNzY509tf4Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "28535104", "28535104", serviceId) +23:10:21.708 [XNIO-1 task-2] -aSWpDh3RvCfYIIFmvdskg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.708 [XNIO-1 task-2] -aSWpDh3RvCfYIIFmvdskg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.708 [XNIO-1 task-2] -aSWpDh3RvCfYIIFmvdskg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.708 [XNIO-1 task-2] -aSWpDh3RvCfYIIFmvdskg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.717 [XNIO-1 task-2] _k3drsFxSoSedXhGsv0Q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17c3bb79 +23:10:21.718 [XNIO-1 task-2] _k3drsFxSoSedXhGsv0Q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.718 [XNIO-1 task-2] _k3drsFxSoSedXhGsv0Q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.718 [XNIO-1 task-2] _k3drsFxSoSedXhGsv0Q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17c3bb79 +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:21.726 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG com.networknt.schema.TypeValidator debug - validate( "88f9671f-c15a-45b7-b416-3216da57", {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:21.727 [XNIO-1 task-2] rx-HhTRFTT2rPlnwYBkkrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5cda2061","serviceName":"88f9671f-c15a-45b7-b416-3216da57","serviceDesc":"614e207b-c806-4c5c-8813-2174aed3b0db","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.736 [XNIO-1 task-2] K9eFRNgwQIywpljKvqDLEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.737 [XNIO-1 task-2] K9eFRNgwQIywpljKvqDLEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.737 [XNIO-1 task-2] K9eFRNgwQIywpljKvqDLEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.752 [XNIO-1 task-2] N0HCjozDSXK4sAaK1QxaTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.752 [XNIO-1 task-2] N0HCjozDSXK4sAaK1QxaTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.752 [XNIO-1 task-2] N0HCjozDSXK4sAaK1QxaTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.766 [XNIO-1 task-2] hVjyu_6IS3iJFSj6HrzsxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17c3bb79, base path is set to: null +23:10:21.766 [XNIO-1 task-2] hVjyu_6IS3iJFSj6HrzsxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.766 [XNIO-1 task-2] hVjyu_6IS3iJFSj6HrzsxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.766 [XNIO-1 task-2] hVjyu_6IS3iJFSj6HrzsxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17c3bb79, base path is set to: null +23:10:21.766 [XNIO-1 task-2] hVjyu_6IS3iJFSj6HrzsxA DEBUG com.networknt.schema.TypeValidator debug - validate( "17c3bb79", "17c3bb79", serviceId) +23:10:21.772 [XNIO-1 task-2] adqOrO-XQGOi3MNgiEh3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.772 [XNIO-1 task-2] adqOrO-XQGOi3MNgiEh3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.772 [XNIO-1 task-2] adqOrO-XQGOi3MNgiEh3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.772 [XNIO-1 task-2] adqOrO-XQGOi3MNgiEh3AA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.789 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.789 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.790 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.790 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.790 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.790 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9358c89c-4ef5-46fa-ace3-3ade40bcd0ca", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:21.790 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "17c3bb79", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:21.790 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:21.790 [XNIO-1 task-2] X0jENa5dQp-c49bqxF7CcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"17c3bb79","serviceName":"f9ce4294-2983-4c27-bd7e-6322fa2d","serviceDesc":"9358c89c-4ef5-46fa-ace3-3ade40bcd0ca","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.802 [XNIO-1 task-2] 20AdcisERG-2gxBbADJYtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4bf3f85e +23:10:21.802 [XNIO-1 task-2] 20AdcisERG-2gxBbADJYtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.802 [XNIO-1 task-2] 20AdcisERG-2gxBbADJYtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.802 [XNIO-1 task-2] 20AdcisERG-2gxBbADJYtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4bf3f85e +23:10:21.808 [XNIO-1 task-2] -Qk5gxfwRcq6UWyIymApuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/803a9648, base path is set to: null +23:10:21.808 [XNIO-1 task-2] -Qk5gxfwRcq6UWyIymApuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.808 [XNIO-1 task-2] -Qk5gxfwRcq6UWyIymApuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.808 [XNIO-1 task-2] -Qk5gxfwRcq6UWyIymApuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/803a9648, base path is set to: null +23:10:21.809 [XNIO-1 task-2] -Qk5gxfwRcq6UWyIymApuA DEBUG com.networknt.schema.TypeValidator debug - validate( "803a9648", "803a9648", serviceId) +23:10:21.811 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:803a9648 +23:10:21.818 [XNIO-1 task-2] oNtJ4ENqTCil_RYsyzhmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.818 [XNIO-1 task-2] oNtJ4ENqTCil_RYsyzhmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.818 [XNIO-1 task-2] oNtJ4ENqTCil_RYsyzhmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.818 [XNIO-1 task-2] oNtJ4ENqTCil_RYsyzhmkg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.822 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ca863491-fbe7-4c9a-8470-1b43a71314a7 +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG com.networknt.schema.TypeValidator debug - validate( "8026e994-80dc-435a-83de-4473cb68151b", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG com.networknt.schema.TypeValidator debug - validate( "32081edf", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:21.828 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:21.829 [XNIO-1 task-2] er3b8W9oS4GxW6aUJt8OJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.838 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.838 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.838 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.839 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.839 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:21.839 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:21.839 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b3a77c15", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:21.839 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:21.839 [XNIO-1 task-2] FBCInsomQHC-3Efay-xTwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3a77c15","serviceName":"ecc850b6-5640-4050-ae0b-47d1d0df","serviceDesc":"8dc12fb5-b34c-4a8e-8ff0-def62d7d62b8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:21.853 [XNIO-1 task-2] x2tqVqrmQk6dC9nnugNM5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2030d7c7 +23:10:21.853 [XNIO-1 task-2] x2tqVqrmQk6dC9nnugNM5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.853 [XNIO-1 task-2] x2tqVqrmQk6dC9nnugNM5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.853 [XNIO-1 task-2] x2tqVqrmQk6dC9nnugNM5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2030d7c7 +23:10:21.860 [XNIO-1 task-2] e-ydaR8_Tc6zsIrozlFdxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/985d63b7, base path is set to: null +23:10:21.861 [XNIO-1 task-2] e-ydaR8_Tc6zsIrozlFdxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.861 [XNIO-1 task-2] e-ydaR8_Tc6zsIrozlFdxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.861 [XNIO-1 task-2] e-ydaR8_Tc6zsIrozlFdxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/985d63b7, base path is set to: null +23:10:21.861 [XNIO-1 task-2] e-ydaR8_Tc6zsIrozlFdxw DEBUG com.networknt.schema.TypeValidator debug - validate( "985d63b7", "985d63b7", serviceId) +23:10:21.872 [XNIO-1 task-2] nIOcYKY5RjyrGMxT1SBM6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.872 [XNIO-1 task-2] nIOcYKY5RjyrGMxT1SBM6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.872 [XNIO-1 task-2] nIOcYKY5RjyrGMxT1SBM6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.872 [XNIO-1 task-2] nIOcYKY5RjyrGMxT1SBM6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.881 [XNIO-1 task-2] kNdqdzX6TH-ciAQtSFcfxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17c3bb79 +23:10:21.881 [XNIO-1 task-2] kNdqdzX6TH-ciAQtSFcfxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.881 [XNIO-1 task-2] kNdqdzX6TH-ciAQtSFcfxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.881 [XNIO-1 task-2] kNdqdzX6TH-ciAQtSFcfxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/17c3bb79 +23:10:21.890 [XNIO-1 task-2] Xmc2k2qCQjOmEl-uoK5S5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17c3bb79, base path is set to: null +23:10:21.890 [XNIO-1 task-2] Xmc2k2qCQjOmEl-uoK5S5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.890 [XNIO-1 task-2] Xmc2k2qCQjOmEl-uoK5S5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.890 [XNIO-1 task-2] Xmc2k2qCQjOmEl-uoK5S5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17c3bb79, base path is set to: null +23:10:21.890 [XNIO-1 task-2] Xmc2k2qCQjOmEl-uoK5S5A DEBUG com.networknt.schema.TypeValidator debug - validate( "17c3bb79", "17c3bb79", serviceId) +23:10:21.905 [XNIO-1 task-2] t73L2bThSYuGd8aWrwOt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2030d7c7 +23:10:21.905 [XNIO-1 task-2] t73L2bThSYuGd8aWrwOt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.905 [XNIO-1 task-2] t73L2bThSYuGd8aWrwOt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.905 [XNIO-1 task-2] t73L2bThSYuGd8aWrwOt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2030d7c7 +23:10:21.914 [XNIO-1 task-2] NNBYjwvYQE6GmKM6yOFK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5cda2061, base path is set to: null +23:10:21.914 [XNIO-1 task-2] NNBYjwvYQE6GmKM6yOFK8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.914 [XNIO-1 task-2] NNBYjwvYQE6GmKM6yOFK8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.914 [XNIO-1 task-2] NNBYjwvYQE6GmKM6yOFK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5cda2061, base path is set to: null +23:10:21.914 [XNIO-1 task-2] NNBYjwvYQE6GmKM6yOFK8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5cda2061", "5cda2061", serviceId) +23:10:21.935 [XNIO-1 task-2] VOTk1ltRTQ2jKLNz16_t2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b3a77c15, base path is set to: null +23:10:21.936 [XNIO-1 task-2] VOTk1ltRTQ2jKLNz16_t2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.937 [XNIO-1 task-2] VOTk1ltRTQ2jKLNz16_t2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.937 [XNIO-1 task-2] VOTk1ltRTQ2jKLNz16_t2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b3a77c15, base path is set to: null +23:10:21.937 [XNIO-1 task-2] VOTk1ltRTQ2jKLNz16_t2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b3a77c15", "b3a77c15", serviceId) +23:10:21.951 [XNIO-1 task-2] lEyIx163RaO-D8aw-F0T0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4bf3f85e +23:10:21.951 [XNIO-1 task-2] lEyIx163RaO-D8aw-F0T0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.951 [XNIO-1 task-2] lEyIx163RaO-D8aw-F0T0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.951 [XNIO-1 task-2] lEyIx163RaO-D8aw-F0T0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4bf3f85e +23:10:21.954 [XNIO-1 task-2] YSkaZ3yOQNWSZz0fKLBG_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.954 [XNIO-1 task-2] YSkaZ3yOQNWSZz0fKLBG_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.954 [XNIO-1 task-2] YSkaZ3yOQNWSZz0fKLBG_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.954 [XNIO-1 task-2] YSkaZ3yOQNWSZz0fKLBG_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.964 [XNIO-1 task-2] s3U15Zj_TNuqLV6_6Hpvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4bf3f85e, base path is set to: null +23:10:21.965 [XNIO-1 task-2] s3U15Zj_TNuqLV6_6Hpvnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.965 [XNIO-1 task-2] s3U15Zj_TNuqLV6_6Hpvnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.965 [XNIO-1 task-2] s3U15Zj_TNuqLV6_6Hpvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4bf3f85e, base path is set to: null +23:10:21.965 [XNIO-1 task-2] s3U15Zj_TNuqLV6_6Hpvnw DEBUG com.networknt.schema.TypeValidator debug - validate( "4bf3f85e", "4bf3f85e", serviceId) +23:10:21.965 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4c4ee68a-f6e5-4592-9a24-d13a22683f10 +23:10:21.967 [XNIO-1 task-2] Z8YnEtfhQPidmE3q09ytCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4bf3f85e +23:10:21.968 [XNIO-1 task-2] Z8YnEtfhQPidmE3q09ytCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.968 [XNIO-1 task-2] Z8YnEtfhQPidmE3q09ytCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.968 [XNIO-1 task-2] Z8YnEtfhQPidmE3q09ytCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4bf3f85e +23:10:21.981 [XNIO-1 task-2] 8wbaUStlSCCVvT_gGCZXDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/32081edf, base path is set to: null +23:10:21.982 [XNIO-1 task-2] 8wbaUStlSCCVvT_gGCZXDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.982 [XNIO-1 task-2] 8wbaUStlSCCVvT_gGCZXDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:21.982 [XNIO-1 task-2] 8wbaUStlSCCVvT_gGCZXDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/32081edf, base path is set to: null +23:10:21.983 [XNIO-1 task-2] 8wbaUStlSCCVvT_gGCZXDg DEBUG com.networknt.schema.TypeValidator debug - validate( "32081edf", "32081edf", serviceId) +23:10:21.988 [XNIO-1 task-2] senoTQmwQH6p2TKzRsArsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/32081edf +23:10:21.988 [XNIO-1 task-2] senoTQmwQH6p2TKzRsArsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:21.988 [XNIO-1 task-2] senoTQmwQH6p2TKzRsArsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:21.988 [XNIO-1 task-2] senoTQmwQH6p2TKzRsArsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/32081edf +23:10:21.992 [XNIO-1 task-2] QzRfE5CiTDWMq-Sk2UvzRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.992 [XNIO-1 task-2] QzRfE5CiTDWMq-Sk2UvzRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:21.992 [XNIO-1 task-2] QzRfE5CiTDWMq-Sk2UvzRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:21.992 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c24ca4ad +23:10:21.992 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c24ca4ad +23:10:22.016 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.016 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.016 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.017 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.017 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.017 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG com.networknt.schema.TypeValidator debug - validate( "8026e994-80dc-435a-83de-4473cb68151b", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.017 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG com.networknt.schema.TypeValidator debug - validate( "32081edf", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.017 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.017 [XNIO-1 task-2] 6uP3hojLSM6VHZBqvxwZ2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.027 [XNIO-1 task-2] DR-GoCcfR1uhKIMjeQ0UfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.027 [XNIO-1 task-2] DR-GoCcfR1uhKIMjeQ0UfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.028 [XNIO-1 task-2] DR-GoCcfR1uhKIMjeQ0UfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.040 [XNIO-1 task-2] RI3MN93jQiqdTz4IqjNIWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.040 [XNIO-1 task-2] RI3MN93jQiqdTz4IqjNIWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.040 [XNIO-1 task-2] RI3MN93jQiqdTz4IqjNIWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.040 [XNIO-1 task-2] RI3MN93jQiqdTz4IqjNIWA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.046 [XNIO-1 task-2] nivzBJYdQb-ocu05Xs8Ocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8a3be0cd +23:10:22.046 [XNIO-1 task-2] nivzBJYdQb-ocu05Xs8Ocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.046 [XNIO-1 task-2] nivzBJYdQb-ocu05Xs8Ocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.047 [XNIO-1 task-2] nivzBJYdQb-ocu05Xs8Ocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8a3be0cd +23:10:22.051 [XNIO-1 task-2] PaX7o_XNSEK6aY8Cn7_-qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b15d584, base path is set to: null +23:10:22.052 [XNIO-1 task-2] PaX7o_XNSEK6aY8Cn7_-qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.052 [XNIO-1 task-2] PaX7o_XNSEK6aY8Cn7_-qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.052 [XNIO-1 task-2] PaX7o_XNSEK6aY8Cn7_-qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b15d584, base path is set to: null +23:10:22.052 [XNIO-1 task-2] PaX7o_XNSEK6aY8Cn7_-qg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b15d584", "8b15d584", serviceId) +23:10:22.054 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.054 [XNIO-1 task-2] aBbT-0-iSoW1a0j8DSpy7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.055 [XNIO-1 task-2] aBbT-0-iSoW1a0j8DSpy7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.055 [XNIO-1 task-2] aBbT-0-iSoW1a0j8DSpy7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.069 [XNIO-1 task-2] d1bea01LTt2TIXXl8qFUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8a3be0cd +23:10:22.070 [XNIO-1 task-2] d1bea01LTt2TIXXl8qFUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.070 [XNIO-1 task-2] d1bea01LTt2TIXXl8qFUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.070 [XNIO-1 task-2] d1bea01LTt2TIXXl8qFUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8a3be0cd +23:10:22.073 [XNIO-1 task-2] t9hKlgutQqy-ZgXd0CWXNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.073 [XNIO-1 task-2] t9hKlgutQqy-ZgXd0CWXNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.073 [XNIO-1 task-2] t9hKlgutQqy-ZgXd0CWXNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.077 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6b6e3c9d-7532-4f1c-8646-b5a77e38036f +23:10:22.094 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e0b8341e-b616-4983-b8a6-83a9b7609a22 +23:10:22.097 [XNIO-1 task-2] Y4S7KcqdQ2qkfPBZ7dmHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b15d584 +23:10:22.097 [XNIO-1 task-2] Y4S7KcqdQ2qkfPBZ7dmHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.097 [XNIO-1 task-2] Y4S7KcqdQ2qkfPBZ7dmHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.098 [XNIO-1 task-2] Y4S7KcqdQ2qkfPBZ7dmHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b15d584 +23:10:22.104 [XNIO-1 task-2] NctRyQhLRri4NT0VPq5CTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.104 [XNIO-1 task-2] NctRyQhLRri4NT0VPq5CTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.104 [XNIO-1 task-2] NctRyQhLRri4NT0VPq5CTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.111 [XNIO-1 task-2] fw5dRcN5SSqWQOcsnBQ61Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a3be0cd, base path is set to: null +23:10:22.111 [XNIO-1 task-2] fw5dRcN5SSqWQOcsnBQ61Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.111 [XNIO-1 task-2] fw5dRcN5SSqWQOcsnBQ61Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.111 [XNIO-1 task-2] fw5dRcN5SSqWQOcsnBQ61Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a3be0cd, base path is set to: null +23:10:22.111 [XNIO-1 task-2] fw5dRcN5SSqWQOcsnBQ61Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8a3be0cd", "8a3be0cd", serviceId) +23:10:22.124 [XNIO-1 task-2] VmPzhzGjQZ2GqF0RE4rmnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b15d584, base path is set to: null +23:10:22.124 [XNIO-1 task-2] VmPzhzGjQZ2GqF0RE4rmnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.124 [XNIO-1 task-2] VmPzhzGjQZ2GqF0RE4rmnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.124 [XNIO-1 task-2] VmPzhzGjQZ2GqF0RE4rmnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b15d584, base path is set to: null +23:10:22.124 [XNIO-1 task-2] VmPzhzGjQZ2GqF0RE4rmnw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b15d584", "8b15d584", serviceId) +23:10:22.127 [XNIO-1 task-2] P8zs4y5lQMKmx3Qr-2WmXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.127 [XNIO-1 task-2] P8zs4y5lQMKmx3Qr-2WmXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.127 [XNIO-1 task-2] P8zs4y5lQMKmx3Qr-2WmXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "edf19629-33c1-4896-83c3-1893e7a1", {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.140 [XNIO-1 task-2] 88Kdt3YsTMmgLAsS9Cs3Jg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8a8f3bbe","serviceName":"edf19629-33c1-4896-83c3-1893e7a1","serviceDesc":"c79fdd71-aa1e-4267-9dd1-fe6303645ef7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.150 [XNIO-1 task-2] xjKTgCRtRDGuGayVZ9lXEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b15d584, base path is set to: null +23:10:22.151 [XNIO-1 task-2] xjKTgCRtRDGuGayVZ9lXEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.151 [XNIO-1 task-2] xjKTgCRtRDGuGayVZ9lXEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.151 [XNIO-1 task-2] xjKTgCRtRDGuGayVZ9lXEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b15d584, base path is set to: null +23:10:22.151 [XNIO-1 task-2] xjKTgCRtRDGuGayVZ9lXEg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b15d584", "8b15d584", serviceId) +23:10:22.155 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1dc41e2c-d3b5-4562-903d-6975e9b9b62b", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG com.networknt.schema.TypeValidator debug - validate( "109b1fa6", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.156 [XNIO-1 task-2] j1G9Oci3RlWczMQlNB8a2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.170 [XNIO-1 task-2] 4BT5AXJ_Rx6O0Gt1585A8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.170 [XNIO-1 task-2] 4BT5AXJ_Rx6O0Gt1585A8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.170 [XNIO-1 task-2] 4BT5AXJ_Rx6O0Gt1585A8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.179 [XNIO-1 task-2] HKkqaKXNTTSfcNkVaqec4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b15d584 +23:10:22.179 [XNIO-1 task-2] HKkqaKXNTTSfcNkVaqec4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.179 [XNIO-1 task-2] HKkqaKXNTTSfcNkVaqec4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.179 [XNIO-1 task-2] HKkqaKXNTTSfcNkVaqec4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b15d584 +23:10:22.190 [XNIO-1 task-2] ptFvmr9FQGSiTzPRJjsylw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.191 [XNIO-1 task-2] ptFvmr9FQGSiTzPRJjsylw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.191 [XNIO-1 task-2] ptFvmr9FQGSiTzPRJjsylw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.204 [XNIO-1 task-2] NzCwFv1VTwG_kjaoh2jEtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.205 [XNIO-1 task-2] NzCwFv1VTwG_kjaoh2jEtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.205 [XNIO-1 task-2] NzCwFv1VTwG_kjaoh2jEtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.205 [XNIO-1 task-2] NzCwFv1VTwG_kjaoh2jEtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.216 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.216 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.216 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.216 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.216 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.216 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.217 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.217 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG com.networknt.schema.TypeValidator debug - validate( "479ad441-23bf-420c-b6ba-c23ea363", {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.217 [XNIO-1 task-2] gleTqlALTcWMHTZycoxkWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69880945","serviceName":"479ad441-23bf-420c-b6ba-c23ea363","serviceDesc":"3cda6ff9-69f8-409b-8773-61e49ced917e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.229 [XNIO-1 task-2] SpCL1-MqSwCrpioRIB0Ttg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/69880945, base path is set to: null +23:10:22.229 [XNIO-1 task-2] SpCL1-MqSwCrpioRIB0Ttg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.229 [XNIO-1 task-2] SpCL1-MqSwCrpioRIB0Ttg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.229 [XNIO-1 task-2] SpCL1-MqSwCrpioRIB0Ttg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/69880945, base path is set to: null +23:10:22.229 [XNIO-1 task-2] SpCL1-MqSwCrpioRIB0Ttg DEBUG com.networknt.schema.TypeValidator debug - validate( "69880945", "69880945", serviceId) +23:10:22.234 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:31d550ff-52f1-4ba0-8c3a-cd0b182adb23 +23:10:22.236 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.236 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.236 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.237 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.237 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.237 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.237 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.237 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c10e7df-939a-4525-b0db-079cd928", {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.237 [XNIO-1 task-2] UvcQc0fqQW2Kg9Znxi2yKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32081edf","serviceName":"0c10e7df-939a-4525-b0db-079cd928","serviceDesc":"8026e994-80dc-435a-83de-4473cb68151b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.247 [XNIO-1 task-2] gqQRsDThT1SS1pqsXx0kfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/32081edf, base path is set to: null +23:10:22.247 [XNIO-1 task-2] gqQRsDThT1SS1pqsXx0kfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.247 [XNIO-1 task-2] gqQRsDThT1SS1pqsXx0kfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.247 [XNIO-1 task-2] gqQRsDThT1SS1pqsXx0kfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/32081edf, base path is set to: null +23:10:22.247 [XNIO-1 task-2] gqQRsDThT1SS1pqsXx0kfg DEBUG com.networknt.schema.TypeValidator debug - validate( "32081edf", "32081edf", serviceId) +23:10:22.260 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.260 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.260 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.260 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.260 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.261 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.261 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ae8980f2", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.261 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.261 [XNIO-1 task-2] wcW40yHnTjCzgnQAqwkh1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.268 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd0c0ed0 +23:10:22.270 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd0c0ed0 +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG com.networknt.schema.TypeValidator debug - validate( "4bf18fb8-d16b-4d50-bade-8eab9a9f21b9", {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG com.networknt.schema.TypeValidator debug - validate( "457c561e", {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.277 [XNIO-1 task-2] Ucm7IZDHQVS6jal6zvecRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"457c561e","serviceName":"1a5406e7-2d17-4a94-9a32-c2fab7fd","serviceDesc":"4bf18fb8-d16b-4d50-bade-8eab9a9f21b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.289 [XNIO-1 task-2] iFeHMqE1RxiruTl-PhvbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8a8f3bbe +23:10:22.289 [XNIO-1 task-2] iFeHMqE1RxiruTl-PhvbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.289 [XNIO-1 task-2] iFeHMqE1RxiruTl-PhvbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.289 [XNIO-1 task-2] iFeHMqE1RxiruTl-PhvbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8a8f3bbe +23:10:22.305 [XNIO-1 task-2] HkWXd4N7Qdu2Hc7I023KqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.305 [XNIO-1 task-2] HkWXd4N7Qdu2Hc7I023KqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.305 [XNIO-1 task-2] HkWXd4N7Qdu2Hc7I023KqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.305 [XNIO-1 task-2] HkWXd4N7Qdu2Hc7I023KqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.311 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9553c03c-a402-4137-b03a-972d0c4df2ab +23:10:22.315 [XNIO-1 task-2] 84GucfFyRzqma4HnBZNSLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cc5553e1 +23:10:22.315 [XNIO-1 task-2] 84GucfFyRzqma4HnBZNSLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.315 [XNIO-1 task-2] 84GucfFyRzqma4HnBZNSLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.315 [XNIO-1 task-2] 84GucfFyRzqma4HnBZNSLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cc5553e1 +23:10:22.322 [XNIO-1 task-2] Hd_Yi7o3Q8ScSqYrw9W3Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cc5553e1, base path is set to: null +23:10:22.322 [XNIO-1 task-2] Hd_Yi7o3Q8ScSqYrw9W3Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.322 [XNIO-1 task-2] Hd_Yi7o3Q8ScSqYrw9W3Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.322 [XNIO-1 task-2] Hd_Yi7o3Q8ScSqYrw9W3Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cc5553e1, base path is set to: null +23:10:22.322 [XNIO-1 task-2] Hd_Yi7o3Q8ScSqYrw9W3Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "cc5553e1", "cc5553e1", serviceId) +23:10:22.337 [XNIO-1 task-2] kY5tKMhKQ6OfRJVLxdoz-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.337 [XNIO-1 task-2] kY5tKMhKQ6OfRJVLxdoz-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.337 [XNIO-1 task-2] kY5tKMhKQ6OfRJVLxdoz-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.351 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d4488d8-ec59-4e6c-916e-53f147804020 +23:10:22.356 [XNIO-1 task-2] DNiriNzXTXGQmiX7Zd2OAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.356 [XNIO-1 task-2] DNiriNzXTXGQmiX7Zd2OAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.356 [XNIO-1 task-2] DNiriNzXTXGQmiX7Zd2OAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.356 [XNIO-1 task-2] DNiriNzXTXGQmiX7Zd2OAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.363 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd0c0ed0 +23:10:22.367 [XNIO-1 task-2] YiBLqKgiRzKgmzCf30earg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/457c561e +23:10:22.367 [XNIO-1 task-2] YiBLqKgiRzKgmzCf30earg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.367 [XNIO-1 task-2] YiBLqKgiRzKgmzCf30earg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.367 [XNIO-1 task-2] YiBLqKgiRzKgmzCf30earg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/457c561e +23:10:22.373 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2d4488d8-ec59-4e6c-916e-53f147804020 +23:10:22.381 [XNIO-1 task-2] x9qvqSaZSI-yp0j-OkL7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c24ca4ad +23:10:22.381 [XNIO-1 task-2] x9qvqSaZSI-yp0j-OkL7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.381 [XNIO-1 task-2] x9qvqSaZSI-yp0j-OkL7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.381 [XNIO-1 task-2] x9qvqSaZSI-yp0j-OkL7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c24ca4ad +23:10:22.381 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c24ca4ad +23:10:22.392 [XNIO-1 task-2] CzzUYopNQROBwAIO3TlIeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.392 [XNIO-1 task-2] CzzUYopNQROBwAIO3TlIeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.392 [XNIO-1 task-2] CzzUYopNQROBwAIO3TlIeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.392 [XNIO-1 task-2] CzzUYopNQROBwAIO3TlIeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.402 [XNIO-1 task-2] sHUi9uwDR3y3EO0lBiRFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.402 [XNIO-1 task-2] sHUi9uwDR3y3EO0lBiRFtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.403 [XNIO-1 task-2] sHUi9uwDR3y3EO0lBiRFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.403 [XNIO-1 task-2] sHUi9uwDR3y3EO0lBiRFtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.413 [XNIO-1 task-2] qy-0QQC3Q8aedoqEkpR20A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.413 [XNIO-1 task-2] qy-0QQC3Q8aedoqEkpR20A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.414 [XNIO-1 task-2] qy-0QQC3Q8aedoqEkpR20A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.414 [XNIO-1 task-2] qy-0QQC3Q8aedoqEkpR20A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.428 [XNIO-1 task-2] UHOlew48QKCJFItZ3mWK7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.428 [XNIO-1 task-2] UHOlew48QKCJFItZ3mWK7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.428 [XNIO-1 task-2] UHOlew48QKCJFItZ3mWK7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.428 [XNIO-1 task-2] UHOlew48QKCJFItZ3mWK7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.439 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.439 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.439 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.439 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.439 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.439 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.440 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.440 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG com.networknt.schema.TypeValidator debug - validate( "5b46a489-28cc-477a-8c75-17308e38", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.440 [XNIO-1 task-2] aQs-kN6BTZ6BpxEDdhT1jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.448 [XNIO-1 task-2] MvahXgIwRFmu3-0i5e4hMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae8980f2, base path is set to: null +23:10:22.448 [XNIO-1 task-2] MvahXgIwRFmu3-0i5e4hMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.448 [XNIO-1 task-2] MvahXgIwRFmu3-0i5e4hMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.448 [XNIO-1 task-2] MvahXgIwRFmu3-0i5e4hMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae8980f2, base path is set to: null +23:10:22.448 [XNIO-1 task-2] MvahXgIwRFmu3-0i5e4hMw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae8980f2", "ae8980f2", serviceId) +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG com.networknt.schema.TypeValidator debug - validate( "dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG com.networknt.schema.TypeValidator debug - validate( "ae8980f2", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.463 [XNIO-1 task-2] x5H-EkGtTrKEBWgH28dbtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae8980f2","serviceName":"c3d1142f-4a7c-4a70-bc3d-4bc34b30","serviceDesc":"dbfcfdcc-0d4f-485d-b25f-2861a34f2e4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.471 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.471 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.471 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.471 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.472 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.472 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1dc41e2c-d3b5-4562-903d-6975e9b9b62b", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.472 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG com.networknt.schema.TypeValidator debug - validate( "109b1fa6", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.472 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.472 [XNIO-1 task-2] htHaOUapSGuqRjqO9LwhFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"109b1fa6","serviceName":"133ae4fd-3670-4409-924a-f8f878a0","serviceDesc":"1dc41e2c-d3b5-4562-903d-6975e9b9b62b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.492 [XNIO-1 task-2] zvMyRLsiSrWP-2hfn8p45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69880945 +23:10:22.492 [XNIO-1 task-2] zvMyRLsiSrWP-2hfn8p45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.492 [XNIO-1 task-2] zvMyRLsiSrWP-2hfn8p45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.492 [XNIO-1 task-2] zvMyRLsiSrWP-2hfn8p45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69880945 +23:10:22.502 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71866ad7 +23:10:22.503 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71866ad7 +23:10:22.517 [XNIO-1 task-2] JwwVIeBHS32-a3l69TXsxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/109b1fa6 +23:10:22.517 [XNIO-1 task-2] JwwVIeBHS32-a3l69TXsxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.517 [XNIO-1 task-2] JwwVIeBHS32-a3l69TXsxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.517 [XNIO-1 task-2] JwwVIeBHS32-a3l69TXsxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/109b1fa6 +23:10:22.524 [XNIO-1 task-2] 4zbpOXh3Qc6ndvN2UMKnzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/109b1fa6, base path is set to: null +23:10:22.524 [XNIO-1 task-2] 4zbpOXh3Qc6ndvN2UMKnzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.524 [XNIO-1 task-2] 4zbpOXh3Qc6ndvN2UMKnzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.524 [XNIO-1 task-2] 4zbpOXh3Qc6ndvN2UMKnzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/109b1fa6, base path is set to: null +23:10:22.524 [XNIO-1 task-2] 4zbpOXh3Qc6ndvN2UMKnzA DEBUG com.networknt.schema.TypeValidator debug - validate( "109b1fa6", "109b1fa6", serviceId) +23:10:22.543 [XNIO-1 task-2] lD8oYdiISH65qmvp8zAKIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae8980f2 +23:10:22.543 [XNIO-1 task-2] lD8oYdiISH65qmvp8zAKIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.543 [XNIO-1 task-2] lD8oYdiISH65qmvp8zAKIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.543 [XNIO-1 task-2] lD8oYdiISH65qmvp8zAKIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae8980f2 +23:10:22.545 [XNIO-1 task-2] -uz60GObRsKK5hWCfjwbRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae8980f2, base path is set to: null +23:10:22.546 [XNIO-1 task-2] -uz60GObRsKK5hWCfjwbRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.546 [XNIO-1 task-2] -uz60GObRsKK5hWCfjwbRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.546 [XNIO-1 task-2] -uz60GObRsKK5hWCfjwbRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae8980f2, base path is set to: null +23:10:22.546 [XNIO-1 task-2] -uz60GObRsKK5hWCfjwbRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ae8980f2", "ae8980f2", serviceId) +23:10:22.557 [XNIO-1 task-2] -yTGNeplR1G9N9mWCHGikw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.557 [XNIO-1 task-2] -yTGNeplR1G9N9mWCHGikw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.557 [XNIO-1 task-2] -yTGNeplR1G9N9mWCHGikw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG com.networknt.schema.TypeValidator debug - validate( "68bf61e1-80b2-4408-9079-e1d4ca86c911", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG com.networknt.schema.TypeValidator debug - validate( "44b5b7d5", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.576 [XNIO-1 task-2] pXZM2yIrRvK_EWRcXoDwZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.587 [XNIO-1 task-2] 55MGXCjNTTue-tpYXPoo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/14baa01e +23:10:22.587 [XNIO-1 task-2] 55MGXCjNTTue-tpYXPoo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.587 [XNIO-1 task-2] 55MGXCjNTTue-tpYXPoo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.587 [XNIO-1 task-2] 55MGXCjNTTue-tpYXPoo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/14baa01e +23:10:22.598 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:fd0c0ed0 +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG com.networknt.schema.TypeValidator debug - validate( "68bf61e1-80b2-4408-9079-e1d4ca86c911", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG com.networknt.schema.TypeValidator debug - validate( "44b5b7d5", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:22.603 [XNIO-1 task-2] equ8u1Y-SPO1O6WIdGEe2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.608 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:710632c5-f6ce-4aa1-b12c-7c2baf5f4b31 +23:10:22.614 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.614 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.614 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.614 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.614 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.614 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.614 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.615 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b46a489-28cc-477a-8c75-17308e38", {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.615 [XNIO-1 task-2] Ilwgjle9S8SaxWnDSEgsPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44b5b7d5","serviceName":"5b46a489-28cc-477a-8c75-17308e38","serviceDesc":"68bf61e1-80b2-4408-9079-e1d4ca86c911","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.635 [XNIO-1 task-2] TruCpjmjTd-uPTxi-SKTDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.636 [XNIO-1 task-2] TruCpjmjTd-uPTxi-SKTDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.636 [XNIO-1 task-2] TruCpjmjTd-uPTxi-SKTDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.651 [XNIO-1 task-2] MgvvmEEuTfC3XbpoTgrudQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44b5b7d5, base path is set to: null +23:10:22.651 [XNIO-1 task-2] MgvvmEEuTfC3XbpoTgrudQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.651 [XNIO-1 task-2] MgvvmEEuTfC3XbpoTgrudQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.651 [XNIO-1 task-2] MgvvmEEuTfC3XbpoTgrudQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44b5b7d5, base path is set to: null +23:10:22.651 [XNIO-1 task-2] MgvvmEEuTfC3XbpoTgrudQ DEBUG com.networknt.schema.TypeValidator debug - validate( "44b5b7d5", "44b5b7d5", serviceId) +23:10:22.659 [XNIO-1 task-2] uTl_8OmjS12IscrC5Rg_Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/932691fe +23:10:22.659 [XNIO-1 task-2] uTl_8OmjS12IscrC5Rg_Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.659 [XNIO-1 task-2] uTl_8OmjS12IscrC5Rg_Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.659 [XNIO-1 task-2] uTl_8OmjS12IscrC5Rg_Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/932691fe +23:10:22.662 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.663 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.663 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.664 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.664 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.664 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.664 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.664 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a341862-3622-4b82-9865-a97e4945", {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.664 [XNIO-1 task-2] AlZg3L80SvqrqBngRl9unA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"932691fe","serviceName":"7a341862-3622-4b82-9865-a97e4945","serviceDesc":"30783783-e523-4b22-8d49-9b35aaa1124d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.682 [XNIO-1 task-2] 2WrdRTjLTxW9c9sUz7Nltg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.683 [XNIO-1 task-2] 2WrdRTjLTxW9c9sUz7Nltg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.683 [XNIO-1 task-2] 2WrdRTjLTxW9c9sUz7Nltg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.683 [XNIO-1 task-2] 2WrdRTjLTxW9c9sUz7Nltg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.708 [XNIO-1 task-2] YoQEvvjhQCuJrmNjDmsEgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/932691fe, base path is set to: null +23:10:22.708 [XNIO-1 task-2] YoQEvvjhQCuJrmNjDmsEgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.708 [XNIO-1 task-2] YoQEvvjhQCuJrmNjDmsEgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.708 [XNIO-1 task-2] YoQEvvjhQCuJrmNjDmsEgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/932691fe, base path is set to: null +23:10:22.708 [XNIO-1 task-2] YoQEvvjhQCuJrmNjDmsEgw DEBUG com.networknt.schema.TypeValidator debug - validate( "932691fe", "932691fe", serviceId) +23:10:22.716 [XNIO-1 task-2] -CsfXrcaQCeiYstJH-CmIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.716 [XNIO-1 task-2] -CsfXrcaQCeiYstJH-CmIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.716 [XNIO-1 task-2] -CsfXrcaQCeiYstJH-CmIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.716 [XNIO-1 task-2] -CsfXrcaQCeiYstJH-CmIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.740 [XNIO-1 task-2] tK7YtVM1Rz21wCqAKjueGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.740 [XNIO-1 task-2] tK7YtVM1Rz21wCqAKjueGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.740 [XNIO-1 task-2] tK7YtVM1Rz21wCqAKjueGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.741 [XNIO-1 task-2] tK7YtVM1Rz21wCqAKjueGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.750 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71866ad7 +23:10:22.750 [XNIO-1 task-2] o4t7DwAgRfiwpXKIWlj_NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.750 [XNIO-1 task-2] o4t7DwAgRfiwpXKIWlj_NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.750 [XNIO-1 task-2] o4t7DwAgRfiwpXKIWlj_NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.751 [XNIO-1 task-2] o4t7DwAgRfiwpXKIWlj_NQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.761 [XNIO-1 task-2] gDdH6QLHQBGOOu-by0N6zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.761 [XNIO-1 task-2] gDdH6QLHQBGOOu-by0N6zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.761 [XNIO-1 task-2] gDdH6QLHQBGOOu-by0N6zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.776 [XNIO-1 task-2] FdBOtsd1TW2zK44_gf8B7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db07e121 +23:10:22.776 [XNIO-1 task-2] FdBOtsd1TW2zK44_gf8B7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.776 [XNIO-1 task-2] FdBOtsd1TW2zK44_gf8B7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.776 [XNIO-1 task-2] FdBOtsd1TW2zK44_gf8B7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db07e121 +23:10:22.777 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:71866ad7 +23:10:22.784 [XNIO-1 task-2] cGEvkFKOSVeWrK9QFM9ujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.784 [XNIO-1 task-2] cGEvkFKOSVeWrK9QFM9ujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.784 [XNIO-1 task-2] cGEvkFKOSVeWrK9QFM9ujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.807 [XNIO-1 task-2] 8QntY5-1S9G0p6L19LS2WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.807 [XNIO-1 task-2] 8QntY5-1S9G0p6L19LS2WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.808 [XNIO-1 task-2] 8QntY5-1S9G0p6L19LS2WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.808 [XNIO-1 task-2] 8QntY5-1S9G0p6L19LS2WQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.824 [XNIO-1 task-2] Z8QR6GM2RxKpydICaLkE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b486d32a +23:10:22.824 [XNIO-1 task-2] Z8QR6GM2RxKpydICaLkE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.824 [XNIO-1 task-2] Z8QR6GM2RxKpydICaLkE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.824 [XNIO-1 task-2] Z8QR6GM2RxKpydICaLkE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b486d32a +23:10:22.834 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.834 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.834 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.834 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.834 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.834 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.835 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.835 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "590f225b-4641-4c12-935e-58fa67c2", {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.835 [XNIO-1 task-2] AR1JSNrhSIOeRF9TWIoAVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db07e121","serviceName":"590f225b-4641-4c12-935e-58fa67c2","serviceDesc":"2a20bf48-00e9-4c38-a2fd-ee157b47e44e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.848 [XNIO-1 task-2] ny09wNkuRq-jzU7IRCEeOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.848 [XNIO-1 task-2] ny09wNkuRq-jzU7IRCEeOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.848 [XNIO-1 task-2] ny09wNkuRq-jzU7IRCEeOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.848 [XNIO-1 task-2] ny09wNkuRq-jzU7IRCEeOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.860 [XNIO-1 task-2] f16b2-NpStSCxmV48n5wmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.860 [XNIO-1 task-2] f16b2-NpStSCxmV48n5wmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.860 [XNIO-1 task-2] f16b2-NpStSCxmV48n5wmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.861 [XNIO-1 task-2] f16b2-NpStSCxmV48n5wmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.874 [XNIO-1 task-2] Bs_bl2w2S_i1ToO_64SAxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/db07e121, base path is set to: null +23:10:22.874 [XNIO-1 task-2] Bs_bl2w2S_i1ToO_64SAxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.874 [XNIO-1 task-2] Bs_bl2w2S_i1ToO_64SAxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.874 [XNIO-1 task-2] Bs_bl2w2S_i1ToO_64SAxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/db07e121, base path is set to: null +23:10:22.874 [XNIO-1 task-2] Bs_bl2w2S_i1ToO_64SAxw DEBUG com.networknt.schema.TypeValidator debug - validate( "db07e121", "db07e121", serviceId) +23:10:22.885 [XNIO-1 task-2] QyW6_UBzQN2FbMKDFR6G7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.885 [XNIO-1 task-2] QyW6_UBzQN2FbMKDFR6G7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.885 [XNIO-1 task-2] QyW6_UBzQN2FbMKDFR6G7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.897 [XNIO-1 task-2] NNQFjWS-R-OV-rtzVA2yVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.897 [XNIO-1 task-2] NNQFjWS-R-OV-rtzVA2yVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.897 [XNIO-1 task-2] NNQFjWS-R-OV-rtzVA2yVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.897 [XNIO-1 task-2] NNQFjWS-R-OV-rtzVA2yVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.904 [XNIO-1 task-2] i9RbH194Q7OMUR0gYQ7JDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c94fa911 +23:10:22.905 [XNIO-1 task-2] i9RbH194Q7OMUR0gYQ7JDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.905 [XNIO-1 task-2] i9RbH194Q7OMUR0gYQ7JDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:22.905 [XNIO-1 task-2] i9RbH194Q7OMUR0gYQ7JDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c94fa911 +23:10:22.908 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.908 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.908 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.909 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.909 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.909 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:22.909 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:22.909 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG com.networknt.schema.TypeValidator debug - validate( "f05c9cf1-61eb-4d8e-92cd-2fab7761", {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:22.909 [XNIO-1 task-2] SQN-dGmuSciR0cDMLxJFvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c94fa911","serviceName":"f05c9cf1-61eb-4d8e-92cd-2fab7761","serviceDesc":"7e5eebbc-63bd-4f4f-805e-601104a06d2a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:22.921 [XNIO-1 task-2] rcHuP16sSBWFQ4iLgtkWOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.922 [XNIO-1 task-2] rcHuP16sSBWFQ4iLgtkWOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.922 [XNIO-1 task-2] rcHuP16sSBWFQ4iLgtkWOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:22.922 [XNIO-1 task-2] rcHuP16sSBWFQ4iLgtkWOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.935 [XNIO-1 task-2] hQ_OaPzORwyxGofgTcKlnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c94fa911, base path is set to: null +23:10:22.936 [XNIO-1 task-2] hQ_OaPzORwyxGofgTcKlnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:22.936 [XNIO-1 task-2] hQ_OaPzORwyxGofgTcKlnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:22.936 [XNIO-1 task-2] hQ_OaPzORwyxGofgTcKlnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c94fa911, base path is set to: null +23:10:22.936 [XNIO-1 task-2] hQ_OaPzORwyxGofgTcKlnw DEBUG com.networknt.schema.TypeValidator debug - validate( "c94fa911", "c94fa911", serviceId) +23:10:22.950 [XNIO-1 task-2] RrLj-hdlR6KtCNOqZpw3hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.950 [XNIO-1 task-2] RrLj-hdlR6KtCNOqZpw3hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.950 [XNIO-1 task-2] RrLj-hdlR6KtCNOqZpw3hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.950 [XNIO-1 task-2] RrLj-hdlR6KtCNOqZpw3hA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.967 [XNIO-1 task-2] mbVoQ6z3RnKsFf2mKlFldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.967 [XNIO-1 task-2] mbVoQ6z3RnKsFf2mKlFldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.967 [XNIO-1 task-2] mbVoQ6z3RnKsFf2mKlFldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.968 [XNIO-1 task-2] mbVoQ6z3RnKsFf2mKlFldw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.980 [XNIO-1 task-2] q6EX4lpqRvqo6mrUxkqeKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.980 [XNIO-1 task-2] q6EX4lpqRvqo6mrUxkqeKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.980 [XNIO-1 task-2] q6EX4lpqRvqo6mrUxkqeKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.999 [XNIO-1 task-2] T5EbJtckQcWvFWYJX32TrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.999 [XNIO-1 task-2] T5EbJtckQcWvFWYJX32TrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.999 [XNIO-1 task-2] T5EbJtckQcWvFWYJX32TrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:22.999 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:48110cff +23:10:23.012 [XNIO-1 task-2] byi0LJnwSDa33B24jpEUfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/016426d7, base path is set to: null +23:10:23.012 [XNIO-1 task-2] byi0LJnwSDa33B24jpEUfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.012 [XNIO-1 task-2] byi0LJnwSDa33B24jpEUfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.013 [XNIO-1 task-2] byi0LJnwSDa33B24jpEUfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/016426d7, base path is set to: null +23:10:23.013 [XNIO-1 task-2] byi0LJnwSDa33B24jpEUfA DEBUG com.networknt.schema.TypeValidator debug - validate( "016426d7", "016426d7", serviceId) +23:10:23.028 [XNIO-1 task-2] vcnJdfh9TyeVRqs_RJYwKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48110cff +23:10:23.029 [XNIO-1 task-2] vcnJdfh9TyeVRqs_RJYwKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.029 [XNIO-1 task-2] vcnJdfh9TyeVRqs_RJYwKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.029 [XNIO-1 task-2] vcnJdfh9TyeVRqs_RJYwKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48110cff +23:10:23.029 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:48110cff +23:10:23.036 [XNIO-1 task-2] JpYiXsCWTVeiYLAbASinYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.036 [XNIO-1 task-2] JpYiXsCWTVeiYLAbASinYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.036 [XNIO-1 task-2] JpYiXsCWTVeiYLAbASinYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.037 [XNIO-1 task-2] JpYiXsCWTVeiYLAbASinYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.049 [XNIO-1 task-2] Whh3LQjNSJKBxC5FaPpP_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.049 [XNIO-1 task-2] Whh3LQjNSJKBxC5FaPpP_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.049 [XNIO-1 task-2] Whh3LQjNSJKBxC5FaPpP_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.058 [XNIO-1 task-2] AsGvUEpPR5yJeV3MfoTZkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cce02940, base path is set to: null +23:10:23.059 [XNIO-1 task-2] AsGvUEpPR5yJeV3MfoTZkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.059 [XNIO-1 task-2] AsGvUEpPR5yJeV3MfoTZkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.059 [XNIO-1 task-2] AsGvUEpPR5yJeV3MfoTZkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cce02940, base path is set to: null +23:10:23.059 [XNIO-1 task-2] AsGvUEpPR5yJeV3MfoTZkg DEBUG com.networknt.schema.TypeValidator debug - validate( "cce02940", "cce02940", serviceId) +23:10:23.075 [XNIO-1 task-2] pFsSk5E3TdiZpdbymDgNSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.075 [XNIO-1 task-2] pFsSk5E3TdiZpdbymDgNSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.075 [XNIO-1 task-2] pFsSk5E3TdiZpdbymDgNSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.091 [XNIO-1 task-2] lTOb7oIkSKW7DCjXl2VeKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.091 [XNIO-1 task-2] lTOb7oIkSKW7DCjXl2VeKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.091 [XNIO-1 task-2] lTOb7oIkSKW7DCjXl2VeKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.091 [XNIO-1 task-2] lTOb7oIkSKW7DCjXl2VeKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:23.102 [XNIO-1 task-2] aade4CHoTBG8CLOdtKFDoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/94932ff2 +23:10:23.102 [XNIO-1 task-2] aade4CHoTBG8CLOdtKFDoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.102 [XNIO-1 task-2] aade4CHoTBG8CLOdtKFDoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.102 [XNIO-1 task-2] aade4CHoTBG8CLOdtKFDoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/94932ff2 +23:10:23.105 [XNIO-1 task-2] jWE_kGZASUyseHOAoe8YpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/94932ff2, base path is set to: null +23:10:23.105 [XNIO-1 task-2] jWE_kGZASUyseHOAoe8YpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.105 [XNIO-1 task-2] jWE_kGZASUyseHOAoe8YpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.105 [XNIO-1 task-2] jWE_kGZASUyseHOAoe8YpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/94932ff2, base path is set to: null +23:10:23.105 [XNIO-1 task-2] jWE_kGZASUyseHOAoe8YpA DEBUG com.networknt.schema.TypeValidator debug - validate( "94932ff2", "94932ff2", serviceId) +23:10:23.117 [XNIO-1 task-2] W65z28pdTu6VuF7cBO1UMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.117 [XNIO-1 task-2] W65z28pdTu6VuF7cBO1UMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.117 [XNIO-1 task-2] W65z28pdTu6VuF7cBO1UMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.127 [XNIO-1 task-2] VsYVfGzaQm-7J9OME1eTFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5f387f38 +23:10:23.127 [XNIO-1 task-2] VsYVfGzaQm-7J9OME1eTFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.127 [XNIO-1 task-2] VsYVfGzaQm-7J9OME1eTFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.128 [XNIO-1 task-2] VsYVfGzaQm-7J9OME1eTFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5f387f38 +23:10:23.140 [XNIO-1 task-2] ON7Nc7NRTCyU4T8FMdH0cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.140 [XNIO-1 task-2] ON7Nc7NRTCyU4T8FMdH0cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.140 [XNIO-1 task-2] ON7Nc7NRTCyU4T8FMdH0cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.140 [XNIO-1 task-2] ON7Nc7NRTCyU4T8FMdH0cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.152 [XNIO-1 task-2] uzKWkUSRQgC2D1GPqxS1oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.154 [XNIO-1 task-2] uzKWkUSRQgC2D1GPqxS1oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.154 [XNIO-1 task-2] uzKWkUSRQgC2D1GPqxS1oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.172 [XNIO-1 task-2] x8awtFwESs-3XkdPz2ztuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.173 [XNIO-1 task-2] x8awtFwESs-3XkdPz2ztuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.173 [XNIO-1 task-2] x8awtFwESs-3XkdPz2ztuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.173 [XNIO-1 task-2] x8awtFwESs-3XkdPz2ztuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.187 [XNIO-1 task-2] PPpXEXumTMGlxRwiymUZSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.187 [XNIO-1 task-2] PPpXEXumTMGlxRwiymUZSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.187 [XNIO-1 task-2] PPpXEXumTMGlxRwiymUZSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.196 [XNIO-1 task-2] qRaL7p0FTJCWPzPNHCzwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/881f75a1, base path is set to: null +23:10:23.196 [XNIO-1 task-2] qRaL7p0FTJCWPzPNHCzwlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.196 [XNIO-1 task-2] qRaL7p0FTJCWPzPNHCzwlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.197 [XNIO-1 task-2] qRaL7p0FTJCWPzPNHCzwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/881f75a1, base path is set to: null +23:10:23.197 [XNIO-1 task-2] qRaL7p0FTJCWPzPNHCzwlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "881f75a1", "881f75a1", serviceId) +23:10:23.199 [XNIO-1 task-2] R1j1zyB6TnWSJhKR_CtTfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.199 [XNIO-1 task-2] R1j1zyB6TnWSJhKR_CtTfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.199 [XNIO-1 task-2] R1j1zyB6TnWSJhKR_CtTfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG com.networknt.schema.TypeValidator debug - validate( "6813e2c8-388c-451e-a834-24e033235464", {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG com.networknt.schema.TypeValidator debug - validate( "b48db740", {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:23.210 [XNIO-1 task-2] JIqYKaukTEiCaKx8PK84vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b48db740","serviceName":"62f62efe-9652-46d8-aff8-7a0e4631","serviceDesc":"6813e2c8-388c-451e-a834-24e033235464","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.227 [XNIO-1 task-2] Vc8fl0JeRBCQjwdvkyfY-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.227 [XNIO-1 task-2] Vc8fl0JeRBCQjwdvkyfY-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.228 [XNIO-1 task-2] Vc8fl0JeRBCQjwdvkyfY-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.248 [XNIO-1 task-2] XfsTEoQ8SbqKCMfc22hPig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c759ba05 +23:10:23.248 [XNIO-1 task-2] XfsTEoQ8SbqKCMfc22hPig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.248 [XNIO-1 task-2] XfsTEoQ8SbqKCMfc22hPig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.248 [XNIO-1 task-2] XfsTEoQ8SbqKCMfc22hPig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c759ba05 +23:10:23.256 [XNIO-1 task-2] op6YGCNSTMWZ0IGDgvNhbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c759ba05, base path is set to: null +23:10:23.256 [XNIO-1 task-2] op6YGCNSTMWZ0IGDgvNhbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.257 [XNIO-1 task-2] op6YGCNSTMWZ0IGDgvNhbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.257 [XNIO-1 task-2] op6YGCNSTMWZ0IGDgvNhbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c759ba05, base path is set to: null +23:10:23.257 [XNIO-1 task-2] op6YGCNSTMWZ0IGDgvNhbg DEBUG com.networknt.schema.TypeValidator debug - validate( "c759ba05", "c759ba05", serviceId) +23:10:23.262 [XNIO-1 task-2] sPFukcgzTCyJszdBSNt7mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.262 [XNIO-1 task-2] sPFukcgzTCyJszdBSNt7mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.262 [XNIO-1 task-2] sPFukcgzTCyJszdBSNt7mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.272 [XNIO-1 task-2] IFlQSF4mTGSL1hXfef8Xrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.272 [XNIO-1 task-2] IFlQSF4mTGSL1hXfef8Xrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.272 [XNIO-1 task-2] IFlQSF4mTGSL1hXfef8Xrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.273 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:726cee53 +23:10:23.282 [XNIO-1 task-2] pqP5iqzeQ1WGQuqLHjRd1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.282 [XNIO-1 task-2] pqP5iqzeQ1WGQuqLHjRd1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.282 [XNIO-1 task-2] pqP5iqzeQ1WGQuqLHjRd1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.291 [XNIO-1 task-2] ytbS41K6RjuxLdjph85ugA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/881f75a1, base path is set to: null +23:10:23.295 [XNIO-1 task-2] ytbS41K6RjuxLdjph85ugA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.295 [XNIO-1 task-2] ytbS41K6RjuxLdjph85ugA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.295 [XNIO-1 task-2] ytbS41K6RjuxLdjph85ugA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/881f75a1, base path is set to: null +23:10:23.295 [XNIO-1 task-2] ytbS41K6RjuxLdjph85ugA DEBUG com.networknt.schema.TypeValidator debug - validate( "881f75a1", "881f75a1", serviceId) +23:10:23.298 [XNIO-1 task-2] l0980xs8ShOyAlnUh4aI0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8785db0 +23:10:23.298 [XNIO-1 task-2] l0980xs8ShOyAlnUh4aI0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.298 [XNIO-1 task-2] l0980xs8ShOyAlnUh4aI0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.298 [XNIO-1 task-2] l0980xs8ShOyAlnUh4aI0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8785db0 +23:10:23.305 [XNIO-1 task-2] kcBN1luiSuCa5hdArJbt0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.306 [XNIO-1 task-2] kcBN1luiSuCa5hdArJbt0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.306 [XNIO-1 task-2] kcBN1luiSuCa5hdArJbt0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.306 [XNIO-1 task-2] kcBN1luiSuCa5hdArJbt0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.318 [XNIO-1 task-2] Y4zIH7CZSryJgONWYB6_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/881f75a1, base path is set to: null +23:10:23.318 [XNIO-1 task-2] Y4zIH7CZSryJgONWYB6_Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.318 [XNIO-1 task-2] Y4zIH7CZSryJgONWYB6_Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.318 [XNIO-1 task-2] Y4zIH7CZSryJgONWYB6_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/881f75a1, base path is set to: null +23:10:23.319 [XNIO-1 task-2] Y4zIH7CZSryJgONWYB6_Og DEBUG com.networknt.schema.TypeValidator debug - validate( "881f75a1", "881f75a1", serviceId) +23:10:23.329 [XNIO-1 task-2] ZsR0VeKWRuyAjIKr1NwBCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.329 [XNIO-1 task-2] ZsR0VeKWRuyAjIKr1NwBCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.329 [XNIO-1 task-2] ZsR0VeKWRuyAjIKr1NwBCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.341 [XNIO-1 task-2] j7bo9QIOQ1OlryR0qU9q4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.341 [XNIO-1 task-2] j7bo9QIOQ1OlryR0qU9q4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.341 [XNIO-1 task-2] j7bo9QIOQ1OlryR0qU9q4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.342 [XNIO-1 task-2] j7bo9QIOQ1OlryR0qU9q4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:23.352 [XNIO-1 task-2] CvDsjPU3S4icXJk9r2QdfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8785db0 +23:10:23.353 [XNIO-1 task-2] CvDsjPU3S4icXJk9r2QdfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.353 [XNIO-1 task-2] CvDsjPU3S4icXJk9r2QdfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.353 [XNIO-1 task-2] CvDsjPU3S4icXJk9r2QdfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8785db0 +23:10:23.364 [XNIO-1 task-2] e77boB1WR6mR8qmMcnjB0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/08e93a71, base path is set to: null +23:10:23.364 [XNIO-1 task-2] e77boB1WR6mR8qmMcnjB0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.364 [XNIO-1 task-2] e77boB1WR6mR8qmMcnjB0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.364 [XNIO-1 task-2] e77boB1WR6mR8qmMcnjB0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/08e93a71, base path is set to: null +23:10:23.364 [XNIO-1 task-2] e77boB1WR6mR8qmMcnjB0g DEBUG com.networknt.schema.TypeValidator debug - validate( "08e93a71", "08e93a71", serviceId) +23:10:23.383 [XNIO-1 task-2] 9SZ1HTyGSzSv3X4d9JcVMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b48db740 +23:10:23.383 [XNIO-1 task-2] 9SZ1HTyGSzSv3X4d9JcVMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.383 [XNIO-1 task-2] 9SZ1HTyGSzSv3X4d9JcVMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.383 [XNIO-1 task-2] 9SZ1HTyGSzSv3X4d9JcVMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b48db740 +23:10:23.390 [XNIO-1 task-2] CtR9p6x_T1243BAureB2Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c759ba05, base path is set to: null +23:10:23.391 [XNIO-1 task-2] CtR9p6x_T1243BAureB2Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.391 [XNIO-1 task-2] CtR9p6x_T1243BAureB2Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.391 [XNIO-1 task-2] CtR9p6x_T1243BAureB2Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c759ba05, base path is set to: null +23:10:23.392 [XNIO-1 task-2] CtR9p6x_T1243BAureB2Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "c759ba05", "c759ba05", serviceId) +23:10:23.400 [XNIO-1 task-2] shioYyzZSBCCO4R5Ly98Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.400 [XNIO-1 task-2] shioYyzZSBCCO4R5Ly98Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.400 [XNIO-1 task-2] shioYyzZSBCCO4R5Ly98Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.400 [XNIO-1 task-2] shioYyzZSBCCO4R5Ly98Fw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:23.414 [XNIO-1 task-2] RlKDKVEdRySlhqmZFTOHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.414 [XNIO-1 task-2] RlKDKVEdRySlhqmZFTOHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.414 [XNIO-1 task-2] RlKDKVEdRySlhqmZFTOHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.414 [XNIO-1 task-2] RlKDKVEdRySlhqmZFTOHag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:23.421 [XNIO-1 task-2] Zodkk5X1ShCxCo_XZqIk-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.421 [XNIO-1 task-2] Zodkk5X1ShCxCo_XZqIk-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.422 [XNIO-1 task-2] Zodkk5X1ShCxCo_XZqIk-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.436 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9aea11cc-7c5c-4734-b06f-b9bbb4b64eaa +23:10:23.439 [XNIO-1 task-2] 0GVGBgkbQXKgM4QFCuBtlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b48db740, base path is set to: null +23:10:23.439 [XNIO-1 task-2] 0GVGBgkbQXKgM4QFCuBtlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.439 [XNIO-1 task-2] 0GVGBgkbQXKgM4QFCuBtlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.439 [XNIO-1 task-2] 0GVGBgkbQXKgM4QFCuBtlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b48db740, base path is set to: null +23:10:23.440 [XNIO-1 task-2] 0GVGBgkbQXKgM4QFCuBtlg DEBUG com.networknt.schema.TypeValidator debug - validate( "b48db740", "b48db740", serviceId) +23:10:23.447 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.448 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.449 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.449 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.449 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:23.449 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG com.networknt.schema.TypeValidator debug - validate( "28ac46db-5599-4820-8b47-7a6db278b73f", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:23.449 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG com.networknt.schema.TypeValidator debug - validate( "c759ba05", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:23.449 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:23.449 [XNIO-1 task-2] UEMnuivnSq6mM4YWzwhnbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.461 [XNIO-1 task-2] XJoUZhP3Q267M7lTzMeK9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.461 [XNIO-1 task-2] XJoUZhP3Q267M7lTzMeK9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.461 [XNIO-1 task-2] XJoUZhP3Q267M7lTzMeK9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.481 [XNIO-1 task-2] Kt9tljaURM-YZj2n5D6krQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d1b065b +23:10:23.481 [XNIO-1 task-2] Kt9tljaURM-YZj2n5D6krQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.481 [XNIO-1 task-2] Kt9tljaURM-YZj2n5D6krQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.481 [XNIO-1 task-2] Kt9tljaURM-YZj2n5D6krQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d1b065b +23:10:23.485 [XNIO-1 task-2] ukt-V_WcRlKZLxGuY6QJUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b48db740, base path is set to: null +Jun 28, 2024 11:10:23 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:23.485 [XNIO-1 task-2] ukt-V_WcRlKZLxGuY6QJUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +23:10:23.494 [XNIO-1 task-2] pLrgpHnTR3SdQIAZ7e_41g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.494 [XNIO-1 task-2] pLrgpHnTR3SdQIAZ7e_41g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.494 [XNIO-1 task-2] pLrgpHnTR3SdQIAZ7e_41g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.505 [XNIO-1 task-2] Nn_VnlX-TM2iUSRTm6Yj2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:23.505 [XNIO-1 task-2] Nn_VnlX-TM2iUSRTm6Yj2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +23:10:23.506 [XNIO-1 task-2] Nn_VnlX-TM2iUSRTm6Yj2A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4b80a768","serviceName":"aa1e7e60-3332-47de-a512-36111ae8","serviceDesc":"2136e357-e37c-4e7a-9a80-8a36d7b2226b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) + +23:10:23.506 [XNIO-1 task-2] Nn_VnlX-TM2iUSRTm6Yj2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b80a768","serviceName":"aa1e7e60-3332-47de-a512-36111ae8","serviceDesc":"2136e357-e37c-4e7a-9a80-8a36d7b2226b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b80a768","serviceName":"aa1e7e60-3332-47de-a512-36111ae8","serviceDesc":"2136e357-e37c-4e7a-9a80-8a36d7b2226b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.519 [XNIO-1 task-2] LPcxyAe9Sn2QJo307ga7UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/23cce194, base path is set to: null +23:10:23.519 [XNIO-1 task-2] LPcxyAe9Sn2QJo307ga7UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.519 [XNIO-1 task-2] LPcxyAe9Sn2QJo307ga7UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +23:10:23.519 [XNIO-1 task-2] LPcxyAe9Sn2QJo307ga7UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/23cce194, base path is set to: null +23:10:23.519 [XNIO-1 task-2] LPcxyAe9Sn2QJo307ga7UA DEBUG com.networknt.schema.TypeValidator debug - validate( "23cce194", "23cce194", serviceId) +23:10:23.533 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG com.networknt.schema.TypeValidator debug - validate( "28ac46db-5599-4820-8b47-7a6db278b73f", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG com.networknt.schema.TypeValidator debug - validate( "c759ba05", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +23:10:23.541 [XNIO-1 task-2] pxGOkzxsTmamE_M-zAUARA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c759ba05","serviceName":"fd3143da-a3c5-4f8c-a914-fa3a5d00","serviceDesc":"28ac46db-5599-4820-8b47-7a6db278b73f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.554 [XNIO-1 task-2] fRetPVhfRn2vDpZH8N8S7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/726cee53 +23:10:23.555 [XNIO-1 task-2] fRetPVhfRn2vDpZH8N8S7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +23:10:23.555 [XNIO-1 task-2] fRetPVhfRn2vDpZH8N8S7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +23:10:23.555 [XNIO-1 task-2] fRetPVhfRn2vDpZH8N8S7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/726cee53 +23:10:23.555 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:726cee53 +23:10:23.566 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.566 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +23:10:23.566 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +23:10:23.567 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.567 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +23:10:23.567 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +23:10:23.567 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +23:10:23.567 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG com.networknt.schema.TypeValidator debug - validate( "46b28310-2fc7-47cb-bfc0-b3d3357a", {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +23:10:23.567 [XNIO-1 task-2] T5mcnYFOSpWC8stGtgTItA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b0d8c27","serviceName":"46b28310-2fc7-47cb-bfc0-b3d3357a","serviceDesc":"1bd5bb55-39c8-43fd-a8fa-e1bca79e1c35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) diff --git a/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..17a0dbd --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-token-1.log @@ -0,0 +1,2187 @@ +23:10:19.340 [XNIO-1 task-4] VQxBjUFhTSaH2fltsTuyig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.340 [XNIO-1 task-4] VQxBjUFhTSaH2fltsTuyig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:19.340 [XNIO-1 task-4] VQxBjUFhTSaH2fltsTuyig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.341 [XNIO-1 task-4] VQxBjUFhTSaH2fltsTuyig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:19.346 [XNIO-1 task-4] VQxBjUFhTSaH2fltsTuyig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:19.346 [XNIO-1 task-4] VQxBjUFhTSaH2fltsTuyig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.399 [XNIO-1 task-4] l2WnoVgIRLyFrkjt7zLi-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.399 [XNIO-1 task-4] l2WnoVgIRLyFrkjt7zLi-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.399 [XNIO-1 task-4] l2WnoVgIRLyFrkjt7zLi-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.399 [XNIO-1 task-4] l2WnoVgIRLyFrkjt7zLi-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Fwx0AuWpR_mxVP0HxIs7-g redirectUri = http://localhost:8080/authorization +23:10:19.405 [XNIO-1 task-4] l2WnoVgIRLyFrkjt7zLi-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:19.417 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b05269c5 +23:10:19.418 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b05269c5 +23:10:19.432 [XNIO-1 task-4] A0U8fFOqRUqTtOga_iXkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.432 [XNIO-1 task-4] A0U8fFOqRUqTtOga_iXkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.432 [XNIO-1 task-4] A0U8fFOqRUqTtOga_iXkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.432 [XNIO-1 task-4] A0U8fFOqRUqTtOga_iXkrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a035a30f-51e9-4696-a557-f797e44ead88 scope = null +23:10:19.439 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f20ba5d9 +23:10:19.443 [XNIO-1 task-4] A0U8fFOqRUqTtOga_iXkrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f20ba5d9 +23:10:19.464 [XNIO-1 task-4] di56jbFCT5GA2qWD6Tz_3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.464 [XNIO-1 task-4] di56jbFCT5GA2qWD6Tz_3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.464 [XNIO-1 task-4] di56jbFCT5GA2qWD6Tz_3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.464 [XNIO-1 task-4] di56jbFCT5GA2qWD6Tz_3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f0704265-7bb3-4e4f-af75-6756bfc64eb3 scope = null +23:10:19.476 [XNIO-1 task-4] di56jbFCT5GA2qWD6Tz_3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.496 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b05269c5 +Jun 28, 2024 11:10:19 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:19.514 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4351f5d3 +23:10:19.524 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d199c8e8-1642-406a-977a-daae173ebc2f +23:10:19.525 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d199c8e8-1642-406a-977a-daae173ebc2f +23:10:19.540 [XNIO-1 task-4] T0JHfM8VTyumsg7oSS1x7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.540 [XNIO-1 task-4] T0JHfM8VTyumsg7oSS1x7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.540 [XNIO-1 task-4] T0JHfM8VTyumsg7oSS1x7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.540 [XNIO-1 task-4] T0JHfM8VTyumsg7oSS1x7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -P8Jjm-TSRiOB60slTpLKw redirectUri = http://localhost:8080/authorization +23:10:19.546 [XNIO-1 task-4] T0JHfM8VTyumsg7oSS1x7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:19.569 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4351f5d3 +23:10:19.585 [XNIO-1 task-4] 0mcEmFOgRDKB1g7cnF7R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.585 [XNIO-1 task-4] 0mcEmFOgRDKB1g7cnF7R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.585 [XNIO-1 task-4] 0mcEmFOgRDKB1g7cnF7R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.585 [XNIO-1 task-4] 0mcEmFOgRDKB1g7cnF7R1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2OciY8cfTXmm1V7zS8cqJA redirectUri = http://localhost:8080/authorization +23:10:19.590 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8a49e6ce +23:10:19.591 [XNIO-1 task-4] 0mcEmFOgRDKB1g7cnF7R1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:19.595 [XNIO-1 task-4] 0mcEmFOgRDKB1g7cnF7R1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.621 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3800ec8 +23:10:19.648 [XNIO-1 task-4] 1O0eaDmgRqOmdJKZvZiwtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.649 [XNIO-1 task-4] 1O0eaDmgRqOmdJKZvZiwtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:19.649 [XNIO-1 task-4] 1O0eaDmgRqOmdJKZvZiwtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.649 [XNIO-1 task-4] 1O0eaDmgRqOmdJKZvZiwtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:19.654 [XNIO-1 task-4] 1O0eaDmgRqOmdJKZvZiwtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:19.654 [XNIO-1 task-4] 1O0eaDmgRqOmdJKZvZiwtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.679 [XNIO-1 task-4] F_HGTfBlRTq5yYnXPFbVqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.680 [XNIO-1 task-4] F_HGTfBlRTq5yYnXPFbVqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.680 [XNIO-1 task-4] F_HGTfBlRTq5yYnXPFbVqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.680 [XNIO-1 task-4] F_HGTfBlRTq5yYnXPFbVqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WhM8IaycS82xw72hzFEn3Q redirectUri = http://localhost:8080/authorization +23:10:19.685 [XNIO-1 task-4] F_HGTfBlRTq5yYnXPFbVqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:19.697 [XNIO-1 task-4] xufTNmKfSzCLLWkgYq7YRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.697 [XNIO-1 task-4] xufTNmKfSzCLLWkgYq7YRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:19.698 [XNIO-1 task-4] xufTNmKfSzCLLWkgYq7YRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.698 [XNIO-1 task-4] xufTNmKfSzCLLWkgYq7YRA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzUxMmU4OTctOGQyNi00N2FmLThhYWYtYTliNjQwYmI4MjU3OjAxMW8tNHU0UURlU2JvTUZTTkMyb1E=", "Basic MzUxMmU4OTctOGQyNi00N2FmLThhYWYtYTliNjQwYmI4MjU3OjAxMW8tNHU0UURlU2JvTUZTTkMyb1E=", authorization) +23:10:19.699 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f921c0c9-12eb-4b8a-8cbe-dbed426d88f0 +23:10:19.708 [XNIO-1 task-4] xufTNmKfSzCLLWkgYq7YRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.745 [XNIO-1 task-4] I_5MmoyGSeK3H9-0NuceBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.745 [XNIO-1 task-4] I_5MmoyGSeK3H9-0NuceBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.745 [XNIO-1 task-4] I_5MmoyGSeK3H9-0NuceBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.745 [XNIO-1 task-4] I_5MmoyGSeK3H9-0NuceBg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = irECC5oiSvCEBewQbp-Mag redirectUri = http://localhost:8080/authorization +23:10:19.752 [XNIO-1 task-4] I_5MmoyGSeK3H9-0NuceBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:19.762 [XNIO-1 task-4] 5xl-RBUZT2eQmAG_oBx_sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.762 [XNIO-1 task-4] 5xl-RBUZT2eQmAG_oBx_sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:19.762 [XNIO-1 task-4] 5xl-RBUZT2eQmAG_oBx_sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.762 [XNIO-1 task-4] 5xl-RBUZT2eQmAG_oBx_sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", authorization) +23:10:19.769 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f20ba5d9 +23:10:19.777 [XNIO-1 task-4] 5xl-RBUZT2eQmAG_oBx_sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.781 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:066e4ec3-0795-41df-ba7a-8bf53d1658e5 +23:10:19.905 [XNIO-1 task-4] H1SeYpnARm6Ml5KTnjCnUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.906 [XNIO-1 task-4] H1SeYpnARm6Ml5KTnjCnUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:19.906 [XNIO-1 task-4] H1SeYpnARm6Ml5KTnjCnUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.906 [XNIO-1 task-4] H1SeYpnARm6Ml5KTnjCnUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:19.912 [XNIO-1 task-4] H1SeYpnARm6Ml5KTnjCnUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:19.912 [XNIO-1 task-4] H1SeYpnARm6Ml5KTnjCnUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.943 [XNIO-1 task-4] RR6ytoBVSuiez_EWik84Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.943 [XNIO-1 task-4] RR6ytoBVSuiez_EWik84Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.944 [XNIO-1 task-4] RR6ytoBVSuiez_EWik84Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.944 [XNIO-1 task-4] RR6ytoBVSuiez_EWik84Zw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pOKv2hFJT1eKMz0TjGG_pA redirectUri = http://localhost:8080/authorization +23:10:19.951 [XNIO-1 task-4] RR6ytoBVSuiez_EWik84Zw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:19.975 [XNIO-1 task-4] L_UARrWrRAegCAMIQdEXsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.975 [XNIO-1 task-4] L_UARrWrRAegCAMIQdEXsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:19.975 [XNIO-1 task-4] L_UARrWrRAegCAMIQdEXsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:19.975 [XNIO-1 task-4] L_UARrWrRAegCAMIQdEXsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", authorization) +23:10:19.982 [XNIO-1 task-4] L_UARrWrRAegCAMIQdEXsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:19.982 [XNIO-1 task-4] L_UARrWrRAegCAMIQdEXsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:19.984 [XNIO-1 task-3] OQW6o2EAQX-9u8GBUpcHIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.984 [XNIO-1 task-3] OQW6o2EAQX-9u8GBUpcHIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.984 [XNIO-1 task-3] OQW6o2EAQX-9u8GBUpcHIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:19.985 [XNIO-1 task-3] OQW6o2EAQX-9u8GBUpcHIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1ClZjZszTBaQgUVVgNWL0A redirectUri = http://localhost:8080/authorization +23:10:19.995 [XNIO-1 task-3] OQW6o2EAQX-9u8GBUpcHIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.034 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d199c8e8-1642-406a-977a-daae173ebc2f +23:10:20.037 [XNIO-1 task-3] D1E2Me1NRgmJ218SJyxr_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.037 [XNIO-1 task-3] D1E2Me1NRgmJ218SJyxr_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.038 [XNIO-1 task-3] D1E2Me1NRgmJ218SJyxr_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.038 [XNIO-1 task-3] D1E2Me1NRgmJ218SJyxr_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 7N2hH24XQfqhGwigOehabQ redirectUri = http://localhost:8080/authorization +23:10:20.044 [XNIO-1 task-3] D1E2Me1NRgmJ218SJyxr_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.090 [XNIO-1 task-3] q86bxbgGTE-UN3tYpoCnqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.090 [XNIO-1 task-3] q86bxbgGTE-UN3tYpoCnqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.091 [XNIO-1 task-3] q86bxbgGTE-UN3tYpoCnqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.091 [XNIO-1 task-3] q86bxbgGTE-UN3tYpoCnqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlN2JjOTMtMWVkNy00ZGJkLTg2MTMtMWFiYjVlNWNhMDljOktnYTdiY2FzVFVtaVB5T2tpSm9hcHc=", "Basic ZDBlN2JjOTMtMWVkNy00ZGJkLTg2MTMtMWFiYjVlNWNhMDljOktnYTdiY2FzVFVtaVB5T2tpSm9hcHc=", authorization) +23:10:20.097 [XNIO-1 task-3] q86bxbgGTE-UN3tYpoCnqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:20.103 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3800ec8 +23:10:20.105 [XNIO-1 task-3] FizxEClaQDSVACkPe3zl5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.106 [XNIO-1 task-3] FizxEClaQDSVACkPe3zl5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.106 [XNIO-1 task-3] FizxEClaQDSVACkPe3zl5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.106 [XNIO-1 task-3] FizxEClaQDSVACkPe3zl5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:20.112 [XNIO-1 task-3] FizxEClaQDSVACkPe3zl5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:20.112 [XNIO-1 task-3] FizxEClaQDSVACkPe3zl5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.121 [XNIO-1 task-3] kcUX_H6kQn2a62WSZorStQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.121 [XNIO-1 task-3] kcUX_H6kQn2a62WSZorStQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.121 [XNIO-1 task-3] kcUX_H6kQn2a62WSZorStQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.121 [XNIO-1 task-3] kcUX_H6kQn2a62WSZorStQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6TEY1daPQre0xQ96wPwAgw redirectUri = http://localhost:8080/authorization +23:10:20.124 [XNIO-1 task-4] nfL_04VsTYe5on7kD9oDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.124 [XNIO-1 task-4] nfL_04VsTYe5on7kD9oDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.124 [XNIO-1 task-4] nfL_04VsTYe5on7kD9oDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.125 [XNIO-1 task-4] nfL_04VsTYe5on7kD9oDrA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fe78823f-864e-4662-87e8-3054ef1e52be scope = null +23:10:20.127 [XNIO-1 task-3] kcUX_H6kQn2a62WSZorStQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:20.127 [XNIO-1 task-3] kcUX_H6kQn2a62WSZorStQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.128 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:69cd96f3 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe78823f-864e-4662-87e8-3054ef1e52be is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:20.136 [XNIO-1 task-4] SlQdp1tITOWA8Xtx5Dgwyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.137 [XNIO-1 task-4] SlQdp1tITOWA8Xtx5Dgwyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.137 [XNIO-1 task-4] SlQdp1tITOWA8Xtx5Dgwyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.138 [XNIO-1 task-4] SlQdp1tITOWA8Xtx5Dgwyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", authorization) +23:10:20.144 [XNIO-1 task-4] SlQdp1tITOWA8Xtx5Dgwyg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +23:10:20.152 [XNIO-1 task-4] AFralsCDR5amDcu0SwWrgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", authorization) +23:10:20.152 [XNIO-1 task-4] AFralsCDR5amDcu0SwWrgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6b5edfa8-b568-4db3-9f4c-a482f8148ca3 scope = null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + ... 14 more + + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.165 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:103f6ed2-9470-4e7f-af9b-aae9d9282004 +23:10:20.172 [XNIO-1 task-4] RlVjHZiwRjizRvlYFZvRTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.172 [XNIO-1 task-4] RlVjHZiwRjizRvlYFZvRTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.172 [XNIO-1 task-4] RlVjHZiwRjizRvlYFZvRTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.172 [XNIO-1 task-4] RlVjHZiwRjizRvlYFZvRTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:20.174 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b3800ec8 +23:10:20.180 [XNIO-1 task-4] RlVjHZiwRjizRvlYFZvRTQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:20.181 [XNIO-1 task-4] RlVjHZiwRjizRvlYFZvRTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.189 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3da01439-ca85-4fe4-bab3-12dc3986499c +23:10:20.209 [XNIO-1 task-4] IN45KvZ4RYmp8MxRUMtO8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.209 [XNIO-1 task-4] IN45KvZ4RYmp8MxRUMtO8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.209 [XNIO-1 task-4] IN45KvZ4RYmp8MxRUMtO8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.209 [XNIO-1 task-4] IN45KvZ4RYmp8MxRUMtO8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", authorization) +23:10:20.214 [XNIO-1 task-3] 6qBXEzUMSmekVjD1ZnxeCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.215 [XNIO-1 task-3] 6qBXEzUMSmekVjD1ZnxeCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.215 [XNIO-1 task-3] 6qBXEzUMSmekVjD1ZnxeCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.215 [XNIO-1 task-3] 6qBXEzUMSmekVjD1ZnxeCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTA4ZmVjMTEtNjlkNC00YjJjLWFkY2MtYWMzN2RmOTcwNWE0Om9mTzNiOEYxUlRTTGdvaDBCUlpmYnc=", "Basic ZTA4ZmVjMTEtNjlkNC00YjJjLWFkY2MtYWMzN2RmOTcwNWE0Om9mTzNiOEYxUlRTTGdvaDBCUlpmYnc=", authorization) +23:10:20.216 [XNIO-1 task-4] IN45KvZ4RYmp8MxRUMtO8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:20.222 [XNIO-1 task-3] 6qBXEzUMSmekVjD1ZnxeCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:20.224 [XNIO-1 task-3] 6qBXEzUMSmekVjD1ZnxeCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.234 [XNIO-1 task-3] 0pi8YlMjSm6jvjwgl8rPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.234 [XNIO-1 task-3] 0pi8YlMjSm6jvjwgl8rPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.234 [XNIO-1 task-3] 0pi8YlMjSm6jvjwgl8rPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.235 [XNIO-1 task-3] 0pi8YlMjSm6jvjwgl8rPbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = fsvm4Qg3QAapInOKUmWMFA redirectUri = http://localhost:8080/authorization +23:10:20.241 [XNIO-1 task-3] 0pi8YlMjSm6jvjwgl8rPbA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.255 [XNIO-1 task-3] 8_6jzX78T0iTVhMZv6FSAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.255 [XNIO-1 task-3] 8_6jzX78T0iTVhMZv6FSAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.255 [XNIO-1 task-3] 8_6jzX78T0iTVhMZv6FSAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.255 [XNIO-1 task-3] 8_6jzX78T0iTVhMZv6FSAA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 7Khs-a_6Qt-AP912MKXiVg redirectUri = http://localhost:8080/authorization +23:10:20.261 [XNIO-1 task-4] wS2bA_mUSxK8FZiNzvULwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.261 [XNIO-1 task-4] wS2bA_mUSxK8FZiNzvULwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.261 [XNIO-1 task-4] wS2bA_mUSxK8FZiNzvULwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.261 [XNIO-1 task-3] 8_6jzX78T0iTVhMZv6FSAA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:20.261 [XNIO-1 task-3] 8_6jzX78T0iTVhMZv6FSAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.264 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d1949c2f-d446-4ae0-b6aa-dd0bede13d13 +23:10:20.268 [XNIO-1 task-4] wS2bA_mUSxK8FZiNzvULwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.273 [XNIO-1 task-3] 5W-dCzcpQJ6_LJQN6DgJVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.273 [XNIO-1 task-3] 5W-dCzcpQJ6_LJQN6DgJVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.273 [XNIO-1 task-3] 5W-dCzcpQJ6_LJQN6DgJVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.273 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:20.273 [XNIO-1 task-3] 5W-dCzcpQJ6_LJQN6DgJVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 91cb8b6d-b5e6-4fa6-bc19-bc47aced014b scope = null +23:10:20.287 [XNIO-1 task-4] 56BaY3_NS9COlFpli_C-Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.287 [XNIO-1 task-4] 56BaY3_NS9COlFpli_C-Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.287 [XNIO-1 task-4] 56BaY3_NS9COlFpli_C-Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.287 [XNIO-1 task-4] 56BaY3_NS9COlFpli_C-Xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _uHM5OgiSBSnJx6zDpERiA redirectUri = http://localhost:8080/authorization +23:10:20.290 [XNIO-1 task-3] 5W-dCzcpQJ6_LJQN6DgJVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.294 [XNIO-1 task-4] 56BaY3_NS9COlFpli_C-Xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.310 [XNIO-1 task-3] kr7dPoRFRLS-N5XqbPQdXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.311 [XNIO-1 task-3] kr7dPoRFRLS-N5XqbPQdXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.311 [XNIO-1 task-3] kr7dPoRFRLS-N5XqbPQdXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.311 [XNIO-1 task-3] kr7dPoRFRLS-N5XqbPQdXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:20.327 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2fea8386 +23:10:20.328 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2fea8386 +23:10:20.329 [XNIO-1 task-3] kr7dPoRFRLS-N5XqbPQdXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.334 [XNIO-1 task-4] F6rGfGwmSkKRbUzZuru-Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.334 [XNIO-1 task-4] F6rGfGwmSkKRbUzZuru-Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.334 [XNIO-1 task-4] F6rGfGwmSkKRbUzZuru-Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.334 [XNIO-1 task-4] F6rGfGwmSkKRbUzZuru-Mg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uqj9bY0GTZiPz4qJ18oSEg redirectUri = http://localhost:8080/authorization +23:10:20.342 [XNIO-1 task-4] F6rGfGwmSkKRbUzZuru-Mg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.362 [XNIO-1 task-3] 3ESUPoz1QBevvSBRNZmliA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.363 [XNIO-1 task-3] 3ESUPoz1QBevvSBRNZmliA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.363 [XNIO-1 task-3] 3ESUPoz1QBevvSBRNZmliA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.363 [XNIO-1 task-3] 3ESUPoz1QBevvSBRNZmliA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:20.366 [XNIO-1 task-4] Rf2Z_QgMQx2-g1VOzM0A7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.367 [XNIO-1 task-4] Rf2Z_QgMQx2-g1VOzM0A7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.367 [XNIO-1 task-4] Rf2Z_QgMQx2-g1VOzM0A7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.367 [XNIO-1 task-4] Rf2Z_QgMQx2-g1VOzM0A7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", authorization) +23:10:20.371 [XNIO-1 task-3] 3ESUPoz1QBevvSBRNZmliA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.373 [XNIO-1 task-4] Rf2Z_QgMQx2-g1VOzM0A7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.375 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:10349e59-2d71-4a56-a8e7-7b133bf1d6d8 +23:10:20.391 [XNIO-1 task-4] YPzvkpqNRjqQrvZPMRVmdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.391 [XNIO-1 task-4] YPzvkpqNRjqQrvZPMRVmdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.391 [XNIO-1 task-4] YPzvkpqNRjqQrvZPMRVmdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.391 [XNIO-1 task-4] YPzvkpqNRjqQrvZPMRVmdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", authorization) +23:10:20.396 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:10349e59-2d71-4a56-a8e7-7b133bf1d6d8 +23:10:20.406 [XNIO-1 task-4] YPzvkpqNRjqQrvZPMRVmdA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.407 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8a49e6ce +23:10:20.422 [XNIO-1 task-4] ySJ2By01TlSVlu455RqYiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.422 [XNIO-1 task-4] ySJ2By01TlSVlu455RqYiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.422 [XNIO-1 task-4] ySJ2By01TlSVlu455RqYiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.422 [XNIO-1 task-4] ySJ2By01TlSVlu455RqYiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4e03c9b5-deaa-4f7d-9513-a95688ad4122 scope = null +23:10:20.436 [XNIO-1 task-4] ySJ2By01TlSVlu455RqYiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.437 [XNIO-1 task-3] IBBwrlE4SuqMZR8BxNGNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.437 [XNIO-1 task-3] IBBwrlE4SuqMZR8BxNGNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.437 [XNIO-1 task-3] IBBwrlE4SuqMZR8BxNGNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.437 [XNIO-1 task-3] IBBwrlE4SuqMZR8BxNGNcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pRF1RblwTaOSiErmKTecBg redirectUri = http://localhost:8080/authorization +23:10:20.443 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2fea8386 +23:10:20.447 [XNIO-1 task-3] IBBwrlE4SuqMZR8BxNGNcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.479 [XNIO-1 task-3] _ke9-2OdTX6WQvfSc-ic_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.479 [XNIO-1 task-3] _ke9-2OdTX6WQvfSc-ic_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.479 [XNIO-1 task-3] _ke9-2OdTX6WQvfSc-ic_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.479 [XNIO-1 task-3] _ke9-2OdTX6WQvfSc-ic_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", authorization) +23:10:20.487 [XNIO-1 task-3] _ke9-2OdTX6WQvfSc-ic_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:20.491 [XNIO-1 task-3] IuPJgaWDSCmdFez7WJLjSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.491 [XNIO-1 task-3] IuPJgaWDSCmdFez7WJLjSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.491 [XNIO-1 task-3] IuPJgaWDSCmdFez7WJLjSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.491 [XNIO-1 task-3] IuPJgaWDSCmdFez7WJLjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.491 [XNIO-1 task-3] IuPJgaWDSCmdFez7WJLjSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", authorization) +23:10:20.491 [XNIO-1 task-3] IuPJgaWDSCmdFez7WJLjSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = eCSsmg7xTkSjzpJs5-vTrw redirectUri = http://localhost:8080/authorization +23:10:20.498 [XNIO-1 task-3] IuPJgaWDSCmdFez7WJLjSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +23:10:20.501 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:979d8575-a55c-4a86-8165-8b5afd9f9bba +23:10:20.501 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:979d8575-a55c-4a86-8165-8b5afd9f9bba +23:10:20.504 [XNIO-1 task-4] vRqYYQ1USRqmqOOwjerRrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.504 [XNIO-1 task-4] vRqYYQ1USRqmqOOwjerRrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +23:10:20.504 [XNIO-1 task-4] vRqYYQ1USRqmqOOwjerRrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +23:10:20.504 [XNIO-1 task-4] vRqYYQ1USRqmqOOwjerRrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.505 [XNIO-1 task-4] vRqYYQ1USRqmqOOwjerRrg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YvP_IKqERaeAagksgwo7QQ redirectUri = http://localhost:8080/authorization +23:10:20.509 [XNIO-1 task-3] cOW5aFriQBqm073Ao3LWVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.509 [XNIO-1 task-3] cOW5aFriQBqm073Ao3LWVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.509 [XNIO-1 task-3] cOW5aFriQBqm073Ao3LWVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.509 [XNIO-1 task-3] cOW5aFriQBqm073Ao3LWVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 979d8575-a55c-4a86-8165-8b5afd9f9bba scope = null +23:10:20.512 [XNIO-1 task-4] vRqYYQ1USRqmqOOwjerRrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.514 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:979d8575-a55c-4a86-8165-8b5afd9f9bba +23:10:20.524 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8a49e6ce +23:10:20.526 [XNIO-1 task-3] cOW5aFriQBqm073Ao3LWVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.546 [XNIO-1 task-3] Y-KiO7qYQtaGOMb73P4aZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.546 [XNIO-1 task-3] Y-KiO7qYQtaGOMb73P4aZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.547 [XNIO-1 task-3] Y-KiO7qYQtaGOMb73P4aZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.547 [XNIO-1 task-3] Y-KiO7qYQtaGOMb73P4aZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = D-EHwJMVTHust2CVqTTcTQ redirectUri = http://localhost:8080/authorization +23:10:20.555 [XNIO-1 task-3] Y-KiO7qYQtaGOMb73P4aZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.561 [XNIO-1 task-4] _SL1C6pRSc6asKN18gwtqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.561 [XNIO-1 task-4] _SL1C6pRSc6asKN18gwtqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.561 [XNIO-1 task-4] _SL1C6pRSc6asKN18gwtqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.561 [XNIO-1 task-4] _SL1C6pRSc6asKN18gwtqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDE5NDljMmYtZDQ0Ni00YWUwLWI2YWEtZGQwYmVkZTEzZDEzOll2cU5NMGJWUXVHWmNLQS1uN2pBOFE=", "Basic ZDE5NDljMmYtZDQ0Ni00YWUwLWI2YWEtZGQwYmVkZTEzZDEzOll2cU5NMGJWUXVHWmNLQS1uN2pBOFE=", authorization) +23:10:20.567 [XNIO-1 task-4] _SL1C6pRSc6asKN18gwtqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:20.568 [XNIO-1 task-4] _SL1C6pRSc6asKN18gwtqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.571 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aacaacbf-e8c1-4965-944a-89cf7099f051 +23:10:20.593 [XNIO-1 task-4] 5lVu3viXQ2qqg0EqSdVUIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.593 [XNIO-1 task-4] 5lVu3viXQ2qqg0EqSdVUIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.593 [XNIO-1 task-4] 5lVu3viXQ2qqg0EqSdVUIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.594 [XNIO-1 task-4] 5lVu3viXQ2qqg0EqSdVUIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ljwpXc0_QcG9l1OshV322w redirectUri = http://localhost:8080/authorization +23:10:20.601 [XNIO-1 task-4] 5lVu3viXQ2qqg0EqSdVUIA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.607 [XNIO-1 task-4] cKmtQIgERvSCgOl4xg-pkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.607 [XNIO-1 task-4] cKmtQIgERvSCgOl4xg-pkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.607 [XNIO-1 task-4] cKmtQIgERvSCgOl4xg-pkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.608 [XNIO-1 task-4] cKmtQIgERvSCgOl4xg-pkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = C2_cZZeaRJGZOS80l-ym7g redirectUri = http://localhost:8080/authorization +23:10:20.615 [XNIO-1 task-4] cKmtQIgERvSCgOl4xg-pkQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.636 [XNIO-1 task-4] WuneELhDSkiGMVQv45ftRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.636 [XNIO-1 task-4] WuneELhDSkiGMVQv45ftRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.636 [XNIO-1 task-4] WuneELhDSkiGMVQv45ftRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.636 [XNIO-1 task-4] WuneELhDSkiGMVQv45ftRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gfaoVTHYSTu3JQiJPp36zQ redirectUri = http://localhost:8080/authorization +23:10:20.642 [XNIO-1 task-4] WuneELhDSkiGMVQv45ftRA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.657 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:69cd96f3 +23:10:20.676 [XNIO-1 task-4] jLwslxdqSKKDTtClZ2uX2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.676 [XNIO-1 task-4] jLwslxdqSKKDTtClZ2uX2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.676 [XNIO-1 task-4] jLwslxdqSKKDTtClZ2uX2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.677 [XNIO-1 task-4] jLwslxdqSKKDTtClZ2uX2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = slfAbj45S1y9ogAifkImkA redirectUri = http://localhost:8080/authorization +23:10:20.682 [XNIO-1 task-3] 0pHVaIWfRjWHBDBx_PYS0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.682 [XNIO-1 task-3] 0pHVaIWfRjWHBDBx_PYS0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.682 [XNIO-1 task-3] 0pHVaIWfRjWHBDBx_PYS0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.682 [XNIO-1 task-3] 0pHVaIWfRjWHBDBx_PYS0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ByxLAYVIRYymBubxy3LGwg redirectUri = http://localhost:8080/authorization +23:10:20.683 [XNIO-1 task-4] jLwslxdqSKKDTtClZ2uX2g ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.689 [XNIO-1 task-3] 0pHVaIWfRjWHBDBx_PYS0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.704 [XNIO-1 task-3] m_n0kb-XT7yMCq9e4jGqBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.704 [XNIO-1 task-3] m_n0kb-XT7yMCq9e4jGqBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.704 [XNIO-1 task-3] m_n0kb-XT7yMCq9e4jGqBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.704 [XNIO-1 task-3] m_n0kb-XT7yMCq9e4jGqBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", authorization) +23:10:20.713 [XNIO-1 task-3] m_n0kb-XT7yMCq9e4jGqBQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.720 [XNIO-1 task-3] JPFcTholSeaI27hnJVYNlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.720 [XNIO-1 task-3] JPFcTholSeaI27hnJVYNlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.721 [XNIO-1 task-3] JPFcTholSeaI27hnJVYNlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.721 [XNIO-1 task-3] JPFcTholSeaI27hnJVYNlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = HasnwffXSGe5Q-8mbdN_8Q redirectUri = http://localhost:8080/authorization +23:10:20.727 [XNIO-1 task-3] JPFcTholSeaI27hnJVYNlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.730 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d1949c2f-d446-4ae0-b6aa-dd0bede13d13 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:20.753 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2fea8386 +23:10:20.755 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d1949c2f-d446-4ae0-b6aa-dd0bede13d13 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:20.775 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cc0c8fe8 +23:10:20.777 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cc0c8fe8 +23:10:20.796 [XNIO-1 task-3] 7mLuqPZHSX2dJabvJ-chog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.796 [XNIO-1 task-3] 7mLuqPZHSX2dJabvJ-chog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.796 [XNIO-1 task-3] 7mLuqPZHSX2dJabvJ-chog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.796 [XNIO-1 task-3] 7mLuqPZHSX2dJabvJ-chog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = l_slD7lTSGqDMA-Isgqvyg redirectUri = http://localhost:8080/authorization +23:10:20.803 [XNIO-1 task-3] 7mLuqPZHSX2dJabvJ-chog ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.818 [XNIO-1 task-3] jb_x949cTkClOZOwLFTs7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.818 [XNIO-1 task-3] jb_x949cTkClOZOwLFTs7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.818 [XNIO-1 task-3] jb_x949cTkClOZOwLFTs7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.818 [XNIO-1 task-3] jb_x949cTkClOZOwLFTs7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PxPugwgGRIOZeXRb2SheWQ redirectUri = http://localhost:8080/authorization +23:10:20.824 [XNIO-1 task-3] jb_x949cTkClOZOwLFTs7Q ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.830 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:af2e8ee8 +23:10:20.860 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cc0c8fe8 +23:10:20.867 [XNIO-1 task-3] 3FuzWa79Rg25OLnRHdHTEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.867 [XNIO-1 task-3] 3FuzWa79Rg25OLnRHdHTEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.868 [XNIO-1 task-3] 3FuzWa79Rg25OLnRHdHTEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.868 [XNIO-1 task-3] 3FuzWa79Rg25OLnRHdHTEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", authorization) +23:10:20.876 [XNIO-1 task-3] 3FuzWa79Rg25OLnRHdHTEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.887 [XNIO-1 task-3] 5HOAofLYTeW2QBGWuliZhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.887 [XNIO-1 task-3] 5HOAofLYTeW2QBGWuliZhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.887 [XNIO-1 task-3] 5HOAofLYTeW2QBGWuliZhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.888 [XNIO-1 task-3] 5HOAofLYTeW2QBGWuliZhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjJiM2RjMWQtYjllMy00ODY1LWJhOGYtYzZjODBmMjg0NzM3OmQ3ZVhDYmJwUWVDU0V3U1ZnOThQVnc=", "Basic MjJiM2RjMWQtYjllMy00ODY1LWJhOGYtYzZjODBmMjg0NzM3OmQ3ZVhDYmJwUWVDU0V3U1ZnOThQVnc=", authorization) +23:10:20.892 [XNIO-1 task-4] adUQCsfxQgKNSZnzNjD98Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.893 [XNIO-1 task-4] adUQCsfxQgKNSZnzNjD98Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.893 [XNIO-1 task-4] adUQCsfxQgKNSZnzNjD98Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.893 [XNIO-1 task-3] 5HOAofLYTeW2QBGWuliZhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.893 [XNIO-1 task-4] adUQCsfxQgKNSZnzNjD98Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlN2JjOTMtMWVkNy00ZGJkLTg2MTMtMWFiYjVlNWNhMDljOktnYTdiY2FzVFVtaVB5T2tpSm9hcHc=", "Basic ZDBlN2JjOTMtMWVkNy00ZGJkLTg2MTMtMWFiYjVlNWNhMDljOktnYTdiY2FzVFVtaVB5T2tpSm9hcHc=", authorization) +23:10:20.900 [XNIO-1 task-4] adUQCsfxQgKNSZnzNjD98Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:20.900 [XNIO-1 task-4] adUQCsfxQgKNSZnzNjD98Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.903 [XNIO-1 task-3] Ve1GUwQZToOLJBQqA_GFOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.903 [XNIO-1 task-3] Ve1GUwQZToOLJBQqA_GFOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.903 [XNIO-1 task-3] Ve1GUwQZToOLJBQqA_GFOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.903 [XNIO-1 task-3] Ve1GUwQZToOLJBQqA_GFOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:20.909 [XNIO-1 task-3] Ve1GUwQZToOLJBQqA_GFOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.914 [XNIO-1 task-3] 6t18o5p0Qca9Y77a1b1UEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.914 [XNIO-1 task-3] 6t18o5p0Qca9Y77a1b1UEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.914 [XNIO-1 task-3] 6t18o5p0Qca9Y77a1b1UEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.914 [XNIO-1 task-3] 6t18o5p0Qca9Y77a1b1UEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5f1b0f6d-b5a3-4347-aa00-bbe9514d8083 scope = null +23:10:20.915 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2fea8386 +23:10:20.918 [XNIO-1 task-2] gMcOksv3Sz-qzpmvU10aFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.918 [XNIO-1 task-2] gMcOksv3Sz-qzpmvU10aFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.918 [XNIO-1 task-2] gMcOksv3Sz-qzpmvU10aFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.918 [XNIO-1 task-2] gMcOksv3Sz-qzpmvU10aFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.918 [XNIO-1 task-4] OTy-MEl4SwiugS2RsqQcYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.918 [XNIO-1 task-4] OTy-MEl4SwiugS2RsqQcYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.918 [XNIO-1 task-2] gMcOksv3Sz-qzpmvU10aFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", authorization) +23:10:20.918 [XNIO-1 task-2] gMcOksv3Sz-qzpmvU10aFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:20.923 [XNIO-1 task-3] 6t18o5p0Qca9Y77a1b1UEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.924 [XNIO-1 task-2] gMcOksv3Sz-qzpmvU10aFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.926 [XNIO-1 task-4] OTy-MEl4SwiugS2RsqQcYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.929 [XNIO-1 task-2] dkD9dIv0Roix5wma86bRVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.929 [XNIO-1 task-2] dkD9dIv0Roix5wma86bRVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.930 [XNIO-1 task-2] dkD9dIv0Roix5wma86bRVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.930 [XNIO-1 task-2] dkD9dIv0Roix5wma86bRVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", authorization) +23:10:20.936 [XNIO-1 task-2] dkD9dIv0Roix5wma86bRVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.942 [XNIO-1 task-2] xOX9AwmwTMqGWcLEx9o_2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.942 [XNIO-1 task-2] xOX9AwmwTMqGWcLEx9o_2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.942 [XNIO-1 task-2] xOX9AwmwTMqGWcLEx9o_2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.942 [XNIO-1 task-2] xOX9AwmwTMqGWcLEx9o_2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFkZjBhYjMtMjZlOS00M2NiLWI1YjMtZGJjMDE5NWNiNzMxOlktSVp1Ykk1UmJTcXNpa01hYmhlWVE=", "Basic YWFkZjBhYjMtMjZlOS00M2NiLWI1YjMtZGJjMDE5NWNiNzMxOlktSVp1Ykk1UmJTcXNpa01hYmhlWVE=", authorization) +23:10:20.947 [XNIO-1 task-2] xOX9AwmwTMqGWcLEx9o_2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.948 [XNIO-1 task-4] _w2Lz_CnRA22hqWV2JO6xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.948 [XNIO-1 task-4] _w2Lz_CnRA22hqWV2JO6xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.948 [XNIO-1 task-4] _w2Lz_CnRA22hqWV2JO6xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.948 [XNIO-1 task-4] _w2Lz_CnRA22hqWV2JO6xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", authorization) +23:10:20.951 [XNIO-1 task-2] CJejY0XVS_iVq2-CvVBFwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.951 [XNIO-1 task-2] CJejY0XVS_iVq2-CvVBFwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.952 [XNIO-1 task-2] CJejY0XVS_iVq2-CvVBFwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.952 [XNIO-1 task-2] CJejY0XVS_iVq2-CvVBFwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDNjMzYyZGItYjhjNi00NTUzLTg3ZjItYTc0YTk5NTA3NDJmOnFRM2xNaHRhUTN5VTJjRlRBc185d3c=", "Basic NDNjMzYyZGItYjhjNi00NTUzLTg3ZjItYTc0YTk5NTA3NDJmOnFRM2xNaHRhUTN5VTJjRlRBc185d3c=", authorization) +23:10:20.952 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:cc0c8fe8 +23:10:20.954 [XNIO-1 task-3] uNCA8r90T7i2_tnI0kIk6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 011ecb81-353a-404e-8f0f-fcbef48ccb68 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:20.956 [XNIO-1 task-3] uNCA8r90T7i2_tnI0kIk6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.956 [XNIO-1 task-3] uNCA8r90T7i2_tnI0kIk6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.957 [XNIO-1 task-3] uNCA8r90T7i2_tnI0kIk6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.957 [XNIO-1 task-3] uNCA8r90T7i2_tnI0kIk6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:20.960 [XNIO-1 task-4] D2v7u39nQLGLIn-5IKIiIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.960 [XNIO-1 task-4] D2v7u39nQLGLIn-5IKIiIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.960 [XNIO-1 task-4] D2v7u39nQLGLIn-5IKIiIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.960 [XNIO-1 task-4] D2v7u39nQLGLIn-5IKIiIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 011ecb81-353a-404e-8f0f-fcbef48ccb68 scope = null +23:10:20.962 [XNIO-1 task-3] uNCA8r90T7i2_tnI0kIk6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.966 [XNIO-1 task-4] D2v7u39nQLGLIn-5IKIiIA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.966 [XNIO-1 task-3] At4VKfiGSJ6l2a34PtwkLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.966 [XNIO-1 task-3] At4VKfiGSJ6l2a34PtwkLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.966 [XNIO-1 task-3] At4VKfiGSJ6l2a34PtwkLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", authorization) +23:10:20.969 [XNIO-1 task-4] S4y-uCfQQq-IC2v1Mga-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.969 [XNIO-1 task-4] S4y-uCfQQq-IC2v1Mga-9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.969 [XNIO-1 task-4] S4y-uCfQQq-IC2v1Mga-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.969 [XNIO-1 task-2] CJejY0XVS_iVq2-CvVBFwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.969 [XNIO-1 task-2] CJejY0XVS_iVq2-CvVBFwg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.971 [XNIO-1 task-3] At4VKfiGSJ6l2a34PtwkLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.975 [XNIO-1 task-3] ouxENiaMQymTKy1Ar3sErw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.975 [XNIO-1 task-3] ouxENiaMQymTKy1Ar3sErw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:20.975 [XNIO-1 task-3] ouxENiaMQymTKy1Ar3sErw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:20.976 [XNIO-1 task-3] ouxENiaMQymTKy1Ar3sErw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:20.980 [XNIO-1 task-4] S4y-uCfQQq-IC2v1Mga-9A ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:20.981 [XNIO-1 task-3] ouxENiaMQymTKy1Ar3sErw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:20.984 [XNIO-1 task-4] 8Hf2f_gSRs626WnEclAqxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.984 [XNIO-1 task-4] 8Hf2f_gSRs626WnEclAqxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.984 [XNIO-1 task-4] 8Hf2f_gSRs626WnEclAqxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.984 [XNIO-1 task-4] 8Hf2f_gSRs626WnEclAqxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bf3501ff-411a-43a8-b176-2e5f4288e3fd scope = null +23:10:20.988 [XNIO-1 task-3] 6m21DJV1Txy2EXgfZEaUAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.989 [XNIO-1 task-3] 6m21DJV1Txy2EXgfZEaUAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.989 [XNIO-1 task-3] 6m21DJV1Txy2EXgfZEaUAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.989 [XNIO-1 task-3] 6m21DJV1Txy2EXgfZEaUAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 21LglB3dT7aB4JmizBRV8Q redirectUri = http://localhost:8080/authorization +23:10:20.992 [XNIO-1 task-2] uFS9MkTMTtSHyv4GRaOaug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.992 [XNIO-1 task-2] uFS9MkTMTtSHyv4GRaOaug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.994 [XNIO-1 task-2] uFS9MkTMTtSHyv4GRaOaug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:20.994 [XNIO-1 task-2] uFS9MkTMTtSHyv4GRaOaug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:20.995 [XNIO-1 task-4] 8Hf2f_gSRs626WnEclAqxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:20.995 [XNIO-1 task-3] 6m21DJV1Txy2EXgfZEaUAQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:21.001 [XNIO-1 task-2] uFS9MkTMTtSHyv4GRaOaug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.007 [XNIO-1 task-4] T-v_liFdSbKKkTzdCNBU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.007 [XNIO-1 task-4] T-v_liFdSbKKkTzdCNBU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.007 [XNIO-1 task-4] T-v_liFdSbKKkTzdCNBU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.007 [XNIO-1 task-4] T-v_liFdSbKKkTzdCNBU4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.012 [XNIO-1 task-2] 5YfeVpXTR6SfPSEOzqaSkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.012 [XNIO-1 task-2] 5YfeVpXTR6SfPSEOzqaSkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.012 [XNIO-1 task-2] 5YfeVpXTR6SfPSEOzqaSkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.012 [XNIO-1 task-2] 5YfeVpXTR6SfPSEOzqaSkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CbUViZHDQMOiNwgi-RpmGQ redirectUri = http://localhost:8080/authorization +23:10:21.012 [XNIO-1 task-4] T-v_liFdSbKKkTzdCNBU4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.018 [XNIO-1 task-2] 5YfeVpXTR6SfPSEOzqaSkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +Jun 28, 2024 11:10:21 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:21.020 [XNIO-1 task-4] jmQ8C_4JQn-to1ea_jJ8ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.020 [XNIO-1 task-4] jmQ8C_4JQn-to1ea_jJ8ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.020 [XNIO-1 task-4] jmQ8C_4JQn-to1ea_jJ8ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlN2JjOTMtMWVkNy00ZGJkLTg2MTMtMWFiYjVlNWNhMDljOktnYTdiY2FzVFVtaVB5T2tpSm9hcHc=", "Basic ZDBlN2JjOTMtMWVkNy00ZGJkLTg2MTMtMWFiYjVlNWNhMDljOktnYTdiY2FzVFVtaVB5T2tpSm9hcHc=", authorization) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +23:10:21.023 [XNIO-1 task-3] 5g9Y6FaqR8yXUbW7OZEZmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.024 [XNIO-1 task-3] 5g9Y6FaqR8yXUbW7OZEZmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +23:10:21.024 [XNIO-1 task-3] 5g9Y6FaqR8yXUbW7OZEZmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjgzOWNjY2QtMjliMi00MjFiLTg3MTMtYTQyNzA4OGNiZGM2OmVMWkNrOXdXUkhhRUl4WHg4RGZfM0E=", "Basic MjgzOWNjY2QtMjliMi00MjFiLTg3MTMtYTQyNzA4OGNiZGM2OmVMWkNrOXdXUkhhRUl4WHg4RGZfM0E=", authorization) + +23:10:21.024 [XNIO-1 task-3] 5g9Y6FaqR8yXUbW7OZEZmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 830BGEjwRkCsazlF52aJWw redirectUri = http://localhost:8080/authorization +23:10:21.026 [XNIO-1 task-4] jmQ8C_4JQn-to1ea_jJ8ww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.030 [XNIO-1 task-2] XCbls89VTva2p-EdLeCfzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.031 [XNIO-1 task-2] XCbls89VTva2p-EdLeCfzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.032 [XNIO-1 task-3] 5g9Y6FaqR8yXUbW7OZEZmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.032 [XNIO-1 task-2] XCbls89VTva2p-EdLeCfzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.032 [XNIO-1 task-2] XCbls89VTva2p-EdLeCfzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.038 [XNIO-1 task-2] XCbls89VTva2p-EdLeCfzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.043 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2fea8386 +23:10:21.044 [XNIO-1 task-2] e1syGLAsQd66MJ06J9cMmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.045 [XNIO-1 task-2] e1syGLAsQd66MJ06J9cMmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.045 [XNIO-1 task-2] e1syGLAsQd66MJ06J9cMmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.045 [XNIO-1 task-2] e1syGLAsQd66MJ06J9cMmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.050 [XNIO-1 task-2] e1syGLAsQd66MJ06J9cMmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.054 [XNIO-1 task-2] Wt5nirNnSq6ovn-GRvsZCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.054 [XNIO-1 task-2] Wt5nirNnSq6ovn-GRvsZCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.054 [XNIO-1 task-2] Wt5nirNnSq6ovn-GRvsZCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.054 [XNIO-1 task-2] Wt5nirNnSq6ovn-GRvsZCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.061 [XNIO-1 task-2] Wt5nirNnSq6ovn-GRvsZCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.061 [XNIO-1 task-4] NuTS9EvsS2mpKS82gLWMEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.061 [XNIO-1 task-4] NuTS9EvsS2mpKS82gLWMEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.061 [XNIO-1 task-4] NuTS9EvsS2mpKS82gLWMEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.062 [XNIO-1 task-4] NuTS9EvsS2mpKS82gLWMEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:21.067 [XNIO-1 task-4] NuTS9EvsS2mpKS82gLWMEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:21.071 [XNIO-1 task-4] NC4Ag5zTRZeJQu0-g9G3-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.072 [XNIO-1 task-4] NC4Ag5zTRZeJQu0-g9G3-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.073 [XNIO-1 task-4] NC4Ag5zTRZeJQu0-g9G3-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.073 [XNIO-1 task-4] NC4Ag5zTRZeJQu0-g9G3-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", authorization) +23:10:21.080 [XNIO-1 task-4] NC4Ag5zTRZeJQu0-g9G3-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.086 [XNIO-1 task-4] AMI2xlqwSP2U_jebLAse7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.086 [XNIO-1 task-4] AMI2xlqwSP2U_jebLAse7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.086 [XNIO-1 task-4] AMI2xlqwSP2U_jebLAse7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.088 [XNIO-1 task-4] AMI2xlqwSP2U_jebLAse7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.091 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bddac66c-c6a9-48a9-91ac-b16950953008 +23:10:21.092 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bddac66c-c6a9-48a9-91ac-b16950953008 +23:10:21.093 [XNIO-1 task-4] AMI2xlqwSP2U_jebLAse7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.094 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2fea8386 +23:10:21.098 [XNIO-1 task-4] -e0iD9OUR96GRlVZCJa67Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.099 [XNIO-1 task-4] -e0iD9OUR96GRlVZCJa67Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.099 [XNIO-1 task-4] -e0iD9OUR96GRlVZCJa67Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.099 [XNIO-1 task-4] -e0iD9OUR96GRlVZCJa67Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Wk_5RxPsTZ-i_snrTL5xWg redirectUri = http://localhost:8080/authorization +23:10:21.103 [XNIO-1 task-2] cwMuz4WUSLqhKSaYoPO3kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.103 [XNIO-1 task-2] cwMuz4WUSLqhKSaYoPO3kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.104 [XNIO-1 task-2] cwMuz4WUSLqhKSaYoPO3kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.104 [XNIO-1 task-2] cwMuz4WUSLqhKSaYoPO3kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzUxMmU4OTctOGQyNi00N2FmLThhYWYtYTliNjQwYmI4MjU3OjAxMW8tNHU0UURlU2JvTUZTTkMyb1E=", "Basic MzUxMmU4OTctOGQyNi00N2FmLThhYWYtYTliNjQwYmI4MjU3OjAxMW8tNHU0UURlU2JvTUZTTkMyb1E=", authorization) +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:21.104 [XNIO-1 task-2] cwMuz4WUSLqhKSaYoPO3kw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.109 [XNIO-1 task-2] cwMuz4WUSLqhKSaYoPO3kw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.116 [XNIO-1 task-2] qiyvJK8iRhmimS1L5Vyz0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.116 [XNIO-1 task-2] qiyvJK8iRhmimS1L5Vyz0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.117 [XNIO-1 task-2] qiyvJK8iRhmimS1L5Vyz0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.117 [XNIO-1 task-2] qiyvJK8iRhmimS1L5Vyz0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WWtJP9QnRauJs018jgWgng redirectUri = http://localhost:8080/authorization +23:10:21.120 [XNIO-1 task-4] 9gYBGKR1SGChQaqsRWoPpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.120 [XNIO-1 task-4] 9gYBGKR1SGChQaqsRWoPpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.120 [XNIO-1 task-4] 9gYBGKR1SGChQaqsRWoPpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.121 [XNIO-1 task-4] 9gYBGKR1SGChQaqsRWoPpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.123 [XNIO-1 task-2] qiyvJK8iRhmimS1L5Vyz0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.125 [XNIO-1 task-4] 9gYBGKR1SGChQaqsRWoPpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.129 [XNIO-1 task-4] ccVVf4taQTCls168SR0KcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.129 [XNIO-1 task-4] ccVVf4taQTCls168SR0KcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.129 [XNIO-1 task-4] ccVVf4taQTCls168SR0KcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.129 [XNIO-1 task-4] ccVVf4taQTCls168SR0KcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFkZjBhYjMtMjZlOS00M2NiLWI1YjMtZGJjMDE5NWNiNzMxOlktSVp1Ykk1UmJTcXNpa01hYmhlWVE=", "Basic YWFkZjBhYjMtMjZlOS00M2NiLWI1YjMtZGJjMDE5NWNiNzMxOlktSVp1Ykk1UmJTcXNpa01hYmhlWVE=", authorization) +23:10:21.134 [XNIO-1 task-4] ccVVf4taQTCls168SR0KcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.136 [XNIO-1 task-4] xm2eLkl1R4OpeHgOWcIwKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.137 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:af2e8ee8 +23:10:21.137 [XNIO-1 task-4] xm2eLkl1R4OpeHgOWcIwKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.138 [XNIO-1 task-4] xm2eLkl1R4OpeHgOWcIwKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.138 [XNIO-1 task-4] xm2eLkl1R4OpeHgOWcIwKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:21.140 [XNIO-1 task-2] E-dIyu10TtyZ1zORobgcng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.140 [XNIO-1 task-2] E-dIyu10TtyZ1zORobgcng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.142 [XNIO-1 task-2] E-dIyu10TtyZ1zORobgcng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.142 [XNIO-1 task-2] E-dIyu10TtyZ1zORobgcng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjJiM2RjMWQtYjllMy00ODY1LWJhOGYtYzZjODBmMjg0NzM3OmQ3ZVhDYmJwUWVDU0V3U1ZnOThQVnc=", "Basic MjJiM2RjMWQtYjllMy00ODY1LWJhOGYtYzZjODBmMjg0NzM3OmQ3ZVhDYmJwUWVDU0V3U1ZnOThQVnc=", authorization) +23:10:21.144 [XNIO-1 task-3] 66hxSS0JSCywmbRWP1MKPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.144 [XNIO-1 task-3] 66hxSS0JSCywmbRWP1MKPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.144 [XNIO-1 task-3] 66hxSS0JSCywmbRWP1MKPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.145 [XNIO-1 task-3] 66hxSS0JSCywmbRWP1MKPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFkZjBhYjMtMjZlOS00M2NiLWI1YjMtZGJjMDE5NWNiNzMxOlktSVp1Ykk1UmJTcXNpa01hYmhlWVE=", "Basic YWFkZjBhYjMtMjZlOS00M2NiLWI1YjMtZGJjMDE5NWNiNzMxOlktSVp1Ykk1UmJTcXNpa01hYmhlWVE=", authorization) +23:10:21.148 [XNIO-1 task-2] E-dIyu10TtyZ1zORobgcng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.152 [XNIO-1 task-2] E-dIyu10TtyZ1zORobgcng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +Jun 28, 2024 11:10:21 PM com.hazelcast.map.impl.operation.DeleteOperation +23:10:21.152 [XNIO-1 task-3] 66hxSS0JSCywmbRWP1MKPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.152 [XNIO-1 task-4] xm2eLkl1R4OpeHgOWcIwKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +23:10:21.162 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:621d0516-9fac-48e7-b71b-c8759d197888 +23:10:21.162 [XNIO-1 task-3] upHzNEpATTKXQ_d1nDF10A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.162 [XNIO-1 task-3] upHzNEpATTKXQ_d1nDF10A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.162 [XNIO-1 task-3] upHzNEpATTKXQ_d1nDF10A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.162 [XNIO-1 task-3] upHzNEpATTKXQ_d1nDF10A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.162 [XNIO-1 task-3] upHzNEpATTKXQ_d1nDF10A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", authorization) +23:10:21.168 [XNIO-1 task-3] upHzNEpATTKXQ_d1nDF10A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.168 [XNIO-1 task-3] upHzNEpATTKXQ_d1nDF10A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.171 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:76254d22 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:21.179 [XNIO-1 task-3] IarEIC_dRr2V4_0cCfgOFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +23:10:21.186 [XNIO-1 task-3] IarEIC_dRr2V4_0cCfgOFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +23:10:21.186 [XNIO-1 task-3] IarEIC_dRr2V4_0cCfgOFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +Jun 28, 2024 11:10:21 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +23:10:21.202 [XNIO-1 task-4] IDZPsYZhQWqbeAalS43aKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +23:10:21.203 [XNIO-1 task-4] IDZPsYZhQWqbeAalS43aKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:21.209 [XNIO-1 task-4] IDZPsYZhQWqbeAalS43aKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.212 [XNIO-1 task-4] lTf_3bm5Taykp0D7o7DeVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.212 [XNIO-1 task-4] lTf_3bm5Taykp0D7o7DeVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +23:10:21.212 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9e8d4db7 +23:10:21.215 [XNIO-1 task-3] i5B1TNwOTXmf4j_HNMLyNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +23:10:21.216 [XNIO-1 task-3] i5B1TNwOTXmf4j_HNMLyNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.216 [XNIO-1 task-3] i5B1TNwOTXmf4j_HNMLyNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDE5NDljMmYtZDQ0Ni00YWUwLWI2YWEtZGQwYmVkZTEzZDEzOll2cU5NMGJWUXVHWmNLQS1uN2pBOFE=", "Basic ZDE5NDljMmYtZDQ0Ni00YWUwLWI2YWEtZGQwYmVkZTEzZDEzOll2cU5NMGJWUXVHWmNLQS1uN2pBOFE=", authorization) +23:10:21.217 [XNIO-1 task-2] 0o-hLxLmSwKgATvK_QtdpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.218 [XNIO-1 task-2] 0o-hLxLmSwKgATvK_QtdpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.219 [XNIO-1 task-2] 0o-hLxLmSwKgATvK_QtdpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.219 [XNIO-1 task-2] 0o-hLxLmSwKgATvK_QtdpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.219 [XNIO-1 task-4] lTf_3bm5Taykp0D7o7DeVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.219 [XNIO-1 task-4] lTf_3bm5Taykp0D7o7DeVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.221 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:191538fa-e5b9-49a6-aded-15a19fc70628 +23:10:21.221 [XNIO-1 task-3] i5B1TNwOTXmf4j_HNMLyNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.223 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9e8d4db7 +23:10:21.227 [XNIO-1 task-2] 0o-hLxLmSwKgATvK_QtdpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.230 [XNIO-1 task-4] hhVOqtHjQ_2uFi71MAcS3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.230 [XNIO-1 task-4] hhVOqtHjQ_2uFi71MAcS3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.230 [XNIO-1 task-4] hhVOqtHjQ_2uFi71MAcS3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.230 [XNIO-1 task-4] hhVOqtHjQ_2uFi71MAcS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRkYWM2NmMtYzZhOS00OGE5LTkxYWMtYjE2OTUwOTUzMDA4OlZxZzI5VGRZU1RPNHRkcmZ3S1NVVkE=", "Basic YmRkYWM2NmMtYzZhOS00OGE5LTkxYWMtYjE2OTUwOTUzMDA4OlZxZzI5VGRZU1RPNHRkcmZ3S1NVVkE=", authorization) +23:10:21.233 [XNIO-1 task-3] gyjZcPWeR_i-BxWBlUDVag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.233 [XNIO-1 task-3] gyjZcPWeR_i-BxWBlUDVag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.233 [XNIO-1 task-3] gyjZcPWeR_i-BxWBlUDVag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.233 [XNIO-1 task-3] gyjZcPWeR_i-BxWBlUDVag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", authorization) +23:10:21.236 [XNIO-1 task-4] hhVOqtHjQ_2uFi71MAcS3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.238 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:191538fa-e5b9-49a6-aded-15a19fc70628 +23:10:21.245 [XNIO-1 task-3] gyjZcPWeR_i-BxWBlUDVag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.247 [XNIO-1 task-4] uyAjXS5MSgqwlXrjYqeXQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.247 [XNIO-1 task-4] uyAjXS5MSgqwlXrjYqeXQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.247 [XNIO-1 task-4] uyAjXS5MSgqwlXrjYqeXQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.247 [XNIO-1 task-4] uyAjXS5MSgqwlXrjYqeXQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.253 [XNIO-1 task-4] uyAjXS5MSgqwlXrjYqeXQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.259 [XNIO-1 task-4] d4L503GIQJeM68z4MBYSvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.259 [XNIO-1 task-4] d4L503GIQJeM68z4MBYSvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.259 [XNIO-1 task-4] d4L503GIQJeM68z4MBYSvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.259 [XNIO-1 task-4] d4L503GIQJeM68z4MBYSvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.264 [XNIO-1 task-4] d4L503GIQJeM68z4MBYSvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.271 [XNIO-1 task-4] f4xtwpTiRhWSJSqtrKbyIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.271 [XNIO-1 task-4] f4xtwpTiRhWSJSqtrKbyIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.271 [XNIO-1 task-4] f4xtwpTiRhWSJSqtrKbyIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.271 [XNIO-1 task-4] f4xtwpTiRhWSJSqtrKbyIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.277 [XNIO-1 task-4] f4xtwpTiRhWSJSqtrKbyIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.280 [XNIO-1 task-4] cwuRnQglSj2Rpxw5treA2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.280 [XNIO-1 task-4] cwuRnQglSj2Rpxw5treA2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.280 [XNIO-1 task-4] cwuRnQglSj2Rpxw5treA2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.281 [XNIO-1 task-4] cwuRnQglSj2Rpxw5treA2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6tkAmURmRBWIgbjDV3mLIQ redirectUri = http://localhost:8080/authorization +23:10:21.288 [XNIO-1 task-4] cwuRnQglSj2Rpxw5treA2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.290 [XNIO-1 task-3] 7mbHt7nZS8atbQeIuRYXiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.290 [XNIO-1 task-3] 7mbHt7nZS8atbQeIuRYXiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.290 [XNIO-1 task-3] 7mbHt7nZS8atbQeIuRYXiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.290 [XNIO-1 task-3] 7mbHt7nZS8atbQeIuRYXiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", authorization) +23:10:21.295 [XNIO-1 task-3] 7mbHt7nZS8atbQeIuRYXiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.303 [XNIO-1 task-4] bfyoUDoxR3CrxbLwRd6jKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.303 [XNIO-1 task-4] bfyoUDoxR3CrxbLwRd6jKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.303 [XNIO-1 task-4] bfyoUDoxR3CrxbLwRd6jKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.304 [XNIO-1 task-4] bfyoUDoxR3CrxbLwRd6jKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.306 [XNIO-1 task-3] vLteKu-4SjWqDuCsNJnXJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.306 [XNIO-1 task-3] vLteKu-4SjWqDuCsNJnXJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.306 [XNIO-1 task-3] vLteKu-4SjWqDuCsNJnXJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.306 [XNIO-1 task-2] fc7l5ZkSRMyYDOp0OncCjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.306 [XNIO-1 task-3] vLteKu-4SjWqDuCsNJnXJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", authorization) +23:10:21.306 [XNIO-1 task-3] vLteKu-4SjWqDuCsNJnXJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.306 [XNIO-1 task-2] fc7l5ZkSRMyYDOp0OncCjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.306 [XNIO-1 task-2] fc7l5ZkSRMyYDOp0OncCjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", authorization) +23:10:21.309 [XNIO-1 task-4] bfyoUDoxR3CrxbLwRd6jKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.309 [XNIO-1 task-4] bfyoUDoxR3CrxbLwRd6jKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.311 [XNIO-1 task-3] vLteKu-4SjWqDuCsNJnXJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.318 [XNIO-1 task-3] LgRriEhmRfmhNlOldvxmUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.318 [XNIO-1 task-3] LgRriEhmRfmhNlOldvxmUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.318 [XNIO-1 task-3] LgRriEhmRfmhNlOldvxmUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.319 [XNIO-1 task-3] LgRriEhmRfmhNlOldvxmUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.319 [XNIO-1 task-3] LgRriEhmRfmhNlOldvxmUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.321 [XNIO-1 task-2] fc7l5ZkSRMyYDOp0OncCjA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.324 [XNIO-1 task-3] LgRriEhmRfmhNlOldvxmUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.327 [XNIO-1 task-4] QXo1baq8Sii_4ByCEVvtsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.327 [XNIO-1 task-4] QXo1baq8Sii_4ByCEVvtsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.327 [XNIO-1 task-4] QXo1baq8Sii_4ByCEVvtsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.327 [XNIO-1 task-4] QXo1baq8Sii_4ByCEVvtsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d87a2ed0-f6c7-4374-a81d-def2ec05325b scope = null +23:10:21.331 [XNIO-1 task-3] uX_iGDZHSrCQuqgt7aRnZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.331 [XNIO-1 task-3] uX_iGDZHSrCQuqgt7aRnZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.331 [XNIO-1 task-3] uX_iGDZHSrCQuqgt7aRnZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.332 [XNIO-1 task-3] uX_iGDZHSrCQuqgt7aRnZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.337 [XNIO-1 task-3] uX_iGDZHSrCQuqgt7aRnZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.341 [XNIO-1 task-3] _-vHq849QLG2xH64KzRWgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.341 [XNIO-1 task-3] _-vHq849QLG2xH64KzRWgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.341 [XNIO-1 task-3] _-vHq849QLG2xH64KzRWgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.341 [XNIO-1 task-3] _-vHq849QLG2xH64KzRWgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.346 [XNIO-1 task-3] _-vHq849QLG2xH64KzRWgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.347 [XNIO-1 task-3] _-vHq849QLG2xH64KzRWgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.352 [XNIO-1 task-3] ZPwTdD0PSzqJTDkcdMqu6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.352 [XNIO-1 task-3] ZPwTdD0PSzqJTDkcdMqu6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.353 [XNIO-1 task-3] ZPwTdD0PSzqJTDkcdMqu6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.354 [XNIO-1 task-3] ZPwTdD0PSzqJTDkcdMqu6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.359 [XNIO-1 task-3] ZPwTdD0PSzqJTDkcdMqu6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.367 [XNIO-1 task-4] FLMLixkzRdqlL_8LQhALHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.367 [XNIO-1 task-4] FLMLixkzRdqlL_8LQhALHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.367 [XNIO-1 task-4] FLMLixkzRdqlL_8LQhALHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.367 [XNIO-1 task-4] FLMLixkzRdqlL_8LQhALHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", authorization) +23:10:21.371 [XNIO-1 task-3] X0NKrJXhSaa_r2PSV74-cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.371 [XNIO-1 task-3] X0NKrJXhSaa_r2PSV74-cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.372 [XNIO-1 task-4] FLMLixkzRdqlL_8LQhALHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.372 [XNIO-1 task-3] X0NKrJXhSaa_r2PSV74-cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.372 [XNIO-1 task-3] X0NKrJXhSaa_r2PSV74-cA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.380 [XNIO-1 task-4] WoL9gGrFQoeaP1Ufibq0og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.383 [XNIO-1 task-4] WoL9gGrFQoeaP1Ufibq0og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.383 [XNIO-1 task-4] WoL9gGrFQoeaP1Ufibq0og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.383 [XNIO-1 task-4] WoL9gGrFQoeaP1Ufibq0og DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", authorization) +23:10:21.385 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9e8d4db7 +23:10:21.388 [XNIO-1 task-4] WoL9gGrFQoeaP1Ufibq0og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.388 [XNIO-1 task-3] X0NKrJXhSaa_r2PSV74-cA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.393 [XNIO-1 task-4] EJ5q4buhTsqzd4oI-CNQyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.393 [XNIO-1 task-4] EJ5q4buhTsqzd4oI-CNQyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.393 [XNIO-1 task-4] EJ5q4buhTsqzd4oI-CNQyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.393 [XNIO-1 task-4] EJ5q4buhTsqzd4oI-CNQyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.399 [XNIO-1 task-4] EJ5q4buhTsqzd4oI-CNQyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.405 [XNIO-1 task-4] 7uMyGK3CRbyezW7jXzJZLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.405 [XNIO-1 task-4] 7uMyGK3CRbyezW7jXzJZLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.405 [XNIO-1 task-4] 7uMyGK3CRbyezW7jXzJZLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.405 [XNIO-1 task-4] 7uMyGK3CRbyezW7jXzJZLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:21.405 [XNIO-1 task-4] 7uMyGK3CRbyezW7jXzJZLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.411 [XNIO-1 task-4] 7uMyGK3CRbyezW7jXzJZLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.411 [XNIO-1 task-4] 7uMyGK3CRbyezW7jXzJZLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.420 [XNIO-1 task-4] a3SSTQi4RkKQl-6xhN9uWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.420 [XNIO-1 task-4] a3SSTQi4RkKQl-6xhN9uWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +23:10:21.420 [XNIO-1 task-4] a3SSTQi4RkKQl-6xhN9uWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +23:10:21.421 [XNIO-1 task-3] E3E96m5gRziKXYOGJIyYsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.421 [XNIO-1 task-3] E3E96m5gRziKXYOGJIyYsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.421 [XNIO-1 task-4] a3SSTQi4RkKQl-6xhN9uWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Bw2P9vSaSX2Vn0D6obMmPg redirectUri = http://localhost:8080/authorization +23:10:21.421 [XNIO-1 task-3] E3E96m5gRziKXYOGJIyYsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.421 [XNIO-1 task-3] E3E96m5gRziKXYOGJIyYsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.425 [XNIO-1 task-2] QL5AGNYwQCWo2C_gNtPmkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +23:10:21.426 [XNIO-1 task-3] E3E96m5gRziKXYOGJIyYsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.428 [XNIO-1 task-4] a3SSTQi4RkKQl-6xhN9uWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +23:10:21.431 [XNIO-1 task-3] vi3xAvioRsmpz5LeUWre9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.431 [XNIO-1 task-3] vi3xAvioRsmpz5LeUWre9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.431 [XNIO-1 task-3] vi3xAvioRsmpz5LeUWre9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) + ... 14 more + +23:10:21.431 [XNIO-1 task-2] QL5AGNYwQCWo2C_gNtPmkw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:21.437 [XNIO-1 task-3] vi3xAvioRsmpz5LeUWre9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.447 [XNIO-1 task-4] -saIofaDSIOY5pzGWNH17w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.448 [XNIO-1 task-4] -saIofaDSIOY5pzGWNH17w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.448 [XNIO-1 task-4] -saIofaDSIOY5pzGWNH17w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.448 [XNIO-1 task-4] -saIofaDSIOY5pzGWNH17w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.453 [XNIO-1 task-4] -saIofaDSIOY5pzGWNH17w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.455 [XNIO-1 task-4] odTmwf1zSHuCeUuXc8YDQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.455 [XNIO-1 task-4] odTmwf1zSHuCeUuXc8YDQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.456 [XNIO-1 task-4] odTmwf1zSHuCeUuXc8YDQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.456 [XNIO-1 task-4] odTmwf1zSHuCeUuXc8YDQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 760b6ae1-edd7-4abd-a6f5-f34a8c5c7de9 scope = null +23:10:21.465 [XNIO-1 task-3] 6uVEj5KyQX2oV-d6O-Kkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.465 [XNIO-1 task-3] 6uVEj5KyQX2oV-d6O-Kkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.466 [XNIO-1 task-3] 6uVEj5KyQX2oV-d6O-Kkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.466 [XNIO-1 task-3] 6uVEj5KyQX2oV-d6O-Kkrg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.469 [XNIO-1 task-4] odTmwf1zSHuCeUuXc8YDQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.472 [XNIO-1 task-3] 6uVEj5KyQX2oV-d6O-Kkrg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.481 [XNIO-1 task-4] jx8WrZJSQuSwiozj79nioQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.482 [XNIO-1 task-4] jx8WrZJSQuSwiozj79nioQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.482 [XNIO-1 task-4] jx8WrZJSQuSwiozj79nioQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.482 [XNIO-1 task-4] jx8WrZJSQuSwiozj79nioQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.485 [XNIO-1 task-3] bLctoJU6R86RsK9Xm51yeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.485 [XNIO-1 task-3] bLctoJU6R86RsK9Xm51yeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.485 [XNIO-1 task-3] bLctoJU6R86RsK9Xm51yeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.485 [XNIO-1 task-3] bLctoJU6R86RsK9Xm51yeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1fd7108c-29b1-46e1-8973-8a102432e6cc scope = null +23:10:21.487 [XNIO-1 task-4] jx8WrZJSQuSwiozj79nioQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1fd7108c-29b1-46e1-8973-8a102432e6cc is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:21.494 [XNIO-1 task-3] T9ndykVtQlaFQ1Mn3EUnWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.495 [XNIO-1 task-3] T9ndykVtQlaFQ1Mn3EUnWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.495 [XNIO-1 task-3] T9ndykVtQlaFQ1Mn3EUnWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.495 [XNIO-1 task-3] T9ndykVtQlaFQ1Mn3EUnWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:21.498 [XNIO-1 task-4] DwNPSw4bS3SuDMkDS5tVeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.498 [XNIO-1 task-4] DwNPSw4bS3SuDMkDS5tVeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.498 [XNIO-1 task-4] DwNPSw4bS3SuDMkDS5tVeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.498 [XNIO-1 task-4] DwNPSw4bS3SuDMkDS5tVeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:21.500 [XNIO-1 task-3] T9ndykVtQlaFQ1Mn3EUnWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.505 [XNIO-1 task-4] DwNPSw4bS3SuDMkDS5tVeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.505 [XNIO-1 task-4] DwNPSw4bS3SuDMkDS5tVeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.507 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:94915ba9-bec8-4d88-aa37-ab71e51c3ae0 +23:10:21.509 [XNIO-1 task-3] Z91-PS9sQhmqmV8hu874dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.509 [XNIO-1 task-3] Z91-PS9sQhmqmV8hu874dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.509 [XNIO-1 task-3] Z91-PS9sQhmqmV8hu874dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.509 [XNIO-1 task-3] Z91-PS9sQhmqmV8hu874dw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.516 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f3dc256b-b531-473b-8acf-31e7b6679975 +23:10:21.518 [XNIO-1 task-4] Bf_3iiHSQF-RTMBscRHE8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.518 [XNIO-1 task-4] Bf_3iiHSQF-RTMBscRHE8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.518 [XNIO-1 task-4] Bf_3iiHSQF-RTMBscRHE8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.519 [XNIO-1 task-4] Bf_3iiHSQF-RTMBscRHE8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRkYWM2NmMtYzZhOS00OGE5LTkxYWMtYjE2OTUwOTUzMDA4OlZxZzI5VGRZU1RPNHRkcmZ3S1NVVkE=", "Basic YmRkYWM2NmMtYzZhOS00OGE5LTkxYWMtYjE2OTUwOTUzMDA4OlZxZzI5VGRZU1RPNHRkcmZ3S1NVVkE=", authorization) +23:10:21.519 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f3dc256b-b531-473b-8acf-31e7b6679975 +23:10:21.520 [XNIO-1 task-3] HQwuaN-yRUO9CZM7bad4fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.522 [XNIO-1 task-3] HQwuaN-yRUO9CZM7bad4fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.522 [XNIO-1 task-3] HQwuaN-yRUO9CZM7bad4fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.522 [XNIO-1 task-3] HQwuaN-yRUO9CZM7bad4fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:21.523 [XNIO-1 task-2] 2ZnNXilvQtCn1UB-UqBkgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.523 [XNIO-1 task-2] 2ZnNXilvQtCn1UB-UqBkgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.523 [XNIO-1 task-2] 2ZnNXilvQtCn1UB-UqBkgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.523 [XNIO-1 task-2] 2ZnNXilvQtCn1UB-UqBkgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.524 [XNIO-1 task-4] Bf_3iiHSQF-RTMBscRHE8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.526 [XNIO-1 task-4] Bf_3iiHSQF-RTMBscRHE8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.529 [XNIO-1 task-2] 2ZnNXilvQtCn1UB-UqBkgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.535 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d1949c2f-d446-4ae0-b6aa-dd0bede13d13 +23:10:21.535 [XNIO-1 task-2] ryHIynK1T6q3KJL-EN3oIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.535 [XNIO-1 task-2] ryHIynK1T6q3KJL-EN3oIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.536 [XNIO-1 task-2] ryHIynK1T6q3KJL-EN3oIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.536 [XNIO-1 task-2] ryHIynK1T6q3KJL-EN3oIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.540 [XNIO-1 task-3] HQwuaN-yRUO9CZM7bad4fQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.541 [XNIO-1 task-2] ryHIynK1T6q3KJL-EN3oIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:21.554 [XNIO-1 task-2] vphT3lz5SoGII-5zifL-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.554 [XNIO-1 task-2] vphT3lz5SoGII-5zifL-2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.554 [XNIO-1 task-2] vphT3lz5SoGII-5zifL-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.554 [XNIO-1 task-2] vphT3lz5SoGII-5zifL-2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.561 [XNIO-1 task-3] nQrtVcJqQUawEa-3Dj9riQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.562 [XNIO-1 task-3] nQrtVcJqQUawEa-3Dj9riQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.562 [XNIO-1 task-3] nQrtVcJqQUawEa-3Dj9riQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.562 [XNIO-1 task-2] vphT3lz5SoGII-5zifL-2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.562 [XNIO-1 task-3] nQrtVcJqQUawEa-3Dj9riQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = JsvCX1svQGSchj83aC7qZQ redirectUri = http://localhost:8080/authorization +23:10:21.567 [XNIO-1 task-3] nQrtVcJqQUawEa-3Dj9riQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:21.571 [XNIO-1 task-3] kCNHoQ3ATaGLMxgcchPrHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.571 [XNIO-1 task-3] kCNHoQ3ATaGLMxgcchPrHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.571 [XNIO-1 task-3] kCNHoQ3ATaGLMxgcchPrHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.571 [XNIO-1 task-3] kCNHoQ3ATaGLMxgcchPrHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.577 [XNIO-1 task-3] kCNHoQ3ATaGLMxgcchPrHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.583 [XNIO-1 task-3] KWD9ehEJSam-B3hVA7n4vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.583 [XNIO-1 task-3] KWD9ehEJSam-B3hVA7n4vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.583 [XNIO-1 task-3] KWD9ehEJSam-B3hVA7n4vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.583 [XNIO-1 task-3] KWD9ehEJSam-B3hVA7n4vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.587 [XNIO-1 task-2] hrm19DjsSkqQkeHKd_ss6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.587 [XNIO-1 task-2] hrm19DjsSkqQkeHKd_ss6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.588 [XNIO-1 task-2] hrm19DjsSkqQkeHKd_ss6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.588 [XNIO-1 task-2] hrm19DjsSkqQkeHKd_ss6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", authorization) +23:10:21.589 [XNIO-1 task-3] KWD9ehEJSam-B3hVA7n4vQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.592 [XNIO-1 task-3] K_786HY8TeK_ExLePOWwZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.592 [XNIO-1 task-3] K_786HY8TeK_ExLePOWwZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.592 [XNIO-1 task-3] K_786HY8TeK_ExLePOWwZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.592 [XNIO-1 task-3] K_786HY8TeK_ExLePOWwZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFjZmVkODktOWYxNi00ZDBjLTlmMWYtYjgwMzhiMjgyMTBjOmttWHpBcGhOUkkyUzNaNlFOQjhGTnc=", "Basic NGFjZmVkODktOWYxNi00ZDBjLTlmMWYtYjgwMzhiMjgyMTBjOmttWHpBcGhOUkkyUzNaNlFOQjhGTnc=", authorization) +23:10:21.593 [XNIO-1 task-2] hrm19DjsSkqQkeHKd_ss6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.594 [XNIO-1 task-2] hrm19DjsSkqQkeHKd_ss6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.596 [XNIO-1 task-4] VsiqL6EWRzCo2MRmfX6ODA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.597 [XNIO-1 task-4] VsiqL6EWRzCo2MRmfX6ODA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.597 [XNIO-1 task-4] VsiqL6EWRzCo2MRmfX6ODA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.597 [XNIO-1 task-4] VsiqL6EWRzCo2MRmfX6ODA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.602 [XNIO-1 task-3] K_786HY8TeK_ExLePOWwZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.602 [XNIO-1 task-4] VsiqL6EWRzCo2MRmfX6ODA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.608 [XNIO-1 task-2] UR9S6ovERcyJqLtNWyhwSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.608 [XNIO-1 task-2] UR9S6ovERcyJqLtNWyhwSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.608 [XNIO-1 task-2] UR9S6ovERcyJqLtNWyhwSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.608 [XNIO-1 task-2] UR9S6ovERcyJqLtNWyhwSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk3Mzc5ZmEtM2ZiNS00ZDI2LWFlZjAtMGNlNTE3NzAxNWNmOlFiODF4QU5XVDlxUTVJQVhxMDN6NkE=", "Basic OTk3Mzc5ZmEtM2ZiNS00ZDI2LWFlZjAtMGNlNTE3NzAxNWNmOlFiODF4QU5XVDlxUTVJQVhxMDN6NkE=", authorization) +23:10:21.621 [XNIO-1 task-2] UR9S6ovERcyJqLtNWyhwSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.625 [XNIO-1 task-2] rQBSS4gmRXOaKh_dDya2Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.625 [XNIO-1 task-2] rQBSS4gmRXOaKh_dDya2Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.625 [XNIO-1 task-2] rQBSS4gmRXOaKh_dDya2Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.625 [XNIO-1 task-2] rQBSS4gmRXOaKh_dDya2Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.630 [XNIO-1 task-2] rQBSS4gmRXOaKh_dDya2Aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.634 [XNIO-1 task-2] slSfFgzNSLW4QZbvW61PsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.634 [XNIO-1 task-2] slSfFgzNSLW4QZbvW61PsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.634 [XNIO-1 task-2] slSfFgzNSLW4QZbvW61PsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.634 [XNIO-1 task-2] slSfFgzNSLW4QZbvW61PsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDE1NzM0YWYtMjkzYi00MmYxLTlmODUtOTkxOGE1ZDhmOGVhOkE0Y1RMNFZlUUJpUS1CRXpPS2k3VkE=", "Basic MDE1NzM0YWYtMjkzYi00MmYxLTlmODUtOTkxOGE1ZDhmOGVhOkE0Y1RMNFZlUUJpUS1CRXpPS2k3VkE=", authorization) +23:10:21.635 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:985d63b7 +23:10:21.636 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:985d63b7 +23:10:21.642 [XNIO-1 task-3] R5qFpbCfTY2AXB_vT_JDrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.642 [XNIO-1 task-3] R5qFpbCfTY2AXB_vT_JDrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.643 [XNIO-1 task-3] R5qFpbCfTY2AXB_vT_JDrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.643 [XNIO-1 task-3] R5qFpbCfTY2AXB_vT_JDrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.644 [XNIO-1 task-2] slSfFgzNSLW4QZbvW61PsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.646 [XNIO-1 task-4] SIpOVIipRm6VeIukF4KYfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.646 [XNIO-1 task-4] SIpOVIipRm6VeIukF4KYfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.646 [XNIO-1 task-4] SIpOVIipRm6VeIukF4KYfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.646 [XNIO-1 task-4] SIpOVIipRm6VeIukF4KYfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjgzOWNjY2QtMjliMi00MjFiLTg3MTMtYTQyNzA4OGNiZGM2OmVMWkNrOXdXUkhhRUl4WHg4RGZfM0E=", "Basic MjgzOWNjY2QtMjliMi00MjFiLTg3MTMtYTQyNzA4OGNiZGM2OmVMWkNrOXdXUkhhRUl4WHg4RGZfM0E=", authorization) +23:10:21.648 [XNIO-1 task-3] R5qFpbCfTY2AXB_vT_JDrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.651 [XNIO-1 task-4] SIpOVIipRm6VeIukF4KYfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:21.654 [XNIO-1 task-4] SqAGAwq6Tiel_TtKyCIOcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.654 [XNIO-1 task-4] SqAGAwq6Tiel_TtKyCIOcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.654 [XNIO-1 task-4] SqAGAwq6Tiel_TtKyCIOcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.654 [XNIO-1 task-4] SqAGAwq6Tiel_TtKyCIOcw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.659 [XNIO-1 task-4] SqAGAwq6Tiel_TtKyCIOcw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.669 [XNIO-1 task-4] k1uH5iwKS1Sn1uxWmF-SFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.669 [XNIO-1 task-4] k1uH5iwKS1Sn1uxWmF-SFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.669 [XNIO-1 task-4] k1uH5iwKS1Sn1uxWmF-SFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.669 [XNIO-1 task-4] k1uH5iwKS1Sn1uxWmF-SFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.674 [XNIO-1 task-4] k1uH5iwKS1Sn1uxWmF-SFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.682 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d126dcf8-4410-421b-a957-71e4635e7bb8 +23:10:21.683 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d126dcf8-4410-421b-a957-71e4635e7bb8 +23:10:21.684 [XNIO-1 task-4] XkW5aJ_1RjGXPwYxA6rqhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.686 [XNIO-1 task-4] XkW5aJ_1RjGXPwYxA6rqhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.687 [XNIO-1 task-4] XkW5aJ_1RjGXPwYxA6rqhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.687 [XNIO-1 task-4] XkW5aJ_1RjGXPwYxA6rqhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", "Basic NzIxNDhjZDYtZmYwNi00ZjMyLTkzY2MtYjQzZjhlMTU3NWRhOjV1UkVjaDEyUmZPY0kteURXamZtT3c=", authorization) +23:10:21.689 [XNIO-1 task-2] b0Wx4qxeRb-MLnSYrkj9WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.689 [XNIO-1 task-2] b0Wx4qxeRb-MLnSYrkj9WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.689 [XNIO-1 task-2] b0Wx4qxeRb-MLnSYrkj9WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.689 [XNIO-1 task-2] b0Wx4qxeRb-MLnSYrkj9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDE1NzM0YWYtMjkzYi00MmYxLTlmODUtOTkxOGE1ZDhmOGVhOkE0Y1RMNFZlUUJpUS1CRXpPS2k3VkE=", "Basic MDE1NzM0YWYtMjkzYi00MmYxLTlmODUtOTkxOGE1ZDhmOGVhOkE0Y1RMNFZlUUJpUS1CRXpPS2k3VkE=", authorization) +23:10:21.693 [XNIO-1 task-4] XkW5aJ_1RjGXPwYxA6rqhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.697 [XNIO-1 task-2] b0Wx4qxeRb-MLnSYrkj9WQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.697 [XNIO-1 task-2] b0Wx4qxeRb-MLnSYrkj9WQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.699 [XNIO-1 task-4] u0mnkRU3TCiv0boDUuythw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.699 [XNIO-1 task-4] u0mnkRU3TCiv0boDUuythw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.699 [XNIO-1 task-4] u0mnkRU3TCiv0boDUuythw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.699 [XNIO-1 task-4] u0mnkRU3TCiv0boDUuythw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.704 [XNIO-1 task-4] u0mnkRU3TCiv0boDUuythw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.714 [XNIO-1 task-2] arcw2ol2Sf2d7dmHQtwCZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.714 [XNIO-1 task-2] arcw2ol2Sf2d7dmHQtwCZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.714 [XNIO-1 task-2] arcw2ol2Sf2d7dmHQtwCZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.714 [XNIO-1 task-2] arcw2ol2Sf2d7dmHQtwCZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.720 [XNIO-1 task-2] arcw2ol2Sf2d7dmHQtwCZA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +23:10:21.731 [XNIO-1 task-2] qVvD2hnNSlqnzwPycGSkJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.731 [XNIO-1 task-2] qVvD2hnNSlqnzwPycGSkJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.731 [XNIO-1 task-2] qVvD2hnNSlqnzwPycGSkJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.731 [XNIO-1 task-2] qVvD2hnNSlqnzwPycGSkJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:21.731 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:08d5b9fb-36f7-48de-bf17-bb8ef26af4b5 +23:10:21.733 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:08d5b9fb-36f7-48de-bf17-bb8ef26af4b5 +23:10:21.733 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:08d5b9fb-36f7-48de-bf17-bb8ef26af4b5 +23:10:21.737 [XNIO-1 task-2] qVvD2hnNSlqnzwPycGSkJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.738 [XNIO-1 task-2] qVvD2hnNSlqnzwPycGSkJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.739 [XNIO-1 task-4] YckqoPv5TkukmsVS7tAkzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.741 [XNIO-1 task-4] YckqoPv5TkukmsVS7tAkzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.741 [XNIO-1 task-4] YckqoPv5TkukmsVS7tAkzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +23:10:21.747 [XNIO-1 task-4] YckqoPv5TkukmsVS7tAkzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +23:10:21.751 [XNIO-1 task-2] SzJbDq3eT2ut9ZnTWXLJPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.757 [XNIO-1 task-4] Qu3arDPbRIKTQpmIoF5ltw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.757 [XNIO-1 task-4] Qu3arDPbRIKTQpmIoF5ltw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.758 [XNIO-1 task-4] Qu3arDPbRIKTQpmIoF5ltw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.758 [XNIO-1 task-4] Qu3arDPbRIKTQpmIoF5ltw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:21.763 [XNIO-1 task-4] Qu3arDPbRIKTQpmIoF5ltw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.766 [XNIO-1 task-4] JmlkBFEdSqeiReTqaDtohA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.766 [XNIO-1 task-4] JmlkBFEdSqeiReTqaDtohA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.766 [XNIO-1 task-4] JmlkBFEdSqeiReTqaDtohA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.766 [XNIO-1 task-4] JmlkBFEdSqeiReTqaDtohA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:21.771 [XNIO-1 task-2] 6bDoeKrkREurTWHNpD2Zkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.771 [XNIO-1 task-2] 6bDoeKrkREurTWHNpD2Zkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.771 [XNIO-1 task-2] 6bDoeKrkREurTWHNpD2Zkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.772 [XNIO-1 task-2] 6bDoeKrkREurTWHNpD2Zkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjczM2VjMGYtZTJiMy00OWJjLWFiODgtMDA5MmVlYWQ2ZTNiOnQtWS1YNl9QUTIySzNJQW93RzlMWlE=", "Basic ZjczM2VjMGYtZTJiMy00OWJjLWFiODgtMDA5MmVlYWQ2ZTNiOnQtWS1YNl9QUTIySzNJQW93RzlMWlE=", authorization) +23:10:21.772 [XNIO-1 task-4] JmlkBFEdSqeiReTqaDtohA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.772 [XNIO-1 task-4] JmlkBFEdSqeiReTqaDtohA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.773 [XNIO-1 task-3] NA3OCC_gS9avAuzVQJMkxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.774 [XNIO-1 task-3] NA3OCC_gS9avAuzVQJMkxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.774 [XNIO-1 task-3] NA3OCC_gS9avAuzVQJMkxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.774 [XNIO-1 task-3] NA3OCC_gS9avAuzVQJMkxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = M3EYZAC6Q5-JWje6bZ6hWQ redirectUri = http://localhost:8080/authorization +23:10:21.780 [XNIO-1 task-2] 6bDoeKrkREurTWHNpD2Zkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +Jun 28, 2024 11:10:22 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +23:10:21.785 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c3a0cd26-0367-4005-b5f0-4ab31b22c9a3 + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:21.790 [XNIO-1 task-4] tj9PRgPJQcelC-1c7Eu7VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +23:10:21.790 [XNIO-1 task-4] tj9PRgPJQcelC-1c7Eu7VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +23:10:21.790 [XNIO-1 task-4] tj9PRgPJQcelC-1c7Eu7VA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:21.790 [XNIO-1 task-4] tj9PRgPJQcelC-1c7Eu7VA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.797 [XNIO-1 task-4] tj9PRgPJQcelC-1c7Eu7VA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.797 [XNIO-1 task-4] tj9PRgPJQcelC-1c7Eu7VA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.804 [XNIO-1 task-4] JTq-E3vKTQGiy-u3vwMGdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.804 [XNIO-1 task-4] JTq-E3vKTQGiy-u3vwMGdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.804 [XNIO-1 task-4] JTq-E3vKTQGiy-u3vwMGdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.804 [XNIO-1 task-4] JTq-E3vKTQGiy-u3vwMGdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.809 [XNIO-1 task-4] JTq-E3vKTQGiy-u3vwMGdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.810 [XNIO-1 task-4] JTq-E3vKTQGiy-u3vwMGdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.811 [XNIO-1 task-3] PVxVcPQgTTiXVkEb-M4_ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +23:10:21.812 [XNIO-1 task-3] PVxVcPQgTTiXVkEb-M4_ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.812 [XNIO-1 task-3] PVxVcPQgTTiXVkEb-M4_ZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = SutkLgzlT9uEBISvWB0Wqg redirectUri = http://localhost:8080/authorization +23:10:21.814 [XNIO-1 task-4] FNG5NgDhT3q-aZ9Zn12btA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.814 [XNIO-1 task-4] FNG5NgDhT3q-aZ9Zn12btA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.814 [XNIO-1 task-4] FNG5NgDhT3q-aZ9Zn12btA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.815 [XNIO-1 task-4] FNG5NgDhT3q-aZ9Zn12btA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.820 [XNIO-1 task-3] PVxVcPQgTTiXVkEb-M4_ZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.820 [XNIO-1 task-4] FNG5NgDhT3q-aZ9Zn12btA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.828 [XNIO-1 task-3] P5HEV6K_Tn6NrognHHuKqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.828 [XNIO-1 task-3] P5HEV6K_Tn6NrognHHuKqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.828 [XNIO-1 task-3] P5HEV6K_Tn6NrognHHuKqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +Jun 28, 2024 11:10:22 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +23:10:21.848 [XNIO-1 task-3] UezutotmR82ft7cIDQLstQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.856 [XNIO-1 task-3] K8mGqYh6ThWlOxSvdyiTFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.856 [XNIO-1 task-3] K8mGqYh6ThWlOxSvdyiTFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +23:10:21.857 [XNIO-1 task-3] K8mGqYh6ThWlOxSvdyiTFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.857 [XNIO-1 task-3] K8mGqYh6ThWlOxSvdyiTFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.857 [XNIO-1 task-3] K8mGqYh6ThWlOxSvdyiTFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +23:10:21.861 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:985d63b7 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +23:10:21.865 [XNIO-1 task-4] eUmkqUfrRraEEbiQQQKM7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.865 [XNIO-1 task-4] eUmkqUfrRraEEbiQQQKM7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.865 [XNIO-1 task-4] eUmkqUfrRraEEbiQQQKM7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = W2C-BABcTyufEydL8Jj-bQ redirectUri = http://localhost:8080/authorization +23:10:21.869 [XNIO-1 task-3] JAzFlgraQ0WdGC5n4o6FDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.869 [XNIO-1 task-3] JAzFlgraQ0WdGC5n4o6FDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.870 [XNIO-1 task-3] JAzFlgraQ0WdGC5n4o6FDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.870 [XNIO-1 task-3] JAzFlgraQ0WdGC5n4o6FDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.872 [XNIO-1 task-4] eUmkqUfrRraEEbiQQQKM7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.876 [XNIO-1 task-3] JAzFlgraQ0WdGC5n4o6FDw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.888 [XNIO-1 task-4] zjMrOYaETSab_lLWUfkpbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.888 [XNIO-1 task-4] zjMrOYaETSab_lLWUfkpbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.888 [XNIO-1 task-4] zjMrOYaETSab_lLWUfkpbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.888 [XNIO-1 task-4] zjMrOYaETSab_lLWUfkpbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:21.891 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bddac66c-c6a9-48a9-91ac-b16950953008 +23:10:21.894 [XNIO-1 task-4] zjMrOYaETSab_lLWUfkpbQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:21.895 [XNIO-1 task-3] CBIEoVm1QiKVVJofpnBIdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.895 [XNIO-1 task-3] CBIEoVm1QiKVVJofpnBIdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.895 [XNIO-1 task-3] CBIEoVm1QiKVVJofpnBIdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.895 [XNIO-1 task-3] CBIEoVm1QiKVVJofpnBIdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:21.901 [XNIO-1 task-3] CBIEoVm1QiKVVJofpnBIdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:21.902 [XNIO-1 task-3] T3o8n1ohTkuDKGXXnE8p2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.902 [XNIO-1 task-3] T3o8n1ohTkuDKGXXnE8p2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.903 [XNIO-1 task-3] T3o8n1ohTkuDKGXXnE8p2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.903 [XNIO-1 task-3] T3o8n1ohTkuDKGXXnE8p2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:21.908 [XNIO-1 task-3] T3o8n1ohTkuDKGXXnE8p2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.912 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d1949c2f-d446-4ae0-b6aa-dd0bede13d13 +23:10:21.912 [XNIO-1 task-3] P10JekpKSKGdzwJy--1ASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.912 [XNIO-1 task-3] P10JekpKSKGdzwJy--1ASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.912 [XNIO-1 task-3] P10JekpKSKGdzwJy--1ASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.912 [XNIO-1 task-3] P10JekpKSKGdzwJy--1ASw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b3e98af0-e688-410a-bfcd-f3aaef9b4d8f scope = null +23:10:21.913 [XNIO-1 task-4] -v9cJr1xShebzzysug4vPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.913 [XNIO-1 task-4] -v9cJr1xShebzzysug4vPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.913 [XNIO-1 task-4] -v9cJr1xShebzzysug4vPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.913 [XNIO-1 task-4] -v9cJr1xShebzzysug4vPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +Jun 28, 2024 11:10:22 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +Jun 28, 2024 11:10:22 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +23:10:21.921 [XNIO-1 task-4] -v9cJr1xShebzzysug4vPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.926 [XNIO-1 task-2] izJ2u_YsRB6MQvpwdc3vGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:21.926 [XNIO-1 task-2] izJ2u_YsRB6MQvpwdc3vGQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.926 [XNIO-1 task-2] izJ2u_YsRB6MQvpwdc3vGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.928 [XNIO-1 task-4] zkXmGqFaS8KVAgVa9WZoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.928 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:50eca120-7e07-4b98-8ffe-66e099f3f481 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:21.931 [XNIO-1 task-4] zkXmGqFaS8KVAgVa9WZoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.931 [XNIO-1 task-4] zkXmGqFaS8KVAgVa9WZoGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.931 [XNIO-1 task-4] zkXmGqFaS8KVAgVa9WZoGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +23:10:21.938 [XNIO-1 task-3] P10JekpKSKGdzwJy--1ASw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.938 [XNIO-1 task-4] zkXmGqFaS8KVAgVa9WZoGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.939 [XNIO-1 task-4] zkXmGqFaS8KVAgVa9WZoGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.947 [XNIO-1 task-2] bpZJeU0tR3WhvXDFqvPgvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +Jun 28, 2024 11:10:22 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +23:10:21.954 [XNIO-1 task-2] bpZJeU0tR3WhvXDFqvPgvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.954 [XNIO-1 task-2] bpZJeU0tR3WhvXDFqvPgvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.954 [XNIO-1 task-2] bpZJeU0tR3WhvXDFqvPgvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +23:10:21.954 [XNIO-1 task-3] 7EnTcoOWS4uuSDBPUdTbcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.955 [XNIO-1 task-3] 7EnTcoOWS4uuSDBPUdTbcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +23:10:21.955 [XNIO-1 task-3] 7EnTcoOWS4uuSDBPUdTbcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdhZjJhOTQtZjhiYy00ZTI1LWI1ZDUtOTUxY2MzMzFhNGQ5Om1Xa1RrZDB5U2tXSDdYbzg5R3lvVVE=", "Basic YTdhZjJhOTQtZjhiYy00ZTI1LWI1ZDUtOTUxY2MzMzFhNGQ5Om1Xa1RrZDB5U2tXSDdYbzg5R3lvVVE=", authorization) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +23:10:21.956 [XNIO-1 task-4] xlvMMOecRxq8ryo2atdtJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.956 [XNIO-1 task-4] xlvMMOecRxq8ryo2atdtJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.956 [XNIO-1 task-4] xlvMMOecRxq8ryo2atdtJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.956 [XNIO-1 task-4] xlvMMOecRxq8ryo2atdtJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.956 [XNIO-1 task-4] xlvMMOecRxq8ryo2atdtJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a0b557d3-aa04-49cd-8501-7a40dfeccaf9 scope = null +23:10:21.960 [XNIO-1 task-3] 7EnTcoOWS4uuSDBPUdTbcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +23:10:21.966 [XNIO-1 task-3] AK7s0xpJRoSdBZJnoEiVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +23:10:21.967 [XNIO-1 task-3] AK7s0xpJRoSdBZJnoEiVVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.968 [XNIO-1 task-3] AK7s0xpJRoSdBZJnoEiVVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", authorization) +23:10:21.968 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a0a049b3-a744-4e07-9944-696271db6f44 +23:10:21.972 [XNIO-1 task-3] AK7s0xpJRoSdBZJnoEiVVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +23:10:21.976 [XNIO-1 task-4] xlvMMOecRxq8ryo2atdtJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.976 [XNIO-1 task-4] xlvMMOecRxq8ryo2atdtJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + +23:10:21.981 [XNIO-1 task-2] M9RJL7EZQvWSeYCD4nWJyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.982 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.982 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.982 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.982 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.982 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:21.983 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", authorization) +23:10:21.983 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:21.987 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a0a049b3-a744-4e07-9944-696271db6f44 +23:10:21.988 [XNIO-1 task-3] kLxBW4-tSgS1EQJuF3piOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:21.989 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2cb496a7-06cc-4ce0-8f26-c35e4d293fdc +23:10:21.992 [XNIO-1 task-3] UUpb3ScDT6S1XgQSPLA0Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.992 [XNIO-1 task-3] UUpb3ScDT6S1XgQSPLA0Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:21.992 [XNIO-1 task-3] UUpb3ScDT6S1XgQSPLA0Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:21.992 [XNIO-1 task-3] UUpb3ScDT6S1XgQSPLA0Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", authorization) +23:10:21.994 [XNIO-1 task-2] M9RJL7EZQvWSeYCD4nWJyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:21.998 [XNIO-1 task-3] UUpb3ScDT6S1XgQSPLA0Nw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.013 [XNIO-1 task-2] KuZFczUwT16TqigY5yCB7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.013 [XNIO-1 task-2] KuZFczUwT16TqigY5yCB7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.013 [XNIO-1 task-2] KuZFczUwT16TqigY5yCB7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.013 [XNIO-1 task-2] KuZFczUwT16TqigY5yCB7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", "Basic ZjNkYzI1NmItYjUzMS00NzNiLThhY2YtMzFlN2I2Njc5OTc1OkFHVDhKXzJNVHpxRGFCSHZNbzdDcXc=", authorization) +23:10:22.018 [XNIO-1 task-2] KuZFczUwT16TqigY5yCB7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.024 [XNIO-1 task-2] jP5Tk7qbTHWx_4ukffIihw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.024 [XNIO-1 task-2] jP5Tk7qbTHWx_4ukffIihw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.024 [XNIO-1 task-2] jP5Tk7qbTHWx_4ukffIihw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.024 [XNIO-1 task-2] jP5Tk7qbTHWx_4ukffIihw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWIwMzRmZDgtN2Q3Yi00ZmQwLWFjYzItMWUxMGUxNWNlY2Y5OkFVYkw3N1ZzUi02Q1BhNXJTMmNzTlE=", "Basic YWIwMzRmZDgtN2Q3Yi00ZmQwLWFjYzItMWUxMGUxNWNlY2Y5OkFVYkw3N1ZzUi02Q1BhNXJTMmNzTlE=", authorization) +23:10:22.031 [XNIO-1 task-2] jP5Tk7qbTHWx_4ukffIihw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.038 [XNIO-1 task-2] QCiPSqcSQhOZ_kdPIAl4uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.038 [XNIO-1 task-2] QCiPSqcSQhOZ_kdPIAl4uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.038 [XNIO-1 task-2] QCiPSqcSQhOZ_kdPIAl4uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.038 [XNIO-1 task-2] QCiPSqcSQhOZ_kdPIAl4uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWIwMzRmZDgtN2Q3Yi00ZmQwLWFjYzItMWUxMGUxNWNlY2Y5OkFVYkw3N1ZzUi02Q1BhNXJTMmNzTlE=", "Basic YWIwMzRmZDgtN2Q3Yi00ZmQwLWFjYzItMWUxMGUxNWNlY2Y5OkFVYkw3N1ZzUi02Q1BhNXJTMmNzTlE=", authorization) +23:10:22.043 [XNIO-1 task-3] WloCqrqPT9GzalVXGXBG3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.043 [XNIO-1 task-3] WloCqrqPT9GzalVXGXBG3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.043 [XNIO-1 task-3] WloCqrqPT9GzalVXGXBG3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.043 [XNIO-1 task-3] WloCqrqPT9GzalVXGXBG3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRkYWM2NmMtYzZhOS00OGE5LTkxYWMtYjE2OTUwOTUzMDA4OlZxZzI5VGRZU1RPNHRkcmZ3S1NVVkE=", "Basic YmRkYWM2NmMtYzZhOS00OGE5LTkxYWMtYjE2OTUwOTUzMDA4OlZxZzI5VGRZU1RPNHRkcmZ3S1NVVkE=", authorization) +23:10:22.044 [XNIO-1 task-2] QCiPSqcSQhOZ_kdPIAl4uQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.047 [XNIO-1 task-2] CVx-hkO1Tj-KpO2xUqUGMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.048 [XNIO-1 task-2] CVx-hkO1Tj-KpO2xUqUGMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.048 [XNIO-1 task-2] CVx-hkO1Tj-KpO2xUqUGMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.048 [XNIO-1 task-2] CVx-hkO1Tj-KpO2xUqUGMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", "Basic ZjNkOWE3OTQtMDc1MC00YTNjLThiODAtZmZlMmFjYjQ4MzFjOm16UVhTVHlmUU42SzQtM3kyLV9yOXc=", authorization) +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +23:10:22.048 [XNIO-1 task-2] CVx-hkO1Tj-KpO2xUqUGMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.050 [XNIO-1 task-3] WloCqrqPT9GzalVXGXBG3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +23:10:22.053 [XNIO-1 task-2] CVx-hkO1Tj-KpO2xUqUGMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.053 [XNIO-1 task-2] CVx-hkO1Tj-KpO2xUqUGMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:22.059 [XNIO-1 task-3] yelw-lyWTHK-xPnfzsnfjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +23:10:22.060 [XNIO-1 task-3] yelw-lyWTHK-xPnfzsnfjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", "Basic MzQ1NTQ0MjUtZjgzYS00ZTVjLWExMjAtYWZlOWY3Mjg1NjJkOmxzOGdPOGpUUnB1RmpMLVFaVmd3aGc=", authorization) +23:10:22.060 [XNIO-1 task-3] yelw-lyWTHK-xPnfzsnfjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.068 [XNIO-1 task-3] yelw-lyWTHK-xPnfzsnfjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.068 [XNIO-1 task-3] yelw-lyWTHK-xPnfzsnfjA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.076 [XNIO-1 task-3] Plec7qVbTpar9RMvrsQY7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +23:10:22.076 [XNIO-1 task-3] Plec7qVbTpar9RMvrsQY7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +23:10:22.076 [XNIO-1 task-3] Plec7qVbTpar9RMvrsQY7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + +23:10:22.076 [XNIO-1 task-3] Plec7qVbTpar9RMvrsQY7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzUxMmU4OTctOGQyNi00N2FmLThhYWYtYTliNjQwYmI4MjU3OjAxMW8tNHU0UURlU2JvTUZTTkMyb1E=", "Basic MzUxMmU4OTctOGQyNi00N2FmLThhYWYtYTliNjQwYmI4MjU3OjAxMW8tNHU0UURlU2JvTUZTTkMyb1E=", authorization) +23:10:22.078 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cc5553e1 +23:10:22.078 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cc5553e1 +23:10:22.081 [XNIO-1 task-3] Plec7qVbTpar9RMvrsQY7w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.084 [XNIO-1 task-3] 6hbvTukrRnm4u-tDS2Z__g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.084 [XNIO-1 task-3] 6hbvTukrRnm4u-tDS2Z__g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.084 [XNIO-1 task-3] 6hbvTukrRnm4u-tDS2Z__g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.084 [XNIO-1 task-3] 6hbvTukrRnm4u-tDS2Z__g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = EkfKs5DlR72JwZ5NryFq7w redirectUri = http://localhost:8080/authorization +23:10:22.086 [XNIO-1 task-2] 0UPvIiFuRky7J6scX0ackA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.086 [XNIO-1 task-2] 0UPvIiFuRky7J6scX0ackA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.086 [XNIO-1 task-2] 0UPvIiFuRky7J6scX0ackA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.086 [XNIO-1 task-2] 0UPvIiFuRky7J6scX0ackA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.091 [XNIO-1 task-2] 0UPvIiFuRky7J6scX0ackA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.092 [XNIO-1 task-3] 6hbvTukrRnm4u-tDS2Z__g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.100 [XNIO-1 task-3] rScNX6BCT36cveixh8ot6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.100 [XNIO-1 task-3] rScNX6BCT36cveixh8ot6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.101 [XNIO-1 task-3] rScNX6BCT36cveixh8ot6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.101 [XNIO-1 task-3] rScNX6BCT36cveixh8ot6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:22.106 [XNIO-1 task-2] MjpsRAayQzq4cA1DEpHh0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.106 [XNIO-1 task-2] MjpsRAayQzq4cA1DEpHh0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.106 [XNIO-1 task-3] rScNX6BCT36cveixh8ot6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.106 [XNIO-1 task-2] MjpsRAayQzq4cA1DEpHh0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.106 [XNIO-1 task-2] MjpsRAayQzq4cA1DEpHh0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:22.107 [XNIO-1 task-4] ZdAhvqFLQkaOOu8dUal3sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.108 [XNIO-1 task-4] ZdAhvqFLQkaOOu8dUal3sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +Jun 28, 2024 11:10:23 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:22.108 [XNIO-1 task-4] ZdAhvqFLQkaOOu8dUal3sg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = j6BwLdmSTbSDSWtxwbCuFw redirectUri = http://localhost:8080/authorization + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +23:10:22.110 [XNIO-1 task-3] 8KTxTMVeTEqma3ajtcoWMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:22.110 [XNIO-1 task-3] 8KTxTMVeTEqma3ajtcoWMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:22.117 [XNIO-1 task-4] ZdAhvqFLQkaOOu8dUal3sg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:22.117 [XNIO-1 task-4] ZdAhvqFLQkaOOu8dUal3sg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.117 [XNIO-1 task-4] ZdAhvqFLQkaOOu8dUal3sg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.121 [XNIO-1 task-3] Hy7Vq-ZMSKWyXo18FKHwgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.122 [XNIO-1 task-3] Hy7Vq-ZMSKWyXo18FKHwgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +23:10:22.123 [XNIO-1 task-2] MjpsRAayQzq4cA1DEpHh0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.129 [XNIO-1 task-3] Hy7Vq-ZMSKWyXo18FKHwgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +23:10:22.134 [XNIO-1 task-2] -yc4MZrZS02Sx5YEZV9qJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +23:10:22.141 [XNIO-1 task-2] -yc4MZrZS02Sx5YEZV9qJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.151 [XNIO-1 task-2] nVVgzb8DTc-IEPdWpptzKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.151 [XNIO-1 task-2] nVVgzb8DTc-IEPdWpptzKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.151 [XNIO-1 task-2] nVVgzb8DTc-IEPdWpptzKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.151 [XNIO-1 task-2] nVVgzb8DTc-IEPdWpptzKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", "Basic ODQyYWMyNTMtZGIxZS00MzUxLTg1NjUtYWM4MzNjNDFiZjliOjJMR0hSV0VFUXllZV81Y0hocnFlZXc=", authorization) +23:10:22.156 [XNIO-1 task-2] nVVgzb8DTc-IEPdWpptzKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.162 [XNIO-1 task-2] tdjuWh4zQYC5E-KUBJRhEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.162 [XNIO-1 task-2] tdjuWh4zQYC5E-KUBJRhEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.162 [XNIO-1 task-2] tdjuWh4zQYC5E-KUBJRhEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.162 [XNIO-1 task-2] tdjuWh4zQYC5E-KUBJRhEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGM1Y2ViNzYtN2U5Ny00N2UzLWJlNDYtMDJhMTIzNjUyNDIyOnd4WUFLRHRTUmwtd3pjWGZNNXA2NGc=", "Basic NGM1Y2ViNzYtN2U5Ny00N2UzLWJlNDYtMDJhMTIzNjUyNDIyOnd4WUFLRHRTUmwtd3pjWGZNNXA2NGc=", authorization) +23:10:22.167 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3da01439-ca85-4fe4-bab3-12dc3986499c +23:10:22.168 [XNIO-1 task-2] tdjuWh4zQYC5E-KUBJRhEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.170 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:22.170 [XNIO-1 task-2] cK6GikkOT1a9P14XH8g6Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.170 [XNIO-1 task-2] cK6GikkOT1a9P14XH8g6Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.170 [XNIO-1 task-2] cK6GikkOT1a9P14XH8g6Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", authorization) +23:10:22.175 [XNIO-1 task-3] BGxnfccoRViTCxyj7kOcPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.175 [XNIO-1 task-3] BGxnfccoRViTCxyj7kOcPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.175 [XNIO-1 task-3] BGxnfccoRViTCxyj7kOcPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.175 [XNIO-1 task-3] BGxnfccoRViTCxyj7kOcPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGM1Y2ViNzYtN2U5Ny00N2UzLWJlNDYtMDJhMTIzNjUyNDIyOnd4WUFLRHRTUmwtd3pjWGZNNXA2NGc=", "Basic NGM1Y2ViNzYtN2U5Ny00N2UzLWJlNDYtMDJhMTIzNjUyNDIyOnd4WUFLRHRTUmwtd3pjWGZNNXA2NGc=", authorization) +23:10:22.180 [XNIO-1 task-2] cK6GikkOT1a9P14XH8g6Cg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:22.182 [XNIO-1 task-3] BGxnfccoRViTCxyj7kOcPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.184 [XNIO-1 task-2] 6mhny7y7Qa6sTo-EPIsFkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.184 [XNIO-1 task-2] 6mhny7y7Qa6sTo-EPIsFkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.184 [XNIO-1 task-2] 6mhny7y7Qa6sTo-EPIsFkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.185 [XNIO-1 task-2] 6mhny7y7Qa6sTo-EPIsFkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", "Basic OWUwMTI5NzgtMDE2ZS00ZjkzLTg2MDMtNDcwM2MzMzI4OWFkOnJUUjdnREYwVHBtU0tIUjFyV1pVM0E=", authorization) +23:10:22.190 [XNIO-1 task-2] 6mhny7y7Qa6sTo-EPIsFkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:22.190 [XNIO-1 task-2] 6mhny7y7Qa6sTo-EPIsFkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.190 [XNIO-1 task-3] 65NGSrOUR7amOozyxaPiAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.191 [XNIO-1 task-3] 65NGSrOUR7amOozyxaPiAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.191 [XNIO-1 task-3] 65NGSrOUR7amOozyxaPiAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.191 [XNIO-1 task-3] 65NGSrOUR7amOozyxaPiAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.196 [XNIO-1 task-3] 65NGSrOUR7amOozyxaPiAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.200 [XNIO-1 task-3] iWwCKVqnRzK4JvdDKouyCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.200 [XNIO-1 task-3] iWwCKVqnRzK4JvdDKouyCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.200 [XNIO-1 task-3] iWwCKVqnRzK4JvdDKouyCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.200 [XNIO-1 task-3] iWwCKVqnRzK4JvdDKouyCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.206 [XNIO-1 task-3] iWwCKVqnRzK4JvdDKouyCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.207 [XNIO-1 task-2] kfG1R9H1QfekmlX1F7mtQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.208 [XNIO-1 task-2] kfG1R9H1QfekmlX1F7mtQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.208 [XNIO-1 task-2] kfG1R9H1QfekmlX1F7mtQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.208 [XNIO-1 task-2] kfG1R9H1QfekmlX1F7mtQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sert5kfjSHSyA35EggT91g redirectUri = http://localhost:8080/authorization +23:10:22.211 [XNIO-1 task-3] Im36gWFOS-mftIh_3eI_nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.211 [XNIO-1 task-3] Im36gWFOS-mftIh_3eI_nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.211 [XNIO-1 task-3] Im36gWFOS-mftIh_3eI_nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.213 [XNIO-1 task-3] Im36gWFOS-mftIh_3eI_nA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 8b57ebe8-5ccd-465a-866b-8eda5b39318f scope = null +23:10:22.214 [XNIO-1 task-4] e6LuTQzXT1Kc5NcC3DnalQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.214 [XNIO-1 task-2] kfG1R9H1QfekmlX1F7mtQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.214 [XNIO-1 task-4] e6LuTQzXT1Kc5NcC3DnalQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.214 [XNIO-1 task-4] e6LuTQzXT1Kc5NcC3DnalQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.214 [XNIO-1 task-4] e6LuTQzXT1Kc5NcC3DnalQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGM1Y2ViNzYtN2U5Ny00N2UzLWJlNDYtMDJhMTIzNjUyNDIyOnd4WUFLRHRTUmwtd3pjWGZNNXA2NGc=", "Basic NGM1Y2ViNzYtN2U5Ny00N2UzLWJlNDYtMDJhMTIzNjUyNDIyOnd4WUFLRHRTUmwtd3pjWGZNNXA2NGc=", authorization) +23:10:22.221 [XNIO-1 task-4] e6LuTQzXT1Kc5NcC3DnalQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.226 [XNIO-1 task-4] -1VDgcp3TUKQd-j6qM2gDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.227 [XNIO-1 task-4] -1VDgcp3TUKQd-j6qM2gDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.227 [XNIO-1 task-4] -1VDgcp3TUKQd-j6qM2gDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.227 [XNIO-1 task-4] -1VDgcp3TUKQd-j6qM2gDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNiNDk2YTctMDZjYy00Y2UwLThmMjYtYzM1ZTRkMjkzZmRjOmg2ekpaSFFFUjktUU0zV0ltQzd1M2c=", "Basic MmNiNDk2YTctMDZjYy00Y2UwLThmMjYtYzM1ZTRkMjkzZmRjOmg2ekpaSFFFUjktUU0zV0ltQzd1M2c=", authorization) +23:10:22.231 [XNIO-1 task-3] Im36gWFOS-mftIh_3eI_nA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.232 [XNIO-1 task-4] -1VDgcp3TUKQd-j6qM2gDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.241 [XNIO-1 task-4] RTdo1EW-R8agsmY3KlOkvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.241 [XNIO-1 task-4] RTdo1EW-R8agsmY3KlOkvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.241 [XNIO-1 task-4] RTdo1EW-R8agsmY3KlOkvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.241 [XNIO-1 task-3] rgwxFCPUSmK-avm6BWFMDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.241 [XNIO-1 task-3] rgwxFCPUSmK-avm6BWFMDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.241 [XNIO-1 task-4] RTdo1EW-R8agsmY3KlOkvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNiNDk2YTctMDZjYy00Y2UwLThmMjYtYzM1ZTRkMjkzZmRjOmg2ekpaSFFFUjktUU0zV0ltQzd1M2c=", "Basic MmNiNDk2YTctMDZjYy00Y2UwLThmMjYtYzM1ZTRkMjkzZmRjOmg2ekpaSFFFUjktUU0zV0ltQzd1M2c=", authorization) +23:10:22.241 [XNIO-1 task-3] rgwxFCPUSmK-avm6BWFMDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.241 [XNIO-1 task-3] rgwxFCPUSmK-avm6BWFMDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWZiNTU5YmMtN2ZjNi00Y2I5LTgyYWUtYWMwMzZjZDY4NDk4OnJNWGlTQm9sVDRXRWNfUjNaTE1Wb2c=", "Basic ZWZiNTU5YmMtN2ZjNi00Y2I5LTgyYWUtYWMwMzZjZDY4NDk4OnJNWGlTQm9sVDRXRWNfUjNaTE1Wb2c=", authorization) +23:10:22.247 [XNIO-1 task-4] RTdo1EW-R8agsmY3KlOkvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.250 [XNIO-1 task-3] rgwxFCPUSmK-avm6BWFMDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:22.251 [XNIO-1 task-3] rgwxFCPUSmK-avm6BWFMDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.253 [XNIO-1 task-4] KnVt1a6RRmO871P53uU4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.253 [XNIO-1 task-4] KnVt1a6RRmO871P53uU4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.253 [XNIO-1 task-4] KnVt1a6RRmO871P53uU4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.253 [XNIO-1 task-4] KnVt1a6RRmO871P53uU4_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.258 [XNIO-1 task-4] KnVt1a6RRmO871P53uU4_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.260 [XNIO-1 task-4] g9c1VGRyQPq3oSOa_i6Nng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.260 [XNIO-1 task-4] g9c1VGRyQPq3oSOa_i6Nng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.260 [XNIO-1 task-4] g9c1VGRyQPq3oSOa_i6Nng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.260 [XNIO-1 task-4] g9c1VGRyQPq3oSOa_i6Nng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VlpV4tNwTeS17GsS1C9brw redirectUri = http://localhost:8080/authorization +23:10:22.263 [XNIO-1 task-3] xYso1HA6SW2LRbJ71KvXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.263 [XNIO-1 task-3] xYso1HA6SW2LRbJ71KvXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.263 [XNIO-1 task-3] xYso1HA6SW2LRbJ71KvXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.264 [XNIO-1 task-3] xYso1HA6SW2LRbJ71KvXvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.268 [XNIO-1 task-4] g9c1VGRyQPq3oSOa_i6Nng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.269 [XNIO-1 task-3] xYso1HA6SW2LRbJ71KvXvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.277 [XNIO-1 task-4] 7NWTh_e4RAuRk_AsqFpLqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.277 [XNIO-1 task-4] 7NWTh_e4RAuRk_AsqFpLqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.277 [XNIO-1 task-4] 7NWTh_e4RAuRk_AsqFpLqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.277 [XNIO-1 task-4] 7NWTh_e4RAuRk_AsqFpLqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFjZmVkODktOWYxNi00ZDBjLTlmMWYtYjgwMzhiMjgyMTBjOmttWHpBcGhOUkkyUzNaNlFOQjhGTnc=", "Basic NGFjZmVkODktOWYxNi00ZDBjLTlmMWYtYjgwMzhiMjgyMTBjOmttWHpBcGhOUkkyUzNaNlFOQjhGTnc=", authorization) +23:10:22.281 [XNIO-1 task-3] BItYHwreTQaImeZ0sC3vAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.281 [XNIO-1 task-3] BItYHwreTQaImeZ0sC3vAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.281 [XNIO-1 task-3] BItYHwreTQaImeZ0sC3vAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.281 [XNIO-1 task-3] BItYHwreTQaImeZ0sC3vAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:22.283 [XNIO-1 task-4] 7NWTh_e4RAuRk_AsqFpLqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:22.287 [XNIO-1 task-3] BItYHwreTQaImeZ0sC3vAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.291 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c98f0a08-340b-4246-bc7a-db6333599ff1 +23:10:22.291 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c98f0a08-340b-4246-bc7a-db6333599ff1 +23:10:22.293 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.295 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.295 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.295 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.295 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.295 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.295 [XNIO-1 task-3] ELKClQIpSWme1JqrC8T1Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:22.295 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = P9LBYFGGS56rjB8znnCgrQ redirectUri = http://localhost:8080/authorization +23:10:22.300 [XNIO-1 task-3] ELKClQIpSWme1JqrC8T1Aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.301 [XNIO-1 task-4] uEMklbd2Q2KkSW8giih7ZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:22.310 [XNIO-1 task-3] epVxlctKS_6y6-MNsdVhaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.310 [XNIO-1 task-3] epVxlctKS_6y6-MNsdVhaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.310 [XNIO-1 task-3] epVxlctKS_6y6-MNsdVhaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.310 [XNIO-1 task-3] epVxlctKS_6y6-MNsdVhaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", "Basic ZmMxYjEwNjQtNTk5MS00MmVjLWJmOTQtMDM4NGJhNDMxNWM1Ok1JZzRncE1wUkllTU16cENlZ1lGbUE=", authorization) +23:10:22.315 [XNIO-1 task-3] epVxlctKS_6y6-MNsdVhaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.322 [XNIO-1 task-3] uoLZeF_RQoiwfWRcvSyX4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.322 [XNIO-1 task-3] uoLZeF_RQoiwfWRcvSyX4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.322 [XNIO-1 task-3] uoLZeF_RQoiwfWRcvSyX4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.322 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:cc5553e1 +23:10:22.323 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cc5553e1 +23:10:22.326 [XNIO-1 task-4] MCwxARYNTRSRuCwWmRmu_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.326 [XNIO-1 task-4] MCwxARYNTRSRuCwWmRmu_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.326 [XNIO-1 task-4] MCwxARYNTRSRuCwWmRmu_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.327 [XNIO-1 task-4] MCwxARYNTRSRuCwWmRmu_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWI3ZDQzYmQtNGUyYy00ZDhlLWFhYTUtOTBkNGMwYzkzZmUyOl9ma2o4QWd3UjJtb09zNTMzcE5oNEE=", "Basic MWI3ZDQzYmQtNGUyYy00ZDhlLWFhYTUtOTBkNGMwYzkzZmUyOl9ma2o4QWd3UjJtb09zNTMzcE5oNEE=", authorization) +23:10:22.328 [XNIO-1 task-3] uoLZeF_RQoiwfWRcvSyX4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:22.332 [XNIO-1 task-4] MCwxARYNTRSRuCwWmRmu_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.338 [XNIO-1 task-4] 0Jckq137Tx-9W5pVXA60yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.339 [XNIO-1 task-4] 0Jckq137Tx-9W5pVXA60yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.339 [XNIO-1 task-4] 0Jckq137Tx-9W5pVXA60yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.339 [XNIO-1 task-4] 0Jckq137Tx-9W5pVXA60yw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", authorization) +23:10:22.342 [XNIO-1 task-3] bh04qTIBR-u7FW1lR4doiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.342 [XNIO-1 task-3] bh04qTIBR-u7FW1lR4doiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.342 [XNIO-1 task-3] bh04qTIBR-u7FW1lR4doiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.343 [XNIO-1 task-3] bh04qTIBR-u7FW1lR4doiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", authorization) +23:10:22.345 [XNIO-1 task-4] 0Jckq137Tx-9W5pVXA60yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.349 [XNIO-1 task-3] bh04qTIBR-u7FW1lR4doiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:22.349 [XNIO-1 task-3] bh04qTIBR-u7FW1lR4doiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.354 [XNIO-1 task-4] TFtxary6Sc6fJ_xyQ28MQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.354 [XNIO-1 task-4] TFtxary6Sc6fJ_xyQ28MQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.354 [XNIO-1 task-4] TFtxary6Sc6fJ_xyQ28MQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.354 [XNIO-1 task-4] TFtxary6Sc6fJ_xyQ28MQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", authorization) +23:10:22.359 [XNIO-1 task-2] 6SrfeuaqT9uaIsbFGPHCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.359 [XNIO-1 task-2] 6SrfeuaqT9uaIsbFGPHCsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.360 [XNIO-1 task-2] 6SrfeuaqT9uaIsbFGPHCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.360 [XNIO-1 task-2] 6SrfeuaqT9uaIsbFGPHCsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmQ5OGZmZTUtMzBjZS00YWM1LTkyOGItMDg2MjkzNWI3NjMzOmZfZ1ZxLWFZU2g2dW92RHJLZF9uN1E=", "Basic ZmQ5OGZmZTUtMzBjZS00YWM1LTkyOGItMDg2MjkzNWI3NjMzOmZfZ1ZxLWFZU2g2dW92RHJLZF9uN1E=", authorization) +23:10:22.360 [XNIO-1 task-4] TFtxary6Sc6fJ_xyQ28MQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.366 [XNIO-1 task-2] 6SrfeuaqT9uaIsbFGPHCsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:22.367 [XNIO-1 task-2] Z3-HJKPEQB2DHf3OUABliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.367 [XNIO-1 task-2] Z3-HJKPEQB2DHf3OUABliw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.367 [XNIO-1 task-2] Z3-HJKPEQB2DHf3OUABliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.367 [XNIO-1 task-2] Z3-HJKPEQB2DHf3OUABliw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", "Basic Mzk5YWEzZjYtNmNjMi00ZWVlLWI5NjMtMTc0MGE1OGRlOTdhOkVFN213dExlVHg2am1xdGEtdkl4Q1E=", authorization) +23:10:22.368 [XNIO-1 task-4] 7vRT3VkBQ06S7-WAOG-CxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.368 [XNIO-1 task-4] 7vRT3VkBQ06S7-WAOG-CxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.368 [XNIO-1 task-4] 7vRT3VkBQ06S7-WAOG-CxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.368 [XNIO-1 task-4] 7vRT3VkBQ06S7-WAOG-CxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", "Basic M2RhMDE0MzktY2E4NS00ZmU0LWJhYjMtMTJkYzM5ODY0OTljOlZYLWRFaHFTUzNLbXFWb096cWRqWHc=", authorization) +23:10:22.374 [XNIO-1 task-4] 7vRT3VkBQ06S7-WAOG-CxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.381 [XNIO-1 task-2] Z3-HJKPEQB2DHf3OUABliw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.383 [XNIO-1 task-4] nhKBoiTzT1GdXVg6n2suNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.383 [XNIO-1 task-4] nhKBoiTzT1GdXVg6n2suNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.383 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8dd3b314-71a1-47d3-874b-5ea7eea8c2ec +23:10:22.383 [XNIO-1 task-4] nhKBoiTzT1GdXVg6n2suNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.383 [XNIO-1 task-4] nhKBoiTzT1GdXVg6n2suNQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.384 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8dd3b314-71a1-47d3-874b-5ea7eea8c2ec +23:10:22.388 [XNIO-1 task-3] iC_kwp5AQUeVBNYDJgimwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.388 [XNIO-1 task-4] nhKBoiTzT1GdXVg6n2suNQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.388 [XNIO-1 task-3] iC_kwp5AQUeVBNYDJgimwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.388 [XNIO-1 task-3] iC_kwp5AQUeVBNYDJgimwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.389 [XNIO-1 task-3] iC_kwp5AQUeVBNYDJgimwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LXqt2gIQREarWMviG9BuMw redirectUri = http://localhost:8080/authorization +23:10:22.394 [XNIO-1 task-4] hyBIAkbkS0qjQjL0jjQtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.394 [XNIO-1 task-4] hyBIAkbkS0qjQjL0jjQtzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.395 [XNIO-1 task-3] iC_kwp5AQUeVBNYDJgimwg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +23:10:22.395 [XNIO-1 task-4] hyBIAkbkS0qjQjL0jjQtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.396 [XNIO-1 task-4] hyBIAkbkS0qjQjL0jjQtzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.401 [XNIO-1 task-4] hyBIAkbkS0qjQjL0jjQtzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.409 [XNIO-1 task-4] S-Ia1RoFR5qVCje_z3JHlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.409 [XNIO-1 task-4] S-Ia1RoFR5qVCje_z3JHlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.410 [XNIO-1 task-4] S-Ia1RoFR5qVCje_z3JHlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.410 [XNIO-1 task-4] S-Ia1RoFR5qVCje_z3JHlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.415 [XNIO-1 task-4] S-Ia1RoFR5qVCje_z3JHlQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.422 [XNIO-1 task-4] qYe9ohE2QgqFV3G-MA4ZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.422 [XNIO-1 task-4] qYe9ohE2QgqFV3G-MA4ZPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.422 [XNIO-1 task-4] qYe9ohE2QgqFV3G-MA4ZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.422 [XNIO-1 task-4] qYe9ohE2QgqFV3G-MA4ZPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", "Basic ODg2YzNmNmMtZThhNi00N2QyLWIyYzEtYThiZjNiNWJlYWEyOlR1WFRhNklKUXZDLXluRkxLNVBjTUE=", authorization) +23:10:22.428 [XNIO-1 task-2] BBZMxWZLQzCt4nfr5ELjJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.428 [XNIO-1 task-2] BBZMxWZLQzCt4nfr5ELjJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.428 [XNIO-1 task-2] BBZMxWZLQzCt4nfr5ELjJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.429 [XNIO-1 task-2] BBZMxWZLQzCt4nfr5ELjJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDE1NzM0YWYtMjkzYi00MmYxLTlmODUtOTkxOGE1ZDhmOGVhOkE0Y1RMNFZlUUJpUS1CRXpPS2k3VkE=", "Basic MDE1NzM0YWYtMjkzYi00MmYxLTlmODUtOTkxOGE1ZDhmOGVhOkE0Y1RMNFZlUUJpUS1CRXpPS2k3VkE=", authorization) +23:10:22.434 [XNIO-1 task-2] BBZMxWZLQzCt4nfr5ELjJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.436 [XNIO-1 task-4] qYe9ohE2QgqFV3G-MA4ZPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.440 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:132142e4-6042-4178-a61a-ab0587aa1e01 +23:10:22.441 [XNIO-1 task-2] OKhbrZBoS4SZ_N7mizWl8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.441 [XNIO-1 task-2] OKhbrZBoS4SZ_N7mizWl8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.441 [XNIO-1 task-2] OKhbrZBoS4SZ_N7mizWl8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.442 [XNIO-1 task-2] OKhbrZBoS4SZ_N7mizWl8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.442 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:132142e4-6042-4178-a61a-ab0587aa1e01 +23:10:22.447 [XNIO-1 task-2] OKhbrZBoS4SZ_N7mizWl8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.456 [XNIO-1 task-4] bRNpvqOuTyilwZ69hFqAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.456 [XNIO-1 task-4] bRNpvqOuTyilwZ69hFqAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.456 [XNIO-1 task-4] bRNpvqOuTyilwZ69hFqAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.457 [XNIO-1 task-4] bRNpvqOuTyilwZ69hFqAwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +23:10:22.461 [XNIO-1 task-4] bRNpvqOuTyilwZ69hFqAwQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.463 [XNIO-1 task-2] IYaSzzVZTFmJSZVeb2oN0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.463 [XNIO-1 task-2] IYaSzzVZTFmJSZVeb2oN0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.463 [XNIO-1 task-2] IYaSzzVZTFmJSZVeb2oN0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.463 [XNIO-1 task-2] IYaSzzVZTFmJSZVeb2oN0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = FEPkgLCERqSN0fZUXv2CoA redirectUri = http://localhost:8080/authorization +23:10:22.470 [XNIO-1 task-4] iziUEZ96SsOSZomMZnkU3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +23:10:22.470 [XNIO-1 task-2] IYaSzzVZTFmJSZVeb2oN0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +23:10:22.470 [XNIO-1 task-2] IYaSzzVZTFmJSZVeb2oN0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.470 [XNIO-1 task-2] IYaSzzVZTFmJSZVeb2oN0g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +23:10:22.470 [XNIO-1 task-4] iziUEZ96SsOSZomMZnkU3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:22.475 [XNIO-1 task-4] iziUEZ96SsOSZomMZnkU3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.476 [XNIO-1 task-3] Ovf6atLLS0ajN5TC6eSKPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.477 [XNIO-1 task-3] Ovf6atLLS0ajN5TC6eSKPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.477 [XNIO-1 task-3] Ovf6atLLS0ajN5TC6eSKPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.478 [XNIO-1 task-3] Ovf6atLLS0ajN5TC6eSKPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", "Basic NjVkNDQ1OWEtOWM0Yy00Y2M0LWFmZTgtZTEwYmE1MzUwODFiOjBLSl9fd3lMU2ZLZUVKSXFlSXFaZVE=", authorization) +23:10:22.482 [XNIO-1 task-2] r-yUe3onQm-704ULne7b4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.482 [XNIO-1 task-2] r-yUe3onQm-704ULne7b4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.482 [XNIO-1 task-2] r-yUe3onQm-704ULne7b4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.482 [XNIO-1 task-2] r-yUe3onQm-704ULne7b4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", "Basic NjIxZDA1MTYtOWZhYy00OGU3LWI3MWItYzg3NTlkMTk3ODg4OkJFcm9sZkdkVG1LSXZPQnVCZnRyTlE=", authorization) +23:10:22.484 [XNIO-1 task-3] Ovf6atLLS0ajN5TC6eSKPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +23:10:22.487 [XNIO-1 task-2] r-yUe3onQm-704ULne7b4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +23:10:22.494 [XNIO-1 task-2] Lh35ZnIVRhyHC4exn83rSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.494 [XNIO-1 task-2] Lh35ZnIVRhyHC4exn83rSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +23:10:22.494 [XNIO-1 task-2] Lh35ZnIVRhyHC4exn83rSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +23:10:22.494 [XNIO-1 task-2] Lh35ZnIVRhyHC4exn83rSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDE5NDljMmYtZDQ0Ni00YWUwLWI2YWEtZGQwYmVkZTEzZDEzOll2cU5NMGJWUXVHWmNLQS1uN2pBOFE=", "Basic ZDE5NDljMmYtZDQ0Ni00YWUwLWI2YWEtZGQwYmVkZTEzZDEzOll2cU5NMGJWUXVHWmNLQS1uN2pBOFE=", authorization) diff --git a/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..2737f0c --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_4/light-oauth2-oauth2-user-1.log @@ -0,0 +1,2399 @@ +23:10:17.956 [XNIO-1 task-1] 50UUutdFSwOrA61qZnXefg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:17.956 [XNIO-1 task-1] 50UUutdFSwOrA61qZnXefg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:17.956 [XNIO-1 task-1] 50UUutdFSwOrA61qZnXefg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/34f48fc9 +23:10:17.963 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2454a87a, base path is set to: null +23:10:17.963 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:17.963 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:17.963 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:17.963 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2454a87a, base path is set to: null +23:10:17.963 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG com.networknt.schema.TypeValidator debug - validate( "2454a87a", "2454a87a", userId) +23:10:17.964 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"bf85994d-b5a8-421d-a03b-4b2dd2bcdc5c","newPassword":"86f6ba3d-5d99-4291-b136-65546957cafc","newPasswordConfirm":"86f6ba3d-5d99-4291-b136-65546957cafc"}, {"password":"bf85994d-b5a8-421d-a03b-4b2dd2bcdc5c","newPassword":"86f6ba3d-5d99-4291-b136-65546957cafc","newPasswordConfirm":"86f6ba3d-5d99-4291-b136-65546957cafc"}, requestBody) +23:10:17.964 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG com.networknt.schema.TypeValidator debug - validate( "86f6ba3d-5d99-4291-b136-65546957cafc", {"password":"bf85994d-b5a8-421d-a03b-4b2dd2bcdc5c","newPassword":"86f6ba3d-5d99-4291-b136-65546957cafc","newPasswordConfirm":"86f6ba3d-5d99-4291-b136-65546957cafc"}, requestBody.newPasswordConfirm) +23:10:17.964 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG com.networknt.schema.TypeValidator debug - validate( "bf85994d-b5a8-421d-a03b-4b2dd2bcdc5c", {"password":"bf85994d-b5a8-421d-a03b-4b2dd2bcdc5c","newPassword":"86f6ba3d-5d99-4291-b136-65546957cafc","newPasswordConfirm":"86f6ba3d-5d99-4291-b136-65546957cafc"}, requestBody.password) +23:10:17.964 [XNIO-1 task-1] T4B3Vp7eTh6QVTraInfptA DEBUG com.networknt.schema.TypeValidator debug - validate( "86f6ba3d-5d99-4291-b136-65546957cafc", {"password":"bf85994d-b5a8-421d-a03b-4b2dd2bcdc5c","newPassword":"86f6ba3d-5d99-4291-b136-65546957cafc","newPasswordConfirm":"86f6ba3d-5d99-4291-b136-65546957cafc"}, requestBody.newPassword) +23:10:17.988 [XNIO-1 task-1] k5tc9Fd4TGG2Uu9azlHyCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:17.988 [XNIO-1 task-1] k5tc9Fd4TGG2Uu9azlHyCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:17.988 [XNIO-1 task-1] k5tc9Fd4TGG2Uu9azlHyCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:17.998 [XNIO-1 task-1] Vl4JJ7_3Tgmhrc185SYbcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:17.998 [XNIO-1 task-1] Vl4JJ7_3Tgmhrc185SYbcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:17.998 [XNIO-1 task-1] Vl4JJ7_3Tgmhrc185SYbcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.000 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f8c96307 +23:10:18.009 [XNIO-1 task-1] PvbfqBLOTG2qPCi-7MVcyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.009 [XNIO-1 task-1] PvbfqBLOTG2qPCi-7MVcyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.009 [XNIO-1 task-1] PvbfqBLOTG2qPCi-7MVcyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.029 [XNIO-1 task-1] iXROHuoZSIabMhK2hPAXXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2454a87a, base path is set to: null +23:10:18.030 [XNIO-1 task-1] iXROHuoZSIabMhK2hPAXXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.030 [XNIO-1 task-1] iXROHuoZSIabMhK2hPAXXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.030 [XNIO-1 task-1] iXROHuoZSIabMhK2hPAXXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2454a87a, base path is set to: null +23:10:18.030 [XNIO-1 task-1] iXROHuoZSIabMhK2hPAXXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2454a87a", "2454a87a", userId) +23:10:18.037 [XNIO-1 task-1] BslxO-W_SiekiWJ8GtJGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a860649 +23:10:18.037 [XNIO-1 task-1] BslxO-W_SiekiWJ8GtJGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.037 [XNIO-1 task-1] BslxO-W_SiekiWJ8GtJGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.037 [XNIO-1 task-1] BslxO-W_SiekiWJ8GtJGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a860649 +23:10:18.045 [XNIO-1 task-1] 4FjabGGhRGWu_e8wHKvVJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.045 [XNIO-1 task-1] 4FjabGGhRGWu_e8wHKvVJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.045 [XNIO-1 task-1] 4FjabGGhRGWu_e8wHKvVJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.046 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f8c96307 +23:10:18.052 [XNIO-1 task-1] SWuwhLOjSl2Rcg5bbdZ8eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f8c96307, base path is set to: null +23:10:18.053 [XNIO-1 task-1] SWuwhLOjSl2Rcg5bbdZ8eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.053 [XNIO-1 task-1] SWuwhLOjSl2Rcg5bbdZ8eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.053 [XNIO-1 task-1] SWuwhLOjSl2Rcg5bbdZ8eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f8c96307, base path is set to: null +23:10:18.053 [XNIO-1 task-1] SWuwhLOjSl2Rcg5bbdZ8eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f8c96307", "f8c96307", userId) +23:10:18.062 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:61181f8f-c74d-48b7-a09e-7d77261569ff +23:10:18.064 [XNIO-1 task-1] Upd-yNNLTjONNulKA0YI2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.064 [XNIO-1 task-1] Upd-yNNLTjONNulKA0YI2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.064 [XNIO-1 task-1] Upd-yNNLTjONNulKA0YI2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.080 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ab979f7c +23:10:18.080 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.080 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.080 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:18.081 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ab979f7c +23:10:18.081 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5f5f0c7f-58ac-4185-bc79-12ae35a0a97e","newPassword":"82576e88-4de5-4b3d-a935-7f558fffd25e","newPasswordConfirm":"82576e88-4de5-4b3d-a935-7f558fffd25e"}, {"password":"5f5f0c7f-58ac-4185-bc79-12ae35a0a97e","newPassword":"82576e88-4de5-4b3d-a935-7f558fffd25e","newPasswordConfirm":"82576e88-4de5-4b3d-a935-7f558fffd25e"}, requestBody) +23:10:18.081 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5f5f0c7f-58ac-4185-bc79-12ae35a0a97e","newPassword":"82576e88-4de5-4b3d-a935-7f558fffd25e","newPasswordConfirm":"82576e88-4de5-4b3d-a935-7f558fffd25e"}, {"password":"5f5f0c7f-58ac-4185-bc79-12ae35a0a97e","newPassword":"82576e88-4de5-4b3d-a935-7f558fffd25e","newPasswordConfirm":"82576e88-4de5-4b3d-a935-7f558fffd25e"}, requestBody) +23:10:18.081 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG com.networknt.schema.FormatValidator debug - validate( "82576e88-4de5-4b3d-a935-7f558fffd25e", {"password":"5f5f0c7f-58ac-4185-bc79-12ae35a0a97e","newPassword":"82576e88-4de5-4b3d-a935-7f558fffd25e","newPasswordConfirm":"82576e88-4de5-4b3d-a935-7f558fffd25e"}, requestBody.newPasswordConfirm) +23:10:18.081 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG com.networknt.schema.FormatValidator debug - validate( "5f5f0c7f-58ac-4185-bc79-12ae35a0a97e", {"password":"5f5f0c7f-58ac-4185-bc79-12ae35a0a97e","newPassword":"82576e88-4de5-4b3d-a935-7f558fffd25e","newPasswordConfirm":"82576e88-4de5-4b3d-a935-7f558fffd25e"}, requestBody.password) +23:10:18.081 [XNIO-1 task-1] jLhSR1XBQqi6wrmWH_feKw DEBUG com.networknt.schema.FormatValidator debug - validate( "82576e88-4de5-4b3d-a935-7f558fffd25e", {"password":"5f5f0c7f-58ac-4185-bc79-12ae35a0a97e","newPassword":"82576e88-4de5-4b3d-a935-7f558fffd25e","newPasswordConfirm":"82576e88-4de5-4b3d-a935-7f558fffd25e"}, requestBody.newPassword) +23:10:18.103 [XNIO-1 task-1] Pe_S6OhKTl6MKmPqt7ij1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ab979f7c +23:10:18.103 [XNIO-1 task-1] Pe_S6OhKTl6MKmPqt7ij1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.103 [XNIO-1 task-1] Pe_S6OhKTl6MKmPqt7ij1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.103 [XNIO-1 task-1] Pe_S6OhKTl6MKmPqt7ij1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ab979f7c +23:10:18.109 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5bdd60d4 +23:10:18.110 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5bdd60d4 +23:10:18.111 [XNIO-1 task-1] aOAuw17PQ-yPHFRuOSvUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.111 [XNIO-1 task-1] aOAuw17PQ-yPHFRuOSvUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.111 [XNIO-1 task-1] aOAuw17PQ-yPHFRuOSvUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.117 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e241ceb8 +23:10:18.126 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb6a97fb +23:10:18.126 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.126 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.126 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:18.127 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb6a97fb +23:10:18.127 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7b7f54bd-6704-4bec-a77b-45a5b562784d","newPassword":"c950d0cc-08dc-41d7-8126-188880d63c76","newPasswordConfirm":"c950d0cc-08dc-41d7-8126-188880d63c76"}, {"password":"7b7f54bd-6704-4bec-a77b-45a5b562784d","newPassword":"c950d0cc-08dc-41d7-8126-188880d63c76","newPasswordConfirm":"c950d0cc-08dc-41d7-8126-188880d63c76"}, requestBody) +23:10:18.127 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7b7f54bd-6704-4bec-a77b-45a5b562784d","newPassword":"c950d0cc-08dc-41d7-8126-188880d63c76","newPasswordConfirm":"c950d0cc-08dc-41d7-8126-188880d63c76"}, {"password":"7b7f54bd-6704-4bec-a77b-45a5b562784d","newPassword":"c950d0cc-08dc-41d7-8126-188880d63c76","newPasswordConfirm":"c950d0cc-08dc-41d7-8126-188880d63c76"}, requestBody) +23:10:18.127 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG com.networknt.schema.FormatValidator debug - validate( "c950d0cc-08dc-41d7-8126-188880d63c76", {"password":"7b7f54bd-6704-4bec-a77b-45a5b562784d","newPassword":"c950d0cc-08dc-41d7-8126-188880d63c76","newPasswordConfirm":"c950d0cc-08dc-41d7-8126-188880d63c76"}, requestBody.newPasswordConfirm) +23:10:18.127 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG com.networknt.schema.FormatValidator debug - validate( "7b7f54bd-6704-4bec-a77b-45a5b562784d", {"password":"7b7f54bd-6704-4bec-a77b-45a5b562784d","newPassword":"c950d0cc-08dc-41d7-8126-188880d63c76","newPasswordConfirm":"c950d0cc-08dc-41d7-8126-188880d63c76"}, requestBody.password) +23:10:18.127 [XNIO-1 task-1] R29OEMStQiGDrOkH0FXi6g DEBUG com.networknt.schema.FormatValidator debug - validate( "c950d0cc-08dc-41d7-8126-188880d63c76", {"password":"7b7f54bd-6704-4bec-a77b-45a5b562784d","newPassword":"c950d0cc-08dc-41d7-8126-188880d63c76","newPasswordConfirm":"c950d0cc-08dc-41d7-8126-188880d63c76"}, requestBody.newPassword) +23:10:18.144 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5bdd60d4 +23:10:18.151 [XNIO-1 task-1] njm8iD8ZQJSIEVH5tqaBbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.151 [XNIO-1 task-1] njm8iD8ZQJSIEVH5tqaBbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.151 [XNIO-1 task-1] njm8iD8ZQJSIEVH5tqaBbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.164 [XNIO-1 task-1] 2B4TSEyNQd-BJG-V-oz2Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.165 [XNIO-1 task-1] 2B4TSEyNQd-BJG-V-oz2Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.165 [XNIO-1 task-1] 2B4TSEyNQd-BJG-V-oz2Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb6a97fb +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fb6a97fb +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c950d0cc-08dc-41d7-8126-188880d63c76","newPassword":"251b6ce6-9b2c-428c-88cb-968c1ffc652f","newPasswordConfirm":"251b6ce6-9b2c-428c-88cb-968c1ffc652f"}, {"password":"c950d0cc-08dc-41d7-8126-188880d63c76","newPassword":"251b6ce6-9b2c-428c-88cb-968c1ffc652f","newPasswordConfirm":"251b6ce6-9b2c-428c-88cb-968c1ffc652f"}, requestBody) +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c950d0cc-08dc-41d7-8126-188880d63c76","newPassword":"251b6ce6-9b2c-428c-88cb-968c1ffc652f","newPasswordConfirm":"251b6ce6-9b2c-428c-88cb-968c1ffc652f"}, {"password":"c950d0cc-08dc-41d7-8126-188880d63c76","newPassword":"251b6ce6-9b2c-428c-88cb-968c1ffc652f","newPasswordConfirm":"251b6ce6-9b2c-428c-88cb-968c1ffc652f"}, requestBody) +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG com.networknt.schema.FormatValidator debug - validate( "251b6ce6-9b2c-428c-88cb-968c1ffc652f", {"password":"c950d0cc-08dc-41d7-8126-188880d63c76","newPassword":"251b6ce6-9b2c-428c-88cb-968c1ffc652f","newPasswordConfirm":"251b6ce6-9b2c-428c-88cb-968c1ffc652f"}, requestBody.newPasswordConfirm) +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG com.networknt.schema.FormatValidator debug - validate( "c950d0cc-08dc-41d7-8126-188880d63c76", {"password":"c950d0cc-08dc-41d7-8126-188880d63c76","newPassword":"251b6ce6-9b2c-428c-88cb-968c1ffc652f","newPasswordConfirm":"251b6ce6-9b2c-428c-88cb-968c1ffc652f"}, requestBody.password) +23:10:18.175 [XNIO-1 task-1] _bsXxlnQRvuizlwnA76oMA DEBUG com.networknt.schema.FormatValidator debug - validate( "251b6ce6-9b2c-428c-88cb-968c1ffc652f", {"password":"c950d0cc-08dc-41d7-8126-188880d63c76","newPassword":"251b6ce6-9b2c-428c-88cb-968c1ffc652f","newPasswordConfirm":"251b6ce6-9b2c-428c-88cb-968c1ffc652f"}, requestBody.newPassword) +23:10:18.178 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e241ceb8 +23:10:18.194 [XNIO-1 task-1] qzQfJc1pSFio5XmPB8hylg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fb6a97fb +23:10:18.194 [XNIO-1 task-1] qzQfJc1pSFio5XmPB8hylg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.195 [XNIO-1 task-1] qzQfJc1pSFio5XmPB8hylg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.195 [XNIO-1 task-1] qzQfJc1pSFio5XmPB8hylg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fb6a97fb +23:10:18.210 [XNIO-1 task-1] rGTxgTOfQVCsgL9ULgEr_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.210 [XNIO-1 task-1] rGTxgTOfQVCsgL9ULgEr_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.210 [XNIO-1 task-1] rGTxgTOfQVCsgL9ULgEr_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.226 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/71ded75c, base path is set to: null +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/71ded75c, base path is set to: null +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG com.networknt.schema.TypeValidator debug - validate( "71ded75c", "71ded75c", userId) +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"bc14350a-9b04-4bca-80fd-9384e3ed92a2","newPassword":"5f397b8e-e54f-4a75-91b5-607b09452965","newPasswordConfirm":"5f397b8e-e54f-4a75-91b5-607b09452965"}, {"password":"bc14350a-9b04-4bca-80fd-9384e3ed92a2","newPassword":"5f397b8e-e54f-4a75-91b5-607b09452965","newPasswordConfirm":"5f397b8e-e54f-4a75-91b5-607b09452965"}, requestBody) +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG com.networknt.schema.TypeValidator debug - validate( "5f397b8e-e54f-4a75-91b5-607b09452965", {"password":"bc14350a-9b04-4bca-80fd-9384e3ed92a2","newPassword":"5f397b8e-e54f-4a75-91b5-607b09452965","newPasswordConfirm":"5f397b8e-e54f-4a75-91b5-607b09452965"}, requestBody.newPasswordConfirm) +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG com.networknt.schema.TypeValidator debug - validate( "bc14350a-9b04-4bca-80fd-9384e3ed92a2", {"password":"bc14350a-9b04-4bca-80fd-9384e3ed92a2","newPassword":"5f397b8e-e54f-4a75-91b5-607b09452965","newPasswordConfirm":"5f397b8e-e54f-4a75-91b5-607b09452965"}, requestBody.password) +23:10:18.227 [XNIO-1 task-1] _BKuaKJYQ4qfHAxUg_dQqA DEBUG com.networknt.schema.TypeValidator debug - validate( "5f397b8e-e54f-4a75-91b5-607b09452965", {"password":"bc14350a-9b04-4bca-80fd-9384e3ed92a2","newPassword":"5f397b8e-e54f-4a75-91b5-607b09452965","newPasswordConfirm":"5f397b8e-e54f-4a75-91b5-607b09452965"}, requestBody.newPassword) +23:10:18.250 [XNIO-1 task-1] tl5AD87kS_aZeqGUqR7qXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.251 [XNIO-1 task-1] tl5AD87kS_aZeqGUqR7qXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.251 [XNIO-1 task-1] tl5AD87kS_aZeqGUqR7qXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.251 [XNIO-1 task-1] tl5AD87kS_aZeqGUqR7qXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.258 [XNIO-1 task-1] UpxA5IArRRKbGtBon03MJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.258 [XNIO-1 task-1] UpxA5IArRRKbGtBon03MJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.258 [XNIO-1 task-1] UpxA5IArRRKbGtBon03MJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.265 [XNIO-1 task-1] CzIkP6OYTRuseLVDGC0tWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.265 [XNIO-1 task-1] CzIkP6OYTRuseLVDGC0tWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.265 [XNIO-1 task-1] CzIkP6OYTRuseLVDGC0tWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.271 [XNIO-1 task-1] 4CLI9aQvSviKgaQvCL1LCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.271 [XNIO-1 task-1] 4CLI9aQvSviKgaQvCL1LCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.272 [XNIO-1 task-1] 4CLI9aQvSviKgaQvCL1LCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.277 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7d93d760 +23:10:18.277 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7d93d760 +23:10:18.285 [XNIO-1 task-1] pnZ0gNJsQIa3_I1Ajr-V3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7d93d760 +23:10:18.285 [XNIO-1 task-1] pnZ0gNJsQIa3_I1Ajr-V3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.286 [XNIO-1 task-1] pnZ0gNJsQIa3_I1Ajr-V3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.286 [XNIO-1 task-1] pnZ0gNJsQIa3_I1Ajr-V3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7d93d760 +23:10:18.286 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7d93d760 +23:10:18.292 [XNIO-1 task-1] aaJtutOiTe2dTMcDm02Xtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71ded75c +23:10:18.293 [XNIO-1 task-1] aaJtutOiTe2dTMcDm02Xtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.293 [XNIO-1 task-1] aaJtutOiTe2dTMcDm02Xtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.293 [XNIO-1 task-1] aaJtutOiTe2dTMcDm02Xtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71ded75c +23:10:18.296 [XNIO-1 task-1] aX0zs5zQRfqy6jmgpUu6Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.296 [XNIO-1 task-1] aX0zs5zQRfqy6jmgpUu6Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.296 [XNIO-1 task-1] aX0zs5zQRfqy6jmgpUu6Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.310 [XNIO-1 task-1] 2KzUcLowTpm4ZDIIpic6Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.310 [XNIO-1 task-1] 2KzUcLowTpm4ZDIIpic6Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.310 [XNIO-1 task-1] 2KzUcLowTpm4ZDIIpic6Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.310 [XNIO-1 task-1] 2KzUcLowTpm4ZDIIpic6Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.310 [XNIO-1 task-1] 2KzUcLowTpm4ZDIIpic6Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "71ded75c", "71ded75c", userId) +23:10:18.312 [XNIO-1 task-1] vebhFUOYQUqGUQ__pXZlQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.312 [XNIO-1 task-1] vebhFUOYQUqGUQ__pXZlQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.312 [XNIO-1 task-1] vebhFUOYQUqGUQ__pXZlQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.312 [XNIO-1 task-1] vebhFUOYQUqGUQ__pXZlQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.315 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2 +23:10:18.315 [XNIO-1 task-1] h7RZ669-SvePvzUqEHnFqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.315 [XNIO-1 task-1] h7RZ669-SvePvzUqEHnFqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.315 [XNIO-1 task-1] h7RZ669-SvePvzUqEHnFqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.315 [XNIO-1 task-1] h7RZ669-SvePvzUqEHnFqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.318 [XNIO-1 task-1] VMh2YUKHT-eV0Q05X1rw3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58cd677f, base path is set to: null +23:10:18.318 [XNIO-1 task-1] VMh2YUKHT-eV0Q05X1rw3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.318 [XNIO-1 task-1] VMh2YUKHT-eV0Q05X1rw3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.318 [XNIO-1 task-1] VMh2YUKHT-eV0Q05X1rw3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58cd677f, base path is set to: null +23:10:18.318 [XNIO-1 task-1] VMh2YUKHT-eV0Q05X1rw3g DEBUG com.networknt.schema.TypeValidator debug - validate( "58cd677f", "58cd677f", userId) +23:10:18.324 [XNIO-1 task-1] HWYIB376Rw6HFV9W4Y1FBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.324 [XNIO-1 task-1] HWYIB376Rw6HFV9W4Y1FBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.324 [XNIO-1 task-1] HWYIB376Rw6HFV9W4Y1FBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.324 [XNIO-1 task-1] HWYIB376Rw6HFV9W4Y1FBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.329 [XNIO-1 task-1] tN6f76vMQGi0bY7WooUUTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.329 [XNIO-1 task-1] tN6f76vMQGi0bY7WooUUTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.329 [XNIO-1 task-1] tN6f76vMQGi0bY7WooUUTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.329 [XNIO-1 task-1] tN6f76vMQGi0bY7WooUUTA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/71ded75c +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/71ded75c +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5f397b8e-e54f-4a75-91b5-607b09452965","newPassword":"21274951-354e-4169-9b5f-9deeba5d5e08","newPasswordConfirm":"21274951-354e-4169-9b5f-9deeba5d5e08"}, {"password":"5f397b8e-e54f-4a75-91b5-607b09452965","newPassword":"21274951-354e-4169-9b5f-9deeba5d5e08","newPasswordConfirm":"21274951-354e-4169-9b5f-9deeba5d5e08"}, requestBody) +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5f397b8e-e54f-4a75-91b5-607b09452965","newPassword":"21274951-354e-4169-9b5f-9deeba5d5e08","newPasswordConfirm":"21274951-354e-4169-9b5f-9deeba5d5e08"}, {"password":"5f397b8e-e54f-4a75-91b5-607b09452965","newPassword":"21274951-354e-4169-9b5f-9deeba5d5e08","newPasswordConfirm":"21274951-354e-4169-9b5f-9deeba5d5e08"}, requestBody) +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG com.networknt.schema.FormatValidator debug - validate( "21274951-354e-4169-9b5f-9deeba5d5e08", {"password":"5f397b8e-e54f-4a75-91b5-607b09452965","newPassword":"21274951-354e-4169-9b5f-9deeba5d5e08","newPasswordConfirm":"21274951-354e-4169-9b5f-9deeba5d5e08"}, requestBody.newPasswordConfirm) +23:10:18.334 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG com.networknt.schema.FormatValidator debug - validate( "5f397b8e-e54f-4a75-91b5-607b09452965", {"password":"5f397b8e-e54f-4a75-91b5-607b09452965","newPassword":"21274951-354e-4169-9b5f-9deeba5d5e08","newPasswordConfirm":"21274951-354e-4169-9b5f-9deeba5d5e08"}, requestBody.password) +23:10:18.335 [XNIO-1 task-1] LOyloHbtRJug1srEpr3JLA DEBUG com.networknt.schema.FormatValidator debug - validate( "21274951-354e-4169-9b5f-9deeba5d5e08", {"password":"5f397b8e-e54f-4a75-91b5-607b09452965","newPassword":"21274951-354e-4169-9b5f-9deeba5d5e08","newPasswordConfirm":"21274951-354e-4169-9b5f-9deeba5d5e08"}, requestBody.newPassword) +23:10:18.337 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:349c699f +23:10:18.352 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fc1b1064-5991-42ec-bf94-0384ba4315c5 +23:10:18.352 [XNIO-1 task-1] FPe509yXR1adYrwvgjVYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71ded75c +23:10:18.352 [XNIO-1 task-1] FPe509yXR1adYrwvgjVYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.352 [XNIO-1 task-1] FPe509yXR1adYrwvgjVYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.352 [XNIO-1 task-1] FPe509yXR1adYrwvgjVYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71ded75c +23:10:18.353 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:fc1b1064-5991-42ec-bf94-0384ba4315c5 +23:10:18.358 [XNIO-1 task-1] QdHPaUlIRVCFANUZfrdotg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.358 [XNIO-1 task-1] QdHPaUlIRVCFANUZfrdotg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.358 [XNIO-1 task-1] QdHPaUlIRVCFANUZfrdotg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.365 [XNIO-1 task-1] 29hD641HT2CXo9NfrrpEGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.365 [XNIO-1 task-1] 29hD641HT2CXo9NfrrpEGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.365 [XNIO-1 task-1] 29hD641HT2CXo9NfrrpEGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.366 [XNIO-1 task-1] 29hD641HT2CXo9NfrrpEGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.366 [XNIO-1 task-1] 29hD641HT2CXo9NfrrpEGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "71ded75c", "71ded75c", userId) +23:10:18.368 [XNIO-1 task-1] TtNmmDHTRUyQKXuPJVQwWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71ded75c +23:10:18.368 [XNIO-1 task-1] TtNmmDHTRUyQKXuPJVQwWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.368 [XNIO-1 task-1] TtNmmDHTRUyQKXuPJVQwWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.368 [XNIO-1 task-1] TtNmmDHTRUyQKXuPJVQwWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71ded75c +23:10:18.372 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/71ded75c, base path is set to: null +23:10:18.372 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.372 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.372 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:18.372 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/71ded75c, base path is set to: null +23:10:18.373 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG com.networknt.schema.TypeValidator debug - validate( "71ded75c", "71ded75c", userId) +23:10:18.373 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"21274951-354e-4169-9b5f-9deeba5d5e08","newPassword":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPasswordConfirm":"8f38ef49-0521-4395-9508-4f5d9d70b303"}, {"password":"21274951-354e-4169-9b5f-9deeba5d5e08","newPassword":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPasswordConfirm":"8f38ef49-0521-4395-9508-4f5d9d70b303"}, requestBody) +23:10:18.373 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG com.networknt.schema.TypeValidator debug - validate( "8f38ef49-0521-4395-9508-4f5d9d70b303", {"password":"21274951-354e-4169-9b5f-9deeba5d5e08","newPassword":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPasswordConfirm":"8f38ef49-0521-4395-9508-4f5d9d70b303"}, requestBody.newPasswordConfirm) +23:10:18.373 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG com.networknt.schema.TypeValidator debug - validate( "21274951-354e-4169-9b5f-9deeba5d5e08", {"password":"21274951-354e-4169-9b5f-9deeba5d5e08","newPassword":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPasswordConfirm":"8f38ef49-0521-4395-9508-4f5d9d70b303"}, requestBody.password) +23:10:18.373 [XNIO-1 task-1] iYwcRF1iRpmirCnbOAP-7A DEBUG com.networknt.schema.TypeValidator debug - validate( "8f38ef49-0521-4395-9508-4f5d9d70b303", {"password":"21274951-354e-4169-9b5f-9deeba5d5e08","newPassword":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPasswordConfirm":"8f38ef49-0521-4395-9508-4f5d9d70b303"}, requestBody.newPassword) +23:10:18.387 [XNIO-1 task-1] l30ZhBgoQmSr3Tcquo1dFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.388 [XNIO-1 task-1] l30ZhBgoQmSr3Tcquo1dFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.388 [XNIO-1 task-1] l30ZhBgoQmSr3Tcquo1dFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.394 [XNIO-1 task-1] GZcfUVbqTaaijhwaM_3dwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.394 [XNIO-1 task-1] GZcfUVbqTaaijhwaM_3dwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.395 [XNIO-1 task-1] GZcfUVbqTaaijhwaM_3dwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.409 [XNIO-1 task-1] Qv-DuZV0SAC6AB8elkTL3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f57a3830, base path is set to: null +23:10:18.409 [XNIO-1 task-1] Qv-DuZV0SAC6AB8elkTL3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.409 [XNIO-1 task-1] Qv-DuZV0SAC6AB8elkTL3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.409 [XNIO-1 task-1] Qv-DuZV0SAC6AB8elkTL3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f57a3830, base path is set to: null +23:10:18.411 [XNIO-1 task-1] Qv-DuZV0SAC6AB8elkTL3g DEBUG com.networknt.schema.TypeValidator debug - validate( "f57a3830", "f57a3830", userId) +23:10:18.415 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/71ded75c +23:10:18.415 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.415 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.416 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:18.416 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/71ded75c +23:10:18.416 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPassword":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787","newPasswordConfirm":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787"}, {"password":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPassword":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787","newPasswordConfirm":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787"}, requestBody) +23:10:18.416 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPassword":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787","newPasswordConfirm":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787"}, {"password":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPassword":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787","newPasswordConfirm":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787"}, requestBody) +23:10:18.416 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ecbe20c8-6d9f-4816-b33a-ab8ab952e787", {"password":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPassword":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787","newPasswordConfirm":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787"}, requestBody.newPasswordConfirm) +23:10:18.416 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "8f38ef49-0521-4395-9508-4f5d9d70b303", {"password":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPassword":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787","newPasswordConfirm":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787"}, requestBody.password) +23:10:18.416 [XNIO-1 task-1] -EXTld5QTGu3ZFPAzjcKRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ecbe20c8-6d9f-4816-b33a-ab8ab952e787", {"password":"8f38ef49-0521-4395-9508-4f5d9d70b303","newPassword":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787","newPasswordConfirm":"ecbe20c8-6d9f-4816-b33a-ab8ab952e787"}, requestBody.newPassword) +23:10:18.434 [XNIO-1 task-1] WBIf64GoRj6qH-ifg7Qe2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.435 [XNIO-1 task-1] WBIf64GoRj6qH-ifg7Qe2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.435 [XNIO-1 task-1] WBIf64GoRj6qH-ifg7Qe2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.454 [XNIO-1 task-1] AMuod7vTSU-nQTA45nayDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.454 [XNIO-1 task-1] AMuod7vTSU-nQTA45nayDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.454 [XNIO-1 task-1] AMuod7vTSU-nQTA45nayDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.459 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:349c699f +23:10:18.461 [XNIO-1 task-1] Hwtfe_iCTfChXgCY2yWDoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.461 [XNIO-1 task-1] Hwtfe_iCTfChXgCY2yWDoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.461 [XNIO-1 task-1] Hwtfe_iCTfChXgCY2yWDoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.480 [XNIO-1 task-1] 2HIC7IKKRo-7B94zgfp3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f57a3830 +23:10:18.480 [XNIO-1 task-1] 2HIC7IKKRo-7B94zgfp3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.480 [XNIO-1 task-1] 2HIC7IKKRo-7B94zgfp3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.480 [XNIO-1 task-1] 2HIC7IKKRo-7B94zgfp3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f57a3830 +23:10:18.490 [XNIO-1 task-1] cP_sfxi5TkOL_hXNuwJnVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.490 [XNIO-1 task-1] cP_sfxi5TkOL_hXNuwJnVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.490 [XNIO-1 task-1] cP_sfxi5TkOL_hXNuwJnVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.514 [XNIO-1 task-1] gZVB2mN6SiqeofzOzqavFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.514 [XNIO-1 task-1] gZVB2mN6SiqeofzOzqavFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.514 [XNIO-1 task-1] gZVB2mN6SiqeofzOzqavFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.514 [XNIO-1 task-1] gZVB2mN6SiqeofzOzqavFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.514 [XNIO-1 task-1] gZVB2mN6SiqeofzOzqavFA DEBUG com.networknt.schema.TypeValidator debug - validate( "71ded75c", "71ded75c", userId) +23:10:18.518 [XNIO-1 task-1] zwP9OOKjRMGlOM9emA4YiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.518 [XNIO-1 task-1] zwP9OOKjRMGlOM9emA4YiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.519 [XNIO-1 task-1] zwP9OOKjRMGlOM9emA4YiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/77a43f44 +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/77a43f44 +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"edd673f4-6af7-4f1b-bc2b-d30e7fd11588","newPassword":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPasswordConfirm":"4f08915b-dfed-4fd1-a386-0909e9caca5e"}, {"password":"edd673f4-6af7-4f1b-bc2b-d30e7fd11588","newPassword":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPasswordConfirm":"4f08915b-dfed-4fd1-a386-0909e9caca5e"}, requestBody) +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"edd673f4-6af7-4f1b-bc2b-d30e7fd11588","newPassword":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPasswordConfirm":"4f08915b-dfed-4fd1-a386-0909e9caca5e"}, {"password":"edd673f4-6af7-4f1b-bc2b-d30e7fd11588","newPassword":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPasswordConfirm":"4f08915b-dfed-4fd1-a386-0909e9caca5e"}, requestBody) +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG com.networknt.schema.FormatValidator debug - validate( "4f08915b-dfed-4fd1-a386-0909e9caca5e", {"password":"edd673f4-6af7-4f1b-bc2b-d30e7fd11588","newPassword":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPasswordConfirm":"4f08915b-dfed-4fd1-a386-0909e9caca5e"}, requestBody.newPasswordConfirm) +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG com.networknt.schema.FormatValidator debug - validate( "edd673f4-6af7-4f1b-bc2b-d30e7fd11588", {"password":"edd673f4-6af7-4f1b-bc2b-d30e7fd11588","newPassword":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPasswordConfirm":"4f08915b-dfed-4fd1-a386-0909e9caca5e"}, requestBody.password) +23:10:18.535 [XNIO-1 task-1] OMCmeVJXR16fL-LIDll8Vw DEBUG com.networknt.schema.FormatValidator debug - validate( "4f08915b-dfed-4fd1-a386-0909e9caca5e", {"password":"edd673f4-6af7-4f1b-bc2b-d30e7fd11588","newPassword":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPasswordConfirm":"4f08915b-dfed-4fd1-a386-0909e9caca5e"}, requestBody.newPassword) +23:10:18.555 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a0e92d67-c5b5-4d68-9be8-c28737e8419a +23:10:18.557 [XNIO-1 task-1] 7nUPioaER8O29OoRTDFnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.557 [XNIO-1 task-1] 7nUPioaER8O29OoRTDFnIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.557 [XNIO-1 task-1] 7nUPioaER8O29OoRTDFnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.557 [XNIO-1 task-1] 7nUPioaER8O29OoRTDFnIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.560 [XNIO-1 task-1] aN7uN54USIqRYSyvczy8cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.561 [XNIO-1 task-1] aN7uN54USIqRYSyvczy8cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.561 [XNIO-1 task-1] aN7uN54USIqRYSyvczy8cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.561 [XNIO-1 task-1] aN7uN54USIqRYSyvczy8cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.569 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/77a43f44, base path is set to: null +23:10:18.569 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.569 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.569 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:18.570 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/77a43f44, base path is set to: null +23:10:18.570 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG com.networknt.schema.TypeValidator debug - validate( "77a43f44", "77a43f44", userId) +23:10:18.570 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPassword":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPasswordConfirm":"3aacfd10-6a58-4fb4-ada4-a685b9868405"}, {"password":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPassword":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPasswordConfirm":"3aacfd10-6a58-4fb4-ada4-a685b9868405"}, requestBody) +23:10:18.570 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG com.networknt.schema.TypeValidator debug - validate( "3aacfd10-6a58-4fb4-ada4-a685b9868405", {"password":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPassword":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPasswordConfirm":"3aacfd10-6a58-4fb4-ada4-a685b9868405"}, requestBody.newPasswordConfirm) +23:10:18.570 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f08915b-dfed-4fd1-a386-0909e9caca5e", {"password":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPassword":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPasswordConfirm":"3aacfd10-6a58-4fb4-ada4-a685b9868405"}, requestBody.password) +23:10:18.570 [XNIO-1 task-1] ulLxRDISTf-GT9obmOyuQw DEBUG com.networknt.schema.TypeValidator debug - validate( "3aacfd10-6a58-4fb4-ada4-a685b9868405", {"password":"4f08915b-dfed-4fd1-a386-0909e9caca5e","newPassword":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPasswordConfirm":"3aacfd10-6a58-4fb4-ada4-a685b9868405"}, requestBody.newPassword) +23:10:18.573 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:349c699f +23:10:18.587 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:349c699f +23:10:18.592 [XNIO-1 task-1] HedVRn2JQJ63kVQDLuOsxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:18.592 [XNIO-1 task-1] HedVRn2JQJ63kVQDLuOsxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.592 [XNIO-1 task-1] HedVRn2JQJ63kVQDLuOsxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.592 [XNIO-1 task-1] HedVRn2JQJ63kVQDLuOsxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:18.592 [XNIO-1 task-1] HedVRn2JQJ63kVQDLuOsxA DEBUG com.networknt.schema.TypeValidator debug - validate( "77a43f44", "77a43f44", userId) +23:10:18.597 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/77a43f44 +23:10:18.597 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.597 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.598 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:18.598 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/77a43f44 +23:10:18.598 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPassword":"8f6aee43-a45e-4d99-bcb1-3838cc252a97","newPasswordConfirm":"8f6aee43-a45e-4d99-bcb1-3838cc252a97"}, {"password":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPassword":"8f6aee43-a45e-4d99-bcb1-3838cc252a97","newPasswordConfirm":"8f6aee43-a45e-4d99-bcb1-3838cc252a97"}, requestBody) +23:10:18.598 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPassword":"8f6aee43-a45e-4d99-bcb1-3838cc252a97","newPasswordConfirm":"8f6aee43-a45e-4d99-bcb1-3838cc252a97"}, {"password":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPassword":"8f6aee43-a45e-4d99-bcb1-3838cc252a97","newPasswordConfirm":"8f6aee43-a45e-4d99-bcb1-3838cc252a97"}, requestBody) +23:10:18.598 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "8f6aee43-a45e-4d99-bcb1-3838cc252a97", {"password":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPassword":"8f6aee43-a45e-4d99-bcb1-3838cc252a97","newPasswordConfirm":"8f6aee43-a45e-4d99-bcb1-3838cc252a97"}, requestBody.newPasswordConfirm) +23:10:18.598 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "3aacfd10-6a58-4fb4-ada4-a685b9868405", {"password":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPassword":"8f6aee43-a45e-4d99-bcb1-3838cc252a97","newPasswordConfirm":"8f6aee43-a45e-4d99-bcb1-3838cc252a97"}, requestBody.password) +23:10:18.598 [XNIO-1 task-1] bLeOgyFiQGOrMvJ0spxMmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "8f6aee43-a45e-4d99-bcb1-3838cc252a97", {"password":"3aacfd10-6a58-4fb4-ada4-a685b9868405","newPassword":"8f6aee43-a45e-4d99-bcb1-3838cc252a97","newPasswordConfirm":"8f6aee43-a45e-4d99-bcb1-3838cc252a97"}, requestBody.newPassword) +23:10:18.622 [XNIO-1 task-1] TnbI6AgKQkyu0cJZjpYT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/caf085fc +23:10:18.622 [XNIO-1 task-1] TnbI6AgKQkyu0cJZjpYT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.622 [XNIO-1 task-1] TnbI6AgKQkyu0cJZjpYT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.622 [XNIO-1 task-1] TnbI6AgKQkyu0cJZjpYT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/caf085fc +23:10:18.636 [XNIO-1 task-1] v3aMptjtQTmRCAQTWMk_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.637 [XNIO-1 task-1] v3aMptjtQTmRCAQTWMk_nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.637 [XNIO-1 task-1] v3aMptjtQTmRCAQTWMk_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.662 [XNIO-1 task-1] ECREaD51ST69xgInkXt2pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.662 [XNIO-1 task-1] ECREaD51ST69xgInkXt2pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.662 [XNIO-1 task-1] ECREaD51ST69xgInkXt2pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.662 [XNIO-1 task-1] ECREaD51ST69xgInkXt2pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.662 [XNIO-1 task-1] ECREaD51ST69xgInkXt2pg DEBUG com.networknt.schema.TypeValidator debug - validate( "71ded75c", "71ded75c", userId) +23:10:18.668 [XNIO-1 task-1] hSYmAc7yTfW0RbwFYTOFRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.668 [XNIO-1 task-1] hSYmAc7yTfW0RbwFYTOFRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.668 [XNIO-1 task-1] hSYmAc7yTfW0RbwFYTOFRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.688 [XNIO-1 task-1] 7iiuSwwSQAGQoA482nqJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.688 [XNIO-1 task-1] 7iiuSwwSQAGQoA482nqJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.688 [XNIO-1 task-1] 7iiuSwwSQAGQoA482nqJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.695 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:94139bbf +23:10:18.708 [XNIO-1 task-1] Igr_L1QXS4aFjmvzTWYfDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.708 [XNIO-1 task-1] Igr_L1QXS4aFjmvzTWYfDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.708 [XNIO-1 task-1] Igr_L1QXS4aFjmvzTWYfDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.727 [XNIO-1 task-1] N379k81hQ6i7suOMR2OBoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b2bbd0d4, base path is set to: null +23:10:18.727 [XNIO-1 task-1] N379k81hQ6i7suOMR2OBoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.727 [XNIO-1 task-1] N379k81hQ6i7suOMR2OBoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.728 [XNIO-1 task-1] N379k81hQ6i7suOMR2OBoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b2bbd0d4, base path is set to: null +23:10:18.728 [XNIO-1 task-1] N379k81hQ6i7suOMR2OBoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b2bbd0d4", "b2bbd0d4", userId) +23:10:18.730 [XNIO-1 task-1] pMbyD5vRQwykA8LkuSHuQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.730 [XNIO-1 task-1] pMbyD5vRQwykA8LkuSHuQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.730 [XNIO-1 task-1] pMbyD5vRQwykA8LkuSHuQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.749 [XNIO-1 task-1] kI_K8EvlQeCkA73gPwcb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b2bbd0d4 +23:10:18.749 [XNIO-1 task-1] kI_K8EvlQeCkA73gPwcb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.749 [XNIO-1 task-1] kI_K8EvlQeCkA73gPwcb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:18.750 [XNIO-1 task-1] kI_K8EvlQeCkA73gPwcb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b2bbd0d4 +23:10:18.764 [XNIO-1 task-1] _-z9Pd6yTgaHI3JOPaBdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.764 [XNIO-1 task-1] _-z9Pd6yTgaHI3JOPaBdmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.765 [XNIO-1 task-1] _-z9Pd6yTgaHI3JOPaBdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.787 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/94139bbf, base path is set to: null +23:10:18.787 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.787 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.787 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:18.788 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/94139bbf, base path is set to: null +23:10:18.788 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG com.networknt.schema.TypeValidator debug - validate( "94139bbf", "94139bbf", userId) +23:10:18.788 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"00167985-2bf4-4fd4-a8e2-a04832ba7ed9","newPassword":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPasswordConfirm":"f4164793-3827-49e5-9dd8-be8b7a5e9f15"}, {"password":"00167985-2bf4-4fd4-a8e2-a04832ba7ed9","newPassword":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPasswordConfirm":"f4164793-3827-49e5-9dd8-be8b7a5e9f15"}, requestBody) +23:10:18.788 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG com.networknt.schema.TypeValidator debug - validate( "f4164793-3827-49e5-9dd8-be8b7a5e9f15", {"password":"00167985-2bf4-4fd4-a8e2-a04832ba7ed9","newPassword":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPasswordConfirm":"f4164793-3827-49e5-9dd8-be8b7a5e9f15"}, requestBody.newPasswordConfirm) +23:10:18.788 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG com.networknt.schema.TypeValidator debug - validate( "00167985-2bf4-4fd4-a8e2-a04832ba7ed9", {"password":"00167985-2bf4-4fd4-a8e2-a04832ba7ed9","newPassword":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPasswordConfirm":"f4164793-3827-49e5-9dd8-be8b7a5e9f15"}, requestBody.password) +23:10:18.788 [XNIO-1 task-1] UVShZU0aTjCPjn_Erf1y-g DEBUG com.networknt.schema.TypeValidator debug - validate( "f4164793-3827-49e5-9dd8-be8b7a5e9f15", {"password":"00167985-2bf4-4fd4-a8e2-a04832ba7ed9","newPassword":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPasswordConfirm":"f4164793-3827-49e5-9dd8-be8b7a5e9f15"}, requestBody.newPassword) +23:10:18.798 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:94139bbf +23:10:18.812 [XNIO-1 task-1] TQ1-fvbISdCfXVf2AGIlHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.812 [XNIO-1 task-1] TQ1-fvbISdCfXVf2AGIlHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.812 [XNIO-1 task-1] TQ1-fvbISdCfXVf2AGIlHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.812 [XNIO-1 task-1] TQ1-fvbISdCfXVf2AGIlHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.822 [XNIO-1 task-1] NJ_B2M9MQfyuOpbSddLauQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.825 [XNIO-1 task-1] NJ_B2M9MQfyuOpbSddLauQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.825 [XNIO-1 task-1] NJ_B2M9MQfyuOpbSddLauQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.825 [XNIO-1 task-1] NJ_B2M9MQfyuOpbSddLauQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.874 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/94139bbf, base path is set to: null +23:10:18.874 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.874 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.874 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:18.874 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/94139bbf, base path is set to: null +23:10:18.875 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG com.networknt.schema.TypeValidator debug - validate( "94139bbf", "94139bbf", userId) +23:10:18.875 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPassword":"20bea1c9-ae37-4278-af5d-852de2237794","newPasswordConfirm":"20bea1c9-ae37-4278-af5d-852de2237794"}, {"password":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPassword":"20bea1c9-ae37-4278-af5d-852de2237794","newPasswordConfirm":"20bea1c9-ae37-4278-af5d-852de2237794"}, requestBody) +23:10:18.875 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG com.networknt.schema.TypeValidator debug - validate( "20bea1c9-ae37-4278-af5d-852de2237794", {"password":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPassword":"20bea1c9-ae37-4278-af5d-852de2237794","newPasswordConfirm":"20bea1c9-ae37-4278-af5d-852de2237794"}, requestBody.newPasswordConfirm) +23:10:18.875 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG com.networknt.schema.TypeValidator debug - validate( "f4164793-3827-49e5-9dd8-be8b7a5e9f15", {"password":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPassword":"20bea1c9-ae37-4278-af5d-852de2237794","newPasswordConfirm":"20bea1c9-ae37-4278-af5d-852de2237794"}, requestBody.password) +23:10:18.875 [XNIO-1 task-1] iIvWoFZaTGq_zdrVLOYtbw DEBUG com.networknt.schema.TypeValidator debug - validate( "20bea1c9-ae37-4278-af5d-852de2237794", {"password":"f4164793-3827-49e5-9dd8-be8b7a5e9f15","newPassword":"20bea1c9-ae37-4278-af5d-852de2237794","newPasswordConfirm":"20bea1c9-ae37-4278-af5d-852de2237794"}, requestBody.newPassword) +23:10:18.885 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:94139bbf +23:10:18.897 [XNIO-1 task-1] 11WcFJYvTiC29Zo17y1HMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94139bbf, base path is set to: null +23:10:18.897 [XNIO-1 task-1] 11WcFJYvTiC29Zo17y1HMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.897 [XNIO-1 task-1] 11WcFJYvTiC29Zo17y1HMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.897 [XNIO-1 task-1] 11WcFJYvTiC29Zo17y1HMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94139bbf, base path is set to: null +23:10:18.897 [XNIO-1 task-1] 11WcFJYvTiC29Zo17y1HMA DEBUG com.networknt.schema.TypeValidator debug - validate( "94139bbf", "94139bbf", userId) +23:10:18.911 [XNIO-1 task-1] rUtcVijHSrijTab9bk30GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.911 [XNIO-1 task-1] rUtcVijHSrijTab9bk30GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.911 [XNIO-1 task-1] rUtcVijHSrijTab9bk30GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.911 [XNIO-1 task-1] rUtcVijHSrijTab9bk30GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:18.921 [XNIO-1 task-1] jwgspVJXQnqlrNA43MfPow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.921 [XNIO-1 task-1] jwgspVJXQnqlrNA43MfPow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.921 [XNIO-1 task-1] jwgspVJXQnqlrNA43MfPow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:18.930 [XNIO-1 task-1] I0qH4TMwR5W_gm1CMQLXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.930 [XNIO-1 task-1] I0qH4TMwR5W_gm1CMQLXUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:18.930 [XNIO-1 task-1] I0qH4TMwR5W_gm1CMQLXUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:18.930 [XNIO-1 task-1] I0qH4TMwR5W_gm1CMQLXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/71ded75c, base path is set to: null +23:10:18.930 [XNIO-1 task-1] I0qH4TMwR5W_gm1CMQLXUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "71ded75c", "71ded75c", userId) +23:10:18.954 [XNIO-1 task-1] B_jnF363T1GdAeeTtouKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.954 [XNIO-1 task-1] B_jnF363T1GdAeeTtouKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.954 [XNIO-1 task-1] B_jnF363T1GdAeeTtouKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.976 [XNIO-1 task-1] P_Mulp0ARzaePsqogSBDIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.976 [XNIO-1 task-1] P_Mulp0ARzaePsqogSBDIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:18.976 [XNIO-1 task-1] P_Mulp0ARzaePsqogSBDIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.005 [XNIO-1 task-1] AkZaBkFrQxek3AOWZWyvcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.005 [XNIO-1 task-1] AkZaBkFrQxek3AOWZWyvcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.005 [XNIO-1 task-1] AkZaBkFrQxek3AOWZWyvcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.020 [XNIO-1 task-1] mls7BmdzQNec9-EoRj6Y0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ac0e784e +23:10:19.020 [XNIO-1 task-1] mls7BmdzQNec9-EoRj6Y0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.020 [XNIO-1 task-1] mls7BmdzQNec9-EoRj6Y0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.020 [XNIO-1 task-1] mls7BmdzQNec9-EoRj6Y0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ac0e784e +23:10:19.030 [XNIO-1 task-1] coYb-IlYSJezHbRmQ9EouQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:19.031 [XNIO-1 task-1] coYb-IlYSJezHbRmQ9EouQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.031 [XNIO-1 task-1] coYb-IlYSJezHbRmQ9EouQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.031 [XNIO-1 task-1] coYb-IlYSJezHbRmQ9EouQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:19.031 [XNIO-1 task-1] coYb-IlYSJezHbRmQ9EouQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77a43f44", "77a43f44", userId) +23:10:19.036 [XNIO-1 task-1] XoFakwgKRTKbhxHbrqSSOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.036 [XNIO-1 task-1] XoFakwgKRTKbhxHbrqSSOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.036 [XNIO-1 task-1] XoFakwgKRTKbhxHbrqSSOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.046 [XNIO-1 task-1] OaqQj383TYu5LWSYww9_aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.046 [XNIO-1 task-1] OaqQj383TYu5LWSYww9_aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.046 [XNIO-1 task-1] OaqQj383TYu5LWSYww9_aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.046 [XNIO-1 task-1] OaqQj383TYu5LWSYww9_aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.054 [XNIO-1 task-1] qP_Nmh1FRyao62uOgpHxlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.054 [XNIO-1 task-1] qP_Nmh1FRyao62uOgpHxlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.054 [XNIO-1 task-1] qP_Nmh1FRyao62uOgpHxlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.054 [XNIO-1 task-1] qP_Nmh1FRyao62uOgpHxlg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.058 [XNIO-1 task-1] _cqLsOCDR52wwADw8wfW5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.058 [XNIO-1 task-1] _cqLsOCDR52wwADw8wfW5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.058 [XNIO-1 task-1] _cqLsOCDR52wwADw8wfW5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.058 [XNIO-1 task-1] _cqLsOCDR52wwADw8wfW5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.062 [XNIO-1 task-1] wiIJLlC8RLS-Ig629X6AYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.062 [XNIO-1 task-1] wiIJLlC8RLS-Ig629X6AYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.062 [XNIO-1 task-1] wiIJLlC8RLS-Ig629X6AYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.062 [XNIO-1 task-1] wiIJLlC8RLS-Ig629X6AYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.068 [XNIO-1 task-1] UfR92LGuQHeFMgWvSGfihA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d61238fd, base path is set to: null +23:10:19.069 [XNIO-1 task-1] UfR92LGuQHeFMgWvSGfihA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.069 [XNIO-1 task-1] UfR92LGuQHeFMgWvSGfihA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.069 [XNIO-1 task-1] UfR92LGuQHeFMgWvSGfihA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d61238fd, base path is set to: null +23:10:19.069 [XNIO-1 task-1] UfR92LGuQHeFMgWvSGfihA DEBUG com.networknt.schema.TypeValidator debug - validate( "d61238fd", "d61238fd", userId) +23:10:19.079 [XNIO-1 task-1] MylXsRXwScenwAIktgaxgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.079 [XNIO-1 task-1] MylXsRXwScenwAIktgaxgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.079 [XNIO-1 task-1] MylXsRXwScenwAIktgaxgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.092 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2872df92 +23:10:19.092 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7910129e, base path is set to: null +Jun 28, 2024 11:10:19 PM com.hazelcast.map.impl.operation.DeleteOperation +23:10:19.093 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.093 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.093 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.093 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +23:10:19.093 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:19.094 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7910129e, base path is set to: null +23:10:19.094 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7910129e +23:10:19.094 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7910129e", "7910129e", userId) +23:10:19.094 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"cfd77120-292b-47ad-a79a-7298e51b9fc1","newPassword":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPasswordConfirm":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84"}, {"password":"cfd77120-292b-47ad-a79a-7298e51b9fc1","newPassword":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPasswordConfirm":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84"}, requestBody) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:19.094 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c62ba5c-3d83-4a5a-b379-34c6113e2a84", {"password":"cfd77120-292b-47ad-a79a-7298e51b9fc1","newPassword":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPasswordConfirm":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84"}, requestBody.newPassword) +23:10:19.094 [XNIO-1 task-1] 9ge8AvtoQzKnbH9lxA1GwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5c62ba5c-3d83-4a5a-b379-34c6113e2a84", {"password":"cfd77120-292b-47ad-a79a-7298e51b9fc1","newPassword":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPasswordConfirm":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84"}, requestBody.newPassword) +23:10:19.122 [XNIO-1 task-1] Ke9Z8iYiSCmoU6FVJFG-wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.122 [XNIO-1 task-1] Ke9Z8iYiSCmoU6FVJFG-wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.122 [XNIO-1 task-1] Ke9Z8iYiSCmoU6FVJFG-wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.122 [XNIO-1 task-1] Ke9Z8iYiSCmoU6FVJFG-wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.122 [XNIO-1 task-1] Ke9Z8iYiSCmoU6FVJFG-wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.122 [XNIO-1 task-1] Ke9Z8iYiSCmoU6FVJFG-wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +23:10:19.129 [XNIO-1 task-1] OnXCQmT4Q0OR5lwKGbdVLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.138 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:19.149 [XNIO-1 task-1] AhnTrIMLR2iDbow7ydYGVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f20ba5d9 +23:10:19.149 [XNIO-1 task-1] AhnTrIMLR2iDbow7ydYGVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.149 [XNIO-1 task-1] AhnTrIMLR2iDbow7ydYGVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.149 [XNIO-1 task-1] AhnTrIMLR2iDbow7ydYGVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f20ba5d9 +23:10:19.163 [XNIO-1 task-1] rvyOEa9pSACqa3yHKWlNYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/243c58dc, base path is set to: null +23:10:19.163 [XNIO-1 task-1] rvyOEa9pSACqa3yHKWlNYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.163 [XNIO-1 task-1] rvyOEa9pSACqa3yHKWlNYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.163 [XNIO-1 task-1] rvyOEa9pSACqa3yHKWlNYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/243c58dc, base path is set to: null +23:10:19.163 [XNIO-1 task-1] rvyOEa9pSACqa3yHKWlNYA DEBUG com.networknt.schema.TypeValidator debug - validate( "243c58dc", "243c58dc", userId) +23:10:19.167 [XNIO-1 task-1] AWop54-8Qp6xUvQEEFRk_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/243c58dc +23:10:19.167 [XNIO-1 task-1] AWop54-8Qp6xUvQEEFRk_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.167 [XNIO-1 task-1] AWop54-8Qp6xUvQEEFRk_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.167 [XNIO-1 task-1] AWop54-8Qp6xUvQEEFRk_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/243c58dc +23:10:19.177 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a71dc826-dac0-47c5-9d87-b104ef17a7ba +23:10:19.183 [XNIO-1 task-1] 2bjNXfdJSLmt7z4aO5_UCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:19.183 [XNIO-1 task-1] 2bjNXfdJSLmt7z4aO5_UCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.183 [XNIO-1 task-1] 2bjNXfdJSLmt7z4aO5_UCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.183 [XNIO-1 task-1] 2bjNXfdJSLmt7z4aO5_UCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:19.183 [XNIO-1 task-1] 2bjNXfdJSLmt7z4aO5_UCg DEBUG com.networknt.schema.TypeValidator debug - validate( "77a43f44", "77a43f44", userId) +23:10:19.189 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2872df92 +23:10:19.189 [XNIO-1 task-1] CCBb1TPSS-qG6OchLh9Icw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.189 [XNIO-1 task-1] CCBb1TPSS-qG6OchLh9Icw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.189 [XNIO-1 task-1] CCBb1TPSS-qG6OchLh9Icw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.190 [XNIO-1 task-1] CCBb1TPSS-qG6OchLh9Icw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.194 [XNIO-1 task-1] Jeg0asbNTw6OLaHFd3n-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.194 [XNIO-1 task-1] Jeg0asbNTw6OLaHFd3n-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.194 [XNIO-1 task-1] Jeg0asbNTw6OLaHFd3n-GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.194 [XNIO-1 task-1] Jeg0asbNTw6OLaHFd3n-GA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.199 [XNIO-1 task-1] kGSo_NNATSi4B3B6Ql1MRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.199 [XNIO-1 task-1] kGSo_NNATSi4B3B6Ql1MRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.199 [XNIO-1 task-1] kGSo_NNATSi4B3B6Ql1MRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.206 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1787bba1 +23:10:19.212 [XNIO-1 task-1] lf6ct7MPSfmTai82p00j7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.212 [XNIO-1 task-1] lf6ct7MPSfmTai82p00j7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.212 [XNIO-1 task-1] lf6ct7MPSfmTai82p00j7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.212 [XNIO-1 task-1] lf6ct7MPSfmTai82p00j7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.220 [XNIO-1 task-1] SqlsG5qeSa-ds312zAZJ3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1765e056, base path is set to: null +23:10:19.220 [XNIO-1 task-1] SqlsG5qeSa-ds312zAZJ3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.220 [XNIO-1 task-1] SqlsG5qeSa-ds312zAZJ3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.220 [XNIO-1 task-1] SqlsG5qeSa-ds312zAZJ3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1765e056, base path is set to: null +23:10:19.220 [XNIO-1 task-1] SqlsG5qeSa-ds312zAZJ3A DEBUG com.networknt.schema.TypeValidator debug - validate( "1765e056", "1765e056", userId) +23:10:19.234 [XNIO-1 task-1] W-KYsy5bQgenA4FT2tK5fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.234 [XNIO-1 task-1] W-KYsy5bQgenA4FT2tK5fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.234 [XNIO-1 task-1] W-KYsy5bQgenA4FT2tK5fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.235 [XNIO-1 task-1] W-KYsy5bQgenA4FT2tK5fw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.243 [XNIO-1 task-1] 5eGfZm0JTCuICG7jr7uM7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.244 [XNIO-1 task-1] 5eGfZm0JTCuICG7jr7uM7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.244 [XNIO-1 task-1] 5eGfZm0JTCuICG7jr7uM7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.244 [XNIO-1 task-1] 5eGfZm0JTCuICG7jr7uM7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.248 [XNIO-1 task-1] f5I6r6h-TkOVCFM9szBK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.248 [XNIO-1 task-1] f5I6r6h-TkOVCFM9szBK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.248 [XNIO-1 task-1] f5I6r6h-TkOVCFM9szBK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.248 [XNIO-1 task-1] f5I6r6h-TkOVCFM9szBK8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.253 [XNIO-1 task-1] oDC9QqeGTCGLthoea4vp0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1787bba1 +23:10:19.253 [XNIO-1 task-1] oDC9QqeGTCGLthoea4vp0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.253 [XNIO-1 task-1] oDC9QqeGTCGLthoea4vp0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.253 [XNIO-1 task-1] oDC9QqeGTCGLthoea4vp0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1787bba1 +23:10:19.258 [XNIO-1 task-1] S1D7niK8S0WLk-TNmZQImw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.258 [XNIO-1 task-1] S1D7niK8S0WLk-TNmZQImw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.258 [XNIO-1 task-1] S1D7niK8S0WLk-TNmZQImw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.258 [XNIO-1 task-1] S1D7niK8S0WLk-TNmZQImw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.261 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1787bba1, base path is set to: null +23:10:19.262 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1787bba1, base path is set to: null +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1787bba1", "1787bba1", userId) +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0","newPassword":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPasswordConfirm":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239"}, {"password":"c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0","newPassword":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPasswordConfirm":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239"}, requestBody) +Jun 28, 2024 11:10:19 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b54b9d08-e2cb-44ed-8c81-aeab3e6a0239", {"password":"c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0","newPassword":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPasswordConfirm":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239"}, requestBody.newPasswordConfirm) +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0", {"password":"c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0","newPassword":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPasswordConfirm":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239"}, requestBody.password) +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0", {"password":"c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0","newPassword":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPasswordConfirm":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239"}, requestBody.password) +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b54b9d08-e2cb-44ed-8c81-aeab3e6a0239", {"password":"c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0","newPassword":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPasswordConfirm":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239"}, requestBody.newPassword) +23:10:19.263 [XNIO-1 task-1] R3rH8bJbRCSLM14h5bcwrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b54b9d08-e2cb-44ed-8c81-aeab3e6a0239", {"password":"c6045a73-0aa8-4dfa-a1ce-2d8d97c2b4f0","newPassword":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPasswordConfirm":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239"}, requestBody.newPassword) +23:10:19.272 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1787bba1 +23:10:19.272 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1787bba1 + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +23:10:19.284 [XNIO-1 task-1] FxIyHHEtQpe-2jEo3FvV4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.284 [XNIO-1 task-1] FxIyHHEtQpe-2jEo3FvV4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +23:10:19.284 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1787bba1 +23:10:19.284 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1787bba1 + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +23:10:19.302 [XNIO-1 task-1] EaUxdfpIRqOka2Bs8nINeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.302 [XNIO-1 task-1] EaUxdfpIRqOka2Bs8nINeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.302 [XNIO-1 task-1] EaUxdfpIRqOka2Bs8nINeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +23:10:19.308 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fc1b1064-5991-42ec-bf94-0384ba4315c5 +23:10:19.309 [XNIO-1 task-1] wOzBF0uCQG-VIukWPdbL2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.310 [XNIO-1 task-1] wOzBF0uCQG-VIukWPdbL2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + +23:10:19.310 [XNIO-1 task-1] wOzBF0uCQG-VIukWPdbL2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.311 [XNIO-1 task-1] wOzBF0uCQG-VIukWPdbL2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.311 [XNIO-1 task-1] wOzBF0uCQG-VIukWPdbL2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:19.319 [XNIO-1 task-1] qYobI7TkSgyB6E843vOFTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.319 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fc1b1064-5991-42ec-bf94-0384ba4315c5 +23:10:19.319 [XNIO-1 task-1] qYobI7TkSgyB6E843vOFTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.319 [XNIO-1 task-1] qYobI7TkSgyB6E843vOFTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +Jun 28, 2024 11:10:19 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7910129e, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, requestBody) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, requestBody) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG com.networknt.schema.TypeValidator debug - validate( "c64536b1-ef65-4a86-97b6-4cc57a8e5329", {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, requestBody.newPasswordConfirm) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG com.networknt.schema.FormatValidator debug - validate( "c64536b1-ef65-4a86-97b6-4cc57a8e5329", {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, requestBody.newPasswordConfirm) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c62ba5c-3d83-4a5a-b379-34c6113e2a84", {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, requestBody.password) + +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG com.networknt.schema.FormatValidator debug - validate( "5c62ba5c-3d83-4a5a-b379-34c6113e2a84", {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, requestBody.password) +23:10:19.338 [XNIO-1 task-1] DXElC_n9Tk-bkZuceTiPjw DEBUG com.networknt.schema.TypeValidator debug - validate( "c64536b1-ef65-4a86-97b6-4cc57a8e5329", {"password":"5c62ba5c-3d83-4a5a-b379-34c6113e2a84","newPassword":"c64536b1-ef65-4a86-97b6-4cc57a8e5329","newPasswordConfirm":"c64536b1-ef65-4a86-97b6-4cc57a8e5329"}, requestBody.newPassword) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +23:10:19.358 [XNIO-1 task-1] 4dJLev-QS9uCXyjscpPevw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +23:10:19.359 [XNIO-1 task-1] 4dJLev-QS9uCXyjscpPevw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +23:10:19.359 [XNIO-1 task-1] 4dJLev-QS9uCXyjscpPevw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.359 [XNIO-1 task-1] 4dJLev-QS9uCXyjscpPevw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.367 [XNIO-1 task-1] 75IUt5TjS2279ARW_SKJSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:19.367 [XNIO-1 task-1] 75IUt5TjS2279ARW_SKJSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/77a43f44 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +23:10:19.367 [XNIO-1 task-1] 75IUt5TjS2279ARW_SKJSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +23:10:19.368 [XNIO-1 task-1] 75IUt5TjS2279ARW_SKJSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/77a43f44 +23:10:19.368 [XNIO-1 task-1] 75IUt5TjS2279ARW_SKJSg DEBUG com.networknt.schema.TypeValidator debug - validate( "77a43f44", "77a43f44", userId) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +23:10:19.372 [XNIO-1 task-1] 2LmQwgp-QvqDjho55QjU9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7910129e + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +23:10:19.372 [XNIO-1 task-1] 2LmQwgp-QvqDjho55QjU9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.372 [XNIO-1 task-1] 2LmQwgp-QvqDjho55QjU9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7910129e, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +23:10:19.372 [XNIO-1 task-1] 2LmQwgp-QvqDjho55QjU9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7910129e +23:10:19.375 [XNIO-1 task-1] ji4MKvVcTMuPOdb2ou1pVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.375 [XNIO-1 task-1] ji4MKvVcTMuPOdb2ou1pVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.375 [XNIO-1 task-1] ji4MKvVcTMuPOdb2ou1pVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.383 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fc1b1064-5991-42ec-bf94-0384ba4315c5 +23:10:19.393 [XNIO-1 task-1] Dkzt10h6RxyyU-kBHjOF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.393 [XNIO-1 task-1] Dkzt10h6RxyyU-kBHjOF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.394 [XNIO-1 task-1] Dkzt10h6RxyyU-kBHjOF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:19.407 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fc1b1064-5991-42ec-bf94-0384ba4315c5 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:19.423 [XNIO-1 task-1] m8UVWzwSSPKqGiIa-VosNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.423 [XNIO-1 task-1] m8UVWzwSSPKqGiIa-VosNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.423 [XNIO-1 task-1] m8UVWzwSSPKqGiIa-VosNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.423 [XNIO-1 task-1] m8UVWzwSSPKqGiIa-VosNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.428 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f20ba5d9, base path is set to: null +23:10:19.428 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.428 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.428 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:19.429 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f20ba5d9, base path is set to: null +23:10:19.429 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f20ba5d9", "f20ba5d9", userId) +23:10:19.429 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"1a5fd865-22d3-418a-a125-2807c0acfba6","newPassword":"24e0edc7-c937-4c65-bf34-6e6ce30b6026","newPasswordConfirm":"24e0edc7-c937-4c65-bf34-6e6ce30b6026"}, {"password":"1a5fd865-22d3-418a-a125-2807c0acfba6","newPassword":"24e0edc7-c937-4c65-bf34-6e6ce30b6026","newPasswordConfirm":"24e0edc7-c937-4c65-bf34-6e6ce30b6026"}, requestBody) +23:10:19.429 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "24e0edc7-c937-4c65-bf34-6e6ce30b6026", {"password":"1a5fd865-22d3-418a-a125-2807c0acfba6","newPassword":"24e0edc7-c937-4c65-bf34-6e6ce30b6026","newPasswordConfirm":"24e0edc7-c937-4c65-bf34-6e6ce30b6026"}, requestBody.newPasswordConfirm) +23:10:19.429 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1a5fd865-22d3-418a-a125-2807c0acfba6", {"password":"1a5fd865-22d3-418a-a125-2807c0acfba6","newPassword":"24e0edc7-c937-4c65-bf34-6e6ce30b6026","newPasswordConfirm":"24e0edc7-c937-4c65-bf34-6e6ce30b6026"}, requestBody.password) +23:10:19.429 [XNIO-1 task-1] mUzgmT2lRT--d4_4O3Gj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "24e0edc7-c937-4c65-bf34-6e6ce30b6026", {"password":"1a5fd865-22d3-418a-a125-2807c0acfba6","newPassword":"24e0edc7-c937-4c65-bf34-6e6ce30b6026","newPasswordConfirm":"24e0edc7-c937-4c65-bf34-6e6ce30b6026"}, requestBody.newPassword) +23:10:19.450 [XNIO-1 task-1] cyB3T11GT7qcVTgZWuZZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.450 [XNIO-1 task-1] cyB3T11GT7qcVTgZWuZZNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.450 [XNIO-1 task-1] cyB3T11GT7qcVTgZWuZZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.464 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ccc9d5e +23:10:19.465 [XNIO-1 task-1] 9NFrOkdqSY6Vnv8Ha8TDZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.465 [XNIO-1 task-1] 9NFrOkdqSY6Vnv8Ha8TDZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.465 [XNIO-1 task-1] 9NFrOkdqSY6Vnv8Ha8TDZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.465 [XNIO-1 task-1] 9NFrOkdqSY6Vnv8Ha8TDZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.465 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ccc9d5e +23:10:19.468 [XNIO-1 task-1] 7aVGxRNCRlOXdLcbISP2Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.468 [XNIO-1 task-1] 7aVGxRNCRlOXdLcbISP2Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.468 [XNIO-1 task-1] 7aVGxRNCRlOXdLcbISP2Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.468 [XNIO-1 task-1] 7aVGxRNCRlOXdLcbISP2Lw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.479 [XNIO-1 task-1] FZDp5e0QRp-SI_iB0KY-8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1787bba1 +23:10:19.479 [XNIO-1 task-1] FZDp5e0QRp-SI_iB0KY-8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.479 [XNIO-1 task-1] FZDp5e0QRp-SI_iB0KY-8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.479 [XNIO-1 task-1] FZDp5e0QRp-SI_iB0KY-8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1787bba1 +23:10:19.479 [XNIO-1 task-1] FZDp5e0QRp-SI_iB0KY-8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1787bba1", "1787bba1", userId) +23:10:19.483 [XNIO-1 task-1] KJpjqjD_Sz6Hz5r1Yq-wDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.483 [XNIO-1 task-1] KJpjqjD_Sz6Hz5r1Yq-wDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.484 [XNIO-1 task-1] KJpjqjD_Sz6Hz5r1Yq-wDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.489 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5d849109 +23:10:19.490 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5d849109 +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4351f5d3 +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4351f5d3 +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0baea759-f93c-495e-be03-3de24a411d4b","newPassword":"fc2ce591-4c0f-4eea-a150-2229c37c39bc","newPasswordConfirm":"fc2ce591-4c0f-4eea-a150-2229c37c39bc"}, {"password":"0baea759-f93c-495e-be03-3de24a411d4b","newPassword":"fc2ce591-4c0f-4eea-a150-2229c37c39bc","newPasswordConfirm":"fc2ce591-4c0f-4eea-a150-2229c37c39bc"}, requestBody) +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0baea759-f93c-495e-be03-3de24a411d4b","newPassword":"fc2ce591-4c0f-4eea-a150-2229c37c39bc","newPasswordConfirm":"fc2ce591-4c0f-4eea-a150-2229c37c39bc"}, {"password":"0baea759-f93c-495e-be03-3de24a411d4b","newPassword":"fc2ce591-4c0f-4eea-a150-2229c37c39bc","newPasswordConfirm":"fc2ce591-4c0f-4eea-a150-2229c37c39bc"}, requestBody) +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG com.networknt.schema.FormatValidator debug - validate( "fc2ce591-4c0f-4eea-a150-2229c37c39bc", {"password":"0baea759-f93c-495e-be03-3de24a411d4b","newPassword":"fc2ce591-4c0f-4eea-a150-2229c37c39bc","newPasswordConfirm":"fc2ce591-4c0f-4eea-a150-2229c37c39bc"}, requestBody.newPasswordConfirm) +23:10:19.499 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG com.networknt.schema.FormatValidator debug - validate( "0baea759-f93c-495e-be03-3de24a411d4b", {"password":"0baea759-f93c-495e-be03-3de24a411d4b","newPassword":"fc2ce591-4c0f-4eea-a150-2229c37c39bc","newPasswordConfirm":"fc2ce591-4c0f-4eea-a150-2229c37c39bc"}, requestBody.password) +23:10:19.500 [XNIO-1 task-1] TnVbHezFTwq-XCJg2HPIEw DEBUG com.networknt.schema.FormatValidator debug - validate( "fc2ce591-4c0f-4eea-a150-2229c37c39bc", {"password":"0baea759-f93c-495e-be03-3de24a411d4b","newPassword":"fc2ce591-4c0f-4eea-a150-2229c37c39bc","newPasswordConfirm":"fc2ce591-4c0f-4eea-a150-2229c37c39bc"}, requestBody.newPassword) +23:10:19.525 [XNIO-1 task-1] sbhdOgzuQ3a1-ZVLd347dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.525 [XNIO-1 task-1] sbhdOgzuQ3a1-ZVLd347dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.525 [XNIO-1 task-1] sbhdOgzuQ3a1-ZVLd347dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.541 [XNIO-1 task-1] 8pQoCPjOS5SrTgEWH5siVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.541 [XNIO-1 task-1] 8pQoCPjOS5SrTgEWH5siVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.541 [XNIO-1 task-1] 8pQoCPjOS5SrTgEWH5siVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.542 [XNIO-1 task-1] 8pQoCPjOS5SrTgEWH5siVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.551 [XNIO-1 task-1] dHU84QXlS2aikGBOCV-PGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.551 [XNIO-1 task-1] dHU84QXlS2aikGBOCV-PGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.551 [XNIO-1 task-1] dHU84QXlS2aikGBOCV-PGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.551 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1787bba1 +23:10:19.564 [XNIO-1 task-1] v5Rtni_KQVmZlmPPpfyL8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4351f5d3 +23:10:19.564 [XNIO-1 task-1] v5Rtni_KQVmZlmPPpfyL8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.564 [XNIO-1 task-1] v5Rtni_KQVmZlmPPpfyL8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.564 [XNIO-1 task-1] v5Rtni_KQVmZlmPPpfyL8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4351f5d3 +23:10:19.568 [XNIO-1 task-1] _kkLrBJ-Ts--jDya6nmXQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4351f5d3, base path is set to: null +23:10:19.568 [XNIO-1 task-1] _kkLrBJ-Ts--jDya6nmXQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.568 [XNIO-1 task-1] _kkLrBJ-Ts--jDya6nmXQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.568 [XNIO-1 task-1] _kkLrBJ-Ts--jDya6nmXQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4351f5d3, base path is set to: null +23:10:19.569 [XNIO-1 task-1] _kkLrBJ-Ts--jDya6nmXQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4351f5d3", "4351f5d3", userId) +23:10:19.580 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aa8059a9-016c-42b7-89c7-644041973a57 +23:10:19.581 [XNIO-1 task-1] gA_Uo8aWQsesdab4_Tw9zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.581 [XNIO-1 task-1] gA_Uo8aWQsesdab4_Tw9zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.581 [XNIO-1 task-1] gA_Uo8aWQsesdab4_Tw9zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.581 [XNIO-1 task-1] gA_Uo8aWQsesdab4_Tw9zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.588 [XNIO-1 task-1] CQ-MQiCZRoaMrwWlbaeF2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ab9bacd, base path is set to: null +23:10:19.588 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fc1b1064-5991-42ec-bf94-0384ba4315c5 +23:10:19.588 [XNIO-1 task-1] CQ-MQiCZRoaMrwWlbaeF2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.588 [XNIO-1 task-1] CQ-MQiCZRoaMrwWlbaeF2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.588 [XNIO-1 task-1] CQ-MQiCZRoaMrwWlbaeF2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.589 [XNIO-1 task-1] CQ-MQiCZRoaMrwWlbaeF2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ab9bacd, base path is set to: null +23:10:19.589 [XNIO-1 task-1] CQ-MQiCZRoaMrwWlbaeF2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ab9bacd +23:10:19.589 [XNIO-1 task-1] CQ-MQiCZRoaMrwWlbaeF2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0ab9bacd", "0ab9bacd", userId) +23:10:19.591 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0ab9bacd, base path is set to: null +23:10:19.595 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ab9bacd +23:10:19.595 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.595 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.595 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +23:10:19.595 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +23:10:19.596 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ab9bacd +23:10:19.596 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, requestBody) +23:10:19.596 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, requestBody) +23:10:19.596 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "68843327-6c59-4a54-b8c0-d8db5a998dd8", {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, requestBody.newPasswordConfirm) +23:10:19.596 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "68843327-6c59-4a54-b8c0-d8db5a998dd8", {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, requestBody.newPasswordConfirm) +23:10:19.596 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "73a64c98-96b8-459d-ab4a-ee91afdf5149", {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, requestBody.password) +23:10:19.596 [XNIO-1 task-1] bbAgjpBNQSC6cgqB8j7IQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "73a64c98-96b8-459d-ab4a-ee91afdf5149", {"password":"73a64c98-96b8-459d-ab4a-ee91afdf5149","newPassword":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPasswordConfirm":"68843327-6c59-4a54-b8c0-d8db5a998dd8"}, requestBody.password) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:19.617 [XNIO-1 task-1] uvIqbQLZRnO54JWMlPU_KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.618 [XNIO-1 task-1] uvIqbQLZRnO54JWMlPU_KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.618 [XNIO-1 task-1] uvIqbQLZRnO54JWMlPU_KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.637 [XNIO-1 task-1] lmjsG5SxR1OFHITP0_KucQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.637 [XNIO-1 task-1] lmjsG5SxR1OFHITP0_KucQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.638 [XNIO-1 task-1] lmjsG5SxR1OFHITP0_KucQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.640 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2872df92 +23:10:19.658 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:57f05f3f +23:10:19.659 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:57f05f3f +23:10:19.660 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1787bba1 +23:10:19.660 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.660 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.661 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:19.661 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1787bba1 +23:10:19.661 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPassword":"c1b42ea1-f978-4b78-b23b-0945ee383bb8","newPasswordConfirm":"c1b42ea1-f978-4b78-b23b-0945ee383bb8"}, {"password":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPassword":"c1b42ea1-f978-4b78-b23b-0945ee383bb8","newPasswordConfirm":"c1b42ea1-f978-4b78-b23b-0945ee383bb8"}, requestBody) +23:10:19.661 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPassword":"c1b42ea1-f978-4b78-b23b-0945ee383bb8","newPasswordConfirm":"c1b42ea1-f978-4b78-b23b-0945ee383bb8"}, {"password":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPassword":"c1b42ea1-f978-4b78-b23b-0945ee383bb8","newPasswordConfirm":"c1b42ea1-f978-4b78-b23b-0945ee383bb8"}, requestBody) +23:10:19.661 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG com.networknt.schema.FormatValidator debug - validate( "c1b42ea1-f978-4b78-b23b-0945ee383bb8", {"password":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPassword":"c1b42ea1-f978-4b78-b23b-0945ee383bb8","newPasswordConfirm":"c1b42ea1-f978-4b78-b23b-0945ee383bb8"}, requestBody.newPasswordConfirm) +23:10:19.661 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG com.networknt.schema.FormatValidator debug - validate( "b54b9d08-e2cb-44ed-8c81-aeab3e6a0239", {"password":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPassword":"c1b42ea1-f978-4b78-b23b-0945ee383bb8","newPasswordConfirm":"c1b42ea1-f978-4b78-b23b-0945ee383bb8"}, requestBody.password) +23:10:19.661 [XNIO-1 task-1] LFS07Q5uSTOVPzR1N5LDWg DEBUG com.networknt.schema.FormatValidator debug - validate( "c1b42ea1-f978-4b78-b23b-0945ee383bb8", {"password":"b54b9d08-e2cb-44ed-8c81-aeab3e6a0239","newPassword":"c1b42ea1-f978-4b78-b23b-0945ee383bb8","newPasswordConfirm":"c1b42ea1-f978-4b78-b23b-0945ee383bb8"}, requestBody.newPassword) +23:10:19.671 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1787bba1 +23:10:19.684 [XNIO-1 task-1] jbiXhS7jTxSbUHoKkWszDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.684 [XNIO-1 task-1] jbiXhS7jTxSbUHoKkWszDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.684 [XNIO-1 task-1] jbiXhS7jTxSbUHoKkWszDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.692 [XNIO-1 task-1] 8PMx18sjRhGDHlHZ9yhagw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7000b440 +23:10:19.693 [XNIO-1 task-1] 8PMx18sjRhGDHlHZ9yhagw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.694 [XNIO-1 task-1] 8PMx18sjRhGDHlHZ9yhagw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.694 [XNIO-1 task-1] 8PMx18sjRhGDHlHZ9yhagw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7000b440 +23:10:19.706 [XNIO-1 task-1] 0Ceimvr-TMGPjjCpnOOfig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.707 [XNIO-1 task-1] 0Ceimvr-TMGPjjCpnOOfig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.707 [XNIO-1 task-1] 0Ceimvr-TMGPjjCpnOOfig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.707 [XNIO-1 task-1] 0Ceimvr-TMGPjjCpnOOfig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.712 [XNIO-1 task-1] oekwrQ1GRluKkeo7WOyhfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.712 [XNIO-1 task-1] oekwrQ1GRluKkeo7WOyhfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.712 [XNIO-1 task-1] oekwrQ1GRluKkeo7WOyhfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.712 [XNIO-1 task-1] oekwrQ1GRluKkeo7WOyhfA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.716 [XNIO-1 task-1] CSJ1crZ6SLe9_cQoumiwZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1787bba1, base path is set to: null +23:10:19.716 [XNIO-1 task-1] CSJ1crZ6SLe9_cQoumiwZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.716 [XNIO-1 task-1] CSJ1crZ6SLe9_cQoumiwZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.716 [XNIO-1 task-1] CSJ1crZ6SLe9_cQoumiwZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1787bba1, base path is set to: null +23:10:19.716 [XNIO-1 task-1] CSJ1crZ6SLe9_cQoumiwZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1787bba1", "1787bba1", userId) +23:10:19.724 [XNIO-1 task-1] QGP-lh0jTGiPG8LjkrWsBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.724 [XNIO-1 task-1] QGP-lh0jTGiPG8LjkrWsBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.724 [XNIO-1 task-1] QGP-lh0jTGiPG8LjkrWsBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.741 [XNIO-1 task-1] 7z6Gi1d5SQun9XAoj7R9Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:19.741 [XNIO-1 task-1] 7z6Gi1d5SQun9XAoj7R9Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.742 [XNIO-1 task-1] 7z6Gi1d5SQun9XAoj7R9Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.742 [XNIO-1 task-1] 7z6Gi1d5SQun9XAoj7R9Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/77a43f44, base path is set to: null +23:10:19.742 [XNIO-1 task-1] 7z6Gi1d5SQun9XAoj7R9Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "77a43f44", "77a43f44", userId) +23:10:19.747 [XNIO-1 task-1] pB1fVjJlQEmQG5-XaI_Okg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.747 [XNIO-1 task-1] pB1fVjJlQEmQG5-XaI_Okg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.748 [XNIO-1 task-1] pB1fVjJlQEmQG5-XaI_Okg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.748 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5d849109 +23:10:19.761 [XNIO-1 task-1] AvidBp_GR1mNXIrKRBB_sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/77a43f44 +23:10:19.761 [XNIO-1 task-1] AvidBp_GR1mNXIrKRBB_sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.761 [XNIO-1 task-1] AvidBp_GR1mNXIrKRBB_sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.761 [XNIO-1 task-1] AvidBp_GR1mNXIrKRBB_sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/77a43f44 +23:10:19.768 [XNIO-1 task-1] hWQSWOvFRX6JO2xy1KLWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f20ba5d9, base path is set to: null +23:10:19.768 [XNIO-1 task-1] hWQSWOvFRX6JO2xy1KLWtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.768 [XNIO-1 task-1] hWQSWOvFRX6JO2xy1KLWtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.768 [XNIO-1 task-1] hWQSWOvFRX6JO2xy1KLWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f20ba5d9, base path is set to: null +23:10:19.768 [XNIO-1 task-1] hWQSWOvFRX6JO2xy1KLWtg DEBUG com.networknt.schema.TypeValidator debug - validate( "f20ba5d9", "f20ba5d9", userId) +23:10:19.776 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ab9bacd +23:10:19.776 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.776 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.777 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:19.777 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ab9bacd +23:10:19.777 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPassword":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPasswordConfirm":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae"}, {"password":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPassword":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPasswordConfirm":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae"}, requestBody) +23:10:19.777 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPassword":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPasswordConfirm":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae"}, {"password":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPassword":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPasswordConfirm":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae"}, requestBody) +23:10:19.777 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG com.networknt.schema.FormatValidator debug - validate( "d6bcb0cf-b991-4d1d-9cec-c058e3c818ae", {"password":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPassword":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPasswordConfirm":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae"}, requestBody.newPasswordConfirm) +23:10:19.777 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG com.networknt.schema.FormatValidator debug - validate( "68843327-6c59-4a54-b8c0-d8db5a998dd8", {"password":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPassword":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPasswordConfirm":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae"}, requestBody.password) +23:10:19.777 [XNIO-1 task-1] -bSbKce5QReEEZGvh-7IoA DEBUG com.networknt.schema.FormatValidator debug - validate( "d6bcb0cf-b991-4d1d-9cec-c058e3c818ae", {"password":"68843327-6c59-4a54-b8c0-d8db5a998dd8","newPassword":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPasswordConfirm":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae"}, requestBody.newPassword) +23:10:19.799 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2872df92 +23:10:19.805 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b7aec7ff +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b7aec7ff +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"35644004-11bc-4e4d-a964-07dcfb58a65b","newPassword":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPasswordConfirm":"bd992c84-4300-492a-b4db-e1bd3c4cfc67"}, {"password":"35644004-11bc-4e4d-a964-07dcfb58a65b","newPassword":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPasswordConfirm":"bd992c84-4300-492a-b4db-e1bd3c4cfc67"}, requestBody) +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"35644004-11bc-4e4d-a964-07dcfb58a65b","newPassword":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPasswordConfirm":"bd992c84-4300-492a-b4db-e1bd3c4cfc67"}, {"password":"35644004-11bc-4e4d-a964-07dcfb58a65b","newPassword":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPasswordConfirm":"bd992c84-4300-492a-b4db-e1bd3c4cfc67"}, requestBody) +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG com.networknt.schema.FormatValidator debug - validate( "bd992c84-4300-492a-b4db-e1bd3c4cfc67", {"password":"35644004-11bc-4e4d-a964-07dcfb58a65b","newPassword":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPasswordConfirm":"bd992c84-4300-492a-b4db-e1bd3c4cfc67"}, requestBody.newPasswordConfirm) +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG com.networknt.schema.FormatValidator debug - validate( "35644004-11bc-4e4d-a964-07dcfb58a65b", {"password":"35644004-11bc-4e4d-a964-07dcfb58a65b","newPassword":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPasswordConfirm":"bd992c84-4300-492a-b4db-e1bd3c4cfc67"}, requestBody.password) +23:10:19.806 [XNIO-1 task-1] JKiirtuETq2L4d7qijgfVw DEBUG com.networknt.schema.FormatValidator debug - validate( "bd992c84-4300-492a-b4db-e1bd3c4cfc67", {"password":"35644004-11bc-4e4d-a964-07dcfb58a65b","newPassword":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPasswordConfirm":"bd992c84-4300-492a-b4db-e1bd3c4cfc67"}, requestBody.newPassword) +23:10:19.879 [XNIO-1 task-1] arFtV9-BSuWJ3A19LumQHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.879 [XNIO-1 task-1] arFtV9-BSuWJ3A19LumQHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.879 [XNIO-1 task-1] arFtV9-BSuWJ3A19LumQHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:19.879 [XNIO-1 task-1] arFtV9-BSuWJ3A19LumQHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:19.886 [XNIO-1 task-1] 8UQtsXzDS6eWSjqvWxXoDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5d849109, base path is set to: null +23:10:19.887 [XNIO-1 task-1] 8UQtsXzDS6eWSjqvWxXoDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:19.894 [XNIO-1 task-1] 8UQtsXzDS6eWSjqvWxXoDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:19.894 [XNIO-1 task-1] 8UQtsXzDS6eWSjqvWxXoDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5d849109, base path is set to: null +23:10:19.894 [XNIO-1 task-1] 8UQtsXzDS6eWSjqvWxXoDg DEBUG com.networknt.schema.TypeValidator debug - validate( "5d849109", "5d849109", userId) +23:10:19.897 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:48743583-176b-4655-8212-1cc8b9f9a954 +23:10:19.903 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:48743583-176b-4655-8212-1cc8b9f9a954 +23:10:19.936 [XNIO-1 task-1] Eh3ETUhjSZWZ_y_MfdelhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.936 [XNIO-1 task-1] Eh3ETUhjSZWZ_y_MfdelhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.937 [XNIO-1 task-1] Eh3ETUhjSZWZ_y_MfdelhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.945 [XNIO-1 task-1] kGBiTr_1RI-digqQcFYWUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.945 [XNIO-1 task-1] kGBiTr_1RI-digqQcFYWUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.945 [XNIO-1 task-1] kGBiTr_1RI-digqQcFYWUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.961 [XNIO-1 task-1] jofmkPtgQpyYlWJrNnu8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.961 [XNIO-1 task-1] jofmkPtgQpyYlWJrNnu8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.961 [XNIO-1 task-1] jofmkPtgQpyYlWJrNnu8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.962 [XNIO-1 task-1] jofmkPtgQpyYlWJrNnu8Mg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:19.970 [XNIO-1 task-1] 0MUz00OVS_SuCypQ2A6m_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.970 [XNIO-1 task-1] 0MUz00OVS_SuCypQ2A6m_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.971 [XNIO-1 task-1] 0MUz00OVS_SuCypQ2A6m_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.986 [XNIO-1 task-1] _oJln876R8uF9kkY4QMt8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.986 [XNIO-1 task-1] _oJln876R8uF9kkY4QMt8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.986 [XNIO-1 task-1] _oJln876R8uF9kkY4QMt8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:19.995 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:57f05f3f +23:10:20.010 [XNIO-1 task-1] V4Q84B-nRxWaStiNFDBpHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.012 [XNIO-1 task-1] V4Q84B-nRxWaStiNFDBpHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.012 [XNIO-1 task-1] V4Q84B-nRxWaStiNFDBpHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.020 [XNIO-1 task-1] qgLE2G7tQUaLwyvwUM2hfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.020 [XNIO-1 task-1] qgLE2G7tQUaLwyvwUM2hfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.020 [XNIO-1 task-1] qgLE2G7tQUaLwyvwUM2hfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.033 [XNIO-1 task-1] vZ-SLXTtQ_mJ4eoxSuvphA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.033 [XNIO-1 task-1] vZ-SLXTtQ_mJ4eoxSuvphA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.033 [XNIO-1 task-1] vZ-SLXTtQ_mJ4eoxSuvphA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.045 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.050 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:57f05f3f +23:10:20.051 [XNIO-1 task-1] o9IimW4iRXKV4YrdJzDjUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.051 [XNIO-1 task-1] o9IimW4iRXKV4YrdJzDjUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.051 [XNIO-1 task-1] o9IimW4iRXKV4YrdJzDjUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.091 [XNIO-1 task-1] ObPhh2l3SyiwnTTgjtNaJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/92105124 +23:10:20.091 [XNIO-1 task-1] ObPhh2l3SyiwnTTgjtNaJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.091 [XNIO-1 task-1] ObPhh2l3SyiwnTTgjtNaJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.091 [XNIO-1 task-1] ObPhh2l3SyiwnTTgjtNaJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/92105124 +23:10:20.098 [XNIO-1 task-1] HlVi6ufWTCuuNTAn-aazfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.099 [XNIO-1 task-1] HlVi6ufWTCuuNTAn-aazfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.099 [XNIO-1 task-1] HlVi6ufWTCuuNTAn-aazfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.111 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:48743583-176b-4655-8212-1cc8b9f9a954 +23:10:20.115 [XNIO-1 task-1] JIw4jQ5tQo2z28uLU7v2ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.115 [XNIO-1 task-1] JIw4jQ5tQo2z28uLU7v2ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.115 [XNIO-1 task-1] JIw4jQ5tQo2z28uLU7v2ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.143 [XNIO-1 task-1] F_xqNn4sS3aMb1VpUAiIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.143 [XNIO-1 task-1] F_xqNn4sS3aMb1VpUAiIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.143 [XNIO-1 task-1] F_xqNn4sS3aMb1VpUAiIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.143 [XNIO-1 task-1] F_xqNn4sS3aMb1VpUAiIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.147 [XNIO-1 task-1] jKbZQJk3SnSwUwmvMthJEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.149 [XNIO-1 task-1] jKbZQJk3SnSwUwmvMthJEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.149 [XNIO-1 task-1] jKbZQJk3SnSwUwmvMthJEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.150 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.168 [XNIO-1 task-1] x_E_5jMDR2q6sAUq5efLAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.170 [XNIO-1 task-1] x_E_5jMDR2q6sAUq5efLAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.170 [XNIO-1 task-1] x_E_5jMDR2q6sAUq5efLAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.177 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23862fec +23:10:20.178 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23862fec +23:10:20.196 [XNIO-1 task-1] h7mZNzoqStSmGWrZ5VVX4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.196 [XNIO-1 task-1] h7mZNzoqStSmGWrZ5VVX4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.196 [XNIO-1 task-1] h7mZNzoqStSmGWrZ5VVX4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.196 [XNIO-1 task-1] h7mZNzoqStSmGWrZ5VVX4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.200 [XNIO-1 task-1] r71nvzOfQuau4_cm1yMg4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:20.200 [XNIO-1 task-1] r71nvzOfQuau4_cm1yMg4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.200 [XNIO-1 task-1] r71nvzOfQuau4_cm1yMg4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.200 [XNIO-1 task-1] r71nvzOfQuau4_cm1yMg4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:20.200 [XNIO-1 task-1] r71nvzOfQuau4_cm1yMg4A DEBUG com.networknt.schema.TypeValidator debug - validate( "b7aec7ff", "b7aec7ff", userId) +23:10:20.206 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d20dbbab +23:10:20.206 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.206 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.206 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:20.206 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d20dbbab +23:10:20.207 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0","newPassword":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPasswordConfirm":"050ca88e-45b9-4d90-bac6-e6aaf36607b8"}, {"password":"2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0","newPassword":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPasswordConfirm":"050ca88e-45b9-4d90-bac6-e6aaf36607b8"}, requestBody) +23:10:20.207 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0","newPassword":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPasswordConfirm":"050ca88e-45b9-4d90-bac6-e6aaf36607b8"}, {"password":"2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0","newPassword":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPasswordConfirm":"050ca88e-45b9-4d90-bac6-e6aaf36607b8"}, requestBody) +23:10:20.207 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG com.networknt.schema.FormatValidator debug - validate( "050ca88e-45b9-4d90-bac6-e6aaf36607b8", {"password":"2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0","newPassword":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPasswordConfirm":"050ca88e-45b9-4d90-bac6-e6aaf36607b8"}, requestBody.newPasswordConfirm) +23:10:20.207 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG com.networknt.schema.FormatValidator debug - validate( "2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0", {"password":"2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0","newPassword":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPasswordConfirm":"050ca88e-45b9-4d90-bac6-e6aaf36607b8"}, requestBody.password) +23:10:20.207 [XNIO-1 task-1] _KxUn8DGScKnwtKQBtNqhw DEBUG com.networknt.schema.FormatValidator debug - validate( "050ca88e-45b9-4d90-bac6-e6aaf36607b8", {"password":"2422c4b6-2206-4dd9-a3bd-9fbcb824b0d0","newPassword":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPasswordConfirm":"050ca88e-45b9-4d90-bac6-e6aaf36607b8"}, requestBody.newPassword) +23:10:20.229 [XNIO-1 task-1] 1v9XmUUtQYanpG2Qn1Eh4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b7aec7ff +23:10:20.229 [XNIO-1 task-1] 1v9XmUUtQYanpG2Qn1Eh4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.230 [XNIO-1 task-1] 1v9XmUUtQYanpG2Qn1Eh4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.230 [XNIO-1 task-1] 1v9XmUUtQYanpG2Qn1Eh4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b7aec7ff +23:10:20.237 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0ab9bacd, base path is set to: null +23:10:20.237 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.237 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.237 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:20.237 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0ab9bacd, base path is set to: null +23:10:20.237 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG com.networknt.schema.TypeValidator debug - validate( "0ab9bacd", "0ab9bacd", userId) +23:10:20.237 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPassword":"0f4270af-035e-4dbd-92ee-0808733885b6","newPasswordConfirm":"0f4270af-035e-4dbd-92ee-0808733885b6"}, {"password":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPassword":"0f4270af-035e-4dbd-92ee-0808733885b6","newPasswordConfirm":"0f4270af-035e-4dbd-92ee-0808733885b6"}, requestBody) +23:10:20.238 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4270af-035e-4dbd-92ee-0808733885b6", {"password":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPassword":"0f4270af-035e-4dbd-92ee-0808733885b6","newPasswordConfirm":"0f4270af-035e-4dbd-92ee-0808733885b6"}, requestBody.newPasswordConfirm) +23:10:20.238 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6b5edfa8-b568-4db3-9f4c-a482f8148ca3 +23:10:20.238 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG com.networknt.schema.FormatValidator debug - validate( "d6bcb0cf-b991-4d1d-9cec-c058e3c818ae", {"password":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPassword":"0f4270af-035e-4dbd-92ee-0808733885b6","newPasswordConfirm":"0f4270af-035e-4dbd-92ee-0808733885b6"}, requestBody.password) +23:10:20.238 [XNIO-1 task-1] d1c3BjXAQ5ajfcXFVXubQA DEBUG com.networknt.schema.FormatValidator debug - validate( "0f4270af-035e-4dbd-92ee-0808733885b6", {"password":"d6bcb0cf-b991-4d1d-9cec-c058e3c818ae","newPassword":"0f4270af-035e-4dbd-92ee-0808733885b6","newPasswordConfirm":"0f4270af-035e-4dbd-92ee-0808733885b6"}, requestBody.newPassword) +23:10:20.264 [XNIO-1 task-1] oOO_U3bWTMq74K2cuAVJgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.264 [XNIO-1 task-1] oOO_U3bWTMq74K2cuAVJgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.264 [XNIO-1 task-1] oOO_U3bWTMq74K2cuAVJgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.270 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.290 [XNIO-1 task-1] -7_4AOvvRxGu-mw_VMy2Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.290 [XNIO-1 task-1] -7_4AOvvRxGu-mw_VMy2Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.290 [XNIO-1 task-1] -7_4AOvvRxGu-mw_VMy2Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.290 [XNIO-1 task-1] -7_4AOvvRxGu-mw_VMy2Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.293 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ef3069ea-ff6b-43b9-971f-71feae7b529b +23:10:20.295 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ef3069ea-ff6b-43b9-971f-71feae7b529b +23:10:20.298 [XNIO-1 task-1] 6qS1TUQnQSCFq-hV_f8f-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b7aec7ff +23:10:20.298 [XNIO-1 task-1] 6qS1TUQnQSCFq-hV_f8f-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.299 [XNIO-1 task-1] 6qS1TUQnQSCFq-hV_f8f-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.299 [XNIO-1 task-1] 6qS1TUQnQSCFq-hV_f8f-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b7aec7ff +23:10:20.302 [XNIO-1 task-1] iFbQt_QIQEe0gYGgc_81sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.303 [XNIO-1 task-1] iFbQt_QIQEe0gYGgc_81sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.303 [XNIO-1 task-1] iFbQt_QIQEe0gYGgc_81sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.313 [XNIO-1 task-1] EtixXYXWTIG0HNW9GFj6Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.313 [XNIO-1 task-1] EtixXYXWTIG0HNW9GFj6Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.314 [XNIO-1 task-1] EtixXYXWTIG0HNW9GFj6Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.318 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ef3069ea-ff6b-43b9-971f-71feae7b529b +23:10:20.325 [XNIO-1 task-1] vCWKXUGjSKOqSlfBJLOhIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/31382378 +23:10:20.325 [XNIO-1 task-1] vCWKXUGjSKOqSlfBJLOhIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.325 [XNIO-1 task-1] vCWKXUGjSKOqSlfBJLOhIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.325 [XNIO-1 task-1] vCWKXUGjSKOqSlfBJLOhIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/31382378 +23:10:20.328 [XNIO-1 task-1] GprvHxUATCi80JW8yijSxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.328 [XNIO-1 task-1] GprvHxUATCi80JW8yijSxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.328 [XNIO-1 task-1] GprvHxUATCi80JW8yijSxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.339 [XNIO-1 task-1] F5Z-sgJPSwiLZkpkjg6qzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.339 [XNIO-1 task-1] F5Z-sgJPSwiLZkpkjg6qzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.339 [XNIO-1 task-1] F5Z-sgJPSwiLZkpkjg6qzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.339 [XNIO-1 task-1] F5Z-sgJPSwiLZkpkjg6qzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.342 [XNIO-1 task-1] 9ihG_nx3SrOodON8c6FncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.342 [XNIO-1 task-1] 9ihG_nx3SrOodON8c6FncA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.342 [XNIO-1 task-1] 9ihG_nx3SrOodON8c6FncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.343 [XNIO-1 task-1] 9ihG_nx3SrOodON8c6FncA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.353 [XNIO-1 task-1] nqTnO37PQk6ZUTkLaulnLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.353 [XNIO-1 task-1] nqTnO37PQk6ZUTkLaulnLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.353 [XNIO-1 task-1] nqTnO37PQk6ZUTkLaulnLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.354 [XNIO-1 task-1] nqTnO37PQk6ZUTkLaulnLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.365 [XNIO-1 task-1] fwT2SOKmQ5OpTgc0Tlt9JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.366 [XNIO-1 task-1] fwT2SOKmQ5OpTgc0Tlt9JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.366 [XNIO-1 task-1] fwT2SOKmQ5OpTgc0Tlt9JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.366 [XNIO-1 task-1] fwT2SOKmQ5OpTgc0Tlt9JA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.371 [XNIO-1 task-1] fvIABmsZTJiudVaDN9I7EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.371 [XNIO-1 task-1] fvIABmsZTJiudVaDN9I7EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.371 [XNIO-1 task-1] fvIABmsZTJiudVaDN9I7EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.371 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23862fec +23:10:20.389 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.391 [XNIO-1 task-1] Ic7OIESPRuipz3cwKqroyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.391 [XNIO-1 task-1] Ic7OIESPRuipz3cwKqroyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.391 [XNIO-1 task-1] Ic7OIESPRuipz3cwKqroyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.400 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f15be0e5 +23:10:20.416 [XNIO-1 task-1] Sot6QXOESuC6-7_NA9COAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7910129e, base path is set to: null +23:10:20.417 [XNIO-1 task-1] Sot6QXOESuC6-7_NA9COAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.417 [XNIO-1 task-1] Sot6QXOESuC6-7_NA9COAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.417 [XNIO-1 task-1] Sot6QXOESuC6-7_NA9COAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7910129e, base path is set to: null +23:10:20.417 [XNIO-1 task-1] Sot6QXOESuC6-7_NA9COAA DEBUG com.networknt.schema.TypeValidator debug - validate( "7910129e", "7910129e", userId) +23:10:20.422 [XNIO-1 task-1] 3NOlsDZYRIe75CYtsFN_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7910129e +23:10:20.422 [XNIO-1 task-1] 3NOlsDZYRIe75CYtsFN_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.422 [XNIO-1 task-1] 3NOlsDZYRIe75CYtsFN_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.422 [XNIO-1 task-1] 3NOlsDZYRIe75CYtsFN_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7910129e +23:10:20.430 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1014abaf, base path is set to: null +23:10:20.430 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.430 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.430 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:20.430 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1014abaf, base path is set to: null +23:10:20.430 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "1014abaf", "1014abaf", userId) +23:10:20.430 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7c6031cb-b3de-47c5-9bdf-85a90dd37ebd","newPassword":"54131ab8-7976-4bd1-8996-2783256a417d","newPasswordConfirm":"54131ab8-7976-4bd1-8996-2783256a417d"}, {"password":"7c6031cb-b3de-47c5-9bdf-85a90dd37ebd","newPassword":"54131ab8-7976-4bd1-8996-2783256a417d","newPasswordConfirm":"54131ab8-7976-4bd1-8996-2783256a417d"}, requestBody) +23:10:20.431 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "54131ab8-7976-4bd1-8996-2783256a417d", {"password":"7c6031cb-b3de-47c5-9bdf-85a90dd37ebd","newPassword":"54131ab8-7976-4bd1-8996-2783256a417d","newPasswordConfirm":"54131ab8-7976-4bd1-8996-2783256a417d"}, requestBody.newPasswordConfirm) +23:10:20.431 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c6031cb-b3de-47c5-9bdf-85a90dd37ebd", {"password":"7c6031cb-b3de-47c5-9bdf-85a90dd37ebd","newPassword":"54131ab8-7976-4bd1-8996-2783256a417d","newPasswordConfirm":"54131ab8-7976-4bd1-8996-2783256a417d"}, requestBody.password) +23:10:20.431 [XNIO-1 task-1] Xad5GepzQ7CUbosEQwIIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "54131ab8-7976-4bd1-8996-2783256a417d", {"password":"7c6031cb-b3de-47c5-9bdf-85a90dd37ebd","newPassword":"54131ab8-7976-4bd1-8996-2783256a417d","newPasswordConfirm":"54131ab8-7976-4bd1-8996-2783256a417d"}, requestBody.newPassword) +23:10:20.458 [XNIO-1 task-1] hXvl_lK2Rwq4wnBI2mzgwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.458 [XNIO-1 task-1] hXvl_lK2Rwq4wnBI2mzgwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.458 [XNIO-1 task-1] hXvl_lK2Rwq4wnBI2mzgwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.469 [XNIO-1 task-1] IZkFU0hRSmKTpDzO2AnglA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.469 [XNIO-1 task-1] IZkFU0hRSmKTpDzO2AnglA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.469 [XNIO-1 task-1] IZkFU0hRSmKTpDzO2AnglA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.481 [XNIO-1 task-1] AMtNzWrERbeR9CbYiLtUHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.481 [XNIO-1 task-1] AMtNzWrERbeR9CbYiLtUHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.481 [XNIO-1 task-1] AMtNzWrERbeR9CbYiLtUHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.492 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1014abaf, base path is set to: null +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1014abaf, base path is set to: null +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1014abaf", "1014abaf", userId) +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"54131ab8-7976-4bd1-8996-2783256a417d","newPassword":"e1bfcaac-0df8-453d-9237-85f646d7c9e4","newPasswordConfirm":"e1bfcaac-0df8-453d-9237-85f646d7c9e4"}, {"password":"54131ab8-7976-4bd1-8996-2783256a417d","newPassword":"e1bfcaac-0df8-453d-9237-85f646d7c9e4","newPasswordConfirm":"e1bfcaac-0df8-453d-9237-85f646d7c9e4"}, requestBody) +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1bfcaac-0df8-453d-9237-85f646d7c9e4", {"password":"54131ab8-7976-4bd1-8996-2783256a417d","newPassword":"e1bfcaac-0df8-453d-9237-85f646d7c9e4","newPasswordConfirm":"e1bfcaac-0df8-453d-9237-85f646d7c9e4"}, requestBody.newPasswordConfirm) +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "54131ab8-7976-4bd1-8996-2783256a417d", {"password":"54131ab8-7976-4bd1-8996-2783256a417d","newPassword":"e1bfcaac-0df8-453d-9237-85f646d7c9e4","newPasswordConfirm":"e1bfcaac-0df8-453d-9237-85f646d7c9e4"}, requestBody.password) +23:10:20.493 [XNIO-1 task-1] 0WadI2VeQvSdZP_H6vzZAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1bfcaac-0df8-453d-9237-85f646d7c9e4", {"password":"54131ab8-7976-4bd1-8996-2783256a417d","newPassword":"e1bfcaac-0df8-453d-9237-85f646d7c9e4","newPasswordConfirm":"e1bfcaac-0df8-453d-9237-85f646d7c9e4"}, requestBody.newPassword) +23:10:20.521 [XNIO-1 task-1] 5B77EDS2RpqX73juSQm6TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.522 [XNIO-1 task-1] 5B77EDS2RpqX73juSQm6TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.522 [XNIO-1 task-1] 5B77EDS2RpqX73juSQm6TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.522 [XNIO-1 task-1] 5B77EDS2RpqX73juSQm6TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.525 [XNIO-1 task-1] tThTbc_sSvmdP3FoF9B-Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7910129e, base path is set to: null +23:10:20.525 [XNIO-1 task-1] tThTbc_sSvmdP3FoF9B-Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.525 [XNIO-1 task-1] tThTbc_sSvmdP3FoF9B-Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.525 [XNIO-1 task-1] tThTbc_sSvmdP3FoF9B-Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7910129e, base path is set to: null +23:10:20.525 [XNIO-1 task-1] tThTbc_sSvmdP3FoF9B-Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "7910129e", "7910129e", userId) +23:10:20.540 [XNIO-1 task-1] ub0iqJdEQz6YR0uivdj_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.540 [XNIO-1 task-1] ub0iqJdEQz6YR0uivdj_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.540 [XNIO-1 task-1] ub0iqJdEQz6YR0uivdj_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.548 [XNIO-1 task-1] 0H8S_pqJQKG5RsBSr70DsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/31382378 +23:10:20.548 [XNIO-1 task-1] 0H8S_pqJQKG5RsBSr70DsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.548 [XNIO-1 task-1] 0H8S_pqJQKG5RsBSr70DsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.548 [XNIO-1 task-1] 0H8S_pqJQKG5RsBSr70DsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/31382378 +23:10:20.560 [XNIO-1 task-1] P9p3vDbOTYyWS3Q9rX-fJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ab9bacd, base path is set to: null +23:10:20.560 [XNIO-1 task-1] P9p3vDbOTYyWS3Q9rX-fJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.560 [XNIO-1 task-1] P9p3vDbOTYyWS3Q9rX-fJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.560 [XNIO-1 task-1] P9p3vDbOTYyWS3Q9rX-fJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ab9bacd, base path is set to: null +23:10:20.561 [XNIO-1 task-1] P9p3vDbOTYyWS3Q9rX-fJg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ab9bacd", "0ab9bacd", userId) +23:10:20.579 [XNIO-1 task-1] ViXdFE6WSH2utCFqtDUy5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.579 [XNIO-1 task-1] ViXdFE6WSH2utCFqtDUy5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.579 [XNIO-1 task-1] ViXdFE6WSH2utCFqtDUy5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.585 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:31ecb663 +23:10:20.586 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:31ecb663 +23:10:20.601 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d6fe94b2 +23:10:20.603 [XNIO-1 task-1] VMxaUplAR7SVpbj89gfDzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/849a55ed, base path is set to: null +23:10:20.603 [XNIO-1 task-1] VMxaUplAR7SVpbj89gfDzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.603 [XNIO-1 task-1] VMxaUplAR7SVpbj89gfDzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.603 [XNIO-1 task-1] VMxaUplAR7SVpbj89gfDzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/849a55ed, base path is set to: null +23:10:20.603 [XNIO-1 task-1] VMxaUplAR7SVpbj89gfDzg DEBUG com.networknt.schema.TypeValidator debug - validate( "849a55ed", "849a55ed", userId) +23:10:20.608 [XNIO-1 task-1] 7ex-VthHRQOmbwKTGSX8VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.608 [XNIO-1 task-1] 7ex-VthHRQOmbwKTGSX8VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.608 [XNIO-1 task-1] 7ex-VthHRQOmbwKTGSX8VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.618 [XNIO-1 task-1] ydVYHF7dRQeHbsNqO6T1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/849a55ed +23:10:20.619 [XNIO-1 task-1] ydVYHF7dRQeHbsNqO6T1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.619 [XNIO-1 task-1] ydVYHF7dRQeHbsNqO6T1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.619 [XNIO-1 task-1] ydVYHF7dRQeHbsNqO6T1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/849a55ed +23:10:20.629 [XNIO-1 task-1] uZDvLl59TOypyxinDBkW3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4edbaa69, base path is set to: null +23:10:20.630 [XNIO-1 task-1] uZDvLl59TOypyxinDBkW3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.630 [XNIO-1 task-1] uZDvLl59TOypyxinDBkW3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.630 [XNIO-1 task-1] uZDvLl59TOypyxinDBkW3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4edbaa69, base path is set to: null +23:10:20.630 [XNIO-1 task-1] uZDvLl59TOypyxinDBkW3w DEBUG com.networknt.schema.TypeValidator debug - validate( "4edbaa69", "4edbaa69", userId) +23:10:20.633 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:17c3bb79 +23:10:20.638 [XNIO-1 task-1] AQeqIXKpSTSsZh0t1bEeIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/69cd96f3, base path is set to: null +23:10:20.638 [XNIO-1 task-1] AQeqIXKpSTSsZh0t1bEeIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.638 [XNIO-1 task-1] AQeqIXKpSTSsZh0t1bEeIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.638 [XNIO-1 task-1] AQeqIXKpSTSsZh0t1bEeIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/69cd96f3, base path is set to: null +23:10:20.638 [XNIO-1 task-1] AQeqIXKpSTSsZh0t1bEeIw DEBUG com.networknt.schema.TypeValidator debug - validate( "69cd96f3", "69cd96f3", userId) +23:10:20.650 [XNIO-1 task-1] WD1H3ExrSSy_4nqA8gsqoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.650 [XNIO-1 task-1] WD1H3ExrSSy_4nqA8gsqoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.650 [XNIO-1 task-1] WD1H3ExrSSy_4nqA8gsqoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.650 [XNIO-1 task-1] WD1H3ExrSSy_4nqA8gsqoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.654 [XNIO-1 task-1] kxwLJhjcTueRI4A5DxbB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69cd96f3 +23:10:20.654 [XNIO-1 task-1] kxwLJhjcTueRI4A5DxbB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.654 [XNIO-1 task-1] kxwLJhjcTueRI4A5DxbB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.654 [XNIO-1 task-1] kxwLJhjcTueRI4A5DxbB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69cd96f3 +23:10:20.681 [XNIO-1 task-1] 7AcABkfsQKew0MOiOxmKiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.681 [XNIO-1 task-1] 7AcABkfsQKew0MOiOxmKiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.682 [XNIO-1 task-1] 7AcABkfsQKew0MOiOxmKiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.682 [XNIO-1 task-1] 7AcABkfsQKew0MOiOxmKiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.682 [XNIO-1 task-1] 7AcABkfsQKew0MOiOxmKiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.694 [XNIO-1 task-1] -L2Iz5igT9mTvCxDvAu-ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1014abaf, base path is set to: null +23:10:20.694 [XNIO-1 task-1] -L2Iz5igT9mTvCxDvAu-ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.694 [XNIO-1 task-1] -L2Iz5igT9mTvCxDvAu-ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.694 [XNIO-1 task-1] -L2Iz5igT9mTvCxDvAu-ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1014abaf, base path is set to: null +23:10:20.694 [XNIO-1 task-1] -L2Iz5igT9mTvCxDvAu-ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1014abaf", "1014abaf", userId) +23:10:20.708 [XNIO-1 task-1] SqGMFcfpR72WjJUkGsGZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.708 [XNIO-1 task-1] SqGMFcfpR72WjJUkGsGZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.708 [XNIO-1 task-1] SqGMFcfpR72WjJUkGsGZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.709 [XNIO-1 task-1] SqGMFcfpR72WjJUkGsGZng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.711 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d6fe94b2 +23:10:20.718 [XNIO-1 task-1] _haOFhA2SOWaCW2D6sKWZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.718 [XNIO-1 task-1] _haOFhA2SOWaCW2D6sKWZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.719 [XNIO-1 task-1] _haOFhA2SOWaCW2D6sKWZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.733 [XNIO-1 task-1] 2IfYn_8xQYO15UgikmeiqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:20.733 [XNIO-1 task-1] 2IfYn_8xQYO15UgikmeiqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.733 [XNIO-1 task-1] 2IfYn_8xQYO15UgikmeiqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.733 [XNIO-1 task-1] 2IfYn_8xQYO15UgikmeiqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:20.734 [XNIO-1 task-1] 2IfYn_8xQYO15UgikmeiqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b7aec7ff", "b7aec7ff", userId) +23:10:20.737 [XNIO-1 task-1] kKWuRYhQSeORrLY-JW2n4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/31ecb663 +23:10:20.737 [XNIO-1 task-1] kKWuRYhQSeORrLY-JW2n4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.737 [XNIO-1 task-1] kKWuRYhQSeORrLY-JW2n4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.737 [XNIO-1 task-1] kKWuRYhQSeORrLY-JW2n4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/31ecb663 +23:10:20.737 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:31ecb663 +23:10:20.752 [XNIO-1 task-1] e64ArMWmRAmO3G-E5rHXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.752 [XNIO-1 task-1] e64ArMWmRAmO3G-E5rHXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.752 [XNIO-1 task-1] e64ArMWmRAmO3G-E5rHXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.758 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1ab2ecb3 +23:10:20.765 [XNIO-1 task-1] zSPiGoJHRSyVQIDIP9DqTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:20.765 [XNIO-1 task-1] zSPiGoJHRSyVQIDIP9DqTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.765 [XNIO-1 task-1] zSPiGoJHRSyVQIDIP9DqTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.765 [XNIO-1 task-1] zSPiGoJHRSyVQIDIP9DqTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:20.765 [XNIO-1 task-1] zSPiGoJHRSyVQIDIP9DqTg DEBUG com.networknt.schema.TypeValidator debug - validate( "b7aec7ff", "b7aec7ff", userId) +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d20dbbab +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d20dbbab +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPassword":"8052885b-5606-44dd-80fc-bc97848e508b","newPasswordConfirm":"8052885b-5606-44dd-80fc-bc97848e508b"}, {"password":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPassword":"8052885b-5606-44dd-80fc-bc97848e508b","newPasswordConfirm":"8052885b-5606-44dd-80fc-bc97848e508b"}, requestBody) +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPassword":"8052885b-5606-44dd-80fc-bc97848e508b","newPasswordConfirm":"8052885b-5606-44dd-80fc-bc97848e508b"}, {"password":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPassword":"8052885b-5606-44dd-80fc-bc97848e508b","newPasswordConfirm":"8052885b-5606-44dd-80fc-bc97848e508b"}, requestBody) +23:10:20.772 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG com.networknt.schema.FormatValidator debug - validate( "8052885b-5606-44dd-80fc-bc97848e508b", {"password":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPassword":"8052885b-5606-44dd-80fc-bc97848e508b","newPasswordConfirm":"8052885b-5606-44dd-80fc-bc97848e508b"}, requestBody.newPasswordConfirm) +23:10:20.773 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG com.networknt.schema.FormatValidator debug - validate( "050ca88e-45b9-4d90-bac6-e6aaf36607b8", {"password":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPassword":"8052885b-5606-44dd-80fc-bc97848e508b","newPasswordConfirm":"8052885b-5606-44dd-80fc-bc97848e508b"}, requestBody.password) +23:10:20.773 [XNIO-1 task-1] p3UsPvXORuGi2SF1qK8E0g DEBUG com.networknt.schema.FormatValidator debug - validate( "8052885b-5606-44dd-80fc-bc97848e508b", {"password":"050ca88e-45b9-4d90-bac6-e6aaf36607b8","newPassword":"8052885b-5606-44dd-80fc-bc97848e508b","newPasswordConfirm":"8052885b-5606-44dd-80fc-bc97848e508b"}, requestBody.newPassword) +23:10:20.789 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f15be0e5 +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f15be0e5 +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"de2fbb1e-12fa-4be3-9151-5c024410ee92","newPassword":"19821399-2c0d-4da8-9abd-510208aad9b1","newPasswordConfirm":"19821399-2c0d-4da8-9abd-510208aad9b1"}, {"password":"de2fbb1e-12fa-4be3-9151-5c024410ee92","newPassword":"19821399-2c0d-4da8-9abd-510208aad9b1","newPasswordConfirm":"19821399-2c0d-4da8-9abd-510208aad9b1"}, requestBody) +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"de2fbb1e-12fa-4be3-9151-5c024410ee92","newPassword":"19821399-2c0d-4da8-9abd-510208aad9b1","newPasswordConfirm":"19821399-2c0d-4da8-9abd-510208aad9b1"}, {"password":"de2fbb1e-12fa-4be3-9151-5c024410ee92","newPassword":"19821399-2c0d-4da8-9abd-510208aad9b1","newPasswordConfirm":"19821399-2c0d-4da8-9abd-510208aad9b1"}, requestBody) +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG com.networknt.schema.FormatValidator debug - validate( "19821399-2c0d-4da8-9abd-510208aad9b1", {"password":"de2fbb1e-12fa-4be3-9151-5c024410ee92","newPassword":"19821399-2c0d-4da8-9abd-510208aad9b1","newPasswordConfirm":"19821399-2c0d-4da8-9abd-510208aad9b1"}, requestBody.newPasswordConfirm) +23:10:20.790 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG com.networknt.schema.FormatValidator debug - validate( "de2fbb1e-12fa-4be3-9151-5c024410ee92", {"password":"de2fbb1e-12fa-4be3-9151-5c024410ee92","newPassword":"19821399-2c0d-4da8-9abd-510208aad9b1","newPasswordConfirm":"19821399-2c0d-4da8-9abd-510208aad9b1"}, requestBody.password) +23:10:20.791 [XNIO-1 task-1] TY9lYkiOS4m-4TeyeAK2_A DEBUG com.networknt.schema.FormatValidator debug - validate( "19821399-2c0d-4da8-9abd-510208aad9b1", {"password":"de2fbb1e-12fa-4be3-9151-5c024410ee92","newPassword":"19821399-2c0d-4da8-9abd-510208aad9b1","newPasswordConfirm":"19821399-2c0d-4da8-9abd-510208aad9b1"}, requestBody.newPassword) +23:10:20.800 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f15be0e5 +23:10:20.808 [XNIO-1 task-1] J9lszViiQx-a5P_F6kQgQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.808 [XNIO-1 task-1] J9lszViiQx-a5P_F6kQgQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.808 [XNIO-1 task-1] J9lszViiQx-a5P_F6kQgQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.822 [XNIO-1 task-1] -2im-fibRlSY3qVymxY9iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.822 [XNIO-1 task-1] -2im-fibRlSY3qVymxY9iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.822 [XNIO-1 task-1] -2im-fibRlSY3qVymxY9iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.866 [XNIO-1 task-1] nvGE1ji-TwmKk6DA38ZKmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.866 [XNIO-1 task-1] nvGE1ji-TwmKk6DA38ZKmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.866 [XNIO-1 task-1] nvGE1ji-TwmKk6DA38ZKmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.866 [XNIO-1 task-1] nvGE1ji-TwmKk6DA38ZKmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20dbbab +23:10:20.882 [XNIO-1 task-1] 5Wsx18ohR0OtCkHEiFM_yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.882 [XNIO-1 task-1] 5Wsx18ohR0OtCkHEiFM_yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.882 [XNIO-1 task-1] 5Wsx18ohR0OtCkHEiFM_yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.882 [XNIO-1 task-1] 5Wsx18ohR0OtCkHEiFM_yA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.890 [XNIO-1 task-1] dE5yU0S7Q-6ZA-1SUiDAZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.890 [XNIO-1 task-1] dE5yU0S7Q-6ZA-1SUiDAZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.890 [XNIO-1 task-1] dE5yU0S7Q-6ZA-1SUiDAZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.891 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23862fec +23:10:20.902 [XNIO-1 task-1] uCISARVPRAqR1BPNv3syBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.903 [XNIO-1 task-1] uCISARVPRAqR1BPNv3syBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.903 [XNIO-1 task-1] uCISARVPRAqR1BPNv3syBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.903 [XNIO-1 task-1] uCISARVPRAqR1BPNv3syBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:20.913 [XNIO-1 task-1] nrQTYOiqSkS45tOWbmfkZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f15be0e5, base path is set to: null +23:10:20.913 [XNIO-1 task-1] nrQTYOiqSkS45tOWbmfkZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.914 [XNIO-1 task-1] nrQTYOiqSkS45tOWbmfkZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.914 [XNIO-1 task-1] nrQTYOiqSkS45tOWbmfkZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f15be0e5, base path is set to: null +23:10:20.914 [XNIO-1 task-1] nrQTYOiqSkS45tOWbmfkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f15be0e5", "f15be0e5", userId) +23:10:20.918 [XNIO-1 task-1] 3A3i3qVPQOOrZjXguzMBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.918 [XNIO-1 task-1] 3A3i3qVPQOOrZjXguzMBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.919 [XNIO-1 task-1] 3A3i3qVPQOOrZjXguzMBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.919 [XNIO-1 task-1] 3A3i3qVPQOOrZjXguzMBFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:20.923 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:17c3bb79 +23:10:20.925 [XNIO-1 task-1] HyhiSihaTOWG4hLJwfYlvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.926 [XNIO-1 task-1] HyhiSihaTOWG4hLJwfYlvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.926 [XNIO-1 task-1] HyhiSihaTOWG4hLJwfYlvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.926 [XNIO-1 task-1] HyhiSihaTOWG4hLJwfYlvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.928 [XNIO-1 task-1] 6ihulp2RTpydkWSM2ZwSCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/12ddb23e, base path is set to: null +23:10:20.928 [XNIO-1 task-1] 6ihulp2RTpydkWSM2ZwSCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.928 [XNIO-1 task-1] 6ihulp2RTpydkWSM2ZwSCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.928 [XNIO-1 task-1] 6ihulp2RTpydkWSM2ZwSCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/12ddb23e, base path is set to: null +23:10:20.928 [XNIO-1 task-1] 6ihulp2RTpydkWSM2ZwSCw DEBUG com.networknt.schema.TypeValidator debug - validate( "12ddb23e", "12ddb23e", userId) +23:10:20.939 [XNIO-1 task-1] E1vK2y93QWGq2CF5tUS64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.941 [XNIO-1 task-1] E1vK2y93QWGq2CF5tUS64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.941 [XNIO-1 task-1] E1vK2y93QWGq2CF5tUS64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.941 [XNIO-1 task-1] E1vK2y93QWGq2CF5tUS64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.944 [XNIO-1 task-1] VW2XJeNLT0iZFknMGEnnIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:20.944 [XNIO-1 task-1] VW2XJeNLT0iZFknMGEnnIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.944 [XNIO-1 task-1] VW2XJeNLT0iZFknMGEnnIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:20.944 [XNIO-1 task-1] VW2XJeNLT0iZFknMGEnnIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:20.944 [XNIO-1 task-1] VW2XJeNLT0iZFknMGEnnIw DEBUG com.networknt.schema.TypeValidator debug - validate( "23862fec", "23862fec", userId) +23:10:20.952 [XNIO-1 task-1] _wfFDWu5TUWQvH1YxHwrxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.952 [XNIO-1 task-1] _wfFDWu5TUWQvH1YxHwrxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.952 [XNIO-1 task-1] _wfFDWu5TUWQvH1YxHwrxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.952 [XNIO-1 task-1] _wfFDWu5TUWQvH1YxHwrxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.953 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b7aec7ff +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b7aec7ff +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPassword":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPasswordConfirm":"31a505aa-7d25-404b-98b2-f0155a1670a0"}, {"password":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPassword":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPasswordConfirm":"31a505aa-7d25-404b-98b2-f0155a1670a0"}, requestBody) +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPassword":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPasswordConfirm":"31a505aa-7d25-404b-98b2-f0155a1670a0"}, {"password":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPassword":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPasswordConfirm":"31a505aa-7d25-404b-98b2-f0155a1670a0"}, requestBody) +23:10:20.958 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG com.networknt.schema.FormatValidator debug - validate( "31a505aa-7d25-404b-98b2-f0155a1670a0", {"password":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPassword":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPasswordConfirm":"31a505aa-7d25-404b-98b2-f0155a1670a0"}, requestBody.newPasswordConfirm) +23:10:20.959 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG com.networknt.schema.FormatValidator debug - validate( "bd992c84-4300-492a-b4db-e1bd3c4cfc67", {"password":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPassword":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPasswordConfirm":"31a505aa-7d25-404b-98b2-f0155a1670a0"}, requestBody.password) +23:10:20.959 [XNIO-1 task-1] hLVFMlPuQbS9ngCCU-GuPA DEBUG com.networknt.schema.FormatValidator debug - validate( "31a505aa-7d25-404b-98b2-f0155a1670a0", {"password":"bd992c84-4300-492a-b4db-e1bd3c4cfc67","newPassword":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPasswordConfirm":"31a505aa-7d25-404b-98b2-f0155a1670a0"}, requestBody.newPassword) +23:10:20.978 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:011ecb81-353a-404e-8f0f-fcbef48ccb68 +23:10:20.984 [XNIO-1 task-1] hMdrBff7QJ-C6x476DZ_gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.984 [XNIO-1 task-1] hMdrBff7QJ-C6x476DZ_gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:20.984 [XNIO-1 task-1] hMdrBff7QJ-C6x476DZ_gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:20.984 [XNIO-1 task-1] hMdrBff7QJ-C6x476DZ_gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:20.992 [XNIO-1 task-1] Qrrn4f1ZRE-OqU9v1JiMaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:20.992 [XNIO-1 task-1] Qrrn4f1ZRE-OqU9v1JiMaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:20.992 [XNIO-1 task-1] Qrrn4f1ZRE-OqU9v1JiMaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.002 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/23862fec, base path is set to: null +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/23862fec, base path is set to: null +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG com.networknt.schema.TypeValidator debug - validate( "23862fec", "23862fec", userId) +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"47c15062-0ede-4d14-aa13-56de8e2ffcc2","newPassword":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPasswordConfirm":"5a355342-72a8-4477-b1a8-f44a1e99a1b6"}, {"password":"47c15062-0ede-4d14-aa13-56de8e2ffcc2","newPassword":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPasswordConfirm":"5a355342-72a8-4477-b1a8-f44a1e99a1b6"}, requestBody) +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a355342-72a8-4477-b1a8-f44a1e99a1b6", {"password":"47c15062-0ede-4d14-aa13-56de8e2ffcc2","newPassword":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPasswordConfirm":"5a355342-72a8-4477-b1a8-f44a1e99a1b6"}, requestBody.newPasswordConfirm) +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG com.networknt.schema.TypeValidator debug - validate( "47c15062-0ede-4d14-aa13-56de8e2ffcc2", {"password":"47c15062-0ede-4d14-aa13-56de8e2ffcc2","newPassword":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPasswordConfirm":"5a355342-72a8-4477-b1a8-f44a1e99a1b6"}, requestBody.password) +23:10:21.003 [XNIO-1 task-1] JNOtdq_rTbao2Zauudeigg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a355342-72a8-4477-b1a8-f44a1e99a1b6", {"password":"47c15062-0ede-4d14-aa13-56de8e2ffcc2","newPassword":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPasswordConfirm":"5a355342-72a8-4477-b1a8-f44a1e99a1b6"}, requestBody.newPassword) +23:10:21.013 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23862fec +23:10:21.025 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b7aec7ff, base path is set to: null +23:10:21.025 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.025 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.025 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:21.025 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b7aec7ff, base path is set to: null +23:10:21.026 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b7aec7ff", "b7aec7ff", userId) +23:10:21.026 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPassword":"e4b46380-6181-4231-890a-7332d8b64c80","newPasswordConfirm":"e4b46380-6181-4231-890a-7332d8b64c80"}, {"password":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPassword":"e4b46380-6181-4231-890a-7332d8b64c80","newPasswordConfirm":"e4b46380-6181-4231-890a-7332d8b64c80"}, requestBody) +23:10:21.026 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4b46380-6181-4231-890a-7332d8b64c80", {"password":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPassword":"e4b46380-6181-4231-890a-7332d8b64c80","newPasswordConfirm":"e4b46380-6181-4231-890a-7332d8b64c80"}, requestBody.newPasswordConfirm) +23:10:21.026 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "31a505aa-7d25-404b-98b2-f0155a1670a0", {"password":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPassword":"e4b46380-6181-4231-890a-7332d8b64c80","newPasswordConfirm":"e4b46380-6181-4231-890a-7332d8b64c80"}, requestBody.password) +23:10:21.026 [XNIO-1 task-1] mWkCEAcaRQSnx_N4EKZIyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4b46380-6181-4231-890a-7332d8b64c80", {"password":"31a505aa-7d25-404b-98b2-f0155a1670a0","newPassword":"e4b46380-6181-4231-890a-7332d8b64c80","newPasswordConfirm":"e4b46380-6181-4231-890a-7332d8b64c80"}, requestBody.newPassword) +23:10:21.048 [XNIO-1 task-1] XGzaoGSRQomFUyaQNUwpdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.048 [XNIO-1 task-1] XGzaoGSRQomFUyaQNUwpdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.049 [XNIO-1 task-1] XGzaoGSRQomFUyaQNUwpdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.049 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23862fec +23:10:21.057 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b7aec7ff, base path is set to: null +23:10:21.057 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.057 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.057 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:21.058 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b7aec7ff, base path is set to: null +23:10:21.058 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG com.networknt.schema.TypeValidator debug - validate( "b7aec7ff", "b7aec7ff", userId) +23:10:21.058 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e4b46380-6181-4231-890a-7332d8b64c80","newPassword":"8fd4aaba-cde8-46e8-8e36-d12c35b38723","newPasswordConfirm":"8fd4aaba-cde8-46e8-8e36-d12c35b38723"}, {"password":"e4b46380-6181-4231-890a-7332d8b64c80","newPassword":"8fd4aaba-cde8-46e8-8e36-d12c35b38723","newPasswordConfirm":"8fd4aaba-cde8-46e8-8e36-d12c35b38723"}, requestBody) +23:10:21.058 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG com.networknt.schema.TypeValidator debug - validate( "8fd4aaba-cde8-46e8-8e36-d12c35b38723", {"password":"e4b46380-6181-4231-890a-7332d8b64c80","newPassword":"8fd4aaba-cde8-46e8-8e36-d12c35b38723","newPasswordConfirm":"8fd4aaba-cde8-46e8-8e36-d12c35b38723"}, requestBody.newPasswordConfirm) +23:10:21.058 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG com.networknt.schema.TypeValidator debug - validate( "e4b46380-6181-4231-890a-7332d8b64c80", {"password":"e4b46380-6181-4231-890a-7332d8b64c80","newPassword":"8fd4aaba-cde8-46e8-8e36-d12c35b38723","newPasswordConfirm":"8fd4aaba-cde8-46e8-8e36-d12c35b38723"}, requestBody.password) +23:10:21.058 [XNIO-1 task-1] I1QnyII6ST2paIBFphFRZA DEBUG com.networknt.schema.TypeValidator debug - validate( "8fd4aaba-cde8-46e8-8e36-d12c35b38723", {"password":"e4b46380-6181-4231-890a-7332d8b64c80","newPassword":"8fd4aaba-cde8-46e8-8e36-d12c35b38723","newPasswordConfirm":"8fd4aaba-cde8-46e8-8e36-d12c35b38723"}, requestBody.newPassword) +23:10:21.079 [XNIO-1 task-1] OUxkTc_LSCyrpVjnODNcdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.079 [XNIO-1 task-1] OUxkTc_LSCyrpVjnODNcdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.079 [XNIO-1 task-1] OUxkTc_LSCyrpVjnODNcdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.091 [XNIO-1 task-1] pfm40g1YRRe2NrqMD3aadQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.091 [XNIO-1 task-1] pfm40g1YRRe2NrqMD3aadQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.092 [XNIO-1 task-1] pfm40g1YRRe2NrqMD3aadQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.092 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f15be0e5 +23:10:21.105 [XNIO-1 task-1] XpKM2Ut2ROe8vUG0G2IXew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.105 [XNIO-1 task-1] XpKM2Ut2ROe8vUG0G2IXew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.105 [XNIO-1 task-1] XpKM2Ut2ROe8vUG0G2IXew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.105 [XNIO-1 task-1] XpKM2Ut2ROe8vUG0G2IXew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.113 [XNIO-1 task-1] BQbkGk62RVy1XWRY9vC73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/af2e8ee8, base path is set to: null +23:10:21.113 [XNIO-1 task-1] BQbkGk62RVy1XWRY9vC73g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.113 [XNIO-1 task-1] BQbkGk62RVy1XWRY9vC73g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.113 [XNIO-1 task-1] BQbkGk62RVy1XWRY9vC73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/af2e8ee8, base path is set to: null +23:10:21.113 [XNIO-1 task-1] BQbkGk62RVy1XWRY9vC73g DEBUG com.networknt.schema.TypeValidator debug - validate( "af2e8ee8", "af2e8ee8", userId) +23:10:21.120 [XNIO-1 task-1] rEcXEE86SEGIKM29Vz6nUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.120 [XNIO-1 task-1] rEcXEE86SEGIKM29Vz6nUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.120 [XNIO-1 task-1] rEcXEE86SEGIKM29Vz6nUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.132 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5cda2061 +23:10:21.136 [XNIO-1 task-1] OGOUL8U6R9OKwRPm4zIhMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.137 [XNIO-1 task-1] OGOUL8U6R9OKwRPm4zIhMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.137 [XNIO-1 task-1] OGOUL8U6R9OKwRPm4zIhMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.147 [XNIO-1 task-1] fvkJTRqqQla0hz3srPWRWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ab2ecb3, base path is set to: null +23:10:21.147 [XNIO-1 task-1] fvkJTRqqQla0hz3srPWRWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.147 [XNIO-1 task-1] fvkJTRqqQla0hz3srPWRWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.148 [XNIO-1 task-1] fvkJTRqqQla0hz3srPWRWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ab2ecb3, base path is set to: null +23:10:21.148 [XNIO-1 task-1] fvkJTRqqQla0hz3srPWRWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1ab2ecb3", "1ab2ecb3", userId) +23:10:21.150 [XNIO-1 task-1] G837KayfR2OyChNMhx1WRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.150 [XNIO-1 task-1] G837KayfR2OyChNMhx1WRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.150 [XNIO-1 task-1] G837KayfR2OyChNMhx1WRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.150 [XNIO-1 task-1] G837KayfR2OyChNMhx1WRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.160 [XNIO-1 task-1] XrcHf9VQSL--k2eqb9_4Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.160 [XNIO-1 task-1] XrcHf9VQSL--k2eqb9_4Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.160 [XNIO-1 task-1] XrcHf9VQSL--k2eqb9_4Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.160 [XNIO-1 task-1] XrcHf9VQSL--k2eqb9_4Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.163 [XNIO-1 task-1] 1k7fd-SzQ5abPM68lhHM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.163 [XNIO-1 task-1] 1k7fd-SzQ5abPM68lhHM0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.163 [XNIO-1 task-1] 1k7fd-SzQ5abPM68lhHM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.197 [XNIO-1 task-1] OXAowyVoSVOaHaeeQL1ifg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.197 [XNIO-1 task-1] OXAowyVoSVOaHaeeQL1ifg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.197 [XNIO-1 task-1] OXAowyVoSVOaHaeeQL1ifg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +Jun 28, 2024 11:10:21 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:21.205 [XNIO-1 task-1] w2sKFcDUQM28ETEM3QnENQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + +23:10:21.205 [XNIO-1 task-1] w2sKFcDUQM28ETEM3QnENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.205 [XNIO-1 task-1] w2sKFcDUQM28ETEM3QnENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.205 [XNIO-1 task-1] w2sKFcDUQM28ETEM3QnENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.223 [XNIO-1 task-1] U9KnRT1MTja_RmClg8PkXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.223 [XNIO-1 task-1] U9KnRT1MTja_RmClg8PkXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.223 [XNIO-1 task-1] U9KnRT1MTja_RmClg8PkXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.239 [XNIO-1 task-1] Nex_qPpLQhOHOufh_cZ8ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1ab2ecb3 +23:10:21.239 [XNIO-1 task-1] Nex_qPpLQhOHOufh_cZ8ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.239 [XNIO-1 task-1] Nex_qPpLQhOHOufh_cZ8ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.239 [XNIO-1 task-1] Nex_qPpLQhOHOufh_cZ8ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1ab2ecb3 +23:10:21.246 [XNIO-1 task-1] NbdED75zSfKDU7Gtr8pnpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ab2ecb3, base path is set to: null +23:10:21.246 [XNIO-1 task-1] NbdED75zSfKDU7Gtr8pnpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.246 [XNIO-1 task-1] NbdED75zSfKDU7Gtr8pnpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.247 [XNIO-1 task-1] NbdED75zSfKDU7Gtr8pnpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ab2ecb3, base path is set to: null +23:10:21.247 [XNIO-1 task-1] NbdED75zSfKDU7Gtr8pnpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1ab2ecb3", "1ab2ecb3", userId) +23:10:21.255 [XNIO-1 task-1] IW8qlS40QlWdlZ8au5C2KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.255 [XNIO-1 task-1] IW8qlS40QlWdlZ8au5C2KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.255 [XNIO-1 task-1] IW8qlS40QlWdlZ8au5C2KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.274 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d72b11e2, base path is set to: null +23:10:21.274 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.274 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.274 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:21.274 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d72b11e2, base path is set to: null +23:10:21.274 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG com.networknt.schema.TypeValidator debug - validate( "d72b11e2", "d72b11e2", userId) +23:10:21.274 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"994de59a-c15b-4196-856a-4b722932e048","newPassword":"18c75940-912f-44a4-b414-7879fa46c6a9","newPasswordConfirm":"18c75940-912f-44a4-b414-7879fa46c6a9"}, {"password":"994de59a-c15b-4196-856a-4b722932e048","newPassword":"18c75940-912f-44a4-b414-7879fa46c6a9","newPasswordConfirm":"18c75940-912f-44a4-b414-7879fa46c6a9"}, requestBody) +23:10:21.275 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG com.networknt.schema.TypeValidator debug - validate( "18c75940-912f-44a4-b414-7879fa46c6a9", {"password":"994de59a-c15b-4196-856a-4b722932e048","newPassword":"18c75940-912f-44a4-b414-7879fa46c6a9","newPasswordConfirm":"18c75940-912f-44a4-b414-7879fa46c6a9"}, requestBody.newPasswordConfirm) +23:10:21.275 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG com.networknt.schema.TypeValidator debug - validate( "994de59a-c15b-4196-856a-4b722932e048", {"password":"994de59a-c15b-4196-856a-4b722932e048","newPassword":"18c75940-912f-44a4-b414-7879fa46c6a9","newPasswordConfirm":"18c75940-912f-44a4-b414-7879fa46c6a9"}, requestBody.password) +23:10:21.275 [XNIO-1 task-1] odlpdHvATgSSpBjlW1ULLg DEBUG com.networknt.schema.TypeValidator debug - validate( "18c75940-912f-44a4-b414-7879fa46c6a9", {"password":"994de59a-c15b-4196-856a-4b722932e048","newPassword":"18c75940-912f-44a4-b414-7879fa46c6a9","newPasswordConfirm":"18c75940-912f-44a4-b414-7879fa46c6a9"}, requestBody.newPassword) +23:10:21.294 [XNIO-1 task-1] oQq9iKeyRM-cJKrfvEdETg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.295 [XNIO-1 task-1] oQq9iKeyRM-cJKrfvEdETg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.295 [XNIO-1 task-1] oQq9iKeyRM-cJKrfvEdETg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.307 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9e8d4db7, base path is set to: null +23:10:21.307 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9e8d4db7, base path is set to: null +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG com.networknt.schema.TypeValidator debug - validate( "9e8d4db7", "9e8d4db7", userId) +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"439dca37-44b0-48a5-a8f5-88f738c3a4ba","newPassword":"dfc870f8-2256-4a78-a811-efd63a97d419","newPasswordConfirm":"dfc870f8-2256-4a78-a811-efd63a97d419"}, {"password":"439dca37-44b0-48a5-a8f5-88f738c3a4ba","newPassword":"dfc870f8-2256-4a78-a811-efd63a97d419","newPasswordConfirm":"dfc870f8-2256-4a78-a811-efd63a97d419"}, requestBody) +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG com.networknt.schema.TypeValidator debug - validate( "dfc870f8-2256-4a78-a811-efd63a97d419", {"password":"439dca37-44b0-48a5-a8f5-88f738c3a4ba","newPassword":"dfc870f8-2256-4a78-a811-efd63a97d419","newPasswordConfirm":"dfc870f8-2256-4a78-a811-efd63a97d419"}, requestBody.newPasswordConfirm) +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG com.networknt.schema.TypeValidator debug - validate( "439dca37-44b0-48a5-a8f5-88f738c3a4ba", {"password":"439dca37-44b0-48a5-a8f5-88f738c3a4ba","newPassword":"dfc870f8-2256-4a78-a811-efd63a97d419","newPasswordConfirm":"dfc870f8-2256-4a78-a811-efd63a97d419"}, requestBody.password) +23:10:21.308 [XNIO-1 task-1] TAyaVe-uQEuzG5LOWndF6w DEBUG com.networknt.schema.TypeValidator debug - validate( "dfc870f8-2256-4a78-a811-efd63a97d419", {"password":"439dca37-44b0-48a5-a8f5-88f738c3a4ba","newPassword":"dfc870f8-2256-4a78-a811-efd63a97d419","newPasswordConfirm":"dfc870f8-2256-4a78-a811-efd63a97d419"}, requestBody.newPassword) +23:10:21.328 [XNIO-1 task-1] znr-YdwlQzqOWCU9xHoKPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9e8d4db7, base path is set to: null +23:10:21.328 [XNIO-1 task-1] znr-YdwlQzqOWCU9xHoKPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.328 [XNIO-1 task-1] znr-YdwlQzqOWCU9xHoKPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.328 [XNIO-1 task-1] znr-YdwlQzqOWCU9xHoKPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9e8d4db7, base path is set to: null +23:10:21.328 [XNIO-1 task-1] znr-YdwlQzqOWCU9xHoKPA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e8d4db7", "9e8d4db7", userId) +23:10:21.332 [XNIO-1 task-1] W65wlUFBRGaDWjv-z6Z2-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/af2e8ee8 +23:10:21.332 [XNIO-1 task-1] W65wlUFBRGaDWjv-z6Z2-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.332 [XNIO-1 task-1] W65wlUFBRGaDWjv-z6Z2-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.333 [XNIO-1 task-1] W65wlUFBRGaDWjv-z6Z2-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/af2e8ee8, base path is set to: null +23:10:21.333 [XNIO-1 task-1] W65wlUFBRGaDWjv-z6Z2-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/af2e8ee8 +23:10:21.333 [XNIO-1 task-1] W65wlUFBRGaDWjv-z6Z2-w DEBUG com.networknt.schema.TypeValidator debug - validate( "af2e8ee8", "af2e8ee8", userId) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:21.349 [XNIO-1 task-1] DbJpEmYqQO2umxXLGk0yUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:21.349 [XNIO-1 task-1] DbJpEmYqQO2umxXLGk0yUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.349 [XNIO-1 task-1] DbJpEmYqQO2umxXLGk0yUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.349 [XNIO-1 task-1] DbJpEmYqQO2umxXLGk0yUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7aec7ff, base path is set to: null +23:10:21.349 [XNIO-1 task-1] DbJpEmYqQO2umxXLGk0yUw DEBUG com.networknt.schema.TypeValidator debug - validate( "b7aec7ff", "b7aec7ff", userId) +23:10:21.350 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dd5549b5-d5c3-440f-8b67-38ea95552be4 +23:10:21.360 [XNIO-1 task-1] 90tLXkq8QJub17jBIwKDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f15be0e5 +23:10:21.360 [XNIO-1 task-1] 90tLXkq8QJub17jBIwKDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.360 [XNIO-1 task-1] 90tLXkq8QJub17jBIwKDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.360 [XNIO-1 task-1] 90tLXkq8QJub17jBIwKDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f15be0e5 +23:10:21.366 [XNIO-1 task-1] 5Pi7HbADTbi7jqQKX-MvnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.366 [XNIO-1 task-1] 5Pi7HbADTbi7jqQKX-MvnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.366 [XNIO-1 task-1] 5Pi7HbADTbi7jqQKX-MvnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.366 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f15be0e5 +23:10:21.374 [XNIO-1 task-1] PidFQWLxQLyUECd8K7rYCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9e8d4db7, base path is set to: null +23:10:21.374 [XNIO-1 task-1] PidFQWLxQLyUECd8K7rYCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.374 [XNIO-1 task-1] PidFQWLxQLyUECd8K7rYCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.374 [XNIO-1 task-1] PidFQWLxQLyUECd8K7rYCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9e8d4db7, base path is set to: null +23:10:21.374 [XNIO-1 task-1] PidFQWLxQLyUECd8K7rYCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e8d4db7", "9e8d4db7", userId) +23:10:21.385 [XNIO-1 task-1] j_P0F_6ZSqeismLj5WT9pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9e8d4db7, base path is set to: null +23:10:21.385 [XNIO-1 task-1] j_P0F_6ZSqeismLj5WT9pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.385 [XNIO-1 task-1] j_P0F_6ZSqeismLj5WT9pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.385 [XNIO-1 task-1] j_P0F_6ZSqeismLj5WT9pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9e8d4db7, base path is set to: null +23:10:21.385 [XNIO-1 task-1] j_P0F_6ZSqeismLj5WT9pg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e8d4db7", "9e8d4db7", userId) +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPassword":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPasswordConfirm":"d734a6a5-a85b-4e6d-9ca7-46926da975a9"}, {"password":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPassword":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPasswordConfirm":"d734a6a5-a85b-4e6d-9ca7-46926da975a9"}, requestBody) +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPassword":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPasswordConfirm":"d734a6a5-a85b-4e6d-9ca7-46926da975a9"}, {"password":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPassword":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPasswordConfirm":"d734a6a5-a85b-4e6d-9ca7-46926da975a9"}, requestBody) +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG com.networknt.schema.FormatValidator debug - validate( "d734a6a5-a85b-4e6d-9ca7-46926da975a9", {"password":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPassword":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPasswordConfirm":"d734a6a5-a85b-4e6d-9ca7-46926da975a9"}, requestBody.newPasswordConfirm) +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG com.networknt.schema.FormatValidator debug - validate( "5a355342-72a8-4477-b1a8-f44a1e99a1b6", {"password":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPassword":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPasswordConfirm":"d734a6a5-a85b-4e6d-9ca7-46926da975a9"}, requestBody.password) +23:10:21.399 [XNIO-1 task-1] EUZ3f5L7TGWJ5ygyQk4uCw DEBUG com.networknt.schema.FormatValidator debug - validate( "d734a6a5-a85b-4e6d-9ca7-46926da975a9", {"password":"5a355342-72a8-4477-b1a8-f44a1e99a1b6","newPassword":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPasswordConfirm":"d734a6a5-a85b-4e6d-9ca7-46926da975a9"}, requestBody.newPassword) +23:10:21.409 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23862fec +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPassword":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPasswordConfirm":"fcde2c2d-bd05-4776-8694-cef779fca84a"}, {"password":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPassword":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPasswordConfirm":"fcde2c2d-bd05-4776-8694-cef779fca84a"}, requestBody) +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPassword":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPasswordConfirm":"fcde2c2d-bd05-4776-8694-cef779fca84a"}, {"password":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPassword":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPasswordConfirm":"fcde2c2d-bd05-4776-8694-cef779fca84a"}, requestBody) +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "fcde2c2d-bd05-4776-8694-cef779fca84a", {"password":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPassword":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPasswordConfirm":"fcde2c2d-bd05-4776-8694-cef779fca84a"}, requestBody.newPasswordConfirm) +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d734a6a5-a85b-4e6d-9ca7-46926da975a9", {"password":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPassword":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPasswordConfirm":"fcde2c2d-bd05-4776-8694-cef779fca84a"}, requestBody.password) +23:10:21.425 [XNIO-1 task-1] xQ-Q7uQJTSen5NXeiNAQwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "fcde2c2d-bd05-4776-8694-cef779fca84a", {"password":"d734a6a5-a85b-4e6d-9ca7-46926da975a9","newPassword":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPasswordConfirm":"fcde2c2d-bd05-4776-8694-cef779fca84a"}, requestBody.newPassword) +23:10:21.437 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23862fec +23:10:21.458 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.458 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.458 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.458 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:21.458 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.458 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPassword":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPasswordConfirm":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6"}, {"password":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPassword":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPasswordConfirm":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6"}, requestBody) +23:10:21.459 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPassword":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPasswordConfirm":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6"}, {"password":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPassword":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPasswordConfirm":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6"}, requestBody) +23:10:21.459 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG com.networknt.schema.FormatValidator debug - validate( "8ef7dd87-fda0-4500-9548-c4ad95ec26f6", {"password":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPassword":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPasswordConfirm":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6"}, requestBody.newPasswordConfirm) +23:10:21.459 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG com.networknt.schema.FormatValidator debug - validate( "fcde2c2d-bd05-4776-8694-cef779fca84a", {"password":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPassword":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPasswordConfirm":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6"}, requestBody.password) +23:10:21.459 [XNIO-1 task-1] U2I2KVHaRXOQ_5CbH_wsTw DEBUG com.networknt.schema.FormatValidator debug - validate( "8ef7dd87-fda0-4500-9548-c4ad95ec26f6", {"password":"fcde2c2d-bd05-4776-8694-cef779fca84a","newPassword":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPasswordConfirm":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6"}, requestBody.newPassword) +23:10:21.467 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:17c3bb79 +23:10:21.468 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23862fec +23:10:21.481 [XNIO-1 task-1] m39oTp4OT_etmkgEGmXZmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.481 [XNIO-1 task-1] m39oTp4OT_etmkgEGmXZmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.481 [XNIO-1 task-1] m39oTp4OT_etmkgEGmXZmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.501 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:08014c68-5def-4bc1-b3c6-befc4b474f50 +23:10:21.509 [XNIO-1 task-1] A7j3cjPeSEm579D0oFqhmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.509 [XNIO-1 task-1] A7j3cjPeSEm579D0oFqhmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.509 [XNIO-1 task-1] A7j3cjPeSEm579D0oFqhmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.510 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23862fec +23:10:21.530 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/23862fec, base path is set to: null +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/23862fec, base path is set to: null +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG com.networknt.schema.TypeValidator debug - validate( "23862fec", "23862fec", userId) +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPassword":"19fdef96-3502-4f85-a5db-c3747af99ade","newPasswordConfirm":"19fdef96-3502-4f85-a5db-c3747af99ade"}, {"password":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPassword":"19fdef96-3502-4f85-a5db-c3747af99ade","newPasswordConfirm":"19fdef96-3502-4f85-a5db-c3747af99ade"}, requestBody) +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG com.networknt.schema.TypeValidator debug - validate( "19fdef96-3502-4f85-a5db-c3747af99ade", {"password":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPassword":"19fdef96-3502-4f85-a5db-c3747af99ade","newPasswordConfirm":"19fdef96-3502-4f85-a5db-c3747af99ade"}, requestBody.newPasswordConfirm) +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG com.networknt.schema.TypeValidator debug - validate( "8ef7dd87-fda0-4500-9548-c4ad95ec26f6", {"password":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPassword":"19fdef96-3502-4f85-a5db-c3747af99ade","newPasswordConfirm":"19fdef96-3502-4f85-a5db-c3747af99ade"}, requestBody.password) +23:10:21.531 [XNIO-1 task-1] 2Eclc7OkR_O9mUJtC1jKSA DEBUG com.networknt.schema.TypeValidator debug - validate( "19fdef96-3502-4f85-a5db-c3747af99ade", {"password":"8ef7dd87-fda0-4500-9548-c4ad95ec26f6","newPassword":"19fdef96-3502-4f85-a5db-c3747af99ade","newPasswordConfirm":"19fdef96-3502-4f85-a5db-c3747af99ade"}, requestBody.newPassword) +23:10:21.541 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23862fec +23:10:21.554 [XNIO-1 task-1] sgg6h5M5QaWcNs3B4OXXyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:21.554 [XNIO-1 task-1] sgg6h5M5QaWcNs3B4OXXyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.554 [XNIO-1 task-1] sgg6h5M5QaWcNs3B4OXXyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.554 [XNIO-1 task-1] sgg6h5M5QaWcNs3B4OXXyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:21.554 [XNIO-1 task-1] sgg6h5M5QaWcNs3B4OXXyg DEBUG com.networknt.schema.TypeValidator debug - validate( "23862fec", "23862fec", userId) +23:10:21.558 [XNIO-1 task-1] 0G7NbiV7SK6tluk7tBDDmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.558 [XNIO-1 task-1] 0G7NbiV7SK6tluk7tBDDmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.558 [XNIO-1 task-1] 0G7NbiV7SK6tluk7tBDDmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.558 [XNIO-1 task-1] 0G7NbiV7SK6tluk7tBDDmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.563 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.563 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.563 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.563 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:21.563 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/23862fec +23:10:21.564 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"19fdef96-3502-4f85-a5db-c3747af99ade","newPassword":"fd701288-9221-4e60-9558-69d9bc8c53fb","newPasswordConfirm":"fd701288-9221-4e60-9558-69d9bc8c53fb"}, {"password":"19fdef96-3502-4f85-a5db-c3747af99ade","newPassword":"fd701288-9221-4e60-9558-69d9bc8c53fb","newPasswordConfirm":"fd701288-9221-4e60-9558-69d9bc8c53fb"}, requestBody) +23:10:21.564 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"19fdef96-3502-4f85-a5db-c3747af99ade","newPassword":"fd701288-9221-4e60-9558-69d9bc8c53fb","newPasswordConfirm":"fd701288-9221-4e60-9558-69d9bc8c53fb"}, {"password":"19fdef96-3502-4f85-a5db-c3747af99ade","newPassword":"fd701288-9221-4e60-9558-69d9bc8c53fb","newPasswordConfirm":"fd701288-9221-4e60-9558-69d9bc8c53fb"}, requestBody) +23:10:21.564 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG com.networknt.schema.FormatValidator debug - validate( "fd701288-9221-4e60-9558-69d9bc8c53fb", {"password":"19fdef96-3502-4f85-a5db-c3747af99ade","newPassword":"fd701288-9221-4e60-9558-69d9bc8c53fb","newPasswordConfirm":"fd701288-9221-4e60-9558-69d9bc8c53fb"}, requestBody.newPasswordConfirm) +23:10:21.564 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG com.networknt.schema.FormatValidator debug - validate( "19fdef96-3502-4f85-a5db-c3747af99ade", {"password":"19fdef96-3502-4f85-a5db-c3747af99ade","newPassword":"fd701288-9221-4e60-9558-69d9bc8c53fb","newPasswordConfirm":"fd701288-9221-4e60-9558-69d9bc8c53fb"}, requestBody.password) +23:10:21.564 [XNIO-1 task-1] kRIIc-FhQWSy8tIdTfBtYA DEBUG com.networknt.schema.FormatValidator debug - validate( "fd701288-9221-4e60-9558-69d9bc8c53fb", {"password":"19fdef96-3502-4f85-a5db-c3747af99ade","newPassword":"fd701288-9221-4e60-9558-69d9bc8c53fb","newPasswordConfirm":"fd701288-9221-4e60-9558-69d9bc8c53fb"}, requestBody.newPassword) +23:10:21.573 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23862fec +23:10:21.583 [XNIO-1 task-1] CKRFawcCT8WoRpek7SVJTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.584 [XNIO-1 task-1] CKRFawcCT8WoRpek7SVJTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.584 [XNIO-1 task-1] CKRFawcCT8WoRpek7SVJTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.584 [XNIO-1 task-1] CKRFawcCT8WoRpek7SVJTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.593 [XNIO-1 task-1] jFYBw-AvRZulvY2vD2RCww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.593 [XNIO-1 task-1] jFYBw-AvRZulvY2vD2RCww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.593 [XNIO-1 task-1] jFYBw-AvRZulvY2vD2RCww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.593 [XNIO-1 task-1] jFYBw-AvRZulvY2vD2RCww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.600 [XNIO-1 task-1] OLaTfo1BTemhu1sgXJiTsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:21.602 [XNIO-1 task-1] OLaTfo1BTemhu1sgXJiTsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.602 [XNIO-1 task-1] OLaTfo1BTemhu1sgXJiTsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.602 [XNIO-1 task-1] OLaTfo1BTemhu1sgXJiTsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:21.602 [XNIO-1 task-1] OLaTfo1BTemhu1sgXJiTsw DEBUG com.networknt.schema.TypeValidator debug - validate( "23862fec", "23862fec", userId) +23:10:21.605 [XNIO-1 task-1] P2u6rZThS2-JLX2GxIw8hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.605 [XNIO-1 task-1] P2u6rZThS2-JLX2GxIw8hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.605 [XNIO-1 task-1] P2u6rZThS2-JLX2GxIw8hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.606 [XNIO-1 task-1] P2u6rZThS2-JLX2GxIw8hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.612 [XNIO-1 task-1] 2hxY0SnFTzqmflT8mHdw4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.612 [XNIO-1 task-1] 2hxY0SnFTzqmflT8mHdw4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.612 [XNIO-1 task-1] 2hxY0SnFTzqmflT8mHdw4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +Jun 28, 2024 11:10:21 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +23:10:21.619 [XNIO-1 task-1] tWJLYY0ZS06CRqIp6JEOhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.619 [XNIO-1 task-1] tWJLYY0ZS06CRqIp6JEOhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +23:10:21.619 [XNIO-1 task-1] tWJLYY0ZS06CRqIp6JEOhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.619 [XNIO-1 task-1] tWJLYY0ZS06CRqIp6JEOhw DEBUG com.networknt.schema.TypeValidator debug - validate( "23862fec", "23862fec", userId) +23:10:21.623 [XNIO-1 task-1] wyDNBUCiRc-c5PGrNBxcGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/76254d22, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +23:10:21.623 [XNIO-1 task-1] wyDNBUCiRc-c5PGrNBxcGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +23:10:21.623 [XNIO-1 task-1] wyDNBUCiRc-c5PGrNBxcGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +23:10:21.634 [XNIO-1 task-1] 7cRyAhTZQjCcOBCcmEuSKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.634 [XNIO-1 task-1] 7cRyAhTZQjCcOBCcmEuSKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.634 [XNIO-1 task-1] 7cRyAhTZQjCcOBCcmEuSKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/23862fec +23:10:21.639 [XNIO-1 task-1] 3QiVqeyGQMeaNorJBwVmjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.639 [XNIO-1 task-1] 3QiVqeyGQMeaNorJBwVmjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.639 [XNIO-1 task-1] 3QiVqeyGQMeaNorJBwVmjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.646 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4277c3bf +23:10:21.646 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4277c3bf +23:10:21.646 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7c4c6417-64d8-4a9a-b4e8-f94d2fbbefbb +23:10:21.660 [XNIO-1 task-1] hXfhYaCURa-Ytu7DTPltEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/51d35399 +23:10:21.660 [XNIO-1 task-1] hXfhYaCURa-Ytu7DTPltEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.660 [XNIO-1 task-1] hXfhYaCURa-Ytu7DTPltEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.660 [XNIO-1 task-1] hXfhYaCURa-Ytu7DTPltEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/51d35399 +23:10:21.661 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:886c3f6c-e8a6-47d2-b2c1-a8bf3b5beaa2 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:21.671 [XNIO-1 task-1] 7Xr3DTR2RXWfy_JRCtkSLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.671 [XNIO-1 task-1] 7Xr3DTR2RXWfy_JRCtkSLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.671 [XNIO-1 task-1] 7Xr3DTR2RXWfy_JRCtkSLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.671 [XNIO-1 task-1] 7Xr3DTR2RXWfy_JRCtkSLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:21.676 [XNIO-1 task-1] YXkQow2HTD63kNKriuF9jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/76254d22, base path is set to: null +23:10:21.676 [XNIO-1 task-1] YXkQow2HTD63kNKriuF9jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.677 [XNIO-1 task-1] YXkQow2HTD63kNKriuF9jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.677 [XNIO-1 task-1] YXkQow2HTD63kNKriuF9jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/76254d22, base path is set to: null +23:10:21.677 [XNIO-1 task-1] YXkQow2HTD63kNKriuF9jg DEBUG com.networknt.schema.TypeValidator debug - validate( "76254d22", "76254d22", userId) +23:10:21.684 [XNIO-1 task-1] akV5NsZlQeOJ8z-6aREptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/76254d22 +23:10:21.684 [XNIO-1 task-1] akV5NsZlQeOJ8z-6aREptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.684 [XNIO-1 task-1] akV5NsZlQeOJ8z-6aREptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.684 [XNIO-1 task-1] akV5NsZlQeOJ8z-6aREptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/76254d22 +23:10:21.703 [XNIO-1 task-1] Pq9mJ3PFQwCYScxeUQQ9Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.703 [XNIO-1 task-1] Pq9mJ3PFQwCYScxeUQQ9Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.704 [XNIO-1 task-1] Pq9mJ3PFQwCYScxeUQQ9Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.714 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:efb559bc-7fc6-4cb9-82ae-ac036cd68498 +23:10:21.715 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:efb559bc-7fc6-4cb9-82ae-ac036cd68498 +23:10:21.717 [XNIO-1 task-1] 68ywk2XlS9atSbRrCuHTDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d72b11e2 +23:10:21.717 [XNIO-1 task-1] 68ywk2XlS9atSbRrCuHTDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.717 [XNIO-1 task-1] 68ywk2XlS9atSbRrCuHTDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.717 [XNIO-1 task-1] 68ywk2XlS9atSbRrCuHTDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d72b11e2 +23:10:21.722 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f15be0e5, base path is set to: null +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f15be0e5, base path is set to: null +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f15be0e5", "f15be0e5", userId) +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"19821399-2c0d-4da8-9abd-510208aad9b1","newPassword":"723c9d49-cb5d-429c-a461-5f4607701bdd","newPasswordConfirm":"723c9d49-cb5d-429c-a461-5f4607701bdd"}, {"password":"19821399-2c0d-4da8-9abd-510208aad9b1","newPassword":"723c9d49-cb5d-429c-a461-5f4607701bdd","newPasswordConfirm":"723c9d49-cb5d-429c-a461-5f4607701bdd"}, requestBody) +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG com.networknt.schema.TypeValidator debug - validate( "723c9d49-cb5d-429c-a461-5f4607701bdd", {"password":"19821399-2c0d-4da8-9abd-510208aad9b1","newPassword":"723c9d49-cb5d-429c-a461-5f4607701bdd","newPasswordConfirm":"723c9d49-cb5d-429c-a461-5f4607701bdd"}, requestBody.newPasswordConfirm) +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG com.networknt.schema.TypeValidator debug - validate( "19821399-2c0d-4da8-9abd-510208aad9b1", {"password":"19821399-2c0d-4da8-9abd-510208aad9b1","newPassword":"723c9d49-cb5d-429c-a461-5f4607701bdd","newPasswordConfirm":"723c9d49-cb5d-429c-a461-5f4607701bdd"}, requestBody.password) +23:10:21.723 [XNIO-1 task-1] V-EoGjjdQOmnxSJKK5QARQ DEBUG com.networknt.schema.TypeValidator debug - validate( "723c9d49-cb5d-429c-a461-5f4607701bdd", {"password":"19821399-2c0d-4da8-9abd-510208aad9b1","newPassword":"723c9d49-cb5d-429c-a461-5f4607701bdd","newPasswordConfirm":"723c9d49-cb5d-429c-a461-5f4607701bdd"}, requestBody.newPassword) +23:10:21.727 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5cda2061 +23:10:21.734 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f15be0e5 +23:10:21.737 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2030d7c7 +23:10:21.740 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2030d7c7 +23:10:21.749 [XNIO-1 task-1] R8iv5vG0TCeIHyZ6Gqr8Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f15be0e5 +23:10:21.749 [XNIO-1 task-1] R8iv5vG0TCeIHyZ6Gqr8Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.749 [XNIO-1 task-1] R8iv5vG0TCeIHyZ6Gqr8Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.749 [XNIO-1 task-1] R8iv5vG0TCeIHyZ6Gqr8Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f15be0e5 +23:10:21.753 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8a3be0cd +23:10:21.753 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8a3be0cd +23:10:21.753 [XNIO-1 task-1] fuPlpJ0ORcK_tL_jLDTw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.754 [XNIO-1 task-1] fuPlpJ0ORcK_tL_jLDTw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.754 [XNIO-1 task-1] fuPlpJ0ORcK_tL_jLDTw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.754 [XNIO-1 task-1] fuPlpJ0ORcK_tL_jLDTw2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.762 [XNIO-1 task-1] ygf5PWDhTvugYiumolRTsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f15be0e5 +23:10:21.762 [XNIO-1 task-1] ygf5PWDhTvugYiumolRTsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.762 [XNIO-1 task-1] ygf5PWDhTvugYiumolRTsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.762 [XNIO-1 task-1] ygf5PWDhTvugYiumolRTsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f15be0e5 +23:10:21.762 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f15be0e5 +23:10:21.772 [XNIO-1 task-1] SkDLgdfjSxKs-LKbiXTkHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4277c3bf +23:10:21.772 [XNIO-1 task-1] SkDLgdfjSxKs-LKbiXTkHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.772 [XNIO-1 task-1] SkDLgdfjSxKs-LKbiXTkHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.772 [XNIO-1 task-1] SkDLgdfjSxKs-LKbiXTkHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4277c3bf +23:10:21.772 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4277c3bf +23:10:21.785 [XNIO-1 task-1] RA8aQbTrR1qQZu3kt1S9Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/44eb8eed +23:10:21.785 [XNIO-1 task-1] RA8aQbTrR1qQZu3kt1S9Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.786 [XNIO-1 task-1] RA8aQbTrR1qQZu3kt1S9Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.786 [XNIO-1 task-1] RA8aQbTrR1qQZu3kt1S9Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/44eb8eed +23:10:21.790 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:17c3bb79 +23:10:21.799 [XNIO-1 task-1] x3jkjkvzRvWHhhQjECjrwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.799 [XNIO-1 task-1] x3jkjkvzRvWHhhQjECjrwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.799 [XNIO-1 task-1] x3jkjkvzRvWHhhQjECjrwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.824 [XNIO-1 task-1] 39z-s3eLScCow3BNvTQeRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/61c4d9dd, base path is set to: null +23:10:21.824 [XNIO-1 task-1] 39z-s3eLScCow3BNvTQeRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.824 [XNIO-1 task-1] 39z-s3eLScCow3BNvTQeRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.824 [XNIO-1 task-1] 39z-s3eLScCow3BNvTQeRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/61c4d9dd, base path is set to: null +23:10:21.824 [XNIO-1 task-1] 39z-s3eLScCow3BNvTQeRg DEBUG com.networknt.schema.TypeValidator debug - validate( "61c4d9dd", "61c4d9dd", userId) +23:10:21.835 [XNIO-1 task-1] JCb0_GC1SU6lJ8imEuuymA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.835 [XNIO-1 task-1] JCb0_GC1SU6lJ8imEuuymA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.835 [XNIO-1 task-1] JCb0_GC1SU6lJ8imEuuymA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.846 [XNIO-1 task-1] 6QX1HdEUTQKcV8S_Kt1SzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d72b11e2 +23:10:21.846 [XNIO-1 task-1] 6QX1HdEUTQKcV8S_Kt1SzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.846 [XNIO-1 task-1] 6QX1HdEUTQKcV8S_Kt1SzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:21.846 [XNIO-1 task-1] 6QX1HdEUTQKcV8S_Kt1SzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d72b11e2 +23:10:21.866 [XNIO-1 task-1] icvs5OOCTb6jHl62rypa8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:21.866 [XNIO-1 task-1] icvs5OOCTb6jHl62rypa8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.866 [XNIO-1 task-1] icvs5OOCTb6jHl62rypa8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:21.867 [XNIO-1 task-1] icvs5OOCTb6jHl62rypa8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/23862fec, base path is set to: null +23:10:21.867 [XNIO-1 task-1] icvs5OOCTb6jHl62rypa8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "23862fec", "23862fec", userId) +23:10:21.874 [XNIO-1 task-1] p4pTneOsQveL8CFrreh8RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.875 [XNIO-1 task-1] p4pTneOsQveL8CFrreh8RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:21.875 [XNIO-1 task-1] p4pTneOsQveL8CFrreh8RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:21.880 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9550b42 +23:10:21.881 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9550b42 +23:10:21.890 [XNIO-1 task-1] vc3iEMArS56CTMA1Mv5pqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.890 [XNIO-1 task-1] vc3iEMArS56CTMA1Mv5pqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.890 [XNIO-1 task-1] vc3iEMArS56CTMA1Mv5pqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.890 [XNIO-1 task-1] vc3iEMArS56CTMA1Mv5pqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.892 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:17c3bb79 +23:10:21.898 [XNIO-1 task-1] cv13KU8oTvK1Pw3DXy7kFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.898 [XNIO-1 task-1] cv13KU8oTvK1Pw3DXy7kFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.898 [XNIO-1 task-1] cv13KU8oTvK1Pw3DXy7kFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.898 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9550b42 +23:10:21.907 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2030d7c7 +23:10:21.911 [XNIO-1 task-1] 2cJ8I7CzTyu_7ZMbLHQt-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.911 [XNIO-1 task-1] 2cJ8I7CzTyu_7ZMbLHQt-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.911 [XNIO-1 task-1] 2cJ8I7CzTyu_7ZMbLHQt-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.924 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5cda2061 +23:10:21.953 [XNIO-1 task-1] yx5OTbSqR9-Y2w2S8WpciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.954 [XNIO-1 task-1] yx5OTbSqR9-Y2w2S8WpciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.954 [XNIO-1 task-1] yx5OTbSqR9-Y2w2S8WpciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.954 [XNIO-1 task-1] yx5OTbSqR9-Y2w2S8WpciA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:21.961 [XNIO-1 task-1] 4Kg-1LkkQN6TFnX0lXp2dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.961 [XNIO-1 task-1] 4Kg-1LkkQN6TFnX0lXp2dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.961 [XNIO-1 task-1] 4Kg-1LkkQN6TFnX0lXp2dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.981 [XNIO-1 task-1] NuPZr_vMTgiodfUu2ijaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.981 [XNIO-1 task-1] NuPZr_vMTgiodfUu2ijaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.981 [XNIO-1 task-1] NuPZr_vMTgiodfUu2ijaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.999 [XNIO-1 task-1] HHAH9X66QHu96apJBUj7Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/58b46ef1 +23:10:21.999 [XNIO-1 task-1] HHAH9X66QHu96apJBUj7Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:21.999 [XNIO-1 task-1] HHAH9X66QHu96apJBUj7Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.000 [XNIO-1 task-1] HHAH9X66QHu96apJBUj7Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/58b46ef1 +23:10:22.012 [XNIO-1 task-1] HSjC874rRSCNT4nBqu22DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58b46ef1, base path is set to: null +23:10:22.012 [XNIO-1 task-1] HSjC874rRSCNT4nBqu22DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.012 [XNIO-1 task-1] HSjC874rRSCNT4nBqu22DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.012 [XNIO-1 task-1] HSjC874rRSCNT4nBqu22DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58b46ef1, base path is set to: null +23:10:22.013 [XNIO-1 task-1] HSjC874rRSCNT4nBqu22DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "58b46ef1", "58b46ef1", userId) +23:10:22.021 [XNIO-1 task-1] gVHYFlnbRu2FJifO7nFO_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.021 [XNIO-1 task-1] gVHYFlnbRu2FJifO7nFO_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.022 [XNIO-1 task-1] gVHYFlnbRu2FJifO7nFO_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.034 [XNIO-1 task-1] EkFpvP9CQ9CRbjtlkGA21Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.035 [XNIO-1 task-1] EkFpvP9CQ9CRbjtlkGA21Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.035 [XNIO-1 task-1] EkFpvP9CQ9CRbjtlkGA21Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.059 [XNIO-1 task-1] oCzietVSR1CgFLc-leX4-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58b46ef1, base path is set to: null +23:10:22.059 [XNIO-1 task-1] oCzietVSR1CgFLc-leX4-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.059 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ae8980f2 +23:10:22.059 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae8980f2 +23:10:22.059 [XNIO-1 task-1] oCzietVSR1CgFLc-leX4-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58b46ef1, base path is set to: null +23:10:22.060 [XNIO-1 task-1] oCzietVSR1CgFLc-leX4-w DEBUG com.networknt.schema.TypeValidator debug - validate( "58b46ef1", "58b46ef1", userId) +23:10:22.071 [XNIO-1 task-1] Le9VxRsdQ3q0_u2ithyKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.071 [XNIO-1 task-1] Le9VxRsdQ3q0_u2ithyKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.071 [XNIO-1 task-1] Le9VxRsdQ3q0_u2ithyKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.098 [XNIO-1 task-1] XG3qzHBrTmODrcaDrbgRiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.098 [XNIO-1 task-1] XG3qzHBrTmODrcaDrbgRiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.098 [XNIO-1 task-1] XG3qzHBrTmODrcaDrbgRiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.109 [XNIO-1 task-1] 3kKt4P-cQhKLGH7Axu8Kmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/75a142a6 +23:10:22.109 [XNIO-1 task-1] 3kKt4P-cQhKLGH7Axu8Kmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.109 [XNIO-1 task-1] 3kKt4P-cQhKLGH7Axu8Kmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.109 [XNIO-1 task-1] 3kKt4P-cQhKLGH7Axu8Kmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/75a142a6 +23:10:22.112 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8a3be0cd +23:10:22.113 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8a3be0cd +23:10:22.113 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1b7d43bd-4e2c-4d8e-aaa5-90d4c0c93fe2 +23:10:22.118 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/17f3656e +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/17f3656e +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"42492211-9fc0-4ed7-aeab-1e189c108cf2","newPassword":"110791ab-690d-49a3-ae56-635fa18b7003","newPasswordConfirm":"110791ab-690d-49a3-ae56-635fa18b7003"}, {"password":"42492211-9fc0-4ed7-aeab-1e189c108cf2","newPassword":"110791ab-690d-49a3-ae56-635fa18b7003","newPasswordConfirm":"110791ab-690d-49a3-ae56-635fa18b7003"}, requestBody) +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"42492211-9fc0-4ed7-aeab-1e189c108cf2","newPassword":"110791ab-690d-49a3-ae56-635fa18b7003","newPasswordConfirm":"110791ab-690d-49a3-ae56-635fa18b7003"}, {"password":"42492211-9fc0-4ed7-aeab-1e189c108cf2","newPassword":"110791ab-690d-49a3-ae56-635fa18b7003","newPasswordConfirm":"110791ab-690d-49a3-ae56-635fa18b7003"}, requestBody) +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG com.networknt.schema.FormatValidator debug - validate( "110791ab-690d-49a3-ae56-635fa18b7003", {"password":"42492211-9fc0-4ed7-aeab-1e189c108cf2","newPassword":"110791ab-690d-49a3-ae56-635fa18b7003","newPasswordConfirm":"110791ab-690d-49a3-ae56-635fa18b7003"}, requestBody.newPasswordConfirm) +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG com.networknt.schema.FormatValidator debug - validate( "42492211-9fc0-4ed7-aeab-1e189c108cf2", {"password":"42492211-9fc0-4ed7-aeab-1e189c108cf2","newPassword":"110791ab-690d-49a3-ae56-635fa18b7003","newPasswordConfirm":"110791ab-690d-49a3-ae56-635fa18b7003"}, requestBody.password) +23:10:22.119 [XNIO-1 task-1] 0088v06bTKig08EEr31zuw DEBUG com.networknt.schema.FormatValidator debug - validate( "110791ab-690d-49a3-ae56-635fa18b7003", {"password":"42492211-9fc0-4ed7-aeab-1e189c108cf2","newPassword":"110791ab-690d-49a3-ae56-635fa18b7003","newPasswordConfirm":"110791ab-690d-49a3-ae56-635fa18b7003"}, requestBody.newPassword) +23:10:22.146 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/270e9f90 +23:10:22.146 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.146 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.146 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:22.146 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/270e9f90 +23:10:22.147 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0fcde740-ed6b-4111-8404-679118a9c201","newPassword":"f6ef55ac-5c00-4519-9e7c-40f356f106b8","newPasswordConfirm":"f6ef55ac-5c00-4519-9e7c-40f356f106b8"}, {"password":"0fcde740-ed6b-4111-8404-679118a9c201","newPassword":"f6ef55ac-5c00-4519-9e7c-40f356f106b8","newPasswordConfirm":"f6ef55ac-5c00-4519-9e7c-40f356f106b8"}, requestBody) +23:10:22.147 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0fcde740-ed6b-4111-8404-679118a9c201","newPassword":"f6ef55ac-5c00-4519-9e7c-40f356f106b8","newPasswordConfirm":"f6ef55ac-5c00-4519-9e7c-40f356f106b8"}, {"password":"0fcde740-ed6b-4111-8404-679118a9c201","newPassword":"f6ef55ac-5c00-4519-9e7c-40f356f106b8","newPasswordConfirm":"f6ef55ac-5c00-4519-9e7c-40f356f106b8"}, requestBody) +23:10:22.147 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG com.networknt.schema.FormatValidator debug - validate( "f6ef55ac-5c00-4519-9e7c-40f356f106b8", {"password":"0fcde740-ed6b-4111-8404-679118a9c201","newPassword":"f6ef55ac-5c00-4519-9e7c-40f356f106b8","newPasswordConfirm":"f6ef55ac-5c00-4519-9e7c-40f356f106b8"}, requestBody.newPasswordConfirm) +23:10:22.147 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG com.networknt.schema.FormatValidator debug - validate( "0fcde740-ed6b-4111-8404-679118a9c201", {"password":"0fcde740-ed6b-4111-8404-679118a9c201","newPassword":"f6ef55ac-5c00-4519-9e7c-40f356f106b8","newPasswordConfirm":"f6ef55ac-5c00-4519-9e7c-40f356f106b8"}, requestBody.password) +23:10:22.147 [XNIO-1 task-1] QoqLHkfeR4yGdrr2ovTIOA DEBUG com.networknt.schema.FormatValidator debug - validate( "f6ef55ac-5c00-4519-9e7c-40f356f106b8", {"password":"0fcde740-ed6b-4111-8404-679118a9c201","newPassword":"f6ef55ac-5c00-4519-9e7c-40f356f106b8","newPasswordConfirm":"f6ef55ac-5c00-4519-9e7c-40f356f106b8"}, requestBody.newPassword) +23:10:22.173 [XNIO-1 task-1] 2m2k4KuOQzOYmpvzVB8xEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.173 [XNIO-1 task-1] 2m2k4KuOQzOYmpvzVB8xEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.173 [XNIO-1 task-1] 2m2k4KuOQzOYmpvzVB8xEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.190 [XNIO-1 task-1] dB6hPkiMRGiJDkpSdhy5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/17f3656e +23:10:22.190 [XNIO-1 task-1] dB6hPkiMRGiJDkpSdhy5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.190 [XNIO-1 task-1] dB6hPkiMRGiJDkpSdhy5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.190 [XNIO-1 task-1] dB6hPkiMRGiJDkpSdhy5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/17f3656e +23:10:22.198 [XNIO-1 task-1] VD6iAxSlRFuc4nnf7kF99A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.198 [XNIO-1 task-1] VD6iAxSlRFuc4nnf7kF99A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.198 [XNIO-1 task-1] VD6iAxSlRFuc4nnf7kF99A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.198 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b9550b42 +23:10:22.216 [XNIO-1 task-1] VPoFR6xJS0aWq0KoBZeDpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/270e9f90, base path is set to: null +23:10:22.216 [XNIO-1 task-1] VPoFR6xJS0aWq0KoBZeDpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.216 [XNIO-1 task-1] VPoFR6xJS0aWq0KoBZeDpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.216 [XNIO-1 task-1] VPoFR6xJS0aWq0KoBZeDpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/270e9f90, base path is set to: null +23:10:22.216 [XNIO-1 task-1] VPoFR6xJS0aWq0KoBZeDpA DEBUG com.networknt.schema.TypeValidator debug - validate( "270e9f90", "270e9f90", userId) +23:10:22.221 [XNIO-1 task-1] rnPbq1fkRay0458_lVrWQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/17f3656e, base path is set to: null +23:10:22.221 [XNIO-1 task-1] rnPbq1fkRay0458_lVrWQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.221 [XNIO-1 task-1] rnPbq1fkRay0458_lVrWQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.221 [XNIO-1 task-1] rnPbq1fkRay0458_lVrWQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/17f3656e, base path is set to: null +23:10:22.221 [XNIO-1 task-1] rnPbq1fkRay0458_lVrWQA DEBUG com.networknt.schema.TypeValidator debug - validate( "17f3656e", "17f3656e", userId) +23:10:22.236 [XNIO-1 task-1] NoX4y1liS6eU4Txf-nbsYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.237 [XNIO-1 task-1] NoX4y1liS6eU4Txf-nbsYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.237 [XNIO-1 task-1] NoX4y1liS6eU4Txf-nbsYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.257 [XNIO-1 task-1] qNUfofLUSMix2gb0uGWS8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.257 [XNIO-1 task-1] qNUfofLUSMix2gb0uGWS8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.257 [XNIO-1 task-1] qNUfofLUSMix2gb0uGWS8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.264 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae8980f2 +23:10:22.284 [XNIO-1 task-1] O4ottoZARDyk1JjQB31R7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9550b42 +23:10:22.284 [XNIO-1 task-1] O4ottoZARDyk1JjQB31R7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.284 [XNIO-1 task-1] O4ottoZARDyk1JjQB31R7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.284 [XNIO-1 task-1] O4ottoZARDyk1JjQB31R7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9550b42 +23:10:22.284 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b9550b42 +23:10:22.301 [XNIO-1 task-1] AOBFJFISRe2NrkITYFQ0FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/270e9f90 +23:10:22.301 [XNIO-1 task-1] AOBFJFISRe2NrkITYFQ0FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.301 [XNIO-1 task-1] AOBFJFISRe2NrkITYFQ0FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.302 [XNIO-1 task-1] AOBFJFISRe2NrkITYFQ0FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/270e9f90 +23:10:22.309 [XNIO-1 task-1] h49bCKxpTbWShRJJil14xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58b46ef1, base path is set to: null +23:10:22.310 [XNIO-1 task-1] h49bCKxpTbWShRJJil14xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.310 [XNIO-1 task-1] h49bCKxpTbWShRJJil14xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.310 [XNIO-1 task-1] h49bCKxpTbWShRJJil14xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58b46ef1, base path is set to: null +23:10:22.310 [XNIO-1 task-1] h49bCKxpTbWShRJJil14xA DEBUG com.networknt.schema.TypeValidator debug - validate( "58b46ef1", "58b46ef1", userId) +23:10:22.322 [XNIO-1 task-1] 7xIsOig_RXu1KsSaNG2Hbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.322 [XNIO-1 task-1] 7xIsOig_RXu1KsSaNG2Hbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.322 [XNIO-1 task-1] 7xIsOig_RXu1KsSaNG2Hbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a9e74739 +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a9e74739, base path is set to: null +23:10:22.332 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a9e74739", "a9e74739", userId) +23:10:22.333 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e483da0e-4236-41fe-9df8-a831b9b3862e","newPassword":"799bd389-268c-4321-ae12-0d6d048f4c72","newPasswordConfirm":"799bd389-268c-4321-ae12-0d6d048f4c72"}, {"password":"e483da0e-4236-41fe-9df8-a831b9b3862e","newPassword":"799bd389-268c-4321-ae12-0d6d048f4c72","newPasswordConfirm":"799bd389-268c-4321-ae12-0d6d048f4c72"}, requestBody) +23:10:22.333 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "799bd389-268c-4321-ae12-0d6d048f4c72", {"password":"e483da0e-4236-41fe-9df8-a831b9b3862e","newPassword":"799bd389-268c-4321-ae12-0d6d048f4c72","newPasswordConfirm":"799bd389-268c-4321-ae12-0d6d048f4c72"}, requestBody.newPasswordConfirm) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +23:10:22.333 [XNIO-1 task-1] 6vr2pj9gQM6gky82Siez_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "799bd389-268c-4321-ae12-0d6d048f4c72", {"password":"e483da0e-4236-41fe-9df8-a831b9b3862e","newPassword":"799bd389-268c-4321-ae12-0d6d048f4c72","newPasswordConfirm":"799bd389-268c-4321-ae12-0d6d048f4c72"}, requestBody.newPassword) +23:10:22.338 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:44b5b7d5 +23:10:22.341 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:44b5b7d5 +23:10:22.344 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:22.354 [XNIO-1 task-1] OqOyXz0fT_uDMwifC3pOxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e960a18d +23:10:22.354 [XNIO-1 task-1] OqOyXz0fT_uDMwifC3pOxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.354 [XNIO-1 task-1] OqOyXz0fT_uDMwifC3pOxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.354 [XNIO-1 task-1] OqOyXz0fT_uDMwifC3pOxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e960a18d +23:10:22.356 [XNIO-1 task-1] zOadvlWzTbCrmWwFiSPhDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e960a18d, base path is set to: null +23:10:22.356 [XNIO-1 task-1] zOadvlWzTbCrmWwFiSPhDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.356 [XNIO-1 task-1] zOadvlWzTbCrmWwFiSPhDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.356 [XNIO-1 task-1] zOadvlWzTbCrmWwFiSPhDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e960a18d, base path is set to: null +23:10:22.357 [XNIO-1 task-1] zOadvlWzTbCrmWwFiSPhDg DEBUG com.networknt.schema.TypeValidator debug - validate( "e960a18d", "e960a18d", userId) +23:10:22.362 [XNIO-1 task-1] PyKfORxJSamjpXUMj9Owfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.362 [XNIO-1 task-1] PyKfORxJSamjpXUMj9Owfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.362 [XNIO-1 task-1] PyKfORxJSamjpXUMj9Owfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.373 [XNIO-1 task-1] D14JOcXbRTWYVp4DiJ9pPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e960a18d +23:10:22.373 [XNIO-1 task-1] D14JOcXbRTWYVp4DiJ9pPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.373 [XNIO-1 task-1] D14JOcXbRTWYVp4DiJ9pPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.373 [XNIO-1 task-1] D14JOcXbRTWYVp4DiJ9pPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e960a18d +23:10:22.382 [XNIO-1 task-1] 16zmS-cTSXiCSSRSu9U9hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e960a18d, base path is set to: null +23:10:22.383 [XNIO-1 task-1] 16zmS-cTSXiCSSRSu9U9hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.383 [XNIO-1 task-1] 16zmS-cTSXiCSSRSu9U9hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.383 [XNIO-1 task-1] 16zmS-cTSXiCSSRSu9U9hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e960a18d, base path is set to: null +23:10:22.383 [XNIO-1 task-1] 16zmS-cTSXiCSSRSu9U9hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e960a18d", "e960a18d", userId) +23:10:22.403 [XNIO-1 task-1] sr4w6fPDQNCUOXQbgkM4nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.403 [XNIO-1 task-1] sr4w6fPDQNCUOXQbgkM4nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.403 [XNIO-1 task-1] sr4w6fPDQNCUOXQbgkM4nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.411 [XNIO-1 task-1] eWyGkl7LS7CtTB5E0zcykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/270e9f90 +23:10:22.412 [XNIO-1 task-1] eWyGkl7LS7CtTB5E0zcykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.412 [XNIO-1 task-1] eWyGkl7LS7CtTB5E0zcykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.412 [XNIO-1 task-1] eWyGkl7LS7CtTB5E0zcykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/270e9f90 +23:10:22.428 [XNIO-1 task-1] fayZRc1_RzyBuTfcYQhIFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.428 [XNIO-1 task-1] fayZRc1_RzyBuTfcYQhIFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.428 [XNIO-1 task-1] fayZRc1_RzyBuTfcYQhIFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.434 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:041bd743 +23:10:22.437 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:041bd743 +23:10:22.441 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:44b5b7d5 +23:10:22.442 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9a4adb9a-0fbd-4b92-b158-bc428964ec06 +23:10:22.445 [XNIO-1 task-1] cA6coIuZRQquUtHCnnx68A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.445 [XNIO-1 task-1] cA6coIuZRQquUtHCnnx68A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.446 [XNIO-1 task-1] cA6coIuZRQquUtHCnnx68A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.446 [XNIO-1 task-1] cA6coIuZRQquUtHCnnx68A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.456 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a9e74739, base path is set to: null +23:10:22.456 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.456 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.456 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:22.456 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a9e74739, base path is set to: null +23:10:22.456 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG com.networknt.schema.TypeValidator debug - validate( "a9e74739", "a9e74739", userId) +23:10:22.456 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"799bd389-268c-4321-ae12-0d6d048f4c72","newPassword":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPasswordConfirm":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da"}, {"password":"799bd389-268c-4321-ae12-0d6d048f4c72","newPassword":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPasswordConfirm":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da"}, requestBody) +23:10:22.457 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG com.networknt.schema.TypeValidator debug - validate( "feeb9972-2e0e-4158-a0a5-cf0a71b4d8da", {"password":"799bd389-268c-4321-ae12-0d6d048f4c72","newPassword":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPasswordConfirm":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da"}, requestBody.newPasswordConfirm) +23:10:22.457 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG com.networknt.schema.TypeValidator debug - validate( "799bd389-268c-4321-ae12-0d6d048f4c72", {"password":"799bd389-268c-4321-ae12-0d6d048f4c72","newPassword":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPasswordConfirm":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da"}, requestBody.password) +23:10:22.457 [XNIO-1 task-1] JDrBiqT0QiehTbkGoC4FsA DEBUG com.networknt.schema.TypeValidator debug - validate( "feeb9972-2e0e-4158-a0a5-cf0a71b4d8da", {"password":"799bd389-268c-4321-ae12-0d6d048f4c72","newPassword":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPasswordConfirm":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da"}, requestBody.newPassword) +23:10:22.464 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ae8980f2 +23:10:22.483 [XNIO-1 task-1] rc-DgZNsTAeR9Qao5I0_IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.483 [XNIO-1 task-1] rc-DgZNsTAeR9Qao5I0_IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.483 [XNIO-1 task-1] rc-DgZNsTAeR9Qao5I0_IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.483 [XNIO-1 task-1] rc-DgZNsTAeR9Qao5I0_IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.492 [XNIO-1 task-1] 0_IgyXINTdyfqfa7W2Zezw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.492 [XNIO-1 task-1] 0_IgyXINTdyfqfa7W2Zezw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.492 [XNIO-1 task-1] 0_IgyXINTdyfqfa7W2Zezw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.515 [XNIO-1 task-1] KY_iK_v-QEK5AfF1JF0HCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/041bd743, base path is set to: null +23:10:22.515 [XNIO-1 task-1] KY_iK_v-QEK5AfF1JF0HCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.515 [XNIO-1 task-1] KY_iK_v-QEK5AfF1JF0HCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.515 [XNIO-1 task-1] KY_iK_v-QEK5AfF1JF0HCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/041bd743, base path is set to: null +23:10:22.515 [XNIO-1 task-1] KY_iK_v-QEK5AfF1JF0HCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "041bd743", "041bd743", userId) +23:10:22.518 [XNIO-1 task-1] O9_Wu5_6SHeG5M_fPIBu6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.518 [XNIO-1 task-1] O9_Wu5_6SHeG5M_fPIBu6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.518 [XNIO-1 task-1] O9_Wu5_6SHeG5M_fPIBu6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.548 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ae8980f2 +23:10:22.553 [XNIO-1 task-1] 13GgBI3OT5-ypmVJ3vf9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.553 [XNIO-1 task-1] 13GgBI3OT5-ypmVJ3vf9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.553 [XNIO-1 task-1] 13GgBI3OT5-ypmVJ3vf9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.561 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:efe3ae0b-0688-4bb0-b748-7f2b24ef9152 +23:10:22.565 [XNIO-1 task-1] Tde7PJobSnaUNbRd4MHeYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fd0c0ed0, base path is set to: null +23:10:22.565 [XNIO-1 task-1] Tde7PJobSnaUNbRd4MHeYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.565 [XNIO-1 task-1] Tde7PJobSnaUNbRd4MHeYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.565 [XNIO-1 task-1] Tde7PJobSnaUNbRd4MHeYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fd0c0ed0, base path is set to: null +23:10:22.565 [XNIO-1 task-1] Tde7PJobSnaUNbRd4MHeYw DEBUG com.networknt.schema.TypeValidator debug - validate( "fd0c0ed0", "fd0c0ed0", userId) +23:10:22.575 [XNIO-1 task-1] 7-CDHGffQcm-PhbS1bB5ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.575 [XNIO-1 task-1] 7-CDHGffQcm-PhbS1bB5ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.576 [XNIO-1 task-1] 7-CDHGffQcm-PhbS1bB5ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.576 [XNIO-1 task-1] 7-CDHGffQcm-PhbS1bB5ew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.578 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:44b5b7d5 +23:10:22.586 [XNIO-1 task-1] B4jfdo9wTuSDGtFxjS_2-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f95139d +23:10:22.586 [XNIO-1 task-1] B4jfdo9wTuSDGtFxjS_2-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.586 [XNIO-1 task-1] B4jfdo9wTuSDGtFxjS_2-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.586 [XNIO-1 task-1] B4jfdo9wTuSDGtFxjS_2-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f95139d +23:10:22.596 [XNIO-1 task-1] exMhdbAOTvu3fTPmdNJ13A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fd0c0ed0, base path is set to: null +23:10:22.596 [XNIO-1 task-1] exMhdbAOTvu3fTPmdNJ13A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.596 [XNIO-1 task-1] exMhdbAOTvu3fTPmdNJ13A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.596 [XNIO-1 task-1] exMhdbAOTvu3fTPmdNJ13A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fd0c0ed0, base path is set to: null +23:10:22.597 [XNIO-1 task-1] exMhdbAOTvu3fTPmdNJ13A DEBUG com.networknt.schema.TypeValidator debug - validate( "fd0c0ed0", "fd0c0ed0", userId) +23:10:22.604 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:44b5b7d5 +23:10:22.609 [XNIO-1 task-1] _23HJwrRRtqZ0_e-V35jvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.609 [XNIO-1 task-1] _23HJwrRRtqZ0_e-V35jvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.609 [XNIO-1 task-1] _23HJwrRRtqZ0_e-V35jvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.615 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:44b5b7d5 +23:10:22.629 [XNIO-1 task-1] iMc0msWOQmKLweXnrmjzRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/041bd743 +23:10:22.629 [XNIO-1 task-1] iMc0msWOQmKLweXnrmjzRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.630 [XNIO-1 task-1] iMc0msWOQmKLweXnrmjzRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.630 [XNIO-1 task-1] iMc0msWOQmKLweXnrmjzRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/041bd743 +23:10:22.630 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:041bd743 +23:10:22.641 [XNIO-1 task-1] Z2jWbvYISMGs-lZZlb23hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.641 [XNIO-1 task-1] Z2jWbvYISMGs-lZZlb23hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.641 [XNIO-1 task-1] Z2jWbvYISMGs-lZZlb23hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.641 [XNIO-1 task-1] Z2jWbvYISMGs-lZZlb23hQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:22.652 [XNIO-1 task-1] 1BpeguM-RKab1gsS3rGFmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.652 [XNIO-1 task-1] 1BpeguM-RKab1gsS3rGFmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.652 [XNIO-1 task-1] 1BpeguM-RKab1gsS3rGFmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.652 [XNIO-1 task-1] 1BpeguM-RKab1gsS3rGFmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.661 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a4adb9a-0fbd-4b92-b158-bc428964ec06 +23:10:22.681 [XNIO-1 task-1] R27cES14TvOqu59m8OAQnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.681 [XNIO-1 task-1] R27cES14TvOqu59m8OAQnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.682 [XNIO-1 task-1] R27cES14TvOqu59m8OAQnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.710 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a9e74739 +23:10:22.710 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.710 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.710 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:22.710 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a9e74739 +23:10:22.711 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPassword":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPasswordConfirm":"6c78f700-197d-4d12-93a2-bf6e35e7c19a"}, {"password":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPassword":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPasswordConfirm":"6c78f700-197d-4d12-93a2-bf6e35e7c19a"}, requestBody) +23:10:22.711 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPassword":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPasswordConfirm":"6c78f700-197d-4d12-93a2-bf6e35e7c19a"}, {"password":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPassword":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPasswordConfirm":"6c78f700-197d-4d12-93a2-bf6e35e7c19a"}, requestBody) +23:10:22.711 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "6c78f700-197d-4d12-93a2-bf6e35e7c19a", {"password":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPassword":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPasswordConfirm":"6c78f700-197d-4d12-93a2-bf6e35e7c19a"}, requestBody.newPasswordConfirm) +23:10:22.711 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "feeb9972-2e0e-4158-a0a5-cf0a71b4d8da", {"password":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPassword":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPasswordConfirm":"6c78f700-197d-4d12-93a2-bf6e35e7c19a"}, requestBody.password) +23:10:22.711 [XNIO-1 task-1] jVCjM6U4T468Lf6B0VsyVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "6c78f700-197d-4d12-93a2-bf6e35e7c19a", {"password":"feeb9972-2e0e-4158-a0a5-cf0a71b4d8da","newPassword":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPasswordConfirm":"6c78f700-197d-4d12-93a2-bf6e35e7c19a"}, requestBody.newPassword) +23:10:22.738 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/71866ad7 +23:10:22.738 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.738 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.739 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:22.739 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/71866ad7 +23:10:22.739 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c7505adb-3029-45ca-a027-1e3aed639680","newPassword":"e8e1467c-6d6d-4e32-aece-8b698342dc3f","newPasswordConfirm":"e8e1467c-6d6d-4e32-aece-8b698342dc3f"}, {"password":"c7505adb-3029-45ca-a027-1e3aed639680","newPassword":"e8e1467c-6d6d-4e32-aece-8b698342dc3f","newPasswordConfirm":"e8e1467c-6d6d-4e32-aece-8b698342dc3f"}, requestBody) +23:10:22.739 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c7505adb-3029-45ca-a027-1e3aed639680","newPassword":"e8e1467c-6d6d-4e32-aece-8b698342dc3f","newPasswordConfirm":"e8e1467c-6d6d-4e32-aece-8b698342dc3f"}, {"password":"c7505adb-3029-45ca-a027-1e3aed639680","newPassword":"e8e1467c-6d6d-4e32-aece-8b698342dc3f","newPasswordConfirm":"e8e1467c-6d6d-4e32-aece-8b698342dc3f"}, requestBody) +23:10:22.739 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG com.networknt.schema.FormatValidator debug - validate( "e8e1467c-6d6d-4e32-aece-8b698342dc3f", {"password":"c7505adb-3029-45ca-a027-1e3aed639680","newPassword":"e8e1467c-6d6d-4e32-aece-8b698342dc3f","newPasswordConfirm":"e8e1467c-6d6d-4e32-aece-8b698342dc3f"}, requestBody.newPasswordConfirm) +23:10:22.739 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG com.networknt.schema.FormatValidator debug - validate( "c7505adb-3029-45ca-a027-1e3aed639680", {"password":"c7505adb-3029-45ca-a027-1e3aed639680","newPassword":"e8e1467c-6d6d-4e32-aece-8b698342dc3f","newPasswordConfirm":"e8e1467c-6d6d-4e32-aece-8b698342dc3f"}, requestBody.password) +23:10:22.739 [XNIO-1 task-1] Ihlnp3kPQnufHwLmmTIzEw DEBUG com.networknt.schema.FormatValidator debug - validate( "e8e1467c-6d6d-4e32-aece-8b698342dc3f", {"password":"c7505adb-3029-45ca-a027-1e3aed639680","newPassword":"e8e1467c-6d6d-4e32-aece-8b698342dc3f","newPasswordConfirm":"e8e1467c-6d6d-4e32-aece-8b698342dc3f"}, requestBody.newPassword) +23:10:22.761 [XNIO-1 task-1] PGLhp2atR5e0foyJ8mGKlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.761 [XNIO-1 task-1] PGLhp2atR5e0foyJ8mGKlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.761 [XNIO-1 task-1] PGLhp2atR5e0foyJ8mGKlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.773 [XNIO-1 task-1] 9TDSWeOESQ2azKFoZs409w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71866ad7 +23:10:22.773 [XNIO-1 task-1] 9TDSWeOESQ2azKFoZs409w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.773 [XNIO-1 task-1] 9TDSWeOESQ2azKFoZs409w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.773 [XNIO-1 task-1] 9TDSWeOESQ2azKFoZs409w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/71866ad7 +23:10:22.785 [XNIO-1 task-1] uB_SEUofSiGQnKs7E9j44g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5eb361d0, base path is set to: null +23:10:22.787 [XNIO-1 task-1] uB_SEUofSiGQnKs7E9j44g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.787 [XNIO-1 task-1] uB_SEUofSiGQnKs7E9j44g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.787 [XNIO-1 task-1] uB_SEUofSiGQnKs7E9j44g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5eb361d0, base path is set to: null +23:10:22.788 [XNIO-1 task-1] uB_SEUofSiGQnKs7E9j44g DEBUG com.networknt.schema.TypeValidator debug - validate( "5eb361d0", "5eb361d0", userId) +23:10:22.795 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5eb361d0 +23:10:22.795 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5eb361d0 +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3","newPassword":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPasswordConfirm":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016"}, {"password":"1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3","newPassword":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPasswordConfirm":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016"}, requestBody) +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3","newPassword":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPasswordConfirm":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016"}, {"password":"1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3","newPassword":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPasswordConfirm":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016"}, requestBody) +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016", {"password":"1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3","newPassword":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPasswordConfirm":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016"}, requestBody.newPasswordConfirm) +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3", {"password":"1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3","newPassword":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPasswordConfirm":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016"}, requestBody.password) +23:10:22.796 [XNIO-1 task-1] IdLaVnGZRiauja4s82HlXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016", {"password":"1ffb4cbf-735f-49df-b6ea-cc0b9a9473b3","newPassword":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPasswordConfirm":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016"}, requestBody.newPassword) +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5eb361d0 +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5eb361d0 +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPassword":"303d161c-8ace-438b-9ca6-dbd13292035c","newPasswordConfirm":"303d161c-8ace-438b-9ca6-dbd13292035c"}, {"password":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPassword":"303d161c-8ace-438b-9ca6-dbd13292035c","newPasswordConfirm":"303d161c-8ace-438b-9ca6-dbd13292035c"}, requestBody) +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPassword":"303d161c-8ace-438b-9ca6-dbd13292035c","newPasswordConfirm":"303d161c-8ace-438b-9ca6-dbd13292035c"}, {"password":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPassword":"303d161c-8ace-438b-9ca6-dbd13292035c","newPasswordConfirm":"303d161c-8ace-438b-9ca6-dbd13292035c"}, requestBody) +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG com.networknt.schema.FormatValidator debug - validate( "303d161c-8ace-438b-9ca6-dbd13292035c", {"password":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPassword":"303d161c-8ace-438b-9ca6-dbd13292035c","newPasswordConfirm":"303d161c-8ace-438b-9ca6-dbd13292035c"}, requestBody.newPasswordConfirm) +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG com.networknt.schema.FormatValidator debug - validate( "241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016", {"password":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPassword":"303d161c-8ace-438b-9ca6-dbd13292035c","newPasswordConfirm":"303d161c-8ace-438b-9ca6-dbd13292035c"}, requestBody.password) +23:10:22.821 [XNIO-1 task-1] munwMGDPT7WOFIRssA-USw DEBUG com.networknt.schema.FormatValidator debug - validate( "303d161c-8ace-438b-9ca6-dbd13292035c", {"password":"241ab3bf-5d4d-4b7c-b3ee-10bc0ecbc016","newPassword":"303d161c-8ace-438b-9ca6-dbd13292035c","newPasswordConfirm":"303d161c-8ace-438b-9ca6-dbd13292035c"}, requestBody.newPassword) +23:10:22.829 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:699e25fa-663a-4665-ab28-6e68f3d2ee27 +23:10:22.849 [XNIO-1 task-1] 3TtYQVroQ4CC6gro3DnaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.849 [XNIO-1 task-1] 3TtYQVroQ4CC6gro3DnaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.849 [XNIO-1 task-1] 3TtYQVroQ4CC6gro3DnaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.863 [XNIO-1 task-1] _3BBbVl-Roau6Lxok5SwkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e2a7c72, base path is set to: null +23:10:22.863 [XNIO-1 task-1] _3BBbVl-Roau6Lxok5SwkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.863 [XNIO-1 task-1] _3BBbVl-Roau6Lxok5SwkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.863 [XNIO-1 task-1] _3BBbVl-Roau6Lxok5SwkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e2a7c72, base path is set to: null +23:10:22.863 [XNIO-1 task-1] _3BBbVl-Roau6Lxok5SwkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0e2a7c72", "0e2a7c72", userId) +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a9e74739 +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a9e74739 +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPassword":"896b6660-513d-41ae-850b-6e8a1a522776","newPasswordConfirm":"896b6660-513d-41ae-850b-6e8a1a522776"}, {"password":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPassword":"896b6660-513d-41ae-850b-6e8a1a522776","newPasswordConfirm":"896b6660-513d-41ae-850b-6e8a1a522776"}, requestBody) +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPassword":"896b6660-513d-41ae-850b-6e8a1a522776","newPasswordConfirm":"896b6660-513d-41ae-850b-6e8a1a522776"}, {"password":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPassword":"896b6660-513d-41ae-850b-6e8a1a522776","newPasswordConfirm":"896b6660-513d-41ae-850b-6e8a1a522776"}, requestBody) +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG com.networknt.schema.FormatValidator debug - validate( "896b6660-513d-41ae-850b-6e8a1a522776", {"password":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPassword":"896b6660-513d-41ae-850b-6e8a1a522776","newPasswordConfirm":"896b6660-513d-41ae-850b-6e8a1a522776"}, requestBody.newPasswordConfirm) +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG com.networknt.schema.FormatValidator debug - validate( "6c78f700-197d-4d12-93a2-bf6e35e7c19a", {"password":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPassword":"896b6660-513d-41ae-850b-6e8a1a522776","newPasswordConfirm":"896b6660-513d-41ae-850b-6e8a1a522776"}, requestBody.password) +23:10:22.870 [XNIO-1 task-1] FSUc3zBNT1q3FrpCs7FwIw DEBUG com.networknt.schema.FormatValidator debug - validate( "896b6660-513d-41ae-850b-6e8a1a522776", {"password":"6c78f700-197d-4d12-93a2-bf6e35e7c19a","newPassword":"896b6660-513d-41ae-850b-6e8a1a522776","newPasswordConfirm":"896b6660-513d-41ae-850b-6e8a1a522776"}, requestBody.newPassword) +23:10:22.893 [XNIO-1 task-1] f74nu2X5RXGNUFukNUcNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c984e843 +23:10:22.893 [XNIO-1 task-1] f74nu2X5RXGNUFukNUcNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.893 [XNIO-1 task-1] f74nu2X5RXGNUFukNUcNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.893 [XNIO-1 task-1] f74nu2X5RXGNUFukNUcNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c984e843 +23:10:22.905 [XNIO-1 task-1] L6topdkjRFGQ1jKylw3uzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a9e74739, base path is set to: null +23:10:22.905 [XNIO-1 task-1] L6topdkjRFGQ1jKylw3uzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.905 [XNIO-1 task-1] L6topdkjRFGQ1jKylw3uzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.906 [XNIO-1 task-1] L6topdkjRFGQ1jKylw3uzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a9e74739, base path is set to: null +23:10:22.906 [XNIO-1 task-1] L6topdkjRFGQ1jKylw3uzA DEBUG com.networknt.schema.TypeValidator debug - validate( "a9e74739", "a9e74739", userId) +23:10:22.920 [XNIO-1 task-1] WA-cWUf6RwyvNegdMhDsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5eb361d0 +23:10:22.920 [XNIO-1 task-1] WA-cWUf6RwyvNegdMhDsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.920 [XNIO-1 task-1] WA-cWUf6RwyvNegdMhDsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:22.920 [XNIO-1 task-1] WA-cWUf6RwyvNegdMhDsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5eb361d0 +23:10:22.929 [XNIO-1 task-1] GbvzWXrGQqOp-aVrMpGnIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.929 [XNIO-1 task-1] GbvzWXrGQqOp-aVrMpGnIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.930 [XNIO-1 task-1] GbvzWXrGQqOp-aVrMpGnIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.951 [XNIO-1 task-1] r5Wlzht4TFa0vqg39XroTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5eb361d0, base path is set to: null +23:10:22.951 [XNIO-1 task-1] r5Wlzht4TFa0vqg39XroTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.951 [XNIO-1 task-1] r5Wlzht4TFa0vqg39XroTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.951 [XNIO-1 task-1] r5Wlzht4TFa0vqg39XroTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5eb361d0, base path is set to: null +23:10:22.952 [XNIO-1 task-1] r5Wlzht4TFa0vqg39XroTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5eb361d0", "5eb361d0", userId) +23:10:22.955 [XNIO-1 task-1] VO1rPNJxQdG5LuU2PV9U-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.955 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d0e9ef88-ff1c-41e9-9a5e-33316be87fb1 +23:10:22.955 [XNIO-1 task-1] VO1rPNJxQdG5LuU2PV9U-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.955 [XNIO-1 task-1] VO1rPNJxQdG5LuU2PV9U-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.970 [XNIO-1 task-1] n9V3gN8DTcehQyGqpYG_Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.970 [XNIO-1 task-1] n9V3gN8DTcehQyGqpYG_Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.970 [XNIO-1 task-1] n9V3gN8DTcehQyGqpYG_Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:22.970 [XNIO-1 task-1] n9V3gN8DTcehQyGqpYG_Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:22.973 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d0e9ef88-ff1c-41e9-9a5e-33316be87fb1 +23:10:22.979 [XNIO-1 task-1] pvMtpOGTRKCmAo7-KNGo0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.980 [XNIO-1 task-1] pvMtpOGTRKCmAo7-KNGo0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.980 [XNIO-1 task-1] pvMtpOGTRKCmAo7-KNGo0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:22.981 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:32401996-b102-40b8-bb40-dfaab754d5b1 +23:10:22.999 [XNIO-1 task-1] vlzlw2gWSMOU0VnG5LiwXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e2a7c72, base path is set to: null +23:10:22.999 [XNIO-1 task-1] vlzlw2gWSMOU0VnG5LiwXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:22.999 [XNIO-1 task-1] vlzlw2gWSMOU0VnG5LiwXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:22.999 [XNIO-1 task-1] vlzlw2gWSMOU0VnG5LiwXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e2a7c72, base path is set to: null +23:10:22.999 [XNIO-1 task-1] vlzlw2gWSMOU0VnG5LiwXA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e2a7c72", "0e2a7c72", userId) +23:10:23.011 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30c7f3c1-64fb-47e8-b2e1-ef15526ef545 +23:10:23.012 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30c7f3c1-64fb-47e8-b2e1-ef15526ef545 +23:10:23.018 [XNIO-1 task-1] wuBDlyRmTRe2k6cvgvMPJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e2a7c72 +23:10:23.018 [XNIO-1 task-1] wuBDlyRmTRe2k6cvgvMPJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.019 [XNIO-1 task-1] wuBDlyRmTRe2k6cvgvMPJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.019 [XNIO-1 task-1] wuBDlyRmTRe2k6cvgvMPJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e2a7c72 +23:10:23.029 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:32401996-b102-40b8-bb40-dfaab754d5b1 +23:10:23.033 [XNIO-1 task-1] -iiwiN6aSmiQweKTRQJ33w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e2a7c72 +23:10:23.033 [XNIO-1 task-1] -iiwiN6aSmiQweKTRQJ33w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.033 [XNIO-1 task-1] -iiwiN6aSmiQweKTRQJ33w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.033 [XNIO-1 task-1] -iiwiN6aSmiQweKTRQJ33w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e2a7c72 +23:10:23.038 [XNIO-1 task-1] VtM2BbvXSjCxhiHghJkZWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e2a7c72, base path is set to: null +23:10:23.039 [XNIO-1 task-1] VtM2BbvXSjCxhiHghJkZWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.039 [XNIO-1 task-1] VtM2BbvXSjCxhiHghJkZWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.039 [XNIO-1 task-1] VtM2BbvXSjCxhiHghJkZWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e2a7c72, base path is set to: null +23:10:23.039 [XNIO-1 task-1] VtM2BbvXSjCxhiHghJkZWA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e2a7c72", "0e2a7c72", userId) +23:10:23.047 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:181f1896-7990-4ed2-9082-6d67e0963285 +23:10:23.049 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cce02940 +23:10:23.051 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cce02940 +23:10:23.052 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5eb361d0 +23:10:23.052 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.052 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.052 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:23.052 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5eb361d0 +23:10:23.052 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"303d161c-8ace-438b-9ca6-dbd13292035c","newPassword":"2bc689a9-e49a-45b6-84ad-0ed738311114","newPasswordConfirm":"2bc689a9-e49a-45b6-84ad-0ed738311114"}, {"password":"303d161c-8ace-438b-9ca6-dbd13292035c","newPassword":"2bc689a9-e49a-45b6-84ad-0ed738311114","newPasswordConfirm":"2bc689a9-e49a-45b6-84ad-0ed738311114"}, requestBody) +23:10:23.053 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"303d161c-8ace-438b-9ca6-dbd13292035c","newPassword":"2bc689a9-e49a-45b6-84ad-0ed738311114","newPasswordConfirm":"2bc689a9-e49a-45b6-84ad-0ed738311114"}, {"password":"303d161c-8ace-438b-9ca6-dbd13292035c","newPassword":"2bc689a9-e49a-45b6-84ad-0ed738311114","newPasswordConfirm":"2bc689a9-e49a-45b6-84ad-0ed738311114"}, requestBody) +23:10:23.053 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG com.networknt.schema.FormatValidator debug - validate( "2bc689a9-e49a-45b6-84ad-0ed738311114", {"password":"303d161c-8ace-438b-9ca6-dbd13292035c","newPassword":"2bc689a9-e49a-45b6-84ad-0ed738311114","newPasswordConfirm":"2bc689a9-e49a-45b6-84ad-0ed738311114"}, requestBody.newPasswordConfirm) +23:10:23.053 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG com.networknt.schema.FormatValidator debug - validate( "303d161c-8ace-438b-9ca6-dbd13292035c", {"password":"303d161c-8ace-438b-9ca6-dbd13292035c","newPassword":"2bc689a9-e49a-45b6-84ad-0ed738311114","newPasswordConfirm":"2bc689a9-e49a-45b6-84ad-0ed738311114"}, requestBody.password) +23:10:23.053 [XNIO-1 task-1] hF7XZmmLTLOaEdUnqF_lRg DEBUG com.networknt.schema.FormatValidator debug - validate( "2bc689a9-e49a-45b6-84ad-0ed738311114", {"password":"303d161c-8ace-438b-9ca6-dbd13292035c","newPassword":"2bc689a9-e49a-45b6-84ad-0ed738311114","newPasswordConfirm":"2bc689a9-e49a-45b6-84ad-0ed738311114"}, requestBody.newPassword) +Jun 28, 2024 11:10:23 PM com.hazelcast.map.impl.operation.DeleteOperation +23:10:23.061 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cce02940 +23:10:23.075 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:94932ff2 +23:10:23.076 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:94932ff2 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +23:10:23.080 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:efb559bc-7fc6-4cb9-82ae-ac036cd68498 + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +23:10:23.087 [XNIO-1 task-1] kDsjRqz6RzSW3_-ymHhWrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1f92a7f6 +23:10:23.087 [XNIO-1 task-1] kDsjRqz6RzSW3_-ymHhWrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.087 [XNIO-1 task-1] kDsjRqz6RzSW3_-ymHhWrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.087 [XNIO-1 task-1] kDsjRqz6RzSW3_-ymHhWrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1f92a7f6 +23:10:23.096 [XNIO-1 task-1] MvDuRC7rQ72dq2bU7bU5ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.096 [XNIO-1 task-1] MvDuRC7rQ72dq2bU7bU5ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.096 [XNIO-1 task-1] MvDuRC7rQ72dq2bU7bU5ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.106 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:94932ff2 +23:10:23.115 [XNIO-1 task-1] EmOMSMlsSnitwowtySkBxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.115 [XNIO-1 task-1] EmOMSMlsSnitwowtySkBxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.115 [XNIO-1 task-1] EmOMSMlsSnitwowtySkBxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.131 [XNIO-1 task-1] SUYIP9uIR3u734ByxVPMOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.131 [XNIO-1 task-1] SUYIP9uIR3u734ByxVPMOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.131 [XNIO-1 task-1] SUYIP9uIR3u734ByxVPMOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.131 [XNIO-1 task-1] SUYIP9uIR3u734ByxVPMOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.139 [XNIO-1 task-1] 7hCPpAgZTUeN0HP7VyEAYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.140 [XNIO-1 task-1] 7hCPpAgZTUeN0HP7VyEAYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.140 [XNIO-1 task-1] 7hCPpAgZTUeN0HP7VyEAYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.152 [XNIO-1 task-1] xynmV9NoToWl3yg1pnyGyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5eb361d0, base path is set to: null +23:10:23.152 [XNIO-1 task-1] xynmV9NoToWl3yg1pnyGyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.152 [XNIO-1 task-1] xynmV9NoToWl3yg1pnyGyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.152 [XNIO-1 task-1] xynmV9NoToWl3yg1pnyGyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5eb361d0, base path is set to: null +23:10:23.152 [XNIO-1 task-1] xynmV9NoToWl3yg1pnyGyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5eb361d0", "5eb361d0", userId) +23:10:23.172 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b2fdc358 +23:10:23.172 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.172 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.172 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +23:10:23.173 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b2fdc358 +23:10:23.173 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d6df221e-f30f-483c-bb7b-96c6f307c245","newPassword":"09017bf4-6206-425b-a36b-d75d396bf64e","newPasswordConfirm":"09017bf4-6206-425b-a36b-d75d396bf64e"}, {"password":"d6df221e-f30f-483c-bb7b-96c6f307c245","newPassword":"09017bf4-6206-425b-a36b-d75d396bf64e","newPasswordConfirm":"09017bf4-6206-425b-a36b-d75d396bf64e"}, requestBody) +23:10:23.173 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d6df221e-f30f-483c-bb7b-96c6f307c245","newPassword":"09017bf4-6206-425b-a36b-d75d396bf64e","newPasswordConfirm":"09017bf4-6206-425b-a36b-d75d396bf64e"}, {"password":"d6df221e-f30f-483c-bb7b-96c6f307c245","newPassword":"09017bf4-6206-425b-a36b-d75d396bf64e","newPasswordConfirm":"09017bf4-6206-425b-a36b-d75d396bf64e"}, requestBody) +23:10:23.173 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG com.networknt.schema.FormatValidator debug - validate( "09017bf4-6206-425b-a36b-d75d396bf64e", {"password":"d6df221e-f30f-483c-bb7b-96c6f307c245","newPassword":"09017bf4-6206-425b-a36b-d75d396bf64e","newPasswordConfirm":"09017bf4-6206-425b-a36b-d75d396bf64e"}, requestBody.newPasswordConfirm) +23:10:23.173 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG com.networknt.schema.FormatValidator debug - validate( "d6df221e-f30f-483c-bb7b-96c6f307c245", {"password":"d6df221e-f30f-483c-bb7b-96c6f307c245","newPassword":"09017bf4-6206-425b-a36b-d75d396bf64e","newPasswordConfirm":"09017bf4-6206-425b-a36b-d75d396bf64e"}, requestBody.password) +23:10:23.173 [XNIO-1 task-1] K4Y02NcPRS2mQtOr-mCO5w DEBUG com.networknt.schema.FormatValidator debug - validate( "09017bf4-6206-425b-a36b-d75d396bf64e", {"password":"d6df221e-f30f-483c-bb7b-96c6f307c245","newPassword":"09017bf4-6206-425b-a36b-d75d396bf64e","newPasswordConfirm":"09017bf4-6206-425b-a36b-d75d396bf64e"}, requestBody.newPassword) +23:10:23.195 [XNIO-1 task-1] fH8_JekbRkCgXqq5nRs2fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.195 [XNIO-1 task-1] fH8_JekbRkCgXqq5nRs2fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.195 [XNIO-1 task-1] fH8_JekbRkCgXqq5nRs2fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.206 [XNIO-1 task-1] 8UwnoO3VSlSMz7XSlM7_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.206 [XNIO-1 task-1] 8UwnoO3VSlSMz7XSlM7_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.207 [XNIO-1 task-1] 8UwnoO3VSlSMz7XSlM7_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.207 [XNIO-1 task-1] 8UwnoO3VSlSMz7XSlM7_Zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:23.216 [XNIO-1 task-1] 6LY8klHiQ3avYiYId3ow-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.216 [XNIO-1 task-1] 6LY8klHiQ3avYiYId3ow-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.216 [XNIO-1 task-1] 6LY8klHiQ3avYiYId3ow-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.245 [XNIO-1 task-1] KRvr7bOFQ5e3fuxSnjokKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.245 [XNIO-1 task-1] KRvr7bOFQ5e3fuxSnjokKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.245 [XNIO-1 task-1] KRvr7bOFQ5e3fuxSnjokKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.256 [XNIO-1 task-1] pgF0WwN-SA2hPyUHKdGw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.256 [XNIO-1 task-1] pgF0WwN-SA2hPyUHKdGw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.256 [XNIO-1 task-1] pgF0WwN-SA2hPyUHKdGw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.279 [XNIO-1 task-1] fhOVlan6R6OUWlySTyxBOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.279 [XNIO-1 task-1] fhOVlan6R6OUWlySTyxBOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.279 [XNIO-1 task-1] fhOVlan6R6OUWlySTyxBOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.290 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7637319a +23:10:23.309 [XNIO-1 task-1] pEHMzWAnSaO_-WVi-b4sLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b2fdc358, base path is set to: null +23:10:23.309 [XNIO-1 task-1] pEHMzWAnSaO_-WVi-b4sLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.309 [XNIO-1 task-1] pEHMzWAnSaO_-WVi-b4sLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.309 [XNIO-1 task-1] pEHMzWAnSaO_-WVi-b4sLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b2fdc358, base path is set to: null +23:10:23.309 [XNIO-1 task-1] pEHMzWAnSaO_-WVi-b4sLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b2fdc358", "b2fdc358", userId) +23:10:23.318 [XNIO-1 task-1] 07PfKhPwRr6aQ4z-5wIenw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.319 [XNIO-1 task-1] 07PfKhPwRr6aQ4z-5wIenw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.319 [XNIO-1 task-1] 07PfKhPwRr6aQ4z-5wIenw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.319 [XNIO-1 task-1] 07PfKhPwRr6aQ4z-5wIenw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +23:10:23.326 [XNIO-1 task-1] 9HSbueOJQ8iYcd14HgjrPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.326 [XNIO-1 task-1] 9HSbueOJQ8iYcd14HgjrPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.326 [XNIO-1 task-1] 9HSbueOJQ8iYcd14HgjrPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.333 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:08e93a71 +23:10:23.339 [XNIO-1 task-1] Q_9yP-nFTt6oIazbPIPLkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.339 [XNIO-1 task-1] Q_9yP-nFTt6oIazbPIPLkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.339 [XNIO-1 task-1] Q_9yP-nFTt6oIazbPIPLkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.342 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dc497764-6239-4ec1-ab00-f0b8528b52a7 +23:10:23.343 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dc497764-6239-4ec1-ab00-f0b8528b52a7 +23:10:23.357 [XNIO-1 task-1] ckI--HUAT5iBLZbH-ICPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7637319a +23:10:23.358 [XNIO-1 task-1] ckI--HUAT5iBLZbH-ICPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.358 [XNIO-1 task-1] ckI--HUAT5iBLZbH-ICPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.358 [XNIO-1 task-1] ckI--HUAT5iBLZbH-ICPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7637319a +23:10:23.358 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7637319a +23:10:23.366 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:08e93a71 +23:10:23.374 [XNIO-1 task-1] Ak2HWKiOTmmYyou4qkrTtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a6cf9573 +23:10:23.374 [XNIO-1 task-1] Ak2HWKiOTmmYyou4qkrTtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.374 [XNIO-1 task-1] Ak2HWKiOTmmYyou4qkrTtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.374 [XNIO-1 task-1] Ak2HWKiOTmmYyou4qkrTtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a6cf9573 +23:10:23.386 [XNIO-1 task-1] sGTzgJT-SFuAgzpgvA2cKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.386 [XNIO-1 task-1] sGTzgJT-SFuAgzpgvA2cKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.386 [XNIO-1 task-1] sGTzgJT-SFuAgzpgvA2cKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.386 [XNIO-1 task-1] sGTzgJT-SFuAgzpgvA2cKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.387 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:efe3ae0b-0688-4bb0-b748-7f2b24ef9152 +23:10:23.396 [XNIO-1 task-1] vQzfkuzyR1ev-xI2dbhDSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2d8a01a8 +23:10:23.396 [XNIO-1 task-1] vQzfkuzyR1ev-xI2dbhDSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.397 [XNIO-1 task-1] vQzfkuzyR1ev-xI2dbhDSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.397 [XNIO-1 task-1] vQzfkuzyR1ev-xI2dbhDSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2d8a01a8 +23:10:23.403 [XNIO-1 task-1] sxJZ850wR3688WKaSdNHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.403 [XNIO-1 task-1] sxJZ850wR3688WKaSdNHlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.403 [XNIO-1 task-1] sxJZ850wR3688WKaSdNHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.404 [XNIO-1 task-1] sxJZ850wR3688WKaSdNHlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.408 [XNIO-1 task-1] qlkb2kqjQeWwxWL6vsrflQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8f23e7e7, base path is set to: null +23:10:23.408 [XNIO-1 task-1] qlkb2kqjQeWwxWL6vsrflQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.408 [XNIO-1 task-1] qlkb2kqjQeWwxWL6vsrflQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.408 [XNIO-1 task-1] qlkb2kqjQeWwxWL6vsrflQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8f23e7e7, base path is set to: null +23:10:23.409 [XNIO-1 task-1] qlkb2kqjQeWwxWL6vsrflQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8f23e7e7", "8f23e7e7", userId) +23:10:23.417 [XNIO-1 task-1] 8S6RvsVGQP29ONhYuNhzDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.417 [XNIO-1 task-1] 8S6RvsVGQP29ONhYuNhzDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.417 [XNIO-1 task-1] 8S6RvsVGQP29ONhYuNhzDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f5cc5c56 +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +Jun 28, 2024 11:10:23 PM com.hazelcast.map.impl.operation.DeleteOperation +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f5cc5c56 +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "f5cc5c56", "f5cc5c56", userId) +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, requestBody) +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, requestBody) +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, requestBody) +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "4bc43294-f754-4681-a284-e1052a912210", {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, requestBody.newPasswordConfirm) +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG com.networknt.schema.FormatValidator debug - validate( "4bc43294-f754-4681-a284-e1052a912210", {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, requestBody.newPasswordConfirm) +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "2a2b754b-0997-4db2-9f9d-a3bc59427d2f", {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, requestBody.password) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +23:10:23.450 [XNIO-1 task-1] W-7xhGgVR8uDGc5C3WK3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "4bc43294-f754-4681-a284-e1052a912210", {"password":"2a2b754b-0997-4db2-9f9d-a3bc59427d2f","newPassword":"4bc43294-f754-4681-a284-e1052a912210","newPasswordConfirm":"4bc43294-f754-4681-a284-e1052a912210"}, requestBody.newPassword) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +23:10:23.464 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +23:10:23.476 [XNIO-1 task-1] deIZE303Ruqm_WSoLG9CdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.476 [XNIO-1 task-1] deIZE303Ruqm_WSoLG9CdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.476 [XNIO-1 task-1] deIZE303Ruqm_WSoLG9CdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.477 [XNIO-1 task-1] deIZE303Ruqm_WSoLG9CdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.488 [XNIO-1 task-1] 6A1dpC5WQNyJRV0YwdHnag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.489 [XNIO-1 task-1] 6A1dpC5WQNyJRV0YwdHnag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.489 [XNIO-1 task-1] 6A1dpC5WQNyJRV0YwdHnag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.502 [XNIO-1 task-1] t7uesW_BRWKQodmsvyeSYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2d8a01a8, base path is set to: null +23:10:23.502 [XNIO-1 task-1] t7uesW_BRWKQodmsvyeSYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.502 [XNIO-1 task-1] t7uesW_BRWKQodmsvyeSYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.502 [XNIO-1 task-1] t7uesW_BRWKQodmsvyeSYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2d8a01a8, base path is set to: null +23:10:23.502 [XNIO-1 task-1] t7uesW_BRWKQodmsvyeSYg DEBUG com.networknt.schema.TypeValidator debug - validate( "2d8a01a8", "2d8a01a8", userId) +23:10:23.508 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:54996310-4cc9-4fa4-b95b-567d0f6a8d79 +23:10:23.509 [XNIO-1 task-1] l8zZeoNKQsexmefEsUrZ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8f23e7e7 +23:10:23.509 [XNIO-1 task-1] l8zZeoNKQsexmefEsUrZ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.510 [XNIO-1 task-1] l8zZeoNKQsexmefEsUrZ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.510 [XNIO-1 task-1] l8zZeoNKQsexmefEsUrZ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8f23e7e7 +23:10:23.513 [XNIO-1 task-1] ZITyRUq8Rs-mmojgFDv7SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.517 [XNIO-1 task-1] ZITyRUq8Rs-mmojgFDv7SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.517 [XNIO-1 task-1] ZITyRUq8Rs-mmojgFDv7SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.545 [XNIO-1 task-1] IBNO7fJdRSyYri9aXEG75Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a6cf9573, base path is set to: null +23:10:23.545 [XNIO-1 task-1] IBNO7fJdRSyYri9aXEG75Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.545 [XNIO-1 task-1] IBNO7fJdRSyYri9aXEG75Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.545 [XNIO-1 task-1] IBNO7fJdRSyYri9aXEG75Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a6cf9573, base path is set to: null +23:10:23.545 [XNIO-1 task-1] IBNO7fJdRSyYri9aXEG75Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a6cf9573", "a6cf9573", userId) +23:10:23.554 [XNIO-1 task-1] 1bPtVqV7Q1GcuxPA53kSqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.554 [XNIO-1 task-1] 1bPtVqV7Q1GcuxPA53kSqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.554 [XNIO-1 task-1] 1bPtVqV7Q1GcuxPA53kSqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.561 [XNIO-1 task-1] fVpRDTSbQd2C0wWYFHcDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8f23e7e7 +23:10:23.561 [XNIO-1 task-1] fVpRDTSbQd2C0wWYFHcDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.562 [XNIO-1 task-1] fVpRDTSbQd2C0wWYFHcDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.562 [XNIO-1 task-1] fVpRDTSbQd2C0wWYFHcDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8f23e7e7 +23:10:23.569 [XNIO-1 task-1] -nsGCxykR8i8bAqZtdKGtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.569 [XNIO-1 task-1] -nsGCxykR8i8bAqZtdKGtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.569 [XNIO-1 task-1] -nsGCxykR8i8bAqZtdKGtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.577 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2d8a01a8, base path is set to: null +23:10:23.577 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.577 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.577 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:23.578 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2d8a01a8, base path is set to: null +23:10:23.578 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2d8a01a8", "2d8a01a8", userId) +23:10:23.578 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"79676854-3ad6-48c2-bae0-eaef883e6862","newPassword":"2e2456a5-d0cc-499a-9372-7f26e1ce169f","newPasswordConfirm":"2e2456a5-d0cc-499a-9372-7f26e1ce169f"}, {"password":"79676854-3ad6-48c2-bae0-eaef883e6862","newPassword":"2e2456a5-d0cc-499a-9372-7f26e1ce169f","newPasswordConfirm":"2e2456a5-d0cc-499a-9372-7f26e1ce169f"}, requestBody) +23:10:23.578 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2e2456a5-d0cc-499a-9372-7f26e1ce169f", {"password":"79676854-3ad6-48c2-bae0-eaef883e6862","newPassword":"2e2456a5-d0cc-499a-9372-7f26e1ce169f","newPasswordConfirm":"2e2456a5-d0cc-499a-9372-7f26e1ce169f"}, requestBody.newPasswordConfirm) +23:10:23.578 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "79676854-3ad6-48c2-bae0-eaef883e6862", {"password":"79676854-3ad6-48c2-bae0-eaef883e6862","newPassword":"2e2456a5-d0cc-499a-9372-7f26e1ce169f","newPasswordConfirm":"2e2456a5-d0cc-499a-9372-7f26e1ce169f"}, requestBody.password) +23:10:23.578 [XNIO-1 task-1] EPfwHXDWQXuT49Ku5ywoLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2e2456a5-d0cc-499a-9372-7f26e1ce169f", {"password":"79676854-3ad6-48c2-bae0-eaef883e6862","newPassword":"2e2456a5-d0cc-499a-9372-7f26e1ce169f","newPasswordConfirm":"2e2456a5-d0cc-499a-9372-7f26e1ce169f"}, requestBody.newPassword) +23:10:23.601 [XNIO-1 task-1] 1cOCHdloQFmuy6OIK47G3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.601 [XNIO-1 task-1] 1cOCHdloQFmuy6OIK47G3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.601 [XNIO-1 task-1] 1cOCHdloQFmuy6OIK47G3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.617 [XNIO-1 task-1] qPsEFlhmR2C3TylGDv2LPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.617 [XNIO-1 task-1] qPsEFlhmR2C3TylGDv2LPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.617 [XNIO-1 task-1] qPsEFlhmR2C3TylGDv2LPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +23:10:23.618 [XNIO-1 task-1] qPsEFlhmR2C3TylGDv2LPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +23:10:23.623 [XNIO-1 task-1] hBKlJ8bQTGWxAVpCqoKeiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2d8a01a8, base path is set to: null +23:10:23.623 [XNIO-1 task-1] hBKlJ8bQTGWxAVpCqoKeiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.623 [XNIO-1 task-1] hBKlJ8bQTGWxAVpCqoKeiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.623 [XNIO-1 task-1] hBKlJ8bQTGWxAVpCqoKeiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2d8a01a8, base path is set to: null +23:10:23.623 [XNIO-1 task-1] hBKlJ8bQTGWxAVpCqoKeiA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d8a01a8", "2d8a01a8", userId) +23:10:23.625 [XNIO-1 task-1] mNLVXM36QhCGk_tVSqxGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2d8a01a8 +23:10:23.625 [XNIO-1 task-1] mNLVXM36QhCGk_tVSqxGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +23:10:23.625 [XNIO-1 task-1] mNLVXM36QhCGk_tVSqxGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +23:10:23.626 [XNIO-1 task-1] mNLVXM36QhCGk_tVSqxGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2d8a01a8 +23:10:23.634 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6cf9573, base path is set to: null +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a6cf9573, base path is set to: null +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG com.networknt.schema.TypeValidator debug - validate( "a6cf9573", "a6cf9573", userId) +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b7b5e219-717b-4845-86a2-1e6e39baf766","newPassword":"ff1a4f49-082c-4749-8a4c-1d4de3531f11","newPasswordConfirm":"ff1a4f49-082c-4749-8a4c-1d4de3531f11"}, {"password":"b7b5e219-717b-4845-86a2-1e6e39baf766","newPassword":"ff1a4f49-082c-4749-8a4c-1d4de3531f11","newPasswordConfirm":"ff1a4f49-082c-4749-8a4c-1d4de3531f11"}, requestBody) +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG com.networknt.schema.TypeValidator debug - validate( "ff1a4f49-082c-4749-8a4c-1d4de3531f11", {"password":"b7b5e219-717b-4845-86a2-1e6e39baf766","newPassword":"ff1a4f49-082c-4749-8a4c-1d4de3531f11","newPasswordConfirm":"ff1a4f49-082c-4749-8a4c-1d4de3531f11"}, requestBody.newPasswordConfirm) +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG com.networknt.schema.TypeValidator debug - validate( "b7b5e219-717b-4845-86a2-1e6e39baf766", {"password":"b7b5e219-717b-4845-86a2-1e6e39baf766","newPassword":"ff1a4f49-082c-4749-8a4c-1d4de3531f11","newPasswordConfirm":"ff1a4f49-082c-4749-8a4c-1d4de3531f11"}, requestBody.password) +23:10:23.635 [XNIO-1 task-1] Gjn9JhCaRD2nSS_-lo3vkg DEBUG com.networknt.schema.TypeValidator debug - validate( "ff1a4f49-082c-4749-8a4c-1d4de3531f11", {"password":"b7b5e219-717b-4845-86a2-1e6e39baf766","newPassword":"ff1a4f49-082c-4749-8a4c-1d4de3531f11","newPasswordConfirm":"ff1a4f49-082c-4749-8a4c-1d4de3531f11"}, requestBody.newPassword) diff --git a/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..4366a22 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-client-1.log @@ -0,0 +1,7994 @@ + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:58.990 [XNIO-1 task-1] NqXC1Nw7SrGqDk7y6j084w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:58.997 [XNIO-1 task-1] 4nl4zeLYTDCugZ5hYEk7yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:58.997 [XNIO-1 task-1] 4nl4zeLYTDCugZ5hYEk7yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:58.997 [XNIO-1 task-1] 4nl4zeLYTDCugZ5hYEk7yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.002 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:708e4a2f-8a4f-4efc-9116-dd84aeb540a0 +18:10:59.003 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:708e4a2f-8a4f-4efc-9116-dd84aeb540a0 +18:10:59.015 [XNIO-1 task-1] sV2SLMnJT0m4cy8UY5tNog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.015 [XNIO-1 task-1] sV2SLMnJT0m4cy8UY5tNog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.015 [XNIO-1 task-1] sV2SLMnJT0m4cy8UY5tNog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.015 [XNIO-1 task-1] sV2SLMnJT0m4cy8UY5tNog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.028 [XNIO-1 task-1] 2g_qnrwgTouReFl9x0sAjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0f7aa4c3-0f5c-485f-a844-4d1a91dc4947 +18:10:59.028 [XNIO-1 task-1] 2g_qnrwgTouReFl9x0sAjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.028 [XNIO-1 task-1] 2g_qnrwgTouReFl9x0sAjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.028 [XNIO-1 task-1] 2g_qnrwgTouReFl9x0sAjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0f7aa4c3-0f5c-485f-a844-4d1a91dc4947 +18:10:59.037 [XNIO-1 task-1] 4xw6sW9RTUKG3JArwgAtMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.037 [XNIO-1 task-1] 4xw6sW9RTUKG3JArwgAtMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.037 [XNIO-1 task-1] 4xw6sW9RTUKG3JArwgAtMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.039 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9efd05d1 +18:10:59.040 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9efd05d1 +18:10:59.042 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:af232ab7-4db6-4909-a64a-940570307b0d +18:10:59.050 [XNIO-1 task-1] w9_-zTX0Sf-s5AfMoNu5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/68e3da1c-0409-4c24-b148-629d5f8ef9e1, base path is set to: null +18:10:59.051 [XNIO-1 task-1] w9_-zTX0Sf-s5AfMoNu5vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.051 [XNIO-1 task-1] w9_-zTX0Sf-s5AfMoNu5vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.051 [XNIO-1 task-1] w9_-zTX0Sf-s5AfMoNu5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/68e3da1c-0409-4c24-b148-629d5f8ef9e1, base path is set to: null +18:10:59.051 [XNIO-1 task-1] w9_-zTX0Sf-s5AfMoNu5vA DEBUG com.networknt.schema.TypeValidator debug - validate( "68e3da1c-0409-4c24-b148-629d5f8ef9e1", "68e3da1c-0409-4c24-b148-629d5f8ef9e1", clientId) +18:10:59.059 [XNIO-1 task-1] CKfdGWjSTs2bqi-67saojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1388df27-609d-4a6a-80d8-7451607bfe14 +18:10:59.059 [XNIO-1 task-1] CKfdGWjSTs2bqi-67saojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.059 [XNIO-1 task-1] CKfdGWjSTs2bqi-67saojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.059 [XNIO-1 task-1] CKfdGWjSTs2bqi-67saojg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1388df27-609d-4a6a-80d8-7451607bfe14 +18:10:59.063 [XNIO-1 task-1] CKfdGWjSTs2bqi-67saojg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.064 [XNIO-1 task-1] CKfdGWjSTs2bqi-67saojg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.070 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.070 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "3f2e9952-478e-48eb-a8b3-eee1dd4c76de", {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "2230099c-758a-4401-a223-bcc6ec9c", {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2230099c-758a-4401-a223-bcc6ec9c","clientDesc":"3f2e9952-478e-48eb-a8b3-eee1dd4c76de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.071 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.072 [XNIO-1 task-1] a_6SaTtTQumOr3R23ivq0A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.076 [XNIO-1 task-1] SP9xiSPlQ1K8JcJz3VTGdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.076 [XNIO-1 task-1] SP9xiSPlQ1K8JcJz3VTGdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.077 [XNIO-1 task-1] SP9xiSPlQ1K8JcJz3VTGdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.077 [XNIO-1 task-1] SP9xiSPlQ1K8JcJz3VTGdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.085 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:57e9e612-a6db-4f4f-aac2-356994140666 +18:10:59.091 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.091 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.091 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.091 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.091 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"661d71f9-9bfa-490f-978a-7eb6711d","clientDesc":"e57d1aea-1468-4aae-9cff-756e6f456ea3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.092 [XNIO-1 task-1] UNwWqgu6TI2Ev5aIDBdtmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.098 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2e27a465 +18:10:59.099 [XNIO-1 task-1] EZfnlM7XTYGhQotlSPpsdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.099 [XNIO-1 task-1] EZfnlM7XTYGhQotlSPpsdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.099 [XNIO-1 task-1] EZfnlM7XTYGhQotlSPpsdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.108 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2e27a465 +18:10:59.119 [XNIO-1 task-1] 4m4VGiKaQ-6sMCAHN9GTqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f5a2eab-b278-4bc1-8dcd-35e2a3463685 +18:10:59.119 [XNIO-1 task-1] 4m4VGiKaQ-6sMCAHN9GTqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.119 [XNIO-1 task-1] 4m4VGiKaQ-6sMCAHN9GTqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.119 [XNIO-1 task-1] 4m4VGiKaQ-6sMCAHN9GTqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f5a2eab-b278-4bc1-8dcd-35e2a3463685 +18:10:59.119 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8f5a2eab-b278-4bc1-8dcd-35e2a3463685 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +18:10:59.124 [XNIO-1 task-1] 4m4VGiKaQ-6sMCAHN9GTqg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/8f5a2eab-b278-4bc1-8dcd-35e2a3463685} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.134 [XNIO-1 task-1] nKlKDJHQSS6d7eWmKW3ypQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.135 [XNIO-1 task-1] nKlKDJHQSS6d7eWmKW3ypQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.135 [XNIO-1 task-1] nKlKDJHQSS6d7eWmKW3ypQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.135 [XNIO-1 task-1] nKlKDJHQSS6d7eWmKW3ypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.140 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dbc09e24-7a93-49ee-9d98-143e352f0c43 +18:10:59.141 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dbc09e24-7a93-49ee-9d98-143e352f0c43 +18:10:59.146 [XNIO-1 task-1] H9yWUXd4RcuuJvryRbN04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.146 [XNIO-1 task-1] H9yWUXd4RcuuJvryRbN04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.146 [XNIO-1 task-1] H9yWUXd4RcuuJvryRbN04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.146 [XNIO-1 task-1] H9yWUXd4RcuuJvryRbN04g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.158 [XNIO-1 task-1] BRc4Ec98TJGnHmodmpI7fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dadab562-5197-4013-a5f9-8845bef4d48b, base path is set to: null +18:10:59.159 [XNIO-1 task-1] BRc4Ec98TJGnHmodmpI7fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.159 [XNIO-1 task-1] BRc4Ec98TJGnHmodmpI7fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.159 [XNIO-1 task-1] BRc4Ec98TJGnHmodmpI7fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dadab562-5197-4013-a5f9-8845bef4d48b, base path is set to: null +18:10:59.159 [XNIO-1 task-1] BRc4Ec98TJGnHmodmpI7fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dadab562-5197-4013-a5f9-8845bef4d48b", "dadab562-5197-4013-a5f9-8845bef4d48b", clientId) +18:10:59.167 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dbc09e24-7a93-49ee-9d98-143e352f0c43 +18:10:59.174 [XNIO-1 task-1] x9SdOBnaRUiLTuWgV2bqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.174 [XNIO-1 task-1] x9SdOBnaRUiLTuWgV2bqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.174 [XNIO-1 task-1] x9SdOBnaRUiLTuWgV2bqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.174 [XNIO-1 task-1] x9SdOBnaRUiLTuWgV2bqZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.175 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cf8f6bef +18:10:59.184 [XNIO-1 task-1] 9kyijqpIRjKNRYKbgCkoiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.184 [XNIO-1 task-1] 9kyijqpIRjKNRYKbgCkoiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.184 [XNIO-1 task-1] 9kyijqpIRjKNRYKbgCkoiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.185 [XNIO-1 task-1] 9kyijqpIRjKNRYKbgCkoiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.196 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:38f8f66b +18:10:59.202 [XNIO-1 task-1] leROe0QQTnCW5LRl_OVS3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.202 [XNIO-1 task-1] leROe0QQTnCW5LRl_OVS3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.202 [XNIO-1 task-1] leROe0QQTnCW5LRl_OVS3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "98ff228c-c126-42f7-a551-811ba1ccc714", {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.226 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "3ac01fd9-2b3c-48e6-ad2b-544dcd11", {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.227 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.227 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3ac01fd9-2b3c-48e6-ad2b-544dcd11","clientDesc":"98ff228c-c126-42f7-a551-811ba1ccc714","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.227 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.227 [XNIO-1 task-1] 1sE-sT4dS72B3-2tBOCd3g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.231 [XNIO-1 task-1] LRpK3CfsRrydu1wybC0JAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.231 [XNIO-1 task-1] LRpK3CfsRrydu1wybC0JAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.231 [XNIO-1 task-1] LRpK3CfsRrydu1wybC0JAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.246 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.246 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.246 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.246 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.246 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.246 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.247 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.247 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.247 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.247 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.247 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.247 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3c49cf9-90b0-4a1a-97c9-89d2002e","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.247 [XNIO-1 task-1] v7xiyvGtTha5273XUwLbsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.252 [XNIO-1 task-1] dlneb-l-RuKpuCWCO_3UYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9dde1a31-b25e-4883-8101-61ef0ee93777 +18:10:59.252 [XNIO-1 task-1] dlneb-l-RuKpuCWCO_3UYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.252 [XNIO-1 task-1] dlneb-l-RuKpuCWCO_3UYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.252 [XNIO-1 task-1] dlneb-l-RuKpuCWCO_3UYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9dde1a31-b25e-4883-8101-61ef0ee93777 +18:10:59.258 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.258 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.258 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.259 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecc9d7a-6b88-4b71-aac7-5a17f38a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.260 [XNIO-1 task-1] 8qmdJC2RT_CyCNcbKxwtFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.264 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.264 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.264 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG com.networknt.schema.TypeValidator debug - validate( "553d6902-8fe1-4f07-b182-4732d65d4965", {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG com.networknt.schema.TypeValidator debug - validate( "61519f95-10c5-4ff2-aed5-a7bc3054", {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"61519f95-10c5-4ff2-aed5-a7bc3054","clientDesc":"553d6902-8fe1-4f07-b182-4732d65d4965","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.265 [XNIO-1 task-1] PbU_k7c2TFSlE5AvjHIlRg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.270 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.270 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.270 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.271 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"48ea43b5-1d2f-4405-9ae2-5c3d2c43","clientDesc":"423c6d35-358c-46dc-b531-31c990e418e2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.272 [XNIO-1 task-1] aTfMyQUQTiihuDjcSULH6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.276 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.276 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c", {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ad3186c-ac26-4e35-be2e-ad32dcfc", {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8ad3186c-ac26-4e35-be2e-ad32dcfc","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.277 [XNIO-1 task-1] KNPXjy7ZQAye_k6tpOubpQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.280 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.281 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.281 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.281 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bab22977-5245-458d-bb31-791e4dae","clientDesc":"c30582c4-ffd8-43b7-b238-6b9276a4b26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.282 [XNIO-1 task-1] hwTYrP7zQvKTUOUi57eRyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.288 [XNIO-1 task-1] 2tfz-5ZjQGWWaewZgiL07w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b78e8103-baa4-4cca-997d-3b76edf31b84 +18:10:59.288 [XNIO-1 task-1] 2tfz-5ZjQGWWaewZgiL07w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.288 [XNIO-1 task-1] 2tfz-5ZjQGWWaewZgiL07w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.288 [XNIO-1 task-1] 2tfz-5ZjQGWWaewZgiL07w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b78e8103-baa4-4cca-997d-3b76edf31b84 +18:10:59.290 [XNIO-1 task-1] U0TcXOtkQCCAJ2i5twNxAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eedce509-f249-4ed0-94a6-dfdcd3d345ef, base path is set to: null +18:10:59.290 [XNIO-1 task-1] U0TcXOtkQCCAJ2i5twNxAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.290 [XNIO-1 task-1] U0TcXOtkQCCAJ2i5twNxAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.291 [XNIO-1 task-1] U0TcXOtkQCCAJ2i5twNxAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eedce509-f249-4ed0-94a6-dfdcd3d345ef, base path is set to: null +18:10:59.291 [XNIO-1 task-1] U0TcXOtkQCCAJ2i5twNxAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eedce509-f249-4ed0-94a6-dfdcd3d345ef", "eedce509-f249-4ed0-94a6-dfdcd3d345ef", clientId) +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG com.networknt.schema.TypeValidator debug - validate( "ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c", {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.298 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.299 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e1d734e-cab8-453d-a4b6-742c5852", {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.299 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.299 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0e1d734e-cab8-453d-a4b6-742c5852","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.299 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.299 [XNIO-1 task-1] PN8INtHHSli4r0YCffXrfA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.303 [XNIO-1 task-1] ENzqmJ6zQIekTvdFgUnbww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.303 [XNIO-1 task-1] ENzqmJ6zQIekTvdFgUnbww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.303 [XNIO-1 task-1] ENzqmJ6zQIekTvdFgUnbww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.303 [XNIO-1 task-1] ENzqmJ6zQIekTvdFgUnbww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.312 [XNIO-1 task-1] m7ewS9lWTbOlYbm_xR_2jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89a803b6-4554-4795-8208-69481c892299, base path is set to: null +18:10:59.312 [XNIO-1 task-1] m7ewS9lWTbOlYbm_xR_2jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.312 [XNIO-1 task-1] m7ewS9lWTbOlYbm_xR_2jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.312 [XNIO-1 task-1] m7ewS9lWTbOlYbm_xR_2jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89a803b6-4554-4795-8208-69481c892299, base path is set to: null +18:10:59.312 [XNIO-1 task-1] m7ewS9lWTbOlYbm_xR_2jg DEBUG com.networknt.schema.TypeValidator debug - validate( "89a803b6-4554-4795-8208-69481c892299", "89a803b6-4554-4795-8208-69481c892299", clientId) +18:10:59.315 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.315 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.315 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG com.networknt.schema.TypeValidator debug - validate( "40f5db11-a744-47cb-b873-ca010707c546", {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG com.networknt.schema.TypeValidator debug - validate( "9a42b678-ed9b-46e8-bf1a-9e3fb56a", {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9a42b678-ed9b-46e8-bf1a-9e3fb56a","clientDesc":"40f5db11-a744-47cb-b873-ca010707c546","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.316 [XNIO-1 task-1] AQBVg46QSvmOoG2YFuuChg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.321 [XNIO-1 task-1] p8AEA6VYR-ud2W9jjBmukA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.321 [XNIO-1 task-1] p8AEA6VYR-ud2W9jjBmukA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.321 [XNIO-1 task-1] p8AEA6VYR-ud2W9jjBmukA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.335 [XNIO-1 task-1] pCf7B8VUSYOa8512YXlu0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/458a22dd-199d-406b-9970-c4f576e5481b, base path is set to: null +18:10:59.335 [XNIO-1 task-1] pCf7B8VUSYOa8512YXlu0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.335 [XNIO-1 task-1] pCf7B8VUSYOa8512YXlu0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.336 [XNIO-1 task-1] pCf7B8VUSYOa8512YXlu0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/458a22dd-199d-406b-9970-c4f576e5481b, base path is set to: null +18:10:59.336 [XNIO-1 task-1] pCf7B8VUSYOa8512YXlu0g DEBUG com.networknt.schema.TypeValidator debug - validate( "458a22dd-199d-406b-9970-c4f576e5481b", "458a22dd-199d-406b-9970-c4f576e5481b", clientId) +18:10:59.338 [XNIO-1 task-1] vVhuvH8LQoCTFHHGgDtQ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.338 [XNIO-1 task-1] vVhuvH8LQoCTFHHGgDtQ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.338 [XNIO-1 task-1] vVhuvH8LQoCTFHHGgDtQ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.339 [XNIO-1 task-1] vVhuvH8LQoCTFHHGgDtQ5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.351 [XNIO-1 task-1] Iy7S0dOsRuKRcobVzhui4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.351 [XNIO-1 task-1] Iy7S0dOsRuKRcobVzhui4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.351 [XNIO-1 task-1] Iy7S0dOsRuKRcobVzhui4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.351 [XNIO-1 task-1] Iy7S0dOsRuKRcobVzhui4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.364 [XNIO-1 task-1] c49l65hBSS2uHwKB-N_kHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ea10cd9f-b02e-4cfd-b60e-ac4fbfbb041f +18:10:59.364 [XNIO-1 task-1] c49l65hBSS2uHwKB-N_kHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.364 [XNIO-1 task-1] c49l65hBSS2uHwKB-N_kHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.364 [XNIO-1 task-1] c49l65hBSS2uHwKB-N_kHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ea10cd9f-b02e-4cfd-b60e-ac4fbfbb041f +18:10:59.369 [XNIO-1 task-1] b9zt-FKeTMuuIpEjVxHGIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ea10cd9f-b02e-4cfd-b60e-ac4fbfbb041f, base path is set to: null +18:10:59.370 [XNIO-1 task-1] b9zt-FKeTMuuIpEjVxHGIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.370 [XNIO-1 task-1] b9zt-FKeTMuuIpEjVxHGIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.370 [XNIO-1 task-1] b9zt-FKeTMuuIpEjVxHGIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ea10cd9f-b02e-4cfd-b60e-ac4fbfbb041f, base path is set to: null +18:10:59.370 [XNIO-1 task-1] b9zt-FKeTMuuIpEjVxHGIw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea10cd9f-b02e-4cfd-b60e-ac4fbfbb041f", "ea10cd9f-b02e-4cfd-b60e-ac4fbfbb041f", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:10:59.376 [XNIO-1 task-1] b9zt-FKeTMuuIpEjVxHGIw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/ea10cd9f-b02e-4cfd-b60e-ac4fbfbb041f} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.378 [XNIO-1 task-1] qetOSy6CQYeuDrQ4-BAIcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9dab2541-a96d-4342-9224-1345407142d4, base path is set to: null +18:10:59.379 [XNIO-1 task-1] qetOSy6CQYeuDrQ4-BAIcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.379 [XNIO-1 task-1] qetOSy6CQYeuDrQ4-BAIcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.379 [XNIO-1 task-1] qetOSy6CQYeuDrQ4-BAIcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9dab2541-a96d-4342-9224-1345407142d4, base path is set to: null +18:10:59.379 [XNIO-1 task-1] qetOSy6CQYeuDrQ4-BAIcA DEBUG com.networknt.schema.TypeValidator debug - validate( "9dab2541-a96d-4342-9224-1345407142d4", "9dab2541-a96d-4342-9224-1345407142d4", clientId) +18:10:59.381 [XNIO-1 task-1] 61t3r4kFQeWuVKojfOQwmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.381 [XNIO-1 task-1] 61t3r4kFQeWuVKojfOQwmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.382 [XNIO-1 task-1] 61t3r4kFQeWuVKojfOQwmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.382 [XNIO-1 task-1] 61t3r4kFQeWuVKojfOQwmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.395 [XNIO-1 task-1] l6tvJGjORmWVkySDugpTiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.395 [XNIO-1 task-1] l6tvJGjORmWVkySDugpTiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.395 [XNIO-1 task-1] l6tvJGjORmWVkySDugpTiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.410 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.410 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.410 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.410 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.410 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.410 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8", {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.411 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.411 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.411 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG com.networknt.schema.TypeValidator debug - validate( "29177c6c-59c2-43b7-84c0-107a23ef", {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.411 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.411 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"29177c6c-59c2-43b7-84c0-107a23ef","clientDesc":"b1dbc7d6-af67-4dc3-9ec8-6f05fd0256f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.411 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.411 [XNIO-1 task-1] maF4Tn0-Qviy5wZq0HtZOw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.419 [XNIO-1 task-1] fuBDMFziQ16sJjRYlEtVqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.420 [XNIO-1 task-1] fuBDMFziQ16sJjRYlEtVqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.420 [XNIO-1 task-1] fuBDMFziQ16sJjRYlEtVqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.420 [XNIO-1 task-1] fuBDMFziQ16sJjRYlEtVqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.430 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.430 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.430 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.430 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.430 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.430 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.431 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.431 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.431 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.431 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.431 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.431 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5a134c1-64ba-4484-9b5e-bb354419","clientDesc":"39c69fb5-2d9d-4e71-bfa1-06241b80b04f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.431 [XNIO-1 task-1] StNseQ6HTliBNgow_kmqrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.442 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.442 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.442 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.442 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.442 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd6198c3-e998-4e48-93fa-6be8e7712cf4", {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed0b3b1f-8fd1-4e6e-8458-a5d73647", {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ed0b3b1f-8fd1-4e6e-8458-a5d73647","clientDesc":"bd6198c3-e998-4e48-93fa-6be8e7712cf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.443 [XNIO-1 task-1] UPSheRT6TPqr6U8h6CxJxQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.448 [XNIO-1 task-1] mBc-p-ilRsGVeQJIEPcllA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/80d7f596-426d-4f66-ba64-b6273056db0f, base path is set to: null +18:10:59.449 [XNIO-1 task-1] mBc-p-ilRsGVeQJIEPcllA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.449 [XNIO-1 task-1] mBc-p-ilRsGVeQJIEPcllA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.450 [XNIO-1 task-1] mBc-p-ilRsGVeQJIEPcllA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/80d7f596-426d-4f66-ba64-b6273056db0f, base path is set to: null +18:10:59.450 [XNIO-1 task-1] mBc-p-ilRsGVeQJIEPcllA DEBUG com.networknt.schema.TypeValidator debug - validate( "80d7f596-426d-4f66-ba64-b6273056db0f", "80d7f596-426d-4f66-ba64-b6273056db0f", clientId) +18:10:59.455 [XNIO-1 task-1] 8G0gAvbxQQaXSIvPliN1Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.455 [XNIO-1 task-1] 8G0gAvbxQQaXSIvPliN1Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.455 [XNIO-1 task-1] 8G0gAvbxQQaXSIvPliN1Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.478 [XNIO-1 task-1] 5bBZ__bdSUSWmAb56B_g9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/80d7f596-426d-4f66-ba64-b6273056db0f +18:10:59.478 [XNIO-1 task-1] 5bBZ__bdSUSWmAb56B_g9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.478 [XNIO-1 task-1] 5bBZ__bdSUSWmAb56B_g9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.478 [XNIO-1 task-1] 5bBZ__bdSUSWmAb56B_g9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/80d7f596-426d-4f66-ba64-b6273056db0f +18:10:59.482 [XNIO-1 task-1] T3dV_X4JTwSJp1v_7kwDrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.482 [XNIO-1 task-1] T3dV_X4JTwSJp1v_7kwDrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.482 [XNIO-1 task-1] T3dV_X4JTwSJp1v_7kwDrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.482 [XNIO-1 task-1] T3dV_X4JTwSJp1v_7kwDrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.494 [XNIO-1 task-1] C-lIMtmCRsqTUdP-ajEYrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/80d7f596-426d-4f66-ba64-b6273056db0f, base path is set to: null +18:10:59.494 [XNIO-1 task-1] C-lIMtmCRsqTUdP-ajEYrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.494 [XNIO-1 task-1] C-lIMtmCRsqTUdP-ajEYrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.494 [XNIO-1 task-1] C-lIMtmCRsqTUdP-ajEYrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/80d7f596-426d-4f66-ba64-b6273056db0f, base path is set to: null +18:10:59.494 [XNIO-1 task-1] C-lIMtmCRsqTUdP-ajEYrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "80d7f596-426d-4f66-ba64-b6273056db0f", "80d7f596-426d-4f66-ba64-b6273056db0f", clientId) +18:10:59.499 [XNIO-1 task-1] 9y0kpyueSvCeKR9STAjj8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.499 [XNIO-1 task-1] 9y0kpyueSvCeKR9STAjj8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.499 [XNIO-1 task-1] 9y0kpyueSvCeKR9STAjj8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.504 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dc659fff-74d2-4c8c-afcc-9aedfdc52b79 +18:10:59.516 [XNIO-1 task-1] U8WoW4XjQRWtpV0P4dFmmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.516 [XNIO-1 task-1] U8WoW4XjQRWtpV0P4dFmmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.516 [XNIO-1 task-1] U8WoW4XjQRWtpV0P4dFmmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.531 [XNIO-1 task-1] Nwt_7Cr2Q8qmDNC2123rIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d715d892-d2d7-431d-8d4f-2f692e3a954d, base path is set to: null +18:10:59.531 [XNIO-1 task-1] Nwt_7Cr2Q8qmDNC2123rIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.531 [XNIO-1 task-1] Nwt_7Cr2Q8qmDNC2123rIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.531 [XNIO-1 task-1] Nwt_7Cr2Q8qmDNC2123rIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d715d892-d2d7-431d-8d4f-2f692e3a954d, base path is set to: null +18:10:59.531 [XNIO-1 task-1] Nwt_7Cr2Q8qmDNC2123rIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d715d892-d2d7-431d-8d4f-2f692e3a954d", "d715d892-d2d7-431d-8d4f-2f692e3a954d", clientId) +18:10:59.534 [XNIO-1 task-1] BMtOvbHXRjSs990f7854jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.534 [XNIO-1 task-1] BMtOvbHXRjSs990f7854jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.534 [XNIO-1 task-1] BMtOvbHXRjSs990f7854jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.534 [XNIO-1 task-1] BMtOvbHXRjSs990f7854jQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.546 [XNIO-1 task-1] 2S_-9Bd-R_q_xymXT4qF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d715d892-d2d7-431d-8d4f-2f692e3a954d +18:10:59.547 [XNIO-1 task-1] 2S_-9Bd-R_q_xymXT4qF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.547 [XNIO-1 task-1] 2S_-9Bd-R_q_xymXT4qF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.547 [XNIO-1 task-1] 2S_-9Bd-R_q_xymXT4qF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d715d892-d2d7-431d-8d4f-2f692e3a954d +18:10:59.555 [XNIO-1 task-1] tv0ey09SQ7-HnPZS0FYVPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.555 [XNIO-1 task-1] tv0ey09SQ7-HnPZS0FYVPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.556 [XNIO-1 task-1] tv0ey09SQ7-HnPZS0FYVPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.556 [XNIO-1 task-1] tv0ey09SQ7-HnPZS0FYVPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.561 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:54c0b086 +18:10:59.577 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.577 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.577 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.577 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.577 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4166873-0d77-49ce-9afd-6aaea9b51425", {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG com.networknt.schema.TypeValidator debug - validate( "685e7abb-949d-4d53-913d-095adf12", {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"685e7abb-949d-4d53-913d-095adf12","clientDesc":"b4166873-0d77-49ce-9afd-6aaea9b51425","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.578 [XNIO-1 task-1] 7QH8FbDLQ6Wd28BIbELixQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.583 [XNIO-1 task-1] N1OR-PDTSdm6lsYLEYVDAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32e4f57d-07c8-4ce7-ae86-fd45d19867b9, base path is set to: null +18:10:59.583 [XNIO-1 task-1] N1OR-PDTSdm6lsYLEYVDAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.583 [XNIO-1 task-1] N1OR-PDTSdm6lsYLEYVDAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.583 [XNIO-1 task-1] N1OR-PDTSdm6lsYLEYVDAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32e4f57d-07c8-4ce7-ae86-fd45d19867b9, base path is set to: null +18:10:59.583 [XNIO-1 task-1] N1OR-PDTSdm6lsYLEYVDAg DEBUG com.networknt.schema.TypeValidator debug - validate( "32e4f57d-07c8-4ce7-ae86-fd45d19867b9", "32e4f57d-07c8-4ce7-ae86-fd45d19867b9", clientId) +18:10:59.599 [XNIO-1 task-1] yyz2-rKXQ32ITV-0j71wrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fffbb6ce-3f36-48b2-beca-c7ddd1b81245 +18:10:59.599 [XNIO-1 task-1] yyz2-rKXQ32ITV-0j71wrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.599 [XNIO-1 task-1] yyz2-rKXQ32ITV-0j71wrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.599 [XNIO-1 task-1] yyz2-rKXQ32ITV-0j71wrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fffbb6ce-3f36-48b2-beca-c7ddd1b81245 +18:10:59.605 [XNIO-1 task-1] d_cgfYY8R4yh5xDvzlyCgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6aea7fc0-81cc-4e56-966a-91820f4b9ac2, base path is set to: null +18:10:59.605 [XNIO-1 task-1] d_cgfYY8R4yh5xDvzlyCgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.605 [XNIO-1 task-1] d_cgfYY8R4yh5xDvzlyCgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.605 [XNIO-1 task-1] d_cgfYY8R4yh5xDvzlyCgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6aea7fc0-81cc-4e56-966a-91820f4b9ac2, base path is set to: null +18:10:59.606 [XNIO-1 task-1] d_cgfYY8R4yh5xDvzlyCgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6aea7fc0-81cc-4e56-966a-91820f4b9ac2", "6aea7fc0-81cc-4e56-966a-91820f4b9ac2", clientId) +18:10:59.619 [XNIO-1 task-1] Q-sMfowYRwy4nSZHSQxCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a86caef1-f7e6-4831-a63d-bd21b20ee207 +18:10:59.619 [XNIO-1 task-1] Q-sMfowYRwy4nSZHSQxCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.619 [XNIO-1 task-1] Q-sMfowYRwy4nSZHSQxCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.619 [XNIO-1 task-1] Q-sMfowYRwy4nSZHSQxCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a86caef1-f7e6-4831-a63d-bd21b20ee207 +18:10:59.624 [XNIO-1 task-1] Q-sMfowYRwy4nSZHSQxCuA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.625 [XNIO-1 task-1] Q-sMfowYRwy4nSZHSQxCuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.629 [XNIO-1 task-1] mjUAtKFrQ3q9glNX-h5foQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/496e58ef-4802-4f62-9b96-2b8b174435b8 +18:10:59.629 [XNIO-1 task-1] mjUAtKFrQ3q9glNX-h5foQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.629 [XNIO-1 task-1] mjUAtKFrQ3q9glNX-h5foQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.629 [XNIO-1 task-1] mjUAtKFrQ3q9glNX-h5foQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/496e58ef-4802-4f62-9b96-2b8b174435b8 +18:10:59.629 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:496e58ef-4802-4f62-9b96-2b8b174435b8 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +18:10:59.633 [XNIO-1 task-1] mjUAtKFrQ3q9glNX-h5foQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/496e58ef-4802-4f62-9b96-2b8b174435b8} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.636 [XNIO-1 task-1] Lb0kMuoERcu0Cjili09Wuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bdbd0e53-549a-45ce-a030-544d1319a0ec, base path is set to: null +18:10:59.636 [XNIO-1 task-1] Lb0kMuoERcu0Cjili09Wuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.636 [XNIO-1 task-1] Lb0kMuoERcu0Cjili09Wuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.636 [XNIO-1 task-1] Lb0kMuoERcu0Cjili09Wuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bdbd0e53-549a-45ce-a030-544d1319a0ec, base path is set to: null +18:10:59.636 [XNIO-1 task-1] Lb0kMuoERcu0Cjili09Wuw DEBUG com.networknt.schema.TypeValidator debug - validate( "bdbd0e53-549a-45ce-a030-544d1319a0ec", "bdbd0e53-549a-45ce-a030-544d1319a0ec", clientId) +18:10:59.638 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cf8f6bef +18:10:59.644 [XNIO-1 task-1] XWKXIWwBS4KIBm2iN2qbOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.644 [XNIO-1 task-1] XWKXIWwBS4KIBm2iN2qbOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.644 [XNIO-1 task-1] XWKXIWwBS4KIBm2iN2qbOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.644 [XNIO-1 task-1] XWKXIWwBS4KIBm2iN2qbOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.658 [XNIO-1 task-1] lmeR-z8rTPacyRRffjwsrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.658 [XNIO-1 task-1] lmeR-z8rTPacyRRffjwsrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.658 [XNIO-1 task-1] lmeR-z8rTPacyRRffjwsrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.659 [XNIO-1 task-1] lmeR-z8rTPacyRRffjwsrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG com.networknt.schema.TypeValidator debug - validate( "ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c", {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.673 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG com.networknt.schema.TypeValidator debug - validate( "a50eeefd-0c05-4e84-b452-d81a30a4", {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.674 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.674 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a50eeefd-0c05-4e84-b452-d81a30a4","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.674 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.675 [XNIO-1 task-1] GQqA39HqQoKE4v8ZU6MjFw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.681 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.682 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.683 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9509e7a-79c8-4ca7-9175-c0caa8f7","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.683 [XNIO-1 task-1] K9e6QkEsRWC6ZvSUMY6EFw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.690 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.690 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.690 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG com.networknt.schema.TypeValidator debug - validate( "ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c", {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG com.networknt.schema.TypeValidator debug - validate( "652979e9-34fe-4491-8060-ab89c219", {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"652979e9-34fe-4491-8060-ab89c219","clientDesc":"ccf0f3bf-3ff9-4cfe-b48a-9a5db45be02c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.691 [XNIO-1 task-1] bLNpzuFvTYOi-y2zRV0TBA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.694 [XNIO-1 task-1] 5ZsS-TC9QoOA7oydplwflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.694 [XNIO-1 task-1] 5ZsS-TC9QoOA7oydplwflA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.694 [XNIO-1 task-1] 5ZsS-TC9QoOA7oydplwflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.710 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.710 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.710 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.711 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51c40838-e559-4647-b58e-351f5774","clientDesc":"ca23ae94-4327-4ac9-bd03-83816dc3345c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.712 [XNIO-1 task-1] EkaIY8-UTSeYXxnJNMxhEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.715 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:54c0b086 +18:10:59.715 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.715 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.715 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.715 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG com.networknt.schema.TypeValidator debug - validate( "2a5bbbbd-c6ad-4704-b0de-37df154afa99", {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG com.networknt.schema.TypeValidator debug - validate( "fa4f2eae-4b12-4cad-ba69-b673a113", {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fa4f2eae-4b12-4cad-ba69-b673a113","clientDesc":"2a5bbbbd-c6ad-4704-b0de-37df154afa99","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.716 [XNIO-1 task-1] Tpk082szRuWHiWn3ITqiUA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.719 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9aa869aa-dd39-4158-be3f-eb41ac90bd85 +18:10:59.720 [XNIO-1 task-1] 930QvJhlQRSkhCpaWAaI9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/57e49cd1-f065-4807-bc97-f02f475c4883 +18:10:59.720 [XNIO-1 task-1] 930QvJhlQRSkhCpaWAaI9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.720 [XNIO-1 task-1] 930QvJhlQRSkhCpaWAaI9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.720 [XNIO-1 task-1] 930QvJhlQRSkhCpaWAaI9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/57e49cd1-f065-4807-bc97-f02f475c4883 +18:10:59.721 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9aa869aa-dd39-4158-be3f-eb41ac90bd85 +18:10:59.726 [XNIO-1 task-1] 930QvJhlQRSkhCpaWAaI9g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.726 [XNIO-1 task-1] 930QvJhlQRSkhCpaWAaI9g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.729 [XNIO-1 task-1] Oggx3HrrTKu1OWdewmI12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.730 [XNIO-1 task-1] Oggx3HrrTKu1OWdewmI12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.730 [XNIO-1 task-1] Oggx3HrrTKu1OWdewmI12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.730 [XNIO-1 task-1] Oggx3HrrTKu1OWdewmI12Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.735 [XNIO-1 task-1] ajLDIZFORemta3UbWk4VPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.735 [XNIO-1 task-1] ajLDIZFORemta3UbWk4VPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.735 [XNIO-1 task-1] ajLDIZFORemta3UbWk4VPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.739 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a5fd5a82-1ced-4129-a6f5-6bcdbd7fd4a8 +18:10:59.740 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a5fd5a82-1ced-4129-a6f5-6bcdbd7fd4a8 +18:10:59.747 [XNIO-1 task-1] jffwrBSSTWCKTu_yi21cQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.747 [XNIO-1 task-1] jffwrBSSTWCKTu_yi21cQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.748 [XNIO-1 task-1] jffwrBSSTWCKTu_yi21cQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.748 [XNIO-1 task-1] jffwrBSSTWCKTu_yi21cQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.759 [XNIO-1 task-1] hnU8soelRcKjvhQV0deZiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.759 [XNIO-1 task-1] hnU8soelRcKjvhQV0deZiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.759 [XNIO-1 task-1] hnU8soelRcKjvhQV0deZiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.760 [XNIO-1 task-1] hnU8soelRcKjvhQV0deZiw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:10:59.768 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:54c0b086 +18:10:59.770 [XNIO-1 task-1] bewotiVJTlKp10d12sLF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9b1cbc25-43db-4f3a-ab6e-2d712833fb9c +18:10:59.770 [XNIO-1 task-1] bewotiVJTlKp10d12sLF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.770 [XNIO-1 task-1] bewotiVJTlKp10d12sLF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.770 [XNIO-1 task-1] bewotiVJTlKp10d12sLF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9b1cbc25-43db-4f3a-ab6e-2d712833fb9c +18:10:59.783 [XNIO-1 task-1] 3tyuhFQeQpe1EY9SUN6oyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.783 [XNIO-1 task-1] 3tyuhFQeQpe1EY9SUN6oyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.783 [XNIO-1 task-1] 3tyuhFQeQpe1EY9SUN6oyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.784 [XNIO-1 task-1] 3tyuhFQeQpe1EY9SUN6oyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.788 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e7ea4071 +18:10:59.789 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e7ea4071 +18:10:59.793 [XNIO-1 task-1] Bx1ay_jITmiDUIzxgEj1xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.794 [XNIO-1 task-1] Bx1ay_jITmiDUIzxgEj1xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.794 [XNIO-1 task-1] Bx1ay_jITmiDUIzxgEj1xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.815 [XNIO-1 task-1] NOupWcD1TXuuLUVP80ltLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c26b1cf5-271a-4959-ba69-98203a73985a +18:10:59.815 [XNIO-1 task-1] NOupWcD1TXuuLUVP80ltLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.815 [XNIO-1 task-1] NOupWcD1TXuuLUVP80ltLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.815 [XNIO-1 task-1] NOupWcD1TXuuLUVP80ltLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c26b1cf5-271a-4959-ba69-98203a73985a +18:10:59.820 [XNIO-1 task-1] 1MwrtuD-TTCRDEPk2Be45Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7285bcdb-a276-46e2-a9dd-6955be03882c, base path is set to: null +18:10:59.821 [XNIO-1 task-1] 1MwrtuD-TTCRDEPk2Be45Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.821 [XNIO-1 task-1] 1MwrtuD-TTCRDEPk2Be45Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.821 [XNIO-1 task-1] 1MwrtuD-TTCRDEPk2Be45Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7285bcdb-a276-46e2-a9dd-6955be03882c, base path is set to: null +18:10:59.821 [XNIO-1 task-1] 1MwrtuD-TTCRDEPk2Be45Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7285bcdb-a276-46e2-a9dd-6955be03882c", "7285bcdb-a276-46e2-a9dd-6955be03882c", clientId) +18:10:59.825 [XNIO-1 task-1] RETUqfQ8R_OESQsIKhZjWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.825 [XNIO-1 task-1] RETUqfQ8R_OESQsIKhZjWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.825 [XNIO-1 task-1] RETUqfQ8R_OESQsIKhZjWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.825 [XNIO-1 task-1] RETUqfQ8R_OESQsIKhZjWw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.837 [XNIO-1 task-1] xlMjpEDxQIyQy7Kups9FwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bc440961-e299-45c5-8bfd-b9ee80e82d52, base path is set to: null +18:10:59.837 [XNIO-1 task-1] xlMjpEDxQIyQy7Kups9FwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.837 [XNIO-1 task-1] xlMjpEDxQIyQy7Kups9FwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.837 [XNIO-1 task-1] xlMjpEDxQIyQy7Kups9FwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bc440961-e299-45c5-8bfd-b9ee80e82d52, base path is set to: null +18:10:59.838 [XNIO-1 task-1] xlMjpEDxQIyQy7Kups9FwA DEBUG com.networknt.schema.TypeValidator debug - validate( "bc440961-e299-45c5-8bfd-b9ee80e82d52", "bc440961-e299-45c5-8bfd-b9ee80e82d52", clientId) +18:10:59.845 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.845 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.845 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.845 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.845 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.846 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "295aad67-2b0d-4ae7-a36b-7c1ad94548d6", {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.846 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.846 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.846 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "c95cc54c-5720-4b58-8e13-be9ca8e0", {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.846 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.846 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c95cc54c-5720-4b58-8e13-be9ca8e0","clientDesc":"295aad67-2b0d-4ae7-a36b-7c1ad94548d6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.846 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.847 [XNIO-1 task-1] GuS9bTk9SViivoXAk8Lx-w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.852 [XNIO-1 task-1] 3MfL1SFuQbGhFFEyRewuWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.852 [XNIO-1 task-1] 3MfL1SFuQbGhFFEyRewuWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.852 [XNIO-1 task-1] 3MfL1SFuQbGhFFEyRewuWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.866 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:54c0b086 +18:10:59.868 [XNIO-1 task-1] ijr1GIw6SIeI82_MsNrGeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7285bcdb-a276-46e2-a9dd-6955be03882c +18:10:59.868 [XNIO-1 task-1] ijr1GIw6SIeI82_MsNrGeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.868 [XNIO-1 task-1] ijr1GIw6SIeI82_MsNrGeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.868 [XNIO-1 task-1] ijr1GIw6SIeI82_MsNrGeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7285bcdb-a276-46e2-a9dd-6955be03882c +18:10:59.871 [XNIO-1 task-1] Fs3-y9ubRbCcaFIhXiwEAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.872 [XNIO-1 task-1] Fs3-y9ubRbCcaFIhXiwEAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.872 [XNIO-1 task-1] Fs3-y9ubRbCcaFIhXiwEAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.873 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aeabf5e9-9816-494d-8885-8bf53d16ae21 +18:10:59.888 [XNIO-1 task-1] iwOjm6djTEi1OBb4GZ9_rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c784a99e-d91d-40a3-9e37-38e77924ab68, base path is set to: null +18:10:59.888 [XNIO-1 task-1] iwOjm6djTEi1OBb4GZ9_rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.888 [XNIO-1 task-1] iwOjm6djTEi1OBb4GZ9_rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.888 [XNIO-1 task-1] iwOjm6djTEi1OBb4GZ9_rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c784a99e-d91d-40a3-9e37-38e77924ab68, base path is set to: null +18:10:59.889 [XNIO-1 task-1] iwOjm6djTEi1OBb4GZ9_rw DEBUG com.networknt.schema.TypeValidator debug - validate( "c784a99e-d91d-40a3-9e37-38e77924ab68", "c784a99e-d91d-40a3-9e37-38e77924ab68", clientId) +18:10:59.891 [XNIO-1 task-1] tBskEm23S0KuP-fIgcPZTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.891 [XNIO-1 task-1] tBskEm23S0KuP-fIgcPZTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.891 [XNIO-1 task-1] tBskEm23S0KuP-fIgcPZTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.891 [XNIO-1 task-1] tBskEm23S0KuP-fIgcPZTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.901 [XNIO-1 task-1] q0g-lj-7RZudIbUKG3WOpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.901 [XNIO-1 task-1] q0g-lj-7RZudIbUKG3WOpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.901 [XNIO-1 task-1] q0g-lj-7RZudIbUKG3WOpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.901 [XNIO-1 task-1] q0g-lj-7RZudIbUKG3WOpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:10:59.914 [XNIO-1 task-1] kcQRKTEsQGemFz6PM4n6pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/af3b7491-5deb-49d1-8a77-bc1c2b380c33, base path is set to: null +18:10:59.914 [XNIO-1 task-1] kcQRKTEsQGemFz6PM4n6pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.914 [XNIO-1 task-1] kcQRKTEsQGemFz6PM4n6pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.914 [XNIO-1 task-1] kcQRKTEsQGemFz6PM4n6pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/af3b7491-5deb-49d1-8a77-bc1c2b380c33, base path is set to: null +18:10:59.915 [XNIO-1 task-1] kcQRKTEsQGemFz6PM4n6pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "af3b7491-5deb-49d1-8a77-bc1c2b380c33", "af3b7491-5deb-49d1-8a77-bc1c2b380c33", clientId) +18:10:59.918 [XNIO-1 task-1] B3CNdnzCS1uJa8McHkpoIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/af3b7491-5deb-49d1-8a77-bc1c2b380c33 +18:10:59.918 [XNIO-1 task-1] B3CNdnzCS1uJa8McHkpoIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.919 [XNIO-1 task-1] B3CNdnzCS1uJa8McHkpoIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.919 [XNIO-1 task-1] B3CNdnzCS1uJa8McHkpoIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/af3b7491-5deb-49d1-8a77-bc1c2b380c33 +18:10:59.926 [XNIO-1 task-1] PKj339OdT56_HXN9W8mLzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ff4c0e6-2678-4986-9ff7-c7570eee17e2, base path is set to: null +18:10:59.926 [XNIO-1 task-1] PKj339OdT56_HXN9W8mLzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.926 [XNIO-1 task-1] PKj339OdT56_HXN9W8mLzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.926 [XNIO-1 task-1] PKj339OdT56_HXN9W8mLzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ff4c0e6-2678-4986-9ff7-c7570eee17e2, base path is set to: null +18:10:59.926 [XNIO-1 task-1] PKj339OdT56_HXN9W8mLzw DEBUG com.networknt.schema.TypeValidator debug - validate( "2ff4c0e6-2678-4986-9ff7-c7570eee17e2", "2ff4c0e6-2678-4986-9ff7-c7570eee17e2", clientId) +18:10:59.929 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +18:10:59.930 [XNIO-1 task-1] PKj339OdT56_HXN9W8mLzw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.930 [XNIO-1 task-1] PKj339OdT56_HXN9W8mLzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.935 [XNIO-1 task-1] AgYRHmWqReKmViFyCPCv5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ff4c0e6-2678-4986-9ff7-c7570eee17e2 +18:10:59.935 [XNIO-1 task-1] AgYRHmWqReKmViFyCPCv5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.935 [XNIO-1 task-1] AgYRHmWqReKmViFyCPCv5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.935 [XNIO-1 task-1] AgYRHmWqReKmViFyCPCv5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ff4c0e6-2678-4986-9ff7-c7570eee17e2 +18:10:59.936 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2ff4c0e6-2678-4986-9ff7-c7570eee17e2 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +18:10:59.941 [XNIO-1 task-1] AgYRHmWqReKmViFyCPCv5w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/2ff4c0e6-2678-4986-9ff7-c7570eee17e2} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.945 [XNIO-1 task-1] 2tIFgsQjROCOfWFG9kZf2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.945 [XNIO-1 task-1] 2tIFgsQjROCOfWFG9kZf2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.945 [XNIO-1 task-1] 2tIFgsQjROCOfWFG9kZf2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.962 [XNIO-1 task-1] 9CRy4f4YRUGJn5_ncutTfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ff4c0e6-2678-4986-9ff7-c7570eee17e2, base path is set to: null +18:10:59.963 [XNIO-1 task-1] 9CRy4f4YRUGJn5_ncutTfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.963 [XNIO-1 task-1] 9CRy4f4YRUGJn5_ncutTfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.963 [XNIO-1 task-1] 9CRy4f4YRUGJn5_ncutTfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ff4c0e6-2678-4986-9ff7-c7570eee17e2, base path is set to: null +18:10:59.963 [XNIO-1 task-1] 9CRy4f4YRUGJn5_ncutTfA DEBUG com.networknt.schema.TypeValidator debug - validate( "2ff4c0e6-2678-4986-9ff7-c7570eee17e2", "2ff4c0e6-2678-4986-9ff7-c7570eee17e2", clientId) +18:10:59.968 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.968 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "eba14206-411c-4b45-8cb5-61da576a6b7b", {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7fe74d0-7d3b-453b-b36f-f140f45a", {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:10:59.969 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:10:59.970 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f7fe74d0-7d3b-453b-b36f-f140f45a","clientDesc":"eba14206-411c-4b45-8cb5-61da576a6b7b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:10:59.970 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.970 [XNIO-1 task-1] PmTvU6kbSxu2NNkWUzNoTA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:10:59.975 [XNIO-1 task-1] Zk-AMXYvQvCm7oVkIC4DTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dc659fff-74d2-4c8c-afcc-9aedfdc52b79, base path is set to: null +18:10:59.975 [XNIO-1 task-1] Zk-AMXYvQvCm7oVkIC4DTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.975 [XNIO-1 task-1] Zk-AMXYvQvCm7oVkIC4DTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:10:59.975 [XNIO-1 task-1] Zk-AMXYvQvCm7oVkIC4DTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dc659fff-74d2-4c8c-afcc-9aedfdc52b79, base path is set to: null +18:10:59.975 [XNIO-1 task-1] Zk-AMXYvQvCm7oVkIC4DTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc659fff-74d2-4c8c-afcc-9aedfdc52b79", "dc659fff-74d2-4c8c-afcc-9aedfdc52b79", clientId) +18:10:59.986 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.986 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:10:59.986 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:10:59.987 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1363ac48-9816-44f0-93b2-995cc1de","clientDesc":"08033ea1-8b0d-46d6-8ccd-7dd1d1ce7840","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:10:59.988 [XNIO-1 task-1] aeSKWaFhTvyIVWNJSX9EVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:10:59.990 [XNIO-1 task-1] LSi1mPc-SHmwIGeyie7stA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d715d892-d2d7-431d-8d4f-2f692e3a954d +18:10:59.990 [XNIO-1 task-1] LSi1mPc-SHmwIGeyie7stA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:10:59.990 [XNIO-1 task-1] LSi1mPc-SHmwIGeyie7stA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:10:59.990 [XNIO-1 task-1] LSi1mPc-SHmwIGeyie7stA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d715d892-d2d7-431d-8d4f-2f692e3a954d +18:11:00.001 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.001 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.002 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.002 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.002 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.002 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.002 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.002 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:00.002 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:00.003 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.003 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.003 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ddaa5475-a67f-424e-b1f4-818b2252","clientDesc":"fa76ec72-3e04-4c38-a98e-bf640207a594","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:00.004 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9efd05d1 +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:00.004 [XNIO-1 task-1] kWfvPLwPSpydyURIJkAxKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:00.016 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:00.016 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:00.016 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "13ce9fb9-60eb-4fa6-909f-1116f50fd273", {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6955156c-e7a9-49d5-83a3-b797e2aa", {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:00.017 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6955156c-e7a9-49d5-83a3-b797e2aa","clientDesc":"13ce9fb9-60eb-4fa6-909f-1116f50fd273","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:00.018 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:00.018 [XNIO-1 task-1] BALGJRuuQLm5rSMmnuZz4Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:00.028 [XNIO-1 task-1] 4T9KRIY_SjKh3WnFOd7psw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.028 [XNIO-1 task-1] 4T9KRIY_SjKh3WnFOd7psw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.028 [XNIO-1 task-1] 4T9KRIY_SjKh3WnFOd7psw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.028 [XNIO-1 task-1] 4T9KRIY_SjKh3WnFOd7psw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:00.032 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5422bdf0 +18:11:00.034 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5422bdf0 +18:11:00.038 [XNIO-1 task-1] bXy8X1DXSnmNWYW-ws2MXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/df071b62-7b8c-4ddf-9c6b-aba54a43c1ed +18:11:00.038 [XNIO-1 task-1] bXy8X1DXSnmNWYW-ws2MXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:00.038 [XNIO-1 task-1] bXy8X1DXSnmNWYW-ws2MXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:00.040 [XNIO-1 task-1] bXy8X1DXSnmNWYW-ws2MXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/df071b62-7b8c-4ddf-9c6b-aba54a43c1ed +18:11:00.045 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d4826651-bca3-4f1e-9adb-8ac54d62d0c6 +18:11:00.058 [XNIO-1 task-1] 5289xwBYRnWdyzgzL9D_KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eedce509-f249-4ed0-94a6-dfdcd3d345ef, base path is set to: null +18:11:00.058 [XNIO-1 task-1] 5289xwBYRnWdyzgzL9D_KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.058 [XNIO-1 task-1] 5289xwBYRnWdyzgzL9D_KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:00.059 [XNIO-1 task-1] 5289xwBYRnWdyzgzL9D_KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eedce509-f249-4ed0-94a6-dfdcd3d345ef, base path is set to: null +18:11:00.059 [XNIO-1 task-1] 5289xwBYRnWdyzgzL9D_KA DEBUG com.networknt.schema.TypeValidator debug - validate( "eedce509-f249-4ed0-94a6-dfdcd3d345ef", "eedce509-f249-4ed0-94a6-dfdcd3d345ef", clientId) +18:11:00.063 [XNIO-1 task-1] CIXSfGKuREKBFp-lT2rBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b78e8103-baa4-4cca-997d-3b76edf31b84 +18:11:00.063 [XNIO-1 task-1] CIXSfGKuREKBFp-lT2rBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:00.063 [XNIO-1 task-1] CIXSfGKuREKBFp-lT2rBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:00.063 [XNIO-1 task-1] CIXSfGKuREKBFp-lT2rBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b78e8103-baa4-4cca-997d-3b76edf31b84 +18:11:00.065 [XNIO-1 task-1] gqbQh4XrRku0nAavdgmAmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b78e8103-baa4-4cca-997d-3b76edf31b84, base path is set to: null +18:11:00.065 [XNIO-1 task-1] gqbQh4XrRku0nAavdgmAmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.065 [XNIO-1 task-1] gqbQh4XrRku0nAavdgmAmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:00.065 [XNIO-1 task-1] gqbQh4XrRku0nAavdgmAmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b78e8103-baa4-4cca-997d-3b76edf31b84, base path is set to: null +18:11:00.066 [XNIO-1 task-1] gqbQh4XrRku0nAavdgmAmg DEBUG com.networknt.schema.TypeValidator debug - validate( "b78e8103-baa4-4cca-997d-3b76edf31b84", "b78e8103-baa4-4cca-997d-3b76edf31b84", clientId) +18:11:00.072 [XNIO-1 task-1] aI8q-o_iTgu-kcRXqoh9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ba6b43fd-3947-4ae1-ac10-a77aa0f4c3ab +18:11:00.072 [XNIO-1 task-1] aI8q-o_iTgu-kcRXqoh9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:00.072 [XNIO-1 task-1] aI8q-o_iTgu-kcRXqoh9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:00.073 [XNIO-1 task-1] aI8q-o_iTgu-kcRXqoh9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ba6b43fd-3947-4ae1-ac10-a77aa0f4c3ab +18:11:00.082 [XNIO-1 task-1] 1j4W2vARR5WLwWZig6n51A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.083 [XNIO-1 task-1] 1j4W2vARR5WLwWZig6n51A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.084 [XNIO-1 task-1] 1j4W2vARR5WLwWZig6n51A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.099 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.099 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.100 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b259c7f4-0fb8-4cca-bcac-ad476de7","clientDesc":"10469913-4505-4583-9234-2044320e01b8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:00.101 [XNIO-1 task-1] 4w19CpYUQ_6pF62OD67fFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:00.102 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5422bdf0 +18:11:00.105 [XNIO-1 task-1] yyzhqN7vSLCoW4WBOC10jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3471837-77f6-47ad-9dda-67536d2d3aff +18:11:00.105 [XNIO-1 task-1] yyzhqN7vSLCoW4WBOC10jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:00.105 [XNIO-1 task-1] yyzhqN7vSLCoW4WBOC10jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:00.105 [XNIO-1 task-1] yyzhqN7vSLCoW4WBOC10jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3471837-77f6-47ad-9dda-67536d2d3aff +18:11:00.111 [XNIO-1 task-1] LtQT7cbSQ3CI5f75CSqyUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.111 [XNIO-1 task-1] LtQT7cbSQ3CI5f75CSqyUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.111 [XNIO-1 task-1] LtQT7cbSQ3CI5f75CSqyUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.116 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:788e2e26-b764-440d-9187-5823fbecff45 +18:11:00.118 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:788e2e26-b764-440d-9187-5823fbecff45 +18:11:00.129 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:691fe94e +18:11:00.132 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.132 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.132 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.132 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b0141825 +18:11:00.133 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.133 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:00.133 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG com.networknt.schema.TypeValidator debug - validate( "dcea4e2b-4509-4d94-9fff-d899c12c7f71", {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:00.133 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b0141825 +18:11:00.133 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b0141825 +18:11:00.133 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:00.133 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG com.networknt.schema.TypeValidator debug - validate( "6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a", {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:00.134 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:00.134 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6ac0f3ff-3ebd-4ae6-99cf-5d04cf5a","clientDesc":"dcea4e2b-4509-4d94-9fff-d899c12c7f71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:00.134 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:00.134 [XNIO-1 task-1] _Xkr6WXaSsy1fv2c4IIWlw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:00.136 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:691fe94e +18:11:00.137 [XNIO-1 task-1] -hnGZBtfRRC0gToVBMFfgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.137 [XNIO-1 task-1] -hnGZBtfRRC0gToVBMFfgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.138 [XNIO-1 task-1] -hnGZBtfRRC0gToVBMFfgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.138 [XNIO-1 task-1] -hnGZBtfRRC0gToVBMFfgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:00.145 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:00.146 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:00.147 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.147 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:00.147 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c49fe7f-a885-4a1c-8fed-1aece889","clientDesc":"c56a5536-3df3-4c62-8236-c1a4f41bbb06","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:00.147 [XNIO-1 task-1] uUD6B1qOQfKy1bto0wDRTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:00.151 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b0141825 +18:11:00.219 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cf8f6bef +18:11:02.532 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cf8f6bef +18:11:02.532 [XNIO-1 task-1] H6n_kiJOTiGqVyczISgpww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:02.532 [XNIO-1 task-1] H6n_kiJOTiGqVyczISgpww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:02.532 [XNIO-1 task-1] H6n_kiJOTiGqVyczISgpww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89a803b6-4554-4795-8208-69481c892299, base path is set to: null +18:11:02.532 [XNIO-1 task-1] H6n_kiJOTiGqVyczISgpww DEBUG com.networknt.schema.TypeValidator debug - validate( "89a803b6-4554-4795-8208-69481c892299", "89a803b6-4554-4795-8208-69481c892299", clientId) +18:11:02.535 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b7e2bbf8-cb2b-4b25-aff3-084dd24719d0 +18:11:02.539 [XNIO-1 task-1] H6n_kiJOTiGqVyczISgpww ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:02.539 [XNIO-1 task-1] H6n_kiJOTiGqVyczISgpww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:02.543 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:805032f6-25a1-4feb-a3b3-cf0205d75d2b +18:11:05.181 [XNIO-1 task-1] 4SYUHzMOSVCOIDv0vcl1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.181 [XNIO-1 task-1] 4SYUHzMOSVCOIDv0vcl1RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.182 [XNIO-1 task-1] 4SYUHzMOSVCOIDv0vcl1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.182 [XNIO-1 task-1] 4SYUHzMOSVCOIDv0vcl1RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.219 [XNIO-1 task-1] FYxJi9eSR-S7V-LMmkmqoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.219 [XNIO-1 task-1] FYxJi9eSR-S7V-LMmkmqoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.220 [XNIO-1 task-1] FYxJi9eSR-S7V-LMmkmqoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.231 [XNIO-1 task-1] mEgaHhfdTGSsQTefQxl-mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.231 [XNIO-1 task-1] mEgaHhfdTGSsQTefQxl-mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.231 [XNIO-1 task-1] mEgaHhfdTGSsQTefQxl-mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.232 [XNIO-1 task-1] mEgaHhfdTGSsQTefQxl-mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.237 [XNIO-1 task-1] Gtfyi17nRE2EN78flnD3Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.237 [XNIO-1 task-1] Gtfyi17nRE2EN78flnD3Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.237 [XNIO-1 task-1] Gtfyi17nRE2EN78flnD3Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.249 [XNIO-1 task-1] 99STxO5EQTm9dgXH3rNqYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.249 [XNIO-1 task-1] 99STxO5EQTm9dgXH3rNqYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.249 [XNIO-1 task-1] 99STxO5EQTm9dgXH3rNqYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.249 [XNIO-1 task-1] 99STxO5EQTm9dgXH3rNqYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.255 [XNIO-1 task-1] CBieRkY9RWCf8fCdDzlSyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6da87700-9393-446a-888c-738b3e4319cb, base path is set to: null +18:11:05.255 [XNIO-1 task-1] CBieRkY9RWCf8fCdDzlSyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.255 [XNIO-1 task-1] CBieRkY9RWCf8fCdDzlSyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.255 [XNIO-1 task-1] CBieRkY9RWCf8fCdDzlSyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6da87700-9393-446a-888c-738b3e4319cb, base path is set to: null +18:11:05.255 [XNIO-1 task-1] CBieRkY9RWCf8fCdDzlSyA DEBUG com.networknt.schema.TypeValidator debug - validate( "6da87700-9393-446a-888c-738b3e4319cb", "6da87700-9393-446a-888c-738b3e4319cb", clientId) +18:11:05.261 [XNIO-1 task-1] lGqW1RuRQbCOqSLX0s4Paw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.261 [XNIO-1 task-1] lGqW1RuRQbCOqSLX0s4Paw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.261 [XNIO-1 task-1] lGqW1RuRQbCOqSLX0s4Paw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.261 [XNIO-1 task-1] lGqW1RuRQbCOqSLX0s4Paw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.266 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.266 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "72372190-ec6e-4fed-8ccd-0eda7e6c2ef6", {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f7964bd-8576-4a0d-b956-eb3847e4", {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5f7964bd-8576-4a0d-b956-eb3847e4","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.267 [XNIO-1 task-1] 9Zet1CInSUmPkv01oqxCJw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:05.269 [XNIO-1 task-1] oD9wptXIQRGXpbY-t6o38w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.269 [XNIO-1 task-1] oD9wptXIQRGXpbY-t6o38w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.269 [XNIO-1 task-1] oD9wptXIQRGXpbY-t6o38w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.270 [XNIO-1 task-1] oD9wptXIQRGXpbY-t6o38w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.276 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5cea23a-94cc-4623-97ec-e71dc908","clientDesc":"72372190-ec6e-4fed-8ccd-0eda7e6c2ef6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.277 [XNIO-1 task-1] c7dYB0qISTGQYf7obx6L4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.279 [XNIO-1 task-1] YEqztHTNTwW56R5LxKCCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfd5ed24-9c95-4c63-8142-d2a30d2ebde5 +18:11:05.279 [XNIO-1 task-1] YEqztHTNTwW56R5LxKCCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.279 [XNIO-1 task-1] YEqztHTNTwW56R5LxKCCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.279 [XNIO-1 task-1] YEqztHTNTwW56R5LxKCCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfd5ed24-9c95-4c63-8142-d2a30d2ebde5 +18:11:05.281 [XNIO-1 task-1] sL_gqIb7T4KwtTa6dG58Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.281 [XNIO-1 task-1] sL_gqIb7T4KwtTa6dG58Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.281 [XNIO-1 task-1] sL_gqIb7T4KwtTa6dG58Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.281 [XNIO-1 task-1] sL_gqIb7T4KwtTa6dG58Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.286 [XNIO-1 task-1] Ii16QugzRE-vDerQ8um9qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.286 [XNIO-1 task-1] Ii16QugzRE-vDerQ8um9qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.287 [XNIO-1 task-1] Ii16QugzRE-vDerQ8um9qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.297 [XNIO-1 task-1] AtuV-qw-RsOBIhAUxCsfxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ba4cdaea-f7e6-4fba-a2aa-c0338423569a, base path is set to: null +18:11:05.297 [XNIO-1 task-1] AtuV-qw-RsOBIhAUxCsfxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.298 [XNIO-1 task-1] AtuV-qw-RsOBIhAUxCsfxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.298 [XNIO-1 task-1] AtuV-qw-RsOBIhAUxCsfxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ba4cdaea-f7e6-4fba-a2aa-c0338423569a, base path is set to: null +18:11:05.298 [XNIO-1 task-1] AtuV-qw-RsOBIhAUxCsfxw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba4cdaea-f7e6-4fba-a2aa-c0338423569a", "ba4cdaea-f7e6-4fba-a2aa-c0338423569a", clientId) +18:11:05.320 [XNIO-1 task-1] _j7ShgvQQ7C1WT7eSUjg4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfd5ed24-9c95-4c63-8142-d2a30d2ebde5 +18:11:05.321 [XNIO-1 task-1] _j7ShgvQQ7C1WT7eSUjg4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.321 [XNIO-1 task-1] _j7ShgvQQ7C1WT7eSUjg4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.321 [XNIO-1 task-1] _j7ShgvQQ7C1WT7eSUjg4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfd5ed24-9c95-4c63-8142-d2a30d2ebde5 +18:11:05.323 [XNIO-1 task-1] WPhlt4ksQk6X3HJWbNcyoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfd5ed24-9c95-4c63-8142-d2a30d2ebde5, base path is set to: null +18:11:05.323 [XNIO-1 task-1] WPhlt4ksQk6X3HJWbNcyoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.323 [XNIO-1 task-1] WPhlt4ksQk6X3HJWbNcyoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.323 [XNIO-1 task-1] WPhlt4ksQk6X3HJWbNcyoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfd5ed24-9c95-4c63-8142-d2a30d2ebde5, base path is set to: null +18:11:05.323 [XNIO-1 task-1] WPhlt4ksQk6X3HJWbNcyoA DEBUG com.networknt.schema.TypeValidator debug - validate( "bfd5ed24-9c95-4c63-8142-d2a30d2ebde5", "bfd5ed24-9c95-4c63-8142-d2a30d2ebde5", clientId) +18:11:05.328 [XNIO-1 task-1] ZQnVjk8ETIeTCBXqvtF4cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.328 [XNIO-1 task-1] ZQnVjk8ETIeTCBXqvtF4cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.328 [XNIO-1 task-1] ZQnVjk8ETIeTCBXqvtF4cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.328 [XNIO-1 task-1] ZQnVjk8ETIeTCBXqvtF4cw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.334 [XNIO-1 task-1] k35zq8ZIQtC4oTd6nEmi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.334 [XNIO-1 task-1] k35zq8ZIQtC4oTd6nEmi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.334 [XNIO-1 task-1] k35zq8ZIQtC4oTd6nEmi6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.335 [XNIO-1 task-1] k35zq8ZIQtC4oTd6nEmi6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.340 [XNIO-1 task-1] 0AAkrB85SDWk_sauLj_Urg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.340 [XNIO-1 task-1] 0AAkrB85SDWk_sauLj_Urg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.340 [XNIO-1 task-1] 0AAkrB85SDWk_sauLj_Urg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.340 [XNIO-1 task-1] 0AAkrB85SDWk_sauLj_Urg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.345 [XNIO-1 task-1] uXn_6wtzR_2ZIe4EHRTp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.345 [XNIO-1 task-1] uXn_6wtzR_2ZIe4EHRTp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.345 [XNIO-1 task-1] uXn_6wtzR_2ZIe4EHRTp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.345 [XNIO-1 task-1] uXn_6wtzR_2ZIe4EHRTp6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.353 [XNIO-1 task-1] 6Fx0dntKTQ-ZXNEoSIaAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.353 [XNIO-1 task-1] 6Fx0dntKTQ-ZXNEoSIaAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.353 [XNIO-1 task-1] 6Fx0dntKTQ-ZXNEoSIaAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.364 [XNIO-1 task-1] oTAjeso1QSa_o-TksWZrbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.364 [XNIO-1 task-1] oTAjeso1QSa_o-TksWZrbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.364 [XNIO-1 task-1] oTAjeso1QSa_o-TksWZrbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.365 [XNIO-1 task-1] oTAjeso1QSa_o-TksWZrbg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.370 [XNIO-1 task-1] 0HrM4FaXQ1-ZkPdU-kPbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094 +18:11:05.370 [XNIO-1 task-1] 0HrM4FaXQ1-ZkPdU-kPbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.370 [XNIO-1 task-1] 0HrM4FaXQ1-ZkPdU-kPbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.370 [XNIO-1 task-1] 0HrM4FaXQ1-ZkPdU-kPbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094 +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.373 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.374 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9e6612a-56a5-43a1-9020-4b03475b","clientDesc":"f159d443-1194-4104-b143-8bdb4758859a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.374 [XNIO-1 task-1] zR7T3lGqRBauKQWZIjFmVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.375 [XNIO-1 task-1] zGCO4WhFSLWVNo53yiPrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094 +18:11:05.375 [XNIO-1 task-1] zGCO4WhFSLWVNo53yiPrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.376 [XNIO-1 task-1] zGCO4WhFSLWVNo53yiPrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.376 [XNIO-1 task-1] zGCO4WhFSLWVNo53yiPrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094 +18:11:05.377 [XNIO-1 task-1] LZC7XKUmTHSAnf1bb4-q6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.377 [XNIO-1 task-1] LZC7XKUmTHSAnf1bb4-q6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.377 [XNIO-1 task-1] LZC7XKUmTHSAnf1bb4-q6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.377 [XNIO-1 task-1] LZC7XKUmTHSAnf1bb4-q6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.383 [XNIO-1 task-1] NTfa7uMZQpaJKi3HdiZrFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094, base path is set to: null +18:11:05.383 [XNIO-1 task-1] NTfa7uMZQpaJKi3HdiZrFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.384 [XNIO-1 task-1] NTfa7uMZQpaJKi3HdiZrFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.384 [XNIO-1 task-1] NTfa7uMZQpaJKi3HdiZrFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094, base path is set to: null +18:11:05.384 [XNIO-1 task-1] NTfa7uMZQpaJKi3HdiZrFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2480d52-86a4-481b-8d3b-4132b1d3c094", "f2480d52-86a4-481b-8d3b-4132b1d3c094", clientId) +18:11:05.386 [XNIO-1 task-1] 749ZJf-IQPesY0UmO5uolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094 +18:11:05.386 [XNIO-1 task-1] 749ZJf-IQPesY0UmO5uolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.386 [XNIO-1 task-1] 749ZJf-IQPesY0UmO5uolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.386 [XNIO-1 task-1] 749ZJf-IQPesY0UmO5uolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2480d52-86a4-481b-8d3b-4132b1d3c094 +18:11:05.391 [XNIO-1 task-1] GvmYUj9xQ5KW6_tdqiEbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.391 [XNIO-1 task-1] GvmYUj9xQ5KW6_tdqiEbMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.391 [XNIO-1 task-1] GvmYUj9xQ5KW6_tdqiEbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.391 [XNIO-1 task-1] GvmYUj9xQ5KW6_tdqiEbMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.397 [XNIO-1 task-1] Nn-jI8bGRGO01n9UbC1I1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.397 [XNIO-1 task-1] Nn-jI8bGRGO01n9UbC1I1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.397 [XNIO-1 task-1] Nn-jI8bGRGO01n9UbC1I1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.397 [XNIO-1 task-1] Nn-jI8bGRGO01n9UbC1I1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.403 [XNIO-1 task-1] k-ZaLWUhSTej96miupibbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.403 [XNIO-1 task-1] k-ZaLWUhSTej96miupibbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.403 [XNIO-1 task-1] k-ZaLWUhSTej96miupibbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.404 [XNIO-1 task-1] k-ZaLWUhSTej96miupibbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.409 [XNIO-1 task-1] PEkMgCSqRMWj-wuvovPZcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.409 [XNIO-1 task-1] PEkMgCSqRMWj-wuvovPZcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.409 [XNIO-1 task-1] PEkMgCSqRMWj-wuvovPZcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.409 [XNIO-1 task-1] PEkMgCSqRMWj-wuvovPZcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.414 [XNIO-1 task-1] a2zsF38UT5CQGtkwDaxe1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.414 [XNIO-1 task-1] a2zsF38UT5CQGtkwDaxe1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.414 [XNIO-1 task-1] a2zsF38UT5CQGtkwDaxe1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.427 [XNIO-1 task-1] SQ5ZbR8lRHOp427LQgGh3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.427 [XNIO-1 task-1] SQ5ZbR8lRHOp427LQgGh3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.427 [XNIO-1 task-1] SQ5ZbR8lRHOp427LQgGh3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.432 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.433 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.438 [XNIO-1 task-1] 2DGKbS68TNCojTjJO0gelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.438 [XNIO-1 task-1] 2DGKbS68TNCojTjJO0gelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.438 [XNIO-1 task-1] 2DGKbS68TNCojTjJO0gelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.438 [XNIO-1 task-1] 2DGKbS68TNCojTjJO0gelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.440 [XNIO-1 task-1] 7DTviC7dQcK00UGy8S4w4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.440 [XNIO-1 task-1] 7DTviC7dQcK00UGy8S4w4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.440 [XNIO-1 task-1] 7DTviC7dQcK00UGy8S4w4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.452 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.452 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.452 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.452 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ddfc3a0-91c4-4b2c-8103-0f126293","clientDesc":"5fe8cd79-8216-4f8d-ae5f-a128ba79c3e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.453 [XNIO-1 task-1] -wUc1u2URteMC1_YWHpIfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.455 [XNIO-1 task-1] UyinWJedQcaEoAb1xFSu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.455 [XNIO-1 task-1] UyinWJedQcaEoAb1xFSu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.455 [XNIO-1 task-1] UyinWJedQcaEoAb1xFSu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.456 [XNIO-1 task-1] UyinWJedQcaEoAb1xFSu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.457 [XNIO-1 task-1] AaMeGvSCSNioLkr_kqkM9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.457 [XNIO-1 task-1] AaMeGvSCSNioLkr_kqkM9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.458 [XNIO-1 task-1] AaMeGvSCSNioLkr_kqkM9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.468 [XNIO-1 task-1] 6XromLFLRNGE-wuFZXaDMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.469 [XNIO-1 task-1] 6XromLFLRNGE-wuFZXaDMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.469 [XNIO-1 task-1] 6XromLFLRNGE-wuFZXaDMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.479 [XNIO-1 task-1] O5xjBlEET8-fipPOkHm5Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.479 [XNIO-1 task-1] O5xjBlEET8-fipPOkHm5Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.480 [XNIO-1 task-1] O5xjBlEET8-fipPOkHm5Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.480 [XNIO-1 task-1] O5xjBlEET8-fipPOkHm5Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.485 [XNIO-1 task-1] 9-2VcPUBRXuxPZRDtyORBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.485 [XNIO-1 task-1] 9-2VcPUBRXuxPZRDtyORBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.485 [XNIO-1 task-1] 9-2VcPUBRXuxPZRDtyORBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.495 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.495 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad2a2856-4762-4499-b4c0-134959b7","clientDesc":"f767555d-c5c4-4ccf-ac6d-ade7feb214bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.496 [XNIO-1 task-1] D9sPYA9NTu28jvzEa19Olw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.498 [XNIO-1 task-1] 7SYGJQePT1GbakY2x18VdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.498 [XNIO-1 task-1] 7SYGJQePT1GbakY2x18VdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.498 [XNIO-1 task-1] 7SYGJQePT1GbakY2x18VdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.498 [XNIO-1 task-1] 7SYGJQePT1GbakY2x18VdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.500 [XNIO-1 task-1] SgA7CIzlTx-jTa_zIFthyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.500 [XNIO-1 task-1] SgA7CIzlTx-jTa_zIFthyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.500 [XNIO-1 task-1] SgA7CIzlTx-jTa_zIFthyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.501 [XNIO-1 task-1] SgA7CIzlTx-jTa_zIFthyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.506 [XNIO-1 task-1] E3o45gdmQnqj7miBKAWrXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0891cb24-b65d-4cdc-a005-4cdfd2f21f82, base path is set to: null +18:11:05.506 [XNIO-1 task-1] E3o45gdmQnqj7miBKAWrXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.506 [XNIO-1 task-1] E3o45gdmQnqj7miBKAWrXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.506 [XNIO-1 task-1] E3o45gdmQnqj7miBKAWrXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0891cb24-b65d-4cdc-a005-4cdfd2f21f82, base path is set to: null +18:11:05.506 [XNIO-1 task-1] E3o45gdmQnqj7miBKAWrXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0891cb24-b65d-4cdc-a005-4cdfd2f21f82", "0891cb24-b65d-4cdc-a005-4cdfd2f21f82", clientId) +18:11:05.511 [XNIO-1 task-1] Tk-EHnMdRqCD5U5f6dICcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/42d399b3-8757-45a1-b04f-9f8c69c3063f +18:11:05.511 [XNIO-1 task-1] Tk-EHnMdRqCD5U5f6dICcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.511 [XNIO-1 task-1] Tk-EHnMdRqCD5U5f6dICcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.511 [XNIO-1 task-1] Tk-EHnMdRqCD5U5f6dICcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/42d399b3-8757-45a1-b04f-9f8c69c3063f +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.514 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.515 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.516 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f672c82-0531-4f7d-83b3-1ac0929d","clientDesc":"92a89b63-34db-418f-8181-249d96c994ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.516 [XNIO-1 task-1] rknSuYU7Rb6Y_brBstW66Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.518 [XNIO-1 task-1] kc9DK6YyR5uhh61HTGK0sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.518 [XNIO-1 task-1] kc9DK6YyR5uhh61HTGK0sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.518 [XNIO-1 task-1] kc9DK6YyR5uhh61HTGK0sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.518 [XNIO-1 task-1] kc9DK6YyR5uhh61HTGK0sA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.523 [XNIO-1 task-1] CWO_IDYCQ3y6U8-rNibTrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3681e0b-6d65-4cd7-b1a1-b4555c92656f +18:11:05.523 [XNIO-1 task-1] CWO_IDYCQ3y6U8-rNibTrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.523 [XNIO-1 task-1] CWO_IDYCQ3y6U8-rNibTrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.523 [XNIO-1 task-1] CWO_IDYCQ3y6U8-rNibTrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3681e0b-6d65-4cd7-b1a1-b4555c92656f +18:11:05.526 [XNIO-1 task-1] uv-3udrsRwyYEL0_Em4JEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/42d399b3-8757-45a1-b04f-9f8c69c3063f, base path is set to: null +18:11:05.526 [XNIO-1 task-1] uv-3udrsRwyYEL0_Em4JEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.526 [XNIO-1 task-1] uv-3udrsRwyYEL0_Em4JEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.526 [XNIO-1 task-1] uv-3udrsRwyYEL0_Em4JEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/42d399b3-8757-45a1-b04f-9f8c69c3063f, base path is set to: null +18:11:05.526 [XNIO-1 task-1] uv-3udrsRwyYEL0_Em4JEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "42d399b3-8757-45a1-b04f-9f8c69c3063f", "42d399b3-8757-45a1-b04f-9f8c69c3063f", clientId) +18:11:05.530 [XNIO-1 task-1] 0TjNw8rPTzaqk4gSOfLnRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.530 [XNIO-1 task-1] 0TjNw8rPTzaqk4gSOfLnRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.530 [XNIO-1 task-1] 0TjNw8rPTzaqk4gSOfLnRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.530 [XNIO-1 task-1] 0TjNw8rPTzaqk4gSOfLnRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.535 [XNIO-1 task-1] XP5J8q8MRquTU9UafOOxbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3681e0b-6d65-4cd7-b1a1-b4555c92656f +18:11:05.535 [XNIO-1 task-1] XP5J8q8MRquTU9UafOOxbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.535 [XNIO-1 task-1] XP5J8q8MRquTU9UafOOxbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.536 [XNIO-1 task-1] XP5J8q8MRquTU9UafOOxbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3681e0b-6d65-4cd7-b1a1-b4555c92656f +18:11:05.537 [XNIO-1 task-1] BENvN2ciSQmoXt6-Xcq2_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.537 [XNIO-1 task-1] BENvN2ciSQmoXt6-Xcq2_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.537 [XNIO-1 task-1] BENvN2ciSQmoXt6-Xcq2_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.537 [XNIO-1 task-1] BENvN2ciSQmoXt6-Xcq2_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.542 [XNIO-1 task-1] 5BHW0ZVMTEqmYQw9YLsc5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.542 [XNIO-1 task-1] 5BHW0ZVMTEqmYQw9YLsc5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.542 [XNIO-1 task-1] 5BHW0ZVMTEqmYQw9YLsc5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.542 [XNIO-1 task-1] 5BHW0ZVMTEqmYQw9YLsc5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.547 [XNIO-1 task-1] EtRG8UtrRHe4Ly0DTSBSSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.547 [XNIO-1 task-1] EtRG8UtrRHe4Ly0DTSBSSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.547 [XNIO-1 task-1] EtRG8UtrRHe4Ly0DTSBSSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.557 [XNIO-1 task-1] o8_OOV5CSOeuF4nOsIKG1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.557 [XNIO-1 task-1] o8_OOV5CSOeuF4nOsIKG1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.557 [XNIO-1 task-1] o8_OOV5CSOeuF4nOsIKG1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.558 [XNIO-1 task-1] o8_OOV5CSOeuF4nOsIKG1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.563 [XNIO-1 task-1] 2u_9zcZERSGpk6bSxgV3Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3681e0b-6d65-4cd7-b1a1-b4555c92656f, base path is set to: null +18:11:05.563 [XNIO-1 task-1] 2u_9zcZERSGpk6bSxgV3Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.563 [XNIO-1 task-1] 2u_9zcZERSGpk6bSxgV3Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.563 [XNIO-1 task-1] 2u_9zcZERSGpk6bSxgV3Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3681e0b-6d65-4cd7-b1a1-b4555c92656f, base path is set to: null +18:11:05.563 [XNIO-1 task-1] 2u_9zcZERSGpk6bSxgV3Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "c3681e0b-6d65-4cd7-b1a1-b4555c92656f", "c3681e0b-6d65-4cd7-b1a1-b4555c92656f", clientId) +18:11:05.568 [XNIO-1 task-1] MMxacXAWR6W3LJZEgfkk-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.568 [XNIO-1 task-1] MMxacXAWR6W3LJZEgfkk-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.569 [XNIO-1 task-1] MMxacXAWR6W3LJZEgfkk-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.579 [XNIO-1 task-1] pdsRMTn9S-yauxeMDad4XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.580 [XNIO-1 task-1] pdsRMTn9S-yauxeMDad4XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.580 [XNIO-1 task-1] pdsRMTn9S-yauxeMDad4XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.580 [XNIO-1 task-1] pdsRMTn9S-yauxeMDad4XQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.590 [XNIO-1 task-1] PPf6rIJYQrShlrY5sY3wZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.590 [XNIO-1 task-1] PPf6rIJYQrShlrY5sY3wZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.590 [XNIO-1 task-1] PPf6rIJYQrShlrY5sY3wZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.595 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1f4d597c-f7ab-43f8-961c-b33e8785d4e7 +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.601 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fb94e11-3bcf-403f-bf04-f8bdb075","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.602 [XNIO-1 task-1] JaSN-sTyRzek-a8Ks4eePQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "617d157f-f4c2-41a6-9ff7-7918c006cdb4", {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.604 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2f1a4601-55fa-4695-90db-7409648b", {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:05.605 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:05.605 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2f1a4601-55fa-4695-90db-7409648b","clientDesc":"617d157f-f4c2-41a6-9ff7-7918c006cdb4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:05.605 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.605 [XNIO-1 task-1] efwXhKxvQxSpU_-p6biQoQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.607 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.608 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.608 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad9df5c2-b40c-4dab-8953-d72f3ebf","clientDesc":"91061061-33fb-4ec1-b915-403a758904de","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.608 [XNIO-1 task-1] JYtzwglFQterP0FxJWS4Zw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.610 [XNIO-1 task-1] PTiDYodjRS2_HihYWvGoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f4d597c-f7ab-43f8-961c-b33e8785d4e7 +18:11:05.610 [XNIO-1 task-1] PTiDYodjRS2_HihYWvGoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.610 [XNIO-1 task-1] PTiDYodjRS2_HihYWvGoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.610 [XNIO-1 task-1] PTiDYodjRS2_HihYWvGoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f4d597c-f7ab-43f8-961c-b33e8785d4e7 +18:11:05.611 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1f4d597c-f7ab-43f8-961c-b33e8785d4e7 +18:11:05.617 [XNIO-1 task-1] M4H6Z69hTXimqJDeJaRTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.617 [XNIO-1 task-1] M4H6Z69hTXimqJDeJaRTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.617 [XNIO-1 task-1] M4H6Z69hTXimqJDeJaRTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.617 [XNIO-1 task-1] M4H6Z69hTXimqJDeJaRTgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.623 [XNIO-1 task-1] pR4h7csvRDiB-55jVfE3JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.623 [XNIO-1 task-1] pR4h7csvRDiB-55jVfE3JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.623 [XNIO-1 task-1] pR4h7csvRDiB-55jVfE3JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.635 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "4c14b8da-e329-49c4-bc8d-0212b0898776", {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "2228827a-d7df-4699-be0e-2868b1db", {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2228827a-d7df-4699-be0e-2868b1db","clientDesc":"4c14b8da-e329-49c4-bc8d-0212b0898776","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.636 [XNIO-1 task-1] eKbGHuJOQF6nDiqWzWH_ag DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:05.638 [XNIO-1 task-1] m3BEHsTSQKKdSL1NFdxxPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/292ec6ec-fe50-4ff4-9fa6-75f9a0c51d3e, base path is set to: null +18:11:05.638 [XNIO-1 task-1] m3BEHsTSQKKdSL1NFdxxPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.639 [XNIO-1 task-1] m3BEHsTSQKKdSL1NFdxxPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.639 [XNIO-1 task-1] m3BEHsTSQKKdSL1NFdxxPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/292ec6ec-fe50-4ff4-9fa6-75f9a0c51d3e, base path is set to: null +18:11:05.639 [XNIO-1 task-1] m3BEHsTSQKKdSL1NFdxxPA DEBUG com.networknt.schema.TypeValidator debug - validate( "292ec6ec-fe50-4ff4-9fa6-75f9a0c51d3e", "292ec6ec-fe50-4ff4-9fa6-75f9a0c51d3e", clientId) +18:11:05.641 [XNIO-1 task-1] KSMIA6MvTmWagSJyqIjOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.641 [XNIO-1 task-1] KSMIA6MvTmWagSJyqIjOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.641 [XNIO-1 task-1] KSMIA6MvTmWagSJyqIjOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.641 [XNIO-1 task-1] KSMIA6MvTmWagSJyqIjOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.643 [XNIO-1 task-1] XBCvpX2NQmamzgMdJ9PqjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.643 [XNIO-1 task-1] XBCvpX2NQmamzgMdJ9PqjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.643 [XNIO-1 task-1] XBCvpX2NQmamzgMdJ9PqjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.653 [XNIO-1 task-1] DH7G7la1Q5-2Zp0gtzInfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.653 [XNIO-1 task-1] DH7G7la1Q5-2Zp0gtzInfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.654 [XNIO-1 task-1] DH7G7la1Q5-2Zp0gtzInfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.664 [XNIO-1 task-1] NR3NuxcCRqew7aeeSP5NyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2ba354f-7ec7-44e1-b42d-7c973108f5b3, base path is set to: null +18:11:05.664 [XNIO-1 task-1] NR3NuxcCRqew7aeeSP5NyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.664 [XNIO-1 task-1] NR3NuxcCRqew7aeeSP5NyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.664 [XNIO-1 task-1] NR3NuxcCRqew7aeeSP5NyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2ba354f-7ec7-44e1-b42d-7c973108f5b3, base path is set to: null +18:11:05.665 [XNIO-1 task-1] NR3NuxcCRqew7aeeSP5NyA DEBUG com.networknt.schema.TypeValidator debug - validate( "b2ba354f-7ec7-44e1-b42d-7c973108f5b3", "b2ba354f-7ec7-44e1-b42d-7c973108f5b3", clientId) +18:11:05.667 [XNIO-1 task-1] rIxTTl5XQgiJck95Z1cTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.667 [XNIO-1 task-1] rIxTTl5XQgiJck95Z1cTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.667 [XNIO-1 task-1] rIxTTl5XQgiJck95Z1cTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.667 [XNIO-1 task-1] rIxTTl5XQgiJck95Z1cTxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.669 [XNIO-1 task-1] dZR6LX93Rl67n_gHxMPS7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2ba354f-7ec7-44e1-b42d-7c973108f5b3, base path is set to: null +18:11:05.669 [XNIO-1 task-1] dZR6LX93Rl67n_gHxMPS7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.669 [XNIO-1 task-1] dZR6LX93Rl67n_gHxMPS7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.669 [XNIO-1 task-1] dZR6LX93Rl67n_gHxMPS7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2ba354f-7ec7-44e1-b42d-7c973108f5b3, base path is set to: null +18:11:05.669 [XNIO-1 task-1] dZR6LX93Rl67n_gHxMPS7g DEBUG com.networknt.schema.TypeValidator debug - validate( "b2ba354f-7ec7-44e1-b42d-7c973108f5b3", "b2ba354f-7ec7-44e1-b42d-7c973108f5b3", clientId) +18:11:05.671 [XNIO-1 task-1] T-_75o-AQBCpZNN519GnQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.671 [XNIO-1 task-1] T-_75o-AQBCpZNN519GnQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.671 [XNIO-1 task-1] T-_75o-AQBCpZNN519GnQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.671 [XNIO-1 task-1] T-_75o-AQBCpZNN519GnQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.674 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.674 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.674 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e741556a-3ff6-425f-8d92-ab244c5d","clientDesc":"bd56b125-cc65-40b6-b27c-093fe2848a46","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.675 [XNIO-1 task-1] kJxm0ZK4SemQTbG7mEM5Xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.677 [XNIO-1 task-1] UwImn9mGTyKmBoPTev8Ang DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.677 [XNIO-1 task-1] UwImn9mGTyKmBoPTev8Ang DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.677 [XNIO-1 task-1] UwImn9mGTyKmBoPTev8Ang DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.689 [XNIO-1 task-1] stgQGy3iTzGVSoeM7Cu4ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.689 [XNIO-1 task-1] stgQGy3iTzGVSoeM7Cu4ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.689 [XNIO-1 task-1] stgQGy3iTzGVSoeM7Cu4ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.689 [XNIO-1 task-1] stgQGy3iTzGVSoeM7Cu4ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0a73418f-61e8-4d3d-bcd7-601b6710ca76 +18:11:05.694 [XNIO-1 task-1] DjjwvtZWR1KJT8TCFlCE4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.694 [XNIO-1 task-1] DjjwvtZWR1KJT8TCFlCE4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.694 [XNIO-1 task-1] DjjwvtZWR1KJT8TCFlCE4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.699 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6a67debe-c1ac-47dc-aaab-3051a2d91a96 +18:11:05.700 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6a67debe-c1ac-47dc-aaab-3051a2d91a96 +18:11:05.705 [XNIO-1 task-1] 1KRHrSmERzeb9nF6OeR3Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b2ba354f-7ec7-44e1-b42d-7c973108f5b3 +18:11:05.705 [XNIO-1 task-1] 1KRHrSmERzeb9nF6OeR3Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.705 [XNIO-1 task-1] 1KRHrSmERzeb9nF6OeR3Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.705 [XNIO-1 task-1] 1KRHrSmERzeb9nF6OeR3Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b2ba354f-7ec7-44e1-b42d-7c973108f5b3 +18:11:05.710 [XNIO-1 task-1] xNSuGOHdRn-POo-AhmSc7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/def2f2b7-dc36-4094-ae3f-52c7a532a191, base path is set to: null +18:11:05.710 [XNIO-1 task-1] xNSuGOHdRn-POo-AhmSc7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.710 [XNIO-1 task-1] xNSuGOHdRn-POo-AhmSc7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.710 [XNIO-1 task-1] xNSuGOHdRn-POo-AhmSc7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/def2f2b7-dc36-4094-ae3f-52c7a532a191, base path is set to: null +18:11:05.710 [XNIO-1 task-1] xNSuGOHdRn-POo-AhmSc7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "def2f2b7-dc36-4094-ae3f-52c7a532a191", "def2f2b7-dc36-4094-ae3f-52c7a532a191", clientId) +18:11:05.716 [XNIO-1 task-1] r3qORAhrSLuPS9Volroh7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6a67debe-c1ac-47dc-aaab-3051a2d91a96 +18:11:05.716 [XNIO-1 task-1] r3qORAhrSLuPS9Volroh7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.716 [XNIO-1 task-1] r3qORAhrSLuPS9Volroh7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.716 [XNIO-1 task-1] r3qORAhrSLuPS9Volroh7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6a67debe-c1ac-47dc-aaab-3051a2d91a96 +18:11:05.717 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6a67debe-c1ac-47dc-aaab-3051a2d91a96 +18:11:05.723 [XNIO-1 task-1] 79FlHJdlRNi8yNVSMSvWJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.723 [XNIO-1 task-1] 79FlHJdlRNi8yNVSMSvWJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.723 [XNIO-1 task-1] 79FlHJdlRNi8yNVSMSvWJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.724 [XNIO-1 task-1] 79FlHJdlRNi8yNVSMSvWJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.729 [XNIO-1 task-1] aQz-0YFES-SgcC1YwpSEmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.729 [XNIO-1 task-1] aQz-0YFES-SgcC1YwpSEmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.729 [XNIO-1 task-1] aQz-0YFES-SgcC1YwpSEmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.729 [XNIO-1 task-1] aQz-0YFES-SgcC1YwpSEmA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.735 [XNIO-1 task-1] VnShz4vhRFq_Nbfe2JX8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3aa2ef7c-d510-4078-9008-0061ed979583 +18:11:05.735 [XNIO-1 task-1] VnShz4vhRFq_Nbfe2JX8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.735 [XNIO-1 task-1] VnShz4vhRFq_Nbfe2JX8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.735 [XNIO-1 task-1] VnShz4vhRFq_Nbfe2JX8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3aa2ef7c-d510-4078-9008-0061ed979583 +18:11:05.740 [XNIO-1 task-1] kPD-OC9uTrSP4-N8xweczQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.740 [XNIO-1 task-1] kPD-OC9uTrSP4-N8xweczQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.740 [XNIO-1 task-1] kPD-OC9uTrSP4-N8xweczQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.740 [XNIO-1 task-1] kPD-OC9uTrSP4-N8xweczQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.746 [XNIO-1 task-1] nV9vMnIYSpWLepAb-ohaUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f, base path is set to: null +18:11:05.746 [XNIO-1 task-1] nV9vMnIYSpWLepAb-ohaUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.746 [XNIO-1 task-1] nV9vMnIYSpWLepAb-ohaUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.746 [XNIO-1 task-1] nV9vMnIYSpWLepAb-ohaUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f, base path is set to: null +18:11:05.746 [XNIO-1 task-1] nV9vMnIYSpWLepAb-ohaUw DEBUG com.networknt.schema.TypeValidator debug - validate( "b0a9c938-9de0-49bf-bf6d-6773283dfe6f", "b0a9c938-9de0-49bf-bf6d-6773283dfe6f", clientId) +18:11:05.748 [XNIO-1 task-1] 6P1wM8dRRHuREsA5sUzp5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.748 [XNIO-1 task-1] 6P1wM8dRRHuREsA5sUzp5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.749 [XNIO-1 task-1] 6P1wM8dRRHuREsA5sUzp5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.761 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.761 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "3a50fec0-d488-4ca4-90c0-58335bf08f14", {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1306ed0-117f-40d9-9bea-7bb37b4f", {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b1306ed0-117f-40d9-9bea-7bb37b4f","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.762 [XNIO-1 task-1] JSJTgznOTpOfddnfG6P0yw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:05.765 [XNIO-1 task-1] YYBXjOJVTbSGRFhQkqlo0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b, base path is set to: null +18:11:05.765 [XNIO-1 task-1] YYBXjOJVTbSGRFhQkqlo0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.765 [XNIO-1 task-1] YYBXjOJVTbSGRFhQkqlo0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.765 [XNIO-1 task-1] YYBXjOJVTbSGRFhQkqlo0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b, base path is set to: null +18:11:05.765 [XNIO-1 task-1] YYBXjOJVTbSGRFhQkqlo0A DEBUG com.networknt.schema.TypeValidator debug - validate( "ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b", "ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b", clientId) +18:11:05.767 [XNIO-1 task-1] O3kljKkOSgeJ231plHzU_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.767 [XNIO-1 task-1] O3kljKkOSgeJ231plHzU_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.767 [XNIO-1 task-1] O3kljKkOSgeJ231plHzU_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.767 [XNIO-1 task-1] O3kljKkOSgeJ231plHzU_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.768 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:85c9402d-ce28-4b41-9bf4-8ddef99e08ad +18:11:05.772 [XNIO-1 task-1] qxnk77BGQvaXMohc7h0ZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/292ec6ec-fe50-4ff4-9fa6-75f9a0c51d3e +18:11:05.772 [XNIO-1 task-1] qxnk77BGQvaXMohc7h0ZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.772 [XNIO-1 task-1] qxnk77BGQvaXMohc7h0ZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.772 [XNIO-1 task-1] qxnk77BGQvaXMohc7h0ZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/292ec6ec-fe50-4ff4-9fa6-75f9a0c51d3e +18:11:05.777 [XNIO-1 task-1] gaUE7l5LSTuv5KIbS4fbPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c0efa481-4bb0-4be5-a7fc-28284c04296b, base path is set to: null +18:11:05.777 [XNIO-1 task-1] gaUE7l5LSTuv5KIbS4fbPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.777 [XNIO-1 task-1] gaUE7l5LSTuv5KIbS4fbPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.777 [XNIO-1 task-1] gaUE7l5LSTuv5KIbS4fbPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c0efa481-4bb0-4be5-a7fc-28284c04296b, base path is set to: null +18:11:05.778 [XNIO-1 task-1] gaUE7l5LSTuv5KIbS4fbPA DEBUG com.networknt.schema.TypeValidator debug - validate( "c0efa481-4bb0-4be5-a7fc-28284c04296b", "c0efa481-4bb0-4be5-a7fc-28284c04296b", clientId) +18:11:05.783 [XNIO-1 task-1] mOjVw-qVTbCsrxSg4zWbhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f +18:11:05.783 [XNIO-1 task-1] mOjVw-qVTbCsrxSg4zWbhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.783 [XNIO-1 task-1] mOjVw-qVTbCsrxSg4zWbhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.783 [XNIO-1 task-1] mOjVw-qVTbCsrxSg4zWbhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.785 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.786 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"028a0a7c-e971-45c7-b979-5b7553a2","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.786 [XNIO-1 task-1] Kr5-RiPbRsO6ZyONgajZkw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.787 [XNIO-1 task-1] aihOP6rNS8q_mZqE7QmE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.787 [XNIO-1 task-1] aihOP6rNS8q_mZqE7QmE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.788 [XNIO-1 task-1] aihOP6rNS8q_mZqE7QmE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.798 [XNIO-1 task-1] XSXH3ABlRv-12CcvfFg_dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.798 [XNIO-1 task-1] XSXH3ABlRv-12CcvfFg_dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.798 [XNIO-1 task-1] XSXH3ABlRv-12CcvfFg_dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.810 [XNIO-1 task-1] D4rKavryQ4SSap8SzqwIiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b +18:11:05.810 [XNIO-1 task-1] D4rKavryQ4SSap8SzqwIiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.810 [XNIO-1 task-1] D4rKavryQ4SSap8SzqwIiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.810 [XNIO-1 task-1] D4rKavryQ4SSap8SzqwIiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b +18:11:05.812 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.812 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.812 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0dd1e0-770e-4e98-964f-11d39da1","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.813 [XNIO-1 task-1] Z2kbnD9MSAysDuXuTWsQDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.815 [XNIO-1 task-1] q--GHhzXTxaHN169jCnOQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.815 [XNIO-1 task-1] q--GHhzXTxaHN169jCnOQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.815 [XNIO-1 task-1] q--GHhzXTxaHN169jCnOQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.815 [XNIO-1 task-1] q--GHhzXTxaHN169jCnOQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG com.networknt.schema.TypeValidator debug - validate( "ea9a69de-0815-420d-b77b-70fbe7091c0a", {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.821 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.822 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG com.networknt.schema.TypeValidator debug - validate( "af3192aa-c0ee-4ea2-a2ac-0b937970", {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:05.822 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:05.822 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"af3192aa-c0ee-4ea2-a2ac-0b937970","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:05.822 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.822 [XNIO-1 task-1] OweJMZSxRhSI3Z1o-aiePA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:05.824 [XNIO-1 task-1] KXKxSjctRbm6R6rcgfj1Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/156774f3-c7ac-4a72-8d21-b9d5dc38f41e, base path is set to: null +18:11:05.824 [XNIO-1 task-1] KXKxSjctRbm6R6rcgfj1Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.824 [XNIO-1 task-1] KXKxSjctRbm6R6rcgfj1Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.824 [XNIO-1 task-1] KXKxSjctRbm6R6rcgfj1Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/156774f3-c7ac-4a72-8d21-b9d5dc38f41e, base path is set to: null +18:11:05.824 [XNIO-1 task-1] KXKxSjctRbm6R6rcgfj1Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "156774f3-c7ac-4a72-8d21-b9d5dc38f41e", "156774f3-c7ac-4a72-8d21-b9d5dc38f41e", clientId) +18:11:05.829 [XNIO-1 task-1] 4mj1k4U6TBuO1mEtCQIaSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.829 [XNIO-1 task-1] 4mj1k4U6TBuO1mEtCQIaSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.829 [XNIO-1 task-1] 4mj1k4U6TBuO1mEtCQIaSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.840 [XNIO-1 task-1] a0NNjNl_T3uSjEP7maCQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.840 [XNIO-1 task-1] a0NNjNl_T3uSjEP7maCQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.840 [XNIO-1 task-1] a0NNjNl_T3uSjEP7maCQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.851 [XNIO-1 task-1] eG6lIitPQR-acaUq_RNLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b +18:11:05.851 [XNIO-1 task-1] eG6lIitPQR-acaUq_RNLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.851 [XNIO-1 task-1] eG6lIitPQR-acaUq_RNLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.851 [XNIO-1 task-1] eG6lIitPQR-acaUq_RNLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ee0e6d07-d84b-4fc0-8ff0-c818b0d94d5b +18:11:05.856 [XNIO-1 task-1] W0-cepLkTI-BW7HnRBXv3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/adf377a6-4de0-4cf8-88d7-711aaa892da2, base path is set to: null +18:11:05.857 [XNIO-1 task-1] W0-cepLkTI-BW7HnRBXv3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.857 [XNIO-1 task-1] W0-cepLkTI-BW7HnRBXv3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.857 [XNIO-1 task-1] W0-cepLkTI-BW7HnRBXv3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/adf377a6-4de0-4cf8-88d7-711aaa892da2, base path is set to: null +18:11:05.857 [XNIO-1 task-1] W0-cepLkTI-BW7HnRBXv3w DEBUG com.networknt.schema.TypeValidator debug - validate( "adf377a6-4de0-4cf8-88d7-711aaa892da2", "adf377a6-4de0-4cf8-88d7-711aaa892da2", clientId) +18:11:05.859 [XNIO-1 task-1] Tv34LGQBQK-hTMjGUZgOpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.859 [XNIO-1 task-1] Tv34LGQBQK-hTMjGUZgOpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.859 [XNIO-1 task-1] Tv34LGQBQK-hTMjGUZgOpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.870 [XNIO-1 task-1] oXG8sB7QRJ6OjSjouHORww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.870 [XNIO-1 task-1] oXG8sB7QRJ6OjSjouHORww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.870 [XNIO-1 task-1] oXG8sB7QRJ6OjSjouHORww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.870 [XNIO-1 task-1] oXG8sB7QRJ6OjSjouHORww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.876 [XNIO-1 task-1] TsUJ43INSnOrSX-JTDAg0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b7b898fc-985d-4cf2-be8a-9a0afe6bdcc2 +18:11:05.876 [XNIO-1 task-1] TsUJ43INSnOrSX-JTDAg0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.876 [XNIO-1 task-1] TsUJ43INSnOrSX-JTDAg0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.876 [XNIO-1 task-1] TsUJ43INSnOrSX-JTDAg0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b7b898fc-985d-4cf2-be8a-9a0afe6bdcc2 +18:11:05.879 [XNIO-1 task-1] vEabGcJVTuO2sWOtMOAHEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/51408ef4-b48c-4d6c-8bc0-eaf33dc60aff, base path is set to: null +18:11:05.879 [XNIO-1 task-1] vEabGcJVTuO2sWOtMOAHEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.879 [XNIO-1 task-1] vEabGcJVTuO2sWOtMOAHEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.879 [XNIO-1 task-1] vEabGcJVTuO2sWOtMOAHEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/51408ef4-b48c-4d6c-8bc0-eaf33dc60aff, base path is set to: null +18:11:05.879 [XNIO-1 task-1] vEabGcJVTuO2sWOtMOAHEA DEBUG com.networknt.schema.TypeValidator debug - validate( "51408ef4-b48c-4d6c-8bc0-eaf33dc60aff", "51408ef4-b48c-4d6c-8bc0-eaf33dc60aff", clientId) +18:11:05.884 [XNIO-1 task-1] iQKYqwnwRhidUWV9kXpJmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f80b4142-fe17-43a7-bfc6-eb012974d96f +18:11:05.884 [XNIO-1 task-1] iQKYqwnwRhidUWV9kXpJmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.884 [XNIO-1 task-1] iQKYqwnwRhidUWV9kXpJmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.884 [XNIO-1 task-1] iQKYqwnwRhidUWV9kXpJmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f80b4142-fe17-43a7-bfc6-eb012974d96f +18:11:05.890 [XNIO-1 task-1] 8vCYqY6dRmeaGQMLey8KeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.890 [XNIO-1 task-1] 8vCYqY6dRmeaGQMLey8KeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.890 [XNIO-1 task-1] 8vCYqY6dRmeaGQMLey8KeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.890 [XNIO-1 task-1] 8vCYqY6dRmeaGQMLey8KeA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.896 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.897 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.897 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaaa0f5-4c1d-486b-88db-c2dbf000","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.897 [XNIO-1 task-1] FSQD11HUTYq4H5gqzWkZqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:05.899 [XNIO-1 task-1] WPUY6MknQy2TgcvZkDbqvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.899 [XNIO-1 task-1] WPUY6MknQy2TgcvZkDbqvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.899 [XNIO-1 task-1] WPUY6MknQy2TgcvZkDbqvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.899 [XNIO-1 task-1] WPUY6MknQy2TgcvZkDbqvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.905 [XNIO-1 task-1] qTcSbNJRRA-iqfe2jx1Mfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.905 [XNIO-1 task-1] qTcSbNJRRA-iqfe2jx1Mfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.905 [XNIO-1 task-1] qTcSbNJRRA-iqfe2jx1Mfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.905 [XNIO-1 task-1] qTcSbNJRRA-iqfe2jx1Mfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ea9a69de-0815-420d-b77b-70fbe7091c0a", {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d306de6d-69c6-44cf-9765-1d12f50f", {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d306de6d-69c6-44cf-9765-1d12f50f","clientDesc":"ea9a69de-0815-420d-b77b-70fbe7091c0a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:05.911 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.912 [XNIO-1 task-1] 0cyfJzYjSbeIN2H5D5QlKQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:05.913 [XNIO-1 task-1] ws0pxRL1Q0-K5zbZS7gutQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.913 [XNIO-1 task-1] ws0pxRL1Q0-K5zbZS7gutQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.914 [XNIO-1 task-1] ws0pxRL1Q0-K5zbZS7gutQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.924 [XNIO-1 task-1] bJENQDCOQf-maSObSH0vvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/adf377a6-4de0-4cf8-88d7-711aaa892da2, base path is set to: null +18:11:05.925 [XNIO-1 task-1] bJENQDCOQf-maSObSH0vvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.925 [XNIO-1 task-1] bJENQDCOQf-maSObSH0vvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.925 [XNIO-1 task-1] bJENQDCOQf-maSObSH0vvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/adf377a6-4de0-4cf8-88d7-711aaa892da2, base path is set to: null +18:11:05.925 [XNIO-1 task-1] bJENQDCOQf-maSObSH0vvw DEBUG com.networknt.schema.TypeValidator debug - validate( "adf377a6-4de0-4cf8-88d7-711aaa892da2", "adf377a6-4de0-4cf8-88d7-711aaa892da2", clientId) +18:11:05.927 [XNIO-1 task-1] mCJy1lNMSee0lNZiR-oeBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.927 [XNIO-1 task-1] mCJy1lNMSee0lNZiR-oeBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.927 [XNIO-1 task-1] mCJy1lNMSee0lNZiR-oeBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.927 [XNIO-1 task-1] mCJy1lNMSee0lNZiR-oeBA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:05.934 [XNIO-1 task-1] JPatv7pXQxuedKrATy6QTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.934 [XNIO-1 task-1] JPatv7pXQxuedKrATy6QTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.934 [XNIO-1 task-1] JPatv7pXQxuedKrATy6QTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.944 [XNIO-1 task-1] DHn1zLsGT-uaEqK1wnL4hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f +18:11:05.944 [XNIO-1 task-1] DHn1zLsGT-uaEqK1wnL4hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.944 [XNIO-1 task-1] DHn1zLsGT-uaEqK1wnL4hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.944 [XNIO-1 task-1] DHn1zLsGT-uaEqK1wnL4hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f +18:11:05.946 [XNIO-1 task-1] SXtIctU9RyiS_SsgWslWGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:05.946 [XNIO-1 task-1] SXtIctU9RyiS_SsgWslWGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.946 [XNIO-1 task-1] SXtIctU9RyiS_SsgWslWGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.946 [XNIO-1 task-1] SXtIctU9RyiS_SsgWslWGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:05.946 [XNIO-1 task-1] SXtIctU9RyiS_SsgWslWGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6721c42-7887-44af-b128-bed237454c10", "f6721c42-7887-44af-b128-bed237454c10", clientId) +18:11:05.948 [XNIO-1 task-1] ryhEQPQORGCTf0njZHprvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b7b898fc-985d-4cf2-be8a-9a0afe6bdcc2 +18:11:05.948 [XNIO-1 task-1] ryhEQPQORGCTf0njZHprvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.948 [XNIO-1 task-1] ryhEQPQORGCTf0njZHprvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:05.948 [XNIO-1 task-1] ryhEQPQORGCTf0njZHprvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b7b898fc-985d-4cf2-be8a-9a0afe6bdcc2 +18:11:05.953 [XNIO-1 task-1] lrDDheFUT36i8KoCibzvxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.953 [XNIO-1 task-1] lrDDheFUT36i8KoCibzvxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.953 [XNIO-1 task-1] lrDDheFUT36i8KoCibzvxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.953 [XNIO-1 task-1] lrDDheFUT36i8KoCibzvxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:05.958 [XNIO-1 task-1] TYwJB-lxRtOdZYNZanFWkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/adf377a6-4de0-4cf8-88d7-711aaa892da2, base path is set to: null +18:11:05.958 [XNIO-1 task-1] TYwJB-lxRtOdZYNZanFWkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.958 [XNIO-1 task-1] TYwJB-lxRtOdZYNZanFWkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:05.958 [XNIO-1 task-1] TYwJB-lxRtOdZYNZanFWkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/adf377a6-4de0-4cf8-88d7-711aaa892da2, base path is set to: null +18:11:05.959 [XNIO-1 task-1] TYwJB-lxRtOdZYNZanFWkA DEBUG com.networknt.schema.TypeValidator debug - validate( "adf377a6-4de0-4cf8-88d7-711aaa892da2", "adf377a6-4de0-4cf8-88d7-711aaa892da2", clientId) +18:11:05.963 [XNIO-1 task-1] WL2SXadnSuuXVw2slWGZ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.963 [XNIO-1 task-1] WL2SXadnSuuXVw2slWGZ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.963 [XNIO-1 task-1] WL2SXadnSuuXVw2slWGZ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG com.networknt.schema.TypeValidator debug - validate( "3a50fec0-d488-4ca4-90c0-58335bf08f14", {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd00740a-1c49-4d5b-99a3-2acff60e", {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:05.974 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:05.975 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dd00740a-1c49-4d5b-99a3-2acff60e","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:05.975 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:05.975 [XNIO-1 task-1] W46vTsQfTYuVPTUiVPomXA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:05.976 [XNIO-1 task-1] a7q663JoSmSMLV8VQLu1Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.976 [XNIO-1 task-1] a7q663JoSmSMLV8VQLu1Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:05.976 [XNIO-1 task-1] a7q663JoSmSMLV8VQLu1Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:05.977 [XNIO-1 task-1] a7q663JoSmSMLV8VQLu1Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.004 [XNIO-1 task-1] bacPQsv_Qxegc2iG_TwcVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f, base path is set to: null +18:11:06.004 [XNIO-1 task-1] bacPQsv_Qxegc2iG_TwcVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.004 [XNIO-1 task-1] bacPQsv_Qxegc2iG_TwcVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.004 [XNIO-1 task-1] bacPQsv_Qxegc2iG_TwcVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f, base path is set to: null +18:11:06.005 [XNIO-1 task-1] bacPQsv_Qxegc2iG_TwcVA DEBUG com.networknt.schema.TypeValidator debug - validate( "b0a9c938-9de0-49bf-bf6d-6773283dfe6f", "b0a9c938-9de0-49bf-bf6d-6773283dfe6f", clientId) +18:11:06.006 [XNIO-1 task-1] 6-u--S5MQT6CI2GKZJLN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7755a5eb-76fd-4fbb-855a-37db22c37cef +18:11:06.007 [XNIO-1 task-1] 6-u--S5MQT6CI2GKZJLN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.007 [XNIO-1 task-1] 6-u--S5MQT6CI2GKZJLN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.007 [XNIO-1 task-1] 6-u--S5MQT6CI2GKZJLN3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7755a5eb-76fd-4fbb-855a-37db22c37cef +18:11:06.012 [XNIO-1 task-1] 3G2GRWM1Qs2Mb1ojrEPBpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:06.012 [XNIO-1 task-1] 3G2GRWM1Qs2Mb1ojrEPBpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.012 [XNIO-1 task-1] 3G2GRWM1Qs2Mb1ojrEPBpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.012 [XNIO-1 task-1] 3G2GRWM1Qs2Mb1ojrEPBpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:06.012 [XNIO-1 task-1] 3G2GRWM1Qs2Mb1ojrEPBpg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6721c42-7887-44af-b128-bed237454c10", "f6721c42-7887-44af-b128-bed237454c10", clientId) +18:11:06.014 [XNIO-1 task-1] nn1GqspJRzGtCjYJTrWSFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/adc4084b-702c-4550-834c-c67e381f0017 +18:11:06.014 [XNIO-1 task-1] nn1GqspJRzGtCjYJTrWSFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.014 [XNIO-1 task-1] nn1GqspJRzGtCjYJTrWSFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.014 [XNIO-1 task-1] nn1GqspJRzGtCjYJTrWSFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/adc4084b-702c-4550-834c-c67e381f0017 +18:11:06.016 [XNIO-1 task-1] TIyBqsfyTzOWbxtJw1t8dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9b5ab75-261f-46be-b20d-509a0fd6984b, base path is set to: null +18:11:06.017 [XNIO-1 task-1] TIyBqsfyTzOWbxtJw1t8dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.017 [XNIO-1 task-1] TIyBqsfyTzOWbxtJw1t8dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.017 [XNIO-1 task-1] TIyBqsfyTzOWbxtJw1t8dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9b5ab75-261f-46be-b20d-509a0fd6984b, base path is set to: null +18:11:06.017 [XNIO-1 task-1] TIyBqsfyTzOWbxtJw1t8dA DEBUG com.networknt.schema.TypeValidator debug - validate( "f9b5ab75-261f-46be-b20d-509a0fd6984b", "f9b5ab75-261f-46be-b20d-509a0fd6984b", clientId) +18:11:06.019 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.019 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.019 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.019 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.019 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG com.networknt.schema.TypeValidator debug - validate( "3a50fec0-d488-4ca4-90c0-58335bf08f14", {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG com.networknt.schema.TypeValidator debug - validate( "f31646e8-3ce9-456d-85ca-b540811d", {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f31646e8-3ce9-456d-85ca-b540811d","clientDesc":"3a50fec0-d488-4ca4-90c0-58335bf08f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.020 [XNIO-1 task-1] r1fv7V2vRveJNjjdGW5llg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.022 [XNIO-1 task-1] rCPomfjWRDalD1dlrdu9LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f, base path is set to: null +18:11:06.022 [XNIO-1 task-1] rCPomfjWRDalD1dlrdu9LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.022 [XNIO-1 task-1] rCPomfjWRDalD1dlrdu9LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.022 [XNIO-1 task-1] rCPomfjWRDalD1dlrdu9LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f, base path is set to: null +18:11:06.023 [XNIO-1 task-1] rCPomfjWRDalD1dlrdu9LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b0a9c938-9de0-49bf-bf6d-6773283dfe6f", "b0a9c938-9de0-49bf-bf6d-6773283dfe6f", clientId) +18:11:06.025 [XNIO-1 task-1] EE1x7AcoSpaDY120spXIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f +18:11:06.025 [XNIO-1 task-1] EE1x7AcoSpaDY120spXIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.025 [XNIO-1 task-1] EE1x7AcoSpaDY120spXIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.025 [XNIO-1 task-1] EE1x7AcoSpaDY120spXIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b0a9c938-9de0-49bf-bf6d-6773283dfe6f +18:11:06.030 [XNIO-1 task-1] sDG26S5ISY-UDsTYbTteLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:06.030 [XNIO-1 task-1] sDG26S5ISY-UDsTYbTteLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.030 [XNIO-1 task-1] sDG26S5ISY-UDsTYbTteLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.030 [XNIO-1 task-1] sDG26S5ISY-UDsTYbTteLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:06.030 [XNIO-1 task-1] sDG26S5ISY-UDsTYbTteLw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6721c42-7887-44af-b128-bed237454c10", "f6721c42-7887-44af-b128-bed237454c10", clientId) +18:11:06.032 [XNIO-1 task-1] Mpxh9HM_TGS-jkxONn4ldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.032 [XNIO-1 task-1] Mpxh9HM_TGS-jkxONn4ldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.032 [XNIO-1 task-1] Mpxh9HM_TGS-jkxONn4ldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.043 [XNIO-1 task-1] IBBHv4JlQvaYO-yvy_zsMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.043 [XNIO-1 task-1] IBBHv4JlQvaYO-yvy_zsMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.043 [XNIO-1 task-1] IBBHv4JlQvaYO-yvy_zsMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.048 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bd602ba3-ca5f-4256-9bf6-135a9ad86430 +18:11:06.052 [XNIO-1 task-1] BqNvmn-vQoa4_5Cnfb3Iqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.053 [XNIO-1 task-1] BqNvmn-vQoa4_5Cnfb3Iqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.053 [XNIO-1 task-1] BqNvmn-vQoa4_5Cnfb3Iqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.053 [XNIO-1 task-1] BqNvmn-vQoa4_5Cnfb3Iqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.058 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.058 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.059 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4ef3b69-16da-4771-b83e-20fcb1ce","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.060 [XNIO-1 task-1] wfG-ROZMRDa0AyEBTCfJ9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.061 [XNIO-1 task-1] C1pK30c9TM25lOMZ2Mvpvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.061 [XNIO-1 task-1] C1pK30c9TM25lOMZ2Mvpvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.061 [XNIO-1 task-1] C1pK30c9TM25lOMZ2Mvpvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.061 [XNIO-1 task-1] C1pK30c9TM25lOMZ2Mvpvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.066 [XNIO-1 task-1] O03trN77SSGiYugYPgNglA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.066 [XNIO-1 task-1] O03trN77SSGiYugYPgNglA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.066 [XNIO-1 task-1] O03trN77SSGiYugYPgNglA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.066 [XNIO-1 task-1] O03trN77SSGiYugYPgNglA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.071 [XNIO-1 task-1] cZS5_p8tRI-5Tk_DVGcYXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/adc4084b-702c-4550-834c-c67e381f0017 +18:11:06.071 [XNIO-1 task-1] cZS5_p8tRI-5Tk_DVGcYXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.071 [XNIO-1 task-1] cZS5_p8tRI-5Tk_DVGcYXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.071 [XNIO-1 task-1] cZS5_p8tRI-5Tk_DVGcYXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/adc4084b-702c-4550-834c-c67e381f0017 +18:11:06.076 [XNIO-1 task-1] UyYX6287S-yZ8osnvnSslg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:06.076 [XNIO-1 task-1] UyYX6287S-yZ8osnvnSslg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.076 [XNIO-1 task-1] UyYX6287S-yZ8osnvnSslg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.076 [XNIO-1 task-1] UyYX6287S-yZ8osnvnSslg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10, base path is set to: null +18:11:06.077 [XNIO-1 task-1] UyYX6287S-yZ8osnvnSslg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6721c42-7887-44af-b128-bed237454c10", "f6721c42-7887-44af-b128-bed237454c10", clientId) +18:11:06.078 [XNIO-1 task-1] OfdbYjIWR_OdQ0KDFsJQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.078 [XNIO-1 task-1] OfdbYjIWR_OdQ0KDFsJQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.078 [XNIO-1 task-1] OfdbYjIWR_OdQ0KDFsJQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.084 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:023dfa7a-63a8-4522-8f34-556c6ecaa5ae +18:11:06.089 [XNIO-1 task-1] d53qD2P4R8KsUs7fFOZqiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9b5ab75-261f-46be-b20d-509a0fd6984b, base path is set to: null +18:11:06.089 [XNIO-1 task-1] d53qD2P4R8KsUs7fFOZqiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.089 [XNIO-1 task-1] d53qD2P4R8KsUs7fFOZqiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.089 [XNIO-1 task-1] d53qD2P4R8KsUs7fFOZqiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9b5ab75-261f-46be-b20d-509a0fd6984b, base path is set to: null +18:11:06.089 [XNIO-1 task-1] d53qD2P4R8KsUs7fFOZqiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9b5ab75-261f-46be-b20d-509a0fd6984b", "f9b5ab75-261f-46be-b20d-509a0fd6984b", clientId) +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "a657e621-e07b-4baf-b439-f3024137e924", {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e3356c4-c341-4a2f-98fc-846bc395", {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.091 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.092 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0e3356c4-c341-4a2f-98fc-846bc395","clientDesc":"a657e621-e07b-4baf-b439-f3024137e924","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.092 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.092 [XNIO-1 task-1] yL9jsdiUS1-mejDQhHT2uw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.093 [XNIO-1 task-1] NnC50FGcTS6HeRIG-I7-SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.093 [XNIO-1 task-1] NnC50FGcTS6HeRIG-I7-SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.093 [XNIO-1 task-1] NnC50FGcTS6HeRIG-I7-SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.107 [XNIO-1 task-1] Dh-OCVSsRqaPXy990gg92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9b5ab75-261f-46be-b20d-509a0fd6984b, base path is set to: null +18:11:06.107 [XNIO-1 task-1] Dh-OCVSsRqaPXy990gg92Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.107 [XNIO-1 task-1] Dh-OCVSsRqaPXy990gg92Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.107 [XNIO-1 task-1] Dh-OCVSsRqaPXy990gg92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9b5ab75-261f-46be-b20d-509a0fd6984b, base path is set to: null +18:11:06.107 [XNIO-1 task-1] Dh-OCVSsRqaPXy990gg92Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f9b5ab75-261f-46be-b20d-509a0fd6984b", "f9b5ab75-261f-46be-b20d-509a0fd6984b", clientId) +18:11:06.112 [XNIO-1 task-1] pVmmfml_TmGUoeYKoOXufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10 +18:11:06.112 [XNIO-1 task-1] pVmmfml_TmGUoeYKoOXufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.112 [XNIO-1 task-1] pVmmfml_TmGUoeYKoOXufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.113 [XNIO-1 task-1] pVmmfml_TmGUoeYKoOXufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6721c42-7887-44af-b128-bed237454c10 +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.118 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.119 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d639e108-a40b-43e6-b509-63f85ada","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.119 [XNIO-1 task-1] f1k1P8sJQ4y_5fuS56N-aA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8bbf647f-d463-4936-ae7e-067e47ecfd70", {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2c6fce1-4df2-4928-a2bd-08133c3a", {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f2c6fce1-4df2-4928-a2bd-08133c3a","clientDesc":"8bbf647f-d463-4936-ae7e-067e47ecfd70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.121 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.122 [XNIO-1 task-1] L50IyjvNRju_1vE0kI_HGQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.123 [XNIO-1 task-1] tQFUbXhiScSD2zsKjs2O3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/757588ee-927d-48c5-b167-d2892778b942, base path is set to: null +18:11:06.123 [XNIO-1 task-1] tQFUbXhiScSD2zsKjs2O3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.123 [XNIO-1 task-1] tQFUbXhiScSD2zsKjs2O3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.123 [XNIO-1 task-1] tQFUbXhiScSD2zsKjs2O3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/757588ee-927d-48c5-b167-d2892778b942, base path is set to: null +18:11:06.124 [XNIO-1 task-1] tQFUbXhiScSD2zsKjs2O3w DEBUG com.networknt.schema.TypeValidator debug - validate( "757588ee-927d-48c5-b167-d2892778b942", "757588ee-927d-48c5-b167-d2892778b942", clientId) +18:11:06.129 [XNIO-1 task-1] EabBc8tDTq6QYUv06nsg0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bd602ba3-ca5f-4256-9bf6-135a9ad86430 +18:11:06.129 [XNIO-1 task-1] EabBc8tDTq6QYUv06nsg0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.129 [XNIO-1 task-1] EabBc8tDTq6QYUv06nsg0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.129 [XNIO-1 task-1] EabBc8tDTq6QYUv06nsg0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bd602ba3-ca5f-4256-9bf6-135a9ad86430 +18:11:06.131 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.131 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.131 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.131 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47cb6789-1ccb-419f-8afc-731eb472","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.132 [XNIO-1 task-1] ZoZ2AL_-QkOEnCiHE0wZLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.134 [XNIO-1 task-1] etXV6vDGQQqtV3PvmkmOVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c9ee74ae-0daf-4147-a03f-8660bfe6b8e1 +18:11:06.134 [XNIO-1 task-1] etXV6vDGQQqtV3PvmkmOVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.134 [XNIO-1 task-1] etXV6vDGQQqtV3PvmkmOVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.134 [XNIO-1 task-1] etXV6vDGQQqtV3PvmkmOVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c9ee74ae-0daf-4147-a03f-8660bfe6b8e1 +18:11:06.136 [XNIO-1 task-1] sL19JCGwQj-wWPthn3QlBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.136 [XNIO-1 task-1] sL19JCGwQj-wWPthn3QlBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.136 [XNIO-1 task-1] sL19JCGwQj-wWPthn3QlBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.136 [XNIO-1 task-1] sL19JCGwQj-wWPthn3QlBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.142 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.142 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53392181-691f-434b-9481-22ff228a","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.143 [XNIO-1 task-1] PSLssKiFTg2VJSraICdyGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "b17ced5d-0aed-4c33-a822-25db59f1c489", {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "18c68a9c-0efa-4667-98cc-f47e9ee2", {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"18c68a9c-0efa-4667-98cc-f47e9ee2","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.146 [XNIO-1 task-1] B-x5Q41fQzuUwUHQPAVzhA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.148 [XNIO-1 task-1] IP8-JjZWT5ieTn03Cw7i2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.148 [XNIO-1 task-1] IP8-JjZWT5ieTn03Cw7i2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.148 [XNIO-1 task-1] IP8-JjZWT5ieTn03Cw7i2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.158 [XNIO-1 task-1] PkMi35kZS6yY42GwCxxWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.159 [XNIO-1 task-1] PkMi35kZS6yY42GwCxxWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.159 [XNIO-1 task-1] PkMi35kZS6yY42GwCxxWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.163 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5157857e-bd14-4fa9-bf9a-9ab7f364270b +18:11:06.164 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5157857e-bd14-4fa9-bf9a-9ab7f364270b +18:11:06.168 [XNIO-1 task-1] CImvWqWZSOivKYGEfWHurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.168 [XNIO-1 task-1] CImvWqWZSOivKYGEfWHurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.168 [XNIO-1 task-1] CImvWqWZSOivKYGEfWHurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.179 [XNIO-1 task-1] uz35Rm3tSRS0NeYFOoqhJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.179 [XNIO-1 task-1] uz35Rm3tSRS0NeYFOoqhJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.179 [XNIO-1 task-1] uz35Rm3tSRS0NeYFOoqhJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.179 [XNIO-1 task-1] uz35Rm3tSRS0NeYFOoqhJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.184 [XNIO-1 task-1] DWElS9GJQfuU3wSZfc7MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5157857e-bd14-4fa9-bf9a-9ab7f364270b +18:11:06.184 [XNIO-1 task-1] DWElS9GJQfuU3wSZfc7MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.184 [XNIO-1 task-1] DWElS9GJQfuU3wSZfc7MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.184 [XNIO-1 task-1] DWElS9GJQfuU3wSZfc7MkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5157857e-bd14-4fa9-bf9a-9ab7f364270b +18:11:06.184 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5157857e-bd14-4fa9-bf9a-9ab7f364270b +18:11:06.188 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.188 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "780e011f-6167-4c51-a2f3-0a2f4d034877", {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "37602aa7-752b-456c-99cb-15e58c9a", {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"37602aa7-752b-456c-99cb-15e58c9a","clientDesc":"780e011f-6167-4c51-a2f3-0a2f4d034877","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.189 [XNIO-1 task-1] ryjwS7h5R_6pEeT0Iz1GQQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.191 [XNIO-1 task-1] ObzDCPzkT9qaWdK2lUdo8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.191 [XNIO-1 task-1] ObzDCPzkT9qaWdK2lUdo8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.191 [XNIO-1 task-1] ObzDCPzkT9qaWdK2lUdo8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.202 [XNIO-1 task-1] gNAbWWSZRRavqblrGeEeig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd602ba3-ca5f-4256-9bf6-135a9ad86430, base path is set to: null +18:11:06.202 [XNIO-1 task-1] gNAbWWSZRRavqblrGeEeig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.202 [XNIO-1 task-1] gNAbWWSZRRavqblrGeEeig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.202 [XNIO-1 task-1] gNAbWWSZRRavqblrGeEeig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd602ba3-ca5f-4256-9bf6-135a9ad86430, base path is set to: null +18:11:06.202 [XNIO-1 task-1] gNAbWWSZRRavqblrGeEeig DEBUG com.networknt.schema.TypeValidator debug - validate( "bd602ba3-ca5f-4256-9bf6-135a9ad86430", "bd602ba3-ca5f-4256-9bf6-135a9ad86430", clientId) +18:11:06.207 [XNIO-1 task-1] 9Z3k2hJqR4KpxY0gKw2n2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.207 [XNIO-1 task-1] 9Z3k2hJqR4KpxY0gKw2n2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.207 [XNIO-1 task-1] 9Z3k2hJqR4KpxY0gKw2n2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.207 [XNIO-1 task-1] 9Z3k2hJqR4KpxY0gKw2n2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.214 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.215 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80f8a48e-da3f-45ff-bf15-74f6d2ca","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.215 [XNIO-1 task-1] 9JvCU5n-S9GE9MrfQkffNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.216 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.216 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG com.networknt.schema.TypeValidator debug - validate( "85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d", {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG com.networknt.schema.TypeValidator debug - validate( "98f8b62b-28bc-46b7-a65b-d34b41e6", {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"98f8b62b-28bc-46b7-a65b-d34b41e6","clientDesc":"85ce2581-dcfd-4bf9-83c6-8b7d6f248a3d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.217 [XNIO-1 task-1] fS-kEfy4RwGfY1FO61CKwg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.219 [XNIO-1 task-1] TvAfwiabT_uJrdd-6fygSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.219 [XNIO-1 task-1] TvAfwiabT_uJrdd-6fygSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.219 [XNIO-1 task-1] TvAfwiabT_uJrdd-6fygSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.219 [XNIO-1 task-1] TvAfwiabT_uJrdd-6fygSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.224 [XNIO-1 task-1] bPUuCja4Rn-1Rfq3sOKhHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.224 [XNIO-1 task-1] bPUuCja4Rn-1Rfq3sOKhHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.224 [XNIO-1 task-1] bPUuCja4Rn-1Rfq3sOKhHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.234 [XNIO-1 task-1] -C2AQY8zQtmQoK28eKuI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.234 [XNIO-1 task-1] -C2AQY8zQtmQoK28eKuI1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.234 [XNIO-1 task-1] -C2AQY8zQtmQoK28eKuI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.239 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0089008c-c866-43c7-90d2-370331a2e6f4 +18:11:06.240 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0089008c-c866-43c7-90d2-370331a2e6f4 +18:11:06.244 [XNIO-1 task-1] 5ftXtTOkTYaqsILkVhTzxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c9ee74ae-0daf-4147-a03f-8660bfe6b8e1 +18:11:06.244 [XNIO-1 task-1] 5ftXtTOkTYaqsILkVhTzxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.244 [XNIO-1 task-1] 5ftXtTOkTYaqsILkVhTzxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.244 [XNIO-1 task-1] 5ftXtTOkTYaqsILkVhTzxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c9ee74ae-0daf-4147-a03f-8660bfe6b8e1 +18:11:06.246 [XNIO-1 task-1] BM6zeuakSM-YNZcHe6th8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.246 [XNIO-1 task-1] BM6zeuakSM-YNZcHe6th8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.246 [XNIO-1 task-1] BM6zeuakSM-YNZcHe6th8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.257 [XNIO-1 task-1] VBw7up_ARcCJbG-FVJXKxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ad9e7fbd-53cf-4ef1-a13c-bf0c0c9d9e89, base path is set to: null +18:11:06.257 [XNIO-1 task-1] VBw7up_ARcCJbG-FVJXKxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.257 [XNIO-1 task-1] VBw7up_ARcCJbG-FVJXKxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.257 [XNIO-1 task-1] VBw7up_ARcCJbG-FVJXKxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ad9e7fbd-53cf-4ef1-a13c-bf0c0c9d9e89, base path is set to: null +18:11:06.257 [XNIO-1 task-1] VBw7up_ARcCJbG-FVJXKxg DEBUG com.networknt.schema.TypeValidator debug - validate( "ad9e7fbd-53cf-4ef1-a13c-bf0c0c9d9e89", "ad9e7fbd-53cf-4ef1-a13c-bf0c0c9d9e89", clientId) +18:11:06.262 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.262 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.262 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG com.networknt.schema.TypeValidator debug - validate( "b17ced5d-0aed-4c33-a822-25db59f1c489", {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG com.networknt.schema.TypeValidator debug - validate( "c2f39c17-7a8d-4e19-bc3b-74e0de65", {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c2f39c17-7a8d-4e19-bc3b-74e0de65","clientDesc":"b17ced5d-0aed-4c33-a822-25db59f1c489","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.263 [XNIO-1 task-1] Jo55Z4wPTmGEtCpYB_gAog DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.265 [XNIO-1 task-1] UHCblNs2RHSFQ62TsnFtoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c9ee74ae-0daf-4147-a03f-8660bfe6b8e1, base path is set to: null +18:11:06.265 [XNIO-1 task-1] UHCblNs2RHSFQ62TsnFtoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.265 [XNIO-1 task-1] UHCblNs2RHSFQ62TsnFtoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.265 [XNIO-1 task-1] UHCblNs2RHSFQ62TsnFtoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c9ee74ae-0daf-4147-a03f-8660bfe6b8e1, base path is set to: null +18:11:06.265 [XNIO-1 task-1] UHCblNs2RHSFQ62TsnFtoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c9ee74ae-0daf-4147-a03f-8660bfe6b8e1", "c9ee74ae-0daf-4147-a03f-8660bfe6b8e1", clientId) +18:11:06.270 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.270 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.270 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "51805726-59a4-40a3-9878-f02acdc3dc83", {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e6786f35-a189-4619-a4dd-a277faa8", {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e6786f35-a189-4619-a4dd-a277faa8","clientDesc":"51805726-59a4-40a3-9878-f02acdc3dc83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.271 [XNIO-1 task-1] B9ADLqJWRYytm3wNMbuwWQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.273 [XNIO-1 task-1] -qthjOZ4Se68kQUg29Ys_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846, base path is set to: null +18:11:06.273 [XNIO-1 task-1] -qthjOZ4Se68kQUg29Ys_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.273 [XNIO-1 task-1] -qthjOZ4Se68kQUg29Ys_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.273 [XNIO-1 task-1] -qthjOZ4Se68kQUg29Ys_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846, base path is set to: null +18:11:06.273 [XNIO-1 task-1] -qthjOZ4Se68kQUg29Ys_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846", "c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846", clientId) +18:11:06.275 [XNIO-1 task-1] nBqoqn6xQD-mFNMU5rSBVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.275 [XNIO-1 task-1] nBqoqn6xQD-mFNMU5rSBVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.275 [XNIO-1 task-1] nBqoqn6xQD-mFNMU5rSBVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.275 [XNIO-1 task-1] nBqoqn6xQD-mFNMU5rSBVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.280 [XNIO-1 task-1] -h5qav7TRO2jvQ1pA1xV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/023dfa7a-63a8-4522-8f34-556c6ecaa5ae +18:11:06.280 [XNIO-1 task-1] -h5qav7TRO2jvQ1pA1xV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.280 [XNIO-1 task-1] -h5qav7TRO2jvQ1pA1xV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.280 [XNIO-1 task-1] -h5qav7TRO2jvQ1pA1xV5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/023dfa7a-63a8-4522-8f34-556c6ecaa5ae +18:11:06.280 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:023dfa7a-63a8-4522-8f34-556c6ecaa5ae +18:11:06.286 [XNIO-1 task-1] tRvVMYBvR2aAyAyrA-AcUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0737872c-2d4d-4aa1-aea8-f7500c661e1a +18:11:06.286 [XNIO-1 task-1] tRvVMYBvR2aAyAyrA-AcUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.286 [XNIO-1 task-1] tRvVMYBvR2aAyAyrA-AcUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.286 [XNIO-1 task-1] tRvVMYBvR2aAyAyrA-AcUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0737872c-2d4d-4aa1-aea8-f7500c661e1a +18:11:06.291 [XNIO-1 task-1] PbzB9WIdT6WG39-hovdW7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.291 [XNIO-1 task-1] PbzB9WIdT6WG39-hovdW7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.291 [XNIO-1 task-1] PbzB9WIdT6WG39-hovdW7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.304 [XNIO-1 task-1] lBboaClhRrKJDYhbq4OeKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2f45f7c4-b143-41b1-9196-1526674b9280, base path is set to: null +18:11:06.305 [XNIO-1 task-1] lBboaClhRrKJDYhbq4OeKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.305 [XNIO-1 task-1] lBboaClhRrKJDYhbq4OeKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.305 [XNIO-1 task-1] lBboaClhRrKJDYhbq4OeKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2f45f7c4-b143-41b1-9196-1526674b9280, base path is set to: null +18:11:06.305 [XNIO-1 task-1] lBboaClhRrKJDYhbq4OeKA DEBUG com.networknt.schema.TypeValidator debug - validate( "2f45f7c4-b143-41b1-9196-1526674b9280", "2f45f7c4-b143-41b1-9196-1526674b9280", clientId) +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce1da3ab-e607-44b9-b805-00263d190c6d", {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.310 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.311 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG com.networknt.schema.TypeValidator debug - validate( "b960e25c-2118-4231-b4e4-fd270d6d", {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.311 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.311 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b960e25c-2118-4231-b4e4-fd270d6d","clientDesc":"ce1da3ab-e607-44b9-b805-00263d190c6d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.311 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.311 [XNIO-1 task-1] m7IdxzIwT5iuAs0sS-hISA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.313 [XNIO-1 task-1] buG942N-T8yo3oZqlJETYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.313 [XNIO-1 task-1] buG942N-T8yo3oZqlJETYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.313 [XNIO-1 task-1] buG942N-T8yo3oZqlJETYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.324 [XNIO-1 task-1] lFi4Or58ScaJMJKqBL9Wyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c21998f6-14cc-4b4b-a203-95989dbf8359, base path is set to: null +18:11:06.324 [XNIO-1 task-1] lFi4Or58ScaJMJKqBL9Wyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.324 [XNIO-1 task-1] lFi4Or58ScaJMJKqBL9Wyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.324 [XNIO-1 task-1] lFi4Or58ScaJMJKqBL9Wyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c21998f6-14cc-4b4b-a203-95989dbf8359, base path is set to: null +18:11:06.324 [XNIO-1 task-1] lFi4Or58ScaJMJKqBL9Wyw DEBUG com.networknt.schema.TypeValidator debug - validate( "c21998f6-14cc-4b4b-a203-95989dbf8359", "c21998f6-14cc-4b4b-a203-95989dbf8359", clientId) +18:11:06.326 [XNIO-1 task-1] kUKGyyGQQcigQUc39MNWuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.326 [XNIO-1 task-1] kUKGyyGQQcigQUc39MNWuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.326 [XNIO-1 task-1] kUKGyyGQQcigQUc39MNWuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.332 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:afd53e1b-dc97-4fe8-84b1-1c268f33469d +18:11:06.344 [XNIO-1 task-1] SC4k4BhPQ96fteGZYOZcRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c21998f6-14cc-4b4b-a203-95989dbf8359, base path is set to: null +18:11:06.344 [XNIO-1 task-1] SC4k4BhPQ96fteGZYOZcRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.344 [XNIO-1 task-1] SC4k4BhPQ96fteGZYOZcRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.344 [XNIO-1 task-1] SC4k4BhPQ96fteGZYOZcRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c21998f6-14cc-4b4b-a203-95989dbf8359, base path is set to: null +18:11:06.345 [XNIO-1 task-1] SC4k4BhPQ96fteGZYOZcRg DEBUG com.networknt.schema.TypeValidator debug - validate( "c21998f6-14cc-4b4b-a203-95989dbf8359", "c21998f6-14cc-4b4b-a203-95989dbf8359", clientId) +18:11:06.350 [XNIO-1 task-1] qMBLJwTrRkqMpXydePSa8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.350 [XNIO-1 task-1] qMBLJwTrRkqMpXydePSa8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.350 [XNIO-1 task-1] qMBLJwTrRkqMpXydePSa8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.350 [XNIO-1 task-1] qMBLJwTrRkqMpXydePSa8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "b7141dc6-5f85-40ef-a827-dc4017d28c52", {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "91eba0ff-09b5-4ad6-a66f-e9bcc6f0", {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.358 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"91eba0ff-09b5-4ad6-a66f-e9bcc6f0","clientDesc":"b7141dc6-5f85-40ef-a827-dc4017d28c52","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.359 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.359 [XNIO-1 task-1] 3AxYhVZ5QN6egP6zi2xqKg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.361 [XNIO-1 task-1] 1abO17GDQ7SQ_uaA6G4oyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846, base path is set to: null +18:11:06.361 [XNIO-1 task-1] 1abO17GDQ7SQ_uaA6G4oyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.361 [XNIO-1 task-1] 1abO17GDQ7SQ_uaA6G4oyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.361 [XNIO-1 task-1] 1abO17GDQ7SQ_uaA6G4oyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846, base path is set to: null +18:11:06.361 [XNIO-1 task-1] 1abO17GDQ7SQ_uaA6G4oyw DEBUG com.networknt.schema.TypeValidator debug - validate( "c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846", "c68a1d2c-7ec3-4bcd-9cc4-34a41eab8846", clientId) +18:11:06.367 [XNIO-1 task-1] TYwSGHnVSEKCSg28cLMeWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d97f844-f47d-4124-ba53-874484995450 +18:11:06.367 [XNIO-1 task-1] TYwSGHnVSEKCSg28cLMeWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.367 [XNIO-1 task-1] TYwSGHnVSEKCSg28cLMeWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.367 [XNIO-1 task-1] TYwSGHnVSEKCSg28cLMeWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d97f844-f47d-4124-ba53-874484995450 +18:11:06.372 [XNIO-1 task-1] zKtmZ2ODQmesueYZgRUcWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c2f3da83-b439-4efc-88cf-d155bab27c6e, base path is set to: null +18:11:06.372 [XNIO-1 task-1] zKtmZ2ODQmesueYZgRUcWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.373 [XNIO-1 task-1] zKtmZ2ODQmesueYZgRUcWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.373 [XNIO-1 task-1] zKtmZ2ODQmesueYZgRUcWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c2f3da83-b439-4efc-88cf-d155bab27c6e, base path is set to: null +18:11:06.373 [XNIO-1 task-1] zKtmZ2ODQmesueYZgRUcWw DEBUG com.networknt.schema.TypeValidator debug - validate( "c2f3da83-b439-4efc-88cf-d155bab27c6e", "c2f3da83-b439-4efc-88cf-d155bab27c6e", clientId) +18:11:06.378 [XNIO-1 task-1] Xbp2jBWgStikzN6dgm3TOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0089008c-c866-43c7-90d2-370331a2e6f4 +18:11:06.378 [XNIO-1 task-1] Xbp2jBWgStikzN6dgm3TOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.378 [XNIO-1 task-1] Xbp2jBWgStikzN6dgm3TOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.378 [XNIO-1 task-1] Xbp2jBWgStikzN6dgm3TOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0089008c-c866-43c7-90d2-370331a2e6f4 +18:11:06.380 [XNIO-1 task-1] pF41iu4TTkWKhoBy7pAbIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.380 [XNIO-1 task-1] pF41iu4TTkWKhoBy7pAbIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.380 [XNIO-1 task-1] pF41iu4TTkWKhoBy7pAbIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.380 [XNIO-1 task-1] pF41iu4TTkWKhoBy7pAbIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.387 [XNIO-1 task-1] DZIZtAKERtClwzKoUr6WmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.387 [XNIO-1 task-1] DZIZtAKERtClwzKoUr6WmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.387 [XNIO-1 task-1] DZIZtAKERtClwzKoUr6WmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.398 [XNIO-1 task-1] Ru6F8SI6Qba7bVENXh6XOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.398 [XNIO-1 task-1] Ru6F8SI6Qba7bVENXh6XOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.398 [XNIO-1 task-1] Ru6F8SI6Qba7bVENXh6XOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.398 [XNIO-1 task-1] Ru6F8SI6Qba7bVENXh6XOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.403 [XNIO-1 task-1] bNtE79O7Ro6SzyvTlOq12A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.403 [XNIO-1 task-1] bNtE79O7Ro6SzyvTlOq12A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.403 [XNIO-1 task-1] bNtE79O7Ro6SzyvTlOq12A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.403 [XNIO-1 task-1] bNtE79O7Ro6SzyvTlOq12A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.409 [XNIO-1 task-1] 9-YLG_TARuOXU6E8w-f4aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/afd53e1b-dc97-4fe8-84b1-1c268f33469d, base path is set to: null +18:11:06.409 [XNIO-1 task-1] 9-YLG_TARuOXU6E8w-f4aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.409 [XNIO-1 task-1] 9-YLG_TARuOXU6E8w-f4aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.409 [XNIO-1 task-1] 9-YLG_TARuOXU6E8w-f4aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/afd53e1b-dc97-4fe8-84b1-1c268f33469d, base path is set to: null +18:11:06.409 [XNIO-1 task-1] 9-YLG_TARuOXU6E8w-f4aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "afd53e1b-dc97-4fe8-84b1-1c268f33469d", "afd53e1b-dc97-4fe8-84b1-1c268f33469d", clientId) +18:11:06.414 [XNIO-1 task-1] -Nn6rZfNS--PT9-sS0hj7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0089008c-c866-43c7-90d2-370331a2e6f4, base path is set to: null +18:11:06.414 [XNIO-1 task-1] -Nn6rZfNS--PT9-sS0hj7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.414 [XNIO-1 task-1] -Nn6rZfNS--PT9-sS0hj7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.414 [XNIO-1 task-1] -Nn6rZfNS--PT9-sS0hj7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0089008c-c866-43c7-90d2-370331a2e6f4, base path is set to: null +18:11:06.414 [XNIO-1 task-1] -Nn6rZfNS--PT9-sS0hj7g DEBUG com.networknt.schema.TypeValidator debug - validate( "0089008c-c866-43c7-90d2-370331a2e6f4", "0089008c-c866-43c7-90d2-370331a2e6f4", clientId) +18:11:06.419 [XNIO-1 task-1] lYGWeemHQ9uD2OSYmgefcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.419 [XNIO-1 task-1] lYGWeemHQ9uD2OSYmgefcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.419 [XNIO-1 task-1] lYGWeemHQ9uD2OSYmgefcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.419 [XNIO-1 task-1] lYGWeemHQ9uD2OSYmgefcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.423 [XNIO-1 task-1] eaEc14DrR5WWRCJns9NwPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.423 [XNIO-1 task-1] eaEc14DrR5WWRCJns9NwPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.424 [XNIO-1 task-1] eaEc14DrR5WWRCJns9NwPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.434 [XNIO-1 task-1] u1CVUu3QTGKS2OrEgPrbbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.434 [XNIO-1 task-1] u1CVUu3QTGKS2OrEgPrbbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.434 [XNIO-1 task-1] u1CVUu3QTGKS2OrEgPrbbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.434 [XNIO-1 task-1] u1CVUu3QTGKS2OrEgPrbbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.434 [XNIO-1 task-1] u1CVUu3QTGKS2OrEgPrbbw DEBUG com.networknt.schema.TypeValidator debug - validate( "11738796-1ddc-4928-b7af-b9f45c16a007", "11738796-1ddc-4928-b7af-b9f45c16a007", clientId) +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "2239b460-b1bb-4b4b-9f33-1706b542f5b4", {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "0c06e037-4870-4730-be07-2d2c7d77", {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.439 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.440 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0c06e037-4870-4730-be07-2d2c7d77","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.440 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.440 [XNIO-1 task-1] 4-41gn_jR325OJV4XqaFGg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.441 [XNIO-1 task-1] uTaldh1kTva4KC8YfYcfuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.442 [XNIO-1 task-1] uTaldh1kTva4KC8YfYcfuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.442 [XNIO-1 task-1] uTaldh1kTva4KC8YfYcfuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.452 [XNIO-1 task-1] KmqbNPScQmGf4a96wL8S2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.452 [XNIO-1 task-1] KmqbNPScQmGf4a96wL8S2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.452 [XNIO-1 task-1] KmqbNPScQmGf4a96wL8S2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.452 [XNIO-1 task-1] KmqbNPScQmGf4a96wL8S2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.452 [XNIO-1 task-1] KmqbNPScQmGf4a96wL8S2A DEBUG com.networknt.schema.TypeValidator debug - validate( "11738796-1ddc-4928-b7af-b9f45c16a007", "11738796-1ddc-4928-b7af-b9f45c16a007", clientId) +18:11:06.454 [XNIO-1 task-1] 7QW8YgkQSpmHRtRpGP5gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.454 [XNIO-1 task-1] 7QW8YgkQSpmHRtRpGP5gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.454 [XNIO-1 task-1] 7QW8YgkQSpmHRtRpGP5gog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.454 [XNIO-1 task-1] 7QW8YgkQSpmHRtRpGP5gog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.460 [XNIO-1 task-1] kK8c2bOjQ7KxKH1cTmvp4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.460 [XNIO-1 task-1] kK8c2bOjQ7KxKH1cTmvp4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.460 [XNIO-1 task-1] kK8c2bOjQ7KxKH1cTmvp4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.460 [XNIO-1 task-1] kK8c2bOjQ7KxKH1cTmvp4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.463 [XNIO-1 task-1] RlR3nUjTQm-gtRNm6zfzWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.464 [XNIO-1 task-1] RlR3nUjTQm-gtRNm6zfzWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.464 [XNIO-1 task-1] RlR3nUjTQm-gtRNm6zfzWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.464 [XNIO-1 task-1] RlR3nUjTQm-gtRNm6zfzWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.469 [XNIO-1 task-1] Sc58K-3LSu2_ybV-kyMs3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.469 [XNIO-1 task-1] Sc58K-3LSu2_ybV-kyMs3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.469 [XNIO-1 task-1] Sc58K-3LSu2_ybV-kyMs3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.469 [XNIO-1 task-1] Sc58K-3LSu2_ybV-kyMs3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.469 [XNIO-1 task-1] Sc58K-3LSu2_ybV-kyMs3w DEBUG com.networknt.schema.TypeValidator debug - validate( "11738796-1ddc-4928-b7af-b9f45c16a007", "11738796-1ddc-4928-b7af-b9f45c16a007", clientId) +18:11:06.471 [XNIO-1 task-1] KRZfYD3pTqu6QLEFyjpCcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.471 [XNIO-1 task-1] KRZfYD3pTqu6QLEFyjpCcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.471 [XNIO-1 task-1] KRZfYD3pTqu6QLEFyjpCcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.471 [XNIO-1 task-1] KRZfYD3pTqu6QLEFyjpCcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.475 [XNIO-1 task-1] cf7a1pdUQDqqflqklWeNiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.475 [XNIO-1 task-1] cf7a1pdUQDqqflqklWeNiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.475 [XNIO-1 task-1] cf7a1pdUQDqqflqklWeNiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.476 [XNIO-1 task-1] cf7a1pdUQDqqflqklWeNiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "2239b460-b1bb-4b4b-9f33-1706b542f5b4", {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "b9c053b9-24b6-4870-8d32-b927431b", {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.481 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b9c053b9-24b6-4870-8d32-b927431b","clientDesc":"2239b460-b1bb-4b4b-9f33-1706b542f5b4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.482 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.482 [XNIO-1 task-1] axbjLwILSL2BpeKzGByCEg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.483 [XNIO-1 task-1] 1lcVEcnLTiK5sFjSUFcVwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.483 [XNIO-1 task-1] 1lcVEcnLTiK5sFjSUFcVwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.483 [XNIO-1 task-1] 1lcVEcnLTiK5sFjSUFcVwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.484 [XNIO-1 task-1] 1lcVEcnLTiK5sFjSUFcVwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.484 [XNIO-1 task-1] 1lcVEcnLTiK5sFjSUFcVwA DEBUG com.networknt.schema.TypeValidator debug - validate( "11738796-1ddc-4928-b7af-b9f45c16a007", "11738796-1ddc-4928-b7af-b9f45c16a007", clientId) +18:11:06.485 [XNIO-1 task-1] Wzem1ac7Tjqd45_39Xl72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.485 [XNIO-1 task-1] Wzem1ac7Tjqd45_39Xl72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.485 [XNIO-1 task-1] Wzem1ac7Tjqd45_39Xl72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.485 [XNIO-1 task-1] Wzem1ac7Tjqd45_39Xl72w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG com.networknt.schema.TypeValidator debug - validate( "3409eb13-e456-4a12-a43b-9efaa39c1082", {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG com.networknt.schema.TypeValidator debug - validate( "23dd0d09-9316-48e4-8283-bcfeecf9", {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"23dd0d09-9316-48e4-8283-bcfeecf9","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.491 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.492 [XNIO-1 task-1] bLXaLChjQBu3Jbys6CMubw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.493 [XNIO-1 task-1] DdM_y6yqQ1C5cxT4maClMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.493 [XNIO-1 task-1] DdM_y6yqQ1C5cxT4maClMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.493 [XNIO-1 task-1] DdM_y6yqQ1C5cxT4maClMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.504 [XNIO-1 task-1] 5nDibCcqSbeBQZVjO_2MsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.504 [XNIO-1 task-1] 5nDibCcqSbeBQZVjO_2MsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.504 [XNIO-1 task-1] 5nDibCcqSbeBQZVjO_2MsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.504 [XNIO-1 task-1] 5nDibCcqSbeBQZVjO_2MsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.510 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.511 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.511 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.511 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92bf2545-c1d1-4ce3-aa2d-8d78a274","clientDesc":"3409eb13-e456-4a12-a43b-9efaa39c1082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.511 [XNIO-1 task-1] GfXa-xJ6QtaGKmh4zlHmpg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.515 [XNIO-1 task-1] K-LDI9YQSmWay4JVr1Z9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/73df51f1-d2b6-488f-9321-84348f3a4303 +18:11:06.515 [XNIO-1 task-1] K-LDI9YQSmWay4JVr1Z9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.515 [XNIO-1 task-1] K-LDI9YQSmWay4JVr1Z9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.515 [XNIO-1 task-1] K-LDI9YQSmWay4JVr1Z9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/73df51f1-d2b6-488f-9321-84348f3a4303 +18:11:06.521 [XNIO-1 task-1] yWdCMwooToefKFt1Y_t0Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.521 [XNIO-1 task-1] yWdCMwooToefKFt1Y_t0Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.521 [XNIO-1 task-1] yWdCMwooToefKFt1Y_t0Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.521 [XNIO-1 task-1] yWdCMwooToefKFt1Y_t0Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007, base path is set to: null +18:11:06.521 [XNIO-1 task-1] yWdCMwooToefKFt1Y_t0Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "11738796-1ddc-4928-b7af-b9f45c16a007", "11738796-1ddc-4928-b7af-b9f45c16a007", clientId) +18:11:06.523 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.523 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.523 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "2222f52d-bda1-497c-a58c-3b5fda44691b", {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "3fb1a837-ef3a-459d-8640-4e6fced7", {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3fb1a837-ef3a-459d-8640-4e6fced7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.524 [XNIO-1 task-1] 9CR3fPZbSMyJTnKy9ydJOA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.526 [XNIO-1 task-1] 99q-UfPOScyFg3Q0RPO7qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354, base path is set to: null +18:11:06.526 [XNIO-1 task-1] 99q-UfPOScyFg3Q0RPO7qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.526 [XNIO-1 task-1] 99q-UfPOScyFg3Q0RPO7qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.526 [XNIO-1 task-1] 99q-UfPOScyFg3Q0RPO7qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354, base path is set to: null +18:11:06.526 [XNIO-1 task-1] 99q-UfPOScyFg3Q0RPO7qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0759de62-6cd2-4c6e-82b7-d17af0c95354", "0759de62-6cd2-4c6e-82b7-d17af0c95354", clientId) +18:11:06.528 [XNIO-1 task-1] npUV2TYBQ5Kpe6nDE25xLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.529 [XNIO-1 task-1] npUV2TYBQ5Kpe6nDE25xLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.529 [XNIO-1 task-1] npUV2TYBQ5Kpe6nDE25xLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.539 [XNIO-1 task-1] 9ylhronKRK-ZD0BvEwLFzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d22af9c-d217-4221-8ead-15d616fdd0c4 +18:11:06.539 [XNIO-1 task-1] 9ylhronKRK-ZD0BvEwLFzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.539 [XNIO-1 task-1] 9ylhronKRK-ZD0BvEwLFzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.540 [XNIO-1 task-1] 9ylhronKRK-ZD0BvEwLFzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d22af9c-d217-4221-8ead-15d616fdd0c4 +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.542 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b92a6df-424f-42ca-81a0-6fd34067","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.543 [XNIO-1 task-1] 4oFC72GNRMe1azJ85jI4fA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.545 [XNIO-1 task-1] B4IuxhJaSb-XpYGwvtVxAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d22af9c-d217-4221-8ead-15d616fdd0c4 +18:11:06.545 [XNIO-1 task-1] B4IuxhJaSb-XpYGwvtVxAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.545 [XNIO-1 task-1] B4IuxhJaSb-XpYGwvtVxAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.545 [XNIO-1 task-1] B4IuxhJaSb-XpYGwvtVxAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d22af9c-d217-4221-8ead-15d616fdd0c4 +18:11:06.549 [XNIO-1 task-1] 48FQAlbISoG28BofqLi-pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.549 [XNIO-1 task-1] 48FQAlbISoG28BofqLi-pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.549 [XNIO-1 task-1] 48FQAlbISoG28BofqLi-pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.549 [XNIO-1 task-1] 48FQAlbISoG28BofqLi-pw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.554 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.554 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.554 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8421a458-8e36-4fae-b123-99b26f77","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.555 [XNIO-1 task-1] 8_CL5W8-T3O-41vDPR5jSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.557 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.557 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.557 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328", {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "f198bdda-4141-4b42-b7cd-c4f3c654", {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f198bdda-4141-4b42-b7cd-c4f3c654","clientDesc":"34cb6fc1-5d95-4c5d-ac4c-3c077ca3d328","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.558 [XNIO-1 task-1] K4HRyxL5QRCZMB9XJ7WU7A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.560 [XNIO-1 task-1] NuxzpHleSdOBC1eLBiGyeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.560 [XNIO-1 task-1] NuxzpHleSdOBC1eLBiGyeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.560 [XNIO-1 task-1] NuxzpHleSdOBC1eLBiGyeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.560 [XNIO-1 task-1] NuxzpHleSdOBC1eLBiGyeA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.565 [XNIO-1 task-1] uQpeQ9YORJSLjtcE85N14g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09d6f4ce-d2d3-4a94-a180-7996b5c974c1, base path is set to: null +18:11:06.565 [XNIO-1 task-1] uQpeQ9YORJSLjtcE85N14g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.565 [XNIO-1 task-1] uQpeQ9YORJSLjtcE85N14g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.565 [XNIO-1 task-1] uQpeQ9YORJSLjtcE85N14g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09d6f4ce-d2d3-4a94-a180-7996b5c974c1, base path is set to: null +18:11:06.565 [XNIO-1 task-1] uQpeQ9YORJSLjtcE85N14g DEBUG com.networknt.schema.TypeValidator debug - validate( "09d6f4ce-d2d3-4a94-a180-7996b5c974c1", "09d6f4ce-d2d3-4a94-a180-7996b5c974c1", clientId) +18:11:06.567 [XNIO-1 task-1] sHusJuOXSCmdgPvRhJn9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.567 [XNIO-1 task-1] sHusJuOXSCmdgPvRhJn9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.567 [XNIO-1 task-1] sHusJuOXSCmdgPvRhJn9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.567 [XNIO-1 task-1] sHusJuOXSCmdgPvRhJn9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.569 [XNIO-1 task-1] QgR8EBGTTfWBO0-kzmB8OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.569 [XNIO-1 task-1] QgR8EBGTTfWBO0-kzmB8OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.569 [XNIO-1 task-1] QgR8EBGTTfWBO0-kzmB8OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.581 [XNIO-1 task-1] sASG7CMOTQeuDI1u6VXMaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354, base path is set to: null +18:11:06.581 [XNIO-1 task-1] sASG7CMOTQeuDI1u6VXMaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.581 [XNIO-1 task-1] sASG7CMOTQeuDI1u6VXMaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.581 [XNIO-1 task-1] sASG7CMOTQeuDI1u6VXMaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354, base path is set to: null +18:11:06.581 [XNIO-1 task-1] sASG7CMOTQeuDI1u6VXMaw DEBUG com.networknt.schema.TypeValidator debug - validate( "0759de62-6cd2-4c6e-82b7-d17af0c95354", "0759de62-6cd2-4c6e-82b7-d17af0c95354", clientId) +18:11:06.584 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.584 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.584 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.584 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.584 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.584 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG com.networknt.schema.TypeValidator debug - validate( "2222f52d-bda1-497c-a58c-3b5fda44691b", {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.585 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.585 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.585 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG com.networknt.schema.TypeValidator debug - validate( "57787583-aec1-483a-a078-f789b4b7", {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.585 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.585 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"57787583-aec1-483a-a078-f789b4b7","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.585 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.585 [XNIO-1 task-1] IVL0VeXzQ8yMuq_yXdojTg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.587 [XNIO-1 task-1] hpDLAbIGRemLchbDzDYuXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.587 [XNIO-1 task-1] hpDLAbIGRemLchbDzDYuXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.587 [XNIO-1 task-1] hpDLAbIGRemLchbDzDYuXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.587 [XNIO-1 task-1] hpDLAbIGRemLchbDzDYuXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.593 [XNIO-1 task-1] z-_3jnujTkGeDMUBHQqcoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.593 [XNIO-1 task-1] z-_3jnujTkGeDMUBHQqcoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.593 [XNIO-1 task-1] z-_3jnujTkGeDMUBHQqcoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.598 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d3def414-b79f-4fcb-a36a-1606e2fa275a +18:11:06.599 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d3def414-b79f-4fcb-a36a-1606e2fa275a +18:11:06.604 [XNIO-1 task-1] ocaDJmZ0R6e3HIYPlQyaNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.604 [XNIO-1 task-1] ocaDJmZ0R6e3HIYPlQyaNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.604 [XNIO-1 task-1] ocaDJmZ0R6e3HIYPlQyaNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.604 [XNIO-1 task-1] ocaDJmZ0R6e3HIYPlQyaNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.606 [XNIO-1 task-1] sikf3GlLS067Sj4f96QsYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.606 [XNIO-1 task-1] sikf3GlLS067Sj4f96QsYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.606 [XNIO-1 task-1] sikf3GlLS067Sj4f96QsYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.616 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.616 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.617 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0adb7e41-54fd-4d4e-8efe-77d81a35","clientDesc":"2639aa00-73a5-4f68-bd57-492252e78c9a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.618 [XNIO-1 task-1] ajDEerwPRFe9Oc69tNZl5w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.619 [XNIO-1 task-1] H8EWak2-TNidFiVegUf-2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.619 [XNIO-1 task-1] H8EWak2-TNidFiVegUf-2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.619 [XNIO-1 task-1] H8EWak2-TNidFiVegUf-2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.620 [XNIO-1 task-1] H8EWak2-TNidFiVegUf-2g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.624 [XNIO-1 task-1] i4lRaikXRo6cME7GwrV8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.624 [XNIO-1 task-1] i4lRaikXRo6cME7GwrV8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.624 [XNIO-1 task-1] i4lRaikXRo6cME7GwrV8Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.630 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:068c45ee-c8d7-4222-a0a9-0599c6430a4c +18:11:06.635 [XNIO-1 task-1] VvQNgHbLRUi1JjuT-Qigag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e7ebad14-1dd9-443e-ad06-bad64b592965, base path is set to: null +18:11:06.635 [XNIO-1 task-1] VvQNgHbLRUi1JjuT-Qigag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.635 [XNIO-1 task-1] VvQNgHbLRUi1JjuT-Qigag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.635 [XNIO-1 task-1] VvQNgHbLRUi1JjuT-Qigag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e7ebad14-1dd9-443e-ad06-bad64b592965, base path is set to: null +18:11:06.635 [XNIO-1 task-1] VvQNgHbLRUi1JjuT-Qigag DEBUG com.networknt.schema.TypeValidator debug - validate( "e7ebad14-1dd9-443e-ad06-bad64b592965", "e7ebad14-1dd9-443e-ad06-bad64b592965", clientId) +18:11:06.640 [XNIO-1 task-1] QDzYPfQoQeuF9YQRZE_-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6c98f48-684a-4879-ade7-9170211e4c36 +18:11:06.640 [XNIO-1 task-1] QDzYPfQoQeuF9YQRZE_-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.640 [XNIO-1 task-1] QDzYPfQoQeuF9YQRZE_-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.640 [XNIO-1 task-1] QDzYPfQoQeuF9YQRZE_-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6c98f48-684a-4879-ade7-9170211e4c36 +18:11:06.642 [XNIO-1 task-1] ZFnE9K0eTUCtA-nfLxAJMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.642 [XNIO-1 task-1] ZFnE9K0eTUCtA-nfLxAJMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.642 [XNIO-1 task-1] ZFnE9K0eTUCtA-nfLxAJMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.647 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.647 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.651 [XNIO-1 task-1] KEkhEPINT5GQUjacPaBXsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.652 [XNIO-1 task-1] KEkhEPINT5GQUjacPaBXsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.652 [XNIO-1 task-1] KEkhEPINT5GQUjacPaBXsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.662 [XNIO-1 task-1] GOX18DlqSfKJAmek9x7dyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.662 [XNIO-1 task-1] GOX18DlqSfKJAmek9x7dyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.662 [XNIO-1 task-1] GOX18DlqSfKJAmek9x7dyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.662 [XNIO-1 task-1] GOX18DlqSfKJAmek9x7dyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11738796-1ddc-4928-b7af-b9f45c16a007 +18:11:06.666 [XNIO-1 task-1] RPjlXDsJRFKMjVkIdMQ8oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.667 [XNIO-1 task-1] RPjlXDsJRFKMjVkIdMQ8oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.667 [XNIO-1 task-1] RPjlXDsJRFKMjVkIdMQ8oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.677 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.677 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.677 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.677 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.677 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.677 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.677 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.678 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.678 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.678 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.678 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.678 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d73ebed-5925-47b5-9e55-02dab54e","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.678 [XNIO-1 task-1] _WIWM_baQ6K4b-a0nA6sEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.680 [XNIO-1 task-1] 8XwcN3IeRbOzVnWtSXUMOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.680 [XNIO-1 task-1] 8XwcN3IeRbOzVnWtSXUMOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.680 [XNIO-1 task-1] 8XwcN3IeRbOzVnWtSXUMOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.680 [XNIO-1 task-1] 8XwcN3IeRbOzVnWtSXUMOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.685 [XNIO-1 task-1] nnPk7XItQ3WHoFqTmkMD4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.685 [XNIO-1 task-1] nnPk7XItQ3WHoFqTmkMD4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.685 [XNIO-1 task-1] nnPk7XItQ3WHoFqTmkMD4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.685 [XNIO-1 task-1] nnPk7XItQ3WHoFqTmkMD4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.690 [XNIO-1 task-1] bUctN0AlRJO8DdAdP5w8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.690 [XNIO-1 task-1] bUctN0AlRJO8DdAdP5w8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.690 [XNIO-1 task-1] bUctN0AlRJO8DdAdP5w8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.700 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae5d5e60-5796-46fa-93ce-d70222bae73c", {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "22473723-8a94-4976-a085-c8f8a9cf", {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"22473723-8a94-4976-a085-c8f8a9cf","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.701 [XNIO-1 task-1] dcIlGeNKSEGYtQy5Mio7Sw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.703 [XNIO-1 task-1] b_XFyRsnRfG_TYTLehrHVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/550f5721-3377-4b2f-b87a-38db79793d30, base path is set to: null +18:11:06.704 [XNIO-1 task-1] b_XFyRsnRfG_TYTLehrHVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.704 [XNIO-1 task-1] b_XFyRsnRfG_TYTLehrHVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.704 [XNIO-1 task-1] b_XFyRsnRfG_TYTLehrHVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/550f5721-3377-4b2f-b87a-38db79793d30, base path is set to: null +18:11:06.704 [XNIO-1 task-1] b_XFyRsnRfG_TYTLehrHVg DEBUG com.networknt.schema.TypeValidator debug - validate( "550f5721-3377-4b2f-b87a-38db79793d30", "550f5721-3377-4b2f-b87a-38db79793d30", clientId) +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG com.networknt.schema.TypeValidator debug - validate( "586d4384-a7ae-4d88-b5c2-d57bc0236769", {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.707 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.708 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG com.networknt.schema.TypeValidator debug - validate( "3e6befa5-a1ac-4a26-8f59-deb371e8", {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.708 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.708 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3e6befa5-a1ac-4a26-8f59-deb371e8","clientDesc":"586d4384-a7ae-4d88-b5c2-d57bc0236769","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.708 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.708 [XNIO-1 task-1] RwcELerZSCyv5aOX3jM98g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.709 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.709 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"048d237a-9e70-4600-959a-929dc59c","clientDesc":"ae5d5e60-5796-46fa-93ce-d70222bae73c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.710 [XNIO-1 task-1] 9VUTJVgARuatTrMTfNFT8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.712 [XNIO-1 task-1] h_kZgzVrSmaA9M0bSueC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/550f5721-3377-4b2f-b87a-38db79793d30 +18:11:06.712 [XNIO-1 task-1] h_kZgzVrSmaA9M0bSueC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.712 [XNIO-1 task-1] h_kZgzVrSmaA9M0bSueC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.712 [XNIO-1 task-1] h_kZgzVrSmaA9M0bSueC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/550f5721-3377-4b2f-b87a-38db79793d30 +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.716 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.717 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.717 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7b78b705-f6c9-4646-a11e-735c45d7","clientDesc":"a9836a84-6f50-4cc0-943f-546b818fa619","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.717 [XNIO-1 task-1] GX2tUSlvSle4UdF5A_9KNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.718 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.718 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "315954df-5196-417d-9806-0a5d328b3015", {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "323c6e96-06f3-4eb3-a4eb-7f8d45ed", {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"323c6e96-06f3-4eb3-a4eb-7f8d45ed","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.719 [XNIO-1 task-1] IAOynitCTvOso31x36DS1A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.721 [XNIO-1 task-1] EZ0-FtioQTG_fhw_3L29Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/068c45ee-c8d7-4222-a0a9-0599c6430a4c, base path is set to: null +18:11:06.721 [XNIO-1 task-1] EZ0-FtioQTG_fhw_3L29Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.721 [XNIO-1 task-1] EZ0-FtioQTG_fhw_3L29Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.721 [XNIO-1 task-1] EZ0-FtioQTG_fhw_3L29Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/068c45ee-c8d7-4222-a0a9-0599c6430a4c, base path is set to: null +18:11:06.721 [XNIO-1 task-1] EZ0-FtioQTG_fhw_3L29Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "068c45ee-c8d7-4222-a0a9-0599c6430a4c", "068c45ee-c8d7-4222-a0a9-0599c6430a4c", clientId) +18:11:06.726 [XNIO-1 task-1] QIG3-rbjTmiRezftbnp_5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.726 [XNIO-1 task-1] QIG3-rbjTmiRezftbnp_5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.726 [XNIO-1 task-1] QIG3-rbjTmiRezftbnp_5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.739 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.740 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.740 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbdf4533-7de9-43c7-ae2a-31aecb8d","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.740 [XNIO-1 task-1] DKjEp527RNaREEEwH-i5Lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.742 [XNIO-1 task-1] QkbH1HmsSRmhGGbQfjZBow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.742 [XNIO-1 task-1] QkbH1HmsSRmhGGbQfjZBow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.742 [XNIO-1 task-1] QkbH1HmsSRmhGGbQfjZBow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.742 [XNIO-1 task-1] QkbH1HmsSRmhGGbQfjZBow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.754 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.754 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.754 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.754 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG com.networknt.schema.TypeValidator debug - validate( "315954df-5196-417d-9806-0a5d328b3015", {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG com.networknt.schema.TypeValidator debug - validate( "73440640-acc9-482b-b2df-57ac319c", {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"73440640-acc9-482b-b2df-57ac319c","clientDesc":"315954df-5196-417d-9806-0a5d328b3015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.755 [XNIO-1 task-1] p1nZQzVsRiS_vGpIvuXGpw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.757 [XNIO-1 task-1] ce8BUFyzRFOUG70kB94Thg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.757 [XNIO-1 task-1] ce8BUFyzRFOUG70kB94Thg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.757 [XNIO-1 task-1] ce8BUFyzRFOUG70kB94Thg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.762 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6856af21-2eb9-4186-955f-ad78d1d9e6d9 +18:11:06.763 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6856af21-2eb9-4186-955f-ad78d1d9e6d9 +18:11:06.767 [XNIO-1 task-1] kJ5sSXMbQeK7NLFCe-UCaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4f0d802-414b-4034-8131-5fa39bf3b1e1 +18:11:06.767 [XNIO-1 task-1] kJ5sSXMbQeK7NLFCe-UCaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.767 [XNIO-1 task-1] kJ5sSXMbQeK7NLFCe-UCaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.767 [XNIO-1 task-1] kJ5sSXMbQeK7NLFCe-UCaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4f0d802-414b-4034-8131-5fa39bf3b1e1 +18:11:06.772 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.772 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.772 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.772 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.772 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.772 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.772 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.773 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.773 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.773 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.773 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.773 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"65de12fc-e0e0-41c5-9b70-4b63bd59","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.773 [XNIO-1 task-1] RSE7WWsxTseK_zXPgzwSsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2222f52d-bda1-497c-a58c-3b5fda44691b", {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.775 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "07430056-fe7c-408c-bde5-0bfd8005", {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.776 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.776 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"07430056-fe7c-408c-bde5-0bfd8005","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.776 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.776 [XNIO-1 task-1] 5vknLVJhQj6rdtfYhjC0cQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.777 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.777 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff17e49-9574-48dc-93eb-2adef98a","clientDesc":"2222f52d-bda1-497c-a58c-3b5fda44691b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.778 [XNIO-1 task-1] EHZvvinCQk2jGbRIQF1_sQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.780 [XNIO-1 task-1] Lzk62vIVSNyCRAKAe1tHUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354 +18:11:06.780 [XNIO-1 task-1] Lzk62vIVSNyCRAKAe1tHUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.780 [XNIO-1 task-1] Lzk62vIVSNyCRAKAe1tHUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.780 [XNIO-1 task-1] Lzk62vIVSNyCRAKAe1tHUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354 +18:11:06.782 [XNIO-1 task-1] qTMgyHjtSAqMP9SiNDJKtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354, base path is set to: null +18:11:06.782 [XNIO-1 task-1] qTMgyHjtSAqMP9SiNDJKtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.782 [XNIO-1 task-1] qTMgyHjtSAqMP9SiNDJKtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.782 [XNIO-1 task-1] qTMgyHjtSAqMP9SiNDJKtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0759de62-6cd2-4c6e-82b7-d17af0c95354, base path is set to: null +18:11:06.782 [XNIO-1 task-1] qTMgyHjtSAqMP9SiNDJKtA DEBUG com.networknt.schema.TypeValidator debug - validate( "0759de62-6cd2-4c6e-82b7-d17af0c95354", "0759de62-6cd2-4c6e-82b7-d17af0c95354", clientId) +18:11:06.787 [XNIO-1 task-1] lMhUhmpqRuSa0BxMsEUrJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.787 [XNIO-1 task-1] lMhUhmpqRuSa0BxMsEUrJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.787 [XNIO-1 task-1] lMhUhmpqRuSa0BxMsEUrJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.787 [XNIO-1 task-1] lMhUhmpqRuSa0BxMsEUrJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.792 [XNIO-1 task-1] fKqVqZyMRkybgyca887lZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/550f5721-3377-4b2f-b87a-38db79793d30 +18:11:06.792 [XNIO-1 task-1] fKqVqZyMRkybgyca887lZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.792 [XNIO-1 task-1] fKqVqZyMRkybgyca887lZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.792 [XNIO-1 task-1] fKqVqZyMRkybgyca887lZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/550f5721-3377-4b2f-b87a-38db79793d30 +18:11:06.797 [XNIO-1 task-1] bmvR51XgS1ipudjf3C1xZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d3def414-b79f-4fcb-a36a-1606e2fa275a, base path is set to: null +18:11:06.797 [XNIO-1 task-1] bmvR51XgS1ipudjf3C1xZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.797 [XNIO-1 task-1] bmvR51XgS1ipudjf3C1xZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.797 [XNIO-1 task-1] bmvR51XgS1ipudjf3C1xZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d3def414-b79f-4fcb-a36a-1606e2fa275a, base path is set to: null +18:11:06.797 [XNIO-1 task-1] bmvR51XgS1ipudjf3C1xZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d3def414-b79f-4fcb-a36a-1606e2fa275a", "d3def414-b79f-4fcb-a36a-1606e2fa275a", clientId) +18:11:06.802 [XNIO-1 task-1] 8d41lq1fQn2G-aWvnbFe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6856af21-2eb9-4186-955f-ad78d1d9e6d9, base path is set to: null +18:11:06.802 [XNIO-1 task-1] 8d41lq1fQn2G-aWvnbFe4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.802 [XNIO-1 task-1] 8d41lq1fQn2G-aWvnbFe4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.802 [XNIO-1 task-1] 8d41lq1fQn2G-aWvnbFe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6856af21-2eb9-4186-955f-ad78d1d9e6d9, base path is set to: null +18:11:06.802 [XNIO-1 task-1] 8d41lq1fQn2G-aWvnbFe4A DEBUG com.networknt.schema.TypeValidator debug - validate( "6856af21-2eb9-4186-955f-ad78d1d9e6d9", "6856af21-2eb9-4186-955f-ad78d1d9e6d9", clientId) +18:11:06.804 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.804 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "01b765a0-36fd-4c33-8085-6d8db356c60e", {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "0c491e5b-677c-46a4-9c58-dc5d2a76", {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0c491e5b-677c-46a4-9c58-dc5d2a76","clientDesc":"01b765a0-36fd-4c33-8085-6d8db356c60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.805 [XNIO-1 task-1] WgYPBGasS7afrriyB2JMRA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.807 [XNIO-1 task-1] geMxKQ24SvGkmaLlPy6l1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.807 [XNIO-1 task-1] geMxKQ24SvGkmaLlPy6l1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.807 [XNIO-1 task-1] geMxKQ24SvGkmaLlPy6l1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.807 [XNIO-1 task-1] geMxKQ24SvGkmaLlPy6l1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.812 [XNIO-1 task-1] SzT8HhzwQLmNSQvSXEwAhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.813 [XNIO-1 task-1] SzT8HhzwQLmNSQvSXEwAhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.813 [XNIO-1 task-1] SzT8HhzwQLmNSQvSXEwAhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.817 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:040c24fe-8027-43ff-ae5b-d37a079b6351 +18:11:06.818 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:040c24fe-8027-43ff-ae5b-d37a079b6351 +18:11:06.823 [XNIO-1 task-1] _sFuzGxYTZubg3JAP2Vw5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6856af21-2eb9-4186-955f-ad78d1d9e6d9 +18:11:06.823 [XNIO-1 task-1] _sFuzGxYTZubg3JAP2Vw5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.823 [XNIO-1 task-1] _sFuzGxYTZubg3JAP2Vw5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.823 [XNIO-1 task-1] _sFuzGxYTZubg3JAP2Vw5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6856af21-2eb9-4186-955f-ad78d1d9e6d9 +18:11:06.823 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6856af21-2eb9-4186-955f-ad78d1d9e6d9 +18:11:06.828 [XNIO-1 task-1] K3d5sC-rQo-WQbW3WH3T5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.828 [XNIO-1 task-1] K3d5sC-rQo-WQbW3WH3T5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.828 [XNIO-1 task-1] K3d5sC-rQo-WQbW3WH3T5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.828 [XNIO-1 task-1] K3d5sC-rQo-WQbW3WH3T5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.833 [XNIO-1 task-1] JiYIslS7RlCkr5EfvzRDtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.833 [XNIO-1 task-1] JiYIslS7RlCkr5EfvzRDtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.833 [XNIO-1 task-1] JiYIslS7RlCkr5EfvzRDtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.843 [XNIO-1 task-1] m_KpZfYBT9GtDAer1ATVIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09d6f4ce-d2d3-4a94-a180-7996b5c974c1 +18:11:06.843 [XNIO-1 task-1] m_KpZfYBT9GtDAer1ATVIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.844 [XNIO-1 task-1] m_KpZfYBT9GtDAer1ATVIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.844 [XNIO-1 task-1] m_KpZfYBT9GtDAer1ATVIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09d6f4ce-d2d3-4a94-a180-7996b5c974c1 +18:11:06.845 [XNIO-1 task-1] zSaXd9u_Sd2KqObxHOnPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.845 [XNIO-1 task-1] zSaXd9u_Sd2KqObxHOnPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.846 [XNIO-1 task-1] zSaXd9u_Sd2KqObxHOnPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.846 [XNIO-1 task-1] zSaXd9u_Sd2KqObxHOnPgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.851 [XNIO-1 task-1] JWP0vK_aQdqaMhJlPR17dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09d6f4ce-d2d3-4a94-a180-7996b5c974c1, base path is set to: null +18:11:06.851 [XNIO-1 task-1] JWP0vK_aQdqaMhJlPR17dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.851 [XNIO-1 task-1] JWP0vK_aQdqaMhJlPR17dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.851 [XNIO-1 task-1] JWP0vK_aQdqaMhJlPR17dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09d6f4ce-d2d3-4a94-a180-7996b5c974c1, base path is set to: null +18:11:06.851 [XNIO-1 task-1] JWP0vK_aQdqaMhJlPR17dA DEBUG com.networknt.schema.TypeValidator debug - validate( "09d6f4ce-d2d3-4a94-a180-7996b5c974c1", "09d6f4ce-d2d3-4a94-a180-7996b5c974c1", clientId) +18:11:06.856 [XNIO-1 task-1] XUBMGP04Sb6TvdBWQRpBQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83dafb42-f856-4eab-8a53-6004058f2d56 +18:11:06.856 [XNIO-1 task-1] XUBMGP04Sb6TvdBWQRpBQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.856 [XNIO-1 task-1] XUBMGP04Sb6TvdBWQRpBQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.857 [XNIO-1 task-1] XUBMGP04Sb6TvdBWQRpBQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83dafb42-f856-4eab-8a53-6004058f2d56 +18:11:06.859 [XNIO-1 task-1] SBPoWb0aQkCCvkt8cU0EmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4da4685e-242b-4005-826f-c93decad7a01, base path is set to: null +18:11:06.859 [XNIO-1 task-1] SBPoWb0aQkCCvkt8cU0EmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.859 [XNIO-1 task-1] SBPoWb0aQkCCvkt8cU0EmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.859 [XNIO-1 task-1] SBPoWb0aQkCCvkt8cU0EmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4da4685e-242b-4005-826f-c93decad7a01, base path is set to: null +18:11:06.859 [XNIO-1 task-1] SBPoWb0aQkCCvkt8cU0EmA DEBUG com.networknt.schema.TypeValidator debug - validate( "4da4685e-242b-4005-826f-c93decad7a01", "4da4685e-242b-4005-826f-c93decad7a01", clientId) +18:11:06.865 [XNIO-1 task-1] T1CgkACMRgm8YgIxx97Wkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.865 [XNIO-1 task-1] T1CgkACMRgm8YgIxx97Wkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.865 [XNIO-1 task-1] T1CgkACMRgm8YgIxx97Wkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.865 [XNIO-1 task-1] T1CgkACMRgm8YgIxx97Wkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.867 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.867 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.867 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.867 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.867 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"434e3670-f810-4947-be13-b498011a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.868 [XNIO-1 task-1] es92Tj9jSgmiWr4iuGGH4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.870 [XNIO-1 task-1] bfZA6fNYRZy1U87ACVNuCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.870 [XNIO-1 task-1] bfZA6fNYRZy1U87ACVNuCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.870 [XNIO-1 task-1] bfZA6fNYRZy1U87ACVNuCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.870 [XNIO-1 task-1] bfZA6fNYRZy1U87ACVNuCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.875 [XNIO-1 task-1] fvxTodzgTamDerqTmBvmBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.875 [XNIO-1 task-1] fvxTodzgTamDerqTmBvmBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.875 [XNIO-1 task-1] fvxTodzgTamDerqTmBvmBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.875 [XNIO-1 task-1] fvxTodzgTamDerqTmBvmBA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.880 [XNIO-1 task-1] pN3wZFexTWWiECEvxPjteQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.880 [XNIO-1 task-1] pN3wZFexTWWiECEvxPjteQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.880 [XNIO-1 task-1] pN3wZFexTWWiECEvxPjteQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.880 [XNIO-1 task-1] pN3wZFexTWWiECEvxPjteQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.885 [XNIO-1 task-1] C3k0CYLcSj2wkOFONkmDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.885 [XNIO-1 task-1] C3k0CYLcSj2wkOFONkmDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.885 [XNIO-1 task-1] C3k0CYLcSj2wkOFONkmDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.886 [XNIO-1 task-1] C3k0CYLcSj2wkOFONkmDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.887 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.887 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.887 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86c057da-1682-4ef6-9a69-36f5befe","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.888 [XNIO-1 task-1] jEgiSVVgSEua9C8lUFwMUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.890 [XNIO-1 task-1] c72vt8rGSwuxRAFWe4st3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.890 [XNIO-1 task-1] c72vt8rGSwuxRAFWe4st3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.890 [XNIO-1 task-1] c72vt8rGSwuxRAFWe4st3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.901 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.901 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.901 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.901 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.901 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.901 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a2ed1d09-ca2c-4b04-ae26-592783dc08fe", {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.902 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.902 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.902 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e31944fd-f212-49d1-b160-54ede313", {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.902 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.902 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e31944fd-f212-49d1-b160-54ede313","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.902 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.902 [XNIO-1 task-1] MUlloHDORXKmUl6zmPt7ZQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.904 [XNIO-1 task-1] jMv8ZU7bSyenj0-GGZzsjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.904 [XNIO-1 task-1] jMv8ZU7bSyenj0-GGZzsjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.904 [XNIO-1 task-1] jMv8ZU7bSyenj0-GGZzsjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.926 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.926 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4ed30b8d-8ee2-4cc3-80b1-0b34ef9a","clientDesc":"a2ed1d09-ca2c-4b04-ae26-592783dc08fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.927 [XNIO-1 task-1] sUS1jXAURXqLGs1lBerYiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:06.930 [XNIO-1 task-1] bpBIBS6UQZWBSkIv3JQtaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.930 [XNIO-1 task-1] bpBIBS6UQZWBSkIv3JQtaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.930 [XNIO-1 task-1] bpBIBS6UQZWBSkIv3JQtaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.930 [XNIO-1 task-1] bpBIBS6UQZWBSkIv3JQtaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.932 [XNIO-1 task-1] BHrkKPKNSxmr6hQ6Oj1xcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6c98f48-684a-4879-ade7-9170211e4c36, base path is set to: null +18:11:06.932 [XNIO-1 task-1] BHrkKPKNSxmr6hQ6Oj1xcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.932 [XNIO-1 task-1] BHrkKPKNSxmr6hQ6Oj1xcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.932 [XNIO-1 task-1] BHrkKPKNSxmr6hQ6Oj1xcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6c98f48-684a-4879-ade7-9170211e4c36, base path is set to: null +18:11:06.932 [XNIO-1 task-1] BHrkKPKNSxmr6hQ6Oj1xcw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6c98f48-684a-4879-ade7-9170211e4c36", "a6c98f48-684a-4879-ade7-9170211e4c36", clientId) +18:11:06.937 [XNIO-1 task-1] kguCl4_PQMahbbXc4kvVVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.937 [XNIO-1 task-1] kguCl4_PQMahbbXc4kvVVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.937 [XNIO-1 task-1] kguCl4_PQMahbbXc4kvVVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.937 [XNIO-1 task-1] kguCl4_PQMahbbXc4kvVVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f +18:11:06.939 [XNIO-1 task-1] NDms-x6RQ1WonlWsWJYq3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f, base path is set to: null +18:11:06.939 [XNIO-1 task-1] NDms-x6RQ1WonlWsWJYq3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.939 [XNIO-1 task-1] NDms-x6RQ1WonlWsWJYq3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.939 [XNIO-1 task-1] NDms-x6RQ1WonlWsWJYq3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f, base path is set to: null +18:11:06.939 [XNIO-1 task-1] NDms-x6RQ1WonlWsWJYq3g DEBUG com.networknt.schema.TypeValidator debug - validate( "8a00dc70-55cf-4cb8-a715-562214ea3f4f", "8a00dc70-55cf-4cb8-a715-562214ea3f4f", clientId) +18:11:06.940 [XNIO-1 task-1] dxQvOc7DSvyE-C03lVQ5Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.940 [XNIO-1 task-1] dxQvOc7DSvyE-C03lVQ5Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.941 [XNIO-1 task-1] dxQvOc7DSvyE-C03lVQ5Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.941 [XNIO-1 task-1] dxQvOc7DSvyE-C03lVQ5Gw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.946 [XNIO-1 task-1] wFAs3bExTLKL0SXUWIFxLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83dafb42-f856-4eab-8a53-6004058f2d56 +18:11:06.946 [XNIO-1 task-1] wFAs3bExTLKL0SXUWIFxLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.946 [XNIO-1 task-1] wFAs3bExTLKL0SXUWIFxLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:06.946 [XNIO-1 task-1] wFAs3bExTLKL0SXUWIFxLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/83dafb42-f856-4eab-8a53-6004058f2d56 +18:11:06.951 [XNIO-1 task-1] QjA-vozvQn68QahdLamIeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.951 [XNIO-1 task-1] QjA-vozvQn68QahdLamIeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.951 [XNIO-1 task-1] QjA-vozvQn68QahdLamIeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.951 [XNIO-1 task-1] QjA-vozvQn68QahdLamIeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.957 [XNIO-1 task-1] aYI-C1O3TBqJygVGmKoYmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c9234e91-069f-4b23-84b9-48f8cfcfca4b, base path is set to: null +18:11:06.957 [XNIO-1 task-1] aYI-C1O3TBqJygVGmKoYmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.957 [XNIO-1 task-1] aYI-C1O3TBqJygVGmKoYmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.957 [XNIO-1 task-1] aYI-C1O3TBqJygVGmKoYmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c9234e91-069f-4b23-84b9-48f8cfcfca4b, base path is set to: null +18:11:06.958 [XNIO-1 task-1] aYI-C1O3TBqJygVGmKoYmg DEBUG com.networknt.schema.TypeValidator debug - validate( "c9234e91-069f-4b23-84b9-48f8cfcfca4b", "c9234e91-069f-4b23-84b9-48f8cfcfca4b", clientId) +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3642c210-c168-42e1-bcd1-0eaf84726f34", {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ebaa8a18-3caf-4b63-a285-0f21a40f", {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.963 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.964 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ebaa8a18-3caf-4b63-a285-0f21a40f","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.964 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.964 [XNIO-1 task-1] _nuNz5rITLCmFLUc8qxFWQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.965 [XNIO-1 task-1] 9EWmflZlR_-xgTNvPae_yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:06.965 [XNIO-1 task-1] 9EWmflZlR_-xgTNvPae_yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.966 [XNIO-1 task-1] 9EWmflZlR_-xgTNvPae_yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.966 [XNIO-1 task-1] 9EWmflZlR_-xgTNvPae_yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:06.966 [XNIO-1 task-1] 9EWmflZlR_-xgTNvPae_yw DEBUG com.networknt.schema.TypeValidator debug - validate( "6cde640a-aef7-4660-bb95-d6619205db6a", "6cde640a-aef7-4660-bb95-d6619205db6a", clientId) +18:11:06.968 [XNIO-1 task-1] EdZS5sHtR-WWx-Rk_khf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.968 [XNIO-1 task-1] EdZS5sHtR-WWx-Rk_khf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.968 [XNIO-1 task-1] EdZS5sHtR-WWx-Rk_khf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.968 [XNIO-1 task-1] EdZS5sHtR-WWx-Rk_khf8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.973 [XNIO-1 task-1] -iP4oqF5Q2WOuvB2dnVlEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.973 [XNIO-1 task-1] -iP4oqF5Q2WOuvB2dnVlEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.973 [XNIO-1 task-1] -iP4oqF5Q2WOuvB2dnVlEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.974 [XNIO-1 task-1] -iP4oqF5Q2WOuvB2dnVlEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG com.networknt.schema.TypeValidator debug - validate( "0c8e33f7-ce7a-4541-ab6f-83ac4a183839", {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG com.networknt.schema.TypeValidator debug - validate( "bed6f966-2111-4f24-bff7-9d238c88", {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bed6f966-2111-4f24-bff7-9d238c88","clientDesc":"0c8e33f7-ce7a-4541-ab6f-83ac4a183839","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:06.979 [XNIO-1 task-1] FJ5gGLXURcOQ2bTMjojvww DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:06.981 [XNIO-1 task-1] qhLsYayyTcqRsOdW9Cgbhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/040c24fe-8027-43ff-ae5b-d37a079b6351, base path is set to: null +18:11:06.981 [XNIO-1 task-1] qhLsYayyTcqRsOdW9Cgbhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.981 [XNIO-1 task-1] qhLsYayyTcqRsOdW9Cgbhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.981 [XNIO-1 task-1] qhLsYayyTcqRsOdW9Cgbhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/040c24fe-8027-43ff-ae5b-d37a079b6351, base path is set to: null +18:11:06.981 [XNIO-1 task-1] qhLsYayyTcqRsOdW9Cgbhg DEBUG com.networknt.schema.TypeValidator debug - validate( "040c24fe-8027-43ff-ae5b-d37a079b6351", "040c24fe-8027-43ff-ae5b-d37a079b6351", clientId) +18:11:06.986 [XNIO-1 task-1] MhEOPTATRRiCt6q6bsA3YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.986 [XNIO-1 task-1] MhEOPTATRRiCt6q6bsA3YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.986 [XNIO-1 task-1] MhEOPTATRRiCt6q6bsA3YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:06.986 [XNIO-1 task-1] MhEOPTATRRiCt6q6bsA3YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:06.992 [XNIO-1 task-1] hwJIdp-sRBaHczyafTAtHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7ae17bb6-e4f1-49ad-85ee-296ee74f8f73, base path is set to: null +18:11:06.992 [XNIO-1 task-1] hwJIdp-sRBaHczyafTAtHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:06.992 [XNIO-1 task-1] hwJIdp-sRBaHczyafTAtHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:06.992 [XNIO-1 task-1] hwJIdp-sRBaHczyafTAtHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7ae17bb6-e4f1-49ad-85ee-296ee74f8f73, base path is set to: null +18:11:06.993 [XNIO-1 task-1] hwJIdp-sRBaHczyafTAtHg DEBUG com.networknt.schema.TypeValidator debug - validate( "7ae17bb6-e4f1-49ad-85ee-296ee74f8f73", "7ae17bb6-e4f1-49ad-85ee-296ee74f8f73", clientId) +18:11:06.997 [XNIO-1 task-1] HvYN2pg-TPaL3JxDz8uvAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.997 [XNIO-1 task-1] HvYN2pg-TPaL3JxDz8uvAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.997 [XNIO-1 task-1] HvYN2pg-TPaL3JxDz8uvAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:06.997 [XNIO-1 task-1] HvYN2pg-TPaL3JxDz8uvAg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.002 [XNIO-1 task-1] vacoPbxnSOWX0HcI0O3Fyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.002 [XNIO-1 task-1] vacoPbxnSOWX0HcI0O3Fyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.002 [XNIO-1 task-1] vacoPbxnSOWX0HcI0O3Fyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.008 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f0672765-0a8f-45c2-953c-fc81aa320ab7 +18:11:07.012 [XNIO-1 task-1] kUr3KXCNTAaAkCW6j0y9YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f, base path is set to: null +18:11:07.012 [XNIO-1 task-1] kUr3KXCNTAaAkCW6j0y9YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.012 [XNIO-1 task-1] kUr3KXCNTAaAkCW6j0y9YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.012 [XNIO-1 task-1] kUr3KXCNTAaAkCW6j0y9YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8a00dc70-55cf-4cb8-a715-562214ea3f4f, base path is set to: null +18:11:07.013 [XNIO-1 task-1] kUr3KXCNTAaAkCW6j0y9YA DEBUG com.networknt.schema.TypeValidator debug - validate( "8a00dc70-55cf-4cb8-a715-562214ea3f4f", "8a00dc70-55cf-4cb8-a715-562214ea3f4f", clientId) +18:11:07.017 [XNIO-1 task-1] yeGKAaUxS4CJv3JrLmZeEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.017 [XNIO-1 task-1] yeGKAaUxS4CJv3JrLmZeEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.017 [XNIO-1 task-1] yeGKAaUxS4CJv3JrLmZeEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.017 [XNIO-1 task-1] yeGKAaUxS4CJv3JrLmZeEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.021 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.022 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6a64dfe-7fb6-4093-8b5e-330f7468","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.023 [XNIO-1 task-1] hidEAIqYTBGxq4E7RdGZnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.024 [XNIO-1 task-1] 8g0t6UEXSYGUa9ZySptb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.024 [XNIO-1 task-1] 8g0t6UEXSYGUa9ZySptb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.024 [XNIO-1 task-1] 8g0t6UEXSYGUa9ZySptb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.024 [XNIO-1 task-1] 8g0t6UEXSYGUa9ZySptb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.026 [XNIO-1 task-1] sUWy0mt6Sa-goggx1P2D6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.026 [XNIO-1 task-1] sUWy0mt6Sa-goggx1P2D6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.026 [XNIO-1 task-1] sUWy0mt6Sa-goggx1P2D6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.031 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:73b2abf1-27d7-4878-b5dc-cb52848be1c4 +18:11:07.031 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:73b2abf1-27d7-4878-b5dc-cb52848be1c4 +18:11:07.036 [XNIO-1 task-1] _8MWzahVRWyJPnjNyB5q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.036 [XNIO-1 task-1] _8MWzahVRWyJPnjNyB5q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.036 [XNIO-1 task-1] _8MWzahVRWyJPnjNyB5q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.036 [XNIO-1 task-1] _8MWzahVRWyJPnjNyB5q1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.037 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.037 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c10d403c-c2b4-47b9-ae72-cdb205ea","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.038 [XNIO-1 task-1] 75QN4ispSJ6Z8ElGW9htWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.040 [XNIO-1 task-1] X-RAZNA5QdeLVT7BeYYTSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.040 [XNIO-1 task-1] X-RAZNA5QdeLVT7BeYYTSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.040 [XNIO-1 task-1] X-RAZNA5QdeLVT7BeYYTSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.040 [XNIO-1 task-1] X-RAZNA5QdeLVT7BeYYTSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.042 [XNIO-1 task-1] Zjj_vvfgRhyUfCjN3p4m9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.042 [XNIO-1 task-1] Zjj_vvfgRhyUfCjN3p4m9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.042 [XNIO-1 task-1] Zjj_vvfgRhyUfCjN3p4m9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.042 [XNIO-1 task-1] Zjj_vvfgRhyUfCjN3p4m9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.046 [XNIO-1 task-1] Jjs6A1tgTai-NyiYd8ucrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f0672765-0a8f-45c2-953c-fc81aa320ab7, base path is set to: null +18:11:07.047 [XNIO-1 task-1] Jjs6A1tgTai-NyiYd8ucrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.047 [XNIO-1 task-1] Jjs6A1tgTai-NyiYd8ucrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.047 [XNIO-1 task-1] Jjs6A1tgTai-NyiYd8ucrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f0672765-0a8f-45c2-953c-fc81aa320ab7, base path is set to: null +18:11:07.047 [XNIO-1 task-1] Jjs6A1tgTai-NyiYd8ucrw DEBUG com.networknt.schema.TypeValidator debug - validate( "f0672765-0a8f-45c2-953c-fc81aa320ab7", "f0672765-0a8f-45c2-953c-fc81aa320ab7", clientId) +18:11:07.051 [XNIO-1 task-1] g5k8Ui0wSy2ITMtnhfiXIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.051 [XNIO-1 task-1] g5k8Ui0wSy2ITMtnhfiXIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.051 [XNIO-1 task-1] g5k8Ui0wSy2ITMtnhfiXIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.056 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c971f5ea-a2be-41d0-b437-edd481edfade +18:11:07.057 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c971f5ea-a2be-41d0-b437-edd481edfade +18:11:07.062 [XNIO-1 task-1] 3cSdACwOTeaoiibMEQaP5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/73b2abf1-27d7-4878-b5dc-cb52848be1c4 +18:11:07.062 [XNIO-1 task-1] 3cSdACwOTeaoiibMEQaP5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.062 [XNIO-1 task-1] 3cSdACwOTeaoiibMEQaP5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.062 [XNIO-1 task-1] 3cSdACwOTeaoiibMEQaP5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/73b2abf1-27d7-4878-b5dc-cb52848be1c4 +18:11:07.062 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:73b2abf1-27d7-4878-b5dc-cb52848be1c4 +18:11:07.066 [XNIO-1 task-1] loqTqu7DThaQr9Mnz1wcaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.067 [XNIO-1 task-1] loqTqu7DThaQr9Mnz1wcaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.067 [XNIO-1 task-1] loqTqu7DThaQr9Mnz1wcaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.067 [XNIO-1 task-1] loqTqu7DThaQr9Mnz1wcaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.068 [XNIO-1 task-1] QjMatlPPQUa-A3tMhd3QXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.069 [XNIO-1 task-1] QjMatlPPQUa-A3tMhd3QXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.069 [XNIO-1 task-1] QjMatlPPQUa-A3tMhd3QXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.079 [XNIO-1 task-1] jp1bWk52QpiMHfG9u6dbrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.079 [XNIO-1 task-1] jp1bWk52QpiMHfG9u6dbrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.079 [XNIO-1 task-1] jp1bWk52QpiMHfG9u6dbrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.080 [XNIO-1 task-1] jp1bWk52QpiMHfG9u6dbrg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.087 [XNIO-1 task-1] mNdMLZbKSzyfnmKNwTEQBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:07.087 [XNIO-1 task-1] mNdMLZbKSzyfnmKNwTEQBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.087 [XNIO-1 task-1] mNdMLZbKSzyfnmKNwTEQBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.087 [XNIO-1 task-1] mNdMLZbKSzyfnmKNwTEQBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:07.087 [XNIO-1 task-1] mNdMLZbKSzyfnmKNwTEQBg DEBUG com.networknt.schema.TypeValidator debug - validate( "6cde640a-aef7-4660-bb95-d6619205db6a", "6cde640a-aef7-4660-bb95-d6619205db6a", clientId) +18:11:07.089 [XNIO-1 task-1] DYBWSw-vSHeWAfZVKmlsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.089 [XNIO-1 task-1] DYBWSw-vSHeWAfZVKmlsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.089 [XNIO-1 task-1] DYBWSw-vSHeWAfZVKmlsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.103 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.103 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "3642c210-c168-42e1-bcd1-0eaf84726f34", {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "1d3df62c-1a1c-431a-9301-db4d8296", {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1d3df62c-1a1c-431a-9301-db4d8296","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.104 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.105 [XNIO-1 task-1] 7kgfHtlCR2eDfT2KlPHDhw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.107 [XNIO-1 task-1] W5wEM89CSfW6-QjHjQNT7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.107 [XNIO-1 task-1] W5wEM89CSfW6-QjHjQNT7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.107 [XNIO-1 task-1] W5wEM89CSfW6-QjHjQNT7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.117 [XNIO-1 task-1] WpFpH2hsQluwSlj4IdO9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.118 [XNIO-1 task-1] WpFpH2hsQluwSlj4IdO9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.118 [XNIO-1 task-1] WpFpH2hsQluwSlj4IdO9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.118 [XNIO-1 task-1] WpFpH2hsQluwSlj4IdO9ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.126 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.127 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.128 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.128 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"10e41054-cf1f-4d1f-882b-310b67a7","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.128 [XNIO-1 task-1] ujHFvC6CSzujmiwd1PDJ5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb1deaab-62a2-496a-9dac-009fdfcd3e84", {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "359e7286-333a-41fd-a274-8a353160", {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.130 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"359e7286-333a-41fd-a274-8a353160","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.131 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.131 [XNIO-1 task-1] 1rvdItZrRvCx1zdGJF5wPQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.132 [XNIO-1 task-1] pBlzc6OYRNWi3t4uXE5yrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.133 [XNIO-1 task-1] pBlzc6OYRNWi3t4uXE5yrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.133 [XNIO-1 task-1] pBlzc6OYRNWi3t4uXE5yrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.176 [XNIO-1 task-1] Kyx3VwzYSCmwMtql_ZDypg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.177 [XNIO-1 task-1] Kyx3VwzYSCmwMtql_ZDypg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.177 [XNIO-1 task-1] Kyx3VwzYSCmwMtql_ZDypg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.177 [XNIO-1 task-1] Kyx3VwzYSCmwMtql_ZDypg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.187 [XNIO-1 task-1] oRFBqHIcRqWqRdkQrqCWNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9, base path is set to: null +18:11:07.187 [XNIO-1 task-1] oRFBqHIcRqWqRdkQrqCWNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.187 [XNIO-1 task-1] oRFBqHIcRqWqRdkQrqCWNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.187 [XNIO-1 task-1] oRFBqHIcRqWqRdkQrqCWNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9, base path is set to: null +18:11:07.187 [XNIO-1 task-1] oRFBqHIcRqWqRdkQrqCWNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "acd5faa8-507d-464c-8242-d3dd62738dc9", "acd5faa8-507d-464c-8242-d3dd62738dc9", clientId) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG com.networknt.schema.TypeValidator debug - validate( "eb1deaab-62a2-496a-9dac-009fdfcd3e84", {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG com.networknt.schema.TypeValidator debug - validate( "70e625a0-5748-4542-88f4-837edff8", {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"70e625a0-5748-4542-88f4-837edff8","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.190 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.191 [XNIO-1 task-1] tfZO2sLESZCNAx4Ug2W64g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.192 [XNIO-1 task-1] LuPKLktFTwWgqbSKA1U7yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9, base path is set to: null +18:11:07.193 [XNIO-1 task-1] LuPKLktFTwWgqbSKA1U7yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.193 [XNIO-1 task-1] LuPKLktFTwWgqbSKA1U7yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.193 [XNIO-1 task-1] LuPKLktFTwWgqbSKA1U7yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9, base path is set to: null +18:11:07.193 [XNIO-1 task-1] LuPKLktFTwWgqbSKA1U7yg DEBUG com.networknt.schema.TypeValidator debug - validate( "acd5faa8-507d-464c-8242-d3dd62738dc9", "acd5faa8-507d-464c-8242-d3dd62738dc9", clientId) +18:11:07.195 [XNIO-1 task-1] S2X04djSTsW7ySNNO407Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9 +18:11:07.195 [XNIO-1 task-1] S2X04djSTsW7ySNNO407Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.195 [XNIO-1 task-1] S2X04djSTsW7ySNNO407Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.195 [XNIO-1 task-1] S2X04djSTsW7ySNNO407Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9 +18:11:07.197 [XNIO-1 task-1] T1IdkWpoTyiSM_DK3IPtmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.197 [XNIO-1 task-1] T1IdkWpoTyiSM_DK3IPtmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.198 [XNIO-1 task-1] T1IdkWpoTyiSM_DK3IPtmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.198 [XNIO-1 task-1] T1IdkWpoTyiSM_DK3IPtmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.198 [XNIO-1 task-1] T1IdkWpoTyiSM_DK3IPtmw DEBUG com.networknt.schema.TypeValidator debug - validate( "c971f5ea-a2be-41d0-b437-edd481edfade", "c971f5ea-a2be-41d0-b437-edd481edfade", clientId) +18:11:07.200 [XNIO-1 task-1] aItyRMRkScOAhzSUempSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.200 [XNIO-1 task-1] aItyRMRkScOAhzSUempSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.200 [XNIO-1 task-1] aItyRMRkScOAhzSUempSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.200 [XNIO-1 task-1] aItyRMRkScOAhzSUempSpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.208 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.208 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.208 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "07b6aea1-8813-475e-9816-bf39d2e97474", {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "2dbf493a-d753-4b63-8f51-f53db6cf", {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2dbf493a-d753-4b63-8f51-f53db6cf","clientDesc":"07b6aea1-8813-475e-9816-bf39d2e97474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.209 [XNIO-1 task-1] _Nsd9CEET2-8hMqbnfxU1A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.211 [XNIO-1 task-1] HcbhYUH8Ri-J4-vN3rH_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.211 [XNIO-1 task-1] HcbhYUH8Ri-J4-vN3rH_Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.211 [XNIO-1 task-1] HcbhYUH8Ri-J4-vN3rH_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.222 [XNIO-1 task-1] uI4xQnNiR2Om_R3U-gfsow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:07.222 [XNIO-1 task-1] uI4xQnNiR2Om_R3U-gfsow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.222 [XNIO-1 task-1] uI4xQnNiR2Om_R3U-gfsow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.223 [XNIO-1 task-1] uI4xQnNiR2Om_R3U-gfsow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:07.223 [XNIO-1 task-1] uI4xQnNiR2Om_R3U-gfsow DEBUG com.networknt.schema.TypeValidator debug - validate( "6cde640a-aef7-4660-bb95-d6619205db6a", "6cde640a-aef7-4660-bb95-d6619205db6a", clientId) +18:11:07.225 [XNIO-1 task-1] D6ti1YrqS0arHR7RVCmVXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d +18:11:07.225 [XNIO-1 task-1] D6ti1YrqS0arHR7RVCmVXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.225 [XNIO-1 task-1] D6ti1YrqS0arHR7RVCmVXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.225 [XNIO-1 task-1] D6ti1YrqS0arHR7RVCmVXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d +18:11:07.228 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.229 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.229 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.229 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80944454-5815-45fb-819c-52c42fb1","clientDesc":"eb1deaab-62a2-496a-9dac-009fdfcd3e84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.230 [XNIO-1 task-1] gKwHemZjTfmG7O7X6LYBPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.233 [XNIO-1 task-1] IOEUQbrFQx6IvaKFY7yUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.234 [XNIO-1 task-1] IOEUQbrFQx6IvaKFY7yUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.234 [XNIO-1 task-1] IOEUQbrFQx6IvaKFY7yUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.234 [XNIO-1 task-1] IOEUQbrFQx6IvaKFY7yUdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG com.networknt.schema.TypeValidator debug - validate( "d9af2ecf-09fc-48a7-b00f-e0259a1668d5", {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG com.networknt.schema.TypeValidator debug - validate( "c0ce0eaa-e9b2-4496-9a22-fb071a86", {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.240 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c0ce0eaa-e9b2-4496-9a22-fb071a86","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.241 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.241 [XNIO-1 task-1] er-1VpbkQnO0IUo1KbXufA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.242 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.242 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.242 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f837c1d5-51a0-4506-9deb-38bab697","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.243 [XNIO-1 task-1] UtjHG3-iR-qgjyG_4aes3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.245 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.245 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.245 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.245 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.245 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG com.networknt.schema.TypeValidator debug - validate( "e194bc84-42c5-4f29-82d7-50f0c38abe9f", {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG com.networknt.schema.TypeValidator debug - validate( "2d697a9e-3e9c-48cc-8745-1b466262", {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2d697a9e-3e9c-48cc-8745-1b466262","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.246 [XNIO-1 task-1] XSNT_TDdTbOGhjlAAT7atg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.248 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.248 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.248 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef64a397-6f07-46bf-8639-4e2fa909","clientDesc":"e194bc84-42c5-4f29-82d7-50f0c38abe9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.249 [XNIO-1 task-1] XzizCKP8QkG-ufN7H3oJHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.251 [XNIO-1 task-1] Z3t9El95Q9SZ178ZlK2S6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/935d8dff-c9b1-40a9-9bd2-5d47f93d6264 +18:11:07.251 [XNIO-1 task-1] Z3t9El95Q9SZ178ZlK2S6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.251 [XNIO-1 task-1] Z3t9El95Q9SZ178ZlK2S6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.251 [XNIO-1 task-1] Z3t9El95Q9SZ178ZlK2S6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/935d8dff-c9b1-40a9-9bd2-5d47f93d6264 +18:11:07.258 [XNIO-1 task-1] iuHIS21nTOmzTRf0QdmIxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84c40d39-8956-444a-a12f-f29a6704070a, base path is set to: null +18:11:07.258 [XNIO-1 task-1] iuHIS21nTOmzTRf0QdmIxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.258 [XNIO-1 task-1] iuHIS21nTOmzTRf0QdmIxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.258 [XNIO-1 task-1] iuHIS21nTOmzTRf0QdmIxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84c40d39-8956-444a-a12f-f29a6704070a, base path is set to: null +18:11:07.258 [XNIO-1 task-1] iuHIS21nTOmzTRf0QdmIxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84c40d39-8956-444a-a12f-f29a6704070a", "84c40d39-8956-444a-a12f-f29a6704070a", clientId) +18:11:07.266 [XNIO-1 task-1] qANCTtNWRsOJ_R3NdG0xEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.266 [XNIO-1 task-1] qANCTtNWRsOJ_R3NdG0xEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.267 [XNIO-1 task-1] qANCTtNWRsOJ_R3NdG0xEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.267 [XNIO-1 task-1] qANCTtNWRsOJ_R3NdG0xEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.272 [XNIO-1 task-1] 5R-IpLAATEGKcmVVkKhWbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.272 [XNIO-1 task-1] 5R-IpLAATEGKcmVVkKhWbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.272 [XNIO-1 task-1] 5R-IpLAATEGKcmVVkKhWbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.273 [XNIO-1 task-1] 5R-IpLAATEGKcmVVkKhWbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.279 [XNIO-1 task-1] vn8ncojzSTmQGMbfPMZM_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.279 [XNIO-1 task-1] vn8ncojzSTmQGMbfPMZM_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.279 [XNIO-1 task-1] vn8ncojzSTmQGMbfPMZM_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.279 [XNIO-1 task-1] vn8ncojzSTmQGMbfPMZM_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.286 [XNIO-1 task-1] u6bkvFhdSBqYGoFzTqNg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9 +18:11:07.286 [XNIO-1 task-1] u6bkvFhdSBqYGoFzTqNg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.286 [XNIO-1 task-1] u6bkvFhdSBqYGoFzTqNg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.286 [XNIO-1 task-1] u6bkvFhdSBqYGoFzTqNg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/acd5faa8-507d-464c-8242-d3dd62738dc9 +18:11:07.293 [XNIO-1 task-1] QWn_fVeTR7yiquM7KiaAVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.293 [XNIO-1 task-1] QWn_fVeTR7yiquM7KiaAVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.293 [XNIO-1 task-1] QWn_fVeTR7yiquM7KiaAVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.304 [XNIO-1 task-1] 8PzfQ2iLSxShEWCh9AHuwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.304 [XNIO-1 task-1] 8PzfQ2iLSxShEWCh9AHuwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.304 [XNIO-1 task-1] 8PzfQ2iLSxShEWCh9AHuwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.315 [XNIO-1 task-1] JHciSofFQ1CLgThLeaXhiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/838641ba-76dc-474a-ba6e-8750affbf840, base path is set to: null +18:11:07.316 [XNIO-1 task-1] JHciSofFQ1CLgThLeaXhiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.316 [XNIO-1 task-1] JHciSofFQ1CLgThLeaXhiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.316 [XNIO-1 task-1] JHciSofFQ1CLgThLeaXhiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/838641ba-76dc-474a-ba6e-8750affbf840, base path is set to: null +18:11:07.316 [XNIO-1 task-1] JHciSofFQ1CLgThLeaXhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "838641ba-76dc-474a-ba6e-8750affbf840", "838641ba-76dc-474a-ba6e-8750affbf840", clientId) +18:11:07.319 [XNIO-1 task-1] rNVCmpc3TFCaS6aGOVGMyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.319 [XNIO-1 task-1] rNVCmpc3TFCaS6aGOVGMyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.319 [XNIO-1 task-1] rNVCmpc3TFCaS6aGOVGMyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.331 [XNIO-1 task-1] L0fIhmc4Tlu8p6GPKVI2Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f6e321d-927f-4105-83b5-4e61093a68fe +18:11:07.331 [XNIO-1 task-1] L0fIhmc4Tlu8p6GPKVI2Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.331 [XNIO-1 task-1] L0fIhmc4Tlu8p6GPKVI2Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.331 [XNIO-1 task-1] L0fIhmc4Tlu8p6GPKVI2Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f6e321d-927f-4105-83b5-4e61093a68fe +18:11:07.336 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.336 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.337 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"886cb7de-5a67-4aa0-8522-3e276cf4","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.338 [XNIO-1 task-1] i7zkGn1cTneTrpA-hrr6xg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.341 [XNIO-1 task-1] fagXUte8QDGIfiOdg3rXAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.341 [XNIO-1 task-1] fagXUte8QDGIfiOdg3rXAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.341 [XNIO-1 task-1] fagXUte8QDGIfiOdg3rXAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.341 [XNIO-1 task-1] fagXUte8QDGIfiOdg3rXAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.343 [XNIO-1 task-1] GvFvlrWdTfWh9SujCyxoOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d, base path is set to: null +18:11:07.343 [XNIO-1 task-1] GvFvlrWdTfWh9SujCyxoOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.343 [XNIO-1 task-1] GvFvlrWdTfWh9SujCyxoOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.343 [XNIO-1 task-1] GvFvlrWdTfWh9SujCyxoOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d, base path is set to: null +18:11:07.343 [XNIO-1 task-1] GvFvlrWdTfWh9SujCyxoOg DEBUG com.networknt.schema.TypeValidator debug - validate( "a6790efe-b124-48fb-b390-71ea57561a2d", "a6790efe-b124-48fb-b390-71ea57561a2d", clientId) +18:11:07.344 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.344 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.344 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG com.networknt.schema.TypeValidator debug - validate( "b16d59d6-82a8-4aa1-9d80-7f1fcf38d376", {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG com.networknt.schema.TypeValidator debug - validate( "863b5fa5-b60e-45da-9050-1b46c428", {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"863b5fa5-b60e-45da-9050-1b46c428","clientDesc":"b16d59d6-82a8-4aa1-9d80-7f1fcf38d376","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.345 [XNIO-1 task-1] DFvrecUPRbaDesaMCkam3A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.347 [XNIO-1 task-1] TU1v4rvcSLSuGc_k-xAlfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/838641ba-76dc-474a-ba6e-8750affbf840, base path is set to: null +18:11:07.347 [XNIO-1 task-1] TU1v4rvcSLSuGc_k-xAlfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.347 [XNIO-1 task-1] TU1v4rvcSLSuGc_k-xAlfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.347 [XNIO-1 task-1] TU1v4rvcSLSuGc_k-xAlfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/838641ba-76dc-474a-ba6e-8750affbf840, base path is set to: null +18:11:07.347 [XNIO-1 task-1] TU1v4rvcSLSuGc_k-xAlfw DEBUG com.networknt.schema.TypeValidator debug - validate( "838641ba-76dc-474a-ba6e-8750affbf840", "838641ba-76dc-474a-ba6e-8750affbf840", clientId) +18:11:07.361 [XNIO-1 task-1] RKDzHbT3S8ybuarkgYjN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.361 [XNIO-1 task-1] RKDzHbT3S8ybuarkgYjN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.361 [XNIO-1 task-1] RKDzHbT3S8ybuarkgYjN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.361 [XNIO-1 task-1] RKDzHbT3S8ybuarkgYjN7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.367 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.368 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.368 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.368 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "03dc386d-e177-427b-a631-e0d40daf9279", {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2cb16389-ce00-42c1-a6cb-4a8608b0", {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2cb16389-ce00-42c1-a6cb-4a8608b0","clientDesc":"03dc386d-e177-427b-a631-e0d40daf9279","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.369 [XNIO-1 task-1] r0zhVZkfRxSThnn4YQP81Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.371 [XNIO-1 task-1] of9Sl9VPTrS2-Bdr-WOZoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d37a36b-2909-48e2-a8dc-7e3ed5002023, base path is set to: null +18:11:07.371 [XNIO-1 task-1] of9Sl9VPTrS2-Bdr-WOZoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.371 [XNIO-1 task-1] of9Sl9VPTrS2-Bdr-WOZoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.371 [XNIO-1 task-1] of9Sl9VPTrS2-Bdr-WOZoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d37a36b-2909-48e2-a8dc-7e3ed5002023, base path is set to: null +18:11:07.371 [XNIO-1 task-1] of9Sl9VPTrS2-Bdr-WOZoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3d37a36b-2909-48e2-a8dc-7e3ed5002023", "3d37a36b-2909-48e2-a8dc-7e3ed5002023", clientId) +18:11:07.374 [XNIO-1 task-1] d5tB4rRbRUSgqMCYCQCtRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.374 [XNIO-1 task-1] d5tB4rRbRUSgqMCYCQCtRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.374 [XNIO-1 task-1] d5tB4rRbRUSgqMCYCQCtRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.380 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cfdda24c-ae6d-4e19-89d3-067485efcef6 +18:11:07.385 [XNIO-1 task-1] mYa23FqQQOWZ5DatX31_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.385 [XNIO-1 task-1] mYa23FqQQOWZ5DatX31_qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.385 [XNIO-1 task-1] mYa23FqQQOWZ5DatX31_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.385 [XNIO-1 task-1] mYa23FqQQOWZ5DatX31_qw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.393 [XNIO-1 task-1] xXf5BFLYQVexUGXp6uCmvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.393 [XNIO-1 task-1] xXf5BFLYQVexUGXp6uCmvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.393 [XNIO-1 task-1] xXf5BFLYQVexUGXp6uCmvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.393 [XNIO-1 task-1] xXf5BFLYQVexUGXp6uCmvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.393 [XNIO-1 task-1] xXf5BFLYQVexUGXp6uCmvg DEBUG com.networknt.schema.TypeValidator debug - validate( "c971f5ea-a2be-41d0-b437-edd481edfade", "c971f5ea-a2be-41d0-b437-edd481edfade", clientId) +18:11:07.395 [XNIO-1 task-1] dRrWejIIRiGRMtNJZTUJrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d37a36b-2909-48e2-a8dc-7e3ed5002023 +18:11:07.395 [XNIO-1 task-1] dRrWejIIRiGRMtNJZTUJrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.395 [XNIO-1 task-1] dRrWejIIRiGRMtNJZTUJrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.395 [XNIO-1 task-1] dRrWejIIRiGRMtNJZTUJrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d37a36b-2909-48e2-a8dc-7e3ed5002023 +18:11:07.398 [XNIO-1 task-1] XyVgH9ctTEGCRu-WLd0m3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.398 [XNIO-1 task-1] XyVgH9ctTEGCRu-WLd0m3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.398 [XNIO-1 task-1] XyVgH9ctTEGCRu-WLd0m3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.403 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d6be9d86-5ddc-424f-8669-63df6e714c57 +18:11:07.404 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d6be9d86-5ddc-424f-8669-63df6e714c57 +18:11:07.408 [XNIO-1 task-1] kYUb99opSSO6g7eOBWrTng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.408 [XNIO-1 task-1] kYUb99opSSO6g7eOBWrTng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.408 [XNIO-1 task-1] kYUb99opSSO6g7eOBWrTng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.408 [XNIO-1 task-1] kYUb99opSSO6g7eOBWrTng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a +18:11:07.411 [XNIO-1 task-1] 9fo5tzahS-meTff7VtBNZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.411 [XNIO-1 task-1] 9fo5tzahS-meTff7VtBNZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.411 [XNIO-1 task-1] 9fo5tzahS-meTff7VtBNZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.422 [XNIO-1 task-1] q-yrLGUFSXmX0UuDHxVrZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.422 [XNIO-1 task-1] q-yrLGUFSXmX0UuDHxVrZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.422 [XNIO-1 task-1] q-yrLGUFSXmX0UuDHxVrZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.422 [XNIO-1 task-1] q-yrLGUFSXmX0UuDHxVrZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.429 [XNIO-1 task-1] vC2euupbSKKIURoedmYMQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d, base path is set to: null +18:11:07.429 [XNIO-1 task-1] vC2euupbSKKIURoedmYMQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.429 [XNIO-1 task-1] vC2euupbSKKIURoedmYMQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.429 [XNIO-1 task-1] vC2euupbSKKIURoedmYMQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d, base path is set to: null +18:11:07.429 [XNIO-1 task-1] vC2euupbSKKIURoedmYMQw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6790efe-b124-48fb-b390-71ea57561a2d", "a6790efe-b124-48fb-b390-71ea57561a2d", clientId) +18:11:07.431 [XNIO-1 task-1] fCXDIYewSNGSU5cCybsl3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d613d609-0733-4921-bae0-397d358e67c9 +18:11:07.431 [XNIO-1 task-1] fCXDIYewSNGSU5cCybsl3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.431 [XNIO-1 task-1] fCXDIYewSNGSU5cCybsl3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.431 [XNIO-1 task-1] fCXDIYewSNGSU5cCybsl3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d613d609-0733-4921-bae0-397d358e67c9 +18:11:07.437 [XNIO-1 task-1] BGxrOfUjRYulrUm1UJ-_lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.437 [XNIO-1 task-1] BGxrOfUjRYulrUm1UJ-_lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.437 [XNIO-1 task-1] BGxrOfUjRYulrUm1UJ-_lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.437 [XNIO-1 task-1] BGxrOfUjRYulrUm1UJ-_lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.437 [XNIO-1 task-1] BGxrOfUjRYulrUm1UJ-_lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c971f5ea-a2be-41d0-b437-edd481edfade", "c971f5ea-a2be-41d0-b437-edd481edfade", clientId) +18:11:07.439 [XNIO-1 task-1] AO5ZKradTzK13KMDpr1tiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.439 [XNIO-1 task-1] AO5ZKradTzK13KMDpr1tiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.439 [XNIO-1 task-1] AO5ZKradTzK13KMDpr1tiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.449 [XNIO-1 task-1] eYl0QFD-RS-fLa_uHms5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d37a36b-2909-48e2-a8dc-7e3ed5002023 +18:11:07.449 [XNIO-1 task-1] eYl0QFD-RS-fLa_uHms5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.449 [XNIO-1 task-1] eYl0QFD-RS-fLa_uHms5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.449 [XNIO-1 task-1] eYl0QFD-RS-fLa_uHms5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d37a36b-2909-48e2-a8dc-7e3ed5002023 +18:11:07.454 [XNIO-1 task-1] BN-65TK9TRunEw-Kpi7abg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.454 [XNIO-1 task-1] BN-65TK9TRunEw-Kpi7abg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.454 [XNIO-1 task-1] BN-65TK9TRunEw-Kpi7abg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.467 [XNIO-1 task-1] Jfxxtnu-Qo-W8p-sB_UfJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.467 [XNIO-1 task-1] Jfxxtnu-Qo-W8p-sB_UfJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.467 [XNIO-1 task-1] Jfxxtnu-Qo-W8p-sB_UfJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.477 [XNIO-1 task-1] Oqo6auD3QK-OFECAh5Hgtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.477 [XNIO-1 task-1] Oqo6auD3QK-OFECAh5Hgtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.477 [XNIO-1 task-1] Oqo6auD3QK-OFECAh5Hgtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.490 [XNIO-1 task-1] 2dz4pONpTL6CRGae1ao5LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.490 [XNIO-1 task-1] 2dz4pONpTL6CRGae1ao5LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.490 [XNIO-1 task-1] 2dz4pONpTL6CRGae1ao5LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.490 [XNIO-1 task-1] 2dz4pONpTL6CRGae1ao5LA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.495 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:69c033d2 +18:11:07.495 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:69c033d2 +18:11:07.496 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.496 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.496 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.497 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.497 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.497 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "3642c210-c168-42e1-bcd1-0eaf84726f34", {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.498 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.498 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.498 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab7125b9-6504-4f17-8e26-a3e514b2", {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.498 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.498 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ab7125b9-6504-4f17-8e26-a3e514b2","clientDesc":"3642c210-c168-42e1-bcd1-0eaf84726f34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.498 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.498 [XNIO-1 task-1] uEcBAu7GTxuPIQef9QzBjA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.500 [XNIO-1 task-1] WDl7vnUFRuWkegwqHjdwyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.500 [XNIO-1 task-1] WDl7vnUFRuWkegwqHjdwyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.500 [XNIO-1 task-1] WDl7vnUFRuWkegwqHjdwyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.514 [XNIO-1 task-1] taLL55VKQK2Hsfs0RIjsJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.514 [XNIO-1 task-1] taLL55VKQK2Hsfs0RIjsJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.514 [XNIO-1 task-1] taLL55VKQK2Hsfs0RIjsJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.515 [XNIO-1 task-1] taLL55VKQK2Hsfs0RIjsJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.515 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:69c033d2 +18:11:07.521 [XNIO-1 task-1] bS3FD4fEQGSeywkSQDTpPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.521 [XNIO-1 task-1] bS3FD4fEQGSeywkSQDTpPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.521 [XNIO-1 task-1] bS3FD4fEQGSeywkSQDTpPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.521 [XNIO-1 task-1] bS3FD4fEQGSeywkSQDTpPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.529 [XNIO-1 task-1] EV6zH_PTSpGfT8QDvshPXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.529 [XNIO-1 task-1] EV6zH_PTSpGfT8QDvshPXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.529 [XNIO-1 task-1] EV6zH_PTSpGfT8QDvshPXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.529 [XNIO-1 task-1] EV6zH_PTSpGfT8QDvshPXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.536 [XNIO-1 task-1] uXu-ADTVS_utEaAhReZWgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b7fe618-8136-4266-a083-1db9a70ac697, base path is set to: null +18:11:07.536 [XNIO-1 task-1] uXu-ADTVS_utEaAhReZWgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.536 [XNIO-1 task-1] uXu-ADTVS_utEaAhReZWgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.536 [XNIO-1 task-1] uXu-ADTVS_utEaAhReZWgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b7fe618-8136-4266-a083-1db9a70ac697, base path is set to: null +18:11:07.536 [XNIO-1 task-1] uXu-ADTVS_utEaAhReZWgw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b7fe618-8136-4266-a083-1db9a70ac697", "4b7fe618-8136-4266-a083-1db9a70ac697", clientId) +18:11:07.538 [XNIO-1 task-1] YbXUJAX5Rc6XQwcLphKF2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.539 [XNIO-1 task-1] YbXUJAX5Rc6XQwcLphKF2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.539 [XNIO-1 task-1] YbXUJAX5Rc6XQwcLphKF2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.550 [XNIO-1 task-1] f_yMCuvBQjWcPMZkvQf0rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b2a07e84-6a5f-44c7-9c4e-062da9e43a6f +18:11:07.550 [XNIO-1 task-1] f_yMCuvBQjWcPMZkvQf0rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.550 [XNIO-1 task-1] f_yMCuvBQjWcPMZkvQf0rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.550 [XNIO-1 task-1] f_yMCuvBQjWcPMZkvQf0rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b2a07e84-6a5f-44c7-9c4e-062da9e43a6f +18:11:07.555 [XNIO-1 task-1] gr8NV_N2Qd2DWiw__AhL-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/edafbfd1-fdd2-4c2e-923d-f5c5fd908d8a, base path is set to: null +18:11:07.555 [XNIO-1 task-1] gr8NV_N2Qd2DWiw__AhL-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.555 [XNIO-1 task-1] gr8NV_N2Qd2DWiw__AhL-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.555 [XNIO-1 task-1] gr8NV_N2Qd2DWiw__AhL-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/edafbfd1-fdd2-4c2e-923d-f5c5fd908d8a, base path is set to: null +18:11:07.555 [XNIO-1 task-1] gr8NV_N2Qd2DWiw__AhL-g DEBUG com.networknt.schema.TypeValidator debug - validate( "edafbfd1-fdd2-4c2e-923d-f5c5fd908d8a", "edafbfd1-fdd2-4c2e-923d-f5c5fd908d8a", clientId) +18:11:07.560 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.560 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.560 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG com.networknt.schema.TypeValidator debug - validate( "517a127d-d061-4add-8cfa-bc3243963d31", {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG com.networknt.schema.TypeValidator debug - validate( "62319fef-14a7-4116-b711-6b5d4db8", {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"62319fef-14a7-4116-b711-6b5d4db8","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.561 [XNIO-1 task-1] EPkKeJQ0SAWf9Cxjb8pLww DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.563 [XNIO-1 task-1] o48dmURhToOOcEPjW2V15w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b7fe618-8136-4266-a083-1db9a70ac697, base path is set to: null +18:11:07.563 [XNIO-1 task-1] o48dmURhToOOcEPjW2V15w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.563 [XNIO-1 task-1] o48dmURhToOOcEPjW2V15w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.563 [XNIO-1 task-1] o48dmURhToOOcEPjW2V15w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b7fe618-8136-4266-a083-1db9a70ac697, base path is set to: null +18:11:07.563 [XNIO-1 task-1] o48dmURhToOOcEPjW2V15w DEBUG com.networknt.schema.TypeValidator debug - validate( "4b7fe618-8136-4266-a083-1db9a70ac697", "4b7fe618-8136-4266-a083-1db9a70ac697", clientId) +18:11:07.565 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "517a127d-d061-4add-8cfa-bc3243963d31", {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "02ccbf79-f6c1-4c9a-b871-8b72e450", {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.566 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.567 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"02ccbf79-f6c1-4c9a-b871-8b72e450","clientDesc":"517a127d-d061-4add-8cfa-bc3243963d31","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.567 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.567 [XNIO-1 task-1] NJoIfG-RT5CF7-I_eSn7FQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.568 [XNIO-1 task-1] 4asW9bHvSkauoqC96xrdTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b7fe618-8136-4266-a083-1db9a70ac697, base path is set to: null +18:11:07.569 [XNIO-1 task-1] 4asW9bHvSkauoqC96xrdTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.569 [XNIO-1 task-1] 4asW9bHvSkauoqC96xrdTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.569 [XNIO-1 task-1] 4asW9bHvSkauoqC96xrdTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4b7fe618-8136-4266-a083-1db9a70ac697, base path is set to: null +18:11:07.569 [XNIO-1 task-1] 4asW9bHvSkauoqC96xrdTw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b7fe618-8136-4266-a083-1db9a70ac697", "4b7fe618-8136-4266-a083-1db9a70ac697", clientId) +18:11:07.573 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0dddf9b8 +18:11:07.574 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.574 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.574 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.575 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.575 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.575 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.575 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.575 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.576 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.576 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.576 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.576 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21b70564-60fd-4baf-a270-25113566","clientDesc":"2c3cd6d9-83cc-410d-bba7-927fd9686850","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.576 [XNIO-1 task-1] Ot-QNxQ5SISk2wQY6B9gZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.578 [XNIO-1 task-1] rL-EczkBRuSiETvNKsDuaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a0e1af1-e000-4b9c-bd4f-01c3fbd5ad56 +18:11:07.578 [XNIO-1 task-1] rL-EczkBRuSiETvNKsDuaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.578 [XNIO-1 task-1] rL-EczkBRuSiETvNKsDuaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.579 [XNIO-1 task-1] rL-EczkBRuSiETvNKsDuaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a0e1af1-e000-4b9c-bd4f-01c3fbd5ad56 +18:11:07.585 [XNIO-1 task-1] c6wNwElLRBOi8BYho0DfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.586 [XNIO-1 task-1] c6wNwElLRBOi8BYho0DfeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.586 [XNIO-1 task-1] c6wNwElLRBOi8BYho0DfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.586 [XNIO-1 task-1] c6wNwElLRBOi8BYho0DfeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.594 [XNIO-1 task-1] hRu0rDzTRwepVP0qSjsU_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cfdda24c-ae6d-4e19-89d3-067485efcef6, base path is set to: null +18:11:07.595 [XNIO-1 task-1] hRu0rDzTRwepVP0qSjsU_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.595 [XNIO-1 task-1] hRu0rDzTRwepVP0qSjsU_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.595 [XNIO-1 task-1] hRu0rDzTRwepVP0qSjsU_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cfdda24c-ae6d-4e19-89d3-067485efcef6, base path is set to: null +18:11:07.595 [XNIO-1 task-1] hRu0rDzTRwepVP0qSjsU_w DEBUG com.networknt.schema.TypeValidator debug - validate( "cfdda24c-ae6d-4e19-89d3-067485efcef6", "cfdda24c-ae6d-4e19-89d3-067485efcef6", clientId) +18:11:07.600 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.600 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e4c60c9-e5af-40c4-b1a6-a5fdd322","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.601 [XNIO-1 task-1] 5M8OYTFsTt-wAWeaoIPbTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.604 [XNIO-1 task-1] p1NbwYDBSU6TL-rQROWiww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.605 [XNIO-1 task-1] p1NbwYDBSU6TL-rQROWiww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.605 [XNIO-1 task-1] p1NbwYDBSU6TL-rQROWiww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.605 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0dddf9b8 +18:11:07.615 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.615 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.615 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.615 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.615 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "d9af2ecf-09fc-48a7-b00f-e0259a1668d5", {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "2e9ef64b-df3a-4506-b35c-ec0597c7", {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2e9ef64b-df3a-4506-b35c-ec0597c7","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.616 [XNIO-1 task-1] 2DuJgqHvSIanlMUDLiiWAA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.618 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.618 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.619 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd54026a-3b19-43a5-9f80-10e82dac","clientDesc":"a703ca0a-8be6-4bc7-b5b1-c437dd4de54e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.620 [XNIO-1 task-1] Ekw8-vpNT3uReQyfnhbJdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.621 [XNIO-1 task-1] nd-Gq4TdSmG81amx6Wd6JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d +18:11:07.621 [XNIO-1 task-1] nd-Gq4TdSmG81amx6Wd6JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.622 [XNIO-1 task-1] nd-Gq4TdSmG81amx6Wd6JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.622 [XNIO-1 task-1] nd-Gq4TdSmG81amx6Wd6JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a6790efe-b124-48fb-b390-71ea57561a2d +18:11:07.631 [XNIO-1 task-1] XNX9mkqYQhSdjA38cRoDIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:07.632 [XNIO-1 task-1] XNX9mkqYQhSdjA38cRoDIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.632 [XNIO-1 task-1] XNX9mkqYQhSdjA38cRoDIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.632 [XNIO-1 task-1] XNX9mkqYQhSdjA38cRoDIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cde640a-aef7-4660-bb95-d6619205db6a, base path is set to: null +18:11:07.632 [XNIO-1 task-1] XNX9mkqYQhSdjA38cRoDIA DEBUG com.networknt.schema.TypeValidator debug - validate( "6cde640a-aef7-4660-bb95-d6619205db6a", "6cde640a-aef7-4660-bb95-d6619205db6a", clientId) +18:11:07.637 [XNIO-1 task-1] tRBXD18LT4CPFOmdYVWyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.638 [XNIO-1 task-1] tRBXD18LT4CPFOmdYVWyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.638 [XNIO-1 task-1] tRBXD18LT4CPFOmdYVWyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.643 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:88c2ff89-7d24-467f-a9c9-efb2fcd24cbc +18:11:07.648 [XNIO-1 task-1] QTPbBPCpSP-wYPa_W0fXYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.648 [XNIO-1 task-1] QTPbBPCpSP-wYPa_W0fXYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.648 [XNIO-1 task-1] QTPbBPCpSP-wYPa_W0fXYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.648 [XNIO-1 task-1] QTPbBPCpSP-wYPa_W0fXYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.655 [XNIO-1 task-1] fNvnH30cQLmhI9EmZ8jQ1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.655 [XNIO-1 task-1] fNvnH30cQLmhI9EmZ8jQ1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.655 [XNIO-1 task-1] fNvnH30cQLmhI9EmZ8jQ1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.655 [XNIO-1 task-1] fNvnH30cQLmhI9EmZ8jQ1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade, base path is set to: null +18:11:07.655 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0bdade16 +18:11:07.656 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0bdade16 +18:11:07.657 [XNIO-1 task-1] aAJHN2lGTaeZFh5bzFvqNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bc38d498-d7e3-4d66-995a-2bf723067c0b, base path is set to: null +18:11:07.657 [XNIO-1 task-1] aAJHN2lGTaeZFh5bzFvqNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.657 [XNIO-1 task-1] aAJHN2lGTaeZFh5bzFvqNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.657 [XNIO-1 task-1] aAJHN2lGTaeZFh5bzFvqNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bc38d498-d7e3-4d66-995a-2bf723067c0b, base path is set to: null +18:11:07.658 [XNIO-1 task-1] aAJHN2lGTaeZFh5bzFvqNg DEBUG com.networknt.schema.TypeValidator debug - validate( "bc38d498-d7e3-4d66-995a-2bf723067c0b", "bc38d498-d7e3-4d66-995a-2bf723067c0b", clientId) +18:11:07.663 [XNIO-1 task-1] FRQ5SKWYQMWkqAnDu7YNEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88c2ff89-7d24-467f-a9c9-efb2fcd24cbc +18:11:07.663 [XNIO-1 task-1] FRQ5SKWYQMWkqAnDu7YNEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.663 [XNIO-1 task-1] FRQ5SKWYQMWkqAnDu7YNEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.663 [XNIO-1 task-1] FRQ5SKWYQMWkqAnDu7YNEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/88c2ff89-7d24-467f-a9c9-efb2fcd24cbc +18:11:07.663 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:88c2ff89-7d24-467f-a9c9-efb2fcd24cbc +18:11:07.668 [XNIO-1 task-1] 2kzEO_XnRe24O1JdRQBFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.668 [XNIO-1 task-1] 2kzEO_XnRe24O1JdRQBFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.668 [XNIO-1 task-1] 2kzEO_XnRe24O1JdRQBFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.669 [XNIO-1 task-1] 2kzEO_XnRe24O1JdRQBFYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG com.networknt.schema.TypeValidator debug - validate( "d9af2ecf-09fc-48a7-b00f-e0259a1668d5", {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb0b42c6-83e7-4de6-99ff-0f3efdd6", {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.678 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"eb0b42c6-83e7-4de6-99ff-0f3efdd6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.679 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.679 [XNIO-1 task-1] 5jvKJuITQ5Kry5mnbuO0qg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.681 [XNIO-1 task-1] v5geMKBATJ-uyNi67YXnSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.681 [XNIO-1 task-1] v5geMKBATJ-uyNi67YXnSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.681 [XNIO-1 task-1] v5geMKBATJ-uyNi67YXnSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.693 [XNIO-1 task-1] 4MW7lBinQT2Pw4wZD3l3FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.693 [XNIO-1 task-1] 4MW7lBinQT2Pw4wZD3l3FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.693 [XNIO-1 task-1] 4MW7lBinQT2Pw4wZD3l3FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.708 [XNIO-1 task-1] wD7tvnMRR-GdbW-rw-Ra8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.708 [XNIO-1 task-1] wD7tvnMRR-GdbW-rw-Ra8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.708 [XNIO-1 task-1] wD7tvnMRR-GdbW-rw-Ra8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.708 [XNIO-1 task-1] wD7tvnMRR-GdbW-rw-Ra8w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.715 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.715 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.715 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.715 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.715 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.715 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.716 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.716 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.716 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.716 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.716 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.716 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0532c2e-3d97-485d-b661-6d24db15","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.716 [XNIO-1 task-1] iPySXGY1SKeeMRuZCEvSrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.718 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.718 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.718 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG com.networknt.schema.TypeValidator debug - validate( "d9af2ecf-09fc-48a7-b00f-e0259a1668d5", {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG com.networknt.schema.TypeValidator debug - validate( "ecfb8086-f2a2-445e-8c90-2e0ef712", {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ecfb8086-f2a2-445e-8c90-2e0ef712","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.719 [XNIO-1 task-1] glCX7A_5RTWaWc7F5O6tLw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.721 [XNIO-1 task-1] ntoHGc4ITYejNo1gBXpcsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b00f84f6-39fa-434e-bf63-942386b36769, base path is set to: null +18:11:07.721 [XNIO-1 task-1] ntoHGc4ITYejNo1gBXpcsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.721 [XNIO-1 task-1] ntoHGc4ITYejNo1gBXpcsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.721 [XNIO-1 task-1] ntoHGc4ITYejNo1gBXpcsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b00f84f6-39fa-434e-bf63-942386b36769, base path is set to: null +18:11:07.721 [XNIO-1 task-1] ntoHGc4ITYejNo1gBXpcsg DEBUG com.networknt.schema.TypeValidator debug - validate( "b00f84f6-39fa-434e-bf63-942386b36769", "b00f84f6-39fa-434e-bf63-942386b36769", clientId) +18:11:07.727 [XNIO-1 task-1] wzwWMoDyTnaPI57Hw0dnRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.727 [XNIO-1 task-1] wzwWMoDyTnaPI57Hw0dnRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.727 [XNIO-1 task-1] wzwWMoDyTnaPI57Hw0dnRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.741 [XNIO-1 task-1] yMGZlx_eThu3VsuGKkO07g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.741 [XNIO-1 task-1] yMGZlx_eThu3VsuGKkO07g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.741 [XNIO-1 task-1] yMGZlx_eThu3VsuGKkO07g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.741 [XNIO-1 task-1] yMGZlx_eThu3VsuGKkO07g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.751 [XNIO-1 task-1] mfmhN4I4QTaoMMgTIhEHWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.751 [XNIO-1 task-1] mfmhN4I4QTaoMMgTIhEHWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.751 [XNIO-1 task-1] mfmhN4I4QTaoMMgTIhEHWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.764 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.764 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.764 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.764 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c5ff376-ca24-4ff3-a510-658efa7d4a09", {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG com.networknt.schema.TypeValidator debug - validate( "02a57542-93af-4b86-98e3-c03f37fa", {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"02a57542-93af-4b86-98e3-c03f37fa","clientDesc":"7c5ff376-ca24-4ff3-a510-658efa7d4a09","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.765 [XNIO-1 task-1] r5VWb3ZRR36TBTudo8vazw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.767 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.768 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30e02fc3-77e8-41ea-8ed2-8815e964","clientDesc":"d24da792-555c-4a80-9af5-9cba175c0e88","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.769 [XNIO-1 task-1] Ok2H5IWrS1GgAuaeQ9XiEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.770 [XNIO-1 task-1] 6AanoooYTDOKiDhkqkX1zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.771 [XNIO-1 task-1] 6AanoooYTDOKiDhkqkX1zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.771 [XNIO-1 task-1] 6AanoooYTDOKiDhkqkX1zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.781 [XNIO-1 task-1] lLYSkqR7RJ2kjOxV5J8oew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380 +18:11:07.781 [XNIO-1 task-1] lLYSkqR7RJ2kjOxV5J8oew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.781 [XNIO-1 task-1] lLYSkqR7RJ2kjOxV5J8oew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.781 [XNIO-1 task-1] lLYSkqR7RJ2kjOxV5J8oew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380 +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.784 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.785 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.785 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.785 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.785 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2e23e64-7a5b-44a3-bd22-9b3d6bb6","clientDesc":"d9af2ecf-09fc-48a7-b00f-e0259a1668d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.785 [XNIO-1 task-1] 5m_VyczbQDudVT8QiDKHVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.787 [XNIO-1 task-1] 4M2csJhDQ_mDIaOL6Ji6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3d03d3c-26d9-42a6-a00b-ac6c4964bfee +18:11:07.787 [XNIO-1 task-1] 4M2csJhDQ_mDIaOL6Ji6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.787 [XNIO-1 task-1] 4M2csJhDQ_mDIaOL6Ji6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.787 [XNIO-1 task-1] 4M2csJhDQ_mDIaOL6Ji6ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3d03d3c-26d9-42a6-a00b-ac6c4964bfee +18:11:07.789 [XNIO-1 task-1] lIBYl3h3TuSeE640CYvKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.790 [XNIO-1 task-1] lIBYl3h3TuSeE640CYvKCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.790 [XNIO-1 task-1] lIBYl3h3TuSeE640CYvKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.801 [XNIO-1 task-1] ywiEm_eETqKHs6PHZTRZ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.801 [XNIO-1 task-1] ywiEm_eETqKHs6PHZTRZ5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.801 [XNIO-1 task-1] ywiEm_eETqKHs6PHZTRZ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.801 [XNIO-1 task-1] ywiEm_eETqKHs6PHZTRZ5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.807 [XNIO-1 task-1] 44NWZBF5RzuErq6hFMcxDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.807 [XNIO-1 task-1] 44NWZBF5RzuErq6hFMcxDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.807 [XNIO-1 task-1] 44NWZBF5RzuErq6hFMcxDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.808 [XNIO-1 task-1] 44NWZBF5RzuErq6hFMcxDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.817 [XNIO-1 task-1] qVZGPShxTXaftH-SzqjWow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.817 [XNIO-1 task-1] qVZGPShxTXaftH-SzqjWow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.817 [XNIO-1 task-1] qVZGPShxTXaftH-SzqjWow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.817 [XNIO-1 task-1] qVZGPShxTXaftH-SzqjWow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.825 [XNIO-1 task-1] qXUlsqARRbO_RXQQjx3grg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.825 [XNIO-1 task-1] qXUlsqARRbO_RXQQjx3grg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.825 [XNIO-1 task-1] qXUlsqARRbO_RXQQjx3grg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.825 [XNIO-1 task-1] qXUlsqARRbO_RXQQjx3grg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.836 [XNIO-1 task-1] WKPcnIWSQK6F9dKalCVwAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.836 [XNIO-1 task-1] WKPcnIWSQK6F9dKalCVwAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.836 [XNIO-1 task-1] WKPcnIWSQK6F9dKalCVwAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.852 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.852 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.852 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd362a19-7970-45f9-bab8-9e9d2fa8","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.853 [XNIO-1 task-1] u6cf07_0QuiT2DtGxTQNoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.855 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0bdade16 +18:11:07.856 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.856 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG com.networknt.schema.TypeValidator debug - validate( "261680ca-218d-41ad-a7b6-a2bb6cd6ce18", {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG com.networknt.schema.TypeValidator debug - validate( "35f044e0-5739-46d3-b891-0406abf7", {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"35f044e0-5739-46d3-b891-0406abf7","clientDesc":"261680ca-218d-41ad-a7b6-a2bb6cd6ce18","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.857 [XNIO-1 task-1] BmscOPRHR5O7MlISFIO3qA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.862 [XNIO-1 task-1] nNRz5CzoRVGVvN22oAgalw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fd3aaff7-0a85-4c6f-b3a6-ace73ced3557, base path is set to: null +18:11:07.862 [XNIO-1 task-1] nNRz5CzoRVGVvN22oAgalw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.862 [XNIO-1 task-1] nNRz5CzoRVGVvN22oAgalw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.862 [XNIO-1 task-1] nNRz5CzoRVGVvN22oAgalw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fd3aaff7-0a85-4c6f-b3a6-ace73ced3557, base path is set to: null +18:11:07.862 [XNIO-1 task-1] nNRz5CzoRVGVvN22oAgalw DEBUG com.networknt.schema.TypeValidator debug - validate( "fd3aaff7-0a85-4c6f-b3a6-ace73ced3557", "fd3aaff7-0a85-4c6f-b3a6-ace73ced3557", clientId) +18:11:07.868 [XNIO-1 task-1] doSAalxjT02ljwy60txUsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.868 [XNIO-1 task-1] doSAalxjT02ljwy60txUsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.868 [XNIO-1 task-1] doSAalxjT02ljwy60txUsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.869 [XNIO-1 task-1] doSAalxjT02ljwy60txUsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.874 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.874 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.874 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "c97c40eb-1f27-4089-9734-5a7670854671", {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "af5d6772-ac93-4eb4-910a-44a13394", {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"af5d6772-ac93-4eb4-910a-44a13394","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.875 [XNIO-1 task-1] X2Du5w_wTeK0tbl-4vJgjA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.878 [XNIO-1 task-1] 0wp4Zy4WRmeXL7rrzWWjEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.878 [XNIO-1 task-1] 0wp4Zy4WRmeXL7rrzWWjEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.878 [XNIO-1 task-1] 0wp4Zy4WRmeXL7rrzWWjEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.878 [XNIO-1 task-1] 0wp4Zy4WRmeXL7rrzWWjEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.883 [XNIO-1 task-1] vrzZeaLVRwOEFfKFxQ_1WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.883 [XNIO-1 task-1] vrzZeaLVRwOEFfKFxQ_1WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.884 [XNIO-1 task-1] vrzZeaLVRwOEFfKFxQ_1WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.895 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.895 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.895 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.896 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.896 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.896 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.896 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.896 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.897 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.897 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.897 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.897 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29d3f572-3312-441d-ae01-24ebbc58","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.897 [XNIO-1 task-1] 0ycHT6UtT8OPKjAPN3Gh7w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:07.899 [XNIO-1 task-1] 0mL51xbFSaGbPeu1Ru7Lrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.899 [XNIO-1 task-1] 0mL51xbFSaGbPeu1Ru7Lrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.899 [XNIO-1 task-1] 0mL51xbFSaGbPeu1Ru7Lrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.899 [XNIO-1 task-1] 0mL51xbFSaGbPeu1Ru7Lrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.906 [XNIO-1 task-1] hv0dXPY_S-CyEWhuTBomuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.906 [XNIO-1 task-1] hv0dXPY_S-CyEWhuTBomuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.906 [XNIO-1 task-1] hv0dXPY_S-CyEWhuTBomuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.907 [XNIO-1 task-1] hv0dXPY_S-CyEWhuTBomuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.916 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.916 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.916 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.916 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.916 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:07.916 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c97c40eb-1f27-4089-9734-5a7670854671", {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:07.916 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:07.917 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:07.917 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8a858e1d-472c-47e1-a13f-127bc24f", {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:07.917 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.917 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8a858e1d-472c-47e1-a13f-127bc24f","clientDesc":"c97c40eb-1f27-4089-9734-5a7670854671","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.917 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:07.917 [XNIO-1 task-1] kkXewh1SQH6ox47z4BB7lQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:07.919 [XNIO-1 task-1] Hfk7FCsDTIuWGf4SpL5BIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8302ed8f-7386-4f31-a4e0-4f2a5addeb9c, base path is set to: null +18:11:07.919 [XNIO-1 task-1] Hfk7FCsDTIuWGf4SpL5BIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.919 [XNIO-1 task-1] Hfk7FCsDTIuWGf4SpL5BIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.919 [XNIO-1 task-1] Hfk7FCsDTIuWGf4SpL5BIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8302ed8f-7386-4f31-a4e0-4f2a5addeb9c, base path is set to: null +18:11:07.919 [XNIO-1 task-1] Hfk7FCsDTIuWGf4SpL5BIg DEBUG com.networknt.schema.TypeValidator debug - validate( "8302ed8f-7386-4f31-a4e0-4f2a5addeb9c", "8302ed8f-7386-4f31-a4e0-4f2a5addeb9c", clientId) +18:11:07.925 [XNIO-1 task-1] M_xPZkzLRvy9D6RkFF2vAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e31bb585-6115-4949-a4d2-a14be3a4adbd +18:11:07.925 [XNIO-1 task-1] M_xPZkzLRvy9D6RkFF2vAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.925 [XNIO-1 task-1] M_xPZkzLRvy9D6RkFF2vAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.925 [XNIO-1 task-1] M_xPZkzLRvy9D6RkFF2vAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e31bb585-6115-4949-a4d2-a14be3a4adbd +18:11:07.927 [XNIO-1 task-1] S9mIvXX2S9OjTBVEAsskAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.927 [XNIO-1 task-1] S9mIvXX2S9OjTBVEAsskAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.927 [XNIO-1 task-1] S9mIvXX2S9OjTBVEAsskAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.927 [XNIO-1 task-1] S9mIvXX2S9OjTBVEAsskAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.956 [XNIO-1 task-1] 0d8vlGX2R7eudTvjmHTDXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.957 [XNIO-1 task-1] 0d8vlGX2R7eudTvjmHTDXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.957 [XNIO-1 task-1] 0d8vlGX2R7eudTvjmHTDXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:07.967 [XNIO-1 task-1] qr8w-spTR6ie6LZazTUYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31bb585-6115-4949-a4d2-a14be3a4adbd, base path is set to: null +18:11:07.968 [XNIO-1 task-1] qr8w-spTR6ie6LZazTUYPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:07.968 [XNIO-1 task-1] qr8w-spTR6ie6LZazTUYPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:07.968 [XNIO-1 task-1] qr8w-spTR6ie6LZazTUYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e31bb585-6115-4949-a4d2-a14be3a4adbd, base path is set to: null +18:11:07.968 [XNIO-1 task-1] qr8w-spTR6ie6LZazTUYPA DEBUG com.networknt.schema.TypeValidator debug - validate( "e31bb585-6115-4949-a4d2-a14be3a4adbd", "e31bb585-6115-4949-a4d2-a14be3a4adbd", clientId) +18:11:07.973 [XNIO-1 task-1] jsvyjKX-RDKtEDgQz8dqDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.973 [XNIO-1 task-1] jsvyjKX-RDKtEDgQz8dqDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.973 [XNIO-1 task-1] jsvyjKX-RDKtEDgQz8dqDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.977 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:32d6d579 +18:11:07.978 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ed6b5f53-aee5-421a-b872-c2caedb1cfcf +18:11:07.979 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ed6b5f53-aee5-421a-b872-c2caedb1cfcf +18:11:07.984 [XNIO-1 task-1] WOvBQaEEQu-Q-q5FGT4K5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade +18:11:07.985 [XNIO-1 task-1] WOvBQaEEQu-Q-q5FGT4K5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.986 [XNIO-1 task-1] WOvBQaEEQu-Q-q5FGT4K5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.986 [XNIO-1 task-1] WOvBQaEEQu-Q-q5FGT4K5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c971f5ea-a2be-41d0-b437-edd481edfade +18:11:07.986 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c971f5ea-a2be-41d0-b437-edd481edfade +18:11:07.994 [XNIO-1 task-1] YB6XvR4FQ_WGbksecpNFfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd4c987-92b1-4b1f-b29d-44346bde8f8b +18:11:07.994 [XNIO-1 task-1] YB6XvR4FQ_WGbksecpNFfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:07.994 [XNIO-1 task-1] YB6XvR4FQ_WGbksecpNFfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:07.995 [XNIO-1 task-1] YB6XvR4FQ_WGbksecpNFfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd4c987-92b1-4b1f-b29d-44346bde8f8b +18:11:08.008 [XNIO-1 task-1] 5UDRKLS0QxKCgGN4e07Eqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.009 [XNIO-1 task-1] 5UDRKLS0QxKCgGN4e07Eqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.009 [XNIO-1 task-1] 5UDRKLS0QxKCgGN4e07Eqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.020 [XNIO-1 task-1] hJkZp3wNR3q2KUkOY0V3NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66ac18e5-706b-4102-b9a4-2fc2edf634f2, base path is set to: null +18:11:08.020 [XNIO-1 task-1] hJkZp3wNR3q2KUkOY0V3NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.020 [XNIO-1 task-1] hJkZp3wNR3q2KUkOY0V3NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.020 [XNIO-1 task-1] hJkZp3wNR3q2KUkOY0V3NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66ac18e5-706b-4102-b9a4-2fc2edf634f2, base path is set to: null +18:11:08.020 [XNIO-1 task-1] hJkZp3wNR3q2KUkOY0V3NA DEBUG com.networknt.schema.TypeValidator debug - validate( "66ac18e5-706b-4102-b9a4-2fc2edf634f2", "66ac18e5-706b-4102-b9a4-2fc2edf634f2", clientId) +18:11:08.027 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:32d6d579 +18:11:08.029 [XNIO-1 task-1] Oz98X6YCQ2O7hscpkkIfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3 +18:11:08.029 [XNIO-1 task-1] Oz98X6YCQ2O7hscpkkIfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.029 [XNIO-1 task-1] Oz98X6YCQ2O7hscpkkIfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.030 [XNIO-1 task-1] Oz98X6YCQ2O7hscpkkIfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3 +18:11:08.032 [XNIO-1 task-1] YykGxBcCTCa1eIlWxn6kkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3, base path is set to: null +18:11:08.032 [XNIO-1 task-1] YykGxBcCTCa1eIlWxn6kkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.032 [XNIO-1 task-1] YykGxBcCTCa1eIlWxn6kkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.032 [XNIO-1 task-1] YykGxBcCTCa1eIlWxn6kkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3, base path is set to: null +18:11:08.032 [XNIO-1 task-1] YykGxBcCTCa1eIlWxn6kkw DEBUG com.networknt.schema.TypeValidator debug - validate( "3b935a46-b834-4175-ba35-8b8954d689c3", "3b935a46-b834-4175-ba35-8b8954d689c3", clientId) +18:11:08.034 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2de06302 +18:11:08.034 [XNIO-1 task-1] AXD7AmV2Ree0Jghjbg4VmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.034 [XNIO-1 task-1] AXD7AmV2Ree0Jghjbg4VmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.035 [XNIO-1 task-1] AXD7AmV2Ree0Jghjbg4VmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.035 [XNIO-1 task-1] AXD7AmV2Ree0Jghjbg4VmA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.041 [XNIO-1 task-1] xP2Y6XRCT4eUbot-8hwa7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.041 [XNIO-1 task-1] xP2Y6XRCT4eUbot-8hwa7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.041 [XNIO-1 task-1] xP2Y6XRCT4eUbot-8hwa7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.041 [XNIO-1 task-1] xP2Y6XRCT4eUbot-8hwa7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.048 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.048 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.048 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62b61809-db3c-43ab-8a90-a4bb1543","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.049 [XNIO-1 task-1] zgb1IFvrQfyBFj0RW4r0pA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:08.051 [XNIO-1 task-1] JeFX1NAaSJi9sPDTVgTicw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c0d9c88e-c330-4ee1-aafa-91fb9a38b472 +18:11:08.051 [XNIO-1 task-1] JeFX1NAaSJi9sPDTVgTicw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.051 [XNIO-1 task-1] JeFX1NAaSJi9sPDTVgTicw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.052 [XNIO-1 task-1] JeFX1NAaSJi9sPDTVgTicw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c0d9c88e-c330-4ee1-aafa-91fb9a38b472 +18:11:08.061 [XNIO-1 task-1] 7A6qa7ZcTACS9A3vCpiBVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.061 [XNIO-1 task-1] 7A6qa7ZcTACS9A3vCpiBVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.061 [XNIO-1 task-1] 7A6qa7ZcTACS9A3vCpiBVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.072 [XNIO-1 task-1] KU7wkBVpR62jqOZHMOV8_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3, base path is set to: null +18:11:08.072 [XNIO-1 task-1] KU7wkBVpR62jqOZHMOV8_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.072 [XNIO-1 task-1] KU7wkBVpR62jqOZHMOV8_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.072 [XNIO-1 task-1] KU7wkBVpR62jqOZHMOV8_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3, base path is set to: null +18:11:08.072 [XNIO-1 task-1] KU7wkBVpR62jqOZHMOV8_w DEBUG com.networknt.schema.TypeValidator debug - validate( "3b935a46-b834-4175-ba35-8b8954d689c3", "3b935a46-b834-4175-ba35-8b8954d689c3", clientId) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd", {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "987068ee-de70-473b-9b52-6a6a36f9", {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.075 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"987068ee-de70-473b-9b52-6a6a36f9","clientDesc":"5b947f9e-f1d8-4ef3-8be0-c4a40c458cfd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.076 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.076 [XNIO-1 task-1] 0OpLu5gFTNm7Kqi_H-HY4A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.077 [XNIO-1 task-1] c4F8iI_ZShG53Ndpqnd6rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.077 [XNIO-1 task-1] c4F8iI_ZShG53Ndpqnd6rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.077 [XNIO-1 task-1] c4F8iI_ZShG53Ndpqnd6rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.077 [XNIO-1 task-1] c4F8iI_ZShG53Ndpqnd6rg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.083 [XNIO-1 task-1] hzQUWVFBTmW70RHcMvb38w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.083 [XNIO-1 task-1] hzQUWVFBTmW70RHcMvb38w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.083 [XNIO-1 task-1] hzQUWVFBTmW70RHcMvb38w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.095 [XNIO-1 task-1] TyH48UFvQbq7abkw6WA9cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3, base path is set to: null +18:11:08.095 [XNIO-1 task-1] TyH48UFvQbq7abkw6WA9cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.095 [XNIO-1 task-1] TyH48UFvQbq7abkw6WA9cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.095 [XNIO-1 task-1] TyH48UFvQbq7abkw6WA9cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3b935a46-b834-4175-ba35-8b8954d689c3, base path is set to: null +18:11:08.095 [XNIO-1 task-1] TyH48UFvQbq7abkw6WA9cw DEBUG com.networknt.schema.TypeValidator debug - validate( "3b935a46-b834-4175-ba35-8b8954d689c3", "3b935a46-b834-4175-ba35-8b8954d689c3", clientId) +18:11:08.101 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:32d6d579 +18:11:08.101 [XNIO-1 task-1] P6Q_2R3iTcemvmUfuEE2QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.101 [XNIO-1 task-1] P6Q_2R3iTcemvmUfuEE2QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.101 [XNIO-1 task-1] P6Q_2R3iTcemvmUfuEE2QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.101 [XNIO-1 task-1] P6Q_2R3iTcemvmUfuEE2QA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.107 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.107 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.107 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.107 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.107 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:08.107 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG com.networknt.schema.TypeValidator debug - validate( "996bd381-8d0e-4af4-bbcd-e407a630e57f", {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:08.108 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.108 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.108 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG com.networknt.schema.TypeValidator debug - validate( "477e5020-f119-4931-a348-65a913a6", {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:08.108 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.108 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"477e5020-f119-4931-a348-65a913a6","clientDesc":"996bd381-8d0e-4af4-bbcd-e407a630e57f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.108 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.109 [XNIO-1 task-1] TGiaPQ_0Rpyz7sSXvzEELw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.111 [XNIO-1 task-1] ZuRFOUdPRMG6xczZSQ9gQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.111 [XNIO-1 task-1] ZuRFOUdPRMG6xczZSQ9gQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.111 [XNIO-1 task-1] ZuRFOUdPRMG6xczZSQ9gQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.113 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2de06302 +18:11:08.123 [XNIO-1 task-1] VFDVfzriQxOtn3ignC4FmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.123 [XNIO-1 task-1] VFDVfzriQxOtn3ignC4FmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.123 [XNIO-1 task-1] VFDVfzriQxOtn3ignC4FmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.123 [XNIO-1 task-1] VFDVfzriQxOtn3ignC4FmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.123 [XNIO-1 task-1] VFDVfzriQxOtn3ignC4FmA DEBUG com.networknt.schema.TypeValidator debug - validate( "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", clientId) +18:11:08.126 [XNIO-1 task-1] 4bklXGF8RCSdwrFL6AJ3mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6be9d86-5ddc-424f-8669-63df6e714c57 +18:11:08.126 [XNIO-1 task-1] 4bklXGF8RCSdwrFL6AJ3mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.126 [XNIO-1 task-1] 4bklXGF8RCSdwrFL6AJ3mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.126 [XNIO-1 task-1] 4bklXGF8RCSdwrFL6AJ3mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6be9d86-5ddc-424f-8669-63df6e714c57 +18:11:08.129 [XNIO-1 task-1] Ekei3sF0RzKv6juRSHmdkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66b39552-5a78-4753-9edf-8d88aa785c28, base path is set to: null +18:11:08.129 [XNIO-1 task-1] Ekei3sF0RzKv6juRSHmdkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.129 [XNIO-1 task-1] Ekei3sF0RzKv6juRSHmdkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.129 [XNIO-1 task-1] Ekei3sF0RzKv6juRSHmdkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66b39552-5a78-4753-9edf-8d88aa785c28, base path is set to: null +18:11:08.129 [XNIO-1 task-1] Ekei3sF0RzKv6juRSHmdkA DEBUG com.networknt.schema.TypeValidator debug - validate( "66b39552-5a78-4753-9edf-8d88aa785c28", "66b39552-5a78-4753-9edf-8d88aa785c28", clientId) +18:11:08.131 [XNIO-1 task-1] 4Vx_Ru_gQAOCeO_gVBdQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380 +18:11:08.131 [XNIO-1 task-1] 4Vx_Ru_gQAOCeO_gVBdQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.131 [XNIO-1 task-1] 4Vx_Ru_gQAOCeO_gVBdQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.131 [XNIO-1 task-1] 4Vx_Ru_gQAOCeO_gVBdQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380 +18:11:08.134 [XNIO-1 task-1] K-mb4t06T8GO1DfZFz-9Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66b39552-5a78-4753-9edf-8d88aa785c28, base path is set to: null +18:11:08.134 [XNIO-1 task-1] K-mb4t06T8GO1DfZFz-9Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.134 [XNIO-1 task-1] K-mb4t06T8GO1DfZFz-9Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.134 [XNIO-1 task-1] K-mb4t06T8GO1DfZFz-9Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66b39552-5a78-4753-9edf-8d88aa785c28, base path is set to: null +18:11:08.134 [XNIO-1 task-1] K-mb4t06T8GO1DfZFz-9Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "66b39552-5a78-4753-9edf-8d88aa785c28", "66b39552-5a78-4753-9edf-8d88aa785c28", clientId) +18:11:08.138 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:69c033d2 +18:11:08.139 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.139 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.139 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f", {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2ae1209b-4909-4c9d-a6ad-6ff8d2bf", {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2ae1209b-4909-4c9d-a6ad-6ff8d2bf","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.140 [XNIO-1 task-1] oSBkysrVRnWvxCZV9FOi-Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.142 [XNIO-1 task-1] 0Qrl-LiATRWthWQTaTr-BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380, base path is set to: null +18:11:08.142 [XNIO-1 task-1] 0Qrl-LiATRWthWQTaTr-BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.142 [XNIO-1 task-1] 0Qrl-LiATRWthWQTaTr-BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.142 [XNIO-1 task-1] 0Qrl-LiATRWthWQTaTr-BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380, base path is set to: null +18:11:08.142 [XNIO-1 task-1] 0Qrl-LiATRWthWQTaTr-BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9657f74c-ec63-4d88-83c3-a8b244513380", "9657f74c-ec63-4d88-83c3-a8b244513380", clientId) +18:11:08.144 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.144 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.144 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.144 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.144 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:08.144 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f", {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:08.144 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.145 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.145 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "ea0e8a3d-9faa-4243-b9bd-f1f270df", {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:08.145 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.145 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ea0e8a3d-9faa-4243-b9bd-f1f270df","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.145 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.145 [XNIO-1 task-1] BWBMU9U5SeukCbHKi0WIJg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.147 [XNIO-1 task-1] yAHtwgeCRcasB7EF4U8M3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.148 [XNIO-1 task-1] yAHtwgeCRcasB7EF4U8M3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.148 [XNIO-1 task-1] yAHtwgeCRcasB7EF4U8M3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.152 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bd6d9bb9-a73e-4cbe-9bd6-e28e3cf66cb5 +18:11:08.153 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bd6d9bb9-a73e-4cbe-9bd6-e28e3cf66cb5 +18:11:08.174 [XNIO-1 task-1] 5_BP_ZiVRgW0W6cajnjPZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f64134d4-a5ab-496a-8f3c-0f6b9087e1a8 +18:11:08.174 [XNIO-1 task-1] 5_BP_ZiVRgW0W6cajnjPZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.174 [XNIO-1 task-1] 5_BP_ZiVRgW0W6cajnjPZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.174 [XNIO-1 task-1] 5_BP_ZiVRgW0W6cajnjPZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f64134d4-a5ab-496a-8f3c-0f6b9087e1a8 +18:11:08.179 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.179 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.179 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.180 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f8739ed8-7c56-4d98-b09c-9720286f","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.182 [XNIO-1 task-1] _JrvvE7TTS6zG5sbp7x8jw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:08.187 [XNIO-1 task-1] iGDXS9E2Sne7IdR0eVEZtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e8bc4494-ad14-4f65-a978-16092d68891d +18:11:08.187 [XNIO-1 task-1] iGDXS9E2Sne7IdR0eVEZtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.187 [XNIO-1 task-1] iGDXS9E2Sne7IdR0eVEZtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.187 [XNIO-1 task-1] iGDXS9E2Sne7IdR0eVEZtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e8bc4494-ad14-4f65-a978-16092d68891d +18:11:08.189 [XNIO-1 task-1] csUQ4EnbTC27AXMHtY5lAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.190 [XNIO-1 task-1] csUQ4EnbTC27AXMHtY5lAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.190 [XNIO-1 task-1] csUQ4EnbTC27AXMHtY5lAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.201 [XNIO-1 task-1] lTBTLh8yQ82ne4pwwtIRtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.201 [XNIO-1 task-1] lTBTLh8yQ82ne4pwwtIRtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.201 [XNIO-1 task-1] lTBTLh8yQ82ne4pwwtIRtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.213 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.213 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.213 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.214 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.214 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.214 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.214 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.214 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.215 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.215 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.215 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.215 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7cce0c81-208a-4d52-b8e1-5d7027a3","clientDesc":"610d6160-1b41-4bc6-8a20-34ebc3d04208","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.215 [XNIO-1 task-1] BUBK-Z2wQAq_JJVTRIm6Tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:08.218 [XNIO-1 task-1] VzULAoYWTcG-qHzFyOCbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.218 [XNIO-1 task-1] VzULAoYWTcG-qHzFyOCbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.218 [XNIO-1 task-1] VzULAoYWTcG-qHzFyOCbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.218 [XNIO-1 task-1] VzULAoYWTcG-qHzFyOCbjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.227 [XNIO-1 task-1] yVl4ayO5Re2hWeywn6x80A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.227 [XNIO-1 task-1] yVl4ayO5Re2hWeywn6x80A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.227 [XNIO-1 task-1] yVl4ayO5Re2hWeywn6x80A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.239 [XNIO-1 task-1] y5fS8EIqSqaKOO2mMAr9wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e8bc4494-ad14-4f65-a978-16092d68891d +18:11:08.239 [XNIO-1 task-1] y5fS8EIqSqaKOO2mMAr9wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.239 [XNIO-1 task-1] y5fS8EIqSqaKOO2mMAr9wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.239 [XNIO-1 task-1] y5fS8EIqSqaKOO2mMAr9wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e8bc4494-ad14-4f65-a978-16092d68891d +18:11:08.241 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2de06302 +18:11:08.245 [XNIO-1 task-1] VJd132lBSvKVZvUmCl_I4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3dbfb63e-65d6-488f-be2b-d8ce93ff2f69, base path is set to: null +18:11:08.245 [XNIO-1 task-1] VJd132lBSvKVZvUmCl_I4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.245 [XNIO-1 task-1] VJd132lBSvKVZvUmCl_I4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.245 [XNIO-1 task-1] VJd132lBSvKVZvUmCl_I4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3dbfb63e-65d6-488f-be2b-d8ce93ff2f69, base path is set to: null +18:11:08.245 [XNIO-1 task-1] VJd132lBSvKVZvUmCl_I4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3dbfb63e-65d6-488f-be2b-d8ce93ff2f69", "3dbfb63e-65d6-488f-be2b-d8ce93ff2f69", clientId) +18:11:08.250 [XNIO-1 task-1] EaMydWFvSZ-Dd_2fSdjdFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.250 [XNIO-1 task-1] EaMydWFvSZ-Dd_2fSdjdFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.250 [XNIO-1 task-1] EaMydWFvSZ-Dd_2fSdjdFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.255 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:69c033d2 +18:11:08.262 [XNIO-1 task-1] mvny9VV-SbuMZd2LeNFH-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f64134d4-a5ab-496a-8f3c-0f6b9087e1a8 +18:11:08.262 [XNIO-1 task-1] mvny9VV-SbuMZd2LeNFH-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.262 [XNIO-1 task-1] mvny9VV-SbuMZd2LeNFH-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.262 [XNIO-1 task-1] mvny9VV-SbuMZd2LeNFH-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f64134d4-a5ab-496a-8f3c-0f6b9087e1a8 +18:11:08.266 [XNIO-1 task-1] wy3RKZ-KT1ORvLw6GQkhKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3dbfb63e-65d6-488f-be2b-d8ce93ff2f69, base path is set to: null +18:11:08.267 [XNIO-1 task-1] wy3RKZ-KT1ORvLw6GQkhKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.267 [XNIO-1 task-1] wy3RKZ-KT1ORvLw6GQkhKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.267 [XNIO-1 task-1] wy3RKZ-KT1ORvLw6GQkhKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3dbfb63e-65d6-488f-be2b-d8ce93ff2f69, base path is set to: null +18:11:08.267 [XNIO-1 task-1] wy3RKZ-KT1ORvLw6GQkhKA DEBUG com.networknt.schema.TypeValidator debug - validate( "3dbfb63e-65d6-488f-be2b-d8ce93ff2f69", "3dbfb63e-65d6-488f-be2b-d8ce93ff2f69", clientId) +18:11:08.275 [XNIO-1 task-1] 2S6QeEhdT9Om12FCZBqrfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aff456c8-2847-4cd4-97eb-3add369e3cba +18:11:08.275 [XNIO-1 task-1] 2S6QeEhdT9Om12FCZBqrfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.275 [XNIO-1 task-1] 2S6QeEhdT9Om12FCZBqrfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.275 [XNIO-1 task-1] 2S6QeEhdT9Om12FCZBqrfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aff456c8-2847-4cd4-97eb-3add369e3cba +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.280 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.281 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3087218-e993-4040-bbc6-164a68dc","clientDesc":"0cac28df-2f14-42f7-8699-9efbce9c85a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.281 [XNIO-1 task-1] R3nmRmBtQYWSqCyMHyrdhg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:08.283 [XNIO-1 task-1] Hcu6h8-gQ7OqlKfynAEgxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.283 [XNIO-1 task-1] Hcu6h8-gQ7OqlKfynAEgxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.283 [XNIO-1 task-1] Hcu6h8-gQ7OqlKfynAEgxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.298 [XNIO-1 task-1] i1dMqGmiR0Kx6N5L4jikrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.298 [XNIO-1 task-1] i1dMqGmiR0Kx6N5L4jikrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.298 [XNIO-1 task-1] i1dMqGmiR0Kx6N5L4jikrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.309 [XNIO-1 task-1] 1iKQ1GFBTSGTCJ7IIJ8s6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.310 [XNIO-1 task-1] 1iKQ1GFBTSGTCJ7IIJ8s6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.310 [XNIO-1 task-1] 1iKQ1GFBTSGTCJ7IIJ8s6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.321 [XNIO-1 task-1] WwA7SiBrRlWcb8O7kS0C2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.321 [XNIO-1 task-1] WwA7SiBrRlWcb8O7kS0C2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.321 [XNIO-1 task-1] WwA7SiBrRlWcb8O7kS0C2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.321 [XNIO-1 task-1] WwA7SiBrRlWcb8O7kS0C2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.329 [XNIO-1 task-1] emU_QZRNSjKrhJ8VDa5XEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c2d8066-91db-4c8e-83ab-6819d0440363 +18:11:08.329 [XNIO-1 task-1] emU_QZRNSjKrhJ8VDa5XEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.329 [XNIO-1 task-1] emU_QZRNSjKrhJ8VDa5XEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.329 [XNIO-1 task-1] emU_QZRNSjKrhJ8VDa5XEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c2d8066-91db-4c8e-83ab-6819d0440363 +18:11:08.332 [XNIO-1 task-1] w1d5hktvQ_K31KNnjpi2Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.332 [XNIO-1 task-1] w1d5hktvQ_K31KNnjpi2Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.332 [XNIO-1 task-1] w1d5hktvQ_K31KNnjpi2Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.344 [XNIO-1 task-1] gxn-N8QeT0WLlK7dabQ9VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c2d8066-91db-4c8e-83ab-6819d0440363, base path is set to: null +18:11:08.345 [XNIO-1 task-1] gxn-N8QeT0WLlK7dabQ9VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.345 [XNIO-1 task-1] gxn-N8QeT0WLlK7dabQ9VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.345 [XNIO-1 task-1] gxn-N8QeT0WLlK7dabQ9VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c2d8066-91db-4c8e-83ab-6819d0440363, base path is set to: null +18:11:08.345 [XNIO-1 task-1] gxn-N8QeT0WLlK7dabQ9VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3c2d8066-91db-4c8e-83ab-6819d0440363", "3c2d8066-91db-4c8e-83ab-6819d0440363", clientId) +18:11:08.347 [XNIO-1 task-1] HJXoGowqRfy9aVUwjv_Ygg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c2d8066-91db-4c8e-83ab-6819d0440363 +18:11:08.347 [XNIO-1 task-1] HJXoGowqRfy9aVUwjv_Ygg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.347 [XNIO-1 task-1] HJXoGowqRfy9aVUwjv_Ygg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.347 [XNIO-1 task-1] HJXoGowqRfy9aVUwjv_Ygg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c2d8066-91db-4c8e-83ab-6819d0440363 +18:11:08.352 [XNIO-1 task-1] KVrbDk16QEebrZObyaEubQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e1ed5566-ef80-4691-9186-27896d588049, base path is set to: null +18:11:08.352 [XNIO-1 task-1] KVrbDk16QEebrZObyaEubQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.352 [XNIO-1 task-1] KVrbDk16QEebrZObyaEubQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.352 [XNIO-1 task-1] KVrbDk16QEebrZObyaEubQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e1ed5566-ef80-4691-9186-27896d588049, base path is set to: null +18:11:08.352 [XNIO-1 task-1] KVrbDk16QEebrZObyaEubQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed5566-ef80-4691-9186-27896d588049", "e1ed5566-ef80-4691-9186-27896d588049", clientId) +18:11:08.359 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.359 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.359 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.359 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.359 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:08.359 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG com.networknt.schema.TypeValidator debug - validate( "bf6995e4-d52e-4acf-a8de-15dc12c7e155", {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:08.360 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.360 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.360 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG com.networknt.schema.TypeValidator debug - validate( "b65b1e88-0cec-4a9e-ae7e-6e89b683", {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:08.360 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.360 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b65b1e88-0cec-4a9e-ae7e-6e89b683","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.360 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.360 [XNIO-1 task-1] _Bu7vkTOREOg7sIif9Bxhg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.361 [XNIO-1 task-1] LO865zsuQn-xakw3E98xRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.362 [XNIO-1 task-1] LO865zsuQn-xakw3E98xRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.362 [XNIO-1 task-1] LO865zsuQn-xakw3E98xRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.362 [XNIO-1 task-1] LO865zsuQn-xakw3E98xRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.362 [XNIO-1 task-1] LO865zsuQn-xakw3E98xRg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", clientId) +18:11:08.363 [XNIO-1 task-1] 0oAlDnEXQOqYXqMJo4CLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf +18:11:08.363 [XNIO-1 task-1] 0oAlDnEXQOqYXqMJo4CLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.363 [XNIO-1 task-1] 0oAlDnEXQOqYXqMJo4CLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.363 [XNIO-1 task-1] 0oAlDnEXQOqYXqMJo4CLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf +18:11:08.365 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.365 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.365 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.365 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.365 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.365 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.366 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.366 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.366 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.366 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.366 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.366 [XNIO-1 task-1] FpHSJVj9RuWKRhMetWuvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a063035f-97bd-437f-920b-a8344d50","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +18:11:08.368 [XNIO-1 task-1] xrLNw33oSaaOxT7n5F5cTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.368 [XNIO-1 task-1] xrLNw33oSaaOxT7n5F5cTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + +18:11:08.381 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.381 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.381 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.381 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.381 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf6995e4-d52e-4acf-a8de-15dc12c7e155", {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG com.networknt.schema.TypeValidator debug - validate( "317e0a81-c3b4-463f-83fb-78cb4a1f", {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"317e0a81-c3b4-463f-83fb-78cb4a1f","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.382 [XNIO-1 task-1] AfxSmfxMTteqdDQRTv24fw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.385 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.385 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.385 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.385 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.386 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec632231-e652-4951-bc4d-cd2e3a42","clientDesc":"bf6995e4-d52e-4acf-a8de-15dc12c7e155","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.387 [XNIO-1 task-1] yHhvjRbgT9mIFYV1Ch1okQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:08.389 [XNIO-1 task-1] VO2fXJvLQYKHo6L5gIy_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.389 [XNIO-1 task-1] VO2fXJvLQYKHo6L5gIy_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.389 [XNIO-1 task-1] VO2fXJvLQYKHo6L5gIy_2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.389 [XNIO-1 task-1] VO2fXJvLQYKHo6L5gIy_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.395 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dd072b14-5e03-4452-892a-f0ceaba4d812 +18:11:08.401 [XNIO-1 task-1] ZjHCELKPS-mT0KwHe4O_Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.401 [XNIO-1 task-1] ZjHCELKPS-mT0KwHe4O_Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.401 [XNIO-1 task-1] ZjHCELKPS-mT0KwHe4O_Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.401 [XNIO-1 task-1] ZjHCELKPS-mT0KwHe4O_Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.402 [XNIO-1 task-1] ZjHCELKPS-mT0KwHe4O_Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", clientId) +18:11:08.404 [XNIO-1 task-1] -gfyYKdSRQCQ2ulVBTEFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dd072b14-5e03-4452-892a-f0ceaba4d812 +18:11:08.404 [XNIO-1 task-1] -gfyYKdSRQCQ2ulVBTEFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.404 [XNIO-1 task-1] -gfyYKdSRQCQ2ulVBTEFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.404 [XNIO-1 task-1] -gfyYKdSRQCQ2ulVBTEFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dd072b14-5e03-4452-892a-f0ceaba4d812 +18:11:08.407 [XNIO-1 task-1] ySZWOb3LRxyUEu01UN4Hag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.407 [XNIO-1 task-1] ySZWOb3LRxyUEu01UN4Hag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.407 [XNIO-1 task-1] ySZWOb3LRxyUEu01UN4Hag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.420 [XNIO-1 task-1] 1IyaeIKRSlKMa2NTZcxkqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.420 [XNIO-1 task-1] 1IyaeIKRSlKMa2NTZcxkqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.421 [XNIO-1 task-1] 1IyaeIKRSlKMa2NTZcxkqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.421 [XNIO-1 task-1] 1IyaeIKRSlKMa2NTZcxkqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf, base path is set to: null +18:11:08.421 [XNIO-1 task-1] 1IyaeIKRSlKMa2NTZcxkqA DEBUG com.networknt.schema.TypeValidator debug - validate( "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", "ed6b5f53-aee5-421a-b872-c2caedb1cfcf", clientId) +18:11:08.423 [XNIO-1 task-1] qQ-vCgErQ8OpifWR3iUjVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.423 [XNIO-1 task-1] qQ-vCgErQ8OpifWR3iUjVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.424 [XNIO-1 task-1] qQ-vCgErQ8OpifWR3iUjVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.429 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5c3fde8a-21b4-42ca-a1c1-2e8dc00760ab +18:11:08.434 [XNIO-1 task-1] 5qg6i_89R_m0sGOm-0cZMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5c3fde8a-21b4-42ca-a1c1-2e8dc00760ab, base path is set to: null +18:11:08.434 [XNIO-1 task-1] 5qg6i_89R_m0sGOm-0cZMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.434 [XNIO-1 task-1] 5qg6i_89R_m0sGOm-0cZMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.434 [XNIO-1 task-1] 5qg6i_89R_m0sGOm-0cZMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5c3fde8a-21b4-42ca-a1c1-2e8dc00760ab, base path is set to: null +18:11:08.434 [XNIO-1 task-1] 5qg6i_89R_m0sGOm-0cZMw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c3fde8a-21b4-42ca-a1c1-2e8dc00760ab", "5c3fde8a-21b4-42ca-a1c1-2e8dc00760ab", clientId) +18:11:08.441 [XNIO-1 task-1] y0c1jqMhR9e9u7iSF9UITg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c31a024-1595-4bba-b287-70f6d34b6b64, base path is set to: null +18:11:08.441 [XNIO-1 task-1] y0c1jqMhR9e9u7iSF9UITg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.441 [XNIO-1 task-1] y0c1jqMhR9e9u7iSF9UITg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.441 [XNIO-1 task-1] y0c1jqMhR9e9u7iSF9UITg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c31a024-1595-4bba-b287-70f6d34b6b64, base path is set to: null +18:11:08.441 [XNIO-1 task-1] y0c1jqMhR9e9u7iSF9UITg DEBUG com.networknt.schema.TypeValidator debug - validate( "7c31a024-1595-4bba-b287-70f6d34b6b64", "7c31a024-1595-4bba-b287-70f6d34b6b64", clientId) +18:11:08.446 [XNIO-1 task-1] Xuvf4tFPTKSBYH3V_bXcww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e9cc735d-98c2-47be-b52d-afde63ea0a28 +18:11:08.446 [XNIO-1 task-1] Xuvf4tFPTKSBYH3V_bXcww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.446 [XNIO-1 task-1] Xuvf4tFPTKSBYH3V_bXcww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.446 [XNIO-1 task-1] Xuvf4tFPTKSBYH3V_bXcww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e9cc735d-98c2-47be-b52d-afde63ea0a28 +18:11:08.451 [XNIO-1 task-1] DsjNzSJBQbGIm2hLSbf2QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.451 [XNIO-1 task-1] DsjNzSJBQbGIm2hLSbf2QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.451 [XNIO-1 task-1] DsjNzSJBQbGIm2hLSbf2QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.451 [XNIO-1 task-1] DsjNzSJBQbGIm2hLSbf2QA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.459 [XNIO-1 task-1] ZwxZC5jkQESdLLnebuz-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd6d9bb9-a73e-4cbe-9bd6-e28e3cf66cb5, base path is set to: null +18:11:08.459 [XNIO-1 task-1] ZwxZC5jkQESdLLnebuz-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.459 [XNIO-1 task-1] ZwxZC5jkQESdLLnebuz-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:08.459 [XNIO-1 task-1] ZwxZC5jkQESdLLnebuz-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd6d9bb9-a73e-4cbe-9bd6-e28e3cf66cb5, base path is set to: null +18:11:08.459 [XNIO-1 task-1] ZwxZC5jkQESdLLnebuz-XA DEBUG com.networknt.schema.TypeValidator debug - validate( "bd6d9bb9-a73e-4cbe-9bd6-e28e3cf66cb5", "bd6d9bb9-a73e-4cbe-9bd6-e28e3cf66cb5", clientId) +18:11:08.462 [XNIO-1 task-1] ay7LH5_oSu2CW4L86OWICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf +18:11:08.462 [XNIO-1 task-1] ay7LH5_oSu2CW4L86OWICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.462 [XNIO-1 task-1] ay7LH5_oSu2CW4L86OWICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.462 [XNIO-1 task-1] ay7LH5_oSu2CW4L86OWICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ed6b5f53-aee5-421a-b872-c2caedb1cfcf +18:11:08.462 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ed6b5f53-aee5-421a-b872-c2caedb1cfcf +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG com.networknt.schema.TypeValidator debug - validate( "14baba24-537c-4b99-86d2-18cd8c44a9e6", {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG com.networknt.schema.TypeValidator debug - validate( "86ae1a86-faa0-4f15-b44c-62d9b7da", {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.467 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"86ae1a86-faa0-4f15-b44c-62d9b7da","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.468 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.468 [XNIO-1 task-1] YyjuZ5kcRQ-o_lYM7v_wVg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.471 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.471 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.471 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.471 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.471 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abf9bf4e-a8e8-4482-8fff-91334833","clientDesc":"0f19ae22-5867-4a50-8d27-3b2e44dfceda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.472 [XNIO-1 task-1] xL4t-kJATueJE4eZpMVKUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:08.474 [XNIO-1 task-1] gHLb_EJ2RQWt9wwyjdmxew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.475 [XNIO-1 task-1] gHLb_EJ2RQWt9wwyjdmxew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.475 [XNIO-1 task-1] gHLb_EJ2RQWt9wwyjdmxew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.488 [XNIO-1 task-1] 9TAqNvcNR0C58M5Gqbw0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6be9d86-5ddc-424f-8669-63df6e714c57 +18:11:08.489 [XNIO-1 task-1] 9TAqNvcNR0C58M5Gqbw0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:08.489 [XNIO-1 task-1] 9TAqNvcNR0C58M5Gqbw0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:08.489 [XNIO-1 task-1] 9TAqNvcNR0C58M5Gqbw0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6be9d86-5ddc-424f-8669-63df6e714c57 +18:11:08.491 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.491 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.492 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.493 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0521658a-6c10-4e51-9ef7-7a9c896d","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.984 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:08.984 [XNIO-1 task-1] WWdy60rYQqKCE6msU4_rkA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:08.984 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f3f4685e +18:11:08.987 [XNIO-1 task-1] lMHt6yDyRvuFarJKfbCseA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.988 [XNIO-1 task-1] lMHt6yDyRvuFarJKfbCseA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.988 [XNIO-1 task-1] lMHt6yDyRvuFarJKfbCseA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.999 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.999 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:08.999 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:08.999 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"49e24785-7324-4314-9d75-d8de449b","clientDesc":"14baba24-537c-4b99-86d2-18cd8c44a9e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:09.000 [XNIO-1 task-1] 11T5_3DORjKFifyutL9Kag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:09.005 [XNIO-1 task-1] TwqvSeubRmubZCaYrT9cGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380 +18:11:09.005 [XNIO-1 task-1] TwqvSeubRmubZCaYrT9cGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.005 [XNIO-1 task-1] TwqvSeubRmubZCaYrT9cGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.005 [XNIO-1 task-1] TwqvSeubRmubZCaYrT9cGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9657f74c-ec63-4d88-83c3-a8b244513380 +18:11:09.011 [XNIO-1 task-1] OgexrsIZRgCQgjmJwq4kmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c47197d4-1bcb-4bf8-a4e3-6c7f0ac41a74, base path is set to: null +18:11:09.011 [XNIO-1 task-1] OgexrsIZRgCQgjmJwq4kmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.011 [XNIO-1 task-1] OgexrsIZRgCQgjmJwq4kmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.011 [XNIO-1 task-1] OgexrsIZRgCQgjmJwq4kmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c47197d4-1bcb-4bf8-a4e3-6c7f0ac41a74, base path is set to: null +18:11:09.011 [XNIO-1 task-1] OgexrsIZRgCQgjmJwq4kmw DEBUG com.networknt.schema.TypeValidator debug - validate( "c47197d4-1bcb-4bf8-a4e3-6c7f0ac41a74", "c47197d4-1bcb-4bf8-a4e3-6c7f0ac41a74", clientId) +18:11:09.014 [XNIO-1 task-1] 1q9kvTc6SD2jqoEMGmCXJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c47197d4-1bcb-4bf8-a4e3-6c7f0ac41a74 +18:11:09.014 [XNIO-1 task-1] 1q9kvTc6SD2jqoEMGmCXJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.014 [XNIO-1 task-1] 1q9kvTc6SD2jqoEMGmCXJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.015 [XNIO-1 task-1] 1q9kvTc6SD2jqoEMGmCXJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c47197d4-1bcb-4bf8-a4e3-6c7f0ac41a74 +18:11:09.019 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fc431656 +18:11:09.020 [XNIO-1 task-1] 3CYJpT7-TeWT_f5oApy9dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.020 [XNIO-1 task-1] 3CYJpT7-TeWT_f5oApy9dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.020 [XNIO-1 task-1] 3CYJpT7-TeWT_f5oApy9dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.020 [XNIO-1 task-1] 3CYJpT7-TeWT_f5oApy9dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.020 [XNIO-1 task-1] 3CYJpT7-TeWT_f5oApy9dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG com.networknt.schema.TypeValidator debug - validate( "a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f", {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG com.networknt.schema.TypeValidator debug - validate( "14e0c3cb-7a22-48e2-ac53-460ebb8d", {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:09.027 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.028 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"14e0c3cb-7a22-48e2-ac53-460ebb8d","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.028 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:09.028 [XNIO-1 task-1] FLtMaC7fQR-d1ZFO5m7frw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:09.030 [XNIO-1 task-1] hedaUb3TTZeaSV2DgfsBlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.030 [XNIO-1 task-1] hedaUb3TTZeaSV2DgfsBlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.030 [XNIO-1 task-1] hedaUb3TTZeaSV2DgfsBlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.030 [XNIO-1 task-1] hedaUb3TTZeaSV2DgfsBlA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.030 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f3f4685e +18:11:09.038 [XNIO-1 task-1] 6y7U48lzTl6B7xnT_emcng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3d03d3c-26d9-42a6-a00b-ac6c4964bfee, base path is set to: null +18:11:09.038 [XNIO-1 task-1] 6y7U48lzTl6B7xnT_emcng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.038 [XNIO-1 task-1] 6y7U48lzTl6B7xnT_emcng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.038 [XNIO-1 task-1] 6y7U48lzTl6B7xnT_emcng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3d03d3c-26d9-42a6-a00b-ac6c4964bfee, base path is set to: null +18:11:09.038 [XNIO-1 task-1] 6y7U48lzTl6B7xnT_emcng DEBUG com.networknt.schema.TypeValidator debug - validate( "b3d03d3c-26d9-42a6-a00b-ac6c4964bfee", "b3d03d3c-26d9-42a6-a00b-ac6c4964bfee", clientId) +18:11:09.041 [XNIO-1 task-1] rPP-5CFST2-T9jca4Xricg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.041 [XNIO-1 task-1] rPP-5CFST2-T9jca4Xricg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.041 [XNIO-1 task-1] rPP-5CFST2-T9jca4Xricg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.056 [XNIO-1 task-1] extK0r6oSGmR2ADTutXeHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.056 [XNIO-1 task-1] extK0r6oSGmR2ADTutXeHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.056 [XNIO-1 task-1] extK0r6oSGmR2ADTutXeHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.058 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f3f4685e +18:11:09.069 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.069 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.069 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.069 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f", {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "bd94db19-f7b2-4eae-866d-1b9949fe", {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bd94db19-f7b2-4eae-866d-1b9949fe","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:09.070 [XNIO-1 task-1] vo-SSQGERjONuVcuFZRcAA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:09.074 [XNIO-1 task-1] kQhVyYk9TeeFs2WN5jzXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.074 [XNIO-1 task-1] kQhVyYk9TeeFs2WN5jzXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.074 [XNIO-1 task-1] kQhVyYk9TeeFs2WN5jzXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.074 [XNIO-1 task-1] kQhVyYk9TeeFs2WN5jzXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.082 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.082 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.082 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.082 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.082 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.082 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.083 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.083 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.083 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.083 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.083 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.083 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"afc33f32-2cf0-4932-ba21-41b1b227","clientDesc":"a2c84cc1-a00d-4d4b-b8ce-65b9120bb45f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:09.083 [XNIO-1 task-1] Di6Ei3QuRISmPSkHB21ftg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:09.086 [XNIO-1 task-1] 02MSOaGDQ-2ZftTo4C8-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3d03d3c-26d9-42a6-a00b-ac6c4964bfee +18:11:09.086 [XNIO-1 task-1] 02MSOaGDQ-2ZftTo4C8-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.086 [XNIO-1 task-1] 02MSOaGDQ-2ZftTo4C8-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.086 [XNIO-1 task-1] 02MSOaGDQ-2ZftTo4C8-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3d03d3c-26d9-42a6-a00b-ac6c4964bfee +18:11:09.091 [XNIO-1 task-1] BAp1xew5TymmM7iD_MbH1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.091 [XNIO-1 task-1] BAp1xew5TymmM7iD_MbH1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.092 [XNIO-1 task-1] BAp1xew5TymmM7iD_MbH1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.092 [XNIO-1 task-1] BAp1xew5TymmM7iD_MbH1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.104 [XNIO-1 task-1] Q4ZdQUcITeKiyAqWuN0tVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.104 [XNIO-1 task-1] Q4ZdQUcITeKiyAqWuN0tVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.104 [XNIO-1 task-1] Q4ZdQUcITeKiyAqWuN0tVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.117 [XNIO-1 task-1] 6muldYv0TZqaI9CABD0HOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.117 [XNIO-1 task-1] 6muldYv0TZqaI9CABD0HOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.118 [XNIO-1 task-1] 6muldYv0TZqaI9CABD0HOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.128 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f3f4685e +18:11:09.130 [XNIO-1 task-1] Yyl2c8OJRb2z2sPBlKCYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.130 [XNIO-1 task-1] Yyl2c8OJRb2z2sPBlKCYhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.130 [XNIO-1 task-1] Yyl2c8OJRb2z2sPBlKCYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.130 [XNIO-1 task-1] Yyl2c8OJRb2z2sPBlKCYhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.140 [XNIO-1 task-1] -P_dxnLoRX6s6glrj1bsNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.140 [XNIO-1 task-1] -P_dxnLoRX6s6glrj1bsNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.140 [XNIO-1 task-1] -P_dxnLoRX6s6glrj1bsNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.140 [XNIO-1 task-1] -P_dxnLoRX6s6glrj1bsNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.151 [XNIO-1 task-1] qTdujeqLThm4rh4uUo1nEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c31a024-1595-4bba-b287-70f6d34b6b64, base path is set to: null +18:11:09.151 [XNIO-1 task-1] qTdujeqLThm4rh4uUo1nEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.151 [XNIO-1 task-1] qTdujeqLThm4rh4uUo1nEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.151 [XNIO-1 task-1] qTdujeqLThm4rh4uUo1nEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c31a024-1595-4bba-b287-70f6d34b6b64, base path is set to: null +18:11:09.151 [XNIO-1 task-1] qTdujeqLThm4rh4uUo1nEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7c31a024-1595-4bba-b287-70f6d34b6b64", "7c31a024-1595-4bba-b287-70f6d34b6b64", clientId) +18:11:09.178 [XNIO-1 task-1] gMDyKGxdTOu-eORXBg1gew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31649c4b-2aed-42cc-a35c-862f1d61c47a +18:11:09.178 [XNIO-1 task-1] gMDyKGxdTOu-eORXBg1gew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.178 [XNIO-1 task-1] gMDyKGxdTOu-eORXBg1gew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.178 [XNIO-1 task-1] gMDyKGxdTOu-eORXBg1gew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31649c4b-2aed-42cc-a35c-862f1d61c47a +18:11:09.185 [XNIO-1 task-1] 3N6ZgWxgRmG7yshoFsMfpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.185 [XNIO-1 task-1] 3N6ZgWxgRmG7yshoFsMfpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.185 [XNIO-1 task-1] 3N6ZgWxgRmG7yshoFsMfpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.185 [XNIO-1 task-1] 3N6ZgWxgRmG7yshoFsMfpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.190 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d12092c4-fadf-45f0-aefe-cc4ee86db0de +18:11:09.192 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:69c033d2 +18:11:09.193 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d12092c4-fadf-45f0-aefe-cc4ee86db0de +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG com.networknt.schema.TypeValidator debug - validate( "aeca9765-1398-4469-9981-f02c2e8018f3", {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG com.networknt.schema.TypeValidator debug - validate( "ebd73606-d6a6-4eca-8234-16ee2081", {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.202 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ebd73606-d6a6-4eca-8234-16ee2081","clientDesc":"aeca9765-1398-4469-9981-f02c2e8018f3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.203 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:09.203 [XNIO-1 task-1] oYGlWxDlSiaqgEb_0K3RvA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:09.205 [XNIO-1 task-1] toIY9O6OTtuWI90yEebcnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d12092c4-fadf-45f0-aefe-cc4ee86db0de, base path is set to: null +18:11:09.205 [XNIO-1 task-1] toIY9O6OTtuWI90yEebcnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.205 [XNIO-1 task-1] toIY9O6OTtuWI90yEebcnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.205 [XNIO-1 task-1] toIY9O6OTtuWI90yEebcnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d12092c4-fadf-45f0-aefe-cc4ee86db0de, base path is set to: null +18:11:09.205 [XNIO-1 task-1] toIY9O6OTtuWI90yEebcnA DEBUG com.networknt.schema.TypeValidator debug - validate( "d12092c4-fadf-45f0-aefe-cc4ee86db0de", "d12092c4-fadf-45f0-aefe-cc4ee86db0de", clientId) +18:11:09.208 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fc431656 +18:11:09.211 [XNIO-1 task-1] NpK_VtLUR56rMADV1Na2yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28d2e71e-49b5-4185-a918-774793c8b6d3, base path is set to: null +18:11:09.211 [XNIO-1 task-1] NpK_VtLUR56rMADV1Na2yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.211 [XNIO-1 task-1] NpK_VtLUR56rMADV1Na2yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.211 [XNIO-1 task-1] NpK_VtLUR56rMADV1Na2yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28d2e71e-49b5-4185-a918-774793c8b6d3, base path is set to: null +18:11:09.211 [XNIO-1 task-1] NpK_VtLUR56rMADV1Na2yg DEBUG com.networknt.schema.TypeValidator debug - validate( "28d2e71e-49b5-4185-a918-774793c8b6d3", "28d2e71e-49b5-4185-a918-774793c8b6d3", clientId) +18:11:09.215 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fc431656 +18:11:09.217 [XNIO-1 task-1] vi43cnlQTIScdSe-sWQr9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/33f8b7d6-e7e0-4d87-b2e3-4b31ae569137 +18:11:09.217 [XNIO-1 task-1] vi43cnlQTIScdSe-sWQr9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.217 [XNIO-1 task-1] vi43cnlQTIScdSe-sWQr9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.217 [XNIO-1 task-1] vi43cnlQTIScdSe-sWQr9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/33f8b7d6-e7e0-4d87-b2e3-4b31ae569137 +18:11:09.225 [XNIO-1 task-1] PQ2OVCS4QTuM6eNzaTro4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.225 [XNIO-1 task-1] PQ2OVCS4QTuM6eNzaTro4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.225 [XNIO-1 task-1] PQ2OVCS4QTuM6eNzaTro4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.225 [XNIO-1 task-1] PQ2OVCS4QTuM6eNzaTro4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.231 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.232 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4ea1352-3158-44c0-8777-c91a8d3d","clientDesc":"26fcb891-1fb6-46cf-b387-37bc856b0013","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:09.233 [XNIO-1 task-1] xT2mA_xQQSyP_H9mG92YIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:09.236 [XNIO-1 task-1] mNJBteI-T9q6xWvKEBQsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/73a381ee-65b0-40bd-9754-adf570d60921 +18:11:09.236 [XNIO-1 task-1] mNJBteI-T9q6xWvKEBQsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.236 [XNIO-1 task-1] mNJBteI-T9q6xWvKEBQsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.236 [XNIO-1 task-1] mNJBteI-T9q6xWvKEBQsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/73a381ee-65b0-40bd-9754-adf570d60921 +18:11:09.239 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c9d6cdcf +18:11:09.241 [XNIO-1 task-1] 5cteg76eQFGGexn7fA8bLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7c31a024-1595-4bba-b287-70f6d34b6b64 +18:11:09.241 [XNIO-1 task-1] 5cteg76eQFGGexn7fA8bLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.241 [XNIO-1 task-1] 5cteg76eQFGGexn7fA8bLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.241 [XNIO-1 task-1] 5cteg76eQFGGexn7fA8bLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7c31a024-1595-4bba-b287-70f6d34b6b64 +18:11:09.242 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c9d6cdcf +18:11:09.243 [XNIO-1 task-1] tiisqGGBTnCx_-zcqgB6rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.243 [XNIO-1 task-1] tiisqGGBTnCx_-zcqgB6rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.243 [XNIO-1 task-1] tiisqGGBTnCx_-zcqgB6rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +Jun 28, 2024 6:11:14 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:11:09.256 [XNIO-1 task-1] CThxrj83SUmAjnKaXRcpCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +18:11:09.256 [XNIO-1 task-1] CThxrj83SUmAjnKaXRcpCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c31a024-1595-4bba-b287-70f6d34b6b64, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +18:11:09.256 [XNIO-1 task-1] CThxrj83SUmAjnKaXRcpCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7c31a024-1595-4bba-b287-70f6d34b6b64", "7c31a024-1595-4bba-b287-70f6d34b6b64", clientId) +18:11:09.263 [XNIO-1 task-1] u5uUzCm-SzWO2_vKhdB6Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.263 [XNIO-1 task-1] u5uUzCm-SzWO2_vKhdB6Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.263 [XNIO-1 task-1] u5uUzCm-SzWO2_vKhdB6Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:11:09.264 [XNIO-1 task-1] u5uUzCm-SzWO2_vKhdB6Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.264 [XNIO-1 task-1] u5uUzCm-SzWO2_vKhdB6Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +18:11:09.292 [XNIO-1 task-1] jVzo4CtkT2SWOMa3mKI0yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d9887868-b4bc-4309-a9ba-7ba3bc2f8448, base path is set to: null +18:11:09.292 [XNIO-1 task-1] jVzo4CtkT2SWOMa3mKI0yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9887868-b4bc-4309-a9ba-7ba3bc2f8448 +18:11:09.292 [XNIO-1 task-1] jVzo4CtkT2SWOMa3mKI0yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.292 [XNIO-1 task-1] jVzo4CtkT2SWOMa3mKI0yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.292 [XNIO-1 task-1] jVzo4CtkT2SWOMa3mKI0yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} + ... 13 more + +18:11:09.292 [XNIO-1 task-1] jVzo4CtkT2SWOMa3mKI0yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9887868-b4bc-4309-a9ba-7ba3bc2f8448 +18:11:09.297 [XNIO-1 task-1] s4yK3oG_QLW2X1VYc_fi6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.298 [XNIO-1 task-1] s4yK3oG_QLW2X1VYc_fi6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.298 [XNIO-1 task-1] s4yK3oG_QLW2X1VYc_fi6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.298 [XNIO-1 task-1] s4yK3oG_QLW2X1VYc_fi6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.368 [XNIO-1 task-1] s7EhIndmQ_aHl18V4vTwTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.368 [XNIO-1 task-1] s7EhIndmQ_aHl18V4vTwTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.368 [XNIO-1 task-1] s7EhIndmQ_aHl18V4vTwTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.368 [XNIO-1 task-1] s7EhIndmQ_aHl18V4vTwTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.469 [XNIO-1 task-1] K2MeiCgfSm-YVtFUYUxSQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d6be9d86-5ddc-424f-8669-63df6e714c57, base path is set to: null +18:11:09.469 [XNIO-1 task-1] K2MeiCgfSm-YVtFUYUxSQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.469 [XNIO-1 task-1] K2MeiCgfSm-YVtFUYUxSQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.469 [XNIO-1 task-1] K2MeiCgfSm-YVtFUYUxSQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d6be9d86-5ddc-424f-8669-63df6e714c57, base path is set to: null +18:11:09.469 [XNIO-1 task-1] K2MeiCgfSm-YVtFUYUxSQw DEBUG com.networknt.schema.TypeValidator debug - validate( "d6be9d86-5ddc-424f-8669-63df6e714c57", "d6be9d86-5ddc-424f-8669-63df6e714c57", clientId) +18:11:09.478 [XNIO-1 task-1] Ymy8wHicTqGIZsxnavbvEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.478 [XNIO-1 task-1] Ymy8wHicTqGIZsxnavbvEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.478 [XNIO-1 task-1] Ymy8wHicTqGIZsxnavbvEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.490 [XNIO-1 task-1] vtYAKEZZQCGOjGP_ySf4tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.490 [XNIO-1 task-1] vtYAKEZZQCGOjGP_ySf4tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.491 [XNIO-1 task-1] vtYAKEZZQCGOjGP_ySf4tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.491 [XNIO-1 task-1] vtYAKEZZQCGOjGP_ySf4tw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.497 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.497 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.497 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.497 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e01ec-e3b0-4481-ab19-30881952","clientDesc":"95262811-7834-4449-a812-28b85a47b3e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:09.498 [XNIO-1 task-1] OU7ckEJoQtiKDYyiFeq39Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:11:09.502 [XNIO-1 task-1] zrnd_0nDSfaaRvi_rlKpCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f1fbe66e-d350-47c0-8c97-32e571140e28 +18:11:09.502 [XNIO-1 task-1] zrnd_0nDSfaaRvi_rlKpCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.502 [XNIO-1 task-1] zrnd_0nDSfaaRvi_rlKpCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:11:09.502 [XNIO-1 task-1] zrnd_0nDSfaaRvi_rlKpCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f1fbe66e-d350-47c0-8c97-32e571140e28 +18:11:09.505 [XNIO-1 task-1] xTZP7IMQTn2143qNMSi6yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0e5dd3a4-268c-4ee7-a534-562eb39e65e2, base path is set to: null +18:11:09.505 [XNIO-1 task-1] xTZP7IMQTn2143qNMSi6yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.505 [XNIO-1 task-1] xTZP7IMQTn2143qNMSi6yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.505 [XNIO-1 task-1] xTZP7IMQTn2143qNMSi6yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0e5dd3a4-268c-4ee7-a534-562eb39e65e2, base path is set to: null +18:11:09.505 [XNIO-1 task-1] xTZP7IMQTn2143qNMSi6yA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e5dd3a4-268c-4ee7-a534-562eb39e65e2", "0e5dd3a4-268c-4ee7-a534-562eb39e65e2", clientId) +18:11:09.510 [XNIO-1 task-1] aiMqz2hGQRKOIyTJL_C9hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.510 [XNIO-1 task-1] aiMqz2hGQRKOIyTJL_C9hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.511 [XNIO-1 task-1] aiMqz2hGQRKOIyTJL_C9hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.517 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:055e2558-f3fd-45db-9aee-4a8e66c98f11 +18:11:09.522 [XNIO-1 task-1] boZuxt5-SqGRA9I41U_HzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.523 [XNIO-1 task-1] boZuxt5-SqGRA9I41U_HzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.523 [XNIO-1 task-1] boZuxt5-SqGRA9I41U_HzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:11:09.533 [XNIO-1 task-1] _B2jbHCwTg6DQpfzHXUWsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/055e2558-f3fd-45db-9aee-4a8e66c98f11, base path is set to: null +18:11:09.533 [XNIO-1 task-1] _B2jbHCwTg6DQpfzHXUWsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:11:09.533 [XNIO-1 task-1] _B2jbHCwTg6DQpfzHXUWsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:11:09.533 [XNIO-1 task-1] _B2jbHCwTg6DQpfzHXUWsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/055e2558-f3fd-45db-9aee-4a8e66c98f11, base path is set to: null +18:11:09.534 [XNIO-1 task-1] _B2jbHCwTg6DQpfzHXUWsg DEBUG com.networknt.schema.TypeValidator debug - validate( "055e2558-f3fd-45db-9aee-4a8e66c98f11", "055e2558-f3fd-45db-9aee-4a8e66c98f11", clientId) +18:11:09.537 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.537 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.537 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:11:09.538 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.538 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:11:09.538 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3", {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:11:09.538 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:11:09.538 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:11:09.538 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9623abe9-0439-4133-9e56-a66df61c", {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:11:09.538 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.539 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9623abe9-0439-4133-9e56-a66df61c","clientDesc":"beceaa4c-a5c8-41ee-9d1d-d09904a9c3c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.539 [XNIO-1 task-1] t8lmsUV3ROeqZrmCTshkpQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) diff --git a/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..fc74727 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-code-1.log @@ -0,0 +1,1740 @@ +18:11:09.223 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.223 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.223 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.223 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.228 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.236 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.237 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.237 [XNIO-1 task-2] hg8PDaoxTKqTi1z2pgWCFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ma-LzeQwSdSalZkItNbeYQ +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.240 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.246 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.246 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.247 [XNIO-1 task-2] m6WcBaKrQSW4bGDExqfCbQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=y-zLWUIuRq2L2sW-4Ysv6A +18:11:09.250 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.250 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.250 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.251 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.251 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.251 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.251 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.252 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.259 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.260 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.262 [XNIO-1 task-2] FXMkC0mPSgaSyvdEy55nhQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QiLRqeW9S-eOY3Vc75vBmw +18:11:09.374 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:47e86f7c +18:11:09.375 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:47e86f7c +18:11:09.472 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4cd47e50 +18:11:09.480 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.480 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:09.480 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.480 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:09.480 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:09.481 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:09.481 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:09.481 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:09.481 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:09.484 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:189be668-1096-4401-ba2c-7e0ee55cdae8 +18:11:09.487 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.487 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.488 [XNIO-1 task-2] cRGuQIvlSn2eQ37u_7h0tw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6LR_ZcU4SRydE-Qona3WsQ +18:11:09.493 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.493 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.493 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.494 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.494 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.494 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.494 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.494 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.500 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.500 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.502 [XNIO-1 task-2] j3o-MI4ESfCDj1fB_ifheA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=A18u5UvIRmGgeaMKqzQHog +18:11:09.507 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.508 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.508 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.508 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.508 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.508 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.508 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.508 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.517 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.517 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.518 [XNIO-1 task-2] 2RPi6Ri0S22rda0r5Xzwqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_kLyfgYER0CATd3XTCkQyg +18:11:09.521 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.521 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.522 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.522 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.522 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.522 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.522 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.522 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.528 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.528 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.529 [XNIO-1 task-2] V8tAL4xsRPeZ24o90nwgXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=d_8HH4kOSku7hHlWP6TIOA +18:11:09.532 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.532 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.532 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.532 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.532 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.532 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.532 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.535 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.544 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.544 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.544 [XNIO-1 task-2] KnCKa7MSTpSmWn30LKUaqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VjALPyO9SKmzbpDenAvUMw +18:11:09.548 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.548 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.548 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.548 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.548 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.548 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.549 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.549 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.555 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cfaa3f46-935b-4e3c-bfa7-50b60a7f2639 +18:11:09.557 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:09.557 [XNIO-1 task-2] Pz5Pkr06T6G2duaxRnef7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:09.597 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:09.598 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:09.605 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:09.605 [XNIO-1 task-2] prwkt568QG-MlMKLNVKmPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:09.628 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d2243f87-f2ca-40c4-98cf-84be8fa3720a +18:11:09.634 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d2243f87-f2ca-40c4-98cf-84be8fa3720a +18:11:09.649 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.649 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.649 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.650 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.650 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.650 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.650 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.650 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.657 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.657 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.659 [XNIO-1 task-2] czNYi-f5Tt625sK3WOvfhA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=N_eM_usdQNKlo68nqbDw4A +18:11:09.686 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.686 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:09.687 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.687 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG com.networknt.schema.TypeValidator debug - validate( "189be668-1096-4401-ba2c-7e0ee55cdae8", "189be668-1096-4401-ba2c-7e0ee55cdae8", client_id) +18:11:09.687 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:09.688 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:09.688 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:09.688 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:09.688 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:09.691 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:47e86f7c +18:11:09.694 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:09.694 [XNIO-1 task-2] 4CMvIEoaQ5-PSQ_2PHftXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:09.699 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.699 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:09.700 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:09.700 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG com.networknt.schema.TypeValidator debug - validate( "189be668-1096-4401-ba2c-7e0ee55cdae8", "189be668-1096-4401-ba2c-7e0ee55cdae8", client_id) +18:11:09.700 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:09.700 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:09.700 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:09.700 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:09.700 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:09.706 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:09.706 [XNIO-1 task-2] tlnUu8KMRSSXUl6DXfMpIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:09.711 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:06cf4e3a +18:11:09.712 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:06cf4e3a +18:11:09.713 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.713 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.713 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.713 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.713 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.713 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.714 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.714 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.723 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.723 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.724 [XNIO-1 task-2] KQW3Li9HRq2JoXzy8P8Dzg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=B-aoF3gKTh--sg3xehxE2Q +18:11:09.727 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.727 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.727 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.728 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.728 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.728 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.728 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.728 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.734 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.734 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.741 [XNIO-1 task-2] q8PPD4LRTtiGkXQqD5xg9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aRK5DZKDQrWrQIIX13RUcw +18:11:09.743 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.744 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.744 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.744 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.744 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.744 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.744 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.744 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.750 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.750 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.751 [XNIO-1 task-2] 3cbtjnGwTpaAeZqiqlVSSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Z7GTttBzTgqaFu0v01_Feg +18:11:09.770 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.770 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.770 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.770 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.770 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.771 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.771 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.771 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.778 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.778 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.779 [XNIO-1 task-2] PzRc5nMgTQSMDfMrkNAZNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6s1sxsWITly_0ohTdnqlMg +18:11:09.801 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.801 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.801 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.801 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.801 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.801 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.802 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.802 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.807 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.807 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.808 [XNIO-1 task-2] HKVGGhqcSv6ESbQUWJDqQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SFP-VzQYSIOAFl4OHGAV0g +18:11:09.820 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:053eb6a1-b68d-4777-840a-6154bb95474f +18:11:09.825 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.826 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.826 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.826 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.826 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.827 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.827 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.827 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.834 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.834 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.835 [XNIO-1 task-2] stsCdF7vQemFzQ0_96bmgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hRCai1mVT0WoSWyZdD_djg +18:11:09.847 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:061b8cc3-6231-4f1e-8b9a-aec79e4e86e0 +18:11:09.865 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a371c9b0-cdb7-4a5e-ba0f-0a44deb4288a +18:11:09.866 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a371c9b0-cdb7-4a5e-ba0f-0a44deb4288a +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:09.919 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:09.925 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:09.925 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:09.928 [XNIO-1 task-2] ak5ptoUEQOKYiPpNbGHdLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tF6Cc5P7TpiYXeLhFSwcEg +18:11:09.941 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 +18:11:09.955 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cd47e50 +18:11:10.013 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.013 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.014 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.014 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:10.014 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.014 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.014 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.014 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.014 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.019 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:71101569-a43b-403c-a2e5-1e764e0a6443 +18:11:10.020 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.020 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.020 [XNIO-1 task-2] yK_7Fz8YR3WSSFgHuSn0_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ALgkFT3YTBG9wzRcg7Kx2Q +18:11:10.023 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cd47e50 +18:11:10.026 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.026 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.027 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.027 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.028 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.028 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.028 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.028 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.034 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.034 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.035 [XNIO-1 task-2] aPyUDfKoRb-XRZzwXQquMA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OitmUjtVTMq-SKVGV6cjMg +18:11:10.037 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.037 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.038 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.038 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.038 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.038 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.038 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.038 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.045 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.045 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.046 [XNIO-1 task-2] KXnshTxZRXu50Fi2C0nYFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=O8NW2TKvT1WNbAl58DlaZQ +18:11:10.076 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:55b71b6e +18:11:10.079 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.079 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.079 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.079 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:10.080 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.080 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.080 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.080 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.080 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.085 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.085 [XNIO-1 task-2] Jq3xYGjjRrqbtIbKjcx2pA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.102 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.102 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.103 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.103 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:10.103 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.103 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.104 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.104 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.104 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.115 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.115 [XNIO-1 task-2] MkOlORgcQc-keACj0RwRww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.120 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:06cf4e3a +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.121 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.122 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.130 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.130 [XNIO-1 task-2] eypdRthEQ6mmsVR7sxmiRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.130 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:55b71b6e +18:11:10.136 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:06cf4e3a +18:11:10.147 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.147 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.147 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.148 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:10.148 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.148 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.148 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.148 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.148 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.160 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.160 [XNIO-1 task-2] 86-RUJ05S-ClhU8lGIsdHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.182 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG com.networknt.schema.TypeValidator debug - validate( "f78e5939-6b31-4c53-ab15-416613aad55f", "f78e5939-6b31-4c53-ab15-416613aad55f", client_id) +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.184 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.190 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.190 [XNIO-1 task-2] XLvdpwpBTkmBwXxdrawOtw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "vOHzIL7rxDTQf-00ggzp2DzDgPjSY4wSMaxeTITIYfY", "vOHzIL7rxDTQf-00ggzp2DzDgPjSY4wSMaxeTITIYfY", code_challenge) +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.204 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.205 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.205 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.214 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.214 [XNIO-1 task-2] XbKOOh_aRyGuTeyS5NTxmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.247 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.247 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.247 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.248 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG com.networknt.schema.TypeValidator debug - validate( "d0e62944-e987-486e-a305-5d04bac34f32", "d0e62944-e987-486e-a305-5d04bac34f32", client_id) +18:11:10.248 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.248 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.248 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.248 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.249 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.301 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.302 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.302 [XNIO-1 task-2] yVmPUFvIS_6fa3MFfVe_iw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AsIL2PO6QImqvccVZNNMJw +18:11:10.324 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 +18:11:10.479 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.479 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.479 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.479 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:10.479 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.479 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.480 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.480 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.480 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.484 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.485 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.485 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d259a8d7 +18:11:10.490 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.491 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.492 [XNIO-1 task-2] p7MB2KdGSta1I9pZ4Kv2Nw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Pg8m0gBpSAe2sSrG85Zs8Q +18:11:10.519 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.519 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.519 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.519 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG com.networknt.schema.TypeValidator debug - validate( "HEuZNxPFo6N70JejzrtFxvzrlhedss1V9K_4iiBL91c", "HEuZNxPFo6N70JejzrtFxvzrlhedss1V9K_4iiBL91c", code_challenge) +18:11:10.519 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:10.519 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.519 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.520 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.520 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.520 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.528 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.528 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.528 [XNIO-1 task-2] VOSL1RX4RveUFVBRSZtZwg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ARTdye7bQx-a262giHL_aw +18:11:10.531 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:763af696-4524-4c40-8f31-34f0bbbe1827 +18:11:10.543 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:47e86f7c +18:11:10.545 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG com.networknt.schema.TypeValidator debug - validate( "bGmrBwnrxvBbras5yys9AiIdVivwrxVqz2Ywv3kGnoo", "bGmrBwnrxvBbras5yys9AiIdVivwrxVqz2Ywv3kGnoo", code_challenge) +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.551 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.552 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.558 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.558 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.561 [XNIO-1 task-2] ZNqAvyiUR-2Akh5fkdjcyA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nLF8_BgNRiOmSyblBQm81A +18:11:10.567 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.567 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.567 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.568 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "273012cd-9375-4f65-a714-5ab991628f63", "273012cd-9375-4f65-a714-5ab991628f63", client_id) +18:11:10.568 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.568 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.568 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.568 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.568 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.572 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.572 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.572 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.573 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG com.networknt.schema.TypeValidator debug - validate( "f78e5939-6b31-4c53-ab15-416613aad55f", "f78e5939-6b31-4c53-ab15-416613aad55f", client_id) +18:11:10.573 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.573 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.573 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.573 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.573 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.575 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.575 [XNIO-1 task-2] DHqlVKoTSMeUaaLFTGVN8Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.580 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.580 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.581 [XNIO-1 task-1] Okx06SFrTZ2_u8_AFN9f5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7TD3Xk3qS9-RkfA2tGXwPg +18:11:10.639 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:47e86f7c +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.651 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.658 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.658 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.659 [XNIO-1 task-1] T24c0Ta2RI6M37Q_EbASfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4AJqoaB8QM28--qoEgHyFQ +18:11:10.685 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.685 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.685 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.685 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "084a1ec4-9bf2-4f40-b863-04546be2b6b3", "084a1ec4-9bf2-4f40-b863-04546be2b6b3", client_id) +18:11:10.685 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.685 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.687 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.688 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.688 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.688 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.694 [XNIO-1 task-1] UjcQeCXiSp67UcPYqhV3Lg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +Jun 28, 2024 6:11:10 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:11:10.700 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +18:11:10.700 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.700 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG com.networknt.schema.TypeValidator debug - validate( "73701bd4-913e-4f40-9b46-38613937eb7e", "73701bd4-913e-4f40-9b46-38613937eb7e", client_id) +18:11:10.700 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +18:11:10.700 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.701 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.701 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.701 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.701 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.701 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:11:10.701 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.707 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.707 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +18:11:10.707 [XNIO-1 task-1] zoNHKIztTSqgY8QWwhQKMA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +18:11:10.713 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +18:11:10.714 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.714 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:11:10.714 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG com.networknt.schema.TypeValidator debug - validate( "_4HVncr6fSluR6dCR8995kf3znqsQyiPK8_5hC4Et38", "_4HVncr6fSluR6dCR8995kf3znqsQyiPK8_5hC4Et38", code_challenge) +18:11:10.714 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + ... 14 more + +18:11:10.714 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.715 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.715 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.715 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG com.networknt.schema.TypeValidator debug - validate( "f78e5939-6b31-4c53-ab15-416613aad55f", "f78e5939-6b31-4c53-ab15-416613aad55f", client_id) +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.716 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.720 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.721 [XNIO-1 task-1] GwxwzdSWTZ-XSeJeXXmylA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.722 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.722 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.723 [XNIO-1 task-2] 0maPd7EJQVqVQ9VyfjVcng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BcAsXlWyRraOwboqyjhZbg +18:11:10.727 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:10.775 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.775 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.775 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.775 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG com.networknt.schema.TypeValidator debug - validate( "8edccf36-018a-421a-8df3-18b2eee74480", "8edccf36-018a-421a-8df3-18b2eee74480", client_id) +18:11:10.775 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.775 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.776 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.776 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.776 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.776 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d259a8d7 +18:11:10.780 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.780 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.780 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.781 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG com.networknt.schema.TypeValidator debug - validate( "2005f998-9589-4882-a208-78ae3d4eae1f", "2005f998-9589-4882-a208-78ae3d4eae1f", client_id) +18:11:10.781 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.781 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.781 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.781 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.782 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:10.782 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.782 [XNIO-1 task-2] jbCGfcyeQ-unbYnC7LyUDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.787 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.788 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.788 [XNIO-1 task-1] yuf5h4UWQU-8bhNcHZ9xvA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=j3cySbqHRsWkEpeT99BXjw +18:11:10.789 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.789 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.789 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.789 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG com.networknt.schema.TypeValidator debug - validate( "8edccf36-018a-421a-8df3-18b2eee74480", "8edccf36-018a-421a-8df3-18b2eee74480", client_id) +18:11:10.790 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.790 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.790 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.790 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.790 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.795 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.795 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.797 [XNIO-1 task-1] MBYMnGD0Rrek73fYBGvPLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eNWT9vKpThO3HlrVFSdHUw +18:11:10.802 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.802 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.803 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.803 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:10.803 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.803 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.803 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.803 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.803 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.814 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.815 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.845 [XNIO-1 task-1] 8qAFO7aQToyVmLvUx1uleQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=W-2SgM-pQxWXupRpcfkthw +18:11:10.851 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.851 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.851 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.851 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.852 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.852 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.852 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.852 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.857 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.857 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.862 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d259a8d7 +18:11:10.869 [XNIO-1 task-1] r4bxZXpGR72WrewBgizdlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OvOitFu8Q76A2I6RZE6D7w +18:11:10.877 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.877 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.877 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.877 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.877 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.878 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.878 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.878 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.883 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.884 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.888 [XNIO-1 task-1] kXb70yajQuq-mCvaDMvt4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pfgGqcwjT4ehaLQQQe7mTQ +18:11:10.913 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.913 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.913 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.914 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.914 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.914 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.914 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.914 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.915 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66d62cd9-1ecf-4c11-85c0-6dbf096a11ab +18:11:10.916 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66d62cd9-1ecf-4c11-85c0-6dbf096a11ab +18:11:10.919 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:10.919 [XNIO-1 task-1] kkhDlnwnQR6d4yA0l-dLGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:10.932 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:66d62cd9-1ecf-4c11-85c0-6dbf096a11ab +18:11:10.972 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.972 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.972 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.972 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.972 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.972 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.972 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.973 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.978 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.979 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.980 [XNIO-1 task-1] gFRiONxVQq6xukjFtJ-tUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6kpWtIw1Rvq6KOnkyeqw9A +18:11:10.985 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.985 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.985 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:10.986 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG com.networknt.schema.TypeValidator debug - validate( "8edccf36-018a-421a-8df3-18b2eee74480", "8edccf36-018a-421a-8df3-18b2eee74480", client_id) +18:11:10.986 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:10.986 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:10.986 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:10.986 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:10.986 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG com.networknt.schema.TypeValidator debug - validate( "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", client_id) +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:10.990 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:10.991 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:10.992 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.992 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.996 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:10.996 [XNIO-1 task-2] aOnwFcCCSBGCMh6KeDSlbA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:10.996 [XNIO-1 task-1] WHCvGzx1QQS99XqQohiE0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lLkisUXmS6WoP5N6nSQ3uQ +18:11:11.004 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "K-Mg1Vj-6B-pxni6pL__raii84X2JOQ9gQYop-L5bVg", "K-Mg1Vj-6B-pxni6pL__raii84X2JOQ9gQYop-L5bVg", code_challenge) +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.005 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.006 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.006 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.006 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.007 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.007 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.007 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.007 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.008 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.014 [XNIO-1 task-1] B0xcHkgeQI6T4C43418oOw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.014 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.014 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.014 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.015 [XNIO-1 task-2] G949zHrYTj6fGj5sPtB9yQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-N2CexITRw6H4Yqi6f-mhQ +18:11:11.020 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.020 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.020 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.021 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG com.networknt.schema.TypeValidator debug - validate( "zXOyTYkdMwqROjPcX3n9ofwUn2RntaZEjzNMxzu3KNk", "zXOyTYkdMwqROjPcX3n9ofwUn2RntaZEjzNMxzu3KNk", code_challenge) +18:11:11.021 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.021 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.021 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.023 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.023 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.023 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8edccf36-018a-421a-8df3-18b2eee74480", "8edccf36-018a-421a-8df3-18b2eee74480", client_id) +18:11:11.023 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.023 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.023 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.023 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.023 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.023 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.023 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.025 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.028 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.028 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.030 [XNIO-1 task-2] fxetfGReQeW-n1pzls3F4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uoCnf6L1Svu1LwXOHdlVhQ +18:11:11.031 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.031 [XNIO-1 task-1] 6CN7kvvOT9aTJXlJdFBeRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.035 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.035 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.035 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.036 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG com.networknt.schema.TypeValidator debug - validate( "f78e5939-6b31-4c53-ab15-416613aad55f", "f78e5939-6b31-4c53-ab15-416613aad55f", client_id) +18:11:11.036 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.036 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.036 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.036 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.036 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.042 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.042 [XNIO-1 task-1] Rj4Aiz19SRy1lpsQ10hARA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.066 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.066 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.066 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.066 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG com.networknt.schema.TypeValidator debug - validate( "-417lMpa4tzUmKhEXdMk0aU49ZyqAcMbOC2Kxai05J8", "-417lMpa4tzUmKhEXdMk0aU49ZyqAcMbOC2Kxai05J8", code_challenge) +18:11:11.066 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.067 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.067 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.067 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.067 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.067 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.073 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.073 [XNIO-1 task-1] 9-9WTd7-R8a1PplJm4Rnuw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.095 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0c476905 +18:11:11.096 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0c476905 +18:11:11.102 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:36e98077-2f83-48a9-8ec1-309b6da95639 +18:11:11.103 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0c476905 +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG com.networknt.schema.TypeValidator debug - validate( "F3HLl791wqJscCjWkiw5SzwRwKPUllu1GmFHiYAQGZc", "F3HLl791wqJscCjWkiw5SzwRwKPUllu1GmFHiYAQGZc", code_challenge) +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.110 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.116 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.116 [XNIO-1 task-1] qu_2AdkTQXSgyaOBedoTpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.124 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:36e98077-2f83-48a9-8ec1-309b6da95639 +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.143 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.148 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.149 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.150 [XNIO-1 task-1] DVDaDt-nSpyFin7GahnkrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DCZyukAYRXOjWLQpWvd8oQ +18:11:11.181 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.181 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.181 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.182 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.182 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG com.networknt.schema.TypeValidator debug - validate( "f78e5939-6b31-4c53-ab15-416613aad55f", "f78e5939-6b31-4c53-ab15-416613aad55f", client_id) +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.182 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.182 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.182 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.182 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.182 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.236 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.236 [XNIO-1 task-2] OvXY1T_iT8msfW38y0lQRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.237 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.237 [XNIO-1 task-1] tbKt4EhLTqid0UoSFmb2nw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.239 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.239 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.239 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.240 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG com.networknt.schema.TypeValidator debug - validate( "WMEdgL4aykWu2oZn7mUMMjTpgQHno9SChWbO_JkmfWk", "WMEdgL4aykWu2oZn7mUMMjTpgQHno9SChWbO_JkmfWk", code_challenge) +18:11:11.240 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.241 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.241 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.241 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.241 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.241 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.266 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.266 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.267 [XNIO-1 task-1] nB4jo54YTDynYc5f2xNxYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=h12C44KpQ3yu44LrlOhm_Q +18:11:11.270 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.270 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.270 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.271 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:11.271 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.271 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.271 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.271 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.271 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.340 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.340 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.341 [XNIO-1 task-1] P_TBt6nVQRWJluiQFUy0bA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PAMFANDPRKyQ6mb_W_8aJQ +18:11:11.344 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.344 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.344 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.344 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:11.345 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.345 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.345 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.345 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.345 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.365 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:47e86f7c +18:11:11.367 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.367 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.368 [XNIO-1 task-1] T8CpNd2DR1-ZU-f28klIDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lJ-5QyRvSC-Jlul-ao6HNQ +18:11:11.371 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.371 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.371 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.371 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:11.371 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.371 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.372 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.372 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.372 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.377 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG com.networknt.schema.TypeValidator debug - validate( "f78e5939-6b31-4c53-ab15-416613aad55f", "f78e5939-6b31-4c53-ab15-416613aad55f", client_id) +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.378 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.379 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.379 [XNIO-1 task-1] 2gComdEoS5C3sB8345Bmpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.384 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.384 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.385 [XNIO-1 task-2] 8o9_CsXORMWbpJrZnplvKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CkpmjsiaTHu3x5KZP7XMKg +18:11:11.394 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.394 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.394 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.394 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:11.394 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.395 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.395 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.395 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.395 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.397 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9232d5be-baa4-4165-ac15-7908a69cfcec +18:11:11.404 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.404 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.404 [XNIO-1 task-2] QISO_uloQBCeBExLUcmDEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=i9CrhSXfQ0iYeoWl35AKfQ +18:11:11.410 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.410 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.410 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.410 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:11.410 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.410 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.411 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.411 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.411 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.411 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.411 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.411 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.412 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG com.networknt.schema.TypeValidator debug - validate( "f78e5939-6b31-4c53-ab15-416613aad55f", "f78e5939-6b31-4c53-ab15-416613aad55f", client_id) +18:11:11.412 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.412 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.412 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.412 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.412 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.417 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.417 [XNIO-1 task-2] jxxjXuwxTK2WwU316ii2Pg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.418 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.418 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.419 [XNIO-1 task-1] bdGBKyU3Skuj0GaJ4WSI4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yOUd5HofTdakSdotD1jvkw +18:11:11.429 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.429 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.429 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.429 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.429 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.429 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.430 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.430 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.439 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.439 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.440 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.440 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG com.networknt.schema.TypeValidator debug - validate( "zcl0v5YLtieZ_fmFEoOzX_8ithCbyBAols8c-GWO6Ww", "zcl0v5YLtieZ_fmFEoOzX_8ithCbyBAols8c-GWO6Ww", code_challenge) +18:11:11.440 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.440 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.440 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.440 [XNIO-1 task-1] oujelLBqQJujohEe9tGP9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.440 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.440 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.440 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.440 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.448 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.448 [XNIO-1 task-2] _pD7XS5UQN6fxpN73zfGQA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.453 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:90a559e4 +18:11:11.457 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:90a559e4 +18:11:11.467 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:90a559e4 +18:11:11.478 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.478 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.478 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.478 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "90017f46-d638-44eb-8c45-4953fc135f8f", "90017f46-d638-44eb-8c45-4953fc135f8f", client_id) +18:11:11.478 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.478 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.479 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.479 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.479 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.479 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:10200cf2 +18:11:11.480 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:10200cf2 +18:11:11.484 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.484 [XNIO-1 task-2] VNTr__LIRxiP3sgEMWVUoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.490 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.490 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.490 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.490 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG com.networknt.schema.TypeValidator debug - validate( "HNtgLoJRhxS9mSozX0VIvHJI7Kx2x3ZvtEIeM39XmMw", "HNtgLoJRhxS9mSozX0VIvHJI7Kx2x3ZvtEIeM39XmMw", code_challenge) +18:11:11.490 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.491 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.491 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.491 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.491 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.492 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.497 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.497 [XNIO-1 task-2] gh3Behs5TuyofWNZV1GheA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.500 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:10200cf2 +18:11:11.503 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG com.networknt.schema.TypeValidator debug - validate( "TH0fKZKYuY7oX-4dUInyDN2-x1yZWjVF9FlOcMX9Cnk", "TH0fKZKYuY7oX-4dUInyDN2-x1yZWjVF9FlOcMX9Cnk", code_challenge) +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.504 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.505 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.511 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.511 [XNIO-1 task-2] Qw6CUNLnRnWs4IIH4LgoZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.519 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:10200cf2 +18:11:11.533 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.533 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:11.533 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:11.533 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Y7Pv8LcPAPJfTliB8J5wEzhr-nnEyCBtSWILiR9X5Ok", "Y7Pv8LcPAPJfTliB8J5wEzhr-nnEyCBtSWILiR9X5Ok", code_challenge) +18:11:11.533 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:11.534 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:11.534 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:11.534 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:11.534 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:11.534 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:11.544 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:11.544 [XNIO-1 task-2] ilvaZywASlSn1f6J5kH_3g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:11.571 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:10200cf2 +18:11:11.598 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.598 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.598 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.599 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG com.networknt.schema.TypeValidator debug - validate( "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", client_id) +18:11:11.599 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.599 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.599 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.599 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.599 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.607 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.608 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.609 [XNIO-1 task-2] d_qggGtUQWqqqfM8UPbyAw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3bm2fMdoQxKe0Loqwa3ncQ +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.632 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.633 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.639 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.640 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.644 [XNIO-1 task-2] 4BuWHXQKRd2X7BdO5N1OrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=T8IlNLA9Q36UbKw9A-P-xQ +18:11:11.647 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.647 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.647 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.647 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "503e8b0d-1b93-4728-ae96-97f2049efbff", "503e8b0d-1b93-4728-ae96-97f2049efbff", client_id) +18:11:11.648 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.648 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.648 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.649 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.650 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.655 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.656 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:11.657 [XNIO-1 task-2] 9_02WU63QqCxbVIdUvGVFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Vg6nb7kSSvWlMDWolDdChA +18:11:11.675 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.675 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.675 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:11.676 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:11.676 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:11.676 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:11.676 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:11.676 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:11.677 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:11.684 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:11.685 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.491 [XNIO-1 task-2] UTxcTWc1SASHQFORtp2dew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xWk4rscxS52EDp2AUmCc5A +18:11:13.498 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.498 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.498 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.498 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:13.498 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.498 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.499 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.499 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.499 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.504 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.504 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.504 [XNIO-1 task-2] 59jAyGjUQYuTMcSzsE16oQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.505 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.505 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.505 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "189be668-1096-4401-ba2c-7e0ee55cdae8", "189be668-1096-4401-ba2c-7e0ee55cdae8", client_id) +18:11:13.505 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.505 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.505 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.506 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.506 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.512 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.513 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.515 [XNIO-1 task-1] Bd_WfImjRFmVkqlCCtRYkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Nhm8YLDSQcmJ7xxiA-W_cQ +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG com.networknt.schema.TypeValidator debug - validate( "90017f46-d638-44eb-8c45-4953fc135f8f", "90017f46-d638-44eb-8c45-4953fc135f8f", client_id) +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.533 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.534 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.541 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.541 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.545 [XNIO-1 task-1] IivpIwjPRz-rj8LXd-7itw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tvKVxB1LQTCoQcj5KsCYKQ +18:11:13.551 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.551 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.551 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.552 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe92d06-3243-4d42-9e59-f99e40199333", "0fe92d06-3243-4d42-9e59-f99e40199333", client_id) +18:11:13.552 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.552 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.552 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.552 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.552 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.558 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.559 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.561 [XNIO-1 task-1] XvyBbwSTRIaVQSNzKY78eA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XRMiaWfOQ0ibmwmKxjDYbw +18:11:13.568 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.568 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.568 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.568 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.568 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.569 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe92d06-3243-4d42-9e59-f99e40199333", "0fe92d06-3243-4d42-9e59-f99e40199333", client_id) +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.569 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.569 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.569 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.570 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.570 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.575 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.575 [XNIO-1 task-2] qzz5gh-bS2iZUyPLQEs9WQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.576 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.576 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.579 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.579 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.579 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.580 [XNIO-1 task-1] KMnmlAdWQIaETOSTO9P4Sg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zO2BOpRkSjWx5Aj2Is73Yg +18:11:13.580 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG com.networknt.schema.TypeValidator debug - validate( "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", client_id) +18:11:13.580 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.580 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.580 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.580 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.580 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.585 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.585 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.586 [XNIO-1 task-2] dAPYg5jkRMOBdQPOEknSxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Q-Ngehb4RcWLyByjdi7RQg +18:11:13.587 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.587 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.588 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.588 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.589 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.589 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.589 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.589 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.595 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.595 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.595 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.595 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.595 [XNIO-1 task-2] -CuT5egURZu7_eJ3sSJJkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.595 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG com.networknt.schema.TypeValidator debug - validate( "azEVn8dvAS2RYzsc4I2VsOsRxDkcwNLwgRPRjqq2cyw", "azEVn8dvAS2RYzsc4I2VsOsRxDkcwNLwgRPRjqq2cyw", code_challenge) +18:11:13.595 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:13.595 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.595 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.596 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.596 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.596 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.601 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:47e86f7c +18:11:13.603 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.603 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.603 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.604 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:13.604 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.604 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.604 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.604 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.604 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.605 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.605 [XNIO-1 task-1] yRkzJ5s6TmagxaZeuCVsag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.610 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.610 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.613 [XNIO-1 task-2] W7erAgh-R9Srt5ZxxTOw5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dVQ_2g8wTSSOnVI72Xt0Xw +18:11:13.620 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.620 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.620 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.620 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.621 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.621 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.621 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.621 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.627 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.627 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.628 [XNIO-1 task-2] 5zxCJyR3SHiMOasFww6wrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ex9nCwZUSUmGu87tNqCdyA +18:11:13.635 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.635 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.635 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.635 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.635 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.636 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.636 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.636 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.643 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.643 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.644 [XNIO-1 task-2] cHFOW8UvTnqij4FJL5lRKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2JUN2ZY8TOm16v7IDGvJ8A +18:11:13.652 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.652 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.652 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.653 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.653 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.654 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.654 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.654 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.657 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5f4d5597 +18:11:13.658 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5f4d5597 +18:11:13.659 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.659 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.659 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.659 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG com.networknt.schema.TypeValidator debug - validate( "33b46ac9-94ce-4b45-bddd-8e6345a5c120", "33b46ac9-94ce-4b45-bddd-8e6345a5c120", client_id) +18:11:13.659 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.659 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.660 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.660 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.660 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.660 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.661 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.661 [XNIO-1 task-2] Zwk3YI4tSwOGw0n9RK3lUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hKhJ_uv0QbazwuEDtsSWXQ +18:11:13.668 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.668 [XNIO-1 task-1] KELVQvypQQ2xmWWYTI1sDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.672 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5f4d5597 +18:11:13.688 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:505a1577 +18:11:13.689 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:505a1577 +18:11:13.694 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.694 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.695 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.695 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", "78f5ba2a-ad49-439f-94c4-f5ec7a8143a3", client_id) +18:11:13.695 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.695 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.695 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.695 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.695 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.696 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3e8d98f6 +18:11:13.698 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3e8d98f6 +18:11:13.703 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.703 [XNIO-1 task-1] _r_nH_B8Szm3ci6ZoWvWgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.708 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.716 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.716 [XNIO-1 task-1] yA_l6F60SKGZcju-aZmLgA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.719 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.719 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.719 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.719 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:13.719 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.720 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.720 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.720 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.720 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.726 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.726 [XNIO-1 task-1] 5cOLGjfbQGSVZeTPIUwpFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.726 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:505a1577 +18:11:13.730 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.730 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.730 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.730 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "e9cc735d-98c2-47be-b52d-afde63ea0a28", "e9cc735d-98c2-47be-b52d-afde63ea0a28", client_id) +18:11:13.730 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.731 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.731 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.731 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.731 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.737 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.737 [XNIO-1 task-1] gjV7wAaDQhaF5LsDeVoRXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.752 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4cd47e50 +18:11:13.767 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.767 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.768 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.768 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5f4d5597 +18:11:13.768 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "189be668-1096-4401-ba2c-7e0ee55cdae8", "189be668-1096-4401-ba2c-7e0ee55cdae8", client_id) +18:11:13.768 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.769 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.769 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.769 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.769 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.775 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.775 [XNIO-1 task-1] FFJXmjicSyu6vFBhQfKMSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.777 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3aa9e04e +18:11:13.778 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3aa9e04e +18:11:13.783 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.783 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.783 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.783 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.783 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.783 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.783 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.784 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.789 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.789 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.789 [XNIO-1 task-1] itadJ4wTQfyPrYarV39H5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YvUckQ1URzKnTHFsw7DKNg +18:11:13.795 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.795 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.795 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.795 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d0c9b04a-54a0-410c-af3a-cb3c7eef1989 +18:11:13.795 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:13.795 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.795 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.796 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.796 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.796 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.802 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.802 [XNIO-1 task-1] TgQB_b42Sx21DqgeuIsZrA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.817 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5f4d5597 +18:11:13.818 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d0c9b04a-54a0-410c-af3a-cb3c7eef1989 +18:11:13.824 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3aa9e04e +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.827 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.832 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.833 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.834 [XNIO-1 task-1] xLjLlPeNSdCxlAJDNjVwNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FlDMvwk5TyWNy-yv53kfcw +18:11:13.850 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8a1a9c49-2269-4d92-afbc-178a9b5f41c2 +18:11:13.851 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5f4d5597 +18:11:13.869 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f19ebbc5 +18:11:13.874 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cd45e22b-ab9f-46e6-ae90-60fb39dc8d30 +18:11:13.875 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cd45e22b-ab9f-46e6-ae90-60fb39dc8d30 +18:11:13.882 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.882 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.882 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.882 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG com.networknt.schema.TypeValidator debug - validate( "f1fbe66e-d350-47c0-8c97-32e571140e28", "f1fbe66e-d350-47c0-8c97-32e571140e28", client_id) +18:11:13.882 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.882 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.883 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.883 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.883 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.884 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f19ebbc5 +18:11:13.889 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.889 [XNIO-1 task-1] uNKcaqdTTQeRW7D1TOjLgg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.894 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:cd45e22b-ab9f-46e6-ae90-60fb39dc8d30 +18:11:13.909 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.909 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.909 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.909 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "2005f998-9589-4882-a208-78ae3d4eae1f", "2005f998-9589-4882-a208-78ae3d4eae1f", client_id) +18:11:13.909 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.910 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.910 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.910 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.910 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.920 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.920 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.932 [XNIO-1 task-1] gToghlv1SSG9ZClj7VI_Ag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6_pG77unRqCj0Gixxd9tbg +18:11:13.938 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8fee7958 +18:11:13.938 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.939 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.939 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.939 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.939 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.939 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.939 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:13.939 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.939 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Y5UejuToUAbRAm06y8brq59kueJSBqBgEEUegfXU1xM", "Y5UejuToUAbRAm06y8brq59kueJSBqBgEEUegfXU1xM", code_challenge) +18:11:13.939 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.939 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.939 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:13.940 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.940 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.940 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.940 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.940 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.940 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.945 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.945 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.946 [XNIO-1 task-1] Ge9lhT18SwiwPUUv6uMDzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CTivRJD_RH6CGXSXgq5OTQ +18:11:13.950 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.950 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.954 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.957 [XNIO-1 task-2] 9oGh22GbQb624KlkUdXEOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cZ-ne6mmTLykaP0ETamooA +18:11:13.959 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.960 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.960 [XNIO-1 task-1] O6XK423kQpW9rn2HSy9Phw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=R3S1Vx91QOeccV4zCZEA3Q +18:11:13.962 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe92d06-3243-4d42-9e59-f99e40199333", "0fe92d06-3243-4d42-9e59-f99e40199333", client_id) +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:13.963 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:13.966 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.966 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:13.966 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:13.966 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c6335ab2-26c5-48ff-be08-002490169e76 +18:11:13.966 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:13.966 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:13.966 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:13.969 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:13.969 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:13.969 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:13.973 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:13.973 [XNIO-1 task-1] WHc-56KlR0uGO4dtHg0cmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:13.980 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:13.980 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:13.982 [XNIO-1 task-2] tqEW41SbRB2cFD6Bgqi4rg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hw2U9cspRbu9esnWt_4IRw +18:11:14.013 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.013 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.013 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.014 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:14.014 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.014 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.014 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.014 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.014 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.021 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.021 [XNIO-1 task-2] 3xuDM4NuQ7uczt_QtV0-6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.050 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG com.networknt.schema.TypeValidator debug - validate( "IX5hQd0dsbNt7tt77h79qoLAr-RmKdiYM29O79tf49g", "IX5hQd0dsbNt7tt77h79qoLAr-RmKdiYM29O79tf49g", code_challenge) +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.051 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.052 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.058 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.058 [XNIO-1 task-2] kQZjpjCbSZ2LB_N9gr8Xbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.066 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.066 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.066 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.067 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG com.networknt.schema.TypeValidator debug - validate( "x5T3uOc96gRqyFBjQzAkvmiOATlGJGnPIUCV2y3n00o", "x5T3uOc96gRqyFBjQzAkvmiOATlGJGnPIUCV2y3n00o", code_challenge) +18:11:14.067 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.067 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.067 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.067 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.067 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.067 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.073 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.074 [XNIO-1 task-2] sKr3-6T4Qam1PhwTPsijfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.081 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.081 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.081 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.081 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG com.networknt.schema.TypeValidator debug - validate( "_Kp790__T9i6LXbtt7m-jlVx9sh0WY4HrqJ6dDRqpuk", "_Kp790__T9i6LXbtt7m-jlVx9sh0WY4HrqJ6dDRqpuk", code_challenge) +18:11:14.082 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.082 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.082 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.082 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.082 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.082 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.087 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.088 [XNIO-1 task-2] B6Ufr7aATL24DlzfEBCl4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.089 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e880b9aa-d16a-4882-a1c1-634625251a4e +18:11:14.091 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e880b9aa-d16a-4882-a1c1-634625251a4e +18:11:14.100 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0bbba14-2d48-4c96-8bd8-dff2a06061a2 +18:11:14.116 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b0bbba14-2d48-4c96-8bd8-dff2a06061a2 +18:11:14.128 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.128 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.128 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.128 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.129 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.129 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.129 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.129 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.129 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6718d3d +18:11:14.131 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6718d3d +18:11:14.138 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.138 [XNIO-1 task-2] V0t-jTBgTkGIYt-7lRNuhw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.146 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.146 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.146 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.147 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG com.networknt.schema.TypeValidator debug - validate( "90017f46-d638-44eb-8c45-4953fc135f8f", "90017f46-d638-44eb-8c45-4953fc135f8f", client_id) +18:11:14.147 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.147 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.147 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.147 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.147 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.153 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.153 [XNIO-1 task-2] Rj8pTU2rQ9y9bkFPq6NdfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.156 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3e8d98f6 +18:11:14.184 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.185 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.185 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.185 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "90017f46-d638-44eb-8c45-4953fc135f8f", "90017f46-d638-44eb-8c45-4953fc135f8f", client_id) +18:11:14.185 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.186 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.186 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.186 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.186 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.191 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.191 [XNIO-1 task-2] LPL03xkSQoG8-NZFG3bq0A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.193 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG com.networknt.schema.TypeValidator debug - validate( "BNfpkyCJ076-36-eowHM7kFjY2N0ekb-p05onZue_1s", "BNfpkyCJ076-36-eowHM7kFjY2N0ekb-p05onZue_1s", code_challenge) +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.194 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.195 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.202 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.202 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.203 [XNIO-1 task-1] WqdAkfUbQomdh0qfvYAO2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ie1EYtThR6OibY0x_y3fsw +18:11:14.204 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.205 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.205 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.205 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.205 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.205 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.205 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.206 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.208 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG com.networknt.schema.TypeValidator debug - validate( "HKeJJqxODtxAVeQGUongzRVc5IA-xZ-LaFmwKRIKIPQ", "HKeJJqxODtxAVeQGUongzRVc5IA-xZ-LaFmwKRIKIPQ", code_challenge) +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.209 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.210 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.212 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.212 [XNIO-1 task-2] P01aluKzQKGuTowthr2pqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.216 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.216 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.217 [XNIO-1 task-1] rWIILVmlRbiyKsI9d2uMSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MMo_jPbOSh6C5xi1b7ujQA +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6335ab2-26c5-48ff-be08-002490169e76", "c6335ab2-26c5-48ff-be08-002490169e76", client_id) +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.225 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.232 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.232 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.236 [XNIO-1 task-1] V9im8zNMRwejInrr8H4XaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pJ15tlLpQf-CYR8ERG6N8g +18:11:14.243 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.243 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.243 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.244 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6335ab2-26c5-48ff-be08-002490169e76", "c6335ab2-26c5-48ff-be08-002490169e76", client_id) +18:11:14.244 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.244 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.244 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.244 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.244 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.249 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3e8d98f6 +18:11:14.250 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.251 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.251 [XNIO-1 task-1] SBiIlnWwRWOp32jcLTuvTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lsXVeWPIQi-mgi3vCkuVRw +18:11:14.258 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.258 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.258 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.258 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.258 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.258 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.258 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.259 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.264 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.264 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.265 [XNIO-1 task-1] ae5y3SXpRbm9wF5-j4PZPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BvmvO-ZSTrmjhK6ugxQDzg +18:11:14.268 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.268 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.268 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.269 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.269 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.269 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.269 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.269 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.275 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.275 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.276 [XNIO-1 task-1] -lOJjUBtTOCdvMVl20PE1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kGLpltdpSHKkL5jfNm4TnQ +18:11:14.286 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.286 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.286 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.286 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG com.networknt.schema.TypeValidator debug - validate( "f1fbe66e-d350-47c0-8c97-32e571140e28", "f1fbe66e-d350-47c0-8c97-32e571140e28", client_id) +18:11:14.286 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.287 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.287 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.287 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.287 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.293 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.293 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.293 [XNIO-1 task-1] PKaI1b1GSSaSXXvu7JIQCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hLG1QZrNRda3KOzM3D5lCw +18:11:14.342 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:09dccec5-10b9-4831-86dd-defb67b8341a +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG com.networknt.schema.TypeValidator debug - validate( "jMRLIDWY36L_TgIQGUljiZbHkd4pVnIc4GDK4rquO2I", "jMRLIDWY36L_TgIQGUljiZbHkd4pVnIc4GDK4rquO2I", code_challenge) +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.354 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.355 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.355 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.360 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.360 [XNIO-1 task-1] A1Abtzo-Q5mXnEoryKCNEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.366 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.366 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.366 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.366 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG com.networknt.schema.TypeValidator debug - validate( "1Ik6vvOiqzNtg0x6XDW7XsMu_Dk9-RYp5XcNrWKbO40", "1Ik6vvOiqzNtg0x6XDW7XsMu_Dk9-RYp5XcNrWKbO40", code_challenge) +18:11:14.366 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.366 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.367 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.367 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.367 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.367 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.372 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.372 [XNIO-1 task-1] M5Vybw06QMWgKn54xbHXag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.374 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.374 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.374 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.374 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "189be668-1096-4401-ba2c-7e0ee55cdae8", "189be668-1096-4401-ba2c-7e0ee55cdae8", client_id) +18:11:14.374 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.374 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.374 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.375 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.376 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.380 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.380 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.380 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.380 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1b4cad05-e2ca-4c8d-b65c-7ad334341707", "1b4cad05-e2ca-4c8d-b65c-7ad334341707", client_id) +18:11:14.380 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.380 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.380 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.381 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.381 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.381 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.381 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.382 [XNIO-1 task-1] 94U4rc1gTASqwwjSwc11ZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ToJ72v3IST2l93bb-onZ7Q +18:11:14.383 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ac1b06d5-9ea5-4bd9-accc-e85957d41ca0 +18:11:14.385 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.386 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.386 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.386 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.386 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.386 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG com.networknt.schema.TypeValidator debug - validate( "26011cb1-ab2b-4483-ae1d-31b0c45d67bf", "26011cb1-ab2b-4483-ae1d-31b0c45d67bf", client_id) +18:11:14.387 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.387 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.387 [XNIO-1 task-2] 9CWIiQaPTdSkNLg-TXgKEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rlu7xTgMR4i8xauwJ4bIRg +18:11:14.387 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.387 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.392 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.392 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.392 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.392 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG com.networknt.schema.TypeValidator debug - validate( "m4IiR55B3djQxJPcjZ2g5SSEzXMon8I9zV-Ff18Guqs", "m4IiR55B3djQxJPcjZ2g5SSEzXMon8I9zV-Ff18Guqs", code_challenge) +18:11:14.392 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:11:14.393 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.393 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.393 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.393 [XNIO-1 task-1] S1T44lIXSuWl6juO7T4EKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.393 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.393 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.393 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.399 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.399 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.401 [XNIO-1 task-2] STYh8CDqS_a71ixVXe-ThQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DhwroeNBQ1m04i0AY_oeOg +18:11:14.406 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.406 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.406 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.406 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b4cad05-e2ca-4c8d-b65c-7ad334341707", "1b4cad05-e2ca-4c8d-b65c-7ad334341707", client_id) +18:11:14.407 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.407 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.407 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.407 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.407 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.437 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.437 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.441 [XNIO-1 task-2] HHjllTrlSs2kM8zdintTeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=37pwiJReQXS5qJS8otY-1w +18:11:14.451 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.452 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.453 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.453 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8a1a9c49-2269-4d92-afbc-178a9b5f41c2", "8a1a9c49-2269-4d92-afbc-178a9b5f41c2", client_id) +18:11:14.453 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.453 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.453 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.453 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.453 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.460 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.460 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.460 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.460 [XNIO-1 task-2] gyF7luQRT_K5Bh8u9CVtSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9gy6CyWtRG61GFSQXHMnEA +18:11:14.482 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7a16b379-5dcc-442d-9d1e-b6017dfe5905 +18:11:14.501 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.501 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.501 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.502 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:14.502 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.502 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.502 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.502 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.502 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.508 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.508 [XNIO-1 task-2] Y-9C0dZlQaG-qXMCCcn8CQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.514 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3aa9e04e +18:11:14.517 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5eab9bb6-a25f-4ea7-8671-185f0b875573", "5eab9bb6-a25f-4ea7-8671-185f0b875573", client_id) +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.518 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.530 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.531 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.532 [XNIO-1 task-2] z5x5akVWRJCk1aXcSIvWpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XfoUh41SQ7qgv5RSrvgN1A +18:11:14.538 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.539 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.539 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.539 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:364c0c63 +18:11:14.539 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.539 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.539 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.539 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.540 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.542 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:364c0c63 +18:11:14.546 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.546 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.548 [XNIO-1 task-2] U-Kq7M7tR1yerGR4It8V0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hn7xJfxeSBamSkq_Dj9OUA +18:11:14.574 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.574 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.574 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.575 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.575 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.575 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.575 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.575 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.581 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.582 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.583 [XNIO-1 task-2] wJyRViU1RRuQyVbumrOmWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w-ieyDRjQMWnw-rD52O5Qg +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b4cad05-e2ca-4c8d-b65c-7ad334341707", "1b4cad05-e2ca-4c8d-b65c-7ad334341707", client_id) +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.591 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.592 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.600 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.601 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.602 [XNIO-1 task-2] seOF-xbASUqCcerDa_bYNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CjcYkAyqQ2W8i0Zs05cfoA +18:11:14.609 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.609 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.609 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.610 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG com.networknt.schema.TypeValidator debug - validate( "05c3a87e-4d10-4eb9-ba6c-72235ab117b0", "05c3a87e-4d10-4eb9-ba6c-72235ab117b0", client_id) +18:11:14.610 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.610 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.610 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.610 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.610 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.614 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.614 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.614 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.614 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG com.networknt.schema.TypeValidator debug - validate( "90017f46-d638-44eb-8c45-4953fc135f8f", "90017f46-d638-44eb-8c45-4953fc135f8f", client_id) +18:11:14.615 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:11:14.615 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.615 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:11:14.615 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:11:14.615 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:11:14.616 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.616 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.618 [XNIO-1 task-2] kLYVUcBcQFez26k3gNGSkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GOobYfdpQbO6oh944e2iWw +18:11:14.622 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.622 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.622 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.622 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe92d06-3243-4d42-9e59-f99e40199333", "0fe92d06-3243-4d42-9e59-f99e40199333", client_id) +18:11:14.622 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.622 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.622 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.622 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:11:14.622 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.623 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.623 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.623 [XNIO-1 task-1] CR_HdTcsRseFULnFxxvi2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iiN0rJsnT_yGDTkTGsRseg +18:11:14.626 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.626 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.626 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.627 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.627 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.627 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.627 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.627 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.629 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.629 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.630 [XNIO-1 task-2] mSmCTChBQnukG-6d_96ZJg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QcCzTG4HQeG6a5jtudil_A +18:11:14.633 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:11:14.633 [XNIO-1 task-1] j6sSz0X3R5WoKnUyDdy9pA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.639 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:debf5b62 +18:11:14.640 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.640 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.640 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:debf5b62 +18:11:14.641 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.641 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.641 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.641 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.641 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.641 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.648 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.648 [XNIO-1 task-1] piCnhh9ES164AVl-6Zs32Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.648 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:debf5b62 +18:11:14.651 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7e62bbad-a8ef-4944-882b-b12ed294a4d2 +18:11:14.652 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7e62bbad-a8ef-4944-882b-b12ed294a4d2 +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:11:14.655 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:11:14.661 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:11:14.661 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:11:14.661 [XNIO-1 task-1] hKlUdizWRmy82H0F_QYtUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:11:14.661 [XNIO-1 task-2] HL1YR0qqTtCTE6ikLen0_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:11:14.661 [XNIO-1 task-2] HL1YR0qqTtCTE6ikLen0_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:11:14.662 [XNIO-1 task-2] HL1YR0qqTtCTE6ikLen0_g DEBUG com.networknt.schema.TypeValidator debug - validate( "cF017QAkXl7h0Ut4yaGSrtYZBxkiZS76i-DG_4cwRHI", "cF017QAkXl7h0Ut4yaGSrtYZBxkiZS76i-DG_4cwRHI", code_challenge) +18:11:14.662 [XNIO-1 task-2] HL1YR0qqTtCTE6ikLen0_g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) diff --git a/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..dd3b9ae --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-key-1.log @@ -0,0 +1,144 @@ +18:11:10.790 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7666eb5 +18:11:10.794 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7666eb5 +18:11:10.882 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7666eb5 +18:11:10.902 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1842a63f-e6b2-434d-8048-8062b7e04f0b +18:11:10.907 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:41dbee4f +18:11:10.907 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d0e62944-e987-486e-a305-5d04bac34f32 +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:11:10.913 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:10.946 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:11875003 +18:11:10.953 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:aa752524-2adc-4cbb-9c49-b258bc30a4a4 +18:11:10.966 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:11875003 +18:11:10.966 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e10e0553-7157-4149-ae1a-525f3cbac6e2 +18:11:10.976 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:11875003 +18:11:11.061 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d0e62944-e987-486e-a305-5d04bac34f32 +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:11.126 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8e4dca7d +18:11:11.128 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9b04841f-e4db-4db4-9954-bbf0124baf37 +18:11:11.136 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8e4dca7d +18:11:11.150 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:41dbee4f +18:11:11.208 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1fcf6838 +18:11:11.366 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1fcf6838 +18:11:11.668 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd +18:11:11.707 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd +18:11:13.505 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:18ca0147 +18:11:13.507 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:18ca0147 +18:11:13.523 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a8389390 +18:11:13.535 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:79fcedff-297b-4861-978b-e5a43a7c5b4e +18:11:13.575 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7f435e40 +18:11:13.608 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:75c8ebd8 +18:11:13.608 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:75c8ebd8 +18:11:13.623 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f973a38e +18:11:13.655 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f973a38e +18:11:13.663 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f973a38e +18:11:13.750 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:deaac363-be50-4c71-8139-7cfe3cf57c4d +18:11:13.751 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:deaac363-be50-4c71-8139-7cfe3cf57c4d +18:11:13.754 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b26321a-5573-4796-adcb-812f0d19a260 +18:11:13.786 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:18ca0147 +18:11:13.826 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:70e56e83-36f9-46c8-be3f-cb3f933297db +18:11:13.827 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:70e56e83-36f9-46c8-be3f-cb3f933297db +18:11:13.850 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d3fe6a2c-8036-4b2f-9453-3f68607608b3 +18:11:13.861 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:08c9f199-b4d7-43b6-8b8a-89aab720d4b4 +18:11:13.862 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:08c9f199-b4d7-43b6-8b8a-89aab720d4b4 +18:11:13.902 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e781b308-63ce-4b39-99f0-91673bb99440 +18:11:13.903 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e781b308-63ce-4b39-99f0-91673bb99440 +18:11:13.943 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b26321a-5573-4796-adcb-812f0d19a260 +18:11:13.958 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b7666eb5 +18:11:14.002 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5d0d5c62-522d-4c01-ac7f-0fbf81fbc0a0 +18:11:14.035 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f973a38e +18:11:14.117 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:974538ac-f8be-4c1b-9314-b9d9c0c80926 +18:11:14.118 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:974538ac-f8be-4c1b-9314-b9d9c0c80926 +18:11:14.146 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7f435e40 +18:11:14.220 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b4daa126 +18:11:14.230 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7f435e40 +18:11:14.290 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7bdc542d-08f5-41eb-852e-54b14368bf2d +18:11:14.298 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:75c8ebd8 +18:11:14.310 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:95c2138c-3a0f-4e0a-9105-deee033ed57c +18:11:14.322 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7bdc542d-08f5-41eb-852e-54b14368bf2d +18:11:14.339 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7bdc542d-08f5-41eb-852e-54b14368bf2d +18:11:14.459 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b8a0095e-85b5-4ca2-ae50-72d5618a091a +18:11:14.471 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b8a0095e-85b5-4ca2-ae50-72d5618a091a +18:11:14.477 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b4daa126 +18:11:14.477 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:27269bbb-67e1-47a5-a979-90d2a4891eb6 +18:11:14.491 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:25eccf14 +18:11:14.532 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d642d4c2-988c-4c5d-b00c-d7a4c3568bd7 +18:11:14.532 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d642d4c2-988c-4c5d-b00c-d7a4c3568bd7 +18:11:14.537 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a1d4722e-396d-49b3-b041-fb13b20c4f8d +18:11:14.539 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:75c8ebd8 +18:11:14.642 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:27269bbb-67e1-47a5-a979-90d2a4891eb6 +18:11:14.670 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:25eccf14 +18:11:14.696 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a1d4722e-396d-49b3-b041-fb13b20c4f8d +18:11:14.716 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:651c3e24-c72d-4118-9a5c-6394918ee4cf +18:11:14.726 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6a6039f1-9b9a-40dd-8d42-827bb7671360 +18:11:14.807 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8f47f571-0103-41a4-905f-3c804a4f37a6 +18:11:14.811 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8f47f571-0103-41a4-905f-3c804a4f37a6 +18:11:14.881 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0000fe9a +18:11:14.891 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9ad620c7-2a2a-494e-b3a2-2a023ec48e6e +18:11:14.892 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9ad620c7-2a2a-494e-b3a2-2a023ec48e6e +18:11:14.911 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d87ecf2e +18:11:14.912 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d87ecf2e +18:11:14.952 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4081be1d +18:11:14.975 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4081be1d +18:11:14.989 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d87ecf2e +18:11:14.991 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:364d0eef-16c4-417d-9654-e0b802fffb6f diff --git a/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..c6cf360 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,2916 @@ + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:09.946 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:09.984 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:372fb0bf-cec4-4f10-9f10-321d74f3afdd +18:11:09.988 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:452feeb6 +18:11:10.002 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a9faf30b +18:11:10.003 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a9faf30b +18:11:10.064 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3b71b9c9 +18:11:10.071 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:59722285-9baf-4e7f-acd2-2b7df907d351 +18:11:10.102 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c2dcb0eb +18:11:10.129 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a9faf30b +18:11:10.211 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a9faf30b +18:11:10.216 [XNIO-1 task-1] 1pzyf9IBSVeEsWsVvJENFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.216 [XNIO-1 task-1] 1pzyf9IBSVeEsWsVvJENFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.216 [XNIO-1 task-1] 1pzyf9IBSVeEsWsVvJENFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.216 [XNIO-1 task-1] 1pzyf9IBSVeEsWsVvJENFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.216 [XNIO-1 task-1] 1pzyf9IBSVeEsWsVvJENFg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.246 [XNIO-1 task-1] yRqiKfq3TqGknYUGqEucPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d, base path is set to: null +18:11:10.247 [XNIO-1 task-1] yRqiKfq3TqGknYUGqEucPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.247 [XNIO-1 task-1] yRqiKfq3TqGknYUGqEucPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.247 [XNIO-1 task-1] yRqiKfq3TqGknYUGqEucPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d, base path is set to: null +18:11:10.247 [XNIO-1 task-1] yRqiKfq3TqGknYUGqEucPw DEBUG com.networknt.schema.TypeValidator debug - validate( "36522af1-aa08-4774-87e2-ef0aa95f613d", "36522af1-aa08-4774-87e2-ef0aa95f613d", refreshToken) +18:11:10.249 [XNIO-1 task-1] yRqiKfq3TqGknYUGqEucPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 36522af1-aa08-4774-87e2-ef0aa95f613d is not found.","severity":"ERROR"} +18:11:10.253 [XNIO-1 task-1] XPGc9wfrTzWgA8f5to6dug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.253 [XNIO-1 task-1] XPGc9wfrTzWgA8f5to6dug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.253 [XNIO-1 task-1] XPGc9wfrTzWgA8f5to6dug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.254 [XNIO-1 task-1] XPGc9wfrTzWgA8f5to6dug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.254 [XNIO-1 task-1] XPGc9wfrTzWgA8f5to6dug DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:10.301 [XNIO-1 task-1] YrPBbVMtTUmd-zBWWgglpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.301 [XNIO-1 task-1] YrPBbVMtTUmd-zBWWgglpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.301 [XNIO-1 task-1] YrPBbVMtTUmd-zBWWgglpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.301 [XNIO-1 task-1] YrPBbVMtTUmd-zBWWgglpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.301 [XNIO-1 task-1] YrPBbVMtTUmd-zBWWgglpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.303 [XNIO-1 task-1] V2UPo5T_T-qcEtMFboyV8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d, base path is set to: null +18:11:10.304 [XNIO-1 task-1] V2UPo5T_T-qcEtMFboyV8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.304 [XNIO-1 task-1] V2UPo5T_T-qcEtMFboyV8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.304 [XNIO-1 task-1] V2UPo5T_T-qcEtMFboyV8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d, base path is set to: null +18:11:10.304 [XNIO-1 task-1] V2UPo5T_T-qcEtMFboyV8g DEBUG com.networknt.schema.TypeValidator debug - validate( "36522af1-aa08-4774-87e2-ef0aa95f613d", "36522af1-aa08-4774-87e2-ef0aa95f613d", refreshToken) +18:11:10.304 [XNIO-1 task-1] V2UPo5T_T-qcEtMFboyV8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 36522af1-aa08-4774-87e2-ef0aa95f613d is not found.","severity":"ERROR"} +18:11:10.306 [XNIO-1 task-1] 0iwaQkdZS4WEEuP8GnTOHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.306 [XNIO-1 task-1] 0iwaQkdZS4WEEuP8GnTOHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.306 [XNIO-1 task-1] 0iwaQkdZS4WEEuP8GnTOHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.306 [XNIO-1 task-1] 0iwaQkdZS4WEEuP8GnTOHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.306 [XNIO-1 task-1] 0iwaQkdZS4WEEuP8GnTOHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 36522af1-aa08-4774-87e2-ef0aa95f613d +18:11:10.308 [XNIO-1 task-1] UXrdZwiJQziFyk5nErPuJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.308 [XNIO-1 task-1] UXrdZwiJQziFyk5nErPuJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.308 [XNIO-1 task-1] UXrdZwiJQziFyk5nErPuJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.308 [XNIO-1 task-1] UXrdZwiJQziFyk5nErPuJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.309 [XNIO-1 task-1] UXrdZwiJQziFyk5nErPuJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", refreshToken) +18:11:10.311 [XNIO-1 task-1] _b1cJVTZQVu6QvO8SQ0d7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.311 [XNIO-1 task-1] _b1cJVTZQVu6QvO8SQ0d7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.311 [XNIO-1 task-1] _b1cJVTZQVu6QvO8SQ0d7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.311 [XNIO-1 task-1] _b1cJVTZQVu6QvO8SQ0d7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.311 [XNIO-1 task-1] _b1cJVTZQVu6QvO8SQ0d7w DEBUG com.networknt.schema.TypeValidator debug - validate( "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", refreshToken) +18:11:10.313 [XNIO-1 task-1] AVoh9tEgTbith8Fov3L_kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.313 [XNIO-1 task-1] AVoh9tEgTbith8Fov3L_kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.313 [XNIO-1 task-1] AVoh9tEgTbith8Fov3L_kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.313 [XNIO-1 task-1] AVoh9tEgTbith8Fov3L_kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.313 [XNIO-1 task-1] AVoh9tEgTbith8Fov3L_kA DEBUG com.networknt.schema.TypeValidator debug - validate( "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", refreshToken) +18:11:10.316 [XNIO-1 task-1] uq8y6NZ2R6yLYRHrWmVJFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.316 [XNIO-1 task-1] uq8y6NZ2R6yLYRHrWmVJFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.316 [XNIO-1 task-1] uq8y6NZ2R6yLYRHrWmVJFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.316 [XNIO-1 task-1] uq8y6NZ2R6yLYRHrWmVJFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.316 [XNIO-1 task-1] uq8y6NZ2R6yLYRHrWmVJFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", refreshToken) +18:11:10.323 [XNIO-1 task-1] 6c5fDdYVQVW9moyFB92MXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.323 [XNIO-1 task-1] 6c5fDdYVQVW9moyFB92MXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.323 [XNIO-1 task-1] 6c5fDdYVQVW9moyFB92MXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.323 [XNIO-1 task-1] 6c5fDdYVQVW9moyFB92MXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.323 [XNIO-1 task-1] 6c5fDdYVQVW9moyFB92MXA DEBUG com.networknt.schema.TypeValidator debug - validate( "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", refreshToken) +18:11:10.325 [XNIO-1 task-1] 6c5fDdYVQVW9moyFB92MXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 is not found.","severity":"ERROR"} +18:11:10.329 [XNIO-1 task-1] JWHgfkoERnSTciT5iXj4-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.329 [XNIO-1 task-1] JWHgfkoERnSTciT5iXj4-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.329 [XNIO-1 task-1] JWHgfkoERnSTciT5iXj4-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.330 [XNIO-1 task-1] JWHgfkoERnSTciT5iXj4-A ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.332 [XNIO-1 task-1] ab6DRcKmThmTwnp2UVwjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.332 [XNIO-1 task-1] ab6DRcKmThmTwnp2UVwjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.332 [XNIO-1 task-1] ab6DRcKmThmTwnp2UVwjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.332 [XNIO-1 task-1] ab6DRcKmThmTwnp2UVwjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.332 [XNIO-1 task-1] ab6DRcKmThmTwnp2UVwjmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.335 [XNIO-1 task-1] fw2S1kvsRw-DqTUefiIQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 +18:11:10.335 [XNIO-1 task-1] fw2S1kvsRw-DqTUefiIQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.335 [XNIO-1 task-1] fw2S1kvsRw-DqTUefiIQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.335 [XNIO-1 task-1] fw2S1kvsRw-DqTUefiIQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 +18:11:10.335 [XNIO-1 task-1] fw2S1kvsRw-DqTUefiIQeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 +18:11:10.337 [XNIO-1 task-1] sZzf18gDTaehDaCTxfxi7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.337 [XNIO-1 task-1] sZzf18gDTaehDaCTxfxi7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.337 [XNIO-1 task-1] sZzf18gDTaehDaCTxfxi7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.337 [XNIO-1 task-1] sZzf18gDTaehDaCTxfxi7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.337 [XNIO-1 task-1] sZzf18gDTaehDaCTxfxi7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.339 [XNIO-1 task-1] hqWsL8iSTt-DF36drvH1vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.339 [XNIO-1 task-1] hqWsL8iSTt-DF36drvH1vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.339 [XNIO-1 task-1] hqWsL8iSTt-DF36drvH1vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.340 [XNIO-1 task-1] hqWsL8iSTt-DF36drvH1vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1, base path is set to: null +18:11:10.340 [XNIO-1 task-1] hqWsL8iSTt-DF36drvH1vw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", "c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1", refreshToken) +18:11:10.340 [XNIO-1 task-1] hqWsL8iSTt-DF36drvH1vw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0f31c76-fdd6-4c1f-a9aa-4b64f6dc7ce1 is not found.","severity":"ERROR"} +18:11:10.343 [XNIO-1 task-1] Xn0YO2UcRMa2voyLjDdQhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.343 [XNIO-1 task-1] Xn0YO2UcRMa2voyLjDdQhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.343 [XNIO-1 task-1] Xn0YO2UcRMa2voyLjDdQhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.343 [XNIO-1 task-1] Xn0YO2UcRMa2voyLjDdQhw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.405 [XNIO-1 task-1] ElMJJpjERLWy5-q0GcoHfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.405 [XNIO-1 task-1] ElMJJpjERLWy5-q0GcoHfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.405 [XNIO-1 task-1] ElMJJpjERLWy5-q0GcoHfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.405 [XNIO-1 task-1] ElMJJpjERLWy5-q0GcoHfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.406 [XNIO-1 task-1] ElMJJpjERLWy5-q0GcoHfg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.408 [XNIO-1 task-1] SoxY1KD8To6gb2T6JvvHeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.408 [XNIO-1 task-1] SoxY1KD8To6gb2T6JvvHeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.408 [XNIO-1 task-1] SoxY1KD8To6gb2T6JvvHeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.408 [XNIO-1 task-1] SoxY1KD8To6gb2T6JvvHeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.408 [XNIO-1 task-1] SoxY1KD8To6gb2T6JvvHeA DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.424 [XNIO-1 task-1] 8Ql_KtdKTM2l3qT7yiv_zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.424 [XNIO-1 task-1] 8Ql_KtdKTM2l3qT7yiv_zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.424 [XNIO-1 task-1] 8Ql_KtdKTM2l3qT7yiv_zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.425 [XNIO-1 task-1] 8Ql_KtdKTM2l3qT7yiv_zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.425 [XNIO-1 task-1] 8Ql_KtdKTM2l3qT7yiv_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.426 [XNIO-1 task-1] 8Ql_KtdKTM2l3qT7yiv_zA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.429 [XNIO-1 task-1] eLntI99TT4mz0OfCOWF8hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.429 [XNIO-1 task-1] eLntI99TT4mz0OfCOWF8hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.429 [XNIO-1 task-1] eLntI99TT4mz0OfCOWF8hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.429 [XNIO-1 task-1] eLntI99TT4mz0OfCOWF8hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.429 [XNIO-1 task-1] eLntI99TT4mz0OfCOWF8hQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.432 [XNIO-1 task-1] h1UVJQX1S-u9qVC2oYIRiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.432 [XNIO-1 task-1] h1UVJQX1S-u9qVC2oYIRiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.432 [XNIO-1 task-1] h1UVJQX1S-u9qVC2oYIRiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.432 [XNIO-1 task-1] h1UVJQX1S-u9qVC2oYIRiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.432 [XNIO-1 task-1] h1UVJQX1S-u9qVC2oYIRiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.432 [XNIO-1 task-1] h1UVJQX1S-u9qVC2oYIRiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.436 [XNIO-1 task-1] cg8M0FAkQVyGHFBfF3tUNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.436 [XNIO-1 task-1] cg8M0FAkQVyGHFBfF3tUNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.436 [XNIO-1 task-1] cg8M0FAkQVyGHFBfF3tUNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.436 [XNIO-1 task-1] cg8M0FAkQVyGHFBfF3tUNA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.461 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:071403cf-9841-491a-9824-8eb104b9e409 +18:11:10.464 [XNIO-1 task-1] 2SGUsUPPSheiy8Bwo6My7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.464 [XNIO-1 task-1] 2SGUsUPPSheiy8Bwo6My7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.464 [XNIO-1 task-1] 2SGUsUPPSheiy8Bwo6My7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.465 [XNIO-1 task-1] 2SGUsUPPSheiy8Bwo6My7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.465 [XNIO-1 task-1] 2SGUsUPPSheiy8Bwo6My7w DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.465 [XNIO-1 task-1] 2SGUsUPPSheiy8Bwo6My7w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.477 [XNIO-1 task-1] ryVtLU9BQkKcPBBv6CtyVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.477 [XNIO-1 task-1] ryVtLU9BQkKcPBBv6CtyVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.477 [XNIO-1 task-1] ryVtLU9BQkKcPBBv6CtyVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.477 [XNIO-1 task-1] ryVtLU9BQkKcPBBv6CtyVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.477 [XNIO-1 task-1] ryVtLU9BQkKcPBBv6CtyVw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.482 [XNIO-1 task-1] buVGWyjDSMKZRnE9JLTX9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.482 [XNIO-1 task-1] buVGWyjDSMKZRnE9JLTX9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.482 [XNIO-1 task-1] buVGWyjDSMKZRnE9JLTX9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.483 [XNIO-1 task-1] buVGWyjDSMKZRnE9JLTX9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.483 [XNIO-1 task-1] buVGWyjDSMKZRnE9JLTX9A DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:10.491 [XNIO-1 task-1] nZrxDtuCQ-2ppP-cub0LXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.491 [XNIO-1 task-1] nZrxDtuCQ-2ppP-cub0LXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.491 [XNIO-1 task-1] nZrxDtuCQ-2ppP-cub0LXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.491 [XNIO-1 task-1] nZrxDtuCQ-2ppP-cub0LXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.491 [XNIO-1 task-1] nZrxDtuCQ-2ppP-cub0LXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:10.493 [XNIO-1 task-1] nZrxDtuCQ-2ppP-cub0LXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:10.499 [XNIO-1 task-1] RBIVLTL5TriBPclG2tjc2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.499 [XNIO-1 task-1] RBIVLTL5TriBPclG2tjc2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.500 [XNIO-1 task-1] RBIVLTL5TriBPclG2tjc2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.500 [XNIO-1 task-1] RBIVLTL5TriBPclG2tjc2w ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.502 [XNIO-1 task-1] GRARVryYTbORIqbktjlHgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.502 [XNIO-1 task-1] GRARVryYTbORIqbktjlHgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.502 [XNIO-1 task-1] GRARVryYTbORIqbktjlHgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.502 [XNIO-1 task-1] GRARVryYTbORIqbktjlHgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.502 [XNIO-1 task-1] GRARVryYTbORIqbktjlHgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.506 [XNIO-1 task-1] Fbw2wBJzTlmd8mK7OTYMsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.506 [XNIO-1 task-1] Fbw2wBJzTlmd8mK7OTYMsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.506 [XNIO-1 task-1] Fbw2wBJzTlmd8mK7OTYMsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +18:11:10.506 [XNIO-1 task-1] Fbw2wBJzTlmd8mK7OTYMsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:10.513 [XNIO-1 task-1] dVcNNABwRymISbGc6ekdiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:11:10.520 [XNIO-1 task-1] icig7zgoRJmd_m3L-vEPmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.520 [XNIO-1 task-1] icig7zgoRJmd_m3L-vEPmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.520 [XNIO-1 task-1] icig7zgoRJmd_m3L-vEPmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.520 [XNIO-1 task-1] icig7zgoRJmd_m3L-vEPmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.520 [XNIO-1 task-1] icig7zgoRJmd_m3L-vEPmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.528 [XNIO-1 task-1] urbhrvPqQkGjr9Zu7F9n1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.528 [XNIO-1 task-1] urbhrvPqQkGjr9Zu7F9n1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.528 [XNIO-1 task-1] urbhrvPqQkGjr9Zu7F9n1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.528 [XNIO-1 task-1] urbhrvPqQkGjr9Zu7F9n1A ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.536 [XNIO-1 task-1] Cv_wsTclTmyNaUnPTLCcQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.536 [XNIO-1 task-1] Cv_wsTclTmyNaUnPTLCcQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.536 [XNIO-1 task-1] Cv_wsTclTmyNaUnPTLCcQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.537 [XNIO-1 task-1] Cv_wsTclTmyNaUnPTLCcQw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.539 [XNIO-1 task-1] gqDxnkZ1SdC2SeYV3ELPvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.539 [XNIO-1 task-1] gqDxnkZ1SdC2SeYV3ELPvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.539 [XNIO-1 task-1] gqDxnkZ1SdC2SeYV3ELPvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.540 [XNIO-1 task-1] gqDxnkZ1SdC2SeYV3ELPvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.548 [XNIO-1 task-1] Fp-FmyrLRtKF7GuNoMGa3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.548 [XNIO-1 task-1] Fp-FmyrLRtKF7GuNoMGa3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.548 [XNIO-1 task-1] Fp-FmyrLRtKF7GuNoMGa3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.548 [XNIO-1 task-1] Fp-FmyrLRtKF7GuNoMGa3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:10.552 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f78e5939-6b31-4c53-ab15-416613aad55f +18:11:10.552 [XNIO-1 task-1] uFypQXKEQ16klJoC5B22fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.552 [XNIO-1 task-1] uFypQXKEQ16klJoC5B22fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.552 [XNIO-1 task-1] uFypQXKEQ16klJoC5B22fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.552 [XNIO-1 task-1] uFypQXKEQ16klJoC5B22fA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.554 [XNIO-1 task-1] kkWXoqhVTiygaA8Wqcig8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.554 [XNIO-1 task-1] kkWXoqhVTiygaA8Wqcig8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.554 [XNIO-1 task-1] kkWXoqhVTiygaA8Wqcig8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.554 [XNIO-1 task-1] kkWXoqhVTiygaA8Wqcig8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.554 [XNIO-1 task-1] kkWXoqhVTiygaA8Wqcig8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.554 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:10.557 [XNIO-1 task-1] OsDUZOQyTbWZyaE0Mmnz3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.557 [XNIO-1 task-1] OsDUZOQyTbWZyaE0Mmnz3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.557 [XNIO-1 task-1] OsDUZOQyTbWZyaE0Mmnz3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.557 [XNIO-1 task-1] OsDUZOQyTbWZyaE0Mmnz3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.557 [XNIO-1 task-1] OsDUZOQyTbWZyaE0Mmnz3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 41f6ecfb-9e02-4c80-acef-b7ae14165253 +18:11:10.565 [XNIO-1 task-1] neT2H9EvTBiYKroAXORGlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.565 [XNIO-1 task-1] neT2H9EvTBiYKroAXORGlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.565 [XNIO-1 task-1] neT2H9EvTBiYKroAXORGlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.565 [XNIO-1 task-1] neT2H9EvTBiYKroAXORGlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.565 [XNIO-1 task-1] neT2H9EvTBiYKroAXORGlw DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.565 [XNIO-1 task-1] neT2H9EvTBiYKroAXORGlw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.571 [XNIO-1 task-1] _wvm5E-oToSSjzdDL3QVxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.571 [XNIO-1 task-1] _wvm5E-oToSSjzdDL3QVxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.571 [XNIO-1 task-1] _wvm5E-oToSSjzdDL3QVxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.571 [XNIO-1 task-1] _wvm5E-oToSSjzdDL3QVxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.579 [XNIO-1 task-1] wwSj3ggkRtCZaN-WajSzQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.579 [XNIO-1 task-1] wwSj3ggkRtCZaN-WajSzQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.579 [XNIO-1 task-1] wwSj3ggkRtCZaN-WajSzQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.579 [XNIO-1 task-1] wwSj3ggkRtCZaN-WajSzQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.579 [XNIO-1 task-1] wwSj3ggkRtCZaN-WajSzQA DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.579 [XNIO-1 task-1] wwSj3ggkRtCZaN-WajSzQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.581 [XNIO-1 task-1] boagkSoXQo-phsfrnLvYLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.581 [XNIO-1 task-1] boagkSoXQo-phsfrnLvYLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.581 [XNIO-1 task-1] boagkSoXQo-phsfrnLvYLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.581 [XNIO-1 task-1] boagkSoXQo-phsfrnLvYLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.581 [XNIO-1 task-1] boagkSoXQo-phsfrnLvYLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.589 [XNIO-1 task-1] _psenHGdQ5y7I7gPlr9V2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.589 [XNIO-1 task-1] _psenHGdQ5y7I7gPlr9V2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.590 [XNIO-1 task-1] _psenHGdQ5y7I7gPlr9V2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.590 [XNIO-1 task-1] _psenHGdQ5y7I7gPlr9V2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:10.591 [XNIO-1 task-1] TJXw9DiGTDab6URVYRYojg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.592 [XNIO-1 task-1] TJXw9DiGTDab6URVYRYojg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.592 [XNIO-1 task-1] TJXw9DiGTDab6URVYRYojg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.592 [XNIO-1 task-1] TJXw9DiGTDab6URVYRYojg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.592 [XNIO-1 task-1] TJXw9DiGTDab6URVYRYojg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.592 [XNIO-1 task-1] TJXw9DiGTDab6URVYRYojg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.594 [XNIO-1 task-1] c4RKVRiKQBGir_EBYeKDSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.594 [XNIO-1 task-1] c4RKVRiKQBGir_EBYeKDSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.594 [XNIO-1 task-1] c4RKVRiKQBGir_EBYeKDSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.595 [XNIO-1 task-1] c4RKVRiKQBGir_EBYeKDSw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.599 [XNIO-1 task-1] NeGxvOioRnuKqj0PN3v_yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.600 [XNIO-1 task-1] NeGxvOioRnuKqj0PN3v_yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.600 [XNIO-1 task-1] NeGxvOioRnuKqj0PN3v_yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.600 [XNIO-1 task-1] NeGxvOioRnuKqj0PN3v_yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.600 [XNIO-1 task-1] NeGxvOioRnuKqj0PN3v_yg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.600 [XNIO-1 task-1] NeGxvOioRnuKqj0PN3v_yg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.603 [XNIO-1 task-1] iIS_dWtqQcW2lPkBmrt63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.603 [XNIO-1 task-1] iIS_dWtqQcW2lPkBmrt63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.603 [XNIO-1 task-1] iIS_dWtqQcW2lPkBmrt63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.603 [XNIO-1 task-1] iIS_dWtqQcW2lPkBmrt63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.603 [XNIO-1 task-1] iIS_dWtqQcW2lPkBmrt63A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.611 [XNIO-1 task-1] ITS-GWwCQau7JJXnsRVT6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.611 [XNIO-1 task-1] ITS-GWwCQau7JJXnsRVT6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.611 [XNIO-1 task-1] ITS-GWwCQau7JJXnsRVT6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.611 [XNIO-1 task-1] ITS-GWwCQau7JJXnsRVT6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.611 [XNIO-1 task-1] ITS-GWwCQau7JJXnsRVT6g DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.611 [XNIO-1 task-1] ITS-GWwCQau7JJXnsRVT6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.615 [XNIO-1 task-1] eV0ZxQSpQYW4IIB5Do-YTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.615 [XNIO-1 task-1] eV0ZxQSpQYW4IIB5Do-YTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.615 [XNIO-1 task-1] eV0ZxQSpQYW4IIB5Do-YTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.615 [XNIO-1 task-1] eV0ZxQSpQYW4IIB5Do-YTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.616 [XNIO-1 task-1] eV0ZxQSpQYW4IIB5Do-YTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.620 [XNIO-1 task-1] WxVdVY6ATtWzyfa7O067zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e1ece09-6981-4cc0-a847-74ca843c9c2c, base path is set to: null +18:11:10.620 [XNIO-1 task-1] WxVdVY6ATtWzyfa7O067zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.621 [XNIO-1 task-1] WxVdVY6ATtWzyfa7O067zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.621 [XNIO-1 task-1] WxVdVY6ATtWzyfa7O067zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e1ece09-6981-4cc0-a847-74ca843c9c2c, base path is set to: null +18:11:10.621 [XNIO-1 task-1] WxVdVY6ATtWzyfa7O067zw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e1ece09-6981-4cc0-a847-74ca843c9c2c", "9e1ece09-6981-4cc0-a847-74ca843c9c2c", refreshToken) +18:11:10.623 [XNIO-1 task-1] WxVdVY6ATtWzyfa7O067zw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e1ece09-6981-4cc0-a847-74ca843c9c2c is not found.","severity":"ERROR"} +18:11:10.625 [XNIO-1 task-1] F0vQVHSxQDiaJ_Otj1CM9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.626 [XNIO-1 task-1] F0vQVHSxQDiaJ_Otj1CM9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.626 [XNIO-1 task-1] F0vQVHSxQDiaJ_Otj1CM9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.626 [XNIO-1 task-1] F0vQVHSxQDiaJ_Otj1CM9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.633 [XNIO-1 task-1] 2a_vUEEvRQy8ZOvTmffZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.633 [XNIO-1 task-1] 2a_vUEEvRQy8ZOvTmffZDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.633 [XNIO-1 task-1] 2a_vUEEvRQy8ZOvTmffZDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.633 [XNIO-1 task-1] 2a_vUEEvRQy8ZOvTmffZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.633 [XNIO-1 task-1] 2a_vUEEvRQy8ZOvTmffZDg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.634 [XNIO-1 task-1] 2a_vUEEvRQy8ZOvTmffZDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.638 [XNIO-1 task-1] JcBwdZP1RSOHEmP83CPa0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.638 [XNIO-1 task-1] JcBwdZP1RSOHEmP83CPa0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.639 [XNIO-1 task-1] JcBwdZP1RSOHEmP83CPa0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.639 [XNIO-1 task-1] JcBwdZP1RSOHEmP83CPa0Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.640 [XNIO-1 task-1] PTJS8GWMQ9S8xbnj-MCmIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.640 [XNIO-1 task-1] PTJS8GWMQ9S8xbnj-MCmIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.640 [XNIO-1 task-1] PTJS8GWMQ9S8xbnj-MCmIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.640 [XNIO-1 task-1] PTJS8GWMQ9S8xbnj-MCmIw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.642 [XNIO-1 task-1] TNKHhwrVT6ug2ZfUHerFkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.642 [XNIO-1 task-1] TNKHhwrVT6ug2ZfUHerFkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.642 [XNIO-1 task-1] TNKHhwrVT6ug2ZfUHerFkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.643 [XNIO-1 task-1] TNKHhwrVT6ug2ZfUHerFkg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.652 [XNIO-1 task-1] IY8ZEkt_S26gHIEOp52k_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.652 [XNIO-1 task-1] IY8ZEkt_S26gHIEOp52k_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.652 [XNIO-1 task-1] IY8ZEkt_S26gHIEOp52k_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.652 [XNIO-1 task-1] IY8ZEkt_S26gHIEOp52k_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.652 [XNIO-1 task-1] IY8ZEkt_S26gHIEOp52k_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:10.652 [XNIO-1 task-1] IY8ZEkt_S26gHIEOp52k_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:10.657 [XNIO-1 task-1] c-id4DutRwiDWrZ5Jh-sRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.657 [XNIO-1 task-1] c-id4DutRwiDWrZ5Jh-sRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.657 [XNIO-1 task-1] c-id4DutRwiDWrZ5Jh-sRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.657 [XNIO-1 task-1] c-id4DutRwiDWrZ5Jh-sRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.657 [XNIO-1 task-1] c-id4DutRwiDWrZ5Jh-sRA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.664 [XNIO-1 task-1] O9j7xRLMRSaDV7V47sQNcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.664 [XNIO-1 task-1] O9j7xRLMRSaDV7V47sQNcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.664 [XNIO-1 task-1] O9j7xRLMRSaDV7V47sQNcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.664 [XNIO-1 task-1] O9j7xRLMRSaDV7V47sQNcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.665 [XNIO-1 task-1] O9j7xRLMRSaDV7V47sQNcw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:10.665 [XNIO-1 task-1] O9j7xRLMRSaDV7V47sQNcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:10.672 [XNIO-1 task-1] fqy04xBsTkuZoeumZdjUkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.672 [XNIO-1 task-1] fqy04xBsTkuZoeumZdjUkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.672 [XNIO-1 task-1] fqy04xBsTkuZoeumZdjUkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.672 [XNIO-1 task-1] fqy04xBsTkuZoeumZdjUkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.672 [XNIO-1 task-1] fqy04xBsTkuZoeumZdjUkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.675 [XNIO-1 task-1] L986m5cJTfCM2pEp4qmHDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.676 [XNIO-1 task-1] L986m5cJTfCM2pEp4qmHDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.676 [XNIO-1 task-1] L986m5cJTfCM2pEp4qmHDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.676 [XNIO-1 task-1] L986m5cJTfCM2pEp4qmHDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.676 [XNIO-1 task-1] L986m5cJTfCM2pEp4qmHDw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:10.676 [XNIO-1 task-1] L986m5cJTfCM2pEp4qmHDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:10.679 [XNIO-1 task-1] R9v2Ly_hTnCnAwbJExOelg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.679 [XNIO-1 task-1] R9v2Ly_hTnCnAwbJExOelg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.680 [XNIO-1 task-1] R9v2Ly_hTnCnAwbJExOelg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.680 [XNIO-1 task-1] R9v2Ly_hTnCnAwbJExOelg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.685 [XNIO-1 task-1] 25gwp1MbS3u6OaBvZov4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.685 [XNIO-1 task-1] 25gwp1MbS3u6OaBvZov4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.685 [XNIO-1 task-1] 25gwp1MbS3u6OaBvZov4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.685 [XNIO-1 task-1] 25gwp1MbS3u6OaBvZov4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.685 [XNIO-1 task-1] 25gwp1MbS3u6OaBvZov4OQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.687 [XNIO-1 task-1] GyYPwcj8Qmq1GQKU407c1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/41f6ecfb-9e02-4c80-acef-b7ae14165253, base path is set to: null +18:11:10.688 [XNIO-1 task-1] GyYPwcj8Qmq1GQKU407c1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.688 [XNIO-1 task-1] GyYPwcj8Qmq1GQKU407c1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.688 [XNIO-1 task-1] GyYPwcj8Qmq1GQKU407c1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/41f6ecfb-9e02-4c80-acef-b7ae14165253, base path is set to: null +18:11:10.688 [XNIO-1 task-1] GyYPwcj8Qmq1GQKU407c1g DEBUG com.networknt.schema.TypeValidator debug - validate( "41f6ecfb-9e02-4c80-acef-b7ae14165253", "41f6ecfb-9e02-4c80-acef-b7ae14165253", refreshToken) +18:11:10.688 [XNIO-1 task-1] GyYPwcj8Qmq1GQKU407c1g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 41f6ecfb-9e02-4c80-acef-b7ae14165253 is not found.","severity":"ERROR"} +18:11:10.691 [XNIO-1 task-1] XjS-DgbeRKGWapShTlj2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:10.691 [XNIO-1 task-1] XjS-DgbeRKGWapShTlj2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.691 [XNIO-1 task-1] XjS-DgbeRKGWapShTlj2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.691 [XNIO-1 task-1] XjS-DgbeRKGWapShTlj2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:10.692 [XNIO-1 task-1] XjS-DgbeRKGWapShTlj2zg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:10.695 [XNIO-1 task-1] euD1_jAsQ5eis-te3d_bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.695 [XNIO-1 task-1] euD1_jAsQ5eis-te3d_bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.695 [XNIO-1 task-1] euD1_jAsQ5eis-te3d_bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.695 [XNIO-1 task-1] euD1_jAsQ5eis-te3d_bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.695 [XNIO-1 task-1] euD1_jAsQ5eis-te3d_bhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.697 [XNIO-1 task-1] KIm1v6a2QXebdL4Qwa16NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.697 [XNIO-1 task-1] KIm1v6a2QXebdL4Qwa16NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.697 [XNIO-1 task-1] KIm1v6a2QXebdL4Qwa16NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.697 [XNIO-1 task-1] KIm1v6a2QXebdL4Qwa16NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.697 [XNIO-1 task-1] KIm1v6a2QXebdL4Qwa16NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.697 [XNIO-1 task-1] KIm1v6a2QXebdL4Qwa16NQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.704 [XNIO-1 task-1] fHIEhYWuS5SF5k8n5_i7fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.704 [XNIO-1 task-1] fHIEhYWuS5SF5k8n5_i7fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.704 [XNIO-1 task-1] fHIEhYWuS5SF5k8n5_i7fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.704 [XNIO-1 task-1] fHIEhYWuS5SF5k8n5_i7fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.704 [XNIO-1 task-1] fHIEhYWuS5SF5k8n5_i7fA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.709 [XNIO-1 task-1] RQsgGEDXR6OJOxidolEwBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.709 [XNIO-1 task-1] RQsgGEDXR6OJOxidolEwBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.709 [XNIO-1 task-1] RQsgGEDXR6OJOxidolEwBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.709 [XNIO-1 task-1] RQsgGEDXR6OJOxidolEwBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.709 [XNIO-1 task-1] RQsgGEDXR6OJOxidolEwBg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.709 [XNIO-1 task-1] RQsgGEDXR6OJOxidolEwBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.713 [XNIO-1 task-1] 0U2At7HOSpilju-956m6-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.713 [XNIO-1 task-1] 0U2At7HOSpilju-956m6-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.714 [XNIO-1 task-1] 0U2At7HOSpilju-956m6-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.714 [XNIO-1 task-1] 0U2At7HOSpilju-956m6-A ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.721 [XNIO-1 task-1] rkcnxErQRZaoD0iVHPAKuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.721 [XNIO-1 task-1] rkcnxErQRZaoD0iVHPAKuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.721 [XNIO-1 task-1] rkcnxErQRZaoD0iVHPAKuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.721 [XNIO-1 task-1] rkcnxErQRZaoD0iVHPAKuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.721 [XNIO-1 task-1] rkcnxErQRZaoD0iVHPAKuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.728 [XNIO-1 task-1] 4RydOBIiSMCtUk45fQ2Tow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.728 [XNIO-1 task-1] 4RydOBIiSMCtUk45fQ2Tow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.728 [XNIO-1 task-1] 4RydOBIiSMCtUk45fQ2Tow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.728 [XNIO-1 task-1] 4RydOBIiSMCtUk45fQ2Tow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:10.733 [XNIO-1 task-1] hGxwwspIRCSThyP7F0Dywg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.733 [XNIO-1 task-1] hGxwwspIRCSThyP7F0Dywg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.733 [XNIO-1 task-1] hGxwwspIRCSThyP7F0Dywg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.733 [XNIO-1 task-1] hGxwwspIRCSThyP7F0Dywg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.733 [XNIO-1 task-1] hGxwwspIRCSThyP7F0Dywg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.734 [XNIO-1 task-1] hGxwwspIRCSThyP7F0Dywg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.735 [XNIO-1 task-1] ggdh6_CWT92YVQfkoFs_cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.735 [XNIO-1 task-1] ggdh6_CWT92YVQfkoFs_cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.736 [XNIO-1 task-1] ggdh6_CWT92YVQfkoFs_cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.736 [XNIO-1 task-1] ggdh6_CWT92YVQfkoFs_cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.736 [XNIO-1 task-1] ggdh6_CWT92YVQfkoFs_cA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.738 [XNIO-1 task-1] HKkT8tilStGW5FubzkizEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.738 [XNIO-1 task-1] HKkT8tilStGW5FubzkizEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.738 [XNIO-1 task-1] HKkT8tilStGW5FubzkizEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.738 [XNIO-1 task-1] HKkT8tilStGW5FubzkizEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:10.743 [XNIO-1 task-1] ZbKMdcGJSOywy8k-HQgyrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.743 [XNIO-1 task-1] ZbKMdcGJSOywy8k-HQgyrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.743 [XNIO-1 task-1] ZbKMdcGJSOywy8k-HQgyrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.743 [XNIO-1 task-1] ZbKMdcGJSOywy8k-HQgyrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.743 [XNIO-1 task-1] ZbKMdcGJSOywy8k-HQgyrg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.743 [XNIO-1 task-1] ZbKMdcGJSOywy8k-HQgyrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.746 [XNIO-1 task-1] KYySFcnFSK6IdIa6-7js0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.746 [XNIO-1 task-1] KYySFcnFSK6IdIa6-7js0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.746 [XNIO-1 task-1] KYySFcnFSK6IdIa6-7js0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.746 [XNIO-1 task-1] KYySFcnFSK6IdIa6-7js0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.746 [XNIO-1 task-1] KYySFcnFSK6IdIa6-7js0g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.751 [XNIO-1 task-1] qq2LxZi_QxOuBNGWHhJbqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.751 [XNIO-1 task-1] qq2LxZi_QxOuBNGWHhJbqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.751 [XNIO-1 task-1] qq2LxZi_QxOuBNGWHhJbqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.751 [XNIO-1 task-1] qq2LxZi_QxOuBNGWHhJbqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.751 [XNIO-1 task-1] qq2LxZi_QxOuBNGWHhJbqA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:10.757 [XNIO-1 task-1] _7eXYIU0T1GT-V_MAP-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0341243f-1415-4947-9a79-54762dbf5a14 +18:11:10.757 [XNIO-1 task-1] _7eXYIU0T1GT-V_MAP-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.757 [XNIO-1 task-1] _7eXYIU0T1GT-V_MAP-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.757 [XNIO-1 task-1] _7eXYIU0T1GT-V_MAP-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0341243f-1415-4947-9a79-54762dbf5a14 +18:11:10.758 [XNIO-1 task-1] _7eXYIU0T1GT-V_MAP-D7g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0341243f-1415-4947-9a79-54762dbf5a14 +18:11:10.759 [XNIO-1 task-1] 8VcNtzlvStSfV9mckvYuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.760 [XNIO-1 task-1] 8VcNtzlvStSfV9mckvYuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.760 [XNIO-1 task-1] 8VcNtzlvStSfV9mckvYuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.760 [XNIO-1 task-1] 8VcNtzlvStSfV9mckvYuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.760 [XNIO-1 task-1] 8VcNtzlvStSfV9mckvYuBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.762 [XNIO-1 task-1] bxoOqmLMRue-YVSq8hJ1cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.762 [XNIO-1 task-1] bxoOqmLMRue-YVSq8hJ1cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.762 [XNIO-1 task-1] bxoOqmLMRue-YVSq8hJ1cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.762 [XNIO-1 task-1] bxoOqmLMRue-YVSq8hJ1cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.762 [XNIO-1 task-1] bxoOqmLMRue-YVSq8hJ1cw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:10.762 [XNIO-1 task-1] bxoOqmLMRue-YVSq8hJ1cw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:10.765 [XNIO-1 task-1] es5yw22dQzmCUa6hUDHIGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.765 [XNIO-1 task-1] es5yw22dQzmCUa6hUDHIGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.765 [XNIO-1 task-1] es5yw22dQzmCUa6hUDHIGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.765 [XNIO-1 task-1] es5yw22dQzmCUa6hUDHIGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.765 [XNIO-1 task-1] es5yw22dQzmCUa6hUDHIGw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.768 [XNIO-1 task-1] i1vzuzVmRziq-06pu6XX1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.768 [XNIO-1 task-1] i1vzuzVmRziq-06pu6XX1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.768 [XNIO-1 task-1] i1vzuzVmRziq-06pu6XX1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.768 [XNIO-1 task-1] i1vzuzVmRziq-06pu6XX1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:10.771 [XNIO-1 task-1] 5HxCDaLKTZiIWDjjEqszUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.771 [XNIO-1 task-1] 5HxCDaLKTZiIWDjjEqszUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.771 [XNIO-1 task-1] 5HxCDaLKTZiIWDjjEqszUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.771 [XNIO-1 task-1] 5HxCDaLKTZiIWDjjEqszUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.771 [XNIO-1 task-1] 5HxCDaLKTZiIWDjjEqszUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:10.782 [XNIO-1 task-1] qQmnFIdsTKqjN_HyjA-jfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.782 [XNIO-1 task-1] qQmnFIdsTKqjN_HyjA-jfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.782 [XNIO-1 task-1] qQmnFIdsTKqjN_HyjA-jfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.782 [XNIO-1 task-1] qQmnFIdsTKqjN_HyjA-jfg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.786 [XNIO-1 task-1] wlIeMv8_SkezD8L8LQDfoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.786 [XNIO-1 task-1] wlIeMv8_SkezD8L8LQDfoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.786 [XNIO-1 task-1] wlIeMv8_SkezD8L8LQDfoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.787 [XNIO-1 task-1] wlIeMv8_SkezD8L8LQDfoQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.792 [XNIO-1 task-1] PxKHOLPcTF6c65w4D8zP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.792 [XNIO-1 task-1] PxKHOLPcTF6c65w4D8zP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.792 [XNIO-1 task-1] PxKHOLPcTF6c65w4D8zP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.792 [XNIO-1 task-1] PxKHOLPcTF6c65w4D8zP5w ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:10.795 [XNIO-1 task-1] 5hMDnxEjTz2bvSWJ6Zyi9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:10.795 [XNIO-1 task-1] 5hMDnxEjTz2bvSWJ6Zyi9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.795 [XNIO-1 task-1] 5hMDnxEjTz2bvSWJ6Zyi9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.796 [XNIO-1 task-1] 5hMDnxEjTz2bvSWJ6Zyi9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:10.796 [XNIO-1 task-1] 5hMDnxEjTz2bvSWJ6Zyi9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:10.798 [XNIO-1 task-1] Iuku69LFRZqRNvugUo1bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.799 [XNIO-1 task-1] Iuku69LFRZqRNvugUo1bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.799 [XNIO-1 task-1] Iuku69LFRZqRNvugUo1bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.799 [XNIO-1 task-1] Iuku69LFRZqRNvugUo1bnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.799 [XNIO-1 task-1] Iuku69LFRZqRNvugUo1bnw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.803 [XNIO-1 task-1] fEK4m8iISXypIWQjKmnzAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:10.803 [XNIO-1 task-1] fEK4m8iISXypIWQjKmnzAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.804 [XNIO-1 task-1] fEK4m8iISXypIWQjKmnzAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.804 [XNIO-1 task-1] fEK4m8iISXypIWQjKmnzAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:10.804 [XNIO-1 task-1] fEK4m8iISXypIWQjKmnzAg DEBUG com.networknt.schema.TypeValidator debug - validate( "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", refreshToken) +18:11:10.860 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:34335dd9-fb79-4911-8bb9-08e7172c655c +18:11:10.861 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:34335dd9-fb79-4911-8bb9-08e7172c655c +18:11:10.873 [XNIO-1 task-1] yTB6rh-xR9W7FbwJIk7zjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.873 [XNIO-1 task-1] yTB6rh-xR9W7FbwJIk7zjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.873 [XNIO-1 task-1] yTB6rh-xR9W7FbwJIk7zjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.873 [XNIO-1 task-1] yTB6rh-xR9W7FbwJIk7zjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.873 [XNIO-1 task-1] yTB6rh-xR9W7FbwJIk7zjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.880 [XNIO-1 task-1] E2YWN-X0S9WXjDR3dlFafg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e86171e8-20f0-4f7d-97fe-8aae31c03147, base path is set to: null +18:11:10.880 [XNIO-1 task-1] E2YWN-X0S9WXjDR3dlFafg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.880 [XNIO-1 task-1] E2YWN-X0S9WXjDR3dlFafg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.880 [XNIO-1 task-1] E2YWN-X0S9WXjDR3dlFafg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e86171e8-20f0-4f7d-97fe-8aae31c03147, base path is set to: null +18:11:10.881 [XNIO-1 task-1] E2YWN-X0S9WXjDR3dlFafg DEBUG com.networknt.schema.TypeValidator debug - validate( "e86171e8-20f0-4f7d-97fe-8aae31c03147", "e86171e8-20f0-4f7d-97fe-8aae31c03147", refreshToken) +18:11:10.883 [XNIO-1 task-1] 602PqjP2Ts2G0Ak1MJYaeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:10.884 [XNIO-1 task-1] 602PqjP2Ts2G0Ak1MJYaeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.884 [XNIO-1 task-1] 602PqjP2Ts2G0Ak1MJYaeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.884 [XNIO-1 task-1] 602PqjP2Ts2G0Ak1MJYaeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:10.884 [XNIO-1 task-1] 602PqjP2Ts2G0Ak1MJYaeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", refreshToken) +18:11:10.886 [XNIO-1 task-1] 602PqjP2Ts2G0Ak1MJYaeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2dd1e99-f67b-4699-b0af-b7d86a2c528d is not found.","severity":"ERROR"} +18:11:10.887 [XNIO-1 task-1] gcOquPv0TaGIISSSbX4ePQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:10.887 [XNIO-1 task-1] gcOquPv0TaGIISSSbX4ePQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.887 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:78f5ba2a-ad49-439f-94c4-f5ec7a8143a3 +18:11:10.887 [XNIO-1 task-1] gcOquPv0TaGIISSSbX4ePQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.888 [XNIO-1 task-1] gcOquPv0TaGIISSSbX4ePQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.888 [XNIO-1 task-1] gcOquPv0TaGIISSSbX4ePQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.888 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:78f5ba2a-ad49-439f-94c4-f5ec7a8143a3 +18:11:10.891 [XNIO-1 task-1] T6TzlMUfQWCMXkyJfAALFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.891 [XNIO-1 task-1] T6TzlMUfQWCMXkyJfAALFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.891 [XNIO-1 task-1] T6TzlMUfQWCMXkyJfAALFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.891 [XNIO-1 task-1] T6TzlMUfQWCMXkyJfAALFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.891 [XNIO-1 task-1] T6TzlMUfQWCMXkyJfAALFA DEBUG com.networknt.schema.TypeValidator debug - validate( "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", refreshToken) +18:11:10.894 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1b5d4b1e-37e7-48e3-975f-678968ca7bd2 +18:11:10.895 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1b5d4b1e-37e7-48e3-975f-678968ca7bd2 +18:11:10.900 [XNIO-1 task-1] tLVkMDCjTXKmzk2BVQgd6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.900 [XNIO-1 task-1] tLVkMDCjTXKmzk2BVQgd6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.900 [XNIO-1 task-1] tLVkMDCjTXKmzk2BVQgd6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.900 [XNIO-1 task-1] tLVkMDCjTXKmzk2BVQgd6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.906 [XNIO-1 task-1] uUzWuTgZQ_-CQowFOBdv1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.906 [XNIO-1 task-1] uUzWuTgZQ_-CQowFOBdv1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.906 [XNIO-1 task-1] uUzWuTgZQ_-CQowFOBdv1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.907 [XNIO-1 task-1] uUzWuTgZQ_-CQowFOBdv1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.907 [XNIO-1 task-1] uUzWuTgZQ_-CQowFOBdv1g DEBUG com.networknt.schema.TypeValidator debug - validate( "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", refreshToken) +18:11:10.909 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1b5d4b1e-37e7-48e3-975f-678968ca7bd2 +18:11:10.915 [XNIO-1 task-1] V78GoVX5R76rPJI4L3h7xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.915 [XNIO-1 task-1] V78GoVX5R76rPJI4L3h7xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.915 [XNIO-1 task-1] V78GoVX5R76rPJI4L3h7xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.915 [XNIO-1 task-1] V78GoVX5R76rPJI4L3h7xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.915 [XNIO-1 task-1] V78GoVX5R76rPJI4L3h7xA DEBUG com.networknt.schema.TypeValidator debug - validate( "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", refreshToken) +18:11:10.915 [XNIO-1 task-1] V78GoVX5R76rPJI4L3h7xA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e318719b-8cd2-46bd-94d0-f46f8fcbbfcc is not found.","severity":"ERROR"} +18:11:10.920 [XNIO-1 task-1] eqXQIgODQrShvnJMFnX-RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.920 [XNIO-1 task-1] eqXQIgODQrShvnJMFnX-RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.920 [XNIO-1 task-1] eqXQIgODQrShvnJMFnX-RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.920 [XNIO-1 task-1] eqXQIgODQrShvnJMFnX-RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.921 [XNIO-1 task-1] eqXQIgODQrShvnJMFnX-RQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.925 [XNIO-1 task-1] yhoRHgRpT1K06WkQ0Ro9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.925 [XNIO-1 task-1] yhoRHgRpT1K06WkQ0Ro9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.925 [XNIO-1 task-1] yhoRHgRpT1K06WkQ0Ro9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.926 [XNIO-1 task-1] yhoRHgRpT1K06WkQ0Ro9ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.926 [XNIO-1 task-1] yhoRHgRpT1K06WkQ0Ro9ZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:10.934 [XNIO-1 task-1] LKqr1af3QmaZ8NFQH56TyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.934 [XNIO-1 task-1] LKqr1af3QmaZ8NFQH56TyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.934 [XNIO-1 task-1] LKqr1af3QmaZ8NFQH56TyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.934 [XNIO-1 task-1] LKqr1af3QmaZ8NFQH56TyQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.941 [XNIO-1 task-1] l5usbKRyStW-0CcysoChuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.941 [XNIO-1 task-1] l5usbKRyStW-0CcysoChuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.941 [XNIO-1 task-1] l5usbKRyStW-0CcysoChuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.941 [XNIO-1 task-1] l5usbKRyStW-0CcysoChuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:10.941 [XNIO-1 task-1] l5usbKRyStW-0CcysoChuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", refreshToken) +18:11:10.941 [XNIO-1 task-1] l5usbKRyStW-0CcysoChuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e318719b-8cd2-46bd-94d0-f46f8fcbbfcc is not found.","severity":"ERROR"} +18:11:10.948 [XNIO-1 task-1] U4K53nyfTnGa8EVPan_mdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.948 [XNIO-1 task-1] U4K53nyfTnGa8EVPan_mdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.948 [XNIO-1 task-1] U4K53nyfTnGa8EVPan_mdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.948 [XNIO-1 task-1] U4K53nyfTnGa8EVPan_mdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.948 [XNIO-1 task-1] U4K53nyfTnGa8EVPan_mdQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.950 [XNIO-1 task-1] JZnnM-YISAyXv993zCCcTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.950 [XNIO-1 task-1] JZnnM-YISAyXv993zCCcTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.950 [XNIO-1 task-1] JZnnM-YISAyXv993zCCcTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.950 [XNIO-1 task-1] JZnnM-YISAyXv993zCCcTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:10.950 [XNIO-1 task-1] JZnnM-YISAyXv993zCCcTg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:10.950 [XNIO-1 task-1] JZnnM-YISAyXv993zCCcTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:10.952 [XNIO-1 task-1] KKq_RvmlTRmnpkGYG-eAlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.952 [XNIO-1 task-1] KKq_RvmlTRmnpkGYG-eAlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.952 [XNIO-1 task-1] KKq_RvmlTRmnpkGYG-eAlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.952 [XNIO-1 task-1] KKq_RvmlTRmnpkGYG-eAlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.953 [XNIO-1 task-1] KKq_RvmlTRmnpkGYG-eAlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:10.955 [XNIO-1 task-1] tX9VeGdJQdCrvsYLL-mdOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de35fba2-35c4-4024-8df5-28adb5337ffb, base path is set to: null +18:11:10.955 [XNIO-1 task-1] tX9VeGdJQdCrvsYLL-mdOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.956 [XNIO-1 task-1] tX9VeGdJQdCrvsYLL-mdOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.956 [XNIO-1 task-1] tX9VeGdJQdCrvsYLL-mdOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de35fba2-35c4-4024-8df5-28adb5337ffb, base path is set to: null +18:11:10.956 [XNIO-1 task-1] tX9VeGdJQdCrvsYLL-mdOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de35fba2-35c4-4024-8df5-28adb5337ffb", "de35fba2-35c4-4024-8df5-28adb5337ffb", refreshToken) +18:11:10.963 [XNIO-1 task-1] tX9VeGdJQdCrvsYLL-mdOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token de35fba2-35c4-4024-8df5-28adb5337ffb is not found.","severity":"ERROR"} +18:11:10.966 [XNIO-1 task-1] 0nl99ezLRsC-ZC-x3n7SPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.966 [XNIO-1 task-1] 0nl99ezLRsC-ZC-x3n7SPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.966 [XNIO-1 task-1] 0nl99ezLRsC-ZC-x3n7SPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.966 [XNIO-1 task-1] 0nl99ezLRsC-ZC-x3n7SPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.966 [XNIO-1 task-1] 0nl99ezLRsC-ZC-x3n7SPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.968 [XNIO-1 task-1] QKnTfglRSsW9b6MZCW0vyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.968 [XNIO-1 task-1] QKnTfglRSsW9b6MZCW0vyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.968 [XNIO-1 task-1] QKnTfglRSsW9b6MZCW0vyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.969 [XNIO-1 task-1] QKnTfglRSsW9b6MZCW0vyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:10.973 [XNIO-1 task-1] 70iSx0ehQZqE4wO5DQyMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.973 [XNIO-1 task-1] 70iSx0ehQZqE4wO5DQyMQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.974 [XNIO-1 task-1] 70iSx0ehQZqE4wO5DQyMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:10.974 [XNIO-1 task-1] 70iSx0ehQZqE4wO5DQyMQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.974 [XNIO-1 task-1] 70iSx0ehQZqE4wO5DQyMQg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:10.981 [XNIO-1 task-1] 3UNYY_iXQouR0weQglNXIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.981 [XNIO-1 task-1] 3UNYY_iXQouR0weQglNXIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.981 [XNIO-1 task-1] 3UNYY_iXQouR0weQglNXIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:10.982 [XNIO-1 task-1] 3UNYY_iXQouR0weQglNXIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.982 [XNIO-1 task-1] 3UNYY_iXQouR0weQglNXIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.989 [XNIO-1 task-1] hDE3zUIYRT6uAwKPFGmlnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:10.989 [XNIO-1 task-1] hDE3zUIYRT6uAwKPFGmlnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:10.989 [XNIO-1 task-1] hDE3zUIYRT6uAwKPFGmlnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:10.989 [XNIO-1 task-1] hDE3zUIYRT6uAwKPFGmlnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:10.989 [XNIO-1 task-1] hDE3zUIYRT6uAwKPFGmlnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", refreshToken) +18:11:10.989 [XNIO-1 task-1] hDE3zUIYRT6uAwKPFGmlnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2dd1e99-f67b-4699-b0af-b7d86a2c528d is not found.","severity":"ERROR"} +18:11:10.996 [XNIO-1 task-1] fiCB_ebdRRKQhobyEp3sbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.996 [XNIO-1 task-1] fiCB_ebdRRKQhobyEp3sbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.996 [XNIO-1 task-1] fiCB_ebdRRKQhobyEp3sbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:10.997 [XNIO-1 task-1] fiCB_ebdRRKQhobyEp3sbw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.003 [XNIO-1 task-1] DMPGyRfqR6ynhOJ2OSlt3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.004 [XNIO-1 task-1] DMPGyRfqR6ynhOJ2OSlt3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.004 [XNIO-1 task-1] DMPGyRfqR6ynhOJ2OSlt3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.004 [XNIO-1 task-1] DMPGyRfqR6ynhOJ2OSlt3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.004 [XNIO-1 task-1] DMPGyRfqR6ynhOJ2OSlt3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.007 [XNIO-1 task-1] 24PdawM3Tpiozxq2SZwFCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:11.007 [XNIO-1 task-1] 24PdawM3Tpiozxq2SZwFCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.007 [XNIO-1 task-1] 24PdawM3Tpiozxq2SZwFCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.007 [XNIO-1 task-1] 24PdawM3Tpiozxq2SZwFCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d, base path is set to: null +18:11:11.007 [XNIO-1 task-1] 24PdawM3Tpiozxq2SZwFCg DEBUG com.networknt.schema.TypeValidator debug - validate( "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", "f2dd1e99-f67b-4699-b0af-b7d86a2c528d", refreshToken) +18:11:11.007 [XNIO-1 task-1] 24PdawM3Tpiozxq2SZwFCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2dd1e99-f67b-4699-b0af-b7d86a2c528d is not found.","severity":"ERROR"} +18:11:11.010 [XNIO-1 task-1] anTvTHF_SgWRxXF4biLDCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.010 [XNIO-1 task-1] anTvTHF_SgWRxXF4biLDCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.010 [XNIO-1 task-1] anTvTHF_SgWRxXF4biLDCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.010 [XNIO-1 task-1] anTvTHF_SgWRxXF4biLDCA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.012 [XNIO-1 task-1] wMCSC9C6TE2EY2RDwlNGHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.012 [XNIO-1 task-1] wMCSC9C6TE2EY2RDwlNGHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.012 [XNIO-1 task-1] wMCSC9C6TE2EY2RDwlNGHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.012 [XNIO-1 task-1] wMCSC9C6TE2EY2RDwlNGHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.012 [XNIO-1 task-1] wMCSC9C6TE2EY2RDwlNGHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.017 [XNIO-1 task-1] GlM8vwe1TqqEx5h_Bq-QHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.017 [XNIO-1 task-1] GlM8vwe1TqqEx5h_Bq-QHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.017 [XNIO-1 task-1] GlM8vwe1TqqEx5h_Bq-QHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.018 [XNIO-1 task-1] GlM8vwe1TqqEx5h_Bq-QHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.018 [XNIO-1 task-1] GlM8vwe1TqqEx5h_Bq-QHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.025 [XNIO-1 task-1] Lr11ADzMSPaFZWkuf-hLQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:11.025 [XNIO-1 task-1] Lr11ADzMSPaFZWkuf-hLQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.025 [XNIO-1 task-1] Lr11ADzMSPaFZWkuf-hLQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.025 [XNIO-1 task-1] Lr11ADzMSPaFZWkuf-hLQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:11.025 [XNIO-1 task-1] Lr11ADzMSPaFZWkuf-hLQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f2dd1e99-f67b-4699-b0af-b7d86a2c528d +18:11:11.029 [XNIO-1 task-1] cAjxP5IRRSKq_DPS2eLK3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ce7adfc8-05db-46fa-8c97-80c9ac64fd6b, base path is set to: null +18:11:11.029 [XNIO-1 task-1] cAjxP5IRRSKq_DPS2eLK3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.029 [XNIO-1 task-1] cAjxP5IRRSKq_DPS2eLK3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.029 [XNIO-1 task-1] cAjxP5IRRSKq_DPS2eLK3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ce7adfc8-05db-46fa-8c97-80c9ac64fd6b, base path is set to: null +18:11:11.029 [XNIO-1 task-1] cAjxP5IRRSKq_DPS2eLK3g DEBUG com.networknt.schema.TypeValidator debug - validate( "ce7adfc8-05db-46fa-8c97-80c9ac64fd6b", "ce7adfc8-05db-46fa-8c97-80c9ac64fd6b", refreshToken) +18:11:11.040 [XNIO-1 task-1] W-qyJIndSLSsR1iu5Pk8MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.040 [XNIO-1 task-1] W-qyJIndSLSsR1iu5Pk8MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.040 [XNIO-1 task-1] W-qyJIndSLSsR1iu5Pk8MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.040 [XNIO-1 task-1] W-qyJIndSLSsR1iu5Pk8MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.040 [XNIO-1 task-1] W-qyJIndSLSsR1iu5Pk8MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.040 [XNIO-1 task-1] W-qyJIndSLSsR1iu5Pk8MQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.045 [XNIO-1 task-1] YxVFtLLVQGaU4hRMyyaDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.045 [XNIO-1 task-1] YxVFtLLVQGaU4hRMyyaDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.045 [XNIO-1 task-1] YxVFtLLVQGaU4hRMyyaDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.045 [XNIO-1 task-1] YxVFtLLVQGaU4hRMyyaDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.045 [XNIO-1 task-1] YxVFtLLVQGaU4hRMyyaDzw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.048 [XNIO-1 task-1] 1eUMRozqSC6fsQwEZExGZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.048 [XNIO-1 task-1] 1eUMRozqSC6fsQwEZExGZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.048 [XNIO-1 task-1] 1eUMRozqSC6fsQwEZExGZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.048 [XNIO-1 task-1] 1eUMRozqSC6fsQwEZExGZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.049 [XNIO-1 task-1] 1eUMRozqSC6fsQwEZExGZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.054 [XNIO-1 task-1] vrhexYnOQhWdwAPOGPHBWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.054 [XNIO-1 task-1] vrhexYnOQhWdwAPOGPHBWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.055 [XNIO-1 task-1] vrhexYnOQhWdwAPOGPHBWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.055 [XNIO-1 task-1] vrhexYnOQhWdwAPOGPHBWw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.055 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2e553236-f6f1-441b-97b4-fd1b5c3f4787 +18:11:11.055 [XNIO-1 task-1] vrhexYnOQhWdwAPOGPHBWw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.063 [XNIO-1 task-1] 2qxVphbsTXSf-n2F8kAxfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.063 [XNIO-1 task-1] 2qxVphbsTXSf-n2F8kAxfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.063 [XNIO-1 task-1] 2qxVphbsTXSf-n2F8kAxfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.063 [XNIO-1 task-1] 2qxVphbsTXSf-n2F8kAxfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.063 [XNIO-1 task-1] 2qxVphbsTXSf-n2F8kAxfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.069 [XNIO-1 task-1] KZqyUlQUSY2AaDKlJNGTHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.069 [XNIO-1 task-1] KZqyUlQUSY2AaDKlJNGTHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.069 [XNIO-1 task-1] KZqyUlQUSY2AaDKlJNGTHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.069 [XNIO-1 task-1] KZqyUlQUSY2AaDKlJNGTHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.071 [XNIO-1 task-1] JHMbakh_TIasWFotxbz2sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.071 [XNIO-1 task-1] JHMbakh_TIasWFotxbz2sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.071 [XNIO-1 task-1] JHMbakh_TIasWFotxbz2sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.071 [XNIO-1 task-1] JHMbakh_TIasWFotxbz2sg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.072 [XNIO-1 task-1] JHMbakh_TIasWFotxbz2sg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.080 [XNIO-1 task-1] ss175UCzRo-jt4Ozarup5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.080 [XNIO-1 task-1] ss175UCzRo-jt4Ozarup5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.080 [XNIO-1 task-1] ss175UCzRo-jt4Ozarup5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.080 [XNIO-1 task-1] ss175UCzRo-jt4Ozarup5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.080 [XNIO-1 task-1] ss175UCzRo-jt4Ozarup5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.082 [XNIO-1 task-1] 0H_sDbFGSiaAXrZ9Iml2lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:11.083 [XNIO-1 task-1] 0H_sDbFGSiaAXrZ9Iml2lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.083 [XNIO-1 task-1] 0H_sDbFGSiaAXrZ9Iml2lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.083 [XNIO-1 task-1] 0H_sDbFGSiaAXrZ9Iml2lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc, base path is set to: null +18:11:11.083 [XNIO-1 task-1] 0H_sDbFGSiaAXrZ9Iml2lg DEBUG com.networknt.schema.TypeValidator debug - validate( "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", "e318719b-8cd2-46bd-94d0-f46f8fcbbfcc", refreshToken) +18:11:11.083 [XNIO-1 task-1] 0H_sDbFGSiaAXrZ9Iml2lg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e318719b-8cd2-46bd-94d0-f46f8fcbbfcc is not found.","severity":"ERROR"} +18:11:11.085 [XNIO-1 task-1] CD4a_gLhRfCXPj8OYg1ewg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.085 [XNIO-1 task-1] CD4a_gLhRfCXPj8OYg1ewg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.085 [XNIO-1 task-1] CD4a_gLhRfCXPj8OYg1ewg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.085 [XNIO-1 task-1] CD4a_gLhRfCXPj8OYg1ewg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.088 [XNIO-1 task-1] abRltsEETcW_cc6Zr11C5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.088 [XNIO-1 task-1] abRltsEETcW_cc6Zr11C5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.088 [XNIO-1 task-1] abRltsEETcW_cc6Zr11C5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.089 [XNIO-1 task-1] abRltsEETcW_cc6Zr11C5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.089 [XNIO-1 task-1] abRltsEETcW_cc6Zr11C5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.094 [XNIO-1 task-1] z5f0QXz7R2qC_xxXSiPqjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.094 [XNIO-1 task-1] z5f0QXz7R2qC_xxXSiPqjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.094 [XNIO-1 task-1] z5f0QXz7R2qC_xxXSiPqjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.094 [XNIO-1 task-1] z5f0QXz7R2qC_xxXSiPqjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.094 [XNIO-1 task-1] z5f0QXz7R2qC_xxXSiPqjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.095 [XNIO-1 task-1] z5f0QXz7R2qC_xxXSiPqjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.100 [XNIO-1 task-1] SinZ16kDR76sfQ6rzBUIzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.100 [XNIO-1 task-1] SinZ16kDR76sfQ6rzBUIzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.100 [XNIO-1 task-1] SinZ16kDR76sfQ6rzBUIzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.101 [XNIO-1 task-1] SinZ16kDR76sfQ6rzBUIzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.106 [XNIO-1 task-1] f6YvhVLIS-e2-f6_34IFgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.106 [XNIO-1 task-1] f6YvhVLIS-e2-f6_34IFgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.106 [XNIO-1 task-1] f6YvhVLIS-e2-f6_34IFgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.106 [XNIO-1 task-1] f6YvhVLIS-e2-f6_34IFgg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.107 [XNIO-1 task-1] f6YvhVLIS-e2-f6_34IFgg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.115 [XNIO-1 task-1] Bon_cjVwTia20R9FyKDeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.115 [XNIO-1 task-1] Bon_cjVwTia20R9FyKDeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.115 [XNIO-1 task-1] Bon_cjVwTia20R9FyKDeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.115 [XNIO-1 task-1] Bon_cjVwTia20R9FyKDeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.115 [XNIO-1 task-1] Bon_cjVwTia20R9FyKDeEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.117 [XNIO-1 task-1] HMGK6dsTTTC48RHFscLkrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.117 [XNIO-1 task-1] HMGK6dsTTTC48RHFscLkrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.117 [XNIO-1 task-1] HMGK6dsTTTC48RHFscLkrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.117 [XNIO-1 task-1] HMGK6dsTTTC48RHFscLkrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.118 [XNIO-1 task-1] HMGK6dsTTTC48RHFscLkrg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.118 [XNIO-1 task-1] HMGK6dsTTTC48RHFscLkrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.120 [XNIO-1 task-1] 1sXgkHeRTROcSUtLQVTscQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.120 [XNIO-1 task-1] 1sXgkHeRTROcSUtLQVTscQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.120 [XNIO-1 task-1] 1sXgkHeRTROcSUtLQVTscQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.120 [XNIO-1 task-1] 1sXgkHeRTROcSUtLQVTscQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.120 [XNIO-1 task-1] 1sXgkHeRTROcSUtLQVTscQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e318719b-8cd2-46bd-94d0-f46f8fcbbfcc +18:11:11.121 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:90017f46-d638-44eb-8c45-4953fc135f8f +18:11:11.122 [XNIO-1 task-1] jKGQoDi4TMiqqhtUMqIteg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.122 [XNIO-1 task-1] jKGQoDi4TMiqqhtUMqIteg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.123 [XNIO-1 task-1] jKGQoDi4TMiqqhtUMqIteg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.123 [XNIO-1 task-1] jKGQoDi4TMiqqhtUMqIteg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.123 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:90017f46-d638-44eb-8c45-4953fc135f8f +18:11:11.127 [XNIO-1 task-1] LAJMwleDQCavAuAkBn99Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b04841f-e4db-4db4-9954-bbf0124baf37, base path is set to: null +18:11:11.127 [XNIO-1 task-1] LAJMwleDQCavAuAkBn99Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.127 [XNIO-1 task-1] LAJMwleDQCavAuAkBn99Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.127 [XNIO-1 task-1] LAJMwleDQCavAuAkBn99Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9b04841f-e4db-4db4-9954-bbf0124baf37, base path is set to: null +18:11:11.127 [XNIO-1 task-1] LAJMwleDQCavAuAkBn99Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "9b04841f-e4db-4db4-9954-bbf0124baf37", "9b04841f-e4db-4db4-9954-bbf0124baf37", refreshToken) +18:11:11.130 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.138 [XNIO-1 task-1] u2GNX7z3SJu-N1ahQQgftg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.138 [XNIO-1 task-1] u2GNX7z3SJu-N1ahQQgftg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.138 [XNIO-1 task-1] u2GNX7z3SJu-N1ahQQgftg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.138 [XNIO-1 task-1] u2GNX7z3SJu-N1ahQQgftg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.139 [XNIO-1 task-1] u2GNX7z3SJu-N1ahQQgftg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.139 [XNIO-1 task-1] u2GNX7z3SJu-N1ahQQgftg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.142 [XNIO-1 task-1] WFn4gGviQeGRLXMLPeDPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.142 [XNIO-1 task-1] WFn4gGviQeGRLXMLPeDPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.142 [XNIO-1 task-1] WFn4gGviQeGRLXMLPeDPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.142 [XNIO-1 task-1] WFn4gGviQeGRLXMLPeDPAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.143 [XNIO-1 task-1] WFn4gGviQeGRLXMLPeDPAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.148 [XNIO-1 task-1] 3O7KJRRTQKKhL6-kFa16Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.148 [XNIO-1 task-1] 3O7KJRRTQKKhL6-kFa16Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.148 [XNIO-1 task-1] 3O7KJRRTQKKhL6-kFa16Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.148 [XNIO-1 task-1] 3O7KJRRTQKKhL6-kFa16Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.148 [XNIO-1 task-1] 3O7KJRRTQKKhL6-kFa16Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.148 [XNIO-1 task-1] 3O7KJRRTQKKhL6-kFa16Tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.152 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0fe92d06-3243-4d42-9e59-f99e40199333 +18:11:11.152 [XNIO-1 task-1] hZ7JCSoxT7qh1dEizlmQ3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.152 [XNIO-1 task-1] hZ7JCSoxT7qh1dEizlmQ3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.152 [XNIO-1 task-1] hZ7JCSoxT7qh1dEizlmQ3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.152 [XNIO-1 task-1] hZ7JCSoxT7qh1dEizlmQ3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.153 [XNIO-1 task-1] hZ7JCSoxT7qh1dEizlmQ3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.153 [XNIO-1 task-1] hZ7JCSoxT7qh1dEizlmQ3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.182 [XNIO-1 task-1] 60Jj-oVHQXaRxmX_f3Siww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.182 [XNIO-1 task-1] 60Jj-oVHQXaRxmX_f3Siww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.182 [XNIO-1 task-1] 60Jj-oVHQXaRxmX_f3Siww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.182 [XNIO-1 task-1] 60Jj-oVHQXaRxmX_f3Siww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.182 [XNIO-1 task-1] 60Jj-oVHQXaRxmX_f3Siww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.184 [XNIO-1 task-1] Px1XU_SNR2-ObL3FwLFwMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.185 [XNIO-1 task-1] Px1XU_SNR2-ObL3FwLFwMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.185 [XNIO-1 task-1] Px1XU_SNR2-ObL3FwLFwMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.185 [XNIO-1 task-1] Px1XU_SNR2-ObL3FwLFwMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.185 [XNIO-1 task-1] Px1XU_SNR2-ObL3FwLFwMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.232 [XNIO-1 task-1] oUt6HqqQSAStD81wN4pk4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.232 [XNIO-1 task-1] oUt6HqqQSAStD81wN4pk4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.232 [XNIO-1 task-1] oUt6HqqQSAStD81wN4pk4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.232 [XNIO-1 task-1] oUt6HqqQSAStD81wN4pk4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.233 [XNIO-1 task-1] oUt6HqqQSAStD81wN4pk4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.234 [XNIO-1 task-1] KwPV1DzOTqei7UobFurK4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.234 [XNIO-1 task-1] KwPV1DzOTqei7UobFurK4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.234 [XNIO-1 task-1] KwPV1DzOTqei7UobFurK4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.235 [XNIO-1 task-1] KwPV1DzOTqei7UobFurK4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.235 [XNIO-1 task-1] KwPV1DzOTqei7UobFurK4A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.268 [XNIO-1 task-1] qznJA-3ZTO-dpruKUqEjtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.269 [XNIO-1 task-1] qznJA-3ZTO-dpruKUqEjtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.269 [XNIO-1 task-1] qznJA-3ZTO-dpruKUqEjtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.269 [XNIO-1 task-1] qznJA-3ZTO-dpruKUqEjtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.337 [XNIO-1 task-1] AFhZpdQERKivFmbMtNsyVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.337 [XNIO-1 task-1] AFhZpdQERKivFmbMtNsyVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.337 [XNIO-1 task-1] AFhZpdQERKivFmbMtNsyVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.337 [XNIO-1 task-1] AFhZpdQERKivFmbMtNsyVw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.340 [XNIO-1 task-1] RWG4I7KdQMivipj47eSHow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.340 [XNIO-1 task-1] RWG4I7KdQMivipj47eSHow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.340 [XNIO-1 task-1] RWG4I7KdQMivipj47eSHow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.340 [XNIO-1 task-1] RWG4I7KdQMivipj47eSHow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.340 [XNIO-1 task-1] RWG4I7KdQMivipj47eSHow DEBUG com.networknt.schema.TypeValidator debug - validate( "07520f5d-681f-4306-817c-560e8d7dd948", "07520f5d-681f-4306-817c-560e8d7dd948", refreshToken) +18:11:11.342 [XNIO-1 task-1] E_TmlBTMR3qTjPsMzegc-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.342 [XNIO-1 task-1] E_TmlBTMR3qTjPsMzegc-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.342 [XNIO-1 task-1] E_TmlBTMR3qTjPsMzegc-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.343 [XNIO-1 task-1] E_TmlBTMR3qTjPsMzegc-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.345 [XNIO-1 task-1] b77f2NDtT_KST78fe2-g3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.345 [XNIO-1 task-1] b77f2NDtT_KST78fe2-g3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.345 [XNIO-1 task-1] b77f2NDtT_KST78fe2-g3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.345 [XNIO-1 task-1] b77f2NDtT_KST78fe2-g3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.345 [XNIO-1 task-1] b77f2NDtT_KST78fe2-g3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.366 [XNIO-1 task-1] _XoUQFKFQbW9s_FjXEYLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b04841f-e4db-4db4-9954-bbf0124baf37 +18:11:11.366 [XNIO-1 task-1] _XoUQFKFQbW9s_FjXEYLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.366 [XNIO-1 task-1] _XoUQFKFQbW9s_FjXEYLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.366 [XNIO-1 task-1] _XoUQFKFQbW9s_FjXEYLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b04841f-e4db-4db4-9954-bbf0124baf37 +18:11:11.367 [XNIO-1 task-1] _XoUQFKFQbW9s_FjXEYLug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9b04841f-e4db-4db4-9954-bbf0124baf37 +18:11:11.375 [XNIO-1 task-1] aDN-EynTTb2au015D7VDvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.375 [XNIO-1 task-1] aDN-EynTTb2au015D7VDvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.375 [XNIO-1 task-1] aDN-EynTTb2au015D7VDvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.375 [XNIO-1 task-1] aDN-EynTTb2au015D7VDvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.375 [XNIO-1 task-1] aDN-EynTTb2au015D7VDvw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.382 [XNIO-1 task-1] HTSn2UdMSfmGMUBAPg4dXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.382 [XNIO-1 task-1] HTSn2UdMSfmGMUBAPg4dXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.382 [XNIO-1 task-1] HTSn2UdMSfmGMUBAPg4dXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.382 [XNIO-1 task-1] HTSn2UdMSfmGMUBAPg4dXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.382 [XNIO-1 task-1] HTSn2UdMSfmGMUBAPg4dXA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.386 [XNIO-1 task-1] vKVbTm6xSFWBS4y2icB0ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.386 [XNIO-1 task-1] vKVbTm6xSFWBS4y2icB0ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.386 [XNIO-1 task-1] vKVbTm6xSFWBS4y2icB0ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.386 [XNIO-1 task-1] vKVbTm6xSFWBS4y2icB0ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.386 [XNIO-1 task-1] vKVbTm6xSFWBS4y2icB0ag DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.386 [XNIO-1 task-1] vKVbTm6xSFWBS4y2icB0ag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.389 [XNIO-1 task-1] brpnkp1eS9-LNVK0p38-vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.389 [XNIO-1 task-1] brpnkp1eS9-LNVK0p38-vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.390 [XNIO-1 task-1] brpnkp1eS9-LNVK0p38-vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.390 [XNIO-1 task-1] brpnkp1eS9-LNVK0p38-vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.390 [XNIO-1 task-1] brpnkp1eS9-LNVK0p38-vg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.390 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:273a7781 +18:11:11.391 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:273a7781 +18:11:11.391 [XNIO-1 task-1] bosIRlHXRwqQDLnwYEge1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.392 [XNIO-1 task-1] bosIRlHXRwqQDLnwYEge1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.392 [XNIO-1 task-1] bosIRlHXRwqQDLnwYEge1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.392 [XNIO-1 task-1] bosIRlHXRwqQDLnwYEge1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.398 [XNIO-1 task-1] hFs0QGXfT72cECN1igQ6mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.398 [XNIO-1 task-1] hFs0QGXfT72cECN1igQ6mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.398 [XNIO-1 task-1] hFs0QGXfT72cECN1igQ6mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.398 [XNIO-1 task-1] hFs0QGXfT72cECN1igQ6mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.398 [XNIO-1 task-1] hFs0QGXfT72cECN1igQ6mA DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.398 [XNIO-1 task-1] hFs0QGXfT72cECN1igQ6mA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.400 [XNIO-1 task-1] _lmza233Tde0CIMhgwLnMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.400 [XNIO-1 task-1] _lmza233Tde0CIMhgwLnMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.400 [XNIO-1 task-1] _lmza233Tde0CIMhgwLnMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.401 [XNIO-1 task-1] _lmza233Tde0CIMhgwLnMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.401 [XNIO-1 task-1] _lmza233Tde0CIMhgwLnMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.402 [XNIO-1 task-1] Mq8vTcg1RQ-j0llYeMgmIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.402 [XNIO-1 task-1] Mq8vTcg1RQ-j0llYeMgmIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.402 [XNIO-1 task-1] Mq8vTcg1RQ-j0llYeMgmIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.403 [XNIO-1 task-1] Mq8vTcg1RQ-j0llYeMgmIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.403 [XNIO-1 task-1] Mq8vTcg1RQ-j0llYeMgmIA DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.403 [XNIO-1 task-1] Mq8vTcg1RQ-j0llYeMgmIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.406 [XNIO-1 task-1] _gsWROXYQvKxragEViMDDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b04841f-e4db-4db4-9954-bbf0124baf37 +18:11:11.406 [XNIO-1 task-1] _gsWROXYQvKxragEViMDDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.406 [XNIO-1 task-1] _gsWROXYQvKxragEViMDDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.406 [XNIO-1 task-1] _gsWROXYQvKxragEViMDDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9b04841f-e4db-4db4-9954-bbf0124baf37 +18:11:11.406 [XNIO-1 task-1] _gsWROXYQvKxragEViMDDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9b04841f-e4db-4db4-9954-bbf0124baf37 +18:11:11.411 [XNIO-1 task-1] Qz6z_K6yTV-iIfHsJxk78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.411 [XNIO-1 task-1] Qz6z_K6yTV-iIfHsJxk78Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.411 [XNIO-1 task-1] Qz6z_K6yTV-iIfHsJxk78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.411 [XNIO-1 task-1] Qz6z_K6yTV-iIfHsJxk78Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.412 [XNIO-1 task-1] Qz6z_K6yTV-iIfHsJxk78Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.420 [XNIO-1 task-1] 8x43r-yoQTeHsGw223XVPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.420 [XNIO-1 task-1] 8x43r-yoQTeHsGw223XVPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.420 [XNIO-1 task-1] 8x43r-yoQTeHsGw223XVPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.420 [XNIO-1 task-1] 8x43r-yoQTeHsGw223XVPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.420 [XNIO-1 task-1] 8x43r-yoQTeHsGw223XVPA DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.420 [XNIO-1 task-1] 8x43r-yoQTeHsGw223XVPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.425 [XNIO-1 task-1] FF1Kvf74Th2hsEgVCivVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.426 [XNIO-1 task-1] FF1Kvf74Th2hsEgVCivVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.426 [XNIO-1 task-1] FF1Kvf74Th2hsEgVCivVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.426 [XNIO-1 task-1] FF1Kvf74Th2hsEgVCivVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.426 [XNIO-1 task-1] FF1Kvf74Th2hsEgVCivVrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.429 [XNIO-1 task-1] LmVUuPJSQG20FjAh4SeSiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.429 [XNIO-1 task-1] LmVUuPJSQG20FjAh4SeSiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.429 [XNIO-1 task-1] LmVUuPJSQG20FjAh4SeSiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.429 [XNIO-1 task-1] LmVUuPJSQG20FjAh4SeSiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.429 [XNIO-1 task-1] LmVUuPJSQG20FjAh4SeSiw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.434 [XNIO-1 task-1] s5A9xR5qRb6QCzXWd_RykA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.434 [XNIO-1 task-1] s5A9xR5qRb6QCzXWd_RykA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.434 [XNIO-1 task-1] s5A9xR5qRb6QCzXWd_RykA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.434 [XNIO-1 task-1] s5A9xR5qRb6QCzXWd_RykA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.435 [XNIO-1 task-1] s5A9xR5qRb6QCzXWd_RykA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.437 [XNIO-1 task-1] l4mtm1FzRHOQH7Gi3RVSkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.437 [XNIO-1 task-1] l4mtm1FzRHOQH7Gi3RVSkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.437 [XNIO-1 task-1] l4mtm1FzRHOQH7Gi3RVSkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.437 [XNIO-1 task-1] l4mtm1FzRHOQH7Gi3RVSkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.440 [XNIO-1 task-1] ECm-4L42RYq1zdtGzyU3lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.440 [XNIO-1 task-1] ECm-4L42RYq1zdtGzyU3lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.440 [XNIO-1 task-1] ECm-4L42RYq1zdtGzyU3lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.440 [XNIO-1 task-1] ECm-4L42RYq1zdtGzyU3lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.441 [XNIO-1 task-1] ECm-4L42RYq1zdtGzyU3lw DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.441 [XNIO-1 task-1] ECm-4L42RYq1zdtGzyU3lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.445 [XNIO-1 task-1] LD6nChzUQfq7j3OK8iXT6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.446 [XNIO-1 task-1] LD6nChzUQfq7j3OK8iXT6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.446 [XNIO-1 task-1] LD6nChzUQfq7j3OK8iXT6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.446 [XNIO-1 task-1] LD6nChzUQfq7j3OK8iXT6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.453 [XNIO-1 task-1] RTeALTTrTSi5486JoSkQag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.453 [XNIO-1 task-1] RTeALTTrTSi5486JoSkQag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.453 [XNIO-1 task-1] RTeALTTrTSi5486JoSkQag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.453 [XNIO-1 task-1] RTeALTTrTSi5486JoSkQag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.453 [XNIO-1 task-1] RTeALTTrTSi5486JoSkQag DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.453 [XNIO-1 task-1] RTeALTTrTSi5486JoSkQag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.455 [XNIO-1 task-1] FUoK6u6SRCS3g2m6qYh3jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.455 [XNIO-1 task-1] FUoK6u6SRCS3g2m6qYh3jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.455 [XNIO-1 task-1] FUoK6u6SRCS3g2m6qYh3jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.455 [XNIO-1 task-1] FUoK6u6SRCS3g2m6qYh3jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.455 [XNIO-1 task-1] FUoK6u6SRCS3g2m6qYh3jg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.460 [XNIO-1 task-1] LlcDj-C-TD20R7K5B2_OLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.460 [XNIO-1 task-1] LlcDj-C-TD20R7K5B2_OLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.460 [XNIO-1 task-1] LlcDj-C-TD20R7K5B2_OLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.460 [XNIO-1 task-1] LlcDj-C-TD20R7K5B2_OLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.466 [XNIO-1 task-1] _TT5Gob_RM6whk5WTNuVew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.466 [XNIO-1 task-1] _TT5Gob_RM6whk5WTNuVew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.466 [XNIO-1 task-1] _TT5Gob_RM6whk5WTNuVew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.466 [XNIO-1 task-1] _TT5Gob_RM6whk5WTNuVew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.466 [XNIO-1 task-1] _TT5Gob_RM6whk5WTNuVew DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.466 [XNIO-1 task-1] _TT5Gob_RM6whk5WTNuVew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.468 [XNIO-1 task-1] LRNN1OKISuq4snAID8wYEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.468 [XNIO-1 task-1] LRNN1OKISuq4snAID8wYEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.469 [XNIO-1 task-1] LRNN1OKISuq4snAID8wYEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.469 [XNIO-1 task-1] LRNN1OKISuq4snAID8wYEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.469 [XNIO-1 task-1] LRNN1OKISuq4snAID8wYEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.476 [XNIO-1 task-1] PYxoz9i-SJ24mPekPK_bDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.477 [XNIO-1 task-1] PYxoz9i-SJ24mPekPK_bDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.477 [XNIO-1 task-1] PYxoz9i-SJ24mPekPK_bDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.477 [XNIO-1 task-1] PYxoz9i-SJ24mPekPK_bDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.477 [XNIO-1 task-1] PYxoz9i-SJ24mPekPK_bDA DEBUG com.networknt.schema.TypeValidator debug - validate( "07520f5d-681f-4306-817c-560e8d7dd948", "07520f5d-681f-4306-817c-560e8d7dd948", refreshToken) +18:11:11.477 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.485 [XNIO-1 task-1] 9RaWSwjkQqqKrnGfaM8jUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.485 [XNIO-1 task-1] 9RaWSwjkQqqKrnGfaM8jUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.485 [XNIO-1 task-1] 9RaWSwjkQqqKrnGfaM8jUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.485 [XNIO-1 task-1] 9RaWSwjkQqqKrnGfaM8jUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.485 [XNIO-1 task-1] 9RaWSwjkQqqKrnGfaM8jUA DEBUG com.networknt.schema.TypeValidator debug - validate( "07520f5d-681f-4306-817c-560e8d7dd948", "07520f5d-681f-4306-817c-560e8d7dd948", refreshToken) +18:11:11.485 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.491 [XNIO-1 task-1] atYwUr_yTKmA0r083wJSMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.491 [XNIO-1 task-1] atYwUr_yTKmA0r083wJSMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.491 [XNIO-1 task-1] atYwUr_yTKmA0r083wJSMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.491 [XNIO-1 task-1] atYwUr_yTKmA0r083wJSMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948, base path is set to: null +18:11:11.491 [XNIO-1 task-1] atYwUr_yTKmA0r083wJSMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "07520f5d-681f-4306-817c-560e8d7dd948", "07520f5d-681f-4306-817c-560e8d7dd948", refreshToken) +18:11:11.492 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.505 [XNIO-1 task-1] pEtFLIrpRKWtQ0W_K88tlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.506 [XNIO-1 task-1] pEtFLIrpRKWtQ0W_K88tlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.506 [XNIO-1 task-1] pEtFLIrpRKWtQ0W_K88tlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.506 [XNIO-1 task-1] pEtFLIrpRKWtQ0W_K88tlw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.519 [XNIO-1 task-1] VqkPgJyXQGmeQ2H_4t-5Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.519 [XNIO-1 task-1] VqkPgJyXQGmeQ2H_4t-5Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.519 [XNIO-1 task-1] VqkPgJyXQGmeQ2H_4t-5Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.519 [XNIO-1 task-1] VqkPgJyXQGmeQ2H_4t-5Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.520 [XNIO-1 task-1] VqkPgJyXQGmeQ2H_4t-5Fw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.524 [XNIO-1 task-1] 86-m20SDRcKFciG9HS-v-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.524 [XNIO-1 task-1] 86-m20SDRcKFciG9HS-v-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.524 [XNIO-1 task-1] 86-m20SDRcKFciG9HS-v-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.525 [XNIO-1 task-1] 86-m20SDRcKFciG9HS-v-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.525 [XNIO-1 task-1] 86-m20SDRcKFciG9HS-v-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.526 [XNIO-1 task-1] 86-m20SDRcKFciG9HS-v-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 07520f5d-681f-4306-817c-560e8d7dd948 is not found.","severity":"ERROR"} +18:11:11.531 [XNIO-1 task-1] tGhiphgUSTCPFa-LnNQISQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.531 [XNIO-1 task-1] tGhiphgUSTCPFa-LnNQISQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.531 [XNIO-1 task-1] tGhiphgUSTCPFa-LnNQISQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.531 [XNIO-1 task-1] tGhiphgUSTCPFa-LnNQISQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.531 [XNIO-1 task-1] tGhiphgUSTCPFa-LnNQISQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.532 [XNIO-1 task-1] tGhiphgUSTCPFa-LnNQISQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 07520f5d-681f-4306-817c-560e8d7dd948 is not found.","severity":"ERROR"} +18:11:11.536 [XNIO-1 task-1] FtYTGojNQfCoou1uKv6g4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.536 [XNIO-1 task-1] FtYTGojNQfCoou1uKv6g4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.536 [XNIO-1 task-1] FtYTGojNQfCoou1uKv6g4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.536 [XNIO-1 task-1] FtYTGojNQfCoou1uKv6g4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.536 [XNIO-1 task-1] FtYTGojNQfCoou1uKv6g4w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 07520f5d-681f-4306-817c-560e8d7dd948 +18:11:11.537 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f27dd083 +18:11:11.538 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f27dd083 +18:11:11.539 [XNIO-1 task-1] suBCk-6WQ0mQPtXc0O7YJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2858e9db-3f0d-4bd2-9e01-9a634d0ee508, base path is set to: null +18:11:11.540 [XNIO-1 task-1] suBCk-6WQ0mQPtXc0O7YJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.540 [XNIO-1 task-1] suBCk-6WQ0mQPtXc0O7YJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.540 [XNIO-1 task-1] suBCk-6WQ0mQPtXc0O7YJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2858e9db-3f0d-4bd2-9e01-9a634d0ee508, base path is set to: null +18:11:11.540 [XNIO-1 task-1] suBCk-6WQ0mQPtXc0O7YJA DEBUG com.networknt.schema.TypeValidator debug - validate( "2858e9db-3f0d-4bd2-9e01-9a634d0ee508", "2858e9db-3f0d-4bd2-9e01-9a634d0ee508", refreshToken) +18:11:11.547 [XNIO-1 task-1] YQCRiS2yTuWwOtVCyby4MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.547 [XNIO-1 task-1] YQCRiS2yTuWwOtVCyby4MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.547 [XNIO-1 task-1] YQCRiS2yTuWwOtVCyby4MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.547 [XNIO-1 task-1] YQCRiS2yTuWwOtVCyby4MA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.547 [XNIO-1 task-1] YQCRiS2yTuWwOtVCyby4MA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.550 [XNIO-1 task-1] 3V3THsA1SKWzBJLYskgs5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.551 [XNIO-1 task-1] 3V3THsA1SKWzBJLYskgs5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.551 [XNIO-1 task-1] 3V3THsA1SKWzBJLYskgs5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.551 [XNIO-1 task-1] 3V3THsA1SKWzBJLYskgs5Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.552 [XNIO-1 task-1] tOWL7pSOSfGo4ZmCvo-j9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57a903a5-910c-48ae-9a32-6b1bd0899e57 +18:11:11.552 [XNIO-1 task-1] tOWL7pSOSfGo4ZmCvo-j9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.552 [XNIO-1 task-1] tOWL7pSOSfGo4ZmCvo-j9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.552 [XNIO-1 task-1] tOWL7pSOSfGo4ZmCvo-j9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57a903a5-910c-48ae-9a32-6b1bd0899e57 +18:11:11.553 [XNIO-1 task-1] tOWL7pSOSfGo4ZmCvo-j9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 57a903a5-910c-48ae-9a32-6b1bd0899e57 +18:11:11.555 [XNIO-1 task-1] DdEM1sHsTpOaibvVzV3CMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.555 [XNIO-1 task-1] DdEM1sHsTpOaibvVzV3CMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.555 [XNIO-1 task-1] DdEM1sHsTpOaibvVzV3CMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.555 [XNIO-1 task-1] DdEM1sHsTpOaibvVzV3CMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.555 [XNIO-1 task-1] DdEM1sHsTpOaibvVzV3CMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.556 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:788aecc0 +18:11:11.557 [XNIO-1 task-1] wjXcYZD8TpK3t4RjNhU_qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.557 [XNIO-1 task-1] wjXcYZD8TpK3t4RjNhU_qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.557 [XNIO-1 task-1] wjXcYZD8TpK3t4RjNhU_qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.557 [XNIO-1 task-1] wjXcYZD8TpK3t4RjNhU_qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.557 [XNIO-1 task-1] wjXcYZD8TpK3t4RjNhU_qA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.559 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:788aecc0 +18:11:11.560 [XNIO-1 task-1] ES34h4kDSPqoYSR876dsrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.560 [XNIO-1 task-1] ES34h4kDSPqoYSR876dsrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.560 [XNIO-1 task-1] ES34h4kDSPqoYSR876dsrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.561 [XNIO-1 task-1] ES34h4kDSPqoYSR876dsrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.562 [XNIO-1 task-1] lQg7JsU8RdGp_00g2PfBSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57a903a5-910c-48ae-9a32-6b1bd0899e57, base path is set to: null +18:11:11.562 [XNIO-1 task-1] lQg7JsU8RdGp_00g2PfBSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57a903a5-910c-48ae-9a32-6b1bd0899e57 +18:11:11.562 [XNIO-1 task-1] lQg7JsU8RdGp_00g2PfBSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.562 [XNIO-1 task-1] lQg7JsU8RdGp_00g2PfBSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.562 [XNIO-1 task-1] lQg7JsU8RdGp_00g2PfBSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57a903a5-910c-48ae-9a32-6b1bd0899e57, base path is set to: null +18:11:11.563 [XNIO-1 task-1] lQg7JsU8RdGp_00g2PfBSA DEBUG com.networknt.schema.TypeValidator debug - validate( "57a903a5-910c-48ae-9a32-6b1bd0899e57", "57a903a5-910c-48ae-9a32-6b1bd0899e57", refreshToken) +18:11:11.564 [XNIO-1 task-1] fW0e2Nk4QTWQ5bKAz1_MkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.564 [XNIO-1 task-1] fW0e2Nk4QTWQ5bKAz1_MkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.564 [XNIO-1 task-1] fW0e2Nk4QTWQ5bKAz1_MkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.564 [XNIO-1 task-1] fW0e2Nk4QTWQ5bKAz1_MkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.565 [XNIO-1 task-1] fW0e2Nk4QTWQ5bKAz1_MkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.565 [XNIO-1 task-1] fW0e2Nk4QTWQ5bKAz1_MkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.567 [XNIO-1 task-1] V4y1HOLxQGaZA0WQa2l0iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.567 [XNIO-1 task-1] V4y1HOLxQGaZA0WQa2l0iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.567 [XNIO-1 task-1] V4y1HOLxQGaZA0WQa2l0iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.567 [XNIO-1 task-1] V4y1HOLxQGaZA0WQa2l0iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.567 [XNIO-1 task-1] V4y1HOLxQGaZA0WQa2l0iA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.570 [XNIO-1 task-1] JpXVa5PAR_i2CSdhCDxcRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.570 [XNIO-1 task-1] JpXVa5PAR_i2CSdhCDxcRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.570 [XNIO-1 task-1] JpXVa5PAR_i2CSdhCDxcRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.570 [XNIO-1 task-1] JpXVa5PAR_i2CSdhCDxcRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.570 [XNIO-1 task-1] JpXVa5PAR_i2CSdhCDxcRw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.570 [XNIO-1 task-1] JpXVa5PAR_i2CSdhCDxcRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.572 [XNIO-1 task-1] afZMuKSmQDW8gKHC_PhKPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.572 [XNIO-1 task-1] afZMuKSmQDW8gKHC_PhKPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.572 [XNIO-1 task-1] afZMuKSmQDW8gKHC_PhKPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.573 [XNIO-1 task-1] afZMuKSmQDW8gKHC_PhKPA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.579 [XNIO-1 task-1] iFPGZ_CyQO6avV01cdnPAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.579 [XNIO-1 task-1] iFPGZ_CyQO6avV01cdnPAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.579 [XNIO-1 task-1] iFPGZ_CyQO6avV01cdnPAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.579 [XNIO-1 task-1] iFPGZ_CyQO6avV01cdnPAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.579 [XNIO-1 task-1] iFPGZ_CyQO6avV01cdnPAw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.579 [XNIO-1 task-1] iFPGZ_CyQO6avV01cdnPAw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.581 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:291058bf-db6a-4250-88a5-82903c19878f +18:11:11.582 [XNIO-1 task-1] ypUyhZIDSFGc_6VZFLxO0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.583 [XNIO-1 task-1] ypUyhZIDSFGc_6VZFLxO0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.583 [XNIO-1 task-1] ypUyhZIDSFGc_6VZFLxO0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.583 [XNIO-1 task-1] ypUyhZIDSFGc_6VZFLxO0Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.587 [XNIO-1 task-1] LtZbXPKMQ6KsInJyVg790g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.587 [XNIO-1 task-1] LtZbXPKMQ6KsInJyVg790g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.587 [XNIO-1 task-1] LtZbXPKMQ6KsInJyVg790g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.587 [XNIO-1 task-1] LtZbXPKMQ6KsInJyVg790g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.588 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f27dd083 +18:11:11.591 [XNIO-1 task-1] wQ1jbVQMStuqrZuThw29yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.591 [XNIO-1 task-1] wQ1jbVQMStuqrZuThw29yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.591 [XNIO-1 task-1] wQ1jbVQMStuqrZuThw29yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.591 [XNIO-1 task-1] wQ1jbVQMStuqrZuThw29yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.595 [XNIO-1 task-1] QGDVcoF2Q---opH9idvG3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.595 [XNIO-1 task-1] QGDVcoF2Q---opH9idvG3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.595 [XNIO-1 task-1] QGDVcoF2Q---opH9idvG3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.595 [XNIO-1 task-1] QGDVcoF2Q---opH9idvG3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.595 [XNIO-1 task-1] QGDVcoF2Q---opH9idvG3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.596 [XNIO-1 task-1] QGDVcoF2Q---opH9idvG3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.600 [XNIO-1 task-1] zHATNxPoR5CTuquB-14MFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.600 [XNIO-1 task-1] zHATNxPoR5CTuquB-14MFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.600 [XNIO-1 task-1] zHATNxPoR5CTuquB-14MFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.600 [XNIO-1 task-1] zHATNxPoR5CTuquB-14MFA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.601 [XNIO-1 task-1] RvmKNZsJScmk8E8hOszYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.601 [XNIO-1 task-1] RvmKNZsJScmk8E8hOszYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.601 [XNIO-1 task-1] RvmKNZsJScmk8E8hOszYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.602 [XNIO-1 task-1] RvmKNZsJScmk8E8hOszYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.602 [XNIO-1 task-1] RvmKNZsJScmk8E8hOszYKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.607 [XNIO-1 task-1] QHECHMuHSbqGSdmk31GgKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.607 [XNIO-1 task-1] QHECHMuHSbqGSdmk31GgKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.607 [XNIO-1 task-1] QHECHMuHSbqGSdmk31GgKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.607 [XNIO-1 task-1] QHECHMuHSbqGSdmk31GgKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.607 [XNIO-1 task-1] QHECHMuHSbqGSdmk31GgKg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.607 [XNIO-1 task-1] QHECHMuHSbqGSdmk31GgKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.609 [XNIO-1 task-1] Xc7MkUPyQm-caWBWaMYWmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.609 [XNIO-1 task-1] Xc7MkUPyQm-caWBWaMYWmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.609 [XNIO-1 task-1] Xc7MkUPyQm-caWBWaMYWmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.609 [XNIO-1 task-1] Xc7MkUPyQm-caWBWaMYWmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.609 [XNIO-1 task-1] Xc7MkUPyQm-caWBWaMYWmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.611 [XNIO-1 task-1] c3Dv3yZHRAmodiy17HfG4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.611 [XNIO-1 task-1] c3Dv3yZHRAmodiy17HfG4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.611 [XNIO-1 task-1] c3Dv3yZHRAmodiy17HfG4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.612 [XNIO-1 task-1] c3Dv3yZHRAmodiy17HfG4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.612 [XNIO-1 task-1] c3Dv3yZHRAmodiy17HfG4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.612 [XNIO-1 task-1] c3Dv3yZHRAmodiy17HfG4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.614 [XNIO-1 task-1] iETrpUHeTzi-BxJ_ycHLTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.614 [XNIO-1 task-1] iETrpUHeTzi-BxJ_ycHLTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.615 [XNIO-1 task-1] iETrpUHeTzi-BxJ_ycHLTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.615 [XNIO-1 task-1] iETrpUHeTzi-BxJ_ycHLTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.618 [XNIO-1 task-1] DpuFVCzpRAqrB1jRPcj-ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.619 [XNIO-1 task-1] DpuFVCzpRAqrB1jRPcj-ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.619 [XNIO-1 task-1] DpuFVCzpRAqrB1jRPcj-ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.619 [XNIO-1 task-1] DpuFVCzpRAqrB1jRPcj-ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.619 [XNIO-1 task-1] DpuFVCzpRAqrB1jRPcj-ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.619 [XNIO-1 task-1] DpuFVCzpRAqrB1jRPcj-ZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.620 [XNIO-1 task-1] OzB0jPbWQAOQCBiPKVPJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.620 [XNIO-1 task-1] OzB0jPbWQAOQCBiPKVPJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.620 [XNIO-1 task-1] OzB0jPbWQAOQCBiPKVPJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.620 [XNIO-1 task-1] OzB0jPbWQAOQCBiPKVPJxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.621 [XNIO-1 task-1] OzB0jPbWQAOQCBiPKVPJxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.623 [XNIO-1 task-1] yqrp3uhXSZ-KwUZY7rMbVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.623 [XNIO-1 task-1] yqrp3uhXSZ-KwUZY7rMbVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.623 [XNIO-1 task-1] yqrp3uhXSZ-KwUZY7rMbVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.623 [XNIO-1 task-1] yqrp3uhXSZ-KwUZY7rMbVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.623 [XNIO-1 task-1] yqrp3uhXSZ-KwUZY7rMbVg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.623 [XNIO-1 task-1] yqrp3uhXSZ-KwUZY7rMbVg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.626 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1bb5668b-a4e2-4193-ac88-f57c6f6777d0 +18:11:11.626 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1bb5668b-a4e2-4193-ac88-f57c6f6777d0 +18:11:11.626 [XNIO-1 task-1] 4r15Vv5CSWKsPawOXm3q2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.627 [XNIO-1 task-1] 4r15Vv5CSWKsPawOXm3q2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.627 [XNIO-1 task-1] 4r15Vv5CSWKsPawOXm3q2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.627 [XNIO-1 task-1] 4r15Vv5CSWKsPawOXm3q2g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.627 [XNIO-1 task-1] 4r15Vv5CSWKsPawOXm3q2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.629 [XNIO-1 task-1] QcCv8mYyQwKtDLl92vPiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.629 [XNIO-1 task-1] QcCv8mYyQwKtDLl92vPiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.629 [XNIO-1 task-1] QcCv8mYyQwKtDLl92vPiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.629 [XNIO-1 task-1] QcCv8mYyQwKtDLl92vPiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.630 [XNIO-1 task-1] QcCv8mYyQwKtDLl92vPiEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.633 [XNIO-1 task-1] g8BhdyjkSqOnmfeuAra4Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.633 [XNIO-1 task-1] g8BhdyjkSqOnmfeuAra4Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.633 [XNIO-1 task-1] g8BhdyjkSqOnmfeuAra4Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.633 [XNIO-1 task-1] g8BhdyjkSqOnmfeuAra4Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.633 [XNIO-1 task-1] g8BhdyjkSqOnmfeuAra4Iw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.641 [XNIO-1 task-1] Qi2QOTKKQMa34-jU657M2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.641 [XNIO-1 task-1] Qi2QOTKKQMa34-jU657M2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.641 [XNIO-1 task-1] Qi2QOTKKQMa34-jU657M2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.642 [XNIO-1 task-1] Qi2QOTKKQMa34-jU657M2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.642 [XNIO-1 task-1] Qi2QOTKKQMa34-jU657M2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.645 [XNIO-1 task-1] nIROCssRTza6z0jkHP8uSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.645 [XNIO-1 task-1] nIROCssRTza6z0jkHP8uSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.645 [XNIO-1 task-1] nIROCssRTza6z0jkHP8uSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.645 [XNIO-1 task-1] nIROCssRTza6z0jkHP8uSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.645 [XNIO-1 task-1] nIROCssRTza6z0jkHP8uSw DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.646 [XNIO-1 task-1] nIROCssRTza6z0jkHP8uSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.648 [XNIO-1 task-1] LMweWyvGTN2oPEWkwYzOGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.648 [XNIO-1 task-1] LMweWyvGTN2oPEWkwYzOGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.648 [XNIO-1 task-1] LMweWyvGTN2oPEWkwYzOGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.648 [XNIO-1 task-1] LMweWyvGTN2oPEWkwYzOGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.655 [XNIO-1 task-1] vIE0cz3KSceP__q_w9wP-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.656 [XNIO-1 task-1] vIE0cz3KSceP__q_w9wP-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.656 [XNIO-1 task-1] vIE0cz3KSceP__q_w9wP-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.656 [XNIO-1 task-1] vIE0cz3KSceP__q_w9wP-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.656 [XNIO-1 task-1] vIE0cz3KSceP__q_w9wP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.656 [XNIO-1 task-1] vIE0cz3KSceP__q_w9wP-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.658 [XNIO-1 task-1] hHe_32vuSPKq3nqlvs4uBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.658 [XNIO-1 task-1] hHe_32vuSPKq3nqlvs4uBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.658 [XNIO-1 task-1] hHe_32vuSPKq3nqlvs4uBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.658 [XNIO-1 task-1] hHe_32vuSPKq3nqlvs4uBw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.660 [XNIO-1 task-1] YwxHZY6jRgmiKj7tjYd7Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.660 [XNIO-1 task-1] YwxHZY6jRgmiKj7tjYd7Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.661 [XNIO-1 task-1] YwxHZY6jRgmiKj7tjYd7Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.661 [XNIO-1 task-1] YwxHZY6jRgmiKj7tjYd7Hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.665 [XNIO-1 task-1] 2WjaY8N8Q8e5969Rl56tOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.665 [XNIO-1 task-1] 2WjaY8N8Q8e5969Rl56tOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.665 [XNIO-1 task-1] 2WjaY8N8Q8e5969Rl56tOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.665 [XNIO-1 task-1] 2WjaY8N8Q8e5969Rl56tOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.665 [XNIO-1 task-1] 2WjaY8N8Q8e5969Rl56tOw DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.665 [XNIO-1 task-1] 2WjaY8N8Q8e5969Rl56tOw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.667 [XNIO-1 task-1] lVjg3S2-SOqMyIbc0PmEMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.667 [XNIO-1 task-1] lVjg3S2-SOqMyIbc0PmEMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.667 [XNIO-1 task-1] lVjg3S2-SOqMyIbc0PmEMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.667 [XNIO-1 task-1] lVjg3S2-SOqMyIbc0PmEMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.667 [XNIO-1 task-1] lVjg3S2-SOqMyIbc0PmEMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.669 [XNIO-1 task-1] QXp4Un0KRueCTJaO-VV_fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.669 [XNIO-1 task-1] QXp4Un0KRueCTJaO-VV_fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.669 [XNIO-1 task-1] QXp4Un0KRueCTJaO-VV_fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.669 [XNIO-1 task-1] QXp4Un0KRueCTJaO-VV_fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.669 [XNIO-1 task-1] QXp4Un0KRueCTJaO-VV_fw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.673 [XNIO-1 task-1] HGw7FvbtRuezdcfx6S6iTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.673 [XNIO-1 task-1] HGw7FvbtRuezdcfx6S6iTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.673 [XNIO-1 task-1] HGw7FvbtRuezdcfx6S6iTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.673 [XNIO-1 task-1] HGw7FvbtRuezdcfx6S6iTw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.677 [XNIO-1 task-1] 1IYPKs8wTEqUsu3wFp8ppA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.677 [XNIO-1 task-1] 1IYPKs8wTEqUsu3wFp8ppA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.677 [XNIO-1 task-1] 1IYPKs8wTEqUsu3wFp8ppA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.677 [XNIO-1 task-1] 1IYPKs8wTEqUsu3wFp8ppA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.677 [XNIO-1 task-1] 1IYPKs8wTEqUsu3wFp8ppA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.680 [XNIO-1 task-1] TNNRCyYeS22V17f0OfktXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.680 [XNIO-1 task-1] TNNRCyYeS22V17f0OfktXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.680 [XNIO-1 task-1] TNNRCyYeS22V17f0OfktXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.680 [XNIO-1 task-1] TNNRCyYeS22V17f0OfktXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.680 [XNIO-1 task-1] TNNRCyYeS22V17f0OfktXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.680 [XNIO-1 task-1] TNNRCyYeS22V17f0OfktXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.683 [XNIO-1 task-1] baUbHuhmSROPUIs01OR8CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.683 [XNIO-1 task-1] baUbHuhmSROPUIs01OR8CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.683 [XNIO-1 task-1] baUbHuhmSROPUIs01OR8CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.683 [XNIO-1 task-1] baUbHuhmSROPUIs01OR8CQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.685 [XNIO-1 task-1] VUA4mQUcRxK9YKIUvNb1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.685 [XNIO-1 task-1] VUA4mQUcRxK9YKIUvNb1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.685 [XNIO-1 task-1] VUA4mQUcRxK9YKIUvNb1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.685 [XNIO-1 task-1] VUA4mQUcRxK9YKIUvNb1cQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.686 [XNIO-1 task-1] B39e6LelQkiwjSx2MUq-4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.686 [XNIO-1 task-1] B39e6LelQkiwjSx2MUq-4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.686 [XNIO-1 task-1] B39e6LelQkiwjSx2MUq-4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.686 [XNIO-1 task-1] B39e6LelQkiwjSx2MUq-4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.690 [XNIO-1 task-1] EjNLzx8oTRqfpvuDTgXlqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.690 [XNIO-1 task-1] EjNLzx8oTRqfpvuDTgXlqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.690 [XNIO-1 task-1] EjNLzx8oTRqfpvuDTgXlqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.690 [XNIO-1 task-1] EjNLzx8oTRqfpvuDTgXlqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.691 [XNIO-1 task-1] EjNLzx8oTRqfpvuDTgXlqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.691 [XNIO-1 task-1] EjNLzx8oTRqfpvuDTgXlqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.692 [XNIO-1 task-1] Ejx6oL7nRPSGEqvceBLO8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.692 [XNIO-1 task-1] Ejx6oL7nRPSGEqvceBLO8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.692 [XNIO-1 task-1] Ejx6oL7nRPSGEqvceBLO8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.692 [XNIO-1 task-1] Ejx6oL7nRPSGEqvceBLO8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.692 [XNIO-1 task-1] Ejx6oL7nRPSGEqvceBLO8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.694 [XNIO-1 task-1] edPmdEstQa2tm9p5HORAlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.694 [XNIO-1 task-1] edPmdEstQa2tm9p5HORAlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.694 [XNIO-1 task-1] edPmdEstQa2tm9p5HORAlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.694 [XNIO-1 task-1] edPmdEstQa2tm9p5HORAlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.694 [XNIO-1 task-1] edPmdEstQa2tm9p5HORAlw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.694 [XNIO-1 task-1] edPmdEstQa2tm9p5HORAlw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.696 [XNIO-1 task-1] 7DBenaLhRn6yCFi3eSvnPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.696 [XNIO-1 task-1] 7DBenaLhRn6yCFi3eSvnPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.696 [XNIO-1 task-1] 7DBenaLhRn6yCFi3eSvnPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.696 [XNIO-1 task-1] 7DBenaLhRn6yCFi3eSvnPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.696 [XNIO-1 task-1] 7DBenaLhRn6yCFi3eSvnPg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.698 [XNIO-1 task-1] 4LYvSCJmTca3iA9N240NvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.698 [XNIO-1 task-1] 4LYvSCJmTca3iA9N240NvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.698 [XNIO-1 task-1] 4LYvSCJmTca3iA9N240NvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.698 [XNIO-1 task-1] 4LYvSCJmTca3iA9N240NvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.698 [XNIO-1 task-1] 4LYvSCJmTca3iA9N240NvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.698 [XNIO-1 task-1] 4LYvSCJmTca3iA9N240NvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.700 [XNIO-1 task-1] 2xEWRsDYRI6ndc_gwSZtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.700 [XNIO-1 task-1] 2xEWRsDYRI6ndc_gwSZtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.700 [XNIO-1 task-1] 2xEWRsDYRI6ndc_gwSZtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.700 [XNIO-1 task-1] 2xEWRsDYRI6ndc_gwSZtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.700 [XNIO-1 task-1] 2xEWRsDYRI6ndc_gwSZtNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.702 [XNIO-1 task-1] WBBFxTEhTf-ymwYPAgUy9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.702 [XNIO-1 task-1] WBBFxTEhTf-ymwYPAgUy9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.702 [XNIO-1 task-1] WBBFxTEhTf-ymwYPAgUy9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.702 [XNIO-1 task-1] WBBFxTEhTf-ymwYPAgUy9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.702 [XNIO-1 task-1] WBBFxTEhTf-ymwYPAgUy9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.706 [XNIO-1 task-1] dqcZTWohQnyU8XWmFB04Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd +18:11:11.706 [XNIO-1 task-1] dqcZTWohQnyU8XWmFB04Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.706 [XNIO-1 task-1] dqcZTWohQnyU8XWmFB04Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.706 [XNIO-1 task-1] dqcZTWohQnyU8XWmFB04Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd +18:11:11.706 [XNIO-1 task-1] dqcZTWohQnyU8XWmFB04Yw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd +18:11:11.712 [XNIO-1 task-1] WQQZd7veRrGhqlodmxMI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.713 [XNIO-1 task-1] WQQZd7veRrGhqlodmxMI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.713 [XNIO-1 task-1] WQQZd7veRrGhqlodmxMI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.713 [XNIO-1 task-1] WQQZd7veRrGhqlodmxMI8Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.715 [XNIO-1 task-1] z4MO8WqxR62FddHVhx5Csg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.715 [XNIO-1 task-1] z4MO8WqxR62FddHVhx5Csg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.715 [XNIO-1 task-1] z4MO8WqxR62FddHVhx5Csg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.715 [XNIO-1 task-1] z4MO8WqxR62FddHVhx5Csg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.715 [XNIO-1 task-1] z4MO8WqxR62FddHVhx5Csg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.716 [XNIO-1 task-1] -YlQ5P16R8SaTXqE-yRVcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.716 [XNIO-1 task-1] -YlQ5P16R8SaTXqE-yRVcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.717 [XNIO-1 task-1] -YlQ5P16R8SaTXqE-yRVcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.717 [XNIO-1 task-1] -YlQ5P16R8SaTXqE-yRVcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.718 [XNIO-1 task-1] tP3vhez1Rx2uK-cpBBGpQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.718 [XNIO-1 task-1] tP3vhez1Rx2uK-cpBBGpQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.718 [XNIO-1 task-1] tP3vhez1Rx2uK-cpBBGpQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.718 [XNIO-1 task-1] tP3vhez1Rx2uK-cpBBGpQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.722 [XNIO-1 task-1] 4kldmOesRd65mvSLHwgKDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd, base path is set to: null +18:11:11.722 [XNIO-1 task-1] 4kldmOesRd65mvSLHwgKDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.722 [XNIO-1 task-1] 4kldmOesRd65mvSLHwgKDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.722 [XNIO-1 task-1] 4kldmOesRd65mvSLHwgKDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd, base path is set to: null +18:11:11.722 [XNIO-1 task-1] 4kldmOesRd65mvSLHwgKDA DEBUG com.networknt.schema.TypeValidator debug - validate( "da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd", "da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd", refreshToken) +18:11:11.724 [XNIO-1 task-1] 4kldmOesRd65mvSLHwgKDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd is not found.","severity":"ERROR"} +18:11:11.726 [XNIO-1 task-1] Cm7B1L6UTlmRIRff764sGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.726 [XNIO-1 task-1] Cm7B1L6UTlmRIRff764sGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.726 [XNIO-1 task-1] Cm7B1L6UTlmRIRff764sGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.726 [XNIO-1 task-1] Cm7B1L6UTlmRIRff764sGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.726 [XNIO-1 task-1] Cm7B1L6UTlmRIRff764sGw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.727 [XNIO-1 task-1] eXCv45dqSC-Lv22Mce03ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd, base path is set to: null +18:11:11.727 [XNIO-1 task-1] eXCv45dqSC-Lv22Mce03ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.728 [XNIO-1 task-1] eXCv45dqSC-Lv22Mce03ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.728 [XNIO-1 task-1] eXCv45dqSC-Lv22Mce03ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd, base path is set to: null +18:11:11.728 [XNIO-1 task-1] eXCv45dqSC-Lv22Mce03ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd", "da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd", refreshToken) +18:11:11.728 [XNIO-1 task-1] eXCv45dqSC-Lv22Mce03ZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token da5cdfed-e2f6-4ac7-b6b7-049bbc601cbd is not found.","severity":"ERROR"} +18:11:11.730 [XNIO-1 task-1] NAYTjEuWQG2U-YF_4uAfsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.730 [XNIO-1 task-1] NAYTjEuWQG2U-YF_4uAfsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.730 [XNIO-1 task-1] NAYTjEuWQG2U-YF_4uAfsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.730 [XNIO-1 task-1] NAYTjEuWQG2U-YF_4uAfsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.730 [XNIO-1 task-1] NAYTjEuWQG2U-YF_4uAfsQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.732 [XNIO-1 task-1] rk0XSxavQt62cefUyPLk-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.732 [XNIO-1 task-1] rk0XSxavQt62cefUyPLk-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.732 [XNIO-1 task-1] rk0XSxavQt62cefUyPLk-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.732 [XNIO-1 task-1] rk0XSxavQt62cefUyPLk-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.732 [XNIO-1 task-1] rk0XSxavQt62cefUyPLk-w DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.733 [XNIO-1 task-1] rk0XSxavQt62cefUyPLk-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.734 [XNIO-1 task-1] pL6PYTBNRYW3hJzVpIZ3Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.734 [XNIO-1 task-1] pL6PYTBNRYW3hJzVpIZ3Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.734 [XNIO-1 task-1] pL6PYTBNRYW3hJzVpIZ3Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.734 [XNIO-1 task-1] pL6PYTBNRYW3hJzVpIZ3Pg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.738 [XNIO-1 task-1] J6XUyoCvSia-gQXD2k5u3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.738 [XNIO-1 task-1] J6XUyoCvSia-gQXD2k5u3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.738 [XNIO-1 task-1] J6XUyoCvSia-gQXD2k5u3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.738 [XNIO-1 task-1] J6XUyoCvSia-gQXD2k5u3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.738 [XNIO-1 task-1] J6XUyoCvSia-gQXD2k5u3g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.738 [XNIO-1 task-1] J6XUyoCvSia-gQXD2k5u3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.741 [XNIO-1 task-1] JZqsKCQ0TIezbwQzxb3lVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.741 [XNIO-1 task-1] JZqsKCQ0TIezbwQzxb3lVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.741 [XNIO-1 task-1] JZqsKCQ0TIezbwQzxb3lVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.741 [XNIO-1 task-1] JZqsKCQ0TIezbwQzxb3lVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.745 [XNIO-1 task-1] ULnIuwN8TROxF-zvUxPLnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.745 [XNIO-1 task-1] ULnIuwN8TROxF-zvUxPLnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.745 [XNIO-1 task-1] ULnIuwN8TROxF-zvUxPLnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.745 [XNIO-1 task-1] ULnIuwN8TROxF-zvUxPLnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.745 [XNIO-1 task-1] ULnIuwN8TROxF-zvUxPLnA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.745 [XNIO-1 task-1] ULnIuwN8TROxF-zvUxPLnA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.747 [XNIO-1 task-1] xUQTUIR3TUC2U9oV77B3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.747 [XNIO-1 task-1] xUQTUIR3TUC2U9oV77B3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.747 [XNIO-1 task-1] xUQTUIR3TUC2U9oV77B3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.747 [XNIO-1 task-1] xUQTUIR3TUC2U9oV77B3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.747 [XNIO-1 task-1] xUQTUIR3TUC2U9oV77B3sw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.749 [XNIO-1 task-1] AQ2EjXEgQ6mx1l52UCx-uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.749 [XNIO-1 task-1] AQ2EjXEgQ6mx1l52UCx-uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.749 [XNIO-1 task-1] AQ2EjXEgQ6mx1l52UCx-uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.749 [XNIO-1 task-1] AQ2EjXEgQ6mx1l52UCx-uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.749 [XNIO-1 task-1] AQ2EjXEgQ6mx1l52UCx-uw DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.749 [XNIO-1 task-1] AQ2EjXEgQ6mx1l52UCx-uw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.752 [XNIO-1 task-1] KMqnP68zSGq3aNn282dxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.752 [XNIO-1 task-1] KMqnP68zSGq3aNn282dxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.752 [XNIO-1 task-1] KMqnP68zSGq3aNn282dxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.752 [XNIO-1 task-1] KMqnP68zSGq3aNn282dxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.752 [XNIO-1 task-1] KMqnP68zSGq3aNn282dxfA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.753 [XNIO-1 task-1] oTx6g9a0RuaGhnbpVwo7RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.753 [XNIO-1 task-1] oTx6g9a0RuaGhnbpVwo7RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.754 [XNIO-1 task-1] oTx6g9a0RuaGhnbpVwo7RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.754 [XNIO-1 task-1] oTx6g9a0RuaGhnbpVwo7RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.754 [XNIO-1 task-1] oTx6g9a0RuaGhnbpVwo7RQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.757 [XNIO-1 task-1] Cob24R4HTLWJRvu81FjIZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.757 [XNIO-1 task-1] Cob24R4HTLWJRvu81FjIZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.757 [XNIO-1 task-1] Cob24R4HTLWJRvu81FjIZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.757 [XNIO-1 task-1] Cob24R4HTLWJRvu81FjIZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.761 [XNIO-1 task-1] D2XpK0KTRTaH2eUjdrJL_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.761 [XNIO-1 task-1] D2XpK0KTRTaH2eUjdrJL_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.761 [XNIO-1 task-1] D2XpK0KTRTaH2eUjdrJL_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.761 [XNIO-1 task-1] D2XpK0KTRTaH2eUjdrJL_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.761 [XNIO-1 task-1] D2XpK0KTRTaH2eUjdrJL_w DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.762 [XNIO-1 task-1] D2XpK0KTRTaH2eUjdrJL_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.763 [XNIO-1 task-1] R-vQS8puR1qXAEy5vn1EEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.763 [XNIO-1 task-1] R-vQS8puR1qXAEy5vn1EEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.763 [XNIO-1 task-1] R-vQS8puR1qXAEy5vn1EEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.764 [XNIO-1 task-1] R-vQS8puR1qXAEy5vn1EEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.769 [XNIO-1 task-1] QBbmOX9-TMC1F_tYwEEVKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.769 [XNIO-1 task-1] QBbmOX9-TMC1F_tYwEEVKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.769 [XNIO-1 task-1] QBbmOX9-TMC1F_tYwEEVKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.769 [XNIO-1 task-1] QBbmOX9-TMC1F_tYwEEVKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.769 [XNIO-1 task-1] QBbmOX9-TMC1F_tYwEEVKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.769 [XNIO-1 task-1] QBbmOX9-TMC1F_tYwEEVKQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.771 [XNIO-1 task-1] 3QKOkVteQwi56VwhiMD7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.771 [XNIO-1 task-1] 3QKOkVteQwi56VwhiMD7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.771 [XNIO-1 task-1] 3QKOkVteQwi56VwhiMD7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.771 [XNIO-1 task-1] 3QKOkVteQwi56VwhiMD7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.771 [XNIO-1 task-1] 3QKOkVteQwi56VwhiMD7aQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.773 [XNIO-1 task-1] e1Sl4aI_TqmkJS7uMUj0bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.773 [XNIO-1 task-1] e1Sl4aI_TqmkJS7uMUj0bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.773 [XNIO-1 task-1] e1Sl4aI_TqmkJS7uMUj0bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.773 [XNIO-1 task-1] e1Sl4aI_TqmkJS7uMUj0bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.773 [XNIO-1 task-1] e1Sl4aI_TqmkJS7uMUj0bg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.773 [XNIO-1 task-1] e1Sl4aI_TqmkJS7uMUj0bg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.774 [XNIO-1 task-1] g0LsWKOUQ_eTv45M2pLWIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.774 [XNIO-1 task-1] g0LsWKOUQ_eTv45M2pLWIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.774 [XNIO-1 task-1] g0LsWKOUQ_eTv45M2pLWIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.775 [XNIO-1 task-1] g0LsWKOUQ_eTv45M2pLWIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.775 [XNIO-1 task-1] g0LsWKOUQ_eTv45M2pLWIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.778 [XNIO-1 task-1] bBNG44DPTZmudbrPQbdfNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.778 [XNIO-1 task-1] bBNG44DPTZmudbrPQbdfNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.778 [XNIO-1 task-1] bBNG44DPTZmudbrPQbdfNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.778 [XNIO-1 task-1] bBNG44DPTZmudbrPQbdfNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.778 [XNIO-1 task-1] bBNG44DPTZmudbrPQbdfNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.778 [XNIO-1 task-1] bBNG44DPTZmudbrPQbdfNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.780 [XNIO-1 task-1] Huv3OMnBTmG7L3iBWObHnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.780 [XNIO-1 task-1] Huv3OMnBTmG7L3iBWObHnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.780 [XNIO-1 task-1] Huv3OMnBTmG7L3iBWObHnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.780 [XNIO-1 task-1] Huv3OMnBTmG7L3iBWObHnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.784 [XNIO-1 task-1] pAyr7pwCR3qTZBNy8iAiCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.784 [XNIO-1 task-1] pAyr7pwCR3qTZBNy8iAiCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.784 [XNIO-1 task-1] pAyr7pwCR3qTZBNy8iAiCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.784 [XNIO-1 task-1] pAyr7pwCR3qTZBNy8iAiCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.784 [XNIO-1 task-1] pAyr7pwCR3qTZBNy8iAiCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.785 [XNIO-1 task-1] pAyr7pwCR3qTZBNy8iAiCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.787 [XNIO-1 task-1] hlTtlQ8TRPiBYDv9mfPxIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.787 [XNIO-1 task-1] hlTtlQ8TRPiBYDv9mfPxIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.787 [XNIO-1 task-1] hlTtlQ8TRPiBYDv9mfPxIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.787 [XNIO-1 task-1] hlTtlQ8TRPiBYDv9mfPxIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.787 [XNIO-1 task-1] hlTtlQ8TRPiBYDv9mfPxIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.789 [XNIO-1 task-1] 4u0LCNawQviTh7Vo0K5Lrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.789 [XNIO-1 task-1] 4u0LCNawQviTh7Vo0K5Lrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.789 [XNIO-1 task-1] 4u0LCNawQviTh7Vo0K5Lrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.789 [XNIO-1 task-1] 4u0LCNawQviTh7Vo0K5Lrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.789 [XNIO-1 task-1] 4u0LCNawQviTh7Vo0K5Lrw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.789 [XNIO-1 task-1] 4u0LCNawQviTh7Vo0K5Lrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.790 [XNIO-1 task-1] 1wZfo9-5RB6KDPe4BrVs1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.790 [XNIO-1 task-1] 1wZfo9-5RB6KDPe4BrVs1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.790 [XNIO-1 task-1] 1wZfo9-5RB6KDPe4BrVs1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.790 [XNIO-1 task-1] 1wZfo9-5RB6KDPe4BrVs1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.791 [XNIO-1 task-1] 1wZfo9-5RB6KDPe4BrVs1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.792 [XNIO-1 task-1] rzZnoAKJR463_8dL7HD_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.792 [XNIO-1 task-1] rzZnoAKJR463_8dL7HD_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.792 [XNIO-1 task-1] rzZnoAKJR463_8dL7HD_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.792 [XNIO-1 task-1] rzZnoAKJR463_8dL7HD_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.792 [XNIO-1 task-1] rzZnoAKJR463_8dL7HD_zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.792 [XNIO-1 task-1] rzZnoAKJR463_8dL7HD_zQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.795 [XNIO-1 task-1] islD33KLQW6Y7lW7GaB9sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.795 [XNIO-1 task-1] islD33KLQW6Y7lW7GaB9sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.795 [XNIO-1 task-1] islD33KLQW6Y7lW7GaB9sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.796 [XNIO-1 task-1] islD33KLQW6Y7lW7GaB9sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.796 [XNIO-1 task-1] islD33KLQW6Y7lW7GaB9sg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.797 [XNIO-1 task-1] xh07V9VcS1maGxpIsS5WGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.797 [XNIO-1 task-1] xh07V9VcS1maGxpIsS5WGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.797 [XNIO-1 task-1] xh07V9VcS1maGxpIsS5WGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.797 [XNIO-1 task-1] xh07V9VcS1maGxpIsS5WGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.797 [XNIO-1 task-1] xh07V9VcS1maGxpIsS5WGw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.797 [XNIO-1 task-1] xh07V9VcS1maGxpIsS5WGw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.799 [XNIO-1 task-1] vqawZ9BtTfa7bVQJLZaM-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.799 [XNIO-1 task-1] vqawZ9BtTfa7bVQJLZaM-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.799 [XNIO-1 task-1] vqawZ9BtTfa7bVQJLZaM-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.799 [XNIO-1 task-1] vqawZ9BtTfa7bVQJLZaM-A ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.800 [XNIO-1 task-1] kw7kyFbBSSqocmVYO7L3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.800 [XNIO-1 task-1] kw7kyFbBSSqocmVYO7L3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.800 [XNIO-1 task-1] kw7kyFbBSSqocmVYO7L3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.800 [XNIO-1 task-1] kw7kyFbBSSqocmVYO7L3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.801 [XNIO-1 task-1] kw7kyFbBSSqocmVYO7L3xg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.802 [XNIO-1 task-1] -JNOkEeJTIW1Yi8qDZwCcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.802 [XNIO-1 task-1] -JNOkEeJTIW1Yi8qDZwCcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.802 [XNIO-1 task-1] -JNOkEeJTIW1Yi8qDZwCcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.802 [XNIO-1 task-1] -JNOkEeJTIW1Yi8qDZwCcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.803 [XNIO-1 task-1] -JNOkEeJTIW1Yi8qDZwCcw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.806 [XNIO-1 task-1] GECazRLETpGQkEHasOxMLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.806 [XNIO-1 task-1] GECazRLETpGQkEHasOxMLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.806 [XNIO-1 task-1] GECazRLETpGQkEHasOxMLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.806 [XNIO-1 task-1] GECazRLETpGQkEHasOxMLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.806 [XNIO-1 task-1] GECazRLETpGQkEHasOxMLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.808 [XNIO-1 task-1] W8L7D4-rSTuoLSzuz3uNUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.808 [XNIO-1 task-1] W8L7D4-rSTuoLSzuz3uNUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.808 [XNIO-1 task-1] W8L7D4-rSTuoLSzuz3uNUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.808 [XNIO-1 task-1] W8L7D4-rSTuoLSzuz3uNUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.808 [XNIO-1 task-1] W8L7D4-rSTuoLSzuz3uNUg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.808 [XNIO-1 task-1] W8L7D4-rSTuoLSzuz3uNUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.809 [XNIO-1 task-1] EbZlQz8sTuOT9ZS542ZBVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.809 [XNIO-1 task-1] EbZlQz8sTuOT9ZS542ZBVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.809 [XNIO-1 task-1] EbZlQz8sTuOT9ZS542ZBVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.809 [XNIO-1 task-1] EbZlQz8sTuOT9ZS542ZBVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.810 [XNIO-1 task-1] EbZlQz8sTuOT9ZS542ZBVQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.811 [XNIO-1 task-1] 2u3WeT0BSCmBf351lVvSOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.811 [XNIO-1 task-1] 2u3WeT0BSCmBf351lVvSOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.811 [XNIO-1 task-1] 2u3WeT0BSCmBf351lVvSOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.811 [XNIO-1 task-1] 2u3WeT0BSCmBf351lVvSOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.812 [XNIO-1 task-1] 2u3WeT0BSCmBf351lVvSOg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.812 [XNIO-1 task-1] 2u3WeT0BSCmBf351lVvSOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.814 [XNIO-1 task-1] d216hb3DTeCC60dpJ66KPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.814 [XNIO-1 task-1] d216hb3DTeCC60dpJ66KPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.814 [XNIO-1 task-1] d216hb3DTeCC60dpJ66KPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.814 [XNIO-1 task-1] d216hb3DTeCC60dpJ66KPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.814 [XNIO-1 task-1] d216hb3DTeCC60dpJ66KPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.815 [XNIO-1 task-1] CaNxXliNSOysH-VsRjSzGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.816 [XNIO-1 task-1] CaNxXliNSOysH-VsRjSzGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.816 [XNIO-1 task-1] CaNxXliNSOysH-VsRjSzGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.816 [XNIO-1 task-1] CaNxXliNSOysH-VsRjSzGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.816 [XNIO-1 task-1] CaNxXliNSOysH-VsRjSzGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.816 [XNIO-1 task-1] CaNxXliNSOysH-VsRjSzGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.817 [XNIO-1 task-1] opNiN6N0Seq3F7y-zjqqrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.817 [XNIO-1 task-1] opNiN6N0Seq3F7y-zjqqrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.817 [XNIO-1 task-1] opNiN6N0Seq3F7y-zjqqrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.817 [XNIO-1 task-1] opNiN6N0Seq3F7y-zjqqrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.817 [XNIO-1 task-1] opNiN6N0Seq3F7y-zjqqrg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.819 [XNIO-1 task-1] KC06RlfQRdW8hknmc7RvPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.819 [XNIO-1 task-1] KC06RlfQRdW8hknmc7RvPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.819 [XNIO-1 task-1] KC06RlfQRdW8hknmc7RvPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.819 [XNIO-1 task-1] KC06RlfQRdW8hknmc7RvPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.819 [XNIO-1 task-1] KC06RlfQRdW8hknmc7RvPg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.819 [XNIO-1 task-1] KC06RlfQRdW8hknmc7RvPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.822 [XNIO-1 task-1] iR5yDFlNRGqmgrV1T9PsNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.822 [XNIO-1 task-1] iR5yDFlNRGqmgrV1T9PsNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.822 [XNIO-1 task-1] iR5yDFlNRGqmgrV1T9PsNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.822 [XNIO-1 task-1] iR5yDFlNRGqmgrV1T9PsNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.823 [XNIO-1 task-1] iR5yDFlNRGqmgrV1T9PsNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.824 [XNIO-1 task-1] MrKBkrALRuezG1YQ9AZDjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.824 [XNIO-1 task-1] MrKBkrALRuezG1YQ9AZDjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.824 [XNIO-1 task-1] MrKBkrALRuezG1YQ9AZDjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.824 [XNIO-1 task-1] MrKBkrALRuezG1YQ9AZDjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.824 [XNIO-1 task-1] MrKBkrALRuezG1YQ9AZDjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.824 [XNIO-1 task-1] MrKBkrALRuezG1YQ9AZDjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.826 [XNIO-1 task-1] XrhMShSjRnGAOGtWAeYWzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.826 [XNIO-1 task-1] XrhMShSjRnGAOGtWAeYWzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.826 [XNIO-1 task-1] XrhMShSjRnGAOGtWAeYWzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.826 [XNIO-1 task-1] XrhMShSjRnGAOGtWAeYWzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.826 [XNIO-1 task-1] XrhMShSjRnGAOGtWAeYWzQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.827 [XNIO-1 task-1] JNKEWZWUTcasUMAcwdYWmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.827 [XNIO-1 task-1] JNKEWZWUTcasUMAcwdYWmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.828 [XNIO-1 task-1] JNKEWZWUTcasUMAcwdYWmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.828 [XNIO-1 task-1] JNKEWZWUTcasUMAcwdYWmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.828 [XNIO-1 task-1] JNKEWZWUTcasUMAcwdYWmg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.832 [XNIO-1 task-1] IwGwCMwtTwyd0dDMzx68ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.832 [XNIO-1 task-1] IwGwCMwtTwyd0dDMzx68ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.832 [XNIO-1 task-1] IwGwCMwtTwyd0dDMzx68ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.833 [XNIO-1 task-1] IwGwCMwtTwyd0dDMzx68ug ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.834 [XNIO-1 task-1] ydEcXvAbQwO79p5GAqb8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.834 [XNIO-1 task-1] ydEcXvAbQwO79p5GAqb8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.834 [XNIO-1 task-1] ydEcXvAbQwO79p5GAqb8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.834 [XNIO-1 task-1] ydEcXvAbQwO79p5GAqb8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.835 [XNIO-1 task-1] ydEcXvAbQwO79p5GAqb8Pw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.837 [XNIO-1 task-1] WVzS7Z4dTUGnmoiCuSPbGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.837 [XNIO-1 task-1] WVzS7Z4dTUGnmoiCuSPbGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.837 [XNIO-1 task-1] WVzS7Z4dTUGnmoiCuSPbGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.837 [XNIO-1 task-1] WVzS7Z4dTUGnmoiCuSPbGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.837 [XNIO-1 task-1] WVzS7Z4dTUGnmoiCuSPbGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.842 [XNIO-1 task-1] f0GDe7bFSzGt7QMIP7Ndww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.842 [XNIO-1 task-1] f0GDe7bFSzGt7QMIP7Ndww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.842 [XNIO-1 task-1] f0GDe7bFSzGt7QMIP7Ndww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.842 [XNIO-1 task-1] f0GDe7bFSzGt7QMIP7Ndww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.842 [XNIO-1 task-1] f0GDe7bFSzGt7QMIP7Ndww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.844 [XNIO-1 task-1] RuagQuy-RFKv9fvSTUwY6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.844 [XNIO-1 task-1] RuagQuy-RFKv9fvSTUwY6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.844 [XNIO-1 task-1] RuagQuy-RFKv9fvSTUwY6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.844 [XNIO-1 task-1] RuagQuy-RFKv9fvSTUwY6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.844 [XNIO-1 task-1] RuagQuy-RFKv9fvSTUwY6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.844 [XNIO-1 task-1] RuagQuy-RFKv9fvSTUwY6Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.845 [XNIO-1 task-1] bVNUUtOgTd2jVzhRE2EBIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.846 [XNIO-1 task-1] bVNUUtOgTd2jVzhRE2EBIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.846 [XNIO-1 task-1] bVNUUtOgTd2jVzhRE2EBIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.846 [XNIO-1 task-1] bVNUUtOgTd2jVzhRE2EBIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.850 [XNIO-1 task-1] 71gXbfzhQxicpI9AUEnLSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.850 [XNIO-1 task-1] 71gXbfzhQxicpI9AUEnLSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.850 [XNIO-1 task-1] 71gXbfzhQxicpI9AUEnLSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.850 [XNIO-1 task-1] 71gXbfzhQxicpI9AUEnLSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.850 [XNIO-1 task-1] 71gXbfzhQxicpI9AUEnLSA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.850 [XNIO-1 task-1] 71gXbfzhQxicpI9AUEnLSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.852 [XNIO-1 task-1] 4FyNvum4Q16gZIbvijYvjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.852 [XNIO-1 task-1] 4FyNvum4Q16gZIbvijYvjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.852 [XNIO-1 task-1] 4FyNvum4Q16gZIbvijYvjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.852 [XNIO-1 task-1] 4FyNvum4Q16gZIbvijYvjQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.854 [XNIO-1 task-1] qAK6395eTk6VSHAoKqlWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.854 [XNIO-1 task-1] qAK6395eTk6VSHAoKqlWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.854 [XNIO-1 task-1] qAK6395eTk6VSHAoKqlWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.854 [XNIO-1 task-1] qAK6395eTk6VSHAoKqlWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.854 [XNIO-1 task-1] qAK6395eTk6VSHAoKqlWAw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.856 [XNIO-1 task-1] OnuSOtrvTS-EQJO5-dy4Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.856 [XNIO-1 task-1] OnuSOtrvTS-EQJO5-dy4Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.857 [XNIO-1 task-1] OnuSOtrvTS-EQJO5-dy4Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.857 [XNIO-1 task-1] OnuSOtrvTS-EQJO5-dy4Bg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.858 [XNIO-1 task-1] tg1evPkxRNyl9sbCI2drjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.858 [XNIO-1 task-1] tg1evPkxRNyl9sbCI2drjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.859 [XNIO-1 task-1] tg1evPkxRNyl9sbCI2drjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.859 [XNIO-1 task-1] tg1evPkxRNyl9sbCI2drjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.859 [XNIO-1 task-1] tg1evPkxRNyl9sbCI2drjg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.859 [XNIO-1 task-1] tg1evPkxRNyl9sbCI2drjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.860 [XNIO-1 task-1] ZRDQOfz-Rnux9jaoSg436g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.861 [XNIO-1 task-1] ZRDQOfz-Rnux9jaoSg436g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.861 [XNIO-1 task-1] ZRDQOfz-Rnux9jaoSg436g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.861 [XNIO-1 task-1] ZRDQOfz-Rnux9jaoSg436g ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.863 [XNIO-1 task-1] E-kiS7NBR-yShrP-PnalpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.863 [XNIO-1 task-1] E-kiS7NBR-yShrP-PnalpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.863 [XNIO-1 task-1] E-kiS7NBR-yShrP-PnalpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.863 [XNIO-1 task-1] E-kiS7NBR-yShrP-PnalpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.867 [XNIO-1 task-1] 5zHTrV2QTOaoGLINRoFtdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.867 [XNIO-1 task-1] 5zHTrV2QTOaoGLINRoFtdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.867 [XNIO-1 task-1] 5zHTrV2QTOaoGLINRoFtdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.867 [XNIO-1 task-1] 5zHTrV2QTOaoGLINRoFtdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.867 [XNIO-1 task-1] 5zHTrV2QTOaoGLINRoFtdg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.867 [XNIO-1 task-1] 5zHTrV2QTOaoGLINRoFtdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.869 [XNIO-1 task-1] zkw51XAZSty6Wonb8x1GnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.869 [XNIO-1 task-1] zkw51XAZSty6Wonb8x1GnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.869 [XNIO-1 task-1] zkw51XAZSty6Wonb8x1GnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.869 [XNIO-1 task-1] zkw51XAZSty6Wonb8x1GnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.891 [XNIO-1 task-1] JGr8i3I7QIaFzxOi3Jf5mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.891 [XNIO-1 task-1] JGr8i3I7QIaFzxOi3Jf5mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.891 [XNIO-1 task-1] JGr8i3I7QIaFzxOi3Jf5mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.891 [XNIO-1 task-1] JGr8i3I7QIaFzxOi3Jf5mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.891 [XNIO-1 task-1] JGr8i3I7QIaFzxOi3Jf5mw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.891 [XNIO-1 task-1] JGr8i3I7QIaFzxOi3Jf5mw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.893 [XNIO-1 task-1] SOSrJlH1RMO4RfXaC1gzmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.893 [XNIO-1 task-1] SOSrJlH1RMO4RfXaC1gzmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.893 [XNIO-1 task-1] SOSrJlH1RMO4RfXaC1gzmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.894 [XNIO-1 task-1] SOSrJlH1RMO4RfXaC1gzmw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.895 [XNIO-1 task-1] mNFokoJ6Q5CHPoj8y0YplQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.895 [XNIO-1 task-1] mNFokoJ6Q5CHPoj8y0YplQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.895 [XNIO-1 task-1] mNFokoJ6Q5CHPoj8y0YplQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.895 [XNIO-1 task-1] mNFokoJ6Q5CHPoj8y0YplQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.896 [XNIO-1 task-1] -V1b6Ri5RU21YGK6pVk46A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.897 [XNIO-1 task-1] -V1b6Ri5RU21YGK6pVk46A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.897 [XNIO-1 task-1] -V1b6Ri5RU21YGK6pVk46A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.897 [XNIO-1 task-1] -V1b6Ri5RU21YGK6pVk46A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.897 [XNIO-1 task-1] -V1b6Ri5RU21YGK6pVk46A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.899 [XNIO-1 task-1] tswEMEjMQ7OPxWSvQmGGyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.899 [XNIO-1 task-1] tswEMEjMQ7OPxWSvQmGGyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.899 [XNIO-1 task-1] tswEMEjMQ7OPxWSvQmGGyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.899 [XNIO-1 task-1] tswEMEjMQ7OPxWSvQmGGyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.899 [XNIO-1 task-1] tswEMEjMQ7OPxWSvQmGGyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.903 [XNIO-1 task-1] rr6WRbGLRTaxhTEsdplnhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.903 [XNIO-1 task-1] rr6WRbGLRTaxhTEsdplnhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.903 [XNIO-1 task-1] rr6WRbGLRTaxhTEsdplnhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.903 [XNIO-1 task-1] rr6WRbGLRTaxhTEsdplnhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.903 [XNIO-1 task-1] rr6WRbGLRTaxhTEsdplnhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.905 [XNIO-1 task-1] uNoI2uhsTf-vPzThgBNSng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.905 [XNIO-1 task-1] uNoI2uhsTf-vPzThgBNSng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.905 [XNIO-1 task-1] uNoI2uhsTf-vPzThgBNSng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.905 [XNIO-1 task-1] uNoI2uhsTf-vPzThgBNSng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.905 [XNIO-1 task-1] uNoI2uhsTf-vPzThgBNSng DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.909 [XNIO-1 task-1] 4reEQQF8SzeIqhvuuBVYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.909 [XNIO-1 task-1] 4reEQQF8SzeIqhvuuBVYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.909 [XNIO-1 task-1] 4reEQQF8SzeIqhvuuBVYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.909 [XNIO-1 task-1] 4reEQQF8SzeIqhvuuBVYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.909 [XNIO-1 task-1] 4reEQQF8SzeIqhvuuBVYNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.911 [XNIO-1 task-1] XxL3uS62T9yqlEYPrZeKKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.911 [XNIO-1 task-1] XxL3uS62T9yqlEYPrZeKKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.911 [XNIO-1 task-1] XxL3uS62T9yqlEYPrZeKKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.911 [XNIO-1 task-1] XxL3uS62T9yqlEYPrZeKKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.911 [XNIO-1 task-1] XxL3uS62T9yqlEYPrZeKKA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.911 [XNIO-1 task-1] XxL3uS62T9yqlEYPrZeKKA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.913 [XNIO-1 task-1] mf3K2zbhQUOt0qJgV4NbzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.913 [XNIO-1 task-1] mf3K2zbhQUOt0qJgV4NbzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.913 [XNIO-1 task-1] mf3K2zbhQUOt0qJgV4NbzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.913 [XNIO-1 task-1] mf3K2zbhQUOt0qJgV4NbzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.913 [XNIO-1 task-1] mf3K2zbhQUOt0qJgV4NbzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.914 [XNIO-1 task-1] gpBdlURTR2ysqFtDShMV_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.915 [XNIO-1 task-1] gpBdlURTR2ysqFtDShMV_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.915 [XNIO-1 task-1] gpBdlURTR2ysqFtDShMV_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.915 [XNIO-1 task-1] gpBdlURTR2ysqFtDShMV_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.915 [XNIO-1 task-1] gpBdlURTR2ysqFtDShMV_A DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.915 [XNIO-1 task-1] gpBdlURTR2ysqFtDShMV_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.917 [XNIO-1 task-1] MVW46PgXRCyUJcjsxP8zSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.917 [XNIO-1 task-1] MVW46PgXRCyUJcjsxP8zSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.917 [XNIO-1 task-1] MVW46PgXRCyUJcjsxP8zSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.918 [XNIO-1 task-1] MVW46PgXRCyUJcjsxP8zSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.918 [XNIO-1 task-1] MVW46PgXRCyUJcjsxP8zSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.943 [XNIO-1 task-1] q4NHJRbqTZ63TlNIcUitGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.943 [XNIO-1 task-1] q4NHJRbqTZ63TlNIcUitGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.943 [XNIO-1 task-1] q4NHJRbqTZ63TlNIcUitGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.943 [XNIO-1 task-1] q4NHJRbqTZ63TlNIcUitGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.944 [XNIO-1 task-1] q4NHJRbqTZ63TlNIcUitGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.944 [XNIO-1 task-1] q4NHJRbqTZ63TlNIcUitGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.946 [XNIO-1 task-1] ax5iqA5pTDGaX9nTf5A74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.947 [XNIO-1 task-1] ax5iqA5pTDGaX9nTf5A74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.947 [XNIO-1 task-1] ax5iqA5pTDGaX9nTf5A74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.947 [XNIO-1 task-1] ax5iqA5pTDGaX9nTf5A74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.947 [XNIO-1 task-1] ax5iqA5pTDGaX9nTf5A74w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.949 [XNIO-1 task-1] BA_T28kSSYSceLvFRy4t4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.949 [XNIO-1 task-1] BA_T28kSSYSceLvFRy4t4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.949 [XNIO-1 task-1] BA_T28kSSYSceLvFRy4t4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.949 [XNIO-1 task-1] BA_T28kSSYSceLvFRy4t4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.949 [XNIO-1 task-1] BA_T28kSSYSceLvFRy4t4g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.949 [XNIO-1 task-1] BA_T28kSSYSceLvFRy4t4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.950 [XNIO-1 task-1] MgFZWsySQ5OKa6NC1WuRBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.950 [XNIO-1 task-1] MgFZWsySQ5OKa6NC1WuRBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.951 [XNIO-1 task-1] MgFZWsySQ5OKa6NC1WuRBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.951 [XNIO-1 task-1] MgFZWsySQ5OKa6NC1WuRBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.951 [XNIO-1 task-1] MgFZWsySQ5OKa6NC1WuRBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.952 [XNIO-1 task-1] 4q36XKeMQfuSrmhqp9wSVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.953 [XNIO-1 task-1] 4q36XKeMQfuSrmhqp9wSVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.953 [XNIO-1 task-1] 4q36XKeMQfuSrmhqp9wSVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.953 [XNIO-1 task-1] 4q36XKeMQfuSrmhqp9wSVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:11.955 [XNIO-1 task-1] MryRoTQGTF62O5HErT-M0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.955 [XNIO-1 task-1] MryRoTQGTF62O5HErT-M0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.955 [XNIO-1 task-1] MryRoTQGTF62O5HErT-M0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.955 [XNIO-1 task-1] MryRoTQGTF62O5HErT-M0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:11.955 [XNIO-1 task-1] MryRoTQGTF62O5HErT-M0w DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:11.955 [XNIO-1 task-1] MryRoTQGTF62O5HErT-M0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:11.956 [XNIO-1 task-1] 3o7uXsPzTq-C3Bc_gPjzpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.956 [XNIO-1 task-1] 3o7uXsPzTq-C3Bc_gPjzpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.957 [XNIO-1 task-1] 3o7uXsPzTq-C3Bc_gPjzpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.957 [XNIO-1 task-1] 3o7uXsPzTq-C3Bc_gPjzpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.957 [XNIO-1 task-1] 3o7uXsPzTq-C3Bc_gPjzpw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.958 [XNIO-1 task-1] l2WSMfE4Tp2R2-o2e308hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.958 [XNIO-1 task-1] l2WSMfE4Tp2R2-o2e308hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.958 [XNIO-1 task-1] l2WSMfE4Tp2R2-o2e308hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.958 [XNIO-1 task-1] l2WSMfE4Tp2R2-o2e308hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.958 [XNIO-1 task-1] l2WSMfE4Tp2R2-o2e308hA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.959 [XNIO-1 task-1] l2WSMfE4Tp2R2-o2e308hA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.960 [XNIO-1 task-1] Ju_DWW6eTp-Iy822_Cv9ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.960 [XNIO-1 task-1] Ju_DWW6eTp-Iy822_Cv9ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.960 [XNIO-1 task-1] Ju_DWW6eTp-Iy822_Cv9ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.960 [XNIO-1 task-1] Ju_DWW6eTp-Iy822_Cv9ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.960 [XNIO-1 task-1] Ju_DWW6eTp-Iy822_Cv9ag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.963 [XNIO-1 task-1] x-6EPOkORUibRnYC495TKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.963 [XNIO-1 task-1] x-6EPOkORUibRnYC495TKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.963 [XNIO-1 task-1] x-6EPOkORUibRnYC495TKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.963 [XNIO-1 task-1] x-6EPOkORUibRnYC495TKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.963 [XNIO-1 task-1] x-6EPOkORUibRnYC495TKw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.963 [XNIO-1 task-1] x-6EPOkORUibRnYC495TKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.965 [XNIO-1 task-1] tu8xOeK9QMy_fRLE2mTlZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.965 [XNIO-1 task-1] tu8xOeK9QMy_fRLE2mTlZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.965 [XNIO-1 task-1] tu8xOeK9QMy_fRLE2mTlZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.965 [XNIO-1 task-1] tu8xOeK9QMy_fRLE2mTlZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.965 [XNIO-1 task-1] tu8xOeK9QMy_fRLE2mTlZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.967 [XNIO-1 task-1] ERPs8j8aTe2suqJAXz5yGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.967 [XNIO-1 task-1] ERPs8j8aTe2suqJAXz5yGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.967 [XNIO-1 task-1] ERPs8j8aTe2suqJAXz5yGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:11.967 [XNIO-1 task-1] ERPs8j8aTe2suqJAXz5yGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.967 [XNIO-1 task-1] ERPs8j8aTe2suqJAXz5yGA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:11.971 [XNIO-1 task-1] 55utm-fKSSeLgC-NrwCACg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.971 [XNIO-1 task-1] 55utm-fKSSeLgC-NrwCACg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.971 [XNIO-1 task-1] 55utm-fKSSeLgC-NrwCACg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.972 [XNIO-1 task-1] 55utm-fKSSeLgC-NrwCACg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.973 [XNIO-1 task-1] 5uy-2DIgQkeeg6fsnZI_hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.973 [XNIO-1 task-1] 5uy-2DIgQkeeg6fsnZI_hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.973 [XNIO-1 task-1] 5uy-2DIgQkeeg6fsnZI_hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.973 [XNIO-1 task-1] 5uy-2DIgQkeeg6fsnZI_hQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.978 [XNIO-1 task-1] ckitQenxTSqq7A1PTKkgjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.978 [XNIO-1 task-1] ckitQenxTSqq7A1PTKkgjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.978 [XNIO-1 task-1] ckitQenxTSqq7A1PTKkgjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.978 [XNIO-1 task-1] ckitQenxTSqq7A1PTKkgjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.978 [XNIO-1 task-1] ckitQenxTSqq7A1PTKkgjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.978 [XNIO-1 task-1] ckitQenxTSqq7A1PTKkgjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.980 [XNIO-1 task-1] tOU_GD3XRjGHAb4hOa4YQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.980 [XNIO-1 task-1] tOU_GD3XRjGHAb4hOa4YQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.980 [XNIO-1 task-1] tOU_GD3XRjGHAb4hOa4YQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.981 [XNIO-1 task-1] tOU_GD3XRjGHAb4hOa4YQQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:11.982 [XNIO-1 task-1] IFVkpGMpR2icGU7fGWFHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.982 [XNIO-1 task-1] IFVkpGMpR2icGU7fGWFHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.982 [XNIO-1 task-1] IFVkpGMpR2icGU7fGWFHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.982 [XNIO-1 task-1] IFVkpGMpR2icGU7fGWFHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.982 [XNIO-1 task-1] IFVkpGMpR2icGU7fGWFHag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:11.983 [XNIO-1 task-1] lq4mASv-R0a0D0IdOggQDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.984 [XNIO-1 task-1] lq4mASv-R0a0D0IdOggQDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.984 [XNIO-1 task-1] lq4mASv-R0a0D0IdOggQDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.984 [XNIO-1 task-1] lq4mASv-R0a0D0IdOggQDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.984 [XNIO-1 task-1] lq4mASv-R0a0D0IdOggQDg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.984 [XNIO-1 task-1] lq4mASv-R0a0D0IdOggQDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.985 [XNIO-1 task-1] HOjQ5Z1yTDKPuGBXfhKeSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.985 [XNIO-1 task-1] HOjQ5Z1yTDKPuGBXfhKeSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.985 [XNIO-1 task-1] HOjQ5Z1yTDKPuGBXfhKeSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.985 [XNIO-1 task-1] HOjQ5Z1yTDKPuGBXfhKeSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.985 [XNIO-1 task-1] HOjQ5Z1yTDKPuGBXfhKeSw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.987 [XNIO-1 task-1] tRjBvO8lQrGf13Msdqj7aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.987 [XNIO-1 task-1] tRjBvO8lQrGf13Msdqj7aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.987 [XNIO-1 task-1] tRjBvO8lQrGf13Msdqj7aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.987 [XNIO-1 task-1] tRjBvO8lQrGf13Msdqj7aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.987 [XNIO-1 task-1] tRjBvO8lQrGf13Msdqj7aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.987 [XNIO-1 task-1] tRjBvO8lQrGf13Msdqj7aQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.990 [XNIO-1 task-1] jGqR15rvR8mvZRoBvVNCUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.990 [XNIO-1 task-1] jGqR15rvR8mvZRoBvVNCUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.990 [XNIO-1 task-1] jGqR15rvR8mvZRoBvVNCUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.990 [XNIO-1 task-1] jGqR15rvR8mvZRoBvVNCUA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.994 [XNIO-1 task-1] U4XEzva-Q4enJCbY__tVHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.994 [XNIO-1 task-1] U4XEzva-Q4enJCbY__tVHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.994 [XNIO-1 task-1] U4XEzva-Q4enJCbY__tVHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.994 [XNIO-1 task-1] U4XEzva-Q4enJCbY__tVHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.994 [XNIO-1 task-1] U4XEzva-Q4enJCbY__tVHw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.994 [XNIO-1 task-1] U4XEzva-Q4enJCbY__tVHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:11.996 [XNIO-1 task-1] B_K1oFR7Q92lyQTm2_LBVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.996 [XNIO-1 task-1] B_K1oFR7Q92lyQTm2_LBVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:11.996 [XNIO-1 task-1] B_K1oFR7Q92lyQTm2_LBVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:11.996 [XNIO-1 task-1] B_K1oFR7Q92lyQTm2_LBVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.996 [XNIO-1 task-1] B_K1oFR7Q92lyQTm2_LBVA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:11.999 [XNIO-1 task-1] 32cpCF75SSOFK2jiISMM1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.999 [XNIO-1 task-1] 32cpCF75SSOFK2jiISMM1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:11.999 [XNIO-1 task-1] 32cpCF75SSOFK2jiISMM1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:11.999 [XNIO-1 task-1] 32cpCF75SSOFK2jiISMM1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:11.999 [XNIO-1 task-1] 32cpCF75SSOFK2jiISMM1g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:11.999 [XNIO-1 task-1] 32cpCF75SSOFK2jiISMM1g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.000 [XNIO-1 task-1] E7fN84kASniNOyHqMDBDww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.001 [XNIO-1 task-1] E7fN84kASniNOyHqMDBDww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.001 [XNIO-1 task-1] E7fN84kASniNOyHqMDBDww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.001 [XNIO-1 task-1] E7fN84kASniNOyHqMDBDww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.001 [XNIO-1 task-1] E7fN84kASniNOyHqMDBDww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.002 [XNIO-1 task-1] q9ZhO157RzOeKYIkkmJ4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.002 [XNIO-1 task-1] q9ZhO157RzOeKYIkkmJ4RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.002 [XNIO-1 task-1] q9ZhO157RzOeKYIkkmJ4RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.003 [XNIO-1 task-1] q9ZhO157RzOeKYIkkmJ4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.003 [XNIO-1 task-1] q9ZhO157RzOeKYIkkmJ4RA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.003 [XNIO-1 task-1] q9ZhO157RzOeKYIkkmJ4RA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.004 [XNIO-1 task-1] mK0dJwH0SmGsUeOo09N-yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.004 [XNIO-1 task-1] mK0dJwH0SmGsUeOo09N-yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.004 [XNIO-1 task-1] mK0dJwH0SmGsUeOo09N-yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.004 [XNIO-1 task-1] mK0dJwH0SmGsUeOo09N-yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.009 [XNIO-1 task-1] H27STaHLRueUeIHsqhmfew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.009 [XNIO-1 task-1] H27STaHLRueUeIHsqhmfew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.009 [XNIO-1 task-1] H27STaHLRueUeIHsqhmfew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.009 [XNIO-1 task-1] H27STaHLRueUeIHsqhmfew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.009 [XNIO-1 task-1] H27STaHLRueUeIHsqhmfew DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.009 [XNIO-1 task-1] H27STaHLRueUeIHsqhmfew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.011 [XNIO-1 task-1] bhF1r26UR9idTIqLNJjcfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.011 [XNIO-1 task-1] bhF1r26UR9idTIqLNJjcfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.011 [XNIO-1 task-1] bhF1r26UR9idTIqLNJjcfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.011 [XNIO-1 task-1] bhF1r26UR9idTIqLNJjcfQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.013 [XNIO-1 task-1] HzZFRisJQ1S2VVDlgcnyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.013 [XNIO-1 task-1] HzZFRisJQ1S2VVDlgcnyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.013 [XNIO-1 task-1] HzZFRisJQ1S2VVDlgcnyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.013 [XNIO-1 task-1] HzZFRisJQ1S2VVDlgcnyMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.013 [XNIO-1 task-1] HzZFRisJQ1S2VVDlgcnyMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.015 [XNIO-1 task-1] BkxS8j68Q_yPEz5KS4Wehg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.015 [XNIO-1 task-1] BkxS8j68Q_yPEz5KS4Wehg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.015 [XNIO-1 task-1] BkxS8j68Q_yPEz5KS4Wehg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.015 [XNIO-1 task-1] BkxS8j68Q_yPEz5KS4Wehg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.015 [XNIO-1 task-1] BkxS8j68Q_yPEz5KS4Wehg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.015 [XNIO-1 task-1] BkxS8j68Q_yPEz5KS4Wehg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.017 [XNIO-1 task-1] 5J-bQrl1TH-8wFJ9KH0U7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.017 [XNIO-1 task-1] 5J-bQrl1TH-8wFJ9KH0U7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.017 [XNIO-1 task-1] 5J-bQrl1TH-8wFJ9KH0U7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.017 [XNIO-1 task-1] 5J-bQrl1TH-8wFJ9KH0U7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.018 [XNIO-1 task-1] 5J-bQrl1TH-8wFJ9KH0U7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.019 [XNIO-1 task-1] xhUOkE6TSLmntkdgUZUeRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.019 [XNIO-1 task-1] xhUOkE6TSLmntkdgUZUeRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.019 [XNIO-1 task-1] xhUOkE6TSLmntkdgUZUeRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.019 [XNIO-1 task-1] xhUOkE6TSLmntkdgUZUeRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.019 [XNIO-1 task-1] xhUOkE6TSLmntkdgUZUeRg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.020 [XNIO-1 task-1] xhUOkE6TSLmntkdgUZUeRg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.021 [XNIO-1 task-1] eSe7lLE_RAyy9fvsJdeeXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.021 [XNIO-1 task-1] eSe7lLE_RAyy9fvsJdeeXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.021 [XNIO-1 task-1] eSe7lLE_RAyy9fvsJdeeXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.021 [XNIO-1 task-1] eSe7lLE_RAyy9fvsJdeeXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.021 [XNIO-1 task-1] eSe7lLE_RAyy9fvsJdeeXA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.023 [XNIO-1 task-1] qVuy4HMqRVea4jVTS1Kfaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.023 [XNIO-1 task-1] qVuy4HMqRVea4jVTS1Kfaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.023 [XNIO-1 task-1] qVuy4HMqRVea4jVTS1Kfaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.023 [XNIO-1 task-1] qVuy4HMqRVea4jVTS1Kfaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.023 [XNIO-1 task-1] qVuy4HMqRVea4jVTS1Kfaw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.023 [XNIO-1 task-1] qVuy4HMqRVea4jVTS1Kfaw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.027 [XNIO-1 task-1] i0jcFzjJSmqaZ99eAH3XKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.027 [XNIO-1 task-1] i0jcFzjJSmqaZ99eAH3XKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.027 [XNIO-1 task-1] i0jcFzjJSmqaZ99eAH3XKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.027 [XNIO-1 task-1] i0jcFzjJSmqaZ99eAH3XKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.027 [XNIO-1 task-1] i0jcFzjJSmqaZ99eAH3XKw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.028 [XNIO-1 task-1] QzGVfsYVS3WY2dUBJs0X9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.028 [XNIO-1 task-1] QzGVfsYVS3WY2dUBJs0X9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.029 [XNIO-1 task-1] QzGVfsYVS3WY2dUBJs0X9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.029 [XNIO-1 task-1] QzGVfsYVS3WY2dUBJs0X9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.029 [XNIO-1 task-1] QzGVfsYVS3WY2dUBJs0X9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.029 [XNIO-1 task-1] QzGVfsYVS3WY2dUBJs0X9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.030 [XNIO-1 task-1] znyswpEbRMy10fFjuBeohg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.030 [XNIO-1 task-1] znyswpEbRMy10fFjuBeohg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.030 [XNIO-1 task-1] znyswpEbRMy10fFjuBeohg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.030 [XNIO-1 task-1] znyswpEbRMy10fFjuBeohg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.031 [XNIO-1 task-1] znyswpEbRMy10fFjuBeohg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.032 [XNIO-1 task-1] pAK_HSLHRJS1dVKaeqcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.032 [XNIO-1 task-1] pAK_HSLHRJS1dVKaeqcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.032 [XNIO-1 task-1] pAK_HSLHRJS1dVKaeqcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.032 [XNIO-1 task-1] pAK_HSLHRJS1dVKaeqcwrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.033 [XNIO-1 task-1] pAK_HSLHRJS1dVKaeqcwrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.033 [XNIO-1 task-1] pAK_HSLHRJS1dVKaeqcwrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.035 [XNIO-1 task-1] yreFCeybRge36S35XDswpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.035 [XNIO-1 task-1] yreFCeybRge36S35XDswpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.035 [XNIO-1 task-1] yreFCeybRge36S35XDswpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.035 [XNIO-1 task-1] yreFCeybRge36S35XDswpA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.039 [XNIO-1 task-1] yuRYVw7GSA6pxibtR4jl6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.039 [XNIO-1 task-1] yuRYVw7GSA6pxibtR4jl6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.039 [XNIO-1 task-1] yuRYVw7GSA6pxibtR4jl6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.039 [XNIO-1 task-1] yuRYVw7GSA6pxibtR4jl6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.039 [XNIO-1 task-1] yuRYVw7GSA6pxibtR4jl6g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.039 [XNIO-1 task-1] yuRYVw7GSA6pxibtR4jl6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.041 [XNIO-1 task-1] 5BF1VcilRLGARfrID907-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.041 [XNIO-1 task-1] 5BF1VcilRLGARfrID907-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.041 [XNIO-1 task-1] 5BF1VcilRLGARfrID907-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.041 [XNIO-1 task-1] 5BF1VcilRLGARfrID907-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.041 [XNIO-1 task-1] 5BF1VcilRLGARfrID907-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.044 [XNIO-1 task-1] yJLYwtZRTGGPKehQar9fQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.044 [XNIO-1 task-1] yJLYwtZRTGGPKehQar9fQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.044 [XNIO-1 task-1] yJLYwtZRTGGPKehQar9fQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.044 [XNIO-1 task-1] yJLYwtZRTGGPKehQar9fQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.044 [XNIO-1 task-1] yJLYwtZRTGGPKehQar9fQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.048 [XNIO-1 task-1] eNT-ReW0QJuRSPSsVdGS9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.048 [XNIO-1 task-1] eNT-ReW0QJuRSPSsVdGS9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.048 [XNIO-1 task-1] eNT-ReW0QJuRSPSsVdGS9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.049 [XNIO-1 task-1] eNT-ReW0QJuRSPSsVdGS9A ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.050 [XNIO-1 task-1] vvJPTgQ0SFyxYmiaNl_Q6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.050 [XNIO-1 task-1] vvJPTgQ0SFyxYmiaNl_Q6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.050 [XNIO-1 task-1] vvJPTgQ0SFyxYmiaNl_Q6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.050 [XNIO-1 task-1] vvJPTgQ0SFyxYmiaNl_Q6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.056 [XNIO-1 task-1] Uw6pw39sRZynDdr4bnPxyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.056 [XNIO-1 task-1] Uw6pw39sRZynDdr4bnPxyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.056 [XNIO-1 task-1] Uw6pw39sRZynDdr4bnPxyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.056 [XNIO-1 task-1] Uw6pw39sRZynDdr4bnPxyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.056 [XNIO-1 task-1] Uw6pw39sRZynDdr4bnPxyg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.056 [XNIO-1 task-1] Uw6pw39sRZynDdr4bnPxyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.058 [XNIO-1 task-1] VlaTiRnGT8awGlw2qHrCwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.058 [XNIO-1 task-1] VlaTiRnGT8awGlw2qHrCwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.058 [XNIO-1 task-1] VlaTiRnGT8awGlw2qHrCwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.058 [XNIO-1 task-1] VlaTiRnGT8awGlw2qHrCwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.058 [XNIO-1 task-1] VlaTiRnGT8awGlw2qHrCwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.059 [XNIO-1 task-1] k9sz5sN-RFOjM77QXoQ9AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.059 [XNIO-1 task-1] k9sz5sN-RFOjM77QXoQ9AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.059 [XNIO-1 task-1] k9sz5sN-RFOjM77QXoQ9AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.059 [XNIO-1 task-1] k9sz5sN-RFOjM77QXoQ9AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.060 [XNIO-1 task-1] k9sz5sN-RFOjM77QXoQ9AA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.060 [XNIO-1 task-1] k9sz5sN-RFOjM77QXoQ9AA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.061 [XNIO-1 task-1] ZTELunF7Q8SWDUUrnV53iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.061 [XNIO-1 task-1] ZTELunF7Q8SWDUUrnV53iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.061 [XNIO-1 task-1] ZTELunF7Q8SWDUUrnV53iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.061 [XNIO-1 task-1] ZTELunF7Q8SWDUUrnV53iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.061 [XNIO-1 task-1] ZTELunF7Q8SWDUUrnV53iw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.064 [XNIO-1 task-1] 0eKnUjZdTniDduKZAAqzBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.064 [XNIO-1 task-1] 0eKnUjZdTniDduKZAAqzBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.064 [XNIO-1 task-1] 0eKnUjZdTniDduKZAAqzBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.064 [XNIO-1 task-1] 0eKnUjZdTniDduKZAAqzBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.066 [XNIO-1 task-1] OW8TV-bvSlWTULhJV0PZkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.066 [XNIO-1 task-1] OW8TV-bvSlWTULhJV0PZkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.066 [XNIO-1 task-1] OW8TV-bvSlWTULhJV0PZkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.066 [XNIO-1 task-1] OW8TV-bvSlWTULhJV0PZkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.066 [XNIO-1 task-1] OW8TV-bvSlWTULhJV0PZkA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.066 [XNIO-1 task-1] OW8TV-bvSlWTULhJV0PZkA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.067 [XNIO-1 task-1] 6LYZrY2TRwy7vkdc__We2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.067 [XNIO-1 task-1] 6LYZrY2TRwy7vkdc__We2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.067 [XNIO-1 task-1] 6LYZrY2TRwy7vkdc__We2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.068 [XNIO-1 task-1] 6LYZrY2TRwy7vkdc__We2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.068 [XNIO-1 task-1] 6LYZrY2TRwy7vkdc__We2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.070 [XNIO-1 task-1] AdYUoWX_TgO4XYFQVCCskw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.070 [XNIO-1 task-1] AdYUoWX_TgO4XYFQVCCskw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.070 [XNIO-1 task-1] AdYUoWX_TgO4XYFQVCCskw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.070 [XNIO-1 task-1] AdYUoWX_TgO4XYFQVCCskw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.070 [XNIO-1 task-1] AdYUoWX_TgO4XYFQVCCskw DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:12.070 [XNIO-1 task-1] AdYUoWX_TgO4XYFQVCCskw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:12.074 [XNIO-1 task-1] QQnZ4S5VTrayQ_F_nh-a2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.074 [XNIO-1 task-1] QQnZ4S5VTrayQ_F_nh-a2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.074 [XNIO-1 task-1] QQnZ4S5VTrayQ_F_nh-a2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.074 [XNIO-1 task-1] QQnZ4S5VTrayQ_F_nh-a2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.078 [XNIO-1 task-1] 0i7_E5HsSBK-8JRwjaiRvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.078 [XNIO-1 task-1] 0i7_E5HsSBK-8JRwjaiRvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.078 [XNIO-1 task-1] 0i7_E5HsSBK-8JRwjaiRvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.078 [XNIO-1 task-1] 0i7_E5HsSBK-8JRwjaiRvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.081 [XNIO-1 task-1] WNqn5_q0REqwuZpifmSfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.081 [XNIO-1 task-1] WNqn5_q0REqwuZpifmSfeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.082 [XNIO-1 task-1] WNqn5_q0REqwuZpifmSfeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.082 [XNIO-1 task-1] WNqn5_q0REqwuZpifmSfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.082 [XNIO-1 task-1] WNqn5_q0REqwuZpifmSfeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.082 [XNIO-1 task-1] WNqn5_q0REqwuZpifmSfeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.084 [XNIO-1 task-1] GhjLBnIMTxSBd6yGAC5OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.084 [XNIO-1 task-1] GhjLBnIMTxSBd6yGAC5OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.084 [XNIO-1 task-1] GhjLBnIMTxSBd6yGAC5OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.084 [XNIO-1 task-1] GhjLBnIMTxSBd6yGAC5OGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.084 [XNIO-1 task-1] GhjLBnIMTxSBd6yGAC5OGw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.086 [XNIO-1 task-1] qErdQYISS8O1PHw25JZrzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.086 [XNIO-1 task-1] qErdQYISS8O1PHw25JZrzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.086 [XNIO-1 task-1] qErdQYISS8O1PHw25JZrzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.086 [XNIO-1 task-1] qErdQYISS8O1PHw25JZrzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.087 [XNIO-1 task-1] erFpccFcQlGCH0XklwlvkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.087 [XNIO-1 task-1] erFpccFcQlGCH0XklwlvkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.087 [XNIO-1 task-1] erFpccFcQlGCH0XklwlvkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.087 [XNIO-1 task-1] erFpccFcQlGCH0XklwlvkA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.090 [XNIO-1 task-1] T_cnFTlxSKusxAaAuT_5CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.090 [XNIO-1 task-1] T_cnFTlxSKusxAaAuT_5CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.090 [XNIO-1 task-1] T_cnFTlxSKusxAaAuT_5CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.090 [XNIO-1 task-1] T_cnFTlxSKusxAaAuT_5CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.090 [XNIO-1 task-1] T_cnFTlxSKusxAaAuT_5CA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.090 [XNIO-1 task-1] T_cnFTlxSKusxAaAuT_5CA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.092 [XNIO-1 task-1] nhU4x5VPQK2TrOhzBrNL0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.092 [XNIO-1 task-1] nhU4x5VPQK2TrOhzBrNL0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.092 [XNIO-1 task-1] nhU4x5VPQK2TrOhzBrNL0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.092 [XNIO-1 task-1] nhU4x5VPQK2TrOhzBrNL0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.095 [XNIO-1 task-1] LpwpNGWCS3GwnakF8vufrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.096 [XNIO-1 task-1] LpwpNGWCS3GwnakF8vufrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.096 [XNIO-1 task-1] LpwpNGWCS3GwnakF8vufrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.096 [XNIO-1 task-1] LpwpNGWCS3GwnakF8vufrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.096 [XNIO-1 task-1] LpwpNGWCS3GwnakF8vufrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.096 [XNIO-1 task-1] LpwpNGWCS3GwnakF8vufrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.098 [XNIO-1 task-1] CoSLZiIaTcuR7ET_-uG7MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.099 [XNIO-1 task-1] CoSLZiIaTcuR7ET_-uG7MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.099 [XNIO-1 task-1] CoSLZiIaTcuR7ET_-uG7MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.099 [XNIO-1 task-1] CoSLZiIaTcuR7ET_-uG7MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.099 [XNIO-1 task-1] CoSLZiIaTcuR7ET_-uG7MQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.100 [XNIO-1 task-1] Iyi7XFfRR9-7jitiukn4CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.101 [XNIO-1 task-1] Iyi7XFfRR9-7jitiukn4CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.101 [XNIO-1 task-1] Iyi7XFfRR9-7jitiukn4CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.101 [XNIO-1 task-1] Iyi7XFfRR9-7jitiukn4CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.101 [XNIO-1 task-1] Iyi7XFfRR9-7jitiukn4CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.101 [XNIO-1 task-1] Iyi7XFfRR9-7jitiukn4CQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.102 [XNIO-1 task-1] ay7Z4g9KRvWI7VRLcqlZ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.103 [XNIO-1 task-1] ay7Z4g9KRvWI7VRLcqlZ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.103 [XNIO-1 task-1] ay7Z4g9KRvWI7VRLcqlZ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.103 [XNIO-1 task-1] ay7Z4g9KRvWI7VRLcqlZ_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.107 [XNIO-1 task-1] Q8_Z648LStOkMyxA3fFbUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.107 [XNIO-1 task-1] Q8_Z648LStOkMyxA3fFbUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.107 [XNIO-1 task-1] Q8_Z648LStOkMyxA3fFbUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.107 [XNIO-1 task-1] Q8_Z648LStOkMyxA3fFbUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.107 [XNIO-1 task-1] Q8_Z648LStOkMyxA3fFbUw DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:12.107 [XNIO-1 task-1] Q8_Z648LStOkMyxA3fFbUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:12.109 [XNIO-1 task-1] gRhxAFYjTnCvbrYHHPoi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.109 [XNIO-1 task-1] gRhxAFYjTnCvbrYHHPoi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.109 [XNIO-1 task-1] gRhxAFYjTnCvbrYHHPoi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.109 [XNIO-1 task-1] gRhxAFYjTnCvbrYHHPoi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.109 [XNIO-1 task-1] gRhxAFYjTnCvbrYHHPoi1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.110 [XNIO-1 task-1] KgmaSEgzREW_H0ifDIG8Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.110 [XNIO-1 task-1] KgmaSEgzREW_H0ifDIG8Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.110 [XNIO-1 task-1] KgmaSEgzREW_H0ifDIG8Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.111 [XNIO-1 task-1] KgmaSEgzREW_H0ifDIG8Cg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.112 [XNIO-1 task-1] JI0CYmtLRXyCA6BqmjOA7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.113 [XNIO-1 task-1] JI0CYmtLRXyCA6BqmjOA7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.113 [XNIO-1 task-1] JI0CYmtLRXyCA6BqmjOA7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.113 [XNIO-1 task-1] JI0CYmtLRXyCA6BqmjOA7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.113 [XNIO-1 task-1] JI0CYmtLRXyCA6BqmjOA7A DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.113 [XNIO-1 task-1] JI0CYmtLRXyCA6BqmjOA7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.115 [XNIO-1 task-1] leZpzlvBQhysKBVJiL-6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.115 [XNIO-1 task-1] leZpzlvBQhysKBVJiL-6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.115 [XNIO-1 task-1] leZpzlvBQhysKBVJiL-6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.115 [XNIO-1 task-1] leZpzlvBQhysKBVJiL-6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.115 [XNIO-1 task-1] leZpzlvBQhysKBVJiL-6YQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.117 [XNIO-1 task-1] BODAjLN7R0yRnguM-6cCZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.117 [XNIO-1 task-1] BODAjLN7R0yRnguM-6cCZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.117 [XNIO-1 task-1] BODAjLN7R0yRnguM-6cCZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.117 [XNIO-1 task-1] BODAjLN7R0yRnguM-6cCZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.117 [XNIO-1 task-1] BODAjLN7R0yRnguM-6cCZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.121 [XNIO-1 task-1] SIzcQEc0TgSCdpPkfEK_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.121 [XNIO-1 task-1] SIzcQEc0TgSCdpPkfEK_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.121 [XNIO-1 task-1] SIzcQEc0TgSCdpPkfEK_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.122 [XNIO-1 task-1] SIzcQEc0TgSCdpPkfEK_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.122 [XNIO-1 task-1] SIzcQEc0TgSCdpPkfEK_zA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.124 [XNIO-1 task-1] ZMfoQcgOQqynBfHGMIQ3uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.124 [XNIO-1 task-1] ZMfoQcgOQqynBfHGMIQ3uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.124 [XNIO-1 task-1] ZMfoQcgOQqynBfHGMIQ3uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.124 [XNIO-1 task-1] ZMfoQcgOQqynBfHGMIQ3uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.124 [XNIO-1 task-1] ZMfoQcgOQqynBfHGMIQ3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.124 [XNIO-1 task-1] ZMfoQcgOQqynBfHGMIQ3uQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.126 [XNIO-1 task-1] OncvXE-TTMO4_rUFulcSlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.126 [XNIO-1 task-1] OncvXE-TTMO4_rUFulcSlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.126 [XNIO-1 task-1] OncvXE-TTMO4_rUFulcSlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.126 [XNIO-1 task-1] OncvXE-TTMO4_rUFulcSlg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.130 [XNIO-1 task-1] KBSWtOJvQ4OXai7WZbAOkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.130 [XNIO-1 task-1] KBSWtOJvQ4OXai7WZbAOkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.130 [XNIO-1 task-1] KBSWtOJvQ4OXai7WZbAOkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.130 [XNIO-1 task-1] KBSWtOJvQ4OXai7WZbAOkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.130 [XNIO-1 task-1] KBSWtOJvQ4OXai7WZbAOkw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.130 [XNIO-1 task-1] KBSWtOJvQ4OXai7WZbAOkw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.132 [XNIO-1 task-1] fVbFKT6dSpCmjQ99xNwOTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.132 [XNIO-1 task-1] fVbFKT6dSpCmjQ99xNwOTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.132 [XNIO-1 task-1] fVbFKT6dSpCmjQ99xNwOTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.132 [XNIO-1 task-1] fVbFKT6dSpCmjQ99xNwOTw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.135 [XNIO-1 task-1] cPcgLvYWSe2ftK2omdCnbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.135 [XNIO-1 task-1] cPcgLvYWSe2ftK2omdCnbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.135 [XNIO-1 task-1] cPcgLvYWSe2ftK2omdCnbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.135 [XNIO-1 task-1] cPcgLvYWSe2ftK2omdCnbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.135 [XNIO-1 task-1] cPcgLvYWSe2ftK2omdCnbA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.138 [XNIO-1 task-1] 2A_0lWdGRQCjXUT-SjYZfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.138 [XNIO-1 task-1] 2A_0lWdGRQCjXUT-SjYZfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.138 [XNIO-1 task-1] 2A_0lWdGRQCjXUT-SjYZfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.138 [XNIO-1 task-1] 2A_0lWdGRQCjXUT-SjYZfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.138 [XNIO-1 task-1] 2A_0lWdGRQCjXUT-SjYZfg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.139 [XNIO-1 task-1] 2A_0lWdGRQCjXUT-SjYZfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.144 [XNIO-1 task-1] zCmQS-BXTMabkUMsZy90hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.145 [XNIO-1 task-1] zCmQS-BXTMabkUMsZy90hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.145 [XNIO-1 task-1] zCmQS-BXTMabkUMsZy90hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.145 [XNIO-1 task-1] zCmQS-BXTMabkUMsZy90hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.145 [XNIO-1 task-1] zCmQS-BXTMabkUMsZy90hA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.147 [XNIO-1 task-1] HKSupBi2QpGMMD-JxChj-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.147 [XNIO-1 task-1] HKSupBi2QpGMMD-JxChj-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.147 [XNIO-1 task-1] HKSupBi2QpGMMD-JxChj-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.147 [XNIO-1 task-1] HKSupBi2QpGMMD-JxChj-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.147 [XNIO-1 task-1] HKSupBi2QpGMMD-JxChj-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.147 [XNIO-1 task-1] HKSupBi2QpGMMD-JxChj-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.149 [XNIO-1 task-1] V3Y7DbbSRIW3MuhBgyJ9dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.149 [XNIO-1 task-1] V3Y7DbbSRIW3MuhBgyJ9dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.149 [XNIO-1 task-1] V3Y7DbbSRIW3MuhBgyJ9dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.149 [XNIO-1 task-1] V3Y7DbbSRIW3MuhBgyJ9dA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.153 [XNIO-1 task-1] 4Vk6coRkQ0mX0H_5zwNQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.153 [XNIO-1 task-1] 4Vk6coRkQ0mX0H_5zwNQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.153 [XNIO-1 task-1] 4Vk6coRkQ0mX0H_5zwNQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.153 [XNIO-1 task-1] 4Vk6coRkQ0mX0H_5zwNQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.153 [XNIO-1 task-1] 4Vk6coRkQ0mX0H_5zwNQXw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.153 [XNIO-1 task-1] 4Vk6coRkQ0mX0H_5zwNQXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.155 [XNIO-1 task-1] 6azKmNNRTH6_9vThCpMvMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.155 [XNIO-1 task-1] 6azKmNNRTH6_9vThCpMvMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.155 [XNIO-1 task-1] 6azKmNNRTH6_9vThCpMvMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.155 [XNIO-1 task-1] 6azKmNNRTH6_9vThCpMvMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.156 [XNIO-1 task-1] 6azKmNNRTH6_9vThCpMvMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.157 [XNIO-1 task-1] yiYANJ5bTEqYB0KsDFZNjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.157 [XNIO-1 task-1] yiYANJ5bTEqYB0KsDFZNjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.157 [XNIO-1 task-1] yiYANJ5bTEqYB0KsDFZNjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.157 [XNIO-1 task-1] yiYANJ5bTEqYB0KsDFZNjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.157 [XNIO-1 task-1] yiYANJ5bTEqYB0KsDFZNjw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.157 [XNIO-1 task-1] yiYANJ5bTEqYB0KsDFZNjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.159 [XNIO-1 task-1] IucCpsh_QF6mfUA-8cPziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.159 [XNIO-1 task-1] IucCpsh_QF6mfUA-8cPziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.159 [XNIO-1 task-1] IucCpsh_QF6mfUA-8cPziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.159 [XNIO-1 task-1] IucCpsh_QF6mfUA-8cPziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.159 [XNIO-1 task-1] IucCpsh_QF6mfUA-8cPziw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.161 [XNIO-1 task-1] nR2Lt7jVSYq2bBEwHx2GOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.161 [XNIO-1 task-1] nR2Lt7jVSYq2bBEwHx2GOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.161 [XNIO-1 task-1] nR2Lt7jVSYq2bBEwHx2GOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.161 [XNIO-1 task-1] nR2Lt7jVSYq2bBEwHx2GOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.161 [XNIO-1 task-1] nR2Lt7jVSYq2bBEwHx2GOg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.161 [XNIO-1 task-1] nR2Lt7jVSYq2bBEwHx2GOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.164 [XNIO-1 task-1] 6KnQbKBkQuei4PYyECplgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.164 [XNIO-1 task-1] 6KnQbKBkQuei4PYyECplgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.164 [XNIO-1 task-1] 6KnQbKBkQuei4PYyECplgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.164 [XNIO-1 task-1] 6KnQbKBkQuei4PYyECplgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.164 [XNIO-1 task-1] 6KnQbKBkQuei4PYyECplgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.166 [XNIO-1 task-1] 1GKUDv2UQZea9y7LVI9UIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.166 [XNIO-1 task-1] 1GKUDv2UQZea9y7LVI9UIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.166 [XNIO-1 task-1] 1GKUDv2UQZea9y7LVI9UIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.166 [XNIO-1 task-1] 1GKUDv2UQZea9y7LVI9UIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.166 [XNIO-1 task-1] 1GKUDv2UQZea9y7LVI9UIA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.166 [XNIO-1 task-1] 1GKUDv2UQZea9y7LVI9UIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.168 [XNIO-1 task-1] D3O9-LOCSaCseD9jB72MfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.168 [XNIO-1 task-1] D3O9-LOCSaCseD9jB72MfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.168 [XNIO-1 task-1] D3O9-LOCSaCseD9jB72MfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.168 [XNIO-1 task-1] D3O9-LOCSaCseD9jB72MfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.168 [XNIO-1 task-1] D3O9-LOCSaCseD9jB72MfA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.169 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.170 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.170 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.170 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +18:11:12.170 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.170 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.170 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.170 [XNIO-1 task-1] OK6Z7MKoRaO0IICWjj9gmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.173 [XNIO-1 task-1] wAp1KUyCT9WMFrAWRxYCsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null + +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.175 [XNIO-1 task-1] 4bPD1nLHRombv7tg1N3CjA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.176 [XNIO-1 task-1] M_dZpH3FR0alFcfxs9gvUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.176 [XNIO-1 task-1] M_dZpH3FR0alFcfxs9gvUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.176 [XNIO-1 task-1] M_dZpH3FR0alFcfxs9gvUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.177 [XNIO-1 task-1] M_dZpH3FR0alFcfxs9gvUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.177 [XNIO-1 task-1] M_dZpH3FR0alFcfxs9gvUA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.183 [XNIO-1 task-1] v6ntTrdnSbWawCOTJscU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.183 [XNIO-1 task-1] v6ntTrdnSbWawCOTJscU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.183 [XNIO-1 task-1] v6ntTrdnSbWawCOTJscU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.183 [XNIO-1 task-1] v6ntTrdnSbWawCOTJscU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.183 [XNIO-1 task-1] v6ntTrdnSbWawCOTJscU4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.185 [XNIO-1 task-1] I7L43uz1SNWOtCVRWWGP2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +Jun 28, 2024 6:11:13 PM com.hazelcast.map.impl.operation.DeleteOperation +18:11:12.185 [XNIO-1 task-1] I7L43uz1SNWOtCVRWWGP2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:12.187 [XNIO-1 task-1] 5ednDlLqSCuCYlWGBQmcuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +18:11:12.187 [XNIO-1 task-1] 5ednDlLqSCuCYlWGBQmcuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.187 [XNIO-1 task-1] 5ednDlLqSCuCYlWGBQmcuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.187 [XNIO-1 task-1] 5ednDlLqSCuCYlWGBQmcuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:11:12.189 [XNIO-1 task-1] ZVB4e9piSy6qnw2Spzm25g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null + +18:11:12.189 [XNIO-1 task-1] ZVB4e9piSy6qnw2Spzm25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.189 [XNIO-1 task-1] ZVB4e9piSy6qnw2Spzm25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.189 [XNIO-1 task-1] ZVB4e9piSy6qnw2Spzm25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.189 [XNIO-1 task-1] ZVB4e9piSy6qnw2Spzm25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.189 [XNIO-1 task-1] ZVB4e9piSy6qnw2Spzm25g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.191 [XNIO-1 task-1] Rt0N6GuzSya4bXjtEYl-RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.191 [XNIO-1 task-1] Rt0N6GuzSya4bXjtEYl-RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.191 [XNIO-1 task-1] Rt0N6GuzSya4bXjtEYl-RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.191 [XNIO-1 task-1] Rt0N6GuzSya4bXjtEYl-RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.192 [XNIO-1 task-1] Rt0N6GuzSya4bXjtEYl-RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.192 [XNIO-1 task-1] Rt0N6GuzSya4bXjtEYl-RQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.193 [XNIO-1 task-1] LyunlCKeQ16nnoCeLWrQRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.193 [XNIO-1 task-1] LyunlCKeQ16nnoCeLWrQRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.193 [XNIO-1 task-1] LyunlCKeQ16nnoCeLWrQRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.193 [XNIO-1 task-1] LyunlCKeQ16nnoCeLWrQRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.194 [XNIO-1 task-1] LyunlCKeQ16nnoCeLWrQRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.195 [XNIO-1 task-1] 97bpJyDVQRuSVEUO-2Qe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.195 [XNIO-1 task-1] 97bpJyDVQRuSVEUO-2Qe4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.195 [XNIO-1 task-1] 97bpJyDVQRuSVEUO-2Qe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.195 [XNIO-1 task-1] 97bpJyDVQRuSVEUO-2Qe4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.197 [XNIO-1 task-1] 9G6h1glhR1mJkTbpYrv6Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.197 [XNIO-1 task-1] 9G6h1glhR1mJkTbpYrv6Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.197 [XNIO-1 task-1] 9G6h1glhR1mJkTbpYrv6Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.197 [XNIO-1 task-1] 9G6h1glhR1mJkTbpYrv6Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.197 [XNIO-1 task-1] 9G6h1glhR1mJkTbpYrv6Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:12.197 [XNIO-1 task-1] 9G6h1glhR1mJkTbpYrv6Sg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:12.200 [XNIO-1 task-1] gMHZxDoBRC6tNRVsqRjdnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.200 [XNIO-1 task-1] gMHZxDoBRC6tNRVsqRjdnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.200 [XNIO-1 task-1] gMHZxDoBRC6tNRVsqRjdnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.200 [XNIO-1 task-1] gMHZxDoBRC6tNRVsqRjdnw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.204 [XNIO-1 task-1] naVqOpwpSlOoBsc42uOy2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.204 [XNIO-1 task-1] naVqOpwpSlOoBsc42uOy2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.204 [XNIO-1 task-1] naVqOpwpSlOoBsc42uOy2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.204 [XNIO-1 task-1] naVqOpwpSlOoBsc42uOy2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.206 [XNIO-1 task-1] LMgd81zXTf2ESzWypC5Nig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.206 [XNIO-1 task-1] LMgd81zXTf2ESzWypC5Nig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.206 [XNIO-1 task-1] LMgd81zXTf2ESzWypC5Nig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.206 [XNIO-1 task-1] LMgd81zXTf2ESzWypC5Nig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.206 [XNIO-1 task-1] LMgd81zXTf2ESzWypC5Nig DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.206 [XNIO-1 task-1] LMgd81zXTf2ESzWypC5Nig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.208 [XNIO-1 task-1] 1d4_5NZxTXWyCnDO_SvoiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.208 [XNIO-1 task-1] 1d4_5NZxTXWyCnDO_SvoiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.208 [XNIO-1 task-1] 1d4_5NZxTXWyCnDO_SvoiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.209 [XNIO-1 task-1] 1d4_5NZxTXWyCnDO_SvoiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.209 [XNIO-1 task-1] 1d4_5NZxTXWyCnDO_SvoiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.210 [XNIO-1 task-1] 7phvXZmHRZyXM0ntN9oq9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.210 [XNIO-1 task-1] 7phvXZmHRZyXM0ntN9oq9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.210 [XNIO-1 task-1] 7phvXZmHRZyXM0ntN9oq9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.211 [XNIO-1 task-1] 7phvXZmHRZyXM0ntN9oq9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.211 [XNIO-1 task-1] 7phvXZmHRZyXM0ntN9oq9g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.211 [XNIO-1 task-1] 7phvXZmHRZyXM0ntN9oq9g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.212 [XNIO-1 task-1] mdPL_dVJSaK4JzRuPrB9TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.212 [XNIO-1 task-1] mdPL_dVJSaK4JzRuPrB9TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.212 [XNIO-1 task-1] mdPL_dVJSaK4JzRuPrB9TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.213 [XNIO-1 task-1] mdPL_dVJSaK4JzRuPrB9TQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.214 [XNIO-1 task-1] VRgPNoO1TnWeK9GcaRsp3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.214 [XNIO-1 task-1] VRgPNoO1TnWeK9GcaRsp3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.214 [XNIO-1 task-1] VRgPNoO1TnWeK9GcaRsp3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.214 [XNIO-1 task-1] VRgPNoO1TnWeK9GcaRsp3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.214 [XNIO-1 task-1] VRgPNoO1TnWeK9GcaRsp3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.216 [XNIO-1 task-1] KcS1-MY1Q7i9G8WQFgwjAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.216 [XNIO-1 task-1] KcS1-MY1Q7i9G8WQFgwjAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.216 [XNIO-1 task-1] KcS1-MY1Q7i9G8WQFgwjAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.216 [XNIO-1 task-1] KcS1-MY1Q7i9G8WQFgwjAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.216 [XNIO-1 task-1] KcS1-MY1Q7i9G8WQFgwjAA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.220 [XNIO-1 task-1] qB1MGCS8Qi2Y70v0YYzpXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.220 [XNIO-1 task-1] qB1MGCS8Qi2Y70v0YYzpXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.220 [XNIO-1 task-1] qB1MGCS8Qi2Y70v0YYzpXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.220 [XNIO-1 task-1] qB1MGCS8Qi2Y70v0YYzpXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.220 [XNIO-1 task-1] qB1MGCS8Qi2Y70v0YYzpXA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.221 [XNIO-1 task-1] lJ-ojTS3RKejAFbg0cgjKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.222 [XNIO-1 task-1] lJ-ojTS3RKejAFbg0cgjKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.222 [XNIO-1 task-1] lJ-ojTS3RKejAFbg0cgjKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.222 [XNIO-1 task-1] lJ-ojTS3RKejAFbg0cgjKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.222 [XNIO-1 task-1] lJ-ojTS3RKejAFbg0cgjKw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.222 [XNIO-1 task-1] lJ-ojTS3RKejAFbg0cgjKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.224 [XNIO-1 task-1] bmLwbFLxS7OfSxDJ5Nk_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.224 [XNIO-1 task-1] bmLwbFLxS7OfSxDJ5Nk_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.224 [XNIO-1 task-1] bmLwbFLxS7OfSxDJ5Nk_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.224 [XNIO-1 task-1] bmLwbFLxS7OfSxDJ5Nk_rw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.228 [XNIO-1 task-1] 5s5TMWE9TvSO5Yeyy27jcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.228 [XNIO-1 task-1] 5s5TMWE9TvSO5Yeyy27jcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.228 [XNIO-1 task-1] 5s5TMWE9TvSO5Yeyy27jcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.228 [XNIO-1 task-1] 5s5TMWE9TvSO5Yeyy27jcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.228 [XNIO-1 task-1] 5s5TMWE9TvSO5Yeyy27jcg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:12.228 [XNIO-1 task-1] 5s5TMWE9TvSO5Yeyy27jcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:12.230 [XNIO-1 task-1] Y6JXXzdfRY6mflgZXiuvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.230 [XNIO-1 task-1] Y6JXXzdfRY6mflgZXiuvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.230 [XNIO-1 task-1] Y6JXXzdfRY6mflgZXiuvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.230 [XNIO-1 task-1] Y6JXXzdfRY6mflgZXiuvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.230 [XNIO-1 task-1] Y6JXXzdfRY6mflgZXiuvRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.232 [XNIO-1 task-1] cZKP5tlBSw6eLDkFdrw2aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.232 [XNIO-1 task-1] cZKP5tlBSw6eLDkFdrw2aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.232 [XNIO-1 task-1] cZKP5tlBSw6eLDkFdrw2aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.232 [XNIO-1 task-1] cZKP5tlBSw6eLDkFdrw2aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.232 [XNIO-1 task-1] cZKP5tlBSw6eLDkFdrw2aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.232 [XNIO-1 task-1] cZKP5tlBSw6eLDkFdrw2aQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.234 [XNIO-1 task-1] FQ57hID1Sky9i_RFmzhWBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.234 [XNIO-1 task-1] FQ57hID1Sky9i_RFmzhWBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.234 [XNIO-1 task-1] FQ57hID1Sky9i_RFmzhWBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.234 [XNIO-1 task-1] FQ57hID1Sky9i_RFmzhWBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.238 [XNIO-1 task-1] 9SqEYKoCRcm1krPyOR95Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.238 [XNIO-1 task-1] 9SqEYKoCRcm1krPyOR95Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.238 [XNIO-1 task-1] 9SqEYKoCRcm1krPyOR95Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.238 [XNIO-1 task-1] 9SqEYKoCRcm1krPyOR95Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.238 [XNIO-1 task-1] 9SqEYKoCRcm1krPyOR95Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.238 [XNIO-1 task-1] 9SqEYKoCRcm1krPyOR95Eg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.240 [XNIO-1 task-1] aWDwZD9HQY67ZzkDkWudlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.240 [XNIO-1 task-1] aWDwZD9HQY67ZzkDkWudlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.240 [XNIO-1 task-1] aWDwZD9HQY67ZzkDkWudlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.240 [XNIO-1 task-1] aWDwZD9HQY67ZzkDkWudlw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.241 [XNIO-1 task-1] qvWx8B9NTK29rovPSDwDwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.242 [XNIO-1 task-1] qvWx8B9NTK29rovPSDwDwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.242 [XNIO-1 task-1] qvWx8B9NTK29rovPSDwDwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.242 [XNIO-1 task-1] qvWx8B9NTK29rovPSDwDwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.242 [XNIO-1 task-1] qvWx8B9NTK29rovPSDwDwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.245 [XNIO-1 task-1] jrFBvL9xQkePtw6iTVtyLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.245 [XNIO-1 task-1] jrFBvL9xQkePtw6iTVtyLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.245 [XNIO-1 task-1] jrFBvL9xQkePtw6iTVtyLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.245 [XNIO-1 task-1] jrFBvL9xQkePtw6iTVtyLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.245 [XNIO-1 task-1] jrFBvL9xQkePtw6iTVtyLw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.245 [XNIO-1 task-1] jrFBvL9xQkePtw6iTVtyLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.247 [XNIO-1 task-1] ijai_LW9QAmUYEQxcuWy2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.247 [XNIO-1 task-1] ijai_LW9QAmUYEQxcuWy2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.247 [XNIO-1 task-1] ijai_LW9QAmUYEQxcuWy2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.247 [XNIO-1 task-1] ijai_LW9QAmUYEQxcuWy2Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.248 [XNIO-1 task-1] YZbMUXrdSGq2WjimgYh7xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.248 [XNIO-1 task-1] YZbMUXrdSGq2WjimgYh7xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.248 [XNIO-1 task-1] YZbMUXrdSGq2WjimgYh7xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.248 [XNIO-1 task-1] YZbMUXrdSGq2WjimgYh7xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.248 [XNIO-1 task-1] YZbMUXrdSGq2WjimgYh7xA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.250 [XNIO-1 task-1] kSJECcmMT4ySP96SN1midQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.250 [XNIO-1 task-1] kSJECcmMT4ySP96SN1midQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.250 [XNIO-1 task-1] kSJECcmMT4ySP96SN1midQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.250 [XNIO-1 task-1] kSJECcmMT4ySP96SN1midQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.250 [XNIO-1 task-1] kSJECcmMT4ySP96SN1midQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:12.250 [XNIO-1 task-1] kSJECcmMT4ySP96SN1midQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:12.252 [XNIO-1 task-1] jwEh8xXBSMGanHSHl3XPUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.252 [XNIO-1 task-1] jwEh8xXBSMGanHSHl3XPUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.252 [XNIO-1 task-1] jwEh8xXBSMGanHSHl3XPUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.252 [XNIO-1 task-1] jwEh8xXBSMGanHSHl3XPUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.252 [XNIO-1 task-1] jwEh8xXBSMGanHSHl3XPUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.255 [XNIO-1 task-1] 73Mt8tpmQke-cE87pRb9Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.255 [XNIO-1 task-1] 73Mt8tpmQke-cE87pRb9Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.255 [XNIO-1 task-1] 73Mt8tpmQke-cE87pRb9Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.255 [XNIO-1 task-1] 73Mt8tpmQke-cE87pRb9Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.255 [XNIO-1 task-1] 73Mt8tpmQke-cE87pRb9Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.255 [XNIO-1 task-1] 73Mt8tpmQke-cE87pRb9Yg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.256 [XNIO-1 task-1] tQ65EME3ROy24s7Xdm1G3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.256 [XNIO-1 task-1] tQ65EME3ROy24s7Xdm1G3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.257 [XNIO-1 task-1] tQ65EME3ROy24s7Xdm1G3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.257 [XNIO-1 task-1] tQ65EME3ROy24s7Xdm1G3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.260 [XNIO-1 task-1] YDP5xNt4RamdyZeapAF1-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.261 [XNIO-1 task-1] YDP5xNt4RamdyZeapAF1-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.261 [XNIO-1 task-1] YDP5xNt4RamdyZeapAF1-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.261 [XNIO-1 task-1] YDP5xNt4RamdyZeapAF1-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.261 [XNIO-1 task-1] YDP5xNt4RamdyZeapAF1-g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.261 [XNIO-1 task-1] YDP5xNt4RamdyZeapAF1-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.264 [XNIO-1 task-1] CVIhqaPMSL-aKYuqdze1WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.264 [XNIO-1 task-1] CVIhqaPMSL-aKYuqdze1WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.265 [XNIO-1 task-1] CVIhqaPMSL-aKYuqdze1WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.265 [XNIO-1 task-1] CVIhqaPMSL-aKYuqdze1WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.265 [XNIO-1 task-1] CVIhqaPMSL-aKYuqdze1WQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.266 [XNIO-1 task-1] gyJpsLQHRLWWmxh8GhBlzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.266 [XNIO-1 task-1] gyJpsLQHRLWWmxh8GhBlzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.266 [XNIO-1 task-1] gyJpsLQHRLWWmxh8GhBlzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.266 [XNIO-1 task-1] gyJpsLQHRLWWmxh8GhBlzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.266 [XNIO-1 task-1] gyJpsLQHRLWWmxh8GhBlzg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.270 [XNIO-1 task-1] cj9vRLCcSfCQHfoSp9qzCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.271 [XNIO-1 task-1] cj9vRLCcSfCQHfoSp9qzCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.271 [XNIO-1 task-1] cj9vRLCcSfCQHfoSp9qzCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.271 [XNIO-1 task-1] cj9vRLCcSfCQHfoSp9qzCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.271 [XNIO-1 task-1] cj9vRLCcSfCQHfoSp9qzCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.274 [XNIO-1 task-1] Bbcd5w7GSGagGdIWAY2PIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.274 [XNIO-1 task-1] Bbcd5w7GSGagGdIWAY2PIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.274 [XNIO-1 task-1] Bbcd5w7GSGagGdIWAY2PIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.274 [XNIO-1 task-1] Bbcd5w7GSGagGdIWAY2PIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.274 [XNIO-1 task-1] Bbcd5w7GSGagGdIWAY2PIA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.274 [XNIO-1 task-1] Bbcd5w7GSGagGdIWAY2PIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.276 [XNIO-1 task-1] BZmark3ISFGnEpBNb0A4GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.276 [XNIO-1 task-1] BZmark3ISFGnEpBNb0A4GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.276 [XNIO-1 task-1] BZmark3ISFGnEpBNb0A4GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.276 [XNIO-1 task-1] BZmark3ISFGnEpBNb0A4GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.276 [XNIO-1 task-1] BZmark3ISFGnEpBNb0A4GQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.277 [XNIO-1 task-1] hAjr-QUYRcu4s-H7OoEtAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.278 [XNIO-1 task-1] hAjr-QUYRcu4s-H7OoEtAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.278 [XNIO-1 task-1] hAjr-QUYRcu4s-H7OoEtAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.278 [XNIO-1 task-1] hAjr-QUYRcu4s-H7OoEtAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.278 [XNIO-1 task-1] hAjr-QUYRcu4s-H7OoEtAg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.278 [XNIO-1 task-1] hAjr-QUYRcu4s-H7OoEtAg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.279 [XNIO-1 task-1] IBYjuVGrQ-izRzz7gYHGRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.279 [XNIO-1 task-1] IBYjuVGrQ-izRzz7gYHGRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.279 [XNIO-1 task-1] IBYjuVGrQ-izRzz7gYHGRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.279 [XNIO-1 task-1] IBYjuVGrQ-izRzz7gYHGRA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.281 [XNIO-1 task-1] kILeyrOOSPG-jd-T6ZO3PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.281 [XNIO-1 task-1] kILeyrOOSPG-jd-T6ZO3PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.281 [XNIO-1 task-1] kILeyrOOSPG-jd-T6ZO3PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.281 [XNIO-1 task-1] kILeyrOOSPG-jd-T6ZO3PQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.286 [XNIO-1 task-1] xKmEsI-qTe6GGxFUOCym1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.286 [XNIO-1 task-1] xKmEsI-qTe6GGxFUOCym1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.286 [XNIO-1 task-1] xKmEsI-qTe6GGxFUOCym1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +Jun 28, 2024 6:11:14 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +18:11:12.290 [XNIO-1 task-1] l07KDnfTQI2lGhZGozVUog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.290 [XNIO-1 task-1] l07KDnfTQI2lGhZGozVUog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:11:12.290 [XNIO-1 task-1] l07KDnfTQI2lGhZGozVUog DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.290 [XNIO-1 task-1] l07KDnfTQI2lGhZGozVUog ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.292 [XNIO-1 task-1] wS2i5yemTOS4vy3L0iUhKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.292 [XNIO-1 task-1] wS2i5yemTOS4vy3L0iUhKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.293 [XNIO-1 task-1] wS2i5yemTOS4vy3L0iUhKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.293 [XNIO-1 task-1] wS2i5yemTOS4vy3L0iUhKA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.294 [XNIO-1 task-1] WQjoTdnJQqqX-oJVMiG4jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.294 [XNIO-1 task-1] WQjoTdnJQqqX-oJVMiG4jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +18:11:12.294 [XNIO-1 task-1] WQjoTdnJQqqX-oJVMiG4jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.295 [XNIO-1 task-1] WQjoTdnJQqqX-oJVMiG4jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.295 [XNIO-1 task-1] WQjoTdnJQqqX-oJVMiG4jw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.295 [XNIO-1 task-1] WQjoTdnJQqqX-oJVMiG4jw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.295 [XNIO-1 task-1] WQjoTdnJQqqX-oJVMiG4jw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.296 [XNIO-1 task-1] qbE3P1B7QLW7erSTi9eeUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.296 [XNIO-1 task-1] qbE3P1B7QLW7erSTi9eeUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + +18:11:12.296 [XNIO-1 task-1] qbE3P1B7QLW7erSTi9eeUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.296 [XNIO-1 task-1] qbE3P1B7QLW7erSTi9eeUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.296 [XNIO-1 task-1] qbE3P1B7QLW7erSTi9eeUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.298 [XNIO-1 task-1] 0j4_Y7OkRr2zSDsZlxWFIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.298 [XNIO-1 task-1] 0j4_Y7OkRr2zSDsZlxWFIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.298 [XNIO-1 task-1] 0j4_Y7OkRr2zSDsZlxWFIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.298 [XNIO-1 task-1] 0j4_Y7OkRr2zSDsZlxWFIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.298 [XNIO-1 task-1] 0j4_Y7OkRr2zSDsZlxWFIw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.298 [XNIO-1 task-1] 0j4_Y7OkRr2zSDsZlxWFIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.301 [XNIO-1 task-1] QLB4LZb0Rxi4-JS33xxETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.301 [XNIO-1 task-1] QLB4LZb0Rxi4-JS33xxETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.301 [XNIO-1 task-1] QLB4LZb0Rxi4-JS33xxETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.301 [XNIO-1 task-1] QLB4LZb0Rxi4-JS33xxETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.301 [XNIO-1 task-1] QLB4LZb0Rxi4-JS33xxETA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.302 [XNIO-1 task-1] Geh_UgT8RVaAYr14Lt-Uxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.302 [XNIO-1 task-1] Geh_UgT8RVaAYr14Lt-Uxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.303 [XNIO-1 task-1] Geh_UgT8RVaAYr14Lt-Uxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.303 [XNIO-1 task-1] Geh_UgT8RVaAYr14Lt-Uxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.303 [XNIO-1 task-1] Geh_UgT8RVaAYr14Lt-Uxg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.303 [XNIO-1 task-1] Geh_UgT8RVaAYr14Lt-Uxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.304 [XNIO-1 task-1] HN2iMn0PSuWPKVxDJguvZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.304 [XNIO-1 task-1] HN2iMn0PSuWPKVxDJguvZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.304 [XNIO-1 task-1] HN2iMn0PSuWPKVxDJguvZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.304 [XNIO-1 task-1] HN2iMn0PSuWPKVxDJguvZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.305 [XNIO-1 task-1] HN2iMn0PSuWPKVxDJguvZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.306 [XNIO-1 task-1] iRG4Us2BSOmpBmabdjOyLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.306 [XNIO-1 task-1] iRG4Us2BSOmpBmabdjOyLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.306 [XNIO-1 task-1] iRG4Us2BSOmpBmabdjOyLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.306 [XNIO-1 task-1] iRG4Us2BSOmpBmabdjOyLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.306 [XNIO-1 task-1] iRG4Us2BSOmpBmabdjOyLA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.306 [XNIO-1 task-1] iRG4Us2BSOmpBmabdjOyLA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +Jun 28, 2024 6:11:14 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +18:11:12.309 [XNIO-1 task-1] j-RC0uGaRbmRDNz6-BX2Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:11:12.311 [XNIO-1 task-1] qWgytiRrTy22Fe8TOOhiNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.311 [XNIO-1 task-1] qWgytiRrTy22Fe8TOOhiNA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:11:12.312 [XNIO-1 task-1] N_QM3AnyTIiXJ9LvLIkq9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.313 [XNIO-1 task-1] N_QM3AnyTIiXJ9LvLIkq9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.313 [XNIO-1 task-1] N_QM3AnyTIiXJ9LvLIkq9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.313 [XNIO-1 task-1] N_QM3AnyTIiXJ9LvLIkq9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +18:11:12.313 [XNIO-1 task-1] N_QM3AnyTIiXJ9LvLIkq9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.314 [XNIO-1 task-1] anypFI24STK3aBQLV7wxEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:12.316 [XNIO-1 task-1] 5c4W4xEJSUyo8_jsZQRZRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.316 [XNIO-1 task-1] 5c4W4xEJSUyo8_jsZQRZRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.316 [XNIO-1 task-1] 5c4W4xEJSUyo8_jsZQRZRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.316 [XNIO-1 task-1] 5c4W4xEJSUyo8_jsZQRZRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.316 [XNIO-1 task-1] 5c4W4xEJSUyo8_jsZQRZRA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.316 [XNIO-1 task-1] 5c4W4xEJSUyo8_jsZQRZRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.320 [XNIO-1 task-1] B94kRyyzTeW4d8umJb26zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.320 [XNIO-1 task-1] B94kRyyzTeW4d8umJb26zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.320 [XNIO-1 task-1] B94kRyyzTeW4d8umJb26zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.320 [XNIO-1 task-1] B94kRyyzTeW4d8umJb26zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.320 [XNIO-1 task-1] B94kRyyzTeW4d8umJb26zw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.321 [XNIO-1 task-1] if6GXOmlTeiVA_UEu-qhAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.322 [XNIO-1 task-1] if6GXOmlTeiVA_UEu-qhAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.322 [XNIO-1 task-1] if6GXOmlTeiVA_UEu-qhAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.322 [XNIO-1 task-1] if6GXOmlTeiVA_UEu-qhAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.322 [XNIO-1 task-1] if6GXOmlTeiVA_UEu-qhAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.322 [XNIO-1 task-1] if6GXOmlTeiVA_UEu-qhAQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.323 [XNIO-1 task-1] tniE7ETnTyKpo-Rc8z9F2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.323 [XNIO-1 task-1] tniE7ETnTyKpo-Rc8z9F2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.323 [XNIO-1 task-1] tniE7ETnTyKpo-Rc8z9F2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.324 [XNIO-1 task-1] tniE7ETnTyKpo-Rc8z9F2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.324 [XNIO-1 task-1] tniE7ETnTyKpo-Rc8z9F2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.325 [XNIO-1 task-1] 6rE9qPtyTzidnhDKLLhs7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.325 [XNIO-1 task-1] 6rE9qPtyTzidnhDKLLhs7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.325 [XNIO-1 task-1] 6rE9qPtyTzidnhDKLLhs7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.325 [XNIO-1 task-1] 6rE9qPtyTzidnhDKLLhs7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.325 [XNIO-1 task-1] 6rE9qPtyTzidnhDKLLhs7A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.329 [XNIO-1 task-1] FLbGH_3xS0WROfZSk0pX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.329 [XNIO-1 task-1] FLbGH_3xS0WROfZSk0pX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.329 [XNIO-1 task-1] FLbGH_3xS0WROfZSk0pX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.329 [XNIO-1 task-1] FLbGH_3xS0WROfZSk0pX-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.330 [XNIO-1 task-1] FLbGH_3xS0WROfZSk0pX-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.331 [XNIO-1 task-1] 4voiDGTfQsywG5hDA6X1-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.331 [XNIO-1 task-1] 4voiDGTfQsywG5hDA6X1-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.331 [XNIO-1 task-1] 4voiDGTfQsywG5hDA6X1-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.331 [XNIO-1 task-1] 4voiDGTfQsywG5hDA6X1-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.331 [XNIO-1 task-1] 4voiDGTfQsywG5hDA6X1-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.331 [XNIO-1 task-1] 4voiDGTfQsywG5hDA6X1-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.333 [XNIO-1 task-1] ZuxM8elZTzCjfPLdAT01YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.333 [XNIO-1 task-1] ZuxM8elZTzCjfPLdAT01YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.333 [XNIO-1 task-1] ZuxM8elZTzCjfPLdAT01YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.333 [XNIO-1 task-1] ZuxM8elZTzCjfPLdAT01YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:12.340 [XNIO-1 task-1] Jynzo0sNQ4OM_wfhxm3TpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.342 [XNIO-1 task-1] 8CBoVGzyTaWhrJOu8W7qDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.342 [XNIO-1 task-1] 8CBoVGzyTaWhrJOu8W7qDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.342 [XNIO-1 task-1] 8CBoVGzyTaWhrJOu8W7qDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.342 [XNIO-1 task-1] 8CBoVGzyTaWhrJOu8W7qDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.342 [XNIO-1 task-1] 8CBoVGzyTaWhrJOu8W7qDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.344 [XNIO-1 task-1] 8JnRIW_eRjuST7CltztD-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.344 [XNIO-1 task-1] 8JnRIW_eRjuST7CltztD-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.344 [XNIO-1 task-1] 8JnRIW_eRjuST7CltztD-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.344 [XNIO-1 task-1] 8JnRIW_eRjuST7CltztD-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.347 [XNIO-1 task-1] h5rQNgRNQW6rPgfkOeZMGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.347 [XNIO-1 task-1] h5rQNgRNQW6rPgfkOeZMGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.348 [XNIO-1 task-1] h5rQNgRNQW6rPgfkOeZMGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.348 [XNIO-1 task-1] h5rQNgRNQW6rPgfkOeZMGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.349 [XNIO-1 task-1] v9NhYg9PSXu3qbf7JoD-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.349 [XNIO-1 task-1] v9NhYg9PSXu3qbf7JoD-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.349 [XNIO-1 task-1] v9NhYg9PSXu3qbf7JoD-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.349 [XNIO-1 task-1] v9NhYg9PSXu3qbf7JoD-XA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.350 [XNIO-1 task-1] tEqAlKDAQGKJrUZOksTo7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.350 [XNIO-1 task-1] tEqAlKDAQGKJrUZOksTo7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.350 [XNIO-1 task-1] tEqAlKDAQGKJrUZOksTo7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.351 [XNIO-1 task-1] tEqAlKDAQGKJrUZOksTo7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.351 [XNIO-1 task-1] tEqAlKDAQGKJrUZOksTo7A DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.351 [XNIO-1 task-1] tEqAlKDAQGKJrUZOksTo7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.352 [XNIO-1 task-1] fCxlNTr2QXi0r6BCCWXZSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.352 [XNIO-1 task-1] fCxlNTr2QXi0r6BCCWXZSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.352 [XNIO-1 task-1] fCxlNTr2QXi0r6BCCWXZSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.352 [XNIO-1 task-1] fCxlNTr2QXi0r6BCCWXZSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.352 [XNIO-1 task-1] fCxlNTr2QXi0r6BCCWXZSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.354 [XNIO-1 task-1] Q53YxocfSeqP4xgtes3SsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.354 [XNIO-1 task-1] Q53YxocfSeqP4xgtes3SsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.354 [XNIO-1 task-1] Q53YxocfSeqP4xgtes3SsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.354 [XNIO-1 task-1] Q53YxocfSeqP4xgtes3SsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.357 [XNIO-1 task-1] EWKajtZiRHyE9CHl7bb4BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.357 [XNIO-1 task-1] EWKajtZiRHyE9CHl7bb4BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.357 [XNIO-1 task-1] EWKajtZiRHyE9CHl7bb4BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.357 [XNIO-1 task-1] EWKajtZiRHyE9CHl7bb4BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.357 [XNIO-1 task-1] EWKajtZiRHyE9CHl7bb4BA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.357 [XNIO-1 task-1] EWKajtZiRHyE9CHl7bb4BA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.359 [XNIO-1 task-1] vFxPJjJ2QRu3gyTWVSNS9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.359 [XNIO-1 task-1] vFxPJjJ2QRu3gyTWVSNS9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.359 [XNIO-1 task-1] vFxPJjJ2QRu3gyTWVSNS9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.359 [XNIO-1 task-1] vFxPJjJ2QRu3gyTWVSNS9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.359 [XNIO-1 task-1] vFxPJjJ2QRu3gyTWVSNS9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.377 [XNIO-1 task-1] eJLP0bheTNijzTMuOCfEhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.377 [XNIO-1 task-1] eJLP0bheTNijzTMuOCfEhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.377 [XNIO-1 task-1] eJLP0bheTNijzTMuOCfEhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.377 [XNIO-1 task-1] eJLP0bheTNijzTMuOCfEhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.377 [XNIO-1 task-1] eJLP0bheTNijzTMuOCfEhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.377 [XNIO-1 task-1] eJLP0bheTNijzTMuOCfEhQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.385 [XNIO-1 task-1] zrHGm4tVRmCkojQfSNhEcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.385 [XNIO-1 task-1] zrHGm4tVRmCkojQfSNhEcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.385 [XNIO-1 task-1] zrHGm4tVRmCkojQfSNhEcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.385 [XNIO-1 task-1] zrHGm4tVRmCkojQfSNhEcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.390 [XNIO-1 task-1] GwPY3LJSRX67lGzHQmTkGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.390 [XNIO-1 task-1] GwPY3LJSRX67lGzHQmTkGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.391 [XNIO-1 task-1] GwPY3LJSRX67lGzHQmTkGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.391 [XNIO-1 task-1] GwPY3LJSRX67lGzHQmTkGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.392 [XNIO-1 task-1] X0HvJOe3TIamzpLu9b-ong DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.392 [XNIO-1 task-1] X0HvJOe3TIamzpLu9b-ong DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.393 [XNIO-1 task-1] X0HvJOe3TIamzpLu9b-ong DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.393 [XNIO-1 task-1] X0HvJOe3TIamzpLu9b-ong DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.393 [XNIO-1 task-1] X0HvJOe3TIamzpLu9b-ong DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.393 [XNIO-1 task-1] X0HvJOe3TIamzpLu9b-ong ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.395 [XNIO-1 task-1] MVCFs1n6QEWV-yxKgTd7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.395 [XNIO-1 task-1] MVCFs1n6QEWV-yxKgTd7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.395 [XNIO-1 task-1] MVCFs1n6QEWV-yxKgTd7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.395 [XNIO-1 task-1] MVCFs1n6QEWV-yxKgTd7yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.399 [XNIO-1 task-1] xrkRfdwTQGCj9TDkV9WKSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.399 [XNIO-1 task-1] xrkRfdwTQGCj9TDkV9WKSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.399 [XNIO-1 task-1] xrkRfdwTQGCj9TDkV9WKSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.399 [XNIO-1 task-1] xrkRfdwTQGCj9TDkV9WKSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.401 [XNIO-1 task-1] aO0Xp9avQHe4LflF75xd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.401 [XNIO-1 task-1] aO0Xp9avQHe4LflF75xd6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.401 [XNIO-1 task-1] aO0Xp9avQHe4LflF75xd6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.401 [XNIO-1 task-1] aO0Xp9avQHe4LflF75xd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.401 [XNIO-1 task-1] aO0Xp9avQHe4LflF75xd6g DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.401 [XNIO-1 task-1] aO0Xp9avQHe4LflF75xd6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.403 [XNIO-1 task-1] _UOt0hv1RqSRYdFHzvcFwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.403 [XNIO-1 task-1] _UOt0hv1RqSRYdFHzvcFwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.403 [XNIO-1 task-1] _UOt0hv1RqSRYdFHzvcFwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.403 [XNIO-1 task-1] _UOt0hv1RqSRYdFHzvcFwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.407 [XNIO-1 task-1] hSkvevKER3iKFVSA7iNQzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.408 [XNIO-1 task-1] hSkvevKER3iKFVSA7iNQzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.408 [XNIO-1 task-1] hSkvevKER3iKFVSA7iNQzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.408 [XNIO-1 task-1] hSkvevKER3iKFVSA7iNQzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.408 [XNIO-1 task-1] hSkvevKER3iKFVSA7iNQzA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.408 [XNIO-1 task-1] hSkvevKER3iKFVSA7iNQzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.409 [XNIO-1 task-1] BssMH2WuTcy0nnCOt560SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.409 [XNIO-1 task-1] BssMH2WuTcy0nnCOt560SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.410 [XNIO-1 task-1] BssMH2WuTcy0nnCOt560SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.410 [XNIO-1 task-1] BssMH2WuTcy0nnCOt560SA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.413 [XNIO-1 task-1] 96HvsP0TQQee0dAudlyzBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.413 [XNIO-1 task-1] 96HvsP0TQQee0dAudlyzBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.413 [XNIO-1 task-1] 96HvsP0TQQee0dAudlyzBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.413 [XNIO-1 task-1] 96HvsP0TQQee0dAudlyzBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.413 [XNIO-1 task-1] 96HvsP0TQQee0dAudlyzBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:12.413 [XNIO-1 task-1] 96HvsP0TQQee0dAudlyzBQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:12.415 [XNIO-1 task-1] rXChbtVNRCSR_Vgf7Cu3rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.415 [XNIO-1 task-1] rXChbtVNRCSR_Vgf7Cu3rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.415 [XNIO-1 task-1] rXChbtVNRCSR_Vgf7Cu3rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.415 [XNIO-1 task-1] rXChbtVNRCSR_Vgf7Cu3rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.415 [XNIO-1 task-1] rXChbtVNRCSR_Vgf7Cu3rw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.418 [XNIO-1 task-1] GXEp5JJMSJuY-CHdy8VckA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.418 [XNIO-1 task-1] GXEp5JJMSJuY-CHdy8VckA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.418 [XNIO-1 task-1] GXEp5JJMSJuY-CHdy8VckA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.418 [XNIO-1 task-1] GXEp5JJMSJuY-CHdy8VckA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.418 [XNIO-1 task-1] GXEp5JJMSJuY-CHdy8VckA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.418 [XNIO-1 task-1] GXEp5JJMSJuY-CHdy8VckA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.420 [XNIO-1 task-1] eAjg6VMSTnOcJVW7xKJaCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.420 [XNIO-1 task-1] eAjg6VMSTnOcJVW7xKJaCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.420 [XNIO-1 task-1] eAjg6VMSTnOcJVW7xKJaCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.421 [XNIO-1 task-1] eAjg6VMSTnOcJVW7xKJaCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.424 [XNIO-1 task-1] uvKv7X8qQTijKhb3dew-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.424 [XNIO-1 task-1] uvKv7X8qQTijKhb3dew-PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.425 [XNIO-1 task-1] uvKv7X8qQTijKhb3dew-PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.425 [XNIO-1 task-1] uvKv7X8qQTijKhb3dew-PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.425 [XNIO-1 task-1] uvKv7X8qQTijKhb3dew-PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.425 [XNIO-1 task-1] uvKv7X8qQTijKhb3dew-PQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.427 [XNIO-1 task-1] BZJ5t0W6RpOkE3oWDp8T1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.427 [XNIO-1 task-1] BZJ5t0W6RpOkE3oWDp8T1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.427 [XNIO-1 task-1] BZJ5t0W6RpOkE3oWDp8T1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.427 [XNIO-1 task-1] BZJ5t0W6RpOkE3oWDp8T1w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.431 [XNIO-1 task-1] L9mJXggnQuyh2pwBoyqa4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.431 [XNIO-1 task-1] L9mJXggnQuyh2pwBoyqa4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.431 [XNIO-1 task-1] L9mJXggnQuyh2pwBoyqa4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.431 [XNIO-1 task-1] L9mJXggnQuyh2pwBoyqa4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.431 [XNIO-1 task-1] L9mJXggnQuyh2pwBoyqa4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.436 [XNIO-1 task-1] KgbzCyy6Rw2FYeaddnSItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.436 [XNIO-1 task-1] KgbzCyy6Rw2FYeaddnSItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.436 [XNIO-1 task-1] KgbzCyy6Rw2FYeaddnSItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.436 [XNIO-1 task-1] KgbzCyy6Rw2FYeaddnSItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.436 [XNIO-1 task-1] KgbzCyy6Rw2FYeaddnSItQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.438 [XNIO-1 task-1] BVQD10rKQY2S_4mdN1Kcfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.438 [XNIO-1 task-1] BVQD10rKQY2S_4mdN1Kcfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.438 [XNIO-1 task-1] BVQD10rKQY2S_4mdN1Kcfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.438 [XNIO-1 task-1] BVQD10rKQY2S_4mdN1Kcfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +18:11:12.440 [XNIO-1 task-1] wbiqdFa1QmCNO5CWBvPxFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.440 [XNIO-1 task-1] wbiqdFa1QmCNO5CWBvPxFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.440 [XNIO-1 task-1] wbiqdFa1QmCNO5CWBvPxFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.440 [XNIO-1 task-1] wbiqdFa1QmCNO5CWBvPxFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.440 [XNIO-1 task-1] wbiqdFa1QmCNO5CWBvPxFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.440 [XNIO-1 task-1] wbiqdFa1QmCNO5CWBvPxFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.442 [XNIO-1 task-1] OJ5kFknnRa2MEyskYMewag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.442 [XNIO-1 task-1] OJ5kFknnRa2MEyskYMewag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.442 [XNIO-1 task-1] OJ5kFknnRa2MEyskYMewag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.442 [XNIO-1 task-1] OJ5kFknnRa2MEyskYMewag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.442 [XNIO-1 task-1] OJ5kFknnRa2MEyskYMewag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.445 [XNIO-1 task-1] GQ96_1ZdT0mqzMfMA1XWFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.445 [XNIO-1 task-1] GQ96_1ZdT0mqzMfMA1XWFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.445 [XNIO-1 task-1] GQ96_1ZdT0mqzMfMA1XWFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.445 [XNIO-1 task-1] GQ96_1ZdT0mqzMfMA1XWFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac, base path is set to: null +18:11:12.445 [XNIO-1 task-1] GQ96_1ZdT0mqzMfMA1XWFg DEBUG com.networknt.schema.TypeValidator debug - validate( "8720df93-6cf2-4241-9d08-45786a5695ac", "8720df93-6cf2-4241-9d08-45786a5695ac", refreshToken) +18:11:12.445 [XNIO-1 task-1] GQ96_1ZdT0mqzMfMA1XWFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8720df93-6cf2-4241-9d08-45786a5695ac is not found.","severity":"ERROR"} +18:11:12.446 [XNIO-1 task-1] QF9fktgLQH-av5JW8TGhkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.446 [XNIO-1 task-1] QF9fktgLQH-av5JW8TGhkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.446 [XNIO-1 task-1] QF9fktgLQH-av5JW8TGhkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.447 [XNIO-1 task-1] QF9fktgLQH-av5JW8TGhkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.447 [XNIO-1 task-1] QF9fktgLQH-av5JW8TGhkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.448 [XNIO-1 task-1] HDlprr-BTd-NPV7bb1W0SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.448 [XNIO-1 task-1] HDlprr-BTd-NPV7bb1W0SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.448 [XNIO-1 task-1] HDlprr-BTd-NPV7bb1W0SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.448 [XNIO-1 task-1] HDlprr-BTd-NPV7bb1W0SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.448 [XNIO-1 task-1] HDlprr-BTd-NPV7bb1W0SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.448 [XNIO-1 task-1] HDlprr-BTd-NPV7bb1W0SQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.450 [XNIO-1 task-1] q59-OE5lTjS11XPlTVEAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.450 [XNIO-1 task-1] q59-OE5lTjS11XPlTVEAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.450 [XNIO-1 task-1] q59-OE5lTjS11XPlTVEAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.450 [XNIO-1 task-1] q59-OE5lTjS11XPlTVEAIw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.453 [XNIO-1 task-1] lu-d8SBIQvy4r_MzQkMf7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.453 [XNIO-1 task-1] lu-d8SBIQvy4r_MzQkMf7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.453 [XNIO-1 task-1] lu-d8SBIQvy4r_MzQkMf7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.453 [XNIO-1 task-1] lu-d8SBIQvy4r_MzQkMf7w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.457 [XNIO-1 task-1] aHEHrgidS2O7M1edI8eEtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.457 [XNIO-1 task-1] aHEHrgidS2O7M1edI8eEtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.457 [XNIO-1 task-1] aHEHrgidS2O7M1edI8eEtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.457 [XNIO-1 task-1] aHEHrgidS2O7M1edI8eEtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.457 [XNIO-1 task-1] aHEHrgidS2O7M1edI8eEtg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.457 [XNIO-1 task-1] aHEHrgidS2O7M1edI8eEtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.459 [XNIO-1 task-1] CcM6P4RCQmmeW6Z8gjQOaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.459 [XNIO-1 task-1] CcM6P4RCQmmeW6Z8gjQOaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.459 [XNIO-1 task-1] CcM6P4RCQmmeW6Z8gjQOaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.459 [XNIO-1 task-1] CcM6P4RCQmmeW6Z8gjQOaQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.462 [XNIO-1 task-1] n5Ke_18MTZa3_QaMXFUBiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.462 [XNIO-1 task-1] n5Ke_18MTZa3_QaMXFUBiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.462 [XNIO-1 task-1] n5Ke_18MTZa3_QaMXFUBiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.462 [XNIO-1 task-1] n5Ke_18MTZa3_QaMXFUBiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.462 [XNIO-1 task-1] n5Ke_18MTZa3_QaMXFUBiw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.464 [XNIO-1 task-1] Zq_TBRPCSf6b-anoO89Mvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.464 [XNIO-1 task-1] Zq_TBRPCSf6b-anoO89Mvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.464 [XNIO-1 task-1] Zq_TBRPCSf6b-anoO89Mvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.464 [XNIO-1 task-1] Zq_TBRPCSf6b-anoO89Mvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.464 [XNIO-1 task-1] Zq_TBRPCSf6b-anoO89Mvg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.467 [XNIO-1 task-1] CrDHLI1AR8az7ih0BStT5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.467 [XNIO-1 task-1] CrDHLI1AR8az7ih0BStT5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.467 [XNIO-1 task-1] CrDHLI1AR8az7ih0BStT5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.468 [XNIO-1 task-1] CrDHLI1AR8az7ih0BStT5A ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.470 [XNIO-1 task-1] fgKPrTLUSZ-lDytGTk-K5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.470 [XNIO-1 task-1] fgKPrTLUSZ-lDytGTk-K5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.470 [XNIO-1 task-1] fgKPrTLUSZ-lDytGTk-K5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.471 [XNIO-1 task-1] fgKPrTLUSZ-lDytGTk-K5Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.472 [XNIO-1 task-1] Oa-XyZiJR7OwmsLGFd5PdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.472 [XNIO-1 task-1] Oa-XyZiJR7OwmsLGFd5PdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.472 [XNIO-1 task-1] Oa-XyZiJR7OwmsLGFd5PdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.472 [XNIO-1 task-1] Oa-XyZiJR7OwmsLGFd5PdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:12.477 [XNIO-1 task-1] IGy6bRVWQhCow51-hfjsmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.477 [XNIO-1 task-1] IGy6bRVWQhCow51-hfjsmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.477 [XNIO-1 task-1] IGy6bRVWQhCow51-hfjsmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.477 [XNIO-1 task-1] IGy6bRVWQhCow51-hfjsmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.477 [XNIO-1 task-1] IGy6bRVWQhCow51-hfjsmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.477 [XNIO-1 task-1] IGy6bRVWQhCow51-hfjsmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.477 [XNIO-1 task-1] IGy6bRVWQhCow51-hfjsmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +18:11:12.479 [XNIO-1 task-1] CPz6ovUMRI6qh5fRlPy-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.479 [XNIO-1 task-1] CPz6ovUMRI6qh5fRlPy-Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.479 [XNIO-1 task-1] CPz6ovUMRI6qh5fRlPy-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +18:11:12.479 [XNIO-1 task-1] CPz6ovUMRI6qh5fRlPy-Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.479 [XNIO-1 task-1] CPz6ovUMRI6qh5fRlPy-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.479 [XNIO-1 task-1] CPz6ovUMRI6qh5fRlPy-Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.479 [XNIO-1 task-1] CPz6ovUMRI6qh5fRlPy-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:11:12.481 [XNIO-1 task-1] NPorUYb_TkeTF7OFKh3RDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + +18:11:12.481 [XNIO-1 task-1] NPorUYb_TkeTF7OFKh3RDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.481 [XNIO-1 task-1] NPorUYb_TkeTF7OFKh3RDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.481 [XNIO-1 task-1] NPorUYb_TkeTF7OFKh3RDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.483 [XNIO-1 task-1] Iwl3sjeJRDWCRqH5IogXTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.483 [XNIO-1 task-1] Iwl3sjeJRDWCRqH5IogXTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.483 [XNIO-1 task-1] Iwl3sjeJRDWCRqH5IogXTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.483 [XNIO-1 task-1] Iwl3sjeJRDWCRqH5IogXTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.483 [XNIO-1 task-1] Iwl3sjeJRDWCRqH5IogXTg DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.483 [XNIO-1 task-1] Iwl3sjeJRDWCRqH5IogXTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.485 [XNIO-1 task-1] cmXtaSzlRWWqhqfcby_P-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.485 [XNIO-1 task-1] cmXtaSzlRWWqhqfcby_P-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.485 [XNIO-1 task-1] cmXtaSzlRWWqhqfcby_P-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.485 [XNIO-1 task-1] cmXtaSzlRWWqhqfcby_P-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.485 [XNIO-1 task-1] cmXtaSzlRWWqhqfcby_P-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.489 [XNIO-1 task-1] 6SXK48GfQ4KUfPm-gIfAKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.489 [XNIO-1 task-1] 6SXK48GfQ4KUfPm-gIfAKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.489 [XNIO-1 task-1] 6SXK48GfQ4KUfPm-gIfAKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.489 [XNIO-1 task-1] 6SXK48GfQ4KUfPm-gIfAKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.489 [XNIO-1 task-1] 6SXK48GfQ4KUfPm-gIfAKw DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.489 [XNIO-1 task-1] 6SXK48GfQ4KUfPm-gIfAKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.491 [XNIO-1 task-1] YP-OvFJ1TBqUAjFR4EEwEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.491 [XNIO-1 task-1] YP-OvFJ1TBqUAjFR4EEwEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.491 [XNIO-1 task-1] YP-OvFJ1TBqUAjFR4EEwEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.491 [XNIO-1 task-1] YP-OvFJ1TBqUAjFR4EEwEQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.493 [XNIO-1 task-1] LeczJTFUSg-tFtDi8o90UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.493 [XNIO-1 task-1] LeczJTFUSg-tFtDi8o90UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.493 [XNIO-1 task-1] LeczJTFUSg-tFtDi8o90UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.493 [XNIO-1 task-1] LeczJTFUSg-tFtDi8o90UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.493 [XNIO-1 task-1] LeczJTFUSg-tFtDi8o90UQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.495 [XNIO-1 task-1] e1oFpXSYQlKbd8OlcuvjpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.495 [XNIO-1 task-1] e1oFpXSYQlKbd8OlcuvjpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.495 [XNIO-1 task-1] e1oFpXSYQlKbd8OlcuvjpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.495 [XNIO-1 task-1] e1oFpXSYQlKbd8OlcuvjpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.495 [XNIO-1 task-1] e1oFpXSYQlKbd8OlcuvjpA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.495 [XNIO-1 task-1] e1oFpXSYQlKbd8OlcuvjpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.498 [XNIO-1 task-1] 2NTIiUetTYO6In58nT762w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.498 [XNIO-1 task-1] 2NTIiUetTYO6In58nT762w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.498 [XNIO-1 task-1] 2NTIiUetTYO6In58nT762w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.498 [XNIO-1 task-1] 2NTIiUetTYO6In58nT762w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.498 [XNIO-1 task-1] 2NTIiUetTYO6In58nT762w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.500 [XNIO-1 task-1] enp9am7kRHO36CCIcSMzWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.500 [XNIO-1 task-1] enp9am7kRHO36CCIcSMzWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.500 [XNIO-1 task-1] enp9am7kRHO36CCIcSMzWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.500 [XNIO-1 task-1] enp9am7kRHO36CCIcSMzWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.500 [XNIO-1 task-1] enp9am7kRHO36CCIcSMzWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.505 [XNIO-1 task-1] ejdk04YLTQubV3L14z-Hkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.505 [XNIO-1 task-1] ejdk04YLTQubV3L14z-Hkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.505 [XNIO-1 task-1] ejdk04YLTQubV3L14z-Hkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.505 [XNIO-1 task-1] ejdk04YLTQubV3L14z-Hkg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +18:11:12.507 [XNIO-1 task-1] 5BlbAlYiR_W3fwf5S2HigA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.507 [XNIO-1 task-1] 5BlbAlYiR_W3fwf5S2HigA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.507 [XNIO-1 task-1] 5BlbAlYiR_W3fwf5S2HigA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.507 [XNIO-1 task-1] 5BlbAlYiR_W3fwf5S2HigA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.507 [XNIO-1 task-1] 5BlbAlYiR_W3fwf5S2HigA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.509 [XNIO-1 task-1] KrxNGp0aS46oGVCr-Qmfbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.509 [XNIO-1 task-1] KrxNGp0aS46oGVCr-Qmfbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.509 [XNIO-1 task-1] KrxNGp0aS46oGVCr-Qmfbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:11:12.509 [XNIO-1 task-1] KrxNGp0aS46oGVCr-Qmfbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:12.509 [XNIO-1 task-1] KrxNGp0aS46oGVCr-Qmfbg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:11:12.512 [XNIO-1 task-1] Ec5Fip4EQmq4qXDwpmlMGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.512 [XNIO-1 task-1] Ec5Fip4EQmq4qXDwpmlMGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.512 [XNIO-1 task-1] Ec5Fip4EQmq4qXDwpmlMGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.512 [XNIO-1 task-1] Ec5Fip4EQmq4qXDwpmlMGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.512 [XNIO-1 task-1] Ec5Fip4EQmq4qXDwpmlMGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.514 [XNIO-1 task-1] e2rq1vV4T6W8_wsXlVs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.514 [XNIO-1 task-1] e2rq1vV4T6W8_wsXlVs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.514 [XNIO-1 task-1] e2rq1vV4T6W8_wsXlVs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.514 [XNIO-1 task-1] e2rq1vV4T6W8_wsXlVs2sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.514 [XNIO-1 task-1] e2rq1vV4T6W8_wsXlVs2sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.515 [XNIO-1 task-1] e2rq1vV4T6W8_wsXlVs2sQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.516 [XNIO-1 task-1] flClfCWeTpi2tEuIv01giQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.516 [XNIO-1 task-1] flClfCWeTpi2tEuIv01giQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.516 [XNIO-1 task-1] flClfCWeTpi2tEuIv01giQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.517 [XNIO-1 task-1] flClfCWeTpi2tEuIv01giQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.517 [XNIO-1 task-1] flClfCWeTpi2tEuIv01giQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.518 [XNIO-1 task-1] 7dPtQnLyQQC0lTr6rGm4BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.518 [XNIO-1 task-1] 7dPtQnLyQQC0lTr6rGm4BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.518 [XNIO-1 task-1] 7dPtQnLyQQC0lTr6rGm4BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.519 [XNIO-1 task-1] 7dPtQnLyQQC0lTr6rGm4BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.519 [XNIO-1 task-1] 7dPtQnLyQQC0lTr6rGm4BA DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.519 [XNIO-1 task-1] 7dPtQnLyQQC0lTr6rGm4BA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.520 [XNIO-1 task-1] 9wYyzgz_R52Gmjam2I2EKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.520 [XNIO-1 task-1] 9wYyzgz_R52Gmjam2I2EKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.521 [XNIO-1 task-1] 9wYyzgz_R52Gmjam2I2EKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.521 [XNIO-1 task-1] 9wYyzgz_R52Gmjam2I2EKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.521 [XNIO-1 task-1] 9wYyzgz_R52Gmjam2I2EKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:12.523 [XNIO-1 task-1] 4-4n1rrOS_ubcyZrGquA4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.523 [XNIO-1 task-1] 4-4n1rrOS_ubcyZrGquA4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.523 [XNIO-1 task-1] 4-4n1rrOS_ubcyZrGquA4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.523 [XNIO-1 task-1] 4-4n1rrOS_ubcyZrGquA4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.523 [XNIO-1 task-1] 4-4n1rrOS_ubcyZrGquA4w DEBUG com.networknt.schema.TypeValidator debug - validate( "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", "e95fd1b5-52d3-4a01-8531-dfa8c8dbe410", refreshToken) +18:11:12.523 [XNIO-1 task-1] 4-4n1rrOS_ubcyZrGquA4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 is not found.","severity":"ERROR"} +18:11:12.525 [XNIO-1 task-1] VTVuvguDQNCVgsYUoqT4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.525 [XNIO-1 task-1] VTVuvguDQNCVgsYUoqT4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:11:12.525 [XNIO-1 task-1] VTVuvguDQNCVgsYUoqT4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:11:12.526 [XNIO-1 task-1] VTVuvguDQNCVgsYUoqT4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.526 [XNIO-1 task-1] VTVuvguDQNCVgsYUoqT4NA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8720df93-6cf2-4241-9d08-45786a5695ac +18:11:12.527 [XNIO-1 task-1] rgtcLknnS6KcqTThY27FkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null +18:11:12.527 [XNIO-1 task-1] rgtcLknnS6KcqTThY27FkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:11:12.527 [XNIO-1 task-1] rgtcLknnS6KcqTThY27FkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:11:12.527 [XNIO-1 task-1] rgtcLknnS6KcqTThY27FkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e95fd1b5-52d3-4a01-8531-dfa8c8dbe410, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..a619436 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-service-1.log @@ -0,0 +1,3015 @@ +18:11:07.278 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.278 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.278 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.279 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.279 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG com.networknt.schema.TypeValidator debug - validate( "af43adbf-8a86-4cf5-8227-cc522222b4df", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.279 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1c1cfc1", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.279 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.279 [XNIO-1 task-2] EGtpMdP9S9KHno05nKjdFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.285 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.285 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.285 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.285 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.285 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.286 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG com.networknt.schema.TypeValidator debug - validate( "af43adbf-8a86-4cf5-8227-cc522222b4df", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.286 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1c1cfc1", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.286 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.286 [XNIO-1 task-2] JCcUnziMRaO2KACSYiNkSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1c1cfc1","serviceName":"f2cf8d95-5664-4884-a04a-a24a7baa","serviceDesc":"af43adbf-8a86-4cf5-8227-cc522222b4df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.291 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.291 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.292 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.292 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.292 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.292 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a65457a2-2746-45e2-ba3b-46456aba7a70", {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.292 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06b2f06e", {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.292 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.292 [XNIO-1 task-2] oqLiTOT2RqayYYtl9oCMnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06b2f06e","serviceName":"f1093931-0630-4758-b083-e3fb461c","serviceDesc":"a65457a2-2746-45e2-ba3b-46456aba7a70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.292 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:06b2f06e +18:11:07.301 [XNIO-1 task-2] LjkJ_YorSRiO8rTne8h4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a90b111b +18:11:07.301 [XNIO-1 task-2] LjkJ_YorSRiO8rTne8h4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.301 [XNIO-1 task-2] LjkJ_YorSRiO8rTne8h4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.301 [XNIO-1 task-2] LjkJ_YorSRiO8rTne8h4Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a90b111b +18:11:07.306 [XNIO-1 task-2] aQek0ckTSHeKAPUo_uWn6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.306 [XNIO-1 task-2] aQek0ckTSHeKAPUo_uWn6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.306 [XNIO-1 task-2] aQek0ckTSHeKAPUo_uWn6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.312 [XNIO-1 task-2] 1B7Shq1HRqyb9B55SMeRBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.313 [XNIO-1 task-2] 1B7Shq1HRqyb9B55SMeRBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.313 [XNIO-1 task-2] 1B7Shq1HRqyb9B55SMeRBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.320 [XNIO-1 task-2] QPMXaGFUQw60nf57-fV6Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.320 [XNIO-1 task-2] QPMXaGFUQw60nf57-fV6Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.320 [XNIO-1 task-2] QPMXaGFUQw60nf57-fV6Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.320 [XNIO-1 task-2] QPMXaGFUQw60nf57-fV6Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.326 [XNIO-1 task-2] lu1JfSquSZewmcI4SL_ozg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5aa9dbf, base path is set to: null +18:11:07.326 [XNIO-1 task-2] lu1JfSquSZewmcI4SL_ozg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.326 [XNIO-1 task-2] lu1JfSquSZewmcI4SL_ozg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.326 [XNIO-1 task-2] lu1JfSquSZewmcI4SL_ozg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5aa9dbf, base path is set to: null +18:11:07.326 [XNIO-1 task-2] lu1JfSquSZewmcI4SL_ozg DEBUG com.networknt.schema.TypeValidator debug - validate( "c5aa9dbf", "c5aa9dbf", serviceId) +18:11:07.332 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.332 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.333 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.333 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.333 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.334 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG com.networknt.schema.TypeValidator debug - validate( "0b0d8488-741b-4fd3-a582-1930098d9454", {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.334 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG com.networknt.schema.TypeValidator debug - validate( "40822a94", {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.334 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.334 [XNIO-1 task-2] miI1ymPASh-8t5ehWYUFeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40822a94","serviceName":"93027494-8b5e-4c07-8379-54420238","serviceDesc":"0b0d8488-741b-4fd3-a582-1930098d9454","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.339 [XNIO-1 task-2] wWeD6VkwQracLi8yqaAzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.339 [XNIO-1 task-2] wWeD6VkwQracLi8yqaAzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.339 [XNIO-1 task-2] wWeD6VkwQracLi8yqaAzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.340 [XNIO-1 task-2] wWeD6VkwQracLi8yqaAzMA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.362 [XNIO-1 task-2] 6yIUgSvyToOguUt7ccD55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1c1cfc1 +18:11:07.362 [XNIO-1 task-2] 6yIUgSvyToOguUt7ccD55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.362 [XNIO-1 task-2] 6yIUgSvyToOguUt7ccD55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.362 [XNIO-1 task-2] 6yIUgSvyToOguUt7ccD55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1c1cfc1 +18:11:07.365 [XNIO-1 task-2] ovRT7xfET2Sem4hiLSOe_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.365 [XNIO-1 task-2] ovRT7xfET2Sem4hiLSOe_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.366 [XNIO-1 task-2] ovRT7xfET2Sem4hiLSOe_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.372 [XNIO-1 task-2] Zuiri6gNS0G3OSBSsZHqvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.372 [XNIO-1 task-2] Zuiri6gNS0G3OSBSsZHqvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.372 [XNIO-1 task-2] Zuiri6gNS0G3OSBSsZHqvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.373 [XNIO-1 task-2] Zuiri6gNS0G3OSBSsZHqvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.380 [XNIO-1 task-2] _m3yOEAtSnqFfih7jpEk-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.380 [XNIO-1 task-2] _m3yOEAtSnqFfih7jpEk-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.381 [XNIO-1 task-2] _m3yOEAtSnqFfih7jpEk-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.381 [XNIO-1 task-2] _m3yOEAtSnqFfih7jpEk-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.386 [XNIO-1 task-2] ZqyBQWhMRTC0tdQhuRPRmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dc2ef4ee, base path is set to: null +18:11:07.386 [XNIO-1 task-2] ZqyBQWhMRTC0tdQhuRPRmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.386 [XNIO-1 task-2] ZqyBQWhMRTC0tdQhuRPRmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.386 [XNIO-1 task-2] ZqyBQWhMRTC0tdQhuRPRmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dc2ef4ee, base path is set to: null +18:11:07.386 [XNIO-1 task-2] ZqyBQWhMRTC0tdQhuRPRmg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc2ef4ee", "dc2ef4ee", serviceId) +18:11:07.387 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:dc2ef4ee +18:11:07.392 [XNIO-1 task-2] JI0mMTAhRuCXCSRmULYYTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.392 [XNIO-1 task-2] JI0mMTAhRuCXCSRmULYYTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.392 [XNIO-1 task-2] JI0mMTAhRuCXCSRmULYYTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.399 [XNIO-1 task-2] WXeFL3A4Qgy_c9FJxdzp0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1c1cfc1 +18:11:07.399 [XNIO-1 task-2] WXeFL3A4Qgy_c9FJxdzp0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.399 [XNIO-1 task-2] WXeFL3A4Qgy_c9FJxdzp0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.399 [XNIO-1 task-2] WXeFL3A4Qgy_c9FJxdzp0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1c1cfc1 +18:11:07.404 [XNIO-1 task-2] ykfB48ieRx-WH1GcJ6RaWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06b2f06e, base path is set to: null +18:11:07.404 [XNIO-1 task-2] ykfB48ieRx-WH1GcJ6RaWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.404 [XNIO-1 task-2] ykfB48ieRx-WH1GcJ6RaWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.404 [XNIO-1 task-2] ykfB48ieRx-WH1GcJ6RaWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06b2f06e, base path is set to: null +18:11:07.404 [XNIO-1 task-2] ykfB48ieRx-WH1GcJ6RaWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06b2f06e", "06b2f06e", serviceId) +18:11:07.405 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:06b2f06e +18:11:07.410 [XNIO-1 task-2] jVNp4aexTn-DVmvvgj6nDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40822a94 +18:11:07.410 [XNIO-1 task-2] jVNp4aexTn-DVmvvgj6nDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.410 [XNIO-1 task-2] jVNp4aexTn-DVmvvgj6nDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.410 [XNIO-1 task-2] jVNp4aexTn-DVmvvgj6nDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40822a94 +18:11:07.412 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.412 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.413 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.413 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.413 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.413 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.413 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.413 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG com.networknt.schema.TypeValidator debug - validate( "883d4d81-c9c8-4580-a1a6-c97a30c4", {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:07.413 [XNIO-1 task-2] ToO3o2SSShqVdbvrRwISJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bceaf5dc","serviceName":"883d4d81-c9c8-4580-a1a6-c97a30c4","serviceDesc":"868f037e-999a-40cf-997b-96d64930c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.416 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b2a07e84-6a5f-44c7-9c4e-062da9e43a6f +18:11:07.417 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b2a07e84-6a5f-44c7-9c4e-062da9e43a6f +18:11:07.418 [XNIO-1 task-2] Ow8sgyowQpuFjOHlYsoSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/adf385f6 +18:11:07.418 [XNIO-1 task-2] Ow8sgyowQpuFjOHlYsoSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.418 [XNIO-1 task-2] Ow8sgyowQpuFjOHlYsoSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.418 [XNIO-1 task-2] Ow8sgyowQpuFjOHlYsoSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/adf385f6 +18:11:07.421 [XNIO-1 task-2] WIT18i_CSCmi0GJdplGWHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40822a94, base path is set to: null +18:11:07.421 [XNIO-1 task-2] WIT18i_CSCmi0GJdplGWHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.421 [XNIO-1 task-2] WIT18i_CSCmi0GJdplGWHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.421 [XNIO-1 task-2] WIT18i_CSCmi0GJdplGWHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40822a94, base path is set to: null +18:11:07.421 [XNIO-1 task-2] WIT18i_CSCmi0GJdplGWHw DEBUG com.networknt.schema.TypeValidator debug - validate( "40822a94", "40822a94", serviceId) +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "748fd800-1196-46b6-860e-8c809b1ecaa0", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "adf385f6", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.427 [XNIO-1 task-2] aeL9yLF0TDWxxwN0iO0_JQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.432 [XNIO-1 task-2] 44XJaCUeS4-fcCKVeUjwaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/adf385f6 +18:11:07.433 [XNIO-1 task-2] 44XJaCUeS4-fcCKVeUjwaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.433 [XNIO-1 task-2] 44XJaCUeS4-fcCKVeUjwaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.433 [XNIO-1 task-2] 44XJaCUeS4-fcCKVeUjwaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/adf385f6 +18:11:07.435 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.435 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.435 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.436 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.436 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.436 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.436 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.436 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb333b07-0afc-42a8-a050-fe23ffbd", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:07.436 [XNIO-1 task-2] K8aQ0tmTR5COLQqNabAFKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.440 [XNIO-1 task-2] VrgU_Zc4Smyt-OxIJDp_og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bceaf5dc, base path is set to: null +18:11:07.440 [XNIO-1 task-2] VrgU_Zc4Smyt-OxIJDp_og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.441 [XNIO-1 task-2] VrgU_Zc4Smyt-OxIJDp_og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.441 [XNIO-1 task-2] VrgU_Zc4Smyt-OxIJDp_og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bceaf5dc, base path is set to: null +18:11:07.441 [XNIO-1 task-2] VrgU_Zc4Smyt-OxIJDp_og DEBUG com.networknt.schema.TypeValidator debug - validate( "bceaf5dc", "bceaf5dc", serviceId) +18:11:07.446 [XNIO-1 task-2] bGe28kTrS9GD394u91mW1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.447 [XNIO-1 task-2] bGe28kTrS9GD394u91mW1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.447 [XNIO-1 task-2] bGe28kTrS9GD394u91mW1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.452 [XNIO-1 task-2] 5N4EV9CHSQOEd4NgHMnUFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.452 [XNIO-1 task-2] 5N4EV9CHSQOEd4NgHMnUFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.452 [XNIO-1 task-2] 5N4EV9CHSQOEd4NgHMnUFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.457 [XNIO-1 task-2] haFukNhuQ_ikw7TanGgYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.458 [XNIO-1 task-2] haFukNhuQ_ikw7TanGgYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.458 [XNIO-1 task-2] haFukNhuQ_ikw7TanGgYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.458 [XNIO-1 task-2] haFukNhuQ_ikw7TanGgYKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.462 [XNIO-1 task-2] bfe6mimiS_6CabyK_pD88w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feeba48f +18:11:07.462 [XNIO-1 task-2] bfe6mimiS_6CabyK_pD88w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.462 [XNIO-1 task-2] bfe6mimiS_6CabyK_pD88w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.462 [XNIO-1 task-2] bfe6mimiS_6CabyK_pD88w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feeba48f +18:11:07.465 [XNIO-1 task-2] OXa_T3XxQQO0DIEB_eXtuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.465 [XNIO-1 task-2] OXa_T3XxQQO0DIEB_eXtuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.465 [XNIO-1 task-2] OXa_T3XxQQO0DIEB_eXtuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.465 [XNIO-1 task-2] OXa_T3XxQQO0DIEB_eXtuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.468 [XNIO-1 task-2] tiuFTvzLRrSb1KgNsn7ONA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/adf385f6, base path is set to: null +18:11:07.468 [XNIO-1 task-2] tiuFTvzLRrSb1KgNsn7ONA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.468 [XNIO-1 task-2] tiuFTvzLRrSb1KgNsn7ONA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.468 [XNIO-1 task-2] tiuFTvzLRrSb1KgNsn7ONA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/adf385f6, base path is set to: null +18:11:07.468 [XNIO-1 task-2] tiuFTvzLRrSb1KgNsn7ONA DEBUG com.networknt.schema.TypeValidator debug - validate( "adf385f6", "adf385f6", serviceId) +18:11:07.470 [XNIO-1 task-2] XLoY66GmQieEJvAiMSuJ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/49c3ca83 +18:11:07.470 [XNIO-1 task-2] XLoY66GmQieEJvAiMSuJ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.470 [XNIO-1 task-2] XLoY66GmQieEJvAiMSuJ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.470 [XNIO-1 task-2] XLoY66GmQieEJvAiMSuJ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/49c3ca83 +18:11:07.472 [XNIO-1 task-2] SX1TgKgcSA2IA9a-wG3YFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/49c3ca83, base path is set to: null +18:11:07.472 [XNIO-1 task-2] SX1TgKgcSA2IA9a-wG3YFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.472 [XNIO-1 task-2] SX1TgKgcSA2IA9a-wG3YFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.472 [XNIO-1 task-2] SX1TgKgcSA2IA9a-wG3YFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/49c3ca83, base path is set to: null +18:11:07.472 [XNIO-1 task-2] SX1TgKgcSA2IA9a-wG3YFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "49c3ca83", "49c3ca83", serviceId) +18:11:07.474 [XNIO-1 task-2] V5xbGdPvShW12HpLCEQj0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feeba48f +18:11:07.474 [XNIO-1 task-2] V5xbGdPvShW12HpLCEQj0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.474 [XNIO-1 task-2] V5xbGdPvShW12HpLCEQj0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.474 [XNIO-1 task-2] V5xbGdPvShW12HpLCEQj0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feeba48f +18:11:07.479 [XNIO-1 task-2] L-Sxq2npSKmwuWyOzCjQFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/adf385f6, base path is set to: null +18:11:07.479 [XNIO-1 task-2] L-Sxq2npSKmwuWyOzCjQFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.480 [XNIO-1 task-2] L-Sxq2npSKmwuWyOzCjQFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.480 [XNIO-1 task-2] L-Sxq2npSKmwuWyOzCjQFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/adf385f6, base path is set to: null +18:11:07.480 [XNIO-1 task-2] L-Sxq2npSKmwuWyOzCjQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "adf385f6", "adf385f6", serviceId) +18:11:07.481 [XNIO-1 task-2] jvoks1ryR2S_RbEF40wbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/49c3ca83 +18:11:07.481 [XNIO-1 task-2] jvoks1ryR2S_RbEF40wbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.481 [XNIO-1 task-2] jvoks1ryR2S_RbEF40wbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.481 [XNIO-1 task-2] jvoks1ryR2S_RbEF40wbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/49c3ca83 +18:11:07.483 [XNIO-1 task-2] YhY0cLIsQue_IKSPgnIdbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.483 [XNIO-1 task-2] YhY0cLIsQue_IKSPgnIdbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.483 [XNIO-1 task-2] YhY0cLIsQue_IKSPgnIdbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.483 [XNIO-1 task-2] YhY0cLIsQue_IKSPgnIdbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.488 [XNIO-1 task-2] 7CJp9wqeQiexjdQU5FaR1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.488 [XNIO-1 task-2] 7CJp9wqeQiexjdQU5FaR1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.489 [XNIO-1 task-2] 7CJp9wqeQiexjdQU5FaR1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.494 [XNIO-1 task-2] seHowgEASfyvSH_P3X8-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.494 [XNIO-1 task-2] seHowgEASfyvSH_P3X8-8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.495 [XNIO-1 task-2] seHowgEASfyvSH_P3X8-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.501 [XNIO-1 task-2] Wq1q7lzvQIuGbKrzyvxmYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.501 [XNIO-1 task-2] Wq1q7lzvQIuGbKrzyvxmYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.501 [XNIO-1 task-2] Wq1q7lzvQIuGbKrzyvxmYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.501 [XNIO-1 task-2] Wq1q7lzvQIuGbKrzyvxmYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.505 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bc38d498-d7e3-4d66-995a-2bf723067c0b +18:11:07.505 [XNIO-1 task-2] 5XZqo5GyS1KyKrh2UL5ZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.505 [XNIO-1 task-2] 5XZqo5GyS1KyKrh2UL5ZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.505 [XNIO-1 task-2] 5XZqo5GyS1KyKrh2UL5ZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.506 [XNIO-1 task-2] 5XZqo5GyS1KyKrh2UL5ZAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.506 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bc38d498-d7e3-4d66-995a-2bf723067c0b +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG com.networknt.schema.TypeValidator debug - validate( "30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG com.networknt.schema.TypeValidator debug - validate( "69c033d2", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.514 [XNIO-1 task-2] tOMXqUhNS9K1QJtcIFvmSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.522 [XNIO-1 task-2] hWsWLVxtSdC_jUt1xOjTQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.522 [XNIO-1 task-2] hWsWLVxtSdC_jUt1xOjTQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.522 [XNIO-1 task-2] hWsWLVxtSdC_jUt1xOjTQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.530 [XNIO-1 task-2] CKPs46GUSMacs_Xvkw40VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.530 [XNIO-1 task-2] CKPs46GUSMacs_Xvkw40VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.530 [XNIO-1 task-2] CKPs46GUSMacs_Xvkw40VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.530 [XNIO-1 task-2] CKPs46GUSMacs_Xvkw40VQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.537 [XNIO-1 task-2] 1WCWV6I5SgGkJI4Gb9rQKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:07.537 [XNIO-1 task-2] 1WCWV6I5SgGkJI4Gb9rQKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.537 [XNIO-1 task-2] 1WCWV6I5SgGkJI4Gb9rQKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.537 [XNIO-1 task-2] 1WCWV6I5SgGkJI4Gb9rQKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:07.540 [XNIO-1 task-2] i5HX2bvYQnylr1dTDQqirQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79487451, base path is set to: null +18:11:07.540 [XNIO-1 task-2] i5HX2bvYQnylr1dTDQqirQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.540 [XNIO-1 task-2] i5HX2bvYQnylr1dTDQqirQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.540 [XNIO-1 task-2] i5HX2bvYQnylr1dTDQqirQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79487451, base path is set to: null +18:11:07.540 [XNIO-1 task-2] i5HX2bvYQnylr1dTDQqirQ DEBUG com.networknt.schema.TypeValidator debug - validate( "79487451", "79487451", serviceId) +18:11:07.542 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.542 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.542 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.542 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.543 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.543 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG com.networknt.schema.TypeValidator debug - validate( "748fd800-1196-46b6-860e-8c809b1ecaa0", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.543 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG com.networknt.schema.TypeValidator debug - validate( "adf385f6", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.543 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.543 [XNIO-1 task-2] k9GH26KnSZa5LF6v5bbfxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.548 [XNIO-1 task-2] mU9LFhM7RvaOibO1fwjqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.548 [XNIO-1 task-2] mU9LFhM7RvaOibO1fwjqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.548 [XNIO-1 task-2] mU9LFhM7RvaOibO1fwjqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.553 [XNIO-1 task-2] KrzVghuwRpGQgfXTk5-aHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/49c3ca83, base path is set to: null +18:11:07.553 [XNIO-1 task-2] KrzVghuwRpGQgfXTk5-aHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.553 [XNIO-1 task-2] KrzVghuwRpGQgfXTk5-aHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.553 [XNIO-1 task-2] KrzVghuwRpGQgfXTk5-aHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/49c3ca83, base path is set to: null +18:11:07.553 [XNIO-1 task-2] KrzVghuwRpGQgfXTk5-aHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "49c3ca83", "49c3ca83", serviceId) +18:11:07.556 [XNIO-1 task-2] CNVbFBFmQ8u7UMP1yqWkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.556 [XNIO-1 task-2] CNVbFBFmQ8u7UMP1yqWkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.556 [XNIO-1 task-2] CNVbFBFmQ8u7UMP1yqWkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.556 [XNIO-1 task-2] CNVbFBFmQ8u7UMP1yqWkZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.561 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.561 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.561 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.562 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.562 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.562 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG com.networknt.schema.TypeValidator debug - validate( "42285cf7-6985-45fb-bfc1-cfe1934943a5", {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.562 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG com.networknt.schema.TypeValidator debug - validate( "ad619ae5", {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.562 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.562 [XNIO-1 task-2] zIlOOTWpRVe12YJXG5KwUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ad619ae5","serviceName":"8fccca32-aa70-4fd2-ac7d-da97838d","serviceDesc":"42285cf7-6985-45fb-bfc1-cfe1934943a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b617395-3c25-4a4e-b909-72fca2459477", {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "49c3ca83", {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.567 [XNIO-1 task-2] sOrGBSAATAqqx_-Ovu7IZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"49c3ca83","serviceName":"e2b162eb-080f-4646-939c-ddaad53f","serviceDesc":"6b617395-3c25-4a4e-b909-72fca2459477","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.572 [XNIO-1 task-2] -xinliLLQtKjnhA5L6WZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.572 [XNIO-1 task-2] -xinliLLQtKjnhA5L6WZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.572 [XNIO-1 task-2] -xinliLLQtKjnhA5L6WZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.579 [XNIO-1 task-2] ZgpwZXPGRkuoVbM65Gi33A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.579 [XNIO-1 task-2] ZgpwZXPGRkuoVbM65Gi33A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.580 [XNIO-1 task-2] ZgpwZXPGRkuoVbM65Gi33A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.580 [XNIO-1 task-2] ZgpwZXPGRkuoVbM65Gi33A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.584 [XNIO-1 task-2] cAqujREYQCyi2ASLVrdvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.584 [XNIO-1 task-2] cAqujREYQCyi2ASLVrdvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.584 [XNIO-1 task-2] cAqujREYQCyi2ASLVrdvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.585 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:56d60b34 +18:11:07.590 [XNIO-1 task-2] 2XccQe79SNe_l14u7XPDBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.590 [XNIO-1 task-2] 2XccQe79SNe_l14u7XPDBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.591 [XNIO-1 task-2] 2XccQe79SNe_l14u7XPDBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.591 [XNIO-1 task-2] 2XccQe79SNe_l14u7XPDBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.597 [XNIO-1 task-2] xcCVFLZFQnO6JdLFsAjGng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.597 [XNIO-1 task-2] xcCVFLZFQnO6JdLFsAjGng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.597 [XNIO-1 task-2] xcCVFLZFQnO6JdLFsAjGng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.603 [XNIO-1 task-2] vn2UOBZHQcmqxfH-8SR4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0dddf9b8, base path is set to: null +18:11:07.604 [XNIO-1 task-2] vn2UOBZHQcmqxfH-8SR4RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.604 [XNIO-1 task-2] vn2UOBZHQcmqxfH-8SR4RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.604 [XNIO-1 task-2] vn2UOBZHQcmqxfH-8SR4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0dddf9b8, base path is set to: null +18:11:07.604 [XNIO-1 task-2] vn2UOBZHQcmqxfH-8SR4RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0dddf9b8", "0dddf9b8", serviceId) +18:11:07.610 [XNIO-1 task-2] pbdq3cJCSYuHUnL-tiwX7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.610 [XNIO-1 task-2] pbdq3cJCSYuHUnL-tiwX7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.611 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b00f84f6-39fa-434e-bf63-942386b36769 +18:11:07.611 [XNIO-1 task-2] pbdq3cJCSYuHUnL-tiwX7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.614 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - Pool stats (total=2, active=0, idle=2, waiting=0) +18:11:07.619 [XNIO-1 task-2] YP2fga2hTDOHMJDi5mdeVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.619 [XNIO-1 task-2] YP2fga2hTDOHMJDi5mdeVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.619 [XNIO-1 task-2] YP2fga2hTDOHMJDi5mdeVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.625 [XNIO-1 task-2] rSgn95mgQGSF9LAZubPlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.625 [XNIO-1 task-2] rSgn95mgQGSF9LAZubPlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.625 [XNIO-1 task-2] rSgn95mgQGSF9LAZubPlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.634 [XNIO-1 task-2] l3PckSI5QRuI9e_xhmGbrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.635 [XNIO-1 task-2] l3PckSI5QRuI9e_xhmGbrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.635 [XNIO-1 task-2] l3PckSI5QRuI9e_xhmGbrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.635 [XNIO-1 task-2] l3PckSI5QRuI9e_xhmGbrg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.639 [XNIO-1 task-2] -yKj0Eb5Q-qkMGGCMcxliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/56d60b34, base path is set to: null +18:11:07.639 [XNIO-1 task-2] -yKj0Eb5Q-qkMGGCMcxliw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.639 [XNIO-1 task-2] -yKj0Eb5Q-qkMGGCMcxliw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.639 [XNIO-1 task-2] -yKj0Eb5Q-qkMGGCMcxliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/56d60b34, base path is set to: null +18:11:07.640 [XNIO-1 task-2] -yKj0Eb5Q-qkMGGCMcxliw DEBUG com.networknt.schema.TypeValidator debug - validate( "56d60b34", "56d60b34", serviceId) +18:11:07.641 [XNIO-1 task-2] OTXmfCjjTgyDZvlrPlWi0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/56d60b34 +18:11:07.641 [XNIO-1 task-2] OTXmfCjjTgyDZvlrPlWi0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.641 [XNIO-1 task-2] OTXmfCjjTgyDZvlrPlWi0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.641 [XNIO-1 task-2] OTXmfCjjTgyDZvlrPlWi0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/56d60b34 +18:11:07.642 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:56d60b34 +18:11:07.646 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.646 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.647 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.647 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.647 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.647 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.647 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.647 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG com.networknt.schema.TypeValidator debug - validate( "eaac186c-2913-49d6-b381-c09f358d", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:07.647 [XNIO-1 task-2] bDwOJgscRbiF0IrEy8VNTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.655 [XNIO-1 task-2] 6hyT9wqbTQymypHAuRFtMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.655 [XNIO-1 task-2] 6hyT9wqbTQymypHAuRFtMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.655 [XNIO-1 task-2] 6hyT9wqbTQymypHAuRFtMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.658 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bc38d498-d7e3-4d66-995a-2bf723067c0b +18:11:07.660 [XNIO-1 task-2] zWWcBsAsS_etF4SvpKStLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.661 [XNIO-1 task-2] zWWcBsAsS_etF4SvpKStLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.661 [XNIO-1 task-2] zWWcBsAsS_etF4SvpKStLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.666 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f", {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG com.networknt.schema.TypeValidator debug - validate( "78ba6720", {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.667 [XNIO-1 task-2] pzYqpdGoQk-nTNv51R_MVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.677 [XNIO-1 task-2] uBIoM2xkTsC6KeHcp53T3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ad619ae5 +18:11:07.677 [XNIO-1 task-2] uBIoM2xkTsC6KeHcp53T3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.677 [XNIO-1 task-2] uBIoM2xkTsC6KeHcp53T3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.677 [XNIO-1 task-2] uBIoM2xkTsC6KeHcp53T3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ad619ae5 +18:11:07.679 [XNIO-1 task-2] 92ybCRNZRLmLP1-5KnbbIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ad619ae5, base path is set to: null +18:11:07.679 [XNIO-1 task-2] 92ybCRNZRLmLP1-5KnbbIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.679 [XNIO-1 task-2] 92ybCRNZRLmLP1-5KnbbIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.679 [XNIO-1 task-2] 92ybCRNZRLmLP1-5KnbbIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ad619ae5, base path is set to: null +18:11:07.679 [XNIO-1 task-2] 92ybCRNZRLmLP1-5KnbbIg DEBUG com.networknt.schema.TypeValidator debug - validate( "ad619ae5", "ad619ae5", serviceId) +18:11:07.682 [XNIO-1 task-2] j3Pv6q0HTni_2IXwcuH5Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.682 [XNIO-1 task-2] j3Pv6q0HTni_2IXwcuH5Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.682 [XNIO-1 task-2] j3Pv6q0HTni_2IXwcuH5Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.682 [XNIO-1 task-2] j3Pv6q0HTni_2IXwcuH5Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.686 [XNIO-1 task-2] E-1c5yGWQxO90Fh9JmTm3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.686 [XNIO-1 task-2] E-1c5yGWQxO90Fh9JmTm3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.686 [XNIO-1 task-2] E-1c5yGWQxO90Fh9JmTm3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.691 [XNIO-1 task-2] rYL-in-TQJqTTL2mjtQf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79487451 +18:11:07.691 [XNIO-1 task-2] rYL-in-TQJqTTL2mjtQf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.691 [XNIO-1 task-2] rYL-in-TQJqTTL2mjtQf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.691 [XNIO-1 task-2] rYL-in-TQJqTTL2mjtQf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79487451 +18:11:07.694 [XNIO-1 task-2] a1zZJ3rMRrqG-M9ZZ-2OeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ad619ae5, base path is set to: null +18:11:07.694 [XNIO-1 task-2] a1zZJ3rMRrqG-M9ZZ-2OeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.694 [XNIO-1 task-2] a1zZJ3rMRrqG-M9ZZ-2OeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.694 [XNIO-1 task-2] a1zZJ3rMRrqG-M9ZZ-2OeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ad619ae5, base path is set to: null +18:11:07.694 [XNIO-1 task-2] a1zZJ3rMRrqG-M9ZZ-2OeA DEBUG com.networknt.schema.TypeValidator debug - validate( "ad619ae5", "ad619ae5", serviceId) +18:11:07.701 [XNIO-1 task-2] ioivQb5SRk-7tmCG8o_KHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.701 [XNIO-1 task-2] ioivQb5SRk-7tmCG8o_KHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.701 [XNIO-1 task-2] ioivQb5SRk-7tmCG8o_KHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.701 [XNIO-1 task-2] ioivQb5SRk-7tmCG8o_KHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.706 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.706 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.706 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.707 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.707 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.707 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd278b70-4b63-4391-b5c3-ead019d85f43", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.707 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG com.networknt.schema.TypeValidator debug - validate( "79487451", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.707 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.707 [XNIO-1 task-2] mFkX0eBRTiuxrpusUVmMpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.714 [XNIO-1 task-2] eQncKyudQtKcJ_m-mKeraA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/78ba6720 +18:11:07.714 [XNIO-1 task-2] eQncKyudQtKcJ_m-mKeraA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.714 [XNIO-1 task-2] eQncKyudQtKcJ_m-mKeraA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.714 [XNIO-1 task-2] eQncKyudQtKcJ_m-mKeraA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/78ba6720 +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "bec1a7c1-0118-4b21-a9f6-12ed5612", {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:07.717 [XNIO-1 task-2] VjNDN2CJTqmBdPnmYnS4Sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"78ba6720","serviceName":"bec1a7c1-0118-4b21-a9f6-12ed5612","serviceDesc":"7c86f3ef-f358-4103-bc7c-4dd1a1c6b07f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.722 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b00f84f6-39fa-434e-bf63-942386b36769 +18:11:07.724 [XNIO-1 task-2] XWFEGwRTRTmAoKUGdUufxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.724 [XNIO-1 task-2] XWFEGwRTRTmAoKUGdUufxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.724 [XNIO-1 task-2] XWFEGwRTRTmAoKUGdUufxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.731 [XNIO-1 task-2] UJVIRBApR-KoxJk0HLC0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6f47e3d8 +18:11:07.731 [XNIO-1 task-2] UJVIRBApR-KoxJk0HLC0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.731 [XNIO-1 task-2] UJVIRBApR-KoxJk0HLC0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.732 [XNIO-1 task-2] UJVIRBApR-KoxJk0HLC0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6f47e3d8 +18:11:07.739 [XNIO-1 task-2] U4tZHn0BSm26OKuXNHoXNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.739 [XNIO-1 task-2] U4tZHn0BSm26OKuXNHoXNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.739 [XNIO-1 task-2] U4tZHn0BSm26OKuXNHoXNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.739 [XNIO-1 task-2] U4tZHn0BSm26OKuXNHoXNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.745 [XNIO-1 task-2] ejBshWf7TTSZt9WBPWTp1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.745 [XNIO-1 task-2] ejBshWf7TTSZt9WBPWTp1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.745 [XNIO-1 task-2] ejBshWf7TTSZt9WBPWTp1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.745 [XNIO-1 task-2] ejBshWf7TTSZt9WBPWTp1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.752 [XNIO-1 task-2] ZXUdlGGyR3Gmb_DMqzB2lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9928ac71, base path is set to: null +18:11:07.752 [XNIO-1 task-2] ZXUdlGGyR3Gmb_DMqzB2lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.752 [XNIO-1 task-2] ZXUdlGGyR3Gmb_DMqzB2lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.752 [XNIO-1 task-2] ZXUdlGGyR3Gmb_DMqzB2lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9928ac71, base path is set to: null +18:11:07.752 [XNIO-1 task-2] ZXUdlGGyR3Gmb_DMqzB2lg DEBUG com.networknt.schema.TypeValidator debug - validate( "9928ac71", "9928ac71", serviceId) +18:11:07.757 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:66ac18e5-706b-4102-b9a4-2fc2edf634f2 +18:11:07.762 [XNIO-1 task-2] yJzaYZhuRne5RIaeDcYdSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/78ba6720, base path is set to: null +18:11:07.762 [XNIO-1 task-2] yJzaYZhuRne5RIaeDcYdSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.762 [XNIO-1 task-2] yJzaYZhuRne5RIaeDcYdSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.762 [XNIO-1 task-2] yJzaYZhuRne5RIaeDcYdSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/78ba6720, base path is set to: null +18:11:07.763 [XNIO-1 task-2] yJzaYZhuRne5RIaeDcYdSg DEBUG com.networknt.schema.TypeValidator debug - validate( "78ba6720", "78ba6720", serviceId) +18:11:07.769 [XNIO-1 task-2] NB6jPV3rTNKK73mYFiBv4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.769 [XNIO-1 task-2] NB6jPV3rTNKK73mYFiBv4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.769 [XNIO-1 task-2] NB6jPV3rTNKK73mYFiBv4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.776 [XNIO-1 task-2] o-QsAG4bRnqBapzeGSZWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/49c3ca83 +18:11:07.776 [XNIO-1 task-2] o-QsAG4bRnqBapzeGSZWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.776 [XNIO-1 task-2] o-QsAG4bRnqBapzeGSZWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.776 [XNIO-1 task-2] o-QsAG4bRnqBapzeGSZWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/49c3ca83 +18:11:07.782 [XNIO-1 task-2] 7-5dhaDHTo6yOjBby_kfpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.782 [XNIO-1 task-2] 7-5dhaDHTo6yOjBby_kfpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.782 [XNIO-1 task-2] 7-5dhaDHTo6yOjBby_kfpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.797 [XNIO-1 task-2] SQ7umbByR1KGTg62Jfz9JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506200ef, base path is set to: null +18:11:07.797 [XNIO-1 task-2] SQ7umbByR1KGTg62Jfz9JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.797 [XNIO-1 task-2] SQ7umbByR1KGTg62Jfz9JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.797 [XNIO-1 task-2] SQ7umbByR1KGTg62Jfz9JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506200ef, base path is set to: null +18:11:07.797 [XNIO-1 task-2] SQ7umbByR1KGTg62Jfz9JA DEBUG com.networknt.schema.TypeValidator debug - validate( "506200ef", "506200ef", serviceId) +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG com.networknt.schema.TypeValidator debug - validate( "30ae1d66-689a-4413-a508-299c35ee205f", {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG com.networknt.schema.TypeValidator debug - validate( "506200ef", {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.800 [XNIO-1 task-2] JY2A6Y8fS1a5ZGZ5NNon5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "748fd800-1196-46b6-860e-8c809b1ecaa0", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "adf385f6", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.806 [XNIO-1 task-2] 1z4Qym7CT2eNFy1dzhZlvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.815 [XNIO-1 task-2] iE0iXo7_QcWRmGh3HIbxwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bdade16 +18:11:07.815 [XNIO-1 task-2] iE0iXo7_QcWRmGh3HIbxwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.815 [XNIO-1 task-2] iE0iXo7_QcWRmGh3HIbxwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.815 [XNIO-1 task-2] iE0iXo7_QcWRmGh3HIbxwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bdade16 +18:11:07.818 [XNIO-1 task-2] jWaNmyQyQ9qPUSdm4Q26JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506200ef, base path is set to: null +18:11:07.818 [XNIO-1 task-2] jWaNmyQyQ9qPUSdm4Q26JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.818 [XNIO-1 task-2] jWaNmyQyQ9qPUSdm4Q26JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.818 [XNIO-1 task-2] jWaNmyQyQ9qPUSdm4Q26JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506200ef, base path is set to: null +18:11:07.818 [XNIO-1 task-2] jWaNmyQyQ9qPUSdm4Q26JA DEBUG com.networknt.schema.TypeValidator debug - validate( "506200ef", "506200ef", serviceId) +18:11:07.823 [XNIO-1 task-2] OqCp0STfRRyoR7QhDe9ybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:07.823 [XNIO-1 task-2] OqCp0STfRRyoR7QhDe9ybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.823 [XNIO-1 task-2] OqCp0STfRRyoR7QhDe9ybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.823 [XNIO-1 task-2] OqCp0STfRRyoR7QhDe9ybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:07.826 [XNIO-1 task-2] bP117qedQ2mS_0lBEpaelw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.826 [XNIO-1 task-2] bP117qedQ2mS_0lBEpaelw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.827 [XNIO-1 task-2] bP117qedQ2mS_0lBEpaelw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.834 [XNIO-1 task-2] 8vuLAo-dTI2BlKM5qwCKSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/748a5569, base path is set to: null +18:11:07.834 [XNIO-1 task-2] 8vuLAo-dTI2BlKM5qwCKSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.834 [XNIO-1 task-2] 8vuLAo-dTI2BlKM5qwCKSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.834 [XNIO-1 task-2] 8vuLAo-dTI2BlKM5qwCKSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/748a5569, base path is set to: null +18:11:07.835 [XNIO-1 task-2] 8vuLAo-dTI2BlKM5qwCKSw DEBUG com.networknt.schema.TypeValidator debug - validate( "748a5569", "748a5569", serviceId) +18:11:07.842 [XNIO-1 task-2] 31kAkGG3TbmnFOg-8T-VaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.842 [XNIO-1 task-2] 31kAkGG3TbmnFOg-8T-VaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.842 [XNIO-1 task-2] 31kAkGG3TbmnFOg-8T-VaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.842 [XNIO-1 task-2] 31kAkGG3TbmnFOg-8T-VaQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.849 [XNIO-1 task-2] zENxXObBTquKC0wNGdI5iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.849 [XNIO-1 task-2] zENxXObBTquKC0wNGdI5iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.849 [XNIO-1 task-2] zENxXObBTquKC0wNGdI5iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.849 [XNIO-1 task-2] zENxXObBTquKC0wNGdI5iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.854 [XNIO-1 task-2] nmFczCBEQdGjb_dpgQZCKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bdade16 +18:11:07.854 [XNIO-1 task-2] nmFczCBEQdGjb_dpgQZCKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.854 [XNIO-1 task-2] nmFczCBEQdGjb_dpgQZCKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.854 [XNIO-1 task-2] nmFczCBEQdGjb_dpgQZCKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bdade16 +18:11:07.860 [XNIO-1 task-2] yINHLeX9QlWVcSX-N-nl8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0143b7e, base path is set to: null +18:11:07.860 [XNIO-1 task-2] yINHLeX9QlWVcSX-N-nl8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.860 [XNIO-1 task-2] yINHLeX9QlWVcSX-N-nl8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.860 [XNIO-1 task-2] yINHLeX9QlWVcSX-N-nl8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0143b7e, base path is set to: null +18:11:07.860 [XNIO-1 task-2] yINHLeX9QlWVcSX-N-nl8g DEBUG com.networknt.schema.TypeValidator debug - validate( "a0143b7e", "a0143b7e", serviceId) +18:11:07.864 [XNIO-1 task-2] joRr8C68QC-P4BAJrEIj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/506200ef +18:11:07.864 [XNIO-1 task-2] joRr8C68QC-P4BAJrEIj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.864 [XNIO-1 task-2] joRr8C68QC-P4BAJrEIj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.864 [XNIO-1 task-2] joRr8C68QC-P4BAJrEIj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/506200ef +18:11:07.866 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.866 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.866 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.866 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.866 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.866 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.867 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.867 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG com.networknt.schema.TypeValidator debug - validate( "5111960e-6cb6-447a-956a-992d1d17", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:07.867 [XNIO-1 task-2] VgHMOHZcTQGSLu_rCXgexg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.873 [XNIO-1 task-2] 6GNwGOKrTb-aWSBB2SdemA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.873 [XNIO-1 task-2] 6GNwGOKrTb-aWSBB2SdemA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.873 [XNIO-1 task-2] 6GNwGOKrTb-aWSBB2SdemA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.873 [XNIO-1 task-2] 6GNwGOKrTb-aWSBB2SdemA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.876 [XNIO-1 task-2] Sy_AT1AySaaQXpugSiWXLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/69c033d2, base path is set to: null +18:11:07.876 [XNIO-1 task-2] Sy_AT1AySaaQXpugSiWXLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.877 [XNIO-1 task-2] Sy_AT1AySaaQXpugSiWXLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.877 [XNIO-1 task-2] Sy_AT1AySaaQXpugSiWXLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/69c033d2, base path is set to: null +18:11:07.877 [XNIO-1 task-2] Sy_AT1AySaaQXpugSiWXLA DEBUG com.networknt.schema.TypeValidator debug - validate( "69c033d2", "69c033d2", serviceId) +18:11:07.879 [XNIO-1 task-2] 79EKr5LsSXei81li71tYtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.879 [XNIO-1 task-2] 79EKr5LsSXei81li71tYtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.879 [XNIO-1 task-2] 79EKr5LsSXei81li71tYtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.879 [XNIO-1 task-2] 79EKr5LsSXei81li71tYtA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.884 [XNIO-1 task-2] o7O_A651RLGCxJ-V06RDdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0143b7e +18:11:07.884 [XNIO-1 task-2] o7O_A651RLGCxJ-V06RDdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.884 [XNIO-1 task-2] o7O_A651RLGCxJ-V06RDdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.885 [XNIO-1 task-2] o7O_A651RLGCxJ-V06RDdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0143b7e +18:11:07.886 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.886 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.886 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.886 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.886 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.886 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.887 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.887 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8c0eff4-1bba-414f-8d89-35daba59", {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:07.887 [XNIO-1 task-2] 8LXNSeinSQCA5hhGCzFmBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"506200ef","serviceName":"a8c0eff4-1bba-414f-8d89-35daba59","serviceDesc":"30ae1d66-689a-4413-a508-299c35ee205f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.894 [XNIO-1 task-2] c1FDOKHcQcqVGUS9OupRPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.894 [XNIO-1 task-2] c1FDOKHcQcqVGUS9OupRPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.894 [XNIO-1 task-2] c1FDOKHcQcqVGUS9OupRPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.894 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:91d8a387 +18:11:07.894 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:91d8a387 +18:11:07.900 [XNIO-1 task-2] 0Q9fNAS8Q4msnWPYmw5oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.900 [XNIO-1 task-2] 0Q9fNAS8Q4msnWPYmw5oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.900 [XNIO-1 task-2] 0Q9fNAS8Q4msnWPYmw5oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.900 [XNIO-1 task-2] 0Q9fNAS8Q4msnWPYmw5oAg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:07.904 [XNIO-1 task-2] _PMG-85WR3G5LoWmKzz7QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.904 [XNIO-1 task-2] _PMG-85WR3G5LoWmKzz7QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.905 [XNIO-1 task-2] _PMG-85WR3G5LoWmKzz7QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.914 [XNIO-1 task-2] kWSEHzVcSnG8g4-sAuO9yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.914 [XNIO-1 task-2] kWSEHzVcSnG8g4-sAuO9yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.914 [XNIO-1 task-2] kWSEHzVcSnG8g4-sAuO9yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.915 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2d88c16a +18:11:07.920 [XNIO-1 task-2] TTEWMP-ASgiyz9tqpbR-Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.920 [XNIO-1 task-2] TTEWMP-ASgiyz9tqpbR-Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.920 [XNIO-1 task-2] TTEWMP-ASgiyz9tqpbR-Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.920 [XNIO-1 task-2] TTEWMP-ASgiyz9tqpbR-Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:07.926 [XNIO-1 task-2] miRZeV6lRI6laezyWL_AcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506200ef, base path is set to: null +18:11:07.926 [XNIO-1 task-2] miRZeV6lRI6laezyWL_AcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.926 [XNIO-1 task-2] miRZeV6lRI6laezyWL_AcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.926 [XNIO-1 task-2] miRZeV6lRI6laezyWL_AcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506200ef, base path is set to: null +18:11:07.926 [XNIO-1 task-2] miRZeV6lRI6laezyWL_AcA DEBUG com.networknt.schema.TypeValidator debug - validate( "506200ef", "506200ef", serviceId) +18:11:07.934 [XNIO-1 task-2] 56IJn2ZKRdG4I_4VnPUnmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ea7ff4c +18:11:07.934 [XNIO-1 task-2] 56IJn2ZKRdG4I_4VnPUnmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.934 [XNIO-1 task-2] 56IJn2ZKRdG4I_4VnPUnmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.934 [XNIO-1 task-2] 56IJn2ZKRdG4I_4VnPUnmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ea7ff4c +18:11:07.954 [XNIO-1 task-2] zPY5_o6uTiC7Wq_YMF56bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7ea7ff4c, base path is set to: null +18:11:07.955 [XNIO-1 task-2] zPY5_o6uTiC7Wq_YMF56bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.955 [XNIO-1 task-2] zPY5_o6uTiC7Wq_YMF56bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.955 [XNIO-1 task-2] zPY5_o6uTiC7Wq_YMF56bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7ea7ff4c, base path is set to: null +18:11:07.955 [XNIO-1 task-2] zPY5_o6uTiC7Wq_YMF56bA DEBUG com.networknt.schema.TypeValidator debug - validate( "7ea7ff4c", "7ea7ff4c", serviceId) +18:11:07.962 [XNIO-1 task-2] ERNKOZ_2Sk-QPFJ-E1PtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.962 [XNIO-1 task-2] ERNKOZ_2Sk-QPFJ-E1PtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.963 [XNIO-1 task-2] ERNKOZ_2Sk-QPFJ-E1PtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG com.networknt.schema.TypeValidator debug - validate( "fd990bf0-8ae4-4815-a980-ec013225c512", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG com.networknt.schema.TypeValidator debug - validate( "eeb1a73b", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.970 [XNIO-1 task-2] gGlB8-fjRGCKuQ5fJkBCEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.976 [XNIO-1 task-2] Priq8HD_QaWHu0LrC1bozg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.976 [XNIO-1 task-2] Priq8HD_QaWHu0LrC1bozg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.976 [XNIO-1 task-2] Priq8HD_QaWHu0LrC1bozg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG com.networknt.schema.TypeValidator debug - validate( "157cf3aa-7f58-45d5-bd50-e27a38f1f0a6", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a8873dca", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:07.982 [XNIO-1 task-2] 00oJJiLUSAS4DzZA-sbikQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.990 [XNIO-1 task-2] cU_q95K7Tr-kWKbyBu8HUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79487451 +18:11:07.990 [XNIO-1 task-2] cU_q95K7Tr-kWKbyBu8HUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:07.990 [XNIO-1 task-2] cU_q95K7Tr-kWKbyBu8HUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:07.990 [XNIO-1 task-2] cU_q95K7Tr-kWKbyBu8HUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79487451 +18:11:07.993 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.993 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.993 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:07.993 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.994 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.994 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:07.994 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:07.994 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "750f4e8a-db94-4815-908f-e1b8dc69", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:07.994 [XNIO-1 task-2] 4nXHdegbTTGBL1X79x-YuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:07.999 [XNIO-1 task-2] --pkF4VARSaa5dUCFjs8bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5a7ca882, base path is set to: null +18:11:07.999 [XNIO-1 task-2] --pkF4VARSaa5dUCFjs8bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:07.999 [XNIO-1 task-2] --pkF4VARSaa5dUCFjs8bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:07.999 [XNIO-1 task-2] --pkF4VARSaa5dUCFjs8bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5a7ca882, base path is set to: null +18:11:07.999 [XNIO-1 task-2] --pkF4VARSaa5dUCFjs8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a7ca882", "5a7ca882", serviceId) +18:11:08.008 [XNIO-1 task-2] FvYrsbUGSmuOGJzi-XWkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.008 [XNIO-1 task-2] FvYrsbUGSmuOGJzi-XWkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.008 [XNIO-1 task-2] FvYrsbUGSmuOGJzi-XWkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.017 [XNIO-1 task-2] EzlzL42qT8Oh0J7sMWulIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cadeaf16 +18:11:08.017 [XNIO-1 task-2] EzlzL42qT8Oh0J7sMWulIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.017 [XNIO-1 task-2] EzlzL42qT8Oh0J7sMWulIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.017 [XNIO-1 task-2] EzlzL42qT8Oh0J7sMWulIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cadeaf16 +18:11:08.021 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:66ac18e5-706b-4102-b9a4-2fc2edf634f2 +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG com.networknt.schema.TypeValidator debug - validate( "c2159b12-027c-442a-8b54-34c15c749849", {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG com.networknt.schema.TypeValidator debug - validate( "32d6d579", {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.026 [XNIO-1 task-2] sf6dJ95eQE6IZdKOGpzYwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"32d6d579","serviceName":"0908b533-312f-4105-842e-0fe24278","serviceDesc":"c2159b12-027c-442a-8b54-34c15c749849","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.033 [XNIO-1 task-2] PEaFttysQA244leAwIsQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.033 [XNIO-1 task-2] PEaFttysQA244leAwIsQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.033 [XNIO-1 task-2] PEaFttysQA244leAwIsQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.040 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.040 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.040 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.040 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.040 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.040 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG com.networknt.schema.TypeValidator debug - validate( "748fd800-1196-46b6-860e-8c809b1ecaa0", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.041 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG com.networknt.schema.TypeValidator debug - validate( "adf385f6", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.041 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.041 [XNIO-1 task-2] OGcOflTDRNW6js7vSEyLxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"adf385f6","serviceName":"fb333b07-0afc-42a8-a050-fe23ffbd","serviceDesc":"748fd800-1196-46b6-860e-8c809b1ecaa0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.047 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.047 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.047 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.047 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.047 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.047 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG com.networknt.schema.TypeValidator debug - validate( "157cf3aa-7f58-45d5-bd50-e27a38f1f0a6", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.047 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG com.networknt.schema.TypeValidator debug - validate( "a8873dca", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.048 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.048 [XNIO-1 task-2] NV6jVaRwTnuCq1UdVio9Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8873dca","serviceName":"b3713add-870a-4083-80e6-bbb2172f","serviceDesc":"157cf3aa-7f58-45d5-bd50-e27a38f1f0a6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.053 [XNIO-1 task-2] OtB_H4VSS722G_6Fr7IvAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.053 [XNIO-1 task-2] OtB_H4VSS722G_6Fr7IvAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.053 [XNIO-1 task-2] OtB_H4VSS722G_6Fr7IvAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.053 [XNIO-1 task-2] OtB_H4VSS722G_6Fr7IvAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.059 [XNIO-1 task-2] qs9RWUOdTU6tfumh1Z2trA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.059 [XNIO-1 task-2] qs9RWUOdTU6tfumh1Z2trA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.059 [XNIO-1 task-2] qs9RWUOdTU6tfumh1Z2trA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.059 [XNIO-1 task-2] qs9RWUOdTU6tfumh1Z2trA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.063 [XNIO-1 task-2] PP_hpGDMTkicxMfzuUTbwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.063 [XNIO-1 task-2] PP_hpGDMTkicxMfzuUTbwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.063 [XNIO-1 task-2] PP_hpGDMTkicxMfzuUTbwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c1cf5cd2-2f56-4132-b68d-a7b45428c632", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2640e1b1", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.069 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.070 [XNIO-1 task-2] Dr9tCzdkRkyy9dyisTYewQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.076 [XNIO-1 task-2] HNwSkXbeSq-e08WUQZHYJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.076 [XNIO-1 task-2] HNwSkXbeSq-e08WUQZHYJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.076 [XNIO-1 task-2] HNwSkXbeSq-e08WUQZHYJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.077 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:aca7757f +18:11:08.081 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.081 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.081 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.081 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.082 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.082 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.082 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.082 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG com.networknt.schema.TypeValidator debug - validate( "eaac186c-2913-49d6-b381-c09f358d", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:08.082 [XNIO-1 task-2] dgLa8hWMSYGuS8qWw47NNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.087 [XNIO-1 task-2] r5XO5CA_SU-TQ-AC_1Pwpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91d8a387, base path is set to: null +18:11:08.087 [XNIO-1 task-2] r5XO5CA_SU-TQ-AC_1Pwpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.087 [XNIO-1 task-2] r5XO5CA_SU-TQ-AC_1Pwpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.087 [XNIO-1 task-2] r5XO5CA_SU-TQ-AC_1Pwpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91d8a387, base path is set to: null +18:11:08.087 [XNIO-1 task-2] r5XO5CA_SU-TQ-AC_1Pwpg DEBUG com.networknt.schema.TypeValidator debug - validate( "91d8a387", "91d8a387", serviceId) +18:11:08.088 [XNIO-1 task-2] ESYloMllQBqoz-BN4Oiqmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.088 [XNIO-1 task-2] ESYloMllQBqoz-BN4Oiqmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.089 [XNIO-1 task-2] ESYloMllQBqoz-BN4Oiqmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.089 [XNIO-1 task-2] ESYloMllQBqoz-BN4Oiqmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG com.networknt.schema.TypeValidator debug - validate( "649c41bf-7951-48bd-ba8c-131a41575d87", {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG com.networknt.schema.TypeValidator debug - validate( "2d88c16a", {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.094 [XNIO-1 task-2] EOfNHzdJT16xsWrVaJB9ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.094 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2d88c16a +18:11:08.100 [XNIO-1 task-2] K8Q8_G8KTo-ZUCU94Z8-CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/32d6d579 +18:11:08.100 [XNIO-1 task-2] K8Q8_G8KTo-ZUCU94Z8-CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.100 [XNIO-1 task-2] K8Q8_G8KTo-ZUCU94Z8-CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.100 [XNIO-1 task-2] K8Q8_G8KTo-ZUCU94Z8-CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/32d6d579 +18:11:08.105 [XNIO-1 task-2] NgYWA5TwR_mmBQjMgKIeqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0037b0b5, base path is set to: null +18:11:08.106 [XNIO-1 task-2] NgYWA5TwR_mmBQjMgKIeqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.106 [XNIO-1 task-2] NgYWA5TwR_mmBQjMgKIeqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.106 [XNIO-1 task-2] NgYWA5TwR_mmBQjMgKIeqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0037b0b5, base path is set to: null +18:11:08.106 [XNIO-1 task-2] NgYWA5TwR_mmBQjMgKIeqg DEBUG com.networknt.schema.TypeValidator debug - validate( "0037b0b5", "0037b0b5", serviceId) +18:11:08.112 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.112 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.112 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.112 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.112 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.112 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG com.networknt.schema.TypeValidator debug - validate( "227b7ec4-e064-4013-b6b2-48b2ac1565c9", {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.113 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG com.networknt.schema.TypeValidator debug - validate( "2de06302", {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.113 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.113 [XNIO-1 task-2] 5YtdvtsjSmOuo-9EFfZU4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2de06302","serviceName":"94f1c19e-ee70-4be7-b736-efeb4578","serviceDesc":"227b7ec4-e064-4013-b6b2-48b2ac1565c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.118 [XNIO-1 task-2] 2UXOSfeTS6SJyArjE_aYDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:08.118 [XNIO-1 task-2] 2UXOSfeTS6SJyArjE_aYDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.119 [XNIO-1 task-2] 2UXOSfeTS6SJyArjE_aYDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.119 [XNIO-1 task-2] 2UXOSfeTS6SJyArjE_aYDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:08.121 [XNIO-1 task-2] p8lGQbSVR7y8pAixbaC92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.121 [XNIO-1 task-2] p8lGQbSVR7y8pAixbaC92Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.121 [XNIO-1 task-2] p8lGQbSVR7y8pAixbaC92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.122 [XNIO-1 task-2] p8lGQbSVR7y8pAixbaC92Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.127 [XNIO-1 task-2] R7J7zcplRduae_wTEPPRrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/aca7757f, base path is set to: null +18:11:08.127 [XNIO-1 task-2] R7J7zcplRduae_wTEPPRrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.127 [XNIO-1 task-2] R7J7zcplRduae_wTEPPRrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.127 [XNIO-1 task-2] R7J7zcplRduae_wTEPPRrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/aca7757f, base path is set to: null +18:11:08.128 [XNIO-1 task-2] R7J7zcplRduae_wTEPPRrA DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7757f", "aca7757f", serviceId) +18:11:08.130 [XNIO-1 task-2] tMd3AKoHSyyl5OdhaK4uoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.130 [XNIO-1 task-2] tMd3AKoHSyyl5OdhaK4uoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.130 [XNIO-1 task-2] tMd3AKoHSyyl5OdhaK4uoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG com.networknt.schema.TypeValidator debug - validate( "30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG com.networknt.schema.TypeValidator debug - validate( "69c033d2", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.138 [XNIO-1 task-2] QdUPhNcrT96XBlcGOvVY7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.145 [XNIO-1 task-2] QJvaJc0ZTjSxguV66ufHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0143b7e +18:11:08.145 [XNIO-1 task-2] QJvaJc0ZTjSxguV66ufHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.145 [XNIO-1 task-2] QJvaJc0ZTjSxguV66ufHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.145 [XNIO-1 task-2] QJvaJc0ZTjSxguV66ufHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0143b7e +18:11:08.170 [XNIO-1 task-2] d69c9GSLRE-dgjVDBPE77w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/aca7757f, base path is set to: null +18:11:08.170 [XNIO-1 task-2] d69c9GSLRE-dgjVDBPE77w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.170 [XNIO-1 task-2] d69c9GSLRE-dgjVDBPE77w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.170 [XNIO-1 task-2] d69c9GSLRE-dgjVDBPE77w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/aca7757f, base path is set to: null +18:11:08.171 [XNIO-1 task-2] d69c9GSLRE-dgjVDBPE77w DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7757f", "aca7757f", serviceId) +18:11:08.171 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:aca7757f +18:11:08.177 [XNIO-1 task-2] fH9WGfTWRUesADdQFpr0tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.177 [XNIO-1 task-2] fH9WGfTWRUesADdQFpr0tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.177 [XNIO-1 task-2] fH9WGfTWRUesADdQFpr0tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.178 [XNIO-1 task-2] fH9WGfTWRUesADdQFpr0tg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.187 [XNIO-1 task-2] WnfoAcpzRpaF5O615yyLjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.187 [XNIO-1 task-2] WnfoAcpzRpaF5O615yyLjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.187 [XNIO-1 task-2] WnfoAcpzRpaF5O615yyLjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.188 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f84f835c +18:11:08.193 [XNIO-1 task-2] VIcVqdQjSDC4cKXgkzKbfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.194 [XNIO-1 task-2] VIcVqdQjSDC4cKXgkzKbfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.194 [XNIO-1 task-2] VIcVqdQjSDC4cKXgkzKbfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.198 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7aa7f954 +18:11:08.199 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7aa7f954 +18:11:08.205 [XNIO-1 task-2] k1vArHDcRlGaT0C5qsIcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8d7c51b7 +18:11:08.205 [XNIO-1 task-2] k1vArHDcRlGaT0C5qsIcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.205 [XNIO-1 task-2] k1vArHDcRlGaT0C5qsIcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.205 [XNIO-1 task-2] k1vArHDcRlGaT0C5qsIcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8d7c51b7 +18:11:08.211 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.211 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.211 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.211 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.211 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.212 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.212 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.212 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG com.networknt.schema.TypeValidator debug - validate( "750f4e8a-db94-4815-908f-e1b8dc69", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:08.212 [XNIO-1 task-2] 4tNWmyjiR_Sd66AFiftjIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.218 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.218 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.218 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.218 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.219 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.219 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.219 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.219 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "750f4e8a-db94-4815-908f-e1b8dc69", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:08.219 [XNIO-1 task-2] mDOBJky2SsyAo15w2UxN9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.221 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6337db4 +18:11:08.222 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6337db4 +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG com.networknt.schema.TypeValidator debug - validate( "c1cf5cd2-2f56-4132-b68d-a7b45428c632", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG com.networknt.schema.TypeValidator debug - validate( "2640e1b1", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.225 [XNIO-1 task-2] UNjZIlhCS5ysrSlltj2n8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2640e1b1","serviceName":"5111960e-6cb6-447a-956a-992d1d17","serviceDesc":"c1cf5cd2-2f56-4132-b68d-a7b45428c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.228 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7aa7f954 +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "fd990bf0-8ae4-4815-a980-ec013225c512", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "eeb1a73b", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.234 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.235 [XNIO-1 task-2] 0yP-VF-uQLeSyNSr9Zs4Fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.241 [XNIO-1 task-2] nfYm6YVyTVqEsjUSq6GQqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2de06302 +18:11:08.241 [XNIO-1 task-2] nfYm6YVyTVqEsjUSq6GQqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.241 [XNIO-1 task-2] nfYm6YVyTVqEsjUSq6GQqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.241 [XNIO-1 task-2] nfYm6YVyTVqEsjUSq6GQqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2de06302 +18:11:08.248 [XNIO-1 task-2] e2anEDXnSOuA2tGRYTkBjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/adf385f6, base path is set to: null +18:11:08.248 [XNIO-1 task-2] e2anEDXnSOuA2tGRYTkBjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.248 [XNIO-1 task-2] e2anEDXnSOuA2tGRYTkBjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.248 [XNIO-1 task-2] e2anEDXnSOuA2tGRYTkBjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/adf385f6, base path is set to: null +18:11:08.248 [XNIO-1 task-2] e2anEDXnSOuA2tGRYTkBjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "adf385f6", "adf385f6", serviceId) +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG com.networknt.schema.TypeValidator debug - validate( "30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG com.networknt.schema.TypeValidator debug - validate( "69c033d2", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.254 [XNIO-1 task-2] UgQSMWvDQuC5H4a5dJZznw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.257 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7aa7f954 +18:11:08.260 [XNIO-1 task-2] pKCE1NnvRVSuhPZ6k-bopA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d88c16a +18:11:08.260 [XNIO-1 task-2] pKCE1NnvRVSuhPZ6k-bopA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.260 [XNIO-1 task-2] pKCE1NnvRVSuhPZ6k-bopA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.260 [XNIO-1 task-2] pKCE1NnvRVSuhPZ6k-bopA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d88c16a +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.264 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7e35ef7-260c-4dbb-a5d4-3816a94b", {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:08.265 [XNIO-1 task-2] Quej1C32TSC8lZCMGFFgDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2d88c16a","serviceName":"d7e35ef7-260c-4dbb-a5d4-3816a94b","serviceDesc":"649c41bf-7951-48bd-ba8c-131a41575d87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.265 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2d88c16a +18:11:08.265 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:08.269 [XNIO-1 task-2] VkVqcRFXQ5WWTcWeNiaNqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.269 [XNIO-1 task-2] VkVqcRFXQ5WWTcWeNiaNqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.269 [XNIO-1 task-2] VkVqcRFXQ5WWTcWeNiaNqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.269 [XNIO-1 task-2] VkVqcRFXQ5WWTcWeNiaNqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.275 [XNIO-1 task-2] vXjh1HvKT4CinjRkzzhBbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8873dca, base path is set to: null +18:11:08.275 [XNIO-1 task-2] vXjh1HvKT4CinjRkzzhBbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.275 [XNIO-1 task-2] vXjh1HvKT4CinjRkzzhBbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.275 [XNIO-1 task-2] vXjh1HvKT4CinjRkzzhBbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8873dca, base path is set to: null +18:11:08.275 [XNIO-1 task-2] vXjh1HvKT4CinjRkzzhBbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a8873dca", "a8873dca", serviceId) +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG com.networknt.schema.TypeValidator debug - validate( "1f78c0b1-d09e-4175-9d53-1f35a2427529", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG com.networknt.schema.TypeValidator debug - validate( "f84f835c", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.282 [XNIO-1 task-2] Mv88nAtSSlOSgL0Jb_YgkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.282 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f84f835c +18:11:08.287 [XNIO-1 task-2] 8513fIB4Trmem5uNgBSsTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a7210c5c +18:11:08.287 [XNIO-1 task-2] 8513fIB4Trmem5uNgBSsTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.287 [XNIO-1 task-2] 8513fIB4Trmem5uNgBSsTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.288 [XNIO-1 task-2] 8513fIB4Trmem5uNgBSsTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a7210c5c +18:11:08.290 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:08.293 [XNIO-1 task-2] _l03pLy2TaCJwzC6YCljqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91d8a387, base path is set to: null +18:11:08.293 [XNIO-1 task-2] _l03pLy2TaCJwzC6YCljqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.293 [XNIO-1 task-2] _l03pLy2TaCJwzC6YCljqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.293 [XNIO-1 task-2] _l03pLy2TaCJwzC6YCljqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91d8a387, base path is set to: null +18:11:08.294 [XNIO-1 task-2] _l03pLy2TaCJwzC6YCljqA DEBUG com.networknt.schema.TypeValidator debug - validate( "91d8a387", "91d8a387", serviceId) +18:11:08.294 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:91d8a387 +18:11:08.299 [XNIO-1 task-2] LCkyKtmxRGyM5BBr60P7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.299 [XNIO-1 task-2] LCkyKtmxRGyM5BBr60P7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.299 [XNIO-1 task-2] LCkyKtmxRGyM5BBr60P7tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.303 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:31649c4b-2aed-42cc-a35c-862f1d61c47a +18:11:08.305 [XNIO-1 task-2] kfsAkDgSRh2M0npEl8MxXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b757a3ec, base path is set to: null +18:11:08.305 [XNIO-1 task-2] kfsAkDgSRh2M0npEl8MxXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.305 [XNIO-1 task-2] kfsAkDgSRh2M0npEl8MxXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.305 [XNIO-1 task-2] kfsAkDgSRh2M0npEl8MxXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b757a3ec, base path is set to: null +18:11:08.305 [XNIO-1 task-2] kfsAkDgSRh2M0npEl8MxXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b757a3ec", "b757a3ec", serviceId) +18:11:08.308 [XNIO-1 task-2] XWImHp50ShiTR01xNDxxjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b757a3ec +18:11:08.308 [XNIO-1 task-2] XWImHp50ShiTR01xNDxxjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.308 [XNIO-1 task-2] XWImHp50ShiTR01xNDxxjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.308 [XNIO-1 task-2] XWImHp50ShiTR01xNDxxjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b757a3ec +18:11:08.309 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:08.310 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d8c442-f654-44d9-8b60-1094f9f3", {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:08.311 [XNIO-1 task-2] a5sauanwSJuAp7eNc7ojHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bd77e85c","serviceName":"c4d8c442-f654-44d9-8b60-1094f9f3","serviceDesc":"6021928f-cf6b-49fe-99b0-6a315983828b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.318 [XNIO-1 task-2] nHnlihJoQHyydXymfOKJjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.318 [XNIO-1 task-2] nHnlihJoQHyydXymfOKJjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.319 [XNIO-1 task-2] nHnlihJoQHyydXymfOKJjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.319 [XNIO-1 task-2] nHnlihJoQHyydXymfOKJjw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.323 [XNIO-1 task-2] E_1a-8LcTDKi6CEj0KuY2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b757a3ec, base path is set to: null +18:11:08.323 [XNIO-1 task-2] E_1a-8LcTDKi6CEj0KuY2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.323 [XNIO-1 task-2] E_1a-8LcTDKi6CEj0KuY2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.323 [XNIO-1 task-2] E_1a-8LcTDKi6CEj0KuY2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b757a3ec, base path is set to: null +18:11:08.323 [XNIO-1 task-2] E_1a-8LcTDKi6CEj0KuY2w DEBUG com.networknt.schema.TypeValidator debug - validate( "b757a3ec", "b757a3ec", serviceId) +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1f78c0b1-d09e-4175-9d53-1f35a2427529", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG com.networknt.schema.TypeValidator debug - validate( "f84f835c", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.325 [XNIO-1 task-2] 4z8qmmnjQ8-ZDWQCJKjdMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.326 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f84f835c +18:11:08.328 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6337db4 +18:11:08.330 [XNIO-1 task-2] F3wNrYGMQ-SchHHwzUMSkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.330 [XNIO-1 task-2] F3wNrYGMQ-SchHHwzUMSkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.331 [XNIO-1 task-2] F3wNrYGMQ-SchHHwzUMSkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.339 [XNIO-1 task-2] Ta29nNp1RYe2_PJdWxHvjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.339 [XNIO-1 task-2] Ta29nNp1RYe2_PJdWxHvjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.339 [XNIO-1 task-2] Ta29nNp1RYe2_PJdWxHvjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.339 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1334764b-7ee3-477e-9013-1e6b54e1c22b +18:11:08.339 [XNIO-1 task-2] Ta29nNp1RYe2_PJdWxHvjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.345 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:08.345 [XNIO-1 task-2] l7-piDGCSfa3RnnGoUGTnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b757a3ec, base path is set to: null +18:11:08.345 [XNIO-1 task-2] l7-piDGCSfa3RnnGoUGTnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.345 [XNIO-1 task-2] l7-piDGCSfa3RnnGoUGTnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.345 [XNIO-1 task-2] l7-piDGCSfa3RnnGoUGTnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b757a3ec, base path is set to: null +18:11:08.345 [XNIO-1 task-2] l7-piDGCSfa3RnnGoUGTnw DEBUG com.networknt.schema.TypeValidator debug - validate( "b757a3ec", "b757a3ec", serviceId) +18:11:08.348 [XNIO-1 task-2] OOvkFiJgS3eprzJm5zJ4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b757a3ec +18:11:08.348 [XNIO-1 task-2] OOvkFiJgS3eprzJm5zJ4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.348 [XNIO-1 task-2] OOvkFiJgS3eprzJm5zJ4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.349 [XNIO-1 task-2] OOvkFiJgS3eprzJm5zJ4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b757a3ec +18:11:08.351 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:08.355 [XNIO-1 task-2] VCBY_hZKQMOU5mX399uJKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.355 [XNIO-1 task-2] VCBY_hZKQMOU5mX399uJKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.356 [XNIO-1 task-2] VCBY_hZKQMOU5mX399uJKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.356 [XNIO-1 task-2] VCBY_hZKQMOU5mX399uJKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.379 [XNIO-1 task-2] 2fb7Mpk6T--DDxwMp0zQog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0143b7e, base path is set to: null +18:11:08.379 [XNIO-1 task-2] 2fb7Mpk6T--DDxwMp0zQog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.379 [XNIO-1 task-2] 2fb7Mpk6T--DDxwMp0zQog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.379 [XNIO-1 task-2] 2fb7Mpk6T--DDxwMp0zQog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a0143b7e, base path is set to: null +18:11:08.379 [XNIO-1 task-2] 2fb7Mpk6T--DDxwMp0zQog DEBUG com.networknt.schema.TypeValidator debug - validate( "a0143b7e", "a0143b7e", serviceId) +18:11:08.387 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.387 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.387 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.388 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.388 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.388 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.388 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "69c033d2", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.388 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.388 [XNIO-1 task-2] dJVuMy0eS7iIr7djlvyd3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69c033d2","serviceName":"97cca428-9017-4648-a523-7e7e9276","serviceDesc":"30c8fa51-57e3-4e4c-8173-cf59ccfd3ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.393 [XNIO-1 task-2] 2_zk6Jd7SNmpJ4G7oEjowQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d88c16a +18:11:08.393 [XNIO-1 task-2] 2_zk6Jd7SNmpJ4G7oEjowQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.393 [XNIO-1 task-2] 2_zk6Jd7SNmpJ4G7oEjowQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.393 [XNIO-1 task-2] 2_zk6Jd7SNmpJ4G7oEjowQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d88c16a +18:11:08.394 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2d88c16a +18:11:08.398 [XNIO-1 task-2] n1SEVXlFRYWprFIx-4Jiqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.398 [XNIO-1 task-2] n1SEVXlFRYWprFIx-4Jiqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.399 [XNIO-1 task-2] n1SEVXlFRYWprFIx-4Jiqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.399 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51c6a9c6 +18:11:08.399 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51c6a9c6 +18:11:08.405 [XNIO-1 task-2] 2PHDDEy1TNKD17qCTHu8Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.405 [XNIO-1 task-2] 2PHDDEy1TNKD17qCTHu8Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.406 [XNIO-1 task-2] 2PHDDEy1TNKD17qCTHu8Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.406 [XNIO-1 task-2] 2PHDDEy1TNKD17qCTHu8Nw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.410 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.410 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.410 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.410 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.410 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.411 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd278b70-4b63-4391-b5c3-ead019d85f43", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.411 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "79487451", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.411 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.411 [XNIO-1 task-2] HZEaeXCtRt-vPnpbUcmCjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79487451","serviceName":"750f4e8a-db94-4815-908f-e1b8dc69","serviceDesc":"dd278b70-4b63-4391-b5c3-ead019d85f43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.418 [XNIO-1 task-2] Y2YtMo1TQAWaILZbcYnbfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bd77e85c +18:11:08.418 [XNIO-1 task-2] Y2YtMo1TQAWaILZbcYnbfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.418 [XNIO-1 task-2] Y2YtMo1TQAWaILZbcYnbfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.418 [XNIO-1 task-2] Y2YtMo1TQAWaILZbcYnbfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bd77e85c +18:11:08.421 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7aa7f954 +18:11:08.426 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:08.428 [XNIO-1 task-2] zRkMqxjJRjewtL7RJHoXqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.428 [XNIO-1 task-2] zRkMqxjJRjewtL7RJHoXqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.428 [XNIO-1 task-2] zRkMqxjJRjewtL7RJHoXqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.429 [XNIO-1 task-2] zRkMqxjJRjewtL7RJHoXqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.435 [XNIO-1 task-2] xKaDWXi4RIioVpauxeclcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.435 [XNIO-1 task-2] xKaDWXi4RIioVpauxeclcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.435 [XNIO-1 task-2] xKaDWXi4RIioVpauxeclcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.435 [XNIO-1 task-2] xKaDWXi4RIioVpauxeclcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.439 [XNIO-1 task-2] xFqilmhaQEiejqFkWCq6Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.439 [XNIO-1 task-2] xFqilmhaQEiejqFkWCq6Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.439 [XNIO-1 task-2] xFqilmhaQEiejqFkWCq6Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.439 [XNIO-1 task-2] xFqilmhaQEiejqFkWCq6Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.449 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.449 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.449 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.449 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.449 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.449 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.449 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.450 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG com.networknt.schema.TypeValidator debug - validate( "eaac186c-2913-49d6-b381-c09f358d", {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:08.450 [XNIO-1 task-2] -ADnY5QxSgSiusZ2MOfjug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eeb1a73b","serviceName":"eaac186c-2913-49d6-b381-c09f358d","serviceDesc":"fd990bf0-8ae4-4815-a980-ec013225c512","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.460 [XNIO-1 task-2] q_K8CZabSF-6yoXbRJRPfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.460 [XNIO-1 task-2] q_K8CZabSF-6yoXbRJRPfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.460 [XNIO-1 task-2] q_K8CZabSF-6yoXbRJRPfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.461 [XNIO-1 task-2] q_K8CZabSF-6yoXbRJRPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.469 [XNIO-1 task-2] m0uZN-WXQlu3zFYpRgOQ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.469 [XNIO-1 task-2] m0uZN-WXQlu3zFYpRgOQ3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.469 [XNIO-1 task-2] m0uZN-WXQlu3zFYpRgOQ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.472 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7aa7f954 +18:11:08.476 [XNIO-1 task-2] n-x_2lTvRnqSmVSi2-E3Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.476 [XNIO-1 task-2] n-x_2lTvRnqSmVSi2-E3Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.476 [XNIO-1 task-2] n-x_2lTvRnqSmVSi2-E3Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.477 [XNIO-1 task-2] n-x_2lTvRnqSmVSi2-E3Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.481 [XNIO-1 task-2] BnRnRJELQjCQfsJX1YeGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.481 [XNIO-1 task-2] BnRnRJELQjCQfsJX1YeGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.481 [XNIO-1 task-2] BnRnRJELQjCQfsJX1YeGtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.481 [XNIO-1 task-2] BnRnRJELQjCQfsJX1YeGtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.490 [XNIO-1 task-2] DtwBbvmISe-Yvh2kOx6JBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.490 [XNIO-1 task-2] DtwBbvmISe-Yvh2kOx6JBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.490 [XNIO-1 task-2] DtwBbvmISe-Yvh2kOx6JBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.496 [XNIO-1 task-2] B8NG0ca4S3ObA9CvVXZ43g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.496 [XNIO-1 task-2] B8NG0ca4S3ObA9CvVXZ43g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.496 [XNIO-1 task-2] B8NG0ca4S3ObA9CvVXZ43g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.501 [XNIO-1 task-2] CwyLpYz4SxqQVkx24ww9yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2640e1b1 +18:11:08.501 [XNIO-1 task-2] CwyLpYz4SxqQVkx24ww9yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.501 [XNIO-1 task-2] CwyLpYz4SxqQVkx24ww9yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.501 [XNIO-1 task-2] CwyLpYz4SxqQVkx24ww9yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2640e1b1 +18:11:08.503 [XNIO-1 task-2] DM9lT26OQc-x1b5A1biZ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.504 [XNIO-1 task-2] DM9lT26OQc-x1b5A1biZ3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.504 [XNIO-1 task-2] DM9lT26OQc-x1b5A1biZ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.504 [XNIO-1 task-2] DM9lT26OQc-x1b5A1biZ3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.508 [XNIO-1 task-2] DVG0ZBTpS9eCqHpVe9XYug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79487451, base path is set to: null +18:11:08.508 [XNIO-1 task-2] DVG0ZBTpS9eCqHpVe9XYug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.508 [XNIO-1 task-2] DVG0ZBTpS9eCqHpVe9XYug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.508 [XNIO-1 task-2] DVG0ZBTpS9eCqHpVe9XYug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79487451, base path is set to: null +18:11:08.508 [XNIO-1 task-2] DVG0ZBTpS9eCqHpVe9XYug DEBUG com.networknt.schema.TypeValidator debug - validate( "79487451", "79487451", serviceId) +18:11:08.514 [XNIO-1 task-2] 0_-k_yAIQVO6z9hItIu88Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.514 [XNIO-1 task-2] 0_-k_yAIQVO6z9hItIu88Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.514 [XNIO-1 task-2] 0_-k_yAIQVO6z9hItIu88Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.514 [XNIO-1 task-2] 0_-k_yAIQVO6z9hItIu88Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.518 [XNIO-1 task-2] KsX6Wps7TwOdojisPtikLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.518 [XNIO-1 task-2] KsX6Wps7TwOdojisPtikLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.518 [XNIO-1 task-2] KsX6Wps7TwOdojisPtikLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.518 [XNIO-1 task-2] KsX6Wps7TwOdojisPtikLw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.522 [XNIO-1 task-2] J3BcdZdOQMuyRU2vlqe6KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2640e1b1 +18:11:08.522 [XNIO-1 task-2] J3BcdZdOQMuyRU2vlqe6KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.522 [XNIO-1 task-2] J3BcdZdOQMuyRU2vlqe6KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.522 [XNIO-1 task-2] J3BcdZdOQMuyRU2vlqe6KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2640e1b1 +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG com.networknt.schema.TypeValidator debug - validate( "a155c902-6737-4f86-837c-2ff112eb", {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:08.528 [XNIO-1 task-2] 0RYSXm7wQgufF_nEakrztw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.535 [XNIO-1 task-2] kjMbfakFRm2lzHM88fCeGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/86f8128e, base path is set to: null +18:11:08.535 [XNIO-1 task-2] kjMbfakFRm2lzHM88fCeGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.535 [XNIO-1 task-2] kjMbfakFRm2lzHM88fCeGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.535 [XNIO-1 task-2] kjMbfakFRm2lzHM88fCeGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/86f8128e, base path is set to: null +18:11:08.535 [XNIO-1 task-2] kjMbfakFRm2lzHM88fCeGA DEBUG com.networknt.schema.TypeValidator debug - validate( "86f8128e", "86f8128e", serviceId) +18:11:08.542 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.542 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.542 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.542 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.542 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.543 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG com.networknt.schema.TypeValidator debug - validate( "2739e475-6da2-4ea4-af30-258c23b1a806", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.543 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG com.networknt.schema.TypeValidator debug - validate( "ce035881", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.543 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.543 [XNIO-1 task-2] tozMeFilS-mygArlw2GAAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.548 [XNIO-1 task-2] dbJMBbJDQBKcQ3GpIc9QXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.548 [XNIO-1 task-2] dbJMBbJDQBKcQ3GpIc9QXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.548 [XNIO-1 task-2] dbJMBbJDQBKcQ3GpIc9QXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.548 [XNIO-1 task-2] dbJMBbJDQBKcQ3GpIc9QXg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.553 [XNIO-1 task-2] 4XzC88EeSY6ItOZPVtNBpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.553 [XNIO-1 task-2] 4XzC88EeSY6ItOZPVtNBpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.553 [XNIO-1 task-2] 4XzC88EeSY6ItOZPVtNBpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.554 [XNIO-1 task-2] 4XzC88EeSY6ItOZPVtNBpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.558 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.558 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.558 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.559 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.559 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.559 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2739e475-6da2-4ea4-af30-258c23b1a806", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.559 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ce035881", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.559 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.559 [XNIO-1 task-2] Aen_FnrVQNe8O3LXYit5zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ce035881","serviceName":"9e333c43-b690-4115-b6b6-40b19da3","serviceDesc":"2739e475-6da2-4ea4-af30-258c23b1a806","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.564 [XNIO-1 task-2] sgflrCorRGWhmJPRvyGUkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.564 [XNIO-1 task-2] sgflrCorRGWhmJPRvyGUkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.564 [XNIO-1 task-2] sgflrCorRGWhmJPRvyGUkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.571 [XNIO-1 task-2] atUyH6V9RM2cu3sRKz_wFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.571 [XNIO-1 task-2] atUyH6V9RM2cu3sRKz_wFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.571 [XNIO-1 task-2] atUyH6V9RM2cu3sRKz_wFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.576 [XNIO-1 task-2] yIB3wO6iQlynruAybNC2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f4565832 +18:11:08.576 [XNIO-1 task-2] yIB3wO6iQlynruAybNC2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.577 [XNIO-1 task-2] yIB3wO6iQlynruAybNC2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.577 [XNIO-1 task-2] yIB3wO6iQlynruAybNC2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f4565832 +18:11:08.578 [XNIO-1 task-2] CWpsFFGRTTi_BFNBex5rJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f4565832, base path is set to: null +18:11:08.578 [XNIO-1 task-2] CWpsFFGRTTi_BFNBex5rJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:08.578 [XNIO-1 task-2] CWpsFFGRTTi_BFNBex5rJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:08.579 [XNIO-1 task-2] CWpsFFGRTTi_BFNBex5rJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f4565832, base path is set to: null +18:11:08.579 [XNIO-1 task-2] CWpsFFGRTTi_BFNBex5rJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f4565832", "f4565832", serviceId) +18:11:08.580 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.580 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.581 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.581 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.581 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:08.581 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f78c0b1-d09e-4175-9d53-1f35a2427529", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:08.581 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG com.networknt.schema.TypeValidator debug - validate( "f84f835c", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:08.581 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:08.581 [XNIO-1 task-2] bXfkyGNbSXusM4acRAgmqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f84f835c","serviceName":"cdc2d267-3a3e-4695-bf53-d56ca42f","serviceDesc":"1f78c0b1-d09e-4175-9d53-1f35a2427529","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:08.581 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f84f835c +18:11:08.586 [XNIO-1 task-2] PQYd8rHVRYS3uaeIkAeZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.586 [XNIO-1 task-2] PQYd8rHVRYS3uaeIkAeZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.586 [XNIO-1 task-2] PQYd8rHVRYS3uaeIkAeZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.586 [XNIO-1 task-2] PQYd8rHVRYS3uaeIkAeZaw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.989 [XNIO-1 task-2] z8EJwukoRB6rMaJCfIL4Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f4565832 +18:11:08.989 [XNIO-1 task-2] z8EJwukoRB6rMaJCfIL4Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.989 [XNIO-1 task-2] z8EJwukoRB6rMaJCfIL4Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:08.989 [XNIO-1 task-2] z8EJwukoRB6rMaJCfIL4Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f4565832 +18:11:08.993 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0e5dd3a4-268c-4ee7-a534-562eb39e65e2 +18:11:08.994 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0e5dd3a4-268c-4ee7-a534-562eb39e65e2 +18:11:08.996 [XNIO-1 task-2] z1-9URA0TCuxQ7aBnKCXkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.996 [XNIO-1 task-2] z1-9URA0TCuxQ7aBnKCXkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.997 [XNIO-1 task-2] z1-9URA0TCuxQ7aBnKCXkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:08.997 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e5f65f97 +18:11:09.002 [XNIO-1 task-2] azjF53jTToyOCr-7DmusVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.003 [XNIO-1 task-2] azjF53jTToyOCr-7DmusVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.003 [XNIO-1 task-2] azjF53jTToyOCr-7DmusVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.003 [XNIO-1 task-2] azjF53jTToyOCr-7DmusVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.007 [XNIO-1 task-2] 6v-BA434SiS8GuyvaKQyPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d63020af, base path is set to: null +18:11:09.008 [XNIO-1 task-2] 6v-BA434SiS8GuyvaKQyPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.008 [XNIO-1 task-2] 6v-BA434SiS8GuyvaKQyPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.008 [XNIO-1 task-2] 6v-BA434SiS8GuyvaKQyPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d63020af, base path is set to: null +18:11:09.008 [XNIO-1 task-2] 6v-BA434SiS8GuyvaKQyPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d63020af", "d63020af", serviceId) +18:11:09.017 [XNIO-1 task-2] u6oIY2NbQO2erp7jJrfq2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/452feeb6 +18:11:09.017 [XNIO-1 task-2] u6oIY2NbQO2erp7jJrfq2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.017 [XNIO-1 task-2] u6oIY2NbQO2erp7jJrfq2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.017 [XNIO-1 task-2] u6oIY2NbQO2erp7jJrfq2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/452feeb6 +18:11:09.019 [XNIO-1 task-2] oZnMA6kwSICw79FPOPPhlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.019 [XNIO-1 task-2] oZnMA6kwSICw79FPOPPhlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.019 [XNIO-1 task-2] oZnMA6kwSICw79FPOPPhlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.025 [XNIO-1 task-2] JtofSAIqSkyNDzGHHKqL9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.025 [XNIO-1 task-2] JtofSAIqSkyNDzGHHKqL9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.025 [XNIO-1 task-2] JtofSAIqSkyNDzGHHKqL9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.025 [XNIO-1 task-2] JtofSAIqSkyNDzGHHKqL9A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.031 [XNIO-1 task-2] sUJpNu22Shy3pEdw4Lg8NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.031 [XNIO-1 task-2] sUJpNu22Shy3pEdw4Lg8NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.031 [XNIO-1 task-2] sUJpNu22Shy3pEdw4Lg8NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.031 [XNIO-1 task-2] sUJpNu22Shy3pEdw4Lg8NA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.036 [XNIO-1 task-2] D80pKnikTJuaxcABfZL90Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.036 [XNIO-1 task-2] D80pKnikTJuaxcABfZL90Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.036 [XNIO-1 task-2] D80pKnikTJuaxcABfZL90Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.049 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.049 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.050 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.051 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.051 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.051 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.051 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.051 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG com.networknt.schema.TypeValidator debug - validate( "32e2528c-2431-4365-a78b-a8d50ac5", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.051 [XNIO-1 task-2] hGBpJKlHQaWi1KYLdwIDtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.058 [XNIO-1 task-2] O28vSEjZRc6_cseDEiWsyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.058 [XNIO-1 task-2] O28vSEjZRc6_cseDEiWsyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.058 [XNIO-1 task-2] O28vSEjZRc6_cseDEiWsyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.065 [XNIO-1 task-2] OF0UVU_zRDuy_9sq1rghDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bceff21e, base path is set to: null +18:11:09.066 [XNIO-1 task-2] OF0UVU_zRDuy_9sq1rghDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.066 [XNIO-1 task-2] OF0UVU_zRDuy_9sq1rghDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.066 [XNIO-1 task-2] OF0UVU_zRDuy_9sq1rghDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bceff21e, base path is set to: null +18:11:09.066 [XNIO-1 task-2] OF0UVU_zRDuy_9sq1rghDg DEBUG com.networknt.schema.TypeValidator debug - validate( "bceff21e", "bceff21e", serviceId) +18:11:09.072 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.072 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.072 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.072 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.073 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.073 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG com.networknt.schema.TypeValidator debug - validate( "19f5e0bc-ef0e-4329-9597-9fe043dcedd4", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.073 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG com.networknt.schema.TypeValidator debug - validate( "7371ba7a", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.073 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.073 [XNIO-1 task-2] bSFKM504Ry6iGzBsuQolgw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c55504d-8453-4617-afd9-45c0db4c0eb0", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG com.networknt.schema.TypeValidator debug - validate( "51c6a9c6", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.080 [XNIO-1 task-2] 5bmWqMIGT0Gum7h9CTWrvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.081 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51c6a9c6 +18:11:09.087 [XNIO-1 task-2] raBnekWoTz61oJVLzfP1dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.087 [XNIO-1 task-2] raBnekWoTz61oJVLzfP1dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.087 [XNIO-1 task-2] raBnekWoTz61oJVLzfP1dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.095 [XNIO-1 task-2] 0XSf-tshQx2NDwmNU05s0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.095 [XNIO-1 task-2] 0XSf-tshQx2NDwmNU05s0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.095 [XNIO-1 task-2] 0XSf-tshQx2NDwmNU05s0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.096 [XNIO-1 task-2] 0XSf-tshQx2NDwmNU05s0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.101 [XNIO-1 task-2] GOLjWzoGTY6lO2sKPNuKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.102 [XNIO-1 task-2] GOLjWzoGTY6lO2sKPNuKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.102 [XNIO-1 task-2] GOLjWzoGTY6lO2sKPNuKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.108 [XNIO-1 task-2] 7EsRHHauSSuWbBGpqy3aJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.108 [XNIO-1 task-2] 7EsRHHauSSuWbBGpqy3aJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.109 [XNIO-1 task-2] 7EsRHHauSSuWbBGpqy3aJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.115 [XNIO-1 task-2] Yfu0rFMRRmGK4q-APjOdiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8274d881 +18:11:09.115 [XNIO-1 task-2] Yfu0rFMRRmGK4q-APjOdiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.115 [XNIO-1 task-2] Yfu0rFMRRmGK4q-APjOdiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.115 [XNIO-1 task-2] Yfu0rFMRRmGK4q-APjOdiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8274d881 +18:11:09.119 [XNIO-1 task-2] 5Wc0AHqPRgi75-3XSZF6gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.119 [XNIO-1 task-2] 5Wc0AHqPRgi75-3XSZF6gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.119 [XNIO-1 task-2] 5Wc0AHqPRgi75-3XSZF6gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.119 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:904b7a35 +18:11:09.120 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:904b7a35 +18:11:09.125 [XNIO-1 task-2] UMX9Hi76RNuzlHhLYSzF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.125 [XNIO-1 task-2] UMX9Hi76RNuzlHhLYSzF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.125 [XNIO-1 task-2] UMX9Hi76RNuzlHhLYSzF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.133 [XNIO-1 task-2] kAuXomSLTJOMTz2e1jY0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.134 [XNIO-1 task-2] kAuXomSLTJOMTz2e1jY0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.134 [XNIO-1 task-2] kAuXomSLTJOMTz2e1jY0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.134 [XNIO-1 task-2] kAuXomSLTJOMTz2e1jY0Yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.140 [XNIO-1 task-2] pXDQzT4zSIK2RMEz-gg9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.140 [XNIO-1 task-2] pXDQzT4zSIK2RMEz-gg9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.140 [XNIO-1 task-2] pXDQzT4zSIK2RMEz-gg9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.140 [XNIO-1 task-2] pXDQzT4zSIK2RMEz-gg9tQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.146 [XNIO-1 task-2] CP2WIzj1RGek760sWPHBog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.146 [XNIO-1 task-2] CP2WIzj1RGek760sWPHBog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.146 [XNIO-1 task-2] CP2WIzj1RGek760sWPHBog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.146 [XNIO-1 task-2] CP2WIzj1RGek760sWPHBog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.152 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6337db4 +18:11:09.153 [XNIO-1 task-2] ROFsWcdmS0iwU_31kfCyUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8274d881 +18:11:09.153 [XNIO-1 task-2] ROFsWcdmS0iwU_31kfCyUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.153 [XNIO-1 task-2] ROFsWcdmS0iwU_31kfCyUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.153 [XNIO-1 task-2] ROFsWcdmS0iwU_31kfCyUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8274d881 +18:11:09.178 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:31649c4b-2aed-42cc-a35c-862f1d61c47a +18:11:09.182 [XNIO-1 task-2] kdRagRCtSmqJ7TOPs2H71w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.182 [XNIO-1 task-2] kdRagRCtSmqJ7TOPs2H71w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.183 [XNIO-1 task-2] kdRagRCtSmqJ7TOPs2H71w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.183 [XNIO-1 task-2] kdRagRCtSmqJ7TOPs2H71w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.191 [XNIO-1 task-2] og3_0DgLQD-bSLKjnMVlyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:09.191 [XNIO-1 task-2] og3_0DgLQD-bSLKjnMVlyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.191 [XNIO-1 task-2] og3_0DgLQD-bSLKjnMVlyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.191 [XNIO-1 task-2] og3_0DgLQD-bSLKjnMVlyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69c033d2 +18:11:09.199 [XNIO-1 task-2] PSovgsYTS--8kuvsWlOd1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.200 [XNIO-1 task-2] PSovgsYTS--8kuvsWlOd1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.200 [XNIO-1 task-2] PSovgsYTS--8kuvsWlOd1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.200 [XNIO-1 task-2] PSovgsYTS--8kuvsWlOd1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.206 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "37988d41-d3b4-4b93-bdde-f849e266", {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.207 [XNIO-1 task-2] 4kJKxKblRGCz703WYHeNnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fc431656","serviceName":"37988d41-d3b4-4b93-bdde-f849e266","serviceDesc":"fb5fcebd-1116-4242-a0b6-2c48e3501461","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.213 [XNIO-1 task-2] VFTtpNKdSv-HBj92oJKx-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fc431656, base path is set to: null +18:11:09.214 [XNIO-1 task-2] VFTtpNKdSv-HBj92oJKx-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.214 [XNIO-1 task-2] VFTtpNKdSv-HBj92oJKx-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.214 [XNIO-1 task-2] VFTtpNKdSv-HBj92oJKx-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fc431656, base path is set to: null +18:11:09.214 [XNIO-1 task-2] VFTtpNKdSv-HBj92oJKx-g DEBUG com.networknt.schema.TypeValidator debug - validate( "fc431656", "fc431656", serviceId) +18:11:09.220 [XNIO-1 task-2] TXQjs9YsS72VFYgAOAggdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.220 [XNIO-1 task-2] TXQjs9YsS72VFYgAOAggdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.220 [XNIO-1 task-2] TXQjs9YsS72VFYgAOAggdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.221 [XNIO-1 task-2] TXQjs9YsS72VFYgAOAggdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.226 [XNIO-1 task-2] ukVEFHnuSQKGBNK9N3rLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eeb1a73b +18:11:09.226 [XNIO-1 task-2] ukVEFHnuSQKGBNK9N3rLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.226 [XNIO-1 task-2] ukVEFHnuSQKGBNK9N3rLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.227 [XNIO-1 task-2] ukVEFHnuSQKGBNK9N3rLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eeb1a73b +18:11:09.231 [XNIO-1 task-2] 4BlqJSfIQFCx3d1HfIHxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f84f835c, base path is set to: null +18:11:09.232 [XNIO-1 task-2] 4BlqJSfIQFCx3d1HfIHxRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.232 [XNIO-1 task-2] 4BlqJSfIQFCx3d1HfIHxRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.232 [XNIO-1 task-2] 4BlqJSfIQFCx3d1HfIHxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f84f835c, base path is set to: null +18:11:09.232 [XNIO-1 task-2] 4BlqJSfIQFCx3d1HfIHxRg DEBUG com.networknt.schema.TypeValidator debug - validate( "f84f835c", "f84f835c", serviceId) +18:11:09.233 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f84f835c +18:11:09.239 [XNIO-1 task-2] yr-XejvFSyOH5fbx607zRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.239 [XNIO-1 task-2] yr-XejvFSyOH5fbx607zRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.239 [XNIO-1 task-2] yr-XejvFSyOH5fbx607zRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.246 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6337db4 +18:11:09.246 [XNIO-1 task-2] zrVmLNyyTvCCMsggz48PyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.247 [XNIO-1 task-2] zrVmLNyyTvCCMsggz48PyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.247 [XNIO-1 task-2] zrVmLNyyTvCCMsggz48PyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.247 [XNIO-1 task-2] zrVmLNyyTvCCMsggz48PyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.252 [XNIO-1 task-2] VBU_qgAOSJi3xb3q1CjCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.253 [XNIO-1 task-2] VBU_qgAOSJi3xb3q1CjCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.253 [XNIO-1 task-2] VBU_qgAOSJi3xb3q1CjCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.253 [XNIO-1 task-2] VBU_qgAOSJi3xb3q1CjCBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.255 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6337db4 +18:11:09.258 [XNIO-1 task-2] j0nIK11ER0mNk8gJI7yHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bfdb423a +18:11:09.258 [XNIO-1 task-2] j0nIK11ER0mNk8gJI7yHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.258 [XNIO-1 task-2] j0nIK11ER0mNk8gJI7yHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.258 [XNIO-1 task-2] j0nIK11ER0mNk8gJI7yHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bfdb423a +18:11:09.260 [XNIO-1 task-2] fDu3NPHbStK6D-JPFvgekQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5f65f97, base path is set to: null +18:11:09.260 [XNIO-1 task-2] fDu3NPHbStK6D-JPFvgekQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.260 [XNIO-1 task-2] fDu3NPHbStK6D-JPFvgekQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.260 [XNIO-1 task-2] fDu3NPHbStK6D-JPFvgekQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5f65f97, base path is set to: null +18:11:09.260 [XNIO-1 task-2] fDu3NPHbStK6D-JPFvgekQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f65f97", "e5f65f97", serviceId) +18:11:09.261 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e5f65f97 +18:11:09.266 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.266 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.266 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.267 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.267 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.267 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG com.networknt.schema.TypeValidator debug - validate( "9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3", {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.267 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG com.networknt.schema.TypeValidator debug - validate( "55c93d02", {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.267 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.267 [XNIO-1 task-2] nJvL9kJZSNmx-z5LgVrgkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55c93d02","serviceName":"a155c902-6737-4f86-837c-2ff112eb","serviceDesc":"9b2e091a-5a5b-43cb-87cd-2421eb3dd5f3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.292 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.292 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.293 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.293 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.293 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.293 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG com.networknt.schema.TypeValidator debug - validate( "19f5e0bc-ef0e-4329-9597-9fe043dcedd4", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.293 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG com.networknt.schema.TypeValidator debug - validate( "7371ba7a", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.293 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.293 [XNIO-1 task-2] 0DQ6-IgNSsqfxcinad5wwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.368 [XNIO-1 task-2] vC2AEC86RCiJPF0fiqkiKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.368 [XNIO-1 task-2] vC2AEC86RCiJPF0fiqkiKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.368 [XNIO-1 task-2] vC2AEC86RCiJPF0fiqkiKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.369 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e07448cf +18:11:09.374 [XNIO-1 task-2] Qx6AjboBSwCQOWDcEQQ8ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.374 [XNIO-1 task-2] Qx6AjboBSwCQOWDcEQQ8ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.374 [XNIO-1 task-2] Qx6AjboBSwCQOWDcEQQ8ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.391 [XNIO-1 task-2] e6Xiy4TjRcSH_-veJrklyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.391 [XNIO-1 task-2] e6Xiy4TjRcSH_-veJrklyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.391 [XNIO-1 task-2] e6Xiy4TjRcSH_-veJrklyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.391 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:41a52a51 +18:11:09.392 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:41a52a51 +18:11:09.396 [XNIO-1 task-2] UlBnhCtpRUiAuxhcDqykEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.396 [XNIO-1 task-2] UlBnhCtpRUiAuxhcDqykEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.396 [XNIO-1 task-2] UlBnhCtpRUiAuxhcDqykEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.403 [XNIO-1 task-2] sUAX5_GfQBetUI6Rtk2Adg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/55c93d02 +18:11:09.403 [XNIO-1 task-2] sUAX5_GfQBetUI6Rtk2Adg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.403 [XNIO-1 task-2] sUAX5_GfQBetUI6Rtk2Adg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.403 [XNIO-1 task-2] sUAX5_GfQBetUI6Rtk2Adg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/55c93d02 +18:11:09.411 [XNIO-1 task-2] 7S09f1svS2Gm7545vdxeWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.411 [XNIO-1 task-2] 7S09f1svS2Gm7545vdxeWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.411 [XNIO-1 task-2] 7S09f1svS2Gm7545vdxeWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.411 [XNIO-1 task-2] 7S09f1svS2Gm7545vdxeWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.463 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:09.464 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.464 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.464 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.464 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.464 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.465 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.465 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.465 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG com.networknt.schema.TypeValidator debug - validate( "190e6421-f120-44ca-9c7e-02fc8a9a", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.465 [XNIO-1 task-2] LtcdFrHMQzKAKnzlgWbjag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.465 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e07448cf +18:11:09.471 [XNIO-1 task-2] cZIXW6lQS4qUaiLOlMB6SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.471 [XNIO-1 task-2] cZIXW6lQS4qUaiLOlMB6SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.471 [XNIO-1 task-2] cZIXW6lQS4qUaiLOlMB6SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.481 [XNIO-1 task-2] QVzLIw-QTlSudIUyhSrA0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.481 [XNIO-1 task-2] QVzLIw-QTlSudIUyhSrA0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.482 [XNIO-1 task-2] QVzLIw-QTlSudIUyhSrA0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "32e2528c-2431-4365-a78b-a8d50ac5", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.487 [XNIO-1 task-2] 1ivdhDeoSuiQstn9uC7KVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.488 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:09.496 [XNIO-1 task-2] jJ2Gvj7RTHK_IZwZ-VAdfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cff62f4a, base path is set to: null +18:11:09.496 [XNIO-1 task-2] jJ2Gvj7RTHK_IZwZ-VAdfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.496 [XNIO-1 task-2] jJ2Gvj7RTHK_IZwZ-VAdfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.496 [XNIO-1 task-2] jJ2Gvj7RTHK_IZwZ-VAdfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cff62f4a, base path is set to: null +18:11:09.496 [XNIO-1 task-2] jJ2Gvj7RTHK_IZwZ-VAdfg DEBUG com.networknt.schema.TypeValidator debug - validate( "cff62f4a", "cff62f4a", serviceId) +18:11:09.499 [XNIO-1 task-2] Rk3ELwSBRHmnCQFl0BmK9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41a52a51 +18:11:09.500 [XNIO-1 task-2] Rk3ELwSBRHmnCQFl0BmK9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.500 [XNIO-1 task-2] Rk3ELwSBRHmnCQFl0BmK9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.500 [XNIO-1 task-2] Rk3ELwSBRHmnCQFl0BmK9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41a52a51 +18:11:09.503 [XNIO-1 task-2] SAq-HgFcTie79jhvpNynYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cff62f4a, base path is set to: null +18:11:09.503 [XNIO-1 task-2] SAq-HgFcTie79jhvpNynYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.503 [XNIO-1 task-2] SAq-HgFcTie79jhvpNynYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.504 [XNIO-1 task-2] SAq-HgFcTie79jhvpNynYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cff62f4a, base path is set to: null +18:11:09.504 [XNIO-1 task-2] SAq-HgFcTie79jhvpNynYw DEBUG com.networknt.schema.TypeValidator debug - validate( "cff62f4a", "cff62f4a", serviceId) +18:11:09.514 [XNIO-1 task-2] CVzNhFMCTJ-KZy7lQzl3Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.514 [XNIO-1 task-2] CVzNhFMCTJ-KZy7lQzl3Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.514 [XNIO-1 task-2] CVzNhFMCTJ-KZy7lQzl3Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.522 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG com.networknt.schema.TypeValidator debug - validate( "60213604-da05-4ab9-b51f-5ac2b177", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.523 [XNIO-1 task-2] tf8VH4nRQk2rwD-9k_r7hA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.523 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:41a52a51 +18:11:09.528 [XNIO-1 task-2] ItapcbpYT8qtrYdZ24MqLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.528 [XNIO-1 task-2] ItapcbpYT8qtrYdZ24MqLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.528 [XNIO-1 task-2] ItapcbpYT8qtrYdZ24MqLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.528 [XNIO-1 task-2] ItapcbpYT8qtrYdZ24MqLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.530 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:09.535 [XNIO-1 task-2] 2-n3PzddRneQXNmXC8JE6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b71b9c9, base path is set to: null +18:11:09.535 [XNIO-1 task-2] 2-n3PzddRneQXNmXC8JE6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.535 [XNIO-1 task-2] 2-n3PzddRneQXNmXC8JE6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.535 [XNIO-1 task-2] 2-n3PzddRneQXNmXC8JE6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b71b9c9, base path is set to: null +18:11:09.535 [XNIO-1 task-2] 2-n3PzddRneQXNmXC8JE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3b71b9c9", "3b71b9c9", serviceId) +18:11:09.539 [XNIO-1 task-2] PNv3HlSSTRC_yJQVm3HqPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce035881 +18:11:09.539 [XNIO-1 task-2] PNv3HlSSTRC_yJQVm3HqPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.539 [XNIO-1 task-2] PNv3HlSSTRC_yJQVm3HqPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.539 [XNIO-1 task-2] PNv3HlSSTRC_yJQVm3HqPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce035881 +18:11:09.543 [XNIO-1 task-2] GbD6MN0bRuuc48swKwcX4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.543 [XNIO-1 task-2] GbD6MN0bRuuc48swKwcX4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.544 [XNIO-1 task-2] GbD6MN0bRuuc48swKwcX4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.557 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG com.networknt.schema.TypeValidator debug - validate( "60213604-da05-4ab9-b51f-5ac2b177", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.558 [XNIO-1 task-2] -IqxxdzHTCWAQGBLvu1J4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.559 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:41a52a51 +18:11:09.569 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.569 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.569 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.570 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.570 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.570 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.570 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.570 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d5d226f-b304-4814-97fc-260d234f", {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.570 [XNIO-1 task-2] jQfIvIO4SbWWEBlgUvf0sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.586 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.586 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.586 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.587 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.587 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.587 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.587 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.587 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "383786fd-9856-462c-9bf2-e544f02f", {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.587 [XNIO-1 task-2] KwxtsRaMRgWBZ1gW1-t-Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"904b7a35","serviceName":"383786fd-9856-462c-9bf2-e544f02f","serviceDesc":"27e4d9d9-0acf-4fa0-8eaa-fa2676e72745","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.587 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:904b7a35 +18:11:09.593 [XNIO-1 task-2] AdCpkdxAS7GOpDfMKlUvwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.594 [XNIO-1 task-2] AdCpkdxAS7GOpDfMKlUvwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.594 [XNIO-1 task-2] AdCpkdxAS7GOpDfMKlUvwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.595 [XNIO-1 task-2] AdCpkdxAS7GOpDfMKlUvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.600 [XNIO-1 task-2] RX4IOdIxQUugr0YZiutFcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.600 [XNIO-1 task-2] RX4IOdIxQUugr0YZiutFcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.600 [XNIO-1 task-2] RX4IOdIxQUugr0YZiutFcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.600 [XNIO-1 task-2] RX4IOdIxQUugr0YZiutFcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.605 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6337db4 +18:11:09.612 [XNIO-1 task-2] vbkZxaXVQe2Lsz_df55RmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce035881, base path is set to: null +18:11:09.612 [XNIO-1 task-2] vbkZxaXVQe2Lsz_df55RmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.612 [XNIO-1 task-2] vbkZxaXVQe2Lsz_df55RmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.612 [XNIO-1 task-2] vbkZxaXVQe2Lsz_df55RmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce035881, base path is set to: null +18:11:09.612 [XNIO-1 task-2] vbkZxaXVQe2Lsz_df55RmA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce035881", "ce035881", serviceId) +18:11:09.615 [XNIO-1 task-2] Jvf1beANTKifge7qw5nDhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.615 [XNIO-1 task-2] Jvf1beANTKifge7qw5nDhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.615 [XNIO-1 task-2] Jvf1beANTKifge7qw5nDhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.616 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e099a612 +18:11:09.616 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e099a612 +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "453e8cde-3f81-4958-9101-35b3e63915e1", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "41a52a51", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.626 [XNIO-1 task-2] 6Hf8WKLKRcmevarKjd9EAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.627 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:41a52a51 +18:11:09.634 [XNIO-1 task-2] VfOV_DWoTHavA1KrP3qGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.634 [XNIO-1 task-2] VfOV_DWoTHavA1KrP3qGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.634 [XNIO-1 task-2] VfOV_DWoTHavA1KrP3qGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.634 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ce5e71ee +18:11:09.641 [XNIO-1 task-2] xNUUJZ-cQSipmlJnb779UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b43419, base path is set to: null +18:11:09.642 [XNIO-1 task-2] xNUUJZ-cQSipmlJnb779UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.642 [XNIO-1 task-2] xNUUJZ-cQSipmlJnb779UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.642 [XNIO-1 task-2] xNUUJZ-cQSipmlJnb779UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b43419, base path is set to: null +18:11:09.642 [XNIO-1 task-2] xNUUJZ-cQSipmlJnb779UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5b43419", "e5b43419", serviceId) +18:11:09.652 [XNIO-1 task-2] Aj-UD8DQTdKkeJxOA1HW2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.652 [XNIO-1 task-2] Aj-UD8DQTdKkeJxOA1HW2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.652 [XNIO-1 task-2] Aj-UD8DQTdKkeJxOA1HW2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.657 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c15782af +18:11:09.659 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "758642ff-9fb1-4b48-8ffe-9f68f53d", {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.660 [XNIO-1 task-2] mJcA9hPqQCWICRLU-P8aTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7699d84b","serviceName":"758642ff-9fb1-4b48-8ffe-9f68f53d","serviceDesc":"95b0c428-43be-405e-8bba-21f28cdc9a95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.670 [XNIO-1 task-2] d7vO0y6sRH-gjRTFh9_0Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/51c6a9c6, base path is set to: null +18:11:09.670 [XNIO-1 task-2] d7vO0y6sRH-gjRTFh9_0Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.670 [XNIO-1 task-2] d7vO0y6sRH-gjRTFh9_0Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.670 [XNIO-1 task-2] d7vO0y6sRH-gjRTFh9_0Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/51c6a9c6, base path is set to: null +18:11:09.670 [XNIO-1 task-2] d7vO0y6sRH-gjRTFh9_0Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "51c6a9c6", "51c6a9c6", serviceId) +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c55504d-8453-4617-afd9-45c0db4c0eb0", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG com.networknt.schema.TypeValidator debug - validate( "51c6a9c6", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.674 [XNIO-1 task-2] WghNQdfSQ9C-6OYWzLNyqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"51c6a9c6","serviceName":"046dc85b-2ca3-4ef2-96c3-217afb52","serviceDesc":"4c55504d-8453-4617-afd9-45c0db4c0eb0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.675 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51c6a9c6 +18:11:09.682 [XNIO-1 task-2] lzlZKJWxRTWhlTEiQDPAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.683 [XNIO-1 task-2] lzlZKJWxRTWhlTEiQDPAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.683 [XNIO-1 task-2] lzlZKJWxRTWhlTEiQDPAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "92d65d0e-c907-4ea4-8b06-7f197b01d585", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "47e86f7c", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.689 [XNIO-1 task-2] XgtU7T_JRN-GVNHu0zsu5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.697 [XNIO-1 task-2] xruJx1d6S-ONTqD5k5zIbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.697 [XNIO-1 task-2] xruJx1d6S-ONTqD5k5zIbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.697 [XNIO-1 task-2] xruJx1d6S-ONTqD5k5zIbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.697 [XNIO-1 task-2] xruJx1d6S-ONTqD5k5zIbg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.703 [XNIO-1 task-2] ACX8Wb69TleBY9xj5R2B7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.703 [XNIO-1 task-2] ACX8Wb69TleBY9xj5R2B7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.703 [XNIO-1 task-2] ACX8Wb69TleBY9xj5R2B7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.711 [XNIO-1 task-2] I1Dwc4B5TuqjFOeHMd33vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.711 [XNIO-1 task-2] I1Dwc4B5TuqjFOeHMd33vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.711 [XNIO-1 task-2] I1Dwc4B5TuqjFOeHMd33vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.718 [XNIO-1 task-2] VKWZWAQZQPaNEb1W-HtELQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.718 [XNIO-1 task-2] VKWZWAQZQPaNEb1W-HtELQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.718 [XNIO-1 task-2] VKWZWAQZQPaNEb1W-HtELQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.718 [XNIO-1 task-2] VKWZWAQZQPaNEb1W-HtELQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.724 [XNIO-1 task-2] LnWPRzP9Q4Wouypnl9BhgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.724 [XNIO-1 task-2] LnWPRzP9Q4Wouypnl9BhgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.725 [XNIO-1 task-2] LnWPRzP9Q4Wouypnl9BhgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.725 [XNIO-1 task-2] LnWPRzP9Q4Wouypnl9BhgA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.732 [XNIO-1 task-2] OmxzdkXtTuGVcRgoBG0hDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.733 [XNIO-1 task-2] OmxzdkXtTuGVcRgoBG0hDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.733 [XNIO-1 task-2] OmxzdkXtTuGVcRgoBG0hDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.733 [XNIO-1 task-2] OmxzdkXtTuGVcRgoBG0hDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.737 [XNIO-1 task-2] MO4FN4ZpRjCSHIeQMhlj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7699d84b +18:11:09.737 [XNIO-1 task-2] MO4FN4ZpRjCSHIeQMhlj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.737 [XNIO-1 task-2] MO4FN4ZpRjCSHIeQMhlj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.737 [XNIO-1 task-2] MO4FN4ZpRjCSHIeQMhlj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7699d84b +18:11:09.740 [XNIO-1 task-2] 6TCwzfm6R-un3VEEf0Z1HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.740 [XNIO-1 task-2] 6TCwzfm6R-un3VEEf0Z1HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.740 [XNIO-1 task-2] 6TCwzfm6R-un3VEEf0Z1HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.740 [XNIO-1 task-2] 6TCwzfm6R-un3VEEf0Z1HA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.749 [XNIO-1 task-2] 44euybeMT4yHXDEtTc1mug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7699d84b, base path is set to: null +18:11:09.749 [XNIO-1 task-2] 44euybeMT4yHXDEtTc1mug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.749 [XNIO-1 task-2] 44euybeMT4yHXDEtTc1mug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.749 [XNIO-1 task-2] 44euybeMT4yHXDEtTc1mug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7699d84b, base path is set to: null +18:11:09.749 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c7f11f98-1aa1-46a2-98f6-589396af5a68 +18:11:09.750 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c7f11f98-1aa1-46a2-98f6-589396af5a68 +18:11:09.751 [XNIO-1 task-2] 8xYCmio-QXWl3fvrt0EdIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7699d84b, base path is set to: null +18:11:09.752 [XNIO-1 task-2] 8xYCmio-QXWl3fvrt0EdIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.752 [XNIO-1 task-2] 8xYCmio-QXWl3fvrt0EdIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.752 [XNIO-1 task-2] 8xYCmio-QXWl3fvrt0EdIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7699d84b, base path is set to: null +18:11:09.752 [XNIO-1 task-2] 8xYCmio-QXWl3fvrt0EdIA DEBUG com.networknt.schema.TypeValidator debug - validate( "7699d84b", "7699d84b", serviceId) +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG com.networknt.schema.TypeValidator debug - validate( "bcc6b143-dc63-447f-80df-7fe7c1f2c29a", {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG com.networknt.schema.TypeValidator debug - validate( "ff0ceac4", {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.764 [XNIO-1 task-2] VKQD46fFTfy1fCoaH-8xow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff0ceac4","serviceName":"b6e15a10-b63d-47e8-a0d6-effbc521","serviceDesc":"bcc6b143-dc63-447f-80df-7fe7c1f2c29a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.773 [XNIO-1 task-2] 2zS8qh9nRjK4yg-mK3uW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff0ceac4 +18:11:09.773 [XNIO-1 task-2] 2zS8qh9nRjK4yg-mK3uW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.773 [XNIO-1 task-2] 2zS8qh9nRjK4yg-mK3uW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.773 [XNIO-1 task-2] 2zS8qh9nRjK4yg-mK3uW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff0ceac4 +18:11:09.775 [XNIO-1 task-2] 4OhSGqR7Q3GxtcOsfyWYZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ff0ceac4, base path is set to: null +18:11:09.776 [XNIO-1 task-2] 4OhSGqR7Q3GxtcOsfyWYZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.776 [XNIO-1 task-2] 4OhSGqR7Q3GxtcOsfyWYZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.776 [XNIO-1 task-2] 4OhSGqR7Q3GxtcOsfyWYZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ff0ceac4, base path is set to: null +18:11:09.776 [XNIO-1 task-2] 4OhSGqR7Q3GxtcOsfyWYZg DEBUG com.networknt.schema.TypeValidator debug - validate( "ff0ceac4", "ff0ceac4", serviceId) +18:11:09.783 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.783 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.783 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.783 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.784 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.784 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "453e8cde-3f81-4958-9101-35b3e63915e1", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.784 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "41a52a51", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.784 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.784 [XNIO-1 task-2] jFWTlkIJRTiWMEq6aHo0Ow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41a52a51","serviceName":"60213604-da05-4ab9-b51f-5ac2b177","serviceDesc":"453e8cde-3f81-4958-9101-35b3e63915e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.784 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:41a52a51 +18:11:09.792 [XNIO-1 task-2] WO2UWtL6RA6jsZRmg2zS4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.792 [XNIO-1 task-2] WO2UWtL6RA6jsZRmg2zS4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.792 [XNIO-1 task-2] WO2UWtL6RA6jsZRmg2zS4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.792 [XNIO-1 task-2] WO2UWtL6RA6jsZRmg2zS4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.799 [XNIO-1 task-2] LwSzapHYQiq9yh85OlWQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.799 [XNIO-1 task-2] LwSzapHYQiq9yh85OlWQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.799 [XNIO-1 task-2] LwSzapHYQiq9yh85OlWQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.810 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c15782af +18:11:09.814 [XNIO-1 task-2] nfQID7gwS02ibr4ulFkXUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.814 [XNIO-1 task-2] nfQID7gwS02ibr4ulFkXUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.814 [XNIO-1 task-2] nfQID7gwS02ibr4ulFkXUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.814 [XNIO-1 task-2] nfQID7gwS02ibr4ulFkXUg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.823 [XNIO-1 task-2] ARBM4DPbRuiAZrFUy2KJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.823 [XNIO-1 task-2] ARBM4DPbRuiAZrFUy2KJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.823 [XNIO-1 task-2] ARBM4DPbRuiAZrFUy2KJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.829 [XNIO-1 task-2] y_2oncB8RgmL04ke_5L03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63f47fb2 +18:11:09.829 [XNIO-1 task-2] y_2oncB8RgmL04ke_5L03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.829 [XNIO-1 task-2] y_2oncB8RgmL04ke_5L03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.829 [XNIO-1 task-2] y_2oncB8RgmL04ke_5L03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63f47fb2 +18:11:09.829 [XNIO-1 task-2] y_2oncB8RgmL04ke_5L03A DEBUG com.networknt.schema.TypeValidator debug - validate( "63f47fb2", "63f47fb2", serviceId) +18:11:09.830 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c24505a6 +18:11:09.832 [XNIO-1 task-2] Y5NlP0dyQiyasUAU9cRgMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.832 [XNIO-1 task-2] Y5NlP0dyQiyasUAU9cRgMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.832 [XNIO-1 task-2] Y5NlP0dyQiyasUAU9cRgMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.840 [XNIO-1 task-2] S31H2CejRUuPbkULWzBDQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.840 [XNIO-1 task-2] S31H2CejRUuPbkULWzBDQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.841 [XNIO-1 task-2] S31H2CejRUuPbkULWzBDQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.841 [XNIO-1 task-2] S31H2CejRUuPbkULWzBDQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.844 [XNIO-1 task-2] h9m6zFCRRuKW4JoWjaO9eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.845 [XNIO-1 task-2] h9m6zFCRRuKW4JoWjaO9eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.845 [XNIO-1 task-2] h9m6zFCRRuKW4JoWjaO9eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.845 [XNIO-1 task-2] h9m6zFCRRuKW4JoWjaO9eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.849 [XNIO-1 task-2] zwfxwBDGSEqBQqKb_MOmdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/63f47fb2, base path is set to: null +18:11:09.850 [XNIO-1 task-2] zwfxwBDGSEqBQqKb_MOmdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.850 [XNIO-1 task-2] zwfxwBDGSEqBQqKb_MOmdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.850 [XNIO-1 task-2] zwfxwBDGSEqBQqKb_MOmdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/63f47fb2, base path is set to: null +18:11:09.850 [XNIO-1 task-2] zwfxwBDGSEqBQqKb_MOmdw DEBUG com.networknt.schema.TypeValidator debug - validate( "63f47fb2", "63f47fb2", serviceId) +18:11:09.854 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c15782af +18:11:09.855 [XNIO-1 task-2] 0s6fCSf4QHSVrKU58wSY3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.855 [XNIO-1 task-2] 0s6fCSf4QHSVrKU58wSY3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.855 [XNIO-1 task-2] 0s6fCSf4QHSVrKU58wSY3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.856 [XNIO-1 task-2] 0s6fCSf4QHSVrKU58wSY3w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.863 [XNIO-1 task-2] 4sEZan0OTXCKq8O8fsDHzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b71b9c9 +18:11:09.863 [XNIO-1 task-2] 4sEZan0OTXCKq8O8fsDHzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.863 [XNIO-1 task-2] 4sEZan0OTXCKq8O8fsDHzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.863 [XNIO-1 task-2] 4sEZan0OTXCKq8O8fsDHzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b71b9c9 +18:11:09.867 [XNIO-1 task-2] DPXBAZwSRJWMz_gpkt7PDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.867 [XNIO-1 task-2] DPXBAZwSRJWMz_gpkt7PDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.867 [XNIO-1 task-2] DPXBAZwSRJWMz_gpkt7PDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.867 [XNIO-1 task-2] DPXBAZwSRJWMz_gpkt7PDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.872 [XNIO-1 task-2] JeK1A9v1SbSdJZ_BNO4Tpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b71b9c9, base path is set to: null +18:11:09.872 [XNIO-1 task-2] JeK1A9v1SbSdJZ_BNO4Tpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.872 [XNIO-1 task-2] JeK1A9v1SbSdJZ_BNO4Tpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.872 [XNIO-1 task-2] JeK1A9v1SbSdJZ_BNO4Tpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b71b9c9, base path is set to: null +18:11:09.872 [XNIO-1 task-2] JeK1A9v1SbSdJZ_BNO4Tpg DEBUG com.networknt.schema.TypeValidator debug - validate( "3b71b9c9", "3b71b9c9", serviceId) +18:11:09.874 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.874 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.874 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.875 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.875 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.875 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG com.networknt.schema.TypeValidator debug - validate( "bccee0b3-a45a-473d-9f51-5604c784522a", {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:09.875 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG com.networknt.schema.TypeValidator debug - validate( "3b71b9c9", {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:09.875 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:09.875 [XNIO-1 task-2] 0Tgtwjk0Q_6A-4hu1hzQ9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b71b9c9","serviceName":"4d5d226f-b304-4814-97fc-260d234f","serviceDesc":"bccee0b3-a45a-473d-9f51-5604c784522a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.878 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c15782af +18:11:09.882 [XNIO-1 task-2] k68JCyQqQm6gUrqT-k_7Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/904b7a35 +18:11:09.882 [XNIO-1 task-2] k68JCyQqQm6gUrqT-k_7Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.882 [XNIO-1 task-2] k68JCyQqQm6gUrqT-k_7Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.883 [XNIO-1 task-2] k68JCyQqQm6gUrqT-k_7Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/904b7a35 +18:11:09.883 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:904b7a35 +18:11:09.885 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c15782af +18:11:09.887 [XNIO-1 task-2] IkYnxe08Sk2-t6jBqawhCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eeb1a73b +18:11:09.887 [XNIO-1 task-2] IkYnxe08Sk2-t6jBqawhCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.888 [XNIO-1 task-2] IkYnxe08Sk2-t6jBqawhCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.888 [XNIO-1 task-2] IkYnxe08Sk2-t6jBqawhCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eeb1a73b +18:11:09.896 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.896 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.897 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.897 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.897 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.897 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.897 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.897 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1a65d71e-bc96-4804-8549-ff090d8f", {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.897 [XNIO-1 task-2] qihd2JYwRBWlV_MPelqxqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c9d6cdcf","serviceName":"1a65d71e-bc96-4804-8549-ff090d8f","serviceDesc":"ae6d9bd8-234c-4094-a419-d54418acdf7c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.902 [XNIO-1 task-2] JbD17ehNRsePOa5vCOUryA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce5e71ee, base path is set to: null +18:11:09.903 [XNIO-1 task-2] JbD17ehNRsePOa5vCOUryA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.903 [XNIO-1 task-2] JbD17ehNRsePOa5vCOUryA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.903 [XNIO-1 task-2] JbD17ehNRsePOa5vCOUryA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce5e71ee, base path is set to: null +18:11:09.903 [XNIO-1 task-2] JbD17ehNRsePOa5vCOUryA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce5e71ee", "ce5e71ee", serviceId) +18:11:09.903 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ce5e71ee +18:11:09.905 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c24505a6 +18:11:09.908 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b3bcd9ef-3600-466a-b27a-1516cbdec35e +18:11:09.909 [XNIO-1 task-2] TI5nBU-zSJWXpkCN2uuMlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/452feeb6, base path is set to: null +18:11:09.910 [XNIO-1 task-2] TI5nBU-zSJWXpkCN2uuMlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.910 [XNIO-1 task-2] TI5nBU-zSJWXpkCN2uuMlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.910 [XNIO-1 task-2] TI5nBU-zSJWXpkCN2uuMlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/452feeb6, base path is set to: null +18:11:09.910 [XNIO-1 task-2] TI5nBU-zSJWXpkCN2uuMlA DEBUG com.networknt.schema.TypeValidator debug - validate( "452feeb6", "452feeb6", serviceId) +18:11:09.915 [XNIO-1 task-2] uvb286I4RIO8-DGHwYJk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.916 [XNIO-1 task-2] uvb286I4RIO8-DGHwYJk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.916 [XNIO-1 task-2] uvb286I4RIO8-DGHwYJk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.916 [XNIO-1 task-2] uvb286I4RIO8-DGHwYJk1w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.924 [XNIO-1 task-2] jJf-ZlWbQH29INa1mTpgPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7371ba7a +18:11:09.924 [XNIO-1 task-2] jJf-ZlWbQH29INa1mTpgPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.924 [XNIO-1 task-2] jJf-ZlWbQH29INa1mTpgPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:09.924 [XNIO-1 task-2] jJf-ZlWbQH29INa1mTpgPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7371ba7a +18:11:09.928 [XNIO-1 task-2] Sx4S3kCgThOMPic9lpiksQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.929 [XNIO-1 task-2] Sx4S3kCgThOMPic9lpiksQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.929 [XNIO-1 task-2] Sx4S3kCgThOMPic9lpiksQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.935 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.935 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.936 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.936 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.936 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.936 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.936 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.936 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "32e2528c-2431-4365-a78b-a8d50ac5", {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.937 [XNIO-1 task-2] YsucAyNPRWyWy9dcYBNIQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"452feeb6","serviceName":"32e2528c-2431-4365-a78b-a8d50ac5","serviceDesc":"79a11426-c3ac-49e8-9154-d9ae74af7e39","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.944 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c60ed4a9-5af3-45f0-87e0-75bd6caa", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.945 [XNIO-1 task-2] Gy3MccqvSUKamcsnQ6UvGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.954 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.954 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.954 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.955 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.955 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.955 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.955 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.955 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG com.networknt.schema.TypeValidator debug - validate( "f1f370d6-de6b-43de-9b5a-2a6ad9f0", {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.955 [XNIO-1 task-2] PJueRAHETnWo8f-4Ba0UVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.962 [XNIO-1 task-2] WiaPBupIQTuIuJ42RpKQUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.962 [XNIO-1 task-2] WiaPBupIQTuIuJ42RpKQUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.962 [XNIO-1 task-2] WiaPBupIQTuIuJ42RpKQUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.969 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.969 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.970 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.970 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.970 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.970 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:09.970 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:09.970 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c60ed4a9-5af3-45f0-87e0-75bd6caa", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:09.970 [XNIO-1 task-2] SSdX-oghQf6JxhVPrWexpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:09.979 [XNIO-1 task-2] p8HkGdstRRKiHSs73hsl5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.980 [XNIO-1 task-2] p8HkGdstRRKiHSs73hsl5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.980 [XNIO-1 task-2] p8HkGdstRRKiHSs73hsl5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:09.980 [XNIO-1 task-2] p8HkGdstRRKiHSs73hsl5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.988 [XNIO-1 task-2] KqMAaZOtRd-IytGHZu80Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/452feeb6, base path is set to: null +18:11:09.988 [XNIO-1 task-2] KqMAaZOtRd-IytGHZu80Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:09.988 [XNIO-1 task-2] KqMAaZOtRd-IytGHZu80Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:09.988 [XNIO-1 task-2] KqMAaZOtRd-IytGHZu80Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/452feeb6, base path is set to: null +18:11:09.988 [XNIO-1 task-2] KqMAaZOtRd-IytGHZu80Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "452feeb6", "452feeb6", serviceId) +18:11:09.995 [XNIO-1 task-2] x3kGYrA-RravCvWuzdHWmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.995 [XNIO-1 task-2] x3kGYrA-RravCvWuzdHWmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.995 [XNIO-1 task-2] x3kGYrA-RravCvWuzdHWmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:09.998 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c24505a6 +18:11:10.001 [XNIO-1 task-2] uH5gWmarTpG3ZvZ-KfwIkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.001 [XNIO-1 task-2] uH5gWmarTpG3ZvZ-KfwIkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.001 [XNIO-1 task-2] uH5gWmarTpG3ZvZ-KfwIkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.008 [XNIO-1 task-2] zZQ6b7Q-QGqk4KLfS3TazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.008 [XNIO-1 task-2] zZQ6b7Q-QGqk4KLfS3TazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.008 [XNIO-1 task-2] zZQ6b7Q-QGqk4KLfS3TazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.009 [XNIO-1 task-2] zZQ6b7Q-QGqk4KLfS3TazQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.020 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5c43a5f0 +18:11:10.021 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.021 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.022 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.022 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.022 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.022 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.022 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.022 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG com.networknt.schema.TypeValidator debug - validate( "f1f370d6-de6b-43de-9b5a-2a6ad9f0", {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.022 [XNIO-1 task-2] 5-LQSdcXTx2L_SgDT5qcrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd47e50","serviceName":"f1f370d6-de6b-43de-9b5a-2a6ad9f0","serviceDesc":"0d38739c-7e5f-4a37-947e-721004cb1f17","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.029 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.029 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.029 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.029 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.029 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.029 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.029 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.030 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG com.networknt.schema.TypeValidator debug - validate( "a050f6b0-6cc0-4cd7-bd12-ec0f2599", {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.030 [XNIO-1 task-2] M88likU0TZSym6Qv_hXQiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.034 [XNIO-1 task-2] aDu8m9zlSaC4A6b0T07A5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41a52a51, base path is set to: null +18:11:10.034 [XNIO-1 task-2] aDu8m9zlSaC4A6b0T07A5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.035 [XNIO-1 task-2] aDu8m9zlSaC4A6b0T07A5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.035 [XNIO-1 task-2] aDu8m9zlSaC4A6b0T07A5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41a52a51, base path is set to: null +18:11:10.035 [XNIO-1 task-2] aDu8m9zlSaC4A6b0T07A5g DEBUG com.networknt.schema.TypeValidator debug - validate( "41a52a51", "41a52a51", serviceId) +18:11:10.035 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:41a52a51 +18:11:10.040 [XNIO-1 task-2] LVfnqIWRQ7KY_WOhfY0bwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.041 [XNIO-1 task-2] LVfnqIWRQ7KY_WOhfY0bwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.041 [XNIO-1 task-2] LVfnqIWRQ7KY_WOhfY0bwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.041 [XNIO-1 task-2] LVfnqIWRQ7KY_WOhfY0bwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.053 [XNIO-1 task-2] W-9x3qKuRPGH-QX0A2k_qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.053 [XNIO-1 task-2] W-9x3qKuRPGH-QX0A2k_qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.054 [XNIO-1 task-2] W-9x3qKuRPGH-QX0A2k_qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.060 [XNIO-1 task-2] ZjpD7zRERfml7nfB5VrUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b71b9c9 +18:11:10.060 [XNIO-1 task-2] ZjpD7zRERfml7nfB5VrUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.060 [XNIO-1 task-2] ZjpD7zRERfml7nfB5VrUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.060 [XNIO-1 task-2] ZjpD7zRERfml7nfB5VrUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b71b9c9 +18:11:10.073 [XNIO-1 task-2] H4Igc2UPR9mzE-fg14Mlag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d86cfa2, base path is set to: null +18:11:10.074 [XNIO-1 task-2] H4Igc2UPR9mzE-fg14Mlag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.074 [XNIO-1 task-2] H4Igc2UPR9mzE-fg14Mlag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.074 [XNIO-1 task-2] H4Igc2UPR9mzE-fg14Mlag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d86cfa2, base path is set to: null +18:11:10.074 [XNIO-1 task-2] H4Igc2UPR9mzE-fg14Mlag DEBUG com.networknt.schema.TypeValidator debug - validate( "6d86cfa2", "6d86cfa2", serviceId) +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG com.networknt.schema.TypeValidator debug - validate( "c76e35e5-fb2c-498b-b7aa-2e931270953c", {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8389390", {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.081 [XNIO-1 task-2] MXLU8nlfRFCTLc89sMhEaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8389390","serviceName":"a050f6b0-6cc0-4cd7-bd12-ec0f2599","serviceDesc":"c76e35e5-fb2c-498b-b7aa-2e931270953c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.088 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.088 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.088 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.088 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.088 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.089 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "99319434-c965-4eac-a82d-e96c57198537", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.089 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "da56ed06", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.089 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.089 [XNIO-1 task-2] BES1VlmbQjuiyDLuxPBx5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.096 [XNIO-1 task-2] 11TFYxqHSXGBy6UoBNTYVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e099a612 +18:11:10.096 [XNIO-1 task-2] 11TFYxqHSXGBy6UoBNTYVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.096 [XNIO-1 task-2] 11TFYxqHSXGBy6UoBNTYVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.096 [XNIO-1 task-2] 11TFYxqHSXGBy6UoBNTYVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e099a612 +18:11:10.097 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d2269c6f-474c-4d5f-b640-b5c73c5fc722 +18:11:10.098 [XNIO-1 task-2] qxaS76blQVOoDEZD1-Lucw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8389390, base path is set to: null +18:11:10.098 [XNIO-1 task-2] qxaS76blQVOoDEZD1-Lucw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.098 [XNIO-1 task-2] qxaS76blQVOoDEZD1-Lucw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.098 [XNIO-1 task-2] qxaS76blQVOoDEZD1-Lucw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8389390, base path is set to: null +18:11:10.098 [XNIO-1 task-2] qxaS76blQVOoDEZD1-Lucw DEBUG com.networknt.schema.TypeValidator debug - validate( "a8389390", "a8389390", serviceId) +18:11:10.100 [XNIO-1 task-2] 6GWIVRMxR9Ob5JEAGAJlew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c2dcb0eb +18:11:10.100 [XNIO-1 task-2] 6GWIVRMxR9Ob5JEAGAJlew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.100 [XNIO-1 task-2] 6GWIVRMxR9Ob5JEAGAJlew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.100 [XNIO-1 task-2] 6GWIVRMxR9Ob5JEAGAJlew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c2dcb0eb +18:11:10.119 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.119 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.119 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.119 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.119 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.119 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.119 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.120 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e4077be4-a947-4100-8588-0c73c1d4", {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.120 [XNIO-1 task-2] f0f5HH5GSS-o6yqn8U1r_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"06cf4e3a","serviceName":"e4077be4-a947-4100-8588-0c73c1d4","serviceDesc":"4fb76c6a-96bf-43af-9388-7222432c2522","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.127 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.127 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.128 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.128 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.128 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.128 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.128 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.128 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG com.networknt.schema.TypeValidator debug - validate( "143c15bd-85a8-4a2a-9a0b-63be40c6", {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.128 [XNIO-1 task-2] wVy72VkRToGiWehcvLfhhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a9faf30b","serviceName":"143c15bd-85a8-4a2a-9a0b-63be40c6","serviceDesc":"7983a6f6-d349-4380-8e8a-edb8f9ccac04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.135 [XNIO-1 task-2] Co4ySFm8Sm-_t6MeAw3_Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06cf4e3a, base path is set to: null +18:11:10.136 [XNIO-1 task-2] Co4ySFm8Sm-_t6MeAw3_Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.136 [XNIO-1 task-2] Co4ySFm8Sm-_t6MeAw3_Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.136 [XNIO-1 task-2] Co4ySFm8Sm-_t6MeAw3_Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06cf4e3a, base path is set to: null +18:11:10.136 [XNIO-1 task-2] Co4ySFm8Sm-_t6MeAw3_Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "06cf4e3a", "06cf4e3a", serviceId) +18:11:10.144 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG com.networknt.schema.TypeValidator debug - validate( "de12fe9e-4a07-4354-a400-4cd0e5c1666d", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG com.networknt.schema.TypeValidator debug - validate( "e07448cf", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.145 [XNIO-1 task-2] lOILkSd8SBqz8kxki7M76g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.146 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e07448cf +18:11:10.180 [XNIO-1 task-2] GMkfVL3BRz6cW5h3-qgsQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.180 [XNIO-1 task-2] GMkfVL3BRz6cW5h3-qgsQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.180 [XNIO-1 task-2] GMkfVL3BRz6cW5h3-qgsQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.180 [XNIO-1 task-2] GMkfVL3BRz6cW5h3-qgsQw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.181 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5c43a5f0 +18:11:10.209 [XNIO-1 task-2] akAk7cdgQHWRpdLmMdExzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a9faf30b, base path is set to: null +18:11:10.209 [XNIO-1 task-2] akAk7cdgQHWRpdLmMdExzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.209 [XNIO-1 task-2] akAk7cdgQHWRpdLmMdExzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.209 [XNIO-1 task-2] akAk7cdgQHWRpdLmMdExzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a9faf30b, base path is set to: null +18:11:10.209 [XNIO-1 task-2] akAk7cdgQHWRpdLmMdExzA DEBUG com.networknt.schema.TypeValidator debug - validate( "a9faf30b", "a9faf30b", serviceId) +18:11:10.215 [XNIO-1 task-2] d-6N26-VQmaVB1ATWytYbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.215 [XNIO-1 task-2] d-6N26-VQmaVB1ATWytYbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.215 [XNIO-1 task-2] d-6N26-VQmaVB1ATWytYbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.216 [XNIO-1 task-2] d-6N26-VQmaVB1ATWytYbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.223 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.246 [XNIO-1 task-2] wpHsKkuTTXWhmpEW3NyXzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bfdb423a, base path is set to: null +18:11:10.246 [XNIO-1 task-2] wpHsKkuTTXWhmpEW3NyXzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.246 [XNIO-1 task-2] wpHsKkuTTXWhmpEW3NyXzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.246 [XNIO-1 task-2] wpHsKkuTTXWhmpEW3NyXzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bfdb423a, base path is set to: null +18:11:10.246 [XNIO-1 task-2] wpHsKkuTTXWhmpEW3NyXzw DEBUG com.networknt.schema.TypeValidator debug - validate( "bfdb423a", "bfdb423a", serviceId) +18:11:10.256 [XNIO-1 task-2] k8LRKcW3Q9uDxS30kcdx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.256 [XNIO-1 task-2] k8LRKcW3Q9uDxS30kcdx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.256 [XNIO-1 task-2] k8LRKcW3Q9uDxS30kcdx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.256 [XNIO-1 task-2] k8LRKcW3Q9uDxS30kcdx-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.300 [XNIO-1 task-2] SFQ9qLGXQx6m08tWsLxY2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.300 [XNIO-1 task-2] SFQ9qLGXQx6m08tWsLxY2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.301 [XNIO-1 task-2] SFQ9qLGXQx6m08tWsLxY2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.301 [XNIO-1 task-2] SFQ9qLGXQx6m08tWsLxY2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.407 [XNIO-1 task-2] _bI50VtBRU2uIhkaUivY6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.407 [XNIO-1 task-2] _bI50VtBRU2uIhkaUivY6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.407 [XNIO-1 task-2] _bI50VtBRU2uIhkaUivY6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.407 [XNIO-1 task-2] _bI50VtBRU2uIhkaUivY6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG com.networknt.schema.TypeValidator debug - validate( "22881cba-92c8-4973-92bb-8b5fb2071ffd", {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG com.networknt.schema.TypeValidator debug - validate( "e099a612", {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.461 [XNIO-1 task-2] 5w38JZK4QcKVxFo8hsJ3xA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e099a612","serviceName":"af3ad027-83ab-49c9-91b3-d20c7439","serviceDesc":"22881cba-92c8-4973-92bb-8b5fb2071ffd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.461 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e099a612 +18:11:10.464 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c6011434-758d-4b18-86ab-681535f3ca34 +18:11:10.473 [XNIO-1 task-2] uZlMjB2URFaTHIDJbOCvKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/51c6a9c6 +18:11:10.473 [XNIO-1 task-2] uZlMjB2URFaTHIDJbOCvKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.473 [XNIO-1 task-2] uZlMjB2URFaTHIDJbOCvKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.473 [XNIO-1 task-2] uZlMjB2URFaTHIDJbOCvKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/51c6a9c6 +18:11:10.473 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:51c6a9c6 +18:11:10.480 [XNIO-1 task-2] 2yTsFWE8QKuATz3x8l9C8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/47e86f7c, base path is set to: null +18:11:10.481 [XNIO-1 task-2] 2yTsFWE8QKuATz3x8l9C8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.481 [XNIO-1 task-2] 2yTsFWE8QKuATz3x8l9C8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.481 [XNIO-1 task-2] 2yTsFWE8QKuATz3x8l9C8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/47e86f7c, base path is set to: null +18:11:10.481 [XNIO-1 task-2] 2yTsFWE8QKuATz3x8l9C8w DEBUG com.networknt.schema.TypeValidator debug - validate( "47e86f7c", "47e86f7c", serviceId) +18:11:10.489 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.489 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.489 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.490 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.490 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.490 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.490 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.490 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG com.networknt.schema.TypeValidator debug - validate( "76de6b13-81a6-4b30-90e9-3813fc2a", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.490 [XNIO-1 task-2] NDjLmA9bQfWbmlXbutT1OA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.492 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e95fd1b5-52d3-4a01-8531-dfa8c8dbe410 +18:11:10.499 [XNIO-1 task-2] aCc0tr8YTUOTeHuVefTBKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.499 [XNIO-1 task-2] aCc0tr8YTUOTeHuVefTBKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.499 [XNIO-1 task-2] aCc0tr8YTUOTeHuVefTBKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.510 [XNIO-1 task-2] ry4r7T74TdOX9w_NstmKvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.511 [XNIO-1 task-2] ry4r7T74TdOX9w_NstmKvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.511 [XNIO-1 task-2] ry4r7T74TdOX9w_NstmKvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.521 [XNIO-1 task-2] TcBxQjO9TdmQ7wnEneme9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.521 [XNIO-1 task-2] TcBxQjO9TdmQ7wnEneme9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.522 [XNIO-1 task-2] TcBxQjO9TdmQ7wnEneme9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.530 [XNIO-1 task-2] 4nkE_shMSiOd1KjobALcvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.530 [XNIO-1 task-2] 4nkE_shMSiOd1KjobALcvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.530 [XNIO-1 task-2] 4nkE_shMSiOd1KjobALcvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.530 [XNIO-1 task-2] 4nkE_shMSiOd1KjobALcvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.542 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.542 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.542 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.542 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.543 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.543 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.543 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.543 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1a64ed-03e4-442b-8505-1f0f13bd", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.543 [XNIO-1 task-2] SypxBTtvTRS1mtgD1BAbJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.551 [XNIO-1 task-2] xpS0jetfQ3mFHMXU00sX1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4c0c9428, base path is set to: null +18:11:10.551 [XNIO-1 task-2] xpS0jetfQ3mFHMXU00sX1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.551 [XNIO-1 task-2] xpS0jetfQ3mFHMXU00sX1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.551 [XNIO-1 task-2] xpS0jetfQ3mFHMXU00sX1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4c0c9428, base path is set to: null +18:11:10.551 [XNIO-1 task-2] xpS0jetfQ3mFHMXU00sX1g DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0c9428", "4c0c9428", serviceId) +18:11:10.567 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.567 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.567 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.568 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.568 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.568 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f2ed4bc-22b3-4269-a579-1f7055d6a5d5", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.568 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eba1d0c6", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.568 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.568 [XNIO-1 task-2] O4X5EtR1ROOSTsFCaxdxPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.575 [XNIO-1 task-2] FCDBqHFyR2KKEdiZHvQr7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4cd47e50 +18:11:10.575 [XNIO-1 task-2] FCDBqHFyR2KKEdiZHvQr7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.575 [XNIO-1 task-2] FCDBqHFyR2KKEdiZHvQr7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.576 [XNIO-1 task-2] FCDBqHFyR2KKEdiZHvQr7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4cd47e50 +18:11:10.578 [XNIO-1 task-2] CbyCOxvyR72iraXkaXD9hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.578 [XNIO-1 task-2] CbyCOxvyR72iraXkaXD9hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.578 [XNIO-1 task-2] CbyCOxvyR72iraXkaXD9hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG com.networknt.schema.TypeValidator debug - validate( "c60ed4a9-5af3-45f0-87e0-75bd6caa", {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.591 [XNIO-1 task-2] N1GZtmTkRW-ZOPtZMoOYzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7371ba7a","serviceName":"c60ed4a9-5af3-45f0-87e0-75bd6caa","serviceDesc":"19f5e0bc-ef0e-4329-9597-9fe043dcedd4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.593 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1334764b-7ee3-477e-9013-1e6b54e1c22b +18:11:10.598 [XNIO-1 task-2] IAy0hjI-RGmWbNy6txM65Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/24e1f14c +18:11:10.599 [XNIO-1 task-2] IAy0hjI-RGmWbNy6txM65Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.599 [XNIO-1 task-2] IAy0hjI-RGmWbNy6txM65Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.599 [XNIO-1 task-2] IAy0hjI-RGmWbNy6txM65Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/24e1f14c +18:11:10.614 [XNIO-1 task-2] t6PGXddlSg6u_CmrsVOPyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/47e86f7c, base path is set to: null +18:11:10.614 [XNIO-1 task-2] t6PGXddlSg6u_CmrsVOPyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.614 [XNIO-1 task-2] t6PGXddlSg6u_CmrsVOPyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.614 [XNIO-1 task-2] t6PGXddlSg6u_CmrsVOPyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/47e86f7c, base path is set to: null +18:11:10.614 [XNIO-1 task-2] t6PGXddlSg6u_CmrsVOPyA DEBUG com.networknt.schema.TypeValidator debug - validate( "47e86f7c", "47e86f7c", serviceId) +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "128609d6-f6af-433a-84c2-b90bc79113d9", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "f973a38e", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.617 [XNIO-1 task-2] QFQNnepRQFKefRiEIKQ4aw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.622 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:544d5e96-ce30-468a-ab43-1c6b80b892d3 +18:11:10.623 [XNIO-1 task-2] GcovZ35lTeyhZZv8TJiOfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cd47e50, base path is set to: null +18:11:10.624 [XNIO-1 task-2] GcovZ35lTeyhZZv8TJiOfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.624 [XNIO-1 task-2] GcovZ35lTeyhZZv8TJiOfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.624 [XNIO-1 task-2] GcovZ35lTeyhZZv8TJiOfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cd47e50, base path is set to: null +18:11:10.624 [XNIO-1 task-2] GcovZ35lTeyhZZv8TJiOfg DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd47e50", "4cd47e50", serviceId) +18:11:10.628 [XNIO-1 task-2] e38qeRusRm25Z4GbRXbAVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce035881 +18:11:10.628 [XNIO-1 task-2] e38qeRusRm25Z4GbRXbAVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.628 [XNIO-1 task-2] e38qeRusRm25Z4GbRXbAVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.628 [XNIO-1 task-2] e38qeRusRm25Z4GbRXbAVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce035881 +18:11:10.636 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:544d5e96-ce30-468a-ab43-1c6b80b892d3 +18:11:10.638 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.638 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.639 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.639 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.639 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.639 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "92d65d0e-c907-4ea4-8b06-7f197b01d585", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.639 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "47e86f7c", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.639 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.639 [XNIO-1 task-2] dlFA1gbFSq2y5WIRGH1_Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.651 [XNIO-1 task-2] CQAppzSjTuCGeINSP9dUKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.651 [XNIO-1 task-2] CQAppzSjTuCGeINSP9dUKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.651 [XNIO-1 task-2] CQAppzSjTuCGeINSP9dUKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.651 [XNIO-1 task-2] CQAppzSjTuCGeINSP9dUKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.663 [XNIO-1 task-2] D3TPlMU6SqmZxHSQPpk5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.663 [XNIO-1 task-2] D3TPlMU6SqmZxHSQPpk5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.664 [XNIO-1 task-2] D3TPlMU6SqmZxHSQPpk5Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.664 [XNIO-1 task-2] D3TPlMU6SqmZxHSQPpk5Yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.675 [XNIO-1 task-2] LHRPb2wPSZGKFT3Q6ytlFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d4a94917 +18:11:10.675 [XNIO-1 task-2] LHRPb2wPSZGKFT3Q6ytlFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.675 [XNIO-1 task-2] LHRPb2wPSZGKFT3Q6ytlFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.675 [XNIO-1 task-2] LHRPb2wPSZGKFT3Q6ytlFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d4a94917 +18:11:10.685 [XNIO-1 task-2] rOxROu2GQMOFPwi93mrViA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.685 [XNIO-1 task-2] rOxROu2GQMOFPwi93mrViA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.685 [XNIO-1 task-2] rOxROu2GQMOFPwi93mrViA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.685 [XNIO-1 task-2] rOxROu2GQMOFPwi93mrViA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.704 [XNIO-1 task-2] 5poRXyCRSvywg4nWpY0r4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9f6279df, base path is set to: null +18:11:10.704 [XNIO-1 task-2] 5poRXyCRSvywg4nWpY0r4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.704 [XNIO-1 task-2] 5poRXyCRSvywg4nWpY0r4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.704 [XNIO-1 task-2] 5poRXyCRSvywg4nWpY0r4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9f6279df, base path is set to: null +18:11:10.704 [XNIO-1 task-2] 5poRXyCRSvywg4nWpY0r4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9f6279df", "9f6279df", serviceId) +18:11:10.710 [XNIO-1 task-2] JBJvWtWmRx210ut0Jtjb7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.711 [XNIO-1 task-2] JBJvWtWmRx210ut0Jtjb7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.711 [XNIO-1 task-2] JBJvWtWmRx210ut0Jtjb7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.711 [XNIO-1 task-2] JBJvWtWmRx210ut0Jtjb7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.719 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.719 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.719 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.720 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.720 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.720 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG com.networknt.schema.TypeValidator debug - validate( "71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5", {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.720 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG com.networknt.schema.TypeValidator debug - validate( "7aaa638a", {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.720 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.720 [XNIO-1 task-2] Dd0dsUTIR_aeKWa2qq471A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7aaa638a","serviceName":"5d753653-7426-48e6-9157-5c770643","serviceDesc":"71de7d1d-4700-4132-b0cf-d0b2d3f5f0a5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.728 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2a087689-95a4-4bb8-be84-e6bddbc66148", {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4621f262", {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.729 [XNIO-1 task-2] SSdiK9gsSEyZxnOapnlGIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4621f262","serviceName":"96c6d0cf-29f7-49f0-b6de-5e89711e","serviceDesc":"2a087689-95a4-4bb8-be84-e6bddbc66148","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.740 [XNIO-1 task-2] vw-qUTp4RPOQX6eo7QY7qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c9d6cdcf +18:11:10.741 [XNIO-1 task-2] vw-qUTp4RPOQX6eo7QY7qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.741 [XNIO-1 task-2] vw-qUTp4RPOQX6eo7QY7qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.741 [XNIO-1 task-2] vw-qUTp4RPOQX6eo7QY7qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c9d6cdcf +18:11:10.744 [XNIO-1 task-2] L7hLalvvTT2YsfcsDfRGZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.744 [XNIO-1 task-2] L7hLalvvTT2YsfcsDfRGZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.744 [XNIO-1 task-2] L7hLalvvTT2YsfcsDfRGZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.744 [XNIO-1 task-2] L7hLalvvTT2YsfcsDfRGZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.753 [XNIO-1 task-2] -N_a4O54R4KjbzpV-eKalw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.754 [XNIO-1 task-2] -N_a4O54R4KjbzpV-eKalw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.754 [XNIO-1 task-2] -N_a4O54R4KjbzpV-eKalw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.754 [XNIO-1 task-2] -N_a4O54R4KjbzpV-eKalw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.768 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.768 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.769 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.769 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.769 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.769 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.770 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:10.770 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG com.networknt.schema.TypeValidator debug - validate( "871ab635-6d7f-4dcf-aa23-a213d19b", {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:10.770 [XNIO-1 task-2] BzUeM9TfSKqVA5NHFE4cgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.778 [XNIO-1 task-2] bOcMbefcT0SGXRbreGEFpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c9d6cdcf, base path is set to: null +18:11:10.779 [XNIO-1 task-2] bOcMbefcT0SGXRbreGEFpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.779 [XNIO-1 task-2] bOcMbefcT0SGXRbreGEFpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.779 [XNIO-1 task-2] bOcMbefcT0SGXRbreGEFpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c9d6cdcf, base path is set to: null +18:11:10.779 [XNIO-1 task-2] bOcMbefcT0SGXRbreGEFpw DEBUG com.networknt.schema.TypeValidator debug - validate( "c9d6cdcf", "c9d6cdcf", serviceId) +18:11:10.789 [XNIO-1 task-2] jEEHNFrXSkGtajphJ_oENw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.789 [XNIO-1 task-2] jEEHNFrXSkGtajphJ_oENw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.789 [XNIO-1 task-2] jEEHNFrXSkGtajphJ_oENw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.802 [XNIO-1 task-2] vXkSnTtWS1KGprqSpdg6eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7666eb5, base path is set to: null +18:11:10.802 [XNIO-1 task-2] vXkSnTtWS1KGprqSpdg6eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.802 [XNIO-1 task-2] vXkSnTtWS1KGprqSpdg6eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.802 [XNIO-1 task-2] vXkSnTtWS1KGprqSpdg6eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7666eb5, base path is set to: null +18:11:10.802 [XNIO-1 task-2] vXkSnTtWS1KGprqSpdg6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "b7666eb5", "b7666eb5", serviceId) +18:11:10.806 [XNIO-1 task-2] DTjySuRGRZiHTicG6ZUFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.806 [XNIO-1 task-2] DTjySuRGRZiHTicG6ZUFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.806 [XNIO-1 task-2] DTjySuRGRZiHTicG6ZUFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.806 [XNIO-1 task-2] DTjySuRGRZiHTicG6ZUFYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.880 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.880 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.881 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.881 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.881 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.881 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e5a2423-a36f-48bf-9b1a-1a30dac6f04b", {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.881 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG com.networknt.schema.TypeValidator debug - validate( "b7666eb5", {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.881 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.881 [XNIO-1 task-2] 2y7ohxaNTBC598d-sCbENw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7666eb5","serviceName":"c3dcf083-3c0a-4ad3-a096-560ee19c","serviceDesc":"3e5a2423-a36f-48bf-9b1a-1a30dac6f04b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.894 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.894 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.894 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.895 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.895 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:10.895 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de12fe9e-4a07-4354-a400-4cd0e5c1666d", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:10.895 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e07448cf", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:10.895 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:10.895 [XNIO-1 task-2] vtNpEJanQo6vk_RkKTdHFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:10.895 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e07448cf +18:11:10.904 [XNIO-1 task-2] u_IMbGoCSyODEBIOQ5OhQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.904 [XNIO-1 task-2] u_IMbGoCSyODEBIOQ5OhQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.904 [XNIO-1 task-2] u_IMbGoCSyODEBIOQ5OhQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.909 [XNIO-1 task-2] gJIWgaQQRxWBA7sGyONzMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.909 [XNIO-1 task-2] gJIWgaQQRxWBA7sGyONzMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.909 [XNIO-1 task-2] gJIWgaQQRxWBA7sGyONzMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.909 [XNIO-1 task-2] gJIWgaQQRxWBA7sGyONzMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.920 [XNIO-1 task-2] V0Aj6-G7Q9Ko7nqg2Ec6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/03e39e1c +18:11:10.921 [XNIO-1 task-2] V0Aj6-G7Q9Ko7nqg2Ec6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.921 [XNIO-1 task-2] V0Aj6-G7Q9Ko7nqg2Ec6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.921 [XNIO-1 task-2] V0Aj6-G7Q9Ko7nqg2Ec6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/03e39e1c +18:11:10.929 [XNIO-1 task-2] GoE5yIxvQJGXFFWf-Cuppw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.929 [XNIO-1 task-2] GoE5yIxvQJGXFFWf-Cuppw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.929 [XNIO-1 task-2] GoE5yIxvQJGXFFWf-Cuppw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.944 [XNIO-1 task-2] nfParoBlTs-ChmlRPqpZXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.944 [XNIO-1 task-2] nfParoBlTs-ChmlRPqpZXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.944 [XNIO-1 task-2] nfParoBlTs-ChmlRPqpZXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:10.944 [XNIO-1 task-2] nfParoBlTs-ChmlRPqpZXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.953 [XNIO-1 task-2] _NGPmy30Tq6turB-Sw8f5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/03e39e1c, base path is set to: null +18:11:10.954 [XNIO-1 task-2] _NGPmy30Tq6turB-Sw8f5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.954 [XNIO-1 task-2] _NGPmy30Tq6turB-Sw8f5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.954 [XNIO-1 task-2] _NGPmy30Tq6turB-Sw8f5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/03e39e1c, base path is set to: null +18:11:10.954 [XNIO-1 task-2] _NGPmy30Tq6turB-Sw8f5A DEBUG com.networknt.schema.TypeValidator debug - validate( "03e39e1c", "03e39e1c", serviceId) +18:11:10.967 [XNIO-1 task-2] qZha3YVsRmmk5PUujNtZPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7371ba7a +18:11:10.967 [XNIO-1 task-2] qZha3YVsRmmk5PUujNtZPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.967 [XNIO-1 task-2] qZha3YVsRmmk5PUujNtZPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:10.968 [XNIO-1 task-2] qZha3YVsRmmk5PUujNtZPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7371ba7a +18:11:10.977 [XNIO-1 task-2] Qo5uB-V1RTuc9fjMW4toBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7aaa638a, base path is set to: null +18:11:10.977 [XNIO-1 task-2] Qo5uB-V1RTuc9fjMW4toBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:10.977 [XNIO-1 task-2] Qo5uB-V1RTuc9fjMW4toBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:10.977 [XNIO-1 task-2] Qo5uB-V1RTuc9fjMW4toBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7aaa638a, base path is set to: null +18:11:10.977 [XNIO-1 task-2] Qo5uB-V1RTuc9fjMW4toBw DEBUG com.networknt.schema.TypeValidator debug - validate( "7aaa638a", "7aaa638a", serviceId) +18:11:10.985 [XNIO-1 task-2] MJM6Z86oRZig_l47x03K0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.985 [XNIO-1 task-2] MJM6Z86oRZig_l47x03K0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.985 [XNIO-1 task-2] MJM6Z86oRZig_l47x03K0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.985 [XNIO-1 task-2] MJM6Z86oRZig_l47x03K0g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.997 [XNIO-1 task-2] sFRgSFJOSJGPvQ8DiX4HYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.997 [XNIO-1 task-2] sFRgSFJOSJGPvQ8DiX4HYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.997 [XNIO-1 task-2] sFRgSFJOSJGPvQ8DiX4HYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:10.998 [XNIO-1 task-2] sFRgSFJOSJGPvQ8DiX4HYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.006 [XNIO-1 task-2] 1DqpB28cQHmFVdesMmmaGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.006 [XNIO-1 task-2] 1DqpB28cQHmFVdesMmmaGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.006 [XNIO-1 task-2] 1DqpB28cQHmFVdesMmmaGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.006 [XNIO-1 task-2] 1DqpB28cQHmFVdesMmmaGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.015 [XNIO-1 task-2] 0fSUq7KKRQGUh0oTMmbiIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.015 [XNIO-1 task-2] 0fSUq7KKRQGUh0oTMmbiIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.015 [XNIO-1 task-2] 0fSUq7KKRQGUh0oTMmbiIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.015 [XNIO-1 task-2] 0fSUq7KKRQGUh0oTMmbiIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.025 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.025 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.025 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.025 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.026 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:11.026 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG com.networknt.schema.TypeValidator debug - validate( "da42854b-d492-4132-a1b0-ee37236a2b79", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:11.026 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG com.networknt.schema.TypeValidator debug - validate( "cf658fad", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:11.026 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:11.026 [XNIO-1 task-2] g-vf2In0Twmd3iri6ykegA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.035 [XNIO-1 task-2] BWGpAR5WR7euaxAh7z0GdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.035 [XNIO-1 task-2] BWGpAR5WR7euaxAh7z0GdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.035 [XNIO-1 task-2] BWGpAR5WR7euaxAh7z0GdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.036 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ea7720ce +18:11:11.041 [XNIO-1 task-2] 8TAEeVa1SjKWZBSPsSY-lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.041 [XNIO-1 task-2] 8TAEeVa1SjKWZBSPsSY-lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.041 [XNIO-1 task-2] 8TAEeVa1SjKWZBSPsSY-lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.041 [XNIO-1 task-2] 8TAEeVa1SjKWZBSPsSY-lg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.053 [XNIO-1 task-2] P1J67EbhTL-7UjXp4eXPBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.053 [XNIO-1 task-2] P1J67EbhTL-7UjXp4eXPBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.053 [XNIO-1 task-2] P1J67EbhTL-7UjXp4eXPBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.066 [XNIO-1 task-2] B8qNmFprScO7ZHBZnTQb-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7aaa638a, base path is set to: null +18:11:11.066 [XNIO-1 task-2] B8qNmFprScO7ZHBZnTQb-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.067 [XNIO-1 task-2] B8qNmFprScO7ZHBZnTQb-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:11.067 [XNIO-1 task-2] B8qNmFprScO7ZHBZnTQb-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7aaa638a, base path is set to: null +18:11:11.067 [XNIO-1 task-2] B8qNmFprScO7ZHBZnTQb-A DEBUG com.networknt.schema.TypeValidator debug - validate( "7aaa638a", "7aaa638a", serviceId) +18:11:11.080 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cdbc22ce-2cbd-4740-82b4-9b015acb2319 +18:11:11.083 [XNIO-1 task-2] Us16Z7tqRU6kZc69zC6OkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.083 [XNIO-1 task-2] Us16Z7tqRU6kZc69zC6OkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.083 [XNIO-1 task-2] Us16Z7tqRU6kZc69zC6OkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.083 [XNIO-1 task-2] Us16Z7tqRU6kZc69zC6OkA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.092 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:cdbc22ce-2cbd-4740-82b4-9b015acb2319 +18:11:11.094 [XNIO-1 task-2] hnroIYJEQZCNePouXSwGZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.094 [XNIO-1 task-2] hnroIYJEQZCNePouXSwGZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.095 [XNIO-1 task-2] hnroIYJEQZCNePouXSwGZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.101 [XNIO-1 task-2] T0Ceu4egS7yYfDCv-wiFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0c476905 +18:11:11.101 [XNIO-1 task-2] T0Ceu4egS7yYfDCv-wiFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.101 [XNIO-1 task-2] T0Ceu4egS7yYfDCv-wiFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:11.101 [XNIO-1 task-2] T0Ceu4egS7yYfDCv-wiFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0c476905 +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG com.networknt.schema.TypeValidator debug - validate( "0186d077-f36e-4d29-bcff-d06832bc", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:11.114 [XNIO-1 task-2] y7ANBi_uSWygCo-iI0KEtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.124 [XNIO-1 task-2] 2sDLz9IiQmiQBYxe0qCmiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.124 [XNIO-1 task-2] 2sDLz9IiQmiQBYxe0qCmiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.124 [XNIO-1 task-2] 2sDLz9IiQmiQBYxe0qCmiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.131 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2a8dc95e-5b5f-44c2-adcd-405b57164ac9 +18:11:11.133 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2a8dc95e-5b5f-44c2-adcd-405b57164ac9 +18:11:11.135 [XNIO-1 task-2] y7v09VViRlineJZ0uchcXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e4dca7d +18:11:11.135 [XNIO-1 task-2] y7v09VViRlineJZ0uchcXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.135 [XNIO-1 task-2] y7v09VViRlineJZ0uchcXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:11.135 [XNIO-1 task-2] y7v09VViRlineJZ0uchcXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e4dca7d +18:11:11.158 [XNIO-1 task-2] T7py0tL4Qa-OrUYQsGE8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.158 [XNIO-1 task-2] T7py0tL4Qa-OrUYQsGE8dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.158 [XNIO-1 task-2] T7py0tL4Qa-OrUYQsGE8dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.158 [XNIO-1 task-2] T7py0tL4Qa-OrUYQsGE8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.181 [XNIO-1 task-2] n3xJeRgZStaz3211ltUTpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/394f998e, base path is set to: null +18:11:11.181 [XNIO-1 task-2] n3xJeRgZStaz3211ltUTpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.181 [XNIO-1 task-2] n3xJeRgZStaz3211ltUTpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:11.181 [XNIO-1 task-2] n3xJeRgZStaz3211ltUTpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/394f998e, base path is set to: null +18:11:11.181 [XNIO-1 task-2] n3xJeRgZStaz3211ltUTpA DEBUG com.networknt.schema.TypeValidator debug - validate( "394f998e", "394f998e", serviceId) +18:11:11.207 [XNIO-1 task-2] moMIkXBgQ4-U1_oU2nPUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/394f998e +18:11:11.207 [XNIO-1 task-2] moMIkXBgQ4-U1_oU2nPUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.207 [XNIO-1 task-2] moMIkXBgQ4-U1_oU2nPUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:11.207 [XNIO-1 task-2] moMIkXBgQ4-U1_oU2nPUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/394f998e +18:11:11.238 [XNIO-1 task-2] usblIAzjQRmKDaspZ1njYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e099a612, base path is set to: null +18:11:11.238 [XNIO-1 task-2] usblIAzjQRmKDaspZ1njYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.238 [XNIO-1 task-2] usblIAzjQRmKDaspZ1njYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:11.238 [XNIO-1 task-2] usblIAzjQRmKDaspZ1njYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e099a612, base path is set to: null +18:11:11.238 [XNIO-1 task-2] usblIAzjQRmKDaspZ1njYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e099a612", "e099a612", serviceId) +18:11:11.239 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e099a612 +18:11:11.243 [XNIO-1 task-2] Bu4J7V9VStmlNFzUV_TEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05ae7978 +18:11:11.243 [XNIO-1 task-2] Bu4J7V9VStmlNFzUV_TEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:11.243 [XNIO-1 task-2] Bu4J7V9VStmlNFzUV_TEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:11.243 [XNIO-1 task-2] Bu4J7V9VStmlNFzUV_TEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05ae7978 +18:11:11.269 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.269 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.269 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.269 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.269 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.269 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:11.269 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:11.270 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG com.networknt.schema.TypeValidator debug - validate( "159fe844-38fb-4d9d-bb3f-9c485038", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:11.270 [XNIO-1 task-2] 7RFg6oqLS-SvJaFm6bIUWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.363 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1a64ed-03e4-442b-8505-1f0f13bd", {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:11.364 [XNIO-1 task-2] JRr17ZPeQfGbiLLQqUt3zA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47e86f7c","serviceName":"7e1a64ed-03e4-442b-8505-1f0f13bd","serviceDesc":"92d65d0e-c907-4ea4-8b06-7f197b01d585","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.368 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:296432ff-2298-4b44-9583-9810b4de6588 +18:11:11.375 [XNIO-1 task-2] oF3J0ecYRyijkN_tkIyJKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.375 [XNIO-1 task-2] oF3J0ecYRyijkN_tkIyJKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.375 [XNIO-1 task-2] oF3J0ecYRyijkN_tkIyJKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.375 [XNIO-1 task-2] oF3J0ecYRyijkN_tkIyJKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.384 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.384 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:11.384 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:11.384 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.384 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.384 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:11.384 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:11.385 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG com.networknt.schema.TypeValidator debug - validate( "9c54173c-638b-47bb-95c3-d59f632a", {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:11.385 [XNIO-1 task-2] J0M5u6tgSWW5Jl1YLbWzWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9f6279df","serviceName":"9c54173c-638b-47bb-95c3-d59f632a","serviceDesc":"4803144e-a6f5-4f58-9d1b-27a3d5783416","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:11.521 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.540 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2858e9db-3f0d-4bd2-9e01-9a634d0ee508 +18:11:11.601 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:734cef1c +18:11:11.602 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:734cef1c +18:11:13.504 [XNIO-1 task-2] 5hPIil2RQjaDQAzLifayxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.504 [XNIO-1 task-2] 5hPIil2RQjaDQAzLifayxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.504 [XNIO-1 task-2] 5hPIil2RQjaDQAzLifayxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.521 [XNIO-1 task-2] onakeSWbQ5O7pwVuth5iqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8389390 +18:11:13.521 [XNIO-1 task-2] onakeSWbQ5O7pwVuth5iqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.521 [XNIO-1 task-2] onakeSWbQ5O7pwVuth5iqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.521 [XNIO-1 task-2] onakeSWbQ5O7pwVuth5iqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8389390 +18:11:13.525 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:734cef1c +18:11:13.531 [XNIO-1 task-2] H6UXVOGDQueWu-Wpr24cJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.532 [XNIO-1 task-2] H6UXVOGDQueWu-Wpr24cJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.532 [XNIO-1 task-2] H6UXVOGDQueWu-Wpr24cJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.532 [XNIO-1 task-2] H6UXVOGDQueWu-Wpr24cJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:13.540 [XNIO-1 task-2] MtuB_scuTL-L9vn9qUmeCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.540 [XNIO-1 task-2] MtuB_scuTL-L9vn9qUmeCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.540 [XNIO-1 task-2] MtuB_scuTL-L9vn9qUmeCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.540 [XNIO-1 task-2] MtuB_scuTL-L9vn9qUmeCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG com.networknt.schema.TypeValidator debug - validate( "99319434-c965-4eac-a82d-e96c57198537", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG com.networknt.schema.TypeValidator debug - validate( "da56ed06", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:13.559 [XNIO-1 task-2] VMZuLLlnT7uxFYhRpFUBrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da56ed06","serviceName":"76de6b13-81a6-4b30-90e9-3813fc2a","serviceDesc":"99319434-c965-4eac-a82d-e96c57198537","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.574 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.574 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.574 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.575 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.575 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.575 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG com.networknt.schema.TypeValidator debug - validate( "22c75d62-e982-4422-a859-d7c753474b7b", {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:13.575 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f435e40", {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:13.575 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:13.575 [XNIO-1 task-2] wpycrd4DQzWHp5qUFNwuZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.587 [XNIO-1 task-2] mulVDjTqQRu3zW1u54HzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9f6279df +18:11:13.587 [XNIO-1 task-2] mulVDjTqQRu3zW1u54HzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.587 [XNIO-1 task-2] mulVDjTqQRu3zW1u54HzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.587 [XNIO-1 task-2] mulVDjTqQRu3zW1u54HzMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9f6279df +18:11:13.597 [XNIO-1 task-2] BQjjJQooQIukkvvsBYTtAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/47e86f7c, base path is set to: null +18:11:13.597 [XNIO-1 task-2] BQjjJQooQIukkvvsBYTtAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.597 [XNIO-1 task-2] BQjjJQooQIukkvvsBYTtAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.597 [XNIO-1 task-2] BQjjJQooQIukkvvsBYTtAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/47e86f7c, base path is set to: null +18:11:13.598 [XNIO-1 task-2] BQjjJQooQIukkvvsBYTtAA DEBUG com.networknt.schema.TypeValidator debug - validate( "47e86f7c", "47e86f7c", serviceId) +18:11:13.607 [XNIO-1 task-2] cPT-aLiBTC20tP2xN2-48g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.607 [XNIO-1 task-2] cPT-aLiBTC20tP2xN2-48g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.607 [XNIO-1 task-2] cPT-aLiBTC20tP2xN2-48g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.609 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:33b46ac9-94ce-4b45-bddd-8e6345a5c120 +18:11:13.620 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.620 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.620 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.621 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.621 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.621 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.621 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:13.621 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG com.networknt.schema.TypeValidator debug - validate( "65bc7444-a23b-4093-b35c-a53503c3", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:13.621 [XNIO-1 task-2] F6UCMTuLRxWV1gM1cvB6vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.622 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:885592c0 +18:11:13.624 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:885592c0 +18:11:13.635 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.635 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.635 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.636 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.636 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.636 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG com.networknt.schema.TypeValidator debug - validate( "da42854b-d492-4132-a1b0-ee37236a2b79", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:13.636 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG com.networknt.schema.TypeValidator debug - validate( "cf658fad", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:13.636 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:13.636 [XNIO-1 task-2] IkYB-4MWTeqsbL0iheZaBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cf658fad","serviceName":"06b3f40d-91c1-401a-82da-167af157","serviceDesc":"da42854b-d492-4132-a1b0-ee37236a2b79","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.648 [XNIO-1 task-2] Z9XUxIbvRqCn0hvmVVrVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f973a38e +18:11:13.648 [XNIO-1 task-2] Z9XUxIbvRqCn0hvmVVrVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.648 [XNIO-1 task-2] Z9XUxIbvRqCn0hvmVVrVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.648 [XNIO-1 task-2] Z9XUxIbvRqCn0hvmVVrVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f973a38e +18:11:13.653 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG com.networknt.schema.TypeValidator debug - validate( "65bc7444-a23b-4093-b35c-a53503c3", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:13.654 [XNIO-1 task-2] lUN78aZIQaKAz2wiqHs0UA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.661 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.662 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.662 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.662 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.663 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.663 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.663 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:13.663 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG com.networknt.schema.TypeValidator debug - validate( "65bc7444-a23b-4093-b35c-a53503c3", {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:13.663 [XNIO-1 task-2] Sk_gHOe6R-221PEDuOSnzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f973a38e","serviceName":"65bc7444-a23b-4093-b35c-a53503c3","serviceDesc":"128609d6-f6af-433a-84c2-b90bc79113d9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.679 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "190e6421-f120-44ca-9c7e-02fc8a9a", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:13.680 [XNIO-1 task-2] 7MrkB0sbQz-AowKaOLCaIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.680 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e07448cf +18:11:13.687 [XNIO-1 task-2] cvR38TcdS-yH4ieBUf0cKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.688 [XNIO-1 task-2] cvR38TcdS-yH4ieBUf0cKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.688 [XNIO-1 task-2] cvR38TcdS-yH4ieBUf0cKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.692 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:885592c0 +18:11:13.696 [XNIO-1 task-2] OAeSSRaFRKG_oFelmRb3cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.696 [XNIO-1 task-2] OAeSSRaFRKG_oFelmRb3cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.696 [XNIO-1 task-2] OAeSSRaFRKG_oFelmRb3cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.704 [XNIO-1 task-2] -v7B2ssZQi-hwjJzZhPnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.704 [XNIO-1 task-2] -v7B2ssZQi-hwjJzZhPnew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.705 [XNIO-1 task-2] -v7B2ssZQi-hwjJzZhPnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.713 [XNIO-1 task-2] yvAaWbvhQvSTBNPjhqCLCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.713 [XNIO-1 task-2] yvAaWbvhQvSTBNPjhqCLCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.713 [XNIO-1 task-2] yvAaWbvhQvSTBNPjhqCLCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.713 [XNIO-1 task-2] yvAaWbvhQvSTBNPjhqCLCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.724 [XNIO-1 task-2] ZAlLyzk-SlCSHYWVSRFBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/505a1577, base path is set to: null +18:11:13.724 [XNIO-1 task-2] ZAlLyzk-SlCSHYWVSRFBsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.724 [XNIO-1 task-2] ZAlLyzk-SlCSHYWVSRFBsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.724 [XNIO-1 task-2] ZAlLyzk-SlCSHYWVSRFBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/505a1577, base path is set to: null +18:11:13.724 [XNIO-1 task-2] ZAlLyzk-SlCSHYWVSRFBsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "505a1577", "505a1577", serviceId) +18:11:13.724 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:885592c0 +18:11:13.725 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f23715e6-83a4-42b9-9b2d-878bd5a9e254 +18:11:13.737 [XNIO-1 task-2] -f2CvihiT_uy0HVL6S_JzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.737 [XNIO-1 task-2] -f2CvihiT_uy0HVL6S_JzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.738 [XNIO-1 task-2] -f2CvihiT_uy0HVL6S_JzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.738 [XNIO-1 task-2] -f2CvihiT_uy0HVL6S_JzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:13.743 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f23715e6-83a4-42b9-9b2d-878bd5a9e254 +18:11:13.747 [XNIO-1 task-2] Z1G6cjU7Qmyj9wIe_T6khw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4cd47e50 +18:11:13.747 [XNIO-1 task-2] Z1G6cjU7Qmyj9wIe_T6khw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.747 [XNIO-1 task-2] Z1G6cjU7Qmyj9wIe_T6khw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.747 [XNIO-1 task-2] Z1G6cjU7Qmyj9wIe_T6khw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4cd47e50 +18:11:13.751 [XNIO-1 task-2] akvl_OpORTa6_Ni2VK8u1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cd47e50, base path is set to: null +18:11:13.751 [XNIO-1 task-2] akvl_OpORTa6_Ni2VK8u1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.751 [XNIO-1 task-2] akvl_OpORTa6_Ni2VK8u1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.751 [XNIO-1 task-2] akvl_OpORTa6_Ni2VK8u1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cd47e50, base path is set to: null +18:11:13.751 [XNIO-1 task-2] akvl_OpORTa6_Ni2VK8u1w DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd47e50", "4cd47e50", serviceId) +18:11:13.763 [XNIO-1 task-2] hB83scJIQsyS3CznUfeG8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.763 [XNIO-1 task-2] hB83scJIQsyS3CznUfeG8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.763 [XNIO-1 task-2] hB83scJIQsyS3CznUfeG8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.772 [XNIO-1 task-2] jjySX5QbRgWXWfD9Tk6WhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18ca0147 +18:11:13.772 [XNIO-1 task-2] jjySX5QbRgWXWfD9Tk6WhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.772 [XNIO-1 task-2] jjySX5QbRgWXWfD9Tk6WhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.772 [XNIO-1 task-2] jjySX5QbRgWXWfD9Tk6WhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18ca0147 +18:11:13.775 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:51c738fa-0cf1-4b0d-9119-586f5c86ce61 +18:11:13.776 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:51c738fa-0cf1-4b0d-9119-586f5c86ce61 +18:11:13.777 [XNIO-1 task-2] oEaJXP8bQpSgzaOyIIthmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.777 [XNIO-1 task-2] oEaJXP8bQpSgzaOyIIthmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.777 [XNIO-1 task-2] oEaJXP8bQpSgzaOyIIthmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.785 [XNIO-1 task-2] Ux9TN2BwTl-TfjtbcWhbiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18ca0147 +18:11:13.785 [XNIO-1 task-2] Ux9TN2BwTl-TfjtbcWhbiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.786 [XNIO-1 task-2] Ux9TN2BwTl-TfjtbcWhbiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.786 [XNIO-1 task-2] Ux9TN2BwTl-TfjtbcWhbiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18ca0147 +18:11:13.797 [XNIO-1 task-2] ozmLNfqiSriTDh7hc7Fp_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.798 [XNIO-1 task-2] ozmLNfqiSriTDh7hc7Fp_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.798 [XNIO-1 task-2] ozmLNfqiSriTDh7hc7Fp_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.798 [XNIO-1 task-2] ozmLNfqiSriTDh7hc7Fp_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.803 [XNIO-1 task-2] jVUbvEh4TPiqYrf8MxLeTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4621f262, base path is set to: null +18:11:13.803 [XNIO-1 task-2] jVUbvEh4TPiqYrf8MxLeTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.803 [XNIO-1 task-2] jVUbvEh4TPiqYrf8MxLeTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.803 [XNIO-1 task-2] jVUbvEh4TPiqYrf8MxLeTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4621f262, base path is set to: null +18:11:13.803 [XNIO-1 task-2] jVUbvEh4TPiqYrf8MxLeTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4621f262", "4621f262", serviceId) +18:11:13.811 [XNIO-1 task-2] 4kisPf_OReijp7fJ0i4VDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.811 [XNIO-1 task-2] 4kisPf_OReijp7fJ0i4VDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.811 [XNIO-1 task-2] 4kisPf_OReijp7fJ0i4VDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.811 [XNIO-1 task-2] 4kisPf_OReijp7fJ0i4VDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:13.816 [XNIO-1 task-2] alDHyvZYTuSQ6dy5CoQmTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.816 [XNIO-1 task-2] alDHyvZYTuSQ6dy5CoQmTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.816 [XNIO-1 task-2] alDHyvZYTuSQ6dy5CoQmTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.816 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:72f293b6 +18:11:13.822 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.822 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.823 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.823 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.823 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.823 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.823 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:13.823 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG com.networknt.schema.TypeValidator debug - validate( "5720aa4b-fdcd-4851-8bb7-4730500a", {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:13.823 [XNIO-1 task-2] eNTqsse0TsG6Y7VxSVXxvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.831 [XNIO-1 task-2] O6dlemYXSCaUJht9LxItCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ea7720ce, base path is set to: null +18:11:13.832 [XNIO-1 task-2] O6dlemYXSCaUJht9LxItCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.832 [XNIO-1 task-2] O6dlemYXSCaUJht9LxItCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.832 [XNIO-1 task-2] O6dlemYXSCaUJht9LxItCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ea7720ce, base path is set to: null +18:11:13.832 [XNIO-1 task-2] O6dlemYXSCaUJht9LxItCA DEBUG com.networknt.schema.TypeValidator debug - validate( "ea7720ce", "ea7720ce", serviceId) +18:11:13.836 [XNIO-1 task-2] u7L5YKTMRNWJ2fiLIwFv9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.836 [XNIO-1 task-2] u7L5YKTMRNWJ2fiLIwFv9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.836 [XNIO-1 task-2] u7L5YKTMRNWJ2fiLIwFv9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.836 [XNIO-1 task-2] u7L5YKTMRNWJ2fiLIwFv9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:13.838 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eef2d375 +18:11:13.846 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.846 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.847 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.847 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.847 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.847 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.847 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:13.847 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG com.networknt.schema.TypeValidator debug - validate( "6d7677fb-0865-4a5f-a23c-d27821df", {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:13.847 [XNIO-1 task-2] U48TXpe8S3il62mQsdGBxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"72f293b6","serviceName":"6d7677fb-0865-4a5f-a23c-d27821df","serviceDesc":"f4799a27-f5bb-4760-9d31-df41255d0c57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.847 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:72f293b6 +18:11:13.856 [XNIO-1 task-2] JpUq7fsBRkyjazIgYDdpig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.856 [XNIO-1 task-2] JpUq7fsBRkyjazIgYDdpig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.856 [XNIO-1 task-2] JpUq7fsBRkyjazIgYDdpig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.856 [XNIO-1 task-2] JpUq7fsBRkyjazIgYDdpig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.864 [XNIO-1 task-2] t-TxM8cUTtyXb-6A2DfQCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.864 [XNIO-1 task-2] t-TxM8cUTtyXb-6A2DfQCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.864 [XNIO-1 task-2] t-TxM8cUTtyXb-6A2DfQCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.864 [XNIO-1 task-2] t-TxM8cUTtyXb-6A2DfQCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.870 [XNIO-1 task-2] dBAuM1pHRraaKvRUxS0xow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.870 [XNIO-1 task-2] dBAuM1pHRraaKvRUxS0xow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.871 [XNIO-1 task-2] dBAuM1pHRraaKvRUxS0xow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.871 [XNIO-1 task-2] dBAuM1pHRraaKvRUxS0xow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.882 [XNIO-1 task-2] IM-JJ-t2RuOBeG6LCa_slQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.882 [XNIO-1 task-2] IM-JJ-t2RuOBeG6LCa_slQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.882 [XNIO-1 task-2] IM-JJ-t2RuOBeG6LCa_slQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:13.890 [XNIO-1 task-2] yb83k0X0Rd2E8J_XgE8kVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ea7720ce, base path is set to: null +18:11:13.890 [XNIO-1 task-2] yb83k0X0Rd2E8J_XgE8kVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.890 [XNIO-1 task-2] yb83k0X0Rd2E8J_XgE8kVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.890 [XNIO-1 task-2] yb83k0X0Rd2E8J_XgE8kVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ea7720ce, base path is set to: null +18:11:13.890 [XNIO-1 task-2] yb83k0X0Rd2E8J_XgE8kVw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea7720ce", "ea7720ce", serviceId) +18:11:13.891 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ea7720ce +18:11:13.900 [XNIO-1 task-2] xbavwQrxTdi1OkXXJn-5dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.900 [XNIO-1 task-2] xbavwQrxTdi1OkXXJn-5dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.900 [XNIO-1 task-2] xbavwQrxTdi1OkXXJn-5dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.901 [XNIO-1 task-2] xbavwQrxTdi1OkXXJn-5dw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:13.935 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.935 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.935 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.935 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.935 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.935 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "598b624e-7643-4878-a876-4b320c1e8bb7", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:13.935 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "512cf01c", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:13.936 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:13.936 [XNIO-1 task-2] dm83IgSyR2uTf5epiIafdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.944 [XNIO-1 task-2] _E8a_uSUSuuSCAa3CdUUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d4a94917 +18:11:13.944 [XNIO-1 task-2] _E8a_uSUSuuSCAa3CdUUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.944 [XNIO-1 task-2] _E8a_uSUSuuSCAa3CdUUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.944 [XNIO-1 task-2] _E8a_uSUSuuSCAa3CdUUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d4a94917 +18:11:13.956 [XNIO-1 task-2] qPx7gI4VRQ6L7Vlf6cwmLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7666eb5, base path is set to: null +18:11:13.957 [XNIO-1 task-2] qPx7gI4VRQ6L7Vlf6cwmLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.957 [XNIO-1 task-2] qPx7gI4VRQ6L7Vlf6cwmLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.957 [XNIO-1 task-2] qPx7gI4VRQ6L7Vlf6cwmLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7666eb5, base path is set to: null +18:11:13.957 [XNIO-1 task-2] qPx7gI4VRQ6L7Vlf6cwmLA DEBUG com.networknt.schema.TypeValidator debug - validate( "b7666eb5", "b7666eb5", serviceId) +18:11:13.965 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eef2d375 +18:11:13.967 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.967 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.969 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.969 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.969 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:13.969 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "e11ece96-3e07-439f-8e6d-623c30306827", {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:13.969 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "032a256f", {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:13.969 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:13.969 [XNIO-1 task-2] mveiGBQTRMe6bFa_mtSUzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"032a256f","serviceName":"871ab635-6d7f-4dcf-aa23-a213d19b","serviceDesc":"e11ece96-3e07-439f-8e6d-623c30306827","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:13.977 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eef2d375 +18:11:13.983 [XNIO-1 task-2] UhhL3cb9SPSKmAOIYg4f2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cf658fad +18:11:13.983 [XNIO-1 task-2] UhhL3cb9SPSKmAOIYg4f2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.983 [XNIO-1 task-2] UhhL3cb9SPSKmAOIYg4f2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:13.983 [XNIO-1 task-2] UhhL3cb9SPSKmAOIYg4f2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cf658fad +18:11:13.992 [XNIO-1 task-2] GEVMQwBDQwSpgBYt0JhOVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cf658fad, base path is set to: null +18:11:13.992 [XNIO-1 task-2] GEVMQwBDQwSpgBYt0JhOVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:13.992 [XNIO-1 task-2] GEVMQwBDQwSpgBYt0JhOVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:13.992 [XNIO-1 task-2] GEVMQwBDQwSpgBYt0JhOVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cf658fad, base path is set to: null +18:11:13.992 [XNIO-1 task-2] GEVMQwBDQwSpgBYt0JhOVw DEBUG com.networknt.schema.TypeValidator debug - validate( "cf658fad", "cf658fad", serviceId) +18:11:13.996 [XNIO-1 task-2] mwRkTi16QkOzxmYv6xkZrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.996 [XNIO-1 task-2] mwRkTi16QkOzxmYv6xkZrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.996 [XNIO-1 task-2] mwRkTi16QkOzxmYv6xkZrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:13.996 [XNIO-1 task-2] mwRkTi16QkOzxmYv6xkZrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.008 [XNIO-1 task-2] NRtPr-bqR-Wc9F0YYcTKdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cf658fad, base path is set to: null +18:11:14.008 [XNIO-1 task-2] NRtPr-bqR-Wc9F0YYcTKdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.008 [XNIO-1 task-2] NRtPr-bqR-Wc9F0YYcTKdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.009 [XNIO-1 task-2] NRtPr-bqR-Wc9F0YYcTKdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cf658fad, base path is set to: null +18:11:14.009 [XNIO-1 task-2] NRtPr-bqR-Wc9F0YYcTKdA DEBUG com.networknt.schema.TypeValidator debug - validate( "cf658fad", "cf658fad", serviceId) +18:11:14.013 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.013 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.013 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.013 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.013 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.013 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3f2ed4bc-22b3-4269-a579-1f7055d6a5d5", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.013 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "eba1d0c6", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.014 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.014 [XNIO-1 task-2] wlAL7Wc0RPCGSjDjgngS7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eba1d0c6","serviceName":"0186d077-f36e-4d29-bcff-d06832bc","serviceDesc":"3f2ed4bc-22b3-4269-a579-1f7055d6a5d5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.016 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:51c738fa-0cf1-4b0d-9119-586f5c86ce61 +18:11:14.025 [XNIO-1 task-2] lhNxoDwfSWm5cAXenRyipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/da56ed06 +18:11:14.025 [XNIO-1 task-2] lhNxoDwfSWm5cAXenRyipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.025 [XNIO-1 task-2] lhNxoDwfSWm5cAXenRyipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.026 [XNIO-1 task-2] lhNxoDwfSWm5cAXenRyipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/da56ed06 +18:11:14.034 [XNIO-1 task-2] 6d86hfGMR0uMpgIAe1XMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f973a38e, base path is set to: null +18:11:14.034 [XNIO-1 task-2] 6d86hfGMR0uMpgIAe1XMQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.035 [XNIO-1 task-2] 6d86hfGMR0uMpgIAe1XMQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.035 [XNIO-1 task-2] 6d86hfGMR0uMpgIAe1XMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f973a38e, base path is set to: null +18:11:14.035 [XNIO-1 task-2] 6d86hfGMR0uMpgIAe1XMQg DEBUG com.networknt.schema.TypeValidator debug - validate( "f973a38e", "f973a38e", serviceId) +18:11:14.050 [XNIO-1 task-2] ce9xAJ4YR6GyxAOiw3jbeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.050 [XNIO-1 task-2] ce9xAJ4YR6GyxAOiw3jbeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.050 [XNIO-1 task-2] ce9xAJ4YR6GyxAOiw3jbeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.050 [XNIO-1 task-2] ce9xAJ4YR6GyxAOiw3jbeg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.062 [XNIO-1 task-2] EzeW6M2ATmeUJcNng_lj7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.062 [XNIO-1 task-2] EzeW6M2ATmeUJcNng_lj7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.062 [XNIO-1 task-2] EzeW6M2ATmeUJcNng_lj7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.062 [XNIO-1 task-2] EzeW6M2ATmeUJcNng_lj7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.070 [XNIO-1 task-2] vjCCQ4O8Rza8GRJi4QNScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e58829f8 +18:11:14.070 [XNIO-1 task-2] vjCCQ4O8Rza8GRJi4QNScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.070 [XNIO-1 task-2] vjCCQ4O8Rza8GRJi4QNScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.070 [XNIO-1 task-2] vjCCQ4O8Rza8GRJi4QNScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e58829f8 +18:11:14.084 [XNIO-1 task-2] 0psTx3iDQLGuehEcqzYK9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.085 [XNIO-1 task-2] 0psTx3iDQLGuehEcqzYK9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.085 [XNIO-1 task-2] 0psTx3iDQLGuehEcqzYK9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.085 [XNIO-1 task-2] 0psTx3iDQLGuehEcqzYK9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.101 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b7b14086-9f90-4a22-9b16-00730479", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.102 [XNIO-1 task-2] i80CNkB2Sra7JYmwf8kqaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.114 [XNIO-1 task-2] 6vrzRjWYQ4SduTfSvlBC7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.115 [XNIO-1 task-2] 6vrzRjWYQ4SduTfSvlBC7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.115 [XNIO-1 task-2] 6vrzRjWYQ4SduTfSvlBC7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.115 [XNIO-1 task-2] 6vrzRjWYQ4SduTfSvlBC7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.122 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f3eb828b-1a23-4b42-9de2-d5eb06ff6e8b +18:11:14.125 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f3eb828b-1a23-4b42-9de2-d5eb06ff6e8b +18:11:14.126 [XNIO-1 task-2] aIGjL9ArTxqFp60QBoKFkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.126 [XNIO-1 task-2] aIGjL9ArTxqFp60QBoKFkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.126 [XNIO-1 task-2] aIGjL9ArTxqFp60QBoKFkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.126 [XNIO-1 task-2] aIGjL9ArTxqFp60QBoKFkg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.131 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.131 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.132 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.132 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.132 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.132 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "430228e5-62c7-4766-a764-c844dc91e037", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.132 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "05ae7978", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.132 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.132 [XNIO-1 task-2] i6nv6potSuuIzJlmo0eI9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.143 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG com.networknt.schema.TypeValidator debug - validate( "a47554fa-263f-4656-93a2-89e4dd7c", {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.144 [XNIO-1 task-2] 7ef8zXazRImi7oQi7skNiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f435e40","serviceName":"a47554fa-263f-4656-93a2-89e4dd7c","serviceDesc":"22c75d62-e982-4422-a859-d7c753474b7b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.154 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2a446553-d151-4133-8751-dc1bb852f489 +18:11:14.155 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.155 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.155 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.155 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.155 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.155 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2a446553-d151-4133-8751-dc1bb852f489 +18:11:14.156 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.156 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e8d98f6", {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.156 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.156 [XNIO-1 task-2] GV6EtUKYSrmsgEJVI8OJAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e8d98f6","serviceName":"95c63ff7-546a-4c2f-b992-04f5d8fb","serviceDesc":"4d465c77-a43e-4765-82a6-246e4b461179","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.169 [XNIO-1 task-2] p2s0vuLMTfuOQrZinyP78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f435e40 +18:11:14.169 [XNIO-1 task-2] p2s0vuLMTfuOQrZinyP78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.169 [XNIO-1 task-2] p2s0vuLMTfuOQrZinyP78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.169 [XNIO-1 task-2] p2s0vuLMTfuOQrZinyP78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f435e40 +18:11:14.171 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2a446553-d151-4133-8751-dc1bb852f489 +18:11:14.173 [XNIO-1 task-2] 9MfRejwRTg-iCdrL0NwKfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.173 [XNIO-1 task-2] 9MfRejwRTg-iCdrL0NwKfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.173 [XNIO-1 task-2] 9MfRejwRTg-iCdrL0NwKfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.174 [XNIO-1 task-2] 9MfRejwRTg-iCdrL0NwKfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.185 [XNIO-1 task-2] TUDKgkvIRuKetYjX2I6eeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.185 [XNIO-1 task-2] TUDKgkvIRuKetYjX2I6eeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.185 [XNIO-1 task-2] TUDKgkvIRuKetYjX2I6eeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.185 [XNIO-1 task-2] TUDKgkvIRuKetYjX2I6eeA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.195 [XNIO-1 task-2] VqNfZ4WHRJaY_ZtdUNy3OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0c1f9a25, base path is set to: null +18:11:14.196 [XNIO-1 task-2] VqNfZ4WHRJaY_ZtdUNy3OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.196 [XNIO-1 task-2] VqNfZ4WHRJaY_ZtdUNy3OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.196 [XNIO-1 task-2] VqNfZ4WHRJaY_ZtdUNy3OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0c1f9a25, base path is set to: null +18:11:14.196 [XNIO-1 task-2] VqNfZ4WHRJaY_ZtdUNy3OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c1f9a25", "0c1f9a25", serviceId) +18:11:14.210 [XNIO-1 task-2] TSg5WjoiTJWUWmWDQoIvsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f435e40 +18:11:14.210 [XNIO-1 task-2] TSg5WjoiTJWUWmWDQoIvsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.211 [XNIO-1 task-2] TSg5WjoiTJWUWmWDQoIvsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.211 [XNIO-1 task-2] TSg5WjoiTJWUWmWDQoIvsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f435e40 +18:11:14.217 [XNIO-1 task-2] tr7lV3ygQrW6QiTMv2Dutw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.217 [XNIO-1 task-2] tr7lV3ygQrW6QiTMv2Dutw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.217 [XNIO-1 task-2] tr7lV3ygQrW6QiTMv2Dutw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.227 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d5fc8bab +18:11:14.228 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d5fc8bab +18:11:14.229 [XNIO-1 task-2] _wNbGiwqRZqj_omWIHWLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f435e40 +18:11:14.229 [XNIO-1 task-2] _wNbGiwqRZqj_omWIHWLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.229 [XNIO-1 task-2] _wNbGiwqRZqj_omWIHWLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.229 [XNIO-1 task-2] _wNbGiwqRZqj_omWIHWLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f435e40 +18:11:14.239 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d5fc8bab +18:11:14.249 [XNIO-1 task-2] hXMwawgnQV-tUZLXt5eMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3e8d98f6 +18:11:14.249 [XNIO-1 task-2] hXMwawgnQV-tUZLXt5eMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.249 [XNIO-1 task-2] hXMwawgnQV-tUZLXt5eMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.249 [XNIO-1 task-2] hXMwawgnQV-tUZLXt5eMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3e8d98f6 +18:11:14.265 [XNIO-1 task-2] URxNeBbMTcuJSaRkR1i4iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.265 [XNIO-1 task-2] URxNeBbMTcuJSaRkR1i4iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.265 [XNIO-1 task-2] URxNeBbMTcuJSaRkR1i4iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.265 [XNIO-1 task-2] URxNeBbMTcuJSaRkR1i4iA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.275 [XNIO-1 task-2] iTW0IfNRTEqT3lvdGoK8QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.275 [XNIO-1 task-2] iTW0IfNRTEqT3lvdGoK8QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.276 [XNIO-1 task-2] iTW0IfNRTEqT3lvdGoK8QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.276 [XNIO-1 task-2] iTW0IfNRTEqT3lvdGoK8QA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.288 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:eb7d2aa1-ff4b-47a6-bab5-7706f20c656b +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "de12fe9e-4a07-4354-a400-4cd0e5c1666d", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "e07448cf", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.289 [XNIO-1 task-2] f-KciKRDT3enfpq1HjE2Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.290 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e07448cf +18:11:14.290 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e07448cf +18:11:14.297 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.297 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.298 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.298 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.298 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.298 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG com.networknt.schema.TypeValidator debug - validate( "7cca547c-de60-4abd-9510-b800179f3d63", {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.298 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG com.networknt.schema.TypeValidator debug - validate( "75c8ebd8", {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.298 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.298 [XNIO-1 task-2] 2ktdbwfgTTG1lkenxn_IXg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75c8ebd8","serviceName":"1f115618-0f12-41bd-91d8-c59c826e","serviceDesc":"7cca547c-de60-4abd-9510-b800179f3d63","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.309 [XNIO-1 task-2] yi0as4R_QLiU4s9HyizI1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cf658fad +18:11:14.309 [XNIO-1 task-2] yi0as4R_QLiU4s9HyizI1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.309 [XNIO-1 task-2] yi0as4R_QLiU4s9HyizI1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.309 [XNIO-1 task-2] yi0as4R_QLiU4s9HyizI1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cf658fad +18:11:14.317 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.317 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.318 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.318 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.318 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.318 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.318 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.318 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG com.networknt.schema.TypeValidator debug - validate( "b7b14086-9f90-4a22-9b16-00730479", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.318 [XNIO-1 task-2] pIKQpvACSyS6q6UzEshyKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.333 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.334 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.335 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.335 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.335 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.335 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.335 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.335 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "190e6421-f120-44ca-9c7e-02fc8a9a", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.335 [XNIO-1 task-2] O4nuX4e0TV2_bY6lrwFzyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.335 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e07448cf +18:11:14.349 [XNIO-1 task-2] 2erQlB5NTY-IjWOv5Or86w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.349 [XNIO-1 task-2] 2erQlB5NTY-IjWOv5Or86w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.349 [XNIO-1 task-2] 2erQlB5NTY-IjWOv5Or86w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.350 [XNIO-1 task-2] 2erQlB5NTY-IjWOv5Or86w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.358 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.358 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.358 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.359 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.359 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.359 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.359 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.359 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "159fe844-38fb-4d9d-bb3f-9c485038", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.359 [XNIO-1 task-2] AERVpEQ9TIKIXvs2mPKmDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.371 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG com.networknt.schema.TypeValidator debug - validate( "d022e5ba-2ca6-4ad2-8bc1-705554aa", {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.372 [XNIO-1 task-2] 8aczT0WGRVqNkqMgc3kjHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.383 [XNIO-1 task-2] pFVUlDAMTsGjXo1nxeAW7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4daa126, base path is set to: null +18:11:14.383 [XNIO-1 task-2] pFVUlDAMTsGjXo1nxeAW7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.384 [XNIO-1 task-2] pFVUlDAMTsGjXo1nxeAW7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.384 [XNIO-1 task-2] pFVUlDAMTsGjXo1nxeAW7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4daa126, base path is set to: null +18:11:14.384 [XNIO-1 task-2] pFVUlDAMTsGjXo1nxeAW7g DEBUG com.networknt.schema.TypeValidator debug - validate( "b4daa126", "b4daa126", serviceId) +18:11:14.387 [XNIO-1 task-2] h6GO1tlnQ-2ed7G3Ow10qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b4daa126 +18:11:14.387 [XNIO-1 task-2] h6GO1tlnQ-2ed7G3Ow10qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.387 [XNIO-1 task-2] h6GO1tlnQ-2ed7G3Ow10qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.387 [XNIO-1 task-2] h6GO1tlnQ-2ed7G3Ow10qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b4daa126 +18:11:14.391 [XNIO-1 task-2] WJ-B5FUpQC-ZsnQt3CwngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.391 [XNIO-1 task-2] WJ-B5FUpQC-ZsnQt3CwngQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.392 [XNIO-1 task-2] WJ-B5FUpQC-ZsnQt3CwngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.409 [XNIO-1 task-2] evTxz6CDRR2zG9xnbvD3qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4daa126, base path is set to: null +18:11:14.409 [XNIO-1 task-2] evTxz6CDRR2zG9xnbvD3qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.410 [XNIO-1 task-2] evTxz6CDRR2zG9xnbvD3qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.410 [XNIO-1 task-2] evTxz6CDRR2zG9xnbvD3qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4daa126, base path is set to: null +18:11:14.410 [XNIO-1 task-2] evTxz6CDRR2zG9xnbvD3qg DEBUG com.networknt.schema.TypeValidator debug - validate( "b4daa126", "b4daa126", serviceId) +18:11:14.411 [XNIO-1 task-2] _U3TizBzS2eoCYMKhYSbgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b4daa126 +18:11:14.411 [XNIO-1 task-2] _U3TizBzS2eoCYMKhYSbgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.411 [XNIO-1 task-2] _U3TizBzS2eoCYMKhYSbgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.411 [XNIO-1 task-2] _U3TizBzS2eoCYMKhYSbgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b4daa126 +18:11:14.413 [XNIO-1 task-2] IIEm-bF6Rr-peHvcjvd7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.413 [XNIO-1 task-2] IIEm-bF6Rr-peHvcjvd7Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.413 [XNIO-1 task-2] IIEm-bF6Rr-peHvcjvd7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.444 [XNIO-1 task-2] sQuFQaOdRn2_nuCVztd5Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.444 [XNIO-1 task-2] sQuFQaOdRn2_nuCVztd5Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.444 [XNIO-1 task-2] sQuFQaOdRn2_nuCVztd5Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.459 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG com.networknt.schema.TypeValidator debug - validate( "5720aa4b-fdcd-4851-8bb7-4730500a", {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.460 [XNIO-1 task-2] VaBZHrvESOSlfu1hO4GS5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3aa9e04e","serviceName":"5720aa4b-fdcd-4851-8bb7-4730500a","serviceDesc":"030ad0ac-eb83-4c10-b276-fe012b73c983","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.474 [XNIO-1 task-2] tWe8EVKuT9-s3JnnHxHZlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4daa126, base path is set to: null +18:11:14.474 [XNIO-1 task-2] tWe8EVKuT9-s3JnnHxHZlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.476 [XNIO-1 task-2] tWe8EVKuT9-s3JnnHxHZlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.476 [XNIO-1 task-2] tWe8EVKuT9-s3JnnHxHZlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b4daa126, base path is set to: null +18:11:14.476 [XNIO-1 task-2] tWe8EVKuT9-s3JnnHxHZlg DEBUG com.networknt.schema.TypeValidator debug - validate( "b4daa126", "b4daa126", serviceId) +18:11:14.484 [XNIO-1 task-2] xQyIjX6tTqeIZLouE4E7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3aa9e04e +18:11:14.484 [XNIO-1 task-2] xQyIjX6tTqeIZLouE4E7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.484 [XNIO-1 task-2] xQyIjX6tTqeIZLouE4E7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.484 [XNIO-1 task-2] xQyIjX6tTqeIZLouE4E7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3aa9e04e +18:11:14.489 [XNIO-1 task-2] o0X7ZaXqQae-2Xy56iRwnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.489 [XNIO-1 task-2] o0X7ZaXqQae-2Xy56iRwnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.489 [XNIO-1 task-2] o0X7ZaXqQae-2Xy56iRwnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.502 [XNIO-1 task-2] nLtJMmdNQG-Fmy1x1XRxbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.502 [XNIO-1 task-2] nLtJMmdNQG-Fmy1x1XRxbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.503 [XNIO-1 task-2] nLtJMmdNQG-Fmy1x1XRxbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.512 [XNIO-1 task-2] oII4owLTRpmIc6MOblu-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3aa9e04e, base path is set to: null +18:11:14.513 [XNIO-1 task-2] oII4owLTRpmIc6MOblu-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.514 [XNIO-1 task-2] oII4owLTRpmIc6MOblu-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.514 [XNIO-1 task-2] oII4owLTRpmIc6MOblu-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3aa9e04e, base path is set to: null +18:11:14.514 [XNIO-1 task-2] oII4owLTRpmIc6MOblu-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "3aa9e04e", "3aa9e04e", serviceId) +18:11:14.524 [XNIO-1 task-2] GDfMDUJaQRuwa4UL2Rc1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/512cf01c +18:11:14.524 [XNIO-1 task-2] GDfMDUJaQRuwa4UL2Rc1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.524 [XNIO-1 task-2] GDfMDUJaQRuwa4UL2Rc1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.524 [XNIO-1 task-2] GDfMDUJaQRuwa4UL2Rc1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/512cf01c +18:11:14.527 [XNIO-1 task-2] L6aJXLl_R_iIueBNrdK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.528 [XNIO-1 task-2] L6aJXLl_R_iIueBNrdK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.528 [XNIO-1 task-2] L6aJXLl_R_iIueBNrdK-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.528 [XNIO-1 task-2] L6aJXLl_R_iIueBNrdK-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.538 [XNIO-1 task-2] 3Vxa8lbaQpKunP9ZgKiUVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75c8ebd8, base path is set to: null +18:11:14.538 [XNIO-1 task-2] 3Vxa8lbaQpKunP9ZgKiUVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.538 [XNIO-1 task-2] 3Vxa8lbaQpKunP9ZgKiUVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.538 [XNIO-1 task-2] 3Vxa8lbaQpKunP9ZgKiUVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75c8ebd8, base path is set to: null +18:11:14.538 [XNIO-1 task-2] 3Vxa8lbaQpKunP9ZgKiUVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "75c8ebd8", "75c8ebd8", serviceId) +18:11:14.550 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.550 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.550 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.551 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.551 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.551 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "598b624e-7643-4878-a876-4b320c1e8bb7", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.551 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "512cf01c", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.551 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.551 [XNIO-1 task-2] LdNvSWTnQvutrpSx_NxTsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.562 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ac606e4f-3fed-45d4-9b02-5c75fc84a982 +18:11:14.565 [XNIO-1 task-2] NcqGX8YQQXKNWtcVw4H8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.565 [XNIO-1 task-2] NcqGX8YQQXKNWtcVw4H8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.565 [XNIO-1 task-2] NcqGX8YQQXKNWtcVw4H8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.565 [XNIO-1 task-2] NcqGX8YQQXKNWtcVw4H8Vg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG com.networknt.schema.TypeValidator debug - validate( "430228e5-62c7-4766-a764-c844dc91e037", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG com.networknt.schema.TypeValidator debug - validate( "05ae7978", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.573 [XNIO-1 task-2] hQM5SZ3uSdqa5qKRR7f1yA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ae7978","serviceName":"159fe844-38fb-4d9d-bb3f-9c485038","serviceDesc":"430228e5-62c7-4766-a764-c844dc91e037","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.580 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:940dc60f-958d-4b22-8fe3-05a00344b64d +18:11:14.583 [XNIO-1 task-2] YsuAYYlTQVuHtSua_7gduA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.583 [XNIO-1 task-2] YsuAYYlTQVuHtSua_7gduA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.583 [XNIO-1 task-2] YsuAYYlTQVuHtSua_7gduA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.584 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2b7a84f5 +18:11:14.584 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2b7a84f5 +18:11:14.596 [XNIO-1 task-2] lAB-KcagQKSJIy8VAgWcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8775e45a +18:11:14.596 [XNIO-1 task-2] lAB-KcagQKSJIy8VAgWcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.596 [XNIO-1 task-2] lAB-KcagQKSJIy8VAgWcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.596 [XNIO-1 task-2] lAB-KcagQKSJIy8VAgWcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8775e45a +18:11:14.608 [XNIO-1 task-2] OBlr-4c7Q4-V9_-SqVFGhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eba1d0c6, base path is set to: null +18:11:14.608 [XNIO-1 task-2] OBlr-4c7Q4-V9_-SqVFGhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.609 [XNIO-1 task-2] OBlr-4c7Q4-V9_-SqVFGhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.609 [XNIO-1 task-2] OBlr-4c7Q4-V9_-SqVFGhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eba1d0c6, base path is set to: null +18:11:14.609 [XNIO-1 task-2] OBlr-4c7Q4-V9_-SqVFGhg DEBUG com.networknt.schema.TypeValidator debug - validate( "eba1d0c6", "eba1d0c6", serviceId) +18:11:14.617 [XNIO-1 task-2] Cz7SgkAxQOSQ7hnjVdgB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05ae7978 +18:11:14.617 [XNIO-1 task-2] Cz7SgkAxQOSQ7hnjVdgB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.617 [XNIO-1 task-2] Cz7SgkAxQOSQ7hnjVdgB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.617 [XNIO-1 task-2] Cz7SgkAxQOSQ7hnjVdgB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05ae7978 +18:11:14.622 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ac606e4f-3fed-45d4-9b02-5c75fc84a982 +18:11:14.625 [XNIO-1 task-2] WQkQlzL3TBuETjnov33v1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/032a256f +18:11:14.625 [XNIO-1 task-2] WQkQlzL3TBuETjnov33v1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.625 [XNIO-1 task-2] WQkQlzL3TBuETjnov33v1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.625 [XNIO-1 task-2] WQkQlzL3TBuETjnov33v1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/032a256f +18:11:14.638 [XNIO-1 task-2] N56Pvud2SMOqtkzDkfca7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.638 [XNIO-1 task-2] N56Pvud2SMOqtkzDkfca7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.638 [XNIO-1 task-2] N56Pvud2SMOqtkzDkfca7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.638 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:38fcdb02 +18:11:14.639 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:38fcdb02 +18:11:14.643 [XNIO-1 task-2] fROzdmN2TNiLCYiDEFE-gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.643 [XNIO-1 task-2] fROzdmN2TNiLCYiDEFE-gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.643 [XNIO-1 task-2] fROzdmN2TNiLCYiDEFE-gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.651 [XNIO-1 task-2] Ll71iJiHSsWQgDUBpAC79w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.651 [XNIO-1 task-2] Ll71iJiHSsWQgDUBpAC79w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.651 [XNIO-1 task-2] Ll71iJiHSsWQgDUBpAC79w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.651 [XNIO-1 task-2] Ll71iJiHSsWQgDUBpAC79w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.662 [XNIO-1 task-2] sc-LNMDpRZmUbonQQrF2wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72f293b6, base path is set to: null +18:11:14.663 [XNIO-1 task-2] sc-LNMDpRZmUbonQQrF2wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.663 [XNIO-1 task-2] sc-LNMDpRZmUbonQQrF2wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.663 [XNIO-1 task-2] sc-LNMDpRZmUbonQQrF2wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72f293b6, base path is set to: null +18:11:14.663 [XNIO-1 task-2] sc-LNMDpRZmUbonQQrF2wg DEBUG com.networknt.schema.TypeValidator debug - validate( "72f293b6", "72f293b6", serviceId) +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG com.networknt.schema.TypeValidator debug - validate( "19a586df-57e0-4150-88a8-9e024e73f90f", {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG com.networknt.schema.TypeValidator debug - validate( "25eccf14", {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.669 [XNIO-1 task-2] n2kiMuhYQLGi-6xJe8kNZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"25eccf14","serviceName":"b7f473b2-7eef-41c1-9bc3-3d0d4bc8","serviceDesc":"19a586df-57e0-4150-88a8-9e024e73f90f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8797d6c2-d9d2-4063-988f-1d76368e91e0", {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "38fcdb02", {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.682 [XNIO-1 task-2] 3V2DDm_VSdytodDSZC4U9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"38fcdb02","serviceName":"e953fe2b-d4bb-4373-bcf3-90a0ec2f","serviceDesc":"8797d6c2-d9d2-4063-988f-1d76368e91e0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.683 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:38fcdb02 +18:11:14.691 [XNIO-1 task-2] s89nsVcGQsmwCDPcGGezTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/72f293b6 +18:11:14.691 [XNIO-1 task-2] s89nsVcGQsmwCDPcGGezTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.691 [XNIO-1 task-2] s89nsVcGQsmwCDPcGGezTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.691 [XNIO-1 task-2] s89nsVcGQsmwCDPcGGezTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/72f293b6 +18:11:14.698 [XNIO-1 task-2] dHK8wLsqRYCRCpshHMDbkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72f293b6, base path is set to: null +18:11:14.698 [XNIO-1 task-2] dHK8wLsqRYCRCpshHMDbkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.698 [XNIO-1 task-2] dHK8wLsqRYCRCpshHMDbkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.698 [XNIO-1 task-2] dHK8wLsqRYCRCpshHMDbkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72f293b6, base path is set to: null +18:11:14.698 [XNIO-1 task-2] dHK8wLsqRYCRCpshHMDbkw DEBUG com.networknt.schema.TypeValidator debug - validate( "72f293b6", "72f293b6", serviceId) +18:11:14.704 [XNIO-1 task-2] FMIOuVsgQb60oZBAAfjpvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.704 [XNIO-1 task-2] FMIOuVsgQb60oZBAAfjpvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.704 [XNIO-1 task-2] FMIOuVsgQb60oZBAAfjpvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.720 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.720 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.720 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.721 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.721 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.721 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG com.networknt.schema.TypeValidator debug - validate( "de12fe9e-4a07-4354-a400-4cd0e5c1666d", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.721 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG com.networknt.schema.TypeValidator debug - validate( "e07448cf", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.721 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.721 [XNIO-1 task-2] -3kLI5Q5TWiIwDOoqj6oxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e07448cf","serviceName":"190e6421-f120-44ca-9c7e-02fc8a9a","serviceDesc":"de12fe9e-4a07-4354-a400-4cd0e5c1666d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.721 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e07448cf +18:11:14.733 [XNIO-1 task-2] 78AcJkosQTiYDjFaUwdb9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65db8ad2 +18:11:14.733 [XNIO-1 task-2] 78AcJkosQTiYDjFaUwdb9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.733 [XNIO-1 task-2] 78AcJkosQTiYDjFaUwdb9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.733 [XNIO-1 task-2] 78AcJkosQTiYDjFaUwdb9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65db8ad2 +18:11:14.740 [XNIO-1 task-2] 82e4piBlQCaQwxp6hMiByQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/350e5d19, base path is set to: null +18:11:14.740 [XNIO-1 task-2] 82e4piBlQCaQwxp6hMiByQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.740 [XNIO-1 task-2] 82e4piBlQCaQwxp6hMiByQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.740 [XNIO-1 task-2] 82e4piBlQCaQwxp6hMiByQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/350e5d19, base path is set to: null +18:11:14.740 [XNIO-1 task-2] 82e4piBlQCaQwxp6hMiByQ DEBUG com.networknt.schema.TypeValidator debug - validate( "350e5d19", "350e5d19", serviceId) +18:11:14.757 [XNIO-1 task-2] o4MGHCCDRDKCqGgdC9oGqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db3902e6 +18:11:14.757 [XNIO-1 task-2] o4MGHCCDRDKCqGgdC9oGqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.757 [XNIO-1 task-2] o4MGHCCDRDKCqGgdC9oGqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.757 [XNIO-1 task-2] o4MGHCCDRDKCqGgdC9oGqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db3902e6 +18:11:14.762 [XNIO-1 task-2] CTvjOPJISxu59A6RGe4CPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.762 [XNIO-1 task-2] CTvjOPJISxu59A6RGe4CPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.762 [XNIO-1 task-2] CTvjOPJISxu59A6RGe4CPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.762 [XNIO-1 task-2] CTvjOPJISxu59A6RGe4CPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "73152d62-2873-4656-815b-323e1761", {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.774 [XNIO-1 task-2] RWJ6dKIGRLGKom6WRecgpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4c9d7408","serviceName":"73152d62-2873-4656-815b-323e1761","serviceDesc":"319bc8a0-a3c8-4d6d-ba9d-fa5eabe891ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.783 [XNIO-1 task-2] dwb00KyIT8SK4vpgfg4n3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65db8ad2, base path is set to: null +18:11:14.783 [XNIO-1 task-2] dwb00KyIT8SK4vpgfg4n3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.783 [XNIO-1 task-2] dwb00KyIT8SK4vpgfg4n3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.783 [XNIO-1 task-2] dwb00KyIT8SK4vpgfg4n3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65db8ad2, base path is set to: null +18:11:14.783 [XNIO-1 task-2] dwb00KyIT8SK4vpgfg4n3A DEBUG com.networknt.schema.TypeValidator debug - validate( "65db8ad2", "65db8ad2", serviceId) +18:11:14.787 [XNIO-1 task-2] 9oe_oPCASHOrEmrq3joHfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.787 [XNIO-1 task-2] 9oe_oPCASHOrEmrq3joHfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.787 [XNIO-1 task-2] 9oe_oPCASHOrEmrq3joHfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.791 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b1d2f9e1 +18:11:14.803 [XNIO-1 task-2] Tvp_UBRoSCu1vhJw1MAvQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/db3902e6, base path is set to: null +18:11:14.804 [XNIO-1 task-2] Tvp_UBRoSCu1vhJw1MAvQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.804 [XNIO-1 task-2] Tvp_UBRoSCu1vhJw1MAvQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.804 [XNIO-1 task-2] Tvp_UBRoSCu1vhJw1MAvQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/db3902e6, base path is set to: null +18:11:14.804 [XNIO-1 task-2] Tvp_UBRoSCu1vhJw1MAvQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "db3902e6", "db3902e6", serviceId) +18:11:14.806 [XNIO-1 task-2] pc1dgXMmTvKKWLni8InK3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.806 [XNIO-1 task-2] pc1dgXMmTvKKWLni8InK3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.806 [XNIO-1 task-2] pc1dgXMmTvKKWLni8InK3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.807 [XNIO-1 task-2] pc1dgXMmTvKKWLni8InK3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.817 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.817 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.817 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.818 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.818 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.818 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e94b17b4-3d1c-432d-9cca-235e06554505", {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:11:14.818 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "65db8ad2", {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:11:14.818 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:11:14.818 [XNIO-1 task-2] KZJouyOIRR-R2C6DnM-bKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65db8ad2","serviceName":"b1a489fd-19d8-445e-875c-7a5fb10a","serviceDesc":"e94b17b4-3d1c-432d-9cca-235e06554505","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.831 [XNIO-1 task-2] 8NHFpRGaQUWD-NWTxYMZsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.831 [XNIO-1 task-2] 8NHFpRGaQUWD-NWTxYMZsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.831 [XNIO-1 task-2] 8NHFpRGaQUWD-NWTxYMZsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.831 [XNIO-1 task-2] 8NHFpRGaQUWD-NWTxYMZsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.844 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.844 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.844 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.844 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.844 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.845 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.845 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.845 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG com.networknt.schema.TypeValidator debug - validate( "d022e5ba-2ca6-4ad2-8bc1-705554aa", {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.845 [XNIO-1 task-2] srKke1ehRIKmRHEUvoGuHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db3902e6","serviceName":"d022e5ba-2ca6-4ad2-8bc1-705554aa","serviceDesc":"5c2c1e65-dcef-44cf-bcc4-4745b36555aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.858 [XNIO-1 task-2] WPnExg_0QiqC3HtRX8Pw2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65db8ad2, base path is set to: null +18:11:14.858 [XNIO-1 task-2] WPnExg_0QiqC3HtRX8Pw2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.861 [XNIO-1 task-2] WPnExg_0QiqC3HtRX8Pw2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:11:14.861 [XNIO-1 task-2] WPnExg_0QiqC3HtRX8Pw2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65db8ad2, base path is set to: null +18:11:14.862 [XNIO-1 task-2] WPnExg_0QiqC3HtRX8Pw2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "65db8ad2", "65db8ad2", serviceId) +18:11:14.868 [XNIO-1 task-2] si_2Aq2ISkCfnsn2PkNUgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65db8ad2 +18:11:14.868 [XNIO-1 task-2] si_2Aq2ISkCfnsn2PkNUgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.868 [XNIO-1 task-2] si_2Aq2ISkCfnsn2PkNUgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:11:14.868 [XNIO-1 task-2] si_2Aq2ISkCfnsn2PkNUgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65db8ad2 +18:11:14.884 [XNIO-1 task-2] uRC9bW0UQ4O_fL9t1_0yHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.884 [XNIO-1 task-2] uRC9bW0UQ4O_fL9t1_0yHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.884 [XNIO-1 task-2] uRC9bW0UQ4O_fL9t1_0yHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.884 [XNIO-1 task-2] uRC9bW0UQ4O_fL9t1_0yHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.895 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.895 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.895 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.895 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.896 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.896 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:11:14.896 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:11:14.896 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG com.networknt.schema.TypeValidator debug - validate( "b7b14086-9f90-4a22-9b16-00730479", {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:11:14.896 [XNIO-1 task-2] 53IRf210RamsBnINX22YPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:11:14.907 [XNIO-1 task-2] IlEIuyKMQuqiW22qNlYp2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.907 [XNIO-1 task-2] IlEIuyKMQuqiW22qNlYp2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.907 [XNIO-1 task-2] IlEIuyKMQuqiW22qNlYp2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.916 [XNIO-1 task-2] ZcUyG8yeTyilMeCTEMxMww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.916 [XNIO-1 task-2] ZcUyG8yeTyilMeCTEMxMww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.917 [XNIO-1 task-2] ZcUyG8yeTyilMeCTEMxMww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.917 [XNIO-1 task-2] ZcUyG8yeTyilMeCTEMxMww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.927 [XNIO-1 task-2] Vnx_e2sTSpSBdgwgI7kNDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.927 [XNIO-1 task-2] Vnx_e2sTSpSBdgwgI7kNDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:11:14.927 [XNIO-1 task-2] Vnx_e2sTSpSBdgwgI7kNDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:11:14.928 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:812c0abe +18:11:14.929 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:812c0abe +18:11:14.933 [XNIO-1 task-2] rRPEDkOwQRaFIEw_AWg6Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.933 [XNIO-1 task-2] rRPEDkOwQRaFIEw_AWg6Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.934 [XNIO-1 task-2] rRPEDkOwQRaFIEw_AWg6Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:11:14.934 [XNIO-1 task-2] rRPEDkOwQRaFIEw_AWg6Lg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"512cf01c","serviceName":"b7b14086-9f90-4a22-9b16-00730479","serviceDesc":"598b624e-7643-4878-a876-4b320c1e8bb7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) diff --git a/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..8ecbe6d --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-token-1.log @@ -0,0 +1,2507 @@ +18:11:09.589 [XNIO-1 task-3] tXyxtE2iRBOB469chNF8Bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:09.609 [XNIO-1 task-3] LA5c-iCIQQuk8DES9YcUFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.609 [XNIO-1 task-3] LA5c-iCIQQuk8DES9YcUFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.609 [XNIO-1 task-3] LA5c-iCIQQuk8DES9YcUFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.609 [XNIO-1 task-3] LA5c-iCIQQuk8DES9YcUFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mY_2Upg8QVyuxcmrXCziWQ redirectUri = http://localhost:8080/authorization +18:11:09.615 [XNIO-1 task-3] LA5c-iCIQQuk8DES9YcUFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.629 [XNIO-1 task-3] jFfK5blyThiHi3xKVLlrrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.629 [XNIO-1 task-3] jFfK5blyThiHi3xKVLlrrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.629 [XNIO-1 task-3] jFfK5blyThiHi3xKVLlrrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.629 [XNIO-1 task-3] jFfK5blyThiHi3xKVLlrrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:09.639 [XNIO-1 task-3] jFfK5blyThiHi3xKVLlrrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.663 [XNIO-1 task-3] LVL8cw8_SwiI4vwPY4daqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.664 [XNIO-1 task-3] LVL8cw8_SwiI4vwPY4daqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.664 [XNIO-1 task-3] LVL8cw8_SwiI4vwPY4daqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.664 [XNIO-1 task-3] LVL8cw8_SwiI4vwPY4daqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:09.673 [XNIO-1 task-3] LVL8cw8_SwiI4vwPY4daqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:09.673 [XNIO-1 task-3] LVL8cw8_SwiI4vwPY4daqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:09.755 [XNIO-1 task-3] FQfMwhE_TSiFj9bwyPGS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.755 [XNIO-1 task-3] FQfMwhE_TSiFj9bwyPGS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.755 [XNIO-1 task-3] FQfMwhE_TSiFj9bwyPGS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.755 [XNIO-1 task-3] FQfMwhE_TSiFj9bwyPGS8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Z7GTttBzTgqaFu0v01_Feg redirectUri = http://localhost:8080/authorization +18:11:09.761 [XNIO-1 task-3] FQfMwhE_TSiFj9bwyPGS8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.766 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ff0ceac4 +18:11:09.776 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ff0ceac4 +18:11:09.781 [XNIO-1 task-3] 1c5h9PlzTuGfXHqlLwRWYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.782 [XNIO-1 task-3] 1c5h9PlzTuGfXHqlLwRWYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.782 [XNIO-1 task-3] 1c5h9PlzTuGfXHqlLwRWYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.782 [XNIO-1 task-3] 1c5h9PlzTuGfXHqlLwRWYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:09.791 [XNIO-1 task-3] 1c5h9PlzTuGfXHqlLwRWYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:09.791 [XNIO-1 task-3] 1c5h9PlzTuGfXHqlLwRWYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:09.796 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6c420e1e-5774-4446-a56d-e4c4ebe84d5a +18:11:09.811 [XNIO-1 task-3] J7ioEI3-QXWzvNLzVmxdpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.812 [XNIO-1 task-3] J7ioEI3-QXWzvNLzVmxdpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.812 [XNIO-1 task-3] J7ioEI3-QXWzvNLzVmxdpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.812 [XNIO-1 task-3] J7ioEI3-QXWzvNLzVmxdpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:09.818 [XNIO-1 task-3] J7ioEI3-QXWzvNLzVmxdpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:09.818 [XNIO-1 task-3] J7ioEI3-QXWzvNLzVmxdpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:09.838 [XNIO-1 task-3] Q15irhy7SDax442KShxPGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.838 [XNIO-1 task-3] Q15irhy7SDax442KShxPGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.838 [XNIO-1 task-3] Q15irhy7SDax442KShxPGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.838 [XNIO-1 task-3] Q15irhy7SDax442KShxPGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:09.844 [XNIO-1 task-3] Q15irhy7SDax442KShxPGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:09.845 [XNIO-1 task-3] Q15irhy7SDax442KShxPGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:09.853 [XNIO-1 task-3] k1yYlLQuRhyC_Y5qgjf62w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.853 [XNIO-1 task-3] k1yYlLQuRhyC_Y5qgjf62w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.853 [XNIO-1 task-3] k1yYlLQuRhyC_Y5qgjf62w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.853 [XNIO-1 task-3] k1yYlLQuRhyC_Y5qgjf62w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 061b8cc3-6231-4f1e-8b9a-aec79e4e86e0 scope = null +18:11:09.861 [XNIO-1 task-3] k1yYlLQuRhyC_Y5qgjf62w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:09.870 [XNIO-1 task-3] HSFJzsP3SmmA-VIAw9moxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.870 [XNIO-1 task-3] HSFJzsP3SmmA-VIAw9moxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 6:11:09 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +18:11:09.871 [XNIO-1 task-3] HSFJzsP3SmmA-VIAw9moxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.871 [XNIO-1 task-3] HSFJzsP3SmmA-VIAw9moxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:09.871 [XNIO-1 task-3] HSFJzsP3SmmA-VIAw9moxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c45432c6-7831-49ab-aae2-1367316f8f8c scope = null +18:11:09.874 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e9cc735d-98c2-47be-b52d-afde63ea0a28 +18:11:09.877 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:11:09.882 [XNIO-1 task-3] HSFJzsP3SmmA-VIAw9moxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.888 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:eeb1a73b +18:11:09.894 [XNIO-1 task-3] F3ZmWYS_Rc2NC7lqktFmxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.894 [XNIO-1 task-3] F3ZmWYS_Rc2NC7lqktFmxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.894 [XNIO-1 task-3] F3ZmWYS_Rc2NC7lqktFmxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.894 [XNIO-1 task-3] F3ZmWYS_Rc2NC7lqktFmxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:09.904 [XNIO-1 task-3] F3ZmWYS_Rc2NC7lqktFmxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.930 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4c0c9428 +18:11:09.931 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4c0c9428 +18:11:09.932 [XNIO-1 task-3] wamEtkgLSPWCDV3Qj9mleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.932 [XNIO-1 task-3] wamEtkgLSPWCDV3Qj9mleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.932 [XNIO-1 task-3] wamEtkgLSPWCDV3Qj9mleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:09.933 [XNIO-1 task-3] wamEtkgLSPWCDV3Qj9mleQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tF6Cc5P7TpiYXeLhFSwcEg redirectUri = http://localhost:8080/authorization +18:11:09.938 [XNIO-1 task-3] wamEtkgLSPWCDV3Qj9mleQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.945 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7371ba7a +18:11:09.947 [XNIO-1 task-3] WVme1M5DTRiBPHQGS4LZlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.947 [XNIO-1 task-3] WVme1M5DTRiBPHQGS4LZlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.947 [XNIO-1 task-3] WVme1M5DTRiBPHQGS4LZlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.948 [XNIO-1 task-3] WVme1M5DTRiBPHQGS4LZlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:09.957 [XNIO-1 task-3] WVme1M5DTRiBPHQGS4LZlw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.966 [XNIO-1 task-3] fajJ6WzFRv6MgHNQOEO_SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.966 [XNIO-1 task-3] fajJ6WzFRv6MgHNQOEO_SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.966 [XNIO-1 task-3] fajJ6WzFRv6MgHNQOEO_SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.966 [XNIO-1 task-3] fajJ6WzFRv6MgHNQOEO_SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:09.971 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7371ba7a +18:11:09.977 [XNIO-1 task-3] fajJ6WzFRv6MgHNQOEO_SQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:09.991 [XNIO-1 task-3] U5dD_jfdRQKHO3F4U2bt-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.991 [XNIO-1 task-3] U5dD_jfdRQKHO3F4U2bt-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:09.991 [XNIO-1 task-3] U5dD_jfdRQKHO3F4U2bt-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:09.991 [XNIO-1 task-3] U5dD_jfdRQKHO3F4U2bt-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:10.001 [XNIO-1 task-3] U5dD_jfdRQKHO3F4U2bt-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.026 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e9cc735d-98c2-47be-b52d-afde63ea0a28 +Jun 28, 2024 6:11:10 PM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:10.053 [XNIO-1 task-3] _VEmklwDS9qxlfmkJ6vGlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.054 [XNIO-1 task-3] _VEmklwDS9qxlfmkJ6vGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.054 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6d86cfa2 +18:11:10.054 [XNIO-1 task-3] _VEmklwDS9qxlfmkJ6vGlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = O8NW2TKvT1WNbAl58DlaZQ redirectUri = http://localhost:8080/authorization +18:11:10.055 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6d86cfa2 +18:11:10.059 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:54ba5300-0a3b-4e75-b69d-ded062f700a4 +18:11:10.061 [XNIO-1 task-3] _VEmklwDS9qxlfmkJ6vGlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.062 [XNIO-1 task-3] _VEmklwDS9qxlfmkJ6vGlg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.077 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6d86cfa2 +18:11:10.089 [XNIO-1 task-3] 9C0B7_E3QvKKS5QqNXW6gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.089 [XNIO-1 task-3] 9C0B7_E3QvKKS5QqNXW6gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.089 [XNIO-1 task-3] 9C0B7_E3QvKKS5QqNXW6gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.090 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:da56ed06 +18:11:10.090 [XNIO-1 task-3] 9C0B7_E3QvKKS5QqNXW6gQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = h8bbvI92ReO1ZMt2c17MIw redirectUri = http://localhost:8080/authorization +18:11:10.095 [XNIO-1 task-3] 9C0B7_E3QvKKS5QqNXW6gQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.133 [XNIO-1 task-3] sWPBLfwdSgyW41YVRhOwsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.133 [XNIO-1 task-3] sWPBLfwdSgyW41YVRhOwsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.133 [XNIO-1 task-3] sWPBLfwdSgyW41YVRhOwsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.133 [XNIO-1 task-3] sWPBLfwdSgyW41YVRhOwsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:10.139 [XNIO-1 task-3] sWPBLfwdSgyW41YVRhOwsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.139 [XNIO-1 task-3] sWPBLfwdSgyW41YVRhOwsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.148 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:11:10.209 [XNIO-1 task-3] da51Abl_TxGhLCnY1A__Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.209 [XNIO-1 task-3] da51Abl_TxGhLCnY1A__Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.210 [XNIO-1 task-3] da51Abl_TxGhLCnY1A__Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.210 [XNIO-1 task-3] da51Abl_TxGhLCnY1A__Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTMzNDc2NGItN2VlMy00NzdlLTkwMTMtMWU2YjU0ZTFjMjJiOks1eWRfazhvUk8yb1Axcm1SRDhzRUE=", "Basic MTMzNDc2NGItN2VlMy00NzdlLTkwMTMtMWU2YjU0ZTFjMjJiOks1eWRfazhvUk8yb1Axcm1SRDhzRUE=", authorization) +18:11:10.220 [XNIO-1 task-3] da51Abl_TxGhLCnY1A__Yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.325 [XNIO-1 task-4] w0uO1OeHSvW_JpzlnxZE2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.326 [XNIO-1 task-4] w0uO1OeHSvW_JpzlnxZE2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.326 [XNIO-1 task-4] w0uO1OeHSvW_JpzlnxZE2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.326 [XNIO-1 task-4] w0uO1OeHSvW_JpzlnxZE2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:10.376 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9f1f53b6 +18:11:10.402 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9f1f53b6 +18:11:10.407 [XNIO-1 task-3] SKPKhl2PRpSnFZhyjS68ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.407 [XNIO-1 task-3] SKPKhl2PRpSnFZhyjS68ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.431 [XNIO-1 task-4] w0uO1OeHSvW_JpzlnxZE2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.432 [XNIO-1 task-3] SKPKhl2PRpSnFZhyjS68ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.432 [XNIO-1 task-4] w0uO1OeHSvW_JpzlnxZE2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.456 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:60412ec2-76a2-4397-bd8d-a8514ea89f07 +18:11:10.432 [XNIO-1 task-3] SKPKhl2PRpSnFZhyjS68ng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = AmMW4zsPTRyEFqMVmdZtBA redirectUri = http://localhost:8080/authorization +18:11:10.463 [XNIO-1 task-3] SKPKhl2PRpSnFZhyjS68ng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.472 [XNIO-1 task-3] E-AuC4eqT5K71LguRj3UMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.473 [XNIO-1 task-3] E-AuC4eqT5K71LguRj3UMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.473 [XNIO-1 task-3] E-AuC4eqT5K71LguRj3UMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.473 [XNIO-1 task-3] E-AuC4eqT5K71LguRj3UMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:10.481 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f1fbe66e-d350-47c0-8c97-32e571140e28 +18:11:10.482 [XNIO-1 task-3] E-AuC4eqT5K71LguRj3UMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +Jun 28, 2024 6:11:10 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:10.490 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:da56ed06 +18:11:10.495 [XNIO-1 task-3] HWi70MHFTpetGlMUyAfaPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.495 [XNIO-1 task-3] HWi70MHFTpetGlMUyAfaPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.495 [XNIO-1 task-3] HWi70MHFTpetGlMUyAfaPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.496 [XNIO-1 task-3] HWi70MHFTpetGlMUyAfaPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c6011434-758d-4b18-86ab-681535f3ca34 scope = null +18:11:10.499 [XNIO-1 task-4] z_IPzG42SjqOI0eVmgwIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.499 [XNIO-1 task-4] z_IPzG42SjqOI0eVmgwIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.500 [XNIO-1 task-4] z_IPzG42SjqOI0eVmgwIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.500 [XNIO-1 task-4] z_IPzG42SjqOI0eVmgwIcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Pg8m0gBpSAe2sSrG85Zs8Q redirectUri = http://localhost:8080/authorization +18:11:10.504 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:24e1f14c +18:11:10.504 [XNIO-1 task-3] HWi70MHFTpetGlMUyAfaPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.505 [XNIO-1 task-4] z_IPzG42SjqOI0eVmgwIcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.505 [XNIO-1 task-4] z_IPzG42SjqOI0eVmgwIcQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.506 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:80982dea-c663-45e2-87af-d115fc80e925 +18:11:10.516 [XNIO-1 task-4] iGE4WFWdTx2Q6o0UwCYwNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.517 [XNIO-1 task-4] iGE4WFWdTx2Q6o0UwCYwNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.517 [XNIO-1 task-4] iGE4WFWdTx2Q6o0UwCYwNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.517 [XNIO-1 task-4] iGE4WFWdTx2Q6o0UwCYwNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:10.520 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:60412ec2-76a2-4397-bd8d-a8514ea89f07 +18:11:10.528 [XNIO-1 task-4] iGE4WFWdTx2Q6o0UwCYwNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.536 [XNIO-1 task-3] BZ2f4hhPSP2Y2zJLzAA7yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.537 [XNIO-1 task-3] BZ2f4hhPSP2Y2zJLzAA7yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.537 [XNIO-1 task-3] BZ2f4hhPSP2Y2zJLzAA7yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.537 [XNIO-1 task-3] BZ2f4hhPSP2Y2zJLzAA7yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczMDEyY2QtOTM3NS00ZjY1LWE3MTQtNWFiOTkxNjI4ZjYzOnFYQmxxZ1pjUWJTcmZkdURzQ09ZQ0E=", "Basic MjczMDEyY2QtOTM3NS00ZjY1LWE3MTQtNWFiOTkxNjI4ZjYzOnFYQmxxZ1pjUWJTcmZkdURzQ09ZQ0E=", authorization) +18:11:10.542 [XNIO-1 task-4] kwHo0y-_ReClmc12B_lx7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.542 [XNIO-1 task-4] kwHo0y-_ReClmc12B_lx7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.542 [XNIO-1 task-4] kwHo0y-_ReClmc12B_lx7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.543 [XNIO-1 task-4] kwHo0y-_ReClmc12B_lx7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:10.547 [XNIO-1 task-3] BZ2f4hhPSP2Y2zJLzAA7yQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:10.552 [XNIO-1 task-4] kwHo0y-_ReClmc12B_lx7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.552 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4c0c9428 +18:11:10.555 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0341243f-1415-4947-9a79-54762dbf5a14 +18:11:10.586 [XNIO-1 task-4] Dc7k4wGQRwOc38w5cfGZaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.586 [XNIO-1 task-4] Dc7k4wGQRwOc38w5cfGZaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.587 [XNIO-1 task-4] Dc7k4wGQRwOc38w5cfGZaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.587 [XNIO-1 task-4] Dc7k4wGQRwOc38w5cfGZaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:10.589 [XNIO-1 task-3] l0PqK9oPQouEfynF-vKXlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.589 [XNIO-1 task-3] l0PqK9oPQouEfynF-vKXlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.589 [XNIO-1 task-3] l0PqK9oPQouEfynF-vKXlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.590 [XNIO-1 task-3] l0PqK9oPQouEfynF-vKXlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:10.592 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7371ba7a +18:11:10.596 [XNIO-1 task-3] l0PqK9oPQouEfynF-vKXlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.597 [XNIO-1 task-3] l0PqK9oPQouEfynF-vKXlg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.597 [XNIO-1 task-4] Dc7k4wGQRwOc38w5cfGZaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.599 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9e1ece09-6981-4cc0-a847-74ca843c9c2c +18:11:10.600 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:24e1f14c +18:11:10.610 [XNIO-1 task-4] yu5Ik8AFQJSru-oZ-WQS3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.610 [XNIO-1 task-4] yu5Ik8AFQJSru-oZ-WQS3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.610 [XNIO-1 task-4] yu5Ik8AFQJSru-oZ-WQS3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.610 [XNIO-1 task-4] yu5Ik8AFQJSru-oZ-WQS3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:10.615 [XNIO-1 task-3] yvcdNTgwQzeqBYpR2Kriew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.616 [XNIO-1 task-3] yvcdNTgwQzeqBYpR2Kriew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.616 [XNIO-1 task-3] yvcdNTgwQzeqBYpR2Kriew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.616 [XNIO-1 task-3] yvcdNTgwQzeqBYpR2Kriew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:10.616 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9e1ece09-6981-4cc0-a847-74ca843c9c2c +18:11:10.620 [XNIO-1 task-4] yu5Ik8AFQJSru-oZ-WQS3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.621 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9e1ece09-6981-4cc0-a847-74ca843c9c2c +18:11:10.625 [XNIO-1 task-3] yvcdNTgwQzeqBYpR2Kriew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.628 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0c384d8e-2575-4d0c-bb9a-2bc7682759aa +18:11:10.630 [XNIO-1 task-4] s1AdGmTUR2GsmgSnNG-U2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.630 [XNIO-1 task-4] s1AdGmTUR2GsmgSnNG-U2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.630 [XNIO-1 task-4] s1AdGmTUR2GsmgSnNG-U2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.631 [XNIO-1 task-4] s1AdGmTUR2GsmgSnNG-U2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:10.635 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:11:10.635 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.635 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.635 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.635 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.636 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:10.636 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0c384d8e-2575-4d0c-bb9a-2bc7682759aa scope = null +18:11:10.639 [XNIO-1 task-4] s1AdGmTUR2GsmgSnNG-U2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.639 [XNIO-1 task-4] s1AdGmTUR2GsmgSnNG-U2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.643 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0c384d8e-2575-4d0c-bb9a-2bc7682759aa +18:11:10.648 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.648 [XNIO-1 task-3] 9NX_D0VcQNmDVOMZJIOXXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.657 [XNIO-1 task-3] y_ZfddVTRzCksjjVNozmqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.657 [XNIO-1 task-3] y_ZfddVTRzCksjjVNozmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.657 [XNIO-1 task-3] y_ZfddVTRzCksjjVNozmqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.657 [XNIO-1 task-3] y_ZfddVTRzCksjjVNozmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:11:10.667 [XNIO-1 task-3] y_ZfddVTRzCksjjVNozmqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.667 [XNIO-1 task-4] eEzGcfo9TIauN2y_OrHMcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.667 [XNIO-1 task-4] eEzGcfo9TIauN2y_OrHMcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.667 [XNIO-1 task-3] y_ZfddVTRzCksjjVNozmqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:10.671 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e9cc735d-98c2-47be-b52d-afde63ea0a28 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:11:10.680 [XNIO-1 task-4] eEzGcfo9TIauN2y_OrHMcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.680 [XNIO-1 task-4] eEzGcfo9TIauN2y_OrHMcg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.691 [XNIO-1 task-4] fkkLcgbHSDO83YEfxEusYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.691 [XNIO-1 task-4] fkkLcgbHSDO83YEfxEusYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.691 [XNIO-1 task-4] fkkLcgbHSDO83YEfxEusYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.691 [XNIO-1 task-4] fkkLcgbHSDO83YEfxEusYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fa6d2ade-c9f3-491a-8f73-15eda1baa8bb scope = null +18:11:10.702 [XNIO-1 task-4] fkkLcgbHSDO83YEfxEusYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.704 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:53a22e4c-e294-4d96-a0a8-c87c333057d0 +18:11:10.728 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e00b2f4 +18:11:10.729 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.729 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.729 [XNIO-1 task-4] TdAF3ItyScCgHx4zCtgVwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.729 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.729 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e00b2f4 +18:11:10.729 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.729 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.729 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:10.729 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gZVs99GLSAqJnVYdSUtjfw redirectUri = http://localhost:8080/authorization +18:11:10.734 [XNIO-1 task-4] TdAF3ItyScCgHx4zCtgVwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.741 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.741 [XNIO-1 task-3] _E3DlmrKTA2uBI5jCfaalg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.749 [XNIO-1 task-3] 8RnmJRY5QduSypff8Sc8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.749 [XNIO-1 task-3] 8RnmJRY5QduSypff8Sc8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 6:11:10 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:11:10.749 [XNIO-1 task-3] 8RnmJRY5QduSypff8Sc8AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +18:11:10.749 [XNIO-1 task-3] 8RnmJRY5QduSypff8Sc8AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +18:11:10.754 [XNIO-1 task-4] 2i6R4dytSmetZhKT0BuR8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:11:10.759 [XNIO-1 task-3] 8RnmJRY5QduSypff8Sc8AA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.765 [XNIO-1 task-4] 2i6R4dytSmetZhKT0BuR8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.792 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f1fbe66e-d350-47c0-8c97-32e571140e28 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:11:10.796 [XNIO-1 task-3] _ruPIAsFR3aq7imE-P3vgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.796 [XNIO-1 task-3] _ruPIAsFR3aq7imE-P3vgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.796 [XNIO-1 task-3] _ruPIAsFR3aq7imE-P3vgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.796 [XNIO-1 task-3] _ruPIAsFR3aq7imE-P3vgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:10.804 [XNIO-1 task-3] _ruPIAsFR3aq7imE-P3vgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.804 [XNIO-1 task-3] _ruPIAsFR3aq7imE-P3vgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.849 [XNIO-1 task-3] LC9EhcDBQH23H-OBaD7awg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.849 [XNIO-1 task-3] LC9EhcDBQH23H-OBaD7awg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.849 [XNIO-1 task-3] LC9EhcDBQH23H-OBaD7awg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.849 [XNIO-1 task-3] LC9EhcDBQH23H-OBaD7awg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0341243f-1415-4947-9a79-54762dbf5a14 scope = null +18:11:10.858 [XNIO-1 task-3] LC9EhcDBQH23H-OBaD7awg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.877 [XNIO-1 task-3] PonRmVoNTIyZGeKsXWE2dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.877 [XNIO-1 task-3] PonRmVoNTIyZGeKsXWE2dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.877 [XNIO-1 task-3] PonRmVoNTIyZGeKsXWE2dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:11:10.878 [XNIO-1 task-3] PonRmVoNTIyZGeKsXWE2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.878 [XNIO-1 task-3] PonRmVoNTIyZGeKsXWE2dQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 34335dd9-fb79-4911-8bb9-08e7172c655c scope = null +18:11:10.887 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9f1f53b6 + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +18:11:10.894 [XNIO-1 task-4] 9z7sAZOMT0a0Wr-zMVvEXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +18:11:10.894 [XNIO-1 task-4] 9z7sAZOMT0a0Wr-zMVvEXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.894 [XNIO-1 task-4] 9z7sAZOMT0a0Wr-zMVvEXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:10.894 [XNIO-1 task-4] 9z7sAZOMT0a0Wr-zMVvEXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pfgGqcwjT4ehaLQQQe7mTQ redirectUri = http://localhost:8080/authorization +18:11:10.898 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e9cc735d-98c2-47be-b52d-afde63ea0a28 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:10.903 [XNIO-1 task-3] 1IawSTQeT_avQwNo6I6R9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.903 [XNIO-1 task-3] 1IawSTQeT_avQwNo6I6R9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.903 [XNIO-1 task-3] 1IawSTQeT_avQwNo6I6R9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.903 [XNIO-1 task-3] 1IawSTQeT_avQwNo6I6R9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1b5d4b1e-37e7-48e3-975f-678968ca7bd2 scope = null +18:11:10.905 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:05ae7978 +18:11:10.913 [XNIO-1 task-3] 1IawSTQeT_avQwNo6I6R9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:10.918 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6e00b2f4 +18:11:10.925 [XNIO-1 task-3] Xq-j7ZaDQMeQUF5vBEiOhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.925 [XNIO-1 task-4] GDUEEuuyQSCI2GR3aiPtfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.926 [XNIO-1 task-4] GDUEEuuyQSCI2GR3aiPtfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.926 [XNIO-1 task-4] GDUEEuuyQSCI2GR3aiPtfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:10.926 [XNIO-1 task-3] Xq-j7ZaDQMeQUF5vBEiOhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:10.926 [XNIO-1 task-3] Xq-j7ZaDQMeQUF5vBEiOhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.926 [XNIO-1 task-4] GDUEEuuyQSCI2GR3aiPtfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:10.926 [XNIO-1 task-3] Xq-j7ZaDQMeQUF5vBEiOhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:10.934 [XNIO-1 task-3] Xq-j7ZaDQMeQUF5vBEiOhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:10.935 [XNIO-1 task-3] Xq-j7ZaDQMeQUF5vBEiOhw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.937 [XNIO-1 task-4] GDUEEuuyQSCI2GR3aiPtfg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.946 [XNIO-1 task-4] AjbcUjw9RhGcpp1tir-MJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.946 [XNIO-1 task-4] AjbcUjw9RhGcpp1tir-MJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.947 [XNIO-1 task-4] AjbcUjw9RhGcpp1tir-MJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.947 [XNIO-1 task-4] AjbcUjw9RhGcpp1tir-MJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = aa752524-2adc-4cbb-9c49-b258bc30a4a4 scope = null +18:11:10.949 [XNIO-1 task-3] PxTXLlGiTn-NHFY8KDKo5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.949 [XNIO-1 task-3] PxTXLlGiTn-NHFY8KDKo5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.949 [XNIO-1 task-3] PxTXLlGiTn-NHFY8KDKo5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:10.950 [XNIO-1 task-3] PxTXLlGiTn-NHFY8KDKo5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = de35fba2-35c4-4024-8df5-28adb5337ffb scope = null +18:11:10.958 [XNIO-1 task-4] AjbcUjw9RhGcpp1tir-MJA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.963 [XNIO-1 task-3] PxTXLlGiTn-NHFY8KDKo5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:10.968 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7371ba7a +18:11:10.968 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ce7adfc8-05db-46fa-8c97-80c9ac64fd6b +18:11:11.006 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5607d872 +18:11:11.007 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5607d872 +18:11:11.042 [XNIO-1 task-3] 3A5vjIUrQp6rWwUCQABaqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.042 [XNIO-1 task-3] 3A5vjIUrQp6rWwUCQABaqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.042 [XNIO-1 task-3] 3A5vjIUrQp6rWwUCQABaqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.043 [XNIO-1 task-3] 3A5vjIUrQp6rWwUCQABaqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:11.047 [XNIO-1 task-4] afYGL9pdT0yf4b3Dp0U_1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.047 [XNIO-1 task-4] afYGL9pdT0yf4b3Dp0U_1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.047 [XNIO-1 task-4] afYGL9pdT0yf4b3Dp0U_1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.047 [XNIO-1 task-4] afYGL9pdT0yf4b3Dp0U_1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:11.047 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ce7adfc8-05db-46fa-8c97-80c9ac64fd6b +18:11:11.052 [XNIO-1 task-4] afYGL9pdT0yf4b3Dp0U_1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:11.052 [XNIO-1 task-4] afYGL9pdT0yf4b3Dp0U_1Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.053 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:512cf01c +18:11:11.054 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:512cf01c +18:11:11.067 [XNIO-1 task-3] KmwUoM-QTiqHzmHjPN44bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.067 [XNIO-1 task-3] KmwUoM-QTiqHzmHjPN44bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.067 [XNIO-1 task-3] KmwUoM-QTiqHzmHjPN44bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.068 [XNIO-1 task-3] KmwUoM-QTiqHzmHjPN44bg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0a74eb31-cbb2-4ca0-9230-cfae677ce99a scope = null +18:11:11.077 [XNIO-1 task-3] KmwUoM-QTiqHzmHjPN44bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.077 [XNIO-1 task-4] L5EUNZBuSi6PFsU-sFH2KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.077 [XNIO-1 task-4] L5EUNZBuSi6PFsU-sFH2KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.078 [XNIO-1 task-4] L5EUNZBuSi6PFsU-sFH2KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.078 [XNIO-1 task-4] L5EUNZBuSi6PFsU-sFH2KA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6kpWtIw1Rvq6KOnkyeqw9A redirectUri = http://localhost:8080/authorization +18:11:11.084 [XNIO-1 task-4] L5EUNZBuSi6PFsU-sFH2KA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.086 [XNIO-1 task-3] vHW_rYDCQJqdYZM2wbSqvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.087 [XNIO-1 task-3] vHW_rYDCQJqdYZM2wbSqvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.087 [XNIO-1 task-3] vHW_rYDCQJqdYZM2wbSqvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.087 [XNIO-1 task-3] vHW_rYDCQJqdYZM2wbSqvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:11.096 [XNIO-1 task-3] vHW_rYDCQJqdYZM2wbSqvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.098 [XNIO-1 task-4] 5STq9vVxRZG3Pn6Q6RES2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.098 [XNIO-1 task-4] 5STq9vVxRZG3Pn6Q6RES2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.098 [XNIO-1 task-4] 5STq9vVxRZG3Pn6Q6RES2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.098 [XNIO-1 task-4] 5STq9vVxRZG3Pn6Q6RES2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:11.106 [XNIO-1 task-4] 5STq9vVxRZG3Pn6Q6RES2Q ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:11.117 [XNIO-1 task-3] xN7ALRf7TZadXyXTbEIYlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.117 [XNIO-1 task-3] xN7ALRf7TZadXyXTbEIYlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.118 [XNIO-1 task-3] xN7ALRf7TZadXyXTbEIYlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.118 [XNIO-1 task-3] xN7ALRf7TZadXyXTbEIYlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 36e98077-2f83-48a9-8ec1-309b6da95639 scope = null +18:11:11.121 [XNIO-1 task-4] P-EVi-2NTHyPQBSTWADw0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.121 [XNIO-1 task-4] P-EVi-2NTHyPQBSTWADw0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.122 [XNIO-1 task-4] P-EVi-2NTHyPQBSTWADw0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.122 [XNIO-1 task-4] P-EVi-2NTHyPQBSTWADw0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = wgrIVxZVRmGHYkgY6wdmxw redirectUri = http://localhost:8080/authorization +18:11:11.128 [XNIO-1 task-4] P-EVi-2NTHyPQBSTWADw0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.130 [XNIO-1 task-3] xN7ALRf7TZadXyXTbEIYlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.150 [XNIO-1 task-4] 6ORbdhPBRQmxxJ4WTyDHQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.150 [XNIO-1 task-4] 6ORbdhPBRQmxxJ4WTyDHQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.150 [XNIO-1 task-4] 6ORbdhPBRQmxxJ4WTyDHQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.150 [XNIO-1 task-4] 6ORbdhPBRQmxxJ4WTyDHQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:11.156 [XNIO-1 task-4] 6ORbdhPBRQmxxJ4WTyDHQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:11.156 [XNIO-1 task-4] 6ORbdhPBRQmxxJ4WTyDHQA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.159 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:394f998e +18:11:11.227 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:394f998e +18:11:11.286 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:05ae7978 +18:11:11.335 [XNIO-1 task-4] D9-X_tE-QtWU6tL_YDVCWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.335 [XNIO-1 task-4] D9-X_tE-QtWU6tL_YDVCWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.335 [XNIO-1 task-3] mUdy5L9WTSKbGgKaRyoVoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.335 [XNIO-1 task-4] D9-X_tE-QtWU6tL_YDVCWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.335 [XNIO-1 task-4] D9-X_tE-QtWU6tL_YDVCWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.335 [XNIO-1 task-3] mUdy5L9WTSKbGgKaRyoVoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.359 [XNIO-1 task-3] mUdy5L9WTSKbGgKaRyoVoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.359 [XNIO-1 task-3] mUdy5L9WTSKbGgKaRyoVoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:11.359 [XNIO-1 task-3] mUdy5L9WTSKbGgKaRyoVoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.365 [XNIO-1 task-3] mUdy5L9WTSKbGgKaRyoVoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.366 [XNIO-1 task-4] D9-X_tE-QtWU6tL_YDVCWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.368 [XNIO-1 task-3] AawD27azR-amZluym0CtIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.368 [XNIO-1 task-3] AawD27azR-amZluym0CtIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.368 [XNIO-1 task-3] AawD27azR-amZluym0CtIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.368 [XNIO-1 task-3] AawD27azR-amZluym0CtIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:11.373 [XNIO-1 task-3] AawD27azR-amZluym0CtIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.380 [XNIO-1 task-3] niCQ6MaPTnuJ-G_6RBJaKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.381 [XNIO-1 task-3] niCQ6MaPTnuJ-G_6RBJaKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.381 [XNIO-1 task-3] niCQ6MaPTnuJ-G_6RBJaKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.381 [XNIO-1 task-3] niCQ6MaPTnuJ-G_6RBJaKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:11.388 [XNIO-1 task-4] lf-czXxERXqbW00Oc-159Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.388 [XNIO-1 task-4] lf-czXxERXqbW00Oc-159Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.389 [XNIO-1 task-4] lf-czXxERXqbW00Oc-159Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.389 [XNIO-1 task-4] lf-czXxERXqbW00Oc-159Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:11.390 [XNIO-1 task-3] niCQ6MaPTnuJ-G_6RBJaKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.394 [XNIO-1 task-3] CddxLw3ITiiGiwG6vCqMxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.394 [XNIO-1 task-3] CddxLw3ITiiGiwG6vCqMxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.394 [XNIO-1 task-3] CddxLw3ITiiGiwG6vCqMxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.394 [XNIO-1 task-3] CddxLw3ITiiGiwG6vCqMxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:11.395 [XNIO-1 task-4] lf-czXxERXqbW00Oc-159Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:11.395 [XNIO-1 task-4] lf-czXxERXqbW00Oc-159Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.403 [XNIO-1 task-3] CddxLw3ITiiGiwG6vCqMxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.410 [XNIO-1 task-3] qJw53JuzR2qI6FcOjFbyjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.410 [XNIO-1 task-3] qJw53JuzR2qI6FcOjFbyjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.411 [XNIO-1 task-3] qJw53JuzR2qI6FcOjFbyjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.411 [XNIO-1 task-3] qJw53JuzR2qI6FcOjFbyjw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.416 [XNIO-1 task-3] qJw53JuzR2qI6FcOjFbyjw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.423 [XNIO-1 task-4] sD_3SHRcTOWWlQGGkHJnDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.423 [XNIO-1 task-4] sD_3SHRcTOWWlQGGkHJnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.423 [XNIO-1 task-3] sNd2XIZmTHSV4jFI2EzOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.423 [XNIO-1 task-4] sD_3SHRcTOWWlQGGkHJnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.423 [XNIO-1 task-3] sNd2XIZmTHSV4jFI2EzOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.423 [XNIO-1 task-4] sD_3SHRcTOWWlQGGkHJnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.423 [XNIO-1 task-4] sD_3SHRcTOWWlQGGkHJnDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:11.423 [XNIO-1 task-4] sD_3SHRcTOWWlQGGkHJnDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = zXWe3j5mRPmqoSy7FYpb-w redirectUri = http://localhost:8080/authorization +18:11:11.428 [XNIO-1 task-3] sNd2XIZmTHSV4jFI2EzOVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.429 [XNIO-1 task-4] sD_3SHRcTOWWlQGGkHJnDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.433 [XNIO-1 task-3] oFv1m51rRxmz3-lucnVTcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.433 [XNIO-1 task-3] oFv1m51rRxmz3-lucnVTcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.433 [XNIO-1 task-3] oFv1m51rRxmz3-lucnVTcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.433 [XNIO-1 task-3] oFv1m51rRxmz3-lucnVTcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.439 [XNIO-1 task-3] oFv1m51rRxmz3-lucnVTcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.443 [XNIO-1 task-3] n2Y49BG3Rqe4eQLxkfX2vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.443 [XNIO-1 task-3] n2Y49BG3Rqe4eQLxkfX2vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.443 [XNIO-1 task-3] n2Y49BG3Rqe4eQLxkfX2vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.443 [XNIO-1 task-3] n2Y49BG3Rqe4eQLxkfX2vA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:11.449 [XNIO-1 task-3] n2Y49BG3Rqe4eQLxkfX2vA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:11.449 [XNIO-1 task-3] n2Y49BG3Rqe4eQLxkfX2vA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.449 [XNIO-1 task-3] n2Y49BG3Rqe4eQLxkfX2vA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.449 [XNIO-1 task-4] wXGr0adWQfS5n6W9E-uXKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.449 [XNIO-1 task-4] wXGr0adWQfS5n6W9E-uXKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.449 [XNIO-1 task-4] wXGr0adWQfS5n6W9E-uXKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.454 [XNIO-1 task-4] wXGr0adWQfS5n6W9E-uXKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.458 [XNIO-1 task-4] 1vO12iuLS5iWSJy4RSRG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.458 [XNIO-1 task-4] 1vO12iuLS5iWSJy4RSRG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.458 [XNIO-1 task-4] 1vO12iuLS5iWSJy4RSRG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.458 [XNIO-1 task-4] 1vO12iuLS5iWSJy4RSRG2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = q67aa_zdRa-w8X0xSGELWQ redirectUri = http://localhost:8080/authorization +18:11:11.461 [XNIO-1 task-5] vxdpInXVQISDwtES3V8RqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.461 [XNIO-1 task-5] vxdpInXVQISDwtES3V8RqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.461 [XNIO-1 task-5] vxdpInXVQISDwtES3V8RqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.461 [XNIO-1 task-5] vxdpInXVQISDwtES3V8RqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.463 [XNIO-1 task-4] 1vO12iuLS5iWSJy4RSRG2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.465 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4e699ba6-7d83-4f5d-9fb8-a928adbfc76b +18:11:11.467 [XNIO-1 task-5] vxdpInXVQISDwtES3V8RqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.470 [XNIO-1 task-5] cDghj9VfTGKLeBBDF8FK2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.470 [XNIO-1 task-5] cDghj9VfTGKLeBBDF8FK2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.470 [XNIO-1 task-5] cDghj9VfTGKLeBBDF8FK2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.471 [XNIO-1 task-5] cDghj9VfTGKLeBBDF8FK2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:11.476 [XNIO-1 task-5] cDghj9VfTGKLeBBDF8FK2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.485 [XNIO-1 task-5] rw9u19GfRpazOyqESCmGbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.486 [XNIO-1 task-5] rw9u19GfRpazOyqESCmGbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.486 [XNIO-1 task-5] rw9u19GfRpazOyqESCmGbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.486 [XNIO-1 task-5] rw9u19GfRpazOyqESCmGbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:11.492 [XNIO-1 task-5] rw9u19GfRpazOyqESCmGbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.496 [XNIO-1 task-5] k5-L7G5-Q3-bdKsxbsv7Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.496 [XNIO-1 task-5] k5-L7G5-Q3-bdKsxbsv7Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.496 [XNIO-1 task-5] k5-L7G5-Q3-bdKsxbsv7Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.496 [XNIO-1 task-5] k5-L7G5-Q3-bdKsxbsv7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:11.501 [XNIO-1 task-5] k5-L7G5-Q3-bdKsxbsv7Cw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.506 [XNIO-1 task-5] dJ7nszjWSUCbrbhRkdrHHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.506 [XNIO-1 task-5] dJ7nszjWSUCbrbhRkdrHHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.506 [XNIO-1 task-5] dJ7nszjWSUCbrbhRkdrHHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.506 [XNIO-1 task-5] dJ7nszjWSUCbrbhRkdrHHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:11.510 [XNIO-1 task-5] dJ7nszjWSUCbrbhRkdrHHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.514 [XNIO-1 task-5] f5vKt74NTm6B7Nmkz0ST3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.514 [XNIO-1 task-5] f5vKt74NTm6B7Nmkz0ST3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.514 [XNIO-1 task-5] f5vKt74NTm6B7Nmkz0ST3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.514 [XNIO-1 task-5] f5vKt74NTm6B7Nmkz0ST3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.516 [XNIO-1 task-4] nPeGCv6mTVCvGWrmz8mTGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.516 [XNIO-1 task-4] nPeGCv6mTVCvGWrmz8mTGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.516 [XNIO-1 task-4] nPeGCv6mTVCvGWrmz8mTGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.516 [XNIO-1 task-4] nPeGCv6mTVCvGWrmz8mTGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:11.519 [XNIO-1 task-5] f5vKt74NTm6B7Nmkz0ST3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:11.520 [XNIO-1 task-5] f5vKt74NTm6B7Nmkz0ST3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.521 [XNIO-1 task-4] nPeGCv6mTVCvGWrmz8mTGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.526 [XNIO-1 task-4] f8vfKa1cQCqr3l7J8z1_rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.526 [XNIO-1 task-4] f8vfKa1cQCqr3l7J8z1_rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.526 [XNIO-1 task-4] f8vfKa1cQCqr3l7J8z1_rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.526 [XNIO-1 task-4] f8vfKa1cQCqr3l7J8z1_rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.531 [XNIO-1 task-4] f8vfKa1cQCqr3l7J8z1_rg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.537 [XNIO-1 task-4] vmWvkYIVTUmXvH1S5rTefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.537 [XNIO-1 task-4] vmWvkYIVTUmXvH1S5rTefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.537 [XNIO-1 task-4] vmWvkYIVTUmXvH1S5rTefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.537 [XNIO-1 task-4] vmWvkYIVTUmXvH1S5rTefQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.542 [XNIO-1 task-4] vmWvkYIVTUmXvH1S5rTefQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.545 [XNIO-1 task-4] 6hArgqmWRT6ejTy5k_wRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.545 [XNIO-1 task-4] 6hArgqmWRT6ejTy5k_wRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.546 [XNIO-1 task-4] 6hArgqmWRT6ejTy5k_wRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.546 [XNIO-1 task-4] 6hArgqmWRT6ejTy5k_wRtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.549 [XNIO-1 task-5] cjYl3mLXTveP4giq1sA_4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.549 [XNIO-1 task-5] cjYl3mLXTveP4giq1sA_4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.549 [XNIO-1 task-5] cjYl3mLXTveP4giq1sA_4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.549 [XNIO-1 task-5] cjYl3mLXTveP4giq1sA_4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2qMmnp6tT8qhQra3txaEOA redirectUri = http://localhost:8080/authorization +18:11:11.551 [XNIO-1 task-4] 6hArgqmWRT6ejTy5k_wRtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.556 [XNIO-1 task-4] ku3CFJadQv6P8iW8q8g2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.556 [XNIO-1 task-4] ku3CFJadQv6P8iW8q8g2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.556 [XNIO-1 task-4] ku3CFJadQv6P8iW8q8g2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.556 [XNIO-1 task-4] ku3CFJadQv6P8iW8q8g2BA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.561 [XNIO-1 task-5] cjYl3mLXTveP4giq1sA_4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.561 [XNIO-1 task-4] ku3CFJadQv6P8iW8q8g2BA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.566 [XNIO-1 task-4] bgZxuAxjS365TcU32Z_QPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.566 [XNIO-1 task-4] bgZxuAxjS365TcU32Z_QPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.566 [XNIO-1 task-4] bgZxuAxjS365TcU32Z_QPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.566 [XNIO-1 task-4] bgZxuAxjS365TcU32Z_QPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:11.571 [XNIO-1 task-4] bgZxuAxjS365TcU32Z_QPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.574 [XNIO-1 task-5] ShuuistgRtm3wonCN3D4tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.575 [XNIO-1 task-5] ShuuistgRtm3wonCN3D4tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.575 [XNIO-1 task-5] ShuuistgRtm3wonCN3D4tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.575 [XNIO-1 task-5] ShuuistgRtm3wonCN3D4tA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:11.575 [XNIO-1 task-4] ZDnT1bmXSRKjt_VXYvMAJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.576 [XNIO-1 task-4] ZDnT1bmXSRKjt_VXYvMAJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.576 [XNIO-1 task-4] ZDnT1bmXSRKjt_VXYvMAJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.576 [XNIO-1 task-4] ZDnT1bmXSRKjt_VXYvMAJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:11.580 [XNIO-1 task-4] ZDnT1bmXSRKjt_VXYvMAJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.585 [XNIO-1 task-4] omE71kwTRYi-P2N8usOg8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.586 [XNIO-1 task-4] omE71kwTRYi-P2N8usOg8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.586 [XNIO-1 task-4] omE71kwTRYi-P2N8usOg8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.586 [XNIO-1 task-4] omE71kwTRYi-P2N8usOg8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:11.587 [XNIO-1 task-5] ShuuistgRtm3wonCN3D4tA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.589 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:37a57631-c1db-4d82-a82c-e5a07ac4b53c +18:11:11.590 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:37a57631-c1db-4d82-a82c-e5a07ac4b53c +18:11:11.591 [XNIO-1 task-4] omE71kwTRYi-P2N8usOg8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.601 [XNIO-1 task-5] dZvCuAY8TAqKWIH03WA1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.601 [XNIO-1 task-5] dZvCuAY8TAqKWIH03WA1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.601 [XNIO-1 task-5] dZvCuAY8TAqKWIH03WA1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.601 [XNIO-1 task-5] dZvCuAY8TAqKWIH03WA1tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.612 [XNIO-1 task-5] dZvCuAY8TAqKWIH03WA1tQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.613 [XNIO-1 task-4] ZWKPlSwmRtqWuFqzRpw6GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.613 [XNIO-1 task-4] ZWKPlSwmRtqWuFqzRpw6GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.613 [XNIO-1 task-4] ZWKPlSwmRtqWuFqzRpw6GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.614 [XNIO-1 task-4] ZWKPlSwmRtqWuFqzRpw6GQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 57a903a5-910c-48ae-9a32-6b1bd0899e57 scope = null +18:11:11.616 [XNIO-1 task-5] IEMrI2uNQYCwg3t_GbftkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.616 [XNIO-1 task-5] IEMrI2uNQYCwg3t_GbftkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.616 [XNIO-1 task-5] IEMrI2uNQYCwg3t_GbftkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.616 [XNIO-1 task-5] IEMrI2uNQYCwg3t_GbftkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.621 [XNIO-1 task-5] IEMrI2uNQYCwg3t_GbftkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.623 [XNIO-1 task-4] ZWKPlSwmRtqWuFqzRpw6GQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.624 [XNIO-1 task-5] NAk-u9-mQ_Krke42BBsjhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.625 [XNIO-1 task-5] NAk-u9-mQ_Krke42BBsjhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.625 [XNIO-1 task-5] NAk-u9-mQ_Krke42BBsjhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.625 [XNIO-1 task-5] NAk-u9-mQ_Krke42BBsjhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.630 [XNIO-1 task-5] NAk-u9-mQ_Krke42BBsjhw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.634 [XNIO-1 task-5] LGw2gt6RTqS6wg6iQIm5Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.635 [XNIO-1 task-5] LGw2gt6RTqS6wg6iQIm5Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.635 [XNIO-1 task-5] LGw2gt6RTqS6wg6iQIm5Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.635 [XNIO-1 task-5] LGw2gt6RTqS6wg6iQIm5Og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.639 [XNIO-1 task-5] LGw2gt6RTqS6wg6iQIm5Og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.644 [XNIO-1 task-5] Z4DwDpC2R6ONy7MbUZ6cEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.644 [XNIO-1 task-5] Z4DwDpC2R6ONy7MbUZ6cEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.644 [XNIO-1 task-5] Z4DwDpC2R6ONy7MbUZ6cEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.644 [XNIO-1 task-5] Z4DwDpC2R6ONy7MbUZ6cEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.649 [XNIO-1 task-5] Z4DwDpC2R6ONy7MbUZ6cEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.653 [XNIO-1 task-5] H1EN1AXLS5OYi2glZEUImg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.653 [XNIO-1 task-5] H1EN1AXLS5OYi2glZEUImg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.653 [XNIO-1 task-5] H1EN1AXLS5OYi2glZEUImg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.653 [XNIO-1 task-5] H1EN1AXLS5OYi2glZEUImg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.658 [XNIO-1 task-5] H1EN1AXLS5OYi2glZEUImg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:11.659 [XNIO-1 task-4] wNhWrA_tQ7iRkPrlZhFovA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.659 [XNIO-1 task-4] wNhWrA_tQ7iRkPrlZhFovA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.660 [XNIO-1 task-4] wNhWrA_tQ7iRkPrlZhFovA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.660 [XNIO-1 task-4] wNhWrA_tQ7iRkPrlZhFovA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Vg6nb7kSSvWlMDWolDdChA redirectUri = http://localhost:8080/authorization +18:11:11.662 [XNIO-1 task-5] 42a5ZZrpQOGgqYHLKssXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.662 [XNIO-1 task-5] 42a5ZZrpQOGgqYHLKssXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.662 [XNIO-1 task-5] 42a5ZZrpQOGgqYHLKssXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:11.662 [XNIO-1 task-5] 42a5ZZrpQOGgqYHLKssXbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:11.667 [XNIO-1 task-4] wNhWrA_tQ7iRkPrlZhFovA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:11.667 [XNIO-1 task-4] wNhWrA_tQ7iRkPrlZhFovA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.671 [XNIO-1 task-5] OTqbrYg8RyyyM2Dl0XGxrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.671 [XNIO-1 task-5] OTqbrYg8RyyyM2Dl0XGxrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.672 [XNIO-1 task-5] OTqbrYg8RyyyM2Dl0XGxrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.672 [XNIO-1 task-5] OTqbrYg8RyyyM2Dl0XGxrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.676 [XNIO-1 task-5] OTqbrYg8RyyyM2Dl0XGxrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.680 [XNIO-1 task-5] ynxs4WtLRuC6F3WdV8Z5xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.680 [XNIO-1 task-5] ynxs4WtLRuC6F3WdV8Z5xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.680 [XNIO-1 task-5] ynxs4WtLRuC6F3WdV8Z5xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.680 [XNIO-1 task-5] ynxs4WtLRuC6F3WdV8Z5xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.685 [XNIO-1 task-5] ynxs4WtLRuC6F3WdV8Z5xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.688 [XNIO-1 task-5] ns6QyCgoQTS1h98CLuAZwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.688 [XNIO-1 task-5] ns6QyCgoQTS1h98CLuAZwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.688 [XNIO-1 task-5] ns6QyCgoQTS1h98CLuAZwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.689 [XNIO-1 task-5] ns6QyCgoQTS1h98CLuAZwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:11.694 [XNIO-1 task-5] ns6QyCgoQTS1h98CLuAZwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.697 [XNIO-1 task-5] Sq-1terhRcierfzCLz-mNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.697 [XNIO-1 task-5] Sq-1terhRcierfzCLz-mNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.697 [XNIO-1 task-5] Sq-1terhRcierfzCLz-mNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.697 [XNIO-1 task-5] Sq-1terhRcierfzCLz-mNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:11.702 [XNIO-1 task-5] Sq-1terhRcierfzCLz-mNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.705 [XNIO-1 task-5] SRlFZJsOQQW1SV_tjh6V0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.705 [XNIO-1 task-5] SRlFZJsOQQW1SV_tjh6V0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.705 [XNIO-1 task-5] SRlFZJsOQQW1SV_tjh6V0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.705 [XNIO-1 task-5] SRlFZJsOQQW1SV_tjh6V0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:11.710 [XNIO-1 task-5] SRlFZJsOQQW1SV_tjh6V0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.714 [XNIO-1 task-5] x27wZsRWTpKqAnccz5h51Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.714 [XNIO-1 task-5] x27wZsRWTpKqAnccz5h51Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.714 [XNIO-1 task-5] x27wZsRWTpKqAnccz5h51Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.714 [XNIO-1 task-5] x27wZsRWTpKqAnccz5h51Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:11.719 [XNIO-1 task-5] x27wZsRWTpKqAnccz5h51Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.722 [XNIO-1 task-5] UJj1JW7RRqeoJqqMgGqRyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.722 [XNIO-1 task-5] UJj1JW7RRqeoJqqMgGqRyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.722 [XNIO-1 task-5] UJj1JW7RRqeoJqqMgGqRyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.722 [XNIO-1 task-5] UJj1JW7RRqeoJqqMgGqRyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:11.727 [XNIO-1 task-5] UJj1JW7RRqeoJqqMgGqRyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.731 [XNIO-1 task-5] VHQe9R4jSv-GcxQ_D1rknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.731 [XNIO-1 task-5] VHQe9R4jSv-GcxQ_D1rknA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.731 [XNIO-1 task-5] VHQe9R4jSv-GcxQ_D1rknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.731 [XNIO-1 task-5] VHQe9R4jSv-GcxQ_D1rknA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:11.736 [XNIO-1 task-5] VHQe9R4jSv-GcxQ_D1rknA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.740 [XNIO-1 task-5] uQdSiBCXQX-nJtiSLsv9dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.740 [XNIO-1 task-5] uQdSiBCXQX-nJtiSLsv9dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.740 [XNIO-1 task-5] uQdSiBCXQX-nJtiSLsv9dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.740 [XNIO-1 task-5] uQdSiBCXQX-nJtiSLsv9dA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:11.746 [XNIO-1 task-5] uQdSiBCXQX-nJtiSLsv9dA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.750 [XNIO-1 task-5] QVs_JQAtSIK2PVdCKEYz_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.750 [XNIO-1 task-5] QVs_JQAtSIK2PVdCKEYz_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.751 [XNIO-1 task-5] QVs_JQAtSIK2PVdCKEYz_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.751 [XNIO-1 task-5] QVs_JQAtSIK2PVdCKEYz_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:11.756 [XNIO-1 task-5] QVs_JQAtSIK2PVdCKEYz_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.759 [XNIO-1 task-5] QrZAqLkPSMqY4IqyU6Ybbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.759 [XNIO-1 task-5] QrZAqLkPSMqY4IqyU6Ybbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.759 [XNIO-1 task-5] QrZAqLkPSMqY4IqyU6Ybbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.759 [XNIO-1 task-5] QrZAqLkPSMqY4IqyU6Ybbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:11.764 [XNIO-1 task-5] QrZAqLkPSMqY4IqyU6Ybbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.768 [XNIO-1 task-5] PT0RKsQNQQW_YNCTxTtjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.768 [XNIO-1 task-5] PT0RKsQNQQW_YNCTxTtjXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.768 [XNIO-1 task-5] PT0RKsQNQQW_YNCTxTtjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.768 [XNIO-1 task-5] PT0RKsQNQQW_YNCTxTtjXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:11.773 [XNIO-1 task-5] PT0RKsQNQQW_YNCTxTtjXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.777 [XNIO-1 task-5] GmYYm2gwT1q1o1NgO5l_Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.777 [XNIO-1 task-5] GmYYm2gwT1q1o1NgO5l_Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.777 [XNIO-1 task-5] GmYYm2gwT1q1o1NgO5l_Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.777 [XNIO-1 task-5] GmYYm2gwT1q1o1NgO5l_Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:11.782 [XNIO-1 task-5] GmYYm2gwT1q1o1NgO5l_Sw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.786 [XNIO-1 task-5] VHGE6_5lR3ODgika-kIALQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.786 [XNIO-1 task-5] VHGE6_5lR3ODgika-kIALQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.786 [XNIO-1 task-5] VHGE6_5lR3ODgika-kIALQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.786 [XNIO-1 task-5] VHGE6_5lR3ODgika-kIALQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.791 [XNIO-1 task-5] VHGE6_5lR3ODgika-kIALQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.794 [XNIO-1 task-5] WkjzbxIxSYKYadfdHK7koQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.794 [XNIO-1 task-5] WkjzbxIxSYKYadfdHK7koQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.795 [XNIO-1 task-5] WkjzbxIxSYKYadfdHK7koQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.795 [XNIO-1 task-5] WkjzbxIxSYKYadfdHK7koQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:11.799 [XNIO-1 task-5] WkjzbxIxSYKYadfdHK7koQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.804 [XNIO-1 task-5] 6sgO91ibS3q442b46PwG4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.804 [XNIO-1 task-5] 6sgO91ibS3q442b46PwG4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.804 [XNIO-1 task-5] 6sgO91ibS3q442b46PwG4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.804 [XNIO-1 task-5] 6sgO91ibS3q442b46PwG4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:11.809 [XNIO-1 task-5] 6sgO91ibS3q442b46PwG4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.813 [XNIO-1 task-5] yhB7KsBsTcWGFYysmBA9pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.813 [XNIO-1 task-5] yhB7KsBsTcWGFYysmBA9pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.813 [XNIO-1 task-5] yhB7KsBsTcWGFYysmBA9pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.813 [XNIO-1 task-5] yhB7KsBsTcWGFYysmBA9pA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:11.818 [XNIO-1 task-5] yhB7KsBsTcWGFYysmBA9pA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.821 [XNIO-1 task-5] DjDnido5Q0Km-pPRZp8zWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.821 [XNIO-1 task-5] DjDnido5Q0Km-pPRZp8zWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.821 [XNIO-1 task-5] DjDnido5Q0Km-pPRZp8zWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.821 [XNIO-1 task-5] DjDnido5Q0Km-pPRZp8zWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.826 [XNIO-1 task-5] DjDnido5Q0Km-pPRZp8zWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.829 [XNIO-1 task-5] yEd25wUfTUOKg2Oy-XoB4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.829 [XNIO-1 task-5] yEd25wUfTUOKg2Oy-XoB4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.829 [XNIO-1 task-5] yEd25wUfTUOKg2Oy-XoB4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.829 [XNIO-1 task-5] yEd25wUfTUOKg2Oy-XoB4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.834 [XNIO-1 task-5] yEd25wUfTUOKg2Oy-XoB4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.839 [XNIO-1 task-5] HGPnaqaKSw64hiF-6akZPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.839 [XNIO-1 task-5] HGPnaqaKSw64hiF-6akZPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.839 [XNIO-1 task-5] HGPnaqaKSw64hiF-6akZPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.839 [XNIO-1 task-5] HGPnaqaKSw64hiF-6akZPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:11.844 [XNIO-1 task-5] HGPnaqaKSw64hiF-6akZPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.847 [XNIO-1 task-5] 9oujdgAnQnaKYhZclJwtyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.847 [XNIO-1 task-5] 9oujdgAnQnaKYhZclJwtyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.847 [XNIO-1 task-5] 9oujdgAnQnaKYhZclJwtyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.847 [XNIO-1 task-5] 9oujdgAnQnaKYhZclJwtyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:11.852 [XNIO-1 task-5] 9oujdgAnQnaKYhZclJwtyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.855 [XNIO-1 task-5] 5I10JFODTQyvHK05nrVpCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.855 [XNIO-1 task-5] 5I10JFODTQyvHK05nrVpCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.855 [XNIO-1 task-5] 5I10JFODTQyvHK05nrVpCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.856 [XNIO-1 task-5] 5I10JFODTQyvHK05nrVpCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:11.860 [XNIO-1 task-5] 5I10JFODTQyvHK05nrVpCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.865 [XNIO-1 task-5] EWt2kBYHThuMVMxd7_Qs6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.865 [XNIO-1 task-5] EWt2kBYHThuMVMxd7_Qs6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.865 [XNIO-1 task-5] EWt2kBYHThuMVMxd7_Qs6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.865 [XNIO-1 task-5] EWt2kBYHThuMVMxd7_Qs6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.870 [XNIO-1 task-5] EWt2kBYHThuMVMxd7_Qs6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.873 [XNIO-1 task-5] AwiqCGZ1Q2e8Z7ImZDy5nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.873 [XNIO-1 task-5] AwiqCGZ1Q2e8Z7ImZDy5nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.874 [XNIO-1 task-5] AwiqCGZ1Q2e8Z7ImZDy5nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.874 [XNIO-1 task-5] AwiqCGZ1Q2e8Z7ImZDy5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:11.878 [XNIO-1 task-5] AwiqCGZ1Q2e8Z7ImZDy5nQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.881 [XNIO-1 task-5] amSqcwSVS2SMeLC3S6vpiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.881 [XNIO-1 task-5] amSqcwSVS2SMeLC3S6vpiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.882 [XNIO-1 task-5] amSqcwSVS2SMeLC3S6vpiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.882 [XNIO-1 task-5] amSqcwSVS2SMeLC3S6vpiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:11.886 [XNIO-1 task-5] amSqcwSVS2SMeLC3S6vpiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.890 [XNIO-1 task-5] 4UAUAxLISBqaGIEpW8iI2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.890 [XNIO-1 task-5] 4UAUAxLISBqaGIEpW8iI2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.890 [XNIO-1 task-5] 4UAUAxLISBqaGIEpW8iI2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.890 [XNIO-1 task-5] 4UAUAxLISBqaGIEpW8iI2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.895 [XNIO-1 task-5] 4UAUAxLISBqaGIEpW8iI2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.898 [XNIO-1 task-5] ynpbdR6aRDeHMs3lt5dd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.898 [XNIO-1 task-5] ynpbdR6aRDeHMs3lt5dd4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.898 [XNIO-1 task-5] ynpbdR6aRDeHMs3lt5dd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.898 [XNIO-1 task-5] ynpbdR6aRDeHMs3lt5dd4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.903 [XNIO-1 task-5] ynpbdR6aRDeHMs3lt5dd4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.908 [XNIO-1 task-5] fpEOxd96SJWL5WoXOL7uUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.908 [XNIO-1 task-5] fpEOxd96SJWL5WoXOL7uUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.908 [XNIO-1 task-5] fpEOxd96SJWL5WoXOL7uUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.909 [XNIO-1 task-5] fpEOxd96SJWL5WoXOL7uUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:11.913 [XNIO-1 task-5] fpEOxd96SJWL5WoXOL7uUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.916 [XNIO-1 task-5] tDVdws4xSu-NkG96UXF8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.916 [XNIO-1 task-5] tDVdws4xSu-NkG96UXF8zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.916 [XNIO-1 task-5] tDVdws4xSu-NkG96UXF8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.917 [XNIO-1 task-5] tDVdws4xSu-NkG96UXF8zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:11.921 [XNIO-1 task-5] tDVdws4xSu-NkG96UXF8zQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.925 [XNIO-1 task-5] 5NnTlzfoT2yjnriBCvf3AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.925 [XNIO-1 task-5] 5NnTlzfoT2yjnriBCvf3AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.925 [XNIO-1 task-5] 5NnTlzfoT2yjnriBCvf3AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.926 [XNIO-1 task-5] 5NnTlzfoT2yjnriBCvf3AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:11.931 [XNIO-1 task-5] 5NnTlzfoT2yjnriBCvf3AQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.936 [XNIO-1 task-5] FUh_XcJqQSy8JcSa2bKKvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.936 [XNIO-1 task-5] FUh_XcJqQSy8JcSa2bKKvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.936 [XNIO-1 task-5] FUh_XcJqQSy8JcSa2bKKvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.936 [XNIO-1 task-5] FUh_XcJqQSy8JcSa2bKKvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:11.941 [XNIO-1 task-5] FUh_XcJqQSy8JcSa2bKKvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.945 [XNIO-1 task-5] zF9pYdMxTn6E4TK6k9dfPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.945 [XNIO-1 task-5] zF9pYdMxTn6E4TK6k9dfPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.945 [XNIO-1 task-5] zF9pYdMxTn6E4TK6k9dfPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.945 [XNIO-1 task-5] zF9pYdMxTn6E4TK6k9dfPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:11.950 [XNIO-1 task-5] zF9pYdMxTn6E4TK6k9dfPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.954 [XNIO-1 task-5] fu5q9kp5T0W6aHL5kgKSXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.954 [XNIO-1 task-5] fu5q9kp5T0W6aHL5kgKSXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.954 [XNIO-1 task-5] fu5q9kp5T0W6aHL5kgKSXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.954 [XNIO-1 task-5] fu5q9kp5T0W6aHL5kgKSXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:11.959 [XNIO-1 task-5] fu5q9kp5T0W6aHL5kgKSXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.962 [XNIO-1 task-5] FACUpHguTSG2XRHUolMt9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.962 [XNIO-1 task-5] FACUpHguTSG2XRHUolMt9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.962 [XNIO-1 task-5] FACUpHguTSG2XRHUolMt9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.962 [XNIO-1 task-5] FACUpHguTSG2XRHUolMt9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:11.967 [XNIO-1 task-5] FACUpHguTSG2XRHUolMt9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.970 [XNIO-1 task-5] h7NWvoUESI-rJMPBBL6urQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.970 [XNIO-1 task-5] h7NWvoUESI-rJMPBBL6urQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.970 [XNIO-1 task-5] h7NWvoUESI-rJMPBBL6urQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.971 [XNIO-1 task-5] h7NWvoUESI-rJMPBBL6urQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:11.975 [XNIO-1 task-5] h7NWvoUESI-rJMPBBL6urQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.979 [XNIO-1 task-5] 095791JuTlCc4DUtFYejyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.979 [XNIO-1 task-5] 095791JuTlCc4DUtFYejyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.979 [XNIO-1 task-5] 095791JuTlCc4DUtFYejyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.980 [XNIO-1 task-5] 095791JuTlCc4DUtFYejyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:11.984 [XNIO-1 task-5] 095791JuTlCc4DUtFYejyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.989 [XNIO-1 task-5] w4f8prZvQ_iRxNJFObREMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.989 [XNIO-1 task-5] w4f8prZvQ_iRxNJFObREMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.989 [XNIO-1 task-5] w4f8prZvQ_iRxNJFObREMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.989 [XNIO-1 task-5] w4f8prZvQ_iRxNJFObREMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:11.994 [XNIO-1 task-5] w4f8prZvQ_iRxNJFObREMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:11.998 [XNIO-1 task-5] kd80Uv5aQTKZyw6rUByQQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.998 [XNIO-1 task-5] kd80Uv5aQTKZyw6rUByQQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:11.998 [XNIO-1 task-5] kd80Uv5aQTKZyw6rUByQQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:11.998 [XNIO-1 task-5] kd80Uv5aQTKZyw6rUByQQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.003 [XNIO-1 task-5] kd80Uv5aQTKZyw6rUByQQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.007 [XNIO-1 task-5] Af2AZXBXRNa6nYgvYDvvRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.007 [XNIO-1 task-5] Af2AZXBXRNa6nYgvYDvvRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.007 [XNIO-1 task-5] Af2AZXBXRNa6nYgvYDvvRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.008 [XNIO-1 task-5] Af2AZXBXRNa6nYgvYDvvRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.012 [XNIO-1 task-5] Af2AZXBXRNa6nYgvYDvvRg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.016 [XNIO-1 task-5] EM33sWcuQ9mJLT1mInW8UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.016 [XNIO-1 task-5] EM33sWcuQ9mJLT1mInW8UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.016 [XNIO-1 task-5] EM33sWcuQ9mJLT1mInW8UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.017 [XNIO-1 task-5] EM33sWcuQ9mJLT1mInW8UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.021 [XNIO-1 task-5] EM33sWcuQ9mJLT1mInW8UQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.026 [XNIO-1 task-5] g5QtUYr9SLK3iYsabf74Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.026 [XNIO-1 task-5] g5QtUYr9SLK3iYsabf74Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.026 [XNIO-1 task-5] g5QtUYr9SLK3iYsabf74Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.026 [XNIO-1 task-5] g5QtUYr9SLK3iYsabf74Og DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:12.031 [XNIO-1 task-5] g5QtUYr9SLK3iYsabf74Og DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.034 [XNIO-1 task-5] Som3JmeSSWGBhFR9EUxK4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.034 [XNIO-1 task-5] Som3JmeSSWGBhFR9EUxK4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.034 [XNIO-1 task-5] Som3JmeSSWGBhFR9EUxK4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.034 [XNIO-1 task-5] Som3JmeSSWGBhFR9EUxK4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.039 [XNIO-1 task-5] Som3JmeSSWGBhFR9EUxK4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.043 [XNIO-1 task-5] tnNp2vN9Sqyq4Bct7LMgLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.044 [XNIO-1 task-5] tnNp2vN9Sqyq4Bct7LMgLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.044 [XNIO-1 task-5] tnNp2vN9Sqyq4Bct7LMgLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.044 [XNIO-1 task-5] tnNp2vN9Sqyq4Bct7LMgLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.049 [XNIO-1 task-5] tnNp2vN9Sqyq4Bct7LMgLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.055 [XNIO-1 task-5] 9kQIJCRESoW4eq7qyYkgTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.055 [XNIO-1 task-5] 9kQIJCRESoW4eq7qyYkgTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.055 [XNIO-1 task-5] 9kQIJCRESoW4eq7qyYkgTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.055 [XNIO-1 task-5] 9kQIJCRESoW4eq7qyYkgTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.060 [XNIO-1 task-5] 9kQIJCRESoW4eq7qyYkgTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.063 [XNIO-1 task-5] 9uK-EddSQGaUfs0DdOnOqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.063 [XNIO-1 task-5] 9uK-EddSQGaUfs0DdOnOqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.063 [XNIO-1 task-5] 9uK-EddSQGaUfs0DdOnOqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.063 [XNIO-1 task-5] 9uK-EddSQGaUfs0DdOnOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.068 [XNIO-1 task-5] 9uK-EddSQGaUfs0DdOnOqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.071 [XNIO-1 task-5] gNtWkhX_T7i7mksUltDabg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.071 [XNIO-1 task-5] gNtWkhX_T7i7mksUltDabg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.071 [XNIO-1 task-5] gNtWkhX_T7i7mksUltDabg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.072 [XNIO-1 task-5] gNtWkhX_T7i7mksUltDabg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.076 [XNIO-1 task-5] gNtWkhX_T7i7mksUltDabg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.080 [XNIO-1 task-5] H4uqBD1TSWio7mI9q0n3dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.080 [XNIO-1 task-5] H4uqBD1TSWio7mI9q0n3dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.081 [XNIO-1 task-5] H4uqBD1TSWio7mI9q0n3dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.081 [XNIO-1 task-5] H4uqBD1TSWio7mI9q0n3dg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.085 [XNIO-1 task-5] H4uqBD1TSWio7mI9q0n3dg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.089 [XNIO-1 task-5] 3H3_zII3RjaCaBidHxGd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.089 [XNIO-1 task-5] 3H3_zII3RjaCaBidHxGd0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.089 [XNIO-1 task-5] 3H3_zII3RjaCaBidHxGd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.089 [XNIO-1 task-5] 3H3_zII3RjaCaBidHxGd0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.094 [XNIO-1 task-5] 3H3_zII3RjaCaBidHxGd0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.097 [XNIO-1 task-5] _HX6oMaXQtis6pFokWpYeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.097 [XNIO-1 task-5] _HX6oMaXQtis6pFokWpYeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.098 [XNIO-1 task-5] _HX6oMaXQtis6pFokWpYeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.098 [XNIO-1 task-5] _HX6oMaXQtis6pFokWpYeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.102 [XNIO-1 task-5] _HX6oMaXQtis6pFokWpYeQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.105 [XNIO-1 task-5] xxMXPNjrRfmDtCJqAyOlSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.105 [XNIO-1 task-5] xxMXPNjrRfmDtCJqAyOlSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.106 [XNIO-1 task-5] xxMXPNjrRfmDtCJqAyOlSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.106 [XNIO-1 task-5] xxMXPNjrRfmDtCJqAyOlSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.110 [XNIO-1 task-5] xxMXPNjrRfmDtCJqAyOlSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.114 [XNIO-1 task-5] FP41QU5cRx29Sn5f8JlKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.114 [XNIO-1 task-5] FP41QU5cRx29Sn5f8JlKCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.114 [XNIO-1 task-5] FP41QU5cRx29Sn5f8JlKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.114 [XNIO-1 task-5] FP41QU5cRx29Sn5f8JlKCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.119 [XNIO-1 task-5] FP41QU5cRx29Sn5f8JlKCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.123 [XNIO-1 task-5] pnLJdW5vTdeKLvxdnWFScQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.123 [XNIO-1 task-5] pnLJdW5vTdeKLvxdnWFScQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.123 [XNIO-1 task-5] pnLJdW5vTdeKLvxdnWFScQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.123 [XNIO-1 task-5] pnLJdW5vTdeKLvxdnWFScQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.129 [XNIO-1 task-5] pnLJdW5vTdeKLvxdnWFScQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.134 [XNIO-1 task-5] vu19OH77S6WozF_gzDGGzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.134 [XNIO-1 task-5] vu19OH77S6WozF_gzDGGzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.134 [XNIO-1 task-5] vu19OH77S6WozF_gzDGGzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.134 [XNIO-1 task-5] vu19OH77S6WozF_gzDGGzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.139 [XNIO-1 task-5] vu19OH77S6WozF_gzDGGzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.145 [XNIO-1 task-5] O7nIHD4VR8-lX6yZ-kxLrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.145 [XNIO-1 task-5] O7nIHD4VR8-lX6yZ-kxLrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.145 [XNIO-1 task-5] O7nIHD4VR8-lX6yZ-kxLrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.145 [XNIO-1 task-5] O7nIHD4VR8-lX6yZ-kxLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.150 [XNIO-1 task-5] O7nIHD4VR8-lX6yZ-kxLrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.154 [XNIO-1 task-5] cebEKSczTuiJObW_7UuZJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.154 [XNIO-1 task-5] cebEKSczTuiJObW_7UuZJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.154 [XNIO-1 task-5] cebEKSczTuiJObW_7UuZJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.154 [XNIO-1 task-5] cebEKSczTuiJObW_7UuZJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.159 [XNIO-1 task-5] cebEKSczTuiJObW_7UuZJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.163 [XNIO-1 task-5] EBKU9ogeS22rFVXrU11OZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.163 [XNIO-1 task-5] EBKU9ogeS22rFVXrU11OZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.163 [XNIO-1 task-5] EBKU9ogeS22rFVXrU11OZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.163 [XNIO-1 task-5] EBKU9ogeS22rFVXrU11OZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:12.168 [XNIO-1 task-5] EBKU9ogeS22rFVXrU11OZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.171 [XNIO-1 task-5] vukP1lkUQGOciQ5xEjQmDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.172 [XNIO-1 task-5] vukP1lkUQGOciQ5xEjQmDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.172 [XNIO-1 task-5] vukP1lkUQGOciQ5xEjQmDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.172 [XNIO-1 task-5] vukP1lkUQGOciQ5xEjQmDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:12.177 [XNIO-1 task-5] vukP1lkUQGOciQ5xEjQmDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.181 [XNIO-1 task-5] PFUHYbBoQC6byzcQFjPfTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.181 [XNIO-1 task-5] PFUHYbBoQC6byzcQFjPfTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.181 [XNIO-1 task-5] PFUHYbBoQC6byzcQFjPfTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.182 [XNIO-1 task-5] PFUHYbBoQC6byzcQFjPfTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.186 [XNIO-1 task-5] PFUHYbBoQC6byzcQFjPfTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.190 [XNIO-1 task-5] 8RqN1FuDRGKQ4b0dInQ3tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.190 [XNIO-1 task-5] 8RqN1FuDRGKQ4b0dInQ3tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.190 [XNIO-1 task-5] 8RqN1FuDRGKQ4b0dInQ3tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.191 [XNIO-1 task-5] 8RqN1FuDRGKQ4b0dInQ3tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.195 [XNIO-1 task-5] 8RqN1FuDRGKQ4b0dInQ3tQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.198 [XNIO-1 task-5] 4aKvL1ixT2qAPant-sPOuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.199 [XNIO-1 task-5] 4aKvL1ixT2qAPant-sPOuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.199 [XNIO-1 task-5] 4aKvL1ixT2qAPant-sPOuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.199 [XNIO-1 task-5] 4aKvL1ixT2qAPant-sPOuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.203 [XNIO-1 task-5] 4aKvL1ixT2qAPant-sPOuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.207 [XNIO-1 task-5] 1aJU3hcFSyOyjEWIe4V4tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.207 [XNIO-1 task-5] 1aJU3hcFSyOyjEWIe4V4tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.207 [XNIO-1 task-5] 1aJU3hcFSyOyjEWIe4V4tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.208 [XNIO-1 task-5] 1aJU3hcFSyOyjEWIe4V4tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.212 [XNIO-1 task-5] 1aJU3hcFSyOyjEWIe4V4tw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.218 [XNIO-1 task-5] jamCEG1ERxqFabqzG28jfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.218 [XNIO-1 task-5] jamCEG1ERxqFabqzG28jfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.218 [XNIO-1 task-5] jamCEG1ERxqFabqzG28jfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.218 [XNIO-1 task-5] jamCEG1ERxqFabqzG28jfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.223 [XNIO-1 task-5] jamCEG1ERxqFabqzG28jfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.227 [XNIO-1 task-5] qS7CwQtCS_ycwKc3RXp4vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.227 [XNIO-1 task-5] qS7CwQtCS_ycwKc3RXp4vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.227 [XNIO-1 task-5] qS7CwQtCS_ycwKc3RXp4vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.227 [XNIO-1 task-5] qS7CwQtCS_ycwKc3RXp4vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.232 [XNIO-1 task-5] qS7CwQtCS_ycwKc3RXp4vw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.235 [XNIO-1 task-5] QJhdJacBTwOoolZSIAu4Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.235 [XNIO-1 task-5] QJhdJacBTwOoolZSIAu4Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.235 [XNIO-1 task-5] QJhdJacBTwOoolZSIAu4Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.235 [XNIO-1 task-5] QJhdJacBTwOoolZSIAu4Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.240 [XNIO-1 task-5] QJhdJacBTwOoolZSIAu4Mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.244 [XNIO-1 task-5] o13Uc1SSS8u_4jTT-L4ckw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.244 [XNIO-1 task-5] o13Uc1SSS8u_4jTT-L4ckw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.244 [XNIO-1 task-5] o13Uc1SSS8u_4jTT-L4ckw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.244 [XNIO-1 task-5] o13Uc1SSS8u_4jTT-L4ckw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.249 [XNIO-1 task-5] o13Uc1SSS8u_4jTT-L4ckw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.254 [XNIO-1 task-5] bLzP_EdmQCGZmcj5BVJe2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.254 [XNIO-1 task-5] bLzP_EdmQCGZmcj5BVJe2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.254 [XNIO-1 task-5] bLzP_EdmQCGZmcj5BVJe2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.254 [XNIO-1 task-5] bLzP_EdmQCGZmcj5BVJe2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.259 [XNIO-1 task-5] bLzP_EdmQCGZmcj5BVJe2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.263 [XNIO-1 task-5] cjT25y7URCCqf024qyZ8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.263 [XNIO-1 task-5] cjT25y7URCCqf024qyZ8Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.264 [XNIO-1 task-5] cjT25y7URCCqf024qyZ8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.264 [XNIO-1 task-5] cjT25y7URCCqf024qyZ8Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.269 [XNIO-1 task-5] cjT25y7URCCqf024qyZ8Xw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.273 [XNIO-1 task-5] ovAFTJJHQpumvIK8sVEGXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.273 [XNIO-1 task-5] ovAFTJJHQpumvIK8sVEGXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.273 [XNIO-1 task-5] ovAFTJJHQpumvIK8sVEGXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.273 [XNIO-1 task-5] ovAFTJJHQpumvIK8sVEGXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.278 [XNIO-1 task-5] ovAFTJJHQpumvIK8sVEGXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.282 [XNIO-1 task-5] 1ykdvH_hSAepnDuiouye5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.282 [XNIO-1 task-5] 1ykdvH_hSAepnDuiouye5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.283 [XNIO-1 task-5] 1ykdvH_hSAepnDuiouye5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.283 [XNIO-1 task-5] 1ykdvH_hSAepnDuiouye5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.287 [XNIO-1 task-5] 1ykdvH_hSAepnDuiouye5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.291 [XNIO-1 task-5] 9-WiAYuMROOvrh_6PXSDuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.291 [XNIO-1 task-5] 9-WiAYuMROOvrh_6PXSDuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.292 [XNIO-1 task-5] 9-WiAYuMROOvrh_6PXSDuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.292 [XNIO-1 task-5] 9-WiAYuMROOvrh_6PXSDuA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:12.296 [XNIO-1 task-5] 9-WiAYuMROOvrh_6PXSDuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.300 [XNIO-1 task-5] wI1Lwbi5T5WMYiBvSlb0sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.300 [XNIO-1 task-5] wI1Lwbi5T5WMYiBvSlb0sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.300 [XNIO-1 task-5] wI1Lwbi5T5WMYiBvSlb0sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.300 [XNIO-1 task-5] wI1Lwbi5T5WMYiBvSlb0sA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.304 [XNIO-1 task-5] wI1Lwbi5T5WMYiBvSlb0sA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.308 [XNIO-1 task-5] XHIhHeRySnyekLUaa7ZbPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.308 [XNIO-1 task-5] XHIhHeRySnyekLUaa7ZbPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.308 [XNIO-1 task-5] XHIhHeRySnyekLUaa7ZbPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.308 [XNIO-1 task-5] XHIhHeRySnyekLUaa7ZbPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.313 [XNIO-1 task-5] XHIhHeRySnyekLUaa7ZbPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.319 [XNIO-1 task-5] qup_BDrxQ9uzY2wlA_j4gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.319 [XNIO-1 task-5] qup_BDrxQ9uzY2wlA_j4gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.319 [XNIO-1 task-5] qup_BDrxQ9uzY2wlA_j4gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.319 [XNIO-1 task-5] qup_BDrxQ9uzY2wlA_j4gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.324 [XNIO-1 task-5] qup_BDrxQ9uzY2wlA_j4gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.327 [XNIO-1 task-5] hkFAWlEYSm2C1ayFCr6p_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.327 [XNIO-1 task-5] hkFAWlEYSm2C1ayFCr6p_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.327 [XNIO-1 task-5] hkFAWlEYSm2C1ayFCr6p_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.327 [XNIO-1 task-5] hkFAWlEYSm2C1ayFCr6p_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.332 [XNIO-1 task-5] hkFAWlEYSm2C1ayFCr6p_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.337 [XNIO-1 task-5] 9GRSY81xQ_y6lB6_ys78PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.337 [XNIO-1 task-5] 9GRSY81xQ_y6lB6_ys78PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.337 [XNIO-1 task-5] 9GRSY81xQ_y6lB6_ys78PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.337 [XNIO-1 task-5] 9GRSY81xQ_y6lB6_ys78PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.342 [XNIO-1 task-5] 9GRSY81xQ_y6lB6_ys78PQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.346 [XNIO-1 task-5] RFtrEwCnS4yccxvzyqOeGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.346 [XNIO-1 task-5] RFtrEwCnS4yccxvzyqOeGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.347 [XNIO-1 task-5] RFtrEwCnS4yccxvzyqOeGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.347 [XNIO-1 task-5] RFtrEwCnS4yccxvzyqOeGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:12.351 [XNIO-1 task-5] RFtrEwCnS4yccxvzyqOeGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.356 [XNIO-1 task-5] o_kHA1KjQQ6bJA1ns4odfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.356 [XNIO-1 task-5] o_kHA1KjQQ6bJA1ns4odfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.356 [XNIO-1 task-5] o_kHA1KjQQ6bJA1ns4odfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.356 [XNIO-1 task-5] o_kHA1KjQQ6bJA1ns4odfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.384 [XNIO-1 task-5] o_kHA1KjQQ6bJA1ns4odfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.389 [XNIO-1 task-5] rcsWl1S1RnK9iZoejNsUjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.389 [XNIO-1 task-5] rcsWl1S1RnK9iZoejNsUjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.389 [XNIO-1 task-5] rcsWl1S1RnK9iZoejNsUjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.390 [XNIO-1 task-5] rcsWl1S1RnK9iZoejNsUjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.394 [XNIO-1 task-5] rcsWl1S1RnK9iZoejNsUjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.398 [XNIO-1 task-5] cRN0jDr9R_mRvHWN9x66Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.398 [XNIO-1 task-5] cRN0jDr9R_mRvHWN9x66Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.398 [XNIO-1 task-5] cRN0jDr9R_mRvHWN9x66Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.398 [XNIO-1 task-5] cRN0jDr9R_mRvHWN9x66Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.403 [XNIO-1 task-5] cRN0jDr9R_mRvHWN9x66Yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.407 [XNIO-1 task-5] dkdpcsCsS0eJXHWkUyCN6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.407 [XNIO-1 task-5] dkdpcsCsS0eJXHWkUyCN6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.407 [XNIO-1 task-5] dkdpcsCsS0eJXHWkUyCN6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.407 [XNIO-1 task-5] dkdpcsCsS0eJXHWkUyCN6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.412 [XNIO-1 task-5] dkdpcsCsS0eJXHWkUyCN6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.417 [XNIO-1 task-5] x5sN4hE9R2m2RdCL55YhxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.417 [XNIO-1 task-5] x5sN4hE9R2m2RdCL55YhxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.417 [XNIO-1 task-5] x5sN4hE9R2m2RdCL55YhxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.417 [XNIO-1 task-5] x5sN4hE9R2m2RdCL55YhxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.422 [XNIO-1 task-5] x5sN4hE9R2m2RdCL55YhxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.426 [XNIO-1 task-5] 1rHjpRKBQdWWfOxR_eBvfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.426 [XNIO-1 task-5] 1rHjpRKBQdWWfOxR_eBvfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.426 [XNIO-1 task-5] 1rHjpRKBQdWWfOxR_eBvfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.426 [XNIO-1 task-5] 1rHjpRKBQdWWfOxR_eBvfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.431 [XNIO-1 task-5] 1rHjpRKBQdWWfOxR_eBvfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.435 [XNIO-1 task-5] _nsRs0LGSk62Yml1MevqxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.435 [XNIO-1 task-5] _nsRs0LGSk62Yml1MevqxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.435 [XNIO-1 task-5] _nsRs0LGSk62Yml1MevqxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.435 [XNIO-1 task-5] _nsRs0LGSk62Yml1MevqxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.440 [XNIO-1 task-5] _nsRs0LGSk62Yml1MevqxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.444 [XNIO-1 task-5] fyR-VkQzT_yfDHHbiCjcdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.444 [XNIO-1 task-5] fyR-VkQzT_yfDHHbiCjcdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.444 [XNIO-1 task-5] fyR-VkQzT_yfDHHbiCjcdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.444 [XNIO-1 task-5] fyR-VkQzT_yfDHHbiCjcdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.448 [XNIO-1 task-5] fyR-VkQzT_yfDHHbiCjcdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.452 [XNIO-1 task-5] uQEcMF4ORTumrhKfreuEVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.452 [XNIO-1 task-5] uQEcMF4ORTumrhKfreuEVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.452 [XNIO-1 task-5] uQEcMF4ORTumrhKfreuEVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.452 [XNIO-1 task-5] uQEcMF4ORTumrhKfreuEVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.457 [XNIO-1 task-5] uQEcMF4ORTumrhKfreuEVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.461 [XNIO-1 task-5] ChsqqfViQ4CuwwIfdL77dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.461 [XNIO-1 task-5] ChsqqfViQ4CuwwIfdL77dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.461 [XNIO-1 task-5] ChsqqfViQ4CuwwIfdL77dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.461 [XNIO-1 task-5] ChsqqfViQ4CuwwIfdL77dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.466 [XNIO-1 task-5] ChsqqfViQ4CuwwIfdL77dQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.469 [XNIO-1 task-5] 97qynWPrRlep3o4zYJijyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.469 [XNIO-1 task-5] 97qynWPrRlep3o4zYJijyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.469 [XNIO-1 task-5] 97qynWPrRlep3o4zYJijyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.470 [XNIO-1 task-5] 97qynWPrRlep3o4zYJijyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.474 [XNIO-1 task-5] 97qynWPrRlep3o4zYJijyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.478 [XNIO-1 task-5] THF_8R3JRZOwDluV_6SuGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.478 [XNIO-1 task-5] THF_8R3JRZOwDluV_6SuGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.478 [XNIO-1 task-5] THF_8R3JRZOwDluV_6SuGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.478 [XNIO-1 task-5] THF_8R3JRZOwDluV_6SuGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.483 [XNIO-1 task-5] THF_8R3JRZOwDluV_6SuGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.487 [XNIO-1 task-5] --DDGVdZTWqRtZtuTm6PyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.487 [XNIO-1 task-5] --DDGVdZTWqRtZtuTm6PyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.488 [XNIO-1 task-5] --DDGVdZTWqRtZtuTm6PyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.488 [XNIO-1 task-5] --DDGVdZTWqRtZtuTm6PyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.492 [XNIO-1 task-5] --DDGVdZTWqRtZtuTm6PyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.497 [XNIO-1 task-5] vfbGbOpmQKODf0hGUim_0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.497 [XNIO-1 task-5] vfbGbOpmQKODf0hGUim_0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.497 [XNIO-1 task-5] vfbGbOpmQKODf0hGUim_0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.497 [XNIO-1 task-5] vfbGbOpmQKODf0hGUim_0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.501 [XNIO-1 task-5] vfbGbOpmQKODf0hGUim_0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.506 [XNIO-1 task-5] KZkDpRzMTRuRd2e9Q1BezQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.506 [XNIO-1 task-5] KZkDpRzMTRuRd2e9Q1BezQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.506 [XNIO-1 task-5] KZkDpRzMTRuRd2e9Q1BezQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.506 [XNIO-1 task-5] KZkDpRzMTRuRd2e9Q1BezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.511 [XNIO-1 task-5] KZkDpRzMTRuRd2e9Q1BezQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.515 [XNIO-1 task-5] a364e9HKQIqjpygMCj8F3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.515 [XNIO-1 task-5] a364e9HKQIqjpygMCj8F3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.516 [XNIO-1 task-5] a364e9HKQIqjpygMCj8F3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.516 [XNIO-1 task-5] a364e9HKQIqjpygMCj8F3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.520 [XNIO-1 task-5] a364e9HKQIqjpygMCj8F3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.524 [XNIO-1 task-5] d2yF2zkQStOzoCjvndAqvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.524 [XNIO-1 task-5] d2yF2zkQStOzoCjvndAqvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.524 [XNIO-1 task-5] d2yF2zkQStOzoCjvndAqvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.524 [XNIO-1 task-5] d2yF2zkQStOzoCjvndAqvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.530 [XNIO-1 task-5] d2yF2zkQStOzoCjvndAqvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.534 [XNIO-1 task-5] EmudLzT5TRaWUQLu73Qo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.534 [XNIO-1 task-5] EmudLzT5TRaWUQLu73Qo2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.534 [XNIO-1 task-5] EmudLzT5TRaWUQLu73Qo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.534 [XNIO-1 task-5] EmudLzT5TRaWUQLu73Qo2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.539 [XNIO-1 task-5] EmudLzT5TRaWUQLu73Qo2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.544 [XNIO-1 task-5] uHle74TzQ3GkYkYiBcATiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.544 [XNIO-1 task-5] uHle74TzQ3GkYkYiBcATiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.544 [XNIO-1 task-5] uHle74TzQ3GkYkYiBcATiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.544 [XNIO-1 task-5] uHle74TzQ3GkYkYiBcATiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.549 [XNIO-1 task-5] uHle74TzQ3GkYkYiBcATiA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.554 [XNIO-1 task-5] btsoNerkSa-WP7caNDZ7lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.554 [XNIO-1 task-5] btsoNerkSa-WP7caNDZ7lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.554 [XNIO-1 task-5] btsoNerkSa-WP7caNDZ7lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.554 [XNIO-1 task-5] btsoNerkSa-WP7caNDZ7lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.561 [XNIO-1 task-5] btsoNerkSa-WP7caNDZ7lw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.566 [XNIO-1 task-5] wu7VRBH-ROy3TCiFDjhaAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.566 [XNIO-1 task-5] wu7VRBH-ROy3TCiFDjhaAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.566 [XNIO-1 task-5] wu7VRBH-ROy3TCiFDjhaAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.566 [XNIO-1 task-5] wu7VRBH-ROy3TCiFDjhaAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.573 [XNIO-1 task-5] wu7VRBH-ROy3TCiFDjhaAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.579 [XNIO-1 task-5] _h7kDptuTciJLf7CN85x8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.580 [XNIO-1 task-5] _h7kDptuTciJLf7CN85x8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.580 [XNIO-1 task-5] _h7kDptuTciJLf7CN85x8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.580 [XNIO-1 task-5] _h7kDptuTciJLf7CN85x8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.587 [XNIO-1 task-5] _h7kDptuTciJLf7CN85x8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.592 [XNIO-1 task-5] y5YX8oQtS0C7n6jqXlM1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.592 [XNIO-1 task-5] y5YX8oQtS0C7n6jqXlM1RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.593 [XNIO-1 task-5] y5YX8oQtS0C7n6jqXlM1RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.593 [XNIO-1 task-5] y5YX8oQtS0C7n6jqXlM1RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:12.600 [XNIO-1 task-5] y5YX8oQtS0C7n6jqXlM1RQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.605 [XNIO-1 task-5] WxGZxNnfRwyqjnEiCNktOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.605 [XNIO-1 task-5] WxGZxNnfRwyqjnEiCNktOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.605 [XNIO-1 task-5] WxGZxNnfRwyqjnEiCNktOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.605 [XNIO-1 task-5] WxGZxNnfRwyqjnEiCNktOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.612 [XNIO-1 task-5] WxGZxNnfRwyqjnEiCNktOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.617 [XNIO-1 task-5] rMdfIfnzSU-LlciSZ9knZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.617 [XNIO-1 task-5] rMdfIfnzSU-LlciSZ9knZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.617 [XNIO-1 task-5] rMdfIfnzSU-LlciSZ9knZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.617 [XNIO-1 task-5] rMdfIfnzSU-LlciSZ9knZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.624 [XNIO-1 task-5] rMdfIfnzSU-LlciSZ9knZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.630 [XNIO-1 task-5] beNJ_WglSe2qz2hJgf7Iig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.630 [XNIO-1 task-5] beNJ_WglSe2qz2hJgf7Iig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.630 [XNIO-1 task-5] beNJ_WglSe2qz2hJgf7Iig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.630 [XNIO-1 task-5] beNJ_WglSe2qz2hJgf7Iig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.637 [XNIO-1 task-5] beNJ_WglSe2qz2hJgf7Iig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.642 [XNIO-1 task-5] xZAtYTnmQs-Ee3bTQU3ruQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.643 [XNIO-1 task-5] xZAtYTnmQs-Ee3bTQU3ruQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.643 [XNIO-1 task-5] xZAtYTnmQs-Ee3bTQU3ruQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.643 [XNIO-1 task-5] xZAtYTnmQs-Ee3bTQU3ruQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.650 [XNIO-1 task-5] xZAtYTnmQs-Ee3bTQU3ruQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.655 [XNIO-1 task-5] wKPY41jRQHmYwsi4M3j8Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.655 [XNIO-1 task-5] wKPY41jRQHmYwsi4M3j8Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.655 [XNIO-1 task-5] wKPY41jRQHmYwsi4M3j8Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.655 [XNIO-1 task-5] wKPY41jRQHmYwsi4M3j8Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.662 [XNIO-1 task-5] wKPY41jRQHmYwsi4M3j8Kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.667 [XNIO-1 task-5] NsQBwVFfTxyQ9-sU9yfgAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.667 [XNIO-1 task-5] NsQBwVFfTxyQ9-sU9yfgAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.667 [XNIO-1 task-5] NsQBwVFfTxyQ9-sU9yfgAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.667 [XNIO-1 task-5] NsQBwVFfTxyQ9-sU9yfgAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.674 [XNIO-1 task-5] NsQBwVFfTxyQ9-sU9yfgAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.680 [XNIO-1 task-5] oSV1mTheTI-xW-bmHfmAzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.680 [XNIO-1 task-5] oSV1mTheTI-xW-bmHfmAzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.680 [XNIO-1 task-5] oSV1mTheTI-xW-bmHfmAzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.681 [XNIO-1 task-5] oSV1mTheTI-xW-bmHfmAzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.686 [XNIO-1 task-5] oSV1mTheTI-xW-bmHfmAzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.689 [XNIO-1 task-5] fuVrwj0XQ5Khl5gon5VbNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.689 [XNIO-1 task-5] fuVrwj0XQ5Khl5gon5VbNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.689 [XNIO-1 task-5] fuVrwj0XQ5Khl5gon5VbNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.689 [XNIO-1 task-5] fuVrwj0XQ5Khl5gon5VbNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.694 [XNIO-1 task-5] fuVrwj0XQ5Khl5gon5VbNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.697 [XNIO-1 task-5] uCpkRlslSa28UIB20EnWpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.697 [XNIO-1 task-5] uCpkRlslSa28UIB20EnWpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.698 [XNIO-1 task-5] uCpkRlslSa28UIB20EnWpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.698 [XNIO-1 task-5] uCpkRlslSa28UIB20EnWpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.702 [XNIO-1 task-5] uCpkRlslSa28UIB20EnWpg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.707 [XNIO-1 task-5] q98edG0aQ1qyH2pkDZJVQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.707 [XNIO-1 task-5] q98edG0aQ1qyH2pkDZJVQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.707 [XNIO-1 task-5] q98edG0aQ1qyH2pkDZJVQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.707 [XNIO-1 task-5] q98edG0aQ1qyH2pkDZJVQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.712 [XNIO-1 task-5] q98edG0aQ1qyH2pkDZJVQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.716 [XNIO-1 task-5] cu1KSyKGS1OWXRUh7eEh9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.716 [XNIO-1 task-5] cu1KSyKGS1OWXRUh7eEh9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.716 [XNIO-1 task-5] cu1KSyKGS1OWXRUh7eEh9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.716 [XNIO-1 task-5] cu1KSyKGS1OWXRUh7eEh9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.721 [XNIO-1 task-5] cu1KSyKGS1OWXRUh7eEh9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.725 [XNIO-1 task-5] IaWZ6gz6TzaY7Scg_vU_Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.725 [XNIO-1 task-5] IaWZ6gz6TzaY7Scg_vU_Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.725 [XNIO-1 task-5] IaWZ6gz6TzaY7Scg_vU_Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.726 [XNIO-1 task-5] IaWZ6gz6TzaY7Scg_vU_Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:12.730 [XNIO-1 task-5] IaWZ6gz6TzaY7Scg_vU_Eg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.735 [XNIO-1 task-5] ibIqVuxPR0q8NjESU206Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.735 [XNIO-1 task-5] ibIqVuxPR0q8NjESU206Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.735 [XNIO-1 task-5] ibIqVuxPR0q8NjESU206Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.735 [XNIO-1 task-5] ibIqVuxPR0q8NjESU206Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:12.740 [XNIO-1 task-5] ibIqVuxPR0q8NjESU206Iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.743 [XNIO-1 task-5] tynYUpoSTQyf3WoT8gM95A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.743 [XNIO-1 task-5] tynYUpoSTQyf3WoT8gM95A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.743 [XNIO-1 task-5] tynYUpoSTQyf3WoT8gM95A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.743 [XNIO-1 task-5] tynYUpoSTQyf3WoT8gM95A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:12.748 [XNIO-1 task-5] tynYUpoSTQyf3WoT8gM95A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.752 [XNIO-1 task-5] WmlOvhunRXmmZSeZqbXAxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.752 [XNIO-1 task-5] WmlOvhunRXmmZSeZqbXAxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.752 [XNIO-1 task-5] WmlOvhunRXmmZSeZqbXAxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.752 [XNIO-1 task-5] WmlOvhunRXmmZSeZqbXAxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:12.757 [XNIO-1 task-5] WmlOvhunRXmmZSeZqbXAxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.760 [XNIO-1 task-5] 0_-5aWIlQqyiV5OCh9_x8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.760 [XNIO-1 task-5] 0_-5aWIlQqyiV5OCh9_x8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.760 [XNIO-1 task-5] 0_-5aWIlQqyiV5OCh9_x8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.760 [XNIO-1 task-5] 0_-5aWIlQqyiV5OCh9_x8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:12.765 [XNIO-1 task-5] 0_-5aWIlQqyiV5OCh9_x8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.769 [XNIO-1 task-5] 93rdqWeBSiqfCez3SMFq4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.769 [XNIO-1 task-5] 93rdqWeBSiqfCez3SMFq4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.769 [XNIO-1 task-5] 93rdqWeBSiqfCez3SMFq4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.770 [XNIO-1 task-5] 93rdqWeBSiqfCez3SMFq4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:12.775 [XNIO-1 task-5] 93rdqWeBSiqfCez3SMFq4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.780 [XNIO-1 task-5] xmeJ0nWfSKyeEjUzs9pswg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.780 [XNIO-1 task-5] xmeJ0nWfSKyeEjUzs9pswg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.781 [XNIO-1 task-5] xmeJ0nWfSKyeEjUzs9pswg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.781 [XNIO-1 task-5] xmeJ0nWfSKyeEjUzs9pswg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.785 [XNIO-1 task-5] xmeJ0nWfSKyeEjUzs9pswg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.789 [XNIO-1 task-5] dZwVBkvwS62yDC2udQpgZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.790 [XNIO-1 task-5] dZwVBkvwS62yDC2udQpgZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.790 [XNIO-1 task-5] dZwVBkvwS62yDC2udQpgZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.790 [XNIO-1 task-5] dZwVBkvwS62yDC2udQpgZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.795 [XNIO-1 task-5] dZwVBkvwS62yDC2udQpgZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.799 [XNIO-1 task-5] tnif2BSpQAi7NbRBhSxYYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.799 [XNIO-1 task-5] tnif2BSpQAi7NbRBhSxYYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.800 [XNIO-1 task-5] tnif2BSpQAi7NbRBhSxYYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.800 [XNIO-1 task-5] tnif2BSpQAi7NbRBhSxYYA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.804 [XNIO-1 task-5] tnif2BSpQAi7NbRBhSxYYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.808 [XNIO-1 task-5] jAiKWJCTToiyUkxoUTulaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.808 [XNIO-1 task-5] jAiKWJCTToiyUkxoUTulaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.808 [XNIO-1 task-5] jAiKWJCTToiyUkxoUTulaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.808 [XNIO-1 task-5] jAiKWJCTToiyUkxoUTulaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.813 [XNIO-1 task-5] jAiKWJCTToiyUkxoUTulaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.818 [XNIO-1 task-5] qu6uWXVqTd2Z6myrslIY5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.818 [XNIO-1 task-5] qu6uWXVqTd2Z6myrslIY5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.818 [XNIO-1 task-5] qu6uWXVqTd2Z6myrslIY5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.818 [XNIO-1 task-5] qu6uWXVqTd2Z6myrslIY5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.822 [XNIO-1 task-5] qu6uWXVqTd2Z6myrslIY5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.827 [XNIO-1 task-5] St2q-c7BRfqdstUItRFQcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.827 [XNIO-1 task-5] St2q-c7BRfqdstUItRFQcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.827 [XNIO-1 task-5] St2q-c7BRfqdstUItRFQcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.828 [XNIO-1 task-5] St2q-c7BRfqdstUItRFQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.832 [XNIO-1 task-5] St2q-c7BRfqdstUItRFQcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.835 [XNIO-1 task-5] BTHlOsFOTLumteeb_y1Ogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.836 [XNIO-1 task-5] BTHlOsFOTLumteeb_y1Ogw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.836 [XNIO-1 task-5] BTHlOsFOTLumteeb_y1Ogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.836 [XNIO-1 task-5] BTHlOsFOTLumteeb_y1Ogw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.841 [XNIO-1 task-5] BTHlOsFOTLumteeb_y1Ogw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.845 [XNIO-1 task-5] o8XTJvC3SZGatZEhd6Vrng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.845 [XNIO-1 task-5] o8XTJvC3SZGatZEhd6Vrng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.846 [XNIO-1 task-5] o8XTJvC3SZGatZEhd6Vrng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.846 [XNIO-1 task-5] o8XTJvC3SZGatZEhd6Vrng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.851 [XNIO-1 task-5] o8XTJvC3SZGatZEhd6Vrng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.855 [XNIO-1 task-5] J6Y0KbtMSzObiZ5nWP7erQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.855 [XNIO-1 task-5] J6Y0KbtMSzObiZ5nWP7erQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.855 [XNIO-1 task-5] J6Y0KbtMSzObiZ5nWP7erQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.855 [XNIO-1 task-5] J6Y0KbtMSzObiZ5nWP7erQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.861 [XNIO-1 task-5] J6Y0KbtMSzObiZ5nWP7erQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.865 [XNIO-1 task-5] o6NMgumRSnSo80nzGuqJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.865 [XNIO-1 task-5] o6NMgumRSnSo80nzGuqJkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.865 [XNIO-1 task-5] o6NMgumRSnSo80nzGuqJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.865 [XNIO-1 task-5] o6NMgumRSnSo80nzGuqJkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.870 [XNIO-1 task-5] o6NMgumRSnSo80nzGuqJkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.873 [XNIO-1 task-5] axY7OV6UQUmQ54I4TDb7_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.873 [XNIO-1 task-5] axY7OV6UQUmQ54I4TDb7_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.874 [XNIO-1 task-5] axY7OV6UQUmQ54I4TDb7_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.874 [XNIO-1 task-5] axY7OV6UQUmQ54I4TDb7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:12.878 [XNIO-1 task-5] axY7OV6UQUmQ54I4TDb7_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.883 [XNIO-1 task-5] QnTVLc4lSHabqpMhnKbPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.884 [XNIO-1 task-5] QnTVLc4lSHabqpMhnKbPag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.884 [XNIO-1 task-5] QnTVLc4lSHabqpMhnKbPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.884 [XNIO-1 task-5] QnTVLc4lSHabqpMhnKbPag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:12.889 [XNIO-1 task-5] QnTVLc4lSHabqpMhnKbPag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.892 [XNIO-1 task-5] sOhj4qhUR0K5Ax4TnMURgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.892 [XNIO-1 task-5] sOhj4qhUR0K5Ax4TnMURgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.892 [XNIO-1 task-5] sOhj4qhUR0K5Ax4TnMURgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.892 [XNIO-1 task-5] sOhj4qhUR0K5Ax4TnMURgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.897 [XNIO-1 task-5] sOhj4qhUR0K5Ax4TnMURgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.901 [XNIO-1 task-5] CHCJyN01RRyesg-HZ2vQ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.901 [XNIO-1 task-5] CHCJyN01RRyesg-HZ2vQ7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.901 [XNIO-1 task-5] CHCJyN01RRyesg-HZ2vQ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.901 [XNIO-1 task-5] CHCJyN01RRyesg-HZ2vQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.906 [XNIO-1 task-5] CHCJyN01RRyesg-HZ2vQ7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.910 [XNIO-1 task-5] 4V4zBCGSTgKLRBwwEMCOLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.910 [XNIO-1 task-5] 4V4zBCGSTgKLRBwwEMCOLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.910 [XNIO-1 task-5] 4V4zBCGSTgKLRBwwEMCOLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.910 [XNIO-1 task-5] 4V4zBCGSTgKLRBwwEMCOLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.915 [XNIO-1 task-5] 4V4zBCGSTgKLRBwwEMCOLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.918 [XNIO-1 task-5] c7TQna1KQ0Ki974jovvVmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.918 [XNIO-1 task-5] c7TQna1KQ0Ki974jovvVmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.919 [XNIO-1 task-5] c7TQna1KQ0Ki974jovvVmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.919 [XNIO-1 task-5] c7TQna1KQ0Ki974jovvVmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:12.923 [XNIO-1 task-5] c7TQna1KQ0Ki974jovvVmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.928 [XNIO-1 task-5] ysU8CNQcQPGf3Dg22lBnVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.928 [XNIO-1 task-5] ysU8CNQcQPGf3Dg22lBnVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.928 [XNIO-1 task-5] ysU8CNQcQPGf3Dg22lBnVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.928 [XNIO-1 task-5] ysU8CNQcQPGf3Dg22lBnVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:12.932 [XNIO-1 task-5] ysU8CNQcQPGf3Dg22lBnVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.936 [XNIO-1 task-5] Es7RoVVLTy-YkydbaOGx2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.936 [XNIO-1 task-5] Es7RoVVLTy-YkydbaOGx2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.937 [XNIO-1 task-5] Es7RoVVLTy-YkydbaOGx2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.937 [XNIO-1 task-5] Es7RoVVLTy-YkydbaOGx2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.941 [XNIO-1 task-5] Es7RoVVLTy-YkydbaOGx2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.945 [XNIO-1 task-5] x5jPVs6PSqS17fEu06_cdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.945 [XNIO-1 task-5] x5jPVs6PSqS17fEu06_cdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.945 [XNIO-1 task-5] x5jPVs6PSqS17fEu06_cdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.945 [XNIO-1 task-5] x5jPVs6PSqS17fEu06_cdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.950 [XNIO-1 task-5] x5jPVs6PSqS17fEu06_cdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.955 [XNIO-1 task-5] Mljyv1NaQXqI_eEqi7AlyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.955 [XNIO-1 task-5] Mljyv1NaQXqI_eEqi7AlyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.956 [XNIO-1 task-5] Mljyv1NaQXqI_eEqi7AlyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.956 [XNIO-1 task-5] Mljyv1NaQXqI_eEqi7AlyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.963 [XNIO-1 task-5] Mljyv1NaQXqI_eEqi7AlyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.966 [XNIO-1 task-5] JcbtdVnLRgOA5JZh6M2adw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.967 [XNIO-1 task-5] JcbtdVnLRgOA5JZh6M2adw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.967 [XNIO-1 task-5] JcbtdVnLRgOA5JZh6M2adw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.967 [XNIO-1 task-5] JcbtdVnLRgOA5JZh6M2adw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:12.972 [XNIO-1 task-5] JcbtdVnLRgOA5JZh6M2adw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.976 [XNIO-1 task-5] fwAlDvaVREeJ3i-Je0eZpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.976 [XNIO-1 task-5] fwAlDvaVREeJ3i-Je0eZpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.976 [XNIO-1 task-5] fwAlDvaVREeJ3i-Je0eZpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.976 [XNIO-1 task-5] fwAlDvaVREeJ3i-Je0eZpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.981 [XNIO-1 task-5] fwAlDvaVREeJ3i-Je0eZpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.984 [XNIO-1 task-5] -0CzLDszSHi9QR5GcgBQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.984 [XNIO-1 task-5] -0CzLDszSHi9QR5GcgBQ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.984 [XNIO-1 task-5] -0CzLDszSHi9QR5GcgBQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.984 [XNIO-1 task-5] -0CzLDszSHi9QR5GcgBQ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:12.989 [XNIO-1 task-5] -0CzLDszSHi9QR5GcgBQ-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:12.993 [XNIO-1 task-5] wFrafH3-QAOdgHjDLtvZnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.993 [XNIO-1 task-5] wFrafH3-QAOdgHjDLtvZnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:12.993 [XNIO-1 task-5] wFrafH3-QAOdgHjDLtvZnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:12.993 [XNIO-1 task-5] wFrafH3-QAOdgHjDLtvZnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:12.998 [XNIO-1 task-5] wFrafH3-QAOdgHjDLtvZnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.002 [XNIO-1 task-5] aeU2haC4Rmq-i6WpltMfNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.002 [XNIO-1 task-5] aeU2haC4Rmq-i6WpltMfNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.002 [XNIO-1 task-5] aeU2haC4Rmq-i6WpltMfNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.002 [XNIO-1 task-5] aeU2haC4Rmq-i6WpltMfNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.007 [XNIO-1 task-5] aeU2haC4Rmq-i6WpltMfNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.010 [XNIO-1 task-5] OZZkpI9mQIOb0UoKSgeaFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.010 [XNIO-1 task-5] OZZkpI9mQIOb0UoKSgeaFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.010 [XNIO-1 task-5] OZZkpI9mQIOb0UoKSgeaFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.010 [XNIO-1 task-5] OZZkpI9mQIOb0UoKSgeaFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.015 [XNIO-1 task-5] OZZkpI9mQIOb0UoKSgeaFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.018 [XNIO-1 task-5] z_k3QDUARce3uNBlF1wVWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.019 [XNIO-1 task-5] z_k3QDUARce3uNBlF1wVWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.019 [XNIO-1 task-5] z_k3QDUARce3uNBlF1wVWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.019 [XNIO-1 task-5] z_k3QDUARce3uNBlF1wVWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.023 [XNIO-1 task-5] z_k3QDUARce3uNBlF1wVWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.031 [XNIO-1 task-5] MujN3nsRRlqmsbAHKiABtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.031 [XNIO-1 task-5] MujN3nsRRlqmsbAHKiABtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.031 [XNIO-1 task-5] MujN3nsRRlqmsbAHKiABtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.031 [XNIO-1 task-5] MujN3nsRRlqmsbAHKiABtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.036 [XNIO-1 task-5] MujN3nsRRlqmsbAHKiABtQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.040 [XNIO-1 task-5] 78iiYPGfR1yJ6BR8VYqBdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.040 [XNIO-1 task-5] 78iiYPGfR1yJ6BR8VYqBdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.040 [XNIO-1 task-5] 78iiYPGfR1yJ6BR8VYqBdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.040 [XNIO-1 task-5] 78iiYPGfR1yJ6BR8VYqBdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.044 [XNIO-1 task-5] 78iiYPGfR1yJ6BR8VYqBdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.048 [XNIO-1 task-5] OLDm5irwQhmZmZs8zsihZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.048 [XNIO-1 task-5] OLDm5irwQhmZmZs8zsihZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.048 [XNIO-1 task-5] OLDm5irwQhmZmZs8zsihZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.048 [XNIO-1 task-5] OLDm5irwQhmZmZs8zsihZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.053 [XNIO-1 task-5] OLDm5irwQhmZmZs8zsihZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.056 [XNIO-1 task-5] xEffzjIISwG4Fsqs0ELiDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.056 [XNIO-1 task-5] xEffzjIISwG4Fsqs0ELiDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.056 [XNIO-1 task-5] xEffzjIISwG4Fsqs0ELiDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.056 [XNIO-1 task-5] xEffzjIISwG4Fsqs0ELiDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.061 [XNIO-1 task-5] xEffzjIISwG4Fsqs0ELiDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.065 [XNIO-1 task-5] XoMfsxlSSu6JPLESViyDfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.065 [XNIO-1 task-5] XoMfsxlSSu6JPLESViyDfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.065 [XNIO-1 task-5] XoMfsxlSSu6JPLESViyDfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.066 [XNIO-1 task-5] XoMfsxlSSu6JPLESViyDfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.070 [XNIO-1 task-5] XoMfsxlSSu6JPLESViyDfQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.073 [XNIO-1 task-5] SSfD1P0MQDGTL2nsPirBtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.073 [XNIO-1 task-5] SSfD1P0MQDGTL2nsPirBtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.074 [XNIO-1 task-5] SSfD1P0MQDGTL2nsPirBtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.074 [XNIO-1 task-5] SSfD1P0MQDGTL2nsPirBtw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.078 [XNIO-1 task-5] SSfD1P0MQDGTL2nsPirBtw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.081 [XNIO-1 task-5] uwHt9tshS7i44445_KqNiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.082 [XNIO-1 task-5] uwHt9tshS7i44445_KqNiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.082 [XNIO-1 task-5] uwHt9tshS7i44445_KqNiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.082 [XNIO-1 task-5] uwHt9tshS7i44445_KqNiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.086 [XNIO-1 task-5] uwHt9tshS7i44445_KqNiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.100 [XNIO-1 task-5] tj3W5fMDQq2DnUwSBGGq9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.100 [XNIO-1 task-5] tj3W5fMDQq2DnUwSBGGq9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.100 [XNIO-1 task-5] tj3W5fMDQq2DnUwSBGGq9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.100 [XNIO-1 task-5] tj3W5fMDQq2DnUwSBGGq9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.106 [XNIO-1 task-5] tj3W5fMDQq2DnUwSBGGq9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.109 [XNIO-1 task-5] AePaavwlQGm6dHYD5xWU0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.109 [XNIO-1 task-5] AePaavwlQGm6dHYD5xWU0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.109 [XNIO-1 task-5] AePaavwlQGm6dHYD5xWU0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.109 [XNIO-1 task-5] AePaavwlQGm6dHYD5xWU0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.114 [XNIO-1 task-5] AePaavwlQGm6dHYD5xWU0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.119 [XNIO-1 task-5] cb0u5i89Ryu0pfaBaOhpYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.119 [XNIO-1 task-5] cb0u5i89Ryu0pfaBaOhpYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.119 [XNIO-1 task-5] cb0u5i89Ryu0pfaBaOhpYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.119 [XNIO-1 task-5] cb0u5i89Ryu0pfaBaOhpYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.124 [XNIO-1 task-5] cb0u5i89Ryu0pfaBaOhpYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.128 [XNIO-1 task-5] POAKZ_3SShSWx7QKZBEhhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.128 [XNIO-1 task-5] POAKZ_3SShSWx7QKZBEhhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.128 [XNIO-1 task-5] POAKZ_3SShSWx7QKZBEhhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.128 [XNIO-1 task-5] POAKZ_3SShSWx7QKZBEhhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.133 [XNIO-1 task-5] POAKZ_3SShSWx7QKZBEhhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.136 [XNIO-1 task-5] MGdC6DPwTRiDjfX_4kh9lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.136 [XNIO-1 task-5] MGdC6DPwTRiDjfX_4kh9lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.137 [XNIO-1 task-5] MGdC6DPwTRiDjfX_4kh9lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.137 [XNIO-1 task-5] MGdC6DPwTRiDjfX_4kh9lA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:13.142 [XNIO-1 task-5] MGdC6DPwTRiDjfX_4kh9lA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.146 [XNIO-1 task-5] sf-S3P0FScm5eJ4QOhZVHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.146 [XNIO-1 task-5] sf-S3P0FScm5eJ4QOhZVHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.146 [XNIO-1 task-5] sf-S3P0FScm5eJ4QOhZVHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.146 [XNIO-1 task-5] sf-S3P0FScm5eJ4QOhZVHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:13.151 [XNIO-1 task-5] sf-S3P0FScm5eJ4QOhZVHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.154 [XNIO-1 task-5] ZBvMrfQYRNKwPkkn17Rjlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.155 [XNIO-1 task-5] ZBvMrfQYRNKwPkkn17Rjlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.155 [XNIO-1 task-5] ZBvMrfQYRNKwPkkn17Rjlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.155 [XNIO-1 task-5] ZBvMrfQYRNKwPkkn17Rjlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:13.160 [XNIO-1 task-5] ZBvMrfQYRNKwPkkn17Rjlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.163 [XNIO-1 task-5] 7x_ccXamS4meO-wF_wCPRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.164 [XNIO-1 task-5] 7x_ccXamS4meO-wF_wCPRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.164 [XNIO-1 task-5] 7x_ccXamS4meO-wF_wCPRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.164 [XNIO-1 task-5] 7x_ccXamS4meO-wF_wCPRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.168 [XNIO-1 task-5] 7x_ccXamS4meO-wF_wCPRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.175 [XNIO-1 task-5] MdfrlXIBQTCp7n5LD5ZGew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.175 [XNIO-1 task-5] MdfrlXIBQTCp7n5LD5ZGew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.175 [XNIO-1 task-5] MdfrlXIBQTCp7n5LD5ZGew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.175 [XNIO-1 task-5] MdfrlXIBQTCp7n5LD5ZGew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:13.180 [XNIO-1 task-5] MdfrlXIBQTCp7n5LD5ZGew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.183 [XNIO-1 task-5] zMS4o5mFQvqf3G8x-A8XgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.183 [XNIO-1 task-5] zMS4o5mFQvqf3G8x-A8XgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.183 [XNIO-1 task-5] zMS4o5mFQvqf3G8x-A8XgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.183 [XNIO-1 task-5] zMS4o5mFQvqf3G8x-A8XgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:13.188 [XNIO-1 task-5] zMS4o5mFQvqf3G8x-A8XgQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.192 [XNIO-1 task-5] OHj3q-9XS_WLRvKc35ZZoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.193 [XNIO-1 task-5] OHj3q-9XS_WLRvKc35ZZoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.193 [XNIO-1 task-5] OHj3q-9XS_WLRvKc35ZZoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.193 [XNIO-1 task-5] OHj3q-9XS_WLRvKc35ZZoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:13.198 [XNIO-1 task-5] OHj3q-9XS_WLRvKc35ZZoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.203 [XNIO-1 task-5] Z6Druic6S5Kvg98Lo_5RpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.203 [XNIO-1 task-5] Z6Druic6S5Kvg98Lo_5RpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.203 [XNIO-1 task-5] Z6Druic6S5Kvg98Lo_5RpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.203 [XNIO-1 task-5] Z6Druic6S5Kvg98Lo_5RpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:13.208 [XNIO-1 task-5] Z6Druic6S5Kvg98Lo_5RpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.213 [XNIO-1 task-5] BKJnrt6PTFCvzOLBIwucXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.213 [XNIO-1 task-5] BKJnrt6PTFCvzOLBIwucXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.213 [XNIO-1 task-5] BKJnrt6PTFCvzOLBIwucXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.213 [XNIO-1 task-5] BKJnrt6PTFCvzOLBIwucXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:13.218 [XNIO-1 task-5] BKJnrt6PTFCvzOLBIwucXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.223 [XNIO-1 task-5] hZH2IzuXRSi3fsWD_9JBjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.223 [XNIO-1 task-5] hZH2IzuXRSi3fsWD_9JBjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.223 [XNIO-1 task-5] hZH2IzuXRSi3fsWD_9JBjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.223 [XNIO-1 task-5] hZH2IzuXRSi3fsWD_9JBjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:13.228 [XNIO-1 task-5] hZH2IzuXRSi3fsWD_9JBjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.232 [XNIO-1 task-5] aThVvjtgR_GBaZkTZXIx3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.232 [XNIO-1 task-5] aThVvjtgR_GBaZkTZXIx3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.232 [XNIO-1 task-5] aThVvjtgR_GBaZkTZXIx3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.232 [XNIO-1 task-5] aThVvjtgR_GBaZkTZXIx3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.237 [XNIO-1 task-5] aThVvjtgR_GBaZkTZXIx3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.242 [XNIO-1 task-5] EsodMpPwROuHZz0jlviSZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.242 [XNIO-1 task-5] EsodMpPwROuHZz0jlviSZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.242 [XNIO-1 task-5] EsodMpPwROuHZz0jlviSZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.243 [XNIO-1 task-5] EsodMpPwROuHZz0jlviSZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.248 [XNIO-1 task-5] EsodMpPwROuHZz0jlviSZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.251 [XNIO-1 task-5] XzWmuPo8QaeCiNX7gZtO6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.251 [XNIO-1 task-5] XzWmuPo8QaeCiNX7gZtO6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.251 [XNIO-1 task-5] XzWmuPo8QaeCiNX7gZtO6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.251 [XNIO-1 task-5] XzWmuPo8QaeCiNX7gZtO6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.256 [XNIO-1 task-5] XzWmuPo8QaeCiNX7gZtO6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.260 [XNIO-1 task-5] iExJ8KLPTeaYa2HDPElFBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.260 [XNIO-1 task-5] iExJ8KLPTeaYa2HDPElFBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.261 [XNIO-1 task-5] iExJ8KLPTeaYa2HDPElFBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.261 [XNIO-1 task-5] iExJ8KLPTeaYa2HDPElFBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.265 [XNIO-1 task-5] iExJ8KLPTeaYa2HDPElFBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.269 [XNIO-1 task-5] 62QVlQwlT7SMkyL9psAKkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.269 [XNIO-1 task-5] 62QVlQwlT7SMkyL9psAKkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.269 [XNIO-1 task-5] 62QVlQwlT7SMkyL9psAKkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.270 [XNIO-1 task-5] 62QVlQwlT7SMkyL9psAKkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.274 [XNIO-1 task-5] 62QVlQwlT7SMkyL9psAKkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.278 [XNIO-1 task-5] DmiwPb_uR1ugb7bJWZi2dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.278 [XNIO-1 task-5] DmiwPb_uR1ugb7bJWZi2dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.278 [XNIO-1 task-5] DmiwPb_uR1ugb7bJWZi2dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.278 [XNIO-1 task-5] DmiwPb_uR1ugb7bJWZi2dg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.283 [XNIO-1 task-5] DmiwPb_uR1ugb7bJWZi2dg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.288 [XNIO-1 task-5] bMdr2UTbRs63EBFejyhRuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.288 [XNIO-1 task-5] bMdr2UTbRs63EBFejyhRuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.288 [XNIO-1 task-5] bMdr2UTbRs63EBFejyhRuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.288 [XNIO-1 task-5] bMdr2UTbRs63EBFejyhRuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.293 [XNIO-1 task-5] bMdr2UTbRs63EBFejyhRuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.297 [XNIO-1 task-5] L_Hjd2NgSOqxy6E6ul06Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.297 [XNIO-1 task-5] L_Hjd2NgSOqxy6E6ul06Sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.297 [XNIO-1 task-5] L_Hjd2NgSOqxy6E6ul06Sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.297 [XNIO-1 task-5] L_Hjd2NgSOqxy6E6ul06Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.302 [XNIO-1 task-5] L_Hjd2NgSOqxy6E6ul06Sg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.307 [XNIO-1 task-5] IJ3_CjM8QIqN_rrXNnt3cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.307 [XNIO-1 task-5] IJ3_CjM8QIqN_rrXNnt3cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.307 [XNIO-1 task-5] IJ3_CjM8QIqN_rrXNnt3cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.307 [XNIO-1 task-5] IJ3_CjM8QIqN_rrXNnt3cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.312 [XNIO-1 task-5] IJ3_CjM8QIqN_rrXNnt3cQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.316 [XNIO-1 task-5] 5ukTsVqwSQmN8CM-VY3BsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.316 [XNIO-1 task-5] 5ukTsVqwSQmN8CM-VY3BsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.316 [XNIO-1 task-5] 5ukTsVqwSQmN8CM-VY3BsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.316 [XNIO-1 task-5] 5ukTsVqwSQmN8CM-VY3BsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.321 [XNIO-1 task-5] 5ukTsVqwSQmN8CM-VY3BsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.325 [XNIO-1 task-5] 7g5M_7AhR3Gh7UxB-iejiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.325 [XNIO-1 task-5] 7g5M_7AhR3Gh7UxB-iejiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.325 [XNIO-1 task-5] 7g5M_7AhR3Gh7UxB-iejiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.325 [XNIO-1 task-5] 7g5M_7AhR3Gh7UxB-iejiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.330 [XNIO-1 task-5] 7g5M_7AhR3Gh7UxB-iejiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.335 [XNIO-1 task-5] MXewj2SMSaG1Guo2VfNlWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.335 [XNIO-1 task-5] MXewj2SMSaG1Guo2VfNlWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.335 [XNIO-1 task-5] MXewj2SMSaG1Guo2VfNlWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.335 [XNIO-1 task-5] MXewj2SMSaG1Guo2VfNlWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.340 [XNIO-1 task-5] MXewj2SMSaG1Guo2VfNlWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.351 [XNIO-1 task-5] PbAqpaGLRgarJhgtv4TjXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.351 [XNIO-1 task-5] PbAqpaGLRgarJhgtv4TjXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.352 [XNIO-1 task-5] PbAqpaGLRgarJhgtv4TjXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.352 [XNIO-1 task-5] PbAqpaGLRgarJhgtv4TjXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.356 [XNIO-1 task-5] PbAqpaGLRgarJhgtv4TjXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.361 [XNIO-1 task-5] E-4wS389QUmnl5II2H2WEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.361 [XNIO-1 task-5] E-4wS389QUmnl5II2H2WEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.361 [XNIO-1 task-5] E-4wS389QUmnl5II2H2WEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.361 [XNIO-1 task-5] E-4wS389QUmnl5II2H2WEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:13.366 [XNIO-1 task-5] E-4wS389QUmnl5II2H2WEg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.370 [XNIO-1 task-5] dsQ2BSqwTGuxsgCgK0gPbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.370 [XNIO-1 task-5] dsQ2BSqwTGuxsgCgK0gPbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.370 [XNIO-1 task-5] dsQ2BSqwTGuxsgCgK0gPbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.370 [XNIO-1 task-5] dsQ2BSqwTGuxsgCgK0gPbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:13.375 [XNIO-1 task-5] dsQ2BSqwTGuxsgCgK0gPbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.379 [XNIO-1 task-5] U9zLcfzORFWaydS8LHEP_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.379 [XNIO-1 task-5] U9zLcfzORFWaydS8LHEP_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.379 [XNIO-1 task-5] U9zLcfzORFWaydS8LHEP_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.379 [XNIO-1 task-5] U9zLcfzORFWaydS8LHEP_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:13.407 [XNIO-1 task-5] U9zLcfzORFWaydS8LHEP_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.411 [XNIO-1 task-5] 5jWCEOGPTtycLm23FfQ55w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.411 [XNIO-1 task-5] 5jWCEOGPTtycLm23FfQ55w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.411 [XNIO-1 task-5] 5jWCEOGPTtycLm23FfQ55w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.412 [XNIO-1 task-5] 5jWCEOGPTtycLm23FfQ55w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.416 [XNIO-1 task-5] 5jWCEOGPTtycLm23FfQ55w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.420 [XNIO-1 task-5] 6yaIbw_vRGWaB_E80tUpAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.421 [XNIO-1 task-5] 6yaIbw_vRGWaB_E80tUpAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.421 [XNIO-1 task-5] 6yaIbw_vRGWaB_E80tUpAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.421 [XNIO-1 task-5] 6yaIbw_vRGWaB_E80tUpAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.426 [XNIO-1 task-5] 6yaIbw_vRGWaB_E80tUpAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.430 [XNIO-1 task-5] hHbwOwfdRIqhbnHIym9C-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.430 [XNIO-1 task-5] hHbwOwfdRIqhbnHIym9C-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.430 [XNIO-1 task-5] hHbwOwfdRIqhbnHIym9C-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.431 [XNIO-1 task-5] hHbwOwfdRIqhbnHIym9C-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:13.435 [XNIO-1 task-5] hHbwOwfdRIqhbnHIym9C-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.440 [XNIO-1 task-5] cR36Dqk5RgeHyNlPXOVO8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.440 [XNIO-1 task-5] cR36Dqk5RgeHyNlPXOVO8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.440 [XNIO-1 task-5] cR36Dqk5RgeHyNlPXOVO8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.440 [XNIO-1 task-5] cR36Dqk5RgeHyNlPXOVO8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:13.446 [XNIO-1 task-5] cR36Dqk5RgeHyNlPXOVO8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.449 [XNIO-1 task-5] zenQL5RYTuCw7O9mpZ0wDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.449 [XNIO-1 task-5] zenQL5RYTuCw7O9mpZ0wDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.449 [XNIO-1 task-5] zenQL5RYTuCw7O9mpZ0wDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.449 [XNIO-1 task-5] zenQL5RYTuCw7O9mpZ0wDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:13.454 [XNIO-1 task-5] zenQL5RYTuCw7O9mpZ0wDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.458 [XNIO-1 task-5] 95GbVIKuSISrSXdHgE_ncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.458 [XNIO-1 task-5] 95GbVIKuSISrSXdHgE_ncA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.458 [XNIO-1 task-5] 95GbVIKuSISrSXdHgE_ncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.459 [XNIO-1 task-5] 95GbVIKuSISrSXdHgE_ncA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:13.463 [XNIO-1 task-5] 95GbVIKuSISrSXdHgE_ncA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.467 [XNIO-1 task-5] D7T5JVWeRDyAJX91Cae0Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.467 [XNIO-1 task-5] D7T5JVWeRDyAJX91Cae0Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.467 [XNIO-1 task-5] D7T5JVWeRDyAJX91Cae0Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.467 [XNIO-1 task-5] D7T5JVWeRDyAJX91Cae0Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:13.472 [XNIO-1 task-5] D7T5JVWeRDyAJX91Cae0Ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.477 [XNIO-1 task-5] fsf9NTiaSsu8k_ju-WUWDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.477 [XNIO-1 task-5] fsf9NTiaSsu8k_ju-WUWDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.477 [XNIO-1 task-5] fsf9NTiaSsu8k_ju-WUWDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.477 [XNIO-1 task-5] fsf9NTiaSsu8k_ju-WUWDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.482 [XNIO-1 task-5] fsf9NTiaSsu8k_ju-WUWDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.487 [XNIO-1 task-5] TKZUzHClSl-yorN8aly7-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.488 [XNIO-1 task-5] TKZUzHClSl-yorN8aly7-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.488 [XNIO-1 task-5] TKZUzHClSl-yorN8aly7-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.488 [XNIO-1 task-5] TKZUzHClSl-yorN8aly7-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.493 [XNIO-1 task-5] TKZUzHClSl-yorN8aly7-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.498 [XNIO-1 task-3] svNnEl5LTO6y0WAeMff-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.498 [XNIO-1 task-3] svNnEl5LTO6y0WAeMff-2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.498 [XNIO-1 task-3] svNnEl5LTO6y0WAeMff-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.498 [XNIO-1 task-3] svNnEl5LTO6y0WAeMff-2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.504 [XNIO-1 task-3] svNnEl5LTO6y0WAeMff-2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.511 [XNIO-1 task-3] SE2-zn2LRLaOdHwUh7PR7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.511 [XNIO-1 task-3] SE2-zn2LRLaOdHwUh7PR7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.511 [XNIO-1 task-3] SE2-zn2LRLaOdHwUh7PR7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.511 [XNIO-1 task-3] SE2-zn2LRLaOdHwUh7PR7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.511 [XNIO-1 task-5] uNOEcaWSQZSGxQk9JwF8cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.511 [XNIO-1 task-5] uNOEcaWSQZSGxQk9JwF8cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.511 [XNIO-1 task-3] SE2-zn2LRLaOdHwUh7PR7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.512 [XNIO-1 task-5] uNOEcaWSQZSGxQk9JwF8cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:13.517 [XNIO-1 task-5] uNOEcaWSQZSGxQk9JwF8cw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:13.518 [XNIO-1 task-5] uNOEcaWSQZSGxQk9JwF8cw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.519 [XNIO-1 task-3] SE2-zn2LRLaOdHwUh7PR7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.521 [XNIO-1 task-3] d3U6RZwSRIuri3C1EREheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.522 [XNIO-1 task-3] d3U6RZwSRIuri3C1EREheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.524 [XNIO-1 task-3] d3U6RZwSRIuri3C1EREheg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.524 [XNIO-1 task-3] d3U6RZwSRIuri3C1EREheg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Nhm8YLDSQcmJ7xxiA-W_cQ redirectUri = http://localhost:8080/authorization +18:11:13.526 [XNIO-1 task-4] DR0xRM3mQoOm3sGk_7i4Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.526 [XNIO-1 task-4] DR0xRM3mQoOm3sGk_7i4Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.526 [XNIO-1 task-4] DR0xRM3mQoOm3sGk_7i4Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.526 [XNIO-1 task-4] DR0xRM3mQoOm3sGk_7i4Tw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.531 [XNIO-1 task-4] DR0xRM3mQoOm3sGk_7i4Tw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.533 [XNIO-1 task-3] d3U6RZwSRIuri3C1EREheg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.537 [XNIO-1 task-4] MlrZHQDYRRmKfhSzKnQQ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.537 [XNIO-1 task-4] MlrZHQDYRRmKfhSzKnQQ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.538 [XNIO-1 task-4] MlrZHQDYRRmKfhSzKnQQ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.538 [XNIO-1 task-4] MlrZHQDYRRmKfhSzKnQQ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.543 [XNIO-1 task-4] MlrZHQDYRRmKfhSzKnQQ9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.546 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cccd13af +18:11:13.549 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cccd13af +18:11:13.551 [XNIO-1 task-3] _vRv7lrZRh-5iLfbjDRSxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.551 [XNIO-1 task-3] _vRv7lrZRh-5iLfbjDRSxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.551 [XNIO-1 task-3] _vRv7lrZRh-5iLfbjDRSxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.551 [XNIO-1 task-3] _vRv7lrZRh-5iLfbjDRSxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.555 [XNIO-1 task-4] p8l65XwpQ6ihU0G0kIN19g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.555 [XNIO-1 task-4] p8l65XwpQ6ihU0G0kIN19g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.555 [XNIO-1 task-4] p8l65XwpQ6ihU0G0kIN19g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.556 [XNIO-1 task-4] p8l65XwpQ6ihU0G0kIN19g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tvKVxB1LQTCoQcj5KsCYKQ redirectUri = http://localhost:8080/authorization +18:11:13.556 [XNIO-1 task-3] _vRv7lrZRh-5iLfbjDRSxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.560 [XNIO-1 task-3] H0W8silCSlab3ymIWGn8Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.560 [XNIO-1 task-3] H0W8silCSlab3ymIWGn8Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.560 [XNIO-1 task-3] H0W8silCSlab3ymIWGn8Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.561 [XNIO-1 task-3] H0W8silCSlab3ymIWGn8Fw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.561 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:da56ed06 +18:11:13.562 [XNIO-1 task-4] p8l65XwpQ6ihU0G0kIN19g ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:11:13.564 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cccd13af +18:11:13.566 [XNIO-1 task-3] H0W8silCSlab3ymIWGn8Fw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.575 [XNIO-1 task-3] etdTUbVgTDK5N5icyIAQSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.575 [XNIO-1 task-3] etdTUbVgTDK5N5icyIAQSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.575 [XNIO-1 task-3] etdTUbVgTDK5N5icyIAQSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.575 [XNIO-1 task-3] etdTUbVgTDK5N5icyIAQSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.580 [XNIO-1 task-3] etdTUbVgTDK5N5icyIAQSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.592 [XNIO-1 task-3] Z4WeLyeJQ4WI3LaOAPGpEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.592 [XNIO-1 task-3] Z4WeLyeJQ4WI3LaOAPGpEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.592 [XNIO-1 task-3] Z4WeLyeJQ4WI3LaOAPGpEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.592 [XNIO-1 task-3] Z4WeLyeJQ4WI3LaOAPGpEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.598 [XNIO-1 task-3] Z4WeLyeJQ4WI3LaOAPGpEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.604 [XNIO-1 task-3] H4fLGJC0SfyQSCpRbiYlWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.604 [XNIO-1 task-3] H4fLGJC0SfyQSCpRbiYlWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.605 [XNIO-1 task-3] H4fLGJC0SfyQSCpRbiYlWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.605 [XNIO-1 task-3] H4fLGJC0SfyQSCpRbiYlWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.608 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cccd13af +18:11:13.610 [XNIO-1 task-3] H4fLGJC0SfyQSCpRbiYlWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.613 [XNIO-1 task-3] WQcIuf4tRoiNIqt0h6yGug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.613 [XNIO-1 task-3] WQcIuf4tRoiNIqt0h6yGug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.614 [XNIO-1 task-3] WQcIuf4tRoiNIqt0h6yGug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.614 [XNIO-1 task-3] WQcIuf4tRoiNIqt0h6yGug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _cZ-kWFWSn-mfAbbcPyYwQ redirectUri = http://localhost:8080/authorization +18:11:13.616 [XNIO-1 task-4] JJWbib0-QPamij2mLSPJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.616 [XNIO-1 task-4] JJWbib0-QPamij2mLSPJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.616 [XNIO-1 task-4] JJWbib0-QPamij2mLSPJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.616 [XNIO-1 task-4] JJWbib0-QPamij2mLSPJkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.619 [XNIO-1 task-3] WQcIuf4tRoiNIqt0h6yGug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.621 [XNIO-1 task-4] JJWbib0-QPamij2mLSPJkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.631 [XNIO-1 task-4] Gph4N1MqSauiVIftnPnLkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.632 [XNIO-1 task-4] Gph4N1MqSauiVIftnPnLkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.632 [XNIO-1 task-4] Gph4N1MqSauiVIftnPnLkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.632 [XNIO-1 task-3] Sm7H2w90RlaSGIl6gqD5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.632 [XNIO-1 task-3] Sm7H2w90RlaSGIl6gqD5ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.632 [XNIO-1 task-3] Sm7H2w90RlaSGIl6gqD5ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.632 [XNIO-1 task-3] Sm7H2w90RlaSGIl6gqD5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.632 [XNIO-1 task-3] Sm7H2w90RlaSGIl6gqD5ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:13.636 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cccd13af +18:11:13.637 [XNIO-1 task-4] Gph4N1MqSauiVIftnPnLkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.642 [XNIO-1 task-4] 6cinVgWgSL-1KHCeqbN58g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.642 [XNIO-1 task-4] 6cinVgWgSL-1KHCeqbN58g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.642 [XNIO-1 task-4] 6cinVgWgSL-1KHCeqbN58g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.643 [XNIO-1 task-4] 6cinVgWgSL-1KHCeqbN58g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:13.646 [XNIO-1 task-3] Sm7H2w90RlaSGIl6gqD5ZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.647 [XNIO-1 task-4] 6cinVgWgSL-1KHCeqbN58g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.656 [XNIO-1 task-3] OcecyUj2T5mufO06SQ5RKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.658 [XNIO-1 task-3] OcecyUj2T5mufO06SQ5RKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.658 [XNIO-1 task-3] OcecyUj2T5mufO06SQ5RKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.658 [XNIO-1 task-3] OcecyUj2T5mufO06SQ5RKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:13.664 [XNIO-1 task-3] OcecyUj2T5mufO06SQ5RKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.665 [XNIO-1 task-4] Hq6bdch_Reaj8rDsc5guvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.665 [XNIO-1 task-4] Hq6bdch_Reaj8rDsc5guvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.665 [XNIO-1 task-4] Hq6bdch_Reaj8rDsc5guvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.666 [XNIO-1 task-4] Hq6bdch_Reaj8rDsc5guvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:13.671 [XNIO-1 task-4] Hq6bdch_Reaj8rDsc5guvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:13.671 [XNIO-1 task-4] Hq6bdch_Reaj8rDsc5guvw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.672 [XNIO-1 task-3] WlVwtFVzQzG_i39BEfnBew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.672 [XNIO-1 task-3] WlVwtFVzQzG_i39BEfnBew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.672 [XNIO-1 task-3] WlVwtFVzQzG_i39BEfnBew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.672 [XNIO-1 task-3] WlVwtFVzQzG_i39BEfnBew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.675 [XNIO-1 task-5] uALrXEGfTvqEvtt1obwJNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.675 [XNIO-1 task-5] uALrXEGfTvqEvtt1obwJNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.675 [XNIO-1 task-5] uALrXEGfTvqEvtt1obwJNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.675 [XNIO-1 task-5] uALrXEGfTvqEvtt1obwJNQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Q-Ngehb4RcWLyByjdi7RQg redirectUri = http://localhost:8080/authorization +18:11:13.678 [XNIO-1 task-3] WlVwtFVzQzG_i39BEfnBew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.681 [XNIO-1 task-3] GGY-YQpRQe292ZgscU5Xjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.682 [XNIO-1 task-3] GGY-YQpRQe292ZgscU5Xjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.682 [XNIO-1 task-3] GGY-YQpRQe292ZgscU5Xjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.681 [XNIO-1 task-5] uALrXEGfTvqEvtt1obwJNQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:13.682 [XNIO-1 task-5] uALrXEGfTvqEvtt1obwJNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.685 [XNIO-1 task-4] PS7Qa0FZRGq-lBqRamHOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.685 [XNIO-1 task-4] PS7Qa0FZRGq-lBqRamHOog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.686 [XNIO-1 task-4] PS7Qa0FZRGq-lBqRamHOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.686 [XNIO-1 task-4] PS7Qa0FZRGq-lBqRamHOog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:13.692 [XNIO-1 task-4] PS7Qa0FZRGq-lBqRamHOog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.693 [XNIO-1 task-3] GGY-YQpRQe292ZgscU5Xjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.698 [XNIO-1 task-4] WTlDtVdmTNOWtkI2ftqLcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.698 [XNIO-1 task-4] WTlDtVdmTNOWtkI2ftqLcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.698 [XNIO-1 task-4] WTlDtVdmTNOWtkI2ftqLcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.699 [XNIO-1 task-4] WTlDtVdmTNOWtkI2ftqLcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:13.704 [XNIO-1 task-4] WTlDtVdmTNOWtkI2ftqLcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.712 [XNIO-1 task-4] KKMvDHtUSqin3d0hYS1RBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.713 [XNIO-1 task-4] KKMvDHtUSqin3d0hYS1RBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.713 [XNIO-1 task-4] KKMvDHtUSqin3d0hYS1RBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.713 [XNIO-1 task-4] KKMvDHtUSqin3d0hYS1RBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:13.713 [XNIO-1 task-3] 5dHfPfobQdqmM4Kwsm6RqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.713 [XNIO-1 task-3] 5dHfPfobQdqmM4Kwsm6RqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.714 [XNIO-1 task-3] 5dHfPfobQdqmM4Kwsm6RqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.714 [XNIO-1 task-3] 5dHfPfobQdqmM4Kwsm6RqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:13.718 [XNIO-1 task-4] KKMvDHtUSqin3d0hYS1RBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.723 [XNIO-1 task-3] 5dHfPfobQdqmM4Kwsm6RqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:13.723 [XNIO-1 task-3] 5dHfPfobQdqmM4Kwsm6RqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.727 [XNIO-1 task-4] 5f0dqdQWT92YG6OLpdqzCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.727 [XNIO-1 task-4] 5f0dqdQWT92YG6OLpdqzCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.727 [XNIO-1 task-4] 5f0dqdQWT92YG6OLpdqzCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.727 [XNIO-1 task-4] 5f0dqdQWT92YG6OLpdqzCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.733 [XNIO-1 task-4] 5f0dqdQWT92YG6OLpdqzCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.735 [XNIO-1 task-3] oCXxYFWpSdGj3igW4m-HVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.735 [XNIO-1 task-3] oCXxYFWpSdGj3igW4m-HVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.735 [XNIO-1 task-3] oCXxYFWpSdGj3igW4m-HVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.735 [XNIO-1 task-3] oCXxYFWpSdGj3igW4m-HVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f23715e6-83a4-42b9-9b2d-878bd5a9e254 scope = null +18:11:13.740 [XNIO-1 task-4] 0z0Pv58bT42dTJb1vgDz4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.740 [XNIO-1 task-4] 0z0Pv58bT42dTJb1vgDz4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.741 [XNIO-1 task-4] 0z0Pv58bT42dTJb1vgDz4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.741 [XNIO-1 task-4] 0z0Pv58bT42dTJb1vgDz4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.745 [XNIO-1 task-5] e-0TwEnAQgerfQy9xYQFbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.745 [XNIO-1 task-5] e-0TwEnAQgerfQy9xYQFbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.745 [XNIO-1 task-5] e-0TwEnAQgerfQy9xYQFbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.745 [XNIO-1 task-5] e-0TwEnAQgerfQy9xYQFbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IiSn_S6_RjOliEbPV_zOQQ redirectUri = http://localhost:8080/authorization +18:11:13.746 [XNIO-1 task-4] 0z0Pv58bT42dTJb1vgDz4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.748 [XNIO-1 task-3] oCXxYFWpSdGj3igW4m-HVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.752 [XNIO-1 task-5] e-0TwEnAQgerfQy9xYQFbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.753 [XNIO-1 task-4] jIFxQib5RPWwMpRW9WRDzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.754 [XNIO-1 task-4] jIFxQib5RPWwMpRW9WRDzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.754 [XNIO-1 task-4] jIFxQib5RPWwMpRW9WRDzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.754 [XNIO-1 task-4] jIFxQib5RPWwMpRW9WRDzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGJhMjI3OGMtN2YwNi00ZWJmLTk0MGQtY2Q5NmNhM2RhODI5Ojc0M2dkTmhDVDN5eDVvNDZSVnIwbWc=", "Basic MGJhMjI3OGMtN2YwNi00ZWJmLTk0MGQtY2Q5NmNhM2RhODI5Ojc0M2dkTmhDVDN5eDVvNDZSVnIwbWc=", authorization) +18:11:13.759 [XNIO-1 task-4] jIFxQib5RPWwMpRW9WRDzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.760 [XNIO-1 task-4] jIFxQib5RPWwMpRW9WRDzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.760 [XNIO-1 task-5] f2VmXH3RRPuXWGGCZP5yqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.760 [XNIO-1 task-5] f2VmXH3RRPuXWGGCZP5yqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.760 [XNIO-1 task-5] f2VmXH3RRPuXWGGCZP5yqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:13.767 [XNIO-1 task-4] XstQMT_IRp2zlySKI-kUTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.767 [XNIO-1 task-4] XstQMT_IRp2zlySKI-kUTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.767 [XNIO-1 task-4] XstQMT_IRp2zlySKI-kUTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.768 [XNIO-1 task-4] XstQMT_IRp2zlySKI-kUTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:13.770 [XNIO-1 task-5] f2VmXH3RRPuXWGGCZP5yqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.771 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:740a0ceb-1a36-4ff4-b4a7-3584888b9b07 +18:11:13.772 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:740a0ceb-1a36-4ff4-b4a7-3584888b9b07 +18:11:13.774 [XNIO-1 task-4] XstQMT_IRp2zlySKI-kUTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.780 [XNIO-1 task-5] 5MPZTQBlQyiydlWIy5_iKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.780 [XNIO-1 task-5] 5MPZTQBlQyiydlWIy5_iKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.780 [XNIO-1 task-5] 5MPZTQBlQyiydlWIy5_iKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.780 [XNIO-1 task-5] 5MPZTQBlQyiydlWIy5_iKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.783 [XNIO-1 task-4] 85zP_Bd3TLCHu4Iit1ypoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.783 [XNIO-1 task-4] 85zP_Bd3TLCHu4Iit1ypoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.783 [XNIO-1 task-4] 85zP_Bd3TLCHu4Iit1ypoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.783 [XNIO-1 task-4] 85zP_Bd3TLCHu4Iit1ypoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 740a0ceb-1a36-4ff4-b4a7-3584888b9b07 scope = null +18:11:13.785 [XNIO-1 task-5] 5MPZTQBlQyiydlWIy5_iKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.785 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cccd13af +18:11:13.792 [XNIO-1 task-5] xcWAQT5yQwyIxqI3W-AkMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.792 [XNIO-1 task-5] xcWAQT5yQwyIxqI3W-AkMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.792 [XNIO-1 task-4] 85zP_Bd3TLCHu4Iit1ypoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.792 [XNIO-1 task-4] 85zP_Bd3TLCHu4Iit1ypoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.793 [XNIO-1 task-5] xcWAQT5yQwyIxqI3W-AkMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) +18:11:13.798 [XNIO-1 task-5] xcWAQT5yQwyIxqI3W-AkMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.805 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a367ae1e-f860-4013-9a7e-2c6baa95e1a5 +18:11:13.806 [XNIO-1 task-5] Nc3Yeia8S-Owxid7EZGs0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.806 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.806 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a367ae1e-f860-4013-9a7e-2c6baa95e1a5 +18:11:13.806 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:11:13.806 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) +18:11:13.806 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:11:13.806 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.806 [XNIO-1 task-5] Nc3Yeia8S-Owxid7EZGs0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.807 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", "Basic OTAwMTdmNDYtZDYzOC00NGViLThjNDUtNDk1M2ZjMTM1ZjhmOnZsSXJuYVRCUkJTVHJXNmFNcEM3dHc=", authorization) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:13.807 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.808 [XNIO-1 task-3] PBvDzLW2Rt6KZjryZmZFMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.808 [XNIO-1 task-3] PBvDzLW2Rt6KZjryZmZFMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:11:13.809 [XNIO-1 task-3] PBvDzLW2Rt6KZjryZmZFMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = lFE-PRveSvqRLmbjfFW5Yw redirectUri = http://localhost:8080/authorization + +18:11:13.812 [XNIO-1 task-4] AX9INdsKSty9qGvNRRP53A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.814 [XNIO-1 task-3] PBvDzLW2Rt6KZjryZmZFMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:13.814 [XNIO-1 task-3] PBvDzLW2Rt6KZjryZmZFMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.820 [XNIO-1 task-4] RTeA4V0rQI2tj81sUp58iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.820 [XNIO-1 task-4] RTeA4V0rQI2tj81sUp58iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.820 [XNIO-1 task-4] RTeA4V0rQI2tj81sUp58iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.820 [XNIO-1 task-4] RTeA4V0rQI2tj81sUp58iA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.824 [XNIO-1 task-5] Nc3Yeia8S-Owxid7EZGs0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.828 [XNIO-1 task-4] RTeA4V0rQI2tj81sUp58iA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.840 [XNIO-1 task-5] eBYfzzWQRbyA_9t-5vOncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.840 [XNIO-1 task-4] 2Nlz23wBTKuKt_0py7zbuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.840 [XNIO-1 task-4] 2Nlz23wBTKuKt_0py7zbuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.840 [XNIO-1 task-5] eBYfzzWQRbyA_9t-5vOncQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.840 [XNIO-1 task-5] eBYfzzWQRbyA_9t-5vOncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.841 [XNIO-1 task-4] 2Nlz23wBTKuKt_0py7zbuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.841 [XNIO-1 task-5] eBYfzzWQRbyA_9t-5vOncQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 70e56e83-36f9-46c8-be3f-cb3f933297db scope = null +18:11:13.841 [XNIO-1 task-4] 2Nlz23wBTKuKt_0py7zbuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.842 [XNIO-1 task-3] NAztH34qTImrXOfrREVikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.842 [XNIO-1 task-3] NAztH34qTImrXOfrREVikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.842 [XNIO-1 task-3] NAztH34qTImrXOfrREVikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.842 [XNIO-1 task-3] NAztH34qTImrXOfrREVikg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = FlDMvwk5TyWNy-yv53kfcw redirectUri = http://localhost:8080/authorization +18:11:13.846 [XNIO-1 task-4] 2Nlz23wBTKuKt_0py7zbuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.847 [XNIO-1 task-3] NAztH34qTImrXOfrREVikg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.850 [XNIO-1 task-4] tZQl1fvkSJ-r7GardFi_9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.851 [XNIO-1 task-4] tZQl1fvkSJ-r7GardFi_9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.851 [XNIO-1 task-4] tZQl1fvkSJ-r7GardFi_9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.851 [XNIO-1 task-4] tZQl1fvkSJ-r7GardFi_9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWI0Y2FkMDUtZTJjYS00YzhkLWI2NWMtN2FkMzM0MzQxNzA3OlRpWExFbE5WVHQtUVdqTC14RHUtaXc=", "Basic MWI0Y2FkMDUtZTJjYS00YzhkLWI2NWMtN2FkMzM0MzQxNzA3OlRpWExFbE5WVHQtUVdqTC14RHUtaXc=", authorization) +18:11:13.858 [XNIO-1 task-4] tZQl1fvkSJ-r7GardFi_9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.859 [XNIO-1 task-5] eBYfzzWQRbyA_9t-5vOncQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.861 [XNIO-1 task-4] Vb7FgpUDS1OROK_7OumjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.861 [XNIO-1 task-4] Vb7FgpUDS1OROK_7OumjoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.861 [XNIO-1 task-4] Vb7FgpUDS1OROK_7OumjoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.861 [XNIO-1 task-4] Vb7FgpUDS1OROK_7OumjoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:13.866 [XNIO-1 task-3] TFNcKHFnTRSb9GRulve2Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.866 [XNIO-1 task-3] TFNcKHFnTRSb9GRulve2Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.866 [XNIO-1 task-3] TFNcKHFnTRSb9GRulve2Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.866 [XNIO-1 task-3] TFNcKHFnTRSb9GRulve2Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:13.871 [XNIO-1 task-3] TFNcKHFnTRSb9GRulve2Qw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.872 [XNIO-1 task-4] Vb7FgpUDS1OROK_7OumjoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.876 [XNIO-1 task-5] oZaWBijoQzaAoLTrL6isPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.876 [XNIO-1 task-5] oZaWBijoQzaAoLTrL6isPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.876 [XNIO-1 task-5] oZaWBijoQzaAoLTrL6isPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.876 [XNIO-1 task-5] oZaWBijoQzaAoLTrL6isPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", "Basic NTAzZThiMGQtMWI5My00NzI4LWFlOTYtOTdmMjA0OWVmYmZmOnh1cXFtTUEzUUg2SFNfLVFpUDF5Q2c=", authorization) +18:11:13.881 [XNIO-1 task-5] oZaWBijoQzaAoLTrL6isPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.887 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:26896697-7586-46e0-a8c8-b79b06cf783d +18:11:13.889 [XNIO-1 task-4] uyWR-bczR9usSamaWICotA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.889 [XNIO-1 task-4] uyWR-bczR9usSamaWICotA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.889 [XNIO-1 task-4] uyWR-bczR9usSamaWICotA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.889 [XNIO-1 task-4] uyWR-bczR9usSamaWICotA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.889 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:26896697-7586-46e0-a8c8-b79b06cf783d +18:11:13.890 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:26896697-7586-46e0-a8c8-b79b06cf783d +18:11:13.890 [XNIO-1 task-5] eB35pmDRQHGY-bcySwcZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.890 [XNIO-1 task-4] uyWR-bczR9usSamaWICotA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = cd45e22b-ab9f-46e6-ae90-60fb39dc8d30 scope = null +18:11:13.890 [XNIO-1 task-5] eB35pmDRQHGY-bcySwcZvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.895 [XNIO-1 task-3] 6A3kBTcLQqaZ6pohPDnn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.895 [XNIO-1 task-3] 6A3kBTcLQqaZ6pohPDnn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.895 [XNIO-1 task-3] 6A3kBTcLQqaZ6pohPDnn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.896 [XNIO-1 task-3] 6A3kBTcLQqaZ6pohPDnn6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b2dc6a93-c6d1-413a-ac9a-fa200770df64 scope = null +18:11:13.896 [XNIO-1 task-5] eB35pmDRQHGY-bcySwcZvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:13.900 [XNIO-1 task-4] uyWR-bczR9usSamaWICotA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.902 [XNIO-1 task-5] 4ei2BsrhRnCJOtPmOupFhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.902 [XNIO-1 task-5] 4ei2BsrhRnCJOtPmOupFhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.903 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:13.903 [XNIO-1 task-5] 4ei2BsrhRnCJOtPmOupFhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.903 [XNIO-1 task-5] 4ei2BsrhRnCJOtPmOupFhQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b2dc6a93-c6d1-413a-ac9a-fa200770df64 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:11:13.908 [XNIO-1 task-5] 4ei2BsrhRnCJOtPmOupFhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.912 [XNIO-1 task-5] hFtVognEQVCuHfpkDoYLAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.912 [XNIO-1 task-5] hFtVognEQVCuHfpkDoYLAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.912 [XNIO-1 task-5] hFtVognEQVCuHfpkDoYLAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.912 [XNIO-1 task-5] hFtVognEQVCuHfpkDoYLAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:13.917 [XNIO-1 task-5] hFtVognEQVCuHfpkDoYLAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.922 [XNIO-1 task-5] 8paSwm5aR0GLRyv088pWSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.923 [XNIO-1 task-5] 8paSwm5aR0GLRyv088pWSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.923 [XNIO-1 task-5] 8paSwm5aR0GLRyv088pWSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.923 [XNIO-1 task-5] 8paSwm5aR0GLRyv088pWSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:13.930 [XNIO-1 task-5] 8paSwm5aR0GLRyv088pWSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.936 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:512cf01c +18:11:13.951 [XNIO-1 task-5] pOYXx4zTTXuOqmqWMHmHTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.951 [XNIO-1 task-5] pOYXx4zTTXuOqmqWMHmHTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.951 [XNIO-1 task-5] pOYXx4zTTXuOqmqWMHmHTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.951 [XNIO-1 task-5] pOYXx4zTTXuOqmqWMHmHTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:13.959 [XNIO-1 task-5] pOYXx4zTTXuOqmqWMHmHTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.973 [XNIO-1 task-5] D-jyk0SgSVCA_qhrH9M9TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.974 [XNIO-1 task-5] D-jyk0SgSVCA_qhrH9M9TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:13.974 [XNIO-1 task-5] D-jyk0SgSVCA_qhrH9M9TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:13.974 [XNIO-1 task-5] D-jyk0SgSVCA_qhrH9M9TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGExYTljNDktMjI2OS00ZDkyLWFmYmMtMTc4YTliNWY0MWMyOmtZbFBsX3ZwUmxHc0VTUmFSVWFNV1E=", "Basic OGExYTljNDktMjI2OS00ZDkyLWFmYmMtMTc4YTliNWY0MWMyOmtZbFBsX3ZwUmxHc0VTUmFSVWFNV1E=", authorization) +18:11:13.979 [XNIO-1 task-5] D-jyk0SgSVCA_qhrH9M9TQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.986 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cccd13af +18:11:13.987 [XNIO-1 task-5] tE-Kq3nsTeCJkfAJ_f_-8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.987 [XNIO-1 task-5] tE-Kq3nsTeCJkfAJ_f_-8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.987 [XNIO-1 task-5] tE-Kq3nsTeCJkfAJ_f_-8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.987 [XNIO-1 task-5] tE-Kq3nsTeCJkfAJ_f_-8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tKqjPTy6ToCTcrUkOuIjvQ redirectUri = http://localhost:8080/authorization +18:11:13.991 [XNIO-1 task-4] 3B8nY7_RTR-ORHMSjMQQZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.991 [XNIO-1 task-4] 3B8nY7_RTR-ORHMSjMQQZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.991 [XNIO-1 task-4] 3B8nY7_RTR-ORHMSjMQQZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.991 [XNIO-1 task-4] 3B8nY7_RTR-ORHMSjMQQZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Hw2U9cspRbu9esnWt_4IRw redirectUri = http://localhost:8080/authorization +18:11:13.994 [XNIO-1 task-3] PIb0RBxmTbuvpQoYApbflg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.994 [XNIO-1 task-3] PIb0RBxmTbuvpQoYApbflg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.994 [XNIO-1 task-3] PIb0RBxmTbuvpQoYApbflg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:13.995 [XNIO-1 task-3] PIb0RBxmTbuvpQoYApbflg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:13.996 [XNIO-1 task-4] 3B8nY7_RTR-ORHMSjMQQZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:13.999 [XNIO-1 task-3] PIb0RBxmTbuvpQoYApbflg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.000 [XNIO-1 task-5] tE-Kq3nsTeCJkfAJ_f_-8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.000 [XNIO-1 task-3] PIb0RBxmTbuvpQoYApbflg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.008 [XNIO-1 task-3] 4egWJ6zUT_G_9Y0GMvQXWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.008 [XNIO-1 task-3] 4egWJ6zUT_G_9Y0GMvQXWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.009 [XNIO-1 task-3] 4egWJ6zUT_G_9Y0GMvQXWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.009 [XNIO-1 task-3] 4egWJ6zUT_G_9Y0GMvQXWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.014 [XNIO-1 task-3] 4egWJ6zUT_G_9Y0GMvQXWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.018 [XNIO-1 task-3] 30BmxcFsR06sIPU9dJNjDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.022 [XNIO-1 task-3] 30BmxcFsR06sIPU9dJNjDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.022 [XNIO-1 task-5] QwstAij7Tem3RBnHp_qh1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.023 [XNIO-1 task-5] QwstAij7Tem3RBnHp_qh1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.023 [XNIO-1 task-5] QwstAij7Tem3RBnHp_qh1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.023 [XNIO-1 task-5] QwstAij7Tem3RBnHp_qh1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.023 [XNIO-1 task-5] QwstAij7Tem3RBnHp_qh1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:14.023 [XNIO-1 task-5] QwstAij7Tem3RBnHp_qh1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5d0d5c62-522d-4c01-ac7f-0fbf81fbc0a0 scope = null +18:11:14.026 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:da56ed06 +18:11:14.029 [XNIO-1 task-3] 30BmxcFsR06sIPU9dJNjDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.034 [XNIO-1 task-5] QwstAij7Tem3RBnHp_qh1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.034 [XNIO-1 task-3] 2rjxNxVwRlCJqBvwzEXmJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.034 [XNIO-1 task-3] 2rjxNxVwRlCJqBvwzEXmJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.034 [XNIO-1 task-3] 2rjxNxVwRlCJqBvwzEXmJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.034 [XNIO-1 task-3] 2rjxNxVwRlCJqBvwzEXmJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = L-OzsMK3SDyvB74aV9hSLg redirectUri = http://localhost:8080/authorization +18:11:14.036 [XNIO-1 task-4] h0xtRRpySQuzeb4_bPrmhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.037 [XNIO-1 task-4] h0xtRRpySQuzeb4_bPrmhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.037 [XNIO-1 task-4] h0xtRRpySQuzeb4_bPrmhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.037 [XNIO-1 task-4] h0xtRRpySQuzeb4_bPrmhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.038 [XNIO-1 task-4] h0xtRRpySQuzeb4_bPrmhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", "Basic NzhmNWJhMmEtYWQ0OS00MzlmLTk0YzQtZjVlYzdhODE0M2EzOnhZa1IzZS1BUW5TTWU5X2dhWnlqVlE=", authorization) +18:11:14.040 [XNIO-1 task-3] 2rjxNxVwRlCJqBvwzEXmJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.041 [XNIO-1 task-3] 2rjxNxVwRlCJqBvwzEXmJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.042 [XNIO-1 task-4] h0xtRRpySQuzeb4_bPrmhQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.052 [XNIO-1 task-3] JrzQ3YJ7RGq0nxTXA7RygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.053 [XNIO-1 task-3] JrzQ3YJ7RGq0nxTXA7RygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.053 [XNIO-1 task-3] JrzQ3YJ7RGq0nxTXA7RygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.053 [XNIO-1 task-3] JrzQ3YJ7RGq0nxTXA7RygQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:14.053 [XNIO-1 task-4] N1ClPU3kSQuznL48WlBeDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.058 [XNIO-1 task-4] N1ClPU3kSQuznL48WlBeDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.058 [XNIO-1 task-4] N1ClPU3kSQuznL48WlBeDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.058 [XNIO-1 task-4] N1ClPU3kSQuznL48WlBeDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.063 [XNIO-1 task-4] N1ClPU3kSQuznL48WlBeDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.065 [XNIO-1 task-3] JrzQ3YJ7RGq0nxTXA7RygQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.073 [XNIO-1 task-4] Ft5Ifi5STzGIPdrY0MjUUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.073 [XNIO-1 task-4] Ft5Ifi5STzGIPdrY0MjUUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.074 [XNIO-1 task-4] Ft5Ifi5STzGIPdrY0MjUUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.075 [XNIO-1 task-4] Ft5Ifi5STzGIPdrY0MjUUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.076 [XNIO-1 task-3] V9whqHZkR1OaMfpocRUpXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.077 [XNIO-1 task-3] V9whqHZkR1OaMfpocRUpXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.077 [XNIO-1 task-3] V9whqHZkR1OaMfpocRUpXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.077 [XNIO-1 task-3] V9whqHZkR1OaMfpocRUpXA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5c3a3164-7a33-41c8-a557-e9286965fa7d scope = null +18:11:14.081 [XNIO-1 task-4] Ft5Ifi5STzGIPdrY0MjUUw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.086 [XNIO-1 task-3] V9whqHZkR1OaMfpocRUpXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.087 [XNIO-1 task-4] c_Nv3whSQDC9I7O2V4-bDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.087 [XNIO-1 task-4] c_Nv3whSQDC9I7O2V4-bDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.087 [XNIO-1 task-4] c_Nv3whSQDC9I7O2V4-bDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.087 [XNIO-1 task-4] c_Nv3whSQDC9I7O2V4-bDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.092 [XNIO-1 task-5] AEFV4AC1T6qzpAhyX0Falw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.092 [XNIO-1 task-5] AEFV4AC1T6qzpAhyX0Falw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.092 [XNIO-1 task-5] AEFV4AC1T6qzpAhyX0Falw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.092 [XNIO-1 task-5] AEFV4AC1T6qzpAhyX0Falw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LGsmukh7T0GyqMXS2fM90A redirectUri = http://localhost:8080/authorization +18:11:14.097 [XNIO-1 task-4] c_Nv3whSQDC9I7O2V4-bDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.099 [XNIO-1 task-5] AEFV4AC1T6qzpAhyX0Falw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.100 [XNIO-1 task-4] 6sAbHD_BQyCaoKLN6KzmHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.101 [XNIO-1 task-4] 6sAbHD_BQyCaoKLN6KzmHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.101 [XNIO-1 task-4] 6sAbHD_BQyCaoKLN6KzmHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.102 [XNIO-1 task-4] 6sAbHD_BQyCaoKLN6KzmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:14.106 [XNIO-1 task-3] Xkj3GJVeSRK4bZaJppmf-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.106 [XNIO-1 task-3] Xkj3GJVeSRK4bZaJppmf-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.106 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:512cf01c +18:11:14.106 [XNIO-1 task-3] Xkj3GJVeSRK4bZaJppmf-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.106 [XNIO-1 task-3] Xkj3GJVeSRK4bZaJppmf-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:14.110 [XNIO-1 task-5] M7zyqpypQzyzx8zceHBYSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.110 [XNIO-1 task-5] M7zyqpypQzyzx8zceHBYSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.110 [XNIO-1 task-5] M7zyqpypQzyzx8zceHBYSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.110 [XNIO-1 task-5] M7zyqpypQzyzx8zceHBYSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:14.111 [XNIO-1 task-3] Xkj3GJVeSRK4bZaJppmf-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.115 [XNIO-1 task-4] 6sAbHD_BQyCaoKLN6KzmHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.120 [XNIO-1 task-3] JByKl7ADR9KdAL8wbRJ8NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.120 [XNIO-1 task-3] JByKl7ADR9KdAL8wbRJ8NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.120 [XNIO-1 task-5] M7zyqpypQzyzx8zceHBYSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.120 [XNIO-1 task-5] M7zyqpypQzyzx8zceHBYSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.120 [XNIO-1 task-3] JByKl7ADR9KdAL8wbRJ8NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", "Basic ZTljYzczNWQtOThjMi00N2JlLWI1MmQtYWZkZTYzZWEwYTI4OkVRZmxxZXM2U3AtMDhYUS1DdVk5SXc=", authorization) +18:11:14.127 [XNIO-1 task-3] JByKl7ADR9KdAL8wbRJ8NQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.133 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:05ae7978 +18:11:14.136 [XNIO-1 task-5] MjQr6rkBT1KlCNWHOx_Lig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.137 [XNIO-1 task-5] MjQr6rkBT1KlCNWHOx_Lig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.137 [XNIO-1 task-5] MjQr6rkBT1KlCNWHOx_Lig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.137 [XNIO-1 task-5] MjQr6rkBT1KlCNWHOx_Lig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:14.137 [XNIO-1 task-3] 4Fe6V4u8RJWu3OGdKWlubw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.140 [XNIO-1 task-3] 4Fe6V4u8RJWu3OGdKWlubw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.140 [XNIO-1 task-3] 4Fe6V4u8RJWu3OGdKWlubw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.140 [XNIO-1 task-3] 4Fe6V4u8RJWu3OGdKWlubw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:14.145 [XNIO-1 task-3] 4Fe6V4u8RJWu3OGdKWlubw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.149 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f59935ee +18:11:14.150 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f59935ee +18:11:14.150 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f59935ee +18:11:14.150 [XNIO-1 task-3] diNLV05QSLG51WiJU2pvBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.150 [XNIO-1 task-3] diNLV05QSLG51WiJU2pvBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.150 [XNIO-1 task-3] diNLV05QSLG51WiJU2pvBg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.153 [XNIO-1 task-5] MjQr6rkBT1KlCNWHOx_Lig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.155 [XNIO-1 task-3] diNLV05QSLG51WiJU2pvBg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.160 [XNIO-1 task-3] Ru2epxImSvezq6ZzmUeHcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.161 [XNIO-1 task-3] Ru2epxImSvezq6ZzmUeHcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.162 [XNIO-1 task-3] Ru2epxImSvezq6ZzmUeHcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.162 [XNIO-1 task-3] Ru2epxImSvezq6ZzmUeHcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -ZKyZ6bfSxi5UgoBnThKCQ redirectUri = http://localhost:8080/authorization +18:11:14.164 [XNIO-1 task-5] O1fCAMWtS6qcQiptYoYLwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.164 [XNIO-1 task-5] O1fCAMWtS6qcQiptYoYLwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.164 [XNIO-1 task-5] O1fCAMWtS6qcQiptYoYLwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.165 [XNIO-1 task-5] O1fCAMWtS6qcQiptYoYLwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.166 [XNIO-1 task-4] xmRjf_JJT_KHutCWCH4mHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.166 [XNIO-1 task-4] xmRjf_JJT_KHutCWCH4mHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.166 [XNIO-1 task-4] xmRjf_JJT_KHutCWCH4mHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.166 [XNIO-1 task-4] xmRjf_JJT_KHutCWCH4mHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2a446553-d151-4133-8751-dc1bb852f489 scope = null +18:11:14.170 [XNIO-1 task-5] O1fCAMWtS6qcQiptYoYLwQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.170 [XNIO-1 task-3] Ru2epxImSvezq6ZzmUeHcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.177 [XNIO-1 task-4] xmRjf_JJT_KHutCWCH4mHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.178 [XNIO-1 task-5] LCUtSZ8YREqBSVpCKZt98A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.179 [XNIO-1 task-5] LCUtSZ8YREqBSVpCKZt98A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.179 [XNIO-1 task-5] LCUtSZ8YREqBSVpCKZt98A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.179 [XNIO-1 task-5] LCUtSZ8YREqBSVpCKZt98A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:14.187 [XNIO-1 task-5] LCUtSZ8YREqBSVpCKZt98A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.195 [XNIO-1 task-5] qwfRdXafQKWqsH1f6fMwkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.196 [XNIO-1 task-5] qwfRdXafQKWqsH1f6fMwkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.196 [XNIO-1 task-5] qwfRdXafQKWqsH1f6fMwkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.196 [XNIO-1 task-5] qwfRdXafQKWqsH1f6fMwkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:14.208 [XNIO-1 task-5] qwfRdXafQKWqsH1f6fMwkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.209 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f59935ee +18:11:14.216 [XNIO-1 task-5] HPTsOJT-TS6xodMk-Z7BWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.216 [XNIO-1 task-5] HPTsOJT-TS6xodMk-Z7BWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.217 [XNIO-1 task-5] HPTsOJT-TS6xodMk-Z7BWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.217 [XNIO-1 task-5] HPTsOJT-TS6xodMk-Z7BWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:14.222 [XNIO-1 task-5] HPTsOJT-TS6xodMk-Z7BWw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.225 [XNIO-1 task-4] daJqzG7KTaaxZGOH-ppCtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.225 [XNIO-1 task-4] daJqzG7KTaaxZGOH-ppCtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.225 [XNIO-1 task-4] daJqzG7KTaaxZGOH-ppCtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.225 [XNIO-1 task-4] daJqzG7KTaaxZGOH-ppCtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", "Basic MGZlOTJkMDYtMzI0My00ZDQyLTllNTktZjk5ZTQwMTk5MzMzOjVuOFVaQUtvUWMyX2RCY3BPYzBOZXc=", authorization) +18:11:14.229 [XNIO-1 task-5] xqvXCB--Q66vKs0ORkOr6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.229 [XNIO-1 task-5] xqvXCB--Q66vKs0ORkOr6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.229 [XNIO-1 task-5] xqvXCB--Q66vKs0ORkOr6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.229 [XNIO-1 task-5] xqvXCB--Q66vKs0ORkOr6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:14.230 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d789457b-9423-45fa-a62f-b640568bad78 +18:11:14.234 [XNIO-1 task-5] xqvXCB--Q66vKs0ORkOr6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.241 [XNIO-1 task-4] daJqzG7KTaaxZGOH-ppCtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.243 [XNIO-1 task-5] gjTUcT4US4Gh9FzJ0EpWIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.244 [XNIO-1 task-5] gjTUcT4US4Gh9FzJ0EpWIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.244 [XNIO-1 task-5] gjTUcT4US4Gh9FzJ0EpWIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.244 [XNIO-1 task-5] gjTUcT4US4Gh9FzJ0EpWIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.245 [XNIO-1 task-5] gjTUcT4US4Gh9FzJ0EpWIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", "Basic ZDBlNjI5NDQtZTk4Ny00ODZlLWEzMDUtNWQwNGJhYzM0ZjMyOlAwaXM5dHg0VFNtMDd3eF9LT2pFTXc=", authorization) +18:11:14.250 [XNIO-1 task-5] gjTUcT4US4Gh9FzJ0EpWIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.251 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f59935ee +18:11:14.261 [XNIO-1 task-5] lwetfUGWQOS2P9wv4H0DjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.262 [XNIO-1 task-5] lwetfUGWQOS2P9wv4H0DjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.262 [XNIO-1 task-5] lwetfUGWQOS2P9wv4H0DjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.262 [XNIO-1 task-5] lwetfUGWQOS2P9wv4H0DjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.262 [XNIO-1 task-4] S1_m4oNvSCa06oY6OAhnWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.262 [XNIO-1 task-4] S1_m4oNvSCa06oY6OAhnWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.262 [XNIO-1 task-5] lwetfUGWQOS2P9wv4H0DjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:14.262 [XNIO-1 task-5] lwetfUGWQOS2P9wv4H0DjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.268 [XNIO-1 task-5] lwetfUGWQOS2P9wv4H0DjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.271 [XNIO-1 task-4] S1_m4oNvSCa06oY6OAhnWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.272 [XNIO-1 task-5] T2wjHdwnRsWLSX2E-Pa0FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.272 [XNIO-1 task-4] S1_m4oNvSCa06oY6OAhnWQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.272 [XNIO-1 task-5] T2wjHdwnRsWLSX2E-Pa0FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.272 [XNIO-1 task-5] T2wjHdwnRsWLSX2E-Pa0FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.272 [XNIO-1 task-5] T2wjHdwnRsWLSX2E-Pa0FA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:14.279 [XNIO-1 task-5] T2wjHdwnRsWLSX2E-Pa0FA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.279 [XNIO-1 task-3] V4x6_jryTFGY2b77vVOfFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.279 [XNIO-1 task-3] V4x6_jryTFGY2b77vVOfFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.279 [XNIO-1 task-3] V4x6_jryTFGY2b77vVOfFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.280 [XNIO-1 task-3] V4x6_jryTFGY2b77vVOfFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", "Basic MjAwNWY5OTgtOTU4OS00ODgyLWEyMDgtNzhhZTNkNGVhZTFmOjFCSUhMREIyUlRLRzFId1BEQVhGQkE=", authorization) +18:11:14.288 [XNIO-1 task-3] V4x6_jryTFGY2b77vVOfFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.288 [XNIO-1 task-3] V4x6_jryTFGY2b77vVOfFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.288 [XNIO-1 task-5] BXvsyhl7RUmbz1RjSSz9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.288 [XNIO-1 task-5] BXvsyhl7RUmbz1RjSSz9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.288 [XNIO-1 task-5] BXvsyhl7RUmbz1RjSSz9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.288 [XNIO-1 task-5] BXvsyhl7RUmbz1RjSSz9lw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.296 [XNIO-1 task-5] BXvsyhl7RUmbz1RjSSz9lw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.301 [XNIO-1 task-4] Bo2HwW5lQmeck9iKXJCDnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.302 [XNIO-1 task-4] Bo2HwW5lQmeck9iKXJCDnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.302 [XNIO-1 task-5] gd86oVduQrSNZrrwXpTxFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.302 [XNIO-1 task-4] Bo2HwW5lQmeck9iKXJCDnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.302 [XNIO-1 task-5] gd86oVduQrSNZrrwXpTxFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.302 [XNIO-1 task-4] Bo2HwW5lQmeck9iKXJCDnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.302 [XNIO-1 task-5] gd86oVduQrSNZrrwXpTxFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = hLG1QZrNRda3KOzM3D5lCw redirectUri = http://localhost:8080/authorization +18:11:14.302 [XNIO-1 task-4] Bo2HwW5lQmeck9iKXJCDnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.306 [XNIO-1 task-3] 6GKkwKEmR-mHpGu1g52bYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.306 [XNIO-1 task-3] 6GKkwKEmR-mHpGu1g52bYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.306 [XNIO-1 task-3] 6GKkwKEmR-mHpGu1g52bYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.306 [XNIO-1 task-3] 6GKkwKEmR-mHpGu1g52bYA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7bdc542d-08f5-41eb-852e-54b14368bf2d scope = null +18:11:14.308 [XNIO-1 task-4] Bo2HwW5lQmeck9iKXJCDnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.309 [XNIO-1 task-5] gd86oVduQrSNZrrwXpTxFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.315 [XNIO-1 task-4] Fu4mf-HIROG-bMsQQtxJ8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.316 [XNIO-1 task-4] Fu4mf-HIROG-bMsQQtxJ8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.316 [XNIO-1 task-4] Fu4mf-HIROG-bMsQQtxJ8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.316 [XNIO-1 task-4] Fu4mf-HIROG-bMsQQtxJ8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", "Basic Zjc4ZTU5MzktNmIzMS00YzUzLWFiMTUtNDE2NjEzYWFkNTVmOjBTaGxvT0NiVENLY0d4R2tzZS1OdUE=", authorization) +18:11:14.319 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:512cf01c +18:11:14.321 [XNIO-1 task-4] Fu4mf-HIROG-bMsQQtxJ8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.325 [XNIO-1 task-4] mswfVXwOTZCsotbC5XHZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.325 [XNIO-1 task-4] mswfVXwOTZCsotbC5XHZ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.325 [XNIO-1 task-4] mswfVXwOTZCsotbC5XHZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.325 [XNIO-1 task-4] mswfVXwOTZCsotbC5XHZ4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", "Basic ZjFmYmU2NmUtZDM1MC00N2MwLThjOTctMzJlNTcxMTQwZTI4OlA0RlZ4UU5fU0dDTkVXZE9aVzViRGc=", authorization) +18:11:14.328 [XNIO-1 task-3] 6GKkwKEmR-mHpGu1g52bYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.329 [XNIO-1 task-5] TPkmryFtS-OiKemZYEPIIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.329 [XNIO-1 task-5] TPkmryFtS-OiKemZYEPIIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.329 [XNIO-1 task-5] TPkmryFtS-OiKemZYEPIIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.329 [XNIO-1 task-5] TPkmryFtS-OiKemZYEPIIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.335 [XNIO-1 task-5] TPkmryFtS-OiKemZYEPIIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.339 [XNIO-1 task-4] mswfVXwOTZCsotbC5XHZ4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.341 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f59935ee +18:11:14.342 [XNIO-1 task-3] Y2OTUKqeQQC0BRzrRYtQEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.342 [XNIO-1 task-3] Y2OTUKqeQQC0BRzrRYtQEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.342 [XNIO-1 task-3] Y2OTUKqeQQC0BRzrRYtQEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.343 [XNIO-1 task-3] Y2OTUKqeQQC0BRzrRYtQEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.347 [XNIO-1 task-5] GlGlqXeZSn2Ap2cbWALA8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.347 [XNIO-1 task-5] GlGlqXeZSn2Ap2cbWALA8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.347 [XNIO-1 task-5] GlGlqXeZSn2Ap2cbWALA8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.347 [XNIO-1 task-5] GlGlqXeZSn2Ap2cbWALA8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", "Basic MTg5YmU2NjgtMTA5Ni00NDAxLWJhMmMtN2UwZWU1NWNkYWU4OnRFU2tWRXVNUzhTWjZZN3pNcnlFbUE=", authorization) +18:11:14.349 [XNIO-1 task-3] Y2OTUKqeQQC0BRzrRYtQEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.355 [XNIO-1 task-5] GlGlqXeZSn2Ap2cbWALA8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.355 [XNIO-1 task-5] GlGlqXeZSn2Ap2cbWALA8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.356 [XNIO-1 task-3] WTqWn0_TSyy9ZVqutbiePw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.356 [XNIO-1 task-3] WTqWn0_TSyy9ZVqutbiePw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.356 [XNIO-1 task-3] WTqWn0_TSyy9ZVqutbiePw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.356 [XNIO-1 task-3] WTqWn0_TSyy9ZVqutbiePw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.361 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:05ae7978 +18:11:14.361 [XNIO-1 task-3] WTqWn0_TSyy9ZVqutbiePw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.371 [XNIO-1 task-5] c9DcjRYWSl28d0JjsosDCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.371 [XNIO-1 task-5] c9DcjRYWSl28d0JjsosDCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.371 [XNIO-1 task-5] c9DcjRYWSl28d0JjsosDCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.372 [XNIO-1 task-5] c9DcjRYWSl28d0JjsosDCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.377 [XNIO-1 task-5] c9DcjRYWSl28d0JjsosDCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.381 [XNIO-1 task-5] 8OibM41PR52HKt8f3SZnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.381 [XNIO-1 task-5] 8OibM41PR52HKt8f3SZnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.381 [XNIO-1 task-5] 8OibM41PR52HKt8f3SZnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.381 [XNIO-1 task-5] 8OibM41PR52HKt8f3SZnxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.387 [XNIO-1 task-5] 8OibM41PR52HKt8f3SZnxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.395 [XNIO-1 task-5] WrYsj8HRQyaUAjiZb6hM2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.395 [XNIO-1 task-5] WrYsj8HRQyaUAjiZb6hM2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.395 [XNIO-1 task-5] WrYsj8HRQyaUAjiZb6hM2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.395 [XNIO-1 task-5] WrYsj8HRQyaUAjiZb6hM2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.396 [XNIO-1 task-3] _KBR3WWFQEeh6iz6hBvVCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.396 [XNIO-1 task-3] _KBR3WWFQEeh6iz6hBvVCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.397 [XNIO-1 task-3] _KBR3WWFQEeh6iz6hBvVCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.397 [XNIO-1 task-3] _KBR3WWFQEeh6iz6hBvVCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BCe29nXqRJiivVyOiIalfA redirectUri = http://localhost:8080/authorization +18:11:14.400 [XNIO-1 task-5] WrYsj8HRQyaUAjiZb6hM2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.403 [XNIO-1 task-3] _KBR3WWFQEeh6iz6hBvVCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.404 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4323f750-3efe-499f-a7e0-846df13a50a5 +18:11:14.431 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65db8ad2 +18:11:14.431 [XNIO-1 task-5] cxL4bsk0SgGg40rYWOQ1zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.431 [XNIO-1 task-5] cxL4bsk0SgGg40rYWOQ1zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.432 [XNIO-1 task-5] cxL4bsk0SgGg40rYWOQ1zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.432 [XNIO-1 task-5] cxL4bsk0SgGg40rYWOQ1zw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.432 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65db8ad2 +18:11:14.438 [XNIO-1 task-5] cxL4bsk0SgGg40rYWOQ1zw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.440 [XNIO-1 task-5] ajlawpncRkiaZkDZ6SnBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.440 [XNIO-1 task-5] ajlawpncRkiaZkDZ6SnBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.440 [XNIO-1 task-5] ajlawpncRkiaZkDZ6SnBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.441 [XNIO-1 task-5] ajlawpncRkiaZkDZ6SnBSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4323f750-3efe-499f-a7e0-846df13a50a5 scope = null +18:11:14.441 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f59935ee +18:11:14.448 [XNIO-1 task-3] Da6MNUSSQUej73qTAtHaFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.448 [XNIO-1 task-3] Da6MNUSSQUej73qTAtHaFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.450 [XNIO-1 task-3] Da6MNUSSQUej73qTAtHaFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.450 [XNIO-1 task-3] Da6MNUSSQUej73qTAtHaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:14.455 [XNIO-1 task-3] Da6MNUSSQUej73qTAtHaFw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.456 [XNIO-1 task-3] Da6MNUSSQUej73qTAtHaFw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.461 [XNIO-1 task-3] BLawHitdQ9mdz93h2mtSYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.462 [XNIO-1 task-3] BLawHitdQ9mdz93h2mtSYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.462 [XNIO-1 task-3] BLawHitdQ9mdz93h2mtSYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.462 [XNIO-1 task-3] BLawHitdQ9mdz93h2mtSYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:14.464 [XNIO-1 task-4] eb8acunARf6T3WN1zQKHmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.465 [XNIO-1 task-4] eb8acunARf6T3WN1zQKHmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.465 [XNIO-1 task-4] eb8acunARf6T3WN1zQKHmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.465 [XNIO-1 task-4] eb8acunARf6T3WN1zQKHmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGExYTljNDktMjI2OS00ZDkyLWFmYmMtMTc4YTliNWY0MWMyOmtZbFBsX3ZwUmxHc0VTUmFSVWFNV1E=", "Basic OGExYTljNDktMjI2OS00ZDkyLWFmYmMtMTc4YTliNWY0MWMyOmtZbFBsX3ZwUmxHc0VTUmFSVWFNV1E=", authorization) +18:11:14.466 [XNIO-1 task-5] nyvp1SZ4ScqIgNT2mmc_LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.466 [XNIO-1 task-5] nyvp1SZ4ScqIgNT2mmc_LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.467 [XNIO-1 task-5] nyvp1SZ4ScqIgNT2mmc_LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.467 [XNIO-1 task-5] nyvp1SZ4ScqIgNT2mmc_LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:14.467 [XNIO-1 task-3] BLawHitdQ9mdz93h2mtSYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.471 [XNIO-1 task-3] oT41hkbhRpqjzIFGRW3-7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.471 [XNIO-1 task-3] oT41hkbhRpqjzIFGRW3-7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.472 [XNIO-1 task-3] oT41hkbhRpqjzIFGRW3-7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.472 [XNIO-1 task-3] oT41hkbhRpqjzIFGRW3-7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", "Basic YTM2N2FlMWUtZjg2MC00MDEzLTlhN2UtMmM2YmFhOTVlMWE1Om5ac2hvZUpIUjdxN3VjZmlfanhnU1E=", authorization) +18:11:14.472 [XNIO-1 task-4] eb8acunARf6T3WN1zQKHmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.473 [XNIO-1 task-4] eb8acunARf6T3WN1zQKHmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.479 [XNIO-1 task-5] nyvp1SZ4ScqIgNT2mmc_LQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.479 [XNIO-1 task-3] oT41hkbhRpqjzIFGRW3-7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.487 [XNIO-1 task-3] jUx8nAEvQJWE-NNRRrAv0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.487 [XNIO-1 task-3] jUx8nAEvQJWE-NNRRrAv0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.487 [XNIO-1 task-3] jUx8nAEvQJWE-NNRRrAv0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.488 [XNIO-1 task-3] jUx8nAEvQJWE-NNRRrAv0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.492 [XNIO-1 task-3] jUx8nAEvQJWE-NNRRrAv0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.498 [XNIO-1 task-5] C3OG6ui_TzSU7dIyEi0mKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.498 [XNIO-1 task-5] C3OG6ui_TzSU7dIyEi0mKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.498 [XNIO-1 task-5] C3OG6ui_TzSU7dIyEi0mKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.498 [XNIO-1 task-5] C3OG6ui_TzSU7dIyEi0mKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ToJ72v3IST2l93bb-onZ7Q redirectUri = http://localhost:8080/authorization +18:11:14.501 [XNIO-1 task-3] 9H2B1vWeR7qGGmSduUz85Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.501 [XNIO-1 task-3] 9H2B1vWeR7qGGmSduUz85Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.502 [XNIO-1 task-3] 9H2B1vWeR7qGGmSduUz85Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.502 [XNIO-1 task-3] 9H2B1vWeR7qGGmSduUz85Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.504 [XNIO-1 task-5] C3OG6ui_TzSU7dIyEi0mKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.504 [XNIO-1 task-5] C3OG6ui_TzSU7dIyEi0mKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.504 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:350e5d19 +18:11:14.507 [XNIO-1 task-3] 9H2B1vWeR7qGGmSduUz85Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.518 [XNIO-1 task-5] MPNxI7AdR3aZ6ZVwRcEpLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.518 [XNIO-1 task-5] MPNxI7AdR3aZ6ZVwRcEpLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.518 [XNIO-1 task-5] MPNxI7AdR3aZ6ZVwRcEpLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.518 [XNIO-1 task-5] MPNxI7AdR3aZ6ZVwRcEpLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.520 [XNIO-1 task-3] Yc1bYujXR62dRlvNvekSzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.520 [XNIO-1 task-3] Yc1bYujXR62dRlvNvekSzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.520 [XNIO-1 task-3] Yc1bYujXR62dRlvNvekSzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.521 [XNIO-1 task-3] Yc1bYujXR62dRlvNvekSzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 61d3dbd5-00c2-4032-8d72-31eedefc9f78 scope = null +18:11:14.524 [XNIO-1 task-5] MPNxI7AdR3aZ6ZVwRcEpLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.531 [XNIO-1 task-5] gyp927NNRTevhLygnhweQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.531 [XNIO-1 task-5] gyp927NNRTevhLygnhweQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.531 [XNIO-1 task-5] gyp927NNRTevhLygnhweQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.531 [XNIO-1 task-5] gyp927NNRTevhLygnhweQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.534 [XNIO-1 task-3] Yc1bYujXR62dRlvNvekSzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.536 [XNIO-1 task-5] gyp927NNRTevhLygnhweQA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.544 [XNIO-1 task-5] HNHz1bOuRxOv_spUZn_oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.544 [XNIO-1 task-5] HNHz1bOuRxOv_spUZn_oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.544 [XNIO-1 task-5] HNHz1bOuRxOv_spUZn_oAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.544 [XNIO-1 task-5] HNHz1bOuRxOv_spUZn_oAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.547 [XNIO-1 task-3] Inw9X65JQ8CGeYUnRJF56A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.547 [XNIO-1 task-3] Inw9X65JQ8CGeYUnRJF56A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.547 [XNIO-1 task-3] Inw9X65JQ8CGeYUnRJF56A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.547 [XNIO-1 task-3] Inw9X65JQ8CGeYUnRJF56A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 37pwiJReQXS5qJS8otY-1w redirectUri = http://localhost:8080/authorization +18:11:14.549 [XNIO-1 task-5] HNHz1bOuRxOv_spUZn_oAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.551 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:512cf01c +18:11:14.553 [XNIO-1 task-3] Inw9X65JQ8CGeYUnRJF56A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.554 [XNIO-1 task-5] XV8gJa_mQp6bFx5kbJfdhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.554 [XNIO-1 task-5] XV8gJa_mQp6bFx5kbJfdhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.554 [XNIO-1 task-5] XV8gJa_mQp6bFx5kbJfdhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.554 [XNIO-1 task-5] XV8gJa_mQp6bFx5kbJfdhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", "Basic NWVhYjliYjYtYTI1Zi00ZWE3LTg2NzEtMTg1ZjBiODc1NTczOkozYWRheS11UlRxQlFpZ2MyaHAtdEE=", authorization) +18:11:14.555 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7d5f0f62-3a8f-44e5-843b-41855ca187d2 +18:11:14.557 [XNIO-1 task-4] Dol6z1lDRX28vcAMEcAcPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.557 [XNIO-1 task-4] Dol6z1lDRX28vcAMEcAcPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.558 [XNIO-1 task-4] Dol6z1lDRX28vcAMEcAcPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.558 [XNIO-1 task-4] Dol6z1lDRX28vcAMEcAcPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.560 [XNIO-1 task-5] XV8gJa_mQp6bFx5kbJfdhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.560 [XNIO-1 task-5] XV8gJa_mQp6bFx5kbJfdhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.563 [XNIO-1 task-4] Dol6z1lDRX28vcAMEcAcPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.565 [XNIO-1 task-3] jSk383QuRS-NCjGk5kLvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.565 [XNIO-1 task-3] jSk383QuRS-NCjGk5kLvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.565 [XNIO-1 task-3] jSk383QuRS-NCjGk5kLvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.565 [XNIO-1 task-3] jSk383QuRS-NCjGk5kLvsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7d5f0f62-3a8f-44e5-843b-41855ca187d2 scope = null +18:11:14.569 [XNIO-1 task-5] NBmwaSDjQUOxcf19J4IEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.569 [XNIO-1 task-5] NBmwaSDjQUOxcf19J4IEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.569 [XNIO-1 task-5] NBmwaSDjQUOxcf19J4IEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.569 [XNIO-1 task-5] NBmwaSDjQUOxcf19J4IEzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.573 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f59935ee +18:11:14.574 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:05ae7978 +18:11:14.574 [XNIO-1 task-5] NBmwaSDjQUOxcf19J4IEzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.576 [XNIO-1 task-3] jSk383QuRS-NCjGk5kLvsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.578 [XNIO-1 task-5] F7Y8rEGOTJywGkrhUSbllQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.578 [XNIO-1 task-5] F7Y8rEGOTJywGkrhUSbllQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.578 [XNIO-1 task-5] F7Y8rEGOTJywGkrhUSbllQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.578 [XNIO-1 task-5] F7Y8rEGOTJywGkrhUSbllQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.583 [XNIO-1 task-5] F7Y8rEGOTJywGkrhUSbllQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.587 [XNIO-1 task-5] M9cqpUmFTcql1NitTKZt-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.587 [XNIO-1 task-5] M9cqpUmFTcql1NitTKZt-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.587 [XNIO-1 task-5] M9cqpUmFTcql1NitTKZt-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.587 [XNIO-1 task-5] M9cqpUmFTcql1NitTKZt-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", "Basic MjYwMTFjYjEtYWIyYi00NDgzLWFlMWQtMzFiMGM0NWQ2N2JmOmhPRjlIMWdnUkh1SVcycHRlT255UkE=", authorization) +18:11:14.590 [XNIO-1 task-3] 9uHK8uq_RJ-6sXZgJewdEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.590 [XNIO-1 task-3] 9uHK8uq_RJ-6sXZgJewdEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.591 [XNIO-1 task-3] 9uHK8uq_RJ-6sXZgJewdEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.591 [XNIO-1 task-3] 9uHK8uq_RJ-6sXZgJewdEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.595 [XNIO-1 task-5] M9cqpUmFTcql1NitTKZt-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:11:14.595 [XNIO-1 task-5] M9cqpUmFTcql1NitTKZt-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.596 [XNIO-1 task-3] 9uHK8uq_RJ-6sXZgJewdEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.600 [XNIO-1 task-3] TJe_f2CsTSe3rguWuYMVqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.600 [XNIO-1 task-3] TJe_f2CsTSe3rguWuYMVqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.600 [XNIO-1 task-3] TJe_f2CsTSe3rguWuYMVqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.600 [XNIO-1 task-3] TJe_f2CsTSe3rguWuYMVqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.607 [XNIO-1 task-3] TJe_f2CsTSe3rguWuYMVqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.617 [XNIO-1 task-3] 4T7xI2I1SnCF9tKDxl7nIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.617 [XNIO-1 task-3] 4T7xI2I1SnCF9tKDxl7nIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.618 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:05ae7978 +18:11:14.618 [XNIO-1 task-3] 4T7xI2I1SnCF9tKDxl7nIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.618 [XNIO-1 task-3] 4T7xI2I1SnCF9tKDxl7nIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.626 [XNIO-1 task-3] 4T7xI2I1SnCF9tKDxl7nIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:11:14.636 [XNIO-1 task-3] biXaroIlSBqMkWqCc6EeWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.637 [XNIO-1 task-3] biXaroIlSBqMkWqCc6EeWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.637 [XNIO-1 task-5] vmDfcKg3RHK7Ov1WWL3arA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.637 [XNIO-1 task-5] vmDfcKg3RHK7Ov1WWL3arA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:11:14.637 [XNIO-1 task-5] vmDfcKg3RHK7Ov1WWL3arA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:11:14.637 [XNIO-1 task-5] vmDfcKg3RHK7Ov1WWL3arA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGExYTljNDktMjI2OS00ZDkyLWFmYmMtMTc4YTliNWY0MWMyOmtZbFBsX3ZwUmxHc0VTUmFSVWFNV1E=", "Basic OGExYTljNDktMjI2OS00ZDkyLWFmYmMtMTc4YTliNWY0MWMyOmtZbFBsX3ZwUmxHc0VTUmFSVWFNV1E=", authorization) +18:11:14.637 [XNIO-1 task-5] vmDfcKg3RHK7Ov1WWL3arA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 27269bbb-67e1-47a5-a979-90d2a4891eb6 scope = null +18:11:14.637 [XNIO-1 task-3] biXaroIlSBqMkWqCc6EeWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", "Basic YzYzMzVhYjItMjZjNS00OGZmLWJlMDgtMDAyNDkwMTY5ZTc2OkhxRTQ4ZFg0UVdxbm54UkRqRWpNMXc=", authorization) +18:11:14.645 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:713fb0be +18:11:14.645 [XNIO-1 task-3] biXaroIlSBqMkWqCc6EeWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.646 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:713fb0be +18:11:14.649 [XNIO-1 task-5] vmDfcKg3RHK7Ov1WWL3arA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.655 [XNIO-1 task-3] 6tNtGMttQGuZ7n40RPA1vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.655 [XNIO-1 task-3] 6tNtGMttQGuZ7n40RPA1vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.655 [XNIO-1 task-3] 6tNtGMttQGuZ7n40RPA1vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.655 [XNIO-1 task-3] 6tNtGMttQGuZ7n40RPA1vw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.661 [XNIO-1 task-3] 6tNtGMttQGuZ7n40RPA1vw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.665 [XNIO-1 task-3] 8qCBsZH4T66AES9JK0S98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.665 [XNIO-1 task-3] 8qCBsZH4T66AES9JK0S98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.665 [XNIO-1 task-3] 8qCBsZH4T66AES9JK0S98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.666 [XNIO-1 task-3] 8qCBsZH4T66AES9JK0S98g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.671 [XNIO-1 task-3] 8qCBsZH4T66AES9JK0S98g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.677 [XNIO-1 task-3] kjS2KfF8Ss29pjnPhUJO6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.677 [XNIO-1 task-3] kjS2KfF8Ss29pjnPhUJO6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.678 [XNIO-1 task-3] kjS2KfF8Ss29pjnPhUJO6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:11:14.678 [XNIO-1 task-3] kjS2KfF8Ss29pjnPhUJO6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:11:14.683 [XNIO-1 task-3] kjS2KfF8Ss29pjnPhUJO6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:11:14.689 [XNIO-1 task-3] zLXuELhNQsaq5QyT9s7L4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token diff --git a/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..c4013ff --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_5/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1977 @@ +18:11:08.250 [XNIO-1 task-1] v3zMFJNjRjCShFKW2oWWpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.250 [XNIO-1 task-1] v3zMFJNjRjCShFKW2oWWpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:08.250 [XNIO-1 task-1] v3zMFJNjRjCShFKW2oWWpg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:08.252 [XNIO-1 task-1] te0zrY0ySmq6B8QFhq2Tag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.252 [XNIO-1 task-1] te0zrY0ySmq6B8QFhq2Tag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.252 [XNIO-1 task-1] te0zrY0ySmq6B8QFhq2Tag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.252 [XNIO-1 task-1] te0zrY0ySmq6B8QFhq2Tag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.256 [XNIO-1 task-1] wER2gidoSQSUHO_TdWqDfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.256 [XNIO-1 task-1] wER2gidoSQSUHO_TdWqDfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.256 [XNIO-1 task-1] wER2gidoSQSUHO_TdWqDfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.264 [XNIO-1 task-1] FnW-ja35Tu-p6UHnq6ynKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.264 [XNIO-1 task-1] FnW-ja35Tu-p6UHnq6ynKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.264 [XNIO-1 task-1] FnW-ja35Tu-p6UHnq6ynKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.272 [XNIO-1 task-1] V3HpeA_EQrSVuwnit6SIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b98337d8 +18:11:08.272 [XNIO-1 task-1] V3HpeA_EQrSVuwnit6SIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.272 [XNIO-1 task-1] V3HpeA_EQrSVuwnit6SIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:08.272 [XNIO-1 task-1] V3HpeA_EQrSVuwnit6SIcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b98337d8 +18:11:08.276 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:08.276 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.276 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.276 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:08.277 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:08.277 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:08.277 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5923ec15-1914-4de7-b49a-9dcdb59c5326","newPassword":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPasswordConfirm":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f"}, {"password":"5923ec15-1914-4de7-b49a-9dcdb59c5326","newPassword":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPasswordConfirm":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f"}, requestBody) +18:11:08.278 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG com.networknt.schema.TypeValidator debug - validate( "98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f", {"password":"5923ec15-1914-4de7-b49a-9dcdb59c5326","newPassword":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPasswordConfirm":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f"}, requestBody.newPasswordConfirm) +18:11:08.278 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG com.networknt.schema.TypeValidator debug - validate( "5923ec15-1914-4de7-b49a-9dcdb59c5326", {"password":"5923ec15-1914-4de7-b49a-9dcdb59c5326","newPassword":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPasswordConfirm":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f"}, requestBody.password) +18:11:08.278 [XNIO-1 task-1] vbpf2YRyTbe6uMlJD5inUw DEBUG com.networknt.schema.TypeValidator debug - validate( "98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f", {"password":"5923ec15-1914-4de7-b49a-9dcdb59c5326","newPassword":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPasswordConfirm":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f"}, requestBody.newPassword) +18:11:08.297 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:08.297 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.297 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.298 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:08.298 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:08.298 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:08.298 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPassword":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPasswordConfirm":"e13eb2cb-82a3-48b7-bec6-d148869f1600"}, {"password":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPassword":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPasswordConfirm":"e13eb2cb-82a3-48b7-bec6-d148869f1600"}, requestBody) +18:11:08.298 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e13eb2cb-82a3-48b7-bec6-d148869f1600", {"password":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPassword":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPasswordConfirm":"e13eb2cb-82a3-48b7-bec6-d148869f1600"}, requestBody.newPasswordConfirm) +18:11:08.298 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f", {"password":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPassword":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPasswordConfirm":"e13eb2cb-82a3-48b7-bec6-d148869f1600"}, requestBody.password) +18:11:08.298 [XNIO-1 task-1] mzof2w41RJGXNQ0YbQ_KeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e13eb2cb-82a3-48b7-bec6-d148869f1600", {"password":"98e98e83-f0cf-4770-8a3f-1a7cfbf5d16f","newPassword":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPasswordConfirm":"e13eb2cb-82a3-48b7-bec6-d148869f1600"}, requestBody.newPassword) +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPassword":"c98f1899-3fb9-42ab-abee-871cb038f734","newPasswordConfirm":"c98f1899-3fb9-42ab-abee-871cb038f734"}, {"password":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPassword":"c98f1899-3fb9-42ab-abee-871cb038f734","newPasswordConfirm":"c98f1899-3fb9-42ab-abee-871cb038f734"}, requestBody) +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG com.networknt.schema.TypeValidator debug - validate( "c98f1899-3fb9-42ab-abee-871cb038f734", {"password":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPassword":"c98f1899-3fb9-42ab-abee-871cb038f734","newPasswordConfirm":"c98f1899-3fb9-42ab-abee-871cb038f734"}, requestBody.newPasswordConfirm) +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG com.networknt.schema.TypeValidator debug - validate( "e13eb2cb-82a3-48b7-bec6-d148869f1600", {"password":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPassword":"c98f1899-3fb9-42ab-abee-871cb038f734","newPasswordConfirm":"c98f1899-3fb9-42ab-abee-871cb038f734"}, requestBody.password) +18:11:08.314 [XNIO-1 task-1] Oiq_U-3ZSaWBtNKTSMvmDg DEBUG com.networknt.schema.TypeValidator debug - validate( "c98f1899-3fb9-42ab-abee-871cb038f734", {"password":"e13eb2cb-82a3-48b7-bec6-d148869f1600","newPassword":"c98f1899-3fb9-42ab-abee-871cb038f734","newPasswordConfirm":"c98f1899-3fb9-42ab-abee-871cb038f734"}, requestBody.newPassword) +18:11:08.333 [XNIO-1 task-1] _dO1bVd0TxGhUDehMQR6gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.333 [XNIO-1 task-1] _dO1bVd0TxGhUDehMQR6gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.333 [XNIO-1 task-1] _dO1bVd0TxGhUDehMQR6gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.333 [XNIO-1 task-1] _dO1bVd0TxGhUDehMQR6gA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.336 [XNIO-1 task-1] V3UQSp8LRQ2liSLsIloo1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.336 [XNIO-1 task-1] V3UQSp8LRQ2liSLsIloo1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.336 [XNIO-1 task-1] V3UQSp8LRQ2liSLsIloo1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.337 [XNIO-1 task-1] V3UQSp8LRQ2liSLsIloo1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.342 [XNIO-1 task-1] taDZegm5T1uACrSk7q3OkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.342 [XNIO-1 task-1] taDZegm5T1uACrSk7q3OkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.342 [XNIO-1 task-1] taDZegm5T1uACrSk7q3OkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.350 [XNIO-1 task-1] DSlfGqraSEWVC5gyOJctmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.350 [XNIO-1 task-1] DSlfGqraSEWVC5gyOJctmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.350 [XNIO-1 task-1] DSlfGqraSEWVC5gyOJctmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.352 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e1ed5566-ef80-4691-9186-27896d588049 +18:11:08.364 [XNIO-1 task-1] X3Otb3VESbipJbuKhIUnLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.364 [XNIO-1 task-1] X3Otb3VESbipJbuKhIUnLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.364 [XNIO-1 task-1] X3Otb3VESbipJbuKhIUnLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.391 [XNIO-1 task-1] Y6lSnggJSZe5ZA1zzorfZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.391 [XNIO-1 task-1] Y6lSnggJSZe5ZA1zzorfZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.391 [XNIO-1 task-1] Y6lSnggJSZe5ZA1zzorfZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.391 [XNIO-1 task-1] Y6lSnggJSZe5ZA1zzorfZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.396 [XNIO-1 task-1] zdGV12bUShKMQittSpF_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.396 [XNIO-1 task-1] zdGV12bUShKMQittSpF_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.396 [XNIO-1 task-1] zdGV12bUShKMQittSpF_rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.403 [XNIO-1 task-1] cwiuORzYR2eHpr1D5xdRVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.403 [XNIO-1 task-1] cwiuORzYR2eHpr1D5xdRVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.403 [XNIO-1 task-1] cwiuORzYR2eHpr1D5xdRVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.409 [XNIO-1 task-1] whvL5lxqTx2Jwb9F6Rh8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b98337d8 +18:11:08.409 [XNIO-1 task-1] whvL5lxqTx2Jwb9F6Rh8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.409 [XNIO-1 task-1] whvL5lxqTx2Jwb9F6Rh8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:08.409 [XNIO-1 task-1] whvL5lxqTx2Jwb9F6Rh8ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b98337d8 +18:11:08.412 [XNIO-1 task-1] JRPXrC5LSeqfOdeZKA8_cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b98337d8, base path is set to: null +18:11:08.412 [XNIO-1 task-1] JRPXrC5LSeqfOdeZKA8_cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.413 [XNIO-1 task-1] JRPXrC5LSeqfOdeZKA8_cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.413 [XNIO-1 task-1] JRPXrC5LSeqfOdeZKA8_cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b98337d8, base path is set to: null +18:11:08.413 [XNIO-1 task-1] JRPXrC5LSeqfOdeZKA8_cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b98337d8", "b98337d8", userId) +18:11:08.421 [XNIO-1 task-1] RxzlJvylSqmwXRJ-x8q3mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.421 [XNIO-1 task-1] RxzlJvylSqmwXRJ-x8q3mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.421 [XNIO-1 task-1] RxzlJvylSqmwXRJ-x8q3mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.426 [XNIO-1 task-1] tZPD-dsnQnKiLNkaEflE7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.426 [XNIO-1 task-1] tZPD-dsnQnKiLNkaEflE7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.426 [XNIO-1 task-1] tZPD-dsnQnKiLNkaEflE7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.431 [XNIO-1 task-1] Nxsg5CqERXiVrOKEGfuQgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0a53ce5a +18:11:08.432 [XNIO-1 task-1] Nxsg5CqERXiVrOKEGfuQgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.432 [XNIO-1 task-1] Nxsg5CqERXiVrOKEGfuQgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:08.432 [XNIO-1 task-1] Nxsg5CqERXiVrOKEGfuQgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0a53ce5a +18:11:08.438 [XNIO-1 task-1] 83KgR2rERW-GPb-Emsz9iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.438 [XNIO-1 task-1] 83KgR2rERW-GPb-Emsz9iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.438 [XNIO-1 task-1] 83KgR2rERW-GPb-Emsz9iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.451 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0a53ce5a, base path is set to: null +18:11:08.451 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.451 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.451 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:08.451 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0a53ce5a, base path is set to: null +18:11:08.451 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a53ce5a", "0a53ce5a", userId) +18:11:08.451 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7bedd947-f70b-491b-8281-3bafaed3379d","newPassword":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPasswordConfirm":"ad2b63de-624b-4cb5-81db-b0c3d8e43981"}, {"password":"7bedd947-f70b-491b-8281-3bafaed3379d","newPassword":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPasswordConfirm":"ad2b63de-624b-4cb5-81db-b0c3d8e43981"}, requestBody) +18:11:08.452 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG com.networknt.schema.TypeValidator debug - validate( "ad2b63de-624b-4cb5-81db-b0c3d8e43981", {"password":"7bedd947-f70b-491b-8281-3bafaed3379d","newPassword":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPasswordConfirm":"ad2b63de-624b-4cb5-81db-b0c3d8e43981"}, requestBody.newPasswordConfirm) +18:11:08.452 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG com.networknt.schema.TypeValidator debug - validate( "7bedd947-f70b-491b-8281-3bafaed3379d", {"password":"7bedd947-f70b-491b-8281-3bafaed3379d","newPassword":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPasswordConfirm":"ad2b63de-624b-4cb5-81db-b0c3d8e43981"}, requestBody.password) +18:11:08.452 [XNIO-1 task-1] uSzZQHBISSeM84-rWRQpDw DEBUG com.networknt.schema.TypeValidator debug - validate( "ad2b63de-624b-4cb5-81db-b0c3d8e43981", {"password":"7bedd947-f70b-491b-8281-3bafaed3379d","newPassword":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPasswordConfirm":"ad2b63de-624b-4cb5-81db-b0c3d8e43981"}, requestBody.newPassword) +18:11:08.471 [XNIO-1 task-1] QJkowdYJT-qHSJcWdU7Afw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7aa7f954, base path is set to: null +18:11:08.471 [XNIO-1 task-1] QJkowdYJT-qHSJcWdU7Afw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.471 [XNIO-1 task-1] QJkowdYJT-qHSJcWdU7Afw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.472 [XNIO-1 task-1] QJkowdYJT-qHSJcWdU7Afw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7aa7f954, base path is set to: null +18:11:08.472 [XNIO-1 task-1] QJkowdYJT-qHSJcWdU7Afw DEBUG com.networknt.schema.TypeValidator debug - validate( "7aa7f954", "7aa7f954", userId) +18:11:08.480 [XNIO-1 task-1] Tfe8VHg8S7uYu5320cFwzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.480 [XNIO-1 task-1] Tfe8VHg8S7uYu5320cFwzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.480 [XNIO-1 task-1] Tfe8VHg8S7uYu5320cFwzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.481 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:33f8b7d6-e7e0-4d87-b2e3-4b31ae569137 +18:11:08.490 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ce035881 +18:11:08.491 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ce035881 +18:11:08.493 [XNIO-1 task-1] Qp9v2aM7QXe1Gbnt5Tn7Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.493 [XNIO-1 task-1] Qp9v2aM7QXe1Gbnt5Tn7Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.493 [XNIO-1 task-1] Qp9v2aM7QXe1Gbnt5Tn7Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.493 [XNIO-1 task-1] Qp9v2aM7QXe1Gbnt5Tn7Vg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.497 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0a53ce5a +18:11:08.497 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.497 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:08.497 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:08.497 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0a53ce5a +18:11:08.498 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPassword":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPasswordConfirm":"8566d5ae-b295-47dc-a169-6f6eb94b355e"}, {"password":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPassword":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPasswordConfirm":"8566d5ae-b295-47dc-a169-6f6eb94b355e"}, requestBody) +18:11:08.498 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPassword":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPasswordConfirm":"8566d5ae-b295-47dc-a169-6f6eb94b355e"}, {"password":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPassword":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPasswordConfirm":"8566d5ae-b295-47dc-a169-6f6eb94b355e"}, requestBody) +18:11:08.498 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG com.networknt.schema.FormatValidator debug - validate( "8566d5ae-b295-47dc-a169-6f6eb94b355e", {"password":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPassword":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPasswordConfirm":"8566d5ae-b295-47dc-a169-6f6eb94b355e"}, requestBody.newPasswordConfirm) +18:11:08.498 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG com.networknt.schema.FormatValidator debug - validate( "ad2b63de-624b-4cb5-81db-b0c3d8e43981", {"password":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPassword":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPasswordConfirm":"8566d5ae-b295-47dc-a169-6f6eb94b355e"}, requestBody.password) +18:11:08.498 [XNIO-1 task-1] 9OHPShgDQDCQRCFtYK5eiw DEBUG com.networknt.schema.FormatValidator debug - validate( "8566d5ae-b295-47dc-a169-6f6eb94b355e", {"password":"ad2b63de-624b-4cb5-81db-b0c3d8e43981","newPassword":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPasswordConfirm":"8566d5ae-b295-47dc-a169-6f6eb94b355e"}, requestBody.newPassword) +18:11:08.512 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0a53ce5a +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0a53ce5a +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPassword":"363036a2-230b-4db0-82f3-4c238fba1db6","newPasswordConfirm":"363036a2-230b-4db0-82f3-4c238fba1db6"}, {"password":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPassword":"363036a2-230b-4db0-82f3-4c238fba1db6","newPasswordConfirm":"363036a2-230b-4db0-82f3-4c238fba1db6"}, requestBody) +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPassword":"363036a2-230b-4db0-82f3-4c238fba1db6","newPasswordConfirm":"363036a2-230b-4db0-82f3-4c238fba1db6"}, {"password":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPassword":"363036a2-230b-4db0-82f3-4c238fba1db6","newPasswordConfirm":"363036a2-230b-4db0-82f3-4c238fba1db6"}, requestBody) +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "363036a2-230b-4db0-82f3-4c238fba1db6", {"password":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPassword":"363036a2-230b-4db0-82f3-4c238fba1db6","newPasswordConfirm":"363036a2-230b-4db0-82f3-4c238fba1db6"}, requestBody.newPasswordConfirm) +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "8566d5ae-b295-47dc-a169-6f6eb94b355e", {"password":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPassword":"363036a2-230b-4db0-82f3-4c238fba1db6","newPasswordConfirm":"363036a2-230b-4db0-82f3-4c238fba1db6"}, requestBody.password) +18:11:08.513 [XNIO-1 task-1] Ysr_QuBSSZaLrkaCsL4LzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "363036a2-230b-4db0-82f3-4c238fba1db6", {"password":"8566d5ae-b295-47dc-a169-6f6eb94b355e","newPassword":"363036a2-230b-4db0-82f3-4c238fba1db6","newPasswordConfirm":"363036a2-230b-4db0-82f3-4c238fba1db6"}, requestBody.newPassword) +18:11:08.523 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2640e1b1 +18:11:08.530 [XNIO-1 task-1] 1A5KiNPHSoa4GrnKIl0Hwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0c29c4ca +18:11:08.530 [XNIO-1 task-1] 1A5KiNPHSoa4GrnKIl0Hwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.530 [XNIO-1 task-1] 1A5KiNPHSoa4GrnKIl0Hwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:08.530 [XNIO-1 task-1] 1A5KiNPHSoa4GrnKIl0Hwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0c29c4ca +18:11:08.533 [XNIO-1 task-1] a8wXd1IQSUWCoYzebsLT8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.533 [XNIO-1 task-1] a8wXd1IQSUWCoYzebsLT8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.533 [XNIO-1 task-1] a8wXd1IQSUWCoYzebsLT8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0c29c4ca, base path is set to: null +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0c29c4ca, base path is set to: null +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c29c4ca", "0c29c4ca", userId) +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f13e70cc-0070-4da4-a8ba-2adc9d15d2b2","newPassword":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPasswordConfirm":"a161ec34-dc46-46c9-866b-39daf2877bb7"}, {"password":"f13e70cc-0070-4da4-a8ba-2adc9d15d2b2","newPassword":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPasswordConfirm":"a161ec34-dc46-46c9-866b-39daf2877bb7"}, requestBody) +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a161ec34-dc46-46c9-866b-39daf2877bb7", {"password":"f13e70cc-0070-4da4-a8ba-2adc9d15d2b2","newPassword":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPasswordConfirm":"a161ec34-dc46-46c9-866b-39daf2877bb7"}, requestBody.newPasswordConfirm) +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f13e70cc-0070-4da4-a8ba-2adc9d15d2b2", {"password":"f13e70cc-0070-4da4-a8ba-2adc9d15d2b2","newPassword":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPasswordConfirm":"a161ec34-dc46-46c9-866b-39daf2877bb7"}, requestBody.password) +18:11:08.541 [XNIO-1 task-1] h2vUjukmQ3K--a0R0ON1BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a161ec34-dc46-46c9-866b-39daf2877bb7", {"password":"f13e70cc-0070-4da4-a8ba-2adc9d15d2b2","newPassword":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPasswordConfirm":"a161ec34-dc46-46c9-866b-39daf2877bb7"}, requestBody.newPassword) +18:11:08.543 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ce035881 +18:11:08.557 [XNIO-1 task-1] h05Uchl2RdGdQqoKQn2dfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.557 [XNIO-1 task-1] h05Uchl2RdGdQqoKQn2dfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.557 [XNIO-1 task-1] h05Uchl2RdGdQqoKQn2dfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.559 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ce035881 +18:11:08.569 [XNIO-1 task-1] SyGKhAMwQZOz1_Ch-MdqZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.569 [XNIO-1 task-1] SyGKhAMwQZOz1_Ch-MdqZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.569 [XNIO-1 task-1] SyGKhAMwQZOz1_Ch-MdqZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:08.569 [XNIO-1 task-1] SyGKhAMwQZOz1_Ch-MdqZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:08.572 [XNIO-1 task-1] RGCJoa45S6GMc5NA_OkK2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:08.572 [XNIO-1 task-1] RGCJoa45S6GMc5NA_OkK2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.572 [XNIO-1 task-1] RGCJoa45S6GMc5NA_OkK2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.572 [XNIO-1 task-1] RGCJoa45S6GMc5NA_OkK2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:08.572 [XNIO-1 task-1] RGCJoa45S6GMc5NA_OkK2w DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:08.575 [XNIO-1 task-1] 2HvnlsnPRSqjFJhFOfj_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.575 [XNIO-1 task-1] 2HvnlsnPRSqjFJhFOfj_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.575 [XNIO-1 task-1] 2HvnlsnPRSqjFJhFOfj_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.990 [XNIO-1 task-1] HxoiotkFSxG4RbAe5GLLkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.990 [XNIO-1 task-1] HxoiotkFSxG4RbAe5GLLkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.990 [XNIO-1 task-1] HxoiotkFSxG4RbAe5GLLkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.991 [XNIO-1 task-1] HxoiotkFSxG4RbAe5GLLkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:08.994 [XNIO-1 task-1] ptnb7PfxQseyCVXoiEE5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9f30f080 +18:11:08.994 [XNIO-1 task-1] ptnb7PfxQseyCVXoiEE5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:08.994 [XNIO-1 task-1] ptnb7PfxQseyCVXoiEE5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:08.994 [XNIO-1 task-1] ptnb7PfxQseyCVXoiEE5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9f30f080 +18:11:08.997 [XNIO-1 task-1] 2CIC06BoTr-mDhcS_b-O2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0a53ce5a, base path is set to: null +18:11:08.997 [XNIO-1 task-1] 2CIC06BoTr-mDhcS_b-O2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:08.998 [XNIO-1 task-1] 2CIC06BoTr-mDhcS_b-O2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:08.998 [XNIO-1 task-1] 2CIC06BoTr-mDhcS_b-O2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0a53ce5a, base path is set to: null +18:11:08.998 [XNIO-1 task-1] 2CIC06BoTr-mDhcS_b-O2w DEBUG com.networknt.schema.TypeValidator debug - validate( "0a53ce5a", "0a53ce5a", userId) +18:11:09.006 [XNIO-1 task-1] p0C8jb28QyWJYxZhvP644A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9f30f080 +18:11:09.006 [XNIO-1 task-1] p0C8jb28QyWJYxZhvP644A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.006 [XNIO-1 task-1] p0C8jb28QyWJYxZhvP644A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.006 [XNIO-1 task-1] p0C8jb28QyWJYxZhvP644A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9f30f080 +18:11:09.013 [XNIO-1 task-1] AF-Ku1qLRYae6be3D-BaQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3f4685e, base path is set to: null +18:11:09.013 [XNIO-1 task-1] AF-Ku1qLRYae6be3D-BaQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.013 [XNIO-1 task-1] AF-Ku1qLRYae6be3D-BaQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.013 [XNIO-1 task-1] AF-Ku1qLRYae6be3D-BaQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3f4685e, base path is set to: null +18:11:09.014 [XNIO-1 task-1] AF-Ku1qLRYae6be3D-BaQg DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f4685e", "f3f4685e", userId) +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f3f4685e, base path is set to: null +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f3f4685e, base path is set to: null +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f4685e", "f3f4685e", userId) +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b8e1e86d-e2bc-4200-b4b7-f3340eed1f31","newPassword":"58d280d5-e03b-44d4-b002-2d42132f8234","newPasswordConfirm":"58d280d5-e03b-44d4-b002-2d42132f8234"}, {"password":"b8e1e86d-e2bc-4200-b4b7-f3340eed1f31","newPassword":"58d280d5-e03b-44d4-b002-2d42132f8234","newPasswordConfirm":"58d280d5-e03b-44d4-b002-2d42132f8234"}, requestBody) +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG com.networknt.schema.TypeValidator debug - validate( "58d280d5-e03b-44d4-b002-2d42132f8234", {"password":"b8e1e86d-e2bc-4200-b4b7-f3340eed1f31","newPassword":"58d280d5-e03b-44d4-b002-2d42132f8234","newPasswordConfirm":"58d280d5-e03b-44d4-b002-2d42132f8234"}, requestBody.newPasswordConfirm) +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8e1e86d-e2bc-4200-b4b7-f3340eed1f31", {"password":"b8e1e86d-e2bc-4200-b4b7-f3340eed1f31","newPassword":"58d280d5-e03b-44d4-b002-2d42132f8234","newPasswordConfirm":"58d280d5-e03b-44d4-b002-2d42132f8234"}, requestBody.password) +18:11:09.018 [XNIO-1 task-1] -NsMvvgOQ_qgdPNk8xO3fA DEBUG com.networknt.schema.TypeValidator debug - validate( "58d280d5-e03b-44d4-b002-2d42132f8234", {"password":"b8e1e86d-e2bc-4200-b4b7-f3340eed1f31","newPassword":"58d280d5-e03b-44d4-b002-2d42132f8234","newPasswordConfirm":"58d280d5-e03b-44d4-b002-2d42132f8234"}, requestBody.newPassword) +18:11:09.038 [XNIO-1 task-1] KHtiCKnUS66g0EYwAVwWog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3f4685e, base path is set to: null +18:11:09.038 [XNIO-1 task-1] KHtiCKnUS66g0EYwAVwWog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.038 [XNIO-1 task-1] KHtiCKnUS66g0EYwAVwWog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.039 [XNIO-1 task-1] KHtiCKnUS66g0EYwAVwWog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3f4685e, base path is set to: null +18:11:09.039 [XNIO-1 task-1] KHtiCKnUS66g0EYwAVwWog DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f4685e", "f3f4685e", userId) +18:11:09.042 [XNIO-1 task-1] xRkdjpzoSXiswL-P0oe87w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3f4685e +18:11:09.042 [XNIO-1 task-1] xRkdjpzoSXiswL-P0oe87w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.042 [XNIO-1 task-1] xRkdjpzoSXiswL-P0oe87w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.042 [XNIO-1 task-1] xRkdjpzoSXiswL-P0oe87w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3f4685e +18:11:09.044 [XNIO-1 task-1] Z_lAZmFPQmSZp70PUB4w4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.044 [XNIO-1 task-1] Z_lAZmFPQmSZp70PUB4w4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.045 [XNIO-1 task-1] Z_lAZmFPQmSZp70PUB4w4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.047 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:28d2e71e-49b5-4185-a918-774793c8b6d3 +18:11:09.048 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:28d2e71e-49b5-4185-a918-774793c8b6d3 +18:11:09.053 [XNIO-1 task-1] -BREwj8YQtWw4vQYDlSy4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1ca1dc19 +18:11:09.053 [XNIO-1 task-1] -BREwj8YQtWw4vQYDlSy4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.053 [XNIO-1 task-1] -BREwj8YQtWw4vQYDlSy4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.053 [XNIO-1 task-1] -BREwj8YQtWw4vQYDlSy4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1ca1dc19 +18:11:09.057 [XNIO-1 task-1] keP48zf-Q-S3mtKeVXmiNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.057 [XNIO-1 task-1] keP48zf-Q-S3mtKeVXmiNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.057 [XNIO-1 task-1] keP48zf-Q-S3mtKeVXmiNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.063 [XNIO-1 task-1] WBK28hLBQM6QitIOlppaqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.064 [XNIO-1 task-1] WBK28hLBQM6QitIOlppaqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.064 [XNIO-1 task-1] WBK28hLBQM6QitIOlppaqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.071 [XNIO-1 task-1] 636HAe_aTDa9_FSjEfFkCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.071 [XNIO-1 task-1] 636HAe_aTDa9_FSjEfFkCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.071 [XNIO-1 task-1] 636HAe_aTDa9_FSjEfFkCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.071 [XNIO-1 task-1] 636HAe_aTDa9_FSjEfFkCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.075 [XNIO-1 task-1] 2SRSKEDUS3WNtaROvbrs6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:09.075 [XNIO-1 task-1] 2SRSKEDUS3WNtaROvbrs6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.075 [XNIO-1 task-1] 2SRSKEDUS3WNtaROvbrs6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.075 [XNIO-1 task-1] 2SRSKEDUS3WNtaROvbrs6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:09.076 [XNIO-1 task-1] 2SRSKEDUS3WNtaROvbrs6A DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:09.082 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1ca1dc19 +18:11:09.082 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.082 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.082 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:09.082 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1ca1dc19 +18:11:09.083 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a75aaef8-015e-4700-8888-6bccf737d0da","newPassword":"9849144d-caf1-4cf6-a378-7bd2a0095f5f","newPasswordConfirm":"9849144d-caf1-4cf6-a378-7bd2a0095f5f"}, {"password":"a75aaef8-015e-4700-8888-6bccf737d0da","newPassword":"9849144d-caf1-4cf6-a378-7bd2a0095f5f","newPasswordConfirm":"9849144d-caf1-4cf6-a378-7bd2a0095f5f"}, requestBody) +18:11:09.083 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a75aaef8-015e-4700-8888-6bccf737d0da","newPassword":"9849144d-caf1-4cf6-a378-7bd2a0095f5f","newPasswordConfirm":"9849144d-caf1-4cf6-a378-7bd2a0095f5f"}, {"password":"a75aaef8-015e-4700-8888-6bccf737d0da","newPassword":"9849144d-caf1-4cf6-a378-7bd2a0095f5f","newPasswordConfirm":"9849144d-caf1-4cf6-a378-7bd2a0095f5f"}, requestBody) +18:11:09.083 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG com.networknt.schema.FormatValidator debug - validate( "9849144d-caf1-4cf6-a378-7bd2a0095f5f", {"password":"a75aaef8-015e-4700-8888-6bccf737d0da","newPassword":"9849144d-caf1-4cf6-a378-7bd2a0095f5f","newPasswordConfirm":"9849144d-caf1-4cf6-a378-7bd2a0095f5f"}, requestBody.newPasswordConfirm) +18:11:09.083 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG com.networknt.schema.FormatValidator debug - validate( "a75aaef8-015e-4700-8888-6bccf737d0da", {"password":"a75aaef8-015e-4700-8888-6bccf737d0da","newPassword":"9849144d-caf1-4cf6-a378-7bd2a0095f5f","newPasswordConfirm":"9849144d-caf1-4cf6-a378-7bd2a0095f5f"}, requestBody.password) +18:11:09.083 [XNIO-1 task-1] fvMSTl21Sey3P6nfKvA7mA DEBUG com.networknt.schema.FormatValidator debug - validate( "9849144d-caf1-4cf6-a378-7bd2a0095f5f", {"password":"a75aaef8-015e-4700-8888-6bccf737d0da","newPassword":"9849144d-caf1-4cf6-a378-7bd2a0095f5f","newPasswordConfirm":"9849144d-caf1-4cf6-a378-7bd2a0095f5f"}, requestBody.newPassword) +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0c29c4ca, base path is set to: null +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0c29c4ca, base path is set to: null +18:11:09.104 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:bfdb423a +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG com.networknt.schema.TypeValidator debug - validate( "0c29c4ca", "0c29c4ca", userId) +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPassword":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPasswordConfirm":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605"}, {"password":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPassword":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPasswordConfirm":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605"}, requestBody) +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG com.networknt.schema.TypeValidator debug - validate( "e34bba2c-ffdf-4b7b-af52-6c46c0b26605", {"password":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPassword":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPasswordConfirm":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605"}, requestBody.newPasswordConfirm) +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG com.networknt.schema.TypeValidator debug - validate( "a161ec34-dc46-46c9-866b-39daf2877bb7", {"password":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPassword":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPasswordConfirm":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605"}, requestBody.password) +18:11:09.104 [XNIO-1 task-1] 1VpBl5xrRqWjUbTfG-219g DEBUG com.networknt.schema.TypeValidator debug - validate( "e34bba2c-ffdf-4b7b-af52-6c46c0b26605", {"password":"a161ec34-dc46-46c9-866b-39daf2877bb7","newPassword":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPasswordConfirm":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605"}, requestBody.newPassword) +18:11:09.121 [XNIO-1 task-1] DMe_YkBTSPmCSzXqCLHcpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.121 [XNIO-1 task-1] DMe_YkBTSPmCSzXqCLHcpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.121 [XNIO-1 task-1] DMe_YkBTSPmCSzXqCLHcpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.122 [XNIO-1 task-1] DMe_YkBTSPmCSzXqCLHcpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.124 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:503e8b0d-1b93-4728-ae96-97f2049efbff +18:11:09.125 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:503e8b0d-1b93-4728-ae96-97f2049efbff +18:11:09.126 [XNIO-1 task-1] 88LYY4fbSVucpIsG8gK8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.126 [XNIO-1 task-1] 88LYY4fbSVucpIsG8gK8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.127 [XNIO-1 task-1] 88LYY4fbSVucpIsG8gK8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.138 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6337db4 +18:11:09.138 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6337db4 +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c98f1899-3fb9-42ab-abee-871cb038f734","newPassword":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPasswordConfirm":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d"}, {"password":"c98f1899-3fb9-42ab-abee-871cb038f734","newPassword":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPasswordConfirm":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d"}, requestBody) +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c98f1899-3fb9-42ab-abee-871cb038f734","newPassword":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPasswordConfirm":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d"}, {"password":"c98f1899-3fb9-42ab-abee-871cb038f734","newPassword":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPasswordConfirm":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d"}, requestBody) +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG com.networknt.schema.FormatValidator debug - validate( "33d0cf55-0647-4834-9912-e6cbbe6c5e6d", {"password":"c98f1899-3fb9-42ab-abee-871cb038f734","newPassword":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPasswordConfirm":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d"}, requestBody.newPasswordConfirm) +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG com.networknt.schema.FormatValidator debug - validate( "c98f1899-3fb9-42ab-abee-871cb038f734", {"password":"c98f1899-3fb9-42ab-abee-871cb038f734","newPassword":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPasswordConfirm":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d"}, requestBody.password) +18:11:09.139 [XNIO-1 task-1] REMwscjdS8uvzD4Exf66ew DEBUG com.networknt.schema.FormatValidator debug - validate( "33d0cf55-0647-4834-9912-e6cbbe6c5e6d", {"password":"c98f1899-3fb9-42ab-abee-871cb038f734","newPassword":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPasswordConfirm":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d"}, requestBody.newPassword) +18:11:09.184 [XNIO-1 task-1] _rQiQo7VTTOKWyKMoI0lzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.184 [XNIO-1 task-1] _rQiQo7VTTOKWyKMoI0lzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.184 [XNIO-1 task-1] _rQiQo7VTTOKWyKMoI0lzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.197 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0c29c4ca +18:11:09.197 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.197 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.197 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:09.198 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0c29c4ca +18:11:09.198 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPassword":"a43c9cf2-39d4-4922-aed1-379e066c4a87","newPasswordConfirm":"a43c9cf2-39d4-4922-aed1-379e066c4a87"}, {"password":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPassword":"a43c9cf2-39d4-4922-aed1-379e066c4a87","newPasswordConfirm":"a43c9cf2-39d4-4922-aed1-379e066c4a87"}, requestBody) +18:11:09.198 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPassword":"a43c9cf2-39d4-4922-aed1-379e066c4a87","newPasswordConfirm":"a43c9cf2-39d4-4922-aed1-379e066c4a87"}, {"password":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPassword":"a43c9cf2-39d4-4922-aed1-379e066c4a87","newPasswordConfirm":"a43c9cf2-39d4-4922-aed1-379e066c4a87"}, requestBody) +18:11:09.198 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG com.networknt.schema.FormatValidator debug - validate( "a43c9cf2-39d4-4922-aed1-379e066c4a87", {"password":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPassword":"a43c9cf2-39d4-4922-aed1-379e066c4a87","newPasswordConfirm":"a43c9cf2-39d4-4922-aed1-379e066c4a87"}, requestBody.newPasswordConfirm) +18:11:09.198 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG com.networknt.schema.FormatValidator debug - validate( "e34bba2c-ffdf-4b7b-af52-6c46c0b26605", {"password":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPassword":"a43c9cf2-39d4-4922-aed1-379e066c4a87","newPasswordConfirm":"a43c9cf2-39d4-4922-aed1-379e066c4a87"}, requestBody.password) +18:11:09.198 [XNIO-1 task-1] uGwfzJxBSeGacU5nplWaUw DEBUG com.networknt.schema.FormatValidator debug - validate( "a43c9cf2-39d4-4922-aed1-379e066c4a87", {"password":"e34bba2c-ffdf-4b7b-af52-6c46c0b26605","newPassword":"a43c9cf2-39d4-4922-aed1-379e066c4a87","newPasswordConfirm":"a43c9cf2-39d4-4922-aed1-379e066c4a87"}, requestBody.newPassword) +18:11:09.214 [XNIO-1 task-1] VNerMiCrScyA_xLx6GHqRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.215 [XNIO-1 task-1] VNerMiCrScyA_xLx6GHqRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.215 [XNIO-1 task-1] VNerMiCrScyA_xLx6GHqRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.217 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:33f8b7d6-e7e0-4d87-b2e3-4b31ae569137 +18:11:09.224 [XNIO-1 task-1] P7H_vntpS6qoOopJ1eOtJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0c29c4ca +18:11:09.224 [XNIO-1 task-1] P7H_vntpS6qoOopJ1eOtJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.224 [XNIO-1 task-1] P7H_vntpS6qoOopJ1eOtJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.224 [XNIO-1 task-1] P7H_vntpS6qoOopJ1eOtJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0c29c4ca +18:11:09.229 [XNIO-1 task-1] l6IKuE67T8WQCQErI3EUeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0c29c4ca, base path is set to: null +18:11:09.229 [XNIO-1 task-1] l6IKuE67T8WQCQErI3EUeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.229 [XNIO-1 task-1] l6IKuE67T8WQCQErI3EUeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.229 [XNIO-1 task-1] l6IKuE67T8WQCQErI3EUeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0c29c4ca, base path is set to: null +18:11:09.230 [XNIO-1 task-1] l6IKuE67T8WQCQErI3EUeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c29c4ca", "0c29c4ca", userId) +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6337db4 +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6337db4 +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPassword":"5b64892f-1411-4567-bc65-badcf13769ec","newPasswordConfirm":"5b64892f-1411-4567-bc65-badcf13769ec"}, {"password":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPassword":"5b64892f-1411-4567-bc65-badcf13769ec","newPasswordConfirm":"5b64892f-1411-4567-bc65-badcf13769ec"}, requestBody) +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPassword":"5b64892f-1411-4567-bc65-badcf13769ec","newPasswordConfirm":"5b64892f-1411-4567-bc65-badcf13769ec"}, {"password":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPassword":"5b64892f-1411-4567-bc65-badcf13769ec","newPasswordConfirm":"5b64892f-1411-4567-bc65-badcf13769ec"}, requestBody) +18:11:09.235 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5b64892f-1411-4567-bc65-badcf13769ec", {"password":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPassword":"5b64892f-1411-4567-bc65-badcf13769ec","newPasswordConfirm":"5b64892f-1411-4567-bc65-badcf13769ec"}, requestBody.newPasswordConfirm) +18:11:09.236 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "33d0cf55-0647-4834-9912-e6cbbe6c5e6d", {"password":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPassword":"5b64892f-1411-4567-bc65-badcf13769ec","newPasswordConfirm":"5b64892f-1411-4567-bc65-badcf13769ec"}, requestBody.password) +18:11:09.236 [XNIO-1 task-1] CYVe8S3mRguM6NBCd55xBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5b64892f-1411-4567-bc65-badcf13769ec", {"password":"33d0cf55-0647-4834-9912-e6cbbe6c5e6d","newPassword":"5b64892f-1411-4567-bc65-badcf13769ec","newPasswordConfirm":"5b64892f-1411-4567-bc65-badcf13769ec"}, requestBody.newPassword) +18:11:09.251 [XNIO-1 task-1] kYb8jfqvSKunzIWL1cmWOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6337db4 +18:11:09.251 [XNIO-1 task-1] kYb8jfqvSKunzIWL1cmWOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.251 [XNIO-1 task-1] kYb8jfqvSKunzIWL1cmWOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.251 [XNIO-1 task-1] kYb8jfqvSKunzIWL1cmWOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6337db4 +18:11:09.254 [XNIO-1 task-1] avnRgU2dR4WuvKz6NDEnMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.254 [XNIO-1 task-1] avnRgU2dR4WuvKz6NDEnMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.254 [XNIO-1 task-1] avnRgU2dR4WuvKz6NDEnMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.262 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f3f4685e, base path is set to: null +18:11:09.262 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.262 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.262 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.263 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f3f4685e, base path is set to: null +18:11:09.263 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f4685e", "f3f4685e", userId) +18:11:09.263 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"58d280d5-e03b-44d4-b002-2d42132f8234","newPassword":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPasswordConfirm":"ec404ae6-331d-46db-a498-48bb90d0eef5"}, {"password":"58d280d5-e03b-44d4-b002-2d42132f8234","newPassword":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPasswordConfirm":"ec404ae6-331d-46db-a498-48bb90d0eef5"}, requestBody) +18:11:09.263 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec404ae6-331d-46db-a498-48bb90d0eef5", {"password":"58d280d5-e03b-44d4-b002-2d42132f8234","newPassword":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPasswordConfirm":"ec404ae6-331d-46db-a498-48bb90d0eef5"}, requestBody.newPasswordConfirm) +18:11:09.263 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "58d280d5-e03b-44d4-b002-2d42132f8234", {"password":"58d280d5-e03b-44d4-b002-2d42132f8234","newPassword":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPasswordConfirm":"ec404ae6-331d-46db-a498-48bb90d0eef5"}, requestBody.password) +18:11:09.263 [XNIO-1 task-1] nrg7CGsJT2SNvn7TcDO3Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec404ae6-331d-46db-a498-48bb90d0eef5", {"password":"58d280d5-e03b-44d4-b002-2d42132f8234","newPassword":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPasswordConfirm":"ec404ae6-331d-46db-a498-48bb90d0eef5"}, requestBody.newPassword) +18:11:09.306 [XNIO-1 task-1] 4qUKCkVZRfqJ8ZlHKndTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:09.306 [XNIO-1 task-1] 4qUKCkVZRfqJ8ZlHKndTDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.306 [XNIO-1 task-1] 4qUKCkVZRfqJ8ZlHKndTDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.306 [XNIO-1 task-1] 4qUKCkVZRfqJ8ZlHKndTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:09.307 [XNIO-1 task-1] 4qUKCkVZRfqJ8ZlHKndTDg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:09.310 [XNIO-1 task-1] W9-7y3cRS8K2awZoKDewGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.310 [XNIO-1 task-1] W9-7y3cRS8K2awZoKDewGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.310 [XNIO-1 task-1] W9-7y3cRS8K2awZoKDewGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.310 [XNIO-1 task-1] W9-7y3cRS8K2awZoKDewGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.340 [XNIO-1 task-1] Usv2icUvTM69E-L00drfHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.340 [XNIO-1 task-1] Usv2icUvTM69E-L00drfHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.340 [XNIO-1 task-1] Usv2icUvTM69E-L00drfHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.462 [XNIO-1 task-1] u3vOwE2USKWcuAI55iYIUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.462 [XNIO-1 task-1] u3vOwE2USKWcuAI55iYIUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.462 [XNIO-1 task-1] u3vOwE2USKWcuAI55iYIUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.468 [XNIO-1 task-1] hMzARfaVRnao0n7WP8BKlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.468 [XNIO-1 task-1] hMzARfaVRnao0n7WP8BKlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.468 [XNIO-1 task-1] hMzARfaVRnao0n7WP8BKlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.468 [XNIO-1 task-1] hMzARfaVRnao0n7WP8BKlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.472 [XNIO-1 task-1] 9lTqGTt2QEubB2KvfkeQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.472 [XNIO-1 task-1] 9lTqGTt2QEubB2KvfkeQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.472 [XNIO-1 task-1] 9lTqGTt2QEubB2KvfkeQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.472 [XNIO-1 task-1] 9lTqGTt2QEubB2KvfkeQ4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.476 [XNIO-1 task-1] 9mwJQTMBQBGJlZtZRI3rNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.476 [XNIO-1 task-1] 9mwJQTMBQBGJlZtZRI3rNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.476 [XNIO-1 task-1] 9mwJQTMBQBGJlZtZRI3rNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.482 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e5b43419 +18:11:09.487 [XNIO-1 task-1] Z6jMLScCT5-FAElEXztl4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.487 [XNIO-1 task-1] Z6jMLScCT5-FAElEXztl4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.487 [XNIO-1 task-1] Z6jMLScCT5-FAElEXztl4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.493 [XNIO-1 task-1] bddTFu8NQXGcBvv6Xe9CbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a366e333, base path is set to: null +18:11:09.493 [XNIO-1 task-1] bddTFu8NQXGcBvv6Xe9CbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.493 [XNIO-1 task-1] bddTFu8NQXGcBvv6Xe9CbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.493 [XNIO-1 task-1] bddTFu8NQXGcBvv6Xe9CbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a366e333, base path is set to: null +18:11:09.494 [XNIO-1 task-1] bddTFu8NQXGcBvv6Xe9CbA DEBUG com.networknt.schema.TypeValidator debug - validate( "a366e333", "a366e333", userId) +18:11:09.502 [XNIO-1 task-1] _ISO59siTN6hSHFeKBaYHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3f4685e +18:11:09.502 [XNIO-1 task-1] _ISO59siTN6hSHFeKBaYHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.502 [XNIO-1 task-1] _ISO59siTN6hSHFeKBaYHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.502 [XNIO-1 task-1] _ISO59siTN6hSHFeKBaYHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3f4685e +18:11:09.507 [XNIO-1 task-1] XOKwzLfXRBqX7k9TtJ4dIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ca1dc19, base path is set to: null +18:11:09.507 [XNIO-1 task-1] XOKwzLfXRBqX7k9TtJ4dIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.508 [XNIO-1 task-1] XOKwzLfXRBqX7k9TtJ4dIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.508 [XNIO-1 task-1] XOKwzLfXRBqX7k9TtJ4dIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ca1dc19, base path is set to: null +18:11:09.508 [XNIO-1 task-1] XOKwzLfXRBqX7k9TtJ4dIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1ca1dc19", "1ca1dc19", userId) +18:11:09.512 [XNIO-1 task-1] bu5QgkGrQKSq992pN8hl3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.512 [XNIO-1 task-1] bu5QgkGrQKSq992pN8hl3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.512 [XNIO-1 task-1] bu5QgkGrQKSq992pN8hl3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.512 [XNIO-1 task-1] bu5QgkGrQKSq992pN8hl3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.517 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6337db4 +18:11:09.517 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.517 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.517 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:09.517 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6337db4 +18:11:09.518 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5b64892f-1411-4567-bc65-badcf13769ec","newPassword":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPasswordConfirm":"8b5b8437-ade5-484e-88a8-0d690858aed4"}, {"password":"5b64892f-1411-4567-bc65-badcf13769ec","newPassword":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPasswordConfirm":"8b5b8437-ade5-484e-88a8-0d690858aed4"}, requestBody) +18:11:09.518 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5b64892f-1411-4567-bc65-badcf13769ec","newPassword":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPasswordConfirm":"8b5b8437-ade5-484e-88a8-0d690858aed4"}, {"password":"5b64892f-1411-4567-bc65-badcf13769ec","newPassword":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPasswordConfirm":"8b5b8437-ade5-484e-88a8-0d690858aed4"}, requestBody) +18:11:09.518 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "8b5b8437-ade5-484e-88a8-0d690858aed4", {"password":"5b64892f-1411-4567-bc65-badcf13769ec","newPassword":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPasswordConfirm":"8b5b8437-ade5-484e-88a8-0d690858aed4"}, requestBody.newPasswordConfirm) +18:11:09.518 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5b64892f-1411-4567-bc65-badcf13769ec", {"password":"5b64892f-1411-4567-bc65-badcf13769ec","newPassword":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPasswordConfirm":"8b5b8437-ade5-484e-88a8-0d690858aed4"}, requestBody.password) +18:11:09.518 [XNIO-1 task-1] p_SgQK58T7CbNpmOAimZYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "8b5b8437-ade5-484e-88a8-0d690858aed4", {"password":"5b64892f-1411-4567-bc65-badcf13769ec","newPassword":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPasswordConfirm":"8b5b8437-ade5-484e-88a8-0d690858aed4"}, requestBody.newPassword) +18:11:09.528 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:69b8a94f-aed5-4a6f-8cf7-7370a0f6ad3c +18:11:09.537 [XNIO-1 task-1] mTOygQ77QFeG8Zf3QrTshA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ca1dc19, base path is set to: null +18:11:09.538 [XNIO-1 task-1] mTOygQ77QFeG8Zf3QrTshA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.538 [XNIO-1 task-1] mTOygQ77QFeG8Zf3QrTshA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.538 [XNIO-1 task-1] mTOygQ77QFeG8Zf3QrTshA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1ca1dc19, base path is set to: null +18:11:09.538 [XNIO-1 task-1] mTOygQ77QFeG8Zf3QrTshA DEBUG com.networknt.schema.TypeValidator debug - validate( "1ca1dc19", "1ca1dc19", userId) +18:11:09.544 [XNIO-1 task-1] 8o5ZNSR9RoaY66-agtq3ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.545 [XNIO-1 task-1] 8o5ZNSR9RoaY66-agtq3ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.545 [XNIO-1 task-1] 8o5ZNSR9RoaY66-agtq3ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.559 [XNIO-1 task-1] aR-glCMKS8uqamTbI6SMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.559 [XNIO-1 task-1] aR-glCMKS8uqamTbI6SMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.559 [XNIO-1 task-1] aR-glCMKS8uqamTbI6SMwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.559 [XNIO-1 task-1] aR-glCMKS8uqamTbI6SMwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.565 [XNIO-1 task-1] v2jkAayUR32N06NsGrSF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.565 [XNIO-1 task-1] v2jkAayUR32N06NsGrSF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.565 [XNIO-1 task-1] v2jkAayUR32N06NsGrSF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.566 [XNIO-1 task-1] v2jkAayUR32N06NsGrSF8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.568 [XNIO-1 task-1] 81TsWGhBS6euJMcS85r1Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.568 [XNIO-1 task-1] 81TsWGhBS6euJMcS85r1Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.569 [XNIO-1 task-1] 81TsWGhBS6euJMcS85r1Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.569 [XNIO-1 task-1] 81TsWGhBS6euJMcS85r1Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.570 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:89e90983-2b51-4396-9bbe-aad193a15a73 +18:11:09.572 [XNIO-1 task-1] Bw1kv3W6T3q1VGAEjfwU2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.572 [XNIO-1 task-1] Bw1kv3W6T3q1VGAEjfwU2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.572 [XNIO-1 task-1] Bw1kv3W6T3q1VGAEjfwU2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.572 [XNIO-1 task-1] Bw1kv3W6T3q1VGAEjfwU2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.578 [XNIO-1 task-1] u-sW092MRGS7Aot87J89Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.578 [XNIO-1 task-1] u-sW092MRGS7Aot87J89Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.578 [XNIO-1 task-1] u-sW092MRGS7Aot87J89Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.584 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eba321f6 +18:11:09.584 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eba321f6 +18:11:09.590 [XNIO-1 task-1] MF4zaHbTTxG4fHv8hnjx9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6337db4 +18:11:09.590 [XNIO-1 task-1] MF4zaHbTTxG4fHv8hnjx9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.590 [XNIO-1 task-1] MF4zaHbTTxG4fHv8hnjx9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.590 [XNIO-1 task-1] MF4zaHbTTxG4fHv8hnjx9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6337db4 +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f6337db4, base path is set to: null +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPassword":"ebbc483a-3dba-4290-a552-1442777b7fcf","newPasswordConfirm":"ebbc483a-3dba-4290-a552-1442777b7fcf"}, {"password":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPassword":"ebbc483a-3dba-4290-a552-1442777b7fcf","newPasswordConfirm":"ebbc483a-3dba-4290-a552-1442777b7fcf"}, requestBody) +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG com.networknt.schema.TypeValidator debug - validate( "ebbc483a-3dba-4290-a552-1442777b7fcf", {"password":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPassword":"ebbc483a-3dba-4290-a552-1442777b7fcf","newPasswordConfirm":"ebbc483a-3dba-4290-a552-1442777b7fcf"}, requestBody.newPasswordConfirm) +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b5b8437-ade5-484e-88a8-0d690858aed4", {"password":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPassword":"ebbc483a-3dba-4290-a552-1442777b7fcf","newPasswordConfirm":"ebbc483a-3dba-4290-a552-1442777b7fcf"}, requestBody.password) +18:11:09.592 [XNIO-1 task-1] 9qRlYlclSCqG1ctF_9rnfw DEBUG com.networknt.schema.TypeValidator debug - validate( "ebbc483a-3dba-4290-a552-1442777b7fcf", {"password":"8b5b8437-ade5-484e-88a8-0d690858aed4","newPassword":"ebbc483a-3dba-4290-a552-1442777b7fcf","newPasswordConfirm":"ebbc483a-3dba-4290-a552-1442777b7fcf"}, requestBody.newPassword) +18:11:09.609 [XNIO-1 task-1] YH2G0u9gQnWrfuUxFVzraQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.609 [XNIO-1 task-1] YH2G0u9gQnWrfuUxFVzraQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.610 [XNIO-1 task-1] YH2G0u9gQnWrfuUxFVzraQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.610 [XNIO-1 task-1] YH2G0u9gQnWrfuUxFVzraQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.614 [XNIO-1 task-1] tqE8IVXnTkSdOAaCpyfajQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:09.614 [XNIO-1 task-1] tqE8IVXnTkSdOAaCpyfajQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.614 [XNIO-1 task-1] tqE8IVXnTkSdOAaCpyfajQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.614 [XNIO-1 task-1] tqE8IVXnTkSdOAaCpyfajQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6337db4, base path is set to: null +18:11:09.614 [XNIO-1 task-1] tqE8IVXnTkSdOAaCpyfajQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6337db4", "f6337db4", userId) +18:11:09.620 [XNIO-1 task-1] _KwjTpgdRkui0VB8WLDdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:09.620 [XNIO-1 task-1] _KwjTpgdRkui0VB8WLDdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.620 [XNIO-1 task-1] _KwjTpgdRkui0VB8WLDdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.621 [XNIO-1 task-1] _KwjTpgdRkui0VB8WLDdhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f3f4685e, base path is set to: null +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f3f4685e, base path is set to: null +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f4685e", "f3f4685e", userId) +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPassword":"42cd70af-78f4-4895-904a-45ef898feb87","newPasswordConfirm":"42cd70af-78f4-4895-904a-45ef898feb87"}, {"password":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPassword":"42cd70af-78f4-4895-904a-45ef898feb87","newPasswordConfirm":"42cd70af-78f4-4895-904a-45ef898feb87"}, requestBody) +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG com.networknt.schema.TypeValidator debug - validate( "42cd70af-78f4-4895-904a-45ef898feb87", {"password":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPassword":"42cd70af-78f4-4895-904a-45ef898feb87","newPasswordConfirm":"42cd70af-78f4-4895-904a-45ef898feb87"}, requestBody.newPasswordConfirm) +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG com.networknt.schema.TypeValidator debug - validate( "ec404ae6-331d-46db-a498-48bb90d0eef5", {"password":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPassword":"42cd70af-78f4-4895-904a-45ef898feb87","newPasswordConfirm":"42cd70af-78f4-4895-904a-45ef898feb87"}, requestBody.password) +18:11:09.626 [XNIO-1 task-1] mAv0DyUQQiqB1EejZ1IY7w DEBUG com.networknt.schema.TypeValidator debug - validate( "42cd70af-78f4-4895-904a-45ef898feb87", {"password":"ec404ae6-331d-46db-a498-48bb90d0eef5","newPassword":"42cd70af-78f4-4895-904a-45ef898feb87","newPasswordConfirm":"42cd70af-78f4-4895-904a-45ef898feb87"}, requestBody.newPassword) +18:11:09.641 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:497a4b85-0bb2-4499-8251-f497ec2a0eb9 +18:11:09.642 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:497a4b85-0bb2-4499-8251-f497ec2a0eb9 +18:11:09.643 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:497a4b85-0bb2-4499-8251-f497ec2a0eb9 +18:11:09.643 [XNIO-1 task-1] buXp4vJNQNC1Ht4LOxDTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.643 [XNIO-1 task-1] buXp4vJNQNC1Ht4LOxDTLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.645 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e5b43419 +18:11:09.653 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:89e90983-2b51-4396-9bbe-aad193a15a73 +18:11:09.665 [XNIO-1 task-1] uZ9OpRDbQ8KlFhurEuzZCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eba321f6 +18:11:09.665 [XNIO-1 task-1] uZ9OpRDbQ8KlFhurEuzZCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.665 [XNIO-1 task-1] uZ9OpRDbQ8KlFhurEuzZCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.665 [XNIO-1 task-1] uZ9OpRDbQ8KlFhurEuzZCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eba321f6 +18:11:09.667 [XNIO-1 task-1] -q8Y0IAfT3OaSUUEyTRltQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.667 [XNIO-1 task-1] -q8Y0IAfT3OaSUUEyTRltQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.667 [XNIO-1 task-1] -q8Y0IAfT3OaSUUEyTRltQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.667 [XNIO-1 task-1] -q8Y0IAfT3OaSUUEyTRltQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.671 [XNIO-1 task-1] D8oSwiMGRuqJA9a2LS6SDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eba321f6, base path is set to: null +18:11:09.671 [XNIO-1 task-1] D8oSwiMGRuqJA9a2LS6SDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.671 [XNIO-1 task-1] D8oSwiMGRuqJA9a2LS6SDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.671 [XNIO-1 task-1] D8oSwiMGRuqJA9a2LS6SDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eba321f6, base path is set to: null +18:11:09.672 [XNIO-1 task-1] D8oSwiMGRuqJA9a2LS6SDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eba321f6", "eba321f6", userId) +18:11:09.675 [XNIO-1 task-1] DW65AGD5QTaO91-X4hZs_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.675 [XNIO-1 task-1] DW65AGD5QTaO91-X4hZs_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.675 [XNIO-1 task-1] DW65AGD5QTaO91-X4hZs_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.682 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:769c1c4f +18:11:09.688 [XNIO-1 task-1] 9qPKgtMdTceyMUclPcuoqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eba321f6, base path is set to: null +18:11:09.688 [XNIO-1 task-1] 9qPKgtMdTceyMUclPcuoqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.688 [XNIO-1 task-1] 9qPKgtMdTceyMUclPcuoqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.688 [XNIO-1 task-1] 9qPKgtMdTceyMUclPcuoqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eba321f6, base path is set to: null +18:11:09.689 [XNIO-1 task-1] 9qPKgtMdTceyMUclPcuoqw DEBUG com.networknt.schema.TypeValidator debug - validate( "eba321f6", "eba321f6", userId) +18:11:09.700 [XNIO-1 task-1] kOU48DMZQaexJlrFWCmD0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.701 [XNIO-1 task-1] kOU48DMZQaexJlrFWCmD0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.701 [XNIO-1 task-1] kOU48DMZQaexJlrFWCmD0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.701 [XNIO-1 task-1] kOU48DMZQaexJlrFWCmD0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.709 [XNIO-1 task-1] ARJA7m_aR-SXNcg4M14vNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.709 [XNIO-1 task-1] ARJA7m_aR-SXNcg4M14vNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.709 [XNIO-1 task-1] ARJA7m_aR-SXNcg4M14vNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.709 [XNIO-1 task-1] ARJA7m_aR-SXNcg4M14vNA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.716 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d157885f, base path is set to: null +18:11:09.716 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.716 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.716 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.716 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d157885f, base path is set to: null +18:11:09.716 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d157885f", "d157885f", userId) +18:11:09.717 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8a3bb255-96dc-427b-a884-8df8a0e1a984","newPassword":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPasswordConfirm":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7"}, {"password":"8a3bb255-96dc-427b-a884-8df8a0e1a984","newPassword":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPasswordConfirm":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7"}, requestBody) +18:11:09.717 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7814b3e2-5047-48e2-8ea9-8f9321d3ebe7", {"password":"8a3bb255-96dc-427b-a884-8df8a0e1a984","newPassword":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPasswordConfirm":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7"}, requestBody.newPasswordConfirm) +18:11:09.717 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8a3bb255-96dc-427b-a884-8df8a0e1a984", {"password":"8a3bb255-96dc-427b-a884-8df8a0e1a984","newPassword":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPasswordConfirm":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7"}, requestBody.password) +18:11:09.717 [XNIO-1 task-1] jFeO7jWPTPGdh1uFt_nOQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7814b3e2-5047-48e2-8ea9-8f9321d3ebe7", {"password":"8a3bb255-96dc-427b-a884-8df8a0e1a984","newPassword":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPasswordConfirm":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7"}, requestBody.newPassword) +18:11:09.723 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3290fbfe-790f-4a82-bc14-0be77c46ffe8 +18:11:09.724 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3290fbfe-790f-4a82-bc14-0be77c46ffe8 +18:11:09.736 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f +18:11:09.736 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.736 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.736 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:09.736 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f +18:11:09.736 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPassword":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPasswordConfirm":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1"}, {"password":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPassword":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPasswordConfirm":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1"}, requestBody) +18:11:09.736 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPassword":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPasswordConfirm":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1"}, {"password":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPassword":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPasswordConfirm":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1"}, requestBody) +18:11:09.737 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG com.networknt.schema.FormatValidator debug - validate( "13cd0e0d-c026-4aa8-871d-0c7b95d759f1", {"password":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPassword":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPasswordConfirm":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1"}, requestBody.newPasswordConfirm) +18:11:09.737 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG com.networknt.schema.FormatValidator debug - validate( "7814b3e2-5047-48e2-8ea9-8f9321d3ebe7", {"password":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPassword":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPasswordConfirm":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1"}, requestBody.password) +18:11:09.737 [XNIO-1 task-1] PA9ErU2OT_K2mrJUQ8ySOA DEBUG com.networknt.schema.FormatValidator debug - validate( "13cd0e0d-c026-4aa8-871d-0c7b95d759f1", {"password":"7814b3e2-5047-48e2-8ea9-8f9321d3ebe7","newPassword":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPasswordConfirm":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1"}, requestBody.newPassword) +18:11:09.756 [XNIO-1 task-1] YbeiQwqxTe24ZFIzTEjYAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/769c1c4f +18:11:09.757 [XNIO-1 task-1] YbeiQwqxTe24ZFIzTEjYAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.757 [XNIO-1 task-1] YbeiQwqxTe24ZFIzTEjYAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.757 [XNIO-1 task-1] YbeiQwqxTe24ZFIzTEjYAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/769c1c4f +18:11:09.759 [XNIO-1 task-1] 4nz-KTGPTnKOZFdmoTupMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.759 [XNIO-1 task-1] 4nz-KTGPTnKOZFdmoTupMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.759 [XNIO-1 task-1] 4nz-KTGPTnKOZFdmoTupMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.760 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:769c1c4f +18:11:09.766 [XNIO-1 task-1] xoMDpLH9Tma8lm5-37txtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.766 [XNIO-1 task-1] xoMDpLH9Tma8lm5-37txtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.766 [XNIO-1 task-1] xoMDpLH9Tma8lm5-37txtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.767 [XNIO-1 task-1] xoMDpLH9Tma8lm5-37txtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.773 [XNIO-1 task-1] Z-L-SBcLToKkVUahVBJz8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.773 [XNIO-1 task-1] Z-L-SBcLToKkVUahVBJz8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.773 [XNIO-1 task-1] Z-L-SBcLToKkVUahVBJz8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.778 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a39353c9-de25-4815-9106-99366a52c118 +18:11:09.779 [XNIO-1 task-1] 62O3fFi8SR6QI_l6DFTLOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.779 [XNIO-1 task-1] 62O3fFi8SR6QI_l6DFTLOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.779 [XNIO-1 task-1] 62O3fFi8SR6QI_l6DFTLOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.779 [XNIO-1 task-1] 62O3fFi8SR6QI_l6DFTLOg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.779 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a39353c9-de25-4815-9106-99366a52c118 +18:11:09.786 [XNIO-1 task-1] q2Vn6fTvSnyy1s0GwqjFmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.786 [XNIO-1 task-1] q2Vn6fTvSnyy1s0GwqjFmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.786 [XNIO-1 task-1] q2Vn6fTvSnyy1s0GwqjFmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.786 [XNIO-1 task-1] q2Vn6fTvSnyy1s0GwqjFmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c15782af +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c15782af +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"518ae863-d758-4dec-8e44-3195d90c2b92","newPassword":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPasswordConfirm":"ac59f518-7f23-4eb8-8693-730f4ba86df3"}, {"password":"518ae863-d758-4dec-8e44-3195d90c2b92","newPassword":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPasswordConfirm":"ac59f518-7f23-4eb8-8693-730f4ba86df3"}, requestBody) +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"518ae863-d758-4dec-8e44-3195d90c2b92","newPassword":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPasswordConfirm":"ac59f518-7f23-4eb8-8693-730f4ba86df3"}, {"password":"518ae863-d758-4dec-8e44-3195d90c2b92","newPassword":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPasswordConfirm":"ac59f518-7f23-4eb8-8693-730f4ba86df3"}, requestBody) +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ac59f518-7f23-4eb8-8693-730f4ba86df3", {"password":"518ae863-d758-4dec-8e44-3195d90c2b92","newPassword":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPasswordConfirm":"ac59f518-7f23-4eb8-8693-730f4ba86df3"}, requestBody.newPasswordConfirm) +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "518ae863-d758-4dec-8e44-3195d90c2b92", {"password":"518ae863-d758-4dec-8e44-3195d90c2b92","newPassword":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPasswordConfirm":"ac59f518-7f23-4eb8-8693-730f4ba86df3"}, requestBody.password) +18:11:09.792 [XNIO-1 task-1] mupIOLKQR0SEFKnuYmm2dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ac59f518-7f23-4eb8-8693-730f4ba86df3", {"password":"518ae863-d758-4dec-8e44-3195d90c2b92","newPassword":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPasswordConfirm":"ac59f518-7f23-4eb8-8693-730f4ba86df3"}, requestBody.newPassword) +18:11:09.820 [XNIO-1 task-1] gnvpJL11RQSJoLIU3ng7Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.820 [XNIO-1 task-1] gnvpJL11RQSJoLIU3ng7Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.820 [XNIO-1 task-1] gnvpJL11RQSJoLIU3ng7Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.836 [XNIO-1 task-1] LXsjsLZXRDqwQCrrglF7_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3f4685e +18:11:09.836 [XNIO-1 task-1] LXsjsLZXRDqwQCrrglF7_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.836 [XNIO-1 task-1] LXsjsLZXRDqwQCrrglF7_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.836 [XNIO-1 task-1] LXsjsLZXRDqwQCrrglF7_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3f4685e +18:11:09.840 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c15782af, base path is set to: null +18:11:09.840 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.840 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.840 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.840 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c15782af, base path is set to: null +18:11:09.841 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c15782af", "c15782af", userId) +18:11:09.841 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPassword":"11560223-0b2e-43ff-8554-7f74d67a673d","newPasswordConfirm":"11560223-0b2e-43ff-8554-7f74d67a673d"}, {"password":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPassword":"11560223-0b2e-43ff-8554-7f74d67a673d","newPasswordConfirm":"11560223-0b2e-43ff-8554-7f74d67a673d"}, requestBody) +18:11:09.841 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "11560223-0b2e-43ff-8554-7f74d67a673d", {"password":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPassword":"11560223-0b2e-43ff-8554-7f74d67a673d","newPasswordConfirm":"11560223-0b2e-43ff-8554-7f74d67a673d"}, requestBody.newPasswordConfirm) +18:11:09.841 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ac59f518-7f23-4eb8-8693-730f4ba86df3", {"password":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPassword":"11560223-0b2e-43ff-8554-7f74d67a673d","newPasswordConfirm":"11560223-0b2e-43ff-8554-7f74d67a673d"}, requestBody.password) +18:11:09.841 [XNIO-1 task-1] 1PoYXKvYTrmaC7oBF9MIJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "11560223-0b2e-43ff-8554-7f74d67a673d", {"password":"ac59f518-7f23-4eb8-8693-730f4ba86df3","newPassword":"11560223-0b2e-43ff-8554-7f74d67a673d","newPasswordConfirm":"11560223-0b2e-43ff-8554-7f74d67a673d"}, requestBody.newPassword) +18:11:09.860 [XNIO-1 task-1] MPODP6chQfyAgYKnI3AYBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.860 [XNIO-1 task-1] MPODP6chQfyAgYKnI3AYBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.860 [XNIO-1 task-1] MPODP6chQfyAgYKnI3AYBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.861 [XNIO-1 task-1] MPODP6chQfyAgYKnI3AYBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.865 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c15782af, base path is set to: null +18:11:09.866 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.866 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.866 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:09.866 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c15782af, base path is set to: null +18:11:09.866 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG com.networknt.schema.TypeValidator debug - validate( "c15782af", "c15782af", userId) +18:11:09.867 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"11560223-0b2e-43ff-8554-7f74d67a673d","newPassword":"6eec8981-fbfc-4f74-9402-83a84c2e1eff","newPasswordConfirm":"6eec8981-fbfc-4f74-9402-83a84c2e1eff"}, {"password":"11560223-0b2e-43ff-8554-7f74d67a673d","newPassword":"6eec8981-fbfc-4f74-9402-83a84c2e1eff","newPasswordConfirm":"6eec8981-fbfc-4f74-9402-83a84c2e1eff"}, requestBody) +18:11:09.867 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG com.networknt.schema.TypeValidator debug - validate( "6eec8981-fbfc-4f74-9402-83a84c2e1eff", {"password":"11560223-0b2e-43ff-8554-7f74d67a673d","newPassword":"6eec8981-fbfc-4f74-9402-83a84c2e1eff","newPasswordConfirm":"6eec8981-fbfc-4f74-9402-83a84c2e1eff"}, requestBody.newPasswordConfirm) +18:11:09.867 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG com.networknt.schema.TypeValidator debug - validate( "11560223-0b2e-43ff-8554-7f74d67a673d", {"password":"11560223-0b2e-43ff-8554-7f74d67a673d","newPassword":"6eec8981-fbfc-4f74-9402-83a84c2e1eff","newPasswordConfirm":"6eec8981-fbfc-4f74-9402-83a84c2e1eff"}, requestBody.password) +18:11:09.867 [XNIO-1 task-1] QdHVsyoqRmWSoVKVQ_F0QA DEBUG com.networknt.schema.TypeValidator debug - validate( "6eec8981-fbfc-4f74-9402-83a84c2e1eff", {"password":"11560223-0b2e-43ff-8554-7f74d67a673d","newPassword":"6eec8981-fbfc-4f74-9402-83a84c2e1eff","newPasswordConfirm":"6eec8981-fbfc-4f74-9402-83a84c2e1eff"}, requestBody.newPassword) +18:11:09.884 [XNIO-1 task-1] rP-zK_A1RB2EsVRuaqAKcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c15782af, base path is set to: null +18:11:09.884 [XNIO-1 task-1] rP-zK_A1RB2EsVRuaqAKcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.884 [XNIO-1 task-1] rP-zK_A1RB2EsVRuaqAKcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.884 [XNIO-1 task-1] rP-zK_A1RB2EsVRuaqAKcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c15782af, base path is set to: null +18:11:09.884 [XNIO-1 task-1] rP-zK_A1RB2EsVRuaqAKcg DEBUG com.networknt.schema.TypeValidator debug - validate( "c15782af", "c15782af", userId) +18:11:09.886 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3cb54b6e-6447-4cd9-ab6d-240ad3ad2154 +18:11:09.892 [XNIO-1 task-1] iY6mRgWbQ02rew102S_XGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.892 [XNIO-1 task-1] iY6mRgWbQ02rew102S_XGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.892 [XNIO-1 task-1] iY6mRgWbQ02rew102S_XGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.893 [XNIO-1 task-1] iY6mRgWbQ02rew102S_XGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.898 [XNIO-1 task-1] lQttjAPFQtyL6RPrs9Dujg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/769c1c4f, base path is set to: null +18:11:09.898 [XNIO-1 task-1] lQttjAPFQtyL6RPrs9Dujg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.898 [XNIO-1 task-1] lQttjAPFQtyL6RPrs9Dujg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.898 [XNIO-1 task-1] lQttjAPFQtyL6RPrs9Dujg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/769c1c4f, base path is set to: null +18:11:09.898 [XNIO-1 task-1] lQttjAPFQtyL6RPrs9Dujg DEBUG com.networknt.schema.TypeValidator debug - validate( "769c1c4f", "769c1c4f", userId) +18:11:09.899 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3cb54b6e-6447-4cd9-ab6d-240ad3ad2154 +18:11:09.904 [XNIO-1 task-1] EDoLwguMRjiJUABkAyDajA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.904 [XNIO-1 task-1] EDoLwguMRjiJUABkAyDajA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.904 [XNIO-1 task-1] EDoLwguMRjiJUABkAyDajA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.913 [XNIO-1 task-1] VscwcSU3TTqIyIPf44zp4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.913 [XNIO-1 task-1] VscwcSU3TTqIyIPf44zp4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.913 [XNIO-1 task-1] VscwcSU3TTqIyIPf44zp4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.930 [XNIO-1 task-1] a1Lr88KiSt2XuCrrr1F1IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.930 [XNIO-1 task-1] a1Lr88KiSt2XuCrrr1F1IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.930 [XNIO-1 task-1] a1Lr88KiSt2XuCrrr1F1IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.938 [XNIO-1 task-1] -929oLYGR-KMZDI4lDSTaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.938 [XNIO-1 task-1] -929oLYGR-KMZDI4lDSTaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.938 [XNIO-1 task-1] -929oLYGR-KMZDI4lDSTaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.938 [XNIO-1 task-1] -929oLYGR-KMZDI4lDSTaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.944 [XNIO-1 task-1] SCI4p7GtRs2EyOKo3LHj0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.944 [XNIO-1 task-1] SCI4p7GtRs2EyOKo3LHj0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.944 [XNIO-1 task-1] SCI4p7GtRs2EyOKo3LHj0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.950 [XNIO-1 task-1] R4byKUH8Soqy1MJgT7XjKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3f4685e, base path is set to: null +18:11:09.950 [XNIO-1 task-1] R4byKUH8Soqy1MJgT7XjKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.951 [XNIO-1 task-1] R4byKUH8Soqy1MJgT7XjKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:09.951 [XNIO-1 task-1] R4byKUH8Soqy1MJgT7XjKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3f4685e, base path is set to: null +18:11:09.951 [XNIO-1 task-1] R4byKUH8Soqy1MJgT7XjKA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f4685e", "f3f4685e", userId) +18:11:09.957 [XNIO-1 task-1] _NC4TNYcSlSxtroXqLp-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c24505a6 +18:11:09.957 [XNIO-1 task-1] _NC4TNYcSlSxtroXqLp-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.957 [XNIO-1 task-1] _NC4TNYcSlSxtroXqLp-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.958 [XNIO-1 task-1] _NC4TNYcSlSxtroXqLp-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c24505a6 +18:11:09.961 [XNIO-1 task-1] sf_8oOO3SdaAr6t1254oqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.961 [XNIO-1 task-1] sf_8oOO3SdaAr6t1254oqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.961 [XNIO-1 task-1] sf_8oOO3SdaAr6t1254oqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.961 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d3d959c0-0225-41ef-b63b-39396da8bcef +18:11:09.962 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d3d959c0-0225-41ef-b63b-39396da8bcef +18:11:09.979 [XNIO-1 task-1] M6esl3C1RvG1pXIekOFYog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/916a8f03 +18:11:09.979 [XNIO-1 task-1] M6esl3C1RvG1pXIekOFYog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.979 [XNIO-1 task-1] M6esl3C1RvG1pXIekOFYog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:09.979 [XNIO-1 task-1] M6esl3C1RvG1pXIekOFYog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/916a8f03 +18:11:09.984 [XNIO-1 task-1] x7cEnAl0TSCSI-DF3kfUag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.985 [XNIO-1 task-1] x7cEnAl0TSCSI-DF3kfUag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.985 [XNIO-1 task-1] x7cEnAl0TSCSI-DF3kfUag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.985 [XNIO-1 task-1] x7cEnAl0TSCSI-DF3kfUag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.990 [XNIO-1 task-1] Qf6CLFLjSDKsYu3lSmoaYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.991 [XNIO-1 task-1] Qf6CLFLjSDKsYu3lSmoaYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:09.991 [XNIO-1 task-1] Qf6CLFLjSDKsYu3lSmoaYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:09.991 [XNIO-1 task-1] Qf6CLFLjSDKsYu3lSmoaYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:09.996 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:497a4b85-0bb2-4499-8251-f497ec2a0eb9 +18:11:09.997 [XNIO-1 task-1] SWY_DBqZRCSC3Ao3hhx83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.997 [XNIO-1 task-1] SWY_DBqZRCSC3Ao3hhx83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:09.997 [XNIO-1 task-1] SWY_DBqZRCSC3Ao3hhx83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.005 [XNIO-1 task-1] 4jECwUmjT5G93sXue4rmig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.006 [XNIO-1 task-1] 4jECwUmjT5G93sXue4rmig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.006 [XNIO-1 task-1] 4jECwUmjT5G93sXue4rmig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPassword":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPasswordConfirm":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba"}, {"password":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPassword":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPasswordConfirm":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba"}, requestBody) +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPassword":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPasswordConfirm":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba"}, {"password":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPassword":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPasswordConfirm":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba"}, requestBody) +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "6646bdfe-8bc6-45b8-a77e-ea75d83a8bba", {"password":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPassword":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPasswordConfirm":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba"}, requestBody.newPasswordConfirm) +18:11:10.028 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "13cd0e0d-c026-4aa8-871d-0c7b95d759f1", {"password":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPassword":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPasswordConfirm":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba"}, requestBody.password) +18:11:10.029 [XNIO-1 task-1] oNPiCD8xRNS6ZOB0PaMB4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "6646bdfe-8bc6-45b8-a77e-ea75d83a8bba", {"password":"13cd0e0d-c026-4aa8-871d-0c7b95d759f1","newPassword":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPasswordConfirm":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba"}, requestBody.newPassword) +18:11:10.049 [XNIO-1 task-1] GEj54Bm5SLS877BxDd1_Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.050 [XNIO-1 task-1] GEj54Bm5SLS877BxDd1_Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.050 [XNIO-1 task-1] GEj54Bm5SLS877BxDd1_Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.050 [XNIO-1 task-1] GEj54Bm5SLS877BxDd1_Ig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.055 [XNIO-1 task-1] _Gvp0-VVSv29TEdeUnrT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.055 [XNIO-1 task-1] _Gvp0-VVSv29TEdeUnrT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.056 [XNIO-1 task-1] _Gvp0-VVSv29TEdeUnrT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.056 [XNIO-1 task-1] _Gvp0-VVSv29TEdeUnrT7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.058 [XNIO-1 task-1] oB0nHCVoReWUcdw-2JnWGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/52631854, base path is set to: null +18:11:10.058 [XNIO-1 task-1] oB0nHCVoReWUcdw-2JnWGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.058 [XNIO-1 task-1] oB0nHCVoReWUcdw-2JnWGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.058 [XNIO-1 task-1] oB0nHCVoReWUcdw-2JnWGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/52631854, base path is set to: null +18:11:10.058 [XNIO-1 task-1] oB0nHCVoReWUcdw-2JnWGg DEBUG com.networknt.schema.TypeValidator debug - validate( "52631854", "52631854", userId) +18:11:10.066 [XNIO-1 task-1] oGG72iJrStGRCEK6rmdCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.066 [XNIO-1 task-1] oGG72iJrStGRCEK6rmdCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.066 [XNIO-1 task-1] oGG72iJrStGRCEK6rmdCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.086 [XNIO-1 task-1] R4XD3P0BSwiZlYLK2RFW9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.086 [XNIO-1 task-1] R4XD3P0BSwiZlYLK2RFW9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.086 [XNIO-1 task-1] R4XD3P0BSwiZlYLK2RFW9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.086 [XNIO-1 task-1] R4XD3P0BSwiZlYLK2RFW9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPassword":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPasswordConfirm":"9170f050-44c1-4006-83d0-0f6b0e8f90f0"}, {"password":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPassword":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPasswordConfirm":"9170f050-44c1-4006-83d0-0f6b0e8f90f0"}, requestBody) +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPassword":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPasswordConfirm":"9170f050-44c1-4006-83d0-0f6b0e8f90f0"}, {"password":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPassword":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPasswordConfirm":"9170f050-44c1-4006-83d0-0f6b0e8f90f0"}, requestBody) +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG com.networknt.schema.FormatValidator debug - validate( "9170f050-44c1-4006-83d0-0f6b0e8f90f0", {"password":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPassword":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPasswordConfirm":"9170f050-44c1-4006-83d0-0f6b0e8f90f0"}, requestBody.newPasswordConfirm) +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG com.networknt.schema.FormatValidator debug - validate( "6646bdfe-8bc6-45b8-a77e-ea75d83a8bba", {"password":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPassword":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPasswordConfirm":"9170f050-44c1-4006-83d0-0f6b0e8f90f0"}, requestBody.password) +18:11:10.092 [XNIO-1 task-1] sT-JDynvTdG26ulk-l3FSA DEBUG com.networknt.schema.FormatValidator debug - validate( "9170f050-44c1-4006-83d0-0f6b0e8f90f0", {"password":"6646bdfe-8bc6-45b8-a77e-ea75d83a8bba","newPassword":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPasswordConfirm":"9170f050-44c1-4006-83d0-0f6b0e8f90f0"}, requestBody.newPassword) +18:11:10.119 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55b71b6e +18:11:10.119 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.119 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.119 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:10.119 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55b71b6e +18:11:10.120 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b212ab2b-a235-4807-af9d-532749be6c95","newPassword":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec","newPasswordConfirm":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec"}, {"password":"b212ab2b-a235-4807-af9d-532749be6c95","newPassword":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec","newPasswordConfirm":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec"}, requestBody) +18:11:10.120 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b212ab2b-a235-4807-af9d-532749be6c95","newPassword":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec","newPasswordConfirm":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec"}, {"password":"b212ab2b-a235-4807-af9d-532749be6c95","newPassword":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec","newPasswordConfirm":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec"}, requestBody) +18:11:10.120 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1bb1e202-cefd-4d86-a54f-b66a79ae32ec", {"password":"b212ab2b-a235-4807-af9d-532749be6c95","newPassword":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec","newPasswordConfirm":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec"}, requestBody.newPasswordConfirm) +18:11:10.120 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG com.networknt.schema.FormatValidator debug - validate( "b212ab2b-a235-4807-af9d-532749be6c95", {"password":"b212ab2b-a235-4807-af9d-532749be6c95","newPassword":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec","newPasswordConfirm":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec"}, requestBody.password) +18:11:10.120 [XNIO-1 task-1] NjcP68qaT8y_q4WU4n3sYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1bb1e202-cefd-4d86-a54f-b66a79ae32ec", {"password":"b212ab2b-a235-4807-af9d-532749be6c95","newPassword":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec","newPasswordConfirm":"1bb1e202-cefd-4d86-a54f-b66a79ae32ec"}, requestBody.newPassword) +18:11:10.139 [XNIO-1 task-1] w98fFb8JTM608l-iZBj6kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.140 [XNIO-1 task-1] w98fFb8JTM608l-iZBj6kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.140 [XNIO-1 task-1] w98fFb8JTM608l-iZBj6kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.140 [XNIO-1 task-1] w98fFb8JTM608l-iZBj6kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.146 [XNIO-1 task-1] H3Ya9S4eTjiG1i6sSwDWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c24505a6, base path is set to: null +18:11:10.146 [XNIO-1 task-1] H3Ya9S4eTjiG1i6sSwDWUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.146 [XNIO-1 task-1] H3Ya9S4eTjiG1i6sSwDWUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.146 [XNIO-1 task-1] H3Ya9S4eTjiG1i6sSwDWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c24505a6, base path is set to: null +18:11:10.146 [XNIO-1 task-1] H3Ya9S4eTjiG1i6sSwDWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "c24505a6", "c24505a6", userId) +18:11:10.181 [XNIO-1 task-1] 7YFxvRT8QDaqEmM94iEOiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.181 [XNIO-1 task-1] 7YFxvRT8QDaqEmM94iEOiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.181 [XNIO-1 task-1] 7YFxvRT8QDaqEmM94iEOiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.214 [XNIO-1 task-1] WspRdZIaTGWmIOYm9932DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.214 [XNIO-1 task-1] WspRdZIaTGWmIOYm9932DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.215 [XNIO-1 task-1] WspRdZIaTGWmIOYm9932DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.246 [XNIO-1 task-1] f0xwkLjdSi29Y_7TKcKMQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.247 [XNIO-1 task-1] f0xwkLjdSi29Y_7TKcKMQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.247 [XNIO-1 task-1] f0xwkLjdSi29Y_7TKcKMQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.247 [XNIO-1 task-1] f0xwkLjdSi29Y_7TKcKMQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d157885f, base path is set to: null +18:11:10.247 [XNIO-1 task-1] f0xwkLjdSi29Y_7TKcKMQw DEBUG com.networknt.schema.TypeValidator debug - validate( "d157885f", "d157885f", userId) +18:11:10.253 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d157885f, base path is set to: null +18:11:10.254 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.254 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.254 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +Jun 28, 2024 6:11:10 PM com.hazelcast.map.impl.operation.DeleteOperation +18:11:10.254 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f +18:11:10.254 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPassword":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPasswordConfirm":"69c85e58-e32b-4da9-8ada-25585a915e4a"}, {"password":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPassword":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPasswordConfirm":"69c85e58-e32b-4da9-8ada-25585a915e4a"}, requestBody) +18:11:10.255 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPassword":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPasswordConfirm":"69c85e58-e32b-4da9-8ada-25585a915e4a"}, {"password":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPassword":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPasswordConfirm":"69c85e58-e32b-4da9-8ada-25585a915e4a"}, requestBody) +18:11:10.255 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG com.networknt.schema.FormatValidator debug - validate( "69c85e58-e32b-4da9-8ada-25585a915e4a", {"password":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPassword":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPasswordConfirm":"69c85e58-e32b-4da9-8ada-25585a915e4a"}, requestBody.newPasswordConfirm) +18:11:10.255 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG com.networknt.schema.FormatValidator debug - validate( "9170f050-44c1-4006-83d0-0f6b0e8f90f0", {"password":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPassword":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPasswordConfirm":"69c85e58-e32b-4da9-8ada-25585a915e4a"}, requestBody.password) +18:11:10.255 [XNIO-1 task-1] UCWy_EA3QB2RQA9oBnWluA DEBUG com.networknt.schema.FormatValidator debug - validate( "69c85e58-e32b-4da9-8ada-25585a915e4a", {"password":"9170f050-44c1-4006-83d0-0f6b0e8f90f0","newPassword":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPasswordConfirm":"69c85e58-e32b-4da9-8ada-25585a915e4a"}, requestBody.newPassword) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:10.272 [XNIO-1 task-1] 6SLAtfmrT2Ka68RTdO06xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/55b71b6e +18:11:10.272 [XNIO-1 task-1] 6SLAtfmrT2Ka68RTdO06xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.272 [XNIO-1 task-1] 6SLAtfmrT2Ka68RTdO06xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.272 [XNIO-1 task-1] 6SLAtfmrT2Ka68RTdO06xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/55b71b6e +18:11:10.302 [XNIO-1 task-1] hMC63nNdQ8e-yB-e_KiScQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.303 [XNIO-1 task-1] hMC63nNdQ8e-yB-e_KiScQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.303 [XNIO-1 task-1] hMC63nNdQ8e-yB-e_KiScQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.334 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:503e8b0d-1b93-4728-ae96-97f2049efbff +Jun 28, 2024 6:11:10 PM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +18:11:10.420 [XNIO-1 task-1] d5WRMi7JRK-3mZBxMkvAvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.420 [XNIO-1 task-1] d5WRMi7JRK-3mZBxMkvAvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.420 [XNIO-1 task-1] d5WRMi7JRK-3mZBxMkvAvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.420 [XNIO-1 task-1] d5WRMi7JRK-3mZBxMkvAvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.424 [XNIO-1 task-1] 6spuNl4eQyyNTt7R68TVuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.424 [XNIO-1 task-1] 6spuNl4eQyyNTt7R68TVuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.424 [XNIO-1 task-1] 6spuNl4eQyyNTt7R68TVuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.430 [XNIO-1 task-1] greH-pLcSeGWm_2zVFg1yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.430 [XNIO-1 task-1] greH-pLcSeGWm_2zVFg1yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.430 [XNIO-1 task-1] greH-pLcSeGWm_2zVFg1yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.431 [XNIO-1 task-1] greH-pLcSeGWm_2zVFg1yw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.434 [XNIO-1 task-1] RAK4vhmzQbqSwnb9TOBlOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.435 [XNIO-1 task-1] RAK4vhmzQbqSwnb9TOBlOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.435 [XNIO-1 task-1] RAK4vhmzQbqSwnb9TOBlOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.461 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9dd0fec8 +18:11:10.461 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9dd0fec8 +18:11:10.468 [XNIO-1 task-1] b5ikJ8I4Sda7PSyaMykQ5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.468 [XNIO-1 task-1] b5ikJ8I4Sda7PSyaMykQ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.468 [XNIO-1 task-1] b5ikJ8I4Sda7PSyaMykQ5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.468 [XNIO-1 task-1] b5ikJ8I4Sda7PSyaMykQ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.469 [XNIO-1 task-1] b5ikJ8I4Sda7PSyaMykQ5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.469 [XNIO-1 task-1] b5ikJ8I4Sda7PSyaMykQ5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +18:11:10.470 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:11:10.478 [XNIO-1 task-1] OU3BbYEhRfyxT_DvvQkqhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.478 [XNIO-1 task-1] OU3BbYEhRfyxT_DvvQkqhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:11:10.478 [XNIO-1 task-1] OU3BbYEhRfyxT_DvvQkqhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.479 [XNIO-1 task-1] OU3BbYEhRfyxT_DvvQkqhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.479 [XNIO-1 task-1] OU3BbYEhRfyxT_DvvQkqhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.504 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d157885f, base path is set to: null +18:11:10.504 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d157885f + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:10.504 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:10.505 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d157885f, base path is set to: null +18:11:10.505 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d157885f", "d157885f", userId) +18:11:10.505 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPassword":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d","newPasswordConfirm":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d"}, {"password":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPassword":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d","newPasswordConfirm":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d"}, requestBody) +18:11:10.505 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2488bb1c-4c4c-458a-8898-cac7f6b8ec3d", {"password":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPassword":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d","newPasswordConfirm":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d"}, requestBody.newPasswordConfirm) +18:11:10.505 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "69c85e58-e32b-4da9-8ada-25585a915e4a", {"password":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPassword":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d","newPasswordConfirm":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d"}, requestBody.password) +18:11:10.506 [XNIO-1 task-1] DVUIWsQsQwO-Gyh1YzavnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2488bb1c-4c4c-458a-8898-cac7f6b8ec3d", {"password":"69c85e58-e32b-4da9-8ada-25585a915e4a","newPassword":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d","newPasswordConfirm":"2488bb1c-4c4c-458a-8898-cac7f6b8ec3d"}, requestBody.newPassword) +18:11:10.511 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:032a256f +18:11:10.512 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:032a256f +18:11:10.523 [XNIO-1 task-1] pjva68dPSISmK4VHaC2C4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.523 [XNIO-1 task-1] pjva68dPSISmK4VHaC2C4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.523 [XNIO-1 task-1] pjva68dPSISmK4VHaC2C4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.523 [XNIO-1 task-1] pjva68dPSISmK4VHaC2C4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.526 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d3d959c0-0225-41ef-b63b-39396da8bcef +18:11:10.536 [XNIO-1 task-1] _E8E7QU3Q0K-AxZcuZTXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.536 [XNIO-1 task-1] _E8E7QU3Q0K-AxZcuZTXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.537 [XNIO-1 task-1] _E8E7QU3Q0K-AxZcuZTXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.537 [XNIO-1 task-1] _E8E7QU3Q0K-AxZcuZTXOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d157885f +18:11:10.545 [XNIO-1 task-1] nDaP36w2TqiLn3cPW9dQ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.545 [XNIO-1 task-1] nDaP36w2TqiLn3cPW9dQ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.545 [XNIO-1 task-1] nDaP36w2TqiLn3cPW9dQ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.561 [XNIO-1 task-1] tGtOJMrNRFOgkzTcNjqJGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/41dbee4f, base path is set to: null +18:11:10.562 [XNIO-1 task-1] tGtOJMrNRFOgkzTcNjqJGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.562 [XNIO-1 task-1] tGtOJMrNRFOgkzTcNjqJGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.562 [XNIO-1 task-1] tGtOJMrNRFOgkzTcNjqJGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/41dbee4f, base path is set to: null +18:11:10.562 [XNIO-1 task-1] tGtOJMrNRFOgkzTcNjqJGw DEBUG com.networknt.schema.TypeValidator debug - validate( "41dbee4f", "41dbee4f", userId) +18:11:10.580 [XNIO-1 task-1] bbqUKREDSmuK5l5KBXKnNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.580 [XNIO-1 task-1] bbqUKREDSmuK5l5KBXKnNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.581 [XNIO-1 task-1] bbqUKREDSmuK5l5KBXKnNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.583 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:03e39e1c +18:11:10.589 [XNIO-1 task-1] dpU7iQMRRAOUPid7sCLXpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.589 [XNIO-1 task-1] dpU7iQMRRAOUPid7sCLXpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.589 [XNIO-1 task-1] dpU7iQMRRAOUPid7sCLXpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.589 [XNIO-1 task-1] dpU7iQMRRAOUPid7sCLXpA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.597 [XNIO-1 task-1] cnLUp610Swmr2yN5E7Sgfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.597 [XNIO-1 task-1] cnLUp610Swmr2yN5E7Sgfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.597 [XNIO-1 task-1] cnLUp610Swmr2yN5E7Sgfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.601 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d3e7bddf-eb81-4b55-9f09-22093c469f5b +18:11:10.604 [XNIO-1 task-1] QJK_VDiwSBqXP8RoAJ5Dhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.605 [XNIO-1 task-1] QJK_VDiwSBqXP8RoAJ5Dhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.605 [XNIO-1 task-1] QJK_VDiwSBqXP8RoAJ5Dhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.614 [XNIO-1 task-1] SiyI5LHxSkiXUH0h0uILpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.614 [XNIO-1 task-1] SiyI5LHxSkiXUH0h0uILpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.614 [XNIO-1 task-1] SiyI5LHxSkiXUH0h0uILpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.621 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d3e7bddf-eb81-4b55-9f09-22093c469f5b +18:11:10.629 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ce035881 +18:11:10.631 [XNIO-1 task-1] T73VDCw7RBSGcsHqIxyqVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.631 [XNIO-1 task-1] T73VDCw7RBSGcsHqIxyqVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.631 [XNIO-1 task-1] T73VDCw7RBSGcsHqIxyqVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.640 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ebca1448 +18:11:10.641 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1cc58c4b-64b7-4344-aac1-df6f4350525a +18:11:10.642 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1cc58c4b-64b7-4344-aac1-df6f4350525a +18:11:10.647 [XNIO-1 task-1] NfJWukrsRsaPsHR_cPZhMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ebca1448 +18:11:10.647 [XNIO-1 task-1] NfJWukrsRsaPsHR_cPZhMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.648 [XNIO-1 task-1] NfJWukrsRsaPsHR_cPZhMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.648 [XNIO-1 task-1] NfJWukrsRsaPsHR_cPZhMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ebca1448 +18:11:10.650 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2c538810-ac1a-4981-8200-82a8b1aeb0c0 +18:11:10.651 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2c538810-ac1a-4981-8200-82a8b1aeb0c0 +18:11:10.654 [XNIO-1 task-1] boFlIIzMQBSwRGhkQwksWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ebca1448 +18:11:10.654 [XNIO-1 task-1] boFlIIzMQBSwRGhkQwksWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.654 [XNIO-1 task-1] boFlIIzMQBSwRGhkQwksWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.654 [XNIO-1 task-1] boFlIIzMQBSwRGhkQwksWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ebca1448 +18:11:10.654 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ebca1448 +18:11:10.664 [XNIO-1 task-1] ywvQwQJnRz2ncEeYO_FmmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.664 [XNIO-1 task-1] ywvQwQJnRz2ncEeYO_FmmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.664 [XNIO-1 task-1] ywvQwQJnRz2ncEeYO_FmmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.664 [XNIO-1 task-1] ywvQwQJnRz2ncEeYO_FmmA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.673 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4203b1e2, base path is set to: null +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4203b1e2, base path is set to: null +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4203b1e2", "4203b1e2", userId) +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"3828ba32-5562-44b4-9e66-9778239dca67","newPassword":"9457517a-7bbb-4044-937a-70ac52177084","newPasswordConfirm":"9457517a-7bbb-4044-937a-70ac52177084"}, {"password":"3828ba32-5562-44b4-9e66-9778239dca67","newPassword":"9457517a-7bbb-4044-937a-70ac52177084","newPasswordConfirm":"9457517a-7bbb-4044-937a-70ac52177084"}, requestBody) +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9457517a-7bbb-4044-937a-70ac52177084", {"password":"3828ba32-5562-44b4-9e66-9778239dca67","newPassword":"9457517a-7bbb-4044-937a-70ac52177084","newPasswordConfirm":"9457517a-7bbb-4044-937a-70ac52177084"}, requestBody.newPasswordConfirm) +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3828ba32-5562-44b4-9e66-9778239dca67", {"password":"3828ba32-5562-44b4-9e66-9778239dca67","newPassword":"9457517a-7bbb-4044-937a-70ac52177084","newPasswordConfirm":"9457517a-7bbb-4044-937a-70ac52177084"}, requestBody.password) +18:11:10.674 [XNIO-1 task-1] z4qeVCsDT_y7HULwLIDjBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9457517a-7bbb-4044-937a-70ac52177084", {"password":"3828ba32-5562-44b4-9e66-9778239dca67","newPassword":"9457517a-7bbb-4044-937a-70ac52177084","newPasswordConfirm":"9457517a-7bbb-4044-937a-70ac52177084"}, requestBody.newPassword) +18:11:10.694 [XNIO-1 task-1] EpWxxEqnSRWIGgwEi8sjgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.694 [XNIO-1 task-1] EpWxxEqnSRWIGgwEi8sjgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.694 [XNIO-1 task-1] EpWxxEqnSRWIGgwEi8sjgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.694 [XNIO-1 task-1] EpWxxEqnSRWIGgwEi8sjgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.697 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8edccf36-018a-421a-8df3-18b2eee74480 +18:11:10.699 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8edccf36-018a-421a-8df3-18b2eee74480 +18:11:10.703 [XNIO-1 task-1] Xuk58kxcQpyRunJ0CpYWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4203b1e2 +18:11:10.704 [XNIO-1 task-1] Xuk58kxcQpyRunJ0CpYWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.704 [XNIO-1 task-1] Xuk58kxcQpyRunJ0CpYWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.704 [XNIO-1 task-1] Xuk58kxcQpyRunJ0CpYWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4203b1e2 +18:11:10.709 [XNIO-1 task-1] GusC9E98TImBCOcVdqZL5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.709 [XNIO-1 task-1] GusC9E98TImBCOcVdqZL5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.709 [XNIO-1 task-1] GusC9E98TImBCOcVdqZL5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.722 [XNIO-1 task-1] XZHlZAYQQjiHU9hOCGEOOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.723 [XNIO-1 task-1] XZHlZAYQQjiHU9hOCGEOOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.723 [XNIO-1 task-1] XZHlZAYQQjiHU9hOCGEOOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.743 [XNIO-1 task-1] xH-_vU-jT6aWE8z_CUYmBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d259a8d7, base path is set to: null +18:11:10.743 [XNIO-1 task-1] xH-_vU-jT6aWE8z_CUYmBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.743 [XNIO-1 task-1] xH-_vU-jT6aWE8z_CUYmBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.743 [XNIO-1 task-1] xH-_vU-jT6aWE8z_CUYmBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d259a8d7, base path is set to: null +18:11:10.743 [XNIO-1 task-1] xH-_vU-jT6aWE8z_CUYmBA DEBUG com.networknt.schema.TypeValidator debug - validate( "d259a8d7", "d259a8d7", userId) +18:11:10.748 [XNIO-1 task-1] bNsiiqkQTu-nvzsiAywXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5c43a5f0 +18:11:10.749 [XNIO-1 task-1] bNsiiqkQTu-nvzsiAywXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.749 [XNIO-1 task-1] bNsiiqkQTu-nvzsiAywXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.749 [XNIO-1 task-1] bNsiiqkQTu-nvzsiAywXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5c43a5f0 +18:11:10.763 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d259a8d7, base path is set to: null +18:11:10.763 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.763 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.763 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:10.764 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d259a8d7, base path is set to: null +18:11:10.764 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "d259a8d7", "d259a8d7", userId) +18:11:10.764 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e5be3b2e-0918-4037-9c19-05804d8e02a7","newPassword":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPasswordConfirm":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5"}, {"password":"e5be3b2e-0918-4037-9c19-05804d8e02a7","newPassword":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPasswordConfirm":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5"}, requestBody) +18:11:10.764 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "c651fb0d-54ef-4fc8-858c-57f132ac1fc5", {"password":"e5be3b2e-0918-4037-9c19-05804d8e02a7","newPassword":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPasswordConfirm":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5"}, requestBody.newPasswordConfirm) +18:11:10.764 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5be3b2e-0918-4037-9c19-05804d8e02a7", {"password":"e5be3b2e-0918-4037-9c19-05804d8e02a7","newPassword":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPasswordConfirm":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5"}, requestBody.password) +18:11:10.764 [XNIO-1 task-1] 2GR5rXB0Q7muh_HX7ee2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "c651fb0d-54ef-4fc8-858c-57f132ac1fc5", {"password":"e5be3b2e-0918-4037-9c19-05804d8e02a7","newPassword":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPasswordConfirm":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5"}, requestBody.newPassword) +18:11:10.766 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e86171e8-20f0-4f7d-97fe-8aae31c03147 +18:11:10.767 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e86171e8-20f0-4f7d-97fe-8aae31c03147 +18:11:10.770 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:032a256f +18:11:10.786 [XNIO-1 task-1] EjhNSIMDSY29r6XsAy6c6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5c43a5f0 +18:11:10.786 [XNIO-1 task-1] EjhNSIMDSY29r6XsAy6c6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.786 [XNIO-1 task-1] EjhNSIMDSY29r6XsAy6c6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.786 [XNIO-1 task-1] EjhNSIMDSY29r6XsAy6c6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5c43a5f0 +18:11:10.794 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9dd0fec8, base path is set to: null +18:11:10.794 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.794 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.795 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:10.795 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9dd0fec8, base path is set to: null +18:11:10.795 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG com.networknt.schema.TypeValidator debug - validate( "9dd0fec8", "9dd0fec8", userId) +18:11:10.795 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8cde7b60-b18c-4a39-97d2-0753105a8d53","newPassword":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPasswordConfirm":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9"}, {"password":"8cde7b60-b18c-4a39-97d2-0753105a8d53","newPassword":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPasswordConfirm":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9"}, requestBody) +18:11:10.795 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG com.networknt.schema.TypeValidator debug - validate( "c90cfea6-8524-4919-a85a-30b7b3a9c0d9", {"password":"8cde7b60-b18c-4a39-97d2-0753105a8d53","newPassword":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPasswordConfirm":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9"}, requestBody.newPasswordConfirm) +18:11:10.795 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG com.networknt.schema.TypeValidator debug - validate( "8cde7b60-b18c-4a39-97d2-0753105a8d53", {"password":"8cde7b60-b18c-4a39-97d2-0753105a8d53","newPassword":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPasswordConfirm":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9"}, requestBody.password) +18:11:10.796 [XNIO-1 task-1] 8Nz1rxzCRYaSPGW06Ug8oA DEBUG com.networknt.schema.TypeValidator debug - validate( "c90cfea6-8524-4919-a85a-30b7b3a9c0d9", {"password":"8cde7b60-b18c-4a39-97d2-0753105a8d53","newPassword":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPasswordConfirm":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9"}, requestBody.newPassword) +18:11:10.806 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7ced06e6-3450-4fca-8db7-f78d3a8b00a1 +18:11:10.807 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9dd0fec8 +18:11:10.817 [XNIO-1 task-1] HU2E7KfDSXiVeJpQGF10LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.817 [XNIO-1 task-1] HU2E7KfDSXiVeJpQGF10LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.817 [XNIO-1 task-1] HU2E7KfDSXiVeJpQGF10LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.817 [XNIO-1 task-1] HU2E7KfDSXiVeJpQGF10LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.851 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d259a8d7, base path is set to: null +18:11:10.851 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.851 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.851 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:10.852 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d259a8d7, base path is set to: null +18:11:10.852 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d259a8d7", "d259a8d7", userId) +18:11:10.852 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPassword":"b331e3d8-f692-4b27-aad8-6684dcada912","newPasswordConfirm":"b331e3d8-f692-4b27-aad8-6684dcada912"}, {"password":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPassword":"b331e3d8-f692-4b27-aad8-6684dcada912","newPasswordConfirm":"b331e3d8-f692-4b27-aad8-6684dcada912"}, requestBody) +18:11:10.852 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b331e3d8-f692-4b27-aad8-6684dcada912", {"password":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPassword":"b331e3d8-f692-4b27-aad8-6684dcada912","newPasswordConfirm":"b331e3d8-f692-4b27-aad8-6684dcada912"}, requestBody.newPasswordConfirm) +18:11:10.852 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c651fb0d-54ef-4fc8-858c-57f132ac1fc5", {"password":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPassword":"b331e3d8-f692-4b27-aad8-6684dcada912","newPasswordConfirm":"b331e3d8-f692-4b27-aad8-6684dcada912"}, requestBody.password) +18:11:10.852 [XNIO-1 task-1] yaqtLc6mS1KdLy--i5a31Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b331e3d8-f692-4b27-aad8-6684dcada912", {"password":"c651fb0d-54ef-4fc8-858c-57f132ac1fc5","newPassword":"b331e3d8-f692-4b27-aad8-6684dcada912","newPasswordConfirm":"b331e3d8-f692-4b27-aad8-6684dcada912"}, requestBody.newPassword) +18:11:10.870 [XNIO-1 task-1] wvucE03oTaCGotUJ1pGV9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.870 [XNIO-1 task-1] wvucE03oTaCGotUJ1pGV9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.870 [XNIO-1 task-1] wvucE03oTaCGotUJ1pGV9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.870 [XNIO-1 task-1] wvucE03oTaCGotUJ1pGV9A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.880 [XNIO-1 task-1] QKzhHBpHRDa132FHYe0sVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.880 [XNIO-1 task-1] QKzhHBpHRDa132FHYe0sVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.880 [XNIO-1 task-1] QKzhHBpHRDa132FHYe0sVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:10.880 [XNIO-1 task-1] QKzhHBpHRDa132FHYe0sVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:10.885 [XNIO-1 task-1] 1i3QOiELSwWEANwLo-5moA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9f1f53b6, base path is set to: null +18:11:10.886 [XNIO-1 task-1] 1i3QOiELSwWEANwLo-5moA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:10.886 [XNIO-1 task-1] 1i3QOiELSwWEANwLo-5moA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:10.886 [XNIO-1 task-1] 1i3QOiELSwWEANwLo-5moA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9f1f53b6, base path is set to: null +18:11:10.886 [XNIO-1 task-1] 1i3QOiELSwWEANwLo-5moA DEBUG com.networknt.schema.TypeValidator debug - validate( "9f1f53b6", "9f1f53b6", userId) +18:11:10.896 [XNIO-1 task-1] i_n5cdloSBanMqi0yWmAjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.896 [XNIO-1 task-1] i_n5cdloSBanMqi0yWmAjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.896 [XNIO-1 task-1] i_n5cdloSBanMqi0yWmAjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.897 [XNIO-1 task-1] i_n5cdloSBanMqi0yWmAjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.905 [XNIO-1 task-1] 8WDdeM_cRxitbZvTd-wePQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.905 [XNIO-1 task-1] 8WDdeM_cRxitbZvTd-wePQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.905 [XNIO-1 task-1] 8WDdeM_cRxitbZvTd-wePQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.915 [XNIO-1 task-1] dAoneLevQSOfn9Bsmc7Dwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.915 [XNIO-1 task-1] dAoneLevQSOfn9Bsmc7Dwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.915 [XNIO-1 task-1] dAoneLevQSOfn9Bsmc7Dwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.930 [XNIO-1 task-1] GV1_WRVCRtWDBi_1A5zLuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.930 [XNIO-1 task-1] GV1_WRVCRtWDBi_1A5zLuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.930 [XNIO-1 task-1] GV1_WRVCRtWDBi_1A5zLuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.930 [XNIO-1 task-1] GV1_WRVCRtWDBi_1A5zLuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.936 [XNIO-1 task-1] PFUVBgtHTEWjAiUKgC55WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.936 [XNIO-1 task-1] PFUVBgtHTEWjAiUKgC55WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.936 [XNIO-1 task-1] PFUVBgtHTEWjAiUKgC55WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.936 [XNIO-1 task-1] PFUVBgtHTEWjAiUKgC55WQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:10.944 [XNIO-1 task-1] kl45E3_fSCmCTp0PZwl15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.944 [XNIO-1 task-1] kl45E3_fSCmCTp0PZwl15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.944 [XNIO-1 task-1] kl45E3_fSCmCTp0PZwl15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.955 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:03e39e1c +18:11:10.956 [XNIO-1 task-1] R7DPXOYPRHKqeGOt_o90dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4203b1e2 +18:11:10.956 [XNIO-1 task-1] R7DPXOYPRHKqeGOt_o90dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.956 [XNIO-1 task-1] R7DPXOYPRHKqeGOt_o90dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.957 [XNIO-1 task-1] R7DPXOYPRHKqeGOt_o90dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4203b1e2 +18:11:10.959 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7202f054-dfe0-4bf9-871c-37fb6adccd5c +18:11:10.962 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7202f054-dfe0-4bf9-871c-37fb6adccd5c +18:11:10.964 [XNIO-1 task-1] wG8k6549Sv6EpdHylcDvWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.964 [XNIO-1 task-1] wG8k6549Sv6EpdHylcDvWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.964 [XNIO-1 task-1] wG8k6549Sv6EpdHylcDvWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.976 [XNIO-1 task-1] O8DTmEgMRNGAvamEe4EbPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/11875003 +18:11:10.976 [XNIO-1 task-1] O8DTmEgMRNGAvamEe4EbPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +Jun 28, 2024 6:11:10 PM com.hazelcast.map.impl.operation.DeleteOperation +18:11:10.976 [XNIO-1 task-1] O8DTmEgMRNGAvamEe4EbPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.976 [XNIO-1 task-1] O8DTmEgMRNGAvamEe4EbPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/11875003, base path is set to: null +18:11:10.976 [XNIO-1 task-1] O8DTmEgMRNGAvamEe4EbPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/11875003 +18:11:10.976 [XNIO-1 task-1] O8DTmEgMRNGAvamEe4EbPA DEBUG com.networknt.schema.TypeValidator debug - validate( "11875003", "11875003", userId) +18:11:10.976 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:503e8b0d-1b93-4728-ae96-97f2049efbff +18:11:10.982 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:10.990 [XNIO-1 task-1] LlbbrGUDRqCJ0TO3FQsMYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d259a8d7 +18:11:10.990 [XNIO-1 task-1] LlbbrGUDRqCJ0TO3FQsMYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:10.990 [XNIO-1 task-1] LlbbrGUDRqCJ0TO3FQsMYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:10.990 [XNIO-1 task-1] LlbbrGUDRqCJ0TO3FQsMYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d259a8d7 +18:11:10.999 [XNIO-1 task-1] NgHXf2AEQoCjKgpNRsnyYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.000 [XNIO-1 task-1] NgHXf2AEQoCjKgpNRsnyYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.000 [XNIO-1 task-1] NgHXf2AEQoCjKgpNRsnyYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.017 [XNIO-1 task-1] bTh63C5oR4aaNzQhLgx-jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.017 [XNIO-1 task-1] bTh63C5oR4aaNzQhLgx-jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.017 [XNIO-1 task-1] bTh63C5oR4aaNzQhLgx-jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.017 [XNIO-1 task-1] bTh63C5oR4aaNzQhLgx-jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.022 [XNIO-1 task-1] aOIQSbKqSk6-ervoDaV3sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9dd0fec8, base path is set to: null +18:11:11.023 [XNIO-1 task-1] aOIQSbKqSk6-ervoDaV3sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.023 [XNIO-1 task-1] aOIQSbKqSk6-ervoDaV3sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.023 [XNIO-1 task-1] aOIQSbKqSk6-ervoDaV3sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9dd0fec8, base path is set to: null +18:11:11.023 [XNIO-1 task-1] aOIQSbKqSk6-ervoDaV3sg DEBUG com.networknt.schema.TypeValidator debug - validate( "9dd0fec8", "9dd0fec8", userId) +18:11:11.027 [XNIO-1 task-1] kC81lxVSQDyjU2EqFpcJgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e00b2f4 +18:11:11.028 [XNIO-1 task-1] kC81lxVSQDyjU2EqFpcJgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.028 [XNIO-1 task-1] kC81lxVSQDyjU2EqFpcJgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.028 [XNIO-1 task-1] kC81lxVSQDyjU2EqFpcJgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e00b2f4 +18:11:11.039 [XNIO-1 task-1] VerffMf_R-iGVqumuxvyHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.039 [XNIO-1 task-1] VerffMf_R-iGVqumuxvyHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.040 [XNIO-1 task-1] VerffMf_R-iGVqumuxvyHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.040 [XNIO-1 task-1] VerffMf_R-iGVqumuxvyHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.045 [XNIO-1 task-1] YW4kSYecSyi61YOOZ_qYxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.045 [XNIO-1 task-1] YW4kSYecSyi61YOOZ_qYxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.045 [XNIO-1 task-1] YW4kSYecSyi61YOOZ_qYxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.062 [XNIO-1 task-1] F4OzCcXYSLO-UuP6ZitURQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.063 [XNIO-1 task-1] F4OzCcXYSLO-UuP6ZitURQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.063 [XNIO-1 task-1] F4OzCcXYSLO-UuP6ZitURQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.063 [XNIO-1 task-1] F4OzCcXYSLO-UuP6ZitURQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.072 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/41dbee4f, base path is set to: null +18:11:11.073 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.073 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.073 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:11.073 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/41dbee4f, base path is set to: null +18:11:11.073 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG com.networknt.schema.TypeValidator debug - validate( "41dbee4f", "41dbee4f", userId) +18:11:11.073 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6f0f0852-df3b-48e4-a5d3-a283ec33ecf9","newPassword":"e1892b55-2c7f-4f37-97cd-820186515287","newPasswordConfirm":"e1892b55-2c7f-4f37-97cd-820186515287"}, {"password":"6f0f0852-df3b-48e4-a5d3-a283ec33ecf9","newPassword":"e1892b55-2c7f-4f37-97cd-820186515287","newPasswordConfirm":"e1892b55-2c7f-4f37-97cd-820186515287"}, requestBody) +18:11:11.074 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG com.networknt.schema.TypeValidator debug - validate( "e1892b55-2c7f-4f37-97cd-820186515287", {"password":"6f0f0852-df3b-48e4-a5d3-a283ec33ecf9","newPassword":"e1892b55-2c7f-4f37-97cd-820186515287","newPasswordConfirm":"e1892b55-2c7f-4f37-97cd-820186515287"}, requestBody.newPasswordConfirm) +18:11:11.074 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG com.networknt.schema.TypeValidator debug - validate( "6f0f0852-df3b-48e4-a5d3-a283ec33ecf9", {"password":"6f0f0852-df3b-48e4-a5d3-a283ec33ecf9","newPassword":"e1892b55-2c7f-4f37-97cd-820186515287","newPasswordConfirm":"e1892b55-2c7f-4f37-97cd-820186515287"}, requestBody.password) +18:11:11.074 [XNIO-1 task-1] gwwZEVprSVCeKUKkEncikg DEBUG com.networknt.schema.TypeValidator debug - validate( "e1892b55-2c7f-4f37-97cd-820186515287", {"password":"6f0f0852-df3b-48e4-a5d3-a283ec33ecf9","newPassword":"e1892b55-2c7f-4f37-97cd-820186515287","newPasswordConfirm":"e1892b55-2c7f-4f37-97cd-820186515287"}, requestBody.newPassword) +18:11:11.094 [XNIO-1 task-1] YmXO7Vb4SyuTikZ9ptxOcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.095 [XNIO-1 task-1] YmXO7Vb4SyuTikZ9ptxOcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.095 [XNIO-1 task-1] YmXO7Vb4SyuTikZ9ptxOcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.095 [XNIO-1 task-1] YmXO7Vb4SyuTikZ9ptxOcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +Jun 28, 2024 6:11:11 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:11:11.100 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.100 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +18:11:11.100 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:11.100 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9dd0fec8, base path is set to: null +18:11:11.100 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG com.networknt.schema.TypeValidator debug - validate( "9dd0fec8", "9dd0fec8", userId) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +18:11:11.101 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0350430-86ca-46e6-a177-2040747c78b6", {"password":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPassword":"a0350430-86ca-46e6-a177-2040747c78b6","newPasswordConfirm":"a0350430-86ca-46e6-a177-2040747c78b6"}, requestBody.newPasswordConfirm) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +18:11:11.101 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0350430-86ca-46e6-a177-2040747c78b6", {"password":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPassword":"a0350430-86ca-46e6-a177-2040747c78b6","newPasswordConfirm":"a0350430-86ca-46e6-a177-2040747c78b6"}, requestBody.newPassword) +18:11:11.101 [XNIO-1 task-1] zghY_8hGTI-mwQaNw3hToA DEBUG com.networknt.schema.FormatValidator debug - validate( "a0350430-86ca-46e6-a177-2040747c78b6", {"password":"c90cfea6-8524-4919-a85a-30b7b3a9c0d9","newPassword":"a0350430-86ca-46e6-a177-2040747c78b6","newPasswordConfirm":"a0350430-86ca-46e6-a177-2040747c78b6"}, requestBody.newPassword) +18:11:11.108 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:11.111 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9dd0fec8 +18:11:11.119 [XNIO-1 task-1] bJOitKQNSmqzIbFZTMuCvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.119 [XNIO-1 task-1] bJOitKQNSmqzIbFZTMuCvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.119 [XNIO-1 task-1] bJOitKQNSmqzIbFZTMuCvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.119 [XNIO-1 task-1] bJOitKQNSmqzIbFZTMuCvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.130 [XNIO-1 task-1] 08AZiaAPSv6uGcLERVZ-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/081c6922 +18:11:11.130 [XNIO-1 task-1] 08AZiaAPSv6uGcLERVZ-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.130 [XNIO-1 task-1] 08AZiaAPSv6uGcLERVZ-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.130 [XNIO-1 task-1] 08AZiaAPSv6uGcLERVZ-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/081c6922 +18:11:11.134 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8edccf36-018a-421a-8df3-18b2eee74480 +18:11:11.140 [XNIO-1 task-1] RIixW9a5QGS0vJE367okKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.140 [XNIO-1 task-1] RIixW9a5QGS0vJE367okKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.140 [XNIO-1 task-1] RIixW9a5QGS0vJE367okKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.141 [XNIO-1 task-1] RIixW9a5QGS0vJE367okKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.149 [XNIO-1 task-1] yvVwabQSQ1OdjqclqVcZkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/41dbee4f +18:11:11.149 [XNIO-1 task-1] yvVwabQSQ1OdjqclqVcZkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.149 [XNIO-1 task-1] yvVwabQSQ1OdjqclqVcZkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.149 [XNIO-1 task-1] yvVwabQSQ1OdjqclqVcZkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/41dbee4f +18:11:11.182 [XNIO-1 task-1] sJli8nbpRpOq-H_plSpkEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.183 [XNIO-1 task-1] sJli8nbpRpOq-H_plSpkEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.183 [XNIO-1 task-1] sJli8nbpRpOq-H_plSpkEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.191 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:503e8b0d-1b93-4728-ae96-97f2049efbff +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +Jun 28, 2024 6:11:11 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:11:11.213 [XNIO-1 task-1] AcL6QFZxReKv-IvIZuulOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.213 [XNIO-1 task-1] AcL6QFZxReKv-IvIZuulOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.214 [XNIO-1 task-1] AcL6QFZxReKv-IvIZuulOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9dd0fec8 +18:11:11.216 [XNIO-1 task-1] fEDOnwzzRLe2nms0BaBQZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1fcf6838, base path is set to: null +18:11:11.216 [XNIO-1 task-1] fEDOnwzzRLe2nms0BaBQZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.216 [XNIO-1 task-1] fEDOnwzzRLe2nms0BaBQZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.216 [XNIO-1 task-1] fEDOnwzzRLe2nms0BaBQZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1fcf6838, base path is set to: null +18:11:11.216 [XNIO-1 task-1] fEDOnwzzRLe2nms0BaBQZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1fcf6838", "1fcf6838", userId) +18:11:11.219 [XNIO-1 task-1] 7GCMomj6TymMxqHsYKhCpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.219 [XNIO-1 task-1] 7GCMomj6TymMxqHsYKhCpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.219 [XNIO-1 task-1] 7GCMomj6TymMxqHsYKhCpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.219 [XNIO-1 task-1] 7GCMomj6TymMxqHsYKhCpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.236 [XNIO-1 task-1] CIsigw9LRoOkS-5SZaD_BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9dd0fec8 +18:11:11.236 [XNIO-1 task-1] CIsigw9LRoOkS-5SZaD_BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.236 [XNIO-1 task-1] CIsigw9LRoOkS-5SZaD_BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.236 [XNIO-1 task-1] CIsigw9LRoOkS-5SZaD_BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9dd0fec8 +18:11:11.236 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9dd0fec8 +18:11:11.241 [XNIO-1 task-1] gPGpg3vYS92tw7_ao_x42w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.241 [XNIO-1 task-1] gPGpg3vYS92tw7_ao_x42w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.241 [XNIO-1 task-1] gPGpg3vYS92tw7_ao_x42w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.241 [XNIO-1 task-1] gPGpg3vYS92tw7_ao_x42w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.268 [XNIO-1 task-1] JILSqGyDRdeQDu9qGVBmaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5607d872 +18:11:11.268 [XNIO-1 task-1] JILSqGyDRdeQDu9qGVBmaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.268 [XNIO-1 task-1] JILSqGyDRdeQDu9qGVBmaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.268 [XNIO-1 task-1] JILSqGyDRdeQDu9qGVBmaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5607d872 +18:11:11.289 [XNIO-1 task-1] muG4KESISKiMJKphxcJt0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1fcf6838, base path is set to: null +18:11:11.289 [XNIO-1 task-1] muG4KESISKiMJKphxcJt0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.289 [XNIO-1 task-1] muG4KESISKiMJKphxcJt0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.289 [XNIO-1 task-1] muG4KESISKiMJKphxcJt0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1fcf6838, base path is set to: null +18:11:11.290 [XNIO-1 task-1] muG4KESISKiMJKphxcJt0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1fcf6838", "1fcf6838", userId) +18:11:11.292 [XNIO-1 task-1] Rg7PKBhQTvKcxrDEI2Y0tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5607d872 +18:11:11.292 [XNIO-1 task-1] Rg7PKBhQTvKcxrDEI2Y0tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.292 [XNIO-1 task-1] Rg7PKBhQTvKcxrDEI2Y0tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.292 [XNIO-1 task-1] Rg7PKBhQTvKcxrDEI2Y0tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5607d872 +18:11:11.362 [XNIO-1 task-1] oZ4wfA6_Q02I2GhxITF_OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1fcf6838, base path is set to: null +18:11:11.362 [XNIO-1 task-1] oZ4wfA6_Q02I2GhxITF_OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.362 [XNIO-1 task-1] oZ4wfA6_Q02I2GhxITF_OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.363 [XNIO-1 task-1] oZ4wfA6_Q02I2GhxITF_OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1fcf6838, base path is set to: null +18:11:11.363 [XNIO-1 task-1] oZ4wfA6_Q02I2GhxITF_OA DEBUG com.networknt.schema.TypeValidator debug - validate( "1fcf6838", "1fcf6838", userId) +18:11:11.365 [XNIO-1 task-1] xgSpEjp0TP-vtE5IL_Q1CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1fcf6838 +18:11:11.365 [XNIO-1 task-1] xgSpEjp0TP-vtE5IL_Q1CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.365 [XNIO-1 task-1] xgSpEjp0TP-vtE5IL_Q1CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.365 [XNIO-1 task-1] xgSpEjp0TP-vtE5IL_Q1CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1fcf6838 +18:11:11.378 [XNIO-1 task-1] 4bTeTOA1RumiC-Sws787uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.378 [XNIO-1 task-1] 4bTeTOA1RumiC-Sws787uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.378 [XNIO-1 task-1] 4bTeTOA1RumiC-Sws787uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.378 [XNIO-1 task-1] 4bTeTOA1RumiC-Sws787uA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.384 [XNIO-1 task-1] VXTfNuCZTIOkgMwjEOggig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.384 [XNIO-1 task-1] VXTfNuCZTIOkgMwjEOggig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.385 [XNIO-1 task-1] VXTfNuCZTIOkgMwjEOggig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.398 [XNIO-1 task-1] JHIzgIUuRzW9wmM05zbMsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.398 [XNIO-1 task-1] JHIzgIUuRzW9wmM05zbMsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.398 [XNIO-1 task-1] JHIzgIUuRzW9wmM05zbMsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.398 [XNIO-1 task-1] JHIzgIUuRzW9wmM05zbMsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.411 [XNIO-1 task-1] f16fZX01RBSrGZ4BuaWlMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.412 [XNIO-1 task-1] f16fZX01RBSrGZ4BuaWlMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.412 [XNIO-1 task-1] f16fZX01RBSrGZ4BuaWlMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.412 [XNIO-1 task-1] f16fZX01RBSrGZ4BuaWlMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:11.417 [XNIO-1 task-1] z8qGWJRHQfS9lxK0E3-Jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/273a7781, base path is set to: null +18:11:11.417 [XNIO-1 task-1] z8qGWJRHQfS9lxK0E3-Jsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.417 [XNIO-1 task-1] z8qGWJRHQfS9lxK0E3-Jsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.417 [XNIO-1 task-1] z8qGWJRHQfS9lxK0E3-Jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/273a7781, base path is set to: null +18:11:11.417 [XNIO-1 task-1] z8qGWJRHQfS9lxK0E3-Jsw DEBUG com.networknt.schema.TypeValidator debug - validate( "273a7781", "273a7781", userId) +18:11:11.429 [XNIO-1 task-1] StdIO5FlSBOCtsM8j7asyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.429 [XNIO-1 task-1] StdIO5FlSBOCtsM8j7asyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.429 [XNIO-1 task-1] StdIO5FlSBOCtsM8j7asyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.429 [XNIO-1 task-1] StdIO5FlSBOCtsM8j7asyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.431 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:57a903a5-910c-48ae-9a32-6b1bd0899e57 +18:11:11.440 [XNIO-1 task-1] iL4Ixx89RKWN9JZHHGPi4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.440 [XNIO-1 task-1] iL4Ixx89RKWN9JZHHGPi4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.441 [XNIO-1 task-1] iL4Ixx89RKWN9JZHHGPi4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.441 [XNIO-1 task-1] iL4Ixx89RKWN9JZHHGPi4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.447 [XNIO-1 task-1] RGSb47NMTU6XXMjeS1OcFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.448 [XNIO-1 task-1] RGSb47NMTU6XXMjeS1OcFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.448 [XNIO-1 task-1] RGSb47NMTU6XXMjeS1OcFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.466 [XNIO-1 task-1] IrfdPndjS3KkazQ3jSfFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/90a559e4 +18:11:11.466 [XNIO-1 task-1] IrfdPndjS3KkazQ3jSfFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.466 [XNIO-1 task-1] IrfdPndjS3KkazQ3jSfFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.466 [XNIO-1 task-1] IrfdPndjS3KkazQ3jSfFSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/90a559e4 +18:11:11.473 [XNIO-1 task-1] QH5r1b1IS1edFjhsq9AyPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.473 [XNIO-1 task-1] QH5r1b1IS1edFjhsq9AyPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.474 [XNIO-1 task-1] QH5r1b1IS1edFjhsq9AyPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.484 [XNIO-1 task-1] 14xg-vQHRAOQ2U739pNOGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/10200cf2, base path is set to: null +18:11:11.485 [XNIO-1 task-1] 14xg-vQHRAOQ2U739pNOGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.485 [XNIO-1 task-1] 14xg-vQHRAOQ2U739pNOGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.485 [XNIO-1 task-1] 14xg-vQHRAOQ2U739pNOGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/10200cf2, base path is set to: null +18:11:11.485 [XNIO-1 task-1] 14xg-vQHRAOQ2U739pNOGg DEBUG com.networknt.schema.TypeValidator debug - validate( "10200cf2", "10200cf2", userId) +18:11:11.491 [XNIO-1 task-1] QQmfqp-xT2S2rATr6Gz6pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.491 [XNIO-1 task-1] QQmfqp-xT2S2rATr6Gz6pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.491 [XNIO-1 task-1] QQmfqp-xT2S2rATr6Gz6pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.491 [XNIO-1 task-1] QQmfqp-xT2S2rATr6Gz6pw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:11.497 [XNIO-1 task-1] Ke2Hx3FhQm2V5r0sS5ASPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/10200cf2 +18:11:11.497 [XNIO-1 task-1] Ke2Hx3FhQm2V5r0sS5ASPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.497 [XNIO-1 task-1] Ke2Hx3FhQm2V5r0sS5ASPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.497 [XNIO-1 task-1] Ke2Hx3FhQm2V5r0sS5ASPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/10200cf2 +18:11:11.499 [XNIO-1 task-1] JshojNhcTPecnOQXV0zMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.499 [XNIO-1 task-1] JshojNhcTPecnOQXV0zMAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.499 [XNIO-1 task-1] JshojNhcTPecnOQXV0zMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.507 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/10200cf2, base path is set to: null +18:11:11.507 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.507 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.507 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:11.507 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/10200cf2, base path is set to: null +18:11:11.508 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG com.networknt.schema.TypeValidator debug - validate( "10200cf2", "10200cf2", userId) +18:11:11.508 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"64c66878-a838-40c4-ba9d-e72740969b88","newPassword":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761","newPasswordConfirm":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761"}, {"password":"64c66878-a838-40c4-ba9d-e72740969b88","newPassword":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761","newPasswordConfirm":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761"}, requestBody) +18:11:11.508 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG com.networknt.schema.TypeValidator debug - validate( "ffa135bd-7e93-40f6-810b-1a1d1b7bc761", {"password":"64c66878-a838-40c4-ba9d-e72740969b88","newPassword":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761","newPasswordConfirm":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761"}, requestBody.newPasswordConfirm) +18:11:11.508 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG com.networknt.schema.TypeValidator debug - validate( "64c66878-a838-40c4-ba9d-e72740969b88", {"password":"64c66878-a838-40c4-ba9d-e72740969b88","newPassword":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761","newPasswordConfirm":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761"}, requestBody.password) +18:11:11.508 [XNIO-1 task-1] 3eyh1EzVToWs-dYatbZYiw DEBUG com.networknt.schema.TypeValidator debug - validate( "ffa135bd-7e93-40f6-810b-1a1d1b7bc761", {"password":"64c66878-a838-40c4-ba9d-e72740969b88","newPassword":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761","newPasswordConfirm":"ffa135bd-7e93-40f6-810b-1a1d1b7bc761"}, requestBody.newPassword) +18:11:11.531 [XNIO-1 task-1] cC05LrKWRQmmRZ-Hvx23Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.531 [XNIO-1 task-1] cC05LrKWRQmmRZ-Hvx23Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.531 [XNIO-1 task-1] cC05LrKWRQmmRZ-Hvx23Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.542 [XNIO-1 task-1] 8u1jvueBRJayZVV2-TuyJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f27dd083, base path is set to: null +18:11:11.542 [XNIO-1 task-1] 8u1jvueBRJayZVV2-TuyJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.542 [XNIO-1 task-1] 8u1jvueBRJayZVV2-TuyJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.542 [XNIO-1 task-1] 8u1jvueBRJayZVV2-TuyJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f27dd083, base path is set to: null +18:11:11.542 [XNIO-1 task-1] 8u1jvueBRJayZVV2-TuyJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f27dd083", "f27dd083", userId) +18:11:11.550 [XNIO-1 task-1] TNDK6VgBRVaBT81bXBKIhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.550 [XNIO-1 task-1] TNDK6VgBRVaBT81bXBKIhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.550 [XNIO-1 task-1] TNDK6VgBRVaBT81bXBKIhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.571 [XNIO-1 task-1] iP5MT71ARcaWQzeX0H2hFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/10200cf2 +18:11:11.571 [XNIO-1 task-1] iP5MT71ARcaWQzeX0H2hFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.571 [XNIO-1 task-1] iP5MT71ARcaWQzeX0H2hFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.571 [XNIO-1 task-1] iP5MT71ARcaWQzeX0H2hFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/10200cf2 +18:11:11.579 [XNIO-1 task-1] DYZTkheRQG6sjp6FglARVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/788aecc0, base path is set to: null +18:11:11.579 [XNIO-1 task-1] DYZTkheRQG6sjp6FglARVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.579 [XNIO-1 task-1] DYZTkheRQG6sjp6FglARVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:11.579 [XNIO-1 task-1] DYZTkheRQG6sjp6FglARVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/788aecc0, base path is set to: null +18:11:11.579 [XNIO-1 task-1] DYZTkheRQG6sjp6FglARVg DEBUG com.networknt.schema.TypeValidator debug - validate( "788aecc0", "788aecc0", userId) +18:11:11.587 [XNIO-1 task-1] AbzQPGFzSxO0I5ZF0BIJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f27dd083 +18:11:11.587 [XNIO-1 task-1] AbzQPGFzSxO0I5ZF0BIJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:11.587 [XNIO-1 task-1] AbzQPGFzSxO0I5ZF0BIJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:11.587 [XNIO-1 task-1] AbzQPGFzSxO0I5ZF0BIJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f27dd083 +18:11:11.593 [XNIO-1 task-1] o5V5JyJvSLOz3lS0d0vi0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.593 [XNIO-1 task-1] o5V5JyJvSLOz3lS0d0vi0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.593 [XNIO-1 task-1] o5V5JyJvSLOz3lS0d0vi0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.606 [XNIO-1 task-1] DpzfzsiZRYuuZkeT9JzENA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.606 [XNIO-1 task-1] DpzfzsiZRYuuZkeT9JzENA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:11.606 [XNIO-1 task-1] DpzfzsiZRYuuZkeT9JzENA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:11.618 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:57a903a5-910c-48ae-9a32-6b1bd0899e57 +18:11:13.506 [XNIO-1 task-1] o1Fr2JEXRk-Rn62EoPrqbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.506 [XNIO-1 task-1] o1Fr2JEXRk-Rn62EoPrqbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.506 [XNIO-1 task-1] o1Fr2JEXRk-Rn62EoPrqbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.523 [XNIO-1 task-1] TWQ0lG8fQUmw8Jd3gr8swQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/734cef1c +18:11:13.523 [XNIO-1 task-1] TWQ0lG8fQUmw8Jd3gr8swQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.524 [XNIO-1 task-1] TWQ0lG8fQUmw8Jd3gr8swQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.524 [XNIO-1 task-1] TWQ0lG8fQUmw8Jd3gr8swQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/734cef1c +18:11:13.535 [XNIO-1 task-1] 4xZzfD8aSQCciwtQHBastQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.535 [XNIO-1 task-1] 4xZzfD8aSQCciwtQHBastQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.535 [XNIO-1 task-1] 4xZzfD8aSQCciwtQHBastQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.537 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d9a1480e-920a-4919-b95a-9b46f5c83104 +18:11:13.559 [XNIO-1 task-1] DTMj6zaSQJSv6OXmQjfM2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.559 [XNIO-1 task-1] DTMj6zaSQJSv6OXmQjfM2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.559 [XNIO-1 task-1] DTMj6zaSQJSv6OXmQjfM2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.559 [XNIO-1 task-1] DTMj6zaSQJSv6OXmQjfM2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.564 [XNIO-1 task-1] DhrwRkrvRp-sC30iHUHelw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.564 [XNIO-1 task-1] DhrwRkrvRp-sC30iHUHelw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.564 [XNIO-1 task-1] DhrwRkrvRp-sC30iHUHelw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.574 [XNIO-1 task-1] 33i9o8LuRYiqSPJsAXPodA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0f3df6d0, base path is set to: null +18:11:13.574 [XNIO-1 task-1] 33i9o8LuRYiqSPJsAXPodA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.574 [XNIO-1 task-1] 33i9o8LuRYiqSPJsAXPodA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.574 [XNIO-1 task-1] 33i9o8LuRYiqSPJsAXPodA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0f3df6d0, base path is set to: null +18:11:13.574 [XNIO-1 task-1] 33i9o8LuRYiqSPJsAXPodA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f3df6d0", "0f3df6d0", userId) +18:11:13.587 [XNIO-1 task-1] D2uzyqcLSneXIcncIednhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cccd13af +18:11:13.587 [XNIO-1 task-1] D2uzyqcLSneXIcncIednhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.587 [XNIO-1 task-1] D2uzyqcLSneXIcncIednhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.587 [XNIO-1 task-1] D2uzyqcLSneXIcncIednhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cccd13af +18:11:13.594 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cccd13af, base path is set to: null +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cccd13af, base path is set to: null +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG com.networknt.schema.TypeValidator debug - validate( "cccd13af", "cccd13af", userId) +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"3c417b22-8c31-4527-976e-c13b269b375c","newPassword":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPasswordConfirm":"6ea86dee-fe17-42b9-a130-d8aa9702902a"}, {"password":"3c417b22-8c31-4527-976e-c13b269b375c","newPassword":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPasswordConfirm":"6ea86dee-fe17-42b9-a130-d8aa9702902a"}, requestBody) +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG com.networknt.schema.TypeValidator debug - validate( "6ea86dee-fe17-42b9-a130-d8aa9702902a", {"password":"3c417b22-8c31-4527-976e-c13b269b375c","newPassword":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPasswordConfirm":"6ea86dee-fe17-42b9-a130-d8aa9702902a"}, requestBody.newPasswordConfirm) +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG com.networknt.schema.TypeValidator debug - validate( "3c417b22-8c31-4527-976e-c13b269b375c", {"password":"3c417b22-8c31-4527-976e-c13b269b375c","newPassword":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPasswordConfirm":"6ea86dee-fe17-42b9-a130-d8aa9702902a"}, requestBody.password) +18:11:13.595 [XNIO-1 task-1] x5KcPJr0TLWbUsJnlUpbPw DEBUG com.networknt.schema.TypeValidator debug - validate( "6ea86dee-fe17-42b9-a130-d8aa9702902a", {"password":"3c417b22-8c31-4527-976e-c13b269b375c","newPassword":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPasswordConfirm":"6ea86dee-fe17-42b9-a130-d8aa9702902a"}, requestBody.newPassword) +18:11:13.616 [XNIO-1 task-1] pqtNua8-SeaIULf_XEuWcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.616 [XNIO-1 task-1] pqtNua8-SeaIULf_XEuWcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.616 [XNIO-1 task-1] pqtNua8-SeaIULf_XEuWcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.635 [XNIO-1 task-1] X8K44MoPSEaOazfkvCsr6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.635 [XNIO-1 task-1] X8K44MoPSEaOazfkvCsr6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.635 [XNIO-1 task-1] X8K44MoPSEaOazfkvCsr6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.645 [XNIO-1 task-1] lR3XxvrIRsCqdyhp-bDi-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cccd13af, base path is set to: null +18:11:13.645 [XNIO-1 task-1] lR3XxvrIRsCqdyhp-bDi-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.645 [XNIO-1 task-1] lR3XxvrIRsCqdyhp-bDi-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.645 [XNIO-1 task-1] lR3XxvrIRsCqdyhp-bDi-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cccd13af, base path is set to: null +18:11:13.645 [XNIO-1 task-1] lR3XxvrIRsCqdyhp-bDi-w DEBUG com.networknt.schema.TypeValidator debug - validate( "cccd13af", "cccd13af", userId) +18:11:13.651 [XNIO-1 task-1] Tabvwq3lSJ-yyYYrO_rfOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.651 [XNIO-1 task-1] Tabvwq3lSJ-yyYYrO_rfOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.651 [XNIO-1 task-1] Tabvwq3lSJ-yyYYrO_rfOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.665 [XNIO-1 task-1] Rw_DAXmJQnu6JzZaUp2WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/885592c0 +18:11:13.665 [XNIO-1 task-1] Rw_DAXmJQnu6JzZaUp2WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.665 [XNIO-1 task-1] Rw_DAXmJQnu6JzZaUp2WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.665 [XNIO-1 task-1] Rw_DAXmJQnu6JzZaUp2WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/885592c0 +18:11:13.671 [XNIO-1 task-1] v8MOkB0oSG-jl_4jv7cFQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.671 [XNIO-1 task-1] v8MOkB0oSG-jl_4jv7cFQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.671 [XNIO-1 task-1] v8MOkB0oSG-jl_4jv7cFQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.678 [XNIO-1 task-1] ELvYS8T0TZKH7YdjKaEDhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/885592c0, base path is set to: null +18:11:13.679 [XNIO-1 task-1] ELvYS8T0TZKH7YdjKaEDhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.679 [XNIO-1 task-1] ELvYS8T0TZKH7YdjKaEDhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.679 [XNIO-1 task-1] ELvYS8T0TZKH7YdjKaEDhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/885592c0, base path is set to: null +18:11:13.679 [XNIO-1 task-1] ELvYS8T0TZKH7YdjKaEDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "885592c0", "885592c0", userId) +18:11:13.686 [XNIO-1 task-1] RU7nx513QgKVqUsPT2kLkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f4d5597 +18:11:13.686 [XNIO-1 task-1] RU7nx513QgKVqUsPT2kLkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.686 [XNIO-1 task-1] RU7nx513QgKVqUsPT2kLkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.686 [XNIO-1 task-1] RU7nx513QgKVqUsPT2kLkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f4d5597 +18:11:13.689 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d9a1480e-920a-4919-b95a-9b46f5c83104 +18:11:13.691 [XNIO-1 task-1] KyasFTkRTH2BuYWuTpuu8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.691 [XNIO-1 task-1] KyasFTkRTH2BuYWuTpuu8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.691 [XNIO-1 task-1] KyasFTkRTH2BuYWuTpuu8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.702 [XNIO-1 task-1] PcGQ4ydPQ2GlRpXEzQzqig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5f4d5597, base path is set to: null +18:11:13.702 [XNIO-1 task-1] PcGQ4ydPQ2GlRpXEzQzqig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.702 [XNIO-1 task-1] PcGQ4ydPQ2GlRpXEzQzqig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.702 [XNIO-1 task-1] PcGQ4ydPQ2GlRpXEzQzqig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5f4d5597, base path is set to: null +18:11:13.702 [XNIO-1 task-1] PcGQ4ydPQ2GlRpXEzQzqig DEBUG com.networknt.schema.TypeValidator debug - validate( "5f4d5597", "5f4d5597", userId) +18:11:13.702 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0ba2278c-7f06-4ebf-940d-cd96ca3da829 +18:11:13.708 [XNIO-1 task-1] Y_rtMZopSdGILYVCvJn8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.708 [XNIO-1 task-1] Y_rtMZopSdGILYVCvJn8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.708 [XNIO-1 task-1] Y_rtMZopSdGILYVCvJn8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.724 [XNIO-1 task-1] uj44MPcvSy6-JKd-ELqrnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.724 [XNIO-1 task-1] uj44MPcvSy6-JKd-ELqrnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.724 [XNIO-1 task-1] uj44MPcvSy6-JKd-ELqrnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.732 [XNIO-1 task-1] asp54BCJRMujTpf1HvLB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.732 [XNIO-1 task-1] asp54BCJRMujTpf1HvLB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.732 [XNIO-1 task-1] asp54BCJRMujTpf1HvLB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.733 [XNIO-1 task-1] asp54BCJRMujTpf1HvLB8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:13.739 [XNIO-1 task-1] wFCCdw6RQm24a5yJOEpm7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/885592c0 +18:11:13.740 [XNIO-1 task-1] wFCCdw6RQm24a5yJOEpm7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.740 [XNIO-1 task-1] wFCCdw6RQm24a5yJOEpm7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.740 [XNIO-1 task-1] wFCCdw6RQm24a5yJOEpm7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/885592c0 +18:11:13.749 [XNIO-1 task-1] sOkomkkVS5aa2i2M9EaGPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f7aa9c9c, base path is set to: null +18:11:13.749 [XNIO-1 task-1] sOkomkkVS5aa2i2M9EaGPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.749 [XNIO-1 task-1] sOkomkkVS5aa2i2M9EaGPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.749 [XNIO-1 task-1] sOkomkkVS5aa2i2M9EaGPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f7aa9c9c, base path is set to: null +18:11:13.750 [XNIO-1 task-1] sOkomkkVS5aa2i2M9EaGPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f7aa9c9c", "f7aa9c9c", userId) +18:11:13.756 [XNIO-1 task-1] pVt45_uBRdaRddZEua8sKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f7aa9c9c +18:11:13.756 [XNIO-1 task-1] pVt45_uBRdaRddZEua8sKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.756 [XNIO-1 task-1] pVt45_uBRdaRddZEua8sKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.756 [XNIO-1 task-1] pVt45_uBRdaRddZEua8sKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f7aa9c9c +18:11:13.767 [XNIO-1 task-1] jjbHX-U2Qnelm0tOkIBTSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.767 [XNIO-1 task-1] jjbHX-U2Qnelm0tOkIBTSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.767 [XNIO-1 task-1] jjbHX-U2Qnelm0tOkIBTSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.774 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cccd13af, base path is set to: null +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cccd13af, base path is set to: null +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "cccd13af", "cccd13af", userId) +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPassword":"66beec65-c97d-4504-87cd-ded715ffc900","newPasswordConfirm":"66beec65-c97d-4504-87cd-ded715ffc900"}, {"password":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPassword":"66beec65-c97d-4504-87cd-ded715ffc900","newPasswordConfirm":"66beec65-c97d-4504-87cd-ded715ffc900"}, requestBody) +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "66beec65-c97d-4504-87cd-ded715ffc900", {"password":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPassword":"66beec65-c97d-4504-87cd-ded715ffc900","newPasswordConfirm":"66beec65-c97d-4504-87cd-ded715ffc900"}, requestBody.newPasswordConfirm) +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "6ea86dee-fe17-42b9-a130-d8aa9702902a", {"password":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPassword":"66beec65-c97d-4504-87cd-ded715ffc900","newPasswordConfirm":"66beec65-c97d-4504-87cd-ded715ffc900"}, requestBody.password) +18:11:13.775 [XNIO-1 task-1] 8CWvZ9zmRKKwweXm7_h0Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "66beec65-c97d-4504-87cd-ded715ffc900", {"password":"6ea86dee-fe17-42b9-a130-d8aa9702902a","newPassword":"66beec65-c97d-4504-87cd-ded715ffc900","newPasswordConfirm":"66beec65-c97d-4504-87cd-ded715ffc900"}, requestBody.newPassword) +18:11:13.795 [XNIO-1 task-1] fXMPEXTXTYyaDAJUt40v2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.795 [XNIO-1 task-1] fXMPEXTXTYyaDAJUt40v2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.795 [XNIO-1 task-1] fXMPEXTXTYyaDAJUt40v2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.796 [XNIO-1 task-1] fXMPEXTXTYyaDAJUt40v2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.800 [XNIO-1 task-1] cqugB3FBT3apNHs1mo39oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.800 [XNIO-1 task-1] cqugB3FBT3apNHs1mo39oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.800 [XNIO-1 task-1] cqugB3FBT3apNHs1mo39oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.800 [XNIO-1 task-1] cqugB3FBT3apNHs1mo39oA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5f4d5597, base path is set to: null +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5f4d5597, base path is set to: null +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f4d5597", "5f4d5597", userId) +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b44730d6-253c-46fa-8e2e-0e79350f7c85","newPassword":"a5e9dec8-f5ec-473d-a12a-b930835b2c96","newPasswordConfirm":"a5e9dec8-f5ec-473d-a12a-b930835b2c96"}, {"password":"b44730d6-253c-46fa-8e2e-0e79350f7c85","newPassword":"a5e9dec8-f5ec-473d-a12a-b930835b2c96","newPasswordConfirm":"a5e9dec8-f5ec-473d-a12a-b930835b2c96"}, requestBody) +18:11:13.806 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5e9dec8-f5ec-473d-a12a-b930835b2c96", {"password":"b44730d6-253c-46fa-8e2e-0e79350f7c85","newPassword":"a5e9dec8-f5ec-473d-a12a-b930835b2c96","newPasswordConfirm":"a5e9dec8-f5ec-473d-a12a-b930835b2c96"}, requestBody.newPasswordConfirm) +18:11:13.807 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG com.networknt.schema.TypeValidator debug - validate( "b44730d6-253c-46fa-8e2e-0e79350f7c85", {"password":"b44730d6-253c-46fa-8e2e-0e79350f7c85","newPassword":"a5e9dec8-f5ec-473d-a12a-b930835b2c96","newPasswordConfirm":"a5e9dec8-f5ec-473d-a12a-b930835b2c96"}, requestBody.password) +18:11:13.807 [XNIO-1 task-1] Pzgs4PYTTe-J4rKJ2EtiRw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5e9dec8-f5ec-473d-a12a-b930835b2c96", {"password":"b44730d6-253c-46fa-8e2e-0e79350f7c85","newPassword":"a5e9dec8-f5ec-473d-a12a-b930835b2c96","newPasswordConfirm":"a5e9dec8-f5ec-473d-a12a-b930835b2c96"}, requestBody.newPassword) +18:11:13.825 [XNIO-1 task-1] ppoZGLISSBai4T7WWxoXuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.825 [XNIO-1 task-1] ppoZGLISSBai4T7WWxoXuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.825 [XNIO-1 task-1] ppoZGLISSBai4T7WWxoXuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.825 [XNIO-1 task-1] ppoZGLISSBai4T7WWxoXuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.832 [XNIO-1 task-1] QI-kMMsJS8WI23Gb36Uvgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.832 [XNIO-1 task-1] QI-kMMsJS8WI23Gb36Uvgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.832 [XNIO-1 task-1] QI-kMMsJS8WI23Gb36Uvgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.846 [XNIO-1 task-1] VQWmmOyzRcy0AOWp5RnfLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5f4d5597, base path is set to: null +18:11:13.846 [XNIO-1 task-1] VQWmmOyzRcy0AOWp5RnfLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.846 [XNIO-1 task-1] VQWmmOyzRcy0AOWp5RnfLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.847 [XNIO-1 task-1] VQWmmOyzRcy0AOWp5RnfLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5f4d5597, base path is set to: null +18:11:13.847 [XNIO-1 task-1] VQWmmOyzRcy0AOWp5RnfLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f4d5597", "5f4d5597", userId) +18:11:13.850 [XNIO-1 task-1] NY7_nSQQRsC70PFrdKj94w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f4d5597 +18:11:13.850 [XNIO-1 task-1] NY7_nSQQRsC70PFrdKj94w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.850 [XNIO-1 task-1] NY7_nSQQRsC70PFrdKj94w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.850 [XNIO-1 task-1] NY7_nSQQRsC70PFrdKj94w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f4d5597 +18:11:13.860 [XNIO-1 task-1] GTujI9XQQkiEaH6dB7-VGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.861 [XNIO-1 task-1] GTujI9XQQkiEaH6dB7-VGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.861 [XNIO-1 task-1] GTujI9XQQkiEaH6dB7-VGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.869 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0ba2278c-7f06-4ebf-940d-cd96ca3da829 +18:11:13.881 [XNIO-1 task-1] BTMqyGuKSHmlZXcb-zBNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f19ebbc5 +18:11:13.881 [XNIO-1 task-1] BTMqyGuKSHmlZXcb-zBNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.881 [XNIO-1 task-1] BTMqyGuKSHmlZXcb-zBNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.882 [XNIO-1 task-1] BTMqyGuKSHmlZXcb-zBNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f19ebbc5 +18:11:13.895 [XNIO-1 task-1] 7FS35W29SGi5AdGZoqWh3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.895 [XNIO-1 task-1] 7FS35W29SGi5AdGZoqWh3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.895 [XNIO-1 task-1] 7FS35W29SGi5AdGZoqWh3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:13.895 [XNIO-1 task-1] 7FS35W29SGi5AdGZoqWh3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:13.902 [XNIO-1 task-1] s7FT5Kj2QBedqn3FkogXjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eef2d375, base path is set to: null +18:11:13.903 [XNIO-1 task-1] s7FT5Kj2QBedqn3FkogXjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.903 [XNIO-1 task-1] s7FT5Kj2QBedqn3FkogXjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.903 [XNIO-1 task-1] s7FT5Kj2QBedqn3FkogXjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eef2d375, base path is set to: null +18:11:13.903 [XNIO-1 task-1] s7FT5Kj2QBedqn3FkogXjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eef2d375", "eef2d375", userId) +18:11:13.907 [XNIO-1 task-1] Sub1ku9-RLSlT4KJYScUDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.907 [XNIO-1 task-1] Sub1ku9-RLSlT4KJYScUDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.907 [XNIO-1 task-1] Sub1ku9-RLSlT4KJYScUDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/eef2d375 +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/eef2d375 +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"199db168-ab0b-4e13-b011-2a88a304879f","newPassword":"c93bc593-500f-400b-86fb-14362ac6de3f","newPasswordConfirm":"c93bc593-500f-400b-86fb-14362ac6de3f"}, {"password":"199db168-ab0b-4e13-b011-2a88a304879f","newPassword":"c93bc593-500f-400b-86fb-14362ac6de3f","newPasswordConfirm":"c93bc593-500f-400b-86fb-14362ac6de3f"}, requestBody) +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"199db168-ab0b-4e13-b011-2a88a304879f","newPassword":"c93bc593-500f-400b-86fb-14362ac6de3f","newPasswordConfirm":"c93bc593-500f-400b-86fb-14362ac6de3f"}, {"password":"199db168-ab0b-4e13-b011-2a88a304879f","newPassword":"c93bc593-500f-400b-86fb-14362ac6de3f","newPasswordConfirm":"c93bc593-500f-400b-86fb-14362ac6de3f"}, requestBody) +18:11:13.955 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "c93bc593-500f-400b-86fb-14362ac6de3f", {"password":"199db168-ab0b-4e13-b011-2a88a304879f","newPassword":"c93bc593-500f-400b-86fb-14362ac6de3f","newPasswordConfirm":"c93bc593-500f-400b-86fb-14362ac6de3f"}, requestBody.newPasswordConfirm) +18:11:13.956 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "199db168-ab0b-4e13-b011-2a88a304879f", {"password":"199db168-ab0b-4e13-b011-2a88a304879f","newPassword":"c93bc593-500f-400b-86fb-14362ac6de3f","newPasswordConfirm":"c93bc593-500f-400b-86fb-14362ac6de3f"}, requestBody.password) +18:11:13.956 [XNIO-1 task-1] IK3uJdd9TLyVtvZC07qC3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "c93bc593-500f-400b-86fb-14362ac6de3f", {"password":"199db168-ab0b-4e13-b011-2a88a304879f","newPassword":"c93bc593-500f-400b-86fb-14362ac6de3f","newPasswordConfirm":"c93bc593-500f-400b-86fb-14362ac6de3f"}, requestBody.newPassword) +18:11:13.970 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:032a256f +18:11:13.976 [XNIO-1 task-1] Jm7X7mGMQv-GgBNvEXWZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.976 [XNIO-1 task-1] Jm7X7mGMQv-GgBNvEXWZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.976 [XNIO-1 task-1] Jm7X7mGMQv-GgBNvEXWZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.985 [XNIO-1 task-1] nGozTz8YS86Z9xbez3UZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cccd13af +18:11:13.985 [XNIO-1 task-1] nGozTz8YS86Z9xbez3UZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:13.986 [XNIO-1 task-1] nGozTz8YS86Z9xbez3UZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:13.986 [XNIO-1 task-1] nGozTz8YS86Z9xbez3UZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cccd13af +18:11:13.998 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d9d203d0-526c-48c9-9f09-ffd319133cde +18:11:13.999 [XNIO-1 task-1] uksQmSzUR0a2UG89CYNzlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8fee7958, base path is set to: null +18:11:13.999 [XNIO-1 task-1] uksQmSzUR0a2UG89CYNzlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:13.999 [XNIO-1 task-1] uksQmSzUR0a2UG89CYNzlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:13.999 [XNIO-1 task-1] uksQmSzUR0a2UG89CYNzlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8fee7958, base path is set to: null +18:11:14.000 [XNIO-1 task-1] uksQmSzUR0a2UG89CYNzlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8fee7958", "8fee7958", userId) +18:11:14.014 [XNIO-1 task-1] _pzulRp3R4CBmavpUWWyGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eef2d375 +18:11:14.014 [XNIO-1 task-1] _pzulRp3R4CBmavpUWWyGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.014 [XNIO-1 task-1] _pzulRp3R4CBmavpUWWyGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.014 [XNIO-1 task-1] _pzulRp3R4CBmavpUWWyGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eef2d375 +18:11:14.027 [XNIO-1 task-1] kz_2NmhGSYiZ8jLglcfGlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.027 [XNIO-1 task-1] kz_2NmhGSYiZ8jLglcfGlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.029 [XNIO-1 task-1] kz_2NmhGSYiZ8jLglcfGlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.029 [XNIO-1 task-1] kz_2NmhGSYiZ8jLglcfGlw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.033 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2142adc4-b2f4-4e4d-84f0-499a21b2dd26 +18:11:14.034 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2142adc4-b2f4-4e4d-84f0-499a21b2dd26 +18:11:14.038 [XNIO-1 task-1] BrNZHfPASkuUHgVCRPCs5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.038 [XNIO-1 task-1] BrNZHfPASkuUHgVCRPCs5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.038 [XNIO-1 task-1] BrNZHfPASkuUHgVCRPCs5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.039 [XNIO-1 task-1] BrNZHfPASkuUHgVCRPCs5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.042 [XNIO-1 task-1] _60_KRydTsmBOogF35bpkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.042 [XNIO-1 task-1] _60_KRydTsmBOogF35bpkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.042 [XNIO-1 task-1] _60_KRydTsmBOogF35bpkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.067 [XNIO-1 task-1] AgiFEGuQRSCVxUPue9S_9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.067 [XNIO-1 task-1] AgiFEGuQRSCVxUPue9S_9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.067 [XNIO-1 task-1] AgiFEGuQRSCVxUPue9S_9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.068 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5c3a3164-7a33-41c8-a557-e9286965fa7d +18:11:14.081 [XNIO-1 task-1] bBr5mLJwSnyiiUEJmQ19AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/53ccd812, base path is set to: null +18:11:14.081 [XNIO-1 task-1] bBr5mLJwSnyiiUEJmQ19AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.081 [XNIO-1 task-1] bBr5mLJwSnyiiUEJmQ19AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.081 [XNIO-1 task-1] bBr5mLJwSnyiiUEJmQ19AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/53ccd812, base path is set to: null +18:11:14.081 [XNIO-1 task-1] bBr5mLJwSnyiiUEJmQ19AA DEBUG com.networknt.schema.TypeValidator debug - validate( "53ccd812", "53ccd812", userId) +18:11:14.088 [XNIO-1 task-1] 9p3dw9rqT624gxbjttTvkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.088 [XNIO-1 task-1] 9p3dw9rqT624gxbjttTvkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.088 [XNIO-1 task-1] 9p3dw9rqT624gxbjttTvkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.089 [XNIO-1 task-1] 9p3dw9rqT624gxbjttTvkg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.096 [XNIO-1 task-1] V592kWSJQ4qAp3YnkcoeSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/53ccd812, base path is set to: null +18:11:14.096 [XNIO-1 task-1] V592kWSJQ4qAp3YnkcoeSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.096 [XNIO-1 task-1] V592kWSJQ4qAp3YnkcoeSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.096 [XNIO-1 task-1] V592kWSJQ4qAp3YnkcoeSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/53ccd812, base path is set to: null +18:11:14.096 [XNIO-1 task-1] V592kWSJQ4qAp3YnkcoeSw DEBUG com.networknt.schema.TypeValidator debug - validate( "53ccd812", "53ccd812", userId) +18:11:14.107 [XNIO-1 task-1] cDKlb_-0QBCyHXVsYeBgrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.107 [XNIO-1 task-1] cDKlb_-0QBCyHXVsYeBgrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.107 [XNIO-1 task-1] cDKlb_-0QBCyHXVsYeBgrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.107 [XNIO-1 task-1] cDKlb_-0QBCyHXVsYeBgrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.113 [XNIO-1 task-1] 2sIa8o7PQXG-hjNlkufmrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.113 [XNIO-1 task-1] 2sIa8o7PQXG-hjNlkufmrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.113 [XNIO-1 task-1] 2sIa8o7PQXG-hjNlkufmrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.113 [XNIO-1 task-1] 2sIa8o7PQXG-hjNlkufmrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.122 [XNIO-1 task-1] I5myt1V_QsuGZjfW-e0dXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.122 [XNIO-1 task-1] I5myt1V_QsuGZjfW-e0dXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.122 [XNIO-1 task-1] I5myt1V_QsuGZjfW-e0dXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.142 [XNIO-1 task-1] V2zQc614RAOCi8TWq7HUiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.142 [XNIO-1 task-1] V2zQc614RAOCi8TWq7HUiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.142 [XNIO-1 task-1] V2zQc614RAOCi8TWq7HUiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.160 [XNIO-1 task-1] UaxLsd6YSeWYvGpzZakYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6718d3d +18:11:14.160 [XNIO-1 task-1] UaxLsd6YSeWYvGpzZakYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.160 [XNIO-1 task-1] UaxLsd6YSeWYvGpzZakYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.161 [XNIO-1 task-1] UaxLsd6YSeWYvGpzZakYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6718d3d +18:11:14.169 [XNIO-1 task-1] neU6WmtXSQOAfQ5N0GTuxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.170 [XNIO-1 task-1] neU6WmtXSQOAfQ5N0GTuxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.170 [XNIO-1 task-1] neU6WmtXSQOAfQ5N0GTuxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.179 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:57edaddd-d862-41d3-a739-3cf136e4299f +18:11:14.180 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:57edaddd-d862-41d3-a739-3cf136e4299f +18:11:14.187 [XNIO-1 task-1] bmmIWKMvRnCxdV97u5DvCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6718d3d +18:11:14.187 [XNIO-1 task-1] bmmIWKMvRnCxdV97u5DvCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.187 [XNIO-1 task-1] bmmIWKMvRnCxdV97u5DvCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.187 [XNIO-1 task-1] bmmIWKMvRnCxdV97u5DvCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6718d3d +18:11:14.197 [XNIO-1 task-1] VrfKifyjR0uMkIvGLGurzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f59935ee, base path is set to: null +18:11:14.197 [XNIO-1 task-1] VrfKifyjR0uMkIvGLGurzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.197 [XNIO-1 task-1] VrfKifyjR0uMkIvGLGurzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +Jun 28, 2024 6:11:14 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +18:11:14.202 [XNIO-1 task-1] lODzd1-FSnC58mgVFiBAGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.202 [XNIO-1 task-1] lODzd1-FSnC58mgVFiBAGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.202 [XNIO-1 task-1] lODzd1-FSnC58mgVFiBAGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.202 [XNIO-1 task-1] lODzd1-FSnC58mgVFiBAGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:11:14.203 [XNIO-1 task-1] lODzd1-FSnC58mgVFiBAGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +18:11:14.208 [XNIO-1 task-1] X0nxd2wdRzql_PBb8_dplA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.209 [XNIO-1 task-1] X0nxd2wdRzql_PBb8_dplA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.209 [XNIO-1 task-1] X0nxd2wdRzql_PBb8_dplA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.209 [XNIO-1 task-1] X0nxd2wdRzql_PBb8_dplA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.209 [XNIO-1 task-1] X0nxd2wdRzql_PBb8_dplA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.209 [XNIO-1 task-1] X0nxd2wdRzql_PBb8_dplA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.210 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:11:14.218 [XNIO-1 task-1] 9BCMNk7KQXupk28d48j2CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.218 [XNIO-1 task-1] 9BCMNk7KQXupk28d48j2CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.218 [XNIO-1 task-1] 9BCMNk7KQXupk28d48j2CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.235 [XNIO-1 task-1] R9G0d-tAQJ-K_XYR1ppJGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d5fc8bab, base path is set to: null +18:11:14.235 [XNIO-1 task-1] R9G0d-tAQJ-K_XYR1ppJGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.235 [XNIO-1 task-1] R9G0d-tAQJ-K_XYR1ppJGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.235 [XNIO-1 task-1] R9G0d-tAQJ-K_XYR1ppJGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d5fc8bab, base path is set to: null +18:11:14.236 [XNIO-1 task-1] R9G0d-tAQJ-K_XYR1ppJGw DEBUG com.networknt.schema.TypeValidator debug - validate( "d5fc8bab", "d5fc8bab", userId) +18:11:14.250 [XNIO-1 task-1] zg2X3gazQKKhlkfeVmSy8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.250 [XNIO-1 task-1] zg2X3gazQKKhlkfeVmSy8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.250 [XNIO-1 task-1] zg2X3gazQKKhlkfeVmSy8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.259 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:01c70df4-bba0-410a-af1c-097785721a39 +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4ca31d57, base path is set to: null +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4ca31d57, base path is set to: null +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG com.networknt.schema.TypeValidator debug - validate( "4ca31d57", "4ca31d57", userId) +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ea7ea71b-4e25-4cb6-a9c1-47716cfbfa1b","newPassword":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPasswordConfirm":"da402e1f-7ccd-4e29-a707-305ba53d7811"}, {"password":"ea7ea71b-4e25-4cb6-a9c1-47716cfbfa1b","newPassword":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPasswordConfirm":"da402e1f-7ccd-4e29-a707-305ba53d7811"}, requestBody) +18:11:14.265 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG com.networknt.schema.TypeValidator debug - validate( "da402e1f-7ccd-4e29-a707-305ba53d7811", {"password":"ea7ea71b-4e25-4cb6-a9c1-47716cfbfa1b","newPassword":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPasswordConfirm":"da402e1f-7ccd-4e29-a707-305ba53d7811"}, requestBody.newPasswordConfirm) +18:11:14.266 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea7ea71b-4e25-4cb6-a9c1-47716cfbfa1b", {"password":"ea7ea71b-4e25-4cb6-a9c1-47716cfbfa1b","newPassword":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPasswordConfirm":"da402e1f-7ccd-4e29-a707-305ba53d7811"}, requestBody.password) +18:11:14.266 [XNIO-1 task-1] pAd8je0eQAiYEvbqViRgXw DEBUG com.networknt.schema.TypeValidator debug - validate( "da402e1f-7ccd-4e29-a707-305ba53d7811", {"password":"ea7ea71b-4e25-4cb6-a9c1-47716cfbfa1b","newPassword":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPasswordConfirm":"da402e1f-7ccd-4e29-a707-305ba53d7811"}, requestBody.newPassword) +18:11:14.273 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6d2f67fe-35b2-4159-b0d0-2edeaf7e1287 +18:11:14.288 [XNIO-1 task-1] UW7ZU0KBQ1GbHyt5ne1JCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ca31d57, base path is set to: null +18:11:14.288 [XNIO-1 task-1] UW7ZU0KBQ1GbHyt5ne1JCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.288 [XNIO-1 task-1] UW7ZU0KBQ1GbHyt5ne1JCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.288 [XNIO-1 task-1] UW7ZU0KBQ1GbHyt5ne1JCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ca31d57, base path is set to: null +18:11:14.288 [XNIO-1 task-1] UW7ZU0KBQ1GbHyt5ne1JCg DEBUG com.networknt.schema.TypeValidator debug - validate( "4ca31d57", "4ca31d57", userId) +18:11:14.292 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.292 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.292 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.292 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:14.292 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.292 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPassword":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPasswordConfirm":"ddcd1587-505f-4b80-9e19-3a30535dbaeb"}, {"password":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPassword":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPasswordConfirm":"ddcd1587-505f-4b80-9e19-3a30535dbaeb"}, requestBody) +18:11:14.292 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPassword":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPasswordConfirm":"ddcd1587-505f-4b80-9e19-3a30535dbaeb"}, {"password":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPassword":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPasswordConfirm":"ddcd1587-505f-4b80-9e19-3a30535dbaeb"}, requestBody) +18:11:14.293 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG com.networknt.schema.FormatValidator debug - validate( "ddcd1587-505f-4b80-9e19-3a30535dbaeb", {"password":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPassword":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPasswordConfirm":"ddcd1587-505f-4b80-9e19-3a30535dbaeb"}, requestBody.newPasswordConfirm) +18:11:14.293 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG com.networknt.schema.FormatValidator debug - validate( "da402e1f-7ccd-4e29-a707-305ba53d7811", {"password":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPassword":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPasswordConfirm":"ddcd1587-505f-4b80-9e19-3a30535dbaeb"}, requestBody.password) +18:11:14.293 [XNIO-1 task-1] Izo7fJJ4Rg6aE3myWWkLRA DEBUG com.networknt.schema.FormatValidator debug - validate( "ddcd1587-505f-4b80-9e19-3a30535dbaeb", {"password":"da402e1f-7ccd-4e29-a707-305ba53d7811","newPassword":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPasswordConfirm":"ddcd1587-505f-4b80-9e19-3a30535dbaeb"}, requestBody.newPassword) +18:11:14.313 [XNIO-1 task-1] J1X6XY3-R5S0hxdTFTcOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.313 [XNIO-1 task-1] J1X6XY3-R5S0hxdTFTcOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.313 [XNIO-1 task-1] J1X6XY3-R5S0hxdTFTcOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.331 [XNIO-1 task-1] 2KpcYubBQEazuXlgWqeUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f59935ee +18:11:14.331 [XNIO-1 task-1] 2KpcYubBQEazuXlgWqeUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.331 [XNIO-1 task-1] 2KpcYubBQEazuXlgWqeUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.331 [XNIO-1 task-1] 2KpcYubBQEazuXlgWqeUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f59935ee +18:11:14.335 [XNIO-1 task-1] ELIfBY0xQs2PnLcpvNfUeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f59935ee, base path is set to: null +18:11:14.336 [XNIO-1 task-1] ELIfBY0xQs2PnLcpvNfUeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.336 [XNIO-1 task-1] ELIfBY0xQs2PnLcpvNfUeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.336 [XNIO-1 task-1] ELIfBY0xQs2PnLcpvNfUeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f59935ee, base path is set to: null +18:11:14.336 [XNIO-1 task-1] ELIfBY0xQs2PnLcpvNfUeA DEBUG com.networknt.schema.TypeValidator debug - validate( "f59935ee", "f59935ee", userId) +18:11:14.339 [XNIO-1 task-1] YqIRc65ITfyljdxHaQWXng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.339 [XNIO-1 task-1] YqIRc65ITfyljdxHaQWXng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.339 [XNIO-1 task-1] YqIRc65ITfyljdxHaQWXng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPassword":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPasswordConfirm":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1"}, {"password":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPassword":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPasswordConfirm":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1"}, requestBody) +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPassword":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPasswordConfirm":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1"}, {"password":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPassword":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPasswordConfirm":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1"}, requestBody) +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a2a0ccfe-92d1-4a6d-82be-3cea6473aff1", {"password":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPassword":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPasswordConfirm":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1"}, requestBody.newPasswordConfirm) +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ddcd1587-505f-4b80-9e19-3a30535dbaeb", {"password":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPassword":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPasswordConfirm":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1"}, requestBody.password) +18:11:14.354 [XNIO-1 task-1] kDmS_z-qTUSmJiH7AD3gHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a2a0ccfe-92d1-4a6d-82be-3cea6473aff1", {"password":"ddcd1587-505f-4b80-9e19-3a30535dbaeb","newPassword":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPasswordConfirm":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1"}, requestBody.newPassword) +18:11:14.377 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.377 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.377 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.377 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:14.377 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.378 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPassword":"001ca750-64e9-4c88-bd22-141feb31aefd","newPasswordConfirm":"001ca750-64e9-4c88-bd22-141feb31aefd"}, {"password":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPassword":"001ca750-64e9-4c88-bd22-141feb31aefd","newPasswordConfirm":"001ca750-64e9-4c88-bd22-141feb31aefd"}, requestBody) +18:11:14.378 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPassword":"001ca750-64e9-4c88-bd22-141feb31aefd","newPasswordConfirm":"001ca750-64e9-4c88-bd22-141feb31aefd"}, {"password":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPassword":"001ca750-64e9-4c88-bd22-141feb31aefd","newPasswordConfirm":"001ca750-64e9-4c88-bd22-141feb31aefd"}, requestBody) +18:11:14.378 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG com.networknt.schema.FormatValidator debug - validate( "001ca750-64e9-4c88-bd22-141feb31aefd", {"password":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPassword":"001ca750-64e9-4c88-bd22-141feb31aefd","newPasswordConfirm":"001ca750-64e9-4c88-bd22-141feb31aefd"}, requestBody.newPasswordConfirm) +18:11:14.378 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a2a0ccfe-92d1-4a6d-82be-3cea6473aff1", {"password":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPassword":"001ca750-64e9-4c88-bd22-141feb31aefd","newPasswordConfirm":"001ca750-64e9-4c88-bd22-141feb31aefd"}, requestBody.password) +18:11:14.378 [XNIO-1 task-1] 9PfZVgvtQ3iV1T5oGFP9tQ DEBUG com.networknt.schema.FormatValidator debug - validate( "001ca750-64e9-4c88-bd22-141feb31aefd", {"password":"a2a0ccfe-92d1-4a6d-82be-3cea6473aff1","newPassword":"001ca750-64e9-4c88-bd22-141feb31aefd","newPasswordConfirm":"001ca750-64e9-4c88-bd22-141feb31aefd"}, requestBody.newPassword) +18:11:14.406 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f59935ee +18:11:14.406 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.406 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.406 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:14.406 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f59935ee +18:11:14.406 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"cd4e97af-dc43-4a5f-a65b-9aa056fb9d09","newPassword":"13528883-4de9-4428-83fd-534166850d11","newPasswordConfirm":"13528883-4de9-4428-83fd-534166850d11"}, {"password":"cd4e97af-dc43-4a5f-a65b-9aa056fb9d09","newPassword":"13528883-4de9-4428-83fd-534166850d11","newPasswordConfirm":"13528883-4de9-4428-83fd-534166850d11"}, requestBody) +18:11:14.407 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"cd4e97af-dc43-4a5f-a65b-9aa056fb9d09","newPassword":"13528883-4de9-4428-83fd-534166850d11","newPasswordConfirm":"13528883-4de9-4428-83fd-534166850d11"}, {"password":"cd4e97af-dc43-4a5f-a65b-9aa056fb9d09","newPassword":"13528883-4de9-4428-83fd-534166850d11","newPasswordConfirm":"13528883-4de9-4428-83fd-534166850d11"}, requestBody) +18:11:14.407 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG com.networknt.schema.FormatValidator debug - validate( "13528883-4de9-4428-83fd-534166850d11", {"password":"cd4e97af-dc43-4a5f-a65b-9aa056fb9d09","newPassword":"13528883-4de9-4428-83fd-534166850d11","newPasswordConfirm":"13528883-4de9-4428-83fd-534166850d11"}, requestBody.newPasswordConfirm) +18:11:14.407 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG com.networknt.schema.FormatValidator debug - validate( "cd4e97af-dc43-4a5f-a65b-9aa056fb9d09", {"password":"cd4e97af-dc43-4a5f-a65b-9aa056fb9d09","newPassword":"13528883-4de9-4428-83fd-534166850d11","newPasswordConfirm":"13528883-4de9-4428-83fd-534166850d11"}, requestBody.password) +18:11:14.407 [XNIO-1 task-1] VqqoP172TKaqqJG8SoG7LQ DEBUG com.networknt.schema.FormatValidator debug - validate( "13528883-4de9-4428-83fd-534166850d11", {"password":"cd4e97af-dc43-4a5f-a65b-9aa056fb9d09","newPassword":"13528883-4de9-4428-83fd-534166850d11","newPasswordConfirm":"13528883-4de9-4428-83fd-534166850d11"}, requestBody.newPassword) +18:11:14.447 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8775e45a +18:11:14.452 [XNIO-1 task-1] 2s1Mgbw7ShCulEwyBF0LFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.453 [XNIO-1 task-1] 2s1Mgbw7ShCulEwyBF0LFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.453 [XNIO-1 task-1] 2s1Mgbw7ShCulEwyBF0LFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.463 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4ca31d57, base path is set to: null +18:11:14.463 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.463 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.463 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:14.463 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4ca31d57, base path is set to: null +18:11:14.465 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.465 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"001ca750-64e9-4c88-bd22-141feb31aefd","newPassword":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPasswordConfirm":"d07f69cf-9062-426a-96bc-dd9c7d60b648"}, {"password":"001ca750-64e9-4c88-bd22-141feb31aefd","newPassword":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPasswordConfirm":"d07f69cf-9062-426a-96bc-dd9c7d60b648"}, requestBody) +18:11:14.465 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"001ca750-64e9-4c88-bd22-141feb31aefd","newPassword":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPasswordConfirm":"d07f69cf-9062-426a-96bc-dd9c7d60b648"}, {"password":"001ca750-64e9-4c88-bd22-141feb31aefd","newPassword":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPasswordConfirm":"d07f69cf-9062-426a-96bc-dd9c7d60b648"}, requestBody) +18:11:14.465 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG com.networknt.schema.FormatValidator debug - validate( "d07f69cf-9062-426a-96bc-dd9c7d60b648", {"password":"001ca750-64e9-4c88-bd22-141feb31aefd","newPassword":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPasswordConfirm":"d07f69cf-9062-426a-96bc-dd9c7d60b648"}, requestBody.newPasswordConfirm) +18:11:14.465 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG com.networknt.schema.FormatValidator debug - validate( "001ca750-64e9-4c88-bd22-141feb31aefd", {"password":"001ca750-64e9-4c88-bd22-141feb31aefd","newPassword":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPasswordConfirm":"d07f69cf-9062-426a-96bc-dd9c7d60b648"}, requestBody.password) +18:11:14.465 [XNIO-1 task-1] rTPAJOb7RpGcj6AMMizkPA DEBUG com.networknt.schema.FormatValidator debug - validate( "d07f69cf-9062-426a-96bc-dd9c7d60b648", {"password":"001ca750-64e9-4c88-bd22-141feb31aefd","newPassword":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPasswordConfirm":"d07f69cf-9062-426a-96bc-dd9c7d60b648"}, requestBody.newPassword) +18:11:14.466 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f9b9b390-187a-4990-ae91-0573c7713fe2 +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4ca31d57 +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPassword":"b70f6664-20a4-49e6-a29f-489c506fb063","newPasswordConfirm":"b70f6664-20a4-49e6-a29f-489c506fb063"}, {"password":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPassword":"b70f6664-20a4-49e6-a29f-489c506fb063","newPasswordConfirm":"b70f6664-20a4-49e6-a29f-489c506fb063"}, requestBody) +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPassword":"b70f6664-20a4-49e6-a29f-489c506fb063","newPasswordConfirm":"b70f6664-20a4-49e6-a29f-489c506fb063"}, {"password":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPassword":"b70f6664-20a4-49e6-a29f-489c506fb063","newPasswordConfirm":"b70f6664-20a4-49e6-a29f-489c506fb063"}, requestBody) +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG com.networknt.schema.FormatValidator debug - validate( "b70f6664-20a4-49e6-a29f-489c506fb063", {"password":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPassword":"b70f6664-20a4-49e6-a29f-489c506fb063","newPasswordConfirm":"b70f6664-20a4-49e6-a29f-489c506fb063"}, requestBody.newPasswordConfirm) +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG com.networknt.schema.FormatValidator debug - validate( "d07f69cf-9062-426a-96bc-dd9c7d60b648", {"password":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPassword":"b70f6664-20a4-49e6-a29f-489c506fb063","newPasswordConfirm":"b70f6664-20a4-49e6-a29f-489c506fb063"}, requestBody.password) +18:11:14.498 [XNIO-1 task-1] 0_OCpdaUT-SCYOop0kBgpg DEBUG com.networknt.schema.FormatValidator debug - validate( "b70f6664-20a4-49e6-a29f-489c506fb063", {"password":"d07f69cf-9062-426a-96bc-dd9c7d60b648","newPassword":"b70f6664-20a4-49e6-a29f-489c506fb063","newPasswordConfirm":"b70f6664-20a4-49e6-a29f-489c506fb063"}, requestBody.newPassword) +18:11:14.507 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:61d3dbd5-00c2-4032-8d72-31eedefc9f78 +18:11:14.522 [XNIO-1 task-1] 1lqIPFFaTWGgTCEo9hIE9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.522 [XNIO-1 task-1] 1lqIPFFaTWGgTCEo9hIE9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.522 [XNIO-1 task-1] 1lqIPFFaTWGgTCEo9hIE9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.522 [XNIO-1 task-1] 1lqIPFFaTWGgTCEo9hIE9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.532 [XNIO-1 task-1] oRGyppmCSBihl3fE-H2jSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.533 [XNIO-1 task-1] oRGyppmCSBihl3fE-H2jSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.533 [XNIO-1 task-1] oRGyppmCSBihl3fE-H2jSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.548 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:503e8b0d-1b93-4728-ae96-97f2049efbff +18:11:14.551 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:11:14.554 [XNIO-1 task-1] CDS4y8a9TFWgbyZqqdk_bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.554 [XNIO-1 task-1] CDS4y8a9TFWgbyZqqdk_bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:11:14.554 [XNIO-1 task-1] CDS4y8a9TFWgbyZqqdk_bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:11:14.561 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.561 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.561 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:11:14.561 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f59935ee, base path is set to: null +18:11:14.561 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG com.networknt.schema.TypeValidator debug - validate( "f59935ee", "f59935ee", userId) + ... 14 more + +18:11:14.562 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"13528883-4de9-4428-83fd-534166850d11","newPassword":"b00aac1f-5d67-46a7-93ef-c95e79b569c8","newPasswordConfirm":"b00aac1f-5d67-46a7-93ef-c95e79b569c8"}, {"password":"13528883-4de9-4428-83fd-534166850d11","newPassword":"b00aac1f-5d67-46a7-93ef-c95e79b569c8","newPasswordConfirm":"b00aac1f-5d67-46a7-93ef-c95e79b569c8"}, requestBody) +18:11:14.562 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG com.networknt.schema.FormatValidator debug - validate( "b00aac1f-5d67-46a7-93ef-c95e79b569c8", {"password":"13528883-4de9-4428-83fd-534166850d11","newPassword":"b00aac1f-5d67-46a7-93ef-c95e79b569c8","newPasswordConfirm":"b00aac1f-5d67-46a7-93ef-c95e79b569c8"}, requestBody.newPasswordConfirm) +18:11:14.562 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG com.networknt.schema.FormatValidator debug - validate( "13528883-4de9-4428-83fd-534166850d11", {"password":"13528883-4de9-4428-83fd-534166850d11","newPassword":"b00aac1f-5d67-46a7-93ef-c95e79b569c8","newPasswordConfirm":"b00aac1f-5d67-46a7-93ef-c95e79b569c8"}, requestBody.password) +18:11:14.562 [XNIO-1 task-1] dbWMVSU_TJWXXdpKcJvJBw DEBUG com.networknt.schema.FormatValidator debug - validate( "b00aac1f-5d67-46a7-93ef-c95e79b569c8", {"password":"13528883-4de9-4428-83fd-534166850d11","newPassword":"b00aac1f-5d67-46a7-93ef-c95e79b569c8","newPasswordConfirm":"b00aac1f-5d67-46a7-93ef-c95e79b569c8"}, requestBody.newPassword) +18:11:14.581 [XNIO-1 task-1] wiV4BFk6RUmnzakl4yX-3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ca31d57 +18:11:14.581 [XNIO-1 task-1] wiV4BFk6RUmnzakl4yX-3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.581 [XNIO-1 task-1] wiV4BFk6RUmnzakl4yX-3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.581 [XNIO-1 task-1] wiV4BFk6RUmnzakl4yX-3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ca31d57 +18:11:14.593 [XNIO-1 task-1] z8Gr1pIoRxSpSxYDYQmbCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f59935ee, base path is set to: null +18:11:14.594 [XNIO-1 task-1] z8Gr1pIoRxSpSxYDYQmbCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.594 [XNIO-1 task-1] z8Gr1pIoRxSpSxYDYQmbCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.594 [XNIO-1 task-1] z8Gr1pIoRxSpSxYDYQmbCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f59935ee, base path is set to: null +18:11:14.595 [XNIO-1 task-1] z8Gr1pIoRxSpSxYDYQmbCA DEBUG com.networknt.schema.TypeValidator debug - validate( "f59935ee", "f59935ee", userId) +18:11:14.597 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8775e45a +18:11:14.601 [XNIO-1 task-1] iVfdWhROQeGhy3HgZkC_dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.601 [XNIO-1 task-1] iVfdWhROQeGhy3HgZkC_dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.601 [XNIO-1 task-1] iVfdWhROQeGhy3HgZkC_dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.601 [XNIO-1 task-1] iVfdWhROQeGhy3HgZkC_dA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.614 [XNIO-1 task-1] nczDeeEDTweuWMm6_tZr9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/364c0c63 +18:11:14.614 [XNIO-1 task-1] nczDeeEDTweuWMm6_tZr9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.614 [XNIO-1 task-1] nczDeeEDTweuWMm6_tZr9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.614 [XNIO-1 task-1] nczDeeEDTweuWMm6_tZr9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/364c0c63 +18:11:14.624 [XNIO-1 task-1] UPkhQ-uNRMqWnP25MEF_FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.624 [XNIO-1 task-1] UPkhQ-uNRMqWnP25MEF_FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.624 [XNIO-1 task-1] UPkhQ-uNRMqWnP25MEF_FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.624 [XNIO-1 task-1] UPkhQ-uNRMqWnP25MEF_FA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.626 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:032a256f +18:11:14.627 [XNIO-1 task-1] mLvJW4sYRiiMjP9nwOUzMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.627 [XNIO-1 task-1] mLvJW4sYRiiMjP9nwOUzMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.627 [XNIO-1 task-1] mLvJW4sYRiiMjP9nwOUzMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.627 [XNIO-1 task-1] mLvJW4sYRiiMjP9nwOUzMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.633 [XNIO-1 task-1] GxKc9KrXSCuma4FqV9RxvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.633 [XNIO-1 task-1] GxKc9KrXSCuma4FqV9RxvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.633 [XNIO-1 task-1] GxKc9KrXSCuma4FqV9RxvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.647 [XNIO-1 task-1] RPP3_TabTta8_yBXNJYqTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/debf5b62, base path is set to: null +18:11:14.647 [XNIO-1 task-1] RPP3_TabTta8_yBXNJYqTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.647 [XNIO-1 task-1] RPP3_TabTta8_yBXNJYqTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.647 [XNIO-1 task-1] RPP3_TabTta8_yBXNJYqTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/debf5b62, base path is set to: null +18:11:14.647 [XNIO-1 task-1] RPP3_TabTta8_yBXNJYqTg DEBUG com.networknt.schema.TypeValidator debug - validate( "debf5b62", "debf5b62", userId) +18:11:14.658 [XNIO-1 task-1] GkGnUILMQYqWuSHfok4mOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.658 [XNIO-1 task-1] GkGnUILMQYqWuSHfok4mOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.658 [XNIO-1 task-1] GkGnUILMQYqWuSHfok4mOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.658 [XNIO-1 task-1] GkGnUILMQYqWuSHfok4mOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.663 [XNIO-1 task-1] tCgBxFBJSgSnIjJOt3xjdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.663 [XNIO-1 task-1] tCgBxFBJSgSnIjJOt3xjdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.663 [XNIO-1 task-1] tCgBxFBJSgSnIjJOt3xjdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.663 [XNIO-1 task-1] tCgBxFBJSgSnIjJOt3xjdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.674 [XNIO-1 task-1] 1xWjJYc9RcOPXrAzzZVJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.674 [XNIO-1 task-1] 1xWjJYc9RcOPXrAzzZVJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.674 [XNIO-1 task-1] 1xWjJYc9RcOPXrAzzZVJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.674 [XNIO-1 task-1] 1xWjJYc9RcOPXrAzzZVJoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.681 [XNIO-1 task-1] qSM8DHnzTEKL7_mAUsul3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.681 [XNIO-1 task-1] qSM8DHnzTEKL7_mAUsul3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.681 [XNIO-1 task-1] qSM8DHnzTEKL7_mAUsul3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.682 [XNIO-1 task-1] qSM8DHnzTEKL7_mAUsul3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.686 [XNIO-1 task-1] MiwearcYRciFxKOCxJxYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.687 [XNIO-1 task-1] MiwearcYRciFxKOCxJxYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.687 [XNIO-1 task-1] MiwearcYRciFxKOCxJxYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.701 [XNIO-1 task-1] fUCxcz-7Rei76NLTPNZfvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ac86b4d +18:11:14.701 [XNIO-1 task-1] fUCxcz-7Rei76NLTPNZfvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.701 [XNIO-1 task-1] fUCxcz-7Rei76NLTPNZfvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.701 [XNIO-1 task-1] fUCxcz-7Rei76NLTPNZfvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ac86b4d +18:11:14.705 [XNIO-1 task-1] OFuKZtDQRgiWez_RX1x7MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.706 [XNIO-1 task-1] OFuKZtDQRgiWez_RX1x7MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.706 [XNIO-1 task-1] OFuKZtDQRgiWez_RX1x7MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.712 [XNIO-1 task-1] Z_s3ZragTFmtLEpdnZRKrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ac86b4d, base path is set to: null +18:11:14.713 [XNIO-1 task-1] Z_s3ZragTFmtLEpdnZRKrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.713 [XNIO-1 task-1] Z_s3ZragTFmtLEpdnZRKrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.713 [XNIO-1 task-1] Z_s3ZragTFmtLEpdnZRKrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ac86b4d, base path is set to: null +18:11:14.713 [XNIO-1 task-1] Z_s3ZragTFmtLEpdnZRKrg DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac86b4d", "7ac86b4d", userId) +18:11:14.720 [XNIO-1 task-1] heWOxNGOT26SczATQ2RHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ac86b4d +18:11:14.720 [XNIO-1 task-1] heWOxNGOT26SczATQ2RHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.720 [XNIO-1 task-1] heWOxNGOT26SczATQ2RHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.720 [XNIO-1 task-1] heWOxNGOT26SczATQ2RHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ac86b4d +18:11:14.728 [XNIO-1 task-1] WeWm7lCGQrS6g1Qewb_KkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.728 [XNIO-1 task-1] WeWm7lCGQrS6g1Qewb_KkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.728 [XNIO-1 task-1] WeWm7lCGQrS6g1Qewb_KkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.746 [XNIO-1 task-1] 0skzO8zDRfSlPgz7_O36DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.746 [XNIO-1 task-1] 0skzO8zDRfSlPgz7_O36DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.746 [XNIO-1 task-1] 0skzO8zDRfSlPgz7_O36DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.747 [XNIO-1 task-1] 0skzO8zDRfSlPgz7_O36DA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.752 [XNIO-1 task-1] Rg4KSC3cSRW9hbHzQHWOUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.752 [XNIO-1 task-1] Rg4KSC3cSRW9hbHzQHWOUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.752 [XNIO-1 task-1] Rg4KSC3cSRW9hbHzQHWOUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.764 [XNIO-1 task-1] AoZn_uwvTcSFR0ubBHBxOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.765 [XNIO-1 task-1] AoZn_uwvTcSFR0ubBHBxOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.765 [XNIO-1 task-1] AoZn_uwvTcSFR0ubBHBxOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.776 [XNIO-1 task-1] q9WqozMNRH2dklYwRvObvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26dcb5c3, base path is set to: null +18:11:14.776 [XNIO-1 task-1] q9WqozMNRH2dklYwRvObvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.776 [XNIO-1 task-1] q9WqozMNRH2dklYwRvObvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.776 [XNIO-1 task-1] q9WqozMNRH2dklYwRvObvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26dcb5c3, base path is set to: null +18:11:14.777 [XNIO-1 task-1] q9WqozMNRH2dklYwRvObvA DEBUG com.networknt.schema.TypeValidator debug - validate( "26dcb5c3", "26dcb5c3", userId) +18:11:14.785 [XNIO-1 task-1] s-tjKCL8QY2kq7ITXC6dJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.785 [XNIO-1 task-1] s-tjKCL8QY2kq7ITXC6dJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.785 [XNIO-1 task-1] s-tjKCL8QY2kq7ITXC6dJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.786 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:08204f30-b522-4982-ac16-559e41d03168 +18:11:14.801 [XNIO-1 task-1] KbmtsoeORFmi8a1rx_wx8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1d2f9e1, base path is set to: null +18:11:14.801 [XNIO-1 task-1] KbmtsoeORFmi8a1rx_wx8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.801 [XNIO-1 task-1] KbmtsoeORFmi8a1rx_wx8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.801 [XNIO-1 task-1] KbmtsoeORFmi8a1rx_wx8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1d2f9e1, base path is set to: null +18:11:14.801 [XNIO-1 task-1] KbmtsoeORFmi8a1rx_wx8g DEBUG com.networknt.schema.TypeValidator debug - validate( "b1d2f9e1", "b1d2f9e1", userId) +18:11:14.810 [XNIO-1 task-1] 3eMR_9r8SXGXoGBSDp-VEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.810 [XNIO-1 task-1] 3eMR_9r8SXGXoGBSDp-VEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.810 [XNIO-1 task-1] 3eMR_9r8SXGXoGBSDp-VEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.810 [XNIO-1 task-1] 3eMR_9r8SXGXoGBSDp-VEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.820 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/26dcb5c3 +18:11:14.820 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.820 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.820 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:11:14.820 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/26dcb5c3 +18:11:14.820 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8e036e63-3042-4b2b-81e6-96a1d43ddedd","newPassword":"9319cfc7-3e45-4020-9207-01d715a16089","newPasswordConfirm":"9319cfc7-3e45-4020-9207-01d715a16089"}, {"password":"8e036e63-3042-4b2b-81e6-96a1d43ddedd","newPassword":"9319cfc7-3e45-4020-9207-01d715a16089","newPasswordConfirm":"9319cfc7-3e45-4020-9207-01d715a16089"}, requestBody) +18:11:14.820 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8e036e63-3042-4b2b-81e6-96a1d43ddedd","newPassword":"9319cfc7-3e45-4020-9207-01d715a16089","newPasswordConfirm":"9319cfc7-3e45-4020-9207-01d715a16089"}, {"password":"8e036e63-3042-4b2b-81e6-96a1d43ddedd","newPassword":"9319cfc7-3e45-4020-9207-01d715a16089","newPasswordConfirm":"9319cfc7-3e45-4020-9207-01d715a16089"}, requestBody) +18:11:14.821 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG com.networknt.schema.FormatValidator debug - validate( "9319cfc7-3e45-4020-9207-01d715a16089", {"password":"8e036e63-3042-4b2b-81e6-96a1d43ddedd","newPassword":"9319cfc7-3e45-4020-9207-01d715a16089","newPasswordConfirm":"9319cfc7-3e45-4020-9207-01d715a16089"}, requestBody.newPasswordConfirm) +18:11:14.821 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG com.networknt.schema.FormatValidator debug - validate( "8e036e63-3042-4b2b-81e6-96a1d43ddedd", {"password":"8e036e63-3042-4b2b-81e6-96a1d43ddedd","newPassword":"9319cfc7-3e45-4020-9207-01d715a16089","newPasswordConfirm":"9319cfc7-3e45-4020-9207-01d715a16089"}, requestBody.password) +18:11:14.821 [XNIO-1 task-1] nvakKrHER7SIj7OgiyRJ0g DEBUG com.networknt.schema.FormatValidator debug - validate( "9319cfc7-3e45-4020-9207-01d715a16089", {"password":"8e036e63-3042-4b2b-81e6-96a1d43ddedd","newPassword":"9319cfc7-3e45-4020-9207-01d715a16089","newPasswordConfirm":"9319cfc7-3e45-4020-9207-01d715a16089"}, requestBody.newPassword) +18:11:14.838 [XNIO-1 task-1] Yj5VLQthQZaaBG55ktn0Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1d2f9e1, base path is set to: null +18:11:14.839 [XNIO-1 task-1] Yj5VLQthQZaaBG55ktn0Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.839 [XNIO-1 task-1] Yj5VLQthQZaaBG55ktn0Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.839 [XNIO-1 task-1] Yj5VLQthQZaaBG55ktn0Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1d2f9e1, base path is set to: null +18:11:14.839 [XNIO-1 task-1] Yj5VLQthQZaaBG55ktn0Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "b1d2f9e1", "b1d2f9e1", userId) +18:11:14.848 [XNIO-1 task-1] xPz3CCTRRmOw6S9NywaAtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26dcb5c3 +18:11:14.848 [XNIO-1 task-1] xPz3CCTRRmOw6S9NywaAtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.848 [XNIO-1 task-1] xPz3CCTRRmOw6S9NywaAtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:11:14.849 [XNIO-1 task-1] xPz3CCTRRmOw6S9NywaAtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26dcb5c3 +18:11:14.866 [XNIO-1 task-1] bUUzTwTyQEqjY0kVcmhmYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.866 [XNIO-1 task-1] bUUzTwTyQEqjY0kVcmhmYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.866 [XNIO-1 task-1] bUUzTwTyQEqjY0kVcmhmYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.866 [XNIO-1 task-1] bUUzTwTyQEqjY0kVcmhmYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.874 [XNIO-1 task-1] NenZGOvcRYWU6BJictKQMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.874 [XNIO-1 task-1] NenZGOvcRYWU6BJictKQMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.874 [XNIO-1 task-1] NenZGOvcRYWU6BJictKQMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.890 [XNIO-1 task-1] Q5qF2NblRoC7-Ad5MlMh_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0000fe9a, base path is set to: null +18:11:14.891 [XNIO-1 task-1] Q5qF2NblRoC7-Ad5MlMh_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.891 [XNIO-1 task-1] Q5qF2NblRoC7-Ad5MlMh_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.891 [XNIO-1 task-1] Q5qF2NblRoC7-Ad5MlMh_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0000fe9a, base path is set to: null +18:11:14.891 [XNIO-1 task-1] Q5qF2NblRoC7-Ad5MlMh_A DEBUG com.networknt.schema.TypeValidator debug - validate( "0000fe9a", "0000fe9a", userId) +18:11:14.897 [XNIO-1 task-1] -qRxQOY4RQaREEcgnp3NFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.897 [XNIO-1 task-1] -qRxQOY4RQaREEcgnp3NFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.897 [XNIO-1 task-1] -qRxQOY4RQaREEcgnp3NFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.897 [XNIO-1 task-1] -qRxQOY4RQaREEcgnp3NFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.905 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:55c3d59c-37ce-4689-a2e5-8d92483736ff +18:11:14.906 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:55c3d59c-37ce-4689-a2e5-8d92483736ff +18:11:14.906 [XNIO-1 task-1] g5f51cM4SciSCeUEqN2aHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.906 [XNIO-1 task-1] g5f51cM4SciSCeUEqN2aHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.923 [XNIO-1 task-1] QZCreCoSTTKoVsb7HcpvZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d87ecf2e, base path is set to: null +18:11:14.924 [XNIO-1 task-1] QZCreCoSTTKoVsb7HcpvZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.924 [XNIO-1 task-1] QZCreCoSTTKoVsb7HcpvZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:11:14.924 [XNIO-1 task-1] QZCreCoSTTKoVsb7HcpvZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d87ecf2e, base path is set to: null +18:11:14.924 [XNIO-1 task-1] QZCreCoSTTKoVsb7HcpvZw DEBUG com.networknt.schema.TypeValidator debug - validate( "d87ecf2e", "d87ecf2e", userId) +18:11:14.930 [XNIO-1 task-1] s6uMeFZsRbqLx0_KRl5S3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.931 [XNIO-1 task-1] s6uMeFZsRbqLx0_KRl5S3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.931 [XNIO-1 task-1] s6uMeFZsRbqLx0_KRl5S3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.961 [XNIO-1 task-1] xiiK3PE9RCyPLVXTveCxQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.962 [XNIO-1 task-1] xiiK3PE9RCyPLVXTveCxQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.962 [XNIO-1 task-1] xiiK3PE9RCyPLVXTveCxQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:11:14.962 [XNIO-1 task-1] xiiK3PE9RCyPLVXTveCxQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:11:14.963 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:095a0cb5-2c79-4813-a7b7-22ceaf3f6831 +18:11:14.966 [XNIO-1 task-1] OeRwQHhOQG2AXb3W0vND9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.967 [XNIO-1 task-1] OeRwQHhOQG2AXb3W0vND9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.967 [XNIO-1 task-1] OeRwQHhOQG2AXb3W0vND9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.967 [XNIO-1 task-1] OeRwQHhOQG2AXb3W0vND9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:11:14.975 [XNIO-1 task-1] VzXqb3-STauNP9dCZvs43g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.975 [XNIO-1 task-1] VzXqb3-STauNP9dCZvs43g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:11:14.975 [XNIO-1 task-1] VzXqb3-STauNP9dCZvs43g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.983 [XNIO-1 task-1] q8xhfJCtThS0-5yG5Vl_pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:11:14.983 [XNIO-1 task-1] q8xhfJCtThS0-5yG5Vl_pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user diff --git a/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..8e8590d --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4602 @@ + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:37.936 [XNIO-1 task-2] ime2BryETumeh1htaIv0XQ INFO com.networknt.config.Config getConfigStream - Unable to load config from externalized folder for status.yml in /config +09:00:37.936 [XNIO-1 task-2] ime2BryETumeh1htaIv0XQ INFO com.networknt.config.Config getConfigStream - Config loaded from default folder for status.yml +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:37.958 [XNIO-1 task-2] ime2BryETumeh1htaIv0XQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:37.963 [XNIO-1 task-2] iB9eQY8TRzeZCWPKmcOXVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:37.964 [XNIO-1 task-2] iB9eQY8TRzeZCWPKmcOXVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:37.965 [XNIO-1 task-2] iB9eQY8TRzeZCWPKmcOXVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.002 [XNIO-1 task-2] GvGyDWkfSNiKwocXYPSqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.003 [XNIO-1 task-2] GvGyDWkfSNiKwocXYPSqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.003 [XNIO-1 task-2] GvGyDWkfSNiKwocXYPSqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.007 [XNIO-1 task-2] GvGyDWkfSNiKwocXYPSqFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:38.021 [XNIO-1 task-2] LdhRD7v0Qouqjm5tg5huHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.021 [XNIO-1 task-2] LdhRD7v0Qouqjm5tg5huHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.023 [XNIO-1 task-2] LdhRD7v0Qouqjm5tg5huHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.073 [hz._hzInstance_1_dev.cached.thread-13] INFO com.zaxxer.hikari.HikariDataSource getConnection - HikariPool-1 - Start completed. +09:00:38.201 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool call - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@41f0547e +09:00:38.534 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.535 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.535 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.536 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.536 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.536 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.537 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.537 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:38.537 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:38.537 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.537 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.538 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d0be2310-a1a2-4cbd-91a5-4b0ae2ef","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:38.538 [XNIO-1 task-2] hYZPv6-9TzWfkxWrHxVzVw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:38.542 [XNIO-1 task-2] nHRovMjnQv-DBHdjwGN3pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.542 [XNIO-1 task-2] nHRovMjnQv-DBHdjwGN3pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.542 [XNIO-1 task-2] nHRovMjnQv-DBHdjwGN3pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.576 [XNIO-1 task-2] -tiPui-eRRiwgd_waBEGcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.576 [XNIO-1 task-2] -tiPui-eRRiwgd_waBEGcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.577 [XNIO-1 task-2] -tiPui-eRRiwgd_waBEGcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.577 [XNIO-1 task-2] -tiPui-eRRiwgd_waBEGcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:38.592 [XNIO-1 task-2] pIFP79okQjyJe3bfq2TExg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:38.592 [XNIO-1 task-2] pIFP79okQjyJe3bfq2TExg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.592 [XNIO-1 task-2] pIFP79okQjyJe3bfq2TExg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:38.592 [XNIO-1 task-2] pIFP79okQjyJe3bfq2TExg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:38.602 [XNIO-1 task-2] LlmPvSHjTKOFisNhVG9hFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.602 [XNIO-1 task-2] LlmPvSHjTKOFisNhVG9hFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.602 [XNIO-1 task-2] LlmPvSHjTKOFisNhVG9hFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.603 [XNIO-1 task-2] LlmPvSHjTKOFisNhVG9hFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.620 [XNIO-1 task-2] V3f9F571SRy8UhPv9kfyDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.620 [XNIO-1 task-2] V3f9F571SRy8UhPv9kfyDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.621 [XNIO-1 task-2] V3f9F571SRy8UhPv9kfyDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.621 [XNIO-1 task-2] V3f9F571SRy8UhPv9kfyDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.663 [XNIO-1 task-2] kDrxzl_vRQerOv2u4_uG9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.663 [XNIO-1 task-2] kDrxzl_vRQerOv2u4_uG9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.663 [XNIO-1 task-2] kDrxzl_vRQerOv2u4_uG9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.664 [XNIO-1 task-2] kDrxzl_vRQerOv2u4_uG9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.685 [XNIO-1 task-2] FRK2NYFBQYqpjG-HIDXuJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.685 [XNIO-1 task-2] FRK2NYFBQYqpjG-HIDXuJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.686 [XNIO-1 task-2] FRK2NYFBQYqpjG-HIDXuJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.710 [XNIO-1 task-2] kyPzFd3SRj-4T7A19nDKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.710 [XNIO-1 task-2] kyPzFd3SRj-4T7A19nDKSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.710 [XNIO-1 task-2] kyPzFd3SRj-4T7A19nDKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.711 [XNIO-1 task-2] kyPzFd3SRj-4T7A19nDKSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.731 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.732 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.732 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.733 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.733 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.733 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.733 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.734 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:38.734 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:38.734 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.734 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.734 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"26d6e583-d500-4f60-aca8-9db8b4b6","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:38.735 [XNIO-1 task-2] znQOzZdLTwO0BOvARw9-xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:38.738 [XNIO-1 task-2] 1s7fjr3LQ3SO9BiuruNdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.738 [XNIO-1 task-2] 1s7fjr3LQ3SO9BiuruNdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.739 [XNIO-1 task-2] 1s7fjr3LQ3SO9BiuruNdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.777 [XNIO-1 task-2] R7BiI1IZTKeFKRJs5yQtQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/01531c8c-0f3a-4b77-ab1f-8fd480611f57 +09:00:38.777 [XNIO-1 task-2] R7BiI1IZTKeFKRJs5yQtQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.778 [XNIO-1 task-2] R7BiI1IZTKeFKRJs5yQtQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:38.778 [XNIO-1 task-2] R7BiI1IZTKeFKRJs5yQtQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/01531c8c-0f3a-4b77-ab1f-8fd480611f57 +09:00:38.790 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.791 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.791 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.792 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.792 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.792 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.792 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.793 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:38.793 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:38.793 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.793 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.793 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"13c54944-8eea-485a-861f-fafdbe1b","clientDesc":"c83ef5d2-ea5b-456f-bed4-6480e93a7bec","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:38.794 [XNIO-1 task-2] PZz2may8QLqwKqeD4DzqJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:38.798 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.798 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.798 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.800 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.800 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:38.800 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "304479ee-d988-41b9-bc9a-e35b302c2d9d", {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:38.800 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:38.800 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:38.800 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "649d4d3d-87e0-4824-9cb7-ccbb8f08", {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:38.800 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:38.801 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"649d4d3d-87e0-4824-9cb7-ccbb8f08","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:38.801 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:38.801 [XNIO-1 task-2] iLwrSt4XSWezwZoGYPDUBQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:38.804 [XNIO-1 task-2] IjT-QZavRAO2CpYrRNuOvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.804 [XNIO-1 task-2] IjT-QZavRAO2CpYrRNuOvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.804 [XNIO-1 task-2] IjT-QZavRAO2CpYrRNuOvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.805 [XNIO-1 task-2] IjT-QZavRAO2CpYrRNuOvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.819 [XNIO-1 task-2] W-ah-2hBQWSTdOYZa8o9yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.819 [XNIO-1 task-2] W-ah-2hBQWSTdOYZa8o9yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.820 [XNIO-1 task-2] W-ah-2hBQWSTdOYZa8o9yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.826 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d4e73048-979b-44b3-8dd2-c8270c1be6ec +09:00:38.892 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d4e73048-979b-44b3-8dd2-c8270c1be6ec +09:00:38.906 [XNIO-1 task-2] GlhzymmCTtS0uCWEB2iZqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51c0597b-4d48-4f07-a4b4-232c1a613217 +09:00:38.906 [XNIO-1 task-2] GlhzymmCTtS0uCWEB2iZqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:38.906 [XNIO-1 task-2] GlhzymmCTtS0uCWEB2iZqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:38.906 [XNIO-1 task-2] GlhzymmCTtS0uCWEB2iZqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51c0597b-4d48-4f07-a4b4-232c1a613217 +09:00:38.935 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c6ab810a +09:00:38.938 [XNIO-1 task-2] grXv3rsKQqC5VEpPaSvYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:38.938 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c6ab810a +09:00:38.938 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c6ab810a +09:00:38.938 [XNIO-1 task-2] grXv3rsKQqC5VEpPaSvYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:38.938 [XNIO-1 task-2] grXv3rsKQqC5VEpPaSvYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:38.941 [XNIO-1 task-2] u4Pame7DT5iiar6HZGAVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.942 [XNIO-1 task-2] u4Pame7DT5iiar6HZGAVVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:38.942 [XNIO-1 task-2] u4Pame7DT5iiar6HZGAVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:38.943 [XNIO-1 task-2] u4Pame7DT5iiar6HZGAVVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:39.020 [XNIO-1 task-2] 9thzaLlbQt2corWmrSNyAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d4e73048-979b-44b3-8dd2-c8270c1be6ec, base path is set to: null +09:00:39.020 [XNIO-1 task-2] 9thzaLlbQt2corWmrSNyAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.020 [XNIO-1 task-2] 9thzaLlbQt2corWmrSNyAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:39.020 [XNIO-1 task-2] 9thzaLlbQt2corWmrSNyAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d4e73048-979b-44b3-8dd2-c8270c1be6ec, base path is set to: null +09:00:39.021 [XNIO-1 task-2] 9thzaLlbQt2corWmrSNyAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d4e73048-979b-44b3-8dd2-c8270c1be6ec", "d4e73048-979b-44b3-8dd2-c8270c1be6ec", clientId) +09:00:39.032 [XNIO-1 task-2] jZ-XtG5YRJ-If3qqwuA_lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.032 [XNIO-1 task-2] jZ-XtG5YRJ-If3qqwuA_lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.032 [XNIO-1 task-2] jZ-XtG5YRJ-If3qqwuA_lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.133 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.133 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.133 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.134 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.134 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:39.134 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4", {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:39.135 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:39.135 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:39.135 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8a0cc6fe-de07-428b-aaec-1a7b7633", {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:39.135 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.135 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8a0cc6fe-de07-428b-aaec-1a7b7633","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:39.135 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:39.136 [XNIO-1 task-2] V1E5TrPwR6-te-yE_ko6qQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:39.137 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c6ab810a +09:00:39.139 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.139 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.140 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.140 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.141 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.141 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.141 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.141 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:39.141 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:39.142 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.143 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.143 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0eef4158-a36f-4e8a-ac61-2776c5df","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:39.146 [XNIO-1 task-2] EMp-ZwXET9mI-desX5h96A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:39.150 [XNIO-1 task-2] y7xslv_pSFCp0SS8oHvEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4e73048-979b-44b3-8dd2-c8270c1be6ec +09:00:39.150 [XNIO-1 task-2] y7xslv_pSFCp0SS8oHvEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.150 [XNIO-1 task-2] y7xslv_pSFCp0SS8oHvEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.150 [XNIO-1 task-2] y7xslv_pSFCp0SS8oHvEDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4e73048-979b-44b3-8dd2-c8270c1be6ec +09:00:39.151 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d4e73048-979b-44b3-8dd2-c8270c1be6ec +09:00:39.167 [XNIO-1 task-2] iCjpbrxZTmC4ZKglf8H62Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.168 [XNIO-1 task-2] iCjpbrxZTmC4ZKglf8H62Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.168 [XNIO-1 task-2] iCjpbrxZTmC4ZKglf8H62Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.168 [XNIO-1 task-2] iCjpbrxZTmC4ZKglf8H62Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:39.180 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ac6823b7 +09:00:39.212 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.213 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.214 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.215 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.215 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.215 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.215 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.215 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:39.216 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:39.216 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.216 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.216 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8c799f64-b79e-4a09-9098-9f71e7bd","clientDesc":"a8382d63-bead-4bc3-b7ce-233b29241dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:39.218 [XNIO-1 task-2] ywSvWZW4Q9-08Zx36mErHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:39.222 [XNIO-1 task-2] XfI46db3S2iEXKwXzgs4-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.222 [XNIO-1 task-2] XfI46db3S2iEXKwXzgs4-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.222 [XNIO-1 task-2] XfI46db3S2iEXKwXzgs4-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.223 [XNIO-1 task-2] XfI46db3S2iEXKwXzgs4-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:39.245 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c6ab810a +09:00:39.257 [XNIO-1 task-2] ZRoooBPkR_COIWifN_ozsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:39.257 [XNIO-1 task-2] ZRoooBPkR_COIWifN_ozsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.257 [XNIO-1 task-2] ZRoooBPkR_COIWifN_ozsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.258 [XNIO-1 task-2] ZRoooBPkR_COIWifN_ozsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:39.263 [XNIO-1 task-2] pH82GT8NQA-jhh5sy4JMdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.263 [XNIO-1 task-2] pH82GT8NQA-jhh5sy4JMdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.264 [XNIO-1 task-2] pH82GT8NQA-jhh5sy4JMdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.287 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cdf608b3 +09:00:39.290 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cdf608b3 +09:00:39.303 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ac6823b7 +09:00:39.318 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.318 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.318 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.319 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.319 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:39.319 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d0f4bfb-e2a8-44f1-9129-8c78aff62640", {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:39.320 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:39.320 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:39.320 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5d8c1d2b-d927-441e-99de-5810184e", {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:39.320 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.320 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5d8c1d2b-d927-441e-99de-5810184e","clientDesc":"1d0f4bfb-e2a8-44f1-9129-8c78aff62640","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:39.320 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:39.320 [XNIO-1 task-2] ojTxvrypT5OU713Yk_NhbQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:39.324 [XNIO-1 task-2] 2pTVO0nGTYGGWzALH_diAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b, base path is set to: null +09:00:39.324 [XNIO-1 task-2] 2pTVO0nGTYGGWzALH_diAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.325 [XNIO-1 task-2] 2pTVO0nGTYGGWzALH_diAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:39.325 [XNIO-1 task-2] 2pTVO0nGTYGGWzALH_diAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b, base path is set to: null +09:00:39.325 [XNIO-1 task-2] 2pTVO0nGTYGGWzALH_diAA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7f67d0f-80ee-4807-8748-94db46593e7b", "f7f67d0f-80ee-4807-8748-94db46593e7b", clientId) +09:00:39.330 [XNIO-1 task-2] KvsM7U2eSaa6HSJFzkp2Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:39.330 [XNIO-1 task-2] KvsM7U2eSaa6HSJFzkp2Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.330 [XNIO-1 task-2] KvsM7U2eSaa6HSJFzkp2Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.330 [XNIO-1 task-2] KvsM7U2eSaa6HSJFzkp2Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be +09:00:39.335 [XNIO-1 task-2] 3gsRnrpZTeCivJrqRPuk2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.336 [XNIO-1 task-2] 3gsRnrpZTeCivJrqRPuk2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.336 [XNIO-1 task-2] 3gsRnrpZTeCivJrqRPuk2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.347 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ac6823b7 +09:00:39.400 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ac6823b7 +09:00:39.400 [XNIO-1 task-2] AVKBFh9rQZu3IgVNLNFWeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b, base path is set to: null +09:00:39.400 [XNIO-1 task-2] AVKBFh9rQZu3IgVNLNFWeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.400 [XNIO-1 task-2] AVKBFh9rQZu3IgVNLNFWeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:39.400 [XNIO-1 task-2] AVKBFh9rQZu3IgVNLNFWeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b, base path is set to: null +09:00:39.401 [XNIO-1 task-2] AVKBFh9rQZu3IgVNLNFWeA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7f67d0f-80ee-4807-8748-94db46593e7b", "f7f67d0f-80ee-4807-8748-94db46593e7b", clientId) +09:00:39.406 [XNIO-1 task-2] X-wCmxBhRWCzMtZOeTu8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.406 [XNIO-1 task-2] X-wCmxBhRWCzMtZOeTu8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.406 [XNIO-1 task-2] X-wCmxBhRWCzMtZOeTu8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.407 [XNIO-1 task-2] X-wCmxBhRWCzMtZOeTu8tA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:39.417 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ac6823b7 +09:00:39.431 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ac6823b7 +09:00:39.436 [XNIO-1 task-2] QEWaDLcuRgC6gaIDcE40og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.436 [XNIO-1 task-2] QEWaDLcuRgC6gaIDcE40og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.436 [XNIO-1 task-2] QEWaDLcuRgC6gaIDcE40og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.437 [XNIO-1 task-2] QEWaDLcuRgC6gaIDcE40og DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:39.449 [XNIO-1 task-2] UA6YGHRFROu67O2J02sOyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf4263bc-a075-4e7d-a1c8-514d50220065 +09:00:39.449 [XNIO-1 task-2] UA6YGHRFROu67O2J02sOyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.449 [XNIO-1 task-2] UA6YGHRFROu67O2J02sOyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.450 [XNIO-1 task-2] UA6YGHRFROu67O2J02sOyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf4263bc-a075-4e7d-a1c8-514d50220065 +09:00:39.453 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ac6823b7 +09:00:39.461 [XNIO-1 task-2] BjmVAOQZRYK3H91C4F9ohw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a90473c-65b3-499f-ac91-155b63ca1d63 +09:00:39.461 [XNIO-1 task-2] BjmVAOQZRYK3H91C4F9ohw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.461 [XNIO-1 task-2] BjmVAOQZRYK3H91C4F9ohw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.462 [XNIO-1 task-2] BjmVAOQZRYK3H91C4F9ohw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a90473c-65b3-499f-ac91-155b63ca1d63 +09:00:39.466 [XNIO-1 task-2] qCl9XTL0Rj6SmAD8xVofCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.466 [XNIO-1 task-2] qCl9XTL0Rj6SmAD8xVofCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.466 [XNIO-1 task-2] qCl9XTL0Rj6SmAD8xVofCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.467 [XNIO-1 task-2] qCl9XTL0Rj6SmAD8xVofCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:39.485 [XNIO-1 task-2] DVYk0oRyS66PuolkEL9sGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b, base path is set to: null +09:00:39.486 [XNIO-1 task-2] DVYk0oRyS66PuolkEL9sGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.486 [XNIO-1 task-2] DVYk0oRyS66PuolkEL9sGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:39.486 [XNIO-1 task-2] DVYk0oRyS66PuolkEL9sGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b, base path is set to: null +09:00:39.486 [XNIO-1 task-2] DVYk0oRyS66PuolkEL9sGA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7f67d0f-80ee-4807-8748-94db46593e7b", "f7f67d0f-80ee-4807-8748-94db46593e7b", clientId) +09:00:39.491 [XNIO-1 task-2] O_lZs39zS1GSpTKZRq59VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.491 [XNIO-1 task-2] O_lZs39zS1GSpTKZRq59VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.491 [XNIO-1 task-2] O_lZs39zS1GSpTKZRq59VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.535 [XNIO-1 task-2] AMuP8xlcQNG7ea0Q0JPCqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b +09:00:39.536 [XNIO-1 task-2] AMuP8xlcQNG7ea0Q0JPCqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.536 [XNIO-1 task-2] AMuP8xlcQNG7ea0Q0JPCqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.536 [XNIO-1 task-2] AMuP8xlcQNG7ea0Q0JPCqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b +09:00:39.541 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.541 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.542 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.542 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.542 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.542 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.543 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.543 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:39.543 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:39.543 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.543 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.543 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f6de080-81b3-4786-b766-e168bd62","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:39.544 [XNIO-1 task-2] BBYYxHbMQNW6vWVuBx8EtQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:39.548 [XNIO-1 task-2] 4LXWAjE7SfqQxM6x_cTX5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.548 [XNIO-1 task-2] 4LXWAjE7SfqQxM6x_cTX5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.548 [XNIO-1 task-2] 4LXWAjE7SfqQxM6x_cTX5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.570 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c6ab810a +09:00:39.579 [XNIO-1 task-2] tf4VETbUTuy1K5sEjSMDOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b +09:00:39.579 [XNIO-1 task-2] tf4VETbUTuy1K5sEjSMDOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.580 [XNIO-1 task-2] tf4VETbUTuy1K5sEjSMDOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.580 [XNIO-1 task-2] tf4VETbUTuy1K5sEjSMDOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b +09:00:39.583 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.583 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.584 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.586 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffed7127-acf4-4171-8d87-a56d6c6b","clientDesc":"304479ee-d988-41b9-bc9a-e35b302c2d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:39.587 [XNIO-1 task-2] L1FdC-rJTPyDPIGuGN1jsw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:39.591 [XNIO-1 task-2] eMAMdGdJTVuekWSobnDkaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b +09:00:39.592 [XNIO-1 task-2] eMAMdGdJTVuekWSobnDkaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.592 [XNIO-1 task-2] eMAMdGdJTVuekWSobnDkaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:39.592 [XNIO-1 task-2] eMAMdGdJTVuekWSobnDkaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7f67d0f-80ee-4807-8748-94db46593e7b +09:00:39.604 [XNIO-1 task-2] xsf4uQOIRkSWkLMI-KfcVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be, base path is set to: null +09:00:39.605 [XNIO-1 task-2] xsf4uQOIRkSWkLMI-KfcVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.605 [XNIO-1 task-2] xsf4uQOIRkSWkLMI-KfcVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:39.605 [XNIO-1 task-2] xsf4uQOIRkSWkLMI-KfcVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4539a21-a55c-4302-97b1-26d7699818be, base path is set to: null +09:00:39.605 [XNIO-1 task-2] xsf4uQOIRkSWkLMI-KfcVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c4539a21-a55c-4302-97b1-26d7699818be", "c4539a21-a55c-4302-97b1-26d7699818be", clientId) +09:00:39.658 [XNIO-1 task-2] gCxvZbQ9QNqSxMLpWZMfNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.658 [XNIO-1 task-2] gCxvZbQ9QNqSxMLpWZMfNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.659 [XNIO-1 task-2] gCxvZbQ9QNqSxMLpWZMfNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.790 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f73cff0f +09:00:39.921 [XNIO-1 task-2] ns523T_wSZG7Z-aj5c_9fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.921 [XNIO-1 task-2] ns523T_wSZG7Z-aj5c_9fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.922 [XNIO-1 task-2] ns523T_wSZG7Z-aj5c_9fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:39.931 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c6ab810a +09:00:39.973 [XNIO-1 task-2] BaIRZ09AQNu4797U-0tPQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0bfd1837-92e5-4b5c-947e-1489a971be04, base path is set to: null +09:00:39.973 [XNIO-1 task-2] BaIRZ09AQNu4797U-0tPQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:39.973 [XNIO-1 task-2] BaIRZ09AQNu4797U-0tPQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:39.973 [XNIO-1 task-2] BaIRZ09AQNu4797U-0tPQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0bfd1837-92e5-4b5c-947e-1489a971be04, base path is set to: null +09:00:39.974 [XNIO-1 task-2] BaIRZ09AQNu4797U-0tPQA DEBUG com.networknt.schema.TypeValidator debug - validate( "0bfd1837-92e5-4b5c-947e-1489a971be04", "0bfd1837-92e5-4b5c-947e-1489a971be04", clientId) +09:00:39.987 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.988 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.988 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:39.989 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.989 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:39.989 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "d9197284-4711-4cf2-a871-2a6e493b1400", {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:39.989 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:39.989 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:39.989 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "834c7530-7979-42c8-9162-8b162edc", {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:39.989 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:40.022 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"834c7530-7979-42c8-9162-8b162edc","clientDesc":"d9197284-4711-4cf2-a871-2a6e493b1400","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.023 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:40.023 [XNIO-1 task-2] RkCsegVpScC3p2Fay28Q8g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:40.027 [XNIO-1 task-2] lnJsLDSyTm2gXyStXIbETQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0fe2cb5-3b01-47bc-afea-b88c76ff2e05, base path is set to: null +09:00:40.030 [XNIO-1 task-2] lnJsLDSyTm2gXyStXIbETQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.030 [XNIO-1 task-2] lnJsLDSyTm2gXyStXIbETQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:40.030 [XNIO-1 task-2] lnJsLDSyTm2gXyStXIbETQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0fe2cb5-3b01-47bc-afea-b88c76ff2e05, base path is set to: null +09:00:40.031 [XNIO-1 task-2] lnJsLDSyTm2gXyStXIbETQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e0fe2cb5-3b01-47bc-afea-b88c76ff2e05", "e0fe2cb5-3b01-47bc-afea-b88c76ff2e05", clientId) +09:00:40.035 [XNIO-1 task-2] 1eF7fAtpRXu5qSbmRvYobg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.035 [XNIO-1 task-2] 1eF7fAtpRXu5qSbmRvYobg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.038 [XNIO-1 task-2] 1eF7fAtpRXu5qSbmRvYobg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.038 [XNIO-1 task-2] 1eF7fAtpRXu5qSbmRvYobg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.083 [XNIO-1 task-2] VULF39jPQGaorc0JaxGH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a90473c-65b3-499f-ac91-155b63ca1d63 +09:00:40.084 [XNIO-1 task-2] VULF39jPQGaorc0JaxGH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.084 [XNIO-1 task-2] VULF39jPQGaorc0JaxGH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:40.084 [XNIO-1 task-2] VULF39jPQGaorc0JaxGH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a90473c-65b3-499f-ac91-155b63ca1d63 +09:00:40.094 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.094 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.095 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.096 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.097 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"945cfda4-c147-47f7-a20a-72851837","clientDesc":"82f9a91f-1592-487f-8b4f-1c4b91756867","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:40.100 [XNIO-1 task-2] XR3Gnj6HRSi2Hd9KrAap4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:40.105 [XNIO-1 task-2] z1NY9Q7BTR2au4YQvE45NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99bc96c8-9757-4722-8509-d7a6e2a8a600 +09:00:40.105 [XNIO-1 task-2] z1NY9Q7BTR2au4YQvE45NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.105 [XNIO-1 task-2] z1NY9Q7BTR2au4YQvE45NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:40.105 [XNIO-1 task-2] z1NY9Q7BTR2au4YQvE45NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99bc96c8-9757-4722-8509-d7a6e2a8a600 +09:00:40.127 [XNIO-1 task-2] fbmWdccpQbqrwqGhZw1_gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.127 [XNIO-1 task-2] fbmWdccpQbqrwqGhZw1_gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.127 [XNIO-1 task-2] fbmWdccpQbqrwqGhZw1_gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.127 [XNIO-1 task-2] fbmWdccpQbqrwqGhZw1_gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.128 [XNIO-1 task-2] fbmWdccpQbqrwqGhZw1_gA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.152 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f73cff0f +09:00:40.164 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.164 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.164 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.165 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.165 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:40.165 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "00fa8167-b6ca-49e3-be2c-9ed0eae50e71", {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:40.165 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:40.165 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:40.165 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "29c04664-607c-4a0d-8569-c2ca8e1b", {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:40.166 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:40.166 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"29c04664-607c-4a0d-8569-c2ca8e1b","clientDesc":"00fa8167-b6ca-49e3-be2c-9ed0eae50e71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.166 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:40.166 [XNIO-1 task-2] ifYXJzzzQ2SjCkvNt4oSEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:40.170 [XNIO-1 task-2] YBDpdEnbTomViVQAdTuI-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/99bc96c8-9757-4722-8509-d7a6e2a8a600, base path is set to: null +09:00:40.171 [XNIO-1 task-2] YBDpdEnbTomViVQAdTuI-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.175 [XNIO-1 task-2] YBDpdEnbTomViVQAdTuI-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:40.175 [XNIO-1 task-2] YBDpdEnbTomViVQAdTuI-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/99bc96c8-9757-4722-8509-d7a6e2a8a600, base path is set to: null +09:00:40.175 [XNIO-1 task-2] YBDpdEnbTomViVQAdTuI-w DEBUG com.networknt.schema.TypeValidator debug - validate( "99bc96c8-9757-4722-8509-d7a6e2a8a600", "99bc96c8-9757-4722-8509-d7a6e2a8a600", clientId) +09:00:40.180 [XNIO-1 task-2] unimncieSdWQASBfRzs9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99bc96c8-9757-4722-8509-d7a6e2a8a600 +09:00:40.180 [XNIO-1 task-2] unimncieSdWQASBfRzs9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.180 [XNIO-1 task-2] unimncieSdWQASBfRzs9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:40.180 [XNIO-1 task-2] unimncieSdWQASBfRzs9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99bc96c8-9757-4722-8509-d7a6e2a8a600 +09:00:40.189 [XNIO-1 task-2] _SkEjGXTS2OPdX8GYQwX4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0fe2cb5-3b01-47bc-afea-b88c76ff2e05, base path is set to: null +09:00:40.189 [XNIO-1 task-2] _SkEjGXTS2OPdX8GYQwX4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.189 [XNIO-1 task-2] _SkEjGXTS2OPdX8GYQwX4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:40.189 [XNIO-1 task-2] _SkEjGXTS2OPdX8GYQwX4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0fe2cb5-3b01-47bc-afea-b88c76ff2e05, base path is set to: null +09:00:40.190 [XNIO-1 task-2] _SkEjGXTS2OPdX8GYQwX4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e0fe2cb5-3b01-47bc-afea-b88c76ff2e05", "e0fe2cb5-3b01-47bc-afea-b88c76ff2e05", clientId) +09:00:40.249 [XNIO-1 task-2] Tvn2vSRoQmSuxKD4mxnYyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/659604b5-55b1-4bf5-8abb-4f47adb6b4e0 +09:00:40.249 [XNIO-1 task-2] Tvn2vSRoQmSuxKD4mxnYyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.249 [XNIO-1 task-2] Tvn2vSRoQmSuxKD4mxnYyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:40.249 [XNIO-1 task-2] Tvn2vSRoQmSuxKD4mxnYyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/659604b5-55b1-4bf5-8abb-4f47adb6b4e0 +09:00:40.256 [XNIO-1 task-2] wG8dhrlLSreHe9fGaFCiAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/659604b5-55b1-4bf5-8abb-4f47adb6b4e0, base path is set to: null +09:00:40.256 [XNIO-1 task-2] wG8dhrlLSreHe9fGaFCiAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.256 [XNIO-1 task-2] wG8dhrlLSreHe9fGaFCiAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:40.256 [XNIO-1 task-2] wG8dhrlLSreHe9fGaFCiAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/659604b5-55b1-4bf5-8abb-4f47adb6b4e0, base path is set to: null +09:00:40.257 [XNIO-1 task-2] wG8dhrlLSreHe9fGaFCiAA DEBUG com.networknt.schema.TypeValidator debug - validate( "659604b5-55b1-4bf5-8abb-4f47adb6b4e0", "659604b5-55b1-4bf5-8abb-4f47adb6b4e0", clientId) +09:00:40.264 [XNIO-1 task-2] O1u4RBF0Q1GUZZ8N9QTNJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.264 [XNIO-1 task-2] O1u4RBF0Q1GUZZ8N9QTNJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.265 [XNIO-1 task-2] O1u4RBF0Q1GUZZ8N9QTNJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.281 [XNIO-1 task-2] kqQAQKTJRJKrXEXwfZ4jfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0931984d-6390-431d-a147-d3788ac8ed7f +09:00:40.282 [XNIO-1 task-2] kqQAQKTJRJKrXEXwfZ4jfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.283 [XNIO-1 task-2] kqQAQKTJRJKrXEXwfZ4jfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:40.283 [XNIO-1 task-2] kqQAQKTJRJKrXEXwfZ4jfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0931984d-6390-431d-a147-d3788ac8ed7f +09:00:40.287 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.287 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.287 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.288 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3abc2670-9d9e-4c3a-b068-721e4068","clientDesc":"3a46d89e-7d4e-4147-8ed1-ad3ef1a1dda7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:40.289 [XNIO-1 task-2] JTIicqOuQYOCIS_3fWJ5Jw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:40.292 [XNIO-1 task-2] 7Il7wdYJQayThgoVwPL74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.292 [XNIO-1 task-2] 7Il7wdYJQayThgoVwPL74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.292 [XNIO-1 task-2] 7Il7wdYJQayThgoVwPL74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.293 [XNIO-1 task-2] 7Il7wdYJQayThgoVwPL74Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.329 [XNIO-1 task-2] a_6-8H99QQCSy_D49vn9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.329 [XNIO-1 task-2] a_6-8H99QQCSy_D49vn9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.330 [XNIO-1 task-2] a_6-8H99QQCSy_D49vn9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.330 [XNIO-1 task-2] a_6-8H99QQCSy_D49vn9GQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.439 [XNIO-1 task-2] eSSBHe5ZQxuhxV3KDlErag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0931984d-6390-431d-a147-d3788ac8ed7f +09:00:40.439 [XNIO-1 task-2] eSSBHe5ZQxuhxV3KDlErag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.439 [XNIO-1 task-2] eSSBHe5ZQxuhxV3KDlErag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:40.439 [XNIO-1 task-2] eSSBHe5ZQxuhxV3KDlErag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0931984d-6390-431d-a147-d3788ac8ed7f +09:00:40.455 [XNIO-1 task-2] g23mU_uRSramjFlCEnMPKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.455 [XNIO-1 task-2] g23mU_uRSramjFlCEnMPKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.455 [XNIO-1 task-2] g23mU_uRSramjFlCEnMPKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.455 [XNIO-1 task-2] g23mU_uRSramjFlCEnMPKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.503 [XNIO-1 task-2] gOIX7dpmSDOE45G0snNTTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.504 [XNIO-1 task-2] gOIX7dpmSDOE45G0snNTTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.504 [XNIO-1 task-2] gOIX7dpmSDOE45G0snNTTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.504 [XNIO-1 task-2] gOIX7dpmSDOE45G0snNTTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.523 [XNIO-1 task-2] E6uPpzmrRhKSQC7w4WC_ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.523 [XNIO-1 task-2] E6uPpzmrRhKSQC7w4WC_ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.524 [XNIO-1 task-2] E6uPpzmrRhKSQC7w4WC_ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.524 [XNIO-1 task-2] E6uPpzmrRhKSQC7w4WC_ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.537 [XNIO-1 task-2] grr558GHTv-MKH_f1TK_-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.537 [XNIO-1 task-2] grr558GHTv-MKH_f1TK_-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.538 [XNIO-1 task-2] grr558GHTv-MKH_f1TK_-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.556 [XNIO-1 task-2] v40B4zf6ScCuYtHSG4uSUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3947f65f-aa3c-4a30-96c6-1eeec9f9d746, base path is set to: null +09:00:40.556 [XNIO-1 task-2] v40B4zf6ScCuYtHSG4uSUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.557 [XNIO-1 task-2] v40B4zf6ScCuYtHSG4uSUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:40.557 [XNIO-1 task-2] v40B4zf6ScCuYtHSG4uSUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3947f65f-aa3c-4a30-96c6-1eeec9f9d746, base path is set to: null +09:00:40.558 [XNIO-1 task-2] v40B4zf6ScCuYtHSG4uSUg DEBUG com.networknt.schema.TypeValidator debug - validate( "3947f65f-aa3c-4a30-96c6-1eeec9f9d746", "3947f65f-aa3c-4a30-96c6-1eeec9f9d746", clientId) +09:00:40.570 [XNIO-1 task-2] K2lumzfXSP2Gq4P3R0mpsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.570 [XNIO-1 task-2] K2lumzfXSP2Gq4P3R0mpsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.573 [XNIO-1 task-2] K2lumzfXSP2Gq4P3R0mpsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.598 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3c06f85c-266e-43f9-99ff-14bb201679b6 +09:00:40.615 [XNIO-1 task-2] -ljfivizRN6OTpymE3TL6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.615 [XNIO-1 task-2] -ljfivizRN6OTpymE3TL6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.615 [XNIO-1 task-2] -ljfivizRN6OTpymE3TL6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.616 [XNIO-1 task-2] -ljfivizRN6OTpymE3TL6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.688 [XNIO-1 task-2] iw8Nw_HeR32n5WjEfOFaeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c06f85c-266e-43f9-99ff-14bb201679b6, base path is set to: null +09:00:40.689 [XNIO-1 task-2] iw8Nw_HeR32n5WjEfOFaeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.689 [XNIO-1 task-2] iw8Nw_HeR32n5WjEfOFaeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:40.689 [XNIO-1 task-2] iw8Nw_HeR32n5WjEfOFaeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c06f85c-266e-43f9-99ff-14bb201679b6, base path is set to: null +09:00:40.689 [XNIO-1 task-2] iw8Nw_HeR32n5WjEfOFaeg DEBUG com.networknt.schema.TypeValidator debug - validate( "3c06f85c-266e-43f9-99ff-14bb201679b6", "3c06f85c-266e-43f9-99ff-14bb201679b6", clientId) +09:00:40.698 [XNIO-1 task-2] rV8cRDxxTdeyNSYIs3phTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.699 [XNIO-1 task-2] rV8cRDxxTdeyNSYIs3phTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.699 [XNIO-1 task-2] rV8cRDxxTdeyNSYIs3phTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.699 [XNIO-1 task-2] rV8cRDxxTdeyNSYIs3phTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.800 [XNIO-1 task-2] ZFJOZeLkSrGq-coxVIMeOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.800 [XNIO-1 task-2] ZFJOZeLkSrGq-coxVIMeOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.801 [XNIO-1 task-2] ZFJOZeLkSrGq-coxVIMeOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:40.827 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5e464a8f-7778-4bf8-8567-81a955144eb7 +09:00:40.828 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5e464a8f-7778-4bf8-8567-81a955144eb7 +09:00:40.839 [XNIO-1 task-2] BOepCMoQTDi7OCe_qmjHyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e464a8f-7778-4bf8-8567-81a955144eb7 +09:00:40.839 [XNIO-1 task-2] BOepCMoQTDi7OCe_qmjHyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.839 [XNIO-1 task-2] BOepCMoQTDi7OCe_qmjHyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:40.840 [XNIO-1 task-2] BOepCMoQTDi7OCe_qmjHyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e464a8f-7778-4bf8-8567-81a955144eb7 +09:00:40.841 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5e464a8f-7778-4bf8-8567-81a955144eb7 +09:00:40.855 [XNIO-1 task-2] eHB21APARaWENDbl2eXF4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.855 [XNIO-1 task-2] eHB21APARaWENDbl2eXF4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.856 [XNIO-1 task-2] eHB21APARaWENDbl2eXF4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.876 [XNIO-1 task-2] 6COCNNVQSj6WaVmHyvOZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.877 [XNIO-1 task-2] 6COCNNVQSj6WaVmHyvOZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.877 [XNIO-1 task-2] 6COCNNVQSj6WaVmHyvOZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.880 [XNIO-1 task-2] 6COCNNVQSj6WaVmHyvOZqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.910 [XNIO-1 task-2] N8ge5OafQiKXApJWG7JpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.910 [XNIO-1 task-2] N8ge5OafQiKXApJWG7JpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.910 [XNIO-1 task-2] N8ge5OafQiKXApJWG7JpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.911 [XNIO-1 task-2] N8ge5OafQiKXApJWG7JpJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.979 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.979 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.979 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3f2b249a-d1e7-4421-bed7-c9fb7e10f187", {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6f80d7bf-566a-494a-82fe-79822c96", {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:40.981 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6f80d7bf-566a-494a-82fe-79822c96","clientDesc":"3f2b249a-d1e7-4421-bed7-c9fb7e10f187","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.982 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:40.982 [XNIO-1 task-2] gLRwzCK4Sxa3AC3ucaQN7Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:40.989 [XNIO-1 task-2] 36JVkECJQKu3IkjWndvoVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7e502078-bc4c-4493-af14-ccfb1751483f, base path is set to: null +09:00:40.989 [XNIO-1 task-2] 36JVkECJQKu3IkjWndvoVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:40.989 [XNIO-1 task-2] 36JVkECJQKu3IkjWndvoVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:40.989 [XNIO-1 task-2] 36JVkECJQKu3IkjWndvoVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7e502078-bc4c-4493-af14-ccfb1751483f, base path is set to: null +09:00:40.990 [XNIO-1 task-2] 36JVkECJQKu3IkjWndvoVg DEBUG com.networknt.schema.TypeValidator debug - validate( "7e502078-bc4c-4493-af14-ccfb1751483f", "7e502078-bc4c-4493-af14-ccfb1751483f", clientId) +09:00:41.001 [XNIO-1 task-2] 7RUDK0i2Qye0c8hNEugIRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.002 [XNIO-1 task-2] 7RUDK0i2Qye0c8hNEugIRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.002 [XNIO-1 task-2] 7RUDK0i2Qye0c8hNEugIRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.002 [XNIO-1 task-2] 7RUDK0i2Qye0c8hNEugIRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.129 [XNIO-1 task-2] OwXwwg2hQleU36n6ubALRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.129 [XNIO-1 task-2] OwXwwg2hQleU36n6ubALRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.129 [XNIO-1 task-2] OwXwwg2hQleU36n6ubALRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.130 [XNIO-1 task-2] OwXwwg2hQleU36n6ubALRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.138 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:81d38707-d60b-44cd-8511-a7cd16ecd6f4 +09:00:41.143 [XNIO-1 task-2] zWQ2Oe6ZS6acXmBSM038_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.143 [XNIO-1 task-2] zWQ2Oe6ZS6acXmBSM038_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.144 [XNIO-1 task-2] zWQ2Oe6ZS6acXmBSM038_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.169 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.169 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.170 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.170 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.170 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:41.170 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b6787246-bec2-4588-857e-e1cdf4579e69", {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:41.170 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:41.171 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:41.171 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5e699f5e-f803-477a-874c-c59965e2", {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:41.171 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:41.171 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5e699f5e-f803-477a-874c-c59965e2","clientDesc":"b6787246-bec2-4588-857e-e1cdf4579e69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:41.171 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:41.171 [XNIO-1 task-2] RcQPFukwTAe8L5KaujhKMQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:41.185 [XNIO-1 task-2] hUnN0rIBTiqMgNBjpxW8gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be, base path is set to: null +09:00:41.185 [XNIO-1 task-2] hUnN0rIBTiqMgNBjpxW8gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.185 [XNIO-1 task-2] hUnN0rIBTiqMgNBjpxW8gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.185 [XNIO-1 task-2] hUnN0rIBTiqMgNBjpxW8gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be, base path is set to: null +09:00:41.186 [XNIO-1 task-2] hUnN0rIBTiqMgNBjpxW8gA DEBUG com.networknt.schema.TypeValidator debug - validate( "b96c44fb-b778-45e2-8408-6996ea8187be", "b96c44fb-b778-45e2-8408-6996ea8187be", clientId) +09:00:41.193 [XNIO-1 task-2] R2GsmjGeQ4Oblq0hLuHn6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be +09:00:41.193 [XNIO-1 task-2] R2GsmjGeQ4Oblq0hLuHn6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.193 [XNIO-1 task-2] R2GsmjGeQ4Oblq0hLuHn6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:41.194 [XNIO-1 task-2] R2GsmjGeQ4Oblq0hLuHn6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be +09:00:41.197 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:81d38707-d60b-44cd-8511-a7cd16ecd6f4 +09:00:41.200 [XNIO-1 task-2] zlvco1kzR8GQXUNvfMRZCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.200 [XNIO-1 task-2] zlvco1kzR8GQXUNvfMRZCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.201 [XNIO-1 task-2] zlvco1kzR8GQXUNvfMRZCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.230 [XNIO-1 task-2] VGZVZtZ3SkWTf4sQRR9e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.230 [XNIO-1 task-2] VGZVZtZ3SkWTf4sQRR9e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.231 [XNIO-1 task-2] VGZVZtZ3SkWTf4sQRR9e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.256 [XNIO-1 task-2] TbL3BWsKSqmTo3JxnXwZ_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/610b321c-691e-43e0-8d0a-385163311fac +09:00:41.256 [XNIO-1 task-2] TbL3BWsKSqmTo3JxnXwZ_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.256 [XNIO-1 task-2] TbL3BWsKSqmTo3JxnXwZ_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:41.256 [XNIO-1 task-2] TbL3BWsKSqmTo3JxnXwZ_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/610b321c-691e-43e0-8d0a-385163311fac +09:00:41.270 [XNIO-1 task-2] Puf43ox3T-CjU-IvRok0Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.271 [XNIO-1 task-2] Puf43ox3T-CjU-IvRok0Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.271 [XNIO-1 task-2] Puf43ox3T-CjU-IvRok0Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.289 [XNIO-1 task-2] aRO1LPOiS1iA_qi1C7I99Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be, base path is set to: null +09:00:41.289 [XNIO-1 task-2] aRO1LPOiS1iA_qi1C7I99Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.289 [XNIO-1 task-2] aRO1LPOiS1iA_qi1C7I99Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.290 [XNIO-1 task-2] aRO1LPOiS1iA_qi1C7I99Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be, base path is set to: null +09:00:41.291 [XNIO-1 task-2] aRO1LPOiS1iA_qi1C7I99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b96c44fb-b778-45e2-8408-6996ea8187be", "b96c44fb-b778-45e2-8408-6996ea8187be", clientId) +09:00:41.294 [XNIO-1 task-2] ZaqanaY1SCecAVtNj86Iuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be +09:00:41.295 [XNIO-1 task-2] ZaqanaY1SCecAVtNj86Iuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.295 [XNIO-1 task-2] ZaqanaY1SCecAVtNj86Iuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:41.295 [XNIO-1 task-2] ZaqanaY1SCecAVtNj86Iuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be +09:00:41.297 [XNIO-1 task-2] AjwfLhxaS3KXN0TjtsiHKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be, base path is set to: null +09:00:41.298 [XNIO-1 task-2] AjwfLhxaS3KXN0TjtsiHKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.298 [XNIO-1 task-2] AjwfLhxaS3KXN0TjtsiHKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.298 [XNIO-1 task-2] AjwfLhxaS3KXN0TjtsiHKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b96c44fb-b778-45e2-8408-6996ea8187be, base path is set to: null +09:00:41.298 [XNIO-1 task-2] AjwfLhxaS3KXN0TjtsiHKg DEBUG com.networknt.schema.TypeValidator debug - validate( "b96c44fb-b778-45e2-8408-6996ea8187be", "b96c44fb-b778-45e2-8408-6996ea8187be", clientId) +09:00:41.396 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.396 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.397 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.397 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.397 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "ce180810-d088-4e3f-ad06-6d8f778f77e9", {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "3a9cac8d-e2c2-4c21-97ef-5d304d3c", {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3a9cac8d-e2c2-4c21-97ef-5d304d3c","clientDesc":"ce180810-d088-4e3f-ad06-6d8f778f77e9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:41.398 [XNIO-1 task-2] kqPlXUsjTNq9dqVQWRh1Ug DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:41.405 [XNIO-1 task-2] AHUgJ6c_TY-vHWWojfJ3EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.405 [XNIO-1 task-2] AHUgJ6c_TY-vHWWojfJ3EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.405 [XNIO-1 task-2] AHUgJ6c_TY-vHWWojfJ3EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.406 [XNIO-1 task-2] AHUgJ6c_TY-vHWWojfJ3EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.417 [XNIO-1 task-2] muCyZdBDQaSd170JAXVoxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.418 [XNIO-1 task-2] muCyZdBDQaSd170JAXVoxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.418 [XNIO-1 task-2] muCyZdBDQaSd170JAXVoxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.418 [XNIO-1 task-2] muCyZdBDQaSd170JAXVoxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.444 [XNIO-1 task-2] QpVbeFjISSyRdZtjvK59_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.444 [XNIO-1 task-2] QpVbeFjISSyRdZtjvK59_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.444 [XNIO-1 task-2] QpVbeFjISSyRdZtjvK59_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.463 [XNIO-1 task-2] nFmiYcuIQ9uuJ0V6sUeUVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/da393871-33e7-45d2-a941-f68ea8cf8789, base path is set to: null +09:00:41.464 [XNIO-1 task-2] nFmiYcuIQ9uuJ0V6sUeUVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.464 [XNIO-1 task-2] nFmiYcuIQ9uuJ0V6sUeUVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.464 [XNIO-1 task-2] nFmiYcuIQ9uuJ0V6sUeUVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/da393871-33e7-45d2-a941-f68ea8cf8789, base path is set to: null +09:00:41.464 [XNIO-1 task-2] nFmiYcuIQ9uuJ0V6sUeUVw DEBUG com.networknt.schema.TypeValidator debug - validate( "da393871-33e7-45d2-a941-f68ea8cf8789", "da393871-33e7-45d2-a941-f68ea8cf8789", clientId) +09:00:41.478 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.479 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.479 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "ae4a4233-c1bd-4393-911f-cd65e9fd84e0", {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "99d38fe8-d341-4a4c-951b-dd998261", {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:41.480 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"99d38fe8-d341-4a4c-951b-dd998261","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:41.481 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:41.481 [XNIO-1 task-2] a0H4MB5iQe6nH4aGPmEqgA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:41.486 [XNIO-1 task-2] sWrUN-00T_iQzsgiuEnO9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:41.487 [XNIO-1 task-2] sWrUN-00T_iQzsgiuEnO9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.487 [XNIO-1 task-2] sWrUN-00T_iQzsgiuEnO9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.487 [XNIO-1 task-2] sWrUN-00T_iQzsgiuEnO9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:41.487 [XNIO-1 task-2] sWrUN-00T_iQzsgiuEnO9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", clientId) +09:00:41.492 [XNIO-1 task-2] ngZeRK89QZG9y7Gw-dqJ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.492 [XNIO-1 task-2] ngZeRK89QZG9y7Gw-dqJ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.493 [XNIO-1 task-2] ngZeRK89QZG9y7Gw-dqJ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.493 [XNIO-1 task-2] ngZeRK89QZG9y7Gw-dqJ8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.539 [XNIO-1 task-2] d9O-jLkOTXSNoHldKBonsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/27ca2f9c-e6f3-4311-81c9-517f11d8d6ac +09:00:41.539 [XNIO-1 task-2] d9O-jLkOTXSNoHldKBonsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.539 [XNIO-1 task-2] d9O-jLkOTXSNoHldKBonsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:41.539 [XNIO-1 task-2] d9O-jLkOTXSNoHldKBonsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/27ca2f9c-e6f3-4311-81c9-517f11d8d6ac +09:00:41.549 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.552 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.552 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.553 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.553 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.554 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.554 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.554 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:41.554 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:41.554 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.554 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.554 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce40e8e-785d-476c-a764-41b43a1e","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:41.595 [XNIO-1 task-2] sMqcyvrOQc2b1piXAOo75w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:41.600 [XNIO-1 task-2] tC8qKfC4S0SyV_huvqZJOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.600 [XNIO-1 task-2] tC8qKfC4S0SyV_huvqZJOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.601 [XNIO-1 task-2] tC8qKfC4S0SyV_huvqZJOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.631 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.631 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.632 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.632 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.632 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:41.633 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4", {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:41.633 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:41.633 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:41.633 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4db1a31f-78fc-42a1-ad6b-983692f8", {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:41.633 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:41.633 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4db1a31f-78fc-42a1-ad6b-983692f8","clientDesc":"1bcc8fcb-4d11-451d-b1e8-7e5a089d0fe4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:41.634 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:41.634 [XNIO-1 task-2] CxNm796oRcCaITkoypt6fQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:41.642 [XNIO-1 task-2] dUMG3HcuRHKZ1wACY1QMVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb761ebf-bf83-4319-9974-697466b3cdf5, base path is set to: null +09:00:41.645 [XNIO-1 task-2] dUMG3HcuRHKZ1wACY1QMVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.645 [XNIO-1 task-2] dUMG3HcuRHKZ1wACY1QMVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.646 [XNIO-1 task-2] dUMG3HcuRHKZ1wACY1QMVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb761ebf-bf83-4319-9974-697466b3cdf5, base path is set to: null +09:00:41.646 [XNIO-1 task-2] dUMG3HcuRHKZ1wACY1QMVg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb761ebf-bf83-4319-9974-697466b3cdf5", "fb761ebf-bf83-4319-9974-697466b3cdf5", clientId) +09:00:41.655 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ea96b019 +09:00:41.664 [XNIO-1 task-2] 4i3mWrtyT1y9i2wgOJOoUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e68cfb04-607d-44c8-b0e4-0c373ebdb3bd, base path is set to: null +09:00:41.665 [XNIO-1 task-2] 4i3mWrtyT1y9i2wgOJOoUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.665 [XNIO-1 task-2] 4i3mWrtyT1y9i2wgOJOoUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.665 [XNIO-1 task-2] 4i3mWrtyT1y9i2wgOJOoUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e68cfb04-607d-44c8-b0e4-0c373ebdb3bd, base path is set to: null +09:00:41.665 [XNIO-1 task-2] 4i3mWrtyT1y9i2wgOJOoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "e68cfb04-607d-44c8-b0e4-0c373ebdb3bd", "e68cfb04-607d-44c8-b0e4-0c373ebdb3bd", clientId) +09:00:41.667 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:30be21f1 +09:00:41.669 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ea96b019 +09:00:41.746 [XNIO-1 task-2] c8WibUAqTdWtFbw1UgOjLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.746 [XNIO-1 task-2] c8WibUAqTdWtFbw1UgOjLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.746 [XNIO-1 task-2] c8WibUAqTdWtFbw1UgOjLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.747 [XNIO-1 task-2] c8WibUAqTdWtFbw1UgOjLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.762 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:30be21f1 +09:00:41.763 [XNIO-1 task-2] xz_O5dsDSfWMyiC14b_yNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.763 [XNIO-1 task-2] xz_O5dsDSfWMyiC14b_yNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.764 [XNIO-1 task-2] xz_O5dsDSfWMyiC14b_yNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:41.790 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:30ced802-7a18-4e54-8fa8-cd8cfe0e1699 +09:00:41.813 [XNIO-1 task-2] cuoJzblzSt29z5dCm1Y11w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9, base path is set to: null +09:00:41.813 [XNIO-1 task-2] cuoJzblzSt29z5dCm1Y11w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.813 [XNIO-1 task-2] cuoJzblzSt29z5dCm1Y11w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.813 [XNIO-1 task-2] cuoJzblzSt29z5dCm1Y11w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9, base path is set to: null +09:00:41.814 [XNIO-1 task-2] cuoJzblzSt29z5dCm1Y11w DEBUG com.networknt.schema.TypeValidator debug - validate( "1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9", "1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9", clientId) +09:00:41.819 [XNIO-1 task-2] z3RifyVrTKC2SyzjEytdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.819 [XNIO-1 task-2] z3RifyVrTKC2SyzjEytdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.820 [XNIO-1 task-2] z3RifyVrTKC2SyzjEytdgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.828 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c8b9f65a +09:00:41.846 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c8b9f65a +09:00:41.870 [XNIO-1 task-2] ZbmftVdJT-aP0zdyArXF8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854, base path is set to: null +09:00:41.870 [XNIO-1 task-2] ZbmftVdJT-aP0zdyArXF8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:41.870 [XNIO-1 task-2] ZbmftVdJT-aP0zdyArXF8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:41.871 [XNIO-1 task-2] ZbmftVdJT-aP0zdyArXF8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854, base path is set to: null +09:00:41.871 [XNIO-1 task-2] ZbmftVdJT-aP0zdyArXF8A DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", clientId) +09:00:41.880 [XNIO-1 task-2] MOYiPP9qS-GMrEt7Ojmwcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854 +09:00:41.880 [XNIO-1 task-2] MOYiPP9qS-GMrEt7Ojmwcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.880 [XNIO-1 task-2] MOYiPP9qS-GMrEt7Ojmwcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:41.881 [XNIO-1 task-2] MOYiPP9qS-GMrEt7Ojmwcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854 +09:00:41.924 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:30be21f1 +09:00:41.956 [XNIO-1 task-2] MOYiPP9qS-GMrEt7Ojmwcw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:41.957 [XNIO-1 task-2] MOYiPP9qS-GMrEt7Ojmwcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:41.966 [XNIO-1 task-2] pFc4qG3-S9WdIbvEUzma0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.966 [XNIO-1 task-2] pFc4qG3-S9WdIbvEUzma0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.966 [XNIO-1 task-2] pFc4qG3-S9WdIbvEUzma0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.967 [XNIO-1 task-2] pFc4qG3-S9WdIbvEUzma0g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.991 [XNIO-1 task-2] RZ9LMg0PRXWlI7IxMohWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:41.991 [XNIO-1 task-2] RZ9LMg0PRXWlI7IxMohWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:41.991 [XNIO-1 task-2] RZ9LMg0PRXWlI7IxMohWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:41.991 [XNIO-1 task-2] RZ9LMg0PRXWlI7IxMohWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:42.033 [XNIO-1 task-2] RZ9LMg0PRXWlI7IxMohWSw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.033 [XNIO-1 task-2] RZ9LMg0PRXWlI7IxMohWSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.037 [XNIO-1 task-2] c-VRnxauSMmGnudKI8h4gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9, base path is set to: null +09:00:42.037 [XNIO-1 task-2] c-VRnxauSMmGnudKI8h4gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.037 [XNIO-1 task-2] c-VRnxauSMmGnudKI8h4gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.037 [XNIO-1 task-2] c-VRnxauSMmGnudKI8h4gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9, base path is set to: null +09:00:42.038 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:933730f8-1873-45fc-a258-fa5d4da0cd77 +09:00:42.038 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:933730f8-1873-45fc-a258-fa5d4da0cd77 +09:00:42.043 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.043 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.044 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.044 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.044 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG com.networknt.schema.TypeValidator debug - validate( "a8723b77-c244-4fe3-a280-b91edb4f648c", {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ccae32e-7642-45e1-a1af-b13a32b7", {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0ccae32e-7642-45e1-a1af-b13a32b7","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.045 [XNIO-1 task-2] 3F0LHGfwSaedFtA_c28gUg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.048 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.048 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.049 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.049 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.049 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.049 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.049 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.050 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.050 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.050 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.050 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.050 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73ebbf40-ada2-43ab-8a5b-a4e96cf9","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.050 [XNIO-1 task-2] wFTWq2oiQ-2Dk-gk45cW_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.054 [XNIO-1 task-2] DRNV90d-SL2ua5hZtVsYmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.054 [XNIO-1 task-2] DRNV90d-SL2ua5hZtVsYmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.055 [XNIO-1 task-2] DRNV90d-SL2ua5hZtVsYmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.079 [XNIO-1 task-2] iWk06XAqRCy9ZnJAr93Ttg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.079 [XNIO-1 task-2] iWk06XAqRCy9ZnJAr93Ttg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.080 [XNIO-1 task-2] iWk06XAqRCy9ZnJAr93Ttg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.098 [XNIO-1 task-2] FV_R-iEARQOl5aUBh2k5dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:42.099 [XNIO-1 task-2] FV_R-iEARQOl5aUBh2k5dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.099 [XNIO-1 task-2] FV_R-iEARQOl5aUBh2k5dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.099 [XNIO-1 task-2] FV_R-iEARQOl5aUBh2k5dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:42.099 [XNIO-1 task-2] FV_R-iEARQOl5aUBh2k5dA DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:42.109 [XNIO-1 task-2] FV_R-iEARQOl5aUBh2k5dA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.111 [XNIO-1 task-2] RNx3RKrmS1it2Q3DWtcs8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/56ed7286-a0ab-42b4-a670-8cfc682fad8c, base path is set to: null +09:00:42.112 [XNIO-1 task-2] RNx3RKrmS1it2Q3DWtcs8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.112 [XNIO-1 task-2] RNx3RKrmS1it2Q3DWtcs8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.112 [XNIO-1 task-2] RNx3RKrmS1it2Q3DWtcs8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/56ed7286-a0ab-42b4-a670-8cfc682fad8c, base path is set to: null +09:00:42.113 [XNIO-1 task-2] RNx3RKrmS1it2Q3DWtcs8A DEBUG com.networknt.schema.TypeValidator debug - validate( "56ed7286-a0ab-42b4-a670-8cfc682fad8c", "56ed7286-a0ab-42b4-a670-8cfc682fad8c", clientId) +09:00:42.128 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.128 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.128 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.129 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.129 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.129 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.129 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.129 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.129 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.129 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.130 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.130 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.130 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d3c5719-7127-4956-b860-be0a1e09","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.130 [XNIO-1 task-2] o7vHByNURIKiaUNqh-Hgxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.133 [XNIO-1 task-2] cFfTkGxURluvKfAJ_zejZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8 +09:00:42.133 [XNIO-1 task-2] cFfTkGxURluvKfAJ_zejZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.133 [XNIO-1 task-2] cFfTkGxURluvKfAJ_zejZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:42.133 [XNIO-1 task-2] cFfTkGxURluvKfAJ_zejZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8 +09:00:42.137 [XNIO-1 task-2] 5Zj-aqKaRx-yM8Cd0t_k6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.137 [XNIO-1 task-2] 5Zj-aqKaRx-yM8Cd0t_k6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.138 [XNIO-1 task-2] 5Zj-aqKaRx-yM8Cd0t_k6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.138 [XNIO-1 task-2] 5Zj-aqKaRx-yM8Cd0t_k6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.145 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:30be21f1 +09:00:42.149 [XNIO-1 task-2] OtaQfOFBRju8nCJ121fyTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8, base path is set to: null +09:00:42.150 [XNIO-1 task-2] OtaQfOFBRju8nCJ121fyTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.150 [XNIO-1 task-2] OtaQfOFBRju8nCJ121fyTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.150 [XNIO-1 task-2] OtaQfOFBRju8nCJ121fyTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8, base path is set to: null +09:00:42.150 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6f4889ef +09:00:42.152 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6f4889ef +09:00:42.153 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.153 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.153 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.154 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.154 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:42.154 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG com.networknt.schema.TypeValidator debug - validate( "a8723b77-c244-4fe3-a280-b91edb4f648c", {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:42.154 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.154 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.154 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG com.networknt.schema.TypeValidator debug - validate( "fa5dbab0-bc15-435f-9b86-a7990e8a", {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:42.154 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.155 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fa5dbab0-bc15-435f-9b86-a7990e8a","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.156 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.156 [XNIO-1 task-2] GBPHPYazQxqld_Z997yH7g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.159 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.159 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.159 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.162 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.162 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.162 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.162 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.162 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.165 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.165 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.165 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.165 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0677e3df-0403-4418-9b56-c9d968d1","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.166 [XNIO-1 task-2] IHuaJ4a-SaOkAvRukTFb0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.169 [XNIO-1 task-2] LiTkl8QGTZyO8g8NrO_tXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377, base path is set to: null +09:00:42.169 [XNIO-1 task-2] LiTkl8QGTZyO8g8NrO_tXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.169 [XNIO-1 task-2] LiTkl8QGTZyO8g8NrO_tXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.169 [XNIO-1 task-2] LiTkl8QGTZyO8g8NrO_tXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377, base path is set to: null +09:00:42.170 [XNIO-1 task-2] LiTkl8QGTZyO8g8NrO_tXw DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", clientId) +09:00:42.170 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c179418c +09:00:42.200 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.200 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.201 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.201 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG com.networknt.schema.TypeValidator debug - validate( "f68611ca-abbc-45cc-85ef-b31467d8f0d3", {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG com.networknt.schema.TypeValidator debug - validate( "f88d6497-c89e-48f5-8a28-3d2d29a5", {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f88d6497-c89e-48f5-8a28-3d2d29a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.202 [XNIO-1 task-2] zDUaqOI5QRSpnNiqToKdhw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.207 [XNIO-1 task-2] eATCVrTvQG2I-o_jq4N5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.207 [XNIO-1 task-2] eATCVrTvQG2I-o_jq4N5vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.207 [XNIO-1 task-2] eATCVrTvQG2I-o_jq4N5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.213 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:42.214 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:42.246 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c179418c +09:00:42.250 [XNIO-1 task-2] bKpyuLFoRVelt2QGnZm4jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8 +09:00:42.250 [XNIO-1 task-2] bKpyuLFoRVelt2QGnZm4jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.251 [XNIO-1 task-2] bKpyuLFoRVelt2QGnZm4jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:42.251 [XNIO-1 task-2] bKpyuLFoRVelt2QGnZm4jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8 +09:00:42.335 [XNIO-1 task-2] bKpyuLFoRVelt2QGnZm4jQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.338 [XNIO-1 task-2] bKpyuLFoRVelt2QGnZm4jQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.346 [XNIO-1 task-2] fipD3rkXTkOS4nmFQkH-RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.346 [XNIO-1 task-2] fipD3rkXTkOS4nmFQkH-RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.346 [XNIO-1 task-2] fipD3rkXTkOS4nmFQkH-RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.353 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ce8aef79-2ad2-400f-b080-b5af38a3ab19 +09:00:42.367 [XNIO-1 task-2] UUZnzj3WSZmLVbymg6z7Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8, base path is set to: null +09:00:42.367 [XNIO-1 task-2] UUZnzj3WSZmLVbymg6z7Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.367 [XNIO-1 task-2] UUZnzj3WSZmLVbymg6z7Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.367 [XNIO-1 task-2] UUZnzj3WSZmLVbymg6z7Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8, base path is set to: null +09:00:42.368 [XNIO-1 task-2] UUZnzj3WSZmLVbymg6z7Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", clientId) +09:00:42.375 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.376 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.376 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "9fdde6a5-b6b4-4d12-abdf-863660a3bf3f", {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "6d09cc41-6cdf-4a00-929e-753a684c", {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6d09cc41-6cdf-4a00-929e-753a684c","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.377 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.378 [XNIO-1 task-2] xpq4IgwjT6-CxYNB46m7rg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.383 [XNIO-1 task-2] xD_IumsQQzWP4iiI9bRtvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854, base path is set to: null +09:00:42.383 [XNIO-1 task-2] xD_IumsQQzWP4iiI9bRtvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.383 [XNIO-1 task-2] xD_IumsQQzWP4iiI9bRtvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.383 [XNIO-1 task-2] xD_IumsQQzWP4iiI9bRtvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854, base path is set to: null +09:00:42.384 [XNIO-1 task-2] xD_IumsQQzWP4iiI9bRtvA DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", clientId) +09:00:42.388 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.388 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.391 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.391 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.391 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:42.391 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG com.networknt.schema.TypeValidator debug - validate( "0ab1b246-f52a-45e6-befe-432561c5501b", {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:42.392 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.392 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.392 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG com.networknt.schema.TypeValidator debug - validate( "66e078e7-0810-41b1-89e4-d325e929", {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:42.392 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.392 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"66e078e7-0810-41b1-89e4-d325e929","clientDesc":"0ab1b246-f52a-45e6-befe-432561c5501b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.392 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.392 [XNIO-1 task-2] QBhURtGASZWaVZ7urI4fng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.395 [XNIO-1 task-2] _LKCCsT6RW-tAETogbrLOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9, base path is set to: null +09:00:42.396 [XNIO-1 task-2] _LKCCsT6RW-tAETogbrLOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.397 [XNIO-1 task-2] _LKCCsT6RW-tAETogbrLOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.397 [XNIO-1 task-2] _LKCCsT6RW-tAETogbrLOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9, base path is set to: null +09:00:42.397 [XNIO-1 task-2] _LKCCsT6RW-tAETogbrLOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9", "1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9", clientId) +09:00:42.401 [XNIO-1 task-2] 8c0BRJiPSb-dgBIqzM55HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.401 [XNIO-1 task-2] 8c0BRJiPSb-dgBIqzM55HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.401 [XNIO-1 task-2] 8c0BRJiPSb-dgBIqzM55HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.402 [XNIO-1 task-2] 8c0BRJiPSb-dgBIqzM55HQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.419 [XNIO-1 task-2] VC7uqOwmRjaEaXQdzpdsxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:42.419 [XNIO-1 task-2] VC7uqOwmRjaEaXQdzpdsxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.419 [XNIO-1 task-2] VC7uqOwmRjaEaXQdzpdsxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:42.419 [XNIO-1 task-2] VC7uqOwmRjaEaXQdzpdsxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:42.420 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c179418c +09:00:42.431 [XNIO-1 task-2] VC7uqOwmRjaEaXQdzpdsxA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.436 [XNIO-1 task-2] VC7uqOwmRjaEaXQdzpdsxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.440 [XNIO-1 task-2] TlqY7pOgSs6k18ilXXQ3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce8aef79-2ad2-400f-b080-b5af38a3ab19 +09:00:42.440 [XNIO-1 task-2] TlqY7pOgSs6k18ilXXQ3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.440 [XNIO-1 task-2] TlqY7pOgSs6k18ilXXQ3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:42.441 [XNIO-1 task-2] TlqY7pOgSs6k18ilXXQ3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce8aef79-2ad2-400f-b080-b5af38a3ab19 +09:00:42.448 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ce8aef79-2ad2-400f-b080-b5af38a3ab19 +09:00:42.462 [XNIO-1 task-2] ygkU0sfqRMe6aPZI1lm8jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.462 [XNIO-1 task-2] ygkU0sfqRMe6aPZI1lm8jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.462 [XNIO-1 task-2] ygkU0sfqRMe6aPZI1lm8jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.463 [XNIO-1 task-2] ygkU0sfqRMe6aPZI1lm8jA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.489 [XNIO-1 task-2] TBkKgjORRUeNqVSB43vu-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.489 [XNIO-1 task-2] TBkKgjORRUeNqVSB43vu-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.489 [XNIO-1 task-2] TBkKgjORRUeNqVSB43vu-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.489 [XNIO-1 task-2] TBkKgjORRUeNqVSB43vu-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.512 [XNIO-1 task-2] N7sDJA-7QUqG0Oel2ckWVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.514 [XNIO-1 task-2] N7sDJA-7QUqG0Oel2ckWVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.514 [XNIO-1 task-2] N7sDJA-7QUqG0Oel2ckWVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.514 [XNIO-1 task-2] N7sDJA-7QUqG0Oel2ckWVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.534 [XNIO-1 task-2] 86-weRo3SQS-6izq9WZ4GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:42.534 [XNIO-1 task-2] 86-weRo3SQS-6izq9WZ4GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.534 [XNIO-1 task-2] 86-weRo3SQS-6izq9WZ4GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:42.534 [XNIO-1 task-2] 86-weRo3SQS-6izq9WZ4GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:42.534 [XNIO-1 task-2] 86-weRo3SQS-6izq9WZ4GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.569 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.570 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.570 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.571 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0299cf65-df4b-45b2-ac75-0b9466a5","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.572 [XNIO-1 task-2] _76Z0WGERNyEbKLDJ5-bUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.575 [XNIO-1 task-2] AOGC-JgZSgiImIqT_IS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.575 [XNIO-1 task-2] AOGC-JgZSgiImIqT_IS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.575 [XNIO-1 task-2] AOGC-JgZSgiImIqT_IS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.576 [XNIO-1 task-2] AOGC-JgZSgiImIqT_IS58Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.586 [XNIO-1 task-2] pV3ZrbwPTISI-M74XDr7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.587 [XNIO-1 task-2] pV3ZrbwPTISI-M74XDr7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.587 [XNIO-1 task-2] pV3ZrbwPTISI-M74XDr7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.587 [XNIO-1 task-2] pV3ZrbwPTISI-M74XDr7WA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.607 [XNIO-1 task-2] IZrXO03bSzWvWuQHrq7zaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.607 [XNIO-1 task-2] IZrXO03bSzWvWuQHrq7zaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.611 [XNIO-1 task-2] IZrXO03bSzWvWuQHrq7zaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.611 [XNIO-1 task-2] IZrXO03bSzWvWuQHrq7zaQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.639 [XNIO-1 task-2] YGJ-8L8QT-ulkMAJK3pfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.640 [XNIO-1 task-2] YGJ-8L8QT-ulkMAJK3pfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.640 [XNIO-1 task-2] YGJ-8L8QT-ulkMAJK3pfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.681 [XNIO-1 task-2] 2u_nf_Y3R7C1eFLvDnr6tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12a2b987-9f1b-4715-8464-75dbd666f32c +09:00:42.681 [XNIO-1 task-2] 2u_nf_Y3R7C1eFLvDnr6tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.681 [XNIO-1 task-2] 2u_nf_Y3R7C1eFLvDnr6tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:42.682 [XNIO-1 task-2] 2u_nf_Y3R7C1eFLvDnr6tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12a2b987-9f1b-4715-8464-75dbd666f32c +09:00:42.683 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5865cdc3 +09:00:42.687 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5865cdc3 +09:00:42.701 [XNIO-1 task-2] aRpsMyilRfSz4TE6IIl3sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:42.702 [XNIO-1 task-2] aRpsMyilRfSz4TE6IIl3sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.702 [XNIO-1 task-2] aRpsMyilRfSz4TE6IIl3sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +Jun 29, 2024 9:00:43 AM com.hazelcast.map.impl.operation.DeleteOperation +09:00:42.702 [XNIO-1 task-2] aRpsMyilRfSz4TE6IIl3sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:42.711 [XNIO-1 task-2] aRpsMyilRfSz4TE6IIl3sQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.712 [XNIO-1 task-2] aRpsMyilRfSz4TE6IIl3sQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.717 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.718 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.718 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "a8723b77-c244-4fe3-a280-b91edb4f648c", {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc85e53b-0797-4836-833f-723e5d40", {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.719 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dc85e53b-0797-4836-833f-723e5d40","clientDesc":"a8723b77-c244-4fe3-a280-b91edb4f648c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.720 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.721 [XNIO-1 task-2] Jm9cTpM0RQyzJh7hTnvsdg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:42.733 [XNIO-1 task-2] POD0X5JeT9qKgOtYbLfRCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.733 [XNIO-1 task-2] POD0X5JeT9qKgOtYbLfRCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.733 [XNIO-1 task-2] POD0X5JeT9qKgOtYbLfRCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.733 [XNIO-1 task-2] POD0X5JeT9qKgOtYbLfRCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.751 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5865cdc3 +09:00:42.757 [XNIO-1 task-2] UIT3gnSlSbytFGYWunvlUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.757 [XNIO-1 task-2] UIT3gnSlSbytFGYWunvlUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.757 [XNIO-1 task-2] UIT3gnSlSbytFGYWunvlUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.805 [XNIO-1 task-2] 0uPgZcwiSBans4y1f4bW5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.805 [XNIO-1 task-2] 0uPgZcwiSBans4y1f4bW5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.806 [XNIO-1 task-2] 0uPgZcwiSBans4y1f4bW5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.806 [XNIO-1 task-2] 0uPgZcwiSBans4y1f4bW5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.836 [XNIO-1 task-2] m5OaQFQ_TaCVyEYpuhr_Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.836 [XNIO-1 task-2] m5OaQFQ_TaCVyEYpuhr_Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.837 [XNIO-1 task-2] m5OaQFQ_TaCVyEYpuhr_Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.881 [XNIO-1 task-2] pjtRBYG2R46t6W8lqLUzfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854 +09:00:42.881 [XNIO-1 task-2] pjtRBYG2R46t6W8lqLUzfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.881 [XNIO-1 task-2] pjtRBYG2R46t6W8lqLUzfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:42.882 [XNIO-1 task-2] pjtRBYG2R46t6W8lqLUzfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7ac70c-8b7c-4c10-84d3-151e3e66a854 +09:00:42.888 [XNIO-1 task-2] ObokS4kjTzauGZzIApPpZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.888 [XNIO-1 task-2] ObokS4kjTzauGZzIApPpZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.889 [XNIO-1 task-2] ObokS4kjTzauGZzIApPpZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.889 [XNIO-1 task-2] ObokS4kjTzauGZzIApPpZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.904 [XNIO-1 task-2] xHM7Gg8mQFO_6wG9hHctBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.905 [XNIO-1 task-2] xHM7Gg8mQFO_6wG9hHctBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.905 [XNIO-1 task-2] xHM7Gg8mQFO_6wG9hHctBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.944 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b098b31-004c-4716-95fd-2ee199c7fc6e +09:00:42.944 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c179418c +09:00:42.945 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b098b31-004c-4716-95fd-2ee199c7fc6e +09:00:42.948 [XNIO-1 task-2] rwFptM09Q_SL5ffwClHcOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 +09:00:42.948 [XNIO-1 task-2] rwFptM09Q_SL5ffwClHcOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.948 [XNIO-1 task-2] rwFptM09Q_SL5ffwClHcOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:42.948 [XNIO-1 task-2] rwFptM09Q_SL5ffwClHcOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 +09:00:42.953 [XNIO-1 task-2] vwUCoeTJRzC20gSXkTwxXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.953 [XNIO-1 task-2] vwUCoeTJRzC20gSXkTwxXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.954 [XNIO-1 task-2] vwUCoeTJRzC20gSXkTwxXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.954 [XNIO-1 task-2] vwUCoeTJRzC20gSXkTwxXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.978 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.978 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:42.978 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:42.979 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.979 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.980 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.980 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.980 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:42.980 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:42.980 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.981 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.981 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3068481e-4f40-4418-8638-f1b54eb4","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.981 [XNIO-1 task-2] 9SOQuhkTQbKJpz8CO6KJ9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:42.986 [XNIO-1 task-2] Qze1K0vrTHCAyZrkQC2ndQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.986 [XNIO-1 task-2] Qze1K0vrTHCAyZrkQC2ndQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.987 [XNIO-1 task-2] Qze1K0vrTHCAyZrkQC2ndQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:42.987 [XNIO-1 task-2] Qze1K0vrTHCAyZrkQC2ndQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.007 [XNIO-1 task-2] kHfh5EqZQuOjf9TKJY2rEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:43.009 [XNIO-1 task-2] kHfh5EqZQuOjf9TKJY2rEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.009 [XNIO-1 task-2] kHfh5EqZQuOjf9TKJY2rEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.009 [XNIO-1 task-2] kHfh5EqZQuOjf9TKJY2rEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:43.011 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:46c127ea-5608-48a9-8c7d-a14ab59596d9 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:00:43.030 [XNIO-1 task-2] kHfh5EqZQuOjf9TKJY2rEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.036 [XNIO-1 task-2] y7c0VzLWTk6nahONTxwwNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.036 [XNIO-1 task-2] y7c0VzLWTk6nahONTxwwNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.037 [XNIO-1 task-2] y7c0VzLWTk6nahONTxwwNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.037 [XNIO-1 task-2] y7c0VzLWTk6nahONTxwwNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.048 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.049 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.050 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.050 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.050 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.051 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.051 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.051 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:43.051 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:43.051 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.051 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.051 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0274308-3968-4061-931c-2aa4b41e","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.052 [XNIO-1 task-2] KfNV61khQz2nKqP60RCY5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:43.061 [XNIO-1 task-2] eb20bJkFT9CEXWcTFIK0Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:43.061 [XNIO-1 task-2] eb20bJkFT9CEXWcTFIK0Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.061 [XNIO-1 task-2] eb20bJkFT9CEXWcTFIK0Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.061 [XNIO-1 task-2] eb20bJkFT9CEXWcTFIK0Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:43.063 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bf09f6e7 +09:00:43.065 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bf09f6e7 +09:00:43.070 [XNIO-1 task-2] _iYGviZwR0KBKMW1Xlyyhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.070 [XNIO-1 task-2] _iYGviZwR0KBKMW1Xlyyhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.071 [XNIO-1 task-2] _iYGviZwR0KBKMW1Xlyyhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.130 [XNIO-1 task-2] ugQjYsKgRqm1xZTcMjebHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9, base path is set to: null +09:00:43.130 [XNIO-1 task-2] ugQjYsKgRqm1xZTcMjebHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.130 [XNIO-1 task-2] ugQjYsKgRqm1xZTcMjebHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.131 [XNIO-1 task-2] ugQjYsKgRqm1xZTcMjebHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9, base path is set to: null +09:00:43.131 [XNIO-1 task-2] ugQjYsKgRqm1xZTcMjebHA DEBUG com.networknt.schema.TypeValidator debug - validate( "46c127ea-5608-48a9-8c7d-a14ab59596d9", "46c127ea-5608-48a9-8c7d-a14ab59596d9", clientId) +09:00:43.135 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:00:43.136 [XNIO-1 task-2] ugQjYsKgRqm1xZTcMjebHA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +09:00:43.136 [XNIO-1 task-2] ugQjYsKgRqm1xZTcMjebHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:43.142 [XNIO-1 task-2] w_w03q9sT1C9iaU6942d3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:00:43.142 [XNIO-1 task-2] w_w03q9sT1C9iaU6942d3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.142 [XNIO-1 task-2] w_w03q9sT1C9iaU6942d3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.143 [XNIO-1 task-2] w_w03q9sT1C9iaU6942d3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377, base path is set to: null +09:00:43.143 [XNIO-1 task-2] w_w03q9sT1C9iaU6942d3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 +09:00:43.150 [XNIO-1 task-2] w_w03q9sT1C9iaU6942d3Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +Jun 29, 2024 9:00:43 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:212) + ... 13 more + + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.150 [XNIO-1 task-2] w_w03q9sT1C9iaU6942d3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:43.153 [XNIO-1 task-2] VwQ63INjSPaEcbGrJn6VbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:43.153 [XNIO-1 task-2] VwQ63INjSPaEcbGrJn6VbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.153 [XNIO-1 task-2] VwQ63INjSPaEcbGrJn6VbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.154 [XNIO-1 task-2] VwQ63INjSPaEcbGrJn6VbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9 +09:00:43.157 [XNIO-1 task-2] ITz0OmUvSFumfPDz4o--fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.160 [XNIO-1 task-2] ITz0OmUvSFumfPDz4o--fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.161 [XNIO-1 task-2] ITz0OmUvSFumfPDz4o--fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.182 [XNIO-1 task-2] 63oOXpLJRXO1Aesf_shEkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.183 [XNIO-1 task-2] 63oOXpLJRXO1Aesf_shEkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.183 [XNIO-1 task-2] 63oOXpLJRXO1Aesf_shEkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.183 [XNIO-1 task-2] 63oOXpLJRXO1Aesf_shEkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.201 [XNIO-1 task-2] tQxkek-GQb-O2gGR2mCAAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.201 [XNIO-1 task-2] tQxkek-GQb-O2gGR2mCAAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.201 [XNIO-1 task-2] tQxkek-GQb-O2gGR2mCAAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.221 [XNIO-1 task-2] tQxkek-GQb-O2gGR2mCAAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.230 [XNIO-1 task-2] tQVhACgpSxGZj2ESYQ4qeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377, base path is set to: null +09:00:43.230 [XNIO-1 task-2] tQVhACgpSxGZj2ESYQ4qeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.230 [XNIO-1 task-2] tQVhACgpSxGZj2ESYQ4qeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.231 [XNIO-1 task-2] tQVhACgpSxGZj2ESYQ4qeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377, base path is set to: null +09:00:43.231 [XNIO-1 task-2] tQVhACgpSxGZj2ESYQ4qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", clientId) +09:00:43.244 [XNIO-1 task-2] iQhmZ80MSXe48LUNkXWKYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.244 [XNIO-1 task-2] iQhmZ80MSXe48LUNkXWKYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.245 [XNIO-1 task-2] iQhmZ80MSXe48LUNkXWKYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.269 [XNIO-1 task-2] s9zSqlDgQ8aJV7Y2PEaJiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.269 [XNIO-1 task-2] s9zSqlDgQ8aJV7Y2PEaJiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.269 [XNIO-1 task-2] s9zSqlDgQ8aJV7Y2PEaJiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.293 [XNIO-1 task-2] I9MVRya4Rdef9rTFoPGHfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.293 [XNIO-1 task-2] I9MVRya4Rdef9rTFoPGHfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.293 [XNIO-1 task-2] I9MVRya4Rdef9rTFoPGHfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.294 [XNIO-1 task-2] I9MVRya4Rdef9rTFoPGHfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.304 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e571cf38-0cb1-4d4b-aba0-e278dc884732 +09:00:43.309 [XNIO-1 task-2] K4OgHRY_RCq4PBYvHJW2ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.310 [XNIO-1 task-2] K4OgHRY_RCq4PBYvHJW2ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.310 [XNIO-1 task-2] K4OgHRY_RCq4PBYvHJW2ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.310 [XNIO-1 task-2] K4OgHRY_RCq4PBYvHJW2ew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.337 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e571cf38-0cb1-4d4b-aba0-e278dc884732 +09:00:43.349 [XNIO-1 task-2] k13tdPfUTP-ReqrhB1NGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db0a0d23-0703-4c9a-ab1e-8ad0c277516a +09:00:43.349 [XNIO-1 task-2] k13tdPfUTP-ReqrhB1NGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.349 [XNIO-1 task-2] k13tdPfUTP-ReqrhB1NGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.350 [XNIO-1 task-2] k13tdPfUTP-ReqrhB1NGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db0a0d23-0703-4c9a-ab1e-8ad0c277516a +09:00:43.367 [XNIO-1 task-2] g0k6UuyJRaCXnjocLVcZjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67, base path is set to: null +09:00:43.368 [XNIO-1 task-2] g0k6UuyJRaCXnjocLVcZjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.368 [XNIO-1 task-2] g0k6UuyJRaCXnjocLVcZjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.368 [XNIO-1 task-2] g0k6UuyJRaCXnjocLVcZjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67, base path is set to: null +09:00:43.368 [XNIO-1 task-2] g0k6UuyJRaCXnjocLVcZjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", clientId) +09:00:43.372 [XNIO-1 task-2] ek4f0gWyRe6tRAQmp0RjRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.373 [XNIO-1 task-2] ek4f0gWyRe6tRAQmp0RjRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.373 [XNIO-1 task-2] ek4f0gWyRe6tRAQmp0RjRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.373 [XNIO-1 task-2] ek4f0gWyRe6tRAQmp0RjRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.390 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.391 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.391 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "f68611ca-abbc-45cc-85ef-b31467d8f0d3", {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "15c1632e-4b93-4cb5-9c21-511555be", {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"15c1632e-4b93-4cb5-9c21-511555be","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.392 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.393 [XNIO-1 task-2] H7ftMi5zQheTTuJVfyOCjg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.402 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.403 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.403 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.404 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8ab78f7-54ef-44ff-bd30-ebc82e31","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.405 [XNIO-1 task-2] vAdJRmWWQyKjMl7KFd-LyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:43.408 [XNIO-1 task-2] Q1u_1Tx7SyS7cCvOvC8WNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb +09:00:43.409 [XNIO-1 task-2] Q1u_1Tx7SyS7cCvOvC8WNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.409 [XNIO-1 task-2] Q1u_1Tx7SyS7cCvOvC8WNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.409 [XNIO-1 task-2] Q1u_1Tx7SyS7cCvOvC8WNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb +09:00:43.414 [XNIO-1 task-2] yYoWG0Q-SHaNPUN-ArFaDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:43.414 [XNIO-1 task-2] yYoWG0Q-SHaNPUN-ArFaDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.414 [XNIO-1 task-2] yYoWG0Q-SHaNPUN-ArFaDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.416 [XNIO-1 task-2] yYoWG0Q-SHaNPUN-ArFaDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb, base path is set to: null +09:00:43.417 [XNIO-1 task-2] yYoWG0Q-SHaNPUN-ArFaDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:43.426 [XNIO-1 task-2] yYoWG0Q-SHaNPUN-ArFaDQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.429 [XNIO-1 task-2] QYmb0N__RGG4UUcC7J-72A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.429 [XNIO-1 task-2] QYmb0N__RGG4UUcC7J-72A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.429 [XNIO-1 task-2] QYmb0N__RGG4UUcC7J-72A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.430 [XNIO-1 task-2] QYmb0N__RGG4UUcC7J-72A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.443 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c6faa8ee +09:00:43.447 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c6faa8ee +09:00:43.454 [XNIO-1 task-2] bCNfzB1WRZKjap_nrapT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/36eaa917-505d-4e8c-b7cb-a980772165b3 +09:00:43.454 [XNIO-1 task-2] bCNfzB1WRZKjap_nrapT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.455 [XNIO-1 task-2] bCNfzB1WRZKjap_nrapT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.455 [XNIO-1 task-2] bCNfzB1WRZKjap_nrapT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/36eaa917-505d-4e8c-b7cb-a980772165b3 +09:00:43.464 [XNIO-1 task-2] eLik4L5CRKyd-Bkmagl4_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.464 [XNIO-1 task-2] eLik4L5CRKyd-Bkmagl4_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.465 [XNIO-1 task-2] eLik4L5CRKyd-Bkmagl4_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.466 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c6faa8ee +09:00:43.487 [XNIO-1 task-2] G6bDDHFiRXq47B6HQGAh2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 +09:00:43.488 [XNIO-1 task-2] G6bDDHFiRXq47B6HQGAh2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.488 [XNIO-1 task-2] G6bDDHFiRXq47B6HQGAh2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.488 [XNIO-1 task-2] G6bDDHFiRXq47B6HQGAh2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 +09:00:43.492 [XNIO-1 task-2] rE8CKu6IT2G-TWzOSTSdxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c81e9bba-1576-4b38-b2dd-a8edfed9a1d3, base path is set to: null +09:00:43.492 [XNIO-1 task-2] rE8CKu6IT2G-TWzOSTSdxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.492 [XNIO-1 task-2] rE8CKu6IT2G-TWzOSTSdxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.492 [XNIO-1 task-2] rE8CKu6IT2G-TWzOSTSdxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c81e9bba-1576-4b38-b2dd-a8edfed9a1d3, base path is set to: null +09:00:43.492 [XNIO-1 task-2] rE8CKu6IT2G-TWzOSTSdxA DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", clientId) +09:00:43.502 [XNIO-1 task-2] bCNTGCndSKepBANFj20YYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.502 [XNIO-1 task-2] bCNTGCndSKepBANFj20YYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.502 [XNIO-1 task-2] bCNTGCndSKepBANFj20YYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.541 [XNIO-1 task-2] qd0yAxzsTFa-GKbYSiDedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.541 [XNIO-1 task-2] qd0yAxzsTFa-GKbYSiDedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.541 [XNIO-1 task-2] qd0yAxzsTFa-GKbYSiDedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.575 [XNIO-1 task-2] 7Zy6kOxcS7WH4fcBcZaUgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.575 [XNIO-1 task-2] 7Zy6kOxcS7WH4fcBcZaUgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.575 [XNIO-1 task-2] 7Zy6kOxcS7WH4fcBcZaUgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.577 [XNIO-1 task-2] 7Zy6kOxcS7WH4fcBcZaUgA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.599 [XNIO-1 task-2] 8XRfb2PnT5ivu-HlFNYosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.599 [XNIO-1 task-2] 8XRfb2PnT5ivu-HlFNYosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.599 [XNIO-1 task-2] 8XRfb2PnT5ivu-HlFNYosg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.601 [XNIO-1 task-2] 8XRfb2PnT5ivu-HlFNYosg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.620 [XNIO-1 task-2] G-c0M3uTTFep82ScEPUqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:43.620 [XNIO-1 task-2] G-c0M3uTTFep82ScEPUqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.620 [XNIO-1 task-2] G-c0M3uTTFep82ScEPUqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.620 [XNIO-1 task-2] G-c0M3uTTFep82ScEPUqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:43.621 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:46c127ea-5608-48a9-8c7d-a14ab59596d9 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:00:43.629 [XNIO-1 task-2] G-c0M3uTTFep82ScEPUqXw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.633 [XNIO-1 task-2] piCQqgJiQ8eFvg8nojULPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9, base path is set to: null +09:00:43.633 [XNIO-1 task-2] piCQqgJiQ8eFvg8nojULPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.633 [XNIO-1 task-2] piCQqgJiQ8eFvg8nojULPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.633 [XNIO-1 task-2] piCQqgJiQ8eFvg8nojULPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9, base path is set to: null +09:00:43.633 [XNIO-1 task-2] piCQqgJiQ8eFvg8nojULPg DEBUG com.networknt.schema.TypeValidator debug - validate( "46c127ea-5608-48a9-8c7d-a14ab59596d9", "46c127ea-5608-48a9-8c7d-a14ab59596d9", clientId) +09:00:43.641 [XNIO-1 task-2] 3uUFrrTWQ0aixLPW6cvrPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.641 [XNIO-1 task-2] 3uUFrrTWQ0aixLPW6cvrPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.642 [XNIO-1 task-2] 3uUFrrTWQ0aixLPW6cvrPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.671 [XNIO-1 task-2] cE7TpNz1T12DtAdnFLbIHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:43.672 [XNIO-1 task-2] cE7TpNz1T12DtAdnFLbIHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.672 [XNIO-1 task-2] cE7TpNz1T12DtAdnFLbIHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.672 [XNIO-1 task-2] cE7TpNz1T12DtAdnFLbIHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:43.672 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:46c127ea-5608-48a9-8c7d-a14ab59596d9 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:00:43.680 [XNIO-1 task-2] cE7TpNz1T12DtAdnFLbIHA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.686 [XNIO-1 task-2] 7YRNF7yhR-i2kRgysc0pKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.688 [XNIO-1 task-2] 7YRNF7yhR-i2kRgysc0pKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.688 [XNIO-1 task-2] 7YRNF7yhR-i2kRgysc0pKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.689 [XNIO-1 task-2] 7YRNF7yhR-i2kRgysc0pKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.707 [XNIO-1 task-2] 62Igt05CTqGNbUdsOWDLyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.708 [XNIO-1 task-2] 62Igt05CTqGNbUdsOWDLyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.709 [XNIO-1 task-2] 62Igt05CTqGNbUdsOWDLyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.709 [XNIO-1 task-2] 62Igt05CTqGNbUdsOWDLyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.726 [XNIO-1 task-2] rx7oGlerT7WPEMVZ7zeU8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7f8d99aa-3067-4a7c-a906-ba92e7312b1a, base path is set to: null +09:00:43.726 [XNIO-1 task-2] rx7oGlerT7WPEMVZ7zeU8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.727 [XNIO-1 task-2] rx7oGlerT7WPEMVZ7zeU8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.727 [XNIO-1 task-2] rx7oGlerT7WPEMVZ7zeU8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7f8d99aa-3067-4a7c-a906-ba92e7312b1a, base path is set to: null +09:00:43.727 [XNIO-1 task-2] rx7oGlerT7WPEMVZ7zeU8g DEBUG com.networknt.schema.TypeValidator debug - validate( "7f8d99aa-3067-4a7c-a906-ba92e7312b1a", "7f8d99aa-3067-4a7c-a906-ba92e7312b1a", clientId) +09:00:43.732 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.732 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.733 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.733 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "4d12c556-46ec-4306-80a1-4918c25dea39", {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "2777dff5-8e23-4152-94c7-b1d274ab", {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2777dff5-8e23-4152-94c7-b1d274ab","clientDesc":"4d12c556-46ec-4306-80a1-4918c25dea39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.734 [XNIO-1 task-2] UwK-LgCNSNmuLUWd2XFhxA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.740 [XNIO-1 task-2] InMZjS5gQhqcfvzJD2Ctrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7f8d99aa-3067-4a7c-a906-ba92e7312b1a, base path is set to: null +09:00:43.740 [XNIO-1 task-2] InMZjS5gQhqcfvzJD2Ctrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.740 [XNIO-1 task-2] InMZjS5gQhqcfvzJD2Ctrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.740 [XNIO-1 task-2] InMZjS5gQhqcfvzJD2Ctrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7f8d99aa-3067-4a7c-a906-ba92e7312b1a, base path is set to: null +09:00:43.741 [XNIO-1 task-2] InMZjS5gQhqcfvzJD2Ctrw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f8d99aa-3067-4a7c-a906-ba92e7312b1a", "7f8d99aa-3067-4a7c-a906-ba92e7312b1a", clientId) +09:00:43.779 [XNIO-1 task-2] Xa7QGgbTQZOFkXIGmRhCcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.779 [XNIO-1 task-2] Xa7QGgbTQZOFkXIGmRhCcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.780 [XNIO-1 task-2] Xa7QGgbTQZOFkXIGmRhCcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.825 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c179418c +09:00:43.856 [XNIO-1 task-2] BWleDa2jSm-XIRnfS4EYHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 +09:00:43.856 [XNIO-1 task-2] BWleDa2jSm-XIRnfS4EYHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.856 [XNIO-1 task-2] BWleDa2jSm-XIRnfS4EYHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.856 [XNIO-1 task-2] BWleDa2jSm-XIRnfS4EYHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ce746164-9352-48e3-b808-13f7beefc377 +09:00:43.862 [XNIO-1 task-2] Q8Nrf4JxRaGv19lqkPTtlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d4a294a-bf78-4519-8ab1-6ba35ab4fb43, base path is set to: null +09:00:43.862 [XNIO-1 task-2] Q8Nrf4JxRaGv19lqkPTtlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.862 [XNIO-1 task-2] Q8Nrf4JxRaGv19lqkPTtlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.862 [XNIO-1 task-2] Q8Nrf4JxRaGv19lqkPTtlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d4a294a-bf78-4519-8ab1-6ba35ab4fb43, base path is set to: null +09:00:43.863 [XNIO-1 task-2] Q8Nrf4JxRaGv19lqkPTtlg DEBUG com.networknt.schema.TypeValidator debug - validate( "3d4a294a-bf78-4519-8ab1-6ba35ab4fb43", "3d4a294a-bf78-4519-8ab1-6ba35ab4fb43", clientId) +09:00:43.884 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.884 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.885 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.885 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.885 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:43.886 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f68611ca-abbc-45cc-85ef-b31467d8f0d3", {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:43.886 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:43.886 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:43.886 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eece8993-9042-4b9a-874a-171d073e", {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:43.887 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.887 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"eece8993-9042-4b9a-874a-171d073e","clientDesc":"f68611ca-abbc-45cc-85ef-b31467d8f0d3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.887 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.887 [XNIO-1 task-2] saPBJ3ZAQrOhN1YZnvBCzQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.891 [XNIO-1 task-2] 50Je8mPWR96d8sQCrlI73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67, base path is set to: null +09:00:43.892 [XNIO-1 task-2] 50Je8mPWR96d8sQCrlI73g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.892 [XNIO-1 task-2] 50Je8mPWR96d8sQCrlI73g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.892 [XNIO-1 task-2] 50Je8mPWR96d8sQCrlI73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67, base path is set to: null +09:00:43.892 [XNIO-1 task-2] 50Je8mPWR96d8sQCrlI73g DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:43.905 [XNIO-1 task-2] 50Je8mPWR96d8sQCrlI73g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.911 [XNIO-1 task-2] fKEcQmelQVSIjzfvya5nTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.911 [XNIO-1 task-2] fKEcQmelQVSIjzfvya5nTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.912 [XNIO-1 task-2] fKEcQmelQVSIjzfvya5nTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.943 [XNIO-1 task-2] M5Gw2cLoR2Kw-m7iQ9w9XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dcef276c-c5fc-463b-a1eb-7bbbd942067c, base path is set to: null +09:00:43.943 [XNIO-1 task-2] M5Gw2cLoR2Kw-m7iQ9w9XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.943 [XNIO-1 task-2] M5Gw2cLoR2Kw-m7iQ9w9XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:43.944 [XNIO-1 task-2] M5Gw2cLoR2Kw-m7iQ9w9XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dcef276c-c5fc-463b-a1eb-7bbbd942067c, base path is set to: null +09:00:43.944 [XNIO-1 task-2] M5Gw2cLoR2Kw-m7iQ9w9XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcef276c-c5fc-463b-a1eb-7bbbd942067c", "dcef276c-c5fc-463b-a1eb-7bbbd942067c", clientId) +09:00:43.958 [XNIO-1 task-2] W4IxH5BbRCemBDRstnyd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f +09:00:43.958 [XNIO-1 task-2] W4IxH5BbRCemBDRstnyd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.958 [XNIO-1 task-2] W4IxH5BbRCemBDRstnyd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:43.959 [XNIO-1 task-2] W4IxH5BbRCemBDRstnyd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f +09:00:43.968 [XNIO-1 task-2] QCHCi8scQtOSqpQ6BOO-hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.968 [XNIO-1 task-2] QCHCi8scQtOSqpQ6BOO-hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:43.968 [XNIO-1 task-2] QCHCi8scQtOSqpQ6BOO-hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:43.974 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9d653a8c-8f67-4030-b561-2da034a07161 +09:00:43.975 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9d653a8c-8f67-4030-b561-2da034a07161 +09:00:43.996 [XNIO-1 task-2] dAwcrXHrQOy2ZXwU0DYOYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.996 [XNIO-1 task-2] dAwcrXHrQOy2ZXwU0DYOYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.996 [XNIO-1 task-2] dAwcrXHrQOy2ZXwU0DYOYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:43.997 [XNIO-1 task-2] dAwcrXHrQOy2ZXwU0DYOYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.048 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.048 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.048 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a5beef8f-38a6-44fa-9d15-55d2a7cd8f69", {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c509d09f-91c8-4b66-9b53-d135de78", {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.049 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c509d09f-91c8-4b66-9b53-d135de78","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.052 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:44.052 [XNIO-1 task-2] bYxTYz3mT0au8UAkSB5GmQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:44.056 [XNIO-1 task-2] ZjTVNRfhRkCDAC96HJZdXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.062 [XNIO-1 task-2] ZjTVNRfhRkCDAC96HJZdXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.062 [XNIO-1 task-2] ZjTVNRfhRkCDAC96HJZdXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.063 [XNIO-1 task-2] ZjTVNRfhRkCDAC96HJZdXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.078 [XNIO-1 task-2] JwOijh8NTBOYmoROat-8WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.079 [XNIO-1 task-2] JwOijh8NTBOYmoROat-8WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.079 [XNIO-1 task-2] JwOijh8NTBOYmoROat-8WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.110 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.110 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:44.111 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.112 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.112 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8cec4f9-2374-4225-bff9-103c6056","clientDesc":"30451016-8424-4a21-aff6-4d560bc493ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:44.112 [XNIO-1 task-2] fMWMH3RTQ729z_-mIRQoDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:44.121 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.121 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.121 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b", {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c1c22d4-d248-4bf2-bbb0-ebadd8fe", {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0c1c22d4-d248-4bf2-bbb0-ebadd8fe","clientDesc":"72d4182a-97ea-41f7-8bd6-3ac9fadd0f1b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.122 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:44.151 [XNIO-1 task-2] E5R1X0X7T8KKU5d6FQm9rQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:44.152 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4952fece +09:00:44.154 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4952fece +09:00:44.155 [XNIO-1 task-2] mBzUViY1QeuPXFdWsRZDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.155 [XNIO-1 task-2] mBzUViY1QeuPXFdWsRZDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.156 [XNIO-1 task-2] mBzUViY1QeuPXFdWsRZDJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.180 [XNIO-1 task-2] G5B6n09ZSKeBXk2XVZK-Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2a45f98-718b-41c1-97a0-4bd6420d5424 +09:00:44.180 [XNIO-1 task-2] G5B6n09ZSKeBXk2XVZK-Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.180 [XNIO-1 task-2] G5B6n09ZSKeBXk2XVZK-Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.180 [XNIO-1 task-2] G5B6n09ZSKeBXk2XVZK-Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f2a45f98-718b-41c1-97a0-4bd6420d5424 +09:00:44.186 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c179418c +09:00:44.192 [XNIO-1 task-2] Hv7Bg9ErRgGnGLTYA_vl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/068f0fda-509b-4a46-9907-29bfde3a4ffc, base path is set to: null +09:00:44.192 [XNIO-1 task-2] Hv7Bg9ErRgGnGLTYA_vl0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.192 [XNIO-1 task-2] Hv7Bg9ErRgGnGLTYA_vl0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.192 [XNIO-1 task-2] Hv7Bg9ErRgGnGLTYA_vl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/068f0fda-509b-4a46-9907-29bfde3a4ffc, base path is set to: null +09:00:44.193 [XNIO-1 task-2] Hv7Bg9ErRgGnGLTYA_vl0w DEBUG com.networknt.schema.TypeValidator debug - validate( "068f0fda-509b-4a46-9907-29bfde3a4ffc", "068f0fda-509b-4a46-9907-29bfde3a4ffc", clientId) +09:00:44.200 [XNIO-1 task-2] NntHBoBrTVimcqYKCmDyQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/068f0fda-509b-4a46-9907-29bfde3a4ffc +09:00:44.200 [XNIO-1 task-2] NntHBoBrTVimcqYKCmDyQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.200 [XNIO-1 task-2] NntHBoBrTVimcqYKCmDyQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.200 [XNIO-1 task-2] NntHBoBrTVimcqYKCmDyQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/068f0fda-509b-4a46-9907-29bfde3a4ffc +09:00:44.208 [XNIO-1 task-2] s0TVycXuReCjXhW2KoQkRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/068f0fda-509b-4a46-9907-29bfde3a4ffc, base path is set to: null +09:00:44.209 [XNIO-1 task-2] s0TVycXuReCjXhW2KoQkRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.209 [XNIO-1 task-2] s0TVycXuReCjXhW2KoQkRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.209 [XNIO-1 task-2] s0TVycXuReCjXhW2KoQkRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/068f0fda-509b-4a46-9907-29bfde3a4ffc, base path is set to: null +09:00:44.209 [XNIO-1 task-2] s0TVycXuReCjXhW2KoQkRA DEBUG com.networknt.schema.TypeValidator debug - validate( "068f0fda-509b-4a46-9907-29bfde3a4ffc", "068f0fda-509b-4a46-9907-29bfde3a4ffc", clientId) +09:00:44.222 [XNIO-1 task-2] 6kTCNiHpTuKtWkjZSo7WZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.222 [XNIO-1 task-2] 6kTCNiHpTuKtWkjZSo7WZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.222 [XNIO-1 task-2] 6kTCNiHpTuKtWkjZSo7WZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.222 [XNIO-1 task-2] 6kTCNiHpTuKtWkjZSo7WZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.237 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.237 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.238 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.238 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a2bf4129-899c-4968-975d-068083647247", {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da46a54b-2e37-4e82-9e9a-f3388bef", {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"da46a54b-2e37-4e82-9e9a-f3388bef","clientDesc":"a2bf4129-899c-4968-975d-068083647247","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.239 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:44.240 [XNIO-1 task-2] 4WkWmMXIRLaAUkKYONOiYQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:44.246 [XNIO-1 task-2] 3TelH-O4TNKxnkYUJPdt4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.246 [XNIO-1 task-2] 3TelH-O4TNKxnkYUJPdt4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.246 [XNIO-1 task-2] 3TelH-O4TNKxnkYUJPdt4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.246 [XNIO-1 task-2] 3TelH-O4TNKxnkYUJPdt4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.259 [XNIO-1 task-2] CR9Qda8-Tw25NHMXAVsa9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.260 [XNIO-1 task-2] CR9Qda8-Tw25NHMXAVsa9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.260 [XNIO-1 task-2] CR9Qda8-Tw25NHMXAVsa9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.260 [XNIO-1 task-2] CR9Qda8-Tw25NHMXAVsa9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.261 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:85be5103 +09:00:44.267 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:85be5103 +09:00:44.284 [XNIO-1 task-2] 8zAWsjaaQzKOaQL8610vcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.284 [XNIO-1 task-2] 8zAWsjaaQzKOaQL8610vcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.285 [XNIO-1 task-2] 8zAWsjaaQzKOaQL8610vcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.311 [XNIO-1 task-2] iw8Yp2kOTaqMUJmv9LWEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:44.311 [XNIO-1 task-2] iw8Yp2kOTaqMUJmv9LWEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.311 [XNIO-1 task-2] iw8Yp2kOTaqMUJmv9LWEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.311 [XNIO-1 task-2] iw8Yp2kOTaqMUJmv9LWEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:44.324 [XNIO-1 task-2] NsPLZRx-Qh6dJgIbfB_QqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.324 [XNIO-1 task-2] NsPLZRx-Qh6dJgIbfB_QqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.324 [XNIO-1 task-2] NsPLZRx-Qh6dJgIbfB_QqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.325 [XNIO-1 task-2] NsPLZRx-Qh6dJgIbfB_QqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.337 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.337 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.338 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4d8af7f9 +09:00:44.338 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.338 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.338 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:44.338 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ae4a4233-c1bd-4393-911f-cd65e9fd84e0", {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:44.338 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:44.339 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:44.339 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c67969ce-be93-44ee-b47d-902e4031", {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:44.339 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.339 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c67969ce-be93-44ee-b47d-902e4031","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.339 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:44.339 [XNIO-1 task-2] aU6OnOIsQfiWyNd2lt_IYQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:44.343 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4d8af7f9 +09:00:44.344 [XNIO-1 task-2] pkaYA3tpQk2zsMOjwzOXYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.344 [XNIO-1 task-2] pkaYA3tpQk2zsMOjwzOXYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.345 [XNIO-1 task-2] pkaYA3tpQk2zsMOjwzOXYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.345 [XNIO-1 task-2] pkaYA3tpQk2zsMOjwzOXYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.402 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0f335480-2868-4a62-a85a-226891ce2b13 +09:00:44.415 [XNIO-1 task-2] fV5bh9NfT0WATssWtQmMsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4fa61db8-a156-46e1-aea1-c96370ad3c0f, base path is set to: null +09:00:44.415 [XNIO-1 task-2] fV5bh9NfT0WATssWtQmMsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.415 [XNIO-1 task-2] fV5bh9NfT0WATssWtQmMsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.415 [XNIO-1 task-2] fV5bh9NfT0WATssWtQmMsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4fa61db8-a156-46e1-aea1-c96370ad3c0f, base path is set to: null +09:00:44.415 [XNIO-1 task-2] fV5bh9NfT0WATssWtQmMsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4fa61db8-a156-46e1-aea1-c96370ad3c0f", "4fa61db8-a156-46e1-aea1-c96370ad3c0f", clientId) +09:00:44.424 [XNIO-1 task-2] UYbUIktvTjSJW24_MzJ1SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4fa61db8-a156-46e1-aea1-c96370ad3c0f +09:00:44.424 [XNIO-1 task-2] UYbUIktvTjSJW24_MzJ1SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.424 [XNIO-1 task-2] UYbUIktvTjSJW24_MzJ1SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.424 [XNIO-1 task-2] UYbUIktvTjSJW24_MzJ1SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4fa61db8-a156-46e1-aea1-c96370ad3c0f +09:00:44.433 [XNIO-1 task-2] 8wYUm7XwTWmC59hBpbmnXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67, base path is set to: null +09:00:44.433 [XNIO-1 task-2] 8wYUm7XwTWmC59hBpbmnXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.433 [XNIO-1 task-2] 8wYUm7XwTWmC59hBpbmnXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.434 [XNIO-1 task-2] 8wYUm7XwTWmC59hBpbmnXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67, base path is set to: null +09:00:44.435 [XNIO-1 task-2] 8wYUm7XwTWmC59hBpbmnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67 +09:00:44.446 [XNIO-1 task-2] 8wYUm7XwTWmC59hBpbmnXw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:44.447 [XNIO-1 task-2] 8wYUm7XwTWmC59hBpbmnXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:44.451 [XNIO-1 task-2] SRvWj5drR0Wb4eHoOi0b-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8315cf01-e91c-4ec5-bebd-79faef8b6039 +09:00:44.451 [XNIO-1 task-2] SRvWj5drR0Wb4eHoOi0b-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.451 [XNIO-1 task-2] SRvWj5drR0Wb4eHoOi0b-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.451 [XNIO-1 task-2] SRvWj5drR0Wb4eHoOi0b-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8315cf01-e91c-4ec5-bebd-79faef8b6039 +09:00:44.477 [XNIO-1 task-2] SyMJBwhIRcWMk6YEU_NxHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.477 [XNIO-1 task-2] SyMJBwhIRcWMk6YEU_NxHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.477 [XNIO-1 task-2] SyMJBwhIRcWMk6YEU_NxHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.498 [XNIO-1 task-2] R41PyETFSIKSlxC9b2ok8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dc222341-2e27-4f1d-8e03-7d33d08d3236, base path is set to: null +09:00:44.498 [XNIO-1 task-2] R41PyETFSIKSlxC9b2ok8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.498 [XNIO-1 task-2] R41PyETFSIKSlxC9b2ok8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.498 [XNIO-1 task-2] R41PyETFSIKSlxC9b2ok8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dc222341-2e27-4f1d-8e03-7d33d08d3236, base path is set to: null +09:00:44.500 [XNIO-1 task-2] R41PyETFSIKSlxC9b2ok8g DEBUG com.networknt.schema.TypeValidator debug - validate( "dc222341-2e27-4f1d-8e03-7d33d08d3236", "dc222341-2e27-4f1d-8e03-7d33d08d3236", clientId) +09:00:44.518 [XNIO-1 task-2] er1URT1iRIGvJFRgcxVOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:44.518 [XNIO-1 task-2] er1URT1iRIGvJFRgcxVOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.518 [XNIO-1 task-2] er1URT1iRIGvJFRgcxVOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.518 [XNIO-1 task-2] er1URT1iRIGvJFRgcxVOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:44.523 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:107cf4c7 +09:00:44.529 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:107cf4c7 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:44.604 [XNIO-1 task-2] er1URT1iRIGvJFRgcxVOtA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:44.608 [XNIO-1 task-2] BN8Xe9fgRouNvnvWmQbk6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.608 [XNIO-1 task-2] BN8Xe9fgRouNvnvWmQbk6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.609 [XNIO-1 task-2] BN8Xe9fgRouNvnvWmQbk6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.624 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:107cf4c7 +09:00:44.639 [XNIO-1 task-2] -HUc0xg5R0CVz7sqAUH4MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.639 [XNIO-1 task-2] -HUc0xg5R0CVz7sqAUH4MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.639 [XNIO-1 task-2] -HUc0xg5R0CVz7sqAUH4MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.639 [XNIO-1 task-2] -HUc0xg5R0CVz7sqAUH4MA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.647 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:107cf4c7 +09:00:44.659 [XNIO-1 task-2] 3fY6zwVOQDKjzCrqT0QRag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.659 [XNIO-1 task-2] 3fY6zwVOQDKjzCrqT0QRag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.660 [XNIO-1 task-2] 3fY6zwVOQDKjzCrqT0QRag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.660 [XNIO-1 task-2] 3fY6zwVOQDKjzCrqT0QRag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.670 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4952fece +09:00:44.678 [XNIO-1 task-2] P_45V_cLSaWTcMFCWFSHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b1ae42cc-fa97-490b-af03-ec34783074a0 +09:00:44.678 [XNIO-1 task-2] P_45V_cLSaWTcMFCWFSHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.678 [XNIO-1 task-2] P_45V_cLSaWTcMFCWFSHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.678 [XNIO-1 task-2] P_45V_cLSaWTcMFCWFSHEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b1ae42cc-fa97-490b-af03-ec34783074a0 +09:00:44.690 [XNIO-1 task-2] 0BSZ5O-XTS68250uFyKPMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aaca2f3-392f-40e0-9ac2-461c7cde38e0, base path is set to: null +09:00:44.690 [XNIO-1 task-2] 0BSZ5O-XTS68250uFyKPMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.690 [XNIO-1 task-2] 0BSZ5O-XTS68250uFyKPMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.691 [XNIO-1 task-2] 0BSZ5O-XTS68250uFyKPMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aaca2f3-392f-40e0-9ac2-461c7cde38e0, base path is set to: null +09:00:44.691 [XNIO-1 task-2] 0BSZ5O-XTS68250uFyKPMw DEBUG com.networknt.schema.TypeValidator debug - validate( "9aaca2f3-392f-40e0-9ac2-461c7cde38e0", "9aaca2f3-392f-40e0-9ac2-461c7cde38e0", clientId) +09:00:44.694 [XNIO-1 task-2] Tcg5NTsGTBmlGRZIpveoCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9aaca2f3-392f-40e0-9ac2-461c7cde38e0 +09:00:44.694 [XNIO-1 task-2] Tcg5NTsGTBmlGRZIpveoCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.694 [XNIO-1 task-2] Tcg5NTsGTBmlGRZIpveoCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.694 [XNIO-1 task-2] Tcg5NTsGTBmlGRZIpveoCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9aaca2f3-392f-40e0-9ac2-461c7cde38e0 +09:00:44.700 [XNIO-1 task-2] EfFwd30XRUmPM4p1f0b7ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.700 [XNIO-1 task-2] EfFwd30XRUmPM4p1f0b7ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.700 [XNIO-1 task-2] EfFwd30XRUmPM4p1f0b7ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.717 [XNIO-1 task-2] UH8I75qbTfymKzWFs5y8sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.717 [XNIO-1 task-2] UH8I75qbTfymKzWFs5y8sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.717 [XNIO-1 task-2] UH8I75qbTfymKzWFs5y8sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.718 [XNIO-1 task-2] UH8I75qbTfymKzWFs5y8sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.752 [XNIO-1 task-2] JzNFtNrLQMCA6_2H0gd6hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/740e3802-94a4-455c-b799-87f9c7fbbd2a, base path is set to: null +09:00:44.753 [XNIO-1 task-2] JzNFtNrLQMCA6_2H0gd6hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.753 [XNIO-1 task-2] JzNFtNrLQMCA6_2H0gd6hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.753 [XNIO-1 task-2] JzNFtNrLQMCA6_2H0gd6hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/740e3802-94a4-455c-b799-87f9c7fbbd2a, base path is set to: null +09:00:44.753 [XNIO-1 task-2] JzNFtNrLQMCA6_2H0gd6hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "740e3802-94a4-455c-b799-87f9c7fbbd2a", "740e3802-94a4-455c-b799-87f9c7fbbd2a", clientId) +09:00:44.766 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.766 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.767 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.767 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.767 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:44.767 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7", {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:44.767 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:44.768 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:44.768 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ddd1960-4fa1-42b3-8adf-16609271", {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:44.768 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.768 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0ddd1960-4fa1-42b3-8adf-16609271","clientDesc":"a5c7eb91-ddf8-42cd-9cb6-d7d3a12a08c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.768 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:44.768 [XNIO-1 task-2] oo1ypghwSo69r3BnxdAiyw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:44.775 [XNIO-1 task-2] 1zyCNtIsSTCzxVpaVeNjZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.776 [XNIO-1 task-2] 1zyCNtIsSTCzxVpaVeNjZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.776 [XNIO-1 task-2] 1zyCNtIsSTCzxVpaVeNjZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.798 [XNIO-1 task-2] d9lmaNOgQYKfc9gbSk4RhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.798 [XNIO-1 task-2] d9lmaNOgQYKfc9gbSk4RhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.798 [XNIO-1 task-2] d9lmaNOgQYKfc9gbSk4RhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.800 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c179418c +09:00:44.814 [XNIO-1 task-2] tthynkqqTG-rSlMPem0tmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.814 [XNIO-1 task-2] tthynkqqTG-rSlMPem0tmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.815 [XNIO-1 task-2] tthynkqqTG-rSlMPem0tmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.840 [XNIO-1 task-2] MysxcF0PTamTJqDYTk5b7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.840 [XNIO-1 task-2] MysxcF0PTamTJqDYTk5b7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.840 [XNIO-1 task-2] MysxcF0PTamTJqDYTk5b7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.846 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c3843033-6fe5-4fed-a315-7310db2623e5 +09:00:44.847 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c3843033-6fe5-4fed-a315-7310db2623e5 +09:00:44.860 [XNIO-1 task-2] 5NsKuoNWTXO2HPp9nkEz0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b1ae42cc-fa97-490b-af03-ec34783074a0 +09:00:44.860 [XNIO-1 task-2] 5NsKuoNWTXO2HPp9nkEz0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.861 [XNIO-1 task-2] 5NsKuoNWTXO2HPp9nkEz0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.861 [XNIO-1 task-2] 5NsKuoNWTXO2HPp9nkEz0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b1ae42cc-fa97-490b-af03-ec34783074a0 +09:00:44.868 [XNIO-1 task-2] wZ8SvgOoQc6eiTAGQysP6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd, base path is set to: null +09:00:44.868 [XNIO-1 task-2] wZ8SvgOoQc6eiTAGQysP6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.868 [XNIO-1 task-2] wZ8SvgOoQc6eiTAGQysP6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.868 [XNIO-1 task-2] wZ8SvgOoQc6eiTAGQysP6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd, base path is set to: null +09:00:44.868 [XNIO-1 task-2] wZ8SvgOoQc6eiTAGQysP6w DEBUG com.networknt.schema.TypeValidator debug - validate( "c2266f5f-880e-4d86-b455-70e2ce22b2dd", "c2266f5f-880e-4d86-b455-70e2ce22b2dd", clientId) +09:00:44.872 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85d438d3-479c-403f-97a9-afcd2d7f62ab +09:00:44.877 [XNIO-1 task-2] YT1tSA0LS4y_gNr8cI_Ifw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/54f1d307-0acf-4caa-a11b-b4c026bce421 +09:00:44.877 [XNIO-1 task-2] YT1tSA0LS4y_gNr8cI_Ifw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.877 [XNIO-1 task-2] YT1tSA0LS4y_gNr8cI_Ifw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.878 [XNIO-1 task-2] YT1tSA0LS4y_gNr8cI_Ifw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/54f1d307-0acf-4caa-a11b-b4c026bce421 +09:00:44.892 [XNIO-1 task-2] zwYHzzCGSsW8qLlY_xQ96w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.892 [XNIO-1 task-2] zwYHzzCGSsW8qLlY_xQ96w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.892 [XNIO-1 task-2] zwYHzzCGSsW8qLlY_xQ96w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.893 [XNIO-1 task-2] zwYHzzCGSsW8qLlY_xQ96w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.910 [XNIO-1 task-2] QoefZOU1SUOqaI_EKg4jIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.910 [XNIO-1 task-2] QoefZOU1SUOqaI_EKg4jIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.911 [XNIO-1 task-2] QoefZOU1SUOqaI_EKg4jIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:44.911 [XNIO-1 task-2] QoefZOU1SUOqaI_EKg4jIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.917 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:39b2f4c6-29fb-4bc6-9c54-5780f981528e +09:00:44.919 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:39b2f4c6-29fb-4bc6-9c54-5780f981528e +09:00:44.932 [XNIO-1 task-2] 9qz_guqGRhuFM8riX5LZ_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.932 [XNIO-1 task-2] 9qz_guqGRhuFM8riX5LZ_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.932 [XNIO-1 task-2] 9qz_guqGRhuFM8riX5LZ_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.933 [XNIO-1 task-2] 9qz_guqGRhuFM8riX5LZ_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.947 [XNIO-1 task-2] Ck7L7JxfSbO-ma_L-Gor_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aaca2f3-392f-40e0-9ac2-461c7cde38e0, base path is set to: null +09:00:44.948 [XNIO-1 task-2] Ck7L7JxfSbO-ma_L-Gor_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:44.948 [XNIO-1 task-2] Ck7L7JxfSbO-ma_L-Gor_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:44.948 [XNIO-1 task-2] Ck7L7JxfSbO-ma_L-Gor_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aaca2f3-392f-40e0-9ac2-461c7cde38e0, base path is set to: null +09:00:44.948 [XNIO-1 task-2] Ck7L7JxfSbO-ma_L-Gor_g DEBUG com.networknt.schema.TypeValidator debug - validate( "9aaca2f3-392f-40e0-9ac2-461c7cde38e0", "9aaca2f3-392f-40e0-9ac2-461c7cde38e0", clientId) +09:00:44.955 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:85be5103 +09:00:44.958 [XNIO-1 task-2] xNT8tm1HQ3W91Fk1Iu35bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3843033-6fe5-4fed-a315-7310db2623e5 +09:00:44.958 [XNIO-1 task-2] xNT8tm1HQ3W91Fk1Iu35bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.958 [XNIO-1 task-2] xNT8tm1HQ3W91Fk1Iu35bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.958 [XNIO-1 task-2] xNT8tm1HQ3W91Fk1Iu35bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3843033-6fe5-4fed-a315-7310db2623e5 +09:00:44.959 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c3843033-6fe5-4fed-a315-7310db2623e5 +09:00:44.965 [XNIO-1 task-2] -sxflQc6TKqoS8fUMYb8aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.965 [XNIO-1 task-2] -sxflQc6TKqoS8fUMYb8aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.966 [XNIO-1 task-2] -sxflQc6TKqoS8fUMYb8aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.966 [XNIO-1 task-2] -sxflQc6TKqoS8fUMYb8aA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.999 [XNIO-1 task-2] IGzMg9tZSPa4xcWFRbG1jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67 +09:00:44.999 [XNIO-1 task-2] IGzMg9tZSPa4xcWFRbG1jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:44.999 [XNIO-1 task-2] IGzMg9tZSPa4xcWFRbG1jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:44.999 [XNIO-1 task-2] IGzMg9tZSPa4xcWFRbG1jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/89931d25-5050-4b87-bccd-00dcc99bdb67 +09:00:45.003 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.003 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.003 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.004 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.005 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4bbc906-a6fe-4810-94ff-b3ac4e8e","clientDesc":"ae4a4233-c1bd-4393-911f-cd65e9fd84e0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.006 [XNIO-1 task-2] WTo7PGRPRG2RDiysAXmPMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:45.009 [XNIO-1 task-2] fFb3l7cmT7OYCXvNTQSHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.010 [XNIO-1 task-2] fFb3l7cmT7OYCXvNTQSHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.010 [XNIO-1 task-2] fFb3l7cmT7OYCXvNTQSHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.044 [XNIO-1 task-2] Ij8RNjNJSeGUmYf8ERSUGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c88815d-6ee9-413b-8da2-32a5ba390f7d +09:00:45.044 [XNIO-1 task-2] Ij8RNjNJSeGUmYf8ERSUGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.044 [XNIO-1 task-2] Ij8RNjNJSeGUmYf8ERSUGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.044 [XNIO-1 task-2] Ij8RNjNJSeGUmYf8ERSUGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c88815d-6ee9-413b-8da2-32a5ba390f7d, base path is set to: null +09:00:45.046 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:22ddc2b2 +09:00:45.047 [XNIO-1 task-2] Ij8RNjNJSeGUmYf8ERSUGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c88815d-6ee9-413b-8da2-32a5ba390f7d", "0c88815d-6ee9-413b-8da2-32a5ba390f7d", clientId) +09:00:45.057 [XNIO-1 task-2] npYVbjWnThiXWYQnLgb8eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8315cf01-e91c-4ec5-bebd-79faef8b6039 +09:00:45.057 [XNIO-1 task-2] npYVbjWnThiXWYQnLgb8eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.057 [XNIO-1 task-2] npYVbjWnThiXWYQnLgb8eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.057 [XNIO-1 task-2] npYVbjWnThiXWYQnLgb8eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8315cf01-e91c-4ec5-bebd-79faef8b6039 +09:00:45.063 [XNIO-1 task-2] npYVbjWnThiXWYQnLgb8eA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.063 [XNIO-1 task-2] npYVbjWnThiXWYQnLgb8eA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:45.070 [XNIO-1 task-2] XVdPNU0WRP6lqJk395M_eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.070 [XNIO-1 task-2] XVdPNU0WRP6lqJk395M_eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.070 [XNIO-1 task-2] XVdPNU0WRP6lqJk395M_eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.089 [XNIO-1 task-2] TNGHpuH6TZmJS7vhDM3ZOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dc222341-2e27-4f1d-8e03-7d33d08d3236 +09:00:45.089 [XNIO-1 task-2] TNGHpuH6TZmJS7vhDM3ZOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.089 [XNIO-1 task-2] TNGHpuH6TZmJS7vhDM3ZOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.089 [XNIO-1 task-2] TNGHpuH6TZmJS7vhDM3ZOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dc222341-2e27-4f1d-8e03-7d33d08d3236 +09:00:45.097 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:22ddc2b2 +09:00:45.111 [XNIO-1 task-2] TNGHpuH6TZmJS7vhDM3ZOA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.111 [XNIO-1 task-2] TNGHpuH6TZmJS7vhDM3ZOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:45.116 [XNIO-1 task-2] YUUEvI3UTYGErIMmxnVmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.116 [XNIO-1 task-2] YUUEvI3UTYGErIMmxnVmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.116 [XNIO-1 task-2] YUUEvI3UTYGErIMmxnVmSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.117 [XNIO-1 task-2] YUUEvI3UTYGErIMmxnVmSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.128 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:69068d39-1693-4e37-88a6-94f8e7a2a083 +09:00:45.131 [XNIO-1 task-2] cvgiurcsT-qjWmAZgq-AOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.132 [XNIO-1 task-2] cvgiurcsT-qjWmAZgq-AOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.132 [XNIO-1 task-2] cvgiurcsT-qjWmAZgq-AOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.134 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:22ddc2b2 +09:00:45.136 [XNIO-1 task-2] cvgiurcsT-qjWmAZgq-AOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.148 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:69068d39-1693-4e37-88a6-94f8e7a2a083 +09:00:45.153 [XNIO-1 task-2] 6Y80m_a6QfmztSh0m2OB8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:45.153 [XNIO-1 task-2] 6Y80m_a6QfmztSh0m2OB8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.153 [XNIO-1 task-2] 6Y80m_a6QfmztSh0m2OB8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.154 [XNIO-1 task-2] 6Y80m_a6QfmztSh0m2OB8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/46c127ea-5608-48a9-8c7d-a14ab59596d9 +09:00:45.157 [XNIO-1 task-2] TU_P92yVTFGpWb1g-77VBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e89f5625-428d-4d97-a973-d8ce08db86f1, base path is set to: null +09:00:45.157 [XNIO-1 task-2] TU_P92yVTFGpWb1g-77VBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.157 [XNIO-1 task-2] TU_P92yVTFGpWb1g-77VBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.158 [XNIO-1 task-2] TU_P92yVTFGpWb1g-77VBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e89f5625-428d-4d97-a973-d8ce08db86f1, base path is set to: null +09:00:45.158 [XNIO-1 task-2] TU_P92yVTFGpWb1g-77VBA DEBUG com.networknt.schema.TypeValidator debug - validate( "e89f5625-428d-4d97-a973-d8ce08db86f1", "e89f5625-428d-4d97-a973-d8ce08db86f1", clientId) +09:00:45.173 [XNIO-1 task-2] ft-oXYZ9SdiQFQSp4QfQ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.173 [XNIO-1 task-2] ft-oXYZ9SdiQFQSp4QfQ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.173 [XNIO-1 task-2] ft-oXYZ9SdiQFQSp4QfQ8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.174 [XNIO-1 task-2] ft-oXYZ9SdiQFQSp4QfQ8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.189 [XNIO-1 task-2] lBEI5z1DSp-Lr64jKuzkYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.190 [XNIO-1 task-2] lBEI5z1DSp-Lr64jKuzkYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.190 [XNIO-1 task-2] lBEI5z1DSp-Lr64jKuzkYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.190 [XNIO-1 task-2] lBEI5z1DSp-Lr64jKuzkYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.211 [XNIO-1 task-2] j3x2rm25R-yNecppYrZLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb +09:00:45.211 [XNIO-1 task-2] j3x2rm25R-yNecppYrZLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.211 [XNIO-1 task-2] j3x2rm25R-yNecppYrZLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.211 [XNIO-1 task-2] j3x2rm25R-yNecppYrZLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb +09:00:45.232 [XNIO-1 task-2] mMqjiVzuRf-9eGkHVv5RUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca11b76d-8a12-4ee0-9fe0-d3520540a5a6, base path is set to: null +09:00:45.232 [XNIO-1 task-2] mMqjiVzuRf-9eGkHVv5RUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.232 [XNIO-1 task-2] mMqjiVzuRf-9eGkHVv5RUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.233 [XNIO-1 task-2] mMqjiVzuRf-9eGkHVv5RUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca11b76d-8a12-4ee0-9fe0-d3520540a5a6, base path is set to: null +09:00:45.233 [XNIO-1 task-2] mMqjiVzuRf-9eGkHVv5RUw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", clientId) +09:00:45.247 [XNIO-1 task-2] HY7oliepQ-eGxoeLcpIsVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.247 [XNIO-1 task-2] HY7oliepQ-eGxoeLcpIsVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.247 [XNIO-1 task-2] HY7oliepQ-eGxoeLcpIsVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.280 [XNIO-1 task-2] ePrA1FsDShuDdIm-tvC5pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.280 [XNIO-1 task-2] ePrA1FsDShuDdIm-tvC5pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.280 [XNIO-1 task-2] ePrA1FsDShuDdIm-tvC5pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.281 [XNIO-1 task-2] ePrA1FsDShuDdIm-tvC5pg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.288 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4d8af7f9 +09:00:45.297 [XNIO-1 task-2] VDnVGrefQE2JNBxzOoVJWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a53f689-6d73-4199-acc0-ec5607a2848a +09:00:45.297 [XNIO-1 task-2] VDnVGrefQE2JNBxzOoVJWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.297 [XNIO-1 task-2] VDnVGrefQE2JNBxzOoVJWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.297 [XNIO-1 task-2] VDnVGrefQE2JNBxzOoVJWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a53f689-6d73-4199-acc0-ec5607a2848a +09:00:45.304 [XNIO-1 task-2] GalaQZQMQ8OC0rcBautP3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.304 [XNIO-1 task-2] GalaQZQMQ8OC0rcBautP3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.304 [XNIO-1 task-2] GalaQZQMQ8OC0rcBautP3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.327 [XNIO-1 task-2] 8azK96BFSICw9fxlDVzZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.327 [XNIO-1 task-2] 8azK96BFSICw9fxlDVzZ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.328 [XNIO-1 task-2] 8azK96BFSICw9fxlDVzZ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.357 [XNIO-1 task-2] DCiikiKtSRSohmxFqIlg3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c81e9bba-1576-4b38-b2dd-a8edfed9a1d3, base path is set to: null +09:00:45.357 [XNIO-1 task-2] DCiikiKtSRSohmxFqIlg3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.357 [XNIO-1 task-2] DCiikiKtSRSohmxFqIlg3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.357 [XNIO-1 task-2] DCiikiKtSRSohmxFqIlg3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c81e9bba-1576-4b38-b2dd-a8edfed9a1d3, base path is set to: null +09:00:45.359 [XNIO-1 task-2] DCiikiKtSRSohmxFqIlg3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", clientId) +09:00:45.361 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:601dd837-4c7c-44e4-bb89-fb38c833bc87 +09:00:45.363 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.363 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.364 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.364 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a5beef8f-38a6-44fa-9d15-55d2a7cd8f69", {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4e619db1-b7c6-4183-8d40-fba0907d", {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4e619db1-b7c6-4183-8d40-fba0907d","clientDesc":"a5beef8f-38a6-44fa-9d15-55d2a7cd8f69","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.365 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.366 [XNIO-1 task-2] QCCrCB8ITwOCMg7z3IuutQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.370 [XNIO-1 task-2] YQXZoyKEROaKUKaTZPnnMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/63453920-ece0-47fe-b25e-61b0bb375ebf, base path is set to: null +09:00:45.371 [XNIO-1 task-2] YQXZoyKEROaKUKaTZPnnMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.371 [XNIO-1 task-2] YQXZoyKEROaKUKaTZPnnMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.371 [XNIO-1 task-2] YQXZoyKEROaKUKaTZPnnMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/63453920-ece0-47fe-b25e-61b0bb375ebf, base path is set to: null +09:00:45.371 [XNIO-1 task-2] YQXZoyKEROaKUKaTZPnnMg DEBUG com.networknt.schema.TypeValidator debug - validate( "63453920-ece0-47fe-b25e-61b0bb375ebf", "63453920-ece0-47fe-b25e-61b0bb375ebf", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:45.381 [XNIO-1 task-2] YQXZoyKEROaKUKaTZPnnMg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/63453920-ece0-47fe-b25e-61b0bb375ebf} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.381 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:58d1e3e1 +09:00:45.385 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:58d1e3e1 +09:00:45.385 [XNIO-1 task-2] Jxd4yRHQTqetxWUfxcutSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.386 [XNIO-1 task-2] Jxd4yRHQTqetxWUfxcutSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.387 [XNIO-1 task-2] Jxd4yRHQTqetxWUfxcutSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.394 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7a9ae668-4c54-4d5a-a519-9cb77fb6c643 +09:00:45.405 [XNIO-1 task-2] nEZ_suecRDGZ1B5abS4Y2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c88815d-6ee9-413b-8da2-32a5ba390f7d, base path is set to: null +09:00:45.405 [XNIO-1 task-2] nEZ_suecRDGZ1B5abS4Y2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.405 [XNIO-1 task-2] nEZ_suecRDGZ1B5abS4Y2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.405 [XNIO-1 task-2] nEZ_suecRDGZ1B5abS4Y2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c88815d-6ee9-413b-8da2-32a5ba390f7d, base path is set to: null +09:00:45.406 [XNIO-1 task-2] nEZ_suecRDGZ1B5abS4Y2A DEBUG com.networknt.schema.TypeValidator debug - validate( "0c88815d-6ee9-413b-8da2-32a5ba390f7d", "0c88815d-6ee9-413b-8da2-32a5ba390f7d", clientId) +09:00:45.414 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60d421cf +09:00:45.415 [XNIO-1 task-2] o_GeYcyXSGaKCWorbHrikw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/63453920-ece0-47fe-b25e-61b0bb375ebf, base path is set to: null +09:00:45.415 [XNIO-1 task-2] o_GeYcyXSGaKCWorbHrikw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.415 [XNIO-1 task-2] o_GeYcyXSGaKCWorbHrikw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.415 [XNIO-1 task-2] o_GeYcyXSGaKCWorbHrikw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/63453920-ece0-47fe-b25e-61b0bb375ebf, base path is set to: null +09:00:45.415 [XNIO-1 task-2] o_GeYcyXSGaKCWorbHrikw DEBUG com.networknt.schema.TypeValidator debug - validate( "63453920-ece0-47fe-b25e-61b0bb375ebf", "63453920-ece0-47fe-b25e-61b0bb375ebf", clientId) +09:00:45.424 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.425 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.425 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.425 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG com.networknt.schema.TypeValidator debug - validate( "e80dde35-586c-42e9-a8ca-f21f2cd5d068", {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG com.networknt.schema.TypeValidator debug - validate( "be11b88f-0045-49b1-b24f-5a31d968", {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"be11b88f-0045-49b1-b24f-5a31d968","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.426 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.428 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c179418c +09:00:45.433 [XNIO-1 task-2] cL7Gjvx-Sieg5Wqsc0IQyg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.437 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.437 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.438 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.439 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.439 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.439 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.439 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.439 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.439 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.440 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.440 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.440 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a937a9e-f10d-4869-bbd6-8c22d9ed","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.440 [XNIO-1 task-2] qSAAMWdYTSi_5ImR_d8ufA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:45.445 [XNIO-1 task-2] ZUfiA7PPSIWLbpxZKu9aiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:45.445 [XNIO-1 task-2] ZUfiA7PPSIWLbpxZKu9aiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.445 [XNIO-1 task-2] ZUfiA7PPSIWLbpxZKu9aiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.445 [XNIO-1 task-2] ZUfiA7PPSIWLbpxZKu9aiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:45.448 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.449 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.449 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.450 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.450 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.450 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.450 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.450 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.450 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.451 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.451 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.451 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b986873a-11ec-4b71-ad7c-2711e950","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.451 [XNIO-1 task-2] jarnBlzLR4qPPcRtYNsZMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:45.455 [XNIO-1 task-2] iEH4saJIRv63crxvE9SDYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8 +09:00:45.455 [XNIO-1 task-2] iEH4saJIRv63crxvE9SDYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.456 [XNIO-1 task-2] iEH4saJIRv63crxvE9SDYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.456 [XNIO-1 task-2] iEH4saJIRv63crxvE9SDYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f94c0c2-afb1-4077-bb42-1a4b090bc6f8 +09:00:45.461 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c179418c +09:00:45.465 [XNIO-1 task-2] L0XVqAWTRbK-SryW8syIAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.465 [XNIO-1 task-2] L0XVqAWTRbK-SryW8syIAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.465 [XNIO-1 task-2] L0XVqAWTRbK-SryW8syIAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.465 [XNIO-1 task-2] L0XVqAWTRbK-SryW8syIAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.475 [XNIO-1 task-2] JGDPbyJaQsmDa1ozrFdvIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.475 [XNIO-1 task-2] JGDPbyJaQsmDa1ozrFdvIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.475 [XNIO-1 task-2] JGDPbyJaQsmDa1ozrFdvIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.476 [XNIO-1 task-2] JGDPbyJaQsmDa1ozrFdvIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.536 [XNIO-1 task-2] QN0de-fSTgCB4-61ziMGgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.536 [XNIO-1 task-2] QN0de-fSTgCB4-61ziMGgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.537 [XNIO-1 task-2] QN0de-fSTgCB4-61ziMGgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.537 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:58d1e3e1 +09:00:45.537 [XNIO-1 task-2] QN0de-fSTgCB4-61ziMGgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.593 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:78ca6d62 +09:00:45.597 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:78ca6d62 +09:00:45.598 [XNIO-1 task-2] XtK5m55zSVe0Bm-NgGt0EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.598 [XNIO-1 task-2] XtK5m55zSVe0Bm-NgGt0EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.598 [XNIO-1 task-2] XtK5m55zSVe0Bm-NgGt0EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.618 [XNIO-1 task-2] Fym0md_9QQ6zH6ZbZayWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d653a8c-8f67-4030-b561-2da034a07161 +09:00:45.618 [XNIO-1 task-2] Fym0md_9QQ6zH6ZbZayWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.618 [XNIO-1 task-2] Fym0md_9QQ6zH6ZbZayWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.619 [XNIO-1 task-2] Fym0md_9QQ6zH6ZbZayWSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d653a8c-8f67-4030-b561-2da034a07161 +09:00:45.620 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60d421cf +09:00:45.626 [XNIO-1 task-2] XL4j7ckaQqGJNSls6aqERQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.626 [XNIO-1 task-2] XL4j7ckaQqGJNSls6aqERQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.627 [XNIO-1 task-2] XL4j7ckaQqGJNSls6aqERQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.642 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60d421cf +09:00:45.657 [XNIO-1 task-2] anC6iMOfSH6RYrwTuCdBSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b1ae42cc-fa97-490b-af03-ec34783074a0, base path is set to: null +09:00:45.658 [XNIO-1 task-2] anC6iMOfSH6RYrwTuCdBSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.658 [XNIO-1 task-2] anC6iMOfSH6RYrwTuCdBSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.658 [XNIO-1 task-2] anC6iMOfSH6RYrwTuCdBSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b1ae42cc-fa97-490b-af03-ec34783074a0, base path is set to: null +09:00:45.658 [XNIO-1 task-2] anC6iMOfSH6RYrwTuCdBSw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1ae42cc-fa97-490b-af03-ec34783074a0", "b1ae42cc-fa97-490b-af03-ec34783074a0", clientId) +09:00:45.667 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.667 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.667 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.668 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.668 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:45.668 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "945b935d-2d10-4c5f-9148-edadf122576f", {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:45.668 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.668 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.668 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e093c4f-d700-40a0-9ee8-cbf0d65c", {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:45.668 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.669 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0e093c4f-d700-40a0-9ee8-cbf0d65c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.669 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.669 [XNIO-1 task-2] P86Gqr8QRMKXqomxy-o0ZA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.684 [XNIO-1 task-2] 6454Sw7uRy60oZTQNrwbvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.684 [XNIO-1 task-2] 6454Sw7uRy60oZTQNrwbvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.685 [XNIO-1 task-2] 6454Sw7uRy60oZTQNrwbvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.724 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:78ca6d62 +09:00:45.729 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:58d1e3e1 +09:00:45.736 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60d421cf +09:00:45.741 [XNIO-1 task-2] lodd8oLuQiuPA6dONWArCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.741 [XNIO-1 task-2] lodd8oLuQiuPA6dONWArCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.742 [XNIO-1 task-2] lodd8oLuQiuPA6dONWArCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.751 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:44c19875 +09:00:45.756 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:60d421cf +09:00:45.770 [XNIO-1 task-2] yc5YRkQyREugYS1wca8BAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1ac8256b-3eee-4c25-9c34-76958f78b1ad +09:00:45.770 [XNIO-1 task-2] yc5YRkQyREugYS1wca8BAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.770 [XNIO-1 task-2] yc5YRkQyREugYS1wca8BAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:45.770 [XNIO-1 task-2] yc5YRkQyREugYS1wca8BAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1ac8256b-3eee-4c25-9c34-76958f78b1ad +09:00:45.770 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4d8af7f9 +09:00:45.785 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.786 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.786 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.787 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7595c54-37b7-4804-bdc9-aa1f68e2","clientDesc":"9fdde6a5-b6b4-4d12-abdf-863660a3bf3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.788 [XNIO-1 task-2] 1coOUP0nTKWxyuhcvtL_qg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:45.797 [XNIO-1 task-2] 9LTi_asXQUe0g5n_aNuQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.797 [XNIO-1 task-2] 9LTi_asXQUe0g5n_aNuQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.798 [XNIO-1 task-2] 9LTi_asXQUe0g5n_aNuQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.811 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4d8af7f9 +09:00:45.817 [XNIO-1 task-2] TcZwBYfYRH-wNw47iHWbKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.817 [XNIO-1 task-2] TcZwBYfYRH-wNw47iHWbKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.817 [XNIO-1 task-2] TcZwBYfYRH-wNw47iHWbKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.817 [XNIO-1 task-2] TcZwBYfYRH-wNw47iHWbKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.833 [XNIO-1 task-2] m4dA45A7SgiQzp3d1hzHHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.837 [XNIO-1 task-2] m4dA45A7SgiQzp3d1hzHHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.837 [XNIO-1 task-2] m4dA45A7SgiQzp3d1hzHHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.837 [XNIO-1 task-2] m4dA45A7SgiQzp3d1hzHHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.839 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4d8af7f9 +09:00:45.839 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:44c19875 +09:00:45.854 [XNIO-1 task-2] WAHu537mRKuGN87ynGdKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.854 [XNIO-1 task-2] WAHu537mRKuGN87ynGdKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.854 [XNIO-1 task-2] WAHu537mRKuGN87ynGdKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.855 [XNIO-1 task-2] WAHu537mRKuGN87ynGdKCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.863 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4d8af7f9 +09:00:45.876 [XNIO-1 task-2] CIq4YBkgTyaOTXzZOe9IVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.876 [XNIO-1 task-2] CIq4YBkgTyaOTXzZOe9IVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.876 [XNIO-1 task-2] CIq4YBkgTyaOTXzZOe9IVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.876 [XNIO-1 task-2] CIq4YBkgTyaOTXzZOe9IVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.890 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.890 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d4c2d225-36bf-45f4-a555-3f62781faef9 +09:00:45.890 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.891 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.891 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0afd0bcf-4705-4f21-bdfa-f82b7510f7c8", {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f3da8e7-ccd2-4d3f-8d12-1b0e00da", {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5f3da8e7-ccd2-4d3f-8d12-1b0e00da","clientDesc":"0afd0bcf-4705-4f21-bdfa-f82b7510f7c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.892 [XNIO-1 task-2] UVUG0ngLTeGV1m6nx6MypQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.894 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4d8af7f9 +09:00:45.895 [XNIO-1 task-2] -SoixTHaSmSUeqkyFSGzzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.896 [XNIO-1 task-2] -SoixTHaSmSUeqkyFSGzzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.897 [XNIO-1 task-2] -SoixTHaSmSUeqkyFSGzzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:45.903 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:58d1e3e1 +09:00:45.910 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d4c2d225-36bf-45f4-a555-3f62781faef9 +09:00:45.924 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d4c2d225-36bf-45f4-a555-3f62781faef9 +09:00:45.930 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.930 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.931 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.931 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.931 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.932 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f0b3386b-f3f5-45e9-9b38-2eba8b91","clientDesc":"e80dde35-586c-42e9-a8ca-f21f2cd5d068","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.933 [XNIO-1 task-2] 30HBnLbZRK6IdLf9emy6Vg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:45.939 [XNIO-1 task-2] WXPGMLPiS8KC81ADsUaiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.939 [XNIO-1 task-2] WXPGMLPiS8KC81ADsUaiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.940 [XNIO-1 task-2] WXPGMLPiS8KC81ADsUaiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.944 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:592e0518 +09:00:45.946 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:98db084d-f671-4349-b1da-ef1f9ecdda3f +09:00:45.950 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:98db084d-f671-4349-b1da-ef1f9ecdda3f +09:00:45.958 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:84fbf119 +09:00:45.962 [XNIO-1 task-2] P6n6yKa8RR6VyUYBX86IBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.962 [XNIO-1 task-2] P6n6yKa8RR6VyUYBX86IBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.962 [XNIO-1 task-2] P6n6yKa8RR6VyUYBX86IBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.963 [XNIO-1 task-2] P6n6yKa8RR6VyUYBX86IBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.976 [XNIO-1 task-2] rBGkr_d9Q9a-CmIbjHqr6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a9ae668-4c54-4d5a-a519-9cb77fb6c643, base path is set to: null +09:00:45.977 [XNIO-1 task-2] rBGkr_d9Q9a-CmIbjHqr6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.977 [XNIO-1 task-2] rBGkr_d9Q9a-CmIbjHqr6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.977 [XNIO-1 task-2] rBGkr_d9Q9a-CmIbjHqr6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a9ae668-4c54-4d5a-a519-9cb77fb6c643, base path is set to: null +09:00:45.977 [XNIO-1 task-2] rBGkr_d9Q9a-CmIbjHqr6w DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", clientId) +09:00:45.983 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:592e0518 +09:00:45.984 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.985 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.985 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG com.networknt.schema.TypeValidator debug - validate( "945b935d-2d10-4c5f-9148-edadf122576f", {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG com.networknt.schema.TypeValidator debug - validate( "054719d3-59b2-464a-9858-cb643b68", {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"054719d3-59b2-464a-9858-cb643b68","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.986 [XNIO-1 task-2] z00e3OfnR6O4Q3g3bZNiiw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.990 [XNIO-1 task-2] HlnKy6R-Sky89hDsk_zuZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/18cd7c1f-2da2-4fbc-9dff-fe05f880af98, base path is set to: null +09:00:45.991 [XNIO-1 task-2] HlnKy6R-Sky89hDsk_zuZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:45.991 [XNIO-1 task-2] HlnKy6R-Sky89hDsk_zuZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:45.991 [XNIO-1 task-2] HlnKy6R-Sky89hDsk_zuZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/18cd7c1f-2da2-4fbc-9dff-fe05f880af98, base path is set to: null +09:00:45.991 [XNIO-1 task-2] HlnKy6R-Sky89hDsk_zuZw DEBUG com.networknt.schema.TypeValidator debug - validate( "18cd7c1f-2da2-4fbc-9dff-fe05f880af98", "18cd7c1f-2da2-4fbc-9dff-fe05f880af98", clientId) +09:00:46.002 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.002 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.003 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.003 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.004 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:46.004 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG com.networknt.schema.TypeValidator debug - validate( "695b2256-a3e7-4b6c-8f3c-7ff2b524d61a", {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:46.004 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.004 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.005 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG com.networknt.schema.TypeValidator debug - validate( "7831203a-99e2-4403-9ed1-532db006", {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:46.005 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.005 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7831203a-99e2-4403-9ed1-532db006","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:46.005 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.005 [XNIO-1 task-2] QwxxVVz_TpW6EntynJSJmg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:46.011 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.012 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.012 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.013 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.013 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.014 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.014 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.014 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.014 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.014 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.014 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.015 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f304cb49-6084-4329-bd76-6b6ad69c","clientDesc":"695b2256-a3e7-4b6c-8f3c-7ff2b524d61a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.015 [XNIO-1 task-2] V9QMn9vPTFaPRV1sap2tUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:46.019 [XNIO-1 task-2] dJu3AjTJQqihgaoVaerk7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c1f828b-e1c0-46d9-8af1-755e7bdfcdfa +09:00:46.019 [XNIO-1 task-2] dJu3AjTJQqihgaoVaerk7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.019 [XNIO-1 task-2] dJu3AjTJQqihgaoVaerk7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:46.020 [XNIO-1 task-2] dJu3AjTJQqihgaoVaerk7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c1f828b-e1c0-46d9-8af1-755e7bdfcdfa +09:00:46.026 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:940a43e8-a8ff-4374-b825-108d7b8b31d3 +09:00:46.028 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:940a43e8-a8ff-4374-b825-108d7b8b31d3 +09:00:46.030 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.030 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.030 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb", {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "2ecce46e-baf6-4e7c-b50d-d16477a9", {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2ecce46e-baf6-4e7c-b50d-d16477a9","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:46.032 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.033 [XNIO-1 task-2] YrrpgcIXSwGYxo42DSBi7w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:46.037 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.037 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.038 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.038 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.038 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.038 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.038 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.038 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.038 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.039 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.039 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.039 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ed72360-9805-4983-ac9f-fc21d940","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.039 [XNIO-1 task-2] tM3CshnUQVqBDt_e2WgRwQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:46.056 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.056 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.058 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.058 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.059 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:46.059 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb", {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:46.060 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.060 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.060 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bb922ad4-0e6f-4224-be25-b67ee76b", {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:46.060 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.061 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bb922ad4-0e6f-4224-be25-b67ee76b","clientDesc":"cd02edcb-b8d1-4c92-9f4b-e2b0b30fdaeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:46.061 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.061 [XNIO-1 task-2] KaPnhhqtRdyJIrtbGLz6oQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:46.066 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.066 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.067 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.068 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.068 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.068 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.068 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.069 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.069 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.069 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.069 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.069 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fea5b9dd-d370-41f6-bbf6-768f13a7","clientDesc":"d2ed9ba6-4230-45a7-ae1e-42ae6cd4efd2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.069 [XNIO-1 task-2] BqALmDy-Qtm7aBOgeDOtqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:46.076 [XNIO-1 task-2] 0RQXyMJ7Qyeg4SwPsT9tOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.076 [XNIO-1 task-2] 0RQXyMJ7Qyeg4SwPsT9tOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.076 [XNIO-1 task-2] 0RQXyMJ7Qyeg4SwPsT9tOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.087 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:592e0518 +09:00:46.105 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.106 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.106 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.107 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a99dbfb-993e-473e-9e64-280ec508","clientDesc":"5e235df1-86d9-4e42-8b81-2a036941158e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.108 [XNIO-1 task-2] HazIOmFeRIK4BsKFqdtpFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:46.111 [XNIO-1 task-2] 9sX9IIQRQ-K1dqkg5HrIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.111 [XNIO-1 task-2] 9sX9IIQRQ-K1dqkg5HrIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.112 [XNIO-1 task-2] 9sX9IIQRQ-K1dqkg5HrIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.112 [XNIO-1 task-2] 9sX9IIQRQ-K1dqkg5HrIdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.162 [XNIO-1 task-2] N4fmL4MRSaytIMywsa0qhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb +09:00:46.162 [XNIO-1 task-2] N4fmL4MRSaytIMywsa0qhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.162 [XNIO-1 task-2] N4fmL4MRSaytIMywsa0qhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:46.162 [XNIO-1 task-2] N4fmL4MRSaytIMywsa0qhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bfc60134-fb55-4945-9780-5f603a2668fb +09:00:46.168 [XNIO-1 task-2] N4fmL4MRSaytIMywsa0qhQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) +Jun 29, 2024 9:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.192 [XNIO-1 task-2] N4fmL4MRSaytIMywsa0qhQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:46.198 [XNIO-1 task-2] 9yqdD78LQ7GN7YkpbHuyBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a53f689-6d73-4199-acc0-ec5607a2848a +09:00:46.199 [XNIO-1 task-2] 9yqdD78LQ7GN7YkpbHuyBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.199 [XNIO-1 task-2] 9yqdD78LQ7GN7YkpbHuyBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:46.199 [XNIO-1 task-2] 9yqdD78LQ7GN7YkpbHuyBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a53f689-6d73-4199-acc0-ec5607a2848a +09:00:46.203 [XNIO-1 task-2] tuhI4SWJRJyAva7X4LsgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.203 [XNIO-1 task-2] tuhI4SWJRJyAva7X4LsgaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.203 [XNIO-1 task-2] tuhI4SWJRJyAva7X4LsgaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.222 [XNIO-1 task-2] vdgmfMEISlijwxkSsoR73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8ac4145e-86d5-44f5-90c6-c238c048fef1, base path is set to: null +09:00:46.222 [XNIO-1 task-2] vdgmfMEISlijwxkSsoR73g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.222 [XNIO-1 task-2] vdgmfMEISlijwxkSsoR73g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:46.222 [XNIO-1 task-2] vdgmfMEISlijwxkSsoR73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8ac4145e-86d5-44f5-90c6-c238c048fef1, base path is set to: null +09:00:46.223 [XNIO-1 task-2] vdgmfMEISlijwxkSsoR73g DEBUG com.networknt.schema.TypeValidator debug - validate( "8ac4145e-86d5-44f5-90c6-c238c048fef1", "8ac4145e-86d5-44f5-90c6-c238c048fef1", clientId) +09:00:46.233 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.233 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.234 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.234 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.234 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:46.234 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "734e0ce5-431c-4e80-bdd7-40663ed35d91", {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:46.235 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.235 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.236 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "716fa655-2f43-4398-b82a-e8ea3078", {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:46.236 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.236 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"716fa655-2f43-4398-b82a-e8ea3078","clientDesc":"734e0ce5-431c-4e80-bdd7-40663ed35d91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:46.236 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.237 [XNIO-1 task-2] hDyhoFOsSb6a5mhuX4QpOQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:46.242 [XNIO-1 task-2] UvPPQWmiSA6eBaUo8qDmnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8ac4145e-86d5-44f5-90c6-c238c048fef1, base path is set to: null +09:00:46.243 [XNIO-1 task-2] UvPPQWmiSA6eBaUo8qDmnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.243 [XNIO-1 task-2] UvPPQWmiSA6eBaUo8qDmnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:00:46.243 [XNIO-1 task-2] UvPPQWmiSA6eBaUo8qDmnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8ac4145e-86d5-44f5-90c6-c238c048fef1, base path is set to: null +09:00:46.243 [XNIO-1 task-2] UvPPQWmiSA6eBaUo8qDmnA DEBUG com.networknt.schema.TypeValidator debug - validate( "8ac4145e-86d5-44f5-90c6-c238c048fef1", "8ac4145e-86d5-44f5-90c6-c238c048fef1", clientId) +09:00:46.257 [XNIO-1 task-2] JB0JPMxgSTKIBZCXnyJYnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.257 [XNIO-1 task-2] JB0JPMxgSTKIBZCXnyJYnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.258 [XNIO-1 task-2] JB0JPMxgSTKIBZCXnyJYnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.264 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9c4ae2eb-24a3-4371-9b34-d8c935757452 +09:00:46.279 [XNIO-1 task-2] mSUDuSHiRniAIRY6Jt6DWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.279 [XNIO-1 task-2] mSUDuSHiRniAIRY6Jt6DWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.279 [XNIO-1 task-2] mSUDuSHiRniAIRY6Jt6DWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.280 [XNIO-1 task-2] mSUDuSHiRniAIRY6Jt6DWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.304 [XNIO-1 task-2] Fxkz5CQjQQu-oGJtktMZXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.304 [XNIO-1 task-2] Fxkz5CQjQQu-oGJtktMZXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:00:46.304 [XNIO-1 task-2] Fxkz5CQjQQu-oGJtktMZXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:00:46.305 [XNIO-1 task-2] Fxkz5CQjQQu-oGJtktMZXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.319 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5c18415 +09:00:46.326 [XNIO-1 task-2] vGIR0Fc5SuqOP2lVggGiaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c4ae2eb-24a3-4371-9b34-d8c935757452 +09:00:46.326 [XNIO-1 task-2] vGIR0Fc5SuqOP2lVggGiaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.326 [XNIO-1 task-2] vGIR0Fc5SuqOP2lVggGiaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:46.326 [XNIO-1 task-2] vGIR0Fc5SuqOP2lVggGiaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c4ae2eb-24a3-4371-9b34-d8c935757452 +09:00:46.327 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5c18415 +09:00:46.328 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9c4ae2eb-24a3-4371-9b34-d8c935757452 +09:00:46.338 [XNIO-1 task-2] pGvc7zZiTD2DhshmZVGksg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:46.339 [XNIO-1 task-2] pGvc7zZiTD2DhshmZVGksg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.339 [XNIO-1 task-2] pGvc7zZiTD2DhshmZVGksg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:00:46.339 [XNIO-1 task-2] pGvc7zZiTD2DhshmZVGksg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:46.351 [XNIO-1 task-2] pGvc7zZiTD2DhshmZVGksg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.351 [XNIO-1 task-2] pGvc7zZiTD2DhshmZVGksg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:00:46.358 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.358 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.359 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:00:46.359 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.359 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:00:46.359 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "945b935d-2d10-4c5f-9148-edadf122576f", {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:00:46.359 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:00:46.359 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:00:46.359 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4d27cae-1340-4b17-b791-6c90111c", {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:00:46.360 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.360 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b4d27cae-1340-4b17-b791-6c90111c","clientDesc":"945b935d-2d10-4c5f-9148-edadf122576f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:46.360 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.360 [XNIO-1 task-2] xRBNlUinRcKe8UjgoLGDQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:46.367 [XNIO-1 task-2] fDBNU2tUSne_A18a3s2t-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a9ae668-4c54-4d5a-a519-9cb77fb6c643, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..7fef2d9 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2964 @@ +09:00:41.004 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:815aa1f2 +09:00:41.009 [XNIO-1 task-2] 7NJLMDCBSQSCDm5BZUm9nw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.010 [XNIO-1 task-2] 7NJLMDCBSQSCDm5BZUm9nw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.013 [XNIO-1 task-2] 7NJLMDCBSQSCDm5BZUm9nw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=whjoJo1HTQCMMqq5wiCCeg +09:00:41.051 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1ffaa6a3 +09:00:41.110 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1d41992b +09:00:41.129 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d12a1961 +09:00:41.133 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d12a1961 +09:00:41.156 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d12a1961 +09:00:41.175 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3c728311-d041-4ec3-89ef-97e4bf8da249 +09:00:41.178 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3c728311-d041-4ec3-89ef-97e4bf8da249 +09:00:41.198 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.198 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.199 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.200 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.200 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.200 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.201 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.201 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.212 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.212 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.217 [XNIO-1 task-2] rFrPzCnySf6tCTOsg_e8bQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6RSXb4E3ThaEcoa9UGXCwQ +09:00:41.230 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.230 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.230 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.231 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG com.networknt.schema.TypeValidator debug - validate( "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", client_id) +09:00:41.232 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.232 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.233 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.233 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.233 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.239 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:610b321c-691e-43e0-8d0a-385163311fac +09:00:41.243 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:610b321c-691e-43e0-8d0a-385163311fac +09:00:41.250 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.250 [XNIO-1 task-2] JHZm0ho9RhyBV5ffYBF-CA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.261 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:610b321c-691e-43e0-8d0a-385163311fac +09:00:41.277 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.277 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.277 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.278 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.279 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.279 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.280 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.284 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.293 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.293 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.328 [XNIO-1 task-2] 7wdQaZGWQcivXv49-6Pc7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8Ro7C9k5SDOm4XOM1UhnJw +09:00:41.332 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.332 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.332 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.333 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.333 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.334 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.334 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.334 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.340 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.341 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.345 [XNIO-1 task-2] r5lBBrSRTiil-VcwL9comA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kSAFf7eyS2mnDLjom3x5wQ +09:00:41.351 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.351 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.351 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.352 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.353 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.355 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.355 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.355 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.362 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.363 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.364 [XNIO-1 task-2] w13W1FebQ6uT26Mw7L6SAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VUepwqYPQW2qmcyicrAa_w +09:00:41.368 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.368 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.368 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.369 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.370 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.370 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.370 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.370 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.379 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.379 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.380 [XNIO-1 task-2] obSWhErNSY2stB6ss3fxUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tnUvwarnQci41h3Q4MAUOA +09:00:41.385 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.385 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.385 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.386 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.386 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.386 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.387 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.387 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.393 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.393 [XNIO-1 task-2] Idtc6oUQTne_My3UCgFXRg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.403 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.403 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.403 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.404 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "V5CLxv1MfLvWTj7wfI4kNWyzkGgTA_A8hC8d5DIBCdk", "V5CLxv1MfLvWTj7wfI4kNWyzkGgTA_A8hC8d5DIBCdk", code_challenge) +09:00:41.404 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:41.405 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.406 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.407 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:41.407 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:41.407 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:41.423 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.424 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.444 [XNIO-1 task-1] 8fqQSeS4TUCSAgbTUwwPBQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1oj1DnhlQkiOpCEz5TW3CA +09:00:41.448 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.448 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.449 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.450 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", client_id) +09:00:41.450 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.451 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.451 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.451 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.452 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.455 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.455 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.455 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.456 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:41.456 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.457 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.457 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:41.457 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:41.457 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:41.462 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.462 [XNIO-1 task-1] uoPDXaCtTbqBZKfP-H_H9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.468 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.468 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.470 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.470 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.470 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.470 [XNIO-1 task-2] 726qDvLYQWq8te1Gxt9i7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_jGqyyPRRuG4VDFSi512vw +09:00:41.472 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", "1f94c0c2-afb1-4077-bb42-1a4b090bc6f8", client_id) +09:00:41.472 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.472 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.473 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.473 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.473 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.481 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.481 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.530 [XNIO-1 task-1] drrF0yfLSYCpgKKg-aX_Dw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vo8e13BLQ7GcJA8lHCR82A +09:00:41.535 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.535 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.536 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.539 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:41.540 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.540 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.541 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.541 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.541 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.547 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.548 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.548 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.548 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:41.549 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.550 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.550 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:41.550 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:41.552 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:41.566 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.566 [XNIO-1 task-1] JpEOrNi7RL6l4qOW3Br36Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.567 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.567 [XNIO-1 task-2] WJ6X_O4IQjCUnEUeNtAVww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.573 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.573 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.573 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.574 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG com.networknt.schema.TypeValidator debug - validate( "ew_YQYZC3QxnhKNCQw4ez3vFSj2z0cBeRtoqgE--Ii0", "ew_YQYZC3QxnhKNCQw4ez3vFSj2z0cBeRtoqgE--Ii0", code_challenge) +09:00:41.574 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:41.575 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.575 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.578 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.578 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.578 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.581 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.581 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.582 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.582 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:41.583 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.583 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.583 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:41.584 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:41.584 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:41.588 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.588 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.592 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.592 [XNIO-1 task-2] tSU8EzC1THSWEkCy-eC78Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.599 [XNIO-1 task-1] 4pJzFO_7RcmWgcuy2uD-gw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p7fanO1gRy-HHoRMct8gDw +09:00:41.654 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.654 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.654 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.655 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:41.656 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.656 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.656 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.657 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.657 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.659 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.659 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.659 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.659 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:41.660 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.660 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.661 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:41.661 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:41.663 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:41.669 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.669 [XNIO-1 task-1] kXzi65v9SXOpLepTVA3B2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.675 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.675 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.678 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.678 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.678 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.679 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG com.networknt.schema.TypeValidator debug - validate( "5vVeDTUye5ouEYv0vKD03aPCxCQTh2YRchwVY51Sblo", "5vVeDTUye5ouEYv0vKD03aPCxCQTh2YRchwVY51Sblo", code_challenge) +09:00:41.680 [XNIO-1 task-2] IHhn_P6ETsmr9sAxZFlHnw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U6dzEPCkQda2gt7q0ZZvvA +09:00:41.682 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.683 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.684 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.684 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.684 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.685 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.685 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.686 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.686 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:41.687 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.687 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.688 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:41.688 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:41.688 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:41.691 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.692 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.698 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:41.698 [XNIO-1 task-2] LhZxc1YsRzSX550wxJhKIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:41.749 [XNIO-1 task-1] WGnf0xy1TaK9Y2ZDSyzKSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tp8tawKbREmHKZ2CNTHaXg +09:00:41.773 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5f5d884e-b962-425f-bb1c-494313cc8c3b +09:00:41.804 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.804 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.804 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.805 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG com.networknt.schema.TypeValidator debug - validate( "pS0FXFBqdMRtBgbbtgIf37wa6o3v34Fy5T_S6-MQpvg", "pS0FXFBqdMRtBgbbtgIf37wa6o3v34Fy5T_S6-MQpvg", code_challenge) +09:00:41.805 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:41.806 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.812 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.812 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:41.813 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:41.813 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9", "1dfdc7b3-fd7b-4ab0-93bd-712d34181ab9", client_id) +09:00:41.814 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:41.814 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:41.814 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:41.815 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:41.815 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.816 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.816 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.816 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.824 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.825 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.827 [XNIO-1 task-1] CfXSmMiMQ8qgpcD3fDqG4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SAV1Ny81SHKXmWOvh8ZXXA +09:00:41.850 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.850 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.851 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:41.853 [XNIO-1 task-2] YXVzcBjSQWuPDloN_SZ02Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9u1-x1NxSdefY9ph3UAC6Q +09:00:41.873 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.873 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.874 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.874 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:41.875 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.875 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.876 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.876 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.876 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.885 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.885 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.898 [XNIO-1 task-2] JLux3bOJSTqTgs7ytCgz7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=06QgIb6rT-qthkN0JDL0oA +09:00:41.979 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4fc69d21-5ddd-4d55-9e53-08ee1e986366 +09:00:41.979 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.980 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.980 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:41.980 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:41.981 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:41.982 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:41.982 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:41.983 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:41.994 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:41.995 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:41.998 [XNIO-1 task-2] fax8VXsXQd-TLM34y3BypA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=d3wms0cfSyecsYLGAzUJeg +09:00:42.002 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.003 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.003 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.004 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.012 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.014 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.014 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.014 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.019 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4fc69d21-5ddd-4d55-9e53-08ee1e986366 +09:00:42.042 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.042 [XNIO-1 task-2] feDWlgENSJaj52CFxxOG6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.049 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1e9bfe18 +09:00:42.054 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1e9bfe18 +09:00:42.076 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:72995dd0-05e1-4b76-bf71-f2d1b41ed5fa +09:00:42.091 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.093 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.093 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.094 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG com.networknt.schema.TypeValidator debug - validate( "c2266f5f-880e-4d86-b455-70e2ce22b2dd", "c2266f5f-880e-4d86-b455-70e2ce22b2dd", client_id) +09:00:42.094 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.096 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.097 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.097 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.097 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.105 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.105 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.111 [XNIO-1 task-2] wb3o_fQNT3iUAsppzlNN5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lPXJ4Xr1RUeYRq-dZ_0BAw +09:00:42.131 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.131 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.132 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.134 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:42.135 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.135 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.137 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.138 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.138 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.146 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.155 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.161 [XNIO-1 task-2] iLYzquohSaKR9DrfLzeQMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2dHsk2N-QtClr_cojmzQEQ +09:00:42.198 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.198 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.199 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.199 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:42.220 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.220 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.220 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.220 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.221 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.228 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.228 [XNIO-1 task-2] MxTBDSEiTTuFPH5X5Qr45A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.228 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.231 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.231 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.232 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG com.networknt.schema.TypeValidator debug - validate( "c2266f5f-880e-4d86-b455-70e2ce22b2dd", "c2266f5f-880e-4d86-b455-70e2ce22b2dd", client_id) +09:00:42.232 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.233 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.233 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.233 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.233 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.240 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.241 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.244 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.244 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.244 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.244 [XNIO-1 task-1] QKlbArCmQ_KH0c-jds6Wgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tuqe5wEHRjmhxC3X_8wqZQ +09:00:42.245 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:42.245 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.246 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.246 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.246 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.246 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.250 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.250 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.250 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.251 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG com.networknt.schema.TypeValidator debug - validate( "46c127ea-5608-48a9-8c7d-a14ab59596d9", "46c127ea-5608-48a9-8c7d-a14ab59596d9", client_id) +09:00:42.251 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.251 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.251 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.252 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.254 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.254 [XNIO-1 task-2] TXfld7VTQmur3d3wxTfA0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.257 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.267 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.267 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.269 [XNIO-1 task-1] VJrNK9TsQIiCWZocE6heIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=azavrSE8Twu-tkRZPXcGTg +09:00:42.269 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.269 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.270 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.270 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:42.271 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.271 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.272 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.272 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.272 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.279 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.279 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.281 [XNIO-1 task-2] CjlBKPgtSfadvz65LJKB_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ba_lzPxVSfepVOXU9NNF7A +09:00:42.284 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.284 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.285 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.285 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.286 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.286 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.286 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.286 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.288 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.288 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.288 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.289 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Hqdg1tO-fN4qiM0iDTMNc3EksQDf7XWaDu21LNmmmzc", "Hqdg1tO-fN4qiM0iDTMNc3EksQDf7XWaDu21LNmmmzc", code_challenge) +09:00:42.289 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.289 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.290 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.290 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.290 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.290 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.295 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.297 [XNIO-1 task-2] 741aBpGDQNyaEqxyDoiqAg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.300 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.300 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.308 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.308 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.308 [XNIO-1 task-1] PXbPR2CDS52Zn8G7SMwCVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=W3Lr7tmcReCWfwEEKHR_xA +09:00:42.310 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.310 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.311 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.311 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.311 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.311 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.322 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.322 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.327 [XNIO-1 task-2] sMv2fRbNQkW8k-Z3K156CQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4wN0UCWSTA6_2UxHviDWRg +09:00:42.332 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.332 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.333 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.333 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.334 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.335 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.335 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.335 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.373 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.374 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.379 [XNIO-1 task-2] 6sS3wjAhTauf9sqhzXD-Rw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Q4J4Y1eBTt2vScQJ56NFXQ +09:00:42.391 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f9c58674 +09:00:42.415 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.415 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.416 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.416 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Ah8W_UFPX-DuAbgnonHw_EufyQ5mOx187nKgVh7GqAE", "Ah8W_UFPX-DuAbgnonHw_EufyQ5mOx187nKgVh7GqAE", code_challenge) +09:00:42.417 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.417 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.418 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.418 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.418 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.418 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.422 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.422 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.422 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.423 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.423 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.424 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.424 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.424 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.425 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1e9bfe18 +09:00:42.433 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.433 [XNIO-1 task-2] JDWcfg5KTECZRoAlAqKTHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.442 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.443 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.449 [XNIO-1 task-1] xcJQJa1VSdqrt5kpYqOyZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PQZ_3lqXSCS266eAoEsdMA +09:00:42.466 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.466 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.466 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.467 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.467 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.468 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.468 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.468 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.477 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.478 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.482 [XNIO-1 task-1] DtCm52p2S1CRc1-9DPrgGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YJY88LQBSSezQSs9EWVTLg +09:00:42.510 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f9c58674 +09:00:42.549 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.549 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.549 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.550 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:42.551 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.551 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.552 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.552 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.552 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.562 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.562 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.565 [XNIO-1 task-1] zYTL_u2QRFG4_e7oiFPy1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kibRHgfyScGfiFQlCqNA7Q +09:00:42.583 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f9c58674 +09:00:42.592 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:928a1d7b-d83e-429a-a498-90928827754a +09:00:42.600 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.600 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.601 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.601 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.603 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.603 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.603 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.604 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.614 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.614 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.615 [XNIO-1 task-1] IVpVLYgsTo6RVMLjijpw2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7HqLEXEuQ2mmedWMAqEMrw +09:00:42.620 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.620 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.621 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.622 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.622 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.623 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.623 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.623 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.630 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.630 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.630 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.630 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.630 [XNIO-1 task-1] -ogpCaQTQBKYkHlUzqFSlQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.630 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG com.networknt.schema.TypeValidator debug - validate( "I1byfmeuRzU3WLjJDFDWAG5yqYxNMtFBaCTk2d3Q9ao", "I1byfmeuRzU3WLjJDFDWAG5yqYxNMtFBaCTk2d3Q9ao", code_challenge) +09:00:42.631 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.631 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.632 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.632 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.632 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.632 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.662 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7ecea5d +09:00:42.663 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.663 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.663 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.664 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.664 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.664 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.664 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.667 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.667 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.668 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b7ecea5d +09:00:42.668 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7ecea5d +09:00:42.672 [XNIO-1 task-2] pIHRNhiiQOC-8z0RoCdzUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0qMqBe64SeGpPwoapCDfXw +09:00:42.677 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.677 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.678 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.678 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG com.networknt.schema.TypeValidator debug - validate( "c2266f5f-880e-4d86-b455-70e2ce22b2dd", "c2266f5f-880e-4d86-b455-70e2ce22b2dd", client_id) +09:00:42.678 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.679 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.679 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.679 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.679 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.681 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.681 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.685 [XNIO-1 task-1] 4hGTKQewQB2R_WS-eYj5aw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BOvMYFbgRfmw14kGc1nUAg +09:00:42.688 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.688 [XNIO-1 task-2] w46U8qY3RLaSXqBranvJzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.698 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.699 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.699 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.699 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG com.networknt.schema.TypeValidator debug - validate( "_U-UlwHedMzkUL4ra_GdOJjGbTtaC2G64ITQoh6qkPk", "_U-UlwHedMzkUL4ra_GdOJjGbTtaC2G64ITQoh6qkPk", code_challenge) +09:00:42.701 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.701 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.701 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.701 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.701 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.702 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.711 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.711 [XNIO-1 task-2] aUJOxmU6QG2FgCVdFSGDxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.740 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.740 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.740 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.741 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:42.741 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.741 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.741 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.742 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.742 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.755 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:62a863c2-5046-4a09-a6b9-0760987f7b67 +09:00:42.756 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.760 [XNIO-1 task-2] W873mZBzSduWC7l3a87PCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.768 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.768 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.768 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.768 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG com.networknt.schema.TypeValidator debug - validate( "eIVgS8-kPQIAl9cFmiHeQRCH9avkWi8Zo3vd2DR1ofQ", "eIVgS8-kPQIAl9cFmiHeQRCH9avkWi8Zo3vd2DR1ofQ", code_challenge) +09:00:42.769 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.769 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.769 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.770 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.770 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.770 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.780 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f9c58674 +09:00:42.781 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.782 [XNIO-1 task-2] 1eZUwpz1TTOYE3_BfxwXww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.794 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.794 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.795 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.795 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG com.networknt.schema.TypeValidator debug - validate( "1HRT-FLKBhfwd2-KyvlH12haxdIIGqFulIykYqa7f0s", "1HRT-FLKBhfwd2-KyvlH12haxdIIGqFulIykYqa7f0s", code_challenge) +09:00:42.795 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.796 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.796 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.796 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.796 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.796 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.810 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.810 [XNIO-1 task-2] rB9r6pkkRTmuYyXHCqZlRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.812 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f9c58674 +09:00:42.825 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.825 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.825 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.826 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f9c58674 +09:00:42.826 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG com.networknt.schema.TypeValidator debug - validate( "I0uuu5wc4dVByejvPfxXzpyv4D-G3i1HlTYbAPnC9DI", "I0uuu5wc4dVByejvPfxXzpyv4D-G3i1HlTYbAPnC9DI", code_challenge) +09:00:42.826 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.826 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.827 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.827 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.827 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.827 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.836 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.836 [XNIO-1 task-2] anA0mUWJQPmpu-IfkxB6dg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:42.844 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:36eaa917-505d-4e8c-b7cb-a980772165b3 +09:00:42.846 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:36eaa917-505d-4e8c-b7cb-a980772165b3 +09:00:42.868 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.868 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.868 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.869 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.869 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.869 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.869 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.870 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.876 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.877 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.879 [XNIO-1 task-2] 6cQxNm0uQkCexKLLzaRT3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rgXdieJ-SiiRN-SYCLwicQ +09:00:42.886 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.886 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.886 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:42.887 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:42.887 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:42.887 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:42.888 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:42.888 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:42.894 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:42.894 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:42.897 [XNIO-1 task-2] 6SKmctQSS56vUAZzmN5djA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UGrdVGMaQly55SUwI2JN6A +09:00:42.913 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c81e9bba-1576-4b38-b2dd-a8edfed9a1d3 +09:00:42.962 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.962 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:42.962 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:42.963 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Bl2Fe2NMhYdhwRDYMkr7BPiPen5Ei1lDkTFikZnrX6o", "Bl2Fe2NMhYdhwRDYMkr7BPiPen5Ei1lDkTFikZnrX6o", code_challenge) +09:00:42.963 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:42.963 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:42.964 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:42.964 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:42.964 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:42.964 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:42.970 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:42.971 [XNIO-1 task-2] bJT4KuidQIWzjJs-6jEaQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.001 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dbb3da4f +09:00:43.003 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dbb3da4f +09:00:43.007 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.007 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.007 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.008 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.008 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.008 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.008 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.008 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.033 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.033 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.035 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.036 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.036 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.036 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f9c58674 +09:00:43.036 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", client_id) +09:00:43.037 [XNIO-1 task-2] hjIwgDmpTJqBBnTjE4Zi3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=a1Akf5AoRHyAQYjBL71kYQ +09:00:43.037 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.037 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.037 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.037 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.039 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.047 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.048 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.049 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.050 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.050 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.051 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.051 [XNIO-1 task-1] Kpki8jdrR6Say4Z0XZkzcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=x2O_ZXlMSvW6wdHkrxoYaQ +09:00:43.051 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.052 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.052 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.052 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.056 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.056 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.056 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.057 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", client_id) +09:00:43.057 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.057 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.058 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.058 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.058 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.064 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.064 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.067 [XNIO-1 task-2] gehFehm1RdSEgpow8ju-EA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HPH7q4EbQM2cpehJC5e6KQ +09:00:43.068 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.068 [XNIO-1 task-1] bMQgoG2tSkGEe-rzyt0waA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.077 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.077 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.077 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.077 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.078 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", client_id) +09:00:43.078 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.078 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.079 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.079 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.079 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.080 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b1ae42cc-fa97-490b-af03-ec34783074a0 +09:00:43.084 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b7ecea5d +09:00:43.121 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.121 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.156 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dbb3da4f +09:00:43.157 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.157 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.157 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.158 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", client_id) +09:00:43.159 [XNIO-1 task-1] CXFb7i7_QTGrrBP42UxbwA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=r_G8lvynQ3WKXKYQut1img +09:00:43.159 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.160 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.160 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.164 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.170 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.170 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.173 [XNIO-1 task-2] 9fmxvoe9Qs2_f3FzX69YiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lsOyhmaxSLy5CCBNzXpItg +09:00:43.174 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dbb3da4f +09:00:43.180 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.180 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.180 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.180 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.181 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.181 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.181 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.181 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.191 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.191 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.198 [XNIO-1 task-2] K7H0SQzOQ8m1OJ0oHzQ4gw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OoC7UAvsTgKTEXCcATFp-w +09:00:43.202 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:dbb3da4f +09:00:43.202 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.203 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.203 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.203 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.203 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", client_id) +09:00:43.204 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.206 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.206 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.206 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.206 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.207 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.208 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG com.networknt.schema.TypeValidator debug - validate( "46c127ea-5608-48a9-8c7d-a14ab59596d9", "46c127ea-5608-48a9-8c7d-a14ab59596d9", client_id) +09:00:43.208 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.208 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.209 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.209 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.209 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.221 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.221 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.225 [XNIO-1 task-1] Rs1j467VRLuzbUIxkJc0CA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-ic7ghNYSQ2DF3Ecs_eObg +09:00:43.228 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.228 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.230 [XNIO-1 task-2] uQbzbTy3SQW4us6OfGyIYg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UvvhiBB_QR2C0Y1gPgGa4w +09:00:43.233 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:42fe5f93 +09:00:43.239 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.240 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.240 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.240 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.240 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.240 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.240 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG com.networknt.schema.TypeValidator debug - validate( "QUQErKE_feFxjU-mCKimbMXOFPsoYq9q1K91dVw1o6g", "QUQErKE_feFxjU-mCKimbMXOFPsoYq9q1K91dVw1o6g", code_challenge) +09:00:43.241 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.241 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.241 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.241 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.241 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.241 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.241 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.241 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.242 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.242 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.243 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.248 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.248 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.248 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.248 [XNIO-1 task-2] IVyqLsl7Q8W8BE5QDqyzzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.253 [XNIO-1 task-1] QoZehNYWQ0KVW84VBL2zuw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dNtSf_XoRb2PRiUtOTZNbQ +09:00:43.259 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:db0a0d23-0703-4c9a-ab1e-8ad0c277516a +09:00:43.261 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.261 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.261 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.261 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG com.networknt.schema.TypeValidator debug - validate( "h3-NVLM112RRrkEJbOz6RBB5TFBVz05dKxt3EfGIhHM", "h3-NVLM112RRrkEJbOz6RBB5TFBVz05dKxt3EfGIhHM", code_challenge) +09:00:43.263 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:43.263 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.263 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.263 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.264 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.264 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.277 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.277 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.280 [XNIO-1 task-1] YrM6TlprS_6r-3hYl7UX7w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3WMsz3RmQV2G9XyZEgH91Q +09:00:43.353 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0488b210 +09:00:43.355 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0488b210 +09:00:43.360 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.361 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.361 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.361 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG com.networknt.schema.TypeValidator debug - validate( "46c127ea-5608-48a9-8c7d-a14ab59596d9", "46c127ea-5608-48a9-8c7d-a14ab59596d9", client_id) +09:00:43.361 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.362 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.362 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.362 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.362 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.376 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.376 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.379 [XNIO-1 task-1] KhE0J8GuRvKMFk_1EC-AWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BD1edGvOR86C5SmT0od_mQ +09:00:43.392 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:43c85d29-1914-4a81-8bff-bebc3880f38c +09:00:43.399 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a90f1ae8-9dd9-4f44-884e-7d5a4997f7f8 +09:00:43.404 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0488b210 +09:00:43.413 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.413 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.414 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.414 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG com.networknt.schema.TypeValidator debug - validate( "b1ae42cc-fa97-490b-af03-ec34783074a0", "b1ae42cc-fa97-490b-af03-ec34783074a0", client_id) +09:00:43.414 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.415 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.415 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.415 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.416 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.422 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.422 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.425 [XNIO-1 task-1] 7hawF1UNQhyOcmtTFSYwow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=E3SmbIFkR7-iNpaDVeBXxA +09:00:43.433 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.433 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.433 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.434 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.434 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.434 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.434 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.434 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.443 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.443 [XNIO-1 task-1] jQtHrnVeTo-D5lL4GTV68g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.443 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.443 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.444 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.444 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG com.networknt.schema.TypeValidator debug - validate( "FOvnQT1FFkvqOe1rGnnbRRDNf31k6B6SHM7HiPo8sCg", "FOvnQT1FFkvqOe1rGnnbRRDNf31k6B6SHM7HiPo8sCg", code_challenge) +09:00:43.444 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:43.444 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.445 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.445 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.445 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.445 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.452 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:59fa7419 +09:00:43.454 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.454 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.454 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.455 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.455 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.455 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.455 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.455 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.456 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:59fa7419 +09:00:43.457 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:36eaa917-505d-4e8c-b7cb-a980772165b3 +09:00:43.458 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.458 [XNIO-1 task-2] VP7tqpcISPWL3847J7pfWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.461 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.462 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.462 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.463 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.463 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.463 [XNIO-1 task-1] Z-9UnYwvRPirCTJ7ySG_Sw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Rk21CohZSkC2EJ93qB44nQ +09:00:43.463 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG com.networknt.schema.TypeValidator debug - validate( "46c127ea-5608-48a9-8c7d-a14ab59596d9", "46c127ea-5608-48a9-8c7d-a14ab59596d9", client_id) +09:00:43.464 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.464 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.464 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.465 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.465 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.471 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.472 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.475 [XNIO-1 task-2] h7g-f-GQRYu64NRhJDvh_g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U3NcLl47TCCEjnhefkOORA +09:00:43.494 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.494 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.495 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.495 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.495 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.496 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.496 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.496 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.503 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.504 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.505 [XNIO-1 task-2] ij9T5-dnRnCjaye7g4g1fg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U-_0uHYqRyyOvjrN-UD9jw +09:00:43.511 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.511 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.511 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.512 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.512 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.512 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.512 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.513 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.525 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.526 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.528 [XNIO-1 task-2] CIdmH6xiQVaZQTGyjoG3hQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TkUSBxQTRfS-CyS85pr_fw +09:00:43.538 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.538 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.539 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.539 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.540 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.540 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.541 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.541 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.547 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:43c85d29-1914-4a81-8bff-bebc3880f38c +09:00:43.550 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.550 [XNIO-1 task-2] Dub0Sj9jRK2zbKFXeNbHqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.575 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:59fa7419 +09:00:43.591 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.591 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.591 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.591 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b1ae42cc-fa97-490b-af03-ec34783074a0", "b1ae42cc-fa97-490b-af03-ec34783074a0", client_id) +09:00:43.592 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.592 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.592 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.592 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.593 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.601 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.600 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e029e732 +09:00:43.606 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e029e732 +09:00:43.605 [XNIO-1 task-2] Idg62DuDSL2TmrSsrM6_EQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VvOV3mv4TB-rDylLzIBu8A +09:00:43.614 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.615 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.615 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.615 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:43.616 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.616 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.616 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.616 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.616 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.612 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b7ecea5d +09:00:43.625 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.625 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.648 [XNIO-1 task-2] SjMpRs6_SW-ligh9dqb4WQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jGe_NuJBRJKjkkQrDdjkPQ +09:00:43.708 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.709 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.709 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.709 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2a45f98-718b-41c1-97a0-4bd6420d5424", "f2a45f98-718b-41c1-97a0-4bd6420d5424", client_id) +09:00:43.710 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.710 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.710 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.710 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.711 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.715 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e029e732 +09:00:43.722 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.722 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.743 [XNIO-1 task-2] yFMz50SoSEWfOzWcBJUzjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LioSNT7tReaTqSSbYIL5mQ +09:00:43.749 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:59fa7419 +09:00:43.755 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.755 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.755 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.756 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f2a45f98-718b-41c1-97a0-4bd6420d5424", "f2a45f98-718b-41c1-97a0-4bd6420d5424", client_id) +09:00:43.756 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.756 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.757 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.757 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.757 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.754 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.758 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.758 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.758 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG com.networknt.schema.TypeValidator debug - validate( "c2266f5f-880e-4d86-b455-70e2ce22b2dd", "c2266f5f-880e-4d86-b455-70e2ce22b2dd", client_id) +09:00:43.758 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.758 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.758 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.759 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.761 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.765 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.765 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.768 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.768 [XNIO-1 task-2] 0eosCXJFRHucTktvfrjqCA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.768 [XNIO-1 task-1] T19PY5EvQAGR8sBYvqum9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oE1boIjoTl-MkyzqsUWQfA +09:00:43.792 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.793 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.793 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.794 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG com.networknt.schema.TypeValidator debug - validate( "NQSfXS5rzMua_NkZPJe4eYAtcpkuyYg2MtSMJmZNNLo", "NQSfXS5rzMua_NkZPJe4eYAtcpkuyYg2MtSMJmZNNLo", code_challenge) +09:00:43.794 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:43.794 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.794 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.794 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.795 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.795 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.821 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.822 [XNIO-1 task-2] OPR-rWXuTYaDWQMTRH764g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.830 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.830 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.830 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.831 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcef276c-c5fc-463b-a1eb-7bbbd942067c", "dcef276c-c5fc-463b-a1eb-7bbbd942067c", client_id) +09:00:43.832 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.832 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.832 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.832 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.835 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.836 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.836 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.836 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", client_id) +09:00:43.836 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.837 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.837 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.837 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.837 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.837 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.843 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.844 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.844 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.845 [XNIO-1 task-2] XWTVn2-QSoip6fpU_Tx2JQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.846 [XNIO-1 task-1] AjSO_QivRaGD68wsqxYs5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nU2gQez5Q3a5c2mXT7C_8w +09:00:43.854 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.855 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.855 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.855 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.856 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.856 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", client_id) +09:00:43.856 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.856 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.856 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.856 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:43.857 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.857 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.857 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.857 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.857 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.857 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.859 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.860 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.867 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.868 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.871 [XNIO-1 task-1] _iem0UiOTgq20NgSt4R67w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WqD-IBOCT-WfsVFIszqrTQ +09:00:43.872 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.873 [XNIO-1 task-2] T3c3HypvQlCRcUmbwUBEIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.913 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.913 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.913 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.914 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG com.networknt.schema.TypeValidator debug - validate( "CmYpM9D05Oe-Ns3E2onj32AyA6-x3jXTTX5MSiOG9Hc", "CmYpM9D05Oe-Ns3E2onj32AyA6-x3jXTTX5MSiOG9Hc", code_challenge) +09:00:43.914 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:43.914 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.914 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.914 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.915 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.915 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.915 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.915 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.915 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.915 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.915 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.916 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.916 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.916 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.920 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0488b210 +09:00:43.926 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0488b210 +09:00:43.926 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.926 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.927 [XNIO-1 task-1] eswLnVN2SS-MfYTuavvPeg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.929 [XNIO-1 task-2] IOQlYxFpQ_KtVNgOH5jE2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cXfTyWHdSteFJSm61nURng +09:00:43.935 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.936 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.936 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.936 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG com.networknt.schema.TypeValidator debug - validate( "SJgLTniC6LkE1dN1cLa1EPIat4TL7tIiKqt5ONcrjMM", "SJgLTniC6LkE1dN1cLa1EPIat4TL7tIiKqt5ONcrjMM", code_challenge) +09:00:43.937 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:43.937 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.937 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.937 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.937 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.937 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.944 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:43.944 [XNIO-1 task-1] AQ4VxRkpTDKWbxzSquherQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:43.950 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.951 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:43.951 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:43.951 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1kYTWO1N_ixzbvPoAZIpU9wo3YZ3We5HHXcUBN5hEKE", "1kYTWO1N_ixzbvPoAZIpU9wo3YZ3We5HHXcUBN5hEKE", code_challenge) +09:00:43.951 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:43.952 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:43.952 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:43.952 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:43.952 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:43.954 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:43.956 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.956 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.956 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:43.957 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:43.957 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:43.957 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:43.957 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:43.957 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:43.961 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.961 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.964 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:43.965 [XNIO-1 task-2] I4GAwOXgS6SQjxfBVZaaag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:43.964 [XNIO-1 task-1] VlV_yYbTQiGhmraii4JJHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mgYXjte5R5aQMI-vhelOKw +09:00:44.022 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:488bdf38-55fd-46b2-a707-34813bd98386 +09:00:44.023 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.028 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.028 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.028 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", client_id) +09:00:44.029 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.029 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.030 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.030 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.031 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.039 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.040 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.040 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.040 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:44.040 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.041 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.041 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.041 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.041 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.045 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.048 [XNIO-1 task-2] AxoqzLMuThaMB2sY1W3GGg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.058 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.058 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.060 [XNIO-1 task-1] DQT8pk8-Tzqm1dLHIpKmhw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oozAeNiwQjCBNkqRJ1sJaA +09:00:44.068 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.068 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.068 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.069 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.069 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.069 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.069 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "vxz0unLw2zVEM62Dc5WsjVAfxRUj5MGSkJQ6Lp2doXs", "vxz0unLw2zVEM62Dc5WsjVAfxRUj5MGSkJQ6Lp2doXs", code_challenge) +09:00:44.069 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:44.069 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.069 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.069 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.070 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.070 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.070 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.070 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.070 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.070 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.072 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.080 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.080 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.082 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.082 [XNIO-1 task-1] gY0nx9q3Te-slS-X3NQ1Yg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.084 [XNIO-1 task-2] Esjcdz5JROKdMMAQwuilIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wpEgMZT5SfWj7EVcj3kL-g +09:00:44.088 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.089 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.089 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.089 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG com.networknt.schema.TypeValidator debug - validate( "TrdsIB2ZahLN7Fzl8sLSFz62NHV8OjdIQCLg2PlSmZQ", "TrdsIB2ZahLN7Fzl8sLSFz62NHV8OjdIQCLg2PlSmZQ", code_challenge) +09:00:44.090 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:44.090 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.090 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.090 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.090 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.092 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.092 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.092 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.092 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.093 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.093 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.093 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.093 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.093 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.098 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.099 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.104 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.104 [XNIO-1 task-2] gClrG7DAQQKUaVaalUc9ZA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.105 [XNIO-1 task-1] nqje2aInQUyem7pA16mIpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=syHlJbOqSFqb8aLDR1eKdQ +09:00:44.119 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.120 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.120 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.121 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "389M4-ur6XN6rpduk-q7sb0IjD5EaiJE0wk16Cxvmx4", "389M4-ur6XN6rpduk-q7sb0IjD5EaiJE0wk16Cxvmx4", code_challenge) +09:00:44.122 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:44.122 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.123 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.123 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.124 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.124 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.133 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7ecea5d +09:00:44.136 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.136 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.143 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.143 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.144 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.144 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.144 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.145 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.145 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.145 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.146 [XNIO-1 task-2] 2tpamCJ3Ry6RIjV449rCKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GudU1RDDSZiGheMtnmhQFA +09:00:44.154 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.154 [XNIO-1 task-1] 5CZ1XOaIToOqvpMJfhyFaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.178 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.179 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.179 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.181 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", client_id) +09:00:44.182 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.182 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.182 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.183 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.183 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.190 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.190 [XNIO-1 task-1] VoyMIH5pTrqud6ZCsLHvNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.198 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.199 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.199 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.199 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", client_id) +09:00:44.199 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.200 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.200 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.200 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.200 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.209 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.209 [XNIO-1 task-1] BO65_pRKSt-xwMPbu3lZNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.211 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.211 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.211 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.213 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG com.networknt.schema.TypeValidator debug - validate( "BCmdvIDGf5AmrFEi9ufbiVrfGDuRreuxMmwxVJ5b9rQ", "BCmdvIDGf5AmrFEi9ufbiVrfGDuRreuxMmwxVJ5b9rQ", code_challenge) +09:00:44.213 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:44.214 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.214 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.214 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.214 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.217 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.218 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.218 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.218 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.219 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.219 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.219 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.219 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.219 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.230 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.230 [XNIO-1 task-1] iUvPCk5RSNeFeD7j48MExw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.234 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.245 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.245 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.246 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.237 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.248 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.249 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.252 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.250 [XNIO-1 task-2] lMZLrMyLSh6RoMWF5Wanig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3jhiltkwQV2NAx11VKQqHQ +09:00:44.252 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.252 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.252 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.259 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.259 [XNIO-1 task-1] pM_NiNolSiWQnfNFtB5uhg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.267 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.267 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.267 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.268 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG com.networknt.schema.TypeValidator debug - validate( "b1ae42cc-fa97-490b-af03-ec34783074a0", "b1ae42cc-fa97-490b-af03-ec34783074a0", client_id) +09:00:44.268 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.268 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.268 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.268 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.269 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.272 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1fe5b791-f280-4d1a-8d58-6710cd12abac +09:00:44.281 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.281 [XNIO-1 task-1] kQapxPqwRx-wVzkTHoSv9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.295 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.297 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.297 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.298 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.298 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.298 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.298 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.298 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1ae42cc-fa97-490b-af03-ec34783074a0", "b1ae42cc-fa97-490b-af03-ec34783074a0", client_id) +09:00:44.299 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:44.299 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.299 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.299 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.299 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.299 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.299 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.300 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.299 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.300 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.300 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.302 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ef63ec8e +09:00:44.309 [XNIO-1 task-2] pnKkKJD3T9qFDQpMNdaZWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.309 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.310 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.310 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.312 [XNIO-1 task-1] aq3w3eTUTiy0Ns19BNPr-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6jETt2z3ROKTdh73GRbeWA +09:00:44.328 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.328 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.328 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.329 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.332 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.332 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.335 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.335 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.349 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.350 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.360 [XNIO-1 task-1] yQMjleSwRUiR86wg4y8bTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ufHZQHLQQoKJO5qe9zoGJg +09:00:44.365 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.365 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.365 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.366 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.366 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.366 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:44.366 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.366 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7ecea5d +09:00:44.367 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", client_id) +09:00:44.367 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.367 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.367 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.367 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.367 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.367 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.368 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.368 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.368 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.370 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.375 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.375 [XNIO-1 task-1] VMWwh2x5SYixDK5wrCBG6A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.379 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.379 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.383 [XNIO-1 task-2] dDVVh20mRBGoBn0TszcUyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2W38-sMLRt6CeTJ1VOFNJA +09:00:44.387 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.387 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.387 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.388 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.388 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.388 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.390 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.390 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.409 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.409 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.414 [XNIO-1 task-2] IG9-iZC-QB-chFqiiF_tug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WIz0n9K8Tiy_W_pWKkUFRQ +09:00:44.447 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4ce749d0-645d-44b7-aeb7-96e660e843cb +09:00:44.470 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.470 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.470 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.471 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.471 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.471 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.471 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.471 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.487 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ef63ec8e +09:00:44.502 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.502 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.508 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.511 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.511 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.511 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG com.networknt.schema.TypeValidator debug - validate( "I-cH4fnVHqZYDEuAxgVfsMBfItspOZGX-wko3rI99J4", "I-cH4fnVHqZYDEuAxgVfsMBfItspOZGX-wko3rI99J4", code_challenge) +09:00:44.512 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:44.512 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.512 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.512 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.512 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.508 [XNIO-1 task-2] yjSigiXbSKOeDWlmm50mpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wJeqFft1SxuttzBK8zJYlA +09:00:44.520 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c2266f5f-880e-4d86-b455-70e2ce22b2dd +09:00:44.522 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.522 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.522 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.522 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.523 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +Jun 29, 2024 9:00:44 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +09:00:44.523 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.523 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.536 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +09:00:44.543 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.545 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.545 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.545 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.543 [XNIO-1 task-1] AUz_Dl0RTya-OCqHmjFzvA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.545 [XNIO-1 task-2] qMdo62CBS1Sz7G1D0UP7zg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:00:44.604 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.604 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.604 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.605 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc222341-2e27-4f1d-8e03-7d33d08d3236", "dc222341-2e27-4f1d-8e03-7d33d08d3236", client_id) +09:00:44.605 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.605 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.606 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.606 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.606 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.624 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.628 [XNIO-1 task-1] LsIKzbEWQYu-UKVVr8KxgA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.678 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.678 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.678 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.678 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "U9G4xYAD8mdP1Vcnd2LMTCrImbCyzqZ1mo5oScgDxpo", "U9G4xYAD8mdP1Vcnd2LMTCrImbCyzqZ1mo5oScgDxpo", code_challenge) +09:00:44.679 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:44.679 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.679 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.679 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.679 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.679 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.690 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.690 [XNIO-1 task-1] bv5u2DtJRYiwWMhouCAS1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.709 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.709 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.709 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.709 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Na6dDZ3tBYMVeJpf2k8tKRRq3Bb3RkQCHGd75ccUX4I", "Na6dDZ3tBYMVeJpf2k8tKRRq3Bb3RkQCHGd75ccUX4I", code_challenge) +09:00:44.710 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:44.710 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.710 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.710 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.710 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.710 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.718 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.718 [XNIO-1 task-1] 8Xfs-I3CS8-NflvQONxaKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.755 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.755 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.755 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.755 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc222341-2e27-4f1d-8e03-7d33d08d3236", "dc222341-2e27-4f1d-8e03-7d33d08d3236", client_id) +09:00:44.755 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.756 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.756 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.756 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.756 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.769 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.769 [XNIO-1 task-1] nSss9DNaRsCUd8F97UIyLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.780 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.780 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.781 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.781 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc222341-2e27-4f1d-8e03-7d33d08d3236", "dc222341-2e27-4f1d-8e03-7d33d08d3236", client_id) +09:00:44.781 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.781 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:63453920-ece0-47fe-b25e-61b0bb375ebf +09:00:44.782 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.782 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.782 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.784 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:63453920-ece0-47fe-b25e-61b0bb375ebf +09:00:44.791 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.791 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.803 [XNIO-1 task-1] rRkW1BWGSeCfSXtAfGmxZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5cOaNvYkTjeSiJHjyu_B_g +09:00:44.820 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:322067a7-ca67-4aa3-b630-f24c6cf73bcb +09:00:44.830 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7ecea5d +09:00:44.832 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.832 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.832 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.832 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", client_id) +09:00:44.833 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.833 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.833 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.833 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.833 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.838 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.839 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.840 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.840 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG com.networknt.schema.TypeValidator debug - validate( "8315cf01-e91c-4ec5-bebd-79faef8b6039", "8315cf01-e91c-4ec5-bebd-79faef8b6039", client_id) +09:00:44.840 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.841 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.841 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.841 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.843 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.846 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b7ecea5d +09:00:44.847 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.847 [XNIO-1 task-1] EZ5HkagOTkGWTVhnxZrCUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.852 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.852 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.853 [XNIO-1 task-2] Xqs7ZUWbQKiQPB0u7lcA0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PFPQXW0CTguN0oaoTY44Xw +09:00:44.885 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.885 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.885 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.885 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.885 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.886 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.886 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.886 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:44.901 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.902 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.905 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b0633b6f +09:00:44.907 [XNIO-1 task-2] YTP64DKpRdi6vKOCrhMBFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=O0kg879aRfWR2tAnhk2MRw +09:00:44.917 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.917 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:44.917 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:44.918 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG com.networknt.schema.TypeValidator debug - validate( "46c127ea-5608-48a9-8c7d-a14ab59596d9", "46c127ea-5608-48a9-8c7d-a14ab59596d9", client_id) +09:00:44.927 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:44.927 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:44.927 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:44.927 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:44.927 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:44.935 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:44.935 [XNIO-1 task-2] r6TihCZ8R_6WexSkazyUZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:44.943 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:64db91e2 +09:00:44.945 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:64db91e2 +09:00:44.975 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.975 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.975 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.976 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG com.networknt.schema.TypeValidator debug - validate( "8abc872a-a9e8-48ef-8035-d514e8a14e8b", "8abc872a-a9e8-48ef-8035-d514e8a14e8b", client_id) +09:00:44.976 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.976 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.976 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.976 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:44.981 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:64db91e2 +09:00:44.981 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:64db91e2 +09:00:44.991 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:44.992 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:44.995 [XNIO-1 task-2] k8xUkOH8RneuqKGxqZGwNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2cVdI9g3RZiin-r1NrVpRA +09:00:44.996 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.996 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.996 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:44.997 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:44.997 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:44.997 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:44.997 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.000 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.001 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.003 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.003 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.004 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG com.networknt.schema.TypeValidator debug - validate( "ruY_Jk851TfU54_-tWiosRCYDliJQ6V6owSSPDLqJTE", "ruY_Jk851TfU54_-tWiosRCYDliJQ6V6owSSPDLqJTE", code_challenge) +09:00:45.004 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.004 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.004 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.004 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.005 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.005 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.012 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.013 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.017 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.017 [XNIO-1 task-2] YGrSiKXNQuSV_ABN5wqcew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.018 [XNIO-1 task-1] 86NxcSFFQdao7YThGXqS5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GOGcgd8CSA2RkHktrNrB7A +09:00:45.028 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.029 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.029 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.029 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "zV1S91Sbi__ymJuYM3jVrGUBQFLS3TFWiWlGk2q-WFM", "zV1S91Sbi__ymJuYM3jVrGUBQFLS3TFWiWlGk2q-WFM", code_challenge) +09:00:45.029 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.030 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.030 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.031 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.031 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.031 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.032 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e89f5625-428d-4d97-a973-d8ce08db86f1 +09:00:45.038 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.039 [XNIO-1 task-2] CQyCOVxaTb6SLtmHZ5YwjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.042 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.042 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.043 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.043 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.043 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.044 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.044 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.044 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.044 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.050 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.050 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.050 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.050 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "63453920-ece0-47fe-b25e-61b0bb375ebf", "63453920-ece0-47fe-b25e-61b0bb375ebf", client_id) +09:00:45.051 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.051 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.051 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.051 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.052 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.054 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.054 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.058 [XNIO-1 task-1] uDNXIy6pRQ6vO--YsOpGNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5rLb64fvSMGrP5yG51l-eg +09:00:45.061 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.061 [XNIO-1 task-2] XrOGiCqFTvq0EdKJ_o2G6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.097 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.097 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.097 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.097 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG com.networknt.schema.TypeValidator debug - validate( "bjj0Uk_YkfL1aUf1DEJgCt0NDLhhOQKeHy78l43531U", "bjj0Uk_YkfL1aUf1DEJgCt0NDLhhOQKeHy78l43531U", code_challenge) +09:00:45.098 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.098 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.098 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.098 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.098 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.122 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.131 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.131 [XNIO-1 task-2] xpup00STQxOo7QsKi7mnCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.144 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.144 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.144 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.144 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG com.networknt.schema.TypeValidator debug - validate( "JmrJ9xdLDfxa_ytqFlz_iHLHPWigX_QnhauBRhWbcEI", "JmrJ9xdLDfxa_ytqFlz_iHLHPWigX_QnhauBRhWbcEI", code_challenge) +09:00:45.145 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.145 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.145 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.145 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.145 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.147 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.155 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:64db91e2 +09:00:45.158 [XNIO-1 task-2] 3rZ_LGx1SfqTPN5jVW-KAw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.156 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6329a6b3-1d03-4065-ab9a-928d3aa8672b +09:00:45.160 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6329a6b3-1d03-4065-ab9a-928d3aa8672b +09:00:45.160 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e89f5625-428d-4d97-a973-d8ce08db86f1 +09:00:45.167 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.168 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.168 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.168 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG com.networknt.schema.TypeValidator debug - validate( "cOChdOsf_LU9o2BrRRRL1RMgcfIoAB--NQjo8AwPOcg", "cOChdOsf_LU9o2BrRRRL1RMgcfIoAB--NQjo8AwPOcg", code_challenge) +09:00:45.168 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.168 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.169 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.169 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.169 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.169 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.179 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.179 [XNIO-1 task-2] b0O4Wj2SR6SAd6P41gwV5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.215 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.216 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.216 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:17eebe7b-aefc-49cc-85d4-ab2624da1034 +09:00:45.216 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.216 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG com.networknt.schema.TypeValidator debug - validate( "k5VD4NO7mYsGhJuREAyDx9PMbgv0fbEuoBEN5-pl9RY", "k5VD4NO7mYsGhJuREAyDx9PMbgv0fbEuoBEN5-pl9RY", code_challenge) +09:00:45.216 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.217 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.217 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.217 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.217 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.218 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.229 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.230 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:64db91e2 +09:00:45.231 [XNIO-1 task-2] aTuC4pLhRJyvVFSY9dbltA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vHzTcKXlQmGT7sQ07_sAww +09:00:45.256 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.258 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.263 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.263 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b0633b6f +09:00:45.264 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.268 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.268 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.268 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.268 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.268 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.274 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.287 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.287 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.287 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.288 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.289 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.290 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.291 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.291 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.303 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.303 [XNIO-1 task-2] KMOlopCgRKyZBxnjfqmnjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.307 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.310 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.310 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.315 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:62e01075-fd77-43a0-a88a-f461ce12a4f0 +09:00:45.315 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.315 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.316 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.316 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", "fb7ac70c-8b7c-4c10-84d3-151e3e66a854", client_id) +09:00:45.317 [XNIO-1 task-1] YC2c0lhmR0ihDqVCIOMfwA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uponxNn5Q4CRdncPXcyZ6Q +09:00:45.319 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.319 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.320 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.320 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.320 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.321 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.321 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.321 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Sd3afIrLeaHizefDXIhixwk4WQtWFuQRk5BCCLxH_Qw", "Sd3afIrLeaHizefDXIhixwk4WQtWFuQRk5BCCLxH_Qw", code_challenge) +09:00:45.321 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.321 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.322 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.322 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.322 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.322 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.330 [XNIO-1 task-1] HcCoPTGyTOGJYAOACoh4CQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.333 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.333 [XNIO-1 task-2] 0nbQWjAZQd2fmrrNBCWLTg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.333 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7d9b06b2-6912-4289-8c92-93b3bf7fbe5c +Jun 29, 2024 9:00:45 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:00:45.372 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:63453920-ece0-47fe-b25e-61b0bb375ebf +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:00:45.381 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.381 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.382 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.382 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.382 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.382 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.383 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.383 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.393 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.393 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.402 [XNIO-1 task-2] bU7tv0GVST6zNlqgj5Z6Qg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Rd4HGRmrTouDCwAwlt6RJQ +09:00:45.402 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.403 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.403 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.403 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG com.networknt.schema.TypeValidator debug - validate( "8315cf01-e91c-4ec5-bebd-79faef8b6039", "8315cf01-e91c-4ec5-bebd-79faef8b6039", client_id) +09:00:45.403 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.403 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.404 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.404 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.404 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.411 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.411 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.413 [XNIO-1 task-2] mqm77VOcQ6Kl8ISB6NDhlg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=v8W8z0k8S1ej6jEdnvF2zA +09:00:45.423 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.423 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.423 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.424 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "8315cf01-e91c-4ec5-bebd-79faef8b6039", "8315cf01-e91c-4ec5-bebd-79faef8b6039", client_id) +09:00:45.424 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.424 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.424 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.424 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.425 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.425 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.428 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.428 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.428 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.429 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.429 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.429 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.429 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.429 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.441 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.442 [XNIO-1 task-1] TqH4bq2yQRWV8tPH25HnOA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.442 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.442 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.445 [XNIO-1 task-2] x-rOOPFLTZOse6__3cIe5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Q-zJrlClR7aob3E1WWNc0w +09:00:45.454 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.454 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.454 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.454 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG com.networknt.schema.TypeValidator debug - validate( "l2CayvSzL10qUGCmI-ppKCWY4L2JhIgrII3XCr5MLvw", "l2CayvSzL10qUGCmI-ppKCWY4L2JhIgrII3XCr5MLvw", code_challenge) +09:00:45.455 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.455 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.455 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.455 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.455 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.455 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.455 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.456 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.456 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.456 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.456 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.457 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.457 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.457 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.471 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.471 [XNIO-1 task-1] QPeX_h4KQZG4MRjVuniZMg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.471 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.472 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.475 [XNIO-1 task-2] 0xreWHjxTlSAVrMzz1QWNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M7XS7WDSTcqMiJlJdLD3sg +09:00:45.482 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.483 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.483 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.483 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", client_id) +09:00:45.483 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.484 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.484 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.484 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.506 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.507 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:00a2e320 +09:00:45.513 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.513 [XNIO-1 task-1] 2K4u79VFREa1c1_5yjdnNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.513 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:00a2e320 +09:00:45.534 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.534 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.534 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.535 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", client_id) +09:00:45.535 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.535 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.535 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.535 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.535 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.544 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.544 [XNIO-1 task-1] 02BZ74UOT365IC7bwyyJeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.551 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:00a2e320 +09:00:45.599 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e682e8ed-ef3f-4f2c-a5d9-5887a6ee67f9 +09:00:45.618 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b0633b6f +09:00:45.630 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.630 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.630 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.631 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG com.networknt.schema.TypeValidator debug - validate( "YgzR6Sq8QulIKEeG31tbwqSyRyAFJjyhVdsOTdP4nO8", "YgzR6Sq8QulIKEeG31tbwqSyRyAFJjyhVdsOTdP4nO8", code_challenge) +09:00:45.631 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.631 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.631 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.631 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.632 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.632 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.642 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.642 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.643 [XNIO-1 task-1] rIvlJucpRX--Na6QMD-hoA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lg4fduZDR16BUp_lca2SGw +09:00:45.649 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.649 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.649 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.650 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG com.networknt.schema.TypeValidator debug - validate( "89931d25-5050-4b87-bccd-00dcc99bdb67", "89931d25-5050-4b87-bccd-00dcc99bdb67", client_id) +09:00:45.650 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.650 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.650 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.651 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.651 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.653 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.653 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.654 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.654 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG com.networknt.schema.TypeValidator debug - validate( "c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f", "c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f", client_id) +09:00:45.654 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.654 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.655 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.655 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.655 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.657 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.657 [XNIO-1 task-1] ZNjWo7jGR1avAMAzPn8ciA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.661 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.661 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.664 [XNIO-1 task-2] v0bspevWQ9WA12eE6oPxPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3L7TKX-AQfCOIPLfZQcP_A +09:00:45.674 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.674 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.675 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.675 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1ac8256b-3eee-4c25-9c34-76958f78b1ad", "1ac8256b-3eee-4c25-9c34-76958f78b1ad", client_id) +09:00:45.675 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.675 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.675 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.676 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.676 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.678 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.679 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.679 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.679 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG com.networknt.schema.TypeValidator debug - validate( "c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f", "c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f", client_id) +09:00:45.679 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.679 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.680 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.680 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.680 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.684 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.684 [XNIO-1 task-2] nBsRO5ltSays89oaAIywZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.686 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.686 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.688 [XNIO-1 task-1] x04yUXPOQ7iXfgFhklLi0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KyycMk_DSVymPG3SPQxhnQ +09:00:45.689 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.689 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.690 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.690 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG com.networknt.schema.TypeValidator debug - validate( "1ac8256b-3eee-4c25-9c34-76958f78b1ad", "1ac8256b-3eee-4c25-9c34-76958f78b1ad", client_id) +09:00:45.690 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.690 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.691 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.691 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.691 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.695 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.695 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.695 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.695 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f", "c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f", client_id) +09:00:45.696 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.696 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.696 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.696 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.696 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.702 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.702 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.702 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.702 [XNIO-1 task-1] WvWFRHXdSjODvc10d-1JmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.714 [XNIO-1 task-2] zcN0GImKTSyUUJZQQKbWeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=n_aZma4DQzyaK_V0TfHl4g +09:00:45.724 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.724 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.724 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.725 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG com.networknt.schema.TypeValidator debug - validate( "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", client_id) +09:00:45.725 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.725 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.725 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.725 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.726 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.741 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.744 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.746 [XNIO-1 task-2] bEVqPdjQTRapXl8jbEQJhg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hcSJl_59R1aIg0h0KVqkJw +09:00:45.751 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.751 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.751 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.751 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", client_id) +09:00:45.751 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.752 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.752 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.752 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.752 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.760 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.760 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.762 [XNIO-1 task-2] cCkoshFeSG-HvYjhk0gWwQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FH9Nt3SdQzS2-Ob23Ja6cg +09:00:45.767 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.768 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.768 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.768 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG com.networknt.schema.TypeValidator debug - validate( "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", client_id) +09:00:45.769 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.769 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.769 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.769 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.769 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.778 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.778 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.778 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.778 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc222341-2e27-4f1d-8e03-7d33d08d3236", "dc222341-2e27-4f1d-8e03-7d33d08d3236", client_id) +09:00:45.779 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.779 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.780 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.780 [XNIO-1 task-2] Tl94w3YgRGau49EY4ghpYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.780 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.780 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.781 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.793 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.793 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.793 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.793 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG com.networknt.schema.TypeValidator debug - validate( "39Pxp8ct9eYLZtIsAaTN8gWqWN-qE_cZ-gGE4g4Uuag", "39Pxp8ct9eYLZtIsAaTN8gWqWN-qE_cZ-gGE4g4Uuag", code_challenge) +09:00:45.794 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:45.794 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.794 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.794 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.794 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.794 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.795 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.795 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.797 [XNIO-1 task-1] 5XWoCjT5R3O34ZbnGZEnEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FM_U6IMvSBmFuf3vvHSNrA +09:00:45.803 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.803 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.803 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.803 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.804 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.804 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.804 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.804 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.804 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.805 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.809 [XNIO-1 task-2] 4STApOzhQ72GtQpkO0EObA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1fZSzS_QQTyaAWYnuju9VA +09:00:45.816 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.816 [XNIO-1 task-1] 0oSDMt_ITxWI_vjxIs9ufA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.830 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.830 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.830 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.831 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", client_id) +09:00:45.831 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.831 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.831 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.832 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.832 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.839 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:45.839 [XNIO-1 task-1] JMdHZn39REGgj6VfUyFxUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:45.840 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3f604e5c-f300-4344-9d39-52fc77a4023c +09:00:45.848 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.849 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:45.849 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:45.849 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", client_id) +09:00:45.849 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:45.849 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:45.850 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:45.850 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:45.850 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:45.860 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.861 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.866 [XNIO-1 task-1] C7XUvUKBQKu3ackCymn3Ig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hu5C9mRQSSywWM2db5JPkw +09:00:45.916 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.916 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.917 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.917 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", client_id) +09:00:45.917 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.917 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.918 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.918 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.918 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.926 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.926 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.930 [XNIO-1 task-1] UpGK6J7iQOeHtqPsv-inmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6iN7olUhQt-9iCxNIQ_hSg +09:00:45.950 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:45.968 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.968 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.969 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.969 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.969 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.969 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.969 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.969 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.976 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.976 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:45.979 [XNIO-1 task-1] 9OFPSgmfTziaaC0y4TvoAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k0jbk2dZRQqxntAoVEUmSg +09:00:45.987 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.987 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.987 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:45.988 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:45.988 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:45.989 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:45.989 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:45.989 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:45.997 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:45.997 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.001 [XNIO-1 task-1] CfnXR0KMSTavLyWk-GVHgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=926rksVqThuthKA0nySZSQ +09:00:46.005 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.005 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.006 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.006 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", client_id) +09:00:46.006 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.007 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.007 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.007 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.007 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.015 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.015 [XNIO-1 task-1] jBXwI8i4SHCarcraI-SLXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.039 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:46.046 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.046 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.046 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.046 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG com.networknt.schema.TypeValidator debug - validate( "k1t9g8Kgtpkl8_U8f8_X_QkowMBNLXhF83Z1mojomtY", "k1t9g8Kgtpkl8_U8f8_X_QkowMBNLXhF83Z1mojomtY", code_challenge) +09:00:46.048 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:82a3fc98 +09:00:46.048 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.048 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.048 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.048 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.048 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.049 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.055 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.055 [XNIO-1 task-1] ymlt4e0ARrCF2raCTnDfOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.092 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.092 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.093 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.093 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG com.networknt.schema.TypeValidator debug - validate( "pDcJdS9nmVQO0jwBQj9bi5VG0A34FMZL4rkIgxOW0KI", "pDcJdS9nmVQO0jwBQj9bi5VG0A34FMZL4rkIgxOW0KI", code_challenge) +09:00:46.093 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.093 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.094 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.094 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.094 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.094 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.103 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.103 [XNIO-1 task-1] lopWx09gQbyBYLB_aNNxIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.107 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.107 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.107 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.108 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG com.networknt.schema.TypeValidator debug - validate( "CfS6zRMhF3bpKcENE05SaY6WT0pDo6g6LV-6tQ-jbLQ", "CfS6zRMhF3bpKcENE05SaY6WT0pDo6g6LV-6tQ-jbLQ", code_challenge) +09:00:46.108 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.108 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.108 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.108 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.109 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.109 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.115 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.115 [XNIO-1 task-1] 4SyacSYSR3SHg4j_MbsHOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.119 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.119 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.120 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.120 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG com.networknt.schema.TypeValidator debug - validate( "4AxJwKNfJrlFRLnP45j_fyg96yuAJG-0INmoOUQI3Cg", "4AxJwKNfJrlFRLnP45j_fyg96yuAJG-0INmoOUQI3Cg", code_challenge) +09:00:46.120 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.120 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.120 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.121 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.121 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.121 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.126 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.127 [XNIO-1 task-1] VXEneAHJR5aDWvXhInlOMA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.155 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:82a3fc98 +09:00:46.200 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.200 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.201 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.201 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG com.networknt.schema.TypeValidator debug - validate( "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", "c81e9bba-1576-4b38-b2dd-a8edfed9a1d3", client_id) +09:00:46.201 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.201 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.201 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.202 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.202 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.211 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.212 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.213 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:788caacc +09:00:46.226 [XNIO-1 task-1] WhBxzDdVR0-D0bBdluih9A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3d6cy3ijTz20f6USep1pgA +09:00:46.234 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.234 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.234 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.235 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.235 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.235 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.235 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.235 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.239 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.239 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.240 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.240 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "JQV1uVIkmx6v2Ofl8drAIsPclQo1EDEsiuOP4LAQDy4", "JQV1uVIkmx6v2Ofl8drAIsPclQo1EDEsiuOP4LAQDy4", code_challenge) +09:00:46.240 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.240 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.240 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.240 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.241 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.241 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.242 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.243 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.247 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.247 [XNIO-1 task-2] knXo8rTQS2G14baTJlaQnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.247 [XNIO-1 task-1] 0YF7dB8WQ8iGjEZNAGP2kw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=G4kClL2bRx2jTRT-XyHoPw +09:00:46.253 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0e9099a +09:00:46.257 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.257 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.257 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.257 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", client_id) +09:00:46.258 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.258 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.258 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.258 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.258 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.260 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.261 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.261 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.261 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG com.networknt.schema.TypeValidator debug - validate( "62e01075-fd77-43a0-a88a-f461ce12a4f0", "62e01075-fd77-43a0-a88a-f461ce12a4f0", client_id) +09:00:46.261 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.262 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.262 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.262 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.262 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.268 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.269 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.274 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.269 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.279 [XNIO-1 task-2] eF-TlsyTSv22w3_krK6i2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=e0n3GNMYT_6L2d1qRioi6w +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:00:46.281 [XNIO-1 task-1] OLVFRKGvQZKiDpOPFqvdjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IZxklNt6SmGKZ7qGPqgRQQ +09:00:46.284 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.284 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.284 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +09:00:46.284 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +09:00:46.285 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.285 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.285 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.285 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +09:00:46.286 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.286 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.286 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:00:46.289 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:788caacc + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:00:46.292 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.294 [XNIO-1 task-1] MX_CRp14TNiRNU0Q9giTVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MTjXvE8kSL27HKgZEPpLrA +09:00:46.299 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.299 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.299 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.300 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.300 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.300 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.301 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.301 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.305 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d9a540c +09:00:46.309 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d9a540c +09:00:46.311 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.311 [XNIO-1 task-1] ZEr-sOT8Q6m2oUgK95ysOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.314 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.314 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.314 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.314 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG com.networknt.schema.TypeValidator debug - validate( "jQ39dB3nirboWRR2GEhW_nnzGrirlnzYxwHQHD9wBV4", "jQ39dB3nirboWRR2GEhW_nnzGrirlnzYxwHQHD9wBV4", code_challenge) +09:00:46.314 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.315 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.315 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.315 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.315 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.315 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.323 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.323 [XNIO-1 task-2] b-xIf5izRv6QCPaHjLK02w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +Jun 29, 2024 9:00:46 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:00:46.331 [XNIO-1 task-2] fYFHNpF3QHq1ODlXCsAHdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.331 [XNIO-1 task-2] fYFHNpF3QHq1ODlXCsAHdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.332 [XNIO-1 task-2] fYFHNpF3QHq1ODlXCsAHdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc222341-2e27-4f1d-8e03-7d33d08d3236", "dc222341-2e27-4f1d-8e03-7d33d08d3236", client_id) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +09:00:46.333 [XNIO-1 task-2] fYFHNpF3QHq1ODlXCsAHdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +09:00:46.333 [XNIO-1 task-2] fYFHNpF3QHq1ODlXCsAHdQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.334 [XNIO-1 task-2] fYFHNpF3QHq1ODlXCsAHdQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +09:00:46.345 [XNIO-1 task-2] fYFHNpF3QHq1ODlXCsAHdQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.347 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:00:46.351 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0e9099a +09:00:46.354 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.355 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.355 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.355 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG com.networknt.schema.TypeValidator debug - validate( "ce746164-9352-48e3-b808-13f7beefc377", "ce746164-9352-48e3-b808-13f7beefc377", client_id) +09:00:46.355 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.356 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.356 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.356 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.356 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.361 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.362 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.362 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.362 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG com.networknt.schema.TypeValidator debug - validate( "VvxYQwQgKkYTaqCXXyMl5norZGa6LxRXIJo4OcMRH88", "VvxYQwQgKkYTaqCXXyMl5norZGa6LxRXIJo4OcMRH88", code_challenge) +09:00:46.362 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.362 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.363 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.363 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.363 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.363 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.366 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.366 [XNIO-1 task-1] kDPKdhouTVe-pGEHsGUX3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.369 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.369 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.374 [XNIO-1 task-2] CoQGYd3LRy2lhRpSlqiCNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M57MMXD-RbysLazi6mrXMg +09:00:46.377 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.377 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.377 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.378 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.379 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.380 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.380 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.380 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.394 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.394 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.400 [XNIO-1 task-2] SDtok8L7QE2hFO2VHKYlKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lMozn2McQ2uGxAiCagxkwg +09:00:46.404 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.405 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.405 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.405 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.405 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.405 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.405 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.406 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.411 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.411 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.411 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.411 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "wl1zPdnClIoE_sImlNHZoeEWaRzmh40iKaVha5uHGB4", "wl1zPdnClIoE_sImlNHZoeEWaRzmh40iKaVha5uHGB4", code_challenge) +09:00:46.412 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.412 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.412 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.412 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.412 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.412 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.414 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.415 [XNIO-1 task-2] ctR-2HNpTUeI4BjVV6oqmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.418 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.418 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.421 [XNIO-1 task-1] FMIhHWjhRxeKT6F-K8tUGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CLhZiNA7QUGWU4NH4m1CTg +09:00:46.422 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f0e9099a +09:00:46.433 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.433 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.433 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.434 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.434 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.434 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.434 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.434 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.446 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.446 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.448 [XNIO-1 task-1] bjf5_D_rQTGuOMTwYEpj-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HvKt8cDpS2ePF11rxyl1xg +09:00:46.458 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.458 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.458 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.458 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.459 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.459 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.459 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.459 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.467 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.467 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.468 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.468 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG com.networknt.schema.TypeValidator debug - validate( "cXnRnA6HXMYoUrL54uNFFWg6uCyf45n5BS8DRuN-jt8", "cXnRnA6HXMYoUrL54uNFFWg6uCyf45n5BS8DRuN-jt8", code_challenge) +09:00:46.468 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.468 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.468 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.469 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.469 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.470 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.470 [XNIO-1 task-1] LNw6GwR4RgicBk7rQq3ydg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.473 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.481 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.481 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.487 [XNIO-1 task-2] 4BFwQjLVRPCrKFUd67Ab-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pk0BY-OlR9iCC_3zC2FMzg +09:00:46.492 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.492 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.492 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.492 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG com.networknt.schema.TypeValidator debug - validate( "9d653a8c-8f67-4030-b561-2da034a07161", "9d653a8c-8f67-4030-b561-2da034a07161", client_id) +09:00:46.493 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.493 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.493 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.493 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.493 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.507 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.507 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.508 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:62e01075-fd77-43a0-a88a-f461ce12a4f0 +09:00:46.509 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.509 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.509 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.509 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.509 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.510 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.510 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.510 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.510 [XNIO-1 task-2] 2Z3rBzlNTLGeVKKjX0mLVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=N2Aa4UzkTe6q0EOUtzIdSw +09:00:46.517 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.517 [XNIO-1 task-1] oPkC0K3IRx-J31ONQJg0Ug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.519 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.519 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.519 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.519 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "9tscLSPTGkJYykRH-qg74mx1t9xIzbi9VLyRMfG_7Ss", "9tscLSPTGkJYykRH-qg74mx1t9xIzbi9VLyRMfG_7Ss", code_challenge) +09:00:46.520 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:46.520 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.524 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.524 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.524 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.524 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.525 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.526 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.526 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.526 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", "ca11b76d-8a12-4ee0-9fe0-d3520540a5a6", client_id) +09:00:46.526 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.526 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.527 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.527 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.527 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.533 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.533 [XNIO-1 task-1] Jz-E3u4NQDyD8GkWCJ18Ww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.534 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.535 [XNIO-1 task-2] mY8Da-t1St-hC4W46ts_8Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.540 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a990f23 +09:00:46.544 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.544 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.545 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.545 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.545 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG com.networknt.schema.TypeValidator debug - validate( "QBK59GiBsHKm-RhDZxoi-D3GbvunUIwvmvYWUwByMzg", "QBK59GiBsHKm-RhDZxoi-D3GbvunUIwvmvYWUwByMzg", code_challenge) +09:00:46.545 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.545 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.546 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.546 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.546 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.546 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.553 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.553 [XNIO-1 task-2] rJX-3oHKRnygNmreTfBQtg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.564 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.564 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.564 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.565 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "wIYCGBhOqlkkNYT41pWpJrGuqLrXsthDMpj2Pj36qIg", "wIYCGBhOqlkkNYT41pWpJrGuqLrXsthDMpj2Pj36qIg", code_challenge) +09:00:46.566 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.566 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.566 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.566 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.566 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.566 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.586 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.591 [XNIO-1 task-2] LHPPkB8GT9OGA6ENe3CgZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.648 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.650 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.649 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.650 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.651 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.650 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.651 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.651 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.651 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.651 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.652 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.652 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.652 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.652 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.660 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.661 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.661 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.663 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.662 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.664 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.670 [XNIO-1 task-1] h2QIPtVBTkaghJhh3MSpdQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=giQZdXcWQwGXO8JBBWaklw +09:00:46.681 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.681 [XNIO-1 task-2] ptSX6HIFTnuZgxji8pue_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.689 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.689 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.689 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.689 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2a53f689-6d73-4199-acc0-ec5607a2848a", "2a53f689-6d73-4199-acc0-ec5607a2848a", client_id) +09:00:46.690 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.695 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.696 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.696 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.696 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +Jun 29, 2024 9:00:46 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:00:46.698 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f0e9099a +09:00:46.702 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.702 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.702 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.703 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +09:00:46.703 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0SXg_DTjuFjjgEtSSUs2nRCGcd9P5J4C-j_w1RYY_jI", "0SXg_DTjuFjjgEtSSUs2nRCGcd9P5J4C-j_w1RYY_jI", code_challenge) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +09:00:46.703 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +09:00:46.703 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.704 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.704 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.704 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.704 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.704 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:00:46.704 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.711 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.711 [XNIO-1 task-2] SSw9pSe-T5KY1nDeCwmZ-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.717 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.717 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.720 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.717 [XNIO-1 task-1] RXqsriyXSzaf4VAyzd46FQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.721 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.721 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG com.networknt.schema.TypeValidator debug - validate( "2a53f689-6d73-4199-acc0-ec5607a2848a", "2a53f689-6d73-4199-acc0-ec5607a2848a", client_id) +09:00:46.721 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.721 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.721 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.721 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.722 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.736 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f0e9099a +09:00:46.753 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.753 [XNIO-1 task-2] q2k_kb_DSmSdKb5VnzsGsw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.755 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c81e9bba-1576-4b38-b2dd-a8edfed9a1d3 +09:00:46.758 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.759 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.759 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.759 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3qKrH9epAA4EvRft6edbVfe7UGK4i2ztOOblob5_qZM", "3qKrH9epAA4EvRft6edbVfe7UGK4i2ztOOblob5_qZM", code_challenge) +09:00:46.759 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.760 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.760 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.760 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.760 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.764 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.765 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.765 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.765 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.765 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.765 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.766 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.766 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.767 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.775 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.775 [XNIO-1 task-2] azEGrATFRF2jvV3jtdNSBQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.777 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.777 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.783 [XNIO-1 task-1] 8NeRtzgbTRSuYcBguCrYIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vUERTqZtRDGVExLieungPA +09:00:46.793 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.793 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.794 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.794 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.794 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.794 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.794 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", "7a9ae668-4c54-4d5a-a519-9cb77fb6c643", client_id) +09:00:46.794 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG com.networknt.schema.TypeValidator debug - validate( "8315cf01-e91c-4ec5-bebd-79faef8b6039", "8315cf01-e91c-4ec5-bebd-79faef8b6039", client_id) +09:00:46.794 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.794 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.794 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.795 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.795 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.795 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.795 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.795 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.795 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.795 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.799 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a990f23 +09:00:46.802 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.802 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.806 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.806 [XNIO-1 task-2] 6QP6w-pdSj63NQX9CySBiA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.807 [XNIO-1 task-1] Be6UVl1ATPubKnjdN1DR4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-nh0YlrcTsiCrO5iJBeD5w +09:00:46.823 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:788caacc +09:00:46.825 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.826 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.826 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.826 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG com.networknt.schema.TypeValidator debug - validate( "8315cf01-e91c-4ec5-bebd-79faef8b6039", "8315cf01-e91c-4ec5-bebd-79faef8b6039", client_id) +09:00:46.826 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.826 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.827 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.827 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.827 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:788caacc +09:00:46.828 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.840 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.840 [XNIO-1 task-2] Yf2xMHV3Rdy_OEwwR1hxXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.882 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.882 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.882 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.883 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG com.networknt.schema.TypeValidator debug - validate( "bdf58a52-10d5-430c-bd77-97a0cea0c57f", "bdf58a52-10d5-430c-bd77-97a0cea0c57f", client_id) +09:00:46.883 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.883 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.883 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.883 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.887 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.895 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.895 [XNIO-1 task-2] eeNQdo6qTAmFRVfUW6_BBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.927 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a990f23 +09:00:46.927 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.929 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:46.929 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:46.930 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG com.networknt.schema.TypeValidator debug - validate( "KaeANWguzjpF36uee1o27dXX4GIy5HQxRAEpCTanDhg", "KaeANWguzjpF36uee1o27dXX4GIy5HQxRAEpCTanDhg", code_challenge) +09:00:46.930 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:46.930 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:46.930 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:46.931 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:46.931 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:46.932 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:46.941 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:46.941 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:46.946 [XNIO-1 task-2] uPMCivNVRPGVotENeTzzIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=n4qZeKsLTxaDQSeQZxioPg +09:00:46.947 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8de4d38f-0fab-4a9f-8710-172a8cf71927 +09:00:46.950 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.950 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.951 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:46.951 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9d653a8c-8f67-4030-b561-2da034a07161", "9d653a8c-8f67-4030-b561-2da034a07161", client_id) +09:00:46.951 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:46.951 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:46.952 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:46.952 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:46.952 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:46.958 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:46.958 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:46.959 [XNIO-1 task-2] jX91W4iJRGuxhV0XS-yj2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uRJZKtgBRr6qYpBEJ0j5pQ +09:00:46.983 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) +Jun 29, 2024 9:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:00:46.996 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0a990f23 +09:00:46.996 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:da8d2c9a-810d-40e3-91a2-ca7026ce9a4a +09:00:46.997 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0a990f23 +09:00:46.998 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:da8d2c9a-810d-40e3-91a2-ca7026ce9a4a +09:00:46.998 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:da8d2c9a-810d-40e3-91a2-ca7026ce9a4a +09:00:47.003 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:00:47.005 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:00:47.005 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.006 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG com.networknt.schema.TypeValidator debug - validate( "9d653a8c-8f67-4030-b561-2da034a07161", "9d653a8c-8f67-4030-b561-2da034a07161", client_id) +09:00:47.006 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.006 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.006 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.006 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.006 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.006 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.007 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.007 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.007 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.007 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.007 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.007 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.007 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.007 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.009 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d9a540c +09:00:47.015 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.015 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.018 [XNIO-1 task-2] sKsyYL2sQraczQAZyM91-A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ISo8vPQFQo6-92aTchVVRQ +09:00:47.020 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.024 [XNIO-1 task-1] 7CjiPD7VSqakSj4XQ9cvKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DxwVYE3KRBmo6lE9fVgXsw +09:00:47.025 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.025 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.026 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.027 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG com.networknt.schema.TypeValidator debug - validate( "9d653a8c-8f67-4030-b561-2da034a07161", "9d653a8c-8f67-4030-b561-2da034a07161", client_id) +09:00:47.027 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.027 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.028 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.028 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.028 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.034 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.034 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.034 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.035 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62e01075-fd77-43a0-a88a-f461ce12a4f0", "62e01075-fd77-43a0-a88a-f461ce12a4f0", client_id) +09:00:47.035 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.035 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.035 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.035 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.035 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.038 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.038 [XNIO-1 task-1] DUH39eISRMuCLfz5xfoapg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.044 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.044 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.047 [XNIO-1 task-2] _TRR3kYhTxmNNKRrMjCZGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BAmEPDz1RGGdGRMypX5qJA +09:00:47.051 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.051 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +Jun 29, 2024 9:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +09:00:47.051 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG com.networknt.schema.TypeValidator debug - validate( "62e01075-fd77-43a0-a88a-f461ce12a4f0", "62e01075-fd77-43a0-a88a-f461ce12a4f0", client_id) +09:00:47.052 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:00:47.061 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +09:00:47.061 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + +09:00:47.061 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.063 [XNIO-1 task-2] eEjtEb8zTJy5FopTDsd6GA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=W2iL7bE9Q4W4s9O_urg9eA +09:00:47.070 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.070 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +09:00:47.070 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +09:00:47.071 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +09:00:47.071 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:00:47.071 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.078 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.078 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.078 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:00:47.081 [XNIO-1 task-2] XlYZeBTRSe6tCkow0UwBYg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=r1bT87sJT7m6aS8_wY5nXQ + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:00:47.087 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.088 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.088 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.088 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.089 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.090 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.090 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.090 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.096 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.096 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.101 [XNIO-1 task-2] 4MMTZr8hTY--f1ny38ympw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=reT3etcCTs6TxTrqagkLCw +09:00:47.102 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.102 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.102 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.102 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9d653a8c-8f67-4030-b561-2da034a07161", "9d653a8c-8f67-4030-b561-2da034a07161", client_id) +09:00:47.102 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.103 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.103 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.103 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.103 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.107 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.108 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.108 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.108 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f411e06-bb3e-4a66-a269-73f37705f2a6", "0f411e06-bb3e-4a66-a269-73f37705f2a6", client_id) +09:00:47.108 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.108 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.109 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.109 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.111 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.111 [XNIO-1 task-1] 4J2II9RvRcmXQMR6-95vrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.117 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.119 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.119 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.119 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.120 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "H0G5vHOXgo4v35FsxtCA-r8xdBABooMNdQgCaXIebfI", "H0G5vHOXgo4v35FsxtCA-r8xdBABooMNdQgCaXIebfI", code_challenge) +09:00:47.120 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:47.120 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.120 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.121 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.121 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.121 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.123 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.123 [XNIO-1 task-2] 5xtgGB58QCGsTaQHJNiFqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.128 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.128 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.131 [XNIO-1 task-1] 2Bz7s5cVSlGCx7SpWzb4YQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U1C42zXVSaCf_eZLjBrb9Q +09:00:47.134 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.134 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.134 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.134 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.135 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.135 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.135 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.136 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.142 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.142 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.143 [XNIO-1 task-1] zlEaTEE8Q-CwV6luZUC0tA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YESy5r4HT3mnchtP3Pdf5w +09:00:47.148 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.148 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.149 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.152 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.152 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.152 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.153 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.153 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.162 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.163 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.164 [XNIO-1 task-1] 1HICGo7CRlCyVGhwdI2z8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=y1viU5eCQiCDGpUYYdnZig +09:00:47.170 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.170 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.170 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.170 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.170 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.171 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.171 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.171 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.172 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.172 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.172 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.172 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG com.networknt.schema.TypeValidator debug - validate( "eiBy8OTp5wvXNikLZIAwEhzBOs1EicvRMxPNC2J_v0k", "eiBy8OTp5wvXNikLZIAwEhzBOs1EicvRMxPNC2J_v0k", code_challenge) +09:00:47.173 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:47.173 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.173 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.173 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.173 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.173 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.179 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.179 [XNIO-1 task-1] 8l7eel7pRjy4dVT3RYheCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.187 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.188 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.192 [XNIO-1 task-2] LLBea9WRQ1WVO6LcOdUUug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WOippCigR3G_xxzMRzRcCA +09:00:47.224 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.224 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.225 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.225 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG com.networknt.schema.TypeValidator debug - validate( "f400c9d0-0010-4c7e-b33a-cc201003748e", "f400c9d0-0010-4c7e-b33a-cc201003748e", client_id) +09:00:47.225 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.225 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.226 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.226 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.230 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c2266f5f-880e-4d86-b455-70e2ce22b2dd +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:47.249 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.252 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.252 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.252 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.252 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfc60134-fb55-4945-9780-5f603a2668fb", "bfc60134-fb55-4945-9780-5f603a2668fb", client_id) +09:00:47.252 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.253 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.253 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.253 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.253 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.256 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.256 [XNIO-1 task-2] oKTnl2x_QFuHWc_AV1n_jg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.259 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.260 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.261 [XNIO-1 task-1] jgYnaLXHRSGJ7M2ao4HCmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RxpGAoSjR_ecjm7Bjx46KQ +09:00:47.261 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.261 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.262 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.262 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f400c9d0-0010-4c7e-b33a-cc201003748e", "f400c9d0-0010-4c7e-b33a-cc201003748e", client_id) +09:00:47.262 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.262 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.262 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.263 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.263 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.269 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.269 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.269 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.269 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.270 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.270 [XNIO-1 task-2] -kqZrhmaRRy3lub_6xCRvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=j1ac_p-eTv2fjMKaQ80FWg +09:00:47.270 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.271 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.271 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.271 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.273 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.276 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.276 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.276 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.276 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG com.networknt.schema.TypeValidator debug - validate( "0dXDTLUSr_-VNk5GnW7ZCv5oIvwljLSLcjio_EbiLeY", "0dXDTLUSr_-VNk5GnW7ZCv5oIvwljLSLcjio_EbiLeY", code_challenge) +09:00:47.277 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:47.277 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.277 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.277 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.277 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.277 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.280 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.280 [XNIO-1 task-1] 7X9Ctoa5QHa6FUR7yH6AZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.283 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.283 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.284 [XNIO-1 task-2] y1XAZOV6Ru2yTlnECpUoGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ibSjz1h9SIO8Dk5h5AnxqQ +09:00:47.291 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.291 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.291 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.291 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e7f53886-0197-40d9-a0cd-61dc73d14cd4", "e7f53886-0197-40d9-a0cd-61dc73d14cd4", client_id) +09:00:47.292 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.292 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.292 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.292 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.293 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.295 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8d9a540c +09:00:47.306 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.306 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.308 [XNIO-1 task-2] T5sgLwHmRdiNH3fc70PVcQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LvgLQRdLR5-af7j2GareSA +09:00:47.316 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.316 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.317 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.318 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "98db084d-f671-4349-b1da-ef1f9ecdda3f", "98db084d-f671-4349-b1da-ef1f9ecdda3f", client_id) +09:00:47.318 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.318 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.318 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.318 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.319 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.326 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8d9a540c +09:00:47.328 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.328 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.333 [XNIO-1 task-2] ISRyAJp8SOu_62lkyXiYLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Z9516OW8RcCdj_oN2tTpCQ +09:00:47.337 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.338 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.338 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.338 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG com.networknt.schema.TypeValidator debug - validate( "mRFupAqhz-qyDRMVWPP1fJAAnX0B90UItzr__NDYT3g", "mRFupAqhz-qyDRMVWPP1fJAAnX0B90UItzr__NDYT3g", code_challenge) +09:00:47.338 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:47.338 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.339 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.339 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.339 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.340 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:47.349 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.350 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.353 [XNIO-1 task-2] fP6GZU_gRXCxTR97Kkm26g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mjXo7ZHXT1mX3LatFY8lrQ +09:00:47.353 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.354 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.354 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.354 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.354 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.354 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.355 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.355 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.355 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b1ae42cc-fa97-490b-af03-ec34783074a0 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:47.366 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.366 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.368 [XNIO-1 task-2] KPm4cFPITZy6dJYkdLH5Sw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rlDjaEs8Qg2i1dQdQe-Abw +09:00:47.373 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.373 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.373 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.374 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:00:47.374 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:00:47.375 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:00:47.375 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:00:47.376 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:00:47.381 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.382 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.382 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.382 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG com.networknt.schema.TypeValidator debug - validate( "JTehEfVsXpQ9U00x-VjJSIrXgyTpe7-Fe0EmNTsFMcQ", "JTehEfVsXpQ9U00x-VjJSIrXgyTpe7-Fe0EmNTsFMcQ", code_challenge) +09:00:47.382 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:00:47.383 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:00:47.383 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:00:47.383 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:00:47.383 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:00:47.383 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:00:47.386 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:00:47.386 [XNIO-1 task-2] aMQEu9wwSCiI5tV1p-An-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:00:47.390 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:00:47.390 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:00:47.391 [XNIO-1 task-1] 7OfVKAyGTZWdNlnYZRTsEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jy5AoljoQVe74Zn-tyWCeg +09:00:47.424 [XNIO-1 task-2] 2sib27M-RWK4cPIWnKlztw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:00:47.426 [XNIO-1 task-1] 0kvGgZRERIOECwxb4hhefA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:00:47.426 [XNIO-1 task-1] 0kvGgZRERIOECwxb4hhefA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:00:47.426 [XNIO-1 task-1] 0kvGgZRERIOECwxb4hhefA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code diff --git a/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..76d14f7 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-key-1.log @@ -0,0 +1,186 @@ + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:00:42.542 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:eb9c07f5-a51f-45f1-adf2-9be205e63728 +09:00:42.572 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:eb9c07f5-a51f-45f1-adf2-9be205e63728 +Jun 29, 2024 9:00:42 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +09:00:42.709 [hz._hzInstance_1_dev.partition-operation.thread-13] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:00:42.720 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22c55c45-8813-480e-ac83-30b811aca021 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:00:42.987 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f90268b-b363-4699-bea9-7c895a6f16c3 +09:00:42.989 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f90268b-b363-4699-bea9-7c895a6f16c3 +09:00:43.007 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e298259b-7cdd-44d6-bf69-0d8db6afb0ef +09:00:43.483 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e2000fda-d5a3-45d3-bfb6-8f7470ff7dc7 +09:00:43.597 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.650 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.728 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.896 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.917 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0d39bd5 +09:00:43.924 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0d39bd5 +09:00:43.942 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.947 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0d39bd5 +09:00:43.981 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0d39bd5 +09:00:44.094 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:068f0fda-509b-4a46-9907-29bfde3a4ffc +09:00:44.097 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:068f0fda-509b-4a46-9907-29bfde3a4ffc +09:00:44.171 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d365744d +09:00:44.210 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:068f0fda-509b-4a46-9907-29bfde3a4ffc +09:00:44.227 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d365744d +09:00:44.297 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4fa61db8-a156-46e1-aea1-c96370ad3c0f +09:00:44.329 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d365744d +09:00:44.425 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4fa61db8-a156-46e1-aea1-c96370ad3c0f +09:00:44.631 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f4fb3ae +09:00:44.771 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f4fb3ae +09:00:45.166 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f4fb3ae +09:00:45.200 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fb1584f4-92f0-4aca-b805-f49e28559a61 +09:00:45.379 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0ba57b2c-611b-4342-8b4e-658c77341eea +09:00:45.380 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0ba57b2c-611b-4342-8b4e-658c77341eea +09:00:45.478 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0f4fb3ae +09:00:45.498 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d25d98d2-8681-4d4e-8f95-0fb08ef36603 +09:00:45.619 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d25d98d2-8681-4d4e-8f95-0fb08ef36603 +09:00:46.263 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f0989034 +09:00:46.403 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f0989034 +09:00:46.435 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f0989034 +09:00:46.446 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7d7015bb-9046-45f4-903d-f6ed65ba5bb8 +09:00:46.447 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7d7015bb-9046-45f4-903d-f6ed65ba5bb8 +09:00:46.629 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f0989034 +09:00:46.630 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:27e384a9-7b85-47a5-92c8-fc005e146b30 +09:00:46.689 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bd75a288-0df1-4c02-a9e8-e507d4d924fb +09:00:46.709 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f0989034 +09:00:46.741 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f0989034 +09:00:46.783 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f0989034 +09:00:46.798 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f0989034 +09:00:47.022 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b2840205-7b5b-4f89-b0db-543fef2eee0f +09:00:47.071 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d1c33f51-f233-46a0-a8f8-231492bf08a7 +09:00:47.076 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d1c33f51-f233-46a0-a8f8-231492bf08a7 +09:00:47.223 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e6bb3155-987a-41df-bc18-d9afe3aa31b5 +09:00:47.258 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5843abeb-14b2-4f40-bcbc-78ad80f8fd87 +09:00:47.306 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9fdc999b-d81a-4d3d-9c99-212bdef721ba +09:00:47.330 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9fdc999b-d81a-4d3d-9c99-212bdef721ba +09:00:47.371 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a475571-8e22-48a5-9563-1c274ff58b0a +09:00:47.407 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7dc9bdae-1ace-4b33-a639-057a42923a85 +09:00:47.604 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c67ded91-64e9-4d06-99f6-a1694ea3e13d +09:00:48.045 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d690972d +09:00:48.047 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d690972d +09:00:48.110 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9093136a +09:00:48.137 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:67229727 +09:00:48.141 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:67229727 +09:00:48.154 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aa8fc05f-c054-451c-8ea0-c8cd06d5ff38 +09:00:48.184 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c67ded91-64e9-4d06-99f6-a1694ea3e13d +09:00:48.281 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:397afab4-82b0-4931-a1d5-9173eb024b62 +09:00:48.299 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bcf678c5 +09:00:48.338 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d690972d +09:00:48.355 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d690972d +09:00:48.404 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bcf678c5 +09:00:48.440 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:56e58ec6 +09:00:48.444 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:56e58ec6 +09:00:48.464 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f3fd1d40-1f78-4026-a400-6e722138b0db +09:00:48.474 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9093136a +09:00:48.512 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:67229727 +09:00:48.520 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f3fd1d40-1f78-4026-a400-6e722138b0db +09:00:48.543 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9093136a +09:00:48.560 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bcf678c5 +09:00:48.576 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:72eb69cf +09:00:48.592 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9093136a +09:00:48.597 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:72eb69cf +09:00:48.697 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:56e58ec6 +09:00:48.712 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cb320e9d +09:00:48.723 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2d20224c-2282-4ffc-8f17-f27d1c275e02 +09:00:48.730 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cb320e9d +09:00:48.745 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cb320e9d +09:00:48.757 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cb320e9d +09:00:48.791 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cb320e9d +09:00:48.838 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c9001646-ee08-49d3-8df5-7c67edef1325 +09:00:48.842 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c9001646-ee08-49d3-8df5-7c67edef1325 +09:00:48.855 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb320e9d +09:00:48.866 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb320e9d +09:00:48.882 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb320e9d +09:00:48.895 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cb320e9d +09:00:48.898 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:632fbadc-6f87-4f0f-97c4-d10ff9d1ee95 +09:00:48.901 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:26dcccbb +09:00:48.903 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:26dcccbb +09:00:48.938 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb320e9d +09:00:48.949 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cb320e9d +09:00:48.958 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4448872e +09:00:48.971 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7254c0bd-e4af-4045-bc8e-18bda95c35f7 +09:00:48.973 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fb2f014b-64a2-4d21-8d88-75beb6911432 +09:00:48.976 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7254c0bd-e4af-4045-bc8e-18bda95c35f7 +09:00:49.022 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4448872e +09:00:49.038 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:26dcccbb +09:00:49.059 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bcf678c5 +09:00:49.103 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:26dcccbb +09:00:49.128 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:bcf678c5 +09:00:49.171 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3c06aa40 +Jun 29, 2024 9:00:49 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:49.198 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:49.220 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:632fbadc-6f87-4f0f-97c4-d10ff9d1ee95 +09:00:49.289 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3c06aa40 diff --git a/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..3afb78e --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,3735 @@ +09:00:43.493 [XNIO-1 task-1] 65qnMAbTSiCyMsYowreIaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.493 [XNIO-1 task-1] 65qnMAbTSiCyMsYowreIaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.495 [XNIO-1 task-1] 65qnMAbTSiCyMsYowreIaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43c85d29-1914-4a81-8bff-bebc3880f38c, base path is set to: null +09:00:43.497 [XNIO-1 task-1] 65qnMAbTSiCyMsYowreIaA DEBUG com.networknt.schema.TypeValidator debug - validate( "43c85d29-1914-4a81-8bff-bebc3880f38c", "43c85d29-1914-4a81-8bff-bebc3880f38c", refreshToken) +09:00:43.512 [XNIO-1 task-1] exteubqqT3S1-W42xIWKQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.513 [XNIO-1 task-1] exteubqqT3S1-W42xIWKQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.513 [XNIO-1 task-1] exteubqqT3S1-W42xIWKQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.513 [XNIO-1 task-1] exteubqqT3S1-W42xIWKQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.514 [XNIO-1 task-1] exteubqqT3S1-W42xIWKQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "452a9f80-216f-4c42-9a71-b06054a311a8", "452a9f80-216f-4c42-9a71-b06054a311a8", refreshToken) +09:00:43.526 [XNIO-1 task-1] jBdaMqJKTYCtryEAlIUpPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43c85d29-1914-4a81-8bff-bebc3880f38c, base path is set to: null +09:00:43.526 [XNIO-1 task-1] jBdaMqJKTYCtryEAlIUpPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.526 [XNIO-1 task-1] jBdaMqJKTYCtryEAlIUpPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.526 [XNIO-1 task-1] jBdaMqJKTYCtryEAlIUpPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43c85d29-1914-4a81-8bff-bebc3880f38c, base path is set to: null +09:00:43.527 [XNIO-1 task-1] jBdaMqJKTYCtryEAlIUpPg DEBUG com.networknt.schema.TypeValidator debug - validate( "43c85d29-1914-4a81-8bff-bebc3880f38c", "43c85d29-1914-4a81-8bff-bebc3880f38c", refreshToken) +09:00:43.532 [XNIO-1 task-1] UmgKC94WSTOPDmEsfdZpKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.532 [XNIO-1 task-1] UmgKC94WSTOPDmEsfdZpKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.532 [XNIO-1 task-1] UmgKC94WSTOPDmEsfdZpKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.533 [XNIO-1 task-1] UmgKC94WSTOPDmEsfdZpKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.534 [XNIO-1 task-1] UmgKC94WSTOPDmEsfdZpKg DEBUG com.networknt.schema.TypeValidator debug - validate( "452a9f80-216f-4c42-9a71-b06054a311a8", "452a9f80-216f-4c42-9a71-b06054a311a8", refreshToken) +09:00:43.538 [XNIO-1 task-1] UmgKC94WSTOPDmEsfdZpKg INFO com.networknt.config.Config loadJsonMapConfigWithSpecificConfigLoader - Trying to load status with extension yaml, yml or json by using default loading method. +09:00:43.539 [XNIO-1 task-1] UmgKC94WSTOPDmEsfdZpKg INFO com.networknt.config.Config getConfigStream - Trying to load config from classpath directory for file status.yml +09:00:43.550 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f +09:00:43.560 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c5b641ae-2e95-4e87-b5bb-fe0b60cefa7f +09:00:43.574 [XNIO-1 task-1] OMeYwVYsR6SXtRJHWsJ3Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.575 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5d7e0baf-fb09-4711-9b31-0368b683c91c +09:00:43.576 [XNIO-1 task-1] OMeYwVYsR6SXtRJHWsJ3Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.581 [XNIO-1 task-1] OMeYwVYsR6SXtRJHWsJ3Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.581 [XNIO-1 task-1] OMeYwVYsR6SXtRJHWsJ3Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.582 [XNIO-1 task-1] OMeYwVYsR6SXtRJHWsJ3Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "452a9f80-216f-4c42-9a71-b06054a311a8", "452a9f80-216f-4c42-9a71-b06054a311a8", refreshToken) +09:00:43.584 [XNIO-1 task-1] OMeYwVYsR6SXtRJHWsJ3Fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 452a9f80-216f-4c42-9a71-b06054a311a8 is not found.","severity":"ERROR"} +09:00:43.591 [XNIO-1 task-1] R5U2beAGRD6SNc7R1rEVCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.592 [XNIO-1 task-1] R5U2beAGRD6SNc7R1rEVCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.592 [XNIO-1 task-1] R5U2beAGRD6SNc7R1rEVCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.592 [XNIO-1 task-1] R5U2beAGRD6SNc7R1rEVCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.595 [XNIO-1 task-1] R5U2beAGRD6SNc7R1rEVCA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.613 [XNIO-1 task-1] 1uBokc_nQse7XKCkNTu3Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.625 [XNIO-1 task-1] 1uBokc_nQse7XKCkNTu3Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.626 [XNIO-1 task-1] 1uBokc_nQse7XKCkNTu3Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.629 [XNIO-1 task-1] 1uBokc_nQse7XKCkNTu3Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8, base path is set to: null +09:00:43.631 [XNIO-1 task-1] 1uBokc_nQse7XKCkNTu3Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "452a9f80-216f-4c42-9a71-b06054a311a8", "452a9f80-216f-4c42-9a71-b06054a311a8", refreshToken) +09:00:43.631 [XNIO-1 task-1] 1uBokc_nQse7XKCkNTu3Fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 452a9f80-216f-4c42-9a71-b06054a311a8 is not found.","severity":"ERROR"} +09:00:43.641 [XNIO-1 task-1] NpD9fOqYTo2KsFlZnfk4Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.641 [XNIO-1 task-1] NpD9fOqYTo2KsFlZnfk4Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.641 [XNIO-1 task-1] NpD9fOqYTo2KsFlZnfk4Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.642 [XNIO-1 task-1] NpD9fOqYTo2KsFlZnfk4Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.643 [XNIO-1 task-1] NpD9fOqYTo2KsFlZnfk4Nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.649 [XNIO-1 task-1] rYdvx7_zQOuKrX6Z2TAZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.649 [XNIO-1 task-1] rYdvx7_zQOuKrX6Z2TAZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.649 [XNIO-1 task-1] rYdvx7_zQOuKrX6Z2TAZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.649 [XNIO-1 task-1] rYdvx7_zQOuKrX6Z2TAZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.650 [XNIO-1 task-1] rYdvx7_zQOuKrX6Z2TAZDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.657 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dc222341-2e27-4f1d-8e03-7d33d08d3236 +09:00:43.661 [XNIO-1 task-1] atDbD5x7Tkm6xRhy9eqjOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.664 [XNIO-1 task-1] atDbD5x7Tkm6xRhy9eqjOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.664 [XNIO-1 task-1] atDbD5x7Tkm6xRhy9eqjOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.667 [XNIO-1 task-1] atDbD5x7Tkm6xRhy9eqjOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.668 [XNIO-1 task-1] atDbD5x7Tkm6xRhy9eqjOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:43.672 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7be29983 +09:00:43.686 [XNIO-1 task-1] lT1G3iWcTl62Q3dgmcX7cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.686 [XNIO-1 task-1] lT1G3iWcTl62Q3dgmcX7cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.686 [XNIO-1 task-1] lT1G3iWcTl62Q3dgmcX7cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.686 [XNIO-1 task-1] lT1G3iWcTl62Q3dgmcX7cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.688 [XNIO-1 task-1] lT1G3iWcTl62Q3dgmcX7cg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.703 [XNIO-1 task-1] 5fZETCKURV6d-9428VStjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24, base path is set to: null +09:00:43.703 [XNIO-1 task-1] 5fZETCKURV6d-9428VStjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.704 [XNIO-1 task-1] 5fZETCKURV6d-9428VStjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.704 [XNIO-1 task-1] 5fZETCKURV6d-9428VStjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24, base path is set to: null +09:00:43.705 [XNIO-1 task-1] 5fZETCKURV6d-9428VStjA DEBUG com.networknt.schema.TypeValidator debug - validate( "e29db964-1de0-4f83-a34c-d7f860e29d24", "e29db964-1de0-4f83-a34c-d7f860e29d24", refreshToken) +09:00:43.705 [XNIO-1 task-1] 5fZETCKURV6d-9428VStjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e29db964-1de0-4f83-a34c-d7f860e29d24 is not found.","severity":"ERROR"} +09:00:43.712 [XNIO-1 task-1] 6ORAIbmVTbCkAN1A2rF0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.712 [XNIO-1 task-1] 6ORAIbmVTbCkAN1A2rF0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.713 [XNIO-1 task-1] 6ORAIbmVTbCkAN1A2rF0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.713 [XNIO-1 task-1] 6ORAIbmVTbCkAN1A2rF0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.717 [XNIO-1 task-1] 6ORAIbmVTbCkAN1A2rF0ug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.732 [XNIO-1 task-1] CYFRbfHiRUS34Dv7tNvgdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3bce6fc5-5067-41e2-ba51-f2f1c9845f46, base path is set to: null +09:00:43.732 [XNIO-1 task-1] CYFRbfHiRUS34Dv7tNvgdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.732 [XNIO-1 task-1] CYFRbfHiRUS34Dv7tNvgdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.734 [XNIO-1 task-1] CYFRbfHiRUS34Dv7tNvgdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3bce6fc5-5067-41e2-ba51-f2f1c9845f46, base path is set to: null +09:00:43.735 [XNIO-1 task-1] CYFRbfHiRUS34Dv7tNvgdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3bce6fc5-5067-41e2-ba51-f2f1c9845f46", "3bce6fc5-5067-41e2-ba51-f2f1c9845f46", refreshToken) +09:00:43.742 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7f8d99aa-3067-4a7c-a906-ba92e7312b1a +09:00:43.760 [XNIO-1 task-1] aFNEYwDvRQ2MZNppWvkLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.760 [XNIO-1 task-1] aFNEYwDvRQ2MZNppWvkLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.760 [XNIO-1 task-1] aFNEYwDvRQ2MZNppWvkLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.760 [XNIO-1 task-1] aFNEYwDvRQ2MZNppWvkLlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.761 [XNIO-1 task-1] aFNEYwDvRQ2MZNppWvkLlw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.766 [XNIO-1 task-1] Cnz097TKSRCyDTIkNYhDgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3bce6fc5-5067-41e2-ba51-f2f1c9845f46, base path is set to: null +09:00:43.766 [XNIO-1 task-1] Cnz097TKSRCyDTIkNYhDgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.766 [XNIO-1 task-1] Cnz097TKSRCyDTIkNYhDgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.767 [XNIO-1 task-1] Cnz097TKSRCyDTIkNYhDgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3bce6fc5-5067-41e2-ba51-f2f1c9845f46, base path is set to: null +09:00:43.769 [XNIO-1 task-1] Cnz097TKSRCyDTIkNYhDgw DEBUG com.networknt.schema.TypeValidator debug - validate( "3bce6fc5-5067-41e2-ba51-f2f1c9845f46", "3bce6fc5-5067-41e2-ba51-f2f1c9845f46", refreshToken) +09:00:43.772 [XNIO-1 task-1] Cnz097TKSRCyDTIkNYhDgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3bce6fc5-5067-41e2-ba51-f2f1c9845f46 is not found.","severity":"ERROR"} +09:00:43.781 [XNIO-1 task-1] 69aDJPoTRFWwSCpCbtC5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.781 [XNIO-1 task-1] 69aDJPoTRFWwSCpCbtC5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.781 [XNIO-1 task-1] 69aDJPoTRFWwSCpCbtC5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.782 [XNIO-1 task-1] 69aDJPoTRFWwSCpCbtC5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.782 [XNIO-1 task-1] 69aDJPoTRFWwSCpCbtC5dQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e29db964-1de0-4f83-a34c-d7f860e29d24 +09:00:43.793 [XNIO-1 task-1] quD1taNsQOWuF0f8VS7Ncw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.793 [XNIO-1 task-1] quD1taNsQOWuF0f8VS7Ncw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.793 [XNIO-1 task-1] quD1taNsQOWuF0f8VS7Ncw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.796 [XNIO-1 task-1] quD1taNsQOWuF0f8VS7Ncw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.796 [XNIO-1 task-1] quD1taNsQOWuF0f8VS7Ncw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:43.818 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9ceed106-887c-4e67-b9a3-84be67964146 +09:00:43.837 [XNIO-1 task-1] _JXZoZZCTTixGjlXMahrmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24, base path is set to: null +09:00:43.838 [XNIO-1 task-1] _JXZoZZCTTixGjlXMahrmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.838 [XNIO-1 task-1] _JXZoZZCTTixGjlXMahrmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.838 [XNIO-1 task-1] _JXZoZZCTTixGjlXMahrmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e29db964-1de0-4f83-a34c-d7f860e29d24, base path is set to: null +09:00:43.839 [XNIO-1 task-1] _JXZoZZCTTixGjlXMahrmw DEBUG com.networknt.schema.TypeValidator debug - validate( "e29db964-1de0-4f83-a34c-d7f860e29d24", "e29db964-1de0-4f83-a34c-d7f860e29d24", refreshToken) +09:00:43.839 [XNIO-1 task-1] _JXZoZZCTTixGjlXMahrmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e29db964-1de0-4f83-a34c-d7f860e29d24 is not found.","severity":"ERROR"} +09:00:43.843 [XNIO-1 task-1] S1S-MF_pTvyFI4OYFRgWRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9ceed106-887c-4e67-b9a3-84be67964146 +09:00:43.843 [XNIO-1 task-1] S1S-MF_pTvyFI4OYFRgWRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.843 [XNIO-1 task-1] S1S-MF_pTvyFI4OYFRgWRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.844 [XNIO-1 task-1] S1S-MF_pTvyFI4OYFRgWRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9ceed106-887c-4e67-b9a3-84be67964146 +09:00:43.846 [XNIO-1 task-1] S1S-MF_pTvyFI4OYFRgWRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9ceed106-887c-4e67-b9a3-84be67964146 +09:00:43.857 [XNIO-1 task-1] nmjTtFLpQVGmbyZHAb2DEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9ceed106-887c-4e67-b9a3-84be67964146, base path is set to: null +09:00:43.857 [XNIO-1 task-1] nmjTtFLpQVGmbyZHAb2DEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.858 [XNIO-1 task-1] nmjTtFLpQVGmbyZHAb2DEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.858 [XNIO-1 task-1] nmjTtFLpQVGmbyZHAb2DEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9ceed106-887c-4e67-b9a3-84be67964146, base path is set to: null +09:00:43.859 [XNIO-1 task-1] nmjTtFLpQVGmbyZHAb2DEw DEBUG com.networknt.schema.TypeValidator debug - validate( "9ceed106-887c-4e67-b9a3-84be67964146", "9ceed106-887c-4e67-b9a3-84be67964146", refreshToken) +09:00:43.859 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9ceed106-887c-4e67-b9a3-84be67964146 +09:00:43.868 [XNIO-1 task-1] nVpLf3JsQIWqFdsazZW8QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.870 [XNIO-1 task-1] nVpLf3JsQIWqFdsazZW8QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.870 [XNIO-1 task-1] nVpLf3JsQIWqFdsazZW8QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.871 [XNIO-1 task-1] nVpLf3JsQIWqFdsazZW8QA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.872 [XNIO-1 task-1] nVpLf3JsQIWqFdsazZW8QA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:43.892 [XNIO-1 task-1] 63BB14dVTemNyRXAmTFFpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.892 [XNIO-1 task-1] 63BB14dVTemNyRXAmTFFpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.892 [XNIO-1 task-1] 63BB14dVTemNyRXAmTFFpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.893 [XNIO-1 task-1] 63BB14dVTemNyRXAmTFFpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.908 [XNIO-1 task-1] NFSyBN79SZGp7yO51SP4mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9ceed106-887c-4e67-b9a3-84be67964146, base path is set to: null +09:00:43.908 [XNIO-1 task-1] NFSyBN79SZGp7yO51SP4mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.909 [XNIO-1 task-1] NFSyBN79SZGp7yO51SP4mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.909 [XNIO-1 task-1] NFSyBN79SZGp7yO51SP4mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9ceed106-887c-4e67-b9a3-84be67964146, base path is set to: null +09:00:43.909 [XNIO-1 task-1] NFSyBN79SZGp7yO51SP4mA DEBUG com.networknt.schema.TypeValidator debug - validate( "9ceed106-887c-4e67-b9a3-84be67964146", "9ceed106-887c-4e67-b9a3-84be67964146", refreshToken) +09:00:43.910 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9ceed106-887c-4e67-b9a3-84be67964146 +09:00:43.917 [XNIO-1 task-1] 8AyeZAcKR8KjUeb-Z8LkFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.917 [XNIO-1 task-1] 8AyeZAcKR8KjUeb-Z8LkFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.917 [XNIO-1 task-1] 8AyeZAcKR8KjUeb-Z8LkFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.918 [XNIO-1 task-1] 8AyeZAcKR8KjUeb-Z8LkFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.918 [XNIO-1 task-1] 8AyeZAcKR8KjUeb-Z8LkFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:43.927 [XNIO-1 task-1] 9dJ9nCgnQxGNnK0X6vvQ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.927 [XNIO-1 task-1] 9dJ9nCgnQxGNnK0X6vvQ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.927 [XNIO-1 task-1] 9dJ9nCgnQxGNnK0X6vvQ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.928 [XNIO-1 task-1] 9dJ9nCgnQxGNnK0X6vvQ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.928 [XNIO-1 task-1] 9dJ9nCgnQxGNnK0X6vvQ-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.941 [XNIO-1 task-1] 7yxAM3HmQUqfUoV1SDunPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.941 [XNIO-1 task-1] 7yxAM3HmQUqfUoV1SDunPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.941 [XNIO-1 task-1] 7yxAM3HmQUqfUoV1SDunPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.941 [XNIO-1 task-1] 7yxAM3HmQUqfUoV1SDunPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.942 [XNIO-1 task-1] 7yxAM3HmQUqfUoV1SDunPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.948 [XNIO-1 task-1] 1Kr6Pl-PQqi8dUn8Cml4oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fb2680f-5eb2-462f-8f76-112847340bdd, base path is set to: null +09:00:43.949 [XNIO-1 task-1] 1Kr6Pl-PQqi8dUn8Cml4oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.949 [XNIO-1 task-1] 1Kr6Pl-PQqi8dUn8Cml4oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.949 [XNIO-1 task-1] 1Kr6Pl-PQqi8dUn8Cml4oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fb2680f-5eb2-462f-8f76-112847340bdd, base path is set to: null +09:00:43.949 [XNIO-1 task-1] 1Kr6Pl-PQqi8dUn8Cml4oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4fb2680f-5eb2-462f-8f76-112847340bdd", "4fb2680f-5eb2-462f-8f76-112847340bdd", refreshToken) +09:00:43.953 [XNIO-1 task-1] --pQv0vOTvaGi965gA3Drg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.954 [XNIO-1 task-1] --pQv0vOTvaGi965gA3Drg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.954 [XNIO-1 task-1] --pQv0vOTvaGi965gA3Drg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.954 [XNIO-1 task-1] --pQv0vOTvaGi965gA3Drg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.955 [XNIO-1 task-1] --pQv0vOTvaGi965gA3Drg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:43.970 [XNIO-1 task-1] 4A_YH8bjTPSFjw-dVzonqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.970 [XNIO-1 task-1] 4A_YH8bjTPSFjw-dVzonqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.970 [XNIO-1 task-1] 4A_YH8bjTPSFjw-dVzonqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.970 [XNIO-1 task-1] 4A_YH8bjTPSFjw-dVzonqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.971 [XNIO-1 task-1] 4A_YH8bjTPSFjw-dVzonqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.977 [XNIO-1 task-1] W2I5Op8WSKmjSRW57x5cnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.977 [XNIO-1 task-1] W2I5Op8WSKmjSRW57x5cnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.977 [XNIO-1 task-1] W2I5Op8WSKmjSRW57x5cnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:43.978 [XNIO-1 task-1] W2I5Op8WSKmjSRW57x5cnw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.978 [XNIO-1 task-1] W2I5Op8WSKmjSRW57x5cnw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:43.986 [XNIO-1 task-1] mUqSW8jcSsG-NkzN-87-YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.986 [XNIO-1 task-1] mUqSW8jcSsG-NkzN-87-YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:43.986 [XNIO-1 task-1] mUqSW8jcSsG-NkzN-87-YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:43.987 [XNIO-1 task-1] mUqSW8jcSsG-NkzN-87-YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.987 [XNIO-1 task-1] mUqSW8jcSsG-NkzN-87-YA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:43.996 [XNIO-1 task-1] 6tscHXHgQTufV-SfEDvOMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f, base path is set to: null +09:00:43.997 [XNIO-1 task-1] 6tscHXHgQTufV-SfEDvOMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:43.997 [XNIO-1 task-1] 6tscHXHgQTufV-SfEDvOMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:43.997 [XNIO-1 task-1] 6tscHXHgQTufV-SfEDvOMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f, base path is set to: null +09:00:43.998 [XNIO-1 task-1] 6tscHXHgQTufV-SfEDvOMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0b03e6f2-796f-4e0b-8de2-571da7337b3f", "0b03e6f2-796f-4e0b-8de2-571da7337b3f", refreshToken) +09:00:43.998 [XNIO-1 task-1] 6tscHXHgQTufV-SfEDvOMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0b03e6f2-796f-4e0b-8de2-571da7337b3f is not found.","severity":"ERROR"} +09:00:44.008 [XNIO-1 task-1] M5B1sWYTTa-rDVt4dHc18w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.008 [XNIO-1 task-1] M5B1sWYTTa-rDVt4dHc18w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.009 [XNIO-1 task-1] M5B1sWYTTa-rDVt4dHc18w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.013 [XNIO-1 task-1] M5B1sWYTTa-rDVt4dHc18w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.032 [XNIO-1 task-1] 4-BtG_u6QQ-YOx-zMPL0cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f, base path is set to: null +09:00:44.032 [XNIO-1 task-1] 4-BtG_u6QQ-YOx-zMPL0cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.032 [XNIO-1 task-1] 4-BtG_u6QQ-YOx-zMPL0cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.032 [XNIO-1 task-1] 4-BtG_u6QQ-YOx-zMPL0cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f, base path is set to: null +09:00:44.033 [XNIO-1 task-1] 4-BtG_u6QQ-YOx-zMPL0cA DEBUG com.networknt.schema.TypeValidator debug - validate( "0b03e6f2-796f-4e0b-8de2-571da7337b3f", "0b03e6f2-796f-4e0b-8de2-571da7337b3f", refreshToken) +09:00:44.033 [XNIO-1 task-1] 4-BtG_u6QQ-YOx-zMPL0cA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0b03e6f2-796f-4e0b-8de2-571da7337b3f is not found.","severity":"ERROR"} +09:00:44.037 [XNIO-1 task-1] Wzsgp1dIQLyRjMdIOuRA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:44.037 [XNIO-1 task-1] Wzsgp1dIQLyRjMdIOuRA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.037 [XNIO-1 task-1] Wzsgp1dIQLyRjMdIOuRA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.038 [XNIO-1 task-1] Wzsgp1dIQLyRjMdIOuRA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:44.038 [XNIO-1 task-1] Wzsgp1dIQLyRjMdIOuRA_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0b03e6f2-796f-4e0b-8de2-571da7337b3f +09:00:44.061 [XNIO-1 task-1] ClOFfDLhR-OlIgnFL4jkbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.062 [XNIO-1 task-1] ClOFfDLhR-OlIgnFL4jkbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.062 [XNIO-1 task-1] ClOFfDLhR-OlIgnFL4jkbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.063 [XNIO-1 task-1] ClOFfDLhR-OlIgnFL4jkbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.063 [XNIO-1 task-1] ClOFfDLhR-OlIgnFL4jkbA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.077 [XNIO-1 task-1] I4e46CeNT1O9xwwgVy2xRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.077 [XNIO-1 task-1] I4e46CeNT1O9xwwgVy2xRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.080 [XNIO-1 task-1] I4e46CeNT1O9xwwgVy2xRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.081 [XNIO-1 task-1] I4e46CeNT1O9xwwgVy2xRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.092 [XNIO-1 task-1] KrQNt2hQTKKGj0w10U51Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.092 [XNIO-1 task-1] KrQNt2hQTKKGj0w10U51Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.092 [XNIO-1 task-1] KrQNt2hQTKKGj0w10U51Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.092 [XNIO-1 task-1] KrQNt2hQTKKGj0w10U51Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.093 [XNIO-1 task-1] KrQNt2hQTKKGj0w10U51Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.104 [XNIO-1 task-1] lZlRC2cDSaaqLMGTexg86g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.104 [XNIO-1 task-1] lZlRC2cDSaaqLMGTexg86g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.104 [XNIO-1 task-1] lZlRC2cDSaaqLMGTexg86g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.104 [XNIO-1 task-1] lZlRC2cDSaaqLMGTexg86g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.105 [XNIO-1 task-1] lZlRC2cDSaaqLMGTexg86g DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.112 [XNIO-1 task-1] lZlRC2cDSaaqLMGTexg86g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.114 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7be29983 +09:00:44.121 [XNIO-1 task-1] oht3YpnpSJW2WfPbPJMvGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.121 [XNIO-1 task-1] oht3YpnpSJW2WfPbPJMvGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.121 [XNIO-1 task-1] oht3YpnpSJW2WfPbPJMvGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.121 [XNIO-1 task-1] oht3YpnpSJW2WfPbPJMvGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.123 [XNIO-1 task-1] oht3YpnpSJW2WfPbPJMvGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.126 [XNIO-1 task-1] vs20ZHLvRSKJlPr5Dm1YmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.126 [XNIO-1 task-1] vs20ZHLvRSKJlPr5Dm1YmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.126 [XNIO-1 task-1] vs20ZHLvRSKJlPr5Dm1YmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.126 [XNIO-1 task-1] vs20ZHLvRSKJlPr5Dm1YmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.127 [XNIO-1 task-1] vs20ZHLvRSKJlPr5Dm1YmA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.127 [XNIO-1 task-1] vs20ZHLvRSKJlPr5Dm1YmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.135 [XNIO-1 task-1] AsTWZcQQTC6YrLKuf1kSGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.135 [XNIO-1 task-1] AsTWZcQQTC6YrLKuf1kSGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.135 [XNIO-1 task-1] AsTWZcQQTC6YrLKuf1kSGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.139 [XNIO-1 task-1] AsTWZcQQTC6YrLKuf1kSGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.139 [XNIO-1 task-1] AsTWZcQQTC6YrLKuf1kSGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.148 [XNIO-1 task-1] Ki7kwWe0QRW866MzVDg9wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.148 [XNIO-1 task-1] Ki7kwWe0QRW866MzVDg9wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.148 [XNIO-1 task-1] Ki7kwWe0QRW866MzVDg9wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.149 [XNIO-1 task-1] Ki7kwWe0QRW866MzVDg9wg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.149 [XNIO-1 task-1] Ki7kwWe0QRW866MzVDg9wg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.154 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4664f1ce +09:00:44.161 [XNIO-1 task-1] wXpEzqshRqOp-Pl1xrKveA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.161 [XNIO-1 task-1] wXpEzqshRqOp-Pl1xrKveA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.161 [XNIO-1 task-1] wXpEzqshRqOp-Pl1xrKveA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.161 [XNIO-1 task-1] wXpEzqshRqOp-Pl1xrKveA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.162 [XNIO-1 task-1] wXpEzqshRqOp-Pl1xrKveA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.162 [XNIO-1 task-1] wXpEzqshRqOp-Pl1xrKveA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.168 [XNIO-1 task-1] 1AOrqa9eRuCW0YfzBJZwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.168 [XNIO-1 task-1] 1AOrqa9eRuCW0YfzBJZwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.168 [XNIO-1 task-1] 1AOrqa9eRuCW0YfzBJZwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.169 [XNIO-1 task-1] 1AOrqa9eRuCW0YfzBJZwIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.169 [XNIO-1 task-1] 1AOrqa9eRuCW0YfzBJZwIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.176 [XNIO-1 task-1] oL5bpacZRZKNpTbtRwV-kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.176 [XNIO-1 task-1] oL5bpacZRZKNpTbtRwV-kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.176 [XNIO-1 task-1] oL5bpacZRZKNpTbtRwV-kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.176 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4664f1ce +09:00:44.176 [XNIO-1 task-1] oL5bpacZRZKNpTbtRwV-kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.177 [XNIO-1 task-1] oL5bpacZRZKNpTbtRwV-kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.177 [XNIO-1 task-1] oL5bpacZRZKNpTbtRwV-kQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.186 [XNIO-1 task-1] -Zs7TU83Qjekn0bvxuZ5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.186 [XNIO-1 task-1] -Zs7TU83Qjekn0bvxuZ5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.186 [XNIO-1 task-1] -Zs7TU83Qjekn0bvxuZ5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.186 [XNIO-1 task-1] -Zs7TU83Qjekn0bvxuZ5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.187 [XNIO-1 task-1] -Zs7TU83Qjekn0bvxuZ5aQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.191 [XNIO-1 task-1] o0PQsFUdTZ6NoUSGWGnnaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.191 [XNIO-1 task-1] o0PQsFUdTZ6NoUSGWGnnaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.191 [XNIO-1 task-1] o0PQsFUdTZ6NoUSGWGnnaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.192 [XNIO-1 task-1] o0PQsFUdTZ6NoUSGWGnnaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.193 [XNIO-1 task-1] o0PQsFUdTZ6NoUSGWGnnaw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.194 [XNIO-1 task-1] o0PQsFUdTZ6NoUSGWGnnaw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.200 [XNIO-1 task-1] G0pBGaE3Tkqrqkb45lgUag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.201 [XNIO-1 task-1] G0pBGaE3Tkqrqkb45lgUag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.201 [XNIO-1 task-1] G0pBGaE3Tkqrqkb45lgUag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.202 [XNIO-1 task-1] G0pBGaE3Tkqrqkb45lgUag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.202 [XNIO-1 task-1] G0pBGaE3Tkqrqkb45lgUag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.208 [XNIO-1 task-1] 1RM3kngkStezNH9iCPUhig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.209 [XNIO-1 task-1] 1RM3kngkStezNH9iCPUhig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.209 [XNIO-1 task-1] 1RM3kngkStezNH9iCPUhig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.210 [XNIO-1 task-1] 1RM3kngkStezNH9iCPUhig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.210 [XNIO-1 task-1] 1RM3kngkStezNH9iCPUhig DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.224 [XNIO-1 task-1] BBhTrwG3SneL2Se7CHy-hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.224 [XNIO-1 task-1] BBhTrwG3SneL2Se7CHy-hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.224 [XNIO-1 task-1] BBhTrwG3SneL2Se7CHy-hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.225 [XNIO-1 task-1] BBhTrwG3SneL2Se7CHy-hQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.234 [XNIO-1 task-1] 24K5AYH-QBClnV_KYpL8YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.235 [XNIO-1 task-1] 24K5AYH-QBClnV_KYpL8YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.235 [XNIO-1 task-1] 24K5AYH-QBClnV_KYpL8YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.235 [XNIO-1 task-1] 24K5AYH-QBClnV_KYpL8YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.235 [XNIO-1 task-1] 24K5AYH-QBClnV_KYpL8YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.236 [XNIO-1 task-1] 24K5AYH-QBClnV_KYpL8YQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.246 [XNIO-1 task-1] n7g9MyvpTQaTeQDS-4FXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.246 [XNIO-1 task-1] n7g9MyvpTQaTeQDS-4FXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.246 [XNIO-1 task-1] n7g9MyvpTQaTeQDS-4FXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.246 [XNIO-1 task-1] n7g9MyvpTQaTeQDS-4FXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.246 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4664f1ce +09:00:44.247 [XNIO-1 task-1] n7g9MyvpTQaTeQDS-4FXLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.249 [XNIO-1 task-1] DwxEn6MhQbmJwTqjvOvkww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.251 [XNIO-1 task-1] DwxEn6MhQbmJwTqjvOvkww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.251 [XNIO-1 task-1] DwxEn6MhQbmJwTqjvOvkww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.251 [XNIO-1 task-1] DwxEn6MhQbmJwTqjvOvkww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.252 [XNIO-1 task-1] DwxEn6MhQbmJwTqjvOvkww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.268 [XNIO-1 task-1] uPCkaPC6Taeau_Z60FXrwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.268 [XNIO-1 task-1] uPCkaPC6Taeau_Z60FXrwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.268 [XNIO-1 task-1] uPCkaPC6Taeau_Z60FXrwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.268 [XNIO-1 task-1] uPCkaPC6Taeau_Z60FXrwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.269 [XNIO-1 task-1] uPCkaPC6Taeau_Z60FXrwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.272 [XNIO-1 task-1] MtBE3nrcR9G8yKXTrJT6oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.272 [XNIO-1 task-1] MtBE3nrcR9G8yKXTrJT6oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.272 [XNIO-1 task-1] MtBE3nrcR9G8yKXTrJT6oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.272 [XNIO-1 task-1] MtBE3nrcR9G8yKXTrJT6oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.273 [XNIO-1 task-1] MtBE3nrcR9G8yKXTrJT6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.273 [XNIO-1 task-1] MtBE3nrcR9G8yKXTrJT6oQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.283 [XNIO-1 task-1] C-xD039vTxm-FyRHmy99Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.283 [XNIO-1 task-1] C-xD039vTxm-FyRHmy99Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.283 [XNIO-1 task-1] C-xD039vTxm-FyRHmy99Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.284 [XNIO-1 task-1] C-xD039vTxm-FyRHmy99Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.284 [XNIO-1 task-1] C-xD039vTxm-FyRHmy99Pw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.289 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4664f1ce +09:00:44.294 [XNIO-1 task-1] Z0Z0wT_1R_mmb0XRABfACg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.296 [XNIO-1 task-1] Z0Z0wT_1R_mmb0XRABfACg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.296 [XNIO-1 task-1] Z0Z0wT_1R_mmb0XRABfACg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.297 [XNIO-1 task-1] Z0Z0wT_1R_mmb0XRABfACg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.297 [XNIO-1 task-1] Z0Z0wT_1R_mmb0XRABfACg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.305 [XNIO-1 task-1] 2C-7tq2gSPWRR2F47WAlzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.305 [XNIO-1 task-1] 2C-7tq2gSPWRR2F47WAlzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.305 [XNIO-1 task-1] 2C-7tq2gSPWRR2F47WAlzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.306 [XNIO-1 task-1] 2C-7tq2gSPWRR2F47WAlzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.306 [XNIO-1 task-1] 2C-7tq2gSPWRR2F47WAlzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.312 [XNIO-1 task-1] 214-uLKsRyaEsQiobqdQbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.312 [XNIO-1 task-1] 214-uLKsRyaEsQiobqdQbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.312 [XNIO-1 task-1] 214-uLKsRyaEsQiobqdQbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.313 [XNIO-1 task-1] 214-uLKsRyaEsQiobqdQbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.313 [XNIO-1 task-1] 214-uLKsRyaEsQiobqdQbA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.325 [XNIO-1 task-1] gqCOyRd3S-CPW53XqGv-dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.325 [XNIO-1 task-1] gqCOyRd3S-CPW53XqGv-dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.325 [XNIO-1 task-1] gqCOyRd3S-CPW53XqGv-dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.326 [XNIO-1 task-1] gqCOyRd3S-CPW53XqGv-dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.335 [XNIO-1 task-1] q1q3YtQSTYWAi0ja4Q6L6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.335 [XNIO-1 task-1] q1q3YtQSTYWAi0ja4Q6L6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.335 [XNIO-1 task-1] q1q3YtQSTYWAi0ja4Q6L6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.335 [XNIO-1 task-1] q1q3YtQSTYWAi0ja4Q6L6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.336 [XNIO-1 task-1] q1q3YtQSTYWAi0ja4Q6L6A DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.336 [XNIO-1 task-1] q1q3YtQSTYWAi0ja4Q6L6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.341 [XNIO-1 task-1] CGLL2qFfQlGSJCDAUGGWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.341 [XNIO-1 task-1] CGLL2qFfQlGSJCDAUGGWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.342 [XNIO-1 task-1] CGLL2qFfQlGSJCDAUGGWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.342 [XNIO-1 task-1] CGLL2qFfQlGSJCDAUGGWVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.352 [XNIO-1 task-1] w7kOQRn1TfeCFVLFldl6Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.353 [XNIO-1 task-1] w7kOQRn1TfeCFVLFldl6Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.353 [XNIO-1 task-1] w7kOQRn1TfeCFVLFldl6Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.410 [XNIO-1 task-1] w7kOQRn1TfeCFVLFldl6Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.410 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4664f1ce +09:00:44.428 [XNIO-1 task-1] 8XjnjrDGTySSp0zdXK0XKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.428 [XNIO-1 task-1] 8XjnjrDGTySSp0zdXK0XKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.428 [XNIO-1 task-1] 8XjnjrDGTySSp0zdXK0XKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.429 [XNIO-1 task-1] 8XjnjrDGTySSp0zdXK0XKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.429 [XNIO-1 task-1] 8XjnjrDGTySSp0zdXK0XKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.457 [XNIO-1 task-1] x1eosUOBSymTxarEEomnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.457 [XNIO-1 task-1] x1eosUOBSymTxarEEomnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.457 [XNIO-1 task-1] x1eosUOBSymTxarEEomnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.457 [XNIO-1 task-1] x1eosUOBSymTxarEEomnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.458 [XNIO-1 task-1] x1eosUOBSymTxarEEomnbg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.462 [XNIO-1 task-1] IWcH3CSNRF-0z-CvUZ65sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.462 [XNIO-1 task-1] IWcH3CSNRF-0z-CvUZ65sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.462 [XNIO-1 task-1] IWcH3CSNRF-0z-CvUZ65sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.463 [XNIO-1 task-1] IWcH3CSNRF-0z-CvUZ65sw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.463 [XNIO-1 task-1] IWcH3CSNRF-0z-CvUZ65sw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.509 [XNIO-1 task-1] 2Ahh34f_QV2cS1lpdAUt7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.509 [XNIO-1 task-1] 2Ahh34f_QV2cS1lpdAUt7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.509 [XNIO-1 task-1] 2Ahh34f_QV2cS1lpdAUt7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.509 [XNIO-1 task-1] 2Ahh34f_QV2cS1lpdAUt7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.510 [XNIO-1 task-1] 2Ahh34f_QV2cS1lpdAUt7w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.522 [XNIO-1 task-1] p90phiqMQ-W4X4ZVHCWcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.522 [XNIO-1 task-1] p90phiqMQ-W4X4ZVHCWcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.522 [XNIO-1 task-1] p90phiqMQ-W4X4ZVHCWcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.522 [XNIO-1 task-1] p90phiqMQ-W4X4ZVHCWcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.523 [XNIO-1 task-1] p90phiqMQ-W4X4ZVHCWcmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.527 [XNIO-1 task-1] B4lpkY3sSSywvhk4bM0lXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.532 [XNIO-1 task-1] B4lpkY3sSSywvhk4bM0lXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.532 [XNIO-1 task-1] B4lpkY3sSSywvhk4bM0lXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.532 [XNIO-1 task-1] B4lpkY3sSSywvhk4bM0lXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.532 [XNIO-1 task-1] B4lpkY3sSSywvhk4bM0lXA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.533 [XNIO-1 task-1] B4lpkY3sSSywvhk4bM0lXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.537 [XNIO-1 task-1] a-1Pon01QhKEMWeE0GZuJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.537 [XNIO-1 task-1] a-1Pon01QhKEMWeE0GZuJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.537 [XNIO-1 task-1] a-1Pon01QhKEMWeE0GZuJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.537 [XNIO-1 task-1] a-1Pon01QhKEMWeE0GZuJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.538 [XNIO-1 task-1] a-1Pon01QhKEMWeE0GZuJA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.554 [XNIO-1 task-1] muGkQteyQNyhHgo_teUjHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.554 [XNIO-1 task-1] muGkQteyQNyhHgo_teUjHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.554 [XNIO-1 task-1] muGkQteyQNyhHgo_teUjHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.555 [XNIO-1 task-1] muGkQteyQNyhHgo_teUjHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.555 [XNIO-1 task-1] muGkQteyQNyhHgo_teUjHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.562 [XNIO-1 task-1] FooSdvrtShG84IMO-IGF0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b, base path is set to: null +09:00:44.562 [XNIO-1 task-1] FooSdvrtShG84IMO-IGF0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.563 [XNIO-1 task-1] FooSdvrtShG84IMO-IGF0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.563 [XNIO-1 task-1] FooSdvrtShG84IMO-IGF0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b, base path is set to: null +09:00:44.563 [XNIO-1 task-1] FooSdvrtShG84IMO-IGF0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3fee7dc0-0bb5-40be-aeed-70b760e0fa2b", "3fee7dc0-0bb5-40be-aeed-70b760e0fa2b", refreshToken) +09:00:44.571 [XNIO-1 task-1] FooSdvrtShG84IMO-IGF0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fee7dc0-0bb5-40be-aeed-70b760e0fa2b is not found.","severity":"ERROR"} +09:00:44.575 [XNIO-1 task-1] Tw9wECboT9e2heR2vaz1zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.575 [XNIO-1 task-1] Tw9wECboT9e2heR2vaz1zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.575 [XNIO-1 task-1] Tw9wECboT9e2heR2vaz1zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.576 [XNIO-1 task-1] Tw9wECboT9e2heR2vaz1zw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.601 [XNIO-1 task-1] yPnKZIFgSBSioN413cYALA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b, base path is set to: null +09:00:44.601 [XNIO-1 task-1] yPnKZIFgSBSioN413cYALA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.602 [XNIO-1 task-1] yPnKZIFgSBSioN413cYALA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.602 [XNIO-1 task-1] yPnKZIFgSBSioN413cYALA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fee7dc0-0bb5-40be-aeed-70b760e0fa2b, base path is set to: null +09:00:44.602 [XNIO-1 task-1] yPnKZIFgSBSioN413cYALA DEBUG com.networknt.schema.TypeValidator debug - validate( "3fee7dc0-0bb5-40be-aeed-70b760e0fa2b", "3fee7dc0-0bb5-40be-aeed-70b760e0fa2b", refreshToken) +09:00:44.603 [XNIO-1 task-1] yPnKZIFgSBSioN413cYALA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fee7dc0-0bb5-40be-aeed-70b760e0fa2b is not found.","severity":"ERROR"} +09:00:44.606 [XNIO-1 task-1] hzwJL_arROaQc08pcIolaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.606 [XNIO-1 task-1] hzwJL_arROaQc08pcIolaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.606 [XNIO-1 task-1] hzwJL_arROaQc08pcIolaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.606 [XNIO-1 task-1] hzwJL_arROaQc08pcIolaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.607 [XNIO-1 task-1] hzwJL_arROaQc08pcIolaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.612 [XNIO-1 task-1] T4_IRQWpRx6d20bfITbH0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.612 [XNIO-1 task-1] T4_IRQWpRx6d20bfITbH0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.612 [XNIO-1 task-1] T4_IRQWpRx6d20bfITbH0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.613 [XNIO-1 task-1] T4_IRQWpRx6d20bfITbH0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.613 [XNIO-1 task-1] T4_IRQWpRx6d20bfITbH0Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.625 [XNIO-1 task-1] ToKpJiqfTL6ZlLGmprhVYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.625 [XNIO-1 task-1] ToKpJiqfTL6ZlLGmprhVYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.625 [XNIO-1 task-1] ToKpJiqfTL6ZlLGmprhVYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.626 [XNIO-1 task-1] ToKpJiqfTL6ZlLGmprhVYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.626 [XNIO-1 task-1] ToKpJiqfTL6ZlLGmprhVYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.631 [XNIO-1 task-1] gAd0tuDqQRyihy4Uvsi7ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.631 [XNIO-1 task-1] gAd0tuDqQRyihy4Uvsi7ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.631 [XNIO-1 task-1] gAd0tuDqQRyihy4Uvsi7ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.631 [XNIO-1 task-1] gAd0tuDqQRyihy4Uvsi7ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.634 [XNIO-1 task-1] gAd0tuDqQRyihy4Uvsi7ew DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.635 [XNIO-1 task-1] gAd0tuDqQRyihy4Uvsi7ew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.644 [XNIO-1 task-1] wYhycOdqRBiCSJG5m56-TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.645 [XNIO-1 task-1] wYhycOdqRBiCSJG5m56-TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.645 [XNIO-1 task-1] wYhycOdqRBiCSJG5m56-TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.645 [XNIO-1 task-1] wYhycOdqRBiCSJG5m56-TQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.655 [XNIO-1 task-1] LqE4WTN9RtWTm644aGBk_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.656 [XNIO-1 task-1] LqE4WTN9RtWTm644aGBk_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.656 [XNIO-1 task-1] LqE4WTN9RtWTm644aGBk_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.656 [XNIO-1 task-1] LqE4WTN9RtWTm644aGBk_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.657 [XNIO-1 task-1] LqE4WTN9RtWTm644aGBk_g DEBUG com.networknt.schema.TypeValidator debug - validate( "6a05d1a0-7aea-4701-abd0-a317e10f28f4", "6a05d1a0-7aea-4701-abd0-a317e10f28f4", refreshToken) +09:00:44.662 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.664 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.667 [XNIO-1 task-1] LPfAs9VdQgmh3RR2eWyZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.667 [XNIO-1 task-1] LPfAs9VdQgmh3RR2eWyZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.667 [XNIO-1 task-1] LPfAs9VdQgmh3RR2eWyZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.668 [XNIO-1 task-1] LPfAs9VdQgmh3RR2eWyZOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.675 [XNIO-1 task-1] s6gng6gNT2yWgTgPvuzA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.679 [XNIO-1 task-1] s6gng6gNT2yWgTgPvuzA4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.679 [XNIO-1 task-1] s6gng6gNT2yWgTgPvuzA4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.679 [XNIO-1 task-1] s6gng6gNT2yWgTgPvuzA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.681 [XNIO-1 task-1] s6gng6gNT2yWgTgPvuzA4A DEBUG com.networknt.schema.TypeValidator debug - validate( "6a05d1a0-7aea-4701-abd0-a317e10f28f4", "6a05d1a0-7aea-4701-abd0-a317e10f28f4", refreshToken) +09:00:44.686 [XNIO-1 task-1] IVh71ruvTdansTMUNxcncQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.686 [XNIO-1 task-1] IVh71ruvTdansTMUNxcncQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.686 [XNIO-1 task-1] IVh71ruvTdansTMUNxcncQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.687 [XNIO-1 task-1] IVh71ruvTdansTMUNxcncQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.687 [XNIO-1 task-1] IVh71ruvTdansTMUNxcncQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6a05d1a0-7aea-4701-abd0-a317e10f28f4", "6a05d1a0-7aea-4701-abd0-a317e10f28f4", refreshToken) +09:00:44.693 [XNIO-1 task-1] wy7xjDsGTHC-t7dak22FPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.693 [XNIO-1 task-1] wy7xjDsGTHC-t7dak22FPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.693 [XNIO-1 task-1] wy7xjDsGTHC-t7dak22FPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.693 [XNIO-1 task-1] wy7xjDsGTHC-t7dak22FPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.694 [XNIO-1 task-1] wy7xjDsGTHC-t7dak22FPg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.706 [XNIO-1 task-1] MjMIZLZfR5qKEi_czkyMqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:44.706 [XNIO-1 task-1] MjMIZLZfR5qKEi_czkyMqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.706 [XNIO-1 task-1] MjMIZLZfR5qKEi_czkyMqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.706 [XNIO-1 task-1] MjMIZLZfR5qKEi_czkyMqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:44.707 [XNIO-1 task-1] MjMIZLZfR5qKEi_czkyMqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:44.711 [XNIO-1 task-1] ph1EFlB0RvyJJzM5LMRgZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2db0d375-6fc9-4b95-9f71-f160c8bf29fd +09:00:44.712 [XNIO-1 task-1] ph1EFlB0RvyJJzM5LMRgZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.713 [XNIO-1 task-1] ph1EFlB0RvyJJzM5LMRgZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.713 [XNIO-1 task-1] ph1EFlB0RvyJJzM5LMRgZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2db0d375-6fc9-4b95-9f71-f160c8bf29fd +09:00:44.713 [XNIO-1 task-1] ph1EFlB0RvyJJzM5LMRgZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2db0d375-6fc9-4b95-9f71-f160c8bf29fd +09:00:44.724 [XNIO-1 task-1] jr1hU32dQju0PO4fdEeqAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.724 [XNIO-1 task-1] jr1hU32dQju0PO4fdEeqAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.724 [XNIO-1 task-1] jr1hU32dQju0PO4fdEeqAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.725 [XNIO-1 task-1] jr1hU32dQju0PO4fdEeqAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.725 [XNIO-1 task-1] jr1hU32dQju0PO4fdEeqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.725 [XNIO-1 task-1] jr1hU32dQju0PO4fdEeqAA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.750 [XNIO-1 task-1] xjRRrEwASvi445EVWzDdJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.751 [XNIO-1 task-1] xjRRrEwASvi445EVWzDdJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.751 [XNIO-1 task-1] xjRRrEwASvi445EVWzDdJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.751 [XNIO-1 task-1] xjRRrEwASvi445EVWzDdJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.751 [XNIO-1 task-1] xjRRrEwASvi445EVWzDdJg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.754 [XNIO-1 task-1] Nb3iO1FzQFyShXl0L6LlKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.754 [XNIO-1 task-1] Nb3iO1FzQFyShXl0L6LlKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.755 [XNIO-1 task-1] Nb3iO1FzQFyShXl0L6LlKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.755 [XNIO-1 task-1] Nb3iO1FzQFyShXl0L6LlKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.755 [XNIO-1 task-1] Nb3iO1FzQFyShXl0L6LlKw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.755 [XNIO-1 task-1] Nb3iO1FzQFyShXl0L6LlKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.759 [XNIO-1 task-1] Az8ENq13QBCfE2rQnItYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.759 [XNIO-1 task-1] Az8ENq13QBCfE2rQnItYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.759 [XNIO-1 task-1] Az8ENq13QBCfE2rQnItYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.759 [XNIO-1 task-1] Az8ENq13QBCfE2rQnItYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.760 [XNIO-1 task-1] Az8ENq13QBCfE2rQnItYWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.768 [XNIO-1 task-1] JrAJFZ-JR-aXXukZ2irEJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.769 [XNIO-1 task-1] JrAJFZ-JR-aXXukZ2irEJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.769 [XNIO-1 task-1] JrAJFZ-JR-aXXukZ2irEJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.770 [XNIO-1 task-1] JrAJFZ-JR-aXXukZ2irEJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.770 [XNIO-1 task-1] JrAJFZ-JR-aXXukZ2irEJw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.770 [XNIO-1 task-1] JrAJFZ-JR-aXXukZ2irEJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.776 [XNIO-1 task-1] wVBe8xltQSe9NbHb0ba0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.776 [XNIO-1 task-1] wVBe8xltQSe9NbHb0ba0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.776 [XNIO-1 task-1] wVBe8xltQSe9NbHb0ba0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.778 [XNIO-1 task-1] wVBe8xltQSe9NbHb0ba0kw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.787 [XNIO-1 task-1] X2u-miLbRYCE7yJ1ZQe5tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.789 [XNIO-1 task-1] X2u-miLbRYCE7yJ1ZQe5tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.789 [XNIO-1 task-1] X2u-miLbRYCE7yJ1ZQe5tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.789 [XNIO-1 task-1] X2u-miLbRYCE7yJ1ZQe5tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.790 [XNIO-1 task-1] X2u-miLbRYCE7yJ1ZQe5tw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.790 [XNIO-1 task-1] X2u-miLbRYCE7yJ1ZQe5tw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.796 [XNIO-1 task-1] VyogojnVQv26xdiIvzd1bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.796 [XNIO-1 task-1] VyogojnVQv26xdiIvzd1bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.796 [XNIO-1 task-1] VyogojnVQv26xdiIvzd1bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.796 [XNIO-1 task-1] VyogojnVQv26xdiIvzd1bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.797 [XNIO-1 task-1] VyogojnVQv26xdiIvzd1bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.801 [XNIO-1 task-1] ovcYtEAWSdGsl30XXDDlqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.801 [XNIO-1 task-1] ovcYtEAWSdGsl30XXDDlqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.801 [XNIO-1 task-1] ovcYtEAWSdGsl30XXDDlqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.802 [XNIO-1 task-1] ovcYtEAWSdGsl30XXDDlqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.802 [XNIO-1 task-1] ovcYtEAWSdGsl30XXDDlqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.817 [XNIO-1 task-1] kFcLiG-pQMm9bpdhsB9rtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.817 [XNIO-1 task-1] kFcLiG-pQMm9bpdhsB9rtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.817 [XNIO-1 task-1] kFcLiG-pQMm9bpdhsB9rtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.817 [XNIO-1 task-1] kFcLiG-pQMm9bpdhsB9rtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:44.818 [XNIO-1 task-1] kFcLiG-pQMm9bpdhsB9rtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:44.825 [XNIO-1 task-1] Je7jyluYRLqGPXnci5B1hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.825 [XNIO-1 task-1] Je7jyluYRLqGPXnci5B1hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.827 [XNIO-1 task-1] Je7jyluYRLqGPXnci5B1hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:44.828 [XNIO-1 task-1] Je7jyluYRLqGPXnci5B1hA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.830 [XNIO-1 task-1] Je7jyluYRLqGPXnci5B1hA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:44.840 [XNIO-1 task-1] AgELejVMQ-W27udzJsaFBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.840 [XNIO-1 task-1] AgELejVMQ-W27udzJsaFBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.840 [XNIO-1 task-1] AgELejVMQ-W27udzJsaFBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.841 [XNIO-1 task-1] AgELejVMQ-W27udzJsaFBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.847 [XNIO-1 task-1] NNVmv4WWQC2Z8bVVtYHrxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:44.847 [XNIO-1 task-1] NNVmv4WWQC2Z8bVVtYHrxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.847 [XNIO-1 task-1] NNVmv4WWQC2Z8bVVtYHrxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.847 [XNIO-1 task-1] NNVmv4WWQC2Z8bVVtYHrxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:44.848 [XNIO-1 task-1] NNVmv4WWQC2Z8bVVtYHrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dd1632e2-1692-4101-92c9-97086b4d20fe", "dd1632e2-1692-4101-92c9-97086b4d20fe", refreshToken) +09:00:44.858 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:058fe646 +09:00:44.860 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:058fe646 +09:00:44.863 [XNIO-1 task-1] L4K1QFudTPu1QpDj8sMksA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.864 [XNIO-1 task-1] L4K1QFudTPu1QpDj8sMksA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.864 [XNIO-1 task-1] L4K1QFudTPu1QpDj8sMksA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.865 [XNIO-1 task-1] L4K1QFudTPu1QpDj8sMksA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.871 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:058fe646 +09:00:44.875 [XNIO-1 task-1] wb4qR0YMSYm-uKAigj4DNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.876 [XNIO-1 task-1] wb4qR0YMSYm-uKAigj4DNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.876 [XNIO-1 task-1] wb4qR0YMSYm-uKAigj4DNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.876 [XNIO-1 task-1] wb4qR0YMSYm-uKAigj4DNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:44.876 [XNIO-1 task-1] wb4qR0YMSYm-uKAigj4DNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:44.877 [XNIO-1 task-1] wb4qR0YMSYm-uKAigj4DNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:44.881 [XNIO-1 task-1] rYccs79hScybWZ6bqEW7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.881 [XNIO-1 task-1] rYccs79hScybWZ6bqEW7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.882 [XNIO-1 task-1] rYccs79hScybWZ6bqEW7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.882 [XNIO-1 task-1] rYccs79hScybWZ6bqEW7Gw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.898 [XNIO-1 task-1] IW9mJgYiSYGtgoYxjLHV5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.899 [XNIO-1 task-1] IW9mJgYiSYGtgoYxjLHV5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.899 [XNIO-1 task-1] IW9mJgYiSYGtgoYxjLHV5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.899 [XNIO-1 task-1] IW9mJgYiSYGtgoYxjLHV5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4, base path is set to: null +09:00:44.899 [XNIO-1 task-1] IW9mJgYiSYGtgoYxjLHV5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6a05d1a0-7aea-4701-abd0-a317e10f28f4", "6a05d1a0-7aea-4701-abd0-a317e10f28f4", refreshToken) +09:00:44.915 [XNIO-1 task-1] qxvwXqWnSa6i_9dkQkXD5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4, base path is set to: null +09:00:44.915 [XNIO-1 task-1] qxvwXqWnSa6i_9dkQkXD5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:44.915 [XNIO-1 task-1] qxvwXqWnSa6i_9dkQkXD5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:44.915 [XNIO-1 task-1] qxvwXqWnSa6i_9dkQkXD5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4, base path is set to: null +09:00:44.916 [XNIO-1 task-1] qxvwXqWnSa6i_9dkQkXD5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "673435d5-dcbe-4d17-a10c-d5e1817331d4", "673435d5-dcbe-4d17-a10c-d5e1817331d4", refreshToken) +09:00:44.917 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.930 [XNIO-1 task-1] F_fzgSIoQ1mzYw3Pa4QJJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.930 [XNIO-1 task-1] F_fzgSIoQ1mzYw3Pa4QJJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.930 [XNIO-1 task-1] F_fzgSIoQ1mzYw3Pa4QJJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.931 [XNIO-1 task-1] F_fzgSIoQ1mzYw3Pa4QJJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.931 [XNIO-1 task-1] F_fzgSIoQ1mzYw3Pa4QJJg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.933 [XNIO-1 task-1] F_fzgSIoQ1mzYw3Pa4QJJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 673435d5-dcbe-4d17-a10c-d5e1817331d4 is not found.","severity":"ERROR"} +09:00:44.937 [XNIO-1 task-1] IA-y8nmySayZVgSvKjgkNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.937 [XNIO-1 task-1] IA-y8nmySayZVgSvKjgkNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.937 [XNIO-1 task-1] IA-y8nmySayZVgSvKjgkNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.938 [XNIO-1 task-1] IA-y8nmySayZVgSvKjgkNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.938 [XNIO-1 task-1] IA-y8nmySayZVgSvKjgkNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.940 [XNIO-1 task-1] IA-y8nmySayZVgSvKjgkNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 673435d5-dcbe-4d17-a10c-d5e1817331d4 is not found.","severity":"ERROR"} +09:00:44.944 [XNIO-1 task-1] ds8SNd4TSyqgXOWzvIaFfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.945 [XNIO-1 task-1] ds8SNd4TSyqgXOWzvIaFfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.945 [XNIO-1 task-1] ds8SNd4TSyqgXOWzvIaFfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.946 [XNIO-1 task-1] ds8SNd4TSyqgXOWzvIaFfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.951 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:44.955 [XNIO-1 task-1] fLYCY_MkRAOOX2a5dMgulQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.955 [XNIO-1 task-1] fLYCY_MkRAOOX2a5dMgulQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.955 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:44.955 [XNIO-1 task-1] fLYCY_MkRAOOX2a5dMgulQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.956 [XNIO-1 task-1] fLYCY_MkRAOOX2a5dMgulQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.956 [XNIO-1 task-1] fLYCY_MkRAOOX2a5dMgulQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:44.966 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:44.993 [XNIO-1 task-1] fLYCY_MkRAOOX2a5dMgulQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 673435d5-dcbe-4d17-a10c-d5e1817331d4 is not found.","severity":"ERROR"} +09:00:44.998 [XNIO-1 task-1] W5yePog9QJGPGecFdg93bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ef4792a1-5086-425e-af50-4fe3553f71d7 +09:00:44.999 [XNIO-1 task-1] W5yePog9QJGPGecFdg93bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:44.999 [XNIO-1 task-1] W5yePog9QJGPGecFdg93bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:44.999 [XNIO-1 task-1] W5yePog9QJGPGecFdg93bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ef4792a1-5086-425e-af50-4fe3553f71d7 +09:00:45.002 [XNIO-1 task-1] W5yePog9QJGPGecFdg93bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ef4792a1-5086-425e-af50-4fe3553f71d7 +09:00:45.022 [XNIO-1 task-1] RPfykZUCRTqy0JhK9Ihesw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.022 [XNIO-1 task-1] RPfykZUCRTqy0JhK9Ihesw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.022 [XNIO-1 task-1] RPfykZUCRTqy0JhK9Ihesw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.023 [XNIO-1 task-1] RPfykZUCRTqy0JhK9Ihesw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.029 [XNIO-1 task-1] XuYwCsHHScK625lDrRKugg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.029 [XNIO-1 task-1] XuYwCsHHScK625lDrRKugg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.030 [XNIO-1 task-1] XuYwCsHHScK625lDrRKugg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.030 [XNIO-1 task-1] XuYwCsHHScK625lDrRKugg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.030 [XNIO-1 task-1] XuYwCsHHScK625lDrRKugg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.037 [XNIO-1 task-1] UtI_T0kuTJm-iEXuFQkJZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.037 [XNIO-1 task-1] UtI_T0kuTJm-iEXuFQkJZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.037 [XNIO-1 task-1] UtI_T0kuTJm-iEXuFQkJZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.037 [XNIO-1 task-1] UtI_T0kuTJm-iEXuFQkJZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.037 [XNIO-1 task-1] UtI_T0kuTJm-iEXuFQkJZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.039 [XNIO-1 task-1] UtI_T0kuTJm-iEXuFQkJZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 673435d5-dcbe-4d17-a10c-d5e1817331d4 is not found.","severity":"ERROR"} +09:00:45.044 [XNIO-1 task-1] 0JkgKi2iTcypjjq6-KjIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.044 [XNIO-1 task-1] 0JkgKi2iTcypjjq6-KjIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.044 [XNIO-1 task-1] 0JkgKi2iTcypjjq6-KjIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.044 [XNIO-1 task-1] 0JkgKi2iTcypjjq6-KjIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.045 [XNIO-1 task-1] 0JkgKi2iTcypjjq6-KjIVA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.058 [XNIO-1 task-1] Y78ejMr1Sc-6-O7opgJh_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.058 [XNIO-1 task-1] Y78ejMr1Sc-6-O7opgJh_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.058 [XNIO-1 task-1] Y78ejMr1Sc-6-O7opgJh_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.058 [XNIO-1 task-1] Y78ejMr1Sc-6-O7opgJh_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.058 [XNIO-1 task-1] Y78ejMr1Sc-6-O7opgJh_A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.064 [XNIO-1 task-1] _TlgOO_VQnuT4BM-34ZrOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:45.065 [XNIO-1 task-1] _TlgOO_VQnuT4BM-34ZrOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.065 [XNIO-1 task-1] _TlgOO_VQnuT4BM-34ZrOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.065 [XNIO-1 task-1] _TlgOO_VQnuT4BM-34ZrOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:45.065 [XNIO-1 task-1] _TlgOO_VQnuT4BM-34ZrOg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd1632e2-1692-4101-92c9-97086b4d20fe", "dd1632e2-1692-4101-92c9-97086b4d20fe", refreshToken) +09:00:45.071 [XNIO-1 task-1] _TlgOO_VQnuT4BM-34ZrOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dd1632e2-1692-4101-92c9-97086b4d20fe is not found.","severity":"ERROR"} +09:00:45.074 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7be29983 +09:00:45.075 [XNIO-1 task-1] IqNsh-JsTGCUn8s8yI9swA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:45.076 [XNIO-1 task-1] IqNsh-JsTGCUn8s8yI9swA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.076 [XNIO-1 task-1] IqNsh-JsTGCUn8s8yI9swA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.077 [XNIO-1 task-1] IqNsh-JsTGCUn8s8yI9swA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:45.077 [XNIO-1 task-1] IqNsh-JsTGCUn8s8yI9swA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:45.079 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:73bb7017-a250-48bf-be8a-827f37a253ac +09:00:45.083 [XNIO-1 task-1] pANaE_wZSDO3ru6r8tY0Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:45.083 [XNIO-1 task-1] pANaE_wZSDO3ru6r8tY0Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.084 [XNIO-1 task-1] pANaE_wZSDO3ru6r8tY0Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.084 [XNIO-1 task-1] pANaE_wZSDO3ru6r8tY0Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:45.085 [XNIO-1 task-1] pANaE_wZSDO3ru6r8tY0Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "dd1632e2-1692-4101-92c9-97086b4d20fe", "dd1632e2-1692-4101-92c9-97086b4d20fe", refreshToken) +09:00:45.086 [XNIO-1 task-1] pANaE_wZSDO3ru6r8tY0Cw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dd1632e2-1692-4101-92c9-97086b4d20fe is not found.","severity":"ERROR"} +09:00:45.090 [XNIO-1 task-1] 5Zn_K6m8Ti6ikaCYlPpnJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.091 [XNIO-1 task-1] 5Zn_K6m8Ti6ikaCYlPpnJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.091 [XNIO-1 task-1] 5Zn_K6m8Ti6ikaCYlPpnJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.091 [XNIO-1 task-1] 5Zn_K6m8Ti6ikaCYlPpnJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.091 [XNIO-1 task-1] 5Zn_K6m8Ti6ikaCYlPpnJg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.092 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.095 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9c397ce +09:00:45.104 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c9c397ce +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:45.107 [XNIO-1 task-1] 9TcogaSjSR6sFFsyyo-cmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.107 [XNIO-1 task-1] 9TcogaSjSR6sFFsyyo-cmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.107 [XNIO-1 task-1] 9TcogaSjSR6sFFsyyo-cmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.109 [XNIO-1 task-1] 9TcogaSjSR6sFFsyyo-cmA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.110 [XNIO-1 task-1] 9TcogaSjSR6sFFsyyo-cmA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.132 [XNIO-1 task-1] o3rSYQTcRRS8BkbxpLzbsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:45.133 [XNIO-1 task-1] o3rSYQTcRRS8BkbxpLzbsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.133 [XNIO-1 task-1] o3rSYQTcRRS8BkbxpLzbsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.135 [XNIO-1 task-1] o3rSYQTcRRS8BkbxpLzbsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:45.135 [XNIO-1 task-1] o3rSYQTcRRS8BkbxpLzbsw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:45.145 [XNIO-1 task-1] xDAV2bwYSGW1ChsRshcLzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.146 [XNIO-1 task-1] xDAV2bwYSGW1ChsRshcLzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.146 [XNIO-1 task-1] xDAV2bwYSGW1ChsRshcLzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.146 [XNIO-1 task-1] xDAV2bwYSGW1ChsRshcLzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.146 [XNIO-1 task-1] xDAV2bwYSGW1ChsRshcLzw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:45.147 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.155 [XNIO-1 task-1] Wkcbk2OaTyyRxzqoYC30Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:45.155 [XNIO-1 task-1] Wkcbk2OaTyyRxzqoYC30Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.155 [XNIO-1 task-1] Wkcbk2OaTyyRxzqoYC30Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.156 [XNIO-1 task-1] Wkcbk2OaTyyRxzqoYC30Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd1632e2-1692-4101-92c9-97086b4d20fe, base path is set to: null +09:00:45.156 [XNIO-1 task-1] Wkcbk2OaTyyRxzqoYC30Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "dd1632e2-1692-4101-92c9-97086b4d20fe", "dd1632e2-1692-4101-92c9-97086b4d20fe", refreshToken) +09:00:45.156 [XNIO-1 task-1] Wkcbk2OaTyyRxzqoYC30Pw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dd1632e2-1692-4101-92c9-97086b4d20fe is not found.","severity":"ERROR"} +09:00:45.161 [XNIO-1 task-1] LhacIk7wTwmaXJAN_c2ygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.162 [XNIO-1 task-1] LhacIk7wTwmaXJAN_c2ygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.162 [XNIO-1 task-1] LhacIk7wTwmaXJAN_c2ygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.162 [XNIO-1 task-1] LhacIk7wTwmaXJAN_c2ygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.162 [XNIO-1 task-1] LhacIk7wTwmaXJAN_c2ygQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.164 [XNIO-1 task-1] LhacIk7wTwmaXJAN_c2ygQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:45.170 [XNIO-1 task-1] rzx4MNx9Soacca7IOIndrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:45.170 [XNIO-1 task-1] rzx4MNx9Soacca7IOIndrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.170 [XNIO-1 task-1] rzx4MNx9Soacca7IOIndrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.171 [XNIO-1 task-1] rzx4MNx9Soacca7IOIndrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:45.172 [XNIO-1 task-1] rzx4MNx9Soacca7IOIndrg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:45.195 [XNIO-1 task-1] QiI-UfLCSwe6x08HXjr8sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed, base path is set to: null +09:00:45.195 [XNIO-1 task-1] QiI-UfLCSwe6x08HXjr8sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.196 [XNIO-1 task-1] QiI-UfLCSwe6x08HXjr8sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.199 [XNIO-1 task-1] QiI-UfLCSwe6x08HXjr8sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed, base path is set to: null +09:00:45.199 [XNIO-1 task-1] QiI-UfLCSwe6x08HXjr8sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0988825-42a6-42f1-b854-d28e49fc5aed", "c0988825-42a6-42f1-b854-d28e49fc5aed", refreshToken) +09:00:45.211 [XNIO-1 task-1] F6n5X-MDTTu8jHPTDPsHzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4, base path is set to: null +09:00:45.211 [XNIO-1 task-1] F6n5X-MDTTu8jHPTDPsHzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.211 [XNIO-1 task-1] F6n5X-MDTTu8jHPTDPsHzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.212 [XNIO-1 task-1] F6n5X-MDTTu8jHPTDPsHzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4, base path is set to: null +09:00:45.212 [XNIO-1 task-1] F6n5X-MDTTu8jHPTDPsHzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "673435d5-dcbe-4d17-a10c-d5e1817331d4", "673435d5-dcbe-4d17-a10c-d5e1817331d4", refreshToken) +09:00:45.213 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.215 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9c397ce +09:00:45.220 [XNIO-1 task-1] 4XrcThTGQ5KZmtyIBk_xzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed, base path is set to: null +09:00:45.220 [XNIO-1 task-1] 4XrcThTGQ5KZmtyIBk_xzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.220 [XNIO-1 task-1] 4XrcThTGQ5KZmtyIBk_xzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.220 [XNIO-1 task-1] 4XrcThTGQ5KZmtyIBk_xzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed, base path is set to: null +09:00:45.221 [XNIO-1 task-1] 4XrcThTGQ5KZmtyIBk_xzw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0988825-42a6-42f1-b854-d28e49fc5aed", "c0988825-42a6-42f1-b854-d28e49fc5aed", refreshToken) +09:00:45.221 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.233 [XNIO-1 task-1] _XHUXjCnTG27m-oRd8MMhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.233 [XNIO-1 task-1] _XHUXjCnTG27m-oRd8MMhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.233 [XNIO-1 task-1] _XHUXjCnTG27m-oRd8MMhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.233 [XNIO-1 task-1] _XHUXjCnTG27m-oRd8MMhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.234 [XNIO-1 task-1] _XHUXjCnTG27m-oRd8MMhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.238 [XNIO-1 task-1] _XHUXjCnTG27m-oRd8MMhA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 673435d5-dcbe-4d17-a10c-d5e1817331d4 is not found.","severity":"ERROR"} +09:00:45.240 [XNIO-1 task-1] sr75iDqbSUqFTVq2-nDIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.241 [XNIO-1 task-1] sr75iDqbSUqFTVq2-nDIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.241 [XNIO-1 task-1] sr75iDqbSUqFTVq2-nDIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.241 [XNIO-1 task-1] sr75iDqbSUqFTVq2-nDIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.241 [XNIO-1 task-1] sr75iDqbSUqFTVq2-nDIvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.243 [XNIO-1 task-1] sr75iDqbSUqFTVq2-nDIvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0988825-42a6-42f1-b854-d28e49fc5aed is not found.","severity":"ERROR"} +09:00:45.247 [XNIO-1 task-1] XoRm5DMATh6V32D5F6FfKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4, base path is set to: null +09:00:45.247 [XNIO-1 task-1] XoRm5DMATh6V32D5F6FfKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.247 [XNIO-1 task-1] XoRm5DMATh6V32D5F6FfKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.247 [XNIO-1 task-1] XoRm5DMATh6V32D5F6FfKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/673435d5-dcbe-4d17-a10c-d5e1817331d4, base path is set to: null +09:00:45.248 [XNIO-1 task-1] XoRm5DMATh6V32D5F6FfKg DEBUG com.networknt.schema.TypeValidator debug - validate( "673435d5-dcbe-4d17-a10c-d5e1817331d4", "673435d5-dcbe-4d17-a10c-d5e1817331d4", refreshToken) +09:00:45.248 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:673435d5-dcbe-4d17-a10c-d5e1817331d4 +09:00:45.252 [XNIO-1 task-1] vqgY8qtKQW-zmE9g5m2VYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.253 [XNIO-1 task-1] vqgY8qtKQW-zmE9g5m2VYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.253 [XNIO-1 task-1] vqgY8qtKQW-zmE9g5m2VYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.253 [XNIO-1 task-1] vqgY8qtKQW-zmE9g5m2VYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.253 [XNIO-1 task-1] vqgY8qtKQW-zmE9g5m2VYA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.270 [XNIO-1 task-1] XsWNZ6p9TiiegmsvcZ0ogw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.270 [XNIO-1 task-1] XsWNZ6p9TiiegmsvcZ0ogw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.270 [XNIO-1 task-1] XsWNZ6p9TiiegmsvcZ0ogw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.271 [XNIO-1 task-1] XsWNZ6p9TiiegmsvcZ0ogw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.271 [XNIO-1 task-1] XsWNZ6p9TiiegmsvcZ0ogw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c0988825-42a6-42f1-b854-d28e49fc5aed +09:00:45.277 [XNIO-1 task-1] XsWNZ6p9TiiegmsvcZ0ogw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0988825-42a6-42f1-b854-d28e49fc5aed is not found.","severity":"ERROR"} +09:00:45.281 [XNIO-1 task-1] Z_1AwUXLQ0mD-uMCAXIkeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6329a6b3-1d03-4065-ab9a-928d3aa8672b +09:00:45.281 [XNIO-1 task-1] Z_1AwUXLQ0mD-uMCAXIkeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.282 [XNIO-1 task-1] Z_1AwUXLQ0mD-uMCAXIkeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.282 [XNIO-1 task-1] Z_1AwUXLQ0mD-uMCAXIkeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6329a6b3-1d03-4065-ab9a-928d3aa8672b +09:00:45.282 [XNIO-1 task-1] Z_1AwUXLQ0mD-uMCAXIkeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6329a6b3-1d03-4065-ab9a-928d3aa8672b +09:00:45.285 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7be29983 +09:00:45.300 [XNIO-1 task-1] DNOHJAM8RqSvpvJNMyu0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.300 [XNIO-1 task-1] DNOHJAM8RqSvpvJNMyu0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.300 [XNIO-1 task-1] DNOHJAM8RqSvpvJNMyu0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.301 [XNIO-1 task-1] DNOHJAM8RqSvpvJNMyu0Ag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.310 [XNIO-1 task-1] x0lSXzNbTKSL9uNu_qirTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.310 [XNIO-1 task-1] x0lSXzNbTKSL9uNu_qirTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.310 [XNIO-1 task-1] x0lSXzNbTKSL9uNu_qirTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.310 [XNIO-1 task-1] x0lSXzNbTKSL9uNu_qirTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.311 [XNIO-1 task-1] x0lSXzNbTKSL9uNu_qirTw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:45.311 [XNIO-1 task-1] x0lSXzNbTKSL9uNu_qirTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:45.315 [XNIO-1 task-1] 8H3J8ztYRACtPQHwOMxSjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.315 [XNIO-1 task-1] 8H3J8ztYRACtPQHwOMxSjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.315 [XNIO-1 task-1] 8H3J8ztYRACtPQHwOMxSjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.316 [XNIO-1 task-1] 8H3J8ztYRACtPQHwOMxSjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.323 [XNIO-1 task-1] SXQW6xL7RaKXowBkDPTTEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.324 [XNIO-1 task-1] SXQW6xL7RaKXowBkDPTTEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.324 [XNIO-1 task-1] SXQW6xL7RaKXowBkDPTTEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.325 [XNIO-1 task-1] SXQW6xL7RaKXowBkDPTTEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.325 [XNIO-1 task-1] SXQW6xL7RaKXowBkDPTTEw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.334 [XNIO-1 task-1] wJVz9RHiQv6oL7_8CpY6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.334 [XNIO-1 task-1] wJVz9RHiQv6oL7_8CpY6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.335 [XNIO-1 task-1] wJVz9RHiQv6oL7_8CpY6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.335 [XNIO-1 task-1] wJVz9RHiQv6oL7_8CpY6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.336 [XNIO-1 task-1] wJVz9RHiQv6oL7_8CpY6Qg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.347 [XNIO-1 task-1] C80lwOqnQC6S5bkwqGy2Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034, base path is set to: null +09:00:45.348 [XNIO-1 task-1] C80lwOqnQC6S5bkwqGy2Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.348 [XNIO-1 task-1] C80lwOqnQC6S5bkwqGy2Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.348 [XNIO-1 task-1] C80lwOqnQC6S5bkwqGy2Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034, base path is set to: null +09:00:45.351 [XNIO-1 task-1] C80lwOqnQC6S5bkwqGy2Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "17eebe7b-aefc-49cc-85d4-ab2624da1034", "17eebe7b-aefc-49cc-85d4-ab2624da1034", refreshToken) +09:00:45.364 [XNIO-1 task-1] VlDguijXT_-G0KX_CsKIhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.364 [XNIO-1 task-1] VlDguijXT_-G0KX_CsKIhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.364 [XNIO-1 task-1] VlDguijXT_-G0KX_CsKIhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.364 [XNIO-1 task-1] VlDguijXT_-G0KX_CsKIhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.365 [XNIO-1 task-1] VlDguijXT_-G0KX_CsKIhw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:45.366 [XNIO-1 task-1] VlDguijXT_-G0KX_CsKIhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:45.370 [XNIO-1 task-1] 1os3IUWZT6aEFz48_e_TLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.370 [XNIO-1 task-1] 1os3IUWZT6aEFz48_e_TLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.370 [XNIO-1 task-1] 1os3IUWZT6aEFz48_e_TLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.371 [XNIO-1 task-1] 1os3IUWZT6aEFz48_e_TLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.382 [XNIO-1 task-1] AxWBpsC-RNyjqNA49JRd-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.383 [XNIO-1 task-1] AxWBpsC-RNyjqNA49JRd-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.383 [XNIO-1 task-1] AxWBpsC-RNyjqNA49JRd-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.386 [XNIO-1 task-1] AxWBpsC-RNyjqNA49JRd-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.388 [XNIO-1 task-1] AxWBpsC-RNyjqNA49JRd-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.400 [XNIO-1 task-1] S-fMjOMvS9C5To8LoPbPiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034 +09:00:45.401 [XNIO-1 task-1] S-fMjOMvS9C5To8LoPbPiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.401 [XNIO-1 task-1] S-fMjOMvS9C5To8LoPbPiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.401 [XNIO-1 task-1] S-fMjOMvS9C5To8LoPbPiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034 +09:00:45.401 [XNIO-1 task-1] S-fMjOMvS9C5To8LoPbPiw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 17eebe7b-aefc-49cc-85d4-ab2624da1034 +09:00:45.410 [XNIO-1 task-1] W5A0atHwSAemeDTchdSEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.411 [XNIO-1 task-1] W5A0atHwSAemeDTchdSEgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.412 [XNIO-1 task-1] W5A0atHwSAemeDTchdSEgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.412 [XNIO-1 task-1] W5A0atHwSAemeDTchdSEgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.412 [XNIO-1 task-1] W5A0atHwSAemeDTchdSEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.413 [XNIO-1 task-1] W5A0atHwSAemeDTchdSEgg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.422 [XNIO-1 task-1] g4IfXVlDTF2D0CvZ5FIifw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034, base path is set to: null +09:00:45.422 [XNIO-1 task-1] g4IfXVlDTF2D0CvZ5FIifw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.422 [XNIO-1 task-1] g4IfXVlDTF2D0CvZ5FIifw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.423 [XNIO-1 task-1] g4IfXVlDTF2D0CvZ5FIifw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034, base path is set to: null +09:00:45.423 [XNIO-1 task-1] g4IfXVlDTF2D0CvZ5FIifw DEBUG com.networknt.schema.TypeValidator debug - validate( "17eebe7b-aefc-49cc-85d4-ab2624da1034", "17eebe7b-aefc-49cc-85d4-ab2624da1034", refreshToken) +09:00:45.433 [XNIO-1 task-1] UG4McEQySLitFdHpNC8dPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.434 [XNIO-1 task-1] UG4McEQySLitFdHpNC8dPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.434 [XNIO-1 task-1] UG4McEQySLitFdHpNC8dPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.434 [XNIO-1 task-1] UG4McEQySLitFdHpNC8dPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.435 [XNIO-1 task-1] UG4McEQySLitFdHpNC8dPw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.443 [XNIO-1 task-1] kltfBWyoRHSFQT4lVOaRpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.443 [XNIO-1 task-1] kltfBWyoRHSFQT4lVOaRpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.443 [XNIO-1 task-1] kltfBWyoRHSFQT4lVOaRpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.443 [XNIO-1 task-1] kltfBWyoRHSFQT4lVOaRpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.444 [XNIO-1 task-1] kltfBWyoRHSFQT4lVOaRpw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.446 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c9c397ce +09:00:45.453 [XNIO-1 task-1] X2-U813lTHq99C4QAYLPSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.454 [XNIO-1 task-1] X2-U813lTHq99C4QAYLPSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.454 [XNIO-1 task-1] X2-U813lTHq99C4QAYLPSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.454 [XNIO-1 task-1] X2-U813lTHq99C4QAYLPSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.455 [XNIO-1 task-1] X2-U813lTHq99C4QAYLPSA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.462 [XNIO-1 task-1] PzRSEO36T-W7IYesm9Du-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.462 [XNIO-1 task-1] PzRSEO36T-W7IYesm9Du-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.462 [XNIO-1 task-1] PzRSEO36T-W7IYesm9Du-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.462 [XNIO-1 task-1] PzRSEO36T-W7IYesm9Du-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.463 [XNIO-1 task-1] PzRSEO36T-W7IYesm9Du-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.465 [XNIO-1 task-1] PzRSEO36T-W7IYesm9Du-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:45.469 [XNIO-1 task-1] NzpUZNv0TLOETIoqMuuVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.469 [XNIO-1 task-1] NzpUZNv0TLOETIoqMuuVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.469 [XNIO-1 task-1] NzpUZNv0TLOETIoqMuuVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.470 [XNIO-1 task-1] NzpUZNv0TLOETIoqMuuVfg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.486 [XNIO-1 task-1] g3rjq06SSJWsuYK9aVzTqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034, base path is set to: null +09:00:45.488 [XNIO-1 task-1] g3rjq06SSJWsuYK9aVzTqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.488 [XNIO-1 task-1] g3rjq06SSJWsuYK9aVzTqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.492 [XNIO-1 task-1] g3rjq06SSJWsuYK9aVzTqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/17eebe7b-aefc-49cc-85d4-ab2624da1034, base path is set to: null +09:00:45.493 [XNIO-1 task-1] g3rjq06SSJWsuYK9aVzTqA DEBUG com.networknt.schema.TypeValidator debug - validate( "17eebe7b-aefc-49cc-85d4-ab2624da1034", "17eebe7b-aefc-49cc-85d4-ab2624da1034", refreshToken) +09:00:45.499 [XNIO-1 task-1] g3rjq06SSJWsuYK9aVzTqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 17eebe7b-aefc-49cc-85d4-ab2624da1034 is not found.","severity":"ERROR"} +09:00:45.502 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9c397ce +09:00:45.504 [XNIO-1 task-1] 4Fga4rqXS0SzvUwfXuGcOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.504 [XNIO-1 task-1] 4Fga4rqXS0SzvUwfXuGcOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.504 [XNIO-1 task-1] 4Fga4rqXS0SzvUwfXuGcOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.505 [XNIO-1 task-1] 4Fga4rqXS0SzvUwfXuGcOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.506 [XNIO-1 task-1] 4Fga4rqXS0SzvUwfXuGcOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.514 [XNIO-1 task-1] wnTpqMXsTFuNYjH1sDPeOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.514 [XNIO-1 task-1] wnTpqMXsTFuNYjH1sDPeOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.514 [XNIO-1 task-1] wnTpqMXsTFuNYjH1sDPeOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.514 [XNIO-1 task-1] wnTpqMXsTFuNYjH1sDPeOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.515 [XNIO-1 task-1] wnTpqMXsTFuNYjH1sDPeOw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:45.515 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.519 [XNIO-1 task-1] EOyP8FuXQYyZkQh7XYnDJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.519 [XNIO-1 task-1] EOyP8FuXQYyZkQh7XYnDJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.520 [XNIO-1 task-1] EOyP8FuXQYyZkQh7XYnDJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.520 [XNIO-1 task-1] EOyP8FuXQYyZkQh7XYnDJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.520 [XNIO-1 task-1] EOyP8FuXQYyZkQh7XYnDJg DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:45.522 [XNIO-1 task-1] EOyP8FuXQYyZkQh7XYnDJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:45.533 [XNIO-1 task-1] 3u8QljrMTVOhvmlSKmYaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.534 [XNIO-1 task-1] 3u8QljrMTVOhvmlSKmYaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.534 [XNIO-1 task-1] 3u8QljrMTVOhvmlSKmYaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.534 [XNIO-1 task-1] 3u8QljrMTVOhvmlSKmYaUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.534 [XNIO-1 task-1] 3u8QljrMTVOhvmlSKmYaUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.538 [XNIO-1 task-1] 3u8QljrMTVOhvmlSKmYaUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:45.543 [XNIO-1 task-1] Kg6FqCuESYii8N7bqFAl5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.543 [XNIO-1 task-1] Kg6FqCuESYii8N7bqFAl5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.544 [XNIO-1 task-1] Kg6FqCuESYii8N7bqFAl5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.545 [XNIO-1 task-1] Kg6FqCuESYii8N7bqFAl5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.565 [XNIO-1 task-1] l5wcqrKnTUCn6FararQiWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.565 [XNIO-1 task-1] l5wcqrKnTUCn6FararQiWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.567 [XNIO-1 task-1] l5wcqrKnTUCn6FararQiWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.568 [XNIO-1 task-1] l5wcqrKnTUCn6FararQiWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.568 [XNIO-1 task-1] l5wcqrKnTUCn6FararQiWg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.590 [XNIO-1 task-1] CZl8uZdAQQe2oTOnG0bv_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.590 [XNIO-1 task-1] CZl8uZdAQQe2oTOnG0bv_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.590 [XNIO-1 task-1] CZl8uZdAQQe2oTOnG0bv_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.591 [XNIO-1 task-1] CZl8uZdAQQe2oTOnG0bv_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.602 [XNIO-1 task-1] yx1rD_aMQcWHP5ufqm5L7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.603 [XNIO-1 task-1] yx1rD_aMQcWHP5ufqm5L7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.603 [XNIO-1 task-1] yx1rD_aMQcWHP5ufqm5L7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.603 [XNIO-1 task-1] yx1rD_aMQcWHP5ufqm5L7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.604 [XNIO-1 task-1] yx1rD_aMQcWHP5ufqm5L7A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.617 [XNIO-1 task-1] i1T-5AD_R0K4rfvJ6OaNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d25d98d2-8681-4d4e-8f95-0fb08ef36603 +09:00:45.617 [XNIO-1 task-1] i1T-5AD_R0K4rfvJ6OaNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.617 [XNIO-1 task-1] i1T-5AD_R0K4rfvJ6OaNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.618 [XNIO-1 task-1] i1T-5AD_R0K4rfvJ6OaNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d25d98d2-8681-4d4e-8f95-0fb08ef36603 +09:00:45.618 [XNIO-1 task-1] i1T-5AD_R0K4rfvJ6OaNSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d25d98d2-8681-4d4e-8f95-0fb08ef36603 +09:00:45.630 [XNIO-1 task-1] 3aOwOhsSQImmgfFp_CfRjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.631 [XNIO-1 task-1] 3aOwOhsSQImmgfFp_CfRjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.631 [XNIO-1 task-1] 3aOwOhsSQImmgfFp_CfRjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.631 [XNIO-1 task-1] 3aOwOhsSQImmgfFp_CfRjw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.631 [XNIO-1 task-1] 3aOwOhsSQImmgfFp_CfRjw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.640 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cea1078a-5ab8-4ab4-8aa0-038ed5602002 +09:00:45.640 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:36f9c114 +09:00:45.643 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:36f9c114 +09:00:45.654 [XNIO-1 task-1] GJz3IHOvRYG0Jp1PAn7h7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.654 [XNIO-1 task-1] GJz3IHOvRYG0Jp1PAn7h7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.654 [XNIO-1 task-1] GJz3IHOvRYG0Jp1PAn7h7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.654 [XNIO-1 task-1] GJz3IHOvRYG0Jp1PAn7h7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.655 [XNIO-1 task-1] GJz3IHOvRYG0Jp1PAn7h7g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.659 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:36f9c114 +09:00:45.659 [XNIO-1 task-1] eXiBINY5RaC6flTAndW8-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.659 [XNIO-1 task-1] eXiBINY5RaC6flTAndW8-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.660 [XNIO-1 task-1] eXiBINY5RaC6flTAndW8-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.660 [XNIO-1 task-1] eXiBINY5RaC6flTAndW8-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.660 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:36f9c114 +09:00:45.661 [XNIO-1 task-1] eXiBINY5RaC6flTAndW8-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:45.673 [XNIO-1 task-1] PN7qK3jmQK6xyp_2jexeOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.673 [XNIO-1 task-1] PN7qK3jmQK6xyp_2jexeOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.673 [XNIO-1 task-1] PN7qK3jmQK6xyp_2jexeOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.674 [XNIO-1 task-1] PN7qK3jmQK6xyp_2jexeOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.686 [XNIO-1 task-1] iIpmwfpZSkCPidr_RvN4Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.687 [XNIO-1 task-1] iIpmwfpZSkCPidr_RvN4Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.687 [XNIO-1 task-1] iIpmwfpZSkCPidr_RvN4Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.687 [XNIO-1 task-1] iIpmwfpZSkCPidr_RvN4Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.687 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c9c397ce +09:00:45.687 [XNIO-1 task-1] iIpmwfpZSkCPidr_RvN4Bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.692 [XNIO-1 task-1] gm_gigQDQrSGQWyNvKa78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/73bb7017-a250-48bf-be8a-827f37a253ac, base path is set to: null +09:00:45.692 [XNIO-1 task-1] gm_gigQDQrSGQWyNvKa78Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.693 [XNIO-1 task-1] gm_gigQDQrSGQWyNvKa78Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.693 [XNIO-1 task-1] gm_gigQDQrSGQWyNvKa78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/73bb7017-a250-48bf-be8a-827f37a253ac, base path is set to: null +09:00:45.693 [XNIO-1 task-1] gm_gigQDQrSGQWyNvKa78Q DEBUG com.networknt.schema.TypeValidator debug - validate( "73bb7017-a250-48bf-be8a-827f37a253ac", "73bb7017-a250-48bf-be8a-827f37a253ac", refreshToken) +09:00:45.698 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:73bb7017-a250-48bf-be8a-827f37a253ac +09:00:45.708 [XNIO-1 task-1] k-bBnF-zQXKgp9a90lOCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.708 [XNIO-1 task-1] k-bBnF-zQXKgp9a90lOCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.708 [XNIO-1 task-1] k-bBnF-zQXKgp9a90lOCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.708 [XNIO-1 task-1] k-bBnF-zQXKgp9a90lOCOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.731 [XNIO-1 task-1] -17NKGPNQdmdIfuREzOdmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.732 [XNIO-1 task-1] -17NKGPNQdmdIfuREzOdmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.732 [XNIO-1 task-1] -17NKGPNQdmdIfuREzOdmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.737 [XNIO-1 task-1] -17NKGPNQdmdIfuREzOdmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.738 [XNIO-1 task-1] -17NKGPNQdmdIfuREzOdmw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.749 [XNIO-1 task-1] dsP9uIx3RQqSh2uU6Fmmmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.749 [XNIO-1 task-1] dsP9uIx3RQqSh2uU6Fmmmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.749 [XNIO-1 task-1] dsP9uIx3RQqSh2uU6Fmmmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.750 [XNIO-1 task-1] dsP9uIx3RQqSh2uU6Fmmmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:45.750 [XNIO-1 task-1] dsP9uIx3RQqSh2uU6Fmmmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:45.755 [XNIO-1 task-1] s94XlzAnSwOD_b_W0VmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/73bb7017-a250-48bf-be8a-827f37a253ac, base path is set to: null +09:00:45.756 [XNIO-1 task-1] s94XlzAnSwOD_b_W0VmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.756 [XNIO-1 task-1] s94XlzAnSwOD_b_W0VmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.756 [XNIO-1 task-1] s94XlzAnSwOD_b_W0VmiGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/73bb7017-a250-48bf-be8a-827f37a253ac, base path is set to: null +09:00:45.757 [XNIO-1 task-1] s94XlzAnSwOD_b_W0VmiGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "73bb7017-a250-48bf-be8a-827f37a253ac", "73bb7017-a250-48bf-be8a-827f37a253ac", refreshToken) +09:00:45.757 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:73bb7017-a250-48bf-be8a-827f37a253ac +09:00:45.763 [XNIO-1 task-1] AByNuLbXQPKD8_iCIF_6IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.764 [XNIO-1 task-1] AByNuLbXQPKD8_iCIF_6IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.764 [XNIO-1 task-1] AByNuLbXQPKD8_iCIF_6IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.764 [XNIO-1 task-1] AByNuLbXQPKD8_iCIF_6IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:45.765 [XNIO-1 task-1] AByNuLbXQPKD8_iCIF_6IA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:45.770 [XNIO-1 task-1] AByNuLbXQPKD8_iCIF_6IA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:45.776 [XNIO-1 task-1] vFomJbObQ_Squ0l0hi9ACw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/73bb7017-a250-48bf-be8a-827f37a253ac +09:00:45.776 [XNIO-1 task-1] vFomJbObQ_Squ0l0hi9ACw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.776 [XNIO-1 task-1] vFomJbObQ_Squ0l0hi9ACw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.776 [XNIO-1 task-1] vFomJbObQ_Squ0l0hi9ACw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/73bb7017-a250-48bf-be8a-827f37a253ac +09:00:45.785 [XNIO-1 task-1] vFomJbObQ_Squ0l0hi9ACw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 73bb7017-a250-48bf-be8a-827f37a253ac +09:00:45.786 [XNIO-1 task-1] vFomJbObQ_Squ0l0hi9ACw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 73bb7017-a250-48bf-be8a-827f37a253ac is not found.","severity":"ERROR"} +09:00:45.792 [XNIO-1 task-1] nPOjCOG9TrKnbpN83VgPHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e682e8ed-ef3f-4f2c-a5d9-5887a6ee67f9 +09:00:45.792 [XNIO-1 task-1] nPOjCOG9TrKnbpN83VgPHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.792 [XNIO-1 task-1] nPOjCOG9TrKnbpN83VgPHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.793 [XNIO-1 task-1] nPOjCOG9TrKnbpN83VgPHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e682e8ed-ef3f-4f2c-a5d9-5887a6ee67f9 +09:00:45.793 [XNIO-1 task-1] nPOjCOG9TrKnbpN83VgPHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e682e8ed-ef3f-4f2c-a5d9-5887a6ee67f9 +09:00:45.808 [XNIO-1 task-1] ZOR9B7MJRdO7fPvv5grmeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.808 [XNIO-1 task-1] ZOR9B7MJRdO7fPvv5grmeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.808 [XNIO-1 task-1] ZOR9B7MJRdO7fPvv5grmeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.808 [XNIO-1 task-1] ZOR9B7MJRdO7fPvv5grmeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.809 [XNIO-1 task-1] ZOR9B7MJRdO7fPvv5grmeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.812 [XNIO-1 task-1] ZOR9B7MJRdO7fPvv5grmeg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:45.815 [XNIO-1 task-1] 1ASt9gwqSTyYKPw1FaAieA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.816 [XNIO-1 task-1] 1ASt9gwqSTyYKPw1FaAieA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.816 [XNIO-1 task-1] 1ASt9gwqSTyYKPw1FaAieA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.816 [XNIO-1 task-1] 1ASt9gwqSTyYKPw1FaAieA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.817 [XNIO-1 task-1] 1ASt9gwqSTyYKPw1FaAieA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.818 [XNIO-1 task-1] 1ASt9gwqSTyYKPw1FaAieA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:45.821 [XNIO-1 task-1] B16wQJ-rTsWNw_e-HDX9_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.821 [XNIO-1 task-1] B16wQJ-rTsWNw_e-HDX9_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.823 [XNIO-1 task-1] B16wQJ-rTsWNw_e-HDX9_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.823 [XNIO-1 task-1] B16wQJ-rTsWNw_e-HDX9_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.833 [XNIO-1 task-1] dXM0FN0oSamGmct5AKu_Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.833 [XNIO-1 task-1] dXM0FN0oSamGmct5AKu_Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.833 [XNIO-1 task-1] dXM0FN0oSamGmct5AKu_Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.833 [XNIO-1 task-1] dXM0FN0oSamGmct5AKu_Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.834 [XNIO-1 task-1] dXM0FN0oSamGmct5AKu_Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:45.834 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.839 [XNIO-1 task-1] WzTQQX2OQUSM0rrrrlU5oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.840 [XNIO-1 task-1] WzTQQX2OQUSM0rrrrlU5oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.840 [XNIO-1 task-1] WzTQQX2OQUSM0rrrrlU5oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.841 [XNIO-1 task-1] WzTQQX2OQUSM0rrrrlU5oA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.842 [XNIO-1 task-1] WzTQQX2OQUSM0rrrrlU5oA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.857 [XNIO-1 task-1] U6mF6lXOQb-1gp9POygwVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.862 [XNIO-1 task-1] U6mF6lXOQb-1gp9POygwVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.862 [XNIO-1 task-1] U6mF6lXOQb-1gp9POygwVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.863 [XNIO-1 task-1] U6mF6lXOQb-1gp9POygwVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.870 [XNIO-1 task-1] 1VEcugyeRS286HKxdGvPzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.876 [XNIO-1 task-1] 1VEcugyeRS286HKxdGvPzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.876 [XNIO-1 task-1] 1VEcugyeRS286HKxdGvPzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.876 [XNIO-1 task-1] 1VEcugyeRS286HKxdGvPzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.876 [XNIO-1 task-1] 1VEcugyeRS286HKxdGvPzA DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:45.877 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.887 [XNIO-1 task-1] B9qppnBMQLaDC1gEiZGqtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.887 [XNIO-1 task-1] B9qppnBMQLaDC1gEiZGqtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.887 [XNIO-1 task-1] B9qppnBMQLaDC1gEiZGqtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.887 [XNIO-1 task-1] B9qppnBMQLaDC1gEiZGqtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.888 [XNIO-1 task-1] B9qppnBMQLaDC1gEiZGqtw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:45.888 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.895 [XNIO-1 task-1] HfCUwYyBRReKyOyrjyd44w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.896 [XNIO-1 task-1] HfCUwYyBRReKyOyrjyd44w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.896 [XNIO-1 task-1] HfCUwYyBRReKyOyrjyd44w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.897 [XNIO-1 task-1] HfCUwYyBRReKyOyrjyd44w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.897 [XNIO-1 task-1] HfCUwYyBRReKyOyrjyd44w DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:45.898 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.903 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:efd62f11-46f2-41f1-ac4c-51fffd818feb +09:00:45.904 [XNIO-1 task-1] GCwOLr9wQPezbYvPoH3dRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.904 [XNIO-1 task-1] GCwOLr9wQPezbYvPoH3dRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.904 [XNIO-1 task-1] GCwOLr9wQPezbYvPoH3dRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.904 [XNIO-1 task-1] GCwOLr9wQPezbYvPoH3dRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:45.905 [XNIO-1 task-1] GCwOLr9wQPezbYvPoH3dRg DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:45.907 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.914 [XNIO-1 task-1] 6eusOIetS82EEcWWxTvTAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.914 [XNIO-1 task-1] 6eusOIetS82EEcWWxTvTAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.915 [XNIO-1 task-1] 6eusOIetS82EEcWWxTvTAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.915 [XNIO-1 task-1] 6eusOIetS82EEcWWxTvTAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.915 [XNIO-1 task-1] 6eusOIetS82EEcWWxTvTAw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.922 [XNIO-1 task-1] rRi8t8F7S1a1pgAa8A3REg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d4c2d225-36bf-45f4-a555-3f62781faef9 +09:00:45.922 [XNIO-1 task-1] rRi8t8F7S1a1pgAa8A3REg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.923 [XNIO-1 task-1] rRi8t8F7S1a1pgAa8A3REg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.923 [XNIO-1 task-1] rRi8t8F7S1a1pgAa8A3REg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d4c2d225-36bf-45f4-a555-3f62781faef9 +09:00:45.924 [XNIO-1 task-1] rRi8t8F7S1a1pgAa8A3REg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d4c2d225-36bf-45f4-a555-3f62781faef9 +09:00:45.939 [XNIO-1 task-1] _g1QFI-3RCq8yn0BDwq2tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.939 [XNIO-1 task-1] _g1QFI-3RCq8yn0BDwq2tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.939 [XNIO-1 task-1] _g1QFI-3RCq8yn0BDwq2tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:45.940 [XNIO-1 task-1] _g1QFI-3RCq8yn0BDwq2tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.940 [XNIO-1 task-1] _g1QFI-3RCq8yn0BDwq2tQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:45.950 [XNIO-1 task-1] swv2I2OWSbm5inl4e7czGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.950 [XNIO-1 task-1] swv2I2OWSbm5inl4e7czGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.950 [XNIO-1 task-1] swv2I2OWSbm5inl4e7czGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.950 [XNIO-1 task-1] swv2I2OWSbm5inl4e7czGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.951 [XNIO-1 task-1] swv2I2OWSbm5inl4e7czGw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:45.954 [XNIO-1 task-1] swv2I2OWSbm5inl4e7czGw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:45.958 [XNIO-1 task-1] 55B7cw4dTk6ksdCEJjGt6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:45.958 [XNIO-1 task-1] 55B7cw4dTk6ksdCEJjGt6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.958 [XNIO-1 task-1] 55B7cw4dTk6ksdCEJjGt6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.959 [XNIO-1 task-1] 55B7cw4dTk6ksdCEJjGt6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:45.959 [XNIO-1 task-1] 55B7cw4dTk6ksdCEJjGt6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:45.975 [XNIO-1 task-1] mhbyBor8TmO7i7TODhHbOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:45.975 [XNIO-1 task-1] mhbyBor8TmO7i7TODhHbOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.975 [XNIO-1 task-1] mhbyBor8TmO7i7TODhHbOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.975 [XNIO-1 task-1] mhbyBor8TmO7i7TODhHbOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:45.976 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:efd62f11-46f2-41f1-ac4c-51fffd818feb +09:00:45.981 [XNIO-1 task-1] mhbyBor8TmO7i7TODhHbOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a4806a3-ed50-4741-b81c-64b26ae10fcb is not found.","severity":"ERROR"} +09:00:45.989 [XNIO-1 task-1] f5vqabihSwK1KEeiFwidLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:45.989 [XNIO-1 task-1] f5vqabihSwK1KEeiFwidLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:45.989 [XNIO-1 task-1] f5vqabihSwK1KEeiFwidLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:45.990 [XNIO-1 task-1] f5vqabihSwK1KEeiFwidLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:45.990 [XNIO-1 task-1] f5vqabihSwK1KEeiFwidLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:45.994 [XNIO-1 task-1] nXy2RbElTXmvbGx8-8oGbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb, base path is set to: null +09:00:45.994 [XNIO-1 task-1] nXy2RbElTXmvbGx8-8oGbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:45.994 [XNIO-1 task-1] nXy2RbElTXmvbGx8-8oGbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:45.994 [XNIO-1 task-1] nXy2RbElTXmvbGx8-8oGbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb, base path is set to: null +09:00:45.996 [XNIO-1 task-1] nXy2RbElTXmvbGx8-8oGbw DEBUG com.networknt.schema.TypeValidator debug - validate( "9a4806a3-ed50-4741-b81c-64b26ae10fcb", "9a4806a3-ed50-4741-b81c-64b26ae10fcb", refreshToken) +09:00:45.996 [XNIO-1 task-1] nXy2RbElTXmvbGx8-8oGbw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a4806a3-ed50-4741-b81c-64b26ae10fcb is not found.","severity":"ERROR"} +09:00:45.998 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9527ca44-a3ec-4681-b6e5-78b9e48065eb +09:00:46.000 [XNIO-1 task-1] aZhkCPLMRGysNUkqC6jNNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:46.000 [XNIO-1 task-1] aZhkCPLMRGysNUkqC6jNNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.000 [XNIO-1 task-1] aZhkCPLMRGysNUkqC6jNNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.001 [XNIO-1 task-1] aZhkCPLMRGysNUkqC6jNNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:46.003 [XNIO-1 task-1] aZhkCPLMRGysNUkqC6jNNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:46.007 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8257c3b8 +09:00:46.016 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be40470f +09:00:46.018 [XNIO-1 task-1] 1LgCsY3vRwuhvknMpcLb7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb, base path is set to: null +09:00:46.018 [XNIO-1 task-1] 1LgCsY3vRwuhvknMpcLb7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.018 [XNIO-1 task-1] 1LgCsY3vRwuhvknMpcLb7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.018 [XNIO-1 task-1] 1LgCsY3vRwuhvknMpcLb7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb, base path is set to: null +09:00:46.019 [XNIO-1 task-1] 1LgCsY3vRwuhvknMpcLb7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9a4806a3-ed50-4741-b81c-64b26ae10fcb", "9a4806a3-ed50-4741-b81c-64b26ae10fcb", refreshToken) +09:00:46.019 [XNIO-1 task-1] 1LgCsY3vRwuhvknMpcLb7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a4806a3-ed50-4741-b81c-64b26ae10fcb is not found.","severity":"ERROR"} +09:00:46.022 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be40470f +09:00:46.025 [XNIO-1 task-1] EPm9xgrsR4WY7-amn3zhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.025 [XNIO-1 task-1] EPm9xgrsR4WY7-amn3zhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.026 [XNIO-1 task-1] EPm9xgrsR4WY7-amn3zhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.028 [XNIO-1 task-1] EPm9xgrsR4WY7-amn3zhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.029 [XNIO-1 task-1] EPm9xgrsR4WY7-amn3zhqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.035 [XNIO-1 task-1] zCzgnAKlTfKrGbjMNeX5Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152, base path is set to: null +09:00:46.035 [XNIO-1 task-1] zCzgnAKlTfKrGbjMNeX5Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.035 [XNIO-1 task-1] zCzgnAKlTfKrGbjMNeX5Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.035 [XNIO-1 task-1] zCzgnAKlTfKrGbjMNeX5Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152, base path is set to: null +09:00:46.037 [XNIO-1 task-1] zCzgnAKlTfKrGbjMNeX5Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "785383f9-a43f-4ca3-8e24-1689a475b152", "785383f9-a43f-4ca3-8e24-1689a475b152", refreshToken) +09:00:46.040 [XNIO-1 task-1] zCzgnAKlTfKrGbjMNeX5Nw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 785383f9-a43f-4ca3-8e24-1689a475b152 is not found.","severity":"ERROR"} +09:00:46.043 [XNIO-1 task-1] Ou8FDxSATcKsht5k6vvszw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9527ca44-a3ec-4681-b6e5-78b9e48065eb +09:00:46.043 [XNIO-1 task-1] Ou8FDxSATcKsht5k6vvszw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.043 [XNIO-1 task-1] Ou8FDxSATcKsht5k6vvszw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.044 [XNIO-1 task-1] Ou8FDxSATcKsht5k6vvszw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9527ca44-a3ec-4681-b6e5-78b9e48065eb +09:00:46.044 [XNIO-1 task-1] Ou8FDxSATcKsht5k6vvszw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9527ca44-a3ec-4681-b6e5-78b9e48065eb +09:00:46.044 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:be40470f +09:00:46.046 [XNIO-1 task-1] Ou8FDxSATcKsht5k6vvszw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9527ca44-a3ec-4681-b6e5-78b9e48065eb is not found.","severity":"ERROR"} +09:00:46.052 [XNIO-1 task-1] dCchbpSnQ_yQbEQh2tC-tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:46.053 [XNIO-1 task-1] dCchbpSnQ_yQbEQh2tC-tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.053 [XNIO-1 task-1] dCchbpSnQ_yQbEQh2tC-tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.056 [XNIO-1 task-1] dCchbpSnQ_yQbEQh2tC-tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:46.057 [XNIO-1 task-1] dCchbpSnQ_yQbEQh2tC-tw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:46.058 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9d4c0af5-590b-4f00-b829-7ffbf802163a +09:00:46.066 [XNIO-1 task-1] MA75x5X2S3-iD2bih00WJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.066 [XNIO-1 task-1] MA75x5X2S3-iD2bih00WJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.066 [XNIO-1 task-1] MA75x5X2S3-iD2bih00WJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.067 [XNIO-1 task-1] MA75x5X2S3-iD2bih00WJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.067 [XNIO-1 task-1] MA75x5X2S3-iD2bih00WJA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.075 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be40470f +09:00:46.081 [XNIO-1 task-1] zbZ-jOFMTt2BsIPlejoWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.082 [XNIO-1 task-1] zbZ-jOFMTt2BsIPlejoWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.082 [XNIO-1 task-1] zbZ-jOFMTt2BsIPlejoWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.082 [XNIO-1 task-1] zbZ-jOFMTt2BsIPlejoWJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.082 [XNIO-1 task-1] zbZ-jOFMTt2BsIPlejoWJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.084 [XNIO-1 task-1] zbZ-jOFMTt2BsIPlejoWJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:46.088 [XNIO-1 task-1] n-XZ3HknQwegsNcJ7jmjJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.090 [XNIO-1 task-1] n-XZ3HknQwegsNcJ7jmjJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.090 [XNIO-1 task-1] n-XZ3HknQwegsNcJ7jmjJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.090 [XNIO-1 task-1] n-XZ3HknQwegsNcJ7jmjJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.090 [XNIO-1 task-1] n-XZ3HknQwegsNcJ7jmjJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.093 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.097 [XNIO-1 task-1] n-XZ3HknQwegsNcJ7jmjJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:46.097 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f0ed3599-acd8-4e63-940b-f8b45da39d63 +09:00:46.105 [XNIO-1 task-1] ppgvVaABSL27YoBWdYKbmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.105 [XNIO-1 task-1] ppgvVaABSL27YoBWdYKbmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.105 [XNIO-1 task-1] ppgvVaABSL27YoBWdYKbmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.105 [XNIO-1 task-1] ppgvVaABSL27YoBWdYKbmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.106 [XNIO-1 task-1] ppgvVaABSL27YoBWdYKbmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.108 [XNIO-1 task-1] ppgvVaABSL27YoBWdYKbmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:46.110 [XNIO-1 task-1] u005PHdeQRaxcftFugodnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.110 [XNIO-1 task-1] u005PHdeQRaxcftFugodnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.111 [XNIO-1 task-1] u005PHdeQRaxcftFugodnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.111 [XNIO-1 task-1] u005PHdeQRaxcftFugodnw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.158 [XNIO-1 task-1] XdPkSE9jRTORxvD-Elqk4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.158 [XNIO-1 task-1] XdPkSE9jRTORxvD-Elqk4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.158 [XNIO-1 task-1] XdPkSE9jRTORxvD-Elqk4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.158 [XNIO-1 task-1] XdPkSE9jRTORxvD-Elqk4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.158 [XNIO-1 task-1] XdPkSE9jRTORxvD-Elqk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.160 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.163 [XNIO-1 task-1] 3A9dBtsRT0-1VY9bg_FYEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.163 [XNIO-1 task-1] 3A9dBtsRT0-1VY9bg_FYEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.163 [XNIO-1 task-1] 3A9dBtsRT0-1VY9bg_FYEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.164 [XNIO-1 task-1] 3A9dBtsRT0-1VY9bg_FYEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.164 [XNIO-1 task-1] 3A9dBtsRT0-1VY9bg_FYEg DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.164 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.168 [XNIO-1 task-1] YhqIPdx8T5Glc4S8hQ-mvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.168 [XNIO-1 task-1] YhqIPdx8T5Glc4S8hQ-mvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.169 [XNIO-1 task-1] YhqIPdx8T5Glc4S8hQ-mvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.169 [XNIO-1 task-1] YhqIPdx8T5Glc4S8hQ-mvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.169 [XNIO-1 task-1] YhqIPdx8T5Glc4S8hQ-mvg DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.171 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.173 [XNIO-1 task-1] YhqIPdx8T5Glc4S8hQ-mvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f54a87d4-d8b6-4c47-aa7e-493623e1ad59 is not found.","severity":"ERROR"} +09:00:46.173 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be40470f +09:00:46.176 [XNIO-1 task-1] OzHr1lTIQSi0l9yDTD-7cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.176 [XNIO-1 task-1] OzHr1lTIQSi0l9yDTD-7cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.176 [XNIO-1 task-1] OzHr1lTIQSi0l9yDTD-7cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.176 [XNIO-1 task-1] OzHr1lTIQSi0l9yDTD-7cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.177 [XNIO-1 task-1] OzHr1lTIQSi0l9yDTD-7cw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.177 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.181 [XNIO-1 task-1] f0-3H3uNSOSfr-yFZ6ACzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.182 [XNIO-1 task-1] f0-3H3uNSOSfr-yFZ6ACzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.182 [XNIO-1 task-1] f0-3H3uNSOSfr-yFZ6ACzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.182 [XNIO-1 task-1] f0-3H3uNSOSfr-yFZ6ACzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.182 [XNIO-1 task-1] f0-3H3uNSOSfr-yFZ6ACzg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.200 [XNIO-1 task-1] 5svXDsJGSvuZXuQBwSejVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.200 [XNIO-1 task-1] 5svXDsJGSvuZXuQBwSejVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.201 [XNIO-1 task-1] 5svXDsJGSvuZXuQBwSejVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.201 [XNIO-1 task-1] 5svXDsJGSvuZXuQBwSejVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.201 [XNIO-1 task-1] 5svXDsJGSvuZXuQBwSejVw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.202 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.209 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7a2b683 +09:00:46.212 [XNIO-1 task-1] 53J74CieQmmUR84UA88WFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.212 [XNIO-1 task-1] 53J74CieQmmUR84UA88WFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.212 [XNIO-1 task-1] 53J74CieQmmUR84UA88WFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.213 [XNIO-1 task-1] 53J74CieQmmUR84UA88WFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.213 [XNIO-1 task-1] 53J74CieQmmUR84UA88WFA DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.213 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.217 [XNIO-1 task-1] ZlMfXOyGSiSekgMzM6PVsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.218 [XNIO-1 task-1] ZlMfXOyGSiSekgMzM6PVsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.218 [XNIO-1 task-1] ZlMfXOyGSiSekgMzM6PVsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.218 [XNIO-1 task-1] ZlMfXOyGSiSekgMzM6PVsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.219 [XNIO-1 task-1] ZlMfXOyGSiSekgMzM6PVsA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.235 [XNIO-1 task-1] Yk0R53lMTQKIIi2Gqp8S0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.235 [XNIO-1 task-1] Yk0R53lMTQKIIi2Gqp8S0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.235 [XNIO-1 task-1] Yk0R53lMTQKIIi2Gqp8S0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.236 [XNIO-1 task-1] Yk0R53lMTQKIIi2Gqp8S0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.248 [XNIO-1 task-1] UBoIgE30RUO778wK7MDaYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.249 [XNIO-1 task-1] UBoIgE30RUO778wK7MDaYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.249 [XNIO-1 task-1] UBoIgE30RUO778wK7MDaYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.249 [XNIO-1 task-1] UBoIgE30RUO778wK7MDaYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.249 [XNIO-1 task-1] UBoIgE30RUO778wK7MDaYw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.249 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.254 [XNIO-1 task-1] ohwErireSeGcE_sxDUFmSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152, base path is set to: null +09:00:46.254 [XNIO-1 task-1] ohwErireSeGcE_sxDUFmSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.254 [XNIO-1 task-1] ohwErireSeGcE_sxDUFmSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.254 [XNIO-1 task-1] ohwErireSeGcE_sxDUFmSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152, base path is set to: null +09:00:46.254 [XNIO-1 task-1] ohwErireSeGcE_sxDUFmSA DEBUG com.networknt.schema.TypeValidator debug - validate( "785383f9-a43f-4ca3-8e24-1689a475b152", "785383f9-a43f-4ca3-8e24-1689a475b152", refreshToken) +09:00:46.255 [XNIO-1 task-1] ohwErireSeGcE_sxDUFmSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 785383f9-a43f-4ca3-8e24-1689a475b152 is not found.","severity":"ERROR"} +09:00:46.259 [XNIO-1 task-1] 6s_yKaAAS6OwKLXSr_c42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.259 [XNIO-1 task-1] 6s_yKaAAS6OwKLXSr_c42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.259 [XNIO-1 task-1] 6s_yKaAAS6OwKLXSr_c42A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.260 [XNIO-1 task-1] 6s_yKaAAS6OwKLXSr_c42A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.267 [XNIO-1 task-1] QgvKdfBST36yN0wyB3_gRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.268 [XNIO-1 task-1] QgvKdfBST36yN0wyB3_gRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.268 [XNIO-1 task-1] QgvKdfBST36yN0wyB3_gRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.268 [XNIO-1 task-1] QgvKdfBST36yN0wyB3_gRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.268 [XNIO-1 task-1] QgvKdfBST36yN0wyB3_gRg DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:46.268 [XNIO-1 task-1] QgvKdfBST36yN0wyB3_gRg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:46.276 [XNIO-1 task-1] u_O2vcSTRbaBYvUf6EFeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.276 [XNIO-1 task-1] u_O2vcSTRbaBYvUf6EFeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.276 [XNIO-1 task-1] u_O2vcSTRbaBYvUf6EFeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.276 [XNIO-1 task-1] u_O2vcSTRbaBYvUf6EFeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.277 [XNIO-1 task-1] u_O2vcSTRbaBYvUf6EFeAw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.281 [XNIO-1 task-1] 4QNbi-vaQFmgPRlJiycKtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.281 [XNIO-1 task-1] 4QNbi-vaQFmgPRlJiycKtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.281 [XNIO-1 task-1] 4QNbi-vaQFmgPRlJiycKtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.281 [XNIO-1 task-1] 4QNbi-vaQFmgPRlJiycKtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.282 [XNIO-1 task-1] 4QNbi-vaQFmgPRlJiycKtg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.289 [XNIO-1 task-1] mjUfOWqZQDeODns8xIPKMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.289 [XNIO-1 task-1] mjUfOWqZQDeODns8xIPKMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.289 [XNIO-1 task-1] mjUfOWqZQDeODns8xIPKMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.290 [XNIO-1 task-1] mjUfOWqZQDeODns8xIPKMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.290 [XNIO-1 task-1] mjUfOWqZQDeODns8xIPKMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.293 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7a2b683 +09:00:46.294 [XNIO-1 task-1] tzJRuGo3T1-rbPRrnxzy0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152, base path is set to: null +09:00:46.294 [XNIO-1 task-1] tzJRuGo3T1-rbPRrnxzy0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.294 [XNIO-1 task-1] tzJRuGo3T1-rbPRrnxzy0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.294 [XNIO-1 task-1] tzJRuGo3T1-rbPRrnxzy0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152, base path is set to: null +09:00:46.294 [XNIO-1 task-1] tzJRuGo3T1-rbPRrnxzy0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "785383f9-a43f-4ca3-8e24-1689a475b152", "785383f9-a43f-4ca3-8e24-1689a475b152", refreshToken) +09:00:46.295 [XNIO-1 task-1] tzJRuGo3T1-rbPRrnxzy0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 785383f9-a43f-4ca3-8e24-1689a475b152 is not found.","severity":"ERROR"} +09:00:46.304 [XNIO-1 task-1] 4lr9DP6dQBy2LUC_09HX0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.304 [XNIO-1 task-1] 4lr9DP6dQBy2LUC_09HX0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.305 [XNIO-1 task-1] 4lr9DP6dQBy2LUC_09HX0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.313 [XNIO-1 task-1] 4lr9DP6dQBy2LUC_09HX0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.324 [XNIO-1 task-1] BDZyTMqpTC2yeFDSj1VvWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.324 [XNIO-1 task-1] BDZyTMqpTC2yeFDSj1VvWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.324 [XNIO-1 task-1] BDZyTMqpTC2yeFDSj1VvWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.324 [XNIO-1 task-1] BDZyTMqpTC2yeFDSj1VvWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.325 [XNIO-1 task-1] BDZyTMqpTC2yeFDSj1VvWw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.326 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.333 [XNIO-1 task-1] 3gjRGdziRp6udE6jBil5NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.333 [XNIO-1 task-1] 3gjRGdziRp6udE6jBil5NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.334 [XNIO-1 task-1] 3gjRGdziRp6udE6jBil5NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.334 [XNIO-1 task-1] 3gjRGdziRp6udE6jBil5NA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.334 [XNIO-1 task-1] 3gjRGdziRp6udE6jBil5NA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.344 [XNIO-1 task-1] PNOU1W3BR0Gla1VZbU6q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.344 [XNIO-1 task-1] PNOU1W3BR0Gla1VZbU6q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.345 [XNIO-1 task-1] PNOU1W3BR0Gla1VZbU6q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.345 [XNIO-1 task-1] PNOU1W3BR0Gla1VZbU6q6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.346 [XNIO-1 task-1] PNOU1W3BR0Gla1VZbU6q6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.352 [XNIO-1 task-1] zgGnl2o0QN2unpm8suxMyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.353 [XNIO-1 task-1] zgGnl2o0QN2unpm8suxMyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.353 [XNIO-1 task-1] zgGnl2o0QN2unpm8suxMyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.353 [XNIO-1 task-1] zgGnl2o0QN2unpm8suxMyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.353 [XNIO-1 task-1] zgGnl2o0QN2unpm8suxMyg DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:46.354 [XNIO-1 task-1] zgGnl2o0QN2unpm8suxMyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:46.358 [XNIO-1 task-1] 3dTNj_yyT1i_fZrMRFNZjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.358 [XNIO-1 task-1] 3dTNj_yyT1i_fZrMRFNZjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.359 [XNIO-1 task-1] 3dTNj_yyT1i_fZrMRFNZjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.359 [XNIO-1 task-1] 3dTNj_yyT1i_fZrMRFNZjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.368 [XNIO-1 task-1] J3iAdBqYRIyP21ckwoRKuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.368 [XNIO-1 task-1] J3iAdBqYRIyP21ckwoRKuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.368 [XNIO-1 task-1] J3iAdBqYRIyP21ckwoRKuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.368 [XNIO-1 task-1] J3iAdBqYRIyP21ckwoRKuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.368 [XNIO-1 task-1] J3iAdBqYRIyP21ckwoRKuw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:46.369 [XNIO-1 task-1] J3iAdBqYRIyP21ckwoRKuw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:46.372 [XNIO-1 task-1] CnA0fjo6ThGuLSr45RayLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.372 [XNIO-1 task-1] CnA0fjo6ThGuLSr45RayLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.372 [XNIO-1 task-1] CnA0fjo6ThGuLSr45RayLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.373 [XNIO-1 task-1] CnA0fjo6ThGuLSr45RayLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.381 [XNIO-1 task-1] P0NmbXKxT7SmmztlmqNuuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.381 [XNIO-1 task-1] P0NmbXKxT7SmmztlmqNuuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.381 [XNIO-1 task-1] P0NmbXKxT7SmmztlmqNuuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.382 [XNIO-1 task-1] P0NmbXKxT7SmmztlmqNuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.382 [XNIO-1 task-1] P0NmbXKxT7SmmztlmqNuuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.386 [XNIO-1 task-1] iVq0_JJ6QCyC-JtlXSNjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:46.386 [XNIO-1 task-1] iVq0_JJ6QCyC-JtlXSNjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.386 [XNIO-1 task-1] iVq0_JJ6QCyC-JtlXSNjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.386 [XNIO-1 task-1] iVq0_JJ6QCyC-JtlXSNjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:46.387 [XNIO-1 task-1] iVq0_JJ6QCyC-JtlXSNjkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 785383f9-a43f-4ca3-8e24-1689a475b152 +09:00:46.394 [XNIO-1 task-1] dgQkuM--QW-v5CsEHr4zbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.394 [XNIO-1 task-1] dgQkuM--QW-v5CsEHr4zbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.394 [XNIO-1 task-1] dgQkuM--QW-v5CsEHr4zbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.395 [XNIO-1 task-1] dgQkuM--QW-v5CsEHr4zbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f54a87d4-d8b6-4c47-aa7e-493623e1ad59, base path is set to: null +09:00:46.395 [XNIO-1 task-1] dgQkuM--QW-v5CsEHr4zbw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", "f54a87d4-d8b6-4c47-aa7e-493623e1ad59", refreshToken) +09:00:46.395 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f54a87d4-d8b6-4c47-aa7e-493623e1ad59 +09:00:46.400 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:77d53dce-9bb6-4c7e-a013-eda1cd154bf4 +09:00:46.401 [XNIO-1 task-1] M1o8zvT5QkSP_swHNggruA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.401 [XNIO-1 task-1] M1o8zvT5QkSP_swHNggruA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.401 [XNIO-1 task-1] M1o8zvT5QkSP_swHNggruA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.401 [XNIO-1 task-1] M1o8zvT5QkSP_swHNggruA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.402 [XNIO-1 task-1] M1o8zvT5QkSP_swHNggruA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.405 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:77d53dce-9bb6-4c7e-a013-eda1cd154bf4 +09:00:46.406 [XNIO-1 task-1] vLFQ2fXqQjSo4oEaxXOJUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.407 [XNIO-1 task-1] vLFQ2fXqQjSo4oEaxXOJUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.407 [XNIO-1 task-1] vLFQ2fXqQjSo4oEaxXOJUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.407 [XNIO-1 task-1] vLFQ2fXqQjSo4oEaxXOJUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.407 [XNIO-1 task-1] vLFQ2fXqQjSo4oEaxXOJUg DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:46.407 [XNIO-1 task-1] vLFQ2fXqQjSo4oEaxXOJUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:46.415 [XNIO-1 task-1] ALMehUZ6SZqrbBwOyEwVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.415 [XNIO-1 task-1] ALMehUZ6SZqrbBwOyEwVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.415 [XNIO-1 task-1] ALMehUZ6SZqrbBwOyEwVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.416 [XNIO-1 task-1] ALMehUZ6SZqrbBwOyEwVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.416 [XNIO-1 task-1] ALMehUZ6SZqrbBwOyEwVqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.420 [XNIO-1 task-1] 5WWG35qgThCasXdhhZW2eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.420 [XNIO-1 task-1] 5WWG35qgThCasXdhhZW2eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.420 [XNIO-1 task-1] 5WWG35qgThCasXdhhZW2eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.420 [XNIO-1 task-1] 5WWG35qgThCasXdhhZW2eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.421 [XNIO-1 task-1] 5WWG35qgThCasXdhhZW2eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e417c4de-6f46-4cbb-8f28-07805a44e3b4", "e417c4de-6f46-4cbb-8f28-07805a44e3b4", refreshToken) +09:00:46.430 [XNIO-1 task-1] i1gb6ZMVQRyFDpPoE7z_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.430 [XNIO-1 task-1] i1gb6ZMVQRyFDpPoE7z_nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.431 [XNIO-1 task-1] i1gb6ZMVQRyFDpPoE7z_nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.431 [XNIO-1 task-1] i1gb6ZMVQRyFDpPoE7z_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.431 [XNIO-1 task-1] i1gb6ZMVQRyFDpPoE7z_nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:46.431 [XNIO-1 task-1] i1gb6ZMVQRyFDpPoE7z_nQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:46.436 [XNIO-1 task-1] P8_rLaDTSRa-LatMPHO9nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.437 [XNIO-1 task-1] P8_rLaDTSRa-LatMPHO9nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.437 [XNIO-1 task-1] P8_rLaDTSRa-LatMPHO9nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.437 [XNIO-1 task-1] P8_rLaDTSRa-LatMPHO9nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.437 [XNIO-1 task-1] P8_rLaDTSRa-LatMPHO9nQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.445 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:be40470f +09:00:46.460 [XNIO-1 task-1] MdHzirJESoSMttFZZ3zitw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.460 [XNIO-1 task-1] MdHzirJESoSMttFZZ3zitw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.460 [XNIO-1 task-1] MdHzirJESoSMttFZZ3zitw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.461 [XNIO-1 task-1] MdHzirJESoSMttFZZ3zitw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.461 [XNIO-1 task-1] MdHzirJESoSMttFZZ3zitw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.469 [XNIO-1 task-1] 0c-_6g5TS_iKH2CK-fGpqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.469 [XNIO-1 task-1] 0c-_6g5TS_iKH2CK-fGpqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.469 [XNIO-1 task-1] 0c-_6g5TS_iKH2CK-fGpqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.470 [XNIO-1 task-1] 0c-_6g5TS_iKH2CK-fGpqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.470 [XNIO-1 task-1] 0c-_6g5TS_iKH2CK-fGpqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.476 [XNIO-1 task-1] kMkXODbLT46GxDeU84swlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.476 [XNIO-1 task-1] kMkXODbLT46GxDeU84swlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.476 [XNIO-1 task-1] kMkXODbLT46GxDeU84swlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.476 [XNIO-1 task-1] kMkXODbLT46GxDeU84swlg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.488 [XNIO-1 task-1] MpphDCL0RAWsw_PVGV3kpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.488 [XNIO-1 task-1] MpphDCL0RAWsw_PVGV3kpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.488 [XNIO-1 task-1] MpphDCL0RAWsw_PVGV3kpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.488 [XNIO-1 task-1] MpphDCL0RAWsw_PVGV3kpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.489 [XNIO-1 task-1] MpphDCL0RAWsw_PVGV3kpA DEBUG com.networknt.schema.TypeValidator debug - validate( "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", refreshToken) +09:00:46.493 [XNIO-1 task-1] 3MgnTJ_VQdOGF9WRND5F1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.494 [XNIO-1 task-1] 3MgnTJ_VQdOGF9WRND5F1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.494 [XNIO-1 task-1] 3MgnTJ_VQdOGF9WRND5F1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.494 [XNIO-1 task-1] 3MgnTJ_VQdOGF9WRND5F1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.494 [XNIO-1 task-1] 3MgnTJ_VQdOGF9WRND5F1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", refreshToken) +09:00:46.498 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:be40470f +09:00:46.500 [XNIO-1 task-1] YKO25fuzTsOMvplsmKZUUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.500 [XNIO-1 task-1] YKO25fuzTsOMvplsmKZUUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.500 [XNIO-1 task-1] YKO25fuzTsOMvplsmKZUUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.500 [XNIO-1 task-1] YKO25fuzTsOMvplsmKZUUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.500 [XNIO-1 task-1] YKO25fuzTsOMvplsmKZUUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.506 [XNIO-1 task-1] FYHAhz4mS4elzI8cjzHKaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.511 [XNIO-1 task-1] FYHAhz4mS4elzI8cjzHKaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.511 [XNIO-1 task-1] FYHAhz4mS4elzI8cjzHKaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.511 [XNIO-1 task-1] FYHAhz4mS4elzI8cjzHKaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.512 [XNIO-1 task-1] FYHAhz4mS4elzI8cjzHKaw DEBUG com.networknt.schema.TypeValidator debug - validate( "e417c4de-6f46-4cbb-8f28-07805a44e3b4", "e417c4de-6f46-4cbb-8f28-07805a44e3b4", refreshToken) +09:00:46.530 [XNIO-1 task-1] 4lmA2oYEQNeopJwp5XzO3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.531 [XNIO-1 task-1] 4lmA2oYEQNeopJwp5XzO3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.531 [XNIO-1 task-1] 4lmA2oYEQNeopJwp5XzO3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.531 [XNIO-1 task-1] 4lmA2oYEQNeopJwp5XzO3A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.531 [XNIO-1 task-1] 4lmA2oYEQNeopJwp5XzO3A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.544 [XNIO-1 task-1] qrPlAD1AQXSRUbvOIElDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.544 [XNIO-1 task-1] qrPlAD1AQXSRUbvOIElDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.544 [XNIO-1 task-1] qrPlAD1AQXSRUbvOIElDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.544 [XNIO-1 task-1] qrPlAD1AQXSRUbvOIElDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.545 [XNIO-1 task-1] qrPlAD1AQXSRUbvOIElDXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.550 [XNIO-1 task-1] ER8uI72xRHijIc3jMHi48Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.551 [XNIO-1 task-1] ER8uI72xRHijIc3jMHi48Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.551 [XNIO-1 task-1] ER8uI72xRHijIc3jMHi48Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.551 [XNIO-1 task-1] ER8uI72xRHijIc3jMHi48Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.551 [XNIO-1 task-1] ER8uI72xRHijIc3jMHi48Q DEBUG com.networknt.schema.TypeValidator debug - validate( "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", refreshToken) +09:00:46.560 [XNIO-1 task-1] RhzXHdNzQpWUiw9uVlM8jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb, base path is set to: null +09:00:46.560 [XNIO-1 task-1] RhzXHdNzQpWUiw9uVlM8jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.560 [XNIO-1 task-1] RhzXHdNzQpWUiw9uVlM8jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.560 [XNIO-1 task-1] RhzXHdNzQpWUiw9uVlM8jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb, base path is set to: null +09:00:46.561 [XNIO-1 task-1] RhzXHdNzQpWUiw9uVlM8jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb", "1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb", refreshToken) +09:00:46.566 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a7a2b683 +09:00:46.566 [XNIO-1 task-1] DAkgDZCpSt6WOI7aRm_0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.566 [XNIO-1 task-1] DAkgDZCpSt6WOI7aRm_0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.566 [XNIO-1 task-1] DAkgDZCpSt6WOI7aRm_0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.567 [XNIO-1 task-1] DAkgDZCpSt6WOI7aRm_0zA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.577 [XNIO-1 task-1] r9OaksetRxmvB2qh931DYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.577 [XNIO-1 task-1] r9OaksetRxmvB2qh931DYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.577 [XNIO-1 task-1] r9OaksetRxmvB2qh931DYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.577 [XNIO-1 task-1] r9OaksetRxmvB2qh931DYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.578 [XNIO-1 task-1] r9OaksetRxmvB2qh931DYw DEBUG com.networknt.schema.TypeValidator debug - validate( "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", refreshToken) +09:00:46.583 [XNIO-1 task-1] r9OaksetRxmvB2qh931DYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12abd0fd-ea53-4c92-84e6-e31fedf85cfa is not found.","severity":"ERROR"} +09:00:46.586 [XNIO-1 task-1] zAc92XgiRUCo8ak0febLVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.586 [XNIO-1 task-1] zAc92XgiRUCo8ak0febLVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.586 [XNIO-1 task-1] zAc92XgiRUCo8ak0febLVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.586 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:306bed32 +09:00:46.587 [XNIO-1 task-1] zAc92XgiRUCo8ak0febLVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.587 [XNIO-1 task-1] zAc92XgiRUCo8ak0febLVw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.591 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a299610a-4e3a-46c0-bf59-b7fce76f3445 +09:00:46.603 [XNIO-1 task-1] iv5dfBPDSRGO1zFLPgHzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.603 [XNIO-1 task-1] iv5dfBPDSRGO1zFLPgHzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.604 [XNIO-1 task-1] iv5dfBPDSRGO1zFLPgHzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.604 [XNIO-1 task-1] iv5dfBPDSRGO1zFLPgHzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.604 [XNIO-1 task-1] iv5dfBPDSRGO1zFLPgHzgA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:46.604 [XNIO-1 task-1] iv5dfBPDSRGO1zFLPgHzgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:46.615 [XNIO-1 task-1] yDBmJItDTfuiwNvaYG_xDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.615 [XNIO-1 task-1] yDBmJItDTfuiwNvaYG_xDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.615 [XNIO-1 task-1] yDBmJItDTfuiwNvaYG_xDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.615 [XNIO-1 task-1] yDBmJItDTfuiwNvaYG_xDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.616 [XNIO-1 task-1] yDBmJItDTfuiwNvaYG_xDg DEBUG com.networknt.schema.TypeValidator debug - validate( "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", refreshToken) +09:00:46.616 [XNIO-1 task-1] yDBmJItDTfuiwNvaYG_xDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12abd0fd-ea53-4c92-84e6-e31fedf85cfa is not found.","severity":"ERROR"} +09:00:46.622 [XNIO-1 task-1] Fyk2XzAWTtiZN8PLn3uZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.622 [XNIO-1 task-1] Fyk2XzAWTtiZN8PLn3uZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.622 [XNIO-1 task-1] Fyk2XzAWTtiZN8PLn3uZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.622 [XNIO-1 task-1] Fyk2XzAWTtiZN8PLn3uZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.623 [XNIO-1 task-1] Fyk2XzAWTtiZN8PLn3uZ-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.626 [XNIO-1 task-1] 4jD3Z4EKRaaR5tL0sTTXUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.626 [XNIO-1 task-1] 4jD3Z4EKRaaR5tL0sTTXUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.626 [XNIO-1 task-1] 4jD3Z4EKRaaR5tL0sTTXUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.626 [XNIO-1 task-1] 4jD3Z4EKRaaR5tL0sTTXUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.626 [XNIO-1 task-1] 4jD3Z4EKRaaR5tL0sTTXUA DEBUG com.networknt.schema.TypeValidator debug - validate( "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", refreshToken) +09:00:46.626 [XNIO-1 task-1] 4jD3Z4EKRaaR5tL0sTTXUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12abd0fd-ea53-4c92-84e6-e31fedf85cfa is not found.","severity":"ERROR"} +09:00:46.631 [XNIO-1 task-1] S_SMjePtQOGV2CUUDt_S5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.631 [XNIO-1 task-1] S_SMjePtQOGV2CUUDt_S5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.631 [XNIO-1 task-1] S_SMjePtQOGV2CUUDt_S5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.631 [XNIO-1 task-1] S_SMjePtQOGV2CUUDt_S5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.631 [XNIO-1 task-1] S_SMjePtQOGV2CUUDt_S5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.638 [XNIO-1 task-1] BVio9NliTPKo2UMPRgF-Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb, base path is set to: null +09:00:46.638 [XNIO-1 task-1] BVio9NliTPKo2UMPRgF-Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.638 [XNIO-1 task-1] BVio9NliTPKo2UMPRgF-Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.638 [XNIO-1 task-1] BVio9NliTPKo2UMPRgF-Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb, base path is set to: null +09:00:46.639 [XNIO-1 task-1] BVio9NliTPKo2UMPRgF-Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb", "1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb", refreshToken) +09:00:46.650 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bb82c5a3 +09:00:46.651 [XNIO-1 task-1] O3ISSAXkRWeTJUqWQMC5Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.651 [XNIO-1 task-1] O3ISSAXkRWeTJUqWQMC5Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.652 [XNIO-1 task-1] O3ISSAXkRWeTJUqWQMC5Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.652 [XNIO-1 task-1] O3ISSAXkRWeTJUqWQMC5Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.652 [XNIO-1 task-1] O3ISSAXkRWeTJUqWQMC5Xw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.655 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bb82c5a3 +09:00:46.655 [XNIO-1 task-1] JqZ4pnNUQNCoZbv5TOZc8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.660 [XNIO-1 task-1] JqZ4pnNUQNCoZbv5TOZc8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.660 [XNIO-1 task-1] JqZ4pnNUQNCoZbv5TOZc8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.662 [XNIO-1 task-1] JqZ4pnNUQNCoZbv5TOZc8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:46.662 [XNIO-1 task-1] JqZ4pnNUQNCoZbv5TOZc8w DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:46.663 [XNIO-1 task-1] JqZ4pnNUQNCoZbv5TOZc8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:46.667 [XNIO-1 task-1] WZ4mWApLTaKsKf6Vb4xfrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:46.667 [XNIO-1 task-1] WZ4mWApLTaKsKf6Vb4xfrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.667 [XNIO-1 task-1] WZ4mWApLTaKsKf6Vb4xfrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.668 [XNIO-1 task-1] WZ4mWApLTaKsKf6Vb4xfrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:46.668 [XNIO-1 task-1] WZ4mWApLTaKsKf6Vb4xfrg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:46.675 [XNIO-1 task-1] 1UnCv4Q2TLC4XoXLUmBKXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb, base path is set to: null +09:00:46.675 [XNIO-1 task-1] 1UnCv4Q2TLC4XoXLUmBKXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.675 [XNIO-1 task-1] 1UnCv4Q2TLC4XoXLUmBKXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.675 [XNIO-1 task-1] 1UnCv4Q2TLC4XoXLUmBKXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb, base path is set to: null +09:00:46.676 [XNIO-1 task-1] 1UnCv4Q2TLC4XoXLUmBKXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb", "1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb", refreshToken) +09:00:46.678 [XNIO-1 task-1] 1UnCv4Q2TLC4XoXLUmBKXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1cd3285a-f807-4d09-9cf7-e5ed2fdb6bfb is not found.","severity":"ERROR"} +09:00:46.681 [XNIO-1 task-1] Gie6T0C4QU2nIoH3npyI2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.681 [XNIO-1 task-1] Gie6T0C4QU2nIoH3npyI2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.681 [XNIO-1 task-1] Gie6T0C4QU2nIoH3npyI2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.681 [XNIO-1 task-1] Gie6T0C4QU2nIoH3npyI2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.682 [XNIO-1 task-1] Gie6T0C4QU2nIoH3npyI2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.685 [XNIO-1 task-1] ohgS6levSKmhi9de7-JuXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.685 [XNIO-1 task-1] ohgS6levSKmhi9de7-JuXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.685 [XNIO-1 task-1] ohgS6levSKmhi9de7-JuXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.685 [XNIO-1 task-1] ohgS6levSKmhi9de7-JuXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.686 [XNIO-1 task-1] ohgS6levSKmhi9de7-JuXA DEBUG com.networknt.schema.TypeValidator debug - validate( "af8155f4-2538-4ce1-b716-9b412af74b8e", "af8155f4-2538-4ce1-b716-9b412af74b8e", refreshToken) +09:00:46.694 [XNIO-1 task-1] ztUv2zMdSYmVILJtBaXncw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.695 [XNIO-1 task-1] ztUv2zMdSYmVILJtBaXncw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.695 [XNIO-1 task-1] ztUv2zMdSYmVILJtBaXncw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.695 [XNIO-1 task-1] ztUv2zMdSYmVILJtBaXncw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.695 [XNIO-1 task-1] ztUv2zMdSYmVILJtBaXncw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.712 [XNIO-1 task-1] iR9HSqVmT-KfAppUguyy1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.712 [XNIO-1 task-1] iR9HSqVmT-KfAppUguyy1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.712 [XNIO-1 task-1] iR9HSqVmT-KfAppUguyy1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.712 [XNIO-1 task-1] iR9HSqVmT-KfAppUguyy1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.712 [XNIO-1 task-1] iR9HSqVmT-KfAppUguyy1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.724 [XNIO-1 task-1] pPex7WHXRAOayT0mC31vtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.724 [XNIO-1 task-1] pPex7WHXRAOayT0mC31vtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.724 [XNIO-1 task-1] pPex7WHXRAOayT0mC31vtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.724 [XNIO-1 task-1] pPex7WHXRAOayT0mC31vtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.725 [XNIO-1 task-1] pPex7WHXRAOayT0mC31vtA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.744 [XNIO-1 task-1] ifnZmZ-0QhmSkRRaKHUtlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.745 [XNIO-1 task-1] ifnZmZ-0QhmSkRRaKHUtlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.745 [XNIO-1 task-1] ifnZmZ-0QhmSkRRaKHUtlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.745 [XNIO-1 task-1] ifnZmZ-0QhmSkRRaKHUtlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.745 [XNIO-1 task-1] ifnZmZ-0QhmSkRRaKHUtlw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.753 [XNIO-1 task-1] 4fY8m14yTC-KsGCWuTf4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.754 [XNIO-1 task-1] 4fY8m14yTC-KsGCWuTf4RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.754 [XNIO-1 task-1] 4fY8m14yTC-KsGCWuTf4RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.754 [XNIO-1 task-1] 4fY8m14yTC-KsGCWuTf4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.754 [XNIO-1 task-1] 4fY8m14yTC-KsGCWuTf4RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "af8155f4-2538-4ce1-b716-9b412af74b8e", "af8155f4-2538-4ce1-b716-9b412af74b8e", refreshToken) +09:00:46.754 [XNIO-1 task-1] 4fY8m14yTC-KsGCWuTf4RQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af8155f4-2538-4ce1-b716-9b412af74b8e is not found.","severity":"ERROR"} +09:00:46.761 [XNIO-1 task-1] OZ9Orx8VQueJTCJQlYQrHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.761 [XNIO-1 task-1] OZ9Orx8VQueJTCJQlYQrHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.762 [XNIO-1 task-1] OZ9Orx8VQueJTCJQlYQrHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.762 [XNIO-1 task-1] OZ9Orx8VQueJTCJQlYQrHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.762 [XNIO-1 task-1] OZ9Orx8VQueJTCJQlYQrHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:46.767 [XNIO-1 task-1] Sb6V2vYAR0ejAXYgedk73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.768 [XNIO-1 task-1] Sb6V2vYAR0ejAXYgedk73g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.768 [XNIO-1 task-1] Sb6V2vYAR0ejAXYgedk73g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.768 [XNIO-1 task-1] Sb6V2vYAR0ejAXYgedk73g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.768 [XNIO-1 task-1] Sb6V2vYAR0ejAXYgedk73g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.779 [XNIO-1 task-1] sB8aoL_PT8i4ifGrN-fVXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.779 [XNIO-1 task-1] sB8aoL_PT8i4ifGrN-fVXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.779 [XNIO-1 task-1] sB8aoL_PT8i4ifGrN-fVXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.780 [XNIO-1 task-1] sB8aoL_PT8i4ifGrN-fVXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.789 [XNIO-1 task-1] HN7q8w3RRp6ADq_NX_1ppQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec9c491e-c51a-40f7-8a32-265c9c550630, base path is set to: null +09:00:46.789 [XNIO-1 task-1] HN7q8w3RRp6ADq_NX_1ppQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.789 [XNIO-1 task-1] HN7q8w3RRp6ADq_NX_1ppQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.789 [XNIO-1 task-1] HN7q8w3RRp6ADq_NX_1ppQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec9c491e-c51a-40f7-8a32-265c9c550630, base path is set to: null +09:00:46.790 [XNIO-1 task-1] HN7q8w3RRp6ADq_NX_1ppQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec9c491e-c51a-40f7-8a32-265c9c550630", "ec9c491e-c51a-40f7-8a32-265c9c550630", refreshToken) +09:00:46.803 [XNIO-1 task-1] Zjm_KNO4SS-Qd3zKw9NQig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.805 [XNIO-1 task-1] Zjm_KNO4SS-Qd3zKw9NQig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.805 [XNIO-1 task-1] Zjm_KNO4SS-Qd3zKw9NQig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.805 [XNIO-1 task-1] Zjm_KNO4SS-Qd3zKw9NQig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.805 [XNIO-1 task-1] Zjm_KNO4SS-Qd3zKw9NQig DEBUG com.networknt.schema.TypeValidator debug - validate( "af8155f4-2538-4ce1-b716-9b412af74b8e", "af8155f4-2538-4ce1-b716-9b412af74b8e", refreshToken) +09:00:46.805 [XNIO-1 task-1] Zjm_KNO4SS-Qd3zKw9NQig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af8155f4-2538-4ce1-b716-9b412af74b8e is not found.","severity":"ERROR"} +09:00:46.809 [XNIO-1 task-1] g3TdEawwR4-_Hef90_xKtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.809 [XNIO-1 task-1] g3TdEawwR4-_Hef90_xKtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.809 [XNIO-1 task-1] g3TdEawwR4-_Hef90_xKtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.810 [XNIO-1 task-1] g3TdEawwR4-_Hef90_xKtA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.813 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bb82c5a3 +09:00:46.821 [XNIO-1 task-1] 2q3eBrhyR6mQxkAF7zxj1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec9c491e-c51a-40f7-8a32-265c9c550630, base path is set to: null +09:00:46.821 [XNIO-1 task-1] 2q3eBrhyR6mQxkAF7zxj1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.821 [XNIO-1 task-1] 2q3eBrhyR6mQxkAF7zxj1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.822 [XNIO-1 task-1] 2q3eBrhyR6mQxkAF7zxj1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec9c491e-c51a-40f7-8a32-265c9c550630, base path is set to: null +09:00:46.822 [XNIO-1 task-1] 2q3eBrhyR6mQxkAF7zxj1A DEBUG com.networknt.schema.TypeValidator debug - validate( "ec9c491e-c51a-40f7-8a32-265c9c550630", "ec9c491e-c51a-40f7-8a32-265c9c550630", refreshToken) +09:00:46.825 [XNIO-1 task-1] 2q3eBrhyR6mQxkAF7zxj1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec9c491e-c51a-40f7-8a32-265c9c550630 is not found.","severity":"ERROR"} +09:00:46.829 [XNIO-1 task-1] ElXCeaxuTmuMEimNZLWE3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.830 [XNIO-1 task-1] ElXCeaxuTmuMEimNZLWE3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.830 [XNIO-1 task-1] ElXCeaxuTmuMEimNZLWE3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.830 [XNIO-1 task-1] ElXCeaxuTmuMEimNZLWE3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:46.830 [XNIO-1 task-1] ElXCeaxuTmuMEimNZLWE3g DEBUG com.networknt.schema.TypeValidator debug - validate( "af8155f4-2538-4ce1-b716-9b412af74b8e", "af8155f4-2538-4ce1-b716-9b412af74b8e", refreshToken) +09:00:46.830 [XNIO-1 task-1] ElXCeaxuTmuMEimNZLWE3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af8155f4-2538-4ce1-b716-9b412af74b8e is not found.","severity":"ERROR"} +09:00:46.838 [XNIO-1 task-1] VkYcz-8rScap7QMhnPgAcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.838 [XNIO-1 task-1] VkYcz-8rScap7QMhnPgAcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.838 [XNIO-1 task-1] VkYcz-8rScap7QMhnPgAcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.838 [XNIO-1 task-1] VkYcz-8rScap7QMhnPgAcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:46.841 [XNIO-1 task-1] VkYcz-8rScap7QMhnPgAcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:46.848 [XNIO-1 task-1] cKOX7rb9RJCbRu-kEn-Trw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.848 [XNIO-1 task-1] cKOX7rb9RJCbRu-kEn-Trw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.848 [XNIO-1 task-1] cKOX7rb9RJCbRu-kEn-Trw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.848 [XNIO-1 task-1] cKOX7rb9RJCbRu-kEn-Trw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12abd0fd-ea53-4c92-84e6-e31fedf85cfa, base path is set to: null +09:00:46.848 [XNIO-1 task-1] cKOX7rb9RJCbRu-kEn-Trw DEBUG com.networknt.schema.TypeValidator debug - validate( "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", "12abd0fd-ea53-4c92-84e6-e31fedf85cfa", refreshToken) +09:00:46.852 [XNIO-1 task-1] cKOX7rb9RJCbRu-kEn-Trw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12abd0fd-ea53-4c92-84e6-e31fedf85cfa is not found.","severity":"ERROR"} +09:00:46.860 [XNIO-1 task-1] JvGAw9tDTTqcFdhuG14IGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.860 [XNIO-1 task-1] JvGAw9tDTTqcFdhuG14IGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.860 [XNIO-1 task-1] JvGAw9tDTTqcFdhuG14IGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.860 [XNIO-1 task-1] JvGAw9tDTTqcFdhuG14IGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.861 [XNIO-1 task-1] JvGAw9tDTTqcFdhuG14IGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.875 [XNIO-1 task-1] uOv4s5VETzOfVx72kpSk0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.875 [XNIO-1 task-1] uOv4s5VETzOfVx72kpSk0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.875 [XNIO-1 task-1] uOv4s5VETzOfVx72kpSk0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.875 [XNIO-1 task-1] uOv4s5VETzOfVx72kpSk0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.875 [XNIO-1 task-1] uOv4s5VETzOfVx72kpSk0w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.880 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cfbfccfb +09:00:46.882 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cfbfccfb +09:00:46.887 [XNIO-1 task-1] FTLdLTpBRrOgPPci7lh-DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.887 [XNIO-1 task-1] FTLdLTpBRrOgPPci7lh-DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.887 [XNIO-1 task-1] FTLdLTpBRrOgPPci7lh-DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.887 [XNIO-1 task-1] FTLdLTpBRrOgPPci7lh-DQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.894 [XNIO-1 task-1] 1R7oO87aREOArWAtxr-txg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.895 [XNIO-1 task-1] 1R7oO87aREOArWAtxr-txg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.895 [XNIO-1 task-1] 1R7oO87aREOArWAtxr-txg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.895 [XNIO-1 task-1] 1R7oO87aREOArWAtxr-txg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.895 [XNIO-1 task-1] 1R7oO87aREOArWAtxr-txg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.904 [XNIO-1 task-1] vIyxPUeMRQKKKyYUyBFfbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.904 [XNIO-1 task-1] vIyxPUeMRQKKKyYUyBFfbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.904 [XNIO-1 task-1] vIyxPUeMRQKKKyYUyBFfbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:46.904 [XNIO-1 task-1] vIyxPUeMRQKKKyYUyBFfbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.905 [XNIO-1 task-1] vIyxPUeMRQKKKyYUyBFfbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.908 [XNIO-1 task-1] UNJ0KkFmR3KQyJv4lFcE0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:46.909 [XNIO-1 task-1] UNJ0KkFmR3KQyJv4lFcE0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.909 [XNIO-1 task-1] UNJ0KkFmR3KQyJv4lFcE0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.909 [XNIO-1 task-1] UNJ0KkFmR3KQyJv4lFcE0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:46.909 [XNIO-1 task-1] UNJ0KkFmR3KQyJv4lFcE0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9efa7-7066-445d-9047-eb6085289c76", "33c9efa7-7066-445d-9047-eb6085289c76", refreshToken) +09:00:46.910 [XNIO-1 task-1] UNJ0KkFmR3KQyJv4lFcE0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c9efa7-7066-445d-9047-eb6085289c76 is not found.","severity":"ERROR"} +09:00:46.912 [XNIO-1 task-1] 2ZoBn9IkTjWd7GT1mC4DDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.913 [XNIO-1 task-1] 2ZoBn9IkTjWd7GT1mC4DDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.913 [XNIO-1 task-1] 2ZoBn9IkTjWd7GT1mC4DDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.913 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:46.913 [XNIO-1 task-1] 2ZoBn9IkTjWd7GT1mC4DDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.913 [XNIO-1 task-1] 2ZoBn9IkTjWd7GT1mC4DDg DEBUG com.networknt.schema.TypeValidator debug - validate( "e417c4de-6f46-4cbb-8f28-07805a44e3b4", "e417c4de-6f46-4cbb-8f28-07805a44e3b4", refreshToken) +09:00:46.914 [XNIO-1 task-1] 2ZoBn9IkTjWd7GT1mC4DDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e417c4de-6f46-4cbb-8f28-07805a44e3b4 is not found.","severity":"ERROR"} +09:00:46.924 [XNIO-1 task-1] wCBaxydXTN6yinwzGE1bcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.924 [XNIO-1 task-1] wCBaxydXTN6yinwzGE1bcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.925 [XNIO-1 task-1] wCBaxydXTN6yinwzGE1bcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.925 [XNIO-1 task-1] wCBaxydXTN6yinwzGE1bcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.939 [XNIO-1 task-1] WoIzN6DKSKqlMAIDImbNMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:46.939 [XNIO-1 task-1] WoIzN6DKSKqlMAIDImbNMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.939 [XNIO-1 task-1] WoIzN6DKSKqlMAIDImbNMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.940 [XNIO-1 task-1] WoIzN6DKSKqlMAIDImbNMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:46.940 [XNIO-1 task-1] WoIzN6DKSKqlMAIDImbNMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9efa7-7066-445d-9047-eb6085289c76", "33c9efa7-7066-445d-9047-eb6085289c76", refreshToken) +09:00:46.941 [XNIO-1 task-1] WoIzN6DKSKqlMAIDImbNMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c9efa7-7066-445d-9047-eb6085289c76 is not found.","severity":"ERROR"} +09:00:46.943 [XNIO-1 task-1] 883FUhraS5-NrYt29rExdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.944 [XNIO-1 task-1] 883FUhraS5-NrYt29rExdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.944 [XNIO-1 task-1] 883FUhraS5-NrYt29rExdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.944 [XNIO-1 task-1] 883FUhraS5-NrYt29rExdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.953 [XNIO-1 task-1] 5XR8TQ6rSlCHM9NDHeDo4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.954 [XNIO-1 task-1] 5XR8TQ6rSlCHM9NDHeDo4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.954 [XNIO-1 task-1] 5XR8TQ6rSlCHM9NDHeDo4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.954 [XNIO-1 task-1] 5XR8TQ6rSlCHM9NDHeDo4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:46.954 [XNIO-1 task-1] 5XR8TQ6rSlCHM9NDHeDo4w DEBUG com.networknt.schema.TypeValidator debug - validate( "e417c4de-6f46-4cbb-8f28-07805a44e3b4", "e417c4de-6f46-4cbb-8f28-07805a44e3b4", refreshToken) +09:00:46.954 [XNIO-1 task-1] 5XR8TQ6rSlCHM9NDHeDo4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e417c4de-6f46-4cbb-8f28-07805a44e3b4 is not found.","severity":"ERROR"} +09:00:46.964 [XNIO-1 task-1] 7ZN1RgV0QrqWqlPuZsbj_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.964 [XNIO-1 task-1] 7ZN1RgV0QrqWqlPuZsbj_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.964 [XNIO-1 task-1] 7ZN1RgV0QrqWqlPuZsbj_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.966 [XNIO-1 task-1] 7ZN1RgV0QrqWqlPuZsbj_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.976 [XNIO-1 task-1] T8t8V5xEQhmfiiiGSuxn9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.977 [XNIO-1 task-1] T8t8V5xEQhmfiiiGSuxn9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.977 [XNIO-1 task-1] T8t8V5xEQhmfiiiGSuxn9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:46.980 [XNIO-1 task-1] T8t8V5xEQhmfiiiGSuxn9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.980 [XNIO-1 task-1] T8t8V5xEQhmfiiiGSuxn9g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:46.986 [XNIO-1 task-1] ZiRpSQkmQpC6bILvBXXEFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.986 [XNIO-1 task-1] ZiRpSQkmQpC6bILvBXXEFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.987 [XNIO-1 task-1] ZiRpSQkmQpC6bILvBXXEFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:46.988 [XNIO-1 task-1] ZiRpSQkmQpC6bILvBXXEFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.993 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cfbfccfb +09:00:46.995 [XNIO-1 task-1] aKD-W9ntRny6kRR4FIprVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:46.996 [XNIO-1 task-1] aKD-W9ntRny6kRR4FIprVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:46.996 [XNIO-1 task-1] aKD-W9ntRny6kRR4FIprVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:46.996 [XNIO-1 task-1] aKD-W9ntRny6kRR4FIprVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:46.997 [XNIO-1 task-1] aKD-W9ntRny6kRR4FIprVw DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9efa7-7066-445d-9047-eb6085289c76", "33c9efa7-7066-445d-9047-eb6085289c76", refreshToken) +09:00:46.997 [XNIO-1 task-1] aKD-W9ntRny6kRR4FIprVw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c9efa7-7066-445d-9047-eb6085289c76 is not found.","severity":"ERROR"} +09:00:47.005 [XNIO-1 task-1] 3yLFX051SG20i7-4bSk5sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.005 [XNIO-1 task-1] 3yLFX051SG20i7-4bSk5sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.006 [XNIO-1 task-1] 3yLFX051SG20i7-4bSk5sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.006 [XNIO-1 task-1] 3yLFX051SG20i7-4bSk5sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.006 [XNIO-1 task-1] 3yLFX051SG20i7-4bSk5sA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.009 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0186826 +09:00:47.011 [XNIO-1 task-1] NDMQSQMEQnGXM3fefb0CiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.011 [XNIO-1 task-1] NDMQSQMEQnGXM3fefb0CiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.011 [XNIO-1 task-1] NDMQSQMEQnGXM3fefb0CiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.011 [XNIO-1 task-1] NDMQSQMEQnGXM3fefb0CiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.016 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d0186826 +09:00:47.021 [XNIO-1 task-1] mUDp26ahQTmFZODhNDwQhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.021 [XNIO-1 task-1] mUDp26ahQTmFZODhNDwQhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.021 [XNIO-1 task-1] mUDp26ahQTmFZODhNDwQhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.022 [XNIO-1 task-1] mUDp26ahQTmFZODhNDwQhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.022 [XNIO-1 task-1] mUDp26ahQTmFZODhNDwQhw DEBUG com.networknt.schema.TypeValidator debug - validate( "1661ecf6-7658-47fa-b697-725b82a166f6", "1661ecf6-7658-47fa-b697-725b82a166f6", refreshToken) +09:00:47.024 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.036 [XNIO-1 task-1] gAO8z44_QuaZCuEE6BO0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.036 [XNIO-1 task-1] gAO8z44_QuaZCuEE6BO0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.037 [XNIO-1 task-1] gAO8z44_QuaZCuEE6BO0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.037 [XNIO-1 task-1] gAO8z44_QuaZCuEE6BO0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.037 [XNIO-1 task-1] gAO8z44_QuaZCuEE6BO0FA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.038 [XNIO-1 task-1] gAO8z44_QuaZCuEE6BO0FA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1661ecf6-7658-47fa-b697-725b82a166f6 is not found.","severity":"ERROR"} +09:00:47.042 [XNIO-1 task-1] Rf0IR8wlQ5CjPy_6aa369A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.042 [XNIO-1 task-1] Rf0IR8wlQ5CjPy_6aa369A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.042 [XNIO-1 task-1] Rf0IR8wlQ5CjPy_6aa369A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.042 [XNIO-1 task-1] Rf0IR8wlQ5CjPy_6aa369A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.043 [XNIO-1 task-1] Rf0IR8wlQ5CjPy_6aa369A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.046 [XNIO-1 task-1] qUzsrVrcS-as7nOJgMxTJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.046 [XNIO-1 task-1] qUzsrVrcS-as7nOJgMxTJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.046 [XNIO-1 task-1] qUzsrVrcS-as7nOJgMxTJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.047 [XNIO-1 task-1] qUzsrVrcS-as7nOJgMxTJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.047 [XNIO-1 task-1] qUzsrVrcS-as7nOJgMxTJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1661ecf6-7658-47fa-b697-725b82a166f6", "1661ecf6-7658-47fa-b697-725b82a166f6", refreshToken) +09:00:47.047 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.047 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cfbfccfb +09:00:47.052 [XNIO-1 task-1] dKO7eO9iSQabInYr5hKqig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:47.053 [XNIO-1 task-1] dKO7eO9iSQabInYr5hKqig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.053 [XNIO-1 task-1] dKO7eO9iSQabInYr5hKqig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.054 [XNIO-1 task-1] dKO7eO9iSQabInYr5hKqig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:47.054 [XNIO-1 task-1] dKO7eO9iSQabInYr5hKqig DEBUG com.networknt.schema.TypeValidator debug - validate( "af8155f4-2538-4ce1-b716-9b412af74b8e", "af8155f4-2538-4ce1-b716-9b412af74b8e", refreshToken) +09:00:47.054 [XNIO-1 task-1] dKO7eO9iSQabInYr5hKqig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af8155f4-2538-4ce1-b716-9b412af74b8e is not found.","severity":"ERROR"} +09:00:47.058 [XNIO-1 task-1] fr-xiH8rTd2KUVEgYickvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.058 [XNIO-1 task-1] fr-xiH8rTd2KUVEgYickvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.058 [XNIO-1 task-1] fr-xiH8rTd2KUVEgYickvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.058 [XNIO-1 task-1] fr-xiH8rTd2KUVEgYickvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.058 [XNIO-1 task-1] fr-xiH8rTd2KUVEgYickvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.059 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.059 [XNIO-1 task-1] fr-xiH8rTd2KUVEgYickvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1661ecf6-7658-47fa-b697-725b82a166f6 is not found.","severity":"ERROR"} +09:00:47.062 [XNIO-1 task-1] HBy4xlz4QCid6y1o2h16qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.063 [XNIO-1 task-1] HBy4xlz4QCid6y1o2h16qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.063 [XNIO-1 task-1] HBy4xlz4QCid6y1o2h16qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.063 [XNIO-1 task-1] HBy4xlz4QCid6y1o2h16qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.063 [XNIO-1 task-1] HBy4xlz4QCid6y1o2h16qQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af8155f4-2538-4ce1-b716-9b412af74b8e +09:00:47.067 [XNIO-1 task-1] tE85nasLRo-rMuy_9mmYvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.067 [XNIO-1 task-1] tE85nasLRo-rMuy_9mmYvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.068 [XNIO-1 task-1] tE85nasLRo-rMuy_9mmYvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.068 [XNIO-1 task-1] tE85nasLRo-rMuy_9mmYvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.068 [XNIO-1 task-1] tE85nasLRo-rMuy_9mmYvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1661ecf6-7658-47fa-b697-725b82a166f6", "1661ecf6-7658-47fa-b697-725b82a166f6", refreshToken) +09:00:47.068 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.071 [XNIO-1 task-1] QY5hpIMaSJ2N6nbREAfKvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:47.071 [XNIO-1 task-1] QY5hpIMaSJ2N6nbREAfKvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.071 [XNIO-1 task-1] QY5hpIMaSJ2N6nbREAfKvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.071 [XNIO-1 task-1] QY5hpIMaSJ2N6nbREAfKvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af8155f4-2538-4ce1-b716-9b412af74b8e, base path is set to: null +09:00:47.072 [XNIO-1 task-1] QY5hpIMaSJ2N6nbREAfKvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "af8155f4-2538-4ce1-b716-9b412af74b8e", "af8155f4-2538-4ce1-b716-9b412af74b8e", refreshToken) +09:00:47.072 [XNIO-1 task-1] QY5hpIMaSJ2N6nbREAfKvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af8155f4-2538-4ce1-b716-9b412af74b8e is not found.","severity":"ERROR"} +09:00:47.075 [XNIO-1 task-1] tHLqEKwrS82dhgyqJvncqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.075 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d0186826 +09:00:47.075 [XNIO-1 task-1] tHLqEKwrS82dhgyqJvncqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.075 [XNIO-1 task-1] tHLqEKwrS82dhgyqJvncqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.075 [XNIO-1 task-1] tHLqEKwrS82dhgyqJvncqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.076 [XNIO-1 task-1] tHLqEKwrS82dhgyqJvncqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.079 [XNIO-1 task-1] 6mAwoUi7RwWFRoHNCGnqSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.080 [XNIO-1 task-1] 6mAwoUi7RwWFRoHNCGnqSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.080 [XNIO-1 task-1] 6mAwoUi7RwWFRoHNCGnqSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.080 [XNIO-1 task-1] 6mAwoUi7RwWFRoHNCGnqSQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.088 [XNIO-1 task-1] HcwVpmQ0SXeNRdsAvjk24A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.089 [XNIO-1 task-1] HcwVpmQ0SXeNRdsAvjk24A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.089 [XNIO-1 task-1] HcwVpmQ0SXeNRdsAvjk24A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.089 [XNIO-1 task-1] HcwVpmQ0SXeNRdsAvjk24A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.090 [XNIO-1 task-1] HcwVpmQ0SXeNRdsAvjk24A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.090 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:700fe1ef-0cd6-4b1c-b37e-420c228de4fa +09:00:47.090 [XNIO-1 task-1] HcwVpmQ0SXeNRdsAvjk24A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:47.094 [XNIO-1 task-1] 68YktrLKTtmrEMcrWUffAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.094 [XNIO-1 task-1] 68YktrLKTtmrEMcrWUffAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.094 [XNIO-1 task-1] 68YktrLKTtmrEMcrWUffAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.094 [XNIO-1 task-1] 68YktrLKTtmrEMcrWUffAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.095 [XNIO-1 task-1] 68YktrLKTtmrEMcrWUffAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.095 [XNIO-1 task-1] 68YktrLKTtmrEMcrWUffAQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.098 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bb82c5a3 +09:00:47.100 [XNIO-1 task-1] -fZn4KQlTUGUXOjVg0w0Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.100 [XNIO-1 task-1] -fZn4KQlTUGUXOjVg0w0Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.100 [XNIO-1 task-1] -fZn4KQlTUGUXOjVg0w0Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.100 [XNIO-1 task-1] -fZn4KQlTUGUXOjVg0w0Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.101 [XNIO-1 task-1] -fZn4KQlTUGUXOjVg0w0Og DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:47.105 [XNIO-1 task-1] iw8DZgVYS5-Lr9aypzS6fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.105 [XNIO-1 task-1] iw8DZgVYS5-Lr9aypzS6fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.105 [XNIO-1 task-1] iw8DZgVYS5-Lr9aypzS6fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.105 [XNIO-1 task-1] iw8DZgVYS5-Lr9aypzS6fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.105 [XNIO-1 task-1] iw8DZgVYS5-Lr9aypzS6fA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9efa7-7066-445d-9047-eb6085289c76", "33c9efa7-7066-445d-9047-eb6085289c76", refreshToken) +09:00:47.106 [XNIO-1 task-1] iw8DZgVYS5-Lr9aypzS6fA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c9efa7-7066-445d-9047-eb6085289c76 is not found.","severity":"ERROR"} +09:00:47.112 [XNIO-1 task-1] FegFpOfYSVaNCwnAkXTTDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.112 [XNIO-1 task-1] FegFpOfYSVaNCwnAkXTTDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.112 [XNIO-1 task-1] FegFpOfYSVaNCwnAkXTTDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.112 [XNIO-1 task-1] FegFpOfYSVaNCwnAkXTTDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.117 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c2206c0d-4c47-43ad-97ae-868e8ce4977b +09:00:47.119 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c2206c0d-4c47-43ad-97ae-868e8ce4977b +09:00:47.125 [XNIO-1 task-1] uZPREWxjSie3_btx-GVH0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.125 [XNIO-1 task-1] uZPREWxjSie3_btx-GVH0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.125 [XNIO-1 task-1] uZPREWxjSie3_btx-GVH0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.126 [XNIO-1 task-1] uZPREWxjSie3_btx-GVH0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.139 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cfbfccfb +09:00:47.146 [XNIO-1 task-1] BBVOZsDqQc2prOYcnD11FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.146 [XNIO-1 task-1] BBVOZsDqQc2prOYcnD11FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.147 [XNIO-1 task-1] BBVOZsDqQc2prOYcnD11FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.147 [XNIO-1 task-1] BBVOZsDqQc2prOYcnD11FA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.156 [XNIO-1 task-1] PMz0H8T1TiGJK1viQRKiaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.157 [XNIO-1 task-1] PMz0H8T1TiGJK1viQRKiaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.157 [XNIO-1 task-1] PMz0H8T1TiGJK1viQRKiaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.157 [XNIO-1 task-1] PMz0H8T1TiGJK1viQRKiaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.157 [XNIO-1 task-1] PMz0H8T1TiGJK1viQRKiaA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.160 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bb82c5a3 +09:00:47.165 [XNIO-1 task-1] u2zYruj1SNyLq-822KpSSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.165 [XNIO-1 task-1] u2zYruj1SNyLq-822KpSSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.165 [XNIO-1 task-1] u2zYruj1SNyLq-822KpSSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.165 [XNIO-1 task-1] u2zYruj1SNyLq-822KpSSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.166 [XNIO-1 task-1] u2zYruj1SNyLq-822KpSSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:47.172 [XNIO-1 task-1] dPw3qKmFSK6m_sXSOZ3OWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.172 [XNIO-1 task-1] dPw3qKmFSK6m_sXSOZ3OWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.172 [XNIO-1 task-1] dPw3qKmFSK6m_sXSOZ3OWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.172 [XNIO-1 task-1] dPw3qKmFSK6m_sXSOZ3OWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.172 [XNIO-1 task-1] dPw3qKmFSK6m_sXSOZ3OWA DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9efa7-7066-445d-9047-eb6085289c76", "33c9efa7-7066-445d-9047-eb6085289c76", refreshToken) +09:00:47.173 [XNIO-1 task-1] dPw3qKmFSK6m_sXSOZ3OWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c9efa7-7066-445d-9047-eb6085289c76 is not found.","severity":"ERROR"} +09:00:47.177 [XNIO-1 task-1] Suuzx6WzT-yFsqqXf2ZXSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.177 [XNIO-1 task-1] Suuzx6WzT-yFsqqXf2ZXSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.178 [XNIO-1 task-1] Suuzx6WzT-yFsqqXf2ZXSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.178 [XNIO-1 task-1] Suuzx6WzT-yFsqqXf2ZXSw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.188 [XNIO-1 task-1] 63M11AV-QkuyqBnBWOvJ5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.189 [XNIO-1 task-1] 63M11AV-QkuyqBnBWOvJ5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.189 [XNIO-1 task-1] 63M11AV-QkuyqBnBWOvJ5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.189 [XNIO-1 task-1] 63M11AV-QkuyqBnBWOvJ5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.189 [XNIO-1 task-1] 63M11AV-QkuyqBnBWOvJ5g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.194 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bb82c5a3 +09:00:47.197 [XNIO-1 task-1] eLPtTOiyTJiBAKzYP-9Z4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.197 [XNIO-1 task-1] eLPtTOiyTJiBAKzYP-9Z4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.197 [XNIO-1 task-1] eLPtTOiyTJiBAKzYP-9Z4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.197 [XNIO-1 task-1] eLPtTOiyTJiBAKzYP-9Z4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.198 [XNIO-1 task-1] eLPtTOiyTJiBAKzYP-9Z4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:47.198 [XNIO-1 task-1] eLPtTOiyTJiBAKzYP-9Z4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.199 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d54619e6 +09:00:47.200 [XNIO-1 task-1] NlV8xuVmQe-S2kb-i0211g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:47.200 [XNIO-1 task-1] NlV8xuVmQe-S2kb-i0211g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.200 [XNIO-1 task-1] NlV8xuVmQe-S2kb-i0211g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.201 [XNIO-1 task-1] NlV8xuVmQe-S2kb-i0211g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:47.201 [XNIO-1 task-1] NlV8xuVmQe-S2kb-i0211g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c9efa7-7066-445d-9047-eb6085289c76 +09:00:47.206 [XNIO-1 task-1] omIO1VmWRiOSK_gkoXwF_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:47.207 [XNIO-1 task-1] omIO1VmWRiOSK_gkoXwF_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.207 [XNIO-1 task-1] omIO1VmWRiOSK_gkoXwF_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.207 [XNIO-1 task-1] omIO1VmWRiOSK_gkoXwF_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:47.207 [XNIO-1 task-1] omIO1VmWRiOSK_gkoXwF_g DEBUG com.networknt.schema.TypeValidator debug - validate( "e417c4de-6f46-4cbb-8f28-07805a44e3b4", "e417c4de-6f46-4cbb-8f28-07805a44e3b4", refreshToken) +09:00:47.207 [XNIO-1 task-1] omIO1VmWRiOSK_gkoXwF_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e417c4de-6f46-4cbb-8f28-07805a44e3b4 is not found.","severity":"ERROR"} +09:00:47.210 [XNIO-1 task-1] wBQAnMOiTC2lzb4MIwmiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.210 [XNIO-1 task-1] wBQAnMOiTC2lzb4MIwmiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.210 [XNIO-1 task-1] wBQAnMOiTC2lzb4MIwmiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.210 [XNIO-1 task-1] wBQAnMOiTC2lzb4MIwmiqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.218 [XNIO-1 task-1] 6Rc_0r2bRTawcOuffDE56g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.218 [XNIO-1 task-1] 6Rc_0r2bRTawcOuffDE56g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.218 [XNIO-1 task-1] 6Rc_0r2bRTawcOuffDE56g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.218 [XNIO-1 task-1] 6Rc_0r2bRTawcOuffDE56g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.219 [XNIO-1 task-1] 6Rc_0r2bRTawcOuffDE56g DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.219 [XNIO-1 task-1] 6Rc_0r2bRTawcOuffDE56g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.226 [XNIO-1 task-1] qO24VXZ-Rp2vVR8jpViyQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.226 [XNIO-1 task-1] qO24VXZ-Rp2vVR8jpViyQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.226 [XNIO-1 task-1] qO24VXZ-Rp2vVR8jpViyQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.226 [XNIO-1 task-1] qO24VXZ-Rp2vVR8jpViyQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.227 [XNIO-1 task-1] qO24VXZ-Rp2vVR8jpViyQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.228 [XNIO-1 task-1] qO24VXZ-Rp2vVR8jpViyQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1661ecf6-7658-47fa-b697-725b82a166f6 is not found.","severity":"ERROR"} +09:00:47.230 [XNIO-1 task-1] I7ls3oTrQ6esl72P9VylJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.230 [XNIO-1 task-1] I7ls3oTrQ6esl72P9VylJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.231 [XNIO-1 task-1] I7ls3oTrQ6esl72P9VylJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.231 [XNIO-1 task-1] I7ls3oTrQ6esl72P9VylJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.231 [XNIO-1 task-1] I7ls3oTrQ6esl72P9VylJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.278 [XNIO-1 task-1] Yu8sEGQKSG6kDb2QpbWhyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.278 [XNIO-1 task-1] Yu8sEGQKSG6kDb2QpbWhyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.278 [XNIO-1 task-1] Yu8sEGQKSG6kDb2QpbWhyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.278 [XNIO-1 task-1] Yu8sEGQKSG6kDb2QpbWhyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.279 [XNIO-1 task-1] Yu8sEGQKSG6kDb2QpbWhyw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.280 [XNIO-1 task-1] Yu8sEGQKSG6kDb2QpbWhyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1661ecf6-7658-47fa-b697-725b82a166f6 is not found.","severity":"ERROR"} +09:00:47.284 [XNIO-1 task-1] Ks5xRGn_S7OfQm4yskqYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.284 [XNIO-1 task-1] Ks5xRGn_S7OfQm4yskqYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.284 [XNIO-1 task-1] Ks5xRGn_S7OfQm4yskqYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.284 [XNIO-1 task-1] Ks5xRGn_S7OfQm4yskqYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.285 [XNIO-1 task-1] Ks5xRGn_S7OfQm4yskqYGw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.296 [XNIO-1 task-1] i9GVWuA8Qria4lIw4lvvCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.296 [XNIO-1 task-1] i9GVWuA8Qria4lIw4lvvCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.296 [XNIO-1 task-1] i9GVWuA8Qria4lIw4lvvCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.297 [XNIO-1 task-1] i9GVWuA8Qria4lIw4lvvCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.297 [XNIO-1 task-1] i9GVWuA8Qria4lIw4lvvCA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.307 [XNIO-1 task-1] Ofr-2y87SCSlPOKoJPfM7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.309 [XNIO-1 task-1] Ofr-2y87SCSlPOKoJPfM7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.309 [XNIO-1 task-1] Ofr-2y87SCSlPOKoJPfM7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.310 [XNIO-1 task-1] Ofr-2y87SCSlPOKoJPfM7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.310 [XNIO-1 task-1] Ofr-2y87SCSlPOKoJPfM7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1661ecf6-7658-47fa-b697-725b82a166f6", "1661ecf6-7658-47fa-b697-725b82a166f6", refreshToken) +09:00:47.310 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.314 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d54619e6 +09:00:47.320 [XNIO-1 task-1] _ip1D9NSSVSSC_LzbEKrPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:47.320 [XNIO-1 task-1] _ip1D9NSSVSSC_LzbEKrPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.320 [XNIO-1 task-1] _ip1D9NSSVSSC_LzbEKrPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.320 [XNIO-1 task-1] _ip1D9NSSVSSC_LzbEKrPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:47.321 [XNIO-1 task-1] _ip1D9NSSVSSC_LzbEKrPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:47.321 [XNIO-1 task-1] _ip1D9NSSVSSC_LzbEKrPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:47.324 [XNIO-1 task-1] r3BvQguUQYm5lFISOIAKmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.324 [XNIO-1 task-1] r3BvQguUQYm5lFISOIAKmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.324 [XNIO-1 task-1] r3BvQguUQYm5lFISOIAKmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.324 [XNIO-1 task-1] r3BvQguUQYm5lFISOIAKmA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.334 [XNIO-1 task-1] 5-3f34WgSDir3QPoyPPiEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.335 [XNIO-1 task-1] 5-3f34WgSDir3QPoyPPiEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.336 [XNIO-1 task-1] 5-3f34WgSDir3QPoyPPiEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.336 [XNIO-1 task-1] 5-3f34WgSDir3QPoyPPiEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.336 [XNIO-1 task-1] 5-3f34WgSDir3QPoyPPiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1661ecf6-7658-47fa-b697-725b82a166f6", "1661ecf6-7658-47fa-b697-725b82a166f6", refreshToken) +09:00:47.338 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.344 [XNIO-1 task-1] ElEL0dvrTySN5VNghuvE2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.344 [XNIO-1 task-1] ElEL0dvrTySN5VNghuvE2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.344 [XNIO-1 task-1] ElEL0dvrTySN5VNghuvE2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.344 [XNIO-1 task-1] ElEL0dvrTySN5VNghuvE2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.345 [XNIO-1 task-1] ElEL0dvrTySN5VNghuvE2w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.353 [XNIO-1 task-1] kXCrOSe4Q5S77diI37sG7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.354 [XNIO-1 task-1] kXCrOSe4Q5S77diI37sG7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.354 [XNIO-1 task-1] kXCrOSe4Q5S77diI37sG7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.354 [XNIO-1 task-1] kXCrOSe4Q5S77diI37sG7w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.360 [XNIO-1 task-1] U01PzYV6Qmq3sMD0UsqJGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.360 [XNIO-1 task-1] U01PzYV6Qmq3sMD0UsqJGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.360 [XNIO-1 task-1] U01PzYV6Qmq3sMD0UsqJGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.360 [XNIO-1 task-1] U01PzYV6Qmq3sMD0UsqJGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.360 [XNIO-1 task-1] U01PzYV6Qmq3sMD0UsqJGg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.369 [XNIO-1 task-1] NWs--YyPTGejALOjlTtcyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.370 [XNIO-1 task-1] NWs--YyPTGejALOjlTtcyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.370 [XNIO-1 task-1] NWs--YyPTGejALOjlTtcyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.370 [XNIO-1 task-1] NWs--YyPTGejALOjlTtcyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.370 [XNIO-1 task-1] NWs--YyPTGejALOjlTtcyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.374 [XNIO-1 task-1] pbVTgQ0sQJeg4D9DJqU52Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.374 [XNIO-1 task-1] pbVTgQ0sQJeg4D9DJqU52Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.375 [XNIO-1 task-1] pbVTgQ0sQJeg4D9DJqU52Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.375 [XNIO-1 task-1] pbVTgQ0sQJeg4D9DJqU52Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.375 [XNIO-1 task-1] pbVTgQ0sQJeg4D9DJqU52Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.384 [XNIO-1 task-1] DrL-cDhUQjqAQF_0nI-usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.384 [XNIO-1 task-1] DrL-cDhUQjqAQF_0nI-usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.384 [XNIO-1 task-1] DrL-cDhUQjqAQF_0nI-usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.384 [XNIO-1 task-1] DrL-cDhUQjqAQF_0nI-usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.384 [XNIO-1 task-1] DrL-cDhUQjqAQF_0nI-usQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.385 [XNIO-1 task-1] DrL-cDhUQjqAQF_0nI-usQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1661ecf6-7658-47fa-b697-725b82a166f6 is not found.","severity":"ERROR"} +09:00:47.388 [XNIO-1 task-1] Ypd4bcwRRMOv_MbDye7qKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.388 [XNIO-1 task-1] Ypd4bcwRRMOv_MbDye7qKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.388 [XNIO-1 task-1] Ypd4bcwRRMOv_MbDye7qKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.389 [XNIO-1 task-1] Ypd4bcwRRMOv_MbDye7qKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.390 [XNIO-1 task-1] Ypd4bcwRRMOv_MbDye7qKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.398 [XNIO-1 task-1] 24ZCvMq5S-yxineSe4LhdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.398 [XNIO-1 task-1] 24ZCvMq5S-yxineSe4LhdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.398 [XNIO-1 task-1] 24ZCvMq5S-yxineSe4LhdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.398 [XNIO-1 task-1] 24ZCvMq5S-yxineSe4LhdA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.404 [XNIO-1 task-1] LCeO1m6aSCCvDIRGYeDEOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.405 [XNIO-1 task-1] LCeO1m6aSCCvDIRGYeDEOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.405 [XNIO-1 task-1] LCeO1m6aSCCvDIRGYeDEOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.405 [XNIO-1 task-1] LCeO1m6aSCCvDIRGYeDEOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.405 [XNIO-1 task-1] LCeO1m6aSCCvDIRGYeDEOA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.406 [XNIO-1 task-1] LCeO1m6aSCCvDIRGYeDEOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.409 [XNIO-1 task-1] xyekvlv_R3KE_vxDwWHGUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.409 [XNIO-1 task-1] xyekvlv_R3KE_vxDwWHGUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.409 [XNIO-1 task-1] xyekvlv_R3KE_vxDwWHGUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.410 [XNIO-1 task-1] xyekvlv_R3KE_vxDwWHGUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:47.410 [XNIO-1 task-1] xyekvlv_R3KE_vxDwWHGUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:47.415 [XNIO-1 task-1] I3YQiZguQfi3CH1Nw5ZI2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.416 [XNIO-1 task-1] I3YQiZguQfi3CH1Nw5ZI2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.416 [XNIO-1 task-1] I3YQiZguQfi3CH1Nw5ZI2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.416 [XNIO-1 task-1] I3YQiZguQfi3CH1Nw5ZI2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.416 [XNIO-1 task-1] I3YQiZguQfi3CH1Nw5ZI2A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.428 [XNIO-1 task-1] HtL6cpKtRtyVw0v5xg4FlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.428 [XNIO-1 task-1] HtL6cpKtRtyVw0v5xg4FlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.428 [XNIO-1 task-1] HtL6cpKtRtyVw0v5xg4FlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.429 [XNIO-1 task-1] HtL6cpKtRtyVw0v5xg4FlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.440 [XNIO-1 task-1] LwusmsyIQQqxjPOUqIQkFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.440 [XNIO-1 task-1] LwusmsyIQQqxjPOUqIQkFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.440 [XNIO-1 task-1] LwusmsyIQQqxjPOUqIQkFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.441 [XNIO-1 task-1] LwusmsyIQQqxjPOUqIQkFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.442 [XNIO-1 task-1] LwusmsyIQQqxjPOUqIQkFA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.442 [XNIO-1 task-1] LwusmsyIQQqxjPOUqIQkFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.446 [XNIO-1 task-1] E6ZlwqXaTEySi5-1x41MnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:47.446 [XNIO-1 task-1] E6ZlwqXaTEySi5-1x41MnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.446 [XNIO-1 task-1] E6ZlwqXaTEySi5-1x41MnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.446 [XNIO-1 task-1] E6ZlwqXaTEySi5-1x41MnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76 +09:00:47.446 [XNIO-1 task-1] E6ZlwqXaTEySi5-1x41MnA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33c9efa7-7066-445d-9047-eb6085289c76 +09:00:47.451 [XNIO-1 task-1] EnMKJnJVTPmBWU0XshloOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.451 [XNIO-1 task-1] EnMKJnJVTPmBWU0XshloOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.451 [XNIO-1 task-1] EnMKJnJVTPmBWU0XshloOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.452 [XNIO-1 task-1] EnMKJnJVTPmBWU0XshloOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.452 [XNIO-1 task-1] EnMKJnJVTPmBWU0XshloOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.452 [XNIO-1 task-1] EnMKJnJVTPmBWU0XshloOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.455 [XNIO-1 task-1] IsSr2WBRQPu7hh1UPeZVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.455 [XNIO-1 task-1] IsSr2WBRQPu7hh1UPeZVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.455 [XNIO-1 task-1] IsSr2WBRQPu7hh1UPeZVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.456 [XNIO-1 task-1] IsSr2WBRQPu7hh1UPeZVwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.465 [XNIO-1 task-1] 5a5nEa2fQTO1yp53YxJkOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.465 [XNIO-1 task-1] 5a5nEa2fQTO1yp53YxJkOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.465 [XNIO-1 task-1] 5a5nEa2fQTO1yp53YxJkOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.465 [XNIO-1 task-1] 5a5nEa2fQTO1yp53YxJkOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.466 [XNIO-1 task-1] 5a5nEa2fQTO1yp53YxJkOw DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9efa7-7066-445d-9047-eb6085289c76", "33c9efa7-7066-445d-9047-eb6085289c76", refreshToken) +09:00:47.466 [XNIO-1 task-1] 5a5nEa2fQTO1yp53YxJkOw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c9efa7-7066-445d-9047-eb6085289c76 is not found.","severity":"ERROR"} +09:00:47.472 [XNIO-1 task-1] bG_jnrBbRlCEYZJFydeFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.472 [XNIO-1 task-1] bG_jnrBbRlCEYZJFydeFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.472 [XNIO-1 task-1] bG_jnrBbRlCEYZJFydeFYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.472 [XNIO-1 task-1] bG_jnrBbRlCEYZJFydeFYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.477 [XNIO-1 task-1] Sv22Gy-HTO-oHxa9s93s2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.478 [XNIO-1 task-1] Sv22Gy-HTO-oHxa9s93s2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.478 [XNIO-1 task-1] Sv22Gy-HTO-oHxa9s93s2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.478 [XNIO-1 task-1] Sv22Gy-HTO-oHxa9s93s2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.478 [XNIO-1 task-1] Sv22Gy-HTO-oHxa9s93s2w DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.478 [XNIO-1 task-1] Sv22Gy-HTO-oHxa9s93s2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.481 [XNIO-1 task-1] hdA36e70TcuFqGv8A55PXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.481 [XNIO-1 task-1] hdA36e70TcuFqGv8A55PXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.481 [XNIO-1 task-1] hdA36e70TcuFqGv8A55PXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.482 [XNIO-1 task-1] hdA36e70TcuFqGv8A55PXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.487 [XNIO-1 task-1] qIZl-yDiSFS9nSCiMwx-5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.487 [XNIO-1 task-1] qIZl-yDiSFS9nSCiMwx-5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.487 [XNIO-1 task-1] qIZl-yDiSFS9nSCiMwx-5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.487 [XNIO-1 task-1] qIZl-yDiSFS9nSCiMwx-5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33c9efa7-7066-445d-9047-eb6085289c76, base path is set to: null +09:00:47.488 [XNIO-1 task-1] qIZl-yDiSFS9nSCiMwx-5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "33c9efa7-7066-445d-9047-eb6085289c76", "33c9efa7-7066-445d-9047-eb6085289c76", refreshToken) +09:00:47.488 [XNIO-1 task-1] qIZl-yDiSFS9nSCiMwx-5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33c9efa7-7066-445d-9047-eb6085289c76 is not found.","severity":"ERROR"} +09:00:47.491 [XNIO-1 task-1] 6_VEyz-MRySm1gUDGqyPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.491 [XNIO-1 task-1] 6_VEyz-MRySm1gUDGqyPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.491 [XNIO-1 task-1] 6_VEyz-MRySm1gUDGqyPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.491 [XNIO-1 task-1] 6_VEyz-MRySm1gUDGqyPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.491 [XNIO-1 task-1] 6_VEyz-MRySm1gUDGqyPVg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.504 [XNIO-1 task-1] YmYnk31uQai_0qX_G9EtAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.504 [XNIO-1 task-1] YmYnk31uQai_0qX_G9EtAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.504 [XNIO-1 task-1] YmYnk31uQai_0qX_G9EtAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.505 [XNIO-1 task-1] YmYnk31uQai_0qX_G9EtAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.505 [XNIO-1 task-1] YmYnk31uQai_0qX_G9EtAA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.518 [XNIO-1 task-1] 5uwQSCQDRuKU4PzB49zf_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.518 [XNIO-1 task-1] 5uwQSCQDRuKU4PzB49zf_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.519 [XNIO-1 task-1] 5uwQSCQDRuKU4PzB49zf_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.519 [XNIO-1 task-1] 5uwQSCQDRuKU4PzB49zf_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.530 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:77d53dce-9bb6-4c7e-a013-eda1cd154bf4 +09:00:47.531 [XNIO-1 task-1] PEGZzdRKRTCgIsKoDJsC2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.531 [XNIO-1 task-1] PEGZzdRKRTCgIsKoDJsC2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.531 [XNIO-1 task-1] PEGZzdRKRTCgIsKoDJsC2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.532 [XNIO-1 task-1] PEGZzdRKRTCgIsKoDJsC2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.540 [XNIO-1 task-1] F26rPvebTVSiHMhCBoJarQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.541 [XNIO-1 task-1] F26rPvebTVSiHMhCBoJarQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.541 [XNIO-1 task-1] F26rPvebTVSiHMhCBoJarQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.541 [XNIO-1 task-1] F26rPvebTVSiHMhCBoJarQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:47.541 [XNIO-1 task-1] F26rPvebTVSiHMhCBoJarQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:47.541 [XNIO-1 task-1] F26rPvebTVSiHMhCBoJarQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:47.550 [XNIO-1 task-1] lBPklsv8S72VdLgN0w6KdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.550 [XNIO-1 task-1] lBPklsv8S72VdLgN0w6KdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.550 [XNIO-1 task-1] lBPklsv8S72VdLgN0w6KdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.551 [XNIO-1 task-1] lBPklsv8S72VdLgN0w6KdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.558 [XNIO-1 task-1] aL0ou5SQQ5ii0hOnogZRgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.558 [XNIO-1 task-1] aL0ou5SQQ5ii0hOnogZRgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.558 [XNIO-1 task-1] aL0ou5SQQ5ii0hOnogZRgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.558 [XNIO-1 task-1] aL0ou5SQQ5ii0hOnogZRgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.559 [XNIO-1 task-1] aL0ou5SQQ5ii0hOnogZRgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1661ecf6-7658-47fa-b697-725b82a166f6", "1661ecf6-7658-47fa-b697-725b82a166f6", refreshToken) +09:00:47.559 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.570 [XNIO-1 task-1] xpxHlZZiTiGlZTOTB3XvXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:47.570 [XNIO-1 task-1] xpxHlZZiTiGlZTOTB3XvXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.570 [XNIO-1 task-1] xpxHlZZiTiGlZTOTB3XvXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.571 [XNIO-1 task-1] xpxHlZZiTiGlZTOTB3XvXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:47.571 [XNIO-1 task-1] xpxHlZZiTiGlZTOTB3XvXg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:47.572 [XNIO-1 task-1] xpxHlZZiTiGlZTOTB3XvXg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:47.579 [XNIO-1 task-1] ckICBJxMT62XpKOcEUglcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.580 [XNIO-1 task-1] ckICBJxMT62XpKOcEUglcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.580 [XNIO-1 task-1] ckICBJxMT62XpKOcEUglcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.580 [XNIO-1 task-1] ckICBJxMT62XpKOcEUglcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.581 [XNIO-1 task-1] ckICBJxMT62XpKOcEUglcw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.596 [XNIO-1 task-1] bLbv3A8IS7q2yVawRXMH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.596 [XNIO-1 task-1] bLbv3A8IS7q2yVawRXMH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.596 [XNIO-1 task-1] bLbv3A8IS7q2yVawRXMH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.596 [XNIO-1 task-1] bLbv3A8IS7q2yVawRXMH4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.596 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4fa1b884-8492-49f0-84cd-ef7448f9e059 +09:00:47.603 [XNIO-1 task-1] -XaT3k8RRkekLs2C-GWzSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.603 [XNIO-1 task-1] -XaT3k8RRkekLs2C-GWzSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.604 [XNIO-1 task-1] -XaT3k8RRkekLs2C-GWzSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.604 [XNIO-1 task-1] -XaT3k8RRkekLs2C-GWzSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.604 [XNIO-1 task-1] -XaT3k8RRkekLs2C-GWzSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.615 [XNIO-1 task-1] CwiXEMOST96oRTwWhgIYuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.616 [XNIO-1 task-1] CwiXEMOST96oRTwWhgIYuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.616 [XNIO-1 task-1] CwiXEMOST96oRTwWhgIYuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.616 [XNIO-1 task-1] CwiXEMOST96oRTwWhgIYuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.616 [XNIO-1 task-1] CwiXEMOST96oRTwWhgIYuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.617 [XNIO-1 task-1] CwiXEMOST96oRTwWhgIYuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1661ecf6-7658-47fa-b697-725b82a166f6 is not found.","severity":"ERROR"} +09:00:47.620 [XNIO-1 task-1] x14BLr2BRue_MTmfY9oPJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.620 [XNIO-1 task-1] x14BLr2BRue_MTmfY9oPJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.620 [XNIO-1 task-1] x14BLr2BRue_MTmfY9oPJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.621 [XNIO-1 task-1] x14BLr2BRue_MTmfY9oPJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.621 [XNIO-1 task-1] x14BLr2BRue_MTmfY9oPJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.624 [XNIO-1 task-1] r6IHei6QRXiE7dZpW8O-JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.625 [XNIO-1 task-1] r6IHei6QRXiE7dZpW8O-JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.625 [XNIO-1 task-1] r6IHei6QRXiE7dZpW8O-JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.625 [XNIO-1 task-1] r6IHei6QRXiE7dZpW8O-JA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.625 [XNIO-1 task-1] r6IHei6QRXiE7dZpW8O-JA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.639 [XNIO-1 task-1] jD1RUjN6St2Q752gBSNfyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.640 [XNIO-1 task-1] jD1RUjN6St2Q752gBSNfyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.641 [XNIO-1 task-1] jD1RUjN6St2Q752gBSNfyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.641 [XNIO-1 task-1] jD1RUjN6St2Q752gBSNfyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.641 [XNIO-1 task-1] jD1RUjN6St2Q752gBSNfyA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e5eb6207-745a-4727-86ed-cae1ddf126dd +09:00:47.655 [XNIO-1 task-1] 6OUaFKs2Q2GZoJCNW8oo1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.656 [XNIO-1 task-1] 6OUaFKs2Q2GZoJCNW8oo1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.656 [XNIO-1 task-1] 6OUaFKs2Q2GZoJCNW8oo1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.656 [XNIO-1 task-1] 6OUaFKs2Q2GZoJCNW8oo1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1661ecf6-7658-47fa-b697-725b82a166f6, base path is set to: null +09:00:47.656 [XNIO-1 task-1] 6OUaFKs2Q2GZoJCNW8oo1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1661ecf6-7658-47fa-b697-725b82a166f6", "1661ecf6-7658-47fa-b697-725b82a166f6", refreshToken) +09:00:47.656 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1661ecf6-7658-47fa-b697-725b82a166f6 +09:00:47.660 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8f6e656a-cd76-4198-8304-e8d97a929a24 +09:00:47.665 [XNIO-1 task-1] nM56n4KmTWCCpCH4Pba39Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.665 [XNIO-1 task-1] nM56n4KmTWCCpCH4Pba39Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.665 [XNIO-1 task-1] nM56n4KmTWCCpCH4Pba39Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.666 [XNIO-1 task-1] nM56n4KmTWCCpCH4Pba39Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.666 [XNIO-1 task-1] nM56n4KmTWCCpCH4Pba39Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.682 [XNIO-1 task-1] 6nKC5b_JQE6hvUCcAcE7SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.682 [XNIO-1 task-1] 6nKC5b_JQE6hvUCcAcE7SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.682 [XNIO-1 task-1] 6nKC5b_JQE6hvUCcAcE7SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.682 [XNIO-1 task-1] 6nKC5b_JQE6hvUCcAcE7SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.683 [XNIO-1 task-1] 6nKC5b_JQE6hvUCcAcE7SQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.697 [XNIO-1 task-1] diuRFtsDTSGLiENYMFis1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.697 [XNIO-1 task-1] diuRFtsDTSGLiENYMFis1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.697 [XNIO-1 task-1] diuRFtsDTSGLiENYMFis1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.698 [XNIO-1 task-1] diuRFtsDTSGLiENYMFis1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.698 [XNIO-1 task-1] diuRFtsDTSGLiENYMFis1A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.705 [XNIO-1 task-1] BAqtOVPwQMeZR7dyiFwh5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.705 [XNIO-1 task-1] BAqtOVPwQMeZR7dyiFwh5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.705 [XNIO-1 task-1] BAqtOVPwQMeZR7dyiFwh5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.705 [XNIO-1 task-1] BAqtOVPwQMeZR7dyiFwh5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.717 [XNIO-1 task-1] CMpQnMIqSZmLhKrW5AwwXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f7f97f8c-3308-4660-bb0a-6665e224f62f, base path is set to: null +09:00:47.718 [XNIO-1 task-1] CMpQnMIqSZmLhKrW5AwwXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.718 [XNIO-1 task-1] CMpQnMIqSZmLhKrW5AwwXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.719 [XNIO-1 task-1] CMpQnMIqSZmLhKrW5AwwXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f7f97f8c-3308-4660-bb0a-6665e224f62f, base path is set to: null +09:00:47.719 [XNIO-1 task-1] CMpQnMIqSZmLhKrW5AwwXw DEBUG com.networknt.schema.TypeValidator debug - validate( "f7f97f8c-3308-4660-bb0a-6665e224f62f", "f7f97f8c-3308-4660-bb0a-6665e224f62f", refreshToken) +09:00:47.736 [XNIO-1 task-1] VchTRaovQzWugJIsy5uWcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:47.736 [XNIO-1 task-1] VchTRaovQzWugJIsy5uWcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.736 [XNIO-1 task-1] VchTRaovQzWugJIsy5uWcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.736 [XNIO-1 task-1] VchTRaovQzWugJIsy5uWcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:47.736 [XNIO-1 task-1] VchTRaovQzWugJIsy5uWcA DEBUG com.networknt.schema.TypeValidator debug - validate( "e417c4de-6f46-4cbb-8f28-07805a44e3b4", "e417c4de-6f46-4cbb-8f28-07805a44e3b4", refreshToken) +09:00:47.737 [XNIO-1 task-1] VchTRaovQzWugJIsy5uWcA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e417c4de-6f46-4cbb-8f28-07805a44e3b4 is not found.","severity":"ERROR"} +09:00:47.740 [XNIO-1 task-1] L0Jmx4C3RUGw3pO9o0rTmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.749 [XNIO-1 task-1] L0Jmx4C3RUGw3pO9o0rTmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.749 [XNIO-1 task-1] L0Jmx4C3RUGw3pO9o0rTmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.749 [XNIO-1 task-1] L0Jmx4C3RUGw3pO9o0rTmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.749 [XNIO-1 task-1] L0Jmx4C3RUGw3pO9o0rTmA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.755 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cdbf239e-aeb7-41c1-90ff-3ffbffb51df0 +09:00:47.765 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8315acbc +09:00:47.768 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8315acbc +09:00:47.770 [XNIO-1 task-1] CvKvLE9ATMW7KPGcX5ygRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f7f97f8c-3308-4660-bb0a-6665e224f62f +09:00:47.770 [XNIO-1 task-1] CvKvLE9ATMW7KPGcX5ygRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.770 [XNIO-1 task-1] CvKvLE9ATMW7KPGcX5ygRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.770 [XNIO-1 task-1] CvKvLE9ATMW7KPGcX5ygRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f7f97f8c-3308-4660-bb0a-6665e224f62f +09:00:47.771 [XNIO-1 task-1] CvKvLE9ATMW7KPGcX5ygRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f7f97f8c-3308-4660-bb0a-6665e224f62f +09:00:47.779 [XNIO-1 task-1] lmNcDHf4TCShNzTGs4DmSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4, base path is set to: null +09:00:47.779 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d54619e6 +09:00:47.779 [XNIO-1 task-1] lmNcDHf4TCShNzTGs4DmSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.779 [XNIO-1 task-1] lmNcDHf4TCShNzTGs4DmSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.779 [XNIO-1 task-1] lmNcDHf4TCShNzTGs4DmSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.780 [XNIO-1 task-1] lmNcDHf4TCShNzTGs4DmSw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e417c4de-6f46-4cbb-8f28-07805a44e3b4 +09:00:47.788 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d54619e6 +09:00:47.789 [XNIO-1 task-1] p5yeW0ibQkm_F5a7FvQoUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.789 [XNIO-1 task-1] p5yeW0ibQkm_F5a7FvQoUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.789 [XNIO-1 task-1] p5yeW0ibQkm_F5a7FvQoUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.790 [XNIO-1 task-1] p5yeW0ibQkm_F5a7FvQoUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.796 [XNIO-1 task-1] p5yeW0ibQkm_F5a7FvQoUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.805 [XNIO-1 task-1] d3XFu79oTfSnNU4UW8a3zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.805 [XNIO-1 task-1] d3XFu79oTfSnNU4UW8a3zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.806 [XNIO-1 task-1] d3XFu79oTfSnNU4UW8a3zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.806 [XNIO-1 task-1] d3XFu79oTfSnNU4UW8a3zA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.806 [XNIO-1 task-1] d3XFu79oTfSnNU4UW8a3zA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.819 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8315acbc +09:00:47.821 [XNIO-1 task-1] zhvkLkarSlWYcLUfDQY0Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f7f97f8c-3308-4660-bb0a-6665e224f62f +09:00:47.821 [XNIO-1 task-1] zhvkLkarSlWYcLUfDQY0Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.821 [XNIO-1 task-1] zhvkLkarSlWYcLUfDQY0Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.821 [XNIO-1 task-1] zhvkLkarSlWYcLUfDQY0Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f7f97f8c-3308-4660-bb0a-6665e224f62f +09:00:47.822 [XNIO-1 task-1] zhvkLkarSlWYcLUfDQY0Zw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f7f97f8c-3308-4660-bb0a-6665e224f62f +09:00:47.831 [XNIO-1 task-1] r5dUb39yQ16X7jFsbR4SAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.840 [XNIO-1 task-1] r5dUb39yQ16X7jFsbR4SAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.840 [XNIO-1 task-1] r5dUb39yQ16X7jFsbR4SAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.841 [XNIO-1 task-1] r5dUb39yQ16X7jFsbR4SAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.841 [XNIO-1 task-1] r5dUb39yQ16X7jFsbR4SAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.853 [XNIO-1 task-1] XmpNVduYT6y7ADFNG7lbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.853 [XNIO-1 task-1] XmpNVduYT6y7ADFNG7lbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.854 [XNIO-1 task-1] XmpNVduYT6y7ADFNG7lbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.854 [XNIO-1 task-1] XmpNVduYT6y7ADFNG7lbEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.872 [XNIO-1 task-1] CMNoxc6TT0yw9knEuawT0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.872 [XNIO-1 task-1] CMNoxc6TT0yw9knEuawT0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.872 [XNIO-1 task-1] CMNoxc6TT0yw9knEuawT0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.872 [XNIO-1 task-1] CMNoxc6TT0yw9knEuawT0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.873 [XNIO-1 task-1] CMNoxc6TT0yw9knEuawT0w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.888 [XNIO-1 task-1] ox6gy4J2RQCwTXgU3NNGvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.888 [XNIO-1 task-1] ox6gy4J2RQCwTXgU3NNGvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.888 [XNIO-1 task-1] ox6gy4J2RQCwTXgU3NNGvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.889 [XNIO-1 task-1] ox6gy4J2RQCwTXgU3NNGvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.889 [XNIO-1 task-1] ox6gy4J2RQCwTXgU3NNGvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.900 [XNIO-1 task-1] __3UGIuFTRy94NM_rhPilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.900 [XNIO-1 task-1] __3UGIuFTRy94NM_rhPilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.900 [XNIO-1 task-1] __3UGIuFTRy94NM_rhPilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.900 [XNIO-1 task-1] __3UGIuFTRy94NM_rhPilw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.901 [XNIO-1 task-1] __3UGIuFTRy94NM_rhPilw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.909 [XNIO-1 task-1] ENyT5EtHSRqEYXZvVfVRCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.909 [XNIO-1 task-1] ENyT5EtHSRqEYXZvVfVRCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.909 [XNIO-1 task-1] ENyT5EtHSRqEYXZvVfVRCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.910 [XNIO-1 task-1] ENyT5EtHSRqEYXZvVfVRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.910 [XNIO-1 task-1] ENyT5EtHSRqEYXZvVfVRCw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.919 [XNIO-1 task-1] HY4PXhTLTU-5Lfg_L-sMOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.919 [XNIO-1 task-1] HY4PXhTLTU-5Lfg_L-sMOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.919 [XNIO-1 task-1] HY4PXhTLTU-5Lfg_L-sMOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.919 [XNIO-1 task-1] HY4PXhTLTU-5Lfg_L-sMOg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.925 [XNIO-1 task-1] roIw9MB1TIOtSo5v0Ae1jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.925 [XNIO-1 task-1] roIw9MB1TIOtSo5v0Ae1jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.925 [XNIO-1 task-1] roIw9MB1TIOtSo5v0Ae1jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.926 [XNIO-1 task-1] roIw9MB1TIOtSo5v0Ae1jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.926 [XNIO-1 task-1] roIw9MB1TIOtSo5v0Ae1jg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:47.939 [XNIO-1 task-1] mn69hj9HRB250mLr19WCMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.939 [XNIO-1 task-1] mn69hj9HRB250mLr19WCMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.939 [XNIO-1 task-1] mn69hj9HRB250mLr19WCMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:47.939 [XNIO-1 task-1] mn69hj9HRB250mLr19WCMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.939 [XNIO-1 task-1] mn69hj9HRB250mLr19WCMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.950 [XNIO-1 task-1] HMJWod-xTDyRJ7h4dUxfuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390, base path is set to: null +09:00:47.950 [XNIO-1 task-1] HMJWod-xTDyRJ7h4dUxfuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.950 [XNIO-1 task-1] HMJWod-xTDyRJ7h4dUxfuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.950 [XNIO-1 task-1] HMJWod-xTDyRJ7h4dUxfuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c6cd7b9-5434-406f-9e40-64d713644390, base path is set to: null +09:00:47.950 [XNIO-1 task-1] HMJWod-xTDyRJ7h4dUxfuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1c6cd7b9-5434-406f-9e40-64d713644390", "1c6cd7b9-5434-406f-9e40-64d713644390", refreshToken) +09:00:47.951 [XNIO-1 task-1] HMJWod-xTDyRJ7h4dUxfuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1c6cd7b9-5434-406f-9e40-64d713644390 is not found.","severity":"ERROR"} +09:00:47.957 [XNIO-1 task-1] M1czCqI0QuunhQB5Gj2Aug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.957 [XNIO-1 task-1] M1czCqI0QuunhQB5Gj2Aug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.957 [XNIO-1 task-1] M1czCqI0QuunhQB5Gj2Aug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:47.958 [XNIO-1 task-1] M1czCqI0QuunhQB5Gj2Aug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:47.965 [XNIO-1 task-1] 5p4h5x5MSXWiCZPB3nSttw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:47.972 [XNIO-1 task-1] 5p4h5x5MSXWiCZPB3nSttw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.972 [XNIO-1 task-1] 5p4h5x5MSXWiCZPB3nSttw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:47.972 [XNIO-1 task-1] 5p4h5x5MSXWiCZPB3nSttw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:47.972 [XNIO-1 task-1] 5p4h5x5MSXWiCZPB3nSttw DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:47.985 [XNIO-1 task-1] 3_GlWLVmRvqhx_knChRdKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.987 [XNIO-1 task-1] 3_GlWLVmRvqhx_knChRdKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:47.987 [XNIO-1 task-1] 3_GlWLVmRvqhx_knChRdKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:47.987 [XNIO-1 task-1] 3_GlWLVmRvqhx_knChRdKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:47.988 [XNIO-1 task-1] 3_GlWLVmRvqhx_knChRdKA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.002 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5ae4241b-6b92-4ade-ae39-9ba7eb68d8e7 +09:00:48.008 [XNIO-1 task-1] hLeyCRS5Rha0033Tj1H3sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.008 [XNIO-1 task-1] hLeyCRS5Rha0033Tj1H3sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.008 [XNIO-1 task-1] hLeyCRS5Rha0033Tj1H3sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.009 [XNIO-1 task-1] hLeyCRS5Rha0033Tj1H3sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.009 [XNIO-1 task-1] hLeyCRS5Rha0033Tj1H3sg DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.016 [XNIO-1 task-1] TVgcE98FSzK9Z1eqli7EgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.016 [XNIO-1 task-1] TVgcE98FSzK9Z1eqli7EgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.016 [XNIO-1 task-1] TVgcE98FSzK9Z1eqli7EgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.016 [XNIO-1 task-1] TVgcE98FSzK9Z1eqli7EgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.017 [XNIO-1 task-1] TVgcE98FSzK9Z1eqli7EgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.024 [XNIO-1 task-1] Z5yOwYVMQ8W42d2MNBhLgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.024 [XNIO-1 task-1] Z5yOwYVMQ8W42d2MNBhLgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.024 [XNIO-1 task-1] Z5yOwYVMQ8W42d2MNBhLgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.024 [XNIO-1 task-1] Z5yOwYVMQ8W42d2MNBhLgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.025 [XNIO-1 task-1] Z5yOwYVMQ8W42d2MNBhLgA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.046 [XNIO-1 task-1] OHVNECpxT12-F6DAFuL-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.046 [XNIO-1 task-1] OHVNECpxT12-F6DAFuL-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.046 [XNIO-1 task-1] OHVNECpxT12-F6DAFuL-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.046 [XNIO-1 task-1] OHVNECpxT12-F6DAFuL-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.047 [XNIO-1 task-1] OHVNECpxT12-F6DAFuL-4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.061 [XNIO-1 task-1] 4Ac_YEUFQti23BUvYsICtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.062 [XNIO-1 task-1] 4Ac_YEUFQti23BUvYsICtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.062 [XNIO-1 task-1] 4Ac_YEUFQti23BUvYsICtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.062 [XNIO-1 task-1] 4Ac_YEUFQti23BUvYsICtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.065 [XNIO-1 task-1] 4Ac_YEUFQti23BUvYsICtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.083 [XNIO-1 task-1] eMNCXYL5SwCvlPRlDcmKow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.083 [XNIO-1 task-1] eMNCXYL5SwCvlPRlDcmKow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.083 [XNIO-1 task-1] eMNCXYL5SwCvlPRlDcmKow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.083 [XNIO-1 task-1] eMNCXYL5SwCvlPRlDcmKow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.086 [XNIO-1 task-1] eMNCXYL5SwCvlPRlDcmKow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.091 [XNIO-1 task-1] _edRj-jPQQ2WpRq6QzwoaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.096 [XNIO-1 task-1] _edRj-jPQQ2WpRq6QzwoaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.096 [XNIO-1 task-1] _edRj-jPQQ2WpRq6QzwoaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.096 [XNIO-1 task-1] _edRj-jPQQ2WpRq6QzwoaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.097 [XNIO-1 task-1] _edRj-jPQQ2WpRq6QzwoaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.108 [XNIO-1 task-1] VtvK0GcfTyWA-KCEwenU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.108 [XNIO-1 task-1] VtvK0GcfTyWA-KCEwenU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.108 [XNIO-1 task-1] VtvK0GcfTyWA-KCEwenU4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.109 [XNIO-1 task-1] VtvK0GcfTyWA-KCEwenU4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.119 [XNIO-1 task-1] R9ZWjd8pSyGH1xC43XIWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.119 [XNIO-1 task-1] R9ZWjd8pSyGH1xC43XIWeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.119 [XNIO-1 task-1] R9ZWjd8pSyGH1xC43XIWeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.119 [XNIO-1 task-1] R9ZWjd8pSyGH1xC43XIWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.120 [XNIO-1 task-1] R9ZWjd8pSyGH1xC43XIWeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.127 [XNIO-1 task-1] R9ZWjd8pSyGH1xC43XIWeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} +09:00:48.133 [XNIO-1 task-1] BUb_VP2NSf6TSX_B_OygCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.133 [XNIO-1 task-1] BUb_VP2NSf6TSX_B_OygCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.133 [XNIO-1 task-1] BUb_VP2NSf6TSX_B_OygCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.134 [XNIO-1 task-1] BUb_VP2NSf6TSX_B_OygCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.134 [XNIO-1 task-1] BUb_VP2NSf6TSX_B_OygCA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.135 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.139 [XNIO-1 task-1] 2Oo4SqpeQRSjnIjKK6sAtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.142 [XNIO-1 task-1] 2Oo4SqpeQRSjnIjKK6sAtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.142 [XNIO-1 task-1] 2Oo4SqpeQRSjnIjKK6sAtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.142 [XNIO-1 task-1] 2Oo4SqpeQRSjnIjKK6sAtw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.142 [XNIO-1 task-1] 2Oo4SqpeQRSjnIjKK6sAtw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.152 [XNIO-1 task-1] BVNeYAKRQ_mqzjTNs5AL6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.152 [XNIO-1 task-1] BVNeYAKRQ_mqzjTNs5AL6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.152 [XNIO-1 task-1] BVNeYAKRQ_mqzjTNs5AL6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.152 [XNIO-1 task-1] BVNeYAKRQ_mqzjTNs5AL6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.152 [XNIO-1 task-1] BVNeYAKRQ_mqzjTNs5AL6A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.158 [XNIO-1 task-1] RW3_L2wpR9O4EJFKSBbYWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.160 [XNIO-1 task-1] RW3_L2wpR9O4EJFKSBbYWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.160 [XNIO-1 task-1] RW3_L2wpR9O4EJFKSBbYWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.160 [XNIO-1 task-1] RW3_L2wpR9O4EJFKSBbYWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.164 [XNIO-1 task-1] RW3_L2wpR9O4EJFKSBbYWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.178 [XNIO-1 task-1] itVzq2OWQ42gMJjoyExv5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.178 [XNIO-1 task-1] itVzq2OWQ42gMJjoyExv5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.178 [XNIO-1 task-1] itVzq2OWQ42gMJjoyExv5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.178 [XNIO-1 task-1] itVzq2OWQ42gMJjoyExv5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.187 [XNIO-1 task-1] RBpp41asQzW88skSiaEw4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.190 [XNIO-1 task-1] RBpp41asQzW88skSiaEw4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.190 [XNIO-1 task-1] RBpp41asQzW88skSiaEw4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.190 [XNIO-1 task-1] RBpp41asQzW88skSiaEw4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.190 [XNIO-1 task-1] RBpp41asQzW88skSiaEw4w DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:48.192 [XNIO-1 task-1] RBpp41asQzW88skSiaEw4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:48.195 [XNIO-1 task-1] Il952NfPQsKpEW-bxmag-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.196 [XNIO-1 task-1] Il952NfPQsKpEW-bxmag-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.196 [XNIO-1 task-1] Il952NfPQsKpEW-bxmag-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.198 [XNIO-1 task-1] Il952NfPQsKpEW-bxmag-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.209 [XNIO-1 task-1] 60U8FfTMT6WreR46LGJTOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.209 [XNIO-1 task-1] 60U8FfTMT6WreR46LGJTOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.209 [XNIO-1 task-1] 60U8FfTMT6WreR46LGJTOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.210 [XNIO-1 task-1] 60U8FfTMT6WreR46LGJTOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.210 [XNIO-1 task-1] 60U8FfTMT6WreR46LGJTOw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:48.210 [XNIO-1 task-1] 60U8FfTMT6WreR46LGJTOw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:48.217 [XNIO-1 task-1] XUB7DtRHQzOSbhP49q3Eow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7 +09:00:48.217 [XNIO-1 task-1] XUB7DtRHQzOSbhP49q3Eow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.217 [XNIO-1 task-1] XUB7DtRHQzOSbhP49q3Eow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.217 [XNIO-1 task-1] XUB7DtRHQzOSbhP49q3Eow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7 +09:00:48.217 [XNIO-1 task-1] XUB7DtRHQzOSbhP49q3Eow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 804ca012-17c4-4fa2-8f2b-3bf56e9178f7 +09:00:48.222 [XNIO-1 task-1] ArmAcC_ETkaedBjnJX6r2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.222 [XNIO-1 task-1] ArmAcC_ETkaedBjnJX6r2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.222 [XNIO-1 task-1] ArmAcC_ETkaedBjnJX6r2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.222 [XNIO-1 task-1] ArmAcC_ETkaedBjnJX6r2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.223 [XNIO-1 task-1] ArmAcC_ETkaedBjnJX6r2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.254 [XNIO-1 task-1] IzM5vPW-T7-wqB0qAeU90g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7 +09:00:48.255 [XNIO-1 task-1] IzM5vPW-T7-wqB0qAeU90g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.255 [XNIO-1 task-1] IzM5vPW-T7-wqB0qAeU90g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.255 [XNIO-1 task-1] IzM5vPW-T7-wqB0qAeU90g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7 +09:00:48.256 [XNIO-1 task-1] IzM5vPW-T7-wqB0qAeU90g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 804ca012-17c4-4fa2-8f2b-3bf56e9178f7 +09:00:48.259 [XNIO-1 task-1] hUdDuEYuQ060UqsmyvF6ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439, base path is set to: null +09:00:48.259 [XNIO-1 task-1] hUdDuEYuQ060UqsmyvF6ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.260 [XNIO-1 task-1] hUdDuEYuQ060UqsmyvF6ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.260 [XNIO-1 task-1] hUdDuEYuQ060UqsmyvF6ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439, base path is set to: null +09:00:48.260 [XNIO-1 task-1] hUdDuEYuQ060UqsmyvF6ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d412f55c-19ec-493f-9674-e341dbae0439", "d412f55c-19ec-493f-9674-e341dbae0439", refreshToken) +09:00:48.263 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:eb44543a-553e-4b62-9457-72e869bc46ac +09:00:48.270 [XNIO-1 task-1] WtelpW6CQR2N0gsoTAoqYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7, base path is set to: null +09:00:48.270 [XNIO-1 task-1] WtelpW6CQR2N0gsoTAoqYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.270 [XNIO-1 task-1] WtelpW6CQR2N0gsoTAoqYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.270 [XNIO-1 task-1] WtelpW6CQR2N0gsoTAoqYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7, base path is set to: null +09:00:48.271 [XNIO-1 task-1] WtelpW6CQR2N0gsoTAoqYA DEBUG com.networknt.schema.TypeValidator debug - validate( "804ca012-17c4-4fa2-8f2b-3bf56e9178f7", "804ca012-17c4-4fa2-8f2b-3bf56e9178f7", refreshToken) +09:00:48.275 [XNIO-1 task-1] GEDIMj14RVmxTugATOOnOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.276 [XNIO-1 task-1] GEDIMj14RVmxTugATOOnOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.276 [XNIO-1 task-1] GEDIMj14RVmxTugATOOnOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.277 [XNIO-1 task-1] GEDIMj14RVmxTugATOOnOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.277 [XNIO-1 task-1] GEDIMj14RVmxTugATOOnOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.293 [XNIO-1 task-1] IcYXX-YAT_yOONkio8t2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.293 [XNIO-1 task-1] IcYXX-YAT_yOONkio8t2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.293 [XNIO-1 task-1] IcYXX-YAT_yOONkio8t2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.293 [XNIO-1 task-1] IcYXX-YAT_yOONkio8t2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.293 [XNIO-1 task-1] IcYXX-YAT_yOONkio8t2Eg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.299 [XNIO-1 task-1] rNOXgIjlS1Ospu6t2VjAIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7, base path is set to: null +09:00:48.299 [XNIO-1 task-1] rNOXgIjlS1Ospu6t2VjAIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.299 [XNIO-1 task-1] rNOXgIjlS1Ospu6t2VjAIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.300 [XNIO-1 task-1] rNOXgIjlS1Ospu6t2VjAIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/804ca012-17c4-4fa2-8f2b-3bf56e9178f7, base path is set to: null +09:00:48.300 [XNIO-1 task-1] rNOXgIjlS1Ospu6t2VjAIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "804ca012-17c4-4fa2-8f2b-3bf56e9178f7", "804ca012-17c4-4fa2-8f2b-3bf56e9178f7", refreshToken) +09:00:48.319 [XNIO-1 task-1] Egus3katRS2yTONJgC19oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439, base path is set to: null +09:00:48.320 [XNIO-1 task-1] Egus3katRS2yTONJgC19oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.320 [XNIO-1 task-1] Egus3katRS2yTONJgC19oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.320 [XNIO-1 task-1] Egus3katRS2yTONJgC19oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439, base path is set to: null +09:00:48.320 [XNIO-1 task-1] Egus3katRS2yTONJgC19oA DEBUG com.networknt.schema.TypeValidator debug - validate( "d412f55c-19ec-493f-9674-e341dbae0439", "d412f55c-19ec-493f-9674-e341dbae0439", refreshToken) +09:00:48.320 [XNIO-1 task-1] Egus3katRS2yTONJgC19oA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d412f55c-19ec-493f-9674-e341dbae0439 is not found.","severity":"ERROR"} +09:00:48.334 [XNIO-1 task-1] _oadzeTjSW6PLHR_gVj2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.335 [XNIO-1 task-1] _oadzeTjSW6PLHR_gVj2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.335 [XNIO-1 task-1] _oadzeTjSW6PLHR_gVj2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.336 [XNIO-1 task-1] _oadzeTjSW6PLHR_gVj2Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.363 [XNIO-1 task-1] qBzVqSgVQz-S8VkHYq9Ufg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97, base path is set to: null +09:00:48.364 [XNIO-1 task-1] qBzVqSgVQz-S8VkHYq9Ufg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.364 [XNIO-1 task-1] qBzVqSgVQz-S8VkHYq9Ufg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.364 [XNIO-1 task-1] qBzVqSgVQz-S8VkHYq9Ufg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97, base path is set to: null +09:00:48.364 [XNIO-1 task-1] qBzVqSgVQz-S8VkHYq9Ufg DEBUG com.networknt.schema.TypeValidator debug - validate( "37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97", "37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97", refreshToken) +09:00:48.368 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.385 [XNIO-1 task-1] sHVu1gVgTT-upD9RlNuB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.385 [XNIO-1 task-1] sHVu1gVgTT-upD9RlNuB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.385 [XNIO-1 task-1] sHVu1gVgTT-upD9RlNuB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.386 [XNIO-1 task-1] sHVu1gVgTT-upD9RlNuB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.386 [XNIO-1 task-1] sHVu1gVgTT-upD9RlNuB4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.388 [XNIO-1 task-1] sHVu1gVgTT-upD9RlNuB4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 is not found.","severity":"ERROR"} +09:00:48.393 [XNIO-1 task-1] o_rO6ofTTJuzMlz6VQLJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.393 [XNIO-1 task-1] o_rO6ofTTJuzMlz6VQLJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.393 [XNIO-1 task-1] o_rO6ofTTJuzMlz6VQLJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.393 [XNIO-1 task-1] o_rO6ofTTJuzMlz6VQLJ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.393 [XNIO-1 task-1] o_rO6ofTTJuzMlz6VQLJ9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.397 [XNIO-1 task-1] o_rO6ofTTJuzMlz6VQLJ9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 is not found.","severity":"ERROR"} +09:00:48.404 [XNIO-1 task-1] Vt0_VQe4R2Kht3qDuEtNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.404 [XNIO-1 task-1] Vt0_VQe4R2Kht3qDuEtNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.404 [XNIO-1 task-1] Vt0_VQe4R2Kht3qDuEtNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.405 [XNIO-1 task-1] Vt0_VQe4R2Kht3qDuEtNZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.405 [XNIO-1 task-1] Vt0_VQe4R2Kht3qDuEtNZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.407 [XNIO-1 task-1] Vt0_VQe4R2Kht3qDuEtNZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 is not found.","severity":"ERROR"} +09:00:48.412 [XNIO-1 task-1] 1PWDei5ZRHiu6ZyMBgJgFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.412 [XNIO-1 task-1] 1PWDei5ZRHiu6ZyMBgJgFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.412 [XNIO-1 task-1] 1PWDei5ZRHiu6ZyMBgJgFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.412 [XNIO-1 task-1] 1PWDei5ZRHiu6ZyMBgJgFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.413 [XNIO-1 task-1] 1PWDei5ZRHiu6ZyMBgJgFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.417 [XNIO-1 task-1] g6yM79tkScqtWfRf4S5xjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97, base path is set to: null +09:00:48.417 [XNIO-1 task-1] g6yM79tkScqtWfRf4S5xjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.417 [XNIO-1 task-1] g6yM79tkScqtWfRf4S5xjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.417 [XNIO-1 task-1] g6yM79tkScqtWfRf4S5xjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97, base path is set to: null +09:00:48.417 [XNIO-1 task-1] g6yM79tkScqtWfRf4S5xjg DEBUG com.networknt.schema.TypeValidator debug - validate( "37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97", "37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97", refreshToken) +09:00:48.418 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.425 [XNIO-1 task-1] _Cz84pB3QeCmW_-8TiVOOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.425 [XNIO-1 task-1] _Cz84pB3QeCmW_-8TiVOOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.425 [XNIO-1 task-1] _Cz84pB3QeCmW_-8TiVOOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.425 [XNIO-1 task-1] _Cz84pB3QeCmW_-8TiVOOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.425 [XNIO-1 task-1] _Cz84pB3QeCmW_-8TiVOOg DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.425 [XNIO-1 task-1] _Cz84pB3QeCmW_-8TiVOOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} +09:00:48.440 [XNIO-1 task-1] 9q98vbL1RYWHqIYes_WfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.440 [XNIO-1 task-1] 9q98vbL1RYWHqIYes_WfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.443 [XNIO-1 task-1] 9q98vbL1RYWHqIYes_WfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.444 [XNIO-1 task-1] 9q98vbL1RYWHqIYes_WfbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.456 [XNIO-1 task-1] L1Upcsx_SO6NtEo2HRCfhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97, base path is set to: null +09:00:48.456 [XNIO-1 task-1] L1Upcsx_SO6NtEo2HRCfhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.456 [XNIO-1 task-1] L1Upcsx_SO6NtEo2HRCfhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.456 [XNIO-1 task-1] L1Upcsx_SO6NtEo2HRCfhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97, base path is set to: null +09:00:48.457 [XNIO-1 task-1] L1Upcsx_SO6NtEo2HRCfhw DEBUG com.networknt.schema.TypeValidator debug - validate( "37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97", "37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97", refreshToken) +09:00:48.457 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.463 [XNIO-1 task-1] ykaW0_XCR1Gt-y5Fyz1saQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.464 [XNIO-1 task-1] ykaW0_XCR1Gt-y5Fyz1saQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.464 [XNIO-1 task-1] ykaW0_XCR1Gt-y5Fyz1saQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.465 [XNIO-1 task-1] ykaW0_XCR1Gt-y5Fyz1saQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.465 [XNIO-1 task-1] ykaW0_XCR1Gt-y5Fyz1saQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.465 [XNIO-1 task-1] ykaW0_XCR1Gt-y5Fyz1saQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} +09:00:48.467 [XNIO-1 task-1] zbsIEGrhQg6sex-sx4qS1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.467 [XNIO-1 task-1] zbsIEGrhQg6sex-sx4qS1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.468 [XNIO-1 task-1] zbsIEGrhQg6sex-sx4qS1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.468 [XNIO-1 task-1] zbsIEGrhQg6sex-sx4qS1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.468 [XNIO-1 task-1] zbsIEGrhQg6sex-sx4qS1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.471 [XNIO-1 task-1] Gul-UbvlRw-eeJb903MhIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.471 [XNIO-1 task-1] Gul-UbvlRw-eeJb903MhIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.471 [XNIO-1 task-1] Gul-UbvlRw-eeJb903MhIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.471 [XNIO-1 task-1] Gul-UbvlRw-eeJb903MhIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.472 [XNIO-1 task-1] Gul-UbvlRw-eeJb903MhIA DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.472 [XNIO-1 task-1] Gul-UbvlRw-eeJb903MhIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} +09:00:48.477 [XNIO-1 task-1] V8ahBJpjQ1SYFCKy5RCp0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.477 [XNIO-1 task-1] V8ahBJpjQ1SYFCKy5RCp0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.479 [XNIO-1 task-1] V8ahBJpjQ1SYFCKy5RCp0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.479 [XNIO-1 task-1] V8ahBJpjQ1SYFCKy5RCp0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.480 [XNIO-1 task-1] V8ahBJpjQ1SYFCKy5RCp0Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.486 [XNIO-1 task-1] VozTNuyWRJOg581uLra-XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.486 [XNIO-1 task-1] VozTNuyWRJOg581uLra-XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.486 [XNIO-1 task-1] VozTNuyWRJOg581uLra-XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.486 [XNIO-1 task-1] VozTNuyWRJOg581uLra-XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.486 [XNIO-1 task-1] VozTNuyWRJOg581uLra-XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.487 [XNIO-1 task-1] VozTNuyWRJOg581uLra-XQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} +09:00:48.491 [XNIO-1 task-1] Gr-40SLfRr-I8vTd6zPomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.491 [XNIO-1 task-1] Gr-40SLfRr-I8vTd6zPomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.491 [XNIO-1 task-1] Gr-40SLfRr-I8vTd6zPomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.491 [XNIO-1 task-1] Gr-40SLfRr-I8vTd6zPomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.491 [XNIO-1 task-1] Gr-40SLfRr-I8vTd6zPomw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.495 [XNIO-1 task-1] 7FB0FhnPTH-h9HU-GXD2Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.495 [XNIO-1 task-1] 7FB0FhnPTH-h9HU-GXD2Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.495 [XNIO-1 task-1] 7FB0FhnPTH-h9HU-GXD2Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.495 [XNIO-1 task-1] 7FB0FhnPTH-h9HU-GXD2Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.496 [XNIO-1 task-1] 7FB0FhnPTH-h9HU-GXD2Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:48.496 [XNIO-1 task-1] 7FB0FhnPTH-h9HU-GXD2Yw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:48.500 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2bef5ecf-bdf8-4051-9c90-a5a5f0719aa6 +09:00:48.501 [XNIO-1 task-1] rSAsotOhT4-ChhWmqGh1Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.501 [XNIO-1 task-1] rSAsotOhT4-ChhWmqGh1Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.501 [XNIO-1 task-1] rSAsotOhT4-ChhWmqGh1Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.501 [XNIO-1 task-1] rSAsotOhT4-ChhWmqGh1Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.502 [XNIO-1 task-1] rSAsotOhT4-ChhWmqGh1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:48.502 [XNIO-1 task-1] rSAsotOhT4-ChhWmqGh1Xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:48.507 [XNIO-1 task-1] FEGq5R-yTNmRmK18s5XZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.507 [XNIO-1 task-1] FEGq5R-yTNmRmK18s5XZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.507 [XNIO-1 task-1] FEGq5R-yTNmRmK18s5XZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.507 [XNIO-1 task-1] FEGq5R-yTNmRmK18s5XZcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.507 [XNIO-1 task-1] FEGq5R-yTNmRmK18s5XZcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.510 [XNIO-1 task-1] cAXqsgIXS0qKlaXrUzqCuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.510 [XNIO-1 task-1] cAXqsgIXS0qKlaXrUzqCuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.510 [XNIO-1 task-1] cAXqsgIXS0qKlaXrUzqCuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.511 [XNIO-1 task-1] cAXqsgIXS0qKlaXrUzqCuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.511 [XNIO-1 task-1] cAXqsgIXS0qKlaXrUzqCuw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:48.511 [XNIO-1 task-1] cAXqsgIXS0qKlaXrUzqCuw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:48.519 [XNIO-1 task-1] fxwfZiU6TbOSXf4kcbLWkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3fd1d40-1f78-4026-a400-6e722138b0db +09:00:48.519 [XNIO-1 task-1] fxwfZiU6TbOSXf4kcbLWkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.519 [XNIO-1 task-1] fxwfZiU6TbOSXf4kcbLWkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.519 [XNIO-1 task-1] fxwfZiU6TbOSXf4kcbLWkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f3fd1d40-1f78-4026-a400-6e722138b0db +09:00:48.519 [XNIO-1 task-1] fxwfZiU6TbOSXf4kcbLWkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f3fd1d40-1f78-4026-a400-6e722138b0db +09:00:48.527 [XNIO-1 task-1] 1zMBbnF_RoisF8fKvQGPEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439, base path is set to: null +09:00:48.527 [XNIO-1 task-1] 1zMBbnF_RoisF8fKvQGPEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.527 [XNIO-1 task-1] 1zMBbnF_RoisF8fKvQGPEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.527 [XNIO-1 task-1] 1zMBbnF_RoisF8fKvQGPEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439, base path is set to: null +09:00:48.528 [XNIO-1 task-1] 1zMBbnF_RoisF8fKvQGPEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d412f55c-19ec-493f-9674-e341dbae0439", "d412f55c-19ec-493f-9674-e341dbae0439", refreshToken) +09:00:48.528 [XNIO-1 task-1] 1zMBbnF_RoisF8fKvQGPEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d412f55c-19ec-493f-9674-e341dbae0439 is not found.","severity":"ERROR"} +09:00:48.534 [XNIO-1 task-1] f4BpfamqT6yBwCERxHEWCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.534 [XNIO-1 task-1] f4BpfamqT6yBwCERxHEWCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.534 [XNIO-1 task-1] f4BpfamqT6yBwCERxHEWCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.534 [XNIO-1 task-1] f4BpfamqT6yBwCERxHEWCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.535 [XNIO-1 task-1] f4BpfamqT6yBwCERxHEWCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.536 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5ae4241b-6b92-4ade-ae39-9ba7eb68d8e7 +09:00:48.539 [XNIO-1 task-1] X4S3IWO3S2SyxQ1rVTdZRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.539 [XNIO-1 task-1] X4S3IWO3S2SyxQ1rVTdZRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.539 [XNIO-1 task-1] X4S3IWO3S2SyxQ1rVTdZRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.540 [XNIO-1 task-1] X4S3IWO3S2SyxQ1rVTdZRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.540 [XNIO-1 task-1] X4S3IWO3S2SyxQ1rVTdZRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 +09:00:48.542 [XNIO-1 task-1] X4S3IWO3S2SyxQ1rVTdZRg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 37d4e9a7-f122-46b0-a31c-bfc3a1c3ea97 is not found.","severity":"ERROR"} +09:00:48.549 [XNIO-1 task-1] ADikgV28TXKF9hsMA2_bXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.550 [XNIO-1 task-1] ADikgV28TXKF9hsMA2_bXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.550 [XNIO-1 task-1] ADikgV28TXKF9hsMA2_bXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.550 [XNIO-1 task-1] ADikgV28TXKF9hsMA2_bXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.550 [XNIO-1 task-1] ADikgV28TXKF9hsMA2_bXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d412f55c-19ec-493f-9674-e341dbae0439 +09:00:48.554 [XNIO-1 task-1] ZcUUZATnS6Cq69dUK6cKWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.555 [XNIO-1 task-1] ZcUUZATnS6Cq69dUK6cKWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.555 [XNIO-1 task-1] ZcUUZATnS6Cq69dUK6cKWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.555 [XNIO-1 task-1] ZcUUZATnS6Cq69dUK6cKWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.556 [XNIO-1 task-1] ZcUUZATnS6Cq69dUK6cKWg DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.556 [XNIO-1 task-1] ZcUUZATnS6Cq69dUK6cKWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} +09:00:48.563 [XNIO-1 task-1] TsTKWomETMGEJPMyQfAWig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.563 [XNIO-1 task-1] TsTKWomETMGEJPMyQfAWig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.563 [XNIO-1 task-1] TsTKWomETMGEJPMyQfAWig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.563 [XNIO-1 task-1] TsTKWomETMGEJPMyQfAWig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.570 [XNIO-1 task-1] qKzA-htOSeaaR55JIZiChQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.570 [XNIO-1 task-1] qKzA-htOSeaaR55JIZiChQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.570 [XNIO-1 task-1] qKzA-htOSeaaR55JIZiChQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.571 [XNIO-1 task-1] qKzA-htOSeaaR55JIZiChQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.571 [XNIO-1 task-1] qKzA-htOSeaaR55JIZiChQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.571 [XNIO-1 task-1] qKzA-htOSeaaR55JIZiChQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.575 [XNIO-1 task-1] oYE2joUpRdenxJLGgRT_Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.576 [XNIO-1 task-1] oYE2joUpRdenxJLGgRT_Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.576 [XNIO-1 task-1] oYE2joUpRdenxJLGgRT_Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.576 [XNIO-1 task-1] oYE2joUpRdenxJLGgRT_Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.577 [XNIO-1 task-1] oYE2joUpRdenxJLGgRT_Bg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.580 [XNIO-1 task-1] 7Y58MYvIQW63F_lrxX4OGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.581 [XNIO-1 task-1] 7Y58MYvIQW63F_lrxX4OGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.581 [XNIO-1 task-1] 7Y58MYvIQW63F_lrxX4OGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.581 [XNIO-1 task-1] 7Y58MYvIQW63F_lrxX4OGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.581 [XNIO-1 task-1] 7Y58MYvIQW63F_lrxX4OGg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.581 [XNIO-1 task-1] 7Y58MYvIQW63F_lrxX4OGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.586 [XNIO-1 task-1] MAIAZ_DlQeSsyNpoll9ptg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.587 [XNIO-1 task-1] MAIAZ_DlQeSsyNpoll9ptg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.587 [XNIO-1 task-1] MAIAZ_DlQeSsyNpoll9ptg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.587 [XNIO-1 task-1] MAIAZ_DlQeSsyNpoll9ptg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.592 [XNIO-1 task-1] 7bSLwS1LS-O5fjzkCHhjgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.593 [XNIO-1 task-1] 7bSLwS1LS-O5fjzkCHhjgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.593 [XNIO-1 task-1] 7bSLwS1LS-O5fjzkCHhjgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.593 [XNIO-1 task-1] 7bSLwS1LS-O5fjzkCHhjgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.593 [XNIO-1 task-1] 7bSLwS1LS-O5fjzkCHhjgw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.594 [XNIO-1 task-1] 7bSLwS1LS-O5fjzkCHhjgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.599 [XNIO-1 task-1] ZTUvHfwoQyam-WuHpmHoTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.600 [XNIO-1 task-1] ZTUvHfwoQyam-WuHpmHoTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.601 [XNIO-1 task-1] ZTUvHfwoQyam-WuHpmHoTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.601 [XNIO-1 task-1] ZTUvHfwoQyam-WuHpmHoTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.608 [XNIO-1 task-1] TE_HF-7pS96nMNKdLM6YTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.608 [XNIO-1 task-1] TE_HF-7pS96nMNKdLM6YTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.608 [XNIO-1 task-1] TE_HF-7pS96nMNKdLM6YTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.608 [XNIO-1 task-1] TE_HF-7pS96nMNKdLM6YTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.608 [XNIO-1 task-1] TE_HF-7pS96nMNKdLM6YTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.608 [XNIO-1 task-1] TE_HF-7pS96nMNKdLM6YTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.612 [XNIO-1 task-1] aSNA5nNsS5iqiiVbce-PfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.612 [XNIO-1 task-1] aSNA5nNsS5iqiiVbce-PfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.612 [XNIO-1 task-1] aSNA5nNsS5iqiiVbce-PfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.613 [XNIO-1 task-1] aSNA5nNsS5iqiiVbce-PfA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.613 [XNIO-1 task-1] aSNA5nNsS5iqiiVbce-PfA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.621 [XNIO-1 task-1] PUqvy9o-RbOzosOniK78fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.621 [XNIO-1 task-1] PUqvy9o-RbOzosOniK78fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.621 [XNIO-1 task-1] PUqvy9o-RbOzosOniK78fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.621 [XNIO-1 task-1] PUqvy9o-RbOzosOniK78fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.622 [XNIO-1 task-1] PUqvy9o-RbOzosOniK78fQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.627 [XNIO-1 task-1] unkrS19PSoi1I9WpO_1y_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.627 [XNIO-1 task-1] unkrS19PSoi1I9WpO_1y_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.627 [XNIO-1 task-1] unkrS19PSoi1I9WpO_1y_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.627 [XNIO-1 task-1] unkrS19PSoi1I9WpO_1y_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.627 [XNIO-1 task-1] unkrS19PSoi1I9WpO_1y_A DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.628 [XNIO-1 task-1] unkrS19PSoi1I9WpO_1y_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.630 [XNIO-1 task-1] yJ1iZNhNTkykZIkBBCtdMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.631 [XNIO-1 task-1] yJ1iZNhNTkykZIkBBCtdMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.631 [XNIO-1 task-1] yJ1iZNhNTkykZIkBBCtdMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.632 [XNIO-1 task-1] yJ1iZNhNTkykZIkBBCtdMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.632 [XNIO-1 task-1] yJ1iZNhNTkykZIkBBCtdMw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.632 [XNIO-1 task-1] yJ1iZNhNTkykZIkBBCtdMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.634 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e8b8047c +09:00:48.634 [XNIO-1 task-1] vGiLoovySsW52VGFP6a57g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.635 [XNIO-1 task-1] vGiLoovySsW52VGFP6a57g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.635 [XNIO-1 task-1] vGiLoovySsW52VGFP6a57g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.635 [XNIO-1 task-1] vGiLoovySsW52VGFP6a57g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.647 [XNIO-1 task-1] x2fIjQQsRDC5ZMrPnI5eeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.650 [XNIO-1 task-1] x2fIjQQsRDC5ZMrPnI5eeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.650 [XNIO-1 task-1] x2fIjQQsRDC5ZMrPnI5eeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.650 [XNIO-1 task-1] x2fIjQQsRDC5ZMrPnI5eeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.651 [XNIO-1 task-1] x2fIjQQsRDC5ZMrPnI5eeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.651 [XNIO-1 task-1] x2fIjQQsRDC5ZMrPnI5eeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.657 [XNIO-1 task-1] nOHCu5F3RuqNyXRedn20aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.657 [XNIO-1 task-1] nOHCu5F3RuqNyXRedn20aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.657 [XNIO-1 task-1] nOHCu5F3RuqNyXRedn20aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.657 [XNIO-1 task-1] nOHCu5F3RuqNyXRedn20aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.663 [XNIO-1 task-1] kW09OQf8RQiMFhhRCLEMbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.664 [XNIO-1 task-1] kW09OQf8RQiMFhhRCLEMbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.664 [XNIO-1 task-1] kW09OQf8RQiMFhhRCLEMbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.664 [XNIO-1 task-1] kW09OQf8RQiMFhhRCLEMbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.665 [XNIO-1 task-1] kW09OQf8RQiMFhhRCLEMbA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.668 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6864e4b4 +09:00:48.675 [XNIO-1 task-1] 7BKzdW7iQkSECi6MYAObaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.676 [XNIO-1 task-1] 7BKzdW7iQkSECi6MYAObaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.676 [XNIO-1 task-1] 7BKzdW7iQkSECi6MYAObaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.676 [XNIO-1 task-1] 7BKzdW7iQkSECi6MYAObaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.676 [XNIO-1 task-1] 7BKzdW7iQkSECi6MYAObaA DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.676 [XNIO-1 task-1] 7BKzdW7iQkSECi6MYAObaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.680 [XNIO-1 task-1] Tuka__E8TmSKARC-UNEnQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.680 [XNIO-1 task-1] Tuka__E8TmSKARC-UNEnQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.680 [XNIO-1 task-1] Tuka__E8TmSKARC-UNEnQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.681 [XNIO-1 task-1] Tuka__E8TmSKARC-UNEnQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.681 [XNIO-1 task-1] Tuka__E8TmSKARC-UNEnQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.686 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6864e4b4 +09:00:48.696 [XNIO-1 task-1] TfcvuTJuTrKDwYzmVmRqcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.696 [XNIO-1 task-1] TfcvuTJuTrKDwYzmVmRqcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.697 [XNIO-1 task-1] TfcvuTJuTrKDwYzmVmRqcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.697 [XNIO-1 task-1] TfcvuTJuTrKDwYzmVmRqcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.698 [XNIO-1 task-1] TfcvuTJuTrKDwYzmVmRqcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.704 [XNIO-1 task-1] Mc6yNVI7QCei2QChWbYB-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51, base path is set to: null +09:00:48.704 [XNIO-1 task-1] Mc6yNVI7QCei2QChWbYB-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.704 [XNIO-1 task-1] Mc6yNVI7QCei2QChWbYB-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.705 [XNIO-1 task-1] Mc6yNVI7QCei2QChWbYB-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51, base path is set to: null +09:00:48.705 [XNIO-1 task-1] Mc6yNVI7QCei2QChWbYB-g DEBUG com.networknt.schema.TypeValidator debug - validate( "050363ff-f210-436f-9d9e-34642a378a51", "050363ff-f210-436f-9d9e-34642a378a51", refreshToken) +09:00:48.705 [XNIO-1 task-1] Mc6yNVI7QCei2QChWbYB-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 050363ff-f210-436f-9d9e-34642a378a51 is not found.","severity":"ERROR"} +09:00:48.712 [XNIO-1 task-1] tcCgI0GaRyCOqB4F63eQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.712 [XNIO-1 task-1] tcCgI0GaRyCOqB4F63eQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.712 [XNIO-1 task-1] tcCgI0GaRyCOqB4F63eQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.712 [XNIO-1 task-1] tcCgI0GaRyCOqB4F63eQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.713 [XNIO-1 task-1] tcCgI0GaRyCOqB4F63eQRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.722 [XNIO-1 task-1] kD6nsNbQQ1y-p08xTDJ28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.722 [XNIO-1 task-1] kD6nsNbQQ1y-p08xTDJ28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.722 [XNIO-1 task-1] kD6nsNbQQ1y-p08xTDJ28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.723 [XNIO-1 task-1] kD6nsNbQQ1y-p08xTDJ28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.724 [XNIO-1 task-1] kD6nsNbQQ1y-p08xTDJ28w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 050363ff-f210-436f-9d9e-34642a378a51 +09:00:48.728 [XNIO-1 task-1] tc1LBhymSSKfVh0-nud0ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.728 [XNIO-1 task-1] tc1LBhymSSKfVh0-nud0ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.728 [XNIO-1 task-1] tc1LBhymSSKfVh0-nud0ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.728 [XNIO-1 task-1] tc1LBhymSSKfVh0-nud0ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.729 [XNIO-1 task-1] tc1LBhymSSKfVh0-nud0ag DEBUG com.networknt.schema.TypeValidator debug - validate( "897f01d1-878d-4349-a339-9b7f01e959f2", "897f01d1-878d-4349-a339-9b7f01e959f2", refreshToken) +09:00:48.736 [XNIO-1 task-1] tc1LBhymSSKfVh0-nud0ag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 897f01d1-878d-4349-a339-9b7f01e959f2 is not found.","severity":"ERROR"} +09:00:48.738 [XNIO-1 task-1] JWIIW9qmTKG1J_ioxbT53g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.738 [XNIO-1 task-1] JWIIW9qmTKG1J_ioxbT53g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.738 [XNIO-1 task-1] JWIIW9qmTKG1J_ioxbT53g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.739 [XNIO-1 task-1] JWIIW9qmTKG1J_ioxbT53g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.745 [XNIO-1 task-1] HwIhYSSQQiWQg409y8W7og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51, base path is set to: null +09:00:48.745 [XNIO-1 task-1] HwIhYSSQQiWQg409y8W7og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.745 [XNIO-1 task-1] HwIhYSSQQiWQg409y8W7og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.746 [XNIO-1 task-1] HwIhYSSQQiWQg409y8W7og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51, base path is set to: null +09:00:48.746 [XNIO-1 task-1] HwIhYSSQQiWQg409y8W7og DEBUG com.networknt.schema.TypeValidator debug - validate( "050363ff-f210-436f-9d9e-34642a378a51", "050363ff-f210-436f-9d9e-34642a378a51", refreshToken) +09:00:48.746 [XNIO-1 task-1] HwIhYSSQQiWQg409y8W7og ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 050363ff-f210-436f-9d9e-34642a378a51 is not found.","severity":"ERROR"} +09:00:48.749 [XNIO-1 task-1] HTVo2Rh2Sl-gJfoaa5omPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.749 [XNIO-1 task-1] HTVo2Rh2Sl-gJfoaa5omPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.749 [XNIO-1 task-1] HTVo2Rh2Sl-gJfoaa5omPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.749 [XNIO-1 task-1] HTVo2Rh2Sl-gJfoaa5omPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.750 [XNIO-1 task-1] HTVo2Rh2Sl-gJfoaa5omPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.752 [XNIO-1 task-1] JLucbKf5Re20h8_uXBFcyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51, base path is set to: null +09:00:48.752 [XNIO-1 task-1] JLucbKf5Re20h8_uXBFcyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.752 [XNIO-1 task-1] JLucbKf5Re20h8_uXBFcyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.752 [XNIO-1 task-1] JLucbKf5Re20h8_uXBFcyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/050363ff-f210-436f-9d9e-34642a378a51, base path is set to: null +09:00:48.753 [XNIO-1 task-1] JLucbKf5Re20h8_uXBFcyg DEBUG com.networknt.schema.TypeValidator debug - validate( "050363ff-f210-436f-9d9e-34642a378a51", "050363ff-f210-436f-9d9e-34642a378a51", refreshToken) +09:00:48.753 [XNIO-1 task-1] JLucbKf5Re20h8_uXBFcyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 050363ff-f210-436f-9d9e-34642a378a51 is not found.","severity":"ERROR"} +09:00:48.761 [XNIO-1 task-1] CGU2jFGHROmosPuKRveJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.761 [XNIO-1 task-1] CGU2jFGHROmosPuKRveJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.762 [XNIO-1 task-1] CGU2jFGHROmosPuKRveJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.762 [XNIO-1 task-1] CGU2jFGHROmosPuKRveJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.762 [XNIO-1 task-1] CGU2jFGHROmosPuKRveJ4w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.765 [XNIO-1 task-1] 9dhMlfP7TyiewCrSnXzFDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.766 [XNIO-1 task-1] 9dhMlfP7TyiewCrSnXzFDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.766 [XNIO-1 task-1] 9dhMlfP7TyiewCrSnXzFDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.766 [XNIO-1 task-1] 9dhMlfP7TyiewCrSnXzFDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.766 [XNIO-1 task-1] 9dhMlfP7TyiewCrSnXzFDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "897f01d1-878d-4349-a339-9b7f01e959f2", "897f01d1-878d-4349-a339-9b7f01e959f2", refreshToken) +09:00:48.767 [XNIO-1 task-1] 9dhMlfP7TyiewCrSnXzFDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 897f01d1-878d-4349-a339-9b7f01e959f2 is not found.","severity":"ERROR"} +09:00:48.769 [XNIO-1 task-1] a_aCrhCJRKKPdBy9FPFH0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.769 [XNIO-1 task-1] a_aCrhCJRKKPdBy9FPFH0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.769 [XNIO-1 task-1] a_aCrhCJRKKPdBy9FPFH0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.769 [XNIO-1 task-1] a_aCrhCJRKKPdBy9FPFH0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.769 [XNIO-1 task-1] a_aCrhCJRKKPdBy9FPFH0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.771 [XNIO-1 task-1] Zk0syGXHTF69-zBng9_mXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.772 [XNIO-1 task-1] Zk0syGXHTF69-zBng9_mXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.772 [XNIO-1 task-1] Zk0syGXHTF69-zBng9_mXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.772 [XNIO-1 task-1] Zk0syGXHTF69-zBng9_mXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da, base path is set to: null +09:00:48.772 [XNIO-1 task-1] Zk0syGXHTF69-zBng9_mXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", "d58db4a4-d807-4fc2-9c8c-83e78b8d75da", refreshToken) +09:00:48.772 [XNIO-1 task-1] Zk0syGXHTF69-zBng9_mXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} +09:00:48.774 [XNIO-1 task-1] M56d7FJIRF6BvUl4yx6xbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.774 [XNIO-1 task-1] M56d7FJIRF6BvUl4yx6xbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.775 [XNIO-1 task-1] M56d7FJIRF6BvUl4yx6xbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.775 [XNIO-1 task-1] M56d7FJIRF6BvUl4yx6xbw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:48.780 [XNIO-1 task-1] AiofCEoGRDW4t2t9YV8b4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.780 [XNIO-1 task-1] AiofCEoGRDW4t2t9YV8b4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.780 [XNIO-1 task-1] AiofCEoGRDW4t2t9YV8b4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.781 [XNIO-1 task-1] AiofCEoGRDW4t2t9YV8b4g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.783 [XNIO-1 task-1] AiofCEoGRDW4t2t9YV8b4g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.793 [XNIO-1 task-1] OpMc-v7oQBGQsOwQPfFmyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.793 [XNIO-1 task-1] OpMc-v7oQBGQsOwQPfFmyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.793 [XNIO-1 task-1] OpMc-v7oQBGQsOwQPfFmyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.794 [XNIO-1 task-1] OpMc-v7oQBGQsOwQPfFmyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.794 [XNIO-1 task-1] OpMc-v7oQBGQsOwQPfFmyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "897f01d1-878d-4349-a339-9b7f01e959f2", "897f01d1-878d-4349-a339-9b7f01e959f2", refreshToken) +09:00:48.794 [XNIO-1 task-1] OpMc-v7oQBGQsOwQPfFmyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 897f01d1-878d-4349-a339-9b7f01e959f2 is not found.","severity":"ERROR"} +09:00:48.799 [XNIO-1 task-1] _Nrn9CbaRdieI93fNDmvMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.799 [XNIO-1 task-1] _Nrn9CbaRdieI93fNDmvMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.799 [XNIO-1 task-1] _Nrn9CbaRdieI93fNDmvMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.800 [XNIO-1 task-1] _Nrn9CbaRdieI93fNDmvMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.800 [XNIO-1 task-1] _Nrn9CbaRdieI93fNDmvMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.805 [XNIO-1 task-1] MsEHQJdZSI6k1-VcX68VxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.805 [XNIO-1 task-1] MsEHQJdZSI6k1-VcX68VxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.805 [XNIO-1 task-1] MsEHQJdZSI6k1-VcX68VxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.806 [XNIO-1 task-1] MsEHQJdZSI6k1-VcX68VxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.806 [XNIO-1 task-1] MsEHQJdZSI6k1-VcX68VxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.813 [XNIO-1 task-1] gt1HsCPRQmOWFTlrNTZuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.813 [XNIO-1 task-1] gt1HsCPRQmOWFTlrNTZuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.813 [XNIO-1 task-1] gt1HsCPRQmOWFTlrNTZuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.813 [XNIO-1 task-1] gt1HsCPRQmOWFTlrNTZuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.814 [XNIO-1 task-1] gt1HsCPRQmOWFTlrNTZuBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.823 [XNIO-1 task-1] jZZQOyknS4-1-pvIAjCOqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.823 [XNIO-1 task-1] jZZQOyknS4-1-pvIAjCOqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.824 [XNIO-1 task-1] jZZQOyknS4-1-pvIAjCOqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.824 [XNIO-1 task-1] jZZQOyknS4-1-pvIAjCOqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.824 [XNIO-1 task-1] jZZQOyknS4-1-pvIAjCOqA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.852 [XNIO-1 task-1] R-virEUfSx2_VPIG5UrfEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.852 [XNIO-1 task-1] R-virEUfSx2_VPIG5UrfEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.853 [XNIO-1 task-1] R-virEUfSx2_VPIG5UrfEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.853 [XNIO-1 task-1] R-virEUfSx2_VPIG5UrfEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.853 [XNIO-1 task-1] R-virEUfSx2_VPIG5UrfEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.855 [XNIO-1 task-1] 0JvmoGyOSSeHdkk44fzzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.856 [XNIO-1 task-1] 0JvmoGyOSSeHdkk44fzzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.856 [XNIO-1 task-1] 0JvmoGyOSSeHdkk44fzzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.856 [XNIO-1 task-1] 0JvmoGyOSSeHdkk44fzzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.856 [XNIO-1 task-1] 0JvmoGyOSSeHdkk44fzzgA DEBUG com.networknt.schema.TypeValidator debug - validate( "897f01d1-878d-4349-a339-9b7f01e959f2", "897f01d1-878d-4349-a339-9b7f01e959f2", refreshToken) +09:00:48.856 [XNIO-1 task-1] 0JvmoGyOSSeHdkk44fzzgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 897f01d1-878d-4349-a339-9b7f01e959f2 is not found.","severity":"ERROR"} +09:00:48.860 [XNIO-1 task-1] YaOpR5JRSrOoNKEv5TQgYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.860 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2002109e-bdb7-4339-afc7-346ada09b745 +09:00:48.860 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2002109e-bdb7-4339-afc7-346ada09b745 +09:00:48.861 [XNIO-1 task-1] YaOpR5JRSrOoNKEv5TQgYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.861 [XNIO-1 task-1] YaOpR5JRSrOoNKEv5TQgYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.861 [XNIO-1 task-1] YaOpR5JRSrOoNKEv5TQgYg DEBUG com.networknt.schema.TypeValidator debug - validate( "897f01d1-878d-4349-a339-9b7f01e959f2", "897f01d1-878d-4349-a339-9b7f01e959f2", refreshToken) +09:00:48.861 [XNIO-1 task-1] YaOpR5JRSrOoNKEv5TQgYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 897f01d1-878d-4349-a339-9b7f01e959f2 is not found.","severity":"ERROR"} +09:00:48.863 [XNIO-1 task-1] -t5Nk2XNSQ6DW1mWe0NoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.864 [XNIO-1 task-1] -t5Nk2XNSQ6DW1mWe0NoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.864 [XNIO-1 task-1] -t5Nk2XNSQ6DW1mWe0NoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.864 [XNIO-1 task-1] -t5Nk2XNSQ6DW1mWe0NoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.864 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e8b8047c +09:00:48.864 [XNIO-1 task-1] -t5Nk2XNSQ6DW1mWe0NoTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.864 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c1520558-dbdd-401e-ac08-73f2c774d7b6 +09:00:48.868 [XNIO-1 task-1] pE7f8vY0QBCzP4PAiZpNtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.868 [XNIO-1 task-1] pE7f8vY0QBCzP4PAiZpNtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.868 [XNIO-1 task-1] pE7f8vY0QBCzP4PAiZpNtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.868 [XNIO-1 task-1] pE7f8vY0QBCzP4PAiZpNtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2, base path is set to: null +09:00:48.868 [XNIO-1 task-1] pE7f8vY0QBCzP4PAiZpNtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "897f01d1-878d-4349-a339-9b7f01e959f2", "897f01d1-878d-4349-a339-9b7f01e959f2", refreshToken) +09:00:48.869 [XNIO-1 task-1] pE7f8vY0QBCzP4PAiZpNtQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 897f01d1-878d-4349-a339-9b7f01e959f2 is not found.","severity":"ERROR"} +09:00:48.872 [XNIO-1 task-1] tgaNsGUSTlK57PCZ0Y8P3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.872 [XNIO-1 task-1] tgaNsGUSTlK57PCZ0Y8P3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.872 [XNIO-1 task-1] tgaNsGUSTlK57PCZ0Y8P3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.873 [XNIO-1 task-1] tgaNsGUSTlK57PCZ0Y8P3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.873 [XNIO-1 task-1] tgaNsGUSTlK57PCZ0Y8P3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 897f01d1-878d-4349-a339-9b7f01e959f2 +09:00:48.879 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e8b8047c +09:00:48.882 [XNIO-1 task-1] ulsMhBE1R5C0pVEtI6QchQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.883 [XNIO-1 task-1] ulsMhBE1R5C0pVEtI6QchQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.884 [XNIO-1 task-1] ulsMhBE1R5C0pVEtI6QchQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.884 [XNIO-1 task-1] ulsMhBE1R5C0pVEtI6QchQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.884 [XNIO-1 task-1] ulsMhBE1R5C0pVEtI6QchQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.893 [XNIO-1 task-1] _6AaSpdCRm6CHzK-X2ZXCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:48.893 [XNIO-1 task-1] _6AaSpdCRm6CHzK-X2ZXCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.893 [XNIO-1 task-1] _6AaSpdCRm6CHzK-X2ZXCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.893 [XNIO-1 task-1] _6AaSpdCRm6CHzK-X2ZXCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:48.894 [XNIO-1 task-1] _6AaSpdCRm6CHzK-X2ZXCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:48.911 [XNIO-1 task-1] le3HbTYiTrWfMrw2y327QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c1520558-dbdd-401e-ac08-73f2c774d7b6 +09:00:48.914 [XNIO-1 task-1] le3HbTYiTrWfMrw2y327QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.914 [XNIO-1 task-1] le3HbTYiTrWfMrw2y327QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.914 [XNIO-1 task-1] le3HbTYiTrWfMrw2y327QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c1520558-dbdd-401e-ac08-73f2c774d7b6 +09:00:48.914 [XNIO-1 task-1] le3HbTYiTrWfMrw2y327QQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c1520558-dbdd-401e-ac08-73f2c774d7b6 +09:00:48.926 [XNIO-1 task-1] sY2qNOOLQ9q6TJkYC11alw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.927 [XNIO-1 task-1] sY2qNOOLQ9q6TJkYC11alw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.927 [XNIO-1 task-1] sY2qNOOLQ9q6TJkYC11alw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.927 [XNIO-1 task-1] sY2qNOOLQ9q6TJkYC11alw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.927 [XNIO-1 task-1] sY2qNOOLQ9q6TJkYC11alw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.927 [XNIO-1 task-1] sY2qNOOLQ9q6TJkYC11alw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.934 [XNIO-1 task-1] M9xhkUpRTXCx-z2fZ4SKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.934 [XNIO-1 task-1] M9xhkUpRTXCx-z2fZ4SKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.934 [XNIO-1 task-1] M9xhkUpRTXCx-z2fZ4SKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.934 [XNIO-1 task-1] M9xhkUpRTXCx-z2fZ4SKng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.935 [XNIO-1 task-1] M9xhkUpRTXCx-z2fZ4SKng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.938 [XNIO-1 task-1] sIcvP-h-QLioBPI9RdZr4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.939 [XNIO-1 task-1] sIcvP-h-QLioBPI9RdZr4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.939 [XNIO-1 task-1] sIcvP-h-QLioBPI9RdZr4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.939 [XNIO-1 task-1] sIcvP-h-QLioBPI9RdZr4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.939 [XNIO-1 task-1] sIcvP-h-QLioBPI9RdZr4A DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.940 [XNIO-1 task-1] sIcvP-h-QLioBPI9RdZr4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.942 [XNIO-1 task-1] 4uH8SwxyTOWQHxo-q-IiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.942 [XNIO-1 task-1] 4uH8SwxyTOWQHxo-q-IiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.942 [XNIO-1 task-1] 4uH8SwxyTOWQHxo-q-IiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.943 [XNIO-1 task-1] 4uH8SwxyTOWQHxo-q-IiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.944 [XNIO-1 task-1] 4uH8SwxyTOWQHxo-q-IiCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.946 [XNIO-1 task-1] 1K-oUxgWT_-POAjQWNYAIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.946 [XNIO-1 task-1] 1K-oUxgWT_-POAjQWNYAIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.947 [XNIO-1 task-1] 1K-oUxgWT_-POAjQWNYAIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.947 [XNIO-1 task-1] 1K-oUxgWT_-POAjQWNYAIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.947 [XNIO-1 task-1] 1K-oUxgWT_-POAjQWNYAIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.947 [XNIO-1 task-1] 1K-oUxgWT_-POAjQWNYAIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.951 [XNIO-1 task-1] tK0GKOCuSDKSqZJKX-vb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.951 [XNIO-1 task-1] tK0GKOCuSDKSqZJKX-vb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.951 [XNIO-1 task-1] tK0GKOCuSDKSqZJKX-vb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.951 [XNIO-1 task-1] tK0GKOCuSDKSqZJKX-vb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.951 [XNIO-1 task-1] tK0GKOCuSDKSqZJKX-vb-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:48.954 [XNIO-1 task-1] NbkvhiGpQ_-TdfHIZckeXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.956 [XNIO-1 task-1] NbkvhiGpQ_-TdfHIZckeXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.956 [XNIO-1 task-1] NbkvhiGpQ_-TdfHIZckeXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.956 [XNIO-1 task-1] NbkvhiGpQ_-TdfHIZckeXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:48.956 [XNIO-1 task-1] NbkvhiGpQ_-TdfHIZckeXA DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:48.957 [XNIO-1 task-1] NbkvhiGpQ_-TdfHIZckeXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:48.965 [XNIO-1 task-1] AsiDcTouQxa2HWtUYKwlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.965 [XNIO-1 task-1] AsiDcTouQxa2HWtUYKwlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.965 [XNIO-1 task-1] AsiDcTouQxa2HWtUYKwlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.965 [XNIO-1 task-1] AsiDcTouQxa2HWtUYKwlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.965 [XNIO-1 task-1] AsiDcTouQxa2HWtUYKwlgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.969 [XNIO-1 task-1] dZkJ26SIQVaaC_HHd6fR5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.969 [XNIO-1 task-1] dZkJ26SIQVaaC_HHd6fR5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.969 [XNIO-1 task-1] dZkJ26SIQVaaC_HHd6fR5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:48.969 [XNIO-1 task-1] dZkJ26SIQVaaC_HHd6fR5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:48.969 [XNIO-1 task-1] dZkJ26SIQVaaC_HHd6fR5g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:48.973 [XNIO-1 task-1] fDFR-9I0RRyiupZus2gyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.974 [XNIO-1 task-1] fDFR-9I0RRyiupZus2gyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.974 [XNIO-1 task-1] fDFR-9I0RRyiupZus2gyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.974 [XNIO-1 task-1] fDFR-9I0RRyiupZus2gyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.974 [XNIO-1 task-1] fDFR-9I0RRyiupZus2gyxA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.977 [XNIO-1 task-1] DFfXpuxZRsGpPMJS6GT9JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.977 [XNIO-1 task-1] DFfXpuxZRsGpPMJS6GT9JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.977 [XNIO-1 task-1] DFfXpuxZRsGpPMJS6GT9JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.977 [XNIO-1 task-1] DFfXpuxZRsGpPMJS6GT9JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.977 [XNIO-1 task-1] DFfXpuxZRsGpPMJS6GT9JA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:48.977 [XNIO-1 task-1] DFfXpuxZRsGpPMJS6GT9JA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:48.984 [XNIO-1 task-1] 2nzNkR_9QdSzlnmEP2f5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.984 [XNIO-1 task-1] 2nzNkR_9QdSzlnmEP2f5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.984 [XNIO-1 task-1] 2nzNkR_9QdSzlnmEP2f5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.985 [XNIO-1 task-1] 2nzNkR_9QdSzlnmEP2f5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.985 [XNIO-1 task-1] 2nzNkR_9QdSzlnmEP2f5qg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:48.991 [XNIO-1 task-1] X0cVuoikQWO3VFfStntxIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.991 [XNIO-1 task-1] X0cVuoikQWO3VFfStntxIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:48.991 [XNIO-1 task-1] X0cVuoikQWO3VFfStntxIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:48.991 [XNIO-1 task-1] X0cVuoikQWO3VFfStntxIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:48.992 [XNIO-1 task-1] X0cVuoikQWO3VFfStntxIw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:48.992 [XNIO-1 task-1] X0cVuoikQWO3VFfStntxIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:48.998 [XNIO-1 task-1] IxAuJ1NOTC-25tWh38iK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.998 [XNIO-1 task-1] IxAuJ1NOTC-25tWh38iK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:48.998 [XNIO-1 task-1] IxAuJ1NOTC-25tWh38iK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:48.999 [XNIO-1 task-1] IxAuJ1NOTC-25tWh38iK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:48.999 [XNIO-1 task-1] IxAuJ1NOTC-25tWh38iK3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.010 [XNIO-1 task-1] ZMm0e0XESQmWLLZkzGotZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.011 [XNIO-1 task-1] ZMm0e0XESQmWLLZkzGotZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.011 [XNIO-1 task-1] ZMm0e0XESQmWLLZkzGotZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.011 [XNIO-1 task-1] ZMm0e0XESQmWLLZkzGotZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.011 [XNIO-1 task-1] ZMm0e0XESQmWLLZkzGotZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.014 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e8b8047c +09:00:49.022 [XNIO-1 task-1] a8KC3TwQTXiarkQRDoyy9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb2f014b-64a2-4d21-8d88-75beb6911432 +09:00:49.022 [XNIO-1 task-1] a8KC3TwQTXiarkQRDoyy9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.023 [XNIO-1 task-1] a8KC3TwQTXiarkQRDoyy9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.023 [XNIO-1 task-1] a8KC3TwQTXiarkQRDoyy9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb2f014b-64a2-4d21-8d88-75beb6911432 +09:00:49.023 [XNIO-1 task-1] a8KC3TwQTXiarkQRDoyy9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fb2f014b-64a2-4d21-8d88-75beb6911432 +09:00:49.040 [XNIO-1 task-1] OgadJESzS2CnWORgXoc0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.040 [XNIO-1 task-1] OgadJESzS2CnWORgXoc0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.040 [XNIO-1 task-1] OgadJESzS2CnWORgXoc0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.041 [XNIO-1 task-1] OgadJESzS2CnWORgXoc0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.042 [XNIO-1 task-1] OgadJESzS2CnWORgXoc0bg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.054 [XNIO-1 task-1] 840hdRKoTsWS-qLlxKCJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.055 [XNIO-1 task-1] 840hdRKoTsWS-qLlxKCJWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.056 [XNIO-1 task-1] 840hdRKoTsWS-qLlxKCJWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.056 [XNIO-1 task-1] 840hdRKoTsWS-qLlxKCJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.056 [XNIO-1 task-1] 840hdRKoTsWS-qLlxKCJWg DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:49.057 [XNIO-1 task-1] 840hdRKoTsWS-qLlxKCJWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:49.063 [XNIO-1 task-1] WDf499OUSZaVDVAAhenAgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.063 [XNIO-1 task-1] WDf499OUSZaVDVAAhenAgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.064 [XNIO-1 task-1] WDf499OUSZaVDVAAhenAgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.065 [XNIO-1 task-1] WDf499OUSZaVDVAAhenAgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.065 [XNIO-1 task-1] WDf499OUSZaVDVAAhenAgw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.071 [XNIO-1 task-1] mw_PQQR9RiiLfXMON4SUrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.072 [XNIO-1 task-1] mw_PQQR9RiiLfXMON4SUrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.072 [XNIO-1 task-1] mw_PQQR9RiiLfXMON4SUrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.072 [XNIO-1 task-1] mw_PQQR9RiiLfXMON4SUrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.073 [XNIO-1 task-1] mw_PQQR9RiiLfXMON4SUrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:49.074 [XNIO-1 task-1] mw_PQQR9RiiLfXMON4SUrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:49.082 [XNIO-1 task-1] la3lOwJHR5mXLYK9vq8KWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.082 [XNIO-1 task-1] la3lOwJHR5mXLYK9vq8KWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.082 [XNIO-1 task-1] la3lOwJHR5mXLYK9vq8KWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.082 [XNIO-1 task-1] la3lOwJHR5mXLYK9vq8KWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.083 [XNIO-1 task-1] la3lOwJHR5mXLYK9vq8KWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.084 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51836627 +09:00:49.086 [XNIO-1 task-1] GKSidJv_SVacKLK2lDU6KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.086 [XNIO-1 task-1] GKSidJv_SVacKLK2lDU6KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.086 [XNIO-1 task-1] GKSidJv_SVacKLK2lDU6KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.087 [XNIO-1 task-1] GKSidJv_SVacKLK2lDU6KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.087 [XNIO-1 task-1] GKSidJv_SVacKLK2lDU6KA DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.089 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3c5ffe6 +09:00:49.090 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:51836627 +09:00:49.095 [XNIO-1 task-1] GKSidJv_SVacKLK2lDU6KA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.100 [XNIO-1 task-1] R8aKOTmwQvCNtmxODgoLWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c1520558-dbdd-401e-ac08-73f2c774d7b6 +09:00:49.100 [XNIO-1 task-1] R8aKOTmwQvCNtmxODgoLWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.100 [XNIO-1 task-1] R8aKOTmwQvCNtmxODgoLWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.101 [XNIO-1 task-1] R8aKOTmwQvCNtmxODgoLWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c1520558-dbdd-401e-ac08-73f2c774d7b6 +09:00:49.101 [XNIO-1 task-1] R8aKOTmwQvCNtmxODgoLWg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c1520558-dbdd-401e-ac08-73f2c774d7b6 +09:00:49.103 [XNIO-1 task-1] R8aKOTmwQvCNtmxODgoLWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c1520558-dbdd-401e-ac08-73f2c774d7b6 is not found.","severity":"ERROR"} +09:00:49.106 [XNIO-1 task-1] lTHkA1IrTOGWS5QDXG0K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.106 [XNIO-1 task-1] lTHkA1IrTOGWS5QDXG0K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.106 [XNIO-1 task-1] lTHkA1IrTOGWS5QDXG0K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.106 [XNIO-1 task-1] lTHkA1IrTOGWS5QDXG0K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.107 [XNIO-1 task-1] lTHkA1IrTOGWS5QDXG0K8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.120 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d4651435 +09:00:49.120 [XNIO-1 task-1] qPyWgCggT2agbTTKinu19Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.120 [XNIO-1 task-1] qPyWgCggT2agbTTKinu19Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.120 [XNIO-1 task-1] qPyWgCggT2agbTTKinu19Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.121 [XNIO-1 task-1] qPyWgCggT2agbTTKinu19Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.121 [XNIO-1 task-1] qPyWgCggT2agbTTKinu19Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.130 [XNIO-1 task-1] OEO46viKQ26hkX1BjvSJ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.131 [XNIO-1 task-1] OEO46viKQ26hkX1BjvSJ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.131 [XNIO-1 task-1] OEO46viKQ26hkX1BjvSJ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.131 [XNIO-1 task-1] OEO46viKQ26hkX1BjvSJ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.131 [XNIO-1 task-1] OEO46viKQ26hkX1BjvSJ4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.135 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b3c5ffe6 +09:00:49.140 [XNIO-1 task-1] PpGlM--8QbaxEluLsb0khw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.140 [XNIO-1 task-1] PpGlM--8QbaxEluLsb0khw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.140 [XNIO-1 task-1] PpGlM--8QbaxEluLsb0khw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.141 [XNIO-1 task-1] PpGlM--8QbaxEluLsb0khw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.141 [XNIO-1 task-1] PpGlM--8QbaxEluLsb0khw DEBUG com.networknt.schema.TypeValidator debug - validate( "6f5cd626-5fc7-433f-ba6b-13141750134a", "6f5cd626-5fc7-433f-ba6b-13141750134a", refreshToken) +09:00:49.142 [XNIO-1 task-1] PpGlM--8QbaxEluLsb0khw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f5cd626-5fc7-433f-ba6b-13141750134a is not found.","severity":"ERROR"} +09:00:49.154 [XNIO-1 task-1] dKbsClokQSWaiA9kFdE4Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:49.155 [XNIO-1 task-1] dKbsClokQSWaiA9kFdE4Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.155 [XNIO-1 task-1] dKbsClokQSWaiA9kFdE4Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.156 [XNIO-1 task-1] dKbsClokQSWaiA9kFdE4Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:49.156 [XNIO-1 task-1] dKbsClokQSWaiA9kFdE4Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:49.156 [XNIO-1 task-1] dKbsClokQSWaiA9kFdE4Kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:49.159 [XNIO-1 task-1] UULTMwH8RHaPbGA7pd39hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.159 [XNIO-1 task-1] UULTMwH8RHaPbGA7pd39hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.160 [XNIO-1 task-1] UULTMwH8RHaPbGA7pd39hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.160 [XNIO-1 task-1] UULTMwH8RHaPbGA7pd39hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.166 [XNIO-1 task-1] ZEKJ4hrIQpKw0qToFWBxAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.166 [XNIO-1 task-1] ZEKJ4hrIQpKw0qToFWBxAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.166 [XNIO-1 task-1] ZEKJ4hrIQpKw0qToFWBxAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.167 [XNIO-1 task-1] ZEKJ4hrIQpKw0qToFWBxAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.167 [XNIO-1 task-1] ZEKJ4hrIQpKw0qToFWBxAA DEBUG com.networknt.schema.TypeValidator debug - validate( "6f5cd626-5fc7-433f-ba6b-13141750134a", "6f5cd626-5fc7-433f-ba6b-13141750134a", refreshToken) +09:00:49.167 [XNIO-1 task-1] ZEKJ4hrIQpKw0qToFWBxAA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f5cd626-5fc7-433f-ba6b-13141750134a is not found.","severity":"ERROR"} +09:00:49.169 [XNIO-1 task-1] Tc1vJXt5TAW2vZF4cpMauw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.170 [XNIO-1 task-1] Tc1vJXt5TAW2vZF4cpMauw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.170 [XNIO-1 task-1] Tc1vJXt5TAW2vZF4cpMauw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.170 [XNIO-1 task-1] Tc1vJXt5TAW2vZF4cpMauw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.170 [XNIO-1 task-1] Tc1vJXt5TAW2vZF4cpMauw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.172 [XNIO-1 task-1] d5b8HmRKSuOXnMp-06B2DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.172 [XNIO-1 task-1] d5b8HmRKSuOXnMp-06B2DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.172 [XNIO-1 task-1] d5b8HmRKSuOXnMp-06B2DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.172 [XNIO-1 task-1] d5b8HmRKSuOXnMp-06B2DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.172 [XNIO-1 task-1] d5b8HmRKSuOXnMp-06B2DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6f5cd626-5fc7-433f-ba6b-13141750134a", "6f5cd626-5fc7-433f-ba6b-13141750134a", refreshToken) +09:00:49.173 [XNIO-1 task-1] d5b8HmRKSuOXnMp-06B2DQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f5cd626-5fc7-433f-ba6b-13141750134a is not found.","severity":"ERROR"} +09:00:49.176 [XNIO-1 task-1] Jf-GUkOiT661NieXlstbdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.176 [XNIO-1 task-1] Jf-GUkOiT661NieXlstbdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.176 [XNIO-1 task-1] Jf-GUkOiT661NieXlstbdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.176 [XNIO-1 task-1] Jf-GUkOiT661NieXlstbdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.178 [XNIO-1 task-1] Jf-GUkOiT661NieXlstbdQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:49.183 [XNIO-1 task-1] 1hwghILJRMmNp9HxIOZtQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.183 [XNIO-1 task-1] 1hwghILJRMmNp9HxIOZtQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.183 [XNIO-1 task-1] 1hwghILJRMmNp9HxIOZtQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.183 [XNIO-1 task-1] 1hwghILJRMmNp9HxIOZtQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a, base path is set to: null +09:00:49.183 [XNIO-1 task-1] 1hwghILJRMmNp9HxIOZtQA DEBUG com.networknt.schema.TypeValidator debug - validate( "6f5cd626-5fc7-433f-ba6b-13141750134a", "6f5cd626-5fc7-433f-ba6b-13141750134a", refreshToken) +09:00:49.184 [XNIO-1 task-1] 1hwghILJRMmNp9HxIOZtQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f5cd626-5fc7-433f-ba6b-13141750134a is not found.","severity":"ERROR"} +09:00:49.191 [XNIO-1 task-1] HKXu-eK6Rxu2JuvqSL-2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.191 [XNIO-1 task-1] HKXu-eK6Rxu2JuvqSL-2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.192 [XNIO-1 task-1] HKXu-eK6Rxu2JuvqSL-2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.192 [XNIO-1 task-1] HKXu-eK6Rxu2JuvqSL-2zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.204 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:51836627 +09:00:49.207 [XNIO-1 task-1] dc9qrRIzSaO1luQxCc6BBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:49.207 [XNIO-1 task-1] dc9qrRIzSaO1luQxCc6BBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.207 [XNIO-1 task-1] dc9qrRIzSaO1luQxCc6BBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.207 [XNIO-1 task-1] dc9qrRIzSaO1luQxCc6BBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b462fbd-f1c0-40e0-8357-e4b445e7a5ca, base path is set to: null +09:00:49.208 [XNIO-1 task-1] dc9qrRIzSaO1luQxCc6BBw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", "8b462fbd-f1c0-40e0-8357-e4b445e7a5ca", refreshToken) +09:00:49.209 [XNIO-1 task-1] dc9qrRIzSaO1luQxCc6BBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8b462fbd-f1c0-40e0-8357-e4b445e7a5ca is not found.","severity":"ERROR"} +09:00:49.217 [XNIO-1 task-1] UcXP5dGOS1y1OZOTDIKv_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.217 [XNIO-1 task-1] UcXP5dGOS1y1OZOTDIKv_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.217 [XNIO-1 task-1] UcXP5dGOS1y1OZOTDIKv_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.217 [XNIO-1 task-1] UcXP5dGOS1y1OZOTDIKv_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.218 [XNIO-1 task-1] UcXP5dGOS1y1OZOTDIKv_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.221 [XNIO-1 task-1] S0dVBWF8QqG0pWmmjuMcwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.221 [XNIO-1 task-1] S0dVBWF8QqG0pWmmjuMcwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.222 [XNIO-1 task-1] S0dVBWF8QqG0pWmmjuMcwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.222 [XNIO-1 task-1] S0dVBWF8QqG0pWmmjuMcwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.222 [XNIO-1 task-1] S0dVBWF8QqG0pWmmjuMcwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.225 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51836627 +09:00:49.236 [XNIO-1 task-1] cAPD5XoHTJmapr30Oti84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.236 [XNIO-1 task-1] cAPD5XoHTJmapr30Oti84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.236 [XNIO-1 task-1] cAPD5XoHTJmapr30Oti84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.236 [XNIO-1 task-1] cAPD5XoHTJmapr30Oti84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.236 [XNIO-1 task-1] cAPD5XoHTJmapr30Oti84w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.239 [XNIO-1 task-1] Pu-EAa5DTL2R2pKo7fEpKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.239 [XNIO-1 task-1] Pu-EAa5DTL2R2pKo7fEpKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.239 [XNIO-1 task-1] Pu-EAa5DTL2R2pKo7fEpKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.240 [XNIO-1 task-1] Pu-EAa5DTL2R2pKo7fEpKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.240 [XNIO-1 task-1] Pu-EAa5DTL2R2pKo7fEpKA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.243 [XNIO-1 task-1] S_PVGcGXRkykNFZQtOOWiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.243 [XNIO-1 task-1] S_PVGcGXRkykNFZQtOOWiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.244 [XNIO-1 task-1] S_PVGcGXRkykNFZQtOOWiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.244 [XNIO-1 task-1] S_PVGcGXRkykNFZQtOOWiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.244 [XNIO-1 task-1] S_PVGcGXRkykNFZQtOOWiw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.256 [XNIO-1 task-1] gccNBbIRQhKASGIE9K_BCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.256 [XNIO-1 task-1] gccNBbIRQhKASGIE9K_BCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.257 [XNIO-1 task-1] gccNBbIRQhKASGIE9K_BCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.257 [XNIO-1 task-1] gccNBbIRQhKASGIE9K_BCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.263 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:51836627 +09:00:49.263 [XNIO-1 task-1] TGTIPJfqTaW3o1tJQJIWSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ab436561-7b1e-4335-8693-2629506653b6, base path is set to: null +09:00:49.263 [XNIO-1 task-1] TGTIPJfqTaW3o1tJQJIWSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.264 [XNIO-1 task-1] TGTIPJfqTaW3o1tJQJIWSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.264 [XNIO-1 task-1] TGTIPJfqTaW3o1tJQJIWSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ab436561-7b1e-4335-8693-2629506653b6, base path is set to: null +09:00:49.264 [XNIO-1 task-1] TGTIPJfqTaW3o1tJQJIWSA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab436561-7b1e-4335-8693-2629506653b6", "ab436561-7b1e-4335-8693-2629506653b6", refreshToken) +09:00:49.266 [XNIO-1 task-1] TGTIPJfqTaW3o1tJQJIWSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ab436561-7b1e-4335-8693-2629506653b6 is not found.","severity":"ERROR"} +09:00:49.272 [XNIO-1 task-1] lYFqw10FQgmPFZkxIH2Y0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.272 [XNIO-1 task-1] lYFqw10FQgmPFZkxIH2Y0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.272 [XNIO-1 task-1] lYFqw10FQgmPFZkxIH2Y0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.273 [XNIO-1 task-1] lYFqw10FQgmPFZkxIH2Y0g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.280 [XNIO-1 task-1] 8Ho_G2_DQvCx9Oy_bpuDeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:49.280 [XNIO-1 task-1] 8Ho_G2_DQvCx9Oy_bpuDeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.280 [XNIO-1 task-1] 8Ho_G2_DQvCx9Oy_bpuDeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.280 [XNIO-1 task-1] 8Ho_G2_DQvCx9Oy_bpuDeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:49.281 [XNIO-1 task-1] 8Ho_G2_DQvCx9Oy_bpuDeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", refreshToken) +09:00:49.291 [XNIO-1 task-1] FfG39DSZQZCC4E43jCaIpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.291 [XNIO-1 task-1] FfG39DSZQZCC4E43jCaIpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.291 [XNIO-1 task-1] FfG39DSZQZCC4E43jCaIpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.291 [XNIO-1 task-1] FfG39DSZQZCC4E43jCaIpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.292 [XNIO-1 task-1] FfG39DSZQZCC4E43jCaIpg DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:49.292 [XNIO-1 task-1] FfG39DSZQZCC4E43jCaIpg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:49.295 [XNIO-1 task-1] Kwg25GCeQUqiUbOO01xmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.295 [XNIO-1 task-1] Kwg25GCeQUqiUbOO01xmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.296 [XNIO-1 task-1] Kwg25GCeQUqiUbOO01xmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.296 [XNIO-1 task-1] Kwg25GCeQUqiUbOO01xmtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.303 [XNIO-1 task-1] EdmUf_4hQXaQMsPjCklSzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.303 [XNIO-1 task-1] EdmUf_4hQXaQMsPjCklSzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.304 [XNIO-1 task-1] EdmUf_4hQXaQMsPjCklSzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.304 [XNIO-1 task-1] EdmUf_4hQXaQMsPjCklSzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.304 [XNIO-1 task-1] EdmUf_4hQXaQMsPjCklSzg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.317 [XNIO-1 task-1] hFts0TkARty0SvKKMcl8Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.317 [XNIO-1 task-1] hFts0TkARty0SvKKMcl8Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.317 [XNIO-1 task-1] hFts0TkARty0SvKKMcl8Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.317 [XNIO-1 task-1] hFts0TkARty0SvKKMcl8Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.321 [XNIO-1 task-1] hFts0TkARty0SvKKMcl8Hw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.332 [XNIO-1 task-1] bwiTkRd7SwqbQWNEygIyZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.332 [XNIO-1 task-1] bwiTkRd7SwqbQWNEygIyZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.332 [XNIO-1 task-1] bwiTkRd7SwqbQWNEygIyZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.333 [XNIO-1 task-1] bwiTkRd7SwqbQWNEygIyZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.333 [XNIO-1 task-1] bwiTkRd7SwqbQWNEygIyZw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:49.333 [XNIO-1 task-1] bwiTkRd7SwqbQWNEygIyZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:49.341 [XNIO-1 task-1] FacoeGb6ReCjmGHgXovBUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.341 [XNIO-1 task-1] FacoeGb6ReCjmGHgXovBUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.341 [XNIO-1 task-1] FacoeGb6ReCjmGHgXovBUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.341 [XNIO-1 task-1] FacoeGb6ReCjmGHgXovBUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.342 [XNIO-1 task-1] FacoeGb6ReCjmGHgXovBUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.347 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d4651435 +09:00:49.348 [XNIO-1 task-1] tr7cnlcwQxCMmfcRj9NCJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.348 [XNIO-1 task-1] tr7cnlcwQxCMmfcRj9NCJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.348 [XNIO-1 task-1] tr7cnlcwQxCMmfcRj9NCJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.348 [XNIO-1 task-1] tr7cnlcwQxCMmfcRj9NCJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.349 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d4651435 +09:00:49.354 [XNIO-1 task-1] 9HyEJ5HiQuuCUyETOQvrQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.354 [XNIO-1 task-1] 9HyEJ5HiQuuCUyETOQvrQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.354 [XNIO-1 task-1] 9HyEJ5HiQuuCUyETOQvrQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.354 [XNIO-1 task-1] 9HyEJ5HiQuuCUyETOQvrQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.355 [XNIO-1 task-1] 9HyEJ5HiQuuCUyETOQvrQg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.361 [XNIO-1 task-1] 5_0ybGLpTpKlJZP9jQFm7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.361 [XNIO-1 task-1] 5_0ybGLpTpKlJZP9jQFm7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.361 [XNIO-1 task-1] 5_0ybGLpTpKlJZP9jQFm7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.361 [XNIO-1 task-1] 5_0ybGLpTpKlJZP9jQFm7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.361 [XNIO-1 task-1] 5_0ybGLpTpKlJZP9jQFm7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.362 [XNIO-1 task-1] 5_0ybGLpTpKlJZP9jQFm7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.364 [XNIO-1 task-1] AXBBSNKsRFq7ifzfBzsj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.364 [XNIO-1 task-1] AXBBSNKsRFq7ifzfBzsj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.364 [XNIO-1 task-1] AXBBSNKsRFq7ifzfBzsj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.364 [XNIO-1 task-1] AXBBSNKsRFq7ifzfBzsj3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.365 [XNIO-1 task-1] AXBBSNKsRFq7ifzfBzsj3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.368 [XNIO-1 task-1] jNcHA2r8TVSDO9Y6eQYfbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.368 [XNIO-1 task-1] jNcHA2r8TVSDO9Y6eQYfbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.368 [XNIO-1 task-1] jNcHA2r8TVSDO9Y6eQYfbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.368 [XNIO-1 task-1] jNcHA2r8TVSDO9Y6eQYfbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.369 [XNIO-1 task-1] jNcHA2r8TVSDO9Y6eQYfbg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.390 [XNIO-1 task-1] xLbrFa-ARZqlRwmYqhN0Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.390 [XNIO-1 task-1] xLbrFa-ARZqlRwmYqhN0Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.390 [XNIO-1 task-1] xLbrFa-ARZqlRwmYqhN0Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.391 [XNIO-1 task-1] xLbrFa-ARZqlRwmYqhN0Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.391 [XNIO-1 task-1] xLbrFa-ARZqlRwmYqhN0Pg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.406 [XNIO-1 task-1] kl69AhggQfWlUn8aIVuRWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.406 [XNIO-1 task-1] kl69AhggQfWlUn8aIVuRWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.406 [XNIO-1 task-1] kl69AhggQfWlUn8aIVuRWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.406 [XNIO-1 task-1] kl69AhggQfWlUn8aIVuRWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.407 [XNIO-1 task-1] kl69AhggQfWlUn8aIVuRWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.407 [XNIO-1 task-1] kl69AhggQfWlUn8aIVuRWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.410 [XNIO-1 task-1] hllWWybIQ2SdcN4FfgShWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.410 [XNIO-1 task-1] hllWWybIQ2SdcN4FfgShWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.410 [XNIO-1 task-1] hllWWybIQ2SdcN4FfgShWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.410 [XNIO-1 task-1] hllWWybIQ2SdcN4FfgShWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.410 [XNIO-1 task-1] hllWWybIQ2SdcN4FfgShWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.414 [XNIO-1 task-1] Br6i1Bq1QUqVJ14nSlxbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.414 [XNIO-1 task-1] Br6i1Bq1QUqVJ14nSlxbMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.415 [XNIO-1 task-1] Br6i1Bq1QUqVJ14nSlxbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.415 [XNIO-1 task-1] Br6i1Bq1QUqVJ14nSlxbMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.415 [XNIO-1 task-1] Br6i1Bq1QUqVJ14nSlxbMg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.426 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22ce6dc7-dafa-4745-93ad-5c4f89247021 +09:00:49.426 [XNIO-1 task-1] ogJibdt3TnyVzOdl_BjM3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.426 [XNIO-1 task-1] ogJibdt3TnyVzOdl_BjM3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.426 [XNIO-1 task-1] ogJibdt3TnyVzOdl_BjM3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.427 [XNIO-1 task-1] ogJibdt3TnyVzOdl_BjM3w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.427 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22ce6dc7-dafa-4745-93ad-5c4f89247021 +09:00:49.448 [XNIO-1 task-1] XftnBWOeQI-5cRgB91wrcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.448 [XNIO-1 task-1] XftnBWOeQI-5cRgB91wrcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.449 [XNIO-1 task-1] XftnBWOeQI-5cRgB91wrcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.449 [XNIO-1 task-1] XftnBWOeQI-5cRgB91wrcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.449 [XNIO-1 task-1] XftnBWOeQI-5cRgB91wrcw DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.449 [XNIO-1 task-1] XftnBWOeQI-5cRgB91wrcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.452 [XNIO-1 task-1] cNtoJP_PT2ullfLVY1i0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.452 [XNIO-1 task-1] cNtoJP_PT2ullfLVY1i0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.452 [XNIO-1 task-1] cNtoJP_PT2ullfLVY1i0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.452 [XNIO-1 task-1] cNtoJP_PT2ullfLVY1i0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.453 [XNIO-1 task-1] cNtoJP_PT2ullfLVY1i0nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.460 [XNIO-1 task-1] HJ7QwujxQoShX2UUuA9e1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.461 [XNIO-1 task-1] HJ7QwujxQoShX2UUuA9e1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.461 [XNIO-1 task-1] HJ7QwujxQoShX2UUuA9e1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.461 [XNIO-1 task-1] HJ7QwujxQoShX2UUuA9e1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.461 [XNIO-1 task-1] HJ7QwujxQoShX2UUuA9e1g DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.461 [XNIO-1 task-1] HJ7QwujxQoShX2UUuA9e1g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.467 [XNIO-1 task-1] RTImqv_RQyyuBj-Nlz4-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47bea45a-a491-4fa7-8cf2-14bd51f46c7c +09:00:49.467 [XNIO-1 task-1] RTImqv_RQyyuBj-Nlz4-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.467 [XNIO-1 task-1] RTImqv_RQyyuBj-Nlz4-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.467 [XNIO-1 task-1] RTImqv_RQyyuBj-Nlz4-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/47bea45a-a491-4fa7-8cf2-14bd51f46c7c +09:00:49.467 [XNIO-1 task-1] RTImqv_RQyyuBj-Nlz4-fw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 47bea45a-a491-4fa7-8cf2-14bd51f46c7c +09:00:49.476 [XNIO-1 task-1] 6NidoirGTK2Y0BWsQDYXnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:49.476 [XNIO-1 task-1] 6NidoirGTK2Y0BWsQDYXnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.476 [XNIO-1 task-1] 6NidoirGTK2Y0BWsQDYXnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.476 [XNIO-1 task-1] 6NidoirGTK2Y0BWsQDYXnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:49.477 [XNIO-1 task-1] 6NidoirGTK2Y0BWsQDYXnw DEBUG com.networknt.schema.TypeValidator debug - validate( "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", refreshToken) +09:00:49.478 [XNIO-1 task-1] 6NidoirGTK2Y0BWsQDYXnw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 is not found.","severity":"ERROR"} +09:00:49.481 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51836627 +09:00:49.483 [XNIO-1 task-1] 7Y8o6fRVT6uy3ZBVc5JW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.484 [XNIO-1 task-1] 7Y8o6fRVT6uy3ZBVc5JW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.484 [XNIO-1 task-1] 7Y8o6fRVT6uy3ZBVc5JW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.484 [XNIO-1 task-1] 7Y8o6fRVT6uy3ZBVc5JW7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.491 [XNIO-1 task-1] SmIJjUKhTVihaz8sp_QucQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.491 [XNIO-1 task-1] SmIJjUKhTVihaz8sp_QucQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.491 [XNIO-1 task-1] SmIJjUKhTVihaz8sp_QucQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.491 [XNIO-1 task-1] SmIJjUKhTVihaz8sp_QucQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.491 [XNIO-1 task-1] SmIJjUKhTVihaz8sp_QucQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:49.491 [XNIO-1 task-1] SmIJjUKhTVihaz8sp_QucQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:49.498 [XNIO-1 task-1] -U_a-OMuTEitaurVRQ69VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.498 [XNIO-1 task-1] -U_a-OMuTEitaurVRQ69VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.498 [XNIO-1 task-1] -U_a-OMuTEitaurVRQ69VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.498 [XNIO-1 task-1] -U_a-OMuTEitaurVRQ69VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.498 [XNIO-1 task-1] -U_a-OMuTEitaurVRQ69VA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.504 [XNIO-1 task-1] ANjRFekYToWkB74BkSFLfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.504 [XNIO-1 task-1] ANjRFekYToWkB74BkSFLfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.505 [XNIO-1 task-1] ANjRFekYToWkB74BkSFLfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.505 [XNIO-1 task-1] ANjRFekYToWkB74BkSFLfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.505 [XNIO-1 task-1] ANjRFekYToWkB74BkSFLfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.520 [XNIO-1 task-1] gxg-FUhxTLWY0wCB_ihQ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.520 [XNIO-1 task-1] gxg-FUhxTLWY0wCB_ihQ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.520 [XNIO-1 task-1] gxg-FUhxTLWY0wCB_ihQ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.520 [XNIO-1 task-1] gxg-FUhxTLWY0wCB_ihQ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.520 [XNIO-1 task-1] gxg-FUhxTLWY0wCB_ihQ0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.525 [XNIO-1 task-1] or3PhX_fTK2wRtZS5mzVHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.525 [XNIO-1 task-1] or3PhX_fTK2wRtZS5mzVHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.525 [XNIO-1 task-1] or3PhX_fTK2wRtZS5mzVHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.525 [XNIO-1 task-1] or3PhX_fTK2wRtZS5mzVHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.525 [XNIO-1 task-1] or3PhX_fTK2wRtZS5mzVHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.535 [XNIO-1 task-1] PGHpJdqBTzuXTO42r5p21g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.535 [XNIO-1 task-1] PGHpJdqBTzuXTO42r5p21g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.535 [XNIO-1 task-1] PGHpJdqBTzuXTO42r5p21g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.535 [XNIO-1 task-1] PGHpJdqBTzuXTO42r5p21g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.536 [XNIO-1 task-1] PGHpJdqBTzuXTO42r5p21g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:49.540 [XNIO-1 task-1] k_pA6LdtTrW9iuYO0PmzfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.540 [XNIO-1 task-1] k_pA6LdtTrW9iuYO0PmzfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.540 [XNIO-1 task-1] k_pA6LdtTrW9iuYO0PmzfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.540 [XNIO-1 task-1] k_pA6LdtTrW9iuYO0PmzfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.540 [XNIO-1 task-1] k_pA6LdtTrW9iuYO0PmzfA DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:49.540 [XNIO-1 task-1] k_pA6LdtTrW9iuYO0PmzfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:49.547 [XNIO-1 task-1] n3_hCJVhRcGiD6uHFaoPOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.547 [XNIO-1 task-1] n3_hCJVhRcGiD6uHFaoPOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.547 [XNIO-1 task-1] n3_hCJVhRcGiD6uHFaoPOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.547 [XNIO-1 task-1] n3_hCJVhRcGiD6uHFaoPOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.558 [XNIO-1 task-1] gYh48pNUTP-rqYtUNBM_wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:49.561 [XNIO-1 task-1] gYh48pNUTP-rqYtUNBM_wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.561 [XNIO-1 task-1] gYh48pNUTP-rqYtUNBM_wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.561 [XNIO-1 task-1] gYh48pNUTP-rqYtUNBM_wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:49.561 [XNIO-1 task-1] gYh48pNUTP-rqYtUNBM_wA DEBUG com.networknt.schema.TypeValidator debug - validate( "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", refreshToken) +09:00:49.562 [XNIO-1 task-1] gYh48pNUTP-rqYtUNBM_wA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 is not found.","severity":"ERROR"} +09:00:49.564 [XNIO-1 task-1] PGskDoPrQYW0Ctdur2ut7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.564 [XNIO-1 task-1] PGskDoPrQYW0Ctdur2ut7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.564 [XNIO-1 task-1] PGskDoPrQYW0Ctdur2ut7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.565 [XNIO-1 task-1] PGskDoPrQYW0Ctdur2ut7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:49.565 [XNIO-1 task-1] PGskDoPrQYW0Ctdur2ut7w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:49.571 [XNIO-1 task-1] wsAEN2aLQGiCRz-0fumxRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.571 [XNIO-1 task-1] wsAEN2aLQGiCRz-0fumxRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.572 [XNIO-1 task-1] wsAEN2aLQGiCRz-0fumxRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.572 [XNIO-1 task-1] wsAEN2aLQGiCRz-0fumxRA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.572 [XNIO-1 task-1] wsAEN2aLQGiCRz-0fumxRA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.581 [XNIO-1 task-1] 2PO5f50WRaOGOa6nH08uIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.581 [XNIO-1 task-1] 2PO5f50WRaOGOa6nH08uIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.581 [XNIO-1 task-1] 2PO5f50WRaOGOa6nH08uIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.582 [XNIO-1 task-1] 2PO5f50WRaOGOa6nH08uIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.588 [XNIO-1 task-1] pRWiizylTs2zdZzmZfP8aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.588 [XNIO-1 task-1] pRWiizylTs2zdZzmZfP8aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.588 [XNIO-1 task-1] pRWiizylTs2zdZzmZfP8aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.588 [XNIO-1 task-1] pRWiizylTs2zdZzmZfP8aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:49.589 [XNIO-1 task-1] pRWiizylTs2zdZzmZfP8aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:49.589 [XNIO-1 task-1] pRWiizylTs2zdZzmZfP8aQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:49.592 [XNIO-1 task-1] uS3oMA88RauyMs2YVq4NHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.592 [XNIO-1 task-1] uS3oMA88RauyMs2YVq4NHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.593 [XNIO-1 task-1] uS3oMA88RauyMs2YVq4NHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.593 [XNIO-1 task-1] uS3oMA88RauyMs2YVq4NHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.596 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:51836627 +09:00:49.599 [XNIO-1 task-1] iNPVpahNRwulMAPs8fTpiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bc5d7c19-c254-437b-b8a0-a232e9e8c1e0, base path is set to: null +09:00:49.600 [XNIO-1 task-1] iNPVpahNRwulMAPs8fTpiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.600 [XNIO-1 task-1] iNPVpahNRwulMAPs8fTpiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.600 [XNIO-1 task-1] iNPVpahNRwulMAPs8fTpiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bc5d7c19-c254-437b-b8a0-a232e9e8c1e0, base path is set to: null +09:00:49.600 [XNIO-1 task-1] iNPVpahNRwulMAPs8fTpiw DEBUG com.networknt.schema.TypeValidator debug - validate( "bc5d7c19-c254-437b-b8a0-a232e9e8c1e0", "bc5d7c19-c254-437b-b8a0-a232e9e8c1e0", refreshToken) +09:00:49.611 [XNIO-1 task-1] LvcmrY2fT-OOCWBrq4UU2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.611 [XNIO-1 task-1] LvcmrY2fT-OOCWBrq4UU2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.611 [XNIO-1 task-1] LvcmrY2fT-OOCWBrq4UU2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.612 [XNIO-1 task-1] LvcmrY2fT-OOCWBrq4UU2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.612 [XNIO-1 task-1] LvcmrY2fT-OOCWBrq4UU2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.619 [XNIO-1 task-1] WEPKjc9XRkyXrYKERcGxOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.619 [XNIO-1 task-1] WEPKjc9XRkyXrYKERcGxOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.620 [XNIO-1 task-1] WEPKjc9XRkyXrYKERcGxOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.620 [XNIO-1 task-1] WEPKjc9XRkyXrYKERcGxOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.620 [XNIO-1 task-1] WEPKjc9XRkyXrYKERcGxOw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.625 [XNIO-1 task-1] In8dtZb8T5W7ZPtTDPVETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.626 [XNIO-1 task-1] In8dtZb8T5W7ZPtTDPVETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.626 [XNIO-1 task-1] In8dtZb8T5W7ZPtTDPVETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.626 [XNIO-1 task-1] In8dtZb8T5W7ZPtTDPVETA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.634 [XNIO-1 task-1] 2DBKyyMVQkmRqOOlqqcnEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.634 [XNIO-1 task-1] 2DBKyyMVQkmRqOOlqqcnEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.634 [XNIO-1 task-1] 2DBKyyMVQkmRqOOlqqcnEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.634 [XNIO-1 task-1] 2DBKyyMVQkmRqOOlqqcnEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.636 [XNIO-1 task-1] 2DBKyyMVQkmRqOOlqqcnEg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.646 [XNIO-1 task-1] 3j_59qg7QTmUyU1NV8xEng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:49.646 [XNIO-1 task-1] 3j_59qg7QTmUyU1NV8xEng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.646 [XNIO-1 task-1] 3j_59qg7QTmUyU1NV8xEng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.647 [XNIO-1 task-1] 3j_59qg7QTmUyU1NV8xEng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:49.647 [XNIO-1 task-1] 3j_59qg7QTmUyU1NV8xEng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:49.647 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51836627 +09:00:49.651 [XNIO-1 task-1] 96lAt25GTYiJpAF0LdUeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.651 [XNIO-1 task-1] 96lAt25GTYiJpAF0LdUeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.652 [XNIO-1 task-1] 96lAt25GTYiJpAF0LdUeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.652 [XNIO-1 task-1] 96lAt25GTYiJpAF0LdUeAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.656 [XNIO-1 task-1] jc4eXamDRsmcvueWQcPMug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:49.656 [XNIO-1 task-1] jc4eXamDRsmcvueWQcPMug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.656 [XNIO-1 task-1] jc4eXamDRsmcvueWQcPMug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.657 [XNIO-1 task-1] jc4eXamDRsmcvueWQcPMug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:49.657 [XNIO-1 task-1] jc4eXamDRsmcvueWQcPMug DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb920c9-188b-411a-89f4-31f40a8923f0", "6eb920c9-188b-411a-89f4-31f40a8923f0", refreshToken) +09:00:49.668 [XNIO-1 task-1] yi0r5rxxSsaDzp8VVPcngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.668 [XNIO-1 task-1] yi0r5rxxSsaDzp8VVPcngQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.668 [XNIO-1 task-1] yi0r5rxxSsaDzp8VVPcngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.668 [XNIO-1 task-1] yi0r5rxxSsaDzp8VVPcngQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.669 [XNIO-1 task-1] yi0r5rxxSsaDzp8VVPcngQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.679 [XNIO-1 task-1] glNhafI_Ti6CF9td4N8gxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.680 [XNIO-1 task-1] glNhafI_Ti6CF9td4N8gxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.681 [XNIO-1 task-1] glNhafI_Ti6CF9td4N8gxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.681 [XNIO-1 task-1] glNhafI_Ti6CF9td4N8gxg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.688 [XNIO-1 task-1] fkEY2VTMRAGNn3ZK4bX2cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba, base path is set to: null +09:00:49.688 [XNIO-1 task-1] fkEY2VTMRAGNn3ZK4bX2cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.688 [XNIO-1 task-1] fkEY2VTMRAGNn3ZK4bX2cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.688 [XNIO-1 task-1] fkEY2VTMRAGNn3ZK4bX2cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba, base path is set to: null +09:00:49.688 [XNIO-1 task-1] fkEY2VTMRAGNn3ZK4bX2cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", refreshToken) +09:00:49.695 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:02680685 +09:00:49.700 [XNIO-1 task-1] XdnV3B9XS-CjnNfDxvpyMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.700 [XNIO-1 task-1] XdnV3B9XS-CjnNfDxvpyMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.701 [XNIO-1 task-1] XdnV3B9XS-CjnNfDxvpyMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.701 [XNIO-1 task-1] XdnV3B9XS-CjnNfDxvpyMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.702 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:02680685 +09:00:49.715 [XNIO-1 task-1] ak1I9BwvSeC6P9amClcdYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/90a00706-67b8-41f5-baab-e2bd0af57a99, base path is set to: null +09:00:49.715 [XNIO-1 task-1] ak1I9BwvSeC6P9amClcdYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.715 [XNIO-1 task-1] ak1I9BwvSeC6P9amClcdYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.715 [XNIO-1 task-1] ak1I9BwvSeC6P9amClcdYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/90a00706-67b8-41f5-baab-e2bd0af57a99, base path is set to: null +09:00:49.716 [XNIO-1 task-1] ak1I9BwvSeC6P9amClcdYw DEBUG com.networknt.schema.TypeValidator debug - validate( "90a00706-67b8-41f5-baab-e2bd0af57a99", "90a00706-67b8-41f5-baab-e2bd0af57a99", refreshToken) +09:00:49.723 [XNIO-1 task-1] eJwZJJ3mSpOiAcRH8U4hIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3, base path is set to: null +09:00:49.723 [XNIO-1 task-1] eJwZJJ3mSpOiAcRH8U4hIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.723 [XNIO-1 task-1] eJwZJJ3mSpOiAcRH8U4hIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.723 [XNIO-1 task-1] eJwZJJ3mSpOiAcRH8U4hIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3, base path is set to: null +09:00:49.724 [XNIO-1 task-1] eJwZJJ3mSpOiAcRH8U4hIw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3", "fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3", refreshToken) +09:00:49.734 [XNIO-1 task-1] GrH3tIyHTtePcOS5fiDZgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:49.735 [XNIO-1 task-1] GrH3tIyHTtePcOS5fiDZgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.735 [XNIO-1 task-1] GrH3tIyHTtePcOS5fiDZgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.735 [XNIO-1 task-1] GrH3tIyHTtePcOS5fiDZgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:49.736 [XNIO-1 task-1] GrH3tIyHTtePcOS5fiDZgw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb920c9-188b-411a-89f4-31f40a8923f0", "6eb920c9-188b-411a-89f4-31f40a8923f0", refreshToken) +09:00:49.739 [XNIO-1 task-1] GrH3tIyHTtePcOS5fiDZgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb920c9-188b-411a-89f4-31f40a8923f0 is not found.","severity":"ERROR"} +09:00:49.746 [XNIO-1 task-1] a-IqV1LnQcOavNlSaJpANQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:49.746 [XNIO-1 task-1] a-IqV1LnQcOavNlSaJpANQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.746 [XNIO-1 task-1] a-IqV1LnQcOavNlSaJpANQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.747 [XNIO-1 task-1] a-IqV1LnQcOavNlSaJpANQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:49.748 [XNIO-1 task-1] a-IqV1LnQcOavNlSaJpANQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:49.755 [XNIO-1 task-1] ipLC3ZKRQQOPh9SR1IXY5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/90a00706-67b8-41f5-baab-e2bd0af57a99, base path is set to: null +09:00:49.755 [XNIO-1 task-1] ipLC3ZKRQQOPh9SR1IXY5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.755 [XNIO-1 task-1] ipLC3ZKRQQOPh9SR1IXY5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.755 [XNIO-1 task-1] ipLC3ZKRQQOPh9SR1IXY5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/90a00706-67b8-41f5-baab-e2bd0af57a99, base path is set to: null +09:00:49.756 [XNIO-1 task-1] ipLC3ZKRQQOPh9SR1IXY5A DEBUG com.networknt.schema.TypeValidator debug - validate( "90a00706-67b8-41f5-baab-e2bd0af57a99", "90a00706-67b8-41f5-baab-e2bd0af57a99", refreshToken) +09:00:49.758 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:af8efad7-b4e3-4450-8308-246b699c8732 +09:00:49.760 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:af8efad7-b4e3-4450-8308-246b699c8732 +09:00:49.765 [XNIO-1 task-1] KAE1jeMvR2mMUb4kVYSrUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:49.765 [XNIO-1 task-1] KAE1jeMvR2mMUb4kVYSrUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.765 [XNIO-1 task-1] KAE1jeMvR2mMUb4kVYSrUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.765 [XNIO-1 task-1] KAE1jeMvR2mMUb4kVYSrUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:49.765 [XNIO-1 task-1] KAE1jeMvR2mMUb4kVYSrUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:49.771 [XNIO-1 task-1] G7tMObbdT22pu75-pfffRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:49.771 [XNIO-1 task-1] G7tMObbdT22pu75-pfffRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.771 [XNIO-1 task-1] G7tMObbdT22pu75-pfffRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.771 [XNIO-1 task-1] G7tMObbdT22pu75-pfffRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:49.771 [XNIO-1 task-1] G7tMObbdT22pu75-pfffRw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb920c9-188b-411a-89f4-31f40a8923f0", "6eb920c9-188b-411a-89f4-31f40a8923f0", refreshToken) +09:00:49.771 [XNIO-1 task-1] G7tMObbdT22pu75-pfffRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb920c9-188b-411a-89f4-31f40a8923f0 is not found.","severity":"ERROR"} +09:00:49.777 [XNIO-1 task-1] IDiiJU8ZSF6EGOxyG_to4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:49.777 [XNIO-1 task-1] IDiiJU8ZSF6EGOxyG_to4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.778 [XNIO-1 task-1] IDiiJU8ZSF6EGOxyG_to4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.778 [XNIO-1 task-1] IDiiJU8ZSF6EGOxyG_to4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:49.779 [XNIO-1 task-1] IDiiJU8ZSF6EGOxyG_to4A DEBUG com.networknt.schema.TypeValidator debug - validate( "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", refreshToken) +09:00:49.780 [XNIO-1 task-1] IDiiJU8ZSF6EGOxyG_to4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 34ca3a4d-25f3-4cd0-b902-579e7e11f1ba is not found.","severity":"ERROR"} +09:00:49.783 [XNIO-1 task-1] STK3qNZATimG6tDit39iUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/90a00706-67b8-41f5-baab-e2bd0af57a99 +09:00:49.783 [XNIO-1 task-1] STK3qNZATimG6tDit39iUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.783 [XNIO-1 task-1] STK3qNZATimG6tDit39iUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.783 [XNIO-1 task-1] STK3qNZATimG6tDit39iUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/90a00706-67b8-41f5-baab-e2bd0af57a99 +09:00:49.784 [XNIO-1 task-1] STK3qNZATimG6tDit39iUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 90a00706-67b8-41f5-baab-e2bd0af57a99 +09:00:49.791 [XNIO-1 task-1] RPzOl9L8TCaKbA0jxjbv-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e, base path is set to: null +09:00:49.791 [XNIO-1 task-1] RPzOl9L8TCaKbA0jxjbv-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.791 [XNIO-1 task-1] RPzOl9L8TCaKbA0jxjbv-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.791 [XNIO-1 task-1] RPzOl9L8TCaKbA0jxjbv-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e, base path is set to: null +09:00:49.792 [XNIO-1 task-1] RPzOl9L8TCaKbA0jxjbv-w DEBUG com.networknt.schema.TypeValidator debug - validate( "6317f678-16c7-444c-a55d-76a32f5d738e", "6317f678-16c7-444c-a55d-76a32f5d738e", refreshToken) +09:00:49.796 [XNIO-1 task-1] 1mnJZJlVQUGoRF-_o8bZUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e, base path is set to: null +09:00:49.796 [XNIO-1 task-1] 1mnJZJlVQUGoRF-_o8bZUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.796 [XNIO-1 task-1] 1mnJZJlVQUGoRF-_o8bZUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.796 [XNIO-1 task-1] 1mnJZJlVQUGoRF-_o8bZUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e, base path is set to: null +09:00:49.797 [XNIO-1 task-1] 1mnJZJlVQUGoRF-_o8bZUw DEBUG com.networknt.schema.TypeValidator debug - validate( "6317f678-16c7-444c-a55d-76a32f5d738e", "6317f678-16c7-444c-a55d-76a32f5d738e", refreshToken) +09:00:49.801 [XNIO-1 task-1] sZzC08IuSz-ew29pzFUAQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.801 [XNIO-1 task-1] sZzC08IuSz-ew29pzFUAQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.801 [XNIO-1 task-1] sZzC08IuSz-ew29pzFUAQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.801 [XNIO-1 task-1] sZzC08IuSz-ew29pzFUAQA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.802 [XNIO-1 task-1] sZzC08IuSz-ew29pzFUAQA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.829 [XNIO-1 task-1] OLfJQ77TSqKVzV7x63wLnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7655dcbb-d056-45ba-af23-0b50fbf5014b +09:00:49.829 [XNIO-1 task-1] OLfJQ77TSqKVzV7x63wLnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.829 [XNIO-1 task-1] OLfJQ77TSqKVzV7x63wLnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.829 [XNIO-1 task-1] OLfJQ77TSqKVzV7x63wLnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7655dcbb-d056-45ba-af23-0b50fbf5014b +09:00:49.830 [XNIO-1 task-1] OLfJQ77TSqKVzV7x63wLnw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7655dcbb-d056-45ba-af23-0b50fbf5014b +09:00:49.838 [XNIO-1 task-1] t-M1qwdpTw6ZdDJh4UVgYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.838 [XNIO-1 task-1] t-M1qwdpTw6ZdDJh4UVgYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.839 [XNIO-1 task-1] t-M1qwdpTw6ZdDJh4UVgYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.839 [XNIO-1 task-1] t-M1qwdpTw6ZdDJh4UVgYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.862 [XNIO-1 task-1] FL5hW4JYRyyXhNachpE5ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.862 [XNIO-1 task-1] FL5hW4JYRyyXhNachpE5ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.862 [XNIO-1 task-1] FL5hW4JYRyyXhNachpE5ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.863 [XNIO-1 task-1] FL5hW4JYRyyXhNachpE5ow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.863 [XNIO-1 task-1] FL5hW4JYRyyXhNachpE5ow DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.870 [XNIO-1 task-1] XDuWorBMRYqqhgLVy42Pbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:49.870 [XNIO-1 task-1] XDuWorBMRYqqhgLVy42Pbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.870 [XNIO-1 task-1] XDuWorBMRYqqhgLVy42Pbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.870 [XNIO-1 task-1] XDuWorBMRYqqhgLVy42Pbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:49.871 [XNIO-1 task-1] XDuWorBMRYqqhgLVy42Pbw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6317f678-16c7-444c-a55d-76a32f5d738e +09:00:49.878 [XNIO-1 task-1] Mfsj9dYbQZmlTZcWmKJDyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0158fd8f-3f98-4e43-bed0-b6a3a058a338 +09:00:49.878 [XNIO-1 task-1] Mfsj9dYbQZmlTZcWmKJDyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.878 [XNIO-1 task-1] Mfsj9dYbQZmlTZcWmKJDyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.878 [XNIO-1 task-1] Mfsj9dYbQZmlTZcWmKJDyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0158fd8f-3f98-4e43-bed0-b6a3a058a338 +09:00:49.879 [XNIO-1 task-1] Mfsj9dYbQZmlTZcWmKJDyw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0158fd8f-3f98-4e43-bed0-b6a3a058a338 +09:00:49.881 [XNIO-1 task-1] nQVwLqZaQqW9672C-zJnLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.881 [XNIO-1 task-1] nQVwLqZaQqW9672C-zJnLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.881 [XNIO-1 task-1] nQVwLqZaQqW9672C-zJnLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.882 [XNIO-1 task-1] nQVwLqZaQqW9672C-zJnLg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.886 [XNIO-1 task-1] Aapxtr-oQumyrWHGSyKwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.887 [XNIO-1 task-1] Aapxtr-oQumyrWHGSyKwEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.887 [XNIO-1 task-1] Aapxtr-oQumyrWHGSyKwEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.887 [XNIO-1 task-1] Aapxtr-oQumyrWHGSyKwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.888 [XNIO-1 task-1] Aapxtr-oQumyrWHGSyKwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.890 [XNIO-1 task-1] Aapxtr-oQumyrWHGSyKwEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.900 [XNIO-1 task-1] _WcnjmKpSYSrXTngTcbOoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.900 [XNIO-1 task-1] _WcnjmKpSYSrXTngTcbOoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.900 [XNIO-1 task-1] _WcnjmKpSYSrXTngTcbOoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.900 [XNIO-1 task-1] _WcnjmKpSYSrXTngTcbOoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.900 [XNIO-1 task-1] _WcnjmKpSYSrXTngTcbOoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.905 [XNIO-1 task-1] ODLU_736T6W3L-NYqbDvUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.905 [XNIO-1 task-1] ODLU_736T6W3L-NYqbDvUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.905 [XNIO-1 task-1] ODLU_736T6W3L-NYqbDvUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.905 [XNIO-1 task-1] ODLU_736T6W3L-NYqbDvUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.905 [XNIO-1 task-1] ODLU_736T6W3L-NYqbDvUw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.910 [XNIO-1 task-1] kD9bOYsSQCabnj7iaoHrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.911 [XNIO-1 task-1] kD9bOYsSQCabnj7iaoHrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.911 [XNIO-1 task-1] kD9bOYsSQCabnj7iaoHrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.911 [XNIO-1 task-1] kD9bOYsSQCabnj7iaoHrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.911 [XNIO-1 task-1] kD9bOYsSQCabnj7iaoHrRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.915 [XNIO-1 task-1] YJ2lf6SNRwagCa4TQ5J8IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.915 [XNIO-1 task-1] YJ2lf6SNRwagCa4TQ5J8IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.915 [XNIO-1 task-1] YJ2lf6SNRwagCa4TQ5J8IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.915 [XNIO-1 task-1] YJ2lf6SNRwagCa4TQ5J8IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.915 [XNIO-1 task-1] YJ2lf6SNRwagCa4TQ5J8IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.916 [XNIO-1 task-1] YJ2lf6SNRwagCa4TQ5J8IQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.920 [XNIO-1 task-1] 0ntCZm42QomKgnt6evJnsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.920 [XNIO-1 task-1] 0ntCZm42QomKgnt6evJnsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.920 [XNIO-1 task-1] 0ntCZm42QomKgnt6evJnsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.920 [XNIO-1 task-1] 0ntCZm42QomKgnt6evJnsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.928 [XNIO-1 task-1] MK17f6I9T-i-TF0iyPbsqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.928 [XNIO-1 task-1] MK17f6I9T-i-TF0iyPbsqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.928 [XNIO-1 task-1] MK17f6I9T-i-TF0iyPbsqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.929 [XNIO-1 task-1] MK17f6I9T-i-TF0iyPbsqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.929 [XNIO-1 task-1] MK17f6I9T-i-TF0iyPbsqA DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.929 [XNIO-1 task-1] MK17f6I9T-i-TF0iyPbsqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.938 [XNIO-1 task-1] AxHgW9rwQ4qfuprCF6Z9lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.938 [XNIO-1 task-1] AxHgW9rwQ4qfuprCF6Z9lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.938 [XNIO-1 task-1] AxHgW9rwQ4qfuprCF6Z9lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.939 [XNIO-1 task-1] AxHgW9rwQ4qfuprCF6Z9lQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:49.949 [XNIO-1 task-1] YA9zMkz3Q0CREn2yckF37A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.949 [XNIO-1 task-1] YA9zMkz3Q0CREn2yckF37A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.949 [XNIO-1 task-1] YA9zMkz3Q0CREn2yckF37A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.949 [XNIO-1 task-1] YA9zMkz3Q0CREn2yckF37A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.950 [XNIO-1 task-1] YA9zMkz3Q0CREn2yckF37A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.954 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:02680685 +09:00:49.955 [XNIO-1 task-1] tgoiAU3IRH-IEBe2l2yp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.955 [XNIO-1 task-1] tgoiAU3IRH-IEBe2l2yp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.955 [XNIO-1 task-1] tgoiAU3IRH-IEBe2l2yp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.955 [XNIO-1 task-1] tgoiAU3IRH-IEBe2l2yp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.955 [XNIO-1 task-1] tgoiAU3IRH-IEBe2l2yp2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.957 [XNIO-1 task-1] rW4kQh52TBqD7YMEiScLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.957 [XNIO-1 task-1] rW4kQh52TBqD7YMEiScLsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.957 [XNIO-1 task-1] rW4kQh52TBqD7YMEiScLsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:49.958 [XNIO-1 task-1] rW4kQh52TBqD7YMEiScLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0, base path is set to: null +09:00:49.958 [XNIO-1 task-1] rW4kQh52TBqD7YMEiScLsw DEBUG com.networknt.schema.TypeValidator debug - validate( "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", "d16753f9-4c8d-4d86-86a3-03b2d2d810a0", refreshToken) +09:00:49.958 [XNIO-1 task-1] rW4kQh52TBqD7YMEiScLsw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d16753f9-4c8d-4d86-86a3-03b2d2d810a0 is not found.","severity":"ERROR"} +09:00:49.965 [XNIO-1 task-1] uQKWnjaBRhiy_QQwOM-Fdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.965 [XNIO-1 task-1] uQKWnjaBRhiy_QQwOM-Fdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.965 [XNIO-1 task-1] uQKWnjaBRhiy_QQwOM-Fdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.965 [XNIO-1 task-1] uQKWnjaBRhiy_QQwOM-Fdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.965 [XNIO-1 task-1] uQKWnjaBRhiy_QQwOM-Fdw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:49.973 [XNIO-1 task-1] 39uk37euTFSGf4ttBtQIJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.974 [XNIO-1 task-1] 39uk37euTFSGf4ttBtQIJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:49.974 [XNIO-1 task-1] 39uk37euTFSGf4ttBtQIJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:49.974 [XNIO-1 task-1] 39uk37euTFSGf4ttBtQIJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:49.974 [XNIO-1 task-1] 39uk37euTFSGf4ttBtQIJw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:49.987 [XNIO-1 task-1] Jkl3-_3UQYWb1y5ehWvVsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:49.988 [XNIO-1 task-1] Jkl3-_3UQYWb1y5ehWvVsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:49.988 [XNIO-1 task-1] Jkl3-_3UQYWb1y5ehWvVsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:49.988 [XNIO-1 task-1] Jkl3-_3UQYWb1y5ehWvVsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:49.988 [XNIO-1 task-1] Jkl3-_3UQYWb1y5ehWvVsw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.012 [XNIO-1 task-1] XDQQWkt6QCakE9CltWd3zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:50.012 [XNIO-1 task-1] XDQQWkt6QCakE9CltWd3zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.012 [XNIO-1 task-1] XDQQWkt6QCakE9CltWd3zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.016 [XNIO-1 task-1] XDQQWkt6QCakE9CltWd3zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:50.017 [XNIO-1 task-1] XDQQWkt6QCakE9CltWd3zQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:50.022 [XNIO-1 task-1] CqkxiG6oSliN84Ta_syY_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.022 [XNIO-1 task-1] CqkxiG6oSliN84Ta_syY_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.022 [XNIO-1 task-1] CqkxiG6oSliN84Ta_syY_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.022 [XNIO-1 task-1] CqkxiG6oSliN84Ta_syY_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.022 [XNIO-1 task-1] CqkxiG6oSliN84Ta_syY_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5409a917-1c0f-4e7e-887a-e37809ac352b", "5409a917-1c0f-4e7e-887a-e37809ac352b", refreshToken) +09:00:50.024 [XNIO-1 task-1] CqkxiG6oSliN84Ta_syY_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5409a917-1c0f-4e7e-887a-e37809ac352b is not found.","severity":"ERROR"} +09:00:50.029 [XNIO-1 task-1] iIC8Fj6-SDeL4tEfskhZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.029 [XNIO-1 task-1] iIC8Fj6-SDeL4tEfskhZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.029 [XNIO-1 task-1] iIC8Fj6-SDeL4tEfskhZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.029 [XNIO-1 task-1] iIC8Fj6-SDeL4tEfskhZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.030 [XNIO-1 task-1] iIC8Fj6-SDeL4tEfskhZww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.035 [XNIO-1 task-1] MP3C3U2_RoyhqStBMbd9lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.035 [XNIO-1 task-1] MP3C3U2_RoyhqStBMbd9lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.035 [XNIO-1 task-1] MP3C3U2_RoyhqStBMbd9lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.035 [XNIO-1 task-1] MP3C3U2_RoyhqStBMbd9lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.036 [XNIO-1 task-1] MP3C3U2_RoyhqStBMbd9lA DEBUG com.networknt.schema.TypeValidator debug - validate( "5409a917-1c0f-4e7e-887a-e37809ac352b", "5409a917-1c0f-4e7e-887a-e37809ac352b", refreshToken) +09:00:50.036 [XNIO-1 task-1] MP3C3U2_RoyhqStBMbd9lA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5409a917-1c0f-4e7e-887a-e37809ac352b is not found.","severity":"ERROR"} +09:00:50.041 [XNIO-1 task-1] mPKZd95fTZO3-6FrufRTtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.041 [XNIO-1 task-1] mPKZd95fTZO3-6FrufRTtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.041 [XNIO-1 task-1] mPKZd95fTZO3-6FrufRTtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.042 [XNIO-1 task-1] mPKZd95fTZO3-6FrufRTtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.042 [XNIO-1 task-1] mPKZd95fTZO3-6FrufRTtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.049 [XNIO-1 task-1] Mz0c4deWSH6smDUr1NTNVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.049 [XNIO-1 task-1] Mz0c4deWSH6smDUr1NTNVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.049 [XNIO-1 task-1] Mz0c4deWSH6smDUr1NTNVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.049 [XNIO-1 task-1] Mz0c4deWSH6smDUr1NTNVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.050 [XNIO-1 task-1] Mz0c4deWSH6smDUr1NTNVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5409a917-1c0f-4e7e-887a-e37809ac352b", "5409a917-1c0f-4e7e-887a-e37809ac352b", refreshToken) +09:00:50.050 [XNIO-1 task-1] Mz0c4deWSH6smDUr1NTNVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5409a917-1c0f-4e7e-887a-e37809ac352b is not found.","severity":"ERROR"} +09:00:50.057 [XNIO-1 task-1] KDqiE1rDTQuORCurlK_oCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.057 [XNIO-1 task-1] KDqiE1rDTQuORCurlK_oCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.058 [XNIO-1 task-1] KDqiE1rDTQuORCurlK_oCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.058 [XNIO-1 task-1] KDqiE1rDTQuORCurlK_oCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:50.067 [XNIO-1 task-1] XdjdkBf9SfWAbjTcz3X24A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.067 [XNIO-1 task-1] XdjdkBf9SfWAbjTcz3X24A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.067 [XNIO-1 task-1] XdjdkBf9SfWAbjTcz3X24A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.067 [XNIO-1 task-1] XdjdkBf9SfWAbjTcz3X24A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.068 [XNIO-1 task-1] XdjdkBf9SfWAbjTcz3X24A DEBUG com.networknt.schema.TypeValidator debug - validate( "5409a917-1c0f-4e7e-887a-e37809ac352b", "5409a917-1c0f-4e7e-887a-e37809ac352b", refreshToken) +09:00:50.069 [XNIO-1 task-1] XdjdkBf9SfWAbjTcz3X24A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5409a917-1c0f-4e7e-887a-e37809ac352b is not found.","severity":"ERROR"} +09:00:50.072 [XNIO-1 task-1] AXAdeDz7SPWnDJjIuofxtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.072 [XNIO-1 task-1] AXAdeDz7SPWnDJjIuofxtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.072 [XNIO-1 task-1] AXAdeDz7SPWnDJjIuofxtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.072 [XNIO-1 task-1] AXAdeDz7SPWnDJjIuofxtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.072 [XNIO-1 task-1] AXAdeDz7SPWnDJjIuofxtA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.077 [XNIO-1 task-1] Y7Tb2UMARnuXIrva4VDCSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.078 [XNIO-1 task-1] Y7Tb2UMARnuXIrva4VDCSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.078 [XNIO-1 task-1] Y7Tb2UMARnuXIrva4VDCSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.078 [XNIO-1 task-1] Y7Tb2UMARnuXIrva4VDCSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.079 [XNIO-1 task-1] Y7Tb2UMARnuXIrva4VDCSg DEBUG com.networknt.schema.TypeValidator debug - validate( "5409a917-1c0f-4e7e-887a-e37809ac352b", "5409a917-1c0f-4e7e-887a-e37809ac352b", refreshToken) +09:00:50.079 [XNIO-1 task-1] Y7Tb2UMARnuXIrva4VDCSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5409a917-1c0f-4e7e-887a-e37809ac352b is not found.","severity":"ERROR"} +09:00:50.086 [XNIO-1 task-1] 0Bmtob69SGOIufvhy6wHCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.087 [XNIO-1 task-1] 0Bmtob69SGOIufvhy6wHCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.087 [XNIO-1 task-1] 0Bmtob69SGOIufvhy6wHCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.087 [XNIO-1 task-1] 0Bmtob69SGOIufvhy6wHCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.087 [XNIO-1 task-1] 0Bmtob69SGOIufvhy6wHCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.090 [XNIO-1 task-1] apb0jpepRdKeqyZcl60MnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.090 [XNIO-1 task-1] apb0jpepRdKeqyZcl60MnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.090 [XNIO-1 task-1] apb0jpepRdKeqyZcl60MnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.090 [XNIO-1 task-1] apb0jpepRdKeqyZcl60MnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.091 [XNIO-1 task-1] apb0jpepRdKeqyZcl60MnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:50.091 [XNIO-1 task-1] apb0jpepRdKeqyZcl60MnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:50.094 [XNIO-1 task-1] noiOEnoURv-E1PT0kr3zBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.094 [XNIO-1 task-1] noiOEnoURv-E1PT0kr3zBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.094 [XNIO-1 task-1] noiOEnoURv-E1PT0kr3zBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.094 [XNIO-1 task-1] noiOEnoURv-E1PT0kr3zBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.095 [XNIO-1 task-1] noiOEnoURv-E1PT0kr3zBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.099 [XNIO-1 task-1] Q0Zz287tR0SJLmo3ePe3KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.099 [XNIO-1 task-1] Q0Zz287tR0SJLmo3ePe3KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.099 [XNIO-1 task-1] Q0Zz287tR0SJLmo3ePe3KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.100 [XNIO-1 task-1] Q0Zz287tR0SJLmo3ePe3KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.100 [XNIO-1 task-1] Q0Zz287tR0SJLmo3ePe3KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:50.100 [XNIO-1 task-1] Q0Zz287tR0SJLmo3ePe3KQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:50.104 [XNIO-1 task-1] gV_hHB4OTuWDObAGFHOUXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66c6ff1f-aad2-4140-b0e3-e87755832ebb +09:00:50.104 [XNIO-1 task-1] gV_hHB4OTuWDObAGFHOUXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.104 [XNIO-1 task-1] gV_hHB4OTuWDObAGFHOUXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.104 [XNIO-1 task-1] gV_hHB4OTuWDObAGFHOUXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66c6ff1f-aad2-4140-b0e3-e87755832ebb +09:00:50.105 [XNIO-1 task-1] gV_hHB4OTuWDObAGFHOUXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66c6ff1f-aad2-4140-b0e3-e87755832ebb +09:00:50.122 [XNIO-1 task-1] rQEK1vFJTh6QFc_b5cO0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.122 [XNIO-1 task-1] rQEK1vFJTh6QFc_b5cO0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.122 [XNIO-1 task-1] rQEK1vFJTh6QFc_b5cO0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.122 [XNIO-1 task-1] rQEK1vFJTh6QFc_b5cO0iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.122 [XNIO-1 task-1] rQEK1vFJTh6QFc_b5cO0iQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.128 [XNIO-1 task-1] WRjKYcgaQWaXc8xZ9kptWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:50.128 [XNIO-1 task-1] WRjKYcgaQWaXc8xZ9kptWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.128 [XNIO-1 task-1] WRjKYcgaQWaXc8xZ9kptWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.129 [XNIO-1 task-1] WRjKYcgaQWaXc8xZ9kptWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:50.129 [XNIO-1 task-1] WRjKYcgaQWaXc8xZ9kptWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb920c9-188b-411a-89f4-31f40a8923f0", "6eb920c9-188b-411a-89f4-31f40a8923f0", refreshToken) +09:00:50.129 [XNIO-1 task-1] WRjKYcgaQWaXc8xZ9kptWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb920c9-188b-411a-89f4-31f40a8923f0 is not found.","severity":"ERROR"} +09:00:50.137 [XNIO-1 task-1] EbErQRcvQgGhQ3P_8OutEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:50.137 [XNIO-1 task-1] EbErQRcvQgGhQ3P_8OutEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.137 [XNIO-1 task-1] EbErQRcvQgGhQ3P_8OutEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.137 [XNIO-1 task-1] EbErQRcvQgGhQ3P_8OutEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:50.137 [XNIO-1 task-1] EbErQRcvQgGhQ3P_8OutEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:50.140 [XNIO-1 task-1] cTfEPpFiSM-bBON6DUoYTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3, base path is set to: null +09:00:50.140 [XNIO-1 task-1] cTfEPpFiSM-bBON6DUoYTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.140 [XNIO-1 task-1] cTfEPpFiSM-bBON6DUoYTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.140 [XNIO-1 task-1] cTfEPpFiSM-bBON6DUoYTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3, base path is set to: null +09:00:50.141 [XNIO-1 task-1] cTfEPpFiSM-bBON6DUoYTw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3", "fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3", refreshToken) +09:00:50.141 [XNIO-1 task-1] cTfEPpFiSM-bBON6DUoYTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 is not found.","severity":"ERROR"} +09:00:50.153 [XNIO-1 task-1] Y5lONlzmQjGBGVcwfZb8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0 +09:00:50.153 [XNIO-1 task-1] Y5lONlzmQjGBGVcwfZb8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.153 [XNIO-1 task-1] Y5lONlzmQjGBGVcwfZb8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.153 [XNIO-1 task-1] Y5lONlzmQjGBGVcwfZb8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0 +09:00:50.154 [XNIO-1 task-1] Y5lONlzmQjGBGVcwfZb8ZA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eb920c9-188b-411a-89f4-31f40a8923f0 +09:00:50.158 [XNIO-1 task-1] VZrwiIvDRM6VK_nJnW_MHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba, base path is set to: null +09:00:50.158 [XNIO-1 task-1] VZrwiIvDRM6VK_nJnW_MHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.158 [XNIO-1 task-1] VZrwiIvDRM6VK_nJnW_MHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.158 [XNIO-1 task-1] VZrwiIvDRM6VK_nJnW_MHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba, base path is set to: null +09:00:50.159 [XNIO-1 task-1] VZrwiIvDRM6VK_nJnW_MHw DEBUG com.networknt.schema.TypeValidator debug - validate( "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", refreshToken) +09:00:50.159 [XNIO-1 task-1] VZrwiIvDRM6VK_nJnW_MHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 34ca3a4d-25f3-4cd0-b902-579e7e11f1ba is not found.","severity":"ERROR"} +09:00:50.163 [XNIO-1 task-1] Vllm83eFS3SBZQlh3DyMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.163 [XNIO-1 task-1] Vllm83eFS3SBZQlh3DyMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.164 [XNIO-1 task-1] Vllm83eFS3SBZQlh3DyMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.164 [XNIO-1 task-1] Vllm83eFS3SBZQlh3DyMsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:50.178 [XNIO-1 task-1] Jgx-ZdNhQGaNaPbtMPnHEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.178 [XNIO-1 task-1] Jgx-ZdNhQGaNaPbtMPnHEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.179 [XNIO-1 task-1] Jgx-ZdNhQGaNaPbtMPnHEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.179 [XNIO-1 task-1] Jgx-ZdNhQGaNaPbtMPnHEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.179 [XNIO-1 task-1] Jgx-ZdNhQGaNaPbtMPnHEg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.187 [XNIO-1 task-1] ToygVt1hSK-uf7-juLXp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.187 [XNIO-1 task-1] ToygVt1hSK-uf7-juLXp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.187 [XNIO-1 task-1] ToygVt1hSK-uf7-juLXp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.187 [XNIO-1 task-1] ToygVt1hSK-uf7-juLXp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.188 [XNIO-1 task-1] ToygVt1hSK-uf7-juLXp7w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.197 [XNIO-1 task-1] _-snuEPFTUy77ycuRJrigA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.197 [XNIO-1 task-1] _-snuEPFTUy77ycuRJrigA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.197 [XNIO-1 task-1] _-snuEPFTUy77ycuRJrigA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.197 [XNIO-1 task-1] _-snuEPFTUy77ycuRJrigA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.198 [XNIO-1 task-1] _-snuEPFTUy77ycuRJrigA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.203 [XNIO-1 task-1] JR86UuXhTk6caxkiKNwAQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0 +09:00:50.203 [XNIO-1 task-1] JR86UuXhTk6caxkiKNwAQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.203 [XNIO-1 task-1] JR86UuXhTk6caxkiKNwAQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.203 [XNIO-1 task-1] JR86UuXhTk6caxkiKNwAQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0 +09:00:50.204 [XNIO-1 task-1] JR86UuXhTk6caxkiKNwAQg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eb920c9-188b-411a-89f4-31f40a8923f0 +09:00:50.206 [XNIO-1 task-1] 7bBldj_vRQm3QXSyFTN5UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba, base path is set to: null +09:00:50.206 [XNIO-1 task-1] 7bBldj_vRQm3QXSyFTN5UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.206 [XNIO-1 task-1] 7bBldj_vRQm3QXSyFTN5UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.206 [XNIO-1 task-1] 7bBldj_vRQm3QXSyFTN5UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba, base path is set to: null +09:00:50.207 [XNIO-1 task-1] 7bBldj_vRQm3QXSyFTN5UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", "34ca3a4d-25f3-4cd0-b902-579e7e11f1ba", refreshToken) +09:00:50.207 [XNIO-1 task-1] 7bBldj_vRQm3QXSyFTN5UQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 34ca3a4d-25f3-4cd0-b902-579e7e11f1ba is not found.","severity":"ERROR"} +09:00:50.211 [XNIO-1 task-1] AJwgtVm3SViRQPFsPBjHOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.211 [XNIO-1 task-1] AJwgtVm3SViRQPFsPBjHOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.211 [XNIO-1 task-1] AJwgtVm3SViRQPFsPBjHOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.211 [XNIO-1 task-1] AJwgtVm3SViRQPFsPBjHOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.211 [XNIO-1 task-1] AJwgtVm3SViRQPFsPBjHOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 +09:00:50.218 [XNIO-1 task-1] 1yiaLE9iSl63Lq3TczLHHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.218 [XNIO-1 task-1] 1yiaLE9iSl63Lq3TczLHHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.218 [XNIO-1 task-1] 1yiaLE9iSl63Lq3TczLHHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.218 [XNIO-1 task-1] 1yiaLE9iSl63Lq3TczLHHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.218 [XNIO-1 task-1] 1yiaLE9iSl63Lq3TczLHHA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.225 [XNIO-1 task-1] UNjh3xDHTt2wPAKLq6VVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.225 [XNIO-1 task-1] UNjh3xDHTt2wPAKLq6VVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.225 [XNIO-1 task-1] UNjh3xDHTt2wPAKLq6VVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.226 [XNIO-1 task-1] UNjh3xDHTt2wPAKLq6VVYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:50.229 [XNIO-1 task-1] OeiNBNfsQsCZALCD2KlYsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:50.229 [XNIO-1 task-1] OeiNBNfsQsCZALCD2KlYsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.230 [XNIO-1 task-1] OeiNBNfsQsCZALCD2KlYsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.230 [XNIO-1 task-1] OeiNBNfsQsCZALCD2KlYsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb920c9-188b-411a-89f4-31f40a8923f0, base path is set to: null +09:00:50.230 [XNIO-1 task-1] OeiNBNfsQsCZALCD2KlYsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb920c9-188b-411a-89f4-31f40a8923f0", "6eb920c9-188b-411a-89f4-31f40a8923f0", refreshToken) +09:00:50.230 [XNIO-1 task-1] OeiNBNfsQsCZALCD2KlYsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb920c9-188b-411a-89f4-31f40a8923f0 is not found.","severity":"ERROR"} +09:00:50.234 [XNIO-1 task-1] 7XkFkTnYSnOpM_WmRolcgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:50.234 [XNIO-1 task-1] 7XkFkTnYSnOpM_WmRolcgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.234 [XNIO-1 task-1] 7XkFkTnYSnOpM_WmRolcgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.234 [XNIO-1 task-1] 7XkFkTnYSnOpM_WmRolcgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:50.234 [XNIO-1 task-1] 7XkFkTnYSnOpM_WmRolcgw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 34ca3a4d-25f3-4cd0-b902-579e7e11f1ba +09:00:50.238 [XNIO-1 task-1] 48HWo6ODRNq31iVEohRCZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e, base path is set to: null +09:00:50.238 [XNIO-1 task-1] 48HWo6ODRNq31iVEohRCZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.238 [XNIO-1 task-1] 48HWo6ODRNq31iVEohRCZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.238 [XNIO-1 task-1] 48HWo6ODRNq31iVEohRCZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e, base path is set to: null +09:00:50.238 [XNIO-1 task-1] 48HWo6ODRNq31iVEohRCZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6317f678-16c7-444c-a55d-76a32f5d738e", "6317f678-16c7-444c-a55d-76a32f5d738e", refreshToken) +09:00:50.240 [XNIO-1 task-1] 48HWo6ODRNq31iVEohRCZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6317f678-16c7-444c-a55d-76a32f5d738e is not found.","severity":"ERROR"} +09:00:50.242 [XNIO-1 task-1] 4FqVxddYQrOSS1gpMdrsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.243 [XNIO-1 task-1] 4FqVxddYQrOSS1gpMdrsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.243 [XNIO-1 task-1] 4FqVxddYQrOSS1gpMdrsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.243 [XNIO-1 task-1] 4FqVxddYQrOSS1gpMdrsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.243 [XNIO-1 task-1] 4FqVxddYQrOSS1gpMdrsFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.248 [XNIO-1 task-1] 2_zM5HB6RMKUZ1fIFgcA9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.248 [XNIO-1 task-1] 2_zM5HB6RMKUZ1fIFgcA9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.248 [XNIO-1 task-1] 2_zM5HB6RMKUZ1fIFgcA9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.249 [XNIO-1 task-1] 2_zM5HB6RMKUZ1fIFgcA9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.249 [XNIO-1 task-1] 2_zM5HB6RMKUZ1fIFgcA9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.258 [XNIO-1 task-1] 4f-XnuE7Qu69bD7tirSQOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.258 [XNIO-1 task-1] 4f-XnuE7Qu69bD7tirSQOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.258 [XNIO-1 task-1] 4f-XnuE7Qu69bD7tirSQOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.259 [XNIO-1 task-1] 4f-XnuE7Qu69bD7tirSQOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:50.264 [XNIO-1 task-1] u53Sz9d8TmKSN5yNoYzZwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7655dcbb-d056-45ba-af23-0b50fbf5014b, base path is set to: null +09:00:50.265 [XNIO-1 task-1] u53Sz9d8TmKSN5yNoYzZwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.265 [XNIO-1 task-1] u53Sz9d8TmKSN5yNoYzZwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.265 [XNIO-1 task-1] u53Sz9d8TmKSN5yNoYzZwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7655dcbb-d056-45ba-af23-0b50fbf5014b, base path is set to: null +09:00:50.265 [XNIO-1 task-1] u53Sz9d8TmKSN5yNoYzZwg DEBUG com.networknt.schema.TypeValidator debug - validate( "7655dcbb-d056-45ba-af23-0b50fbf5014b", "7655dcbb-d056-45ba-af23-0b50fbf5014b", refreshToken) +09:00:50.269 [XNIO-1 task-1] u53Sz9d8TmKSN5yNoYzZwg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7655dcbb-d056-45ba-af23-0b50fbf5014b is not found.","severity":"ERROR"} +09:00:50.277 [XNIO-1 task-1] IuUItBzgROKas0d8XGMT2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.277 [XNIO-1 task-1] IuUItBzgROKas0d8XGMT2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.277 [XNIO-1 task-1] IuUItBzgROKas0d8XGMT2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.277 [XNIO-1 task-1] IuUItBzgROKas0d8XGMT2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.279 [XNIO-1 task-1] IuUItBzgROKas0d8XGMT2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.281 [XNIO-1 task-1] eDn8xHuORz2UjAdnLhUBjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7655dcbb-d056-45ba-af23-0b50fbf5014b, base path is set to: null +09:00:50.281 [XNIO-1 task-1] eDn8xHuORz2UjAdnLhUBjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.281 [XNIO-1 task-1] eDn8xHuORz2UjAdnLhUBjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.281 [XNIO-1 task-1] eDn8xHuORz2UjAdnLhUBjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7655dcbb-d056-45ba-af23-0b50fbf5014b, base path is set to: null +09:00:50.282 [XNIO-1 task-1] eDn8xHuORz2UjAdnLhUBjg DEBUG com.networknt.schema.TypeValidator debug - validate( "7655dcbb-d056-45ba-af23-0b50fbf5014b", "7655dcbb-d056-45ba-af23-0b50fbf5014b", refreshToken) +09:00:50.282 [XNIO-1 task-1] eDn8xHuORz2UjAdnLhUBjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7655dcbb-d056-45ba-af23-0b50fbf5014b is not found.","severity":"ERROR"} +09:00:50.284 [XNIO-1 task-1] edvalve1SKentmFqIAsyoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a7d1ffcc-d20c-4f22-a310-f89587573613 +09:00:50.284 [XNIO-1 task-1] edvalve1SKentmFqIAsyoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.284 [XNIO-1 task-1] edvalve1SKentmFqIAsyoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.284 [XNIO-1 task-1] edvalve1SKentmFqIAsyoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a7d1ffcc-d20c-4f22-a310-f89587573613 +09:00:50.285 [XNIO-1 task-1] edvalve1SKentmFqIAsyoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a7d1ffcc-d20c-4f22-a310-f89587573613 +09:00:50.295 [XNIO-1 task-1] 6YnJYGYKSay3_bab9QvKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.295 [XNIO-1 task-1] 6YnJYGYKSay3_bab9QvKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.295 [XNIO-1 task-1] 6YnJYGYKSay3_bab9QvKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.295 [XNIO-1 task-1] 6YnJYGYKSay3_bab9QvKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.296 [XNIO-1 task-1] 6YnJYGYKSay3_bab9QvKWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6317f678-16c7-444c-a55d-76a32f5d738e +09:00:50.299 [XNIO-1 task-1] 3KavbtRLR4WcVSw0a92DSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.299 [XNIO-1 task-1] 3KavbtRLR4WcVSw0a92DSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.299 [XNIO-1 task-1] 3KavbtRLR4WcVSw0a92DSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.299 [XNIO-1 task-1] 3KavbtRLR4WcVSw0a92DSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.300 [XNIO-1 task-1] 3KavbtRLR4WcVSw0a92DSg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.308 [XNIO-1 task-1] DHrRrPo0TMCsxH9pGAsw7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:50.308 [XNIO-1 task-1] DHrRrPo0TMCsxH9pGAsw7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.308 [XNIO-1 task-1] DHrRrPo0TMCsxH9pGAsw7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.308 [XNIO-1 task-1] DHrRrPo0TMCsxH9pGAsw7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:50.309 [XNIO-1 task-1] DHrRrPo0TMCsxH9pGAsw7g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d16753f9-4c8d-4d86-86a3-03b2d2d810a0 +09:00:50.312 [XNIO-1 task-1] aPL2rimfSz67-rEqf_XiDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.312 [XNIO-1 task-1] aPL2rimfSz67-rEqf_XiDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.312 [XNIO-1 task-1] aPL2rimfSz67-rEqf_XiDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.312 [XNIO-1 task-1] aPL2rimfSz67-rEqf_XiDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.312 [XNIO-1 task-1] aPL2rimfSz67-rEqf_XiDw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.319 [XNIO-1 task-1] XOgbomT0T3CLUjZll-zX1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66c6ff1f-aad2-4140-b0e3-e87755832ebb +09:00:50.319 [XNIO-1 task-1] XOgbomT0T3CLUjZll-zX1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.319 [XNIO-1 task-1] XOgbomT0T3CLUjZll-zX1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.319 [XNIO-1 task-1] XOgbomT0T3CLUjZll-zX1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66c6ff1f-aad2-4140-b0e3-e87755832ebb +09:00:50.319 [XNIO-1 task-1] XOgbomT0T3CLUjZll-zX1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66c6ff1f-aad2-4140-b0e3-e87755832ebb +09:00:50.328 [XNIO-1 task-1] 4OdZ7N_wQVmWjnw2-gUc6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3, base path is set to: null +09:00:50.328 [XNIO-1 task-1] 4OdZ7N_wQVmWjnw2-gUc6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.328 [XNIO-1 task-1] 4OdZ7N_wQVmWjnw2-gUc6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.329 [XNIO-1 task-1] 4OdZ7N_wQVmWjnw2-gUc6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3, base path is set to: null +09:00:50.329 [XNIO-1 task-1] 4OdZ7N_wQVmWjnw2-gUc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3", "fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3", refreshToken) +09:00:50.329 [XNIO-1 task-1] 4OdZ7N_wQVmWjnw2-gUc6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fb5a20e1-2ce3-4aa3-b11e-5bcb627c68c3 is not found.","severity":"ERROR"} +09:00:50.332 [XNIO-1 task-1] 6asEUQsRSU-CLhykk28AOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.332 [XNIO-1 task-1] 6asEUQsRSU-CLhykk28AOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.332 [XNIO-1 task-1] 6asEUQsRSU-CLhykk28AOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.333 [XNIO-1 task-1] 6asEUQsRSU-CLhykk28AOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.333 [XNIO-1 task-1] 6asEUQsRSU-CLhykk28AOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.338 [XNIO-1 task-1] UPiPuTb6QNiVbj8iuLQglw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.339 [XNIO-1 task-1] UPiPuTb6QNiVbj8iuLQglw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.339 [XNIO-1 task-1] UPiPuTb6QNiVbj8iuLQglw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.339 [XNIO-1 task-1] UPiPuTb6QNiVbj8iuLQglw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.339 [XNIO-1 task-1] UPiPuTb6QNiVbj8iuLQglw DEBUG com.networknt.schema.TypeValidator debug - validate( "5409a917-1c0f-4e7e-887a-e37809ac352b", "5409a917-1c0f-4e7e-887a-e37809ac352b", refreshToken) +09:00:50.339 [XNIO-1 task-1] UPiPuTb6QNiVbj8iuLQglw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5409a917-1c0f-4e7e-887a-e37809ac352b is not found.","severity":"ERROR"} +09:00:50.349 [XNIO-1 task-1] ICDMOLGDSLyubnJMYvKdRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.349 [XNIO-1 task-1] ICDMOLGDSLyubnJMYvKdRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.350 [XNIO-1 task-1] ICDMOLGDSLyubnJMYvKdRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.350 [XNIO-1 task-1] ICDMOLGDSLyubnJMYvKdRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.350 [XNIO-1 task-1] ICDMOLGDSLyubnJMYvKdRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5409a917-1c0f-4e7e-887a-e37809ac352b +09:00:50.354 [XNIO-1 task-1] 7ya6yKFATbi4_Lzyj0WeJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990, base path is set to: null +09:00:50.354 [XNIO-1 task-1] 7ya6yKFATbi4_Lzyj0WeJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.354 [XNIO-1 task-1] 7ya6yKFATbi4_Lzyj0WeJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.354 [XNIO-1 task-1] 7ya6yKFATbi4_Lzyj0WeJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990, base path is set to: null +09:00:50.355 [XNIO-1 task-1] 7ya6yKFATbi4_Lzyj0WeJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "51c3fc12-3485-4826-a4e4-d827c3db0990", "51c3fc12-3485-4826-a4e4-d827c3db0990", refreshToken) +09:00:50.366 [XNIO-1 task-1] 020cdTeBQU2fvvrGVx3BCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.367 [XNIO-1 task-1] 020cdTeBQU2fvvrGVx3BCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.367 [XNIO-1 task-1] 020cdTeBQU2fvvrGVx3BCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.367 [XNIO-1 task-1] 020cdTeBQU2fvvrGVx3BCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.368 [XNIO-1 task-1] 020cdTeBQU2fvvrGVx3BCA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.374 [XNIO-1 task-1] mkOIdCsZRPGx2v4bOqmt7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.374 [XNIO-1 task-1] mkOIdCsZRPGx2v4bOqmt7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.374 [XNIO-1 task-1] mkOIdCsZRPGx2v4bOqmt7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.374 [XNIO-1 task-1] mkOIdCsZRPGx2v4bOqmt7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:50.379 [XNIO-1 task-1] cTZSRt37S2CVhcoeh7dFyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.380 [XNIO-1 task-1] cTZSRt37S2CVhcoeh7dFyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.380 [XNIO-1 task-1] cTZSRt37S2CVhcoeh7dFyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.380 [XNIO-1 task-1] cTZSRt37S2CVhcoeh7dFyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5409a917-1c0f-4e7e-887a-e37809ac352b, base path is set to: null +09:00:50.380 [XNIO-1 task-1] cTZSRt37S2CVhcoeh7dFyw DEBUG com.networknt.schema.TypeValidator debug - validate( "5409a917-1c0f-4e7e-887a-e37809ac352b", "5409a917-1c0f-4e7e-887a-e37809ac352b", refreshToken) +09:00:50.380 [XNIO-1 task-1] cTZSRt37S2CVhcoeh7dFyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5409a917-1c0f-4e7e-887a-e37809ac352b is not found.","severity":"ERROR"} +09:00:50.384 [XNIO-1 task-1] WYHNMLtMTXW1eKyZyB-O5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.384 [XNIO-1 task-1] WYHNMLtMTXW1eKyZyB-O5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.384 [XNIO-1 task-1] WYHNMLtMTXW1eKyZyB-O5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.384 [XNIO-1 task-1] WYHNMLtMTXW1eKyZyB-O5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.384 [XNIO-1 task-1] WYHNMLtMTXW1eKyZyB-O5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.391 [XNIO-1 task-1] elOpaz37SuKlzOugTCTlpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990, base path is set to: null +09:00:50.392 [XNIO-1 task-1] elOpaz37SuKlzOugTCTlpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.392 [XNIO-1 task-1] elOpaz37SuKlzOugTCTlpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.392 [XNIO-1 task-1] elOpaz37SuKlzOugTCTlpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990, base path is set to: null +09:00:50.392 [XNIO-1 task-1] elOpaz37SuKlzOugTCTlpA DEBUG com.networknt.schema.TypeValidator debug - validate( "51c3fc12-3485-4826-a4e4-d827c3db0990", "51c3fc12-3485-4826-a4e4-d827c3db0990", refreshToken) +09:00:50.392 [XNIO-1 task-1] elOpaz37SuKlzOugTCTlpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 51c3fc12-3485-4826-a4e4-d827c3db0990 is not found.","severity":"ERROR"} +09:00:50.397 [XNIO-1 task-1] qOxBufcwQLudz1D9apv3-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.397 [XNIO-1 task-1] qOxBufcwQLudz1D9apv3-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.397 [XNIO-1 task-1] qOxBufcwQLudz1D9apv3-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.397 [XNIO-1 task-1] qOxBufcwQLudz1D9apv3-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.397 [XNIO-1 task-1] qOxBufcwQLudz1D9apv3-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.411 [XNIO-1 task-1] VXMOt5g2Q1ifmG_GjPhJOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.411 [XNIO-1 task-1] VXMOt5g2Q1ifmG_GjPhJOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.412 [XNIO-1 task-1] VXMOt5g2Q1ifmG_GjPhJOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.413 [XNIO-1 task-1] VXMOt5g2Q1ifmG_GjPhJOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.413 [XNIO-1 task-1] VXMOt5g2Q1ifmG_GjPhJOw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.422 [XNIO-1 task-1] fVBGTpYMRnGJ92wZnvxqMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.422 [XNIO-1 task-1] fVBGTpYMRnGJ92wZnvxqMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.422 [XNIO-1 task-1] fVBGTpYMRnGJ92wZnvxqMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.423 [XNIO-1 task-1] fVBGTpYMRnGJ92wZnvxqMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:50.429 [XNIO-1 task-1] j_6-ImgCRLa7Cy80wtgCdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990, base path is set to: null +09:00:50.430 [XNIO-1 task-1] j_6-ImgCRLa7Cy80wtgCdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.430 [XNIO-1 task-1] j_6-ImgCRLa7Cy80wtgCdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.430 [XNIO-1 task-1] j_6-ImgCRLa7Cy80wtgCdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990, base path is set to: null +09:00:50.430 [XNIO-1 task-1] j_6-ImgCRLa7Cy80wtgCdg DEBUG com.networknt.schema.TypeValidator debug - validate( "51c3fc12-3485-4826-a4e4-d827c3db0990", "51c3fc12-3485-4826-a4e4-d827c3db0990", refreshToken) +09:00:50.430 [XNIO-1 task-1] j_6-ImgCRLa7Cy80wtgCdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 51c3fc12-3485-4826-a4e4-d827c3db0990 is not found.","severity":"ERROR"} +09:00:50.433 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ea363c0b-dd57-4cbc-8991-7580bf111d69 +09:00:50.443 [XNIO-1 task-1] JHMUiWPpTASpXITw1YApqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.443 [XNIO-1 task-1] JHMUiWPpTASpXITw1YApqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.445 [XNIO-1 task-1] JHMUiWPpTASpXITw1YApqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.445 [XNIO-1 task-1] JHMUiWPpTASpXITw1YApqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.445 [XNIO-1 task-1] JHMUiWPpTASpXITw1YApqA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.456 [XNIO-1 task-1] S-iHpwcySO2MZxolod6Zpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.456 [XNIO-1 task-1] S-iHpwcySO2MZxolod6Zpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.456 [XNIO-1 task-1] S-iHpwcySO2MZxolod6Zpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.456 [XNIO-1 task-1] S-iHpwcySO2MZxolod6Zpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.457 [XNIO-1 task-1] S-iHpwcySO2MZxolod6Zpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.461 [XNIO-1 task-1] 3E_5UK5mS_WLmS07YGyUjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.461 [XNIO-1 task-1] 3E_5UK5mS_WLmS07YGyUjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.461 [XNIO-1 task-1] 3E_5UK5mS_WLmS07YGyUjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.461 [XNIO-1 task-1] 3E_5UK5mS_WLmS07YGyUjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.461 [XNIO-1 task-1] 3E_5UK5mS_WLmS07YGyUjw DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:50.462 [XNIO-1 task-1] 3E_5UK5mS_WLmS07YGyUjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:50.469 [XNIO-1 task-1] acWqXr1eTvqr1QS7uFuEfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.469 [XNIO-1 task-1] acWqXr1eTvqr1QS7uFuEfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.470 [XNIO-1 task-1] acWqXr1eTvqr1QS7uFuEfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.470 [XNIO-1 task-1] acWqXr1eTvqr1QS7uFuEfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:50.470 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8b748e5 +09:00:50.474 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8b748e5 +09:00:50.475 [XNIO-1 task-1] Wtvy9WXSS36U0yUCbqAEEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.475 [XNIO-1 task-1] Wtvy9WXSS36U0yUCbqAEEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.475 [XNIO-1 task-1] Wtvy9WXSS36U0yUCbqAEEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.475 [XNIO-1 task-1] Wtvy9WXSS36U0yUCbqAEEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.475 [XNIO-1 task-1] Wtvy9WXSS36U0yUCbqAEEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 51c3fc12-3485-4826-a4e4-d827c3db0990 +09:00:50.483 [XNIO-1 task-1] _NKY8U-DR0GnPb_Mu-sHkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:50.483 [XNIO-1 task-1] _NKY8U-DR0GnPb_Mu-sHkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.483 [XNIO-1 task-1] _NKY8U-DR0GnPb_Mu-sHkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.483 [XNIO-1 task-1] _NKY8U-DR0GnPb_Mu-sHkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:50.483 [XNIO-1 task-1] _NKY8U-DR0GnPb_Mu-sHkA DEBUG com.networknt.schema.TypeValidator debug - validate( "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", refreshToken) +09:00:50.483 [XNIO-1 task-1] _NKY8U-DR0GnPb_Mu-sHkA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 is not found.","severity":"ERROR"} +09:00:50.487 [XNIO-1 task-1] uzhZsufPT2mJQIrwHdYkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:50.487 [XNIO-1 task-1] uzhZsufPT2mJQIrwHdYkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.487 [XNIO-1 task-1] uzhZsufPT2mJQIrwHdYkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.487 [XNIO-1 task-1] uzhZsufPT2mJQIrwHdYkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:50.488 [XNIO-1 task-1] uzhZsufPT2mJQIrwHdYkkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:50.490 [XNIO-1 task-1] JTrKzMWYR3iVHTxHRbFMgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:50.490 [XNIO-1 task-1] JTrKzMWYR3iVHTxHRbFMgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.490 [XNIO-1 task-1] JTrKzMWYR3iVHTxHRbFMgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.490 [XNIO-1 task-1] JTrKzMWYR3iVHTxHRbFMgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7, base path is set to: null +09:00:50.490 [XNIO-1 task-1] JTrKzMWYR3iVHTxHRbFMgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", "4fa6ec10-e553-4bc3-8b48-8cebb2698fc7", refreshToken) +09:00:50.490 [XNIO-1 task-1] JTrKzMWYR3iVHTxHRbFMgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 is not found.","severity":"ERROR"} +09:00:50.494 [XNIO-1 task-1] oJ0McOTASr-rBxK0PCFFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:50.494 [XNIO-1 task-1] oJ0McOTASr-rBxK0PCFFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.494 [XNIO-1 task-1] oJ0McOTASr-rBxK0PCFFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.494 [XNIO-1 task-1] oJ0McOTASr-rBxK0PCFFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a +09:00:50.494 [XNIO-1 task-1] oJ0McOTASr-rBxK0PCFFEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33158a25-181e-40c9-af21-b86e5154819a +09:00:50.498 [XNIO-1 task-1] yDAZG851RfuUsNI32DDjSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.498 [XNIO-1 task-1] yDAZG851RfuUsNI32DDjSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.498 [XNIO-1 task-1] yDAZG851RfuUsNI32DDjSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:00:50.498 [XNIO-1 task-1] yDAZG851RfuUsNI32DDjSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:50.498 [XNIO-1 task-1] yDAZG851RfuUsNI32DDjSg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:00:50.503 [XNIO-1 task-1] v0PKOqeFSoaRDBxvM8iaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.503 [XNIO-1 task-1] v0PKOqeFSoaRDBxvM8iaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:00:50.503 [XNIO-1 task-1] v0PKOqeFSoaRDBxvM8iaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:00:50.504 [XNIO-1 task-1] v0PKOqeFSoaRDBxvM8iaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.504 [XNIO-1 task-1] v0PKOqeFSoaRDBxvM8iaCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4fa6ec10-e553-4bc3-8b48-8cebb2698fc7 +09:00:50.507 [XNIO-1 task-1] liCBUhuwTN2rNTXZNZ05rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.507 [XNIO-1 task-1] liCBUhuwTN2rNTXZNZ05rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:00:50.507 [XNIO-1 task-1] liCBUhuwTN2rNTXZNZ05rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:00:50.507 [XNIO-1 task-1] liCBUhuwTN2rNTXZNZ05rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33158a25-181e-40c9-af21-b86e5154819a, base path is set to: null +09:00:50.508 [XNIO-1 task-1] liCBUhuwTN2rNTXZNZ05rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33158a25-181e-40c9-af21-b86e5154819a", "33158a25-181e-40c9-af21-b86e5154819a", refreshToken) +09:00:50.508 [XNIO-1 task-1] liCBUhuwTN2rNTXZNZ05rQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33158a25-181e-40c9-af21-b86e5154819a is not found.","severity":"ERROR"} +09:00:50.514 [XNIO-1 task-1] S0kvGiW9T5Sz9MyQoOGiww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token diff --git a/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..0856ed2 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1930 @@ +09:00:38.742 [XNIO-1 task-2] 8Nc02D4RR120OGfuT36vrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.742 [XNIO-1 task-2] 8Nc02D4RR120OGfuT36vrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.766 [XNIO-1 task-2] 34Q_QUfcQ0OVgXmfT5JMfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.766 [XNIO-1 task-2] 34Q_QUfcQ0OVgXmfT5JMfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:38.766 [XNIO-1 task-2] 34Q_QUfcQ0OVgXmfT5JMfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.767 [XNIO-1 task-2] 34Q_QUfcQ0OVgXmfT5JMfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.779 [XNIO-1 task-2] Fpc90NTLRoqOSskw3mCqJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.781 [XNIO-1 task-2] Fpc90NTLRoqOSskw3mCqJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:38.781 [XNIO-1 task-2] Fpc90NTLRoqOSskw3mCqJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.783 [XNIO-1 task-2] Fpc90NTLRoqOSskw3mCqJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:38.799 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.799 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:38.800 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.801 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.801 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.801 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:38.801 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:38.802 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG com.networknt.schema.TypeValidator debug - validate( "60fde7f4-759d-4252-ab8d-c8006272", {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:38.802 [XNIO-1 task-2] CCb79osjQiCNIhuDC-KaPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:38.818 [XNIO-1 task-2] aaaHjpaYTPeUGVxPkHC8rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.818 [XNIO-1 task-2] aaaHjpaYTPeUGVxPkHC8rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:38.820 [XNIO-1 task-2] aaaHjpaYTPeUGVxPkHC8rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.849 [XNIO-1 task-2] IXoZucWNTxeHgUBy66gTyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.849 [XNIO-1 task-2] IXoZucWNTxeHgUBy66gTyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:38.849 [XNIO-1 task-2] IXoZucWNTxeHgUBy66gTyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.878 [XNIO-1 task-2] HjvZR5FTS6KiQQEk1tQg4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.878 [XNIO-1 task-2] HjvZR5FTS6KiQQEk1tQg4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:38.878 [XNIO-1 task-2] HjvZR5FTS6KiQQEk1tQg4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:38.894 [XNIO-1 task-2] 4tc9AoiSSzOBiOFV2zWRuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bab052d6, base path is set to: null +09:00:38.894 [XNIO-1 task-2] 4tc9AoiSSzOBiOFV2zWRuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:38.894 [XNIO-1 task-2] 4tc9AoiSSzOBiOFV2zWRuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:38.895 [XNIO-1 task-2] 4tc9AoiSSzOBiOFV2zWRuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bab052d6, base path is set to: null +09:00:38.895 [XNIO-1 task-2] 4tc9AoiSSzOBiOFV2zWRuA DEBUG com.networknt.schema.TypeValidator debug - validate( "bab052d6", "bab052d6", serviceId) +09:00:38.933 [XNIO-1 task-2] cVcwepD_Qj-ZwnK95hJp9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:38.933 [XNIO-1 task-2] cVcwepD_Qj-ZwnK95hJp9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:38.934 [XNIO-1 task-2] cVcwepD_Qj-ZwnK95hJp9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:38.955 [XNIO-1 task-2] cEBh1K_jTP2kbi7Qhbo_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:38.955 [XNIO-1 task-2] cEBh1K_jTP2kbi7Qhbo_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:38.956 [XNIO-1 task-2] cEBh1K_jTP2kbi7Qhbo_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.016 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b1768d82 +09:00:39.085 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.085 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.086 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.086 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.086 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.087 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.087 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.087 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b6bcbcb-bcf2-431f-8e44-da3534cd", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.087 [XNIO-1 task-2] a1yNh9aJR96ByNdZW0XlOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.105 [XNIO-1 task-2] QRWE93tESVqookGQr68TDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6ab810a, base path is set to: null +09:00:39.105 [XNIO-1 task-2] QRWE93tESVqookGQr68TDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.105 [XNIO-1 task-2] QRWE93tESVqookGQr68TDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:39.106 [XNIO-1 task-2] QRWE93tESVqookGQr68TDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6ab810a, base path is set to: null +09:00:39.106 [XNIO-1 task-2] QRWE93tESVqookGQr68TDA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6ab810a", "c6ab810a", serviceId) +09:00:39.113 [XNIO-1 task-2] jdPvHh9tQ_2l4GB4FktiXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.113 [XNIO-1 task-2] jdPvHh9tQ_2l4GB4FktiXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.113 [XNIO-1 task-2] jdPvHh9tQ_2l4GB4FktiXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.114 [XNIO-1 task-2] jdPvHh9tQ_2l4GB4FktiXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:39.130 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.130 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.130 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.131 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.131 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.131 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG com.networknt.schema.TypeValidator debug - validate( "b9466c23-7781-4ad6-b897-f12f29d99e0b", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:39.131 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6ab810a", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:39.132 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:39.132 [XNIO-1 task-2] sOAkpRkuQRa5i1cVAXP6pA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.149 [XNIO-1 task-2] zoNjGRC1TzuakoBh03o6-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b1768d82 +09:00:39.149 [XNIO-1 task-2] zoNjGRC1TzuakoBh03o6-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.149 [XNIO-1 task-2] zoNjGRC1TzuakoBh03o6-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.149 [XNIO-1 task-2] zoNjGRC1TzuakoBh03o6-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b1768d82 +09:00:39.153 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b1768d82 +09:00:39.172 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.172 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.173 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.175 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.175 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.175 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.175 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.176 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG com.networknt.schema.TypeValidator debug - validate( "60fde7f4-759d-4252-ab8d-c8006272", {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.176 [XNIO-1 task-2] PVUq1fkDQkC5b61NfVUfdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"39b831d3","serviceName":"60fde7f4-759d-4252-ab8d-c8006272","serviceDesc":"60c1275f-d129-44e7-b8be-4ab3f6656449","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.191 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.191 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.191 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.192 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.192 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.193 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.193 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.193 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG com.networknt.schema.TypeValidator debug - validate( "c50b3ca6-9b57-4cc6-8fd3-d3cfac87", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.193 [XNIO-1 task-2] Mq3zwiqpRXeKAF4ocqKjww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.209 [XNIO-1 task-2] ZW7adW97Q1WhftB3Qmh_wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/39b831d3, base path is set to: null +09:00:39.209 [XNIO-1 task-2] ZW7adW97Q1WhftB3Qmh_wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.209 [XNIO-1 task-2] ZW7adW97Q1WhftB3Qmh_wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:39.210 [XNIO-1 task-2] ZW7adW97Q1WhftB3Qmh_wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/39b831d3, base path is set to: null +09:00:39.210 [XNIO-1 task-2] ZW7adW97Q1WhftB3Qmh_wg DEBUG com.networknt.schema.TypeValidator debug - validate( "39b831d3", "39b831d3", serviceId) +09:00:39.223 [XNIO-1 task-2] VJDzwm0BSvCcGhmhurtTKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b44e601 +09:00:39.224 [XNIO-1 task-2] VJDzwm0BSvCcGhmhurtTKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.224 [XNIO-1 task-2] VJDzwm0BSvCcGhmhurtTKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.224 [XNIO-1 task-2] VJDzwm0BSvCcGhmhurtTKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b44e601 +09:00:39.229 [XNIO-1 task-2] tvJLLTgtQL-T5gSEC_KdMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6ab810a, base path is set to: null +09:00:39.229 [XNIO-1 task-2] tvJLLTgtQL-T5gSEC_KdMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.229 [XNIO-1 task-2] tvJLLTgtQL-T5gSEC_KdMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:39.230 [XNIO-1 task-2] tvJLLTgtQL-T5gSEC_KdMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6ab810a, base path is set to: null +09:00:39.230 [XNIO-1 task-2] tvJLLTgtQL-T5gSEC_KdMg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6ab810a", "c6ab810a", serviceId) +09:00:39.234 [XNIO-1 task-2] 5SAI1MetS8-OKf8LltLQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c6ab810a +09:00:39.234 [XNIO-1 task-2] 5SAI1MetS8-OKf8LltLQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.234 [XNIO-1 task-2] 5SAI1MetS8-OKf8LltLQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.235 [XNIO-1 task-2] 5SAI1MetS8-OKf8LltLQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c6ab810a +09:00:39.240 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.240 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.240 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.241 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.241 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.241 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.241 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.242 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG com.networknt.schema.TypeValidator debug - validate( "e3de3005-8021-4aa0-8e83-e1604f45", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.242 [XNIO-1 task-2] BQc94g4KSKarpbQXGvEN4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.258 [XNIO-1 task-2] zQMbdFmYTUyH02xA1Sug4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b44e601, base path is set to: null +09:00:39.259 [XNIO-1 task-2] zQMbdFmYTUyH02xA1Sug4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.259 [XNIO-1 task-2] zQMbdFmYTUyH02xA1Sug4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:39.259 [XNIO-1 task-2] zQMbdFmYTUyH02xA1Sug4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b44e601, base path is set to: null +09:00:39.260 [XNIO-1 task-2] zQMbdFmYTUyH02xA1Sug4A DEBUG com.networknt.schema.TypeValidator debug - validate( "3b44e601", "3b44e601", serviceId) +09:00:39.264 [XNIO-1 task-2] iXwHCpCNTqqDuQvGdieuuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.264 [XNIO-1 task-2] iXwHCpCNTqqDuQvGdieuuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.265 [XNIO-1 task-2] iXwHCpCNTqqDuQvGdieuuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.302 [XNIO-1 task-2] DPmc-yGVRTW5wwqJ3D6m7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.302 [XNIO-1 task-2] DPmc-yGVRTW5wwqJ3D6m7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.304 [XNIO-1 task-2] DPmc-yGVRTW5wwqJ3D6m7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.327 [XNIO-1 task-2] HE9sS1gpSpCSes3JQhvwXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.327 [XNIO-1 task-2] HE9sS1gpSpCSes3JQhvwXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.328 [XNIO-1 task-2] HE9sS1gpSpCSes3JQhvwXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.366 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a90473c-65b3-499f-ac91-155b63ca1d63 +09:00:39.385 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3b1bb4b2 +09:00:39.387 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a90473c-65b3-499f-ac91-155b63ca1d63 +09:00:39.404 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.404 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.405 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.406 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.406 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.406 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec6dc751-f044-42af-8a50-d3995b8ae46d", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:39.406 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG com.networknt.schema.TypeValidator debug - validate( "3b44e601", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:39.406 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:39.406 [XNIO-1 task-2] 8LrGSCCuRhSDXsvSBq9nIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.418 [XNIO-1 task-2] v5WpK1g1TlykMCNwt4emyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c81950d4 +09:00:39.418 [XNIO-1 task-2] v5WpK1g1TlykMCNwt4emyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.418 [XNIO-1 task-2] v5WpK1g1TlykMCNwt4emyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.419 [XNIO-1 task-2] v5WpK1g1TlykMCNwt4emyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c81950d4 +09:00:39.437 [XNIO-1 task-2] JmB-BEfqQPWL0pQlh8WHRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.437 [XNIO-1 task-2] JmB-BEfqQPWL0pQlh8WHRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.437 [XNIO-1 task-2] JmB-BEfqQPWL0pQlh8WHRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.443 [XNIO-1 task-2] JmB-BEfqQPWL0pQlh8WHRw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:39.461 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.461 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.462 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.463 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.463 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.463 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.463 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.463 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c50b3ca6-9b57-4cc6-8fd3-d3cfac87", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.465 [XNIO-1 task-2] CyfgK7SdQ8ewDiTPyujxjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.494 [XNIO-1 task-2] TPDibI75RJOHxZERmNgSSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.494 [XNIO-1 task-2] TPDibI75RJOHxZERmNgSSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.495 [XNIO-1 task-2] TPDibI75RJOHxZERmNgSSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.554 [XNIO-1 task-2] IVORsg97S4KA7KE82E4ufA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c81950d4, base path is set to: null +09:00:39.554 [XNIO-1 task-2] IVORsg97S4KA7KE82E4ufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c81950d4 +09:00:39.554 [XNIO-1 task-2] IVORsg97S4KA7KE82E4ufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.554 [XNIO-1 task-2] IVORsg97S4KA7KE82E4ufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.555 [XNIO-1 task-2] IVORsg97S4KA7KE82E4ufA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c81950d4 +09:00:39.558 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:659604b5-55b1-4bf5-8abb-4f47adb6b4e0 +09:00:39.560 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.562 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.562 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.563 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.563 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.563 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.564 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.564 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG com.networknt.schema.TypeValidator debug - validate( "e3de3005-8021-4aa0-8e83-e1604f45", {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.564 [XNIO-1 task-2] uJ6OdmQQQ9-mHXObddjblw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6ab810a","serviceName":"e3de3005-8021-4aa0-8e83-e1604f45","serviceDesc":"b9466c23-7781-4ad6-b897-f12f29d99e0b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.580 [XNIO-1 task-2] JsL9gEKrTwe9UL8VbQeyMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c81950d4, base path is set to: null +09:00:39.581 [XNIO-1 task-2] JsL9gEKrTwe9UL8VbQeyMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.581 [XNIO-1 task-2] JsL9gEKrTwe9UL8VbQeyMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:39.581 [XNIO-1 task-2] JsL9gEKrTwe9UL8VbQeyMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c81950d4, base path is set to: null +09:00:39.581 [XNIO-1 task-2] JsL9gEKrTwe9UL8VbQeyMw DEBUG com.networknt.schema.TypeValidator debug - validate( "c81950d4", "c81950d4", serviceId) +09:00:39.585 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.585 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.586 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.586 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.586 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.586 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG com.networknt.schema.TypeValidator debug - validate( "0474ab03-6b4a-47db-9a0e-465a5220ac00", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:39.586 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG com.networknt.schema.TypeValidator debug - validate( "c81950d4", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:39.587 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:39.587 [XNIO-1 task-2] pG0_T0WsSESywhoMK4czeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c81950d4","serviceName":"c50b3ca6-9b57-4cc6-8fd3-d3cfac87","serviceDesc":"0474ab03-6b4a-47db-9a0e-465a5220ac00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.601 [XNIO-1 task-2] VZ93KRGCTzeWPKjOBWMNZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.601 [XNIO-1 task-2] VZ93KRGCTzeWPKjOBWMNZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.601 [XNIO-1 task-2] VZ93KRGCTzeWPKjOBWMNZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.602 [XNIO-1 task-2] VZ93KRGCTzeWPKjOBWMNZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:39.646 [XNIO-1 task-2] Cba8r61CTZOS3G3ra466IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c81950d4 +09:00:39.646 [XNIO-1 task-2] Cba8r61CTZOS3G3ra466IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.646 [XNIO-1 task-2] Cba8r61CTZOS3G3ra466IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.646 [XNIO-1 task-2] Cba8r61CTZOS3G3ra466IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c81950d4 +09:00:39.749 [XNIO-1 task-2] XnKicwQaRCa2yx7V7aG7EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.749 [XNIO-1 task-2] XnKicwQaRCa2yx7V7aG7EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.749 [XNIO-1 task-2] XnKicwQaRCa2yx7V7aG7EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.750 [XNIO-1 task-2] XnKicwQaRCa2yx7V7aG7EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:39.833 [XNIO-1 task-2] p_A7EADtQyG3cjVF3anhUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.833 [XNIO-1 task-2] p_A7EADtQyG3cjVF3anhUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.834 [XNIO-1 task-2] p_A7EADtQyG3cjVF3anhUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.845 [XNIO-1 task-2] lmZVQVnBRaij9tFeqBAwSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.845 [XNIO-1 task-2] lmZVQVnBRaij9tFeqBAwSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.845 [XNIO-1 task-2] lmZVQVnBRaij9tFeqBAwSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.846 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5535579b +09:00:39.848 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5535579b +09:00:39.857 [XNIO-1 task-2] nTGlNnKmRfGYoL3wxseXPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cdf608b3 +09:00:39.857 [XNIO-1 task-2] nTGlNnKmRfGYoL3wxseXPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.857 [XNIO-1 task-2] nTGlNnKmRfGYoL3wxseXPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.858 [XNIO-1 task-2] nTGlNnKmRfGYoL3wxseXPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cdf608b3 +09:00:39.883 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.883 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.883 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.884 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.884 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.884 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.884 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.885 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0a12788-1222-44c2-ac54-4bc19153", {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.885 [XNIO-1 task-2] dXGo_oNvSqyrU0InqfuiLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.900 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.901 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.901 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.902 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.903 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.903 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:39.903 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:39.903 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG com.networknt.schema.TypeValidator debug - validate( "4b6bcbcb-bcf2-431f-8e44-da3534cd", {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:39.903 [XNIO-1 task-2] jcO12lEPQW-bpdd_v1bl-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3b44e601","serviceName":"4b6bcbcb-bcf2-431f-8e44-da3534cd","serviceDesc":"ec6dc751-f044-42af-8a50-d3995b8ae46d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:39.921 [XNIO-1 task-2] i2buGGjoQ5ahfXZAYskwWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b1bb4b2, base path is set to: null +09:00:39.922 [XNIO-1 task-2] i2buGGjoQ5ahfXZAYskwWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.922 [XNIO-1 task-2] i2buGGjoQ5ahfXZAYskwWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:39.922 [XNIO-1 task-2] i2buGGjoQ5ahfXZAYskwWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b1bb4b2, base path is set to: null +09:00:39.922 [XNIO-1 task-2] i2buGGjoQ5ahfXZAYskwWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3b1bb4b2", "3b1bb4b2", serviceId) +09:00:39.929 [XNIO-1 task-2] 5h6vVj5wSZiOelrsMyGYjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c6ab810a +09:00:39.929 [XNIO-1 task-2] 5h6vVj5wSZiOelrsMyGYjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:39.929 [XNIO-1 task-2] 5h6vVj5wSZiOelrsMyGYjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:39.929 [XNIO-1 task-2] 5h6vVj5wSZiOelrsMyGYjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c6ab810a +09:00:39.942 [XNIO-1 task-2] QzRS0vEYS-eF2dhW_JyUjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.942 [XNIO-1 task-2] QzRS0vEYS-eF2dhW_JyUjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:39.942 [XNIO-1 task-2] QzRS0vEYS-eF2dhW_JyUjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:39.943 [XNIO-1 task-2] QzRS0vEYS-eF2dhW_JyUjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.085 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5a90473c-65b3-499f-ac91-155b63ca1d63 +09:00:40.087 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.087 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.087 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.088 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.088 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:40.088 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG com.networknt.schema.TypeValidator debug - validate( "da3fc741-a2f2-45b0-ad7e-36cb71752f5a", {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:40.088 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG com.networknt.schema.TypeValidator debug - validate( "5535579b", {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:40.088 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.089 [XNIO-1 task-2] 841GEGw-TB-AkJgLMy0R8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5535579b","serviceName":"c7ce1f38-9ada-4a5b-a001-fb8be340","serviceDesc":"da3fc741-a2f2-45b0-ad7e-36cb71752f5a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.090 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5535579b +09:00:40.108 [XNIO-1 task-2] 8xa3V-07RkSNp0XaeXcKKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cdf608b3 +09:00:40.108 [XNIO-1 task-2] 8xa3V-07RkSNp0XaeXcKKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.108 [XNIO-1 task-2] 8xa3V-07RkSNp0XaeXcKKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.108 [XNIO-1 task-2] 8xa3V-07RkSNp0XaeXcKKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cdf608b3 +09:00:40.137 [XNIO-1 task-2] Zzl2fXDMRgaSo9mB58Qypg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d05001ba, base path is set to: null +09:00:40.137 [XNIO-1 task-2] Zzl2fXDMRgaSo9mB58Qypg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.137 [XNIO-1 task-2] Zzl2fXDMRgaSo9mB58Qypg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:40.138 [XNIO-1 task-2] Zzl2fXDMRgaSo9mB58Qypg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d05001ba, base path is set to: null +09:00:40.138 [XNIO-1 task-2] Zzl2fXDMRgaSo9mB58Qypg DEBUG com.networknt.schema.TypeValidator debug - validate( "d05001ba", "d05001ba", serviceId) +09:00:40.173 [XNIO-1 task-2] AbUTBMeOT-CO8ZLsi5cZ4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.173 [XNIO-1 task-2] AbUTBMeOT-CO8ZLsi5cZ4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.174 [XNIO-1 task-2] AbUTBMeOT-CO8ZLsi5cZ4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.187 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.187 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.188 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.188 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.188 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:40.188 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f6ea1e-d66a-4b08-a136-bc1b82631086", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:40.188 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4fe10070", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:40.189 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.189 [XNIO-1 task-2] R5wnLi-RR0eUgbka-rS_QQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.202 [XNIO-1 task-2] dRHBLX_URra-IpA4RVNbpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b1bb4b2 +09:00:40.202 [XNIO-1 task-2] dRHBLX_URra-IpA4RVNbpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.202 [XNIO-1 task-2] dRHBLX_URra-IpA4RVNbpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.203 [XNIO-1 task-2] dRHBLX_URra-IpA4RVNbpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3b1bb4b2 +09:00:40.220 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3b1bb4b2 +09:00:40.228 [XNIO-1 task-2] qfzGZCxvSbi482EYn3o8Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.229 [XNIO-1 task-2] qfzGZCxvSbi482EYn3o8Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.229 [XNIO-1 task-2] qfzGZCxvSbi482EYn3o8Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.229 [XNIO-1 task-2] qfzGZCxvSbi482EYn3o8Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.257 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:659604b5-55b1-4bf5-8abb-4f47adb6b4e0 +09:00:40.317 [XNIO-1 task-2] UYIGRu5PS0ellUgRui3nOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.317 [XNIO-1 task-2] UYIGRu5PS0ellUgRui3nOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.317 [XNIO-1 task-2] UYIGRu5PS0ellUgRui3nOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.356 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.356 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.357 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.358 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.358 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:40.358 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f6ea1e-d66a-4b08-a136-bc1b82631086", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:40.359 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG com.networknt.schema.TypeValidator debug - validate( "4fe10070", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:40.359 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.359 [XNIO-1 task-2] XKXk5fbPQVSXXqE_CFqF1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4fe10070","serviceName":"f6eeb31e-c061-4714-ac5f-3d683441","serviceDesc":"f3f6ea1e-d66a-4b08-a136-bc1b82631086","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.377 [XNIO-1 task-2] ztVP81T0Tkywt7240u99XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e79a345d +09:00:40.377 [XNIO-1 task-2] ztVP81T0Tkywt7240u99XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.377 [XNIO-1 task-2] ztVP81T0Tkywt7240u99XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.377 [XNIO-1 task-2] ztVP81T0Tkywt7240u99XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e79a345d +09:00:40.382 [XNIO-1 task-2] TrMy6S3-R_mF3fPmh4HYOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b44e601, base path is set to: null +09:00:40.383 [XNIO-1 task-2] TrMy6S3-R_mF3fPmh4HYOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.383 [XNIO-1 task-2] TrMy6S3-R_mF3fPmh4HYOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:40.383 [XNIO-1 task-2] TrMy6S3-R_mF3fPmh4HYOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3b44e601, base path is set to: null +09:00:40.383 [XNIO-1 task-2] TrMy6S3-R_mF3fPmh4HYOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3b44e601", "3b44e601", serviceId) +09:00:40.410 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.410 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.411 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.411 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.411 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:40.412 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG com.networknt.schema.TypeValidator debug - validate( "76f53996-f453-4878-a892-a262f976c730", {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:40.412 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG com.networknt.schema.TypeValidator debug - validate( "e79a345d", {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:40.412 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.412 [XNIO-1 task-2] g4t_7vzHT6KtSVZVAZdV2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e79a345d","serviceName":"a0a12788-1222-44c2-ac54-4bc19153","serviceDesc":"76f53996-f453-4878-a892-a262f976c730","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.424 [XNIO-1 task-2] MeABlcQoSQSYtdzwDeCOyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.424 [XNIO-1 task-2] MeABlcQoSQSYtdzwDeCOyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.424 [XNIO-1 task-2] MeABlcQoSQSYtdzwDeCOyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.429 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:07240d86 +09:00:40.459 [XNIO-1 task-2] QWFyH1uWTdeh8ENuRyKI7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5535579b, base path is set to: null +09:00:40.459 [XNIO-1 task-2] QWFyH1uWTdeh8ENuRyKI7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.459 [XNIO-1 task-2] QWFyH1uWTdeh8ENuRyKI7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:40.459 [XNIO-1 task-2] QWFyH1uWTdeh8ENuRyKI7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5535579b, base path is set to: null +09:00:40.460 [XNIO-1 task-2] QWFyH1uWTdeh8ENuRyKI7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5535579b", "5535579b", serviceId) +09:00:40.463 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5535579b +09:00:40.471 [XNIO-1 task-2] 6bwGs3ZlSXK1dLMoDtZHHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a1511e1, base path is set to: null +09:00:40.471 [XNIO-1 task-2] 6bwGs3ZlSXK1dLMoDtZHHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.471 [XNIO-1 task-2] 6bwGs3ZlSXK1dLMoDtZHHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:40.471 [XNIO-1 task-2] 6bwGs3ZlSXK1dLMoDtZHHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a1511e1, base path is set to: null +09:00:40.472 [XNIO-1 task-2] 6bwGs3ZlSXK1dLMoDtZHHg DEBUG com.networknt.schema.TypeValidator debug - validate( "0a1511e1", "0a1511e1", serviceId) +09:00:40.512 [XNIO-1 task-2] 6szWUWiHTRqdMqkJ7KrsZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de97fd51 +09:00:40.512 [XNIO-1 task-2] 6szWUWiHTRqdMqkJ7KrsZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.512 [XNIO-1 task-2] 6szWUWiHTRqdMqkJ7KrsZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.512 [XNIO-1 task-2] 6szWUWiHTRqdMqkJ7KrsZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de97fd51 +09:00:40.529 [XNIO-1 task-2] ykmVzq0ST6OQN8ORZfZzhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.529 [XNIO-1 task-2] ykmVzq0ST6OQN8ORZfZzhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.530 [XNIO-1 task-2] ykmVzq0ST6OQN8ORZfZzhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.530 [XNIO-1 task-2] ykmVzq0ST6OQN8ORZfZzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.574 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:68439059 +09:00:40.575 [XNIO-1 task-2] NhFwxKBlQaG6fMb-Wu_wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4fe10070 +09:00:40.575 [XNIO-1 task-2] NhFwxKBlQaG6fMb-Wu_wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.575 [XNIO-1 task-2] NhFwxKBlQaG6fMb-Wu_wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.575 [XNIO-1 task-2] NhFwxKBlQaG6fMb-Wu_wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4fe10070 +09:00:40.576 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:68439059 +09:00:40.607 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:68439059 +09:00:40.608 [XNIO-1 task-2] luVBSxhLSL2m-NOewYfVKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e79a345d +09:00:40.608 [XNIO-1 task-2] luVBSxhLSL2m-NOewYfVKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.608 [XNIO-1 task-2] luVBSxhLSL2m-NOewYfVKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.608 [XNIO-1 task-2] luVBSxhLSL2m-NOewYfVKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e79a345d +09:00:40.679 [XNIO-1 task-2] Iz0CqBLrT4ObiYT7MmCW8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.680 [XNIO-1 task-2] Iz0CqBLrT4ObiYT7MmCW8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.680 [XNIO-1 task-2] Iz0CqBLrT4ObiYT7MmCW8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.680 [XNIO-1 task-2] Iz0CqBLrT4ObiYT7MmCW8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.692 [XNIO-1 task-2] wRO5Ce2ARTSqBXYqegUYkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e79a345d, base path is set to: null +09:00:40.693 [XNIO-1 task-2] wRO5Ce2ARTSqBXYqegUYkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.693 [XNIO-1 task-2] wRO5Ce2ARTSqBXYqegUYkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:40.694 [XNIO-1 task-2] wRO5Ce2ARTSqBXYqegUYkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e79a345d, base path is set to: null +09:00:40.694 [XNIO-1 task-2] wRO5Ce2ARTSqBXYqegUYkg DEBUG com.networknt.schema.TypeValidator debug - validate( "e79a345d", "e79a345d", serviceId) +09:00:40.710 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.710 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.710 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.711 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.711 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:40.711 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "56ff6376-dbdf-43f8-84b7-a633f9b3ec95", {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:40.711 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2324f7ca", {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:40.711 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:40.711 [XNIO-1 task-2] qp4DqSc_RZKLlIyVkAQQJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2324f7ca","serviceName":"d0d89701-6dee-4237-8a0d-836034a3","serviceDesc":"56ff6376-dbdf-43f8-84b7-a633f9b3ec95","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.740 [XNIO-1 task-2] r7bERAwETO2HvGuTe_5CzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2324f7ca +09:00:40.740 [XNIO-1 task-2] r7bERAwETO2HvGuTe_5CzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.740 [XNIO-1 task-2] r7bERAwETO2HvGuTe_5CzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.740 [XNIO-1 task-2] r7bERAwETO2HvGuTe_5CzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2324f7ca +09:00:40.768 [XNIO-1 task-2] tewZjBxVQY-wtGG7ybJ2aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.768 [XNIO-1 task-2] tewZjBxVQY-wtGG7ybJ2aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.768 [XNIO-1 task-2] tewZjBxVQY-wtGG7ybJ2aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.769 [XNIO-1 task-2] tewZjBxVQY-wtGG7ybJ2aw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.800 [XNIO-1 task-2] fpDx7BszQ1ybBsQLnQjdVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.800 [XNIO-1 task-2] fpDx7BszQ1ybBsQLnQjdVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.801 [XNIO-1 task-2] fpDx7BszQ1ybBsQLnQjdVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.841 [XNIO-1 task-2] Lo1_WRFxTlKk7Qc-iVnhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1ffaa6a3, base path is set to: null +09:00:40.841 [XNIO-1 task-2] Lo1_WRFxTlKk7Qc-iVnhtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.841 [XNIO-1 task-2] Lo1_WRFxTlKk7Qc-iVnhtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:40.841 [XNIO-1 task-2] Lo1_WRFxTlKk7Qc-iVnhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1ffaa6a3, base path is set to: null +09:00:40.842 [XNIO-1 task-2] Lo1_WRFxTlKk7Qc-iVnhtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1ffaa6a3", "1ffaa6a3", serviceId) +09:00:40.849 [XNIO-1 task-2] acHooIxHSymskI-A3BE1GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.849 [XNIO-1 task-2] acHooIxHSymskI-A3BE1GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.849 [XNIO-1 task-2] acHooIxHSymskI-A3BE1GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.869 [XNIO-1 task-2] 3CJ35n7HTmGyG4vmVtE-WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.869 [XNIO-1 task-2] 3CJ35n7HTmGyG4vmVtE-WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.869 [XNIO-1 task-2] 3CJ35n7HTmGyG4vmVtE-WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.870 [XNIO-1 task-2] 3CJ35n7HTmGyG4vmVtE-WA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.889 [XNIO-1 task-2] ILIn4CJ3Sci1wP1mc8EEGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.889 [XNIO-1 task-2] ILIn4CJ3Sci1wP1mc8EEGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.890 [XNIO-1 task-2] ILIn4CJ3Sci1wP1mc8EEGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.903 [XNIO-1 task-2] 4vIjD80_Tw2G-VqoyeQL0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d41992b +09:00:40.903 [XNIO-1 task-2] 4vIjD80_Tw2G-VqoyeQL0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:40.903 [XNIO-1 task-2] 4vIjD80_Tw2G-VqoyeQL0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:40.903 [XNIO-1 task-2] 4vIjD80_Tw2G-VqoyeQL0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d41992b +09:00:40.914 [XNIO-1 task-2] gbmGDZSbQu6iWIa2WdF3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.914 [XNIO-1 task-2] gbmGDZSbQu6iWIa2WdF3jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.914 [XNIO-1 task-2] gbmGDZSbQu6iWIa2WdF3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.915 [XNIO-1 task-2] gbmGDZSbQu6iWIa2WdF3jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.941 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:45906566-7d16-4fe7-84f6-ec427a4e3307 +09:00:40.975 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.975 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:40.976 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:40.977 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.977 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:40.977 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:40.977 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:40.977 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7f8d410-42bc-47c8-bfb7-18ea436b", {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:40.977 [XNIO-1 task-2] tkKAFg7hRkaCo459KtjWOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d41992b","serviceName":"a7f8d410-42bc-47c8-bfb7-18ea436b","serviceDesc":"08e7d5d5-502c-4ff3-9882-10eef19f13f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.010 [XNIO-1 task-2] kEV8-jvnTNCTnI85l5eTbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.010 [XNIO-1 task-2] kEV8-jvnTNCTnI85l5eTbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.011 [XNIO-1 task-2] kEV8-jvnTNCTnI85l5eTbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.047 [XNIO-1 task-2] D1X0kF6kT2CSw1JLHOpSNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1ffaa6a3, base path is set to: null +09:00:41.048 [XNIO-1 task-2] D1X0kF6kT2CSw1JLHOpSNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.048 [XNIO-1 task-2] D1X0kF6kT2CSw1JLHOpSNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.048 [XNIO-1 task-2] D1X0kF6kT2CSw1JLHOpSNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1ffaa6a3, base path is set to: null +09:00:41.048 [XNIO-1 task-2] D1X0kF6kT2CSw1JLHOpSNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1ffaa6a3", "1ffaa6a3", serviceId) +09:00:41.067 [XNIO-1 task-2] ihKZ7PpMQYin_QRc9RKR1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b6724538 +09:00:41.067 [XNIO-1 task-2] ihKZ7PpMQYin_QRc9RKR1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.067 [XNIO-1 task-2] ihKZ7PpMQYin_QRc9RKR1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.067 [XNIO-1 task-2] ihKZ7PpMQYin_QRc9RKR1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b6724538 +09:00:41.071 [XNIO-1 task-2] 0Gxb6fYuQau1LnTkKpbB6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d41992b, base path is set to: null +09:00:41.071 [XNIO-1 task-2] 0Gxb6fYuQau1LnTkKpbB6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.071 [XNIO-1 task-2] 0Gxb6fYuQau1LnTkKpbB6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.071 [XNIO-1 task-2] 0Gxb6fYuQau1LnTkKpbB6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d41992b, base path is set to: null +09:00:41.072 [XNIO-1 task-2] 0Gxb6fYuQau1LnTkKpbB6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1d41992b", "1d41992b", serviceId) +09:00:41.079 [XNIO-1 task-2] kX1r8xwVS--2u9Mu294EeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8ed601aa +09:00:41.079 [XNIO-1 task-2] kX1r8xwVS--2u9Mu294EeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.079 [XNIO-1 task-2] kX1r8xwVS--2u9Mu294EeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.079 [XNIO-1 task-2] kX1r8xwVS--2u9Mu294EeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8ed601aa +09:00:41.087 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.088 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.088 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.089 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.089 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.089 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:41.089 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:41.089 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5145d653-6bda-4823-b069-97560943", {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:41.089 [XNIO-1 task-2] ej3kmgRsTBmrTR9jNTnkyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.100 [XNIO-1 task-2] S1Rfly4gTfW1qm3H4rhVOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d41992b, base path is set to: null +09:00:41.100 [XNIO-1 task-2] S1Rfly4gTfW1qm3H4rhVOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.100 [XNIO-1 task-2] S1Rfly4gTfW1qm3H4rhVOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.101 [XNIO-1 task-2] S1Rfly4gTfW1qm3H4rhVOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d41992b, base path is set to: null +09:00:41.101 [XNIO-1 task-2] S1Rfly4gTfW1qm3H4rhVOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d41992b", "1d41992b", serviceId) +09:00:41.107 [XNIO-1 task-2] o2OG6kNcQ9ebg6xUBvWpVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d41992b +09:00:41.107 [XNIO-1 task-2] o2OG6kNcQ9ebg6xUBvWpVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.107 [XNIO-1 task-2] o2OG6kNcQ9ebg6xUBvWpVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.107 [XNIO-1 task-2] o2OG6kNcQ9ebg6xUBvWpVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1d41992b +09:00:41.123 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.123 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.124 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.124 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.124 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.124 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:41.125 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:41.125 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG com.networknt.schema.TypeValidator debug - validate( "5145d653-6bda-4823-b069-97560943", {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:41.125 [XNIO-1 task-2] dbahqFEySpa4NX5csIwPSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b6724538","serviceName":"5145d653-6bda-4823-b069-97560943","serviceDesc":"8fb1551a-ee16-41a5-95e3-a56ab77dc960","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.143 [XNIO-1 task-2] oQtXzyCGQjuN_gELUyySVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b6724538, base path is set to: null +09:00:41.143 [XNIO-1 task-2] oQtXzyCGQjuN_gELUyySVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.143 [XNIO-1 task-2] oQtXzyCGQjuN_gELUyySVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.143 [XNIO-1 task-2] oQtXzyCGQjuN_gELUyySVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b6724538, base path is set to: null +09:00:41.144 [XNIO-1 task-2] oQtXzyCGQjuN_gELUyySVw DEBUG com.networknt.schema.TypeValidator debug - validate( "b6724538", "b6724538", serviceId) +09:00:41.162 [XNIO-1 task-2] VNnbFcc_QD6XwoOgup4VNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.163 [XNIO-1 task-2] VNnbFcc_QD6XwoOgup4VNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.163 [XNIO-1 task-2] VNnbFcc_QD6XwoOgup4VNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.163 [XNIO-1 task-2] VNnbFcc_QD6XwoOgup4VNw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.183 [XNIO-1 task-2] 6jVOv8JrSwyGHV_LAdsSAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.183 [XNIO-1 task-2] 6jVOv8JrSwyGHV_LAdsSAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.183 [XNIO-1 task-2] 6jVOv8JrSwyGHV_LAdsSAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.183 [XNIO-1 task-2] 6jVOv8JrSwyGHV_LAdsSAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.217 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8f7dbf5e +09:00:41.224 [XNIO-1 task-2] lMdIlC0PQTqPMlXIaJ7SlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8ed601aa, base path is set to: null +09:00:41.224 [XNIO-1 task-2] lMdIlC0PQTqPMlXIaJ7SlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.224 [XNIO-1 task-2] lMdIlC0PQTqPMlXIaJ7SlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.225 [XNIO-1 task-2] lMdIlC0PQTqPMlXIaJ7SlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8ed601aa, base path is set to: null +09:00:41.225 [XNIO-1 task-2] lMdIlC0PQTqPMlXIaJ7SlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ed601aa", "8ed601aa", serviceId) +09:00:41.244 [XNIO-1 task-2] cviKXooVQXqAX32MTCKWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.244 [XNIO-1 task-2] cviKXooVQXqAX32MTCKWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.244 [XNIO-1 task-2] cviKXooVQXqAX32MTCKWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.245 [XNIO-1 task-2] cviKXooVQXqAX32MTCKWqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.265 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6e8638f4-e853-4f7b-9aa3-60ef5fedece4 +09:00:41.271 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8f7dbf5e +09:00:41.282 [XNIO-1 task-2] SGPcEnJDRCu_Nml-1XgrXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.282 [XNIO-1 task-2] SGPcEnJDRCu_Nml-1XgrXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.285 [XNIO-1 task-2] SGPcEnJDRCu_Nml-1XgrXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.296 [XNIO-1 task-2] U35avrwgRPyTR9xc1EwCwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.296 [XNIO-1 task-2] U35avrwgRPyTR9xc1EwCwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.297 [XNIO-1 task-2] U35avrwgRPyTR9xc1EwCwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.297 [XNIO-1 task-2] U35avrwgRPyTR9xc1EwCwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.407 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.408 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.408 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.409 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.409 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.409 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:41.409 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:41.409 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG com.networknt.schema.TypeValidator debug - validate( "2abae30f-d183-4e81-977e-46cfd288", {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:41.410 [XNIO-1 task-2] z3ysUXz9TVaXH8QjWxmr4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.422 [XNIO-1 task-2] qBCv-MBvRBiMJYK9i6x12g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.423 [XNIO-1 task-2] qBCv-MBvRBiMJYK9i6x12g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.423 [XNIO-1 task-2] qBCv-MBvRBiMJYK9i6x12g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.423 [XNIO-1 task-2] qBCv-MBvRBiMJYK9i6x12g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.443 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:00129d0c-b4c7-4558-8001-46a913d7457e +09:00:41.452 [XNIO-1 task-2] sCrvcK7MTi-UkDhP8h7AJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/74ca196b, base path is set to: null +09:00:41.452 [XNIO-1 task-2] sCrvcK7MTi-UkDhP8h7AJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.452 [XNIO-1 task-2] sCrvcK7MTi-UkDhP8h7AJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.452 [XNIO-1 task-2] sCrvcK7MTi-UkDhP8h7AJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/74ca196b, base path is set to: null +09:00:41.453 [XNIO-1 task-2] sCrvcK7MTi-UkDhP8h7AJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "74ca196b", "74ca196b", serviceId) +09:00:41.458 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.458 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.459 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.459 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.459 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:41.459 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG com.networknt.schema.TypeValidator debug - validate( "94ef05ea-8925-48ca-8dce-f55e2500e45d", {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:41.460 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG com.networknt.schema.TypeValidator debug - validate( "74ca196b", {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:41.460 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:41.460 [XNIO-1 task-2] bS8pujr6TeSMEOrUixdBxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"74ca196b","serviceName":"2abae30f-d183-4e81-977e-46cfd288","serviceDesc":"94ef05ea-8925-48ca-8dce-f55e2500e45d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:41.474 [XNIO-1 task-2] BWctIMzxSJSF6VRiA_-7Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.474 [XNIO-1 task-2] BWctIMzxSJSF6VRiA_-7Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.475 [XNIO-1 task-2] BWctIMzxSJSF6VRiA_-7Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.475 [XNIO-1 task-2] BWctIMzxSJSF6VRiA_-7Mg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.531 [XNIO-1 task-2] 85gsXYUmRtGveiVkkcKJng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74ca196b +09:00:41.531 [XNIO-1 task-2] 85gsXYUmRtGveiVkkcKJng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.531 [XNIO-1 task-2] 85gsXYUmRtGveiVkkcKJng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.531 [XNIO-1 task-2] 85gsXYUmRtGveiVkkcKJng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74ca196b +09:00:41.532 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a49d5302-afaf-48c0-9a2f-6a26c0c059ca +09:00:41.541 [XNIO-1 task-2] OHSiydK2TO-B2SO5m6gCmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/74ca196b, base path is set to: null +09:00:41.541 [XNIO-1 task-2] OHSiydK2TO-B2SO5m6gCmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.541 [XNIO-1 task-2] OHSiydK2TO-B2SO5m6gCmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.542 [XNIO-1 task-2] OHSiydK2TO-B2SO5m6gCmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/74ca196b, base path is set to: null +09:00:41.542 [XNIO-1 task-2] OHSiydK2TO-B2SO5m6gCmg DEBUG com.networknt.schema.TypeValidator debug - validate( "74ca196b", "74ca196b", serviceId) +09:00:41.549 [XNIO-1 task-2] aOJ4porbQXGjagwiuYE0sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74ca196b +09:00:41.549 [XNIO-1 task-2] aOJ4porbQXGjagwiuYE0sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.549 [XNIO-1 task-2] aOJ4porbQXGjagwiuYE0sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.550 [XNIO-1 task-2] aOJ4porbQXGjagwiuYE0sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74ca196b +09:00:41.561 [XNIO-1 task-2] M0nkvIxvTlOO4i6NpOlKnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.562 [XNIO-1 task-2] M0nkvIxvTlOO4i6NpOlKnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.562 [XNIO-1 task-2] M0nkvIxvTlOO4i6NpOlKnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.562 [XNIO-1 task-2] M0nkvIxvTlOO4i6NpOlKnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.606 [XNIO-1 task-2] eZhp-UXuSQW3cTQ8UYfCnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.606 [XNIO-1 task-2] eZhp-UXuSQW3cTQ8UYfCnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.606 [XNIO-1 task-2] eZhp-UXuSQW3cTQ8UYfCnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.607 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fb761ebf-bf83-4319-9974-697466b3cdf5 +09:00:41.607 [XNIO-1 task-2] eZhp-UXuSQW3cTQ8UYfCnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.611 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fb761ebf-bf83-4319-9974-697466b3cdf5 +09:00:41.634 [XNIO-1 task-2] IgpKSepcTD2CGnjc5jEIyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.634 [XNIO-1 task-2] IgpKSepcTD2CGnjc5jEIyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.634 [XNIO-1 task-2] IgpKSepcTD2CGnjc5jEIyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.637 [XNIO-1 task-2] IgpKSepcTD2CGnjc5jEIyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.650 [XNIO-1 task-2] rFR7DVohQqGVuPKR95RF9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.651 [XNIO-1 task-2] rFR7DVohQqGVuPKR95RF9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.651 [XNIO-1 task-2] rFR7DVohQqGVuPKR95RF9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.667 [XNIO-1 task-2] a2ycAvQLSla9YA9SoDC-ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ea96b019, base path is set to: null +09:00:41.668 [XNIO-1 task-2] a2ycAvQLSla9YA9SoDC-ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.668 [XNIO-1 task-2] a2ycAvQLSla9YA9SoDC-ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.668 [XNIO-1 task-2] a2ycAvQLSla9YA9SoDC-ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ea96b019, base path is set to: null +09:00:41.668 [XNIO-1 task-2] a2ycAvQLSla9YA9SoDC-ag DEBUG com.networknt.schema.TypeValidator debug - validate( "ea96b019", "ea96b019", serviceId) +09:00:41.754 [XNIO-1 task-2] mvAHTIu_QuSV8dCKI2u3lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.754 [XNIO-1 task-2] mvAHTIu_QuSV8dCKI2u3lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.755 [XNIO-1 task-2] mvAHTIu_QuSV8dCKI2u3lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.755 [XNIO-1 task-2] mvAHTIu_QuSV8dCKI2u3lg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.771 [XNIO-1 task-2] 91Ldi4ZBRAKJ5ESGqO-skQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.771 [XNIO-1 task-2] 91Ldi4ZBRAKJ5ESGqO-skQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.772 [XNIO-1 task-2] 91Ldi4ZBRAKJ5ESGqO-skQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.772 [XNIO-1 task-2] 91Ldi4ZBRAKJ5ESGqO-skQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.813 [XNIO-1 task-2] sr_njdoWSCOR-oRh2vaHqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.813 [XNIO-1 task-2] sr_njdoWSCOR-oRh2vaHqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.813 [XNIO-1 task-2] sr_njdoWSCOR-oRh2vaHqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.814 [XNIO-1 task-2] sr_njdoWSCOR-oRh2vaHqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.826 [XNIO-1 task-2] 5INUO2x2SvubZzZZuDBoqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.826 [XNIO-1 task-2] 5INUO2x2SvubZzZZuDBoqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.826 [XNIO-1 task-2] 5INUO2x2SvubZzZZuDBoqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.836 [XNIO-1 task-2] _KKks6VGTAarU2R9PEtJXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8b9f65a +09:00:41.836 [XNIO-1 task-2] _KKks6VGTAarU2R9PEtJXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.836 [XNIO-1 task-2] _KKks6VGTAarU2R9PEtJXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.836 [XNIO-1 task-2] _KKks6VGTAarU2R9PEtJXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8b9f65a +09:00:41.840 [XNIO-1 task-2] 3zxm1R8OTMacZS4cejzWJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c8b9f65a, base path is set to: null +09:00:41.840 [XNIO-1 task-2] 3zxm1R8OTMacZS4cejzWJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.840 [XNIO-1 task-2] 3zxm1R8OTMacZS4cejzWJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:41.841 [XNIO-1 task-2] 3zxm1R8OTMacZS4cejzWJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c8b9f65a, base path is set to: null +09:00:41.841 [XNIO-1 task-2] 3zxm1R8OTMacZS4cejzWJA DEBUG com.networknt.schema.TypeValidator debug - validate( "c8b9f65a", "c8b9f65a", serviceId) +09:00:41.845 [XNIO-1 task-2] WENyI2WaS8W-pVJu54Wjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8b9f65a +09:00:41.845 [XNIO-1 task-2] WENyI2WaS8W-pVJu54Wjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.845 [XNIO-1 task-2] WENyI2WaS8W-pVJu54Wjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.845 [XNIO-1 task-2] WENyI2WaS8W-pVJu54Wjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c8b9f65a +09:00:41.859 [XNIO-1 task-2] EorgLsf_TDuDlaBq3uwEVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.859 [XNIO-1 task-2] EorgLsf_TDuDlaBq3uwEVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.860 [XNIO-1 task-2] EorgLsf_TDuDlaBq3uwEVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.861 [XNIO-1 task-2] EorgLsf_TDuDlaBq3uwEVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.886 [XNIO-1 task-2] PhvZAcpOSOODT2Z85583cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.886 [XNIO-1 task-2] PhvZAcpOSOODT2Z85583cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.887 [XNIO-1 task-2] PhvZAcpOSOODT2Z85583cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.887 [XNIO-1 task-2] PhvZAcpOSOODT2Z85583cg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.934 [XNIO-1 task-2] e7y05c9zQAG4LTsD2gSrLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.934 [XNIO-1 task-2] e7y05c9zQAG4LTsD2gSrLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.935 [XNIO-1 task-2] e7y05c9zQAG4LTsD2gSrLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.951 [XNIO-1 task-2] RYqCWkoMRc-fVD_H7I4X7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.952 [XNIO-1 task-2] RYqCWkoMRc-fVD_H7I4X7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.953 [XNIO-1 task-2] RYqCWkoMRc-fVD_H7I4X7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.967 [XNIO-1 task-2] VyTNAaKjRXW4jpUTo0kdvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.968 [XNIO-1 task-2] VyTNAaKjRXW4jpUTo0kdvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:41.968 [XNIO-1 task-2] VyTNAaKjRXW4jpUTo0kdvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:41.968 [XNIO-1 task-2] VyTNAaKjRXW4jpUTo0kdvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.988 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ee9cd6f +09:00:41.990 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ee9cd6f +09:00:41.998 [XNIO-1 task-2] r7UGAveNRTSR6Kve9XjLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f43b92d5 +09:00:41.998 [XNIO-1 task-2] r7UGAveNRTSR6Kve9XjLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:41.998 [XNIO-1 task-2] r7UGAveNRTSR6Kve9XjLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:41.998 [XNIO-1 task-2] r7UGAveNRTSR6Kve9XjLug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f43b92d5 +09:00:42.017 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.018 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.018 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.019 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.019 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.019 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:42.019 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.019 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG com.networknt.schema.TypeValidator debug - validate( "c90b269c-e95e-4873-9a79-c2bb5799", {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:42.019 [XNIO-1 task-2] CvBOXPm4TXWGPK2u-V957g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40741286","serviceName":"c90b269c-e95e-4873-9a79-c2bb5799","serviceDesc":"07eb1f45-92fe-479f-8a70-d1f222e83ddd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.035 [XNIO-1 task-2] bT3LeG77S2SRNVDbrI2dbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.036 [XNIO-1 task-2] bT3LeG77S2SRNVDbrI2dbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.036 [XNIO-1 task-2] bT3LeG77S2SRNVDbrI2dbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.038 [XNIO-1 task-2] bT3LeG77S2SRNVDbrI2dbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.050 [XNIO-1 task-2] Kgqi_QMoRbWA_KCS09NRvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.050 [XNIO-1 task-2] Kgqi_QMoRbWA_KCS09NRvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.050 [XNIO-1 task-2] Kgqi_QMoRbWA_KCS09NRvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.051 [XNIO-1 task-2] Kgqi_QMoRbWA_KCS09NRvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.064 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ce746164-9352-48e3-b808-13f7beefc377 +09:00:42.065 [XNIO-1 task-2] 0rPLDgc2S7S_adoIUQ7pyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40741286 +09:00:42.065 [XNIO-1 task-2] 0rPLDgc2S7S_adoIUQ7pyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.065 [XNIO-1 task-2] 0rPLDgc2S7S_adoIUQ7pyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.065 [XNIO-1 task-2] 0rPLDgc2S7S_adoIUQ7pyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40741286 +09:00:42.066 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ce746164-9352-48e3-b808-13f7beefc377 +09:00:42.084 [XNIO-1 task-2] ypfpjcgMRN65-NpGwyCEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.085 [XNIO-1 task-2] ypfpjcgMRN65-NpGwyCEcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.085 [XNIO-1 task-2] ypfpjcgMRN65-NpGwyCEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.085 [XNIO-1 task-2] ypfpjcgMRN65-NpGwyCEcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.090 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5ee9cd6f +09:00:42.104 [XNIO-1 task-2] V5CzzfoqR3WnkAuK1nKzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.104 [XNIO-1 task-2] V5CzzfoqR3WnkAuK1nKzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.105 [XNIO-1 task-2] V5CzzfoqR3WnkAuK1nKzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.120 [XNIO-1 task-2] nqjym9w3RHO1mRVWHyolwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/70fef263 +09:00:42.120 [XNIO-1 task-2] nqjym9w3RHO1mRVWHyolwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.121 [XNIO-1 task-2] nqjym9w3RHO1mRVWHyolwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.121 [XNIO-1 task-2] nqjym9w3RHO1mRVWHyolwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/70fef263 +09:00:42.125 [XNIO-1 task-2] GmJ6wa4UQgmIUsGzWHJW3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.126 [XNIO-1 task-2] GmJ6wa4UQgmIUsGzWHJW3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.126 [XNIO-1 task-2] GmJ6wa4UQgmIUsGzWHJW3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.139 [XNIO-1 task-2] BlgHxTr-RieU2tLzZfWw4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6f4889ef, base path is set to: null +09:00:42.139 [XNIO-1 task-2] BlgHxTr-RieU2tLzZfWw4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.139 [XNIO-1 task-2] BlgHxTr-RieU2tLzZfWw4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.140 [XNIO-1 task-2] BlgHxTr-RieU2tLzZfWw4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6f4889ef, base path is set to: null +09:00:42.141 [XNIO-1 task-2] BlgHxTr-RieU2tLzZfWw4g DEBUG com.networknt.schema.TypeValidator debug - validate( "6f4889ef", "6f4889ef", serviceId) +09:00:42.165 [XNIO-1 task-2] 8AGwbr_PT9ecvwRv5Gmpng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.166 [XNIO-1 task-2] 8AGwbr_PT9ecvwRv5Gmpng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.166 [XNIO-1 task-2] 8AGwbr_PT9ecvwRv5Gmpng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.204 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9cd95b6 +09:00:42.223 [XNIO-1 task-2] mH8Oac4GTZyzOc8Mwm0uPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:42.223 [XNIO-1 task-2] mH8Oac4GTZyzOc8Mwm0uPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.223 [XNIO-1 task-2] mH8Oac4GTZyzOc8Mwm0uPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.223 [XNIO-1 task-2] mH8Oac4GTZyzOc8Mwm0uPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:42.224 [XNIO-1 task-2] mH8Oac4GTZyzOc8Mwm0uPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c179418c", "c179418c", serviceId) +09:00:42.234 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.234 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.235 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.235 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.235 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:42.236 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG com.networknt.schema.TypeValidator debug - validate( "035e5509-62da-409e-ac70-7bdb4bf094d7", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:42.236 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG com.networknt.schema.TypeValidator debug - validate( "c179418c", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:42.236 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.236 [XNIO-1 task-2] dOu1SJ8OQ6aP1XuStveHOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.251 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:12615e76 +09:00:42.252 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1f94c0c2-afb1-4077-bb42-1a4b090bc6f8 +09:00:42.256 [XNIO-1 task-2] 8Gov9SrZQr6xiFLA32Wc5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/70fef263 +09:00:42.256 [XNIO-1 task-2] 8Gov9SrZQr6xiFLA32Wc5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.256 [XNIO-1 task-2] 8Gov9SrZQr6xiFLA32Wc5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.256 [XNIO-1 task-2] 8Gov9SrZQr6xiFLA32Wc5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/70fef263 +09:00:42.260 [XNIO-1 task-2] IVUnJUQfTPmL71UQQCoeGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.260 [XNIO-1 task-2] IVUnJUQfTPmL71UQQCoeGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.261 [XNIO-1 task-2] IVUnJUQfTPmL71UQQCoeGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +Jun 29, 2024 9:00:42 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:00:42.287 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:00:42.333 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c85276de-3084-44c5-a6c0-057c37028a7e +09:00:42.334 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:12615e76 +09:00:42.339 [XNIO-1 task-2] vzLIuHRPTo-ws8nNM6IEkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/70fef263 +09:00:42.340 [XNIO-1 task-2] vzLIuHRPTo-ws8nNM6IEkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.340 [XNIO-1 task-2] vzLIuHRPTo-ws8nNM6IEkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.340 [XNIO-1 task-2] vzLIuHRPTo-ws8nNM6IEkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/70fef263 +09:00:42.344 [XNIO-1 task-2] EAMK9NJ_S_iOmCRJti6rXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/70fef263, base path is set to: null +09:00:42.345 [XNIO-1 task-2] EAMK9NJ_S_iOmCRJti6rXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.346 [XNIO-1 task-2] EAMK9NJ_S_iOmCRJti6rXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.346 [XNIO-1 task-2] EAMK9NJ_S_iOmCRJti6rXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/70fef263, base path is set to: null +09:00:42.346 [XNIO-1 task-2] EAMK9NJ_S_iOmCRJti6rXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "70fef263", "70fef263", serviceId) +09:00:42.360 [XNIO-1 task-2] yZjjdF0PRCy7haWnyNSbkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.360 [XNIO-1 task-2] yZjjdF0PRCy7haWnyNSbkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.362 [XNIO-1 task-2] yZjjdF0PRCy7haWnyNSbkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.384 [XNIO-1 task-2] N9IybNJPSOSxCMT3MSGyXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.384 [XNIO-1 task-2] N9IybNJPSOSxCMT3MSGyXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.385 [XNIO-1 task-2] N9IybNJPSOSxCMT3MSGyXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.412 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.412 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.412 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.413 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.413 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.413 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:42.413 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.413 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG com.networknt.schema.TypeValidator debug - validate( "795ff25d-632c-4927-8213-75f01256", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:42.413 [XNIO-1 task-2] WoHT8cE2QPqr993ZRPB40g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.439 [XNIO-1 task-2] IKe_gyYaT82zSBPo5DvejA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.440 [XNIO-1 task-2] IKe_gyYaT82zSBPo5DvejA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.440 [XNIO-1 task-2] IKe_gyYaT82zSBPo5DvejA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.471 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:57542849-3174-4b1d-90ca-383d878d05fa +09:00:42.485 [XNIO-1 task-2] Rxhwi1v1Q1agF4l-leV4bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d730e142, base path is set to: null +09:00:42.485 [XNIO-1 task-2] Rxhwi1v1Q1agF4l-leV4bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.485 [XNIO-1 task-2] Rxhwi1v1Q1agF4l-leV4bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.487 [XNIO-1 task-2] Rxhwi1v1Q1agF4l-leV4bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d730e142, base path is set to: null +09:00:42.487 [XNIO-1 task-2] Rxhwi1v1Q1agF4l-leV4bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d730e142", "d730e142", serviceId) +09:00:42.505 [XNIO-1 task-2] ji2WVhdJTL-YgECKlJfRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e88480ba +09:00:42.505 [XNIO-1 task-2] ji2WVhdJTL-YgECKlJfRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.505 [XNIO-1 task-2] ji2WVhdJTL-YgECKlJfRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.505 [XNIO-1 task-2] ji2WVhdJTL-YgECKlJfRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e88480ba +09:00:42.517 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:57542849-3174-4b1d-90ca-383d878d05fa +09:00:42.522 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9cd95b6 +09:00:42.530 [XNIO-1 task-2] uvxPRXWpRBKNpNeKieHFGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bc6f799 +09:00:42.530 [XNIO-1 task-2] uvxPRXWpRBKNpNeKieHFGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.530 [XNIO-1 task-2] uvxPRXWpRBKNpNeKieHFGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.530 [XNIO-1 task-2] uvxPRXWpRBKNpNeKieHFGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bc6f799 +09:00:42.555 [XNIO-1 task-2] _mmICTW5Q0-td6AQp1BjYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7b53015d, base path is set to: null +09:00:42.555 [XNIO-1 task-2] _mmICTW5Q0-td6AQp1BjYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.555 [XNIO-1 task-2] _mmICTW5Q0-td6AQp1BjYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.555 [XNIO-1 task-2] _mmICTW5Q0-td6AQp1BjYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7b53015d, base path is set to: null +09:00:42.556 [XNIO-1 task-2] _mmICTW5Q0-td6AQp1BjYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7b53015d", "7b53015d", serviceId) +09:00:42.562 [XNIO-1 task-2] 83TZGvyQQgqbrtA493Nt1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.562 [XNIO-1 task-2] 83TZGvyQQgqbrtA493Nt1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.562 [XNIO-1 task-2] 83TZGvyQQgqbrtA493Nt1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.576 [XNIO-1 task-2] q__FcB9pTDCOfUvoEDjHWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.577 [XNIO-1 task-2] q__FcB9pTDCOfUvoEDjHWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.577 [XNIO-1 task-2] q__FcB9pTDCOfUvoEDjHWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.578 [XNIO-1 task-2] q__FcB9pTDCOfUvoEDjHWw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.588 [XNIO-1 task-2] 6JV4oO00Rt6F9tx5HYlDSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.589 [XNIO-1 task-2] 6JV4oO00Rt6F9tx5HYlDSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.589 [XNIO-1 task-2] 6JV4oO00Rt6F9tx5HYlDSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.594 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0da5f8a5 +09:00:42.624 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9cd95b6 +09:00:42.632 [XNIO-1 task-2] 7Bslq35pR6OApJykxXcPvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.633 [XNIO-1 task-2] 7Bslq35pR6OApJykxXcPvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.633 [XNIO-1 task-2] 7Bslq35pR6OApJykxXcPvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.642 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e9cd95b6 +09:00:42.654 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:12a2b987-9f1b-4715-8464-75dbd666f32c +09:00:42.680 [XNIO-1 task-2] _GFmEVuuRke4ShvLhFhtEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7b53015d, base path is set to: null +09:00:42.680 [XNIO-1 task-2] _GFmEVuuRke4ShvLhFhtEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.681 [XNIO-1 task-2] _GFmEVuuRke4ShvLhFhtEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.681 [XNIO-1 task-2] _GFmEVuuRke4ShvLhFhtEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7b53015d, base path is set to: null +09:00:42.681 [XNIO-1 task-2] _GFmEVuuRke4ShvLhFhtEg DEBUG com.networknt.schema.TypeValidator debug - validate( "7b53015d", "7b53015d", serviceId) +09:00:42.686 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.686 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.686 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.687 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.689 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.689 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:42.689 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.689 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG com.networknt.schema.TypeValidator debug - validate( "e5aece36-4266-4d84-a740-e33bf9f7", {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:42.689 [XNIO-1 task-2] fTPhO9D9T0KCvvPlYV8W_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f2ec0fc0","serviceName":"e5aece36-4266-4d84-a740-e33bf9f7","serviceDesc":"89d2c01a-3451-4c1e-bf5f-c2cfac894deb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.730 [XNIO-1 task-2] tOQNA_zAQHK3SLIUTUK4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7b53015d, base path is set to: null +09:00:42.730 [XNIO-1 task-2] tOQNA_zAQHK3SLIUTUK4jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.730 [XNIO-1 task-2] tOQNA_zAQHK3SLIUTUK4jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.730 [XNIO-1 task-2] tOQNA_zAQHK3SLIUTUK4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7b53015d, base path is set to: null +09:00:42.731 [XNIO-1 task-2] tOQNA_zAQHK3SLIUTUK4jg DEBUG com.networknt.schema.TypeValidator debug - validate( "7b53015d", "7b53015d", serviceId) +09:00:42.745 [XNIO-1 task-2] yC_kJYEhS_27lQTAiw1xkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2ec0fc0 +09:00:42.745 [XNIO-1 task-2] yC_kJYEhS_27lQTAiw1xkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.745 [XNIO-1 task-2] yC_kJYEhS_27lQTAiw1xkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.745 [XNIO-1 task-2] yC_kJYEhS_27lQTAiw1xkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2ec0fc0 +09:00:42.751 [XNIO-1 task-2] _3I4NEVRQkKFnSlULc-B_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.752 [XNIO-1 task-2] _3I4NEVRQkKFnSlULc-B_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.752 [XNIO-1 task-2] _3I4NEVRQkKFnSlULc-B_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.769 [XNIO-1 task-2] 71c6DCPKR_ewVdiW9q__Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.769 [XNIO-1 task-2] 71c6DCPKR_ewVdiW9q__Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.770 [XNIO-1 task-2] 71c6DCPKR_ewVdiW9q__Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.785 [XNIO-1 task-2] qg_1OVctSGSw2lkIxrZx_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.785 [XNIO-1 task-2] qg_1OVctSGSw2lkIxrZx_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.785 [XNIO-1 task-2] qg_1OVctSGSw2lkIxrZx_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.786 [XNIO-1 task-2] qg_1OVctSGSw2lkIxrZx_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.830 [XNIO-1 task-2] _5PYQNZnRha7L99f614DtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2ec0fc0, base path is set to: null +09:00:42.831 [XNIO-1 task-2] _5PYQNZnRha7L99f614DtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.831 [XNIO-1 task-2] _5PYQNZnRha7L99f614DtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.831 [XNIO-1 task-2] _5PYQNZnRha7L99f614DtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2ec0fc0, base path is set to: null +09:00:42.831 [XNIO-1 task-2] _5PYQNZnRha7L99f614DtA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2ec0fc0", "f2ec0fc0", serviceId) +09:00:42.848 [XNIO-1 task-2] lXGwdfHGQz-VlssmyTaoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1fe64484 +09:00:42.848 [XNIO-1 task-2] lXGwdfHGQz-VlssmyTaoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.848 [XNIO-1 task-2] lXGwdfHGQz-VlssmyTaoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.848 [XNIO-1 task-2] lXGwdfHGQz-VlssmyTaoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1fe64484 +09:00:42.853 [XNIO-1 task-2] Vzn3MWxvQNy0CR2-T7dUBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.853 [XNIO-1 task-2] Vzn3MWxvQNy0CR2-T7dUBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.853 [XNIO-1 task-2] Vzn3MWxvQNy0CR2-T7dUBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.872 [XNIO-1 task-2] zxsj5nfzTN66-8Mnuub-kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1fe64484, base path is set to: null +09:00:42.872 [XNIO-1 task-2] zxsj5nfzTN66-8Mnuub-kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.872 [XNIO-1 task-2] zxsj5nfzTN66-8Mnuub-kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.872 [XNIO-1 task-2] zxsj5nfzTN66-8Mnuub-kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1fe64484, base path is set to: null +09:00:42.873 [XNIO-1 task-2] zxsj5nfzTN66-8Mnuub-kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1fe64484", "1fe64484", serviceId) +09:00:42.889 [XNIO-1 task-2] ktS3XV0nQkOYPwaMugluiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.889 [XNIO-1 task-2] ktS3XV0nQkOYPwaMugluiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.890 [XNIO-1 task-2] ktS3XV0nQkOYPwaMugluiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.890 [XNIO-1 task-2] ktS3XV0nQkOYPwaMugluiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.902 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.903 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.903 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.904 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.904 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:42.904 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG com.networknt.schema.TypeValidator debug - validate( "13839a7a-e67b-4203-af64-9ec27eb2de87", {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:42.904 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1719933a", {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:42.904 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:42.904 [XNIO-1 task-2] 8IwSXuOoQGyVSyomv2BY9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1719933a","serviceName":"675f6017-ea60-4f14-8a40-93f36bb6","serviceDesc":"13839a7a-e67b-4203-af64-9ec27eb2de87","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.915 [XNIO-1 task-2] TivXcFiBRDeA2iP82-1X4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1719933a +09:00:42.915 [XNIO-1 task-2] TivXcFiBRDeA2iP82-1X4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.915 [XNIO-1 task-2] TivXcFiBRDeA2iP82-1X4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.915 [XNIO-1 task-2] TivXcFiBRDeA2iP82-1X4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1719933a +09:00:42.926 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.926 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.927 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.927 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.927 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.927 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:42.928 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.928 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "8c129b91-e256-405d-acd8-9881424b", {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:42.928 [XNIO-1 task-2] AYgVMlcQQEeVQRi5LMb9Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.928 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0da5f8a5 +09:00:42.936 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.936 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.937 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.937 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.937 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.937 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:42.938 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:42.938 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG com.networknt.schema.TypeValidator debug - validate( "795ff25d-632c-4927-8213-75f01256", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:42.938 [XNIO-1 task-2] t0cJILGqR6ilmfS3r9yFkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:42.958 [XNIO-1 task-2] alnwsxNCQmyODL2JX6suRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.958 [XNIO-1 task-2] alnwsxNCQmyODL2JX6suRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.958 [XNIO-1 task-2] alnwsxNCQmyODL2JX6suRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.975 [XNIO-1 task-2] TLnhFwvSQ0S5LwmbFgr3pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0da5f8a5, base path is set to: null +09:00:42.975 [XNIO-1 task-2] TLnhFwvSQ0S5LwmbFgr3pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.975 [XNIO-1 task-2] TLnhFwvSQ0S5LwmbFgr3pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:42.975 [XNIO-1 task-2] TLnhFwvSQ0S5LwmbFgr3pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0da5f8a5, base path is set to: null +09:00:42.976 [XNIO-1 task-2] TLnhFwvSQ0S5LwmbFgr3pg DEBUG com.networknt.schema.TypeValidator debug - validate( "0da5f8a5", "0da5f8a5", serviceId) +09:00:42.979 [XNIO-1 task-2] y1knrjapQAuybe86sPDBnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0da5f8a5 +09:00:42.979 [XNIO-1 task-2] y1knrjapQAuybe86sPDBnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:42.979 [XNIO-1 task-2] y1knrjapQAuybe86sPDBnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:42.980 [XNIO-1 task-2] y1knrjapQAuybe86sPDBnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0da5f8a5 +09:00:42.988 [XNIO-1 task-2] Sb8M802FRyKeYpWaNwfbpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:42.988 [XNIO-1 task-2] Sb8M802FRyKeYpWaNwfbpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:42.989 [XNIO-1 task-2] Sb8M802FRyKeYpWaNwfbpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.008 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.008 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.009 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.010 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.010 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.010 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.010 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.010 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "8c129b91-e256-405d-acd8-9881424b", {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.010 [XNIO-1 task-2] Rj8i3hq4Q3KFjSUsSqG2Jg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0da5f8a5","serviceName":"8c129b91-e256-405d-acd8-9881424b","serviceDesc":"0ddb7a14-abac-4d75-a077-64bb684d7cec","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.011 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0da5f8a5 +09:00:43.022 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.022 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.022 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.023 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.023 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.023 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.023 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.023 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG com.networknt.schema.TypeValidator debug - validate( "eade2cab-870a-4fd7-a57f-65c5707b", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.023 [XNIO-1 task-2] FNO_jastRpydxmPm_9VTdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.043 [XNIO-1 task-2] m4BCsV8cT-ST4Hxm_cF5eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.044 [XNIO-1 task-2] m4BCsV8cT-ST4Hxm_cF5eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.044 [XNIO-1 task-2] m4BCsV8cT-ST4Hxm_cF5eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.044 [XNIO-1 task-2] m4BCsV8cT-ST4Hxm_cF5eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.058 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.058 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.059 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.059 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.060 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.060 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.060 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.060 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG com.networknt.schema.TypeValidator debug - validate( "eade2cab-870a-4fd7-a57f-65c5707b", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.060 [XNIO-1 task-2] GxkdbfWzSDCiFeh-HkUNhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.078 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.079 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.079 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.080 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.080 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.080 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.080 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.080 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG com.networknt.schema.TypeValidator debug - validate( "241d4995-e2c3-4799-bcce-71f602bc", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.080 [XNIO-1 task-2] oR-_M9ODR7e_aTKIztTO8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.143 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ce746164-9352-48e3-b808-13f7beefc377 +09:00:43.148 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:00:43.165 [XNIO-1 task-2] NggTMQzWRjak_zJ4BDkEjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.166 [XNIO-1 task-2] NggTMQzWRjak_zJ4BDkEjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.166 [XNIO-1 task-2] NggTMQzWRjak_zJ4BDkEjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.194 [XNIO-1 task-2] tIKYzfm-TWCTXNnnX95BYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.194 [XNIO-1 task-2] tIKYzfm-TWCTXNnnX95BYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.195 [XNIO-1 task-2] tIKYzfm-TWCTXNnnX95BYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.195 [XNIO-1 task-2] tIKYzfm-TWCTXNnnX95BYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.230 [XNIO-1 task-2] 2c4j8L7FSZWfO6GCSSTvVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.231 [XNIO-1 task-2] 2c4j8L7FSZWfO6GCSSTvVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.231 [XNIO-1 task-2] 2c4j8L7FSZWfO6GCSSTvVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.250 [XNIO-1 task-2] ttL0puqYTe6J7mVN-rff7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0da5f8a5 +09:00:43.250 [XNIO-1 task-2] ttL0puqYTe6J7mVN-rff7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.250 [XNIO-1 task-2] ttL0puqYTe6J7mVN-rff7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.251 [XNIO-1 task-2] ttL0puqYTe6J7mVN-rff7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0da5f8a5 +09:00:43.253 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0da5f8a5 +09:00:43.281 [XNIO-1 task-2] miiTZkEcQhWfFtaYyS106w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4506e914, base path is set to: null +09:00:43.285 [XNIO-1 task-2] miiTZkEcQhWfFtaYyS106w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.285 [XNIO-1 task-2] miiTZkEcQhWfFtaYyS106w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.285 [XNIO-1 task-2] miiTZkEcQhWfFtaYyS106w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4506e914, base path is set to: null +09:00:43.285 [XNIO-1 task-2] miiTZkEcQhWfFtaYyS106w DEBUG com.networknt.schema.TypeValidator debug - validate( "4506e914", "4506e914", serviceId) +09:00:43.298 [XNIO-1 task-2] wAu8TNH2TqaeTO9CA4YUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c179418c +09:00:43.298 [XNIO-1 task-2] wAu8TNH2TqaeTO9CA4YUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.298 [XNIO-1 task-2] wAu8TNH2TqaeTO9CA4YUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.299 [XNIO-1 task-2] wAu8TNH2TqaeTO9CA4YUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c179418c +09:00:43.307 [XNIO-1 task-2] 856KyVLiRGWgnAWS6VkmEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.307 [XNIO-1 task-2] 856KyVLiRGWgnAWS6VkmEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.307 [XNIO-1 task-2] 856KyVLiRGWgnAWS6VkmEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.351 [XNIO-1 task-2] Cz4-6WwURR2dAX-f0DhUoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.351 [XNIO-1 task-2] Cz4-6WwURR2dAX-f0DhUoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.352 [XNIO-1 task-2] Cz4-6WwURR2dAX-f0DhUoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.367 [XNIO-1 task-2] xm-EWXQSSG60CZbjRqrKng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:43.368 [XNIO-1 task-2] xm-EWXQSSG60CZbjRqrKng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.368 [XNIO-1 task-2] xm-EWXQSSG60CZbjRqrKng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.368 [XNIO-1 task-2] xm-EWXQSSG60CZbjRqrKng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:43.368 [XNIO-1 task-2] xm-EWXQSSG60CZbjRqrKng DEBUG com.networknt.schema.TypeValidator debug - validate( "c179418c", "c179418c", serviceId) +09:00:43.373 [XNIO-1 task-2] LcaaLg7kR2yL6sGaH_3qDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e2ab9f80 +09:00:43.373 [XNIO-1 task-2] LcaaLg7kR2yL6sGaH_3qDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.373 [XNIO-1 task-2] LcaaLg7kR2yL6sGaH_3qDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.373 [XNIO-1 task-2] LcaaLg7kR2yL6sGaH_3qDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e2ab9f80 +09:00:43.378 [XNIO-1 task-2] VzF5ng14TB2MCB8uF8TZbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2ea128, base path is set to: null +09:00:43.378 [XNIO-1 task-2] VzF5ng14TB2MCB8uF8TZbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.378 [XNIO-1 task-2] VzF5ng14TB2MCB8uF8TZbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.378 [XNIO-1 task-2] VzF5ng14TB2MCB8uF8TZbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2ea128, base path is set to: null +09:00:43.378 [XNIO-1 task-2] VzF5ng14TB2MCB8uF8TZbw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca2ea128", "ca2ea128", serviceId) +09:00:43.386 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.386 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.387 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.387 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.387 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.387 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG com.networknt.schema.TypeValidator debug - validate( "8018d94c-1d0b-48bb-aa4a-67bfc85eca36", {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:43.388 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG com.networknt.schema.TypeValidator debug - validate( "ca2ea128", {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:43.388 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.388 [XNIO-1 task-2] vwhjPL0tTtqMDpspUzwsRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ca2ea128","serviceName":"441e8e48-df29-465c-9a8b-5a009bd7","serviceDesc":"8018d94c-1d0b-48bb-aa4a-67bfc85eca36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.401 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.401 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.402 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.402 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.402 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.402 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG com.networknt.schema.TypeValidator debug - validate( "9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d", {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:43.402 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG com.networknt.schema.TypeValidator debug - validate( "0488b210", {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:43.403 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.403 [XNIO-1 task-2] lIwbk6-uRXeo0MO4qnWtSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0488b210","serviceName":"e82372ab-8898-4389-ae37-3be56ba8","serviceDesc":"9de8fde6-7979-4d48-8ce3-ac3a50e0fe6d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.414 [XNIO-1 task-2] ZRVRiECGRR-9mBx_duVtpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.414 [XNIO-1 task-2] ZRVRiECGRR-9mBx_duVtpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.414 [XNIO-1 task-2] ZRVRiECGRR-9mBx_duVtpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.414 [XNIO-1 task-2] ZRVRiECGRR-9mBx_duVtpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.433 [XNIO-1 task-2] zerhohtSQrCL3i0jTXVONg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.433 [XNIO-1 task-2] zerhohtSQrCL3i0jTXVONg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.433 [XNIO-1 task-2] zerhohtSQrCL3i0jTXVONg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.434 [XNIO-1 task-2] zerhohtSQrCL3i0jTXVONg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.451 [XNIO-1 task-2] J4w3cy9ZTviF_w47nRLmbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.451 [XNIO-1 task-2] J4w3cy9ZTviF_w47nRLmbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.452 [XNIO-1 task-2] J4w3cy9ZTviF_w47nRLmbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.470 [XNIO-1 task-2] U_F6skJpS2i6cRPobDkEIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.470 [XNIO-1 task-2] U_F6skJpS2i6cRPobDkEIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.470 [XNIO-1 task-2] U_F6skJpS2i6cRPobDkEIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.471 [XNIO-1 task-2] U_F6skJpS2i6cRPobDkEIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.529 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f2a45f98-718b-41c1-97a0-4bd6420d5424 +09:00:43.541 [XNIO-1 task-2] t_hzi8EXR7WlN9-deUH--A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2ab9f80, base path is set to: null +09:00:43.541 [XNIO-1 task-2] t_hzi8EXR7WlN9-deUH--A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.541 [XNIO-1 task-2] t_hzi8EXR7WlN9-deUH--A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.541 [XNIO-1 task-2] t_hzi8EXR7WlN9-deUH--A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2ab9f80, base path is set to: null +09:00:43.542 [XNIO-1 task-2] t_hzi8EXR7WlN9-deUH--A DEBUG com.networknt.schema.TypeValidator debug - validate( "e2ab9f80", "e2ab9f80", serviceId) +09:00:43.550 [XNIO-1 task-2] aGzTyhH1TESn27HA-r48VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e2ab9f80 +09:00:43.550 [XNIO-1 task-2] aGzTyhH1TESn27HA-r48VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.550 [XNIO-1 task-2] aGzTyhH1TESn27HA-r48VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.550 [XNIO-1 task-2] aGzTyhH1TESn27HA-r48VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e2ab9f80 +09:00:43.554 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b389457b-bcf2-4efc-9f7c-0dbc46925f95 +09:00:43.556 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b389457b-bcf2-4efc-9f7c-0dbc46925f95 +09:00:43.568 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.568 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.569 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.569 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.569 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.569 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG com.networknt.schema.TypeValidator debug - validate( "3d79abfe-a392-4941-8193-bbeb50d6457c", {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:43.569 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG com.networknt.schema.TypeValidator debug - validate( "59fa7419", {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:43.569 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.569 [XNIO-1 task-2] GeZp5p2kQ2amudGlQCfj9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"59fa7419","serviceName":"945b68bc-cb02-4f25-8a42-93bec4f9","serviceDesc":"3d79abfe-a392-4941-8193-bbeb50d6457c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.587 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.588 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.588 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.589 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.589 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.589 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.589 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.589 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG com.networknt.schema.TypeValidator debug - validate( "8c3af0be-d60c-4797-b612-f855a7e0", {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.589 [XNIO-1 task-2] JgAeayg1QTyNZVldpJyKGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.606 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.606 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.607 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.607 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.607 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.607 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.608 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.608 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG com.networknt.schema.TypeValidator debug - validate( "241d4995-e2c3-4799-bcce-71f602bc", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.608 [XNIO-1 task-2] 8tHAIom1Sii2NzHg4RPygA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.629 [XNIO-1 task-2] xvmYHMWJRAiUT-Upxt_Z8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.629 [XNIO-1 task-2] xvmYHMWJRAiUT-Upxt_Z8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.629 [XNIO-1 task-2] xvmYHMWJRAiUT-Upxt_Z8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.629 [XNIO-1 task-2] xvmYHMWJRAiUT-Upxt_Z8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.657 [XNIO-1 task-2] J76cMMC3RmmnaQdFfUpo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7be29983, base path is set to: null +09:00:43.657 [XNIO-1 task-2] J76cMMC3RmmnaQdFfUpo4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.657 [XNIO-1 task-2] J76cMMC3RmmnaQdFfUpo4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.657 [XNIO-1 task-2] J76cMMC3RmmnaQdFfUpo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7be29983, base path is set to: null +09:00:43.658 [XNIO-1 task-2] J76cMMC3RmmnaQdFfUpo4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7be29983", "7be29983", serviceId) +09:00:43.669 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.670 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.670 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.670 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.671 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.671 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:43.671 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7be29983", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:43.671 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.671 [XNIO-1 task-2] ioxDmmIWQ0mVio8L3jJfPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.692 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.692 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.692 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.693 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.694 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.695 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f878576-89dd-42d4-8207-6cb31441d19a", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:43.695 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG com.networknt.schema.TypeValidator debug - validate( "a82050a0", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:43.695 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:43.695 [XNIO-1 task-2] 3sBO1b21REKtImDskFaFmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.717 [XNIO-1 task-2] TkZs2U49RoGxIz9FzpLGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/59fa7419 +09:00:43.717 [XNIO-1 task-2] TkZs2U49RoGxIz9FzpLGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.717 [XNIO-1 task-2] TkZs2U49RoGxIz9FzpLGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.718 [XNIO-1 task-2] TkZs2U49RoGxIz9FzpLGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/59fa7419 +09:00:43.764 [XNIO-1 task-2] N_BLWdnxRH-dM6D-1_nSeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a82050a0, base path is set to: null +09:00:43.766 [XNIO-1 task-2] N_BLWdnxRH-dM6D-1_nSeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.766 [XNIO-1 task-2] N_BLWdnxRH-dM6D-1_nSeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.766 [XNIO-1 task-2] N_BLWdnxRH-dM6D-1_nSeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a82050a0, base path is set to: null +09:00:43.767 [XNIO-1 task-2] N_BLWdnxRH-dM6D-1_nSeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a82050a0", "a82050a0", serviceId) +09:00:43.779 [XNIO-1 task-2] yllh-6qOQrSPKi8uTG1I-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a82050a0 +09:00:43.779 [XNIO-1 task-2] yllh-6qOQrSPKi8uTG1I-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.779 [XNIO-1 task-2] yllh-6qOQrSPKi8uTG1I-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.779 [XNIO-1 task-2] yllh-6qOQrSPKi8uTG1I-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a82050a0 +09:00:43.787 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.787 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.788 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.789 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.789 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.789 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.789 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.789 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "129f5d99-dd55-4431-9454-41a37b94", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.790 [XNIO-1 task-2] nKq3uH70SaC9NJUBACo0QQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.819 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.819 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.819 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.820 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.820 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.821 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:43.821 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:43.821 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG com.networknt.schema.TypeValidator debug - validate( "795ff25d-632c-4927-8213-75f01256", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:43.821 [XNIO-1 task-2] K8EEsiaqTj-xJEpysRHJng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:43.864 [XNIO-1 task-2] 2qBCFkGNTduP7bA-N1Cw-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0488b210, base path is set to: null +09:00:43.864 [XNIO-1 task-2] 2qBCFkGNTduP7bA-N1Cw-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.864 [XNIO-1 task-2] 2qBCFkGNTduP7bA-N1Cw-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.864 [XNIO-1 task-2] 2qBCFkGNTduP7bA-N1Cw-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0488b210, base path is set to: null +09:00:43.865 [XNIO-1 task-2] 2qBCFkGNTduP7bA-N1Cw-A DEBUG com.networknt.schema.TypeValidator debug - validate( "0488b210", "0488b210", serviceId) +09:00:43.869 [XNIO-1 task-2] tuqGoJMYRC2qDE3Z45DLyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0488b210 +09:00:43.869 [XNIO-1 task-2] tuqGoJMYRC2qDE3Z45DLyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.869 [XNIO-1 task-2] tuqGoJMYRC2qDE3Z45DLyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.869 [XNIO-1 task-2] tuqGoJMYRC2qDE3Z45DLyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0488b210 +09:00:43.874 [XNIO-1 task-2] HM35zOd9Ruu7ngHq73qO1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0488b210, base path is set to: null +09:00:43.874 [XNIO-1 task-2] HM35zOd9Ruu7ngHq73qO1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.874 [XNIO-1 task-2] HM35zOd9Ruu7ngHq73qO1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.874 [XNIO-1 task-2] HM35zOd9Ruu7ngHq73qO1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0488b210, base path is set to: null +09:00:43.874 [XNIO-1 task-2] HM35zOd9Ruu7ngHq73qO1g DEBUG com.networknt.schema.TypeValidator debug - validate( "0488b210", "0488b210", serviceId) +09:00:43.884 [XNIO-1 task-2] IggpYovCRwCtM_RxtHiDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.884 [XNIO-1 task-2] IggpYovCRwCtM_RxtHiDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.884 [XNIO-1 task-2] IggpYovCRwCtM_RxtHiDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.885 [XNIO-1 task-2] IggpYovCRwCtM_RxtHiDxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.902 [XNIO-1 task-2] k0ajFzmDQ62kut2Yz3EORg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.902 [XNIO-1 task-2] k0ajFzmDQ62kut2Yz3EORg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.902 [XNIO-1 task-2] k0ajFzmDQ62kut2Yz3EORg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.903 [XNIO-1 task-2] k0ajFzmDQ62kut2Yz3EORg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.917 [XNIO-1 task-2] w_rMWyn8RfmI5YnFO5haFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0488b210 +09:00:43.918 [XNIO-1 task-2] w_rMWyn8RfmI5YnFO5haFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.918 [XNIO-1 task-2] w_rMWyn8RfmI5YnFO5haFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.918 [XNIO-1 task-2] w_rMWyn8RfmI5YnFO5haFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0488b210 +09:00:43.942 [XNIO-1 task-2] SG_2XIAhTUCo8UqlL6ebHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.942 [XNIO-1 task-2] SG_2XIAhTUCo8UqlL6ebHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.942 [XNIO-1 task-2] SG_2XIAhTUCo8UqlL6ebHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:43.943 [XNIO-1 task-2] SG_2XIAhTUCo8UqlL6ebHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.955 [XNIO-1 task-2] cnQ3-tywRFWtThx0rkmc6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2ea128, base path is set to: null +09:00:43.955 [XNIO-1 task-2] cnQ3-tywRFWtThx0rkmc6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.955 [XNIO-1 task-2] cnQ3-tywRFWtThx0rkmc6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.956 [XNIO-1 task-2] cnQ3-tywRFWtThx0rkmc6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2ea128, base path is set to: null +09:00:43.956 [XNIO-1 task-2] cnQ3-tywRFWtThx0rkmc6A DEBUG com.networknt.schema.TypeValidator debug - validate( "ca2ea128", "ca2ea128", serviceId) +09:00:43.964 [XNIO-1 task-2] dIGwvbztTGOBbVEQSOsHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.964 [XNIO-1 task-2] dIGwvbztTGOBbVEQSOsHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.965 [XNIO-1 task-2] dIGwvbztTGOBbVEQSOsHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.965 [XNIO-1 task-2] dIGwvbztTGOBbVEQSOsHng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.984 [XNIO-1 task-2] PPYk39iBST-IL35oI2NFGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a82050a0 +09:00:43.984 [XNIO-1 task-2] PPYk39iBST-IL35oI2NFGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:43.984 [XNIO-1 task-2] PPYk39iBST-IL35oI2NFGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:43.984 [XNIO-1 task-2] PPYk39iBST-IL35oI2NFGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a82050a0 +09:00:43.994 [XNIO-1 task-2] nhNg-pF8QPayLZlm9GuN0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2ea128, base path is set to: null +09:00:43.994 [XNIO-1 task-2] nhNg-pF8QPayLZlm9GuN0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:43.994 [XNIO-1 task-2] nhNg-pF8QPayLZlm9GuN0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:43.994 [XNIO-1 task-2] nhNg-pF8QPayLZlm9GuN0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2ea128, base path is set to: null +09:00:43.995 [XNIO-1 task-2] nhNg-pF8QPayLZlm9GuN0A DEBUG com.networknt.schema.TypeValidator debug - validate( "ca2ea128", "ca2ea128", serviceId) +09:00:44.016 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.016 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.017 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.017 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.017 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.017 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f878576-89dd-42d4-8207-6cb31441d19a", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.017 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a82050a0", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.018 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.018 [XNIO-1 task-2] 2ZK6PqfeQ12Cm5DA_h5OFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.037 [XNIO-1 task-2] 9F8NU4MkS9Kz94OJj77_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d3a2fe19 +09:00:44.038 [XNIO-1 task-2] 9F8NU4MkS9Kz94OJj77_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.038 [XNIO-1 task-2] 9F8NU4MkS9Kz94OJj77_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:44.038 [XNIO-1 task-2] 9F8NU4MkS9Kz94OJj77_7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d3a2fe19 +09:00:44.046 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.046 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.046 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.047 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.047 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.047 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.047 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.047 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG com.networknt.schema.TypeValidator debug - validate( "8c3af0be-d60c-4797-b612-f855a7e0", {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:44.047 [XNIO-1 task-2] UoTElG6kS8W5RqTK1LJd8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3a2fe19","serviceName":"8c3af0be-d60c-4797-b612-f855a7e0","serviceDesc":"fd5fdb97-3296-4443-ac28-db110376ca51","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.065 [XNIO-1 task-2] U25QgmzSTzmuFAV_cCFdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.065 [XNIO-1 task-2] U25QgmzSTzmuFAV_cCFdmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.065 [XNIO-1 task-2] U25QgmzSTzmuFAV_cCFdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.065 [XNIO-1 task-2] U25QgmzSTzmuFAV_cCFdmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.080 [XNIO-1 task-2] Lj6Np7p8QSuumMiI3g5WHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.081 [XNIO-1 task-2] Lj6Np7p8QSuumMiI3g5WHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.081 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8c2f022b +09:00:44.081 [XNIO-1 task-2] Lj6Np7p8QSuumMiI3g5WHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.081 [XNIO-1 task-2] Lj6Np7p8QSuumMiI3g5WHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.084 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8c2f022b +09:00:44.095 [XNIO-1 task-2] uzUBmR_hTfmYSoNgiCJbCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.095 [XNIO-1 task-2] uzUBmR_hTfmYSoNgiCJbCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.096 [XNIO-1 task-2] uzUBmR_hTfmYSoNgiCJbCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.097 [XNIO-1 task-2] uzUBmR_hTfmYSoNgiCJbCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.111 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.112 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.112 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.113 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.113 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.113 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.113 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.113 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG com.networknt.schema.TypeValidator debug - validate( "eade2cab-870a-4fd7-a57f-65c5707b", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:44.113 [XNIO-1 task-2] 1mQify_UReOsGC40qgkARw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.123 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.124 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.124 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.125 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.126 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.126 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.126 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.126 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG com.networknt.schema.TypeValidator debug - validate( "241d4995-e2c3-4799-bcce-71f602bc", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:44.126 [XNIO-1 task-2] mpYjo5hsTx2ox91vhu6pDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.128 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0ebecf6b-4229-4609-9e71-c98c31138e5f +09:00:44.142 [XNIO-1 task-2] qMjL-llTRRqI97yfMC-5Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:44.143 [XNIO-1 task-2] qMjL-llTRRqI97yfMC-5Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.143 [XNIO-1 task-2] qMjL-llTRRqI97yfMC-5Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.143 [XNIO-1 task-2] qMjL-llTRRqI97yfMC-5Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:44.143 [XNIO-1 task-2] qMjL-llTRRqI97yfMC-5Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "c179418c", "c179418c", serviceId) +09:00:44.151 [XNIO-1 task-2] tfB9TkruSsOt06XkQssz8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.152 [XNIO-1 task-2] tfB9TkruSsOt06XkQssz8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.152 [XNIO-1 task-2] tfB9TkruSsOt06XkQssz8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.163 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0c88815d-6ee9-413b-8da2-32a5ba390f7d +09:00:44.168 [XNIO-1 task-2] CxEd1c1cRYCIE7WZ7th7Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.168 [XNIO-1 task-2] CxEd1c1cRYCIE7WZ7th7Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.169 [XNIO-1 task-2] CxEd1c1cRYCIE7WZ7th7Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.182 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f2a45f98-718b-41c1-97a0-4bd6420d5424 +09:00:44.183 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.183 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.184 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.184 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.184 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.186 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG com.networknt.schema.TypeValidator debug - validate( "035e5509-62da-409e-ac70-7bdb4bf094d7", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.186 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG com.networknt.schema.TypeValidator debug - validate( "c179418c", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.186 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.186 [XNIO-1 task-2] oPTvm-wISQ6pP6-eVcaOBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.209 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.209 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.210 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.210 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.210 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.210 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f878576-89dd-42d4-8207-6cb31441d19a", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.211 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "a82050a0", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.211 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.211 [XNIO-1 task-2] 3qNzj_wwRjGF8a0TjPrqzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a82050a0","serviceName":"129f5d99-dd55-4431-9454-41a37b94","serviceDesc":"5f878576-89dd-42d4-8207-6cb31441d19a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.223 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.223 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.224 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.225 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.225 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.225 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG com.networknt.schema.TypeValidator debug - validate( "c4e1ab02-7fae-4fb6-b00e-fdb995fe7000", {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.225 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG com.networknt.schema.TypeValidator debug - validate( "d365744d", {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.225 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.225 [XNIO-1 task-2] sV4Q_Z6xSSSSXFeEofGTEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d365744d","serviceName":"84e7e416-c460-429a-8f9a-71807030","serviceDesc":"c4e1ab02-7fae-4fb6-b00e-fdb995fe7000","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.239 [XNIO-1 task-2] HLa403PlRA-HOJEQU7ro7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.239 [XNIO-1 task-2] HLa403PlRA-HOJEQU7ro7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.239 [XNIO-1 task-2] HLa403PlRA-HOJEQU7ro7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.239 [XNIO-1 task-2] HLa403PlRA-HOJEQU7ro7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.260 [XNIO-1 task-2] Njn7cvFvTHyiN4vXrVfiag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.260 [XNIO-1 task-2] Njn7cvFvTHyiN4vXrVfiag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.260 [XNIO-1 task-2] Njn7cvFvTHyiN4vXrVfiag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.296 [XNIO-1 task-2] 9-G-VIvUSl-5NZLqpgVIlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.296 [XNIO-1 task-2] 9-G-VIvUSl-5NZLqpgVIlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.297 [XNIO-1 task-2] 9-G-VIvUSl-5NZLqpgVIlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.322 [XNIO-1 task-2] IsvF-r8bSKCjoUyyp4vyrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c179418c +09:00:44.322 [XNIO-1 task-2] IsvF-r8bSKCjoUyyp4vyrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.322 [XNIO-1 task-2] IsvF-r8bSKCjoUyyp4vyrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:44.322 [XNIO-1 task-2] IsvF-r8bSKCjoUyyp4vyrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c179418c +09:00:44.326 [XNIO-1 task-2] jTCUVXLeQMiujWvRjC0G9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d365744d, base path is set to: null +09:00:44.327 [XNIO-1 task-2] jTCUVXLeQMiujWvRjC0G9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.327 [XNIO-1 task-2] jTCUVXLeQMiujWvRjC0G9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.327 [XNIO-1 task-2] jTCUVXLeQMiujWvRjC0G9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d365744d, base path is set to: null +09:00:44.327 [XNIO-1 task-2] jTCUVXLeQMiujWvRjC0G9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d365744d", "d365744d", serviceId) +09:00:44.343 [XNIO-1 task-2] wEq3mPnuSq2zJWYZHRnagg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.343 [XNIO-1 task-2] wEq3mPnuSq2zJWYZHRnagg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.344 [XNIO-1 task-2] wEq3mPnuSq2zJWYZHRnagg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.346 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b2f2aff4 +09:00:44.363 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.364 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.364 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.364 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.364 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.365 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.365 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:44.365 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "241d4995-e2c3-4799-bcce-71f602bc", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:44.365 [XNIO-1 task-2] FTgrcCjkSFeETDVAwiCQcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.376 [XNIO-1 task-2] LBTqOuOGSPizZjRABtLlaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.377 [XNIO-1 task-2] LBTqOuOGSPizZjRABtLlaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.377 [XNIO-1 task-2] LBTqOuOGSPizZjRABtLlaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.400 [XNIO-1 task-2] agAi9LvwSyKeuimRUhAANA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.406 [XNIO-1 task-2] agAi9LvwSyKeuimRUhAANA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.406 [XNIO-1 task-2] agAi9LvwSyKeuimRUhAANA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.407 [XNIO-1 task-2] agAi9LvwSyKeuimRUhAANA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.426 [XNIO-1 task-2] e32Nw6J6R1CaEpXoSB0xMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d3a2fe19, base path is set to: null +09:00:44.427 [XNIO-1 task-2] e32Nw6J6R1CaEpXoSB0xMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.427 [XNIO-1 task-2] e32Nw6J6R1CaEpXoSB0xMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.427 [XNIO-1 task-2] e32Nw6J6R1CaEpXoSB0xMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d3a2fe19, base path is set to: null +09:00:44.428 [XNIO-1 task-2] e32Nw6J6R1CaEpXoSB0xMA DEBUG com.networknt.schema.TypeValidator debug - validate( "d3a2fe19", "d3a2fe19", serviceId) +09:00:44.445 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.445 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.445 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.446 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.446 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.446 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG com.networknt.schema.TypeValidator debug - validate( "49713327-d0e9-45b9-850f-a3494eb7704f", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.446 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG com.networknt.schema.TypeValidator debug - validate( "84fa5125", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.446 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.446 [XNIO-1 task-2] EMp7sbCITQO_sn82cyW_CA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.480 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:29588fd2 +09:00:44.484 [XNIO-1 task-2] c6Nw_Y75QfisX5xwq9Vm9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ef63ec8e, base path is set to: null +09:00:44.484 [XNIO-1 task-2] c6Nw_Y75QfisX5xwq9Vm9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.484 [XNIO-1 task-2] c6Nw_Y75QfisX5xwq9Vm9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.484 [XNIO-1 task-2] c6Nw_Y75QfisX5xwq9Vm9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ef63ec8e, base path is set to: null +09:00:44.485 [XNIO-1 task-2] c6Nw_Y75QfisX5xwq9Vm9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ef63ec8e", "ef63ec8e", serviceId) +09:00:44.508 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.508 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.508 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.512 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.512 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.512 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG com.networknt.schema.TypeValidator debug - validate( "49713327-d0e9-45b9-850f-a3494eb7704f", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.512 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG com.networknt.schema.TypeValidator debug - validate( "84fa5125", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.512 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.512 [XNIO-1 task-2] AtE1BEqdQSq32b3yQvPv6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.529 [XNIO-1 task-2] -oN5gwcASweVJqtx7aMgEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.529 [XNIO-1 task-2] -oN5gwcASweVJqtx7aMgEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.530 [XNIO-1 task-2] -oN5gwcASweVJqtx7aMgEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.530 [XNIO-1 task-2] -oN5gwcASweVJqtx7aMgEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.558 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:881fe0d7 +09:00:44.604 [XNIO-1 task-2] aGwWxly3T82_QA8zk3J5aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.605 [XNIO-1 task-2] aGwWxly3T82_QA8zk3J5aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.605 [XNIO-1 task-2] aGwWxly3T82_QA8zk3J5aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.605 [XNIO-1 task-2] aGwWxly3T82_QA8zk3J5aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.625 [XNIO-1 task-2] QziydbulSHSbKm8zdc37yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.626 [XNIO-1 task-2] QziydbulSHSbKm8zdc37yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.626 [XNIO-1 task-2] QziydbulSHSbKm8zdc37yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.644 [XNIO-1 task-2] B4AB7vjHSBqDOtDOhkgd5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.645 [XNIO-1 task-2] B4AB7vjHSBqDOtDOhkgd5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.645 [XNIO-1 task-2] B4AB7vjHSBqDOtDOhkgd5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.645 [XNIO-1 task-2] B4AB7vjHSBqDOtDOhkgd5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.664 [XNIO-1 task-2] w-7L9OSST1qJHXxr8P4hZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4952fece, base path is set to: null +09:00:44.664 [XNIO-1 task-2] w-7L9OSST1qJHXxr8P4hZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.664 [XNIO-1 task-2] w-7L9OSST1qJHXxr8P4hZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.665 [XNIO-1 task-2] w-7L9OSST1qJHXxr8P4hZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4952fece, base path is set to: null +09:00:44.665 [XNIO-1 task-2] w-7L9OSST1qJHXxr8P4hZg DEBUG com.networknt.schema.TypeValidator debug - validate( "4952fece", "4952fece", serviceId) +09:00:44.690 [XNIO-1 task-2] 6KLTYFgUQVGZlvEWUfAjpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.690 [XNIO-1 task-2] 6KLTYFgUQVGZlvEWUfAjpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.690 [XNIO-1 task-2] 6KLTYFgUQVGZlvEWUfAjpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.693 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b5746a0b +09:00:44.720 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:881fe0d7 +09:00:44.725 [XNIO-1 task-2] KusyxK1kQMOegrdiuKtpvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a82050a0, base path is set to: null +09:00:44.725 [XNIO-1 task-2] KusyxK1kQMOegrdiuKtpvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.725 [XNIO-1 task-2] KusyxK1kQMOegrdiuKtpvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.725 [XNIO-1 task-2] KusyxK1kQMOegrdiuKtpvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a82050a0, base path is set to: null +09:00:44.726 [XNIO-1 task-2] KusyxK1kQMOegrdiuKtpvg DEBUG com.networknt.schema.TypeValidator debug - validate( "a82050a0", "a82050a0", serviceId) +09:00:44.735 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:816ff242-2cc7-42b8-984c-3ddd7121e7b6 +09:00:44.755 [XNIO-1 task-2] TR8z_SK6RwCiXgzcxd6Mlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f4fb3ae, base path is set to: null +09:00:44.755 [XNIO-1 task-2] TR8z_SK6RwCiXgzcxd6Mlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.755 [XNIO-1 task-2] TR8z_SK6RwCiXgzcxd6Mlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.755 [XNIO-1 task-2] TR8z_SK6RwCiXgzcxd6Mlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f4fb3ae, base path is set to: null +09:00:44.755 [XNIO-1 task-2] TR8z_SK6RwCiXgzcxd6Mlw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4fb3ae", "0f4fb3ae", serviceId) +09:00:44.768 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.768 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.769 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.770 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.770 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.770 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG com.networknt.schema.TypeValidator debug - validate( "0a1ee90a-fb83-406b-b3c9-9a93d290f8fe", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.770 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4fb3ae", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.770 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.770 [XNIO-1 task-2] jI0PkyzzRlmhS7kJr20cog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.783 [XNIO-1 task-2] HvXskozlTkCSjmOSMhceCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c179418c +09:00:44.783 [XNIO-1 task-2] HvXskozlTkCSjmOSMhceCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.783 [XNIO-1 task-2] HvXskozlTkCSjmOSMhceCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:44.784 [XNIO-1 task-2] HvXskozlTkCSjmOSMhceCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c179418c +09:00:44.786 [XNIO-1 task-2] JqhPiyKjT_unoUTCitiD5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b2f2aff4, base path is set to: null +09:00:44.787 [XNIO-1 task-2] JqhPiyKjT_unoUTCitiD5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.788 [XNIO-1 task-2] JqhPiyKjT_unoUTCitiD5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.788 [XNIO-1 task-2] JqhPiyKjT_unoUTCitiD5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b2f2aff4, base path is set to: null +09:00:44.788 [XNIO-1 task-2] JqhPiyKjT_unoUTCitiD5w DEBUG com.networknt.schema.TypeValidator debug - validate( "b2f2aff4", "b2f2aff4", serviceId) +09:00:44.789 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:881fe0d7 +09:00:44.798 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.798 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.799 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.799 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.799 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.800 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG com.networknt.schema.TypeValidator debug - validate( "035e5509-62da-409e-ac70-7bdb4bf094d7", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.800 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG com.networknt.schema.TypeValidator debug - validate( "c179418c", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.800 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.800 [XNIO-1 task-2] oubYw33pRX-HLMWftiIyiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.812 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.812 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.813 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.813 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.813 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.814 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG com.networknt.schema.TypeValidator debug - validate( "e251a65f-7574-4ae5-a6f2-68f639ee9e68", {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.814 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG com.networknt.schema.TypeValidator debug - validate( "b2f2aff4", {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.814 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.814 [XNIO-1 task-2] zZeowGDoR0iUOnpk7CP4nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b2f2aff4","serviceName":"ae17f3c8-0f9b-4c92-8dbf-b8617098","serviceDesc":"e251a65f-7574-4ae5-a6f2-68f639ee9e68","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.814 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b2f2aff4 +09:00:44.826 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.826 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.826 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.827 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.827 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:44.827 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bf8ddb7a-9931-4c39-9fba-35d48519617d", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:44.827 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b7ecea5d", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:44.827 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:44.827 [XNIO-1 task-2] PuhwzU3zTeiL-mrRACM_6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7ecea5d","serviceName":"241d4995-e2c3-4799-bcce-71f602bc","serviceDesc":"bf8ddb7a-9931-4c39-9fba-35d48519617d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:44.835 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:881fe0d7 +09:00:44.841 [XNIO-1 task-2] FDN1LCoITFKNJ5VX5WBNYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b7ecea5d +09:00:44.841 [XNIO-1 task-2] FDN1LCoITFKNJ5VX5WBNYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.841 [XNIO-1 task-2] FDN1LCoITFKNJ5VX5WBNYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:44.841 [XNIO-1 task-2] FDN1LCoITFKNJ5VX5WBNYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b7ecea5d +09:00:44.853 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:881fe0d7 +09:00:44.856 [XNIO-1 task-2] 4mYNIM9dTXih0sA-MDTg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.857 [XNIO-1 task-2] 4mYNIM9dTXih0sA-MDTg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.858 [XNIO-1 task-2] 4mYNIM9dTXih0sA-MDTg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.870 [XNIO-1 task-2] WX0DjqncSYiyjmpiS7p3_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/058fe646, base path is set to: null +09:00:44.870 [XNIO-1 task-2] WX0DjqncSYiyjmpiS7p3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/058fe646 +09:00:44.870 [XNIO-1 task-2] WX0DjqncSYiyjmpiS7p3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.870 [XNIO-1 task-2] WX0DjqncSYiyjmpiS7p3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:44.870 [XNIO-1 task-2] WX0DjqncSYiyjmpiS7p3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/058fe646 +09:00:44.884 [XNIO-1 task-2] 7PyGwxFET7CZkQAWro-hjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.884 [XNIO-1 task-2] 7PyGwxFET7CZkQAWro-hjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.884 [XNIO-1 task-2] 7PyGwxFET7CZkQAWro-hjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:44.885 [XNIO-1 task-2] 7PyGwxFET7CZkQAWro-hjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.898 [XNIO-1 task-2] aPL7NBKHTaCzxfjt7S5qyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b5746a0b, base path is set to: null +09:00:44.898 [XNIO-1 task-2] aPL7NBKHTaCzxfjt7S5qyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.898 [XNIO-1 task-2] aPL7NBKHTaCzxfjt7S5qyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.899 [XNIO-1 task-2] aPL7NBKHTaCzxfjt7S5qyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b5746a0b, base path is set to: null +09:00:44.899 [XNIO-1 task-2] aPL7NBKHTaCzxfjt7S5qyg DEBUG com.networknt.schema.TypeValidator debug - validate( "b5746a0b", "b5746a0b", serviceId) +09:00:44.904 [XNIO-1 task-2] D5Vi1HCnRtOUgudUJpPdqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.904 [XNIO-1 task-2] D5Vi1HCnRtOUgudUJpPdqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.905 [XNIO-1 task-2] D5Vi1HCnRtOUgudUJpPdqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.913 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b88ef743 +09:00:44.923 [XNIO-1 task-2] eQQkNznqTLuiC-2oISavBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b5746a0b, base path is set to: null +09:00:44.923 [XNIO-1 task-2] eQQkNznqTLuiC-2oISavBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.923 [XNIO-1 task-2] eQQkNznqTLuiC-2oISavBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.923 [XNIO-1 task-2] eQQkNznqTLuiC-2oISavBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b5746a0b, base path is set to: null +09:00:44.924 [XNIO-1 task-2] eQQkNznqTLuiC-2oISavBw DEBUG com.networknt.schema.TypeValidator debug - validate( "b5746a0b", "b5746a0b", serviceId) +09:00:44.928 [XNIO-1 task-2] ECyL5EKkT7GSAwB9jf_H7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.928 [XNIO-1 task-2] ECyL5EKkT7GSAwB9jf_H7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.929 [XNIO-1 task-2] ECyL5EKkT7GSAwB9jf_H7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.948 [XNIO-1 task-2] ZJpfTqgVTjWxSJdRNRwC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b2f2aff4 +09:00:44.948 [XNIO-1 task-2] ZJpfTqgVTjWxSJdRNRwC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.948 [XNIO-1 task-2] ZJpfTqgVTjWxSJdRNRwC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:44.948 [XNIO-1 task-2] ZJpfTqgVTjWxSJdRNRwC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b2f2aff4 +09:00:44.951 [XNIO-1 task-2] lH3x_HKiTzqGbb0Il7AXiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/85be5103, base path is set to: null +09:00:44.953 [XNIO-1 task-2] lH3x_HKiTzqGbb0Il7AXiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.953 [XNIO-1 task-2] lH3x_HKiTzqGbb0Il7AXiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.953 [XNIO-1 task-2] lH3x_HKiTzqGbb0Il7AXiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/85be5103, base path is set to: null +09:00:44.953 [XNIO-1 task-2] lH3x_HKiTzqGbb0Il7AXiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "85be5103", "85be5103", serviceId) +09:00:44.963 [XNIO-1 task-2] Fx4jJKzqTmuFIQR4zf1e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7be29983 +09:00:44.963 [XNIO-1 task-2] Fx4jJKzqTmuFIQR4zf1e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:44.963 [XNIO-1 task-2] Fx4jJKzqTmuFIQR4zf1e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:44.964 [XNIO-1 task-2] Fx4jJKzqTmuFIQR4zf1e7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7be29983 +09:00:44.989 [XNIO-1 task-2] cvIUL3OqR8yb0ZG-WRTCJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b5746a0b, base path is set to: null +09:00:44.990 [XNIO-1 task-2] cvIUL3OqR8yb0ZG-WRTCJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:44.990 [XNIO-1 task-2] cvIUL3OqR8yb0ZG-WRTCJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:44.990 [XNIO-1 task-2] cvIUL3OqR8yb0ZG-WRTCJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b5746a0b, base path is set to: null +09:00:44.992 [XNIO-1 task-2] cvIUL3OqR8yb0ZG-WRTCJw DEBUG com.networknt.schema.TypeValidator debug - validate( "b5746a0b", "b5746a0b", serviceId) +09:00:44.995 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b5746a0b +09:00:45.012 [XNIO-1 task-2] C_AekGkqRbezfHh3PtWr0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.012 [XNIO-1 task-2] C_AekGkqRbezfHh3PtWr0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.012 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ef4792a1-5086-425e-af50-4fe3553f71d7 +09:00:45.012 [XNIO-1 task-2] C_AekGkqRbezfHh3PtWr0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.012 [XNIO-1 task-2] C_AekGkqRbezfHh3PtWr0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.044 [XNIO-1 task-2] JVsGH363TPSlg5-QByCqww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.044 [XNIO-1 task-2] JVsGH363TPSlg5-QByCqww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.044 [XNIO-1 task-2] JVsGH363TPSlg5-QByCqww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.059 [XNIO-1 task-2] LArDgqffQ6-eP-2eJRWzbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b2f2aff4 +09:00:45.059 [XNIO-1 task-2] LArDgqffQ6-eP-2eJRWzbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.059 [XNIO-1 task-2] LArDgqffQ6-eP-2eJRWzbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.059 [XNIO-1 task-2] LArDgqffQ6-eP-2eJRWzbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b2f2aff4 +09:00:45.059 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b2f2aff4 +09:00:45.069 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.069 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.070 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.070 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.071 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.071 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.071 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.071 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG com.networknt.schema.TypeValidator debug - validate( "eade2cab-870a-4fd7-a57f-65c5707b", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:45.071 [XNIO-1 task-2] c_vb_s0qRZCSsXJ_VYK5tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.073 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b88ef743 +09:00:45.074 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:58a44d98-265b-401c-a63a-02de293e464d +09:00:45.092 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.092 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.093 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.095 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.095 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.095 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.095 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.095 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG com.networknt.schema.TypeValidator debug - validate( "57e84915-683a-4c46-a90b-10881ddd", {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:45.095 [XNIO-1 task-2] E327MxYISCCZxfjt40NELw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"22ddc2b2","serviceName":"57e84915-683a-4c46-a90b-10881ddd","serviceDesc":"4137b7ce-829f-4d8b-9889-2138ac50234c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.097 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:58a44d98-265b-401c-a63a-02de293e464d +09:00:45.126 [XNIO-1 task-2] Dhg3Nb20R--w1lK5tU5WEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/22ddc2b2, base path is set to: null +09:00:45.126 [XNIO-1 task-2] Dhg3Nb20R--w1lK5tU5WEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.126 [XNIO-1 task-2] Dhg3Nb20R--w1lK5tU5WEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.126 [XNIO-1 task-2] Dhg3Nb20R--w1lK5tU5WEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/22ddc2b2, base path is set to: null +09:00:45.126 [XNIO-1 task-2] Dhg3Nb20R--w1lK5tU5WEA DEBUG com.networknt.schema.TypeValidator debug - validate( "22ddc2b2", "22ddc2b2", serviceId) +09:00:45.149 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.149 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.149 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.151 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.151 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.151 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG com.networknt.schema.TypeValidator debug - validate( "49713327-d0e9-45b9-850f-a3494eb7704f", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:45.151 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84fa5125", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:45.151 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.151 [XNIO-1 task-2] 6I4Mt6ooQym9NPL5n8uftQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84fa5125","serviceName":"fbfee3cb-917c-46b2-be3a-15baf124","serviceDesc":"49713327-d0e9-45b9-850f-a3494eb7704f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.164 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.164 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.164 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.165 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.165 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.165 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a1ee90a-fb83-406b-b3c9-9a93d290f8fe", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:45.165 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4fb3ae", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:45.165 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.166 [XNIO-1 task-2] xY9MmEEuROeRyw5QlXGgeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f4fb3ae","serviceName":"203e8ba8-aeb9-4c26-8f26-58fb2455","serviceDesc":"0a1ee90a-fb83-406b-b3c9-9a93d290f8fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.176 [XNIO-1 task-2] mk-4ndBySISz-jZ0b8sScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.176 [XNIO-1 task-2] mk-4ndBySISz-jZ0b8sScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.176 [XNIO-1 task-2] mk-4ndBySISz-jZ0b8sScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.177 [XNIO-1 task-2] mk-4ndBySISz-jZ0b8sScA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.190 [XNIO-1 task-2] EnCAY-CvQhipSpblHvTpgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.190 [XNIO-1 task-2] EnCAY-CvQhipSpblHvTpgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.191 [XNIO-1 task-2] EnCAY-CvQhipSpblHvTpgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.191 [XNIO-1 task-2] EnCAY-CvQhipSpblHvTpgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.214 [XNIO-1 task-2] 2KAgTRCLSr-bQJd009T-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a82050a0 +09:00:45.214 [XNIO-1 task-2] 2KAgTRCLSr-bQJd009T-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.214 [XNIO-1 task-2] 2KAgTRCLSr-bQJd009T-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.214 [XNIO-1 task-2] 2KAgTRCLSr-bQJd009T-lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a82050a0 +09:00:45.237 [XNIO-1 task-2] 2zcCKKKfRum--k7ulXpwBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.238 [XNIO-1 task-2] 2zcCKKKfRum--k7ulXpwBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.238 [XNIO-1 task-2] 2zcCKKKfRum--k7ulXpwBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.238 [XNIO-1 task-2] 2zcCKKKfRum--k7ulXpwBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.250 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.250 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.250 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.251 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.251 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.252 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.252 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.254 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG com.networknt.schema.TypeValidator debug - validate( "e5e58d81-4eed-4e0a-8bec-7566cba6", {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:45.254 [XNIO-1 task-2] lfN41j1UQpqm2ajWibjwKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b0633b6f","serviceName":"e5e58d81-4eed-4e0a-8bec-7566cba6","serviceDesc":"d7571505-eef6-4fba-be0c-0397bffd218c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.255 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2a53f689-6d73-4199-acc0-ec5607a2848a +09:00:45.258 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2a53f689-6d73-4199-acc0-ec5607a2848a +09:00:45.279 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.279 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.280 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.280 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.280 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.280 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:45.282 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG com.networknt.schema.TypeValidator debug - validate( "7be29983", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:45.282 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.282 [XNIO-1 task-2] 8Rx7eeJOTcKoMoOnbQnGcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7be29983","serviceName":"eade2cab-870a-4fd7-a57f-65c5707b","serviceDesc":"dc3e0376-f5f7-4a4a-b85c-80dc2d1a922c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.307 [XNIO-1 task-2] a0P1V4yNSnKLWV_YcUOGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84fa5125 +09:00:45.307 [XNIO-1 task-2] a0P1V4yNSnKLWV_YcUOGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.307 [XNIO-1 task-2] a0P1V4yNSnKLWV_YcUOGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.307 [XNIO-1 task-2] a0P1V4yNSnKLWV_YcUOGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84fa5125 +09:00:45.333 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:feedc418 +09:00:45.338 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:feedc418 +09:00:45.338 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.338 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.339 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.339 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.339 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.339 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "28839468-60c9-40c7-89ef-2fc52f2ed1e3", {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:45.339 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "73f4a61a", {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:45.339 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.340 [XNIO-1 task-2] UKbtouW-Td-c5cSpnMCJkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73f4a61a","serviceName":"0713fd0d-de8c-45e4-890a-4b6b58d3","serviceDesc":"28839468-60c9-40c7-89ef-2fc52f2ed1e3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.351 [XNIO-1 task-2] tBn0iO-nSfS7AZKb2fI0MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/73f4a61a +09:00:45.352 [XNIO-1 task-2] tBn0iO-nSfS7AZKb2fI0MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.352 [XNIO-1 task-2] tBn0iO-nSfS7AZKb2fI0MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.352 [XNIO-1 task-2] tBn0iO-nSfS7AZKb2fI0MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/73f4a61a +09:00:45.358 [XNIO-1 task-2] aLy0FfhgQ42Ki1FYjMI_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/73f4a61a, base path is set to: null +09:00:45.359 [XNIO-1 task-2] aLy0FfhgQ42Ki1FYjMI_GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.359 [XNIO-1 task-2] aLy0FfhgQ42Ki1FYjMI_GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.359 [XNIO-1 task-2] aLy0FfhgQ42Ki1FYjMI_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/73f4a61a, base path is set to: null +09:00:45.359 [XNIO-1 task-2] aLy0FfhgQ42Ki1FYjMI_GA DEBUG com.networknt.schema.TypeValidator debug - validate( "73f4a61a", "73f4a61a", serviceId) +09:00:45.380 [XNIO-1 task-2] zHezHHAbSRSa0ultZGcRlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.380 [XNIO-1 task-2] zHezHHAbSRSa0ultZGcRlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.381 [XNIO-1 task-2] zHezHHAbSRSa0ultZGcRlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.402 [XNIO-1 task-2] 0qnMriSeRm6tvVhQBVZm2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7be29983, base path is set to: null +09:00:45.402 [XNIO-1 task-2] 0qnMriSeRm6tvVhQBVZm2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.402 [XNIO-1 task-2] 0qnMriSeRm6tvVhQBVZm2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.402 [XNIO-1 task-2] 0qnMriSeRm6tvVhQBVZm2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7be29983, base path is set to: null +09:00:45.402 [XNIO-1 task-2] 0qnMriSeRm6tvVhQBVZm2A DEBUG com.networknt.schema.TypeValidator debug - validate( "7be29983", "7be29983", serviceId) +09:00:45.418 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5bd548c3-05f8-44b6-b84c-330f275e7b59 +09:00:45.425 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.425 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.425 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.426 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.426 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.426 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.426 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.426 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG com.networknt.schema.TypeValidator debug - validate( "795ff25d-632c-4927-8213-75f01256", {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:45.426 [XNIO-1 task-2] iVMvUu0bQWq1MnKQ0JiL4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c179418c","serviceName":"795ff25d-632c-4927-8213-75f01256","serviceDesc":"035e5509-62da-409e-ac70-7bdb4bf094d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.445 [XNIO-1 task-2] UtQxgRhETc6aQ7rqsSBlRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.445 [XNIO-1 task-2] UtQxgRhETc6aQ7rqsSBlRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.445 [XNIO-1 task-2] UtQxgRhETc6aQ7rqsSBlRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.445 [XNIO-1 task-2] UtQxgRhETc6aQ7rqsSBlRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.458 [XNIO-1 task-2] 81obseWDQZitezhTotUebQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:45.458 [XNIO-1 task-2] 81obseWDQZitezhTotUebQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.459 [XNIO-1 task-2] 81obseWDQZitezhTotUebQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.459 [XNIO-1 task-2] 81obseWDQZitezhTotUebQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c179418c, base path is set to: null +09:00:45.459 [XNIO-1 task-2] 81obseWDQZitezhTotUebQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c179418c", "c179418c", serviceId) +09:00:45.474 [XNIO-1 task-2] yU-NyEvzRX66RoIVi2LBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f4fb3ae +09:00:45.474 [XNIO-1 task-2] yU-NyEvzRX66RoIVi2LBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.474 [XNIO-1 task-2] yU-NyEvzRX66RoIVi2LBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.474 [XNIO-1 task-2] yU-NyEvzRX66RoIVi2LBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f4fb3ae +09:00:45.506 [XNIO-1 task-2] Dna6aee6TcCycsn59S5fzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.506 [XNIO-1 task-2] Dna6aee6TcCycsn59S5fzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.506 [XNIO-1 task-2] Dna6aee6TcCycsn59S5fzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.533 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.533 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.533 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.534 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.534 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.534 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.534 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:45.534 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb7ee19-5f1e-4639-8d8b-64210189", {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:45.534 [XNIO-1 task-2] b9RmtIgqRZazmYK5m8gTDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.548 [XNIO-1 task-2] jG0wA-xQTKefcefDM63kdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/00a2e320, base path is set to: null +09:00:45.548 [XNIO-1 task-2] jG0wA-xQTKefcefDM63kdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.548 [XNIO-1 task-2] jG0wA-xQTKefcefDM63kdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.548 [XNIO-1 task-2] jG0wA-xQTKefcefDM63kdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/00a2e320, base path is set to: null +09:00:45.549 [XNIO-1 task-2] jG0wA-xQTKefcefDM63kdw DEBUG com.networknt.schema.TypeValidator debug - validate( "00a2e320", "00a2e320", serviceId) +09:00:45.567 [XNIO-1 task-2] 1srJh52iRbW2w_TRXJ3c4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.567 [XNIO-1 task-2] 1srJh52iRbW2w_TRXJ3c4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.567 [XNIO-1 task-2] 1srJh52iRbW2w_TRXJ3c4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.567 [XNIO-1 task-2] 1srJh52iRbW2w_TRXJ3c4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.596 [XNIO-1 task-2] bVfTzHKPRhSedTJZic2R7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.596 [XNIO-1 task-2] bVfTzHKPRhSedTJZic2R7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.596 [XNIO-1 task-2] bVfTzHKPRhSedTJZic2R7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.596 [XNIO-1 task-2] bVfTzHKPRhSedTJZic2R7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.615 [XNIO-1 task-2] 69i3hjGcSqGV156CTnAGGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b0633b6f +09:00:45.615 [XNIO-1 task-2] 69i3hjGcSqGV156CTnAGGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.615 [XNIO-1 task-2] 69i3hjGcSqGV156CTnAGGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.616 [XNIO-1 task-2] 69i3hjGcSqGV156CTnAGGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b0633b6f +09:00:45.636 [XNIO-1 task-2] 6emrnfgWTSuY93pHRBR0og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.636 [XNIO-1 task-2] 6emrnfgWTSuY93pHRBR0og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.636 [XNIO-1 task-2] 6emrnfgWTSuY93pHRBR0og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.657 [XNIO-1 task-2] NGjn3PtjRWi3HVCaQ-A3aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36f9c114, base path is set to: null +09:00:45.657 [XNIO-1 task-2] NGjn3PtjRWi3HVCaQ-A3aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.657 [XNIO-1 task-2] NGjn3PtjRWi3HVCaQ-A3aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.658 [XNIO-1 task-2] NGjn3PtjRWi3HVCaQ-A3aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36f9c114, base path is set to: null +09:00:45.658 [XNIO-1 task-2] NGjn3PtjRWi3HVCaQ-A3aw DEBUG com.networknt.schema.TypeValidator debug - validate( "36f9c114", "36f9c114", serviceId) +09:00:45.678 [XNIO-1 task-2] ylbHJN58SjGipPF0M-C5bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.678 [XNIO-1 task-2] ylbHJN58SjGipPF0M-C5bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.678 [XNIO-1 task-2] ylbHJN58SjGipPF0M-C5bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.725 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.726 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.726 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.727 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.727 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.727 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21b94e71-5ab7-4f20-a6a3-36a5100871ea", {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:45.727 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "58d1e3e1", {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:45.727 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.728 [XNIO-1 task-2] jvoC8GsWRZqrDoWFjrs9OQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58d1e3e1","serviceName":"9cb7ee19-5f1e-4639-8d8b-64210189","serviceDesc":"21b94e71-5ab7-4f20-a6a3-36a5100871ea","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.744 [XNIO-1 task-2] 0JDbWom2QOyxmJqNcar3lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.744 [XNIO-1 task-2] 0JDbWom2QOyxmJqNcar3lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.745 [XNIO-1 task-2] 0JDbWom2QOyxmJqNcar3lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.762 [XNIO-1 task-2] MslMWdZIREKQLMcyn4LWmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.762 [XNIO-1 task-2] MslMWdZIREKQLMcyn4LWmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.763 [XNIO-1 task-2] MslMWdZIREKQLMcyn4LWmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.763 [XNIO-1 task-2] MslMWdZIREKQLMcyn4LWmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.781 [XNIO-1 task-2] 1Q4ywQyKTZSo3x2_2IiW4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.781 [XNIO-1 task-2] 1Q4ywQyKTZSo3x2_2IiW4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.782 [XNIO-1 task-2] 1Q4ywQyKTZSo3x2_2IiW4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.783 [XNIO-1 task-2] 1Q4ywQyKTZSo3x2_2IiW4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.807 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3c1f828b-e1c0-46d9-8af1-755e7bdfcdfa +09:00:45.807 [XNIO-1 task-2] 9-QKXl0gRZ6GbSZefM24tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.808 [XNIO-1 task-2] 9-QKXl0gRZ6GbSZefM24tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.808 [XNIO-1 task-2] 9-QKXl0gRZ6GbSZefM24tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.809 [XNIO-1 task-2] 9-QKXl0gRZ6GbSZefM24tw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.831 [XNIO-1 task-2] 81kpQEwbR-S9yDapyuIsNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44c19875, base path is set to: null +09:00:45.831 [XNIO-1 task-2] 81kpQEwbR-S9yDapyuIsNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.831 [XNIO-1 task-2] 81kpQEwbR-S9yDapyuIsNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.831 [XNIO-1 task-2] 81kpQEwbR-S9yDapyuIsNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44c19875, base path is set to: null +09:00:45.832 [XNIO-1 task-2] 81kpQEwbR-S9yDapyuIsNw DEBUG com.networknt.schema.TypeValidator debug - validate( "44c19875", "44c19875", serviceId) +09:00:45.848 [XNIO-1 task-2] yZNm7E4iSnyyp7r2XAV5kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.848 [XNIO-1 task-2] yZNm7E4iSnyyp7r2XAV5kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.849 [XNIO-1 task-2] yZNm7E4iSnyyp7r2XAV5kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.865 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.865 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.865 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.866 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.867 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.867 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "edb83b9c-518e-44bf-a317-47467680e0fa", {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:45.867 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3f431f6b", {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:45.867 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.867 [XNIO-1 task-2] d4zhIoktTHeoloWVNVim8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f431f6b","serviceName":"d88eba68-2a2b-475f-868c-33c7eb0b","serviceDesc":"edb83b9c-518e-44bf-a317-47467680e0fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.878 [XNIO-1 task-2] lTPM0a85RnOpAMb57um0Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58d1e3e1 +09:00:45.878 [XNIO-1 task-2] lTPM0a85RnOpAMb57um0Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.878 [XNIO-1 task-2] lTPM0a85RnOpAMb57um0Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.878 [XNIO-1 task-2] lTPM0a85RnOpAMb57um0Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58d1e3e1 +09:00:45.885 [XNIO-1 task-2] vAKL4JgHQYuEMRBeTGfYlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.885 [XNIO-1 task-2] vAKL4JgHQYuEMRBeTGfYlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.885 [XNIO-1 task-2] vAKL4JgHQYuEMRBeTGfYlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.886 [XNIO-1 task-2] vAKL4JgHQYuEMRBeTGfYlw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.901 [XNIO-1 task-2] vzcal85fQROLO3uultGQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58d1e3e1, base path is set to: null +09:00:45.901 [XNIO-1 task-2] vzcal85fQROLO3uultGQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.901 [XNIO-1 task-2] vzcal85fQROLO3uultGQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.901 [XNIO-1 task-2] vzcal85fQROLO3uultGQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58d1e3e1, base path is set to: null +09:00:45.902 [XNIO-1 task-2] vzcal85fQROLO3uultGQXw DEBUG com.networknt.schema.TypeValidator debug - validate( "58d1e3e1", "58d1e3e1", serviceId) +09:00:45.916 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e0ec26a1-f56c-4387-a0cc-66182aacd2c8 +09:00:45.917 [XNIO-1 task-2] FdJlPAytTZ-UKx_GWLxe8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/509a86c2, base path is set to: null +09:00:45.917 [XNIO-1 task-2] FdJlPAytTZ-UKx_GWLxe8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.917 [XNIO-1 task-2] FdJlPAytTZ-UKx_GWLxe8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.917 [XNIO-1 task-2] FdJlPAytTZ-UKx_GWLxe8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/509a86c2, base path is set to: null +09:00:45.917 [XNIO-1 task-2] FdJlPAytTZ-UKx_GWLxe8g DEBUG com.networknt.schema.TypeValidator debug - validate( "509a86c2", "509a86c2", serviceId) +09:00:45.921 [XNIO-1 task-2] ll-cx--7Tr6LVXxBv5VaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f431f6b +09:00:45.921 [XNIO-1 task-2] ll-cx--7Tr6LVXxBv5VaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.921 [XNIO-1 task-2] ll-cx--7Tr6LVXxBv5VaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.921 [XNIO-1 task-2] ll-cx--7Tr6LVXxBv5VaCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f431f6b +09:00:45.927 [XNIO-1 task-2] UaV5jPm8RG6lZynJVlkbSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.927 [XNIO-1 task-2] UaV5jPm8RG6lZynJVlkbSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.928 [XNIO-1 task-2] UaV5jPm8RG6lZynJVlkbSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:45.928 [XNIO-1 task-2] UaV5jPm8RG6lZynJVlkbSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.937 [XNIO-1 task-2] DfYlOsJLSKCMUmpdEmQkVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f431f6b, base path is set to: null +09:00:45.937 [XNIO-1 task-2] DfYlOsJLSKCMUmpdEmQkVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.937 [XNIO-1 task-2] DfYlOsJLSKCMUmpdEmQkVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.937 [XNIO-1 task-2] DfYlOsJLSKCMUmpdEmQkVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f431f6b, base path is set to: null +09:00:45.938 [XNIO-1 task-2] DfYlOsJLSKCMUmpdEmQkVw DEBUG com.networknt.schema.TypeValidator debug - validate( "3f431f6b", "3f431f6b", serviceId) +09:00:45.942 [XNIO-1 task-2] zoUY1SA8QiGiW-pOfDwXsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.942 [XNIO-1 task-2] zoUY1SA8QiGiW-pOfDwXsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.942 [XNIO-1 task-2] zoUY1SA8QiGiW-pOfDwXsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.960 [XNIO-1 task-2] 2UIoHEZrQ_SY5xG4CvIgTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/509a86c2 +09:00:45.960 [XNIO-1 task-2] 2UIoHEZrQ_SY5xG4CvIgTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.961 [XNIO-1 task-2] 2UIoHEZrQ_SY5xG4CvIgTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:45.961 [XNIO-1 task-2] 2UIoHEZrQ_SY5xG4CvIgTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/509a86c2 +09:00:45.964 [XNIO-1 task-2] bM2PTBujQpq7pPB2fWeoNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f431f6b, base path is set to: null +09:00:45.965 [XNIO-1 task-2] bM2PTBujQpq7pPB2fWeoNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:45.965 [XNIO-1 task-2] bM2PTBujQpq7pPB2fWeoNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:45.965 [XNIO-1 task-2] bM2PTBujQpq7pPB2fWeoNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f431f6b, base path is set to: null +09:00:45.965 [XNIO-1 task-2] bM2PTBujQpq7pPB2fWeoNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f431f6b", "3f431f6b", serviceId) +09:00:45.980 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.980 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.980 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:45.981 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:45.981 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:45.981 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "b4bf591a-686e-43ed-83d1-ab9ef3246cf0", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:45.981 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "592e0518", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:45.981 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:45.981 [XNIO-1 task-2] eGKrPc3-REyvi6GFXQt3EA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.002 [XNIO-1 task-2] AGd7gVqlTEmUCTE1ipxzhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.002 [XNIO-1 task-2] AGd7gVqlTEmUCTE1ipxzhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.002 [XNIO-1 task-2] AGd7gVqlTEmUCTE1ipxzhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.025 [XNIO-1 task-2] yWUlE9_wTj-sD-9vW687vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/509a86c2, base path is set to: null +09:00:46.025 [XNIO-1 task-2] yWUlE9_wTj-sD-9vW687vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.025 [XNIO-1 task-2] yWUlE9_wTj-sD-9vW687vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:46.025 [XNIO-1 task-2] yWUlE9_wTj-sD-9vW687vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/509a86c2, base path is set to: null +09:00:46.027 [XNIO-1 task-2] yWUlE9_wTj-sD-9vW687vw DEBUG com.networknt.schema.TypeValidator debug - validate( "509a86c2", "509a86c2", serviceId) +09:00:46.041 [XNIO-1 task-2] BrfI9-U8QiWwAm79U0RHNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.041 [XNIO-1 task-2] BrfI9-U8QiWwAm79U0RHNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.041 [XNIO-1 task-2] BrfI9-U8QiWwAm79U0RHNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.062 [XNIO-1 task-2] zGTo1XfSSR-9cLK1fOMUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.062 [XNIO-1 task-2] zGTo1XfSSR-9cLK1fOMUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.063 [XNIO-1 task-2] zGTo1XfSSR-9cLK1fOMUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.063 [XNIO-1 task-2] zGTo1XfSSR-9cLK1fOMUug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.075 [XNIO-1 task-2] 043p2zcRRo6fnwAR4PYB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/592e0518 +09:00:46.075 [XNIO-1 task-2] 043p2zcRRo6fnwAR4PYB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.076 [XNIO-1 task-2] 043p2zcRRo6fnwAR4PYB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:46.076 [XNIO-1 task-2] 043p2zcRRo6fnwAR4PYB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/592e0518 +09:00:46.082 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e30a3dc8-2051-4db5-9a9e-55bc987c2dfb +09:00:46.082 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:58331058-5321-41bd-8d07-ebe84828f713 +09:00:46.084 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.084 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.085 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.085 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e30a3dc8-2051-4db5-9a9e-55bc987c2dfb +09:00:46.085 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.085 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:46.085 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4bf591a-686e-43ed-83d1-ab9ef3246cf0", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:00:46.086 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG com.networknt.schema.TypeValidator debug - validate( "592e0518", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:00:46.086 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:00:46.086 [XNIO-1 task-2] 7E3xxIv1Sj-KXJcmOFWacQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.105 [XNIO-1 task-2] 5sjVevIxQ4y9OppMODhe_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.105 [XNIO-1 task-2] 5sjVevIxQ4y9OppMODhe_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.105 [XNIO-1 task-2] 5sjVevIxQ4y9OppMODhe_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.154 [XNIO-1 task-2] f3CwJjRDRk-t7jE9uwDb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/82a3fc98 +09:00:46.154 [XNIO-1 task-2] f3CwJjRDRk-t7jE9uwDb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.154 [XNIO-1 task-2] f3CwJjRDRk-t7jE9uwDb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:46.154 [XNIO-1 task-2] f3CwJjRDRk-t7jE9uwDb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/82a3fc98 +09:00:46.171 [XNIO-1 task-2] ToD57tCHR3u8bMA8EWAI4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8257c3b8, base path is set to: null +09:00:46.171 [XNIO-1 task-2] ToD57tCHR3u8bMA8EWAI4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.171 [XNIO-1 task-2] ToD57tCHR3u8bMA8EWAI4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:46.171 [XNIO-1 task-2] ToD57tCHR3u8bMA8EWAI4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8257c3b8, base path is set to: null +09:00:46.172 [XNIO-1 task-2] ToD57tCHR3u8bMA8EWAI4w DEBUG com.networknt.schema.TypeValidator debug - validate( "8257c3b8", "8257c3b8", serviceId) +09:00:46.203 [XNIO-1 task-2] EgPT9dWXQvuLHLEAmhidWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f63e6744 +09:00:46.203 [XNIO-1 task-2] EgPT9dWXQvuLHLEAmhidWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.203 [XNIO-1 task-2] EgPT9dWXQvuLHLEAmhidWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:46.203 [XNIO-1 task-2] EgPT9dWXQvuLHLEAmhidWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f63e6744 +09:00:46.207 [XNIO-1 task-2] g55X2iUjQ8y5EoR30ngoMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.207 [XNIO-1 task-2] g55X2iUjQ8y5EoR30ngoMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.208 [XNIO-1 task-2] g55X2iUjQ8y5EoR30ngoMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.209 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bafa638c-8eaa-4eee-87df-b18c0fa1447d +09:00:46.212 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bafa638c-8eaa-4eee-87df-b18c0fa1447d +09:00:46.229 [XNIO-1 task-2] t0Iwki8pTsCraqKKjWBu_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.229 [XNIO-1 task-2] t0Iwki8pTsCraqKKjWBu_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.229 [XNIO-1 task-2] t0Iwki8pTsCraqKKjWBu_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.230 [XNIO-1 task-2] t0Iwki8pTsCraqKKjWBu_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.247 [XNIO-1 task-2] JXBSMvm7S5KKzdMnftQg5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.247 [XNIO-1 task-2] JXBSMvm7S5KKzdMnftQg5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.247 [XNIO-1 task-2] JXBSMvm7S5KKzdMnftQg5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.265 [XNIO-1 task-2] bQGKILUNQDqqGEr0cTo5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.266 [XNIO-1 task-2] bQGKILUNQDqqGEr0cTo5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.267 [XNIO-1 task-2] bQGKILUNQDqqGEr0cTo5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.268 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1d7cb7f4 +09:00:46.284 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.284 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.285 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.285 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.286 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.286 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:46.287 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.287 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG com.networknt.schema.TypeValidator debug - validate( "5d52c51e-8604-4146-a456-a6bfea2e", {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:46.287 [XNIO-1 task-2] oFbtimQ3S4mabqiWzjE98A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"788caacc","serviceName":"5d52c51e-8604-4146-a456-a6bfea2e","serviceDesc":"47ec1df4-7a51-4622-9061-bbd998ebaa36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.304 [XNIO-1 task-2] -0iAlzOKQ6O9omNC9_uIBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.304 [XNIO-1 task-2] -0iAlzOKQ6O9omNC9_uIBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.304 [XNIO-1 task-2] -0iAlzOKQ6O9omNC9_uIBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.317 [XNIO-1 task-2] 4R9qmJ9VRT-kHP_GAoF32g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.318 [XNIO-1 task-2] 4R9qmJ9VRT-kHP_GAoF32g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.318 [XNIO-1 task-2] 4R9qmJ9VRT-kHP_GAoF32g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.343 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3fdd7434-72f8-4d36-a866-d809fe30d9e5 +09:00:46.345 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.346 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.347 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.347 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.347 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.348 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:46.348 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.348 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG com.networknt.schema.TypeValidator debug - validate( "b5471db7-876c-4bff-8c7a-7228e25c", {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:46.348 [XNIO-1 task-2] AMsoJakfSRO2rQx4cMukTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.370 [XNIO-1 task-2] W8ukQsQuSNW5R3Quv_Q-Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d7cb7f4, base path is set to: null +09:00:46.370 [XNIO-1 task-2] W8ukQsQuSNW5R3Quv_Q-Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.370 [XNIO-1 task-2] W8ukQsQuSNW5R3Quv_Q-Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:46.370 [XNIO-1 task-2] W8ukQsQuSNW5R3Quv_Q-Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d7cb7f4, base path is set to: null +09:00:46.371 [XNIO-1 task-2] W8ukQsQuSNW5R3Quv_Q-Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "1d7cb7f4", "1d7cb7f4", serviceId) +09:00:46.374 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1d7cb7f4 +09:00:46.384 [XNIO-1 task-2] MVIShQJXQQOhpnt3zcL1Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f63e6744 +09:00:46.384 [XNIO-1 task-2] MVIShQJXQQOhpnt3zcL1Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.384 [XNIO-1 task-2] MVIShQJXQQOhpnt3zcL1Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:46.384 [XNIO-1 task-2] MVIShQJXQQOhpnt3zcL1Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f63e6744 +09:00:46.397 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.398 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.398 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.399 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.399 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.399 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:46.399 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.399 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG com.networknt.schema.TypeValidator debug - validate( "cdbae72f-c54f-4c00-8bfe-fb97ebef", {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:46.399 [XNIO-1 task-2] qPNXW71tRbqvWiERkzH24Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"592e0518","serviceName":"cdbae72f-c54f-4c00-8bfe-fb97ebef","serviceDesc":"b4bf591a-686e-43ed-83d1-ab9ef3246cf0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.418 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.418 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.418 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.419 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.419 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.419 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:00:46.419 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:00:46.419 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG com.networknt.schema.TypeValidator debug - validate( "b5471db7-876c-4bff-8c7a-7228e25c", {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:00:46.419 [XNIO-1 task-2] 5_-VifZNSzqGZS9mA4oOYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0e9099a","serviceName":"b5471db7-876c-4bff-8c7a-7228e25c","serviceDesc":"b12cb277-85e6-4fa6-aa69-2a7031074bb2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:00:46.435 [XNIO-1 task-2] XkHtMqZNTF2iDU1AahRxFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.435 [XNIO-1 task-2] XkHtMqZNTF2iDU1AahRxFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.436 [XNIO-1 task-2] XkHtMqZNTF2iDU1AahRxFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.436 [XNIO-1 task-2] XkHtMqZNTF2iDU1AahRxFw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.448 [XNIO-1 task-2] pxqpxLFdQV6YW4Nx5rXwVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8d9a540c, base path is set to: null +09:00:46.449 [XNIO-1 task-2] pxqpxLFdQV6YW4Nx5rXwVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.450 [XNIO-1 task-2] pxqpxLFdQV6YW4Nx5rXwVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:46.450 [XNIO-1 task-2] pxqpxLFdQV6YW4Nx5rXwVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8d9a540c, base path is set to: null +09:00:46.450 [XNIO-1 task-2] pxqpxLFdQV6YW4Nx5rXwVA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d9a540c", "8d9a540c", serviceId) +09:00:46.457 [XNIO-1 task-2] ac1Ndfc9RFqlV2EdhvjEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.457 [XNIO-1 task-2] ac1Ndfc9RFqlV2EdhvjEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.458 [XNIO-1 task-2] ac1Ndfc9RFqlV2EdhvjEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.460 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:bdb28a40 +09:00:46.470 [XNIO-1 task-2] M4szejulQ2yT-oAZ4QBHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.471 [XNIO-1 task-2] M4szejulQ2yT-oAZ4QBHqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.471 [XNIO-1 task-2] M4szejulQ2yT-oAZ4QBHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.471 [XNIO-1 task-2] M4szejulQ2yT-oAZ4QBHqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.480 [XNIO-1 task-2] 2SnmckLZQX-G_GXoIWo0lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5c18415, base path is set to: null +09:00:46.480 [XNIO-1 task-2] 2SnmckLZQX-G_GXoIWo0lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.480 [XNIO-1 task-2] 2SnmckLZQX-G_GXoIWo0lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:46.480 [XNIO-1 task-2] 2SnmckLZQX-G_GXoIWo0lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5c18415, base path is set to: null +09:00:46.480 [XNIO-1 task-2] 2SnmckLZQX-G_GXoIWo0lg DEBUG com.networknt.schema.TypeValidator debug - validate( "c5c18415", "c5c18415", serviceId) +09:00:46.489 [XNIO-1 task-2] 1XvLDEBHQgCWSg5G-__eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.489 [XNIO-1 task-2] 1XvLDEBHQgCWSg5G-__eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.490 [XNIO-1 task-2] 1XvLDEBHQgCWSg5G-__eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.502 [XNIO-1 task-2] Onoou5neQLCj3P1IpE4LuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.503 [XNIO-1 task-2] Onoou5neQLCj3P1IpE4LuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.503 [XNIO-1 task-2] Onoou5neQLCj3P1IpE4LuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.504 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5f4bcb96 +09:00:46.513 [XNIO-1 task-2] XWXVpVBHQze0EaQgHl2qbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788caacc, base path is set to: null +09:00:46.517 [XNIO-1 task-2] XWXVpVBHQze0EaQgHl2qbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.517 [XNIO-1 task-2] XWXVpVBHQze0EaQgHl2qbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:46.517 [XNIO-1 task-2] XWXVpVBHQze0EaQgHl2qbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788caacc, base path is set to: null +09:00:46.518 [XNIO-1 task-2] XWXVpVBHQze0EaQgHl2qbg DEBUG com.networknt.schema.TypeValidator debug - validate( "788caacc", "788caacc", serviceId) +09:00:46.524 [XNIO-1 task-2] CoiLXzDvRkelI6pQZAvCxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5c18415 +09:00:46.524 [XNIO-1 task-2] CoiLXzDvRkelI6pQZAvCxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.524 [XNIO-1 task-2] CoiLXzDvRkelI6pQZAvCxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:00:46.524 [XNIO-1 task-2] CoiLXzDvRkelI6pQZAvCxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5c18415 +09:00:46.539 [XNIO-1 task-2] KLU1icQ-S6ORZ-_qDMrjZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.539 [XNIO-1 task-2] KLU1icQ-S6ORZ-_qDMrjZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.539 [XNIO-1 task-2] KLU1icQ-S6ORZ-_qDMrjZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:00:46.553 [XNIO-1 task-2] k-cY675ET4KaeS54hkdUgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bdb28a40, base path is set to: null +09:00:46.553 [XNIO-1 task-2] k-cY675ET4KaeS54hkdUgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:00:46.553 [XNIO-1 task-2] k-cY675ET4KaeS54hkdUgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:00:46.553 [XNIO-1 task-2] k-cY675ET4KaeS54hkdUgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bdb28a40, base path is set to: null +09:00:46.554 [XNIO-1 task-2] k-cY675ET4KaeS54hkdUgg DEBUG com.networknt.schema.TypeValidator debug - validate( "bdb28a40", "bdb28a40", serviceId) +09:00:46.556 [XNIO-1 task-2] fTPxqzLASriBQ8SdNZfp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.556 [XNIO-1 task-2] fTPxqzLASriBQ8SdNZfp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.557 [XNIO-1 task-2] fTPxqzLASriBQ8SdNZfp7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.567 [XNIO-1 task-2] IDPDOEVxQ-632TqunpuBsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.568 [XNIO-1 task-2] IDPDOEVxQ-632TqunpuBsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.568 [XNIO-1 task-2] IDPDOEVxQ-632TqunpuBsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:00:46.568 [XNIO-1 task-2] IDPDOEVxQ-632TqunpuBsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bdb28a40","serviceName":"9af2397e-94dc-4c83-8fb4-364816ce","serviceDesc":"1b067b8d-65b9-49d3-bda7-fe82caef829a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bdb28a40","serviceName":"9af2397e-94dc-4c83-8fb4-364816ce","serviceDesc":"1b067b8d-65b9-49d3-bda7-fe82caef829a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) diff --git a/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..fc7afec --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3553 @@ +09:00:41.115 [XNIO-1 task-5] hP4M2S4LRW62YbXIBKkWZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.115 [XNIO-1 task-5] hP4M2S4LRW62YbXIBKkWZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.116 [XNIO-1 task-5] hP4M2S4LRW62YbXIBKkWZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.117 [XNIO-1 task-5] hP4M2S4LRW62YbXIBKkWZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = whjoJo1HTQCMMqq5wiCCeg redirectUri = http://localhost:8080/authorization +09:00:41.126 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:13d56ee4-9d63-446c-a74e-39eb9801a273 +09:00:41.128 [XNIO-1 task-5] hP4M2S4LRW62YbXIBKkWZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:41.130 [XNIO-1 task-6] KZyUUs1oRvag06o6_2TCvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.130 [XNIO-1 task-5] hP4M2S4LRW62YbXIBKkWZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.132 [XNIO-1 task-6] KZyUUs1oRvag06o6_2TCvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.148 [XNIO-1 task-6] KZyUUs1oRvag06o6_2TCvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", authorization) +09:00:41.147 [XNIO-1 task-4] 6HJBESkaQEeGo83dIRxtnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.182 [XNIO-1 task-5] _mpJTsIyTs6Jb3sAnlFmBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.182 [XNIO-1 task-5] _mpJTsIyTs6Jb3sAnlFmBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.185 [XNIO-1 task-5] _mpJTsIyTs6Jb3sAnlFmBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.182 [XNIO-1 task-6] KZyUUs1oRvag06o6_2TCvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.186 [XNIO-1 task-5] _mpJTsIyTs6Jb3sAnlFmBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 81d38707-d60b-44cd-8511-a7cd16ecd6f4 scope = null +09:00:41.202 [XNIO-1 task-4] P1zPJVWRQo2jUTu7TlNAFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.202 [XNIO-1 task-4] P1zPJVWRQo2jUTu7TlNAFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.203 [XNIO-1 task-4] P1zPJVWRQo2jUTu7TlNAFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.204 [XNIO-1 task-4] P1zPJVWRQo2jUTu7TlNAFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.205 [XNIO-1 task-5] _mpJTsIyTs6Jb3sAnlFmBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.211 [XNIO-1 task-4] P1zPJVWRQo2jUTu7TlNAFg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.222 [XNIO-1 task-4] cT8p2gV7RMOYKoAPWFvBFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.222 [XNIO-1 task-4] cT8p2gV7RMOYKoAPWFvBFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.223 [XNIO-1 task-4] cT8p2gV7RMOYKoAPWFvBFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.224 [XNIO-1 task-4] cT8p2gV7RMOYKoAPWFvBFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", authorization) +09:00:41.224 [XNIO-1 task-6] VymuS1BmSc2rFmNAhMIYqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.224 [XNIO-1 task-6] VymuS1BmSc2rFmNAhMIYqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.225 [XNIO-1 task-6] VymuS1BmSc2rFmNAhMIYqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.225 [XNIO-1 task-6] VymuS1BmSc2rFmNAhMIYqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6RSXb4E3ThaEcoa9UGXCwQ redirectUri = http://localhost:8080/authorization +09:00:41.234 [XNIO-1 task-4] cT8p2gV7RMOYKoAPWFvBFw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.244 [XNIO-1 task-4] u9A7Ze6HRWeC-RBIREYbLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.244 [XNIO-1 task-4] u9A7Ze6HRWeC-RBIREYbLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.244 [XNIO-1 task-6] VymuS1BmSc2rFmNAhMIYqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.244 [XNIO-1 task-4] u9A7Ze6HRWeC-RBIREYbLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.245 [XNIO-1 task-4] u9A7Ze6HRWeC-RBIREYbLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", authorization) +09:00:41.250 [XNIO-1 task-4] u9A7Ze6HRWeC-RBIREYbLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.261 [XNIO-1 task-4] 4M0qla9JSfeyB12tb5tjSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.261 [XNIO-1 task-4] 4M0qla9JSfeyB12tb5tjSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.262 [XNIO-1 task-4] 4M0qla9JSfeyB12tb5tjSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.263 [XNIO-1 task-4] 4M0qla9JSfeyB12tb5tjSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", authorization) +09:00:41.263 [XNIO-1 task-5] gn4STk6gRBCGXrnsRAhUZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.267 [XNIO-1 task-5] gn4STk6gRBCGXrnsRAhUZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.268 [XNIO-1 task-5] gn4STk6gRBCGXrnsRAhUZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.269 [XNIO-1 task-5] gn4STk6gRBCGXrnsRAhUZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.277 [XNIO-1 task-4] 4M0qla9JSfeyB12tb5tjSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.285 [XNIO-1 task-5] gn4STk6gRBCGXrnsRAhUZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:41.286 [XNIO-1 task-5] gn4STk6gRBCGXrnsRAhUZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.298 [XNIO-1 task-4] 6amsYJzuSHyXfTYTJs0xtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.298 [XNIO-1 task-4] 6amsYJzuSHyXfTYTJs0xtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.299 [XNIO-1 task-4] 6amsYJzuSHyXfTYTJs0xtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.300 [XNIO-1 task-4] 6amsYJzuSHyXfTYTJs0xtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.307 [XNIO-1 task-4] 6amsYJzuSHyXfTYTJs0xtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.315 [XNIO-1 task-4] VXa74CANQ9qEoVWSJSJmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.315 [XNIO-1 task-4] VXa74CANQ9qEoVWSJSJmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.316 [XNIO-1 task-4] VXa74CANQ9qEoVWSJSJmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.317 [XNIO-1 task-4] VXa74CANQ9qEoVWSJSJmMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.323 [XNIO-1 task-4] VXa74CANQ9qEoVWSJSJmMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.329 [XNIO-1 task-4] w4ziSYCXQhmqcbR2KFBAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.329 [XNIO-1 task-4] w4ziSYCXQhmqcbR2KFBAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.330 [XNIO-1 task-4] w4ziSYCXQhmqcbR2KFBAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.330 [XNIO-1 task-4] w4ziSYCXQhmqcbR2KFBAPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.336 [XNIO-1 task-4] w4ziSYCXQhmqcbR2KFBAPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.342 [XNIO-1 task-4] EycM97BrQLSvrrjfzGTzSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.342 [XNIO-1 task-4] EycM97BrQLSvrrjfzGTzSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.342 [XNIO-1 task-4] EycM97BrQLSvrrjfzGTzSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.343 [XNIO-1 task-4] EycM97BrQLSvrrjfzGTzSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.349 [XNIO-1 task-4] EycM97BrQLSvrrjfzGTzSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.360 [XNIO-1 task-4] NQ31dThIQDyPf1X7Il0xEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.360 [XNIO-1 task-4] NQ31dThIQDyPf1X7Il0xEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.361 [XNIO-1 task-4] NQ31dThIQDyPf1X7Il0xEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.365 [XNIO-1 task-4] NQ31dThIQDyPf1X7Il0xEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.371 [XNIO-1 task-4] NQ31dThIQDyPf1X7Il0xEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.376 [XNIO-1 task-4] YHQmakV_RJGkDdrY5JF3qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.376 [XNIO-1 task-4] YHQmakV_RJGkDdrY5JF3qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.377 [XNIO-1 task-4] YHQmakV_RJGkDdrY5JF3qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.377 [XNIO-1 task-4] YHQmakV_RJGkDdrY5JF3qA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.385 [XNIO-1 task-4] YHQmakV_RJGkDdrY5JF3qA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.391 [XNIO-1 task-4] sjdmQY8wRQuhuZ3Y_BDRSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.391 [XNIO-1 task-4] sjdmQY8wRQuhuZ3Y_BDRSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.392 [XNIO-1 task-4] sjdmQY8wRQuhuZ3Y_BDRSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.394 [XNIO-1 task-4] sjdmQY8wRQuhuZ3Y_BDRSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.402 [XNIO-1 task-4] sjdmQY8wRQuhuZ3Y_BDRSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.408 [XNIO-1 task-4] ZOlNQFaAS9WV2fg3pyyJEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.408 [XNIO-1 task-4] ZOlNQFaAS9WV2fg3pyyJEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.409 [XNIO-1 task-4] ZOlNQFaAS9WV2fg3pyyJEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.410 [XNIO-1 task-4] ZOlNQFaAS9WV2fg3pyyJEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.416 [XNIO-1 task-4] ZOlNQFaAS9WV2fg3pyyJEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.424 [XNIO-1 task-4] sYsWxHVBRteh2aaRaZMABQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.424 [XNIO-1 task-4] sYsWxHVBRteh2aaRaZMABQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.425 [XNIO-1 task-4] sYsWxHVBRteh2aaRaZMABQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.426 [XNIO-1 task-4] sYsWxHVBRteh2aaRaZMABQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jBoaALpoRU-TaN6ab0TO4g redirectUri = http://localhost:8080/authorization +09:00:41.426 [XNIO-1 task-5] xL-xnQlSR7OIVyIubOZdkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.426 [XNIO-1 task-5] xL-xnQlSR7OIVyIubOZdkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.427 [XNIO-1 task-5] xL-xnQlSR7OIVyIubOZdkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.427 [XNIO-1 task-5] xL-xnQlSR7OIVyIubOZdkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.440 [XNIO-1 task-4] sYsWxHVBRteh2aaRaZMABQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.455 [XNIO-1 task-5] xL-xnQlSR7OIVyIubOZdkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.461 [XNIO-1 task-5] qjzWuVtuSVa5BlA4IsT_Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.461 [XNIO-1 task-5] qjzWuVtuSVa5BlA4IsT_Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.462 [XNIO-1 task-5] qjzWuVtuSVa5BlA4IsT_Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.462 [XNIO-1 task-5] qjzWuVtuSVa5BlA4IsT_Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", authorization) +09:00:41.470 [XNIO-1 task-5] qjzWuVtuSVa5BlA4IsT_Bg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.477 [XNIO-1 task-5] vt21eQCBS5WIjWsin_ezbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.477 [XNIO-1 task-5] vt21eQCBS5WIjWsin_ezbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.478 [XNIO-1 task-5] vt21eQCBS5WIjWsin_ezbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.479 [XNIO-1 task-4] uvI4C_UDSFSUcZzc8McAPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.479 [XNIO-1 task-4] uvI4C_UDSFSUcZzc8McAPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.480 [XNIO-1 task-4] uvI4C_UDSFSUcZzc8McAPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.480 [XNIO-1 task-4] uvI4C_UDSFSUcZzc8McAPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.481 [XNIO-1 task-4] uvI4C_UDSFSUcZzc8McAPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", authorization) +09:00:41.486 [XNIO-1 task-4] uvI4C_UDSFSUcZzc8McAPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.515 [XNIO-1 task-4] Ils2_zVySQCznFLDH2Sn6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.515 [XNIO-1 task-4] Ils2_zVySQCznFLDH2Sn6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.516 [XNIO-1 task-4] Ils2_zVySQCznFLDH2Sn6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.516 [XNIO-1 task-4] Ils2_zVySQCznFLDH2Sn6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", "Basic ZTY4Y2ZiMDQtNjA3ZC00NGM4LWIwZTQtMGMzNzNlYmRiM2JkOjJ6elFHd1Y5UnpTLXZNX21VRzgxcnc=", authorization) +09:00:41.522 [XNIO-1 task-4] Ils2_zVySQCznFLDH2Sn6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.527 [XNIO-1 task-5] vt21eQCBS5WIjWsin_ezbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:41.528 [XNIO-1 task-4] mpOvamASS4ux3iMB37GNGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.529 [XNIO-1 task-4] mpOvamASS4ux3iMB37GNGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.528 [XNIO-1 task-5] vt21eQCBS5WIjWsin_ezbA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.529 [XNIO-1 task-4] mpOvamASS4ux3iMB37GNGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.530 [XNIO-1 task-4] mpOvamASS4ux3iMB37GNGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.536 [XNIO-1 task-4] mpOvamASS4ux3iMB37GNGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.549 [XNIO-1 task-4] GU7FYeBBRySfUlUIFGEJmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.549 [XNIO-1 task-4] GU7FYeBBRySfUlUIFGEJmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.549 [XNIO-1 task-4] GU7FYeBBRySfUlUIFGEJmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.552 [XNIO-1 task-4] GU7FYeBBRySfUlUIFGEJmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.557 [XNIO-1 task-4] GU7FYeBBRySfUlUIFGEJmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.564 [XNIO-1 task-4] C9XAn_lDTE6HkcBCQYNr_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.565 [XNIO-1 task-4] C9XAn_lDTE6HkcBCQYNr_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.565 [XNIO-1 task-4] C9XAn_lDTE6HkcBCQYNr_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.566 [XNIO-1 task-4] C9XAn_lDTE6HkcBCQYNr_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.575 [XNIO-1 task-4] C9XAn_lDTE6HkcBCQYNr_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.582 [XNIO-1 task-4] D04q-Ln3SNyl0DnBXvOd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.582 [XNIO-1 task-4] D04q-Ln3SNyl0DnBXvOd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.583 [XNIO-1 task-4] D04q-Ln3SNyl0DnBXvOd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.583 [XNIO-1 task-4] D04q-Ln3SNyl0DnBXvOd4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.589 [XNIO-1 task-4] D04q-Ln3SNyl0DnBXvOd4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.600 [XNIO-1 task-4] aSsqtB9uS_mN9siRIbx_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.600 [XNIO-1 task-4] aSsqtB9uS_mN9siRIbx_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.600 [XNIO-1 task-4] aSsqtB9uS_mN9siRIbx_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.604 [XNIO-1 task-5] C31tC7UPQmiG4pMNvPZDfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.604 [XNIO-1 task-5] C31tC7UPQmiG4pMNvPZDfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.605 [XNIO-1 task-5] C31tC7UPQmiG4pMNvPZDfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.605 [XNIO-1 task-5] C31tC7UPQmiG4pMNvPZDfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.605 [XNIO-1 task-5] C31tC7UPQmiG4pMNvPZDfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = p7fanO1gRy-HHoRMct8gDw redirectUri = http://localhost:8080/authorization +09:00:41.625 [XNIO-1 task-6] Vh9JivTkS--HQ9QfaoQ2fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.625 [XNIO-1 task-6] Vh9JivTkS--HQ9QfaoQ2fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.626 [XNIO-1 task-6] Vh9JivTkS--HQ9QfaoQ2fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.628 [XNIO-1 task-6] Vh9JivTkS--HQ9QfaoQ2fw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:41.630 [XNIO-1 task-4] aSsqtB9uS_mN9siRIbx_7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.631 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc337358 +09:00:41.636 [XNIO-1 task-6] Vh9JivTkS--HQ9QfaoQ2fw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:41.637 [XNIO-1 task-6] Vh9JivTkS--HQ9QfaoQ2fw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.638 [XNIO-1 task-5] C31tC7UPQmiG4pMNvPZDfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.641 [XNIO-1 task-4] z2AGdaIuQN205vDWksEgxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.641 [XNIO-1 task-4] z2AGdaIuQN205vDWksEgxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.645 [XNIO-1 task-4] z2AGdaIuQN205vDWksEgxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.649 [XNIO-1 task-4] z2AGdaIuQN205vDWksEgxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.659 [XNIO-1 task-4] z2AGdaIuQN205vDWksEgxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.667 [XNIO-1 task-4] VrJdldzORNqZbpRNfBY16Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.667 [XNIO-1 task-4] VrJdldzORNqZbpRNfBY16Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.668 [XNIO-1 task-4] VrJdldzORNqZbpRNfBY16Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.669 [XNIO-1 task-4] VrJdldzORNqZbpRNfBY16Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.675 [XNIO-1 task-4] VrJdldzORNqZbpRNfBY16Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.682 [XNIO-1 task-4] xOlMGOpmQTWE4Y7n1ib5EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.682 [XNIO-1 task-4] xOlMGOpmQTWE4Y7n1ib5EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.683 [XNIO-1 task-4] xOlMGOpmQTWE4Y7n1ib5EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.684 [XNIO-1 task-4] xOlMGOpmQTWE4Y7n1ib5EA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.690 [XNIO-1 task-4] xOlMGOpmQTWE4Y7n1ib5EA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.698 [XNIO-1 task-4] j4PfEzYBQPukH4VCZFbkmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.699 [XNIO-1 task-4] j4PfEzYBQPukH4VCZFbkmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.699 [XNIO-1 task-4] j4PfEzYBQPukH4VCZFbkmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.700 [XNIO-1 task-4] j4PfEzYBQPukH4VCZFbkmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.705 [XNIO-1 task-4] j4PfEzYBQPukH4VCZFbkmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.713 [XNIO-1 task-6] 92GaG2cRSjusjAUfIhXmgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.713 [XNIO-1 task-6] 92GaG2cRSjusjAUfIhXmgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.714 [XNIO-1 task-6] 92GaG2cRSjusjAUfIhXmgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.712 [XNIO-1 task-4] LO1-vX1fQIuDbyVAhucTPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.714 [XNIO-1 task-4] LO1-vX1fQIuDbyVAhucTPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.714 [XNIO-1 task-6] 92GaG2cRSjusjAUfIhXmgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:41.714 [XNIO-1 task-4] LO1-vX1fQIuDbyVAhucTPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.715 [XNIO-1 task-4] LO1-vX1fQIuDbyVAhucTPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.720 [XNIO-1 task-4] LO1-vX1fQIuDbyVAhucTPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.722 [XNIO-1 task-6] 92GaG2cRSjusjAUfIhXmgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:41.722 [XNIO-1 task-6] 92GaG2cRSjusjAUfIhXmgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.725 [XNIO-1 task-4] i_pO2YEbRUKQ2Nq8OK4i2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.725 [XNIO-1 task-4] i_pO2YEbRUKQ2Nq8OK4i2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.726 [XNIO-1 task-4] i_pO2YEbRUKQ2Nq8OK4i2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.726 [XNIO-1 task-4] i_pO2YEbRUKQ2Nq8OK4i2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.731 [XNIO-1 task-4] i_pO2YEbRUKQ2Nq8OK4i2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.736 [XNIO-1 task-4] n0uTuklLSmyxvCnq0uT4nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.736 [XNIO-1 task-4] n0uTuklLSmyxvCnq0uT4nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.737 [XNIO-1 task-4] n0uTuklLSmyxvCnq0uT4nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.738 [XNIO-1 task-4] n0uTuklLSmyxvCnq0uT4nw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.744 [XNIO-1 task-4] n0uTuklLSmyxvCnq0uT4nw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.751 [XNIO-1 task-6] KIRI-gtHSD2ifNT28bzxog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.751 [XNIO-1 task-6] KIRI-gtHSD2ifNT28bzxog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.751 [XNIO-1 task-6] KIRI-gtHSD2ifNT28bzxog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.752 [XNIO-1 task-6] KIRI-gtHSD2ifNT28bzxog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 40154acd-0c29-47d6-8448-f138c0a72656 scope = null +09:00:41.756 [XNIO-1 task-4] sdHXbUyXRrWS1qJAdi2qgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.757 [XNIO-1 task-4] sdHXbUyXRrWS1qJAdi2qgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.757 [XNIO-1 task-4] sdHXbUyXRrWS1qJAdi2qgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.758 [XNIO-1 task-4] sdHXbUyXRrWS1qJAdi2qgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tp8tawKbREmHKZ2CNTHaXg redirectUri = http://localhost:8080/authorization +09:00:41.759 [XNIO-1 task-5] wGktYAZuSZeHrE6W8n97jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.759 [XNIO-1 task-5] wGktYAZuSZeHrE6W8n97jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.759 [XNIO-1 task-5] wGktYAZuSZeHrE6W8n97jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.760 [XNIO-1 task-5] wGktYAZuSZeHrE6W8n97jg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.766 [XNIO-1 task-5] wGktYAZuSZeHrE6W8n97jg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.766 [XNIO-1 task-4] sdHXbUyXRrWS1qJAdi2qgQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.767 [XNIO-1 task-6] KIRI-gtHSD2ifNT28bzxog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.773 [XNIO-1 task-5] uXId35pkS4G2Lc54rPiU-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.773 [XNIO-1 task-5] uXId35pkS4G2Lc54rPiU-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.774 [XNIO-1 task-5] uXId35pkS4G2Lc54rPiU-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.775 [XNIO-1 task-5] uXId35pkS4G2Lc54rPiU-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.775 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc337358 +09:00:41.782 [XNIO-1 task-5] uXId35pkS4G2Lc54rPiU-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.798 [XNIO-1 task-5] WGaOnFnpQZGFMtqfdOE6fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.799 [XNIO-1 task-5] WGaOnFnpQZGFMtqfdOE6fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.799 [XNIO-1 task-5] WGaOnFnpQZGFMtqfdOE6fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.800 [XNIO-1 task-5] WGaOnFnpQZGFMtqfdOE6fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.807 [XNIO-1 task-5] WGaOnFnpQZGFMtqfdOE6fA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.814 [XNIO-1 task-5] ARoRYNr_RuOGj1wBfEPHNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.814 [XNIO-1 task-5] ARoRYNr_RuOGj1wBfEPHNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.814 [XNIO-1 task-5] ARoRYNr_RuOGj1wBfEPHNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.817 [XNIO-1 task-5] ARoRYNr_RuOGj1wBfEPHNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.823 [XNIO-1 task-5] ARoRYNr_RuOGj1wBfEPHNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.834 [XNIO-1 task-5] 0HFxm-v_QjSFMoMTLpxl3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.834 [XNIO-1 task-5] 0HFxm-v_QjSFMoMTLpxl3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.834 [XNIO-1 task-5] 0HFxm-v_QjSFMoMTLpxl3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.835 [XNIO-1 task-5] 0HFxm-v_QjSFMoMTLpxl3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.836 [XNIO-1 task-6] YZtz3-AUR6iChxs3LLvs8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.837 [XNIO-1 task-6] YZtz3-AUR6iChxs3LLvs8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.837 [XNIO-1 task-6] YZtz3-AUR6iChxs3LLvs8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.840 [XNIO-1 task-6] YZtz3-AUR6iChxs3LLvs8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:41.841 [XNIO-1 task-5] 0HFxm-v_QjSFMoMTLpxl3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.845 [XNIO-1 task-5] YFJtV6pATiCynIEVUPwWxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.846 [XNIO-1 task-5] YFJtV6pATiCynIEVUPwWxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.846 [XNIO-1 task-5] YFJtV6pATiCynIEVUPwWxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.847 [XNIO-1 task-5] YFJtV6pATiCynIEVUPwWxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.850 [XNIO-1 task-6] YZtz3-AUR6iChxs3LLvs8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:41.851 [XNIO-1 task-6] YZtz3-AUR6iChxs3LLvs8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.853 [XNIO-1 task-5] YFJtV6pATiCynIEVUPwWxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.858 [XNIO-1 task-5] cyBvPa7JTaew68xNwEg7Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.859 [XNIO-1 task-4] xurCPxoyS4WxDydBw_rZdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.860 [XNIO-1 task-4] xurCPxoyS4WxDydBw_rZdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.860 [XNIO-1 task-5] cyBvPa7JTaew68xNwEg7Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.860 [XNIO-1 task-4] xurCPxoyS4WxDydBw_rZdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.861 [XNIO-1 task-4] xurCPxoyS4WxDydBw_rZdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.861 [XNIO-1 task-4] xurCPxoyS4WxDydBw_rZdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.861 [XNIO-1 task-4] xurCPxoyS4WxDydBw_rZdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.867 [XNIO-1 task-4] xurCPxoyS4WxDydBw_rZdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.870 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc337358 +09:00:41.873 [XNIO-1 task-4] Mo9FxNTHS_SVHriKZEm0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.873 [XNIO-1 task-4] Mo9FxNTHS_SVHriKZEm0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.874 [XNIO-1 task-4] Mo9FxNTHS_SVHriKZEm0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.875 [XNIO-1 task-4] Mo9FxNTHS_SVHriKZEm0Cw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.878 [XNIO-1 task-5] cyBvPa7JTaew68xNwEg7Kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.882 [XNIO-1 task-4] Mo9FxNTHS_SVHriKZEm0Cw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.889 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.889 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.889 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.890 [XNIO-1 task-5] 7Nm_wGpdTc-4OgEOm1zzQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.890 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.890 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.890 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.890 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.896 [XNIO-1 task-4] 6VigUMxvSta-q4fxIa7iVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.903 [XNIO-1 task-4] v7c4ilCER5COgHbvxwn-Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.903 [XNIO-1 task-4] v7c4ilCER5COgHbvxwn-Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.904 [XNIO-1 task-5] 7Nm_wGpdTc-4OgEOm1zzQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.905 [XNIO-1 task-6] Sk5oV0FaSq-9wSFh0sVjPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.905 [XNIO-1 task-6] Sk5oV0FaSq-9wSFh0sVjPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:41.905 [XNIO-1 task-6] Sk5oV0FaSq-9wSFh0sVjPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.906 [XNIO-1 task-6] Sk5oV0FaSq-9wSFh0sVjPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.924 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0fb9e23-c234-4db5-9467-fd510bd2fce0 +09:00:41.927 [XNIO-1 task-4] v7c4ilCER5COgHbvxwn-Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.927 [XNIO-1 task-4] v7c4ilCER5COgHbvxwn-Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:41.927 [XNIO-1 task-4] v7c4ilCER5COgHbvxwn-Kw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 06QgIb6rT-qthkN0JDL0oA redirectUri = http://localhost:8080/authorization +09:00:41.928 [XNIO-1 task-6] Sk5oV0FaSq-9wSFh0sVjPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.937 [XNIO-1 task-6] Ny4W4uyzTregi1f-4iLd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.937 [XNIO-1 task-6] Ny4W4uyzTregi1f-4iLd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.938 [XNIO-1 task-6] Ny4W4uyzTregi1f-4iLd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.938 [XNIO-1 task-6] Ny4W4uyzTregi1f-4iLd3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.943 [XNIO-1 task-5] 1cLl4S2XRnalmRcbbAiy5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.943 [XNIO-1 task-5] 1cLl4S2XRnalmRcbbAiy5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.943 [XNIO-1 task-5] 1cLl4S2XRnalmRcbbAiy5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.944 [XNIO-1 task-5] 1cLl4S2XRnalmRcbbAiy5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c0fb9e23-c234-4db5-9467-fd510bd2fce0 scope = null +09:00:41.944 [XNIO-1 task-6] Ny4W4uyzTregi1f-4iLd3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.949 [XNIO-1 task-6] Ig86TxriTB6Bkuyr6Bgb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.950 [XNIO-1 task-6] Ig86TxriTB6Bkuyr6Bgb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.950 [XNIO-1 task-6] Ig86TxriTB6Bkuyr6Bgb1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:41.950 [XNIO-1 task-6] Ig86TxriTB6Bkuyr6Bgb1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:41.954 [XNIO-1 task-5] 1cLl4S2XRnalmRcbbAiy5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:41.955 [XNIO-1 task-4] v7c4ilCER5COgHbvxwn-Kw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:41.955 [XNIO-1 task-4] v7c4ilCER5COgHbvxwn-Kw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.956 [XNIO-1 task-6] Ig86TxriTB6Bkuyr6Bgb1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.964 [XNIO-1 task-6] EnlR-NVfScqPHlrnPJ7Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.964 [XNIO-1 task-6] EnlR-NVfScqPHlrnPJ7Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.966 [XNIO-1 task-6] EnlR-NVfScqPHlrnPJ7Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.967 [XNIO-1 task-6] EnlR-NVfScqPHlrnPJ7Dog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.973 [XNIO-1 task-6] EnlR-NVfScqPHlrnPJ7Dog INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.977 [XNIO-1 task-6] RJHeE7hMRMmNM7TWGhDhNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.977 [XNIO-1 task-6] RJHeE7hMRMmNM7TWGhDhNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.979 [XNIO-1 task-6] RJHeE7hMRMmNM7TWGhDhNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.980 [XNIO-1 task-6] RJHeE7hMRMmNM7TWGhDhNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.986 [XNIO-1 task-6] RJHeE7hMRMmNM7TWGhDhNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:41.996 [XNIO-1 task-6] Yfb2tYLKQ_mIRXhXb7n4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.996 [XNIO-1 task-6] Yfb2tYLKQ_mIRXhXb7n4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.998 [XNIO-1 task-6] Yfb2tYLKQ_mIRXhXb7n4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.999 [XNIO-1 task-6] Yfb2tYLKQ_mIRXhXb7n4Eg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:41.999 [XNIO-1 task-4] G5g0_WuGQTSMFqj4vitgKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:41.999 [XNIO-1 task-4] G5g0_WuGQTSMFqj4vitgKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.002 [XNIO-1 task-4] G5g0_WuGQTSMFqj4vitgKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.007 [XNIO-1 task-6] Yfb2tYLKQ_mIRXhXb7n4Eg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.010 [XNIO-1 task-4] G5g0_WuGQTSMFqj4vitgKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4fc69d21-5ddd-4d55-9e53-08ee1e986366 scope = null +09:00:42.015 [XNIO-1 task-6] e5owyKdyRRy2NQctVTRtAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.015 [XNIO-1 task-6] e5owyKdyRRy2NQctVTRtAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.015 [XNIO-1 task-6] e5owyKdyRRy2NQctVTRtAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.016 [XNIO-1 task-6] e5owyKdyRRy2NQctVTRtAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.022 [XNIO-1 task-6] e5owyKdyRRy2NQctVTRtAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.028 [XNIO-1 task-6] FeLmnrNsSuu5KXHWTsLc3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.028 [XNIO-1 task-6] FeLmnrNsSuu5KXHWTsLc3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.028 [XNIO-1 task-6] FeLmnrNsSuu5KXHWTsLc3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.029 [XNIO-1 task-6] FeLmnrNsSuu5KXHWTsLc3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.029 [XNIO-1 task-6] FeLmnrNsSuu5KXHWTsLc3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.033 [XNIO-1 task-4] G5g0_WuGQTSMFqj4vitgKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.035 [XNIO-1 task-6] FeLmnrNsSuu5KXHWTsLc3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.042 [XNIO-1 task-6] EJ4URrVlT1O4AlJ8ka9qkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.042 [XNIO-1 task-6] EJ4URrVlT1O4AlJ8ka9qkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.043 [XNIO-1 task-6] EJ4URrVlT1O4AlJ8ka9qkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.043 [XNIO-1 task-6] EJ4URrVlT1O4AlJ8ka9qkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.049 [XNIO-1 task-6] EJ4URrVlT1O4AlJ8ka9qkg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.051 [XNIO-1 task-4] BxRqV041S02pCPU539Ij-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.052 [XNIO-1 task-4] BxRqV041S02pCPU539Ij-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.052 [XNIO-1 task-4] BxRqV041S02pCPU539Ij-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.052 [XNIO-1 task-6] fWLS4JZQQsSyx30JfTE_uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.053 [XNIO-1 task-4] BxRqV041S02pCPU539Ij-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 933730f8-1873-45fc-a258-fa5d4da0cd77 scope = null +09:00:42.053 [XNIO-1 task-6] fWLS4JZQQsSyx30JfTE_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.053 [XNIO-1 task-6] fWLS4JZQQsSyx30JfTE_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.054 [XNIO-1 task-6] fWLS4JZQQsSyx30JfTE_uQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MkukpvUPR1yXYQsGHPVoOw redirectUri = http://localhost:8080/authorization +09:00:42.058 [XNIO-1 task-5] 06qw5YOrQn68kYqPppoTZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.058 [XNIO-1 task-5] 06qw5YOrQn68kYqPppoTZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.059 [XNIO-1 task-5] 06qw5YOrQn68kYqPppoTZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.060 [XNIO-1 task-5] 06qw5YOrQn68kYqPppoTZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.065 [XNIO-1 task-6] fWLS4JZQQsSyx30JfTE_uQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.065 [XNIO-1 task-5] 06qw5YOrQn68kYqPppoTZA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.070 [XNIO-1 task-4] BxRqV041S02pCPU539Ij-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.070 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:74736519-bb71-4513-b631-4a934f5d42fa +09:00:42.071 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:74736519-bb71-4513-b631-4a934f5d42fa +09:00:42.077 [XNIO-1 task-5] nEstFPt5SM-LrR21pBw9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.077 [XNIO-1 task-5] nEstFPt5SM-LrR21pBw9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.078 [XNIO-1 task-5] nEstFPt5SM-LrR21pBw9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.079 [XNIO-1 task-5] nEstFPt5SM-LrR21pBw9Cw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.093 [XNIO-1 task-6] HINRNQy2R_-Z4xBHhUDPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.093 [XNIO-1 task-6] HINRNQy2R_-Z4xBHhUDPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.094 [XNIO-1 task-5] nEstFPt5SM-LrR21pBw9Cw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.094 [XNIO-1 task-6] HINRNQy2R_-Z4xBHhUDPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.095 [XNIO-1 task-6] HINRNQy2R_-Z4xBHhUDPYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5f5d884e-b962-425f-bb1c-494313cc8c3b scope = null +09:00:42.107 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:70fef263 +09:00:42.108 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:70fef263 +09:00:42.108 [XNIO-1 task-5] b0eRF8gwRvyaiXmfFGd4MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.109 [XNIO-1 task-5] b0eRF8gwRvyaiXmfFGd4MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.111 [XNIO-1 task-5] b0eRF8gwRvyaiXmfFGd4MA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.113 [XNIO-1 task-6] HINRNQy2R_-Z4xBHhUDPYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.117 [XNIO-1 task-4] cLbGUUt9Re6zXGNaNpGHUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.117 [XNIO-1 task-4] cLbGUUt9Re6zXGNaNpGHUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.118 [XNIO-1 task-4] cLbGUUt9Re6zXGNaNpGHUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.118 [XNIO-1 task-4] cLbGUUt9Re6zXGNaNpGHUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:42.122 [XNIO-1 task-5] b0eRF8gwRvyaiXmfFGd4MA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.128 [XNIO-1 task-5] 4NGUl7FTSQmeJNPccCDuwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.128 [XNIO-1 task-5] 4NGUl7FTSQmeJNPccCDuwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.129 [XNIO-1 task-5] 4NGUl7FTSQmeJNPccCDuwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.129 [XNIO-1 task-5] 4NGUl7FTSQmeJNPccCDuwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:42.134 [XNIO-1 task-4] cLbGUUt9Re6zXGNaNpGHUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:42.140 [XNIO-1 task-4] cLbGUUt9Re6zXGNaNpGHUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.142 [XNIO-1 task-5] 4NGUl7FTSQmeJNPccCDuwA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.150 [XNIO-1 task-5] dDFdt1aXQCm6a-ODS06_4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.150 [XNIO-1 task-5] dDFdt1aXQCm6a-ODS06_4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.151 [XNIO-1 task-5] dDFdt1aXQCm6a-ODS06_4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.151 [XNIO-1 task-5] dDFdt1aXQCm6a-ODS06_4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.156 [XNIO-1 task-5] dDFdt1aXQCm6a-ODS06_4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.166 [XNIO-1 task-5] pB1WABALRQyyH59FdXPtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.166 [XNIO-1 task-5] pB1WABALRQyyH59FdXPtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.166 [XNIO-1 task-5] pB1WABALRQyyH59FdXPtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.167 [XNIO-1 task-5] pB1WABALRQyyH59FdXPtxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.167 [XNIO-1 task-6] PUqZP7nqT1qjgi4Y8htdxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.167 [XNIO-1 task-6] PUqZP7nqT1qjgi4Y8htdxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.168 [XNIO-1 task-6] PUqZP7nqT1qjgi4Y8htdxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.168 [XNIO-1 task-6] PUqZP7nqT1qjgi4Y8htdxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2dHsk2N-QtClr_cojmzQEQ redirectUri = http://localhost:8080/authorization +09:00:42.172 [XNIO-1 task-5] pB1WABALRQyyH59FdXPtxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.178 [XNIO-1 task-6] PUqZP7nqT1qjgi4Y8htdxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.178 [XNIO-1 task-5] ICunqxycTwWNaRoXgGTHIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.179 [XNIO-1 task-5] ICunqxycTwWNaRoXgGTHIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.179 [XNIO-1 task-5] ICunqxycTwWNaRoXgGTHIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.179 [XNIO-1 task-5] ICunqxycTwWNaRoXgGTHIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:42.183 [XNIO-1 task-4] 6Lev1y4lSzKgYwhdcKWaBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.184 [XNIO-1 task-4] 6Lev1y4lSzKgYwhdcKWaBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.184 [XNIO-1 task-4] 6Lev1y4lSzKgYwhdcKWaBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.185 [XNIO-1 task-4] 6Lev1y4lSzKgYwhdcKWaBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:42.189 [XNIO-1 task-5] ICunqxycTwWNaRoXgGTHIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.197 [XNIO-1 task-6] 1E9dGhf1Q9-QqLnn1P5jtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.197 [XNIO-1 task-6] 1E9dGhf1Q9-QqLnn1P5jtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.197 [XNIO-1 task-6] 1E9dGhf1Q9-QqLnn1P5jtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.198 [XNIO-1 task-6] 1E9dGhf1Q9-QqLnn1P5jtw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.201 [XNIO-1 task-4] 6Lev1y4lSzKgYwhdcKWaBQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.205 [XNIO-1 task-6] 1E9dGhf1Q9-QqLnn1P5jtw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.214 [XNIO-1 task-6] Ib8dDxrORQSJXY2gH5FOoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.219 [XNIO-1 task-6] Ib8dDxrORQSJXY2gH5FOoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.220 [XNIO-1 task-6] Ib8dDxrORQSJXY2gH5FOoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.221 [XNIO-1 task-6] Ib8dDxrORQSJXY2gH5FOoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:42.229 [XNIO-1 task-6] Ib8dDxrORQSJXY2gH5FOoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.237 [XNIO-1 task-6] hEAPuWidTkK9jnMN2M0ERw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.237 [XNIO-1 task-6] hEAPuWidTkK9jnMN2M0ERw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.237 [XNIO-1 task-6] hEAPuWidTkK9jnMN2M0ERw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.238 [XNIO-1 task-6] hEAPuWidTkK9jnMN2M0ERw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:42.243 [XNIO-1 task-6] hEAPuWidTkK9jnMN2M0ERw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.250 [XNIO-1 task-6] yGJJy5gPSh-169vp1g2VtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.250 [XNIO-1 task-6] yGJJy5gPSh-169vp1g2VtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.251 [XNIO-1 task-6] yGJJy5gPSh-169vp1g2VtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.251 [XNIO-1 task-6] yGJJy5gPSh-169vp1g2VtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:42.259 [XNIO-1 task-6] yGJJy5gPSh-169vp1g2VtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.267 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2bc6f799 +09:00:42.276 [XNIO-1 task-6] qDNeSftsS4KtLz7Updba9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.277 [XNIO-1 task-6] qDNeSftsS4KtLz7Updba9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.283 [XNIO-1 task-6] qDNeSftsS4KtLz7Updba9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.284 [XNIO-1 task-6] qDNeSftsS4KtLz7Updba9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.287 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2bc6f799 +09:00:42.297 [XNIO-1 task-6] qDNeSftsS4KtLz7Updba9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.306 [XNIO-1 task-6] R5mSgLXTSrSTS7qJjztxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.306 [XNIO-1 task-6] R5mSgLXTSrSTS7qJjztxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.307 [XNIO-1 task-6] R5mSgLXTSrSTS7qJjztxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.307 [XNIO-1 task-6] R5mSgLXTSrSTS7qJjztxRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.312 [XNIO-1 task-4] JyLcfZCTTB6sIS1njdWt0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.312 [XNIO-1 task-4] JyLcfZCTTB6sIS1njdWt0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.313 [XNIO-1 task-4] JyLcfZCTTB6sIS1njdWt0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.313 [XNIO-1 task-6] R5mSgLXTSrSTS7qJjztxRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.313 [XNIO-1 task-4] JyLcfZCTTB6sIS1njdWt0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = W3Lr7tmcReCWfwEEKHR_xA redirectUri = http://localhost:8080/authorization +09:00:42.319 [XNIO-1 task-6] untNfh5DSdiaCn7GtJhuqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.319 [XNIO-1 task-6] untNfh5DSdiaCn7GtJhuqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.320 [XNIO-1 task-6] untNfh5DSdiaCn7GtJhuqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.321 [XNIO-1 task-6] untNfh5DSdiaCn7GtJhuqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.327 [XNIO-1 task-4] JyLcfZCTTB6sIS1njdWt0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.333 [XNIO-1 task-6] untNfh5DSdiaCn7GtJhuqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.344 [XNIO-1 task-6] CkOAUIWxSM2KdEB6EU0v_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.344 [XNIO-1 task-6] CkOAUIWxSM2KdEB6EU0v_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.345 [XNIO-1 task-6] CkOAUIWxSM2KdEB6EU0v_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.346 [XNIO-1 task-6] CkOAUIWxSM2KdEB6EU0v_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.349 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:70fef263 +09:00:42.354 [XNIO-1 task-6] CkOAUIWxSM2KdEB6EU0v_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.364 [XNIO-1 task-6] qaT6JOl6SrSOCpBTB8ScMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.365 [XNIO-1 task-6] qaT6JOl6SrSOCpBTB8ScMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.365 [XNIO-1 task-6] qaT6JOl6SrSOCpBTB8ScMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.365 [XNIO-1 task-6] qaT6JOl6SrSOCpBTB8ScMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.371 [XNIO-1 task-6] qaT6JOl6SrSOCpBTB8ScMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.373 [XNIO-1 task-4] GSMe3WgoSzWIXmdVSE1eag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.373 [XNIO-1 task-4] GSMe3WgoSzWIXmdVSE1eag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.374 [XNIO-1 task-4] GSMe3WgoSzWIXmdVSE1eag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.374 [XNIO-1 task-4] GSMe3WgoSzWIXmdVSE1eag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:42.377 [XNIO-1 task-6] _IHnjJOZTRCqaj9Zsj1vNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.378 [XNIO-1 task-6] _IHnjJOZTRCqaj9Zsj1vNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.378 [XNIO-1 task-6] _IHnjJOZTRCqaj9Zsj1vNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.379 [XNIO-1 task-6] _IHnjJOZTRCqaj9Zsj1vNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.384 [XNIO-1 task-5] 3WAYHa6DS4GewUFnKFnEfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.385 [XNIO-1 task-5] 3WAYHa6DS4GewUFnKFnEfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.385 [XNIO-1 task-6] _IHnjJOZTRCqaj9Zsj1vNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.385 [XNIO-1 task-5] 3WAYHa6DS4GewUFnKFnEfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.387 [XNIO-1 task-5] 3WAYHa6DS4GewUFnKFnEfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:42.388 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e88480ba +09:00:42.391 [XNIO-1 task-6] CEgIXoUfStaG9IB5OlbZ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.391 [XNIO-1 task-6] CEgIXoUfStaG9IB5OlbZ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.392 [XNIO-1 task-6] CEgIXoUfStaG9IB5OlbZ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.392 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e88480ba +09:00:42.392 [XNIO-1 task-4] GSMe3WgoSzWIXmdVSE1eag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.393 [XNIO-1 task-6] CEgIXoUfStaG9IB5OlbZ0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.397 [XNIO-1 task-5] 3WAYHa6DS4GewUFnKFnEfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.400 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:578b7b75-46db-4aee-b2a3-f29464656c3c +09:00:42.402 [XNIO-1 task-6] CEgIXoUfStaG9IB5OlbZ0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.412 [XNIO-1 task-4] GtN3EEKZTJ6SvLX64LUAxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.412 [XNIO-1 task-4] GtN3EEKZTJ6SvLX64LUAxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.413 [XNIO-1 task-4] GtN3EEKZTJ6SvLX64LUAxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.413 [XNIO-1 task-4] GtN3EEKZTJ6SvLX64LUAxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:42.424 [XNIO-1 task-4] GtN3EEKZTJ6SvLX64LUAxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.449 [XNIO-1 task-4] 7fk37uZ7ReGfHtjQvB_Mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.450 [XNIO-1 task-5] wophQiu1TDqe6Wu4TrcQUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.451 [XNIO-1 task-5] wophQiu1TDqe6Wu4TrcQUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.451 [XNIO-1 task-5] wophQiu1TDqe6Wu4TrcQUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.452 [XNIO-1 task-5] wophQiu1TDqe6Wu4TrcQUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:42.450 [XNIO-1 task-4] 7fk37uZ7ReGfHtjQvB_Mzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.454 [XNIO-1 task-4] 7fk37uZ7ReGfHtjQvB_Mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.454 [XNIO-1 task-4] 7fk37uZ7ReGfHtjQvB_Mzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:42.465 [XNIO-1 task-5] wophQiu1TDqe6Wu4TrcQUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:42.466 [XNIO-1 task-5] wophQiu1TDqe6Wu4TrcQUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.472 [XNIO-1 task-4] 7fk37uZ7ReGfHtjQvB_Mzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.482 [XNIO-1 task-4] WGEap-82TXSMh4LmvLiq_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.483 [XNIO-1 task-4] WGEap-82TXSMh4LmvLiq_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.484 [XNIO-1 task-4] WGEap-82TXSMh4LmvLiq_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.485 [XNIO-1 task-4] WGEap-82TXSMh4LmvLiq_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.491 [XNIO-1 task-4] WGEap-82TXSMh4LmvLiq_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.495 [XNIO-1 task-5] 2Ms5lP0qQiuiFTnOVEfdew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.495 [XNIO-1 task-5] 2Ms5lP0qQiuiFTnOVEfdew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.496 [XNIO-1 task-5] 2Ms5lP0qQiuiFTnOVEfdew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.497 [XNIO-1 task-4] ie908JnZRTmnKx87sa_qxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.497 [XNIO-1 task-4] ie908JnZRTmnKx87sa_qxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.498 [XNIO-1 task-4] ie908JnZRTmnKx87sa_qxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.498 [XNIO-1 task-4] ie908JnZRTmnKx87sa_qxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:42.496 [XNIO-1 task-5] 2Ms5lP0qQiuiFTnOVEfdew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:42.496 [XNIO-1 task-6] Fsh8mo93RHmkfRLA3-bnPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.501 [XNIO-1 task-6] Fsh8mo93RHmkfRLA3-bnPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.501 [XNIO-1 task-6] Fsh8mo93RHmkfRLA3-bnPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.502 [XNIO-1 task-6] Fsh8mo93RHmkfRLA3-bnPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YJY88LQBSSezQSs9EWVTLg redirectUri = http://localhost:8080/authorization +09:00:42.504 [XNIO-1 task-4] ie908JnZRTmnKx87sa_qxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.509 [XNIO-1 task-4] 6ub0-QIGQuuBYdLgbXs4Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.509 [XNIO-1 task-4] 6ub0-QIGQuuBYdLgbXs4Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.510 [XNIO-1 task-4] 6ub0-QIGQuuBYdLgbXs4Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.510 [XNIO-1 task-4] 6ub0-QIGQuuBYdLgbXs4Ow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.516 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e88480ba +09:00:42.517 [XNIO-1 task-4] 6ub0-QIGQuuBYdLgbXs4Ow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.522 [XNIO-1 task-4] a8NT8dZBSPS7hHVZXfG3dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.522 [XNIO-1 task-6] Fsh8mo93RHmkfRLA3-bnPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.523 [XNIO-1 task-4] a8NT8dZBSPS7hHVZXfG3dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.523 [XNIO-1 task-4] a8NT8dZBSPS7hHVZXfG3dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.524 [XNIO-1 task-4] a8NT8dZBSPS7hHVZXfG3dA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:42.529 [XNIO-1 task-4] a8NT8dZBSPS7hHVZXfG3dA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.531 [XNIO-1 task-5] 2Ms5lP0qQiuiFTnOVEfdew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.537 [XNIO-1 task-4] nNI0QX0DSza8bjJTxCPE5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.538 [XNIO-1 task-4] nNI0QX0DSza8bjJTxCPE5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.539 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2bc6f799 +09:00:42.540 [XNIO-1 task-4] nNI0QX0DSza8bjJTxCPE5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.541 [XNIO-1 task-4] nNI0QX0DSza8bjJTxCPE5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.551 [XNIO-1 task-4] nNI0QX0DSza8bjJTxCPE5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.557 [XNIO-1 task-6] Mki7ezdqQfWc8pfYAR7ZmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.557 [XNIO-1 task-6] Mki7ezdqQfWc8pfYAR7ZmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.558 [XNIO-1 task-6] Mki7ezdqQfWc8pfYAR7ZmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.558 [XNIO-1 task-6] Mki7ezdqQfWc8pfYAR7ZmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:42.563 [XNIO-1 task-4] I1m0PtD5TPSSNwKbJ-rATQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.564 [XNIO-1 task-4] I1m0PtD5TPSSNwKbJ-rATQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.564 [XNIO-1 task-4] I1m0PtD5TPSSNwKbJ-rATQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.565 [XNIO-1 task-4] I1m0PtD5TPSSNwKbJ-rATQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.566 [XNIO-1 task-4] I1m0PtD5TPSSNwKbJ-rATQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.567 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f2ec0fc0 +09:00:42.573 [XNIO-1 task-5] VcvBqrD9RICqSH7yp1M5yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.575 [XNIO-1 task-5] VcvBqrD9RICqSH7yp1M5yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.576 [XNIO-1 task-5] VcvBqrD9RICqSH7yp1M5yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.576 [XNIO-1 task-4] I1m0PtD5TPSSNwKbJ-rATQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.580 [XNIO-1 task-5] VcvBqrD9RICqSH7yp1M5yw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = kibRHgfyScGfiFQlCqNA7Q redirectUri = http://localhost:8080/authorization +09:00:42.581 [XNIO-1 task-6] Mki7ezdqQfWc8pfYAR7ZmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.584 [XNIO-1 task-4] iJN8APd1S-6oImDWkSLraQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.584 [XNIO-1 task-4] iJN8APd1S-6oImDWkSLraQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.585 [XNIO-1 task-4] iJN8APd1S-6oImDWkSLraQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.585 [XNIO-1 task-4] iJN8APd1S-6oImDWkSLraQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.588 [XNIO-1 task-5] VcvBqrD9RICqSH7yp1M5yw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.595 [XNIO-1 task-4] iJN8APd1S-6oImDWkSLraQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.621 [XNIO-1 task-4] pJfDdC_ATvqbZnletwzvNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.621 [XNIO-1 task-4] pJfDdC_ATvqbZnletwzvNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.623 [XNIO-1 task-4] pJfDdC_ATvqbZnletwzvNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.624 [XNIO-1 task-4] pJfDdC_ATvqbZnletwzvNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:42.636 [XNIO-1 task-4] pJfDdC_ATvqbZnletwzvNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.646 [XNIO-1 task-4] 9VdJlzc4THe9YowGN2NSCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.646 [XNIO-1 task-4] 9VdJlzc4THe9YowGN2NSCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.647 [XNIO-1 task-4] 9VdJlzc4THe9YowGN2NSCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.648 [XNIO-1 task-4] 9VdJlzc4THe9YowGN2NSCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:42.653 [XNIO-1 task-4] 9VdJlzc4THe9YowGN2NSCg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.659 [XNIO-1 task-4] m3WXn6c5RDKh1hqb1CVtbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.659 [XNIO-1 task-4] m3WXn6c5RDKh1hqb1CVtbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.660 [XNIO-1 task-4] m3WXn6c5RDKh1hqb1CVtbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.660 [XNIO-1 task-4] m3WXn6c5RDKh1hqb1CVtbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:42.668 [XNIO-1 task-4] m3WXn6c5RDKh1hqb1CVtbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.675 [XNIO-1 task-4] GJZfcxS9SuaqlGmO7isKZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.675 [XNIO-1 task-4] GJZfcxS9SuaqlGmO7isKZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.676 [XNIO-1 task-4] GJZfcxS9SuaqlGmO7isKZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.676 [XNIO-1 task-4] GJZfcxS9SuaqlGmO7isKZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:42.682 [XNIO-1 task-4] GJZfcxS9SuaqlGmO7isKZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.687 [XNIO-1 task-4] yXe7GOtRRzq7JfC-6LmeRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.689 [XNIO-1 task-4] yXe7GOtRRzq7JfC-6LmeRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.690 [XNIO-1 task-4] yXe7GOtRRzq7JfC-6LmeRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.690 [XNIO-1 task-4] yXe7GOtRRzq7JfC-6LmeRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:42.694 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f2ec0fc0 +09:00:42.694 [XNIO-1 task-5] SIy_u7aRQcqUXRE2Sv_GhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.696 [XNIO-1 task-5] SIy_u7aRQcqUXRE2Sv_GhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.696 [XNIO-1 task-5] SIy_u7aRQcqUXRE2Sv_GhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.696 [XNIO-1 task-5] SIy_u7aRQcqUXRE2Sv_GhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.697 [XNIO-1 task-4] yXe7GOtRRzq7JfC-6LmeRg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.704 [XNIO-1 task-4] a_a8DV58TmS3zJK7fc0Znw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.705 [XNIO-1 task-4] a_a8DV58TmS3zJK7fc0Znw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.706 [XNIO-1 task-4] a_a8DV58TmS3zJK7fc0Znw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.706 [XNIO-1 task-4] a_a8DV58TmS3zJK7fc0Znw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:42.713 [XNIO-1 task-4] a_a8DV58TmS3zJK7fc0Znw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.715 [XNIO-1 task-5] SIy_u7aRQcqUXRE2Sv_GhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:42.715 [XNIO-1 task-5] SIy_u7aRQcqUXRE2Sv_GhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.723 [XNIO-1 task-4] V-qSPEKvQiWjwSd5Byolow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.723 [XNIO-1 task-4] V-qSPEKvQiWjwSd5Byolow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.723 [XNIO-1 task-4] V-qSPEKvQiWjwSd5Byolow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.726 [XNIO-1 task-4] V-qSPEKvQiWjwSd5Byolow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IXKQgsgFRaaXjVoOG4LuVg redirectUri = http://localhost:8080/authorization +09:00:42.726 [XNIO-1 task-6] pybOGZedRySrKTGqlKodQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.726 [XNIO-1 task-6] pybOGZedRySrKTGqlKodQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.727 [XNIO-1 task-6] pybOGZedRySrKTGqlKodQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.727 [XNIO-1 task-6] pybOGZedRySrKTGqlKodQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.735 [XNIO-1 task-6] pybOGZedRySrKTGqlKodQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.745 [XNIO-1 task-6] 0DalexyUSXa8n2Ysb7d0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.748 [XNIO-1 task-6] 0DalexyUSXa8n2Ysb7d0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.750 [XNIO-1 task-6] 0DalexyUSXa8n2Ysb7d0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.751 [XNIO-1 task-6] 0DalexyUSXa8n2Ysb7d0bw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.752 [XNIO-1 task-4] V-qSPEKvQiWjwSd5Byolow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.757 [XNIO-1 task-6] 0DalexyUSXa8n2Ysb7d0bw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.763 [XNIO-1 task-4] 3Xz4ovmhQb-elFi3xuUt5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.764 [XNIO-1 task-4] 3Xz4ovmhQb-elFi3xuUt5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.764 [XNIO-1 task-4] 3Xz4ovmhQb-elFi3xuUt5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.764 [XNIO-1 task-4] 3Xz4ovmhQb-elFi3xuUt5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:42.770 [XNIO-1 task-4] 3Xz4ovmhQb-elFi3xuUt5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.775 [XNIO-1 task-4] ARvhdnHFTi60dbj4IVPtZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.776 [XNIO-1 task-4] ARvhdnHFTi60dbj4IVPtZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.776 [XNIO-1 task-4] ARvhdnHFTi60dbj4IVPtZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.777 [XNIO-1 task-4] ARvhdnHFTi60dbj4IVPtZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:42.781 [XNIO-1 task-6] u2LCEIIlSKOGay5AIw7KLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.781 [XNIO-1 task-6] u2LCEIIlSKOGay5AIw7KLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.782 [XNIO-1 task-6] u2LCEIIlSKOGay5AIw7KLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.782 [XNIO-1 task-4] ARvhdnHFTi60dbj4IVPtZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.783 [XNIO-1 task-6] u2LCEIIlSKOGay5AIw7KLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:42.790 [XNIO-1 task-4] _IFnn2iiRPOBrhQmxMuKbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.790 [XNIO-1 task-4] _IFnn2iiRPOBrhQmxMuKbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.792 [XNIO-1 task-4] _IFnn2iiRPOBrhQmxMuKbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.793 [XNIO-1 task-4] _IFnn2iiRPOBrhQmxMuKbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:42.798 [XNIO-1 task-4] _IFnn2iiRPOBrhQmxMuKbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.803 [XNIO-1 task-6] u2LCEIIlSKOGay5AIw7KLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:42.803 [XNIO-1 task-4] SoqWa6kQTRSheveEDauomA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.804 [XNIO-1 task-4] SoqWa6kQTRSheveEDauomA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.804 [XNIO-1 task-4] SoqWa6kQTRSheveEDauomA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.804 [XNIO-1 task-6] u2LCEIIlSKOGay5AIw7KLA INFO com.networknt.config.Config getConfigStream - Config loaded from default folder for status.yml +09:00:42.805 [XNIO-1 task-4] SoqWa6kQTRSheveEDauomA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.828 [XNIO-1 task-4] SoqWa6kQTRSheveEDauomA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.834 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f2ec0fc0 +09:00:42.843 [XNIO-1 task-4] SoqWa6kQTRSheveEDauomA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.844 [XNIO-1 task-5] f_lLo_5eTOWy1G202KtvOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.844 [XNIO-1 task-5] f_lLo_5eTOWy1G202KtvOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.844 [XNIO-1 task-5] f_lLo_5eTOWy1G202KtvOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.845 [XNIO-1 task-5] f_lLo_5eTOWy1G202KtvOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = xXEzp_AdSna3XmpBVHv12Q redirectUri = http://localhost:8080/authorization +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:42.853 [XNIO-1 task-4] 6AG50YbTRveR3D3WJiF5Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.854 [XNIO-1 task-4] 6AG50YbTRveR3D3WJiF5Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.855 [XNIO-1 task-4] 6AG50YbTRveR3D3WJiF5Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.856 [XNIO-1 task-4] 6AG50YbTRveR3D3WJiF5Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:42.865 [XNIO-1 task-4] 6AG50YbTRveR3D3WJiF5Tg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.868 [XNIO-1 task-4] 6AG50YbTRveR3D3WJiF5Tg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.868 [XNIO-1 task-5] f_lLo_5eTOWy1G202KtvOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.874 [XNIO-1 task-4] yu8SbNYmR56-LK_lsnei6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.874 [XNIO-1 task-4] yu8SbNYmR56-LK_lsnei6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.875 [XNIO-1 task-4] yu8SbNYmR56-LK_lsnei6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.876 [XNIO-1 task-4] yu8SbNYmR56-LK_lsnei6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.885 [XNIO-1 task-5] 4YpxHLuVS06MdViA8LZx7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.885 [XNIO-1 task-5] 4YpxHLuVS06MdViA8LZx7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.886 [XNIO-1 task-5] 4YpxHLuVS06MdViA8LZx7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.887 [XNIO-1 task-5] 4YpxHLuVS06MdViA8LZx7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4e28b258-822d-4682-9467-dd73fd996e1a scope = null +09:00:42.892 [XNIO-1 task-4] yu8SbNYmR56-LK_lsnei6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.902 [XNIO-1 task-4] i3852YOuQaq5W72AMgdUGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.902 [XNIO-1 task-6] oQ9Vi2vWT-26rM-lulDN1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.902 [XNIO-1 task-6] oQ9Vi2vWT-26rM-lulDN1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:42.930 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7cfd8943 +09:00:42.934 [XNIO-1 task-6] oQ9Vi2vWT-26rM-lulDN1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.935 [XNIO-1 task-6] oQ9Vi2vWT-26rM-lulDN1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:42.902 [XNIO-1 task-5] 4YpxHLuVS06MdViA8LZx7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:42.937 [XNIO-1 task-4] i3852YOuQaq5W72AMgdUGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.938 [XNIO-1 task-4] i3852YOuQaq5W72AMgdUGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:42.938 [XNIO-1 task-4] i3852YOuQaq5W72AMgdUGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:42.942 [XNIO-1 task-6] oQ9Vi2vWT-26rM-lulDN1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:42.942 [XNIO-1 task-6] oQ9Vi2vWT-26rM-lulDN1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.944 [XNIO-1 task-4] i3852YOuQaq5W72AMgdUGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.950 [XNIO-1 task-4] 64hde8omRtKxm9oW9hAx8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.951 [XNIO-1 task-4] 64hde8omRtKxm9oW9hAx8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.951 [XNIO-1 task-4] 64hde8omRtKxm9oW9hAx8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.951 [XNIO-1 task-4] 64hde8omRtKxm9oW9hAx8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.961 [XNIO-1 task-4] 64hde8omRtKxm9oW9hAx8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.966 [XNIO-1 task-4] ITOTzyn7TG2g1ypxIIRiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.966 [XNIO-1 task-4] ITOTzyn7TG2g1ypxIIRiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.967 [XNIO-1 task-4] ITOTzyn7TG2g1ypxIIRiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.967 [XNIO-1 task-4] ITOTzyn7TG2g1ypxIIRiqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 468e9aea-ee63-479d-bbb7-a7d5a4f4ea54 scope = null +09:00:42.971 [XNIO-1 task-6] JX3HumtZQHu3AZhK_Imo_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.971 [XNIO-1 task-6] JX3HumtZQHu3AZhK_Imo_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.972 [XNIO-1 task-6] JX3HumtZQHu3AZhK_Imo_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.972 [XNIO-1 task-6] JX3HumtZQHu3AZhK_Imo_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.976 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7cfd8943 +09:00:42.978 [XNIO-1 task-4] ITOTzyn7TG2g1ypxIIRiqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.981 [XNIO-1 task-6] JX3HumtZQHu3AZhK_Imo_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:42.984 [XNIO-1 task-5] IL70OQuCR42MMUfyHcw13Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.984 [XNIO-1 task-5] IL70OQuCR42MMUfyHcw13Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.985 [XNIO-1 task-5] IL70OQuCR42MMUfyHcw13Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.985 [XNIO-1 task-5] IL70OQuCR42MMUfyHcw13Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = I6zxTYy-T8iJdZ2tv0FP2Q redirectUri = http://localhost:8080/authorization +09:00:42.987 [XNIO-1 task-6] CpZLMwf4SkaqAPyewtbyDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.987 [XNIO-1 task-6] CpZLMwf4SkaqAPyewtbyDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.987 [XNIO-1 task-6] CpZLMwf4SkaqAPyewtbyDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:42.988 [XNIO-1 task-6] CpZLMwf4SkaqAPyewtbyDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:42.997 [XNIO-1 task-6] CpZLMwf4SkaqAPyewtbyDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.002 [XNIO-1 task-5] IL70OQuCR42MMUfyHcw13Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.004 [XNIO-1 task-4] vcw8Oyt4RBCjD3wV4-_d4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.004 [XNIO-1 task-4] vcw8Oyt4RBCjD3wV4-_d4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.004 [XNIO-1 task-4] vcw8Oyt4RBCjD3wV4-_d4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.005 [XNIO-1 task-4] vcw8Oyt4RBCjD3wV4-_d4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:43.012 [XNIO-1 task-4] vcw8Oyt4RBCjD3wV4-_d4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.017 [XNIO-1 task-4] 2nf0zgLxTAKEiK3L-wsoNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.018 [XNIO-1 task-4] 2nf0zgLxTAKEiK3L-wsoNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.018 [XNIO-1 task-4] 2nf0zgLxTAKEiK3L-wsoNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.018 [XNIO-1 task-4] 2nf0zgLxTAKEiK3L-wsoNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzZlYWE5MTctNTA1ZC00ZThjLWI3Y2ItYTk4MDc3MjE2NWIzOnVlUkZxQlpBVEpTOThvVWNvdFRNS3c=", "Basic MzZlYWE5MTctNTA1ZC00ZThjLWI3Y2ItYTk4MDc3MjE2NWIzOnVlUkZxQlpBVEpTOThvVWNvdFRNS3c=", authorization) +09:00:43.024 [XNIO-1 task-4] 2nf0zgLxTAKEiK3L-wsoNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.030 [XNIO-1 task-4] F7AZnxEYRXG0mHDMy6Ir9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.030 [XNIO-1 task-4] F7AZnxEYRXG0mHDMy6Ir9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.031 [XNIO-1 task-4] F7AZnxEYRXG0mHDMy6Ir9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.031 [XNIO-1 task-4] F7AZnxEYRXG0mHDMy6Ir9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzZlYWE5MTctNTA1ZC00ZThjLWI3Y2ItYTk4MDc3MjE2NWIzOnVlUkZxQlpBVEpTOThvVWNvdFRNS3c=", "Basic MzZlYWE5MTctNTA1ZC00ZThjLWI3Y2ItYTk4MDc3MjE2NWIzOnVlUkZxQlpBVEpTOThvVWNvdFRNS3c=", authorization) +09:00:43.036 [XNIO-1 task-4] F7AZnxEYRXG0mHDMy6Ir9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.052 [XNIO-1 task-4] CPydMw48Q42-UZ0MGFZQ5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.052 [XNIO-1 task-4] CPydMw48Q42-UZ0MGFZQ5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.053 [XNIO-1 task-4] CPydMw48Q42-UZ0MGFZQ5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.053 [XNIO-1 task-4] CPydMw48Q42-UZ0MGFZQ5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:43.069 [XNIO-1 task-4] CPydMw48Q42-UZ0MGFZQ5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.074 [XNIO-1 task-4] VglJKBiFSJKqhwLQh-i2ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.074 [XNIO-1 task-4] VglJKBiFSJKqhwLQh-i2ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.075 [XNIO-1 task-4] VglJKBiFSJKqhwLQh-i2ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.075 [XNIO-1 task-4] VglJKBiFSJKqhwLQh-i2ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:43.080 [XNIO-1 task-5] nPK23EYRTUCsBNXCU3bi3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.080 [XNIO-1 task-5] nPK23EYRTUCsBNXCU3bi3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.081 [XNIO-1 task-5] nPK23EYRTUCsBNXCU3bi3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.081 [XNIO-1 task-5] nPK23EYRTUCsBNXCU3bi3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:43.090 [XNIO-1 task-4] VglJKBiFSJKqhwLQh-i2ZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:43.090 [XNIO-1 task-4] VglJKBiFSJKqhwLQh-i2ZA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.093 [XNIO-1 task-5] nPK23EYRTUCsBNXCU3bi3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.098 [XNIO-1 task-5] jPp9M13oTWSTi_nwalmCmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.099 [XNIO-1 task-5] jPp9M13oTWSTi_nwalmCmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.099 [XNIO-1 task-5] jPp9M13oTWSTi_nwalmCmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.100 [XNIO-1 task-5] jPp9M13oTWSTi_nwalmCmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:43.105 [XNIO-1 task-5] jPp9M13oTWSTi_nwalmCmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.110 [XNIO-1 task-5] t3lR8_24StClFWiSXz5HOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.110 [XNIO-1 task-5] t3lR8_24StClFWiSXz5HOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.111 [XNIO-1 task-5] t3lR8_24StClFWiSXz5HOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.111 [XNIO-1 task-4] iTFok0EnTMuLmfw1EvDH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.111 [XNIO-1 task-4] iTFok0EnTMuLmfw1EvDH2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.111 [XNIO-1 task-5] t3lR8_24StClFWiSXz5HOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:43.111 [XNIO-1 task-4] iTFok0EnTMuLmfw1EvDH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.111 [XNIO-1 task-4] iTFok0EnTMuLmfw1EvDH2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:43.117 [XNIO-1 task-4] iTFok0EnTMuLmfw1EvDH2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.122 [XNIO-1 task-5] t3lR8_24StClFWiSXz5HOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.124 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:288062d9-4e47-440b-b3d5-90aff2239832 +09:00:43.125 [XNIO-1 task-4] Ia6v4EJORoKOzzbmIv_GvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.125 [XNIO-1 task-4] Ia6v4EJORoKOzzbmIv_GvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.125 [XNIO-1 task-4] Ia6v4EJORoKOzzbmIv_GvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.125 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:288062d9-4e47-440b-b3d5-90aff2239832 +09:00:43.126 [XNIO-1 task-4] Ia6v4EJORoKOzzbmIv_GvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.131 [XNIO-1 task-4] Ia6v4EJORoKOzzbmIv_GvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.136 [XNIO-1 task-5] 6mqrlYklQdqtrp01d4wGHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.136 [XNIO-1 task-5] 6mqrlYklQdqtrp01d4wGHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.137 [XNIO-1 task-5] 6mqrlYklQdqtrp01d4wGHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.137 [XNIO-1 task-5] 6mqrlYklQdqtrp01d4wGHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.142 [XNIO-1 task-5] 6mqrlYklQdqtrp01d4wGHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.149 [XNIO-1 task-5] n-eBVYVrRcObbjVuAAQr-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.149 [XNIO-1 task-5] n-eBVYVrRcObbjVuAAQr-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.150 [XNIO-1 task-5] n-eBVYVrRcObbjVuAAQr-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.150 [XNIO-1 task-5] n-eBVYVrRcObbjVuAAQr-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.155 [XNIO-1 task-5] n-eBVYVrRcObbjVuAAQr-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.161 [XNIO-1 task-5] B7q6WcaHQxWlG3xi0bmnxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.161 [XNIO-1 task-5] B7q6WcaHQxWlG3xi0bmnxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.162 [XNIO-1 task-4] jYyhksMzRxirrJEfEuetIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.163 [XNIO-1 task-4] jYyhksMzRxirrJEfEuetIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.163 [XNIO-1 task-4] jYyhksMzRxirrJEfEuetIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.163 [XNIO-1 task-4] jYyhksMzRxirrJEfEuetIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = r_G8lvynQ3WKXKYQut1img redirectUri = http://localhost:8080/authorization +09:00:43.164 [XNIO-1 task-5] B7q6WcaHQxWlG3xi0bmnxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.164 [XNIO-1 task-5] B7q6WcaHQxWlG3xi0bmnxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.172 [XNIO-1 task-4] jYyhksMzRxirrJEfEuetIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.171 [XNIO-1 task-5] B7q6WcaHQxWlG3xi0bmnxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.175 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c3a047b3-1f35-44fd-b321-1451883c0f09 +09:00:43.178 [XNIO-1 task-5] dhe2j7kZQQWDUlm2N9h5MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.178 [XNIO-1 task-5] dhe2j7kZQQWDUlm2N9h5MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.178 [XNIO-1 task-5] dhe2j7kZQQWDUlm2N9h5MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.179 [XNIO-1 task-5] dhe2j7kZQQWDUlm2N9h5MA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:43.184 [XNIO-1 task-5] dhe2j7kZQQWDUlm2N9h5MA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.191 [XNIO-1 task-5] smPYvo-VQeKzDKlq1j2fjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.191 [XNIO-1 task-5] smPYvo-VQeKzDKlq1j2fjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.191 [XNIO-1 task-5] smPYvo-VQeKzDKlq1j2fjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.192 [XNIO-1 task-5] smPYvo-VQeKzDKlq1j2fjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:43.199 [XNIO-1 task-5] smPYvo-VQeKzDKlq1j2fjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.206 [XNIO-1 task-5] ioYsmilURwiGrDirIbZq_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.207 [XNIO-1 task-5] ioYsmilURwiGrDirIbZq_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.207 [XNIO-1 task-5] ioYsmilURwiGrDirIbZq_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.207 [XNIO-1 task-5] ioYsmilURwiGrDirIbZq_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzZlYWE5MTctNTA1ZC00ZThjLWI3Y2ItYTk4MDc3MjE2NWIzOnVlUkZxQlpBVEpTOThvVWNvdFRNS3c=", "Basic MzZlYWE5MTctNTA1ZC00ZThjLWI3Y2ItYTk4MDc3MjE2NWIzOnVlUkZxQlpBVEpTOThvVWNvdFRNS3c=", authorization) +09:00:43.212 [XNIO-1 task-5] ioYsmilURwiGrDirIbZq_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.218 [XNIO-1 task-5] rZHbc43pRRuhKj9kWRMu9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.218 [XNIO-1 task-5] rZHbc43pRRuhKj9kWRMu9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.219 [XNIO-1 task-5] rZHbc43pRRuhKj9kWRMu9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.219 [XNIO-1 task-5] rZHbc43pRRuhKj9kWRMu9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2Y4ZDk5YWEtMzA2Ny00YTdjLWE5MDYtYmE5MmU3MzEyYjFhOmpBbXdFY2RRUTVXZ0hYaHNBRVBra3c=", "Basic N2Y4ZDk5YWEtMzA2Ny00YTdjLWE5MDYtYmE5MmU3MzEyYjFhOmpBbXdFY2RRUTVXZ0hYaHNBRVBra3c=", authorization) +09:00:43.231 [XNIO-1 task-5] rZHbc43pRRuhKj9kWRMu9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.244 [XNIO-1 task-5] -uZdaF5KSwGJR9DIsF_w2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.244 [XNIO-1 task-5] -uZdaF5KSwGJR9DIsF_w2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.245 [XNIO-1 task-5] -uZdaF5KSwGJR9DIsF_w2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.245 [XNIO-1 task-5] -uZdaF5KSwGJR9DIsF_w2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:43.251 [XNIO-1 task-5] -uZdaF5KSwGJR9DIsF_w2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.254 [XNIO-1 task-5] fZOuAC8WQJ-Hg4OkmmDUiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.255 [XNIO-1 task-5] fZOuAC8WQJ-Hg4OkmmDUiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.255 [XNIO-1 task-5] fZOuAC8WQJ-Hg4OkmmDUiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.255 [XNIO-1 task-5] fZOuAC8WQJ-Hg4OkmmDUiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:43.256 [XNIO-1 task-4] 1T2f1dngTMaejX7Jtagatg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.256 [XNIO-1 task-4] 1T2f1dngTMaejX7Jtagatg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.257 [XNIO-1 task-4] 1T2f1dngTMaejX7Jtagatg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.258 [XNIO-1 task-4] 1T2f1dngTMaejX7Jtagatg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:43.263 [XNIO-1 task-4] 1T2f1dngTMaejX7Jtagatg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.267 [XNIO-1 task-5] fZOuAC8WQJ-Hg4OkmmDUiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:43.267 [XNIO-1 task-5] fZOuAC8WQJ-Hg4OkmmDUiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.271 [XNIO-1 task-4] 9do4b4RERxOe7ppGDS_62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.272 [XNIO-1 task-4] 9do4b4RERxOe7ppGDS_62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.272 [XNIO-1 task-4] 9do4b4RERxOe7ppGDS_62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.272 [XNIO-1 task-4] 9do4b4RERxOe7ppGDS_62A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.277 [XNIO-1 task-4] 9do4b4RERxOe7ppGDS_62A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.285 [XNIO-1 task-4] 1CA3pmm3Tmista4dj4h3UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.285 [XNIO-1 task-4] 1CA3pmm3Tmista4dj4h3UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.285 [XNIO-1 task-4] 1CA3pmm3Tmista4dj4h3UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.286 [XNIO-1 task-4] 1CA3pmm3Tmista4dj4h3UQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.287 [XNIO-1 task-5] uej6o4FFTBi2S153IbWxcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.287 [XNIO-1 task-5] uej6o4FFTBi2S153IbWxcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.287 [XNIO-1 task-6] I3Fv0YwoRqWmjH-DOZwmoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.287 [XNIO-1 task-6] I3Fv0YwoRqWmjH-DOZwmoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.288 [XNIO-1 task-5] uej6o4FFTBi2S153IbWxcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.288 [XNIO-1 task-6] I3Fv0YwoRqWmjH-DOZwmoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.288 [XNIO-1 task-6] I3Fv0YwoRqWmjH-DOZwmoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d9917168-40be-4f9d-91f7-2df0af63be77 scope = null +09:00:43.289 [XNIO-1 task-5] uej6o4FFTBi2S153IbWxcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3WMsz3RmQV2G9XyZEgH91Q redirectUri = http://localhost:8080/authorization +09:00:43.293 [XNIO-1 task-4] 1CA3pmm3Tmista4dj4h3UQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.296 [XNIO-1 task-5] uej6o4FFTBi2S153IbWxcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.300 [XNIO-1 task-4] 501MbEH-TDGT3sHmRwqNUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.300 [XNIO-1 task-4] 501MbEH-TDGT3sHmRwqNUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.300 [XNIO-1 task-4] 501MbEH-TDGT3sHmRwqNUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.301 [XNIO-1 task-4] 501MbEH-TDGT3sHmRwqNUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:43.301 [XNIO-1 task-6] I3Fv0YwoRqWmjH-DOZwmoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.307 [XNIO-1 task-4] 501MbEH-TDGT3sHmRwqNUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.327 [XNIO-1 task-5] gjwuTj_VRJelNFgMgIagUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.328 [XNIO-1 task-5] gjwuTj_VRJelNFgMgIagUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.328 [XNIO-1 task-5] gjwuTj_VRJelNFgMgIagUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.328 [XNIO-1 task-5] gjwuTj_VRJelNFgMgIagUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:43.330 [XNIO-1 task-4] wR5YwHhKTsWhlI65ByOUHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.330 [XNIO-1 task-4] wR5YwHhKTsWhlI65ByOUHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.330 [XNIO-1 task-4] wR5YwHhKTsWhlI65ByOUHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.331 [XNIO-1 task-6] 4KUk3FFsToaMTa7pE8sDZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.331 [XNIO-1 task-4] wR5YwHhKTsWhlI65ByOUHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:43.331 [XNIO-1 task-6] 4KUk3FFsToaMTa7pE8sDZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.332 [XNIO-1 task-6] 4KUk3FFsToaMTa7pE8sDZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.332 [XNIO-1 task-6] 4KUk3FFsToaMTa7pE8sDZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:43.339 [XNIO-1 task-6] 4KUk3FFsToaMTa7pE8sDZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.344 [XNIO-1 task-5] gjwuTj_VRJelNFgMgIagUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.346 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:512f56c9-1716-4f52-af16-88f0a8fdebf3 +09:00:43.346 [XNIO-1 task-4] wR5YwHhKTsWhlI65ByOUHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.347 [XNIO-1 task-6] SP6ALwByRQ-c29E8S3Tbdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.347 [XNIO-1 task-6] SP6ALwByRQ-c29E8S3Tbdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.347 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:512f56c9-1716-4f52-af16-88f0a8fdebf3 +09:00:43.347 [XNIO-1 task-6] SP6ALwByRQ-c29E8S3Tbdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.348 [XNIO-1 task-6] SP6ALwByRQ-c29E8S3Tbdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.355 [XNIO-1 task-6] SP6ALwByRQ-c29E8S3Tbdg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.363 [XNIO-1 task-6] SPNtyU21T7WdEtGm15gT6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.363 [XNIO-1 task-6] SPNtyU21T7WdEtGm15gT6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.364 [XNIO-1 task-6] SPNtyU21T7WdEtGm15gT6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.365 [XNIO-1 task-6] SPNtyU21T7WdEtGm15gT6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.369 [XNIO-1 task-4] nYayXVMjRvSSRYKykcdf9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.370 [XNIO-1 task-4] nYayXVMjRvSSRYKykcdf9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.370 [XNIO-1 task-4] nYayXVMjRvSSRYKykcdf9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.371 [XNIO-1 task-4] nYayXVMjRvSSRYKykcdf9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 47e5f47b-636c-4f81-b67b-a7f2f3125ae9 scope = null +09:00:43.373 [XNIO-1 task-6] SPNtyU21T7WdEtGm15gT6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.381 [XNIO-1 task-6] 1-7BXuV1RU2IcjQqFgX06Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.381 [XNIO-1 task-6] 1-7BXuV1RU2IcjQqFgX06Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.382 [XNIO-1 task-6] 1-7BXuV1RU2IcjQqFgX06Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.382 [XNIO-1 task-6] 1-7BXuV1RU2IcjQqFgX06Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.384 [XNIO-1 task-5] SMtJNFefSgWb-l_yfxyNEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.384 [XNIO-1 task-5] SMtJNFefSgWb-l_yfxyNEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.385 [XNIO-1 task-5] SMtJNFefSgWb-l_yfxyNEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.385 [XNIO-1 task-5] SMtJNFefSgWb-l_yfxyNEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BD1edGvOR86C5SmT0od_mQ redirectUri = http://localhost:8080/authorization +09:00:43.386 [XNIO-1 task-4] nYayXVMjRvSSRYKykcdf9A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.388 [XNIO-1 task-6] 1-7BXuV1RU2IcjQqFgX06Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.392 [XNIO-1 task-6] -G1v_tJDRzO0abo8aElKgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.392 [XNIO-1 task-6] -G1v_tJDRzO0abo8aElKgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.392 [XNIO-1 task-6] -G1v_tJDRzO0abo8aElKgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.393 [XNIO-1 task-6] -G1v_tJDRzO0abo8aElKgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.393 [XNIO-1 task-5] SMtJNFefSgWb-l_yfxyNEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.397 [XNIO-1 task-6] -G1v_tJDRzO0abo8aElKgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.407 [XNIO-1 task-4] 8fGhgURPSMGKr6D6f0BagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.407 [XNIO-1 task-4] 8fGhgURPSMGKr6D6f0BagA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.408 [XNIO-1 task-4] 8fGhgURPSMGKr6D6f0BagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.409 [XNIO-1 task-4] 8fGhgURPSMGKr6D6f0BagA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:43.411 [XNIO-1 task-5] hWXs7llwS76E0jQMXCvR8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.411 [XNIO-1 task-5] hWXs7llwS76E0jQMXCvR8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.411 [XNIO-1 task-5] hWXs7llwS76E0jQMXCvR8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.412 [XNIO-1 task-5] hWXs7llwS76E0jQMXCvR8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:43.415 [XNIO-1 task-4] 8fGhgURPSMGKr6D6f0BagA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.420 [XNIO-1 task-4] BfK8xz1bQYClI0KwYaffkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.420 [XNIO-1 task-4] BfK8xz1bQYClI0KwYaffkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.421 [XNIO-1 task-4] BfK8xz1bQYClI0KwYaffkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.421 [XNIO-1 task-4] BfK8xz1bQYClI0KwYaffkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:43.429 [XNIO-1 task-4] BfK8xz1bQYClI0KwYaffkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.430 [XNIO-1 task-5] hWXs7llwS76E0jQMXCvR8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.433 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:91bf5834-ebe7-4360-839a-e15acc86580c +09:00:43.435 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:91bf5834-ebe7-4360-839a-e15acc86580c +09:00:43.437 [XNIO-1 task-4] 4EJ53-ZISUmM9zxQ5k5oGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.438 [XNIO-1 task-4] 4EJ53-ZISUmM9zxQ5k5oGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.438 [XNIO-1 task-4] 4EJ53-ZISUmM9zxQ5k5oGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.439 [XNIO-1 task-4] 4EJ53-ZISUmM9zxQ5k5oGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.444 [XNIO-1 task-4] 4EJ53-ZISUmM9zxQ5k5oGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.454 [XNIO-1 task-4] 0TODlJ57SE2TihCQYYWtCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.454 [XNIO-1 task-4] 0TODlJ57SE2TihCQYYWtCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.455 [XNIO-1 task-4] 0TODlJ57SE2TihCQYYWtCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.455 [XNIO-1 task-4] 0TODlJ57SE2TihCQYYWtCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.462 [XNIO-1 task-4] 0TODlJ57SE2TihCQYYWtCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.466 [XNIO-1 task-4] j1R6-l7RTqi3BW5KRZLA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.466 [XNIO-1 task-4] j1R6-l7RTqi3BW5KRZLA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.467 [XNIO-1 task-4] j1R6-l7RTqi3BW5KRZLA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.468 [XNIO-1 task-5] 0I2U7X4TRKegIaO8q7rJxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.468 [XNIO-1 task-4] j1R6-l7RTqi3BW5KRZLA_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Rk21CohZSkC2EJ93qB44nQ redirectUri = http://localhost:8080/authorization +09:00:43.468 [XNIO-1 task-5] 0I2U7X4TRKegIaO8q7rJxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.468 [XNIO-1 task-5] 0I2U7X4TRKegIaO8q7rJxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.469 [XNIO-1 task-5] 0I2U7X4TRKegIaO8q7rJxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.475 [XNIO-1 task-5] 0I2U7X4TRKegIaO8q7rJxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.481 [XNIO-1 task-5] yTkniZHbQVG0oNe8J67fcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.481 [XNIO-1 task-4] j1R6-l7RTqi3BW5KRZLA_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.481 [XNIO-1 task-5] yTkniZHbQVG0oNe8J67fcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.481 [XNIO-1 task-6] 7VAobS1FQLu5W-FhYSGRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.481 [XNIO-1 task-6] 7VAobS1FQLu5W-FhYSGRtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.481 [XNIO-1 task-5] yTkniZHbQVG0oNe8J67fcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.481 [XNIO-1 task-6] 7VAobS1FQLu5W-FhYSGRtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.482 [XNIO-1 task-5] yTkniZHbQVG0oNe8J67fcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2Y4ZDk5YWEtMzA2Ny00YTdjLWE5MDYtYmE5MmU3MzEyYjFhOmpBbXdFY2RRUTVXZ0hYaHNBRVBra3c=", "Basic N2Y4ZDk5YWEtMzA2Ny00YTdjLWE5MDYtYmE5MmU3MzEyYjFhOmpBbXdFY2RRUTVXZ0hYaHNBRVBra3c=", authorization) +09:00:43.482 [XNIO-1 task-5] yTkniZHbQVG0oNe8J67fcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.490 [XNIO-1 task-6] 7VAobS1FQLu5W-FhYSGRtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:43.490 [XNIO-1 task-5] yTkniZHbQVG0oNe8J67fcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.490 [XNIO-1 task-5] yTkniZHbQVG0oNe8J67fcQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.492 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.503 [XNIO-1 task-5] BV0cRxtcSHOSVBPGn-sEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.503 [XNIO-1 task-5] BV0cRxtcSHOSVBPGn-sEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.504 [XNIO-1 task-5] BV0cRxtcSHOSVBPGn-sEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.505 [XNIO-1 task-5] BV0cRxtcSHOSVBPGn-sEcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.510 [XNIO-1 task-5] BV0cRxtcSHOSVBPGn-sEcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.512 [XNIO-1 task-6] dIER05W5QR61Zzk-Jtkd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.512 [XNIO-1 task-6] dIER05W5QR61Zzk-Jtkd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.514 [XNIO-1 task-6] dIER05W5QR61Zzk-Jtkd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.514 [XNIO-1 task-5] V6Xs2EL2RLaMQLU3FBR9-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.518 [XNIO-1 task-6] dIER05W5QR61Zzk-Jtkd3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 452a9f80-216f-4c42-9a71-b06054a311a8 scope = null +09:00:43.518 [XNIO-1 task-5] V6Xs2EL2RLaMQLU3FBR9-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.519 [XNIO-1 task-5] V6Xs2EL2RLaMQLU3FBR9-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.519 [XNIO-1 task-5] V6Xs2EL2RLaMQLU3FBR9-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2Y4ZDk5YWEtMzA2Ny00YTdjLWE5MDYtYmE5MmU3MzEyYjFhOmpBbXdFY2RRUTVXZ0hYaHNBRVBra3c=", "Basic N2Y4ZDk5YWEtMzA2Ny00YTdjLWE5MDYtYmE5MmU3MzEyYjFhOmpBbXdFY2RRUTVXZ0hYaHNBRVBra3c=", authorization) +09:00:43.523 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:452a9f80-216f-4c42-9a71-b06054a311a8 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 452a9f80-216f-4c42-9a71-b06054a311a8 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.528 [XNIO-1 task-5] V6Xs2EL2RLaMQLU3FBR9-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.535 [XNIO-1 task-5] lgNnrZ2gTNalRoBzJetX9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.535 [XNIO-1 task-5] lgNnrZ2gTNalRoBzJetX9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.535 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:452a9f80-216f-4c42-9a71-b06054a311a8 +09:00:43.536 [XNIO-1 task-5] lgNnrZ2gTNalRoBzJetX9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.536 [XNIO-1 task-5] lgNnrZ2gTNalRoBzJetX9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 43c85d29-1914-4a81-8bff-bebc3880f38c scope = null +09:00:43.543 [XNIO-1 task-6] vqZJA8RnRo2qjj0uhCK2mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.545 [XNIO-1 task-6] vqZJA8RnRo2qjj0uhCK2mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.545 [XNIO-1 task-6] vqZJA8RnRo2qjj0uhCK2mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.546 [XNIO-1 task-6] vqZJA8RnRo2qjj0uhCK2mA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.552 [XNIO-1 task-5] lgNnrZ2gTNalRoBzJetX9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.553 [XNIO-1 task-6] vqZJA8RnRo2qjj0uhCK2mA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.556 [XNIO-1 task-4] qN066b79QkaaiFlbUid37Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.556 [XNIO-1 task-4] qN066b79QkaaiFlbUid37Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.557 [XNIO-1 task-4] qN066b79QkaaiFlbUid37Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.557 [XNIO-1 task-4] qN066b79QkaaiFlbUid37Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dgBsLKNMRbuhPIUznkw_YA redirectUri = http://localhost:8080/authorization +09:00:43.565 [XNIO-1 task-6] xhrZjguAQSic7UwP1nJdvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.565 [XNIO-1 task-6] xhrZjguAQSic7UwP1nJdvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.566 [XNIO-1 task-6] xhrZjguAQSic7UwP1nJdvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.566 [XNIO-1 task-6] xhrZjguAQSic7UwP1nJdvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.571 [XNIO-1 task-4] qN066b79QkaaiFlbUid37Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:43.571 [XNIO-1 task-4] qN066b79QkaaiFlbUid37Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.572 [XNIO-1 task-5] ixvo1iNjQd-zmcXdY7WUqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.572 [XNIO-1 task-5] ixvo1iNjQd-zmcXdY7WUqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.572 [XNIO-1 task-6] xhrZjguAQSic7UwP1nJdvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.572 [XNIO-1 task-6] xhrZjguAQSic7UwP1nJdvw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.573 [XNIO-1 task-5] ixvo1iNjQd-zmcXdY7WUqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b389457b-bcf2-4efc-9f7c-0dbc46925f95 scope = null +09:00:43.573 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eb936e85 +09:00:43.581 [XNIO-1 task-6] wiqi3I4wSh2HYGF5T4d3mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.581 [XNIO-1 task-6] wiqi3I4wSh2HYGF5T4d3mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.581 [XNIO-1 task-6] wiqi3I4wSh2HYGF5T4d3mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.582 [XNIO-1 task-6] wiqi3I4wSh2HYGF5T4d3mA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.591 [XNIO-1 task-6] wiqi3I4wSh2HYGF5T4d3mA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.592 [XNIO-1 task-5] ixvo1iNjQd-zmcXdY7WUqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.603 [XNIO-1 task-6] ldjuqAXiQrWY2U2DyQG5-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.603 [XNIO-1 task-6] ldjuqAXiQrWY2U2DyQG5-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.604 [XNIO-1 task-6] ldjuqAXiQrWY2U2DyQG5-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.604 [XNIO-1 task-6] ldjuqAXiQrWY2U2DyQG5-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.611 [XNIO-1 task-6] ldjuqAXiQrWY2U2DyQG5-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.620 [XNIO-1 task-5] Qg5ojlXGQca438b4CdnmVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.620 [XNIO-1 task-5] Qg5ojlXGQca438b4CdnmVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.648 [XNIO-1 task-6] YhJUA5cnRUirR868xKZoRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.648 [XNIO-1 task-6] YhJUA5cnRUirR868xKZoRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.648 [XNIO-1 task-6] YhJUA5cnRUirR868xKZoRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.649 [XNIO-1 task-6] YhJUA5cnRUirR868xKZoRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VvOV3mv4TB-rDylLzIBu8A redirectUri = http://localhost:8080/authorization +09:00:43.651 [XNIO-1 task-5] Qg5ojlXGQca438b4CdnmVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.651 [XNIO-1 task-5] Qg5ojlXGQca438b4CdnmVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.657 [XNIO-1 task-6] YhJUA5cnRUirR868xKZoRA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.657 [XNIO-1 task-5] Qg5ojlXGQca438b4CdnmVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.659 [XNIO-1 task-4] glbbnb7nRxG2cmA_oJ-HUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.659 [XNIO-1 task-4] glbbnb7nRxG2cmA_oJ-HUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.659 [XNIO-1 task-4] glbbnb7nRxG2cmA_oJ-HUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.660 [XNIO-1 task-4] glbbnb7nRxG2cmA_oJ-HUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:43.677 [XNIO-1 task-6] 7Qd0CwyKS9CkKNU3g0iPKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.677 [XNIO-1 task-6] 7Qd0CwyKS9CkKNU3g0iPKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.677 [XNIO-1 task-6] 7Qd0CwyKS9CkKNU3g0iPKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.678 [XNIO-1 task-5] 55wHl0mGSqiNk91m2L820g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.678 [XNIO-1 task-6] 7Qd0CwyKS9CkKNU3g0iPKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:43.678 [XNIO-1 task-5] 55wHl0mGSqiNk91m2L820g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.678 [XNIO-1 task-5] 55wHl0mGSqiNk91m2L820g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.679 [XNIO-1 task-5] 55wHl0mGSqiNk91m2L820g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:43.687 [XNIO-1 task-5] 55wHl0mGSqiNk91m2L820g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.688 [XNIO-1 task-5] 55wHl0mGSqiNk91m2L820g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.689 [XNIO-1 task-4] glbbnb7nRxG2cmA_oJ-HUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.691 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3bce6fc5-5067-41e2-ba51-f2f1c9845f46 +09:00:43.696 [XNIO-1 task-6] 7Qd0CwyKS9CkKNU3g0iPKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.697 [XNIO-1 task-5] lZilQLa0QLeEPVfccygVyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.697 [XNIO-1 task-5] lZilQLa0QLeEPVfccygVyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.698 [XNIO-1 task-5] lZilQLa0QLeEPVfccygVyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.699 [XNIO-1 task-5] lZilQLa0QLeEPVfccygVyQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.705 [XNIO-1 task-5] lZilQLa0QLeEPVfccygVyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.719 [XNIO-1 task-6] RX7_u6fkT-C2QJo3btSXfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.721 [XNIO-1 task-6] RX7_u6fkT-C2QJo3btSXfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.721 [XNIO-1 task-6] RX7_u6fkT-C2QJo3btSXfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.721 [XNIO-1 task-6] RX7_u6fkT-C2QJo3btSXfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.722 [XNIO-1 task-5] sSC2P92vRGuz-KgmGepjZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.722 [XNIO-1 task-6] RX7_u6fkT-C2QJo3btSXfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.722 [XNIO-1 task-6] RX7_u6fkT-C2QJo3btSXfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:43.722 [XNIO-1 task-6] RX7_u6fkT-C2QJo3btSXfg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e29db964-1de0-4f83-a34c-d7f860e29d24 scope = null +09:00:43.730 [XNIO-1 task-5] sSC2P92vRGuz-KgmGepjZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e29db964-1de0-4f83-a34c-d7f860e29d24 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.733 [XNIO-1 task-6] qz-djEmgQTaEn9yocrZ0bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.734 [XNIO-1 task-6] qz-djEmgQTaEn9yocrZ0bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.734 [XNIO-1 task-6] qz-djEmgQTaEn9yocrZ0bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.735 [XNIO-1 task-6] qz-djEmgQTaEn9yocrZ0bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:43.736 [XNIO-1 task-5] 6AfNL8Q2TJOCOy0ysqgb2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.737 [XNIO-1 task-5] 6AfNL8Q2TJOCOy0ysqgb2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.737 [XNIO-1 task-5] 6AfNL8Q2TJOCOy0ysqgb2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.737 [XNIO-1 task-5] 6AfNL8Q2TJOCOy0ysqgb2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:43.741 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3bce6fc5-5067-41e2-ba51-f2f1c9845f46 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e29db964-1de0-4f83-a34c-d7f860e29d24 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:43.743 [XNIO-1 task-5] 6AfNL8Q2TJOCOy0ysqgb2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.754 [XNIO-1 task-5] iKcZaQehQiy05eS8Xbv34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.755 [XNIO-1 task-5] iKcZaQehQiy05eS8Xbv34A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.755 [XNIO-1 task-5] iKcZaQehQiy05eS8Xbv34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.756 [XNIO-1 task-5] iKcZaQehQiy05eS8Xbv34A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:43.763 [XNIO-1 task-5] iKcZaQehQiy05eS8Xbv34A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.770 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3bce6fc5-5067-41e2-ba51-f2f1c9845f46 +09:00:43.775 [XNIO-1 task-5] bHz8LEDRRo6m_LU-5Lmorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.776 [XNIO-1 task-5] bHz8LEDRRo6m_LU-5Lmorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.776 [XNIO-1 task-5] bHz8LEDRRo6m_LU-5Lmorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.776 [XNIO-1 task-6] zdh7Yh_SQKml3VSAk7pkQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.776 [XNIO-1 task-5] bHz8LEDRRo6m_LU-5Lmorg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:43.777 [XNIO-1 task-5] bHz8LEDRRo6m_LU-5Lmorg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.777 [XNIO-1 task-6] zdh7Yh_SQKml3VSAk7pkQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.777 [XNIO-1 task-6] zdh7Yh_SQKml3VSAk7pkQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3bce6fc5-5067-41e2-ba51-f2f1c9845f46 scope = null +09:00:43.780 [XNIO-1 task-4] WVyLNVQHSOGGAewCGKqJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.781 [XNIO-1 task-4] WVyLNVQHSOGGAewCGKqJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.781 [XNIO-1 task-4] WVyLNVQHSOGGAewCGKqJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.782 [XNIO-1 task-4] WVyLNVQHSOGGAewCGKqJqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fd641a2c-7e29-45f1-bf24-ad142d46451e scope = null +09:00:43.787 [XNIO-1 task-6] zdh7Yh_SQKml3VSAk7pkQw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.799 [XNIO-1 task-5] bHz8LEDRRo6m_LU-5Lmorg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.808 [XNIO-1 task-5] rG1mj49IQzq8e7gRYSmyXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.808 [XNIO-1 task-5] rG1mj49IQzq8e7gRYSmyXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.808 [XNIO-1 task-5] rG1mj49IQzq8e7gRYSmyXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.809 [XNIO-1 task-5] rG1mj49IQzq8e7gRYSmyXA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.815 [XNIO-1 task-5] rG1mj49IQzq8e7gRYSmyXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.815 [XNIO-1 task-4] WVyLNVQHSOGGAewCGKqJqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.822 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eb936e85 +09:00:43.825 [XNIO-1 task-4] eiCVk_wuQS2Cw_vbxNpPLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.825 [XNIO-1 task-4] eiCVk_wuQS2Cw_vbxNpPLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.826 [XNIO-1 task-4] eiCVk_wuQS2Cw_vbxNpPLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.831 [XNIO-1 task-4] eiCVk_wuQS2Cw_vbxNpPLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.841 [XNIO-1 task-4] eiCVk_wuQS2Cw_vbxNpPLA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.847 [XNIO-1 task-4] rnLqy_uFSqKdEc0-qL1YlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.847 [XNIO-1 task-4] rnLqy_uFSqKdEc0-qL1YlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.847 [XNIO-1 task-4] rnLqy_uFSqKdEc0-qL1YlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.848 [XNIO-1 task-4] rnLqy_uFSqKdEc0-qL1YlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.853 [XNIO-1 task-4] rnLqy_uFSqKdEc0-qL1YlA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.861 [XNIO-1 task-4] MxugbjtLRYKXvt_soYWQCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.861 [XNIO-1 task-4] MxugbjtLRYKXvt_soYWQCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.861 [XNIO-1 task-4] MxugbjtLRYKXvt_soYWQCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.862 [XNIO-1 task-4] MxugbjtLRYKXvt_soYWQCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.867 [XNIO-1 task-4] MxugbjtLRYKXvt_soYWQCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.880 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.881 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.881 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.881 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.881 [XNIO-1 task-5] fRcBClSHSwCvxjqdXZYSww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.882 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:43.882 [XNIO-1 task-5] fRcBClSHSwCvxjqdXZYSww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.882 [XNIO-1 task-5] fRcBClSHSwCvxjqdXZYSww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:43.884 [XNIO-1 task-6] POYkHuUJSR-GWeRKg5qfAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.884 [XNIO-1 task-6] POYkHuUJSR-GWeRKg5qfAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.884 [XNIO-1 task-6] POYkHuUJSR-GWeRKg5qfAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.885 [XNIO-1 task-6] POYkHuUJSR-GWeRKg5qfAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:43.890 [XNIO-1 task-5] fRcBClSHSwCvxjqdXZYSww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.894 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:43.894 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.894 [XNIO-1 task-4] h3htzqM5SmaAH0q9aDJDKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.896 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4fb2680f-5eb2-462f-8f76-112847340bdd +09:00:43.907 [XNIO-1 task-5] y4olH91sQOqFfhNCeWsnMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.907 [XNIO-1 task-5] y4olH91sQOqFfhNCeWsnMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:43.907 [XNIO-1 task-5] y4olH91sQOqFfhNCeWsnMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:43.908 [XNIO-1 task-5] y4olH91sQOqFfhNCeWsnMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:43.914 [XNIO-1 task-5] y4olH91sQOqFfhNCeWsnMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.920 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9aaca2f3-392f-40e0-9ac2-461c7cde38e0 +09:00:43.925 [XNIO-1 task-5] hZ0kl8_gQ2eduSH9hnccYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.925 [XNIO-1 task-5] hZ0kl8_gQ2eduSH9hnccYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.925 [XNIO-1 task-5] hZ0kl8_gQ2eduSH9hnccYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.927 [XNIO-1 task-5] hZ0kl8_gQ2eduSH9hnccYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.928 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9aaca2f3-392f-40e0-9ac2-461c7cde38e0 +09:00:43.933 [XNIO-1 task-5] hZ0kl8_gQ2eduSH9hnccYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.938 [XNIO-1 task-6] o_UqU5n1R-SpcDDPauWsjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.939 [XNIO-1 task-6] o_UqU5n1R-SpcDDPauWsjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.939 [XNIO-1 task-6] o_UqU5n1R-SpcDDPauWsjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.939 [XNIO-1 task-6] o_UqU5n1R-SpcDDPauWsjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = oE1boIjoTl-MkyzqsUWQfA redirectUri = http://localhost:8080/authorization +09:00:43.945 [XNIO-1 task-5] EcHNkfsjQ5u7gSa0Ia8lpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.945 [XNIO-1 task-5] EcHNkfsjQ5u7gSa0Ia8lpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.946 [XNIO-1 task-5] EcHNkfsjQ5u7gSa0Ia8lpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.946 [XNIO-1 task-5] EcHNkfsjQ5u7gSa0Ia8lpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.951 [XNIO-1 task-6] o_UqU5n1R-SpcDDPauWsjg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:43.951 [XNIO-1 task-5] EcHNkfsjQ5u7gSa0Ia8lpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.958 [XNIO-1 task-5] sb3712awQaeWC25rNab7MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.958 [XNIO-1 task-5] sb3712awQaeWC25rNab7MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.958 [XNIO-1 task-5] sb3712awQaeWC25rNab7MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.959 [XNIO-1 task-5] sb3712awQaeWC25rNab7MQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.964 [XNIO-1 task-5] sb3712awQaeWC25rNab7MQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:43.973 [XNIO-1 task-5] aqyrvofwSPWjuQR70qFE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.974 [XNIO-1 task-5] aqyrvofwSPWjuQR70qFE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.974 [XNIO-1 task-5] aqyrvofwSPWjuQR70qFE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.975 [XNIO-1 task-5] aqyrvofwSPWjuQR70qFE2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mgYXjte5R5aQMI-vhelOKw redirectUri = http://localhost:8080/authorization +09:00:43.979 [XNIO-1 task-6] ZG3L0XP6T5SoXG8cy6aglw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.979 [XNIO-1 task-6] ZG3L0XP6T5SoXG8cy6aglw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.981 [XNIO-1 task-6] ZG3L0XP6T5SoXG8cy6aglw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.981 [XNIO-1 task-6] ZG3L0XP6T5SoXG8cy6aglw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ULuu9gaxSISDN0REC1MbVg redirectUri = http://localhost:8080/authorization +09:00:43.982 [XNIO-1 task-4] 5mF11ntNS0u3QYR2NkvF0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.982 [XNIO-1 task-4] 5mF11ntNS0u3QYR2NkvF0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.982 [XNIO-1 task-4] 5mF11ntNS0u3QYR2NkvF0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:43.982 [XNIO-1 task-4] 5mF11ntNS0u3QYR2NkvF0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:43.990 [XNIO-1 task-6] ZG3L0XP6T5SoXG8cy6aglw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.994 [XNIO-1 task-4] 5mF11ntNS0u3QYR2NkvF0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:43.996 [XNIO-1 task-5] aqyrvofwSPWjuQR70qFE2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:43.997 [XNIO-1 task-5] aqyrvofwSPWjuQR70qFE2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.003 [XNIO-1 task-4] mTQPkzFSSeG0FzVunGBaVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.004 [XNIO-1 task-4] mTQPkzFSSeG0FzVunGBaVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.005 [XNIO-1 task-4] mTQPkzFSSeG0FzVunGBaVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.005 [XNIO-1 task-4] mTQPkzFSSeG0FzVunGBaVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.012 [XNIO-1 task-4] mTQPkzFSSeG0FzVunGBaVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.021 [XNIO-1 task-4] b1OQQ9aYS0-IQhFL2x0ohQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.021 [XNIO-1 task-4] b1OQQ9aYS0-IQhFL2x0ohQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.022 [XNIO-1 task-4] b1OQQ9aYS0-IQhFL2x0ohQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.022 [XNIO-1 task-4] b1OQQ9aYS0-IQhFL2x0ohQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.030 [XNIO-1 task-4] b1OQQ9aYS0-IQhFL2x0ohQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.043 [XNIO-1 task-4] ugI8XbFsSaGlltCGLWm6tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.043 [XNIO-1 task-4] ugI8XbFsSaGlltCGLWm6tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.043 [XNIO-1 task-4] ugI8XbFsSaGlltCGLWm6tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.044 [XNIO-1 task-4] ugI8XbFsSaGlltCGLWm6tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.055 [XNIO-1 task-4] ugI8XbFsSaGlltCGLWm6tQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.060 [XNIO-1 task-4] xc-BSLzMQzOnAkDK695mdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.060 [XNIO-1 task-4] xc-BSLzMQzOnAkDK695mdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.062 [XNIO-1 task-4] xc-BSLzMQzOnAkDK695mdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.062 [XNIO-1 task-4] xc-BSLzMQzOnAkDK695mdA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.069 [XNIO-1 task-4] xc-BSLzMQzOnAkDK695mdA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.077 [XNIO-1 task-4] Mzg9F4e2T4ablsxtKi5oEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.077 [XNIO-1 task-4] Mzg9F4e2T4ablsxtKi5oEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.078 [XNIO-1 task-4] Mzg9F4e2T4ablsxtKi5oEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.078 [XNIO-1 task-4] Mzg9F4e2T4ablsxtKi5oEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.086 [XNIO-1 task-4] Mzg9F4e2T4ablsxtKi5oEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.095 [XNIO-1 task-4] RQSHJ-j5S9ecKbgkVKQdKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.095 [XNIO-1 task-4] RQSHJ-j5S9ecKbgkVKQdKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.098 [XNIO-1 task-4] RQSHJ-j5S9ecKbgkVKQdKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.099 [XNIO-1 task-4] RQSHJ-j5S9ecKbgkVKQdKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.104 [XNIO-1 task-4] RQSHJ-j5S9ecKbgkVKQdKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.111 [XNIO-1 task-4] ZaY6U8RERiinXSFT93ZHHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.112 [XNIO-1 task-4] ZaY6U8RERiinXSFT93ZHHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.112 [XNIO-1 task-4] ZaY6U8RERiinXSFT93ZHHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.113 [XNIO-1 task-4] ZaY6U8RERiinXSFT93ZHHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.118 [XNIO-1 task-5] FO73CuTDTj6n-xRLvGvSuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.118 [XNIO-1 task-5] FO73CuTDTj6n-xRLvGvSuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.118 [XNIO-1 task-5] FO73CuTDTj6n-xRLvGvSuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.119 [XNIO-1 task-5] FO73CuTDTj6n-xRLvGvSuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3r_8d_ydSj2cXsk08epd2w redirectUri = http://localhost:8080/authorization +09:00:44.126 [XNIO-1 task-5] FO73CuTDTj6n-xRLvGvSuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.126 [XNIO-1 task-5] FO73CuTDTj6n-xRLvGvSuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.134 [XNIO-1 task-4] CnkKpay4RB-OBdYiQoQ0NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.134 [XNIO-1 task-4] CnkKpay4RB-OBdYiQoQ0NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.134 [XNIO-1 task-4] CnkKpay4RB-OBdYiQoQ0NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.135 [XNIO-1 task-4] CnkKpay4RB-OBdYiQoQ0NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:44.140 [XNIO-1 task-4] CnkKpay4RB-OBdYiQoQ0NQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.146 [XNIO-1 task-4] 3vkA-k-LRKOp9fbxV7W-xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.146 [XNIO-1 task-4] 3vkA-k-LRKOp9fbxV7W-xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.146 [XNIO-1 task-4] 3vkA-k-LRKOp9fbxV7W-xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.147 [XNIO-1 task-4] 3vkA-k-LRKOp9fbxV7W-xA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:44.150 [XNIO-1 task-5] p-oAPnmaRQaGF0OwvPBtXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.150 [XNIO-1 task-5] p-oAPnmaRQaGF0OwvPBtXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.151 [XNIO-1 task-5] p-oAPnmaRQaGF0OwvPBtXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.151 [XNIO-1 task-5] p-oAPnmaRQaGF0OwvPBtXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:44.158 [XNIO-1 task-5] p-oAPnmaRQaGF0OwvPBtXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.159 [XNIO-1 task-5] p-oAPnmaRQaGF0OwvPBtXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.163 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a27ddf50-a4cb-4033-834f-2effb020843c +09:00:44.161 [XNIO-1 task-4] 3vkA-k-LRKOp9fbxV7W-xA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.163 [XNIO-1 task-6] ajJvUTjjQX2AyIsISVvrqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.163 [XNIO-1 task-4] 3vkA-k-LRKOp9fbxV7W-xA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.164 [XNIO-1 task-6] ajJvUTjjQX2AyIsISVvrqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.164 [XNIO-1 task-6] ajJvUTjjQX2AyIsISVvrqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = nU2gQez5Q3a5c2mXT7C_8w redirectUri = http://localhost:8080/authorization +09:00:44.172 [XNIO-1 task-6] ajJvUTjjQX2AyIsISVvrqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.172 [XNIO-1 task-6] ajJvUTjjQX2AyIsISVvrqg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:44.173 [XNIO-1 task-4] W6hLifnxTTWE4bL_Tyzd3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.173 [XNIO-1 task-4] W6hLifnxTTWE4bL_Tyzd3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.175 [XNIO-1 task-4] W6hLifnxTTWE4bL_Tyzd3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.178 [XNIO-1 task-6] aeKK9Xp9Q9a4lYEO7V_WBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.178 [XNIO-1 task-6] aeKK9Xp9Q9a4lYEO7V_WBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.179 [XNIO-1 task-6] aeKK9Xp9Q9a4lYEO7V_WBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.181 [XNIO-1 task-6] aeKK9Xp9Q9a4lYEO7V_WBg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a27ddf50-a4cb-4033-834f-2effb020843c scope = null +09:00:44.182 [XNIO-1 task-4] W6hLifnxTTWE4bL_Tyzd3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.189 [XNIO-1 task-4] tiVs2xyCS1KUG4LTMr6-Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.190 [XNIO-1 task-4] tiVs2xyCS1KUG4LTMr6-Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.190 [XNIO-1 task-4] tiVs2xyCS1KUG4LTMr6-Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.191 [XNIO-1 task-4] tiVs2xyCS1KUG4LTMr6-Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", authorization) +09:00:44.194 [XNIO-1 task-6] aeKK9Xp9Q9a4lYEO7V_WBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.195 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd5a612f +09:00:44.196 [XNIO-1 task-4] tiVs2xyCS1KUG4LTMr6-Xw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.204 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd5a612f +09:00:44.206 [XNIO-1 task-6] ZDuN1fmIT5CUzF_itfhASQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.206 [XNIO-1 task-6] ZDuN1fmIT5CUzF_itfhASQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.207 [XNIO-1 task-6] ZDuN1fmIT5CUzF_itfhASQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.209 [XNIO-1 task-6] ZDuN1fmIT5CUzF_itfhASQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.214 [XNIO-1 task-6] ZDuN1fmIT5CUzF_itfhASQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.218 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd5a612f +09:00:44.220 [XNIO-1 task-6] yGe2UnJ2QP6tL6CZ7VqjUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.220 [XNIO-1 task-6] yGe2UnJ2QP6tL6CZ7VqjUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.222 [XNIO-1 task-6] yGe2UnJ2QP6tL6CZ7VqjUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.222 [XNIO-1 task-6] yGe2UnJ2QP6tL6CZ7VqjUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.229 [XNIO-1 task-6] yGe2UnJ2QP6tL6CZ7VqjUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.246 [XNIO-1 task-6] I0sfPzWnShmqmJ7Sy9GcmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.246 [XNIO-1 task-6] I0sfPzWnShmqmJ7Sy9GcmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.247 [XNIO-1 task-6] I0sfPzWnShmqmJ7Sy9GcmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.247 [XNIO-1 task-6] I0sfPzWnShmqmJ7Sy9GcmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.252 [XNIO-1 task-6] I0sfPzWnShmqmJ7Sy9GcmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.256 [XNIO-1 task-6] ePYmbTiVTPGk_szTYmuPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.256 [XNIO-1 task-6] ePYmbTiVTPGk_szTYmuPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.256 [XNIO-1 task-6] ePYmbTiVTPGk_szTYmuPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.257 [XNIO-1 task-6] ePYmbTiVTPGk_szTYmuPgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3jhiltkwQV2NAx11VKQqHQ redirectUri = http://localhost:8080/authorization +09:00:44.261 [XNIO-1 task-4] _m1YUskiS1mC3zLwHJfHjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.261 [XNIO-1 task-4] _m1YUskiS1mC3zLwHJfHjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.262 [XNIO-1 task-4] _m1YUskiS1mC3zLwHJfHjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.262 [XNIO-1 task-4] _m1YUskiS1mC3zLwHJfHjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.270 [XNIO-1 task-6] ePYmbTiVTPGk_szTYmuPgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.283 [XNIO-1 task-4] _m1YUskiS1mC3zLwHJfHjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.289 [XNIO-1 task-6] 4VGBxCzvQOyI3Zed_vDS8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.289 [XNIO-1 task-6] 4VGBxCzvQOyI3Zed_vDS8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.290 [XNIO-1 task-6] 4VGBxCzvQOyI3Zed_vDS8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.290 [XNIO-1 task-6] 4VGBxCzvQOyI3Zed_vDS8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:44.296 [XNIO-1 task-6] 4VGBxCzvQOyI3Zed_vDS8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.312 [XNIO-1 task-6] FvY0Q3ZsRJK2sDlUl6Fo1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.313 [XNIO-1 task-6] FvY0Q3ZsRJK2sDlUl6Fo1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.314 [XNIO-1 task-6] FvY0Q3ZsRJK2sDlUl6Fo1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.314 [XNIO-1 task-6] FvY0Q3ZsRJK2sDlUl6Fo1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:44.320 [XNIO-1 task-6] FvY0Q3ZsRJK2sDlUl6Fo1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.322 [XNIO-1 task-4] xyCf0JDUTVOi79fvQLoPVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.322 [XNIO-1 task-4] xyCf0JDUTVOi79fvQLoPVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.323 [XNIO-1 task-4] xyCf0JDUTVOi79fvQLoPVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.323 [XNIO-1 task-4] xyCf0JDUTVOi79fvQLoPVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:44.333 [XNIO-1 task-4] xyCf0JDUTVOi79fvQLoPVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.334 [XNIO-1 task-4] xyCf0JDUTVOi79fvQLoPVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.337 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.342 [XNIO-1 task-6] V1yNDiC9R9y8yPbxR2MeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.344 [XNIO-1 task-6] V1yNDiC9R9y8yPbxR2MeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.344 [XNIO-1 task-6] V1yNDiC9R9y8yPbxR2MeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.345 [XNIO-1 task-6] V1yNDiC9R9y8yPbxR2MeJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.351 [XNIO-1 task-6] V1yNDiC9R9y8yPbxR2MeJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.358 [XNIO-1 task-4] eCvfu5lpQGqCopKT2j4-aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.358 [XNIO-1 task-4] eCvfu5lpQGqCopKT2j4-aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.358 [XNIO-1 task-4] eCvfu5lpQGqCopKT2j4-aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.359 [XNIO-1 task-4] eCvfu5lpQGqCopKT2j4-aA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.364 [XNIO-1 task-4] eCvfu5lpQGqCopKT2j4-aA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.372 [XNIO-1 task-4] oaKzFrUFSLu7LoA1iKkZqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.372 [XNIO-1 task-4] oaKzFrUFSLu7LoA1iKkZqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.373 [XNIO-1 task-4] oaKzFrUFSLu7LoA1iKkZqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.373 [XNIO-1 task-4] oaKzFrUFSLu7LoA1iKkZqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.380 [XNIO-1 task-4] oaKzFrUFSLu7LoA1iKkZqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.392 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.392 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.392 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.392 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.392 [XNIO-1 task-6] -NtbKAEMR5eU0FbeXZD6jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.392 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.393 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:44.393 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2W38-sMLRt6CeTJ1VOFNJA redirectUri = http://localhost:8080/authorization +09:00:44.400 [XNIO-1 task-4] d6w-Q93pSTuaAVmcoC5ztA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.401 [XNIO-1 task-6] -NtbKAEMR5eU0FbeXZD6jw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.409 [XNIO-1 task-6] VHOePatjQAa-mas0Ly3nbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.409 [XNIO-1 task-6] VHOePatjQAa-mas0Ly3nbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.409 [XNIO-1 task-6] VHOePatjQAa-mas0Ly3nbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.410 [XNIO-1 task-6] VHOePatjQAa-mas0Ly3nbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", authorization) +09:00:44.416 [XNIO-1 task-6] VHOePatjQAa-mas0Ly3nbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.416 [XNIO-1 task-4] F6nwVKEmR7qCb8O9MgR9OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.418 [XNIO-1 task-4] F6nwVKEmR7qCb8O9MgR9OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.418 [XNIO-1 task-4] F6nwVKEmR7qCb8O9MgR9OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.420 [XNIO-1 task-6] WxT-cmRwS6edMsrD9BKogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.420 [XNIO-1 task-6] WxT-cmRwS6edMsrD9BKogw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.420 [XNIO-1 task-4] F6nwVKEmR7qCb8O9MgR9OA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:44.420 [XNIO-1 task-6] WxT-cmRwS6edMsrD9BKogw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.421 [XNIO-1 task-6] WxT-cmRwS6edMsrD9BKogw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WIz0n9K8Tiy_W_pWKkUFRQ redirectUri = http://localhost:8080/authorization +09:00:44.426 [XNIO-1 task-5] uzILVAllQUeNBVLGzaIn_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.426 [XNIO-1 task-5] uzILVAllQUeNBVLGzaIn_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.427 [XNIO-1 task-5] uzILVAllQUeNBVLGzaIn_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.427 [XNIO-1 task-5] uzILVAllQUeNBVLGzaIn_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:44.428 [XNIO-1 task-5] uzILVAllQUeNBVLGzaIn_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.428 [XNIO-1 task-6] WxT-cmRwS6edMsrD9BKogw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.435 [XNIO-1 task-5] uzILVAllQUeNBVLGzaIn_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.445 [XNIO-1 task-5] hSNA2QhlSaKrDwAYYIOsOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.446 [XNIO-1 task-4] F6nwVKEmR7qCb8O9MgR9OA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.446 [XNIO-1 task-4] F6nwVKEmR7qCb8O9MgR9OA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.446 [XNIO-1 task-5] hSNA2QhlSaKrDwAYYIOsOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.447 [XNIO-1 task-5] hSNA2QhlSaKrDwAYYIOsOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.449 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:528aaf83-4ae3-41f8-ad67-efc042b7f210 +09:00:44.456 [XNIO-1 task-5] hSNA2QhlSaKrDwAYYIOsOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.465 [XNIO-1 task-6] Ph50kx9FQue04KoUckz1bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.465 [XNIO-1 task-6] Ph50kx9FQue04KoUckz1bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.466 [XNIO-1 task-6] Ph50kx9FQue04KoUckz1bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.466 [XNIO-1 task-6] Ph50kx9FQue04KoUckz1bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:44.472 [XNIO-1 task-6] Ph50kx9FQue04KoUckz1bw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.500 [XNIO-1 task-6] rTEle96RSMyKyI1hF7x_BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.501 [XNIO-1 task-6] rTEle96RSMyKyI1hF7x_BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.501 [XNIO-1 task-6] rTEle96RSMyKyI1hF7x_BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.501 [XNIO-1 task-6] rTEle96RSMyKyI1hF7x_BA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:44.510 [XNIO-1 task-6] rTEle96RSMyKyI1hF7x_BA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.524 [XNIO-1 task-6] V7nxBvJQTTmFgD-S_1KHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.524 [XNIO-1 task-6] V7nxBvJQTTmFgD-S_1KHxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.524 [XNIO-1 task-6] V7nxBvJQTTmFgD-S_1KHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.525 [XNIO-1 task-6] V7nxBvJQTTmFgD-S_1KHxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:44.534 [XNIO-1 task-6] V7nxBvJQTTmFgD-S_1KHxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.542 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3fee7dc0-0bb5-40be-aeed-70b760e0fa2b +09:00:44.547 [XNIO-1 task-6] ecI21OAZSqKOIu_QLNMncw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.547 [XNIO-1 task-6] ecI21OAZSqKOIu_QLNMncw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.548 [XNIO-1 task-6] ecI21OAZSqKOIu_QLNMncw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.550 [XNIO-1 task-6] ecI21OAZSqKOIu_QLNMncw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.553 [XNIO-1 task-4] efomkoA1S4urEBzq_u5kzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.556 [XNIO-1 task-6] ecI21OAZSqKOIu_QLNMncw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.558 [XNIO-1 task-4] efomkoA1S4urEBzq_u5kzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.567 [XNIO-1 task-4] efomkoA1S4urEBzq_u5kzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.568 [XNIO-1 task-6] 2wM8It15S7iFXDKY90MLQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.569 [XNIO-1 task-6] 2wM8It15S7iFXDKY90MLQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.569 [XNIO-1 task-4] efomkoA1S4urEBzq_u5kzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:44.569 [XNIO-1 task-6] 2wM8It15S7iFXDKY90MLQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.570 [XNIO-1 task-6] 2wM8It15S7iFXDKY90MLQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:44.578 [XNIO-1 task-6] 2wM8It15S7iFXDKY90MLQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.583 [XNIO-1 task-6] 47WhZLLGTU2RvRgP9sHpNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.583 [XNIO-1 task-6] 47WhZLLGTU2RvRgP9sHpNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.584 [XNIO-1 task-4] efomkoA1S4urEBzq_u5kzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.584 [XNIO-1 task-6] 47WhZLLGTU2RvRgP9sHpNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.584 [XNIO-1 task-4] efomkoA1S4urEBzq_u5kzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.585 [XNIO-1 task-6] 47WhZLLGTU2RvRgP9sHpNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.587 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:44.590 [XNIO-1 task-6] 47WhZLLGTU2RvRgP9sHpNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.595 [XNIO-1 task-6] RcP0d8m-RNuyY2jGvdAHuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.595 [XNIO-1 task-6] RcP0d8m-RNuyY2jGvdAHuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.596 [XNIO-1 task-6] RcP0d8m-RNuyY2jGvdAHuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.596 [XNIO-1 task-6] RcP0d8m-RNuyY2jGvdAHuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.601 [XNIO-1 task-6] RcP0d8m-RNuyY2jGvdAHuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.609 [XNIO-1 task-6] Bqf-jvIqR5KAZvbfoWKgCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.609 [XNIO-1 task-6] Bqf-jvIqR5KAZvbfoWKgCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.609 [XNIO-1 task-6] Bqf-jvIqR5KAZvbfoWKgCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.609 [XNIO-1 task-6] Bqf-jvIqR5KAZvbfoWKgCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.613 [XNIO-1 task-4] wGsJObrPTWmdX4vUimwtew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.613 [XNIO-1 task-4] wGsJObrPTWmdX4vUimwtew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.613 [XNIO-1 task-4] wGsJObrPTWmdX4vUimwtew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.614 [XNIO-1 task-4] wGsJObrPTWmdX4vUimwtew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9GlLUERIQIK3rr5Jv4xS0g redirectUri = http://localhost:8080/authorization +09:00:44.616 [XNIO-1 task-6] Bqf-jvIqR5KAZvbfoWKgCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.624 [XNIO-1 task-6] uaTFT-qlRHSD_vTEjsd5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.624 [XNIO-1 task-6] uaTFT-qlRHSD_vTEjsd5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.625 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:740e3802-94a4-455c-b799-87f9c7fbbd2a +09:00:44.625 [XNIO-1 task-6] uaTFT-qlRHSD_vTEjsd5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.625 [XNIO-1 task-6] uaTFT-qlRHSD_vTEjsd5ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:44.626 [XNIO-1 task-4] wGsJObrPTWmdX4vUimwtew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.626 [XNIO-1 task-4] wGsJObrPTWmdX4vUimwtew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.634 [XNIO-1 task-6] uaTFT-qlRHSD_vTEjsd5ig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.644 [XNIO-1 task-4] 0z7s3FN7T8mJLqAMLjKsRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.644 [XNIO-1 task-4] 0z7s3FN7T8mJLqAMLjKsRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.644 [XNIO-1 task-4] 0z7s3FN7T8mJLqAMLjKsRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.645 [XNIO-1 task-6] en06Gld7TEOYqzymQd03BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.645 [XNIO-1 task-4] 0z7s3FN7T8mJLqAMLjKsRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dPiYUo0IQTKTJZoTgljJWw redirectUri = http://localhost:8080/authorization +09:00:44.645 [XNIO-1 task-6] en06Gld7TEOYqzymQd03BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.645 [XNIO-1 task-6] en06Gld7TEOYqzymQd03BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.646 [XNIO-1 task-5] p-VYuIYWTPCGNV2PVL3vWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.646 [XNIO-1 task-5] p-VYuIYWTPCGNV2PVL3vWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.646 [XNIO-1 task-6] en06Gld7TEOYqzymQd03BA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.648 [XNIO-1 task-5] p-VYuIYWTPCGNV2PVL3vWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.648 [XNIO-1 task-5] p-VYuIYWTPCGNV2PVL3vWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 12557c97-5969-4663-8ee7-bd88d2c47801 scope = null +09:00:44.656 [XNIO-1 task-6] en06Gld7TEOYqzymQd03BA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.660 [XNIO-1 task-5] p-VYuIYWTPCGNV2PVL3vWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.668 [XNIO-1 task-6] 4JL_eM_ERNSUVWFgKUJu-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.668 [XNIO-1 task-4] 0z7s3FN7T8mJLqAMLjKsRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.668 [XNIO-1 task-4] 0z7s3FN7T8mJLqAMLjKsRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.669 [XNIO-1 task-6] 4JL_eM_ERNSUVWFgKUJu-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.669 [XNIO-1 task-6] 4JL_eM_ERNSUVWFgKUJu-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:44.669 [XNIO-1 task-6] 4JL_eM_ERNSUVWFgKUJu-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.673 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2db0d375-6fc9-4b95-9f71-f160c8bf29fd +09:00:44.674 [XNIO-1 task-6] 4JL_eM_ERNSUVWFgKUJu-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.691 [XNIO-1 task-4] nSSh_e29TKmmifWR-7stIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.691 [XNIO-1 task-4] nSSh_e29TKmmifWR-7stIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.691 [XNIO-1 task-4] nSSh_e29TKmmifWR-7stIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.692 [XNIO-1 task-4] nSSh_e29TKmmifWR-7stIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:44.696 [XNIO-1 task-6] I5XeDigvTqys8yxXyQHONg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.696 [XNIO-1 task-6] I5XeDigvTqys8yxXyQHONg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.697 [XNIO-1 task-6] I5XeDigvTqys8yxXyQHONg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.697 [XNIO-1 task-6] I5XeDigvTqys8yxXyQHONg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:44.702 [XNIO-1 task-6] I5XeDigvTqys8yxXyQHONg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.704 [XNIO-1 task-6] I5XeDigvTqys8yxXyQHONg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.713 [XNIO-1 task-6] SGBQJdNjQw-EX-BxKVSV-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.713 [XNIO-1 task-6] SGBQJdNjQw-EX-BxKVSV-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.713 [XNIO-1 task-6] SGBQJdNjQw-EX-BxKVSV-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.713 [XNIO-1 task-6] SGBQJdNjQw-EX-BxKVSV-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzQwZTM4MDItOTRhNC00NTVjLWI3OTktODdmOWM3ZmJiZDJhOm90LV9ZV1ZIUkUyY09YNzdlS0tvZFE=", "Basic NzQwZTM4MDItOTRhNC00NTVjLWI3OTktODdmOWM3ZmJiZDJhOm90LV9ZV1ZIUkUyY09YNzdlS0tvZFE=", authorization) +09:00:44.722 [XNIO-1 task-4] nSSh_e29TKmmifWR-7stIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.722 [XNIO-1 task-4] nSSh_e29TKmmifWR-7stIg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.744 [XNIO-1 task-4] 5f5bey88TDyI_R280e9sKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.745 [XNIO-1 task-4] 5f5bey88TDyI_R280e9sKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.745 [XNIO-1 task-4] 5f5bey88TDyI_R280e9sKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.745 [XNIO-1 task-4] 5f5bey88TDyI_R280e9sKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:44.750 [XNIO-1 task-6] pKzJPwCBTOK83SO0_oE7yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.753 [XNIO-1 task-6] pKzJPwCBTOK83SO0_oE7yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.753 [XNIO-1 task-6] pKzJPwCBTOK83SO0_oE7yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.753 [XNIO-1 task-6] pKzJPwCBTOK83SO0_oE7yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhY2EyZjMtMzkyZi00MGUwLTlhYzItNDYxYzdjZGUzOGUwOlNoam9ONXIyVGx1WkhZaGFUeXFQZEE=", "Basic OWFhY2EyZjMtMzkyZi00MGUwLTlhYzItNDYxYzdjZGUzOGUwOlNoam9ONXIyVGx1WkhZaGFUeXFQZEE=", authorization) +09:00:44.756 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:740e3802-94a4-455c-b799-87f9c7fbbd2a +09:00:44.761 [XNIO-1 task-6] pKzJPwCBTOK83SO0_oE7yg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.761 [XNIO-1 task-6] pKzJPwCBTOK83SO0_oE7yg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.766 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:44.768 [XNIO-1 task-6] LpbZ9xerRFOw3fTYzrCV-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.769 [XNIO-1 task-6] LpbZ9xerRFOw3fTYzrCV-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.771 [XNIO-1 task-6] LpbZ9xerRFOw3fTYzrCV-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.774 [XNIO-1 task-6] LpbZ9xerRFOw3fTYzrCV-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", authorization) +09:00:44.783 [XNIO-1 task-4] 0jba2woYReGOYJA7ojhE-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.783 [XNIO-1 task-4] 0jba2woYReGOYJA7ojhE-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.782 [XNIO-1 task-6] LpbZ9xerRFOw3fTYzrCV-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.789 [XNIO-1 task-4] 0jba2woYReGOYJA7ojhE-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.789 [XNIO-1 task-4] 0jba2woYReGOYJA7ojhE-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:44.798 [XNIO-1 task-6] 0rvd5gICTjODX9sfemw79Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.798 [XNIO-1 task-6] 0rvd5gICTjODX9sfemw79Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.798 [XNIO-1 task-6] 0rvd5gICTjODX9sfemw79Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.799 [XNIO-1 task-6] 0rvd5gICTjODX9sfemw79Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:44.809 [XNIO-1 task-5] Gg9eAsQ0RO29mXQLlLiI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.809 [XNIO-1 task-5] Gg9eAsQ0RO29mXQLlLiI7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.810 [XNIO-1 task-5] Gg9eAsQ0RO29mXQLlLiI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.810 [XNIO-1 task-6] 0rvd5gICTjODX9sfemw79Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.810 [XNIO-1 task-6] 0rvd5gICTjODX9sfemw79Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.815 [XNIO-1 task-4] 0jba2woYReGOYJA7ojhE-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.816 [XNIO-1 task-4] 0jba2woYReGOYJA7ojhE-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.818 [XNIO-1 task-6] Hu7nt761SN-F3Fs1-M1gAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.819 [XNIO-1 task-5] Gg9eAsQ0RO29mXQLlLiI7w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.819 [XNIO-1 task-5] Gg9eAsQ0RO29mXQLlLiI7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.819 [XNIO-1 task-6] Hu7nt761SN-F3Fs1-M1gAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.820 [XNIO-1 task-6] Hu7nt761SN-F3Fs1-M1gAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", authorization) +09:00:44.822 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:002003e5-6fe9-40c9-b758-f2f8ba86693b +09:00:44.827 [XNIO-1 task-6] Hu7nt761SN-F3Fs1-M1gAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.833 [XNIO-1 task-5] hGu_OEBbQYKVBp5jDxQMdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.833 [XNIO-1 task-5] hGu_OEBbQYKVBp5jDxQMdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.835 [XNIO-1 task-5] hGu_OEBbQYKVBp5jDxQMdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.836 [XNIO-1 task-5] hGu_OEBbQYKVBp5jDxQMdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", authorization) +09:00:44.844 [XNIO-1 task-5] hGu_OEBbQYKVBp5jDxQMdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.851 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:dd1632e2-1692-4101-92c9-97086b4d20fe +09:00:44.852 [XNIO-1 task-5] xJYe-bWWR5mKPcfXQH0Rcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.852 [XNIO-1 task-5] xJYe-bWWR5mKPcfXQH0Rcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.853 [XNIO-1 task-5] xJYe-bWWR5mKPcfXQH0Rcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.853 [XNIO-1 task-6] 0cG6QqGkQ6y1Pg2K_tmK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.856 [XNIO-1 task-5] xJYe-bWWR5mKPcfXQH0Rcw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.856 [XNIO-1 task-6] 0cG6QqGkQ6y1Pg2K_tmK5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.856 [XNIO-1 task-6] 0cG6QqGkQ6y1Pg2K_tmK5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.857 [XNIO-1 task-6] 0cG6QqGkQ6y1Pg2K_tmK5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LqoNIs8ISqaYXkVERYbj-g redirectUri = http://localhost:8080/authorization +09:00:44.860 [XNIO-1 task-4] tGyCipXXRPKN1IDsnaOOww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.860 [XNIO-1 task-4] tGyCipXXRPKN1IDsnaOOww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.861 [XNIO-1 task-4] tGyCipXXRPKN1IDsnaOOww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.861 [XNIO-1 task-4] tGyCipXXRPKN1IDsnaOOww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PFPQXW0CTguN0oaoTY44Xw redirectUri = http://localhost:8080/authorization +09:00:44.864 [XNIO-1 task-5] xJYe-bWWR5mKPcfXQH0Rcw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.867 [XNIO-1 task-6] 0cG6QqGkQ6y1Pg2K_tmK5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.869 [XNIO-1 task-4] tGyCipXXRPKN1IDsnaOOww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.869 [XNIO-1 task-4] tGyCipXXRPKN1IDsnaOOww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.871 [XNIO-1 task-5] qxt0NsmySfiHOHhmNNz0-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.871 [XNIO-1 task-5] qxt0NsmySfiHOHhmNNz0-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.872 [XNIO-1 task-5] qxt0NsmySfiHOHhmNNz0-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.874 [XNIO-1 task-5] qxt0NsmySfiHOHhmNNz0-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.881 [XNIO-1 task-5] qxt0NsmySfiHOHhmNNz0-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.882 [XNIO-1 task-4] 9x83hLaaREWqFbQWq1pBEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.882 [XNIO-1 task-4] 9x83hLaaREWqFbQWq1pBEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.883 [XNIO-1 task-4] 9x83hLaaREWqFbQWq1pBEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.884 [XNIO-1 task-4] 9x83hLaaREWqFbQWq1pBEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:44.887 [XNIO-1 task-5] j3YeFL1IT3q0pL-ZwibshQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.884 [XNIO-1 task-4] 9x83hLaaREWqFbQWq1pBEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 002003e5-6fe9-40c9-b758-f2f8ba86693b scope = null +09:00:44.888 [XNIO-1 task-5] j3YeFL1IT3q0pL-ZwibshQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.888 [XNIO-1 task-5] j3YeFL1IT3q0pL-ZwibshQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:44.896 [XNIO-1 task-5] j3YeFL1IT3q0pL-ZwibshQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.901 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:44.905 [XNIO-1 task-5] 5yKGpytaRou4-yFRgsGAtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.905 [XNIO-1 task-5] 5yKGpytaRou4-yFRgsGAtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.906 [XNIO-1 task-5] 5yKGpytaRou4-yFRgsGAtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.906 [XNIO-1 task-5] 5yKGpytaRou4-yFRgsGAtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.912 [XNIO-1 task-4] 9x83hLaaREWqFbQWq1pBEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.914 [XNIO-1 task-5] 5yKGpytaRou4-yFRgsGAtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.920 [XNIO-1 task-5] 3eyZij1DTCGwE2FbWsc-QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.920 [XNIO-1 task-5] 3eyZij1DTCGwE2FbWsc-QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.921 [XNIO-1 task-5] 3eyZij1DTCGwE2FbWsc-QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:44.922 [XNIO-1 task-5] 3eyZij1DTCGwE2FbWsc-QA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:44.927 [XNIO-1 task-5] 3eyZij1DTCGwE2FbWsc-QA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.931 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73f4a61a +09:00:44.934 [XNIO-1 task-5] 7gRknl34S6-ppgnT-FmD5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.934 [XNIO-1 task-5] 7gRknl34S6-ppgnT-FmD5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.934 [XNIO-1 task-5] 7gRknl34S6-ppgnT-FmD5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.935 [XNIO-1 task-5] 7gRknl34S6-ppgnT-FmD5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.935 [XNIO-1 task-4] LIhDFyGOQHi5ZBLaovAJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.935 [XNIO-1 task-4] LIhDFyGOQHi5ZBLaovAJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.935 [XNIO-1 task-4] LIhDFyGOQHi5ZBLaovAJkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.936 [XNIO-1 task-4] LIhDFyGOQHi5ZBLaovAJkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 39b2f4c6-29fb-4bc6-9c54-5780f981528e scope = null +09:00:44.939 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73f4a61a +09:00:44.940 [XNIO-1 task-6] 6Z0b17kmQcWwkVKVEBIvfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.940 [XNIO-1 task-6] 6Z0b17kmQcWwkVKVEBIvfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:44.940 [XNIO-1 task-5] 7gRknl34S6-ppgnT-FmD5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.940 [XNIO-1 task-6] 6Z0b17kmQcWwkVKVEBIvfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.941 [XNIO-1 task-6] 6Z0b17kmQcWwkVKVEBIvfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = EjVTkyGMQ9esyiBSFlP9jg redirectUri = http://localhost:8080/authorization +09:00:44.945 [XNIO-1 task-5] w1jmgSZhRfKyiijkn7iJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.945 [XNIO-1 task-5] w1jmgSZhRfKyiijkn7iJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.945 [XNIO-1 task-5] w1jmgSZhRfKyiijkn7iJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.946 [XNIO-1 task-5] w1jmgSZhRfKyiijkn7iJzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.948 [XNIO-1 task-4] LIhDFyGOQHi5ZBLaovAJkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.954 [XNIO-1 task-5] w1jmgSZhRfKyiijkn7iJzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:44.954 [XNIO-1 task-6] 6Z0b17kmQcWwkVKVEBIvfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:44.959 [XNIO-1 task-6] 6Z0b17kmQcWwkVKVEBIvfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.966 [XNIO-1 task-5] 8mT8hcXVStiTJ0jdgQBXTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.966 [XNIO-1 task-5] 8mT8hcXVStiTJ0jdgQBXTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.966 [XNIO-1 task-5] 8mT8hcXVStiTJ0jdgQBXTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.967 [XNIO-1 task-5] 8mT8hcXVStiTJ0jdgQBXTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.977 [XNIO-1 task-5] 8mT8hcXVStiTJ0jdgQBXTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:44.984 [XNIO-1 task-5] PF5PEo6_QM2F9aNOV59qeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.985 [XNIO-1 task-5] PF5PEo6_QM2F9aNOV59qeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.985 [XNIO-1 task-5] PF5PEo6_QM2F9aNOV59qeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:44.985 [XNIO-1 task-5] PF5PEo6_QM2F9aNOV59qeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:44.993 [XNIO-1 task-5] PF5PEo6_QM2F9aNOV59qeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.003 [XNIO-1 task-5] XdSJHaExQkSrhP5aaEu0hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.005 [XNIO-1 task-5] XdSJHaExQkSrhP5aaEu0hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.006 [XNIO-1 task-5] XdSJHaExQkSrhP5aaEu0hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.006 [XNIO-1 task-5] XdSJHaExQkSrhP5aaEu0hA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.012 [XNIO-1 task-5] XdSJHaExQkSrhP5aaEu0hA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.021 [XNIO-1 task-5] mcwxWmr6Th6Fkwilx-uC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.021 [XNIO-1 task-5] mcwxWmr6Th6Fkwilx-uC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.022 [XNIO-1 task-5] mcwxWmr6Th6Fkwilx-uC3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.022 [XNIO-1 task-5] mcwxWmr6Th6Fkwilx-uC3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.025 [XNIO-1 task-6] mzjISZFeS4WIUciO0MS5GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.025 [XNIO-1 task-6] mzjISZFeS4WIUciO0MS5GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.027 [XNIO-1 task-6] mzjISZFeS4WIUciO0MS5GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.027 [XNIO-1 task-6] mzjISZFeS4WIUciO0MS5GQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6a05d1a0-7aea-4701-abd0-a317e10f28f4 scope = null +09:00:45.031 [XNIO-1 task-5] mcwxWmr6Th6Fkwilx-uC3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.034 [XNIO-1 task-6] mzjISZFeS4WIUciO0MS5GQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.038 [XNIO-1 task-6] HV3EIoLgQh2GI6_QvGmkfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.038 [XNIO-1 task-6] HV3EIoLgQh2GI6_QvGmkfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.039 [XNIO-1 task-6] HV3EIoLgQh2GI6_QvGmkfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.039 [XNIO-1 task-6] HV3EIoLgQh2GI6_QvGmkfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.045 [XNIO-1 task-6] HV3EIoLgQh2GI6_QvGmkfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.054 [XNIO-1 task-6] wtZCpJN-QASaNw_8GNcRIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.054 [XNIO-1 task-6] wtZCpJN-QASaNw_8GNcRIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.054 [XNIO-1 task-6] wtZCpJN-QASaNw_8GNcRIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.054 [XNIO-1 task-6] wtZCpJN-QASaNw_8GNcRIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.060 [XNIO-1 task-6] wtZCpJN-QASaNw_8GNcRIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.063 [XNIO-1 task-5] bS4FCZ8IQj2K_9bAlTgi8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.063 [XNIO-1 task-5] bS4FCZ8IQj2K_9bAlTgi8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.063 [XNIO-1 task-5] bS4FCZ8IQj2K_9bAlTgi8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.064 [XNIO-1 task-5] bS4FCZ8IQj2K_9bAlTgi8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 5rLb64fvSMGrP5yG51l-eg redirectUri = http://localhost:8080/authorization +09:00:45.066 [XNIO-1 task-6] LOjlFGbORXOOLVuMolzTkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.066 [XNIO-1 task-6] LOjlFGbORXOOLVuMolzTkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.067 [XNIO-1 task-6] LOjlFGbORXOOLVuMolzTkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.067 [XNIO-1 task-6] LOjlFGbORXOOLVuMolzTkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", authorization) +09:00:45.070 [XNIO-1 task-4] rC6vGHRVT2uT2dwDiYh_ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.070 [XNIO-1 task-4] rC6vGHRVT2uT2dwDiYh_ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.070 [XNIO-1 task-4] rC6vGHRVT2uT2dwDiYh_ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.070 [XNIO-1 task-4] rC6vGHRVT2uT2dwDiYh_ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:45.072 [XNIO-1 task-5] bS4FCZ8IQj2K_9bAlTgi8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.072 [XNIO-1 task-5] bS4FCZ8IQj2K_9bAlTgi8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.075 [XNIO-1 task-6] LOjlFGbORXOOLVuMolzTkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.076 [XNIO-1 task-6] LOjlFGbORXOOLVuMolzTkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.085 [XNIO-1 task-5] ehCGgNFzR5e4gFzWGEcjfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.085 [XNIO-1 task-5] ehCGgNFzR5e4gFzWGEcjfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.085 [XNIO-1 task-5] ehCGgNFzR5e4gFzWGEcjfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.086 [XNIO-1 task-5] ehCGgNFzR5e4gFzWGEcjfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:45.089 [XNIO-1 task-4] dyxjzhrRQqKTKK15H_wCQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.089 [XNIO-1 task-4] dyxjzhrRQqKTKK15H_wCQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.089 [XNIO-1 task-4] dyxjzhrRQqKTKK15H_wCQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.090 [XNIO-1 task-4] dyxjzhrRQqKTKK15H_wCQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:45.091 [XNIO-1 task-5] ehCGgNFzR5e4gFzWGEcjfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.099 [XNIO-1 task-5] wYoFzUivRvi2MLEnHNJ_xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.099 [XNIO-1 task-5] wYoFzUivRvi2MLEnHNJ_xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.099 [XNIO-1 task-5] wYoFzUivRvi2MLEnHNJ_xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.100 [XNIO-1 task-5] wYoFzUivRvi2MLEnHNJ_xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:45.105 [XNIO-1 task-5] wYoFzUivRvi2MLEnHNJ_xQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.109 [XNIO-1 task-5] 9KPhdsvkR1aIbU0HwjBmHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.109 [XNIO-1 task-5] 9KPhdsvkR1aIbU0HwjBmHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.110 [XNIO-1 task-5] 9KPhdsvkR1aIbU0HwjBmHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.110 [XNIO-1 task-5] 9KPhdsvkR1aIbU0HwjBmHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:45.119 [XNIO-1 task-5] 9KPhdsvkR1aIbU0HwjBmHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.124 [XNIO-1 task-4] dyxjzhrRQqKTKK15H_wCQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.132 [XNIO-1 task-5] H0apPCMhQqC7pGB3cYcX6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.132 [XNIO-1 task-5] H0apPCMhQqC7pGB3cYcX6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.133 [XNIO-1 task-5] H0apPCMhQqC7pGB3cYcX6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.133 [XNIO-1 task-5] H0apPCMhQqC7pGB3cYcX6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:45.139 [XNIO-1 task-5] H0apPCMhQqC7pGB3cYcX6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.141 [XNIO-1 task-4] YPu5HsiwT7K2-g60xsUVSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.141 [XNIO-1 task-4] YPu5HsiwT7K2-g60xsUVSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.142 [XNIO-1 task-4] YPu5HsiwT7K2-g60xsUVSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.142 [XNIO-1 task-4] YPu5HsiwT7K2-g60xsUVSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:45.147 [XNIO-1 task-5] k6l0WM4VS-KNbhY4XoC9ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.148 [XNIO-1 task-5] k6l0WM4VS-KNbhY4XoC9ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.148 [XNIO-1 task-5] k6l0WM4VS-KNbhY4XoC9ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.148 [XNIO-1 task-5] k6l0WM4VS-KNbhY4XoC9ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:45.153 [XNIO-1 task-4] YPu5HsiwT7K2-g60xsUVSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.154 [XNIO-1 task-5] k6l0WM4VS-KNbhY4XoC9ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.167 [XNIO-1 task-5] hf6p_uYwSuCi9rl_l5etXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.168 [XNIO-1 task-5] hf6p_uYwSuCi9rl_l5etXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.168 [XNIO-1 task-5] hf6p_uYwSuCi9rl_l5etXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.168 [XNIO-1 task-5] hf6p_uYwSuCi9rl_l5etXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", "Basic ODk5MzFkMjUtNTA1MC00Yjg3LWJjY2QtMDBkY2M5OWJkYjY3Ok9QeVZucjR0VHd1cXFxY2J6RERaNUE=", authorization) +09:00:45.173 [XNIO-1 task-5] hf6p_uYwSuCi9rl_l5etXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.178 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6a05d1a0-7aea-4701-abd0-a317e10f28f4 +09:00:45.182 [XNIO-1 task-5] ZhVQSgAwTJ6yVzAMT5UkQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.182 [XNIO-1 task-5] ZhVQSgAwTJ6yVzAMT5UkQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.183 [XNIO-1 task-5] ZhVQSgAwTJ6yVzAMT5UkQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.183 [XNIO-1 task-5] ZhVQSgAwTJ6yVzAMT5UkQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.188 [XNIO-1 task-5] ZhVQSgAwTJ6yVzAMT5UkQA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.191 [XNIO-1 task-4] ChWJqbyoTgiT8uftdaHDvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.191 [XNIO-1 task-4] ChWJqbyoTgiT8uftdaHDvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.191 [XNIO-1 task-4] ChWJqbyoTgiT8uftdaHDvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.191 [XNIO-1 task-4] ChWJqbyoTgiT8uftdaHDvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.191 [XNIO-1 task-6] -7F3g4dRTP-ITSIekjTBHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.191 [XNIO-1 task-6] -7F3g4dRTP-ITSIekjTBHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.191 [XNIO-1 task-4] ChWJqbyoTgiT8uftdaHDvg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = aA2x8u6fR3yeYlFD1-O-jg redirectUri = http://localhost:8080/authorization +09:00:45.192 [XNIO-1 task-6] -7F3g4dRTP-ITSIekjTBHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QRNs6bALQVq0HVUwpIqEJg redirectUri = http://localhost:8080/authorization +09:00:45.195 [XNIO-1 task-5] BktqJitTRHmKmCH9InS7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.195 [XNIO-1 task-5] BktqJitTRHmKmCH9InS7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.195 [XNIO-1 task-5] BktqJitTRHmKmCH9InS7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.196 [XNIO-1 task-5] BktqJitTRHmKmCH9InS7Rw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.198 [XNIO-1 task-4] ChWJqbyoTgiT8uftdaHDvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.205 [XNIO-1 task-5] BktqJitTRHmKmCH9InS7Rw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.213 [XNIO-1 task-6] -7F3g4dRTP-ITSIekjTBHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.213 [XNIO-1 task-6] -7F3g4dRTP-ITSIekjTBHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.214 [XNIO-1 task-5] LogP4YR3TZCbeFpiJ_KScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.214 [XNIO-1 task-5] LogP4YR3TZCbeFpiJ_KScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.214 [XNIO-1 task-5] LogP4YR3TZCbeFpiJ_KScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.214 [XNIO-1 task-5] LogP4YR3TZCbeFpiJ_KScA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.220 [XNIO-1 task-5] LogP4YR3TZCbeFpiJ_KScA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.226 [XNIO-1 task-5] AvKdiNEIQ763ChbkSWNR5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.226 [XNIO-1 task-5] AvKdiNEIQ763ChbkSWNR5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.227 [XNIO-1 task-5] AvKdiNEIQ763ChbkSWNR5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.227 [XNIO-1 task-5] AvKdiNEIQ763ChbkSWNR5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.232 [XNIO-1 task-5] AvKdiNEIQ763ChbkSWNR5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.236 [XNIO-1 task-5] Oezlfk_lRHGCxUbuM8fFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.236 [XNIO-1 task-5] Oezlfk_lRHGCxUbuM8fFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.237 [XNIO-1 task-5] Oezlfk_lRHGCxUbuM8fFEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.237 [XNIO-1 task-5] Oezlfk_lRHGCxUbuM8fFEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 673435d5-dcbe-4d17-a10c-d5e1817331d4 scope = null +09:00:45.238 [XNIO-1 task-6] F_-TfSdQQ-WXew3rc2kxwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.238 [XNIO-1 task-6] F_-TfSdQQ-WXew3rc2kxwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.238 [XNIO-1 task-6] F_-TfSdQQ-WXew3rc2kxwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.238 [XNIO-1 task-6] F_-TfSdQQ-WXew3rc2kxwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vHzTcKXlQmGT7sQ07_sAww redirectUri = http://localhost:8080/authorization +09:00:45.240 [XNIO-1 task-4] ACR1n_IXTc-Uy0oaS95CGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.241 [XNIO-1 task-4] ACR1n_IXTc-Uy0oaS95CGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.241 [XNIO-1 task-4] ACR1n_IXTc-Uy0oaS95CGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.241 [XNIO-1 task-4] ACR1n_IXTc-Uy0oaS95CGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.244 [XNIO-1 task-5] Oezlfk_lRHGCxUbuM8fFEw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.245 [XNIO-1 task-6] F_-TfSdQQ-WXew3rc2kxwg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.247 [XNIO-1 task-4] ACR1n_IXTc-Uy0oaS95CGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.251 [XNIO-1 task-4] wumpiV0MStWEXFPz2XQ-6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.251 [XNIO-1 task-4] wumpiV0MStWEXFPz2XQ-6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.251 [XNIO-1 task-4] wumpiV0MStWEXFPz2XQ-6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.252 [XNIO-1 task-4] wumpiV0MStWEXFPz2XQ-6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.258 [XNIO-1 task-4] wumpiV0MStWEXFPz2XQ-6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.266 [XNIO-1 task-4] VQbvVjz7T9adyZIOD1aVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.266 [XNIO-1 task-4] VQbvVjz7T9adyZIOD1aVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.266 [XNIO-1 task-4] VQbvVjz7T9adyZIOD1aVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.267 [XNIO-1 task-4] VQbvVjz7T9adyZIOD1aVMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.273 [XNIO-1 task-4] VQbvVjz7T9adyZIOD1aVMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.280 [XNIO-1 task-4] RaZXWA-YQy2DmHuN8QWI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.281 [XNIO-1 task-4] RaZXWA-YQy2DmHuN8QWI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.283 [XNIO-1 task-4] RaZXWA-YQy2DmHuN8QWI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.284 [XNIO-1 task-4] RaZXWA-YQy2DmHuN8QWI2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.295 [XNIO-1 task-4] RaZXWA-YQy2DmHuN8QWI2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.302 [XNIO-1 task-4] Pl6CZLq8TA2yKsHmjRwgSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.302 [XNIO-1 task-4] Pl6CZLq8TA2yKsHmjRwgSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.303 [XNIO-1 task-4] Pl6CZLq8TA2yKsHmjRwgSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.303 [XNIO-1 task-4] Pl6CZLq8TA2yKsHmjRwgSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.309 [XNIO-1 task-4] Pl6CZLq8TA2yKsHmjRwgSQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.317 [XNIO-1 task-4] AnieRHqzQpKwRrH2jWZB2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.317 [XNIO-1 task-4] AnieRHqzQpKwRrH2jWZB2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.318 [XNIO-1 task-4] AnieRHqzQpKwRrH2jWZB2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.318 [XNIO-1 task-4] AnieRHqzQpKwRrH2jWZB2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.324 [XNIO-1 task-4] AnieRHqzQpKwRrH2jWZB2Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.335 [XNIO-1 task-4] qpOKIy9AQjeNqHGhiPbRJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.335 [XNIO-1 task-4] qpOKIy9AQjeNqHGhiPbRJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.335 [XNIO-1 task-4] qpOKIy9AQjeNqHGhiPbRJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.336 [XNIO-1 task-4] qpOKIy9AQjeNqHGhiPbRJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.341 [XNIO-1 task-6] CQpKHVcoQj-zR6AA6JDXfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.340 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:73f4a61a +09:00:45.341 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73f4a61a +09:00:45.341 [XNIO-1 task-6] CQpKHVcoQj-zR6AA6JDXfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.342 [XNIO-1 task-6] CQpKHVcoQj-zR6AA6JDXfg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BCDf1r9FTMq1rPLCwdDPcg redirectUri = http://localhost:8080/authorization +09:00:45.343 [XNIO-1 task-4] qpOKIy9AQjeNqHGhiPbRJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.343 [XNIO-1 task-5] mJpz0s-KRxqcP3v_NltUeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.343 [XNIO-1 task-5] mJpz0s-KRxqcP3v_NltUeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.345 [XNIO-1 task-5] mJpz0s-KRxqcP3v_NltUeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.345 [XNIO-1 task-5] mJpz0s-KRxqcP3v_NltUeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = AGfEdB5cQduyg-0Q20zpYg redirectUri = http://localhost:8080/authorization +09:00:45.347 [XNIO-1 task-4] Mwqnv4RmTOeoYtejFvbaOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.347 [XNIO-1 task-4] Mwqnv4RmTOeoYtejFvbaOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.347 [XNIO-1 task-4] Mwqnv4RmTOeoYtejFvbaOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.348 [XNIO-1 task-4] Mwqnv4RmTOeoYtejFvbaOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.349 [XNIO-1 task-6] CQpKHVcoQj-zR6AA6JDXfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.351 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:76ecb639-d973-467c-9f30-d7c2309402ff +09:00:45.354 [XNIO-1 task-4] Mwqnv4RmTOeoYtejFvbaOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.358 [XNIO-1 task-5] mJpz0s-KRxqcP3v_NltUeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.358 [XNIO-1 task-5] mJpz0s-KRxqcP3v_NltUeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.363 [XNIO-1 task-6] bF5uelNRRg6tI5IRkk3aUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.363 [XNIO-1 task-6] bF5uelNRRg6tI5IRkk3aUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.363 [XNIO-1 task-4] V7HjcwbzSKSW68tWnUiqTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.363 [XNIO-1 task-4] V7HjcwbzSKSW68tWnUiqTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.364 [XNIO-1 task-4] V7HjcwbzSKSW68tWnUiqTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.364 [XNIO-1 task-6] bF5uelNRRg6tI5IRkk3aUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.364 [XNIO-1 task-4] V7HjcwbzSKSW68tWnUiqTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.364 [XNIO-1 task-6] bF5uelNRRg6tI5IRkk3aUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.364 [XNIO-1 task-4] V7HjcwbzSKSW68tWnUiqTA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 76ecb639-d973-467c-9f30-d7c2309402ff scope = null +09:00:45.374 [XNIO-1 task-6] bF5uelNRRg6tI5IRkk3aUA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.376 [XNIO-1 task-4] V7HjcwbzSKSW68tWnUiqTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.384 [XNIO-1 task-6] g5XtxkYaSSmUobvn-15Wsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.384 [XNIO-1 task-6] g5XtxkYaSSmUobvn-15Wsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.385 [XNIO-1 task-6] g5XtxkYaSSmUobvn-15Wsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.385 [XNIO-1 task-6] g5XtxkYaSSmUobvn-15Wsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:45.391 [XNIO-1 task-6] g5XtxkYaSSmUobvn-15Wsg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.402 [XNIO-1 task-6] -WHxQu8VQmWjFImsVD0k0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.403 [XNIO-1 task-6] -WHxQu8VQmWjFImsVD0k0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.403 [XNIO-1 task-6] -WHxQu8VQmWjFImsVD0k0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.404 [XNIO-1 task-6] -WHxQu8VQmWjFImsVD0k0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:45.406 [XNIO-1 task-4] PMDwYK_pR-O5s0Sn-V9o3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.406 [XNIO-1 task-4] PMDwYK_pR-O5s0Sn-V9o3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.407 [XNIO-1 task-4] PMDwYK_pR-O5s0Sn-V9o3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.407 [XNIO-1 task-4] PMDwYK_pR-O5s0Sn-V9o3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:45.411 [XNIO-1 task-6] -WHxQu8VQmWjFImsVD0k0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.416 [XNIO-1 task-4] PMDwYK_pR-O5s0Sn-V9o3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.416 [XNIO-1 task-4] PMDwYK_pR-O5s0Sn-V9o3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.421 [XNIO-1 task-6] DjpP4NaGTI6XtgiouzC8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.421 [XNIO-1 task-6] DjpP4NaGTI6XtgiouzC8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.422 [XNIO-1 task-6] DjpP4NaGTI6XtgiouzC8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.422 [XNIO-1 task-6] DjpP4NaGTI6XtgiouzC8Ag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.431 [XNIO-1 task-6] DjpP4NaGTI6XtgiouzC8Ag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.438 [XNIO-1 task-6] E-PvZBo_REy38lZ-YLedGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.438 [XNIO-1 task-6] E-PvZBo_REy38lZ-YLedGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.439 [XNIO-1 task-6] E-PvZBo_REy38lZ-YLedGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.440 [XNIO-1 task-6] E-PvZBo_REy38lZ-YLedGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.449 [XNIO-1 task-6] E-PvZBo_REy38lZ-YLedGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.458 [XNIO-1 task-6] 9dCtVYLzTLezKA5MYEIRtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.458 [XNIO-1 task-6] 9dCtVYLzTLezKA5MYEIRtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.459 [XNIO-1 task-6] 9dCtVYLzTLezKA5MYEIRtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.460 [XNIO-1 task-6] 9dCtVYLzTLezKA5MYEIRtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.470 [XNIO-1 task-6] 9dCtVYLzTLezKA5MYEIRtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.477 [XNIO-1 task-6] UX4nR1EPQaKA2PD0D9p61Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.477 [XNIO-1 task-6] UX4nR1EPQaKA2PD0D9p61Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.478 [XNIO-1 task-6] UX4nR1EPQaKA2PD0D9p61Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.478 [XNIO-1 task-6] UX4nR1EPQaKA2PD0D9p61Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.483 [XNIO-1 task-6] UX4nR1EPQaKA2PD0D9p61Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.486 [XNIO-1 task-4] GRVmHA1bRviQ6UAvdmcUPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.486 [XNIO-1 task-4] GRVmHA1bRviQ6UAvdmcUPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.486 [XNIO-1 task-4] GRVmHA1bRviQ6UAvdmcUPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.487 [XNIO-1 task-4] GRVmHA1bRviQ6UAvdmcUPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = kC0_QJ1DSrSkFNPEUJevgA redirectUri = http://localhost:8080/authorization +09:00:45.488 [XNIO-1 task-6] _y_3uQlpSoqv5JjUE6ZwWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.488 [XNIO-1 task-6] _y_3uQlpSoqv5JjUE6ZwWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.488 [XNIO-1 task-6] _y_3uQlpSoqv5JjUE6ZwWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.488 [XNIO-1 task-6] _y_3uQlpSoqv5JjUE6ZwWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.494 [XNIO-1 task-6] _y_3uQlpSoqv5JjUE6ZwWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.495 [XNIO-1 task-4] GRVmHA1bRviQ6UAvdmcUPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.522 [XNIO-1 task-6] Tl83-sueTpW0-Bg4HzoQpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.555 [XNIO-1 task-6] Tl83-sueTpW0-Bg4HzoQpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.555 [XNIO-1 task-6] Tl83-sueTpW0-Bg4HzoQpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.557 [XNIO-1 task-6] Tl83-sueTpW0-Bg4HzoQpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:45.563 [XNIO-1 task-6] Tl83-sueTpW0-Bg4HzoQpg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.584 [XNIO-1 task-4] FUDZSn2wTgqHBHQl9bKe0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.585 [XNIO-1 task-5] gKv9KwyWSO2Bn8wRKmFA0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.585 [XNIO-1 task-4] FUDZSn2wTgqHBHQl9bKe0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.585 [XNIO-1 task-4] FUDZSn2wTgqHBHQl9bKe0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.586 [XNIO-1 task-5] gKv9KwyWSO2Bn8wRKmFA0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.586 [XNIO-1 task-4] FUDZSn2wTgqHBHQl9bKe0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.586 [XNIO-1 task-4] FUDZSn2wTgqHBHQl9bKe0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:45.586 [XNIO-1 task-4] FUDZSn2wTgqHBHQl9bKe0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d25d98d2-8681-4d4e-8f95-0fb08ef36603 scope = null +09:00:45.592 [XNIO-1 task-6] jjxNABWiQQmHc0cVsvQWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.592 [XNIO-1 task-6] jjxNABWiQQmHc0cVsvQWMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.592 [XNIO-1 task-6] jjxNABWiQQmHc0cVsvQWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.593 [XNIO-1 task-6] jjxNABWiQQmHc0cVsvQWMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:45.595 [XNIO-1 task-5] gKv9KwyWSO2Bn8wRKmFA0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.596 [XNIO-1 task-5] gKv9KwyWSO2Bn8wRKmFA0g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.600 [XNIO-1 task-6] jjxNABWiQQmHc0cVsvQWMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.608 [XNIO-1 task-5] DZCBGR1cQmmpkHT7HQa94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.608 [XNIO-1 task-5] DZCBGR1cQmmpkHT7HQa94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.608 [XNIO-1 task-5] DZCBGR1cQmmpkHT7HQa94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.609 [XNIO-1 task-5] DZCBGR1cQmmpkHT7HQa94g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.610 [XNIO-1 task-4] FUDZSn2wTgqHBHQl9bKe0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.611 [XNIO-1 task-6] Ej34A33YQ8Co5QhjTay8Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.612 [XNIO-1 task-6] Ej34A33YQ8Co5QhjTay8Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.612 [XNIO-1 task-6] Ej34A33YQ8Co5QhjTay8Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.612 [XNIO-1 task-6] Ej34A33YQ8Co5QhjTay8Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:45.613 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5c79a50a-d8fe-4003-9146-6c7bce7d3cf0 +09:00:45.615 [XNIO-1 task-5] DZCBGR1cQmmpkHT7HQa94g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.620 [XNIO-1 task-5] _SBQJ_JWQ_aJuKAg4piWVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.621 [XNIO-1 task-5] _SBQJ_JWQ_aJuKAg4piWVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.621 [XNIO-1 task-5] _SBQJ_JWQ_aJuKAg4piWVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.622 [XNIO-1 task-5] _SBQJ_JWQ_aJuKAg4piWVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", authorization) +09:00:45.624 [XNIO-1 task-6] Ej34A33YQ8Co5QhjTay8Tw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:45.628 [XNIO-1 task-5] _SBQJ_JWQ_aJuKAg4piWVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.636 [XNIO-1 task-5] FI_E4pW9RziRFlDJzsKi6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.636 [XNIO-1 task-5] FI_E4pW9RziRFlDJzsKi6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.637 [XNIO-1 task-5] FI_E4pW9RziRFlDJzsKi6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.637 [XNIO-1 task-5] FI_E4pW9RziRFlDJzsKi6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", authorization) +09:00:45.642 [XNIO-1 task-6] aWLhi_IzSMi_JDMkwzCzeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.642 [XNIO-1 task-6] aWLhi_IzSMi_JDMkwzCzeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.642 [XNIO-1 task-6] aWLhi_IzSMi_JDMkwzCzeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.644 [XNIO-1 task-6] aWLhi_IzSMi_JDMkwzCzeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", authorization) +09:00:45.644 [XNIO-1 task-5] FI_E4pW9RziRFlDJzsKi6A ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:45.653 [XNIO-1 task-6] aWLhi_IzSMi_JDMkwzCzeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.662 [XNIO-1 task-6] OCdJuv75QEqgrBd2D0sdmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.662 [XNIO-1 task-6] OCdJuv75QEqgrBd2D0sdmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.663 [XNIO-1 task-6] OCdJuv75QEqgrBd2D0sdmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.664 [XNIO-1 task-6] OCdJuv75QEqgrBd2D0sdmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.672 [XNIO-1 task-6] OCdJuv75QEqgrBd2D0sdmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.686 [XNIO-1 task-6] Wewdv336QIu2USVboCFulg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.686 [XNIO-1 task-6] Wewdv336QIu2USVboCFulg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.687 [XNIO-1 task-6] Wewdv336QIu2USVboCFulg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.687 [XNIO-1 task-6] Wewdv336QIu2USVboCFulg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.698 [XNIO-1 task-6] Wewdv336QIu2USVboCFulg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.707 [XNIO-1 task-6] WITnd3NHQumq5_WeSlmNLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.707 [XNIO-1 task-6] WITnd3NHQumq5_WeSlmNLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.713 [XNIO-1 task-6] WITnd3NHQumq5_WeSlmNLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.713 [XNIO-1 task-6] WITnd3NHQumq5_WeSlmNLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.722 [XNIO-1 task-6] WITnd3NHQumq5_WeSlmNLA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.726 [XNIO-1 task-5] EKDYXornQLeaa6vO6aXqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.726 [XNIO-1 task-5] EKDYXornQLeaa6vO6aXqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.730 [XNIO-1 task-5] EKDYXornQLeaa6vO6aXqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.730 [XNIO-1 task-5] EKDYXornQLeaa6vO6aXqRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", authorization) +09:00:45.731 [XNIO-1 task-5] EKDYXornQLeaa6vO6aXqRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = n_aZma4DQzyaK_V0TfHl4g redirectUri = http://localhost:8080/authorization +09:00:45.731 [XNIO-1 task-6] SHh6U_fwQO2MagICcnIEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.734 [XNIO-1 task-6] SHh6U_fwQO2MagICcnIEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.742 [XNIO-1 task-6] SHh6U_fwQO2MagICcnIEYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.750 [XNIO-1 task-6] SHh6U_fwQO2MagICcnIEYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.751 [XNIO-1 task-5] EKDYXornQLeaa6vO6aXqRg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.756 [XNIO-1 task-6] EqCKgLx0RxuqcPAlrEcoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.756 [XNIO-1 task-6] EqCKgLx0RxuqcPAlrEcoqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.757 [XNIO-1 task-6] EqCKgLx0RxuqcPAlrEcoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.757 [XNIO-1 task-6] EqCKgLx0RxuqcPAlrEcoqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:45.764 [XNIO-1 task-6] EqCKgLx0RxuqcPAlrEcoqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.771 [XNIO-1 task-6] kDhnJw0kRLKvZxQsatySNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.771 [XNIO-1 task-6] kDhnJw0kRLKvZxQsatySNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.771 [XNIO-1 task-6] kDhnJw0kRLKvZxQsatySNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.772 [XNIO-1 task-6] kDhnJw0kRLKvZxQsatySNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:45.778 [XNIO-1 task-6] kDhnJw0kRLKvZxQsatySNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.795 [XNIO-1 task-6] -Nyns95aRzuK6w1dhJC76Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.795 [XNIO-1 task-6] -Nyns95aRzuK6w1dhJC76Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.795 [XNIO-1 task-6] -Nyns95aRzuK6w1dhJC76Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.796 [XNIO-1 task-6] -Nyns95aRzuK6w1dhJC76Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:45.815 [XNIO-1 task-6] -Nyns95aRzuK6w1dhJC76Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.818 [XNIO-1 task-5] cphmUjlzTxy068Hrb52rOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.818 [XNIO-1 task-5] cphmUjlzTxy068Hrb52rOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.819 [XNIO-1 task-5] cphmUjlzTxy068Hrb52rOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.819 [XNIO-1 task-5] cphmUjlzTxy068Hrb52rOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:45.826 [XNIO-1 task-6] GTQoF2RdT3qC7GX8-E4JVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.826 [XNIO-1 task-6] GTQoF2RdT3qC7GX8-E4JVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.827 [XNIO-1 task-6] GTQoF2RdT3qC7GX8-E4JVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.827 [XNIO-1 task-6] GTQoF2RdT3qC7GX8-E4JVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:45.832 [XNIO-1 task-5] cphmUjlzTxy068Hrb52rOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.833 [XNIO-1 task-5] cphmUjlzTxy068Hrb52rOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.838 [XNIO-1 task-6] GTQoF2RdT3qC7GX8-E4JVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.845 [XNIO-1 task-6] ICOFyXuPSjiTWs6GYVZAdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.845 [XNIO-1 task-6] ICOFyXuPSjiTWs6GYVZAdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.845 [XNIO-1 task-6] ICOFyXuPSjiTWs6GYVZAdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.848 [XNIO-1 task-6] ICOFyXuPSjiTWs6GYVZAdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.849 [XNIO-1 task-5] 2W-bOeEyR3W3ziKe_H7v-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.849 [XNIO-1 task-5] 2W-bOeEyR3W3ziKe_H7v-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.850 [XNIO-1 task-5] 2W-bOeEyR3W3ziKe_H7v-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.850 [XNIO-1 task-5] 2W-bOeEyR3W3ziKe_H7v-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:45.855 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3f431f6b +09:00:45.855 [XNIO-1 task-6] ICOFyXuPSjiTWs6GYVZAdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.861 [XNIO-1 task-6] hAgo6oBnT5aaOqDh5tLXvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.862 [XNIO-1 task-6] hAgo6oBnT5aaOqDh5tLXvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.863 [XNIO-1 task-6] hAgo6oBnT5aaOqDh5tLXvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.863 [XNIO-1 task-6] hAgo6oBnT5aaOqDh5tLXvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", "Basic YzgxZTliYmEtMTU3Ni00YjM4LWIyZGQtYThlZGZlZDlhMWQzOkNjRmxKbUR6UzhTVDVnTzcwaEZHOXc=", authorization) +09:00:45.865 [XNIO-1 task-5] 2W-bOeEyR3W3ziKe_H7v-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.868 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3f431f6b +09:00:45.870 [XNIO-1 task-6] hAgo6oBnT5aaOqDh5tLXvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.873 [XNIO-1 task-4] iTvVRlWuS7-VGMQY--WE8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.874 [XNIO-1 task-4] iTvVRlWuS7-VGMQY--WE8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.875 [XNIO-1 task-4] iTvVRlWuS7-VGMQY--WE8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.875 [XNIO-1 task-4] iTvVRlWuS7-VGMQY--WE8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:45.877 [XNIO-1 task-6] -i7r0HXcSFaYhLAnj1L8nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.877 [XNIO-1 task-6] -i7r0HXcSFaYhLAnj1L8nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.877 [XNIO-1 task-6] -i7r0HXcSFaYhLAnj1L8nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.878 [XNIO-1 task-6] -i7r0HXcSFaYhLAnj1L8nA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFjNDE0NWUtODZkNS00NGY1LTkwYzYtYzIzOGMwNDhmZWYxOnZKNWVQSGEzUnN5eDJJSHZ4VlJaZHc=", "Basic OGFjNDE0NWUtODZkNS00NGY1LTkwYzYtYzIzOGMwNDhmZWYxOnZKNWVQSGEzUnN5eDJJSHZ4VlJaZHc=", authorization) +09:00:45.883 [XNIO-1 task-5] ajgLHHjwTVK1FTCNblmuhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.883 [XNIO-1 task-5] ajgLHHjwTVK1FTCNblmuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.884 [XNIO-1 task-5] ajgLHHjwTVK1FTCNblmuhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.884 [XNIO-1 task-5] ajgLHHjwTVK1FTCNblmuhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.884 [XNIO-1 task-5] ajgLHHjwTVK1FTCNblmuhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:45.888 [XNIO-1 task-4] iTvVRlWuS7-VGMQY--WE8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.888 [XNIO-1 task-4] iTvVRlWuS7-VGMQY--WE8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.888 [XNIO-1 task-6] 102obGc9QlOzGUyhE0iqnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.888 [XNIO-1 task-6] 102obGc9QlOzGUyhE0iqnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.889 [XNIO-1 task-6] 102obGc9QlOzGUyhE0iqnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.889 [XNIO-1 task-6] 102obGc9QlOzGUyhE0iqnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.894 [XNIO-1 task-6] 102obGc9QlOzGUyhE0iqnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.899 [XNIO-1 task-6] jVyVIHO1SXu8cPd1arDEig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.899 [XNIO-1 task-6] jVyVIHO1SXu8cPd1arDEig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.899 [XNIO-1 task-6] jVyVIHO1SXu8cPd1arDEig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.900 [XNIO-1 task-6] jVyVIHO1SXu8cPd1arDEig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:45.901 [XNIO-1 task-5] ajgLHHjwTVK1FTCNblmuhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.903 [XNIO-1 task-4] axMRTV2GQzqBs8THbaE-Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.903 [XNIO-1 task-4] axMRTV2GQzqBs8THbaE-Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.903 [XNIO-1 task-4] axMRTV2GQzqBs8THbaE-Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.904 [XNIO-1 task-4] axMRTV2GQzqBs8THbaE-Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:45.905 [XNIO-1 task-6] jVyVIHO1SXu8cPd1arDEig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.911 [XNIO-1 task-5] WSxhzN3KTSaGlACAKn0hnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.911 [XNIO-1 task-5] WSxhzN3KTSaGlACAKn0hnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.911 [XNIO-1 task-5] WSxhzN3KTSaGlACAKn0hnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.912 [XNIO-1 task-5] WSxhzN3KTSaGlACAKn0hnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:45.914 [XNIO-1 task-4] axMRTV2GQzqBs8THbaE-Mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.923 [XNIO-1 task-5] WSxhzN3KTSaGlACAKn0hnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.936 [XNIO-1 task-4] 90UDCez6SBGWj2PV1hwlrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.938 [XNIO-1 task-4] 90UDCez6SBGWj2PV1hwlrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.938 [XNIO-1 task-6] 9v6GthQxScmOxlU--kG3GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.938 [XNIO-1 task-4] 90UDCez6SBGWj2PV1hwlrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.938 [XNIO-1 task-6] 9v6GthQxScmOxlU--kG3GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.939 [XNIO-1 task-6] 9v6GthQxScmOxlU--kG3GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.939 [XNIO-1 task-4] 90UDCez6SBGWj2PV1hwlrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:45.939 [XNIO-1 task-6] 9v6GthQxScmOxlU--kG3GA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", authorization) +09:00:45.937 [XNIO-1 task-5] kkp2sBlRR-2a8wWSLh8X2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.941 [XNIO-1 task-5] kkp2sBlRR-2a8wWSLh8X2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.941 [XNIO-1 task-5] kkp2sBlRR-2a8wWSLh8X2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.941 [XNIO-1 task-5] kkp2sBlRR-2a8wWSLh8X2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", authorization) +09:00:45.945 [XNIO-1 task-6] 9v6GthQxScmOxlU--kG3GA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:45.946 [XNIO-1 task-6] 9v6GthQxScmOxlU--kG3GA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.951 [XNIO-1 task-5] kkp2sBlRR-2a8wWSLh8X2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.953 [XNIO-1 task-4] 90UDCez6SBGWj2PV1hwlrg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:45.957 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:11d43dad-a6a9-4d33-89cc-eaabf363c754 +09:00:45.957 [XNIO-1 task-5] Vq4pzFeiTFqFoyyCRYK-iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.957 [XNIO-1 task-5] Vq4pzFeiTFqFoyyCRYK-iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.958 [XNIO-1 task-5] Vq4pzFeiTFqFoyyCRYK-iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.959 [XNIO-1 task-5] Vq4pzFeiTFqFoyyCRYK-iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", authorization) +09:00:45.964 [XNIO-1 task-5] Vq4pzFeiTFqFoyyCRYK-iQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.966 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3f431f6b +09:00:45.966 [XNIO-1 task-4] oXQiIwboQB22ig0GNk4wOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.967 [XNIO-1 task-4] oXQiIwboQB22ig0GNk4wOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.968 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3f431f6b +09:00:45.971 [XNIO-1 task-4] oXQiIwboQB22ig0GNk4wOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:45.971 [XNIO-1 task-5] kB-TlPakS5iYUjAGlhy-ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.972 [XNIO-1 task-5] kB-TlPakS5iYUjAGlhy-ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.972 [XNIO-1 task-5] kB-TlPakS5iYUjAGlhy-ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.974 [XNIO-1 task-5] kB-TlPakS5iYUjAGlhy-ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:45.981 [XNIO-1 task-5] kB-TlPakS5iYUjAGlhy-ww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.988 [XNIO-1 task-4] oXQiIwboQB22ig0GNk4wOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:45.990 [XNIO-1 task-5] K3yUYd0dR2afHtbdvnkNMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:45.990 [XNIO-1 task-5] K3yUYd0dR2afHtbdvnkNMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:45.990 [XNIO-1 task-5] K3yUYd0dR2afHtbdvnkNMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:45.991 [XNIO-1 task-5] K3yUYd0dR2afHtbdvnkNMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:45.997 [XNIO-1 task-5] K3yUYd0dR2afHtbdvnkNMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.002 [XNIO-1 task-5] cJ6yT4iYR9WSs0rces7DGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.002 [XNIO-1 task-5] cJ6yT4iYR9WSs0rces7DGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.003 [XNIO-1 task-5] cJ6yT4iYR9WSs0rces7DGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.004 [XNIO-1 task-5] cJ6yT4iYR9WSs0rces7DGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:46.009 [XNIO-1 task-5] cJ6yT4iYR9WSs0rces7DGQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.011 [XNIO-1 task-4] CwTERup-SQmbLAF-oze29w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.011 [XNIO-1 task-4] CwTERup-SQmbLAF-oze29w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.011 [XNIO-1 task-4] CwTERup-SQmbLAF-oze29w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.012 [XNIO-1 task-4] CwTERup-SQmbLAF-oze29w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:46.015 [XNIO-1 task-5] k7souiApQ7aI2IzJqxrGCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.015 [XNIO-1 task-5] k7souiApQ7aI2IzJqxrGCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.016 [XNIO-1 task-5] k7souiApQ7aI2IzJqxrGCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.016 [XNIO-1 task-5] k7souiApQ7aI2IzJqxrGCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:46.021 [XNIO-1 task-6] 5WuEC1xURjCV5Y3TcdK-_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.021 [XNIO-1 task-6] 5WuEC1xURjCV5Y3TcdK-_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.022 [XNIO-1 task-6] 5WuEC1xURjCV5Y3TcdK-_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.022 [XNIO-1 task-5] k7souiApQ7aI2IzJqxrGCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.022 [XNIO-1 task-6] 5WuEC1xURjCV5Y3TcdK-_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:46.023 [XNIO-1 task-4] CwTERup-SQmbLAF-oze29w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.026 [XNIO-1 task-5] BqTRKsNsQbKyqnsxAG30cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.027 [XNIO-1 task-5] BqTRKsNsQbKyqnsxAG30cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.027 [XNIO-1 task-5] BqTRKsNsQbKyqnsxAG30cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.027 [XNIO-1 task-5] BqTRKsNsQbKyqnsxAG30cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:46.033 [XNIO-1 task-5] BqTRKsNsQbKyqnsxAG30cQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.037 [XNIO-1 task-6] 5WuEC1xURjCV5Y3TcdK-_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.056 [XNIO-1 task-6] 5WuEC1xURjCV5Y3TcdK-_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.057 [XNIO-1 task-5] D-NjcSzlTzuoJtSJlE3hbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.057 [XNIO-1 task-5] D-NjcSzlTzuoJtSJlE3hbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.057 [XNIO-1 task-5] D-NjcSzlTzuoJtSJlE3hbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.058 [XNIO-1 task-5] D-NjcSzlTzuoJtSJlE3hbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.064 [XNIO-1 task-4] 7TubJfKkSw-slHkm5Isphw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.064 [XNIO-1 task-4] 7TubJfKkSw-slHkm5Isphw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.064 [XNIO-1 task-4] 7TubJfKkSw-slHkm5Isphw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.064 [XNIO-1 task-4] 7TubJfKkSw-slHkm5Isphw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _l5RNn3AToW2ZG8Eq8Iz7w redirectUri = http://localhost:8080/authorization +09:00:46.066 [XNIO-1 task-5] D-NjcSzlTzuoJtSJlE3hbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.074 [XNIO-1 task-5] ewG5sYOGTX-yCj3i_QKcBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.074 [XNIO-1 task-5] ewG5sYOGTX-yCj3i_QKcBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.074 [XNIO-1 task-5] ewG5sYOGTX-yCj3i_QKcBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.074 [XNIO-1 task-5] ewG5sYOGTX-yCj3i_QKcBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.079 [XNIO-1 task-6] Z0TEDSw7TQOzYliOyoU3ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.080 [XNIO-1 task-4] 7TubJfKkSw-slHkm5Isphw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.080 [XNIO-1 task-6] Z0TEDSw7TQOzYliOyoU3ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.080 [XNIO-1 task-6] Z0TEDSw7TQOzYliOyoU3ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.080 [XNIO-1 task-6] Z0TEDSw7TQOzYliOyoU3ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:46.081 [XNIO-1 task-5] ewG5sYOGTX-yCj3i_QKcBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.085 [XNIO-1 task-5] 62_kv1NFQ2encS9NX61Fig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.086 [XNIO-1 task-5] 62_kv1NFQ2encS9NX61Fig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.086 [XNIO-1 task-5] 62_kv1NFQ2encS9NX61Fig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.087 [XNIO-1 task-5] 62_kv1NFQ2encS9NX61Fig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", authorization) +09:00:46.093 [XNIO-1 task-5] 62_kv1NFQ2encS9NX61Fig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.094 [XNIO-1 task-6] Z0TEDSw7TQOzYliOyoU3ZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.102 [XNIO-1 task-5] oYeav44LRm-tcwd3-fvSHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.102 [XNIO-1 task-5] oYeav44LRm-tcwd3-fvSHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.102 [XNIO-1 task-5] oYeav44LRm-tcwd3-fvSHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.148 [XNIO-1 task-5] oYeav44LRm-tcwd3-fvSHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", authorization) +09:00:46.156 [XNIO-1 task-5] oYeav44LRm-tcwd3-fvSHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.163 [XNIO-1 task-6] jJJbbMJpTWmKHjeRdk0vbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.164 [XNIO-1 task-6] jJJbbMJpTWmKHjeRdk0vbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.164 [XNIO-1 task-4] UBGdSiydS3ynBUsD2_blsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.164 [XNIO-1 task-4] UBGdSiydS3ynBUsD2_blsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.165 [XNIO-1 task-4] UBGdSiydS3ynBUsD2_blsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.166 [XNIO-1 task-4] UBGdSiydS3ynBUsD2_blsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", authorization) +09:00:46.165 [XNIO-1 task-5] V9zhcHRwRB-vvBYqpDIhRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.166 [XNIO-1 task-5] V9zhcHRwRB-vvBYqpDIhRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.166 [XNIO-1 task-5] V9zhcHRwRB-vvBYqpDIhRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.167 [XNIO-1 task-5] V9zhcHRwRB-vvBYqpDIhRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExMWI3NmQtOGExMi00ZWUwLTlmZTAtZDM1MjA1NDBhNWE2OjNhVEZnN2pGUld5dktmSEZCSjc5WUE=", "Basic Y2ExMWI3NmQtOGExMi00ZWUwLTlmZTAtZDM1MjA1NDBhNWE2OjNhVEZnN2pGUld5dktmSEZCSjc5WUE=", authorization) +09:00:46.165 [XNIO-1 task-6] jJJbbMJpTWmKHjeRdk0vbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.169 [XNIO-1 task-6] jJJbbMJpTWmKHjeRdk0vbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", authorization) +09:00:46.173 [XNIO-1 task-5] V9zhcHRwRB-vvBYqpDIhRg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.182 [XNIO-1 task-5] kq6SfOTZR1uSRAacf_ZtkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.182 [XNIO-1 task-5] kq6SfOTZR1uSRAacf_ZtkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.182 [XNIO-1 task-5] kq6SfOTZR1uSRAacf_ZtkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.183 [XNIO-1 task-5] kq6SfOTZR1uSRAacf_ZtkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:46.188 [XNIO-1 task-5] kq6SfOTZR1uSRAacf_ZtkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.193 [XNIO-1 task-5] FygDrmeyQKat6VwOzoM3PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.193 [XNIO-1 task-5] FygDrmeyQKat6VwOzoM3PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.193 [XNIO-1 task-4] UBGdSiydS3ynBUsD2_blsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.193 [XNIO-1 task-5] FygDrmeyQKat6VwOzoM3PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:46.194 [XNIO-1 task-5] FygDrmeyQKat6VwOzoM3PA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:46.196 [XNIO-1 task-6] jJJbbMJpTWmKHjeRdk0vbQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.196 [XNIO-1 task-6] jJJbbMJpTWmKHjeRdk0vbQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.199 [XNIO-1 task-5] FygDrmeyQKat6VwOzoM3PA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.228 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af435a5f-e96d-4375-8347-a1730bb44821 +09:00:46.233 [XNIO-1 task-5] YmOnlm24QE6Vs6cmCRTPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.233 [XNIO-1 task-5] YmOnlm24QE6Vs6cmCRTPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.233 [XNIO-1 task-5] YmOnlm24QE6Vs6cmCRTPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.234 [XNIO-1 task-5] YmOnlm24QE6Vs6cmCRTPiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.240 [XNIO-1 task-5] YmOnlm24QE6Vs6cmCRTPiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.246 [XNIO-1 task-5] i-6oV_bwS4uK5aVo_4ZYcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.246 [XNIO-1 task-5] i-6oV_bwS4uK5aVo_4ZYcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.246 [XNIO-1 task-5] i-6oV_bwS4uK5aVo_4ZYcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.247 [XNIO-1 task-5] i-6oV_bwS4uK5aVo_4ZYcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.254 [XNIO-1 task-5] i-6oV_bwS4uK5aVo_4ZYcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.268 [XNIO-1 task-5] PcFnk8oGRS2NSBnLp_HMuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.268 [XNIO-1 task-5] PcFnk8oGRS2NSBnLp_HMuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.268 [XNIO-1 task-5] PcFnk8oGRS2NSBnLp_HMuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.270 [XNIO-1 task-5] PcFnk8oGRS2NSBnLp_HMuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.276 [XNIO-1 task-5] PcFnk8oGRS2NSBnLp_HMuA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.288 [XNIO-1 task-6] pY6ayTNBQRChFmJUBFoVYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.288 [XNIO-1 task-6] pY6ayTNBQRChFmJUBFoVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.288 [XNIO-1 task-5] aNFrzB_tRSCqlr8ru94mSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.288 [XNIO-1 task-6] pY6ayTNBQRChFmJUBFoVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.288 [XNIO-1 task-5] aNFrzB_tRSCqlr8ru94mSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.288 [XNIO-1 task-6] pY6ayTNBQRChFmJUBFoVYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.289 [XNIO-1 task-5] aNFrzB_tRSCqlr8ru94mSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.289 [XNIO-1 task-6] pY6ayTNBQRChFmJUBFoVYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IZxklNt6SmGKZ7qGPqgRQQ redirectUri = http://localhost:8080/authorization +09:00:46.294 [XNIO-1 task-5] aNFrzB_tRSCqlr8ru94mSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.298 [XNIO-1 task-6] pY6ayTNBQRChFmJUBFoVYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.304 [XNIO-1 task-5] H7Q-iiRpSJO0Q2Ngvx3eEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.305 [XNIO-1 task-5] H7Q-iiRpSJO0Q2Ngvx3eEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.305 [XNIO-1 task-5] H7Q-iiRpSJO0Q2Ngvx3eEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.305 [XNIO-1 task-5] H7Q-iiRpSJO0Q2Ngvx3eEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:46.314 [XNIO-1 task-5] H7Q-iiRpSJO0Q2Ngvx3eEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.320 [XNIO-1 task-5] bUAGDyd2TAGRvzFOLGgUEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.320 [XNIO-1 task-5] bUAGDyd2TAGRvzFOLGgUEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.321 [XNIO-1 task-5] bUAGDyd2TAGRvzFOLGgUEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.321 [XNIO-1 task-5] bUAGDyd2TAGRvzFOLGgUEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:46.323 [XNIO-1 task-6] b5ykha-rQlqHz04nZB5bwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.323 [XNIO-1 task-6] b5ykha-rQlqHz04nZB5bwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.323 [XNIO-1 task-6] b5ykha-rQlqHz04nZB5bwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.323 [XNIO-1 task-6] b5ykha-rQlqHz04nZB5bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:46.331 [XNIO-1 task-6] b5ykha-rQlqHz04nZB5bwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.338 [XNIO-1 task-6] ZINFldpTQa6qG9JlDydKAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.338 [XNIO-1 task-6] ZINFldpTQa6qG9JlDydKAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.339 [XNIO-1 task-6] ZINFldpTQa6qG9JlDydKAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.339 [XNIO-1 task-6] ZINFldpTQa6qG9JlDydKAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", authorization) +09:00:46.340 [XNIO-1 task-5] bUAGDyd2TAGRvzFOLGgUEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.341 [XNIO-1 task-5] bUAGDyd2TAGRvzFOLGgUEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.346 [XNIO-1 task-6] ZINFldpTQa6qG9JlDydKAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.354 [XNIO-1 task-5] Qt4mScDzQKKMTnvJy94J1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.355 [XNIO-1 task-5] Qt4mScDzQKKMTnvJy94J1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.355 [XNIO-1 task-5] Qt4mScDzQKKMTnvJy94J1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.355 [XNIO-1 task-5] Qt4mScDzQKKMTnvJy94J1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.362 [XNIO-1 task-5] Qt4mScDzQKKMTnvJy94J1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.370 [XNIO-1 task-5] 7Mib4KWbQUWwwwScO8PqeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.370 [XNIO-1 task-5] 7Mib4KWbQUWwwwScO8PqeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.370 [XNIO-1 task-5] 7Mib4KWbQUWwwwScO8PqeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.371 [XNIO-1 task-5] 7Mib4KWbQUWwwwScO8PqeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.377 [XNIO-1 task-5] 7Mib4KWbQUWwwwScO8PqeQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.381 [XNIO-1 task-5] 2ffB1LwASCSOf7Le9vpmEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.382 [XNIO-1 task-5] 2ffB1LwASCSOf7Le9vpmEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.382 [XNIO-1 task-5] 2ffB1LwASCSOf7Le9vpmEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.382 [XNIO-1 task-5] 2ffB1LwASCSOf7Le9vpmEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:46.382 [XNIO-1 task-6] HFHcWYphR-SMidPGZ0FnmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.382 [XNIO-1 task-6] HFHcWYphR-SMidPGZ0FnmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.383 [XNIO-1 task-6] HFHcWYphR-SMidPGZ0FnmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.383 [XNIO-1 task-6] HFHcWYphR-SMidPGZ0FnmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.394 [XNIO-1 task-6] HFHcWYphR-SMidPGZ0FnmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.395 [XNIO-1 task-5] 2ffB1LwASCSOf7Le9vpmEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.400 [XNIO-1 task-6] V1KNBwqKQ7-3_OUtgWGoxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.400 [XNIO-1 task-6] V1KNBwqKQ7-3_OUtgWGoxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.401 [XNIO-1 task-6] V1KNBwqKQ7-3_OUtgWGoxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.401 [XNIO-1 task-6] V1KNBwqKQ7-3_OUtgWGoxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", authorization) +09:00:46.406 [XNIO-1 task-6] V1KNBwqKQ7-3_OUtgWGoxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.415 [XNIO-1 task-6] m3vJjQgkS_KAe-k2I-gy3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.415 [XNIO-1 task-6] m3vJjQgkS_KAe-k2I-gy3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.416 [XNIO-1 task-6] m3vJjQgkS_KAe-k2I-gy3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.416 [XNIO-1 task-6] m3vJjQgkS_KAe-k2I-gy3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", authorization) +09:00:46.424 [XNIO-1 task-6] m3vJjQgkS_KAe-k2I-gy3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.432 [XNIO-1 task-6] SZFQXeiiS6KkepRuNJBd6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.433 [XNIO-1 task-6] SZFQXeiiS6KkepRuNJBd6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.433 [XNIO-1 task-6] SZFQXeiiS6KkepRuNJBd6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.434 [XNIO-1 task-6] SZFQXeiiS6KkepRuNJBd6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:46.435 [XNIO-1 task-5] C-MHKGNCTkS7cnXneQ4MxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.435 [XNIO-1 task-5] C-MHKGNCTkS7cnXneQ4MxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.436 [XNIO-1 task-5] C-MHKGNCTkS7cnXneQ4MxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.436 [XNIO-1 task-5] C-MHKGNCTkS7cnXneQ4MxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", authorization) +09:00:46.441 [XNIO-1 task-5] C-MHKGNCTkS7cnXneQ4MxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.445 [XNIO-1 task-6] SZFQXeiiS6KkepRuNJBd6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.446 [XNIO-1 task-6] SZFQXeiiS6KkepRuNJBd6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.447 [XNIO-1 task-5] 0n1NWNwyQSKH6UulOIpa6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.447 [XNIO-1 task-5] 0n1NWNwyQSKH6UulOIpa6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.448 [XNIO-1 task-5] 0n1NWNwyQSKH6UulOIpa6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.449 [XNIO-1 task-5] 0n1NWNwyQSKH6UulOIpa6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.454 [XNIO-1 task-5] 0n1NWNwyQSKH6UulOIpa6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.461 [XNIO-1 task-5] Uzj_jvyuRi6-VOr7cppLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.461 [XNIO-1 task-5] Uzj_jvyuRi6-VOr7cppLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.461 [XNIO-1 task-5] Uzj_jvyuRi6-VOr7cppLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.461 [XNIO-1 task-5] Uzj_jvyuRi6-VOr7cppLgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.467 [XNIO-1 task-5] Uzj_jvyuRi6-VOr7cppLgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.469 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f400c9d0-0010-4c7e-b33a-cc201003748e +09:00:46.472 [XNIO-1 task-5] Kf2Kiy7oRqeirCUjUcnJcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.473 [XNIO-1 task-5] Kf2Kiy7oRqeirCUjUcnJcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.474 [XNIO-1 task-5] Kf2Kiy7oRqeirCUjUcnJcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.474 [XNIO-1 task-5] Kf2Kiy7oRqeirCUjUcnJcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", authorization) +09:00:46.476 [XNIO-1 task-6] FrgsiBtaQ-ucWl1t1ALB7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.477 [XNIO-1 task-6] FrgsiBtaQ-ucWl1t1ALB7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.477 [XNIO-1 task-6] FrgsiBtaQ-ucWl1t1ALB7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.477 [XNIO-1 task-6] FrgsiBtaQ-ucWl1t1ALB7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:46.479 [XNIO-1 task-5] Kf2Kiy7oRqeirCUjUcnJcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.486 [XNIO-1 task-5] 45Sm2eg3RNCQ6PkuMv5dxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.486 [XNIO-1 task-5] 45Sm2eg3RNCQ6PkuMv5dxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.486 [XNIO-1 task-5] 45Sm2eg3RNCQ6PkuMv5dxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.487 [XNIO-1 task-5] 45Sm2eg3RNCQ6PkuMv5dxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", "Basic OThkYjA4NGQtZjY3MS00MzQ5LWIxZGEtZWYxZjllY2RkYTNmOlBRbi1LUTBSVFQyLVloUlItT29ybUE=", authorization) +09:00:46.490 [XNIO-1 task-6] FrgsiBtaQ-ucWl1t1ALB7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.491 [XNIO-1 task-6] FrgsiBtaQ-ucWl1t1ALB7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.492 [XNIO-1 task-5] 45Sm2eg3RNCQ6PkuMv5dxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.501 [XNIO-1 task-5] pjmZ2XkaRRyBwQz7Y9JL4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.501 [XNIO-1 task-5] pjmZ2XkaRRyBwQz7Y9JL4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.501 [XNIO-1 task-5] pjmZ2XkaRRyBwQz7Y9JL4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.502 [XNIO-1 task-5] pjmZ2XkaRRyBwQz7Y9JL4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.507 [XNIO-1 task-5] pjmZ2XkaRRyBwQz7Y9JL4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.518 [XNIO-1 task-5] 6RDIEoJDRJexMAe2pbOo3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.518 [XNIO-1 task-5] 6RDIEoJDRJexMAe2pbOo3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.518 [XNIO-1 task-5] 6RDIEoJDRJexMAe2pbOo3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.519 [XNIO-1 task-5] 6RDIEoJDRJexMAe2pbOo3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.524 [XNIO-1 task-5] 6RDIEoJDRJexMAe2pbOo3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.533 [XNIO-1 task-5] RGghb7ZqTN2NGTz3FJO-Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.535 [XNIO-1 task-5] RGghb7ZqTN2NGTz3FJO-Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.535 [XNIO-1 task-5] RGghb7ZqTN2NGTz3FJO-Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.536 [XNIO-1 task-5] RGghb7ZqTN2NGTz3FJO-Zw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.541 [XNIO-1 task-5] RGghb7ZqTN2NGTz3FJO-Zw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.548 [XNIO-1 task-6] 4czEUA-GS5yIL9TmFDkUhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.548 [XNIO-1 task-5] fFyXdJB-QPOMxisUlxcfdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.548 [XNIO-1 task-5] fFyXdJB-QPOMxisUlxcfdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.548 [XNIO-1 task-5] fFyXdJB-QPOMxisUlxcfdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.548 [XNIO-1 task-6] 4czEUA-GS5yIL9TmFDkUhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.548 [XNIO-1 task-6] 4czEUA-GS5yIL9TmFDkUhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.549 [XNIO-1 task-5] fFyXdJB-QPOMxisUlxcfdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", authorization) +09:00:46.549 [XNIO-1 task-6] 4czEUA-GS5yIL9TmFDkUhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = iwC5dlr_QI-5zd6Xhl7bOA redirectUri = http://localhost:8080/authorization +09:00:46.559 [XNIO-1 task-6] 4czEUA-GS5yIL9TmFDkUhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.560 [XNIO-1 task-5] fFyXdJB-QPOMxisUlxcfdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.562 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:43ff7569-7184-4aab-8a7b-82d03ce1d766 +09:00:46.567 [XNIO-1 task-5] O4NxRmLhRruUbplelN6TIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.567 [XNIO-1 task-5] O4NxRmLhRruUbplelN6TIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.568 [XNIO-1 task-5] O4NxRmLhRruUbplelN6TIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.569 [XNIO-1 task-5] O4NxRmLhRruUbplelN6TIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", authorization) +09:00:46.572 [XNIO-1 task-6] ppUBuhjGS32NusW35Ayg7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.572 [XNIO-1 task-6] ppUBuhjGS32NusW35Ayg7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.573 [XNIO-1 task-6] ppUBuhjGS32NusW35Ayg7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.573 [XNIO-1 task-6] ppUBuhjGS32NusW35Ayg7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExMWI3NmQtOGExMi00ZWUwLTlmZTAtZDM1MjA1NDBhNWE2OjNhVEZnN2pGUld5dktmSEZCSjc5WUE=", "Basic Y2ExMWI3NmQtOGExMi00ZWUwLTlmZTAtZDM1MjA1NDBhNWE2OjNhVEZnN2pGUld5dktmSEZCSjc5WUE=", authorization) +09:00:46.576 [XNIO-1 task-5] O4NxRmLhRruUbplelN6TIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.582 [XNIO-1 task-5] cL92tFbFSgWil5_gWevMsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.582 [XNIO-1 task-5] cL92tFbFSgWil5_gWevMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.583 [XNIO-1 task-5] cL92tFbFSgWil5_gWevMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.583 [XNIO-1 task-5] cL92tFbFSgWil5_gWevMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.584 [XNIO-1 task-5] cL92tFbFSgWil5_gWevMsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.588 [XNIO-1 task-6] ppUBuhjGS32NusW35Ayg7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.590 [XNIO-1 task-5] cL92tFbFSgWil5_gWevMsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.596 [XNIO-1 task-5] QKyW94elRoGGxcH5b4SjuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.596 [XNIO-1 task-5] QKyW94elRoGGxcH5b4SjuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.596 [XNIO-1 task-5] QKyW94elRoGGxcH5b4SjuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.597 [XNIO-1 task-5] QKyW94elRoGGxcH5b4SjuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.601 [XNIO-1 task-6] poQSxIGMSYiTb5woJcRemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.601 [XNIO-1 task-6] poQSxIGMSYiTb5woJcRemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.602 [XNIO-1 task-5] QKyW94elRoGGxcH5b4SjuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.605 [XNIO-1 task-6] poQSxIGMSYiTb5woJcRemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.605 [XNIO-1 task-4] oDdDF5ECTe6hmKyn7cPg8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.605 [XNIO-1 task-4] oDdDF5ECTe6hmKyn7cPg8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.605 [XNIO-1 task-6] poQSxIGMSYiTb5woJcRemQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jmFhFx0wTHKD31F2NxpsYg redirectUri = http://localhost:8080/authorization +09:00:46.605 [XNIO-1 task-4] oDdDF5ECTe6hmKyn7cPg8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.608 [XNIO-1 task-4] oDdDF5ECTe6hmKyn7cPg8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExMWI3NmQtOGExMi00ZWUwLTlmZTAtZDM1MjA1NDBhNWE2OjNhVEZnN2pGUld5dktmSEZCSjc5WUE=", "Basic Y2ExMWI3NmQtOGExMi00ZWUwLTlmZTAtZDM1MjA1NDBhNWE2OjNhVEZnN2pGUld5dktmSEZCSjc5WUE=", authorization) +09:00:46.608 [XNIO-1 task-5] X5c2TBdtSg282yNPAg8rPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.608 [XNIO-1 task-4] oDdDF5ECTe6hmKyn7cPg8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a299610a-4e3a-46c0-bf59-b7fce76f3445 scope = null +09:00:46.608 [XNIO-1 task-5] X5c2TBdtSg282yNPAg8rPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.609 [XNIO-1 task-5] X5c2TBdtSg282yNPAg8rPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.614 [XNIO-1 task-5] X5c2TBdtSg282yNPAg8rPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.619 [XNIO-1 task-6] poQSxIGMSYiTb5woJcRemQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.627 [XNIO-1 task-6] poQSxIGMSYiTb5woJcRemQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.622 [XNIO-1 task-5] nOxhqECKQEWQiyvP_hDxaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.627 [XNIO-1 task-5] nOxhqECKQEWQiyvP_hDxaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.628 [XNIO-1 task-5] nOxhqECKQEWQiyvP_hDxaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.628 [XNIO-1 task-5] nOxhqECKQEWQiyvP_hDxaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:46.636 [XNIO-1 task-5] nOxhqECKQEWQiyvP_hDxaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.650 [XNIO-1 task-5] YaCtTaoLTaqdCBS4PYnj5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.650 [XNIO-1 task-5] YaCtTaoLTaqdCBS4PYnj5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.651 [XNIO-1 task-5] YaCtTaoLTaqdCBS4PYnj5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.651 [XNIO-1 task-5] YaCtTaoLTaqdCBS4PYnj5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:46.657 [XNIO-1 task-5] YaCtTaoLTaqdCBS4PYnj5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.662 [XNIO-1 task-5] -BnW7-vCTS2WF7XYiHlang DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.666 [XNIO-1 task-5] -BnW7-vCTS2WF7XYiHlang DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.666 [XNIO-1 task-5] -BnW7-vCTS2WF7XYiHlang DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.667 [XNIO-1 task-5] -BnW7-vCTS2WF7XYiHlang DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:46.673 [XNIO-1 task-5] -BnW7-vCTS2WF7XYiHlang DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.676 [XNIO-1 task-5] pKNPzMaoQz2yLhrokZ4_bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.676 [XNIO-1 task-5] pKNPzMaoQz2yLhrokZ4_bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.677 [XNIO-1 task-5] pKNPzMaoQz2yLhrokZ4_bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.677 [XNIO-1 task-5] pKNPzMaoQz2yLhrokZ4_bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", authorization) +09:00:46.679 [XNIO-1 task-6] Q4K5UxCmQ5utCtrDCFAx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.680 [XNIO-1 task-6] Q4K5UxCmQ5utCtrDCFAx9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.680 [XNIO-1 task-6] Q4K5UxCmQ5utCtrDCFAx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.681 [XNIO-1 task-6] Q4K5UxCmQ5utCtrDCFAx9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", authorization) +09:00:46.686 [XNIO-1 task-5] pKNPzMaoQz2yLhrokZ4_bQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.686 [XNIO-1 task-6] Q4K5UxCmQ5utCtrDCFAx9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.687 [XNIO-1 task-5] pKNPzMaoQz2yLhrokZ4_bQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.695 [XNIO-1 task-6] oTozKKFlTEG73AyMNTq8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.695 [XNIO-1 task-6] oTozKKFlTEG73AyMNTq8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.695 [XNIO-1 task-6] oTozKKFlTEG73AyMNTq8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.696 [XNIO-1 task-6] oTozKKFlTEG73AyMNTq8_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.708 [XNIO-1 task-6] oTozKKFlTEG73AyMNTq8_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.719 [XNIO-1 task-6] ClrQSr-VQ9O6DyTuo0FPtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.719 [XNIO-1 task-6] ClrQSr-VQ9O6DyTuo0FPtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.723 [XNIO-1 task-6] ClrQSr-VQ9O6DyTuo0FPtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.724 [XNIO-1 task-6] ClrQSr-VQ9O6DyTuo0FPtw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.733 [XNIO-1 task-5] NsHy3316SSW2ebbjZ--_Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.733 [XNIO-1 task-5] NsHy3316SSW2ebbjZ--_Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.734 [XNIO-1 task-5] NsHy3316SSW2ebbjZ--_Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.734 [XNIO-1 task-5] NsHy3316SSW2ebbjZ--_Kg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ktNht1o_T82nlii5BrsDuA redirectUri = http://localhost:8080/authorization +09:00:46.735 [XNIO-1 task-6] ClrQSr-VQ9O6DyTuo0FPtw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.740 [XNIO-1 task-6] _DrEkf0rSBmHuaGmSL1x0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.740 [XNIO-1 task-6] _DrEkf0rSBmHuaGmSL1x0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.741 [XNIO-1 task-5] NsHy3316SSW2ebbjZ--_Kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.741 [XNIO-1 task-6] _DrEkf0rSBmHuaGmSL1x0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.741 [XNIO-1 task-6] _DrEkf0rSBmHuaGmSL1x0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", authorization) +09:00:46.749 [XNIO-1 task-6] _DrEkf0rSBmHuaGmSL1x0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.769 [XNIO-1 task-6] 2sA6YFucT5yAY9xrW0LEMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.769 [XNIO-1 task-6] 2sA6YFucT5yAY9xrW0LEMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.770 [XNIO-1 task-6] 2sA6YFucT5yAY9xrW0LEMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.770 [XNIO-1 task-6] 2sA6YFucT5yAY9xrW0LEMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", authorization) +09:00:46.778 [XNIO-1 task-6] 2sA6YFucT5yAY9xrW0LEMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.787 [XNIO-1 task-6] SZrwWlbpQUi26CjpXfZuDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.787 [XNIO-1 task-6] SZrwWlbpQUi26CjpXfZuDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.787 [XNIO-1 task-6] SZrwWlbpQUi26CjpXfZuDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.788 [XNIO-1 task-6] SZrwWlbpQUi26CjpXfZuDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", "Basic NjM0NTM5MjAtZWNlMC00N2ZlLWIyNWUtNjFiMGJiMzc1ZWJmOjZieDFPZElzUk0tSTdxd3RpNlFwSXc=", authorization) +09:00:46.794 [XNIO-1 task-6] SZrwWlbpQUi26CjpXfZuDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.802 [XNIO-1 task-6] Zm4UOCX1Sb-csxyd-nD_6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.803 [XNIO-1 task-6] Zm4UOCX1Sb-csxyd-nD_6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.803 [XNIO-1 task-6] Zm4UOCX1Sb-csxyd-nD_6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.803 [XNIO-1 task-6] Zm4UOCX1Sb-csxyd-nD_6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:46.810 [XNIO-1 task-6] Zm4UOCX1Sb-csxyd-nD_6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.813 [XNIO-1 task-5] PaGFcOHuRYuv55omE_v69w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.813 [XNIO-1 task-5] PaGFcOHuRYuv55omE_v69w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.814 [XNIO-1 task-5] PaGFcOHuRYuv55omE_v69w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.814 [XNIO-1 task-5] PaGFcOHuRYuv55omE_v69w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", authorization) +09:00:46.826 [XNIO-1 task-6] PRt-6ZB3TqKkQhmp1vTZ1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.826 [XNIO-1 task-6] PRt-6ZB3TqKkQhmp1vTZ1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.826 [XNIO-1 task-6] PRt-6ZB3TqKkQhmp1vTZ1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.827 [XNIO-1 task-6] PRt-6ZB3TqKkQhmp1vTZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTMwYTNkYzgtMjA1MS00ZGI1LTlhOWUtNTViYzk4N2MyZGZiOlJNeFp6MUdwUTFLQTRFYnZBVHVlTXc=", "Basic ZTMwYTNkYzgtMjA1MS00ZGI1LTlhOWUtNTViYzk4N2MyZGZiOlJNeFp6MUdwUTFLQTRFYnZBVHVlTXc=", authorization) +09:00:46.830 [XNIO-1 task-5] PaGFcOHuRYuv55omE_v69w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.830 [XNIO-1 task-5] PaGFcOHuRYuv55omE_v69w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.833 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.846 [XNIO-1 task-6] PRt-6ZB3TqKkQhmp1vTZ1Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.852 [XNIO-1 task-5] EFvFE9rLStieH8JMN03ldg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.853 [XNIO-1 task-5] EFvFE9rLStieH8JMN03ldg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.853 [XNIO-1 task-5] EFvFE9rLStieH8JMN03ldg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.853 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3af75e77-d342-4c48-ac2c-8c034fedf330 +09:00:46.853 [XNIO-1 task-5] EFvFE9rLStieH8JMN03ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.857 [XNIO-1 task-6] Z0dOkzJyTmGYLBBsyVYhjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.858 [XNIO-1 task-6] Z0dOkzJyTmGYLBBsyVYhjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.854 [XNIO-1 task-5] EFvFE9rLStieH8JMN03ldg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", authorization) +09:00:46.857 [XNIO-1 task-4] T4Vb046cTaSKxOVH5U-zkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.858 [XNIO-1 task-4] T4Vb046cTaSKxOVH5U-zkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.858 [XNIO-1 task-6] Z0dOkzJyTmGYLBBsyVYhjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.859 [XNIO-1 task-4] T4Vb046cTaSKxOVH5U-zkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:46.859 [XNIO-1 task-4] T4Vb046cTaSKxOVH5U-zkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.863 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:33c9efa7-7066-445d-9047-eb6085289c76 +09:00:46.869 [XNIO-1 task-4] T4Vb046cTaSKxOVH5U-zkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.872 [XNIO-1 task-6] Z0dOkzJyTmGYLBBsyVYhjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.875 [XNIO-1 task-5] EFvFE9rLStieH8JMN03ldg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:46.874 [XNIO-1 task-6] Z0dOkzJyTmGYLBBsyVYhjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.887 [XNIO-1 task-4] UVLFlPHjTEGk1WhPpja4Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.887 [XNIO-1 task-4] UVLFlPHjTEGk1WhPpja4Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.887 [XNIO-1 task-4] UVLFlPHjTEGk1WhPpja4Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.888 [XNIO-1 task-4] UVLFlPHjTEGk1WhPpja4Zw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.890 [XNIO-1 task-6] g--IkD0qS4yRRWvDIrRnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.890 [XNIO-1 task-6] g--IkD0qS4yRRWvDIrRnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.891 [XNIO-1 task-6] g--IkD0qS4yRRWvDIrRnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.891 [XNIO-1 task-6] g--IkD0qS4yRRWvDIrRnHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 09bb6c47-7935-45b0-9dbc-446618165123 scope = null +09:00:46.893 [XNIO-1 task-4] UVLFlPHjTEGk1WhPpja4Zw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.901 [XNIO-1 task-4] pdi1Dfb0Rcu7eOEgkDXMgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.901 [XNIO-1 task-4] pdi1Dfb0Rcu7eOEgkDXMgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.901 [XNIO-1 task-4] pdi1Dfb0Rcu7eOEgkDXMgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.904 [XNIO-1 task-4] pdi1Dfb0Rcu7eOEgkDXMgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:46.905 [XNIO-1 task-5] c5Kknj1GRj-yC4ft4j4ptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.905 [XNIO-1 task-5] c5Kknj1GRj-yC4ft4j4ptw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.906 [XNIO-1 task-6] g--IkD0qS4yRRWvDIrRnHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.907 [XNIO-1 task-5] c5Kknj1GRj-yC4ft4j4ptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.908 [XNIO-1 task-5] c5Kknj1GRj-yC4ft4j4ptw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = fy4SScndRFej6hzSZQFCdA redirectUri = http://localhost:8080/authorization +09:00:46.911 [XNIO-1 task-4] pdi1Dfb0Rcu7eOEgkDXMgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.919 [XNIO-1 task-5] c5Kknj1GRj-yC4ft4j4ptw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.917 [XNIO-1 task-4] OM2S6mspTo628HAexON14Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.921 [XNIO-1 task-4] OM2S6mspTo628HAexON14Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.921 [XNIO-1 task-4] OM2S6mspTo628HAexON14Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.921 [XNIO-1 task-4] OM2S6mspTo628HAexON14Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:46.930 [XNIO-1 task-4] OM2S6mspTo628HAexON14Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.936 [XNIO-1 task-4] 9RH5-hAATjSu2jpPAOyJuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.937 [XNIO-1 task-4] 9RH5-hAATjSu2jpPAOyJuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.941 [XNIO-1 task-4] 9RH5-hAATjSu2jpPAOyJuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.941 [XNIO-1 task-4] 9RH5-hAATjSu2jpPAOyJuA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:46.942 [XNIO-1 task-5] LdDtlFsYTJulFUmtbYKyqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:46.942 [XNIO-1 task-5] LdDtlFsYTJulFUmtbYKyqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.942 [XNIO-1 task-5] LdDtlFsYTJulFUmtbYKyqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.942 [XNIO-1 task-5] LdDtlFsYTJulFUmtbYKyqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:46.948 [XNIO-1 task-4] 9RH5-hAATjSu2jpPAOyJuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.960 [XNIO-1 task-5] LdDtlFsYTJulFUmtbYKyqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:46.960 [XNIO-1 task-4] whI4gk3OTrmR3hBVO6UPkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.960 [XNIO-1 task-4] whI4gk3OTrmR3hBVO6UPkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.960 [XNIO-1 task-4] whI4gk3OTrmR3hBVO6UPkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.961 [XNIO-1 task-4] whI4gk3OTrmR3hBVO6UPkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", authorization) +09:00:46.965 [XNIO-1 task-6] -gzoT4ZvQHqPKBKLcey9BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.965 [XNIO-1 task-6] -gzoT4ZvQHqPKBKLcey9BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.966 [XNIO-1 task-6] -gzoT4ZvQHqPKBKLcey9BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.966 [XNIO-1 task-6] -gzoT4ZvQHqPKBKLcey9BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", authorization) +09:00:46.977 [XNIO-1 task-5] KxOIXkVQSKmfRBXOAnwcsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.978 [XNIO-1 task-5] KxOIXkVQSKmfRBXOAnwcsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:46.978 [XNIO-1 task-5] KxOIXkVQSKmfRBXOAnwcsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:46.978 [XNIO-1 task-5] KxOIXkVQSKmfRBXOAnwcsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:46.979 [XNIO-1 task-6] -gzoT4ZvQHqPKBKLcey9BQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:46.980 [XNIO-1 task-6] -gzoT4ZvQHqPKBKLcey9BQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.982 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d5efe29-b306-4565-a4be-007688820163 +09:00:46.991 [XNIO-1 task-5] KxOIXkVQSKmfRBXOAnwcsQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:46.991 [XNIO-1 task-4] whI4gk3OTrmR3hBVO6UPkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.000 [XNIO-1 task-4] GVdQvsuiSfqsa52FKw9Hrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.000 [XNIO-1 task-4] GVdQvsuiSfqsa52FKw9Hrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.000 [XNIO-1 task-4] GVdQvsuiSfqsa52FKw9Hrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.001 [XNIO-1 task-4] GVdQvsuiSfqsa52FKw9Hrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.007 [XNIO-1 task-4] GVdQvsuiSfqsa52FKw9Hrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.015 [XNIO-1 task-4] 523hyPKvQcOv_XqVT-HgQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.015 [XNIO-1 task-4] 523hyPKvQcOv_XqVT-HgQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.015 [XNIO-1 task-4] 523hyPKvQcOv_XqVT-HgQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.015 [XNIO-1 task-4] 523hyPKvQcOv_XqVT-HgQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.021 [XNIO-1 task-4] 523hyPKvQcOv_XqVT-HgQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.030 [XNIO-1 task-4] RRvEpiwhTUi9J9n_Lo8q-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.031 [XNIO-1 task-4] RRvEpiwhTUi9J9n_Lo8q-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.031 [XNIO-1 task-4] RRvEpiwhTUi9J9n_Lo8q-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.031 [XNIO-1 task-4] RRvEpiwhTUi9J9n_Lo8q-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.038 [XNIO-1 task-4] RRvEpiwhTUi9J9n_Lo8q-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.043 [XNIO-1 task-4] aTBmrkadQ-y7W76HfJP3iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.044 [XNIO-1 task-4] aTBmrkadQ-y7W76HfJP3iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.045 [XNIO-1 task-5] 4FqWIH7CRwu0lK_OADcrnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.045 [XNIO-1 task-4] aTBmrkadQ-y7W76HfJP3iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.045 [XNIO-1 task-5] 4FqWIH7CRwu0lK_OADcrnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.045 [XNIO-1 task-5] 4FqWIH7CRwu0lK_OADcrnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.045 [XNIO-1 task-4] aTBmrkadQ-y7W76HfJP3iw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = nsw7lp7TRryApgz4UHP69w redirectUri = http://localhost:8080/authorization +09:00:47.046 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0f411e06-bb3e-4a66-a269-73f37705f2a6 +09:00:47.050 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0f411e06-bb3e-4a66-a269-73f37705f2a6 +09:00:47.053 [XNIO-1 task-4] aTBmrkadQ-y7W76HfJP3iw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.053 [XNIO-1 task-4] aTBmrkadQ-y7W76HfJP3iw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.055 [XNIO-1 task-5] 4FqWIH7CRwu0lK_OADcrnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.060 [XNIO-1 task-5] K-2_-sdMQ3SoPMeKRQxThw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.060 [XNIO-1 task-5] K-2_-sdMQ3SoPMeKRQxThw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.061 [XNIO-1 task-5] K-2_-sdMQ3SoPMeKRQxThw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.061 [XNIO-1 task-5] K-2_-sdMQ3SoPMeKRQxThw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.070 [XNIO-1 task-5] K-2_-sdMQ3SoPMeKRQxThw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.073 [XNIO-1 task-4] 3sDAhuynR0y7z9Ayyt3fRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.073 [XNIO-1 task-4] 3sDAhuynR0y7z9Ayyt3fRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.074 [XNIO-1 task-4] 3sDAhuynR0y7z9Ayyt3fRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.074 [XNIO-1 task-4] 3sDAhuynR0y7z9Ayyt3fRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 82b1013e-5f79-4565-8ff0-ad18110d6d16 scope = null +09:00:47.077 [XNIO-1 task-5] Yq74rmnlSo-0YzDjGKXnTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.077 [XNIO-1 task-5] Yq74rmnlSo-0YzDjGKXnTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.078 [XNIO-1 task-5] Yq74rmnlSo-0YzDjGKXnTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.078 [XNIO-1 task-5] Yq74rmnlSo-0YzDjGKXnTA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.086 [XNIO-1 task-5] Yq74rmnlSo-0YzDjGKXnTA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.087 [XNIO-1 task-4] 3sDAhuynR0y7z9Ayyt3fRg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.094 [XNIO-1 task-5] j-Z6jzjgQMCqXDq4V8mG5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.094 [XNIO-1 task-5] j-Z6jzjgQMCqXDq4V8mG5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.094 [XNIO-1 task-5] j-Z6jzjgQMCqXDq4V8mG5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.095 [XNIO-1 task-5] j-Z6jzjgQMCqXDq4V8mG5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.106 [XNIO-1 task-5] j-Z6jzjgQMCqXDq4V8mG5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.114 [XNIO-1 task-5] lkc8OMW3RmGluE04ueQ_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.114 [XNIO-1 task-5] lkc8OMW3RmGluE04ueQ_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.114 [XNIO-1 task-5] lkc8OMW3RmGluE04ueQ_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.115 [XNIO-1 task-5] lkc8OMW3RmGluE04ueQ_fQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.121 [XNIO-1 task-5] lkc8OMW3RmGluE04ueQ_fQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.128 [XNIO-1 task-5] TPTLtocdSm6iBp3hatHtuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.128 [XNIO-1 task-5] TPTLtocdSm6iBp3hatHtuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.128 [XNIO-1 task-5] TPTLtocdSm6iBp3hatHtuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.128 [XNIO-1 task-5] TPTLtocdSm6iBp3hatHtuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.136 [XNIO-1 task-4] Ul6N1rcNTe6bpzwc8ZAFjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.136 [XNIO-1 task-4] Ul6N1rcNTe6bpzwc8ZAFjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.138 [XNIO-1 task-4] Ul6N1rcNTe6bpzwc8ZAFjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.138 [XNIO-1 task-4] Ul6N1rcNTe6bpzwc8ZAFjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = U1C42zXVSaCf_eZLjBrb9Q redirectUri = http://localhost:8080/authorization +09:00:47.141 [XNIO-1 task-5] TPTLtocdSm6iBp3hatHtuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.154 [XNIO-1 task-5] 96BC5dbyTK6ZJfGq4QhjOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.154 [XNIO-1 task-4] Ul6N1rcNTe6bpzwc8ZAFjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.154 [XNIO-1 task-5] 96BC5dbyTK6ZJfGq4QhjOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.154 [XNIO-1 task-5] 96BC5dbyTK6ZJfGq4QhjOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.155 [XNIO-1 task-5] 96BC5dbyTK6ZJfGq4QhjOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2FmNzVlNzctZDM0Mi00YzQ4LWFjMmMtOGMwMzRmZWRmMzMwOmg5eW9JS3V4UUhDTmdFS1BPQVFGT1E=", "Basic M2FmNzVlNzctZDM0Mi00YzQ4LWFjMmMtOGMwMzRmZWRmMzMwOmg5eW9JS3V4UUhDTmdFS1BPQVFGT1E=", authorization) +09:00:47.158 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9824ed64-53ff-4c0a-b302-35a507e12240 +09:00:47.167 [XNIO-1 task-5] 96BC5dbyTK6ZJfGq4QhjOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.174 [XNIO-1 task-5] ORWEaBM2TyWDqnCnyEeH1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.175 [XNIO-1 task-5] ORWEaBM2TyWDqnCnyEeH1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.175 [XNIO-1 task-5] ORWEaBM2TyWDqnCnyEeH1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.175 [XNIO-1 task-5] ORWEaBM2TyWDqnCnyEeH1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJiYTc3ZWQtZThmMC00M2VkLTkwNzItNDQ1ZjczNTQzMjJiOlZlM1ZJUlFrUW9DdTAwUFczNV81WVE=", "Basic NjJiYTc3ZWQtZThmMC00M2VkLTkwNzItNDQ1ZjczNTQzMjJiOlZlM1ZJUlFrUW9DdTAwUFczNV81WVE=", authorization) +09:00:47.183 [XNIO-1 task-5] ORWEaBM2TyWDqnCnyEeH1A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.190 [XNIO-1 task-5] czHhJX5nTC6IhHmRv4lUKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.191 [XNIO-1 task-5] czHhJX5nTC6IhHmRv4lUKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.192 [XNIO-1 task-5] czHhJX5nTC6IhHmRv4lUKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.192 [XNIO-1 task-5] czHhJX5nTC6IhHmRv4lUKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:47.194 [XNIO-1 task-4] S6zn85KhRNmZXaLAHJRDAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.194 [XNIO-1 task-4] S6zn85KhRNmZXaLAHJRDAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.194 [XNIO-1 task-4] S6zn85KhRNmZXaLAHJRDAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.194 [XNIO-1 task-4] S6zn85KhRNmZXaLAHJRDAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJiYTc3ZWQtZThmMC00M2VkLTkwNzItNDQ1ZjczNTQzMjJiOlZlM1ZJUlFrUW9DdTAwUFczNV81WVE=", "Basic NjJiYTc3ZWQtZThmMC00M2VkLTkwNzItNDQ1ZjczNTQzMjJiOlZlM1ZJUlFrUW9DdTAwUFczNV81WVE=", authorization) +09:00:47.199 [XNIO-1 task-6] LtLAcF5HSEis8LV_2GPy8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.199 [XNIO-1 task-4] S6zn85KhRNmZXaLAHJRDAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.200 [XNIO-1 task-6] LtLAcF5HSEis8LV_2GPy8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.200 [XNIO-1 task-6] LtLAcF5HSEis8LV_2GPy8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.200 [XNIO-1 task-6] LtLAcF5HSEis8LV_2GPy8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", "Basic OWQ2NTNhOGMtOGY2Ny00MDMwLWI1NjEtMmRhMDM0YTA3MTYxOkI3RnRhRnJEVHVpdDljTG5JS0piTmc=", authorization) +09:00:47.204 [XNIO-1 task-4] Vtcq3g6hRtWy3sEYMeBL0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.205 [XNIO-1 task-4] Vtcq3g6hRtWy3sEYMeBL0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.205 [XNIO-1 task-4] Vtcq3g6hRtWy3sEYMeBL0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.205 [XNIO-1 task-4] Vtcq3g6hRtWy3sEYMeBL0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJiYTc3ZWQtZThmMC00M2VkLTkwNzItNDQ1ZjczNTQzMjJiOlZlM1ZJUlFrUW9DdTAwUFczNV81WVE=", "Basic NjJiYTc3ZWQtZThmMC00M2VkLTkwNzItNDQ1ZjczNTQzMjJiOlZlM1ZJUlFrUW9DdTAwUFczNV81WVE=", authorization) +09:00:47.207 [XNIO-1 task-6] LtLAcF5HSEis8LV_2GPy8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.208 [XNIO-1 task-6] LtLAcF5HSEis8LV_2GPy8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.209 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.210 [XNIO-1 task-4] Vtcq3g6hRtWy3sEYMeBL0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.220 [XNIO-1 task-5] czHhJX5nTC6IhHmRv4lUKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.221 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6c5223a1 +09:00:47.224 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6c5223a1 +09:00:47.224 [XNIO-1 task-4] rLD-BbpDRPysyjubb6ldwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.250 [XNIO-1 task-4] rLD-BbpDRPysyjubb6ldwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.224 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6c5223a1 +09:00:47.251 [XNIO-1 task-4] rLD-BbpDRPysyjubb6ldwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.258 [XNIO-1 task-4] rLD-BbpDRPysyjubb6ldwA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.272 [XNIO-1 task-4] UlahpMZASr6c578nnvUmyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.272 [XNIO-1 task-4] UlahpMZASr6c578nnvUmyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.273 [XNIO-1 task-4] UlahpMZASr6c578nnvUmyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.273 [XNIO-1 task-4] UlahpMZASr6c578nnvUmyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", "Basic ZGMyMjIzNDEtMmUyNy00ZjFkLThlMDMtN2QzM2QwOGQzMjM2OnJmS3ZiOTZuUW1XLW5uS0JRYWdMQWc=", authorization) +09:00:47.281 [XNIO-1 task-4] UlahpMZASr6c578nnvUmyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.285 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8b462fbd-f1c0-40e0-8357-e4b445e7a5ca +09:00:47.288 [XNIO-1 task-4] uKsqQQhwTbesKm5QfkslmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.288 [XNIO-1 task-4] uKsqQQhwTbesKm5QfkslmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.289 [XNIO-1 task-4] uKsqQQhwTbesKm5QfkslmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.289 [XNIO-1 task-4] uKsqQQhwTbesKm5QfkslmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tiq6MoJJR3C1mqd-Wt9Vgg redirectUri = http://localhost:8080/authorization +09:00:47.291 [XNIO-1 task-5] w96K-lE7Tp-Fi8x6t3sRpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.291 [XNIO-1 task-5] w96K-lE7Tp-Fi8x6t3sRpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.291 [XNIO-1 task-5] w96K-lE7Tp-Fi8x6t3sRpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.292 [XNIO-1 task-5] w96K-lE7Tp-Fi8x6t3sRpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.300 [XNIO-1 task-5] w96K-lE7Tp-Fi8x6t3sRpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.302 [XNIO-1 task-4] uKsqQQhwTbesKm5QfkslmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.316 [XNIO-1 task-4] QInPNOKITV2P7O28TVITfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.316 [XNIO-1 task-4] QInPNOKITV2P7O28TVITfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.317 [XNIO-1 task-4] QInPNOKITV2P7O28TVITfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.318 [XNIO-1 task-4] QInPNOKITV2P7O28TVITfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", authorization) +09:00:47.322 [XNIO-1 task-5] 5YBfRnulS-ediLzWSLbc4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.322 [XNIO-1 task-5] 5YBfRnulS-ediLzWSLbc4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.323 [XNIO-1 task-5] 5YBfRnulS-ediLzWSLbc4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.324 [XNIO-1 task-5] 5YBfRnulS-ediLzWSLbc4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTMwYTNkYzgtMjA1MS00ZGI1LTlhOWUtNTViYzk4N2MyZGZiOlJNeFp6MUdwUTFLQTRFYnZBVHVlTXc=", "Basic ZTMwYTNkYzgtMjA1MS00ZGI1LTlhOWUtNTViYzk4N2MyZGZiOlJNeFp6MUdwUTFLQTRFYnZBVHVlTXc=", authorization) +09:00:47.324 [XNIO-1 task-4] QInPNOKITV2P7O28TVITfQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.326 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6c5223a1 +09:00:47.332 [XNIO-1 task-4] iWO50wGYTxaEVCblvrtm5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.332 [XNIO-1 task-4] iWO50wGYTxaEVCblvrtm5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.333 [XNIO-1 task-4] iWO50wGYTxaEVCblvrtm5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.333 [XNIO-1 task-4] iWO50wGYTxaEVCblvrtm5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.339 [XNIO-1 task-5] 5YBfRnulS-ediLzWSLbc4w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.341 [XNIO-1 task-4] iWO50wGYTxaEVCblvrtm5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.352 [XNIO-1 task-5] fTizOGw9QTae-SRbYlYc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.352 [XNIO-1 task-5] fTizOGw9QTae-SRbYlYc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.352 [XNIO-1 task-5] fTizOGw9QTae-SRbYlYc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.353 [XNIO-1 task-5] fTizOGw9QTae-SRbYlYc_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.358 [XNIO-1 task-4] dt9xX1MMTuiz_HCNekIvmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.358 [XNIO-1 task-4] dt9xX1MMTuiz_HCNekIvmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.359 [XNIO-1 task-5] fTizOGw9QTae-SRbYlYc_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.359 [XNIO-1 task-4] dt9xX1MMTuiz_HCNekIvmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.360 [XNIO-1 task-4] dt9xX1MMTuiz_HCNekIvmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mjXo7ZHXT1mX3LatFY8lrQ redirectUri = http://localhost:8080/authorization +09:00:47.368 [XNIO-1 task-4] dt9xX1MMTuiz_HCNekIvmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.369 [XNIO-1 task-5] 5OoYwJ6mTbyJLjYptof9uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.369 [XNIO-1 task-5] 5OoYwJ6mTbyJLjYptof9uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.370 [XNIO-1 task-5] 5OoYwJ6mTbyJLjYptof9uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.370 [XNIO-1 task-5] 5OoYwJ6mTbyJLjYptof9uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:47.370 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a1e0d05c +09:00:47.375 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a1e0d05c +09:00:47.375 [XNIO-1 task-5] 5OoYwJ6mTbyJLjYptof9uw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.385 [XNIO-1 task-4] 9i4BEYVzR0ml4NYxN8vbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.385 [XNIO-1 task-4] 9i4BEYVzR0ml4NYxN8vbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.385 [XNIO-1 task-4] 9i4BEYVzR0ml4NYxN8vbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.386 [XNIO-1 task-4] 9i4BEYVzR0ml4NYxN8vbHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.391 [XNIO-1 task-4] 9i4BEYVzR0ml4NYxN8vbHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.391 [XNIO-1 task-5] PjUeY8NFTout6sJlFzF0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.392 [XNIO-1 task-5] PjUeY8NFTout6sJlFzF0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.392 [XNIO-1 task-5] PjUeY8NFTout6sJlFzF0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.392 [XNIO-1 task-5] PjUeY8NFTout6sJlFzF0MQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6iE1-dMoQ1Wh7NshHfmi1w redirectUri = http://localhost:8080/authorization +09:00:47.396 [XNIO-1 task-4] 2UroQVO3TNCNivU3Jh7NHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.396 [XNIO-1 task-4] 2UroQVO3TNCNivU3Jh7NHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.396 [XNIO-1 task-4] 2UroQVO3TNCNivU3Jh7NHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.397 [XNIO-1 task-4] 2UroQVO3TNCNivU3Jh7NHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jy5AoljoQVe74Zn-tyWCeg redirectUri = http://localhost:8080/authorization +09:00:47.400 [XNIO-1 task-6] JPQrgf44QTOF82lp2hM1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.400 [XNIO-1 task-6] JPQrgf44QTOF82lp2hM1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.400 [XNIO-1 task-6] JPQrgf44QTOF82lp2hM1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.402 [XNIO-1 task-6] JPQrgf44QTOF82lp2hM1tA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.404 [XNIO-1 task-5] PjUeY8NFTout6sJlFzF0MQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.407 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a1e0d05c +09:00:47.410 [XNIO-1 task-4] 2UroQVO3TNCNivU3Jh7NHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.410 [XNIO-1 task-4] 2UroQVO3TNCNivU3Jh7NHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.410 [XNIO-1 task-6] JPQrgf44QTOF82lp2hM1tA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.418 [XNIO-1 task-5] H3UDMTeaQqCtwVjsPQ-Ptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.418 [XNIO-1 task-5] H3UDMTeaQqCtwVjsPQ-Ptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.419 [XNIO-1 task-5] H3UDMTeaQqCtwVjsPQ-Ptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.419 [XNIO-1 task-5] H3UDMTeaQqCtwVjsPQ-Ptw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.428 [XNIO-1 task-5] H3UDMTeaQqCtwVjsPQ-Ptw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.437 [XNIO-1 task-5] WW5Sf4LfREebUoDdiRvr0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.437 [XNIO-1 task-5] WW5Sf4LfREebUoDdiRvr0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.438 [XNIO-1 task-5] WW5Sf4LfREebUoDdiRvr0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.438 [XNIO-1 task-5] WW5Sf4LfREebUoDdiRvr0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", authorization) +09:00:47.439 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a1e0d05c +09:00:47.451 [XNIO-1 task-4] -yDeneKjQ5Sq_cPiPyyryg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.451 [XNIO-1 task-4] -yDeneKjQ5Sq_cPiPyyryg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.451 [XNIO-1 task-4] -yDeneKjQ5Sq_cPiPyyryg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.452 [XNIO-1 task-4] -yDeneKjQ5Sq_cPiPyyryg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YX7QFRXtRWCl3R_CO1pYgQ redirectUri = http://localhost:8080/authorization +09:00:47.454 [XNIO-1 task-5] WW5Sf4LfREebUoDdiRvr0g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.458 [XNIO-1 task-4] -yDeneKjQ5Sq_cPiPyyryg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.460 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:81c631d0-3f80-4683-84fd-b5b75cd0bc2c +09:00:47.464 [XNIO-1 task-5] weAqLGyCSJaqhunmMamPqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.465 [XNIO-1 task-5] weAqLGyCSJaqhunmMamPqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.466 [XNIO-1 task-5] weAqLGyCSJaqhunmMamPqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.466 [XNIO-1 task-5] weAqLGyCSJaqhunmMamPqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", authorization) +09:00:47.476 [XNIO-1 task-5] weAqLGyCSJaqhunmMamPqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.483 [XNIO-1 task-5] j_qCMlFvSfeSn7CEvM_JzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.485 [XNIO-1 task-5] j_qCMlFvSfeSn7CEvM_JzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.485 [XNIO-1 task-5] j_qCMlFvSfeSn7CEvM_JzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.487 [XNIO-1 task-5] j_qCMlFvSfeSn7CEvM_JzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", authorization) +09:00:47.495 [XNIO-1 task-5] j_qCMlFvSfeSn7CEvM_JzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.501 [XNIO-1 task-5] saWT3WUrSgO_g9CN8tb1cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.502 [XNIO-1 task-5] saWT3WUrSgO_g9CN8tb1cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.502 [XNIO-1 task-5] saWT3WUrSgO_g9CN8tb1cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.502 [XNIO-1 task-5] saWT3WUrSgO_g9CN8tb1cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", authorization) +09:00:47.509 [XNIO-1 task-5] saWT3WUrSgO_g9CN8tb1cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.513 [XNIO-1 task-4] fBsW04O5SBGwJ6PXDiereA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.513 [XNIO-1 task-4] fBsW04O5SBGwJ6PXDiereA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.514 [XNIO-1 task-4] fBsW04O5SBGwJ6PXDiereA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.515 [XNIO-1 task-4] fBsW04O5SBGwJ6PXDiereA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:47.522 [XNIO-1 task-5] DHeUhWbNSQOG953gKP-SZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.522 [XNIO-1 task-5] DHeUhWbNSQOG953gKP-SZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.522 [XNIO-1 task-5] DHeUhWbNSQOG953gKP-SZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.523 [XNIO-1 task-5] DHeUhWbNSQOG953gKP-SZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", authorization) +09:00:47.526 [XNIO-1 task-4] fBsW04O5SBGwJ6PXDiereA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.527 [XNIO-1 task-4] fBsW04O5SBGwJ6PXDiereA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.528 [XNIO-1 task-5] DHeUhWbNSQOG953gKP-SZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.533 [XNIO-1 task-6] _oTQhe4KS6OO2gxkB0Qu5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.534 [XNIO-1 task-5] mchsgF94TmSCQ8IZwLAknw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.535 [XNIO-1 task-5] mchsgF94TmSCQ8IZwLAknw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.535 [XNIO-1 task-5] mchsgF94TmSCQ8IZwLAknw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.535 [XNIO-1 task-6] _oTQhe4KS6OO2gxkB0Qu5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.535 [XNIO-1 task-6] _oTQhe4KS6OO2gxkB0Qu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.535 [XNIO-1 task-5] mchsgF94TmSCQ8IZwLAknw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", authorization) +09:00:47.535 [XNIO-1 task-5] mchsgF94TmSCQ8IZwLAknw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.540 [XNIO-1 task-5] mchsgF94TmSCQ8IZwLAknw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.544 [XNIO-1 task-6] _oTQhe4KS6OO2gxkB0Qu5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.546 [XNIO-1 task-5] 6TbYywCbQ1GfvRCf84B1oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.546 [XNIO-1 task-5] 6TbYywCbQ1GfvRCf84B1oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.546 [XNIO-1 task-5] 6TbYywCbQ1GfvRCf84B1oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.546 [XNIO-1 task-5] 6TbYywCbQ1GfvRCf84B1oA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:47.549 [XNIO-1 task-4] w4zshVncR1qZwCw91YEEfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.549 [XNIO-1 task-4] w4zshVncR1qZwCw91YEEfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.550 [XNIO-1 task-4] w4zshVncR1qZwCw91YEEfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.550 [XNIO-1 task-4] w4zshVncR1qZwCw91YEEfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", "Basic ZTBlYzI2YTEtZjU2Yy00Mzg3LWEwY2MtNjYxODJhYWNkMmM4Oklpa1lfS0VrU2NlTDRvS1Z3a2x1aUE=", authorization) +09:00:47.556 [XNIO-1 task-4] w4zshVncR1qZwCw91YEEfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.558 [XNIO-1 task-5] 6TbYywCbQ1GfvRCf84B1oA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.570 [XNIO-1 task-4] ocp7Yi1CRLCsSpNT_XmnbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.570 [XNIO-1 task-4] ocp7Yi1CRLCsSpNT_XmnbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.571 [XNIO-1 task-4] ocp7Yi1CRLCsSpNT_XmnbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.571 [XNIO-1 task-4] ocp7Yi1CRLCsSpNT_XmnbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:47.575 [XNIO-1 task-5] Ih_zJij6TweQ4qKfmA2VnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.577 [XNIO-1 task-5] Ih_zJij6TweQ4qKfmA2VnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.577 [XNIO-1 task-5] Ih_zJij6TweQ4qKfmA2VnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.577 [XNIO-1 task-5] Ih_zJij6TweQ4qKfmA2VnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.578 [XNIO-1 task-5] Ih_zJij6TweQ4qKfmA2VnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:47.583 [XNIO-1 task-4] ko-D9IeQQsK5EIcqKMpXfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.584 [XNIO-1 task-4] ko-D9IeQQsK5EIcqKMpXfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.585 [XNIO-1 task-4] ko-D9IeQQsK5EIcqKMpXfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.585 [XNIO-1 task-4] ko-D9IeQQsK5EIcqKMpXfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:47.586 [XNIO-1 task-6] EoQ77PJrRqS2-xtletoSBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.586 [XNIO-1 task-6] EoQ77PJrRqS2-xtletoSBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.586 [XNIO-1 task-6] EoQ77PJrRqS2-xtletoSBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.587 [XNIO-1 task-6] EoQ77PJrRqS2-xtletoSBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", authorization) +09:00:47.593 [XNIO-1 task-5] Ih_zJij6TweQ4qKfmA2VnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.594 [XNIO-1 task-6] EoQ77PJrRqS2-xtletoSBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.594 [XNIO-1 task-6] EoQ77PJrRqS2-xtletoSBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.596 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.598 [XNIO-1 task-4] ko-D9IeQQsK5EIcqKMpXfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.613 [XNIO-1 task-6] p6GvbWhjQUmez3IuzjOoeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.613 [XNIO-1 task-6] p6GvbWhjQUmez3IuzjOoeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.613 [XNIO-1 task-6] p6GvbWhjQUmez3IuzjOoeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.614 [XNIO-1 task-6] p6GvbWhjQUmez3IuzjOoeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:47.627 [XNIO-1 task-6] p6GvbWhjQUmez3IuzjOoeA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.631 [XNIO-1 task-6] YSaB476RTZiich9iQE_hUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.631 [XNIO-1 task-6] YSaB476RTZiich9iQE_hUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.632 [XNIO-1 task-6] YSaB476RTZiich9iQE_hUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.632 [XNIO-1 task-6] YSaB476RTZiich9iQE_hUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:47.637 [XNIO-1 task-6] YSaB476RTZiich9iQE_hUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.643 [XNIO-1 task-6] QaMJPqfoS7uv8Xla8R41kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.643 [XNIO-1 task-6] QaMJPqfoS7uv8Xla8R41kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.644 [XNIO-1 task-5] 156ntg9tT_iYJG6qbGNxoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.644 [XNIO-1 task-6] QaMJPqfoS7uv8Xla8R41kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.644 [XNIO-1 task-6] QaMJPqfoS7uv8Xla8R41kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.644 [XNIO-1 task-5] 156ntg9tT_iYJG6qbGNxoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.644 [XNIO-1 task-6] QaMJPqfoS7uv8Xla8R41kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTY1Mzc2ZWYtNmVmMS00NWNiLTk3MzItMTVhZmYzYjA3OGYzOmxPdkNycERjVHRDVE1CaXFJNU5VYmc=", "Basic YTY1Mzc2ZWYtNmVmMS00NWNiLTk3MzItMTVhZmYzYjA3OGYzOmxPdkNycERjVHRDVE1CaXFJNU5VYmc=", authorization) +09:00:47.644 [XNIO-1 task-5] 156ntg9tT_iYJG6qbGNxoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", "Basic OGFiYzg3MmEtYTllOC00OGVmLTgwMzUtZDUxNGU4YTE0ZThiOlNhaXlNaGtFUTM2Tl9EWkJvSklkLWc=", authorization) +09:00:47.650 [XNIO-1 task-4] ne0p1sVGS5aZ5b-_5v6EZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.650 [XNIO-1 task-4] ne0p1sVGS5aZ5b-_5v6EZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.650 [XNIO-1 task-4] ne0p1sVGS5aZ5b-_5v6EZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.650 [XNIO-1 task-4] ne0p1sVGS5aZ5b-_5v6EZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", "Basic N2E5YWU2NjgtNGM1NC00ZDVhLWE1MTktOWNiNzdmYjZjNjQzOkJtTVN3YU5oUk11c09lYlNDc2JCUlE=", authorization) +09:00:47.652 [XNIO-1 task-5] 156ntg9tT_iYJG6qbGNxoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.656 [XNIO-1 task-6] QaMJPqfoS7uv8Xla8R41kw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.657 [XNIO-1 task-6] QaMJPqfoS7uv8Xla8R41kw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.657 [XNIO-1 task-4] ne0p1sVGS5aZ5b-_5v6EZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.659 [XNIO-1 task-5] f6YH1cH9RWCR15KUT5eipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.659 [XNIO-1 task-5] f6YH1cH9RWCR15KUT5eipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.659 [XNIO-1 task-5] f6YH1cH9RWCR15KUT5eipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.660 [XNIO-1 task-5] f6YH1cH9RWCR15KUT5eipg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", authorization) +09:00:47.666 [XNIO-1 task-5] f6YH1cH9RWCR15KUT5eipg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.679 [XNIO-1 task-4] JGAH98kwT1iBHmfVyw03qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.679 [XNIO-1 task-4] JGAH98kwT1iBHmfVyw03qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.679 [XNIO-1 task-4] JGAH98kwT1iBHmfVyw03qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.679 [XNIO-1 task-4] JGAH98kwT1iBHmfVyw03qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0MTFlMDYtYmIzZS00YTY2LWEyNjktNzNmMzc3MDVmMmE2OmY2bVlwWi1jUlQtWjRXZFplTWRfU0E=", "Basic MGY0MTFlMDYtYmIzZS00YTY2LWEyNjktNzNmMzc3MDVmMmE2OmY2bVlwWi1jUlQtWjRXZFplTWRfU0E=", authorization) +09:00:47.686 [XNIO-1 task-4] JGAH98kwT1iBHmfVyw03qQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.687 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bb6b7f29-1e61-451b-ae2a-8b1fbba5fff9 +09:00:47.688 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bb6b7f29-1e61-451b-ae2a-8b1fbba5fff9 +09:00:47.693 [XNIO-1 task-4] F8-5dZzzTNOaIYdxKkis9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.694 [XNIO-1 task-4] F8-5dZzzTNOaIYdxKkis9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.694 [XNIO-1 task-4] F8-5dZzzTNOaIYdxKkis9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.694 [XNIO-1 task-4] F8-5dZzzTNOaIYdxKkis9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.698 [XNIO-1 task-6] 0WUGM9WDSi-80_fyDh06Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.698 [XNIO-1 task-6] 0WUGM9WDSi-80_fyDh06Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.698 [XNIO-1 task-6] 0WUGM9WDSi-80_fyDh06Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.698 [XNIO-1 task-6] 0WUGM9WDSi-80_fyDh06Dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vUERTqZtRDGVExLieungPA redirectUri = http://localhost:8080/authorization +09:00:47.702 [XNIO-1 task-4] F8-5dZzzTNOaIYdxKkis9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.707 [XNIO-1 task-4] l_kyW608SP2Yl60oidGctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.707 [XNIO-1 task-4] l_kyW608SP2Yl60oidGctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.708 [XNIO-1 task-4] l_kyW608SP2Yl60oidGctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.708 [XNIO-1 task-4] l_kyW608SP2Yl60oidGctw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VBZFzC01R42E717PtmYOPQ redirectUri = http://localhost:8080/authorization +09:00:47.710 [XNIO-1 task-6] 0WUGM9WDSi-80_fyDh06Dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.711 [XNIO-1 task-5] W5PRlaQlQAyzbnkUjut-hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.711 [XNIO-1 task-6] 0WUGM9WDSi-80_fyDh06Dg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.712 [XNIO-1 task-5] W5PRlaQlQAyzbnkUjut-hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.712 [XNIO-1 task-5] W5PRlaQlQAyzbnkUjut-hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", "Basic MWFjODI1NmItM2VlZS00YzI1LTljMzQtNzY5NThmNzhiMWFkOnZ1LUkyLXFxVEFPYTIwakJCOFAwRWc=", authorization) +09:00:47.718 [XNIO-1 task-5] W5PRlaQlQAyzbnkUjut-hQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.722 [XNIO-1 task-4] l_kyW608SP2Yl60oidGctw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.723 [XNIO-1 task-4] l_kyW608SP2Yl60oidGctw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.726 [XNIO-1 task-6] 3eWtVdGzSZ6ajsB_mlucpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.726 [XNIO-1 task-6] 3eWtVdGzSZ6ajsB_mlucpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.726 [XNIO-1 task-6] 3eWtVdGzSZ6ajsB_mlucpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.727 [XNIO-1 task-6] 3eWtVdGzSZ6ajsB_mlucpg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.733 [XNIO-1 task-4] 3QeuM4N1TkWAJku4f_XZIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.733 [XNIO-1 task-4] 3QeuM4N1TkWAJku4f_XZIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.733 [XNIO-1 task-4] 3QeuM4N1TkWAJku4f_XZIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.733 [XNIO-1 task-6] 3eWtVdGzSZ6ajsB_mlucpg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.734 [XNIO-1 task-4] 3QeuM4N1TkWAJku4f_XZIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 34d7c511-81c5-4f06-8cfa-5f8744ef5fd7 scope = null +09:00:47.738 [XNIO-1 task-6] JT_qB-4MTJ-S9BBnCqBmeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.739 [XNIO-1 task-6] JT_qB-4MTJ-S9BBnCqBmeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.739 [XNIO-1 task-6] JT_qB-4MTJ-S9BBnCqBmeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.739 [XNIO-1 task-6] JT_qB-4MTJ-S9BBnCqBmeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.745 [XNIO-1 task-6] JT_qB-4MTJ-S9BBnCqBmeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.748 [XNIO-1 task-4] 3QeuM4N1TkWAJku4f_XZIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.752 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:47.757 [XNIO-1 task-6] _2LUWiXASPKwq6RX_h9isw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.757 [XNIO-1 task-6] _2LUWiXASPKwq6RX_h9isw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.758 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1c6cd7b9-5434-406f-9e40-64d713644390 +09:00:47.767 [XNIO-1 task-6] _2LUWiXASPKwq6RX_h9isw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.770 [XNIO-1 task-6] _2LUWiXASPKwq6RX_h9isw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.776 [XNIO-1 task-6] _2LUWiXASPKwq6RX_h9isw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.790 [XNIO-1 task-6] C1LquIx8T4OAuXZIC1Hxwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.793 [XNIO-1 task-6] C1LquIx8T4OAuXZIC1Hxwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.794 [XNIO-1 task-6] C1LquIx8T4OAuXZIC1Hxwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.795 [XNIO-1 task-6] C1LquIx8T4OAuXZIC1Hxwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.800 [XNIO-1 task-6] C1LquIx8T4OAuXZIC1Hxwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.822 [XNIO-1 task-6] trqIxCNET26cMVtsEhFBcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.824 [XNIO-1 task-6] trqIxCNET26cMVtsEhFBcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.825 [XNIO-1 task-6] trqIxCNET26cMVtsEhFBcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.825 [XNIO-1 task-6] trqIxCNET26cMVtsEhFBcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI4NDAyMDUtN2I1Yi00Zjg5LWIwZGItNTQzZmVmMmVlZTBmOnZNYmJJZkJXVExPbFNHckxzZ051dGc=", "Basic YjI4NDAyMDUtN2I1Yi00Zjg5LWIwZGItNTQzZmVmMmVlZTBmOnZNYmJJZkJXVExPbFNHckxzZ051dGc=", authorization) +09:00:47.831 [XNIO-1 task-6] trqIxCNET26cMVtsEhFBcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.841 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2799f1d8 +09:00:47.841 [XNIO-1 task-6] C0OtltyGQcSLdOpjwmSwqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.841 [XNIO-1 task-6] C0OtltyGQcSLdOpjwmSwqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.842 [XNIO-1 task-6] C0OtltyGQcSLdOpjwmSwqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.842 [XNIO-1 task-6] C0OtltyGQcSLdOpjwmSwqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.844 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2799f1d8 +09:00:47.849 [XNIO-1 task-6] C0OtltyGQcSLdOpjwmSwqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.852 [XNIO-1 task-4] qA3Ng0ZaQqOK1h3aa1NDig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.852 [XNIO-1 task-4] qA3Ng0ZaQqOK1h3aa1NDig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.853 [XNIO-1 task-4] qA3Ng0ZaQqOK1h3aa1NDig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.854 [XNIO-1 task-4] qA3Ng0ZaQqOK1h3aa1NDig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LvgLQRdLR5-af7j2GareSA redirectUri = http://localhost:8080/authorization +09:00:47.855 [XNIO-1 task-6] ggjPp_T3RzaZEdwemYQzlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.855 [XNIO-1 task-6] ggjPp_T3RzaZEdwemYQzlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.856 [XNIO-1 task-6] ggjPp_T3RzaZEdwemYQzlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.856 [XNIO-1 task-6] ggjPp_T3RzaZEdwemYQzlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.868 [XNIO-1 task-6] ggjPp_T3RzaZEdwemYQzlg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.875 [XNIO-1 task-6] zbRB5RgmSxiDUNoiEsmWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.875 [XNIO-1 task-6] zbRB5RgmSxiDUNoiEsmWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.876 [XNIO-1 task-6] zbRB5RgmSxiDUNoiEsmWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.877 [XNIO-1 task-6] zbRB5RgmSxiDUNoiEsmWVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.885 [XNIO-1 task-4] qA3Ng0ZaQqOK1h3aa1NDig ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:00:47.887 [XNIO-1 task-6] zbRB5RgmSxiDUNoiEsmWVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.890 [XNIO-1 task-4] H3r9aE4FSTSMMxiyiYxjgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.890 [XNIO-1 task-4] H3r9aE4FSTSMMxiyiYxjgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.891 [XNIO-1 task-4] H3r9aE4FSTSMMxiyiYxjgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.891 [XNIO-1 task-4] H3r9aE4FSTSMMxiyiYxjgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f7f97f8c-3308-4660-bb0a-6665e224f62f scope = null +09:00:47.895 [XNIO-1 task-6] XYM8iNqlS3e5iDONZ5-tyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.895 [XNIO-1 task-6] XYM8iNqlS3e5iDONZ5-tyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.896 [XNIO-1 task-6] XYM8iNqlS3e5iDONZ5-tyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.896 [XNIO-1 task-6] XYM8iNqlS3e5iDONZ5-tyA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.901 [XNIO-1 task-6] XYM8iNqlS3e5iDONZ5-tyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f7f97f8c-3308-4660-bb0a-6665e224f62f is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:47.910 [XNIO-1 task-4] 6tOuA4kGSCmjWLYJrI6F1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.910 [XNIO-1 task-4] 6tOuA4kGSCmjWLYJrI6F1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.910 [XNIO-1 task-4] 6tOuA4kGSCmjWLYJrI6F1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.910 [XNIO-1 task-4] 6tOuA4kGSCmjWLYJrI6F1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", "Basic MWY5NGMwYzItYWZiMS00MDc3LWJiNDItMWE0YjA5MGJjNmY4OlNScE5SOFk5U0ZheDIzNV9vTkZ6N2c=", authorization) +09:00:47.917 [XNIO-1 task-4] 6tOuA4kGSCmjWLYJrI6F1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.925 [XNIO-1 task-4] GKiYACsMT7asS4yCl0oA5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.926 [XNIO-1 task-4] GKiYACsMT7asS4yCl0oA5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.926 [XNIO-1 task-4] GKiYACsMT7asS4yCl0oA5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.926 [XNIO-1 task-4] GKiYACsMT7asS4yCl0oA5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", authorization) +09:00:47.933 [XNIO-1 task-4] GKiYACsMT7asS4yCl0oA5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.940 [XNIO-1 task-4] FRmff3mMQkebdUJscnrMfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.940 [XNIO-1 task-4] FRmff3mMQkebdUJscnrMfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.940 [XNIO-1 task-4] FRmff3mMQkebdUJscnrMfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.940 [XNIO-1 task-4] FRmff3mMQkebdUJscnrMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", authorization) +09:00:47.946 [XNIO-1 task-4] FRmff3mMQkebdUJscnrMfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.951 [XNIO-1 task-4] 9OVax7rcSaSu_3fTzVw_Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.951 [XNIO-1 task-4] 9OVax7rcSaSu_3fTzVw_Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.951 [XNIO-1 task-4] 9OVax7rcSaSu_3fTzVw_Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.952 [XNIO-1 task-4] 9OVax7rcSaSu_3fTzVw_Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", authorization) +09:00:47.958 [XNIO-1 task-4] 9OVax7rcSaSu_3fTzVw_Rw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.958 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2799f1d8 +09:00:47.962 [XNIO-1 task-4] nST_7rwNQfGQCqDgkoGSxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.962 [XNIO-1 task-4] nST_7rwNQfGQCqDgkoGSxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.963 [XNIO-1 task-4] nST_7rwNQfGQCqDgkoGSxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.963 [XNIO-1 task-4] nST_7rwNQfGQCqDgkoGSxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:47.965 [XNIO-1 task-6] 8Yaetm_2RI6oyCDkucMX_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.966 [XNIO-1 task-6] 8Yaetm_2RI6oyCDkucMX_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:47.966 [XNIO-1 task-6] 8Yaetm_2RI6oyCDkucMX_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:47.966 [XNIO-1 task-6] 8Yaetm_2RI6oyCDkucMX_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", authorization) +09:00:47.972 [XNIO-1 task-6] 8Yaetm_2RI6oyCDkucMX_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:47.974 [XNIO-1 task-4] nST_7rwNQfGQCqDgkoGSxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:47.974 [XNIO-1 task-4] nST_7rwNQfGQCqDgkoGSxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.982 [XNIO-1 task-6] -m7w0tKhRGmWdx7UtWQgsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.982 [XNIO-1 task-6] -m7w0tKhRGmWdx7UtWQgsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.982 [XNIO-1 task-6] -m7w0tKhRGmWdx7UtWQgsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.982 [XNIO-1 task-6] -m7w0tKhRGmWdx7UtWQgsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:47.988 [XNIO-1 task-6] -m7w0tKhRGmWdx7UtWQgsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:47.998 [XNIO-1 task-6] aRow0WXaQg6VnuAT0RP4zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.998 [XNIO-1 task-6] aRow0WXaQg6VnuAT0RP4zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:47.999 [XNIO-1 task-6] aRow0WXaQg6VnuAT0RP4zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.001 [XNIO-1 task-6] aRow0WXaQg6VnuAT0RP4zQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.008 [XNIO-1 task-6] aRow0WXaQg6VnuAT0RP4zQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.016 [XNIO-1 task-6] oS_tpxjPTJmJmBR1OjS3fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.016 [XNIO-1 task-6] oS_tpxjPTJmJmBR1OjS3fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.022 [XNIO-1 task-6] oS_tpxjPTJmJmBR1OjS3fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.024 [XNIO-1 task-6] oS_tpxjPTJmJmBR1OjS3fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.034 [XNIO-1 task-6] oS_tpxjPTJmJmBR1OjS3fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.041 [XNIO-1 task-4] 6kTWsHwqROur04kMLT_x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.041 [XNIO-1 task-4] 6kTWsHwqROur04kMLT_x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.041 [XNIO-1 task-4] 6kTWsHwqROur04kMLT_x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.042 [XNIO-1 task-4] 6kTWsHwqROur04kMLT_x8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YQp29yAEQKmInjcW3cUQ3A redirectUri = http://localhost:8080/authorization +09:00:48.052 [XNIO-1 task-4] 6kTWsHwqROur04kMLT_x8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.055 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3c8bbb26-0ae2-4370-b774-24a4769e3306 +09:00:48.056 [XNIO-1 task-6] 3RyF-Q6WQX2AwmKvG7PNQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.057 [XNIO-1 task-6] 3RyF-Q6WQX2AwmKvG7PNQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.057 [XNIO-1 task-6] 3RyF-Q6WQX2AwmKvG7PNQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.057 [XNIO-1 task-6] 3RyF-Q6WQX2AwmKvG7PNQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", "Basic YjFhZTQyY2MtZmE5Ny00OTBiLWFmMDMtZWMzNDc4MzA3NGEwOjE1eXNBYzg2UmZHemFBRHpsVms5VHc=", authorization) +09:00:48.062 [XNIO-1 task-6] 3RyF-Q6WQX2AwmKvG7PNQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.066 [XNIO-1 task-6] PKIJPBx0QsCNcvGuUFXyBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.066 [XNIO-1 task-6] PKIJPBx0QsCNcvGuUFXyBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.066 [XNIO-1 task-6] PKIJPBx0QsCNcvGuUFXyBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.066 [XNIO-1 task-6] PKIJPBx0QsCNcvGuUFXyBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", "Basic YmRmNThhNTItMTBkNS00MzBjLWJkNzctOTdhMGNlYTBjNTdmOjhDT1dTME5MUUltbHR3X3dmMWFLdHc=", authorization) +09:00:48.068 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c9efa3d +09:00:48.070 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c66cd919-5262-436c-a7ce-106079ffeeeb +09:00:48.072 [XNIO-1 task-4] UaXFefYaQD-24-ezVyTjiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.072 [XNIO-1 task-4] UaXFefYaQD-24-ezVyTjiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.072 [XNIO-1 task-4] UaXFefYaQD-24-ezVyTjiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.073 [XNIO-1 task-4] UaXFefYaQD-24-ezVyTjiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.076 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7c9efa3d +09:00:48.077 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c66cd919-5262-436c-a7ce-106079ffeeeb +09:00:48.078 [XNIO-1 task-4] UaXFefYaQD-24-ezVyTjiA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.084 [XNIO-1 task-6] PKIJPBx0QsCNcvGuUFXyBQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.082 [XNIO-1 task-5] MfLgR2d2SB-MRPE78ZiK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.087 [XNIO-1 task-5] MfLgR2d2SB-MRPE78ZiK5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.087 [XNIO-1 task-5] MfLgR2d2SB-MRPE78ZiK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.088 [XNIO-1 task-5] MfLgR2d2SB-MRPE78ZiK5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", authorization) +09:00:48.090 [XNIO-1 task-4] 0wGir3QaT1SozzGRoUmo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.090 [XNIO-1 task-4] 0wGir3QaT1SozzGRoUmo4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.091 [XNIO-1 task-4] 0wGir3QaT1SozzGRoUmo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.091 [XNIO-1 task-4] 0wGir3QaT1SozzGRoUmo4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:48.095 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7c9efa3d +09:00:48.097 [XNIO-1 task-4] 0wGir3QaT1SozzGRoUmo4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.102 [XNIO-1 task-6] HcCI9bS4SouRpTbj7iWXvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.102 [XNIO-1 task-6] HcCI9bS4SouRpTbj7iWXvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.102 [XNIO-1 task-6] HcCI9bS4SouRpTbj7iWXvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.104 [XNIO-1 task-6] HcCI9bS4SouRpTbj7iWXvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:48.120 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d58db4a4-d807-4fc2-9c8c-83e78b8d75da +09:00:48.124 [XNIO-1 task-6] HcCI9bS4SouRpTbj7iWXvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.129 [XNIO-1 task-5] MfLgR2d2SB-MRPE78ZiK5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.134 [XNIO-1 task-6] CMfBQPBpRPKINhIXQCTIBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.134 [XNIO-1 task-6] CMfBQPBpRPKINhIXQCTIBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.135 [XNIO-1 task-6] CMfBQPBpRPKINhIXQCTIBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.135 [XNIO-1 task-6] CMfBQPBpRPKINhIXQCTIBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:48.145 [XNIO-1 task-6] CMfBQPBpRPKINhIXQCTIBA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.155 [XNIO-1 task-5] 7w4OdRTVQlifq5Po4cyIcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.156 [XNIO-1 task-5] 7w4OdRTVQlifq5Po4cyIcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.156 [XNIO-1 task-5] 7w4OdRTVQlifq5Po4cyIcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.156 [XNIO-1 task-5] 7w4OdRTVQlifq5Po4cyIcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRlNGQzOGYtMGZhYi00YTlmLTg3MTAtMTcyYThjZjcxOTI3OjhPSXI5dmp5UlhHbnRRRVhYaTR3Ync=", "Basic OGRlNGQzOGYtMGZhYi00YTlmLTg3MTAtMTcyYThjZjcxOTI3OjhPSXI5dmp5UlhHbnRRRVhYaTR3Ync=", authorization) +09:00:48.164 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2799f1d8 +09:00:48.165 [XNIO-1 task-5] 7w4OdRTVQlifq5Po4cyIcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.172 [XNIO-1 task-5] XZx2ZhwSSM6D4gZ--wKJyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.173 [XNIO-1 task-5] XZx2ZhwSSM6D4gZ--wKJyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.173 [XNIO-1 task-5] XZx2ZhwSSM6D4gZ--wKJyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.173 [XNIO-1 task-5] XZx2ZhwSSM6D4gZ--wKJyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", "Basic Y2U3NDYxNjQtOTM1Mi00OGUzLWI4MDgtMTNmN2JlZWZjMzc3OnhscTJJOF9JU0ZPeHBFY2RyVDA0R1E=", authorization) +09:00:48.175 [XNIO-1 task-6] HyKwTiu8Qh-ngmJ58_KLxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.175 [XNIO-1 task-6] HyKwTiu8Qh-ngmJ58_KLxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.175 [XNIO-1 task-6] HyKwTiu8Qh-ngmJ58_KLxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.175 [XNIO-1 task-6] HyKwTiu8Qh-ngmJ58_KLxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGE4ZDJjOWEtODEwZC00MGUzLTkxYTItY2E3MDI2Y2U5YTRhOmM2b25vQjE3U3lPNklKS3NCOFppN1E=", "Basic ZGE4ZDJjOWEtODEwZC00MGUzLTkxYTItY2E3MDI2Y2U5YTRhOmM2b25vQjE3U3lPNklKS3NCOFppN1E=", authorization) +09:00:48.180 [XNIO-1 task-5] XZx2ZhwSSM6D4gZ--wKJyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.181 [XNIO-1 task-4] Y1GlE77hQdOVTu1PgbYPog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.181 [XNIO-1 task-4] Y1GlE77hQdOVTu1PgbYPog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.182 [XNIO-1 task-4] Y1GlE77hQdOVTu1PgbYPog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.182 [XNIO-1 task-4] Y1GlE77hQdOVTu1PgbYPog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:48.184 [XNIO-1 task-6] HyKwTiu8Qh-ngmJ58_KLxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:48.184 [XNIO-1 task-6] HyKwTiu8Qh-ngmJ58_KLxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.186 [XNIO-1 task-5] 0_jg2I8CQOywk9UHogbJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.186 [XNIO-1 task-5] 0_jg2I8CQOywk9UHogbJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.186 [XNIO-1 task-5] 0_jg2I8CQOywk9UHogbJoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.186 [XNIO-1 task-5] 0_jg2I8CQOywk9UHogbJoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.193 [XNIO-1 task-5] 0_jg2I8CQOywk9UHogbJoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.195 [XNIO-1 task-4] Y1GlE77hQdOVTu1PgbYPog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.197 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:20afd151-d775-43d2-8991-3a3716432e5b +09:00:48.202 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:20afd151-d775-43d2-8991-3a3716432e5b +09:00:48.202 [XNIO-1 task-5] 6cxNIPqHRoWw190DTfmp8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.202 [XNIO-1 task-5] 6cxNIPqHRoWw190DTfmp8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.203 [XNIO-1 task-5] 6cxNIPqHRoWw190DTfmp8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", authorization) +09:00:48.208 [XNIO-1 task-5] 6cxNIPqHRoWw190DTfmp8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.216 [XNIO-1 task-5] AyHM-uOETaeYvzYOwGf1wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.216 [XNIO-1 task-5] AyHM-uOETaeYvzYOwGf1wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.216 [XNIO-1 task-5] AyHM-uOETaeYvzYOwGf1wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.216 [XNIO-1 task-5] AyHM-uOETaeYvzYOwGf1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", "Basic Y2VhMTA3OGEtNWFiOC00YWI0LThhYTAtMDM4ZWQ1NjAyMDAyOmhiRjREcVZKU1dLR19hNjdQZWJRZHc=", authorization) +09:00:48.220 [XNIO-1 task-4] TxCP36CzQ1mFho_BfbyrAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.220 [XNIO-1 task-4] TxCP36CzQ1mFho_BfbyrAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.220 [XNIO-1 task-4] TxCP36CzQ1mFho_BfbyrAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.221 [XNIO-1 task-4] TxCP36CzQ1mFho_BfbyrAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:48.222 [XNIO-1 task-5] AyHM-uOETaeYvzYOwGf1wQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.225 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:20afd151-d775-43d2-8991-3a3716432e5b +09:00:48.226 [XNIO-1 task-5] YQzFZ6IsQXSizMRGYKEV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.226 [XNIO-1 task-5] YQzFZ6IsQXSizMRGYKEV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.226 [XNIO-1 task-5] YQzFZ6IsQXSizMRGYKEV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.226 [XNIO-1 task-5] YQzFZ6IsQXSizMRGYKEV9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.234 [XNIO-1 task-4] TxCP36CzQ1mFho_BfbyrAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.237 [XNIO-1 task-5] YQzFZ6IsQXSizMRGYKEV9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.241 [XNIO-1 task-5] SyUUDOZgTRKlAHPFm9nTIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.242 [XNIO-1 task-5] SyUUDOZgTRKlAHPFm9nTIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.242 [XNIO-1 task-5] SyUUDOZgTRKlAHPFm9nTIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.242 [XNIO-1 task-5] SyUUDOZgTRKlAHPFm9nTIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.244 [XNIO-1 task-6] SWM9OAmCQeSGzgqfvhmC-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.244 [XNIO-1 task-6] SWM9OAmCQeSGzgqfvhmC-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.246 [XNIO-1 task-6] SWM9OAmCQeSGzgqfvhmC-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.246 [XNIO-1 task-6] SWM9OAmCQeSGzgqfvhmC-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", "Basic ODMxNWNmMDEtZTkxYy00ZWM1LWJlYmQtNzlmYWVmOGI2MDM5OldSSWFNODFYUzgtS0FTXzdmeThaMlE=", authorization) +09:00:48.247 [XNIO-1 task-5] SyUUDOZgTRKlAHPFm9nTIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.248 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ae426538 +09:00:48.273 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ae426538 +09:00:48.273 [XNIO-1 task-4] zVitJ75HRZChk0sMPTBUxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.273 [XNIO-1 task-4] zVitJ75HRZChk0sMPTBUxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.273 [XNIO-1 task-4] zVitJ75HRZChk0sMPTBUxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:48.278 [XNIO-1 task-6] SWM9OAmCQeSGzgqfvhmC-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:48.278 [XNIO-1 task-6] SWM9OAmCQeSGzgqfvhmC-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.282 [XNIO-1 task-5] q565ENidQemf8SO8AvK7AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.282 [XNIO-1 task-5] q565ENidQemf8SO8AvK7AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.282 [XNIO-1 task-5] q565ENidQemf8SO8AvK7AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.282 [XNIO-1 task-5] q565ENidQemf8SO8AvK7AQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.290 [XNIO-1 task-5] q565ENidQemf8SO8AvK7AQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.318 [XNIO-1 task-4] zVitJ75HRZChk0sMPTBUxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.319 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2799f1d8 +09:00:48.356 [XNIO-1 task-6] q8_ncm4iS5WPmDS-TwOEyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.356 [XNIO-1 task-6] q8_ncm4iS5WPmDS-TwOEyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.356 [XNIO-1 task-6] q8_ncm4iS5WPmDS-TwOEyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.357 [XNIO-1 task-6] q8_ncm4iS5WPmDS-TwOEyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = kF-i98_1SCm9FGPwdTx71Q redirectUri = http://localhost:8080/authorization +09:00:48.362 [XNIO-1 task-5] 6lRve3ZuTVilVYktKK4oyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.362 [XNIO-1 task-5] 6lRve3ZuTVilVYktKK4oyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.363 [XNIO-1 task-5] 6lRve3ZuTVilVYktKK4oyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.363 [XNIO-1 task-5] 6lRve3ZuTVilVYktKK4oyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.365 [XNIO-1 task-6] q8_ncm4iS5WPmDS-TwOEyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.367 [XNIO-1 task-4] XrWYpMFcRZ2J6DAl7f2vUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.367 [XNIO-1 task-4] XrWYpMFcRZ2J6DAl7f2vUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.368 [XNIO-1 task-4] XrWYpMFcRZ2J6DAl7f2vUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.372 [XNIO-1 task-4] XrWYpMFcRZ2J6DAl7f2vUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:48.374 [XNIO-1 task-5] 6lRve3ZuTVilVYktKK4oyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.386 [XNIO-1 task-6] Th52qPEZQwS-ra-dilZgKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.387 [XNIO-1 task-6] Th52qPEZQwS-ra-dilZgKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.387 [XNIO-1 task-6] Th52qPEZQwS-ra-dilZgKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.387 [XNIO-1 task-6] Th52qPEZQwS-ra-dilZgKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", "Basic YzViNjQxYWUtMmU5NS00ZTg3LWI1YmItZmUwYjYwY2VmYTdmOmk2cnpYQkR2U282eFFaSjhidk9qMHc=", authorization) +09:00:48.395 [XNIO-1 task-6] Th52qPEZQwS-ra-dilZgKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.395 [XNIO-1 task-6] Th52qPEZQwS-ra-dilZgKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.397 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddaecb63-8172-4f9f-95fd-3289bb2b2b12 +09:00:48.398 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddaecb63-8172-4f9f-95fd-3289bb2b2b12 +09:00:48.402 [XNIO-1 task-6] H8RXwJ7MS-qkIL1X3Y8c9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.402 [XNIO-1 task-6] H8RXwJ7MS-qkIL1X3Y8c9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.403 [XNIO-1 task-6] H8RXwJ7MS-qkIL1X3Y8c9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.403 [XNIO-1 task-6] H8RXwJ7MS-qkIL1X3Y8c9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.411 [XNIO-1 task-6] H8RXwJ7MS-qkIL1X3Y8c9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.415 [XNIO-1 task-6] 5BooCSb4Qb-ESK9kOD4oVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.415 [XNIO-1 task-6] 5BooCSb4Qb-ESK9kOD4oVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.416 [XNIO-1 task-6] 5BooCSb4Qb-ESK9kOD4oVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.416 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cc67a4a9 +09:00:48.417 [XNIO-1 task-6] 5BooCSb4Qb-ESK9kOD4oVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGRhZGNjNDUtYTlhNS00OGI3LThmOTItZDNkMjY2NDAwZDRlOllfdHVWZzdkVDJteFdBNy1iMFhZRFE=", "Basic ZGRhZGNjNDUtYTlhNS00OGI3LThmOTItZDNkMjY2NDAwZDRlOllfdHVWZzdkVDJteFdBNy1iMFhZRFE=", authorization) +09:00:48.423 [XNIO-1 task-6] 5BooCSb4Qb-ESK9kOD4oVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.427 [XNIO-1 task-6] uJmU5jH-Tt-ZxLuTvH16GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.428 [XNIO-1 task-6] uJmU5jH-Tt-ZxLuTvH16GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.428 [XNIO-1 task-6] uJmU5jH-Tt-ZxLuTvH16GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.429 [XNIO-1 task-6] uJmU5jH-Tt-ZxLuTvH16GA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2FmNzVlNzctZDM0Mi00YzQ4LWFjMmMtOGMwMzRmZWRmMzMwOmg5eW9JS3V4UUhDTmdFS1BPQVFGT1E=", "Basic M2FmNzVlNzctZDM0Mi00YzQ4LWFjMmMtOGMwMzRmZWRmMzMwOmg5eW9JS3V4UUhDTmdFS1BPQVFGT1E=", authorization) +09:00:48.434 [XNIO-1 task-4] OA-SjDJBSEyeAABP5ZLCJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.434 [XNIO-1 task-4] OA-SjDJBSEyeAABP5ZLCJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.434 [XNIO-1 task-4] OA-SjDJBSEyeAABP5ZLCJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.435 [XNIO-1 task-4] OA-SjDJBSEyeAABP5ZLCJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:48.436 [XNIO-1 task-6] uJmU5jH-Tt-ZxLuTvH16GA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:48.436 [XNIO-1 task-6] uJmU5jH-Tt-ZxLuTvH16GA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.443 [XNIO-1 task-4] OA-SjDJBSEyeAABP5ZLCJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.451 [XNIO-1 task-6] nRiWXLEZTwmrLKTNDvwQ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.451 [XNIO-1 task-6] nRiWXLEZTwmrLKTNDvwQ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.451 [XNIO-1 task-6] nRiWXLEZTwmrLKTNDvwQ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.452 [XNIO-1 task-6] nRiWXLEZTwmrLKTNDvwQ2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -Opl8HxMT9-8xQMVn_KZ0A redirectUri = http://localhost:8080/authorization +09:00:48.455 [XNIO-1 task-4] GmTUQAoLRl6p-tvRDQHWXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.455 [XNIO-1 task-4] GmTUQAoLRl6p-tvRDQHWXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.455 [XNIO-1 task-4] GmTUQAoLRl6p-tvRDQHWXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.455 [XNIO-1 task-4] GmTUQAoLRl6p-tvRDQHWXA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.461 [XNIO-1 task-4] GmTUQAoLRl6p-tvRDQHWXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.461 [XNIO-1 task-6] nRiWXLEZTwmrLKTNDvwQ2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.469 [XNIO-1 task-4] 2ztVEivKRX2QxDSz61BiSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.469 [XNIO-1 task-4] 2ztVEivKRX2QxDSz61BiSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.470 [XNIO-1 task-4] 2ztVEivKRX2QxDSz61BiSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.470 [XNIO-1 task-4] 2ztVEivKRX2QxDSz61BiSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:48.475 [XNIO-1 task-4] 2ztVEivKRX2QxDSz61BiSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.477 [XNIO-1 task-6] 8Uc3P-X2TtKrlj9u12y5pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.477 [XNIO-1 task-6] 8Uc3P-X2TtKrlj9u12y5pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.477 [XNIO-1 task-6] 8Uc3P-X2TtKrlj9u12y5pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.479 [XNIO-1 task-6] 8Uc3P-X2TtKrlj9u12y5pA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjQwMGM5ZDAtMDAxMC00YzdlLWIzM2EtY2MyMDEwMDM3NDhlOjRVWXZvQ2lwUXVhdjNuS0wwV0x4c1E=", "Basic ZjQwMGM5ZDAtMDAxMC00YzdlLWIzM2EtY2MyMDEwMDM3NDhlOjRVWXZvQ2lwUXVhdjNuS0wwV0x4c1E=", authorization) +09:00:48.483 [XNIO-1 task-4] lcVl0GSOT_mhcUlhQTTCwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.484 [XNIO-1 task-4] lcVl0GSOT_mhcUlhQTTCwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.484 [XNIO-1 task-4] lcVl0GSOT_mhcUlhQTTCwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.484 [XNIO-1 task-4] lcVl0GSOT_mhcUlhQTTCwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:48.493 [XNIO-1 task-4] lcVl0GSOT_mhcUlhQTTCwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.494 [XNIO-1 task-6] 8Uc3P-X2TtKrlj9u12y5pA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.502 [XNIO-1 task-4] ubqE8-xtSW-VpuJP4U2ScA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.502 [XNIO-1 task-4] ubqE8-xtSW-VpuJP4U2ScA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.503 [XNIO-1 task-4] ubqE8-xtSW-VpuJP4U2ScA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.503 [XNIO-1 task-4] ubqE8-xtSW-VpuJP4U2ScA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:48.509 [XNIO-1 task-4] ubqE8-xtSW-VpuJP4U2ScA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.519 [XNIO-1 task-6] muZpoIKRShquq6cSy66r4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.519 [XNIO-1 task-6] muZpoIKRShquq6cSy66r4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.519 [XNIO-1 task-6] muZpoIKRShquq6cSy66r4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.519 [XNIO-1 task-6] muZpoIKRShquq6cSy66r4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", "Basic NDZjMTI3ZWEtNTYwOC00OGE5LThjN2QtYTE0YWI1OTU5NmQ5Oi02UVdGcHpYUjZpZTN2M1FUUHhBM1E=", authorization) +09:00:48.525 [XNIO-1 task-6] muZpoIKRShquq6cSy66r4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.531 [XNIO-1 task-6] P478tfXMQ7ihC8EfNfQaVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.531 [XNIO-1 task-6] P478tfXMQ7ihC8EfNfQaVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.531 [XNIO-1 task-6] P478tfXMQ7ihC8EfNfQaVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.531 [XNIO-1 task-6] P478tfXMQ7ihC8EfNfQaVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdmNTM4ODYtMDE5Ny00MGQ5LWEwY2QtNjFkYzczZDE0Y2Q0OlNrZEs3SXZQVDZpaUhJTkc1RWxRU0E=", "Basic ZTdmNTM4ODYtMDE5Ny00MGQ5LWEwY2QtNjFkYzczZDE0Y2Q0OlNrZEs3SXZQVDZpaUhJTkc1RWxRU0E=", authorization) +09:00:48.539 [XNIO-1 task-6] P478tfXMQ7ihC8EfNfQaVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.544 [XNIO-1 task-6] y-2_c9LjRgGePGzc39w3hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.544 [XNIO-1 task-6] y-2_c9LjRgGePGzc39w3hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.544 [XNIO-1 task-6] y-2_c9LjRgGePGzc39w3hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.545 [XNIO-1 task-6] y-2_c9LjRgGePGzc39w3hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RiZjIzOWUtYWViNy00MWMxLTkwZmYtM2ZmYmZmYjUxZGYwOkkyRmxtMzRrUVYtV2NzN1FaTm16ZWc=", "Basic Y2RiZjIzOWUtYWViNy00MWMxLTkwZmYtM2ZmYmZmYjUxZGYwOkkyRmxtMzRrUVYtV2NzN1FaTm16ZWc=", authorization) +09:00:48.552 [XNIO-1 task-6] y-2_c9LjRgGePGzc39w3hQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.556 [XNIO-1 task-6] q8HNyy41RbuBZkx1eYyZIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.557 [XNIO-1 task-6] q8HNyy41RbuBZkx1eYyZIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.557 [XNIO-1 task-6] q8HNyy41RbuBZkx1eYyZIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.557 [XNIO-1 task-6] q8HNyy41RbuBZkx1eYyZIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RiZjIzOWUtYWViNy00MWMxLTkwZmYtM2ZmYmZmYjUxZGYwOkkyRmxtMzRrUVYtV2NzN1FaTm16ZWc=", "Basic Y2RiZjIzOWUtYWViNy00MWMxLTkwZmYtM2ZmYmZmYjUxZGYwOkkyRmxtMzRrUVYtV2NzN1FaTm16ZWc=", authorization) +09:00:48.564 [XNIO-1 task-6] q8HNyy41RbuBZkx1eYyZIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.565 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cc67a4a9 +09:00:48.567 [XNIO-1 task-6] erNumncPTq2MYyJh-NSK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.568 [XNIO-1 task-6] erNumncPTq2MYyJh-NSK5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.568 [XNIO-1 task-6] erNumncPTq2MYyJh-NSK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.569 [XNIO-1 task-6] erNumncPTq2MYyJh-NSK5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RiZjIzOWUtYWViNy00MWMxLTkwZmYtM2ZmYmZmYjUxZGYwOkkyRmxtMzRrUVYtV2NzN1FaTm16ZWc=", "Basic Y2RiZjIzOWUtYWViNy00MWMxLTkwZmYtM2ZmYmZmYjUxZGYwOkkyRmxtMzRrUVYtV2NzN1FaTm16ZWc=", authorization) +09:00:48.577 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ae426538 +09:00:48.583 [XNIO-1 task-6] erNumncPTq2MYyJh-NSK5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.590 [XNIO-1 task-6] jlViJ-BYTVOlb4dCY1zxEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.590 [XNIO-1 task-6] jlViJ-BYTVOlb4dCY1zxEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.591 [XNIO-1 task-6] jlViJ-BYTVOlb4dCY1zxEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.591 [XNIO-1 task-6] jlViJ-BYTVOlb4dCY1zxEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.597 [XNIO-1 task-6] jlViJ-BYTVOlb4dCY1zxEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.605 [XNIO-1 task-6] THu-8s01S7ukMSM6q6gMqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.605 [XNIO-1 task-6] THu-8s01S7ukMSM6q6gMqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.605 [XNIO-1 task-6] THu-8s01S7ukMSM6q6gMqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.606 [XNIO-1 task-6] THu-8s01S7ukMSM6q6gMqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.611 [XNIO-1 task-6] THu-8s01S7ukMSM6q6gMqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.613 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cc67a4a9 +09:00:48.614 [XNIO-1 task-6] NT0WFnEhSCKJJ2a6cQLWtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.614 [XNIO-1 task-6] NT0WFnEhSCKJJ2a6cQLWtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.614 [XNIO-1 task-6] NT0WFnEhSCKJJ2a6cQLWtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.615 [XNIO-1 task-6] NT0WFnEhSCKJJ2a6cQLWtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d412f55c-19ec-493f-9674-e341dbae0439 scope = null +09:00:48.617 [XNIO-1 task-4] K6Rp5Bs_TJSxK-no2ZXQKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.617 [XNIO-1 task-4] K6Rp5Bs_TJSxK-no2ZXQKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.618 [XNIO-1 task-4] K6Rp5Bs_TJSxK-no2ZXQKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.618 [XNIO-1 task-4] K6Rp5Bs_TJSxK-no2ZXQKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d412f55c-19ec-493f-9674-e341dbae0439 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:48.623 [XNIO-1 task-4] K6Rp5Bs_TJSxK-no2ZXQKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.630 [XNIO-1 task-4] nKolR-rMQkOrZPcT_LBxAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.630 [XNIO-1 task-4] nKolR-rMQkOrZPcT_LBxAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.630 [XNIO-1 task-4] nKolR-rMQkOrZPcT_LBxAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.631 [XNIO-1 task-4] nKolR-rMQkOrZPcT_LBxAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:48.639 [XNIO-1 task-4] nKolR-rMQkOrZPcT_LBxAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.644 [XNIO-1 task-4] 03f0ZmqwT-6uxzq7849N_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.644 [XNIO-1 task-4] 03f0ZmqwT-6uxzq7849N_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.645 [XNIO-1 task-4] 03f0ZmqwT-6uxzq7849N_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.645 [XNIO-1 task-4] 03f0ZmqwT-6uxzq7849N_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", "Basic YmZjNjAxMzQtZmI1NS00OTQ1LTk3ODAtNWY2MDNhMjY2OGZiOndpUV9lSmVSUVNHelVORTh5c3oxdmc=", authorization) +09:00:48.650 [XNIO-1 task-4] 03f0ZmqwT-6uxzq7849N_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.659 [XNIO-1 task-4] zu90-kGyTGihkYTHmq2vPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.659 [XNIO-1 task-4] zu90-kGyTGihkYTHmq2vPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.659 [XNIO-1 task-4] zu90-kGyTGihkYTHmq2vPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.660 [XNIO-1 task-4] zu90-kGyTGihkYTHmq2vPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", "Basic YzE1NTZmZTQtMWQxNC00ZWJkLThmMWMtMmJmMjJhYmYxYjQ0Ok9RMm85Q2RyVGV1aFlwR0lTOTQ5UkE=", authorization) +09:00:48.665 [XNIO-1 task-4] zu90-kGyTGihkYTHmq2vPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.674 [XNIO-1 task-4] DrAUiXmJT1O_6eEz44RK7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.675 [XNIO-1 task-4] DrAUiXmJT1O_6eEz44RK7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.675 [XNIO-1 task-4] DrAUiXmJT1O_6eEz44RK7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.675 [XNIO-1 task-4] DrAUiXmJT1O_6eEz44RK7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", authorization) +09:00:48.685 [XNIO-1 task-4] DrAUiXmJT1O_6eEz44RK7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.690 [XNIO-1 task-4] nCC0CE1WSmKL53cY7n0WxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.691 [XNIO-1 task-4] nCC0CE1WSmKL53cY7n0WxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.691 [XNIO-1 task-4] nCC0CE1WSmKL53cY7n0WxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.691 [XNIO-1 task-4] nCC0CE1WSmKL53cY7n0WxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", "Basic ZDFjMzNmNTEtZjIzMy00NmEwLWE4ZjgtMjMxNDkyYmYwOGE3Om1IdUlDNUhKUXZPTldSZ1Q1eWdmaWc=", authorization) +09:00:48.700 [XNIO-1 task-4] nCC0CE1WSmKL53cY7n0WxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.713 [XNIO-1 task-4] HYZls7znSV-E9GGTJ7iVsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.713 [XNIO-1 task-6] c_CsWPwQShKF7X9jbHkfJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.713 [XNIO-1 task-4] HYZls7znSV-E9GGTJ7iVsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.714 [XNIO-1 task-6] c_CsWPwQShKF7X9jbHkfJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.714 [XNIO-1 task-6] c_CsWPwQShKF7X9jbHkfJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.714 [XNIO-1 task-6] c_CsWPwQShKF7X9jbHkfJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.714 [XNIO-1 task-4] HYZls7znSV-E9GGTJ7iVsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmNiNGZiODgtZmNlNi00YjI2LWExNjQtNmQzM2Q5N2QxMGE5OlAzNzlpLWp4U3FxdEp4dDhDeVZ2ZkE=", "Basic YmNiNGZiODgtZmNlNi00YjI2LWExNjQtNmQzM2Q5N2QxMGE5OlAzNzlpLWp4U3FxdEp4dDhDeVZ2ZkE=", authorization) +09:00:48.714 [XNIO-1 task-4] HYZls7znSV-E9GGTJ7iVsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.720 [XNIO-1 task-4] HYZls7znSV-E9GGTJ7iVsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.721 [XNIO-1 task-6] c_CsWPwQShKF7X9jbHkfJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:48.721 [XNIO-1 task-6] c_CsWPwQShKF7X9jbHkfJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.732 [XNIO-1 task-4] LXFooqJEQ_eu-qNGyoSVOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.732 [XNIO-1 task-4] LXFooqJEQ_eu-qNGyoSVOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.733 [XNIO-1 task-4] LXFooqJEQ_eu-qNGyoSVOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.733 [XNIO-1 task-4] LXFooqJEQ_eu-qNGyoSVOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.738 [XNIO-1 task-4] LXFooqJEQ_eu-qNGyoSVOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.744 [XNIO-1 task-4] DG_F7ig3SjqU703bdXGU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.744 [XNIO-1 task-4] DG_F7ig3SjqU703bdXGU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.744 [XNIO-1 task-4] DG_F7ig3SjqU703bdXGU2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.744 [XNIO-1 task-4] DG_F7ig3SjqU703bdXGU2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.750 [XNIO-1 task-4] DG_F7ig3SjqU703bdXGU2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.758 [XNIO-1 task-4] VIp6QrGMQG-sVRPw3UTEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.759 [XNIO-1 task-4] VIp6QrGMQG-sVRPw3UTEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.759 [XNIO-1 task-4] VIp6QrGMQG-sVRPw3UTEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.759 [XNIO-1 task-4] VIp6QrGMQG-sVRPw3UTEYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.767 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2799f1d8 +09:00:48.781 [XNIO-1 task-4] VIp6QrGMQG-sVRPw3UTEYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.786 [XNIO-1 task-4] D3KuEoiTRBuffqgX-2ggog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.786 [XNIO-1 task-4] D3KuEoiTRBuffqgX-2ggog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.787 [XNIO-1 task-4] D3KuEoiTRBuffqgX-2ggog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.787 [XNIO-1 task-4] D3KuEoiTRBuffqgX-2ggog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTg0M2FiZWItMTRiMi00ZjQwLWJjYmMtNzhhZDgwZjhmZDg3Olh6VDhGcjVUU3pla0ZER25nNFlzRlE=", "Basic NTg0M2FiZWItMTRiMi00ZjQwLWJjYmMtNzhhZDgwZjhmZDg3Olh6VDhGcjVUU3pla0ZER25nNFlzRlE=", authorization) +09:00:48.796 [XNIO-1 task-4] D3KuEoiTRBuffqgX-2ggog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.797 [XNIO-1 task-6] CtWlgfgpSHeuE3_hGnubPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.797 [XNIO-1 task-6] CtWlgfgpSHeuE3_hGnubPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.798 [XNIO-1 task-6] CtWlgfgpSHeuE3_hGnubPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.798 [XNIO-1 task-6] CtWlgfgpSHeuE3_hGnubPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmJkNTQwNmUtNmRkMC00YzRlLWI1MGYtMDRmZjM0ZDcwYzQ0Oms2MFJweF8wUlplQlc4YlRWM25Ra1E=", "Basic YmJkNTQwNmUtNmRkMC00YzRlLWI1MGYtMDRmZjM0ZDcwYzQ0Oms2MFJweF8wUlplQlc4YlRWM25Ra1E=", authorization) +09:00:48.804 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e4056195 +09:00:48.806 [XNIO-1 task-4] TSU2LTJURKK7Ndjbyg6T-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.806 [XNIO-1 task-4] TSU2LTJURKK7Ndjbyg6T-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.806 [XNIO-1 task-4] TSU2LTJURKK7Ndjbyg6T-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.806 [XNIO-1 task-4] TSU2LTJURKK7Ndjbyg6T-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.807 [XNIO-1 task-6] CtWlgfgpSHeuE3_hGnubPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.808 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e4056195 +09:00:48.811 [XNIO-1 task-4] TSU2LTJURKK7Ndjbyg6T-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.816 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2799f1d8 +09:00:48.823 [XNIO-1 task-6] PASfClK-TtqzVIc-5nHQvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.824 [XNIO-1 task-6] PASfClK-TtqzVIc-5nHQvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.824 [XNIO-1 task-6] PASfClK-TtqzVIc-5nHQvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.824 [XNIO-1 task-6] PASfClK-TtqzVIc-5nHQvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTY0MTk5NmItNDNiMy00YTE5LWIwMDItNzE2ZTYwMmRmYjhmOmwteGtSdEFlUU91NTJudjVYd3BWdGc=", "Basic MTY0MTk5NmItNDNiMy00YTE5LWIwMDItNzE2ZTYwMmRmYjhmOmwteGtSdEFlUU91NTJudjVYd3BWdGc=", authorization) +09:00:48.827 [XNIO-1 task-4] x0VqrQENQ1OGnZYlcEB0dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.827 [XNIO-1 task-4] x0VqrQENQ1OGnZYlcEB0dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.828 [XNIO-1 task-4] x0VqrQENQ1OGnZYlcEB0dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.828 [XNIO-1 task-4] x0VqrQENQ1OGnZYlcEB0dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFmYTYzOGMtOGVhYS00ZWVlLTg3ZGYtYjE4YzBmYTE0NDdkOnpWOXU2UmdlVDl1RWxkT01MbjhtZ0E=", "Basic YmFmYTYzOGMtOGVhYS00ZWVlLTg3ZGYtYjE4YzBmYTE0NDdkOnpWOXU2UmdlVDl1RWxkT01MbjhtZ0E=", authorization) +09:00:48.830 [XNIO-1 task-6] PASfClK-TtqzVIc-5nHQvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.834 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d58db4a4-d807-4fc2-9c8c-83e78b8d75da +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d58db4a4-d807-4fc2-9c8c-83e78b8d75da is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:00:48.835 [XNIO-1 task-6] Lc7ApdmISZOyigeux3yyxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.836 [XNIO-1 task-6] Lc7ApdmISZOyigeux3yyxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.836 [XNIO-1 task-6] Lc7ApdmISZOyigeux3yyxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.836 [XNIO-1 task-6] Lc7ApdmISZOyigeux3yyxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTc4OTliZjYtMDdmZC00OWQ1LWIzZDQtMDQxYmE3Y2U1MzFlOnJrMWhwVVVQUlhTdXB4aFF1X3d0bXc=", "Basic MTc4OTliZjYtMDdmZC00OWQ1LWIzZDQtMDQxYmE3Y2U1MzFlOnJrMWhwVVVQUlhTdXB4aFF1X3d0bXc=", authorization) +09:00:48.842 [XNIO-1 task-6] Lc7ApdmISZOyigeux3yyxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.842 [XNIO-1 task-6] Lc7ApdmISZOyigeux3yyxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.847 [XNIO-1 task-6] CNSUHKLwT72Ou4QstD_Bow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.847 [XNIO-1 task-6] CNSUHKLwT72Ou4QstD_Bow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.847 [XNIO-1 task-6] CNSUHKLwT72Ou4QstD_Bow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.847 [XNIO-1 task-6] CNSUHKLwT72Ou4QstD_Bow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGRhZGNjNDUtYTlhNS00OGI3LThmOTItZDNkMjY2NDAwZDRlOllfdHVWZzdkVDJteFdBNy1iMFhZRFE=", "Basic ZGRhZGNjNDUtYTlhNS00OGI3LThmOTItZDNkMjY2NDAwZDRlOllfdHVWZzdkVDJteFdBNy1iMFhZRFE=", authorization) +09:00:48.850 [XNIO-1 task-4] SpVziKJ0T1KJkjNVcSxiFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.850 [XNIO-1 task-4] SpVziKJ0T1KJkjNVcSxiFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.850 [XNIO-1 task-4] SpVziKJ0T1KJkjNVcSxiFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.850 [XNIO-1 task-4] SpVziKJ0T1KJkjNVcSxiFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTI1Y2Y1MTgtYTEyZi00ZmM5LTg1NjUtOTE2M2U5YTA5YzZlOjFFUlZKbk5mUVZDaG1zak1vcWE3Rmc=", "Basic MTI1Y2Y1MTgtYTEyZi00ZmM5LTg1NjUtOTE2M2U5YTA5YzZlOjFFUlZKbk5mUVZDaG1zak1vcWE3Rmc=", authorization) +09:00:48.852 [XNIO-1 task-6] CNSUHKLwT72Ou4QstD_Bow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.861 [XNIO-1 task-6] Jz94gIjHQtGbuTjjmNl2vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.861 [XNIO-1 task-6] Jz94gIjHQtGbuTjjmNl2vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.861 [XNIO-1 task-4] SpVziKJ0T1KJkjNVcSxiFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:48.861 [XNIO-1 task-4] SpVziKJ0T1KJkjNVcSxiFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.862 [XNIO-1 task-6] Jz94gIjHQtGbuTjjmNl2vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.862 [XNIO-1 task-6] Jz94gIjHQtGbuTjjmNl2vA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.868 [XNIO-1 task-6] Jz94gIjHQtGbuTjjmNl2vA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.873 [XNIO-1 task-4] P-R8BLtIQL6YTROcPpA3xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.874 [XNIO-1 task-4] P-R8BLtIQL6YTROcPpA3xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.874 [XNIO-1 task-4] P-R8BLtIQL6YTROcPpA3xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.874 [XNIO-1 task-4] P-R8BLtIQL6YTROcPpA3xw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.879 [XNIO-1 task-4] P-R8BLtIQL6YTROcPpA3xw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.888 [XNIO-1 task-4] mMLQh4PNSBGF3sID0HCpGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.888 [XNIO-1 task-4] mMLQh4PNSBGF3sID0HCpGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.889 [XNIO-1 task-4] mMLQh4PNSBGF3sID0HCpGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.889 [XNIO-1 task-4] mMLQh4PNSBGF3sID0HCpGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.895 [XNIO-1 task-4] mMLQh4PNSBGF3sID0HCpGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.896 [XNIO-1 task-6] z1vbmQAjTyGSs63Quvw9hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.896 [XNIO-1 task-6] z1vbmQAjTyGSs63Quvw9hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.898 [XNIO-1 task-6] z1vbmQAjTyGSs63Quvw9hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.898 [XNIO-1 task-6] z1vbmQAjTyGSs63Quvw9hw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9jUXYRylRticIhgBcCkdrQ redirectUri = http://localhost:8080/authorization +09:00:48.900 [XNIO-1 task-4] x2BdD_D9R3qqaMhmq7ff4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.900 [XNIO-1 task-4] x2BdD_D9R3qqaMhmq7ff4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.901 [XNIO-1 task-4] x2BdD_D9R3qqaMhmq7ff4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.901 [XNIO-1 task-4] x2BdD_D9R3qqaMhmq7ff4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.906 [XNIO-1 task-4] x2BdD_D9R3qqaMhmq7ff4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.911 [XNIO-1 task-4] pJdR8zsRS8eTsT9r6_iHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.911 [XNIO-1 task-4] pJdR8zsRS8eTsT9r6_iHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.912 [XNIO-1 task-4] pJdR8zsRS8eTsT9r6_iHJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.912 [XNIO-1 task-4] pJdR8zsRS8eTsT9r6_iHJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.914 [XNIO-1 task-6] z1vbmQAjTyGSs63Quvw9hw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.917 [XNIO-1 task-4] pJdR8zsRS8eTsT9r6_iHJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.923 [XNIO-1 task-4] 7-h-uL5SRpunJ971kI-45g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.923 [XNIO-1 task-4] 7-h-uL5SRpunJ971kI-45g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.923 [XNIO-1 task-4] 7-h-uL5SRpunJ971kI-45g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.924 [XNIO-1 task-4] 7-h-uL5SRpunJ971kI-45g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", "Basic ZmI3YWM3MGMtOGI3Yy00YzEwLTg0ZDMtMTUxZTNlNjZhODU0OncxUWJVeVdWUk9XMkpoaEM0SDRldHc=", authorization) +09:00:48.929 [XNIO-1 task-4] 7-h-uL5SRpunJ971kI-45g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.931 [XNIO-1 task-6] xL0RUdc9TFGCm5dTAYVPWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.931 [XNIO-1 task-6] xL0RUdc9TFGCm5dTAYVPWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.931 [XNIO-1 task-6] xL0RUdc9TFGCm5dTAYVPWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.931 [XNIO-1 task-6] xL0RUdc9TFGCm5dTAYVPWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjQwMGM5ZDAtMDAxMC00YzdlLWIzM2EtY2MyMDEwMDM3NDhlOjRVWXZvQ2lwUXVhdjNuS0wwV0x4c1E=", "Basic ZjQwMGM5ZDAtMDAxMC00YzdlLWIzM2EtY2MyMDEwMDM3NDhlOjRVWXZvQ2lwUXVhdjNuS0wwV0x4c1E=", authorization) +09:00:48.936 [XNIO-1 task-4] o8oMJgy3Ruig-8ashA6NCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.936 [XNIO-1 task-4] o8oMJgy3Ruig-8ashA6NCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.936 [XNIO-1 task-4] o8oMJgy3Ruig-8ashA6NCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.937 [XNIO-1 task-4] o8oMJgy3Ruig-8ashA6NCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY5Zjc3OWEtZGY0ZC00NWU2LTk1OTctNTE1YTVmNjYxMzM3OkdXU0JyLWJsVGMtZkRQcFd6Y1BMQmc=", "Basic ZjY5Zjc3OWEtZGY0ZC00NWU2LTk1OTctNTE1YTVmNjYxMzM3OkdXU0JyLWJsVGMtZkRQcFd6Y1BMQmc=", authorization) +09:00:48.943 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:98d368aa +09:00:48.944 [XNIO-1 task-4] o8oMJgy3Ruig-8ashA6NCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.948 [XNIO-1 task-6] xL0RUdc9TFGCm5dTAYVPWQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.948 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:98d368aa +09:00:48.949 [XNIO-1 task-4] wVRwzXcJSP-I6Q8IQdUfOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.949 [XNIO-1 task-4] wVRwzXcJSP-I6Q8IQdUfOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.949 [XNIO-1 task-4] wVRwzXcJSP-I6Q8IQdUfOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.950 [XNIO-1 task-4] wVRwzXcJSP-I6Q8IQdUfOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY5Zjc3OWEtZGY0ZC00NWU2LTk1OTctNTE1YTVmNjYxMzM3OkdXU0JyLWJsVGMtZkRQcFd6Y1BMQmc=", "Basic ZjY5Zjc3OWEtZGY0ZC00NWU2LTk1OTctNTE1YTVmNjYxMzM3OkdXU0JyLWJsVGMtZkRQcFd6Y1BMQmc=", authorization) +09:00:48.950 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:48.955 [XNIO-1 task-4] wVRwzXcJSP-I6Q8IQdUfOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:48.959 [XNIO-1 task-4] o87BJ27QQ0CMq-q4pHvEiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.959 [XNIO-1 task-4] o87BJ27QQ0CMq-q4pHvEiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.959 [XNIO-1 task-4] o87BJ27QQ0CMq-q4pHvEiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.960 [XNIO-1 task-4] o87BJ27QQ0CMq-q4pHvEiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTc4OTliZjYtMDdmZC00OWQ1LWIzZDQtMDQxYmE3Y2U1MzFlOnJrMWhwVVVQUlhTdXB4aFF1X3d0bXc=", "Basic MTc4OTliZjYtMDdmZC00OWQ1LWIzZDQtMDQxYmE3Y2U1MzFlOnJrMWhwVVVQUlhTdXB4aFF1X3d0bXc=", authorization) +09:00:48.966 [XNIO-1 task-6] Yy4lN-YqT7GineMXHdSgDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.967 [XNIO-1 task-6] Yy4lN-YqT7GineMXHdSgDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:48.967 [XNIO-1 task-6] Yy4lN-YqT7GineMXHdSgDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:48.967 [XNIO-1 task-6] Yy4lN-YqT7GineMXHdSgDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", "Basic YzIyNjZmNWYtODgwZS00ZDg2LWI0NTUtNzBlMmNlMjJiMmRkOm0wSzRvcktmUjdPRmZVN05SQ1lzTmc=", authorization) +09:00:48.970 [XNIO-1 task-4] o87BJ27QQ0CMq-q4pHvEiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:48.971 [XNIO-1 task-4] o87BJ27QQ0CMq-q4pHvEiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.974 [XNIO-1 task-6] Yy4lN-YqT7GineMXHdSgDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.981 [XNIO-1 task-6] gdoPNwl3TPyzGprySe1oqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.981 [XNIO-1 task-6] gdoPNwl3TPyzGprySe1oqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.981 [XNIO-1 task-6] gdoPNwl3TPyzGprySe1oqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.981 [XNIO-1 task-6] gdoPNwl3TPyzGprySe1oqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:48.987 [XNIO-1 task-6] gdoPNwl3TPyzGprySe1oqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:48.993 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2799f1d8 +09:00:48.993 [XNIO-1 task-6] C_AJ6fzWQl6REVoq-649Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.994 [XNIO-1 task-6] C_AJ6fzWQl6REVoq-649Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:48.994 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:197fb0ec +09:00:48.994 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:197fb0ec +09:00:48.994 [XNIO-1 task-6] C_AJ6fzWQl6REVoq-649Xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.000 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:98d368aa +09:00:49.001 [XNIO-1 task-6] C_AJ6fzWQl6REVoq-649Xg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.002 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fd7261a8-1611-4df7-b0f5-6a46c5749a65 +09:00:49.008 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:197fb0ec +09:00:49.009 [XNIO-1 task-6] lb4TPCAMThqng-0ArLHYJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.009 [XNIO-1 task-6] lb4TPCAMThqng-0ArLHYJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.009 [XNIO-1 task-6] lb4TPCAMThqng-0ArLHYJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.010 [XNIO-1 task-6] lb4TPCAMThqng-0ArLHYJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.016 [XNIO-1 task-6] lb4TPCAMThqng-0ArLHYJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.023 [XNIO-1 task-6] Uk5lA2QaQi-3TB_5FilHtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.023 [XNIO-1 task-6] Uk5lA2QaQi-3TB_5FilHtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.023 [XNIO-1 task-6] Uk5lA2QaQi-3TB_5FilHtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.024 [XNIO-1 task-6] Uk5lA2QaQi-3TB_5FilHtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.031 [XNIO-1 task-6] Uk5lA2QaQi-3TB_5FilHtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.036 [XNIO-1 task-6] U5k9x6soRRaISqTNiVQ4Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.036 [XNIO-1 task-6] U5k9x6soRRaISqTNiVQ4Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.037 [XNIO-1 task-6] U5k9x6soRRaISqTNiVQ4Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.037 [XNIO-1 task-6] U5k9x6soRRaISqTNiVQ4Yg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.042 [XNIO-1 task-6] U5k9x6soRRaISqTNiVQ4Yg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.050 [XNIO-1 task-6] -K9QdPRQRVCya39fsE9d9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.050 [XNIO-1 task-6] -K9QdPRQRVCya39fsE9d9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.050 [XNIO-1 task-6] -K9QdPRQRVCya39fsE9d9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.051 [XNIO-1 task-6] -K9QdPRQRVCya39fsE9d9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.056 [XNIO-1 task-6] -K9QdPRQRVCya39fsE9d9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.062 [XNIO-1 task-6] Hxhfxk14RCmESQJlCJfp5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.062 [XNIO-1 task-6] Hxhfxk14RCmESQJlCJfp5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.063 [XNIO-1 task-6] Hxhfxk14RCmESQJlCJfp5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.064 [XNIO-1 task-6] Hxhfxk14RCmESQJlCJfp5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.070 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e74763e3 +09:00:49.072 [XNIO-1 task-6] Hxhfxk14RCmESQJlCJfp5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:49.084 [XNIO-1 task-6] 06BdIGvFQEmBIdYbLRiiHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:49.084 [XNIO-1 task-6] 06BdIGvFQEmBIdYbLRiiHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:49.084 [XNIO-1 task-6] 06BdIGvFQEmBIdYbLRiiHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:49.085 [XNIO-1 task-6] 06BdIGvFQEmBIdYbLRiiHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI2YjdmMjktMWU2MS00NTFiLWFlMmEtOGIxZmJiYTVmZmY5OlZhV3NyY1ZnVGc2ZUpmS0VkVGxkNFE=", "Basic YmI2YjdmMjktMWU2MS00NTFiLWFlMmEtOGIxZmJiYTVmZmY5OlZhV3NyY1ZnVGc2ZUpmS0VkVGxkNFE=", authorization) +09:00:49.090 [XNIO-1 task-6] 06BdIGvFQEmBIdYbLRiiHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:49.094 [XNIO-1 task-6] 2tY5byEkRPq4h78GyOMRBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:49.094 [XNIO-1 task-6] 2tY5byEkRPq4h78GyOMRBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:49.095 [XNIO-1 task-6] 2tY5byEkRPq4h78GyOMRBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:49.095 [XNIO-1 task-6] 2tY5byEkRPq4h78GyOMRBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI2YjdmMjktMWU2MS00NTFiLWFlMmEtOGIxZmJiYTVmZmY5OlZhV3NyY1ZnVGc2ZUpmS0VkVGxkNFE=", "Basic YmI2YjdmMjktMWU2MS00NTFiLWFlMmEtOGIxZmJiYTVmZmY5OlZhV3NyY1ZnVGc2ZUpmS0VkVGxkNFE=", authorization) +09:00:49.100 [XNIO-1 task-6] 2tY5byEkRPq4h78GyOMRBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:49.102 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:197fb0ec +09:00:49.104 [XNIO-1 task-6] xyk8CP4TQxSD6lub0CDDkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:49.104 [XNIO-1 task-6] xyk8CP4TQxSD6lub0CDDkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:00:49.105 [XNIO-1 task-6] xyk8CP4TQxSD6lub0CDDkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:00:49.105 [XNIO-1 task-6] xyk8CP4TQxSD6lub0CDDkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", "Basic NjJlMDEwNzUtZmQ3Ny00M2EwLWE4OGEtZjQ2MWNlMTJhNGYwOkxhU0p6V2txU0Nxa1A3MVB4UXFVTmc=", authorization) +09:00:49.111 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.112 [XNIO-1 task-6] xyk8CP4TQxSD6lub0CDDkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.118 [XNIO-1 task-6] 8q81gAjWSi2AXyMBuMrY6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.118 [XNIO-1 task-6] 8q81gAjWSi2AXyMBuMrY6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.118 [XNIO-1 task-6] 8q81gAjWSi2AXyMBuMrY6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.118 [XNIO-1 task-6] 8q81gAjWSi2AXyMBuMrY6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.125 [XNIO-1 task-6] 8q81gAjWSi2AXyMBuMrY6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.130 [XNIO-1 task-6] pumb3LecTda_86GSqbyQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.131 [XNIO-1 task-6] pumb3LecTda_86GSqbyQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.131 [XNIO-1 task-6] pumb3LecTda_86GSqbyQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.131 [XNIO-1 task-6] pumb3LecTda_86GSqbyQ_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = TWpMLS1rRWiW1gTghO0KqA redirectUri = http://localhost:8080/authorization +09:00:49.133 [XNIO-1 task-4] askc2eE9SOCfpNJjv0xmCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.133 [XNIO-1 task-4] askc2eE9SOCfpNJjv0xmCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.133 [XNIO-1 task-4] askc2eE9SOCfpNJjv0xmCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.134 [XNIO-1 task-4] askc2eE9SOCfpNJjv0xmCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.139 [XNIO-1 task-4] askc2eE9SOCfpNJjv0xmCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:00:49.140 [XNIO-1 task-4] askc2eE9SOCfpNJjv0xmCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.141 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f5cd626-5fc7-433f-ba6b-13141750134a +09:00:49.148 [XNIO-1 task-4] p3S4xPyWS6yRvoMHMJnlCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.148 [XNIO-1 task-4] p3S4xPyWS6yRvoMHMJnlCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.148 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e74763e3 +09:00:49.148 [XNIO-1 task-4] p3S4xPyWS6yRvoMHMJnlCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.150 [XNIO-1 task-4] p3S4xPyWS6yRvoMHMJnlCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.155 [XNIO-1 task-4] p3S4xPyWS6yRvoMHMJnlCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.163 [XNIO-1 task-4] yTSEqLwOSHyEyzWcPNRagg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.164 [XNIO-1 task-4] yTSEqLwOSHyEyzWcPNRagg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.164 [XNIO-1 task-4] yTSEqLwOSHyEyzWcPNRagg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.164 [XNIO-1 task-4] yTSEqLwOSHyEyzWcPNRagg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.170 [XNIO-1 task-4] yTSEqLwOSHyEyzWcPNRagg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.177 [XNIO-1 task-4] Gc-LSKR0QZS6doRk5FWIgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.177 [XNIO-1 task-4] Gc-LSKR0QZS6doRk5FWIgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.177 [XNIO-1 task-4] Gc-LSKR0QZS6doRk5FWIgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.178 [XNIO-1 task-4] Gc-LSKR0QZS6doRk5FWIgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:00:49.186 [XNIO-1 task-4] Gc-LSKR0QZS6doRk5FWIgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.188 [XNIO-1 task-6] hX0KuprQQwqA2hfIwz-dLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.188 [XNIO-1 task-6] hX0KuprQQwqA2hfIwz-dLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.188 [XNIO-1 task-6] hX0KuprQQwqA2hfIwz-dLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.188 [XNIO-1 task-6] hX0KuprQQwqA2hfIwz-dLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = SY6y9f5tToCtW825WZ8M-g redirectUri = http://localhost:8080/authorization +09:00:49.193 [XNIO-1 task-4] pvXE9WvdT1ybdRceHA6xfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.193 [XNIO-1 task-4] pvXE9WvdT1ybdRceHA6xfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.193 [XNIO-1 task-4] pvXE9WvdT1ybdRceHA6xfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.193 [XNIO-1 task-4] pvXE9WvdT1ybdRceHA6xfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", "Basic MWRmZGM3YjMtZmQ3Yi00YWIwLTkzYmQtNzEyZDM0MTgxYWI5Om1CN0FJVlQ3UW8tRlhkNFBPRzd2WlE=", authorization) +09:00:49.195 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5bc0d2d2-b389-4fa8-a04e-871270d8078d +09:00:49.196 [XNIO-1 task-6] hX0KuprQQwqA2hfIwz-dLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:00:49.196 [XNIO-1 task-6] hX0KuprQQwqA2hfIwz-dLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.201 [XNIO-1 task-4] pvXE9WvdT1ybdRceHA6xfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:00:49.205 [XNIO-1 task-5] L_zTAFoWS9Ond8bfrqfB1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.206 [XNIO-1 task-5] L_zTAFoWS9Ond8bfrqfB1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.206 [XNIO-1 task-5] L_zTAFoWS9Ond8bfrqfB1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:00:49.206 [XNIO-1 task-5] L_zTAFoWS9Ond8bfrqfB1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Ob5B_IwGR9e5sH8Ho3KLpQ redirectUri = http://localhost:8080/authorization +09:00:49.209 [XNIO-1 task-4] OQkl0O1FS42_tu2Iycz0Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token diff --git a/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..20b58b8 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_6/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1670 @@ +09:00:39.492 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5f8046f5 +09:00:39.503 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5f8046f5 +09:00:39.533 [XNIO-1 task-1] tuJqEQr-SQu126fXBS8AGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f8046f5 +09:00:39.533 [XNIO-1 task-1] tuJqEQr-SQu126fXBS8AGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.533 [XNIO-1 task-1] tuJqEQr-SQu126fXBS8AGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:39.534 [XNIO-1 task-1] tuJqEQr-SQu126fXBS8AGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f8046f5 +09:00:39.535 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5f8046f5 +09:00:39.549 [XNIO-1 task-1] ygtTgyRzQP-jbENTdxmblg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.549 [XNIO-1 task-1] ygtTgyRzQP-jbENTdxmblg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.550 [XNIO-1 task-1] ygtTgyRzQP-jbENTdxmblg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.596 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:56593d6e +09:00:39.613 [XNIO-1 task-1] UunAQgLrQV6vYQpmiSLkug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:39.613 [XNIO-1 task-1] UunAQgLrQV6vYQpmiSLkug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:39.615 [XNIO-1 task-1] UunAQgLrQV6vYQpmiSLkug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:39.715 [XNIO-1 task-1] 8Im884tjQQamL9QDJhwq7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/babcc925, base path is set to: null +09:00:39.716 [XNIO-1 task-1] 8Im884tjQQamL9QDJhwq7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:39.716 [XNIO-1 task-1] 8Im884tjQQamL9QDJhwq7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:39.716 [XNIO-1 task-1] 8Im884tjQQamL9QDJhwq7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/babcc925, base path is set to: null +09:00:39.717 [XNIO-1 task-1] 8Im884tjQQamL9QDJhwq7g DEBUG com.networknt.schema.TypeValidator debug - validate( "babcc925", "babcc925", userId) +09:00:39.721 [XNIO-1 task-1] _WUTdxwXRA-suT4fEjVSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/babcc925 +09:00:39.722 [XNIO-1 task-1] _WUTdxwXRA-suT4fEjVSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.722 [XNIO-1 task-1] _WUTdxwXRA-suT4fEjVSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:39.722 [XNIO-1 task-1] _WUTdxwXRA-suT4fEjVSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/babcc925 +09:00:39.736 [XNIO-1 task-1] bm9LRTSWQZyNegN0ObXQ-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/56593d6e, base path is set to: null +09:00:39.736 [XNIO-1 task-1] bm9LRTSWQZyNegN0ObXQ-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:39.736 [XNIO-1 task-1] bm9LRTSWQZyNegN0ObXQ-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:39.736 [XNIO-1 task-1] bm9LRTSWQZyNegN0ObXQ-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/56593d6e, base path is set to: null +09:00:39.737 [XNIO-1 task-1] bm9LRTSWQZyNegN0ObXQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "56593d6e", "56593d6e", userId) +09:00:39.743 [XNIO-1 task-1] OrEfvpNOT3qH5DRuIspgUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/56593d6e +09:00:39.743 [XNIO-1 task-1] OrEfvpNOT3qH5DRuIspgUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.743 [XNIO-1 task-1] OrEfvpNOT3qH5DRuIspgUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:39.743 [XNIO-1 task-1] OrEfvpNOT3qH5DRuIspgUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/56593d6e +09:00:39.749 [XNIO-1 task-1] NScjtVF6TSmPuwdt8o-utQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/56593d6e, base path is set to: null +09:00:39.749 [XNIO-1 task-1] NScjtVF6TSmPuwdt8o-utQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:39.750 [XNIO-1 task-1] NScjtVF6TSmPuwdt8o-utQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:39.750 [XNIO-1 task-1] NScjtVF6TSmPuwdt8o-utQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/56593d6e, base path is set to: null +09:00:39.750 [XNIO-1 task-1] NScjtVF6TSmPuwdt8o-utQ DEBUG com.networknt.schema.TypeValidator debug - validate( "56593d6e", "56593d6e", userId) +09:00:39.756 [XNIO-1 task-1] D5s2_lJFQ4CeyxjQ6gGtKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.756 [XNIO-1 task-1] D5s2_lJFQ4CeyxjQ6gGtKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.756 [XNIO-1 task-1] D5s2_lJFQ4CeyxjQ6gGtKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.813 [XNIO-1 task-1] 4ffFQc2ZSOWFE7KjuqdVOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f73cff0f +09:00:39.813 [XNIO-1 task-1] 4ffFQc2ZSOWFE7KjuqdVOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.813 [XNIO-1 task-1] 4ffFQc2ZSOWFE7KjuqdVOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:39.814 [XNIO-1 task-1] 4ffFQc2ZSOWFE7KjuqdVOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f73cff0f +09:00:39.821 [XNIO-1 task-1] kGxk1-6hSGyQDn8QfliMIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:39.821 [XNIO-1 task-1] kGxk1-6hSGyQDn8QfliMIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:39.821 [XNIO-1 task-1] kGxk1-6hSGyQDn8QfliMIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:39.822 [XNIO-1 task-1] kGxk1-6hSGyQDn8QfliMIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:39.834 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4fe10070 +09:00:39.836 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4fe10070 +09:00:39.856 [XNIO-1 task-1] q7kjzSFiQMuyyT1m7twO1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.856 [XNIO-1 task-1] q7kjzSFiQMuyyT1m7twO1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.857 [XNIO-1 task-1] q7kjzSFiQMuyyT1m7twO1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.858 [XNIO-1 task-1] q7kjzSFiQMuyyT1m7twO1w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:39.903 [XNIO-1 task-1] X8GEiCv9SISj_IKgJjVvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/56593d6e +09:00:39.903 [XNIO-1 task-1] X8GEiCv9SISj_IKgJjVvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.903 [XNIO-1 task-1] X8GEiCv9SISj_IKgJjVvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:39.903 [XNIO-1 task-1] X8GEiCv9SISj_IKgJjVvlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/56593d6e +09:00:39.905 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:56593d6e +09:00:39.917 [XNIO-1 task-1] vOXL8gL1S8Kfym93fLhgng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f73cff0f +09:00:39.917 [XNIO-1 task-1] vOXL8gL1S8Kfym93fLhgng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:39.917 [XNIO-1 task-1] vOXL8gL1S8Kfym93fLhgng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:39.917 [XNIO-1 task-1] vOXL8gL1S8Kfym93fLhgng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f73cff0f +09:00:39.924 [XNIO-1 task-1] 1UQGlTXdRzG9AOreQSxqkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:39.925 [XNIO-1 task-1] 1UQGlTXdRzG9AOreQSxqkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:39.928 [XNIO-1 task-1] 1UQGlTXdRzG9AOreQSxqkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.099 [XNIO-1 task-1] xUUE0caMSWeM7zmMwOlixw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.099 [XNIO-1 task-1] xUUE0caMSWeM7zmMwOlixw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.100 [XNIO-1 task-1] xUUE0caMSWeM7zmMwOlixw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.100 [XNIO-1 task-1] xUUE0caMSWeM7zmMwOlixw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.147 [XNIO-1 task-1] 6lri6m9uRmmCZSkLAmJEvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f73cff0f, base path is set to: null +09:00:40.148 [XNIO-1 task-1] 6lri6m9uRmmCZSkLAmJEvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.148 [XNIO-1 task-1] 6lri6m9uRmmCZSkLAmJEvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:40.148 [XNIO-1 task-1] 6lri6m9uRmmCZSkLAmJEvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f73cff0f, base path is set to: null +09:00:40.149 [XNIO-1 task-1] 6lri6m9uRmmCZSkLAmJEvA DEBUG com.networknt.schema.TypeValidator debug - validate( "f73cff0f", "f73cff0f", userId) +09:00:40.173 [XNIO-1 task-1] kBQ7Htd6RuSNVWxGwXNo9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.173 [XNIO-1 task-1] kBQ7Htd6RuSNVWxGwXNo9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.173 [XNIO-1 task-1] kBQ7Htd6RuSNVWxGwXNo9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.174 [XNIO-1 task-1] kBQ7Htd6RuSNVWxGwXNo9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.182 [XNIO-1 task-1] nobcGUwoQwOQoWwYsT2oYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.182 [XNIO-1 task-1] nobcGUwoQwOQoWwYsT2oYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.183 [XNIO-1 task-1] nobcGUwoQwOQoWwYsT2oYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.190 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4fe10070 +09:00:40.303 [XNIO-1 task-1] tnmwVbuSQTuJ0M-dsfe4HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eae7c3c4 +09:00:40.303 [XNIO-1 task-1] tnmwVbuSQTuJ0M-dsfe4HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.303 [XNIO-1 task-1] tnmwVbuSQTuJ0M-dsfe4HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:40.303 [XNIO-1 task-1] tnmwVbuSQTuJ0M-dsfe4HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eae7c3c4 +09:00:40.307 [XNIO-1 task-1] huUAhPutTICBoXGeQOU2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.308 [XNIO-1 task-1] huUAhPutTICBoXGeQOU2OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.308 [XNIO-1 task-1] huUAhPutTICBoXGeQOU2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.358 [XNIO-1 task-1] LTMw1Ng0QJqY_NfgMSTpFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eae7c3c4, base path is set to: null +09:00:40.358 [XNIO-1 task-1] LTMw1Ng0QJqY_NfgMSTpFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.358 [XNIO-1 task-1] LTMw1Ng0QJqY_NfgMSTpFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:40.358 [XNIO-1 task-1] LTMw1Ng0QJqY_NfgMSTpFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eae7c3c4, base path is set to: null +09:00:40.359 [XNIO-1 task-1] LTMw1Ng0QJqY_NfgMSTpFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eae7c3c4", "eae7c3c4", userId) +09:00:40.360 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4fe10070 +09:00:40.372 [XNIO-1 task-1] Rmmd9ZvkQGWNKzrTRoNdkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.372 [XNIO-1 task-1] Rmmd9ZvkQGWNKzrTRoNdkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.373 [XNIO-1 task-1] Rmmd9ZvkQGWNKzrTRoNdkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.457 [XNIO-1 task-1] N01LFHcYR4C2qj82Qoz9Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07240d86 +09:00:40.457 [XNIO-1 task-1] N01LFHcYR4C2qj82Qoz9Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.457 [XNIO-1 task-1] N01LFHcYR4C2qj82Qoz9Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:40.458 [XNIO-1 task-1] N01LFHcYR4C2qj82Qoz9Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07240d86 +09:00:40.477 [XNIO-1 task-1] qFWHbMVYSnSIAZUUrWlhcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.478 [XNIO-1 task-1] qFWHbMVYSnSIAZUUrWlhcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.478 [XNIO-1 task-1] qFWHbMVYSnSIAZUUrWlhcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.479 [XNIO-1 task-1] qFWHbMVYSnSIAZUUrWlhcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.508 [XNIO-1 task-1] wE0TGiYPQYCZ9jW9QAq84A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.508 [XNIO-1 task-1] wE0TGiYPQYCZ9jW9QAq84A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.508 [XNIO-1 task-1] wE0TGiYPQYCZ9jW9QAq84A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.509 [XNIO-1 task-1] wE0TGiYPQYCZ9jW9QAq84A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:40.521 [XNIO-1 task-1] yyNxsWsZSyak-Zpid-SAxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.522 [XNIO-1 task-1] yyNxsWsZSyak-Zpid-SAxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.522 [XNIO-1 task-1] yyNxsWsZSyak-Zpid-SAxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:40.594 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4fe10070 +09:00:40.600 [XNIO-1 task-1] JcT3XKfnQcWX5SHeBJwA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/68439059, base path is set to: null +09:00:40.601 [XNIO-1 task-1] JcT3XKfnQcWX5SHeBJwA4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.601 [XNIO-1 task-1] JcT3XKfnQcWX5SHeBJwA4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:40.602 [XNIO-1 task-1] JcT3XKfnQcWX5SHeBJwA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/68439059, base path is set to: null +09:00:40.602 [XNIO-1 task-1] JcT3XKfnQcWX5SHeBJwA4A DEBUG com.networknt.schema.TypeValidator debug - validate( "68439059", "68439059", userId) +09:00:40.678 [XNIO-1 task-1] Av4BKfuGRVeQnopo_YmI6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.678 [XNIO-1 task-1] Av4BKfuGRVeQnopo_YmI6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.678 [XNIO-1 task-1] Av4BKfuGRVeQnopo_YmI6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.681 [XNIO-1 task-1] Av4BKfuGRVeQnopo_YmI6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.693 [XNIO-1 task-1] qfcOFsuZSS6PkpX4_iSFAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.693 [XNIO-1 task-1] qfcOFsuZSS6PkpX4_iSFAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.693 [XNIO-1 task-1] qfcOFsuZSS6PkpX4_iSFAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.821 [XNIO-1 task-1] qQl85EI7T56SYJW_BPjn6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.821 [XNIO-1 task-1] qQl85EI7T56SYJW_BPjn6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.822 [XNIO-1 task-1] qQl85EI7T56SYJW_BPjn6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.865 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7e502078-bc4c-4493-af14-ccfb1751483f +09:00:40.871 [XNIO-1 task-1] kFcOeZRwTau26vHPrFfgLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c80998f4, base path is set to: null +09:00:40.871 [XNIO-1 task-1] kFcOeZRwTau26vHPrFfgLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.871 [XNIO-1 task-1] kFcOeZRwTau26vHPrFfgLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:40.871 [XNIO-1 task-1] kFcOeZRwTau26vHPrFfgLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c80998f4, base path is set to: null +09:00:40.872 [XNIO-1 task-1] kFcOeZRwTau26vHPrFfgLg DEBUG com.networknt.schema.TypeValidator debug - validate( "c80998f4", "c80998f4", userId) +09:00:40.878 [XNIO-1 task-1] NaCSi57WR5O_eA5WoM5M3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.878 [XNIO-1 task-1] NaCSi57WR5O_eA5WoM5M3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.878 [XNIO-1 task-1] NaCSi57WR5O_eA5WoM5M3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.879 [XNIO-1 task-1] NaCSi57WR5O_eA5WoM5M3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:40.914 [XNIO-1 task-1] 4738H9nNSoWfx0Fr3_GHQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/11a142ce +09:00:40.914 [XNIO-1 task-1] 4738H9nNSoWfx0Fr3_GHQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.914 [XNIO-1 task-1] 4738H9nNSoWfx0Fr3_GHQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:40.914 [XNIO-1 task-1] 4738H9nNSoWfx0Fr3_GHQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/11a142ce +09:00:40.924 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c80998f4, base path is set to: null +09:00:40.924 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.925 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:40.925 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:40.926 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c80998f4, base path is set to: null +09:00:40.926 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c80998f4", "c80998f4", userId) +09:00:40.927 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5dd35fc9-5ff9-4e4a-912a-a12634ee9b45","newPassword":"f1d17ffb-1f72-4570-a967-ba81285398cb","newPasswordConfirm":"f1d17ffb-1f72-4570-a967-ba81285398cb"}, {"password":"5dd35fc9-5ff9-4e4a-912a-a12634ee9b45","newPassword":"f1d17ffb-1f72-4570-a967-ba81285398cb","newPasswordConfirm":"f1d17ffb-1f72-4570-a967-ba81285398cb"}, requestBody) +09:00:40.927 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f1d17ffb-1f72-4570-a967-ba81285398cb", {"password":"5dd35fc9-5ff9-4e4a-912a-a12634ee9b45","newPassword":"f1d17ffb-1f72-4570-a967-ba81285398cb","newPasswordConfirm":"f1d17ffb-1f72-4570-a967-ba81285398cb"}, requestBody.newPasswordConfirm) +09:00:40.927 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5dd35fc9-5ff9-4e4a-912a-a12634ee9b45", {"password":"5dd35fc9-5ff9-4e4a-912a-a12634ee9b45","newPassword":"f1d17ffb-1f72-4570-a967-ba81285398cb","newPasswordConfirm":"f1d17ffb-1f72-4570-a967-ba81285398cb"}, requestBody.password) +09:00:40.928 [XNIO-1 task-1] UIhLbbXQTfm1YZN8wRzRGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f1d17ffb-1f72-4570-a967-ba81285398cb", {"password":"5dd35fc9-5ff9-4e4a-912a-a12634ee9b45","newPassword":"f1d17ffb-1f72-4570-a967-ba81285398cb","newPasswordConfirm":"f1d17ffb-1f72-4570-a967-ba81285398cb"}, requestBody.newPassword) +09:00:40.951 [XNIO-1 task-1] nzm_nJpjTmiCAKDu_nMNvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c80998f4, base path is set to: null +09:00:40.952 [XNIO-1 task-1] nzm_nJpjTmiCAKDu_nMNvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:40.952 [XNIO-1 task-1] nzm_nJpjTmiCAKDu_nMNvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:40.952 [XNIO-1 task-1] nzm_nJpjTmiCAKDu_nMNvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c80998f4, base path is set to: null +09:00:40.953 [XNIO-1 task-1] nzm_nJpjTmiCAKDu_nMNvA DEBUG com.networknt.schema.TypeValidator debug - validate( "c80998f4", "c80998f4", userId) +09:00:40.969 [XNIO-1 task-1] a9D5l95VQ1Ksn_MAT-Jkew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.969 [XNIO-1 task-1] a9D5l95VQ1Ksn_MAT-Jkew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:40.970 [XNIO-1 task-1] a9D5l95VQ1Ksn_MAT-Jkew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.011 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b6724538 +09:00:41.014 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b6724538 +09:00:41.035 [XNIO-1 task-1] LmjU2xytSn2I0CO3Vnentw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/815aa1f2 +09:00:41.036 [XNIO-1 task-1] LmjU2xytSn2I0CO3Vnentw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.036 [XNIO-1 task-1] LmjU2xytSn2I0CO3Vnentw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:41.036 [XNIO-1 task-1] LmjU2xytSn2I0CO3Vnentw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/815aa1f2 +09:00:41.049 [XNIO-1 task-1] Te6Ka5oQSPCBNbuK3j4yaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.049 [XNIO-1 task-1] Te6Ka5oQSPCBNbuK3j4yaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.049 [XNIO-1 task-1] Te6Ka5oQSPCBNbuK3j4yaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.050 [XNIO-1 task-1] Te6Ka5oQSPCBNbuK3j4yaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.090 [XNIO-1 task-1] Dol3DgSfS72mJZmLyaxdZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.091 [XNIO-1 task-1] Dol3DgSfS72mJZmLyaxdZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.091 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b6724538 +09:00:41.092 [XNIO-1 task-1] Dol3DgSfS72mJZmLyaxdZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.128 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b6724538 +09:00:41.146 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b6724538 +09:00:41.150 [XNIO-1 task-1] S0i45x6CQY2yaVWUdHfe5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.150 [XNIO-1 task-1] S0i45x6CQY2yaVWUdHfe5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.152 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b6724538 +09:00:41.153 [XNIO-1 task-1] S0i45x6CQY2yaVWUdHfe5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.156 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b96c44fb-b778-45e2-8408-6996ea8187be +09:00:41.165 [XNIO-1 task-1] 9MD0BhCkRYmAdnBRU4bjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d12a1961 +09:00:41.165 [XNIO-1 task-1] 9MD0BhCkRYmAdnBRU4bjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.165 [XNIO-1 task-1] 9MD0BhCkRYmAdnBRU4bjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:41.166 [XNIO-1 task-1] 9MD0BhCkRYmAdnBRU4bjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d12a1961 +09:00:41.180 [XNIO-1 task-1] qBOQaB1VTQ2coKIW_Mgk6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.180 [XNIO-1 task-1] qBOQaB1VTQ2coKIW_Mgk6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.181 [XNIO-1 task-1] qBOQaB1VTQ2coKIW_Mgk6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.206 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fb7ac70c-8b7c-4c10-84d3-151e3e66a854 +09:00:41.212 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9a73dba5-7a21-4f48-a8fb-53f16eb4cb3f +09:00:41.217 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:fb7ac70c-8b7c-4c10-84d3-151e3e66a854 +09:00:41.234 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8f7dbf5e, base path is set to: null +09:00:41.234 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.234 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.234 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:41.235 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8f7dbf5e, base path is set to: null +09:00:41.236 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8f7dbf5e", "8f7dbf5e", userId) +09:00:41.238 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ad8f302d-7bf4-4af3-a2d1-9d4429fea37f","newPassword":"4077887e-2e79-4b4d-b9aa-d337832caa55","newPasswordConfirm":"4077887e-2e79-4b4d-b9aa-d337832caa55"}, {"password":"ad8f302d-7bf4-4af3-a2d1-9d4429fea37f","newPassword":"4077887e-2e79-4b4d-b9aa-d337832caa55","newPasswordConfirm":"4077887e-2e79-4b4d-b9aa-d337832caa55"}, requestBody) +09:00:41.238 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4077887e-2e79-4b4d-b9aa-d337832caa55", {"password":"ad8f302d-7bf4-4af3-a2d1-9d4429fea37f","newPassword":"4077887e-2e79-4b4d-b9aa-d337832caa55","newPasswordConfirm":"4077887e-2e79-4b4d-b9aa-d337832caa55"}, requestBody.newPasswordConfirm) +09:00:41.238 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ad8f302d-7bf4-4af3-a2d1-9d4429fea37f", {"password":"ad8f302d-7bf4-4af3-a2d1-9d4429fea37f","newPassword":"4077887e-2e79-4b4d-b9aa-d337832caa55","newPasswordConfirm":"4077887e-2e79-4b4d-b9aa-d337832caa55"}, requestBody.password) +09:00:41.238 [XNIO-1 task-1] 7vUxl8BcRqKoykAGKb-CyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4077887e-2e79-4b4d-b9aa-d337832caa55", {"password":"ad8f302d-7bf4-4af3-a2d1-9d4429fea37f","newPassword":"4077887e-2e79-4b4d-b9aa-d337832caa55","newPasswordConfirm":"4077887e-2e79-4b4d-b9aa-d337832caa55"}, requestBody.newPassword) +09:00:41.281 [XNIO-1 task-1] _FHP8dPtRxmLyu5uE_M24A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8f7dbf5e, base path is set to: null +09:00:41.281 [XNIO-1 task-1] _FHP8dPtRxmLyu5uE_M24A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.281 [XNIO-1 task-1] _FHP8dPtRxmLyu5uE_M24A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.282 [XNIO-1 task-1] _FHP8dPtRxmLyu5uE_M24A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8f7dbf5e, base path is set to: null +09:00:41.282 [XNIO-1 task-1] _FHP8dPtRxmLyu5uE_M24A DEBUG com.networknt.schema.TypeValidator debug - validate( "8f7dbf5e", "8f7dbf5e", userId) +09:00:41.287 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:74ca196b +09:00:41.293 [XNIO-1 task-1] DbRCEUGDQAqD2vIJK4xE1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8f7dbf5e, base path is set to: null +09:00:41.293 [XNIO-1 task-1] DbRCEUGDQAqD2vIJK4xE1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.293 [XNIO-1 task-1] DbRCEUGDQAqD2vIJK4xE1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.294 [XNIO-1 task-1] DbRCEUGDQAqD2vIJK4xE1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8f7dbf5e, base path is set to: null +09:00:41.327 [XNIO-1 task-1] DbRCEUGDQAqD2vIJK4xE1g DEBUG com.networknt.schema.TypeValidator debug - validate( "8f7dbf5e", "8f7dbf5e", userId) +09:00:41.327 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b96c44fb-b778-45e2-8408-6996ea8187be +09:00:41.411 [XNIO-1 task-1] KUPzVGCuQJyqSvxcihbW8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.412 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:74ca196b +09:00:41.412 [XNIO-1 task-1] KUPzVGCuQJyqSvxcihbW8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.413 [XNIO-1 task-1] KUPzVGCuQJyqSvxcihbW8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.456 [XNIO-1 task-1] gXLue4iKT4WYd3fay-Hzgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/09fd6035, base path is set to: null +09:00:41.457 [XNIO-1 task-1] gXLue4iKT4WYd3fay-Hzgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.457 [XNIO-1 task-1] gXLue4iKT4WYd3fay-Hzgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.457 [XNIO-1 task-1] gXLue4iKT4WYd3fay-Hzgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/09fd6035, base path is set to: null +09:00:41.457 [XNIO-1 task-1] gXLue4iKT4WYd3fay-Hzgw DEBUG com.networknt.schema.TypeValidator debug - validate( "09fd6035", "09fd6035", userId) +09:00:41.460 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:74ca196b +09:00:41.463 [XNIO-1 task-1] uKrw5N66SUS7OVq8tcgdsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.463 [XNIO-1 task-1] uKrw5N66SUS7OVq8tcgdsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.463 [XNIO-1 task-1] uKrw5N66SUS7OVq8tcgdsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.464 [XNIO-1 task-1] uKrw5N66SUS7OVq8tcgdsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:41.474 [XNIO-1 task-1] X74Guq_ER8eNJncYOUIkZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/09fd6035 +09:00:41.474 [XNIO-1 task-1] X74Guq_ER8eNJncYOUIkZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.474 [XNIO-1 task-1] X74Guq_ER8eNJncYOUIkZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:41.474 [XNIO-1 task-1] X74Guq_ER8eNJncYOUIkZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/09fd6035 +09:00:41.485 [XNIO-1 task-1] m30lF1xOTf6J-R6zNfgUrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.486 [XNIO-1 task-1] m30lF1xOTf6J-R6zNfgUrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.486 [XNIO-1 task-1] m30lF1xOTf6J-R6zNfgUrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.553 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:74ca196b +09:00:41.555 [XNIO-1 task-1] YNZoha2YTDWGFSMsT9zCYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.555 [XNIO-1 task-1] YNZoha2YTDWGFSMsT9zCYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.555 [XNIO-1 task-1] YNZoha2YTDWGFSMsT9zCYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.556 [XNIO-1 task-1] YNZoha2YTDWGFSMsT9zCYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.583 [XNIO-1 task-1] FrkkijpPT_aJGcg38fPDKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.584 [XNIO-1 task-1] FrkkijpPT_aJGcg38fPDKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.584 [XNIO-1 task-1] FrkkijpPT_aJGcg38fPDKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.641 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0e537a3d-62ec-4b04-8304-303dc91412d2 +09:00:41.646 [XNIO-1 task-1] w_0p5M4SRZOra_0U_k8T3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.646 [XNIO-1 task-1] w_0p5M4SRZOra_0U_k8T3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.646 [XNIO-1 task-1] w_0p5M4SRZOra_0U_k8T3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.647 [XNIO-1 task-1] w_0p5M4SRZOra_0U_k8T3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:41.654 [XNIO-1 task-1] q_va0oMSQze2n-s60_NcuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.655 [XNIO-1 task-1] q_va0oMSQze2n-s60_NcuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.655 [XNIO-1 task-1] q_va0oMSQze2n-s60_NcuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.747 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/30be21f1, base path is set to: null +09:00:41.747 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.748 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.748 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:41.748 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/30be21f1, base path is set to: null +09:00:41.749 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG com.networknt.schema.TypeValidator debug - validate( "30be21f1", "30be21f1", userId) +09:00:41.749 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e34aab17-5f97-41e3-bb05-2837378401ff","newPassword":"5d1695f5-127d-4293-9670-461b5d114578","newPasswordConfirm":"5d1695f5-127d-4293-9670-461b5d114578"}, {"password":"e34aab17-5f97-41e3-bb05-2837378401ff","newPassword":"5d1695f5-127d-4293-9670-461b5d114578","newPasswordConfirm":"5d1695f5-127d-4293-9670-461b5d114578"}, requestBody) +09:00:41.749 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d1695f5-127d-4293-9670-461b5d114578", {"password":"e34aab17-5f97-41e3-bb05-2837378401ff","newPassword":"5d1695f5-127d-4293-9670-461b5d114578","newPasswordConfirm":"5d1695f5-127d-4293-9670-461b5d114578"}, requestBody.newPasswordConfirm) +09:00:41.749 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG com.networknt.schema.TypeValidator debug - validate( "e34aab17-5f97-41e3-bb05-2837378401ff", {"password":"e34aab17-5f97-41e3-bb05-2837378401ff","newPassword":"5d1695f5-127d-4293-9670-461b5d114578","newPasswordConfirm":"5d1695f5-127d-4293-9670-461b5d114578"}, requestBody.password) +09:00:41.749 [XNIO-1 task-1] 25cVboIxSj6Nqv5LlDtdiw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d1695f5-127d-4293-9670-461b5d114578", {"password":"e34aab17-5f97-41e3-bb05-2837378401ff","newPassword":"5d1695f5-127d-4293-9670-461b5d114578","newPasswordConfirm":"5d1695f5-127d-4293-9670-461b5d114578"}, requestBody.newPassword) +09:00:41.770 [XNIO-1 task-1] XM3TEAxhQWaHGco5m6O43w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.771 [XNIO-1 task-1] XM3TEAxhQWaHGco5m6O43w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.771 [XNIO-1 task-1] XM3TEAxhQWaHGco5m6O43w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:41.798 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/52e4c4e5, base path is set to: null +09:00:41.798 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.798 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.798 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:41.799 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/52e4c4e5, base path is set to: null +09:00:41.799 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "52e4c4e5", "52e4c4e5", userId) +09:00:41.800 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"27b61374-645d-4b21-a1be-aae23d4b18fa","newPassword":"bbb02be2-f312-44e3-9491-9c9262f273b8","newPasswordConfirm":"bbb02be2-f312-44e3-9491-9c9262f273b8"}, {"password":"27b61374-645d-4b21-a1be-aae23d4b18fa","newPassword":"bbb02be2-f312-44e3-9491-9c9262f273b8","newPasswordConfirm":"bbb02be2-f312-44e3-9491-9c9262f273b8"}, requestBody) +09:00:41.800 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bbb02be2-f312-44e3-9491-9c9262f273b8", {"password":"27b61374-645d-4b21-a1be-aae23d4b18fa","newPassword":"bbb02be2-f312-44e3-9491-9c9262f273b8","newPasswordConfirm":"bbb02be2-f312-44e3-9491-9c9262f273b8"}, requestBody.newPasswordConfirm) +09:00:41.801 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "27b61374-645d-4b21-a1be-aae23d4b18fa", {"password":"27b61374-645d-4b21-a1be-aae23d4b18fa","newPassword":"bbb02be2-f312-44e3-9491-9c9262f273b8","newPasswordConfirm":"bbb02be2-f312-44e3-9491-9c9262f273b8"}, requestBody.password) +09:00:41.801 [XNIO-1 task-1] bZDTrrk2Ts6PlYeRI1Y0kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bbb02be2-f312-44e3-9491-9c9262f273b8", {"password":"27b61374-645d-4b21-a1be-aae23d4b18fa","newPassword":"bbb02be2-f312-44e3-9491-9c9262f273b8","newPasswordConfirm":"bbb02be2-f312-44e3-9491-9c9262f273b8"}, requestBody.newPassword) +09:00:41.830 [XNIO-1 task-1] X_fLb9rZQIqWquJ8Tt_E2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc337358, base path is set to: null +09:00:41.830 [XNIO-1 task-1] X_fLb9rZQIqWquJ8Tt_E2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.831 [XNIO-1 task-1] X_fLb9rZQIqWquJ8Tt_E2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.831 [XNIO-1 task-1] X_fLb9rZQIqWquJ8Tt_E2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc337358, base path is set to: null +09:00:41.834 [XNIO-1 task-1] X_fLb9rZQIqWquJ8Tt_E2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "dc337358", "dc337358", userId) +09:00:41.842 [XNIO-1 task-1] R-zseHiNS12aAQpYfO0rJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/52e4c4e5 +09:00:41.842 [XNIO-1 task-1] R-zseHiNS12aAQpYfO0rJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.842 [XNIO-1 task-1] R-zseHiNS12aAQpYfO0rJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:41.842 [XNIO-1 task-1] R-zseHiNS12aAQpYfO0rJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/52e4c4e5 +09:00:41.856 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc337358, base path is set to: null +09:00:41.856 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:41.856 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:41.856 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:41.856 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc337358, base path is set to: null +09:00:41.857 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc337358", "dc337358", userId) +09:00:41.857 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b","newPassword":"0e80130e-9f7f-4621-9694-f42023021e51","newPasswordConfirm":"0e80130e-9f7f-4621-9694-f42023021e51"}, {"password":"5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b","newPassword":"0e80130e-9f7f-4621-9694-f42023021e51","newPasswordConfirm":"0e80130e-9f7f-4621-9694-f42023021e51"}, requestBody) +09:00:41.857 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e80130e-9f7f-4621-9694-f42023021e51", {"password":"5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b","newPassword":"0e80130e-9f7f-4621-9694-f42023021e51","newPasswordConfirm":"0e80130e-9f7f-4621-9694-f42023021e51"}, requestBody.newPasswordConfirm) +09:00:41.858 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b", {"password":"5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b","newPassword":"0e80130e-9f7f-4621-9694-f42023021e51","newPasswordConfirm":"0e80130e-9f7f-4621-9694-f42023021e51"}, requestBody.password) +09:00:41.858 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG com.networknt.schema.FormatValidator debug - validate( "5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b", {"password":"5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b","newPassword":"0e80130e-9f7f-4621-9694-f42023021e51","newPasswordConfirm":"0e80130e-9f7f-4621-9694-f42023021e51"}, requestBody.password) +09:00:41.858 [XNIO-1 task-1] dmXT45eHQrm4ZNSmYhEslg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e80130e-9f7f-4621-9694-f42023021e51", {"password":"5b592a1e-5aeb-4531-a7d0-1a50f4b6ad3b","newPassword":"0e80130e-9f7f-4621-9694-f42023021e51","newPasswordConfirm":"0e80130e-9f7f-4621-9694-f42023021e51"}, requestBody.newPassword) +09:00:41.881 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fb7ac70c-8b7c-4c10-84d3-151e3e66a854 +09:00:41.885 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/30be21f1 +09:00:41.885 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.885 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:41.885 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:41.886 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/30be21f1 +09:00:41.887 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5d1695f5-127d-4293-9670-461b5d114578","newPassword":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPasswordConfirm":"4f3a2081-8d27-4679-be89-02a40a3bb1e4"}, {"password":"5d1695f5-127d-4293-9670-461b5d114578","newPassword":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPasswordConfirm":"4f3a2081-8d27-4679-be89-02a40a3bb1e4"}, requestBody) +09:00:41.887 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5d1695f5-127d-4293-9670-461b5d114578","newPassword":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPasswordConfirm":"4f3a2081-8d27-4679-be89-02a40a3bb1e4"}, {"password":"5d1695f5-127d-4293-9670-461b5d114578","newPassword":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPasswordConfirm":"4f3a2081-8d27-4679-be89-02a40a3bb1e4"}, requestBody) +09:00:41.887 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG com.networknt.schema.FormatValidator debug - validate( "4f3a2081-8d27-4679-be89-02a40a3bb1e4", {"password":"5d1695f5-127d-4293-9670-461b5d114578","newPassword":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPasswordConfirm":"4f3a2081-8d27-4679-be89-02a40a3bb1e4"}, requestBody.newPasswordConfirm) +09:00:41.887 [XNIO-1 task-1] rZ-7UQhiRLOzqNGuyB-g8A DEBUG com.networknt.schema.TypeValidator debug - validate( "5d1695f5-127d-4293-9670-461b5d114578", {"password":"5d1695f5-127d-4293-9670-461b5d114578","newPassword":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPasswordConfirm":"4f3a2081-8d27-4679-be89-02a40a3bb1e4"}, requestBody.password) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:00:41.962 [XNIO-1 task-1] fgqxWU_qSgaeJ3Q6UdbbUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.962 [XNIO-1 task-1] fgqxWU_qSgaeJ3Q6UdbbUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:41.963 [XNIO-1 task-1] fgqxWU_qSgaeJ3Q6UdbbUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.007 [XNIO-1 task-1] iE4wP6oaQj2AZ0WzaP_lkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dc337358 +09:00:42.007 [XNIO-1 task-1] iE4wP6oaQj2AZ0WzaP_lkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.007 [XNIO-1 task-1] iE4wP6oaQj2AZ0WzaP_lkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.008 [XNIO-1 task-1] iE4wP6oaQj2AZ0WzaP_lkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dc337358 +09:00:42.015 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc337358, base path is set to: null +09:00:42.015 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.015 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.015 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:42.016 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc337358, base path is set to: null +09:00:42.016 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc337358", "dc337358", userId) +09:00:42.017 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0e80130e-9f7f-4621-9694-f42023021e51","newPassword":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d","newPasswordConfirm":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d"}, {"password":"0e80130e-9f7f-4621-9694-f42023021e51","newPassword":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d","newPasswordConfirm":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d"}, requestBody) +09:00:42.017 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc9af6b-dd21-48b4-b77d-d9870dc8b06d", {"password":"0e80130e-9f7f-4621-9694-f42023021e51","newPassword":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d","newPasswordConfirm":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d"}, requestBody.newPasswordConfirm) +09:00:42.017 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0e80130e-9f7f-4621-9694-f42023021e51", {"password":"0e80130e-9f7f-4621-9694-f42023021e51","newPassword":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d","newPasswordConfirm":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d"}, requestBody.password) +09:00:42.017 [XNIO-1 task-1] EYANlJ33Q2yI5lDcql3IgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc9af6b-dd21-48b4-b77d-d9870dc8b06d", {"password":"0e80130e-9f7f-4621-9694-f42023021e51","newPassword":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d","newPasswordConfirm":"8bc9af6b-dd21-48b4-b77d-d9870dc8b06d"}, requestBody.newPassword) +09:00:42.041 [XNIO-1 task-1] 9saK_E9JT16yf0JJGY0btA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.042 [XNIO-1 task-1] 9saK_E9JT16yf0JJGY0btA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.042 [XNIO-1 task-1] 9saK_E9JT16yf0JJGY0btA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.066 [XNIO-1 task-1] PueOVOvxT2GCfd1yBuQdBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc337358, base path is set to: null +09:00:42.067 [XNIO-1 task-1] PueOVOvxT2GCfd1yBuQdBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.067 [XNIO-1 task-1] PueOVOvxT2GCfd1yBuQdBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.067 [XNIO-1 task-1] PueOVOvxT2GCfd1yBuQdBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc337358, base path is set to: null +09:00:42.068 [XNIO-1 task-1] PueOVOvxT2GCfd1yBuQdBw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc337358", "dc337358", userId) +09:00:42.086 [XNIO-1 task-1] l7OVOQUKREiuf9Uj8d8vBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5ee9cd6f +09:00:42.086 [XNIO-1 task-1] l7OVOQUKREiuf9Uj8d8vBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.086 [XNIO-1 task-1] l7OVOQUKREiuf9Uj8d8vBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.086 [XNIO-1 task-1] l7OVOQUKREiuf9Uj8d8vBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5ee9cd6f +09:00:42.087 [XNIO-1 task-1] l7OVOQUKREiuf9Uj8d8vBw DEBUG com.networknt.schema.TypeValidator debug - validate( "5ee9cd6f", "5ee9cd6f", userId) +09:00:42.088 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56ed7286-a0ab-42b4-a670-8cfc682fad8c +09:00:42.102 [XNIO-1 task-1] ycAMEnwcQ4qGwXrc83Os6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.102 [XNIO-1 task-1] ycAMEnwcQ4qGwXrc83Os6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.102 [XNIO-1 task-1] ycAMEnwcQ4qGwXrc83Os6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.102 [XNIO-1 task-1] ycAMEnwcQ4qGwXrc83Os6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.102 [XNIO-1 task-1] ycAMEnwcQ4qGwXrc83Os6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:42.109 [XNIO-1 task-1] xbX05VqnSfu12w0ejMK51g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.109 [XNIO-1 task-1] xbX05VqnSfu12w0ejMK51g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.110 [XNIO-1 task-1] xbX05VqnSfu12w0ejMK51g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.110 [XNIO-1 task-1] xbX05VqnSfu12w0ejMK51g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.116 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df8346d1-e3cc-4efb-ae4c-241d01457a9d +09:00:42.118 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df8346d1-e3cc-4efb-ae4c-241d01457a9d +09:00:42.122 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/30be21f1, base path is set to: null +09:00:42.122 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.122 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.122 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:42.122 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/30be21f1, base path is set to: null +09:00:42.123 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG com.networknt.schema.TypeValidator debug - validate( "30be21f1", "30be21f1", userId) +09:00:42.127 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPassword":"12498d8e-62a2-461f-ad40-1669fe508d25","newPasswordConfirm":"12498d8e-62a2-461f-ad40-1669fe508d25"}, {"password":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPassword":"12498d8e-62a2-461f-ad40-1669fe508d25","newPasswordConfirm":"12498d8e-62a2-461f-ad40-1669fe508d25"}, requestBody) +09:00:42.127 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG com.networknt.schema.TypeValidator debug - validate( "12498d8e-62a2-461f-ad40-1669fe508d25", {"password":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPassword":"12498d8e-62a2-461f-ad40-1669fe508d25","newPasswordConfirm":"12498d8e-62a2-461f-ad40-1669fe508d25"}, requestBody.newPasswordConfirm) +09:00:42.127 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f3a2081-8d27-4679-be89-02a40a3bb1e4", {"password":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPassword":"12498d8e-62a2-461f-ad40-1669fe508d25","newPasswordConfirm":"12498d8e-62a2-461f-ad40-1669fe508d25"}, requestBody.password) +09:00:42.127 [XNIO-1 task-1] CsP5-fwKQNSCL6vzsP0CEw DEBUG com.networknt.schema.TypeValidator debug - validate( "12498d8e-62a2-461f-ad40-1669fe508d25", {"password":"4f3a2081-8d27-4679-be89-02a40a3bb1e4","newPassword":"12498d8e-62a2-461f-ad40-1669fe508d25","newPasswordConfirm":"12498d8e-62a2-461f-ad40-1669fe508d25"}, requestBody.newPassword) +09:00:42.146 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4c823250-7e54-44d8-a977-d12322ae2086 +09:00:42.178 [XNIO-1 task-1] W2qPBj-NTKyjxbpzm6CjZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.178 [XNIO-1 task-1] W2qPBj-NTKyjxbpzm6CjZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.183 [XNIO-1 task-1] W2qPBj-NTKyjxbpzm6CjZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.233 [XNIO-1 task-1] QlJGhOhHSTiIm5CJgTVxiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.233 [XNIO-1 task-1] QlJGhOhHSTiIm5CJgTVxiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.233 [XNIO-1 task-1] QlJGhOhHSTiIm5CJgTVxiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.234 [XNIO-1 task-1] QlJGhOhHSTiIm5CJgTVxiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.240 [XNIO-1 task-1] W79LH9WZQCut6cuXZe7o0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.240 [XNIO-1 task-1] W79LH9WZQCut6cuXZe7o0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.240 [XNIO-1 task-1] W79LH9WZQCut6cuXZe7o0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.314 [XNIO-1 task-1] -WeURWoQRXaDPCGtDn2Z1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/12615e76, base path is set to: null +09:00:42.314 [XNIO-1 task-1] -WeURWoQRXaDPCGtDn2Z1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.314 [XNIO-1 task-1] -WeURWoQRXaDPCGtDn2Z1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.314 [XNIO-1 task-1] -WeURWoQRXaDPCGtDn2Z1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/12615e76, base path is set to: null +09:00:42.314 [XNIO-1 task-1] -WeURWoQRXaDPCGtDn2Z1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "12615e76", "12615e76", userId) +09:00:42.347 [XNIO-1 task-1] AXLN3AM9QpiZfeoHPlQklQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.347 [XNIO-1 task-1] AXLN3AM9QpiZfeoHPlQklQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.347 [XNIO-1 task-1] AXLN3AM9QpiZfeoHPlQklQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.348 [XNIO-1 task-1] AXLN3AM9QpiZfeoHPlQklQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.372 [XNIO-1 task-1] zzYI4ECpRf6JTPT6wqM54A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.373 [XNIO-1 task-1] zzYI4ECpRf6JTPT6wqM54A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.374 [XNIO-1 task-1] zzYI4ECpRf6JTPT6wqM54A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.399 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d262c1f1-d916-44c1-9c22-e3faf30b7830 +09:00:42.408 [XNIO-1 task-1] AvnjtzwUQGKkCvxKIijXuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1e9bfe18, base path is set to: null +09:00:42.409 [XNIO-1 task-1] AvnjtzwUQGKkCvxKIijXuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.409 [XNIO-1 task-1] AvnjtzwUQGKkCvxKIijXuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.409 [XNIO-1 task-1] AvnjtzwUQGKkCvxKIijXuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1e9bfe18, base path is set to: null +09:00:42.409 [XNIO-1 task-1] AvnjtzwUQGKkCvxKIijXuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1e9bfe18", "1e9bfe18", userId) +09:00:42.418 [XNIO-1 task-1] QtWA05FeQMyf2cCELWLaZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1e9bfe18 +09:00:42.418 [XNIO-1 task-1] QtWA05FeQMyf2cCELWLaZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.418 [XNIO-1 task-1] QtWA05FeQMyf2cCELWLaZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.419 [XNIO-1 task-1] QtWA05FeQMyf2cCELWLaZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1e9bfe18 +09:00:42.480 [XNIO-1 task-1] Vdab6exZQYGo5Nx44DHFWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/30be21f1, base path is set to: null +09:00:42.480 [XNIO-1 task-1] Vdab6exZQYGo5Nx44DHFWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.480 [XNIO-1 task-1] Vdab6exZQYGo5Nx44DHFWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.481 [XNIO-1 task-1] Vdab6exZQYGo5Nx44DHFWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/30be21f1, base path is set to: null +09:00:42.481 [XNIO-1 task-1] Vdab6exZQYGo5Nx44DHFWw DEBUG com.networknt.schema.TypeValidator debug - validate( "30be21f1", "30be21f1", userId) +09:00:42.495 [XNIO-1 task-1] iUDZueZUTvyebYdp7dNt6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.495 [XNIO-1 task-1] iUDZueZUTvyebYdp7dNt6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.495 [XNIO-1 task-1] iUDZueZUTvyebYdp7dNt6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.496 [XNIO-1 task-1] iUDZueZUTvyebYdp7dNt6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.506 [XNIO-1 task-1] ltuZZviCQMa7-ycMGe3xAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.506 [XNIO-1 task-1] ltuZZviCQMa7-ycMGe3xAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.507 [XNIO-1 task-1] ltuZZviCQMa7-ycMGe3xAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.520 [XNIO-1 task-1] W3wopjnzTG2XpysdQRhIdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.520 [XNIO-1 task-1] W3wopjnzTG2XpysdQRhIdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.521 [XNIO-1 task-1] W3wopjnzTG2XpysdQRhIdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.541 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:42.547 [XNIO-1 task-1] VkOBfSwqRHiGeBwhRwntGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.547 [XNIO-1 task-1] VkOBfSwqRHiGeBwhRwntGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.547 [XNIO-1 task-1] VkOBfSwqRHiGeBwhRwntGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.569 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:43563a3c +09:00:42.571 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:43563a3c +09:00:42.581 [XNIO-1 task-1] i5SmIYcBQVW17vAhYgEJXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.581 [XNIO-1 task-1] i5SmIYcBQVW17vAhYgEJXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.582 [XNIO-1 task-1] i5SmIYcBQVW17vAhYgEJXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.592 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9cd95b6 +09:00:42.592 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.592 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.593 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:42.593 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9cd95b6 +09:00:42.594 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f4135be0-859a-4b07-8c4a-85e397df5275","newPassword":"bd105400-7751-44cb-aaf1-dcfe145953f6","newPasswordConfirm":"bd105400-7751-44cb-aaf1-dcfe145953f6"}, {"password":"f4135be0-859a-4b07-8c4a-85e397df5275","newPassword":"bd105400-7751-44cb-aaf1-dcfe145953f6","newPasswordConfirm":"bd105400-7751-44cb-aaf1-dcfe145953f6"}, requestBody) +09:00:42.594 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f4135be0-859a-4b07-8c4a-85e397df5275","newPassword":"bd105400-7751-44cb-aaf1-dcfe145953f6","newPasswordConfirm":"bd105400-7751-44cb-aaf1-dcfe145953f6"}, {"password":"f4135be0-859a-4b07-8c4a-85e397df5275","newPassword":"bd105400-7751-44cb-aaf1-dcfe145953f6","newPasswordConfirm":"bd105400-7751-44cb-aaf1-dcfe145953f6"}, requestBody) +09:00:42.594 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG com.networknt.schema.FormatValidator debug - validate( "bd105400-7751-44cb-aaf1-dcfe145953f6", {"password":"f4135be0-859a-4b07-8c4a-85e397df5275","newPassword":"bd105400-7751-44cb-aaf1-dcfe145953f6","newPasswordConfirm":"bd105400-7751-44cb-aaf1-dcfe145953f6"}, requestBody.newPasswordConfirm) +09:00:42.594 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG com.networknt.schema.FormatValidator debug - validate( "f4135be0-859a-4b07-8c4a-85e397df5275", {"password":"f4135be0-859a-4b07-8c4a-85e397df5275","newPassword":"bd105400-7751-44cb-aaf1-dcfe145953f6","newPasswordConfirm":"bd105400-7751-44cb-aaf1-dcfe145953f6"}, requestBody.password) +09:00:42.595 [XNIO-1 task-1] juKK2l8KQKmyOLx6EVfJQA DEBUG com.networknt.schema.FormatValidator debug - validate( "bd105400-7751-44cb-aaf1-dcfe145953f6", {"password":"f4135be0-859a-4b07-8c4a-85e397df5275","newPassword":"bd105400-7751-44cb-aaf1-dcfe145953f6","newPasswordConfirm":"bd105400-7751-44cb-aaf1-dcfe145953f6"}, requestBody.newPassword) +09:00:42.640 [XNIO-1 task-1] sz2-MHdnQg2rBH0vCsklkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e9cd95b6 +09:00:42.640 [XNIO-1 task-1] sz2-MHdnQg2rBH0vCsklkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.640 [XNIO-1 task-1] sz2-MHdnQg2rBH0vCsklkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.641 [XNIO-1 task-1] sz2-MHdnQg2rBH0vCsklkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e9cd95b6 +09:00:42.650 [XNIO-1 task-1] bGyy9Ti2TGK7yy6aYnq7mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.651 [XNIO-1 task-1] bGyy9Ti2TGK7yy6aYnq7mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.651 [XNIO-1 task-1] bGyy9Ti2TGK7yy6aYnq7mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.652 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:43563a3c +09:00:42.672 [XNIO-1 task-1] oOjNE_c_Tam2kJRNw0shEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.672 [XNIO-1 task-1] oOjNE_c_Tam2kJRNw0shEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.673 [XNIO-1 task-1] oOjNE_c_Tam2kJRNw0shEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.700 [XNIO-1 task-1] tkqxfTDmThu_vuGlGwxw5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.700 [XNIO-1 task-1] tkqxfTDmThu_vuGlGwxw5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.700 [XNIO-1 task-1] tkqxfTDmThu_vuGlGwxw5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.701 [XNIO-1 task-1] tkqxfTDmThu_vuGlGwxw5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.709 [XNIO-1 task-1] ngy0ln7zQhKabvb0Z0_iOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f9c58674, base path is set to: null +09:00:42.710 [XNIO-1 task-1] ngy0ln7zQhKabvb0Z0_iOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.710 [XNIO-1 task-1] ngy0ln7zQhKabvb0Z0_iOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.710 [XNIO-1 task-1] ngy0ln7zQhKabvb0Z0_iOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f9c58674, base path is set to: null +09:00:42.710 [XNIO-1 task-1] ngy0ln7zQhKabvb0Z0_iOw DEBUG com.networknt.schema.TypeValidator debug - validate( "f9c58674", "f9c58674", userId) +09:00:42.720 [XNIO-1 task-1] Ur-gs1NXRdKRcHexeA4L0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.720 [XNIO-1 task-1] Ur-gs1NXRdKRcHexeA4L0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.720 [XNIO-1 task-1] Ur-gs1NXRdKRcHexeA4L0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.720 [XNIO-1 task-1] Ur-gs1NXRdKRcHexeA4L0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:42.733 [XNIO-1 task-1] D-XaS47XSrGBH5_0XM-x7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9c58674 +09:00:42.733 [XNIO-1 task-1] D-XaS47XSrGBH5_0XM-x7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.733 [XNIO-1 task-1] D-XaS47XSrGBH5_0XM-x7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.733 [XNIO-1 task-1] D-XaS47XSrGBH5_0XM-x7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9c58674 +09:00:42.741 [XNIO-1 task-1] VE_y2_zARlOPgZr1PndwPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.741 [XNIO-1 task-1] VE_y2_zARlOPgZr1PndwPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.742 [XNIO-1 task-1] VE_y2_zARlOPgZr1PndwPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.742 [XNIO-1 task-1] VE_y2_zARlOPgZr1PndwPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.748 [XNIO-1 task-1] 8TXoDnNySrSTrLPB-_QmtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5865cdc3, base path is set to: null +09:00:42.748 [XNIO-1 task-1] 8TXoDnNySrSTrLPB-_QmtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.748 [XNIO-1 task-1] 8TXoDnNySrSTrLPB-_QmtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.748 [XNIO-1 task-1] 8TXoDnNySrSTrLPB-_QmtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5865cdc3, base path is set to: null +09:00:42.749 [XNIO-1 task-1] 8TXoDnNySrSTrLPB-_QmtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5865cdc3", "5865cdc3", userId) +09:00:42.763 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9c58674 +09:00:42.766 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.766 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.766 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:42.766 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9c58674 +09:00:42.767 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"cf18f66a-07f8-4b7e-81f8-b2d49be91b5f","newPassword":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPasswordConfirm":"58895e42-dde6-4f50-aad4-9165fb0a321b"}, {"password":"cf18f66a-07f8-4b7e-81f8-b2d49be91b5f","newPassword":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPasswordConfirm":"58895e42-dde6-4f50-aad4-9165fb0a321b"}, requestBody) +09:00:42.767 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"cf18f66a-07f8-4b7e-81f8-b2d49be91b5f","newPassword":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPasswordConfirm":"58895e42-dde6-4f50-aad4-9165fb0a321b"}, {"password":"cf18f66a-07f8-4b7e-81f8-b2d49be91b5f","newPassword":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPasswordConfirm":"58895e42-dde6-4f50-aad4-9165fb0a321b"}, requestBody) +09:00:42.767 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "58895e42-dde6-4f50-aad4-9165fb0a321b", {"password":"cf18f66a-07f8-4b7e-81f8-b2d49be91b5f","newPassword":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPasswordConfirm":"58895e42-dde6-4f50-aad4-9165fb0a321b"}, requestBody.newPasswordConfirm) +09:00:42.767 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "cf18f66a-07f8-4b7e-81f8-b2d49be91b5f", {"password":"cf18f66a-07f8-4b7e-81f8-b2d49be91b5f","newPassword":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPasswordConfirm":"58895e42-dde6-4f50-aad4-9165fb0a321b"}, requestBody.password) +09:00:42.768 [XNIO-1 task-1] WHGzE7QoSzqI11MPbz5o6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "58895e42-dde6-4f50-aad4-9165fb0a321b", {"password":"cf18f66a-07f8-4b7e-81f8-b2d49be91b5f","newPassword":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPasswordConfirm":"58895e42-dde6-4f50-aad4-9165fb0a321b"}, requestBody.newPassword) +09:00:42.788 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:89931d25-5050-4b87-bccd-00dcc99bdb67 +09:00:42.791 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f9c58674, base path is set to: null +09:00:42.792 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.792 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:42.792 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:42.792 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f9c58674, base path is set to: null +09:00:42.793 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG com.networknt.schema.TypeValidator debug - validate( "f9c58674", "f9c58674", userId) +09:00:42.793 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPassword":"b14ad047-e184-4975-a78d-e42ff2341d05","newPasswordConfirm":"b14ad047-e184-4975-a78d-e42ff2341d05"}, {"password":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPassword":"b14ad047-e184-4975-a78d-e42ff2341d05","newPasswordConfirm":"b14ad047-e184-4975-a78d-e42ff2341d05"}, requestBody) +09:00:42.793 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG com.networknt.schema.TypeValidator debug - validate( "b14ad047-e184-4975-a78d-e42ff2341d05", {"password":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPassword":"b14ad047-e184-4975-a78d-e42ff2341d05","newPasswordConfirm":"b14ad047-e184-4975-a78d-e42ff2341d05"}, requestBody.newPasswordConfirm) +09:00:42.793 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG com.networknt.schema.TypeValidator debug - validate( "58895e42-dde6-4f50-aad4-9165fb0a321b", {"password":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPassword":"b14ad047-e184-4975-a78d-e42ff2341d05","newPasswordConfirm":"b14ad047-e184-4975-a78d-e42ff2341d05"}, requestBody.password) +09:00:42.794 [XNIO-1 task-1] Xv_f0TguRuWDvCXUnpQPoA DEBUG com.networknt.schema.TypeValidator debug - validate( "b14ad047-e184-4975-a78d-e42ff2341d05", {"password":"58895e42-dde6-4f50-aad4-9165fb0a321b","newPassword":"b14ad047-e184-4975-a78d-e42ff2341d05","newPasswordConfirm":"b14ad047-e184-4975-a78d-e42ff2341d05"}, requestBody.newPassword) +09:00:42.823 [XNIO-1 task-1] zW0LAWThQSyjvcOcdkcXWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.823 [XNIO-1 task-1] zW0LAWThQSyjvcOcdkcXWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.824 [XNIO-1 task-1] zW0LAWThQSyjvcOcdkcXWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.838 [XNIO-1 task-1] 4hLgjgmzSNqnypmYCeRMCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.841 [XNIO-1 task-1] 4hLgjgmzSNqnypmYCeRMCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.841 [XNIO-1 task-1] 4hLgjgmzSNqnypmYCeRMCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.854 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1719933a +09:00:42.856 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1719933a +09:00:42.870 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4e28b258-822d-4682-9467-dd73fd996e1a +09:00:42.873 [XNIO-1 task-1] tLEdQ4JqRCut4gqlVV8L7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9c58674 +09:00:42.873 [XNIO-1 task-1] tLEdQ4JqRCut4gqlVV8L7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.873 [XNIO-1 task-1] tLEdQ4JqRCut4gqlVV8L7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.874 [XNIO-1 task-1] tLEdQ4JqRCut4gqlVV8L7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9c58674 +09:00:42.880 [XNIO-1 task-1] NxLkRZUlSIWBSqgShPQfZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.880 [XNIO-1 task-1] NxLkRZUlSIWBSqgShPQfZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.881 [XNIO-1 task-1] NxLkRZUlSIWBSqgShPQfZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.881 [XNIO-1 task-1] NxLkRZUlSIWBSqgShPQfZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:42.891 [XNIO-1 task-1] T3-ru1TcSQ2yA8LhmGPe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.891 [XNIO-1 task-1] T3-ru1TcSQ2yA8LhmGPe4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.891 [XNIO-1 task-1] T3-ru1TcSQ2yA8LhmGPe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.894 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4e28b258-822d-4682-9467-dd73fd996e1a +09:00:42.905 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1719933a +09:00:42.919 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1719933a +09:00:42.944 [XNIO-1 task-1] 3Vu6rkQxTNCvuUi48axRyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/43563a3c +09:00:42.944 [XNIO-1 task-1] 3Vu6rkQxTNCvuUi48axRyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.944 [XNIO-1 task-1] 3Vu6rkQxTNCvuUi48axRyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.944 [XNIO-1 task-1] 3Vu6rkQxTNCvuUi48axRyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/43563a3c +09:00:42.945 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:43563a3c +09:00:42.950 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:468e9aea-ee63-479d-bbb7-a7d5a4f4ea54 +09:00:42.954 [XNIO-1 task-1] H_Pel7iCQWSIAM2cAGatvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8908045b +09:00:42.954 [XNIO-1 task-1] H_Pel7iCQWSIAM2cAGatvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.954 [XNIO-1 task-1] H_Pel7iCQWSIAM2cAGatvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.956 [XNIO-1 task-1] H_Pel7iCQWSIAM2cAGatvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8908045b +09:00:42.960 [XNIO-1 task-1] qNtzGCnDRw-rS40HN2Nz4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8908045b, base path is set to: null +09:00:42.961 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ca2ea128 +09:00:42.961 [XNIO-1 task-1] qNtzGCnDRw-rS40HN2Nz4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.961 [XNIO-1 task-1] qNtzGCnDRw-rS40HN2Nz4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:42.961 [XNIO-1 task-1] qNtzGCnDRw-rS40HN2Nz4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8908045b +09:00:42.963 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ca2ea128 +09:00:42.972 [XNIO-1 task-1] U9MTzqZnTLCZgIxQMZKoJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.972 [XNIO-1 task-1] U9MTzqZnTLCZgIxQMZKoJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:42.972 [XNIO-1 task-1] U9MTzqZnTLCZgIxQMZKoJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:42.972 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:468e9aea-ee63-479d-bbb7-a7d5a4f4ea54 +09:00:42.989 [XNIO-1 task-1] 5tXgy3rFQym8b9N0H5pVsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.989 [XNIO-1 task-1] 5tXgy3rFQym8b9N0H5pVsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:42.990 [XNIO-1 task-1] 5tXgy3rFQym8b9N0H5pVsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.029 [XNIO-1 task-1] -s3dhfyxS9WdlRY3_780PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9c58674 +09:00:43.030 [XNIO-1 task-1] -s3dhfyxS9WdlRY3_780PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.030 [XNIO-1 task-1] -s3dhfyxS9WdlRY3_780PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.031 [XNIO-1 task-1] -s3dhfyxS9WdlRY3_780PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9c58674 +09:00:43.049 [XNIO-1 task-1] yC111d7fQ2SWe_QVLn1fVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.049 [XNIO-1 task-1] yC111d7fQ2SWe_QVLn1fVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.049 [XNIO-1 task-1] yC111d7fQ2SWe_QVLn1fVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.079 [XNIO-1 task-1] gaU-5aWrQOKAzZv8Dn3NsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bf09f6e7, base path is set to: null +09:00:43.079 [XNIO-1 task-1] gaU-5aWrQOKAzZv8Dn3NsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.079 [XNIO-1 task-1] gaU-5aWrQOKAzZv8Dn3NsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.079 [XNIO-1 task-1] gaU-5aWrQOKAzZv8Dn3NsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bf09f6e7, base path is set to: null +09:00:43.080 [XNIO-1 task-1] gaU-5aWrQOKAzZv8Dn3NsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bf09f6e7", "bf09f6e7", userId) +09:00:43.093 [XNIO-1 task-1] P5842ckNQUyJcUeiA1WJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7cfd8943 +09:00:43.093 [XNIO-1 task-1] P5842ckNQUyJcUeiA1WJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.093 [XNIO-1 task-1] P5842ckNQUyJcUeiA1WJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.093 [XNIO-1 task-1] P5842ckNQUyJcUeiA1WJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7cfd8943 +09:00:43.096 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b171858e-4418-44b9-8ca5-a38169269d2a +09:00:43.106 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dbb3da4f, base path is set to: null +09:00:43.106 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.106 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.106 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:43.109 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dbb3da4f, base path is set to: null +09:00:43.110 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "dbb3da4f", "dbb3da4f", userId) +09:00:43.110 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"55bae3ad-a6c4-44f6-a755-f3028ce4fbca","newPassword":"62d2a384-5561-4a1a-b6b1-3f2e8569621c","newPasswordConfirm":"62d2a384-5561-4a1a-b6b1-3f2e8569621c"}, {"password":"55bae3ad-a6c4-44f6-a755-f3028ce4fbca","newPassword":"62d2a384-5561-4a1a-b6b1-3f2e8569621c","newPasswordConfirm":"62d2a384-5561-4a1a-b6b1-3f2e8569621c"}, requestBody) +09:00:43.110 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "62d2a384-5561-4a1a-b6b1-3f2e8569621c", {"password":"55bae3ad-a6c4-44f6-a755-f3028ce4fbca","newPassword":"62d2a384-5561-4a1a-b6b1-3f2e8569621c","newPasswordConfirm":"62d2a384-5561-4a1a-b6b1-3f2e8569621c"}, requestBody.newPasswordConfirm) +09:00:43.110 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "55bae3ad-a6c4-44f6-a755-f3028ce4fbca", {"password":"55bae3ad-a6c4-44f6-a755-f3028ce4fbca","newPassword":"62d2a384-5561-4a1a-b6b1-3f2e8569621c","newPasswordConfirm":"62d2a384-5561-4a1a-b6b1-3f2e8569621c"}, requestBody.password) +09:00:43.110 [XNIO-1 task-1] ED_0zzdGQ2qzIPIlf7vzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "62d2a384-5561-4a1a-b6b1-3f2e8569621c", {"password":"55bae3ad-a6c4-44f6-a755-f3028ce4fbca","newPassword":"62d2a384-5561-4a1a-b6b1-3f2e8569621c","newPasswordConfirm":"62d2a384-5561-4a1a-b6b1-3f2e8569621c"}, requestBody.newPassword) +09:00:43.116 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b171858e-4418-44b9-8ca5-a38169269d2a +09:00:43.169 [XNIO-1 task-1] 3gUP4mmdT_2u1zhsBwYI4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.170 [XNIO-1 task-1] 3gUP4mmdT_2u1zhsBwYI4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.170 [XNIO-1 task-1] 3gUP4mmdT_2u1zhsBwYI4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.172 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d3a2fe19 +09:00:43.197 [XNIO-1 task-1] CTQmbU_ATleozFF-TGEouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbb3da4f, base path is set to: null +09:00:43.197 [XNIO-1 task-1] CTQmbU_ATleozFF-TGEouw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.197 [XNIO-1 task-1] CTQmbU_ATleozFF-TGEouw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.198 [XNIO-1 task-1] CTQmbU_ATleozFF-TGEouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbb3da4f, base path is set to: null +09:00:43.198 [XNIO-1 task-1] CTQmbU_ATleozFF-TGEouw DEBUG com.networknt.schema.TypeValidator debug - validate( "dbb3da4f", "dbb3da4f", userId) +09:00:43.217 [XNIO-1 task-1] -0cPUgZ7TiKhyaewfNOn9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.217 [XNIO-1 task-1] -0cPUgZ7TiKhyaewfNOn9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.217 [XNIO-1 task-1] -0cPUgZ7TiKhyaewfNOn9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.235 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a82050a0 +09:00:43.254 [XNIO-1 task-1] tybS6kjFTQeAnw_j1zg7wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/42fe5f93, base path is set to: null +09:00:43.254 [XNIO-1 task-1] tybS6kjFTQeAnw_j1zg7wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.254 [XNIO-1 task-1] tybS6kjFTQeAnw_j1zg7wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.254 [XNIO-1 task-1] tybS6kjFTQeAnw_j1zg7wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/42fe5f93, base path is set to: null +09:00:43.255 [XNIO-1 task-1] tybS6kjFTQeAnw_j1zg7wg DEBUG com.networknt.schema.TypeValidator debug - validate( "42fe5f93", "42fe5f93", userId) +09:00:43.273 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d9917168-40be-4f9d-91f7-2df0af63be77 +09:00:43.276 [XNIO-1 task-1] VBKk7N-2R3yxnSj5XO3CFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/42fe5f93 +09:00:43.276 [XNIO-1 task-1] VBKk7N-2R3yxnSj5XO3CFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.276 [XNIO-1 task-1] VBKk7N-2R3yxnSj5XO3CFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.276 [XNIO-1 task-1] VBKk7N-2R3yxnSj5XO3CFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/42fe5f93, base path is set to: null +09:00:43.277 [XNIO-1 task-1] VBKk7N-2R3yxnSj5XO3CFw DEBUG com.networknt.schema.TypeValidator debug - validate( "42fe5f93", "42fe5f93", userId) +09:00:43.278 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dcef276c-c5fc-463b-a1eb-7bbbd942067c +09:00:43.297 [XNIO-1 task-1] aohmytuiQNqzIN5Wlyw5Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.298 [XNIO-1 task-1] aohmytuiQNqzIN5Wlyw5Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.299 [XNIO-1 task-1] aohmytuiQNqzIN5Wlyw5Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.299 [XNIO-1 task-1] aohmytuiQNqzIN5Wlyw5Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.300 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0fdea923-552b-4021-beac-29861fc222f1 +09:00:43.309 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e2ab9f80 +09:00:43.334 [XNIO-1 task-1] vVhuhSSWRjiFtYqSi7NPvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.334 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e2ab9f80 +09:00:43.334 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e2ab9f80 +09:00:43.335 [XNIO-1 task-1] vVhuhSSWRjiFtYqSi7NPvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.350 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7bce4992 +09:00:43.353 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7bce4992 +09:00:43.365 [XNIO-1 task-1] btG-70Y4SQ2QJx22TG-5fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.365 [XNIO-1 task-1] btG-70Y4SQ2QJx22TG-5fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.366 [XNIO-1 task-1] btG-70Y4SQ2QJx22TG-5fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.367 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7bce4992 +09:00:43.382 [XNIO-1 task-1] SQZKqeb5Srq6C4am19PJMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.383 [XNIO-1 task-1] SQZKqeb5Srq6C4am19PJMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.383 [XNIO-1 task-1] SQZKqeb5Srq6C4am19PJMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.384 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7bce4992 +09:00:43.388 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ca2ea128 +09:00:43.396 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7bce4992 +09:00:43.396 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.396 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.396 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:43.397 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7bce4992 +09:00:43.398 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a546bbda-9484-432b-a462-b09713e36563","newPassword":"bcaeb485-7a04-412a-afb0-fa9f71f85d07","newPasswordConfirm":"bcaeb485-7a04-412a-afb0-fa9f71f85d07"}, {"password":"a546bbda-9484-432b-a462-b09713e36563","newPassword":"bcaeb485-7a04-412a-afb0-fa9f71f85d07","newPasswordConfirm":"bcaeb485-7a04-412a-afb0-fa9f71f85d07"}, requestBody) +09:00:43.398 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a546bbda-9484-432b-a462-b09713e36563","newPassword":"bcaeb485-7a04-412a-afb0-fa9f71f85d07","newPasswordConfirm":"bcaeb485-7a04-412a-afb0-fa9f71f85d07"}, {"password":"a546bbda-9484-432b-a462-b09713e36563","newPassword":"bcaeb485-7a04-412a-afb0-fa9f71f85d07","newPasswordConfirm":"bcaeb485-7a04-412a-afb0-fa9f71f85d07"}, requestBody) +09:00:43.398 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bcaeb485-7a04-412a-afb0-fa9f71f85d07", {"password":"a546bbda-9484-432b-a462-b09713e36563","newPassword":"bcaeb485-7a04-412a-afb0-fa9f71f85d07","newPasswordConfirm":"bcaeb485-7a04-412a-afb0-fa9f71f85d07"}, requestBody.newPasswordConfirm) +09:00:43.399 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a546bbda-9484-432b-a462-b09713e36563", {"password":"a546bbda-9484-432b-a462-b09713e36563","newPassword":"bcaeb485-7a04-412a-afb0-fa9f71f85d07","newPasswordConfirm":"bcaeb485-7a04-412a-afb0-fa9f71f85d07"}, requestBody.password) +09:00:43.399 [XNIO-1 task-1] 8Ijx-sc4Tk-h8Bp_c2aYFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bcaeb485-7a04-412a-afb0-fa9f71f85d07", {"password":"a546bbda-9484-432b-a462-b09713e36563","newPassword":"bcaeb485-7a04-412a-afb0-fa9f71f85d07","newPasswordConfirm":"bcaeb485-7a04-412a-afb0-fa9f71f85d07"}, requestBody.newPassword) +09:00:43.409 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7bce4992 +09:00:43.417 [XNIO-1 task-1] zcPs2tBDS2mdiCXiqnpTlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7bce4992 +09:00:43.417 [XNIO-1 task-1] zcPs2tBDS2mdiCXiqnpTlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.417 [XNIO-1 task-1] zcPs2tBDS2mdiCXiqnpTlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.417 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bfc60134-fb55-4945-9780-5f603a2668fb +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:00:43.418 [XNIO-1 task-1] zcPs2tBDS2mdiCXiqnpTlw DEBUG com.networknt.schema.TypeValidator debug - validate( "7bce4992", "7bce4992", userId) +09:00:43.418 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7bce4992 +09:00:43.423 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:43.427 [XNIO-1 task-1] jewq5VMRSIygGMR8ScVPWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.427 [XNIO-1 task-1] jewq5VMRSIygGMR8ScVPWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.427 [XNIO-1 task-1] jewq5VMRSIygGMR8ScVPWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.461 [XNIO-1 task-1] 1TVoTNYdSzaIcD8Ey151rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c6faa8ee, base path is set to: null +09:00:43.462 [XNIO-1 task-1] 1TVoTNYdSzaIcD8Ey151rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.462 [XNIO-1 task-1] 1TVoTNYdSzaIcD8Ey151rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.463 [XNIO-1 task-1] 1TVoTNYdSzaIcD8Ey151rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c6faa8ee, base path is set to: null +09:00:43.463 [XNIO-1 task-1] 1TVoTNYdSzaIcD8Ey151rw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6faa8ee", "c6faa8ee", userId) +09:00:43.475 [XNIO-1 task-1] _tgQwgzQRw6mRmPFW2esFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.475 [XNIO-1 task-1] _tgQwgzQRw6mRmPFW2esFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.476 [XNIO-1 task-1] _tgQwgzQRw6mRmPFW2esFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.476 [XNIO-1 task-1] _tgQwgzQRw6mRmPFW2esFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.478 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8315cf01-e91c-4ec5-bebd-79faef8b6039 +09:00:43.497 [XNIO-1 task-1] izQM9LyfSKKxFgCHninzWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.497 [XNIO-1 task-1] izQM9LyfSKKxFgCHninzWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.497 [XNIO-1 task-1] izQM9LyfSKKxFgCHninzWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.506 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fc394dbe +09:00:43.512 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fc394dbe +09:00:43.537 [XNIO-1 task-1] i7o6Ug_HQMmSorNQFPyXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.538 [XNIO-1 task-1] i7o6Ug_HQMmSorNQFPyXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.538 [XNIO-1 task-1] i7o6Ug_HQMmSorNQFPyXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.538 [XNIO-1 task-1] i7o6Ug_HQMmSorNQFPyXpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.546 [XNIO-1 task-1] F0DZnUuvSUqKnIRtL1anKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.546 [XNIO-1 task-1] F0DZnUuvSUqKnIRtL1anKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.547 [XNIO-1 task-1] F0DZnUuvSUqKnIRtL1anKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.549 [XNIO-1 task-1] F0DZnUuvSUqKnIRtL1anKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:43.555 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e2ab9f80 +09:00:43.562 [XNIO-1 task-1] vFKVGOpRT8GwyBTayf0MJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.563 [XNIO-1 task-1] vFKVGOpRT8GwyBTayf0MJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.563 [XNIO-1 task-1] vFKVGOpRT8GwyBTayf0MJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.585 [XNIO-1 task-1] XxUuuV2zQ4SLwrlsjAXdGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fc394dbe +09:00:43.585 [XNIO-1 task-1] XxUuuV2zQ4SLwrlsjAXdGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.586 [XNIO-1 task-1] XxUuuV2zQ4SLwrlsjAXdGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.586 [XNIO-1 task-1] XxUuuV2zQ4SLwrlsjAXdGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fc394dbe +09:00:43.591 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d3a2fe19 +09:00:43.592 [XNIO-1 task-1] 7TvR7zN0R2eT7sAn09a7oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.592 [XNIO-1 task-1] 7TvR7zN0R2eT7sAn09a7oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.592 [XNIO-1 task-1] 7TvR7zN0R2eT7sAn09a7oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.620 [XNIO-1 task-1] EaCqdUQgSBy_fhta1xQhIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.620 [XNIO-1 task-1] EaCqdUQgSBy_fhta1xQhIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.620 [XNIO-1 task-1] EaCqdUQgSBy_fhta1xQhIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.621 [XNIO-1 task-1] EaCqdUQgSBy_fhta1xQhIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.658 [XNIO-1 task-1] OpiGqw1HSySii7p9VF3knw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fc394dbe, base path is set to: null +09:00:43.658 [XNIO-1 task-1] OpiGqw1HSySii7p9VF3knw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.658 [XNIO-1 task-1] OpiGqw1HSySii7p9VF3knw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.658 [XNIO-1 task-1] OpiGqw1HSySii7p9VF3knw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fc394dbe, base path is set to: null +09:00:43.659 [XNIO-1 task-1] OpiGqw1HSySii7p9VF3knw DEBUG com.networknt.schema.TypeValidator debug - validate( "fc394dbe", "fc394dbe", userId) +09:00:43.660 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:fc394dbe +09:00:43.677 [XNIO-1 task-1] LB5MEQlgS5Oyn17OgNr4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.677 [XNIO-1 task-1] LB5MEQlgS5Oyn17OgNr4RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.677 [XNIO-1 task-1] LB5MEQlgS5Oyn17OgNr4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.678 [XNIO-1 task-1] LB5MEQlgS5Oyn17OgNr4RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.683 [XNIO-1 task-1] 3aI8upNgTuiH4CGG1xOO1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eb936e85, base path is set to: null +09:00:43.684 [XNIO-1 task-1] 3aI8upNgTuiH4CGG1xOO1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.684 [XNIO-1 task-1] 3aI8upNgTuiH4CGG1xOO1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.684 [XNIO-1 task-1] 3aI8upNgTuiH4CGG1xOO1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eb936e85, base path is set to: null +09:00:43.684 [XNIO-1 task-1] 3aI8upNgTuiH4CGG1xOO1A DEBUG com.networknt.schema.TypeValidator debug - validate( "eb936e85", "eb936e85", userId) +09:00:43.694 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e029e732, base path is set to: null +09:00:43.695 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.695 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.695 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:43.696 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e029e732, base path is set to: null +09:00:43.696 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e029e732", "e029e732", userId) +09:00:43.697 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c479e800-232f-4f5e-abb0-175f6aaf07ed","newPassword":"4e0812e8-9213-4c3e-b910-593a585ed1b8","newPasswordConfirm":"4e0812e8-9213-4c3e-b910-593a585ed1b8"}, {"password":"c479e800-232f-4f5e-abb0-175f6aaf07ed","newPassword":"4e0812e8-9213-4c3e-b910-593a585ed1b8","newPasswordConfirm":"4e0812e8-9213-4c3e-b910-593a585ed1b8"}, requestBody) +09:00:43.697 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a82050a0 +09:00:43.701 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4e0812e8-9213-4c3e-b910-593a585ed1b8", {"password":"c479e800-232f-4f5e-abb0-175f6aaf07ed","newPassword":"4e0812e8-9213-4c3e-b910-593a585ed1b8","newPasswordConfirm":"4e0812e8-9213-4c3e-b910-593a585ed1b8"}, requestBody.newPasswordConfirm) +09:00:43.703 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c479e800-232f-4f5e-abb0-175f6aaf07ed", {"password":"c479e800-232f-4f5e-abb0-175f6aaf07ed","newPassword":"4e0812e8-9213-4c3e-b910-593a585ed1b8","newPasswordConfirm":"4e0812e8-9213-4c3e-b910-593a585ed1b8"}, requestBody.password) +09:00:43.703 [XNIO-1 task-1] sshWzAjtQYWxxzcjbW4k5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4e0812e8-9213-4c3e-b910-593a585ed1b8", {"password":"c479e800-232f-4f5e-abb0-175f6aaf07ed","newPassword":"4e0812e8-9213-4c3e-b910-593a585ed1b8","newPasswordConfirm":"4e0812e8-9213-4c3e-b910-593a585ed1b8"}, requestBody.newPassword) +09:00:43.704 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fd641a2c-7e29-45f1-bf24-ad142d46451e +09:00:43.705 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fd641a2c-7e29-45f1-bf24-ad142d46451e +09:00:43.724 [XNIO-1 task-1] w2akFSUyRciRuaXRSkCL7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e029e732 +09:00:43.724 [XNIO-1 task-1] w2akFSUyRciRuaXRSkCL7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.724 [XNIO-1 task-1] w2akFSUyRciRuaXRSkCL7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.725 [XNIO-1 task-1] w2akFSUyRciRuaXRSkCL7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e029e732 +09:00:43.771 [XNIO-1 task-1] QWV6K_YRS8mqGuhgRSeq2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.771 [XNIO-1 task-1] QWV6K_YRS8mqGuhgRSeq2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.771 [XNIO-1 task-1] QWV6K_YRS8mqGuhgRSeq2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.772 [XNIO-1 task-1] QWV6K_YRS8mqGuhgRSeq2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:43.787 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3d4a294a-bf78-4519-8ab1-6ba35ab4fb43 +09:00:43.787 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/eb936e85 +09:00:43.787 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.787 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.787 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:43.788 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/eb936e85 +09:00:43.789 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"71573766-210e-4bf6-95c6-419667b142e2","newPassword":"41e4167e-9808-44e7-9130-98294bb5a1c2","newPasswordConfirm":"41e4167e-9808-44e7-9130-98294bb5a1c2"}, {"password":"71573766-210e-4bf6-95c6-419667b142e2","newPassword":"41e4167e-9808-44e7-9130-98294bb5a1c2","newPasswordConfirm":"41e4167e-9808-44e7-9130-98294bb5a1c2"}, requestBody) +09:00:43.789 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"71573766-210e-4bf6-95c6-419667b142e2","newPassword":"41e4167e-9808-44e7-9130-98294bb5a1c2","newPasswordConfirm":"41e4167e-9808-44e7-9130-98294bb5a1c2"}, {"password":"71573766-210e-4bf6-95c6-419667b142e2","newPassword":"41e4167e-9808-44e7-9130-98294bb5a1c2","newPasswordConfirm":"41e4167e-9808-44e7-9130-98294bb5a1c2"}, requestBody) +09:00:43.789 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "41e4167e-9808-44e7-9130-98294bb5a1c2", {"password":"71573766-210e-4bf6-95c6-419667b142e2","newPassword":"41e4167e-9808-44e7-9130-98294bb5a1c2","newPasswordConfirm":"41e4167e-9808-44e7-9130-98294bb5a1c2"}, requestBody.newPasswordConfirm) +09:00:43.789 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "71573766-210e-4bf6-95c6-419667b142e2", {"password":"71573766-210e-4bf6-95c6-419667b142e2","newPassword":"41e4167e-9808-44e7-9130-98294bb5a1c2","newPasswordConfirm":"41e4167e-9808-44e7-9130-98294bb5a1c2"}, requestBody.password) +09:00:43.789 [XNIO-1 task-1] qp1DJiZYRU6_56yL2rrSwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "41e4167e-9808-44e7-9130-98294bb5a1c2", {"password":"71573766-210e-4bf6-95c6-419667b142e2","newPassword":"41e4167e-9808-44e7-9130-98294bb5a1c2","newPasswordConfirm":"41e4167e-9808-44e7-9130-98294bb5a1c2"}, requestBody.newPassword) +09:00:43.792 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3d4a294a-bf78-4519-8ab1-6ba35ab4fb43 +09:00:43.802 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a82050a0 +09:00:43.867 [XNIO-1 task-1] ZrhsUVckQrq2acVr602hZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eb936e85, base path is set to: null +09:00:43.867 [XNIO-1 task-1] ZrhsUVckQrq2acVr602hZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.867 [XNIO-1 task-1] ZrhsUVckQrq2acVr602hZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.868 [XNIO-1 task-1] ZrhsUVckQrq2acVr602hZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eb936e85, base path is set to: null +09:00:43.868 [XNIO-1 task-1] ZrhsUVckQrq2acVr602hZw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb936e85", "eb936e85", userId) +09:00:43.886 [XNIO-1 task-1] WyUnsuNtRWusH5xmGtqLog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.886 [XNIO-1 task-1] WyUnsuNtRWusH5xmGtqLog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.886 [XNIO-1 task-1] WyUnsuNtRWusH5xmGtqLog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.887 [XNIO-1 task-1] WyUnsuNtRWusH5xmGtqLog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:43.887 [XNIO-1 task-1] WyUnsuNtRWusH5xmGtqLog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +09:00:43.893 [XNIO-1 task-1] 8pA8dlqcTyylYrXUXhGgOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.893 [XNIO-1 task-1] 8pA8dlqcTyylYrXUXhGgOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:00:43.894 [XNIO-1 task-1] 8pA8dlqcTyylYrXUXhGgOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +09:00:43.894 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:89931d25-5050-4b87-bccd-00dcc99bdb67 + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:00:43.905 [XNIO-1 task-1] XKkCGSoORC6dQQeP7o-7xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.905 [XNIO-1 task-1] XKkCGSoORC6dQQeP7o-7xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.906 [XNIO-1 task-1] XKkCGSoORC6dQQeP7o-7xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.933 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d0d39bd5 +09:00:43.933 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:43.933 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:43.934 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:43.934 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d0d39bd5 +09:00:43.935 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"09ac577b-6aee-4743-8441-9c5a9421369a","newPassword":"05141881-376d-462a-8abf-4690810fccea","newPasswordConfirm":"05141881-376d-462a-8abf-4690810fccea"}, {"password":"09ac577b-6aee-4743-8441-9c5a9421369a","newPassword":"05141881-376d-462a-8abf-4690810fccea","newPasswordConfirm":"05141881-376d-462a-8abf-4690810fccea"}, requestBody) +09:00:43.935 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"09ac577b-6aee-4743-8441-9c5a9421369a","newPassword":"05141881-376d-462a-8abf-4690810fccea","newPasswordConfirm":"05141881-376d-462a-8abf-4690810fccea"}, {"password":"09ac577b-6aee-4743-8441-9c5a9421369a","newPassword":"05141881-376d-462a-8abf-4690810fccea","newPasswordConfirm":"05141881-376d-462a-8abf-4690810fccea"}, requestBody) +09:00:43.935 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG com.networknt.schema.FormatValidator debug - validate( "05141881-376d-462a-8abf-4690810fccea", {"password":"09ac577b-6aee-4743-8441-9c5a9421369a","newPassword":"05141881-376d-462a-8abf-4690810fccea","newPasswordConfirm":"05141881-376d-462a-8abf-4690810fccea"}, requestBody.newPasswordConfirm) +09:00:43.935 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG com.networknt.schema.FormatValidator debug - validate( "09ac577b-6aee-4743-8441-9c5a9421369a", {"password":"09ac577b-6aee-4743-8441-9c5a9421369a","newPassword":"05141881-376d-462a-8abf-4690810fccea","newPasswordConfirm":"05141881-376d-462a-8abf-4690810fccea"}, requestBody.password) +09:00:43.935 [XNIO-1 task-1] nBAtvRX7S1ScieCvvQtRLA DEBUG com.networknt.schema.FormatValidator debug - validate( "05141881-376d-462a-8abf-4690810fccea", {"password":"09ac577b-6aee-4743-8441-9c5a9421369a","newPassword":"05141881-376d-462a-8abf-4690810fccea","newPasswordConfirm":"05141881-376d-462a-8abf-4690810fccea"}, requestBody.newPassword) +09:00:43.960 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d0d39bd5, base path is set to: null +09:00:43.960 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:43.960 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:43.960 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:43.961 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d0d39bd5, base path is set to: null +09:00:43.963 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG com.networknt.schema.TypeValidator debug - validate( "d0d39bd5", "d0d39bd5", userId) +09:00:43.963 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"05141881-376d-462a-8abf-4690810fccea","newPassword":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0","newPasswordConfirm":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0"}, {"password":"05141881-376d-462a-8abf-4690810fccea","newPassword":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0","newPasswordConfirm":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0"}, requestBody) +09:00:43.963 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG com.networknt.schema.TypeValidator debug - validate( "2ebd2363-4b10-41d8-9aa6-f83c99892bb0", {"password":"05141881-376d-462a-8abf-4690810fccea","newPassword":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0","newPasswordConfirm":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0"}, requestBody.newPasswordConfirm) +09:00:43.963 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG com.networknt.schema.TypeValidator debug - validate( "05141881-376d-462a-8abf-4690810fccea", {"password":"05141881-376d-462a-8abf-4690810fccea","newPassword":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0","newPasswordConfirm":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0"}, requestBody.password) +09:00:43.963 [XNIO-1 task-1] -2m100uhTtW5rEHHLQZdZg DEBUG com.networknt.schema.TypeValidator debug - validate( "2ebd2363-4b10-41d8-9aa6-f83c99892bb0", {"password":"05141881-376d-462a-8abf-4690810fccea","newPassword":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0","newPasswordConfirm":"2ebd2363-4b10-41d8-9aa6-f83c99892bb0"}, requestBody.newPassword) +09:00:43.995 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ca2ea128 +09:00:43.997 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:33158a25-181e-40c9-af21-b86e5154819a +09:00:44.000 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ca2ea128 +09:00:44.004 [XNIO-1 task-1] zlqYjFltRsaJoDnMwb9q1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.004 [XNIO-1 task-1] zlqYjFltRsaJoDnMwb9q1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.004 [XNIO-1 task-1] zlqYjFltRsaJoDnMwb9q1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d0d39bd5, base path is set to: null +09:00:44.004 [XNIO-1 task-1] zlqYjFltRsaJoDnMwb9q1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d0d39bd5", "d0d39bd5", userId) +09:00:44.015 [XNIO-1 task-1] nz2hwDkuRIaOOtv1BX05Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.015 [XNIO-1 task-1] nz2hwDkuRIaOOtv1BX05Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.016 [XNIO-1 task-1] nz2hwDkuRIaOOtv1BX05Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.021 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a82050a0 +09:00:44.033 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eac47ecc +09:00:44.047 [XNIO-1 task-1] k1uYhFBbQLSBcCIi5No2dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eac47ecc, base path is set to: null +09:00:44.048 [XNIO-1 task-1] k1uYhFBbQLSBcCIi5No2dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.048 [XNIO-1 task-1] k1uYhFBbQLSBcCIi5No2dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.048 [XNIO-1 task-1] k1uYhFBbQLSBcCIi5No2dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eac47ecc, base path is set to: null +09:00:44.048 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d3a2fe19 +09:00:44.050 [XNIO-1 task-1] k1uYhFBbQLSBcCIi5No2dw DEBUG com.networknt.schema.TypeValidator debug - validate( "eac47ecc", "eac47ecc", userId) +09:00:44.057 [XNIO-1 task-1] fizT14gMQ-68Jaj1tYm3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eac47ecc +09:00:44.057 [XNIO-1 task-1] fizT14gMQ-68Jaj1tYm3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.058 [XNIO-1 task-1] fizT14gMQ-68Jaj1tYm3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.058 [XNIO-1 task-1] fizT14gMQ-68Jaj1tYm3Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eac47ecc +09:00:44.059 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:eac47ecc +09:00:44.069 [XNIO-1 task-1] NnYd_HAYRI6N1pHPZ2ACYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.069 [XNIO-1 task-1] NnYd_HAYRI6N1pHPZ2ACYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.070 [XNIO-1 task-1] NnYd_HAYRI6N1pHPZ2ACYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.096 [XNIO-1 task-1] PIZMbM1XQuWmA5ytv73hYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8c2f022b, base path is set to: null +09:00:44.097 [XNIO-1 task-1] PIZMbM1XQuWmA5ytv73hYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.097 [XNIO-1 task-1] PIZMbM1XQuWmA5ytv73hYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.097 [XNIO-1 task-1] PIZMbM1XQuWmA5ytv73hYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8c2f022b, base path is set to: null +09:00:44.097 [XNIO-1 task-1] PIZMbM1XQuWmA5ytv73hYw DEBUG com.networknt.schema.TypeValidator debug - validate( "8c2f022b", "8c2f022b", userId) +09:00:44.116 [XNIO-1 task-1] P1Zjr_sVS5qgxMQvlyzAfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.118 [XNIO-1 task-1] P1Zjr_sVS5qgxMQvlyzAfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.118 [XNIO-1 task-1] P1Zjr_sVS5qgxMQvlyzAfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.118 [XNIO-1 task-1] P1Zjr_sVS5qgxMQvlyzAfA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:44.128 [XNIO-1 task-1] lcfqvNCEQ1641GGk9pIGNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.129 [XNIO-1 task-1] lcfqvNCEQ1641GGk9pIGNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.129 [XNIO-1 task-1] lcfqvNCEQ1641GGk9pIGNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.163 [XNIO-1 task-1] Pd4QJnzERpe3y1E17tPI_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4664f1ce, base path is set to: null +09:00:44.163 [XNIO-1 task-1] Pd4QJnzERpe3y1E17tPI_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.163 [XNIO-1 task-1] Pd4QJnzERpe3y1E17tPI_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.163 [XNIO-1 task-1] Pd4QJnzERpe3y1E17tPI_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4664f1ce, base path is set to: null +09:00:44.164 [XNIO-1 task-1] Pd4QJnzERpe3y1E17tPI_A DEBUG com.networknt.schema.TypeValidator debug - validate( "4664f1ce", "4664f1ce", userId) +09:00:44.173 [XNIO-1 task-1] b5uV_DgYQ4-N1U-8DiIlFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.173 [XNIO-1 task-1] b5uV_DgYQ4-N1U-8DiIlFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.175 [XNIO-1 task-1] b5uV_DgYQ4-N1U-8DiIlFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.186 [XNIO-1 task-1] 95X40BtYQ7qMbnrIguZ84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.186 [XNIO-1 task-1] 95X40BtYQ7qMbnrIguZ84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.186 [XNIO-1 task-1] 95X40BtYQ7qMbnrIguZ84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.198 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fb17fd00-0244-482c-b721-d583fe0d6794 +09:00:44.212 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a82050a0 +09:00:44.215 [XNIO-1 task-1] W7EQ5jtcTkKPk5ZPvNxsjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.216 [XNIO-1 task-1] W7EQ5jtcTkKPk5ZPvNxsjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.217 [XNIO-1 task-1] W7EQ5jtcTkKPk5ZPvNxsjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.228 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4664f1ce, base path is set to: null +09:00:44.229 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.229 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.229 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:44.229 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4664f1ce, base path is set to: null +09:00:44.230 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG com.networknt.schema.TypeValidator debug - validate( "4664f1ce", "4664f1ce", userId) +09:00:44.230 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b4c6dffa-5f37-4139-b10f-38635d68cbef","newPassword":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPasswordConfirm":"dfb39340-745d-4d88-ab60-2261ea10bd36"}, {"password":"b4c6dffa-5f37-4139-b10f-38635d68cbef","newPassword":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPasswordConfirm":"dfb39340-745d-4d88-ab60-2261ea10bd36"}, requestBody) +09:00:44.230 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG com.networknt.schema.TypeValidator debug - validate( "dfb39340-745d-4d88-ab60-2261ea10bd36", {"password":"b4c6dffa-5f37-4139-b10f-38635d68cbef","newPassword":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPasswordConfirm":"dfb39340-745d-4d88-ab60-2261ea10bd36"}, requestBody.newPasswordConfirm) +09:00:44.230 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4c6dffa-5f37-4139-b10f-38635d68cbef", {"password":"b4c6dffa-5f37-4139-b10f-38635d68cbef","newPassword":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPasswordConfirm":"dfb39340-745d-4d88-ab60-2261ea10bd36"}, requestBody.password) +09:00:44.230 [XNIO-1 task-1] 5ptBm-0mSGiWNXPUc5jfQw DEBUG com.networknt.schema.TypeValidator debug - validate( "dfb39340-745d-4d88-ab60-2261ea10bd36", {"password":"b4c6dffa-5f37-4139-b10f-38635d68cbef","newPassword":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPasswordConfirm":"dfb39340-745d-4d88-ab60-2261ea10bd36"}, requestBody.newPassword) +09:00:44.259 [XNIO-1 task-1] NLfTtMgpRASv0yh7VBoTWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4664f1ce, base path is set to: null +09:00:44.259 [XNIO-1 task-1] NLfTtMgpRASv0yh7VBoTWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.259 [XNIO-1 task-1] NLfTtMgpRASv0yh7VBoTWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.260 [XNIO-1 task-1] NLfTtMgpRASv0yh7VBoTWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4664f1ce, base path is set to: null +09:00:44.260 [XNIO-1 task-1] NLfTtMgpRASv0yh7VBoTWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4664f1ce", "4664f1ce", userId) +09:00:44.276 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4664f1ce +09:00:44.276 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.276 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.276 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:44.277 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4664f1ce +09:00:44.277 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPassword":"f549d797-6f90-4da1-ad83-d85c3a87478a","newPasswordConfirm":"f549d797-6f90-4da1-ad83-d85c3a87478a"}, {"password":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPassword":"f549d797-6f90-4da1-ad83-d85c3a87478a","newPasswordConfirm":"f549d797-6f90-4da1-ad83-d85c3a87478a"}, requestBody) +09:00:44.277 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPassword":"f549d797-6f90-4da1-ad83-d85c3a87478a","newPasswordConfirm":"f549d797-6f90-4da1-ad83-d85c3a87478a"}, {"password":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPassword":"f549d797-6f90-4da1-ad83-d85c3a87478a","newPasswordConfirm":"f549d797-6f90-4da1-ad83-d85c3a87478a"}, requestBody) +09:00:44.277 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "f549d797-6f90-4da1-ad83-d85c3a87478a", {"password":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPassword":"f549d797-6f90-4da1-ad83-d85c3a87478a","newPasswordConfirm":"f549d797-6f90-4da1-ad83-d85c3a87478a"}, requestBody.newPasswordConfirm) +09:00:44.278 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "dfb39340-745d-4d88-ab60-2261ea10bd36", {"password":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPassword":"f549d797-6f90-4da1-ad83-d85c3a87478a","newPasswordConfirm":"f549d797-6f90-4da1-ad83-d85c3a87478a"}, requestBody.password) +09:00:44.278 [XNIO-1 task-1] g7clvvlvTfu3UuCcAdZYwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "f549d797-6f90-4da1-ad83-d85c3a87478a", {"password":"dfb39340-745d-4d88-ab60-2261ea10bd36","newPassword":"f549d797-6f90-4da1-ad83-d85c3a87478a","newPasswordConfirm":"f549d797-6f90-4da1-ad83-d85c3a87478a"}, requestBody.newPassword) +09:00:44.310 [XNIO-1 task-1] ank7foGUQRWEy5gwi9xCkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.310 [XNIO-1 task-1] ank7foGUQRWEy5gwi9xCkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.310 [XNIO-1 task-1] ank7foGUQRWEy5gwi9xCkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.311 [XNIO-1 task-1] ank7foGUQRWEy5gwi9xCkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.328 [XNIO-1 task-1] Z5lM4JlOSAOqYxkVtQtuiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.328 [XNIO-1 task-1] Z5lM4JlOSAOqYxkVtQtuiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.329 [XNIO-1 task-1] Z5lM4JlOSAOqYxkVtQtuiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.360 [XNIO-1 task-1] S4NnuQqZTbKbbQpWD-bhrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4664f1ce +09:00:44.360 [XNIO-1 task-1] S4NnuQqZTbKbbQpWD-bhrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.360 [XNIO-1 task-1] S4NnuQqZTbKbbQpWD-bhrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.361 [XNIO-1 task-1] S4NnuQqZTbKbbQpWD-bhrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4664f1ce +09:00:44.381 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:84fa5125 +09:00:44.386 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:84fa5125 +09:00:44.423 [XNIO-1 task-1] -ToUgiKkQF2jKllUEq6_aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.423 [XNIO-1 task-1] -ToUgiKkQF2jKllUEq6_aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.424 [XNIO-1 task-1] -ToUgiKkQF2jKllUEq6_aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.432 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d3a2fe19 +09:00:44.444 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:44.451 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:84fa5125 +09:00:44.483 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8abc872a-a9e8-48ef-8035-d514e8a14e8b +09:00:44.486 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8abc872a-a9e8-48ef-8035-d514e8a14e8b +09:00:44.504 [XNIO-1 task-1] Xbzo2IX9TAa7GSoUO9pUYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/29588fd2 +09:00:44.504 [XNIO-1 task-1] Xbzo2IX9TAa7GSoUO9pUYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.505 [XNIO-1 task-1] Xbzo2IX9TAa7GSoUO9pUYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.505 [XNIO-1 task-1] Xbzo2IX9TAa7GSoUO9pUYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/29588fd2 +09:00:44.510 [XNIO-1 task-1] qnQ51ipSSvGNZ-teWJhscQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.511 [XNIO-1 task-1] qnQ51ipSSvGNZ-teWJhscQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.511 [XNIO-1 task-1] qnQ51ipSSvGNZ-teWJhscQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.518 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:84fa5125 +09:00:44.545 [XNIO-1 task-1] C7Wl9IT5SkuU6E4nQv8pMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.545 [XNIO-1 task-1] C7Wl9IT5SkuU6E4nQv8pMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.546 [XNIO-1 task-1] C7Wl9IT5SkuU6E4nQv8pMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.597 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/107cf4c7, base path is set to: null +09:00:44.597 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.598 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.598 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:44.598 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/107cf4c7, base path is set to: null +09:00:44.599 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG com.networknt.schema.TypeValidator debug - validate( "107cf4c7", "107cf4c7", userId) +09:00:44.599 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c3cffbd0-cd59-4608-9275-dcc550b8dfe2","newPassword":"0c42fe22-f24c-4211-865e-e53155ee3080","newPasswordConfirm":"0c42fe22-f24c-4211-865e-e53155ee3080"}, {"password":"c3cffbd0-cd59-4608-9275-dcc550b8dfe2","newPassword":"0c42fe22-f24c-4211-865e-e53155ee3080","newPasswordConfirm":"0c42fe22-f24c-4211-865e-e53155ee3080"}, requestBody) +09:00:44.599 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG com.networknt.schema.TypeValidator debug - validate( "0c42fe22-f24c-4211-865e-e53155ee3080", {"password":"c3cffbd0-cd59-4608-9275-dcc550b8dfe2","newPassword":"0c42fe22-f24c-4211-865e-e53155ee3080","newPasswordConfirm":"0c42fe22-f24c-4211-865e-e53155ee3080"}, requestBody.newPasswordConfirm) +09:00:44.599 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG com.networknt.schema.TypeValidator debug - validate( "c3cffbd0-cd59-4608-9275-dcc550b8dfe2", {"password":"c3cffbd0-cd59-4608-9275-dcc550b8dfe2","newPassword":"0c42fe22-f24c-4211-865e-e53155ee3080","newPasswordConfirm":"0c42fe22-f24c-4211-865e-e53155ee3080"}, requestBody.password) +09:00:44.599 [XNIO-1 task-1] y1SfCpekRpak9ikCdcDOvg DEBUG com.networknt.schema.TypeValidator debug - validate( "0c42fe22-f24c-4211-865e-e53155ee3080", {"password":"c3cffbd0-cd59-4608-9275-dcc550b8dfe2","newPassword":"0c42fe22-f24c-4211-865e-e53155ee3080","newPasswordConfirm":"0c42fe22-f24c-4211-865e-e53155ee3080"}, requestBody.newPassword) +09:00:44.628 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:12557c97-5969-4663-8ee7-bd88d2c47801 +09:00:44.634 [XNIO-1 task-1] J93UgRkPQcy7cl6f1TS3VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/107cf4c7, base path is set to: null +09:00:44.635 [XNIO-1 task-1] J93UgRkPQcy7cl6f1TS3VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.635 [XNIO-1 task-1] J93UgRkPQcy7cl6f1TS3VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.636 [XNIO-1 task-1] J93UgRkPQcy7cl6f1TS3VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/107cf4c7, base path is set to: null +09:00:44.636 [XNIO-1 task-1] J93UgRkPQcy7cl6f1TS3VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "107cf4c7", "107cf4c7", userId) +09:00:44.663 [XNIO-1 task-1] 2evDS7KuRaKuVGHoP-0B1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.663 [XNIO-1 task-1] 2evDS7KuRaKuVGHoP-0B1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.663 [XNIO-1 task-1] 2evDS7KuRaKuVGHoP-0B1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.683 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/881fe0d7, base path is set to: null +09:00:44.683 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.684 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.684 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:44.684 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/881fe0d7, base path is set to: null +09:00:44.684 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG com.networknt.schema.TypeValidator debug - validate( "881fe0d7", "881fe0d7", userId) +09:00:44.685 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5c57d100-07f3-41b3-8601-f24206e1f6fe","newPassword":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPasswordConfirm":"3e0fca51-37e9-4e5c-bf5b-51c239978f84"}, {"password":"5c57d100-07f3-41b3-8601-f24206e1f6fe","newPassword":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPasswordConfirm":"3e0fca51-37e9-4e5c-bf5b-51c239978f84"}, requestBody) +09:00:44.685 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e0fca51-37e9-4e5c-bf5b-51c239978f84", {"password":"5c57d100-07f3-41b3-8601-f24206e1f6fe","newPassword":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPasswordConfirm":"3e0fca51-37e9-4e5c-bf5b-51c239978f84"}, requestBody.newPasswordConfirm) +09:00:44.685 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c57d100-07f3-41b3-8601-f24206e1f6fe", {"password":"5c57d100-07f3-41b3-8601-f24206e1f6fe","newPassword":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPasswordConfirm":"3e0fca51-37e9-4e5c-bf5b-51c239978f84"}, requestBody.password) +09:00:44.685 [XNIO-1 task-1] sWtF8ZB-R1e7A7yAxmHvcw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e0fca51-37e9-4e5c-bf5b-51c239978f84", {"password":"5c57d100-07f3-41b3-8601-f24206e1f6fe","newPassword":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPasswordConfirm":"3e0fca51-37e9-4e5c-bf5b-51c239978f84"}, requestBody.newPassword) +09:00:44.706 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:54f1d307-0acf-4caa-a11b-b4c026bce421 +09:00:44.709 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:54f1d307-0acf-4caa-a11b-b4c026bce421 +09:00:44.754 [XNIO-1 task-1] L99polQ3TtukrlWoeTazPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.754 [XNIO-1 task-1] L99polQ3TtukrlWoeTazPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.755 [XNIO-1 task-1] L99polQ3TtukrlWoeTazPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.755 [XNIO-1 task-1] L99polQ3TtukrlWoeTazPA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.764 [XNIO-1 task-1] 11rarT_FQwuntjcgznAyLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.764 [XNIO-1 task-1] 11rarT_FQwuntjcgznAyLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.764 [XNIO-1 task-1] 11rarT_FQwuntjcgznAyLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.764 [XNIO-1 task-1] 11rarT_FQwuntjcgznAyLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:44.774 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/881fe0d7 +09:00:44.774 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.774 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.774 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:44.775 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/881fe0d7 +09:00:44.776 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPassword":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9","newPasswordConfirm":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9"}, {"password":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPassword":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9","newPasswordConfirm":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9"}, requestBody) +09:00:44.776 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPassword":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9","newPasswordConfirm":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9"}, {"password":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPassword":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9","newPasswordConfirm":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9"}, requestBody) +09:00:44.776 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG com.networknt.schema.FormatValidator debug - validate( "79e10b43-0a16-4dcd-a0fc-07e4adc592e9", {"password":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPassword":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9","newPasswordConfirm":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9"}, requestBody.newPasswordConfirm) +09:00:44.777 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG com.networknt.schema.FormatValidator debug - validate( "3e0fca51-37e9-4e5c-bf5b-51c239978f84", {"password":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPassword":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9","newPasswordConfirm":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9"}, requestBody.password) +09:00:44.777 [XNIO-1 task-1] dmUWm3TySUetYeEsccrnrA DEBUG com.networknt.schema.FormatValidator debug - validate( "79e10b43-0a16-4dcd-a0fc-07e4adc592e9", {"password":"3e0fca51-37e9-4e5c-bf5b-51c239978f84","newPassword":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9","newPasswordConfirm":"79e10b43-0a16-4dcd-a0fc-07e4adc592e9"}, requestBody.newPassword) +09:00:44.802 [XNIO-1 task-1] S8L1hRkOQVaWDDAbgPiSVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/881fe0d7 +09:00:44.804 [XNIO-1 task-1] S8L1hRkOQVaWDDAbgPiSVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.804 [XNIO-1 task-1] S8L1hRkOQVaWDDAbgPiSVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.805 [XNIO-1 task-1] S8L1hRkOQVaWDDAbgPiSVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/881fe0d7, base path is set to: null +09:00:44.805 [XNIO-1 task-1] S8L1hRkOQVaWDDAbgPiSVw DEBUG com.networknt.schema.TypeValidator debug - validate( "881fe0d7", "881fe0d7", userId) +09:00:44.806 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ca11b76d-8a12-4ee0-9fe0-d3520540a5a6 +09:00:44.814 [XNIO-1 task-1] P05RBvkUTl-7cUxEAQy4kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/881fe0d7 +09:00:44.814 [XNIO-1 task-1] P05RBvkUTl-7cUxEAQy4kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.814 [XNIO-1 task-1] P05RBvkUTl-7cUxEAQy4kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.814 [XNIO-1 task-1] P05RBvkUTl-7cUxEAQy4kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/881fe0d7 +09:00:44.822 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bdf58a52-10d5-430c-bd77-97a0cea0c57f +09:00:44.824 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bdf58a52-10d5-430c-bd77-97a0cea0c57f +09:00:44.830 [XNIO-1 task-1] Qlrzq9HNQseKI1fxclXbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.831 [XNIO-1 task-1] Qlrzq9HNQseKI1fxclXbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.832 [XNIO-1 task-1] Qlrzq9HNQseKI1fxclXbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.845 [XNIO-1 task-1] ne-2C_0CRnm5fLVSwrPNLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/881fe0d7 +09:00:44.845 [XNIO-1 task-1] ne-2C_0CRnm5fLVSwrPNLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.845 [XNIO-1 task-1] ne-2C_0CRnm5fLVSwrPNLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.846 [XNIO-1 task-1] ne-2C_0CRnm5fLVSwrPNLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/881fe0d7 +09:00:44.850 [XNIO-1 task-1] _1kZJL2dT6CyKZ3jg4k0Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/881fe0d7, base path is set to: null +09:00:44.850 [XNIO-1 task-1] _1kZJL2dT6CyKZ3jg4k0Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.850 [XNIO-1 task-1] _1kZJL2dT6CyKZ3jg4k0Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:44.850 [XNIO-1 task-1] _1kZJL2dT6CyKZ3jg4k0Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/881fe0d7, base path is set to: null +09:00:44.852 [XNIO-1 task-1] _1kZJL2dT6CyKZ3jg4k0Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "881fe0d7", "881fe0d7", userId) +09:00:44.872 [XNIO-1 task-1] gSqhVHSfRSi4lMQ2dxHfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dd5a612f +09:00:44.873 [XNIO-1 task-1] gSqhVHSfRSi4lMQ2dxHfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.873 [XNIO-1 task-1] gSqhVHSfRSi4lMQ2dxHfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.874 [XNIO-1 task-1] gSqhVHSfRSi4lMQ2dxHfmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dd5a612f +09:00:44.880 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:54f1d307-0acf-4caa-a11b-b4c026bce421 +09:00:44.889 [XNIO-1 task-1] IYbB-n3TTyWbNaleL_I4vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4d8af7f9 +09:00:44.889 [XNIO-1 task-1] IYbB-n3TTyWbNaleL_I4vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.889 [XNIO-1 task-1] IYbB-n3TTyWbNaleL_I4vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.889 [XNIO-1 task-1] IYbB-n3TTyWbNaleL_I4vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4d8af7f9 +09:00:44.897 [XNIO-1 task-1] BIXs6-6zQuSsJ48MAuGX2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.897 [XNIO-1 task-1] BIXs6-6zQuSsJ48MAuGX2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.897 [XNIO-1 task-1] BIXs6-6zQuSsJ48MAuGX2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.928 [XNIO-1 task-1] Fi2P6WIeR26K_ZDKHvoB0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.929 [XNIO-1 task-1] Fi2P6WIeR26K_ZDKHvoB0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.929 [XNIO-1 task-1] Fi2P6WIeR26K_ZDKHvoB0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.956 [XNIO-1 task-1] V5W0YAe5RiqjcOXLDunW6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.957 [XNIO-1 task-1] V5W0YAe5RiqjcOXLDunW6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:44.958 [XNIO-1 task-1] V5W0YAe5RiqjcOXLDunW6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:44.966 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3372c4d4 +09:00:44.967 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3372c4d4 +09:00:44.976 [XNIO-1 task-1] 16IN9oQ7SaCSwUQu-Sm8uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.976 [XNIO-1 task-1] 16IN9oQ7SaCSwUQu-Sm8uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.976 [XNIO-1 task-1] 16IN9oQ7SaCSwUQu-Sm8uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.991 [XNIO-1 task-1] aAIXJzNnTSi614uBU3hFUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/29588fd2 +09:00:44.991 [XNIO-1 task-1] aAIXJzNnTSi614uBU3hFUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:44.991 [XNIO-1 task-1] aAIXJzNnTSi614uBU3hFUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:44.992 [XNIO-1 task-1] aAIXJzNnTSi614uBU3hFUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/29588fd2 +09:00:45.024 [XNIO-1 task-1] rorUacXCTnSmtkQVB4PIsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.025 [XNIO-1 task-1] rorUacXCTnSmtkQVB4PIsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.025 [XNIO-1 task-1] rorUacXCTnSmtkQVB4PIsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.034 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c2084fa8 +09:00:45.043 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c2084fa8 +09:00:45.058 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b88ef743 +09:00:45.058 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.058 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.058 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:45.058 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b88ef743 +09:00:45.059 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG com.networknt.schema.TypeValidator debug - validate( "b88ef743", "b88ef743", userId) +09:00:45.059 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d82d77f9-3c32-45b7-aa8d-04201703155f","newPassword":"ce769b74-9d92-43c6-9d16-ac822f2b7538","newPasswordConfirm":"ce769b74-9d92-43c6-9d16-ac822f2b7538"}, {"password":"d82d77f9-3c32-45b7-aa8d-04201703155f","newPassword":"ce769b74-9d92-43c6-9d16-ac822f2b7538","newPasswordConfirm":"ce769b74-9d92-43c6-9d16-ac822f2b7538"}, requestBody) +Jun 29, 2024 9:00:45 AM com.hazelcast.map.impl.operation.DeleteOperation +09:00:45.059 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce769b74-9d92-43c6-9d16-ac822f2b7538", {"password":"d82d77f9-3c32-45b7-aa8d-04201703155f","newPassword":"ce769b74-9d92-43c6-9d16-ac822f2b7538","newPasswordConfirm":"ce769b74-9d92-43c6-9d16-ac822f2b7538"}, requestBody.newPasswordConfirm) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +09:00:45.059 [XNIO-1 task-1] ozRBPzUDTK2NcPYDxocmkg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce769b74-9d92-43c6-9d16-ac822f2b7538", {"password":"d82d77f9-3c32-45b7-aa8d-04201703155f","newPassword":"ce769b74-9d92-43c6-9d16-ac822f2b7538","newPasswordConfirm":"ce769b74-9d92-43c6-9d16-ac822f2b7538"}, requestBody.newPassword) +09:00:45.061 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:45.076 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8ac4145e-86d5-44f5-90c6-c238c048fef1 +09:00:45.078 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8ac4145e-86d5-44f5-90c6-c238c048fef1 +09:00:45.083 [XNIO-1 task-1] H5yVjvHrRZuFYDeJ8Im1Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.083 [XNIO-1 task-1] H5yVjvHrRZuFYDeJ8Im1Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.083 [XNIO-1 task-1] H5yVjvHrRZuFYDeJ8Im1Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.115 [XNIO-1 task-1] HklUl4TIQ02RDDR9yu4NdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b88ef743 +09:00:45.115 [XNIO-1 task-1] HklUl4TIQ02RDDR9yu4NdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.115 [XNIO-1 task-1] HklUl4TIQ02RDDR9yu4NdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.115 [XNIO-1 task-1] HklUl4TIQ02RDDR9yu4NdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b88ef743 +09:00:45.133 [XNIO-1 task-1] 0Yshh5YpQjW-x6_9FaBzIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/64db91e2, base path is set to: null +09:00:45.134 [XNIO-1 task-1] 0Yshh5YpQjW-x6_9FaBzIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.134 [XNIO-1 task-1] 0Yshh5YpQjW-x6_9FaBzIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.134 [XNIO-1 task-1] 0Yshh5YpQjW-x6_9FaBzIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/64db91e2, base path is set to: null +09:00:45.134 [XNIO-1 task-1] 0Yshh5YpQjW-x6_9FaBzIg DEBUG com.networknt.schema.TypeValidator debug - validate( "64db91e2", "64db91e2", userId) +09:00:45.144 [XNIO-1 task-1] mlccvwhpQMOKFDOttxXQyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.144 [XNIO-1 task-1] mlccvwhpQMOKFDOttxXQyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.144 [XNIO-1 task-1] mlccvwhpQMOKFDOttxXQyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.145 [XNIO-1 task-1] mlccvwhpQMOKFDOttxXQyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.152 [XNIO-1 task-1] 0B9DBATfSDSp_yQqKQ3dtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.152 [XNIO-1 task-1] 0B9DBATfSDSp_yQqKQ3dtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.152 [XNIO-1 task-1] 0B9DBATfSDSp_yQqKQ3dtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.154 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:84fa5125 +09:00:45.170 [XNIO-1 task-1] lLlv8e49S1eMgKSAaorLCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.170 [XNIO-1 task-1] lLlv8e49S1eMgKSAaorLCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.170 [XNIO-1 task-1] lLlv8e49S1eMgKSAaorLCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.172 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3372c4d4 +09:00:45.188 [XNIO-1 task-1] 0m2S59gHR6uadrKfhmm4lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.188 [XNIO-1 task-1] 0m2S59gHR6uadrKfhmm4lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.189 [XNIO-1 task-1] 0m2S59gHR6uadrKfhmm4lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.189 [XNIO-1 task-1] 0m2S59gHR6uadrKfhmm4lQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.197 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c9c397ce +09:00:45.197 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.197 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.197 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:45.198 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c9c397ce +09:00:45.198 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c2ad1308-c189-4dde-96c9-9934fa0e91ba","newPassword":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPasswordConfirm":"e7a4459f-6632-4976-95fd-3b78041a0f3d"}, {"password":"c2ad1308-c189-4dde-96c9-9934fa0e91ba","newPassword":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPasswordConfirm":"e7a4459f-6632-4976-95fd-3b78041a0f3d"}, requestBody) +09:00:45.199 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c2ad1308-c189-4dde-96c9-9934fa0e91ba","newPassword":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPasswordConfirm":"e7a4459f-6632-4976-95fd-3b78041a0f3d"}, {"password":"c2ad1308-c189-4dde-96c9-9934fa0e91ba","newPassword":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPasswordConfirm":"e7a4459f-6632-4976-95fd-3b78041a0f3d"}, requestBody) +09:00:45.199 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG com.networknt.schema.FormatValidator debug - validate( "e7a4459f-6632-4976-95fd-3b78041a0f3d", {"password":"c2ad1308-c189-4dde-96c9-9934fa0e91ba","newPassword":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPasswordConfirm":"e7a4459f-6632-4976-95fd-3b78041a0f3d"}, requestBody.newPasswordConfirm) +09:00:45.199 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG com.networknt.schema.FormatValidator debug - validate( "c2ad1308-c189-4dde-96c9-9934fa0e91ba", {"password":"c2ad1308-c189-4dde-96c9-9934fa0e91ba","newPassword":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPasswordConfirm":"e7a4459f-6632-4976-95fd-3b78041a0f3d"}, requestBody.password) +09:00:45.199 [XNIO-1 task-1] 8C1q1G5lTh2Ff8V53B0iMA DEBUG com.networknt.schema.FormatValidator debug - validate( "e7a4459f-6632-4976-95fd-3b78041a0f3d", {"password":"c2ad1308-c189-4dde-96c9-9934fa0e91ba","newPassword":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPasswordConfirm":"e7a4459f-6632-4976-95fd-3b78041a0f3d"}, requestBody.newPassword) +09:00:45.226 [XNIO-1 task-1] _By2ukO9TkezaaUIqz1_tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/64db91e2 +09:00:45.226 [XNIO-1 task-1] _By2ukO9TkezaaUIqz1_tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.226 [XNIO-1 task-1] _By2ukO9TkezaaUIqz1_tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.226 [XNIO-1 task-1] _By2ukO9TkezaaUIqz1_tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/64db91e2, base path is set to: null +09:00:45.226 [XNIO-1 task-1] _By2ukO9TkezaaUIqz1_tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "64db91e2", "64db91e2", userId) +09:00:45.244 [XNIO-1 task-1] _1Jz4IE3QL-HRmL5Uw9EyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.245 [XNIO-1 task-1] _1Jz4IE3QL-HRmL5Uw9EyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.245 [XNIO-1 task-1] _1Jz4IE3QL-HRmL5Uw9EyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.250 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c1a3e24b-7df0-4043-8832-67842b07e3f0 +09:00:45.257 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:474e3ca9 +09:00:45.259 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:474e3ca9 +09:00:45.270 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4d8af7f9 +09:00:45.270 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.270 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.270 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:45.271 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4d8af7f9 +09:00:45.272 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"352cb350-d050-4766-81d1-bf96ed2e8f6a","newPassword":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPasswordConfirm":"c7d317a7-166c-4b55-b769-b347f4fcf2a6"}, {"password":"352cb350-d050-4766-81d1-bf96ed2e8f6a","newPassword":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPasswordConfirm":"c7d317a7-166c-4b55-b769-b347f4fcf2a6"}, requestBody) +09:00:45.272 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"352cb350-d050-4766-81d1-bf96ed2e8f6a","newPassword":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPasswordConfirm":"c7d317a7-166c-4b55-b769-b347f4fcf2a6"}, {"password":"352cb350-d050-4766-81d1-bf96ed2e8f6a","newPassword":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPasswordConfirm":"c7d317a7-166c-4b55-b769-b347f4fcf2a6"}, requestBody) +09:00:45.272 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "c7d317a7-166c-4b55-b769-b347f4fcf2a6", {"password":"352cb350-d050-4766-81d1-bf96ed2e8f6a","newPassword":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPasswordConfirm":"c7d317a7-166c-4b55-b769-b347f4fcf2a6"}, requestBody.newPasswordConfirm) +09:00:45.273 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "352cb350-d050-4766-81d1-bf96ed2e8f6a", {"password":"352cb350-d050-4766-81d1-bf96ed2e8f6a","newPassword":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPasswordConfirm":"c7d317a7-166c-4b55-b769-b347f4fcf2a6"}, requestBody.password) +09:00:45.273 [XNIO-1 task-1] FEG_0YKSR9uGnqsxCl0E5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "c7d317a7-166c-4b55-b769-b347f4fcf2a6", {"password":"352cb350-d050-4766-81d1-bf96ed2e8f6a","newPassword":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPasswordConfirm":"c7d317a7-166c-4b55-b769-b347f4fcf2a6"}, requestBody.newPassword) +09:00:45.309 [XNIO-1 task-1] SpaG1jCUQkiatt9DnoYjyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.310 [XNIO-1 task-1] SpaG1jCUQkiatt9DnoYjyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.319 [XNIO-1 task-1] SpaG1jCUQkiatt9DnoYjyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.322 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:84fa5125 +09:00:45.352 [XNIO-1 task-1] 5iHmweeOQ1uSTStrwgnymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/474e3ca9 +09:00:45.352 [XNIO-1 task-1] 5iHmweeOQ1uSTStrwgnymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.352 [XNIO-1 task-1] 5iHmweeOQ1uSTStrwgnymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.353 [XNIO-1 task-1] 5iHmweeOQ1uSTStrwgnymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/474e3ca9 +09:00:45.354 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:474e3ca9 +09:00:45.380 [XNIO-1 task-1] 2OAW6zC_RZu851wbaj-Trw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/feedc418 +09:00:45.380 [XNIO-1 task-1] 2OAW6zC_RZu851wbaj-Trw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.380 [XNIO-1 task-1] 2OAW6zC_RZu851wbaj-Trw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.380 [XNIO-1 task-1] 2OAW6zC_RZu851wbaj-Trw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/feedc418 +09:00:45.393 [XNIO-1 task-1] J9se8ZKlRTSAt8oye8IzTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.393 [XNIO-1 task-1] J9se8ZKlRTSAt8oye8IzTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.393 [XNIO-1 task-1] J9se8ZKlRTSAt8oye8IzTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.394 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c2084fa8 +09:00:45.405 [XNIO-1 task-1] OvQWdDuiSiWBzpeyIJzP4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.405 [XNIO-1 task-1] OvQWdDuiSiWBzpeyIJzP4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.405 [XNIO-1 task-1] OvQWdDuiSiWBzpeyIJzP4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.426 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c9c397ce, base path is set to: null +09:00:45.428 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.428 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.428 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:45.429 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c9c397ce, base path is set to: null +09:00:45.429 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG com.networknt.schema.TypeValidator debug - validate( "c9c397ce", "c9c397ce", userId) +09:00:45.431 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPassword":"a9456eca-516f-417d-8e04-ba9a80189347","newPasswordConfirm":"a9456eca-516f-417d-8e04-ba9a80189347"}, {"password":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPassword":"a9456eca-516f-417d-8e04-ba9a80189347","newPasswordConfirm":"a9456eca-516f-417d-8e04-ba9a80189347"}, requestBody) +09:00:45.431 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG com.networknt.schema.TypeValidator debug - validate( "a9456eca-516f-417d-8e04-ba9a80189347", {"password":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPassword":"a9456eca-516f-417d-8e04-ba9a80189347","newPasswordConfirm":"a9456eca-516f-417d-8e04-ba9a80189347"}, requestBody.newPasswordConfirm) +09:00:45.431 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG com.networknt.schema.TypeValidator debug - validate( "e7a4459f-6632-4976-95fd-3b78041a0f3d", {"password":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPassword":"a9456eca-516f-417d-8e04-ba9a80189347","newPasswordConfirm":"a9456eca-516f-417d-8e04-ba9a80189347"}, requestBody.password) +09:00:45.431 [XNIO-1 task-1] lABlxgmhRhGLMRXu9g2s3w DEBUG com.networknt.schema.TypeValidator debug - validate( "a9456eca-516f-417d-8e04-ba9a80189347", {"password":"e7a4459f-6632-4976-95fd-3b78041a0f3d","newPassword":"a9456eca-516f-417d-8e04-ba9a80189347","newPasswordConfirm":"a9456eca-516f-417d-8e04-ba9a80189347"}, requestBody.newPassword) +09:00:45.462 [XNIO-1 task-1] gATlKUHRSK25Odqs5kjdnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.462 [XNIO-1 task-1] gATlKUHRSK25Odqs5kjdnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.462 [XNIO-1 task-1] gATlKUHRSK25Odqs5kjdnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.463 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c2084fa8 +09:00:45.486 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c9c397ce, base path is set to: null +09:00:45.486 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.486 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.486 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:45.487 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c9c397ce, base path is set to: null +09:00:45.487 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG com.networknt.schema.TypeValidator debug - validate( "c9c397ce", "c9c397ce", userId) +09:00:45.488 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a9456eca-516f-417d-8e04-ba9a80189347","newPassword":"51d246c2-2175-4006-bf4c-5b85b5ab9e56","newPasswordConfirm":"51d246c2-2175-4006-bf4c-5b85b5ab9e56"}, {"password":"a9456eca-516f-417d-8e04-ba9a80189347","newPassword":"51d246c2-2175-4006-bf4c-5b85b5ab9e56","newPasswordConfirm":"51d246c2-2175-4006-bf4c-5b85b5ab9e56"}, requestBody) +09:00:45.488 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG com.networknt.schema.TypeValidator debug - validate( "51d246c2-2175-4006-bf4c-5b85b5ab9e56", {"password":"a9456eca-516f-417d-8e04-ba9a80189347","newPassword":"51d246c2-2175-4006-bf4c-5b85b5ab9e56","newPasswordConfirm":"51d246c2-2175-4006-bf4c-5b85b5ab9e56"}, requestBody.newPasswordConfirm) +09:00:45.488 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG com.networknt.schema.TypeValidator debug - validate( "a9456eca-516f-417d-8e04-ba9a80189347", {"password":"a9456eca-516f-417d-8e04-ba9a80189347","newPassword":"51d246c2-2175-4006-bf4c-5b85b5ab9e56","newPasswordConfirm":"51d246c2-2175-4006-bf4c-5b85b5ab9e56"}, requestBody.password) +09:00:45.488 [XNIO-1 task-1] _um2STXaStuoYaNlXFw4iw DEBUG com.networknt.schema.TypeValidator debug - validate( "51d246c2-2175-4006-bf4c-5b85b5ab9e56", {"password":"a9456eca-516f-417d-8e04-ba9a80189347","newPassword":"51d246c2-2175-4006-bf4c-5b85b5ab9e56","newPasswordConfirm":"51d246c2-2175-4006-bf4c-5b85b5ab9e56"}, requestBody.newPassword) +09:00:45.527 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c2084fa8, base path is set to: null +09:00:45.527 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.527 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.527 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:45.528 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c2084fa8, base path is set to: null +09:00:45.528 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c2084fa8", "c2084fa8", userId) +09:00:45.528 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2c615d1f-66f7-48ac-aca5-2e99fcad90ca","newPassword":"d39828ec-ead4-4a30-b9dc-5dc5e50de759","newPasswordConfirm":"d39828ec-ead4-4a30-b9dc-5dc5e50de759"}, {"password":"2c615d1f-66f7-48ac-aca5-2e99fcad90ca","newPassword":"d39828ec-ead4-4a30-b9dc-5dc5e50de759","newPasswordConfirm":"d39828ec-ead4-4a30-b9dc-5dc5e50de759"}, requestBody) +09:00:45.528 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d39828ec-ead4-4a30-b9dc-5dc5e50de759", {"password":"2c615d1f-66f7-48ac-aca5-2e99fcad90ca","newPassword":"d39828ec-ead4-4a30-b9dc-5dc5e50de759","newPasswordConfirm":"d39828ec-ead4-4a30-b9dc-5dc5e50de759"}, requestBody.newPasswordConfirm) +09:00:45.528 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2c615d1f-66f7-48ac-aca5-2e99fcad90ca", {"password":"2c615d1f-66f7-48ac-aca5-2e99fcad90ca","newPassword":"d39828ec-ead4-4a30-b9dc-5dc5e50de759","newPasswordConfirm":"d39828ec-ead4-4a30-b9dc-5dc5e50de759"}, requestBody.password) +09:00:45.529 [XNIO-1 task-1] sM5-Qu3bS8KgRzweueHlQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d39828ec-ead4-4a30-b9dc-5dc5e50de759", {"password":"2c615d1f-66f7-48ac-aca5-2e99fcad90ca","newPassword":"d39828ec-ead4-4a30-b9dc-5dc5e50de759","newPasswordConfirm":"d39828ec-ead4-4a30-b9dc-5dc5e50de759"}, requestBody.newPassword) +09:00:45.544 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c2084fa8 +09:00:45.555 [XNIO-1 task-1] 1NuLw0IjSUilyivtL3uO2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c2084fa8, base path is set to: null +09:00:45.555 [XNIO-1 task-1] 1NuLw0IjSUilyivtL3uO2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.555 [XNIO-1 task-1] 1NuLw0IjSUilyivtL3uO2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.556 [XNIO-1 task-1] 1NuLw0IjSUilyivtL3uO2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c2084fa8, base path is set to: null +09:00:45.556 [XNIO-1 task-1] 1NuLw0IjSUilyivtL3uO2w DEBUG com.networknt.schema.TypeValidator debug - validate( "c2084fa8", "c2084fa8", userId) +09:00:45.568 [XNIO-1 task-1] ivHNSFC3SReGeajmHxUtvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.569 [XNIO-1 task-1] ivHNSFC3SReGeajmHxUtvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.569 [XNIO-1 task-1] ivHNSFC3SReGeajmHxUtvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.605 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1ac8256b-3eee-4c25-9c34-76958f78b1ad +09:00:45.606 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60d421cf +09:00:45.606 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.606 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.606 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:45.607 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60d421cf +09:00:45.608 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2dea22ff-8d9e-40e9-a8c1-ee21f3d03853","newPassword":"7b25f48e-b1a9-4913-b56a-f7c42c376955","newPasswordConfirm":"7b25f48e-b1a9-4913-b56a-f7c42c376955"}, {"password":"2dea22ff-8d9e-40e9-a8c1-ee21f3d03853","newPassword":"7b25f48e-b1a9-4913-b56a-f7c42c376955","newPasswordConfirm":"7b25f48e-b1a9-4913-b56a-f7c42c376955"}, requestBody) +09:00:45.608 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2dea22ff-8d9e-40e9-a8c1-ee21f3d03853","newPassword":"7b25f48e-b1a9-4913-b56a-f7c42c376955","newPasswordConfirm":"7b25f48e-b1a9-4913-b56a-f7c42c376955"}, {"password":"2dea22ff-8d9e-40e9-a8c1-ee21f3d03853","newPassword":"7b25f48e-b1a9-4913-b56a-f7c42c376955","newPasswordConfirm":"7b25f48e-b1a9-4913-b56a-f7c42c376955"}, requestBody) +09:00:45.608 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG com.networknt.schema.FormatValidator debug - validate( "7b25f48e-b1a9-4913-b56a-f7c42c376955", {"password":"2dea22ff-8d9e-40e9-a8c1-ee21f3d03853","newPassword":"7b25f48e-b1a9-4913-b56a-f7c42c376955","newPasswordConfirm":"7b25f48e-b1a9-4913-b56a-f7c42c376955"}, requestBody.newPasswordConfirm) +09:00:45.608 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG com.networknt.schema.FormatValidator debug - validate( "2dea22ff-8d9e-40e9-a8c1-ee21f3d03853", {"password":"2dea22ff-8d9e-40e9-a8c1-ee21f3d03853","newPassword":"7b25f48e-b1a9-4913-b56a-f7c42c376955","newPasswordConfirm":"7b25f48e-b1a9-4913-b56a-f7c42c376955"}, requestBody.password) +09:00:45.608 [XNIO-1 task-1] IlWJc-xaSTunJ5YjXWDfJw DEBUG com.networknt.schema.FormatValidator debug - validate( "7b25f48e-b1a9-4913-b56a-f7c42c376955", {"password":"2dea22ff-8d9e-40e9-a8c1-ee21f3d03853","newPassword":"7b25f48e-b1a9-4913-b56a-f7c42c376955","newPasswordConfirm":"7b25f48e-b1a9-4913-b56a-f7c42c376955"}, requestBody.newPassword) +09:00:45.610 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1ac8256b-3eee-4c25-9c34-76958f78b1ad +09:00:45.636 [XNIO-1 task-1] lUy-W9dhTrOE8TXyhVTnKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.636 [XNIO-1 task-1] lUy-W9dhTrOE8TXyhVTnKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.636 [XNIO-1 task-1] lUy-W9dhTrOE8TXyhVTnKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.667 [XNIO-1 task-1] 0yAlKhuyTM--V_9JP-yHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3372c4d4 +09:00:45.667 [XNIO-1 task-1] 0yAlKhuyTM--V_9JP-yHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.667 [XNIO-1 task-1] 0yAlKhuyTM--V_9JP-yHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.667 [XNIO-1 task-1] 0yAlKhuyTM--V_9JP-yHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3372c4d4 +09:00:45.668 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3372c4d4 +09:00:45.684 [XNIO-1 task-1] 9sN6Bq95RcGLQ94QsD94Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9c397ce, base path is set to: null +09:00:45.685 [XNIO-1 task-1] 9sN6Bq95RcGLQ94QsD94Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.685 [XNIO-1 task-1] 9sN6Bq95RcGLQ94QsD94Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.685 [XNIO-1 task-1] 9sN6Bq95RcGLQ94QsD94Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9c397ce, base path is set to: null +09:00:45.685 [XNIO-1 task-1] 9sN6Bq95RcGLQ94QsD94Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "c9c397ce", "c9c397ce", userId) +09:00:45.686 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:509a86c2 +09:00:45.696 [XNIO-1 task-1] DQ88GzDpRk-I7AmDIkCYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4d8af7f9 +09:00:45.696 [XNIO-1 task-1] DQ88GzDpRk-I7AmDIkCYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.696 [XNIO-1 task-1] DQ88GzDpRk-I7AmDIkCYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.696 [XNIO-1 task-1] DQ88GzDpRk-I7AmDIkCYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4d8af7f9 +09:00:45.714 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1556fe4-1d14-4ebd-8f1c-2bf22abf1b44 +09:00:45.716 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1556fe4-1d14-4ebd-8f1c-2bf22abf1b44 +09:00:45.720 [XNIO-1 task-1] ZFyduzklRziSC4ssN_hZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/78ca6d62 +09:00:45.721 [XNIO-1 task-1] ZFyduzklRziSC4ssN_hZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.721 [XNIO-1 task-1] ZFyduzklRziSC4ssN_hZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.721 [XNIO-1 task-1] ZFyduzklRziSC4ssN_hZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/78ca6d62 +09:00:45.733 [XNIO-1 task-1] 1GVLwO7fQKum23A3jJ6vPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.733 [XNIO-1 task-1] 1GVLwO7fQKum23A3jJ6vPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.733 [XNIO-1 task-1] 1GVLwO7fQKum23A3jJ6vPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.744 [XNIO-1 task-1] dtS1PCqWSJOJmKJc8M9ZaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4d8af7f9, base path is set to: null +09:00:45.745 [XNIO-1 task-1] dtS1PCqWSJOJmKJc8M9ZaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.745 [XNIO-1 task-1] dtS1PCqWSJOJmKJc8M9ZaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.745 [XNIO-1 task-1] dtS1PCqWSJOJmKJc8M9ZaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4d8af7f9, base path is set to: null +09:00:45.745 [XNIO-1 task-1] dtS1PCqWSJOJmKJc8M9ZaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d8af7f9", "4d8af7f9", userId) +09:00:45.753 [XNIO-1 task-1] rExpY5EEQS2w_wB6fNKCxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60d421cf, base path is set to: null +09:00:45.754 [XNIO-1 task-1] rExpY5EEQS2w_wB6fNKCxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.754 [XNIO-1 task-1] rExpY5EEQS2w_wB6fNKCxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.754 [XNIO-1 task-1] rExpY5EEQS2w_wB6fNKCxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60d421cf, base path is set to: null +09:00:45.755 [XNIO-1 task-1] rExpY5EEQS2w_wB6fNKCxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60d421cf", "60d421cf", userId) +09:00:45.759 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:18cd7c1f-2da2-4fbc-9dff-fe05f880af98 +09:00:45.762 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a4806a3-ed50-4741-b81c-64b26ae10fcb +09:00:45.766 [XNIO-1 task-1] PtJqNo8XTPeRqtaqR4JGng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.766 [XNIO-1 task-1] PtJqNo8XTPeRqtaqR4JGng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.766 [XNIO-1 task-1] PtJqNo8XTPeRqtaqR4JGng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.788 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4d8af7f9 +09:00:45.788 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.788 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.788 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:45.789 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4d8af7f9 +09:00:45.795 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPassword":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPasswordConfirm":"b7c7bb7d-238f-4a55-8c66-76a25d07d374"}, {"password":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPassword":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPasswordConfirm":"b7c7bb7d-238f-4a55-8c66-76a25d07d374"}, requestBody) +09:00:45.796 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPassword":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPasswordConfirm":"b7c7bb7d-238f-4a55-8c66-76a25d07d374"}, {"password":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPassword":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPasswordConfirm":"b7c7bb7d-238f-4a55-8c66-76a25d07d374"}, requestBody) +09:00:45.796 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG com.networknt.schema.FormatValidator debug - validate( "b7c7bb7d-238f-4a55-8c66-76a25d07d374", {"password":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPassword":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPasswordConfirm":"b7c7bb7d-238f-4a55-8c66-76a25d07d374"}, requestBody.newPasswordConfirm) +09:00:45.796 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG com.networknt.schema.FormatValidator debug - validate( "c7d317a7-166c-4b55-b769-b347f4fcf2a6", {"password":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPassword":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPasswordConfirm":"b7c7bb7d-238f-4a55-8c66-76a25d07d374"}, requestBody.password) +09:00:45.798 [XNIO-1 task-1] g5MDzeWEQZa0CsIM5O-3AA DEBUG com.networknt.schema.FormatValidator debug - validate( "b7c7bb7d-238f-4a55-8c66-76a25d07d374", {"password":"c7d317a7-166c-4b55-b769-b347f4fcf2a6","newPassword":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPasswordConfirm":"b7c7bb7d-238f-4a55-8c66-76a25d07d374"}, requestBody.newPassword) +09:00:45.820 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4d8af7f9 +09:00:45.820 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.820 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:45.820 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:45.820 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4d8af7f9 +09:00:45.822 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPassword":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPasswordConfirm":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c"}, {"password":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPassword":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPasswordConfirm":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c"}, requestBody) +09:00:45.823 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPassword":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPasswordConfirm":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c"}, {"password":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPassword":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPasswordConfirm":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c"}, requestBody) +09:00:45.823 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG com.networknt.schema.FormatValidator debug - validate( "f8d915de-cab0-446b-bcb3-fbf1957ddf0c", {"password":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPassword":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPasswordConfirm":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c"}, requestBody.newPasswordConfirm) +09:00:45.823 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG com.networknt.schema.FormatValidator debug - validate( "b7c7bb7d-238f-4a55-8c66-76a25d07d374", {"password":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPassword":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPasswordConfirm":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c"}, requestBody.password) +09:00:45.824 [XNIO-1 task-1] d03pU1laTtub6b1b8KzOxg DEBUG com.networknt.schema.FormatValidator debug - validate( "f8d915de-cab0-446b-bcb3-fbf1957ddf0c", {"password":"b7c7bb7d-238f-4a55-8c66-76a25d07d374","newPassword":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPasswordConfirm":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c"}, requestBody.newPassword) +09:00:45.851 [XNIO-1 task-1] _d4RJtK0Q82AvnMiB6wecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.851 [XNIO-1 task-1] _d4RJtK0Q82AvnMiB6wecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.852 [XNIO-1 task-1] _d4RJtK0Q82AvnMiB6wecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.852 [XNIO-1 task-1] _d4RJtK0Q82AvnMiB6wecQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:45.858 [XNIO-1 task-1] Lj3XgdUWTg-KohmlGS4CoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.859 [XNIO-1 task-1] Lj3XgdUWTg-KohmlGS4CoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.859 [XNIO-1 task-1] Lj3XgdUWTg-KohmlGS4CoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.869 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:da083005-4547-4fe5-9e08-c37c96072073 +09:00:45.872 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4d8af7f9, base path is set to: null +09:00:45.873 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.873 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.874 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:45.874 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4d8af7f9, base path is set to: null +09:00:45.875 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG com.networknt.schema.TypeValidator debug - validate( "4d8af7f9", "4d8af7f9", userId) +09:00:45.875 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPassword":"e6224b65-bbb8-402a-a075-3a7f3b28526d","newPasswordConfirm":"e6224b65-bbb8-402a-a075-3a7f3b28526d"}, {"password":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPassword":"e6224b65-bbb8-402a-a075-3a7f3b28526d","newPasswordConfirm":"e6224b65-bbb8-402a-a075-3a7f3b28526d"}, requestBody) +09:00:45.875 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6224b65-bbb8-402a-a075-3a7f3b28526d", {"password":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPassword":"e6224b65-bbb8-402a-a075-3a7f3b28526d","newPasswordConfirm":"e6224b65-bbb8-402a-a075-3a7f3b28526d"}, requestBody.newPasswordConfirm) +09:00:45.875 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG com.networknt.schema.TypeValidator debug - validate( "f8d915de-cab0-446b-bcb3-fbf1957ddf0c", {"password":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPassword":"e6224b65-bbb8-402a-a075-3a7f3b28526d","newPasswordConfirm":"e6224b65-bbb8-402a-a075-3a7f3b28526d"}, requestBody.password) +09:00:45.875 [XNIO-1 task-1] 8eFhaYXQReGRTBeAMklIiw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6224b65-bbb8-402a-a075-3a7f3b28526d", {"password":"f8d915de-cab0-446b-bcb3-fbf1957ddf0c","newPassword":"e6224b65-bbb8-402a-a075-3a7f3b28526d","newPasswordConfirm":"e6224b65-bbb8-402a-a075-3a7f3b28526d"}, requestBody.newPassword) +09:00:45.908 [XNIO-1 task-1] fm6aCOxrRu6yqCLrSnQNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4d8af7f9, base path is set to: null +09:00:45.909 [XNIO-1 task-1] fm6aCOxrRu6yqCLrSnQNmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.909 [XNIO-1 task-1] fm6aCOxrRu6yqCLrSnQNmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.909 [XNIO-1 task-1] fm6aCOxrRu6yqCLrSnQNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4d8af7f9, base path is set to: null +09:00:45.909 [XNIO-1 task-1] fm6aCOxrRu6yqCLrSnQNmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d8af7f9", "4d8af7f9", userId) +09:00:45.919 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0a462541-0d80-4633-9918-2b0afb32af71 +09:00:45.920 [XNIO-1 task-1] 6FIL0ebuTLCj8256ZSTTpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.920 [XNIO-1 task-1] 6FIL0ebuTLCj8256ZSTTpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.921 [XNIO-1 task-1] 6FIL0ebuTLCj8256ZSTTpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.944 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0a462541-0d80-4633-9918-2b0afb32af71 +09:00:45.950 [XNIO-1 task-1] Pbpvy5N-QI6II69KqYfVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.950 [XNIO-1 task-1] Pbpvy5N-QI6II69KqYfVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.950 [XNIO-1 task-1] Pbpvy5N-QI6II69KqYfVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:45.970 [XNIO-1 task-1] RFVSD0uBTACU3n45z9ghrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/84fbf119, base path is set to: null +09:00:45.971 [XNIO-1 task-1] RFVSD0uBTACU3n45z9ghrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.971 [XNIO-1 task-1] RFVSD0uBTACU3n45z9ghrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:45.971 [XNIO-1 task-1] RFVSD0uBTACU3n45z9ghrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/84fbf119, base path is set to: null +09:00:45.971 [XNIO-1 task-1] RFVSD0uBTACU3n45z9ghrg DEBUG com.networknt.schema.TypeValidator debug - validate( "84fbf119", "84fbf119", userId) +09:00:45.985 [XNIO-1 task-1] aPaQKOiMSuClnsunnJvQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.986 [XNIO-1 task-1] aPaQKOiMSuClnsunnJvQ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:45.986 [XNIO-1 task-1] aPaQKOiMSuClnsunnJvQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:45.986 [XNIO-1 task-1] aPaQKOiMSuClnsunnJvQ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:45.992 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:18cd7c1f-2da2-4fbc-9dff-fe05f880af98 +09:00:46.002 [XNIO-1 task-1] jB2PaL4_RCKHn0LG_PQYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.002 [XNIO-1 task-1] jB2PaL4_RCKHn0LG_PQYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.002 [XNIO-1 task-1] jB2PaL4_RCKHn0LG_PQYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.003 [XNIO-1 task-1] jB2PaL4_RCKHn0LG_PQYJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.009 [XNIO-1 task-1] 2MdBCeD0Q4mMrc7NOotCiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.009 [XNIO-1 task-1] 2MdBCeD0Q4mMrc7NOotCiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.009 [XNIO-1 task-1] 2MdBCeD0Q4mMrc7NOotCiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.029 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:509a86c2 +09:00:46.039 [XNIO-1 task-1] 4LfCE44DTAOI-iMt7ec55A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.039 [XNIO-1 task-1] 4LfCE44DTAOI-iMt7ec55A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.040 [XNIO-1 task-1] 4LfCE44DTAOI-iMt7ec55A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.057 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/be40470f +09:00:46.057 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.057 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:46.057 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:46.058 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/be40470f +09:00:46.058 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e35333b5-a352-42a3-bff8-d0c0ddf42453","newPassword":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPasswordConfirm":"95e2985b-dae7-4b46-baf7-feacb1493d23"}, {"password":"e35333b5-a352-42a3-bff8-d0c0ddf42453","newPassword":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPasswordConfirm":"95e2985b-dae7-4b46-baf7-feacb1493d23"}, requestBody) +09:00:46.058 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e35333b5-a352-42a3-bff8-d0c0ddf42453","newPassword":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPasswordConfirm":"95e2985b-dae7-4b46-baf7-feacb1493d23"}, {"password":"e35333b5-a352-42a3-bff8-d0c0ddf42453","newPassword":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPasswordConfirm":"95e2985b-dae7-4b46-baf7-feacb1493d23"}, requestBody) +09:00:46.059 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG com.networknt.schema.FormatValidator debug - validate( "95e2985b-dae7-4b46-baf7-feacb1493d23", {"password":"e35333b5-a352-42a3-bff8-d0c0ddf42453","newPassword":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPasswordConfirm":"95e2985b-dae7-4b46-baf7-feacb1493d23"}, requestBody.newPasswordConfirm) +09:00:46.059 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG com.networknt.schema.FormatValidator debug - validate( "e35333b5-a352-42a3-bff8-d0c0ddf42453", {"password":"e35333b5-a352-42a3-bff8-d0c0ddf42453","newPassword":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPasswordConfirm":"95e2985b-dae7-4b46-baf7-feacb1493d23"}, requestBody.password) +09:00:46.059 [XNIO-1 task-1] opD7Rwv8QFGRV_OKJr4Y-g DEBUG com.networknt.schema.FormatValidator debug - validate( "95e2985b-dae7-4b46-baf7-feacb1493d23", {"password":"e35333b5-a352-42a3-bff8-d0c0ddf42453","newPassword":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPasswordConfirm":"95e2985b-dae7-4b46-baf7-feacb1493d23"}, requestBody.newPassword) +09:00:46.087 [XNIO-1 task-1] a0AZfhR3QvyyeuxM1UWpvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.088 [XNIO-1 task-1] a0AZfhR3QvyyeuxM1UWpvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.089 [XNIO-1 task-1] a0AZfhR3QvyyeuxM1UWpvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.089 [XNIO-1 task-1] a0AZfhR3QvyyeuxM1UWpvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.105 [XNIO-1 task-1] CUPncFSwRcyEVHD5YusW3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.105 [XNIO-1 task-1] CUPncFSwRcyEVHD5YusW3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.105 [XNIO-1 task-1] CUPncFSwRcyEVHD5YusW3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.106 [XNIO-1 task-1] CUPncFSwRcyEVHD5YusW3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.158 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/be40470f +09:00:46.158 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.158 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:46.158 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/be40470f, base path is set to: null +Jun 29, 2024 9:00:46 AM com.hazelcast.map.impl.operation.DeleteOperation +09:00:46.158 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG com.networknt.schema.TypeValidator debug - validate( "be40470f", "be40470f", userId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG com.networknt.schema.TypeValidator debug - validate( "d2688ccb-cc6f-43d1-8649-05b6fb36bdba", {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody.newPasswordConfirm) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG com.networknt.schema.FormatValidator debug - validate( "d2688ccb-cc6f-43d1-8649-05b6fb36bdba", {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody.newPasswordConfirm) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG com.networknt.schema.TypeValidator debug - validate( "95e2985b-dae7-4b46-baf7-feacb1493d23", {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody.password) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG com.networknt.schema.FormatValidator debug - validate( "95e2985b-dae7-4b46-baf7-feacb1493d23", {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody.password) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG com.networknt.schema.TypeValidator debug - validate( "d2688ccb-cc6f-43d1-8649-05b6fb36bdba", {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody.newPassword) +09:00:46.160 [XNIO-1 task-1] jAL8hTCRTLCaYdioKiQgHg DEBUG com.networknt.schema.FormatValidator debug - validate( "d2688ccb-cc6f-43d1-8649-05b6fb36bdba", {"password":"95e2985b-dae7-4b46-baf7-feacb1493d23","newPassword":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba","newPasswordConfirm":"d2688ccb-cc6f-43d1-8649-05b6fb36bdba"}, requestBody.newPassword) +09:00:46.163 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bfc60134-fb55-4945-9780-5f603a2668fb + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:00:46.188 [XNIO-1 task-1] SL7TjIb6T1SorhpB0PKBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.188 [XNIO-1 task-1] SL7TjIb6T1SorhpB0PKBbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.188 [XNIO-1 task-1] SL7TjIb6T1SorhpB0PKBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.220 [XNIO-1 task-1] ljTU6Fn9TgyGpQBuh5YbQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.220 [XNIO-1 task-1] ljTU6Fn9TgyGpQBuh5YbQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.220 [XNIO-1 task-1] ljTU6Fn9TgyGpQBuh5YbQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.230 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:10438bce +09:00:46.231 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:10438bce +09:00:46.247 [XNIO-1 task-1] q1_XNgJJR-2fVdjZelTC2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.247 [XNIO-1 task-1] q1_XNgJJR-2fVdjZelTC2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.248 [XNIO-1 task-1] q1_XNgJJR-2fVdjZelTC2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.273 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a7a2b683, base path is set to: null +09:00:46.276 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.276 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.276 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:46.276 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a7a2b683, base path is set to: null +09:00:46.277 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a7a2b683", "a7a2b683", userId) +09:00:46.277 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f2916092-690c-4051-b518-2893f9e03020","newPassword":"3b4f001f-4d91-43fb-aae8-65b34a9f643e","newPasswordConfirm":"3b4f001f-4d91-43fb-aae8-65b34a9f643e"}, {"password":"f2916092-690c-4051-b518-2893f9e03020","newPassword":"3b4f001f-4d91-43fb-aae8-65b34a9f643e","newPasswordConfirm":"3b4f001f-4d91-43fb-aae8-65b34a9f643e"}, requestBody) +09:00:46.277 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3b4f001f-4d91-43fb-aae8-65b34a9f643e", {"password":"f2916092-690c-4051-b518-2893f9e03020","newPassword":"3b4f001f-4d91-43fb-aae8-65b34a9f643e","newPasswordConfirm":"3b4f001f-4d91-43fb-aae8-65b34a9f643e"}, requestBody.newPasswordConfirm) +09:00:46.278 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f2916092-690c-4051-b518-2893f9e03020", {"password":"f2916092-690c-4051-b518-2893f9e03020","newPassword":"3b4f001f-4d91-43fb-aae8-65b34a9f643e","newPasswordConfirm":"3b4f001f-4d91-43fb-aae8-65b34a9f643e"}, requestBody.password) +09:00:46.278 [XNIO-1 task-1] Q3r1lS_uToKA7gZfhD3Z3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3b4f001f-4d91-43fb-aae8-65b34a9f643e", {"password":"f2916092-690c-4051-b518-2893f9e03020","newPassword":"3b4f001f-4d91-43fb-aae8-65b34a9f643e","newPasswordConfirm":"3b4f001f-4d91-43fb-aae8-65b34a9f643e"}, requestBody.newPassword) +09:00:46.303 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:72471331-11b7-426d-9b59-01ce1cb933c9 +09:00:46.311 [XNIO-1 task-1] LDp0FRuQRbuVYe_Www057Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.311 [XNIO-1 task-1] LDp0FRuQRbuVYe_Www057Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.312 [XNIO-1 task-1] LDp0FRuQRbuVYe_Www057Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.313 [XNIO-1 task-1] LDp0FRuQRbuVYe_Www057Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.323 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/10438bce, base path is set to: null +09:00:46.324 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.324 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.324 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:46.324 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/10438bce, base path is set to: null +09:00:46.325 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG com.networknt.schema.TypeValidator debug - validate( "10438bce", "10438bce", userId) +09:00:46.325 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"18867f84-639f-4053-bf38-6dbcf5bf8993","newPassword":"f6d71940-09e9-43c0-9fb6-371ab594105e","newPasswordConfirm":"f6d71940-09e9-43c0-9fb6-371ab594105e"}, {"password":"18867f84-639f-4053-bf38-6dbcf5bf8993","newPassword":"f6d71940-09e9-43c0-9fb6-371ab594105e","newPasswordConfirm":"f6d71940-09e9-43c0-9fb6-371ab594105e"}, requestBody) +09:00:46.325 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6d71940-09e9-43c0-9fb6-371ab594105e", {"password":"18867f84-639f-4053-bf38-6dbcf5bf8993","newPassword":"f6d71940-09e9-43c0-9fb6-371ab594105e","newPasswordConfirm":"f6d71940-09e9-43c0-9fb6-371ab594105e"}, requestBody.newPasswordConfirm) +09:00:46.325 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG com.networknt.schema.TypeValidator debug - validate( "18867f84-639f-4053-bf38-6dbcf5bf8993", {"password":"18867f84-639f-4053-bf38-6dbcf5bf8993","newPassword":"f6d71940-09e9-43c0-9fb6-371ab594105e","newPasswordConfirm":"f6d71940-09e9-43c0-9fb6-371ab594105e"}, requestBody.password) +09:00:46.325 [XNIO-1 task-1] VurlPBbrQLWPOZZZeY_NtA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6d71940-09e9-43c0-9fb6-371ab594105e", {"password":"18867f84-639f-4053-bf38-6dbcf5bf8993","newPassword":"f6d71940-09e9-43c0-9fb6-371ab594105e","newPasswordConfirm":"f6d71940-09e9-43c0-9fb6-371ab594105e"}, requestBody.newPassword) +09:00:46.340 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:10438bce +09:00:46.352 [XNIO-1 task-1] pHCP6bgYQAiorFop9Thrfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.353 [XNIO-1 task-1] pHCP6bgYQAiorFop9Thrfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.353 [XNIO-1 task-1] pHCP6bgYQAiorFop9Thrfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.354 [XNIO-1 task-1] pHCP6bgYQAiorFop9Thrfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.366 [XNIO-1 task-1] ZtKSaGyVSPC-DKhGf8rT5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/10438bce, base path is set to: null +09:00:46.366 [XNIO-1 task-1] ZtKSaGyVSPC-DKhGf8rT5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.366 [XNIO-1 task-1] ZtKSaGyVSPC-DKhGf8rT5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.367 [XNIO-1 task-1] ZtKSaGyVSPC-DKhGf8rT5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/10438bce, base path is set to: null +09:00:46.367 [XNIO-1 task-1] ZtKSaGyVSPC-DKhGf8rT5w DEBUG com.networknt.schema.TypeValidator debug - validate( "10438bce", "10438bce", userId) +09:00:46.381 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f0989034, base path is set to: null +09:00:46.381 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.381 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.381 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:46.381 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f0989034, base path is set to: null +09:00:46.382 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG com.networknt.schema.TypeValidator debug - validate( "f0989034", "f0989034", userId) +09:00:46.383 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"9d8f3d06-2ed1-4874-90fc-8d1fb997e5d9","newPassword":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPasswordConfirm":"20ae0e77-3537-4afa-b362-72f6ff01be67"}, {"password":"9d8f3d06-2ed1-4874-90fc-8d1fb997e5d9","newPassword":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPasswordConfirm":"20ae0e77-3537-4afa-b362-72f6ff01be67"}, requestBody) +09:00:46.383 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG com.networknt.schema.TypeValidator debug - validate( "20ae0e77-3537-4afa-b362-72f6ff01be67", {"password":"9d8f3d06-2ed1-4874-90fc-8d1fb997e5d9","newPassword":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPasswordConfirm":"20ae0e77-3537-4afa-b362-72f6ff01be67"}, requestBody.newPasswordConfirm) +09:00:46.383 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG com.networknt.schema.TypeValidator debug - validate( "9d8f3d06-2ed1-4874-90fc-8d1fb997e5d9", {"password":"9d8f3d06-2ed1-4874-90fc-8d1fb997e5d9","newPassword":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPasswordConfirm":"20ae0e77-3537-4afa-b362-72f6ff01be67"}, requestBody.password) +09:00:46.386 [XNIO-1 task-1] crXMYQUCR0uzRSfxkkSppg DEBUG com.networknt.schema.TypeValidator debug - validate( "20ae0e77-3537-4afa-b362-72f6ff01be67", {"password":"9d8f3d06-2ed1-4874-90fc-8d1fb997e5d9","newPassword":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPasswordConfirm":"20ae0e77-3537-4afa-b362-72f6ff01be67"}, requestBody.newPassword) +09:00:46.418 [XNIO-1 task-1] BeFlutl_REKt_22xRrU_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.418 [XNIO-1 task-1] BeFlutl_REKt_22xRrU_mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.418 [XNIO-1 task-1] BeFlutl_REKt_22xRrU_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.419 [XNIO-1 task-1] BeFlutl_REKt_22xRrU_mg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:00:46.433 [XNIO-1 task-1] 7Kj8lEXVTl-lBR055Wl43w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.433 [XNIO-1 task-1] 7Kj8lEXVTl-lBR055Wl43w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.434 [XNIO-1 task-1] 7Kj8lEXVTl-lBR055Wl43w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.443 [XNIO-1 task-1] UVeR1YD3Re6SlYuSQpW1gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.444 [XNIO-1 task-1] UVeR1YD3Re6SlYuSQpW1gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.444 [XNIO-1 task-1] UVeR1YD3Re6SlYuSQpW1gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.448 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.455 [XNIO-1 task-1] BAfGfmSZRnOPsCi9I2fQqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be40470f, base path is set to: null +09:00:46.456 [XNIO-1 task-1] BAfGfmSZRnOPsCi9I2fQqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.456 [XNIO-1 task-1] BAfGfmSZRnOPsCi9I2fQqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.457 [XNIO-1 task-1] BAfGfmSZRnOPsCi9I2fQqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be40470f, base path is set to: null +09:00:46.457 [XNIO-1 task-1] BAfGfmSZRnOPsCi9I2fQqg DEBUG com.networknt.schema.TypeValidator debug - validate( "be40470f", "be40470f", userId) +09:00:46.465 [XNIO-1 task-1] zUpfPBTfTc20-Ih_UFIWPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.465 [XNIO-1 task-1] zUpfPBTfTc20-Ih_UFIWPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.465 [XNIO-1 task-1] zUpfPBTfTc20-Ih_UFIWPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.479 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:94f67b81 +09:00:46.487 [XNIO-1 task-1] vzHFbwvfQYu9FBiqKtvJOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be40470f, base path is set to: null +09:00:46.487 [XNIO-1 task-1] vzHFbwvfQYu9FBiqKtvJOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.487 [XNIO-1 task-1] vzHFbwvfQYu9FBiqKtvJOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.488 [XNIO-1 task-1] vzHFbwvfQYu9FBiqKtvJOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be40470f, base path is set to: null +09:00:46.489 [XNIO-1 task-1] vzHFbwvfQYu9FBiqKtvJOg DEBUG com.networknt.schema.TypeValidator debug - validate( "be40470f", "be40470f", userId) +09:00:46.521 [XNIO-1 task-1] Gy7UKOSxT66RaX9NdScl4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.521 [XNIO-1 task-1] Gy7UKOSxT66RaX9NdScl4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.521 [XNIO-1 task-1] Gy7UKOSxT66RaX9NdScl4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.522 [XNIO-1 task-1] Gy7UKOSxT66RaX9NdScl4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.543 [XNIO-1 task-1] 4MeY33NuS82zLdRnVAXZsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.543 [XNIO-1 task-1] 4MeY33NuS82zLdRnVAXZsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.543 [XNIO-1 task-1] 4MeY33NuS82zLdRnVAXZsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.544 [XNIO-1 task-1] 4MeY33NuS82zLdRnVAXZsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.551 [XNIO-1 task-1] qz4hJB2PTzm53MeY7gyzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/94f67b81 +09:00:46.552 [XNIO-1 task-1] qz4hJB2PTzm53MeY7gyzUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.552 [XNIO-1 task-1] qz4hJB2PTzm53MeY7gyzUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.552 [XNIO-1 task-1] qz4hJB2PTzm53MeY7gyzUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94f67b81, base path is set to: null +09:00:46.552 [XNIO-1 task-1] qz4hJB2PTzm53MeY7gyzUg DEBUG com.networknt.schema.TypeValidator debug - validate( "94f67b81", "94f67b81", userId) +09:00:46.561 [XNIO-1 task-1] 2AKLcKzJSBK9u5uMJOE2Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7a2b683, base path is set to: null +09:00:46.562 [XNIO-1 task-1] 2AKLcKzJSBK9u5uMJOE2Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.562 [XNIO-1 task-1] 2AKLcKzJSBK9u5uMJOE2Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.562 [XNIO-1 task-1] 2AKLcKzJSBK9u5uMJOE2Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7a2b683, base path is set to: null +09:00:46.563 [XNIO-1 task-1] 2AKLcKzJSBK9u5uMJOE2Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "a7a2b683", "a7a2b683", userId) +09:00:46.574 [XNIO-1 task-1] WJjmr3lLTbaBB6oc1CkWfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.575 [XNIO-1 task-1] WJjmr3lLTbaBB6oc1CkWfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.575 [XNIO-1 task-1] WJjmr3lLTbaBB6oc1CkWfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.578 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.578 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:62ba77ed-e8f0-43ed-9072-445f7354322b +09:00:46.602 [XNIO-1 task-1] Eg8xPv_WRMKUZm2A6Yhqng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.602 [XNIO-1 task-1] Eg8xPv_WRMKUZm2A6Yhqng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.602 [XNIO-1 task-1] Eg8xPv_WRMKUZm2A6Yhqng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.602 [XNIO-1 task-1] Eg8xPv_WRMKUZm2A6Yhqng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.613 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f0989034 +09:00:46.613 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.613 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:46.613 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:46.614 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f0989034 +09:00:46.615 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPassword":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPasswordConfirm":"b8712541-5d2e-404a-b34d-fb49fa6de9e4"}, {"password":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPassword":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPasswordConfirm":"b8712541-5d2e-404a-b34d-fb49fa6de9e4"}, requestBody) +09:00:46.617 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPassword":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPasswordConfirm":"b8712541-5d2e-404a-b34d-fb49fa6de9e4"}, {"password":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPassword":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPasswordConfirm":"b8712541-5d2e-404a-b34d-fb49fa6de9e4"}, requestBody) +09:00:46.617 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG com.networknt.schema.FormatValidator debug - validate( "b8712541-5d2e-404a-b34d-fb49fa6de9e4", {"password":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPassword":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPasswordConfirm":"b8712541-5d2e-404a-b34d-fb49fa6de9e4"}, requestBody.newPasswordConfirm) +09:00:46.617 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG com.networknt.schema.FormatValidator debug - validate( "20ae0e77-3537-4afa-b362-72f6ff01be67", {"password":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPassword":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPasswordConfirm":"b8712541-5d2e-404a-b34d-fb49fa6de9e4"}, requestBody.password) +09:00:46.617 [XNIO-1 task-1] tG9RA7PYTxWxO-1nK9VeTA DEBUG com.networknt.schema.FormatValidator debug - validate( "b8712541-5d2e-404a-b34d-fb49fa6de9e4", {"password":"20ae0e77-3537-4afa-b362-72f6ff01be67","newPassword":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPasswordConfirm":"b8712541-5d2e-404a-b34d-fb49fa6de9e4"}, requestBody.newPassword) +09:00:46.640 [XNIO-1 task-1] f0ggD4tyS-qdjAMCe6lCaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.641 [XNIO-1 task-1] f0ggD4tyS-qdjAMCe6lCaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.642 [XNIO-1 task-1] f0ggD4tyS-qdjAMCe6lCaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.670 [XNIO-1 task-1] dOcgkcqeTBCjKW7wqtpqfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.670 [XNIO-1 task-1] dOcgkcqeTBCjKW7wqtpqfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.671 [XNIO-1 task-1] dOcgkcqeTBCjKW7wqtpqfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.694 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f0989034 +09:00:46.694 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.694 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:46.694 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:46.695 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f0989034 +09:00:46.695 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPassword":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPasswordConfirm":"070410b1-4d52-4e1a-b291-4806e17aac1d"}, {"password":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPassword":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPasswordConfirm":"070410b1-4d52-4e1a-b291-4806e17aac1d"}, requestBody) +09:00:46.695 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPassword":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPasswordConfirm":"070410b1-4d52-4e1a-b291-4806e17aac1d"}, {"password":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPassword":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPasswordConfirm":"070410b1-4d52-4e1a-b291-4806e17aac1d"}, requestBody) +09:00:46.695 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG com.networknt.schema.FormatValidator debug - validate( "070410b1-4d52-4e1a-b291-4806e17aac1d", {"password":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPassword":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPasswordConfirm":"070410b1-4d52-4e1a-b291-4806e17aac1d"}, requestBody.newPasswordConfirm) +09:00:46.696 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG com.networknt.schema.FormatValidator debug - validate( "b8712541-5d2e-404a-b34d-fb49fa6de9e4", {"password":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPassword":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPasswordConfirm":"070410b1-4d52-4e1a-b291-4806e17aac1d"}, requestBody.password) +09:00:46.696 [XNIO-1 task-1] ZnBF9n6rQNyqHCV--SOuwA DEBUG com.networknt.schema.FormatValidator debug - validate( "070410b1-4d52-4e1a-b291-4806e17aac1d", {"password":"b8712541-5d2e-404a-b34d-fb49fa6de9e4","newPassword":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPasswordConfirm":"070410b1-4d52-4e1a-b291-4806e17aac1d"}, requestBody.newPassword) +09:00:46.725 [XNIO-1 task-1] JlWMhlVDSaGWKIudbizajw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.725 [XNIO-1 task-1] JlWMhlVDSaGWKIudbizajw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.725 [XNIO-1 task-1] JlWMhlVDSaGWKIudbizajw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.756 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f0989034 +09:00:46.757 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.757 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:46.757 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:00:46.758 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f0989034 +09:00:46.759 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPassword":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb","newPasswordConfirm":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb"}, {"password":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPassword":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb","newPasswordConfirm":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb"}, requestBody) +09:00:46.760 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPassword":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb","newPasswordConfirm":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb"}, {"password":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPassword":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb","newPasswordConfirm":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb"}, requestBody) +09:00:46.760 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG com.networknt.schema.FormatValidator debug - validate( "080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb", {"password":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPassword":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb","newPasswordConfirm":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb"}, requestBody.newPasswordConfirm) +09:00:46.760 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG com.networknt.schema.FormatValidator debug - validate( "070410b1-4d52-4e1a-b291-4806e17aac1d", {"password":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPassword":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb","newPasswordConfirm":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb"}, requestBody.password) +09:00:46.760 [XNIO-1 task-1] wLoY06pkQz2b-DvPomQe7g DEBUG com.networknt.schema.FormatValidator debug - validate( "080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb", {"password":"070410b1-4d52-4e1a-b291-4806e17aac1d","newPassword":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb","newPasswordConfirm":"080f1e9f-7e4b-4ea5-b268-9e0e762ad6eb"}, requestBody.newPassword) +09:00:46.796 [XNIO-1 task-1] 5u9NWjdQRLOXMtR6qDUwKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f0989034 +09:00:46.796 [XNIO-1 task-1] 5u9NWjdQRLOXMtR6qDUwKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.796 [XNIO-1 task-1] 5u9NWjdQRLOXMtR6qDUwKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:46.796 [XNIO-1 task-1] 5u9NWjdQRLOXMtR6qDUwKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f0989034 +09:00:46.811 [XNIO-1 task-1] FZcj3V0tT3mPYxFy_OuLkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.812 [XNIO-1 task-1] FZcj3V0tT3mPYxFy_OuLkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.812 [XNIO-1 task-1] FZcj3V0tT3mPYxFy_OuLkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.827 [XNIO-1 task-1] Mz7PGc2fT26PXXRoTy76vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/306bed32, base path is set to: null +09:00:46.827 [XNIO-1 task-1] Mz7PGc2fT26PXXRoTy76vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.827 [XNIO-1 task-1] Mz7PGc2fT26PXXRoTy76vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.827 [XNIO-1 task-1] Mz7PGc2fT26PXXRoTy76vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/306bed32, base path is set to: null +09:00:46.828 [XNIO-1 task-1] Mz7PGc2fT26PXXRoTy76vA DEBUG com.networknt.schema.TypeValidator debug - validate( "306bed32", "306bed32", userId) +09:00:46.842 [XNIO-1 task-1] jen4xDgqRtGNxaHv7UZFZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.842 [XNIO-1 task-1] jen4xDgqRtGNxaHv7UZFZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.842 [XNIO-1 task-1] jen4xDgqRtGNxaHv7UZFZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.850 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12abd0fd-ea53-4c92-84e6-e31fedf85cfa +09:00:46.857 [XNIO-1 task-1] vsg2rE6NTmiU6HW5lRsiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.857 [XNIO-1 task-1] vsg2rE6NTmiU6HW5lRsiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.857 [XNIO-1 task-1] vsg2rE6NTmiU6HW5lRsiFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.858 [XNIO-1 task-1] vsg2rE6NTmiU6HW5lRsiFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:00:46.864 [XNIO-1 task-1] Hd63l76aQtiDmjtrvEYxFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b533e536 +09:00:46.864 [XNIO-1 task-1] Hd63l76aQtiDmjtrvEYxFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:00:46.864 [XNIO-1 task-1] Hd63l76aQtiDmjtrvEYxFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:00:46.865 [XNIO-1 task-1] Hd63l76aQtiDmjtrvEYxFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b533e536 +09:00:46.872 [XNIO-1 task-1] FT7_W24nT9ukFszPQMp6HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.872 [XNIO-1 task-1] FT7_W24nT9ukFszPQMp6HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.872 [XNIO-1 task-1] FT7_W24nT9ukFszPQMp6HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:00:46.878 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:09bb6c47-7935-45b0-9dbc-446618165123 +09:00:46.898 [XNIO-1 task-1] QhgN_F8oTMKgI3qc0KRbcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b533e536, base path is set to: null +09:00:46.898 [XNIO-1 task-1] QhgN_F8oTMKgI3qc0KRbcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:00:46.898 [XNIO-1 task-1] QhgN_F8oTMKgI3qc0KRbcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:00:46.898 [XNIO-1 task-1] QhgN_F8oTMKgI3qc0KRbcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:00:46.898 [XNIO-1 task-1] QhgN_F8oTMKgI3qc0KRbcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b533e536, base path is set to: null +09:00:46.899 [XNIO-1 task-1] QhgN_F8oTMKgI3qc0KRbcw DEBUG com.networknt.schema.TypeValidator debug - validate( "b533e536", "b533e536", userId) +09:00:46.899 [XNIO-1 task-1] QhgN_F8oTMKgI3qc0KRbcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"3227ec70-1126-4948-82b3-a7c24fc8efcd","newPassword":"32e8ebb3-c354-4d94-b0ac-b048595dd2db","newPasswordConfirm":"32e8ebb3-c354-4d94-b0ac-b048595dd2db"}, {"password":"3227ec70-1126-4948-82b3-a7c24fc8efcd","newPassword":"32e8ebb3-c354-4d94-b0ac-b048595dd2db","newPasswordConfirm":"32e8ebb3-c354-4d94-b0ac-b048595dd2db"}, requestBody) diff --git a/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..d84681d --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-client-1.log @@ -0,0 +1,8001 @@ + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.252 [XNIO-1 task-2] dF2twff-RzyuUijU4VCABw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.259 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.259 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.260 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.260 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.260 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:96850b4d +09:12:38.260 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:38.260 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce976dda-c501-4122-81ba-f9963556a35d", {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:38.261 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.261 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.261 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( "b190d28e-12e8-40f5-bf40-3f1f6fd6", {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:38.261 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:38.261 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b190d28e-12e8-40f5-bf40-3f1f6fd6","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:38.261 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.261 [XNIO-1 task-2] LLZX6_HTQ5SxDPXNiimRNA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.263 [XNIO-1 task-2] uFI7Kn8JSYi2HlKulWOqJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.263 [XNIO-1 task-2] uFI7Kn8JSYi2HlKulWOqJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.263 [XNIO-1 task-2] uFI7Kn8JSYi2HlKulWOqJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.279 [XNIO-1 task-2] uc-c0YA4T4iEkSRQbxy1Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.279 [XNIO-1 task-2] uc-c0YA4T4iEkSRQbxy1Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.279 [XNIO-1 task-2] uc-c0YA4T4iEkSRQbxy1Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.279 [XNIO-1 task-2] uc-c0YA4T4iEkSRQbxy1Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.290 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3a0c7db0 +09:12:38.297 [XNIO-1 task-2] Ls7C71nqTCmnmZI3qtZFFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19, base path is set to: null +09:12:38.297 [XNIO-1 task-2] Ls7C71nqTCmnmZI3qtZFFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.297 [XNIO-1 task-2] Ls7C71nqTCmnmZI3qtZFFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.297 [XNIO-1 task-2] Ls7C71nqTCmnmZI3qtZFFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19, base path is set to: null +09:12:38.297 [XNIO-1 task-2] Ls7C71nqTCmnmZI3qtZFFA DEBUG com.networknt.schema.TypeValidator debug - validate( "032a6622-3759-4922-a90c-262ccddcbc19", "032a6622-3759-4922-a90c-262ccddcbc19", clientId) +09:12:38.306 [XNIO-1 task-2] soww47g4RX-U0qjQ_mveDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bbb02eb7-4abb-4dd5-bb9b-ad69b0a23b6c +09:12:38.306 [XNIO-1 task-2] soww47g4RX-U0qjQ_mveDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.306 [XNIO-1 task-2] soww47g4RX-U0qjQ_mveDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.306 [XNIO-1 task-2] soww47g4RX-U0qjQ_mveDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bbb02eb7-4abb-4dd5-bb9b-ad69b0a23b6c +09:12:38.309 [XNIO-1 task-2] GwhY19wbQx-DMGlnKohYFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8cbf36eb-a2c2-49de-91a7-de579b107b71, base path is set to: null +09:12:38.309 [XNIO-1 task-2] GwhY19wbQx-DMGlnKohYFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.310 [XNIO-1 task-2] GwhY19wbQx-DMGlnKohYFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.310 [XNIO-1 task-2] GwhY19wbQx-DMGlnKohYFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8cbf36eb-a2c2-49de-91a7-de579b107b71, base path is set to: null +09:12:38.310 [XNIO-1 task-2] GwhY19wbQx-DMGlnKohYFg DEBUG com.networknt.schema.TypeValidator debug - validate( "8cbf36eb-a2c2-49de-91a7-de579b107b71", "8cbf36eb-a2c2-49de-91a7-de579b107b71", clientId) +09:12:38.321 [XNIO-1 task-2] pfErOruXQzS4MkGhUCv03Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a75b1b17-2d12-411d-849d-6337b633312f, base path is set to: null +09:12:38.321 [XNIO-1 task-2] pfErOruXQzS4MkGhUCv03Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.321 [XNIO-1 task-2] pfErOruXQzS4MkGhUCv03Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.321 [XNIO-1 task-2] pfErOruXQzS4MkGhUCv03Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a75b1b17-2d12-411d-849d-6337b633312f, base path is set to: null +09:12:38.321 [XNIO-1 task-2] pfErOruXQzS4MkGhUCv03Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a75b1b17-2d12-411d-849d-6337b633312f", "a75b1b17-2d12-411d-849d-6337b633312f", clientId) +09:12:38.328 [XNIO-1 task-2] gUr-BhqWTXykjRSuhLuNtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5439b5c8-da25-4928-8688-8f51f20d5e53 +09:12:38.328 [XNIO-1 task-2] gUr-BhqWTXykjRSuhLuNtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.328 [XNIO-1 task-2] gUr-BhqWTXykjRSuhLuNtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.328 [XNIO-1 task-2] gUr-BhqWTXykjRSuhLuNtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5439b5c8-da25-4928-8688-8f51f20d5e53 +09:12:38.334 [XNIO-1 task-2] gUr-BhqWTXykjRSuhLuNtg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.335 [XNIO-1 task-2] gUr-BhqWTXykjRSuhLuNtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.343 [XNIO-1 task-2] fUmJ4DwBRE2o1LYR83ye2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14bccd35-1bd4-4f6e-ae5c-15ba51354fa7 +09:12:38.343 [XNIO-1 task-2] fUmJ4DwBRE2o1LYR83ye2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.343 [XNIO-1 task-2] fUmJ4DwBRE2o1LYR83ye2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.343 [XNIO-1 task-2] fUmJ4DwBRE2o1LYR83ye2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14bccd35-1bd4-4f6e-ae5c-15ba51354fa7 +09:12:38.349 [XNIO-1 task-2] slHS6_NZQru3OYvb4hjyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.349 [XNIO-1 task-2] slHS6_NZQru3OYvb4hjyTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.349 [XNIO-1 task-2] slHS6_NZQru3OYvb4hjyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.359 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bd0ad484-8990-4526-ba58-dce1fc514cc5 +09:12:38.371 [XNIO-1 task-2] 12cD1BupSTuCFppJM-SeiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.371 [XNIO-1 task-2] 12cD1BupSTuCFppJM-SeiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.371 [XNIO-1 task-2] 12cD1BupSTuCFppJM-SeiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.383 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d86fae8 +09:12:38.384 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d86fae8 +09:12:38.384 [XNIO-1 task-2] U7_7lZcBQCuSu0aWNhb-Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19 +09:12:38.384 [XNIO-1 task-2] U7_7lZcBQCuSu0aWNhb-Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.384 [XNIO-1 task-2] U7_7lZcBQCuSu0aWNhb-Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.385 [XNIO-1 task-2] U7_7lZcBQCuSu0aWNhb-Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19 +09:12:38.385 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:032a6622-3759-4922-a90c-262ccddcbc19 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:12:38.389 [XNIO-1 task-2] U7_7lZcBQCuSu0aWNhb-Eg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.391 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7befff41 +09:12:38.395 [XNIO-1 task-2] i2pS_E-cSiaSaWLNlPQ7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:38.395 [XNIO-1 task-2] i2pS_E-cSiaSaWLNlPQ7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.395 [XNIO-1 task-2] i2pS_E-cSiaSaWLNlPQ7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.395 [XNIO-1 task-2] i2pS_E-cSiaSaWLNlPQ7BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:38.398 [XNIO-1 task-2] 5TjwJFg8TRCVG639RqsF1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d8c82a4-68de-46a4-9126-851f06914c8c, base path is set to: null +09:12:38.398 [XNIO-1 task-2] 5TjwJFg8TRCVG639RqsF1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.398 [XNIO-1 task-2] 5TjwJFg8TRCVG639RqsF1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.398 [XNIO-1 task-2] 5TjwJFg8TRCVG639RqsF1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d8c82a4-68de-46a4-9126-851f06914c8c, base path is set to: null +09:12:38.398 [XNIO-1 task-2] 5TjwJFg8TRCVG639RqsF1A DEBUG com.networknt.schema.TypeValidator debug - validate( "5d8c82a4-68de-46a4-9126-851f06914c8c", "5d8c82a4-68de-46a4-9126-851f06914c8c", clientId) +09:12:38.404 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.404 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.404 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.404 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.405 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:38.405 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "00a5c681-374c-4515-ba1a-b81c8a33f7ed", {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:38.405 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.405 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.405 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cf9e3a55-599f-4996-aec6-b6b9a73d", {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:38.405 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:38.439 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cf9e3a55-599f-4996-aec6-b6b9a73d","clientDesc":"00a5c681-374c-4515-ba1a-b81c8a33f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:38.439 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.439 [XNIO-1 task-2] Jp_FO6w9Q3C7AOuh30lhwQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.442 [XNIO-1 task-2] hBvoRKbQReysYKgq598yZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5439b5c8-da25-4928-8688-8f51f20d5e53, base path is set to: null +09:12:38.442 [XNIO-1 task-2] hBvoRKbQReysYKgq598yZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.442 [XNIO-1 task-2] hBvoRKbQReysYKgq598yZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.442 [XNIO-1 task-2] hBvoRKbQReysYKgq598yZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5439b5c8-da25-4928-8688-8f51f20d5e53, base path is set to: null +09:12:38.443 [XNIO-1 task-2] hBvoRKbQReysYKgq598yZw DEBUG com.networknt.schema.TypeValidator debug - validate( "5439b5c8-da25-4928-8688-8f51f20d5e53", "5439b5c8-da25-4928-8688-8f51f20d5e53", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:38.453 [XNIO-1 task-2] hBvoRKbQReysYKgq598yZw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/5439b5c8-da25-4928-8688-8f51f20d5e53} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.456 [XNIO-1 task-2] 2SI6P2vZTfK1O9b4ua7WVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.456 [XNIO-1 task-2] 2SI6P2vZTfK1O9b4ua7WVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.456 [XNIO-1 task-2] 2SI6P2vZTfK1O9b4ua7WVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.471 [XNIO-1 task-2] 0NuVCy5HSL62fxFny9QuGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/92658301-d03b-4b3b-89b2-4e7a49b10bae, base path is set to: null +09:12:38.471 [XNIO-1 task-2] 0NuVCy5HSL62fxFny9QuGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.471 [XNIO-1 task-2] 0NuVCy5HSL62fxFny9QuGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.471 [XNIO-1 task-2] 0NuVCy5HSL62fxFny9QuGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/92658301-d03b-4b3b-89b2-4e7a49b10bae, base path is set to: null +09:12:38.471 [XNIO-1 task-2] 0NuVCy5HSL62fxFny9QuGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "92658301-d03b-4b3b-89b2-4e7a49b10bae", "92658301-d03b-4b3b-89b2-4e7a49b10bae", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:38.476 [XNIO-1 task-2] 0NuVCy5HSL62fxFny9QuGQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/92658301-d03b-4b3b-89b2-4e7a49b10bae} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.480 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.480 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.480 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f3d6038-33b6-477b-beb5-515cb690","clientDesc":"e25f315b-40a1-4deb-9a43-a3ff67ee3fba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.481 [XNIO-1 task-2] sL_Eb0nOTKW4IEIQYzlzAw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.484 [XNIO-1 task-2] 87Am0vkWRVKkOAhmODxOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbf5c473-d123-4df6-a2d5-5077aed12124 +09:12:38.484 [XNIO-1 task-2] 87Am0vkWRVKkOAhmODxOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.484 [XNIO-1 task-2] 87Am0vkWRVKkOAhmODxOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.484 [XNIO-1 task-2] 87Am0vkWRVKkOAhmODxOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbf5c473-d123-4df6-a2d5-5077aed12124 +09:12:38.491 [XNIO-1 task-2] ArE7IsN-QQ6XJRAS1vvVdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.491 [XNIO-1 task-2] ArE7IsN-QQ6XJRAS1vvVdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.491 [XNIO-1 task-2] ArE7IsN-QQ6XJRAS1vvVdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.496 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7e4147ac-931d-4da0-9721-6e14319434ed +09:12:38.496 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7e4147ac-931d-4da0-9721-6e14319434ed +09:12:38.504 [XNIO-1 task-2] kqfzqWFBSiKAL_i4znYhng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.504 [XNIO-1 task-2] kqfzqWFBSiKAL_i4znYhng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.505 [XNIO-1 task-2] kqfzqWFBSiKAL_i4znYhng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.519 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7efb337e +09:12:38.520 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:77263a45 +09:12:38.521 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:77263a45 +09:12:38.523 [XNIO-1 task-2] iv5cxlgdR66iE8wOvOpr2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a75b1b17-2d12-411d-849d-6337b633312f +09:12:38.523 [XNIO-1 task-2] iv5cxlgdR66iE8wOvOpr2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.523 [XNIO-1 task-2] iv5cxlgdR66iE8wOvOpr2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.523 [XNIO-1 task-2] iv5cxlgdR66iE8wOvOpr2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a75b1b17-2d12-411d-849d-6337b633312f +09:12:38.525 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:562c71ea-ecab-42bc-a060-70bcda3097d4 +09:12:38.526 [XNIO-1 task-2] Esq3mRUPTYibLdn1fY1ZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a75b1b17-2d12-411d-849d-6337b633312f, base path is set to: null +09:12:38.526 [XNIO-1 task-2] Esq3mRUPTYibLdn1fY1ZPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.526 [XNIO-1 task-2] Esq3mRUPTYibLdn1fY1ZPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.526 [XNIO-1 task-2] Esq3mRUPTYibLdn1fY1ZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a75b1b17-2d12-411d-849d-6337b633312f, base path is set to: null +09:12:38.526 [XNIO-1 task-2] Esq3mRUPTYibLdn1fY1ZPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a75b1b17-2d12-411d-849d-6337b633312f", "a75b1b17-2d12-411d-849d-6337b633312f", clientId) +09:12:38.540 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.540 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.540 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG com.networknt.schema.TypeValidator debug - validate( "058a1691-141d-44e9-a5ea-0a5b54730ebc", {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG com.networknt.schema.TypeValidator debug - validate( "8e911946-ba79-4b76-a4eb-e9e0dde0", {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8e911946-ba79-4b76-a4eb-e9e0dde0","clientDesc":"058a1691-141d-44e9-a5ea-0a5b54730ebc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.541 [XNIO-1 task-2] sERSpng0SKeolX0bFDciQg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.544 [XNIO-1 task-2] gn6hhAXJRmeD86X4vppH4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.544 [XNIO-1 task-2] gn6hhAXJRmeD86X4vppH4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.544 [XNIO-1 task-2] gn6hhAXJRmeD86X4vppH4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.550 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d15aece0 +09:12:38.551 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d15aece0 +09:12:38.559 [XNIO-1 task-2] suU-Z9EmQk6Rw6BwYpBrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe +09:12:38.559 [XNIO-1 task-2] suU-Z9EmQk6Rw6BwYpBrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.559 [XNIO-1 task-2] suU-Z9EmQk6Rw6BwYpBrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.559 [XNIO-1 task-2] suU-Z9EmQk6Rw6BwYpBrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe +09:12:38.564 [XNIO-1 task-2] suU-Z9EmQk6Rw6BwYpBrUA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.564 [XNIO-1 task-2] suU-Z9EmQk6Rw6BwYpBrUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.569 [XNIO-1 task-2] mR7fCe_dSki_T8f95Q-1KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe +09:12:38.569 [XNIO-1 task-2] mR7fCe_dSki_T8f95Q-1KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.569 [XNIO-1 task-2] mR7fCe_dSki_T8f95Q-1KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.569 [XNIO-1 task-2] mR7fCe_dSki_T8f95Q-1KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe +09:12:38.574 [XNIO-1 task-2] wP0_Uu6yST2SlqDibpyZ6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.574 [XNIO-1 task-2] wP0_Uu6yST2SlqDibpyZ6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.574 [XNIO-1 task-2] wP0_Uu6yST2SlqDibpyZ6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.574 [XNIO-1 task-2] wP0_Uu6yST2SlqDibpyZ6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.583 [XNIO-1 task-2] KkygAkg0SjeSV7F6gHAuYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe, base path is set to: null +09:12:38.583 [XNIO-1 task-2] KkygAkg0SjeSV7F6gHAuYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.583 [XNIO-1 task-2] KkygAkg0SjeSV7F6gHAuYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.584 [XNIO-1 task-2] KkygAkg0SjeSV7F6gHAuYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe, base path is set to: null +09:12:38.584 [XNIO-1 task-2] KkygAkg0SjeSV7F6gHAuYw DEBUG com.networknt.schema.TypeValidator debug - validate( "db4b9e98-1754-4e04-9134-db9e36fb0cbe", "db4b9e98-1754-4e04-9134-db9e36fb0cbe", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:38.588 [XNIO-1 task-2] KkygAkg0SjeSV7F6gHAuYw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.591 [XNIO-1 task-2] 6EVjE7VKR5m27OxnCPqCwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.591 [XNIO-1 task-2] 6EVjE7VKR5m27OxnCPqCwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.591 [XNIO-1 task-2] 6EVjE7VKR5m27OxnCPqCwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.605 [XNIO-1 task-2] EC2UgRtNQRWq5lSymkl3ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.605 [XNIO-1 task-2] EC2UgRtNQRWq5lSymkl3ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.605 [XNIO-1 task-2] EC2UgRtNQRWq5lSymkl3ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.606 [XNIO-1 task-2] EC2UgRtNQRWq5lSymkl3ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.616 [XNIO-1 task-2] EoToReZpS5K_BcfYaBP-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe, base path is set to: null +09:12:38.616 [XNIO-1 task-2] EoToReZpS5K_BcfYaBP-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.616 [XNIO-1 task-2] EoToReZpS5K_BcfYaBP-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.616 [XNIO-1 task-2] EoToReZpS5K_BcfYaBP-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe, base path is set to: null +09:12:38.617 [XNIO-1 task-2] EoToReZpS5K_BcfYaBP-XA DEBUG com.networknt.schema.TypeValidator debug - validate( "db4b9e98-1754-4e04-9134-db9e36fb0cbe", "db4b9e98-1754-4e04-9134-db9e36fb0cbe", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:38.624 [XNIO-1 task-2] EoToReZpS5K_BcfYaBP-XA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/db4b9e98-1754-4e04-9134-db9e36fb0cbe} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.628 [XNIO-1 task-2] rrxftTaCRWGLtgJdtv3mzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.628 [XNIO-1 task-2] rrxftTaCRWGLtgJdtv3mzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.629 [XNIO-1 task-2] rrxftTaCRWGLtgJdtv3mzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.643 [XNIO-1 task-2] LTsx1hBIS3u-Xnf31KwsAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.643 [XNIO-1 task-2] LTsx1hBIS3u-Xnf31KwsAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.643 [XNIO-1 task-2] LTsx1hBIS3u-Xnf31KwsAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.643 [XNIO-1 task-2] LTsx1hBIS3u-Xnf31KwsAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.651 [XNIO-1 task-2] YeO8I-H2ThGF7bcdFSm2lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.651 [XNIO-1 task-2] YeO8I-H2ThGF7bcdFSm2lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.651 [XNIO-1 task-2] YeO8I-H2ThGF7bcdFSm2lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.667 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.667 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.667 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.668 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5aac7ad8-639d-46ef-aa48-29c65ba4","clientDesc":"faa2bcb9-5bfe-4372-9e79-0be4f49323af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.669 [XNIO-1 task-2] MS8MMvYYRXWRHJn8KmsBLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.672 [XNIO-1 task-2] ldczAoWfRuy6AVYwvNRo4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d8c82a4-68de-46a4-9126-851f06914c8c +09:12:38.673 [XNIO-1 task-2] ldczAoWfRuy6AVYwvNRo4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.673 [XNIO-1 task-2] ldczAoWfRuy6AVYwvNRo4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.673 [XNIO-1 task-2] ldczAoWfRuy6AVYwvNRo4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5d8c82a4-68de-46a4-9126-851f06914c8c +09:12:38.684 [XNIO-1 task-2] dXIrL0iVTc2z7xZ_0e3KBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.684 [XNIO-1 task-2] dXIrL0iVTc2z7xZ_0e3KBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.684 [XNIO-1 task-2] dXIrL0iVTc2z7xZ_0e3KBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.686 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2cec73df +09:12:38.695 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:825ebfb0 +09:12:38.697 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.697 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.697 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "9e2b3973-41c1-411c-8175-c95e1d0edb5a", {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "2c9e7996-58bc-4a1b-b33e-84dad257", {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2c9e7996-58bc-4a1b-b33e-84dad257","clientDesc":"9e2b3973-41c1-411c-8175-c95e1d0edb5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.698 [XNIO-1 task-2] VDS2jcdcSy6GsJC9n-cq6w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.700 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:825ebfb0 +09:12:38.702 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a3a2bd51-db8d-4299-bfa3-851db590","clientDesc":"d661cdbb-5a0a-4b51-bf86-43fd41779952","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.703 [XNIO-1 task-2] S41Bu1-FSfCvhLqRHdkGcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.709 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4853a5b5 +09:12:38.714 [XNIO-1 task-2] ZuL3TikNS4CNPO5yrLAIdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.714 [XNIO-1 task-2] ZuL3TikNS4CNPO5yrLAIdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.714 [XNIO-1 task-2] ZuL3TikNS4CNPO5yrLAIdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.714 [XNIO-1 task-2] ZuL3TikNS4CNPO5yrLAIdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:38.728 [XNIO-1 task-2] NRHmd49fQzWeHpRIXPf6kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0 +09:12:38.728 [XNIO-1 task-2] NRHmd49fQzWeHpRIXPf6kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.728 [XNIO-1 task-2] NRHmd49fQzWeHpRIXPf6kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.728 [XNIO-1 task-2] NRHmd49fQzWeHpRIXPf6kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0 +09:12:38.732 [XNIO-1 task-2] NRHmd49fQzWeHpRIXPf6kw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.732 [XNIO-1 task-2] NRHmd49fQzWeHpRIXPf6kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.738 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.738 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.738 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.738 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.739 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:38.739 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG com.networknt.schema.TypeValidator debug - validate( "af03fa04-fac8-455d-b281-73795751eb3a", {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:38.739 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.739 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.739 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG com.networknt.schema.TypeValidator debug - validate( "f1050eb7-5834-44a4-a67f-7343912f", {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:38.739 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:38.740 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f1050eb7-5834-44a4-a67f-7343912f","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:38.740 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.740 [XNIO-1 task-2] 7abdMIW_QmCuFl9WnOJ4hw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.744 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.745 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5cbdc057-d06a-4e1f-aa68-2b5a83ec","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.745 [XNIO-1 task-2] yLQTyXCZSZWYl9R5E8vGyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.747 [XNIO-1 task-2] s19NuwYkQ9aI_Pv-Gi29GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbf5c473-d123-4df6-a2d5-5077aed12124 +09:12:38.747 [XNIO-1 task-2] s19NuwYkQ9aI_Pv-Gi29GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.747 [XNIO-1 task-2] s19NuwYkQ9aI_Pv-Gi29GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.747 [XNIO-1 task-2] s19NuwYkQ9aI_Pv-Gi29GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dbf5c473-d123-4df6-a2d5-5077aed12124 +09:12:38.752 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.752 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.752 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffedbdeb-5634-4025-82c3-47f483b1","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.753 [XNIO-1 task-2] sRbEUlHqSxu4R2nCFCrRYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.756 [XNIO-1 task-2] i8zLhGeqSRmllF26ddkdxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.757 [XNIO-1 task-2] i8zLhGeqSRmllF26ddkdxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.757 [XNIO-1 task-2] i8zLhGeqSRmllF26ddkdxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.762 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:35caca69-6d51-47a6-87f7-48394d8fce57 +09:12:38.770 [XNIO-1 task-2] SJE599oVQlijhqacwaHbuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98, base path is set to: null +09:12:38.770 [XNIO-1 task-2] SJE599oVQlijhqacwaHbuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.770 [XNIO-1 task-2] SJE599oVQlijhqacwaHbuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.770 [XNIO-1 task-2] SJE599oVQlijhqacwaHbuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98, base path is set to: null +09:12:38.770 [XNIO-1 task-2] SJE599oVQlijhqacwaHbuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e8b66747-53a8-4a4e-a9d9-bfc16e37eb98", "e8b66747-53a8-4a4e-a9d9-bfc16e37eb98", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:38.784 [XNIO-1 task-2] SJE599oVQlijhqacwaHbuQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:38.789 [XNIO-1 task-2] GkGCRrmxTn6sRqNY1EphJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.789 [XNIO-1 task-2] GkGCRrmxTn6sRqNY1EphJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.789 [XNIO-1 task-2] GkGCRrmxTn6sRqNY1EphJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.790 [XNIO-1 task-2] GkGCRrmxTn6sRqNY1EphJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.799 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:78ab7c09-647a-464e-b428-d4a3a59ce6e8 +09:12:38.802 [XNIO-1 task-2] lGPJJ74DQaa8Lvir3abfyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.802 [XNIO-1 task-2] lGPJJ74DQaa8Lvir3abfyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.802 [XNIO-1 task-2] lGPJJ74DQaa8Lvir3abfyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.802 [XNIO-1 task-2] lGPJJ74DQaa8Lvir3abfyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.805 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:45001a98 +09:12:38.805 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:45001a98 +09:12:38.812 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d746dd36 +09:12:38.814 [XNIO-1 task-2] iQfonMcHSmKr3h_ztG7EZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e1267e4e-29b7-4dcd-9ca9-d127293896a8, base path is set to: null +09:12:38.814 [XNIO-1 task-2] iQfonMcHSmKr3h_ztG7EZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.814 [XNIO-1 task-2] iQfonMcHSmKr3h_ztG7EZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.814 [XNIO-1 task-2] iQfonMcHSmKr3h_ztG7EZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e1267e4e-29b7-4dcd-9ca9-d127293896a8, base path is set to: null +09:12:38.814 [XNIO-1 task-2] iQfonMcHSmKr3h_ztG7EZA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1267e4e-29b7-4dcd-9ca9-d127293896a8", "e1267e4e-29b7-4dcd-9ca9-d127293896a8", clientId) +09:12:38.817 [XNIO-1 task-2] mfzV1UYKQByF0XitWugUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b94b1581-d2d8-4334-af74-484484dd2b5e +09:12:38.817 [XNIO-1 task-2] mfzV1UYKQByF0XitWugUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.818 [XNIO-1 task-2] mfzV1UYKQByF0XitWugUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.818 [XNIO-1 task-2] mfzV1UYKQByF0XitWugUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b94b1581-d2d8-4334-af74-484484dd2b5e +09:12:38.825 [XNIO-1 task-2] UIX75etqRoCL6zxAQxdPeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.826 [XNIO-1 task-2] UIX75etqRoCL6zxAQxdPeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.826 [XNIO-1 task-2] UIX75etqRoCL6zxAQxdPeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.826 [XNIO-1 task-2] UIX75etqRoCL6zxAQxdPeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.831 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.831 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.831 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd729626-a933-4f11-acf3-95984189","clientDesc":"31e8e1ec-f4af-4181-ac6b-e389f0472047","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.832 [XNIO-1 task-2] F0e25tPDRuSJUlxuj7IggQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.836 [XNIO-1 task-2] _gCGsHvJQayNzuAjd53fwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1267e4e-29b7-4dcd-9ca9-d127293896a8 +09:12:38.837 [XNIO-1 task-2] _gCGsHvJQayNzuAjd53fwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.837 [XNIO-1 task-2] _gCGsHvJQayNzuAjd53fwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.837 [XNIO-1 task-2] _gCGsHvJQayNzuAjd53fwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1267e4e-29b7-4dcd-9ca9-d127293896a8 +09:12:38.839 [XNIO-1 task-2] SP8MA3ojTseu8jpl-Go6eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.839 [XNIO-1 task-2] SP8MA3ojTseu8jpl-Go6eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.839 [XNIO-1 task-2] SP8MA3ojTseu8jpl-Go6eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.839 [XNIO-1 task-2] SP8MA3ojTseu8jpl-Go6eA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.867 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.867 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.868 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df800137-b94f-4c27-a154-348e020e","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.869 [XNIO-1 task-2] 6XdCTuCsQtaulPDlRht5ng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.871 [XNIO-1 task-2] U34gi8akR2O3awXgtPPIYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.871 [XNIO-1 task-2] U34gi8akR2O3awXgtPPIYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.871 [XNIO-1 task-2] U34gi8akR2O3awXgtPPIYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.872 [XNIO-1 task-2] U34gi8akR2O3awXgtPPIYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:38.888 [XNIO-1 task-2] Ui_c30iVSC6mcTtOHhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14bccd35-1bd4-4f6e-ae5c-15ba51354fa7 +09:12:38.888 [XNIO-1 task-2] Ui_c30iVSC6mcTtOHhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.888 [XNIO-1 task-2] Ui_c30iVSC6mcTtOHhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.888 [XNIO-1 task-2] Ui_c30iVSC6mcTtOHhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14bccd35-1bd4-4f6e-ae5c-15ba51354fa7 +09:12:38.893 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.895 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.895 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.895 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.895 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.895 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.896 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.896 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:38.896 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:38.896 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.896 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:38.896 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20fa2860-f874-4dde-acc2-f6f34ae2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.896 [XNIO-1 task-2] izjSejP3Qse5W1bbNDhSbg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.900 [XNIO-1 task-2] iVlbbESrRCGHl1ClvqoKvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.900 [XNIO-1 task-2] iVlbbESrRCGHl1ClvqoKvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.900 [XNIO-1 task-2] iVlbbESrRCGHl1ClvqoKvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.900 [XNIO-1 task-2] iVlbbESrRCGHl1ClvqoKvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:38.905 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d746dd36 +09:12:38.917 [XNIO-1 task-2] KBj87gm3TWSjw_NXYM3iFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.917 [XNIO-1 task-2] KBj87gm3TWSjw_NXYM3iFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.917 [XNIO-1 task-2] KBj87gm3TWSjw_NXYM3iFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.917 [XNIO-1 task-2] KBj87gm3TWSjw_NXYM3iFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:38.930 [XNIO-1 task-2] cThQ6d7vQb-cl97YHtaOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:38.930 [XNIO-1 task-2] cThQ6d7vQb-cl97YHtaOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.930 [XNIO-1 task-2] cThQ6d7vQb-cl97YHtaOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.930 [XNIO-1 task-2] cThQ6d7vQb-cl97YHtaOPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:38.933 [XNIO-1 task-2] HuEkvnyfQ3S8skCDgK34Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.933 [XNIO-1 task-2] HuEkvnyfQ3S8skCDgK34Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.933 [XNIO-1 task-2] HuEkvnyfQ3S8skCDgK34Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.933 [XNIO-1 task-2] HuEkvnyfQ3S8skCDgK34Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.947 [XNIO-1 task-2] x2sC-kNzTX-pHcJmX-8-fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34, base path is set to: null +09:12:38.948 [XNIO-1 task-2] x2sC-kNzTX-pHcJmX-8-fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.948 [XNIO-1 task-2] x2sC-kNzTX-pHcJmX-8-fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:38.948 [XNIO-1 task-2] x2sC-kNzTX-pHcJmX-8-fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34, base path is set to: null +09:12:38.948 [XNIO-1 task-2] x2sC-kNzTX-pHcJmX-8-fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cdd0d759-d275-4bcb-8b65-eb14e1b03b34", "cdd0d759-d275-4bcb-8b65-eb14e1b03b34", clientId) +09:12:38.954 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:12:38.954 [XNIO-1 task-2] x2sC-kNzTX-pHcJmX-8-fQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:38.954 [XNIO-1 task-2] x2sC-kNzTX-pHcJmX-8-fQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:38.957 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:30d11151 +09:12:38.966 [XNIO-1 task-2] fwblOrPbT22y6hczj7ejxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20758989-2512-433c-8bdd-6d9e1e78b4ef +09:12:38.967 [XNIO-1 task-2] fwblOrPbT22y6hczj7ejxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:38.967 [XNIO-1 task-2] fwblOrPbT22y6hczj7ejxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:38.967 [XNIO-1 task-2] fwblOrPbT22y6hczj7ejxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20758989-2512-433c-8bdd-6d9e1e78b4ef +09:12:38.981 [XNIO-1 task-2] 9iXML5ARR1umPF7pMF-QBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.981 [XNIO-1 task-2] 9iXML5ARR1umPF7pMF-QBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.981 [XNIO-1 task-2] 9iXML5ARR1umPF7pMF-QBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.981 [XNIO-1 task-2] 9iXML5ARR1umPF7pMF-QBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:38.998 [XNIO-1 task-2] SJMjHoDRSAqmSDGRZei1ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.998 [XNIO-1 task-2] SJMjHoDRSAqmSDGRZei1ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:38.999 [XNIO-1 task-2] SJMjHoDRSAqmSDGRZei1ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:38.999 [XNIO-1 task-2] SJMjHoDRSAqmSDGRZei1ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.011 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.011 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.011 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899b3b18-07cb-4e6c-9d66-f624bc32","clientDesc":"af03fa04-fac8-455d-b281-73795751eb3a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.012 [XNIO-1 task-2] 68DroWsvS1-iwiKPhcTq_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.014 [XNIO-1 task-2] nSOe6BZHTgWeJiSNyjcvSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5439b5c8-da25-4928-8688-8f51f20d5e53 +09:12:39.015 [XNIO-1 task-2] nSOe6BZHTgWeJiSNyjcvSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.015 [XNIO-1 task-2] nSOe6BZHTgWeJiSNyjcvSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.015 [XNIO-1 task-2] nSOe6BZHTgWeJiSNyjcvSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5439b5c8-da25-4928-8688-8f51f20d5e53 +09:12:39.020 [XNIO-1 task-2] nSOe6BZHTgWeJiSNyjcvSg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.021 [XNIO-1 task-2] nSOe6BZHTgWeJiSNyjcvSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.026 [XNIO-1 task-2] eH1JiSQ-ToSTsDIK6nXYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.026 [XNIO-1 task-2] eH1JiSQ-ToSTsDIK6nXYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.026 [XNIO-1 task-2] eH1JiSQ-ToSTsDIK6nXYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.026 [XNIO-1 task-2] eH1JiSQ-ToSTsDIK6nXYpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.036 [XNIO-1 task-2] eszn1aoFRym1X4IR8CSoLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bcdc466-9d75-4c6e-b8c8-05ee1daeaa07 +09:12:39.036 [XNIO-1 task-2] eszn1aoFRym1X4IR8CSoLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.036 [XNIO-1 task-2] eszn1aoFRym1X4IR8CSoLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.037 [XNIO-1 task-2] eszn1aoFRym1X4IR8CSoLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bcdc466-9d75-4c6e-b8c8-05ee1daeaa07 +09:12:39.045 [XNIO-1 task-2] yrKSKutyTjmyuGhpeQhQvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98, base path is set to: null +09:12:39.045 [XNIO-1 task-2] yrKSKutyTjmyuGhpeQhQvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.045 [XNIO-1 task-2] yrKSKutyTjmyuGhpeQhQvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.045 [XNIO-1 task-2] yrKSKutyTjmyuGhpeQhQvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98, base path is set to: null +09:12:39.045 [XNIO-1 task-2] yrKSKutyTjmyuGhpeQhQvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e8b66747-53a8-4a4e-a9d9-bfc16e37eb98", "e8b66747-53a8-4a4e-a9d9-bfc16e37eb98", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:39.053 [XNIO-1 task-2] yrKSKutyTjmyuGhpeQhQvQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.061 [XNIO-1 task-2] nRJ38WfYT5mc2zZQmxQ1Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e1267e4e-29b7-4dcd-9ca9-d127293896a8, base path is set to: null +09:12:39.061 [XNIO-1 task-2] nRJ38WfYT5mc2zZQmxQ1Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.061 [XNIO-1 task-2] nRJ38WfYT5mc2zZQmxQ1Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.061 [XNIO-1 task-2] nRJ38WfYT5mc2zZQmxQ1Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e1267e4e-29b7-4dcd-9ca9-d127293896a8, base path is set to: null +09:12:39.061 [XNIO-1 task-2] nRJ38WfYT5mc2zZQmxQ1Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1267e4e-29b7-4dcd-9ca9-d127293896a8", "e1267e4e-29b7-4dcd-9ca9-d127293896a8", clientId) +09:12:39.072 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.072 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "9ed14b00-07af-447d-86d5-67b3c1b4f5a6", {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "ef125cb2-b41c-4da4-b209-c01b33dd", {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ef125cb2-b41c-4da4-b209-c01b33dd","clientDesc":"9ed14b00-07af-447d-86d5-67b3c1b4f5a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.073 [XNIO-1 task-2] DHhxhR1kS-iYamVv1mYI7w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.080 [XNIO-1 task-2] GZ9tntnRTYuOA-gIMg1W-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.080 [XNIO-1 task-2] GZ9tntnRTYuOA-gIMg1W-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.080 [XNIO-1 task-2] GZ9tntnRTYuOA-gIMg1W-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.086 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:93ffb02c-8036-434d-9cc2-55992a0c65ff +09:12:39.087 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:93ffb02c-8036-434d-9cc2-55992a0c65ff +09:12:39.099 [XNIO-1 task-2] uUmRo9_nRBCVx9JPyHshow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.099 [XNIO-1 task-2] uUmRo9_nRBCVx9JPyHshow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.099 [XNIO-1 task-2] uUmRo9_nRBCVx9JPyHshow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.118 [XNIO-1 task-2] n-ffkjRvR8CGNRwSQiWhYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.118 [XNIO-1 task-2] n-ffkjRvR8CGNRwSQiWhYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.118 [XNIO-1 task-2] n-ffkjRvR8CGNRwSQiWhYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.118 [XNIO-1 task-2] n-ffkjRvR8CGNRwSQiWhYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.134 [XNIO-1 task-2] LHOVeK-7SJCho47eobGLUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.134 [XNIO-1 task-2] LHOVeK-7SJCho47eobGLUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.134 [XNIO-1 task-2] LHOVeK-7SJCho47eobGLUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.135 [XNIO-1 task-2] LHOVeK-7SJCho47eobGLUw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.146 [XNIO-1 task-2] exCxzM2rRsyXg4UMeC0Ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19 +09:12:39.146 [XNIO-1 task-2] exCxzM2rRsyXg4UMeC0Ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.146 [XNIO-1 task-2] exCxzM2rRsyXg4UMeC0Ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.146 [XNIO-1 task-2] exCxzM2rRsyXg4UMeC0Ehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19 +09:12:39.147 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:032a6622-3759-4922-a90c-262ccddcbc19 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:12:39.151 [XNIO-1 task-2] exCxzM2rRsyXg4UMeC0Ehw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/032a6622-3759-4922-a90c-262ccddcbc19} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.154 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9b1318ac +09:12:39.155 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9b1318ac +09:12:39.156 [XNIO-1 task-2] 53oXO4I6Qwi_YIoPDIS90w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.157 [XNIO-1 task-2] 53oXO4I6Qwi_YIoPDIS90w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.157 [XNIO-1 task-2] 53oXO4I6Qwi_YIoPDIS90w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.157 [XNIO-1 task-2] 53oXO4I6Qwi_YIoPDIS90w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.161 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ceb25cb0 +09:12:39.162 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9b1318ac +09:12:39.170 [XNIO-1 task-2] mkt4N6CJSG6vyfw5ZwM5kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.170 [XNIO-1 task-2] mkt4N6CJSG6vyfw5ZwM5kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.170 [XNIO-1 task-2] mkt4N6CJSG6vyfw5ZwM5kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.185 [XNIO-1 task-2] NYNOzEavTeijQ4vIWaozEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.185 [XNIO-1 task-2] NYNOzEavTeijQ4vIWaozEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.185 [XNIO-1 task-2] NYNOzEavTeijQ4vIWaozEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.201 [XNIO-1 task-2] X_dtr6zxRqC6RL1xjHoN8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.201 [XNIO-1 task-2] X_dtr6zxRqC6RL1xjHoN8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.201 [XNIO-1 task-2] X_dtr6zxRqC6RL1xjHoN8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.201 [XNIO-1 task-2] X_dtr6zxRqC6RL1xjHoN8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.210 [XNIO-1 task-2] mJcqfpSRQXSHFTuRM9cExA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f909dd8-8992-4dac-b713-9de6fefb788f, base path is set to: null +09:12:39.211 [XNIO-1 task-2] mJcqfpSRQXSHFTuRM9cExA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.211 [XNIO-1 task-2] mJcqfpSRQXSHFTuRM9cExA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.211 [XNIO-1 task-2] mJcqfpSRQXSHFTuRM9cExA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f909dd8-8992-4dac-b713-9de6fefb788f, base path is set to: null +09:12:39.211 [XNIO-1 task-2] mJcqfpSRQXSHFTuRM9cExA DEBUG com.networknt.schema.TypeValidator debug - validate( "8f909dd8-8992-4dac-b713-9de6fefb788f", "8f909dd8-8992-4dac-b713-9de6fefb788f", clientId) +09:12:39.216 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2d976acf +09:12:39.217 [XNIO-1 task-2] mJcqfpSRQXSHFTuRM9cExA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.217 [XNIO-1 task-2] mJcqfpSRQXSHFTuRM9cExA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.220 [XNIO-1 task-2] aUYKGix9TTSG7MtA-xbWWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51a76357-5c35-4ecc-b58c-c6f40dfbfa72 +09:12:39.221 [XNIO-1 task-2] aUYKGix9TTSG7MtA-xbWWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.221 [XNIO-1 task-2] aUYKGix9TTSG7MtA-xbWWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.221 [XNIO-1 task-2] aUYKGix9TTSG7MtA-xbWWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/51a76357-5c35-4ecc-b58c-c6f40dfbfa72 +09:12:39.233 [XNIO-1 task-2] nQaSKke1Sxq_zB54t0DJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.233 [XNIO-1 task-2] nQaSKke1Sxq_zB54t0DJWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.233 [XNIO-1 task-2] nQaSKke1Sxq_zB54t0DJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.247 [XNIO-1 task-2] 3C4hJ_YqRw68huVTHaS_og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.247 [XNIO-1 task-2] 3C4hJ_YqRw68huVTHaS_og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.247 [XNIO-1 task-2] 3C4hJ_YqRw68huVTHaS_og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.247 [XNIO-1 task-2] 3C4hJ_YqRw68huVTHaS_og DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.256 [XNIO-1 task-2] 7KrGeYR5QgiraxEXQstgNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.256 [XNIO-1 task-2] 7KrGeYR5QgiraxEXQstgNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.256 [XNIO-1 task-2] 7KrGeYR5QgiraxEXQstgNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.271 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.272 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.272 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.272 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.272 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.272 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.272 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.272 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.273 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.273 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.273 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.273 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7177ace9-d76a-4a84-b713-23b4a36a","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.273 [XNIO-1 task-2] 3dKb8PW3Q2yoYYIl5R_I1w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.275 [XNIO-1 task-2] C2wNaiWMSCyusf7iTogWRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.276 [XNIO-1 task-2] C2wNaiWMSCyusf7iTogWRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.276 [XNIO-1 task-2] C2wNaiWMSCyusf7iTogWRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.276 [XNIO-1 task-2] C2wNaiWMSCyusf7iTogWRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.285 [XNIO-1 task-2] NXhZAY1WTb6WOdnbIcyDcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0 +09:12:39.285 [XNIO-1 task-2] NXhZAY1WTb6WOdnbIcyDcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.285 [XNIO-1 task-2] NXhZAY1WTb6WOdnbIcyDcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.285 [XNIO-1 task-2] NXhZAY1WTb6WOdnbIcyDcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0 +09:12:39.291 [XNIO-1 task-2] NXhZAY1WTb6WOdnbIcyDcg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.291 [XNIO-1 task-2] NXhZAY1WTb6WOdnbIcyDcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.298 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.298 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.298 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "73063a2f-e1b4-4bec-bb27-f6c2ac0dca84", {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "5557838c-a457-4534-8884-faf94dce", {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5557838c-a457-4534-8884-faf94dce","clientDesc":"73063a2f-e1b4-4bec-bb27-f6c2ac0dca84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.299 [XNIO-1 task-2] q9NCU7bFQoSGgQmjEXyQUA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.302 [XNIO-1 task-2] UC8mTXO6QWafbVmmhV5ZSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0, base path is set to: null +09:12:39.302 [XNIO-1 task-2] UC8mTXO6QWafbVmmhV5ZSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.302 [XNIO-1 task-2] UC8mTXO6QWafbVmmhV5ZSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.302 [XNIO-1 task-2] UC8mTXO6QWafbVmmhV5ZSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0, base path is set to: null +09:12:39.302 [XNIO-1 task-2] UC8mTXO6QWafbVmmhV5ZSg DEBUG com.networknt.schema.TypeValidator debug - validate( "14c2e0a6-bf63-4f6c-bb8e-5b080613adf0", "14c2e0a6-bf63-4f6c-bb8e-5b080613adf0", clientId) +09:12:39.305 [XNIO-1 task-2] fQ5Jc5v5RFy2NOL28oplZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e955dab-7915-4340-bace-69277130fafd +09:12:39.305 [XNIO-1 task-2] fQ5Jc5v5RFy2NOL28oplZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.305 [XNIO-1 task-2] fQ5Jc5v5RFy2NOL28oplZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.305 [XNIO-1 task-2] fQ5Jc5v5RFy2NOL28oplZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e955dab-7915-4340-bace-69277130fafd +09:12:39.310 [XNIO-1 task-2] 1VXc9qakQeypB72QVU65Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.311 [XNIO-1 task-2] 1VXc9qakQeypB72QVU65Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.311 [XNIO-1 task-2] 1VXc9qakQeypB72QVU65Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.311 [XNIO-1 task-2] 1VXc9qakQeypB72QVU65Og DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.322 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3a0c7db0 +09:12:39.331 [XNIO-1 task-2] N5RMdsL6TrqDS3jkIRHzyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.331 [XNIO-1 task-2] N5RMdsL6TrqDS3jkIRHzyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.331 [XNIO-1 task-2] N5RMdsL6TrqDS3jkIRHzyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.331 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:df063b20 +09:12:39.333 [XNIO-1 task-2] N5RMdsL6TrqDS3jkIRHzyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.352 [XNIO-1 task-2] j2jpJNI0QWWMkuoG_gH-og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.352 [XNIO-1 task-2] j2jpJNI0QWWMkuoG_gH-og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.352 [XNIO-1 task-2] j2jpJNI0QWWMkuoG_gH-og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.352 [XNIO-1 task-2] j2jpJNI0QWWMkuoG_gH-og DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.367 [XNIO-1 task-2] uUvuVsjAT0yYvJDhkBOt-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.367 [XNIO-1 task-2] uUvuVsjAT0yYvJDhkBOt-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.367 [XNIO-1 task-2] uUvuVsjAT0yYvJDhkBOt-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.392 [XNIO-1 task-2] YfBhvy2SSH6VhAFV4Vkzcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.393 [XNIO-1 task-2] YfBhvy2SSH6VhAFV4Vkzcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.393 [XNIO-1 task-2] YfBhvy2SSH6VhAFV4Vkzcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.393 [XNIO-1 task-2] YfBhvy2SSH6VhAFV4Vkzcg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.406 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8d86fae8 +09:12:39.410 [XNIO-1 task-2] 9U1Eqo6tRJCHuUX0buS_aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.410 [XNIO-1 task-2] 9U1Eqo6tRJCHuUX0buS_aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.410 [XNIO-1 task-2] 9U1Eqo6tRJCHuUX0buS_aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.418 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e586a5ff +09:12:39.433 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:77263a45 +09:12:39.434 [XNIO-1 task-2] a09rmJt4RnG8lK9m4WBiqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.436 [XNIO-1 task-2] a09rmJt4RnG8lK9m4WBiqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.436 [XNIO-1 task-2] a09rmJt4RnG8lK9m4WBiqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.436 [XNIO-1 task-2] a09rmJt4RnG8lK9m4WBiqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.475 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e586a5ff +09:12:39.479 [XNIO-1 task-2] noNzv-hpRCeZq4tTGP8oDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bbb02eb7-4abb-4dd5-bb9b-ad69b0a23b6c, base path is set to: null +09:12:39.479 [XNIO-1 task-2] noNzv-hpRCeZq4tTGP8oDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.479 [XNIO-1 task-2] noNzv-hpRCeZq4tTGP8oDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.479 [XNIO-1 task-2] noNzv-hpRCeZq4tTGP8oDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bbb02eb7-4abb-4dd5-bb9b-ad69b0a23b6c, base path is set to: null +09:12:39.479 [XNIO-1 task-2] noNzv-hpRCeZq4tTGP8oDA DEBUG com.networknt.schema.TypeValidator debug - validate( "bbb02eb7-4abb-4dd5-bb9b-ad69b0a23b6c", "bbb02eb7-4abb-4dd5-bb9b-ad69b0a23b6c", clientId) +09:12:39.489 [XNIO-1 task-2] eDSyFqK1RsGc9u6I4LRiyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6e2c789-20f7-4e55-911b-056d6be4316e +09:12:39.489 [XNIO-1 task-2] eDSyFqK1RsGc9u6I4LRiyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.489 [XNIO-1 task-2] eDSyFqK1RsGc9u6I4LRiyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.489 [XNIO-1 task-2] eDSyFqK1RsGc9u6I4LRiyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d6e2c789-20f7-4e55-911b-056d6be4316e +09:12:39.503 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.503 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.503 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4fac394-52bb-4550-97ac-00179c88","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.504 [XNIO-1 task-2] VIEiEGSkToqiayrKXETmjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.507 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.507 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.507 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.508 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.508 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.508 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.508 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.508 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.508 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.508 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.510 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.510 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6fadee23-cc84-4630-b593-1036c3d2","clientDesc":"cba93994-ae52-484e-af60-0ac55d690082","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.510 [XNIO-1 task-2] uchhtvQqSpOXRjbc25aiEA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.517 [XNIO-1 task-2] ST32eBF9RNSqMqCNZq-yYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.517 [XNIO-1 task-2] ST32eBF9RNSqMqCNZq-yYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.517 [XNIO-1 task-2] ST32eBF9RNSqMqCNZq-yYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.534 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ceb25cb0 +09:12:39.538 [XNIO-1 task-2] _oReKACjQjKDnAxMe7yQaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.538 [XNIO-1 task-2] _oReKACjQjKDnAxMe7yQaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.538 [XNIO-1 task-2] _oReKACjQjKDnAxMe7yQaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.571 [XNIO-1 task-2] 7wU2AM1gR7et3UKsv6_iKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.572 [XNIO-1 task-2] 7wU2AM1gR7et3UKsv6_iKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.572 [XNIO-1 task-2] 7wU2AM1gR7et3UKsv6_iKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.572 [XNIO-1 task-2] 7wU2AM1gR7et3UKsv6_iKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.590 [XNIO-1 task-2] tTIb5XrbRc2isRP3sdsTLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dcd0428d-55ae-4a90-b4f4-47ca410b1db4 +09:12:39.590 [XNIO-1 task-2] tTIb5XrbRc2isRP3sdsTLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.590 [XNIO-1 task-2] tTIb5XrbRc2isRP3sdsTLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.591 [XNIO-1 task-2] tTIb5XrbRc2isRP3sdsTLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dcd0428d-55ae-4a90-b4f4-47ca410b1db4 +09:12:39.596 [XNIO-1 task-2] yUD3vpUcRkGwOZlOL6hcvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.596 [XNIO-1 task-2] yUD3vpUcRkGwOZlOL6hcvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.596 [XNIO-1 task-2] yUD3vpUcRkGwOZlOL6hcvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.596 [XNIO-1 task-2] yUD3vpUcRkGwOZlOL6hcvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:39.617 [XNIO-1 task-2] CNhdh8zGR0SXJq6YzvYceA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dcd0428d-55ae-4a90-b4f4-47ca410b1db4, base path is set to: null +09:12:39.617 [XNIO-1 task-2] CNhdh8zGR0SXJq6YzvYceA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.617 [XNIO-1 task-2] CNhdh8zGR0SXJq6YzvYceA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.617 [XNIO-1 task-2] CNhdh8zGR0SXJq6YzvYceA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dcd0428d-55ae-4a90-b4f4-47ca410b1db4, base path is set to: null +09:12:39.617 [XNIO-1 task-2] CNhdh8zGR0SXJq6YzvYceA DEBUG com.networknt.schema.TypeValidator debug - validate( "dcd0428d-55ae-4a90-b4f4-47ca410b1db4", "dcd0428d-55ae-4a90-b4f4-47ca410b1db4", clientId) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "9affd631-746f-4d99-bb0c-1e0e1ca86bc9", {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "7d5cf049-8ff0-4eb1-8548-4b5ca254", {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:39.627 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7d5cf049-8ff0-4eb1-8548-4b5ca254","clientDesc":"9affd631-746f-4d99-bb0c-1e0e1ca86bc9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:39.628 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.628 [XNIO-1 task-2] cTemfi_RTMu7XO5oZYlZuw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.641 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.642 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.642 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.642 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20bf1936-ea0e-4aea-87fc-3465fb25","clientDesc":"0f644413-02ee-4a42-842b-0af869b64ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.642 [XNIO-1 task-2] Dhm_bIAFR7GClm5R4JYghQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.644 [XNIO-1 task-2] p2ycFIBXRKWLWPtdRQ2xcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/62588f1d-6b9e-4011-b80c-de11c6ac9a34 +09:12:39.644 [XNIO-1 task-2] p2ycFIBXRKWLWPtdRQ2xcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.644 [XNIO-1 task-2] p2ycFIBXRKWLWPtdRQ2xcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.644 [XNIO-1 task-2] p2ycFIBXRKWLWPtdRQ2xcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/62588f1d-6b9e-4011-b80c-de11c6ac9a34 +09:12:39.647 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7efb337e +09:12:39.655 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2d976acf +09:12:39.658 [XNIO-1 task-2] p5WqqArxS4erKTu1WELraw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0, base path is set to: null +09:12:39.658 [XNIO-1 task-2] p5WqqArxS4erKTu1WELraw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.658 [XNIO-1 task-2] p5WqqArxS4erKTu1WELraw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.658 [XNIO-1 task-2] p5WqqArxS4erKTu1WELraw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0, base path is set to: null +09:12:39.659 [XNIO-1 task-2] p5WqqArxS4erKTu1WELraw DEBUG com.networknt.schema.TypeValidator debug - validate( "14c2e0a6-bf63-4f6c-bb8e-5b080613adf0", "14c2e0a6-bf63-4f6c-bb8e-5b080613adf0", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:39.666 [XNIO-1 task-2] p5WqqArxS4erKTu1WELraw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/14c2e0a6-bf63-4f6c-bb8e-5b080613adf0} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.676 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.677 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.677 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.677 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.677 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37fbb7af-a900-47b1-9a9b-2e8b5923","clientDesc":"40bb173d-c72a-4651-9212-e548d216c935","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.677 [XNIO-1 task-2] M2awUVQ-Q2yhhu1opRqV7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.682 [XNIO-1 task-2] RCkv3P3qSGezyqO1XT_dIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4423100e-2fb6-4485-8a36-8e32b79a17ba +09:12:39.682 [XNIO-1 task-2] RCkv3P3qSGezyqO1XT_dIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.682 [XNIO-1 task-2] RCkv3P3qSGezyqO1XT_dIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.682 [XNIO-1 task-2] RCkv3P3qSGezyqO1XT_dIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4423100e-2fb6-4485-8a36-8e32b79a17ba +09:12:39.691 [XNIO-1 task-2] RCkv3P3qSGezyqO1XT_dIw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.692 [XNIO-1 task-2] RCkv3P3qSGezyqO1XT_dIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.696 [XNIO-1 task-2] un8OaJWGQlSTJA78wIqGkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.696 [XNIO-1 task-2] un8OaJWGQlSTJA78wIqGkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.696 [XNIO-1 task-2] un8OaJWGQlSTJA78wIqGkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.700 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7efb337e +09:12:39.710 [XNIO-1 task-2] 7I1i5gByRJyZwSdSK9fD2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98 +09:12:39.710 [XNIO-1 task-2] 7I1i5gByRJyZwSdSK9fD2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.710 [XNIO-1 task-2] 7I1i5gByRJyZwSdSK9fD2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.710 [XNIO-1 task-2] 7I1i5gByRJyZwSdSK9fD2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e8b66747-53a8-4a4e-a9d9-bfc16e37eb98 +09:12:39.714 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7efb337e +09:12:39.720 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.720 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.720 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG com.networknt.schema.TypeValidator debug - validate( "039fea3d-bb6b-4e83-a15a-826cd57d0aba", {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG com.networknt.schema.TypeValidator debug - validate( "21e54928-c337-4d03-ad62-85efd1d6", {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"21e54928-c337-4d03-ad62-85efd1d6","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.721 [XNIO-1 task-2] Nz-AMdKWSKOSa-QP-zSuig DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.723 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.724 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c7ebdfe9-5141-4602-a13f-d38815c0","clientDesc":"039fea3d-bb6b-4e83-a15a-826cd57d0aba","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.725 [XNIO-1 task-2] 71tEk7OnRRGvrlf3ZfcmMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.729 [XNIO-1 task-2] RrCVp09IQLKUPIJlcTOOuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.729 [XNIO-1 task-2] RrCVp09IQLKUPIJlcTOOuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.729 [XNIO-1 task-2] RrCVp09IQLKUPIJlcTOOuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.729 [XNIO-1 task-2] RrCVp09IQLKUPIJlcTOOuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.740 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5817001f-db2a-49f4-bab4-ef4eb8699716 +09:12:39.748 [XNIO-1 task-2] OPnxyjdART-2Umn4O_nLhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.748 [XNIO-1 task-2] OPnxyjdART-2Umn4O_nLhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.748 [XNIO-1 task-2] OPnxyjdART-2Umn4O_nLhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.748 [XNIO-1 task-2] OPnxyjdART-2Umn4O_nLhw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:39.764 [XNIO-1 task-2] 36Hdg4NDSOG7NCEamBJ8MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14bccd35-1bd4-4f6e-ae5c-15ba51354fa7, base path is set to: null +09:12:39.764 [XNIO-1 task-2] 36Hdg4NDSOG7NCEamBJ8MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.764 [XNIO-1 task-2] 36Hdg4NDSOG7NCEamBJ8MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.764 [XNIO-1 task-2] 36Hdg4NDSOG7NCEamBJ8MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14bccd35-1bd4-4f6e-ae5c-15ba51354fa7, base path is set to: null +09:12:39.764 [XNIO-1 task-2] 36Hdg4NDSOG7NCEamBJ8MA DEBUG com.networknt.schema.TypeValidator debug - validate( "14bccd35-1bd4-4f6e-ae5c-15ba51354fa7", "14bccd35-1bd4-4f6e-ae5c-15ba51354fa7", clientId) +09:12:39.772 [XNIO-1 task-2] AiT0ZH5GTpa8AeaeH-D5wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.772 [XNIO-1 task-2] AiT0ZH5GTpa8AeaeH-D5wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.772 [XNIO-1 task-2] AiT0ZH5GTpa8AeaeH-D5wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.790 [XNIO-1 task-2] u-xpSjf5ToKivm7vXvHPvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.790 [XNIO-1 task-2] u-xpSjf5ToKivm7vXvHPvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.790 [XNIO-1 task-2] u-xpSjf5ToKivm7vXvHPvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.802 [XNIO-1 task-2] bklA6A7yQL24jrq39ddsPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8071bac4-7057-4bda-830a-bd7c35931a98, base path is set to: null +09:12:39.802 [XNIO-1 task-2] bklA6A7yQL24jrq39ddsPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.803 [XNIO-1 task-2] bklA6A7yQL24jrq39ddsPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:39.803 [XNIO-1 task-2] bklA6A7yQL24jrq39ddsPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8071bac4-7057-4bda-830a-bd7c35931a98, base path is set to: null +09:12:39.803 [XNIO-1 task-2] bklA6A7yQL24jrq39ddsPA DEBUG com.networknt.schema.TypeValidator debug - validate( "8071bac4-7057-4bda-830a-bd7c35931a98", "8071bac4-7057-4bda-830a-bd7c35931a98", clientId) +09:12:39.812 [XNIO-1 task-2] 2ofNwO4uRs6h6MLLTbvnfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:39.812 [XNIO-1 task-2] 2ofNwO4uRs6h6MLLTbvnfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.812 [XNIO-1 task-2] 2ofNwO4uRs6h6MLLTbvnfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.813 [XNIO-1 task-2] 2ofNwO4uRs6h6MLLTbvnfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:39.813 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:12:39.817 [XNIO-1 task-2] 2ofNwO4uRs6h6MLLTbvnfg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:39.821 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.821 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:39.821 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86ff74bf-9255-48cc-a87a-95583b73","clientDesc":"ce976dda-c501-4122-81ba-f9963556a35d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:39.822 [XNIO-1 task-2] bmwH_U0eQViy0nRv_dUSAg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:39.831 [XNIO-1 task-2] qe2mAk-QQFOahcl8uDJ5sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:39.831 [XNIO-1 task-2] qe2mAk-QQFOahcl8uDJ5sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:39.831 [XNIO-1 task-2] qe2mAk-QQFOahcl8uDJ5sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:39.831 [XNIO-1 task-2] qe2mAk-QQFOahcl8uDJ5sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +09:12:39.831 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cdd0d759-d275-4bcb-8b65-eb14e1b03b34 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +09:12:39.836 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4853a5b5 +09:12:40.016 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:757ebdff-b3b7-433d-9c3f-c71381f2bcc2 +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:42.285 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:757ebdff-b3b7-433d-9c3f-c71381f2bcc2 +09:12:42.287 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4853a5b5 +09:12:42.295 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3de858b7-2699-4cb6-ae7e-c91a72ebe22d +09:12:45.493 [XNIO-1 task-2] hzebeYnZSa2UFtL1aT_L4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.494 [XNIO-1 task-2] hzebeYnZSa2UFtL1aT_L4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.517 [XNIO-1 task-2] hzebeYnZSa2UFtL1aT_L4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.565 [XNIO-1 task-2] R8yjIuSPSqWZD0naHmCt_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.565 [XNIO-1 task-2] R8yjIuSPSqWZD0naHmCt_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.565 [XNIO-1 task-2] R8yjIuSPSqWZD0naHmCt_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.565 [XNIO-1 task-2] R8yjIuSPSqWZD0naHmCt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.572 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.573 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b0206fd-23e7-47a8-837f-4898c5cf","clientDesc":"7be41688-b595-41ac-b21a-3f39aae7f1e1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.573 [XNIO-1 task-2] 65jiNDCiTNSh0zWhNFSaeg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.575 [XNIO-1 task-2] xz3KMExmQyyG6CNxkJW3Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.575 [XNIO-1 task-2] xz3KMExmQyyG6CNxkJW3Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.575 [XNIO-1 task-2] xz3KMExmQyyG6CNxkJW3Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.586 [XNIO-1 task-2] lmQD-XI9SiGYu0Jwju4kUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c8da6160-1bda-4c05-9e0e-7cfd6e354356 +09:12:45.586 [XNIO-1 task-2] lmQD-XI9SiGYu0Jwju4kUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.586 [XNIO-1 task-2] lmQD-XI9SiGYu0Jwju4kUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.586 [XNIO-1 task-2] lmQD-XI9SiGYu0Jwju4kUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c8da6160-1bda-4c05-9e0e-7cfd6e354356 +09:12:45.592 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.592 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.592 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"455a05ed-f7f3-467f-9d0c-2dccf3ca","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.593 [XNIO-1 task-2] P43-dJbbS2-nsHyJEeq_8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.595 [XNIO-1 task-2] 3KQ2mjVyTgiAq4-MJdFoxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.595 [XNIO-1 task-2] 3KQ2mjVyTgiAq4-MJdFoxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.595 [XNIO-1 task-2] 3KQ2mjVyTgiAq4-MJdFoxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.606 [XNIO-1 task-2] zY5Z-mDVQeaFbKQePe2JdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b8b48a0d-a7f4-47d2-8575-4a2a199c2b0e +09:12:45.606 [XNIO-1 task-2] zY5Z-mDVQeaFbKQePe2JdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.606 [XNIO-1 task-2] zY5Z-mDVQeaFbKQePe2JdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.606 [XNIO-1 task-2] zY5Z-mDVQeaFbKQePe2JdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b8b48a0d-a7f4-47d2-8575-4a2a199c2b0e +09:12:45.608 [XNIO-1 task-2] C6wKVvCUTjWsfV3oAFLQhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b8b48a0d-a7f4-47d2-8575-4a2a199c2b0e, base path is set to: null +09:12:45.608 [XNIO-1 task-2] C6wKVvCUTjWsfV3oAFLQhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.608 [XNIO-1 task-2] C6wKVvCUTjWsfV3oAFLQhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.608 [XNIO-1 task-2] C6wKVvCUTjWsfV3oAFLQhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b8b48a0d-a7f4-47d2-8575-4a2a199c2b0e, base path is set to: null +09:12:45.608 [XNIO-1 task-2] C6wKVvCUTjWsfV3oAFLQhA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b48a0d-a7f4-47d2-8575-4a2a199c2b0e", "b8b48a0d-a7f4-47d2-8575-4a2a199c2b0e", clientId) +09:12:45.613 [XNIO-1 task-2] V2ABjAmaQxCSQzQGzQNcKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.613 [XNIO-1 task-2] V2ABjAmaQxCSQzQGzQNcKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.614 [XNIO-1 task-2] V2ABjAmaQxCSQzQGzQNcKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.614 [XNIO-1 task-2] V2ABjAmaQxCSQzQGzQNcKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.616 [XNIO-1 task-2] zYj-PdZtSUSnj0lxNeEaoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.616 [XNIO-1 task-2] zYj-PdZtSUSnj0lxNeEaoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.616 [XNIO-1 task-2] zYj-PdZtSUSnj0lxNeEaoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.616 [XNIO-1 task-2] zYj-PdZtSUSnj0lxNeEaoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.621 [XNIO-1 task-2] Po1j8eROTM-CR9xPhDRSfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.621 [XNIO-1 task-2] Po1j8eROTM-CR9xPhDRSfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.621 [XNIO-1 task-2] Po1j8eROTM-CR9xPhDRSfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.621 [XNIO-1 task-2] Po1j8eROTM-CR9xPhDRSfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.631 [XNIO-1 task-2] jmqdlemXSI-k4D7n_8pfgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.631 [XNIO-1 task-2] jmqdlemXSI-k4D7n_8pfgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.631 [XNIO-1 task-2] jmqdlemXSI-k4D7n_8pfgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.631 [XNIO-1 task-2] jmqdlemXSI-k4D7n_8pfgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.632 [XNIO-1 task-2] jmqdlemXSI-k4D7n_8pfgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", clientId) +09:12:45.633 [XNIO-1 task-2] YlcNCE9lQOSksa-8DcRHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.633 [XNIO-1 task-2] YlcNCE9lQOSksa-8DcRHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.633 [XNIO-1 task-2] YlcNCE9lQOSksa-8DcRHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.639 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d7a90fe2-01b7-4acd-b961-10526f43bb42 +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.644 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ab8277c-47e4-418a-ba5b-bae2d058","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.645 [XNIO-1 task-2] N6fKjEoKQwifTLDdfUx0bw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.646 [XNIO-1 task-2] KpEZ6suDQd6JVvIjMFYdvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.646 [XNIO-1 task-2] KpEZ6suDQd6JVvIjMFYdvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.646 [XNIO-1 task-2] KpEZ6suDQd6JVvIjMFYdvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.646 [XNIO-1 task-2] KpEZ6suDQd6JVvIjMFYdvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.648 [XNIO-1 task-2] 6yR6eK_JR8izeik9wibXUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.648 [XNIO-1 task-2] 6yR6eK_JR8izeik9wibXUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.648 [XNIO-1 task-2] 6yR6eK_JR8izeik9wibXUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.649 [XNIO-1 task-2] 6yR6eK_JR8izeik9wibXUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.649 [XNIO-1 task-2] 6yR6eK_JR8izeik9wibXUg DEBUG com.networknt.schema.TypeValidator debug - validate( "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", clientId) +09:12:45.650 [XNIO-1 task-2] yBZdnhoCTI6fjJR60mCPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.650 [XNIO-1 task-2] yBZdnhoCTI6fjJR60mCPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.650 [XNIO-1 task-2] yBZdnhoCTI6fjJR60mCPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.650 [XNIO-1 task-2] yBZdnhoCTI6fjJR60mCPmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:45.656 [XNIO-1 task-2] TpLoOxcNSPWi0IC4f93Z_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.656 [XNIO-1 task-2] TpLoOxcNSPWi0IC4f93Z_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.656 [XNIO-1 task-2] TpLoOxcNSPWi0IC4f93Z_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.671 [XNIO-1 task-2] -vveKebETwmMDjEaVZh5DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.671 [XNIO-1 task-2] -vveKebETwmMDjEaVZh5DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.671 [XNIO-1 task-2] -vveKebETwmMDjEaVZh5DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.671 [XNIO-1 task-2] -vveKebETwmMDjEaVZh5DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.672 [XNIO-1 task-2] 3bX0EsHqQGOIjsdwnjmarQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d7a90fe2-01b7-4acd-b961-10526f43bb42, base path is set to: null +09:12:45.672 [XNIO-1 task-2] 3bX0EsHqQGOIjsdwnjmarQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.673 [XNIO-1 task-2] 3bX0EsHqQGOIjsdwnjmarQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.673 [XNIO-1 task-2] 3bX0EsHqQGOIjsdwnjmarQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d7a90fe2-01b7-4acd-b961-10526f43bb42, base path is set to: null +09:12:45.673 [XNIO-1 task-2] 3bX0EsHqQGOIjsdwnjmarQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7a90fe2-01b7-4acd-b961-10526f43bb42", "d7a90fe2-01b7-4acd-b961-10526f43bb42", clientId) +09:12:45.674 [XNIO-1 task-2] OlXCJyQoQh-1qCA6aTcslA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.674 [XNIO-1 task-2] OlXCJyQoQh-1qCA6aTcslA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.674 [XNIO-1 task-2] OlXCJyQoQh-1qCA6aTcslA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.674 [XNIO-1 task-2] OlXCJyQoQh-1qCA6aTcslA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:45.681 [XNIO-1 task-2] 3c0eirOMQm2eCsQhafIYOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6a38b2a-28b0-40da-90b1-396b5ebb3660 +09:12:45.681 [XNIO-1 task-2] 3c0eirOMQm2eCsQhafIYOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.681 [XNIO-1 task-2] 3c0eirOMQm2eCsQhafIYOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.681 [XNIO-1 task-2] 3c0eirOMQm2eCsQhafIYOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6a38b2a-28b0-40da-90b1-396b5ebb3660 +09:12:45.687 [XNIO-1 task-2] tydq1JyZRxi5JoAowdEoOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.687 [XNIO-1 task-2] tydq1JyZRxi5JoAowdEoOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.687 [XNIO-1 task-2] tydq1JyZRxi5JoAowdEoOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.687 [XNIO-1 task-2] tydq1JyZRxi5JoAowdEoOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.687 [XNIO-1 task-2] tydq1JyZRxi5JoAowdEoOw DEBUG com.networknt.schema.TypeValidator debug - validate( "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", clientId) +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "861f5a11-2df0-4b07-8b89-f5bbf3b7ef20", {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "20480d92-0519-434c-baa7-66264d4c", {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:45.689 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:45.690 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"20480d92-0519-434c-baa7-66264d4c","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:45.690 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.690 [XNIO-1 task-2] 4FwXrgH3Tg-xY7v4gBJbDw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.692 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.693 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.693 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.693 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f534fc4-a9d9-4e36-95af-37457493","clientDesc":"861f5a11-2df0-4b07-8b89-f5bbf3b7ef20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.693 [XNIO-1 task-2] wxy9Z6qQSfaaJjj9iO80cw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.694 [XNIO-1 task-2] uOrQSAijQO2Rt3filc4cLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d7a90fe2-01b7-4acd-b961-10526f43bb42 +09:12:45.694 [XNIO-1 task-2] uOrQSAijQO2Rt3filc4cLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.695 [XNIO-1 task-2] uOrQSAijQO2Rt3filc4cLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.695 [XNIO-1 task-2] uOrQSAijQO2Rt3filc4cLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d7a90fe2-01b7-4acd-b961-10526f43bb42 +09:12:45.695 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d7a90fe2-01b7-4acd-b961-10526f43bb42 +09:12:45.699 [XNIO-1 task-2] Szhn5qNdS7CWTgusljEnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.699 [XNIO-1 task-2] Szhn5qNdS7CWTgusljEnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.699 [XNIO-1 task-2] Szhn5qNdS7CWTgusljEnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.699 [XNIO-1 task-2] Szhn5qNdS7CWTgusljEnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454 +09:12:45.701 [XNIO-1 task-2] K_p3_EM-Qvi7Men4hjMWJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.701 [XNIO-1 task-2] K_p3_EM-Qvi7Men4hjMWJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.701 [XNIO-1 task-2] K_p3_EM-Qvi7Men4hjMWJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.701 [XNIO-1 task-2] K_p3_EM-Qvi7Men4hjMWJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6fca4d97-8546-48c6-aa92-3c5d2e8e2454, base path is set to: null +09:12:45.701 [XNIO-1 task-2] K_p3_EM-Qvi7Men4hjMWJA DEBUG com.networknt.schema.TypeValidator debug - validate( "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", "6fca4d97-8546-48c6-aa92-3c5d2e8e2454", clientId) +09:12:45.707 [XNIO-1 task-2] PWv--0R5SZuZ9_Akp2VYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.707 [XNIO-1 task-2] PWv--0R5SZuZ9_Akp2VYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.707 [XNIO-1 task-2] PWv--0R5SZuZ9_Akp2VYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.707 [XNIO-1 task-2] PWv--0R5SZuZ9_Akp2VYxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:45.712 [XNIO-1 task-2] qx-FEYEbTsq_Hk9E-r76sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.712 [XNIO-1 task-2] qx-FEYEbTsq_Hk9E-r76sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.712 [XNIO-1 task-2] qx-FEYEbTsq_Hk9E-r76sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.723 [XNIO-1 task-2] 2DuiYFcgTZ29O4LRWYuSlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.723 [XNIO-1 task-2] 2DuiYFcgTZ29O4LRWYuSlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.723 [XNIO-1 task-2] 2DuiYFcgTZ29O4LRWYuSlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.728 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9b57ae59-53f4-457f-ba42-f3a91d09eede +09:12:45.732 [XNIO-1 task-2] aHKBpK2rSVSfwxA0dWXfOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9b57ae59-53f4-457f-ba42-f3a91d09eede, base path is set to: null +09:12:45.733 [XNIO-1 task-2] aHKBpK2rSVSfwxA0dWXfOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.733 [XNIO-1 task-2] aHKBpK2rSVSfwxA0dWXfOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.733 [XNIO-1 task-2] aHKBpK2rSVSfwxA0dWXfOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9b57ae59-53f4-457f-ba42-f3a91d09eede, base path is set to: null +09:12:45.733 [XNIO-1 task-2] aHKBpK2rSVSfwxA0dWXfOA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b57ae59-53f4-457f-ba42-f3a91d09eede", "9b57ae59-53f4-457f-ba42-f3a91d09eede", clientId) +09:12:45.735 [XNIO-1 task-2] jKBhRTeSQzuBm4ayo_N2QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.735 [XNIO-1 task-2] jKBhRTeSQzuBm4ayo_N2QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.735 [XNIO-1 task-2] jKBhRTeSQzuBm4ayo_N2QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.735 [XNIO-1 task-2] jKBhRTeSQzuBm4ayo_N2QQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:45.748 [XNIO-1 task-2] HFpVeXQeQouIIvSWeXBPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2110b251-dace-439a-9b81-f4d48f39d794 +09:12:45.748 [XNIO-1 task-2] HFpVeXQeQouIIvSWeXBPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.748 [XNIO-1 task-2] HFpVeXQeQouIIvSWeXBPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.748 [XNIO-1 task-2] HFpVeXQeQouIIvSWeXBPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2110b251-dace-439a-9b81-f4d48f39d794 +09:12:45.750 [XNIO-1 task-2] M7gDB6xvRJOcxPCks2AgIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2110b251-dace-439a-9b81-f4d48f39d794, base path is set to: null +09:12:45.750 [XNIO-1 task-2] M7gDB6xvRJOcxPCks2AgIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.750 [XNIO-1 task-2] M7gDB6xvRJOcxPCks2AgIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.750 [XNIO-1 task-2] M7gDB6xvRJOcxPCks2AgIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2110b251-dace-439a-9b81-f4d48f39d794, base path is set to: null +09:12:45.750 [XNIO-1 task-2] M7gDB6xvRJOcxPCks2AgIw DEBUG com.networknt.schema.TypeValidator debug - validate( "2110b251-dace-439a-9b81-f4d48f39d794", "2110b251-dace-439a-9b81-f4d48f39d794", clientId) +09:12:45.753 [XNIO-1 task-2] _JxfImnDTEWhSE4EdLYKew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9b57ae59-53f4-457f-ba42-f3a91d09eede +09:12:45.753 [XNIO-1 task-2] _JxfImnDTEWhSE4EdLYKew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.753 [XNIO-1 task-2] _JxfImnDTEWhSE4EdLYKew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.753 [XNIO-1 task-2] _JxfImnDTEWhSE4EdLYKew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9b57ae59-53f4-457f-ba42-f3a91d09eede +09:12:45.754 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9b57ae59-53f4-457f-ba42-f3a91d09eede +09:12:45.758 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.758 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.758 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "819b102f-d859-45cb-983f-5b31361e7c5d", {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a6e2e0bd-597a-4939-beb3-0e3af652", {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a6e2e0bd-597a-4939-beb3-0e3af652","clientDesc":"819b102f-d859-45cb-983f-5b31361e7c5d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.759 [XNIO-1 task-2] gjPqj9YzR1OFQ568qFgxfQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:45.761 [XNIO-1 task-2] OKQZwVD5Rt25uOT3QsPpIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2110b251-dace-439a-9b81-f4d48f39d794, base path is set to: null +09:12:45.761 [XNIO-1 task-2] OKQZwVD5Rt25uOT3QsPpIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.761 [XNIO-1 task-2] OKQZwVD5Rt25uOT3QsPpIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.761 [XNIO-1 task-2] OKQZwVD5Rt25uOT3QsPpIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2110b251-dace-439a-9b81-f4d48f39d794, base path is set to: null +09:12:45.761 [XNIO-1 task-2] OKQZwVD5Rt25uOT3QsPpIg DEBUG com.networknt.schema.TypeValidator debug - validate( "2110b251-dace-439a-9b81-f4d48f39d794", "2110b251-dace-439a-9b81-f4d48f39d794", clientId) +09:12:45.767 [XNIO-1 task-2] ovwu3B3DTEC6gYCuwNtruQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.767 [XNIO-1 task-2] ovwu3B3DTEC6gYCuwNtruQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.767 [XNIO-1 task-2] ovwu3B3DTEC6gYCuwNtruQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.777 [XNIO-1 task-2] KOgggbyLQIWELpHrZ-QwEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6b655ac4-5056-469b-886d-0f003ffed85f +09:12:45.777 [XNIO-1 task-2] KOgggbyLQIWELpHrZ-QwEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.777 [XNIO-1 task-2] KOgggbyLQIWELpHrZ-QwEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.777 [XNIO-1 task-2] KOgggbyLQIWELpHrZ-QwEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6b655ac4-5056-469b-886d-0f003ffed85f +09:12:45.785 [XNIO-1 task-2] Bx9cjhVDT4ytdEwz30D5CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.785 [XNIO-1 task-2] Bx9cjhVDT4ytdEwz30D5CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.785 [XNIO-1 task-2] Bx9cjhVDT4ytdEwz30D5CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.785 [XNIO-1 task-2] Bx9cjhVDT4ytdEwz30D5CA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.790 [XNIO-1 task-2] boRtS5e5RMKFBcZ8Df_VXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.790 [XNIO-1 task-2] boRtS5e5RMKFBcZ8Df_VXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.790 [XNIO-1 task-2] boRtS5e5RMKFBcZ8Df_VXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.790 [XNIO-1 task-2] boRtS5e5RMKFBcZ8Df_VXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.796 [XNIO-1 task-2] Fgs4ZMkjSMaeUS-BpJzw3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.796 [XNIO-1 task-2] Fgs4ZMkjSMaeUS-BpJzw3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.796 [XNIO-1 task-2] Fgs4ZMkjSMaeUS-BpJzw3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.801 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1f65f90-ab34-4749-99b5-c5f1c7389f1e +09:12:45.801 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1f65f90-ab34-4749-99b5-c5f1c7389f1e +09:12:45.806 [XNIO-1 task-2] ioaxYroyQSu7tJmmWM3g6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.806 [XNIO-1 task-2] ioaxYroyQSu7tJmmWM3g6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.806 [XNIO-1 task-2] ioaxYroyQSu7tJmmWM3g6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.812 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5d83d269-a42d-48a1-b151-b21fcd9edff0 +09:12:45.816 [XNIO-1 task-2] YHLytCnLRMebkVk8cocnPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1f65f90-ab34-4749-99b5-c5f1c7389f1e, base path is set to: null +09:12:45.816 [XNIO-1 task-2] YHLytCnLRMebkVk8cocnPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.816 [XNIO-1 task-2] YHLytCnLRMebkVk8cocnPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.816 [XNIO-1 task-2] YHLytCnLRMebkVk8cocnPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1f65f90-ab34-4749-99b5-c5f1c7389f1e, base path is set to: null +09:12:45.817 [XNIO-1 task-2] YHLytCnLRMebkVk8cocnPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c1f65f90-ab34-4749-99b5-c5f1c7389f1e", "c1f65f90-ab34-4749-99b5-c5f1c7389f1e", clientId) +09:12:45.821 [XNIO-1 task-2] K1M-o1-kTCmfIk8BzzjwTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d83d269-a42d-48a1-b151-b21fcd9edff0, base path is set to: null +09:12:45.821 [XNIO-1 task-2] K1M-o1-kTCmfIk8BzzjwTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.821 [XNIO-1 task-2] K1M-o1-kTCmfIk8BzzjwTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.821 [XNIO-1 task-2] K1M-o1-kTCmfIk8BzzjwTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d83d269-a42d-48a1-b151-b21fcd9edff0, base path is set to: null +09:12:45.822 [XNIO-1 task-2] K1M-o1-kTCmfIk8BzzjwTg DEBUG com.networknt.schema.TypeValidator debug - validate( "5d83d269-a42d-48a1-b151-b21fcd9edff0", "5d83d269-a42d-48a1-b151-b21fcd9edff0", clientId) +09:12:45.826 [XNIO-1 task-2] k4X0uGyTTk6N_CG0RgTmfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.826 [XNIO-1 task-2] k4X0uGyTTk6N_CG0RgTmfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.827 [XNIO-1 task-2] k4X0uGyTTk6N_CG0RgTmfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.838 [XNIO-1 task-2] QB8WLhpxR-yeTLaptbBNKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac, base path is set to: null +09:12:45.838 [XNIO-1 task-2] QB8WLhpxR-yeTLaptbBNKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.838 [XNIO-1 task-2] QB8WLhpxR-yeTLaptbBNKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.838 [XNIO-1 task-2] QB8WLhpxR-yeTLaptbBNKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac, base path is set to: null +09:12:45.838 [XNIO-1 task-2] QB8WLhpxR-yeTLaptbBNKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5de75a39-73b8-48e1-b921-234901a691ac", "5de75a39-73b8-48e1-b921-234901a691ac", clientId) +09:12:45.840 [XNIO-1 task-2] ZLC3HQ7AQwa8vq9nEFDvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac +09:12:45.840 [XNIO-1 task-2] ZLC3HQ7AQwa8vq9nEFDvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.840 [XNIO-1 task-2] ZLC3HQ7AQwa8vq9nEFDvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.840 [XNIO-1 task-2] ZLC3HQ7AQwa8vq9nEFDvZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac +09:12:45.842 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.842 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.842 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.842 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55267c-ebea-4b51-b215-1ed7fadd","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.843 [XNIO-1 task-2] 8JvwIYAlQtil5OPm2Y2VkA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.845 [XNIO-1 task-2] PzH4JPRLQRqBKsoUS5cvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac +09:12:45.845 [XNIO-1 task-2] PzH4JPRLQRqBKsoUS5cvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.845 [XNIO-1 task-2] PzH4JPRLQRqBKsoUS5cvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.845 [XNIO-1 task-2] PzH4JPRLQRqBKsoUS5cvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac +09:12:45.846 [XNIO-1 task-2] XGdnKlXOSd-JIScsu0BSFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.846 [XNIO-1 task-2] XGdnKlXOSd-JIScsu0BSFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.846 [XNIO-1 task-2] XGdnKlXOSd-JIScsu0BSFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.847 [XNIO-1 task-2] XGdnKlXOSd-JIScsu0BSFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.852 [XNIO-1 task-2] H6bNX_KBTwCSCLEn44oNgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.852 [XNIO-1 task-2] H6bNX_KBTwCSCLEn44oNgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.852 [XNIO-1 task-2] H6bNX_KBTwCSCLEn44oNgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.863 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.864 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.864 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.864 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c6e2264-df1f-4dd4-814b-1cc97983","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.864 [XNIO-1 task-2] VgwxWVIhRb-ZoE90ogs2Kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.866 [XNIO-1 task-2] RwyANZUiSneIScREv9-myw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.866 [XNIO-1 task-2] RwyANZUiSneIScREv9-myw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.866 [XNIO-1 task-2] RwyANZUiSneIScREv9-myw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.876 [XNIO-1 task-2] KLWtx5nOQqyt3Ah-5OwjoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac +09:12:45.876 [XNIO-1 task-2] KLWtx5nOQqyt3Ah-5OwjoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.876 [XNIO-1 task-2] KLWtx5nOQqyt3Ah-5OwjoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.876 [XNIO-1 task-2] KLWtx5nOQqyt3Ah-5OwjoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac +09:12:45.878 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.878 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.878 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.878 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.878 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b82682b6-1b1e-4fb3-9028-44d01fe0","clientDesc":"9f009d92-5221-4911-b44e-0326dd0b8186","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.879 [XNIO-1 task-2] qeFW5eKTT1OmtYqZU9Vrdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.881 [XNIO-1 task-2] TShDcowdR-O1h3qE_wM0sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9dca849-9b56-4967-abcc-e7efead4bdea +09:12:45.881 [XNIO-1 task-2] TShDcowdR-O1h3qE_wM0sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.881 [XNIO-1 task-2] TShDcowdR-O1h3qE_wM0sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.881 [XNIO-1 task-2] TShDcowdR-O1h3qE_wM0sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d9dca849-9b56-4967-abcc-e7efead4bdea +09:12:45.883 [XNIO-1 task-2] H9dvC_NoQSyIXHseMdAx2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.883 [XNIO-1 task-2] H9dvC_NoQSyIXHseMdAx2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.883 [XNIO-1 task-2] H9dvC_NoQSyIXHseMdAx2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.893 [XNIO-1 task-2] RKwumgq9RbST5JRB1l-y1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.893 [XNIO-1 task-2] RKwumgq9RbST5JRB1l-y1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.893 [XNIO-1 task-2] RKwumgq9RbST5JRB1l-y1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.893 [XNIO-1 task-2] RKwumgq9RbST5JRB1l-y1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.899 [XNIO-1 task-2] _ji-YLrNSiCWOTN3GJQ8xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.899 [XNIO-1 task-2] _ji-YLrNSiCWOTN3GJQ8xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.899 [XNIO-1 task-2] _ji-YLrNSiCWOTN3GJQ8xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.899 [XNIO-1 task-2] _ji-YLrNSiCWOTN3GJQ8xw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:45.904 [XNIO-1 task-2] wcNbPBVXTFGGAuZalFGw3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.904 [XNIO-1 task-2] wcNbPBVXTFGGAuZalFGw3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.904 [XNIO-1 task-2] wcNbPBVXTFGGAuZalFGw3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.937 [XNIO-1 task-2] danDCHzrSsCFeeSMorbsmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94, base path is set to: null +09:12:45.937 [XNIO-1 task-2] danDCHzrSsCFeeSMorbsmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.937 [XNIO-1 task-2] danDCHzrSsCFeeSMorbsmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.937 [XNIO-1 task-2] danDCHzrSsCFeeSMorbsmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94, base path is set to: null +09:12:45.937 [XNIO-1 task-2] danDCHzrSsCFeeSMorbsmg DEBUG com.networknt.schema.TypeValidator debug - validate( "84cf5c20-ef9d-4a3e-aced-6c2da86c3f94", "84cf5c20-ef9d-4a3e-aced-6c2da86c3f94", clientId) +09:12:45.939 [XNIO-1 task-2] pUUeVA9uRrShTqAaT7CnkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94 +09:12:45.939 [XNIO-1 task-2] pUUeVA9uRrShTqAaT7CnkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.939 [XNIO-1 task-2] pUUeVA9uRrShTqAaT7CnkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:45.939 [XNIO-1 task-2] pUUeVA9uRrShTqAaT7CnkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94 +09:12:45.941 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.941 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.941 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"258a9649-c520-4235-860f-22fb8f4e","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.942 [XNIO-1 task-2] Kb2PaemmRCCe6KelBF6Y2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "e5a169d2-70b5-485c-babd-253330a8ece4", {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.944 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.945 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "b93152ec-af99-46b0-a3b0-358f5c8d", {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:45.945 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:45.945 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b93152ec-af99-46b0-a3b0-358f5c8d","clientDesc":"e5a169d2-70b5-485c-babd-253330a8ece4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:45.945 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.945 [XNIO-1 task-2] XVrhOLb_QryRWhQ_dMWJCg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:45.946 [XNIO-1 task-2] C_S91K9fSt63L9IQS9841A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94, base path is set to: null +09:12:45.946 [XNIO-1 task-2] C_S91K9fSt63L9IQS9841A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.947 [XNIO-1 task-2] C_S91K9fSt63L9IQS9841A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.947 [XNIO-1 task-2] C_S91K9fSt63L9IQS9841A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94, base path is set to: null +09:12:45.947 [XNIO-1 task-2] C_S91K9fSt63L9IQS9841A DEBUG com.networknt.schema.TypeValidator debug - validate( "84cf5c20-ef9d-4a3e-aced-6c2da86c3f94", "84cf5c20-ef9d-4a3e-aced-6c2da86c3f94", clientId) +09:12:45.948 [XNIO-1 task-2] FNSwIFQMTquBQkDROIW9bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.948 [XNIO-1 task-2] FNSwIFQMTquBQkDROIW9bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.948 [XNIO-1 task-2] FNSwIFQMTquBQkDROIW9bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG com.networknt.schema.TypeValidator debug - validate( "04f0986e-88a2-46ad-9162-303ad023f2c4", {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG com.networknt.schema.TypeValidator debug - validate( "15a0c8e4-5228-402c-8182-5b228c43", {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:45.959 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"15a0c8e4-5228-402c-8182-5b228c43","clientDesc":"04f0986e-88a2-46ad-9162-303ad023f2c4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:45.960 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.960 [XNIO-1 task-2] 6bZ9LlB5Rq236WMvyU1JGA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:45.961 [XNIO-1 task-2] aAVzOvXSRwmrA1Dp9gHFBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79f10773-457f-4819-b9bc-d108577f070c, base path is set to: null +09:12:45.961 [XNIO-1 task-2] aAVzOvXSRwmrA1Dp9gHFBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.962 [XNIO-1 task-2] aAVzOvXSRwmrA1Dp9gHFBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.962 [XNIO-1 task-2] aAVzOvXSRwmrA1Dp9gHFBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79f10773-457f-4819-b9bc-d108577f070c, base path is set to: null +09:12:45.962 [XNIO-1 task-2] aAVzOvXSRwmrA1Dp9gHFBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "79f10773-457f-4819-b9bc-d108577f070c", "79f10773-457f-4819-b9bc-d108577f070c", clientId) +09:12:45.967 [XNIO-1 task-2] 0WNg5AqGR26-LuHc9oaffA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.967 [XNIO-1 task-2] 0WNg5AqGR26-LuHc9oaffA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.967 [XNIO-1 task-2] 0WNg5AqGR26-LuHc9oaffA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.972 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:43cd5682-2475-465d-9f82-7c50e7bb45ed +09:12:45.977 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.978 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5e64776-85bd-4b4b-967e-4dcf34fa","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.979 [XNIO-1 task-2] cbJ-wkKxSMOuVwnKoAOHyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:45.980 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.980 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG com.networknt.schema.TypeValidator debug - validate( "e1e0e995-d9c8-494e-94a2-986acedf7a0c", {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1eaec1d4-0db0-48e4-9c67-31eead69", {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1eaec1d4-0db0-48e4-9c67-31eead69","clientDesc":"e1e0e995-d9c8-494e-94a2-986acedf7a0c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:45.981 [XNIO-1 task-2] CxFPBzbuQiS4CoAzUK8bvg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:45.983 [XNIO-1 task-2] EjXhJjd8QhCukgigdscXeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6b8bbf81-3348-46d1-8bae-9f1f5c73ca06, base path is set to: null +09:12:45.983 [XNIO-1 task-2] EjXhJjd8QhCukgigdscXeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:45.983 [XNIO-1 task-2] EjXhJjd8QhCukgigdscXeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:45.983 [XNIO-1 task-2] EjXhJjd8QhCukgigdscXeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6b8bbf81-3348-46d1-8bae-9f1f5c73ca06, base path is set to: null +09:12:45.983 [XNIO-1 task-2] EjXhJjd8QhCukgigdscXeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b8bbf81-3348-46d1-8bae-9f1f5c73ca06", "6b8bbf81-3348-46d1-8bae-9f1f5c73ca06", clientId) +09:12:45.988 [XNIO-1 task-2] GFfJdS5QQNeiQxrxyNt8rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.988 [XNIO-1 task-2] GFfJdS5QQNeiQxrxyNt8rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.988 [XNIO-1 task-2] GFfJdS5QQNeiQxrxyNt8rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.999 [XNIO-1 task-2] DLfGE6aSTqGBjYF2m8w0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.999 [XNIO-1 task-2] DLfGE6aSTqGBjYF2m8w0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.999 [XNIO-1 task-2] DLfGE6aSTqGBjYF2m8w0bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:45.999 [XNIO-1 task-2] DLfGE6aSTqGBjYF2m8w0bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.005 [XNIO-1 task-2] TEGHzgSvRLaVzCdIyDCRGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.005 [XNIO-1 task-2] TEGHzgSvRLaVzCdIyDCRGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.006 [XNIO-1 task-2] TEGHzgSvRLaVzCdIyDCRGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.021 [XNIO-1 task-2] J6-g9CrrT2-qQm9KY0-pLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.021 [XNIO-1 task-2] J6-g9CrrT2-qQm9KY0-pLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.021 [XNIO-1 task-2] J6-g9CrrT2-qQm9KY0-pLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.021 [XNIO-1 task-2] J6-g9CrrT2-qQm9KY0-pLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.027 [XNIO-1 task-2] r47LTZTzRayg205ya8n1jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.027 [XNIO-1 task-2] r47LTZTzRayg205ya8n1jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.027 [XNIO-1 task-2] r47LTZTzRayg205ya8n1jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.039 [XNIO-1 task-2] Jw8Ko6mdQLapCDQ-DW7n2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.039 [XNIO-1 task-2] Jw8Ko6mdQLapCDQ-DW7n2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.039 [XNIO-1 task-2] Jw8Ko6mdQLapCDQ-DW7n2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.050 [XNIO-1 task-2] cMnk6qbUR-yLsLyf42Zk9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/43cd5682-2475-465d-9f82-7c50e7bb45ed +09:12:46.050 [XNIO-1 task-2] cMnk6qbUR-yLsLyf42Zk9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.050 [XNIO-1 task-2] cMnk6qbUR-yLsLyf42Zk9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.050 [XNIO-1 task-2] cMnk6qbUR-yLsLyf42Zk9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/43cd5682-2475-465d-9f82-7c50e7bb45ed +09:12:46.052 [XNIO-1 task-2] YsWzVFGHSvigbrKgbRyAAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43cd5682-2475-465d-9f82-7c50e7bb45ed, base path is set to: null +09:12:46.052 [XNIO-1 task-2] YsWzVFGHSvigbrKgbRyAAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.052 [XNIO-1 task-2] YsWzVFGHSvigbrKgbRyAAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.052 [XNIO-1 task-2] YsWzVFGHSvigbrKgbRyAAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43cd5682-2475-465d-9f82-7c50e7bb45ed, base path is set to: null +09:12:46.052 [XNIO-1 task-2] YsWzVFGHSvigbrKgbRyAAw DEBUG com.networknt.schema.TypeValidator debug - validate( "43cd5682-2475-465d-9f82-7c50e7bb45ed", "43cd5682-2475-465d-9f82-7c50e7bb45ed", clientId) +09:12:46.054 [XNIO-1 task-2] YiybgV8uQQmkS1FsfBLVHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b02cc139-44cd-4591-a2eb-18fa291686ac +09:12:46.054 [XNIO-1 task-2] YiybgV8uQQmkS1FsfBLVHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.054 [XNIO-1 task-2] YiybgV8uQQmkS1FsfBLVHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.054 [XNIO-1 task-2] YiybgV8uQQmkS1FsfBLVHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b02cc139-44cd-4591-a2eb-18fa291686ac +09:12:46.059 [XNIO-1 task-2] STUtoustSJWjLD1aYhcFQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43cd5682-2475-465d-9f82-7c50e7bb45ed, base path is set to: null +09:12:46.059 [XNIO-1 task-2] STUtoustSJWjLD1aYhcFQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.059 [XNIO-1 task-2] STUtoustSJWjLD1aYhcFQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.059 [XNIO-1 task-2] STUtoustSJWjLD1aYhcFQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43cd5682-2475-465d-9f82-7c50e7bb45ed, base path is set to: null +09:12:46.059 [XNIO-1 task-2] STUtoustSJWjLD1aYhcFQw DEBUG com.networknt.schema.TypeValidator debug - validate( "43cd5682-2475-465d-9f82-7c50e7bb45ed", "43cd5682-2475-465d-9f82-7c50e7bb45ed", clientId) +09:12:46.063 [XNIO-1 task-2] tx-0xcXnQwqlz_ypsyM9mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.063 [XNIO-1 task-2] tx-0xcXnQwqlz_ypsyM9mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.063 [XNIO-1 task-2] tx-0xcXnQwqlz_ypsyM9mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.064 [XNIO-1 task-2] tx-0xcXnQwqlz_ypsyM9mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.069 [XNIO-1 task-2] Qn4k_wNPQ1u9a8xwA_bQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac, base path is set to: null +09:12:46.069 [XNIO-1 task-2] Qn4k_wNPQ1u9a8xwA_bQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.069 [XNIO-1 task-2] Qn4k_wNPQ1u9a8xwA_bQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.069 [XNIO-1 task-2] Qn4k_wNPQ1u9a8xwA_bQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5de75a39-73b8-48e1-b921-234901a691ac, base path is set to: null +09:12:46.069 [XNIO-1 task-2] Qn4k_wNPQ1u9a8xwA_bQ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5de75a39-73b8-48e1-b921-234901a691ac", "5de75a39-73b8-48e1-b921-234901a691ac", clientId) +09:12:46.074 [XNIO-1 task-2] yugY2hLxSR-vO9WQLkm38A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/679d50e8-bb75-4cfc-b650-1716b2267885 +09:12:46.074 [XNIO-1 task-2] yugY2hLxSR-vO9WQLkm38A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.074 [XNIO-1 task-2] yugY2hLxSR-vO9WQLkm38A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.074 [XNIO-1 task-2] yugY2hLxSR-vO9WQLkm38A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/679d50e8-bb75-4cfc-b650-1716b2267885 +09:12:46.079 [XNIO-1 task-2] IKJ3Ul-WRYKN3DR6LLQqhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6afa2d47-c567-4db0-970f-1d2071df2b01, base path is set to: null +09:12:46.079 [XNIO-1 task-2] IKJ3Ul-WRYKN3DR6LLQqhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.079 [XNIO-1 task-2] IKJ3Ul-WRYKN3DR6LLQqhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.079 [XNIO-1 task-2] IKJ3Ul-WRYKN3DR6LLQqhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6afa2d47-c567-4db0-970f-1d2071df2b01, base path is set to: null +09:12:46.079 [XNIO-1 task-2] IKJ3Ul-WRYKN3DR6LLQqhA DEBUG com.networknt.schema.TypeValidator debug - validate( "6afa2d47-c567-4db0-970f-1d2071df2b01", "6afa2d47-c567-4db0-970f-1d2071df2b01", clientId) +09:12:46.084 [XNIO-1 task-2] M0fq2vvSS1SS1TXqOm5QkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.084 [XNIO-1 task-2] M0fq2vvSS1SS1TXqOm5QkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.084 [XNIO-1 task-2] M0fq2vvSS1SS1TXqOm5QkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.085 [XNIO-1 task-2] M0fq2vvSS1SS1TXqOm5QkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG com.networknt.schema.TypeValidator debug - validate( "d2cbe688-115f-48c5-9477-6fdd402ab7cd", {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG com.networknt.schema.TypeValidator debug - validate( "218a270a-bfbc-4716-8159-a0e06a6c", {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"218a270a-bfbc-4716-8159-a0e06a6c","clientDesc":"d2cbe688-115f-48c5-9477-6fdd402ab7cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.090 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.091 [XNIO-1 task-2] Da19mLXyTAytzJ4zJwki0g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.092 [XNIO-1 task-2] WQIHCMt9RcChXIPZPeQLcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.092 [XNIO-1 task-2] WQIHCMt9RcChXIPZPeQLcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.092 [XNIO-1 task-2] WQIHCMt9RcChXIPZPeQLcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.092 [XNIO-1 task-2] WQIHCMt9RcChXIPZPeQLcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.097 [XNIO-1 task-2] TkmLbdTKTRe61ia4065MBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.097 [XNIO-1 task-2] TkmLbdTKTRe61ia4065MBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.097 [XNIO-1 task-2] TkmLbdTKTRe61ia4065MBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.097 [XNIO-1 task-2] TkmLbdTKTRe61ia4065MBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.103 [XNIO-1 task-2] jA8nBzzLSHCxmFQKCwE7Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.103 [XNIO-1 task-2] jA8nBzzLSHCxmFQKCwE7Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.103 [XNIO-1 task-2] jA8nBzzLSHCxmFQKCwE7Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.113 [XNIO-1 task-2] 6olpoNwjRM-5wdGsyrH9TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/666da687-a0cf-4631-bb92-52bae88fc3b9, base path is set to: null +09:12:46.113 [XNIO-1 task-2] 6olpoNwjRM-5wdGsyrH9TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.113 [XNIO-1 task-2] 6olpoNwjRM-5wdGsyrH9TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.113 [XNIO-1 task-2] 6olpoNwjRM-5wdGsyrH9TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/666da687-a0cf-4631-bb92-52bae88fc3b9, base path is set to: null +09:12:46.114 [XNIO-1 task-2] 6olpoNwjRM-5wdGsyrH9TA DEBUG com.networknt.schema.TypeValidator debug - validate( "666da687-a0cf-4631-bb92-52bae88fc3b9", "666da687-a0cf-4631-bb92-52bae88fc3b9", clientId) +09:12:46.116 [XNIO-1 task-2] _0tf45XrQHeMeRDYJQ41UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.116 [XNIO-1 task-2] _0tf45XrQHeMeRDYJQ41UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.116 [XNIO-1 task-2] _0tf45XrQHeMeRDYJQ41UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.116 [XNIO-1 task-2] _0tf45XrQHeMeRDYJQ41UA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.121 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.121 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.121 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.121 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG com.networknt.schema.TypeValidator debug - validate( "42bd87cb-da3d-4fef-afd6-59399f8c85af", {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG com.networknt.schema.TypeValidator debug - validate( "8cb828d7-2520-4a67-ac00-e08df3c2", {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8cb828d7-2520-4a67-ac00-e08df3c2","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.122 [XNIO-1 task-2] Yl9qmgZ7TUyJGqNpk5TCng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.124 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.124 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.124 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c3e891e5-7443-4dbb-818a-7a6510c4","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.125 [XNIO-1 task-2] pz2mLucCQ1CTB7nsVdoS4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.127 [XNIO-1 task-2] 6yKb5oIQSFm0lBToPjQ6ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.127 [XNIO-1 task-2] 6yKb5oIQSFm0lBToPjQ6ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.127 [XNIO-1 task-2] 6yKb5oIQSFm0lBToPjQ6ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.137 [XNIO-1 task-2] STkzIM7jT8-HU_gwpPLI0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/666da687-a0cf-4631-bb92-52bae88fc3b9 +09:12:46.137 [XNIO-1 task-2] STkzIM7jT8-HU_gwpPLI0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.137 [XNIO-1 task-2] STkzIM7jT8-HU_gwpPLI0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.137 [XNIO-1 task-2] STkzIM7jT8-HU_gwpPLI0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/666da687-a0cf-4631-bb92-52bae88fc3b9 +09:12:46.139 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.139 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.139 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.139 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.139 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58de2f5-08d6-4ff1-a0a2-76db44fa","clientDesc":"42bd87cb-da3d-4fef-afd6-59399f8c85af","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.140 [XNIO-1 task-2] IexpN73NTRSOmKGTEaXuig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.142 [XNIO-1 task-2] yBeSCRDBTQmBvnRxWnRfBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/666da687-a0cf-4631-bb92-52bae88fc3b9 +09:12:46.142 [XNIO-1 task-2] yBeSCRDBTQmBvnRxWnRfBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.142 [XNIO-1 task-2] yBeSCRDBTQmBvnRxWnRfBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.142 [XNIO-1 task-2] yBeSCRDBTQmBvnRxWnRfBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/666da687-a0cf-4631-bb92-52bae88fc3b9 +09:12:46.146 [XNIO-1 task-2] WdV_17hZQKyanblzdUtEnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.146 [XNIO-1 task-2] WdV_17hZQKyanblzdUtEnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.146 [XNIO-1 task-2] WdV_17hZQKyanblzdUtEnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.147 [XNIO-1 task-2] WdV_17hZQKyanblzdUtEnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.151 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.151 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f58198b-e457-4043-bb59-63582ae7","clientDesc":"240e0d1a-7d72-427e-8e76-0bd2a8b62e36","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.152 [XNIO-1 task-2] D_4vTpCXSHm4wtMbVJOf6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.154 [XNIO-1 task-2] e4RSDGrSQ92n_gTjMH381A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.154 [XNIO-1 task-2] e4RSDGrSQ92n_gTjMH381A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.154 [XNIO-1 task-2] e4RSDGrSQ92n_gTjMH381A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.164 [XNIO-1 task-2] jWf2MI5_Q-eAhjS5mS7cag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94 +09:12:46.164 [XNIO-1 task-2] jWf2MI5_Q-eAhjS5mS7cag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.164 [XNIO-1 task-2] jWf2MI5_Q-eAhjS5mS7cag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.164 [XNIO-1 task-2] jWf2MI5_Q-eAhjS5mS7cag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/84cf5c20-ef9d-4a3e-aced-6c2da86c3f94 +09:12:46.169 [XNIO-1 task-2] Wg_sSGfiSiS-Y7PvtLxdfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d9dca849-9b56-4967-abcc-e7efead4bdea, base path is set to: null +09:12:46.169 [XNIO-1 task-2] Wg_sSGfiSiS-Y7PvtLxdfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.169 [XNIO-1 task-2] Wg_sSGfiSiS-Y7PvtLxdfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.169 [XNIO-1 task-2] Wg_sSGfiSiS-Y7PvtLxdfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d9dca849-9b56-4967-abcc-e7efead4bdea, base path is set to: null +09:12:46.169 [XNIO-1 task-2] Wg_sSGfiSiS-Y7PvtLxdfA DEBUG com.networknt.schema.TypeValidator debug - validate( "d9dca849-9b56-4967-abcc-e7efead4bdea", "d9dca849-9b56-4967-abcc-e7efead4bdea", clientId) +09:12:46.174 [XNIO-1 task-2] 6KNvswj3QIyF-JtXXztL0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c1aa4027-c6e9-4eda-9b62-23128c89a20a +09:12:46.174 [XNIO-1 task-2] 6KNvswj3QIyF-JtXXztL0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.174 [XNIO-1 task-2] 6KNvswj3QIyF-JtXXztL0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.174 [XNIO-1 task-2] 6KNvswj3QIyF-JtXXztL0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c1aa4027-c6e9-4eda-9b62-23128c89a20a +09:12:46.176 [XNIO-1 task-2] ceSaumL9SBq4m9KRjMRLnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1aa4027-c6e9-4eda-9b62-23128c89a20a, base path is set to: null +09:12:46.176 [XNIO-1 task-2] ceSaumL9SBq4m9KRjMRLnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.176 [XNIO-1 task-2] ceSaumL9SBq4m9KRjMRLnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.176 [XNIO-1 task-2] ceSaumL9SBq4m9KRjMRLnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1aa4027-c6e9-4eda-9b62-23128c89a20a, base path is set to: null +09:12:46.176 [XNIO-1 task-2] ceSaumL9SBq4m9KRjMRLnA DEBUG com.networknt.schema.TypeValidator debug - validate( "c1aa4027-c6e9-4eda-9b62-23128c89a20a", "c1aa4027-c6e9-4eda-9b62-23128c89a20a", clientId) +09:12:46.183 [XNIO-1 task-2] bN_6E8NISKKkwIAtgmAb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f02f30c-d3c8-482c-8eb2-f10139d1a4b7 +09:12:46.183 [XNIO-1 task-2] bN_6E8NISKKkwIAtgmAb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.183 [XNIO-1 task-2] bN_6E8NISKKkwIAtgmAb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.183 [XNIO-1 task-2] bN_6E8NISKKkwIAtgmAb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f02f30c-d3c8-482c-8eb2-f10139d1a4b7 +09:12:46.188 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.188 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47c37379-3ed3-4333-be89-54c0c677","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.189 [XNIO-1 task-2] riFrv8RtQCeLLayuD5dYHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.191 [XNIO-1 task-2] 5YpbcnPuQ1aXMNsM0CUkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dae9481f-1497-40ff-8c73-ca7dffd88e5c +09:12:46.191 [XNIO-1 task-2] 5YpbcnPuQ1aXMNsM0CUkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.191 [XNIO-1 task-2] 5YpbcnPuQ1aXMNsM0CUkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.191 [XNIO-1 task-2] 5YpbcnPuQ1aXMNsM0CUkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dae9481f-1497-40ff-8c73-ca7dffd88e5c +09:12:46.197 [XNIO-1 task-2] YkIEsuUlQcCKH2K_vtjJOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.197 [XNIO-1 task-2] YkIEsuUlQcCKH2K_vtjJOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.197 [XNIO-1 task-2] YkIEsuUlQcCKH2K_vtjJOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.197 [XNIO-1 task-2] YkIEsuUlQcCKH2K_vtjJOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.202 [XNIO-1 task-2] 1tDV2IfoRPuKKoyTK75clA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.202 [XNIO-1 task-2] 1tDV2IfoRPuKKoyTK75clA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.202 [XNIO-1 task-2] 1tDV2IfoRPuKKoyTK75clA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.202 [XNIO-1 task-2] 1tDV2IfoRPuKKoyTK75clA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.206 [XNIO-1 task-2] io5YEdQRRe-VB7_H4HB6bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6f7b31ac-db05-4e68-9213-645ba87e0309, base path is set to: null +09:12:46.207 [XNIO-1 task-2] io5YEdQRRe-VB7_H4HB6bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.207 [XNIO-1 task-2] io5YEdQRRe-VB7_H4HB6bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.207 [XNIO-1 task-2] io5YEdQRRe-VB7_H4HB6bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6f7b31ac-db05-4e68-9213-645ba87e0309, base path is set to: null +09:12:46.207 [XNIO-1 task-2] io5YEdQRRe-VB7_H4HB6bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6f7b31ac-db05-4e68-9213-645ba87e0309", "6f7b31ac-db05-4e68-9213-645ba87e0309", clientId) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19", {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "7647cabe-388a-4d2f-aab5-46c8a5b2", {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7647cabe-388a-4d2f-aab5-46c8a5b2","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.209 [XNIO-1 task-2] pTkUjQyqT8mBn0cJCnEHPA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.211 [XNIO-1 task-2] 3bYE6uZbQdqQOJcTcwBy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.211 [XNIO-1 task-2] 3bYE6uZbQdqQOJcTcwBy3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.211 [XNIO-1 task-2] 3bYE6uZbQdqQOJcTcwBy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.221 [XNIO-1 task-2] KhT65MEnSkOy62FI2lQ4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.221 [XNIO-1 task-2] KhT65MEnSkOy62FI2lQ4Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.221 [XNIO-1 task-2] KhT65MEnSkOy62FI2lQ4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.226 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f666eaa9-0de5-4ce9-a60c-6c82e875a764 +09:12:46.227 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f666eaa9-0de5-4ce9-a60c-6c82e875a764 +09:12:46.232 [XNIO-1 task-2] zbHlQBnTQly13GNgRklFNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.232 [XNIO-1 task-2] zbHlQBnTQly13GNgRklFNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.232 [XNIO-1 task-2] zbHlQBnTQly13GNgRklFNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.232 [XNIO-1 task-2] zbHlQBnTQly13GNgRklFNw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.238 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.238 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.238 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.238 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.238 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG com.networknt.schema.TypeValidator debug - validate( "4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19", {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG com.networknt.schema.TypeValidator debug - validate( "28b51d29-0454-4b8e-9d11-e8d65767", {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"28b51d29-0454-4b8e-9d11-e8d65767","clientDesc":"4fc0b8cf-0287-40aa-9e5f-fc40afcf9b19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.239 [XNIO-1 task-2] ULg_2MfiRc-Krx-VfK4GEA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.241 [XNIO-1 task-2] iWv1wYKzRLuZvqb0HKOU1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.241 [XNIO-1 task-2] iWv1wYKzRLuZvqb0HKOU1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.241 [XNIO-1 task-2] iWv1wYKzRLuZvqb0HKOU1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.251 [XNIO-1 task-2] ZJgUmQuzQriFVFzLFajyIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6f7b31ac-db05-4e68-9213-645ba87e0309, base path is set to: null +09:12:46.251 [XNIO-1 task-2] ZJgUmQuzQriFVFzLFajyIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.252 [XNIO-1 task-2] ZJgUmQuzQriFVFzLFajyIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.252 [XNIO-1 task-2] ZJgUmQuzQriFVFzLFajyIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6f7b31ac-db05-4e68-9213-645ba87e0309, base path is set to: null +09:12:46.252 [XNIO-1 task-2] ZJgUmQuzQriFVFzLFajyIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6f7b31ac-db05-4e68-9213-645ba87e0309", "6f7b31ac-db05-4e68-9213-645ba87e0309", clientId) +09:12:46.257 [XNIO-1 task-2] -cSF4lOhSParq9Da1RxXJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2c230f60-cb62-40ca-ba8b-38810c273b8d +09:12:46.257 [XNIO-1 task-2] -cSF4lOhSParq9Da1RxXJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.257 [XNIO-1 task-2] -cSF4lOhSParq9Da1RxXJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.257 [XNIO-1 task-2] -cSF4lOhSParq9Da1RxXJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2c230f60-cb62-40ca-ba8b-38810c273b8d +09:12:46.262 [XNIO-1 task-2] DM4vqBwlSV6nZTrYEhdueQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f666eaa9-0de5-4ce9-a60c-6c82e875a764, base path is set to: null +09:12:46.262 [XNIO-1 task-2] DM4vqBwlSV6nZTrYEhdueQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.262 [XNIO-1 task-2] DM4vqBwlSV6nZTrYEhdueQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.262 [XNIO-1 task-2] DM4vqBwlSV6nZTrYEhdueQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f666eaa9-0de5-4ce9-a60c-6c82e875a764, base path is set to: null +09:12:46.263 [XNIO-1 task-2] DM4vqBwlSV6nZTrYEhdueQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f666eaa9-0de5-4ce9-a60c-6c82e875a764", "f666eaa9-0de5-4ce9-a60c-6c82e875a764", clientId) +09:12:46.264 [XNIO-1 task-2] keLn0aOhTHiGCumBId1GPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f666eaa9-0de5-4ce9-a60c-6c82e875a764 +09:12:46.264 [XNIO-1 task-2] keLn0aOhTHiGCumBId1GPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.264 [XNIO-1 task-2] keLn0aOhTHiGCumBId1GPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.264 [XNIO-1 task-2] keLn0aOhTHiGCumBId1GPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f666eaa9-0de5-4ce9-a60c-6c82e875a764 +09:12:46.265 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f666eaa9-0de5-4ce9-a60c-6c82e875a764 +09:12:46.270 [XNIO-1 task-2] ybjp_UXBSW2znKKdzFZEwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504 +09:12:46.270 [XNIO-1 task-2] ybjp_UXBSW2znKKdzFZEwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.270 [XNIO-1 task-2] ybjp_UXBSW2znKKdzFZEwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.270 [XNIO-1 task-2] ybjp_UXBSW2znKKdzFZEwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504 +09:12:46.272 [XNIO-1 task-2] UcY0xAYwR-m0UOLkl2fKZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.272 [XNIO-1 task-2] UcY0xAYwR-m0UOLkl2fKZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.272 [XNIO-1 task-2] UcY0xAYwR-m0UOLkl2fKZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.277 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:45aaf9cc-1e09-4133-86ca-ddb6983931c9 +09:12:46.277 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:45aaf9cc-1e09-4133-86ca-ddb6983931c9 +09:12:46.282 [XNIO-1 task-2] pzau-Lq6QIGaBBVbmDLWqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504 +09:12:46.282 [XNIO-1 task-2] pzau-Lq6QIGaBBVbmDLWqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.282 [XNIO-1 task-2] pzau-Lq6QIGaBBVbmDLWqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.282 [XNIO-1 task-2] pzau-Lq6QIGaBBVbmDLWqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504 +09:12:46.284 [XNIO-1 task-2] lr2-XKYbRYujV74ZPuwJaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504, base path is set to: null +09:12:46.284 [XNIO-1 task-2] lr2-XKYbRYujV74ZPuwJaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.284 [XNIO-1 task-2] lr2-XKYbRYujV74ZPuwJaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.284 [XNIO-1 task-2] lr2-XKYbRYujV74ZPuwJaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504, base path is set to: null +09:12:46.284 [XNIO-1 task-2] lr2-XKYbRYujV74ZPuwJaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4a4c77e8-a847-4d1f-a7e5-0ac3dd139504", "4a4c77e8-a847-4d1f-a7e5-0ac3dd139504", clientId) +09:12:46.286 [XNIO-1 task-2] XmtlO0qrS66-R_bETlV-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.286 [XNIO-1 task-2] XmtlO0qrS66-R_bETlV-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.286 [XNIO-1 task-2] XmtlO0qrS66-R_bETlV-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.286 [XNIO-1 task-2] XmtlO0qrS66-R_bETlV-rA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.293 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.293 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "f3399c4a-22a1-4866-a216-5afe0947fb07", {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1638dc01-1585-4517-a8f0-14b1a6ad", {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1638dc01-1585-4517-a8f0-14b1a6ad","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.294 [XNIO-1 task-2] ym4xLjKZRquri_xxY7h9Mw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.296 [XNIO-1 task-2] aa6If8GkRc6Skjp-MUcIYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.296 [XNIO-1 task-2] aa6If8GkRc6Skjp-MUcIYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.296 [XNIO-1 task-2] aa6If8GkRc6Skjp-MUcIYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.296 [XNIO-1 task-2] aa6If8GkRc6Skjp-MUcIYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.303 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.303 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.303 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.303 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.303 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.303 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.304 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.304 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.304 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.304 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.304 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.304 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba751fe4-d1de-4e97-a3b5-09f15c33","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.304 [XNIO-1 task-2] XTWmzCKTRkOLlKRUnNVjig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.306 [XNIO-1 task-2] oFSyF75wSXCfqpfvirB_Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504 +09:12:46.306 [XNIO-1 task-2] oFSyF75wSXCfqpfvirB_Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.306 [XNIO-1 task-2] oFSyF75wSXCfqpfvirB_Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.306 [XNIO-1 task-2] oFSyF75wSXCfqpfvirB_Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504 +09:12:46.308 [XNIO-1 task-2] hXWWNplITiy8i5N8bwv_wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.308 [XNIO-1 task-2] hXWWNplITiy8i5N8bwv_wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.308 [XNIO-1 task-2] hXWWNplITiy8i5N8bwv_wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.319 [XNIO-1 task-2] MWSD8Ib8R8uUHqY09S8YBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.319 [XNIO-1 task-2] MWSD8Ib8R8uUHqY09S8YBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.319 [XNIO-1 task-2] MWSD8Ib8R8uUHqY09S8YBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.319 [XNIO-1 task-2] MWSD8Ib8R8uUHqY09S8YBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.331 [XNIO-1 task-2] jRnjDfe6Sw-_SQwdOljfZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cc823459-18e8-4e9a-a55b-cd95f283d080, base path is set to: null +09:12:46.331 [XNIO-1 task-2] jRnjDfe6Sw-_SQwdOljfZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.331 [XNIO-1 task-2] jRnjDfe6Sw-_SQwdOljfZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.331 [XNIO-1 task-2] jRnjDfe6Sw-_SQwdOljfZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cc823459-18e8-4e9a-a55b-cd95f283d080, base path is set to: null +09:12:46.331 [XNIO-1 task-2] jRnjDfe6Sw-_SQwdOljfZg DEBUG com.networknt.schema.TypeValidator debug - validate( "cc823459-18e8-4e9a-a55b-cd95f283d080", "cc823459-18e8-4e9a-a55b-cd95f283d080", clientId) +09:12:46.345 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f3399c4a-22a1-4866-a216-5afe0947fb07", {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a240fe1e-a5eb-4ec6-b4b6-096762ea", {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a240fe1e-a5eb-4ec6-b4b6-096762ea","clientDesc":"f3399c4a-22a1-4866-a216-5afe0947fb07","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.346 [XNIO-1 task-2] -EQ2HbRbQ96WzLtxv1y3uQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.348 [XNIO-1 task-2] HdBAYfWqR1SM3j6LDBOVIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/45aaf9cc-1e09-4133-86ca-ddb6983931c9, base path is set to: null +09:12:46.348 [XNIO-1 task-2] HdBAYfWqR1SM3j6LDBOVIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.348 [XNIO-1 task-2] HdBAYfWqR1SM3j6LDBOVIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.349 [XNIO-1 task-2] HdBAYfWqR1SM3j6LDBOVIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/45aaf9cc-1e09-4133-86ca-ddb6983931c9, base path is set to: null +09:12:46.349 [XNIO-1 task-2] HdBAYfWqR1SM3j6LDBOVIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "45aaf9cc-1e09-4133-86ca-ddb6983931c9", "45aaf9cc-1e09-4133-86ca-ddb6983931c9", clientId) +09:12:46.350 [XNIO-1 task-2] Aaxhxl-wSm6V8dvLxDVPSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.350 [XNIO-1 task-2] Aaxhxl-wSm6V8dvLxDVPSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.351 [XNIO-1 task-2] Aaxhxl-wSm6V8dvLxDVPSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.356 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:06af8ee0-f596-4005-871d-85ffaf4062a4 +09:12:46.362 [XNIO-1 task-2] r3y9pmWhQO2fhv6YjHRSug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.362 [XNIO-1 task-2] r3y9pmWhQO2fhv6YjHRSug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.362 [XNIO-1 task-2] r3y9pmWhQO2fhv6YjHRSug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.362 [XNIO-1 task-2] r3y9pmWhQO2fhv6YjHRSug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.367 [XNIO-1 task-2] vZoSr2wWTIyrBmbbaj3VEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/45aaf9cc-1e09-4133-86ca-ddb6983931c9, base path is set to: null +09:12:46.367 [XNIO-1 task-2] vZoSr2wWTIyrBmbbaj3VEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.367 [XNIO-1 task-2] vZoSr2wWTIyrBmbbaj3VEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.367 [XNIO-1 task-2] vZoSr2wWTIyrBmbbaj3VEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/45aaf9cc-1e09-4133-86ca-ddb6983931c9, base path is set to: null +09:12:46.368 [XNIO-1 task-2] vZoSr2wWTIyrBmbbaj3VEA DEBUG com.networknt.schema.TypeValidator debug - validate( "45aaf9cc-1e09-4133-86ca-ddb6983931c9", "45aaf9cc-1e09-4133-86ca-ddb6983931c9", clientId) +09:12:46.372 [XNIO-1 task-2] WDMEo0tzRzWIu4htydssMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.372 [XNIO-1 task-2] WDMEo0tzRzWIu4htydssMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.372 [XNIO-1 task-2] WDMEo0tzRzWIu4htydssMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.372 [XNIO-1 task-2] WDMEo0tzRzWIu4htydssMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.377 [XNIO-1 task-2] YqDP6JmdSIW63xALDLKvmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504, base path is set to: null +09:12:46.377 [XNIO-1 task-2] YqDP6JmdSIW63xALDLKvmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.377 [XNIO-1 task-2] YqDP6JmdSIW63xALDLKvmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.377 [XNIO-1 task-2] YqDP6JmdSIW63xALDLKvmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4a4c77e8-a847-4d1f-a7e5-0ac3dd139504, base path is set to: null +09:12:46.378 [XNIO-1 task-2] YqDP6JmdSIW63xALDLKvmA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a4c77e8-a847-4d1f-a7e5-0ac3dd139504", "4a4c77e8-a847-4d1f-a7e5-0ac3dd139504", clientId) +09:12:46.383 [XNIO-1 task-2] 1gKF2VD5RZy2Egcqd-veGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06af8ee0-f596-4005-871d-85ffaf4062a4 +09:12:46.383 [XNIO-1 task-2] 1gKF2VD5RZy2Egcqd-veGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.383 [XNIO-1 task-2] 1gKF2VD5RZy2Egcqd-veGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.383 [XNIO-1 task-2] 1gKF2VD5RZy2Egcqd-veGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06af8ee0-f596-4005-871d-85ffaf4062a4 +09:12:46.385 [XNIO-1 task-2] oDv2aeLmQyWygaa4KBOm2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.385 [XNIO-1 task-2] oDv2aeLmQyWygaa4KBOm2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.385 [XNIO-1 task-2] oDv2aeLmQyWygaa4KBOm2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.385 [XNIO-1 task-2] oDv2aeLmQyWygaa4KBOm2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.389 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.389 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d6496bf3-51a9-425a-ab31-d223e417","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.390 [XNIO-1 task-2] 28m0XEW_TZSSXvPfUkfppg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.392 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.392 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.392 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c05fdbb-fe5b-4469-85ec-ce7333814744", {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "3e8670ac-15b4-4e94-b17c-0183889c", {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3e8670ac-15b4-4e94-b17c-0183889c","clientDesc":"5c05fdbb-fe5b-4469-85ec-ce7333814744","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.393 [XNIO-1 task-2] 7YeqB5tPTt-TPShcygmvpA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.395 [XNIO-1 task-2] neVjSBmrRqSvAa4KSKu53g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06af8ee0-f596-4005-871d-85ffaf4062a4, base path is set to: null +09:12:46.395 [XNIO-1 task-2] neVjSBmrRqSvAa4KSKu53g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.395 [XNIO-1 task-2] neVjSBmrRqSvAa4KSKu53g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.395 [XNIO-1 task-2] neVjSBmrRqSvAa4KSKu53g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06af8ee0-f596-4005-871d-85ffaf4062a4, base path is set to: null +09:12:46.395 [XNIO-1 task-2] neVjSBmrRqSvAa4KSKu53g DEBUG com.networknt.schema.TypeValidator debug - validate( "06af8ee0-f596-4005-871d-85ffaf4062a4", "06af8ee0-f596-4005-871d-85ffaf4062a4", clientId) +09:12:46.399 [XNIO-1 task-2] RknMF_XeQr-zskjBGxOKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.399 [XNIO-1 task-2] RknMF_XeQr-zskjBGxOKNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.400 [XNIO-1 task-2] RknMF_XeQr-zskjBGxOKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.400 [XNIO-1 task-2] RknMF_XeQr-zskjBGxOKNA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.406 [XNIO-1 task-2] 2V2yQC9QQGKxKLOHlamKAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.406 [XNIO-1 task-2] 2V2yQC9QQGKxKLOHlamKAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.406 [XNIO-1 task-2] 2V2yQC9QQGKxKLOHlamKAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.406 [XNIO-1 task-2] 2V2yQC9QQGKxKLOHlamKAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.411 [XNIO-1 task-2] jLKyv7dIRuCAR95OKC_FxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.411 [XNIO-1 task-2] jLKyv7dIRuCAR95OKC_FxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.411 [XNIO-1 task-2] jLKyv7dIRuCAR95OKC_FxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.421 [XNIO-1 task-2] bmkyH1DXSIqKVpkh3Ym9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d27d1498-5c85-4222-9269-9ba4201780ea, base path is set to: null +09:12:46.421 [XNIO-1 task-2] bmkyH1DXSIqKVpkh3Ym9Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.421 [XNIO-1 task-2] bmkyH1DXSIqKVpkh3Ym9Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.421 [XNIO-1 task-2] bmkyH1DXSIqKVpkh3Ym9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d27d1498-5c85-4222-9269-9ba4201780ea, base path is set to: null +09:12:46.421 [XNIO-1 task-2] bmkyH1DXSIqKVpkh3Ym9Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "d27d1498-5c85-4222-9269-9ba4201780ea", "d27d1498-5c85-4222-9269-9ba4201780ea", clientId) +09:12:46.427 [XNIO-1 task-2] mwsJDVPvQRScDizPx6Fd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.427 [XNIO-1 task-2] mwsJDVPvQRScDizPx6Fd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.427 [XNIO-1 task-2] mwsJDVPvQRScDizPx6Fd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.437 [XNIO-1 task-2] OVn94rBtQBGN1fhWELYr0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6de85836-f409-4071-a201-eb07efa94547 +09:12:46.437 [XNIO-1 task-2] OVn94rBtQBGN1fhWELYr0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.437 [XNIO-1 task-2] OVn94rBtQBGN1fhWELYr0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.437 [XNIO-1 task-2] OVn94rBtQBGN1fhWELYr0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6de85836-f409-4071-a201-eb07efa94547 +09:12:46.442 [XNIO-1 task-2] w_nQkVHESVSJrRF0mg8TSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.442 [XNIO-1 task-2] w_nQkVHESVSJrRF0mg8TSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.442 [XNIO-1 task-2] w_nQkVHESVSJrRF0mg8TSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.442 [XNIO-1 task-2] w_nQkVHESVSJrRF0mg8TSw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.448 [XNIO-1 task-2] 2e4fhcKnQnehBvLqg-berw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.448 [XNIO-1 task-2] 2e4fhcKnQnehBvLqg-berw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.449 [XNIO-1 task-2] 2e4fhcKnQnehBvLqg-berw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.459 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a09b720-18fb-4a83-a6bf-51bc9bf7","clientDesc":"af0a0df2-dca1-4de9-9700-9e9c9bfc05df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.460 [XNIO-1 task-2] vUBjZpANR1OW4uppBMpZ9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.461 [XNIO-1 task-2] cUDEgmRPREuobHN3vESVsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.461 [XNIO-1 task-2] cUDEgmRPREuobHN3vESVsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.461 [XNIO-1 task-2] cUDEgmRPREuobHN3vESVsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.461 [XNIO-1 task-2] cUDEgmRPREuobHN3vESVsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.466 [XNIO-1 task-2] RnzgLi6DSEKarBs-7Lm-2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/456b5456-826a-4fb4-8c27-2feea76ad2d2 +09:12:46.466 [XNIO-1 task-2] RnzgLi6DSEKarBs-7Lm-2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.466 [XNIO-1 task-2] RnzgLi6DSEKarBs-7Lm-2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.466 [XNIO-1 task-2] RnzgLi6DSEKarBs-7Lm-2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/456b5456-826a-4fb4-8c27-2feea76ad2d2 +09:12:46.468 [XNIO-1 task-2] kp9wV9ZHTnuLcuDQLaPnsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/456b5456-826a-4fb4-8c27-2feea76ad2d2, base path is set to: null +09:12:46.468 [XNIO-1 task-2] kp9wV9ZHTnuLcuDQLaPnsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.468 [XNIO-1 task-2] kp9wV9ZHTnuLcuDQLaPnsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.468 [XNIO-1 task-2] kp9wV9ZHTnuLcuDQLaPnsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/456b5456-826a-4fb4-8c27-2feea76ad2d2, base path is set to: null +09:12:46.468 [XNIO-1 task-2] kp9wV9ZHTnuLcuDQLaPnsw DEBUG com.networknt.schema.TypeValidator debug - validate( "456b5456-826a-4fb4-8c27-2feea76ad2d2", "456b5456-826a-4fb4-8c27-2feea76ad2d2", clientId) +09:12:46.475 [XNIO-1 task-2] 51xpSExtR0uVJmJjyd-dGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.475 [XNIO-1 task-2] 51xpSExtR0uVJmJjyd-dGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.475 [XNIO-1 task-2] 51xpSExtR0uVJmJjyd-dGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.485 [XNIO-1 task-2] iv-ua8EyQsi8IC6SM-99Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d +09:12:46.485 [XNIO-1 task-2] iv-ua8EyQsi8IC6SM-99Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.485 [XNIO-1 task-2] iv-ua8EyQsi8IC6SM-99Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.486 [XNIO-1 task-2] iv-ua8EyQsi8IC6SM-99Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d +09:12:46.487 [XNIO-1 task-2] U5GSzfVJR6q2zP3mOcvAYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.488 [XNIO-1 task-2] U5GSzfVJR6q2zP3mOcvAYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.488 [XNIO-1 task-2] U5GSzfVJR6q2zP3mOcvAYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.499 [XNIO-1 task-2] 2DNN5bOpSlWkILONUK4LNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.499 [XNIO-1 task-2] 2DNN5bOpSlWkILONUK4LNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.499 [XNIO-1 task-2] 2DNN5bOpSlWkILONUK4LNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.499 [XNIO-1 task-2] 2DNN5bOpSlWkILONUK4LNA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.506 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.506 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.506 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.506 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.506 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6e909f-1c04-41bd-a84b-a7bcc490","clientDesc":"06e52e50-b622-4499-b4a8-23bf438bdf60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.507 [XNIO-1 task-2] x6uRQHRgQfi3RYI9Yi-BMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.509 [XNIO-1 task-2] yDeNJ0h2S4qU1xSI1cplCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d +09:12:46.509 [XNIO-1 task-2] yDeNJ0h2S4qU1xSI1cplCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.509 [XNIO-1 task-2] yDeNJ0h2S4qU1xSI1cplCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.509 [XNIO-1 task-2] yDeNJ0h2S4qU1xSI1cplCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.511 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9958befe-1583-4fc1-9b4e-e43f24de","clientDesc":"94e512ec-99d0-4f22-ade6-9745f08d5503","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.512 [XNIO-1 task-2] IAP5M7JVS0qPLwUrU-NiQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.513 [XNIO-1 task-2] KgyjL_YzTNShyZ4Ulh41kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.513 [XNIO-1 task-2] KgyjL_YzTNShyZ4Ulh41kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.513 [XNIO-1 task-2] KgyjL_YzTNShyZ4Ulh41kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.514 [XNIO-1 task-2] KgyjL_YzTNShyZ4Ulh41kw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.544 [XNIO-1 task-2] qCR9LKt6TC-g2MfshKNLag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d +09:12:46.544 [XNIO-1 task-2] qCR9LKt6TC-g2MfshKNLag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.544 [XNIO-1 task-2] qCR9LKt6TC-g2MfshKNLag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.544 [XNIO-1 task-2] qCR9LKt6TC-g2MfshKNLag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d +09:12:46.546 [XNIO-1 task-2] 3LuCuNV9QNGJSNRhzf6wgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d, base path is set to: null +09:12:46.546 [XNIO-1 task-2] 3LuCuNV9QNGJSNRhzf6wgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.546 [XNIO-1 task-2] 3LuCuNV9QNGJSNRhzf6wgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.546 [XNIO-1 task-2] 3LuCuNV9QNGJSNRhzf6wgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b4b6de6b-20ce-473f-8e8f-d3095fefab2d, base path is set to: null +09:12:46.547 [XNIO-1 task-2] 3LuCuNV9QNGJSNRhzf6wgg DEBUG com.networknt.schema.TypeValidator debug - validate( "b4b6de6b-20ce-473f-8e8f-d3095fefab2d", "b4b6de6b-20ce-473f-8e8f-d3095fefab2d", clientId) +09:12:46.551 [XNIO-1 task-2] p8X1AS8DRzKP0skalt_ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.551 [XNIO-1 task-2] p8X1AS8DRzKP0skalt_ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.551 [XNIO-1 task-2] p8X1AS8DRzKP0skalt_ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.563 [XNIO-1 task-2] tEx90tyBRm-2kg46xZ18YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/15b273ae-b01e-4663-aa58-aeeaf1b88f66 +09:12:46.563 [XNIO-1 task-2] tEx90tyBRm-2kg46xZ18YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.563 [XNIO-1 task-2] tEx90tyBRm-2kg46xZ18YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.563 [XNIO-1 task-2] tEx90tyBRm-2kg46xZ18YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/15b273ae-b01e-4663-aa58-aeeaf1b88f66 +09:12:46.570 [XNIO-1 task-2] KY18ltBqR5y7bD-vla89IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4a52266d-2516-4513-b818-feeaf9ef9b2e, base path is set to: null +09:12:46.570 [XNIO-1 task-2] KY18ltBqR5y7bD-vla89IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.570 [XNIO-1 task-2] KY18ltBqR5y7bD-vla89IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.570 [XNIO-1 task-2] KY18ltBqR5y7bD-vla89IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4a52266d-2516-4513-b818-feeaf9ef9b2e, base path is set to: null +09:12:46.570 [XNIO-1 task-2] KY18ltBqR5y7bD-vla89IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4a52266d-2516-4513-b818-feeaf9ef9b2e", "4a52266d-2516-4513-b818-feeaf9ef9b2e", clientId) +09:12:46.575 [XNIO-1 task-2] Sd7lSA_KTBqpIFdXbIFD0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.575 [XNIO-1 task-2] Sd7lSA_KTBqpIFdXbIFD0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.575 [XNIO-1 task-2] Sd7lSA_KTBqpIFdXbIFD0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.586 [XNIO-1 task-2] XvPIRUchSt2imZjRWa-u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61fc7daa-999f-4552-978c-358c220a5003 +09:12:46.586 [XNIO-1 task-2] XvPIRUchSt2imZjRWa-u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.586 [XNIO-1 task-2] XvPIRUchSt2imZjRWa-u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.587 [XNIO-1 task-2] XvPIRUchSt2imZjRWa-u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61fc7daa-999f-4552-978c-358c220a5003 +09:12:46.591 [XNIO-1 task-2] 6gthCMmwRWysZ-W9ibYdfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.591 [XNIO-1 task-2] 6gthCMmwRWysZ-W9ibYdfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.591 [XNIO-1 task-2] 6gthCMmwRWysZ-W9ibYdfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.591 [XNIO-1 task-2] 6gthCMmwRWysZ-W9ibYdfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.598 [XNIO-1 task-2] DTfzr_KCQdCl1-Oq01MRtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.598 [XNIO-1 task-2] DTfzr_KCQdCl1-Oq01MRtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.598 [XNIO-1 task-2] DTfzr_KCQdCl1-Oq01MRtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.609 [XNIO-1 task-2] 9hWOu1aWRqSjdJTvVoinhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.610 [XNIO-1 task-2] 9hWOu1aWRqSjdJTvVoinhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.610 [XNIO-1 task-2] 9hWOu1aWRqSjdJTvVoinhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.610 [XNIO-1 task-2] 9hWOu1aWRqSjdJTvVoinhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.614 [XNIO-1 task-2] 6vudgcr1SHS8d3lK2vNoMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.614 [XNIO-1 task-2] 6vudgcr1SHS8d3lK2vNoMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.615 [XNIO-1 task-2] 6vudgcr1SHS8d3lK2vNoMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.625 [XNIO-1 task-2] boeo-KrmTymquqyiyaMUGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.625 [XNIO-1 task-2] boeo-KrmTymquqyiyaMUGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.625 [XNIO-1 task-2] boeo-KrmTymquqyiyaMUGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.636 [XNIO-1 task-2] RTOCTk2jTIC-F2KFBO_lGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.636 [XNIO-1 task-2] RTOCTk2jTIC-F2KFBO_lGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.637 [XNIO-1 task-2] RTOCTk2jTIC-F2KFBO_lGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.647 [XNIO-1 task-2] 3w-rXWW-SNquJYqbCBQSsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/654fcb1e-740d-4249-b8e1-a777917faa8e, base path is set to: null +09:12:46.647 [XNIO-1 task-2] 3w-rXWW-SNquJYqbCBQSsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.648 [XNIO-1 task-2] 3w-rXWW-SNquJYqbCBQSsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.648 [XNIO-1 task-2] 3w-rXWW-SNquJYqbCBQSsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/654fcb1e-740d-4249-b8e1-a777917faa8e, base path is set to: null +09:12:46.648 [XNIO-1 task-2] 3w-rXWW-SNquJYqbCBQSsw DEBUG com.networknt.schema.TypeValidator debug - validate( "654fcb1e-740d-4249-b8e1-a777917faa8e", "654fcb1e-740d-4249-b8e1-a777917faa8e", clientId) +09:12:46.653 [XNIO-1 task-2] OrqKSNdBRpu6jWASWsk9hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21ddedff-8747-4b05-8fc5-9274eb3dc975 +09:12:46.653 [XNIO-1 task-2] OrqKSNdBRpu6jWASWsk9hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.653 [XNIO-1 task-2] OrqKSNdBRpu6jWASWsk9hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.653 [XNIO-1 task-2] OrqKSNdBRpu6jWASWsk9hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21ddedff-8747-4b05-8fc5-9274eb3dc975 +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.655 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.656 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.656 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.656 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.656 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aa15bfae-4bbe-4996-b41f-e467cfee","clientDesc":"cf0805d1-8785-4c1a-afda-28c9a50b7f4d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.656 [XNIO-1 task-2] lE86n6b8Tiq2KGujI9Bueg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.657 [XNIO-1 task-2] qUNaooL8Smuj-4_sPifEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7ec9d1b0-2b55-4d5f-bfe5-61950f29e3db +09:12:46.657 [XNIO-1 task-2] qUNaooL8Smuj-4_sPifEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.657 [XNIO-1 task-2] qUNaooL8Smuj-4_sPifEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.658 [XNIO-1 task-2] qUNaooL8Smuj-4_sPifEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7ec9d1b0-2b55-4d5f-bfe5-61950f29e3db +09:12:46.659 [XNIO-1 task-2] 9OwfDwFDScmr0h7sbNunSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7ec9d1b0-2b55-4d5f-bfe5-61950f29e3db, base path is set to: null +09:12:46.660 [XNIO-1 task-2] 9OwfDwFDScmr0h7sbNunSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.660 [XNIO-1 task-2] 9OwfDwFDScmr0h7sbNunSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.660 [XNIO-1 task-2] 9OwfDwFDScmr0h7sbNunSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7ec9d1b0-2b55-4d5f-bfe5-61950f29e3db, base path is set to: null +09:12:46.660 [XNIO-1 task-2] 9OwfDwFDScmr0h7sbNunSA DEBUG com.networknt.schema.TypeValidator debug - validate( "7ec9d1b0-2b55-4d5f-bfe5-61950f29e3db", "7ec9d1b0-2b55-4d5f-bfe5-61950f29e3db", clientId) +09:12:46.664 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.664 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.665 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG com.networknt.schema.TypeValidator debug - validate( "acc17cdd-631d-4b8f-a70d-9a4deed48abe", {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG com.networknt.schema.TypeValidator debug - validate( "29c9b698-d95b-4519-8ec3-094bfcee", {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"29c9b698-d95b-4519-8ec3-094bfcee","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.666 [XNIO-1 task-2] asD8kxG2TKeDiQdZon3pOw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.668 [XNIO-1 task-2] sgm-vfsPRuuaMtTk6yV6xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.668 [XNIO-1 task-2] sgm-vfsPRuuaMtTk6yV6xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.668 [XNIO-1 task-2] sgm-vfsPRuuaMtTk6yV6xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.673 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a +09:12:46.673 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a +09:12:46.678 [XNIO-1 task-2] HMYLt97UQ0qcJME6yoId4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.678 [XNIO-1 task-2] HMYLt97UQ0qcJME6yoId4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.678 [XNIO-1 task-2] HMYLt97UQ0qcJME6yoId4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.678 [XNIO-1 task-2] HMYLt97UQ0qcJME6yoId4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.684 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.684 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.684 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.684 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.684 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "afb8ce6d-22c5-442e-9444-295163a61fc2", {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "87bb6d44-420b-4576-aa8f-6273036f", {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"87bb6d44-420b-4576-aa8f-6273036f","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.685 [XNIO-1 task-2] cpndHJgbSQ2m_06EvAD7Bg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.687 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eff79415-4484-4198-8ddd-d57b8353","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.688 [XNIO-1 task-2] LR_4P_lHRY-1bSW43CY2Hw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.689 [XNIO-1 task-2] sNXToZEzTaiSv_sflzuHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.689 [XNIO-1 task-2] sNXToZEzTaiSv_sflzuHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.689 [XNIO-1 task-2] sNXToZEzTaiSv_sflzuHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.689 [XNIO-1 task-2] sNXToZEzTaiSv_sflzuHbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.695 [XNIO-1 task-2] xJDOTd4QTWCcp84gjgprPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.695 [XNIO-1 task-2] xJDOTd4QTWCcp84gjgprPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.695 [XNIO-1 task-2] xJDOTd4QTWCcp84gjgprPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "acc17cdd-631d-4b8f-a70d-9a4deed48abe", {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6470cc1-a609-45ac-b05d-ac33068c", {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.706 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e6470cc1-a609-45ac-b05d-ac33068c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.707 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.707 [XNIO-1 task-2] 5JEviYyWQz-q3S-skKDNdw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.708 [XNIO-1 task-2] tkI3GWBOTYadcL2iTlhDBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/76fb4d4e-ef23-41fc-8373-d3cc82360c2f, base path is set to: null +09:12:46.708 [XNIO-1 task-2] tkI3GWBOTYadcL2iTlhDBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.708 [XNIO-1 task-2] tkI3GWBOTYadcL2iTlhDBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.708 [XNIO-1 task-2] tkI3GWBOTYadcL2iTlhDBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/76fb4d4e-ef23-41fc-8373-d3cc82360c2f, base path is set to: null +09:12:46.709 [XNIO-1 task-2] tkI3GWBOTYadcL2iTlhDBA DEBUG com.networknt.schema.TypeValidator debug - validate( "76fb4d4e-ef23-41fc-8373-d3cc82360c2f", "76fb4d4e-ef23-41fc-8373-d3cc82360c2f", clientId) +09:12:46.713 [XNIO-1 task-2] dMfb8yr0SleRuxT9rWdRGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.714 [XNIO-1 task-2] dMfb8yr0SleRuxT9rWdRGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.714 [XNIO-1 task-2] dMfb8yr0SleRuxT9rWdRGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.714 [XNIO-1 task-2] dMfb8yr0SleRuxT9rWdRGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.718 [XNIO-1 task-2] 2oBsFWllQsutRIK_vPmrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.719 [XNIO-1 task-2] 2oBsFWllQsutRIK_vPmrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.719 [XNIO-1 task-2] 2oBsFWllQsutRIK_vPmrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.726 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.731 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.732 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.732 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.732 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.732 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8a70461-3a98-4c89-ae3e-746474fb","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.732 [XNIO-1 task-2] oUZqYdenSomrLkNvHiDsmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "b05fb43f-1dbb-4096-b78a-0eb35500af7d", {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.734 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "c489f293-fd6f-4abf-9c08-2885c737", {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.735 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.735 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c489f293-fd6f-4abf-9c08-2885c737","clientDesc":"b05fb43f-1dbb-4096-b78a-0eb35500af7d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.735 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.735 [XNIO-1 task-2] 3PA7M0ZiTVqwY2Pbw3bhvg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.736 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.736 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.736 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40cd796f-d6e6-423f-8b82-4d6365d9","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.737 [XNIO-1 task-2] wMZ6ZNs9R_adZgdKHHVGNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.739 [XNIO-1 task-2] tKWkTgy9Sx-hpMJvWwtY1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.739 [XNIO-1 task-2] tKWkTgy9Sx-hpMJvWwtY1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.739 [XNIO-1 task-2] tKWkTgy9Sx-hpMJvWwtY1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.739 [XNIO-1 task-2] tKWkTgy9Sx-hpMJvWwtY1w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.745 [XNIO-1 task-2] EZ2VMX89Rleoel0pRAcKWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.745 [XNIO-1 task-2] EZ2VMX89Rleoel0pRAcKWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.745 [XNIO-1 task-2] EZ2VMX89Rleoel0pRAcKWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.756 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.756 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.756 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG com.networknt.schema.TypeValidator debug - validate( "20b96fa0-aa49-4d11-b1cc-ec32bad25ea5", {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG com.networknt.schema.TypeValidator debug - validate( "3f6cc6d7-dd75-4717-a738-2d516622", {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3f6cc6d7-dd75-4717-a738-2d516622","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.757 [XNIO-1 task-2] -9ICUGOnTBW9fh91lYLdLw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.759 [XNIO-1 task-2] 1dfip68IS9C08gTcYYwa5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.759 [XNIO-1 task-2] 1dfip68IS9C08gTcYYwa5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.759 [XNIO-1 task-2] 1dfip68IS9C08gTcYYwa5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.772 [XNIO-1 task-2] TPTKZb0TSYCFVQ5w0nk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8, base path is set to: null +09:12:46.772 [XNIO-1 task-2] TPTKZb0TSYCFVQ5w0nk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.772 [XNIO-1 task-2] TPTKZb0TSYCFVQ5w0nk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.772 [XNIO-1 task-2] TPTKZb0TSYCFVQ5w0nk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8, base path is set to: null +09:12:46.772 [XNIO-1 task-2] TPTKZb0TSYCFVQ5w0nk-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "59c1e911-3b01-4fc8-967c-da97ac2312f8", "59c1e911-3b01-4fc8-967c-da97ac2312f8", clientId) +09:12:46.774 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.774 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.774 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG com.networknt.schema.TypeValidator debug - validate( "0dddd3c1-4c73-44c2-a825-a138dc92c034", {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG com.networknt.schema.TypeValidator debug - validate( "2134f384-977d-4d58-95d2-f5231157", {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2134f384-977d-4d58-95d2-f5231157","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.775 [XNIO-1 task-2] kHtgMN2tRpeX8hfalk0D8A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.777 [XNIO-1 task-2] QSUT-2g-Tymu9uUo_WRJyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3, base path is set to: null +09:12:46.777 [XNIO-1 task-2] QSUT-2g-Tymu9uUo_WRJyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.777 [XNIO-1 task-2] QSUT-2g-Tymu9uUo_WRJyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.777 [XNIO-1 task-2] QSUT-2g-Tymu9uUo_WRJyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3, base path is set to: null +09:12:46.777 [XNIO-1 task-2] QSUT-2g-Tymu9uUo_WRJyg DEBUG com.networknt.schema.TypeValidator debug - validate( "ca7a2420-23b0-4a3a-a21e-d327cebaa0c3", "ca7a2420-23b0-4a3a-a21e-d327cebaa0c3", clientId) +09:12:46.779 [XNIO-1 task-2] cvGGelrvQQ64v-Ww7obulA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:46.780 [XNIO-1 task-2] cvGGelrvQQ64v-Ww7obulA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.780 [XNIO-1 task-2] cvGGelrvQQ64v-Ww7obulA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.780 [XNIO-1 task-2] cvGGelrvQQ64v-Ww7obulA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:46.781 [XNIO-1 task-2] vXdpcCxUTVm93dFIR5KGKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9ff0656a-65b4-4443-a672-7a8c5dc0b6f6, base path is set to: null +09:12:46.781 [XNIO-1 task-2] vXdpcCxUTVm93dFIR5KGKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.782 [XNIO-1 task-2] vXdpcCxUTVm93dFIR5KGKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.782 [XNIO-1 task-2] vXdpcCxUTVm93dFIR5KGKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9ff0656a-65b4-4443-a672-7a8c5dc0b6f6, base path is set to: null +09:12:46.782 [XNIO-1 task-2] vXdpcCxUTVm93dFIR5KGKg DEBUG com.networknt.schema.TypeValidator debug - validate( "9ff0656a-65b4-4443-a672-7a8c5dc0b6f6", "9ff0656a-65b4-4443-a672-7a8c5dc0b6f6", clientId) +09:12:46.784 [XNIO-1 task-2] V5dqu6n5S_Swt0yABzpmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3 +09:12:46.784 [XNIO-1 task-2] V5dqu6n5S_Swt0yABzpmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.784 [XNIO-1 task-2] V5dqu6n5S_Swt0yABzpmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.784 [XNIO-1 task-2] V5dqu6n5S_Swt0yABzpmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3 +09:12:46.785 [XNIO-1 task-2] 09HxM_41Sr-Raxda8NWGYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.785 [XNIO-1 task-2] 09HxM_41Sr-Raxda8NWGYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.785 [XNIO-1 task-2] 09HxM_41Sr-Raxda8NWGYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.785 [XNIO-1 task-2] 09HxM_41Sr-Raxda8NWGYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.792 [XNIO-1 task-2] r38m4VTgT32XUH-L6KGS0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.792 [XNIO-1 task-2] r38m4VTgT32XUH-L6KGS0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.792 [XNIO-1 task-2] r38m4VTgT32XUH-L6KGS0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.804 [XNIO-1 task-2] Ucm2nXGTQ5WwCShvWhRltg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.804 [XNIO-1 task-2] Ucm2nXGTQ5WwCShvWhRltg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.804 [XNIO-1 task-2] Ucm2nXGTQ5WwCShvWhRltg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.804 [XNIO-1 task-2] Ucm2nXGTQ5WwCShvWhRltg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.810 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.811 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2c7ae7a-60e0-4f43-bbae-9d9e0f16","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.811 [XNIO-1 task-2] MzpW4RMdSBmrH7Svr79ewQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.813 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.813 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.813 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG com.networknt.schema.TypeValidator debug - validate( "0dddd3c1-4c73-44c2-a825-a138dc92c034", {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG com.networknt.schema.TypeValidator debug - validate( "5f93ac93-c850-4fcb-a5a3-6279b6d7", {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5f93ac93-c850-4fcb-a5a3-6279b6d7","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.814 [XNIO-1 task-2] N5Yb5GAxTU6lSOIYRb9IBg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.816 [XNIO-1 task-2] K9koHsqWS9u5WYiCMiHsJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.816 [XNIO-1 task-2] K9koHsqWS9u5WYiCMiHsJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.816 [XNIO-1 task-2] K9koHsqWS9u5WYiCMiHsJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.827 [XNIO-1 task-2] EdRqJZBfTTSfnCJfvaiuAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a, base path is set to: null +09:12:46.827 [XNIO-1 task-2] EdRqJZBfTTSfnCJfvaiuAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.827 [XNIO-1 task-2] EdRqJZBfTTSfnCJfvaiuAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.828 [XNIO-1 task-2] EdRqJZBfTTSfnCJfvaiuAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a, base path is set to: null +09:12:46.828 [XNIO-1 task-2] EdRqJZBfTTSfnCJfvaiuAA DEBUG com.networknt.schema.TypeValidator debug - validate( "d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a", "d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a", clientId) +09:12:46.829 [XNIO-1 task-2] Lr7VD_mGRCa6hblKol9v7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3 +09:12:46.829 [XNIO-1 task-2] Lr7VD_mGRCa6hblKol9v7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.829 [XNIO-1 task-2] Lr7VD_mGRCa6hblKol9v7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.830 [XNIO-1 task-2] Lr7VD_mGRCa6hblKol9v7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3 +09:12:46.831 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.831 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.831 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0303be27-1f71-430d-8435-4e21e0db","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.832 [XNIO-1 task-2] gAXprn-wR8mZQoOalh056Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.834 [XNIO-1 task-2] Zemkb_8zSby60x-l_0z6bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.834 [XNIO-1 task-2] Zemkb_8zSby60x-l_0z6bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.834 [XNIO-1 task-2] Zemkb_8zSby60x-l_0z6bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.845 [XNIO-1 task-2] XFBuJs7vSoOqlRdaIda7Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21ddedff-8747-4b05-8fc5-9274eb3dc975 +09:12:46.845 [XNIO-1 task-2] XFBuJs7vSoOqlRdaIda7Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.845 [XNIO-1 task-2] XFBuJs7vSoOqlRdaIda7Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.845 [XNIO-1 task-2] XFBuJs7vSoOqlRdaIda7Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21ddedff-8747-4b05-8fc5-9274eb3dc975 +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.847 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.848 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.848 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9c4a918-2bbe-4b51-8071-34848057","clientDesc":"afb8ce6d-22c5-442e-9444-295163a61fc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.848 [XNIO-1 task-2] NPslX5l5SHaMGu382f6s6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.850 [XNIO-1 task-2] ugqX08G-TaCT27fpJ29nWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.850 [XNIO-1 task-2] ugqX08G-TaCT27fpJ29nWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.850 [XNIO-1 task-2] ugqX08G-TaCT27fpJ29nWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.850 [XNIO-1 task-2] ugqX08G-TaCT27fpJ29nWA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.855 [XNIO-1 task-2] zF9uYPtyQtqxfBjII1UBRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21ddedff-8747-4b05-8fc5-9274eb3dc975 +09:12:46.855 [XNIO-1 task-2] zF9uYPtyQtqxfBjII1UBRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.855 [XNIO-1 task-2] zF9uYPtyQtqxfBjII1UBRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.855 [XNIO-1 task-2] zF9uYPtyQtqxfBjII1UBRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21ddedff-8747-4b05-8fc5-9274eb3dc975 +09:12:46.860 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.860 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.860 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.860 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.860 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.860 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.860 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.861 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.861 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.861 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.861 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.861 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c1c882e-cb51-4dc5-aef0-40e9b0e1","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.861 [XNIO-1 task-2] 6ib0khewRYW3atgzFBYLAw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.862 [XNIO-1 task-2] cTYBvhucQnO0Z5f70oHBQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:46.863 [XNIO-1 task-2] cTYBvhucQnO0Z5f70oHBQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.863 [XNIO-1 task-2] cTYBvhucQnO0Z5f70oHBQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.863 [XNIO-1 task-2] cTYBvhucQnO0Z5f70oHBQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:46.864 [XNIO-1 task-2] h0MFTwWSQMO35pWbIYDxog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.864 [XNIO-1 task-2] h0MFTwWSQMO35pWbIYDxog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.864 [XNIO-1 task-2] h0MFTwWSQMO35pWbIYDxog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.864 [XNIO-1 task-2] h0MFTwWSQMO35pWbIYDxog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.869 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9adafd5b-00d4-4202-a5e0-c592659e","clientDesc":"0dddd3c1-4c73-44c2-a825-a138dc92c034","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.870 [XNIO-1 task-2] FQU0rT4oQ5SfVj41h86FDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.871 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.871 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.871 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG com.networknt.schema.TypeValidator debug - validate( "acc17cdd-631d-4b8f-a70d-9a4deed48abe", {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG com.networknt.schema.TypeValidator debug - validate( "025be7ee-45b4-4798-845b-dd25380a", {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"025be7ee-45b4-4798-845b-dd25380a","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.872 [XNIO-1 task-2] ws6nQrWsT7Ch_q--3AnVAg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.874 [XNIO-1 task-2] WIp8ZOGlSaKs2dp64M1XJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.874 [XNIO-1 task-2] WIp8ZOGlSaKs2dp64M1XJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.874 [XNIO-1 task-2] WIp8ZOGlSaKs2dp64M1XJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.884 [XNIO-1 task-2] LeT0uc0SSdud8RxaQAlZSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8, base path is set to: null +09:12:46.884 [XNIO-1 task-2] LeT0uc0SSdud8RxaQAlZSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.884 [XNIO-1 task-2] LeT0uc0SSdud8RxaQAlZSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.884 [XNIO-1 task-2] LeT0uc0SSdud8RxaQAlZSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8, base path is set to: null +09:12:46.884 [XNIO-1 task-2] LeT0uc0SSdud8RxaQAlZSg DEBUG com.networknt.schema.TypeValidator debug - validate( "59c1e911-3b01-4fc8-967c-da97ac2312f8", "59c1e911-3b01-4fc8-967c-da97ac2312f8", clientId) +09:12:46.886 [XNIO-1 task-2] M72SQTp0TP6TcHSOBjoZzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9ff0656a-65b4-4443-a672-7a8c5dc0b6f6 +09:12:46.886 [XNIO-1 task-2] M72SQTp0TP6TcHSOBjoZzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.886 [XNIO-1 task-2] M72SQTp0TP6TcHSOBjoZzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.886 [XNIO-1 task-2] M72SQTp0TP6TcHSOBjoZzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9ff0656a-65b4-4443-a672-7a8c5dc0b6f6 +09:12:46.891 [XNIO-1 task-2] sXXsFamTRiaC6doNpV0H3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.891 [XNIO-1 task-2] sXXsFamTRiaC6doNpV0H3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.891 [XNIO-1 task-2] sXXsFamTRiaC6doNpV0H3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.901 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.901 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.901 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.901 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.901 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a817dea-3afc-4d74-9fed-88751d1c","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.902 [XNIO-1 task-2] 98JyLUeuTiOOMLlxx0Otlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:46.904 [XNIO-1 task-2] rvPg41wGTqKsMMshErsHNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.904 [XNIO-1 task-2] rvPg41wGTqKsMMshErsHNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.904 [XNIO-1 task-2] rvPg41wGTqKsMMshErsHNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.904 [XNIO-1 task-2] rvPg41wGTqKsMMshErsHNA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.910 [XNIO-1 task-2] ohxR0oHDTACLBBRFaQyXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:46.910 [XNIO-1 task-2] ohxR0oHDTACLBBRFaQyXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.910 [XNIO-1 task-2] ohxR0oHDTACLBBRFaQyXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.910 [XNIO-1 task-2] ohxR0oHDTACLBBRFaQyXnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:46.912 [XNIO-1 task-2] D_9vAliBThe1LrnnQ6Mydw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3, base path is set to: null +09:12:46.912 [XNIO-1 task-2] D_9vAliBThe1LrnnQ6Mydw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.912 [XNIO-1 task-2] D_9vAliBThe1LrnnQ6Mydw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.912 [XNIO-1 task-2] D_9vAliBThe1LrnnQ6Mydw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3, base path is set to: null +09:12:46.912 [XNIO-1 task-2] D_9vAliBThe1LrnnQ6Mydw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca7a2420-23b0-4a3a-a21e-d327cebaa0c3", "ca7a2420-23b0-4a3a-a21e-d327cebaa0c3", clientId) +09:12:46.913 [XNIO-1 task-2] aWqMRSXuQG-3-GkRvyPlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.913 [XNIO-1 task-2] aWqMRSXuQG-3-GkRvyPlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.913 [XNIO-1 task-2] aWqMRSXuQG-3-GkRvyPlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.913 [XNIO-1 task-2] aWqMRSXuQG-3-GkRvyPlhA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.918 [XNIO-1 task-2] cAiIqt3nTv65HPepmvZjHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a +09:12:46.918 [XNIO-1 task-2] cAiIqt3nTv65HPepmvZjHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.919 [XNIO-1 task-2] cAiIqt3nTv65HPepmvZjHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:46.919 [XNIO-1 task-2] cAiIqt3nTv65HPepmvZjHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a +09:12:46.919 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d4ebc7bb-dd1c-4bb3-9415-a9c66aeba53a +09:12:46.923 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.923 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.923 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "acc17cdd-631d-4b8f-a70d-9a4deed48abe", {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "b5d9f1d5-e483-4b8b-97ba-65bc3816", {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b5d9f1d5-e483-4b8b-97ba-65bc3816","clientDesc":"acc17cdd-631d-4b8f-a70d-9a4deed48abe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:46.924 [XNIO-1 task-2] faa9obZ4SUamyqPcixHqAA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:46.926 [XNIO-1 task-2] BuWP-ZtIT1Gdipvv5O7O6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.926 [XNIO-1 task-2] BuWP-ZtIT1Gdipvv5O7O6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.926 [XNIO-1 task-2] BuWP-ZtIT1Gdipvv5O7O6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.948 [XNIO-1 task-2] Ny9FLFqQT_qfl44zHNKG1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.948 [XNIO-1 task-2] Ny9FLFqQT_qfl44zHNKG1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.948 [XNIO-1 task-2] Ny9FLFqQT_qfl44zHNKG1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:46.948 [XNIO-1 task-2] Ny9FLFqQT_qfl44zHNKG1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:46.962 [XNIO-1 task-2] dhQFkDjqRny1ySQRKBEw6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3, base path is set to: null +09:12:46.962 [XNIO-1 task-2] dhQFkDjqRny1ySQRKBEw6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:46.962 [XNIO-1 task-2] dhQFkDjqRny1ySQRKBEw6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:46.962 [XNIO-1 task-2] dhQFkDjqRny1ySQRKBEw6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca7a2420-23b0-4a3a-a21e-d327cebaa0c3, base path is set to: null +09:12:46.962 [XNIO-1 task-2] dhQFkDjqRny1ySQRKBEw6g DEBUG com.networknt.schema.TypeValidator debug - validate( "ca7a2420-23b0-4a3a-a21e-d327cebaa0c3", "ca7a2420-23b0-4a3a-a21e-d327cebaa0c3", clientId) +09:12:46.968 [XNIO-1 task-2] UFCuJSD2SkSSc5TuHO0Lmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.968 [XNIO-1 task-2] UFCuJSD2SkSSc5TuHO0Lmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.968 [XNIO-1 task-2] UFCuJSD2SkSSc5TuHO0Lmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.968 [XNIO-1 task-2] UFCuJSD2SkSSc5TuHO0Lmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.990 [XNIO-1 task-2] wmO00X0aTneSlug5OWSVVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.990 [XNIO-1 task-2] wmO00X0aTneSlug5OWSVVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.990 [XNIO-1 task-2] wmO00X0aTneSlug5OWSVVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.990 [XNIO-1 task-2] wmO00X0aTneSlug5OWSVVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:46.996 [XNIO-1 task-2] AjWPwGHnRxSGT7RlbFkuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.996 [XNIO-1 task-2] AjWPwGHnRxSGT7RlbFkuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.997 [XNIO-1 task-2] AjWPwGHnRxSGT7RlbFkuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:46.997 [XNIO-1 task-2] AjWPwGHnRxSGT7RlbFkuuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.002 [XNIO-1 task-2] t6Hs3TZsQK64JblNOthdPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a4860c49-9bdf-45da-9f4a-0beb0ec59097 +09:12:47.002 [XNIO-1 task-2] t6Hs3TZsQK64JblNOthdPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.002 [XNIO-1 task-2] t6Hs3TZsQK64JblNOthdPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.002 [XNIO-1 task-2] t6Hs3TZsQK64JblNOthdPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a4860c49-9bdf-45da-9f4a-0beb0ec59097 +09:12:47.004 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.004 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.005 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"971d223d-2662-4341-8a42-3ebbd31c","clientDesc":"47735d38-1f89-4404-b14c-6c3b98e09378","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.006 [XNIO-1 task-2] uJtfdyheTl-rSvYHiVKT5g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.007 [XNIO-1 task-2] jKDRu4G0Qc-NlQSVu1anrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.007 [XNIO-1 task-2] jKDRu4G0Qc-NlQSVu1anrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.007 [XNIO-1 task-2] jKDRu4G0Qc-NlQSVu1anrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.018 [XNIO-1 task-2] cRZwAQ2FQOW_xjeyLKTMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fd7b46f5-dbb2-4ec4-a5d7-443a59b40123 +09:12:47.018 [XNIO-1 task-2] cRZwAQ2FQOW_xjeyLKTMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.018 [XNIO-1 task-2] cRZwAQ2FQOW_xjeyLKTMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.018 [XNIO-1 task-2] cRZwAQ2FQOW_xjeyLKTMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fd7b46f5-dbb2-4ec4-a5d7-443a59b40123 +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.023 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"05cd9357-af7a-4e19-8f43-20eddd99","clientDesc":"7666f9a0-a44a-49ea-b30e-cbfae9a2c590","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.024 [XNIO-1 task-2] gMkL8LncS3eY2deG2I4ZQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.025 [XNIO-1 task-2] gpgzv28LROCDmXWnN-nhKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.025 [XNIO-1 task-2] gpgzv28LROCDmXWnN-nhKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.026 [XNIO-1 task-2] gpgzv28LROCDmXWnN-nhKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.026 [XNIO-1 task-2] gpgzv28LROCDmXWnN-nhKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.030 [XNIO-1 task-2] aKLmOEdDQFuqgHp117pBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.030 [XNIO-1 task-2] aKLmOEdDQFuqgHp117pBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.030 [XNIO-1 task-2] aKLmOEdDQFuqgHp117pBCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.040 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.040 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.040 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.040 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG com.networknt.schema.TypeValidator debug - validate( "a82f907a-bed2-42f9-acbc-098fbf258258", {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG com.networknt.schema.TypeValidator debug - validate( "f1cc7569-0a3e-4f1b-b12c-69187332", {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f1cc7569-0a3e-4f1b-b12c-69187332","clientDesc":"a82f907a-bed2-42f9-acbc-098fbf258258","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.041 [XNIO-1 task-2] MV2S0nZjQdO2iBpa5dKtng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.043 [XNIO-1 task-2] zyWKeWKeRpK79y9OYmlnmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.043 [XNIO-1 task-2] zyWKeWKeRpK79y9OYmlnmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.043 [XNIO-1 task-2] zyWKeWKeRpK79y9OYmlnmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.048 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:072500e5-9ba9-493c-a54c-69e2e91bcae8 +09:12:47.048 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:072500e5-9ba9-493c-a54c-69e2e91bcae8 +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb", {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca9320fe-8c4c-4e71-8a0b-651546c9", {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.053 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ca9320fe-8c4c-4e71-8a0b-651546c9","clientDesc":"8aeb6700-6fa9-4bc3-85ea-84dedf83dfeb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.054 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.054 [XNIO-1 task-2] QHQGniCVT46v781R13QkVQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.055 [XNIO-1 task-2] B_kqd__rRp6hXHDgUp-0rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b7d1b80c-2646-4dfb-bf0e-0fbe2d7065a6, base path is set to: null +09:12:47.055 [XNIO-1 task-2] B_kqd__rRp6hXHDgUp-0rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.055 [XNIO-1 task-2] B_kqd__rRp6hXHDgUp-0rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.056 [XNIO-1 task-2] B_kqd__rRp6hXHDgUp-0rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b7d1b80c-2646-4dfb-bf0e-0fbe2d7065a6, base path is set to: null +09:12:47.056 [XNIO-1 task-2] B_kqd__rRp6hXHDgUp-0rw DEBUG com.networknt.schema.TypeValidator debug - validate( "b7d1b80c-2646-4dfb-bf0e-0fbe2d7065a6", "b7d1b80c-2646-4dfb-bf0e-0fbe2d7065a6", clientId) +09:12:47.061 [XNIO-1 task-2] wQcnw5jqS9uAc9SSyly5VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.061 [XNIO-1 task-2] wQcnw5jqS9uAc9SSyly5VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.061 [XNIO-1 task-2] wQcnw5jqS9uAc9SSyly5VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.061 [XNIO-1 task-2] wQcnw5jqS9uAc9SSyly5VA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.066 [XNIO-1 task-2] kx09lts6R-Wm_GAluXixbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f352aa5-d896-4562-9595-9e0df320f0fc +09:12:47.066 [XNIO-1 task-2] kx09lts6R-Wm_GAluXixbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.066 [XNIO-1 task-2] kx09lts6R-Wm_GAluXixbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.066 [XNIO-1 task-2] kx09lts6R-Wm_GAluXixbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f352aa5-d896-4562-9595-9e0df320f0fc +09:12:47.070 [XNIO-1 task-2] 2XJicc1nSrSP8mHg2kDzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b40f79cd-b537-42ae-85fd-c4db36a96a39, base path is set to: null +09:12:47.070 [XNIO-1 task-2] 2XJicc1nSrSP8mHg2kDzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.071 [XNIO-1 task-2] 2XJicc1nSrSP8mHg2kDzgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.071 [XNIO-1 task-2] 2XJicc1nSrSP8mHg2kDzgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b40f79cd-b537-42ae-85fd-c4db36a96a39, base path is set to: null +09:12:47.071 [XNIO-1 task-2] 2XJicc1nSrSP8mHg2kDzgA DEBUG com.networknt.schema.TypeValidator debug - validate( "b40f79cd-b537-42ae-85fd-c4db36a96a39", "b40f79cd-b537-42ae-85fd-c4db36a96a39", clientId) +09:12:47.072 [XNIO-1 task-2] mYL0rSNqTo6veAByd0k2uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.073 [XNIO-1 task-2] mYL0rSNqTo6veAByd0k2uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.073 [XNIO-1 task-2] mYL0rSNqTo6veAByd0k2uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.073 [XNIO-1 task-2] mYL0rSNqTo6veAByd0k2uA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.082 [XNIO-1 task-2] 1N0Trky2SAioWLWM4B28ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b40f79cd-b537-42ae-85fd-c4db36a96a39 +09:12:47.082 [XNIO-1 task-2] 1N0Trky2SAioWLWM4B28ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.082 [XNIO-1 task-2] 1N0Trky2SAioWLWM4B28ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.082 [XNIO-1 task-2] 1N0Trky2SAioWLWM4B28ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b40f79cd-b537-42ae-85fd-c4db36a96a39 +09:12:47.087 [XNIO-1 task-2] JnDzlCHBRg-xtVN4iwWvwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.087 [XNIO-1 task-2] JnDzlCHBRg-xtVN4iwWvwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.088 [XNIO-1 task-2] JnDzlCHBRg-xtVN4iwWvwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.098 [XNIO-1 task-2] 2lIz_ew7TCGvri7jociZkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.098 [XNIO-1 task-2] 2lIz_ew7TCGvri7jociZkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.098 [XNIO-1 task-2] 2lIz_ew7TCGvri7jociZkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.098 [XNIO-1 task-2] 2lIz_ew7TCGvri7jociZkg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.103 [XNIO-1 task-2] uZNS7KDHQAOS_e9j_C4EkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.103 [XNIO-1 task-2] uZNS7KDHQAOS_e9j_C4EkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.103 [XNIO-1 task-2] uZNS7KDHQAOS_e9j_C4EkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.103 [XNIO-1 task-2] uZNS7KDHQAOS_e9j_C4EkA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.108 [XNIO-1 task-2] Ik9OwKUySRaXOWaL0RD8jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.108 [XNIO-1 task-2] Ik9OwKUySRaXOWaL0RD8jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.108 [XNIO-1 task-2] Ik9OwKUySRaXOWaL0RD8jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.108 [XNIO-1 task-2] Ik9OwKUySRaXOWaL0RD8jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.113 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.113 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.113 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.113 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.113 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1ca6dd9c-d6f7-4bb1-a6e4-e3d22925","clientDesc":"20b96fa0-aa49-4d11-b1cc-ec32bad25ea5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.114 [XNIO-1 task-2] iXUqKFVuRlyL_LeQ2zlUUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.116 [XNIO-1 task-2] JccNSeCqS9uCgcQMMLGO8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.116 [XNIO-1 task-2] JccNSeCqS9uCgcQMMLGO8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.116 [XNIO-1 task-2] JccNSeCqS9uCgcQMMLGO8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.116 [XNIO-1 task-2] JccNSeCqS9uCgcQMMLGO8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.121 [XNIO-1 task-2] 9XQxo_8xRtyl1sGqOvMPWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:47.121 [XNIO-1 task-2] 9XQxo_8xRtyl1sGqOvMPWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.121 [XNIO-1 task-2] 9XQxo_8xRtyl1sGqOvMPWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.121 [XNIO-1 task-2] 9XQxo_8xRtyl1sGqOvMPWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:47.123 [XNIO-1 task-2] 2W_zTaJyS_qnFjI6IAciMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/63dcc1ae-4566-41a5-994d-b8f4ee00a751, base path is set to: null +09:12:47.123 [XNIO-1 task-2] 2W_zTaJyS_qnFjI6IAciMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.123 [XNIO-1 task-2] 2W_zTaJyS_qnFjI6IAciMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.123 [XNIO-1 task-2] 2W_zTaJyS_qnFjI6IAciMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/63dcc1ae-4566-41a5-994d-b8f4ee00a751, base path is set to: null +09:12:47.123 [XNIO-1 task-2] 2W_zTaJyS_qnFjI6IAciMg DEBUG com.networknt.schema.TypeValidator debug - validate( "63dcc1ae-4566-41a5-994d-b8f4ee00a751", "63dcc1ae-4566-41a5-994d-b8f4ee00a751", clientId) +09:12:47.128 [XNIO-1 task-2] GzGVpxVfRYy1RFzuoJnu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.128 [XNIO-1 task-2] GzGVpxVfRYy1RFzuoJnu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.128 [XNIO-1 task-2] GzGVpxVfRYy1RFzuoJnu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.138 [XNIO-1 task-2] Gse_W_KRTnOalrJhsXJOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:47.138 [XNIO-1 task-2] Gse_W_KRTnOalrJhsXJOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.138 [XNIO-1 task-2] Gse_W_KRTnOalrJhsXJOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.139 [XNIO-1 task-2] Gse_W_KRTnOalrJhsXJOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:47.139 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:59c1e911-3b01-4fc8-967c-da97ac2312f8 +09:12:47.143 [XNIO-1 task-2] WsPiJLJ6QcShtrDSoBmvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.143 [XNIO-1 task-2] WsPiJLJ6QcShtrDSoBmvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.143 [XNIO-1 task-2] WsPiJLJ6QcShtrDSoBmvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.144 [XNIO-1 task-2] WsPiJLJ6QcShtrDSoBmvSA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.149 [XNIO-1 task-2] z_2F5D1nTqirbt7bGyGRfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.149 [XNIO-1 task-2] z_2F5D1nTqirbt7bGyGRfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.149 [XNIO-1 task-2] z_2F5D1nTqirbt7bGyGRfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.159 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.159 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "12a17b33-433b-4500-b221-1af4abffc30f", {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "793c8833-7c14-4a73-934b-f44ed00f", {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"793c8833-7c14-4a73-934b-f44ed00f","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.160 [XNIO-1 task-2] xg4mq0iZSHefW0AgRORjGQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.162 [XNIO-1 task-2] 5a7ooPC8QxWgDO97bwRNhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.162 [XNIO-1 task-2] 5a7ooPC8QxWgDO97bwRNhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.162 [XNIO-1 task-2] 5a7ooPC8QxWgDO97bwRNhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.173 [XNIO-1 task-2] JzNtnj_gTqS8keFkNnqeMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e069a61f-1030-4acd-9fff-c69c5b8501fc, base path is set to: null +09:12:47.173 [XNIO-1 task-2] JzNtnj_gTqS8keFkNnqeMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.173 [XNIO-1 task-2] JzNtnj_gTqS8keFkNnqeMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.173 [XNIO-1 task-2] JzNtnj_gTqS8keFkNnqeMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e069a61f-1030-4acd-9fff-c69c5b8501fc, base path is set to: null +09:12:47.173 [XNIO-1 task-2] JzNtnj_gTqS8keFkNnqeMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e069a61f-1030-4acd-9fff-c69c5b8501fc", "e069a61f-1030-4acd-9fff-c69c5b8501fc", clientId) +09:12:47.175 [XNIO-1 task-2] _koDWihvSYSdsaBmpCHX1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e069a61f-1030-4acd-9fff-c69c5b8501fc +09:12:47.175 [XNIO-1 task-2] _koDWihvSYSdsaBmpCHX1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.175 [XNIO-1 task-2] _koDWihvSYSdsaBmpCHX1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.175 [XNIO-1 task-2] _koDWihvSYSdsaBmpCHX1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e069a61f-1030-4acd-9fff-c69c5b8501fc +09:12:47.177 [XNIO-1 task-2] bn-ShLt3Rw65HcjAVfYRaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.177 [XNIO-1 task-2] bn-ShLt3Rw65HcjAVfYRaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.177 [XNIO-1 task-2] bn-ShLt3Rw65HcjAVfYRaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.187 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.187 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.187 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.187 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7c74ecc-3040-4235-b5f8-e29a49d1","clientDesc":"12a17b33-433b-4500-b221-1af4abffc30f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.188 [XNIO-1 task-2] HvvChvy2Q7eZTMgGGAF_NA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.190 [XNIO-1 task-2] wlQYx8LGRXKhKchzzN78OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e069a61f-1030-4acd-9fff-c69c5b8501fc +09:12:47.190 [XNIO-1 task-2] wlQYx8LGRXKhKchzzN78OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.190 [XNIO-1 task-2] wlQYx8LGRXKhKchzzN78OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.191 [XNIO-1 task-2] wlQYx8LGRXKhKchzzN78OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e069a61f-1030-4acd-9fff-c69c5b8501fc +09:12:47.195 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.195 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.195 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.195 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd59fe8f-4959-4934-8cdb-bd96c176","clientDesc":"d693b696-e768-4223-8f73-66ba4add7993","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.196 [XNIO-1 task-2] CbHyNbDcRM-4FqKtgjG7Tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.198 [XNIO-1 task-2] DwW-UZVlS02z4uwSjpou-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8c7e0e74-71c7-474e-b6c2-a58a2b73a797 +09:12:47.198 [XNIO-1 task-2] DwW-UZVlS02z4uwSjpou-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.198 [XNIO-1 task-2] DwW-UZVlS02z4uwSjpou-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.198 [XNIO-1 task-2] DwW-UZVlS02z4uwSjpou-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8c7e0e74-71c7-474e-b6c2-a58a2b73a797 +09:12:47.203 [XNIO-1 task-2] lOLuOXd9ThyBucU7w2o5IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/69eca5fc-62e7-4814-863b-ea41d884ddb5, base path is set to: null +09:12:47.203 [XNIO-1 task-2] lOLuOXd9ThyBucU7w2o5IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.203 [XNIO-1 task-2] lOLuOXd9ThyBucU7w2o5IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.203 [XNIO-1 task-2] lOLuOXd9ThyBucU7w2o5IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/69eca5fc-62e7-4814-863b-ea41d884ddb5, base path is set to: null +09:12:47.204 [XNIO-1 task-2] lOLuOXd9ThyBucU7w2o5IA DEBUG com.networknt.schema.TypeValidator debug - validate( "69eca5fc-62e7-4814-863b-ea41d884ddb5", "69eca5fc-62e7-4814-863b-ea41d884ddb5", clientId) +09:12:47.208 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.208 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "e2466e60-b0d6-4c46-849c-98b8acea5700", {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "9f9a6a69-8bea-49d2-8daa-71b29d22", {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9f9a6a69-8bea-49d2-8daa-71b29d22","clientDesc":"e2466e60-b0d6-4c46-849c-98b8acea5700","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.209 [XNIO-1 task-2] aWuqeelESJOXPPk0OtiKJw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.211 [XNIO-1 task-2] wWJ6XakFSTmGepny1-MjLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4dc9d93a-4061-413a-9549-1d4beb7c30c7, base path is set to: null +09:12:47.211 [XNIO-1 task-2] wWJ6XakFSTmGepny1-MjLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.211 [XNIO-1 task-2] wWJ6XakFSTmGepny1-MjLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.211 [XNIO-1 task-2] wWJ6XakFSTmGepny1-MjLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4dc9d93a-4061-413a-9549-1d4beb7c30c7, base path is set to: null +09:12:47.211 [XNIO-1 task-2] wWJ6XakFSTmGepny1-MjLg DEBUG com.networknt.schema.TypeValidator debug - validate( "4dc9d93a-4061-413a-9549-1d4beb7c30c7", "4dc9d93a-4061-413a-9549-1d4beb7c30c7", clientId) +09:12:47.213 [XNIO-1 task-2] HJN0Cup2Rwa5G2uU-JWigg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.213 [XNIO-1 task-2] HJN0Cup2Rwa5G2uU-JWigg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.213 [XNIO-1 task-2] HJN0Cup2Rwa5G2uU-JWigg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.225 [XNIO-1 task-2] aWoMVlEGQcioFkN9vSA9UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/377586d8-4569-4550-a2f8-beddd77fb240 +09:12:47.225 [XNIO-1 task-2] aWoMVlEGQcioFkN9vSA9UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.225 [XNIO-1 task-2] aWoMVlEGQcioFkN9vSA9UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.225 [XNIO-1 task-2] aWoMVlEGQcioFkN9vSA9UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/377586d8-4569-4550-a2f8-beddd77fb240 +09:12:47.227 [XNIO-1 task-2] bbvBAcSkQ8CKUIBdJ2NIkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4dc9d93a-4061-413a-9549-1d4beb7c30c7, base path is set to: null +09:12:47.227 [XNIO-1 task-2] bbvBAcSkQ8CKUIBdJ2NIkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.227 [XNIO-1 task-2] bbvBAcSkQ8CKUIBdJ2NIkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.227 [XNIO-1 task-2] bbvBAcSkQ8CKUIBdJ2NIkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4dc9d93a-4061-413a-9549-1d4beb7c30c7, base path is set to: null +09:12:47.227 [XNIO-1 task-2] bbvBAcSkQ8CKUIBdJ2NIkg DEBUG com.networknt.schema.TypeValidator debug - validate( "4dc9d93a-4061-413a-9549-1d4beb7c30c7", "4dc9d93a-4061-413a-9549-1d4beb7c30c7", clientId) +09:12:47.232 [XNIO-1 task-2] 0nAutaAGR2-GRGMh7nlX5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.232 [XNIO-1 task-2] 0nAutaAGR2-GRGMh7nlX5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.232 [XNIO-1 task-2] 0nAutaAGR2-GRGMh7nlX5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.246 [XNIO-1 task-2] 0YItalF8SqeCvFK2jBdgTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/377586d8-4569-4550-a2f8-beddd77fb240 +09:12:47.246 [XNIO-1 task-2] 0YItalF8SqeCvFK2jBdgTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.246 [XNIO-1 task-2] 0YItalF8SqeCvFK2jBdgTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.246 [XNIO-1 task-2] 0YItalF8SqeCvFK2jBdgTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/377586d8-4569-4550-a2f8-beddd77fb240 +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.253 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.254 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.254 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"38134fac-eb46-421e-9727-b1cfc147","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.254 [XNIO-1 task-2] PJ9H1vrCRVGHL_Y5779u0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.255 [XNIO-1 task-2] -5oDAIdXQsygdkK7jwNMzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.255 [XNIO-1 task-2] -5oDAIdXQsygdkK7jwNMzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.256 [XNIO-1 task-2] -5oDAIdXQsygdkK7jwNMzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.256 [XNIO-1 task-2] -5oDAIdXQsygdkK7jwNMzw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.261 [XNIO-1 task-2] T78aBqxfRbyQgGedCPEhRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.261 [XNIO-1 task-2] T78aBqxfRbyQgGedCPEhRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.261 [XNIO-1 task-2] T78aBqxfRbyQgGedCPEhRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.271 [XNIO-1 task-2] SBNf1Yo_Rwig1nNtlvTVYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c108e0de-a745-45ce-962a-be6af3ea5e7e +09:12:47.271 [XNIO-1 task-2] SBNf1Yo_Rwig1nNtlvTVYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.271 [XNIO-1 task-2] SBNf1Yo_Rwig1nNtlvTVYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.271 [XNIO-1 task-2] SBNf1Yo_Rwig1nNtlvTVYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c108e0de-a745-45ce-962a-be6af3ea5e7e +09:12:47.273 [XNIO-1 task-2] 2b3U7noFT4GvutnFVRQBVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.273 [XNIO-1 task-2] 2b3U7noFT4GvutnFVRQBVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.273 [XNIO-1 task-2] 2b3U7noFT4GvutnFVRQBVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.273 [XNIO-1 task-2] 2b3U7noFT4GvutnFVRQBVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.277 [XNIO-1 task-2] dfTYfBO0QNOjnfLiB31WLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a4860c49-9bdf-45da-9f4a-0beb0ec59097, base path is set to: null +09:12:47.278 [XNIO-1 task-2] dfTYfBO0QNOjnfLiB31WLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.278 [XNIO-1 task-2] dfTYfBO0QNOjnfLiB31WLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.278 [XNIO-1 task-2] dfTYfBO0QNOjnfLiB31WLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a4860c49-9bdf-45da-9f4a-0beb0ec59097, base path is set to: null +09:12:47.278 [XNIO-1 task-2] dfTYfBO0QNOjnfLiB31WLw DEBUG com.networknt.schema.TypeValidator debug - validate( "a4860c49-9bdf-45da-9f4a-0beb0ec59097", "a4860c49-9bdf-45da-9f4a-0beb0ec59097", clientId) +09:12:47.284 [XNIO-1 task-2] zlG87mN9Se6ZdDr0RjzaGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.284 [XNIO-1 task-2] zlG87mN9Se6ZdDr0RjzaGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.285 [XNIO-1 task-2] zlG87mN9Se6ZdDr0RjzaGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.346 [XNIO-1 task-2] JsIo5fV7SrGsg-XkCk3sEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/072500e5-9ba9-493c-a54c-69e2e91bcae8 +09:12:47.346 [XNIO-1 task-2] JsIo5fV7SrGsg-XkCk3sEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.346 [XNIO-1 task-2] JsIo5fV7SrGsg-XkCk3sEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.346 [XNIO-1 task-2] JsIo5fV7SrGsg-XkCk3sEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/072500e5-9ba9-493c-a54c-69e2e91bcae8 +09:12:47.349 [XNIO-1 task-2] qNQR-pbaR4CH_lwVUjKlQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/072500e5-9ba9-493c-a54c-69e2e91bcae8, base path is set to: null +09:12:47.349 [XNIO-1 task-2] qNQR-pbaR4CH_lwVUjKlQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.349 [XNIO-1 task-2] qNQR-pbaR4CH_lwVUjKlQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.349 [XNIO-1 task-2] qNQR-pbaR4CH_lwVUjKlQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/072500e5-9ba9-493c-a54c-69e2e91bcae8, base path is set to: null +09:12:47.349 [XNIO-1 task-2] qNQR-pbaR4CH_lwVUjKlQA DEBUG com.networknt.schema.TypeValidator debug - validate( "072500e5-9ba9-493c-a54c-69e2e91bcae8", "072500e5-9ba9-493c-a54c-69e2e91bcae8", clientId) +09:12:47.351 [XNIO-1 task-2] U-Vg1FArRU2FCt1EzibB0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.351 [XNIO-1 task-2] U-Vg1FArRU2FCt1EzibB0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.352 [XNIO-1 task-2] U-Vg1FArRU2FCt1EzibB0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.362 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.362 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG com.networknt.schema.TypeValidator debug - validate( "1c467d98-44d8-4d83-8ba6-7111b42e5431", {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG com.networknt.schema.TypeValidator debug - validate( "807871ea-5d09-4f10-8301-f9570689", {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"807871ea-5d09-4f10-8301-f9570689","clientDesc":"1c467d98-44d8-4d83-8ba6-7111b42e5431","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.363 [XNIO-1 task-2] 0vdy-8NWR7mcl89w-YfscA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.366 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.367 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07c5c0dc-d667-4836-8ded-f2f4c9ec","clientDesc":"a86780a3-b4b8-4b88-81c4-730b32dac6a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.367 [XNIO-1 task-2] eOD_RrwkQwunjDPfSc019g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.369 [XNIO-1 task-2] Aude8uNHQT6dP0AlGGUAuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.369 [XNIO-1 task-2] Aude8uNHQT6dP0AlGGUAuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.369 [XNIO-1 task-2] Aude8uNHQT6dP0AlGGUAuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.380 [XNIO-1 task-2] tHQHiFO1TLahPY14vwVRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/493d02bb-4f4b-488b-a606-08a605f5b7bd +09:12:47.380 [XNIO-1 task-2] tHQHiFO1TLahPY14vwVRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.380 [XNIO-1 task-2] tHQHiFO1TLahPY14vwVRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.381 [XNIO-1 task-2] tHQHiFO1TLahPY14vwVRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/493d02bb-4f4b-488b-a606-08a605f5b7bd +09:12:47.387 [XNIO-1 task-2] wO9NpRIGT6CCk3-LpU5SSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/072500e5-9ba9-493c-a54c-69e2e91bcae8, base path is set to: null +09:12:47.387 [XNIO-1 task-2] wO9NpRIGT6CCk3-LpU5SSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.387 [XNIO-1 task-2] wO9NpRIGT6CCk3-LpU5SSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.387 [XNIO-1 task-2] wO9NpRIGT6CCk3-LpU5SSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/072500e5-9ba9-493c-a54c-69e2e91bcae8, base path is set to: null +09:12:47.387 [XNIO-1 task-2] wO9NpRIGT6CCk3-LpU5SSA DEBUG com.networknt.schema.TypeValidator debug - validate( "072500e5-9ba9-493c-a54c-69e2e91bcae8", "072500e5-9ba9-493c-a54c-69e2e91bcae8", clientId) +09:12:47.391 [XNIO-1 task-2] 9r9OR8zfSa626JsMe8AXJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.392 [XNIO-1 task-2] 9r9OR8zfSa626JsMe8AXJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.392 [XNIO-1 task-2] 9r9OR8zfSa626JsMe8AXJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.392 [XNIO-1 task-2] 9r9OR8zfSa626JsMe8AXJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.392 [XNIO-1 task-2] 9r9OR8zfSa626JsMe8AXJw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5afc770-9723-4eed-a944-2845bb5d35c9", "e5afc770-9723-4eed-a944-2845bb5d35c9", clientId) +09:12:47.394 [XNIO-1 task-2] nHqug0tiQQKEW2zmmQXJXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.394 [XNIO-1 task-2] nHqug0tiQQKEW2zmmQXJXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.394 [XNIO-1 task-2] nHqug0tiQQKEW2zmmQXJXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.400 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3eed025c-6a34-48e7-9647-1363bd128000 +09:12:47.405 [XNIO-1 task-2] gBKHXY8KRryaT8dLf8sNHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.405 [XNIO-1 task-2] gBKHXY8KRryaT8dLf8sNHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.405 [XNIO-1 task-2] gBKHXY8KRryaT8dLf8sNHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.405 [XNIO-1 task-2] gBKHXY8KRryaT8dLf8sNHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.405 [XNIO-1 task-2] gBKHXY8KRryaT8dLf8sNHw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5afc770-9723-4eed-a944-2845bb5d35c9", "e5afc770-9723-4eed-a944-2845bb5d35c9", clientId) +09:12:47.407 [XNIO-1 task-2] I4ph9o3ZRw2b60V6F3hmaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.407 [XNIO-1 task-2] I4ph9o3ZRw2b60V6F3hmaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.407 [XNIO-1 task-2] I4ph9o3ZRw2b60V6F3hmaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.407 [XNIO-1 task-2] I4ph9o3ZRw2b60V6F3hmaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.407 [XNIO-1 task-2] I4ph9o3ZRw2b60V6F3hmaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.408 [XNIO-1 task-2] I4ph9o3ZRw2b60V6F3hmaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +09:12:47.415 [XNIO-1 task-2] ZBhSmF77T_aPMs3KUNH5hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.415 [XNIO-1 task-2] ZBhSmF77T_aPMs3KUNH5hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.415 [XNIO-1 task-2] ZBhSmF77T_aPMs3KUNH5hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:12:47.426 [XNIO-1 task-2] pXzSxTgPTw2ix5D8XA79Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.436 [XNIO-1 task-2] XfyTlR6MRaG2PvY6o4EUng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.436 [XNIO-1 task-2] XfyTlR6MRaG2PvY6o4EUng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.436 [XNIO-1 task-2] XfyTlR6MRaG2PvY6o4EUng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.436 [XNIO-1 task-2] XfyTlR6MRaG2PvY6o4EUng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.436 [XNIO-1 task-2] XfyTlR6MRaG2PvY6o4EUng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +09:12:47.438 [XNIO-1 task-2] 8o21g6jwSjWsL30XkkloWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.438 [XNIO-1 task-2] 8o21g6jwSjWsL30XkkloWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.438 [XNIO-1 task-2] 8o21g6jwSjWsL30XkkloWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:12:47.439 [XNIO-1 task-2] 8o21g6jwSjWsL30XkkloWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.439 [XNIO-1 task-2] 8o21g6jwSjWsL30XkkloWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:12:47.444 [XNIO-1 task-2] 77W88BqzSbCBGHHLQTvRNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:12:47.444 [XNIO-1 task-2] 77W88BqzSbCBGHHLQTvRNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.444 [XNIO-1 task-2] 77W88BqzSbCBGHHLQTvRNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.444 [XNIO-1 task-2] 77W88BqzSbCBGHHLQTvRNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.451 [XNIO-1 task-2] o-hBsQC1Ra6olObnOaicLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f46bedec-33c8-44a6-bb45-b40a42257a65, base path is set to: null +09:12:47.451 [XNIO-1 task-2] o-hBsQC1Ra6olObnOaicLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.451 [XNIO-1 task-2] o-hBsQC1Ra6olObnOaicLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.451 [XNIO-1 task-2] o-hBsQC1Ra6olObnOaicLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f46bedec-33c8-44a6-bb45-b40a42257a65, base path is set to: null +09:12:47.452 [XNIO-1 task-2] o-hBsQC1Ra6olObnOaicLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f46bedec-33c8-44a6-bb45-b40a42257a65", "f46bedec-33c8-44a6-bb45-b40a42257a65", clientId) +09:12:47.458 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.458 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.459 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.459 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.459 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.459 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ebf423e-4ac0-4f9a-8b29-70c556e89aab", {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.459 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.460 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.460 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "cc3b2948-95de-4031-be58-97446223", {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.460 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.460 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cc3b2948-95de-4031-be58-97446223","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.460 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.460 [XNIO-1 task-2] d3I58gn1StGcylrmLPWDhA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.462 [XNIO-1 task-2] fy4Uxi-cRdSPgtw4E84Uaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.462 [XNIO-1 task-2] fy4Uxi-cRdSPgtw4E84Uaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.463 [XNIO-1 task-2] fy4Uxi-cRdSPgtw4E84Uaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.464 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ecb9b127 +09:12:47.464 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ecb9b127 +09:12:47.475 [XNIO-1 task-2] GxdEi7GARuCPG8xHDF3fPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6beae9df-046e-41ca-8111-848f066a0ae3 +09:12:47.475 [XNIO-1 task-2] GxdEi7GARuCPG8xHDF3fPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.475 [XNIO-1 task-2] GxdEi7GARuCPG8xHDF3fPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.475 [XNIO-1 task-2] GxdEi7GARuCPG8xHDF3fPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6beae9df-046e-41ca-8111-848f066a0ae3 +09:12:47.476 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ecb9b127 +09:12:47.480 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.480 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.480 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32e17f4d-f151-4f31-a3e2-aeff8010","clientDesc":"983f0b12-a739-4ec6-be80-c1f55d724b65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.481 [XNIO-1 task-2] dJVckNHET2qxogvoNroPQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.483 [XNIO-1 task-2] hI1doy6nTRCJjX9-pwnAfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.483 [XNIO-1 task-2] hI1doy6nTRCJjX9-pwnAfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.483 [XNIO-1 task-2] hI1doy6nTRCJjX9-pwnAfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.489 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6 +09:12:47.495 [XNIO-1 task-2] 1klthZDoS1CZLPs-c0EMqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3eed025c-6a34-48e7-9647-1363bd128000, base path is set to: null +09:12:47.495 [XNIO-1 task-2] 1klthZDoS1CZLPs-c0EMqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.495 [XNIO-1 task-2] 1klthZDoS1CZLPs-c0EMqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.495 [XNIO-1 task-2] 1klthZDoS1CZLPs-c0EMqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3eed025c-6a34-48e7-9647-1363bd128000, base path is set to: null +09:12:47.496 [XNIO-1 task-2] 1klthZDoS1CZLPs-c0EMqA DEBUG com.networknt.schema.TypeValidator debug - validate( "3eed025c-6a34-48e7-9647-1363bd128000", "3eed025c-6a34-48e7-9647-1363bd128000", clientId) +09:12:47.498 [XNIO-1 task-2] P8COWwKXQ8KCUE-43SFrhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.498 [XNIO-1 task-2] P8COWwKXQ8KCUE-43SFrhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.498 [XNIO-1 task-2] P8COWwKXQ8KCUE-43SFrhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.498 [XNIO-1 task-2] P8COWwKXQ8KCUE-43SFrhA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.507 [XNIO-1 task-2] 0CvFVnwtR_SRR8MlxTAWgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.507 [XNIO-1 task-2] 0CvFVnwtR_SRR8MlxTAWgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.507 [XNIO-1 task-2] 0CvFVnwtR_SRR8MlxTAWgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.518 [XNIO-1 task-2] mk9OHxNXRaixT1I2BtXElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3eed025c-6a34-48e7-9647-1363bd128000 +09:12:47.518 [XNIO-1 task-2] mk9OHxNXRaixT1I2BtXElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.518 [XNIO-1 task-2] mk9OHxNXRaixT1I2BtXElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.518 [XNIO-1 task-2] mk9OHxNXRaixT1I2BtXElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3eed025c-6a34-48e7-9647-1363bd128000 +09:12:47.521 [XNIO-1 task-2] Ih_H9ZuIRl6pNR_MOPgcqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/725769e5-3184-4c75-b920-b0d07928d40d, base path is set to: null +09:12:47.521 [XNIO-1 task-2] Ih_H9ZuIRl6pNR_MOPgcqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.521 [XNIO-1 task-2] Ih_H9ZuIRl6pNR_MOPgcqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.521 [XNIO-1 task-2] Ih_H9ZuIRl6pNR_MOPgcqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/725769e5-3184-4c75-b920-b0d07928d40d, base path is set to: null +09:12:47.521 [XNIO-1 task-2] Ih_H9ZuIRl6pNR_MOPgcqw DEBUG com.networknt.schema.TypeValidator debug - validate( "725769e5-3184-4c75-b920-b0d07928d40d", "725769e5-3184-4c75-b920-b0d07928d40d", clientId) +09:12:47.528 [XNIO-1 task-2] G-tl8vG_Qk218Hl_BpwWLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3eed025c-6a34-48e7-9647-1363bd128000 +09:12:47.528 [XNIO-1 task-2] G-tl8vG_Qk218Hl_BpwWLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.528 [XNIO-1 task-2] G-tl8vG_Qk218Hl_BpwWLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.528 [XNIO-1 task-2] G-tl8vG_Qk218Hl_BpwWLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3eed025c-6a34-48e7-9647-1363bd128000 +09:12:47.528 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3eed025c-6a34-48e7-9647-1363bd128000 +09:12:47.533 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.533 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.533 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.533 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.533 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.533 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8db16966-3f36-40a9-a37d-704b7e2b6ae8", {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.534 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.534 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.534 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b8d60b9b-8639-4971-bd6a-feaba2e0", {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.534 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.534 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b8d60b9b-8639-4971-bd6a-feaba2e0","clientDesc":"8db16966-3f36-40a9-a37d-704b7e2b6ae8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.534 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.534 [XNIO-1 task-2] sFpjl6BdSDW-bTiGci3-7Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.536 [XNIO-1 task-2] Z7ILXi-DSwS4fdqozSDl5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.536 [XNIO-1 task-2] Z7ILXi-DSwS4fdqozSDl5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.536 [XNIO-1 task-2] Z7ILXi-DSwS4fdqozSDl5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.547 [XNIO-1 task-2] 8WiM_CkUS4Kosw0arVlPpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.547 [XNIO-1 task-2] 8WiM_CkUS4Kosw0arVlPpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.547 [XNIO-1 task-2] 8WiM_CkUS4Kosw0arVlPpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.547 [XNIO-1 task-2] 8WiM_CkUS4Kosw0arVlPpg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.553 [XNIO-1 task-2] 9K7SYTqmTomMeAdLXD3HxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/286911f1-8fbe-46cd-a9a4-7211f88cc46a, base path is set to: null +09:12:47.553 [XNIO-1 task-2] 9K7SYTqmTomMeAdLXD3HxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.553 [XNIO-1 task-2] 9K7SYTqmTomMeAdLXD3HxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.553 [XNIO-1 task-2] 9K7SYTqmTomMeAdLXD3HxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/286911f1-8fbe-46cd-a9a4-7211f88cc46a, base path is set to: null +09:12:47.553 [XNIO-1 task-2] 9K7SYTqmTomMeAdLXD3HxA DEBUG com.networknt.schema.TypeValidator debug - validate( "286911f1-8fbe-46cd-a9a4-7211f88cc46a", "286911f1-8fbe-46cd-a9a4-7211f88cc46a", clientId) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb9e985d-344c-4f67-8856-46b57a2d7f8f", {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c850bc18-8f2f-4f6c-9fed-aab72169", {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.563 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c850bc18-8f2f-4f6c-9fed-aab72169","clientDesc":"fb9e985d-344c-4f67-8856-46b57a2d7f8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.564 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.564 [XNIO-1 task-2] 2WNeRjTKRkqUxKJADXtaVQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.566 [XNIO-1 task-2] 9sCAp2_TSY60TAEqvOp7oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49fc47f7-acde-464a-b6f8-86f52190a90a, base path is set to: null +09:12:47.566 [XNIO-1 task-2] 9sCAp2_TSY60TAEqvOp7oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.566 [XNIO-1 task-2] 9sCAp2_TSY60TAEqvOp7oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.566 [XNIO-1 task-2] 9sCAp2_TSY60TAEqvOp7oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49fc47f7-acde-464a-b6f8-86f52190a90a, base path is set to: null +09:12:47.566 [XNIO-1 task-2] 9sCAp2_TSY60TAEqvOp7oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "49fc47f7-acde-464a-b6f8-86f52190a90a", "49fc47f7-acde-464a-b6f8-86f52190a90a", clientId) +09:12:47.568 [XNIO-1 task-2] AiRGhKzWQmOGFoRsxMcmbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db20e602-6f44-44c5-a144-05c949cda890 +09:12:47.568 [XNIO-1 task-2] AiRGhKzWQmOGFoRsxMcmbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.568 [XNIO-1 task-2] AiRGhKzWQmOGFoRsxMcmbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.569 [XNIO-1 task-2] AiRGhKzWQmOGFoRsxMcmbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db20e602-6f44-44c5-a144-05c949cda890 +09:12:47.570 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:05ee527a +09:12:47.571 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:05ee527a +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6c7df013-4380-4adc-8189-4fae3bcdf11c", {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60e375b3-95e7-4e30-85df-4be9e3e7", {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.576 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.577 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"60e375b3-95e7-4e30-85df-4be9e3e7","clientDesc":"6c7df013-4380-4adc-8189-4fae3bcdf11c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.577 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.577 [XNIO-1 task-2] KOCcHlR1TAOJ5zwnCPv5WQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.579 [XNIO-1 task-2] KNQHKcEETpiSIecBZLJc_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.579 [XNIO-1 task-2] KNQHKcEETpiSIecBZLJc_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.579 [XNIO-1 task-2] KNQHKcEETpiSIecBZLJc_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.579 [XNIO-1 task-2] KNQHKcEETpiSIecBZLJc_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.587 [XNIO-1 task-2] j3kCcmLKTyClb-9pvJof_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49fc47f7-acde-464a-b6f8-86f52190a90a, base path is set to: null +09:12:47.587 [XNIO-1 task-2] j3kCcmLKTyClb-9pvJof_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.587 [XNIO-1 task-2] j3kCcmLKTyClb-9pvJof_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.587 [XNIO-1 task-2] j3kCcmLKTyClb-9pvJof_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49fc47f7-acde-464a-b6f8-86f52190a90a, base path is set to: null +09:12:47.587 [XNIO-1 task-2] j3kCcmLKTyClb-9pvJof_A DEBUG com.networknt.schema.TypeValidator debug - validate( "49fc47f7-acde-464a-b6f8-86f52190a90a", "49fc47f7-acde-464a-b6f8-86f52190a90a", clientId) +09:12:47.593 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.593 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.593 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG com.networknt.schema.TypeValidator debug - validate( "d8711bc3-8d3a-43d2-beab-9e09c7417dbd", {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG com.networknt.schema.TypeValidator debug - validate( "2c0d70f9-77fa-44d7-b795-1f7ddcbb", {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2c0d70f9-77fa-44d7-b795-1f7ddcbb","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.594 [XNIO-1 task-2] IAYyZQ6wTbGLO-RRM96NMw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.597 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.598 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11bb063b-e3f1-4f90-a01f-da4a0658","clientDesc":"d8711bc3-8d3a-43d2-beab-9e09c7417dbd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.599 [XNIO-1 task-2] 6CTpG2QnSsaUvFgrXYK5Fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.600 [XNIO-1 task-2] 9x3MopReSRukFToVPoFIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66eb1e94-e1de-4afa-b897-aae45c0bc883, base path is set to: null +09:12:47.601 [XNIO-1 task-2] 9x3MopReSRukFToVPoFIXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/66eb1e94-e1de-4afa-b897-aae45c0bc883 +09:12:47.601 [XNIO-1 task-2] 9x3MopReSRukFToVPoFIXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.601 [XNIO-1 task-2] 9x3MopReSRukFToVPoFIXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.601 [XNIO-1 task-2] 9x3MopReSRukFToVPoFIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66eb1e94-e1de-4afa-b897-aae45c0bc883, base path is set to: null +09:12:47.601 [XNIO-1 task-2] 9x3MopReSRukFToVPoFIXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/66eb1e94-e1de-4afa-b897-aae45c0bc883 + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:12:47.619 [XNIO-1 task-2] h0rqMbGfSKmiGfpoPQYU8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f57ae1d-e601-4d38-92ec-1afc5a25726f, base path is set to: null +09:12:47.619 [XNIO-1 task-2] h0rqMbGfSKmiGfpoPQYU8g DEBUG com.networknt.schema.TypeValidator debug - validate( "8f57ae1d-e601-4d38-92ec-1afc5a25726f", "8f57ae1d-e601-4d38-92ec-1afc5a25726f", clientId) +09:12:47.624 [XNIO-1 task-2] jPE8opAlQ3K8WtgQPMPdoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/110b20b4-2932-4304-87f9-6dcdfd98ecca + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +09:12:47.624 [XNIO-1 task-2] jPE8opAlQ3K8WtgQPMPdoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +09:12:47.624 [XNIO-1 task-2] jPE8opAlQ3K8WtgQPMPdoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.624 [XNIO-1 task-2] jPE8opAlQ3K8WtgQPMPdoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/110b20b4-2932-4304-87f9-6dcdfd98ecca, base path is set to: null +09:12:47.624 [XNIO-1 task-2] jPE8opAlQ3K8WtgQPMPdoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/110b20b4-2932-4304-87f9-6dcdfd98ecca + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:12:47.628 [XNIO-1 task-2] LkvU0ZonTICieueWm4V6nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + ... 13 more + +09:12:47.628 [XNIO-1 task-2] LkvU0ZonTICieueWm4V6nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:12:47.628 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:05ee527a +09:12:47.628 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:05ee527a + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +09:12:47.635 [XNIO-1 task-2] X706-ZGaThCI-Iw72SSI5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c108e0de-a745-45ce-962a-be6af3ea5e7e, base path is set to: null +09:12:47.635 [XNIO-1 task-2] X706-ZGaThCI-Iw72SSI5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.635 [XNIO-1 task-2] X706-ZGaThCI-Iw72SSI5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.635 [XNIO-1 task-2] X706-ZGaThCI-Iw72SSI5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c108e0de-a745-45ce-962a-be6af3ea5e7e, base path is set to: null +09:12:47.636 [XNIO-1 task-2] X706-ZGaThCI-Iw72SSI5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c108e0de-a745-45ce-962a-be6af3ea5e7e", "c108e0de-a745-45ce-962a-be6af3ea5e7e", clientId) +09:12:47.643 [XNIO-1 task-2] ljO7HOaETmuSQbP0U6DG9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:12:47.643 [XNIO-1 task-2] ljO7HOaETmuSQbP0U6DG9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.643 [XNIO-1 task-2] ljO7HOaETmuSQbP0U6DG9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.643 [XNIO-1 task-2] ljO7HOaETmuSQbP0U6DG9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.657 [XNIO-1 task-2] azuMiGE9RoeSDojtHkb29Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.658 [XNIO-1 task-2] azuMiGE9RoeSDojtHkb29Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.658 [XNIO-1 task-2] azuMiGE9RoeSDojtHkb29Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.658 [XNIO-1 task-2] azuMiGE9RoeSDojtHkb29Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.663 [XNIO-1 task-2] qFzfKLcGR2afqod2w72l6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/110b20b4-2932-4304-87f9-6dcdfd98ecca +09:12:47.663 [XNIO-1 task-2] qFzfKLcGR2afqod2w72l6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.664 [XNIO-1 task-2] qFzfKLcGR2afqod2w72l6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.664 [XNIO-1 task-2] qFzfKLcGR2afqod2w72l6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/110b20b4-2932-4304-87f9-6dcdfd98ecca +09:12:47.670 [XNIO-1 task-2] o_DcAhlYRY6syp-0N3-rjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3e9713d6-74ee-4679-8ba1-2ea8c14938ad, base path is set to: null +09:12:47.670 [XNIO-1 task-2] o_DcAhlYRY6syp-0N3-rjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.670 [XNIO-1 task-2] o_DcAhlYRY6syp-0N3-rjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.670 [XNIO-1 task-2] o_DcAhlYRY6syp-0N3-rjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3e9713d6-74ee-4679-8ba1-2ea8c14938ad, base path is set to: null +09:12:47.670 [XNIO-1 task-2] o_DcAhlYRY6syp-0N3-rjw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e9713d6-74ee-4679-8ba1-2ea8c14938ad", "3e9713d6-74ee-4679-8ba1-2ea8c14938ad", clientId) +09:12:47.673 [XNIO-1 task-2] GlTZolRTQl2KLaqup0Fjcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d8dc4a06-9c1c-4032-bc70-4f37881f56d8, base path is set to: null +09:12:47.673 [XNIO-1 task-2] GlTZolRTQl2KLaqup0Fjcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.673 [XNIO-1 task-2] GlTZolRTQl2KLaqup0Fjcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.673 [XNIO-1 task-2] GlTZolRTQl2KLaqup0Fjcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d8dc4a06-9c1c-4032-bc70-4f37881f56d8, base path is set to: null +09:12:47.673 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:05ee527a +09:12:47.676 [XNIO-1 task-2] 8TIserlKRAeu50TCT-ApyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.676 [XNIO-1 task-2] 8TIserlKRAeu50TCT-ApyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.676 [XNIO-1 task-2] 8TIserlKRAeu50TCT-ApyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.676 [XNIO-1 task-2] 8TIserlKRAeu50TCT-ApyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.676 [XNIO-1 task-2] 8TIserlKRAeu50TCT-ApyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5afc770-9723-4eed-a944-2845bb5d35c9", "e5afc770-9723-4eed-a944-2845bb5d35c9", clientId) +09:12:47.679 [XNIO-1 task-2] EOPoeGmfSaeajjGvdfsEmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.679 [XNIO-1 task-2] EOPoeGmfSaeajjGvdfsEmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.679 [XNIO-1 task-2] EOPoeGmfSaeajjGvdfsEmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.679 [XNIO-1 task-2] EOPoeGmfSaeajjGvdfsEmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.681 [XNIO-1 task-2] pFwpnViKRsGtkWOQHC5ppg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.682 [XNIO-1 task-2] pFwpnViKRsGtkWOQHC5ppg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.682 [XNIO-1 task-2] pFwpnViKRsGtkWOQHC5ppg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.682 [XNIO-1 task-2] pFwpnViKRsGtkWOQHC5ppg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.682 [XNIO-1 task-2] pFwpnViKRsGtkWOQHC5ppg DEBUG com.networknt.schema.TypeValidator debug - validate( "e5afc770-9723-4eed-a944-2845bb5d35c9", "e5afc770-9723-4eed-a944-2845bb5d35c9", clientId) +09:12:47.684 [XNIO-1 task-2] i9BqGHHQQtS-8YMSpmrRkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.684 [XNIO-1 task-2] i9BqGHHQQtS-8YMSpmrRkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.684 [XNIO-1 task-2] i9BqGHHQQtS-8YMSpmrRkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.684 [XNIO-1 task-2] i9BqGHHQQtS-8YMSpmrRkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.691 [XNIO-1 task-2] 00rQ2youS-m0txzy9SbH7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.691 [XNIO-1 task-2] 00rQ2youS-m0txzy9SbH7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.691 [XNIO-1 task-2] 00rQ2youS-m0txzy9SbH7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.691 [XNIO-1 task-2] 00rQ2youS-m0txzy9SbH7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.693 [XNIO-1 task-2] b376uvLwTvaEu7Qsh7ny7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.693 [XNIO-1 task-2] b376uvLwTvaEu7Qsh7ny7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.694 [XNIO-1 task-2] b376uvLwTvaEu7Qsh7ny7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.697 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0385e47d +09:12:47.698 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0385e47d +09:12:47.699 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:38c7a822-4f68-4fe8-94a0-d38a20fb1e41 +09:12:47.704 [XNIO-1 task-2] dshLF6GgRTW1BM2vYF0vSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.704 [XNIO-1 task-2] dshLF6GgRTW1BM2vYF0vSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.704 [XNIO-1 task-2] dshLF6GgRTW1BM2vYF0vSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.704 [XNIO-1 task-2] dshLF6GgRTW1BM2vYF0vSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.704 [XNIO-1 task-2] dshLF6GgRTW1BM2vYF0vSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5afc770-9723-4eed-a944-2845bb5d35c9", "e5afc770-9723-4eed-a944-2845bb5d35c9", clientId) +09:12:47.706 [XNIO-1 task-2] FDIKhj3eSnGRhVw7Y-fnTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.706 [XNIO-1 task-2] FDIKhj3eSnGRhVw7Y-fnTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.706 [XNIO-1 task-2] FDIKhj3eSnGRhVw7Y-fnTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.714 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0385e47d +09:12:47.718 [XNIO-1 task-2] FOJ-DH-YToKeS7Xg3BTGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.718 [XNIO-1 task-2] FOJ-DH-YToKeS7Xg3BTGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.718 [XNIO-1 task-2] FOJ-DH-YToKeS7Xg3BTGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.718 [XNIO-1 task-2] FOJ-DH-YToKeS7Xg3BTGbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.720 [XNIO-1 task-2] hnXe5FiJTSibDo2puQZZCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.720 [XNIO-1 task-2] hnXe5FiJTSibDo2puQZZCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.720 [XNIO-1 task-2] hnXe5FiJTSibDo2puQZZCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.720 [XNIO-1 task-2] hnXe5FiJTSibDo2puQZZCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9, base path is set to: null +09:12:47.720 [XNIO-1 task-2] hnXe5FiJTSibDo2puQZZCg DEBUG com.networknt.schema.TypeValidator debug - validate( "e5afc770-9723-4eed-a944-2845bb5d35c9", "e5afc770-9723-4eed-a944-2845bb5d35c9", clientId) +09:12:47.722 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.722 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG com.networknt.schema.TypeValidator debug - validate( "4ebf423e-4ac0-4f9a-8b29-70c556e89aab", {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG com.networknt.schema.TypeValidator debug - validate( "7be2caef-1226-454c-94f7-e59d25df", {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7be2caef-1226-454c-94f7-e59d25df","clientDesc":"4ebf423e-4ac0-4f9a-8b29-70c556e89aab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.723 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.724 [XNIO-1 task-2] gprs4I6HTUyHxEUcEdksrw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.726 [XNIO-1 task-2] oUmYxHC2TuaWLW1e0SIhlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6, base path is set to: null +09:12:47.726 [XNIO-1 task-2] oUmYxHC2TuaWLW1e0SIhlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.726 [XNIO-1 task-2] oUmYxHC2TuaWLW1e0SIhlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.726 [XNIO-1 task-2] oUmYxHC2TuaWLW1e0SIhlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6, base path is set to: null +09:12:47.726 [XNIO-1 task-2] oUmYxHC2TuaWLW1e0SIhlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6", "e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6", clientId) +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "59984f71-41a5-4b52-b192-fbebd2727b4e", {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.728 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.729 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "8bb3bac6-a8e8-40b3-98e7-a2761f52", {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.729 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.729 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8bb3bac6-a8e8-40b3-98e7-a2761f52","clientDesc":"59984f71-41a5-4b52-b192-fbebd2727b4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.729 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.729 [XNIO-1 task-2] AYyw4xI2S1ulHlpbaEmQFw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.731 [XNIO-1 task-2] z0twvLYJTO6anvXS56RW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6, base path is set to: null +09:12:47.731 [XNIO-1 task-2] z0twvLYJTO6anvXS56RW3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.731 [XNIO-1 task-2] z0twvLYJTO6anvXS56RW3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.731 [XNIO-1 task-2] z0twvLYJTO6anvXS56RW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6, base path is set to: null +09:12:47.731 [XNIO-1 task-2] z0twvLYJTO6anvXS56RW3A DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6", "e2a160b3-94bd-41da-9bf8-ebd48c8f4ed6", clientId) +09:12:47.737 [XNIO-1 task-2] aHzkaqquRSOhmUwAnq_fcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b, base path is set to: null +09:12:47.737 [XNIO-1 task-2] aHzkaqquRSOhmUwAnq_fcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.737 [XNIO-1 task-2] aHzkaqquRSOhmUwAnq_fcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.737 [XNIO-1 task-2] aHzkaqquRSOhmUwAnq_fcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b, base path is set to: null +09:12:47.737 [XNIO-1 task-2] aHzkaqquRSOhmUwAnq_fcw DEBUG com.networknt.schema.TypeValidator debug - validate( "bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b", "bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b", clientId) +09:12:47.740 [XNIO-1 task-2] KFKZHUpISC2S891urg6_lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.740 [XNIO-1 task-2] KFKZHUpISC2S891urg6_lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.740 [XNIO-1 task-2] KFKZHUpISC2S891urg6_lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.740 [XNIO-1 task-2] KFKZHUpISC2S891urg6_lw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.747 [XNIO-1 task-2] jkaoQsK6R6ytyjqCgN3Eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b +09:12:47.747 [XNIO-1 task-2] jkaoQsK6R6ytyjqCgN3Eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.747 [XNIO-1 task-2] jkaoQsK6R6ytyjqCgN3Eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.747 [XNIO-1 task-2] jkaoQsK6R6ytyjqCgN3Eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b +09:12:47.749 [XNIO-1 task-2] zvQSs0WWTuihCCOq2bOX2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.749 [XNIO-1 task-2] zvQSs0WWTuihCCOq2bOX2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.749 [XNIO-1 task-2] zvQSs0WWTuihCCOq2bOX2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.749 [XNIO-1 task-2] zvQSs0WWTuihCCOq2bOX2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.754 [XNIO-1 task-2] ZNpsHuH9RDGiOg84JI0nQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.754 [XNIO-1 task-2] ZNpsHuH9RDGiOg84JI0nQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.754 [XNIO-1 task-2] ZNpsHuH9RDGiOg84JI0nQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.765 [XNIO-1 task-2] kM8CKk2TShumKJiqoIRHJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b, base path is set to: null +09:12:47.765 [XNIO-1 task-2] kM8CKk2TShumKJiqoIRHJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.765 [XNIO-1 task-2] kM8CKk2TShumKJiqoIRHJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.765 [XNIO-1 task-2] kM8CKk2TShumKJiqoIRHJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b, base path is set to: null +09:12:47.765 [XNIO-1 task-2] kM8CKk2TShumKJiqoIRHJw DEBUG com.networknt.schema.TypeValidator debug - validate( "bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b", "bdfcd8a1-7d7e-48e9-af1a-6d1e0080c02b", clientId) +09:12:47.770 [XNIO-1 task-2] wO-fkYldSiW0sbZ_7YsUbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.770 [XNIO-1 task-2] wO-fkYldSiW0sbZ_7YsUbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.770 [XNIO-1 task-2] wO-fkYldSiW0sbZ_7YsUbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.780 [XNIO-1 task-2] 32Vfs2RgQsyK8Fkz76Y3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.780 [XNIO-1 task-2] 32Vfs2RgQsyK8Fkz76Y3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.780 [XNIO-1 task-2] 32Vfs2RgQsyK8Fkz76Y3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.792 [XNIO-1 task-2] ye7rMgHqR0mNVUOaEzt9sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.792 [XNIO-1 task-2] ye7rMgHqR0mNVUOaEzt9sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.792 [XNIO-1 task-2] ye7rMgHqR0mNVUOaEzt9sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.792 [XNIO-1 task-2] ye7rMgHqR0mNVUOaEzt9sw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.800 [XNIO-1 task-2] Sr3R-SrtRAuicUeX6It7hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.800 [XNIO-1 task-2] Sr3R-SrtRAuicUeX6It7hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.800 [XNIO-1 task-2] Sr3R-SrtRAuicUeX6It7hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.800 [XNIO-1 task-2] Sr3R-SrtRAuicUeX6It7hA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.808 [XNIO-1 task-2] cRHc0BEeQRGZFCT0c8UvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f97e0bec-1965-463d-a3aa-42cb1954dd9d +09:12:47.808 [XNIO-1 task-2] cRHc0BEeQRGZFCT0c8UvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.808 [XNIO-1 task-2] cRHc0BEeQRGZFCT0c8UvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.808 [XNIO-1 task-2] cRHc0BEeQRGZFCT0c8UvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f97e0bec-1965-463d-a3aa-42cb1954dd9d +09:12:47.814 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.814 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.814 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"43f7ecc2-b6ea-43bf-9b23-7d82365c","clientDesc":"949ea770-0eb0-4e32-bb06-c8e849aec62b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.815 [XNIO-1 task-2] 07CN7LFcSN2Rs95_mrwmbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:47.818 [XNIO-1 task-2] Tj_xQBdOQzabwZ_0zll2JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38c7a822-4f68-4fe8-94a0-d38a20fb1e41 +09:12:47.819 [XNIO-1 task-2] Tj_xQBdOQzabwZ_0zll2JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.819 [XNIO-1 task-2] Tj_xQBdOQzabwZ_0zll2JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.819 [XNIO-1 task-2] Tj_xQBdOQzabwZ_0zll2JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38c7a822-4f68-4fe8-94a0-d38a20fb1e41 +09:12:47.821 [XNIO-1 task-2] FdA2ziySTX6H62-F0ZczTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/38c7a822-4f68-4fe8-94a0-d38a20fb1e41, base path is set to: null +09:12:47.821 [XNIO-1 task-2] FdA2ziySTX6H62-F0ZczTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.821 [XNIO-1 task-2] FdA2ziySTX6H62-F0ZczTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.821 [XNIO-1 task-2] FdA2ziySTX6H62-F0ZczTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/38c7a822-4f68-4fe8-94a0-d38a20fb1e41, base path is set to: null +09:12:47.821 [XNIO-1 task-2] FdA2ziySTX6H62-F0ZczTA DEBUG com.networknt.schema.TypeValidator debug - validate( "38c7a822-4f68-4fe8-94a0-d38a20fb1e41", "38c7a822-4f68-4fe8-94a0-d38a20fb1e41", clientId) +09:12:47.826 [XNIO-1 task-2] 2FDC0mMYQdSSgakwEZjyGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.826 [XNIO-1 task-2] 2FDC0mMYQdSSgakwEZjyGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.826 [XNIO-1 task-2] 2FDC0mMYQdSSgakwEZjyGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.836 [XNIO-1 task-2] Q3c3ZNdEQ3iocsVVlq_Icw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a270f8e0-ab5a-4299-835c-6d5cae94d2bf, base path is set to: null +09:12:47.836 [XNIO-1 task-2] Q3c3ZNdEQ3iocsVVlq_Icw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.837 [XNIO-1 task-2] Q3c3ZNdEQ3iocsVVlq_Icw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.837 [XNIO-1 task-2] Q3c3ZNdEQ3iocsVVlq_Icw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a270f8e0-ab5a-4299-835c-6d5cae94d2bf, base path is set to: null +09:12:47.837 [XNIO-1 task-2] Q3c3ZNdEQ3iocsVVlq_Icw DEBUG com.networknt.schema.TypeValidator debug - validate( "a270f8e0-ab5a-4299-835c-6d5cae94d2bf", "a270f8e0-ab5a-4299-835c-6d5cae94d2bf", clientId) +09:12:47.839 [XNIO-1 task-2] 1B8EJ0pGTziNH4A0fbgpLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a270f8e0-ab5a-4299-835c-6d5cae94d2bf +09:12:47.839 [XNIO-1 task-2] 1B8EJ0pGTziNH4A0fbgpLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.839 [XNIO-1 task-2] 1B8EJ0pGTziNH4A0fbgpLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.839 [XNIO-1 task-2] 1B8EJ0pGTziNH4A0fbgpLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a270f8e0-ab5a-4299-835c-6d5cae94d2bf +09:12:47.845 [XNIO-1 task-2] moHiVf8xTKKyhDuprCNcxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6123e017-34dc-4c6c-8b08-17a07b7c4911, base path is set to: null +09:12:47.845 [XNIO-1 task-2] moHiVf8xTKKyhDuprCNcxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.845 [XNIO-1 task-2] moHiVf8xTKKyhDuprCNcxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.845 [XNIO-1 task-2] moHiVf8xTKKyhDuprCNcxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6123e017-34dc-4c6c-8b08-17a07b7c4911, base path is set to: null +09:12:47.846 [XNIO-1 task-2] moHiVf8xTKKyhDuprCNcxw DEBUG com.networknt.schema.TypeValidator debug - validate( "6123e017-34dc-4c6c-8b08-17a07b7c4911", "6123e017-34dc-4c6c-8b08-17a07b7c4911", clientId) +09:12:47.849 [XNIO-1 task-2] 1Ckg7rneRny74OJ7VJKwsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e9713d6-74ee-4679-8ba1-2ea8c14938ad +09:12:47.849 [XNIO-1 task-2] 1Ckg7rneRny74OJ7VJKwsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.849 [XNIO-1 task-2] 1Ckg7rneRny74OJ7VJKwsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.849 [XNIO-1 task-2] 1Ckg7rneRny74OJ7VJKwsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e9713d6-74ee-4679-8ba1-2ea8c14938ad +09:12:47.855 [XNIO-1 task-2] t_yr_855TEKO_Xt3OZuV-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.855 [XNIO-1 task-2] t_yr_855TEKO_Xt3OZuV-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.855 [XNIO-1 task-2] t_yr_855TEKO_Xt3OZuV-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.856 [XNIO-1 task-2] t_yr_855TEKO_Xt3OZuV-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.867 [XNIO-1 task-2] _yp6zpTPQxyhu4iGu1SBXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d8dc4a06-9c1c-4032-bc70-4f37881f56d8, base path is set to: null +09:12:47.867 [XNIO-1 task-2] _yp6zpTPQxyhu4iGu1SBXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.867 [XNIO-1 task-2] _yp6zpTPQxyhu4iGu1SBXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.867 [XNIO-1 task-2] _yp6zpTPQxyhu4iGu1SBXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d8dc4a06-9c1c-4032-bc70-4f37881f56d8, base path is set to: null +09:12:47.867 [XNIO-1 task-2] _yp6zpTPQxyhu4iGu1SBXg DEBUG com.networknt.schema.TypeValidator debug - validate( "d8dc4a06-9c1c-4032-bc70-4f37881f56d8", "d8dc4a06-9c1c-4032-bc70-4f37881f56d8", clientId) +09:12:47.872 [XNIO-1 task-2] VYNO9jVCTAOtenCUdpkKDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.872 [XNIO-1 task-2] VYNO9jVCTAOtenCUdpkKDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.872 [XNIO-1 task-2] VYNO9jVCTAOtenCUdpkKDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.883 [XNIO-1 task-2] msn9iBZGS_GnkXDJ8qnGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.883 [XNIO-1 task-2] msn9iBZGS_GnkXDJ8qnGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.883 [XNIO-1 task-2] msn9iBZGS_GnkXDJ8qnGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.883 [XNIO-1 task-2] msn9iBZGS_GnkXDJ8qnGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e5afc770-9723-4eed-a944-2845bb5d35c9 +09:12:47.889 [XNIO-1 task-2] MzX4e8gjQK2mKoxn5dTn1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.889 [XNIO-1 task-2] MzX4e8gjQK2mKoxn5dTn1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.889 [XNIO-1 task-2] MzX4e8gjQK2mKoxn5dTn1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.889 [XNIO-1 task-2] MzX4e8gjQK2mKoxn5dTn1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.896 [XNIO-1 task-2] 3jsUJ_5yR2OH-RnqCqUD7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.896 [XNIO-1 task-2] 3jsUJ_5yR2OH-RnqCqUD7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.896 [XNIO-1 task-2] 3jsUJ_5yR2OH-RnqCqUD7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.897 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:07b9e229 +09:12:47.898 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:07b9e229 +09:12:47.907 [XNIO-1 task-2] COPQ-LdGRcemZSzfEiItnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.907 [XNIO-1 task-2] COPQ-LdGRcemZSzfEiItnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.907 [XNIO-1 task-2] COPQ-LdGRcemZSzfEiItnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.918 [XNIO-1 task-2] U-lj1HkET3e-2IPEDPabIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.918 [XNIO-1 task-2] U-lj1HkET3e-2IPEDPabIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.918 [XNIO-1 task-2] U-lj1HkET3e-2IPEDPabIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.919 [XNIO-1 task-2] U-lj1HkET3e-2IPEDPabIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.924 [XNIO-1 task-2] qoVome93TrOH2O1VAwXn2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.924 [XNIO-1 task-2] qoVome93TrOH2O1VAwXn2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.924 [XNIO-1 task-2] qoVome93TrOH2O1VAwXn2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG com.networknt.schema.TypeValidator debug - validate( "146e2f07-17f1-4ae9-9249-0af0cf0c6412", {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG com.networknt.schema.TypeValidator debug - validate( "775039d5-9928-489a-8961-a17d2857", {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.936 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"775039d5-9928-489a-8961-a17d2857","clientDesc":"146e2f07-17f1-4ae9-9249-0af0cf0c6412","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.937 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.937 [XNIO-1 task-2] zmHxMXq6Rv2CM9UUsi77_A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.938 [XNIO-1 task-2] 4tGEeWsUQu2VQh4UUXIaEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.938 [XNIO-1 task-2] 4tGEeWsUQu2VQh4UUXIaEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.939 [XNIO-1 task-2] 4tGEeWsUQu2VQh4UUXIaEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.939 [XNIO-1 task-2] 4tGEeWsUQu2VQh4UUXIaEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.945 [XNIO-1 task-2] mu21qeSkTbOP_mj38Y7Mgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/edf739ea-4ff4-494c-bdfe-e5ad860c01d4, base path is set to: null +09:12:47.945 [XNIO-1 task-2] mu21qeSkTbOP_mj38Y7Mgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.945 [XNIO-1 task-2] mu21qeSkTbOP_mj38Y7Mgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.946 [XNIO-1 task-2] mu21qeSkTbOP_mj38Y7Mgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/edf739ea-4ff4-494c-bdfe-e5ad860c01d4, base path is set to: null +09:12:47.946 [XNIO-1 task-2] mu21qeSkTbOP_mj38Y7Mgg DEBUG com.networknt.schema.TypeValidator debug - validate( "edf739ea-4ff4-494c-bdfe-e5ad860c01d4", "edf739ea-4ff4-494c-bdfe-e5ad860c01d4", clientId) +09:12:47.953 [XNIO-1 task-2] 61fyhnF-TMOAYhmKoZWYcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155 +09:12:47.953 [XNIO-1 task-2] 61fyhnF-TMOAYhmKoZWYcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.953 [XNIO-1 task-2] 61fyhnF-TMOAYhmKoZWYcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:47.953 [XNIO-1 task-2] 61fyhnF-TMOAYhmKoZWYcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155 +09:12:47.955 [XNIO-1 task-2] Le6vW6PUSc2Ppx9LyOJrIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:47.955 [XNIO-1 task-2] Le6vW6PUSc2Ppx9LyOJrIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.956 [XNIO-1 task-2] Le6vW6PUSc2Ppx9LyOJrIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.956 [XNIO-1 task-2] Le6vW6PUSc2Ppx9LyOJrIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:47.956 [XNIO-1 task-2] Le6vW6PUSc2Ppx9LyOJrIA DEBUG com.networknt.schema.TypeValidator debug - validate( "224d4b2b-89b0-49b7-9354-2ac95aad2155", "224d4b2b-89b0-49b7-9354-2ac95aad2155", clientId) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "7581d2ba-a0bf-4a61-b9a7-6f14c8f32559", {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "0879adde-eb03-4092-bf5c-243f4da3", {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.970 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0879adde-eb03-4092-bf5c-243f4da3","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.971 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:47.971 [XNIO-1 task-2] O_eYP0CeQjSYNbVD5RSmHw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:47.973 [XNIO-1 task-2] 91jblkMvSG2tjByrikLzVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.973 [XNIO-1 task-2] 91jblkMvSG2tjByrikLzVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.973 [XNIO-1 task-2] 91jblkMvSG2tjByrikLzVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.983 [XNIO-1 task-2] _pTfAD7vQZGG_1v1r0LVbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.983 [XNIO-1 task-2] _pTfAD7vQZGG_1v1r0LVbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.983 [XNIO-1 task-2] _pTfAD7vQZGG_1v1r0LVbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:47.984 [XNIO-1 task-2] _pTfAD7vQZGG_1v1r0LVbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.990 [XNIO-1 task-2] xbUvMzERSwKcDByke3TAeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:47.990 [XNIO-1 task-2] xbUvMzERSwKcDByke3TAeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:47.991 [XNIO-1 task-2] xbUvMzERSwKcDByke3TAeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:47.991 [XNIO-1 task-2] xbUvMzERSwKcDByke3TAeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:47.991 [XNIO-1 task-2] xbUvMzERSwKcDByke3TAeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "224d4b2b-89b0-49b7-9354-2ac95aad2155", "224d4b2b-89b0-49b7-9354-2ac95aad2155", clientId) +09:12:47.993 [XNIO-1 task-2] MJYNU7spRSKeawBamb7ESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.993 [XNIO-1 task-2] MJYNU7spRSKeawBamb7ESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:47.993 [XNIO-1 task-2] MJYNU7spRSKeawBamb7ESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.005 [XNIO-1 task-2] HCQ3uO2KTu6YTlqykukS8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.005 [XNIO-1 task-2] HCQ3uO2KTu6YTlqykukS8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.005 [XNIO-1 task-2] HCQ3uO2KTu6YTlqykukS8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.005 [XNIO-1 task-2] HCQ3uO2KTu6YTlqykukS8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.015 [XNIO-1 task-2] ZXPk3Ga1QVSKiSj_PLwivA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6123e017-34dc-4c6c-8b08-17a07b7c4911 +09:12:48.015 [XNIO-1 task-2] ZXPk3Ga1QVSKiSj_PLwivA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.015 [XNIO-1 task-2] ZXPk3Ga1QVSKiSj_PLwivA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.015 [XNIO-1 task-2] ZXPk3Ga1QVSKiSj_PLwivA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6123e017-34dc-4c6c-8b08-17a07b7c4911 +09:12:48.017 [XNIO-1 task-2] fjPVtUZsSfaoD1XEIB4YqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.017 [XNIO-1 task-2] fjPVtUZsSfaoD1XEIB4YqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.017 [XNIO-1 task-2] fjPVtUZsSfaoD1XEIB4YqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.017 [XNIO-1 task-2] fjPVtUZsSfaoD1XEIB4YqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.022 [XNIO-1 task-2] eQ5odI7jS7WkgaKPp3BTHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:48.023 [XNIO-1 task-2] eQ5odI7jS7WkgaKPp3BTHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.023 [XNIO-1 task-2] eQ5odI7jS7WkgaKPp3BTHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.023 [XNIO-1 task-2] eQ5odI7jS7WkgaKPp3BTHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:48.023 [XNIO-1 task-2] eQ5odI7jS7WkgaKPp3BTHA DEBUG com.networknt.schema.TypeValidator debug - validate( "224d4b2b-89b0-49b7-9354-2ac95aad2155", "224d4b2b-89b0-49b7-9354-2ac95aad2155", clientId) +09:12:48.025 [XNIO-1 task-2] lZ6SeCIYRU6CaQI0N31S5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6123e017-34dc-4c6c-8b08-17a07b7c4911 +09:12:48.025 [XNIO-1 task-2] lZ6SeCIYRU6CaQI0N31S5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.025 [XNIO-1 task-2] lZ6SeCIYRU6CaQI0N31S5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.025 [XNIO-1 task-2] lZ6SeCIYRU6CaQI0N31S5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6123e017-34dc-4c6c-8b08-17a07b7c4911 +09:12:48.031 [XNIO-1 task-2] HKuTk5kKTGaRtn-6cF9B0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:48.031 [XNIO-1 task-2] HKuTk5kKTGaRtn-6cF9B0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.031 [XNIO-1 task-2] HKuTk5kKTGaRtn-6cF9B0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.031 [XNIO-1 task-2] HKuTk5kKTGaRtn-6cF9B0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:48.031 [XNIO-1 task-2] HKuTk5kKTGaRtn-6cF9B0w DEBUG com.networknt.schema.TypeValidator debug - validate( "224d4b2b-89b0-49b7-9354-2ac95aad2155", "224d4b2b-89b0-49b7-9354-2ac95aad2155", clientId) +09:12:48.034 [XNIO-1 task-2] jkeqrXalSqGl37htG37WFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155 +09:12:48.034 [XNIO-1 task-2] jkeqrXalSqGl37htG37WFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.034 [XNIO-1 task-2] jkeqrXalSqGl37htG37WFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.034 [XNIO-1 task-2] jkeqrXalSqGl37htG37WFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155 +09:12:48.036 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.036 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.036 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db20aad5-ce6c-40eb-bbdb-9ae78771","clientDesc":"7581d2ba-a0bf-4a61-b9a7-6f14c8f32559","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.037 [XNIO-1 task-2] FgaQy_i5S9KcMa6fpm_Tgg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.040 [XNIO-1 task-2] 3OkBfVUbQs2rlPP7K2we0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fbd8fc56-8f16-40df-9b13-50e29d0d26fc +09:12:48.040 [XNIO-1 task-2] 3OkBfVUbQs2rlPP7K2we0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.040 [XNIO-1 task-2] 3OkBfVUbQs2rlPP7K2we0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.040 [XNIO-1 task-2] 3OkBfVUbQs2rlPP7K2we0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fbd8fc56-8f16-40df-9b13-50e29d0d26fc +09:12:48.042 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.042 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.042 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.042 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adb765a7-fb05-44df-8195-fa833279","clientDesc":"e3bd0944-b4ed-4aba-a636-b9e2564e762c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.043 [XNIO-1 task-2] DzMLd8NpRQ2tvQwvrUt2PQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.045 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.045 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.045 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.045 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.045 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.045 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG com.networknt.schema.TypeValidator debug - validate( "b239f716-1b7b-4689-b239-dd605f4dcde7", {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.046 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.046 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.046 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG com.networknt.schema.TypeValidator debug - validate( "bfaaf39e-86c7-4a5d-ac18-8dbff5cc", {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.046 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.046 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bfaaf39e-86c7-4a5d-ac18-8dbff5cc","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.046 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.046 [XNIO-1 task-2] WiFklBq8TN6a2LXkWELBMg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.048 [XNIO-1 task-2] -B6Aex_XRXOYAuBh4zb-Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.048 [XNIO-1 task-2] -B6Aex_XRXOYAuBh4zb-Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.048 [XNIO-1 task-2] -B6Aex_XRXOYAuBh4zb-Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.048 [XNIO-1 task-2] -B6Aex_XRXOYAuBh4zb-Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.057 [XNIO-1 task-2] EjnxZspjQc-wEZgghEyKSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.057 [XNIO-1 task-2] EjnxZspjQc-wEZgghEyKSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.057 [XNIO-1 task-2] EjnxZspjQc-wEZgghEyKSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.068 [XNIO-1 task-2] L4ZuSIQVTsKm1DOobnffQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/98ced4d2-816d-4ddb-8db3-882b5ec02c5d, base path is set to: null +09:12:48.068 [XNIO-1 task-2] L4ZuSIQVTsKm1DOobnffQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.069 [XNIO-1 task-2] L4ZuSIQVTsKm1DOobnffQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.069 [XNIO-1 task-2] L4ZuSIQVTsKm1DOobnffQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/98ced4d2-816d-4ddb-8db3-882b5ec02c5d, base path is set to: null +09:12:48.069 [XNIO-1 task-2] L4ZuSIQVTsKm1DOobnffQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "98ced4d2-816d-4ddb-8db3-882b5ec02c5d", "98ced4d2-816d-4ddb-8db3-882b5ec02c5d", clientId) +09:12:48.072 [XNIO-1 task-2] 0EQpU-OkQIKQXS8d2-vWNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.072 [XNIO-1 task-2] 0EQpU-OkQIKQXS8d2-vWNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.072 [XNIO-1 task-2] 0EQpU-OkQIKQXS8d2-vWNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.085 [XNIO-1 task-2] gfEuyUmETrGdQl4v2a5LPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.085 [XNIO-1 task-2] gfEuyUmETrGdQl4v2a5LPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.085 [XNIO-1 task-2] gfEuyUmETrGdQl4v2a5LPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.085 [XNIO-1 task-2] gfEuyUmETrGdQl4v2a5LPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.093 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.093 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.093 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b239f716-1b7b-4689-b239-dd605f4dcde7", {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "63f8122b-88a4-453a-bb76-795bef53", {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"63f8122b-88a4-453a-bb76-795bef53","clientDesc":"b239f716-1b7b-4689-b239-dd605f4dcde7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.094 [XNIO-1 task-2] 0X0x6MX_Te2qf0dbDyabeQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.096 [XNIO-1 task-2] hqsBxLXlTtuLdXqY8KMmqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.096 [XNIO-1 task-2] hqsBxLXlTtuLdXqY8KMmqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.096 [XNIO-1 task-2] hqsBxLXlTtuLdXqY8KMmqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.096 [XNIO-1 task-2] hqsBxLXlTtuLdXqY8KMmqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.099 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:07b9e229 +09:12:48.101 [XNIO-1 task-2] LLk1q-zZSMOojZqUU3kOXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.101 [XNIO-1 task-2] LLk1q-zZSMOojZqUU3kOXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.101 [XNIO-1 task-2] LLk1q-zZSMOojZqUU3kOXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.102 [XNIO-1 task-2] LLk1q-zZSMOojZqUU3kOXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.107 [XNIO-1 task-2] U0PofMBTS4-pB-P9qF4NRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/98ced4d2-816d-4ddb-8db3-882b5ec02c5d, base path is set to: null +09:12:48.107 [XNIO-1 task-2] U0PofMBTS4-pB-P9qF4NRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.107 [XNIO-1 task-2] U0PofMBTS4-pB-P9qF4NRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.108 [XNIO-1 task-2] U0PofMBTS4-pB-P9qF4NRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/98ced4d2-816d-4ddb-8db3-882b5ec02c5d, base path is set to: null +09:12:48.108 [XNIO-1 task-2] U0PofMBTS4-pB-P9qF4NRw DEBUG com.networknt.schema.TypeValidator debug - validate( "98ced4d2-816d-4ddb-8db3-882b5ec02c5d", "98ced4d2-816d-4ddb-8db3-882b5ec02c5d", clientId) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG com.networknt.schema.TypeValidator debug - validate( "5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf", {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG com.networknt.schema.TypeValidator debug - validate( "5239a2fc-c32f-482d-adc3-e9d255a1", {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.116 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5239a2fc-c32f-482d-adc3-e9d255a1","clientDesc":"5d373c9f-4f7b-4f60-a41a-d8c0ed58c3cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.117 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.117 [XNIO-1 task-2] De1EOZTIRxytdP9TaFHX2w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.119 [XNIO-1 task-2] GF6_XvbqRa2XSYK8vovt_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.119 [XNIO-1 task-2] GF6_XvbqRa2XSYK8vovt_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.119 [XNIO-1 task-2] GF6_XvbqRa2XSYK8vovt_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.131 [XNIO-1 task-2] ZkZDDFdQTlmGZqWvbHRV6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e342fb19-14c6-468b-8cec-dfbb6b583f42, base path is set to: null +09:12:48.131 [XNIO-1 task-2] ZkZDDFdQTlmGZqWvbHRV6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.131 [XNIO-1 task-2] ZkZDDFdQTlmGZqWvbHRV6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.131 [XNIO-1 task-2] ZkZDDFdQTlmGZqWvbHRV6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e342fb19-14c6-468b-8cec-dfbb6b583f42, base path is set to: null +09:12:48.132 [XNIO-1 task-2] ZkZDDFdQTlmGZqWvbHRV6g DEBUG com.networknt.schema.TypeValidator debug - validate( "e342fb19-14c6-468b-8cec-dfbb6b583f42", "e342fb19-14c6-468b-8cec-dfbb6b583f42", clientId) +09:12:48.140 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.140 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.140 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.140 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.140 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.140 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "8b5a43d4-2353-4fad-b789-4ad65d476e9b", {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.141 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.141 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.141 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "60062fad-a606-41d4-a6f9-9bcbb790", {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.141 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.141 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"60062fad-a606-41d4-a6f9-9bcbb790","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.141 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.141 [XNIO-1 task-2] PdiqeXLRQPuGhx9DhTsyOA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.144 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.144 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.144 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.144 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.144 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.144 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.145 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.145 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.145 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.145 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.145 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.145 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7097547d-8984-4a23-b61f-cfe7209a","clientDesc":"8b5a43d4-2353-4fad-b789-4ad65d476e9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.145 [XNIO-1 task-2] MhpjNdj6SoCQHgsbClxfbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.147 [XNIO-1 task-2] Qi9quLu3TNSuvaq9F51hcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f5714ae-42f4-446e-81be-e9f94092f724 +09:12:48.147 [XNIO-1 task-2] Qi9quLu3TNSuvaq9F51hcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.147 [XNIO-1 task-2] Qi9quLu3TNSuvaq9F51hcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.147 [XNIO-1 task-2] Qi9quLu3TNSuvaq9F51hcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8f5714ae-42f4-446e-81be-e9f94092f724 +09:12:48.152 [XNIO-1 task-2] jOgOhofhQA-Pm2YcW8VMhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0e0504d5-7ead-424b-a234-9c1c34e0704f, base path is set to: null +09:12:48.153 [XNIO-1 task-2] jOgOhofhQA-Pm2YcW8VMhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.153 [XNIO-1 task-2] jOgOhofhQA-Pm2YcW8VMhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.153 [XNIO-1 task-2] jOgOhofhQA-Pm2YcW8VMhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0e0504d5-7ead-424b-a234-9c1c34e0704f, base path is set to: null +09:12:48.153 [XNIO-1 task-2] jOgOhofhQA-Pm2YcW8VMhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0e0504d5-7ead-424b-a234-9c1c34e0704f", "0e0504d5-7ead-424b-a234-9c1c34e0704f", clientId) +09:12:48.159 [XNIO-1 task-2] GZ4bA-VsQ1SYWlp_X1oghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.159 [XNIO-1 task-2] GZ4bA-VsQ1SYWlp_X1oghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.160 [XNIO-1 task-2] GZ4bA-VsQ1SYWlp_X1oghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.172 [XNIO-1 task-2] 6FgTcJr5RJmyd-DZlHCmUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab3710e6-40b6-41fd-a623-57265baf2255 +09:12:48.172 [XNIO-1 task-2] 6FgTcJr5RJmyd-DZlHCmUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.172 [XNIO-1 task-2] 6FgTcJr5RJmyd-DZlHCmUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.172 [XNIO-1 task-2] 6FgTcJr5RJmyd-DZlHCmUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab3710e6-40b6-41fd-a623-57265baf2255 +09:12:48.174 [XNIO-1 task-2] IDkJBA8ZTfO-ToYu5BBDBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ab3710e6-40b6-41fd-a623-57265baf2255, base path is set to: null +09:12:48.174 [XNIO-1 task-2] IDkJBA8ZTfO-ToYu5BBDBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.174 [XNIO-1 task-2] IDkJBA8ZTfO-ToYu5BBDBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.174 [XNIO-1 task-2] IDkJBA8ZTfO-ToYu5BBDBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ab3710e6-40b6-41fd-a623-57265baf2255, base path is set to: null +09:12:48.174 [XNIO-1 task-2] IDkJBA8ZTfO-ToYu5BBDBA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab3710e6-40b6-41fd-a623-57265baf2255", "ab3710e6-40b6-41fd-a623-57265baf2255", clientId) +09:12:48.176 [XNIO-1 task-2] uY9_q8AzR-yP5UepqWegCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab3710e6-40b6-41fd-a623-57265baf2255 +09:12:48.176 [XNIO-1 task-2] uY9_q8AzR-yP5UepqWegCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.176 [XNIO-1 task-2] uY9_q8AzR-yP5UepqWegCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.176 [XNIO-1 task-2] uY9_q8AzR-yP5UepqWegCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab3710e6-40b6-41fd-a623-57265baf2255 +09:12:48.181 [XNIO-1 task-2] NGhcHA7VQVe3FBbjWe4y6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.181 [XNIO-1 task-2] NGhcHA7VQVe3FBbjWe4y6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.182 [XNIO-1 task-2] NGhcHA7VQVe3FBbjWe4y6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.220 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:07b9e229 +09:12:48.222 [XNIO-1 task-2] dsIBkGzWTbSQXDLDfqD5kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.222 [XNIO-1 task-2] dsIBkGzWTbSQXDLDfqD5kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.222 [XNIO-1 task-2] dsIBkGzWTbSQXDLDfqD5kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.222 [XNIO-1 task-2] dsIBkGzWTbSQXDLDfqD5kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.229 [XNIO-1 task-2] ymt-ziNFS-64n5ivCJLM4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.229 [XNIO-1 task-2] ymt-ziNFS-64n5ivCJLM4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.230 [XNIO-1 task-2] ymt-ziNFS-64n5ivCJLM4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.240 [XNIO-1 task-2] EYL3REZoTqeyCAiYoE_hnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/82af0af1-940b-4237-b976-8ee5102b5f7f, base path is set to: null +09:12:48.241 [XNIO-1 task-2] EYL3REZoTqeyCAiYoE_hnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.241 [XNIO-1 task-2] EYL3REZoTqeyCAiYoE_hnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.241 [XNIO-1 task-2] EYL3REZoTqeyCAiYoE_hnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/82af0af1-940b-4237-b976-8ee5102b5f7f, base path is set to: null +09:12:48.242 [XNIO-1 task-2] EYL3REZoTqeyCAiYoE_hnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82af0af1-940b-4237-b976-8ee5102b5f7f", "82af0af1-940b-4237-b976-8ee5102b5f7f", clientId) +09:12:48.244 [XNIO-1 task-2] fagXZbjPRiuU6C-s8v21Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.244 [XNIO-1 task-2] fagXZbjPRiuU6C-s8v21Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.244 [XNIO-1 task-2] fagXZbjPRiuU6C-s8v21Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.244 [XNIO-1 task-2] fagXZbjPRiuU6C-s8v21Sg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.250 [XNIO-1 task-2] 2tCrCozRTmW62EEhbfQJrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.250 [XNIO-1 task-2] 2tCrCozRTmW62EEhbfQJrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.250 [XNIO-1 task-2] 2tCrCozRTmW62EEhbfQJrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.250 [XNIO-1 task-2] 2tCrCozRTmW62EEhbfQJrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.255 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "dd712af9-844f-434b-8cac-feb91f3e506a", {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d2f5c5f-c829-4be9-b3d7-81604ecd", {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2d2f5c5f-c829-4be9-b3d7-81604ecd","clientDesc":"dd712af9-844f-434b-8cac-feb91f3e506a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.256 [XNIO-1 task-2] eoq2SZaZS7CM3mPCOwO-Lw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.258 [XNIO-1 task-2] pd7TziVyQSC2_ZewdvZ3YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9, base path is set to: null +09:12:48.258 [XNIO-1 task-2] pd7TziVyQSC2_ZewdvZ3YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.258 [XNIO-1 task-2] pd7TziVyQSC2_ZewdvZ3YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.259 [XNIO-1 task-2] pd7TziVyQSC2_ZewdvZ3YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9, base path is set to: null +09:12:48.259 [XNIO-1 task-2] pd7TziVyQSC2_ZewdvZ3YA DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb96dda-2c23-4754-ac4f-f392fc64d6b9", "6bb96dda-2c23-4754-ac4f-f392fc64d6b9", clientId) +09:12:48.262 [XNIO-1 task-2] iUG2eej-QXmKLjd8FC_mVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.262 [XNIO-1 task-2] iUG2eej-QXmKLjd8FC_mVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.262 [XNIO-1 task-2] iUG2eej-QXmKLjd8FC_mVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.275 [XNIO-1 task-2] SqA66fYKRDCMu3E9ohCmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ccfaca51-08d9-4c24-a01a-5a52eb59f974 +09:12:48.275 [XNIO-1 task-2] SqA66fYKRDCMu3E9ohCmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.275 [XNIO-1 task-2] SqA66fYKRDCMu3E9ohCmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.275 [XNIO-1 task-2] SqA66fYKRDCMu3E9ohCmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ccfaca51-08d9-4c24-a01a-5a52eb59f974 +09:12:48.277 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.278 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cf8601e-1255-4fd3-afe1-c2709351","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.279 [XNIO-1 task-2] jkacFgYvQgyVhi52U-CUBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.281 [XNIO-1 task-2] bTCRPr0DTqOBcmgahKkjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ccfaca51-08d9-4c24-a01a-5a52eb59f974 +09:12:48.281 [XNIO-1 task-2] bTCRPr0DTqOBcmgahKkjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.281 [XNIO-1 task-2] bTCRPr0DTqOBcmgahKkjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.281 [XNIO-1 task-2] bTCRPr0DTqOBcmgahKkjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ccfaca51-08d9-4c24-a01a-5a52eb59f974 +09:12:48.283 [XNIO-1 task-2] mvot6vsdT7y34GXCWZMeSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:48.283 [XNIO-1 task-2] mvot6vsdT7y34GXCWZMeSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.283 [XNIO-1 task-2] mvot6vsdT7y34GXCWZMeSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.283 [XNIO-1 task-2] mvot6vsdT7y34GXCWZMeSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/224d4b2b-89b0-49b7-9354-2ac95aad2155, base path is set to: null +09:12:48.283 [XNIO-1 task-2] mvot6vsdT7y34GXCWZMeSw DEBUG com.networknt.schema.TypeValidator debug - validate( "224d4b2b-89b0-49b7-9354-2ac95aad2155", "224d4b2b-89b0-49b7-9354-2ac95aad2155", clientId) +09:12:48.289 [XNIO-1 task-2] H83uVU3eT4ui-QUZSs1IjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.289 [XNIO-1 task-2] H83uVU3eT4ui-QUZSs1IjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.289 [XNIO-1 task-2] H83uVU3eT4ui-QUZSs1IjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.289 [XNIO-1 task-2] H83uVU3eT4ui-QUZSs1IjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.296 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.296 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.296 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG com.networknt.schema.TypeValidator debug - validate( "3504c0ee-3113-41f0-8257-1be99c0c97cc", {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG com.networknt.schema.TypeValidator debug - validate( "da6fc741-1820-40b7-9fde-0d51f2a6", {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"da6fc741-1820-40b7-9fde-0d51f2a6","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.297 [XNIO-1 task-2] wYVeloa_RQqDb9amYMeGhw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.300 [XNIO-1 task-2] 5ntKKND3T32C9_nLkG7gmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ccfaca51-08d9-4c24-a01a-5a52eb59f974, base path is set to: null +09:12:48.300 [XNIO-1 task-2] 5ntKKND3T32C9_nLkG7gmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.300 [XNIO-1 task-2] 5ntKKND3T32C9_nLkG7gmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.300 [XNIO-1 task-2] 5ntKKND3T32C9_nLkG7gmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ccfaca51-08d9-4c24-a01a-5a52eb59f974, base path is set to: null +09:12:48.300 [XNIO-1 task-2] 5ntKKND3T32C9_nLkG7gmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ccfaca51-08d9-4c24-a01a-5a52eb59f974", "ccfaca51-08d9-4c24-a01a-5a52eb59f974", clientId) +09:12:48.306 [XNIO-1 task-2] I1WFNu0eQ7OmjehPLElCog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9 +09:12:48.306 [XNIO-1 task-2] I1WFNu0eQ7OmjehPLElCog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.306 [XNIO-1 task-2] I1WFNu0eQ7OmjehPLElCog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.307 [XNIO-1 task-2] I1WFNu0eQ7OmjehPLElCog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9 +09:12:48.310 [XNIO-1 task-2] ACd7WyjsSfS3lVjehRXWew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9, base path is set to: null +09:12:48.310 [XNIO-1 task-2] ACd7WyjsSfS3lVjehRXWew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.310 [XNIO-1 task-2] ACd7WyjsSfS3lVjehRXWew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.310 [XNIO-1 task-2] ACd7WyjsSfS3lVjehRXWew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9, base path is set to: null +09:12:48.310 [XNIO-1 task-2] ACd7WyjsSfS3lVjehRXWew DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb96dda-2c23-4754-ac4f-f392fc64d6b9", "6bb96dda-2c23-4754-ac4f-f392fc64d6b9", clientId) +09:12:48.313 [XNIO-1 task-2] L5Uu0AxjT8KJPkAmZXLG8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.313 [XNIO-1 task-2] L5Uu0AxjT8KJPkAmZXLG8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.313 [XNIO-1 task-2] L5Uu0AxjT8KJPkAmZXLG8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.313 [XNIO-1 task-2] L5Uu0AxjT8KJPkAmZXLG8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.321 [XNIO-1 task-2] o7-x92AxRvufh1IXFcp8NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9 +09:12:48.321 [XNIO-1 task-2] o7-x92AxRvufh1IXFcp8NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.322 [XNIO-1 task-2] o7-x92AxRvufh1IXFcp8NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.322 [XNIO-1 task-2] o7-x92AxRvufh1IXFcp8NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9 +09:12:48.347 [XNIO-1 task-2] flurayjJReCBJHrlH2SqkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.347 [XNIO-1 task-2] flurayjJReCBJHrlH2SqkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.348 [XNIO-1 task-2] flurayjJReCBJHrlH2SqkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.353 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:559ef493-39ed-48ed-a374-1a6c19f229a3 +09:12:48.354 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:559ef493-39ed-48ed-a374-1a6c19f229a3 +09:12:48.360 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.360 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.360 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG com.networknt.schema.TypeValidator debug - validate( "606ca0fd-5efe-455f-95be-75ed8983f6ca", {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c76603a-eb36-43ea-a862-b2eb44c5", {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5c76603a-eb36-43ea-a862-b2eb44c5","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.361 [XNIO-1 task-2] YskvMUDwS3uXuULjTtcoHA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.363 [XNIO-1 task-2] GeQB_us6Sg-Sp8NCPmkY5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.363 [XNIO-1 task-2] GeQB_us6Sg-Sp8NCPmkY5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.363 [XNIO-1 task-2] GeQB_us6Sg-Sp8NCPmkY5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.363 [XNIO-1 task-2] GeQB_us6Sg-Sp8NCPmkY5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.376 [XNIO-1 task-2] h6cc8UNDRCu7v-d27nTDpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.376 [XNIO-1 task-2] h6cc8UNDRCu7v-d27nTDpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.376 [XNIO-1 task-2] h6cc8UNDRCu7v-d27nTDpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.376 [XNIO-1 task-2] h6cc8UNDRCu7v-d27nTDpA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.384 [XNIO-1 task-2] ooTQ_GxuRUuwa7vaGI99nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.384 [XNIO-1 task-2] ooTQ_GxuRUuwa7vaGI99nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.384 [XNIO-1 task-2] ooTQ_GxuRUuwa7vaGI99nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.396 [XNIO-1 task-2] bNPuU2ISSHSRvTLwON2veA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c19e7486-d8d9-40bb-8d8f-822dd32060a4, base path is set to: null +09:12:48.396 [XNIO-1 task-2] bNPuU2ISSHSRvTLwON2veA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.396 [XNIO-1 task-2] bNPuU2ISSHSRvTLwON2veA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.396 [XNIO-1 task-2] bNPuU2ISSHSRvTLwON2veA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.397 [XNIO-1 task-2] bNPuU2ISSHSRvTLwON2veA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c19e7486-d8d9-40bb-8d8f-822dd32060a4, base path is set to: null +09:12:48.397 [XNIO-1 task-2] bNPuU2ISSHSRvTLwON2veA DEBUG com.networknt.schema.TypeValidator debug - validate( "c19e7486-d8d9-40bb-8d8f-822dd32060a4", "c19e7486-d8d9-40bb-8d8f-822dd32060a4", clientId) +09:12:48.399 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.399 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.399 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG com.networknt.schema.TypeValidator debug - validate( "606ca0fd-5efe-455f-95be-75ed8983f6ca", {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG com.networknt.schema.TypeValidator debug - validate( "0fa49564-f3de-4c5c-993b-ce32a1dd", {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0fa49564-f3de-4c5c-993b-ce32a1dd","clientDesc":"606ca0fd-5efe-455f-95be-75ed8983f6ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.400 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.401 [XNIO-1 task-2] vmnCapPaSJeNuvMI9F013g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.403 [XNIO-1 task-2] eLX8P2BnQ1mer5hFr_SAqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f8b33bad-f26e-4d61-9a3c-2c27f562cb88, base path is set to: null +09:12:48.403 [XNIO-1 task-2] eLX8P2BnQ1mer5hFr_SAqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.403 [XNIO-1 task-2] eLX8P2BnQ1mer5hFr_SAqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.403 [XNIO-1 task-2] eLX8P2BnQ1mer5hFr_SAqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f8b33bad-f26e-4d61-9a3c-2c27f562cb88, base path is set to: null +09:12:48.403 [XNIO-1 task-2] eLX8P2BnQ1mer5hFr_SAqg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8b33bad-f26e-4d61-9a3c-2c27f562cb88", "f8b33bad-f26e-4d61-9a3c-2c27f562cb88", clientId) +09:12:48.415 [XNIO-1 task-2] AG3uAXuJTQ6LRdQWJllPBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/559ef493-39ed-48ed-a374-1a6c19f229a3 +09:12:48.415 [XNIO-1 task-2] AG3uAXuJTQ6LRdQWJllPBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.416 [XNIO-1 task-2] AG3uAXuJTQ6LRdQWJllPBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.416 [XNIO-1 task-2] AG3uAXuJTQ6LRdQWJllPBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/559ef493-39ed-48ed-a374-1a6c19f229a3 +09:12:48.416 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:559ef493-39ed-48ed-a374-1a6c19f229a3 +09:12:48.423 [XNIO-1 task-2] 7_D4eomjS4aM1sGQ9WlKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/775dc62d-b5fd-4e7d-b516-9dc7ece8ddd1 +09:12:48.423 [XNIO-1 task-2] 7_D4eomjS4aM1sGQ9WlKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.423 [XNIO-1 task-2] 7_D4eomjS4aM1sGQ9WlKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.424 [XNIO-1 task-2] 7_D4eomjS4aM1sGQ9WlKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/775dc62d-b5fd-4e7d-b516-9dc7ece8ddd1 +09:12:48.426 [XNIO-1 task-2] -SFBFfglS-eIIq7wa1nGkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.426 [XNIO-1 task-2] -SFBFfglS-eIIq7wa1nGkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.426 [XNIO-1 task-2] -SFBFfglS-eIIq7wa1nGkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.431 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bec343fd-56e3-4073-ac0e-614822f98c84 +09:12:48.432 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bec343fd-56e3-4073-ac0e-614822f98c84 +09:12:48.436 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "af6578be-bf8d-42bf-a741-10f8a94420d1", {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "21953b84-e71c-4c48-94c3-9db4a0d2", {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"21953b84-e71c-4c48-94c3-9db4a0d2","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.437 [XNIO-1 task-2] 5o0Xj_1OQI2VKaWnCZnxBg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.440 [XNIO-1 task-2] Jn5Olf38S2qKLlgdXLPbEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/775dc62d-b5fd-4e7d-b516-9dc7ece8ddd1, base path is set to: null +09:12:48.441 [XNIO-1 task-2] Jn5Olf38S2qKLlgdXLPbEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.441 [XNIO-1 task-2] Jn5Olf38S2qKLlgdXLPbEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.441 [XNIO-1 task-2] Jn5Olf38S2qKLlgdXLPbEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/775dc62d-b5fd-4e7d-b516-9dc7ece8ddd1, base path is set to: null +09:12:48.441 [XNIO-1 task-2] Jn5Olf38S2qKLlgdXLPbEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "775dc62d-b5fd-4e7d-b516-9dc7ece8ddd1", "775dc62d-b5fd-4e7d-b516-9dc7ece8ddd1", clientId) +09:12:48.447 [XNIO-1 task-2] 7J9xIklLS3K0_lui4bC3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84 +09:12:48.447 [XNIO-1 task-2] 7J9xIklLS3K0_lui4bC3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.447 [XNIO-1 task-2] 7J9xIklLS3K0_lui4bC3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.447 [XNIO-1 task-2] 7J9xIklLS3K0_lui4bC3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84 +09:12:48.450 [XNIO-1 task-2] rQK_fbwXQ1WexT2fWCUmdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84, base path is set to: null +09:12:48.450 [XNIO-1 task-2] rQK_fbwXQ1WexT2fWCUmdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.450 [XNIO-1 task-2] rQK_fbwXQ1WexT2fWCUmdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.450 [XNIO-1 task-2] rQK_fbwXQ1WexT2fWCUmdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84, base path is set to: null +09:12:48.450 [XNIO-1 task-2] rQK_fbwXQ1WexT2fWCUmdg DEBUG com.networknt.schema.TypeValidator debug - validate( "dad6ca18-f164-4aff-b653-dfc60bca2e84", "dad6ca18-f164-4aff-b653-dfc60bca2e84", clientId) +09:12:48.453 [XNIO-1 task-2] QcB21WM0Sk-el6qLI6SugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7fa55f-2536-4d63-8c41-3fd70d3288ca +09:12:48.453 [XNIO-1 task-2] QcB21WM0Sk-el6qLI6SugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.453 [XNIO-1 task-2] QcB21WM0Sk-el6qLI6SugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.453 [XNIO-1 task-2] QcB21WM0Sk-el6qLI6SugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7fa55f-2536-4d63-8c41-3fd70d3288ca +09:12:48.455 [XNIO-1 task-2] GwXGAKyBTJS5agJbQ1IueA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.455 [XNIO-1 task-2] GwXGAKyBTJS5agJbQ1IueA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.455 [XNIO-1 task-2] GwXGAKyBTJS5agJbQ1IueA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.455 [XNIO-1 task-2] GwXGAKyBTJS5agJbQ1IueA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.462 [XNIO-1 task-2] ryqkDo9gQzG2wT7hcVBvWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.462 [XNIO-1 task-2] ryqkDo9gQzG2wT7hcVBvWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.462 [XNIO-1 task-2] ryqkDo9gQzG2wT7hcVBvWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.474 [XNIO-1 task-2] ww6MElWtRNmPCqbv8hL3DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.474 [XNIO-1 task-2] ww6MElWtRNmPCqbv8hL3DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.475 [XNIO-1 task-2] ww6MElWtRNmPCqbv8hL3DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.491 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.491 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.491 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bb0c0f9-587a-4c21-8d2b-9b9eaf2d","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.492 [XNIO-1 task-2] Oi7sNGhWSQS_QtYClJ7QWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.496 [XNIO-1 task-2] U6vMI09iRgKP-9KT_l2MFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7fa55f-2536-4d63-8c41-3fd70d3288ca +09:12:48.496 [XNIO-1 task-2] U6vMI09iRgKP-9KT_l2MFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.497 [XNIO-1 task-2] U6vMI09iRgKP-9KT_l2MFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.497 [XNIO-1 task-2] U6vMI09iRgKP-9KT_l2MFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7fa55f-2536-4d63-8c41-3fd70d3288ca +09:12:48.501 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.501 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.501 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.501 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.503 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.503 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.503 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.503 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.503 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.504 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.504 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.504 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"825c4268-a9e5-40c2-b76a-a6c4deed","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.504 [XNIO-1 task-2] 1SH9AZIuQKaKebcxeHMWNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.506 [XNIO-1 task-2] nkHyam_0TmWXAqnZbuvPgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.506 [XNIO-1 task-2] nkHyam_0TmWXAqnZbuvPgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.506 [XNIO-1 task-2] nkHyam_0TmWXAqnZbuvPgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.506 [XNIO-1 task-2] nkHyam_0TmWXAqnZbuvPgQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.513 [XNIO-1 task-2] 5ut-qhv_S-a6Eea9UZfaxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84 +09:12:48.514 [XNIO-1 task-2] 5ut-qhv_S-a6Eea9UZfaxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.514 [XNIO-1 task-2] 5ut-qhv_S-a6Eea9UZfaxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.514 [XNIO-1 task-2] 5ut-qhv_S-a6Eea9UZfaxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84 +09:12:48.516 [XNIO-1 task-2] 1xDpLabaSlSObuuWkcKOlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.516 [XNIO-1 task-2] 1xDpLabaSlSObuuWkcKOlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.516 [XNIO-1 task-2] 1xDpLabaSlSObuuWkcKOlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.530 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.530 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.530 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"46084e0a-0aae-408a-aa52-6fdebcd0","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.531 [XNIO-1 task-2] fQ3obc3kQnWCmTAidSbNDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "af6578be-bf8d-42bf-a741-10f8a94420d1", {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.535 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "0c672ae0-12ae-47d8-b2ae-40de5ae7", {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.536 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.536 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0c672ae0-12ae-47d8-b2ae-40de5ae7","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.536 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.536 [XNIO-1 task-2] YhE4rM3ETr6XKPklBMS8Ug DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.538 [XNIO-1 task-2] fHD8BoiVRLuvzpoyVE0Png DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84, base path is set to: null +09:12:48.538 [XNIO-1 task-2] fHD8BoiVRLuvzpoyVE0Png DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.538 [XNIO-1 task-2] fHD8BoiVRLuvzpoyVE0Png DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.538 [XNIO-1 task-2] fHD8BoiVRLuvzpoyVE0Png DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84, base path is set to: null +09:12:48.538 [XNIO-1 task-2] fHD8BoiVRLuvzpoyVE0Png DEBUG com.networknt.schema.TypeValidator debug - validate( "dad6ca18-f164-4aff-b653-dfc60bca2e84", "dad6ca18-f164-4aff-b653-dfc60bca2e84", clientId) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "581df38d-362c-4102-84b8-71ed7d43b3ff", {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "15bf0f52-27e5-4c83-aaa4-2babcfe0", {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.541 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"15bf0f52-27e5-4c83-aaa4-2babcfe0","clientDesc":"581df38d-362c-4102-84b8-71ed7d43b3ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.542 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.542 [XNIO-1 task-2] YzZUoPL7R7WMW32dwN_Bwg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.544 [XNIO-1 task-2] 5uPYLNfsR1KqpCtLXc3GCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.544 [XNIO-1 task-2] 5uPYLNfsR1KqpCtLXc3GCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.544 [XNIO-1 task-2] 5uPYLNfsR1KqpCtLXc3GCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.544 [XNIO-1 task-2] 5uPYLNfsR1KqpCtLXc3GCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.550 [XNIO-1 task-2] K4nBEce2Sx2gRZ2HrORxYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.550 [XNIO-1 task-2] K4nBEce2Sx2gRZ2HrORxYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.550 [XNIO-1 task-2] K4nBEce2Sx2gRZ2HrORxYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.550 [XNIO-1 task-2] K4nBEce2Sx2gRZ2HrORxYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.563 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.563 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.563 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.564 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cae7a7a3-de7d-405d-bc26-4323d101","clientDesc":"2540a3c3-70de-4057-9dd3-914a18135cd1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.565 [XNIO-1 task-2] duJQ27ljT6u6awwBj7WQ8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.567 [XNIO-1 task-2] TAIy4ykRSZWdqvIRINuEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/82af0af1-940b-4237-b976-8ee5102b5f7f +09:12:48.567 [XNIO-1 task-2] TAIy4ykRSZWdqvIRINuEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.567 [XNIO-1 task-2] TAIy4ykRSZWdqvIRINuEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.567 [XNIO-1 task-2] TAIy4ykRSZWdqvIRINuEZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/82af0af1-940b-4237-b976-8ee5102b5f7f +09:12:48.572 [XNIO-1 task-2] O_HOOdFoSbOl95dDOsAO_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.572 [XNIO-1 task-2] O_HOOdFoSbOl95dDOsAO_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.572 [XNIO-1 task-2] O_HOOdFoSbOl95dDOsAO_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.573 [XNIO-1 task-2] O_HOOdFoSbOl95dDOsAO_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.575 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4a386b91 +09:12:48.576 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4a386b91 +09:12:48.578 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.578 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG com.networknt.schema.TypeValidator debug - validate( "3504c0ee-3113-41f0-8257-1be99c0c97cc", {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG com.networknt.schema.TypeValidator debug - validate( "82f4762f-d770-4116-831f-45cea89d", {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"82f4762f-d770-4116-831f-45cea89d","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.579 [XNIO-1 task-2] _vJrSe7RSdeO0jLHDT01uw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.581 [XNIO-1 task-2] 0DEgqymvSlOLFdwmC1axUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.581 [XNIO-1 task-2] 0DEgqymvSlOLFdwmC1axUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.581 [XNIO-1 task-2] 0DEgqymvSlOLFdwmC1axUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.593 [XNIO-1 task-2] wnoyIGC2Q4qWFVSHB6Oqhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.594 [XNIO-1 task-2] wnoyIGC2Q4qWFVSHB6Oqhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.594 [XNIO-1 task-2] wnoyIGC2Q4qWFVSHB6Oqhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.594 [XNIO-1 task-2] wnoyIGC2Q4qWFVSHB6Oqhw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.600 [XNIO-1 task-2] Zu9oLn9sQw2bk5SDwtyH4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.600 [XNIO-1 task-2] Zu9oLn9sQw2bk5SDwtyH4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.600 [XNIO-1 task-2] Zu9oLn9sQw2bk5SDwtyH4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.616 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ba0325a-798d-4c4a-b1f5-43a0e639","clientDesc":"3504c0ee-3113-41f0-8257-1be99c0c97cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.617 [XNIO-1 task-2] a5cjpVu8S_y5f0y01VDhiA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.619 [XNIO-1 task-2] vXm6Wk6wT0Ku-3ZtH2rtdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9 +09:12:48.619 [XNIO-1 task-2] vXm6Wk6wT0Ku-3ZtH2rtdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.619 [XNIO-1 task-2] vXm6Wk6wT0Ku-3ZtH2rtdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.619 [XNIO-1 task-2] vXm6Wk6wT0Ku-3ZtH2rtdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9 +09:12:48.621 [XNIO-1 task-2] 1kZdIDilTMaU_dzq49YsaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.621 [XNIO-1 task-2] 1kZdIDilTMaU_dzq49YsaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.621 [XNIO-1 task-2] 1kZdIDilTMaU_dzq49YsaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.634 [XNIO-1 task-2] rXL6nLh3SRGTGUgNHYvTtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9, base path is set to: null +09:12:48.634 [XNIO-1 task-2] rXL6nLh3SRGTGUgNHYvTtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.634 [XNIO-1 task-2] rXL6nLh3SRGTGUgNHYvTtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.634 [XNIO-1 task-2] rXL6nLh3SRGTGUgNHYvTtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6bb96dda-2c23-4754-ac4f-f392fc64d6b9, base path is set to: null +09:12:48.634 [XNIO-1 task-2] rXL6nLh3SRGTGUgNHYvTtg DEBUG com.networknt.schema.TypeValidator debug - validate( "6bb96dda-2c23-4754-ac4f-f392fc64d6b9", "6bb96dda-2c23-4754-ac4f-f392fc64d6b9", clientId) +09:12:48.640 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3d490c73 +09:12:48.641 [XNIO-1 task-2] ZzyFKO0wTrGaadpK_6V2cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a73682f9-b613-4539-90da-da52caef23ed, base path is set to: null +09:12:48.641 [XNIO-1 task-2] ZzyFKO0wTrGaadpK_6V2cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.641 [XNIO-1 task-2] ZzyFKO0wTrGaadpK_6V2cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.641 [XNIO-1 task-2] ZzyFKO0wTrGaadpK_6V2cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a73682f9-b613-4539-90da-da52caef23ed, base path is set to: null +09:12:48.641 [XNIO-1 task-2] ZzyFKO0wTrGaadpK_6V2cw DEBUG com.networknt.schema.TypeValidator debug - validate( "a73682f9-b613-4539-90da-da52caef23ed", "a73682f9-b613-4539-90da-da52caef23ed", clientId) +09:12:48.646 [XNIO-1 task-2] 518yPPKpTtaH3HHEozRHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e50012-db3c-44ae-9491-93548fb6291d +09:12:48.647 [XNIO-1 task-2] 518yPPKpTtaH3HHEozRHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.647 [XNIO-1 task-2] 518yPPKpTtaH3HHEozRHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.647 [XNIO-1 task-2] 518yPPKpTtaH3HHEozRHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e50012-db3c-44ae-9491-93548fb6291d +09:12:48.649 [XNIO-1 task-2] ksK4wrBWSNy0Tjfwgg1xpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.650 [XNIO-1 task-2] ksK4wrBWSNy0Tjfwgg1xpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.650 [XNIO-1 task-2] ksK4wrBWSNy0Tjfwgg1xpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.650 [XNIO-1 task-2] ksK4wrBWSNy0Tjfwgg1xpg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.652 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3d490c73 +09:12:48.655 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.655 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.655 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.656 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b58062e0-fa5d-4d4a-a5e7-e17a0322","clientDesc":"5c33d4d7-906c-438c-bf25-0e7d0b55dc80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.657 [XNIO-1 task-2] 8IW0wJyjRt622iAgW5aaCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.659 [XNIO-1 task-2] bptBnnPvRg-i5SYZK6r34A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.659 [XNIO-1 task-2] bptBnnPvRg-i5SYZK6r34A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.659 [XNIO-1 task-2] bptBnnPvRg-i5SYZK6r34A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.669 [XNIO-1 task-2] FKvq_mcTThOJIsOZrdbqaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e50012-db3c-44ae-9491-93548fb6291d +09:12:48.669 [XNIO-1 task-2] FKvq_mcTThOJIsOZrdbqaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.669 [XNIO-1 task-2] FKvq_mcTThOJIsOZrdbqaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.669 [XNIO-1 task-2] FKvq_mcTThOJIsOZrdbqaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/86e50012-db3c-44ae-9491-93548fb6291d +09:12:48.672 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc9fdb83 +09:12:48.673 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc9fdb83 +09:12:48.676 [XNIO-1 task-2] QiiI9lzkTiWlpVfrg1lp4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c59ca88-066f-4e34-918c-31af7d84221b +09:12:48.676 [XNIO-1 task-2] QiiI9lzkTiWlpVfrg1lp4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.676 [XNIO-1 task-2] QiiI9lzkTiWlpVfrg1lp4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.676 [XNIO-1 task-2] QiiI9lzkTiWlpVfrg1lp4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3c59ca88-066f-4e34-918c-31af7d84221b +09:12:48.683 [XNIO-1 task-2] jTirLqbZTUWSX-X5Cux-FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.683 [XNIO-1 task-2] jTirLqbZTUWSX-X5Cux-FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.683 [XNIO-1 task-2] jTirLqbZTUWSX-X5Cux-FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.688 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc9fdb83 +09:12:48.689 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc9fdb83 +09:12:48.689 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7db78748-c9fa-406a-9522-523194aedd93 +09:12:48.694 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc9fdb83 +09:12:48.696 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "af6578be-bf8d-42bf-a741-10f8a94420d1", {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9d9db9-3742-41e7-a58f-14d540b9", {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"eb9d9db9-3742-41e7-a58f-14d540b9","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.697 [XNIO-1 task-2] opfu1l25RouWkggsu2aE6Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.703 [XNIO-1 task-2] PRdx0-nzSPu0sfgxe6l7xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fbd8fc56-8f16-40df-9b13-50e29d0d26fc, base path is set to: null +09:12:48.703 [XNIO-1 task-2] PRdx0-nzSPu0sfgxe6l7xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.703 [XNIO-1 task-2] PRdx0-nzSPu0sfgxe6l7xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.703 [XNIO-1 task-2] PRdx0-nzSPu0sfgxe6l7xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fbd8fc56-8f16-40df-9b13-50e29d0d26fc, base path is set to: null +09:12:48.703 [XNIO-1 task-2] PRdx0-nzSPu0sfgxe6l7xg DEBUG com.networknt.schema.TypeValidator debug - validate( "fbd8fc56-8f16-40df-9b13-50e29d0d26fc", "fbd8fc56-8f16-40df-9b13-50e29d0d26fc", clientId) +09:12:48.713 [XNIO-1 task-2] Z7P7Kcw8TUqwYQ15Y_-nOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.713 [XNIO-1 task-2] Z7P7Kcw8TUqwYQ15Y_-nOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.713 [XNIO-1 task-2] Z7P7Kcw8TUqwYQ15Y_-nOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.724 [XNIO-1 task-2] vaFQ2Tl-Q6iwzTyvsFs1VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c19e7486-d8d9-40bb-8d8f-822dd32060a4 +09:12:48.724 [XNIO-1 task-2] vaFQ2Tl-Q6iwzTyvsFs1VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.724 [XNIO-1 task-2] vaFQ2Tl-Q6iwzTyvsFs1VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.724 [XNIO-1 task-2] vaFQ2Tl-Q6iwzTyvsFs1VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c19e7486-d8d9-40bb-8d8f-822dd32060a4 +09:12:48.733 [XNIO-1 task-2] iLAnuvGyR6CJSNDU_qBK8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.733 [XNIO-1 task-2] iLAnuvGyR6CJSNDU_qBK8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.734 [XNIO-1 task-2] iLAnuvGyR6CJSNDU_qBK8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.736 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc9fdb83 +09:12:48.738 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d1d153a6-9071-446a-a2d9-120acc0ed7dd +09:12:48.739 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d1d153a6-9071-446a-a2d9-120acc0ed7dd +09:12:48.746 [XNIO-1 task-2] _3zfhNxbQpumV3B7DcvlAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d826e5a-8ba1-4fe8-a74e-382de806e63d +09:12:48.746 [XNIO-1 task-2] _3zfhNxbQpumV3B7DcvlAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.746 [XNIO-1 task-2] _3zfhNxbQpumV3B7DcvlAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.746 [XNIO-1 task-2] _3zfhNxbQpumV3B7DcvlAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d826e5a-8ba1-4fe8-a74e-382de806e63d +09:12:48.749 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.749 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.749 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb7838e-02ec-401a-b81c-c60b8b67","clientDesc":"f4bb5bbe-95b2-4b30-a5b6-c9c78305a517","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.750 [XNIO-1 task-2] ftSmwsY8QzaCj737ooGnWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.753 [XNIO-1 task-2] JRjdooCURkKszeD1HucQOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d826e5a-8ba1-4fe8-a74e-382de806e63d +09:12:48.753 [XNIO-1 task-2] JRjdooCURkKszeD1HucQOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.753 [XNIO-1 task-2] JRjdooCURkKszeD1HucQOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.753 [XNIO-1 task-2] JRjdooCURkKszeD1HucQOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d826e5a-8ba1-4fe8-a74e-382de806e63d +09:12:48.758 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.759 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.759 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.759 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.759 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.759 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.759 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.759 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.760 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.760 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.760 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.760 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2f40834-c456-4c84-8274-e1012f46","clientDesc":"783c8bb5-103e-4f45-bdb2-63b84d200493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.760 [XNIO-1 task-2] -JtONzYVSCuxbYKcpUgoIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.763 [XNIO-1 task-2] vr2-ZxlpQWGR6oxiE2dDLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.763 [XNIO-1 task-2] vr2-ZxlpQWGR6oxiE2dDLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.763 [XNIO-1 task-2] vr2-ZxlpQWGR6oxiE2dDLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.766 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc9fdb83 +09:12:48.774 [XNIO-1 task-2] Zd2vPbiPQDaFaU1oJR65Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0243e32a-d108-4fbd-bb25-e2a0c226abdd +09:12:48.774 [XNIO-1 task-2] Zd2vPbiPQDaFaU1oJR65Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.774 [XNIO-1 task-2] Zd2vPbiPQDaFaU1oJR65Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.774 [XNIO-1 task-2] Zd2vPbiPQDaFaU1oJR65Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0243e32a-d108-4fbd-bb25-e2a0c226abdd +09:12:48.779 [XNIO-1 task-2] iVW8KplMTtOYj2b_7e9eyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.779 [XNIO-1 task-2] iVW8KplMTtOYj2b_7e9eyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.780 [XNIO-1 task-2] iVW8KplMTtOYj2b_7e9eyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.780 [XNIO-1 task-2] iVW8KplMTtOYj2b_7e9eyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.783 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc9fdb83 +09:12:48.784 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - Pool stats (total=2, active=1, idle=1, waiting=0) +09:12:48.789 [XNIO-1 task-2] Kp_D-gjBRGqrjiBoZHledw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.789 [XNIO-1 task-2] Kp_D-gjBRGqrjiBoZHledw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.789 [XNIO-1 task-2] Kp_D-gjBRGqrjiBoZHledw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.789 [XNIO-1 task-2] Kp_D-gjBRGqrjiBoZHledw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.800 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:81d86a99 +09:12:48.800 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.800 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.801 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.801 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bf2d6d9-8d5a-4512-86c7-24e803dc","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.802 [XNIO-1 task-2] CDw3mfidQc2E0p7PzuJvIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.805 [XNIO-1 task-2] _GGYQTvLQqGh4WZzitvdUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.805 [XNIO-1 task-2] _GGYQTvLQqGh4WZzitvdUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.805 [XNIO-1 task-2] _GGYQTvLQqGh4WZzitvdUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.805 [XNIO-1 task-2] _GGYQTvLQqGh4WZzitvdUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.819 [XNIO-1 task-2] MzJiZtx6RnmSb7yKNbha8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.819 [XNIO-1 task-2] MzJiZtx6RnmSb7yKNbha8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.819 [XNIO-1 task-2] MzJiZtx6RnmSb7yKNbha8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.830 [XNIO-1 task-2] wBw6LrhySMeoHBuXZiwrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/baa5d161-0a4d-45b9-a2bd-d07127b585a0 +09:12:48.830 [XNIO-1 task-2] wBw6LrhySMeoHBuXZiwrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.830 [XNIO-1 task-2] wBw6LrhySMeoHBuXZiwrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.830 [XNIO-1 task-2] wBw6LrhySMeoHBuXZiwrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/baa5d161-0a4d-45b9-a2bd-d07127b585a0 +09:12:48.833 [XNIO-1 task-2] wZoDzRTmQhWdXfQLPNrV1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/42ddf05f-84e6-414f-9965-52e6f3753a4e, base path is set to: null +09:12:48.833 [XNIO-1 task-2] wZoDzRTmQhWdXfQLPNrV1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.833 [XNIO-1 task-2] wZoDzRTmQhWdXfQLPNrV1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.833 [XNIO-1 task-2] wZoDzRTmQhWdXfQLPNrV1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/42ddf05f-84e6-414f-9965-52e6f3753a4e, base path is set to: null +09:12:48.833 [XNIO-1 task-2] wZoDzRTmQhWdXfQLPNrV1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "42ddf05f-84e6-414f-9965-52e6f3753a4e", "42ddf05f-84e6-414f-9965-52e6f3753a4e", clientId) +09:12:48.842 [XNIO-1 task-2] OzGAQN8pQom2T844l66abw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/580b805e-7775-454d-b8ce-72800bda2424 +09:12:48.842 [XNIO-1 task-2] OzGAQN8pQom2T844l66abw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.842 [XNIO-1 task-2] OzGAQN8pQom2T844l66abw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.842 [XNIO-1 task-2] OzGAQN8pQom2T844l66abw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/580b805e-7775-454d-b8ce-72800bda2424, base path is set to: null +09:12:48.843 [XNIO-1 task-2] OzGAQN8pQom2T844l66abw DEBUG com.networknt.schema.TypeValidator debug - validate( "580b805e-7775-454d-b8ce-72800bda2424", "580b805e-7775-454d-b8ce-72800bda2424", clientId) +09:12:48.850 [XNIO-1 task-2] WDEJ6fe0QWWHV0mV0TB1qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bec343fd-56e3-4073-ac0e-614822f98c84 +09:12:48.850 [XNIO-1 task-2] WDEJ6fe0QWWHV0mV0TB1qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.850 [XNIO-1 task-2] WDEJ6fe0QWWHV0mV0TB1qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.850 [XNIO-1 task-2] WDEJ6fe0QWWHV0mV0TB1qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bec343fd-56e3-4073-ac0e-614822f98c84 +09:12:48.850 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bec343fd-56e3-4073-ac0e-614822f98c84 +09:12:48.857 [XNIO-1 task-2] PrK8CjOeSw6pk7z_RP4rTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.857 [XNIO-1 task-2] PrK8CjOeSw6pk7z_RP4rTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.857 [XNIO-1 task-2] PrK8CjOeSw6pk7z_RP4rTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.857 [XNIO-1 task-2] PrK8CjOeSw6pk7z_RP4rTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.866 [XNIO-1 task-2] E_u5LpLURaecJvQZ_fQWWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.866 [XNIO-1 task-2] E_u5LpLURaecJvQZ_fQWWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.866 [XNIO-1 task-2] E_u5LpLURaecJvQZ_fQWWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.872 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:af40e975-9514-447a-96a5-85f9de995c26 +09:12:48.876 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.877 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f52c12d-3166-48c4-a089-17b95b67","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.878 [XNIO-1 task-2] tJ1z3DiIQx6ym5HYQiYWSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.879 [XNIO-1 task-2] RVtRgx32Tx2EwzB4aystxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.880 [XNIO-1 task-2] RVtRgx32Tx2EwzB4aystxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.880 [XNIO-1 task-2] RVtRgx32Tx2EwzB4aystxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.880 [XNIO-1 task-2] RVtRgx32Tx2EwzB4aystxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.886 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.886 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.886 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f03648a-716b-424f-bfde-cf5b0720f5f7", {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "cdfe7ca1-3607-4794-84dd-def15e6d", {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cdfe7ca1-3607-4794-84dd-def15e6d","clientDesc":"1f03648a-716b-424f-bfde-cf5b0720f5f7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.887 [XNIO-1 task-2] yINHSHhFQzytEW8uVJaWUw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.891 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.891 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.891 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.891 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.891 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.891 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.892 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.892 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.892 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.892 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.892 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.892 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"292609cd-0a33-4b4d-8c1d-3faa67f1","clientDesc":"f265c169-19aa-4d5e-9b38-78e375a9aea0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.892 [XNIO-1 task-2] HoaUK2OJSzynNdbwYK3NqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.894 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.894 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.894 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.894 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.894 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:48.894 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG com.networknt.schema.TypeValidator debug - validate( "af6578be-bf8d-42bf-a741-10f8a94420d1", {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:48.894 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.895 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.895 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG com.networknt.schema.TypeValidator debug - validate( "430619f1-be26-4fa4-bc32-7610f23c", {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:48.895 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.895 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"430619f1-be26-4fa4-bc32-7610f23c","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.895 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.895 [XNIO-1 task-2] c1jS7QCYRjSqTdpiMWYpGg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:48.897 [XNIO-1 task-2] CH_euKMMQia2_PJgmlP2ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.897 [XNIO-1 task-2] CH_euKMMQia2_PJgmlP2ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.897 [XNIO-1 task-2] CH_euKMMQia2_PJgmlP2ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.907 [XNIO-1 task-2] UAaO7qBcT7yd-WETtPCaMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.908 [XNIO-1 task-2] UAaO7qBcT7yd-WETtPCaMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.908 [XNIO-1 task-2] UAaO7qBcT7yd-WETtPCaMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.919 [XNIO-1 task-2] ahcVz-dqQECc0a_BjIvX7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/baa5d161-0a4d-45b9-a2bd-d07127b585a0, base path is set to: null +09:12:48.919 [XNIO-1 task-2] ahcVz-dqQECc0a_BjIvX7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.919 [XNIO-1 task-2] ahcVz-dqQECc0a_BjIvX7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.919 [XNIO-1 task-2] ahcVz-dqQECc0a_BjIvX7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +09:12:48.919 [XNIO-1 task-2] ahcVz-dqQECc0a_BjIvX7g DEBUG com.networknt.schema.TypeValidator debug - validate( "baa5d161-0a4d-45b9-a2bd-d07127b585a0", "baa5d161-0a4d-45b9-a2bd-d07127b585a0", clientId) +09:12:48.921 [XNIO-1 task-2] sNSQP7T3SvekPL_3-kHLfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/af40e975-9514-447a-96a5-85f9de995c26 +09:12:48.921 [XNIO-1 task-2] sNSQP7T3SvekPL_3-kHLfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.921 [XNIO-1 task-2] sNSQP7T3SvekPL_3-kHLfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +09:12:48.924 [XNIO-1 task-2] Mm_6PC2rQ6qZMFcMxKlMNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +09:12:48.935 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.935 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.935 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.935 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.936 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.936 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.936 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.936 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.936 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.936 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.936 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d2a4e7f-c3f4-4c67-984e-a1f04d18","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.937 [XNIO-1 task-2] WoqxYgrOQA21wmjJaZdRdA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.939 [XNIO-1 task-2] sl7tJitmR5eWZIvK7mH5_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.939 [XNIO-1 task-2] sl7tJitmR5eWZIvK7mH5_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.939 [XNIO-1 task-2] sl7tJitmR5eWZIvK7mH5_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.951 [XNIO-1 task-2] AL-9We9zTa2fpU_ewjUqRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.951 [XNIO-1 task-2] AL-9We9zTa2fpU_ewjUqRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.951 [XNIO-1 task-2] AL-9We9zTa2fpU_ewjUqRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.951 [XNIO-1 task-2] AL-9We9zTa2fpU_ewjUqRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.957 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:88679997 +09:12:48.958 [XNIO-1 task-2] 6sc43YhjQwCLgqRhcGmpEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/af40e975-9514-447a-96a5-85f9de995c26, base path is set to: null +09:12:48.958 [XNIO-1 task-2] 6sc43YhjQwCLgqRhcGmpEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.958 [XNIO-1 task-2] 6sc43YhjQwCLgqRhcGmpEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:48.958 [XNIO-1 task-2] 6sc43YhjQwCLgqRhcGmpEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/af40e975-9514-447a-96a5-85f9de995c26, base path is set to: null +09:12:48.958 [XNIO-1 task-2] 6sc43YhjQwCLgqRhcGmpEg DEBUG com.networknt.schema.TypeValidator debug - validate( "af40e975-9514-447a-96a5-85f9de995c26", "af40e975-9514-447a-96a5-85f9de995c26", clientId) +09:12:48.968 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.968 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.968 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.968 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.968 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.968 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.968 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.969 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:48.969 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:48.969 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.969 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.969 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9facdac8-e84a-429d-b685-840e695a","clientDesc":"af6578be-bf8d-42bf-a741-10f8a94420d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:48.969 [XNIO-1 task-2] vCFizxhrREubt1UvWQMc-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +09:12:48.972 [XNIO-1 task-2] 4nmuK5rPTKSSlTIcGSxVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db24ed47-5944-4cf9-929b-70df1622f57a +09:12:48.972 [XNIO-1 task-2] 4nmuK5rPTKSSlTIcGSxVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:48.972 [XNIO-1 task-2] 4nmuK5rPTKSSlTIcGSxVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +09:12:48.972 [XNIO-1 task-2] 4nmuK5rPTKSSlTIcGSxVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/db24ed47-5944-4cf9-929b-70df1622f57a +09:12:48.975 [XNIO-1 task-2] s7qqm4IsQ2SIS6ZBdR_VwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:48.975 [XNIO-1 task-2] s7qqm4IsQ2SIS6ZBdR_VwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:48.975 [XNIO-1 task-2] s7qqm4IsQ2SIS6ZBdR_VwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:49.001 [XNIO-1 task-2] oedRvPmGQEqQvcjrlHZ-iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:49.001 [XNIO-1 task-2] oedRvPmGQEqQvcjrlHZ-iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:49.001 [XNIO-1 task-2] oedRvPmGQEqQvcjrlHZ-iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:49.014 [XNIO-1 task-2] bMBU9ySOSbqHboaThezP-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84, base path is set to: null +09:12:49.015 [XNIO-1 task-2] bMBU9ySOSbqHboaThezP-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:49.015 [XNIO-1 task-2] bMBU9ySOSbqHboaThezP-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +09:12:49.015 [XNIO-1 task-2] bMBU9ySOSbqHboaThezP-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dad6ca18-f164-4aff-b653-dfc60bca2e84, base path is set to: null +09:12:49.015 [XNIO-1 task-2] bMBU9ySOSbqHboaThezP-A DEBUG com.networknt.schema.TypeValidator debug - validate( "dad6ca18-f164-4aff-b653-dfc60bca2e84", "dad6ca18-f164-4aff-b653-dfc60bca2e84", clientId) +09:12:49.018 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:49.018 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:49.018 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "bd974bec-5427-446a-883b-bddcd7326804", {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "25c4dd26-33a4-449e-a4bb-e46c43b8", {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"25c4dd26-33a4-449e-a4bb-e46c43b8","clientDesc":"bd974bec-5427-446a-883b-bddcd7326804","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:49.019 [XNIO-1 task-2] 8VXbBn5VR4SLCl3h_ehfQA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:49.021 [XNIO-1 task-2] Emwc_e9xRQmvae0uqugsgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +09:12:49.021 [XNIO-1 task-2] Emwc_e9xRQmvae0uqugsgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +09:12:49.022 [XNIO-1 task-2] Emwc_e9xRQmvae0uqugsgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +Jun 29, 2024 9:12:54 AM com.hazelcast.map.impl.operation.DeleteOperation +09:12:49.022 [XNIO-1 task-2] Emwc_e9xRQmvae0uqugsgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d085782a-1be0-4197-aafe-7a15887b","clientDesc":"9813e52d-7866-4fcd-bb6d-19f56d9d4f47","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d085782a-1be0-4197-aafe-7a15887b","clientDesc":"9813e52d-7866-4fcd-bb6d-19f56d9d4f47","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.022 [XNIO-1 task-2] Emwc_e9xRQmvae0uqugsgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d085782a-1be0-4197-aafe-7a15887b","clientDesc":"9813e52d-7866-4fcd-bb6d-19f56d9d4f47","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:12:49.022 [XNIO-1 task-2] Emwc_e9xRQmvae0uqugsgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9813e52d-7866-4fcd-bb6d-19f56d9d4f47", {"clientType":"public","clientProfile":"mobile","clientName":"d085782a-1be0-4197-aafe-7a15887b","clientDesc":"9813e52d-7866-4fcd-bb6d-19f56d9d4f47","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) diff --git a/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..9c5b9fd --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-code-1.log @@ -0,0 +1,1838 @@ +09:12:49.580 [XNIO-1 task-1] O3yzP6fZQ5OfD0o_lO6ttw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.580 [XNIO-1 task-1] O3yzP6fZQ5OfD0o_lO6ttw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.581 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ae7acf8b +09:12:49.586 [XNIO-1 task-1] O3yzP6fZQ5OfD0o_lO6ttw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:49.586 [XNIO-1 task-1] O3yzP6fZQ5OfD0o_lO6ttw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:49.586 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ae7acf8b +09:12:49.589 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.589 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.589 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.590 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG com.networknt.schema.TypeValidator debug - validate( "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", client_id) +09:12:49.590 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.590 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.590 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.590 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.590 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.595 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:49.595 [XNIO-1 task-1] dTARxypFRJaALmMl9tG65w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:49.605 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:496b1ffc +09:12:49.606 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:496b1ffc +09:12:49.613 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.613 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.613 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.613 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.614 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.614 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.614 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.614 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.619 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.619 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.620 [XNIO-1 task-1] 6M9_Diq9QsOwuAAMf30MTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Oq3gTbBrRA-dBOw0E68Qyg +09:12:49.650 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:496b1ffc +09:12:49.688 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.688 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.689 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.689 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.689 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.689 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.689 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.689 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.697 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.698 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.703 [XNIO-1 task-1] BHir11XeSx-E_Q67RrG2pw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YZurQ-8YQkWVZuJbsjXTyA +09:12:49.715 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:747d8da0 +09:12:49.727 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:47d41fdf +09:12:49.741 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6583fad1-5f53-4e30-b204-a9b08d93c598 +09:12:49.753 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5ad05f22-480a-409f-a330-5cd5d3d632c6 +09:12:49.753 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:747d8da0 +09:12:49.760 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:50b0d213 +09:12:49.778 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.778 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.778 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.778 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG com.networknt.schema.TypeValidator debug - validate( "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", client_id) +09:12:49.779 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.779 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.779 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.779 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.779 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.785 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:49.785 [XNIO-1 task-1] V9109PiYR9G5W8AXuwi7ug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:49.789 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.789 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.789 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.789 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG com.networknt.schema.TypeValidator debug - validate( "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", client_id) +09:12:49.789 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.789 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.789 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.790 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.790 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.798 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:49.798 [XNIO-1 task-1] ZRHA3SNVSTaUoVjS9xwG8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:49.805 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.805 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.806 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.806 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", client_id) +09:12:49.806 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.806 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.806 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.806 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.806 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.812 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:49.812 [XNIO-1 task-1] i_pGQPSCQTeuvNSHweX2BQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:49.818 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.818 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.819 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.819 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG com.networknt.schema.TypeValidator debug - validate( "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", client_id) +09:12:49.819 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.819 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.819 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.820 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.820 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.828 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.828 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.829 [XNIO-1 task-1] DKJwEsCuTraKo6uv1K6KAw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=W8Og_2DtRkWyUM3zNBdfog +09:12:49.847 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.847 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.847 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.847 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.848 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.848 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.848 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.848 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.855 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.855 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.856 [XNIO-1 task-1] 7FPW6nCRTGSm0h0JCqM38w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JEbdxf4_TQ2FFb4tEHep_w +09:12:49.861 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5041cea0 +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG com.networknt.schema.TypeValidator debug - validate( "25ab1d92-eb50-41d2-8fe6-04656bda1de8", "25ab1d92-eb50-41d2-8fe6-04656bda1de8", client_id) +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.862 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.863 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.869 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:49.869 [XNIO-1 task-1] jkJ63MtQQwOWGWe4kBITng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:49.873 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.873 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.873 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.874 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG com.networknt.schema.TypeValidator debug - validate( "25ab1d92-eb50-41d2-8fe6-04656bda1de8", "25ab1d92-eb50-41d2-8fe6-04656bda1de8", client_id) +09:12:49.874 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.874 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.874 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.874 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.875 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.882 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.882 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:fe169025-5c2a-4192-95e9-527cc4a15072 +09:12:49.883 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fe169025-5c2a-4192-95e9-527cc4a15072 +09:12:49.883 [XNIO-1 task-1] RmwC8T00Q56hwUAZBebRGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2Kv3W-NsSPaxROGGsq4I7Q +09:12:49.893 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.893 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.893 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.893 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.893 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.894 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.894 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.894 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.899 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.899 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.903 [XNIO-1 task-1] 57ubucwgS4WshtSQuCOreg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bG2AtUraRQOXY7RiJEZqBA +09:12:49.907 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.907 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.907 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.908 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.908 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.908 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.908 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.908 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.909 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:496b1ffc +09:12:49.910 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1a84bee5 +09:12:49.915 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.915 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.916 [XNIO-1 task-1] p0FMndpRSaSpTFhgN4gK5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gkw3P0RhRd2oXJCmVkpM5g +09:12:49.919 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.920 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.920 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.920 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.920 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.920 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.920 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.920 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.926 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3c11f3b8 +09:12:49.928 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.928 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.931 [XNIO-1 task-1] Pxnh5PkOR26NihtoFLKw6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5dM-nSG8Qey9rTkrIrJBrA +09:12:49.933 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.934 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.934 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.934 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.934 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.934 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.934 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.935 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.942 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.942 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.943 [XNIO-1 task-1] mGYmYCI-S92-Jn-pA0FxOg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TDh0fNkUSl66zvBFOXJjiw +09:12:49.946 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.946 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.946 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:49.946 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:49.946 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:49.947 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.947 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.947 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.953 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.953 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.954 [XNIO-1 task-1] UinMlWwTQlW45WOY7fJP7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qJvWg9n6Tyin_jFj2JK70A +09:12:49.958 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.958 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.958 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.958 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG com.networknt.schema.TypeValidator debug - validate( "baa5d161-0a4d-45b9-a2bd-d07127b585a0", "baa5d161-0a4d-45b9-a2bd-d07127b585a0", client_id) +09:12:49.959 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.959 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.959 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:49.959 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:49.959 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:49.967 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:49.967 [XNIO-1 task-1] rY60HezvSReAaaCBjfy1ww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:49.988 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.988 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:49.989 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:49.989 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1065ff7b-ee46-4334-9d80-6da0e1344c6e", "1065ff7b-ee46-4334-9d80-6da0e1344c6e", client_id) +09:12:49.989 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:49.989 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:49.989 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:49.989 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:49.991 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:49.991 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:93f40b9f +09:12:49.996 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:49.996 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:49.997 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:93f40b9f +09:12:49.998 [XNIO-1 task-1] 562v8JfYSQKVwpUg8ZcFzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cmkACZVwTIyskVlH_fPxvQ +09:12:50.018 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.018 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.018 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.018 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.018 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.019 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.019 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.019 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.026 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.026 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.027 [XNIO-1 task-1] gWwrmSHISfm_3mFA9QgLaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=81hmeDnWQae-JIATbmUNlg +09:12:50.031 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.031 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.031 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.031 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.031 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.031 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.031 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.032 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.037 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.037 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.038 [XNIO-1 task-1] lGR7UVa5TYS5C6wKfr1lYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_8M8bOgpTiyi2yLu6coM9g +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.041 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.043 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c807f19 +09:12:50.047 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.047 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.048 [XNIO-1 task-1] dBypBe96T7OAnruY8P81Mw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MNDg6SX7SKOl8Yh8P334fQ +09:12:50.053 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.053 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.053 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.053 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.053 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.053 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.053 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.054 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.063 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.063 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.064 [XNIO-1 task-1] BJxIBru5Q8encAPHiinrag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kkqZc3cMR1qXkoznRLx3Yw +09:12:50.071 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.071 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.071 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.071 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.071 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.071 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.071 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.072 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.072 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:68540603-466b-4ea6-8e04-b04e57400b5a +09:12:50.074 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:747d8da0 +09:12:50.078 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.078 [XNIO-1 task-1] aAS74AaDTWW4-qYkvAkjpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG com.networknt.schema.TypeValidator debug - validate( "01e85acf-7660-4c8c-bf91-af85920bed78", "01e85acf-7660-4c8c-bf91-af85920bed78", client_id) +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.099 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.100 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.106 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.106 [XNIO-1 task-1] oia_4Y1-ToaA1IT5d0aLhw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.116 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.116 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.116 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.117 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG com.networknt.schema.TypeValidator debug - validate( "01e85acf-7660-4c8c-bf91-af85920bed78", "01e85acf-7660-4c8c-bf91-af85920bed78", client_id) +09:12:50.117 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.117 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.117 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.117 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.117 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.125 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.125 [XNIO-1 task-1] NQCKwkJ_REmE8SFiX2up0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.130 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.130 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.130 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.130 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG com.networknt.schema.TypeValidator debug - validate( "01e85acf-7660-4c8c-bf91-af85920bed78", "01e85acf-7660-4c8c-bf91-af85920bed78", client_id) +09:12:50.131 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.131 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.131 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.131 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.131 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.137 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.137 [XNIO-1 task-1] qxtjJBd-QKykPh2vp5uDaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.153 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fe169025-5c2a-4192-95e9-527cc4a15072 +09:12:50.170 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.170 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.170 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.171 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.171 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.171 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.171 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.171 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.177 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.177 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.180 [XNIO-1 task-1] bkvBM9rYTyyuTnD_ZodgLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8BxyIGgnTxuYWCE-NuljyA +09:12:50.205 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:61198f46 +09:12:50.206 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a7bb8160-a41a-453c-a815-5591ee688ea2 +09:12:50.223 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a7bb8160-a41a-453c-a815-5591ee688ea2 +09:12:50.230 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.252 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.252 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.252 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.252 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG com.networknt.schema.TypeValidator debug - validate( "25ab1d92-eb50-41d2-8fe6-04656bda1de8", "25ab1d92-eb50-41d2-8fe6-04656bda1de8", client_id) +09:12:50.253 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.253 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.253 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.253 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.253 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.258 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.258 [XNIO-1 task-1] _S3Hw6caRbiIyx1mQzrQ1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.261 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.261 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.261 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.261 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG com.networknt.schema.TypeValidator debug - validate( "25ab1d92-eb50-41d2-8fe6-04656bda1de8", "25ab1d92-eb50-41d2-8fe6-04656bda1de8", client_id) +09:12:50.262 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.262 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.262 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.262 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.262 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.267 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.267 [XNIO-1 task-1] aF6nUb4BTNmp8eUuj3af0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.293 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.293 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.294 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.295 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG com.networknt.schema.TypeValidator debug - validate( "25ab1d92-eb50-41d2-8fe6-04656bda1de8", "25ab1d92-eb50-41d2-8fe6-04656bda1de8", client_id) +09:12:50.295 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.295 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.295 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.295 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.295 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.301 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.301 [XNIO-1 task-1] H4mzyQgqQlaEwecJnTPriA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25ab1d92-eb50-41d2-8fe6-04656bda1de8", "25ab1d92-eb50-41d2-8fe6-04656bda1de8", client_id) +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.305 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.311 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.311 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.311 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ca0ba275 +09:12:50.314 [XNIO-1 task-1] As2XOIi7TlSywzOzNBuWlQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mR5zFCL6RKeC2jy6GKkVqA +09:12:50.318 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.318 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.318 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.319 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.319 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.319 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.319 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.319 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.329 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.329 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.330 [XNIO-1 task-1] CzIy2M4uRv27OscaX_Beqg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hRXOhcI_Ss-XXm8hE2qXcg +09:12:50.374 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.385 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.385 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.385 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25ab1d92-eb50-41d2-8fe6-04656bda1de8", "25ab1d92-eb50-41d2-8fe6-04656bda1de8", client_id) +09:12:50.385 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.385 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.385 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.385 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.385 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.385 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.386 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.386 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.386 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.386 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.386 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.386 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.386 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.386 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.391 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.391 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.392 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.392 [XNIO-1 task-2] sQgWbLqPQzepyprpnDaKig DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.393 [XNIO-1 task-1] iqfRPPP7TzmOUo46of32SQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gu79EHP8Qgm89hIz_d4GgQ +09:12:50.404 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.404 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.404 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.404 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.404 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG com.networknt.schema.TypeValidator debug - validate( "e10da6c3-5adb-4e3b-b21d-392499b2df34", "e10da6c3-5adb-4e3b-b21d-392499b2df34", client_id) +09:12:50.405 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.405 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.405 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.405 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.405 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.405 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.405 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG com.networknt.schema.TypeValidator debug - validate( "2ce0152c-4fed-448c-954a-5a4c45929958", "2ce0152c-4fed-448c-954a-5a4c45929958", client_id) +09:12:50.405 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.405 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.405 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.405 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.407 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.407 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.414 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.414 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.415 [XNIO-1 task-2] NOX2XHB9RxGO0u3bCFPz4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_CRxaKBAQxa4Vn0lzD6Akw +09:12:50.418 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.418 [XNIO-1 task-1] RbX0ZxDGRwqO8K7hYKJZCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.426 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3-Z1Whi9aJmbmCr7VNZ9DrsqtB-rvacX-_snZUIjMdA", "3-Z1Whi9aJmbmCr7VNZ9DrsqtB-rvacX-_snZUIjMdA", code_challenge) +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.427 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.428 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.428 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.437 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.437 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.437 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.437 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.439 [XNIO-1 task-1] 2_C3n8ztTgmRQns9PlwsLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hCbEc4LNTs69bJq_1OAhCA +09:12:50.525 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.547 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1a84bee5 +09:12:50.550 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:25ab1d92-eb50-41d2-8fe6-04656bda1de8 + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +09:12:50.577 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ca0ba275 + +09:12:50.578 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ca0ba275 +09:12:50.613 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ca0ba275 +09:12:50.660 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.660 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.660 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.660 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.660 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.660 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.660 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.662 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.665 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.665 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.665 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.666 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG com.networknt.schema.TypeValidator debug - validate( "RfPEeBQLSjHcY6xTv6N286rO8fdTOqYaa0n5Wa7XYLQ", "RfPEeBQLSjHcY6xTv6N286rO8fdTOqYaa0n5Wa7XYLQ", code_challenge) +09:12:50.666 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.666 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.666 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.666 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.666 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.666 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.669 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.669 [XNIO-1 task-1] 9rjYUCOHTsW-3cATN7JtVg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.675 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.676 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.676 [XNIO-1 task-2] 9HAumX8KQnqSo3Xsa9WXAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IJh0lwkrQ1iXGK95myp34A +09:12:50.678 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.678 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.678 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.678 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.678 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.678 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.678 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.679 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.686 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.687 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.691 [XNIO-1 task-2] crWb3YGUTxSbpDedD4K2mg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OhL5WklwTSSME1ULr59caQ +09:12:50.694 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.695 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.695 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.695 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.695 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.695 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.695 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.695 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.703 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.704 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.704 [XNIO-1 task-2] 81mAOyaDSm6wtpZueZi0yQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WmncWR_VRDKjKhEc-BAOqA +09:12:50.707 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.708 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.708 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.708 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.708 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.708 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.708 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.709 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.713 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c807f19 +09:12:50.716 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.716 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.720 [XNIO-1 task-2] SZzHi989RIOJKyiyXOgYRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8PL1vclbRTq0AHuB6QplKw +09:12:50.723 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.723 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.723 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.723 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.724 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.724 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.724 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.724 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.731 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.731 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.731 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.731 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "CXwhR7ngnJw4S5qIqn28UwO6VwsKo9POOeodLrcoYHk", "CXwhR7ngnJw4S5qIqn28UwO6VwsKo9POOeodLrcoYHk", code_challenge) +09:12:50.732 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.732 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.732 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.732 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.732 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.732 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.733 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.733 [XNIO-1 task-2] pQidJh3UR4yCsOixu-Dhxw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.737 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.739 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.739 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.739 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e10da6c3-5adb-4e3b-b21d-392499b2df34", "e10da6c3-5adb-4e3b-b21d-392499b2df34", client_id) +09:12:50.739 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.739 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.740 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.740 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.740 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.740 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.741 [XNIO-1 task-1] gx8HTG7DS3KUIZKMwJ-IGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.745 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.745 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.745 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.745 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG com.networknt.schema.TypeValidator debug - validate( "cWmaujwL0MjdChD8B5xDeI8A6zrgWQt4_EjJjPNCkrA", "cWmaujwL0MjdChD8B5xDeI8A6zrgWQt4_EjJjPNCkrA", code_challenge) +09:12:50.746 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.746 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.746 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.746 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.746 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.746 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.748 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.748 [XNIO-1 task-2] yO09IVoCRkSw-yqxJAl_ZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.753 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:61198f46 +09:12:50.755 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG com.networknt.schema.TypeValidator debug - validate( "e10da6c3-5adb-4e3b-b21d-392499b2df34", "e10da6c3-5adb-4e3b-b21d-392499b2df34", client_id) +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.756 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.756 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.756 [XNIO-1 task-1] RSNYjyYMQcGw9JtTYSbirg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.762 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.762 [XNIO-1 task-2] hd2JcopCSpihiLYsxC3Mgg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.762 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2af06683-8e49-46da-8186-5ede46b2e839 +09:12:50.763 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2af06683-8e49-46da-8186-5ede46b2e839 +09:12:50.765 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.765 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.765 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.765 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG com.networknt.schema.TypeValidator debug - validate( "c11cd3d7-f3be-4298-8df3-9935f539d160", "c11cd3d7-f3be-4298-8df3-9935f539d160", client_id) +09:12:50.765 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.766 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.766 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.766 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.766 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.771 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.771 [XNIO-1 task-2] eyfiUDacQludxx9QlNXRdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.777 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:61198f46 +09:12:50.778 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.779 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.779 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.779 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1ioCLgFPJ7NDPKcByX1z4MSFYTkbIs8gmdYE7emvFR0", "1ioCLgFPJ7NDPKcByX1z4MSFYTkbIs8gmdYE7emvFR0", code_challenge) +09:12:50.779 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.779 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.780 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.780 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.780 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.780 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.785 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.785 [XNIO-1 task-2] P5uW26C1QlKLJV9Cva9j3Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.793 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.793 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.793 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.793 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG com.networknt.schema.TypeValidator debug - validate( "DALycDmjdkscEEN0s1bHU-wvzD-GoJeO_f7tt3hsOV4", "DALycDmjdkscEEN0s1bHU-wvzD-GoJeO_f7tt3hsOV4", code_challenge) +09:12:50.793 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.793 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.794 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.794 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.794 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.794 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.800 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.800 [XNIO-1 task-2] F-wTdUTDTHWqaqvqi7sPyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.802 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2af06683-8e49-46da-8186-5ede46b2e839 +09:12:50.807 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.807 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.807 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.807 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:61198f46 +09:12:50.807 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.807 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.807 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.808 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.808 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.808 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.814 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.814 [XNIO-1 task-2] iXqaUrU8TKW6voYutCZElA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.823 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.823 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.823 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.823 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG com.networknt.schema.TypeValidator debug - validate( "-9iqErS0Oa_tpW4RgW_zA_seJ9kqWy0vLh4j6gj_DlY", "-9iqErS0Oa_tpW4RgW_zA_seJ9kqWy0vLh4j6gj_DlY", code_challenge) +09:12:50.823 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.823 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.824 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.824 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.824 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.824 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.829 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.829 [XNIO-1 task-2] QMC3azo5T_yFP9ggiJzS0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.835 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.836 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.836 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.836 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "PLBdYIoK6Lr3mqTutoakZUFGFz59NODYYMA1pfFtonA", "PLBdYIoK6Lr3mqTutoakZUFGFz59NODYYMA1pfFtonA", code_challenge) +09:12:50.836 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:50.836 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.836 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.836 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.837 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.837 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.837 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:83383647-0dbe-4e54-9e95-745fa7bfe70c +09:12:50.843 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.844 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.844 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.844 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c11cd3d7-f3be-4298-8df3-9935f539d160", "c11cd3d7-f3be-4298-8df3-9935f539d160", client_id) +09:12:50.844 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.845 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.845 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.845 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.845 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.845 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.845 [XNIO-1 task-2] ypzTO0HxT0SCROQ5Yen0Hw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.851 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.851 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.851 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.851 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.851 [XNIO-1 task-1] rpb7eOHBTRqbJXcTrebILQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=b8u_pEoxTRSq3ALwDtid1g +09:12:50.852 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.852 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG com.networknt.schema.TypeValidator debug - validate( "d5953aac-7e25-42d8-8bb2-b331aa725453", "d5953aac-7e25-42d8-8bb2-b331aa725453", client_id) +09:12:50.852 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.852 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.853 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.853 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.853 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.858 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.859 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.859 [XNIO-1 task-2] m7pQqmA1RYuyADsWB1TDvA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gTcQdmUAScWy9CY923Gb9g +09:12:50.862 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.862 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.862 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.862 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG com.networknt.schema.TypeValidator debug - validate( "d5953aac-7e25-42d8-8bb2-b331aa725453", "d5953aac-7e25-42d8-8bb2-b331aa725453", client_id) +09:12:50.863 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.863 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.863 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.863 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.863 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.869 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.869 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.871 [XNIO-1 task-2] 2WZcTxYfRdq187qD7Hp3-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rpZP_vMvRKe0Z52cBm0EUA +09:12:50.879 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.879 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.879 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.879 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.879 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.879 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.879 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.880 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.886 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.886 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.888 [XNIO-1 task-2] vKrZIT2DQbSWBBdCjB6hnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yfVCZBFoRemruj2y5NSSSA +09:12:50.906 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.906 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.907 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.907 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.907 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.907 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.907 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.907 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.913 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.914 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.914 [XNIO-1 task-2] 3eJTeldmQY6lwnYg81MpNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8FBz5webRXijOEvMYE6QrA +09:12:50.917 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.917 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.917 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.917 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG com.networknt.schema.TypeValidator debug - validate( "d5953aac-7e25-42d8-8bb2-b331aa725453", "d5953aac-7e25-42d8-8bb2-b331aa725453", client_id) +09:12:50.917 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.917 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.918 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.918 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.918 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG com.networknt.schema.TypeValidator debug - validate( "8685c48f-5d47-43e1-a11c-2f2cc477d5c9", "8685c48f-5d47-43e1-a11c-2f2cc477d5c9", client_id) +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:50.921 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:50.923 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:50.923 [XNIO-1 task-2] CFGcRMO8RamdLZUfbMZAOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:50.927 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.927 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.928 [XNIO-1 task-1] 6inF22SuTHO_tAgvZhiWJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0E4qHV1YRzGCW1x6G8lF4g +09:12:50.948 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.948 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.948 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.950 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG com.networknt.schema.TypeValidator debug - validate( "d5953aac-7e25-42d8-8bb2-b331aa725453", "d5953aac-7e25-42d8-8bb2-b331aa725453", client_id) +09:12:50.950 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.950 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.950 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.950 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.950 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.965 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.965 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.966 [XNIO-1 task-1] 1rockViHSZGustHboAQ-2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nC_XOGRJSVOlRyTFCExaTQ +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG com.networknt.schema.TypeValidator debug - validate( "d5953aac-7e25-42d8-8bb2-b331aa725453", "d5953aac-7e25-42d8-8bb2-b331aa725453", client_id) +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.973 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.980 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.980 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.981 [XNIO-1 task-1] AD7wIwE0TrKXp9zzbMg29g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0Fy80OpQQkmHTwBOjhgMkw +09:12:50.986 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.986 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.986 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:50.987 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d5953aac-7e25-42d8-8bb2-b331aa725453", "d5953aac-7e25-42d8-8bb2-b331aa725453", client_id) +09:12:50.987 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:50.987 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.987 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.987 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.987 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:50.997 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:50.997 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:50.997 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.997 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:50.997 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:50.997 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG com.networknt.schema.TypeValidator debug - validate( "8685c48f-5d47-43e1-a11c-2f2cc477d5c9", "8685c48f-5d47-43e1-a11c-2f2cc477d5c9", client_id) +09:12:50.998 [XNIO-1 task-1] Jx64gDKkTfaHgPn7qSf3eQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hVTUXkbPS96pA8L-3x7ZQg +09:12:50.998 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:50.998 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:50.999 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:50.999 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.005 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.006 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.006 [XNIO-1 task-2] EbN0Cb_3SmSWsZf5dBK3-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-_aMILTOTdCy_23Cx8qWdQ +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.052 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.062 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.063 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.063 [XNIO-1 task-2] EjiZAeiMROaGzZQZpsBfiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U5u-m8YdSte3w4RQjbbaTA +09:12:51.066 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.067 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.067 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.068 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.068 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.068 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.068 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.069 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Nf0H3O6qfHIIV_7xLqxfaUxgMUTlMcknQNG3HSSnVVU", "Nf0H3O6qfHIIV_7xLqxfaUxgMUTlMcknQNG3HSSnVVU", code_challenge) +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.073 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.074 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.075 [XNIO-1 task-2] nY7d1v8oRw6KhHBiUJyVKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.079 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.079 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.079 [XNIO-1 task-1] zAn3j3UnSCelKczuspKYQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ha9go6uRSLOr4c3Hnvs9zw +09:12:51.099 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.099 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.099 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.099 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.099 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.099 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.100 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.100 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.104 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.104 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.104 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.104 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "EgEpNOCRmF0kHWRaEZRbfzVowepksCKs7lRzgS4xZJo", "EgEpNOCRmF0kHWRaEZRbfzVowepksCKs7lRzgS4xZJo", code_challenge) +09:12:51.104 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.104 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.104 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.105 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.105 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.105 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.105 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.105 [XNIO-1 task-1] KSme1423Ti2vgiGbpIxp0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.110 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.110 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.111 [XNIO-1 task-2] KdsFOHd7RQG8J99Rxb5bSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hsTtpvyjS-e2LqPa9NJWfg +09:12:51.111 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.112 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.112 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.112 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.112 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.112 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.112 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.112 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.114 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "AB-BTb9hLic8YENkuTN7x0HZEh7A_nLyPdX8VKnb9-g", "AB-BTb9hLic8YENkuTN7x0HZEh7A_nLyPdX8VKnb9-g", code_challenge) +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.115 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.116 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.118 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.118 [XNIO-1 task-1] HOxwZox3QkGJTttCHk6ykA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.122 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.122 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.124 [XNIO-1 task-2] v2jj8a0RSEq0SOPSE2JijQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aHlPxMqUTEmdK_xAnUlzgg +09:12:51.125 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:802c6706-4fcb-462d-aefa-1a886caa7994 +09:12:51.133 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG com.networknt.schema.TypeValidator debug - validate( "ef81b330-0509-4c2d-a432-b413c8edad96", "ef81b330-0509-4c2d-a432-b413c8edad96", client_id) +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.134 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.140 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.140 [XNIO-1 task-2] n5V-iIwUSB62qJvrL6iHvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.141 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.141 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.141 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.141 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "jKkGf3Ay2GR6GZzWM6lsF9uZGdpCKz5Veu90HewXp-A", "jKkGf3Ay2GR6GZzWM6lsF9uZGdpCKz5Veu90HewXp-A", code_challenge) +09:12:51.142 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.142 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.142 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.142 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.142 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.142 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.145 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.146 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.146 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.146 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.146 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.146 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.147 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.147 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.150 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.150 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.151 [XNIO-1 task-1] 3wJ_ww7WQFijiZIYndjLCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gnkRt4iGQMyqwWokE3Zj9Q +09:12:51.153 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.153 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.154 [XNIO-1 task-2] bPvuIqKETRq4LqA6WMe6TA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.162 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.169 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.170 [XNIO-1 task-2] gmL99sXoQ_i5Uq7DOmRVxQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +09:12:51.220 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + +09:12:51.220 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.220 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.221 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.221 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", client_id) +09:12:51.221 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.221 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.221 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.221 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.221 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.226 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.227 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.228 [XNIO-1 task-2] ma3baImwQwe3_Z97x-8dxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vScBzOWiTjW6arNqtKG72w +09:12:51.231 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.231 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.231 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.232 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG com.networknt.schema.TypeValidator debug - validate( "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", "20b7a6ae-a5e3-47cf-82d6-76ebc05b2485", client_id) +09:12:51.232 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.232 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.232 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.232 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.232 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.237 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f805369c +09:12:51.237 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f805369c +09:12:51.239 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.239 [XNIO-1 task-2] wknhXE3-RFmn3xo4UW__dw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.242 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.242 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.243 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.243 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG com.networknt.schema.TypeValidator debug - validate( "8lJf5fe2pt7l6ZrEewOxh8qvfh79ONYKw-DXy39a3KE", "8lJf5fe2pt7l6ZrEewOxh8qvfh79ONYKw-DXy39a3KE", code_challenge) +09:12:51.243 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.243 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.244 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.244 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.244 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.244 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.249 [XNIO-1 task-2] iRIhBfT7Q7ifVMXfDX158w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.249 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.250 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.251 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.258 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.258 [XNIO-1 task-1] ZcFGRM1EQN6HFfKQLmEZNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.302 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e1c6fa5e-a0df-446e-9226-2c708c2ee0e1 +09:12:51.304 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e1c6fa5e-a0df-446e-9226-2c708c2ee0e1 +09:12:51.355 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.355 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.355 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.356 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.356 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.356 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.356 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.356 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.363 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.363 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.365 [XNIO-1 task-1] u4LydGMgTcOtLKap35cJbw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HRT5ilgJSiy4oqQag70twQ +09:12:51.367 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.367 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.368 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.368 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.368 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.368 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.368 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.368 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.374 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.374 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.402 [XNIO-1 task-1] L4q52LoSRnCsrkMbIdfZDA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=E_WXWZsjSCitPWpfzbj--Q +09:12:51.564 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.564 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.564 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.565 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ce0152c-4fed-448c-954a-5a4c45929958", "2ce0152c-4fed-448c-954a-5a4c45929958", client_id) +09:12:51.565 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.565 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.565 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.565 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.565 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.565 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93bde782 +09:12:51.566 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93bde782 +09:12:51.571 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.571 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.571 [XNIO-1 task-1] RKk6Sa9MT4uUuHarLm-ICQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QmCuh300Q3C7BWiHnO7ziw +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:51.612 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.612 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.612 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.613 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "r_2EFauvk1OpEZDKDWOtv6i61kH4b-cpfq0rcNgwKYM", "r_2EFauvk1OpEZDKDWOtv6i61kH4b-cpfq0rcNgwKYM", code_challenge) +09:12:51.613 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.613 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.613 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.613 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.613 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.613 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.613 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.613 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.613 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.613 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.614 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.614 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.614 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.614 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.623 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.623 [XNIO-1 task-1] bwfL-hglSpCV-ixGQU6I3Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.623 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.623 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.623 [XNIO-1 task-2] eeQblvlMQhWg6115TZoasg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.631 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.631 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.631 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.631 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG com.networknt.schema.TypeValidator debug - validate( "802c6706-4fcb-462d-aefa-1a886caa7994", "802c6706-4fcb-462d-aefa-1a886caa7994", client_id) +09:12:51.632 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.632 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.632 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.632 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.632 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.638 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.638 [XNIO-1 task-2] 2fBbBj3PQImH9eJl3vG52A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.643 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0ef0029c-623a-4415-bea6-cdeefced19d3 +09:12:51.655 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.655 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.655 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.655 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Cy53eNWCQLOahu30qBO7V_C66__gdJuR--gpnRQ6fEw", "Cy53eNWCQLOahu30qBO7V_C66__gdJuR--gpnRQ6fEw", code_challenge) +09:12:51.655 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.655 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.656 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.656 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.656 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.656 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.661 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:93bde782 +09:12:51.664 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.664 [XNIO-1 task-2] 8MWC5xo-Qby79nCh1KA8lQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.678 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.678 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.678 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.678 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "jyJ7tMVNxJ9NZud91c8tyxBAf66ppjT-CQ-pB-ssWjE", "jyJ7tMVNxJ9NZud91c8tyxBAf66ppjT-CQ-pB-ssWjE", code_challenge) +09:12:51.678 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.678 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.679 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.679 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.679 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.679 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.681 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.681 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.681 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.682 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.682 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.682 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.682 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.682 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.685 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.685 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.685 [XNIO-1 task-2] lbaZx62jQoWXmN3WnMArdQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_4ixyRH3SNeTDs00oPYUjA +09:12:51.689 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.689 [XNIO-1 task-1] ROt6s0JVSq-MsHUBx26PzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.695 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.695 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.695 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.695 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG com.networknt.schema.TypeValidator debug - validate( "powUGQr7PwD0RNXFgj8QDGUsOc3598n7sSB6f-WRqwo", "powUGQr7PwD0RNXFgj8QDGUsOc3598n7sSB6f-WRqwo", code_challenge) +09:12:51.695 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.697 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.697 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.697 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.697 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.697 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.698 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.699 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.699 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.700 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.700 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.700 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.700 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.700 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.703 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.703 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.705 [XNIO-1 task-1] 7GJeH-OOQbKdIbKX4iFDzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ftkvrq6TQwG2uU8yYOLxMQ +09:12:51.706 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.706 [XNIO-1 task-2] jagdvBiCTYiDEOi6GEIytQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.716 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.717 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.717 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.717 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG com.networknt.schema.TypeValidator debug - validate( "01e85acf-7660-4c8c-bf91-af85920bed78", "01e85acf-7660-4c8c-bf91-af85920bed78", client_id) +09:12:51.717 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.717 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.718 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.718 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.718 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.724 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.724 [XNIO-1 task-2] c_kZSvvMSYe8sFXAYPQbOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.732 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.732 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.733 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.733 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "01e85acf-7660-4c8c-bf91-af85920bed78", "01e85acf-7660-4c8c-bf91-af85920bed78", client_id) +09:12:51.733 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.733 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.733 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.733 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.733 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.736 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.736 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.736 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.737 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG com.networknt.schema.TypeValidator debug - validate( "253b1f1a-c87e-40bb-924c-2fd45e679040", "253b1f1a-c87e-40bb-924c-2fd45e679040", client_id) +09:12:51.737 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.737 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.737 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.737 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.737 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.739 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.739 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.740 [XNIO-1 task-2] AF0dYPaKRfOpU4hUHRH5Dw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1MViRqomScmNoe1OJAcZhQ +09:12:51.743 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.743 [XNIO-1 task-1] lWk108uSRvW61iMMjmCYkA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.755 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.755 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.755 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.755 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG com.networknt.schema.TypeValidator debug - validate( "jpuW8qbRTwKAODZakXuXC2IrsL7XMTWwNXk6Od_fcs0", "jpuW8qbRTwKAODZakXuXC2IrsL7XMTWwNXk6Od_fcs0", code_challenge) +09:12:51.756 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.756 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.756 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.756 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.756 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.756 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.757 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.757 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.757 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.758 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.758 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.758 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.758 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.758 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.762 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.762 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.763 [XNIO-1 task-1] lv5vmrT3TIyaG-EKUBJc5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jMfKrhtQRrGUD3KmmOTrRQ +09:12:51.764 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.764 [XNIO-1 task-2] mZ9FAjDZQ1aQaWBdt7wToQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.769 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.769 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.770 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.770 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "zxm-KWVdRLF2H3EUjXiUhDWITYgeMTNCxsOLnVnOfmw", "zxm-KWVdRLF2H3EUjXiUhDWITYgeMTNCxsOLnVnOfmw", code_challenge) +09:12:51.770 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.770 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.770 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.770 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.770 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.771 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.774 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.776 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.777 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.777 [XNIO-1 task-2] C5MweFe6TXWZnU55HdKOjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QCP7Q0pCTn-vZ6yM1ofGmw +09:12:51.780 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.780 [XNIO-1 task-1] 3I9Az3PCQQ2hwsloDbJRBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.787 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.787 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.787 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.787 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:51.787 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.787 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.788 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.788 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.788 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.798 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.798 [XNIO-1 task-1] Il_DeOT6R0e67zR3GayZdA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.820 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.820 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.820 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.821 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:51.821 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.821 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.821 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.821 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.822 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.831 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.831 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.833 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.834 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.834 [XNIO-1 task-1] hNUipC5OSTimHUXtFqybFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SFE51LgSQG2_PckI4yPpTg +09:12:51.834 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "RGkBRpLMEeyUTGncsrpH9eKfbfMDd1zn0f6Qkmv2YJI", "RGkBRpLMEeyUTGncsrpH9eKfbfMDd1zn0f6Qkmv2YJI", code_challenge) +09:12:51.834 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.835 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.835 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.835 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.835 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.835 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.839 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.839 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.839 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.840 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:51.840 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d43ffacc +09:12:51.840 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.840 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.840 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.841 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.841 [XNIO-1 task-2] 8bpNSoHkS7OFHi906IC0Yg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TnkzNHpSTNyF2OCYG73wcA +09:12:51.842 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.842 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.842 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1468927-7b77-48a7-ae04-723aa5cdde7b +09:12:51.846 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1468927-7b77-48a7-ae04-723aa5cdde7b +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG com.networknt.schema.TypeValidator debug - validate( "c478e7e4-0a97-4459-ae28-81a86e5d5fb3", "c478e7e4-0a97-4459-ae28-81a86e5d5fb3", client_id) +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.847 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.848 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.848 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.849 [XNIO-1 task-1] bI7WYsy2QGOXB_bvRuJRTg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZIm27lcIRWyjwSr0Yr8L0w +09:12:51.853 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.854 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.854 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.854 [XNIO-1 task-2] c4swEZU3RN-fO7ss92bWpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.855 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.855 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:51.856 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.856 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.856 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.856 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.856 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.864 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.864 [XNIO-1 task-1] gUyw9vPVTIGWoNZbQXmdQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.872 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.872 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.872 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.872 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:51.872 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.873 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.873 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.873 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.873 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.880 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f805369c +09:12:51.880 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9144c0a9-0671-4b38-b104-a16e67a8b8cf +09:12:51.882 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.882 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.882 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.882 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "N8gfbZJIwi_qMKMThfwpceXOpqRdTAdWexl4xnSocYM", "N8gfbZJIwi_qMKMThfwpceXOpqRdTAdWexl4xnSocYM", code_challenge) +09:12:51.882 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.882 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.882 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.883 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.883 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.883 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.884 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.884 [XNIO-1 task-1] R8hCUhWiT2uGqIYWRfNHHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.889 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.889 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.890 [XNIO-1 task-2] Z0a3W5mvTiqCAi5Re0ixqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5KeSweWgRLWZoIOCIGfVyQ +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2cf1c11f-266e-4732-91cc-9f40bc45e926", "2cf1c11f-266e-4732-91cc-9f40bc45e926", client_id) +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.894 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.900 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.900 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.902 [XNIO-1 task-2] y46fx_qIQDaFAIVBhFL1_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SK8PhLyxTXqTcbPoMkq5Zw +09:12:51.908 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.908 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.908 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.908 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2cf1c11f-266e-4732-91cc-9f40bc45e926", "2cf1c11f-266e-4732-91cc-9f40bc45e926", client_id) +09:12:51.908 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.908 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.909 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.909 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.909 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.912 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.912 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.912 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.912 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:51.912 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.912 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.912 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.913 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.913 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.915 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.915 [XNIO-1 task-2] QEbPWx2XS4evOyHxJFv5dQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.918 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f805369c +09:12:51.918 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.919 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:51.919 [XNIO-1 task-1] goZK5QAYTfuyy7B1kwsGUg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.919 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4aec5f1b-a462-46cc-bbd9-4b3802ffd061 +09:12:51.921 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.921 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:51.921 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.921 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5RCz90OVAhnn2EMCrV7RgdU-0ZAyUUEU1xVMyH1Agjo", "5RCz90OVAhnn2EMCrV7RgdU-0ZAyUUEU1xVMyH1Agjo", code_challenge) +09:12:51.921 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.922 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:51.922 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:51.922 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:51.922 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:51.922 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:51.927 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.927 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.927 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.928 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.928 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.928 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.928 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.928 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.928 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.928 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.929 [XNIO-1 task-2] Lmcif39WQfeK4BprG-wkrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KZo_SxQORW-fHUgsFJtD6A +09:12:51.930 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f805369c +09:12:51.932 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.932 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.932 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.933 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.933 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "253b1f1a-c87e-40bb-924c-2fd45e679040", "253b1f1a-c87e-40bb-924c-2fd45e679040", client_id) +09:12:51.933 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:51.933 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.933 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.933 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.933 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.933 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.934 [XNIO-1 task-1] YGtgyQdeQ4C0ErfW5Ss3Qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1kdNl4DgROe62SUWAuohAA +09:12:51.941 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.940 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:51.941 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.941 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.941 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.941 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.941 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.941 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.941 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.941 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.943 [XNIO-1 task-2] i6HfLKeLTOyfOIn_h-Q9Mg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BRY81X0BSV-_hFTFn6JiRA +09:12:51.947 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:51.947 [XNIO-1 task-1] mwFA04QQSSikcAFTtT-_cg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:51.979 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:51.981 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:51.991 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.991 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.991 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:51.991 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1468927-7b77-48a7-ae04-723aa5cdde7b", "c1468927-7b77-48a7-ae04-723aa5cdde7b", client_id) +09:12:51.992 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:51.992 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:51.992 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:51.993 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:51.993 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:51.999 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:51.999 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.000 [XNIO-1 task-1] KqNOp3P7QFWdTopGCxq8Qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=We9ysDMQTpCyAxfDQGOHCg +09:12:52.006 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.006 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.006 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.006 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1468927-7b77-48a7-ae04-723aa5cdde7b", "c1468927-7b77-48a7-ae04-723aa5cdde7b", client_id) +09:12:52.006 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.006 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.007 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.007 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.007 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.017 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.017 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.018 [XNIO-1 task-1] E6RsTi2uTmG5LYPg9SZ5Fw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uDh6PvnVRluM7q7q0PfY5g +09:12:52.024 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.025 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.025 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1468927-7b77-48a7-ae04-723aa5cdde7b", "c1468927-7b77-48a7-ae04-723aa5cdde7b", client_id) +09:12:52.025 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.025 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1065ff7b-ee46-4334-9d80-6da0e1344c6e", "1065ff7b-ee46-4334-9d80-6da0e1344c6e", client_id) +09:12:52.025 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:52.025 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.025 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:52.025 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:52.032 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:52.032 [XNIO-1 task-1] 6k-VHy_7TdqTZwZZP4KLVw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.033 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.033 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:52.033 [XNIO-1 task-2] 8c9NKPUGR4Gdt3mQRvYO3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cSUPJQIJRJekF2NB1fAMmA +09:12:52.060 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.060 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.060 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.060 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.060 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.061 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.061 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.061 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.067 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f805369c +09:12:52.068 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:52.068 [XNIO-1 task-2] vjAk4EH_T8a7dTBwZT6MoQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.075 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1980bcc +09:12:52.075 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1980bcc +09:12:52.079 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG com.networknt.schema.TypeValidator debug - validate( "yzPHYJHyadDcDrlAI9vv7fVBZqaOcmJDguTSxzk3a6c", "yzPHYJHyadDcDrlAI9vv7fVBZqaOcmJDguTSxzk3a6c", code_challenge) +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:52.080 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:52.088 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:52.088 [XNIO-1 task-2] Q3h39bB4ThWp4bbM86Welg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG com.networknt.schema.TypeValidator debug - validate( "RgvOruLcxqLzR8igag7kaBjz5ss1_lSgSJ5xwoawT_8", "RgvOruLcxqLzR8igag7kaBjz5ss1_lSgSJ5xwoawT_8", code_challenge) +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:52.107 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:52.108 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:52.108 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:52.112 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.112 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.112 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.112 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.113 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.113 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.113 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.113 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.114 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.114 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.115 [XNIO-1 task-2] JjFSEJ0eQy62juiQchPuBA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aFeWDZakQFKRbgQ24pjFFA +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG com.networknt.schema.TypeValidator debug - validate( "mi7gNZToXGODZcwIirNzoKRilBdAXrlgTWOAmfIU7Es", "mi7gNZToXGODZcwIirNzoKRilBdAXrlgTWOAmfIU7Es", code_challenge) +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:52.118 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:52.119 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:52.119 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:52.119 [XNIO-1 task-1] 1MBoWrpwRFGfBZgecQJo8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:52.124 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.124 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.125 [XNIO-1 task-2] TOcYzW5dRT6CE4SmMVTaiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jdiOJBidRViAZuCYQMpH9A +09:12:52.134 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.134 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.134 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.134 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG com.networknt.schema.TypeValidator debug - validate( "e10da6c3-5adb-4e3b-b21d-392499b2df34", "e10da6c3-5adb-4e3b-b21d-392499b2df34", client_id) +09:12:52.134 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.135 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.135 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.135 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.135 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.140 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.141 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.142 [XNIO-1 task-2] _CDsInVZS-SfIs-7cZ3jpA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=I41VyLuDSWGmo04Eu1kbpw +09:12:52.149 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.149 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.149 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.149 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e10da6c3-5adb-4e3b-b21d-392499b2df34", "e10da6c3-5adb-4e3b-b21d-392499b2df34", client_id) +09:12:52.149 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.149 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.150 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.150 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.150 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.156 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.156 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.160 [XNIO-1 task-2] qPFYeMLPSiSqC_KdKUuovQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KhxXOzgVRdWS-XnxRKlp-A +09:12:52.164 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.164 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.164 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.164 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG com.networknt.schema.TypeValidator debug - validate( "e10da6c3-5adb-4e3b-b21d-392499b2df34", "e10da6c3-5adb-4e3b-b21d-392499b2df34", client_id) +09:12:52.164 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.165 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.165 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.165 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.165 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.170 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.170 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.170 [XNIO-1 task-2] HPEiBE7zTQC6yj2DiRpapg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=u9JCz3-EQ02QFizOTildfw +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ac95d305-c9e4-4ed9-b4bb-08c5270d798c", "ac95d305-c9e4-4ed9-b4bb-08c5270d798c", client_id) +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.185 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.186 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.191 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.191 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.192 [XNIO-1 task-2] fAgSTrukTS6mzcXB0VnX-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=A32XJSW0RSO8SpmI5rx9LA +09:12:52.206 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.206 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.206 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.207 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1065ff7b-ee46-4334-9d80-6da0e1344c6e", "1065ff7b-ee46-4334-9d80-6da0e1344c6e", client_id) +09:12:52.207 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.207 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.207 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.207 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.207 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.212 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.212 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.214 [XNIO-1 task-2] Rki4c4YwTHKaGy33gjj5xQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZsR3jV-iT9OlD0u0Q60iMw +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9fe925-617a-4d0a-8478-631c24c0727f", "eb9fe925-617a-4d0a-8478-631c24c0727f", client_id) +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.232 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.233 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.238 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.238 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.238 [XNIO-1 task-2] AISV2AX5Qqaf2lvB4ne5hA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bLuFcKXMSFCz4y1ipVVOMQ +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9fe925-617a-4d0a-8478-631c24c0727f", "eb9fe925-617a-4d0a-8478-631c24c0727f", client_id) +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:52.241 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:52.248 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:52.248 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:52.248 [XNIO-1 task-2] 0xWiiiUGQrmhylgRal52lA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rsPSEvcqQXGixD9gTlW0oA +09:12:54.428 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1980bcc +09:12:54.431 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.431 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.432 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.432 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.432 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.432 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.432 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.432 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.437 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:54.438 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:54.445 [XNIO-1 task-2] l801SCKUQnWVweTmrBelXQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nq0HgkrfTQm5jLDiWtRdhg +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.450 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.452 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c72eb105-a1aa-4988-8ef8-8273babc93a6 +09:12:54.453 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c72eb105-a1aa-4988-8ef8-8273babc93a6 +09:12:54.456 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.456 [XNIO-1 task-2] q9s4nhAeQK6mcZ9ErB87KQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.460 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.460 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:54.460 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.462 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG com.networknt.schema.TypeValidator debug - validate( "4aec5f1b-a462-46cc-bbd9-4b3802ffd061", "4aec5f1b-a462-46cc-bbd9-4b3802ffd061", client_id) +09:12:54.462 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:54.462 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.462 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:54.462 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:54.462 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:54.468 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.468 [XNIO-1 task-2] EAAHkDviS42LzdDqEQyghg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +Jun 29, 2024 9:12:54 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:12:54.471 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.471 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +09:12:54.472 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.472 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG com.networknt.schema.TypeValidator debug - validate( "2cf1c11f-266e-4732-91cc-9f40bc45e926", "2cf1c11f-266e-4732-91cc-9f40bc45e926", client_id) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:12:54.472 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.472 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:12:54.472 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.478 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1496b3bf-8ab8-4a37-9d43-47d57d14fbb4 + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +09:12:54.478 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + +09:12:54.479 [XNIO-1 task-2] G8LXFHT7SayFlSidPHpDHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2F1ha1WKS7aeoPWUPUZQQw +09:12:54.479 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1496b3bf-8ab8-4a37-9d43-47d57d14fbb4 +09:12:54.483 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.483 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.483 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.483 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.483 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.484 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.484 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.484 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG com.networknt.schema.TypeValidator debug - validate( "oZJtbeNxTyixAnboChPrBDxT95r3MvQ8J5Mz98l8YOU", "oZJtbeNxTyixAnboChPrBDxT95r3MvQ8J5Mz98l8YOU", code_challenge) +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:54.487 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:54.488 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:54.490 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.490 [XNIO-1 task-2] gHX5Dw4GRf6zXYlW6kypbQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.492 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:54.493 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:54.496 [XNIO-1 task-1] WeLrHBHKQoK_q8VWjoL26w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=I9YX5IvlTVWHT-byAbuO_Q +09:12:54.500 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.500 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.500 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.500 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9fe925-617a-4d0a-8478-631c24c0727f", "eb9fe925-617a-4d0a-8478-631c24c0727f", client_id) +09:12:54.500 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.500 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.501 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.501 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.501 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.507 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c1468927-7b77-48a7-ae04-723aa5cdde7b +09:12:54.509 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.509 [XNIO-1 task-1] n_Jyt4CwQqGcwZc35J906A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.510 [hz._hzInstance_1_dev.partition-operation.thread-4] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:54.519 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c1980bcc +09:12:54.537 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.537 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.537 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.537 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9fe925-617a-4d0a-8478-631c24c0727f", "eb9fe925-617a-4d0a-8478-631c24c0727f", client_id) +09:12:54.537 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.537 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.537 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.538 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.538 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.539 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG com.networknt.schema.TypeValidator debug - validate( "2cf1c11f-266e-4732-91cc-9f40bc45e926", "2cf1c11f-266e-4732-91cc-9f40bc45e926", client_id) +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:54.540 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:54.543 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.543 [XNIO-1 task-1] 0donUaGaSd-D6n1wTm8lBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.546 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:54.546 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:54.547 [XNIO-1 task-2] nNm50AyDS2iUbJZxUotGTA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hrun2A0MSIelnTBSbxVYEQ +09:12:54.547 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.547 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.547 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.548 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9fe925-617a-4d0a-8478-631c24c0727f", "eb9fe925-617a-4d0a-8478-631c24c0727f", client_id) +09:12:54.548 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.548 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.548 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.548 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.548 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.557 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:54.558 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:54.560 [XNIO-1 task-2] ZG4XQmzeREO23XkZLzkYnw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OukDmhx_SuKcMlg_7AwXnQ +09:12:54.571 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:58550a57 +09:12:54.577 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:683874a5 +09:12:54.579 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:683874a5 +09:12:54.625 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:11e61103-49a3-4b65-ad0c-38336c639789 +09:12:54.626 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.626 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:54.626 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.627 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "GX9RquHAHSv13iEgF4W0SCq_2ZtAhR63eP_AASC1ztE", "GX9RquHAHSv13iEgF4W0SCq_2ZtAhR63eP_AASC1ztE", code_challenge) +09:12:54.627 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:54.627 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:54.627 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.627 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:54.627 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:54.628 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:54.635 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.636 [XNIO-1 task-2] VckKwkchSz2hmgBg02h-Tg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.638 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:11e61103-49a3-4b65-ad0c-38336c639789 +09:12:54.638 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.638 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.639 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.639 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:54.639 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.639 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.639 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.639 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.639 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.648 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:54.648 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:54.653 [XNIO-1 task-2] GaTeqXpDT2ObLuyUgtLp9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DHSU4_UJQP-29GTD4CozDg +09:12:54.672 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "33609aa1-3dc9-4b53-959d-cab8b8990d20", "33609aa1-3dc9-4b53-959d-cab8b8990d20", client_id) +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.673 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.674 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.674 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:54.674 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.674 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG com.networknt.schema.TypeValidator debug - validate( "2cf1c11f-266e-4732-91cc-9f40bc45e926", "2cf1c11f-266e-4732-91cc-9f40bc45e926", client_id) +09:12:54.675 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:54.675 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.675 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:54.675 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2c807f19 +09:12:54.675 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:54.675 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:54.681 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.681 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.682 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.682 [XNIO-1 task-1] En4VIyuDQuueb84lm59wCw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.685 [XNIO-1 task-2] rzL7LIOnSIe9ZRlb3nnGFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nppJWDoVT7SmKVOjXql_zA +09:12:54.688 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.688 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.689 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.689 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.689 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.689 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.689 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.689 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.693 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6rJCmOJEwcAM61g2yB67JtChLmSLXJ_REExng5LWe1Q", "6rJCmOJEwcAM61g2yB67JtChLmSLXJ_REExng5LWe1Q", code_challenge) +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:54.694 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:54.699 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.699 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.700 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.700 [XNIO-1 task-1] GMmzbke2TZC-oCbsSWqWQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.703 [XNIO-1 task-2] QMPuOGGeTDyOLG6E2jS0NQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VvrlA53URPOlCcd-3pME5w +09:12:54.709 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.709 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.709 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.709 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.709 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.710 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.710 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.710 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.719 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4938745e-9e0b-43d0-8782-337cc52e093b +09:12:54.720 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +09:12:54.720 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +09:12:54.721 [XNIO-1 task-1] yuANmboCQi-SV9yAOP_xgg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uZVzXihXR_-tVUHOEZTEng +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@4633c5db for /oauth2/code +09:12:54.725 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +09:12:54.732 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.732 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG com.networknt.schema.TypeValidator debug - validate( "EXmvTIt-3JK0fJghJZtaHcBhNYoBYqHGX8dVnDJ3HG8", "EXmvTIt-3JK0fJghJZtaHcBhNYoBYqHGX8dVnDJ3HG8", code_challenge) +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +09:12:54.733 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +09:12:54.737 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.737 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.739 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5ba44ccb for /oauth2/code +09:12:54.739 [XNIO-1 task-2] tbGguwHnRCGU21ephDaKFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +09:12:54.743 [XNIO-1 task-1] ixKibUEGQcq7hXj_GS74MQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6Dk4ExulQP2MKg422rrTmw diff --git a/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..2cc1002 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-key-1.log @@ -0,0 +1,408 @@ +09:12:49.996 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c46de553 +09:12:50.033 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3e5a4238 +09:12:50.036 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:db24ed47-5944-4cf9-929b-70df1622f57a +09:12:50.083 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:99eab71b +09:12:50.130 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d2fdb5b8 +09:12:50.148 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e10da6c3-5adb-4e3b-b21d-392499b2df34 +09:12:50.148 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:761cd620-6d7b-4605-85f5-fc6759a593db +09:12:50.161 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d2fdb5b8 +09:12:50.169 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c46de553 +09:12:50.231 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c46de553 +09:12:50.245 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c46de553 +09:12:50.269 [hz._hzInstance_1_dev.partition-operation.thread-4] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +09:12:50.270 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e5b5ac88 +09:12:50.271 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e5b5ac88 +09:12:50.279 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:69e75a4e + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:12:50.290 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e5b5ac88 +09:12:50.290 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e5b5ac88 + ... 14 more + +09:12:50.373 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d2fdb5b8 +09:12:50.395 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3e5a4238 +09:12:50.409 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:849d856e-9736-441b-afc9-90cfdc216705 +09:12:50.435 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0643315d-7dc2-4696-896b-685209f0dd77 +09:12:50.473 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:baa5d161-0a4d-45b9-a2bd-d07127b585a0 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:12:50.496 [hz._hzInstance_1_dev.partition-operation.thread-4] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + ... 14 more + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:50.502 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:849d856e-9736-441b-afc9-90cfdc216705 +09:12:50.534 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:69e75a4e +09:12:50.542 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:99ddf03a-f61b-403b-9d0b-739f000285d8 +09:12:50.577 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:99ddf03a-f61b-403b-9d0b-739f000285d8 +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:12:50.619 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0643315d-7dc2-4696-896b-685209f0dd77 +09:12:50.653 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4352b0c3 +09:12:50.657 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.702 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.726 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c11cd3d7-f3be-4298-8df3-9935f539d160 +09:12:50.727 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c11cd3d7-f3be-4298-8df3-9935f539d160 +09:12:50.763 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e5b5ac88 +09:12:50.772 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3e5a4238 +09:12:50.783 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:abd19719-8064-46b3-9941-cf476fea7683 +09:12:50.807 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e5b5ac88 +09:12:50.843 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4352b0c3 +09:12:50.864 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3e5a4238 +09:12:50.994 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3e5a4238 +09:12:51.056 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4352b0c3 +09:12:51.088 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:246e24cc-d78b-4eff-85fa-4b7186394b0a +09:12:51.134 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9492dcc5-7080-4225-ade5-1ea667641ece +09:12:51.156 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d2fdb5b8 +09:12:51.199 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:69e75a4e +09:12:51.205 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c11cd3d7-f3be-4298-8df3-9935f539d160 +09:12:51.209 [hz._hzInstance_1_dev.partition-operation.thread-13] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +09:12:51.235 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:33609aa1-3dc9-4b53-959d-cab8b8990d20 +09:12:51.236 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:33609aa1-3dc9-4b53-959d-cab8b8990d20 +09:12:51.236 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:33609aa1-3dc9-4b53-959d-cab8b8990d20 + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:12:51.301 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc5ac6dd +09:12:51.303 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc5ac6dd +09:12:51.429 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9dc5b174 +09:12:51.553 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.555 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.578 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:53765a75-974a-4738-ae02-d1ed32146b01 +Jun 29, 2024 9:12:51 AM com.hazelcast.map.impl.operation.DeleteOperation +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:51.649 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e5b5ac88 +09:12:51.650 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e5b5ac88 + +09:12:51.660 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc5ac6dd +09:12:51.802 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4352b0c3 +09:12:51.846 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc5ac6dd +09:12:51.849 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4352b0c3 +09:12:51.900 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f3c668af-bb9c-467b-bb63-432a3b06c36a +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Jun 29, 2024 9:12:51 AM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:51.952 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0e8a8323-4793-4c97-92ed-772291d88bce +09:12:51.990 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f0ddc49d +09:12:51.991 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f0ddc49d +09:12:54.425 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:806a666f-04e5-4f7d-9c18-dc9ef022946d +09:12:54.438 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9dc5b174 +09:12:54.458 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c6a1f0b1 +09:12:54.459 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c6a1f0b1 +09:12:54.481 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:106b30cb +09:12:54.530 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c11cd3d7-f3be-4298-8df3-9935f539d160 +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:54.560 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1c42caa4 +09:12:54.561 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1c42caa4 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:12:54.615 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aa842e38-0599-4e96-adac-ca091886d4c2 +09:12:54.655 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:106b30cb +Jun 29, 2024 9:12:54 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:12:54.669 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1c42caa4 + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +09:12:54.672 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c11cd3d7-f3be-4298-8df3-9935f539d160 +09:12:54.676 [hz._hzInstance_1_dev.partition-operation.thread-13] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:54.689 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc5ac6dd +09:12:54.725 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +09:12:54.744 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d3c5dbb9-9a9a-461a-af85-f2103f04ef69 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +09:12:54.827 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:45078215-f398-43c8-b8ae-9756bc0d8906 +09:12:54.868 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:33609aa1-3dc9-4b53-959d-cab8b8990d20 +Jun 29, 2024 9:12:54 AM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:12:54.959 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:53cabf3f-c985-4ada-8c0a-6efe4c875893 +09:12:54.975 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:53cabf3f-c985-4ada-8c0a-6efe4c875893 diff --git a/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..e8bc6ed --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,2555 @@ +09:12:50.537 [XNIO-1 task-1] d_pWUX1sRi-ITMoGssnt8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.537 [XNIO-1 task-1] d_pWUX1sRi-ITMoGssnt8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.537 [XNIO-1 task-1] d_pWUX1sRi-ITMoGssnt8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.537 [XNIO-1 task-1] d_pWUX1sRi-ITMoGssnt8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.548 [XNIO-1 task-1] YK-e2YDXQ4iUISM1p5gVrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:50.548 [XNIO-1 task-1] YK-e2YDXQ4iUISM1p5gVrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.548 [XNIO-1 task-1] YK-e2YDXQ4iUISM1p5gVrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.548 [XNIO-1 task-1] YK-e2YDXQ4iUISM1p5gVrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:50.548 [XNIO-1 task-1] YK-e2YDXQ4iUISM1p5gVrw DEBUG com.networknt.schema.TypeValidator debug - validate( "7e5fd7df-cdba-4489-9707-075203a36ce5", "7e5fd7df-cdba-4489-9707-075203a36ce5", refreshToken) +09:12:50.551 [XNIO-1 task-1] F6yZZXddTf613nop9blURg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.551 [XNIO-1 task-1] F6yZZXddTf613nop9blURg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.551 [XNIO-1 task-1] F6yZZXddTf613nop9blURg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.551 [XNIO-1 task-1] F6yZZXddTf613nop9blURg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.551 [XNIO-1 task-1] F6yZZXddTf613nop9blURg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.574 [XNIO-1 task-1] tk673ROLRtilN-9u3QVjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.574 [XNIO-1 task-1] tk673ROLRtilN-9u3QVjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.574 [XNIO-1 task-1] tk673ROLRtilN-9u3QVjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.574 [XNIO-1 task-1] tk673ROLRtilN-9u3QVjkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.574 [XNIO-1 task-1] tk673ROLRtilN-9u3QVjkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.578 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d76c24d5 +09:12:50.580 [XNIO-1 task-1] 43MPm-OYQzej4ZZVgD6hrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.581 [XNIO-1 task-1] 43MPm-OYQzej4ZZVgD6hrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.581 [XNIO-1 task-1] 43MPm-OYQzej4ZZVgD6hrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.581 [XNIO-1 task-1] 43MPm-OYQzej4ZZVgD6hrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.581 [XNIO-1 task-1] 43MPm-OYQzej4ZZVgD6hrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.586 [XNIO-1 task-1] WyaHvme9S6uOgLOD7uTWTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.587 [XNIO-1 task-1] WyaHvme9S6uOgLOD7uTWTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.587 [XNIO-1 task-1] WyaHvme9S6uOgLOD7uTWTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.587 [XNIO-1 task-1] WyaHvme9S6uOgLOD7uTWTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.587 [XNIO-1 task-1] WyaHvme9S6uOgLOD7uTWTA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.622 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:65dd6f68 +09:12:50.622 [XNIO-1 task-1] ibYWqOBGTCCrI7babnM4MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0643315d-7dc2-4696-896b-685209f0dd77 +09:12:50.622 [XNIO-1 task-1] ibYWqOBGTCCrI7babnM4MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.622 [XNIO-1 task-1] ibYWqOBGTCCrI7babnM4MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.622 [XNIO-1 task-1] ibYWqOBGTCCrI7babnM4MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0643315d-7dc2-4696-896b-685209f0dd77 +09:12:50.623 [XNIO-1 task-1] ibYWqOBGTCCrI7babnM4MQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0643315d-7dc2-4696-896b-685209f0dd77 +09:12:50.628 [XNIO-1 task-1] APQYjowEQXeHdhlBYAmQSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.629 [XNIO-1 task-1] APQYjowEQXeHdhlBYAmQSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.629 [XNIO-1 task-1] APQYjowEQXeHdhlBYAmQSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.629 [XNIO-1 task-1] APQYjowEQXeHdhlBYAmQSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.629 [XNIO-1 task-1] APQYjowEQXeHdhlBYAmQSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.644 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:65dd6f68 +09:12:50.651 [XNIO-1 task-1] 5FoIOotiQ9WgLunDW9sLsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.651 [XNIO-1 task-1] 5FoIOotiQ9WgLunDW9sLsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.651 [XNIO-1 task-1] 5FoIOotiQ9WgLunDW9sLsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.651 [XNIO-1 task-1] 5FoIOotiQ9WgLunDW9sLsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.651 [XNIO-1 task-1] 5FoIOotiQ9WgLunDW9sLsg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.659 [XNIO-1 task-1] 27sBuPDwR4CbvRjU1WDksQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.659 [XNIO-1 task-1] 27sBuPDwR4CbvRjU1WDksQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.659 [XNIO-1 task-1] 27sBuPDwR4CbvRjU1WDksQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.659 [XNIO-1 task-1] 27sBuPDwR4CbvRjU1WDksQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.661 [XNIO-1 task-1] 27sBuPDwR4CbvRjU1WDksQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.667 [XNIO-1 task-1] FsCxDTHZQDOwVpIp-DKuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.668 [XNIO-1 task-1] FsCxDTHZQDOwVpIp-DKuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.668 [XNIO-1 task-1] FsCxDTHZQDOwVpIp-DKuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.668 [XNIO-1 task-1] FsCxDTHZQDOwVpIp-DKuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.668 [XNIO-1 task-1] FsCxDTHZQDOwVpIp-DKuLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.672 [XNIO-1 task-1] vSV9RIWsSW6-ZgtSfIUKOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.672 [XNIO-1 task-1] vSV9RIWsSW6-ZgtSfIUKOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.672 [XNIO-1 task-1] vSV9RIWsSW6-ZgtSfIUKOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.672 [XNIO-1 task-1] vSV9RIWsSW6-ZgtSfIUKOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.673 [XNIO-1 task-1] vSV9RIWsSW6-ZgtSfIUKOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.678 [XNIO-1 task-1] UDw9MUNXScalOnFf5QAK2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.678 [XNIO-1 task-1] UDw9MUNXScalOnFf5QAK2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.679 [XNIO-1 task-1] UDw9MUNXScalOnFf5QAK2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.679 [XNIO-1 task-1] UDw9MUNXScalOnFf5QAK2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.679 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0646a65d-7843-46e2-87cd-a786ae5c4349 +09:12:50.683 [XNIO-1 task-1] rAw-B-gOTWu4cwoeg5SXug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.683 [XNIO-1 task-1] rAw-B-gOTWu4cwoeg5SXug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.683 [XNIO-1 task-1] rAw-B-gOTWu4cwoeg5SXug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.683 [XNIO-1 task-1] rAw-B-gOTWu4cwoeg5SXug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.684 [XNIO-1 task-1] rAw-B-gOTWu4cwoeg5SXug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.686 [XNIO-1 task-1] eSdLLA-0T4WScLFjCfgCSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.686 [XNIO-1 task-1] eSdLLA-0T4WScLFjCfgCSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.686 [XNIO-1 task-1] eSdLLA-0T4WScLFjCfgCSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.686 [XNIO-1 task-1] eSdLLA-0T4WScLFjCfgCSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.686 [XNIO-1 task-1] eSdLLA-0T4WScLFjCfgCSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:50.686 [XNIO-1 task-1] eSdLLA-0T4WScLFjCfgCSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:50.688 [XNIO-1 task-1] 0aj4ygBoTyqW6_E2g5wE3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.688 [XNIO-1 task-1] 0aj4ygBoTyqW6_E2g5wE3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.689 [XNIO-1 task-1] 0aj4ygBoTyqW6_E2g5wE3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.689 [XNIO-1 task-1] 0aj4ygBoTyqW6_E2g5wE3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.698 [XNIO-1 task-1] XWQHtp17SHCJVMEmdHZbWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.698 [XNIO-1 task-1] XWQHtp17SHCJVMEmdHZbWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.698 [XNIO-1 task-1] XWQHtp17SHCJVMEmdHZbWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.698 [XNIO-1 task-1] XWQHtp17SHCJVMEmdHZbWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.698 [XNIO-1 task-1] XWQHtp17SHCJVMEmdHZbWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b77b294-605b-44c9-899b-9335aabc12dd", "1b77b294-605b-44c9-899b-9335aabc12dd", refreshToken) +09:12:50.713 [XNIO-1 task-1] _2W4pduXQuO_piJgFABY-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.713 [XNIO-1 task-1] _2W4pduXQuO_piJgFABY-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.713 [XNIO-1 task-1] _2W4pduXQuO_piJgFABY-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.713 [XNIO-1 task-1] _2W4pduXQuO_piJgFABY-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.714 [XNIO-1 task-1] _2W4pduXQuO_piJgFABY-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1b77b294-605b-44c9-899b-9335aabc12dd", "1b77b294-605b-44c9-899b-9335aabc12dd", refreshToken) +09:12:50.716 [XNIO-1 task-1] _2W4pduXQuO_piJgFABY-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b77b294-605b-44c9-899b-9335aabc12dd is not found.","severity":"ERROR"} +09:12:50.718 [XNIO-1 task-1] Cp_haSRIRze1WpypdRQecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.718 [XNIO-1 task-1] Cp_haSRIRze1WpypdRQecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.719 [XNIO-1 task-1] Cp_haSRIRze1WpypdRQecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.719 [XNIO-1 task-1] Cp_haSRIRze1WpypdRQecQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.727 [XNIO-1 task-1] dCmMhHPJRdKWxDjQc-wnkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.727 [XNIO-1 task-1] dCmMhHPJRdKWxDjQc-wnkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.728 [XNIO-1 task-1] dCmMhHPJRdKWxDjQc-wnkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.728 [XNIO-1 task-1] dCmMhHPJRdKWxDjQc-wnkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.728 [XNIO-1 task-1] dCmMhHPJRdKWxDjQc-wnkg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b77b294-605b-44c9-899b-9335aabc12dd", "1b77b294-605b-44c9-899b-9335aabc12dd", refreshToken) +09:12:50.728 [XNIO-1 task-1] dCmMhHPJRdKWxDjQc-wnkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b77b294-605b-44c9-899b-9335aabc12dd is not found.","severity":"ERROR"} +09:12:50.732 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7e0c5457 +09:12:50.739 [XNIO-1 task-1] GasaCeU7SJicMgsIr4EfzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.739 [XNIO-1 task-1] GasaCeU7SJicMgsIr4EfzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.739 [XNIO-1 task-1] GasaCeU7SJicMgsIr4EfzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.739 [XNIO-1 task-1] GasaCeU7SJicMgsIr4EfzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.747 [XNIO-1 task-1] ES61zQ9vTL2Jh-rYeeAasw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.747 [XNIO-1 task-1] ES61zQ9vTL2Jh-rYeeAasw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.747 [XNIO-1 task-1] ES61zQ9vTL2Jh-rYeeAasw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.747 [XNIO-1 task-1] ES61zQ9vTL2Jh-rYeeAasw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.748 [XNIO-1 task-1] ES61zQ9vTL2Jh-rYeeAasw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.755 [XNIO-1 task-1] BLPi0Q74RhuB2NuQFlkQjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.755 [XNIO-1 task-1] BLPi0Q74RhuB2NuQFlkQjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.755 [XNIO-1 task-1] BLPi0Q74RhuB2NuQFlkQjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.756 [XNIO-1 task-1] BLPi0Q74RhuB2NuQFlkQjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.756 [XNIO-1 task-1] BLPi0Q74RhuB2NuQFlkQjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.760 [XNIO-1 task-1] t0FcqtIwSXqbRB3CIafn2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.760 [XNIO-1 task-1] t0FcqtIwSXqbRB3CIafn2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.760 [XNIO-1 task-1] t0FcqtIwSXqbRB3CIafn2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.760 [XNIO-1 task-1] t0FcqtIwSXqbRB3CIafn2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.760 [XNIO-1 task-1] t0FcqtIwSXqbRB3CIafn2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1b77b294-605b-44c9-899b-9335aabc12dd", "1b77b294-605b-44c9-899b-9335aabc12dd", refreshToken) +09:12:50.760 [XNIO-1 task-1] t0FcqtIwSXqbRB3CIafn2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b77b294-605b-44c9-899b-9335aabc12dd is not found.","severity":"ERROR"} +09:12:50.763 [XNIO-1 task-1] oUOidi_kSIqdOz-1rQpSBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.763 [XNIO-1 task-1] oUOidi_kSIqdOz-1rQpSBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.763 [XNIO-1 task-1] oUOidi_kSIqdOz-1rQpSBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.763 [XNIO-1 task-1] oUOidi_kSIqdOz-1rQpSBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.763 [XNIO-1 task-1] oUOidi_kSIqdOz-1rQpSBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.766 [XNIO-1 task-1] UNgH2GKPRxe1JR8ab4gxPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.766 [XNIO-1 task-1] UNgH2GKPRxe1JR8ab4gxPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.766 [XNIO-1 task-1] UNgH2GKPRxe1JR8ab4gxPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.766 [XNIO-1 task-1] UNgH2GKPRxe1JR8ab4gxPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.766 [XNIO-1 task-1] UNgH2GKPRxe1JR8ab4gxPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1b77b294-605b-44c9-899b-9335aabc12dd", "1b77b294-605b-44c9-899b-9335aabc12dd", refreshToken) +09:12:50.766 [XNIO-1 task-1] UNgH2GKPRxe1JR8ab4gxPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b77b294-605b-44c9-899b-9335aabc12dd is not found.","severity":"ERROR"} +09:12:50.770 [XNIO-1 task-1] jtsnMBZoSeSfZyx3_cRHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.770 [XNIO-1 task-1] jtsnMBZoSeSfZyx3_cRHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.770 [XNIO-1 task-1] jtsnMBZoSeSfZyx3_cRHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.770 [XNIO-1 task-1] jtsnMBZoSeSfZyx3_cRHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.771 [XNIO-1 task-1] jtsnMBZoSeSfZyx3_cRHiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.773 [XNIO-1 task-1] A8q7Lbc9Sj2ejpVsVrsAfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.773 [XNIO-1 task-1] A8q7Lbc9Sj2ejpVsVrsAfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.773 [XNIO-1 task-1] A8q7Lbc9Sj2ejpVsVrsAfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.773 [XNIO-1 task-1] A8q7Lbc9Sj2ejpVsVrsAfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.773 [XNIO-1 task-1] A8q7Lbc9Sj2ejpVsVrsAfA DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:50.773 [XNIO-1 task-1] A8q7Lbc9Sj2ejpVsVrsAfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:50.776 [XNIO-1 task-1] i_tT0w50SB-zTJGGZqyBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.776 [XNIO-1 task-1] i_tT0w50SB-zTJGGZqyBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.776 [XNIO-1 task-1] i_tT0w50SB-zTJGGZqyBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.776 [XNIO-1 task-1] i_tT0w50SB-zTJGGZqyBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.776 [XNIO-1 task-1] i_tT0w50SB-zTJGGZqyBSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.782 [XNIO-1 task-1] SSJuyU-CTVCtqyi71XGfXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.782 [XNIO-1 task-1] SSJuyU-CTVCtqyi71XGfXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.782 [XNIO-1 task-1] SSJuyU-CTVCtqyi71XGfXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.782 [XNIO-1 task-1] SSJuyU-CTVCtqyi71XGfXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.782 [XNIO-1 task-1] SSJuyU-CTVCtqyi71XGfXg DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:50.782 [XNIO-1 task-1] SSJuyU-CTVCtqyi71XGfXg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:50.785 [XNIO-1 task-1] vNKrahIAQSCLI6Q3Cfu15A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.785 [XNIO-1 task-1] vNKrahIAQSCLI6Q3Cfu15A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.785 [XNIO-1 task-1] vNKrahIAQSCLI6Q3Cfu15A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.785 [XNIO-1 task-1] vNKrahIAQSCLI6Q3Cfu15A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.793 [XNIO-1 task-1] zdxPSQI6RHOAZjhalLp9ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.793 [XNIO-1 task-1] zdxPSQI6RHOAZjhalLp9ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.793 [XNIO-1 task-1] zdxPSQI6RHOAZjhalLp9ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.793 [XNIO-1 task-1] zdxPSQI6RHOAZjhalLp9ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b77b294-605b-44c9-899b-9335aabc12dd, base path is set to: null +09:12:50.793 [XNIO-1 task-1] zdxPSQI6RHOAZjhalLp9ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1b77b294-605b-44c9-899b-9335aabc12dd", "1b77b294-605b-44c9-899b-9335aabc12dd", refreshToken) +09:12:50.793 [XNIO-1 task-1] zdxPSQI6RHOAZjhalLp9ww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1b77b294-605b-44c9-899b-9335aabc12dd +09:12:50.797 [XNIO-1 task-1] 0fbsApbFTCm6VYwECQXYug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.797 [XNIO-1 task-1] 0fbsApbFTCm6VYwECQXYug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.797 [XNIO-1 task-1] 0fbsApbFTCm6VYwECQXYug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.797 [XNIO-1 task-1] 0fbsApbFTCm6VYwECQXYug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.797 [XNIO-1 task-1] 0fbsApbFTCm6VYwECQXYug DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:50.798 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:51c93784 +09:12:50.799 [XNIO-1 task-1] MY-cPf-KTPaJ4u_CsIa_5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:50.799 [XNIO-1 task-1] MY-cPf-KTPaJ4u_CsIa_5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.799 [XNIO-1 task-1] MY-cPf-KTPaJ4u_CsIa_5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.799 [XNIO-1 task-1] MY-cPf-KTPaJ4u_CsIa_5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:50.799 [XNIO-1 task-1] MY-cPf-KTPaJ4u_CsIa_5w DEBUG com.networknt.schema.TypeValidator debug - validate( "7e5fd7df-cdba-4489-9707-075203a36ce5", "7e5fd7df-cdba-4489-9707-075203a36ce5", refreshToken) +09:12:50.800 [XNIO-1 task-1] MY-cPf-KTPaJ4u_CsIa_5w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7e5fd7df-cdba-4489-9707-075203a36ce5 is not found.","severity":"ERROR"} +09:12:50.803 [XNIO-1 task-1] aVKFOA-GRLSRK_Po7y_aMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.803 [XNIO-1 task-1] aVKFOA-GRLSRK_Po7y_aMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.803 [XNIO-1 task-1] aVKFOA-GRLSRK_Po7y_aMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.803 [XNIO-1 task-1] aVKFOA-GRLSRK_Po7y_aMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.809 [XNIO-1 task-1] kuN9ng0XSJuGyQI0FEGVAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:50.809 [XNIO-1 task-1] kuN9ng0XSJuGyQI0FEGVAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.809 [XNIO-1 task-1] kuN9ng0XSJuGyQI0FEGVAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.809 [XNIO-1 task-1] kuN9ng0XSJuGyQI0FEGVAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:50.809 [XNIO-1 task-1] kuN9ng0XSJuGyQI0FEGVAA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e5fd7df-cdba-4489-9707-075203a36ce5", "7e5fd7df-cdba-4489-9707-075203a36ce5", refreshToken) +09:12:50.809 [XNIO-1 task-1] kuN9ng0XSJuGyQI0FEGVAA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7e5fd7df-cdba-4489-9707-075203a36ce5 is not found.","severity":"ERROR"} +09:12:50.813 [XNIO-1 task-1] Q1sA9gtZSPmiJ53YxOPSgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.813 [XNIO-1 task-1] Q1sA9gtZSPmiJ53YxOPSgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.813 [XNIO-1 task-1] Q1sA9gtZSPmiJ53YxOPSgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.813 [XNIO-1 task-1] Q1sA9gtZSPmiJ53YxOPSgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.813 [XNIO-1 task-1] Q1sA9gtZSPmiJ53YxOPSgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.822 [XNIO-1 task-1] KfaczH3tQjW5Yhps2roszA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.823 [XNIO-1 task-1] KfaczH3tQjW5Yhps2roszA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.823 [XNIO-1 task-1] KfaczH3tQjW5Yhps2roszA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.823 [XNIO-1 task-1] KfaczH3tQjW5Yhps2roszA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.823 [XNIO-1 task-1] KfaczH3tQjW5Yhps2roszA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.832 [XNIO-1 task-1] hXjKiRQ9RueKNWdIAPzQAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.832 [XNIO-1 task-1] hXjKiRQ9RueKNWdIAPzQAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.833 [XNIO-1 task-1] hXjKiRQ9RueKNWdIAPzQAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.833 [XNIO-1 task-1] hXjKiRQ9RueKNWdIAPzQAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.833 [XNIO-1 task-1] hXjKiRQ9RueKNWdIAPzQAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.839 [XNIO-1 task-1] pKY_Ap1bT9ehpj8nDwQoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.839 [XNIO-1 task-1] pKY_Ap1bT9ehpj8nDwQoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.839 [XNIO-1 task-1] pKY_Ap1bT9ehpj8nDwQoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.839 [XNIO-1 task-1] pKY_Ap1bT9ehpj8nDwQoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.839 [XNIO-1 task-1] pKY_Ap1bT9ehpj8nDwQoGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.854 [XNIO-1 task-1] _m2u5anTRRS4xt3Xy3SwRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.854 [XNIO-1 task-1] _m2u5anTRRS4xt3Xy3SwRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.854 [XNIO-1 task-1] _m2u5anTRRS4xt3Xy3SwRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.854 [XNIO-1 task-1] _m2u5anTRRS4xt3Xy3SwRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.854 [XNIO-1 task-1] _m2u5anTRRS4xt3Xy3SwRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.859 [XNIO-1 task-1] x4d12F0rQvS2E9TotVhuwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.859 [XNIO-1 task-1] x4d12F0rQvS2E9TotVhuwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.859 [XNIO-1 task-1] x4d12F0rQvS2E9TotVhuwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.859 [XNIO-1 task-1] x4d12F0rQvS2E9TotVhuwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.860 [XNIO-1 task-1] x4d12F0rQvS2E9TotVhuwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:50.861 [XNIO-1 task-1] x4d12F0rQvS2E9TotVhuwQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:50.864 [XNIO-1 task-1] kVP3GHmQQDaeBW6Fsdyn5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.864 [XNIO-1 task-1] kVP3GHmQQDaeBW6Fsdyn5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.864 [XNIO-1 task-1] kVP3GHmQQDaeBW6Fsdyn5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.864 [XNIO-1 task-1] kVP3GHmQQDaeBW6Fsdyn5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.864 [XNIO-1 task-1] kVP3GHmQQDaeBW6Fsdyn5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.868 [XNIO-1 task-1] IOMikXRrStONE0Ep75FIag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.868 [XNIO-1 task-1] IOMikXRrStONE0Ep75FIag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.868 [XNIO-1 task-1] IOMikXRrStONE0Ep75FIag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.868 [XNIO-1 task-1] IOMikXRrStONE0Ep75FIag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.869 [XNIO-1 task-1] IOMikXRrStONE0Ep75FIag DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:50.869 [XNIO-1 task-1] IOMikXRrStONE0Ep75FIag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:50.872 [XNIO-1 task-1] eB28FppzTAm8yu4wrPNPyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.872 [XNIO-1 task-1] eB28FppzTAm8yu4wrPNPyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.872 [XNIO-1 task-1] eB28FppzTAm8yu4wrPNPyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.872 [XNIO-1 task-1] eB28FppzTAm8yu4wrPNPyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.872 [XNIO-1 task-1] eB28FppzTAm8yu4wrPNPyg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.879 [XNIO-1 task-1] 5PnPXwSbQpKM43bL70Rxyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.879 [XNIO-1 task-1] 5PnPXwSbQpKM43bL70Rxyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.879 [XNIO-1 task-1] 5PnPXwSbQpKM43bL70Rxyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.879 [XNIO-1 task-1] 5PnPXwSbQpKM43bL70Rxyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.879 [XNIO-1 task-1] 5PnPXwSbQpKM43bL70Rxyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.879 [XNIO-1 task-1] 5PnPXwSbQpKM43bL70Rxyw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.879 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:652d0b05 +09:12:50.882 [XNIO-1 task-1] oBrZj6cCS4WjH3SrNAaP7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.882 [XNIO-1 task-1] oBrZj6cCS4WjH3SrNAaP7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.882 [XNIO-1 task-1] oBrZj6cCS4WjH3SrNAaP7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.882 [XNIO-1 task-1] oBrZj6cCS4WjH3SrNAaP7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.882 [XNIO-1 task-1] oBrZj6cCS4WjH3SrNAaP7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:50.885 [XNIO-1 task-1] IuIV6M4VTsuUW1SEc-qmJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.885 [XNIO-1 task-1] IuIV6M4VTsuUW1SEc-qmJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.885 [XNIO-1 task-1] IuIV6M4VTsuUW1SEc-qmJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.885 [XNIO-1 task-1] IuIV6M4VTsuUW1SEc-qmJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.885 [XNIO-1 task-1] IuIV6M4VTsuUW1SEc-qmJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:50.894 [XNIO-1 task-1] _tWDCcV1Suy0KihadTqGSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.894 [XNIO-1 task-1] _tWDCcV1Suy0KihadTqGSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.894 [XNIO-1 task-1] _tWDCcV1Suy0KihadTqGSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.894 [XNIO-1 task-1] _tWDCcV1Suy0KihadTqGSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.894 [XNIO-1 task-1] _tWDCcV1Suy0KihadTqGSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:50.896 [XNIO-1 task-1] _tWDCcV1Suy0KihadTqGSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:50.898 [XNIO-1 task-1] Wp3uWxMjS8arzN1ZFYDMNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.898 [XNIO-1 task-1] Wp3uWxMjS8arzN1ZFYDMNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.898 [XNIO-1 task-1] Wp3uWxMjS8arzN1ZFYDMNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.898 [XNIO-1 task-1] Wp3uWxMjS8arzN1ZFYDMNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.898 [XNIO-1 task-1] Wp3uWxMjS8arzN1ZFYDMNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:50.907 [XNIO-1 task-1] mT0LVuZbR1O1XUJXPWnAXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.907 [XNIO-1 task-1] mT0LVuZbR1O1XUJXPWnAXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.907 [XNIO-1 task-1] mT0LVuZbR1O1XUJXPWnAXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.907 [XNIO-1 task-1] mT0LVuZbR1O1XUJXPWnAXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.907 [XNIO-1 task-1] mT0LVuZbR1O1XUJXPWnAXw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.911 [XNIO-1 task-1] ZPyys9-3Q7Ccujo3iuDv-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.911 [XNIO-1 task-1] ZPyys9-3Q7Ccujo3iuDv-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.911 [XNIO-1 task-1] ZPyys9-3Q7Ccujo3iuDv-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.911 [XNIO-1 task-1] ZPyys9-3Q7Ccujo3iuDv-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.911 [XNIO-1 task-1] ZPyys9-3Q7Ccujo3iuDv-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:50.912 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:17e0d1ee +09:12:50.913 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:17e0d1ee +09:12:50.917 [XNIO-1 task-1] DuVpx9cuTWiQ8TuzToh6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.917 [XNIO-1 task-1] DuVpx9cuTWiQ8TuzToh6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.917 [XNIO-1 task-1] DuVpx9cuTWiQ8TuzToh6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.917 [XNIO-1 task-1] DuVpx9cuTWiQ8TuzToh6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.917 [XNIO-1 task-1] DuVpx9cuTWiQ8TuzToh6Ig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:50.921 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c79db767 +09:12:50.922 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c79db767 +09:12:50.924 [XNIO-1 task-1] 2Rfr6IEMS9KmpBmp4a252Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.924 [XNIO-1 task-1] 2Rfr6IEMS9KmpBmp4a252Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.924 [XNIO-1 task-1] 2Rfr6IEMS9KmpBmp4a252Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.924 [XNIO-1 task-1] 2Rfr6IEMS9KmpBmp4a252Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:50.924 [XNIO-1 task-1] 2Rfr6IEMS9KmpBmp4a252Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:50.928 [XNIO-1 task-1] cdXL7dteS4K-1l-8R9bq4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.928 [XNIO-1 task-1] cdXL7dteS4K-1l-8R9bq4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.928 [XNIO-1 task-1] cdXL7dteS4K-1l-8R9bq4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.928 [XNIO-1 task-1] cdXL7dteS4K-1l-8R9bq4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.928 [XNIO-1 task-1] cdXL7dteS4K-1l-8R9bq4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:50.928 [XNIO-1 task-1] cdXL7dteS4K-1l-8R9bq4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:50.933 [XNIO-1 task-1] nu2eO-HtR32ZoVTiFtfwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.934 [XNIO-1 task-1] nu2eO-HtR32ZoVTiFtfwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.934 [XNIO-1 task-1] nu2eO-HtR32ZoVTiFtfwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.934 [XNIO-1 task-1] nu2eO-HtR32ZoVTiFtfwHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.937 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5be46b8a +09:12:50.940 [XNIO-1 task-1] eoOjM9eURQu6A23OAfPRXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.940 [XNIO-1 task-1] eoOjM9eURQu6A23OAfPRXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.940 [XNIO-1 task-1] eoOjM9eURQu6A23OAfPRXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.940 [XNIO-1 task-1] eoOjM9eURQu6A23OAfPRXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:50.941 [XNIO-1 task-1] eoOjM9eURQu6A23OAfPRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:50.941 [XNIO-1 task-1] eoOjM9eURQu6A23OAfPRXg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:50.941 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c79db767 +09:12:50.944 [XNIO-1 task-1] ttZ73dj4TQW-qNUNZvHatw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.944 [XNIO-1 task-1] ttZ73dj4TQW-qNUNZvHatw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.944 [XNIO-1 task-1] ttZ73dj4TQW-qNUNZvHatw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.944 [XNIO-1 task-1] ttZ73dj4TQW-qNUNZvHatw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.951 [XNIO-1 task-1] SR4F33xzRXyE8pIRdMAKyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.951 [XNIO-1 task-1] SR4F33xzRXyE8pIRdMAKyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.951 [XNIO-1 task-1] SR4F33xzRXyE8pIRdMAKyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.951 [XNIO-1 task-1] SR4F33xzRXyE8pIRdMAKyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:50.951 [XNIO-1 task-1] SR4F33xzRXyE8pIRdMAKyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:50.951 [XNIO-1 task-1] SR4F33xzRXyE8pIRdMAKyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:50.953 [XNIO-1 task-1] ANr1sxOmR2KUNX0gCqxVDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.953 [XNIO-1 task-1] ANr1sxOmR2KUNX0gCqxVDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.954 [XNIO-1 task-1] ANr1sxOmR2KUNX0gCqxVDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.954 [XNIO-1 task-1] ANr1sxOmR2KUNX0gCqxVDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.954 [XNIO-1 task-1] ANr1sxOmR2KUNX0gCqxVDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:50.956 [XNIO-1 task-1] tceVCV4HTKiLuNf4fgMMAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.956 [XNIO-1 task-1] tceVCV4HTKiLuNf4fgMMAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.956 [XNIO-1 task-1] tceVCV4HTKiLuNf4fgMMAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.956 [XNIO-1 task-1] tceVCV4HTKiLuNf4fgMMAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:50.956 [XNIO-1 task-1] tceVCV4HTKiLuNf4fgMMAA DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:50.956 [XNIO-1 task-1] tceVCV4HTKiLuNf4fgMMAA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:50.958 [XNIO-1 task-1] 73dLLzSHRfWBf9PamuEIvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.958 [XNIO-1 task-1] 73dLLzSHRfWBf9PamuEIvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.958 [XNIO-1 task-1] 73dLLzSHRfWBf9PamuEIvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.958 [XNIO-1 task-1] 73dLLzSHRfWBf9PamuEIvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.958 [XNIO-1 task-1] 73dLLzSHRfWBf9PamuEIvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.960 [XNIO-1 task-1] zlJS04rbRri63rJQcigxJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/74482ec0-b716-4ff0-8689-4dc6a8db8df9, base path is set to: null +09:12:50.960 [XNIO-1 task-1] zlJS04rbRri63rJQcigxJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.960 [XNIO-1 task-1] zlJS04rbRri63rJQcigxJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:50.960 [XNIO-1 task-1] zlJS04rbRri63rJQcigxJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/74482ec0-b716-4ff0-8689-4dc6a8db8df9, base path is set to: null +09:12:50.960 [XNIO-1 task-1] zlJS04rbRri63rJQcigxJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "74482ec0-b716-4ff0-8689-4dc6a8db8df9", "74482ec0-b716-4ff0-8689-4dc6a8db8df9", refreshToken) +09:12:50.966 [XNIO-1 task-1] zlJS04rbRri63rJQcigxJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 74482ec0-b716-4ff0-8689-4dc6a8db8df9 is not found.","severity":"ERROR"} +09:12:50.972 [XNIO-1 task-1] T1bLefL-QzipoDNENjXZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.973 [XNIO-1 task-1] T1bLefL-QzipoDNENjXZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.973 [XNIO-1 task-1] T1bLefL-QzipoDNENjXZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.973 [XNIO-1 task-1] T1bLefL-QzipoDNENjXZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.973 [XNIO-1 task-1] T1bLefL-QzipoDNENjXZww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.978 [XNIO-1 task-1] ZDG2qaZ1QhOuAnh709RJ-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.978 [XNIO-1 task-1] ZDG2qaZ1QhOuAnh709RJ-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.978 [XNIO-1 task-1] ZDG2qaZ1QhOuAnh709RJ-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.978 [XNIO-1 task-1] ZDG2qaZ1QhOuAnh709RJ-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.978 [XNIO-1 task-1] ZDG2qaZ1QhOuAnh709RJ-w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.983 [XNIO-1 task-1] lnX9cKWPSIOy3D3_BG3VEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.983 [XNIO-1 task-1] lnX9cKWPSIOy3D3_BG3VEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.984 [XNIO-1 task-1] lnX9cKWPSIOy3D3_BG3VEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.984 [XNIO-1 task-1] lnX9cKWPSIOy3D3_BG3VEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.984 [XNIO-1 task-1] lnX9cKWPSIOy3D3_BG3VEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.988 [XNIO-1 task-1] Wtvon7jYQuq3XPA4wSIjFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.988 [XNIO-1 task-1] Wtvon7jYQuq3XPA4wSIjFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:50.988 [XNIO-1 task-1] Wtvon7jYQuq3XPA4wSIjFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:50.988 [XNIO-1 task-1] Wtvon7jYQuq3XPA4wSIjFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.988 [XNIO-1 task-1] Wtvon7jYQuq3XPA4wSIjFA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:50.995 [XNIO-1 task-1] qxmy5ovzQfSgvV7TE9r4TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.995 [XNIO-1 task-1] qxmy5ovzQfSgvV7TE9r4TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:50.995 [XNIO-1 task-1] qxmy5ovzQfSgvV7TE9r4TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:50.995 [XNIO-1 task-1] qxmy5ovzQfSgvV7TE9r4TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.995 [XNIO-1 task-1] qxmy5ovzQfSgvV7TE9r4TQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:51.000 [XNIO-1 task-1] 4aNbDyYbREG81aJXFJg91A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.000 [XNIO-1 task-1] 4aNbDyYbREG81aJXFJg91A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.000 [XNIO-1 task-1] 4aNbDyYbREG81aJXFJg91A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.001 [XNIO-1 task-1] 4aNbDyYbREG81aJXFJg91A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.001 [XNIO-1 task-1] 4aNbDyYbREG81aJXFJg91A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.006 [XNIO-1 task-1] 0q7VEaiQTbSObdrzc3lSPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.007 [XNIO-1 task-1] 0q7VEaiQTbSObdrzc3lSPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.007 [XNIO-1 task-1] 0q7VEaiQTbSObdrzc3lSPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.007 [XNIO-1 task-1] 0q7VEaiQTbSObdrzc3lSPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.007 [XNIO-1 task-1] 0q7VEaiQTbSObdrzc3lSPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.013 [XNIO-1 task-1] wcVVwXA9Temm1D0qoTpFYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:51.013 [XNIO-1 task-1] wcVVwXA9Temm1D0qoTpFYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.013 [XNIO-1 task-1] wcVVwXA9Temm1D0qoTpFYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.013 [XNIO-1 task-1] wcVVwXA9Temm1D0qoTpFYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:51.013 [XNIO-1 task-1] wcVVwXA9Temm1D0qoTpFYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7e5fd7df-cdba-4489-9707-075203a36ce5", "7e5fd7df-cdba-4489-9707-075203a36ce5", refreshToken) +09:12:51.013 [XNIO-1 task-1] wcVVwXA9Temm1D0qoTpFYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7e5fd7df-cdba-4489-9707-075203a36ce5 is not found.","severity":"ERROR"} +09:12:51.017 [XNIO-1 task-1] NoPhu-cfT9yVifJRJZ4f3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.018 [XNIO-1 task-1] NoPhu-cfT9yVifJRJZ4f3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.018 [XNIO-1 task-1] NoPhu-cfT9yVifJRJZ4f3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.018 [XNIO-1 task-1] NoPhu-cfT9yVifJRJZ4f3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.018 [XNIO-1 task-1] NoPhu-cfT9yVifJRJZ4f3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.021 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2849cc28 +09:12:51.021 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2849cc28 +09:12:51.022 [XNIO-1 task-1] uSQjuhfKQg2bATX4afqwRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.022 [XNIO-1 task-1] uSQjuhfKQg2bATX4afqwRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.022 [XNIO-1 task-1] uSQjuhfKQg2bATX4afqwRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.022 [XNIO-1 task-1] uSQjuhfKQg2bATX4afqwRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.023 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5be46b8a +09:12:51.028 [XNIO-1 task-1] MddxU0BqRe-wmSMQl45dVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.028 [XNIO-1 task-1] MddxU0BqRe-wmSMQl45dVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.028 [XNIO-1 task-1] MddxU0BqRe-wmSMQl45dVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.028 [XNIO-1 task-1] MddxU0BqRe-wmSMQl45dVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.028 [XNIO-1 task-1] MddxU0BqRe-wmSMQl45dVw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.033 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:08b100b4-736f-4633-9ed5-b8a47c6b4550 +09:12:51.035 [XNIO-1 task-1] WSM3OUntT8SS5nQhfXG-Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:51.035 [XNIO-1 task-1] WSM3OUntT8SS5nQhfXG-Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.035 [XNIO-1 task-1] WSM3OUntT8SS5nQhfXG-Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.035 [XNIO-1 task-1] WSM3OUntT8SS5nQhfXG-Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5, base path is set to: null +09:12:51.035 [XNIO-1 task-1] WSM3OUntT8SS5nQhfXG-Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "7e5fd7df-cdba-4489-9707-075203a36ce5", "7e5fd7df-cdba-4489-9707-075203a36ce5", refreshToken) +09:12:51.035 [XNIO-1 task-1] WSM3OUntT8SS5nQhfXG-Hg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7e5fd7df-cdba-4489-9707-075203a36ce5 is not found.","severity":"ERROR"} +09:12:51.038 [XNIO-1 task-1] VugBcncJSUiywUVmLew92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.038 [XNIO-1 task-1] VugBcncJSUiywUVmLew92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.038 [XNIO-1 task-1] VugBcncJSUiywUVmLew92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.038 [XNIO-1 task-1] VugBcncJSUiywUVmLew92A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.038 [XNIO-1 task-1] VugBcncJSUiywUVmLew92A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:51.040 [XNIO-1 task-1] M74czTuDSmKir_9LfvC0tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.040 [XNIO-1 task-1] M74czTuDSmKir_9LfvC0tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.040 [XNIO-1 task-1] M74czTuDSmKir_9LfvC0tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.041 [XNIO-1 task-1] M74czTuDSmKir_9LfvC0tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.041 [XNIO-1 task-1] M74czTuDSmKir_9LfvC0tg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:51.041 [XNIO-1 task-1] M74czTuDSmKir_9LfvC0tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:51.043 [XNIO-1 task-1] LjeB-qK2SbCIAZlnbQZPgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.043 [XNIO-1 task-1] LjeB-qK2SbCIAZlnbQZPgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.043 [XNIO-1 task-1] LjeB-qK2SbCIAZlnbQZPgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.043 [XNIO-1 task-1] LjeB-qK2SbCIAZlnbQZPgQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.049 [XNIO-1 task-1] XhwmcfYmQn-_Dzk_mdNcng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.050 [XNIO-1 task-1] XhwmcfYmQn-_Dzk_mdNcng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.050 [XNIO-1 task-1] XhwmcfYmQn-_Dzk_mdNcng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.050 [XNIO-1 task-1] XhwmcfYmQn-_Dzk_mdNcng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.050 [XNIO-1 task-1] XhwmcfYmQn-_Dzk_mdNcng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.050 [XNIO-1 task-1] XhwmcfYmQn-_Dzk_mdNcng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:51.053 [XNIO-1 task-1] eSI4xkSdT6qlJ_q6ZWTJ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.053 [XNIO-1 task-1] eSI4xkSdT6qlJ_q6ZWTJ5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.053 [XNIO-1 task-1] eSI4xkSdT6qlJ_q6ZWTJ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.053 [XNIO-1 task-1] eSI4xkSdT6qlJ_q6ZWTJ5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.053 [XNIO-1 task-1] eSI4xkSdT6qlJ_q6ZWTJ5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.056 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d1df2362 +09:12:51.056 [XNIO-1 task-1] wV5LB30_RumXc-9P_drNig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.056 [XNIO-1 task-1] wV5LB30_RumXc-9P_drNig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.057 [XNIO-1 task-1] wV5LB30_RumXc-9P_drNig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.057 [XNIO-1 task-1] wV5LB30_RumXc-9P_drNig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.057 [XNIO-1 task-1] wV5LB30_RumXc-9P_drNig DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:51.057 [XNIO-1 task-1] wV5LB30_RumXc-9P_drNig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:51.060 [XNIO-1 task-1] BPSojZrUTwe7F5o2ZACaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.060 [XNIO-1 task-1] BPSojZrUTwe7F5o2ZACaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.060 [XNIO-1 task-1] BPSojZrUTwe7F5o2ZACaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.060 [XNIO-1 task-1] BPSojZrUTwe7F5o2ZACaRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.063 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe816d90-cd03-49e1-82d1-d05e44ca3a54 +09:12:51.064 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b2787831 +09:12:51.064 [XNIO-1 task-1] YKj8MzKQRuqIiNw9Rgh8Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.064 [XNIO-1 task-1] YKj8MzKQRuqIiNw9Rgh8Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.064 [XNIO-1 task-1] YKj8MzKQRuqIiNw9Rgh8Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.065 [XNIO-1 task-1] YKj8MzKQRuqIiNw9Rgh8Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.065 [XNIO-1 task-1] YKj8MzKQRuqIiNw9Rgh8Iw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.070 [XNIO-1 task-1] DbCJi_TcQ8S-u2XjbgElfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.070 [XNIO-1 task-1] DbCJi_TcQ8S-u2XjbgElfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.070 [XNIO-1 task-1] DbCJi_TcQ8S-u2XjbgElfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.070 [XNIO-1 task-1] DbCJi_TcQ8S-u2XjbgElfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.070 [XNIO-1 task-1] DbCJi_TcQ8S-u2XjbgElfA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:51.076 [XNIO-1 task-1] _AkCUHckSg6ITBLVOqgLoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.076 [XNIO-1 task-1] _AkCUHckSg6ITBLVOqgLoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.076 [XNIO-1 task-1] _AkCUHckSg6ITBLVOqgLoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.076 [XNIO-1 task-1] _AkCUHckSg6ITBLVOqgLoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.076 [XNIO-1 task-1] _AkCUHckSg6ITBLVOqgLoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:51.076 [XNIO-1 task-1] _AkCUHckSg6ITBLVOqgLoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:51.081 [XNIO-1 task-1] -6-MTMBzQlCHJU-jb2zFrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.081 [XNIO-1 task-1] -6-MTMBzQlCHJU-jb2zFrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.081 [XNIO-1 task-1] -6-MTMBzQlCHJU-jb2zFrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.081 [XNIO-1 task-1] -6-MTMBzQlCHJU-jb2zFrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f +09:12:51.081 [XNIO-1 task-1] -6-MTMBzQlCHJU-jb2zFrQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1b8684e5-551f-4992-b769-f505c715331f +09:12:51.086 [XNIO-1 task-1] nU_7GoKVR1GlrlrVi5wZ8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.086 [XNIO-1 task-1] nU_7GoKVR1GlrlrVi5wZ8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.086 [XNIO-1 task-1] nU_7GoKVR1GlrlrVi5wZ8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.087 [XNIO-1 task-1] nU_7GoKVR1GlrlrVi5wZ8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.087 [XNIO-1 task-1] nU_7GoKVR1GlrlrVi5wZ8w DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:51.087 [XNIO-1 task-1] nU_7GoKVR1GlrlrVi5wZ8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:51.089 [XNIO-1 task-1] msLZqm0BSLCUIrYsq4eCCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.090 [XNIO-1 task-1] msLZqm0BSLCUIrYsq4eCCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.090 [XNIO-1 task-1] msLZqm0BSLCUIrYsq4eCCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.090 [XNIO-1 task-1] msLZqm0BSLCUIrYsq4eCCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.091 [XNIO-1 task-1] msLZqm0BSLCUIrYsq4eCCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.092 [XNIO-1 task-1] Bnom29gkRXG6d-6-j1GO5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.093 [XNIO-1 task-1] Bnom29gkRXG6d-6-j1GO5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.093 [XNIO-1 task-1] Bnom29gkRXG6d-6-j1GO5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.093 [XNIO-1 task-1] Bnom29gkRXG6d-6-j1GO5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b8684e5-551f-4992-b769-f505c715331f, base path is set to: null +09:12:51.093 [XNIO-1 task-1] Bnom29gkRXG6d-6-j1GO5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1b8684e5-551f-4992-b769-f505c715331f", "1b8684e5-551f-4992-b769-f505c715331f", refreshToken) +09:12:51.093 [XNIO-1 task-1] Bnom29gkRXG6d-6-j1GO5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1b8684e5-551f-4992-b769-f505c715331f is not found.","severity":"ERROR"} +09:12:51.095 [XNIO-1 task-1] Iahn-yekQeiAog3l0sFflw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.095 [XNIO-1 task-1] Iahn-yekQeiAog3l0sFflw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.095 [XNIO-1 task-1] Iahn-yekQeiAog3l0sFflw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.095 [XNIO-1 task-1] Iahn-yekQeiAog3l0sFflw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.100 [XNIO-1 task-1] 7anNqUR7RDOCfjQoT1mL5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.100 [XNIO-1 task-1] 7anNqUR7RDOCfjQoT1mL5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.100 [XNIO-1 task-1] 7anNqUR7RDOCfjQoT1mL5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.100 [XNIO-1 task-1] 7anNqUR7RDOCfjQoT1mL5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.101 [XNIO-1 task-1] 7anNqUR7RDOCfjQoT1mL5A DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:51.101 [XNIO-1 task-1] 7anNqUR7RDOCfjQoT1mL5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:51.107 [XNIO-1 task-1] 9Ruka3HqQQ6kzRZZg1FCUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:51.107 [XNIO-1 task-1] 9Ruka3HqQQ6kzRZZg1FCUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.107 [XNIO-1 task-1] 9Ruka3HqQQ6kzRZZg1FCUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.107 [XNIO-1 task-1] 9Ruka3HqQQ6kzRZZg1FCUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:51.107 [XNIO-1 task-1] 9Ruka3HqQQ6kzRZZg1FCUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:51.110 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:652d0b05 +09:12:51.110 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5be46b8a +09:12:51.113 [XNIO-1 task-1] vSCRlhVhTMems9LtA8c5eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95d6d87c-62d3-4399-b636-70a8952044e6 +09:12:51.113 [XNIO-1 task-1] vSCRlhVhTMems9LtA8c5eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.113 [XNIO-1 task-1] vSCRlhVhTMems9LtA8c5eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.113 [XNIO-1 task-1] vSCRlhVhTMems9LtA8c5eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95d6d87c-62d3-4399-b636-70a8952044e6 +09:12:51.114 [XNIO-1 task-1] vSCRlhVhTMems9LtA8c5eA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95d6d87c-62d3-4399-b636-70a8952044e6 +09:12:51.117 [XNIO-1 task-1] --529mwNThSILbs6ZSHlBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.117 [XNIO-1 task-1] --529mwNThSILbs6ZSHlBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.117 [XNIO-1 task-1] --529mwNThSILbs6ZSHlBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.117 [XNIO-1 task-1] --529mwNThSILbs6ZSHlBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.118 [XNIO-1 task-1] --529mwNThSILbs6ZSHlBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.122 [XNIO-1 task-1] poa1jWr1RfWkHvmHVnaDGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.122 [XNIO-1 task-1] poa1jWr1RfWkHvmHVnaDGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.122 [XNIO-1 task-1] poa1jWr1RfWkHvmHVnaDGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.122 [XNIO-1 task-1] poa1jWr1RfWkHvmHVnaDGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.123 [XNIO-1 task-1] poa1jWr1RfWkHvmHVnaDGw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.132 [XNIO-1 task-1] Rzrf2-Q0SJqHUWCLSLYepA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.132 [XNIO-1 task-1] Rzrf2-Q0SJqHUWCLSLYepA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.132 [XNIO-1 task-1] Rzrf2-Q0SJqHUWCLSLYepA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.132 [XNIO-1 task-1] Rzrf2-Q0SJqHUWCLSLYepA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.132 [XNIO-1 task-1] Rzrf2-Q0SJqHUWCLSLYepA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.135 [XNIO-1 task-1] gl4jerHtRZOEHZfMTBytmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.135 [XNIO-1 task-1] gl4jerHtRZOEHZfMTBytmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.135 [XNIO-1 task-1] gl4jerHtRZOEHZfMTBytmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.135 [XNIO-1 task-1] gl4jerHtRZOEHZfMTBytmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.136 [XNIO-1 task-1] gl4jerHtRZOEHZfMTBytmA DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:51.136 [XNIO-1 task-1] gl4jerHtRZOEHZfMTBytmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:51.138 [XNIO-1 task-1] uVFS_cNGR0-rd6Vapma-gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.138 [XNIO-1 task-1] uVFS_cNGR0-rd6Vapma-gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.138 [XNIO-1 task-1] uVFS_cNGR0-rd6Vapma-gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.138 [XNIO-1 task-1] uVFS_cNGR0-rd6Vapma-gg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.143 [XNIO-1 task-1] UAH8M1-vSZqRlclHVlVQZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.143 [XNIO-1 task-1] UAH8M1-vSZqRlclHVlVQZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.143 [XNIO-1 task-1] UAH8M1-vSZqRlclHVlVQZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.143 [XNIO-1 task-1] UAH8M1-vSZqRlclHVlVQZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.143 [XNIO-1 task-1] UAH8M1-vSZqRlclHVlVQZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.149 [XNIO-1 task-1] Ytlu4s0TSxiWAY274vA_5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.149 [XNIO-1 task-1] Ytlu4s0TSxiWAY274vA_5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.149 [XNIO-1 task-1] Ytlu4s0TSxiWAY274vA_5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.149 [XNIO-1 task-1] Ytlu4s0TSxiWAY274vA_5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.149 [XNIO-1 task-1] Ytlu4s0TSxiWAY274vA_5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.151 [XNIO-1 task-1] pJRNRUKzT2OUqS0xJnB40A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.151 [XNIO-1 task-1] pJRNRUKzT2OUqS0xJnB40A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.151 [XNIO-1 task-1] pJRNRUKzT2OUqS0xJnB40A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.151 [XNIO-1 task-1] pJRNRUKzT2OUqS0xJnB40A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.151 [XNIO-1 task-1] pJRNRUKzT2OUqS0xJnB40A DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:51.151 [XNIO-1 task-1] pJRNRUKzT2OUqS0xJnB40A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:51.156 [XNIO-1 task-1] TtSaJzIMT6Gc9IOJluw_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.156 [XNIO-1 task-1] TtSaJzIMT6Gc9IOJluw_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.157 [XNIO-1 task-1] TtSaJzIMT6Gc9IOJluw_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.157 [XNIO-1 task-1] TtSaJzIMT6Gc9IOJluw_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.157 [XNIO-1 task-1] TtSaJzIMT6Gc9IOJluw_8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.162 [XNIO-1 task-1] S21FOIxWS0-QTCj6RIHyqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.162 [XNIO-1 task-1] S21FOIxWS0-QTCj6RIHyqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.162 [XNIO-1 task-1] S21FOIxWS0-QTCj6RIHyqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.162 [XNIO-1 task-1] S21FOIxWS0-QTCj6RIHyqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.162 [XNIO-1 task-1] S21FOIxWS0-QTCj6RIHyqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.166 [XNIO-1 task-1] uRzS034qRdyk8WpiBaWHcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.166 [XNIO-1 task-1] uRzS034qRdyk8WpiBaWHcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.166 [XNIO-1 task-1] uRzS034qRdyk8WpiBaWHcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.166 [XNIO-1 task-1] uRzS034qRdyk8WpiBaWHcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.170 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9126f68a +09:12:51.171 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9126f68a +09:12:51.174 [XNIO-1 task-1] 2Kxm3jfPTk-fRerpaTioRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.174 [XNIO-1 task-1] 2Kxm3jfPTk-fRerpaTioRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.174 [XNIO-1 task-1] 2Kxm3jfPTk-fRerpaTioRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.174 [XNIO-1 task-1] 2Kxm3jfPTk-fRerpaTioRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.174 [XNIO-1 task-1] 2Kxm3jfPTk-fRerpaTioRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.179 [XNIO-1 task-1] YmEttEdmQ2qat9TrTGzQTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.179 [XNIO-1 task-1] YmEttEdmQ2qat9TrTGzQTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.180 [XNIO-1 task-1] YmEttEdmQ2qat9TrTGzQTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.180 [XNIO-1 task-1] YmEttEdmQ2qat9TrTGzQTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.180 [XNIO-1 task-1] YmEttEdmQ2qat9TrTGzQTw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.184 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:63f5e96c-f90c-4c6c-9cc4-a915e62e0790 +09:12:51.185 [XNIO-1 task-1] ybC_022oQPKSEQ3YWZow5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.185 [XNIO-1 task-1] ybC_022oQPKSEQ3YWZow5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.185 [XNIO-1 task-1] ybC_022oQPKSEQ3YWZow5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.185 [XNIO-1 task-1] ybC_022oQPKSEQ3YWZow5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.185 [XNIO-1 task-1] ybC_022oQPKSEQ3YWZow5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.188 [XNIO-1 task-1] LywBZWbpQPO3WnXEyrnL8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.188 [XNIO-1 task-1] LywBZWbpQPO3WnXEyrnL8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.188 [XNIO-1 task-1] LywBZWbpQPO3WnXEyrnL8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.188 [XNIO-1 task-1] LywBZWbpQPO3WnXEyrnL8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.188 [XNIO-1 task-1] LywBZWbpQPO3WnXEyrnL8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.189 [XNIO-1 task-1] LywBZWbpQPO3WnXEyrnL8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.191 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:17e0d1ee +09:12:51.192 [XNIO-1 task-1] tRzbjdV4Sr6CSkjJStfjzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.192 [XNIO-1 task-1] tRzbjdV4Sr6CSkjJStfjzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.193 [XNIO-1 task-1] tRzbjdV4Sr6CSkjJStfjzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.193 [XNIO-1 task-1] tRzbjdV4Sr6CSkjJStfjzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.193 [XNIO-1 task-1] tRzbjdV4Sr6CSkjJStfjzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.198 [XNIO-1 task-1] dL5wF2AGRcSdOBz-3SeGGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.198 [XNIO-1 task-1] dL5wF2AGRcSdOBz-3SeGGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.198 [XNIO-1 task-1] dL5wF2AGRcSdOBz-3SeGGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.198 [XNIO-1 task-1] dL5wF2AGRcSdOBz-3SeGGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.198 [XNIO-1 task-1] dL5wF2AGRcSdOBz-3SeGGA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.206 [XNIO-1 task-1] tMfbU7TUTiee4B1Q_qBEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.206 [XNIO-1 task-1] tMfbU7TUTiee4B1Q_qBEcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.206 [XNIO-1 task-1] tMfbU7TUTiee4B1Q_qBEcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.206 [XNIO-1 task-1] tMfbU7TUTiee4B1Q_qBEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.206 [XNIO-1 task-1] tMfbU7TUTiee4B1Q_qBEcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.207 [XNIO-1 task-1] tMfbU7TUTiee4B1Q_qBEcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.210 [XNIO-1 task-1] zLcPNn9rQR-P-fS-ql7ytA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.210 [XNIO-1 task-1] zLcPNn9rQR-P-fS-ql7ytA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.210 [XNIO-1 task-1] zLcPNn9rQR-P-fS-ql7ytA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.210 [XNIO-1 task-1] zLcPNn9rQR-P-fS-ql7ytA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.210 [XNIO-1 task-1] zLcPNn9rQR-P-fS-ql7ytA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.212 [XNIO-1 task-1] h2L3X8FSRxeR2alRwLlOeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.212 [XNIO-1 task-1] h2L3X8FSRxeR2alRwLlOeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.212 [XNIO-1 task-1] h2L3X8FSRxeR2alRwLlOeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.212 [XNIO-1 task-1] h2L3X8FSRxeR2alRwLlOeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.212 [XNIO-1 task-1] h2L3X8FSRxeR2alRwLlOeA DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:51.212 [XNIO-1 task-1] h2L3X8FSRxeR2alRwLlOeA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:51.215 [XNIO-1 task-1] M-pVCI2wQxOoALMv2w1YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.215 [XNIO-1 task-1] M-pVCI2wQxOoALMv2w1YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.215 [XNIO-1 task-1] M-pVCI2wQxOoALMv2w1YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.215 [XNIO-1 task-1] M-pVCI2wQxOoALMv2w1YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.216 [XNIO-1 task-1] M-pVCI2wQxOoALMv2w1YFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.220 [XNIO-1 task-1] qF-O_rNuTVu6lhG-jIFf0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.220 [XNIO-1 task-1] qF-O_rNuTVu6lhG-jIFf0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.220 [XNIO-1 task-1] qF-O_rNuTVu6lhG-jIFf0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.220 [XNIO-1 task-1] qF-O_rNuTVu6lhG-jIFf0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.220 [XNIO-1 task-1] qF-O_rNuTVu6lhG-jIFf0A DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.220 [XNIO-1 task-1] qF-O_rNuTVu6lhG-jIFf0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.228 [XNIO-1 task-1] YTFvlG0LTfOlss0JEX36MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.228 [XNIO-1 task-1] YTFvlG0LTfOlss0JEX36MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.228 [XNIO-1 task-1] YTFvlG0LTfOlss0JEX36MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.228 [XNIO-1 task-1] YTFvlG0LTfOlss0JEX36MQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.233 [XNIO-1 task-1] VQXzO4c6ROG8-MT45IP63w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.233 [XNIO-1 task-1] VQXzO4c6ROG8-MT45IP63w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.234 [XNIO-1 task-1] VQXzO4c6ROG8-MT45IP63w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.234 [XNIO-1 task-1] VQXzO4c6ROG8-MT45IP63w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.234 [XNIO-1 task-1] VQXzO4c6ROG8-MT45IP63w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.238 [XNIO-1 task-1] J2RwqU7FSraUis_1bXcfXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.239 [XNIO-1 task-1] J2RwqU7FSraUis_1bXcfXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.239 [XNIO-1 task-1] J2RwqU7FSraUis_1bXcfXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.239 [XNIO-1 task-1] J2RwqU7FSraUis_1bXcfXg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.241 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f67173c5 +09:12:51.242 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f67173c5 +09:12:51.246 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:340f492a +09:12:51.247 [XNIO-1 task-1] pFcVohSZTImJtZffr_BI4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.247 [XNIO-1 task-1] pFcVohSZTImJtZffr_BI4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.247 [XNIO-1 task-1] pFcVohSZTImJtZffr_BI4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.247 [XNIO-1 task-1] pFcVohSZTImJtZffr_BI4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.247 [XNIO-1 task-1] pFcVohSZTImJtZffr_BI4g DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.248 [XNIO-1 task-1] pFcVohSZTImJtZffr_BI4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.253 [XNIO-1 task-1] QmeOOapOS3yQvw9sUPrBug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.253 [XNIO-1 task-1] QmeOOapOS3yQvw9sUPrBug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.253 [XNIO-1 task-1] QmeOOapOS3yQvw9sUPrBug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.253 [XNIO-1 task-1] QmeOOapOS3yQvw9sUPrBug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.253 [XNIO-1 task-1] QmeOOapOS3yQvw9sUPrBug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.256 [XNIO-1 task-1] OjN9pGyPR2uhHbyHzMqAUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.256 [XNIO-1 task-1] OjN9pGyPR2uhHbyHzMqAUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.257 [XNIO-1 task-1] OjN9pGyPR2uhHbyHzMqAUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.257 [XNIO-1 task-1] OjN9pGyPR2uhHbyHzMqAUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.257 [XNIO-1 task-1] OjN9pGyPR2uhHbyHzMqAUA DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.257 [XNIO-1 task-1] OjN9pGyPR2uhHbyHzMqAUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.259 [XNIO-1 task-1] cFEH4WdzTrmArjic-5dW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.259 [XNIO-1 task-1] cFEH4WdzTrmArjic-5dW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.260 [XNIO-1 task-1] cFEH4WdzTrmArjic-5dW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.260 [XNIO-1 task-1] cFEH4WdzTrmArjic-5dW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.260 [XNIO-1 task-1] cFEH4WdzTrmArjic-5dW7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.268 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2849cc28 +09:12:51.296 [XNIO-1 task-1] O4ZOQKj7SwiwJbxEfsb4XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.296 [XNIO-1 task-1] O4ZOQKj7SwiwJbxEfsb4XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.296 [XNIO-1 task-1] O4ZOQKj7SwiwJbxEfsb4XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.296 [XNIO-1 task-1] O4ZOQKj7SwiwJbxEfsb4XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.296 [XNIO-1 task-1] O4ZOQKj7SwiwJbxEfsb4XA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.300 [XNIO-1 task-1] 56VBqueZRaunjnubAxCzuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.300 [XNIO-1 task-1] 56VBqueZRaunjnubAxCzuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.300 [XNIO-1 task-1] 56VBqueZRaunjnubAxCzuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.300 [XNIO-1 task-1] 56VBqueZRaunjnubAxCzuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.301 [XNIO-1 task-1] 56VBqueZRaunjnubAxCzuw DEBUG com.networknt.schema.TypeValidator debug - validate( "863d2033-ddbb-4ad5-a99e-57769a68e058", "863d2033-ddbb-4ad5-a99e-57769a68e058", refreshToken) +09:12:51.301 [XNIO-1 task-1] 56VBqueZRaunjnubAxCzuw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 863d2033-ddbb-4ad5-a99e-57769a68e058 is not found.","severity":"ERROR"} +09:12:51.303 [XNIO-1 task-1] __lKeFbySBemmIqGiC2Vqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.303 [XNIO-1 task-1] __lKeFbySBemmIqGiC2Vqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.303 [XNIO-1 task-1] __lKeFbySBemmIqGiC2Vqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.303 [XNIO-1 task-1] __lKeFbySBemmIqGiC2Vqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.303 [XNIO-1 task-1] __lKeFbySBemmIqGiC2Vqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.305 [XNIO-1 task-1] Rp3y9IxHR1OapI7Aw6I9Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.305 [XNIO-1 task-1] Rp3y9IxHR1OapI7Aw6I9Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.305 [XNIO-1 task-1] Rp3y9IxHR1OapI7Aw6I9Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.305 [XNIO-1 task-1] Rp3y9IxHR1OapI7Aw6I9Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.305 [XNIO-1 task-1] Rp3y9IxHR1OapI7Aw6I9Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "863d2033-ddbb-4ad5-a99e-57769a68e058", "863d2033-ddbb-4ad5-a99e-57769a68e058", refreshToken) +09:12:51.305 [XNIO-1 task-1] Rp3y9IxHR1OapI7Aw6I9Hg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 863d2033-ddbb-4ad5-a99e-57769a68e058 is not found.","severity":"ERROR"} +09:12:51.308 [XNIO-1 task-1] 8HiMxZOjSvelngrPu3GUgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.308 [XNIO-1 task-1] 8HiMxZOjSvelngrPu3GUgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.308 [XNIO-1 task-1] 8HiMxZOjSvelngrPu3GUgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.308 [XNIO-1 task-1] 8HiMxZOjSvelngrPu3GUgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.308 [XNIO-1 task-1] 8HiMxZOjSvelngrPu3GUgg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.310 [XNIO-1 task-1] dpj_B18vQx-QYkzwd_B6LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.310 [XNIO-1 task-1] dpj_B18vQx-QYkzwd_B6LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.310 [XNIO-1 task-1] dpj_B18vQx-QYkzwd_B6LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.310 [XNIO-1 task-1] dpj_B18vQx-QYkzwd_B6LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.310 [XNIO-1 task-1] dpj_B18vQx-QYkzwd_B6LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "863d2033-ddbb-4ad5-a99e-57769a68e058", "863d2033-ddbb-4ad5-a99e-57769a68e058", refreshToken) +09:12:51.311 [XNIO-1 task-1] dpj_B18vQx-QYkzwd_B6LQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 863d2033-ddbb-4ad5-a99e-57769a68e058 is not found.","severity":"ERROR"} +09:12:51.313 [XNIO-1 task-1] 73dQI5wVRTC-DICHCwsSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.313 [XNIO-1 task-1] 73dQI5wVRTC-DICHCwsSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.313 [XNIO-1 task-1] 73dQI5wVRTC-DICHCwsSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.314 [XNIO-1 task-1] 73dQI5wVRTC-DICHCwsSfg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.320 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ffa6ebd +09:12:51.321 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ffa6ebd +09:12:51.324 [XNIO-1 task-1] A4ay_0hzTxKwH8lmf5qN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.324 [XNIO-1 task-1] A4ay_0hzTxKwH8lmf5qN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.324 [XNIO-1 task-1] A4ay_0hzTxKwH8lmf5qN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.324 [XNIO-1 task-1] A4ay_0hzTxKwH8lmf5qN6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.354 [XNIO-1 task-1] dmapnFG1S6a-XUQmXkg5xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.355 [XNIO-1 task-1] dmapnFG1S6a-XUQmXkg5xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.355 [XNIO-1 task-1] dmapnFG1S6a-XUQmXkg5xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.355 [XNIO-1 task-1] dmapnFG1S6a-XUQmXkg5xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.355 [XNIO-1 task-1] dmapnFG1S6a-XUQmXkg5xA DEBUG com.networknt.schema.TypeValidator debug - validate( "863d2033-ddbb-4ad5-a99e-57769a68e058", "863d2033-ddbb-4ad5-a99e-57769a68e058", refreshToken) +09:12:51.355 [XNIO-1 task-1] dmapnFG1S6a-XUQmXkg5xA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 863d2033-ddbb-4ad5-a99e-57769a68e058 is not found.","severity":"ERROR"} +09:12:51.358 [XNIO-1 task-1] 8PiOZ9ZuQA-0O_HwWpceXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.358 [XNIO-1 task-1] 8PiOZ9ZuQA-0O_HwWpceXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.358 [XNIO-1 task-1] 8PiOZ9ZuQA-0O_HwWpceXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.358 [XNIO-1 task-1] 8PiOZ9ZuQA-0O_HwWpceXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.358 [XNIO-1 task-1] 8PiOZ9ZuQA-0O_HwWpceXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.360 [XNIO-1 task-1] eMSnZVKlQAmU78NTR8jbow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.360 [XNIO-1 task-1] eMSnZVKlQAmU78NTR8jbow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.360 [XNIO-1 task-1] eMSnZVKlQAmU78NTR8jbow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.360 [XNIO-1 task-1] eMSnZVKlQAmU78NTR8jbow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.361 [XNIO-1 task-1] eMSnZVKlQAmU78NTR8jbow DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.361 [XNIO-1 task-1] eMSnZVKlQAmU78NTR8jbow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.362 [XNIO-1 task-1] -AYyRnPwR6C7vrabuZh4Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.362 [XNIO-1 task-1] -AYyRnPwR6C7vrabuZh4Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.362 [XNIO-1 task-1] -AYyRnPwR6C7vrabuZh4Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.362 [XNIO-1 task-1] -AYyRnPwR6C7vrabuZh4Pg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.399 [XNIO-1 task-1] W6KD24xTTweSuBuiboioDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.399 [XNIO-1 task-1] W6KD24xTTweSuBuiboioDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.399 [XNIO-1 task-1] W6KD24xTTweSuBuiboioDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.399 [XNIO-1 task-1] W6KD24xTTweSuBuiboioDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.399 [XNIO-1 task-1] W6KD24xTTweSuBuiboioDA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.428 [XNIO-1 task-1] v1QOpIcRQHOVnC9eVgdGTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.428 [XNIO-1 task-1] v1QOpIcRQHOVnC9eVgdGTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.428 [XNIO-1 task-1] v1QOpIcRQHOVnC9eVgdGTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.428 [XNIO-1 task-1] v1QOpIcRQHOVnC9eVgdGTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.442 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c79db767 +09:12:51.500 [XNIO-1 task-1] qVbNiEPES7-MFnBpTDHyjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51, base path is set to: null +09:12:51.500 [XNIO-1 task-1] qVbNiEPES7-MFnBpTDHyjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.500 [XNIO-1 task-1] qVbNiEPES7-MFnBpTDHyjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.500 [XNIO-1 task-1] qVbNiEPES7-MFnBpTDHyjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51, base path is set to: null +09:12:51.500 [XNIO-1 task-1] qVbNiEPES7-MFnBpTDHyjg DEBUG com.networknt.schema.TypeValidator debug - validate( "ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51", "ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51", refreshToken) +09:12:51.501 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2f6e63da +09:12:51.502 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2f6e63da +09:12:51.512 [XNIO-1 task-1] xnddRm7HSc6wLn8mRGADBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.512 [XNIO-1 task-1] xnddRm7HSc6wLn8mRGADBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.513 [XNIO-1 task-1] xnddRm7HSc6wLn8mRGADBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.513 [XNIO-1 task-1] xnddRm7HSc6wLn8mRGADBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.534 [XNIO-1 task-1] lF_DLUN7Sfe9RJs5Q_mCiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.534 [XNIO-1 task-1] lF_DLUN7Sfe9RJs5Q_mCiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.534 [XNIO-1 task-1] lF_DLUN7Sfe9RJs5Q_mCiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.534 [XNIO-1 task-1] lF_DLUN7Sfe9RJs5Q_mCiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.535 [XNIO-1 task-1] lF_DLUN7Sfe9RJs5Q_mCiw DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.535 [XNIO-1 task-1] lF_DLUN7Sfe9RJs5Q_mCiw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.540 [XNIO-1 task-1] bEG3YLx2TReeNvjjOx4tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51 +09:12:51.541 [XNIO-1 task-1] bEG3YLx2TReeNvjjOx4tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.541 [XNIO-1 task-1] bEG3YLx2TReeNvjjOx4tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.541 [XNIO-1 task-1] bEG3YLx2TReeNvjjOx4tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51 +09:12:51.541 [XNIO-1 task-1] bEG3YLx2TReeNvjjOx4tIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51 +09:12:51.545 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe +09:12:51.546 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe +09:12:51.547 [XNIO-1 task-1] 1wfaFV7kRz2hKzwx3OTZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.547 [XNIO-1 task-1] 1wfaFV7kRz2hKzwx3OTZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.547 [XNIO-1 task-1] 1wfaFV7kRz2hKzwx3OTZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.548 [XNIO-1 task-1] 1wfaFV7kRz2hKzwx3OTZig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.548 [XNIO-1 task-1] 1wfaFV7kRz2hKzwx3OTZig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.555 [XNIO-1 task-1] CbUECDd2QRyp_0LJ0eP3sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3750a16-da2e-4f1b-b70e-a6fec2629a2d, base path is set to: null +09:12:51.558 [XNIO-1 task-1] CbUECDd2QRyp_0LJ0eP3sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.559 [XNIO-1 task-1] CbUECDd2QRyp_0LJ0eP3sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.559 [XNIO-1 task-1] CbUECDd2QRyp_0LJ0eP3sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3750a16-da2e-4f1b-b70e-a6fec2629a2d, base path is set to: null +09:12:51.559 [XNIO-1 task-1] CbUECDd2QRyp_0LJ0eP3sA DEBUG com.networknt.schema.TypeValidator debug - validate( "a3750a16-da2e-4f1b-b70e-a6fec2629a2d", "a3750a16-da2e-4f1b-b70e-a6fec2629a2d", refreshToken) +09:12:51.566 [XNIO-1 task-1] uJSG2i_DTRGtjWXP5y61mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.566 [XNIO-1 task-1] uJSG2i_DTRGtjWXP5y61mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.566 [XNIO-1 task-1] uJSG2i_DTRGtjWXP5y61mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.566 [XNIO-1 task-1] uJSG2i_DTRGtjWXP5y61mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.566 [XNIO-1 task-1] uJSG2i_DTRGtjWXP5y61mA DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.567 [XNIO-1 task-1] uJSG2i_DTRGtjWXP5y61mA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.571 [XNIO-1 task-1] -wuflKbxQPOkOWjHYhGjYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51 +09:12:51.571 [XNIO-1 task-1] -wuflKbxQPOkOWjHYhGjYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.571 [XNIO-1 task-1] -wuflKbxQPOkOWjHYhGjYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.571 [XNIO-1 task-1] -wuflKbxQPOkOWjHYhGjYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51 +09:12:51.572 [XNIO-1 task-1] -wuflKbxQPOkOWjHYhGjYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ea0acfa9-ba87-4d6c-b39b-f9e39fc41f51 +09:12:51.576 [XNIO-1 task-1] 7xvk16kER3eCqQgZ13LdEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01, base path is set to: null +09:12:51.576 [XNIO-1 task-1] 7xvk16kER3eCqQgZ13LdEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.576 [XNIO-1 task-1] 7xvk16kER3eCqQgZ13LdEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.576 [XNIO-1 task-1] 7xvk16kER3eCqQgZ13LdEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01, base path is set to: null +09:12:51.576 [XNIO-1 task-1] 7xvk16kER3eCqQgZ13LdEA DEBUG com.networknt.schema.TypeValidator debug - validate( "53765a75-974a-4738-ae02-d1ed32146b01", "53765a75-974a-4738-ae02-d1ed32146b01", refreshToken) +09:12:51.579 [XNIO-1 task-1] 7xvk16kER3eCqQgZ13LdEA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 53765a75-974a-4738-ae02-d1ed32146b01 is not found.","severity":"ERROR"} +09:12:51.581 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ffa6ebd +09:12:51.581 [XNIO-1 task-1] m5omIiAyTbKXZeU2ebCcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.581 [XNIO-1 task-1] m5omIiAyTbKXZeU2ebCcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.581 [XNIO-1 task-1] m5omIiAyTbKXZeU2ebCcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.581 [XNIO-1 task-1] m5omIiAyTbKXZeU2ebCcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.581 [XNIO-1 task-1] m5omIiAyTbKXZeU2ebCcbw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.582 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:699ec3e0 +09:12:51.583 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:699ec3e0 +09:12:51.583 [XNIO-1 task-1] 3iB_QC4JQAin0sAFmLcP0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.584 [XNIO-1 task-1] 3iB_QC4JQAin0sAFmLcP0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.584 [XNIO-1 task-1] 3iB_QC4JQAin0sAFmLcP0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.584 [XNIO-1 task-1] 3iB_QC4JQAin0sAFmLcP0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.584 [XNIO-1 task-1] 3iB_QC4JQAin0sAFmLcP0g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.586 [XNIO-1 task-1] yf6wvf0lQOGv_sxNX2ZJxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01, base path is set to: null +09:12:51.586 [XNIO-1 task-1] yf6wvf0lQOGv_sxNX2ZJxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.586 [XNIO-1 task-1] yf6wvf0lQOGv_sxNX2ZJxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.586 [XNIO-1 task-1] yf6wvf0lQOGv_sxNX2ZJxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01, base path is set to: null +09:12:51.586 [XNIO-1 task-1] yf6wvf0lQOGv_sxNX2ZJxw DEBUG com.networknt.schema.TypeValidator debug - validate( "53765a75-974a-4738-ae02-d1ed32146b01", "53765a75-974a-4738-ae02-d1ed32146b01", refreshToken) +09:12:51.586 [XNIO-1 task-1] yf6wvf0lQOGv_sxNX2ZJxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 53765a75-974a-4738-ae02-d1ed32146b01 is not found.","severity":"ERROR"} +09:12:51.592 [XNIO-1 task-1] 6ENFy96qShW7fRqvmMgiaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.592 [XNIO-1 task-1] 6ENFy96qShW7fRqvmMgiaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.592 [XNIO-1 task-1] 6ENFy96qShW7fRqvmMgiaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.592 [XNIO-1 task-1] 6ENFy96qShW7fRqvmMgiaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.592 [XNIO-1 task-1] 6ENFy96qShW7fRqvmMgiaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 53765a75-974a-4738-ae02-d1ed32146b01 +09:12:51.593 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:340f492a +09:12:51.600 [XNIO-1 task-1] 43UOLUS5Tm6ZwUxyebozvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe, base path is set to: null +09:12:51.601 [XNIO-1 task-1] 43UOLUS5Tm6ZwUxyebozvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.601 [XNIO-1 task-1] 43UOLUS5Tm6ZwUxyebozvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.601 [XNIO-1 task-1] 43UOLUS5Tm6ZwUxyebozvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe, base path is set to: null +09:12:51.601 [XNIO-1 task-1] 43UOLUS5Tm6ZwUxyebozvA DEBUG com.networknt.schema.TypeValidator debug - validate( "ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe", "ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe", refreshToken) +09:12:51.605 [XNIO-1 task-1] 1prIPQcJTkqbBoFym12DSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.606 [XNIO-1 task-1] 1prIPQcJTkqbBoFym12DSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.606 [XNIO-1 task-1] 1prIPQcJTkqbBoFym12DSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.606 [XNIO-1 task-1] 1prIPQcJTkqbBoFym12DSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.606 [XNIO-1 task-1] 1prIPQcJTkqbBoFym12DSg DEBUG com.networknt.schema.TypeValidator debug - validate( "6f2dad6e-3e75-418e-a303-8db5851d5a75", "6f2dad6e-3e75-418e-a303-8db5851d5a75", refreshToken) +09:12:51.615 [XNIO-1 task-1] NzpIeESjSECleEnBJ3W7zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.615 [XNIO-1 task-1] NzpIeESjSECleEnBJ3W7zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.615 [XNIO-1 task-1] NzpIeESjSECleEnBJ3W7zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.615 [XNIO-1 task-1] NzpIeESjSECleEnBJ3W7zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b, base path is set to: null +09:12:51.615 [XNIO-1 task-1] NzpIeESjSECleEnBJ3W7zw DEBUG com.networknt.schema.TypeValidator debug - validate( "58287ff1-e94b-4147-8a1e-677fc8b0487b", "58287ff1-e94b-4147-8a1e-677fc8b0487b", refreshToken) +09:12:51.615 [XNIO-1 task-1] NzpIeESjSECleEnBJ3W7zw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58287ff1-e94b-4147-8a1e-677fc8b0487b is not found.","severity":"ERROR"} +09:12:51.616 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:699ec3e0 +09:12:51.618 [XNIO-1 task-1] 5IRz5bocRliaj2TTXprWWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe +09:12:51.618 [XNIO-1 task-1] 5IRz5bocRliaj2TTXprWWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.618 [XNIO-1 task-1] 5IRz5bocRliaj2TTXprWWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.618 [XNIO-1 task-1] 5IRz5bocRliaj2TTXprWWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe +09:12:51.618 [XNIO-1 task-1] 5IRz5bocRliaj2TTXprWWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ee6587dc-10d0-4ec9-98e2-0d62a8bb5afe +09:12:51.620 [XNIO-1 task-1] pojn_BlPR-G4AYIAnsFXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.620 [XNIO-1 task-1] pojn_BlPR-G4AYIAnsFXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.620 [XNIO-1 task-1] pojn_BlPR-G4AYIAnsFXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.620 [XNIO-1 task-1] pojn_BlPR-G4AYIAnsFXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.620 [XNIO-1 task-1] pojn_BlPR-G4AYIAnsFXFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.622 [XNIO-1 task-1] Wu6-ICWETIONsgg2iDxARg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.622 [XNIO-1 task-1] Wu6-ICWETIONsgg2iDxARg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.622 [XNIO-1 task-1] Wu6-ICWETIONsgg2iDxARg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.622 [XNIO-1 task-1] Wu6-ICWETIONsgg2iDxARg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/57b573be-adae-4aa9-bea4-db9e0b2218da, base path is set to: null +09:12:51.622 [XNIO-1 task-1] Wu6-ICWETIONsgg2iDxARg DEBUG com.networknt.schema.TypeValidator debug - validate( "57b573be-adae-4aa9-bea4-db9e0b2218da", "57b573be-adae-4aa9-bea4-db9e0b2218da", refreshToken) +09:12:51.622 [XNIO-1 task-1] Wu6-ICWETIONsgg2iDxARg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 57b573be-adae-4aa9-bea4-db9e0b2218da is not found.","severity":"ERROR"} +09:12:51.627 [XNIO-1 task-1] Kk9UZ5_eTEimN6ecVkDHIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.627 [XNIO-1 task-1] Kk9UZ5_eTEimN6ecVkDHIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.628 [XNIO-1 task-1] Kk9UZ5_eTEimN6ecVkDHIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.628 [XNIO-1 task-1] Kk9UZ5_eTEimN6ecVkDHIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.635 [XNIO-1 task-1] ZVdJjiV1Tq2Lz3z7Wb-OtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3750a16-da2e-4f1b-b70e-a6fec2629a2d, base path is set to: null +09:12:51.635 [XNIO-1 task-1] ZVdJjiV1Tq2Lz3z7Wb-OtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.635 [XNIO-1 task-1] ZVdJjiV1Tq2Lz3z7Wb-OtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.636 [XNIO-1 task-1] ZVdJjiV1Tq2Lz3z7Wb-OtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3750a16-da2e-4f1b-b70e-a6fec2629a2d, base path is set to: null +09:12:51.636 [XNIO-1 task-1] ZVdJjiV1Tq2Lz3z7Wb-OtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3750a16-da2e-4f1b-b70e-a6fec2629a2d", "a3750a16-da2e-4f1b-b70e-a6fec2629a2d", refreshToken) +09:12:51.646 [XNIO-1 task-1] AZPoIgeaQCqgFz95YRx8Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.646 [XNIO-1 task-1] AZPoIgeaQCqgFz95YRx8Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.646 [XNIO-1 task-1] AZPoIgeaQCqgFz95YRx8Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.646 [XNIO-1 task-1] AZPoIgeaQCqgFz95YRx8Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.646 [XNIO-1 task-1] AZPoIgeaQCqgFz95YRx8Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "6f2dad6e-3e75-418e-a303-8db5851d5a75", "6f2dad6e-3e75-418e-a303-8db5851d5a75", refreshToken) +09:12:51.647 [XNIO-1 task-1] AZPoIgeaQCqgFz95YRx8Gw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f2dad6e-3e75-418e-a303-8db5851d5a75 is not found.","severity":"ERROR"} +09:12:51.652 [XNIO-1 task-1] 829ItBxXRRuzMLsrq3LQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.652 [XNIO-1 task-1] 829ItBxXRRuzMLsrq3LQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.652 [XNIO-1 task-1] 829ItBxXRRuzMLsrq3LQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.652 [XNIO-1 task-1] 829ItBxXRRuzMLsrq3LQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.652 [XNIO-1 task-1] 829ItBxXRRuzMLsrq3LQ_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.653 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:699ec3e0 +09:12:51.658 [XNIO-1 task-1] Sp-zlEu1RxilVmPn5I5tCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.658 [XNIO-1 task-1] Sp-zlEu1RxilVmPn5I5tCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.658 [XNIO-1 task-1] Sp-zlEu1RxilVmPn5I5tCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.658 [XNIO-1 task-1] Sp-zlEu1RxilVmPn5I5tCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.658 [XNIO-1 task-1] Sp-zlEu1RxilVmPn5I5tCA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 58287ff1-e94b-4147-8a1e-677fc8b0487b +09:12:51.663 [XNIO-1 task-1] QqqwttSRRUSgx5pr-k3ECA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.663 [XNIO-1 task-1] QqqwttSRRUSgx5pr-k3ECA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.663 [XNIO-1 task-1] QqqwttSRRUSgx5pr-k3ECA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.663 [XNIO-1 task-1] QqqwttSRRUSgx5pr-k3ECA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.663 [XNIO-1 task-1] QqqwttSRRUSgx5pr-k3ECA DEBUG com.networknt.schema.TypeValidator debug - validate( "863d2033-ddbb-4ad5-a99e-57769a68e058", "863d2033-ddbb-4ad5-a99e-57769a68e058", refreshToken) +09:12:51.663 [XNIO-1 task-1] QqqwttSRRUSgx5pr-k3ECA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 863d2033-ddbb-4ad5-a99e-57769a68e058 is not found.","severity":"ERROR"} +09:12:51.667 [XNIO-1 task-1] Er1zwJ9qRqyEJkiBkjv82Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.667 [XNIO-1 task-1] Er1zwJ9qRqyEJkiBkjv82Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.667 [XNIO-1 task-1] Er1zwJ9qRqyEJkiBkjv82Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.667 [XNIO-1 task-1] Er1zwJ9qRqyEJkiBkjv82Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.667 [XNIO-1 task-1] Er1zwJ9qRqyEJkiBkjv82Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.672 [XNIO-1 task-1] rzia_4tnRXOTwn-JNd4nkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.672 [XNIO-1 task-1] rzia_4tnRXOTwn-JNd4nkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.672 [XNIO-1 task-1] rzia_4tnRXOTwn-JNd4nkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.672 [XNIO-1 task-1] rzia_4tnRXOTwn-JNd4nkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058, base path is set to: null +09:12:51.672 [XNIO-1 task-1] rzia_4tnRXOTwn-JNd4nkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "863d2033-ddbb-4ad5-a99e-57769a68e058", "863d2033-ddbb-4ad5-a99e-57769a68e058", refreshToken) +09:12:51.672 [XNIO-1 task-1] rzia_4tnRXOTwn-JNd4nkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 863d2033-ddbb-4ad5-a99e-57769a68e058 is not found.","severity":"ERROR"} +09:12:51.680 [XNIO-1 task-1] NBUZHbL_RCyMGQfSpaRpOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.681 [XNIO-1 task-1] NBUZHbL_RCyMGQfSpaRpOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.681 [XNIO-1 task-1] NBUZHbL_RCyMGQfSpaRpOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.681 [XNIO-1 task-1] NBUZHbL_RCyMGQfSpaRpOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.682 [XNIO-1 task-1] NBUZHbL_RCyMGQfSpaRpOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.695 [XNIO-1 task-1] 1N2GD1z0S1Wswl3DPBJA8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.695 [XNIO-1 task-1] 1N2GD1z0S1Wswl3DPBJA8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.695 [XNIO-1 task-1] 1N2GD1z0S1Wswl3DPBJA8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.695 [XNIO-1 task-1] 1N2GD1z0S1Wswl3DPBJA8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.695 [XNIO-1 task-1] 1N2GD1z0S1Wswl3DPBJA8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.700 [XNIO-1 task-1] qehCzd41R-iIS7ruOrWs2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.700 [XNIO-1 task-1] qehCzd41R-iIS7ruOrWs2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.700 [XNIO-1 task-1] qehCzd41R-iIS7ruOrWs2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.700 [XNIO-1 task-1] qehCzd41R-iIS7ruOrWs2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.700 [XNIO-1 task-1] qehCzd41R-iIS7ruOrWs2g DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:51.702 [XNIO-1 task-1] qehCzd41R-iIS7ruOrWs2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:51.704 [XNIO-1 task-1] bLBGn0TFR_uZmt0fS3yeyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.705 [XNIO-1 task-1] bLBGn0TFR_uZmt0fS3yeyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.705 [XNIO-1 task-1] bLBGn0TFR_uZmt0fS3yeyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.705 [XNIO-1 task-1] bLBGn0TFR_uZmt0fS3yeyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.705 [XNIO-1 task-1] bLBGn0TFR_uZmt0fS3yeyA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.712 [XNIO-1 task-1] 7mWDWN26RQyLFoZWqS_s9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.712 [XNIO-1 task-1] 7mWDWN26RQyLFoZWqS_s9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.712 [XNIO-1 task-1] 7mWDWN26RQyLFoZWqS_s9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.712 [XNIO-1 task-1] 7mWDWN26RQyLFoZWqS_s9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.712 [XNIO-1 task-1] 7mWDWN26RQyLFoZWqS_s9w DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:51.712 [XNIO-1 task-1] 7mWDWN26RQyLFoZWqS_s9w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:51.717 [XNIO-1 task-1] TLBL3v0VT62cjgE04RbAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.717 [XNIO-1 task-1] TLBL3v0VT62cjgE04RbAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.717 [XNIO-1 task-1] TLBL3v0VT62cjgE04RbAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.718 [XNIO-1 task-1] TLBL3v0VT62cjgE04RbAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.718 [XNIO-1 task-1] TLBL3v0VT62cjgE04RbAzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 863d2033-ddbb-4ad5-a99e-57769a68e058 +09:12:51.720 [XNIO-1 task-1] u8U5eg37Q2SxkoLnASh7HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.720 [XNIO-1 task-1] u8U5eg37Q2SxkoLnASh7HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.721 [XNIO-1 task-1] u8U5eg37Q2SxkoLnASh7HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.721 [XNIO-1 task-1] u8U5eg37Q2SxkoLnASh7HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.721 [XNIO-1 task-1] u8U5eg37Q2SxkoLnASh7HA DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:51.721 [XNIO-1 task-1] u8U5eg37Q2SxkoLnASh7HA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:51.722 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:51.725 [XNIO-1 task-1] rZSbE20pSJ6UUEMYvCBjWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.725 [XNIO-1 task-1] rZSbE20pSJ6UUEMYvCBjWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.725 [XNIO-1 task-1] rZSbE20pSJ6UUEMYvCBjWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.725 [XNIO-1 task-1] rZSbE20pSJ6UUEMYvCBjWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.725 [XNIO-1 task-1] rZSbE20pSJ6UUEMYvCBjWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.727 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f67173c5 +09:12:51.732 [XNIO-1 task-1] 1Ypmg6vJR7u8TzBQzA9owA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.733 [XNIO-1 task-1] 1Ypmg6vJR7u8TzBQzA9owA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.733 [XNIO-1 task-1] 1Ypmg6vJR7u8TzBQzA9owA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.733 [XNIO-1 task-1] 1Ypmg6vJR7u8TzBQzA9owA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.733 [XNIO-1 task-1] 1Ypmg6vJR7u8TzBQzA9owA DEBUG com.networknt.schema.TypeValidator debug - validate( "6f2dad6e-3e75-418e-a303-8db5851d5a75", "6f2dad6e-3e75-418e-a303-8db5851d5a75", refreshToken) +09:12:51.733 [XNIO-1 task-1] 1Ypmg6vJR7u8TzBQzA9owA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f2dad6e-3e75-418e-a303-8db5851d5a75 is not found.","severity":"ERROR"} +09:12:51.739 [XNIO-1 task-1] NspQtCnHSmGMkeza66MNwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.739 [XNIO-1 task-1] NspQtCnHSmGMkeza66MNwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.739 [XNIO-1 task-1] NspQtCnHSmGMkeza66MNwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.739 [XNIO-1 task-1] NspQtCnHSmGMkeza66MNwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.739 [XNIO-1 task-1] NspQtCnHSmGMkeza66MNwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.741 [XNIO-1 task-1] vfEUqCEBTDeDR8Zc4ly77g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.741 [XNIO-1 task-1] vfEUqCEBTDeDR8Zc4ly77g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.741 [XNIO-1 task-1] vfEUqCEBTDeDR8Zc4ly77g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.742 [XNIO-1 task-1] vfEUqCEBTDeDR8Zc4ly77g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.742 [XNIO-1 task-1] vfEUqCEBTDeDR8Zc4ly77g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.744 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2f8c438e-6aa5-47e9-b8c6-bf9b5c4602cb +09:12:51.747 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0ffa6ebd +09:12:51.752 [XNIO-1 task-1] WYXuNoUATAmn1dnU-jfZwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.753 [XNIO-1 task-1] WYXuNoUATAmn1dnU-jfZwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.753 [XNIO-1 task-1] WYXuNoUATAmn1dnU-jfZwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.753 [XNIO-1 task-1] WYXuNoUATAmn1dnU-jfZwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.754 [XNIO-1 task-1] WYXuNoUATAmn1dnU-jfZwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.759 [XNIO-1 task-1] Osb-P1yEQb2vrG17WaSHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.760 [XNIO-1 task-1] Osb-P1yEQb2vrG17WaSHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.760 [XNIO-1 task-1] Osb-P1yEQb2vrG17WaSHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.760 [XNIO-1 task-1] Osb-P1yEQb2vrG17WaSHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.760 [XNIO-1 task-1] Osb-P1yEQb2vrG17WaSHig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.763 [XNIO-1 task-1] q4BWJN2MTLiO9y-j-hbOGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.764 [XNIO-1 task-1] q4BWJN2MTLiO9y-j-hbOGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.764 [XNIO-1 task-1] q4BWJN2MTLiO9y-j-hbOGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.764 [XNIO-1 task-1] q4BWJN2MTLiO9y-j-hbOGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.764 [XNIO-1 task-1] q4BWJN2MTLiO9y-j-hbOGA DEBUG com.networknt.schema.TypeValidator debug - validate( "6f2dad6e-3e75-418e-a303-8db5851d5a75", "6f2dad6e-3e75-418e-a303-8db5851d5a75", refreshToken) +09:12:51.764 [XNIO-1 task-1] q4BWJN2MTLiO9y-j-hbOGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f2dad6e-3e75-418e-a303-8db5851d5a75 is not found.","severity":"ERROR"} +09:12:51.773 [XNIO-1 task-1] MBLSv6ZHTc29wsjtu6ibXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.774 [XNIO-1 task-1] MBLSv6ZHTc29wsjtu6ibXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.774 [XNIO-1 task-1] MBLSv6ZHTc29wsjtu6ibXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.774 [XNIO-1 task-1] MBLSv6ZHTc29wsjtu6ibXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.774 [XNIO-1 task-1] MBLSv6ZHTc29wsjtu6ibXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.779 [XNIO-1 task-1] JQWBXxS7Qi6nV3ROVwJwkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.779 [XNIO-1 task-1] JQWBXxS7Qi6nV3ROVwJwkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.779 [XNIO-1 task-1] JQWBXxS7Qi6nV3ROVwJwkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.780 [XNIO-1 task-1] JQWBXxS7Qi6nV3ROVwJwkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.780 [XNIO-1 task-1] JQWBXxS7Qi6nV3ROVwJwkg DEBUG com.networknt.schema.TypeValidator debug - validate( "6f2dad6e-3e75-418e-a303-8db5851d5a75", "6f2dad6e-3e75-418e-a303-8db5851d5a75", refreshToken) +09:12:51.780 [XNIO-1 task-1] JQWBXxS7Qi6nV3ROVwJwkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f2dad6e-3e75-418e-a303-8db5851d5a75 is not found.","severity":"ERROR"} +09:12:51.787 [XNIO-1 task-1] vKuJml1qTXeOdzan7cLBsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.787 [XNIO-1 task-1] vKuJml1qTXeOdzan7cLBsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.787 [XNIO-1 task-1] vKuJml1qTXeOdzan7cLBsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.787 [XNIO-1 task-1] vKuJml1qTXeOdzan7cLBsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.793 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e9fc7453-0f06-4eb8-b8b4-e37ff29a556d +09:12:51.796 [XNIO-1 task-1] OC1bJpbsRgmrNt7X1lQMCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.797 [XNIO-1 task-1] OC1bJpbsRgmrNt7X1lQMCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.797 [XNIO-1 task-1] OC1bJpbsRgmrNt7X1lQMCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.797 [XNIO-1 task-1] OC1bJpbsRgmrNt7X1lQMCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f2dad6e-3e75-418e-a303-8db5851d5a75, base path is set to: null +09:12:51.797 [XNIO-1 task-1] OC1bJpbsRgmrNt7X1lQMCg DEBUG com.networknt.schema.TypeValidator debug - validate( "6f2dad6e-3e75-418e-a303-8db5851d5a75", "6f2dad6e-3e75-418e-a303-8db5851d5a75", refreshToken) +09:12:51.797 [XNIO-1 task-1] OC1bJpbsRgmrNt7X1lQMCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6f2dad6e-3e75-418e-a303-8db5851d5a75 is not found.","severity":"ERROR"} +09:12:51.801 [XNIO-1 task-1] tiAl2tINRbqYZBy5vkLXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.801 [XNIO-1 task-1] tiAl2tINRbqYZBy5vkLXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.801 [XNIO-1 task-1] tiAl2tINRbqYZBy5vkLXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.801 [XNIO-1 task-1] tiAl2tINRbqYZBy5vkLXFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.806 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f67173c5 +09:12:51.809 [XNIO-1 task-1] 3_OFyO4HSB6_plHuFhjKEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.809 [XNIO-1 task-1] 3_OFyO4HSB6_plHuFhjKEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.809 [XNIO-1 task-1] 3_OFyO4HSB6_plHuFhjKEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.810 [XNIO-1 task-1] 3_OFyO4HSB6_plHuFhjKEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.812 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e9fc7453-0f06-4eb8-b8b4-e37ff29a556d +09:12:51.815 [XNIO-1 task-1] wmS4TskITqSbpE608_gI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:51.815 [XNIO-1 task-1] wmS4TskITqSbpE608_gI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.815 [XNIO-1 task-1] wmS4TskITqSbpE608_gI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.815 [XNIO-1 task-1] wmS4TskITqSbpE608_gI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:51.816 [XNIO-1 task-1] wmS4TskITqSbpE608_gI1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:51.816 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9126f68a +09:12:51.822 [XNIO-1 task-1] afEG0cCiRoWpIxSrLNw5Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.822 [XNIO-1 task-1] afEG0cCiRoWpIxSrLNw5Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.823 [XNIO-1 task-1] afEG0cCiRoWpIxSrLNw5Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.823 [XNIO-1 task-1] afEG0cCiRoWpIxSrLNw5Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.823 [XNIO-1 task-1] afEG0cCiRoWpIxSrLNw5Jg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.831 [XNIO-1 task-1] ET29M_KCTOSi9SsvGvmk8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.831 [XNIO-1 task-1] ET29M_KCTOSi9SsvGvmk8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.831 [XNIO-1 task-1] ET29M_KCTOSi9SsvGvmk8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.831 [XNIO-1 task-1] ET29M_KCTOSi9SsvGvmk8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.836 [XNIO-1 task-1] gtSS6oHRReCRFmkT1N3FPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.836 [XNIO-1 task-1] gtSS6oHRReCRFmkT1N3FPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.836 [XNIO-1 task-1] gtSS6oHRReCRFmkT1N3FPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.836 [XNIO-1 task-1] gtSS6oHRReCRFmkT1N3FPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.836 [XNIO-1 task-1] gtSS6oHRReCRFmkT1N3FPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:51.836 [XNIO-1 task-1] gtSS6oHRReCRFmkT1N3FPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:51.840 [XNIO-1 task-1] vXi3WWUkRy-1xAWdKihYpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.840 [XNIO-1 task-1] vXi3WWUkRy-1xAWdKihYpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.840 [XNIO-1 task-1] vXi3WWUkRy-1xAWdKihYpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.840 [XNIO-1 task-1] vXi3WWUkRy-1xAWdKihYpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.841 [XNIO-1 task-1] vXi3WWUkRy-1xAWdKihYpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.844 [XNIO-1 task-1] Nndxfn-sTfqKbtYQUAOqAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.844 [XNIO-1 task-1] Nndxfn-sTfqKbtYQUAOqAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.844 [XNIO-1 task-1] Nndxfn-sTfqKbtYQUAOqAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.844 [XNIO-1 task-1] Nndxfn-sTfqKbtYQUAOqAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.844 [XNIO-1 task-1] Nndxfn-sTfqKbtYQUAOqAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.848 [XNIO-1 task-1] U9p5nemMRWieYvaqp8NQrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.848 [XNIO-1 task-1] U9p5nemMRWieYvaqp8NQrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.848 [XNIO-1 task-1] U9p5nemMRWieYvaqp8NQrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.848 [XNIO-1 task-1] U9p5nemMRWieYvaqp8NQrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.848 [XNIO-1 task-1] U9p5nemMRWieYvaqp8NQrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.850 [XNIO-1 task-1] dmWCQ-W5SmaG6y2drAoxLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.850 [XNIO-1 task-1] dmWCQ-W5SmaG6y2drAoxLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.850 [XNIO-1 task-1] dmWCQ-W5SmaG6y2drAoxLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.851 [XNIO-1 task-1] dmWCQ-W5SmaG6y2drAoxLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.851 [XNIO-1 task-1] dmWCQ-W5SmaG6y2drAoxLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:51.851 [XNIO-1 task-1] dmWCQ-W5SmaG6y2drAoxLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:51.857 [XNIO-1 task-1] f7iwAN8zT02d0f9fy8Vr1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.857 [XNIO-1 task-1] f7iwAN8zT02d0f9fy8Vr1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.857 [XNIO-1 task-1] f7iwAN8zT02d0f9fy8Vr1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.857 [XNIO-1 task-1] f7iwAN8zT02d0f9fy8Vr1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.857 [XNIO-1 task-1] f7iwAN8zT02d0f9fy8Vr1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.865 [XNIO-1 task-1] NnnjySKPQf6qc4rvq1JUrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.865 [XNIO-1 task-1] NnnjySKPQf6qc4rvq1JUrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.865 [XNIO-1 task-1] NnnjySKPQf6qc4rvq1JUrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.865 [XNIO-1 task-1] NnnjySKPQf6qc4rvq1JUrg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.865 [XNIO-1 task-1] NnnjySKPQf6qc4rvq1JUrg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.874 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.875 [XNIO-1 task-1] UUS3-YU3QBmpIBru7rFcWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.875 [XNIO-1 task-1] UUS3-YU3QBmpIBru7rFcWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.875 [XNIO-1 task-1] UUS3-YU3QBmpIBru7rFcWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.875 [XNIO-1 task-1] UUS3-YU3QBmpIBru7rFcWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.875 [XNIO-1 task-1] UUS3-YU3QBmpIBru7rFcWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.877 [XNIO-1 task-1] TGiOZTyvQ0uxDNCpsgRKWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.877 [XNIO-1 task-1] TGiOZTyvQ0uxDNCpsgRKWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.877 [XNIO-1 task-1] TGiOZTyvQ0uxDNCpsgRKWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.877 [XNIO-1 task-1] TGiOZTyvQ0uxDNCpsgRKWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.877 [XNIO-1 task-1] TGiOZTyvQ0uxDNCpsgRKWg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.879 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2f6e63da +09:12:51.886 [XNIO-1 task-1] MYKQ7uSFQWSazMNfvQEkSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.886 [XNIO-1 task-1] MYKQ7uSFQWSazMNfvQEkSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.886 [XNIO-1 task-1] MYKQ7uSFQWSazMNfvQEkSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.886 [XNIO-1 task-1] MYKQ7uSFQWSazMNfvQEkSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.894 [XNIO-1 task-1] 7ZfA_sylQYOq5DMiJw6hoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.894 [XNIO-1 task-1] 7ZfA_sylQYOq5DMiJw6hoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.894 [XNIO-1 task-1] 7ZfA_sylQYOq5DMiJw6hoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.894 [XNIO-1 task-1] 7ZfA_sylQYOq5DMiJw6hoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.894 [XNIO-1 task-1] 7ZfA_sylQYOq5DMiJw6hoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:51.894 [XNIO-1 task-1] 7ZfA_sylQYOq5DMiJw6hoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:51.899 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e28a74de-a06e-4d1b-96d3-a596c4973a56 +09:12:51.899 [XNIO-1 task-1] kQLfB1jwTk2b7jWaNhrhsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.899 [XNIO-1 task-1] kQLfB1jwTk2b7jWaNhrhsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.899 [XNIO-1 task-1] kQLfB1jwTk2b7jWaNhrhsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.899 [XNIO-1 task-1] kQLfB1jwTk2b7jWaNhrhsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.907 [XNIO-1 task-1] lci91gX0S0OVo_VSqWjKYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.908 [XNIO-1 task-1] lci91gX0S0OVo_VSqWjKYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.908 [XNIO-1 task-1] lci91gX0S0OVo_VSqWjKYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.908 [XNIO-1 task-1] lci91gX0S0OVo_VSqWjKYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.908 [XNIO-1 task-1] lci91gX0S0OVo_VSqWjKYg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.916 [XNIO-1 task-1] v8vfIbcpSeCAV27onCXr4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.916 [XNIO-1 task-1] v8vfIbcpSeCAV27onCXr4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.916 [XNIO-1 task-1] v8vfIbcpSeCAV27onCXr4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.916 [XNIO-1 task-1] v8vfIbcpSeCAV27onCXr4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.916 [XNIO-1 task-1] v8vfIbcpSeCAV27onCXr4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.918 [XNIO-1 task-1] nedPBIFARuOqvc10BuRkUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.918 [XNIO-1 task-1] nedPBIFARuOqvc10BuRkUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.918 [XNIO-1 task-1] nedPBIFARuOqvc10BuRkUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.918 [XNIO-1 task-1] nedPBIFARuOqvc10BuRkUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.918 [XNIO-1 task-1] nedPBIFARuOqvc10BuRkUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.927 [XNIO-1 task-1] SDqKASwqR7uin_aM_VSWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.927 [XNIO-1 task-1] SDqKASwqR7uin_aM_VSWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.927 [XNIO-1 task-1] SDqKASwqR7uin_aM_VSWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.927 [XNIO-1 task-1] SDqKASwqR7uin_aM_VSWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.927 [XNIO-1 task-1] SDqKASwqR7uin_aM_VSWgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.932 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:17e0d1ee +09:12:51.937 [XNIO-1 task-1] WDJU-MmwR0uxxWPQUhSYsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.937 [XNIO-1 task-1] WDJU-MmwR0uxxWPQUhSYsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.937 [XNIO-1 task-1] WDJU-MmwR0uxxWPQUhSYsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.937 [XNIO-1 task-1] WDJU-MmwR0uxxWPQUhSYsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.938 [XNIO-1 task-1] WDJU-MmwR0uxxWPQUhSYsg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.942 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:652d0b05 +09:12:51.944 [XNIO-1 task-1] XM4OAKTjToe1UG0EM9kaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.944 [XNIO-1 task-1] XM4OAKTjToe1UG0EM9kaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.944 [XNIO-1 task-1] XM4OAKTjToe1UG0EM9kaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.944 [XNIO-1 task-1] XM4OAKTjToe1UG0EM9kaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.944 [XNIO-1 task-1] XM4OAKTjToe1UG0EM9kaJA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.945 [XNIO-1 task-1] XM4OAKTjToe1UG0EM9kaJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:51.951 [XNIO-1 task-1] Ejm6o7qbRcKlo387jz7eHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.952 [XNIO-1 task-1] Ejm6o7qbRcKlo387jz7eHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.952 [XNIO-1 task-1] Ejm6o7qbRcKlo387jz7eHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.952 [XNIO-1 task-1] Ejm6o7qbRcKlo387jz7eHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.952 [XNIO-1 task-1] Ejm6o7qbRcKlo387jz7eHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.954 [XNIO-1 task-1] Ejm6o7qbRcKlo387jz7eHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:51.957 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ab50a191-ad5f-485d-8692-0bae97f05973 +09:12:51.958 [XNIO-1 task-1] SPhWWmjTTnCpmW3z7T31Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.958 [XNIO-1 task-1] SPhWWmjTTnCpmW3z7T31Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.958 [XNIO-1 task-1] SPhWWmjTTnCpmW3z7T31Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.958 [XNIO-1 task-1] SPhWWmjTTnCpmW3z7T31Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.958 [XNIO-1 task-1] SPhWWmjTTnCpmW3z7T31Zg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:51.961 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2f6e63da +09:12:51.961 [XNIO-1 task-1] SPhWWmjTTnCpmW3z7T31Zg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:51.965 [XNIO-1 task-1] _h6_5iMLR6qm3GiyPcW4Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:51.965 [XNIO-1 task-1] _h6_5iMLR6qm3GiyPcW4Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.965 [XNIO-1 task-1] _h6_5iMLR6qm3GiyPcW4Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.965 [XNIO-1 task-1] _h6_5iMLR6qm3GiyPcW4Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:51.966 [XNIO-1 task-1] _h6_5iMLR6qm3GiyPcW4Vw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:51.967 [XNIO-1 task-1] _h6_5iMLR6qm3GiyPcW4Vw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:51.971 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2f8c438e-6aa5-47e9-b8c6-bf9b5c4602cb +09:12:51.973 [XNIO-1 task-1] nprtHiXTSc-DrU_Htc3dvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.973 [XNIO-1 task-1] nprtHiXTSc-DrU_Htc3dvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.973 [XNIO-1 task-1] nprtHiXTSc-DrU_Htc3dvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:51.973 [XNIO-1 task-1] nprtHiXTSc-DrU_Htc3dvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.973 [XNIO-1 task-1] nprtHiXTSc-DrU_Htc3dvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.975 [XNIO-1 task-1] 2YX8bNp2QgqGsXHQmhxNnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.975 [XNIO-1 task-1] 2YX8bNp2QgqGsXHQmhxNnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.975 [XNIO-1 task-1] 2YX8bNp2QgqGsXHQmhxNnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:51.975 [XNIO-1 task-1] 2YX8bNp2QgqGsXHQmhxNnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:51.975 [XNIO-1 task-1] 2YX8bNp2QgqGsXHQmhxNnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:51.975 [XNIO-1 task-1] 2YX8bNp2QgqGsXHQmhxNnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:51.980 [XNIO-1 task-1] OmeKwSc8TZSGJn04uAq_-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.980 [XNIO-1 task-1] OmeKwSc8TZSGJn04uAq_-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.980 [XNIO-1 task-1] OmeKwSc8TZSGJn04uAq_-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.980 [XNIO-1 task-1] OmeKwSc8TZSGJn04uAq_-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.986 [XNIO-1 task-1] oaKMX-SUSQKQEYcJCxWB-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.986 [XNIO-1 task-1] oaKMX-SUSQKQEYcJCxWB-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:51.986 [XNIO-1 task-1] oaKMX-SUSQKQEYcJCxWB-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:51.987 [XNIO-1 task-1] oaKMX-SUSQKQEYcJCxWB-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.987 [XNIO-1 task-1] oaKMX-SUSQKQEYcJCxWB-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:51.993 [XNIO-1 task-1] 8UQINWSlSYa3kg0uTnT2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.993 [XNIO-1 task-1] 8UQINWSlSYa3kg0uTnT2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.994 [XNIO-1 task-1] 8UQINWSlSYa3kg0uTnT2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:51.994 [XNIO-1 task-1] 8UQINWSlSYa3kg0uTnT2ag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.000 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:340f492a +09:12:52.003 [XNIO-1 task-1] pMM1a7f5R4ugmhmkgqJB-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.003 [XNIO-1 task-1] pMM1a7f5R4ugmhmkgqJB-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.003 [XNIO-1 task-1] pMM1a7f5R4ugmhmkgqJB-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.003 [XNIO-1 task-1] pMM1a7f5R4ugmhmkgqJB-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.003 [XNIO-1 task-1] pMM1a7f5R4ugmhmkgqJB-A DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.004 [XNIO-1 task-1] pMM1a7f5R4ugmhmkgqJB-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.008 [XNIO-1 task-1] _FD4764gTz-UoU9d3HxPzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.008 [XNIO-1 task-1] _FD4764gTz-UoU9d3HxPzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.008 [XNIO-1 task-1] _FD4764gTz-UoU9d3HxPzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.008 [XNIO-1 task-1] _FD4764gTz-UoU9d3HxPzw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.014 [XNIO-1 task-1] azvb3bXWTdScmGaQHZx6aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.014 [XNIO-1 task-1] azvb3bXWTdScmGaQHZx6aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.014 [XNIO-1 task-1] azvb3bXWTdScmGaQHZx6aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.015 [XNIO-1 task-1] azvb3bXWTdScmGaQHZx6aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.015 [XNIO-1 task-1] azvb3bXWTdScmGaQHZx6aA DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.015 [XNIO-1 task-1] azvb3bXWTdScmGaQHZx6aA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.019 [XNIO-1 task-1] xCRhQr46TEGijD7eHV2kWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.019 [XNIO-1 task-1] xCRhQr46TEGijD7eHV2kWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.019 [XNIO-1 task-1] xCRhQr46TEGijD7eHV2kWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.019 [XNIO-1 task-1] xCRhQr46TEGijD7eHV2kWA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.028 [XNIO-1 task-1] ZkPRQvBdSHKu4sZ765lZLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.028 [XNIO-1 task-1] ZkPRQvBdSHKu4sZ765lZLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.028 [XNIO-1 task-1] ZkPRQvBdSHKu4sZ765lZLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.028 [XNIO-1 task-1] ZkPRQvBdSHKu4sZ765lZLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.029 [XNIO-1 task-1] ZkPRQvBdSHKu4sZ765lZLA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.034 [XNIO-1 task-1] uFW5CwJkQrS4giv5DRY-Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.034 [XNIO-1 task-1] uFW5CwJkQrS4giv5DRY-Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.034 [XNIO-1 task-1] uFW5CwJkQrS4giv5DRY-Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.034 [XNIO-1 task-1] uFW5CwJkQrS4giv5DRY-Cg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.040 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d1df2362 +09:12:52.045 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:eb9fe925-617a-4d0a-8478-631c24c0727f +09:12:52.045 [XNIO-1 task-1] kn4jpqImTe-cLWXtq-08ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.045 [XNIO-1 task-1] kn4jpqImTe-cLWXtq-08ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.045 [XNIO-1 task-1] kn4jpqImTe-cLWXtq-08ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.045 [XNIO-1 task-1] kn4jpqImTe-cLWXtq-08ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.045 [XNIO-1 task-1] kn4jpqImTe-cLWXtq-08ZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.045 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:eb9fe925-617a-4d0a-8478-631c24c0727f +09:12:52.046 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:340f492a +09:12:52.048 [XNIO-1 task-1] lKS8O5aRStWKueUUWAioNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.048 [XNIO-1 task-1] lKS8O5aRStWKueUUWAioNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.048 [XNIO-1 task-1] lKS8O5aRStWKueUUWAioNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.048 [XNIO-1 task-1] lKS8O5aRStWKueUUWAioNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.048 [XNIO-1 task-1] lKS8O5aRStWKueUUWAioNw DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.048 [XNIO-1 task-1] lKS8O5aRStWKueUUWAioNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.050 [XNIO-1 task-1] air9yvi1S2KirCUegiUKog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.050 [XNIO-1 task-1] air9yvi1S2KirCUegiUKog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.050 [XNIO-1 task-1] air9yvi1S2KirCUegiUKog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.050 [XNIO-1 task-1] air9yvi1S2KirCUegiUKog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.050 [XNIO-1 task-1] air9yvi1S2KirCUegiUKog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.054 [XNIO-1 task-1] TjH5nRr0SYWkdtjCRWdt0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.054 [XNIO-1 task-1] TjH5nRr0SYWkdtjCRWdt0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.054 [XNIO-1 task-1] TjH5nRr0SYWkdtjCRWdt0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.054 [XNIO-1 task-1] TjH5nRr0SYWkdtjCRWdt0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.054 [XNIO-1 task-1] TjH5nRr0SYWkdtjCRWdt0A DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.054 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.064 [XNIO-1 task-1] zcVt9KUBS2WPoQNcwci8Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de7e617f-813a-4d76-879f-1abc4fb4e500, base path is set to: null +09:12:52.064 [XNIO-1 task-1] zcVt9KUBS2WPoQNcwci8Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.064 [XNIO-1 task-1] zcVt9KUBS2WPoQNcwci8Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.064 [XNIO-1 task-1] zcVt9KUBS2WPoQNcwci8Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de7e617f-813a-4d76-879f-1abc4fb4e500, base path is set to: null +09:12:52.064 [XNIO-1 task-1] zcVt9KUBS2WPoQNcwci8Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "de7e617f-813a-4d76-879f-1abc4fb4e500", "de7e617f-813a-4d76-879f-1abc4fb4e500", refreshToken) +09:12:52.068 [XNIO-1 task-1] rWPspWIkQueHpMIGr2Vr2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.068 [XNIO-1 task-1] rWPspWIkQueHpMIGr2Vr2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.068 [XNIO-1 task-1] rWPspWIkQueHpMIGr2Vr2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.068 [XNIO-1 task-1] rWPspWIkQueHpMIGr2Vr2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.068 [XNIO-1 task-1] rWPspWIkQueHpMIGr2Vr2w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.072 [XNIO-1 task-1] JC07I3QIQmqrf_gcf1rs3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.072 [XNIO-1 task-1] JC07I3QIQmqrf_gcf1rs3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.072 [XNIO-1 task-1] JC07I3QIQmqrf_gcf1rs3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.073 [XNIO-1 task-1] JC07I3QIQmqrf_gcf1rs3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.076 [XNIO-1 task-1] icDzgJQUSuiiH_NmaBCVQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de7e617f-813a-4d76-879f-1abc4fb4e500, base path is set to: null +09:12:52.076 [XNIO-1 task-1] icDzgJQUSuiiH_NmaBCVQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.076 [XNIO-1 task-1] icDzgJQUSuiiH_NmaBCVQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.076 [XNIO-1 task-1] icDzgJQUSuiiH_NmaBCVQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de7e617f-813a-4d76-879f-1abc4fb4e500, base path is set to: null +09:12:52.076 [XNIO-1 task-1] icDzgJQUSuiiH_NmaBCVQg DEBUG com.networknt.schema.TypeValidator debug - validate( "de7e617f-813a-4d76-879f-1abc4fb4e500", "de7e617f-813a-4d76-879f-1abc4fb4e500", refreshToken) +09:12:52.085 [XNIO-1 task-1] raaUuS3fSFeWCP0h9j5eEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.085 [XNIO-1 task-1] raaUuS3fSFeWCP0h9j5eEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.086 [XNIO-1 task-1] raaUuS3fSFeWCP0h9j5eEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.086 [XNIO-1 task-1] raaUuS3fSFeWCP0h9j5eEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.086 [XNIO-1 task-1] raaUuS3fSFeWCP0h9j5eEA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.094 [XNIO-1 task-1] yqpy04eQSz-R1fOQMwsEOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.094 [XNIO-1 task-1] yqpy04eQSz-R1fOQMwsEOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.095 [XNIO-1 task-1] yqpy04eQSz-R1fOQMwsEOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.095 [XNIO-1 task-1] yqpy04eQSz-R1fOQMwsEOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.100 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35fd0571 +09:12:52.100 [XNIO-1 task-1] baaZ4dxMSy-G_NXAu1jscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.100 [XNIO-1 task-1] baaZ4dxMSy-G_NXAu1jscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.100 [XNIO-1 task-1] baaZ4dxMSy-G_NXAu1jscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.100 [XNIO-1 task-1] baaZ4dxMSy-G_NXAu1jscA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.102 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:35fd0571 +09:12:52.104 [XNIO-1 task-1] XOjgO1toQTy0YeFsyzo4BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.104 [XNIO-1 task-1] XOjgO1toQTy0YeFsyzo4BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.104 [XNIO-1 task-1] XOjgO1toQTy0YeFsyzo4BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.104 [XNIO-1 task-1] XOjgO1toQTy0YeFsyzo4BA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.105 [XNIO-1 task-1] XOjgO1toQTy0YeFsyzo4BA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.109 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d1df2362 +09:12:52.110 [XNIO-1 task-1] BHKodszmRPeWfRVKQUbZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:52.110 [XNIO-1 task-1] BHKodszmRPeWfRVKQUbZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.110 [XNIO-1 task-1] BHKodszmRPeWfRVKQUbZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.110 [XNIO-1 task-1] BHKodszmRPeWfRVKQUbZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:52.110 [XNIO-1 task-1] BHKodszmRPeWfRVKQUbZIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:52.113 [XNIO-1 task-1] 9djfuH9gSOSGwcKKLpyC4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.113 [XNIO-1 task-1] 9djfuH9gSOSGwcKKLpyC4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.113 [XNIO-1 task-1] 9djfuH9gSOSGwcKKLpyC4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.114 [XNIO-1 task-1] 9djfuH9gSOSGwcKKLpyC4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.120 [XNIO-1 task-1] HKbiACdnTsOb_FlbB5BTrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de7e617f-813a-4d76-879f-1abc4fb4e500, base path is set to: null +09:12:52.120 [XNIO-1 task-1] HKbiACdnTsOb_FlbB5BTrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.120 [XNIO-1 task-1] HKbiACdnTsOb_FlbB5BTrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.120 [XNIO-1 task-1] HKbiACdnTsOb_FlbB5BTrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/de7e617f-813a-4d76-879f-1abc4fb4e500, base path is set to: null +09:12:52.121 [XNIO-1 task-1] HKbiACdnTsOb_FlbB5BTrA DEBUG com.networknt.schema.TypeValidator debug - validate( "de7e617f-813a-4d76-879f-1abc4fb4e500", "de7e617f-813a-4d76-879f-1abc4fb4e500", refreshToken) +09:12:52.122 [XNIO-1 task-1] HKbiACdnTsOb_FlbB5BTrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token de7e617f-813a-4d76-879f-1abc4fb4e500 is not found.","severity":"ERROR"} +09:12:52.124 [XNIO-1 task-1] thOq6JcjSQeKSMcK91EDGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.124 [XNIO-1 task-1] thOq6JcjSQeKSMcK91EDGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.124 [XNIO-1 task-1] thOq6JcjSQeKSMcK91EDGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.124 [XNIO-1 task-1] thOq6JcjSQeKSMcK91EDGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.124 [XNIO-1 task-1] thOq6JcjSQeKSMcK91EDGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.126 [XNIO-1 task-1] thOq6JcjSQeKSMcK91EDGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.128 [XNIO-1 task-1] nU7JwDBnQt-JWC4LgjpeCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60241f86-24ea-4541-b3c5-6dc480924178 +09:12:52.128 [XNIO-1 task-1] nU7JwDBnQt-JWC4LgjpeCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.128 [XNIO-1 task-1] nU7JwDBnQt-JWC4LgjpeCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.128 [XNIO-1 task-1] nU7JwDBnQt-JWC4LgjpeCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60241f86-24ea-4541-b3c5-6dc480924178 +09:12:52.129 [XNIO-1 task-1] nU7JwDBnQt-JWC4LgjpeCA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 60241f86-24ea-4541-b3c5-6dc480924178 +09:12:52.135 [XNIO-1 task-1] yzP-MVfYQGuQTCa7RfsyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:52.135 [XNIO-1 task-1] yzP-MVfYQGuQTCa7RfsyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.135 [XNIO-1 task-1] yzP-MVfYQGuQTCa7RfsyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.135 [XNIO-1 task-1] yzP-MVfYQGuQTCa7RfsyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:52.135 [XNIO-1 task-1] yzP-MVfYQGuQTCa7RfsyFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f2cf858a-c3d3-410b-bcf2-215b46b6288f +09:12:52.137 [XNIO-1 task-1] xkYzt76mQu-_fr041Jf9vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.137 [XNIO-1 task-1] xkYzt76mQu-_fr041Jf9vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.137 [XNIO-1 task-1] xkYzt76mQu-_fr041Jf9vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.137 [XNIO-1 task-1] xkYzt76mQu-_fr041Jf9vw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.140 [XNIO-1 task-1] nahZvYx9SJe0D2wo9zeTiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.140 [XNIO-1 task-1] nahZvYx9SJe0D2wo9zeTiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.141 [XNIO-1 task-1] nahZvYx9SJe0D2wo9zeTiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.141 [XNIO-1 task-1] nahZvYx9SJe0D2wo9zeTiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.141 [XNIO-1 task-1] nahZvYx9SJe0D2wo9zeTiw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.147 [XNIO-1 task-1] cdOOG8yRSu2_l2JKXayU_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.147 [XNIO-1 task-1] cdOOG8yRSu2_l2JKXayU_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.147 [XNIO-1 task-1] cdOOG8yRSu2_l2JKXayU_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.148 [XNIO-1 task-1] cdOOG8yRSu2_l2JKXayU_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.152 [XNIO-1 task-1] jJR1xHH6SF6fkwX3QtiN1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.152 [XNIO-1 task-1] jJR1xHH6SF6fkwX3QtiN1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.152 [XNIO-1 task-1] jJR1xHH6SF6fkwX3QtiN1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.152 [XNIO-1 task-1] jJR1xHH6SF6fkwX3QtiN1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.152 [XNIO-1 task-1] jJR1xHH6SF6fkwX3QtiN1A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.155 [XNIO-1 task-1] 0hmpSGpNStOty3UrLmrFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.155 [XNIO-1 task-1] 0hmpSGpNStOty3UrLmrFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.156 [XNIO-1 task-1] 0hmpSGpNStOty3UrLmrFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.156 [XNIO-1 task-1] 0hmpSGpNStOty3UrLmrFQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.156 [XNIO-1 task-1] 0hmpSGpNStOty3UrLmrFQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.157 [XNIO-1 task-1] 0hmpSGpNStOty3UrLmrFQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.159 [XNIO-1 task-1] nW-O0G6TQgK7raZRp1Bliw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.159 [XNIO-1 task-1] nW-O0G6TQgK7raZRp1Bliw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.159 [XNIO-1 task-1] nW-O0G6TQgK7raZRp1Bliw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.159 [XNIO-1 task-1] nW-O0G6TQgK7raZRp1Bliw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.162 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:65dd6f68 +09:12:52.166 [XNIO-1 task-1] ezMoy4NJTJ6msKVbrPWq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60241f86-24ea-4541-b3c5-6dc480924178 +09:12:52.166 [XNIO-1 task-1] ezMoy4NJTJ6msKVbrPWq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.166 [XNIO-1 task-1] ezMoy4NJTJ6msKVbrPWq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.166 [XNIO-1 task-1] ezMoy4NJTJ6msKVbrPWq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/60241f86-24ea-4541-b3c5-6dc480924178 +09:12:52.166 [XNIO-1 task-1] ezMoy4NJTJ6msKVbrPWq5w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 60241f86-24ea-4541-b3c5-6dc480924178 +09:12:52.169 [XNIO-1 task-1] QPrf05aYR-iz-XUXphSrBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.169 [XNIO-1 task-1] QPrf05aYR-iz-XUXphSrBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.169 [XNIO-1 task-1] QPrf05aYR-iz-XUXphSrBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.169 [XNIO-1 task-1] QPrf05aYR-iz-XUXphSrBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.169 [XNIO-1 task-1] QPrf05aYR-iz-XUXphSrBw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.170 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.174 [XNIO-1 task-1] qves6ctGRTaARg14iyrThQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.174 [XNIO-1 task-1] qves6ctGRTaARg14iyrThQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.174 [XNIO-1 task-1] qves6ctGRTaARg14iyrThQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.174 [XNIO-1 task-1] qves6ctGRTaARg14iyrThQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.174 [XNIO-1 task-1] qves6ctGRTaARg14iyrThQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.174 [XNIO-1 task-1] qves6ctGRTaARg14iyrThQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.176 [XNIO-1 task-1] _locK8B4SIuxG3PfSldlnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.177 [XNIO-1 task-1] _locK8B4SIuxG3PfSldlnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.177 [XNIO-1 task-1] _locK8B4SIuxG3PfSldlnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.177 [XNIO-1 task-1] _locK8B4SIuxG3PfSldlnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.177 [XNIO-1 task-1] _locK8B4SIuxG3PfSldlnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.178 [XNIO-1 task-1] -1ojTz_0Sci4RmUh95V_xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.178 [XNIO-1 task-1] -1ojTz_0Sci4RmUh95V_xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.178 [XNIO-1 task-1] -1ojTz_0Sci4RmUh95V_xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.178 [XNIO-1 task-1] -1ojTz_0Sci4RmUh95V_xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.179 [XNIO-1 task-1] -1ojTz_0Sci4RmUh95V_xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.179 [XNIO-1 task-1] -1ojTz_0Sci4RmUh95V_xQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.181 [XNIO-1 task-1] sw5IOidjR9W6-DBooDDSdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.181 [XNIO-1 task-1] sw5IOidjR9W6-DBooDDSdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.181 [XNIO-1 task-1] sw5IOidjR9W6-DBooDDSdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.181 [XNIO-1 task-1] sw5IOidjR9W6-DBooDDSdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.181 [XNIO-1 task-1] sw5IOidjR9W6-DBooDDSdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.182 [XNIO-1 task-1] scycbyhZQD6VycqvPK6lfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.182 [XNIO-1 task-1] scycbyhZQD6VycqvPK6lfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.182 [XNIO-1 task-1] scycbyhZQD6VycqvPK6lfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.183 [XNIO-1 task-1] scycbyhZQD6VycqvPK6lfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.183 [XNIO-1 task-1] scycbyhZQD6VycqvPK6lfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.187 [XNIO-1 task-1] glTtNdHFSI6VEKBRoH7QJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.187 [XNIO-1 task-1] glTtNdHFSI6VEKBRoH7QJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.187 [XNIO-1 task-1] glTtNdHFSI6VEKBRoH7QJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.187 [XNIO-1 task-1] glTtNdHFSI6VEKBRoH7QJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.187 [XNIO-1 task-1] glTtNdHFSI6VEKBRoH7QJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.188 [XNIO-1 task-1] ig2yNRYlSxu5KjR_x_bITQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.188 [XNIO-1 task-1] ig2yNRYlSxu5KjR_x_bITQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.189 [XNIO-1 task-1] ig2yNRYlSxu5KjR_x_bITQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.189 [XNIO-1 task-1] ig2yNRYlSxu5KjR_x_bITQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.189 [XNIO-1 task-1] ig2yNRYlSxu5KjR_x_bITQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.193 [XNIO-1 task-1] xOySu6FyRau2znc2ZvSjmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.193 [XNIO-1 task-1] xOySu6FyRau2znc2ZvSjmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.193 [XNIO-1 task-1] xOySu6FyRau2znc2ZvSjmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.193 [XNIO-1 task-1] xOySu6FyRau2znc2ZvSjmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.194 [XNIO-1 task-1] xOySu6FyRau2znc2ZvSjmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.197 [XNIO-1 task-1] 9R4mEBoZT4SP-4NWkDcl4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.197 [XNIO-1 task-1] 9R4mEBoZT4SP-4NWkDcl4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.197 [XNIO-1 task-1] 9R4mEBoZT4SP-4NWkDcl4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.197 [XNIO-1 task-1] 9R4mEBoZT4SP-4NWkDcl4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.197 [XNIO-1 task-1] 9R4mEBoZT4SP-4NWkDcl4g DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.208 [XNIO-1 task-1] ttWKqwyoRf2vUYAu3J2G-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.208 [XNIO-1 task-1] ttWKqwyoRf2vUYAu3J2G-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.208 [XNIO-1 task-1] ttWKqwyoRf2vUYAu3J2G-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.208 [XNIO-1 task-1] ttWKqwyoRf2vUYAu3J2G-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.208 [XNIO-1 task-1] ttWKqwyoRf2vUYAu3J2G-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.209 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.211 [XNIO-1 task-1] Jc9Dypl8TgibTkxDNUPV5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.211 [XNIO-1 task-1] Jc9Dypl8TgibTkxDNUPV5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.211 [XNIO-1 task-1] Jc9Dypl8TgibTkxDNUPV5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.212 [XNIO-1 task-1] Jc9Dypl8TgibTkxDNUPV5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.212 [XNIO-1 task-1] Jc9Dypl8TgibTkxDNUPV5w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.217 [XNIO-1 task-1] sER1CGMORDm1rTwqj4z7GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.217 [XNIO-1 task-1] sER1CGMORDm1rTwqj4z7GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.217 [XNIO-1 task-1] sER1CGMORDm1rTwqj4z7GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.217 [XNIO-1 task-1] sER1CGMORDm1rTwqj4z7GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.218 [XNIO-1 task-1] sER1CGMORDm1rTwqj4z7GA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.219 [XNIO-1 task-1] tI1UfUN6Rs-GUDhGNtr3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.220 [XNIO-1 task-1] tI1UfUN6Rs-GUDhGNtr3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.220 [XNIO-1 task-1] tI1UfUN6Rs-GUDhGNtr3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.220 [XNIO-1 task-1] tI1UfUN6Rs-GUDhGNtr3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.220 [XNIO-1 task-1] tI1UfUN6Rs-GUDhGNtr3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.221 [XNIO-1 task-1] tI1UfUN6Rs-GUDhGNtr3Sw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.223 [XNIO-1 task-1] SNoWqlOrSlyeN3c0pULmWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.223 [XNIO-1 task-1] SNoWqlOrSlyeN3c0pULmWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.223 [XNIO-1 task-1] SNoWqlOrSlyeN3c0pULmWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.223 [XNIO-1 task-1] SNoWqlOrSlyeN3c0pULmWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.224 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.229 [XNIO-1 task-1] XieMyzfpTZmz5HKn17tbug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.229 [XNIO-1 task-1] XieMyzfpTZmz5HKn17tbug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.229 [XNIO-1 task-1] XieMyzfpTZmz5HKn17tbug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.230 [XNIO-1 task-1] XieMyzfpTZmz5HKn17tbug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.230 [XNIO-1 task-1] XieMyzfpTZmz5HKn17tbug DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.234 [XNIO-1 task-1] xqhHmrVpTluCmebbPgYIMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.234 [XNIO-1 task-1] xqhHmrVpTluCmebbPgYIMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.234 [XNIO-1 task-1] xqhHmrVpTluCmebbPgYIMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.234 [XNIO-1 task-1] xqhHmrVpTluCmebbPgYIMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.238 [XNIO-1 task-1] j883PQkrQYKv12U21tRuNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2cf858a-c3d3-410b-bcf2-215b46b6288f, base path is set to: null +09:12:52.239 [XNIO-1 task-1] j883PQkrQYKv12U21tRuNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.239 [XNIO-1 task-1] j883PQkrQYKv12U21tRuNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.239 [XNIO-1 task-1] j883PQkrQYKv12U21tRuNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2cf858a-c3d3-410b-bcf2-215b46b6288f, base path is set to: null +09:12:52.239 [XNIO-1 task-1] j883PQkrQYKv12U21tRuNA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2cf858a-c3d3-410b-bcf2-215b46b6288f", "f2cf858a-c3d3-410b-bcf2-215b46b6288f", refreshToken) +09:12:52.241 [XNIO-1 task-1] 40scSzneTFu3SvT3Pjyc-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.242 [XNIO-1 task-1] 40scSzneTFu3SvT3Pjyc-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.242 [XNIO-1 task-1] 40scSzneTFu3SvT3Pjyc-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.242 [XNIO-1 task-1] 40scSzneTFu3SvT3Pjyc-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.242 [XNIO-1 task-1] 40scSzneTFu3SvT3Pjyc-w DEBUG com.networknt.schema.TypeValidator debug - validate( "b699a85d-f58b-458d-8686-9075ffeb6d1a", "b699a85d-f58b-458d-8686-9075ffeb6d1a", refreshToken) +09:12:52.242 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.245 [XNIO-1 task-1] otdACRVBR3ylTWZF0qTb9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.245 [XNIO-1 task-1] otdACRVBR3ylTWZF0qTb9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.245 [XNIO-1 task-1] otdACRVBR3ylTWZF0qTb9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.245 [XNIO-1 task-1] otdACRVBR3ylTWZF0qTb9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.245 [XNIO-1 task-1] otdACRVBR3ylTWZF0qTb9A DEBUG com.networknt.schema.TypeValidator debug - validate( "b699a85d-f58b-458d-8686-9075ffeb6d1a", "b699a85d-f58b-458d-8686-9075ffeb6d1a", refreshToken) +09:12:52.245 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.247 [XNIO-1 task-1] y8o659n2QSy0EDamuHq8-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.248 [XNIO-1 task-1] y8o659n2QSy0EDamuHq8-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.248 [XNIO-1 task-1] y8o659n2QSy0EDamuHq8-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.248 [XNIO-1 task-1] y8o659n2QSy0EDamuHq8-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.248 [XNIO-1 task-1] y8o659n2QSy0EDamuHq8-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b699a85d-f58b-458d-8686-9075ffeb6d1a", "b699a85d-f58b-458d-8686-9075ffeb6d1a", refreshToken) +09:12:52.248 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.251 [XNIO-1 task-1] jJw4kDEURUyas2H8OVT0rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.251 [XNIO-1 task-1] jJw4kDEURUyas2H8OVT0rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.252 [XNIO-1 task-1] jJw4kDEURUyas2H8OVT0rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.252 [XNIO-1 task-1] jJw4kDEURUyas2H8OVT0rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a, base path is set to: null +09:12:52.252 [XNIO-1 task-1] jJw4kDEURUyas2H8OVT0rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b699a85d-f58b-458d-8686-9075ffeb6d1a", "b699a85d-f58b-458d-8686-9075ffeb6d1a", refreshToken) +09:12:52.252 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.256 [XNIO-1 task-1] grZna0ShSP-RNRr-Bvmb5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.256 [XNIO-1 task-1] grZna0ShSP-RNRr-Bvmb5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.256 [XNIO-1 task-1] grZna0ShSP-RNRr-Bvmb5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.256 [XNIO-1 task-1] grZna0ShSP-RNRr-Bvmb5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.256 [XNIO-1 task-1] grZna0ShSP-RNRr-Bvmb5w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.260 [XNIO-1 task-1] yWEOAZTNQnaz9hYWQF_jjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.260 [XNIO-1 task-1] yWEOAZTNQnaz9hYWQF_jjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.260 [XNIO-1 task-1] yWEOAZTNQnaz9hYWQF_jjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.260 [XNIO-1 task-1] yWEOAZTNQnaz9hYWQF_jjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.260 [XNIO-1 task-1] yWEOAZTNQnaz9hYWQF_jjw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.261 [XNIO-1 task-1] yWEOAZTNQnaz9hYWQF_jjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.263 [XNIO-1 task-1] CCjXwKpLTSqCkdU44DdDRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.263 [XNIO-1 task-1] CCjXwKpLTSqCkdU44DdDRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.263 [XNIO-1 task-1] CCjXwKpLTSqCkdU44DdDRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.263 [XNIO-1 task-1] CCjXwKpLTSqCkdU44DdDRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.264 [XNIO-1 task-1] CCjXwKpLTSqCkdU44DdDRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.266 [XNIO-1 task-1] OT34C1XvShuqMVg-psnTUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.266 [XNIO-1 task-1] OT34C1XvShuqMVg-psnTUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.266 [XNIO-1 task-1] OT34C1XvShuqMVg-psnTUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.266 [XNIO-1 task-1] OT34C1XvShuqMVg-psnTUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.266 [XNIO-1 task-1] OT34C1XvShuqMVg-psnTUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.267 [XNIO-1 task-1] OT34C1XvShuqMVg-psnTUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.269 [XNIO-1 task-1] 6JQNwCSDQ9-t-c9aOMnC7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.269 [XNIO-1 task-1] 6JQNwCSDQ9-t-c9aOMnC7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.269 [XNIO-1 task-1] 6JQNwCSDQ9-t-c9aOMnC7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.269 [XNIO-1 task-1] 6JQNwCSDQ9-t-c9aOMnC7g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.275 [XNIO-1 task-1] wFXsL3vWRbypAVMksy_-xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.275 [XNIO-1 task-1] wFXsL3vWRbypAVMksy_-xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.275 [XNIO-1 task-1] wFXsL3vWRbypAVMksy_-xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.275 [XNIO-1 task-1] wFXsL3vWRbypAVMksy_-xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.275 [XNIO-1 task-1] wFXsL3vWRbypAVMksy_-xQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.279 [XNIO-1 task-1] eyKaRP3qRMO4v3ALaKVHxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.279 [XNIO-1 task-1] eyKaRP3qRMO4v3ALaKVHxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.279 [XNIO-1 task-1] eyKaRP3qRMO4v3ALaKVHxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.279 [XNIO-1 task-1] eyKaRP3qRMO4v3ALaKVHxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.284 [XNIO-1 task-1] PaMAyp0CS0mc1mKM2dkxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.284 [XNIO-1 task-1] PaMAyp0CS0mc1mKM2dkxcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.284 [XNIO-1 task-1] PaMAyp0CS0mc1mKM2dkxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.284 [XNIO-1 task-1] PaMAyp0CS0mc1mKM2dkxcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.284 [XNIO-1 task-1] PaMAyp0CS0mc1mKM2dkxcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.288 [XNIO-1 task-1] X504OtsrQg2iIQgDo1AmDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.288 [XNIO-1 task-1] X504OtsrQg2iIQgDo1AmDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.288 [XNIO-1 task-1] X504OtsrQg2iIQgDo1AmDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.288 [XNIO-1 task-1] X504OtsrQg2iIQgDo1AmDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.289 [XNIO-1 task-1] X504OtsrQg2iIQgDo1AmDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.290 [XNIO-1 task-1] X504OtsrQg2iIQgDo1AmDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.292 [XNIO-1 task-1] iGw4eOkeQ2yqDQEsg79GSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.293 [XNIO-1 task-1] iGw4eOkeQ2yqDQEsg79GSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.293 [XNIO-1 task-1] iGw4eOkeQ2yqDQEsg79GSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.293 [XNIO-1 task-1] iGw4eOkeQ2yqDQEsg79GSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.293 [XNIO-1 task-1] iGw4eOkeQ2yqDQEsg79GSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.294 [XNIO-1 task-1] iGw4eOkeQ2yqDQEsg79GSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.296 [XNIO-1 task-1] OneTKoqER9CBrZKJ5jAZZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.296 [XNIO-1 task-1] OneTKoqER9CBrZKJ5jAZZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.296 [XNIO-1 task-1] OneTKoqER9CBrZKJ5jAZZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.296 [XNIO-1 task-1] OneTKoqER9CBrZKJ5jAZZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.296 [XNIO-1 task-1] OneTKoqER9CBrZKJ5jAZZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.297 [XNIO-1 task-1] OneTKoqER9CBrZKJ5jAZZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.299 [XNIO-1 task-1] 2pXo90TcSsuw9e7R1cv12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.299 [XNIO-1 task-1] 2pXo90TcSsuw9e7R1cv12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.299 [XNIO-1 task-1] 2pXo90TcSsuw9e7R1cv12Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.299 [XNIO-1 task-1] 2pXo90TcSsuw9e7R1cv12Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.322 [XNIO-1 task-1] VgZcr3daST2KyjCNk32FCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.322 [XNIO-1 task-1] VgZcr3daST2KyjCNk32FCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.323 [XNIO-1 task-1] VgZcr3daST2KyjCNk32FCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.323 [XNIO-1 task-1] VgZcr3daST2KyjCNk32FCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.323 [XNIO-1 task-1] VgZcr3daST2KyjCNk32FCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.327 [XNIO-1 task-1] MOzkZdiWSVqX1wCfVYtzOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.327 [XNIO-1 task-1] MOzkZdiWSVqX1wCfVYtzOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.327 [XNIO-1 task-1] MOzkZdiWSVqX1wCfVYtzOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.327 [XNIO-1 task-1] MOzkZdiWSVqX1wCfVYtzOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.327 [XNIO-1 task-1] MOzkZdiWSVqX1wCfVYtzOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.329 [XNIO-1 task-1] Br_9mATWTv-FdRgJ4Uzajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.329 [XNIO-1 task-1] Br_9mATWTv-FdRgJ4Uzajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.329 [XNIO-1 task-1] Br_9mATWTv-FdRgJ4Uzajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.329 [XNIO-1 task-1] Br_9mATWTv-FdRgJ4Uzajg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.334 [XNIO-1 task-1] zR3IAQDhRLuOJ8rSL_ItvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.334 [XNIO-1 task-1] zR3IAQDhRLuOJ8rSL_ItvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.334 [XNIO-1 task-1] zR3IAQDhRLuOJ8rSL_ItvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.334 [XNIO-1 task-1] zR3IAQDhRLuOJ8rSL_ItvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.334 [XNIO-1 task-1] zR3IAQDhRLuOJ8rSL_ItvA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.338 [XNIO-1 task-1] eAEqnAUnSZqyMTZcBeZGJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.338 [XNIO-1 task-1] eAEqnAUnSZqyMTZcBeZGJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.338 [XNIO-1 task-1] eAEqnAUnSZqyMTZcBeZGJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.339 [XNIO-1 task-1] eAEqnAUnSZqyMTZcBeZGJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.339 [XNIO-1 task-1] eAEqnAUnSZqyMTZcBeZGJg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.340 [XNIO-1 task-1] eAEqnAUnSZqyMTZcBeZGJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.345 [XNIO-1 task-1] 0BCrvcvRRZCGeCktbgv6fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.345 [XNIO-1 task-1] 0BCrvcvRRZCGeCktbgv6fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.346 [XNIO-1 task-1] 0BCrvcvRRZCGeCktbgv6fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.346 [XNIO-1 task-1] 0BCrvcvRRZCGeCktbgv6fg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.350 [XNIO-1 task-1] 22C7kpLQRuSZwVN_c_JTJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.350 [XNIO-1 task-1] 22C7kpLQRuSZwVN_c_JTJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.350 [XNIO-1 task-1] 22C7kpLQRuSZwVN_c_JTJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.350 [XNIO-1 task-1] 22C7kpLQRuSZwVN_c_JTJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.351 [XNIO-1 task-1] 22C7kpLQRuSZwVN_c_JTJg DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.351 [XNIO-1 task-1] 22C7kpLQRuSZwVN_c_JTJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.354 [XNIO-1 task-1] KlbMdrU8QsaRhD56e39viQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.354 [XNIO-1 task-1] KlbMdrU8QsaRhD56e39viQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.354 [XNIO-1 task-1] KlbMdrU8QsaRhD56e39viQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.354 [XNIO-1 task-1] KlbMdrU8QsaRhD56e39viQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.354 [XNIO-1 task-1] KlbMdrU8QsaRhD56e39viQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.356 [XNIO-1 task-1] fcw_ER0MRKCpyl6Ra-b4_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.356 [XNIO-1 task-1] fcw_ER0MRKCpyl6Ra-b4_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.356 [XNIO-1 task-1] fcw_ER0MRKCpyl6Ra-b4_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.356 [XNIO-1 task-1] fcw_ER0MRKCpyl6Ra-b4_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.356 [XNIO-1 task-1] fcw_ER0MRKCpyl6Ra-b4_A DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.356 [XNIO-1 task-1] fcw_ER0MRKCpyl6Ra-b4_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.358 [XNIO-1 task-1] ijzep4IORMC1Dul14VbQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.358 [XNIO-1 task-1] ijzep4IORMC1Dul14VbQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.358 [XNIO-1 task-1] ijzep4IORMC1Dul14VbQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.358 [XNIO-1 task-1] ijzep4IORMC1Dul14VbQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.358 [XNIO-1 task-1] ijzep4IORMC1Dul14VbQww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.360 [XNIO-1 task-1] gBPgjg2kTIGQFvpk68tqjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.360 [XNIO-1 task-1] gBPgjg2kTIGQFvpk68tqjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.360 [XNIO-1 task-1] gBPgjg2kTIGQFvpk68tqjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.360 [XNIO-1 task-1] gBPgjg2kTIGQFvpk68tqjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.360 [XNIO-1 task-1] gBPgjg2kTIGQFvpk68tqjA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.364 [XNIO-1 task-1] hDEqT5YYTkalyauADK7iOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.364 [XNIO-1 task-1] hDEqT5YYTkalyauADK7iOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.364 [XNIO-1 task-1] hDEqT5YYTkalyauADK7iOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.364 [XNIO-1 task-1] hDEqT5YYTkalyauADK7iOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.369 [XNIO-1 task-1] Y0qMhp92TtWPO7Ph6F_aGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.369 [XNIO-1 task-1] Y0qMhp92TtWPO7Ph6F_aGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.369 [XNIO-1 task-1] Y0qMhp92TtWPO7Ph6F_aGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.369 [XNIO-1 task-1] Y0qMhp92TtWPO7Ph6F_aGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.369 [XNIO-1 task-1] Y0qMhp92TtWPO7Ph6F_aGA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.373 [XNIO-1 task-1] AUTxiqq6TDKmw0T2tEp_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.373 [XNIO-1 task-1] AUTxiqq6TDKmw0T2tEp_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.373 [XNIO-1 task-1] AUTxiqq6TDKmw0T2tEp_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.374 [XNIO-1 task-1] AUTxiqq6TDKmw0T2tEp_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.374 [XNIO-1 task-1] AUTxiqq6TDKmw0T2tEp_AQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.375 [XNIO-1 task-1] jRJ9YKeFQzaaY9EHm-iVEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.375 [XNIO-1 task-1] jRJ9YKeFQzaaY9EHm-iVEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.375 [XNIO-1 task-1] jRJ9YKeFQzaaY9EHm-iVEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.375 [XNIO-1 task-1] jRJ9YKeFQzaaY9EHm-iVEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.376 [XNIO-1 task-1] jRJ9YKeFQzaaY9EHm-iVEw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.381 [XNIO-1 task-1] STvSoerVSqaM07yWjtfx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.381 [XNIO-1 task-1] STvSoerVSqaM07yWjtfx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.381 [XNIO-1 task-1] STvSoerVSqaM07yWjtfx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.381 [XNIO-1 task-1] STvSoerVSqaM07yWjtfx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.382 [XNIO-1 task-1] STvSoerVSqaM07yWjtfx9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.383 [XNIO-1 task-1] 0Nh9iwVHTJue7hBM3Jwitg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.383 [XNIO-1 task-1] 0Nh9iwVHTJue7hBM3Jwitg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.383 [XNIO-1 task-1] 0Nh9iwVHTJue7hBM3Jwitg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.383 [XNIO-1 task-1] 0Nh9iwVHTJue7hBM3Jwitg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.384 [XNIO-1 task-1] 0Nh9iwVHTJue7hBM3Jwitg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.384 [XNIO-1 task-1] 0Nh9iwVHTJue7hBM3Jwitg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.385 [XNIO-1 task-1] nPsqnzoeQNeQqoRXnYY9ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.386 [XNIO-1 task-1] nPsqnzoeQNeQqoRXnYY9ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.386 [XNIO-1 task-1] nPsqnzoeQNeQqoRXnYY9ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.386 [XNIO-1 task-1] nPsqnzoeQNeQqoRXnYY9ww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.390 [XNIO-1 task-1] ErAMsSQyQCqK1o5aoogHwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.390 [XNIO-1 task-1] ErAMsSQyQCqK1o5aoogHwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.390 [XNIO-1 task-1] ErAMsSQyQCqK1o5aoogHwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.390 [XNIO-1 task-1] ErAMsSQyQCqK1o5aoogHwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.391 [XNIO-1 task-1] ErAMsSQyQCqK1o5aoogHwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.394 [XNIO-1 task-1] hMMfMpzvTLqsYBPcti505Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.394 [XNIO-1 task-1] hMMfMpzvTLqsYBPcti505Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.394 [XNIO-1 task-1] hMMfMpzvTLqsYBPcti505Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.394 [XNIO-1 task-1] hMMfMpzvTLqsYBPcti505Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.398 [XNIO-1 task-1] ENBOKe31TC-bCYiH-jvAgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.398 [XNIO-1 task-1] ENBOKe31TC-bCYiH-jvAgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.398 [XNIO-1 task-1] ENBOKe31TC-bCYiH-jvAgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.398 [XNIO-1 task-1] ENBOKe31TC-bCYiH-jvAgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.399 [XNIO-1 task-1] ENBOKe31TC-bCYiH-jvAgw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.399 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.402 [XNIO-1 task-1] DxM-ecrjSSyN0EkMVqvYAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.402 [XNIO-1 task-1] DxM-ecrjSSyN0EkMVqvYAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.402 [XNIO-1 task-1] DxM-ecrjSSyN0EkMVqvYAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.402 [XNIO-1 task-1] DxM-ecrjSSyN0EkMVqvYAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.402 [XNIO-1 task-1] DxM-ecrjSSyN0EkMVqvYAg DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.402 [XNIO-1 task-1] DxM-ecrjSSyN0EkMVqvYAg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.403 [XNIO-1 task-1] rSmMLgW0T-qYrUBWW-N1CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.403 [XNIO-1 task-1] rSmMLgW0T-qYrUBWW-N1CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.404 [XNIO-1 task-1] rSmMLgW0T-qYrUBWW-N1CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.404 [XNIO-1 task-1] rSmMLgW0T-qYrUBWW-N1CQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.408 [XNIO-1 task-1] CogvJlc4QdWuWv5frZtuEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.408 [XNIO-1 task-1] CogvJlc4QdWuWv5frZtuEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.408 [XNIO-1 task-1] CogvJlc4QdWuWv5frZtuEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.408 [XNIO-1 task-1] CogvJlc4QdWuWv5frZtuEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.408 [XNIO-1 task-1] CogvJlc4QdWuWv5frZtuEg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.408 [XNIO-1 task-1] CogvJlc4QdWuWv5frZtuEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.410 [XNIO-1 task-1] UmdolEamSnqcxv55DRpWqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.410 [XNIO-1 task-1] UmdolEamSnqcxv55DRpWqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.410 [XNIO-1 task-1] UmdolEamSnqcxv55DRpWqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.410 [XNIO-1 task-1] UmdolEamSnqcxv55DRpWqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.411 [XNIO-1 task-1] UmdolEamSnqcxv55DRpWqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.412 [XNIO-1 task-1] UmdolEamSnqcxv55DRpWqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.413 [XNIO-1 task-1] YXTdtyaySxWTfR6Ivun_-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.414 [XNIO-1 task-1] YXTdtyaySxWTfR6Ivun_-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.414 [XNIO-1 task-1] YXTdtyaySxWTfR6Ivun_-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.414 [XNIO-1 task-1] YXTdtyaySxWTfR6Ivun_-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.414 [XNIO-1 task-1] YXTdtyaySxWTfR6Ivun_-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b699a85d-f58b-458d-8686-9075ffeb6d1a +09:12:52.415 [XNIO-1 task-1] YXTdtyaySxWTfR6Ivun_-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b699a85d-f58b-458d-8686-9075ffeb6d1a is not found.","severity":"ERROR"} +09:12:52.417 [XNIO-1 task-1] PnDqSqk4Sdmd4x7n0xECFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.417 [XNIO-1 task-1] PnDqSqk4Sdmd4x7n0xECFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.417 [XNIO-1 task-1] PnDqSqk4Sdmd4x7n0xECFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.417 [XNIO-1 task-1] PnDqSqk4Sdmd4x7n0xECFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.417 [XNIO-1 task-1] PnDqSqk4Sdmd4x7n0xECFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.419 [XNIO-1 task-1] dgD3gQMjSL-JdS0ptbPJLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.419 [XNIO-1 task-1] dgD3gQMjSL-JdS0ptbPJLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.419 [XNIO-1 task-1] dgD3gQMjSL-JdS0ptbPJLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.419 [XNIO-1 task-1] dgD3gQMjSL-JdS0ptbPJLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.419 [XNIO-1 task-1] dgD3gQMjSL-JdS0ptbPJLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.421 [XNIO-1 task-1] dgD3gQMjSL-JdS0ptbPJLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.422 [XNIO-1 task-1] 7o8TWZtHRjisFiVrRPBSkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.422 [XNIO-1 task-1] 7o8TWZtHRjisFiVrRPBSkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.422 [XNIO-1 task-1] 7o8TWZtHRjisFiVrRPBSkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.422 [XNIO-1 task-1] 7o8TWZtHRjisFiVrRPBSkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.422 [XNIO-1 task-1] 7o8TWZtHRjisFiVrRPBSkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.424 [XNIO-1 task-1] xTPRBJj1R8y9hbU7tRlbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.424 [XNIO-1 task-1] xTPRBJj1R8y9hbU7tRlbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.424 [XNIO-1 task-1] xTPRBJj1R8y9hbU7tRlbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.424 [XNIO-1 task-1] xTPRBJj1R8y9hbU7tRlbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.424 [XNIO-1 task-1] xTPRBJj1R8y9hbU7tRlbNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.426 [XNIO-1 task-1] b7VTaqZLS5KvqTRX7xdhqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.426 [XNIO-1 task-1] b7VTaqZLS5KvqTRX7xdhqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.426 [XNIO-1 task-1] b7VTaqZLS5KvqTRX7xdhqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.426 [XNIO-1 task-1] b7VTaqZLS5KvqTRX7xdhqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.426 [XNIO-1 task-1] b7VTaqZLS5KvqTRX7xdhqA DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.426 [XNIO-1 task-1] b7VTaqZLS5KvqTRX7xdhqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.430 [XNIO-1 task-1] VwIHl2vtTsmWNTMrm-8v_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.430 [XNIO-1 task-1] VwIHl2vtTsmWNTMrm-8v_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.430 [XNIO-1 task-1] VwIHl2vtTsmWNTMrm-8v_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.430 [XNIO-1 task-1] VwIHl2vtTsmWNTMrm-8v_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.434 [XNIO-1 task-1] 8rQhP-0VQmSJyHa2njsQXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.434 [XNIO-1 task-1] 8rQhP-0VQmSJyHa2njsQXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.434 [XNIO-1 task-1] 8rQhP-0VQmSJyHa2njsQXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.434 [XNIO-1 task-1] 8rQhP-0VQmSJyHa2njsQXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.434 [XNIO-1 task-1] 8rQhP-0VQmSJyHa2njsQXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.439 [XNIO-1 task-1] iNYmktbdRKupW80V8e_aLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.439 [XNIO-1 task-1] iNYmktbdRKupW80V8e_aLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.439 [XNIO-1 task-1] iNYmktbdRKupW80V8e_aLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.439 [XNIO-1 task-1] iNYmktbdRKupW80V8e_aLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.439 [XNIO-1 task-1] iNYmktbdRKupW80V8e_aLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.442 [XNIO-1 task-1] uKPkvviOQQ6AnoiHISwZrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.442 [XNIO-1 task-1] uKPkvviOQQ6AnoiHISwZrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.442 [XNIO-1 task-1] uKPkvviOQQ6AnoiHISwZrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.442 [XNIO-1 task-1] uKPkvviOQQ6AnoiHISwZrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.442 [XNIO-1 task-1] uKPkvviOQQ6AnoiHISwZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.442 [XNIO-1 task-1] uKPkvviOQQ6AnoiHISwZrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.444 [XNIO-1 task-1] 3ToNSku5R1K26QMpdECCuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.444 [XNIO-1 task-1] 3ToNSku5R1K26QMpdECCuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.444 [XNIO-1 task-1] 3ToNSku5R1K26QMpdECCuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.444 [XNIO-1 task-1] 3ToNSku5R1K26QMpdECCuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.444 [XNIO-1 task-1] 3ToNSku5R1K26QMpdECCuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.446 [XNIO-1 task-1] Ck43VVCWTZGhWT_AZzUiyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.446 [XNIO-1 task-1] Ck43VVCWTZGhWT_AZzUiyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.446 [XNIO-1 task-1] Ck43VVCWTZGhWT_AZzUiyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.446 [XNIO-1 task-1] Ck43VVCWTZGhWT_AZzUiyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.446 [XNIO-1 task-1] Ck43VVCWTZGhWT_AZzUiyg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.451 [XNIO-1 task-1] iBEW_4JPTC68Gj0UxTGjsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.451 [XNIO-1 task-1] iBEW_4JPTC68Gj0UxTGjsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.451 [XNIO-1 task-1] iBEW_4JPTC68Gj0UxTGjsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.451 [XNIO-1 task-1] iBEW_4JPTC68Gj0UxTGjsQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.455 [XNIO-1 task-1] EM9hAZFVTn2jncJEsDkXTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.455 [XNIO-1 task-1] EM9hAZFVTn2jncJEsDkXTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.455 [XNIO-1 task-1] EM9hAZFVTn2jncJEsDkXTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.455 [XNIO-1 task-1] EM9hAZFVTn2jncJEsDkXTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.455 [XNIO-1 task-1] EM9hAZFVTn2jncJEsDkXTg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.459 [XNIO-1 task-1] l50ixbbfRWChAspCL4oqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.459 [XNIO-1 task-1] l50ixbbfRWChAspCL4oqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.459 [XNIO-1 task-1] l50ixbbfRWChAspCL4oqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.459 [XNIO-1 task-1] l50ixbbfRWChAspCL4oqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.459 [XNIO-1 task-1] l50ixbbfRWChAspCL4oqFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 +09:12:52.461 [XNIO-1 task-1] ySWXI3zET2a9xUPRu3r2fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.462 [XNIO-1 task-1] ySWXI3zET2a9xUPRu3r2fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.462 [XNIO-1 task-1] ySWXI3zET2a9xUPRu3r2fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.462 [XNIO-1 task-1] ySWXI3zET2a9xUPRu3r2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.462 [XNIO-1 task-1] ySWXI3zET2a9xUPRu3r2fQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.466 [XNIO-1 task-1] L03eRjGBQv-UHLY09vip_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.466 [XNIO-1 task-1] L03eRjGBQv-UHLY09vip_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.466 [XNIO-1 task-1] L03eRjGBQv-UHLY09vip_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.466 [XNIO-1 task-1] L03eRjGBQv-UHLY09vip_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.466 [XNIO-1 task-1] L03eRjGBQv-UHLY09vip_A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.467 [XNIO-1 task-1] Gqo8-hTmRbiBPWSRxmK3Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.467 [XNIO-1 task-1] Gqo8-hTmRbiBPWSRxmK3Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.467 [XNIO-1 task-1] Gqo8-hTmRbiBPWSRxmK3Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.467 [XNIO-1 task-1] Gqo8-hTmRbiBPWSRxmK3Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.468 [XNIO-1 task-1] Gqo8-hTmRbiBPWSRxmK3Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.468 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.471 [XNIO-1 task-1] bwxwuHJ-SZGK0E0ZjSQwog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.471 [XNIO-1 task-1] bwxwuHJ-SZGK0E0ZjSQwog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.471 [XNIO-1 task-1] bwxwuHJ-SZGK0E0ZjSQwog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.471 [XNIO-1 task-1] bwxwuHJ-SZGK0E0ZjSQwog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.471 [XNIO-1 task-1] bwxwuHJ-SZGK0E0ZjSQwog DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.474 [XNIO-1 task-1] 18udMro5TA2ofoa1h_EfTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.475 [XNIO-1 task-1] 18udMro5TA2ofoa1h_EfTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.475 [XNIO-1 task-1] 18udMro5TA2ofoa1h_EfTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.475 [XNIO-1 task-1] 18udMro5TA2ofoa1h_EfTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.475 [XNIO-1 task-1] 18udMro5TA2ofoa1h_EfTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.481 [XNIO-1 task-1] 3HESLoERRo6Max5Li1gCqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.481 [XNIO-1 task-1] 3HESLoERRo6Max5Li1gCqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.481 [XNIO-1 task-1] 3HESLoERRo6Max5Li1gCqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.481 [XNIO-1 task-1] 3HESLoERRo6Max5Li1gCqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/78821472-253d-4487-a5fc-90ed7e953190, base path is set to: null +09:12:52.481 [XNIO-1 task-1] 3HESLoERRo6Max5Li1gCqg DEBUG com.networknt.schema.TypeValidator debug - validate( "78821472-253d-4487-a5fc-90ed7e953190", "78821472-253d-4487-a5fc-90ed7e953190", refreshToken) +09:12:52.481 [XNIO-1 task-1] 3HESLoERRo6Max5Li1gCqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 78821472-253d-4487-a5fc-90ed7e953190 is not found.","severity":"ERROR"} +09:12:52.483 [XNIO-1 task-1] gecUv6e9StqIgbk4jpjW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.483 [XNIO-1 task-1] gecUv6e9StqIgbk4jpjW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.483 [XNIO-1 task-1] gecUv6e9StqIgbk4jpjW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.483 [XNIO-1 task-1] gecUv6e9StqIgbk4jpjW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.483 [XNIO-1 task-1] gecUv6e9StqIgbk4jpjW7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.484 [XNIO-1 task-1] FXAS1UwaS6e19MAv8xYIQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.485 [XNIO-1 task-1] FXAS1UwaS6e19MAv8xYIQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.485 [XNIO-1 task-1] FXAS1UwaS6e19MAv8xYIQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.485 [XNIO-1 task-1] FXAS1UwaS6e19MAv8xYIQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.485 [XNIO-1 task-1] FXAS1UwaS6e19MAv8xYIQA DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.485 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.488 [XNIO-1 task-1] c--XA_rQQriK9adjEyAJsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.488 [XNIO-1 task-1] c--XA_rQQriK9adjEyAJsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.488 [XNIO-1 task-1] c--XA_rQQriK9adjEyAJsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.488 [XNIO-1 task-1] c--XA_rQQriK9adjEyAJsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.488 [XNIO-1 task-1] c--XA_rQQriK9adjEyAJsg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.492 [XNIO-1 task-1] YXbAjI2_QS-2N9YOvuXQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.492 [XNIO-1 task-1] YXbAjI2_QS-2N9YOvuXQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.492 [XNIO-1 task-1] YXbAjI2_QS-2N9YOvuXQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.492 [XNIO-1 task-1] YXbAjI2_QS-2N9YOvuXQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.492 [XNIO-1 task-1] YXbAjI2_QS-2N9YOvuXQHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.494 [XNIO-1 task-1] YXbAjI2_QS-2N9YOvuXQHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.495 [XNIO-1 task-1] rnLBCRo-R1CxrXz9QEOKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.495 [XNIO-1 task-1] rnLBCRo-R1CxrXz9QEOKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.495 [XNIO-1 task-1] rnLBCRo-R1CxrXz9QEOKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.495 [XNIO-1 task-1] rnLBCRo-R1CxrXz9QEOKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.495 [XNIO-1 task-1] rnLBCRo-R1CxrXz9QEOKbw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.497 [XNIO-1 task-1] rnLBCRo-R1CxrXz9QEOKbw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 98bcccc0-b99b-45be-9593-c5d5ee26156f is not found.","severity":"ERROR"} +09:12:52.500 [XNIO-1 task-1] i5gkXyncTg-EgLnm60XEyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.500 [XNIO-1 task-1] i5gkXyncTg-EgLnm60XEyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.500 [XNIO-1 task-1] i5gkXyncTg-EgLnm60XEyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.500 [XNIO-1 task-1] i5gkXyncTg-EgLnm60XEyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.500 [XNIO-1 task-1] i5gkXyncTg-EgLnm60XEyw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.502 [XNIO-1 task-1] hUN-EIDuSXySNl1BlzHHoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.502 [XNIO-1 task-1] hUN-EIDuSXySNl1BlzHHoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.502 [XNIO-1 task-1] hUN-EIDuSXySNl1BlzHHoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.502 [XNIO-1 task-1] hUN-EIDuSXySNl1BlzHHoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.502 [XNIO-1 task-1] hUN-EIDuSXySNl1BlzHHoA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.503 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.506 [XNIO-1 task-1] 0RermlIvRvqHHurngdtPCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.506 [XNIO-1 task-1] 0RermlIvRvqHHurngdtPCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.506 [XNIO-1 task-1] 0RermlIvRvqHHurngdtPCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.506 [XNIO-1 task-1] 0RermlIvRvqHHurngdtPCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.506 [XNIO-1 task-1] 0RermlIvRvqHHurngdtPCg DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.506 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.509 [XNIO-1 task-1] mqXoUKRbQL64mU8Jx94Pgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.509 [XNIO-1 task-1] mqXoUKRbQL64mU8Jx94Pgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.509 [XNIO-1 task-1] mqXoUKRbQL64mU8Jx94Pgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.509 [XNIO-1 task-1] mqXoUKRbQL64mU8Jx94Pgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.509 [XNIO-1 task-1] mqXoUKRbQL64mU8Jx94Pgw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.509 [XNIO-1 task-1] mqXoUKRbQL64mU8Jx94Pgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.511 [XNIO-1 task-1] 8CUUkX9RQom-pVSHQrz0BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.511 [XNIO-1 task-1] 8CUUkX9RQom-pVSHQrz0BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.511 [XNIO-1 task-1] 8CUUkX9RQom-pVSHQrz0BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.511 [XNIO-1 task-1] 8CUUkX9RQom-pVSHQrz0BQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.516 [XNIO-1 task-1] PO-jL72CQe29WGxtqwbFHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.516 [XNIO-1 task-1] PO-jL72CQe29WGxtqwbFHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.516 [XNIO-1 task-1] PO-jL72CQe29WGxtqwbFHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.516 [XNIO-1 task-1] PO-jL72CQe29WGxtqwbFHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.516 [XNIO-1 task-1] PO-jL72CQe29WGxtqwbFHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.516 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.519 [XNIO-1 task-1] 300TkiZeSje6ya6YToIsgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.519 [XNIO-1 task-1] 300TkiZeSje6ya6YToIsgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.519 [XNIO-1 task-1] 300TkiZeSje6ya6YToIsgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.519 [XNIO-1 task-1] 300TkiZeSje6ya6YToIsgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.519 [XNIO-1 task-1] 300TkiZeSje6ya6YToIsgg DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.519 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.522 [XNIO-1 task-1] QvQSUkjbQjSA-HZz529xmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.523 [XNIO-1 task-1] QvQSUkjbQjSA-HZz529xmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.523 [XNIO-1 task-1] QvQSUkjbQjSA-HZz529xmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.523 [XNIO-1 task-1] QvQSUkjbQjSA-HZz529xmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.523 [XNIO-1 task-1] QvQSUkjbQjSA-HZz529xmw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.523 [XNIO-1 task-1] QvQSUkjbQjSA-HZz529xmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.525 [XNIO-1 task-1] NuQp8s81RK2_lE93-0HFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.525 [XNIO-1 task-1] NuQp8s81RK2_lE93-0HFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.525 [XNIO-1 task-1] NuQp8s81RK2_lE93-0HFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.525 [XNIO-1 task-1] NuQp8s81RK2_lE93-0HFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.525 [XNIO-1 task-1] NuQp8s81RK2_lE93-0HFQg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.526 [XNIO-1 task-1] NuQp8s81RK2_lE93-0HFQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.528 [XNIO-1 task-1] gFJJ0wG_Q-KBrQBu4XDGIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.528 [XNIO-1 task-1] gFJJ0wG_Q-KBrQBu4XDGIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.528 [XNIO-1 task-1] gFJJ0wG_Q-KBrQBu4XDGIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.528 [XNIO-1 task-1] gFJJ0wG_Q-KBrQBu4XDGIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.528 [XNIO-1 task-1] gFJJ0wG_Q-KBrQBu4XDGIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.529 [XNIO-1 task-1] gFJJ0wG_Q-KBrQBu4XDGIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 98bcccc0-b99b-45be-9593-c5d5ee26156f is not found.","severity":"ERROR"} +09:12:52.531 [XNIO-1 task-1] jzIk5rDQT6GTEtj0j_SqiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.531 [XNIO-1 task-1] jzIk5rDQT6GTEtj0j_SqiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.531 [XNIO-1 task-1] jzIk5rDQT6GTEtj0j_SqiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.531 [XNIO-1 task-1] jzIk5rDQT6GTEtj0j_SqiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.531 [XNIO-1 task-1] jzIk5rDQT6GTEtj0j_SqiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.533 [XNIO-1 task-1] ln4vc8kxThG7u7DY-n5wHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.533 [XNIO-1 task-1] ln4vc8kxThG7u7DY-n5wHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.533 [XNIO-1 task-1] ln4vc8kxThG7u7DY-n5wHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.533 [XNIO-1 task-1] ln4vc8kxThG7u7DY-n5wHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.533 [XNIO-1 task-1] ln4vc8kxThG7u7DY-n5wHw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.533 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.536 [XNIO-1 task-1] Nd9eHBm6TAyY7jwqdgkX4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.536 [XNIO-1 task-1] Nd9eHBm6TAyY7jwqdgkX4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.536 [XNIO-1 task-1] Nd9eHBm6TAyY7jwqdgkX4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.536 [XNIO-1 task-1] Nd9eHBm6TAyY7jwqdgkX4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.536 [XNIO-1 task-1] Nd9eHBm6TAyY7jwqdgkX4A DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.536 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.539 [XNIO-1 task-1] s2DeK413Sz-akil8XLYd4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.539 [XNIO-1 task-1] s2DeK413Sz-akil8XLYd4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.539 [XNIO-1 task-1] s2DeK413Sz-akil8XLYd4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.539 [XNIO-1 task-1] s2DeK413Sz-akil8XLYd4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.540 [XNIO-1 task-1] s2DeK413Sz-akil8XLYd4w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.550 [XNIO-1 task-1] 0lfX-0-xRPytuSFcwFNGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.550 [XNIO-1 task-1] 0lfX-0-xRPytuSFcwFNGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.550 [XNIO-1 task-1] 0lfX-0-xRPytuSFcwFNGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.550 [XNIO-1 task-1] 0lfX-0-xRPytuSFcwFNGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.550 [XNIO-1 task-1] 0lfX-0-xRPytuSFcwFNGMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.552 [XNIO-1 task-1] 0lfX-0-xRPytuSFcwFNGMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 98bcccc0-b99b-45be-9593-c5d5ee26156f is not found.","severity":"ERROR"} +09:12:52.554 [XNIO-1 task-1] BM4hgKqGQLiYUQulG73nig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.554 [XNIO-1 task-1] BM4hgKqGQLiYUQulG73nig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.554 [XNIO-1 task-1] BM4hgKqGQLiYUQulG73nig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.554 [XNIO-1 task-1] BM4hgKqGQLiYUQulG73nig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.555 [XNIO-1 task-1] BM4hgKqGQLiYUQulG73nig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.556 [XNIO-1 task-1] BM4hgKqGQLiYUQulG73nig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.558 [XNIO-1 task-1] UI1mBh4wSTmrnv_hpM9LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.558 [XNIO-1 task-1] UI1mBh4wSTmrnv_hpM9LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.558 [XNIO-1 task-1] UI1mBh4wSTmrnv_hpM9LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.559 [XNIO-1 task-1] UI1mBh4wSTmrnv_hpM9LIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.559 [XNIO-1 task-1] UI1mBh4wSTmrnv_hpM9LIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.561 [XNIO-1 task-1] qcmG_W2BRpeuVY64YAqiiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.561 [XNIO-1 task-1] qcmG_W2BRpeuVY64YAqiiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.561 [XNIO-1 task-1] qcmG_W2BRpeuVY64YAqiiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.561 [XNIO-1 task-1] qcmG_W2BRpeuVY64YAqiiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.561 [XNIO-1 task-1] qcmG_W2BRpeuVY64YAqiiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.562 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.565 [XNIO-1 task-1] k7esiVQzTRWe3-QU01QQTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.565 [XNIO-1 task-1] k7esiVQzTRWe3-QU01QQTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.565 [XNIO-1 task-1] k7esiVQzTRWe3-QU01QQTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.565 [XNIO-1 task-1] k7esiVQzTRWe3-QU01QQTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.565 [XNIO-1 task-1] k7esiVQzTRWe3-QU01QQTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.565 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.568 [XNIO-1 task-1] IlBD0gi8Rde9XuhVPzUNYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.568 [XNIO-1 task-1] IlBD0gi8Rde9XuhVPzUNYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.568 [XNIO-1 task-1] IlBD0gi8Rde9XuhVPzUNYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.568 [XNIO-1 task-1] IlBD0gi8Rde9XuhVPzUNYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.569 [XNIO-1 task-1] IlBD0gi8Rde9XuhVPzUNYg DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.569 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.572 [XNIO-1 task-1] W1NbZxmTS2quCdjUoQb4YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.572 [XNIO-1 task-1] W1NbZxmTS2quCdjUoQb4YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.572 [XNIO-1 task-1] W1NbZxmTS2quCdjUoQb4YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.572 [XNIO-1 task-1] W1NbZxmTS2quCdjUoQb4YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.572 [XNIO-1 task-1] W1NbZxmTS2quCdjUoQb4YA DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.572 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.575 [XNIO-1 task-1] oJdTWru6S9KF3uU6l0cnKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.575 [XNIO-1 task-1] oJdTWru6S9KF3uU6l0cnKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.576 [XNIO-1 task-1] oJdTWru6S9KF3uU6l0cnKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.576 [XNIO-1 task-1] oJdTWru6S9KF3uU6l0cnKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.576 [XNIO-1 task-1] oJdTWru6S9KF3uU6l0cnKA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.576 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.579 [XNIO-1 task-1] W9_x2galRROSiegr_iXfaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.579 [XNIO-1 task-1] W9_x2galRROSiegr_iXfaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.579 [XNIO-1 task-1] W9_x2galRROSiegr_iXfaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.579 [XNIO-1 task-1] W9_x2galRROSiegr_iXfaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.579 [XNIO-1 task-1] W9_x2galRROSiegr_iXfaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.579 [XNIO-1 task-1] W9_x2galRROSiegr_iXfaQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.582 [XNIO-1 task-1] ms2PC_6bTTOKRKQTHRXcKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.582 [XNIO-1 task-1] ms2PC_6bTTOKRKQTHRXcKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.582 [XNIO-1 task-1] ms2PC_6bTTOKRKQTHRXcKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.582 [XNIO-1 task-1] ms2PC_6bTTOKRKQTHRXcKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.582 [XNIO-1 task-1] ms2PC_6bTTOKRKQTHRXcKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.583 [XNIO-1 task-1] ms2PC_6bTTOKRKQTHRXcKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.585 [XNIO-1 task-1] jFVsPfb_Q0ysSSS8zIKKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.585 [XNIO-1 task-1] jFVsPfb_Q0ysSSS8zIKKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.585 [XNIO-1 task-1] jFVsPfb_Q0ysSSS8zIKKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.585 [XNIO-1 task-1] jFVsPfb_Q0ysSSS8zIKKCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.589 [XNIO-1 task-1] 5WIpHClWQSmXzspupPmU8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.589 [XNIO-1 task-1] 5WIpHClWQSmXzspupPmU8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.589 [XNIO-1 task-1] 5WIpHClWQSmXzspupPmU8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.589 [XNIO-1 task-1] 5WIpHClWQSmXzspupPmU8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.590 [XNIO-1 task-1] 5WIpHClWQSmXzspupPmU8g DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.590 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.593 [XNIO-1 task-1] Kad-X3dQQvmgCRq2LXd5dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.593 [XNIO-1 task-1] Kad-X3dQQvmgCRq2LXd5dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.593 [XNIO-1 task-1] Kad-X3dQQvmgCRq2LXd5dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.593 [XNIO-1 task-1] Kad-X3dQQvmgCRq2LXd5dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.593 [XNIO-1 task-1] Kad-X3dQQvmgCRq2LXd5dA DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.593 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.596 [XNIO-1 task-1] h0HhJ_NURLOZ4YnjRlK22A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.596 [XNIO-1 task-1] h0HhJ_NURLOZ4YnjRlK22A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.596 [XNIO-1 task-1] h0HhJ_NURLOZ4YnjRlK22A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.596 [XNIO-1 task-1] h0HhJ_NURLOZ4YnjRlK22A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.596 [XNIO-1 task-1] h0HhJ_NURLOZ4YnjRlK22A DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.596 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.599 [XNIO-1 task-1] TBit4RyjQHmaiteq2wjrng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.599 [XNIO-1 task-1] TBit4RyjQHmaiteq2wjrng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.599 [XNIO-1 task-1] TBit4RyjQHmaiteq2wjrng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.599 [XNIO-1 task-1] TBit4RyjQHmaiteq2wjrng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.599 [XNIO-1 task-1] TBit4RyjQHmaiteq2wjrng DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.599 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.603 [XNIO-1 task-1] I-YMX1DzS2mb9Ibt5zWODg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.603 [XNIO-1 task-1] I-YMX1DzS2mb9Ibt5zWODg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.603 [XNIO-1 task-1] I-YMX1DzS2mb9Ibt5zWODg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.603 [XNIO-1 task-1] I-YMX1DzS2mb9Ibt5zWODg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.603 [XNIO-1 task-1] I-YMX1DzS2mb9Ibt5zWODg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.607 [XNIO-1 task-1] 04315-TGTuuKn2s5_bOH1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.608 [XNIO-1 task-1] 04315-TGTuuKn2s5_bOH1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.608 [XNIO-1 task-1] 04315-TGTuuKn2s5_bOH1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.608 [XNIO-1 task-1] 04315-TGTuuKn2s5_bOH1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.608 [XNIO-1 task-1] 04315-TGTuuKn2s5_bOH1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.609 [XNIO-1 task-1] Vk7sFxQ0TZOskp_mw-N9sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.609 [XNIO-1 task-1] Vk7sFxQ0TZOskp_mw-N9sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.609 [XNIO-1 task-1] Vk7sFxQ0TZOskp_mw-N9sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.609 [XNIO-1 task-1] Vk7sFxQ0TZOskp_mw-N9sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.610 [XNIO-1 task-1] Vk7sFxQ0TZOskp_mw-N9sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.610 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.614 [XNIO-1 task-1] sGGu2F1HR8GZknI6OqUq4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.614 [XNIO-1 task-1] sGGu2F1HR8GZknI6OqUq4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.614 [XNIO-1 task-1] sGGu2F1HR8GZknI6OqUq4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.614 [XNIO-1 task-1] sGGu2F1HR8GZknI6OqUq4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.614 [XNIO-1 task-1] sGGu2F1HR8GZknI6OqUq4g DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.614 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.617 [XNIO-1 task-1] P57MkS5RQiyz97gBVs3_rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.617 [XNIO-1 task-1] P57MkS5RQiyz97gBVs3_rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.617 [XNIO-1 task-1] P57MkS5RQiyz97gBVs3_rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.617 [XNIO-1 task-1] P57MkS5RQiyz97gBVs3_rg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.617 [XNIO-1 task-1] P57MkS5RQiyz97gBVs3_rg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.622 [XNIO-1 task-1] GdIbV5SIRM2vTh_l41Ar8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.622 [XNIO-1 task-1] GdIbV5SIRM2vTh_l41Ar8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.622 [XNIO-1 task-1] GdIbV5SIRM2vTh_l41Ar8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.622 [XNIO-1 task-1] GdIbV5SIRM2vTh_l41Ar8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.626 [XNIO-1 task-1] 5puw7uMrQYS4Ac2swgwHrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.626 [XNIO-1 task-1] 5puw7uMrQYS4Ac2swgwHrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.626 [XNIO-1 task-1] 5puw7uMrQYS4Ac2swgwHrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.626 [XNIO-1 task-1] 5puw7uMrQYS4Ac2swgwHrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.626 [XNIO-1 task-1] 5puw7uMrQYS4Ac2swgwHrg DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.626 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.629 [XNIO-1 task-1] nwxYF2DMQ_OUHL8HN4Qexw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.629 [XNIO-1 task-1] nwxYF2DMQ_OUHL8HN4Qexw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.629 [XNIO-1 task-1] nwxYF2DMQ_OUHL8HN4Qexw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.629 [XNIO-1 task-1] nwxYF2DMQ_OUHL8HN4Qexw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98bcccc0-b99b-45be-9593-c5d5ee26156f, base path is set to: null +09:12:52.629 [XNIO-1 task-1] nwxYF2DMQ_OUHL8HN4Qexw DEBUG com.networknt.schema.TypeValidator debug - validate( "98bcccc0-b99b-45be-9593-c5d5ee26156f", "98bcccc0-b99b-45be-9593-c5d5ee26156f", refreshToken) +09:12:52.629 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bcccc0-b99b-45be-9593-c5d5ee26156f +09:12:52.633 [XNIO-1 task-1] 4xlEmOyTTsCWkrm4OdTFog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.633 [XNIO-1 task-1] 4xlEmOyTTsCWkrm4OdTFog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.633 [XNIO-1 task-1] 4xlEmOyTTsCWkrm4OdTFog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.633 [XNIO-1 task-1] 4xlEmOyTTsCWkrm4OdTFog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.633 [XNIO-1 task-1] 4xlEmOyTTsCWkrm4OdTFog DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.637 [XNIO-1 task-1] blqs1ur-T1KMOmjsiphkbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.637 [XNIO-1 task-1] blqs1ur-T1KMOmjsiphkbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.637 [XNIO-1 task-1] blqs1ur-T1KMOmjsiphkbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.637 [XNIO-1 task-1] blqs1ur-T1KMOmjsiphkbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.638 [XNIO-1 task-1] blqs1ur-T1KMOmjsiphkbA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.639 [XNIO-1 task-1] blqs1ur-T1KMOmjsiphkbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.641 [XNIO-1 task-1] HBTpjWzLSbaXoEZ13J6bUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.641 [XNIO-1 task-1] HBTpjWzLSbaXoEZ13J6bUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.641 [XNIO-1 task-1] HBTpjWzLSbaXoEZ13J6bUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.641 [XNIO-1 task-1] HBTpjWzLSbaXoEZ13J6bUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.646 [XNIO-1 task-1] ZjPeevBgTVy2MtQljsBXxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.646 [XNIO-1 task-1] ZjPeevBgTVy2MtQljsBXxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.646 [XNIO-1 task-1] ZjPeevBgTVy2MtQljsBXxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.646 [XNIO-1 task-1] ZjPeevBgTVy2MtQljsBXxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.646 [XNIO-1 task-1] ZjPeevBgTVy2MtQljsBXxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.646 [XNIO-1 task-1] ZjPeevBgTVy2MtQljsBXxQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.648 [XNIO-1 task-1] ZwNowSi3Sq2uMy8nyK9Muw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.648 [XNIO-1 task-1] ZwNowSi3Sq2uMy8nyK9Muw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.648 [XNIO-1 task-1] ZwNowSi3Sq2uMy8nyK9Muw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.648 [XNIO-1 task-1] ZwNowSi3Sq2uMy8nyK9Muw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.648 [XNIO-1 task-1] ZwNowSi3Sq2uMy8nyK9Muw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.649 [XNIO-1 task-1] ZwNowSi3Sq2uMy8nyK9Muw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.651 [XNIO-1 task-1] 7o3w__MwS-uPNKsxiU84vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.651 [XNIO-1 task-1] 7o3w__MwS-uPNKsxiU84vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.651 [XNIO-1 task-1] 7o3w__MwS-uPNKsxiU84vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.651 [XNIO-1 task-1] 7o3w__MwS-uPNKsxiU84vw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.655 [XNIO-1 task-1] _6zJMQZxTCOP8eXOPTkumw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.655 [XNIO-1 task-1] _6zJMQZxTCOP8eXOPTkumw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.656 [XNIO-1 task-1] _6zJMQZxTCOP8eXOPTkumw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.656 [XNIO-1 task-1] _6zJMQZxTCOP8eXOPTkumw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.656 [XNIO-1 task-1] _6zJMQZxTCOP8eXOPTkumw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.656 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.658 [XNIO-1 task-1] DFtYUYHiQB-jrwwcIdSxtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.659 [XNIO-1 task-1] DFtYUYHiQB-jrwwcIdSxtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.659 [XNIO-1 task-1] DFtYUYHiQB-jrwwcIdSxtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.659 [XNIO-1 task-1] DFtYUYHiQB-jrwwcIdSxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.659 [XNIO-1 task-1] DFtYUYHiQB-jrwwcIdSxtw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.664 [XNIO-1 task-1] iW9VxftEQOKt9wRLvgMDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.664 [XNIO-1 task-1] iW9VxftEQOKt9wRLvgMDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.664 [XNIO-1 task-1] iW9VxftEQOKt9wRLvgMDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.664 [XNIO-1 task-1] iW9VxftEQOKt9wRLvgMDqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.665 [XNIO-1 task-1] iW9VxftEQOKt9wRLvgMDqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.666 [XNIO-1 task-1] kBbVfzMDQjiPYOMXjFwfmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.666 [XNIO-1 task-1] kBbVfzMDQjiPYOMXjFwfmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.666 [XNIO-1 task-1] kBbVfzMDQjiPYOMXjFwfmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.666 [XNIO-1 task-1] kBbVfzMDQjiPYOMXjFwfmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.666 [XNIO-1 task-1] kBbVfzMDQjiPYOMXjFwfmw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.671 [XNIO-1 task-1] otq7OcDmQOGpUoalLNQxGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.671 [XNIO-1 task-1] otq7OcDmQOGpUoalLNQxGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.671 [XNIO-1 task-1] otq7OcDmQOGpUoalLNQxGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.671 [XNIO-1 task-1] otq7OcDmQOGpUoalLNQxGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.674 [XNIO-1 task-1] SI-Cop8iSeOyQb3WenK2ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.675 [XNIO-1 task-1] SI-Cop8iSeOyQb3WenK2ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.675 [XNIO-1 task-1] SI-Cop8iSeOyQb3WenK2ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.675 [XNIO-1 task-1] SI-Cop8iSeOyQb3WenK2ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.675 [XNIO-1 task-1] SI-Cop8iSeOyQb3WenK2ww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.679 [XNIO-1 task-1] CzB7rHBSTJG9XEOkNj2HcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.679 [XNIO-1 task-1] CzB7rHBSTJG9XEOkNj2HcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.679 [XNIO-1 task-1] CzB7rHBSTJG9XEOkNj2HcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.679 [XNIO-1 task-1] CzB7rHBSTJG9XEOkNj2HcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.679 [XNIO-1 task-1] CzB7rHBSTJG9XEOkNj2HcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.680 [XNIO-1 task-1] CzB7rHBSTJG9XEOkNj2HcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.682 [XNIO-1 task-1] yoyRg2ctTp6Nw0082EO1mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.683 [XNIO-1 task-1] yoyRg2ctTp6Nw0082EO1mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.683 [XNIO-1 task-1] yoyRg2ctTp6Nw0082EO1mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.683 [XNIO-1 task-1] yoyRg2ctTp6Nw0082EO1mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.683 [XNIO-1 task-1] yoyRg2ctTp6Nw0082EO1mQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.684 [XNIO-1 task-1] vBpbM368T8qQjxdYDnuLLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.684 [XNIO-1 task-1] vBpbM368T8qQjxdYDnuLLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.684 [XNIO-1 task-1] vBpbM368T8qQjxdYDnuLLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.684 [XNIO-1 task-1] vBpbM368T8qQjxdYDnuLLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.684 [XNIO-1 task-1] vBpbM368T8qQjxdYDnuLLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.684 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.687 [XNIO-1 task-1] VjHky-_mRFWfvIXOVDdyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.687 [XNIO-1 task-1] VjHky-_mRFWfvIXOVDdyhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.687 [XNIO-1 task-1] VjHky-_mRFWfvIXOVDdyhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.687 [XNIO-1 task-1] VjHky-_mRFWfvIXOVDdyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.687 [XNIO-1 task-1] VjHky-_mRFWfvIXOVDdyhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.687 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.691 [XNIO-1 task-1] bKUXx3tbQgCQWtQggt0F0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.692 [XNIO-1 task-1] bKUXx3tbQgCQWtQggt0F0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.692 [XNIO-1 task-1] bKUXx3tbQgCQWtQggt0F0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.692 [XNIO-1 task-1] bKUXx3tbQgCQWtQggt0F0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.692 [XNIO-1 task-1] bKUXx3tbQgCQWtQggt0F0A DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.692 [XNIO-1 task-1] bKUXx3tbQgCQWtQggt0F0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.694 [XNIO-1 task-1] CHDfiaP7Qjm2KabtA14xLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.694 [XNIO-1 task-1] CHDfiaP7Qjm2KabtA14xLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.694 [XNIO-1 task-1] CHDfiaP7Qjm2KabtA14xLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.694 [XNIO-1 task-1] CHDfiaP7Qjm2KabtA14xLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.697 [XNIO-1 task-1] EQ9bhRzrT06zX6_hQZqBkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.698 [XNIO-1 task-1] EQ9bhRzrT06zX6_hQZqBkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.698 [XNIO-1 task-1] EQ9bhRzrT06zX6_hQZqBkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.698 [XNIO-1 task-1] EQ9bhRzrT06zX6_hQZqBkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.698 [XNIO-1 task-1] EQ9bhRzrT06zX6_hQZqBkg DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.698 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.702 [XNIO-1 task-1] -5NcuaYqRb-q3vHLS-DyRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.702 [XNIO-1 task-1] -5NcuaYqRb-q3vHLS-DyRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.702 [XNIO-1 task-1] -5NcuaYqRb-q3vHLS-DyRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.702 [XNIO-1 task-1] -5NcuaYqRb-q3vHLS-DyRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.702 [XNIO-1 task-1] -5NcuaYqRb-q3vHLS-DyRg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.702 [XNIO-1 task-1] -5NcuaYqRb-q3vHLS-DyRg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.704 [XNIO-1 task-1] 2cyxmEi-Rmubad5C6kSBvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.704 [XNIO-1 task-1] 2cyxmEi-Rmubad5C6kSBvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.704 [XNIO-1 task-1] 2cyxmEi-Rmubad5C6kSBvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.704 [XNIO-1 task-1] 2cyxmEi-Rmubad5C6kSBvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.707 [XNIO-1 task-1] AvklR-84RwKjO6RYY_ZPkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.707 [XNIO-1 task-1] AvklR-84RwKjO6RYY_ZPkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.707 [XNIO-1 task-1] AvklR-84RwKjO6RYY_ZPkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.707 [XNIO-1 task-1] AvklR-84RwKjO6RYY_ZPkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.708 [XNIO-1 task-1] AvklR-84RwKjO6RYY_ZPkw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.713 [XNIO-1 task-1] YMqMWHx4RROXNi00tiQJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.713 [XNIO-1 task-1] YMqMWHx4RROXNi00tiQJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.713 [XNIO-1 task-1] YMqMWHx4RROXNi00tiQJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.713 [XNIO-1 task-1] YMqMWHx4RROXNi00tiQJOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.717 [XNIO-1 task-1] oFDoviciRpequMFupxrHyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.717 [XNIO-1 task-1] oFDoviciRpequMFupxrHyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.717 [XNIO-1 task-1] oFDoviciRpequMFupxrHyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.717 [XNIO-1 task-1] oFDoviciRpequMFupxrHyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.718 [XNIO-1 task-1] oFDoviciRpequMFupxrHyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.718 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.721 [XNIO-1 task-1] -Vu_KsqSSGu8GjwWXF4FPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.721 [XNIO-1 task-1] -Vu_KsqSSGu8GjwWXF4FPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.721 [XNIO-1 task-1] -Vu_KsqSSGu8GjwWXF4FPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.721 [XNIO-1 task-1] -Vu_KsqSSGu8GjwWXF4FPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.721 [XNIO-1 task-1] -Vu_KsqSSGu8GjwWXF4FPw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.721 [XNIO-1 task-1] -Vu_KsqSSGu8GjwWXF4FPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.723 [XNIO-1 task-1] MQdedOkqQgq1itr0sFkGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.723 [XNIO-1 task-1] MQdedOkqQgq1itr0sFkGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.723 [XNIO-1 task-1] MQdedOkqQgq1itr0sFkGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.723 [XNIO-1 task-1] MQdedOkqQgq1itr0sFkGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.723 [XNIO-1 task-1] MQdedOkqQgq1itr0sFkGcw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.724 [XNIO-1 task-1] MQdedOkqQgq1itr0sFkGcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.726 [XNIO-1 task-1] zJ5Yj_SIQ62ONRqg0QDb7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.726 [XNIO-1 task-1] zJ5Yj_SIQ62ONRqg0QDb7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.726 [XNIO-1 task-1] zJ5Yj_SIQ62ONRqg0QDb7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.726 [XNIO-1 task-1] zJ5Yj_SIQ62ONRqg0QDb7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.726 [XNIO-1 task-1] zJ5Yj_SIQ62ONRqg0QDb7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.727 [XNIO-1 task-1] zJ5Yj_SIQ62ONRqg0QDb7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.729 [XNIO-1 task-1] xKrRcqNdQeO-hb__rfMeDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.729 [XNIO-1 task-1] xKrRcqNdQeO-hb__rfMeDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.729 [XNIO-1 task-1] xKrRcqNdQeO-hb__rfMeDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.729 [XNIO-1 task-1] xKrRcqNdQeO-hb__rfMeDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.729 [XNIO-1 task-1] xKrRcqNdQeO-hb__rfMeDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.730 [XNIO-1 task-1] feWCpEtmQhmQnscX82Gisw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.731 [XNIO-1 task-1] feWCpEtmQhmQnscX82Gisw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.731 [XNIO-1 task-1] feWCpEtmQhmQnscX82Gisw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.731 [XNIO-1 task-1] feWCpEtmQhmQnscX82Gisw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.731 [XNIO-1 task-1] feWCpEtmQhmQnscX82Gisw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.731 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.734 [XNIO-1 task-1] nBGzG29BSpSx8inIjWI8TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.734 [XNIO-1 task-1] nBGzG29BSpSx8inIjWI8TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.734 [XNIO-1 task-1] nBGzG29BSpSx8inIjWI8TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.734 [XNIO-1 task-1] nBGzG29BSpSx8inIjWI8TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.734 [XNIO-1 task-1] nBGzG29BSpSx8inIjWI8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.734 [XNIO-1 task-1] nBGzG29BSpSx8inIjWI8TA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.737 [XNIO-1 task-1] WhvlPJCORnC6nyThmpSp3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.738 [XNIO-1 task-1] WhvlPJCORnC6nyThmpSp3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.738 [XNIO-1 task-1] WhvlPJCORnC6nyThmpSp3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.738 [XNIO-1 task-1] WhvlPJCORnC6nyThmpSp3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.738 [XNIO-1 task-1] WhvlPJCORnC6nyThmpSp3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.739 [XNIO-1 task-1] WhvlPJCORnC6nyThmpSp3w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.741 [XNIO-1 task-1] 9SXtsO_iSgeX07jVcz7HxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.741 [XNIO-1 task-1] 9SXtsO_iSgeX07jVcz7HxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.741 [XNIO-1 task-1] 9SXtsO_iSgeX07jVcz7HxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.741 [XNIO-1 task-1] 9SXtsO_iSgeX07jVcz7HxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.741 [XNIO-1 task-1] 9SXtsO_iSgeX07jVcz7HxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.743 [XNIO-1 task-1] AOZbSkgHT2K_T5aDjWy87Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.743 [XNIO-1 task-1] AOZbSkgHT2K_T5aDjWy87Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.743 [XNIO-1 task-1] AOZbSkgHT2K_T5aDjWy87Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.743 [XNIO-1 task-1] AOZbSkgHT2K_T5aDjWy87Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.743 [XNIO-1 task-1] AOZbSkgHT2K_T5aDjWy87Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.746 [XNIO-1 task-1] bkb8_7baQc6aiCq18KllhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.747 [XNIO-1 task-1] bkb8_7baQc6aiCq18KllhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.747 [XNIO-1 task-1] bkb8_7baQc6aiCq18KllhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.747 [XNIO-1 task-1] bkb8_7baQc6aiCq18KllhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.747 [XNIO-1 task-1] bkb8_7baQc6aiCq18KllhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.748 [XNIO-1 task-1] bkb8_7baQc6aiCq18KllhQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.750 [XNIO-1 task-1] zGubmc3fRpyJnF2ACOEJRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.750 [XNIO-1 task-1] zGubmc3fRpyJnF2ACOEJRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.750 [XNIO-1 task-1] zGubmc3fRpyJnF2ACOEJRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.750 [XNIO-1 task-1] zGubmc3fRpyJnF2ACOEJRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.755 [XNIO-1 task-1] uE7Cj1R3QOmmmubfxr6U2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.755 [XNIO-1 task-1] uE7Cj1R3QOmmmubfxr6U2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.756 [XNIO-1 task-1] uE7Cj1R3QOmmmubfxr6U2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.756 [XNIO-1 task-1] uE7Cj1R3QOmmmubfxr6U2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.756 [XNIO-1 task-1] uE7Cj1R3QOmmmubfxr6U2w DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.756 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.759 [XNIO-1 task-1] 656seQ-CQBiX6KxUSKTy9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.759 [XNIO-1 task-1] 656seQ-CQBiX6KxUSKTy9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.759 [XNIO-1 task-1] 656seQ-CQBiX6KxUSKTy9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.759 [XNIO-1 task-1] 656seQ-CQBiX6KxUSKTy9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.759 [XNIO-1 task-1] 656seQ-CQBiX6KxUSKTy9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.759 [XNIO-1 task-1] 656seQ-CQBiX6KxUSKTy9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.761 [XNIO-1 task-1] 6Z_umYw1Qu-huA6JkHcemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.761 [XNIO-1 task-1] 6Z_umYw1Qu-huA6JkHcemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.761 [XNIO-1 task-1] 6Z_umYw1Qu-huA6JkHcemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.761 [XNIO-1 task-1] 6Z_umYw1Qu-huA6JkHcemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.761 [XNIO-1 task-1] 6Z_umYw1Qu-huA6JkHcemg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.762 [XNIO-1 task-1] 6Z_umYw1Qu-huA6JkHcemg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.765 [XNIO-1 task-1] cayz_DOJSoqbTgQdDoBkLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.765 [XNIO-1 task-1] cayz_DOJSoqbTgQdDoBkLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.765 [XNIO-1 task-1] cayz_DOJSoqbTgQdDoBkLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.765 [XNIO-1 task-1] cayz_DOJSoqbTgQdDoBkLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.765 [XNIO-1 task-1] cayz_DOJSoqbTgQdDoBkLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.776 [XNIO-1 task-1] dTpeHEl5Q6mbe_6jbJQ-jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.776 [XNIO-1 task-1] dTpeHEl5Q6mbe_6jbJQ-jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.776 [XNIO-1 task-1] dTpeHEl5Q6mbe_6jbJQ-jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.777 [XNIO-1 task-1] dTpeHEl5Q6mbe_6jbJQ-jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.777 [XNIO-1 task-1] dTpeHEl5Q6mbe_6jbJQ-jg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.783 [XNIO-1 task-1] CXz4jl2cSduyf2y38uwAHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.783 [XNIO-1 task-1] CXz4jl2cSduyf2y38uwAHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.783 [XNIO-1 task-1] CXz4jl2cSduyf2y38uwAHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.783 [XNIO-1 task-1] CXz4jl2cSduyf2y38uwAHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.783 [XNIO-1 task-1] CXz4jl2cSduyf2y38uwAHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.785 [XNIO-1 task-1] CXz4jl2cSduyf2y38uwAHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.786 [XNIO-1 task-1] ZkE6ubOtQCaeBVaBt89j_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.786 [XNIO-1 task-1] ZkE6ubOtQCaeBVaBt89j_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.786 [XNIO-1 task-1] ZkE6ubOtQCaeBVaBt89j_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.786 [XNIO-1 task-1] ZkE6ubOtQCaeBVaBt89j_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.790 [XNIO-1 task-1] q8pNHSyYSqmtgX6KHwyTWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.790 [XNIO-1 task-1] q8pNHSyYSqmtgX6KHwyTWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.790 [XNIO-1 task-1] q8pNHSyYSqmtgX6KHwyTWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.790 [XNIO-1 task-1] q8pNHSyYSqmtgX6KHwyTWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.791 [XNIO-1 task-1] q8pNHSyYSqmtgX6KHwyTWA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.794 [XNIO-1 task-1] NIUqvwFpSwO1PmyoD1_W_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.794 [XNIO-1 task-1] NIUqvwFpSwO1PmyoD1_W_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.794 [XNIO-1 task-1] NIUqvwFpSwO1PmyoD1_W_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.794 [XNIO-1 task-1] NIUqvwFpSwO1PmyoD1_W_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.794 [XNIO-1 task-1] NIUqvwFpSwO1PmyoD1_W_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.796 [XNIO-1 task-1] R_ntjSA5QX2QW_drmCRSBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.796 [XNIO-1 task-1] R_ntjSA5QX2QW_drmCRSBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.796 [XNIO-1 task-1] R_ntjSA5QX2QW_drmCRSBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.796 [XNIO-1 task-1] R_ntjSA5QX2QW_drmCRSBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.796 [XNIO-1 task-1] R_ntjSA5QX2QW_drmCRSBA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.800 [XNIO-1 task-1] Ok8ZWeY7TyqUyK74Ho1Ruw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.800 [XNIO-1 task-1] Ok8ZWeY7TyqUyK74Ho1Ruw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.800 [XNIO-1 task-1] Ok8ZWeY7TyqUyK74Ho1Ruw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.800 [XNIO-1 task-1] Ok8ZWeY7TyqUyK74Ho1Ruw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.800 [XNIO-1 task-1] Ok8ZWeY7TyqUyK74Ho1Ruw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.801 [XNIO-1 task-1] Ok8ZWeY7TyqUyK74Ho1Ruw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.803 [XNIO-1 task-1] 3fkYwXdDTjOxCJalGK7Qfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.803 [XNIO-1 task-1] 3fkYwXdDTjOxCJalGK7Qfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.803 [XNIO-1 task-1] 3fkYwXdDTjOxCJalGK7Qfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.803 [XNIO-1 task-1] 3fkYwXdDTjOxCJalGK7Qfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.803 [XNIO-1 task-1] 3fkYwXdDTjOxCJalGK7Qfw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.805 [XNIO-1 task-1] 3fkYwXdDTjOxCJalGK7Qfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.806 [XNIO-1 task-1] ateCw7ARQSe9CvkUHKzGog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.806 [XNIO-1 task-1] ateCw7ARQSe9CvkUHKzGog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.806 [XNIO-1 task-1] ateCw7ARQSe9CvkUHKzGog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.806 [XNIO-1 task-1] ateCw7ARQSe9CvkUHKzGog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.806 [XNIO-1 task-1] ateCw7ARQSe9CvkUHKzGog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.808 [XNIO-1 task-1] SQ0DEndnRLyvez4a9BY94w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.808 [XNIO-1 task-1] SQ0DEndnRLyvez4a9BY94w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.808 [XNIO-1 task-1] SQ0DEndnRLyvez4a9BY94w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.808 [XNIO-1 task-1] SQ0DEndnRLyvez4a9BY94w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.808 [XNIO-1 task-1] SQ0DEndnRLyvez4a9BY94w DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.808 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.811 [XNIO-1 task-1] KVBrOeKHTF2u_VjOMk-8sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.811 [XNIO-1 task-1] KVBrOeKHTF2u_VjOMk-8sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.811 [XNIO-1 task-1] KVBrOeKHTF2u_VjOMk-8sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.811 [XNIO-1 task-1] KVBrOeKHTF2u_VjOMk-8sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.811 [XNIO-1 task-1] KVBrOeKHTF2u_VjOMk-8sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.811 [XNIO-1 task-1] KVBrOeKHTF2u_VjOMk-8sQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.813 [XNIO-1 task-1] 07pX-5JrRFqLjWEyOrmfxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.813 [XNIO-1 task-1] 07pX-5JrRFqLjWEyOrmfxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.813 [XNIO-1 task-1] 07pX-5JrRFqLjWEyOrmfxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.813 [XNIO-1 task-1] 07pX-5JrRFqLjWEyOrmfxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.818 [XNIO-1 task-1] AmRN0ABQSviyhL4Thq_CkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.818 [XNIO-1 task-1] AmRN0ABQSviyhL4Thq_CkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.818 [XNIO-1 task-1] AmRN0ABQSviyhL4Thq_CkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.818 [XNIO-1 task-1] AmRN0ABQSviyhL4Thq_CkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.818 [XNIO-1 task-1] AmRN0ABQSviyhL4Thq_CkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.822 [XNIO-1 task-1] TJgmUrG9RzO3NWs7ySXSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.822 [XNIO-1 task-1] TJgmUrG9RzO3NWs7ySXSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.822 [XNIO-1 task-1] TJgmUrG9RzO3NWs7ySXSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.822 [XNIO-1 task-1] TJgmUrG9RzO3NWs7ySXSIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.822 [XNIO-1 task-1] TJgmUrG9RzO3NWs7ySXSIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.823 [XNIO-1 task-1] TJgmUrG9RzO3NWs7ySXSIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.825 [XNIO-1 task-1] e7kUkhm7TfOlUZDjnZHYAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.825 [XNIO-1 task-1] e7kUkhm7TfOlUZDjnZHYAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.825 [XNIO-1 task-1] e7kUkhm7TfOlUZDjnZHYAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.825 [XNIO-1 task-1] e7kUkhm7TfOlUZDjnZHYAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.829 [XNIO-1 task-1] O5xfxktpR_WUWFsz8u0iXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.829 [XNIO-1 task-1] O5xfxktpR_WUWFsz8u0iXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.829 [XNIO-1 task-1] O5xfxktpR_WUWFsz8u0iXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.829 [XNIO-1 task-1] O5xfxktpR_WUWFsz8u0iXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.829 [XNIO-1 task-1] O5xfxktpR_WUWFsz8u0iXw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.830 [XNIO-1 task-1] O5xfxktpR_WUWFsz8u0iXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.831 [XNIO-1 task-1] OQ4HXyfWSGCnr-7q-VtnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.831 [XNIO-1 task-1] OQ4HXyfWSGCnr-7q-VtnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.831 [XNIO-1 task-1] OQ4HXyfWSGCnr-7q-VtnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.831 [XNIO-1 task-1] OQ4HXyfWSGCnr-7q-VtnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.831 [XNIO-1 task-1] OQ4HXyfWSGCnr-7q-VtnfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.833 [XNIO-1 task-1] OQ4HXyfWSGCnr-7q-VtnfQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.834 [XNIO-1 task-1] 80vST25SQ0-wmDdJ5NYCNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.834 [XNIO-1 task-1] 80vST25SQ0-wmDdJ5NYCNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.834 [XNIO-1 task-1] 80vST25SQ0-wmDdJ5NYCNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.834 [XNIO-1 task-1] 80vST25SQ0-wmDdJ5NYCNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.835 [XNIO-1 task-1] 80vST25SQ0-wmDdJ5NYCNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.836 [XNIO-1 task-1] 80vST25SQ0-wmDdJ5NYCNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 is not found.","severity":"ERROR"} +09:12:52.838 [XNIO-1 task-1] vjp1OBu-TwmqbiGba5IhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.838 [XNIO-1 task-1] vjp1OBu-TwmqbiGba5IhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.839 [XNIO-1 task-1] vjp1OBu-TwmqbiGba5IhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.839 [XNIO-1 task-1] vjp1OBu-TwmqbiGba5IhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.839 [XNIO-1 task-1] vjp1OBu-TwmqbiGba5IhOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.840 [XNIO-1 task-1] iBLh4ELcSgOUSoessVhoYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.840 [XNIO-1 task-1] iBLh4ELcSgOUSoessVhoYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.840 [XNIO-1 task-1] iBLh4ELcSgOUSoessVhoYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.840 [XNIO-1 task-1] iBLh4ELcSgOUSoessVhoYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.840 [XNIO-1 task-1] iBLh4ELcSgOUSoessVhoYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.844 [XNIO-1 task-1] iiZOGZiHRAqpXse-GHuCuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.844 [XNIO-1 task-1] iiZOGZiHRAqpXse-GHuCuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.844 [XNIO-1 task-1] iiZOGZiHRAqpXse-GHuCuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.845 [XNIO-1 task-1] iiZOGZiHRAqpXse-GHuCuw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.853 [XNIO-1 task-1] TDNM4DfSToGKMwyaEhKU0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.853 [XNIO-1 task-1] TDNM4DfSToGKMwyaEhKU0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.854 [XNIO-1 task-1] TDNM4DfSToGKMwyaEhKU0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.854 [XNIO-1 task-1] TDNM4DfSToGKMwyaEhKU0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5, base path is set to: null +09:12:52.854 [XNIO-1 task-1] TDNM4DfSToGKMwyaEhKU0g DEBUG com.networknt.schema.TypeValidator debug - validate( "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", "2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5", refreshToken) +09:12:52.854 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d90276b-f9db-4ae1-8ade-8d4dcae4d2c5 +09:12:52.857 [XNIO-1 task-1] 6FN9E36iTviBj1ZNWLMtNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.857 [XNIO-1 task-1] 6FN9E36iTviBj1ZNWLMtNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.857 [XNIO-1 task-1] 6FN9E36iTviBj1ZNWLMtNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.857 [XNIO-1 task-1] 6FN9E36iTviBj1ZNWLMtNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.857 [XNIO-1 task-1] 6FN9E36iTviBj1ZNWLMtNg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.857 [XNIO-1 task-1] 6FN9E36iTviBj1ZNWLMtNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.859 [XNIO-1 task-1] Z-67ajfdS9Ov8Cu4fQOJAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.859 [XNIO-1 task-1] Z-67ajfdS9Ov8Cu4fQOJAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.859 [XNIO-1 task-1] Z-67ajfdS9Ov8Cu4fQOJAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.859 [XNIO-1 task-1] Z-67ajfdS9Ov8Cu4fQOJAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.864 [XNIO-1 task-1] cvjt3QbnTj-X562SSBFP_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.864 [XNIO-1 task-1] cvjt3QbnTj-X562SSBFP_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.864 [XNIO-1 task-1] cvjt3QbnTj-X562SSBFP_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.864 [XNIO-1 task-1] cvjt3QbnTj-X562SSBFP_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.864 [XNIO-1 task-1] cvjt3QbnTj-X562SSBFP_w DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.864 [XNIO-1 task-1] cvjt3QbnTj-X562SSBFP_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.866 [XNIO-1 task-1] cVqQdzX8Qia-588mBmmOYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.866 [XNIO-1 task-1] cVqQdzX8Qia-588mBmmOYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.866 [XNIO-1 task-1] cVqQdzX8Qia-588mBmmOYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.867 [XNIO-1 task-1] cVqQdzX8Qia-588mBmmOYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.871 [XNIO-1 task-1] vRKkB8TYRd2sY7lqH7hUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.871 [XNIO-1 task-1] vRKkB8TYRd2sY7lqH7hUNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.871 [XNIO-1 task-1] vRKkB8TYRd2sY7lqH7hUNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.871 [XNIO-1 task-1] vRKkB8TYRd2sY7lqH7hUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.871 [XNIO-1 task-1] vRKkB8TYRd2sY7lqH7hUNg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.871 [XNIO-1 task-1] vRKkB8TYRd2sY7lqH7hUNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.873 [XNIO-1 task-1] r8DqaWLIRqCVw37Do2ibtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.873 [XNIO-1 task-1] r8DqaWLIRqCVw37Do2ibtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.873 [XNIO-1 task-1] r8DqaWLIRqCVw37Do2ibtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.873 [XNIO-1 task-1] r8DqaWLIRqCVw37Do2ibtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.873 [XNIO-1 task-1] r8DqaWLIRqCVw37Do2ibtg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.875 [XNIO-1 task-1] SUOzwv0LQpy4o31iOsbCvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.876 [XNIO-1 task-1] SUOzwv0LQpy4o31iOsbCvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.876 [XNIO-1 task-1] SUOzwv0LQpy4o31iOsbCvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.876 [XNIO-1 task-1] SUOzwv0LQpy4o31iOsbCvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.876 [XNIO-1 task-1] SUOzwv0LQpy4o31iOsbCvw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.880 [XNIO-1 task-1] H0-D7b8KS2Ofe2v60zaFpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.880 [XNIO-1 task-1] H0-D7b8KS2Ofe2v60zaFpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.880 [XNIO-1 task-1] H0-D7b8KS2Ofe2v60zaFpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.880 [XNIO-1 task-1] H0-D7b8KS2Ofe2v60zaFpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.880 [XNIO-1 task-1] H0-D7b8KS2Ofe2v60zaFpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.882 [XNIO-1 task-1] d3FfbZXxRJme2JOyK0PxjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.882 [XNIO-1 task-1] d3FfbZXxRJme2JOyK0PxjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.882 [XNIO-1 task-1] d3FfbZXxRJme2JOyK0PxjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.882 [XNIO-1 task-1] d3FfbZXxRJme2JOyK0PxjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.882 [XNIO-1 task-1] d3FfbZXxRJme2JOyK0PxjA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.886 [XNIO-1 task-1] UJjtdV5cTZyOrOgfMJMOdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.886 [XNIO-1 task-1] UJjtdV5cTZyOrOgfMJMOdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.886 [XNIO-1 task-1] UJjtdV5cTZyOrOgfMJMOdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.886 [XNIO-1 task-1] UJjtdV5cTZyOrOgfMJMOdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.890 [XNIO-1 task-1] j2mGsZTfT5mS47lKya-7xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.890 [XNIO-1 task-1] j2mGsZTfT5mS47lKya-7xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.891 [XNIO-1 task-1] j2mGsZTfT5mS47lKya-7xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.891 [XNIO-1 task-1] j2mGsZTfT5mS47lKya-7xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.891 [XNIO-1 task-1] j2mGsZTfT5mS47lKya-7xQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.896 [XNIO-1 task-1] H3X0eoojRE-_lnWk4tUe1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.896 [XNIO-1 task-1] H3X0eoojRE-_lnWk4tUe1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.896 [XNIO-1 task-1] H3X0eoojRE-_lnWk4tUe1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.896 [XNIO-1 task-1] H3X0eoojRE-_lnWk4tUe1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.896 [XNIO-1 task-1] H3X0eoojRE-_lnWk4tUe1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.897 [XNIO-1 task-1] sz0Uj2-7QfCNNo57QOg8CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.897 [XNIO-1 task-1] sz0Uj2-7QfCNNo57QOg8CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.898 [XNIO-1 task-1] sz0Uj2-7QfCNNo57QOg8CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.898 [XNIO-1 task-1] sz0Uj2-7QfCNNo57QOg8CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.898 [XNIO-1 task-1] sz0Uj2-7QfCNNo57QOg8CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.898 [XNIO-1 task-1] sz0Uj2-7QfCNNo57QOg8CQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.899 [XNIO-1 task-1] r4u0PhgKQgiTX8E--at7-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.899 [XNIO-1 task-1] r4u0PhgKQgiTX8E--at7-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.899 [XNIO-1 task-1] r4u0PhgKQgiTX8E--at7-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.899 [XNIO-1 task-1] r4u0PhgKQgiTX8E--at7-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.899 [XNIO-1 task-1] r4u0PhgKQgiTX8E--at7-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.901 [XNIO-1 task-1] 6mHWrzj6QSKnCmnw3teJfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.901 [XNIO-1 task-1] 6mHWrzj6QSKnCmnw3teJfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.901 [XNIO-1 task-1] 6mHWrzj6QSKnCmnw3teJfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.901 [XNIO-1 task-1] 6mHWrzj6QSKnCmnw3teJfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.901 [XNIO-1 task-1] 6mHWrzj6QSKnCmnw3teJfg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.901 [XNIO-1 task-1] 6mHWrzj6QSKnCmnw3teJfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.903 [XNIO-1 task-1] mfIMWAJPSzGRlps5MoM_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.904 [XNIO-1 task-1] mfIMWAJPSzGRlps5MoM_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.904 [XNIO-1 task-1] mfIMWAJPSzGRlps5MoM_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.904 [XNIO-1 task-1] mfIMWAJPSzGRlps5MoM_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.904 [XNIO-1 task-1] mfIMWAJPSzGRlps5MoM_7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.905 [XNIO-1 task-1] YErZ__XgQn6u6bwBYeN42Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.905 [XNIO-1 task-1] YErZ__XgQn6u6bwBYeN42Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.905 [XNIO-1 task-1] YErZ__XgQn6u6bwBYeN42Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.905 [XNIO-1 task-1] YErZ__XgQn6u6bwBYeN42Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.905 [XNIO-1 task-1] YErZ__XgQn6u6bwBYeN42Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.906 [XNIO-1 task-1] YErZ__XgQn6u6bwBYeN42Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.907 [XNIO-1 task-1] Kbk_IRBVRmeP1vQOhAWz5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.907 [XNIO-1 task-1] Kbk_IRBVRmeP1vQOhAWz5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.907 [XNIO-1 task-1] Kbk_IRBVRmeP1vQOhAWz5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.907 [XNIO-1 task-1] Kbk_IRBVRmeP1vQOhAWz5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.907 [XNIO-1 task-1] Kbk_IRBVRmeP1vQOhAWz5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.908 [XNIO-1 task-1] BfAolf6mTVmngTpa2z0nbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.909 [XNIO-1 task-1] BfAolf6mTVmngTpa2z0nbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.909 [XNIO-1 task-1] BfAolf6mTVmngTpa2z0nbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.909 [XNIO-1 task-1] BfAolf6mTVmngTpa2z0nbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.909 [XNIO-1 task-1] BfAolf6mTVmngTpa2z0nbA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.914 [XNIO-1 task-1] WF-OFgzIT4arIZWht0xjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.914 [XNIO-1 task-1] WF-OFgzIT4arIZWht0xjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.914 [XNIO-1 task-1] WF-OFgzIT4arIZWht0xjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.914 [XNIO-1 task-1] WF-OFgzIT4arIZWht0xjeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.914 [XNIO-1 task-1] WF-OFgzIT4arIZWht0xjeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.915 [XNIO-1 task-1] Dlk2SZ3aRY-Wa8Go81GvEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.915 [XNIO-1 task-1] Dlk2SZ3aRY-Wa8Go81GvEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.915 [XNIO-1 task-1] Dlk2SZ3aRY-Wa8Go81GvEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.915 [XNIO-1 task-1] Dlk2SZ3aRY-Wa8Go81GvEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.916 [XNIO-1 task-1] Dlk2SZ3aRY-Wa8Go81GvEw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.916 [XNIO-1 task-1] Dlk2SZ3aRY-Wa8Go81GvEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.917 [XNIO-1 task-1] wsU28peYSmWD1VBaH0X2GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.917 [XNIO-1 task-1] wsU28peYSmWD1VBaH0X2GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.917 [XNIO-1 task-1] wsU28peYSmWD1VBaH0X2GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.917 [XNIO-1 task-1] wsU28peYSmWD1VBaH0X2GA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.928 [XNIO-1 task-1] fLhUPnKRRrWKzUklLtJy2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.928 [XNIO-1 task-1] fLhUPnKRRrWKzUklLtJy2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.928 [XNIO-1 task-1] fLhUPnKRRrWKzUklLtJy2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.928 [XNIO-1 task-1] fLhUPnKRRrWKzUklLtJy2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.929 [XNIO-1 task-1] fLhUPnKRRrWKzUklLtJy2g DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.929 [XNIO-1 task-1] fLhUPnKRRrWKzUklLtJy2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.930 [XNIO-1 task-1] 8tSPfAamTsiG_hWbN_sEZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.931 [XNIO-1 task-1] 8tSPfAamTsiG_hWbN_sEZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.931 [XNIO-1 task-1] 8tSPfAamTsiG_hWbN_sEZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.931 [XNIO-1 task-1] 8tSPfAamTsiG_hWbN_sEZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.934 [XNIO-1 task-1] 838-rudISxC6x3RSu4pG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.934 [XNIO-1 task-1] 838-rudISxC6x3RSu4pG-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.935 [XNIO-1 task-1] 838-rudISxC6x3RSu4pG-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.935 [XNIO-1 task-1] 838-rudISxC6x3RSu4pG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.935 [XNIO-1 task-1] 838-rudISxC6x3RSu4pG-A DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.935 [XNIO-1 task-1] 838-rudISxC6x3RSu4pG-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.937 [XNIO-1 task-1] vQxhw_v3TFSqQGsJZZVi2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.937 [XNIO-1 task-1] vQxhw_v3TFSqQGsJZZVi2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.937 [XNIO-1 task-1] vQxhw_v3TFSqQGsJZZVi2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.937 [XNIO-1 task-1] vQxhw_v3TFSqQGsJZZVi2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.938 [XNIO-1 task-1] vQxhw_v3TFSqQGsJZZVi2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.939 [XNIO-1 task-1] -slpra-dS7qXq9T1xBqaOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.939 [XNIO-1 task-1] -slpra-dS7qXq9T1xBqaOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.939 [XNIO-1 task-1] -slpra-dS7qXq9T1xBqaOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.939 [XNIO-1 task-1] -slpra-dS7qXq9T1xBqaOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.939 [XNIO-1 task-1] -slpra-dS7qXq9T1xBqaOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.939 [XNIO-1 task-1] -slpra-dS7qXq9T1xBqaOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.941 [XNIO-1 task-1] J-tYeTEgT365lBNgMZIQlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.941 [XNIO-1 task-1] J-tYeTEgT365lBNgMZIQlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.941 [XNIO-1 task-1] J-tYeTEgT365lBNgMZIQlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.941 [XNIO-1 task-1] J-tYeTEgT365lBNgMZIQlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.941 [XNIO-1 task-1] J-tYeTEgT365lBNgMZIQlw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.943 [XNIO-1 task-1] lNd5nUVrSduXI3DtcewiXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.943 [XNIO-1 task-1] lNd5nUVrSduXI3DtcewiXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.943 [XNIO-1 task-1] lNd5nUVrSduXI3DtcewiXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.943 [XNIO-1 task-1] lNd5nUVrSduXI3DtcewiXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.943 [XNIO-1 task-1] lNd5nUVrSduXI3DtcewiXg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.943 [XNIO-1 task-1] lNd5nUVrSduXI3DtcewiXg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.945 [XNIO-1 task-1] EsTdShleSSGXtKXQKqy_mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.946 [XNIO-1 task-1] EsTdShleSSGXtKXQKqy_mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.946 [XNIO-1 task-1] EsTdShleSSGXtKXQKqy_mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.946 [XNIO-1 task-1] EsTdShleSSGXtKXQKqy_mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.946 [XNIO-1 task-1] EsTdShleSSGXtKXQKqy_mw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.947 [XNIO-1 task-1] -72yHo7nQiu0eThjqpfIXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.947 [XNIO-1 task-1] -72yHo7nQiu0eThjqpfIXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.947 [XNIO-1 task-1] -72yHo7nQiu0eThjqpfIXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.947 [XNIO-1 task-1] -72yHo7nQiu0eThjqpfIXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.947 [XNIO-1 task-1] -72yHo7nQiu0eThjqpfIXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.948 [XNIO-1 task-1] -72yHo7nQiu0eThjqpfIXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.949 [XNIO-1 task-1] OdWYuzG2STyWX69YenjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.949 [XNIO-1 task-1] OdWYuzG2STyWX69YenjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.949 [XNIO-1 task-1] OdWYuzG2STyWX69YenjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.949 [XNIO-1 task-1] OdWYuzG2STyWX69YenjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.949 [XNIO-1 task-1] OdWYuzG2STyWX69YenjCFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.951 [XNIO-1 task-1] XaF11rQ4QOKGdsuON-QvHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.951 [XNIO-1 task-1] XaF11rQ4QOKGdsuON-QvHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.951 [XNIO-1 task-1] XaF11rQ4QOKGdsuON-QvHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.951 [XNIO-1 task-1] XaF11rQ4QOKGdsuON-QvHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.951 [XNIO-1 task-1] XaF11rQ4QOKGdsuON-QvHg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.955 [XNIO-1 task-1] g7vyAbGVR5apUpMFjewqPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.955 [XNIO-1 task-1] g7vyAbGVR5apUpMFjewqPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.955 [XNIO-1 task-1] g7vyAbGVR5apUpMFjewqPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.955 [XNIO-1 task-1] g7vyAbGVR5apUpMFjewqPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.955 [XNIO-1 task-1] g7vyAbGVR5apUpMFjewqPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.957 [XNIO-1 task-1] b9XXAQjPRWesDUZIPAc5PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.957 [XNIO-1 task-1] b9XXAQjPRWesDUZIPAc5PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.957 [XNIO-1 task-1] b9XXAQjPRWesDUZIPAc5PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.957 [XNIO-1 task-1] b9XXAQjPRWesDUZIPAc5PA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.957 [XNIO-1 task-1] b9XXAQjPRWesDUZIPAc5PA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.961 [XNIO-1 task-1] qJd8baF-TzygcN8IIMim-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.961 [XNIO-1 task-1] qJd8baF-TzygcN8IIMim-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.961 [XNIO-1 task-1] qJd8baF-TzygcN8IIMim-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.961 [XNIO-1 task-1] qJd8baF-TzygcN8IIMim-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.961 [XNIO-1 task-1] qJd8baF-TzygcN8IIMim-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.964 [XNIO-1 task-1] 9KFVWZYgQomCuLih-FkYhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.964 [XNIO-1 task-1] 9KFVWZYgQomCuLih-FkYhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.964 [XNIO-1 task-1] 9KFVWZYgQomCuLih-FkYhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.964 [XNIO-1 task-1] 9KFVWZYgQomCuLih-FkYhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.964 [XNIO-1 task-1] 9KFVWZYgQomCuLih-FkYhA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.964 [XNIO-1 task-1] 9KFVWZYgQomCuLih-FkYhA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.966 [XNIO-1 task-1] 8HCWjkZ9Ta6HqRtqk-CvNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.966 [XNIO-1 task-1] 8HCWjkZ9Ta6HqRtqk-CvNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.966 [XNIO-1 task-1] 8HCWjkZ9Ta6HqRtqk-CvNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.966 [XNIO-1 task-1] 8HCWjkZ9Ta6HqRtqk-CvNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.966 [XNIO-1 task-1] 8HCWjkZ9Ta6HqRtqk-CvNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.967 [XNIO-1 task-1] 6Q4fvzu4TaCMjScAz6vXFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.967 [XNIO-1 task-1] 6Q4fvzu4TaCMjScAz6vXFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.967 [XNIO-1 task-1] 6Q4fvzu4TaCMjScAz6vXFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.968 [XNIO-1 task-1] 6Q4fvzu4TaCMjScAz6vXFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.968 [XNIO-1 task-1] 6Q4fvzu4TaCMjScAz6vXFA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.968 [XNIO-1 task-1] 6Q4fvzu4TaCMjScAz6vXFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.969 [XNIO-1 task-1] RfC_ZOHOQxWoLCd0zn2dnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.969 [XNIO-1 task-1] RfC_ZOHOQxWoLCd0zn2dnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.969 [XNIO-1 task-1] RfC_ZOHOQxWoLCd0zn2dnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.969 [XNIO-1 task-1] RfC_ZOHOQxWoLCd0zn2dnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.974 [XNIO-1 task-1] oO1q_s4bSi2WIMPHuTnwCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.975 [XNIO-1 task-1] oO1q_s4bSi2WIMPHuTnwCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.975 [XNIO-1 task-1] oO1q_s4bSi2WIMPHuTnwCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.975 [XNIO-1 task-1] oO1q_s4bSi2WIMPHuTnwCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.975 [XNIO-1 task-1] oO1q_s4bSi2WIMPHuTnwCw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.975 [XNIO-1 task-1] oO1q_s4bSi2WIMPHuTnwCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.982 [XNIO-1 task-1] MQ-4PZxpTH2_rsVzhTtHBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.982 [XNIO-1 task-1] MQ-4PZxpTH2_rsVzhTtHBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.982 [XNIO-1 task-1] MQ-4PZxpTH2_rsVzhTtHBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.982 [XNIO-1 task-1] MQ-4PZxpTH2_rsVzhTtHBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.982 [XNIO-1 task-1] MQ-4PZxpTH2_rsVzhTtHBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.985 [XNIO-1 task-1] BRadZP6JShaGpi3d3geNHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.985 [XNIO-1 task-1] BRadZP6JShaGpi3d3geNHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.985 [XNIO-1 task-1] BRadZP6JShaGpi3d3geNHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.985 [XNIO-1 task-1] BRadZP6JShaGpi3d3geNHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.985 [XNIO-1 task-1] BRadZP6JShaGpi3d3geNHA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.985 [XNIO-1 task-1] BRadZP6JShaGpi3d3geNHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.987 [XNIO-1 task-1] W_82iT2lQ6CYkfxpS0B88A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.987 [XNIO-1 task-1] W_82iT2lQ6CYkfxpS0B88A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.987 [XNIO-1 task-1] W_82iT2lQ6CYkfxpS0B88A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.987 [XNIO-1 task-1] W_82iT2lQ6CYkfxpS0B88A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.992 [XNIO-1 task-1] K2_ZGugfRV-sLRoT9dl2LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.992 [XNIO-1 task-1] K2_ZGugfRV-sLRoT9dl2LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.992 [XNIO-1 task-1] K2_ZGugfRV-sLRoT9dl2LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:52.992 [XNIO-1 task-1] K2_ZGugfRV-sLRoT9dl2LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:52.992 [XNIO-1 task-1] K2_ZGugfRV-sLRoT9dl2LA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c4699e9-fde2-483f-9a27-9707c9f2e00c", "4c4699e9-fde2-483f-9a27-9707c9f2e00c", refreshToken) +09:12:52.992 [XNIO-1 task-1] K2_ZGugfRV-sLRoT9dl2LA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c4699e9-fde2-483f-9a27-9707c9f2e00c is not found.","severity":"ERROR"} +09:12:52.994 [XNIO-1 task-1] yv_G8Ng5Rx2w0Gb0Ay9BSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.994 [XNIO-1 task-1] yv_G8Ng5Rx2w0Gb0Ay9BSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.994 [XNIO-1 task-1] yv_G8Ng5Rx2w0Gb0Ay9BSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:52.994 [XNIO-1 task-1] yv_G8Ng5Rx2w0Gb0Ay9BSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.994 [XNIO-1 task-1] yv_G8Ng5Rx2w0Gb0Ay9BSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.996 [XNIO-1 task-1] aD9DPP-nQqGoAfZ9GRY-cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.996 [XNIO-1 task-1] aD9DPP-nQqGoAfZ9GRY-cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:52.996 [XNIO-1 task-1] aD9DPP-nQqGoAfZ9GRY-cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:52.996 [XNIO-1 task-1] aD9DPP-nQqGoAfZ9GRY-cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.996 [XNIO-1 task-1] aD9DPP-nQqGoAfZ9GRY-cw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:52.999 [XNIO-1 task-1] 4WcHPdQFQAC1Hi1Pwrms6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:52.999 [XNIO-1 task-1] 4WcHPdQFQAC1Hi1Pwrms6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:53.000 [XNIO-1 task-1] 4WcHPdQFQAC1Hi1Pwrms6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:53.000 [XNIO-1 task-1] 4WcHPdQFQAC1Hi1Pwrms6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:53.004 [XNIO-1 task-1] BAgULLDbQPKolFw3qDgmiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:53.004 [XNIO-1 task-1] BAgULLDbQPKolFw3qDgmiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:53.004 [XNIO-1 task-1] BAgULLDbQPKolFw3qDgmiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +09:12:53.004 [XNIO-1 task-1] BAgULLDbQPKolFw3qDgmiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:53.005 [XNIO-1 task-1] BAgULLDbQPKolFw3qDgmiw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +09:12:53.008 [XNIO-1 task-1] mX2Z7orsT-CN2x3EjgAqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:53.008 [XNIO-1 task-1] mX2Z7orsT-CN2x3EjgAqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +09:12:53.008 [XNIO-1 task-1] mX2Z7orsT-CN2x3EjgAqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +09:12:53.008 [XNIO-1 task-1] mX2Z7orsT-CN2x3EjgAqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:53.008 [XNIO-1 task-1] mX2Z7orsT-CN2x3EjgAqXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:53.010 [XNIO-1 task-1] O-71X7J_RKujwW35LACuHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null +09:12:53.010 [XNIO-1 task-1] O-71X7J_RKujwW35LACuHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +09:12:53.010 [XNIO-1 task-1] O-71X7J_RKujwW35LACuHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +09:12:53.010 [XNIO-1 task-1] O-71X7J_RKujwW35LACuHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c4699e9-fde2-483f-9a27-9707c9f2e00c, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..8495753 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-service-1.log @@ -0,0 +1,3091 @@ +09:12:47.451 [XNIO-1 task-2] nbnL-uKsQoGQPOrwiQErLw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.451 [XNIO-1 task-2] nbnL-uKsQoGQPOrwiQErLw DEBUG com.networknt.schema.TypeValidator debug - validate( "fdc49689-17e1-4899-8ee8-ffa7c4d9", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.451 [XNIO-1 task-2] nbnL-uKsQoGQPOrwiQErLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:951a37ce +09:12:47.457 [XNIO-1 task-2] 7xSSPColRWeIr3k8TFwXgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.457 [XNIO-1 task-2] 7xSSPColRWeIr3k8TFwXgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.457 [XNIO-1 task-2] 7xSSPColRWeIr3k8TFwXgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.463 [XNIO-1 task-2] 2euVScO-Qgmov3nW04gjsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.463 [XNIO-1 task-2] 2euVScO-Qgmov3nW04gjsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.464 [XNIO-1 task-2] 2euVScO-Qgmov3nW04gjsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.470 [XNIO-1 task-2] hJq4tQT8TPCHj6ruQNdH_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.470 [XNIO-1 task-2] hJq4tQT8TPCHj6ruQNdH_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.470 [XNIO-1 task-2] hJq4tQT8TPCHj6ruQNdH_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.470 [XNIO-1 task-2] hJq4tQT8TPCHj6ruQNdH_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.476 [XNIO-1 task-2] ETFGlFdLQz661lFeWVgWHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecb9b127, base path is set to: null +09:12:47.476 [XNIO-1 task-2] ETFGlFdLQz661lFeWVgWHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.476 [XNIO-1 task-2] ETFGlFdLQz661lFeWVgWHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.476 [XNIO-1 task-2] ETFGlFdLQz661lFeWVgWHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecb9b127, base path is set to: null +09:12:47.476 [XNIO-1 task-2] ETFGlFdLQz661lFeWVgWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "ecb9b127", "ecb9b127", serviceId) +09:12:47.482 [XNIO-1 task-2] 1QGb94-wR_eh75ADlYOniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.482 [XNIO-1 task-2] 1QGb94-wR_eh75ADlYOniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.482 [XNIO-1 task-2] 1QGb94-wR_eh75ADlYOniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.487 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.487 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.487 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.487 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.488 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.488 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG com.networknt.schema.TypeValidator debug - validate( "0408e9d2-40c9-408f-9f7a-a637a6676f72", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:47.488 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG com.networknt.schema.TypeValidator debug - validate( "951a37ce", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:47.488 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.488 [XNIO-1 task-2] EvXOtCllTX-Qj_jFzrfyVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.488 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:951a37ce +09:12:47.493 [XNIO-1 task-2] IhUve6_OTYKRJ7yYcVTPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.493 [XNIO-1 task-2] IhUve6_OTYKRJ7yYcVTPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.493 [XNIO-1 task-2] IhUve6_OTYKRJ7yYcVTPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.499 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.499 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.500 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.500 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.500 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.500 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0408e9d2-40c9-408f-9f7a-a637a6676f72", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:47.500 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "951a37ce", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:47.500 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.500 [XNIO-1 task-2] IfCLDr2BTDepikUkEOVlYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"951a37ce","serviceName":"fdc49689-17e1-4899-8ee8-ffa7c4d9","serviceDesc":"0408e9d2-40c9-408f-9f7a-a637a6676f72","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.500 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:951a37ce +09:12:47.506 [XNIO-1 task-2] xcnCe2EkR3mCJ62pzfBxlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1cc7aa31 +09:12:47.506 [XNIO-1 task-2] xcnCe2EkR3mCJ62pzfBxlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.506 [XNIO-1 task-2] xcnCe2EkR3mCJ62pzfBxlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.506 [XNIO-1 task-2] xcnCe2EkR3mCJ62pzfBxlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1cc7aa31 +09:12:47.512 [XNIO-1 task-2] RVou_BHORoayeDGASp10Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.512 [XNIO-1 task-2] RVou_BHORoayeDGASp10Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.512 [XNIO-1 task-2] RVou_BHORoayeDGASp10Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.520 [XNIO-1 task-2] 4YQMuTryTW-It28_la9eJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.520 [XNIO-1 task-2] 4YQMuTryTW-It28_la9eJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.520 [XNIO-1 task-2] 4YQMuTryTW-It28_la9eJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.520 [XNIO-1 task-2] 4YQMuTryTW-It28_la9eJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.529 [XNIO-1 task-2] NCcdMf4_S3-pC1SUCCX0kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe866b3, base path is set to: null +09:12:47.529 [XNIO-1 task-2] NCcdMf4_S3-pC1SUCCX0kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.529 [XNIO-1 task-2] NCcdMf4_S3-pC1SUCCX0kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.529 [XNIO-1 task-2] NCcdMf4_S3-pC1SUCCX0kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe866b3, base path is set to: null +09:12:47.529 [XNIO-1 task-2] NCcdMf4_S3-pC1SUCCX0kA DEBUG com.networknt.schema.TypeValidator debug - validate( "efe866b3", "efe866b3", serviceId) +09:12:47.531 [XNIO-1 task-2] tiu-hJw3SDa34AM01ZDzeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/561fbe07 +09:12:47.531 [XNIO-1 task-2] tiu-hJw3SDa34AM01ZDzeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.531 [XNIO-1 task-2] tiu-hJw3SDa34AM01ZDzeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.532 [XNIO-1 task-2] tiu-hJw3SDa34AM01ZDzeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/561fbe07 +09:12:47.534 [XNIO-1 task-2] WrSf5aMySb6Ko4rFH_FMlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.534 [XNIO-1 task-2] WrSf5aMySb6Ko4rFH_FMlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.534 [XNIO-1 task-2] WrSf5aMySb6Ko4rFH_FMlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.534 [XNIO-1 task-2] WrSf5aMySb6Ko4rFH_FMlw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.538 [XNIO-1 task-2] r5LgOEr-Qne8D1pMdNGfKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b63dae6, base path is set to: null +09:12:47.538 [XNIO-1 task-2] r5LgOEr-Qne8D1pMdNGfKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.538 [XNIO-1 task-2] r5LgOEr-Qne8D1pMdNGfKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.538 [XNIO-1 task-2] r5LgOEr-Qne8D1pMdNGfKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b63dae6, base path is set to: null +09:12:47.538 [XNIO-1 task-2] r5LgOEr-Qne8D1pMdNGfKw DEBUG com.networknt.schema.TypeValidator debug - validate( "2b63dae6", "2b63dae6", serviceId) +09:12:47.540 [XNIO-1 task-2] QAcxt2ZfSHKEDYY_N6WODw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/efe866b3 +09:12:47.540 [XNIO-1 task-2] QAcxt2ZfSHKEDYY_N6WODw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.540 [XNIO-1 task-2] QAcxt2ZfSHKEDYY_N6WODw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.540 [XNIO-1 task-2] QAcxt2ZfSHKEDYY_N6WODw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/efe866b3 +09:12:47.541 [XNIO-1 task-2] O0S8dp3QR3W75vfXt5zQNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b63dae6, base path is set to: null +09:12:47.541 [XNIO-1 task-2] O0S8dp3QR3W75vfXt5zQNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.541 [XNIO-1 task-2] O0S8dp3QR3W75vfXt5zQNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.541 [XNIO-1 task-2] O0S8dp3QR3W75vfXt5zQNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b63dae6, base path is set to: null +09:12:47.542 [XNIO-1 task-2] O0S8dp3QR3W75vfXt5zQNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2b63dae6", "2b63dae6", serviceId) +09:12:47.543 [XNIO-1 task-2] b-ZGzz3PRSmAE0xuvYbZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.543 [XNIO-1 task-2] b-ZGzz3PRSmAE0xuvYbZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.543 [XNIO-1 task-2] b-ZGzz3PRSmAE0xuvYbZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.552 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.553 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.553 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.554 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.554 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.554 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG com.networknt.schema.TypeValidator debug - validate( "b0ff9469-e27a-44a0-ab6c-a8dde2f46de3", {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:47.554 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG com.networknt.schema.TypeValidator debug - validate( "efe866b3", {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:47.554 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.554 [XNIO-1 task-2] mwv5HEIAQn6ta3Zwh8XEgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"efe866b3","serviceName":"b25911d5-9673-4c1c-8fb8-13a65232","serviceDesc":"b0ff9469-e27a-44a0-ab6c-a8dde2f46de3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.560 [XNIO-1 task-2] 46xzXWJaRmWOhGkcwVFZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.560 [XNIO-1 task-2] 46xzXWJaRmWOhGkcwVFZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.560 [XNIO-1 task-2] 46xzXWJaRmWOhGkcwVFZDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.560 [XNIO-1 task-2] 46xzXWJaRmWOhGkcwVFZDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.565 [XNIO-1 task-2] KZ_UG4jPQauKskGsUlCBrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.565 [XNIO-1 task-2] KZ_UG4jPQauKskGsUlCBrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.565 [XNIO-1 task-2] KZ_UG4jPQauKskGsUlCBrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.565 [XNIO-1 task-2] KZ_UG4jPQauKskGsUlCBrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.569 [XNIO-1 task-2] UjGuWG2DQgKGJVL5Ll61Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.570 [XNIO-1 task-2] UjGuWG2DQgKGJVL5Ll61Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.570 [XNIO-1 task-2] UjGuWG2DQgKGJVL5Ll61Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.575 [XNIO-1 task-2] -ChsrR43QLm2vDm5l_KouA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2b63dae6 +09:12:47.575 [XNIO-1 task-2] -ChsrR43QLm2vDm5l_KouA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.575 [XNIO-1 task-2] -ChsrR43QLm2vDm5l_KouA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.575 [XNIO-1 task-2] -ChsrR43QLm2vDm5l_KouA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2b63dae6 +09:12:47.580 [XNIO-1 task-2] FQaDyFt9QQKzn_95kuA9kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.580 [XNIO-1 task-2] FQaDyFt9QQKzn_95kuA9kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.581 [XNIO-1 task-2] FQaDyFt9QQKzn_95kuA9kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.581 [XNIO-1 task-2] FQaDyFt9QQKzn_95kuA9kA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.585 [XNIO-1 task-2] qdRsCxBtTJKmPy7k7JBMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.585 [XNIO-1 task-2] qdRsCxBtTJKmPy7k7JBMIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.585 [XNIO-1 task-2] qdRsCxBtTJKmPy7k7JBMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.591 [XNIO-1 task-2] mxqUJES7RFas1FYuItrXxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe866b3, base path is set to: null +09:12:47.591 [XNIO-1 task-2] mxqUJES7RFas1FYuItrXxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.591 [XNIO-1 task-2] mxqUJES7RFas1FYuItrXxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.591 [XNIO-1 task-2] mxqUJES7RFas1FYuItrXxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe866b3, base path is set to: null +09:12:47.591 [XNIO-1 task-2] mxqUJES7RFas1FYuItrXxg DEBUG com.networknt.schema.TypeValidator debug - validate( "efe866b3", "efe866b3", serviceId) +09:12:47.594 [XNIO-1 task-2] ySxn3gnvT0uSKPz8oQk7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/951a37ce +09:12:47.594 [XNIO-1 task-2] ySxn3gnvT0uSKPz8oQk7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.594 [XNIO-1 task-2] ySxn3gnvT0uSKPz8oQk7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.594 [XNIO-1 task-2] ySxn3gnvT0uSKPz8oQk7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/951a37ce +09:12:47.594 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:951a37ce +09:12:47.599 [XNIO-1 task-2] 6ALjClZnQDmlzt5XFpExGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/561fbe07, base path is set to: null +09:12:47.599 [XNIO-1 task-2] 6ALjClZnQDmlzt5XFpExGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.600 [XNIO-1 task-2] 6ALjClZnQDmlzt5XFpExGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.600 [XNIO-1 task-2] 6ALjClZnQDmlzt5XFpExGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/561fbe07, base path is set to: null +09:12:47.600 [XNIO-1 task-2] 6ALjClZnQDmlzt5XFpExGg DEBUG com.networknt.schema.TypeValidator debug - validate( "561fbe07", "561fbe07", serviceId) +09:12:47.606 [XNIO-1 task-2] zeUBdld8TuCX_tgFM1vcqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b73f0538 +09:12:47.606 [XNIO-1 task-2] zeUBdld8TuCX_tgFM1vcqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.606 [XNIO-1 task-2] zeUBdld8TuCX_tgFM1vcqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.606 [XNIO-1 task-2] zeUBdld8TuCX_tgFM1vcqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b73f0538 +09:12:47.613 [XNIO-1 task-2] wD8dRka9SUSrMCbJzt40Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.613 [XNIO-1 task-2] wD8dRka9SUSrMCbJzt40Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.614 [XNIO-1 task-2] wD8dRka9SUSrMCbJzt40Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.621 [XNIO-1 task-2] XnbepaODTSqq6Iz1M_m4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.621 [XNIO-1 task-2] XnbepaODTSqq6Iz1M_m4RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.621 [XNIO-1 task-2] XnbepaODTSqq6Iz1M_m4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.621 [XNIO-1 task-2] XnbepaODTSqq6Iz1M_m4RA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.627 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG com.networknt.schema.TypeValidator debug - validate( "7e253597-180f-4352-9238-913ae451", {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.628 [XNIO-1 task-2] 1vz-YMbDRDmNn_G2_u6Vmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"05ee527a","serviceName":"7e253597-180f-4352-9238-913ae451","serviceDesc":"170ed7fc-995a-4d34-acdd-a27566ba5d42","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.634 [XNIO-1 task-2] SLlP1bzKSPK8E1FRBTMjwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe866b3, base path is set to: null +09:12:47.634 [XNIO-1 task-2] SLlP1bzKSPK8E1FRBTMjwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.634 [XNIO-1 task-2] SLlP1bzKSPK8E1FRBTMjwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.634 [XNIO-1 task-2] SLlP1bzKSPK8E1FRBTMjwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe866b3, base path is set to: null +09:12:47.634 [XNIO-1 task-2] SLlP1bzKSPK8E1FRBTMjwA DEBUG com.networknt.schema.TypeValidator debug - validate( "efe866b3", "efe866b3", serviceId) +09:12:47.639 [XNIO-1 task-2] JBHsYDFyTpeo4uKPu-_6pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/887783d4, base path is set to: null +09:12:47.639 [XNIO-1 task-2] JBHsYDFyTpeo4uKPu-_6pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.639 [XNIO-1 task-2] JBHsYDFyTpeo4uKPu-_6pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.639 [XNIO-1 task-2] JBHsYDFyTpeo4uKPu-_6pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/887783d4, base path is set to: null +09:12:47.639 [XNIO-1 task-2] JBHsYDFyTpeo4uKPu-_6pA DEBUG com.networknt.schema.TypeValidator debug - validate( "887783d4", "887783d4", serviceId) +09:12:47.644 [XNIO-1 task-2] TLsxMuazS_S1Y-np99F56Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.645 [XNIO-1 task-2] TLsxMuazS_S1Y-np99F56Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.645 [XNIO-1 task-2] TLsxMuazS_S1Y-np99F56Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.645 [XNIO-1 task-2] TLsxMuazS_S1Y-np99F56Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.648 [XNIO-1 task-2] Yr7Q2SThRO2JIX107nX43Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.649 [XNIO-1 task-2] Yr7Q2SThRO2JIX107nX43Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.649 [XNIO-1 task-2] Yr7Q2SThRO2JIX107nX43Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.654 [XNIO-1 task-2] vWHPy53bT6ahX718-aVIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.654 [XNIO-1 task-2] vWHPy53bT6ahX718-aVIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.655 [XNIO-1 task-2] vWHPy53bT6ahX718-aVIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.655 [XNIO-1 task-2] vWHPy53bT6ahX718-aVIhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.661 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.661 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.661 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.662 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.662 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.662 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG com.networknt.schema.TypeValidator debug - validate( "af8d0aad-bca3-4db0-8ed7-f1161a6d9720", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:47.662 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG com.networknt.schema.TypeValidator debug - validate( "ee2b969b", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:47.662 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.662 [XNIO-1 task-2] Q9fi5LnUQ4uJe5YYLSWP2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.667 [XNIO-1 task-2] bOutcagDR2yDID39-Bh7pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.668 [XNIO-1 task-2] bOutcagDR2yDID39-Bh7pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.668 [XNIO-1 task-2] bOutcagDR2yDID39-Bh7pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.668 [XNIO-1 task-2] bOutcagDR2yDID39-Bh7pQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.672 [XNIO-1 task-2] wNhAuPOyQI61MQfQgPGxYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05ee527a +09:12:47.672 [XNIO-1 task-2] wNhAuPOyQI61MQfQgPGxYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.672 [XNIO-1 task-2] wNhAuPOyQI61MQfQgPGxYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.672 [XNIO-1 task-2] wNhAuPOyQI61MQfQgPGxYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05ee527a +09:12:47.677 [XNIO-1 task-2] JXxiu8UwQmGqBJOZmTDP2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.677 [XNIO-1 task-2] JXxiu8UwQmGqBJOZmTDP2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.677 [XNIO-1 task-2] JXxiu8UwQmGqBJOZmTDP2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.678 [XNIO-1 task-2] JXxiu8UwQmGqBJOZmTDP2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.683 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.683 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.683 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.683 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.683 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.683 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.683 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.684 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG com.networknt.schema.TypeValidator debug - validate( "cc12ee2f-0db3-4816-83d5-c14a1dad", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.684 [XNIO-1 task-2] vWPmJ7tUThCAL8M-lTRRcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.690 [XNIO-1 task-2] 77x-GODaSfGbuOLM2QQpgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.690 [XNIO-1 task-2] 77x-GODaSfGbuOLM2QQpgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.690 [XNIO-1 task-2] 77x-GODaSfGbuOLM2QQpgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.690 [XNIO-1 task-2] 77x-GODaSfGbuOLM2QQpgg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.694 [XNIO-1 task-2] NaGWFy79RoOZxUyOejeQ2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee2b969b, base path is set to: null +09:12:47.695 [XNIO-1 task-2] NaGWFy79RoOZxUyOejeQ2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.695 [XNIO-1 task-2] NaGWFy79RoOZxUyOejeQ2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.695 [XNIO-1 task-2] NaGWFy79RoOZxUyOejeQ2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee2b969b, base path is set to: null +09:12:47.695 [XNIO-1 task-2] NaGWFy79RoOZxUyOejeQ2A DEBUG com.networknt.schema.TypeValidator debug - validate( "ee2b969b", "ee2b969b", serviceId) +09:12:47.697 [XNIO-1 task-2] ed7xmlBgQSKXxvJWgp9HaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.697 [XNIO-1 task-2] ed7xmlBgQSKXxvJWgp9HaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.697 [XNIO-1 task-2] ed7xmlBgQSKXxvJWgp9HaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.702 [XNIO-1 task-2] SODGVB-VQieye5jqwkj_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.702 [XNIO-1 task-2] SODGVB-VQieye5jqwkj_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.702 [XNIO-1 task-2] SODGVB-VQieye5jqwkj_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.702 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7eeecc54 +09:12:47.707 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.707 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.707 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.707 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.707 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.707 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.708 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.708 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "8d661204-799a-464c-a640-5bd078be", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.708 [XNIO-1 task-2] 9rfALnVZTPyraXUm6ye4Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.711 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6123e017-34dc-4c6c-8b08-17a07b7c4911 +09:12:47.712 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6123e017-34dc-4c6c-8b08-17a07b7c4911 +09:12:47.713 [XNIO-1 task-2] wQzZxlCWRDyZIXojn6hipA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0385e47d +09:12:47.713 [XNIO-1 task-2] wQzZxlCWRDyZIXojn6hipA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.713 [XNIO-1 task-2] wQzZxlCWRDyZIXojn6hipA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.713 [XNIO-1 task-2] wQzZxlCWRDyZIXojn6hipA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0385e47d +09:12:47.721 [XNIO-1 task-2] rflp5PISTy2hjeJ-wmAHZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.721 [XNIO-1 task-2] rflp5PISTy2hjeJ-wmAHZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.722 [XNIO-1 task-2] rflp5PISTy2hjeJ-wmAHZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.722 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c742078 +09:12:47.722 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c742078 +09:12:47.727 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.727 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.727 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.727 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.727 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.727 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "af8d0aad-bca3-4db0-8ed7-f1161a6d9720", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:47.728 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee2b969b", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:47.728 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.728 [XNIO-1 task-2] wtMG-K4nR1K-1DtdliRZpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.733 [XNIO-1 task-2] YI_JtmGIQvuZICP1vIntfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.733 [XNIO-1 task-2] YI_JtmGIQvuZICP1vIntfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.733 [XNIO-1 task-2] YI_JtmGIQvuZICP1vIntfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.733 [XNIO-1 task-2] YI_JtmGIQvuZICP1vIntfg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.738 [XNIO-1 task-2] Rug1sFRlRMiOuE6gembHmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.738 [XNIO-1 task-2] Rug1sFRlRMiOuE6gembHmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.738 [XNIO-1 task-2] Rug1sFRlRMiOuE6gembHmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.745 [XNIO-1 task-2] xIC-3sWUSYmPigG289mklg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.745 [XNIO-1 task-2] xIC-3sWUSYmPigG289mklg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.745 [XNIO-1 task-2] xIC-3sWUSYmPigG289mklg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.746 [XNIO-1 task-2] xIC-3sWUSYmPigG289mklg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.751 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.751 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.752 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.752 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.752 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.752 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c9cc13a5-2c5b-4486-8d04-c85b8d611bd0", {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:47.752 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7eeecc54", {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:47.752 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.753 [XNIO-1 task-2] KkQ_FmH6TlaSosaNFbqPpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7eeecc54","serviceName":"a9cc98c9-512f-4796-8d17-8aef2820","serviceDesc":"c9cc13a5-2c5b-4486-8d04-c85b8d611bd0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.753 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7eeecc54 +09:12:47.757 [XNIO-1 task-2] ZuXGUuUrQEmdp3haze5e6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d43348d +09:12:47.757 [XNIO-1 task-2] ZuXGUuUrQEmdp3haze5e6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.758 [XNIO-1 task-2] ZuXGUuUrQEmdp3haze5e6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.758 [XNIO-1 task-2] ZuXGUuUrQEmdp3haze5e6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d43348d +09:12:47.759 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.759 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.760 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.760 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.760 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.760 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.760 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.760 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG com.networknt.schema.TypeValidator debug - validate( "8d661204-799a-464c-a640-5bd078be", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.760 [XNIO-1 task-2] E-jQhxLDRKm_ZIjtd0s62g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.766 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.767 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.767 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.768 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.768 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.768 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.768 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.768 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG com.networknt.schema.TypeValidator debug - validate( "f0821fc3-0555-4604-86b6-be215eff", {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.768 [XNIO-1 task-2] 8KYIKbx9Q5Gnjio98t1P8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b97aae6c","serviceName":"f0821fc3-0555-4604-86b6-be215eff","serviceDesc":"b64d48b8-f613-44f3-94dc-113c93e2b736","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.774 [XNIO-1 task-2] qlSpkldCQlisikaCVaMrHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7eeecc54, base path is set to: null +09:12:47.774 [XNIO-1 task-2] qlSpkldCQlisikaCVaMrHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.774 [XNIO-1 task-2] qlSpkldCQlisikaCVaMrHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.775 [XNIO-1 task-2] qlSpkldCQlisikaCVaMrHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7eeecc54, base path is set to: null +09:12:47.775 [XNIO-1 task-2] qlSpkldCQlisikaCVaMrHw DEBUG com.networknt.schema.TypeValidator debug - validate( "7eeecc54", "7eeecc54", serviceId) +09:12:47.778 [XNIO-1 task-2] FiE0_EQaRpCCCFQzGbfMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.778 [XNIO-1 task-2] FiE0_EQaRpCCCFQzGbfMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.778 [XNIO-1 task-2] FiE0_EQaRpCCCFQzGbfMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.784 [XNIO-1 task-2] J7ckeoPRRf2ZDwxC3K_vLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.784 [XNIO-1 task-2] J7ckeoPRRf2ZDwxC3K_vLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.784 [XNIO-1 task-2] J7ckeoPRRf2ZDwxC3K_vLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.784 [XNIO-1 task-2] J7ckeoPRRf2ZDwxC3K_vLg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.790 [XNIO-1 task-2] 3Hkpdu0oSCWrkrpKUlAy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2c742078 +09:12:47.790 [XNIO-1 task-2] 3Hkpdu0oSCWrkrpKUlAy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.790 [XNIO-1 task-2] 3Hkpdu0oSCWrkrpKUlAy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.791 [XNIO-1 task-2] 3Hkpdu0oSCWrkrpKUlAy8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2c742078 +09:12:47.793 [XNIO-1 task-2] 1jMsxnY1T02i_a7y6zS_Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.793 [XNIO-1 task-2] 1jMsxnY1T02i_a7y6zS_Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.793 [XNIO-1 task-2] 1jMsxnY1T02i_a7y6zS_Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.793 [XNIO-1 task-2] 1jMsxnY1T02i_a7y6zS_Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.799 [XNIO-1 task-2] _Xxrh2uzTwKfloDkLfZnhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.800 [XNIO-1 task-2] _Xxrh2uzTwKfloDkLfZnhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.800 [XNIO-1 task-2] _Xxrh2uzTwKfloDkLfZnhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.808 [XNIO-1 task-2] FqvDGAY6SZCdpFAmAzSfjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2c742078, base path is set to: null +09:12:47.808 [XNIO-1 task-2] FqvDGAY6SZCdpFAmAzSfjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.808 [XNIO-1 task-2] FqvDGAY6SZCdpFAmAzSfjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.808 [XNIO-1 task-2] FqvDGAY6SZCdpFAmAzSfjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2c742078, base path is set to: null +09:12:47.809 [XNIO-1 task-2] FqvDGAY6SZCdpFAmAzSfjA DEBUG com.networknt.schema.TypeValidator debug - validate( "2c742078", "2c742078", serviceId) +09:12:47.810 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2c742078 +09:12:47.817 [XNIO-1 task-2] N7GcZZ-pQoWBBD4y6u0e_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.817 [XNIO-1 task-2] N7GcZZ-pQoWBBD4y6u0e_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.817 [XNIO-1 task-2] N7GcZZ-pQoWBBD4y6u0e_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.817 [XNIO-1 task-2] N7GcZZ-pQoWBBD4y6u0e_g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.822 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.822 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.822 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.823 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.823 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.823 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG com.networknt.schema.TypeValidator debug - validate( "3e75c00b-ba7e-42bc-98ab-da9294bc1801", {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:47.823 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG com.networknt.schema.TypeValidator debug - validate( "a7b3572b", {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:47.823 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:47.824 [XNIO-1 task-2] RaZMSwBNSW6LOovSns3ksg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a7b3572b","serviceName":"33c14488-7439-4552-ae12-e826ed50","serviceDesc":"3e75c00b-ba7e-42bc-98ab-da9294bc1801","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.828 [XNIO-1 task-2] IHfFg82STXKmDsTXWLuUIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.829 [XNIO-1 task-2] IHfFg82STXKmDsTXWLuUIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.829 [XNIO-1 task-2] IHfFg82STXKmDsTXWLuUIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.834 [XNIO-1 task-2] USrwvedNShuUV_hOq3Qy7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b97aae6c +09:12:47.834 [XNIO-1 task-2] USrwvedNShuUV_hOq3Qy7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.834 [XNIO-1 task-2] USrwvedNShuUV_hOq3Qy7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.834 [XNIO-1 task-2] USrwvedNShuUV_hOq3Qy7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b97aae6c +09:12:47.840 [XNIO-1 task-2] 0m38dEKbSX-rvto3szgtbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.840 [XNIO-1 task-2] 0m38dEKbSX-rvto3szgtbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.840 [XNIO-1 task-2] 0m38dEKbSX-rvto3szgtbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "cc12ee2f-0db3-4816-83d5-c14a1dad", {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.848 [XNIO-1 task-2] soIZ__mBROKOXow6FCl6Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ee2b969b","serviceName":"cc12ee2f-0db3-4816-83d5-c14a1dad","serviceDesc":"af8d0aad-bca3-4db0-8ed7-f1161a6d9720","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.853 [XNIO-1 task-2] aw9F9SVySMeIa--5I7li4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7eeecc54, base path is set to: null +09:12:47.854 [XNIO-1 task-2] aw9F9SVySMeIa--5I7li4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.854 [XNIO-1 task-2] aw9F9SVySMeIa--5I7li4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.854 [XNIO-1 task-2] aw9F9SVySMeIa--5I7li4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7eeecc54, base path is set to: null +09:12:47.854 [XNIO-1 task-2] aw9F9SVySMeIa--5I7li4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7eeecc54", "7eeecc54", serviceId) +09:12:47.856 [XNIO-1 task-2] l3bPR7_vTzmXfnmigroD4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.857 [XNIO-1 task-2] l3bPR7_vTzmXfnmigroD4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.857 [XNIO-1 task-2] l3bPR7_vTzmXfnmigroD4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.868 [XNIO-1 task-2] h-wNtpw6Qny5JX_vMF1CNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.869 [XNIO-1 task-2] h-wNtpw6Qny5JX_vMF1CNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.870 [XNIO-1 task-2] h-wNtpw6Qny5JX_vMF1CNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.875 [XNIO-1 task-2] Mn7T0MZ0Sjqgh6CyMNRGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f0af574 +09:12:47.875 [XNIO-1 task-2] Mn7T0MZ0Sjqgh6CyMNRGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.875 [XNIO-1 task-2] Mn7T0MZ0Sjqgh6CyMNRGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.875 [XNIO-1 task-2] Mn7T0MZ0Sjqgh6CyMNRGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f0af574 +09:12:47.877 [XNIO-1 task-2] -sBcPok0TiWVMmoV8P2fbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee2b969b, base path is set to: null +09:12:47.877 [XNIO-1 task-2] -sBcPok0TiWVMmoV8P2fbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.877 [XNIO-1 task-2] -sBcPok0TiWVMmoV8P2fbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.877 [XNIO-1 task-2] -sBcPok0TiWVMmoV8P2fbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee2b969b, base path is set to: null +09:12:47.877 [XNIO-1 task-2] -sBcPok0TiWVMmoV8P2fbA DEBUG com.networknt.schema.TypeValidator debug - validate( "ee2b969b", "ee2b969b", serviceId) +09:12:47.885 [XNIO-1 task-2] MlJHZiphTZi_7eSJJLE_jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f0af574 +09:12:47.885 [XNIO-1 task-2] MlJHZiphTZi_7eSJJLE_jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.885 [XNIO-1 task-2] MlJHZiphTZi_7eSJJLE_jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.885 [XNIO-1 task-2] MlJHZiphTZi_7eSJJLE_jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f0af574 +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG com.networknt.schema.TypeValidator debug - validate( "6cdfe047-6050-438c-9c91-f036652c", {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.888 [XNIO-1 task-2] 4H4jmdrpTvGW4l5lX1QoRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f0af574","serviceName":"6cdfe047-6050-438c-9c91-f036652c","serviceDesc":"131a7bc9-c28b-4b0a-a096-808abb61b923","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.894 [XNIO-1 task-2] 60XhLvvFS6K9Jc5r1zjerw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7f0af574, base path is set to: null +09:12:47.894 [XNIO-1 task-2] 60XhLvvFS6K9Jc5r1zjerw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.895 [XNIO-1 task-2] 60XhLvvFS6K9Jc5r1zjerw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.895 [XNIO-1 task-2] 60XhLvvFS6K9Jc5r1zjerw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7f0af574, base path is set to: null +09:12:47.895 [XNIO-1 task-2] 60XhLvvFS6K9Jc5r1zjerw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f0af574", "7f0af574", serviceId) +09:12:47.897 [XNIO-1 task-2] sJp7Ce4RS_yRk7qKAVaQ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.897 [XNIO-1 task-2] sJp7Ce4RS_yRk7qKAVaQ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.897 [XNIO-1 task-2] sJp7Ce4RS_yRk7qKAVaQ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.904 [XNIO-1 task-2] 4FeogV-vRT-sB3QAC7iyzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f0af574 +09:12:47.904 [XNIO-1 task-2] 4FeogV-vRT-sB3QAC7iyzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.904 [XNIO-1 task-2] 4FeogV-vRT-sB3QAC7iyzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.904 [XNIO-1 task-2] 4FeogV-vRT-sB3QAC7iyzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f0af574 +09:12:47.909 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.909 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.910 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.910 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.910 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.910 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.910 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.910 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6318251-511a-4dfb-90f4-8fc25df2", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.910 [XNIO-1 task-2] LL5mkvYZStKCHKOB_rB4jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.916 [XNIO-1 task-2] b6hihHHWSJe-d4Dd8DosgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.916 [XNIO-1 task-2] b6hihHHWSJe-d4Dd8DosgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.916 [XNIO-1 task-2] b6hihHHWSJe-d4Dd8DosgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.922 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.922 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.922 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.923 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.923 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.923 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.923 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.923 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG com.networknt.schema.TypeValidator debug - validate( "a6318251-511a-4dfb-90f4-8fc25df2", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.923 [XNIO-1 task-2] Wzem5LD_Rnq_lsHU6LQWFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.928 [XNIO-1 task-2] eOh9YRwkT86jxMuS5JD5VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/13520ce6, base path is set to: null +09:12:47.928 [XNIO-1 task-2] eOh9YRwkT86jxMuS5JD5VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.928 [XNIO-1 task-2] eOh9YRwkT86jxMuS5JD5VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.928 [XNIO-1 task-2] eOh9YRwkT86jxMuS5JD5VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/13520ce6, base path is set to: null +09:12:47.928 [XNIO-1 task-2] eOh9YRwkT86jxMuS5JD5VA DEBUG com.networknt.schema.TypeValidator debug - validate( "13520ce6", "13520ce6", serviceId) +09:12:47.933 [XNIO-1 task-2] O4Va15NTTDWPmFkK6Glu4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.933 [XNIO-1 task-2] O4Va15NTTDWPmFkK6Glu4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.933 [XNIO-1 task-2] O4Va15NTTDWPmFkK6Glu4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.933 [XNIO-1 task-2] O4Va15NTTDWPmFkK6Glu4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.937 [XNIO-1 task-2] 53cgD5fiS8SpYNYjYc2qrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.937 [XNIO-1 task-2] 53cgD5fiS8SpYNYjYc2qrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.937 [XNIO-1 task-2] 53cgD5fiS8SpYNYjYc2qrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.937 [XNIO-1 task-2] 53cgD5fiS8SpYNYjYc2qrA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:47.942 [XNIO-1 task-2] uQDEleBFQPyZxqCVP5OEsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a7b3572b +09:12:47.942 [XNIO-1 task-2] uQDEleBFQPyZxqCVP5OEsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.942 [XNIO-1 task-2] uQDEleBFQPyZxqCVP5OEsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.942 [XNIO-1 task-2] uQDEleBFQPyZxqCVP5OEsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a7b3572b +09:12:47.944 [XNIO-1 task-2] 6X5auyIxS_m_pfM-wSwZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a7b3572b, base path is set to: null +09:12:47.944 [XNIO-1 task-2] 6X5auyIxS_m_pfM-wSwZVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.944 [XNIO-1 task-2] 6X5auyIxS_m_pfM-wSwZVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:47.944 [XNIO-1 task-2] 6X5auyIxS_m_pfM-wSwZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a7b3572b, base path is set to: null +09:12:47.944 [XNIO-1 task-2] 6X5auyIxS_m_pfM-wSwZVw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7b3572b", "a7b3572b", serviceId) +09:12:47.949 [XNIO-1 task-2] 0VkwktZpQyuQH-KuEYHJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d43348d +09:12:47.949 [XNIO-1 task-2] 0VkwktZpQyuQH-KuEYHJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:47.949 [XNIO-1 task-2] 0VkwktZpQyuQH-KuEYHJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:47.949 [XNIO-1 task-2] 0VkwktZpQyuQH-KuEYHJKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d43348d +09:12:47.952 [XNIO-1 task-2] BG4fmQ0JSfm3PhZcy2Cv8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.952 [XNIO-1 task-2] BG4fmQ0JSfm3PhZcy2Cv8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.952 [XNIO-1 task-2] BG4fmQ0JSfm3PhZcy2Cv8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.957 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.957 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.957 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.958 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.958 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.958 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.958 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.958 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8d661204-799a-464c-a640-5bd078be", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.958 [XNIO-1 task-2] P-PLvnmhSqqJJxHjAMWiuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.988 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG com.networknt.schema.TypeValidator debug - validate( "788ce4f7-0170-4278-9377-1ee8889e", {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:47.989 [XNIO-1 task-2] TWAYawp-R_WKHt7Wo_n-2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9bb5552c","serviceName":"788ce4f7-0170-4278-9377-1ee8889e","serviceDesc":"5d605c7f-b648-4103-989a-b9120bb8afe6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.995 [XNIO-1 task-2] Uy3bGYeUSDqDOvIL9xSquA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.995 [XNIO-1 task-2] Uy3bGYeUSDqDOvIL9xSquA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.995 [XNIO-1 task-2] Uy3bGYeUSDqDOvIL9xSquA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.995 [XNIO-1 task-2] Uy3bGYeUSDqDOvIL9xSquA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:47.999 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.999 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:47.999 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:47.999 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.999 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:47.999 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.000 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.000 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG com.networknt.schema.TypeValidator debug - validate( "a3e10e88-c6e7-46be-9f6b-768ae6a0", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.000 [XNIO-1 task-2] PzgbWOmSRMeYn-7SjJExbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.007 [XNIO-1 task-2] WwlcI_1NQYOaP2MH2EpKtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0e94f01c, base path is set to: null +09:12:48.007 [XNIO-1 task-2] WwlcI_1NQYOaP2MH2EpKtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.007 [XNIO-1 task-2] WwlcI_1NQYOaP2MH2EpKtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.007 [XNIO-1 task-2] WwlcI_1NQYOaP2MH2EpKtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0e94f01c, base path is set to: null +09:12:48.007 [XNIO-1 task-2] WwlcI_1NQYOaP2MH2EpKtw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e94f01c", "0e94f01c", serviceId) +09:12:48.009 [XNIO-1 task-2] nII6-FQlQxyKBGsqK7h7PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0e94f01c +09:12:48.009 [XNIO-1 task-2] nII6-FQlQxyKBGsqK7h7PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.009 [XNIO-1 task-2] nII6-FQlQxyKBGsqK7h7PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.009 [XNIO-1 task-2] nII6-FQlQxyKBGsqK7h7PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0e94f01c +09:12:48.011 [XNIO-1 task-2] w7CTziarQzq_MV08nDWzWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.011 [XNIO-1 task-2] w7CTziarQzq_MV08nDWzWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.011 [XNIO-1 task-2] w7CTziarQzq_MV08nDWzWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.019 [XNIO-1 task-2] iAxEqpkQR_aPLpatPcbcmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.019 [XNIO-1 task-2] iAxEqpkQR_aPLpatPcbcmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.019 [XNIO-1 task-2] iAxEqpkQR_aPLpatPcbcmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.026 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6123e017-34dc-4c6c-8b08-17a07b7c4911 +09:12:48.026 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.026 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.027 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.027 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.027 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.027 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG com.networknt.schema.TypeValidator debug - validate( "3a51e6c2-b9f2-4c57-b8a3-c52c087d2217", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.027 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e94f01c", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.027 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.027 [XNIO-1 task-2] s6CKO0yXSBiCFkOOjO3Gvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.033 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.033 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.033 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.033 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.034 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.034 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG com.networknt.schema.TypeValidator debug - validate( "23aadf17-46cd-4593-9776-6b23f209c7c4", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.034 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG com.networknt.schema.TypeValidator debug - validate( "44a7397e", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.034 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.034 [XNIO-1 task-2] gc3jgxjpTeSOHdSDSaPptw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.039 [XNIO-1 task-2] wvWViO_2Tz-E-WXw5fOp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7eeecc54 +09:12:48.039 [XNIO-1 task-2] wvWViO_2Tz-E-WXw5fOp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.039 [XNIO-1 task-2] wvWViO_2Tz-E-WXw5fOp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.039 [XNIO-1 task-2] wvWViO_2Tz-E-WXw5fOp2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7eeecc54 +09:12:48.039 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7eeecc54 +09:12:48.044 [XNIO-1 task-2] EwGXj2WcTt-FTDw3OXMzaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9bb5552c, base path is set to: null +09:12:48.044 [XNIO-1 task-2] EwGXj2WcTt-FTDw3OXMzaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.044 [XNIO-1 task-2] EwGXj2WcTt-FTDw3OXMzaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.044 [XNIO-1 task-2] EwGXj2WcTt-FTDw3OXMzaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9bb5552c, base path is set to: null +09:12:48.044 [XNIO-1 task-2] EwGXj2WcTt-FTDw3OXMzaA DEBUG com.networknt.schema.TypeValidator debug - validate( "9bb5552c", "9bb5552c", serviceId) +09:12:48.046 [XNIO-1 task-2] ZYlp1cI8QeiI6-E_wEmYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6c669801 +09:12:48.046 [XNIO-1 task-2] ZYlp1cI8QeiI6-E_wEmYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.046 [XNIO-1 task-2] ZYlp1cI8QeiI6-E_wEmYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.046 [XNIO-1 task-2] ZYlp1cI8QeiI6-E_wEmYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6c669801 +09:12:48.050 [XNIO-1 task-2] cyEz27TxSkikss9dZFWY8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.050 [XNIO-1 task-2] cyEz27TxSkikss9dZFWY8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.050 [XNIO-1 task-2] cyEz27TxSkikss9dZFWY8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.050 [XNIO-1 task-2] cyEz27TxSkikss9dZFWY8w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.055 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.055 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.055 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.055 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.056 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.056 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.056 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.056 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3e10e88-c6e7-46be-9f6b-768ae6a0", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.056 [XNIO-1 task-2] fTps0hnYTHaDsOpy9lQnNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.063 [XNIO-1 task-2] UDufF9suTjqgahPB7GkEVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6c669801, base path is set to: null +09:12:48.063 [XNIO-1 task-2] UDufF9suTjqgahPB7GkEVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.063 [XNIO-1 task-2] UDufF9suTjqgahPB7GkEVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.063 [XNIO-1 task-2] UDufF9suTjqgahPB7GkEVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6c669801, base path is set to: null +09:12:48.063 [XNIO-1 task-2] UDufF9suTjqgahPB7GkEVg DEBUG com.networknt.schema.TypeValidator debug - validate( "6c669801", "6c669801", serviceId) +09:12:48.071 [XNIO-1 task-2] xo-tKfZfQv2nADcHKk6qAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:48.071 [XNIO-1 task-2] xo-tKfZfQv2nADcHKk6qAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.071 [XNIO-1 task-2] xo-tKfZfQv2nADcHKk6qAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.071 [XNIO-1 task-2] xo-tKfZfQv2nADcHKk6qAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:48.073 [XNIO-1 task-2] cd3NUHenSzq-auH6eHSP-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b9e229, base path is set to: null +09:12:48.073 [XNIO-1 task-2] cd3NUHenSzq-auH6eHSP-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.073 [XNIO-1 task-2] cd3NUHenSzq-auH6eHSP-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.073 [XNIO-1 task-2] cd3NUHenSzq-auH6eHSP-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b9e229, base path is set to: null +09:12:48.073 [XNIO-1 task-2] cd3NUHenSzq-auH6eHSP-w DEBUG com.networknt.schema.TypeValidator debug - validate( "07b9e229", "07b9e229", serviceId) +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "68955753-963a-4e6c-a20f-56b60370116f", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9d43348d", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.075 [XNIO-1 task-2] RuBKQcHCRNGC2azpBdrcbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d43348d","serviceName":"8d661204-799a-464c-a640-5bd078be","serviceDesc":"68955753-963a-4e6c-a20f-56b60370116f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.081 [XNIO-1 task-2] pVj9U1H0TDmuoDIFo_2TGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.081 [XNIO-1 task-2] pVj9U1H0TDmuoDIFo_2TGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.081 [XNIO-1 task-2] pVj9U1H0TDmuoDIFo_2TGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.089 [XNIO-1 task-2] sfz1bUzVRS-vwKkowi7IjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.089 [XNIO-1 task-2] sfz1bUzVRS-vwKkowi7IjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.089 [XNIO-1 task-2] sfz1bUzVRS-vwKkowi7IjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.089 [XNIO-1 task-2] sfz1bUzVRS-vwKkowi7IjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.094 [XNIO-1 task-2] qazxSS_GQF-nJMVYG0lUSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:48.094 [XNIO-1 task-2] qazxSS_GQF-nJMVYG0lUSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.094 [XNIO-1 task-2] qazxSS_GQF-nJMVYG0lUSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.094 [XNIO-1 task-2] qazxSS_GQF-nJMVYG0lUSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:48.098 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.098 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.098 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.098 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.098 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.099 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.099 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.099 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG com.networknt.schema.TypeValidator debug - validate( "171fd5c4-9645-447a-b3b5-79648536", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.099 [XNIO-1 task-2] Dn-1hG9iSFuZsfbubGCEcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.106 [XNIO-1 task-2] tHLgDbsORTiHfmfQ5iSluQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d17dab2b, base path is set to: null +09:12:48.106 [XNIO-1 task-2] tHLgDbsORTiHfmfQ5iSluQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.106 [XNIO-1 task-2] tHLgDbsORTiHfmfQ5iSluQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.106 [XNIO-1 task-2] tHLgDbsORTiHfmfQ5iSluQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d17dab2b, base path is set to: null +09:12:48.106 [XNIO-1 task-2] tHLgDbsORTiHfmfQ5iSluQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d17dab2b", "d17dab2b", serviceId) +09:12:48.112 [XNIO-1 task-2] p7H9XqNIRM-hxmFGMVXI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.112 [XNIO-1 task-2] p7H9XqNIRM-hxmFGMVXI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.112 [XNIO-1 task-2] p7H9XqNIRM-hxmFGMVXI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.112 [XNIO-1 task-2] p7H9XqNIRM-hxmFGMVXI2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.117 [XNIO-1 task-2] bt66-izHSz64ehZCbUpFaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.117 [XNIO-1 task-2] bt66-izHSz64ehZCbUpFaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.117 [XNIO-1 task-2] bt66-izHSz64ehZCbUpFaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.117 [XNIO-1 task-2] bt66-izHSz64ehZCbUpFaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.121 [XNIO-1 task-2] K2IcFN2GRu2r_T4PXSG5Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.121 [XNIO-1 task-2] K2IcFN2GRu2r_T4PXSG5Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.121 [XNIO-1 task-2] K2IcFN2GRu2r_T4PXSG5Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.121 [XNIO-1 task-2] K2IcFN2GRu2r_T4PXSG5Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.123 [XNIO-1 task-2] UbgiwwQgRZCB3JqG2yks6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb9b96e6, base path is set to: null +09:12:48.123 [XNIO-1 task-2] UbgiwwQgRZCB3JqG2yks6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.123 [XNIO-1 task-2] UbgiwwQgRZCB3JqG2yks6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.123 [XNIO-1 task-2] UbgiwwQgRZCB3JqG2yks6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb9b96e6, base path is set to: null +09:12:48.123 [XNIO-1 task-2] UbgiwwQgRZCB3JqG2yks6A DEBUG com.networknt.schema.TypeValidator debug - validate( "fb9b96e6", "fb9b96e6", serviceId) +09:12:48.124 [XNIO-1 task-2] nVgTTcuYR1O96gNfx01uFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.124 [XNIO-1 task-2] nVgTTcuYR1O96gNfx01uFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.124 [XNIO-1 task-2] nVgTTcuYR1O96gNfx01uFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.124 [XNIO-1 task-2] nVgTTcuYR1O96gNfx01uFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.126 [XNIO-1 task-2] WRbqAmueRPSr3hV31L1nAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0e94f01c, base path is set to: null +09:12:48.126 [XNIO-1 task-2] WRbqAmueRPSr3hV31L1nAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.126 [XNIO-1 task-2] WRbqAmueRPSr3hV31L1nAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.126 [XNIO-1 task-2] WRbqAmueRPSr3hV31L1nAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0e94f01c, base path is set to: null +09:12:48.126 [XNIO-1 task-2] WRbqAmueRPSr3hV31L1nAw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e94f01c", "0e94f01c", serviceId) +09:12:48.128 [XNIO-1 task-2] SY-O8Qi7R4iCbHO4qxpKgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.128 [XNIO-1 task-2] SY-O8Qi7R4iCbHO4qxpKgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.128 [XNIO-1 task-2] SY-O8Qi7R4iCbHO4qxpKgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.128 [XNIO-1 task-2] SY-O8Qi7R4iCbHO4qxpKgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.130 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.130 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.130 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.130 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.130 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.130 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.130 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.131 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3e10e88-c6e7-46be-9f6b-768ae6a0", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.131 [XNIO-1 task-2] tYuVbTzdT12R9qdRsivEQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.136 [XNIO-1 task-2] Lyj1alC3Q62xF52XGTy7oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb9b96e6, base path is set to: null +09:12:48.136 [XNIO-1 task-2] Lyj1alC3Q62xF52XGTy7oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.136 [XNIO-1 task-2] Lyj1alC3Q62xF52XGTy7oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.136 [XNIO-1 task-2] Lyj1alC3Q62xF52XGTy7oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb9b96e6, base path is set to: null +09:12:48.136 [XNIO-1 task-2] Lyj1alC3Q62xF52XGTy7oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb9b96e6", "fb9b96e6", serviceId) +09:12:48.138 [XNIO-1 task-2] 2hBFw8TST3-MBt3ad5DYWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.139 [XNIO-1 task-2] 2hBFw8TST3-MBt3ad5DYWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.139 [XNIO-1 task-2] 2hBFw8TST3-MBt3ad5DYWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.139 [XNIO-1 task-2] 2hBFw8TST3-MBt3ad5DYWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb9b96e6 +09:12:48.141 [XNIO-1 task-2] vdGpGrgUTF-TQJu1hc42fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.141 [XNIO-1 task-2] vdGpGrgUTF-TQJu1hc42fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.141 [XNIO-1 task-2] vdGpGrgUTF-TQJu1hc42fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.141 [XNIO-1 task-2] vdGpGrgUTF-TQJu1hc42fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.145 [XNIO-1 task-2] -ozLiXUTQUyLfgMhxMjmdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.145 [XNIO-1 task-2] -ozLiXUTQUyLfgMhxMjmdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.146 [XNIO-1 task-2] -ozLiXUTQUyLfgMhxMjmdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.146 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c7b47ad +09:12:48.146 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c7b47ad +09:12:48.150 [XNIO-1 task-2] 5AFYHgDaT6W344pd203Z1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.151 [XNIO-1 task-2] 5AFYHgDaT6W344pd203Z1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.151 [XNIO-1 task-2] 5AFYHgDaT6W344pd203Z1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.151 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a7f6f2b8 +09:12:48.155 [XNIO-1 task-2] Cv_xgyMnTSm4NbznyDKTww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b9e229, base path is set to: null +09:12:48.156 [XNIO-1 task-2] Cv_xgyMnTSm4NbznyDKTww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.156 [XNIO-1 task-2] Cv_xgyMnTSm4NbznyDKTww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.156 [XNIO-1 task-2] Cv_xgyMnTSm4NbznyDKTww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b9e229, base path is set to: null +09:12:48.156 [XNIO-1 task-2] Cv_xgyMnTSm4NbznyDKTww DEBUG com.networknt.schema.TypeValidator debug - validate( "07b9e229", "07b9e229", serviceId) +09:12:48.158 [XNIO-1 task-2] cvUFyFnKQiCTD6DYdVPzqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.158 [XNIO-1 task-2] cvUFyFnKQiCTD6DYdVPzqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.158 [XNIO-1 task-2] cvUFyFnKQiCTD6DYdVPzqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.159 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7fc6cf12 +09:12:48.166 [XNIO-1 task-2] IbQj_qpbQ1C78RWFTKBnFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb9b96e6, base path is set to: null +09:12:48.166 [XNIO-1 task-2] IbQj_qpbQ1C78RWFTKBnFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.166 [XNIO-1 task-2] IbQj_qpbQ1C78RWFTKBnFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.166 [XNIO-1 task-2] IbQj_qpbQ1C78RWFTKBnFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb9b96e6, base path is set to: null +09:12:48.167 [XNIO-1 task-2] IbQj_qpbQ1C78RWFTKBnFg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb9b96e6", "fb9b96e6", serviceId) +09:12:48.173 [XNIO-1 task-2] Wh-cOwk6Ri6BQ6TIiKhW0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2c7b47ad +09:12:48.173 [XNIO-1 task-2] Wh-cOwk6Ri6BQ6TIiKhW0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.173 [XNIO-1 task-2] Wh-cOwk6Ri6BQ6TIiKhW0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.173 [XNIO-1 task-2] Wh-cOwk6Ri6BQ6TIiKhW0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2c7b47ad +09:12:48.174 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2c7b47ad +09:12:48.178 [XNIO-1 task-2] yiIua62zQeOM0G0LFvxBfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.179 [XNIO-1 task-2] yiIua62zQeOM0G0LFvxBfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.179 [XNIO-1 task-2] yiIua62zQeOM0G0LFvxBfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.179 [XNIO-1 task-2] yiIua62zQeOM0G0LFvxBfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.214 [XNIO-1 task-2] oUOle9WSRM27zuk6BGWMEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.214 [XNIO-1 task-2] oUOle9WSRM27zuk6BGWMEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.214 [XNIO-1 task-2] oUOle9WSRM27zuk6BGWMEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.215 [XNIO-1 task-2] oUOle9WSRM27zuk6BGWMEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.219 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.219 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.219 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.219 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.219 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.219 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.220 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.220 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG com.networknt.schema.TypeValidator debug - validate( "171fd5c4-9645-447a-b3b5-79648536", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.220 [XNIO-1 task-2] -9ItimcoTkOIB-Wo6lVM7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.228 [XNIO-1 task-2] NVh0fbERS9edQWg8q5DFSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5d6a480c, base path is set to: null +09:12:48.228 [XNIO-1 task-2] NVh0fbERS9edQWg8q5DFSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.228 [XNIO-1 task-2] NVh0fbERS9edQWg8q5DFSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.228 [XNIO-1 task-2] NVh0fbERS9edQWg8q5DFSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5d6a480c, base path is set to: null +09:12:48.228 [XNIO-1 task-2] NVh0fbERS9edQWg8q5DFSw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d6a480c", "5d6a480c", serviceId) +09:12:48.233 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.233 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.233 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.234 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.234 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.234 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "23aadf17-46cd-4593-9776-6b23f209c7c4", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.234 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "44a7397e", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.234 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.234 [XNIO-1 task-2] G24FqglNSDKNnlUC61YP3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44a7397e","serviceName":"a6318251-511a-4dfb-90f4-8fc25df2","serviceDesc":"23aadf17-46cd-4593-9776-6b23f209c7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.239 [XNIO-1 task-2] RGEnBQQpS4a0GpLMtrnvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.239 [XNIO-1 task-2] RGEnBQQpS4a0GpLMtrnvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.239 [XNIO-1 task-2] RGEnBQQpS4a0GpLMtrnvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.239 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:87f4fb3d +09:12:48.246 [XNIO-1 task-2] 0yYty1YBR0uNnDeHcbsqQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a88458c, base path is set to: null +09:12:48.246 [XNIO-1 task-2] 0yYty1YBR0uNnDeHcbsqQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.246 [XNIO-1 task-2] 0yYty1YBR0uNnDeHcbsqQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.246 [XNIO-1 task-2] 0yYty1YBR0uNnDeHcbsqQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a88458c, base path is set to: null +09:12:48.246 [XNIO-1 task-2] 0yYty1YBR0uNnDeHcbsqQg DEBUG com.networknt.schema.TypeValidator debug - validate( "8a88458c", "8a88458c", serviceId) +09:12:48.249 [XNIO-1 task-2] He9So_rVTkq1w-MdqkkSHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bb5552c +09:12:48.249 [XNIO-1 task-2] He9So_rVTkq1w-MdqkkSHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.249 [XNIO-1 task-2] He9So_rVTkq1w-MdqkkSHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.249 [XNIO-1 task-2] He9So_rVTkq1w-MdqkkSHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9bb5552c +09:12:48.254 [XNIO-1 task-2] t4iMNXInQZOJMqlvO_GfYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87f4fb3d, base path is set to: null +09:12:48.254 [XNIO-1 task-2] t4iMNXInQZOJMqlvO_GfYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.254 [XNIO-1 task-2] t4iMNXInQZOJMqlvO_GfYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.254 [XNIO-1 task-2] t4iMNXInQZOJMqlvO_GfYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87f4fb3d, base path is set to: null +09:12:48.254 [XNIO-1 task-2] t4iMNXInQZOJMqlvO_GfYw DEBUG com.networknt.schema.TypeValidator debug - validate( "87f4fb3d", "87f4fb3d", serviceId) +09:12:48.256 [XNIO-1 task-2] 2ZEYQyNxTTq1vSk5AI07PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.256 [XNIO-1 task-2] 2ZEYQyNxTTq1vSk5AI07PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.256 [XNIO-1 task-2] 2ZEYQyNxTTq1vSk5AI07PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.257 [XNIO-1 task-2] 2ZEYQyNxTTq1vSk5AI07PQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.260 [XNIO-1 task-2] zh1Fo_YHS72ft-eWEg1HMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.260 [XNIO-1 task-2] zh1Fo_YHS72ft-eWEg1HMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.260 [XNIO-1 task-2] zh1Fo_YHS72ft-eWEg1HMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.265 [XNIO-1 task-2] yRqIUTIcRwSvz_aC6NmxNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d43348d +09:12:48.265 [XNIO-1 task-2] yRqIUTIcRwSvz_aC6NmxNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.265 [XNIO-1 task-2] yRqIUTIcRwSvz_aC6NmxNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.265 [XNIO-1 task-2] yRqIUTIcRwSvz_aC6NmxNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d43348d +09:12:48.271 [XNIO-1 task-2] vepIlYfmTpSmg-6EUISGcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.271 [XNIO-1 task-2] vepIlYfmTpSmg-6EUISGcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.271 [XNIO-1 task-2] vepIlYfmTpSmg-6EUISGcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.271 [XNIO-1 task-2] vepIlYfmTpSmg-6EUISGcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.276 [XNIO-1 task-2] jRWVbAnVT6CG-d-LI2JmgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87f4fb3d, base path is set to: null +09:12:48.276 [XNIO-1 task-2] jRWVbAnVT6CG-d-LI2JmgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.276 [XNIO-1 task-2] jRWVbAnVT6CG-d-LI2JmgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.276 [XNIO-1 task-2] jRWVbAnVT6CG-d-LI2JmgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87f4fb3d, base path is set to: null +09:12:48.277 [XNIO-1 task-2] jRWVbAnVT6CG-d-LI2JmgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "87f4fb3d", "87f4fb3d", serviceId) +09:12:48.279 [XNIO-1 task-2] i-6AYC9-QzqSe9pMrvm8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/87f4fb3d +09:12:48.279 [XNIO-1 task-2] i-6AYC9-QzqSe9pMrvm8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.279 [XNIO-1 task-2] i-6AYC9-QzqSe9pMrvm8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.279 [XNIO-1 task-2] i-6AYC9-QzqSe9pMrvm8Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/87f4fb3d +09:12:48.282 [XNIO-1 task-2] u6wFKMlpRBGuo3eo3sg75g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87f4fb3d, base path is set to: null +09:12:48.282 [XNIO-1 task-2] u6wFKMlpRBGuo3eo3sg75g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.282 [XNIO-1 task-2] u6wFKMlpRBGuo3eo3sg75g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.282 [XNIO-1 task-2] u6wFKMlpRBGuo3eo3sg75g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87f4fb3d, base path is set to: null +09:12:48.282 [XNIO-1 task-2] u6wFKMlpRBGuo3eo3sg75g DEBUG com.networknt.schema.TypeValidator debug - validate( "87f4fb3d", "87f4fb3d", serviceId) +09:12:48.283 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:87f4fb3d +09:12:48.287 [XNIO-1 task-2] qNK5XfBgRRSqAJmW_aJrcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.287 [XNIO-1 task-2] qNK5XfBgRRSqAJmW_aJrcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.287 [XNIO-1 task-2] qNK5XfBgRRSqAJmW_aJrcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.293 [XNIO-1 task-2] X9dTbdluQVyIAH2mA2f4Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.293 [XNIO-1 task-2] X9dTbdluQVyIAH2mA2f4Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.293 [XNIO-1 task-2] X9dTbdluQVyIAH2mA2f4Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.299 [XNIO-1 task-2] pZQhBOYRQlyebrtyEZqB9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7fc6cf12 +09:12:48.299 [XNIO-1 task-2] pZQhBOYRQlyebrtyEZqB9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.299 [XNIO-1 task-2] pZQhBOYRQlyebrtyEZqB9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.299 [XNIO-1 task-2] pZQhBOYRQlyebrtyEZqB9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7fc6cf12 +09:12:48.301 [XNIO-1 task-2] Ol6_YW4kQdqUok6GwJiU1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7eb7c3a, base path is set to: null +09:12:48.301 [XNIO-1 task-2] Ol6_YW4kQdqUok6GwJiU1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.301 [XNIO-1 task-2] Ol6_YW4kQdqUok6GwJiU1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.301 [XNIO-1 task-2] Ol6_YW4kQdqUok6GwJiU1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7eb7c3a, base path is set to: null +09:12:48.301 [XNIO-1 task-2] Ol6_YW4kQdqUok6GwJiU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "b7eb7c3a", "b7eb7c3a", serviceId) +09:12:48.303 [XNIO-1 task-2] OqsF7nJzRliQFXRqAQDf9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.303 [XNIO-1 task-2] OqsF7nJzRliQFXRqAQDf9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.304 [XNIO-1 task-2] OqsF7nJzRliQFXRqAQDf9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.304 [XNIO-1 task-2] OqsF7nJzRliQFXRqAQDf9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6fd59f85-7176-4189-b2ee-feec140fa375", {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7fc6cf12", {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.308 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.309 [XNIO-1 task-2] h7o9gf4qSr2TpW9r0U5VTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.309 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7fc6cf12 +09:12:48.314 [XNIO-1 task-2] yLm3RAwNR2OoNxyi49YpsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b7eb7c3a +09:12:48.314 [XNIO-1 task-2] yLm3RAwNR2OoNxyi49YpsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.314 [XNIO-1 task-2] yLm3RAwNR2OoNxyi49YpsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.314 [XNIO-1 task-2] yLm3RAwNR2OoNxyi49YpsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b7eb7c3a +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG com.networknt.schema.TypeValidator debug - validate( "a3e10e88-c6e7-46be-9f6b-768ae6a0", {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.322 [XNIO-1 task-2] DE3hFqaWRGSCqi1ciIQJug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e94f01c","serviceName":"a3e10e88-c6e7-46be-9f6b-768ae6a0","serviceDesc":"3a51e6c2-b9f2-4c57-b8a3-c52c087d2217","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.347 [XNIO-1 task-2] SF11a40URxm-kolTv8u21Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a7f6f2b8, base path is set to: null +09:12:48.347 [XNIO-1 task-2] SF11a40URxm-kolTv8u21Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.347 [XNIO-1 task-2] SF11a40URxm-kolTv8u21Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.347 [XNIO-1 task-2] SF11a40URxm-kolTv8u21Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a7f6f2b8, base path is set to: null +09:12:48.347 [XNIO-1 task-2] SF11a40URxm-kolTv8u21Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a7f6f2b8", "a7f6f2b8", serviceId) +09:12:48.350 [XNIO-1 task-2] 9AtUzGfTS3Sd5QP2XUdo0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.350 [XNIO-1 task-2] 9AtUzGfTS3Sd5QP2XUdo0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.350 [XNIO-1 task-2] 9AtUzGfTS3Sd5QP2XUdo0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.351 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5196f987 +09:12:48.356 [XNIO-1 task-2] e_RG3o_iT4-NNPMy7j8wgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.356 [XNIO-1 task-2] e_RG3o_iT4-NNPMy7j8wgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.357 [XNIO-1 task-2] e_RG3o_iT4-NNPMy7j8wgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.357 [XNIO-1 task-2] e_RG3o_iT4-NNPMy7j8wgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG com.networknt.schema.TypeValidator debug - validate( "df6c8afd-a948-44da-8185-35c3f83a", {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.368 [XNIO-1 task-2] neTnax1SQBetGup_9RDRgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a7f6f2b8","serviceName":"df6c8afd-a948-44da-8185-35c3f83a","serviceDesc":"3b0a3d9b-b2d7-4c31-80f0-3320a5825709","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.369 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a7f6f2b8 +09:12:48.376 [XNIO-1 task-2] QY40L6tfSRespg85mIUtnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.376 [XNIO-1 task-2] QY40L6tfSRespg85mIUtnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.376 [XNIO-1 task-2] QY40L6tfSRespg85mIUtnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.376 [XNIO-1 task-2] QY40L6tfSRespg85mIUtnw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.382 [XNIO-1 task-2] IchuuZe8RKuI-bfd2yvWIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.382 [XNIO-1 task-2] IchuuZe8RKuI-bfd2yvWIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.383 [XNIO-1 task-2] IchuuZe8RKuI-bfd2yvWIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.388 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e7f21e3-d89f-426f-acf2-3b116517", {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.389 [XNIO-1 task-2] DqoY_00ZQxKQV36W7AFeIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7fc6cf12","serviceName":"9e7f21e3-d89f-426f-acf2-3b116517","serviceDesc":"6fd59f85-7176-4189-b2ee-feec140fa375","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.389 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7fc6cf12 +09:12:48.389 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7fc6cf12 +09:12:48.390 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fb7fa55f-2536-4d63-8c41-3fd70d3288ca +09:12:48.395 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.395 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.395 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.395 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.395 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.395 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG com.networknt.schema.TypeValidator debug - validate( "6fa14268-0553-45c7-86d4-f13e7efbff7e", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.396 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG com.networknt.schema.TypeValidator debug - validate( "07b9e229", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.396 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.396 [XNIO-1 task-2] ohiHc3utT32Colh0rrQQJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.402 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.402 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.402 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.402 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.403 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.403 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG com.networknt.schema.TypeValidator debug - validate( "3abc8d52-b4b9-4e60-a946-94e51fbb36a1", {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.403 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG com.networknt.schema.TypeValidator debug - validate( "ecc309e5", {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.403 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.403 [XNIO-1 task-2] _gurrg74QEuQt1Fff4GDUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ecc309e5","serviceName":"d9c396f2-5502-42d9-9b43-c80d6666","serviceDesc":"3abc8d52-b4b9-4e60-a946-94e51fbb36a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.408 [XNIO-1 task-2] OIrxdUTnSuO0vIBy-3wYXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0e94f01c +09:12:48.408 [XNIO-1 task-2] OIrxdUTnSuO0vIBy-3wYXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.408 [XNIO-1 task-2] OIrxdUTnSuO0vIBy-3wYXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.409 [XNIO-1 task-2] OIrxdUTnSuO0vIBy-3wYXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0e94f01c +09:12:48.413 [XNIO-1 task-2] pHKWKT41QVeW4UKyJAfU1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a7f6f2b8, base path is set to: null +09:12:48.413 [XNIO-1 task-2] pHKWKT41QVeW4UKyJAfU1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.414 [XNIO-1 task-2] pHKWKT41QVeW4UKyJAfU1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.414 [XNIO-1 task-2] pHKWKT41QVeW4UKyJAfU1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a7f6f2b8, base path is set to: null +09:12:48.414 [XNIO-1 task-2] pHKWKT41QVeW4UKyJAfU1A DEBUG com.networknt.schema.TypeValidator debug - validate( "a7f6f2b8", "a7f6f2b8", serviceId) +09:12:48.414 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a7f6f2b8 +09:12:48.421 [XNIO-1 task-2] sk7AuZMaQBeyVkbUs1tEeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0e94f01c +09:12:48.421 [XNIO-1 task-2] sk7AuZMaQBeyVkbUs1tEeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.421 [XNIO-1 task-2] sk7AuZMaQBeyVkbUs1tEeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.421 [XNIO-1 task-2] sk7AuZMaQBeyVkbUs1tEeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0e94f01c +09:12:48.427 [XNIO-1 task-2] Q7XpFYOjQGq59P2HD_xzdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44a7397e, base path is set to: null +09:12:48.428 [XNIO-1 task-2] Q7XpFYOjQGq59P2HD_xzdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.428 [XNIO-1 task-2] Q7XpFYOjQGq59P2HD_xzdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.428 [XNIO-1 task-2] Q7XpFYOjQGq59P2HD_xzdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44a7397e, base path is set to: null +09:12:48.428 [XNIO-1 task-2] Q7XpFYOjQGq59P2HD_xzdA DEBUG com.networknt.schema.TypeValidator debug - validate( "44a7397e", "44a7397e", serviceId) +09:12:48.430 [XNIO-1 task-2] d_jmRf5GRCKbo5jmryJnBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5196f987 +09:12:48.430 [XNIO-1 task-2] d_jmRf5GRCKbo5jmryJnBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.430 [XNIO-1 task-2] d_jmRf5GRCKbo5jmryJnBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.431 [XNIO-1 task-2] d_jmRf5GRCKbo5jmryJnBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5196f987 +09:12:48.433 [XNIO-1 task-2] syT8xI7XTwKoT7Pii1DfAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44a7397e, base path is set to: null +09:12:48.433 [XNIO-1 task-2] syT8xI7XTwKoT7Pii1DfAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.433 [XNIO-1 task-2] syT8xI7XTwKoT7Pii1DfAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.433 [XNIO-1 task-2] syT8xI7XTwKoT7Pii1DfAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44a7397e, base path is set to: null +09:12:48.433 [XNIO-1 task-2] syT8xI7XTwKoT7Pii1DfAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "44a7397e", "44a7397e", serviceId) +09:12:48.439 [XNIO-1 task-2] 1KJ39AH2Q8ODJ1SFi9gVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.439 [XNIO-1 task-2] 1KJ39AH2Q8ODJ1SFi9gVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.439 [XNIO-1 task-2] 1KJ39AH2Q8ODJ1SFi9gVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.439 [XNIO-1 task-2] 1KJ39AH2Q8ODJ1SFi9gVpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.446 [XNIO-1 task-2] 7tSg81hhQJWsxPVtF5JYww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.446 [XNIO-1 task-2] 7tSg81hhQJWsxPVtF5JYww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.446 [XNIO-1 task-2] 7tSg81hhQJWsxPVtF5JYww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG com.networknt.schema.TypeValidator debug - validate( "752c2d6f-847c-4a2f-b6a8-5598b2fa5d66", {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG com.networknt.schema.TypeValidator debug - validate( "5196f987", {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.452 [XNIO-1 task-2] vNhRxUMyRwKlQYR5eMvW8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5196f987","serviceName":"c0718053-c308-42cd-b8a5-78e9a71c","serviceDesc":"752c2d6f-847c-4a2f-b6a8-5598b2fa5d66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.453 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5196f987 +09:12:48.458 [XNIO-1 task-2] g0TnCDpSRdeCB8kAdXonNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.458 [XNIO-1 task-2] g0TnCDpSRdeCB8kAdXonNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.458 [XNIO-1 task-2] g0TnCDpSRdeCB8kAdXonNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.458 [XNIO-1 task-2] g0TnCDpSRdeCB8kAdXonNA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.463 [XNIO-1 task-2] TiCCU9fFQICxtarbX9MalQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.464 [XNIO-1 task-2] TiCCU9fFQICxtarbX9MalQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.464 [XNIO-1 task-2] TiCCU9fFQICxtarbX9MalQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.464 [XNIO-1 task-2] TiCCU9fFQICxtarbX9MalQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.475 [XNIO-1 task-2] sAqHJvOQToiPRHbFrlCAkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/38368cad +09:12:48.475 [XNIO-1 task-2] sAqHJvOQToiPRHbFrlCAkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.475 [XNIO-1 task-2] sAqHJvOQToiPRHbFrlCAkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.475 [XNIO-1 task-2] sAqHJvOQToiPRHbFrlCAkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/38368cad +09:12:48.480 [XNIO-1 task-2] agvIsHolR0KwuVdoKrvQMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3efdfdf7, base path is set to: null +09:12:48.480 [XNIO-1 task-2] agvIsHolR0KwuVdoKrvQMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.480 [XNIO-1 task-2] agvIsHolR0KwuVdoKrvQMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.480 [XNIO-1 task-2] agvIsHolR0KwuVdoKrvQMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3efdfdf7, base path is set to: null +09:12:48.481 [XNIO-1 task-2] agvIsHolR0KwuVdoKrvQMg DEBUG com.networknt.schema.TypeValidator debug - validate( "3efdfdf7", "3efdfdf7", serviceId) +09:12:48.482 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG com.networknt.schema.TypeValidator debug - validate( "0422e051-a2be-4a04-9de1-cd8729c79cb3", {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG com.networknt.schema.TypeValidator debug - validate( "3efdfdf7", {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.483 [XNIO-1 task-2] o3cBTT6dTCCDHi8pllhxvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3efdfdf7","serviceName":"43dfc7d6-07bf-4fdc-8269-3af99c94","serviceDesc":"0422e051-a2be-4a04-9de1-cd8729c79cb3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.488 [XNIO-1 task-2] IsOj9TAnRz2WrY8I1a1JvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.488 [XNIO-1 task-2] IsOj9TAnRz2WrY8I1a1JvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.488 [XNIO-1 task-2] IsOj9TAnRz2WrY8I1a1JvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.489 [XNIO-1 task-2] IsOj9TAnRz2WrY8I1a1JvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.494 [XNIO-1 task-2] R17wqBFfRbeRWdTB6pntjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecc309e5 +09:12:48.494 [XNIO-1 task-2] R17wqBFfRbeRWdTB6pntjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.495 [XNIO-1 task-2] R17wqBFfRbeRWdTB6pntjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.495 [XNIO-1 task-2] R17wqBFfRbeRWdTB6pntjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecc309e5 +09:12:48.497 [XNIO-1 task-2] 8mtN2yz5RfmiQvom4mOtbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3efdfdf7, base path is set to: null +09:12:48.497 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fb7fa55f-2536-4d63-8c41-3fd70d3288ca +09:12:48.497 [XNIO-1 task-2] 8mtN2yz5RfmiQvom4mOtbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.497 [XNIO-1 task-2] 8mtN2yz5RfmiQvom4mOtbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.497 [XNIO-1 task-2] 8mtN2yz5RfmiQvom4mOtbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3efdfdf7 +09:12:48.504 [XNIO-1 task-2] rF7UJp7gR8C1FHDHHl6AgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.504 [XNIO-1 task-2] rF7UJp7gR8C1FHDHHl6AgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.504 [XNIO-1 task-2] rF7UJp7gR8C1FHDHHl6AgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.504 [XNIO-1 task-2] rF7UJp7gR8C1FHDHHl6AgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.510 [XNIO-1 task-2] fBLXHkK8Q566mLPOCAUetw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.510 [XNIO-1 task-2] fBLXHkK8Q566mLPOCAUetw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.510 [XNIO-1 task-2] fBLXHkK8Q566mLPOCAUetw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.517 [XNIO-1 task-2] b3QUtAgEQdCK8Nb0XOFdCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7fc6cf12, base path is set to: null +09:12:48.517 [XNIO-1 task-2] b3QUtAgEQdCK8Nb0XOFdCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.517 [XNIO-1 task-2] b3QUtAgEQdCK8Nb0XOFdCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.517 [XNIO-1 task-2] b3QUtAgEQdCK8Nb0XOFdCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7fc6cf12, base path is set to: null +09:12:48.517 [XNIO-1 task-2] b3QUtAgEQdCK8Nb0XOFdCA DEBUG com.networknt.schema.TypeValidator debug - validate( "7fc6cf12", "7fc6cf12", serviceId) +09:12:48.518 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7fc6cf12 +09:12:48.522 [XNIO-1 task-2] Ag66AefORgCWO3QJcU283Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:48.522 [XNIO-1 task-2] Ag66AefORgCWO3QJcU283Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.522 [XNIO-1 task-2] Ag66AefORgCWO3QJcU283Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.522 [XNIO-1 task-2] Ag66AefORgCWO3QJcU283Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:48.525 [XNIO-1 task-2] OT8pFoD8SNuQGcUVOnnDxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a88458c, base path is set to: null +09:12:48.525 [XNIO-1 task-2] OT8pFoD8SNuQGcUVOnnDxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.525 [XNIO-1 task-2] OT8pFoD8SNuQGcUVOnnDxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.525 [XNIO-1 task-2] OT8pFoD8SNuQGcUVOnnDxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8a88458c, base path is set to: null +09:12:48.525 [XNIO-1 task-2] OT8pFoD8SNuQGcUVOnnDxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8a88458c", "8a88458c", serviceId) +09:12:48.533 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.533 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.533 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.534 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.534 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.534 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG com.networknt.schema.TypeValidator debug - validate( "76904bc9-b3ef-4873-9d16-9a6127c1f36b", {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.534 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG com.networknt.schema.TypeValidator debug - validate( "9d658d54", {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.534 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.534 [XNIO-1 task-2] 0dSRoOXDQIywfRxk1fKF5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.542 [XNIO-1 task-2] wenBWHeHQeeiJ4ecTURanw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.543 [XNIO-1 task-2] wenBWHeHQeeiJ4ecTURanw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.543 [XNIO-1 task-2] wenBWHeHQeeiJ4ecTURanw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.543 [XNIO-1 task-2] wenBWHeHQeeiJ4ecTURanw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.548 [XNIO-1 task-2] GdIwfw8wSJ61YU3Xlc9ing DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecc309e5 +09:12:48.548 [XNIO-1 task-2] GdIwfw8wSJ61YU3Xlc9ing DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.548 [XNIO-1 task-2] GdIwfw8wSJ61YU3Xlc9ing DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.548 [XNIO-1 task-2] GdIwfw8wSJ61YU3Xlc9ing DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecc309e5 +09:12:48.551 [XNIO-1 task-2] 623lWIbfRGmVV5MQUd2T1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecc309e5, base path is set to: null +09:12:48.551 [XNIO-1 task-2] 623lWIbfRGmVV5MQUd2T1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.551 [XNIO-1 task-2] 623lWIbfRGmVV5MQUd2T1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.551 [XNIO-1 task-2] 623lWIbfRGmVV5MQUd2T1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecc309e5, base path is set to: null +09:12:48.551 [XNIO-1 task-2] 623lWIbfRGmVV5MQUd2T1g DEBUG com.networknt.schema.TypeValidator debug - validate( "ecc309e5", "ecc309e5", serviceId) +09:12:48.554 [XNIO-1 task-2] 1ZfzVIIuSpG3SNkrE1_8dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.554 [XNIO-1 task-2] 1ZfzVIIuSpG3SNkrE1_8dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.554 [XNIO-1 task-2] 1ZfzVIIuSpG3SNkrE1_8dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.555 [XNIO-1 task-2] 1ZfzVIIuSpG3SNkrE1_8dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.562 [XNIO-1 task-2] XT9yJlXfRRmo0sKChGC8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecc309e5 +09:12:48.562 [XNIO-1 task-2] XT9yJlXfRRmo0sKChGC8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.562 [XNIO-1 task-2] XT9yJlXfRRmo0sKChGC8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.562 [XNIO-1 task-2] XT9yJlXfRRmo0sKChGC8Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecc309e5 +09:12:48.568 [XNIO-1 task-2] _Ct4FYEAS-OMhChRPZ7fGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.568 [XNIO-1 task-2] _Ct4FYEAS-OMhChRPZ7fGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.568 [XNIO-1 task-2] _Ct4FYEAS-OMhChRPZ7fGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.569 [XNIO-1 task-2] _Ct4FYEAS-OMhChRPZ7fGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.574 [XNIO-1 task-2] XF5IAtbfSPKbV_STkFi8cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.574 [XNIO-1 task-2] XF5IAtbfSPKbV_STkFi8cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.574 [XNIO-1 task-2] XF5IAtbfSPKbV_STkFi8cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.580 [XNIO-1 task-2] 3ESVU4mnQBSE618X7qJ_AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.580 [XNIO-1 task-2] 3ESVU4mnQBSE618X7qJ_AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.580 [XNIO-1 task-2] 3ESVU4mnQBSE618X7qJ_AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.580 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e48b75ed +09:12:48.581 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e48b75ed +09:12:48.585 [XNIO-1 task-2] BkrIrOP9Tyy4HIjpHsqTOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.585 [XNIO-1 task-2] BkrIrOP9Tyy4HIjpHsqTOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.585 [XNIO-1 task-2] BkrIrOP9Tyy4HIjpHsqTOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.590 [XNIO-1 task-2] wb2lKzmARm-XH5bsyUPniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5196f987 +09:12:48.590 [XNIO-1 task-2] wb2lKzmARm-XH5bsyUPniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.590 [XNIO-1 task-2] wb2lKzmARm-XH5bsyUPniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.590 [XNIO-1 task-2] wb2lKzmARm-XH5bsyUPniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5196f987 +09:12:48.592 [XNIO-1 task-2] qSA0nbtUS3qT34qWCX-Xkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.592 [XNIO-1 task-2] qSA0nbtUS3qT34qWCX-Xkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.593 [XNIO-1 task-2] qSA0nbtUS3qT34qWCX-Xkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.598 [XNIO-1 task-2] WmnCrvpxQ5i6Wh5thh3_7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5196f987, base path is set to: null +09:12:48.598 [XNIO-1 task-2] WmnCrvpxQ5i6Wh5thh3_7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.598 [XNIO-1 task-2] WmnCrvpxQ5i6Wh5thh3_7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.598 [XNIO-1 task-2] WmnCrvpxQ5i6Wh5thh3_7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5196f987, base path is set to: null +09:12:48.598 [XNIO-1 task-2] WmnCrvpxQ5i6Wh5thh3_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "5196f987", "5196f987", serviceId) +09:12:48.601 [XNIO-1 task-2] EYQ4g2yoTNek2Okaje-tdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.601 [XNIO-1 task-2] EYQ4g2yoTNek2Okaje-tdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.602 [XNIO-1 task-2] EYQ4g2yoTNek2Okaje-tdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.608 [XNIO-1 task-2] uOJlzc39RwmRKPOiRBkxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.609 [XNIO-1 task-2] uOJlzc39RwmRKPOiRBkxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.609 [XNIO-1 task-2] uOJlzc39RwmRKPOiRBkxvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.609 [XNIO-1 task-2] uOJlzc39RwmRKPOiRBkxvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.615 [XNIO-1 task-2] l_QRfoAsQkq4ujkWvk5_sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.615 [XNIO-1 task-2] l_QRfoAsQkq4ujkWvk5_sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.615 [XNIO-1 task-2] l_QRfoAsQkq4ujkWvk5_sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.620 [XNIO-1 task-2] XBc-cUS4TrC-bDP6IfVENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5196f987 +09:12:48.620 [XNIO-1 task-2] XBc-cUS4TrC-bDP6IfVENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.620 [XNIO-1 task-2] XBc-cUS4TrC-bDP6IfVENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.621 [XNIO-1 task-2] XBc-cUS4TrC-bDP6IfVENQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5196f987 +09:12:48.621 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5196f987 +09:12:48.627 [XNIO-1 task-2] 2sO3txAQT-qOTAmctzrV-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.627 [XNIO-1 task-2] 2sO3txAQT-qOTAmctzrV-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.627 [XNIO-1 task-2] 2sO3txAQT-qOTAmctzrV-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.627 [XNIO-1 task-2] 2sO3txAQT-qOTAmctzrV-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.632 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.632 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.633 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.633 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.634 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.634 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.634 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.634 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff158290-d58d-405c-8dcd-70bdbdf8", {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.634 [XNIO-1 task-2] 5OHM82PvS7yxmrerCf4GKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9d658d54","serviceName":"ff158290-d58d-405c-8dcd-70bdbdf8","serviceDesc":"76904bc9-b3ef-4873-9d16-9a6127c1f36b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.639 [XNIO-1 task-2] ZnoReF5mRAqq8KdaQuGJVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.639 [XNIO-1 task-2] ZnoReF5mRAqq8KdaQuGJVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.639 [XNIO-1 task-2] ZnoReF5mRAqq8KdaQuGJVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.643 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5a89a1a +09:12:48.643 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b5a89a1a +09:12:48.645 [XNIO-1 task-2] fYOwnL0pQ8WB2PrLH8j0QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.645 [XNIO-1 task-2] fYOwnL0pQ8WB2PrLH8j0QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.645 [XNIO-1 task-2] fYOwnL0pQ8WB2PrLH8j0QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.646 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:bf4ee6a0 +09:12:48.651 [XNIO-1 task-2] 2WzNfAkPRT28SxwrAGewpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3d490c73, base path is set to: null +09:12:48.651 [XNIO-1 task-2] 2WzNfAkPRT28SxwrAGewpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.651 [XNIO-1 task-2] 2WzNfAkPRT28SxwrAGewpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.651 [XNIO-1 task-2] 2WzNfAkPRT28SxwrAGewpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3d490c73, base path is set to: null +09:12:48.651 [XNIO-1 task-2] 2WzNfAkPRT28SxwrAGewpA DEBUG com.networknt.schema.TypeValidator debug - validate( "3d490c73", "3d490c73", serviceId) +09:12:48.657 [XNIO-1 task-2] ZO-rc_ezTWmCbcv8uCAwNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cb7e7d73 +09:12:48.657 [XNIO-1 task-2] ZO-rc_ezTWmCbcv8uCAwNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.657 [XNIO-1 task-2] ZO-rc_ezTWmCbcv8uCAwNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.658 [XNIO-1 task-2] ZO-rc_ezTWmCbcv8uCAwNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cb7e7d73 +09:12:48.660 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b5a89a1a +09:12:48.662 [XNIO-1 task-2] 7UX2Z-MzSUm-n8UYH0wVcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b9e229, base path is set to: null +09:12:48.662 [XNIO-1 task-2] 7UX2Z-MzSUm-n8UYH0wVcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.663 [XNIO-1 task-2] 7UX2Z-MzSUm-n8UYH0wVcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.663 [XNIO-1 task-2] 7UX2Z-MzSUm-n8UYH0wVcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b9e229, base path is set to: null +09:12:48.663 [XNIO-1 task-2] 7UX2Z-MzSUm-n8UYH0wVcg DEBUG com.networknt.schema.TypeValidator debug - validate( "07b9e229", "07b9e229", serviceId) +09:12:48.665 [XNIO-1 task-2] tpeHEsWnQdyf8wXfQbH94w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.665 [XNIO-1 task-2] tpeHEsWnQdyf8wXfQbH94w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.665 [XNIO-1 task-2] tpeHEsWnQdyf8wXfQbH94w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.672 [XNIO-1 task-2] DOY3YIfZQdKY-IsunFvqbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/150596a3 +09:12:48.672 [XNIO-1 task-2] DOY3YIfZQdKY-IsunFvqbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.672 [XNIO-1 task-2] DOY3YIfZQdKY-IsunFvqbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.672 [XNIO-1 task-2] DOY3YIfZQdKY-IsunFvqbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/150596a3 +09:12:48.674 [XNIO-1 task-2] sHD1r86UT4q92YmSqlBUsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/150596a3, base path is set to: null +09:12:48.674 [XNIO-1 task-2] sHD1r86UT4q92YmSqlBUsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.674 [XNIO-1 task-2] sHD1r86UT4q92YmSqlBUsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.674 [XNIO-1 task-2] sHD1r86UT4q92YmSqlBUsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/150596a3, base path is set to: null +09:12:48.674 [XNIO-1 task-2] sHD1r86UT4q92YmSqlBUsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "150596a3", "150596a3", serviceId) +09:12:48.679 [XNIO-1 task-2] sOUnA6CGSs699TH12-v97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/50b0d213 +09:12:48.679 [XNIO-1 task-2] sOUnA6CGSs699TH12-v97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.679 [XNIO-1 task-2] sOUnA6CGSs699TH12-v97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.679 [XNIO-1 task-2] sOUnA6CGSs699TH12-v97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/50b0d213 +09:12:48.682 [XNIO-1 task-2] YC-Q35KkR_qc531dlParog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:48.682 [XNIO-1 task-2] YC-Q35KkR_qc531dlParog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.682 [XNIO-1 task-2] YC-Q35KkR_qc531dlParog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.682 [XNIO-1 task-2] YC-Q35KkR_qc531dlParog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:48.682 [XNIO-1 task-2] YC-Q35KkR_qc531dlParog DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0d213", "50b0d213", serviceId) +09:12:48.684 [XNIO-1 task-2] 75vgRX4zTkO7c_AGVCdycQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/50b0d213 +09:12:48.684 [XNIO-1 task-2] 75vgRX4zTkO7c_AGVCdycQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.684 [XNIO-1 task-2] 75vgRX4zTkO7c_AGVCdycQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.684 [XNIO-1 task-2] 75vgRX4zTkO7c_AGVCdycQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/50b0d213 +09:12:48.686 [XNIO-1 task-2] KV4vFYnpSzuUK2ivYjbEXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.686 [XNIO-1 task-2] KV4vFYnpSzuUK2ivYjbEXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.686 [XNIO-1 task-2] KV4vFYnpSzuUK2ivYjbEXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.692 [XNIO-1 task-2] 1DrnGRrMRtmtTWrTbH_ZcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.692 [XNIO-1 task-2] 1DrnGRrMRtmtTWrTbH_ZcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.692 [XNIO-1 task-2] 1DrnGRrMRtmtTWrTbH_ZcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.692 [XNIO-1 task-2] 1DrnGRrMRtmtTWrTbH_ZcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.699 [XNIO-1 task-2] QqiDrI_dSa-if6-LdxHwig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.699 [XNIO-1 task-2] QqiDrI_dSa-if6-LdxHwig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.700 [XNIO-1 task-2] QqiDrI_dSa-if6-LdxHwig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.700 [XNIO-1 task-2] QqiDrI_dSa-if6-LdxHwig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.703 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25fa331f-0bba-4a6a-b04f-aad4c1ea", {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.704 [XNIO-1 task-2] buHmjSI_QRmhqA0fPC1SZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.710 [XNIO-1 task-2] hm1QxSuGSdqyaesZHRTnnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.710 [XNIO-1 task-2] hm1QxSuGSdqyaesZHRTnnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.711 [XNIO-1 task-2] hm1QxSuGSdqyaesZHRTnnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.716 [XNIO-1 task-2] CRi_g_J6SiuHXnEIpPM0Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.716 [XNIO-1 task-2] CRi_g_J6SiuHXnEIpPM0Ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.716 [XNIO-1 task-2] CRi_g_J6SiuHXnEIpPM0Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.726 [XNIO-1 task-2] oQR5HEjjRJWziFrDNUSO5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.726 [XNIO-1 task-2] oQR5HEjjRJWziFrDNUSO5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.726 [XNIO-1 task-2] oQR5HEjjRJWziFrDNUSO5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.731 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b5a89a1a +09:12:48.734 [XNIO-1 task-2] WHyVGEfyQDuKRtX19G0PXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.734 [XNIO-1 task-2] WHyVGEfyQDuKRtX19G0PXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.734 [XNIO-1 task-2] WHyVGEfyQDuKRtX19G0PXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.740 [XNIO-1 task-2] J2Hb6JvASVS4my65M-jtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e48b75ed +09:12:48.740 [XNIO-1 task-2] J2Hb6JvASVS4my65M-jtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.740 [XNIO-1 task-2] J2Hb6JvASVS4my65M-jtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.740 [XNIO-1 task-2] J2Hb6JvASVS4my65M-jtEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e48b75ed +09:12:48.740 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e48b75ed +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG com.networknt.schema.TypeValidator debug - validate( "91960f59-b65b-4cc4-9c97-1ec07452", {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.747 [XNIO-1 task-2] e0_74yIiQ1G-gOHiSJebAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f6e6cc96","serviceName":"91960f59-b65b-4cc4-9c97-1ec07452","serviceDesc":"e5da2288-3ff7-4b91-8dfd-4f8ab76dedb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.755 [XNIO-1 task-2] Qs0-nomCSfCkrevo6N6GtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e399170e, base path is set to: null +09:12:48.755 [XNIO-1 task-2] Qs0-nomCSfCkrevo6N6GtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.755 [XNIO-1 task-2] Qs0-nomCSfCkrevo6N6GtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.755 [XNIO-1 task-2] Qs0-nomCSfCkrevo6N6GtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e399170e, base path is set to: null +09:12:48.756 [XNIO-1 task-2] Qs0-nomCSfCkrevo6N6GtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e399170e", "e399170e", serviceId) +09:12:48.762 [XNIO-1 task-2] 2aJDzuapSya_sgC5-QgzUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.762 [XNIO-1 task-2] 2aJDzuapSya_sgC5-QgzUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.762 [XNIO-1 task-2] 2aJDzuapSya_sgC5-QgzUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.768 [XNIO-1 task-2] 0p_Rg9ouTDm8BbHHi5WPeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.768 [XNIO-1 task-2] 0p_Rg9ouTDm8BbHHi5WPeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.768 [XNIO-1 task-2] 0p_Rg9ouTDm8BbHHi5WPeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.769 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:20b7a6ae-a5e3-47cf-82d6-76ebc05b2485 +09:12:48.775 [XNIO-1 task-2] _XULi4geQ2-iIJhN12u5-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.775 [XNIO-1 task-2] _XULi4geQ2-iIJhN12u5-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.775 [XNIO-1 task-2] _XULi4geQ2-iIJhN12u5-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.782 [XNIO-1 task-2] 3yELaPHfS_SPXkYL5aYE9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.782 [XNIO-1 task-2] 3yELaPHfS_SPXkYL5aYE9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.782 [XNIO-1 task-2] 3yELaPHfS_SPXkYL5aYE9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.782 [XNIO-1 task-2] 3yELaPHfS_SPXkYL5aYE9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.791 [XNIO-1 task-2] 3vNUUbyNQOmqQFNrM7ZTXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/251d67a5, base path is set to: null +09:12:48.791 [XNIO-1 task-2] 3vNUUbyNQOmqQFNrM7ZTXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.791 [XNIO-1 task-2] 3vNUUbyNQOmqQFNrM7ZTXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.791 [XNIO-1 task-2] 3vNUUbyNQOmqQFNrM7ZTXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/251d67a5, base path is set to: null +09:12:48.791 [XNIO-1 task-2] 3vNUUbyNQOmqQFNrM7ZTXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "251d67a5", "251d67a5", serviceId) +09:12:48.793 [XNIO-1 task-2] bEeHz7G4RjuH5NCvwpTFcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.793 [XNIO-1 task-2] bEeHz7G4RjuH5NCvwpTFcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.793 [XNIO-1 task-2] bEeHz7G4RjuH5NCvwpTFcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.793 [XNIO-1 task-2] bEeHz7G4RjuH5NCvwpTFcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.799 [XNIO-1 task-2] N-Kp-9cQRka4iYBzCp6-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/251d67a5 +09:12:48.799 [XNIO-1 task-2] N-Kp-9cQRka4iYBzCp6-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.799 [XNIO-1 task-2] N-Kp-9cQRka4iYBzCp6-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.799 [XNIO-1 task-2] N-Kp-9cQRka4iYBzCp6-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/251d67a5 +09:12:48.804 [XNIO-1 task-2] raoJdUxlTN6VEbP-aWkfBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4a386b91, base path is set to: null +09:12:48.804 [XNIO-1 task-2] raoJdUxlTN6VEbP-aWkfBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.804 [XNIO-1 task-2] raoJdUxlTN6VEbP-aWkfBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.804 [XNIO-1 task-2] raoJdUxlTN6VEbP-aWkfBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4a386b91, base path is set to: null +09:12:48.804 [XNIO-1 task-2] raoJdUxlTN6VEbP-aWkfBA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a386b91", "4a386b91", serviceId) +09:12:48.808 [XNIO-1 task-2] GjRAE0g-Q0SfCmMKCEYSkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.808 [XNIO-1 task-2] GjRAE0g-Q0SfCmMKCEYSkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.808 [XNIO-1 task-2] GjRAE0g-Q0SfCmMKCEYSkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.809 [XNIO-1 task-2] GjRAE0g-Q0SfCmMKCEYSkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.814 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.814 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.814 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.814 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.815 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.815 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG com.networknt.schema.TypeValidator debug - validate( "0ca04a25-970e-4864-ba26-6ce397a51c7f", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.815 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1a84bee5", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.815 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.815 [XNIO-1 task-2] 9ReSsIPETwi5pvWeqHFxrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.819 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cab9a4fc +09:12:48.820 [XNIO-1 task-2] k8Yi_-xbQIaxOyKzUSIvzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:48.821 [XNIO-1 task-2] k8Yi_-xbQIaxOyKzUSIvzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.821 [XNIO-1 task-2] k8Yi_-xbQIaxOyKzUSIvzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.821 [XNIO-1 task-2] k8Yi_-xbQIaxOyKzUSIvzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:48.821 [XNIO-1 task-2] k8Yi_-xbQIaxOyKzUSIvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0d213", "50b0d213", serviceId) +09:12:48.823 [XNIO-1 task-2] EuwJ9AxzSV2pzI21fSFB5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.823 [XNIO-1 task-2] EuwJ9AxzSV2pzI21fSFB5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.823 [XNIO-1 task-2] EuwJ9AxzSV2pzI21fSFB5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.828 [XNIO-1 task-2] KL_tUWWTSvuwqO2hTIL0uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.828 [XNIO-1 task-2] KL_tUWWTSvuwqO2hTIL0uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.828 [XNIO-1 task-2] KL_tUWWTSvuwqO2hTIL0uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.828 [XNIO-1 task-2] KL_tUWWTSvuwqO2hTIL0uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.835 [XNIO-1 task-2] kxUjURCxQ2q0PE5_2Xw3KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.835 [XNIO-1 task-2] kxUjURCxQ2q0PE5_2Xw3KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.835 [XNIO-1 task-2] kxUjURCxQ2q0PE5_2Xw3KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.835 [XNIO-1 task-2] kxUjURCxQ2q0PE5_2Xw3KQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.841 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.841 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.841 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.842 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.842 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.842 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG com.networknt.schema.TypeValidator debug - validate( "aab62208-0bc2-4d24-a140-1ab895c9ef8c", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.842 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG com.networknt.schema.TypeValidator debug - validate( "ef89fc11", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.842 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.842 [XNIO-1 task-2] 8t71xoxQRwKKVPOg3DEHDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.849 [XNIO-1 task-2] qdL7CFVWRnSZLFKQQqojgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e45453be +09:12:48.849 [XNIO-1 task-2] qdL7CFVWRnSZLFKQQqojgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.849 [XNIO-1 task-2] qdL7CFVWRnSZLFKQQqojgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.849 [XNIO-1 task-2] qdL7CFVWRnSZLFKQQqojgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e45453be +09:12:48.854 [XNIO-1 task-2] JzcsM2RRT7acKqUOAQf_Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:48.854 [XNIO-1 task-2] JzcsM2RRT7acKqUOAQf_Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.854 [XNIO-1 task-2] JzcsM2RRT7acKqUOAQf_Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.854 [XNIO-1 task-2] JzcsM2RRT7acKqUOAQf_Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:48.854 [XNIO-1 task-2] JzcsM2RRT7acKqUOAQf_Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0d213", "50b0d213", serviceId) +09:12:48.858 [XNIO-1 task-2] gX8kJEoYTM6SI2LFXXR45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.858 [XNIO-1 task-2] gX8kJEoYTM6SI2LFXXR45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.858 [XNIO-1 task-2] gX8kJEoYTM6SI2LFXXR45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f7b17bee-d081-46e9-8b0b-533b5af815eb", {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0d213", {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.865 [XNIO-1 task-2] D0m4ZIPjSrWURCsuZ0u_rQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"50b0d213","serviceName":"25fa331f-0bba-4a6a-b04f-aad4c1ea","serviceDesc":"f7b17bee-d081-46e9-8b0b-533b5af815eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.871 [XNIO-1 task-2] h4DsuOatSneHOi9GoR5ElQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d658d54 +09:12:48.871 [XNIO-1 task-2] h4DsuOatSneHOi9GoR5ElQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.871 [XNIO-1 task-2] h4DsuOatSneHOi9GoR5ElQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.871 [XNIO-1 task-2] h4DsuOatSneHOi9GoR5ElQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d658d54 +09:12:48.878 [XNIO-1 task-2] QojedqaXRECQKD9XGgRFcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.879 [XNIO-1 task-2] QojedqaXRECQKD9XGgRFcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.879 [XNIO-1 task-2] QojedqaXRECQKD9XGgRFcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.884 [XNIO-1 task-2] 72QMdQBIQCyI6zAisDDU-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.884 [XNIO-1 task-2] 72QMdQBIQCyI6zAisDDU-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.884 [XNIO-1 task-2] 72QMdQBIQCyI6zAisDDU-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.885 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cab9a4fc +09:12:48.892 [XNIO-1 task-2] c1XfOfKYTwKkl_jhscQzUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f6e6cc96, base path is set to: null +09:12:48.892 [XNIO-1 task-2] c1XfOfKYTwKkl_jhscQzUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.892 [XNIO-1 task-2] c1XfOfKYTwKkl_jhscQzUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.892 [XNIO-1 task-2] c1XfOfKYTwKkl_jhscQzUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f6e6cc96, base path is set to: null +09:12:48.892 [XNIO-1 task-2] c1XfOfKYTwKkl_jhscQzUw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e6cc96", "f6e6cc96", serviceId) +09:12:48.895 [XNIO-1 task-2] dYeyJO4jQgWRznVkMhA6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f6e6cc96 +09:12:48.895 [XNIO-1 task-2] dYeyJO4jQgWRznVkMhA6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.895 [XNIO-1 task-2] dYeyJO4jQgWRznVkMhA6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.895 [XNIO-1 task-2] dYeyJO4jQgWRznVkMhA6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f6e6cc96 +09:12:48.898 [XNIO-1 task-2] qog49v6RQ9iSoJ1dh095eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.898 [XNIO-1 task-2] qog49v6RQ9iSoJ1dh095eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.898 [XNIO-1 task-2] qog49v6RQ9iSoJ1dh095eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.898 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dd8d2f2f +09:12:48.899 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dd8d2f2f +09:12:48.901 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cab9a4fc +09:12:48.904 [XNIO-1 task-2] 7_3LPSI4S0iPqysQJmj4qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.904 [XNIO-1 task-2] 7_3LPSI4S0iPqysQJmj4qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.904 [XNIO-1 task-2] 7_3LPSI4S0iPqysQJmj4qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.904 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:42aff5fa +09:12:48.910 [XNIO-1 task-2] -7Q_gc1ORrO_wvDnFUKcIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1c267061, base path is set to: null +09:12:48.910 [XNIO-1 task-2] -7Q_gc1ORrO_wvDnFUKcIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.910 [XNIO-1 task-2] -7Q_gc1ORrO_wvDnFUKcIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.910 [XNIO-1 task-2] -7Q_gc1ORrO_wvDnFUKcIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1c267061, base path is set to: null +09:12:48.910 [XNIO-1 task-2] -7Q_gc1ORrO_wvDnFUKcIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1c267061", "1c267061", serviceId) +09:12:48.916 [XNIO-1 task-2] AZ073bDJQY-uKtD3FPxQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5e4c590b +09:12:48.917 [XNIO-1 task-2] AZ073bDJQY-uKtD3FPxQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.917 [XNIO-1 task-2] AZ073bDJQY-uKtD3FPxQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.917 [XNIO-1 task-2] AZ073bDJQY-uKtD3FPxQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5e4c590b +09:12:48.917 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cab9a4fc +09:12:48.920 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.920 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.920 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.921 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.921 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.921 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.921 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:48.921 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG com.networknt.schema.TypeValidator debug - validate( "8298a912-b204-4286-ae38-10f06b0a", {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:48.921 [XNIO-1 task-2] Xb-hqqyzRuK0oH9Y--0pjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5e4c590b","serviceName":"8298a912-b204-4286-ae38-10f06b0a","serviceDesc":"73a43b74-221c-40a0-843c-cd7751252c67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.926 [XNIO-1 task-2] umatTTG2SzGTTOuy72FjFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dfc625fa, base path is set to: null +09:12:48.926 [XNIO-1 task-2] umatTTG2SzGTTOuy72FjFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.926 [XNIO-1 task-2] umatTTG2SzGTTOuy72FjFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.926 [XNIO-1 task-2] umatTTG2SzGTTOuy72FjFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dfc625fa, base path is set to: null +09:12:48.926 [XNIO-1 task-2] umatTTG2SzGTTOuy72FjFg DEBUG com.networknt.schema.TypeValidator debug - validate( "dfc625fa", "dfc625fa", serviceId) +09:12:48.934 [XNIO-1 task-2] xlxUQXzsQymlZiTtxWVs_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6922e84 +09:12:48.934 [XNIO-1 task-2] xlxUQXzsQymlZiTtxWVs_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.934 [XNIO-1 task-2] xlxUQXzsQymlZiTtxWVs_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.934 [XNIO-1 task-2] xlxUQXzsQymlZiTtxWVs_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6922e84 +09:12:48.935 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cab9a4fc +09:12:48.940 [XNIO-1 task-2] w_YG9kVSRwixuauY8z37aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1a8149b5, base path is set to: null +09:12:48.940 [XNIO-1 task-2] w_YG9kVSRwixuauY8z37aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.940 [XNIO-1 task-2] w_YG9kVSRwixuauY8z37aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:48.941 [XNIO-1 task-2] w_YG9kVSRwixuauY8z37aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1a8149b5, base path is set to: null +09:12:48.941 [XNIO-1 task-2] w_YG9kVSRwixuauY8z37aA DEBUG com.networknt.schema.TypeValidator debug - validate( "1a8149b5", "1a8149b5", serviceId) +09:12:48.945 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cab9a4fc +09:12:48.947 [XNIO-1 task-2] K2iVC2ttRzyjwgFAVITilQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd8d2f2f +09:12:48.947 [XNIO-1 task-2] K2iVC2ttRzyjwgFAVITilQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.947 [XNIO-1 task-2] K2iVC2ttRzyjwgFAVITilQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:48.947 [XNIO-1 task-2] K2iVC2ttRzyjwgFAVITilQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd8d2f2f +09:12:48.948 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:dd8d2f2f +09:12:48.956 [XNIO-1 task-2] PvPzSELoQROyr2oigSq-HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.956 [XNIO-1 task-2] PvPzSELoQROyr2oigSq-HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:48.956 [XNIO-1 task-2] PvPzSELoQROyr2oigSq-HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:48.958 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cab9a4fc +09:12:48.966 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.966 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.967 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.967 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.967 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.968 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG com.networknt.schema.TypeValidator debug - validate( "aab62208-0bc2-4d24-a140-1ab895c9ef8c", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.968 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG com.networknt.schema.TypeValidator debug - validate( "ef89fc11", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.968 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.968 [XNIO-1 task-2] aRVhALPPTxSh9CItKtG1nw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.973 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.973 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.973 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.973 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.973 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.973 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG com.networknt.schema.TypeValidator debug - validate( "df5d403b-9378-4325-aa24-6cf2fca38a35", {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.974 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG com.networknt.schema.TypeValidator debug - validate( "47d41fdf", {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.974 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.974 [XNIO-1 task-2] XG85KbB9TAOGMfHQb_KQTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"47d41fdf","serviceName":"a82574ff-4e7e-4b52-be52-4f5abf84","serviceDesc":"df5d403b-9378-4325-aa24-6cf2fca38a35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ca04a25-970e-4864-ba26-6ce397a51c7f", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG com.networknt.schema.TypeValidator debug - validate( "1a84bee5", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:48.979 [XNIO-1 task-2] 0F6_MaPkTaasPvGHBCBATw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.010 [XNIO-1 task-2] YCgN0zP7RRGGTTPug33hCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.010 [XNIO-1 task-2] YCgN0zP7RRGGTTPug33hCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.010 [XNIO-1 task-2] YCgN0zP7RRGGTTPug33hCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.010 [XNIO-1 task-2] YCgN0zP7RRGGTTPug33hCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.016 [XNIO-1 task-2] zDTPzy3tQKS9389-Ab0ziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/42aff5fa +09:12:49.016 [XNIO-1 task-2] zDTPzy3tQKS9389-Ab0ziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.016 [XNIO-1 task-2] zDTPzy3tQKS9389-Ab0ziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.016 [XNIO-1 task-2] zDTPzy3tQKS9389-Ab0ziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/42aff5fa +09:12:49.017 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:42aff5fa +09:12:49.024 [XNIO-1 task-2] qPfy2mX4RF-pT4eEBut8gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf4ee6a0, base path is set to: null +09:12:49.024 [XNIO-1 task-2] qPfy2mX4RF-pT4eEBut8gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.024 [XNIO-1 task-2] qPfy2mX4RF-pT4eEBut8gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.024 [XNIO-1 task-2] qPfy2mX4RF-pT4eEBut8gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf4ee6a0, base path is set to: null +09:12:49.024 [XNIO-1 task-2] qPfy2mX4RF-pT4eEBut8gA DEBUG com.networknt.schema.TypeValidator debug - validate( "bf4ee6a0", "bf4ee6a0", serviceId) +09:12:49.026 [XNIO-1 task-2] im8D7xApTtSxD8fxE6_Q-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.026 [XNIO-1 task-2] im8D7xApTtSxD8fxE6_Q-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.026 [XNIO-1 task-2] im8D7xApTtSxD8fxE6_Q-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.027 [XNIO-1 task-2] im8D7xApTtSxD8fxE6_Q-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.036 [XNIO-1 task-2] 9XrR5CUNTjGtjyQxgWe2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf4ee6a0 +09:12:49.036 [XNIO-1 task-2] 9XrR5CUNTjGtjyQxgWe2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.036 [XNIO-1 task-2] 9XrR5CUNTjGtjyQxgWe2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.036 [XNIO-1 task-2] 9XrR5CUNTjGtjyQxgWe2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf4ee6a0 +09:12:49.038 [XNIO-1 task-2] 6g_Nm3quSuSYdXxv0SxZLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.038 [XNIO-1 task-2] 6g_Nm3quSuSYdXxv0SxZLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.038 [XNIO-1 task-2] 6g_Nm3quSuSYdXxv0SxZLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.038 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:60ec1e6a +09:12:49.039 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:60ec1e6a +09:12:49.044 [XNIO-1 task-2] fNQ1JnsHTT-0LgLcR--6xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf4ee6a0 +09:12:49.044 [XNIO-1 task-2] fNQ1JnsHTT-0LgLcR--6xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.044 [XNIO-1 task-2] fNQ1JnsHTT-0LgLcR--6xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.044 [XNIO-1 task-2] fNQ1JnsHTT-0LgLcR--6xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf4ee6a0 +09:12:49.045 [XNIO-1 task-2] fCfrgJvmR8Org0hRFF_Raw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.045 [XNIO-1 task-2] fCfrgJvmR8Org0hRFF_Raw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.046 [XNIO-1 task-2] fCfrgJvmR8Org0hRFF_Raw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.051 [XNIO-1 task-2] YvsWmQQsSpq_xeAF_foSIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.051 [XNIO-1 task-2] YvsWmQQsSpq_xeAF_foSIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.051 [XNIO-1 task-2] YvsWmQQsSpq_xeAF_foSIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.057 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b8d9261d-896e-4ecb-8db1-a450db23", {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:49.058 [XNIO-1 task-2] VrB9iugQRxSClelniQIFoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.058 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:bf4ee6a0 +09:12:49.064 [XNIO-1 task-2] u8zYsr_FS0Ow6lkZU4-otQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5e4c590b, base path is set to: null +09:12:49.064 [XNIO-1 task-2] u8zYsr_FS0Ow6lkZU4-otQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.064 [XNIO-1 task-2] u8zYsr_FS0Ow6lkZU4-otQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.064 [XNIO-1 task-2] u8zYsr_FS0Ow6lkZU4-otQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5e4c590b, base path is set to: null +09:12:49.065 [XNIO-1 task-2] u8zYsr_FS0Ow6lkZU4-otQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5e4c590b", "5e4c590b", serviceId) +09:12:49.070 [XNIO-1 task-2] vWExdZMbSm65Vby0Jm0PBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88679997 +09:12:49.070 [XNIO-1 task-2] vWExdZMbSm65Vby0Jm0PBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.070 [XNIO-1 task-2] vWExdZMbSm65Vby0Jm0PBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.070 [XNIO-1 task-2] vWExdZMbSm65Vby0Jm0PBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88679997 +09:12:49.072 [XNIO-1 task-2] 2MF6azckTuG38-PREcvAog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.072 [XNIO-1 task-2] 2MF6azckTuG38-PREcvAog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.073 [XNIO-1 task-2] 2MF6azckTuG38-PREcvAog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.073 [XNIO-1 task-2] 2MF6azckTuG38-PREcvAog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.076 [XNIO-1 task-2] mFOU1dI3TW68f2rlzOo76w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eea9a5c3, base path is set to: null +09:12:49.076 [XNIO-1 task-2] mFOU1dI3TW68f2rlzOo76w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.076 [XNIO-1 task-2] mFOU1dI3TW68f2rlzOo76w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.076 [XNIO-1 task-2] mFOU1dI3TW68f2rlzOo76w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eea9a5c3, base path is set to: null +09:12:49.076 [XNIO-1 task-2] mFOU1dI3TW68f2rlzOo76w DEBUG com.networknt.schema.TypeValidator debug - validate( "eea9a5c3", "eea9a5c3", serviceId) +09:12:49.082 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.082 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.083 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.083 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.083 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.083 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG com.networknt.schema.TypeValidator debug - validate( "a92b15e0-7637-4121-9093-ae20e8b401c3", {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:49.083 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG com.networknt.schema.TypeValidator debug - validate( "88679997", {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:49.083 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.083 [XNIO-1 task-2] kJfpruSXSNK4LP-iQddOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88679997","serviceName":"915efcc3-fe2d-476a-b8b9-dd110fe7","serviceDesc":"a92b15e0-7637-4121-9093-ae20e8b401c3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.133 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0a6aaf83 +09:12:49.209 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0a6aaf83 +09:12:49.281 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:799ed7e0 +09:12:49.303 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:da257e32 +09:12:49.304 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:da257e32 +09:12:49.348 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:799ed7e0 +09:12:49.372 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:799ed7e0 +09:12:49.485 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:da257e32 +09:12:49.607 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c58c7766-098f-468e-9cab-27cef2bba207 +09:12:49.641 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7be90f48 +09:12:49.656 [XNIO-1 task-2] G2xRKqciQzuYZxUGvMwKDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/747d8da0, base path is set to: null +09:12:49.656 [XNIO-1 task-2] G2xRKqciQzuYZxUGvMwKDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.656 [XNIO-1 task-2] G2xRKqciQzuYZxUGvMwKDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.656 [XNIO-1 task-2] G2xRKqciQzuYZxUGvMwKDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/747d8da0, base path is set to: null +09:12:49.656 [XNIO-1 task-2] G2xRKqciQzuYZxUGvMwKDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "747d8da0", "747d8da0", serviceId) +09:12:49.661 [XNIO-1 task-2] Z8pkm34ZRJORLGYa7IU67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.661 [XNIO-1 task-2] Z8pkm34ZRJORLGYa7IU67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.662 [XNIO-1 task-2] Z8pkm34ZRJORLGYa7IU67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.662 [XNIO-1 task-2] Z8pkm34ZRJORLGYa7IU67w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.671 [XNIO-1 task-2] nu_fw9eMS9iYSxXBLhYp3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/747d8da0 +09:12:49.671 [XNIO-1 task-2] nu_fw9eMS9iYSxXBLhYp3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.671 [XNIO-1 task-2] nu_fw9eMS9iYSxXBLhYp3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.671 [XNIO-1 task-2] nu_fw9eMS9iYSxXBLhYp3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/747d8da0 +09:12:49.674 [XNIO-1 task-2] IVY4Oe96StSBMc593nF_Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.674 [XNIO-1 task-2] IVY4Oe96StSBMc593nF_Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.674 [XNIO-1 task-2] IVY4Oe96StSBMc593nF_Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.682 [XNIO-1 task-2] 6RoW5vG8Td2k3YGZ0hQg_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.682 [XNIO-1 task-2] 6RoW5vG8Td2k3YGZ0hQg_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.682 [XNIO-1 task-2] 6RoW5vG8Td2k3YGZ0hQg_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.682 [XNIO-1 task-2] 6RoW5vG8Td2k3YGZ0hQg_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.688 [XNIO-1 task-2] 5KdIrhUvTJmxOs5a5mrcsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.688 [XNIO-1 task-2] 5KdIrhUvTJmxOs5a5mrcsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.688 [XNIO-1 task-2] 5KdIrhUvTJmxOs5a5mrcsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.696 [XNIO-1 task-2] idaQy21rRLOApJbGwm0VNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.696 [XNIO-1 task-2] idaQy21rRLOApJbGwm0VNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.697 [XNIO-1 task-2] idaQy21rRLOApJbGwm0VNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.697 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7be90f48 +09:12:49.697 [XNIO-1 task-2] idaQy21rRLOApJbGwm0VNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.707 [XNIO-1 task-2] XIrucQG7S1684yn0GTQQvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.708 [XNIO-1 task-2] XIrucQG7S1684yn0GTQQvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.708 [XNIO-1 task-2] XIrucQG7S1684yn0GTQQvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.708 [XNIO-1 task-2] XIrucQG7S1684yn0GTQQvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.709 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:799ed7e0 +09:12:49.714 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.714 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.714 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.715 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.715 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.715 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c560f7e4-1a9f-4d17-b6df-b6cea53517d4", {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:49.715 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "747d8da0", {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:49.715 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.715 [XNIO-1 task-2] 3zpQTZioRCqVq7d3WBeG5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.722 [XNIO-1 task-2] ebD4RUzNQM2Bij7y-MAMHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/47d41fdf +09:12:49.722 [XNIO-1 task-2] ebD4RUzNQM2Bij7y-MAMHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.722 [XNIO-1 task-2] ebD4RUzNQM2Bij7y-MAMHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.722 [XNIO-1 task-2] ebD4RUzNQM2Bij7y-MAMHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/47d41fdf +09:12:49.743 [XNIO-1 task-2] JmPG8aWlRniP5M6to9KMjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.744 [XNIO-1 task-2] JmPG8aWlRniP5M6to9KMjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.744 [XNIO-1 task-2] JmPG8aWlRniP5M6to9KMjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.744 [XNIO-1 task-2] JmPG8aWlRniP5M6to9KMjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.750 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "43167a1a-0da7-4a79-8c80-8f566673", {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:49.751 [XNIO-1 task-2] WYIYZ6gfTSSFkmJlaB0QqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"747d8da0","serviceName":"43167a1a-0da7-4a79-8c80-8f566673","serviceDesc":"c560f7e4-1a9f-4d17-b6df-b6cea53517d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.759 [XNIO-1 task-2] uqU_5sdhSiyVlK8LIgLuHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:49.759 [XNIO-1 task-2] uqU_5sdhSiyVlK8LIgLuHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.759 [XNIO-1 task-2] uqU_5sdhSiyVlK8LIgLuHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.759 [XNIO-1 task-2] uqU_5sdhSiyVlK8LIgLuHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50b0d213, base path is set to: null +09:12:49.759 [XNIO-1 task-2] uqU_5sdhSiyVlK8LIgLuHA DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0d213", "50b0d213", serviceId) +09:12:49.764 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "7e2ebf35-68fb-49ab-a166-321ee47f28cc", {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "bf4ee6a0", {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.765 [XNIO-1 task-2] PV8tL7qoQTCSfdbiRsY2Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf4ee6a0","serviceName":"b8d9261d-896e-4ecb-8db1-a450db23","serviceDesc":"7e2ebf35-68fb-49ab-a166-321ee47f28cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.765 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf4ee6a0 +09:12:49.772 [XNIO-1 task-2] 6tefW-hHR--OafZwBBOGsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:49.772 [XNIO-1 task-2] 6tefW-hHR--OafZwBBOGsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.773 [XNIO-1 task-2] 6tefW-hHR--OafZwBBOGsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.773 [XNIO-1 task-2] 6tefW-hHR--OafZwBBOGsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:49.776 [XNIO-1 task-2] YCggY-2tQmuXfyMsTKO6QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.776 [XNIO-1 task-2] YCggY-2tQmuXfyMsTKO6QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.776 [XNIO-1 task-2] YCggY-2tQmuXfyMsTKO6QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.776 [XNIO-1 task-2] YCggY-2tQmuXfyMsTKO6QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.777 [XNIO-1 task-2] YCggY-2tQmuXfyMsTKO6QA DEBUG com.networknt.schema.TypeValidator debug - validate( "10083cb0", "10083cb0", serviceId) +09:12:49.780 [XNIO-1 task-2] kuG0R2k1Tf6IHzBHMb5yMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.780 [XNIO-1 task-2] kuG0R2k1Tf6IHzBHMb5yMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.780 [XNIO-1 task-2] kuG0R2k1Tf6IHzBHMb5yMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.780 [XNIO-1 task-2] kuG0R2k1Tf6IHzBHMb5yMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.785 [XNIO-1 task-2] Y-15ksGaRR6g2jJ2nTj9XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.785 [XNIO-1 task-2] Y-15ksGaRR6g2jJ2nTj9XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.785 [XNIO-1 task-2] Y-15ksGaRR6g2jJ2nTj9XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.786 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6bad7303 +09:12:49.793 [XNIO-1 task-2] 3ZBNG5QsQIqzVjEMHMWEAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.793 [XNIO-1 task-2] 3ZBNG5QsQIqzVjEMHMWEAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.793 [XNIO-1 task-2] 3ZBNG5QsQIqzVjEMHMWEAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.793 [XNIO-1 task-2] 3ZBNG5QsQIqzVjEMHMWEAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.793 [XNIO-1 task-2] 3ZBNG5QsQIqzVjEMHMWEAg DEBUG com.networknt.schema.TypeValidator debug - validate( "10083cb0", "10083cb0", serviceId) +09:12:49.795 [XNIO-1 task-2] hRiGisD1Qz25mrDW1p0MGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.795 [XNIO-1 task-2] hRiGisD1Qz25mrDW1p0MGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.795 [XNIO-1 task-2] hRiGisD1Qz25mrDW1p0MGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.796 [XNIO-1 task-2] hRiGisD1Qz25mrDW1p0MGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.802 [XNIO-1 task-2] PTNqWZHIR2mUtpRFT1OlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/10083cb0 +09:12:49.803 [XNIO-1 task-2] PTNqWZHIR2mUtpRFT1OlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.803 [XNIO-1 task-2] PTNqWZHIR2mUtpRFT1OlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.803 [XNIO-1 task-2] PTNqWZHIR2mUtpRFT1OlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/10083cb0 +09:12:49.806 [XNIO-1 task-2] xUAar308STecpb5ds0UreA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.806 [XNIO-1 task-2] xUAar308STecpb5ds0UreA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.806 [XNIO-1 task-2] xUAar308STecpb5ds0UreA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.806 [XNIO-1 task-2] xUAar308STecpb5ds0UreA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.806 [XNIO-1 task-2] xUAar308STecpb5ds0UreA DEBUG com.networknt.schema.TypeValidator debug - validate( "10083cb0", "10083cb0", serviceId) +09:12:49.808 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.808 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.809 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.809 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.809 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.809 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aab62208-0bc2-4d24-a140-1ab895c9ef8c", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:49.809 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ef89fc11", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:49.809 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.809 [XNIO-1 task-2] 7u4S-2pzQwCyBmbzYfZ7yQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ef89fc11","serviceName":"a0f40495-b64c-4228-9e3d-d314c30f","serviceDesc":"aab62208-0bc2-4d24-a140-1ab895c9ef8c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.815 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.815 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.815 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.816 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.816 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.816 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "97f00ec3-9371-44f5-bec4-2911e5c4813f", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:49.816 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "10083cb0", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:49.816 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.816 [XNIO-1 task-2] lD-gMps2QZuxEczbZpunKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.816 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4fc3df71 +09:12:49.823 [XNIO-1 task-2] HkV5W2QhT7KjKfzCkbW1SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.823 [XNIO-1 task-2] HkV5W2QhT7KjKfzCkbW1SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.823 [XNIO-1 task-2] HkV5W2QhT7KjKfzCkbW1SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.829 [XNIO-1 task-2] ID15jHLEQ0CIxCYVh_yMlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4d606834, base path is set to: null +09:12:49.829 [XNIO-1 task-2] ID15jHLEQ0CIxCYVh_yMlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.830 [XNIO-1 task-2] ID15jHLEQ0CIxCYVh_yMlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.830 [XNIO-1 task-2] ID15jHLEQ0CIxCYVh_yMlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4d606834, base path is set to: null +09:12:49.830 [XNIO-1 task-2] ID15jHLEQ0CIxCYVh_yMlA DEBUG com.networknt.schema.TypeValidator debug - validate( "4d606834", "4d606834", serviceId) +09:12:49.836 [XNIO-1 task-2] NV9_Dq0NQpKxNLNZWBMQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f6e6cc96 +09:12:49.836 [XNIO-1 task-2] NV9_Dq0NQpKxNLNZWBMQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.836 [XNIO-1 task-2] NV9_Dq0NQpKxNLNZWBMQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.836 [XNIO-1 task-2] NV9_Dq0NQpKxNLNZWBMQHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f6e6cc96 +09:12:49.842 [XNIO-1 task-2] aFpIe2_eRhSrKQlthlwySA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.842 [XNIO-1 task-2] aFpIe2_eRhSrKQlthlwySA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.842 [XNIO-1 task-2] aFpIe2_eRhSrKQlthlwySA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.847 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da257e32 +09:12:49.848 [XNIO-1 task-2] YyFDYe1eQyiP2Ajmplf1Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.849 [XNIO-1 task-2] YyFDYe1eQyiP2Ajmplf1Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.849 [XNIO-1 task-2] YyFDYe1eQyiP2Ajmplf1Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.854 [XNIO-1 task-2] 7oX9JfySSVux02JL2tWRhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.854 [XNIO-1 task-2] 7oX9JfySSVux02JL2tWRhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.854 [XNIO-1 task-2] 7oX9JfySSVux02JL2tWRhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.854 [XNIO-1 task-2] 7oX9JfySSVux02JL2tWRhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.865 [XNIO-1 task-2] y0ygbXYsS26vnvIp9AxOyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.865 [XNIO-1 task-2] y0ygbXYsS26vnvIp9AxOyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.865 [XNIO-1 task-2] y0ygbXYsS26vnvIp9AxOyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.865 [XNIO-1 task-2] y0ygbXYsS26vnvIp9AxOyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.869 [XNIO-1 task-2] aKqFI4_6SnyHoBeI82BYUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.870 [XNIO-1 task-2] aKqFI4_6SnyHoBeI82BYUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.870 [XNIO-1 task-2] aKqFI4_6SnyHoBeI82BYUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.870 [XNIO-1 task-2] aKqFI4_6SnyHoBeI82BYUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.878 [XNIO-1 task-2] lSzm4hEaTEa86Vn-A3u13Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.878 [XNIO-1 task-2] lSzm4hEaTEa86Vn-A3u13Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.878 [XNIO-1 task-2] lSzm4hEaTEa86Vn-A3u13Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.878 [XNIO-1 task-2] lSzm4hEaTEa86Vn-A3u13Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/10083cb0, base path is set to: null +09:12:49.878 [XNIO-1 task-2] lSzm4hEaTEa86Vn-A3u13Q DEBUG com.networknt.schema.TypeValidator debug - validate( "10083cb0", "10083cb0", serviceId) +09:12:49.880 [XNIO-1 task-2] RcvfCxmYRdamiP-foEjMQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.880 [XNIO-1 task-2] RcvfCxmYRdamiP-foEjMQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.880 [XNIO-1 task-2] RcvfCxmYRdamiP-foEjMQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.885 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:da257e32 +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG com.networknt.schema.TypeValidator debug - validate( "97f00ec3-9371-44f5-bec4-2911e5c4813f", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG com.networknt.schema.TypeValidator debug - validate( "10083cb0", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.887 [XNIO-1 task-2] A8MXAxWQQr2nRWXxG9zd1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"10083cb0","serviceName":"f28c186f-b0c2-452d-b5f8-3edd6449","serviceDesc":"97f00ec3-9371-44f5-bec4-2911e5c4813f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.892 [XNIO-1 task-2] cAW51l7nQmmTIWa4R94MXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.892 [XNIO-1 task-2] cAW51l7nQmmTIWa4R94MXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.892 [XNIO-1 task-2] cAW51l7nQmmTIWa4R94MXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.897 [XNIO-1 task-2] AG1soQHxQ6KCowAtKz4amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/10083cb0 +09:12:49.897 [XNIO-1 task-2] AG1soQHxQ6KCowAtKz4amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.897 [XNIO-1 task-2] AG1soQHxQ6KCowAtKz4amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.897 [XNIO-1 task-2] AG1soQHxQ6KCowAtKz4amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/10083cb0 +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0abf4fb-410e-4c26-b627-665bc41c", {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:49.908 [XNIO-1 task-2] pztsOcukQAa2Kll_CFGEIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1a84bee5","serviceName":"c0abf4fb-410e-4c26-b627-665bc41c","serviceDesc":"0ca04a25-970e-4864-ba26-6ce397a51c7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.924 [XNIO-1 task-2] uVAyKYNmQ02yJracak71YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c11f3b8, base path is set to: null +09:12:49.924 [XNIO-1 task-2] uVAyKYNmQ02yJracak71YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.924 [XNIO-1 task-2] uVAyKYNmQ02yJracak71YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.924 [XNIO-1 task-2] uVAyKYNmQ02yJracak71YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c11f3b8, base path is set to: null +09:12:49.924 [XNIO-1 task-2] uVAyKYNmQ02yJracak71YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3c11f3b8", "3c11f3b8", serviceId) +09:12:49.933 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:79b8b0f7-7bd2-4524-864d-27524176c0a3 +09:12:49.934 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.934 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.934 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.935 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.935 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.935 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.935 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:49.935 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "171fd5c4-9645-447a-b3b5-79648536", {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:49.936 [XNIO-1 task-2] t8s6XnSxTmabLymnl-NqvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"07b9e229","serviceName":"171fd5c4-9645-447a-b3b5-79648536","serviceDesc":"6fa14268-0553-45c7-86d4-f13e7efbff7e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.937 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da257e32 +09:12:49.943 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4fc3df71 +09:12:49.947 [XNIO-1 task-2] _dgpTvafSoavFRd0g4Y_IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.947 [XNIO-1 task-2] _dgpTvafSoavFRd0g4Y_IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.948 [XNIO-1 task-2] _dgpTvafSoavFRd0g4Y_IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.951 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a55d3782-7372-43a7-beae-21f011740b59 +09:12:49.954 [XNIO-1 task-2] ycbn3LCLQMG5R-HuNq5x7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.954 [XNIO-1 task-2] ycbn3LCLQMG5R-HuNq5x7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.955 [XNIO-1 task-2] ycbn3LCLQMG5R-HuNq5x7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.955 [XNIO-1 task-2] ycbn3LCLQMG5R-HuNq5x7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.962 [XNIO-1 task-2] GNYJL15aTvSqWdmDS-l2VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.962 [XNIO-1 task-2] GNYJL15aTvSqWdmDS-l2VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.962 [XNIO-1 task-2] GNYJL15aTvSqWdmDS-l2VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:49.962 [XNIO-1 task-2] GNYJL15aTvSqWdmDS-l2VA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.962 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da257e32 +09:12:49.972 [XNIO-1 task-2] DWUCFRJETsKHOKMCvW3pKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf4ee6a0, base path is set to: null +09:12:49.972 [XNIO-1 task-2] DWUCFRJETsKHOKMCvW3pKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:49.972 [XNIO-1 task-2] DWUCFRJETsKHOKMCvW3pKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:49.972 [XNIO-1 task-2] DWUCFRJETsKHOKMCvW3pKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bf4ee6a0, base path is set to: null +09:12:49.972 [XNIO-1 task-2] DWUCFRJETsKHOKMCvW3pKw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf4ee6a0", "bf4ee6a0", serviceId) +09:12:49.973 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:bf4ee6a0 +09:12:49.978 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.978 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.979 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.979 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.979 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:49.979 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "84afac6c-da2c-486f-9e88-0052bb890843", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:49.979 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:49.979 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:49.979 [XNIO-1 task-2] K3mtbkbHShmK-5z485b2Sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:49.986 [XNIO-1 task-2] xRs64-ruTW2_Nq_Mx9xR4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.986 [XNIO-1 task-2] xRs64-ruTW2_Nq_Mx9xR4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.987 [XNIO-1 task-2] xRs64-ruTW2_Nq_Mx9xR4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.997 [XNIO-1 task-2] MWKf_xAfRT2cgFeWx-1CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93f40b9f +09:12:49.997 [XNIO-1 task-2] MWKf_xAfRT2cgFeWx-1CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:49.997 [XNIO-1 task-2] MWKf_xAfRT2cgFeWx-1CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:49.997 [XNIO-1 task-2] MWKf_xAfRT2cgFeWx-1CIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93f40b9f +09:12:50.007 [XNIO-1 task-2] 8-BbM0z9TiqP4krwjhuVPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60ec1e6a, base path is set to: null +09:12:50.007 [XNIO-1 task-2] 8-BbM0z9TiqP4krwjhuVPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.007 [XNIO-1 task-2] 8-BbM0z9TiqP4krwjhuVPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.007 [XNIO-1 task-2] 8-BbM0z9TiqP4krwjhuVPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60ec1e6a, base path is set to: null +09:12:50.007 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da257e32 +09:12:50.007 [XNIO-1 task-2] 8-BbM0z9TiqP4krwjhuVPA DEBUG com.networknt.schema.TypeValidator debug - validate( "60ec1e6a", "60ec1e6a", serviceId) +09:12:50.009 [XNIO-1 task-2] QNp4zAKyRw6qfxxVs1jrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/60ec1e6a +09:12:50.009 [XNIO-1 task-2] QNp4zAKyRw6qfxxVs1jrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.009 [XNIO-1 task-2] QNp4zAKyRw6qfxxVs1jrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.009 [XNIO-1 task-2] QNp4zAKyRw6qfxxVs1jrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/60ec1e6a +09:12:50.011 [XNIO-1 task-2] 9LR2aCVsTAacVR1aESuLoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.011 [XNIO-1 task-2] 9LR2aCVsTAacVR1aESuLoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.011 [XNIO-1 task-2] 9LR2aCVsTAacVR1aESuLoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.011 [XNIO-1 task-2] 9LR2aCVsTAacVR1aESuLoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.014 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a55d3782-7372-43a7-beae-21f011740b59 +09:12:50.019 [XNIO-1 task-2] 6onW6pJvRnqRL6dTZ3PlrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88679997 +09:12:50.019 [XNIO-1 task-2] 6onW6pJvRnqRL6dTZ3PlrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.019 [XNIO-1 task-2] 6onW6pJvRnqRL6dTZ3PlrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.019 [XNIO-1 task-2] 6onW6pJvRnqRL6dTZ3PlrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88679997 +09:12:50.026 [XNIO-1 task-2] g8pAFBrrQEOBNp6Y7z_tPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.026 [XNIO-1 task-2] g8pAFBrrQEOBNp6Y7z_tPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.026 [XNIO-1 task-2] g8pAFBrrQEOBNp6Y7z_tPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.026 [XNIO-1 task-2] g8pAFBrrQEOBNp6Y7z_tPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.032 [XNIO-1 task-2] hhMvz_HjQqqy9Ps12siojw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.032 [XNIO-1 task-2] hhMvz_HjQqqy9Ps12siojw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.032 [XNIO-1 task-2] hhMvz_HjQqqy9Ps12siojw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.046 [XNIO-1 task-2] EZUXoA1QSTe0gGD1fDcmHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.046 [XNIO-1 task-2] EZUXoA1QSTe0gGD1fDcmHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.046 [XNIO-1 task-2] EZUXoA1QSTe0gGD1fDcmHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.046 [XNIO-1 task-2] EZUXoA1QSTe0gGD1fDcmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.055 [XNIO-1 task-2] gFMb3FOYT5KbaF0d_cwdWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60ec1e6a, base path is set to: null +09:12:50.055 [XNIO-1 task-2] gFMb3FOYT5KbaF0d_cwdWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.055 [XNIO-1 task-2] gFMb3FOYT5KbaF0d_cwdWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.056 [XNIO-1 task-2] gFMb3FOYT5KbaF0d_cwdWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60ec1e6a, base path is set to: null +09:12:50.056 [XNIO-1 task-2] gFMb3FOYT5KbaF0d_cwdWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60ec1e6a", "60ec1e6a", serviceId) +09:12:50.059 [XNIO-1 task-2] tbCCK8hfT7qgD15m7n6qDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/60ec1e6a +09:12:50.059 [XNIO-1 task-2] tbCCK8hfT7qgD15m7n6qDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.059 [XNIO-1 task-2] tbCCK8hfT7qgD15m7n6qDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.059 [XNIO-1 task-2] tbCCK8hfT7qgD15m7n6qDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/60ec1e6a +09:12:50.061 [XNIO-1 task-2] lGurtI8GRwSU6bYjMitWLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60ec1e6a, base path is set to: null +09:12:50.061 [XNIO-1 task-2] lGurtI8GRwSU6bYjMitWLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.061 [XNIO-1 task-2] lGurtI8GRwSU6bYjMitWLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.061 [XNIO-1 task-2] lGurtI8GRwSU6bYjMitWLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/60ec1e6a, base path is set to: null +09:12:50.061 [XNIO-1 task-2] lGurtI8GRwSU6bYjMitWLw DEBUG com.networknt.schema.TypeValidator debug - validate( "60ec1e6a", "60ec1e6a", serviceId) +09:12:50.062 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:60ec1e6a +09:12:50.070 [XNIO-1 task-2] tMpyFNltTByatS2-s-RZzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/747d8da0 +09:12:50.070 [XNIO-1 task-2] tMpyFNltTByatS2-s-RZzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.070 [XNIO-1 task-2] tMpyFNltTByatS2-s-RZzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.070 [XNIO-1 task-2] tMpyFNltTByatS2-s-RZzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/747d8da0 +09:12:50.081 [XNIO-1 task-2] 92NzQkPgT-aga-8CQSDNCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99eab71b, base path is set to: null +09:12:50.081 [XNIO-1 task-2] 92NzQkPgT-aga-8CQSDNCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.081 [XNIO-1 task-2] 92NzQkPgT-aga-8CQSDNCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.081 [XNIO-1 task-2] 92NzQkPgT-aga-8CQSDNCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99eab71b, base path is set to: null +09:12:50.082 [XNIO-1 task-2] 92NzQkPgT-aga-8CQSDNCA DEBUG com.networknt.schema.TypeValidator debug - validate( "99eab71b", "99eab71b", serviceId) +09:12:50.087 [XNIO-1 task-2] edmTth10RNep_EkamfweDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/242457a8, base path is set to: null +09:12:50.087 [XNIO-1 task-2] edmTth10RNep_EkamfweDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.088 [XNIO-1 task-2] edmTth10RNep_EkamfweDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.088 [XNIO-1 task-2] edmTth10RNep_EkamfweDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/242457a8, base path is set to: null +09:12:50.088 [XNIO-1 task-2] edmTth10RNep_EkamfweDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "242457a8", "242457a8", serviceId) +09:12:50.091 [XNIO-1 task-2] byd0tNZDR_GZ3vUU8FdaVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.091 [XNIO-1 task-2] byd0tNZDR_GZ3vUU8FdaVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.091 [XNIO-1 task-2] byd0tNZDR_GZ3vUU8FdaVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.092 [XNIO-1 task-2] byd0tNZDR_GZ3vUU8FdaVw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.102 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d5953aac-7e25-42d8-8bb2-b331aa725453 +09:12:50.105 [XNIO-1 task-2] kam_o4uUQpizv6ANrsTsCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.105 [XNIO-1 task-2] kam_o4uUQpizv6ANrsTsCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.106 [XNIO-1 task-2] kam_o4uUQpizv6ANrsTsCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.106 [XNIO-1 task-2] kam_o4uUQpizv6ANrsTsCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.106 [XNIO-1 task-2] kam_o4uUQpizv6ANrsTsCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9ce5f624", "9ce5f624", serviceId) +09:12:50.113 [XNIO-1 task-2] H44BqVbXR-qoCsXZhALvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.114 [XNIO-1 task-2] H44BqVbXR-qoCsXZhALvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.114 [XNIO-1 task-2] H44BqVbXR-qoCsXZhALvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.114 [XNIO-1 task-2] H44BqVbXR-qoCsXZhALvEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.128 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.128 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.129 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.129 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.129 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.129 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd643195-fa1a-42d9-bc31-521330a93bfe", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.129 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d2fdb5b8", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.129 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.129 [XNIO-1 task-2] pnE61cfiTkamKlEY9XDpHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.133 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7be90f48 +09:12:50.135 [XNIO-1 task-2] 8oGli4bARciLPve7RbmZAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.135 [XNIO-1 task-2] 8oGli4bARciLPve7RbmZAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.135 [XNIO-1 task-2] 8oGli4bARciLPve7RbmZAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.135 [XNIO-1 task-2] 8oGli4bARciLPve7RbmZAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.146 [XNIO-1 task-2] bX9cWYYBQGGTnTZeBzsFUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac79013 +09:12:50.147 [XNIO-1 task-2] bX9cWYYBQGGTnTZeBzsFUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.147 [XNIO-1 task-2] bX9cWYYBQGGTnTZeBzsFUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.147 [XNIO-1 task-2] bX9cWYYBQGGTnTZeBzsFUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac79013 +09:12:50.149 [XNIO-1 task-2] VPlqI-8GSI-9nNqTfXt5fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ef89fc11, base path is set to: null +09:12:50.149 [XNIO-1 task-2] VPlqI-8GSI-9nNqTfXt5fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.149 [XNIO-1 task-2] VPlqI-8GSI-9nNqTfXt5fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.149 [XNIO-1 task-2] VPlqI-8GSI-9nNqTfXt5fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ef89fc11, base path is set to: null +09:12:50.149 [XNIO-1 task-2] VPlqI-8GSI-9nNqTfXt5fA DEBUG com.networknt.schema.TypeValidator debug - validate( "ef89fc11", "ef89fc11", serviceId) +09:12:50.156 [XNIO-1 task-2] -pfqNFmUS4CebKcTO6KFzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ce5f624 +09:12:50.156 [XNIO-1 task-2] -pfqNFmUS4CebKcTO6KFzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.156 [XNIO-1 task-2] -pfqNFmUS4CebKcTO6KFzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.156 [XNIO-1 task-2] -pfqNFmUS4CebKcTO6KFzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ce5f624 +09:12:50.159 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9eebf92b-b71e-4c8b-af6e-6da46fe14d08 +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.160 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9eebf92b-b71e-4c8b-af6e-6da46fe14d08 +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG com.networknt.schema.TypeValidator debug - validate( "bd643195-fa1a-42d9-bc31-521330a93bfe", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG com.networknt.schema.TypeValidator debug - validate( "d2fdb5b8", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.160 [XNIO-1 task-2] l_UgmcrsTp-sEjNVQ1LF9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.168 [XNIO-1 task-2] uluO6JgpTayVCY8BhaNbMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac79013 +09:12:50.168 [XNIO-1 task-2] uluO6JgpTayVCY8BhaNbMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.168 [XNIO-1 task-2] uluO6JgpTayVCY8BhaNbMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.168 [XNIO-1 task-2] uluO6JgpTayVCY8BhaNbMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac79013 +09:12:50.193 [XNIO-1 task-2] WXJJLmWzTcGT76qMCq0raQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.193 [XNIO-1 task-2] WXJJLmWzTcGT76qMCq0raQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.193 [XNIO-1 task-2] WXJJLmWzTcGT76qMCq0raQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.193 [XNIO-1 task-2] WXJJLmWzTcGT76qMCq0raQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.199 [XNIO-1 task-2] hzFOy4KlRwqDaEofahj4iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.199 [XNIO-1 task-2] hzFOy4KlRwqDaEofahj4iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.199 [XNIO-1 task-2] hzFOy4KlRwqDaEofahj4iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG com.networknt.schema.TypeValidator debug - validate( "d15fbdb1-c920-48bb-b2f2-247c1f2c", {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.205 [XNIO-1 task-2] 8mLnrtoARFWKTsokii_PTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.216 [XNIO-1 task-2] GsCUHIdASTqHvNQ3arJmfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b91214c, base path is set to: null +09:12:50.216 [XNIO-1 task-2] GsCUHIdASTqHvNQ3arJmfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.216 [XNIO-1 task-2] GsCUHIdASTqHvNQ3arJmfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.216 [XNIO-1 task-2] GsCUHIdASTqHvNQ3arJmfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b91214c, base path is set to: null +09:12:50.217 [XNIO-1 task-2] GsCUHIdASTqHvNQ3arJmfw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b91214c", "6b91214c", serviceId) +09:12:50.223 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.223 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.223 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.224 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.224 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.224 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG com.networknt.schema.TypeValidator debug - validate( "c3665c20-50b3-4602-9322-16125339aaa6", {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.224 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG com.networknt.schema.TypeValidator debug - validate( "6bad7303", {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.224 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.224 [XNIO-1 task-2] XhwyNrNQTNCteou8M4Tc4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.224 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6bad7303 +09:12:50.233 [XNIO-1 task-2] d7C0gEq7RNO7szx-12wSNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.233 [XNIO-1 task-2] d7C0gEq7RNO7szx-12wSNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.233 [XNIO-1 task-2] d7C0gEq7RNO7szx-12wSNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.241 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "d1cba573-1e49-4a6a-a8dd-e733cc8248cc", {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "75503a6f-dcf7-4ac5-9fdd-c6e1496d", {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.242 [XNIO-1 task-2] 8igFpoLwTZGf1leoLgI6Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"242457a8","serviceName":"75503a6f-dcf7-4ac5-9fdd-c6e1496d","serviceDesc":"d1cba573-1e49-4a6a-a8dd-e733cc8248cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.245 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:51680e19-176e-4ef2-b14d-7b34d1313945 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:12:50.269 [XNIO-1 task-2] yWFbUmuMQ6WIjfqTQLw8Iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.269 [XNIO-1 task-2] yWFbUmuMQ6WIjfqTQLw8Iw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.269 [XNIO-1 task-2] yWFbUmuMQ6WIjfqTQLw8Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:12:50.269 [XNIO-1 task-2] yWFbUmuMQ6WIjfqTQLw8Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.269 [XNIO-1 task-2] yWFbUmuMQ6WIjfqTQLw8Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb04eac9-3ffb-44c2-86e5-8d29ffc9", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.269 [XNIO-1 task-2] yWFbUmuMQ6WIjfqTQLw8Iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.278 [XNIO-1 task-2] WS5xlLb6T1C3-euKvBYd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.278 [XNIO-1 task-2] WS5xlLb6T1C3-euKvBYd0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.278 [XNIO-1 task-2] WS5xlLb6T1C3-euKvBYd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.288 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG com.networknt.schema.TypeValidator debug - validate( "fb04eac9-3ffb-44c2-86e5-8d29ffc9", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.289 [XNIO-1 task-2] Rkvjdd3hRKiZXTP6o19A2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.295 [XNIO-1 task-2] _cZL-KU3SrSnckqneM883g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.295 [XNIO-1 task-2] _cZL-KU3SrSnckqneM883g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.295 [XNIO-1 task-2] _cZL-KU3SrSnckqneM883g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.295 [XNIO-1 task-2] _cZL-KU3SrSnckqneM883g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.296 [XNIO-1 task-2] _cZL-KU3SrSnckqneM883g DEBUG com.networknt.schema.TypeValidator debug - validate( "9ce5f624", "9ce5f624", serviceId) +09:12:50.301 [XNIO-1 task-2] tq2f1UNEQPe1MF2LVPYZRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ce5f624 +09:12:50.301 [XNIO-1 task-2] tq2f1UNEQPe1MF2LVPYZRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.301 [XNIO-1 task-2] tq2f1UNEQPe1MF2LVPYZRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.301 [XNIO-1 task-2] tq2f1UNEQPe1MF2LVPYZRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ce5f624 +09:12:50.303 [XNIO-1 task-2] -peDuigRRvqltwH4CAlTdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/242457a8, base path is set to: null +09:12:50.303 [XNIO-1 task-2] -peDuigRRvqltwH4CAlTdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.303 [XNIO-1 task-2] -peDuigRRvqltwH4CAlTdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.303 [XNIO-1 task-2] -peDuigRRvqltwH4CAlTdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/242457a8, base path is set to: null +09:12:50.303 [XNIO-1 task-2] -peDuigRRvqltwH4CAlTdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "242457a8", "242457a8", serviceId) +09:12:50.311 [XNIO-1 task-2] F07otQl_Ti6rZvrJ9GbTnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ce5f624 +09:12:50.311 [XNIO-1 task-2] F07otQl_Ti6rZvrJ9GbTnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.311 [XNIO-1 task-2] F07otQl_Ti6rZvrJ9GbTnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.311 [XNIO-1 task-2] F07otQl_Ti6rZvrJ9GbTnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ce5f624 +09:12:50.313 [XNIO-1 task-2] -p4CDEHGT9OZraOgqhpoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.313 [XNIO-1 task-2] -p4CDEHGT9OZraOgqhpoGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.313 [XNIO-1 task-2] -p4CDEHGT9OZraOgqhpoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.313 [XNIO-1 task-2] -p4CDEHGT9OZraOgqhpoGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.371 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.371 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.372 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.372 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.372 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.372 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.372 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.372 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da23f131-a481-47ff-984b-a8dbbd83", {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.372 [XNIO-1 task-2] zpGtXpg0SO6O0c84EE3-zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d2fdb5b8","serviceName":"da23f131-a481-47ff-984b-a8dbbd83","serviceDesc":"bd643195-fa1a-42d9-bc31-521330a93bfe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.382 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:20b7a6ae-a5e3-47cf-82d6-76ebc05b2485 +09:12:50.385 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:da257e32 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9269ed93-e81f-43fc-9bb0-fc6e5a5c", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.394 [XNIO-1 task-2] Eh4oykp5S1ui89tLVK_kNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.403 [XNIO-1 task-2] q2AhQw-fTAeLvrHPLc4xcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.403 [XNIO-1 task-2] q2AhQw-fTAeLvrHPLc4xcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.404 [XNIO-1 task-2] q2AhQw-fTAeLvrHPLc4xcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.404 [XNIO-1 task-2] q2AhQw-fTAeLvrHPLc4xcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG com.networknt.schema.TypeValidator debug - validate( "d15fbdb1-c920-48bb-b2f2-247c1f2c", {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.412 [XNIO-1 task-2] 2tyK701BS5i6EgjYkoHZxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ce5f624","serviceName":"d15fbdb1-c920-48bb-b2f2-247c1f2c","serviceDesc":"f25e9bda-913c-4fd1-8ce7-fa605d484fc8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.427 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.427 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.427 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.427 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.427 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.427 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.428 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.428 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG com.networknt.schema.TypeValidator debug - validate( "46e4b7d1-72d7-407c-94be-d4247d69", {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.428 [XNIO-1 task-2] yQH6DcmyRM-1ih2cU_RiGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6bad7303","serviceName":"46e4b7d1-72d7-407c-94be-d4247d69","serviceDesc":"c3665c20-50b3-4602-9322-16125339aaa6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.428 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6bad7303 +09:12:50.434 [XNIO-1 task-2] kisZoSCRR565NafRFueljw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5680bbe7, base path is set to: null +09:12:50.435 [XNIO-1 task-2] kisZoSCRR565NafRFueljw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.435 [XNIO-1 task-2] kisZoSCRR565NafRFueljw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.435 [XNIO-1 task-2] kisZoSCRR565NafRFueljw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5680bbe7, base path is set to: null +09:12:50.435 [XNIO-1 task-2] kisZoSCRR565NafRFueljw DEBUG com.networknt.schema.TypeValidator debug - validate( "5680bbe7", "5680bbe7", serviceId) +09:12:50.439 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ccbbd51f +09:12:50.469 [XNIO-1 task-2] cmkjaOc4Rx-zoQHv3CoJHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bad7303, base path is set to: null +09:12:50.470 [XNIO-1 task-2] cmkjaOc4Rx-zoQHv3CoJHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.470 [XNIO-1 task-2] cmkjaOc4Rx-zoQHv3CoJHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.470 [XNIO-1 task-2] cmkjaOc4Rx-zoQHv3CoJHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6bad7303, base path is set to: null +09:12:50.470 [XNIO-1 task-2] cmkjaOc4Rx-zoQHv3CoJHg DEBUG com.networknt.schema.TypeValidator debug - validate( "6bad7303", "6bad7303", serviceId) +09:12:50.471 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6bad7303 +09:12:50.523 [XNIO-1 task-2] NAda1hGbRnKu6RdDpOlvcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.523 [XNIO-1 task-2] NAda1hGbRnKu6RdDpOlvcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.523 [XNIO-1 task-2] NAda1hGbRnKu6RdDpOlvcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.524 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4100d94f +09:12:50.533 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.533 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.533 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.534 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.534 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.534 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.534 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.534 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG com.networknt.schema.TypeValidator debug - validate( "a91a0a24-268d-44a4-b3e1-c8bdfe62", {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.534 [XNIO-1 task-2] F3wsyc-vTtmJOSHTz1GW5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"69e75a4e","serviceName":"a91a0a24-268d-44a4-b3e1-c8bdfe62","serviceDesc":"75362c2d-fc5b-4bd1-8d1c-22848183b4a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.546 [XNIO-1 task-2] QZyr224MQaqkydCTGvdEdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1a84bee5, base path is set to: null +09:12:50.546 [XNIO-1 task-2] QZyr224MQaqkydCTGvdEdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.546 [XNIO-1 task-2] QZyr224MQaqkydCTGvdEdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.546 [XNIO-1 task-2] QZyr224MQaqkydCTGvdEdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1a84bee5, base path is set to: null +09:12:50.547 [XNIO-1 task-2] QZyr224MQaqkydCTGvdEdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1a84bee5", "1a84bee5", serviceId) +09:12:50.571 [XNIO-1 task-2] lOW3eLhhSXew2HoTic0nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:50.571 [XNIO-1 task-2] lOW3eLhhSXew2HoTic0nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.571 [XNIO-1 task-2] lOW3eLhhSXew2HoTic0nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.572 [XNIO-1 task-2] lOW3eLhhSXew2HoTic0nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:50.576 [XNIO-1 task-2] lIBC8BoLRGOQH3ZWIRiApA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d76c24d5, base path is set to: null +09:12:50.576 [XNIO-1 task-2] lIBC8BoLRGOQH3ZWIRiApA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.576 [XNIO-1 task-2] lIBC8BoLRGOQH3ZWIRiApA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.576 [XNIO-1 task-2] lIBC8BoLRGOQH3ZWIRiApA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d76c24d5, base path is set to: null +09:12:50.576 [XNIO-1 task-2] lIBC8BoLRGOQH3ZWIRiApA DEBUG com.networknt.schema.TypeValidator debug - validate( "d76c24d5", "d76c24d5", serviceId) +09:12:50.587 [XNIO-1 task-2] jZP0taT7Qhqc25qNWHL6nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4100d94f, base path is set to: null +09:12:50.587 [XNIO-1 task-2] jZP0taT7Qhqc25qNWHL6nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.587 [XNIO-1 task-2] jZP0taT7Qhqc25qNWHL6nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.587 [XNIO-1 task-2] jZP0taT7Qhqc25qNWHL6nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4100d94f, base path is set to: null +09:12:50.587 [XNIO-1 task-2] jZP0taT7Qhqc25qNWHL6nA DEBUG com.networknt.schema.TypeValidator debug - validate( "4100d94f", "4100d94f", serviceId) +09:12:50.589 [XNIO-1 task-2] DzFYwdQURAOSo9rbCQmkDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:50.589 [XNIO-1 task-2] DzFYwdQURAOSo9rbCQmkDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.589 [XNIO-1 task-2] DzFYwdQURAOSo9rbCQmkDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.589 [XNIO-1 task-2] DzFYwdQURAOSo9rbCQmkDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07b9e229 +09:12:50.592 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7be90f48 +09:12:50.596 [XNIO-1 task-2] yX-edDDiTfyJcS1RTjoS-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.596 [XNIO-1 task-2] yX-edDDiTfyJcS1RTjoS-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.596 [XNIO-1 task-2] yX-edDDiTfyJcS1RTjoS-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.596 [XNIO-1 task-2] yX-edDDiTfyJcS1RTjoS-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.602 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ccbbd51f +09:12:50.628 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ccbbd51f +09:12:50.648 [XNIO-1 task-2] dMwOUc8_RZaBMLSK810ZhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4100d94f +09:12:50.648 [XNIO-1 task-2] dMwOUc8_RZaBMLSK810ZhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.648 [XNIO-1 task-2] dMwOUc8_RZaBMLSK810ZhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.648 [XNIO-1 task-2] dMwOUc8_RZaBMLSK810ZhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4100d94f +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "165e177f-e212-4513-8350-88d9caac", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.652 [XNIO-1 task-2] NpkppYsCQZans5DaYNsuyQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.661 [XNIO-1 task-2] k_vLxbxgTzCBGYtoNF2_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.661 [XNIO-1 task-2] k_vLxbxgTzCBGYtoNF2_PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.661 [XNIO-1 task-2] k_vLxbxgTzCBGYtoNF2_PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.661 [XNIO-1 task-2] k_vLxbxgTzCBGYtoNF2_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.661 [XNIO-1 task-2] k_vLxbxgTzCBGYtoNF2_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "9ce5f624", "9ce5f624", serviceId) +09:12:50.668 [XNIO-1 task-2] kIg_FcTDRE-ltHPTnQS45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.668 [XNIO-1 task-2] kIg_FcTDRE-ltHPTnQS45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.668 [XNIO-1 task-2] kIg_FcTDRE-ltHPTnQS45Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.677 [XNIO-1 task-2] wQLN0TMrROCb8V7yBPkQ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.677 [XNIO-1 task-2] wQLN0TMrROCb8V7yBPkQ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.677 [XNIO-1 task-2] wQLN0TMrROCb8V7yBPkQ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.678 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:093a97af +09:12:50.684 [XNIO-1 task-2] Dh4sJ7SlTgK4HW2BUMRPoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.684 [XNIO-1 task-2] Dh4sJ7SlTgK4HW2BUMRPoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.684 [XNIO-1 task-2] Dh4sJ7SlTgK4HW2BUMRPoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.684 [XNIO-1 task-2] Dh4sJ7SlTgK4HW2BUMRPoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ce5f624, base path is set to: null +09:12:50.684 [XNIO-1 task-2] Dh4sJ7SlTgK4HW2BUMRPoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9ce5f624", "9ce5f624", serviceId) +09:12:50.692 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ccbbd51f +09:12:50.693 [XNIO-1 task-2] -46O79LyRsOeo6txsH83Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.693 [XNIO-1 task-2] -46O79LyRsOeo6txsH83Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.693 [XNIO-1 task-2] -46O79LyRsOeo6txsH83Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/093a97af, base path is set to: null +09:12:50.693 [XNIO-1 task-2] -46O79LyRsOeo6txsH83Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "093a97af", "093a97af", serviceId) +09:12:50.698 [XNIO-1 task-2] L-R-exLyRByrDE1b3v3fHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.698 [XNIO-1 task-2] L-R-exLyRByrDE1b3v3fHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.698 [XNIO-1 task-2] L-R-exLyRByrDE1b3v3fHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.705 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4ecfc181-c29c-47e5-8e32-a15164498709 +09:12:50.709 [XNIO-1 task-2] _iRck4P4Rma3QQhpCK14sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/093a97af, base path is set to: null +09:12:50.709 [XNIO-1 task-2] _iRck4P4Rma3QQhpCK14sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.709 [XNIO-1 task-2] _iRck4P4Rma3QQhpCK14sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.709 [XNIO-1 task-2] _iRck4P4Rma3QQhpCK14sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/093a97af, base path is set to: null +09:12:50.709 [XNIO-1 task-2] _iRck4P4Rma3QQhpCK14sA DEBUG com.networknt.schema.TypeValidator debug - validate( "093a97af", "093a97af", serviceId) +09:12:50.711 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.711 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.711 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.711 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.711 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.712 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG com.networknt.schema.TypeValidator debug - validate( "ea7c32d9-7efb-4d29-bec3-afa48c5cc78f", {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.712 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG com.networknt.schema.TypeValidator debug - validate( "093a97af", {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.712 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.712 [XNIO-1 task-2] JnbqVebfSxK_8iLE82ii3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"093a97af","serviceName":"0f18a91d-377b-452f-8494-7390d2a3","serviceDesc":"ea7c32d9-7efb-4d29-bec3-afa48c5cc78f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.712 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:093a97af +09:12:50.717 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.717 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.717 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.717 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.717 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.717 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "41862410-9499-4436-af3d-c2e7c2b025b2", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.718 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4100d94f", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.718 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.718 [XNIO-1 task-2] WrFS33T1S92GEmvUXUdSqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.718 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4100d94f +09:12:50.722 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:67d4731c-1f60-460d-b71c-188ab71d315d +09:12:50.728 [XNIO-1 task-2] fq7iJ8HfQUOtwRkqNAXYhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d2fdb5b8, base path is set to: null +09:12:50.728 [XNIO-1 task-2] fq7iJ8HfQUOtwRkqNAXYhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.728 [XNIO-1 task-2] fq7iJ8HfQUOtwRkqNAXYhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.729 [XNIO-1 task-2] fq7iJ8HfQUOtwRkqNAXYhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d2fdb5b8, base path is set to: null +09:12:50.729 [XNIO-1 task-2] fq7iJ8HfQUOtwRkqNAXYhw DEBUG com.networknt.schema.TypeValidator debug - validate( "d2fdb5b8", "d2fdb5b8", serviceId) +09:12:50.734 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.734 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.734 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.735 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.735 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.735 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG com.networknt.schema.TypeValidator debug - validate( "9187523f-1392-442b-9b19-7ecf9cba11b7", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.735 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG com.networknt.schema.TypeValidator debug - validate( "b89fb055", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.735 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.735 [XNIO-1 task-2] n3LUUloGS226IEsJRIR25g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.745 [XNIO-1 task-2] sPDFCk4_ReyiAavpg4BQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:50.745 [XNIO-1 task-2] sPDFCk4_ReyiAavpg4BQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.745 [XNIO-1 task-2] sPDFCk4_ReyiAavpg4BQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.746 [XNIO-1 task-2] sPDFCk4_ReyiAavpg4BQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:50.750 [XNIO-1 task-2] 4Ad8FFp0QRS9p75fxFC69A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4100d94f, base path is set to: null +09:12:50.750 [XNIO-1 task-2] 4Ad8FFp0QRS9p75fxFC69A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.750 [XNIO-1 task-2] 4Ad8FFp0QRS9p75fxFC69A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.750 [XNIO-1 task-2] 4Ad8FFp0QRS9p75fxFC69A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4100d94f, base path is set to: null +09:12:50.750 [XNIO-1 task-2] 4Ad8FFp0QRS9p75fxFC69A DEBUG com.networknt.schema.TypeValidator debug - validate( "4100d94f", "4100d94f", serviceId) +09:12:50.756 [XNIO-1 task-2] Ls-Jz3uSTayuM7qO1uY7Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e5b5ac88 +09:12:50.756 [XNIO-1 task-2] Ls-Jz3uSTayuM7qO1uY7Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.756 [XNIO-1 task-2] Ls-Jz3uSTayuM7qO1uY7Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.756 [XNIO-1 task-2] Ls-Jz3uSTayuM7qO1uY7Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e5b5ac88 +09:12:50.762 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.762 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.762 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.762 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.762 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.762 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.763 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.763 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb04eac9-3ffb-44c2-86e5-8d29ffc9", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.763 [XNIO-1 task-2] h_Z9eqmdQ_yv_LX5ElVEsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.768 [XNIO-1 task-2] E12mUmm7Rb-qped931_6Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b5ac88, base path is set to: null +09:12:50.768 [XNIO-1 task-2] E12mUmm7Rb-qped931_6Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.768 [XNIO-1 task-2] E12mUmm7Rb-qped931_6Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.768 [XNIO-1 task-2] E12mUmm7Rb-qped931_6Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b5ac88, base path is set to: null +09:12:50.768 [XNIO-1 task-2] E12mUmm7Rb-qped931_6Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5b5ac88", "e5b5ac88", serviceId) +09:12:50.769 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.771 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.771 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.771 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.771 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.771 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.772 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG com.networknt.schema.TypeValidator debug - validate( "283aecc7-ec98-44f6-be66-515ec01cc4b2", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.772 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG com.networknt.schema.TypeValidator debug - validate( "3e5a4238", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.772 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.772 [XNIO-1 task-2] wAVnROlsTRi0dcnjXg4m-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.781 [XNIO-1 task-2] EGz3AVSFRV67-gKdlo7Ddw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.781 [XNIO-1 task-2] EGz3AVSFRV67-gKdlo7Ddw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.781 [XNIO-1 task-2] EGz3AVSFRV67-gKdlo7Ddw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.782 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:358fff72 +09:12:50.789 [XNIO-1 task-2] m1hg53InSU69zTgHnKMCQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b5ac88, base path is set to: null +09:12:50.789 [XNIO-1 task-2] m1hg53InSU69zTgHnKMCQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.789 [XNIO-1 task-2] m1hg53InSU69zTgHnKMCQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.790 [XNIO-1 task-2] m1hg53InSU69zTgHnKMCQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b5ac88, base path is set to: null +09:12:50.790 [XNIO-1 task-2] m1hg53InSU69zTgHnKMCQA DEBUG com.networknt.schema.TypeValidator debug - validate( "e5b5ac88", "e5b5ac88", serviceId) +09:12:50.795 [XNIO-1 task-2] m6wTIOi5TySGk4gGJIuryw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.795 [XNIO-1 task-2] m6wTIOi5TySGk4gGJIuryw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.795 [XNIO-1 task-2] m6wTIOi5TySGk4gGJIuryw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.795 [XNIO-1 task-2] m6wTIOi5TySGk4gGJIuryw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.806 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.806 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.806 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.807 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.807 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.807 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG com.networknt.schema.TypeValidator debug - validate( "89434024-7d09-41f6-8bc0-4f93011f2093", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.807 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG com.networknt.schema.TypeValidator debug - validate( "e5b5ac88", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.807 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.807 [XNIO-1 task-2] WaMoWkNlTVyHVM8M_glKjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e5b5ac88","serviceName":"fb04eac9-3ffb-44c2-86e5-8d29ffc9","serviceDesc":"89434024-7d09-41f6-8bc0-4f93011f2093","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.818 [XNIO-1 task-2] sPWiEHMjQGGJtxUUkjiU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.818 [XNIO-1 task-2] sPWiEHMjQGGJtxUUkjiU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.818 [XNIO-1 task-2] sPWiEHMjQGGJtxUUkjiU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.818 [XNIO-1 task-2] sPWiEHMjQGGJtxUUkjiU2g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.824 [XNIO-1 task-2] lUNpISBFTbOUrgzrB2D0SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.825 [XNIO-1 task-2] lUNpISBFTbOUrgzrB2D0SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.825 [XNIO-1 task-2] lUNpISBFTbOUrgzrB2D0SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.832 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0efd841c +09:12:50.839 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:50.842 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.842 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.842 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.842 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.842 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.842 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG com.networknt.schema.TypeValidator debug - validate( "84afac6c-da2c-486f-9e88-0052bb890843", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.842 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.843 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.843 [XNIO-1 task-2] bpAZQ7RuRsisbAtDwCVfcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.854 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.854 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.854 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.854 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.854 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.855 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG com.networknt.schema.TypeValidator debug - validate( "5c4b1133-448b-4a00-8634-212b58d983d4", {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.855 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG com.networknt.schema.TypeValidator debug - validate( "358fff72", {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.855 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.855 [XNIO-1 task-2] XDvLULv0QaeJhjvtIwpQYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"358fff72","serviceName":"bae5b424-f78f-493c-9303-b5068e80","serviceDesc":"5c4b1133-448b-4a00-8634-212b58d983d4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.855 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:358fff72 +09:12:50.863 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.863 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.863 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.863 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.863 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.863 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.864 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:50.864 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG com.networknt.schema.TypeValidator debug - validate( "9269ed93-e81f-43fc-9bb0-fc6e5a5c", {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:50.864 [XNIO-1 task-2] qVwXiwY0R1ijHKXI3P0Hvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3e5a4238","serviceName":"9269ed93-e81f-43fc-9bb0-fc6e5a5c","serviceDesc":"283aecc7-ec98-44f6-be66-515ec01cc4b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.872 [XNIO-1 task-2] hHQLXiDWRi20nDxnYPJ3yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4100d94f, base path is set to: null +09:12:50.872 [XNIO-1 task-2] hHQLXiDWRi20nDxnYPJ3yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.872 [XNIO-1 task-2] hHQLXiDWRi20nDxnYPJ3yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.873 [XNIO-1 task-2] hHQLXiDWRi20nDxnYPJ3yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4100d94f, base path is set to: null +09:12:50.873 [XNIO-1 task-2] hHQLXiDWRi20nDxnYPJ3yA DEBUG com.networknt.schema.TypeValidator debug - validate( "4100d94f", "4100d94f", serviceId) +09:12:50.878 [XNIO-1 task-2] ajodZvCjR4uEoBP2UYBDmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.878 [XNIO-1 task-2] ajodZvCjR4uEoBP2UYBDmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.879 [XNIO-1 task-2] ajodZvCjR4uEoBP2UYBDmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.885 [XNIO-1 task-2] FHYXAZkFTiOynZ8WKw3LZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.885 [XNIO-1 task-2] FHYXAZkFTiOynZ8WKw3LZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.885 [XNIO-1 task-2] FHYXAZkFTiOynZ8WKw3LZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.885 [XNIO-1 task-2] FHYXAZkFTiOynZ8WKw3LZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.901 [XNIO-1 task-2] T41mnuPbRiCM9BQF-CvC-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b89fb055 +09:12:50.901 [XNIO-1 task-2] T41mnuPbRiCM9BQF-CvC-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.901 [XNIO-1 task-2] T41mnuPbRiCM9BQF-CvC-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.901 [XNIO-1 task-2] T41mnuPbRiCM9BQF-CvC-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b89fb055 +09:12:50.905 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:eba75119-1f30-4db3-bfc7-196961a385cd +09:12:50.907 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:eba75119-1f30-4db3-bfc7-196961a385cd +09:12:50.909 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.909 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.909 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.910 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.910 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.910 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "41862410-9499-4436-af3d-c2e7c2b025b2", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.910 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "4100d94f", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.910 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.910 [XNIO-1 task-2] JFtKtOcHQ_G_zuYpqXo_2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4100d94f","serviceName":"8edd5679-3ae0-44bb-9650-2bee8393","serviceDesc":"41862410-9499-4436-af3d-c2e7c2b025b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.910 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4100d94f +09:12:50.921 [XNIO-1 task-2] ldVBmGcNQJOIRsJQWT4dQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.921 [XNIO-1 task-2] ldVBmGcNQJOIRsJQWT4dQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.921 [XNIO-1 task-2] ldVBmGcNQJOIRsJQWT4dQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.931 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.931 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.931 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.931 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.931 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.931 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9187523f-1392-442b-9b19-7ecf9cba11b7", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.932 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b89fb055", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.932 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.932 [XNIO-1 task-2] zurFbhTFSmyXhOTJYKiV3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.939 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.939 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.939 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.939 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.939 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:50.940 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca86da04-96aa-45cc-93e8-c766e8feeee5", {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:50.940 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG com.networknt.schema.TypeValidator debug - validate( "c79db767", {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:50.940 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:50.940 [XNIO-1 task-2] MYdOgC4NRMuM0vR5KbtYpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c79db767","serviceName":"e29ee4aa-e2b7-4229-a241-be83b083","serviceDesc":"ca86da04-96aa-45cc-93e8-c766e8feeee5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:50.944 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:74482ec0-b716-4ff0-8689-4dc6a8db8df9 +09:12:50.951 [XNIO-1 task-2] vQpUJLidQTSssYzl5dsbww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.951 [XNIO-1 task-2] vQpUJLidQTSssYzl5dsbww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.951 [XNIO-1 task-2] vQpUJLidQTSssYzl5dsbww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:50.951 [XNIO-1 task-2] vQpUJLidQTSssYzl5dsbww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.960 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f6366c51-4109-4007-a10b-36c88b460511 +09:12:50.961 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f6366c51-4109-4007-a10b-36c88b460511 +09:12:50.973 [XNIO-1 task-2] E0ZSgGEHRS699n994m2ZVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.973 [XNIO-1 task-2] E0ZSgGEHRS699n994m2ZVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.973 [XNIO-1 task-2] E0ZSgGEHRS699n994m2ZVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:50.981 [XNIO-1 task-2] sx4hVJ0LSHaQ5sLY8GOfNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/358fff72, base path is set to: null +09:12:50.981 [XNIO-1 task-2] sx4hVJ0LSHaQ5sLY8GOfNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.981 [XNIO-1 task-2] sx4hVJ0LSHaQ5sLY8GOfNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.981 [XNIO-1 task-2] sx4hVJ0LSHaQ5sLY8GOfNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/358fff72, base path is set to: null +09:12:50.981 [XNIO-1 task-2] sx4hVJ0LSHaQ5sLY8GOfNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "358fff72", "358fff72", serviceId) +09:12:50.982 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:358fff72 +09:12:50.986 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ed6f7189 +09:12:50.988 [XNIO-1 task-2] eZ01VrJ-QvS6UZ4--lZXCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/652d0b05, base path is set to: null +09:12:50.988 [XNIO-1 task-2] eZ01VrJ-QvS6UZ4--lZXCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.988 [XNIO-1 task-2] eZ01VrJ-QvS6UZ4--lZXCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.988 [XNIO-1 task-2] eZ01VrJ-QvS6UZ4--lZXCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:50.988 [XNIO-1 task-2] eZ01VrJ-QvS6UZ4--lZXCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/652d0b05 +09:12:50.989 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3603064f-cc04-44f7-8ddc-614ea572078b +09:12:50.993 [XNIO-1 task-2] ZUHUDFrRQNuyS3gkKf4nYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3e5a4238, base path is set to: null +09:12:50.993 [XNIO-1 task-2] ZUHUDFrRQNuyS3gkKf4nYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:50.993 [XNIO-1 task-2] ZUHUDFrRQNuyS3gkKf4nYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:50.993 [XNIO-1 task-2] ZUHUDFrRQNuyS3gkKf4nYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3e5a4238, base path is set to: null +09:12:50.993 [XNIO-1 task-2] ZUHUDFrRQNuyS3gkKf4nYg DEBUG com.networknt.schema.TypeValidator debug - validate( "3e5a4238", "3e5a4238", serviceId) +09:12:51.003 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.003 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.003 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.003 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.004 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.004 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3b4aab0f-3200-4787-8532-28c64cd2580b", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.004 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "38671464", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.004 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.004 [XNIO-1 task-2] QwVIpXvyRiGxxAh5LP7AIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.013 [XNIO-1 task-2] xEmm_FpiQ5OtxUwPlg9fDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.013 [XNIO-1 task-2] xEmm_FpiQ5OtxUwPlg9fDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.013 [XNIO-1 task-2] xEmm_FpiQ5OtxUwPlg9fDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.014 [XNIO-1 task-2] xEmm_FpiQ5OtxUwPlg9fDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.020 [XNIO-1 task-2] NBl5iFYfSCOQf7aufYJlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.020 [XNIO-1 task-2] NBl5iFYfSCOQf7aufYJlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.020 [XNIO-1 task-2] NBl5iFYfSCOQf7aufYJlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.022 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1e0cf8eb-19e5-4a82-a227-865a7c81edac +09:12:51.030 [XNIO-1 task-2] 5kshvCLPQ0yCCTSXezBYKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/093a97af, base path is set to: null +09:12:51.030 [XNIO-1 task-2] 5kshvCLPQ0yCCTSXezBYKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.030 [XNIO-1 task-2] 5kshvCLPQ0yCCTSXezBYKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.030 [XNIO-1 task-2] 5kshvCLPQ0yCCTSXezBYKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/093a97af, base path is set to: null +09:12:51.031 [XNIO-1 task-2] 5kshvCLPQ0yCCTSXezBYKw DEBUG com.networknt.schema.TypeValidator debug - validate( "093a97af", "093a97af", serviceId) +09:12:51.031 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:093a97af +09:12:51.037 [XNIO-1 task-2] F6pEfJSMTH61sp0arYlFxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e5b5ac88 +09:12:51.037 [XNIO-1 task-2] F6pEfJSMTH61sp0arYlFxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.037 [XNIO-1 task-2] F6pEfJSMTH61sp0arYlFxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.037 [XNIO-1 task-2] F6pEfJSMTH61sp0arYlFxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e5b5ac88 +09:12:51.038 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ac95d305-c9e4-4ed9-b4bb-08c5270d798c +09:12:51.039 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ac95d305-c9e4-4ed9-b4bb-08c5270d798c +09:12:51.039 [XNIO-1 task-2] EGFAki_aQQqJYg8FSqgXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c4d7d6e +09:12:51.040 [XNIO-1 task-2] EGFAki_aQQqJYg8FSqgXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.040 [XNIO-1 task-2] EGFAki_aQQqJYg8FSqgXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.040 [XNIO-1 task-2] EGFAki_aQQqJYg8FSqgXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c4d7d6e +09:12:51.048 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1e0cf8eb-19e5-4a82-a227-865a7c81edac +09:12:51.050 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.050 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.050 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.050 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.051 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.051 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG com.networknt.schema.TypeValidator debug - validate( "84afac6c-da2c-486f-9e88-0052bb890843", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.051 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.051 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.051 [XNIO-1 task-2] wIrG40IDSyufT1bZ1XNLAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.067 [XNIO-1 task-2] SMrhbzCfSx68bnRWGCg7RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.067 [XNIO-1 task-2] SMrhbzCfSx68bnRWGCg7RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.067 [XNIO-1 task-2] SMrhbzCfSx68bnRWGCg7RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.068 [XNIO-1 task-2] SMrhbzCfSx68bnRWGCg7RQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.076 [XNIO-1 task-2] JMIYK7coS8iK2odqWjVc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.076 [XNIO-1 task-2] JMIYK7coS8iK2odqWjVc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.076 [XNIO-1 task-2] JMIYK7coS8iK2odqWjVc9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.086 [XNIO-1 task-2] -llfuq4sRX2GFCxdSYrF1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.086 [XNIO-1 task-2] -llfuq4sRX2GFCxdSYrF1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.086 [XNIO-1 task-2] -llfuq4sRX2GFCxdSYrF1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.086 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0bd69058 +09:12:51.091 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0bd69058 +09:12:51.093 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:95d6d87c-62d3-4399-b636-70a8952044e6 +09:12:51.097 [XNIO-1 task-2] bausXtzpTJeKu_AOpu_hAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.097 [XNIO-1 task-2] bausXtzpTJeKu_AOpu_hAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.097 [XNIO-1 task-2] bausXtzpTJeKu_AOpu_hAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.097 [XNIO-1 task-2] bausXtzpTJeKu_AOpu_hAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.107 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.107 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.107 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.108 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.108 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.108 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG com.networknt.schema.TypeValidator debug - validate( "5e90231b-7e33-4994-8846-cf39cf9914e5", {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.108 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG com.networknt.schema.TypeValidator debug - validate( "652d0b05", {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.108 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.108 [XNIO-1 task-2] VQTljN1LTNW2BEbzyG33qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"652d0b05","serviceName":"3e5038ec-1020-478f-bd94-af3cbc0e","serviceDesc":"5e90231b-7e33-4994-8846-cf39cf9914e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.123 [XNIO-1 task-2] vrmU7PNtT4iQlcfH3YFAqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.123 [XNIO-1 task-2] vrmU7PNtT4iQlcfH3YFAqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.123 [XNIO-1 task-2] vrmU7PNtT4iQlcfH3YFAqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.130 [XNIO-1 task-2] bbSqjOzXT7eTFfCtJLdfZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.131 [XNIO-1 task-2] bbSqjOzXT7eTFfCtJLdfZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.131 [XNIO-1 task-2] bbSqjOzXT7eTFfCtJLdfZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.137 [XNIO-1 task-2] ha0JjZTxTLmdhDvh0wCDQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/839afe8d +09:12:51.137 [XNIO-1 task-2] ha0JjZTxTLmdhDvh0wCDQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.137 [XNIO-1 task-2] ha0JjZTxTLmdhDvh0wCDQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.137 [XNIO-1 task-2] ha0JjZTxTLmdhDvh0wCDQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/839afe8d +09:12:51.147 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.147 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.147 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.148 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.148 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.148 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.148 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:51.148 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG com.networknt.schema.TypeValidator debug - validate( "b2e4361a-05c5-40fe-b7d0-be716c66", {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:51.148 [XNIO-1 task-2] t5g4_1DXSteN9CrrOJfgVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.148 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0efd841c +09:12:51.155 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:92f01015 +09:12:51.156 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:92f01015 +09:12:51.156 [XNIO-1 task-2] Vk9C5hJ1Sgee0altgOYeGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d2fdb5b8 +09:12:51.156 [XNIO-1 task-2] Vk9C5hJ1Sgee0altgOYeGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.156 [XNIO-1 task-2] Vk9C5hJ1Sgee0altgOYeGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.156 [XNIO-1 task-2] Vk9C5hJ1Sgee0altgOYeGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d2fdb5b8 +09:12:51.164 [XNIO-1 task-2] SIXqGQ-iSkyYk5U6i62puQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/69e75a4e, base path is set to: null +09:12:51.165 [XNIO-1 task-2] SIXqGQ-iSkyYk5U6i62puQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.165 [XNIO-1 task-2] SIXqGQ-iSkyYk5U6i62puQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.165 [XNIO-1 task-2] SIXqGQ-iSkyYk5U6i62puQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/69e75a4e, base path is set to: null +09:12:51.165 [XNIO-1 task-2] SIXqGQ-iSkyYk5U6i62puQ DEBUG com.networknt.schema.TypeValidator debug - validate( "69e75a4e", "69e75a4e", serviceId) +09:12:51.167 [XNIO-1 task-2] qfJyUCtMSHaTL5bkuyhB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:51.167 [XNIO-1 task-2] qfJyUCtMSHaTL5bkuyhB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.167 [XNIO-1 task-2] qfJyUCtMSHaTL5bkuyhB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.167 [XNIO-1 task-2] qfJyUCtMSHaTL5bkuyhB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:51.169 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4ecfc181-c29c-47e5-8e32-a15164498709 +09:12:51.170 [XNIO-1 task-2] OEmmLj03S1es5ev0dUCN5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.170 [XNIO-1 task-2] OEmmLj03S1es5ev0dUCN5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.170 [XNIO-1 task-2] OEmmLj03S1es5ev0dUCN5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.179 [XNIO-1 task-2] XE34oXlZQ2G8Zve2YX3sjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:51.179 [XNIO-1 task-2] XE34oXlZQ2G8Zve2YX3sjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.179 [XNIO-1 task-2] XE34oXlZQ2G8Zve2YX3sjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.179 [XNIO-1 task-2] XE34oXlZQ2G8Zve2YX3sjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:51.182 [XNIO-1 task-2] q84winZxRUOEwmtwiFE3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.182 [XNIO-1 task-2] q84winZxRUOEwmtwiFE3jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.182 [XNIO-1 task-2] q84winZxRUOEwmtwiFE3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.182 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a6a54b1a +09:12:51.183 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a6a54b1a +09:12:51.196 [XNIO-1 task-2] msI10u_6RXOmAsmiaypmKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:51.196 [XNIO-1 task-2] msI10u_6RXOmAsmiaypmKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.196 [XNIO-1 task-2] msI10u_6RXOmAsmiaypmKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.196 [XNIO-1 task-2] msI10u_6RXOmAsmiaypmKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:51.199 [XNIO-1 task-2] iuoWv4KfTx6PQpSFOJrgEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/69e75a4e, base path is set to: null +09:12:51.199 [XNIO-1 task-2] iuoWv4KfTx6PQpSFOJrgEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.199 [XNIO-1 task-2] iuoWv4KfTx6PQpSFOJrgEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.199 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:93b84dd2-f378-49ea-aa78-899f34a82d4b +09:12:51.199 [XNIO-1 task-2] iuoWv4KfTx6PQpSFOJrgEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/69e75a4e +09:12:51.200 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:93b84dd2-f378-49ea-aa78-899f34a82d4b +09:12:51.210 [XNIO-1 task-2] YbSxJU4hTeWWhHtfcyxqfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2849cc28, base path is set to: null +09:12:51.210 [XNIO-1 task-2] YbSxJU4hTeWWhHtfcyxqfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.210 [XNIO-1 task-2] YbSxJU4hTeWWhHtfcyxqfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.210 [XNIO-1 task-2] YbSxJU4hTeWWhHtfcyxqfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2849cc28, base path is set to: null +09:12:51.210 [XNIO-1 task-2] YbSxJU4hTeWWhHtfcyxqfw DEBUG com.networknt.schema.TypeValidator debug - validate( "2849cc28", "2849cc28", serviceId) +09:12:51.214 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.214 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.214 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.215 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.215 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.215 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG com.networknt.schema.TypeValidator debug - validate( "7cda2cc1-6626-488d-8bb0-253e3e4e54b9", {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.215 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG com.networknt.schema.TypeValidator debug - validate( "0efd841c", {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.215 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.215 [XNIO-1 task-2] UCDTr07IQIKA_7tDKIO6HA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0efd841c","serviceName":"b2e4361a-05c5-40fe-b7d0-be716c66","serviceDesc":"7cda2cc1-6626-488d-8bb0-253e3e4e54b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.215 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0efd841c +09:12:51.231 [XNIO-1 task-2] WB4yC15HRf2xZfXfrwOB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2849cc28 +09:12:51.231 [XNIO-1 task-2] WB4yC15HRf2xZfXfrwOB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.231 [XNIO-1 task-2] WB4yC15HRf2xZfXfrwOB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.231 [XNIO-1 task-2] WB4yC15HRf2xZfXfrwOB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2849cc28 +09:12:51.236 [XNIO-1 task-2] h9Bir5jST32oKbXTIprpfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.236 [XNIO-1 task-2] h9Bir5jST32oKbXTIprpfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.236 [XNIO-1 task-2] h9Bir5jST32oKbXTIprpfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.244 [XNIO-1 task-2] TSyaRTX-Q9KXBIXVZekYag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.244 [XNIO-1 task-2] TSyaRTX-Q9KXBIXVZekYag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.244 [XNIO-1 task-2] TSyaRTX-Q9KXBIXVZekYag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.255 [XNIO-1 task-2] luNGX8I7Rcmtyru8jN_jrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.255 [XNIO-1 task-2] luNGX8I7Rcmtyru8jN_jrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.256 [XNIO-1 task-2] luNGX8I7Rcmtyru8jN_jrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.256 [XNIO-1 task-2] luNGX8I7Rcmtyru8jN_jrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.266 [XNIO-1 task-2] MRvrXL0WSZGWBQsVzlSfHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2849cc28, base path is set to: null +09:12:51.266 [XNIO-1 task-2] MRvrXL0WSZGWBQsVzlSfHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.266 [XNIO-1 task-2] MRvrXL0WSZGWBQsVzlSfHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.267 [XNIO-1 task-2] MRvrXL0WSZGWBQsVzlSfHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2849cc28, base path is set to: null +09:12:51.267 [XNIO-1 task-2] MRvrXL0WSZGWBQsVzlSfHA DEBUG com.networknt.schema.TypeValidator debug - validate( "2849cc28", "2849cc28", serviceId) +09:12:51.270 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e98843d6 +09:12:51.272 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c49fa05e-ad2d-4fc2-b353-5caeeb532b5b +09:12:51.274 [XNIO-1 task-2] TZT3hgeWQzaScq4klUmPfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.274 [XNIO-1 task-2] TZT3hgeWQzaScq4klUmPfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.274 [XNIO-1 task-2] TZT3hgeWQzaScq4klUmPfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.274 [XNIO-1 task-2] TZT3hgeWQzaScq4klUmPfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.282 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ae53c2c7-b7e6-48dd-8ed5-16c78ecae3bb +09:12:51.283 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ae53c2c7-b7e6-48dd-8ed5-16c78ecae3bb +09:12:51.300 [XNIO-1 task-2] 31NwWMl8Rf65f4kRyodniQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.300 [XNIO-1 task-2] 31NwWMl8Rf65f4kRyodniQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.300 [XNIO-1 task-2] 31NwWMl8Rf65f4kRyodniQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.300 [XNIO-1 task-2] 31NwWMl8Rf65f4kRyodniQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.300 [XNIO-1 task-2] 31NwWMl8Rf65f4kRyodniQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.308 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a3750a16-da2e-4f1b-b70e-a6fec2629a2d +09:12:51.319 [XNIO-1 task-2] dW6mLUMtS36xFucOLfbsWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.319 [XNIO-1 task-2] dW6mLUMtS36xFucOLfbsWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.320 [XNIO-1 task-2] dW6mLUMtS36xFucOLfbsWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.331 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.347 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG com.networknt.schema.TypeValidator debug - validate( "3b4aab0f-3200-4787-8532-28c64cd2580b", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG com.networknt.schema.TypeValidator debug - validate( "38671464", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.348 [XNIO-1 task-2] CL_NCF-uRRWruV5Ts_NWPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"38671464","serviceName":"31ff2ae9-f777-4328-8e05-a9a20aa9","serviceDesc":"3b4aab0f-3200-4787-8532-28c64cd2580b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.356 [XNIO-1 task-2] acJmX1HIRriP7mDQ5pbmAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.356 [XNIO-1 task-2] acJmX1HIRriP7mDQ5pbmAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.356 [XNIO-1 task-2] acJmX1HIRriP7mDQ5pbmAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.357 [XNIO-1 task-2] acJmX1HIRriP7mDQ5pbmAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.426 [XNIO-1 task-2] YBKdwrPERbaRHhtFTrjWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.426 [XNIO-1 task-2] YBKdwrPERbaRHhtFTrjWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.426 [XNIO-1 task-2] YBKdwrPERbaRHhtFTrjWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.435 [XNIO-1 task-2] 2ak5HZSQRBS__oPHFH7lFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4100d94f +09:12:51.435 [XNIO-1 task-2] 2ak5HZSQRBS__oPHFH7lFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.435 [XNIO-1 task-2] 2ak5HZSQRBS__oPHFH7lFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.435 [XNIO-1 task-2] 2ak5HZSQRBS__oPHFH7lFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4100d94f +09:12:51.436 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4100d94f +09:12:51.441 [XNIO-1 task-2] hIbQOWD4RhaTOspwiJDtRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c79db767, base path is set to: null +09:12:51.441 [XNIO-1 task-2] hIbQOWD4RhaTOspwiJDtRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.441 [XNIO-1 task-2] hIbQOWD4RhaTOspwiJDtRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.441 [XNIO-1 task-2] hIbQOWD4RhaTOspwiJDtRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c79db767, base path is set to: null +09:12:51.441 [XNIO-1 task-2] hIbQOWD4RhaTOspwiJDtRA DEBUG com.networknt.schema.TypeValidator debug - validate( "c79db767", "c79db767", serviceId) +09:12:51.447 [XNIO-1 task-2] CnFGr08ZRPaQfnRe35PMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bd69058 +09:12:51.447 [XNIO-1 task-2] CnFGr08ZRPaQfnRe35PMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.447 [XNIO-1 task-2] CnFGr08ZRPaQfnRe35PMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.447 [XNIO-1 task-2] CnFGr08ZRPaQfnRe35PMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bd69058 +09:12:51.449 [XNIO-1 task-2] gwDlJ8aLSGG00gEUTI_TMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0bd69058, base path is set to: null +09:12:51.449 [XNIO-1 task-2] gwDlJ8aLSGG00gEUTI_TMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.449 [XNIO-1 task-2] gwDlJ8aLSGG00gEUTI_TMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.449 [XNIO-1 task-2] gwDlJ8aLSGG00gEUTI_TMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0bd69058, base path is set to: null +09:12:51.449 [XNIO-1 task-2] gwDlJ8aLSGG00gEUTI_TMw DEBUG com.networknt.schema.TypeValidator debug - validate( "0bd69058", "0bd69058", serviceId) +09:12:51.449 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0bd69058 +09:12:51.455 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.455 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.455 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.456 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.456 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.456 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "659fd97d-a0e5-4049-b742-bc14a4cdc77f", {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.456 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "6a4b1881", {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.456 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.456 [XNIO-1 task-2] b4lKduYJR4-Crqgg3qU8Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6a4b1881","serviceName":"dfc12c18-73c6-4d69-b169-c41777f7","serviceDesc":"659fd97d-a0e5-4049-b742-bc14a4cdc77f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.533 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.533 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.533 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.534 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.534 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.534 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG com.networknt.schema.TypeValidator debug - validate( "9187523f-1392-442b-9b19-7ecf9cba11b7", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.534 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG com.networknt.schema.TypeValidator debug - validate( "b89fb055", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.534 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.534 [XNIO-1 task-2] GuaQofwzT22Hpel23e2QmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.544 [XNIO-1 task-2] b3zFRLJyRJ-6QpxbaxwqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.544 [XNIO-1 task-2] b3zFRLJyRJ-6QpxbaxwqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.544 [XNIO-1 task-2] b3zFRLJyRJ-6QpxbaxwqXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.544 [XNIO-1 task-2] b3zFRLJyRJ-6QpxbaxwqXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.564 [XNIO-1 task-2] UqIbU8a-Tv6MZfVdC5pLCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.564 [XNIO-1 task-2] UqIbU8a-Tv6MZfVdC5pLCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.565 [XNIO-1 task-2] UqIbU8a-Tv6MZfVdC5pLCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.575 [XNIO-1 task-2] op7PVbQMRZ6iY0vEiq5tPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ffa6ebd +09:12:51.575 [XNIO-1 task-2] op7PVbQMRZ6iY0vEiq5tPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.575 [XNIO-1 task-2] op7PVbQMRZ6iY0vEiq5tPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.575 [XNIO-1 task-2] op7PVbQMRZ6iY0vEiq5tPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ffa6ebd +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "343016d7-891e-4a47-997d-902d66d9", {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:51.580 [XNIO-1 task-2] qzVwtVjSQiql_OGY0zexmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ffa6ebd","serviceName":"343016d7-891e-4a47-997d-902d66d9","serviceDesc":"f3b3b7ec-92ba-4931-8238-8e10e5539b50","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.584 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:253b1f1a-c87e-40bb-924c-2fd45e679040 +09:12:51.585 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.585 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:253b1f1a-c87e-40bb-924c-2fd45e679040 +09:12:51.589 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.589 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.589 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.589 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.590 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.590 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.590 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:51.590 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG com.networknt.schema.TypeValidator debug - validate( "272214c2-3af7-4154-9f88-b4fc9895", {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:51.590 [XNIO-1 task-2] DokIPcbmQpemMT1yx6OLEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.606 [XNIO-1 task-2] HY_ikFdnTwCbpG0oEUe8Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.606 [XNIO-1 task-2] HY_ikFdnTwCbpG0oEUe8Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.606 [XNIO-1 task-2] HY_ikFdnTwCbpG0oEUe8Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.607 [XNIO-1 task-2] HY_ikFdnTwCbpG0oEUe8Og DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.608 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6f2dad6e-3e75-418e-a303-8db5851d5a75 +09:12:51.619 [XNIO-1 task-2] 7TGHBvpuQySGrBdIISsaQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84286772 +09:12:51.619 [XNIO-1 task-2] 7TGHBvpuQySGrBdIISsaQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.619 [XNIO-1 task-2] 7TGHBvpuQySGrBdIISsaQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.619 [XNIO-1 task-2] 7TGHBvpuQySGrBdIISsaQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84286772 +09:12:51.639 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a3750a16-da2e-4f1b-b70e-a6fec2629a2d +09:12:51.640 [XNIO-1 task-2] 8pR4d8VyQ8mkGsheHrJu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9dc5b174 +09:12:51.640 [XNIO-1 task-2] 8pR4d8VyQ8mkGsheHrJu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.640 [XNIO-1 task-2] 8pR4d8VyQ8mkGsheHrJu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.640 [XNIO-1 task-2] 8pR4d8VyQ8mkGsheHrJu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9dc5b174 +09:12:51.643 [XNIO-1 task-2] o6Mjxbk7SZaG5ApedAMFJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4352b0c3, base path is set to: null +09:12:51.643 [XNIO-1 task-2] o6Mjxbk7SZaG5ApedAMFJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.643 [XNIO-1 task-2] o6Mjxbk7SZaG5ApedAMFJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.643 [XNIO-1 task-2] o6Mjxbk7SZaG5ApedAMFJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4352b0c3, base path is set to: null +09:12:51.643 [XNIO-1 task-2] o6Mjxbk7SZaG5ApedAMFJw DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", "4352b0c3", serviceId) +09:12:51.649 [XNIO-1 task-2] lQ-vYbIjSUesCXszE_lCYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b5ac88, base path is set to: null +09:12:51.649 [XNIO-1 task-2] lQ-vYbIjSUesCXszE_lCYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.649 [XNIO-1 task-2] lQ-vYbIjSUesCXszE_lCYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.649 [XNIO-1 task-2] lQ-vYbIjSUesCXszE_lCYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e5b5ac88, base path is set to: null +09:12:51.649 [XNIO-1 task-2] lQ-vYbIjSUesCXszE_lCYA DEBUG com.networknt.schema.TypeValidator debug - validate( "e5b5ac88", "e5b5ac88", serviceId) +09:12:51.657 [XNIO-1 task-2] OdQtY8lAQh6uizMjPvTO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93bde782 +09:12:51.657 [XNIO-1 task-2] OdQtY8lAQh6uizMjPvTO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.657 [XNIO-1 task-2] OdQtY8lAQh6uizMjPvTO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.658 [XNIO-1 task-2] OdQtY8lAQh6uizMjPvTO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93bde782 +09:12:51.669 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:57b573be-adae-4aa9-bea4-db9e0b2218da +09:12:51.672 [XNIO-1 task-2] yY2X6aYwQcu1f911EJ-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0efd841c +09:12:51.672 [XNIO-1 task-2] yY2X6aYwQcu1f911EJ-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.672 [XNIO-1 task-2] yY2X6aYwQcu1f911EJ-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.672 [XNIO-1 task-2] yY2X6aYwQcu1f911EJ-D7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0efd841c +09:12:51.672 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0efd841c +09:12:51.680 [XNIO-1 task-2] J3xJmBw9QJKccJIqocYPTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/652d0b05, base path is set to: null +09:12:51.680 [XNIO-1 task-2] J3xJmBw9QJKccJIqocYPTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.680 [XNIO-1 task-2] J3xJmBw9QJKccJIqocYPTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.680 [XNIO-1 task-2] J3xJmBw9QJKccJIqocYPTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/652d0b05, base path is set to: null +09:12:51.681 [XNIO-1 task-2] J3xJmBw9QJKccJIqocYPTA DEBUG com.networknt.schema.TypeValidator debug - validate( "652d0b05", "652d0b05", serviceId) +09:12:51.686 [XNIO-1 task-2] kHs6iYBzRFKWHi6lH42GFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4352b0c3 +09:12:51.686 [XNIO-1 task-2] kHs6iYBzRFKWHi6lH42GFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.686 [XNIO-1 task-2] kHs6iYBzRFKWHi6lH42GFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.686 [XNIO-1 task-2] kHs6iYBzRFKWHi6lH42GFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4352b0c3 +09:12:51.694 [XNIO-1 task-2] KvJStwNiRYqMRTdkN97WsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.694 [XNIO-1 task-2] KvJStwNiRYqMRTdkN97WsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.695 [XNIO-1 task-2] KvJStwNiRYqMRTdkN97WsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.702 [XNIO-1 task-2] xWLe_EX9SLWHdkuitA5xwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/652d0b05, base path is set to: null +09:12:51.702 [XNIO-1 task-2] xWLe_EX9SLWHdkuitA5xwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.702 [XNIO-1 task-2] xWLe_EX9SLWHdkuitA5xwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.703 [XNIO-1 task-2] xWLe_EX9SLWHdkuitA5xwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/652d0b05, base path is set to: null +09:12:51.703 [XNIO-1 task-2] xWLe_EX9SLWHdkuitA5xwA DEBUG com.networknt.schema.TypeValidator debug - validate( "652d0b05", "652d0b05", serviceId) +09:12:51.707 [XNIO-1 task-2] pvUuVaNJSyaDYLaqvOz03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a4b1881 +09:12:51.707 [XNIO-1 task-2] pvUuVaNJSyaDYLaqvOz03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.707 [XNIO-1 task-2] pvUuVaNJSyaDYLaqvOz03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.707 [XNIO-1 task-2] pvUuVaNJSyaDYLaqvOz03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a4b1881 +09:12:51.716 [XNIO-1 task-2] yyI3j7-ZRvqjThtv_x4pDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.716 [XNIO-1 task-2] yyI3j7-ZRvqjThtv_x4pDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.716 [XNIO-1 task-2] yyI3j7-ZRvqjThtv_x4pDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.717 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1642bba7 +09:12:51.717 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1642bba7 +09:12:51.725 [XNIO-1 task-2] zksnJgdWQGGTA2R8rRjIIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4352b0c3 +09:12:51.725 [XNIO-1 task-2] zksnJgdWQGGTA2R8rRjIIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.725 [XNIO-1 task-2] zksnJgdWQGGTA2R8rRjIIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.725 [XNIO-1 task-2] zksnJgdWQGGTA2R8rRjIIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4352b0c3 +09:12:51.728 [XNIO-1 task-2] Rul8DCzBQZ-Zves6C8ffpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/652d0b05, base path is set to: null +09:12:51.728 [XNIO-1 task-2] Rul8DCzBQZ-Zves6C8ffpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.729 [XNIO-1 task-2] Rul8DCzBQZ-Zves6C8ffpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.729 [XNIO-1 task-2] Rul8DCzBQZ-Zves6C8ffpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/652d0b05, base path is set to: null +09:12:51.729 [XNIO-1 task-2] Rul8DCzBQZ-Zves6C8ffpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "652d0b05", "652d0b05", serviceId) +09:12:51.736 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.736 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.736 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.736 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.737 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.737 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG com.networknt.schema.TypeValidator debug - validate( "51cd6c94-d100-42f3-96c8-a28368095e0d", {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.737 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6a54b1a", {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.737 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.737 [XNIO-1 task-2] fYaFWy_VQIa0L9jU2MlTiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.737 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a6a54b1a +09:12:51.744 [XNIO-1 task-2] 8qCvCosOTGqQOOZoVKOW5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ffa6ebd +09:12:51.744 [XNIO-1 task-2] 8qCvCosOTGqQOOZoVKOW5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.744 [XNIO-1 task-2] 8qCvCosOTGqQOOZoVKOW5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.744 [XNIO-1 task-2] 8qCvCosOTGqQOOZoVKOW5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ffa6ebd +09:12:51.757 [XNIO-1 task-2] sK2BproOTtSSXPqOdsKRsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6a4b1881, base path is set to: null +09:12:51.757 [XNIO-1 task-2] sK2BproOTtSSXPqOdsKRsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.757 [XNIO-1 task-2] sK2BproOTtSSXPqOdsKRsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.757 [XNIO-1 task-2] sK2BproOTtSSXPqOdsKRsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6a4b1881, base path is set to: null +09:12:51.758 [XNIO-1 task-2] sK2BproOTtSSXPqOdsKRsg DEBUG com.networknt.schema.TypeValidator debug - validate( "6a4b1881", "6a4b1881", serviceId) +09:12:51.773 [XNIO-1 task-2] JWwB-J99SDy7WEtXWxEIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/38671464 +09:12:51.773 [XNIO-1 task-2] JWwB-J99SDy7WEtXWxEIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.773 [XNIO-1 task-2] JWwB-J99SDy7WEtXWxEIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.774 [XNIO-1 task-2] JWwB-J99SDy7WEtXWxEIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/38671464 +09:12:51.783 [XNIO-1 task-2] l8ItbJ3ESy6PcyhcYRhuWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.783 [XNIO-1 task-2] l8ItbJ3ESy6PcyhcYRhuWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.783 [XNIO-1 task-2] l8ItbJ3ESy6PcyhcYRhuWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +Jun 29, 2024 9:12:52 AM com.hazelcast.map.impl.operation.DeleteOperation +09:12:51.783 [XNIO-1 task-2] l8ItbJ3ESy6PcyhcYRhuWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6a54b1a","serviceName":"7dbbaf21-ee04-4064-ab43-3e16f5e7","serviceDesc":"51cd6c94-d100-42f3-96c8-a28368095e0d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:12:51.787 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a6a54b1a +09:12:51.787 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a6a54b1a +09:12:51.794 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:56d001c3 +09:12:51.795 [XNIO-1 task-2] bFVnc8NaQCa95hrSjGYCXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7182e3c, base path is set to: null +09:12:51.795 [XNIO-1 task-2] bFVnc8NaQCa95hrSjGYCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f7182e3c + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:12:51.795 [XNIO-1 task-2] bFVnc8NaQCa95hrSjGYCXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7182e3c, base path is set to: null +09:12:51.795 [XNIO-1 task-2] bFVnc8NaQCa95hrSjGYCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f7182e3c +09:12:51.795 [XNIO-1 task-2] bFVnc8NaQCa95hrSjGYCXw DEBUG com.networknt.schema.TypeValidator debug - validate( "f7182e3c", "f7182e3c", serviceId) +09:12:51.801 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +09:12:51.801 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +09:12:51.802 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.802 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.802 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG com.networknt.schema.TypeValidator debug - validate( "84afac6c-da2c-486f-9e88-0052bb890843", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.802 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.802 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.802 [XNIO-1 task-2] sLzFQlIhSpyWDb1LQ-XcBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.810 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.810 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.810 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.811 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.811 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.811 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG com.networknt.schema.TypeValidator debug - validate( "acaff720-8ab5-47a7-965d-07f8f73739cb", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.811 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG com.networknt.schema.TypeValidator debug - validate( "9126f68a", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.811 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.811 [XNIO-1 task-2] jGUH02HERSSRdhxaklucxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.822 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fcdb15f6-4e33-4c40-af72-716951789158 +09:12:51.824 [XNIO-1 task-2] of3NddxfQGmC1W5tncL6gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4352b0c3, base path is set to: null +09:12:51.824 [XNIO-1 task-2] of3NddxfQGmC1W5tncL6gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.824 [XNIO-1 task-2] of3NddxfQGmC1W5tncL6gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.824 [XNIO-1 task-2] of3NddxfQGmC1W5tncL6gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4352b0c3, base path is set to: null +09:12:51.824 [XNIO-1 task-2] of3NddxfQGmC1W5tncL6gA DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", "4352b0c3", serviceId) +09:12:51.828 [XNIO-1 task-2] MM-n2zH3Qwm7dkxd7tXtAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.828 [XNIO-1 task-2] MM-n2zH3Qwm7dkxd7tXtAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.829 [XNIO-1 task-2] MM-n2zH3Qwm7dkxd7tXtAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.829 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:54d98f96 +09:12:51.831 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e98843d6 +09:12:51.839 [XNIO-1 task-2] fWgEm1lwSZad2ISteD7JYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.839 [XNIO-1 task-2] fWgEm1lwSZad2ISteD7JYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.839 [XNIO-1 task-2] fWgEm1lwSZad2ISteD7JYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.847 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.847 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.847 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.848 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.848 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.848 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "84afac6c-da2c-486f-9e88-0052bb890843", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.848 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.848 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.848 [XNIO-1 task-2] u1NkNQHzR6erSR5nB0Gzsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4352b0c3","serviceName":"165e177f-e212-4513-8350-88d9caac","serviceDesc":"84afac6c-da2c-486f-9e88-0052bb890843","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.861 [XNIO-1 task-2] HHg54xfWQZyIHPRihMWutg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a6a54b1a +09:12:51.861 [XNIO-1 task-2] HHg54xfWQZyIHPRihMWutg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.861 [XNIO-1 task-2] HHg54xfWQZyIHPRihMWutg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.861 [XNIO-1 task-2] HHg54xfWQZyIHPRihMWutg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a6a54b1a +09:12:51.861 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a6a54b1a +09:12:51.865 [XNIO-1 task-2] d3suzW0TTAGdvM33GYrTqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.866 [XNIO-1 task-2] d3suzW0TTAGdvM33GYrTqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.866 [XNIO-1 task-2] d3suzW0TTAGdvM33GYrTqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:51.875 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG com.networknt.schema.TypeValidator debug - validate( "82769081-4ae1-4a63-b6b1-4419ceec", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:51.876 [XNIO-1 task-2] AFfi5_2bTYmANb3_6H_qig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.891 [XNIO-1 task-2] lfoPcp-gTHa51u-_DKqHDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.891 [XNIO-1 task-2] lfoPcp-gTHa51u-_DKqHDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.892 [XNIO-1 task-2] lfoPcp-gTHa51u-_DKqHDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.892 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a14c2af9 +09:12:51.892 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a14c2af9 +09:12:51.901 [XNIO-1 task-2] 4DO63qMiQEeRI240rhnz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.902 [XNIO-1 task-2] 4DO63qMiQEeRI240rhnz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.902 [XNIO-1 task-2] 4DO63qMiQEeRI240rhnz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.902 [XNIO-1 task-2] 4DO63qMiQEeRI240rhnz4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG com.networknt.schema.TypeValidator debug - validate( "ee3eda69-c5f2-4afc-a54b-14089619f075", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG com.networknt.schema.TypeValidator debug - validate( "f805369c", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.912 [XNIO-1 task-2] JNcDIZjrTk-B5C2WjXYiFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.927 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.927 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.927 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.927 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.928 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.928 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG com.networknt.schema.TypeValidator debug - validate( "ee3eda69-c5f2-4afc-a54b-14089619f075", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.928 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG com.networknt.schema.TypeValidator debug - validate( "f805369c", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.928 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.928 [XNIO-1 task-2] efOJ0Lw2RWmO2SLOWJOpNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f805369c","serviceName":"82769081-4ae1-4a63-b6b1-4419ceec","serviceDesc":"ee3eda69-c5f2-4afc-a54b-14089619f075","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.941 [XNIO-1 task-2] IKeuDWsbQFu5nUwhWhBjrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/652d0b05 +09:12:51.941 [XNIO-1 task-2] IKeuDWsbQFu5nUwhWhBjrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.941 [XNIO-1 task-2] IKeuDWsbQFu5nUwhWhBjrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:51.941 [XNIO-1 task-2] IKeuDWsbQFu5nUwhWhBjrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/652d0b05 +09:12:51.951 [XNIO-1 task-2] fdveruJCRrWUcxZhvE-2eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4352b0c3, base path is set to: null +09:12:51.951 [XNIO-1 task-2] fdveruJCRrWUcxZhvE-2eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.952 [XNIO-1 task-2] fdveruJCRrWUcxZhvE-2eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:51.952 [XNIO-1 task-2] fdveruJCRrWUcxZhvE-2eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4352b0c3, base path is set to: null +09:12:51.952 [XNIO-1 task-2] fdveruJCRrWUcxZhvE-2eA DEBUG com.networknt.schema.TypeValidator debug - validate( "4352b0c3", "4352b0c3", serviceId) +09:12:51.956 [XNIO-1 task-2] 82uiYa3qR0yuAeB0gLpTrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.956 [XNIO-1 task-2] 82uiYa3qR0yuAeB0gLpTrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.956 [XNIO-1 task-2] 82uiYa3qR0yuAeB0gLpTrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.956 [XNIO-1 task-2] 82uiYa3qR0yuAeB0gLpTrA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.964 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:21160b9b-d0f9-4122-90d2-a4426633f128 +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG com.networknt.schema.TypeValidator debug - validate( "9187523f-1392-442b-9b19-7ecf9cba11b7", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG com.networknt.schema.TypeValidator debug - validate( "b89fb055", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:51.968 [XNIO-1 task-2] tjf1q53IS76TzPzl8lU0fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b89fb055","serviceName":"1a71362c-63ca-48ef-b52a-16eee0e2","serviceDesc":"9187523f-1392-442b-9b19-7ecf9cba11b7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:51.981 [XNIO-1 task-2] 4zZHp1XXRGiAV4N3_0EhUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.981 [XNIO-1 task-2] 4zZHp1XXRGiAV4N3_0EhUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.981 [XNIO-1 task-2] 4zZHp1XXRGiAV4N3_0EhUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.981 [XNIO-1 task-2] 4zZHp1XXRGiAV4N3_0EhUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.999 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.999 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:51.999 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:51.999 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:52.000 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:52.000 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:52.000 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:52.000 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "272214c2-3af7-4154-9f88-b4fc9895", {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:52.000 [XNIO-1 task-2] Kw16kGTiSCaWAYSR8sz_lQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"340f492a","serviceName":"272214c2-3af7-4154-9f88-b4fc9895","serviceDesc":"4a40323d-acd8-4de2-a3f8-4ad6d36bdb4a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:52.012 [XNIO-1 task-2] 5s9pQEwNRL-TXZxBlpNhUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.012 [XNIO-1 task-2] 5s9pQEwNRL-TXZxBlpNhUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:52.012 [XNIO-1 task-2] 5s9pQEwNRL-TXZxBlpNhUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.012 [XNIO-1 task-2] 5s9pQEwNRL-TXZxBlpNhUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.017 [XNIO-1 task-2] iTgJmQQJRASjXuEl6eik9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.017 [XNIO-1 task-2] iTgJmQQJRASjXuEl6eik9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:52.018 [XNIO-1 task-2] iTgJmQQJRASjXuEl6eik9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.029 [XNIO-1 task-2] nJBQHPqyRzScgpyLH2TEsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1642bba7, base path is set to: null +09:12:52.030 [XNIO-1 task-2] nJBQHPqyRzScgpyLH2TEsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:52.030 [XNIO-1 task-2] nJBQHPqyRzScgpyLH2TEsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:52.030 [XNIO-1 task-2] nJBQHPqyRzScgpyLH2TEsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1642bba7, base path is set to: null +09:12:52.030 [XNIO-1 task-2] nJBQHPqyRzScgpyLH2TEsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1642bba7", "1642bba7", serviceId) +09:12:52.031 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1642bba7 +09:12:52.043 [XNIO-1 task-2] tslwXDTISCGQh-s09TlG2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/340f492a +09:12:52.043 [XNIO-1 task-2] tslwXDTISCGQh-s09TlG2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:52.044 [XNIO-1 task-2] tslwXDTISCGQh-s09TlG2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:52.044 [XNIO-1 task-2] tslwXDTISCGQh-s09TlG2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/340f492a +09:12:52.052 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:20b7a6ae-a5e3-47cf-82d6-76ebc05b2485 +09:12:52.054 [XNIO-1 task-2] 0XAawEdGRP2u4AbXG0_T1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a14c2af9 +09:12:52.054 [XNIO-1 task-2] 0XAawEdGRP2u4AbXG0_T1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:52.055 [XNIO-1 task-2] 0XAawEdGRP2u4AbXG0_T1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:52.055 [XNIO-1 task-2] 0XAawEdGRP2u4AbXG0_T1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a14c2af9 +09:12:52.055 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:52.057 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a14c2af9 +09:12:52.067 [XNIO-1 task-2] Wtq--dWiSJ-3qzzQRthRWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f805369c +09:12:52.067 [XNIO-1 task-2] Wtq--dWiSJ-3qzzQRthRWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:52.067 [XNIO-1 task-2] Wtq--dWiSJ-3qzzQRthRWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:52.067 [XNIO-1 task-2] Wtq--dWiSJ-3qzzQRthRWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f805369c +09:12:52.074 [XNIO-1 task-2] oaW76-abQSu-3rq--DYD3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.074 [XNIO-1 task-2] oaW76-abQSu-3rq--DYD3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:52.075 [XNIO-1 task-2] oaW76-abQSu-3rq--DYD3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.081 [XNIO-1 task-2] 3ZLqQgoaRxeaSfLY-ZNpmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54d98f96, base path is set to: null +09:12:52.081 [XNIO-1 task-2] 3ZLqQgoaRxeaSfLY-ZNpmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:52.081 [XNIO-1 task-2] 3ZLqQgoaRxeaSfLY-ZNpmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:52.081 [XNIO-1 task-2] 3ZLqQgoaRxeaSfLY-ZNpmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54d98f96, base path is set to: null +09:12:52.081 [XNIO-1 task-2] 3ZLqQgoaRxeaSfLY-ZNpmw DEBUG com.networknt.schema.TypeValidator debug - validate( "54d98f96", "54d98f96", serviceId) +09:12:52.085 [XNIO-1 task-2] nyVWdPsrS02yDlEjyaywJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/54d98f96 +09:12:52.085 [XNIO-1 task-2] nyVWdPsrS02yDlEjyaywJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:52.085 [XNIO-1 task-2] nyVWdPsrS02yDlEjyaywJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:52.085 [XNIO-1 task-2] nyVWdPsrS02yDlEjyaywJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/54d98f96 +09:12:52.086 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:54d98f96 +09:12:52.092 [XNIO-1 task-2] 21VEti_QQwikaHR368C0fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.092 [XNIO-1 task-2] 21VEti_QQwikaHR368C0fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:52.092 [XNIO-1 task-2] 21VEti_QQwikaHR368C0fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:52.100 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:084aaf1b-44dd-40db-891b-d3f07c3abbda +09:12:54.426 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.426 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.426 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.426 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.427 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.427 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.427 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:54.427 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb3cfeb8-d3d3-40eb-9ffc-09e1342f", {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:54.427 [XNIO-1 task-2] azzuw52xQNGpQTtclqM-TA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.438 [XNIO-1 task-2] Za00jp72Qb-JAH5443DdFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9dc5b174, base path is set to: null +09:12:54.438 [XNIO-1 task-2] Za00jp72Qb-JAH5443DdFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.438 [XNIO-1 task-2] Za00jp72Qb-JAH5443DdFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:54.438 [XNIO-1 task-2] Za00jp72Qb-JAH5443DdFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9dc5b174, base path is set to: null +09:12:54.438 [XNIO-1 task-2] Za00jp72Qb-JAH5443DdFw DEBUG com.networknt.schema.TypeValidator debug - validate( "9dc5b174", "9dc5b174", serviceId) +09:12:54.444 [XNIO-1 task-2] 1Tmw849BS3KPZcnvZB6oEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.444 [XNIO-1 task-2] 1Tmw849BS3KPZcnvZB6oEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.444 [XNIO-1 task-2] 1Tmw849BS3KPZcnvZB6oEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.457 [XNIO-1 task-2] Erlpr5jkScOKlaXOtle1Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.457 [XNIO-1 task-2] Erlpr5jkScOKlaXOtle1Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.457 [XNIO-1 task-2] Erlpr5jkScOKlaXOtle1Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.468 [XNIO-1 task-2] M4lpIgQdS0KTfrsPfX4djA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.468 [XNIO-1 task-2] M4lpIgQdS0KTfrsPfX4djA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.468 [XNIO-1 task-2] M4lpIgQdS0KTfrsPfX4djA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.479 [XNIO-1 task-2] mCSBmmhoQ3eUof8HLxJV6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.479 [XNIO-1 task-2] mCSBmmhoQ3eUof8HLxJV6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.480 [XNIO-1 task-2] mCSBmmhoQ3eUof8HLxJV6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "acaff720-8ab5-47a7-965d-07f8f73739cb", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9126f68a", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:54.489 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:54.490 [XNIO-1 task-2] V71jQOt7RTOwRB_JJ2ixPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9126f68a","serviceName":"f9927dcf-ad9f-4e69-87df-501187ea","serviceDesc":"acaff720-8ab5-47a7-965d-07f8f73739cb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.502 [XNIO-1 task-2] 4gDNl-DNS_6uavIBVcO4Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.502 [XNIO-1 task-2] 4gDNl-DNS_6uavIBVcO4Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.502 [XNIO-1 task-2] 4gDNl-DNS_6uavIBVcO4Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.503 [XNIO-1 task-2] 4gDNl-DNS_6uavIBVcO4Bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:54.516 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.516 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.516 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.517 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.517 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.517 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "04b7e616-8ae4-4ed3-951a-8a75e6a5fe14", {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:54.517 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "c1980bcc", {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:54.517 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:54.517 [XNIO-1 task-2] KFcNlC5TSCWiVlj5PYwUkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1980bcc","serviceName":"bb3cfeb8-d3d3-40eb-9ffc-09e1342f","serviceDesc":"04b7e616-8ae4-4ed3-951a-8a75e6a5fe14","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.533 [XNIO-1 task-2] g6vckvZ4TZKvHYSeqcirTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/106b30cb +Jun 29, 2024 9:12:54 AM com.hazelcast.map.impl.operation.DeleteOperation +09:12:54.533 [XNIO-1 task-2] g6vckvZ4TZKvHYSeqcirTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +09:12:54.534 [XNIO-1 task-2] g6vckvZ4TZKvHYSeqcirTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/106b30cb, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:54.541 [XNIO-1 task-2] 0e7dAF9lTfC5T-5WcPe4Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:54.541 [XNIO-1 task-2] 0e7dAF9lTfC5T-5WcPe4Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/106b30cb, base path is set to: null +09:12:54.541 [XNIO-1 task-2] 0e7dAF9lTfC5T-5WcPe4Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "106b30cb", "106b30cb", serviceId) +09:12:54.546 [XNIO-1 task-2] u8bZQ57gQNmGKUGzZx1SZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.546 [XNIO-1 task-2] u8bZQ57gQNmGKUGzZx1SZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:54.554 [XNIO-1 task-2] yfce0fSkREKOUxRIoDuceA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/106b30cb, base path is set to: null +09:12:54.554 [XNIO-1 task-2] yfce0fSkREKOUxRIoDuceA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.555 [XNIO-1 task-2] yfce0fSkREKOUxRIoDuceA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:54.555 [XNIO-1 task-2] yfce0fSkREKOUxRIoDuceA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/106b30cb, base path is set to: null +09:12:54.555 [XNIO-1 task-2] yfce0fSkREKOUxRIoDuceA DEBUG com.networknt.schema.TypeValidator debug - validate( "106b30cb", "106b30cb", serviceId) +09:12:54.560 [XNIO-1 task-2] NcgRAQq2RXOaBDkGrGU2ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.560 [XNIO-1 task-2] NcgRAQq2RXOaBDkGrGU2ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.560 [XNIO-1 task-2] NcgRAQq2RXOaBDkGrGU2ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.568 [XNIO-1 task-2] JqXyLVTtSDiAzFqphNEFdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.569 [XNIO-1 task-2] JqXyLVTtSDiAzFqphNEFdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.569 [XNIO-1 task-2] JqXyLVTtSDiAzFqphNEFdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.579 [XNIO-1 task-2] HOIE9W7NQEeoeBNMVkiKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.579 [XNIO-1 task-2] HOIE9W7NQEeoeBNMVkiKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.579 [XNIO-1 task-2] HOIE9W7NQEeoeBNMVkiKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.628 [XNIO-1 task-2] 8h8jT-DOT_ejkTJGi2mmFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.628 [XNIO-1 task-2] 8h8jT-DOT_ejkTJGi2mmFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.628 [XNIO-1 task-2] 8h8jT-DOT_ejkTJGi2mmFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.629 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b797c47a +09:12:54.636 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:03d44fa6-09b4-45e4-a8c9-97aacc5af49c +09:12:54.636 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:03d44fa6-09b4-45e4-a8c9-97aacc5af49c +09:12:54.639 [XNIO-1 task-2] 6p6kf2bOSiSUkIQYl8qnSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1980bcc +09:12:54.639 [XNIO-1 task-2] 6p6kf2bOSiSUkIQYl8qnSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.640 [XNIO-1 task-2] 6p6kf2bOSiSUkIQYl8qnSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:54.640 [XNIO-1 task-2] 6p6kf2bOSiSUkIQYl8qnSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1980bcc +09:12:54.647 [XNIO-1 task-2] okErB0BVR6-LwN2FbnPrCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.647 [XNIO-1 task-2] okErB0BVR6-LwN2FbnPrCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.647 [XNIO-1 task-2] okErB0BVR6-LwN2FbnPrCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.653 [XNIO-1 task-2] 2_L8lqnuQGizJ6aNsUWuIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/106b30cb, base path is set to: null +09:12:54.653 [XNIO-1 task-2] 2_L8lqnuQGizJ6aNsUWuIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.653 [XNIO-1 task-2] 2_L8lqnuQGizJ6aNsUWuIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:54.653 [XNIO-1 task-2] 2_L8lqnuQGizJ6aNsUWuIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/106b30cb, base path is set to: null +09:12:54.653 [XNIO-1 task-2] 2_L8lqnuQGizJ6aNsUWuIA DEBUG com.networknt.schema.TypeValidator debug - validate( "106b30cb", "106b30cb", serviceId) +09:12:54.662 [XNIO-1 task-2] 1BRuceLaQJKB7iXmobEASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.662 [XNIO-1 task-2] 1BRuceLaQJKB7iXmobEASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.662 [XNIO-1 task-2] 1BRuceLaQJKB7iXmobEASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.668 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.668 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.668 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.668 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.669 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.669 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG com.networknt.schema.TypeValidator debug - validate( "80625456-97a0-49b7-9a73-290ce18f1d21", {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:54.669 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG com.networknt.schema.TypeValidator debug - validate( "1c42caa4", {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:54.669 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:54.669 [XNIO-1 task-2] F8vddTdwQuu3dl3OVLkFww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1c42caa4","serviceName":"e2d89b76-c5d7-4201-bdfc-76fcea93","serviceDesc":"80625456-97a0-49b7-9a73-290ce18f1d21","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG com.networknt.schema.TypeValidator debug - validate( "37e6b307-015f-4fb2-8317-7e1a36162a23", {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG com.networknt.schema.TypeValidator debug - validate( "1b9a4d56", {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:54.676 [XNIO-1 task-2] fCnyhT_iTdui-uJnZnoFww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1b9a4d56","serviceName":"6d8b1ea6-fc53-4c09-a8db-ea0f5d38","serviceDesc":"37e6b307-015f-4fb2-8317-7e1a36162a23","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.682 [XNIO-1 task-2] a9-8o6HuTaW8jb8JnTx9Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b89fb055 +09:12:54.682 [XNIO-1 task-2] a9-8o6HuTaW8jb8JnTx9Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.682 [XNIO-1 task-2] a9-8o6HuTaW8jb8JnTx9Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:54.682 [XNIO-1 task-2] a9-8o6HuTaW8jb8JnTx9Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b89fb055 +09:12:54.693 [XNIO-1 task-2] _gnZi8TdT1mmFViloPasSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.693 [XNIO-1 task-2] _gnZi8TdT1mmFViloPasSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.693 [XNIO-1 task-2] _gnZi8TdT1mmFViloPasSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.693 [XNIO-1 task-2] _gnZi8TdT1mmFViloPasSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.701 [XNIO-1 task-2] mdkfAKIpTt29uEy26ti42g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.701 [XNIO-1 task-2] mdkfAKIpTt29uEy26ti42g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.701 [XNIO-1 task-2] mdkfAKIpTt29uEy26ti42g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:54.712 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "e47db845-166b-445c-90a5-905225e2", {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:54.713 [XNIO-1 task-2] O2DzqKHbSzeUw2FqDzR6Gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2ed2e2b2","serviceName":"e47db845-166b-445c-90a5-905225e2","serviceDesc":"058f55f9-878f-4513-be0d-78d8adf33bcb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.719 [XNIO-1 task-2] Db7EwqmqRfa3L9U40pW7zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.720 [XNIO-1 task-2] Db7EwqmqRfa3L9U40pW7zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.720 [XNIO-1 task-2] Db7EwqmqRfa3L9U40pW7zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.720 [XNIO-1 task-2] Db7EwqmqRfa3L9U40pW7zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.732 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0433958", {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG com.networknt.schema.TypeValidator debug - validate( "118bbfdd-55c5-4502-b593-2eed4fda", {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:54.733 [XNIO-1 task-2] AybA72LyRWuLLD-J7k0Kgw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0433958","serviceName":"118bbfdd-55c5-4502-b593-2eed4fda","serviceDesc":"3ce7d5ca-6f74-41ea-ae6a-3a6882872b77","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.742 [XNIO-1 task-2] nAZE6COQRh2NV9U3MIcU7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.742 [XNIO-1 task-2] nAZE6COQRh2NV9U3MIcU7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.742 [XNIO-1 task-2] nAZE6COQRh2NV9U3MIcU7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.750 [XNIO-1 task-2] LCmn3mSuSoKCcrgY91EPSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.751 [XNIO-1 task-2] LCmn3mSuSoKCcrgY91EPSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.751 [XNIO-1 task-2] LCmn3mSuSoKCcrgY91EPSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.751 [XNIO-1 task-2] LCmn3mSuSoKCcrgY91EPSw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.755 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:56d001c3 +09:12:54.763 [XNIO-1 task-2] _6bxDsfbSCiFk8iEecchZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.763 [XNIO-1 task-2] _6bxDsfbSCiFk8iEecchZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.764 [XNIO-1 task-2] _6bxDsfbSCiFk8iEecchZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.764 [XNIO-1 task-2] _6bxDsfbSCiFk8iEecchZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.765 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:56d001c3 +09:12:54.770 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.770 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.770 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.771 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.771 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.771 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.771 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +09:12:54.771 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "43a212a6-4f3f-4d03-a02e-904c616d", {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +09:12:54.771 [XNIO-1 task-2] C6rLJYqFRpi0tYz7JLq4Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7182e3c","serviceName":"43a212a6-4f3f-4d03-a02e-904c616d","serviceDesc":"bf68bacc-2750-403c-a99d-1c5c521dd40f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.776 [XNIO-1 task-2] a3FDnONpTwab30Nw2FiDpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.776 [XNIO-1 task-2] a3FDnONpTwab30Nw2FiDpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.776 [XNIO-1 task-2] a3FDnONpTwab30Nw2FiDpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.776 [XNIO-1 task-2] a3FDnONpTwab30Nw2FiDpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.784 [XNIO-1 task-2] BpwPMrxdRiCXrM1D862L_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.784 [XNIO-1 task-2] BpwPMrxdRiCXrM1D862L_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +Jun 29, 2024 9:12:54 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:12:54.793 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/388cb3a3, base path is set to: null +09:12:54.793 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/388cb3a3 +09:12:54.793 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.793 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +09:12:54.793 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:54.793 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +09:12:54.794 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/388cb3a3, base path is set to: null +09:12:54.794 [XNIO-1 task-2] IkQsiVZNTXqiftxac48Z_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/388cb3a3 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:12:54.797 [XNIO-1 task-2] jih2HM5UTYuAnubwPtQKzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.797 [XNIO-1 task-2] jih2HM5UTYuAnubwPtQKzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.797 [XNIO-1 task-2] jih2HM5UTYuAnubwPtQKzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.797 [XNIO-1 task-2] jih2HM5UTYuAnubwPtQKzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.798 [XNIO-1 task-2] jih2HM5UTYuAnubwPtQKzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.798 [XNIO-1 task-2] jih2HM5UTYuAnubwPtQKzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.804 [XNIO-1 task-2] CS-GFmyCRqmnxFH1CFUyzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.804 [XNIO-1 task-2] CS-GFmyCRqmnxFH1CFUyzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + +09:12:54.804 [XNIO-1 task-2] CS-GFmyCRqmnxFH1CFUyzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.804 [XNIO-1 task-2] CS-GFmyCRqmnxFH1CFUyzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +09:12:54.816 [XNIO-1 task-2] 0P4VRJkwS26zB_GXXFyAFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/388cb3a3, base path is set to: null +09:12:54.816 [XNIO-1 task-2] 0P4VRJkwS26zB_GXXFyAFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +09:12:54.817 [XNIO-1 task-2] 0P4VRJkwS26zB_GXXFyAFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +09:12:54.817 [XNIO-1 task-2] 0P4VRJkwS26zB_GXXFyAFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/388cb3a3, base path is set to: null +09:12:54.817 [XNIO-1 task-2] 0P4VRJkwS26zB_GXXFyAFw DEBUG com.networknt.schema.TypeValidator debug - validate( "388cb3a3", "388cb3a3", serviceId) +09:12:54.822 [XNIO-1 task-2] 6YziaC73SQSvqc7-fQktIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.822 [XNIO-1 task-2] 6YziaC73SQSvqc7-fQktIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.822 [XNIO-1 task-2] 6YziaC73SQSvqc7-fQktIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.822 [XNIO-1 task-2] 6YziaC73SQSvqc7-fQktIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:54.834 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ed6f7189 +09:12:54.835 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.835 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.835 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.835 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.835 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +09:12:54.836 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9b018005-752c-4e58-9b0a-dd07d3fffbf8", {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +09:12:54.836 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "388cb3a3", {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +09:12:54.836 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +09:12:54.836 [XNIO-1 task-2] izPgj9ofQOeqb3ZeCmf5YQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"388cb3a3","serviceName":"93b1ee2c-2c06-4e11-a646-d2a993fc","serviceDesc":"9b018005-752c-4e58-9b0a-dd07d3fffbf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.844 [XNIO-1 task-2] 8G6QJc0LR0mrOosYO3qAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.844 [XNIO-1 task-2] 8G6QJc0LR0mrOosYO3qAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.844 [XNIO-1 task-2] 8G6QJc0LR0mrOosYO3qAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.848 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:54.852 [XNIO-1 task-2] ojqXcGKeRVuW4UDHJcFj1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.852 [XNIO-1 task-2] ojqXcGKeRVuW4UDHJcFj1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.852 [XNIO-1 task-2] ojqXcGKeRVuW4UDHJcFj1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.855 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ed6f7189 +09:12:54.860 [XNIO-1 task-2] PEu9zAa4TmiU2ian6VMzPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.860 [XNIO-1 task-2] PEu9zAa4TmiU2ian6VMzPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.860 [XNIO-1 task-2] PEu9zAa4TmiU2ian6VMzPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +09:12:54.860 [XNIO-1 task-2] PEu9zAa4TmiU2ian6VMzPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"57c2c028","serviceName":"01525934-ff77-4292-b62a-f00e4c89","serviceDesc":"53c980ef-1944-4611-b06b-eea5ff77641d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"57c2c028","serviceName":"01525934-ff77-4292-b62a-f00e4c89","serviceDesc":"53c980ef-1944-4611-b06b-eea5ff77641d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +09:12:54.860 [XNIO-1 task-2] PEu9zAa4TmiU2ian6VMzPw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"57c2c028","serviceName":"01525934-ff77-4292-b62a-f00e4c89","serviceDesc":"53c980ef-1944-4611-b06b-eea5ff77641d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) diff --git a/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..08acaeb --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-token-1.log @@ -0,0 +1,2337 @@ +09:12:49.663 [XNIO-1 task-6] o3M_zrnNRHCtjbzp02oblg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:49.668 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bd547c83-2c94-47c6-9fa9-444e7f11f774 +09:12:49.671 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bd547c83-2c94-47c6-9fa9-444e7f11f774 +09:12:49.677 [XNIO-1 task-6] o3M_zrnNRHCtjbzp02oblg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:49.709 [XNIO-1 task-6] EiOE-vXAQ02xVJfVpduEoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:49.709 [XNIO-1 task-6] EiOE-vXAQ02xVJfVpduEoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:49.709 [XNIO-1 task-6] EiOE-vXAQ02xVJfVpduEoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:49.709 [XNIO-1 task-6] EiOE-vXAQ02xVJfVpduEoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YZurQ-8YQkWVZuJbsjXTyA redirectUri = http://localhost:8080/authorization +09:12:49.716 [XNIO-1 task-6] EiOE-vXAQ02xVJfVpduEoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:49.717 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c109f78a-bbd5-4c80-8fe0-f7a02a648445 +09:12:49.721 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:506a8086 +09:12:49.722 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:506a8086 +09:12:49.726 [XNIO-1 task-6] jyWCC3jRQxaA1NrEMyMlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:49.726 [XNIO-1 task-6] jyWCC3jRQxaA1NrEMyMlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:49.726 [XNIO-1 task-6] jyWCC3jRQxaA1NrEMyMlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:49.726 [XNIO-1 task-6] jyWCC3jRQxaA1NrEMyMlJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c109f78a-bbd5-4c80-8fe0-f7a02a648445 scope = null +09:12:49.735 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:506a8086 +09:12:49.737 [XNIO-1 task-6] jyWCC3jRQxaA1NrEMyMlJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:49.749 [XNIO-1 task-6] 04KYYD2oQZG1Q_TBg7NWUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:49.749 [XNIO-1 task-6] 04KYYD2oQZG1Q_TBg7NWUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:49.749 [XNIO-1 task-6] 04KYYD2oQZG1Q_TBg7NWUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:49.749 [XNIO-1 task-6] 04KYYD2oQZG1Q_TBg7NWUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:49.759 [XNIO-1 task-6] 04KYYD2oQZG1Q_TBg7NWUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:49.760 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a5ab0132-2f0a-4078-86f3-28d61a2f9696 +09:12:49.762 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a5ab0132-2f0a-4078-86f3-28d61a2f9696 +09:12:49.764 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:506a8086 +09:12:49.785 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:506a8086 +09:12:49.832 [XNIO-1 task-6] IniOoD2YSE64zRC5z_J6rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:49.833 [XNIO-1 task-6] IniOoD2YSE64zRC5z_J6rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:49.833 [XNIO-1 task-6] IniOoD2YSE64zRC5z_J6rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:49.833 [XNIO-1 task-6] IniOoD2YSE64zRC5z_J6rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:49.838 [XNIO-1 task-6] IniOoD2YSE64zRC5z_J6rQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:49.839 [XNIO-1 task-6] IniOoD2YSE64zRC5z_J6rQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:49.871 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4ac37a31-a6f1-44e1-967b-6485ee5ff9cb +09:12:49.971 [XNIO-1 task-6] jmli8TtETCaLuqqrSKto8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:49.972 [XNIO-1 task-6] jmli8TtETCaLuqqrSKto8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:49.972 [XNIO-1 task-6] jmli8TtETCaLuqqrSKto8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:49.972 [XNIO-1 task-6] jmli8TtETCaLuqqrSKto8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:49.978 [XNIO-1 task-6] jmli8TtETCaLuqqrSKto8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:49.978 [XNIO-1 task-6] jmli8TtETCaLuqqrSKto8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.001 [XNIO-1 task-6] x8JvGSJQRTKkt1gfe57HiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.001 [XNIO-1 task-6] x8JvGSJQRTKkt1gfe57HiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.002 [XNIO-1 task-6] x8JvGSJQRTKkt1gfe57HiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.002 [XNIO-1 task-6] x8JvGSJQRTKkt1gfe57HiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cmkACZVwTIyskVlH_fPxvQ redirectUri = http://localhost:8080/authorization +09:12:50.010 [XNIO-1 task-6] x8JvGSJQRTKkt1gfe57HiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:50.010 [XNIO-1 task-6] x8JvGSJQRTKkt1gfe57HiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.084 [XNIO-1 task-6] ukDpUL2uRwmhXfoBW9f8kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.084 [XNIO-1 task-6] ukDpUL2uRwmhXfoBW9f8kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.084 [XNIO-1 task-6] ukDpUL2uRwmhXfoBW9f8kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.085 [XNIO-1 task-6] ukDpUL2uRwmhXfoBW9f8kQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IAQL4Gd-Tme4AQLJ8ExEMQ redirectUri = http://localhost:8080/authorization +09:12:50.091 [XNIO-1 task-6] ukDpUL2uRwmhXfoBW9f8kQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.140 [XNIO-1 task-6] L_BdpBvxSoaSpbLaiUcLlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.141 [XNIO-1 task-6] L_BdpBvxSoaSpbLaiUcLlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.141 [XNIO-1 task-6] L_BdpBvxSoaSpbLaiUcLlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.141 [XNIO-1 task-6] L_BdpBvxSoaSpbLaiUcLlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:50.153 [XNIO-1 task-6] L_BdpBvxSoaSpbLaiUcLlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.170 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4ac37a31-a6f1-44e1-967b-6485ee5ff9cb +09:12:50.197 [XNIO-1 task-6] GJh3--I9RnyJ_DLI7xot6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.197 [XNIO-1 task-6] GJh3--I9RnyJ_DLI7xot6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.197 [XNIO-1 task-6] GJh3--I9RnyJ_DLI7xot6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.197 [XNIO-1 task-6] GJh3--I9RnyJ_DLI7xot6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8BxyIGgnTxuYWCE-NuljyA redirectUri = http://localhost:8080/authorization +09:12:50.205 [XNIO-1 task-6] GJh3--I9RnyJ_DLI7xot6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.216 [XNIO-1 task-6] pcVZGU4_ROmwtdIWkunk2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.216 [XNIO-1 task-6] pcVZGU4_ROmwtdIWkunk2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.216 [XNIO-1 task-6] pcVZGU4_ROmwtdIWkunk2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.216 [XNIO-1 task-6] pcVZGU4_ROmwtdIWkunk2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:50.227 [XNIO-1 task-6] pcVZGU4_ROmwtdIWkunk2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.237 [XNIO-1 task-6] SK_2JUHtRIKrW5NAhQ344Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.237 [XNIO-1 task-6] SK_2JUHtRIKrW5NAhQ344Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.237 [XNIO-1 task-6] SK_2JUHtRIKrW5NAhQ344Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.237 [XNIO-1 task-6] SK_2JUHtRIKrW5NAhQ344Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", authorization) +09:12:50.244 [XNIO-1 task-6] SK_2JUHtRIKrW5NAhQ344Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:50.244 [XNIO-1 task-6] SK_2JUHtRIKrW5NAhQ344Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.272 [XNIO-1 task-6] 3aHj_AbVRnWzohWk4sU0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.273 [XNIO-1 task-6] 3aHj_AbVRnWzohWk4sU0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.273 [XNIO-1 task-6] 3aHj_AbVRnWzohWk4sU0ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.273 [XNIO-1 task-6] 3aHj_AbVRnWzohWk4sU0ug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3d4smWR3QSWAL7ZXnGLpdg redirectUri = http://localhost:8080/authorization +09:12:50.285 [XNIO-1 task-6] 3aHj_AbVRnWzohWk4sU0ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.287 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ff7fb137-ac82-4802-b5f1-0abe89bb9249 +09:12:50.423 [XNIO-1 task-6] XbUr5nUjTT-dEwwpZd3OCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.423 [XNIO-1 task-6] XbUr5nUjTT-dEwwpZd3OCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.423 [XNIO-1 task-6] XbUr5nUjTT-dEwwpZd3OCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.424 [XNIO-1 task-6] XbUr5nUjTT-dEwwpZd3OCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:50.433 [XNIO-1 task-6] XbUr5nUjTT-dEwwpZd3OCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:50.433 [XNIO-1 task-6] XbUr5nUjTT-dEwwpZd3OCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.518 [XNIO-1 task-4] 2455oYo3R_qD64w88OW5ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.518 [XNIO-1 task-4] 2455oYo3R_qD64w88OW5ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.518 [XNIO-1 task-4] 2455oYo3R_qD64w88OW5ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.518 [XNIO-1 task-4] 2455oYo3R_qD64w88OW5ww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0643315d-7dc2-4696-896b-685209f0dd77 scope = null +09:12:50.619 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:98a503d8-0599-47c2-a0b5-141bcb85947f +09:12:50.621 [XNIO-1 task-6] sqbZh2b8QEGgNUGoKF0o1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.621 [XNIO-1 task-6] sqbZh2b8QEGgNUGoKF0o1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.644 [XNIO-1 task-6] sqbZh2b8QEGgNUGoKF0o1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.644 [XNIO-1 task-6] sqbZh2b8QEGgNUGoKF0o1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNlMDE1MmMtNGZlZC00NDhjLTk1NGEtNWE0YzQ1OTI5OTU4OlduQlQtOVM5UlpxZkIxYWN6M1NSelE=", "Basic MmNlMDE1MmMtNGZlZC00NDhjLTk1NGEtNWE0YzQ1OTI5OTU4OlduQlQtOVM5UlpxZkIxYWN6M1NSelE=", authorization) +09:12:50.645 [XNIO-1 task-6] sqbZh2b8QEGgNUGoKF0o1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = hCbEc4LNTs69bJq_1OAhCA redirectUri = http://localhost:8080/authorization +09:12:50.655 [XNIO-1 task-6] sqbZh2b8QEGgNUGoKF0o1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:50.655 [XNIO-1 task-6] sqbZh2b8QEGgNUGoKF0o1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.659 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:98a503d8-0599-47c2-a0b5-141bcb85947f +09:12:50.660 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:07bfd24c +09:12:50.681 [XNIO-1 task-6] jML6xchUTDq-VYV4OUGhbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.681 [XNIO-1 task-6] jML6xchUTDq-VYV4OUGhbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.681 [XNIO-1 task-6] jML6xchUTDq-VYV4OUGhbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.681 [XNIO-1 task-6] jML6xchUTDq-VYV4OUGhbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XHSYVbwiS9mWASDvRAXg9Q redirectUri = http://localhost:8080/authorization +09:12:50.687 [XNIO-1 task-6] jML6xchUTDq-VYV4OUGhbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.700 [XNIO-1 task-6] wwIcULqVQmCwaNFNNRnHbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.701 [XNIO-1 task-6] wwIcULqVQmCwaNFNNRnHbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.701 [XNIO-1 task-6] wwIcULqVQmCwaNFNNRnHbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.701 [XNIO-1 task-6] wwIcULqVQmCwaNFNNRnHbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDFlODVhY2YtNzY2MC00YzhjLWJmOTEtYWY4NTkyMGJlZDc4OjFOblBEckxxVDQtdHVuX0oxVVF3OVE=", "Basic MDFlODVhY2YtNzY2MC00YzhjLWJmOTEtYWY4NTkyMGJlZDc4OjFOblBEckxxVDQtdHVuX0oxVVF3OVE=", authorization) +09:12:50.715 [XNIO-1 task-6] wwIcULqVQmCwaNFNNRnHbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.762 [XNIO-1 task-6] oSh42jDuRO2pn23C3SimOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.762 [XNIO-1 task-6] oSh42jDuRO2pn23C3SimOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.762 [XNIO-1 task-6] oSh42jDuRO2pn23C3SimOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.762 [XNIO-1 task-6] oSh42jDuRO2pn23C3SimOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDFlODVhY2YtNzY2MC00YzhjLWJmOTEtYWY4NTkyMGJlZDc4OjFOblBEckxxVDQtdHVuX0oxVVF3OVE=", "Basic MDFlODVhY2YtNzY2MC00YzhjLWJmOTEtYWY4NTkyMGJlZDc4OjFOblBEckxxVDQtdHVuX0oxVVF3OVE=", authorization) +09:12:50.767 [XNIO-1 task-6] oSh42jDuRO2pn23C3SimOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:50.768 [XNIO-1 task-6] oSh42jDuRO2pn23C3SimOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.775 [XNIO-1 task-4] fVFk4OXmQtKpAIjQYOp_Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.775 [XNIO-1 task-4] fVFk4OXmQtKpAIjQYOp_Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.775 [XNIO-1 task-4] fVFk4OXmQtKpAIjQYOp_Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.775 [XNIO-1 task-4] fVFk4OXmQtKpAIjQYOp_Mg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ah0VF6C0Q4SI7jrWC3-MVg redirectUri = http://localhost:8080/authorization +09:12:50.781 [XNIO-1 task-4] fVFk4OXmQtKpAIjQYOp_Mg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.789 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:edfb5771-80d4-48db-8cf8-22c9cefa4e88 +09:12:50.790 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:edfb5771-80d4-48db-8cf8-22c9cefa4e88 +09:12:50.794 [XNIO-1 task-4] uY5z-hyyS4apz99RVMsDFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.794 [XNIO-1 task-4] uY5z-hyyS4apz99RVMsDFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.794 [XNIO-1 task-4] uY5z-hyyS4apz99RVMsDFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.794 [XNIO-1 task-4] uY5z-hyyS4apz99RVMsDFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = abd19719-8064-46b3-9941-cf476fea7683 scope = null +09:12:50.806 [XNIO-1 task-4] uY5z-hyyS4apz99RVMsDFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.823 [XNIO-1 task-4] TwYUZOINSh6CZ8qBVFmWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.823 [XNIO-1 task-4] TwYUZOINSh6CZ8qBVFmWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.823 [XNIO-1 task-4] TwYUZOINSh6CZ8qBVFmWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.823 [XNIO-1 task-4] TwYUZOINSh6CZ8qBVFmWPw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2e59d06d-d2d9-4685-b4a0-209a03af9962 scope = null +09:12:50.835 [XNIO-1 task-4] TwYUZOINSh6CZ8qBVFmWPw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.857 [XNIO-1 task-4] EH88evI_SI61CJ_D9FCnYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.857 [XNIO-1 task-4] EH88evI_SI61CJ_D9FCnYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.858 [XNIO-1 task-4] EH88evI_SI61CJ_D9FCnYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.859 [XNIO-1 task-4] EH88evI_SI61CJ_D9FCnYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gu79EHP8Qgm89hIz_d4GgQ redirectUri = http://localhost:8080/authorization +09:12:50.865 [XNIO-1 task-4] EH88evI_SI61CJ_D9FCnYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.874 [XNIO-1 task-4] l-hno2ujQ1qd7TVfS1VCUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.875 [XNIO-1 task-4] l-hno2ujQ1qd7TVfS1VCUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.875 [XNIO-1 task-4] l-hno2ujQ1qd7TVfS1VCUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.875 [XNIO-1 task-4] l-hno2ujQ1qd7TVfS1VCUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:50.880 [XNIO-1 task-4] l-hno2ujQ1qd7TVfS1VCUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:50.881 [XNIO-1 task-4] l-hno2ujQ1qd7TVfS1VCUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.882 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b6aebfd3-4826-4d5d-a974-7f3d362c3112 +09:12:50.890 [XNIO-1 task-6] lNGkQHFCTced3GloDLKAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.890 [XNIO-1 task-6] lNGkQHFCTced3GloDLKAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.891 [XNIO-1 task-6] lNGkQHFCTced3GloDLKAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.891 [XNIO-1 task-6] lNGkQHFCTced3GloDLKAAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qPLrSmPHRuSixCPre9a2xg redirectUri = http://localhost:8080/authorization +09:12:50.893 [XNIO-1 task-4] eP5efs5jS7CvNGPUndrvFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.893 [XNIO-1 task-4] eP5efs5jS7CvNGPUndrvFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.893 [XNIO-1 task-4] eP5efs5jS7CvNGPUndrvFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:50.893 [XNIO-1 task-4] eP5efs5jS7CvNGPUndrvFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b6aebfd3-4826-4d5d-a974-7f3d362c3112 scope = null +09:12:50.898 [XNIO-1 task-6] lNGkQHFCTced3GloDLKAAg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:50.904 [XNIO-1 task-4] eP5efs5jS7CvNGPUndrvFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.927 [XNIO-1 task-4] 8-EcikFfRZys_R-A9WUUHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.928 [XNIO-1 task-4] 8-EcikFfRZys_R-A9WUUHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.928 [XNIO-1 task-4] 8-EcikFfRZys_R-A9WUUHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.928 [XNIO-1 task-4] 8-EcikFfRZys_R-A9WUUHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:50.934 [XNIO-1 task-6] Z6NusyQpSfyai75yRYEjxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.934 [XNIO-1 task-6] Z6NusyQpSfyai75yRYEjxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.934 [XNIO-1 task-6] Z6NusyQpSfyai75yRYEjxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.934 [XNIO-1 task-6] Z6NusyQpSfyai75yRYEjxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:50.936 [XNIO-1 task-4] 8-EcikFfRZys_R-A9WUUHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:50.936 [XNIO-1 task-4] 8-EcikFfRZys_R-A9WUUHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:50.942 [XNIO-1 task-6] Z6NusyQpSfyai75yRYEjxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.952 [XNIO-1 task-6] flyIRIwgQPmbYdcHODzaEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.953 [XNIO-1 task-6] flyIRIwgQPmbYdcHODzaEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.953 [XNIO-1 task-6] flyIRIwgQPmbYdcHODzaEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.953 [XNIO-1 task-6] flyIRIwgQPmbYdcHODzaEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:50.965 [XNIO-1 task-6] flyIRIwgQPmbYdcHODzaEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:50.975 [XNIO-1 task-6] a8mBJw0qQt6kn1gemAUk7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.976 [XNIO-1 task-6] a8mBJw0qQt6kn1gemAUk7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:50.976 [XNIO-1 task-6] a8mBJw0qQt6kn1gemAUk7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:50.976 [XNIO-1 task-6] a8mBJw0qQt6kn1gemAUk7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:50.986 [XNIO-1 task-6] a8mBJw0qQt6kn1gemAUk7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.002 [XNIO-1 task-6] DRyKDQQkTpqlNWLHp7eQHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.003 [XNIO-1 task-6] DRyKDQQkTpqlNWLHp7eQHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.003 [XNIO-1 task-6] DRyKDQQkTpqlNWLHp7eQHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.003 [XNIO-1 task-6] DRyKDQQkTpqlNWLHp7eQHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:51.008 [XNIO-1 task-6] DRyKDQQkTpqlNWLHp7eQHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.009 [XNIO-1 task-6] DRyKDQQkTpqlNWLHp7eQHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.010 [XNIO-1 task-4] 8_bPe_d3Tj2vZBp0hmj4ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.011 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9b76bf35-271b-4dd4-9506-b974a15361f9 +09:12:51.011 [XNIO-1 task-4] 8_bPe_d3Tj2vZBp0hmj4ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.011 [XNIO-1 task-4] 8_bPe_d3Tj2vZBp0hmj4ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.011 [XNIO-1 task-4] 8_bPe_d3Tj2vZBp0hmj4ZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WmncWR_VRDKjKhEc-BAOqA redirectUri = http://localhost:8080/authorization +09:12:51.018 [XNIO-1 task-4] 8_bPe_d3Tj2vZBp0hmj4ZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.020 [XNIO-1 task-6] v8ibiYPBQmOaPG_2Buh8Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.020 [XNIO-1 task-6] v8ibiYPBQmOaPG_2Buh8Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.020 [XNIO-1 task-6] v8ibiYPBQmOaPG_2Buh8Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.020 [XNIO-1 task-6] v8ibiYPBQmOaPG_2Buh8Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:51.026 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9b76bf35-271b-4dd4-9506-b974a15361f9 +09:12:51.027 [XNIO-1 task-4] DB2lfCBGTnyyK0RQkLx20w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.027 [XNIO-1 task-4] DB2lfCBGTnyyK0RQkLx20w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.027 [XNIO-1 task-4] DB2lfCBGTnyyK0RQkLx20w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.027 [XNIO-1 task-4] DB2lfCBGTnyyK0RQkLx20w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f2928bdc-715a-4359-8845-c13ef1d631be scope = null +09:12:51.030 [XNIO-1 task-6] v8ibiYPBQmOaPG_2Buh8Gw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.039 [XNIO-1 task-4] DB2lfCBGTnyyK0RQkLx20w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.040 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7fc03c1e +09:12:51.042 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:39fe0f0e-2107-42cc-b339-21b1c1401a38 +09:12:51.044 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:39fe0f0e-2107-42cc-b339-21b1c1401a38 +09:12:51.045 [XNIO-1 task-6] UrL46pErRSucJSZXview9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.045 [XNIO-1 task-6] UrL46pErRSucJSZXview9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.045 [XNIO-1 task-6] UrL46pErRSucJSZXview9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.045 [XNIO-1 task-6] UrL46pErRSucJSZXview9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 08b100b4-736f-4633-9ed5-b8a47c6b4550 scope = null +09:12:51.061 [XNIO-1 task-6] UrL46pErRSucJSZXview9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.080 [XNIO-1 task-6] iyCcyTXMR0O2TuuXE1Yghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.080 [XNIO-1 task-6] iyCcyTXMR0O2TuuXE1Yghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.080 [XNIO-1 task-6] iyCcyTXMR0O2TuuXE1Yghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.080 [XNIO-1 task-6] iyCcyTXMR0O2TuuXE1Yghw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = O5S-58BiRkqGJVjZMjPtCA redirectUri = http://localhost:8080/authorization +09:12:51.084 [XNIO-1 task-4] uBXjhCH2R_Svaog3GhDAUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.084 [XNIO-1 task-4] uBXjhCH2R_Svaog3GhDAUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.084 [XNIO-1 task-4] uBXjhCH2R_Svaog3GhDAUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.084 [XNIO-1 task-4] uBXjhCH2R_Svaog3GhDAUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Ha9go6uRSLOr4c3Hnvs9zw redirectUri = http://localhost:8080/authorization +09:12:51.086 [XNIO-1 task-6] iyCcyTXMR0O2TuuXE1Yghw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.092 [XNIO-1 task-4] uBXjhCH2R_Svaog3GhDAUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.092 [XNIO-1 task-4] uBXjhCH2R_Svaog3GhDAUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.124 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6a4b1881 +09:12:51.124 [XNIO-1 task-4] cRJ1pJUcR7yBtjhFkbS_tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.124 [XNIO-1 task-4] cRJ1pJUcR7yBtjhFkbS_tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.124 [XNIO-1 task-4] cRJ1pJUcR7yBtjhFkbS_tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.124 [XNIO-1 task-4] cRJ1pJUcR7yBtjhFkbS_tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:51.127 [XNIO-1 task-6] Ms7dYWK_RJe_grcqvjnmrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.127 [XNIO-1 task-6] Ms7dYWK_RJe_grcqvjnmrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.127 [XNIO-1 task-6] Ms7dYWK_RJe_grcqvjnmrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.127 [XNIO-1 task-6] Ms7dYWK_RJe_grcqvjnmrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", authorization) +09:12:51.130 [XNIO-1 task-4] cRJ1pJUcR7yBtjhFkbS_tg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:51.132 [XNIO-1 task-6] Ms7dYWK_RJe_grcqvjnmrA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.133 [XNIO-1 task-6] Ms7dYWK_RJe_grcqvjnmrA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.138 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:07bfd24c +09:12:51.153 [XNIO-1 task-6] TcPCSE3xQNCtqPEEj7F2qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.154 [XNIO-1 task-6] TcPCSE3xQNCtqPEEj7F2qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.154 [XNIO-1 task-6] TcPCSE3xQNCtqPEEj7F2qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.154 [XNIO-1 task-6] TcPCSE3xQNCtqPEEj7F2qg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gnkRt4iGQMyqwWokE3Zj9Q redirectUri = http://localhost:8080/authorization +09:12:51.160 [XNIO-1 task-6] TcPCSE3xQNCtqPEEj7F2qg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.174 [XNIO-1 task-6] q9HhPj4WTmyxyIad7AO_sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.174 [XNIO-1 task-6] q9HhPj4WTmyxyIad7AO_sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.174 [XNIO-1 task-6] q9HhPj4WTmyxyIad7AO_sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.174 [XNIO-1 task-6] q9HhPj4WTmyxyIad7AO_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:51.177 [XNIO-1 task-4] bAM2d-jLShqDRxWgVSvP9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.177 [XNIO-1 task-4] bAM2d-jLShqDRxWgVSvP9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.177 [XNIO-1 task-4] bAM2d-jLShqDRxWgVSvP9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.177 [XNIO-1 task-4] bAM2d-jLShqDRxWgVSvP9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:51.183 [XNIO-1 task-6] q9HhPj4WTmyxyIad7AO_sg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.183 [XNIO-1 task-6] q9HhPj4WTmyxyIad7AO_sg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.184 [XNIO-1 task-4] bAM2d-jLShqDRxWgVSvP9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.186 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e4764cfc-76ed-483f-9e21-962f7ae41b85 +09:12:51.195 [XNIO-1 task-4] wH0c83lPRj2p3AoVbjyLtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.196 [XNIO-1 task-4] wH0c83lPRj2p3AoVbjyLtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.196 [XNIO-1 task-4] wH0c83lPRj2p3AoVbjyLtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.196 [XNIO-1 task-4] wH0c83lPRj2p3AoVbjyLtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:51.197 [XNIO-1 task-6] Z9cAFB_6QgOJtlwyTCYNkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.198 [XNIO-1 task-6] Z9cAFB_6QgOJtlwyTCYNkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.198 [XNIO-1 task-6] Z9cAFB_6QgOJtlwyTCYNkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.198 [XNIO-1 task-6] Z9cAFB_6QgOJtlwyTCYNkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:51.204 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e4764cfc-76ed-483f-9e21-962f7ae41b85 +09:12:51.206 [XNIO-1 task-4] wH0c83lPRj2p3AoVbjyLtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.209 [XNIO-1 task-6] Z9cAFB_6QgOJtlwyTCYNkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.212 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1372b20e-bb59-4cb0-af7b-5b3353667020 +09:12:51.215 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7fc03c1e +09:12:51.226 [XNIO-1 task-6] zgqhp4pQRl2faF9RFE_rPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.226 [XNIO-1 task-6] zgqhp4pQRl2faF9RFE_rPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.226 [XNIO-1 task-6] zgqhp4pQRl2faF9RFE_rPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.226 [XNIO-1 task-6] zgqhp4pQRl2faF9RFE_rPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:51.231 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1372b20e-bb59-4cb0-af7b-5b3353667020 +09:12:51.237 [XNIO-1 task-6] zgqhp4pQRl2faF9RFE_rPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.259 [XNIO-1 task-6] RIzZ1YlcRkSuQJXofoY9VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.259 [XNIO-1 task-6] RIzZ1YlcRkSuQJXofoY9VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.259 [XNIO-1 task-6] RIzZ1YlcRkSuQJXofoY9VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.259 [XNIO-1 task-6] RIzZ1YlcRkSuQJXofoY9VA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qlhkUiImTdW_4diPcD-FUg redirectUri = http://localhost:8080/authorization +09:12:51.262 [XNIO-1 task-4] w3r1btVnTVCPEUapF8HM_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.262 [XNIO-1 task-4] w3r1btVnTVCPEUapF8HM_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.262 [XNIO-1 task-4] w3r1btVnTVCPEUapF8HM_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.262 [XNIO-1 task-4] w3r1btVnTVCPEUapF8HM_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OCLOEElzQQCr9_U-DpNrgQ redirectUri = http://localhost:8080/authorization +09:12:51.265 [XNIO-1 task-6] RIzZ1YlcRkSuQJXofoY9VA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.270 [XNIO-1 task-4] w3r1btVnTVCPEUapF8HM_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.270 [XNIO-1 task-4] w3r1btVnTVCPEUapF8HM_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.272 [XNIO-1 task-6] gvFSjAdSQcK7-kW6dqj5ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.272 [XNIO-1 task-6] gvFSjAdSQcK7-kW6dqj5ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.272 [XNIO-1 task-6] gvFSjAdSQcK7-kW6dqj5ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.272 [XNIO-1 task-6] gvFSjAdSQcK7-kW6dqj5ng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 04d3adca-b0a6-448e-b471-0fd8aa240307 scope = null +09:12:51.281 [XNIO-1 task-6] gvFSjAdSQcK7-kW6dqj5ng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.289 [XNIO-1 task-6] lGnMaNK1QUK-MoouFV2raA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.289 [XNIO-1 task-6] lGnMaNK1QUK-MoouFV2raA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.289 [XNIO-1 task-6] lGnMaNK1QUK-MoouFV2raA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.290 [XNIO-1 task-6] lGnMaNK1QUK-MoouFV2raA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ae53c2c7-b7e6-48dd-8ed5-16c78ecae3bb scope = null +09:12:51.293 [XNIO-1 task-4] mPzDFPrpSzCUT1R1ad1Giw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.293 [XNIO-1 task-4] mPzDFPrpSzCUT1R1ad1Giw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.293 [XNIO-1 task-4] mPzDFPrpSzCUT1R1ad1Giw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.294 [XNIO-1 task-4] mPzDFPrpSzCUT1R1ad1Giw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c49fa05e-ad2d-4fc2-b353-5caeeb532b5b scope = null +09:12:51.300 [XNIO-1 task-6] lGnMaNK1QUK-MoouFV2raA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.305 [XNIO-1 task-4] mPzDFPrpSzCUT1R1ad1Giw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.326 [XNIO-1 task-4] ezW09rEkQF6Voto6hFqq1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.326 [XNIO-1 task-4] ezW09rEkQF6Voto6hFqq1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.326 [XNIO-1 task-4] ezW09rEkQF6Voto6hFqq1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.326 [XNIO-1 task-6] Tv5dmgAMQrWnZ2RUgkJLvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.326 [XNIO-1 task-6] Tv5dmgAMQrWnZ2RUgkJLvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.326 [XNIO-1 task-4] ezW09rEkQF6Voto6hFqq1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 57b573be-adae-4aa9-bea4-db9e0b2218da scope = null +09:12:51.326 [XNIO-1 task-6] Tv5dmgAMQrWnZ2RUgkJLvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.327 [XNIO-1 task-6] Tv5dmgAMQrWnZ2RUgkJLvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -_aMILTOTdCy_23Cx8qWdQ redirectUri = http://localhost:8080/authorization +09:12:51.332 [XNIO-1 task-6] Tv5dmgAMQrWnZ2RUgkJLvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.333 [XNIO-1 task-4] ezW09rEkQF6Voto6hFqq1g ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:51.396 [XNIO-1 task-4] jTj-dUIWRviH7a1ktivb8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.396 [XNIO-1 task-4] jTj-dUIWRviH7a1ktivb8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.396 [XNIO-1 task-4] jTj-dUIWRviH7a1ktivb8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.396 [XNIO-1 task-4] jTj-dUIWRviH7a1ktivb8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 44b9c074-ff72-4323-8e6b-701f915a4a0a scope = null +09:12:51.421 [XNIO-1 task-5] FX031rvoSpeVTKDPpb0m8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.421 [XNIO-1 task-5] FX031rvoSpeVTKDPpb0m8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.422 [XNIO-1 task-5] FX031rvoSpeVTKDPpb0m8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.422 [XNIO-1 task-5] FX031rvoSpeVTKDPpb0m8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = E_WXWZsjSCitPWpfzbj--Q redirectUri = http://localhost:8080/authorization +09:12:51.422 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:07bfd24c +09:12:51.452 [XNIO-1 task-4] jTj-dUIWRviH7a1ktivb8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.452 [XNIO-1 task-5] FX031rvoSpeVTKDPpb0m8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.497 [XNIO-1 task-6] 0ZRaicuRR66ZPayAC5K0AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.497 [XNIO-1 task-6] 0ZRaicuRR66ZPayAC5K0AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.497 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6a4b1881 +09:12:51.522 [XNIO-1 task-6] 0ZRaicuRR66ZPayAC5K0AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.523 [XNIO-1 task-6] 0ZRaicuRR66ZPayAC5K0AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:51.528 [XNIO-1 task-4] gXrodfHrRaGSIQ934KhUkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.528 [XNIO-1 task-4] gXrodfHrRaGSIQ934KhUkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.528 [XNIO-1 task-6] 0ZRaicuRR66ZPayAC5K0AA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.528 [XNIO-1 task-4] gXrodfHrRaGSIQ934KhUkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.528 [XNIO-1 task-4] gXrodfHrRaGSIQ934KhUkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:51.537 [XNIO-1 task-6] sTPYzXMnQBO3uvZwgZrhrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.537 [XNIO-1 task-6] sTPYzXMnQBO3uvZwgZrhrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.537 [XNIO-1 task-6] sTPYzXMnQBO3uvZwgZrhrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.538 [XNIO-1 task-5] G0Ofk1j0RdGcmRwL-LXy3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.538 [XNIO-1 task-6] sTPYzXMnQBO3uvZwgZrhrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.538 [XNIO-1 task-5] G0Ofk1j0RdGcmRwL-LXy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.538 [XNIO-1 task-6] sTPYzXMnQBO3uvZwgZrhrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:51.538 [XNIO-1 task-5] G0Ofk1j0RdGcmRwL-LXy3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:51.541 [XNIO-1 task-4] gXrodfHrRaGSIQ934KhUkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.543 [XNIO-1 task-6] sTPYzXMnQBO3uvZwgZrhrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.551 [XNIO-1 task-5] G0Ofk1j0RdGcmRwL-LXy3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.553 [XNIO-1 task-6] Nt5vhpciTHiz5Oa1a2fOlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.553 [XNIO-1 task-6] Nt5vhpciTHiz5Oa1a2fOlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.553 [XNIO-1 task-6] Nt5vhpciTHiz5Oa1a2fOlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.553 [XNIO-1 task-6] Nt5vhpciTHiz5Oa1a2fOlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:51.558 [XNIO-1 task-6] Nt5vhpciTHiz5Oa1a2fOlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.566 [XNIO-1 task-5] 1gsgWVwsTFOfSllG-7ceMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.566 [XNIO-1 task-5] 1gsgWVwsTFOfSllG-7ceMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.566 [XNIO-1 task-5] 1gsgWVwsTFOfSllG-7ceMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.566 [XNIO-1 task-5] 1gsgWVwsTFOfSllG-7ceMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:51.569 [XNIO-1 task-6] -FwJiMV4SFSn0JKNsyS3hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.569 [XNIO-1 task-6] -FwJiMV4SFSn0JKNsyS3hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.569 [XNIO-1 task-6] -FwJiMV4SFSn0JKNsyS3hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.569 [XNIO-1 task-6] -FwJiMV4SFSn0JKNsyS3hg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:51.571 [XNIO-1 task-5] 1gsgWVwsTFOfSllG-7ceMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.576 [XNIO-1 task-5] llE0GtAwQt6mBb4wTyvuLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.576 [XNIO-1 task-5] llE0GtAwQt6mBb4wTyvuLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.576 [XNIO-1 task-5] llE0GtAwQt6mBb4wTyvuLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.576 [XNIO-1 task-5] llE0GtAwQt6mBb4wTyvuLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.576 [XNIO-1 task-5] llE0GtAwQt6mBb4wTyvuLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNlMDE1MmMtNGZlZC00NDhjLTk1NGEtNWE0YzQ1OTI5OTU4OlduQlQtOVM5UlpxZkIxYWN6M1NSelE=", "Basic MmNlMDE1MmMtNGZlZC00NDhjLTk1NGEtNWE0YzQ1OTI5OTU4OlduQlQtOVM5UlpxZkIxYWN6M1NSelE=", authorization) +09:12:51.577 [XNIO-1 task-5] llE0GtAwQt6mBb4wTyvuLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QmCuh300Q3C7BWiHnO7ziw redirectUri = http://localhost:8080/authorization +09:12:51.578 [XNIO-1 task-4] H9f0GBceSqKURKphyf6eAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.579 [XNIO-1 task-4] H9f0GBceSqKURKphyf6eAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +09:12:51.579 [XNIO-1 task-4] H9f0GBceSqKURKphyf6eAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +09:12:51.579 [XNIO-1 task-4] H9f0GBceSqKURKphyf6eAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:12:51.583 [XNIO-1 task-5] llE0GtAwQt6mBb4wTyvuLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:12:51.589 [XNIO-1 task-4] osEB8NrvT_qLlThu7jf5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.589 [XNIO-1 task-4] osEB8NrvT_qLlThu7jf5hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.589 [XNIO-1 task-4] osEB8NrvT_qLlThu7jf5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.589 [XNIO-1 task-4] osEB8NrvT_qLlThu7jf5hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.589 [XNIO-1 task-4] osEB8NrvT_qLlThu7jf5hA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + +09:12:51.592 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7fc03c1e +09:12:51.593 [XNIO-1 task-6] BWQvSfliT5apHI49Nb9swA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.593 [XNIO-1 task-6] BWQvSfliT5apHI49Nb9swA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.593 [XNIO-1 task-6] BWQvSfliT5apHI49Nb9swA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.593 [XNIO-1 task-6] BWQvSfliT5apHI49Nb9swA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2dcfaa9e-d8f6-47ff-bd5b-7343ee708b15 scope = null +09:12:51.595 [XNIO-1 task-4] osEB8NrvT_qLlThu7jf5hA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.600 [XNIO-1 task-4] 5QYILWhTS5eL_N3MZk_osg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.601 [XNIO-1 task-4] 5QYILWhTS5eL_N3MZk_osg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.601 [XNIO-1 task-4] 5QYILWhTS5eL_N3MZk_osg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.601 [XNIO-1 task-4] 5QYILWhTS5eL_N3MZk_osg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sLP2cevmQRST5jkylZdEBg redirectUri = http://localhost:8080/authorization +09:12:51.602 [XNIO-1 task-6] BWQvSfliT5apHI49Nb9swA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.603 [XNIO-1 task-5] aXajnZY9RSmkYZXngdcC3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.603 [XNIO-1 task-5] aXajnZY9RSmkYZXngdcC3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.603 [XNIO-1 task-5] aXajnZY9RSmkYZXngdcC3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.603 [XNIO-1 task-5] aXajnZY9RSmkYZXngdcC3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.605 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:60327be3-0fdd-4c5c-bc70-00e7aa067157 +09:12:51.606 [XNIO-1 task-4] 5QYILWhTS5eL_N3MZk_osg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:51.609 [XNIO-1 task-5] aXajnZY9RSmkYZXngdcC3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.612 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:edfb5771-80d4-48db-8cf8-22c9cefa4e88 +09:12:51.614 [XNIO-1 task-5] rd8rDcT-SNGEiODUBsqB2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.614 [XNIO-1 task-5] rd8rDcT-SNGEiODUBsqB2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.614 [XNIO-1 task-5] rd8rDcT-SNGEiODUBsqB2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.614 [XNIO-1 task-5] rd8rDcT-SNGEiODUBsqB2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:51.620 [XNIO-1 task-5] rd8rDcT-SNGEiODUBsqB2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.624 [XNIO-1 task-5] 9-BGNFOxTnyTUjQ5z1Mf7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.624 [XNIO-1 task-5] 9-BGNFOxTnyTUjQ5z1Mf7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.624 [XNIO-1 task-5] 9-BGNFOxTnyTUjQ5z1Mf7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.624 [XNIO-1 task-5] 9-BGNFOxTnyTUjQ5z1Mf7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:51.629 [XNIO-1 task-5] 9-BGNFOxTnyTUjQ5z1Mf7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.631 [XNIO-1 task-6] L7we1L5yS8mB1OuaNuvz3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.631 [XNIO-1 task-6] L7we1L5yS8mB1OuaNuvz3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.632 [XNIO-1 task-6] L7we1L5yS8mB1OuaNuvz3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.632 [XNIO-1 task-6] L7we1L5yS8mB1OuaNuvz3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:51.636 [XNIO-1 task-5] a7dSeZY9QR2r5kMwau9E9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.639 [XNIO-1 task-5] a7dSeZY9QR2r5kMwau9E9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.639 [XNIO-1 task-5] a7dSeZY9QR2r5kMwau9E9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.639 [XNIO-1 task-5] a7dSeZY9QR2r5kMwau9E9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:51.640 [XNIO-1 task-6] L7we1L5yS8mB1OuaNuvz3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.640 [XNIO-1 task-6] L7we1L5yS8mB1OuaNuvz3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.641 [XNIO-1 task-4] iVlt0h5cSce9CFXbN4Ieog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.641 [XNIO-1 task-4] iVlt0h5cSce9CFXbN4Ieog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.641 [XNIO-1 task-4] iVlt0h5cSce9CFXbN4Ieog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.641 [XNIO-1 task-4] iVlt0h5cSce9CFXbN4Ieog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0nj-tfg-Qum1IYH22G1KCg redirectUri = http://localhost:8080/authorization +09:12:51.644 [XNIO-1 task-5] a7dSeZY9QR2r5kMwau9E9A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.647 [XNIO-1 task-5] rcJqcCX8S8OPc3T4hLCYFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.648 [XNIO-1 task-5] rcJqcCX8S8OPc3T4hLCYFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.648 [XNIO-1 task-5] rcJqcCX8S8OPc3T4hLCYFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.648 [XNIO-1 task-5] rcJqcCX8S8OPc3T4hLCYFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.649 [XNIO-1 task-4] iVlt0h5cSce9CFXbN4Ieog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.653 [XNIO-1 task-5] rcJqcCX8S8OPc3T4hLCYFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.660 [XNIO-1 task-4] nk_h4Wi3Rj2TwYtT4Z0Nrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.660 [XNIO-1 task-4] nk_h4Wi3Rj2TwYtT4Z0Nrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.660 [XNIO-1 task-4] nk_h4Wi3Rj2TwYtT4Z0Nrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.661 [XNIO-1 task-4] nk_h4Wi3Rj2TwYtT4Z0Nrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:51.663 [XNIO-1 task-5] v5yb9mJDQpi4tGaXiS2-gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.663 [XNIO-1 task-5] v5yb9mJDQpi4tGaXiS2-gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.663 [XNIO-1 task-5] v5yb9mJDQpi4tGaXiS2-gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.663 [XNIO-1 task-5] v5yb9mJDQpi4tGaXiS2-gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDFlODVhY2YtNzY2MC00YzhjLWJmOTEtYWY4NTkyMGJlZDc4OjFOblBEckxxVDQtdHVuX0oxVVF3OVE=", "Basic MDFlODVhY2YtNzY2MC00YzhjLWJmOTEtYWY4NTkyMGJlZDc4OjFOblBEckxxVDQtdHVuX0oxVVF3OVE=", authorization) +09:12:51.665 [XNIO-1 task-4] nk_h4Wi3Rj2TwYtT4Z0Nrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.671 [XNIO-1 task-5] v5yb9mJDQpi4tGaXiS2-gg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:51.678 [XNIO-1 task-5] qCS6Ktt_Qxizn0vu5Pbbkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.678 [XNIO-1 task-5] qCS6Ktt_Qxizn0vu5Pbbkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.678 [XNIO-1 task-5] qCS6Ktt_Qxizn0vu5Pbbkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.678 [XNIO-1 task-5] qCS6Ktt_Qxizn0vu5Pbbkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.685 [XNIO-1 task-5] qCS6Ktt_Qxizn0vu5Pbbkg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.694 [XNIO-1 task-5] jCcVnCr_TSi8qkBXSOXEQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.694 [XNIO-1 task-5] jCcVnCr_TSi8qkBXSOXEQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.694 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:79dde0bd-b7c4-458a-ad36-b4b0c335f742 +09:12:51.694 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:79dde0bd-b7c4-458a-ad36-b4b0c335f742 +09:12:51.695 [XNIO-1 task-5] jCcVnCr_TSi8qkBXSOXEQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:51.700 [XNIO-1 task-5] jCcVnCr_TSi8qkBXSOXEQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.712 [XNIO-1 task-5] L82-zbjaRPKQ-qG6XDfmuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.712 [XNIO-1 task-5] L82-zbjaRPKQ-qG6XDfmuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.712 [XNIO-1 task-4] 2iZGCcynSoOYWQ1RGJsEQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.712 [XNIO-1 task-4] 2iZGCcynSoOYWQ1RGJsEQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.712 [XNIO-1 task-4] 2iZGCcynSoOYWQ1RGJsEQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.712 [XNIO-1 task-4] 2iZGCcynSoOYWQ1RGJsEQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.712 [XNIO-1 task-5] L82-zbjaRPKQ-qG6XDfmuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:51.712 [XNIO-1 task-4] 2iZGCcynSoOYWQ1RGJsEQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:51.718 [XNIO-1 task-4] 2iZGCcynSoOYWQ1RGJsEQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.719 [XNIO-1 task-5] L82-zbjaRPKQ-qG6XDfmuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.720 [XNIO-1 task-5] L82-zbjaRPKQ-qG6XDfmuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.722 [XNIO-1 task-4] fhUI8SIGRLiTjMi66zfyjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.722 [XNIO-1 task-4] fhUI8SIGRLiTjMi66zfyjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.722 [XNIO-1 task-4] fhUI8SIGRLiTjMi66zfyjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.722 [XNIO-1 task-4] fhUI8SIGRLiTjMi66zfyjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.729 [XNIO-1 task-4] fhUI8SIGRLiTjMi66zfyjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.736 [XNIO-1 task-4] Fv31mKKSSAu0y4uC6_wYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.736 [XNIO-1 task-4] Fv31mKKSSAu0y4uC6_wYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.736 [XNIO-1 task-4] Fv31mKKSSAu0y4uC6_wYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.736 [XNIO-1 task-4] Fv31mKKSSAu0y4uC6_wYIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.742 [XNIO-1 task-4] Fv31mKKSSAu0y4uC6_wYIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.745 [XNIO-1 task-5] 4II-XPdaTMKWA9T7mElbNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.745 [XNIO-1 task-5] 4II-XPdaTMKWA9T7mElbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.746 [XNIO-1 task-4] y4xYuJpfQHyrSxmBd3UEKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.746 [XNIO-1 task-5] 4II-XPdaTMKWA9T7mElbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.746 [XNIO-1 task-4] y4xYuJpfQHyrSxmBd3UEKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.746 [XNIO-1 task-5] 4II-XPdaTMKWA9T7mElbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.746 [XNIO-1 task-5] 4II-XPdaTMKWA9T7mElbNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:51.746 [XNIO-1 task-5] 4II-XPdaTMKWA9T7mElbNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.748 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:db46ef01 +09:12:51.751 [XNIO-1 task-5] 4II-XPdaTMKWA9T7mElbNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.752 [XNIO-1 task-4] y4xYuJpfQHyrSxmBd3UEKw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:51.760 [XNIO-1 task-5] uRCvcYlPQg6fmpCxNJQ_tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.760 [XNIO-1 task-5] uRCvcYlPQg6fmpCxNJQ_tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.760 [XNIO-1 task-5] uRCvcYlPQg6fmpCxNJQ_tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.760 [XNIO-1 task-5] uRCvcYlPQg6fmpCxNJQ_tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:51.762 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6a4b1881 +09:12:51.766 [XNIO-1 task-5] uRCvcYlPQg6fmpCxNJQ_tg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.778 [XNIO-1 task-5] 6F7ypylwR7GK0te3XDjZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.778 [XNIO-1 task-5] 6F7ypylwR7GK0te3XDjZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.778 [XNIO-1 task-5] 6F7ypylwR7GK0te3XDjZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.778 [XNIO-1 task-5] 6F7ypylwR7GK0te3XDjZvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.783 [XNIO-1 task-4] tlgy-296SfOUj2d9_r0AMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.783 [XNIO-1 task-4] tlgy-296SfOUj2d9_r0AMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.783 [XNIO-1 task-4] tlgy-296SfOUj2d9_r0AMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.783 [XNIO-1 task-4] tlgy-296SfOUj2d9_r0AMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QCP7Q0pCTn-vZ6yM1ofGmw redirectUri = http://localhost:8080/authorization +09:12:51.783 [XNIO-1 task-5] 6F7ypylwR7GK0te3XDjZvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.789 [XNIO-1 task-5] 51l9u772QZCHfrzFLHNjfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.791 [XNIO-1 task-5] 51l9u772QZCHfrzFLHNjfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.791 [XNIO-1 task-4] tlgy-296SfOUj2d9_r0AMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.791 [XNIO-1 task-5] 51l9u772QZCHfrzFLHNjfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.792 [XNIO-1 task-5] 51l9u772QZCHfrzFLHNjfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", authorization) +09:12:51.797 [XNIO-1 task-5] 51l9u772QZCHfrzFLHNjfQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.806 [XNIO-1 task-5] bn_GdzogSxKRFckMc0k3Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.806 [XNIO-1 task-5] bn_GdzogSxKRFckMc0k3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.806 [XNIO-1 task-6] RVx_rXW7TxaMMhkW-8mllQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.806 [XNIO-1 task-4] GtCsO8luQjiI0RA5D1uw1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.806 [XNIO-1 task-5] bn_GdzogSxKRFckMc0k3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.806 [XNIO-1 task-6] RVx_rXW7TxaMMhkW-8mllQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.806 [XNIO-1 task-4] GtCsO8luQjiI0RA5D1uw1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.806 [XNIO-1 task-4] GtCsO8luQjiI0RA5D1uw1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.806 [XNIO-1 task-6] RVx_rXW7TxaMMhkW-8mllQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.806 [XNIO-1 task-4] GtCsO8luQjiI0RA5D1uw1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:51.806 [XNIO-1 task-6] RVx_rXW7TxaMMhkW-8mllQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:51.806 [XNIO-1 task-6] RVx_rXW7TxaMMhkW-8mllQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e9fc7453-0f06-4eb8-b8b4-e37ff29a556d scope = null +09:12:51.812 [XNIO-1 task-4] GtCsO8luQjiI0RA5D1uw1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.812 [XNIO-1 task-4] GtCsO8luQjiI0RA5D1uw1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.813 [XNIO-1 task-5] bn_GdzogSxKRFckMc0k3Ww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.818 [XNIO-1 task-5] qRn0ZLpiRKKYu5l6aSHbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.819 [XNIO-1 task-6] RVx_rXW7TxaMMhkW-8mllQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.819 [XNIO-1 task-6] RVx_rXW7TxaMMhkW-8mllQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.819 [XNIO-1 task-5] qRn0ZLpiRKKYu5l6aSHbHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.820 [XNIO-1 task-5] qRn0ZLpiRKKYu5l6aSHbHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.825 [XNIO-1 task-5] qRn0ZLpiRKKYu5l6aSHbHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.831 [XNIO-1 task-5] ml8grcCsSN65FAL0hYZP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.831 [XNIO-1 task-5] ml8grcCsSN65FAL0hYZP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.831 [XNIO-1 task-5] ml8grcCsSN65FAL0hYZP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.831 [XNIO-1 task-5] ml8grcCsSN65FAL0hYZP_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.836 [XNIO-1 task-5] ml8grcCsSN65FAL0hYZP_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.842 [XNIO-1 task-5] MtKPPpJ9TEm0m9wOJ7K7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.842 [XNIO-1 task-5] MtKPPpJ9TEm0m9wOJ7K7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.842 [XNIO-1 task-5] MtKPPpJ9TEm0m9wOJ7K7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.842 [XNIO-1 task-5] MtKPPpJ9TEm0m9wOJ7K7ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.848 [XNIO-1 task-5] MtKPPpJ9TEm0m9wOJ7K7ig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.857 [XNIO-1 task-5] yVOpALFeQwWBexZI50HKvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.857 [XNIO-1 task-5] yVOpALFeQwWBexZI50HKvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.858 [XNIO-1 task-5] yVOpALFeQwWBexZI50HKvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.858 [XNIO-1 task-5] yVOpALFeQwWBexZI50HKvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.860 [XNIO-1 task-6] pREPXSWbRcqLNdv2ZN4m9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.860 [XNIO-1 task-6] pREPXSWbRcqLNdv2ZN4m9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.860 [XNIO-1 task-6] pREPXSWbRcqLNdv2ZN4m9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.861 [XNIO-1 task-6] pREPXSWbRcqLNdv2ZN4m9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1t1lhmfJQmCozEzGyXql7Q redirectUri = http://localhost:8080/authorization +09:12:51.863 [XNIO-1 task-5] yVOpALFeQwWBexZI50HKvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.868 [XNIO-1 task-6] pREPXSWbRcqLNdv2ZN4m9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.872 [XNIO-1 task-5] ON1ikXm5T4qzdoU3QlTntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.872 [XNIO-1 task-5] ON1ikXm5T4qzdoU3QlTntg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.872 [XNIO-1 task-5] ON1ikXm5T4qzdoU3QlTntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.872 [XNIO-1 task-5] ON1ikXm5T4qzdoU3QlTntg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:51.877 [XNIO-1 task-5] ON1ikXm5T4qzdoU3QlTntg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.886 [XNIO-1 task-5] 8naUwgk0QPKXui9AWKw-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.886 [XNIO-1 task-5] 8naUwgk0QPKXui9AWKw-9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.886 [XNIO-1 task-5] 8naUwgk0QPKXui9AWKw-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.887 [XNIO-1 task-5] 8naUwgk0QPKXui9AWKw-9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", authorization) +09:12:51.889 [XNIO-1 task-6] DQQBpX0sRCKIqN-fbS0g0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.889 [XNIO-1 task-6] DQQBpX0sRCKIqN-fbS0g0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.889 [XNIO-1 task-6] DQQBpX0sRCKIqN-fbS0g0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.889 [XNIO-1 task-6] DQQBpX0sRCKIqN-fbS0g0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:51.892 [XNIO-1 task-5] 8naUwgk0QPKXui9AWKw-9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.896 [XNIO-1 task-5] HBCfch1vRwuBUE88kwIDJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.897 [XNIO-1 task-5] HBCfch1vRwuBUE88kwIDJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.897 [XNIO-1 task-5] HBCfch1vRwuBUE88kwIDJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.897 [XNIO-1 task-5] HBCfch1vRwuBUE88kwIDJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", authorization) +09:12:51.897 [XNIO-1 task-6] DQQBpX0sRCKIqN-fbS0g0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.897 [XNIO-1 task-6] DQQBpX0sRCKIqN-fbS0g0g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.902 [XNIO-1 task-5] HBCfch1vRwuBUE88kwIDJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.912 [XNIO-1 task-6] YI5UF1N8T-WNLTYNjoAxZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.912 [XNIO-1 task-6] YI5UF1N8T-WNLTYNjoAxZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.912 [XNIO-1 task-6] YI5UF1N8T-WNLTYNjoAxZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.913 [XNIO-1 task-6] YI5UF1N8T-WNLTYNjoAxZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.917 [XNIO-1 task-6] YI5UF1N8T-WNLTYNjoAxZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.924 [XNIO-1 task-6] qsF8n9BlTq-IhRPCtshf_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.924 [XNIO-1 task-6] qsF8n9BlTq-IhRPCtshf_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.924 [XNIO-1 task-6] qsF8n9BlTq-IhRPCtshf_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.924 [XNIO-1 task-6] qsF8n9BlTq-IhRPCtshf_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.929 [XNIO-1 task-6] qsF8n9BlTq-IhRPCtshf_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.941 [XNIO-1 task-6] wX1_SthXQEGOzkLo47lGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.941 [XNIO-1 task-6] wX1_SthXQEGOzkLo47lGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.941 [XNIO-1 task-6] wX1_SthXQEGOzkLo47lGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.941 [XNIO-1 task-6] wX1_SthXQEGOzkLo47lGxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.947 [XNIO-1 task-6] wX1_SthXQEGOzkLo47lGxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.948 [XNIO-1 task-5] Wwv9u6QgQfi6P0rUZ8XPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.948 [XNIO-1 task-5] Wwv9u6QgQfi6P0rUZ8XPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.948 [XNIO-1 task-5] Wwv9u6QgQfi6P0rUZ8XPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.949 [XNIO-1 task-5] Wwv9u6QgQfi6P0rUZ8XPeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BRY81X0BSV-_hFTFn6JiRA redirectUri = http://localhost:8080/authorization +09:12:51.954 [XNIO-1 task-4] DdTxTNT6QFy88chw5gM1VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.955 [XNIO-1 task-5] Wwv9u6QgQfi6P0rUZ8XPeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.955 [XNIO-1 task-4] DdTxTNT6QFy88chw5gM1VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:51.955 [XNIO-1 task-4] DdTxTNT6QFy88chw5gM1VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.955 [XNIO-1 task-5] Wwv9u6QgQfi6P0rUZ8XPeg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.955 [XNIO-1 task-4] DdTxTNT6QFy88chw5gM1VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:51.955 [XNIO-1 task-5] Wwv9u6QgQfi6P0rUZ8XPeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.955 [XNIO-1 task-6] myPBCfhJT269ovrjSnc8nA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmY4YzQzOGUtNmFhNS00N2U5LWI4YzYtYmY5YjVjNDYwMmNiOkNxQVlxT1NvU0Myc3U0Zk1aSV9YQmc=", "Basic MmY4YzQzOGUtNmFhNS00N2U5LWI4YzYtYmY5YjVjNDYwMmNiOkNxQVlxT1NvU0Myc3U0Zk1aSV9YQmc=", authorization) +09:12:51.955 [XNIO-1 task-6] myPBCfhJT269ovrjSnc8nA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.961 [XNIO-1 task-6] myPBCfhJT269ovrjSnc8nA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:51.961 [XNIO-1 task-4] DdTxTNT6QFy88chw5gM1VA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:51.961 [XNIO-1 task-4] DdTxTNT6QFy88chw5gM1VA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.963 [XNIO-1 task-5] f7GUkukpQNmRFC-8qUqU7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.963 [XNIO-1 task-5] f7GUkukpQNmRFC-8qUqU7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.963 [XNIO-1 task-5] f7GUkukpQNmRFC-8qUqU7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.963 [XNIO-1 task-5] f7GUkukpQNmRFC-8qUqU7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ab50a191-ad5f-485d-8692-0bae97f05973 scope = null +09:12:51.968 [XNIO-1 task-6] s-3eKSTpSLqqBKnbbkq2ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.968 [XNIO-1 task-6] s-3eKSTpSLqqBKnbbkq2ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.968 [XNIO-1 task-6] s-3eKSTpSLqqBKnbbkq2ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.968 [XNIO-1 task-6] s-3eKSTpSLqqBKnbbkq2ug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.973 [XNIO-1 task-4] 7K5ZrAHqRvm8TtCNB9Qx8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.973 [XNIO-1 task-4] 7K5ZrAHqRvm8TtCNB9Qx8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.973 [XNIO-1 task-4] 7K5ZrAHqRvm8TtCNB9Qx8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.973 [XNIO-1 task-4] 7K5ZrAHqRvm8TtCNB9Qx8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 21160b9b-d0f9-4122-90d2-a4426633f128 scope = null +09:12:51.974 [XNIO-1 task-6] s-3eKSTpSLqqBKnbbkq2ug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.977 [XNIO-1 task-6] _QBrGapoTSW0IZkx0sEA4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.977 [XNIO-1 task-6] _QBrGapoTSW0IZkx0sEA4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.977 [XNIO-1 task-6] _QBrGapoTSW0IZkx0sEA4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.978 [XNIO-1 task-6] _QBrGapoTSW0IZkx0sEA4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.978 [XNIO-1 task-5] f7GUkukpQNmRFC-8qUqU7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.983 [XNIO-1 task-6] _QBrGapoTSW0IZkx0sEA4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.984 [XNIO-1 task-4] 7K5ZrAHqRvm8TtCNB9Qx8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.987 [XNIO-1 task-6] h0HJ6aj7S625IjsMahCT5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.987 [XNIO-1 task-6] h0HJ6aj7S625IjsMahCT5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.988 [XNIO-1 task-6] h0HJ6aj7S625IjsMahCT5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.988 [XNIO-1 task-6] h0HJ6aj7S625IjsMahCT5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:51.993 [XNIO-1 task-6] h0HJ6aj7S625IjsMahCT5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:51.995 [XNIO-1 task-4] PaOPlkUQSfyrzwOm-AgBnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.995 [XNIO-1 task-4] PaOPlkUQSfyrzwOm-AgBnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.996 [XNIO-1 task-4] PaOPlkUQSfyrzwOm-AgBnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.996 [XNIO-1 task-4] PaOPlkUQSfyrzwOm-AgBnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9a10808b-2c9b-440a-92ee-bc98f8ee0392 scope = null +09:12:51.998 [XNIO-1 task-6] VfLEqF9CS4a7lOtcqhIQfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.998 [XNIO-1 task-6] VfLEqF9CS4a7lOtcqhIQfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.998 [XNIO-1 task-6] VfLEqF9CS4a7lOtcqhIQfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:51.998 [XNIO-1 task-6] VfLEqF9CS4a7lOtcqhIQfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.003 [XNIO-1 task-6] VfLEqF9CS4a7lOtcqhIQfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.009 [XNIO-1 task-4] PaOPlkUQSfyrzwOm-AgBnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.012 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:de7e617f-813a-4d76-879f-1abc4fb4e500 +09:12:52.012 [XNIO-1 task-6] N9e8NIvxRtKn21eT2Ba_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.012 [XNIO-1 task-6] N9e8NIvxRtKn21eT2Ba_8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.012 [XNIO-1 task-6] N9e8NIvxRtKn21eT2Ba_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.012 [XNIO-1 task-6] N9e8NIvxRtKn21eT2Ba_8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.018 [XNIO-1 task-6] N9e8NIvxRtKn21eT2Ba_8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.018 [XNIO-1 task-6] N9e8NIvxRtKn21eT2Ba_8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.019 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:19cd521f +09:12:52.030 [XNIO-1 task-6] n628oqZ0RbecwJsPqN-m5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.030 [XNIO-1 task-6] n628oqZ0RbecwJsPqN-m5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.030 [XNIO-1 task-6] n628oqZ0RbecwJsPqN-m5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.031 [XNIO-1 task-6] n628oqZ0RbecwJsPqN-m5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.036 [XNIO-1 task-6] n628oqZ0RbecwJsPqN-m5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.039 [XNIO-1 task-6] pLQeTRqHTcG15hNjS11hIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.039 [XNIO-1 task-6] pLQeTRqHTcG15hNjS11hIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.039 [XNIO-1 task-6] pLQeTRqHTcG15hNjS11hIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.040 [XNIO-1 task-6] pLQeTRqHTcG15hNjS11hIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cSUPJQIJRJekF2NB1fAMmA redirectUri = http://localhost:8080/authorization +09:12:52.043 [XNIO-1 task-4] TzbBlelXQX6ct3XIKY97WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.043 [XNIO-1 task-4] TzbBlelXQX6ct3XIKY97WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.043 [XNIO-1 task-5] vdx8J2ltTwye2rxDpO7tcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.044 [XNIO-1 task-4] TzbBlelXQX6ct3XIKY97WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.044 [XNIO-1 task-5] vdx8J2ltTwye2rxDpO7tcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.044 [XNIO-1 task-4] TzbBlelXQX6ct3XIKY97WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.044 [XNIO-1 task-5] vdx8J2ltTwye2rxDpO7tcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.044 [XNIO-1 task-4] TzbBlelXQX6ct3XIKY97WQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = KZo_SxQORW-fHUgsFJtD6A redirectUri = http://localhost:8080/authorization +09:12:52.045 [XNIO-1 task-6] pLQeTRqHTcG15hNjS11hIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.046 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:60241f86-24ea-4541-b3c5-6dc480924178 +09:12:52.049 [XNIO-1 task-5] vdx8J2ltTwye2rxDpO7tcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.049 [XNIO-1 task-4] TzbBlelXQX6ct3XIKY97WQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:52.049 [XNIO-1 task-4] TzbBlelXQX6ct3XIKY97WQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.053 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c4699e9-fde2-483f-9a27-9707c9f2e00c +09:12:52.059 [XNIO-1 task-4] hW4u0WZhS0WPxHSYErY8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.060 [XNIO-1 task-4] hW4u0WZhS0WPxHSYErY8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.060 [XNIO-1 task-4] hW4u0WZhS0WPxHSYErY8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.060 [XNIO-1 task-4] hW4u0WZhS0WPxHSYErY8Pw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.065 [XNIO-1 task-4] hW4u0WZhS0WPxHSYErY8Pw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.070 [XNIO-1 task-4] 4AwkOnlWRxGbs0o923d65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.070 [XNIO-1 task-4] 4AwkOnlWRxGbs0o923d65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.070 [XNIO-1 task-4] 4AwkOnlWRxGbs0o923d65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.070 [XNIO-1 task-4] 4AwkOnlWRxGbs0o923d65A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.077 [XNIO-1 task-4] 4AwkOnlWRxGbs0o923d65A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.083 [XNIO-1 task-4] 26vSR3CuTn23Oztp7n7xyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.083 [XNIO-1 task-6] bJOjnEV3TiaG4NCI0XmR3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.083 [XNIO-1 task-6] bJOjnEV3TiaG4NCI0XmR3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.083 [XNIO-1 task-6] bJOjnEV3TiaG4NCI0XmR3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.083 [XNIO-1 task-4] 26vSR3CuTn23Oztp7n7xyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.083 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:db46ef01 +09:12:52.083 [XNIO-1 task-4] 26vSR3CuTn23Oztp7n7xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.083 [XNIO-1 task-6] bJOjnEV3TiaG4NCI0XmR3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.083 [XNIO-1 task-6] bJOjnEV3TiaG4NCI0XmR3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.089 [XNIO-1 task-6] bJOjnEV3TiaG4NCI0XmR3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.092 [XNIO-1 task-6] AeR4WUPDSQCru3yJyJXFxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.092 [XNIO-1 task-6] AeR4WUPDSQCru3yJyJXFxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.092 [XNIO-1 task-6] AeR4WUPDSQCru3yJyJXFxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.092 [XNIO-1 task-6] AeR4WUPDSQCru3yJyJXFxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", authorization) +09:12:52.093 [XNIO-1 task-4] 26vSR3CuTn23Oztp7n7xyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:52.093 [XNIO-1 task-4] 26vSR3CuTn23Oztp7n7xyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.093 [XNIO-1 task-5] vk7Kcf3rQjOZN7n6BeIu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.093 [XNIO-1 task-5] vk7Kcf3rQjOZN7n6BeIu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.094 [XNIO-1 task-5] vk7Kcf3rQjOZN7n6BeIu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.094 [XNIO-1 task-5] vk7Kcf3rQjOZN7n6BeIu8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.094 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c5df7712-416c-4833-8862-0d0df1923068 +09:12:52.099 [XNIO-1 task-6] AeR4WUPDSQCru3yJyJXFxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.100 [XNIO-1 task-5] vk7Kcf3rQjOZN7n6BeIu8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.101 [XNIO-1 task-5] Rs_f3FB1TXO7czFBjjuRGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.101 [XNIO-1 task-5] Rs_f3FB1TXO7czFBjjuRGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.101 [XNIO-1 task-5] Rs_f3FB1TXO7czFBjjuRGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.102 [XNIO-1 task-5] Rs_f3FB1TXO7czFBjjuRGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE0Njg5MjctN2I3Ny00OGE3LWFlMDQtNzIzYWE1Y2RkZTdiOk9ySDNmbkMwU3FlcGduNEFnVlFDYXc=", "Basic YzE0Njg5MjctN2I3Ny00OGE3LWFlMDQtNzIzYWE1Y2RkZTdiOk9ySDNmbkMwU3FlcGduNEFnVlFDYXc=", authorization) +09:12:52.103 [XNIO-1 task-4] 2P5kjtjPQIeeLFJDzC3MGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.103 [XNIO-1 task-4] 2P5kjtjPQIeeLFJDzC3MGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.103 [XNIO-1 task-4] 2P5kjtjPQIeeLFJDzC3MGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.104 [XNIO-1 task-4] 2P5kjtjPQIeeLFJDzC3MGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", authorization) +09:12:52.108 [XNIO-1 task-5] Rs_f3FB1TXO7czFBjjuRGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +09:12:52.110 [XNIO-1 task-4] 2P5kjtjPQIeeLFJDzC3MGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.120 [XNIO-1 task-4] 6ecuUySmSOiMhTY3raAw6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.120 [XNIO-1 task-4] 6ecuUySmSOiMhTY3raAw6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.120 [XNIO-1 task-4] 6ecuUySmSOiMhTY3raAw6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.120 [XNIO-1 task-4] 6ecuUySmSOiMhTY3raAw6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", authorization) +09:12:52.121 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:de7e617f-813a-4d76-879f-1abc4fb4e500 +09:12:52.126 [XNIO-1 task-4] 6ecuUySmSOiMhTY3raAw6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.128 [XNIO-1 task-5] pit7QtNbRAiU0JGdkFjj1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.128 [XNIO-1 task-5] pit7QtNbRAiU0JGdkFjj1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.128 [XNIO-1 task-5] pit7QtNbRAiU0JGdkFjj1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.128 [XNIO-1 task-5] pit7QtNbRAiU0JGdkFjj1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = c1YszIA-RNWs6dA35LHg8g redirectUri = http://localhost:8080/authorization +09:12:52.133 [XNIO-1 task-4] nct6C6clQW2xhEjmaUBTVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.133 [XNIO-1 task-4] nct6C6clQW2xhEjmaUBTVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.133 [XNIO-1 task-4] nct6C6clQW2xhEjmaUBTVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.133 [XNIO-1 task-4] nct6C6clQW2xhEjmaUBTVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", authorization) +09:12:52.134 [XNIO-1 task-5] pit7QtNbRAiU0JGdkFjj1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.134 [XNIO-1 task-5] pit7QtNbRAiU0JGdkFjj1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.139 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:db46ef01 +09:12:52.139 [XNIO-1 task-4] nct6C6clQW2xhEjmaUBTVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.144 [XNIO-1 task-4] cp2jwnVtTV6aDWXfrC7Phw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.144 [XNIO-1 task-4] cp2jwnVtTV6aDWXfrC7Phw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.145 [XNIO-1 task-4] cp2jwnVtTV6aDWXfrC7Phw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.145 [XNIO-1 task-4] cp2jwnVtTV6aDWXfrC7Phw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.150 [XNIO-1 task-4] cp2jwnVtTV6aDWXfrC7Phw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.154 [XNIO-1 task-4] R9cUsNHhTIuKVroGiugGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.154 [XNIO-1 task-4] R9cUsNHhTIuKVroGiugGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.154 [XNIO-1 task-4] R9cUsNHhTIuKVroGiugGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.154 [XNIO-1 task-4] R9cUsNHhTIuKVroGiugGMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.161 [XNIO-1 task-4] R9cUsNHhTIuKVroGiugGMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.166 [XNIO-1 task-4] 4bI-nEkAS3GwVSc4oOUYfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.166 [XNIO-1 task-4] 4bI-nEkAS3GwVSc4oOUYfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.166 [XNIO-1 task-4] 4bI-nEkAS3GwVSc4oOUYfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.166 [XNIO-1 task-4] 4bI-nEkAS3GwVSc4oOUYfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.171 [XNIO-1 task-4] 4bI-nEkAS3GwVSc4oOUYfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.173 [XNIO-1 task-4] d4PDtBK0SgONRpMlzxuFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.173 [XNIO-1 task-4] d4PDtBK0SgONRpMlzxuFyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.173 [XNIO-1 task-4] d4PDtBK0SgONRpMlzxuFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.173 [XNIO-1 task-4] d4PDtBK0SgONRpMlzxuFyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:52.175 [XNIO-1 task-6] PR3WVWL2RrSXMdQmZhoXgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.176 [XNIO-1 task-6] PR3WVWL2RrSXMdQmZhoXgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.176 [XNIO-1 task-6] PR3WVWL2RrSXMdQmZhoXgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.176 [XNIO-1 task-6] PR3WVWL2RrSXMdQmZhoXgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.181 [XNIO-1 task-6] PR3WVWL2RrSXMdQmZhoXgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.182 [XNIO-1 task-4] d4PDtBK0SgONRpMlzxuFyQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:52.186 [XNIO-1 task-6] K046v0vETFu_TVnJ2VzioA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.186 [XNIO-1 task-6] K046v0vETFu_TVnJ2VzioA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.186 [XNIO-1 task-6] K046v0vETFu_TVnJ2VzioA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.186 [XNIO-1 task-6] K046v0vETFu_TVnJ2VzioA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.191 [XNIO-1 task-6] K046v0vETFu_TVnJ2VzioA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.195 [XNIO-1 task-6] 0v1v4gI0TiePmVKF7S4r9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.195 [XNIO-1 task-6] 0v1v4gI0TiePmVKF7S4r9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.195 [XNIO-1 task-6] 0v1v4gI0TiePmVKF7S4r9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.196 [XNIO-1 task-6] 0v1v4gI0TiePmVKF7S4r9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 78821472-253d-4487-a5fc-90ed7e953190 scope = null +09:12:52.197 [XNIO-1 task-4] q3gqhts8SfiZX6rqwXQ7GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.197 [XNIO-1 task-4] q3gqhts8SfiZX6rqwXQ7GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.198 [XNIO-1 task-4] q3gqhts8SfiZX6rqwXQ7GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.198 [XNIO-1 task-4] q3gqhts8SfiZX6rqwXQ7GQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.202 [XNIO-1 task-6] 0v1v4gI0TiePmVKF7S4r9g ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +09:12:52.203 [XNIO-1 task-4] q3gqhts8SfiZX6rqwXQ7GQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.208 [XNIO-1 task-4] izeHrC7-R7GaJBgGNcppoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.208 [XNIO-1 task-4] izeHrC7-R7GaJBgGNcppoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.208 [XNIO-1 task-4] izeHrC7-R7GaJBgGNcppoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.208 [XNIO-1 task-4] izeHrC7-R7GaJBgGNcppoA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.213 [XNIO-1 task-4] izeHrC7-R7GaJBgGNcppoA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.217 [XNIO-1 task-4] h4CdlcKBQ7GwXoL8p_EXdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.217 [XNIO-1 task-4] h4CdlcKBQ7GwXoL8p_EXdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.217 [XNIO-1 task-4] h4CdlcKBQ7GwXoL8p_EXdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.217 [XNIO-1 task-4] h4CdlcKBQ7GwXoL8p_EXdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZsR3jV-iT9OlD0u0Q60iMw redirectUri = http://localhost:8080/authorization +09:12:52.218 [XNIO-1 task-6] ynS8o_ueQFaT7UA508YraQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.219 [XNIO-1 task-6] ynS8o_ueQFaT7UA508YraQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.219 [XNIO-1 task-6] ynS8o_ueQFaT7UA508YraQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.219 [XNIO-1 task-6] ynS8o_ueQFaT7UA508YraQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.223 [XNIO-1 task-4] h4CdlcKBQ7GwXoL8p_EXdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:52.223 [XNIO-1 task-4] h4CdlcKBQ7GwXoL8p_EXdg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.224 [XNIO-1 task-6] ynS8o_ueQFaT7UA508YraQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.228 [XNIO-1 task-6] LRdzr6RmQ7K4_HpgnPKaeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.228 [XNIO-1 task-6] LRdzr6RmQ7K4_HpgnPKaeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.228 [XNIO-1 task-6] LRdzr6RmQ7K4_HpgnPKaeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.228 [XNIO-1 task-6] LRdzr6RmQ7K4_HpgnPKaeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.234 [XNIO-1 task-6] LRdzr6RmQ7K4_HpgnPKaeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.238 [XNIO-1 task-6] Y2ixELAhS5iRvY0KhPhpxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.238 [XNIO-1 task-6] Y2ixELAhS5iRvY0KhPhpxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.238 [XNIO-1 task-6] Y2ixELAhS5iRvY0KhPhpxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.238 [XNIO-1 task-6] Y2ixELAhS5iRvY0KhPhpxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.243 [XNIO-1 task-6] Y2ixELAhS5iRvY0KhPhpxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.246 [XNIO-1 task-6] cJQBGO_cQ_CgW_nFqceWjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.246 [XNIO-1 task-6] cJQBGO_cQ_CgW_nFqceWjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.246 [XNIO-1 task-6] cJQBGO_cQ_CgW_nFqceWjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.246 [XNIO-1 task-6] cJQBGO_cQ_CgW_nFqceWjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.251 [XNIO-1 task-4] MSCmX0qzS1yLiL1nVOwaGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.251 [XNIO-1 task-4] MSCmX0qzS1yLiL1nVOwaGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.251 [XNIO-1 task-4] MSCmX0qzS1yLiL1nVOwaGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.251 [XNIO-1 task-4] MSCmX0qzS1yLiL1nVOwaGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5ZmU5MjUtNjE3YS00ZDBhLTg0NzgtNjMxYzI0YzA3MjdmOk45Zm9sckdJU051VHlUQWl0S1pQbEE=", "Basic ZWI5ZmU5MjUtNjE3YS00ZDBhLTg0NzgtNjMxYzI0YzA3MjdmOk45Zm9sckdJU051VHlUQWl0S1pQbEE=", authorization) +09:12:52.251 [XNIO-1 task-6] cJQBGO_cQ_CgW_nFqceWjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:52.255 [XNIO-1 task-6] 0Fez60KEQLOy0sDP75A29g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.255 [XNIO-1 task-6] 0Fez60KEQLOy0sDP75A29g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.255 [XNIO-1 task-6] 0Fez60KEQLOy0sDP75A29g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:52.255 [XNIO-1 task-6] 0Fez60KEQLOy0sDP75A29g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:52.258 [XNIO-1 task-4] MSCmX0qzS1yLiL1nVOwaGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.260 [XNIO-1 task-6] 0Fez60KEQLOy0sDP75A29g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.265 [XNIO-1 task-6] hi5fVtrJS9WkvbHB064gMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.265 [XNIO-1 task-6] hi5fVtrJS9WkvbHB064gMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.265 [XNIO-1 task-6] hi5fVtrJS9WkvbHB064gMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.265 [XNIO-1 task-6] hi5fVtrJS9WkvbHB064gMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", authorization) +09:12:52.270 [XNIO-1 task-6] hi5fVtrJS9WkvbHB064gMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.274 [XNIO-1 task-6] 6mYGVexHRI6KPbvi9Omx9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.274 [XNIO-1 task-6] 6mYGVexHRI6KPbvi9Omx9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.274 [XNIO-1 task-6] 6mYGVexHRI6KPbvi9Omx9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.274 [XNIO-1 task-6] 6mYGVexHRI6KPbvi9Omx9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", authorization) +09:12:52.279 [XNIO-1 task-6] 6mYGVexHRI6KPbvi9Omx9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.283 [XNIO-1 task-6] z79UqTHsSV2VTlhiMmrYWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.283 [XNIO-1 task-6] z79UqTHsSV2VTlhiMmrYWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.283 [XNIO-1 task-6] z79UqTHsSV2VTlhiMmrYWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.283 [XNIO-1 task-6] z79UqTHsSV2VTlhiMmrYWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", authorization) +09:12:52.288 [XNIO-1 task-6] z79UqTHsSV2VTlhiMmrYWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.291 [XNIO-1 task-6] -rNVFAJoTqCr5b7_gGf0nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.291 [XNIO-1 task-6] -rNVFAJoTqCr5b7_gGf0nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.292 [XNIO-1 task-6] -rNVFAJoTqCr5b7_gGf0nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.292 [XNIO-1 task-6] -rNVFAJoTqCr5b7_gGf0nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", authorization) +09:12:52.297 [XNIO-1 task-6] -rNVFAJoTqCr5b7_gGf0nw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.300 [XNIO-1 task-6] yBIBNTFIT7KWx2dCHYv-Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.300 [XNIO-1 task-6] yBIBNTFIT7KWx2dCHYv-Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.301 [XNIO-1 task-6] yBIBNTFIT7KWx2dCHYv-Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.301 [XNIO-1 task-6] yBIBNTFIT7KWx2dCHYv-Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", authorization) +09:12:52.306 [XNIO-1 task-6] yBIBNTFIT7KWx2dCHYv-Rg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.315 [XNIO-1 task-6] YSKY0Yk7REaCkdiYXvifnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.315 [XNIO-1 task-6] YSKY0Yk7REaCkdiYXvifnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.315 [XNIO-1 task-6] YSKY0Yk7REaCkdiYXvifnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.315 [XNIO-1 task-6] YSKY0Yk7REaCkdiYXvifnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:52.320 [XNIO-1 task-6] YSKY0Yk7REaCkdiYXvifnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.323 [XNIO-1 task-6] 8onr5TbNSoCsosaGTS-QxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.324 [XNIO-1 task-6] 8onr5TbNSoCsosaGTS-QxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.324 [XNIO-1 task-6] 8onr5TbNSoCsosaGTS-QxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.324 [XNIO-1 task-6] 8onr5TbNSoCsosaGTS-QxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:52.329 [XNIO-1 task-6] 8onr5TbNSoCsosaGTS-QxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.333 [XNIO-1 task-6] BgG-OIBjQkyqHRFuxcGTaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.333 [XNIO-1 task-6] BgG-OIBjQkyqHRFuxcGTaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.333 [XNIO-1 task-6] BgG-OIBjQkyqHRFuxcGTaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.333 [XNIO-1 task-6] BgG-OIBjQkyqHRFuxcGTaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:52.339 [XNIO-1 task-6] BgG-OIBjQkyqHRFuxcGTaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.344 [XNIO-1 task-6] 2CCPXh9CQ9SAVaBBZc8LeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.344 [XNIO-1 task-6] 2CCPXh9CQ9SAVaBBZc8LeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.344 [XNIO-1 task-6] 2CCPXh9CQ9SAVaBBZc8LeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.344 [XNIO-1 task-6] 2CCPXh9CQ9SAVaBBZc8LeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.349 [XNIO-1 task-6] 2CCPXh9CQ9SAVaBBZc8LeA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.353 [XNIO-1 task-6] QXH1XFeSRSC_FYEGMZIJkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.353 [XNIO-1 task-6] QXH1XFeSRSC_FYEGMZIJkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.353 [XNIO-1 task-6] QXH1XFeSRSC_FYEGMZIJkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.353 [XNIO-1 task-6] QXH1XFeSRSC_FYEGMZIJkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:52.358 [XNIO-1 task-6] QXH1XFeSRSC_FYEGMZIJkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.362 [XNIO-1 task-6] -qYqxzsNSvqWgd0sGlmmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.362 [XNIO-1 task-6] -qYqxzsNSvqWgd0sGlmmtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.362 [XNIO-1 task-6] -qYqxzsNSvqWgd0sGlmmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.362 [XNIO-1 task-6] -qYqxzsNSvqWgd0sGlmmtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", authorization) +09:12:52.367 [XNIO-1 task-6] -qYqxzsNSvqWgd0sGlmmtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.370 [XNIO-1 task-6] DJvwIrS1TIKj-6sVXyRN8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.370 [XNIO-1 task-6] DJvwIrS1TIKj-6sVXyRN8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.371 [XNIO-1 task-6] DJvwIrS1TIKj-6sVXyRN8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.371 [XNIO-1 task-6] DJvwIrS1TIKj-6sVXyRN8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", authorization) +09:12:52.375 [XNIO-1 task-6] DJvwIrS1TIKj-6sVXyRN8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.380 [XNIO-1 task-6] 2LuNgQ1hRCe7i9SDhhQiBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.380 [XNIO-1 task-6] 2LuNgQ1hRCe7i9SDhhQiBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.380 [XNIO-1 task-6] 2LuNgQ1hRCe7i9SDhhQiBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.380 [XNIO-1 task-6] 2LuNgQ1hRCe7i9SDhhQiBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.385 [XNIO-1 task-6] 2LuNgQ1hRCe7i9SDhhQiBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.389 [XNIO-1 task-6] 42y-l1jTTQOcSvSXdm3pEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.389 [XNIO-1 task-6] 42y-l1jTTQOcSvSXdm3pEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.389 [XNIO-1 task-6] 42y-l1jTTQOcSvSXdm3pEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.389 [XNIO-1 task-6] 42y-l1jTTQOcSvSXdm3pEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.394 [XNIO-1 task-6] 42y-l1jTTQOcSvSXdm3pEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.399 [XNIO-1 task-6] 3RcbIZ7BR5W5CxHt5S9sbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.400 [XNIO-1 task-6] 3RcbIZ7BR5W5CxHt5S9sbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.400 [XNIO-1 task-6] 3RcbIZ7BR5W5CxHt5S9sbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.400 [XNIO-1 task-6] 3RcbIZ7BR5W5CxHt5S9sbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.405 [XNIO-1 task-6] 3RcbIZ7BR5W5CxHt5S9sbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.409 [XNIO-1 task-6] 0qIt7kWLTPm3dwyj7nWMCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.409 [XNIO-1 task-6] 0qIt7kWLTPm3dwyj7nWMCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.410 [XNIO-1 task-6] 0qIt7kWLTPm3dwyj7nWMCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.410 [XNIO-1 task-6] 0qIt7kWLTPm3dwyj7nWMCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", authorization) +09:12:52.414 [XNIO-1 task-6] 0qIt7kWLTPm3dwyj7nWMCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.418 [XNIO-1 task-6] owkv09KISFSQhWKpIM4A_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.418 [XNIO-1 task-6] owkv09KISFSQhWKpIM4A_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.418 [XNIO-1 task-6] owkv09KISFSQhWKpIM4A_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.418 [XNIO-1 task-6] owkv09KISFSQhWKpIM4A_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", authorization) +09:12:52.423 [XNIO-1 task-6] owkv09KISFSQhWKpIM4A_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.429 [XNIO-1 task-6] ZzKTPa_qRmygawFAGdDN0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.429 [XNIO-1 task-6] ZzKTPa_qRmygawFAGdDN0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.429 [XNIO-1 task-6] ZzKTPa_qRmygawFAGdDN0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.429 [XNIO-1 task-6] ZzKTPa_qRmygawFAGdDN0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:52.434 [XNIO-1 task-6] ZzKTPa_qRmygawFAGdDN0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.441 [XNIO-1 task-6] dqLLAw60TaWYCdM2a29ZeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.441 [XNIO-1 task-6] dqLLAw60TaWYCdM2a29ZeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.441 [XNIO-1 task-6] dqLLAw60TaWYCdM2a29ZeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.441 [XNIO-1 task-6] dqLLAw60TaWYCdM2a29ZeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:52.446 [XNIO-1 task-6] dqLLAw60TaWYCdM2a29ZeQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.450 [XNIO-1 task-6] rj60fPZLTHOq_OuiBxAIAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.450 [XNIO-1 task-6] rj60fPZLTHOq_OuiBxAIAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.450 [XNIO-1 task-6] rj60fPZLTHOq_OuiBxAIAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.450 [XNIO-1 task-6] rj60fPZLTHOq_OuiBxAIAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:52.456 [XNIO-1 task-6] rj60fPZLTHOq_OuiBxAIAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.460 [XNIO-1 task-6] 5gBNBs9sQz2hibQwfMr4Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.460 [XNIO-1 task-6] 5gBNBs9sQz2hibQwfMr4Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.461 [XNIO-1 task-6] 5gBNBs9sQz2hibQwfMr4Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.461 [XNIO-1 task-6] 5gBNBs9sQz2hibQwfMr4Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:52.466 [XNIO-1 task-6] 5gBNBs9sQz2hibQwfMr4Lg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.469 [XNIO-1 task-6] dJUpp9qJRj-t658p2JvBvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.469 [XNIO-1 task-6] dJUpp9qJRj-t658p2JvBvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.469 [XNIO-1 task-6] dJUpp9qJRj-t658p2JvBvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.470 [XNIO-1 task-6] dJUpp9qJRj-t658p2JvBvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:52.475 [XNIO-1 task-6] dJUpp9qJRj-t658p2JvBvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.479 [XNIO-1 task-6] 71X1Lo1OQ7e4ho2trgitgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.479 [XNIO-1 task-6] 71X1Lo1OQ7e4ho2trgitgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.479 [XNIO-1 task-6] 71X1Lo1OQ7e4ho2trgitgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.479 [XNIO-1 task-6] 71X1Lo1OQ7e4ho2trgitgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:52.486 [XNIO-1 task-6] 71X1Lo1OQ7e4ho2trgitgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.490 [XNIO-1 task-6] atnkKmH1S7itv4_2oZhddg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.490 [XNIO-1 task-6] atnkKmH1S7itv4_2oZhddg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.490 [XNIO-1 task-6] atnkKmH1S7itv4_2oZhddg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.490 [XNIO-1 task-6] atnkKmH1S7itv4_2oZhddg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:52.495 [XNIO-1 task-6] atnkKmH1S7itv4_2oZhddg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.499 [XNIO-1 task-6] SS4vy4CuRQSonNVvPVLVQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.499 [XNIO-1 task-6] SS4vy4CuRQSonNVvPVLVQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.499 [XNIO-1 task-6] SS4vy4CuRQSonNVvPVLVQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.499 [XNIO-1 task-6] SS4vy4CuRQSonNVvPVLVQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:52.504 [XNIO-1 task-6] SS4vy4CuRQSonNVvPVLVQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.508 [XNIO-1 task-6] Fc76IiuwRu6LTXFy3_x7Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.508 [XNIO-1 task-6] Fc76IiuwRu6LTXFy3_x7Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.508 [XNIO-1 task-6] Fc76IiuwRu6LTXFy3_x7Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.508 [XNIO-1 task-6] Fc76IiuwRu6LTXFy3_x7Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:52.513 [XNIO-1 task-6] Fc76IiuwRu6LTXFy3_x7Hg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.517 [XNIO-1 task-6] IL10_wypQR-f1croOebfwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.517 [XNIO-1 task-6] IL10_wypQR-f1croOebfwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.518 [XNIO-1 task-6] IL10_wypQR-f1croOebfwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.518 [XNIO-1 task-6] IL10_wypQR-f1croOebfwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:52.547 [XNIO-1 task-6] IL10_wypQR-f1croOebfwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.551 [XNIO-1 task-6] n8P3A5DoTFGhU9Lm2P8k9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.552 [XNIO-1 task-6] n8P3A5DoTFGhU9Lm2P8k9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.552 [XNIO-1 task-6] n8P3A5DoTFGhU9Lm2P8k9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.552 [XNIO-1 task-6] n8P3A5DoTFGhU9Lm2P8k9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.558 [XNIO-1 task-6] n8P3A5DoTFGhU9Lm2P8k9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.563 [XNIO-1 task-6] Bajy2SG4Ry6feUXDVZQl3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.563 [XNIO-1 task-6] Bajy2SG4Ry6feUXDVZQl3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.563 [XNIO-1 task-6] Bajy2SG4Ry6feUXDVZQl3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.564 [XNIO-1 task-6] Bajy2SG4Ry6feUXDVZQl3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:52.569 [XNIO-1 task-6] Bajy2SG4Ry6feUXDVZQl3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.573 [XNIO-1 task-6] JtKaUVVWQ02dNbVQI58RMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.573 [XNIO-1 task-6] JtKaUVVWQ02dNbVQI58RMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.573 [XNIO-1 task-6] JtKaUVVWQ02dNbVQI58RMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.574 [XNIO-1 task-6] JtKaUVVWQ02dNbVQI58RMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:52.579 [XNIO-1 task-6] JtKaUVVWQ02dNbVQI58RMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.583 [XNIO-1 task-6] dWsuXBa3QLuaLKoxCDl7Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.583 [XNIO-1 task-6] dWsuXBa3QLuaLKoxCDl7Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.583 [XNIO-1 task-6] dWsuXBa3QLuaLKoxCDl7Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.583 [XNIO-1 task-6] dWsuXBa3QLuaLKoxCDl7Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.588 [XNIO-1 task-6] dWsuXBa3QLuaLKoxCDl7Mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.592 [XNIO-1 task-6] dkZy1KEWSbyktWZiQxEX3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.592 [XNIO-1 task-6] dkZy1KEWSbyktWZiQxEX3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.592 [XNIO-1 task-6] dkZy1KEWSbyktWZiQxEX3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.592 [XNIO-1 task-6] dkZy1KEWSbyktWZiQxEX3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.598 [XNIO-1 task-6] dkZy1KEWSbyktWZiQxEX3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.602 [XNIO-1 task-6] I8_je7CtTwuT1IzLGTdTug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.602 [XNIO-1 task-6] I8_je7CtTwuT1IzLGTdTug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.602 [XNIO-1 task-6] I8_je7CtTwuT1IzLGTdTug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.602 [XNIO-1 task-6] I8_je7CtTwuT1IzLGTdTug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:52.608 [XNIO-1 task-6] I8_je7CtTwuT1IzLGTdTug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.613 [XNIO-1 task-6] M0CFCraKTW2DgON_q8hiiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.613 [XNIO-1 task-6] M0CFCraKTW2DgON_q8hiiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.613 [XNIO-1 task-6] M0CFCraKTW2DgON_q8hiiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.613 [XNIO-1 task-6] M0CFCraKTW2DgON_q8hiiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.620 [XNIO-1 task-6] M0CFCraKTW2DgON_q8hiiA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.624 [XNIO-1 task-6] yXZtFDNsSX6Ajjf4Dy6PCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.624 [XNIO-1 task-6] yXZtFDNsSX6Ajjf4Dy6PCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.624 [XNIO-1 task-6] yXZtFDNsSX6Ajjf4Dy6PCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.625 [XNIO-1 task-6] yXZtFDNsSX6Ajjf4Dy6PCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.630 [XNIO-1 task-6] yXZtFDNsSX6Ajjf4Dy6PCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.635 [XNIO-1 task-6] 2esymbtkRuGb6TQ1BpoDwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.635 [XNIO-1 task-6] 2esymbtkRuGb6TQ1BpoDwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.635 [XNIO-1 task-6] 2esymbtkRuGb6TQ1BpoDwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.635 [XNIO-1 task-6] 2esymbtkRuGb6TQ1BpoDwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.640 [XNIO-1 task-6] 2esymbtkRuGb6TQ1BpoDwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.643 [XNIO-1 task-6] l4FESdgiQCqpxiWEkeGnzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.643 [XNIO-1 task-6] l4FESdgiQCqpxiWEkeGnzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.643 [XNIO-1 task-6] l4FESdgiQCqpxiWEkeGnzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.643 [XNIO-1 task-6] l4FESdgiQCqpxiWEkeGnzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:52.648 [XNIO-1 task-6] l4FESdgiQCqpxiWEkeGnzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.653 [XNIO-1 task-6] OAchlrJ1T1-dL9hoW03a6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.653 [XNIO-1 task-6] OAchlrJ1T1-dL9hoW03a6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.653 [XNIO-1 task-6] OAchlrJ1T1-dL9hoW03a6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.654 [XNIO-1 task-6] OAchlrJ1T1-dL9hoW03a6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", authorization) +09:12:52.658 [XNIO-1 task-6] OAchlrJ1T1-dL9hoW03a6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.663 [XNIO-1 task-6] 91P8WpTKQ2WH3RRAvX_D5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.663 [XNIO-1 task-6] 91P8WpTKQ2WH3RRAvX_D5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.664 [XNIO-1 task-6] 91P8WpTKQ2WH3RRAvX_D5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.664 [XNIO-1 task-6] 91P8WpTKQ2WH3RRAvX_D5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:52.668 [XNIO-1 task-6] 91P8WpTKQ2WH3RRAvX_D5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.673 [XNIO-1 task-6] QW8_EON0QoaaK4H4q_2Vpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.673 [XNIO-1 task-6] QW8_EON0QoaaK4H4q_2Vpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.673 [XNIO-1 task-6] QW8_EON0QoaaK4H4q_2Vpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.673 [XNIO-1 task-6] QW8_EON0QoaaK4H4q_2Vpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:52.678 [XNIO-1 task-6] QW8_EON0QoaaK4H4q_2Vpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.681 [XNIO-1 task-6] z_zFG6ZlRpGawUE8omecLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.682 [XNIO-1 task-6] z_zFG6ZlRpGawUE8omecLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.682 [XNIO-1 task-6] z_zFG6ZlRpGawUE8omecLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.682 [XNIO-1 task-6] z_zFG6ZlRpGawUE8omecLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:52.687 [XNIO-1 task-6] z_zFG6ZlRpGawUE8omecLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.690 [XNIO-1 task-6] gPED1WvAQ5SQnZwBNTyqBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.691 [XNIO-1 task-6] gPED1WvAQ5SQnZwBNTyqBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.691 [XNIO-1 task-6] gPED1WvAQ5SQnZwBNTyqBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.691 [XNIO-1 task-6] gPED1WvAQ5SQnZwBNTyqBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:52.697 [XNIO-1 task-6] gPED1WvAQ5SQnZwBNTyqBQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.701 [XNIO-1 task-6] 9b1rPqvNS4ycIQRRXEFJ0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.701 [XNIO-1 task-6] 9b1rPqvNS4ycIQRRXEFJ0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.701 [XNIO-1 task-6] 9b1rPqvNS4ycIQRRXEFJ0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.701 [XNIO-1 task-6] 9b1rPqvNS4ycIQRRXEFJ0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:52.707 [XNIO-1 task-6] 9b1rPqvNS4ycIQRRXEFJ0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.710 [XNIO-1 task-6] b3lWLvc9TSyIou8kUTXtyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.710 [XNIO-1 task-6] b3lWLvc9TSyIou8kUTXtyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.710 [XNIO-1 task-6] b3lWLvc9TSyIou8kUTXtyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.710 [XNIO-1 task-6] b3lWLvc9TSyIou8kUTXtyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", authorization) +09:12:52.715 [XNIO-1 task-6] b3lWLvc9TSyIou8kUTXtyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.718 [XNIO-1 task-6] PFWYzpV1TDOJxZtA-r-lDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.718 [XNIO-1 task-6] PFWYzpV1TDOJxZtA-r-lDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.719 [XNIO-1 task-6] PFWYzpV1TDOJxZtA-r-lDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.719 [XNIO-1 task-6] PFWYzpV1TDOJxZtA-r-lDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", authorization) +09:12:52.724 [XNIO-1 task-6] PFWYzpV1TDOJxZtA-r-lDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.727 [XNIO-1 task-6] rdu-Atq9S36AYU1sHotfIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.727 [XNIO-1 task-6] rdu-Atq9S36AYU1sHotfIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.727 [XNIO-1 task-6] rdu-Atq9S36AYU1sHotfIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.728 [XNIO-1 task-6] rdu-Atq9S36AYU1sHotfIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", authorization) +09:12:52.732 [XNIO-1 task-6] rdu-Atq9S36AYU1sHotfIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.736 [XNIO-1 task-6] y_Zwm54JQ32vIcOvSrjJCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.736 [XNIO-1 task-6] y_Zwm54JQ32vIcOvSrjJCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.737 [XNIO-1 task-6] y_Zwm54JQ32vIcOvSrjJCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.737 [XNIO-1 task-6] y_Zwm54JQ32vIcOvSrjJCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", authorization) +09:12:52.742 [XNIO-1 task-6] y_Zwm54JQ32vIcOvSrjJCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.745 [XNIO-1 task-6] CUWhFoaHTPy7zCCr1xg0Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.745 [XNIO-1 task-6] CUWhFoaHTPy7zCCr1xg0Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.746 [XNIO-1 task-6] CUWhFoaHTPy7zCCr1xg0Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.746 [XNIO-1 task-6] CUWhFoaHTPy7zCCr1xg0Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", authorization) +09:12:52.751 [XNIO-1 task-6] CUWhFoaHTPy7zCCr1xg0Kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.754 [XNIO-1 task-6] BoLPC6TZSG6Ks01PEUepvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.754 [XNIO-1 task-6] BoLPC6TZSG6Ks01PEUepvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.754 [XNIO-1 task-6] BoLPC6TZSG6Ks01PEUepvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.754 [XNIO-1 task-6] BoLPC6TZSG6Ks01PEUepvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", "Basic NzlkZGUwYmQtYjdjNC00NThhLWFkMzYtYjRiMGMzMzVmNzQyOklieGV4YVUxUWxxVE9IZE9wSlFLVGc=", authorization) +09:12:52.759 [XNIO-1 task-6] BoLPC6TZSG6Ks01PEUepvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.764 [XNIO-1 task-6] ZeSMs4UGQJekbN84D6E8Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.764 [XNIO-1 task-6] ZeSMs4UGQJekbN84D6E8Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.764 [XNIO-1 task-6] ZeSMs4UGQJekbN84D6E8Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.764 [XNIO-1 task-6] ZeSMs4UGQJekbN84D6E8Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.769 [XNIO-1 task-6] ZeSMs4UGQJekbN84D6E8Eg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.772 [XNIO-1 task-6] -mYy4uY4SZiYDPa17GbDrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.772 [XNIO-1 task-6] -mYy4uY4SZiYDPa17GbDrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.772 [XNIO-1 task-6] -mYy4uY4SZiYDPa17GbDrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.772 [XNIO-1 task-6] -mYy4uY4SZiYDPa17GbDrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.777 [XNIO-1 task-6] -mYy4uY4SZiYDPa17GbDrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.782 [XNIO-1 task-6] WS0gL-B2S-utPUFfSp-CPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.782 [XNIO-1 task-6] WS0gL-B2S-utPUFfSp-CPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.782 [XNIO-1 task-6] WS0gL-B2S-utPUFfSp-CPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.782 [XNIO-1 task-6] WS0gL-B2S-utPUFfSp-CPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.787 [XNIO-1 task-6] WS0gL-B2S-utPUFfSp-CPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.792 [XNIO-1 task-6] vXxgHA-XQ6-hy8UGknpeyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.793 [XNIO-1 task-6] vXxgHA-XQ6-hy8UGknpeyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.793 [XNIO-1 task-6] vXxgHA-XQ6-hy8UGknpeyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.793 [XNIO-1 task-6] vXxgHA-XQ6-hy8UGknpeyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.798 [XNIO-1 task-6] vXxgHA-XQ6-hy8UGknpeyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.801 [XNIO-1 task-6] 3wzn4cUXQ6arBqO5LrFCiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.801 [XNIO-1 task-6] 3wzn4cUXQ6arBqO5LrFCiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.802 [XNIO-1 task-6] 3wzn4cUXQ6arBqO5LrFCiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.802 [XNIO-1 task-6] 3wzn4cUXQ6arBqO5LrFCiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.806 [XNIO-1 task-6] 3wzn4cUXQ6arBqO5LrFCiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.809 [XNIO-1 task-6] egtH2NN3SbyUQhGP5Aw4rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.810 [XNIO-1 task-6] egtH2NN3SbyUQhGP5Aw4rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.810 [XNIO-1 task-6] egtH2NN3SbyUQhGP5Aw4rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.810 [XNIO-1 task-6] egtH2NN3SbyUQhGP5Aw4rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.815 [XNIO-1 task-6] egtH2NN3SbyUQhGP5Aw4rQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.819 [XNIO-1 task-6] TjlV_q3STgOcveLqp2c3mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.819 [XNIO-1 task-6] TjlV_q3STgOcveLqp2c3mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.819 [XNIO-1 task-6] TjlV_q3STgOcveLqp2c3mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.819 [XNIO-1 task-6] TjlV_q3STgOcveLqp2c3mQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:52.824 [XNIO-1 task-6] TjlV_q3STgOcveLqp2c3mQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.828 [XNIO-1 task-6] d3RmIJY7TNCXKepxrs29TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.828 [XNIO-1 task-6] d3RmIJY7TNCXKepxrs29TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.828 [XNIO-1 task-6] d3RmIJY7TNCXKepxrs29TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.828 [XNIO-1 task-6] d3RmIJY7TNCXKepxrs29TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:52.833 [XNIO-1 task-6] d3RmIJY7TNCXKepxrs29TQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.837 [XNIO-1 task-6] stoKzRN6RmmgRY5wNfp_AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.837 [XNIO-1 task-6] stoKzRN6RmmgRY5wNfp_AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.838 [XNIO-1 task-6] stoKzRN6RmmgRY5wNfp_AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.838 [XNIO-1 task-6] stoKzRN6RmmgRY5wNfp_AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:52.843 [XNIO-1 task-6] stoKzRN6RmmgRY5wNfp_AQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.846 [XNIO-1 task-6] --pXD_vIRP6jNUirO-5Ouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.846 [XNIO-1 task-6] --pXD_vIRP6jNUirO-5Ouw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.846 [XNIO-1 task-6] --pXD_vIRP6jNUirO-5Ouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.847 [XNIO-1 task-6] --pXD_vIRP6jNUirO-5Ouw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", authorization) +09:12:52.852 [XNIO-1 task-6] --pXD_vIRP6jNUirO-5Ouw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.855 [XNIO-1 task-6] 25YStfPRROadl98ebfpAAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.856 [XNIO-1 task-6] 25YStfPRROadl98ebfpAAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.856 [XNIO-1 task-6] 25YStfPRROadl98ebfpAAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.856 [XNIO-1 task-6] 25YStfPRROadl98ebfpAAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.861 [XNIO-1 task-6] 25YStfPRROadl98ebfpAAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.865 [XNIO-1 task-6] zYd9HJc5RqOQnZ5Irmn7zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.865 [XNIO-1 task-6] zYd9HJc5RqOQnZ5Irmn7zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.866 [XNIO-1 task-6] zYd9HJc5RqOQnZ5Irmn7zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.866 [XNIO-1 task-6] zYd9HJc5RqOQnZ5Irmn7zg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.871 [XNIO-1 task-6] zYd9HJc5RqOQnZ5Irmn7zg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.875 [XNIO-1 task-6] rgg_p4AQRRWMSr3o2NR3kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.875 [XNIO-1 task-6] rgg_p4AQRRWMSr3o2NR3kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.875 [XNIO-1 task-6] rgg_p4AQRRWMSr3o2NR3kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.875 [XNIO-1 task-6] rgg_p4AQRRWMSr3o2NR3kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.881 [XNIO-1 task-6] rgg_p4AQRRWMSr3o2NR3kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.884 [XNIO-1 task-6] w0Td0tMRQ0ye6ErlaasUUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.884 [XNIO-1 task-6] w0Td0tMRQ0ye6ErlaasUUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.884 [XNIO-1 task-6] w0Td0tMRQ0ye6ErlaasUUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.884 [XNIO-1 task-6] w0Td0tMRQ0ye6ErlaasUUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.889 [XNIO-1 task-6] w0Td0tMRQ0ye6ErlaasUUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.892 [XNIO-1 task-6] ycvdtnUfTtSypY7-yb5enQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.893 [XNIO-1 task-6] ycvdtnUfTtSypY7-yb5enQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.893 [XNIO-1 task-6] ycvdtnUfTtSypY7-yb5enQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.893 [XNIO-1 task-6] ycvdtnUfTtSypY7-yb5enQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.898 [XNIO-1 task-6] ycvdtnUfTtSypY7-yb5enQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.902 [XNIO-1 task-6] IT839HLCSRyYS9Nl6Shmjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.903 [XNIO-1 task-6] IT839HLCSRyYS9Nl6Shmjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.903 [XNIO-1 task-6] IT839HLCSRyYS9Nl6Shmjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.903 [XNIO-1 task-6] IT839HLCSRyYS9Nl6Shmjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.908 [XNIO-1 task-6] IT839HLCSRyYS9Nl6Shmjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.910 [XNIO-1 task-6] YdIubmBBQaaF0j-dpFXylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.911 [XNIO-1 task-6] YdIubmBBQaaF0j-dpFXylQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.911 [XNIO-1 task-6] YdIubmBBQaaF0j-dpFXylQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.911 [XNIO-1 task-6] YdIubmBBQaaF0j-dpFXylQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.916 [XNIO-1 task-6] YdIubmBBQaaF0j-dpFXylQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.919 [XNIO-1 task-6] eFZwnhhZQ0ynqx4DZkiunw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.919 [XNIO-1 task-6] eFZwnhhZQ0ynqx4DZkiunw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.919 [XNIO-1 task-6] eFZwnhhZQ0ynqx4DZkiunw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.919 [XNIO-1 task-6] eFZwnhhZQ0ynqx4DZkiunw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:52.924 [XNIO-1 task-6] eFZwnhhZQ0ynqx4DZkiunw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.928 [XNIO-1 task-6] 6KQA46L4SimCbHdeIZcNHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.928 [XNIO-1 task-6] 6KQA46L4SimCbHdeIZcNHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.928 [XNIO-1 task-6] 6KQA46L4SimCbHdeIZcNHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.928 [XNIO-1 task-6] 6KQA46L4SimCbHdeIZcNHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.933 [XNIO-1 task-6] 6KQA46L4SimCbHdeIZcNHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.936 [XNIO-1 task-6] MtFGGf7kSZCDNA00MDp-BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.936 [XNIO-1 task-6] MtFGGf7kSZCDNA00MDp-BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.936 [XNIO-1 task-6] MtFGGf7kSZCDNA00MDp-BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.937 [XNIO-1 task-6] MtFGGf7kSZCDNA00MDp-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.941 [XNIO-1 task-6] MtFGGf7kSZCDNA00MDp-BA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.944 [XNIO-1 task-6] 7UM24v3_T1KPp71WS19GaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.944 [XNIO-1 task-6] 7UM24v3_T1KPp71WS19GaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.945 [XNIO-1 task-6] 7UM24v3_T1KPp71WS19GaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.945 [XNIO-1 task-6] 7UM24v3_T1KPp71WS19GaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.949 [XNIO-1 task-6] 7UM24v3_T1KPp71WS19GaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.952 [XNIO-1 task-6] 6nXS1kmLTpi7VGS9K-eI_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.953 [XNIO-1 task-6] 6nXS1kmLTpi7VGS9K-eI_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.953 [XNIO-1 task-6] 6nXS1kmLTpi7VGS9K-eI_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.953 [XNIO-1 task-6] 6nXS1kmLTpi7VGS9K-eI_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:52.959 [XNIO-1 task-6] 6nXS1kmLTpi7VGS9K-eI_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.963 [XNIO-1 task-6] qJZkSZ-NSve1IE0Nf4-6Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.963 [XNIO-1 task-6] qJZkSZ-NSve1IE0Nf4-6Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.963 [XNIO-1 task-6] qJZkSZ-NSve1IE0Nf4-6Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.963 [XNIO-1 task-6] qJZkSZ-NSve1IE0Nf4-6Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:52.968 [XNIO-1 task-6] qJZkSZ-NSve1IE0Nf4-6Xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.971 [XNIO-1 task-6] 7yITCM6STPq9rl1ilArd5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.971 [XNIO-1 task-6] 7yITCM6STPq9rl1ilArd5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.971 [XNIO-1 task-6] 7yITCM6STPq9rl1ilArd5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.971 [XNIO-1 task-6] 7yITCM6STPq9rl1ilArd5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:52.976 [XNIO-1 task-6] 7yITCM6STPq9rl1ilArd5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.981 [XNIO-1 task-6] wVqaUDebQEmpDmv1Fg5atw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.981 [XNIO-1 task-6] wVqaUDebQEmpDmv1Fg5atw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.981 [XNIO-1 task-6] wVqaUDebQEmpDmv1Fg5atw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.982 [XNIO-1 task-6] wVqaUDebQEmpDmv1Fg5atw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:52.987 [XNIO-1 task-6] wVqaUDebQEmpDmv1Fg5atw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.990 [XNIO-1 task-6] I_n1GSn2SmGAGZzKlVs2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.990 [XNIO-1 task-6] I_n1GSn2SmGAGZzKlVs2mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.990 [XNIO-1 task-6] I_n1GSn2SmGAGZzKlVs2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.991 [XNIO-1 task-6] I_n1GSn2SmGAGZzKlVs2mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:52.995 [XNIO-1 task-6] I_n1GSn2SmGAGZzKlVs2mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:52.998 [XNIO-1 task-6] bengpSxdS0uyaOrtRmGz-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.998 [XNIO-1 task-6] bengpSxdS0uyaOrtRmGz-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:52.998 [XNIO-1 task-6] bengpSxdS0uyaOrtRmGz-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:52.998 [XNIO-1 task-6] bengpSxdS0uyaOrtRmGz-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:53.003 [XNIO-1 task-6] bengpSxdS0uyaOrtRmGz-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.007 [XNIO-1 task-6] 2DX01npyR0ulJZ1LiBXg_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.007 [XNIO-1 task-6] 2DX01npyR0ulJZ1LiBXg_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.007 [XNIO-1 task-6] 2DX01npyR0ulJZ1LiBXg_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.007 [XNIO-1 task-6] 2DX01npyR0ulJZ1LiBXg_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:53.012 [XNIO-1 task-6] 2DX01npyR0ulJZ1LiBXg_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.015 [XNIO-1 task-6] FowxADKGRq2GuBECTt57oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.015 [XNIO-1 task-6] FowxADKGRq2GuBECTt57oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.015 [XNIO-1 task-6] FowxADKGRq2GuBECTt57oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.015 [XNIO-1 task-6] FowxADKGRq2GuBECTt57oA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:53.020 [XNIO-1 task-6] FowxADKGRq2GuBECTt57oA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.025 [XNIO-1 task-6] NAmXXjabRmGAIkuTtiM9bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.025 [XNIO-1 task-6] NAmXXjabRmGAIkuTtiM9bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.025 [XNIO-1 task-6] NAmXXjabRmGAIkuTtiM9bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.025 [XNIO-1 task-6] NAmXXjabRmGAIkuTtiM9bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:53.031 [XNIO-1 task-6] NAmXXjabRmGAIkuTtiM9bQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.034 [XNIO-1 task-6] sw2qUcIvRtC2m369Z2ygag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.034 [XNIO-1 task-6] sw2qUcIvRtC2m369Z2ygag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.034 [XNIO-1 task-6] sw2qUcIvRtC2m369Z2ygag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.034 [XNIO-1 task-6] sw2qUcIvRtC2m369Z2ygag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:53.039 [XNIO-1 task-6] sw2qUcIvRtC2m369Z2ygag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.042 [XNIO-1 task-6] gDh-tAsST5iPnq0PVKYh7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.043 [XNIO-1 task-6] gDh-tAsST5iPnq0PVKYh7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.043 [XNIO-1 task-6] gDh-tAsST5iPnq0PVKYh7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.043 [XNIO-1 task-6] gDh-tAsST5iPnq0PVKYh7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:53.048 [XNIO-1 task-6] gDh-tAsST5iPnq0PVKYh7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.053 [XNIO-1 task-6] uPxkwdokQ3G-cxtL-4dfgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.053 [XNIO-1 task-6] uPxkwdokQ3G-cxtL-4dfgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.053 [XNIO-1 task-6] uPxkwdokQ3G-cxtL-4dfgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.053 [XNIO-1 task-6] uPxkwdokQ3G-cxtL-4dfgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.058 [XNIO-1 task-6] uPxkwdokQ3G-cxtL-4dfgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.062 [XNIO-1 task-6] 1wH3VW43QA-p4Sa1UPuhmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.062 [XNIO-1 task-6] 1wH3VW43QA-p4Sa1UPuhmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.062 [XNIO-1 task-6] 1wH3VW43QA-p4Sa1UPuhmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.062 [XNIO-1 task-6] 1wH3VW43QA-p4Sa1UPuhmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.067 [XNIO-1 task-6] 1wH3VW43QA-p4Sa1UPuhmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.070 [XNIO-1 task-6] Fl46xghBTreTP5U2nJXi2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.070 [XNIO-1 task-6] Fl46xghBTreTP5U2nJXi2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.070 [XNIO-1 task-6] Fl46xghBTreTP5U2nJXi2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.070 [XNIO-1 task-6] Fl46xghBTreTP5U2nJXi2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.076 [XNIO-1 task-6] Fl46xghBTreTP5U2nJXi2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.079 [XNIO-1 task-6] hNhexZXXSS2mBDbO1o4OAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.079 [XNIO-1 task-6] hNhexZXXSS2mBDbO1o4OAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.079 [XNIO-1 task-6] hNhexZXXSS2mBDbO1o4OAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.079 [XNIO-1 task-6] hNhexZXXSS2mBDbO1o4OAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.084 [XNIO-1 task-6] hNhexZXXSS2mBDbO1o4OAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.088 [XNIO-1 task-6] AGlrTdMWSwaMRXoYhNOEAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.088 [XNIO-1 task-6] AGlrTdMWSwaMRXoYhNOEAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.088 [XNIO-1 task-6] AGlrTdMWSwaMRXoYhNOEAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.089 [XNIO-1 task-6] AGlrTdMWSwaMRXoYhNOEAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.093 [XNIO-1 task-6] AGlrTdMWSwaMRXoYhNOEAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.098 [XNIO-1 task-6] yXIFvz9WSfSgOf2ELr3iPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.098 [XNIO-1 task-6] yXIFvz9WSfSgOf2ELr3iPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.098 [XNIO-1 task-6] yXIFvz9WSfSgOf2ELr3iPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.098 [XNIO-1 task-6] yXIFvz9WSfSgOf2ELr3iPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.103 [XNIO-1 task-6] yXIFvz9WSfSgOf2ELr3iPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.106 [XNIO-1 task-6] _0ltdDcWSBCUVWfPSrtAgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.106 [XNIO-1 task-6] _0ltdDcWSBCUVWfPSrtAgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.107 [XNIO-1 task-6] _0ltdDcWSBCUVWfPSrtAgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.107 [XNIO-1 task-6] _0ltdDcWSBCUVWfPSrtAgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.111 [XNIO-1 task-6] _0ltdDcWSBCUVWfPSrtAgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.115 [XNIO-1 task-6] xqdlVDmtSYmvMogO3MNA-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.115 [XNIO-1 task-6] xqdlVDmtSYmvMogO3MNA-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.115 [XNIO-1 task-6] xqdlVDmtSYmvMogO3MNA-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.115 [XNIO-1 task-6] xqdlVDmtSYmvMogO3MNA-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.120 [XNIO-1 task-6] xqdlVDmtSYmvMogO3MNA-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.124 [XNIO-1 task-6] pLPR45gXTgO48BEPs3yHsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.124 [XNIO-1 task-6] pLPR45gXTgO48BEPs3yHsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.124 [XNIO-1 task-6] pLPR45gXTgO48BEPs3yHsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.124 [XNIO-1 task-6] pLPR45gXTgO48BEPs3yHsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.129 [XNIO-1 task-6] pLPR45gXTgO48BEPs3yHsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.132 [XNIO-1 task-6] SGFgYlA2QgCgWkYL9V_jEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.132 [XNIO-1 task-6] SGFgYlA2QgCgWkYL9V_jEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.132 [XNIO-1 task-6] SGFgYlA2QgCgWkYL9V_jEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.132 [XNIO-1 task-6] SGFgYlA2QgCgWkYL9V_jEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.137 [XNIO-1 task-6] SGFgYlA2QgCgWkYL9V_jEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.141 [XNIO-1 task-6] 2DpmqbBtRKaK0a3nKycAUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.141 [XNIO-1 task-6] 2DpmqbBtRKaK0a3nKycAUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.142 [XNIO-1 task-6] 2DpmqbBtRKaK0a3nKycAUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.142 [XNIO-1 task-6] 2DpmqbBtRKaK0a3nKycAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.147 [XNIO-1 task-6] 2DpmqbBtRKaK0a3nKycAUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.151 [XNIO-1 task-6] XoWKSTN-TYuZslZ62NA0dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.151 [XNIO-1 task-6] XoWKSTN-TYuZslZ62NA0dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.151 [XNIO-1 task-6] XoWKSTN-TYuZslZ62NA0dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.151 [XNIO-1 task-6] XoWKSTN-TYuZslZ62NA0dA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.157 [XNIO-1 task-6] XoWKSTN-TYuZslZ62NA0dA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.160 [XNIO-1 task-6] ARcS5SIcSY6Qj1bHHPdI7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.160 [XNIO-1 task-6] ARcS5SIcSY6Qj1bHHPdI7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.160 [XNIO-1 task-6] ARcS5SIcSY6Qj1bHHPdI7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.161 [XNIO-1 task-6] ARcS5SIcSY6Qj1bHHPdI7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.166 [XNIO-1 task-6] ARcS5SIcSY6Qj1bHHPdI7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.171 [XNIO-1 task-6] W8FTNuxLRF6ReJO32VBJgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.171 [XNIO-1 task-6] W8FTNuxLRF6ReJO32VBJgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.172 [XNIO-1 task-6] W8FTNuxLRF6ReJO32VBJgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.172 [XNIO-1 task-6] W8FTNuxLRF6ReJO32VBJgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.176 [XNIO-1 task-6] W8FTNuxLRF6ReJO32VBJgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.182 [XNIO-1 task-6] sEwpQ1PXSxy9jmENvommFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.182 [XNIO-1 task-6] sEwpQ1PXSxy9jmENvommFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.182 [XNIO-1 task-6] sEwpQ1PXSxy9jmENvommFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.182 [XNIO-1 task-6] sEwpQ1PXSxy9jmENvommFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.187 [XNIO-1 task-6] sEwpQ1PXSxy9jmENvommFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.190 [XNIO-1 task-6] G_kNIEJbRJif_dZJjd266A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.190 [XNIO-1 task-6] G_kNIEJbRJif_dZJjd266A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.191 [XNIO-1 task-6] G_kNIEJbRJif_dZJjd266A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.191 [XNIO-1 task-6] G_kNIEJbRJif_dZJjd266A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.195 [XNIO-1 task-6] G_kNIEJbRJif_dZJjd266A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.200 [XNIO-1 task-6] YcAYBNz3QuWaR2YCO61gOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.200 [XNIO-1 task-6] YcAYBNz3QuWaR2YCO61gOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.200 [XNIO-1 task-6] YcAYBNz3QuWaR2YCO61gOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.200 [XNIO-1 task-6] YcAYBNz3QuWaR2YCO61gOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.205 [XNIO-1 task-6] YcAYBNz3QuWaR2YCO61gOA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.208 [XNIO-1 task-6] q8p9ZVFmRQaDCE5IUNrM_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.208 [XNIO-1 task-6] q8p9ZVFmRQaDCE5IUNrM_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.208 [XNIO-1 task-6] q8p9ZVFmRQaDCE5IUNrM_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.208 [XNIO-1 task-6] q8p9ZVFmRQaDCE5IUNrM_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.213 [XNIO-1 task-6] q8p9ZVFmRQaDCE5IUNrM_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.218 [XNIO-1 task-6] xZGqNt8fToOucJfkZOQLbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.218 [XNIO-1 task-6] xZGqNt8fToOucJfkZOQLbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.218 [XNIO-1 task-6] xZGqNt8fToOucJfkZOQLbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.218 [XNIO-1 task-6] xZGqNt8fToOucJfkZOQLbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:53.223 [XNIO-1 task-6] xZGqNt8fToOucJfkZOQLbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.227 [XNIO-1 task-6] SMi-jVfpRJe_lTIro5_l2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.227 [XNIO-1 task-6] SMi-jVfpRJe_lTIro5_l2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.228 [XNIO-1 task-6] SMi-jVfpRJe_lTIro5_l2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.228 [XNIO-1 task-6] SMi-jVfpRJe_lTIro5_l2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:53.232 [XNIO-1 task-6] SMi-jVfpRJe_lTIro5_l2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.236 [XNIO-1 task-6] tf93uL9kTBaVnSM9Yuifsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.236 [XNIO-1 task-6] tf93uL9kTBaVnSM9Yuifsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.236 [XNIO-1 task-6] tf93uL9kTBaVnSM9Yuifsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.237 [XNIO-1 task-6] tf93uL9kTBaVnSM9Yuifsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:53.243 [XNIO-1 task-6] tf93uL9kTBaVnSM9Yuifsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.248 [XNIO-1 task-6] NO1cWHcSQluyKr0YsrrfIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.248 [XNIO-1 task-6] NO1cWHcSQluyKr0YsrrfIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.248 [XNIO-1 task-6] NO1cWHcSQluyKr0YsrrfIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.248 [XNIO-1 task-6] NO1cWHcSQluyKr0YsrrfIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.255 [XNIO-1 task-6] NO1cWHcSQluyKr0YsrrfIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.260 [XNIO-1 task-6] msOvMc9DSHy6C0oVZ_F2tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.260 [XNIO-1 task-6] msOvMc9DSHy6C0oVZ_F2tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.260 [XNIO-1 task-6] msOvMc9DSHy6C0oVZ_F2tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.260 [XNIO-1 task-6] msOvMc9DSHy6C0oVZ_F2tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.265 [XNIO-1 task-6] msOvMc9DSHy6C0oVZ_F2tw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.268 [XNIO-1 task-6] E0E0k1qbTQCF5WSQz_hMVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.268 [XNIO-1 task-6] E0E0k1qbTQCF5WSQz_hMVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.268 [XNIO-1 task-6] E0E0k1qbTQCF5WSQz_hMVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.268 [XNIO-1 task-6] E0E0k1qbTQCF5WSQz_hMVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.274 [XNIO-1 task-6] E0E0k1qbTQCF5WSQz_hMVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.279 [XNIO-1 task-6] o1-ipVXrQtWgTt9RVb0cKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.279 [XNIO-1 task-6] o1-ipVXrQtWgTt9RVb0cKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.279 [XNIO-1 task-6] o1-ipVXrQtWgTt9RVb0cKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.279 [XNIO-1 task-6] o1-ipVXrQtWgTt9RVb0cKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.284 [XNIO-1 task-6] o1-ipVXrQtWgTt9RVb0cKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.289 [XNIO-1 task-6] 9f_v4fhJQBuz46XW_TS_rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.289 [XNIO-1 task-6] 9f_v4fhJQBuz46XW_TS_rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.290 [XNIO-1 task-6] 9f_v4fhJQBuz46XW_TS_rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.290 [XNIO-1 task-6] 9f_v4fhJQBuz46XW_TS_rA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", authorization) +09:12:53.295 [XNIO-1 task-6] 9f_v4fhJQBuz46XW_TS_rA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.297 [XNIO-1 task-6] 3lsIPVBcTZWhqg7y8P4O0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.298 [XNIO-1 task-6] 3lsIPVBcTZWhqg7y8P4O0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.298 [XNIO-1 task-6] 3lsIPVBcTZWhqg7y8P4O0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.298 [XNIO-1 task-6] 3lsIPVBcTZWhqg7y8P4O0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", authorization) +09:12:53.303 [XNIO-1 task-6] 3lsIPVBcTZWhqg7y8P4O0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.307 [XNIO-1 task-6] buquln55QFivc3r6yW75XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.307 [XNIO-1 task-6] buquln55QFivc3r6yW75XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.307 [XNIO-1 task-6] buquln55QFivc3r6yW75XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.307 [XNIO-1 task-6] buquln55QFivc3r6yW75XA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", authorization) +09:12:53.314 [XNIO-1 task-6] buquln55QFivc3r6yW75XA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.317 [XNIO-1 task-6] -yh0elfFT5yPLyJYtVlhEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.317 [XNIO-1 task-6] -yh0elfFT5yPLyJYtVlhEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.317 [XNIO-1 task-6] -yh0elfFT5yPLyJYtVlhEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.317 [XNIO-1 task-6] -yh0elfFT5yPLyJYtVlhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", authorization) +09:12:53.322 [XNIO-1 task-6] -yh0elfFT5yPLyJYtVlhEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.349 [XNIO-1 task-6] KzZvVUFATgeCdqD8gCM2tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.350 [XNIO-1 task-6] KzZvVUFATgeCdqD8gCM2tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.350 [XNIO-1 task-6] KzZvVUFATgeCdqD8gCM2tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.350 [XNIO-1 task-6] KzZvVUFATgeCdqD8gCM2tA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", "Basic MzczZDFkYTgtYmY0YS00ZTc0LWEzMmEtNDNmYzRiODc3ZTdiOkF6UnN6d0luVGZPT1Bhb2lvZkplbWc=", authorization) +09:12:53.355 [XNIO-1 task-6] KzZvVUFATgeCdqD8gCM2tA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.359 [XNIO-1 task-6] _8JYFoFeRIODsLtjzsMZJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.359 [XNIO-1 task-6] _8JYFoFeRIODsLtjzsMZJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.359 [XNIO-1 task-6] _8JYFoFeRIODsLtjzsMZJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.359 [XNIO-1 task-6] _8JYFoFeRIODsLtjzsMZJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.365 [XNIO-1 task-6] _8JYFoFeRIODsLtjzsMZJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.369 [XNIO-1 task-6] s0wBp5XQTem0nociuDJK6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.369 [XNIO-1 task-6] s0wBp5XQTem0nociuDJK6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.369 [XNIO-1 task-6] s0wBp5XQTem0nociuDJK6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.369 [XNIO-1 task-6] s0wBp5XQTem0nociuDJK6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.375 [XNIO-1 task-6] s0wBp5XQTem0nociuDJK6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.379 [XNIO-1 task-6] 5dj0nbzeQs2gRpuINy2G6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.379 [XNIO-1 task-6] 5dj0nbzeQs2gRpuINy2G6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.380 [XNIO-1 task-6] 5dj0nbzeQs2gRpuINy2G6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.380 [XNIO-1 task-6] 5dj0nbzeQs2gRpuINy2G6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.385 [XNIO-1 task-6] 5dj0nbzeQs2gRpuINy2G6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.389 [XNIO-1 task-6] OMIL1MkfQ7S48949_K9aLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.389 [XNIO-1 task-6] OMIL1MkfQ7S48949_K9aLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.389 [XNIO-1 task-6] OMIL1MkfQ7S48949_K9aLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.389 [XNIO-1 task-6] OMIL1MkfQ7S48949_K9aLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.394 [XNIO-1 task-6] OMIL1MkfQ7S48949_K9aLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.398 [XNIO-1 task-6] HXNNYsjjTiGI_gZhNqdmHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.398 [XNIO-1 task-6] HXNNYsjjTiGI_gZhNqdmHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.398 [XNIO-1 task-6] HXNNYsjjTiGI_gZhNqdmHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.398 [XNIO-1 task-6] HXNNYsjjTiGI_gZhNqdmHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.403 [XNIO-1 task-6] HXNNYsjjTiGI_gZhNqdmHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.407 [XNIO-1 task-6] vkGKBRLlRSmm5g11esHdTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.407 [XNIO-1 task-6] vkGKBRLlRSmm5g11esHdTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.407 [XNIO-1 task-6] vkGKBRLlRSmm5g11esHdTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.407 [XNIO-1 task-6] vkGKBRLlRSmm5g11esHdTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.412 [XNIO-1 task-6] vkGKBRLlRSmm5g11esHdTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.415 [XNIO-1 task-6] fQ0A5MKTQp-5kF7_NAiXyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.415 [XNIO-1 task-6] fQ0A5MKTQp-5kF7_NAiXyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.415 [XNIO-1 task-6] fQ0A5MKTQp-5kF7_NAiXyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.416 [XNIO-1 task-6] fQ0A5MKTQp-5kF7_NAiXyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.421 [XNIO-1 task-6] fQ0A5MKTQp-5kF7_NAiXyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.426 [XNIO-1 task-6] xbIToXYlTyi0EgzbYUipCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.426 [XNIO-1 task-6] xbIToXYlTyi0EgzbYUipCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.426 [XNIO-1 task-6] xbIToXYlTyi0EgzbYUipCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.426 [XNIO-1 task-6] xbIToXYlTyi0EgzbYUipCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", authorization) +09:12:53.431 [XNIO-1 task-6] xbIToXYlTyi0EgzbYUipCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.436 [XNIO-1 task-6] B_UFydH3S0agIEa3wDv_-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.436 [XNIO-1 task-6] B_UFydH3S0agIEa3wDv_-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.436 [XNIO-1 task-6] B_UFydH3S0agIEa3wDv_-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.436 [XNIO-1 task-6] B_UFydH3S0agIEa3wDv_-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:53.441 [XNIO-1 task-6] B_UFydH3S0agIEa3wDv_-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.444 [XNIO-1 task-6] Uj2PKPXFT2uQqyKHMiTCoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.445 [XNIO-1 task-6] Uj2PKPXFT2uQqyKHMiTCoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.445 [XNIO-1 task-6] Uj2PKPXFT2uQqyKHMiTCoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.445 [XNIO-1 task-6] Uj2PKPXFT2uQqyKHMiTCoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:53.449 [XNIO-1 task-6] Uj2PKPXFT2uQqyKHMiTCoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.453 [XNIO-1 task-6] 6ivUzREuS-GeEhl52cp4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.453 [XNIO-1 task-6] 6ivUzREuS-GeEhl52cp4Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.453 [XNIO-1 task-6] 6ivUzREuS-GeEhl52cp4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.453 [XNIO-1 task-6] 6ivUzREuS-GeEhl52cp4Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:53.458 [XNIO-1 task-6] 6ivUzREuS-GeEhl52cp4Dw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.461 [XNIO-1 task-6] 1DR88qJ2REarFWJeUvfeHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.461 [XNIO-1 task-6] 1DR88qJ2REarFWJeUvfeHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.462 [XNIO-1 task-6] 1DR88qJ2REarFWJeUvfeHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.462 [XNIO-1 task-6] 1DR88qJ2REarFWJeUvfeHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:53.466 [XNIO-1 task-6] 1DR88qJ2REarFWJeUvfeHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.470 [XNIO-1 task-6] -zYF6JOBS7iOlI-6G9s3HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.470 [XNIO-1 task-6] -zYF6JOBS7iOlI-6G9s3HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.470 [XNIO-1 task-6] -zYF6JOBS7iOlI-6G9s3HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.470 [XNIO-1 task-6] -zYF6JOBS7iOlI-6G9s3HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:53.475 [XNIO-1 task-6] -zYF6JOBS7iOlI-6G9s3HQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.478 [XNIO-1 task-6] iLwrKgvNQ1iQxMt0lP5KyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.478 [XNIO-1 task-6] iLwrKgvNQ1iQxMt0lP5KyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.478 [XNIO-1 task-6] iLwrKgvNQ1iQxMt0lP5KyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.478 [XNIO-1 task-6] iLwrKgvNQ1iQxMt0lP5KyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:53.483 [XNIO-1 task-6] iLwrKgvNQ1iQxMt0lP5KyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.486 [XNIO-1 task-6] smTXKCmqSUikcX9KInvhCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.486 [XNIO-1 task-6] smTXKCmqSUikcX9KInvhCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.486 [XNIO-1 task-6] smTXKCmqSUikcX9KInvhCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.486 [XNIO-1 task-6] smTXKCmqSUikcX9KInvhCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:53.491 [XNIO-1 task-6] smTXKCmqSUikcX9KInvhCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.494 [XNIO-1 task-6] xS9HeRjDQT2HuEP8wRp90A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.494 [XNIO-1 task-6] xS9HeRjDQT2HuEP8wRp90A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.494 [XNIO-1 task-6] xS9HeRjDQT2HuEP8wRp90A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.495 [XNIO-1 task-6] xS9HeRjDQT2HuEP8wRp90A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:53.500 [XNIO-1 task-6] xS9HeRjDQT2HuEP8wRp90A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.503 [XNIO-1 task-6] gOotvQBaRfOF2kvU-E3F-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.503 [XNIO-1 task-6] gOotvQBaRfOF2kvU-E3F-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.503 [XNIO-1 task-6] gOotvQBaRfOF2kvU-E3F-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.503 [XNIO-1 task-6] gOotvQBaRfOF2kvU-E3F-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:53.508 [XNIO-1 task-6] gOotvQBaRfOF2kvU-E3F-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.511 [XNIO-1 task-6] 8rlLsiJ7Ti26vN-XJqiSDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.511 [XNIO-1 task-6] 8rlLsiJ7Ti26vN-XJqiSDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.511 [XNIO-1 task-6] 8rlLsiJ7Ti26vN-XJqiSDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.511 [XNIO-1 task-6] 8rlLsiJ7Ti26vN-XJqiSDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:53.516 [XNIO-1 task-6] 8rlLsiJ7Ti26vN-XJqiSDw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.520 [XNIO-1 task-6] bBMZEuxlSFO7zbki8Zkrbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.520 [XNIO-1 task-6] bBMZEuxlSFO7zbki8Zkrbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.520 [XNIO-1 task-6] bBMZEuxlSFO7zbki8Zkrbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.520 [XNIO-1 task-6] bBMZEuxlSFO7zbki8Zkrbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", "Basic ZWY4MWIzMzAtMDUwOS00YzJkLWE0MzItYjQxM2M4ZWRhZDk2OkNKVzV6SjJTVGp5bXZoRTFJVHltclE=", authorization) +09:12:53.525 [XNIO-1 task-6] bBMZEuxlSFO7zbki8Zkrbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.529 [XNIO-1 task-6] cwzORvgOQvafwYZabHDRuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.529 [XNIO-1 task-6] cwzORvgOQvafwYZabHDRuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.529 [XNIO-1 task-6] cwzORvgOQvafwYZabHDRuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.529 [XNIO-1 task-6] cwzORvgOQvafwYZabHDRuA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:53.535 [XNIO-1 task-6] cwzORvgOQvafwYZabHDRuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.539 [XNIO-1 task-6] -UjHaxTGSpumByf7wN68Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.539 [XNIO-1 task-6] -UjHaxTGSpumByf7wN68Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.539 [XNIO-1 task-6] -UjHaxTGSpumByf7wN68Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.539 [XNIO-1 task-6] -UjHaxTGSpumByf7wN68Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:53.544 [XNIO-1 task-6] -UjHaxTGSpumByf7wN68Ng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.573 [XNIO-1 task-6] wGJncc7lQJ--qW3QFz0iqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.573 [XNIO-1 task-6] wGJncc7lQJ--qW3QFz0iqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.573 [XNIO-1 task-6] wGJncc7lQJ--qW3QFz0iqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.573 [XNIO-1 task-6] wGJncc7lQJ--qW3QFz0iqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:53.578 [XNIO-1 task-6] wGJncc7lQJ--qW3QFz0iqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.582 [XNIO-1 task-6] FfrhfGwyRtefnj8EFDSe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.583 [XNIO-1 task-6] FfrhfGwyRtefnj8EFDSe4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.583 [XNIO-1 task-6] FfrhfGwyRtefnj8EFDSe4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.583 [XNIO-1 task-6] FfrhfGwyRtefnj8EFDSe4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:53.588 [XNIO-1 task-6] FfrhfGwyRtefnj8EFDSe4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.592 [XNIO-1 task-6] xNHGmsx9TSuM6l2MKLsLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.592 [XNIO-1 task-6] xNHGmsx9TSuM6l2MKLsLNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.592 [XNIO-1 task-6] xNHGmsx9TSuM6l2MKLsLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.592 [XNIO-1 task-6] xNHGmsx9TSuM6l2MKLsLNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", authorization) +09:12:53.597 [XNIO-1 task-6] xNHGmsx9TSuM6l2MKLsLNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.605 [XNIO-1 task-6] rtzRSuWnSwG8aCCjRusZaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.605 [XNIO-1 task-6] rtzRSuWnSwG8aCCjRusZaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.605 [XNIO-1 task-6] rtzRSuWnSwG8aCCjRusZaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.605 [XNIO-1 task-6] rtzRSuWnSwG8aCCjRusZaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:53.610 [XNIO-1 task-6] rtzRSuWnSwG8aCCjRusZaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.614 [XNIO-1 task-6] 2Fu1SYytQkGz457q6qgJyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.614 [XNIO-1 task-6] 2Fu1SYytQkGz457q6qgJyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.614 [XNIO-1 task-6] 2Fu1SYytQkGz457q6qgJyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.614 [XNIO-1 task-6] 2Fu1SYytQkGz457q6qgJyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:53.619 [XNIO-1 task-6] 2Fu1SYytQkGz457q6qgJyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.623 [XNIO-1 task-6] vIICaQLpSKCC5Q4oHBc3RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.623 [XNIO-1 task-6] vIICaQLpSKCC5Q4oHBc3RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.623 [XNIO-1 task-6] vIICaQLpSKCC5Q4oHBc3RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.623 [XNIO-1 task-6] vIICaQLpSKCC5Q4oHBc3RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:53.628 [XNIO-1 task-6] vIICaQLpSKCC5Q4oHBc3RQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.632 [XNIO-1 task-6] _EeogeaSQSeg1CZPf0kBpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.632 [XNIO-1 task-6] _EeogeaSQSeg1CZPf0kBpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.632 [XNIO-1 task-6] _EeogeaSQSeg1CZPf0kBpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.632 [XNIO-1 task-6] _EeogeaSQSeg1CZPf0kBpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:53.637 [XNIO-1 task-6] _EeogeaSQSeg1CZPf0kBpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.643 [XNIO-1 task-6] g745GASPQvm-dMN5tvlVYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.643 [XNIO-1 task-6] g745GASPQvm-dMN5tvlVYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.643 [XNIO-1 task-6] g745GASPQvm-dMN5tvlVYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.643 [XNIO-1 task-6] g745GASPQvm-dMN5tvlVYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:53.648 [XNIO-1 task-6] g745GASPQvm-dMN5tvlVYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.652 [XNIO-1 task-6] QZHmVIqFSXOpyt32WoSQIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.652 [XNIO-1 task-6] QZHmVIqFSXOpyt32WoSQIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.652 [XNIO-1 task-6] QZHmVIqFSXOpyt32WoSQIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.652 [XNIO-1 task-6] QZHmVIqFSXOpyt32WoSQIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:53.657 [XNIO-1 task-6] QZHmVIqFSXOpyt32WoSQIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.661 [XNIO-1 task-6] tnA5q8mHR2Kfw-4rRzaBJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.661 [XNIO-1 task-6] tnA5q8mHR2Kfw-4rRzaBJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.661 [XNIO-1 task-6] tnA5q8mHR2Kfw-4rRzaBJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.661 [XNIO-1 task-6] tnA5q8mHR2Kfw-4rRzaBJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:53.666 [XNIO-1 task-6] tnA5q8mHR2Kfw-4rRzaBJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.670 [XNIO-1 task-6] oFn2H2csQCGJjqVknXuWAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.670 [XNIO-1 task-6] oFn2H2csQCGJjqVknXuWAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.670 [XNIO-1 task-6] oFn2H2csQCGJjqVknXuWAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.671 [XNIO-1 task-6] oFn2H2csQCGJjqVknXuWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:53.675 [XNIO-1 task-6] oFn2H2csQCGJjqVknXuWAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.679 [XNIO-1 task-6] wdcxMLOoSZ6VYd85tRNQYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.679 [XNIO-1 task-6] wdcxMLOoSZ6VYd85tRNQYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.679 [XNIO-1 task-6] wdcxMLOoSZ6VYd85tRNQYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.679 [XNIO-1 task-6] wdcxMLOoSZ6VYd85tRNQYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.684 [XNIO-1 task-6] wdcxMLOoSZ6VYd85tRNQYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.688 [XNIO-1 task-6] GhAYWkXiRlW308l55fLmqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.688 [XNIO-1 task-6] GhAYWkXiRlW308l55fLmqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.688 [XNIO-1 task-6] GhAYWkXiRlW308l55fLmqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.688 [XNIO-1 task-6] GhAYWkXiRlW308l55fLmqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.693 [XNIO-1 task-6] GhAYWkXiRlW308l55fLmqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.696 [XNIO-1 task-6] xA9Wzx2BTimhtlgZ_ddSug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.696 [XNIO-1 task-6] xA9Wzx2BTimhtlgZ_ddSug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.696 [XNIO-1 task-6] xA9Wzx2BTimhtlgZ_ddSug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.697 [XNIO-1 task-6] xA9Wzx2BTimhtlgZ_ddSug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:53.701 [XNIO-1 task-6] xA9Wzx2BTimhtlgZ_ddSug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.705 [XNIO-1 task-6] 2iqtxSibQQSjSiAOJhjQvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.705 [XNIO-1 task-6] 2iqtxSibQQSjSiAOJhjQvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.705 [XNIO-1 task-6] 2iqtxSibQQSjSiAOJhjQvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.705 [XNIO-1 task-6] 2iqtxSibQQSjSiAOJhjQvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.710 [XNIO-1 task-6] 2iqtxSibQQSjSiAOJhjQvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.714 [XNIO-1 task-6] 5iVjQ3u4TTG1NzdvcUUQ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.714 [XNIO-1 task-6] 5iVjQ3u4TTG1NzdvcUUQ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.714 [XNIO-1 task-6] 5iVjQ3u4TTG1NzdvcUUQ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.714 [XNIO-1 task-6] 5iVjQ3u4TTG1NzdvcUUQ7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.719 [XNIO-1 task-6] 5iVjQ3u4TTG1NzdvcUUQ7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.722 [XNIO-1 task-6] mWqD3uqDSg-0pAsa4Zv3VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.722 [XNIO-1 task-6] mWqD3uqDSg-0pAsa4Zv3VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.722 [XNIO-1 task-6] mWqD3uqDSg-0pAsa4Zv3VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.723 [XNIO-1 task-6] mWqD3uqDSg-0pAsa4Zv3VA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.727 [XNIO-1 task-6] mWqD3uqDSg-0pAsa4Zv3VA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.731 [XNIO-1 task-6] oRbyboS9TgGtHRDTSwjAtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.731 [XNIO-1 task-6] oRbyboS9TgGtHRDTSwjAtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.731 [XNIO-1 task-6] oRbyboS9TgGtHRDTSwjAtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.731 [XNIO-1 task-6] oRbyboS9TgGtHRDTSwjAtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.736 [XNIO-1 task-6] oRbyboS9TgGtHRDTSwjAtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.739 [XNIO-1 task-6] W_6LeUzyR_GbOAIqOBhJ2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.739 [XNIO-1 task-6] W_6LeUzyR_GbOAIqOBhJ2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.739 [XNIO-1 task-6] W_6LeUzyR_GbOAIqOBhJ2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.740 [XNIO-1 task-6] W_6LeUzyR_GbOAIqOBhJ2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.745 [XNIO-1 task-6] W_6LeUzyR_GbOAIqOBhJ2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.748 [XNIO-1 task-6] babRG1hnT5yljfkvAFO0zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.748 [XNIO-1 task-6] babRG1hnT5yljfkvAFO0zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.749 [XNIO-1 task-6] babRG1hnT5yljfkvAFO0zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.749 [XNIO-1 task-6] babRG1hnT5yljfkvAFO0zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.754 [XNIO-1 task-6] babRG1hnT5yljfkvAFO0zw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.757 [XNIO-1 task-6] RHq3k9pLSdyw1tYH1kVebg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.757 [XNIO-1 task-6] RHq3k9pLSdyw1tYH1kVebg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.757 [XNIO-1 task-6] RHq3k9pLSdyw1tYH1kVebg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.757 [XNIO-1 task-6] RHq3k9pLSdyw1tYH1kVebg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.762 [XNIO-1 task-6] RHq3k9pLSdyw1tYH1kVebg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.766 [XNIO-1 task-6] -kS0Pgw0RlmbXq5thjGkfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.766 [XNIO-1 task-6] -kS0Pgw0RlmbXq5thjGkfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.766 [XNIO-1 task-6] -kS0Pgw0RlmbXq5thjGkfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.766 [XNIO-1 task-6] -kS0Pgw0RlmbXq5thjGkfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.771 [XNIO-1 task-6] -kS0Pgw0RlmbXq5thjGkfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.776 [XNIO-1 task-6] fBQgOK2rSOCViWrXfmkIDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.777 [XNIO-1 task-6] fBQgOK2rSOCViWrXfmkIDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.777 [XNIO-1 task-6] fBQgOK2rSOCViWrXfmkIDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.777 [XNIO-1 task-6] fBQgOK2rSOCViWrXfmkIDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.781 [XNIO-1 task-6] fBQgOK2rSOCViWrXfmkIDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.785 [XNIO-1 task-6] dzAwJuSBSNiXF1gPDAUImw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.785 [XNIO-1 task-6] dzAwJuSBSNiXF1gPDAUImw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.785 [XNIO-1 task-6] dzAwJuSBSNiXF1gPDAUImw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.785 [XNIO-1 task-6] dzAwJuSBSNiXF1gPDAUImw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.790 [XNIO-1 task-6] dzAwJuSBSNiXF1gPDAUImw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.794 [XNIO-1 task-6] UT36PG2eTKiw86IvBrEH0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.794 [XNIO-1 task-6] UT36PG2eTKiw86IvBrEH0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.794 [XNIO-1 task-6] UT36PG2eTKiw86IvBrEH0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.794 [XNIO-1 task-6] UT36PG2eTKiw86IvBrEH0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.799 [XNIO-1 task-6] UT36PG2eTKiw86IvBrEH0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.802 [XNIO-1 task-6] 5qVpLo-ESMOJH2m5PyBP6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.802 [XNIO-1 task-6] 5qVpLo-ESMOJH2m5PyBP6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.802 [XNIO-1 task-6] 5qVpLo-ESMOJH2m5PyBP6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.802 [XNIO-1 task-6] 5qVpLo-ESMOJH2m5PyBP6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.807 [XNIO-1 task-6] 5qVpLo-ESMOJH2m5PyBP6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.811 [XNIO-1 task-6] ZU7jXr2NS_2PQRKYgc2MTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.811 [XNIO-1 task-6] ZU7jXr2NS_2PQRKYgc2MTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.811 [XNIO-1 task-6] ZU7jXr2NS_2PQRKYgc2MTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.812 [XNIO-1 task-6] ZU7jXr2NS_2PQRKYgc2MTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.816 [XNIO-1 task-6] ZU7jXr2NS_2PQRKYgc2MTQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.820 [XNIO-1 task-6] JO9JjzCFSd6bb_URL_6X4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.820 [XNIO-1 task-6] JO9JjzCFSd6bb_URL_6X4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.821 [XNIO-1 task-6] JO9JjzCFSd6bb_URL_6X4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.821 [XNIO-1 task-6] JO9JjzCFSd6bb_URL_6X4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.826 [XNIO-1 task-6] JO9JjzCFSd6bb_URL_6X4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.829 [XNIO-1 task-6] d0_OcjxiR0SM02IapiW7OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.829 [XNIO-1 task-6] d0_OcjxiR0SM02IapiW7OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.829 [XNIO-1 task-6] d0_OcjxiR0SM02IapiW7OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.830 [XNIO-1 task-6] d0_OcjxiR0SM02IapiW7OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.834 [XNIO-1 task-6] d0_OcjxiR0SM02IapiW7OQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.838 [XNIO-1 task-6] Nk_K3hdwRqeu2ej6ojk6sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.838 [XNIO-1 task-6] Nk_K3hdwRqeu2ej6ojk6sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.838 [XNIO-1 task-6] Nk_K3hdwRqeu2ej6ojk6sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.838 [XNIO-1 task-6] Nk_K3hdwRqeu2ej6ojk6sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.843 [XNIO-1 task-6] Nk_K3hdwRqeu2ej6ojk6sw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.846 [XNIO-1 task-6] 6YJzUV9ISN-gQCqFSf-AKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.846 [XNIO-1 task-6] 6YJzUV9ISN-gQCqFSf-AKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.846 [XNIO-1 task-6] 6YJzUV9ISN-gQCqFSf-AKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.847 [XNIO-1 task-6] 6YJzUV9ISN-gQCqFSf-AKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.851 [XNIO-1 task-6] 6YJzUV9ISN-gQCqFSf-AKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.856 [XNIO-1 task-6] 5NJWRvzBRbKawFgCQaQ6iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.856 [XNIO-1 task-6] 5NJWRvzBRbKawFgCQaQ6iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.857 [XNIO-1 task-6] 5NJWRvzBRbKawFgCQaQ6iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.857 [XNIO-1 task-6] 5NJWRvzBRbKawFgCQaQ6iA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.862 [XNIO-1 task-6] 5NJWRvzBRbKawFgCQaQ6iA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.865 [XNIO-1 task-6] KQRekUNGSz2ZdDj6ptFaWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.865 [XNIO-1 task-6] KQRekUNGSz2ZdDj6ptFaWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.865 [XNIO-1 task-6] KQRekUNGSz2ZdDj6ptFaWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.865 [XNIO-1 task-6] KQRekUNGSz2ZdDj6ptFaWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.870 [XNIO-1 task-6] KQRekUNGSz2ZdDj6ptFaWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.874 [XNIO-1 task-6] gJWd3dJoSSanYA0zleECEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.874 [XNIO-1 task-6] gJWd3dJoSSanYA0zleECEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.874 [XNIO-1 task-6] gJWd3dJoSSanYA0zleECEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.874 [XNIO-1 task-6] gJWd3dJoSSanYA0zleECEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.879 [XNIO-1 task-6] gJWd3dJoSSanYA0zleECEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.882 [XNIO-1 task-6] MbWmcH03TJuFp1lrPyi25w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.882 [XNIO-1 task-6] MbWmcH03TJuFp1lrPyi25w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.882 [XNIO-1 task-6] MbWmcH03TJuFp1lrPyi25w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.883 [XNIO-1 task-6] MbWmcH03TJuFp1lrPyi25w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:53.887 [XNIO-1 task-6] MbWmcH03TJuFp1lrPyi25w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.892 [XNIO-1 task-6] XQRo9G3OQF6XkbWe4GbT-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.892 [XNIO-1 task-6] XQRo9G3OQF6XkbWe4GbT-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.892 [XNIO-1 task-6] XQRo9G3OQF6XkbWe4GbT-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.892 [XNIO-1 task-6] XQRo9G3OQF6XkbWe4GbT-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.897 [XNIO-1 task-6] XQRo9G3OQF6XkbWe4GbT-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.900 [XNIO-1 task-6] QSk3tREvRW-Lhox4GuO7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.900 [XNIO-1 task-6] QSk3tREvRW-Lhox4GuO7hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.900 [XNIO-1 task-6] QSk3tREvRW-Lhox4GuO7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.901 [XNIO-1 task-6] QSk3tREvRW-Lhox4GuO7hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.905 [XNIO-1 task-6] QSk3tREvRW-Lhox4GuO7hQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.909 [XNIO-1 task-6] SIcLkm8rSueRn6AFhuptAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.909 [XNIO-1 task-6] SIcLkm8rSueRn6AFhuptAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.909 [XNIO-1 task-6] SIcLkm8rSueRn6AFhuptAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.909 [XNIO-1 task-6] SIcLkm8rSueRn6AFhuptAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.914 [XNIO-1 task-6] SIcLkm8rSueRn6AFhuptAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.917 [XNIO-1 task-6] ECQzHT_ZSA6Ltk-99JXuTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.917 [XNIO-1 task-6] ECQzHT_ZSA6Ltk-99JXuTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.918 [XNIO-1 task-6] ECQzHT_ZSA6Ltk-99JXuTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.918 [XNIO-1 task-6] ECQzHT_ZSA6Ltk-99JXuTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:53.922 [XNIO-1 task-6] ECQzHT_ZSA6Ltk-99JXuTQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.926 [XNIO-1 task-6] _VckEQacSR-oKJduuy8_3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.926 [XNIO-1 task-6] _VckEQacSR-oKJduuy8_3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.927 [XNIO-1 task-6] _VckEQacSR-oKJduuy8_3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.927 [XNIO-1 task-6] _VckEQacSR-oKJduuy8_3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.932 [XNIO-1 task-6] _VckEQacSR-oKJduuy8_3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.936 [XNIO-1 task-6] i4MUEYvHTIuWkNZnhYKBcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.937 [XNIO-1 task-6] i4MUEYvHTIuWkNZnhYKBcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.937 [XNIO-1 task-6] i4MUEYvHTIuWkNZnhYKBcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.937 [XNIO-1 task-6] i4MUEYvHTIuWkNZnhYKBcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.942 [XNIO-1 task-6] i4MUEYvHTIuWkNZnhYKBcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.946 [XNIO-1 task-6] vkrpHFbwSsaqyLNiYglcnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.946 [XNIO-1 task-6] vkrpHFbwSsaqyLNiYglcnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.947 [XNIO-1 task-6] vkrpHFbwSsaqyLNiYglcnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.947 [XNIO-1 task-6] vkrpHFbwSsaqyLNiYglcnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.952 [XNIO-1 task-6] vkrpHFbwSsaqyLNiYglcnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.955 [XNIO-1 task-6] RbjUTw2IQw6pkjiI2pFy0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.956 [XNIO-1 task-6] RbjUTw2IQw6pkjiI2pFy0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.956 [XNIO-1 task-6] RbjUTw2IQw6pkjiI2pFy0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.956 [XNIO-1 task-6] RbjUTw2IQw6pkjiI2pFy0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:53.961 [XNIO-1 task-6] RbjUTw2IQw6pkjiI2pFy0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.965 [XNIO-1 task-6] xBZcK-3mS6ezPre7bYwyRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.965 [XNIO-1 task-6] xBZcK-3mS6ezPre7bYwyRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.965 [XNIO-1 task-6] xBZcK-3mS6ezPre7bYwyRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.965 [XNIO-1 task-6] xBZcK-3mS6ezPre7bYwyRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.970 [XNIO-1 task-6] xBZcK-3mS6ezPre7bYwyRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.973 [XNIO-1 task-6] cPE4RORMQgWsqEIOOPE8SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.973 [XNIO-1 task-6] cPE4RORMQgWsqEIOOPE8SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.973 [XNIO-1 task-6] cPE4RORMQgWsqEIOOPE8SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.973 [XNIO-1 task-6] cPE4RORMQgWsqEIOOPE8SA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:53.978 [XNIO-1 task-6] cPE4RORMQgWsqEIOOPE8SA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.982 [XNIO-1 task-6] 4yNltUViQ22DogkgCgrNAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.982 [XNIO-1 task-6] 4yNltUViQ22DogkgCgrNAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.982 [XNIO-1 task-6] 4yNltUViQ22DogkgCgrNAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.983 [XNIO-1 task-6] 4yNltUViQ22DogkgCgrNAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", authorization) +09:12:53.987 [XNIO-1 task-6] 4yNltUViQ22DogkgCgrNAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.991 [XNIO-1 task-6] fmHxI24hS3G2-XfraUEHTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.991 [XNIO-1 task-6] fmHxI24hS3G2-XfraUEHTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.991 [XNIO-1 task-6] fmHxI24hS3G2-XfraUEHTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.991 [XNIO-1 task-6] fmHxI24hS3G2-XfraUEHTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", authorization) +09:12:53.996 [XNIO-1 task-6] fmHxI24hS3G2-XfraUEHTQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:53.999 [XNIO-1 task-6] 5tFOcGeqQdWZNXLpcZANQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:53.999 [XNIO-1 task-6] 5tFOcGeqQdWZNXLpcZANQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:53.999 [XNIO-1 task-6] 5tFOcGeqQdWZNXLpcZANQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.000 [XNIO-1 task-6] 5tFOcGeqQdWZNXLpcZANQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", authorization) +09:12:54.004 [XNIO-1 task-6] 5tFOcGeqQdWZNXLpcZANQg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.009 [XNIO-1 task-6] Nwa3qaagSWCNgj7e6t5NNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.009 [XNIO-1 task-6] Nwa3qaagSWCNgj7e6t5NNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.009 [XNIO-1 task-6] Nwa3qaagSWCNgj7e6t5NNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.009 [XNIO-1 task-6] Nwa3qaagSWCNgj7e6t5NNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:54.014 [XNIO-1 task-6] Nwa3qaagSWCNgj7e6t5NNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.019 [XNIO-1 task-6] -i3k03OIS0uw5j7EPaXEFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.019 [XNIO-1 task-6] -i3k03OIS0uw5j7EPaXEFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.020 [XNIO-1 task-6] -i3k03OIS0uw5j7EPaXEFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.020 [XNIO-1 task-6] -i3k03OIS0uw5j7EPaXEFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", authorization) +09:12:54.024 [XNIO-1 task-6] -i3k03OIS0uw5j7EPaXEFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.028 [XNIO-1 task-6] WUAEM0pLQBqI6TgkQGtwwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.028 [XNIO-1 task-6] WUAEM0pLQBqI6TgkQGtwwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.028 [XNIO-1 task-6] WUAEM0pLQBqI6TgkQGtwwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.028 [XNIO-1 task-6] WUAEM0pLQBqI6TgkQGtwwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", "Basic MjVhYjFkOTItZWI1MC00MWQyLThmZTYtMDQ2NTZiZGExZGU4Ok9XbmY3SENKUjRpV1ltVnF0djFhWWc=", authorization) +09:12:54.033 [XNIO-1 task-6] WUAEM0pLQBqI6TgkQGtwwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.037 [XNIO-1 task-6] YcViN_G3T6WbnmIWTeAoyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.038 [XNIO-1 task-6] YcViN_G3T6WbnmIWTeAoyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.038 [XNIO-1 task-6] YcViN_G3T6WbnmIWTeAoyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.038 [XNIO-1 task-6] YcViN_G3T6WbnmIWTeAoyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", authorization) +09:12:54.042 [XNIO-1 task-6] YcViN_G3T6WbnmIWTeAoyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.046 [XNIO-1 task-6] cty5L5GPQ4iAX26W1Fg5iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.046 [XNIO-1 task-6] cty5L5GPQ4iAX26W1Fg5iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.046 [XNIO-1 task-6] cty5L5GPQ4iAX26W1Fg5iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.046 [XNIO-1 task-6] cty5L5GPQ4iAX26W1Fg5iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", "Basic MjUzYjFmMWEtYzg3ZS00MGJiLTkyNGMtMmZkNDVlNjc5MDQwOnMzWm9HV2ZfUmNXTUlOd3R2aUxxQ0E=", authorization) +09:12:54.051 [XNIO-1 task-6] cty5L5GPQ4iAX26W1Fg5iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.055 [XNIO-1 task-6] qNggxF6OSDGCxAi75R5PYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.055 [XNIO-1 task-6] qNggxF6OSDGCxAi75R5PYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.056 [XNIO-1 task-6] qNggxF6OSDGCxAi75R5PYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.056 [XNIO-1 task-6] qNggxF6OSDGCxAi75R5PYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", "Basic MjBiN2E2YWUtYTVlMy00N2NmLTgyZDYtNzZlYmMwNWIyNDg1OmVaZTFjbWoxUTQtVW1uZThrVXNuS3c=", authorization) +09:12:54.062 [XNIO-1 task-6] qNggxF6OSDGCxAi75R5PYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.067 [XNIO-1 task-6] 1ayjex3fSg-Ki1TovKZYHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.067 [XNIO-1 task-6] 1ayjex3fSg-Ki1TovKZYHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.067 [XNIO-1 task-6] 1ayjex3fSg-Ki1TovKZYHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.067 [XNIO-1 task-6] 1ayjex3fSg-Ki1TovKZYHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:54.072 [XNIO-1 task-6] 1ayjex3fSg-Ki1TovKZYHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.076 [XNIO-1 task-6] sTuO2xCVSzeOIRew01BU5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.076 [XNIO-1 task-6] sTuO2xCVSzeOIRew01BU5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.076 [XNIO-1 task-6] sTuO2xCVSzeOIRew01BU5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.077 [XNIO-1 task-6] sTuO2xCVSzeOIRew01BU5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:54.081 [XNIO-1 task-6] sTuO2xCVSzeOIRew01BU5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.085 [XNIO-1 task-6] fsylkkTHQ5i_wXkiFxAdTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.085 [XNIO-1 task-6] fsylkkTHQ5i_wXkiFxAdTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.086 [XNIO-1 task-6] fsylkkTHQ5i_wXkiFxAdTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.086 [XNIO-1 task-6] fsylkkTHQ5i_wXkiFxAdTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.090 [XNIO-1 task-6] fsylkkTHQ5i_wXkiFxAdTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.094 [XNIO-1 task-6] Oj_1TWH9QnWWgsBSrMyFDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.094 [XNIO-1 task-6] Oj_1TWH9QnWWgsBSrMyFDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.094 [XNIO-1 task-6] Oj_1TWH9QnWWgsBSrMyFDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.094 [XNIO-1 task-6] Oj_1TWH9QnWWgsBSrMyFDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.099 [XNIO-1 task-6] Oj_1TWH9QnWWgsBSrMyFDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.106 [XNIO-1 task-6] LfLZUSqRSTqA-aDkCoNktA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.106 [XNIO-1 task-6] LfLZUSqRSTqA-aDkCoNktA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.106 [XNIO-1 task-6] LfLZUSqRSTqA-aDkCoNktA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.106 [XNIO-1 task-6] LfLZUSqRSTqA-aDkCoNktA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.111 [XNIO-1 task-6] LfLZUSqRSTqA-aDkCoNktA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.115 [XNIO-1 task-6] 3-KWLgo0TdKLSzGWS45pwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.115 [XNIO-1 task-6] 3-KWLgo0TdKLSzGWS45pwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.116 [XNIO-1 task-6] 3-KWLgo0TdKLSzGWS45pwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.116 [XNIO-1 task-6] 3-KWLgo0TdKLSzGWS45pwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:54.121 [XNIO-1 task-6] 3-KWLgo0TdKLSzGWS45pwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.124 [XNIO-1 task-6] OreeJuMsSL6-GDi2WAhUIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.125 [XNIO-1 task-6] OreeJuMsSL6-GDi2WAhUIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.125 [XNIO-1 task-6] OreeJuMsSL6-GDi2WAhUIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.125 [XNIO-1 task-6] OreeJuMsSL6-GDi2WAhUIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.129 [XNIO-1 task-6] OreeJuMsSL6-GDi2WAhUIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.133 [XNIO-1 task-6] G_apQJBkQ8SiAgvy_w7mZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.133 [XNIO-1 task-6] G_apQJBkQ8SiAgvy_w7mZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.133 [XNIO-1 task-6] G_apQJBkQ8SiAgvy_w7mZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.134 [XNIO-1 task-6] G_apQJBkQ8SiAgvy_w7mZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:54.138 [XNIO-1 task-6] G_apQJBkQ8SiAgvy_w7mZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.142 [XNIO-1 task-6] rbftUfPlRY2Qz7_BbsnFjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.142 [XNIO-1 task-6] rbftUfPlRY2Qz7_BbsnFjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.142 [XNIO-1 task-6] rbftUfPlRY2Qz7_BbsnFjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.142 [XNIO-1 task-6] rbftUfPlRY2Qz7_BbsnFjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:54.147 [XNIO-1 task-6] rbftUfPlRY2Qz7_BbsnFjw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.151 [XNIO-1 task-6] RKQwI_9aTs-yx9RWp1YM1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.151 [XNIO-1 task-6] RKQwI_9aTs-yx9RWp1YM1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.151 [XNIO-1 task-6] RKQwI_9aTs-yx9RWp1YM1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.151 [XNIO-1 task-6] RKQwI_9aTs-yx9RWp1YM1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.156 [XNIO-1 task-6] RKQwI_9aTs-yx9RWp1YM1Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.160 [XNIO-1 task-6] V6B76bkCTViydEtPU3k-Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.160 [XNIO-1 task-6] V6B76bkCTViydEtPU3k-Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.161 [XNIO-1 task-6] V6B76bkCTViydEtPU3k-Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.161 [XNIO-1 task-6] V6B76bkCTViydEtPU3k-Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.166 [XNIO-1 task-6] V6B76bkCTViydEtPU3k-Lw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.169 [XNIO-1 task-6] -ZZl9bs-R_a-xe8xPgCs7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.170 [XNIO-1 task-6] -ZZl9bs-R_a-xe8xPgCs7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.170 [XNIO-1 task-6] -ZZl9bs-R_a-xe8xPgCs7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.170 [XNIO-1 task-6] -ZZl9bs-R_a-xe8xPgCs7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.175 [XNIO-1 task-6] -ZZl9bs-R_a-xe8xPgCs7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.179 [XNIO-1 task-6] 1Di-0MOWSCuGlYFZwfN0_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.179 [XNIO-1 task-6] 1Di-0MOWSCuGlYFZwfN0_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.179 [XNIO-1 task-6] 1Di-0MOWSCuGlYFZwfN0_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.179 [XNIO-1 task-6] 1Di-0MOWSCuGlYFZwfN0_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:54.184 [XNIO-1 task-6] 1Di-0MOWSCuGlYFZwfN0_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.187 [XNIO-1 task-6] bOcfTZw7QEyDG4EKxSRvIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.188 [XNIO-1 task-6] bOcfTZw7QEyDG4EKxSRvIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.188 [XNIO-1 task-6] bOcfTZw7QEyDG4EKxSRvIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.188 [XNIO-1 task-6] bOcfTZw7QEyDG4EKxSRvIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.193 [XNIO-1 task-6] bOcfTZw7QEyDG4EKxSRvIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.196 [XNIO-1 task-6] QLrfsN_wS5ahBcMQADleyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.196 [XNIO-1 task-6] QLrfsN_wS5ahBcMQADleyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.196 [XNIO-1 task-6] QLrfsN_wS5ahBcMQADleyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.196 [XNIO-1 task-6] QLrfsN_wS5ahBcMQADleyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.201 [XNIO-1 task-6] QLrfsN_wS5ahBcMQADleyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.205 [XNIO-1 task-6] c95vviSRQzulaPhKWRvipA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.205 [XNIO-1 task-6] c95vviSRQzulaPhKWRvipA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.205 [XNIO-1 task-6] c95vviSRQzulaPhKWRvipA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.205 [XNIO-1 task-6] c95vviSRQzulaPhKWRvipA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", "Basic YzQ3OGU3ZTQtMGE5Ny00NDU5LWFlMjgtODFhODZlNWQ1ZmIzOmZWai1jSVRVUmthd25BWlNoTDJoNnc=", authorization) +09:12:54.210 [XNIO-1 task-6] c95vviSRQzulaPhKWRvipA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.214 [XNIO-1 task-6] neT73tk0Rs2mwZJv98oaNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.214 [XNIO-1 task-6] neT73tk0Rs2mwZJv98oaNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.214 [XNIO-1 task-6] neT73tk0Rs2mwZJv98oaNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.214 [XNIO-1 task-6] neT73tk0Rs2mwZJv98oaNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.219 [XNIO-1 task-6] neT73tk0Rs2mwZJv98oaNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.223 [XNIO-1 task-6] ber3lJ8kQMGjy20SvcPEcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.223 [XNIO-1 task-6] ber3lJ8kQMGjy20SvcPEcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.223 [XNIO-1 task-6] ber3lJ8kQMGjy20SvcPEcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.223 [XNIO-1 task-6] ber3lJ8kQMGjy20SvcPEcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:54.228 [XNIO-1 task-6] ber3lJ8kQMGjy20SvcPEcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.231 [XNIO-1 task-6] F3AVVOABQhe1EHjcLHoUGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.231 [XNIO-1 task-6] F3AVVOABQhe1EHjcLHoUGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.231 [XNIO-1 task-6] F3AVVOABQhe1EHjcLHoUGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.232 [XNIO-1 task-6] F3AVVOABQhe1EHjcLHoUGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.236 [XNIO-1 task-6] F3AVVOABQhe1EHjcLHoUGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.239 [XNIO-1 task-6] OAGa5FcBTnKW1MxdaGp9Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.240 [XNIO-1 task-6] OAGa5FcBTnKW1MxdaGp9Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.240 [XNIO-1 task-6] OAGa5FcBTnKW1MxdaGp9Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.240 [XNIO-1 task-6] OAGa5FcBTnKW1MxdaGp9Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.244 [XNIO-1 task-6] OAGa5FcBTnKW1MxdaGp9Bw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.248 [XNIO-1 task-6] m2OisplgTeeOjZqy7jqHzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.248 [XNIO-1 task-6] m2OisplgTeeOjZqy7jqHzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.248 [XNIO-1 task-6] m2OisplgTeeOjZqy7jqHzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.248 [XNIO-1 task-6] m2OisplgTeeOjZqy7jqHzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.253 [XNIO-1 task-6] m2OisplgTeeOjZqy7jqHzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.257 [XNIO-1 task-6] Bb3u4ytURP2uGsHr2uQ_tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.257 [XNIO-1 task-6] Bb3u4ytURP2uGsHr2uQ_tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.257 [XNIO-1 task-6] Bb3u4ytURP2uGsHr2uQ_tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.257 [XNIO-1 task-6] Bb3u4ytURP2uGsHr2uQ_tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.262 [XNIO-1 task-6] Bb3u4ytURP2uGsHr2uQ_tQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.265 [XNIO-1 task-6] X4Br_h4tQyOk8oenX1Xbbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.265 [XNIO-1 task-6] X4Br_h4tQyOk8oenX1Xbbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.265 [XNIO-1 task-6] X4Br_h4tQyOk8oenX1Xbbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.265 [XNIO-1 task-6] X4Br_h4tQyOk8oenX1Xbbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.270 [XNIO-1 task-6] X4Br_h4tQyOk8oenX1Xbbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.273 [XNIO-1 task-6] zJpzTbOoRKmTddDcRlhwvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.273 [XNIO-1 task-6] zJpzTbOoRKmTddDcRlhwvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.273 [XNIO-1 task-6] zJpzTbOoRKmTddDcRlhwvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.274 [XNIO-1 task-6] zJpzTbOoRKmTddDcRlhwvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.278 [XNIO-1 task-6] zJpzTbOoRKmTddDcRlhwvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.282 [XNIO-1 task-6] jDULFNSVTIG3cTx3fskybw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.282 [XNIO-1 task-6] jDULFNSVTIG3cTx3fskybw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.282 [XNIO-1 task-6] jDULFNSVTIG3cTx3fskybw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.282 [XNIO-1 task-6] jDULFNSVTIG3cTx3fskybw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.287 [XNIO-1 task-6] jDULFNSVTIG3cTx3fskybw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.290 [XNIO-1 task-6] Qd3lxhPOSvStcMgy_T_XeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.290 [XNIO-1 task-6] Qd3lxhPOSvStcMgy_T_XeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.290 [XNIO-1 task-6] Qd3lxhPOSvStcMgy_T_XeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.290 [XNIO-1 task-6] Qd3lxhPOSvStcMgy_T_XeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.295 [XNIO-1 task-6] Qd3lxhPOSvStcMgy_T_XeA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.298 [XNIO-1 task-6] RnoSoDeyS_-h8kJYdNxiOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.298 [XNIO-1 task-6] RnoSoDeyS_-h8kJYdNxiOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.298 [XNIO-1 task-6] RnoSoDeyS_-h8kJYdNxiOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.299 [XNIO-1 task-6] RnoSoDeyS_-h8kJYdNxiOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.303 [XNIO-1 task-6] RnoSoDeyS_-h8kJYdNxiOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.309 [XNIO-1 task-6] TLbdkOXqRjK0StG0-zn5mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.309 [XNIO-1 task-6] TLbdkOXqRjK0StG0-zn5mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.309 [XNIO-1 task-6] TLbdkOXqRjK0StG0-zn5mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.309 [XNIO-1 task-6] TLbdkOXqRjK0StG0-zn5mA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.314 [XNIO-1 task-6] TLbdkOXqRjK0StG0-zn5mA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.317 [XNIO-1 task-6] JiHAIUdBQV6D80Us4JWiQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.317 [XNIO-1 task-6] JiHAIUdBQV6D80Us4JWiQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.317 [XNIO-1 task-6] JiHAIUdBQV6D80Us4JWiQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.318 [XNIO-1 task-6] JiHAIUdBQV6D80Us4JWiQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", "Basic ODAyYzY3MDYtNGZjYi00NjJkLWFlZmEtMWE4ODZjYWE3OTk0Oi1DYUlvbWNNVEVhaXRoM3FoY2hfOXc=", authorization) +09:12:54.322 [XNIO-1 task-6] JiHAIUdBQV6D80Us4JWiQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.326 [XNIO-1 task-6] oogNHkTjT2OKE5SLMYFk9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.326 [XNIO-1 task-6] oogNHkTjT2OKE5SLMYFk9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.326 [XNIO-1 task-6] oogNHkTjT2OKE5SLMYFk9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.326 [XNIO-1 task-6] oogNHkTjT2OKE5SLMYFk9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.331 [XNIO-1 task-6] oogNHkTjT2OKE5SLMYFk9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.336 [XNIO-1 task-6] Pm3I1Ct1SsS3OtcJcGL5Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.336 [XNIO-1 task-6] Pm3I1Ct1SsS3OtcJcGL5Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.336 [XNIO-1 task-6] Pm3I1Ct1SsS3OtcJcGL5Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.336 [XNIO-1 task-6] Pm3I1Ct1SsS3OtcJcGL5Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:54.340 [XNIO-1 task-6] Pm3I1Ct1SsS3OtcJcGL5Xw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.344 [XNIO-1 task-6] LG2_WCgERj-pQhHezzKmAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.344 [XNIO-1 task-6] LG2_WCgERj-pQhHezzKmAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.344 [XNIO-1 task-6] LG2_WCgERj-pQhHezzKmAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.344 [XNIO-1 task-6] LG2_WCgERj-pQhHezzKmAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.349 [XNIO-1 task-6] LG2_WCgERj-pQhHezzKmAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.353 [XNIO-1 task-6] ZxtWr47DTH2Wtoi_v7ca0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.353 [XNIO-1 task-6] ZxtWr47DTH2Wtoi_v7ca0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.353 [XNIO-1 task-6] ZxtWr47DTH2Wtoi_v7ca0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.353 [XNIO-1 task-6] ZxtWr47DTH2Wtoi_v7ca0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.358 [XNIO-1 task-6] ZxtWr47DTH2Wtoi_v7ca0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.363 [XNIO-1 task-6] OX1SEn_gRL21J9AEkfcCHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.364 [XNIO-1 task-6] OX1SEn_gRL21J9AEkfcCHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.364 [XNIO-1 task-6] OX1SEn_gRL21J9AEkfcCHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.364 [XNIO-1 task-6] OX1SEn_gRL21J9AEkfcCHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:54.368 [XNIO-1 task-6] OX1SEn_gRL21J9AEkfcCHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.373 [XNIO-1 task-6] HyueK9mIRJiq0r_kEI4cGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.373 [XNIO-1 task-6] HyueK9mIRJiq0r_kEI4cGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.373 [XNIO-1 task-6] HyueK9mIRJiq0r_kEI4cGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.373 [XNIO-1 task-6] HyueK9mIRJiq0r_kEI4cGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.378 [XNIO-1 task-6] HyueK9mIRJiq0r_kEI4cGQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.381 [XNIO-1 task-6] jTHMuqENSfyC5XDBbYDkPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.381 [XNIO-1 task-6] jTHMuqENSfyC5XDBbYDkPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.381 [XNIO-1 task-6] jTHMuqENSfyC5XDBbYDkPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.381 [XNIO-1 task-6] jTHMuqENSfyC5XDBbYDkPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.386 [XNIO-1 task-6] jTHMuqENSfyC5XDBbYDkPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.390 [XNIO-1 task-6] AQ_Hg4nbRwSJ4-0XbRPgWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.390 [XNIO-1 task-6] AQ_Hg4nbRwSJ4-0XbRPgWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.390 [XNIO-1 task-6] AQ_Hg4nbRwSJ4-0XbRPgWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.391 [XNIO-1 task-6] AQ_Hg4nbRwSJ4-0XbRPgWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.395 [XNIO-1 task-6] AQ_Hg4nbRwSJ4-0XbRPgWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.399 [XNIO-1 task-6] DeffwY_wQ2uT_ZHN6SsNQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.399 [XNIO-1 task-6] DeffwY_wQ2uT_ZHN6SsNQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.399 [XNIO-1 task-6] DeffwY_wQ2uT_ZHN6SsNQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.399 [XNIO-1 task-6] DeffwY_wQ2uT_ZHN6SsNQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.404 [XNIO-1 task-6] DeffwY_wQ2uT_ZHN6SsNQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.408 [XNIO-1 task-6] VYcaacD3TpiGsca2IzMvNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.408 [XNIO-1 task-6] VYcaacD3TpiGsca2IzMvNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.408 [XNIO-1 task-6] VYcaacD3TpiGsca2IzMvNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.408 [XNIO-1 task-6] VYcaacD3TpiGsca2IzMvNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", "Basic MTA2NWZmN2ItZWU0Ni00MzM0LTlkODAtNmRhMGUxMzQ0YzZlOmhyVzI1REZ4UkJ5LXcxR0tTUGhmMlE=", authorization) +09:12:54.413 [XNIO-1 task-6] VYcaacD3TpiGsca2IzMvNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.417 [XNIO-1 task-6] IPBeQVvKTJqU4obQutj4vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.417 [XNIO-1 task-6] IPBeQVvKTJqU4obQutj4vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.417 [XNIO-1 task-6] IPBeQVvKTJqU4obQutj4vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.418 [XNIO-1 task-6] IPBeQVvKTJqU4obQutj4vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", "Basic MGU4YTgzMjMtNDc5My00Yzk3LTkyZWQtNzcyMjkxZDg4YmNlOlNZWTJxWWtBUmpDSkZqOXEwVHhSaFE=", authorization) +09:12:54.425 [XNIO-1 task-6] IPBeQVvKTJqU4obQutj4vQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.435 [XNIO-1 task-4] a1vhGgSZSmqRpNHTXovNrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.435 [XNIO-1 task-4] a1vhGgSZSmqRpNHTXovNrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.435 [XNIO-1 task-4] a1vhGgSZSmqRpNHTXovNrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.435 [XNIO-1 task-6] v27PEoviS4yrMn33K4gxhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.435 [XNIO-1 task-6] v27PEoviS4yrMn33K4gxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.436 [XNIO-1 task-4] a1vhGgSZSmqRpNHTXovNrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9a9e594d-e42a-492f-a97d-ed74200703a7 scope = null +09:12:54.436 [XNIO-1 task-6] v27PEoviS4yrMn33K4gxhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.436 [XNIO-1 task-6] v27PEoviS4yrMn33K4gxhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", "Basic ZjNjNjY4YWYtYmI5Yy00NjdiLWJiNjMtNDMyYTNiMDZjMzZhOkFlQmZUUG4yU0NXMWZpV2Z2MGhMVUE=", authorization) +09:12:54.441 [XNIO-1 task-6] v27PEoviS4yrMn33K4gxhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.444 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bd41402f +09:12:54.445 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bd41402f +09:12:54.446 [XNIO-1 task-6] Zo4kB5vvROSeoYkv3sTnAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.446 [XNIO-1 task-6] Zo4kB5vvROSeoYkv3sTnAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.447 [XNIO-1 task-6] Zo4kB5vvROSeoYkv3sTnAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.447 [XNIO-1 task-6] Zo4kB5vvROSeoYkv3sTnAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.450 [XNIO-1 task-4] a1vhGgSZSmqRpNHTXovNrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.452 [XNIO-1 task-6] Zo4kB5vvROSeoYkv3sTnAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.461 [XNIO-1 task-4] czA8TToPSFGnLM8QkJuXDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.462 [XNIO-1 task-4] czA8TToPSFGnLM8QkJuXDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.462 [XNIO-1 task-4] czA8TToPSFGnLM8QkJuXDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.462 [XNIO-1 task-4] czA8TToPSFGnLM8QkJuXDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.465 [XNIO-1 task-6] pR-EpU2bSxSHXkKJFG6JKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.465 [XNIO-1 task-6] pR-EpU2bSxSHXkKJFG6JKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.465 [XNIO-1 task-6] pR-EpU2bSxSHXkKJFG6JKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.466 [XNIO-1 task-6] pR-EpU2bSxSHXkKJFG6JKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c72eb105-a1aa-4988-8ef8-8273babc93a6 scope = null +09:12:54.470 [XNIO-1 task-4] czA8TToPSFGnLM8QkJuXDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.475 [XNIO-1 task-6] pR-EpU2bSxSHXkKJFG6JKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.477 [XNIO-1 task-4] 08zQPUPbQt6gG1VVBNmNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.477 [XNIO-1 task-4] 08zQPUPbQt6gG1VVBNmNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.478 [XNIO-1 task-4] 08zQPUPbQt6gG1VVBNmNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.478 [XNIO-1 task-4] 08zQPUPbQt6gG1VVBNmNzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.484 [XNIO-1 task-4] 08zQPUPbQt6gG1VVBNmNzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.490 [XNIO-1 task-4] chaPjmGCQVCdyy5uijUAug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.490 [XNIO-1 task-4] chaPjmGCQVCdyy5uijUAug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.490 [XNIO-1 task-4] chaPjmGCQVCdyy5uijUAug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.490 [XNIO-1 task-4] chaPjmGCQVCdyy5uijUAug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.495 [XNIO-1 task-6] ORBRFXxUR-6mIvNApJ1MaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.495 [XNIO-1 task-6] ORBRFXxUR-6mIvNApJ1MaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.495 [XNIO-1 task-6] ORBRFXxUR-6mIvNApJ1MaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.496 [XNIO-1 task-6] ORBRFXxUR-6mIvNApJ1MaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = JV1TZR1-QcuriScgvF1WPg redirectUri = http://localhost:8080/authorization +09:12:54.497 [XNIO-1 task-4] chaPjmGCQVCdyy5uijUAug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.503 [XNIO-1 task-6] ORBRFXxUR-6mIvNApJ1MaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.505 [XNIO-1 task-4] BNTckZ1PTuaSe-lpWLdo3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.505 [XNIO-1 task-4] BNTckZ1PTuaSe-lpWLdo3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.505 [XNIO-1 task-4] BNTckZ1PTuaSe-lpWLdo3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.505 [XNIO-1 task-4] BNTckZ1PTuaSe-lpWLdo3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", "Basic ZWRmYjU3NzEtODBkNC00OGRiLThjZjgtMjJjOWNlZmE0ZTg4Oi13dFZKMWIxU0g2VElHN2tnbklEblE=", authorization) +09:12:54.510 [XNIO-1 task-4] BNTckZ1PTuaSe-lpWLdo3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.512 [XNIO-1 task-4] N5LfY1buTLWfWEHvy3HU2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.512 [XNIO-1 task-4] N5LfY1buTLWfWEHvy3HU2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.512 [XNIO-1 task-4] N5LfY1buTLWfWEHvy3HU2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.512 [XNIO-1 task-4] N5LfY1buTLWfWEHvy3HU2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:54.514 [XNIO-1 task-6] VuAjravVQxytZUQlzhVpnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.514 [XNIO-1 task-6] VuAjravVQxytZUQlzhVpnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.514 [XNIO-1 task-6] VuAjravVQxytZUQlzhVpnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.514 [XNIO-1 task-6] VuAjravVQxytZUQlzhVpnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5ZmU5MjUtNjE3YS00ZDBhLTg0NzgtNjMxYzI0YzA3MjdmOk45Zm9sckdJU051VHlUQWl0S1pQbEE=", "Basic ZWI5ZmU5MjUtNjE3YS00ZDBhLTg0NzgtNjMxYzI0YzA3MjdmOk45Zm9sckdJU051VHlUQWl0S1pQbEE=", authorization) +09:12:54.519 [XNIO-1 task-5] rVt6CyiwRC-Pk-wmnJw8wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.519 [XNIO-1 task-5] rVt6CyiwRC-Pk-wmnJw8wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.519 [XNIO-1 task-5] rVt6CyiwRC-Pk-wmnJw8wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.519 [XNIO-1 task-5] rVt6CyiwRC-Pk-wmnJw8wA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", "Basic ZTEwZGE2YzMtNWFkYi00ZTNiLWIyMWQtMzkyNDk5YjJkZjM0OjZQTFVsaTVsU0RDWXZZal9KMHJXX0E=", authorization) +09:12:54.523 [XNIO-1 task-6] VuAjravVQxytZUQlzhVpnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:54.524 [XNIO-1 task-5] rVt6CyiwRC-Pk-wmnJw8wA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.526 [XNIO-1 task-6] VuAjravVQxytZUQlzhVpnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.526 [XNIO-1 task-5] rVt6CyiwRC-Pk-wmnJw8wA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.535 [XNIO-1 task-4] mvJilrwYTNqUfa3doC5W0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.535 [XNIO-1 task-4] mvJilrwYTNqUfa3doC5W0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.535 [XNIO-1 task-4] mvJilrwYTNqUfa3doC5W0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.535 [XNIO-1 task-4] mvJilrwYTNqUfa3doC5W0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.540 [XNIO-1 task-4] mvJilrwYTNqUfa3doC5W0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.547 [XNIO-1 task-4] EWU78ZotRFaq83_BfXKpFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.547 [XNIO-1 task-4] EWU78ZotRFaq83_BfXKpFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.547 [XNIO-1 task-4] EWU78ZotRFaq83_BfXKpFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.547 [XNIO-1 task-4] EWU78ZotRFaq83_BfXKpFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.551 [XNIO-1 task-6] sJZQVYiaR3etzs0hgSusYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.552 [XNIO-1 task-6] sJZQVYiaR3etzs0hgSusYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.553 [XNIO-1 task-6] sJZQVYiaR3etzs0hgSusYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.553 [XNIO-1 task-4] EWU78ZotRFaq83_BfXKpFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.553 [XNIO-1 task-6] sJZQVYiaR3etzs0hgSusYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Hrun2A0MSIelnTBSbxVYEQ redirectUri = http://localhost:8080/authorization +09:12:54.557 [XNIO-1 task-4] UKCRf1yzTyCOtK9_X8FsFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.557 [XNIO-1 task-4] UKCRf1yzTyCOtK9_X8FsFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.557 [XNIO-1 task-4] UKCRf1yzTyCOtK9_X8FsFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.557 [XNIO-1 task-4] UKCRf1yzTyCOtK9_X8FsFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.559 [XNIO-1 task-6] sJZQVYiaR3etzs0hgSusYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.562 [XNIO-1 task-4] UKCRf1yzTyCOtK9_X8FsFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.562 [XNIO-1 task-5] xbIahUQeSfKmR9166moUig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.562 [XNIO-1 task-5] xbIahUQeSfKmR9166moUig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.562 [XNIO-1 task-5] xbIahUQeSfKmR9166moUig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.563 [XNIO-1 task-5] xbIahUQeSfKmR9166moUig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5ZmU5MjUtNjE3YS00ZDBhLTg0NzgtNjMxYzI0YzA3MjdmOk45Zm9sckdJU051VHlUQWl0S1pQbEE=", "Basic ZWI5ZmU5MjUtNjE3YS00ZDBhLTg0NzgtNjMxYzI0YzA3MjdmOk45Zm9sckdJU051VHlUQWl0S1pQbEE=", authorization) +09:12:54.568 [XNIO-1 task-6] bNMRkIU1TM2y05z1OZsEGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.569 [XNIO-1 task-6] bNMRkIU1TM2y05z1OZsEGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.569 [XNIO-1 task-6] bNMRkIU1TM2y05z1OZsEGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.569 [XNIO-1 task-6] bNMRkIU1TM2y05z1OZsEGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:54.571 [XNIO-1 task-4] K2aawkZsR2aW2FLxvzSGKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.571 [XNIO-1 task-4] K2aawkZsR2aW2FLxvzSGKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.571 [XNIO-1 task-4] K2aawkZsR2aW2FLxvzSGKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.571 [XNIO-1 task-4] K2aawkZsR2aW2FLxvzSGKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:54.572 [XNIO-1 task-5] xbIahUQeSfKmR9166moUig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:54.572 [XNIO-1 task-5] xbIahUQeSfKmR9166moUig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.614 [XNIO-1 task-6] bNMRkIU1TM2y05z1OZsEGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.621 [XNIO-1 task-5] hah4lsiFRIeECyptVV_IXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.622 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1b9a4d56 +09:12:54.621 [XNIO-1 task-5] hah4lsiFRIeECyptVV_IXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.622 [XNIO-1 task-5] hah4lsiFRIeECyptVV_IXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.622 [XNIO-1 task-5] hah4lsiFRIeECyptVV_IXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:54.622 [XNIO-1 task-4] K2aawkZsR2aW2FLxvzSGKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.627 [XNIO-1 task-5] hah4lsiFRIeECyptVV_IXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.632 [XNIO-1 task-5] S_jtxbeqTraHTQpxXQoAzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.632 [XNIO-1 task-5] S_jtxbeqTraHTQpxXQoAzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.632 [XNIO-1 task-5] S_jtxbeqTraHTQpxXQoAzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.632 [XNIO-1 task-5] S_jtxbeqTraHTQpxXQoAzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:54.633 [XNIO-1 task-4] 9WpEkXw7TXe54nImDRALkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.633 [XNIO-1 task-4] 9WpEkXw7TXe54nImDRALkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.633 [XNIO-1 task-4] 9WpEkXw7TXe54nImDRALkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.633 [XNIO-1 task-4] 9WpEkXw7TXe54nImDRALkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", "Basic ZDU5NTNhYWMtN2UyNS00MmQ4LThiYjItYjMzMWFhNzI1NDUzOjhpb2FISmItVG9XQmJHX0kzekpMR1E=", authorization) +09:12:54.638 [XNIO-1 task-4] 9WpEkXw7TXe54nImDRALkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.642 [XNIO-1 task-5] S_jtxbeqTraHTQpxXQoAzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.644 [XNIO-1 task-4] POhQI-DqR_C45roBZouNpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.645 [XNIO-1 task-4] POhQI-DqR_C45roBZouNpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.645 [XNIO-1 task-4] POhQI-DqR_C45roBZouNpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.645 [XNIO-1 task-4] POhQI-DqR_C45roBZouNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.651 [XNIO-1 task-4] POhQI-DqR_C45roBZouNpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.652 [XNIO-1 task-5] lcEu3AspTx2mg1jrGpuR1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.652 [XNIO-1 task-5] lcEu3AspTx2mg1jrGpuR1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.652 [XNIO-1 task-5] lcEu3AspTx2mg1jrGpuR1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.652 [XNIO-1 task-5] lcEu3AspTx2mg1jrGpuR1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", "Basic MmNmMWMxMWYtMjY2ZS00NzMyLTkxY2MtOWY0MGJjNDVlOTI2OkpIMldObEFVU05XNkE4TTkxbFh1dUE=", authorization) +09:12:54.655 [XNIO-1 task-4] VIbkf_thT8q7JWJLUp_teQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.655 [XNIO-1 task-4] VIbkf_thT8q7JWJLUp_teQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.655 [XNIO-1 task-4] VIbkf_thT8q7JWJLUp_teQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.656 [XNIO-1 task-4] VIbkf_thT8q7JWJLUp_teQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", "Basic MzM2MDlhYTEtM2RjOS00YjUzLTk1OWQtY2FiOGI4OTkwZDIwOllFUVlBcDQ4U1MtZkFQdVRPd0xHRUE=", authorization) +09:12:54.656 [XNIO-1 task-6] XZgOV_IIT62jh-_LdCTV4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.656 [XNIO-1 task-6] XZgOV_IIT62jh-_LdCTV4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.656 [XNIO-1 task-6] XZgOV_IIT62jh-_LdCTV4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.656 [XNIO-1 task-6] XZgOV_IIT62jh-_LdCTV4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.661 [XNIO-1 task-6] XZgOV_IIT62jh-_LdCTV4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.662 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f21a0d1 +09:12:54.663 [XNIO-1 task-4] VIbkf_thT8q7JWJLUp_teQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:54.663 [XNIO-1 task-4] VIbkf_thT8q7JWJLUp_teQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.663 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f21a0d1 +09:12:54.664 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:017407da-b31c-46af-aa8a-06c29c64a46a +09:12:54.667 [XNIO-1 task-6] svQyO_OZQDiiQukHcrmPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.667 [XNIO-1 task-6] svQyO_OZQDiiQukHcrmPUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.667 [XNIO-1 task-6] svQyO_OZQDiiQukHcrmPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.668 [XNIO-1 task-6] svQyO_OZQDiiQukHcrmPUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.673 [XNIO-1 task-6] svQyO_OZQDiiQukHcrmPUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.677 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1b9a4d56 +09:12:54.677 [XNIO-1 task-6] cy6nKcZmQWGiVtge-Z4Iuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.677 [XNIO-1 task-6] cy6nKcZmQWGiVtge-Z4Iuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.677 [XNIO-1 task-6] cy6nKcZmQWGiVtge-Z4Iuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.678 [XNIO-1 task-6] cy6nKcZmQWGiVtge-Z4Iuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.682 [XNIO-1 task-6] cy6nKcZmQWGiVtge-Z4Iuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.693 [XNIO-1 task-6] YUvd4Q4fRMG8cAXYFR7xmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.693 [XNIO-1 task-6] YUvd4Q4fRMG8cAXYFR7xmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.694 [XNIO-1 task-6] YUvd4Q4fRMG8cAXYFR7xmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.694 [XNIO-1 task-6] YUvd4Q4fRMG8cAXYFR7xmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.699 [XNIO-1 task-6] YUvd4Q4fRMG8cAXYFR7xmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.703 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:db46ef01 +09:12:54.706 [XNIO-1 task-6] DPWNFW23R1eXvjFZC9Fomg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.706 [XNIO-1 task-6] DPWNFW23R1eXvjFZC9Fomg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.706 [XNIO-1 task-6] DPWNFW23R1eXvjFZC9Fomg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.706 [XNIO-1 task-6] DPWNFW23R1eXvjFZC9Fomg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", "Basic YmFhNWQxNjEtMGE0ZC00NWI5LWEyYmQtZDA3MTI3YjU4NWEwOnRlaTQ4eEV4U2dLSThYeXk3TTdTRnc=", authorization) +09:12:54.709 [XNIO-1 task-5] KmOWiK8qRL6vSlJJgb4rIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.709 [XNIO-1 task-5] KmOWiK8qRL6vSlJJgb4rIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.709 [XNIO-1 task-5] KmOWiK8qRL6vSlJJgb4rIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.709 [XNIO-1 task-5] KmOWiK8qRL6vSlJJgb4rIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.711 [XNIO-1 task-6] DPWNFW23R1eXvjFZC9Fomg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.716 [XNIO-1 task-5] KmOWiK8qRL6vSlJJgb4rIQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:54.716 [XNIO-1 task-5] KmOWiK8qRL6vSlJJgb4rIQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.717 [XNIO-1 task-6] Kn-je9zdQMirh-LAwXtL_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.717 [XNIO-1 task-6] Kn-je9zdQMirh-LAwXtL_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.717 [XNIO-1 task-6] Kn-je9zdQMirh-LAwXtL_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.718 [XNIO-1 task-6] Kn-je9zdQMirh-LAwXtL_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.724 [XNIO-1 task-6] Kn-je9zdQMirh-LAwXtL_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.728 [XNIO-1 task-6] yCOzP-wCQ3u63dRpkoumsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.728 [XNIO-1 task-6] yCOzP-wCQ3u63dRpkoumsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.728 [XNIO-1 task-6] yCOzP-wCQ3u63dRpkoumsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.728 [XNIO-1 task-6] yCOzP-wCQ3u63dRpkoumsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.733 [XNIO-1 task-6] yCOzP-wCQ3u63dRpkoumsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.737 [XNIO-1 task-6] z3Vb4WW8SM-LO9RVk_fzGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.737 [XNIO-1 task-6] z3Vb4WW8SM-LO9RVk_fzGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.737 [XNIO-1 task-6] z3Vb4WW8SM-LO9RVk_fzGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.738 [XNIO-1 task-6] z3Vb4WW8SM-LO9RVk_fzGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODA2YTY2NmYtMDRlNS00ZjdkLTljMTgtZGM5ZWYwMjI5NDZkOktRdklDMVUzUzJhdHBWZWEyemFBOWc=", "Basic ODA2YTY2NmYtMDRlNS00ZjdkLTljMTgtZGM5ZWYwMjI5NDZkOktRdklDMVUzUzJhdHBWZWEyemFBOWc=", authorization) +09:12:54.743 [XNIO-1 task-6] z3Vb4WW8SM-LO9RVk_fzGQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.745 [XNIO-1 task-5] pYwQqJmJSXyZCl1zFnA8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.745 [XNIO-1 task-5] pYwQqJmJSXyZCl1zFnA8kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.746 [XNIO-1 task-5] pYwQqJmJSXyZCl1zFnA8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.746 [XNIO-1 task-5] pYwQqJmJSXyZCl1zFnA8kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", "Basic ODY4NWM0OGYtNWQ0Ny00M2UxLWExMWMtMmYyY2M0NzdkNWM5Olp5UlExdnBzUk1hVkxUUGY5dU5Jemc=", authorization) +09:12:54.749 [XNIO-1 task-6] eaGYDjc8Skew_WycCc-J0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.749 [XNIO-1 task-6] eaGYDjc8Skew_WycCc-J0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.749 [XNIO-1 task-6] eaGYDjc8Skew_WycCc-J0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.750 [XNIO-1 task-6] eaGYDjc8Skew_WycCc-J0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:54.754 [XNIO-1 task-6] eaGYDjc8Skew_WycCc-J0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.757 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8807c560-ce9f-4f52-a3d7-a61cde8816c9 +09:12:54.758 [XNIO-1 task-5] pYwQqJmJSXyZCl1zFnA8kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.758 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8807c560-ce9f-4f52-a3d7-a61cde8816c9 +09:12:54.758 [XNIO-1 task-6] _9hDKckhQbyXFtomyCK09Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.759 [XNIO-1 task-6] _9hDKckhQbyXFtomyCK09Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.759 [XNIO-1 task-6] _9hDKckhQbyXFtomyCK09Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.759 [XNIO-1 task-6] _9hDKckhQbyXFtomyCK09Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", "Basic NGFlYzVmMWItYTQ2Mi00NmNjLWJiZDktNGIzODAyZmZkMDYxOjFHaTFfdU5OUTRpYUx1bmdyR29nVGc=", authorization) +09:12:54.764 [XNIO-1 task-6] _9hDKckhQbyXFtomyCK09Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.770 [XNIO-1 task-6] amtjeiROSlGS0FCs4H8PIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.770 [XNIO-1 task-6] amtjeiROSlGS0FCs4H8PIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.770 [XNIO-1 task-6] amtjeiROSlGS0FCs4H8PIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.770 [XNIO-1 task-6] amtjeiROSlGS0FCs4H8PIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNlMDE1MmMtNGZlZC00NDhjLTk1NGEtNWE0YzQ1OTI5OTU4OlduQlQtOVM5UlpxZkIxYWN6M1NSelE=", "Basic MmNlMDE1MmMtNGZlZC00NDhjLTk1NGEtNWE0YzQ1OTI5OTU4OlduQlQtOVM5UlpxZkIxYWN6M1NSelE=", authorization) +09:12:54.772 [XNIO-1 task-5] M4UeuO0mTgKMKsoizyMGVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.773 [XNIO-1 task-5] M4UeuO0mTgKMKsoizyMGVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.773 [XNIO-1 task-5] M4UeuO0mTgKMKsoizyMGVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.774 [XNIO-1 task-5] M4UeuO0mTgKMKsoizyMGVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", "Basic YWM5NWQzMDUtYzllNC00ZWQ5LWI0YmItMDhjNTI3MGQ3OThjOlI1R2Rvb1cyUkNtVjRwRHM5Zzgtbmc=", authorization) +09:12:54.775 [XNIO-1 task-6] amtjeiROSlGS0FCs4H8PIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.780 [XNIO-1 task-6] p1rURnWpS9O7PZohlB50vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.780 [XNIO-1 task-6] p1rURnWpS9O7PZohlB50vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.780 [XNIO-1 task-6] p1rURnWpS9O7PZohlB50vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.780 [XNIO-1 task-6] p1rURnWpS9O7PZohlB50vA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", "Basic OTNiODRkZDItZjM3OC00OWVhLWFhNzgtODk5ZjM0YTgyZDRiOkJ6b28wTUQ0UXlPN3JqUHhDSHQxSEE=", authorization) +09:12:54.781 [XNIO-1 task-5] M4UeuO0mTgKMKsoizyMGVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +09:12:54.781 [XNIO-1 task-5] M4UeuO0mTgKMKsoizyMGVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.787 [XNIO-1 task-6] p1rURnWpS9O7PZohlB50vA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.794 [XNIO-1 task-6] d-qguWCjTKu7eL8gKxt98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.794 [XNIO-1 task-6] d-qguWCjTKu7eL8gKxt98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.794 [XNIO-1 task-6] d-qguWCjTKu7eL8gKxt98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.794 [XNIO-1 task-6] d-qguWCjTKu7eL8gKxt98Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 962f7118-9197-4422-9873-c31597e28a86 scope = null +09:12:54.794 [XNIO-1 task-5] _HUQrTApTdi7aNLCyT5v0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.794 [XNIO-1 task-5] _HUQrTApTdi7aNLCyT5v0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.794 [XNIO-1 task-5] _HUQrTApTdi7aNLCyT5v0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.794 [XNIO-1 task-5] _HUQrTApTdi7aNLCyT5v0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.799 [XNIO-1 task-5] _HUQrTApTdi7aNLCyT5v0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +09:12:54.803 [XNIO-1 task-5] DCdwt1McRyu4AJl4_hzLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.803 [XNIO-1 task-5] DCdwt1McRyu4AJl4_hzLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.803 [XNIO-1 task-5] DCdwt1McRyu4AJl4_hzLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +09:12:54.803 [XNIO-1 task-6] d-qguWCjTKu7eL8gKxt98Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.803 [XNIO-1 task-5] DCdwt1McRyu4AJl4_hzLJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +09:12:54.811 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1e440b7b +09:12:54.811 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1e440b7b +09:12:54.821 [XNIO-1 task-5] CEITQngtTjin5MwwLDw05g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.821 [XNIO-1 task-5] CEITQngtTjin5MwwLDw05g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.821 [XNIO-1 task-5] CEITQngtTjin5MwwLDw05g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.821 [XNIO-1 task-5] CEITQngtTjin5MwwLDw05g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", "Basic YzExY2QzZDctZjNiZS00Mjk4LThkZjMtOTkzNWY1MzlkMTYwOmhDMEk0MEVNUlJpekxCeFZrLVZfbWc=", authorization) +09:12:54.827 [XNIO-1 task-5] CEITQngtTjin5MwwLDw05g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.842 [XNIO-1 task-5] Hy914-3ORdqLVy41wenYkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.842 [XNIO-1 task-5] Hy914-3ORdqLVy41wenYkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.842 [XNIO-1 task-5] Hy914-3ORdqLVy41wenYkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.843 [XNIO-1 task-5] Hy914-3ORdqLVy41wenYkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDNjNWRiYjktOWE5YS00NjFhLWFmODUtZjIxMDNmMDRlZjY5OjFlQVVNMmwyUlV5OVVHdTRVMV9kV1E=", "Basic ZDNjNWRiYjktOWE5YS00NjFhLWFmODUtZjIxMDNmMDRlZjY5OjFlQVVNMmwyUlV5OVVHdTRVMV9kV1E=", authorization) +09:12:54.848 [XNIO-1 task-5] Hy914-3ORdqLVy41wenYkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +09:12:54.852 [XNIO-1 task-5] w7UOkEMRTpenKYaP-nrpkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.852 [XNIO-1 task-5] w7UOkEMRTpenKYaP-nrpkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +09:12:54.852 [XNIO-1 task-5] w7UOkEMRTpenKYaP-nrpkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +09:12:54.852 [XNIO-1 task-5] w7UOkEMRTpenKYaP-nrpkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDNjNWRiYjktOWE5YS00NjFhLWFmODUtZjIxMDNmMDRlZjY5OjFlQVVNMmwyUlV5OVVHdTRVMV9kV1E=", "Basic ZDNjNWRiYjktOWE5YS00NjFhLWFmODUtZjIxMDNmMDRlZjY5OjFlQVVNMmwyUlV5OVVHdTRVMV9kV1E=", authorization) +09:12:54.857 [XNIO-1 task-6] SBcOLirYQNKoYDRaUbHtSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..f85322e --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_7/light-oauth2-oauth2-user-1.log @@ -0,0 +1,2143 @@ +09:12:48.433 [XNIO-1 task-1] AuXd71GUQz6PaG1_I1pJZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:48.433 [XNIO-1 task-1] AuXd71GUQz6PaG1_I1pJZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d95a0846, base path is set to: null +09:12:48.434 [XNIO-1 task-1] AuXd71GUQz6PaG1_I1pJZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d95a0846", "d95a0846", userId) +09:12:48.434 [XNIO-1 task-1] AuXd71GUQz6PaG1_I1pJZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"54eff697-3f6a-493b-815f-17436aa7b843","newPassword":"90e38d45-9069-46b7-8d51-7408358a8303","newPasswordConfirm":"90e38d45-9069-46b7-8d51-7408358a8303"}, {"password":"54eff697-3f6a-493b-815f-17436aa7b843","newPassword":"90e38d45-9069-46b7-8d51-7408358a8303","newPasswordConfirm":"90e38d45-9069-46b7-8d51-7408358a8303"}, requestBody) +09:12:48.434 [XNIO-1 task-1] AuXd71GUQz6PaG1_I1pJZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "90e38d45-9069-46b7-8d51-7408358a8303", {"password":"54eff697-3f6a-493b-815f-17436aa7b843","newPassword":"90e38d45-9069-46b7-8d51-7408358a8303","newPasswordConfirm":"90e38d45-9069-46b7-8d51-7408358a8303"}, requestBody.newPasswordConfirm) +09:12:48.434 [XNIO-1 task-1] AuXd71GUQz6PaG1_I1pJZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "54eff697-3f6a-493b-815f-17436aa7b843", {"password":"54eff697-3f6a-493b-815f-17436aa7b843","newPassword":"90e38d45-9069-46b7-8d51-7408358a8303","newPasswordConfirm":"90e38d45-9069-46b7-8d51-7408358a8303"}, requestBody.password) +09:12:48.434 [XNIO-1 task-1] AuXd71GUQz6PaG1_I1pJZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "90e38d45-9069-46b7-8d51-7408358a8303", {"password":"54eff697-3f6a-493b-815f-17436aa7b843","newPassword":"90e38d45-9069-46b7-8d51-7408358a8303","newPasswordConfirm":"90e38d45-9069-46b7-8d51-7408358a8303"}, requestBody.newPassword) +09:12:48.441 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:775dc62d-b5fd-4e7d-b516-9dc7ece8ddd1 +09:12:48.444 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d95a0846 +09:12:48.449 [XNIO-1 task-1] biR3Z8bLS6-Z86G4PVAKnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.449 [XNIO-1 task-1] biR3Z8bLS6-Z86G4PVAKnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.449 [XNIO-1 task-1] biR3Z8bLS6-Z86G4PVAKnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.461 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d95a0846 +09:12:48.461 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.461 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.461 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.461 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d95a0846 +09:12:48.462 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"90e38d45-9069-46b7-8d51-7408358a8303","newPassword":"6978b113-6606-4e19-8db2-8f7da491dc28","newPasswordConfirm":"6978b113-6606-4e19-8db2-8f7da491dc28"}, {"password":"90e38d45-9069-46b7-8d51-7408358a8303","newPassword":"6978b113-6606-4e19-8db2-8f7da491dc28","newPasswordConfirm":"6978b113-6606-4e19-8db2-8f7da491dc28"}, requestBody) +09:12:48.462 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"90e38d45-9069-46b7-8d51-7408358a8303","newPassword":"6978b113-6606-4e19-8db2-8f7da491dc28","newPasswordConfirm":"6978b113-6606-4e19-8db2-8f7da491dc28"}, {"password":"90e38d45-9069-46b7-8d51-7408358a8303","newPassword":"6978b113-6606-4e19-8db2-8f7da491dc28","newPasswordConfirm":"6978b113-6606-4e19-8db2-8f7da491dc28"}, requestBody) +09:12:48.462 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG com.networknt.schema.FormatValidator debug - validate( "6978b113-6606-4e19-8db2-8f7da491dc28", {"password":"90e38d45-9069-46b7-8d51-7408358a8303","newPassword":"6978b113-6606-4e19-8db2-8f7da491dc28","newPasswordConfirm":"6978b113-6606-4e19-8db2-8f7da491dc28"}, requestBody.newPasswordConfirm) +09:12:48.462 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG com.networknt.schema.FormatValidator debug - validate( "90e38d45-9069-46b7-8d51-7408358a8303", {"password":"90e38d45-9069-46b7-8d51-7408358a8303","newPassword":"6978b113-6606-4e19-8db2-8f7da491dc28","newPasswordConfirm":"6978b113-6606-4e19-8db2-8f7da491dc28"}, requestBody.password) +09:12:48.462 [XNIO-1 task-1] Ga0ss_iLSrixYZHEPxwExw DEBUG com.networknt.schema.FormatValidator debug - validate( "6978b113-6606-4e19-8db2-8f7da491dc28", {"password":"90e38d45-9069-46b7-8d51-7408358a8303","newPassword":"6978b113-6606-4e19-8db2-8f7da491dc28","newPasswordConfirm":"6978b113-6606-4e19-8db2-8f7da491dc28"}, requestBody.newPassword) +09:12:48.471 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d95a0846 +09:12:48.476 [XNIO-1 task-1] UOzxlHdfTAWpkaW9G8jT_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.476 [XNIO-1 task-1] UOzxlHdfTAWpkaW9G8jT_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.476 [XNIO-1 task-1] UOzxlHdfTAWpkaW9G8jT_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.483 [XNIO-1 task-1] MeCOcwtfR-OOQGzA0cgANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d95a0846 +09:12:48.484 [XNIO-1 task-1] MeCOcwtfR-OOQGzA0cgANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.484 [XNIO-1 task-1] MeCOcwtfR-OOQGzA0cgANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.484 [XNIO-1 task-1] MeCOcwtfR-OOQGzA0cgANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d95a0846 +09:12:48.486 [XNIO-1 task-1] Axp_dopfTkmf_pE0swilAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.486 [XNIO-1 task-1] Axp_dopfTkmf_pE0swilAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.486 [XNIO-1 task-1] Axp_dopfTkmf_pE0swilAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.493 [XNIO-1 task-1] blkEqqE6S3KTe3hkAxbl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.493 [XNIO-1 task-1] blkEqqE6S3KTe3hkAxbl0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.493 [XNIO-1 task-1] blkEqqE6S3KTe3hkAxbl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.499 [XNIO-1 task-1] hZRDCAqnTlCRNk-h5o_kMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.499 [XNIO-1 task-1] hZRDCAqnTlCRNk-h5o_kMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.499 [XNIO-1 task-1] hZRDCAqnTlCRNk-h5o_kMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.507 [XNIO-1 task-1] K8yQcOJPRHqMTQVs9OAQVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.508 [XNIO-1 task-1] K8yQcOJPRHqMTQVs9OAQVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.508 [XNIO-1 task-1] K8yQcOJPRHqMTQVs9OAQVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.508 [XNIO-1 task-1] K8yQcOJPRHqMTQVs9OAQVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:48.512 [XNIO-1 task-1] ZG1PufI3TiSXahIC-MTGwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d95a0846, base path is set to: null +09:12:48.512 [XNIO-1 task-1] ZG1PufI3TiSXahIC-MTGwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.512 [XNIO-1 task-1] ZG1PufI3TiSXahIC-MTGwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.512 [XNIO-1 task-1] ZG1PufI3TiSXahIC-MTGwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d95a0846, base path is set to: null +09:12:48.512 [XNIO-1 task-1] ZG1PufI3TiSXahIC-MTGwA DEBUG com.networknt.schema.TypeValidator debug - validate( "d95a0846", "d95a0846", userId) +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/15c880fb +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/15c880fb +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0aa7ca86-ab1b-435e-b4c6-8fb8076bb349","newPassword":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPasswordConfirm":"881723ff-4bdf-4cc4-b2a8-dab653734712"}, {"password":"0aa7ca86-ab1b-435e-b4c6-8fb8076bb349","newPassword":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPasswordConfirm":"881723ff-4bdf-4cc4-b2a8-dab653734712"}, requestBody) +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0aa7ca86-ab1b-435e-b4c6-8fb8076bb349","newPassword":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPasswordConfirm":"881723ff-4bdf-4cc4-b2a8-dab653734712"}, {"password":"0aa7ca86-ab1b-435e-b4c6-8fb8076bb349","newPassword":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPasswordConfirm":"881723ff-4bdf-4cc4-b2a8-dab653734712"}, requestBody) +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG com.networknt.schema.FormatValidator debug - validate( "881723ff-4bdf-4cc4-b2a8-dab653734712", {"password":"0aa7ca86-ab1b-435e-b4c6-8fb8076bb349","newPassword":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPasswordConfirm":"881723ff-4bdf-4cc4-b2a8-dab653734712"}, requestBody.newPasswordConfirm) +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG com.networknt.schema.FormatValidator debug - validate( "0aa7ca86-ab1b-435e-b4c6-8fb8076bb349", {"password":"0aa7ca86-ab1b-435e-b4c6-8fb8076bb349","newPassword":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPasswordConfirm":"881723ff-4bdf-4cc4-b2a8-dab653734712"}, requestBody.password) +09:12:48.515 [XNIO-1 task-1] bQvTyhg3TMiw3qA4b033qA DEBUG com.networknt.schema.FormatValidator debug - validate( "881723ff-4bdf-4cc4-b2a8-dab653734712", {"password":"0aa7ca86-ab1b-435e-b4c6-8fb8076bb349","newPassword":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPasswordConfirm":"881723ff-4bdf-4cc4-b2a8-dab653734712"}, requestBody.newPassword) +09:12:48.531 [XNIO-1 task-1] 8KHURJCrTcKG5Z_cQtqsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.531 [XNIO-1 task-1] 8KHURJCrTcKG5Z_cQtqsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.532 [XNIO-1 task-1] 8KHURJCrTcKG5Z_cQtqsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.537 [XNIO-1 task-1] 15RuxmMgTNuCgjiKUvWDAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d95a0846 +09:12:48.537 [XNIO-1 task-1] 15RuxmMgTNuCgjiKUvWDAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.537 [XNIO-1 task-1] 15RuxmMgTNuCgjiKUvWDAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.537 [XNIO-1 task-1] 15RuxmMgTNuCgjiKUvWDAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d95a0846 +09:12:48.539 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/15c880fb, base path is set to: null +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/15c880fb, base path is set to: null +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG com.networknt.schema.TypeValidator debug - validate( "15c880fb", "15c880fb", userId) +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPassword":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPasswordConfirm":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc"}, {"password":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPassword":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPasswordConfirm":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc"}, requestBody) +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG com.networknt.schema.TypeValidator debug - validate( "c59b46aa-3f4f-4768-95fa-08fa53d7bbbc", {"password":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPassword":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPasswordConfirm":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc"}, requestBody.newPasswordConfirm) +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG com.networknt.schema.TypeValidator debug - validate( "881723ff-4bdf-4cc4-b2a8-dab653734712", {"password":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPassword":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPasswordConfirm":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc"}, requestBody.password) +09:12:48.540 [XNIO-1 task-1] RUEKn-ONTFmtHW4AB6diHw DEBUG com.networknt.schema.TypeValidator debug - validate( "c59b46aa-3f4f-4768-95fa-08fa53d7bbbc", {"password":"881723ff-4bdf-4cc4-b2a8-dab653734712","newPassword":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPasswordConfirm":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc"}, requestBody.newPassword) +09:12:48.560 [XNIO-1 task-1] 1rFu5LIRQ0yifZHIRUxDrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f060f50c, base path is set to: null +09:12:48.560 [XNIO-1 task-1] 1rFu5LIRQ0yifZHIRUxDrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.560 [XNIO-1 task-1] 1rFu5LIRQ0yifZHIRUxDrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.560 [XNIO-1 task-1] 1rFu5LIRQ0yifZHIRUxDrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f060f50c, base path is set to: null +09:12:48.560 [XNIO-1 task-1] 1rFu5LIRQ0yifZHIRUxDrA DEBUG com.networknt.schema.TypeValidator debug - validate( "f060f50c", "f060f50c", userId) +09:12:48.570 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/15c880fb +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/15c880fb +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPassword":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPasswordConfirm":"0b307aa7-f9a1-45b4-9447-9641b904638f"}, {"password":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPassword":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPasswordConfirm":"0b307aa7-f9a1-45b4-9447-9641b904638f"}, requestBody) +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPassword":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPasswordConfirm":"0b307aa7-f9a1-45b4-9447-9641b904638f"}, {"password":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPassword":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPasswordConfirm":"0b307aa7-f9a1-45b4-9447-9641b904638f"}, requestBody) +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "0b307aa7-f9a1-45b4-9447-9641b904638f", {"password":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPassword":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPasswordConfirm":"0b307aa7-f9a1-45b4-9447-9641b904638f"}, requestBody.newPasswordConfirm) +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c59b46aa-3f4f-4768-95fa-08fa53d7bbbc", {"password":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPassword":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPasswordConfirm":"0b307aa7-f9a1-45b4-9447-9641b904638f"}, requestBody.password) +09:12:48.571 [XNIO-1 task-1] bEuhp61yTr-Kxkhq2GloKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "0b307aa7-f9a1-45b4-9447-9641b904638f", {"password":"c59b46aa-3f4f-4768-95fa-08fa53d7bbbc","newPassword":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPasswordConfirm":"0b307aa7-f9a1-45b4-9447-9641b904638f"}, requestBody.newPassword) +09:12:48.588 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/15c880fb +09:12:48.588 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.588 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.588 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.588 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/15c880fb +09:12:48.589 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPassword":"2f108548-93d6-4a96-a705-159e4ed1d41b","newPasswordConfirm":"2f108548-93d6-4a96-a705-159e4ed1d41b"}, {"password":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPassword":"2f108548-93d6-4a96-a705-159e4ed1d41b","newPasswordConfirm":"2f108548-93d6-4a96-a705-159e4ed1d41b"}, requestBody) +09:12:48.589 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPassword":"2f108548-93d6-4a96-a705-159e4ed1d41b","newPasswordConfirm":"2f108548-93d6-4a96-a705-159e4ed1d41b"}, {"password":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPassword":"2f108548-93d6-4a96-a705-159e4ed1d41b","newPasswordConfirm":"2f108548-93d6-4a96-a705-159e4ed1d41b"}, requestBody) +09:12:48.589 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG com.networknt.schema.FormatValidator debug - validate( "2f108548-93d6-4a96-a705-159e4ed1d41b", {"password":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPassword":"2f108548-93d6-4a96-a705-159e4ed1d41b","newPasswordConfirm":"2f108548-93d6-4a96-a705-159e4ed1d41b"}, requestBody.newPasswordConfirm) +09:12:48.589 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG com.networknt.schema.FormatValidator debug - validate( "0b307aa7-f9a1-45b4-9447-9641b904638f", {"password":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPassword":"2f108548-93d6-4a96-a705-159e4ed1d41b","newPasswordConfirm":"2f108548-93d6-4a96-a705-159e4ed1d41b"}, requestBody.password) +09:12:48.589 [XNIO-1 task-1] xm3bR6ZHQ96gzJXKNie2Sg DEBUG com.networknt.schema.FormatValidator debug - validate( "2f108548-93d6-4a96-a705-159e4ed1d41b", {"password":"0b307aa7-f9a1-45b4-9447-9641b904638f","newPassword":"2f108548-93d6-4a96-a705-159e4ed1d41b","newPasswordConfirm":"2f108548-93d6-4a96-a705-159e4ed1d41b"}, requestBody.newPassword) +09:12:48.605 [XNIO-1 task-1] do_ayJP-QBmBAoCwv-49QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/15c880fb +09:12:48.606 [XNIO-1 task-1] do_ayJP-QBmBAoCwv-49QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.606 [XNIO-1 task-1] do_ayJP-QBmBAoCwv-49QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.606 [XNIO-1 task-1] do_ayJP-QBmBAoCwv-49QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/15c880fb +09:12:48.612 [XNIO-1 task-1] dFqnwkq4SM6e9zHK2Cmv5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d95a0846, base path is set to: null +09:12:48.612 [XNIO-1 task-1] dFqnwkq4SM6e9zHK2Cmv5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.612 [XNIO-1 task-1] dFqnwkq4SM6e9zHK2Cmv5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.612 [XNIO-1 task-1] dFqnwkq4SM6e9zHK2Cmv5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d95a0846, base path is set to: null +09:12:48.613 [XNIO-1 task-1] dFqnwkq4SM6e9zHK2Cmv5A DEBUG com.networknt.schema.TypeValidator debug - validate( "d95a0846", "d95a0846", userId) +09:12:48.615 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb7e7d73 +09:12:48.616 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb7e7d73 +09:12:48.617 [XNIO-1 task-1] L-wpaafEQM6d_ttoI5Nijw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.618 [XNIO-1 task-1] L-wpaafEQM6d_ttoI5Nijw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.618 [XNIO-1 task-1] L-wpaafEQM6d_ttoI5Nijw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.628 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:86e50012-db3c-44ae-9491-93548fb6291d +09:12:48.631 [XNIO-1 task-1] GAiYE3eWRfGvtBh3Bq9LNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.631 [XNIO-1 task-1] GAiYE3eWRfGvtBh3Bq9LNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.631 [XNIO-1 task-1] GAiYE3eWRfGvtBh3Bq9LNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.636 [XNIO-1 task-1] E9uSVzUBRgulcy0-CHdn5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.637 [XNIO-1 task-1] E9uSVzUBRgulcy0-CHdn5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.637 [XNIO-1 task-1] E9uSVzUBRgulcy0-CHdn5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.648 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b5a89a1a, base path is set to: null +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/b5a89a1a, base path is set to: null +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG com.networknt.schema.TypeValidator debug - validate( "b5a89a1a", "b5a89a1a", userId) +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d3130677-c7ac-4f77-a548-a4a1f7bb3f40","newPassword":"64002330-b625-4611-8019-4dbbdf73ddf2","newPasswordConfirm":"64002330-b625-4611-8019-4dbbdf73ddf2"}, {"password":"d3130677-c7ac-4f77-a548-a4a1f7bb3f40","newPassword":"64002330-b625-4611-8019-4dbbdf73ddf2","newPasswordConfirm":"64002330-b625-4611-8019-4dbbdf73ddf2"}, requestBody) +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG com.networknt.schema.TypeValidator debug - validate( "64002330-b625-4611-8019-4dbbdf73ddf2", {"password":"d3130677-c7ac-4f77-a548-a4a1f7bb3f40","newPassword":"64002330-b625-4611-8019-4dbbdf73ddf2","newPasswordConfirm":"64002330-b625-4611-8019-4dbbdf73ddf2"}, requestBody.newPasswordConfirm) +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG com.networknt.schema.TypeValidator debug - validate( "d3130677-c7ac-4f77-a548-a4a1f7bb3f40", {"password":"d3130677-c7ac-4f77-a548-a4a1f7bb3f40","newPassword":"64002330-b625-4611-8019-4dbbdf73ddf2","newPasswordConfirm":"64002330-b625-4611-8019-4dbbdf73ddf2"}, requestBody.password) +09:12:48.649 [XNIO-1 task-1] qEwIKo_QTRugbiEB4Yzkjg DEBUG com.networknt.schema.TypeValidator debug - validate( "64002330-b625-4611-8019-4dbbdf73ddf2", {"password":"d3130677-c7ac-4f77-a548-a4a1f7bb3f40","newPassword":"64002330-b625-4611-8019-4dbbdf73ddf2","newPasswordConfirm":"64002330-b625-4611-8019-4dbbdf73ddf2"}, requestBody.newPassword) +09:12:48.658 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:cb7e7d73 +09:12:48.664 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9d826e5a-8ba1-4fe8-a74e-382de806e63d +09:12:48.665 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9d826e5a-8ba1-4fe8-a74e-382de806e63d +09:12:48.667 [XNIO-1 task-1] 8HEF36CPQkWo6D2zQ3dVEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.667 [XNIO-1 task-1] 8HEF36CPQkWo6D2zQ3dVEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.667 [XNIO-1 task-1] 8HEF36CPQkWo6D2zQ3dVEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.677 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc9fdb83, base path is set to: null +09:12:48.677 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.677 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.677 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:48.677 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc9fdb83, base path is set to: null +09:12:48.678 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc9fdb83", "dc9fdb83", userId) +09:12:48.678 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ef5b68c9-cbf3-43d7-a469-c1243c4a84ad","newPassword":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPasswordConfirm":"cbc83b33-5a82-446f-afe3-d1c4a98130b3"}, {"password":"ef5b68c9-cbf3-43d7-a469-c1243c4a84ad","newPassword":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPasswordConfirm":"cbc83b33-5a82-446f-afe3-d1c4a98130b3"}, requestBody) +09:12:48.678 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cbc83b33-5a82-446f-afe3-d1c4a98130b3", {"password":"ef5b68c9-cbf3-43d7-a469-c1243c4a84ad","newPassword":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPasswordConfirm":"cbc83b33-5a82-446f-afe3-d1c4a98130b3"}, requestBody.newPasswordConfirm) +09:12:48.678 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ef5b68c9-cbf3-43d7-a469-c1243c4a84ad", {"password":"ef5b68c9-cbf3-43d7-a469-c1243c4a84ad","newPassword":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPasswordConfirm":"cbc83b33-5a82-446f-afe3-d1c4a98130b3"}, requestBody.password) +09:12:48.678 [XNIO-1 task-1] CZFGPs1pSJaMA_itiqcWEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cbc83b33-5a82-446f-afe3-d1c4a98130b3", {"password":"ef5b68c9-cbf3-43d7-a469-c1243c4a84ad","newPassword":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPasswordConfirm":"cbc83b33-5a82-446f-afe3-d1c4a98130b3"}, requestBody.newPassword) +09:12:48.686 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5e4c590b +09:12:48.687 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5e4c590b +09:12:48.694 [XNIO-1 task-1] oxOVuLa1TXGQky8TRzwweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.694 [XNIO-1 task-1] oxOVuLa1TXGQky8TRzwweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.694 [XNIO-1 task-1] oxOVuLa1TXGQky8TRzwweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.702 [XNIO-1 task-1] i51awRk2RLWku7Hm9RMWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.703 [XNIO-1 task-1] i51awRk2RLWku7Hm9RMWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.703 [XNIO-1 task-1] i51awRk2RLWku7Hm9RMWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.708 [XNIO-1 task-1] z5pJT-04SlC_5QqyIjSpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.708 [XNIO-1 task-1] z5pJT-04SlC_5QqyIjSpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.708 [XNIO-1 task-1] z5pJT-04SlC_5QqyIjSpJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.708 [XNIO-1 task-1] z5pJT-04SlC_5QqyIjSpJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.713 [XNIO-1 task-1] okI8s2HzRuiyjMbnO_8LOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ad52275c +09:12:48.713 [XNIO-1 task-1] okI8s2HzRuiyjMbnO_8LOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.713 [XNIO-1 task-1] okI8s2HzRuiyjMbnO_8LOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.713 [XNIO-1 task-1] okI8s2HzRuiyjMbnO_8LOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ad52275c +09:12:48.717 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ef89fc11 +09:12:48.719 [XNIO-1 task-1] S8tefhOcQ0G-VXSTir7fIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.719 [XNIO-1 task-1] S8tefhOcQ0G-VXSTir7fIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.719 [XNIO-1 task-1] S8tefhOcQ0G-VXSTir7fIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.720 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ef89fc11 +09:12:48.730 [XNIO-1 task-1] k4qrkfIFRwKlnF1oL8F37Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5a89a1a +09:12:48.730 [XNIO-1 task-1] k4qrkfIFRwKlnF1oL8F37Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.730 [XNIO-1 task-1] k4qrkfIFRwKlnF1oL8F37Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.730 [XNIO-1 task-1] k4qrkfIFRwKlnF1oL8F37Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5a89a1a +09:12:48.735 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6922e84 +09:12:48.735 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6922e84 +09:12:48.736 [XNIO-1 task-1] mI1p2sRfTkiG2H9w2Hs0Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.736 [XNIO-1 task-1] mI1p2sRfTkiG2H9w2Hs0Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.736 [XNIO-1 task-1] mI1p2sRfTkiG2H9w2Hs0Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.742 [XNIO-1 task-1] MP7XtVe5SUeN-3513H4xCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.742 [XNIO-1 task-1] MP7XtVe5SUeN-3513H4xCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.742 [XNIO-1 task-1] MP7XtVe5SUeN-3513H4xCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.742 [XNIO-1 task-1] MP7XtVe5SUeN-3513H4xCA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:48.744 [XNIO-1 task-1] ZWKh4q3iSfGCIk63q9wqtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.744 [XNIO-1 task-1] ZWKh4q3iSfGCIk63q9wqtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.744 [XNIO-1 task-1] ZWKh4q3iSfGCIk63q9wqtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.744 [XNIO-1 task-1] ZWKh4q3iSfGCIk63q9wqtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.748 [XNIO-1 task-1] bL3d6_ZkREuQ6bNDx_hl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8ec5602b +09:12:48.748 [XNIO-1 task-1] bL3d6_ZkREuQ6bNDx_hl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.748 [XNIO-1 task-1] bL3d6_ZkREuQ6bNDx_hl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.748 [XNIO-1 task-1] bL3d6_ZkREuQ6bNDx_hl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8ec5602b +09:12:48.750 [XNIO-1 task-1] 3IbjekMgRzO-5cMofimqoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.750 [XNIO-1 task-1] 3IbjekMgRzO-5cMofimqoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.750 [XNIO-1 task-1] 3IbjekMgRzO-5cMofimqoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.750 [XNIO-1 task-1] 3IbjekMgRzO-5cMofimqoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:48.753 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9d826e5a-8ba1-4fe8-a74e-382de806e63d +09:12:48.754 [XNIO-1 task-1] ln0u-IalR3y6jin5d8QRtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.754 [XNIO-1 task-1] ln0u-IalR3y6jin5d8QRtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.754 [XNIO-1 task-1] ln0u-IalR3y6jin5d8QRtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.754 [XNIO-1 task-1] ln0u-IalR3y6jin5d8QRtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.757 [XNIO-1 task-1] xZvlW7iwRJ6krm5ka3YDuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.757 [XNIO-1 task-1] xZvlW7iwRJ6krm5ka3YDuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.757 [XNIO-1 task-1] xZvlW7iwRJ6krm5ka3YDuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.757 [XNIO-1 task-1] xZvlW7iwRJ6krm5ka3YDuw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:48.760 [XNIO-1 task-1] E7W6hAojS02BOwIU2VzddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8ec5602b +09:12:48.760 [XNIO-1 task-1] E7W6hAojS02BOwIU2VzddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.760 [XNIO-1 task-1] E7W6hAojS02BOwIU2VzddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.760 [XNIO-1 task-1] E7W6hAojS02BOwIU2VzddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8ec5602b +09:12:48.765 [XNIO-1 task-1] 8lXBw5_vSQ-6Y-nYTq4RsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.765 [XNIO-1 task-1] 8lXBw5_vSQ-6Y-nYTq4RsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.765 [XNIO-1 task-1] 8lXBw5_vSQ-6Y-nYTq4RsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.770 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc9fdb83, base path is set to: null +09:12:48.771 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.771 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.771 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:48.771 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc9fdb83, base path is set to: null +09:12:48.772 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc9fdb83", "dc9fdb83", userId) +09:12:48.772 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPassword":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650","newPasswordConfirm":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650"}, {"password":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPassword":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650","newPasswordConfirm":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650"}, requestBody) +09:12:48.772 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG com.networknt.schema.TypeValidator debug - validate( "5111c4c0-0540-4e85-9f47-fa6b7ffdd650", {"password":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPassword":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650","newPasswordConfirm":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650"}, requestBody.newPasswordConfirm) +09:12:48.772 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG com.networknt.schema.TypeValidator debug - validate( "cbc83b33-5a82-446f-afe3-d1c4a98130b3", {"password":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPassword":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650","newPasswordConfirm":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650"}, requestBody.password) +09:12:48.772 [XNIO-1 task-1] BHAYgfqbRKKmT502MLnYVA DEBUG com.networknt.schema.TypeValidator debug - validate( "5111c4c0-0540-4e85-9f47-fa6b7ffdd650", {"password":"cbc83b33-5a82-446f-afe3-d1c4a98130b3","newPassword":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650","newPasswordConfirm":"5111c4c0-0540-4e85-9f47-fa6b7ffdd650"}, requestBody.newPassword) +09:12:48.775 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e45453be +09:12:48.776 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e45453be +09:12:48.791 [XNIO-1 task-1] -MbWgCVJQDCukBtrv1NrqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.791 [XNIO-1 task-1] -MbWgCVJQDCukBtrv1NrqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.791 [XNIO-1 task-1] -MbWgCVJQDCukBtrv1NrqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.812 [XNIO-1 task-1] faB_j4OKSVePCKV4YcQ5Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.812 [XNIO-1 task-1] faB_j4OKSVePCKV4YcQ5Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.812 [XNIO-1 task-1] faB_j4OKSVePCKV4YcQ5Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.824 [XNIO-1 task-1] fBQM9S8dSYexih9NU5mlNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.824 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:580b805e-7775-454d-b8ce-72800bda2424 +09:12:48.825 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:580b805e-7775-454d-b8ce-72800bda2424 +09:12:48.825 [XNIO-1 task-1] fBQM9S8dSYexih9NU5mlNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.830 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7aade62c +09:12:48.831 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7aade62c +09:12:48.837 [XNIO-1 task-1] j0hoGlT4TVSSVPONJwC15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/81d86a99 +09:12:48.837 [XNIO-1 task-1] j0hoGlT4TVSSVPONJwC15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.837 [XNIO-1 task-1] j0hoGlT4TVSSVPONJwC15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.837 [XNIO-1 task-1] j0hoGlT4TVSSVPONJwC15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/81d86a99 +09:12:48.839 [XNIO-1 task-1] 7ienM9LGTgSfZIcMYgZObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/81d86a99, base path is set to: null +09:12:48.839 [XNIO-1 task-1] 7ienM9LGTgSfZIcMYgZObQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.839 [XNIO-1 task-1] 7ienM9LGTgSfZIcMYgZObQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.839 [XNIO-1 task-1] 7ienM9LGTgSfZIcMYgZObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/81d86a99, base path is set to: null +09:12:48.840 [XNIO-1 task-1] 7ienM9LGTgSfZIcMYgZObQ DEBUG com.networknt.schema.TypeValidator debug - validate( "81d86a99", "81d86a99", userId) +09:12:48.842 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ef89fc11 +09:12:48.847 [XNIO-1 task-1] cqr3xWJqSAiIxOHEmUJrbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.847 [XNIO-1 task-1] cqr3xWJqSAiIxOHEmUJrbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.847 [XNIO-1 task-1] cqr3xWJqSAiIxOHEmUJrbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:48.849 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e45453be +09:12:48.852 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6157ed2c +09:12:48.853 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6157ed2c +09:12:48.860 [XNIO-1 task-1] Mq8nIU-vQ8mpz0It2Z8yig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.860 [XNIO-1 task-1] Mq8nIU-vQ8mpz0It2Z8yig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.860 [XNIO-1 task-1] Mq8nIU-vQ8mpz0It2Z8yig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.874 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.874 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.874 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.874 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.874 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.874 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7b865bba-6a8f-445d-8528-146355e74a0c","newPassword":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPasswordConfirm":"28bfd19c-60d7-4264-9ac0-095142feaeb9"}, {"password":"7b865bba-6a8f-445d-8528-146355e74a0c","newPassword":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPasswordConfirm":"28bfd19c-60d7-4264-9ac0-095142feaeb9"}, requestBody) +09:12:48.874 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7b865bba-6a8f-445d-8528-146355e74a0c","newPassword":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPasswordConfirm":"28bfd19c-60d7-4264-9ac0-095142feaeb9"}, {"password":"7b865bba-6a8f-445d-8528-146355e74a0c","newPassword":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPasswordConfirm":"28bfd19c-60d7-4264-9ac0-095142feaeb9"}, requestBody) +09:12:48.875 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG com.networknt.schema.FormatValidator debug - validate( "28bfd19c-60d7-4264-9ac0-095142feaeb9", {"password":"7b865bba-6a8f-445d-8528-146355e74a0c","newPassword":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPasswordConfirm":"28bfd19c-60d7-4264-9ac0-095142feaeb9"}, requestBody.newPasswordConfirm) +09:12:48.875 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG com.networknt.schema.FormatValidator debug - validate( "7b865bba-6a8f-445d-8528-146355e74a0c", {"password":"7b865bba-6a8f-445d-8528-146355e74a0c","newPassword":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPasswordConfirm":"28bfd19c-60d7-4264-9ac0-095142feaeb9"}, requestBody.password) +09:12:48.875 [XNIO-1 task-1] XE1t2OBJTjSpz2zNIzwgDg DEBUG com.networknt.schema.FormatValidator debug - validate( "28bfd19c-60d7-4264-9ac0-095142feaeb9", {"password":"7b865bba-6a8f-445d-8528-146355e74a0c","newPassword":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPasswordConfirm":"28bfd19c-60d7-4264-9ac0-095142feaeb9"}, requestBody.newPassword) +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPassword":"27b86753-fbe9-4f85-b8a7-832324084204","newPasswordConfirm":"27b86753-fbe9-4f85-b8a7-832324084204"}, {"password":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPassword":"27b86753-fbe9-4f85-b8a7-832324084204","newPasswordConfirm":"27b86753-fbe9-4f85-b8a7-832324084204"}, requestBody) +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPassword":"27b86753-fbe9-4f85-b8a7-832324084204","newPasswordConfirm":"27b86753-fbe9-4f85-b8a7-832324084204"}, {"password":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPassword":"27b86753-fbe9-4f85-b8a7-832324084204","newPasswordConfirm":"27b86753-fbe9-4f85-b8a7-832324084204"}, requestBody) +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG com.networknt.schema.FormatValidator debug - validate( "27b86753-fbe9-4f85-b8a7-832324084204", {"password":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPassword":"27b86753-fbe9-4f85-b8a7-832324084204","newPasswordConfirm":"27b86753-fbe9-4f85-b8a7-832324084204"}, requestBody.newPasswordConfirm) +09:12:48.891 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG com.networknt.schema.FormatValidator debug - validate( "28bfd19c-60d7-4264-9ac0-095142feaeb9", {"password":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPassword":"27b86753-fbe9-4f85-b8a7-832324084204","newPasswordConfirm":"27b86753-fbe9-4f85-b8a7-832324084204"}, requestBody.password) +09:12:48.892 [XNIO-1 task-1] B5M6auxKRwGRRnqhgadqqw DEBUG com.networknt.schema.FormatValidator debug - validate( "27b86753-fbe9-4f85-b8a7-832324084204", {"password":"28bfd19c-60d7-4264-9ac0-095142feaeb9","newPassword":"27b86753-fbe9-4f85-b8a7-832324084204","newPasswordConfirm":"27b86753-fbe9-4f85-b8a7-832324084204"}, requestBody.newPassword) +09:12:48.906 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.906 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.906 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.906 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.907 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.907 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"27b86753-fbe9-4f85-b8a7-832324084204","newPassword":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPasswordConfirm":"250fc6b0-f236-4c79-8e49-f27efe7812d8"}, {"password":"27b86753-fbe9-4f85-b8a7-832324084204","newPassword":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPasswordConfirm":"250fc6b0-f236-4c79-8e49-f27efe7812d8"}, requestBody) +09:12:48.907 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"27b86753-fbe9-4f85-b8a7-832324084204","newPassword":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPasswordConfirm":"250fc6b0-f236-4c79-8e49-f27efe7812d8"}, {"password":"27b86753-fbe9-4f85-b8a7-832324084204","newPassword":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPasswordConfirm":"250fc6b0-f236-4c79-8e49-f27efe7812d8"}, requestBody) +09:12:48.907 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "250fc6b0-f236-4c79-8e49-f27efe7812d8", {"password":"27b86753-fbe9-4f85-b8a7-832324084204","newPassword":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPasswordConfirm":"250fc6b0-f236-4c79-8e49-f27efe7812d8"}, requestBody.newPasswordConfirm) +09:12:48.907 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "27b86753-fbe9-4f85-b8a7-832324084204", {"password":"27b86753-fbe9-4f85-b8a7-832324084204","newPassword":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPasswordConfirm":"250fc6b0-f236-4c79-8e49-f27efe7812d8"}, requestBody.password) +09:12:48.907 [XNIO-1 task-1] jR7SKkQ6QAOLyKanEBIF8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "250fc6b0-f236-4c79-8e49-f27efe7812d8", {"password":"27b86753-fbe9-4f85-b8a7-832324084204","newPassword":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPasswordConfirm":"250fc6b0-f236-4c79-8e49-f27efe7812d8"}, requestBody.newPassword) +09:12:48.921 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5e4c590b +09:12:48.923 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.923 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.923 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.924 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.924 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cab9a4fc +09:12:48.924 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPassword":"2991cb0c-0873-43d5-9655-2ad37972d82c","newPasswordConfirm":"2991cb0c-0873-43d5-9655-2ad37972d82c"}, {"password":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPassword":"2991cb0c-0873-43d5-9655-2ad37972d82c","newPasswordConfirm":"2991cb0c-0873-43d5-9655-2ad37972d82c"}, requestBody) +09:12:48.924 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPassword":"2991cb0c-0873-43d5-9655-2ad37972d82c","newPasswordConfirm":"2991cb0c-0873-43d5-9655-2ad37972d82c"}, {"password":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPassword":"2991cb0c-0873-43d5-9655-2ad37972d82c","newPasswordConfirm":"2991cb0c-0873-43d5-9655-2ad37972d82c"}, requestBody) +09:12:48.924 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "2991cb0c-0873-43d5-9655-2ad37972d82c", {"password":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPassword":"2991cb0c-0873-43d5-9655-2ad37972d82c","newPasswordConfirm":"2991cb0c-0873-43d5-9655-2ad37972d82c"}, requestBody.newPasswordConfirm) +09:12:48.924 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "250fc6b0-f236-4c79-8e49-f27efe7812d8", {"password":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPassword":"2991cb0c-0873-43d5-9655-2ad37972d82c","newPasswordConfirm":"2991cb0c-0873-43d5-9655-2ad37972d82c"}, requestBody.password) +09:12:48.924 [XNIO-1 task-1] jBelk2jJT8-FfNFVcUOqhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "2991cb0c-0873-43d5-9655-2ad37972d82c", {"password":"250fc6b0-f236-4c79-8e49-f27efe7812d8","newPassword":"2991cb0c-0873-43d5-9655-2ad37972d82c","newPasswordConfirm":"2991cb0c-0873-43d5-9655-2ad37972d82c"}, requestBody.newPassword) +09:12:48.935 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e6922e84 +09:12:48.942 [XNIO-1 task-1] WALDmoRvTXajNAQo2HropQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.942 [XNIO-1 task-1] WALDmoRvTXajNAQo2HropQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.943 [XNIO-1 task-1] WALDmoRvTXajNAQo2HropQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.954 [XNIO-1 task-1] KHmHUeu3RKidK2Darqu5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6157ed2c +09:12:48.954 [XNIO-1 task-1] KHmHUeu3RKidK2Darqu5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.954 [XNIO-1 task-1] KHmHUeu3RKidK2Darqu5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.954 [XNIO-1 task-1] KHmHUeu3RKidK2Darqu5tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6157ed2c +09:12:48.958 [XNIO-1 task-1] DflYZrwZTh2Rxa-24IRhhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cab9a4fc, base path is set to: null +09:12:48.958 [XNIO-1 task-1] DflYZrwZTh2Rxa-24IRhhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:48.958 [XNIO-1 task-1] DflYZrwZTh2Rxa-24IRhhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:48.958 [XNIO-1 task-1] DflYZrwZTh2Rxa-24IRhhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cab9a4fc, base path is set to: null +09:12:48.958 [XNIO-1 task-1] DflYZrwZTh2Rxa-24IRhhA DEBUG com.networknt.schema.TypeValidator debug - validate( "cab9a4fc", "cab9a4fc", userId) +09:12:48.964 [XNIO-1 task-1] vjyJQ5vDSN2qG63Dp-BQFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.964 [XNIO-1 task-1] vjyJQ5vDSN2qG63Dp-BQFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.964 [XNIO-1 task-1] vjyJQ5vDSN2qG63Dp-BQFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.964 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6157ed2c +09:12:48.968 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ef89fc11 +09:12:48.970 [XNIO-1 task-1] Qrk5jnEsQBWDCOVcC8M1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.970 [XNIO-1 task-1] Qrk5jnEsQBWDCOVcC8M1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.970 [XNIO-1 task-1] Qrk5jnEsQBWDCOVcC8M1yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.976 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7aade62c +09:12:48.976 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:48.976 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:48.976 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:48.976 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7aade62c +09:12:48.977 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5d981e45-89f7-4d87-8a20-91e986acd04b","newPassword":"4c646d32-8d71-4934-a639-1d6d449a0242","newPasswordConfirm":"4c646d32-8d71-4934-a639-1d6d449a0242"}, {"password":"5d981e45-89f7-4d87-8a20-91e986acd04b","newPassword":"4c646d32-8d71-4934-a639-1d6d449a0242","newPasswordConfirm":"4c646d32-8d71-4934-a639-1d6d449a0242"}, requestBody) +09:12:48.977 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5d981e45-89f7-4d87-8a20-91e986acd04b","newPassword":"4c646d32-8d71-4934-a639-1d6d449a0242","newPasswordConfirm":"4c646d32-8d71-4934-a639-1d6d449a0242"}, {"password":"5d981e45-89f7-4d87-8a20-91e986acd04b","newPassword":"4c646d32-8d71-4934-a639-1d6d449a0242","newPasswordConfirm":"4c646d32-8d71-4934-a639-1d6d449a0242"}, requestBody) +09:12:48.977 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "4c646d32-8d71-4934-a639-1d6d449a0242", {"password":"5d981e45-89f7-4d87-8a20-91e986acd04b","newPassword":"4c646d32-8d71-4934-a639-1d6d449a0242","newPasswordConfirm":"4c646d32-8d71-4934-a639-1d6d449a0242"}, requestBody.newPasswordConfirm) +09:12:48.977 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5d981e45-89f7-4d87-8a20-91e986acd04b", {"password":"5d981e45-89f7-4d87-8a20-91e986acd04b","newPassword":"4c646d32-8d71-4934-a639-1d6d449a0242","newPasswordConfirm":"4c646d32-8d71-4934-a639-1d6d449a0242"}, requestBody.password) +09:12:48.977 [XNIO-1 task-1] H7UT6eMbS4eK5yenCUMKhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "4c646d32-8d71-4934-a639-1d6d449a0242", {"password":"5d981e45-89f7-4d87-8a20-91e986acd04b","newPassword":"4c646d32-8d71-4934-a639-1d6d449a0242","newPasswordConfirm":"4c646d32-8d71-4934-a639-1d6d449a0242"}, requestBody.newPassword) +09:12:48.980 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1065ff7b-ee46-4334-9d80-6da0e1344c6e +09:12:48.998 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7aade62c +09:12:49.004 [XNIO-1 task-1] 2rNqiIieSey8weGVkLqI_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.004 [XNIO-1 task-1] 2rNqiIieSey8weGVkLqI_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.004 [XNIO-1 task-1] 2rNqiIieSey8weGVkLqI_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.006 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b1916c95-0716-48ea-a23b-e2d7dacc752d +09:12:49.007 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b1916c95-0716-48ea-a23b-e2d7dacc752d +09:12:49.019 [XNIO-1 task-1] ozTTSSO3S_2bZi_gzuLC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dc9fdb83 +09:12:49.019 [XNIO-1 task-1] ozTTSSO3S_2bZi_gzuLC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.019 [XNIO-1 task-1] ozTTSSO3S_2bZi_gzuLC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.019 [XNIO-1 task-1] ozTTSSO3S_2bZi_gzuLC4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dc9fdb83 +09:12:49.024 [XNIO-1 task-1] YntQS-FGTyybXYaqPzxFYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc9fdb83, base path is set to: null +09:12:49.024 [XNIO-1 task-1] YntQS-FGTyybXYaqPzxFYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.024 [XNIO-1 task-1] YntQS-FGTyybXYaqPzxFYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.024 [XNIO-1 task-1] YntQS-FGTyybXYaqPzxFYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc9fdb83, base path is set to: null +09:12:49.024 [XNIO-1 task-1] YntQS-FGTyybXYaqPzxFYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc9fdb83", "dc9fdb83", userId) +09:12:49.029 [XNIO-1 task-1] qRN5QGLuRy-nb9t9dKa9JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6157ed2c +09:12:49.029 [XNIO-1 task-1] qRN5QGLuRy-nb9t9dKa9JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.029 [XNIO-1 task-1] qRN5QGLuRy-nb9t9dKa9JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.030 [XNIO-1 task-1] qRN5QGLuRy-nb9t9dKa9JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6157ed2c +09:12:49.030 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6157ed2c +09:12:49.034 [XNIO-1 task-1] rOakzhI6QHKWidzUGsa9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/261926bc +09:12:49.034 [XNIO-1 task-1] rOakzhI6QHKWidzUGsa9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.034 [XNIO-1 task-1] rOakzhI6QHKWidzUGsa9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.035 [XNIO-1 task-1] rOakzhI6QHKWidzUGsa9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/261926bc +09:12:49.037 [XNIO-1 task-1] m123sU5sQyifsCLPDXyWdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.037 [XNIO-1 task-1] m123sU5sQyifsCLPDXyWdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.038 [XNIO-1 task-1] m123sU5sQyifsCLPDXyWdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.038 [XNIO-1 task-1] m123sU5sQyifsCLPDXyWdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:49.039 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4252f46c, base path is set to: null +09:12:49.039 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.039 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.039 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:49.040 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4252f46c, base path is set to: null +09:12:49.040 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4252f46c", "4252f46c", userId) +09:12:49.040 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6e57e309-d8b0-480f-8907-66f5ddf2318c","newPassword":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPasswordConfirm":"2960012e-8ddf-488e-8bfc-ac743346b2f3"}, {"password":"6e57e309-d8b0-480f-8907-66f5ddf2318c","newPassword":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPasswordConfirm":"2960012e-8ddf-488e-8bfc-ac743346b2f3"}, requestBody) +09:12:49.040 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2960012e-8ddf-488e-8bfc-ac743346b2f3", {"password":"6e57e309-d8b0-480f-8907-66f5ddf2318c","newPassword":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPasswordConfirm":"2960012e-8ddf-488e-8bfc-ac743346b2f3"}, requestBody.newPasswordConfirm) +09:12:49.040 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e57e309-d8b0-480f-8907-66f5ddf2318c", {"password":"6e57e309-d8b0-480f-8907-66f5ddf2318c","newPassword":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPasswordConfirm":"2960012e-8ddf-488e-8bfc-ac743346b2f3"}, requestBody.password) +09:12:49.040 [XNIO-1 task-1] F10habcsTVGTzqfSM7-hPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2960012e-8ddf-488e-8bfc-ac743346b2f3", {"password":"6e57e309-d8b0-480f-8907-66f5ddf2318c","newPassword":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPasswordConfirm":"2960012e-8ddf-488e-8bfc-ac743346b2f3"}, requestBody.newPassword) +09:12:49.056 [XNIO-1 task-1] jQ1kjl3aT9CT4sqBQ5pcLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/261926bc, base path is set to: null +09:12:49.057 [XNIO-1 task-1] jQ1kjl3aT9CT4sqBQ5pcLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.057 [XNIO-1 task-1] jQ1kjl3aT9CT4sqBQ5pcLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.057 [XNIO-1 task-1] jQ1kjl3aT9CT4sqBQ5pcLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/261926bc, base path is set to: null +09:12:49.057 [XNIO-1 task-1] jQ1kjl3aT9CT4sqBQ5pcLg DEBUG com.networknt.schema.TypeValidator debug - validate( "261926bc", "261926bc", userId) +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4252f46c +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4252f46c +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPassword":"db68b6ab-c5da-417b-a441-0e46af96d999","newPasswordConfirm":"db68b6ab-c5da-417b-a441-0e46af96d999"}, {"password":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPassword":"db68b6ab-c5da-417b-a441-0e46af96d999","newPasswordConfirm":"db68b6ab-c5da-417b-a441-0e46af96d999"}, requestBody) +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPassword":"db68b6ab-c5da-417b-a441-0e46af96d999","newPasswordConfirm":"db68b6ab-c5da-417b-a441-0e46af96d999"}, {"password":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPassword":"db68b6ab-c5da-417b-a441-0e46af96d999","newPasswordConfirm":"db68b6ab-c5da-417b-a441-0e46af96d999"}, requestBody) +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG com.networknt.schema.FormatValidator debug - validate( "db68b6ab-c5da-417b-a441-0e46af96d999", {"password":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPassword":"db68b6ab-c5da-417b-a441-0e46af96d999","newPasswordConfirm":"db68b6ab-c5da-417b-a441-0e46af96d999"}, requestBody.newPasswordConfirm) +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG com.networknt.schema.FormatValidator debug - validate( "2960012e-8ddf-488e-8bfc-ac743346b2f3", {"password":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPassword":"db68b6ab-c5da-417b-a441-0e46af96d999","newPasswordConfirm":"db68b6ab-c5da-417b-a441-0e46af96d999"}, requestBody.password) +09:12:49.063 [XNIO-1 task-1] bUv7ZFT7RQWbwVEJ1tsFCg DEBUG com.networknt.schema.FormatValidator debug - validate( "db68b6ab-c5da-417b-a441-0e46af96d999", {"password":"2960012e-8ddf-488e-8bfc-ac743346b2f3","newPassword":"db68b6ab-c5da-417b-a441-0e46af96d999","newPasswordConfirm":"db68b6ab-c5da-417b-a441-0e46af96d999"}, requestBody.newPassword) +09:12:49.066 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5e4c590b +09:12:49.080 [XNIO-1 task-1] JaROc9WuSfafjEQYWGiJvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4252f46c +09:12:49.080 [XNIO-1 task-1] JaROc9WuSfafjEQYWGiJvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.080 [XNIO-1 task-1] JaROc9WuSfafjEQYWGiJvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.080 [XNIO-1 task-1] JaROc9WuSfafjEQYWGiJvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4252f46c +09:12:49.085 [XNIO-1 task-1] OjSLp9XqT7eK5hGGX8CpCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.085 [XNIO-1 task-1] OjSLp9XqT7eK5hGGX8CpCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.085 [XNIO-1 task-1] OjSLp9XqT7eK5hGGX8CpCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.090 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e349330 +09:12:49.091 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e349330 +09:12:49.096 [XNIO-1 task-1] 0JH98OBgTMKw9YpTJVIATA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7aade62c +09:12:49.096 [XNIO-1 task-1] 0JH98OBgTMKw9YpTJVIATA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.096 [XNIO-1 task-1] 0JH98OBgTMKw9YpTJVIATA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.096 [XNIO-1 task-1] 0JH98OBgTMKw9YpTJVIATA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7aade62c +09:12:49.098 [XNIO-1 task-1] 99Za-vKVRvqs4DPFgjsgiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.098 [XNIO-1 task-1] 99Za-vKVRvqs4DPFgjsgiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.098 [XNIO-1 task-1] 99Za-vKVRvqs4DPFgjsgiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.098 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e349330 +09:12:49.103 [XNIO-1 task-1] 7EZoxXkZQyOJeAWVIxUnig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.103 [XNIO-1 task-1] 7EZoxXkZQyOJeAWVIxUnig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.103 [XNIO-1 task-1] 7EZoxXkZQyOJeAWVIxUnig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.103 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7aade62c +09:12:49.108 [XNIO-1 task-1] 9rDjcoMCRiq4kUKCsldeeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.108 [XNIO-1 task-1] 9rDjcoMCRiq4kUKCsldeeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.109 [XNIO-1 task-1] 9rDjcoMCRiq4kUKCsldeeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.121 [XNIO-1 task-1] tdmOGW2BRrW4_lRSVuY_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.121 [XNIO-1 task-1] tdmOGW2BRrW4_lRSVuY_AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.121 [XNIO-1 task-1] tdmOGW2BRrW4_lRSVuY_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.121 [XNIO-1 task-1] tdmOGW2BRrW4_lRSVuY_AA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:49.122 [XNIO-1 task-1] mNfxiBZRRKKOjqazdgup7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.122 [XNIO-1 task-1] mNfxiBZRRKKOjqazdgup7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.123 [XNIO-1 task-1] mNfxiBZRRKKOjqazdgup7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.123 [XNIO-1 task-1] mNfxiBZRRKKOjqazdgup7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.125 [XNIO-1 task-1] av_a88Q1TU286pOLqK9qAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.125 [XNIO-1 task-1] av_a88Q1TU286pOLqK9qAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.126 [XNIO-1 task-1] av_a88Q1TU286pOLqK9qAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.126 [XNIO-1 task-1] av_a88Q1TU286pOLqK9qAQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:49.127 [XNIO-1 task-1] B48pKWeaRgexybx78AavzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.127 [XNIO-1 task-1] B48pKWeaRgexybx78AavzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.127 [XNIO-1 task-1] B48pKWeaRgexybx78AavzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.138 [XNIO-1 task-1] 6deS4xEcTmyTJKJI4_dN4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.139 [XNIO-1 task-1] 6deS4xEcTmyTJKJI4_dN4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.139 [XNIO-1 task-1] 6deS4xEcTmyTJKJI4_dN4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.139 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e349330 +09:12:49.144 [XNIO-1 task-1] X334w8xGSv280-tAWA_Vkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0a6aaf83, base path is set to: null +09:12:49.144 [XNIO-1 task-1] X334w8xGSv280-tAWA_Vkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.144 [XNIO-1 task-1] X334w8xGSv280-tAWA_Vkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.144 [XNIO-1 task-1] X334w8xGSv280-tAWA_Vkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0a6aaf83, base path is set to: null +09:12:49.145 [XNIO-1 task-1] X334w8xGSv280-tAWA_Vkg DEBUG com.networknt.schema.TypeValidator debug - validate( "0a6aaf83", "0a6aaf83", userId) +09:12:49.147 [XNIO-1 task-1] 8l6turqmQKG7uyKFKesBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.147 [XNIO-1 task-1] 8l6turqmQKG7uyKFKesBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.147 [XNIO-1 task-1] 8l6turqmQKG7uyKFKesBPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.147 [XNIO-1 task-1] 8l6turqmQKG7uyKFKesBPw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:49.149 [XNIO-1 task-1] 8GSm6FQ-St6J_IAdLwaPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e349330 +09:12:49.149 [XNIO-1 task-1] 8GSm6FQ-St6J_IAdLwaPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.149 [XNIO-1 task-1] 8GSm6FQ-St6J_IAdLwaPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.149 [XNIO-1 task-1] 8GSm6FQ-St6J_IAdLwaPfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e349330 +09:12:49.150 [XNIO-1 task-1] NzNKBmZ2Sn--do9Vx_UbGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/014591c7, base path is set to: null +09:12:49.151 [XNIO-1 task-1] NzNKBmZ2Sn--do9Vx_UbGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.151 [XNIO-1 task-1] NzNKBmZ2Sn--do9Vx_UbGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.151 [XNIO-1 task-1] NzNKBmZ2Sn--do9Vx_UbGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/014591c7, base path is set to: null +09:12:49.151 [XNIO-1 task-1] NzNKBmZ2Sn--do9Vx_UbGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "014591c7", "014591c7", userId) +09:12:49.156 [XNIO-1 task-1] fXsUQm7HRjOcY5_UBf_X1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.156 [XNIO-1 task-1] fXsUQm7HRjOcY5_UBf_X1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.156 [XNIO-1 task-1] fXsUQm7HRjOcY5_UBf_X1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.156 [XNIO-1 task-1] fXsUQm7HRjOcY5_UBf_X1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.160 [XNIO-1 task-1] 6MFjUaj1RCmW1kZH_n93fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7aade62c +09:12:49.160 [XNIO-1 task-1] 6MFjUaj1RCmW1kZH_n93fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.160 [XNIO-1 task-1] 6MFjUaj1RCmW1kZH_n93fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.160 [XNIO-1 task-1] 6MFjUaj1RCmW1kZH_n93fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7aade62c +09:12:49.161 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7aade62c +09:12:49.165 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0e349330 +09:12:49.165 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.165 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.165 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.166 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0e349330 +09:12:49.166 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"246938ad-b7a0-4d52-966a-fdbf7df1d5e8","newPassword":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPasswordConfirm":"d54c88d4-b962-4232-b3d6-dc68347cef6c"}, {"password":"246938ad-b7a0-4d52-966a-fdbf7df1d5e8","newPassword":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPasswordConfirm":"d54c88d4-b962-4232-b3d6-dc68347cef6c"}, requestBody) +09:12:49.166 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"246938ad-b7a0-4d52-966a-fdbf7df1d5e8","newPassword":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPasswordConfirm":"d54c88d4-b962-4232-b3d6-dc68347cef6c"}, {"password":"246938ad-b7a0-4d52-966a-fdbf7df1d5e8","newPassword":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPasswordConfirm":"d54c88d4-b962-4232-b3d6-dc68347cef6c"}, requestBody) +09:12:49.166 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d54c88d4-b962-4232-b3d6-dc68347cef6c", {"password":"246938ad-b7a0-4d52-966a-fdbf7df1d5e8","newPassword":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPasswordConfirm":"d54c88d4-b962-4232-b3d6-dc68347cef6c"}, requestBody.newPasswordConfirm) +09:12:49.166 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "246938ad-b7a0-4d52-966a-fdbf7df1d5e8", {"password":"246938ad-b7a0-4d52-966a-fdbf7df1d5e8","newPassword":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPasswordConfirm":"d54c88d4-b962-4232-b3d6-dc68347cef6c"}, requestBody.password) +09:12:49.166 [XNIO-1 task-1] hyaziE9QQhK3LSxTPgVoMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d54c88d4-b962-4232-b3d6-dc68347cef6c", {"password":"246938ad-b7a0-4d52-966a-fdbf7df1d5e8","newPassword":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPasswordConfirm":"d54c88d4-b962-4232-b3d6-dc68347cef6c"}, requestBody.newPassword) +09:12:49.176 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e349330 +09:12:49.181 [XNIO-1 task-1] KOOr487RQsW_2jjUxafyKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.181 [XNIO-1 task-1] KOOr487RQsW_2jjUxafyKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.181 [XNIO-1 task-1] KOOr487RQsW_2jjUxafyKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.181 [XNIO-1 task-1] KOOr487RQsW_2jjUxafyKA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.184 [XNIO-1 task-1] IHJ5R3arQ8yM_loUa6T1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.184 [XNIO-1 task-1] IHJ5R3arQ8yM_loUa6T1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.184 [XNIO-1 task-1] IHJ5R3arQ8yM_loUa6T1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.195 [XNIO-1 task-1] EaH6b518Th6tkn4fEn3eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/698b094b +09:12:49.195 [XNIO-1 task-1] EaH6b518Th6tkn4fEn3eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.195 [XNIO-1 task-1] EaH6b518Th6tkn4fEn3eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.195 [XNIO-1 task-1] EaH6b518Th6tkn4fEn3eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/698b094b +09:12:49.197 [XNIO-1 task-1] n9e9c02fTwCE8pNOldKlDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.198 [XNIO-1 task-1] n9e9c02fTwCE8pNOldKlDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.198 [XNIO-1 task-1] n9e9c02fTwCE8pNOldKlDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.198 [XNIO-1 task-1] n9e9c02fTwCE8pNOldKlDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:49.199 [XNIO-1 task-1] a2fx8dZBQ9GRZICpvrmozA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/698b094b, base path is set to: null +09:12:49.199 [XNIO-1 task-1] a2fx8dZBQ9GRZICpvrmozA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.199 [XNIO-1 task-1] a2fx8dZBQ9GRZICpvrmozA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.200 [XNIO-1 task-1] a2fx8dZBQ9GRZICpvrmozA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/698b094b, base path is set to: null +09:12:49.200 [XNIO-1 task-1] a2fx8dZBQ9GRZICpvrmozA DEBUG com.networknt.schema.TypeValidator debug - validate( "698b094b", "698b094b", userId) +09:12:49.205 [XNIO-1 task-1] geUGwprAQVaVCYHnvcIFEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.205 [XNIO-1 task-1] geUGwprAQVaVCYHnvcIFEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.205 [XNIO-1 task-1] geUGwprAQVaVCYHnvcIFEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.205 [XNIO-1 task-1] geUGwprAQVaVCYHnvcIFEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.208 [XNIO-1 task-1] Q-xNnhQ3QEaVK3Cyg34F0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0a6aaf83 +09:12:49.208 [XNIO-1 task-1] Q-xNnhQ3QEaVK3Cyg34F0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.208 [XNIO-1 task-1] Q-xNnhQ3QEaVK3Cyg34F0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.208 [XNIO-1 task-1] Q-xNnhQ3QEaVK3Cyg34F0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0a6aaf83 +09:12:49.215 [XNIO-1 task-1] UpRFiAtFSICkquupinDUcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.216 [XNIO-1 task-1] UpRFiAtFSICkquupinDUcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.216 [XNIO-1 task-1] UpRFiAtFSICkquupinDUcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.247 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0e349330, base path is set to: null +09:12:49.247 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.247 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.247 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:49.247 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0e349330, base path is set to: null +09:12:49.248 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0e349330", "0e349330", userId) +09:12:49.248 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPassword":"b23de3a6-1563-41dc-ac4a-7b8983376af8","newPasswordConfirm":"b23de3a6-1563-41dc-ac4a-7b8983376af8"}, {"password":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPassword":"b23de3a6-1563-41dc-ac4a-7b8983376af8","newPasswordConfirm":"b23de3a6-1563-41dc-ac4a-7b8983376af8"}, requestBody) +09:12:49.248 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b23de3a6-1563-41dc-ac4a-7b8983376af8", {"password":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPassword":"b23de3a6-1563-41dc-ac4a-7b8983376af8","newPasswordConfirm":"b23de3a6-1563-41dc-ac4a-7b8983376af8"}, requestBody.newPasswordConfirm) +09:12:49.248 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d54c88d4-b962-4232-b3d6-dc68347cef6c", {"password":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPassword":"b23de3a6-1563-41dc-ac4a-7b8983376af8","newPasswordConfirm":"b23de3a6-1563-41dc-ac4a-7b8983376af8"}, requestBody.password) +09:12:49.248 [XNIO-1 task-1] rxEyB2D1Tnq7OMP34eli1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b23de3a6-1563-41dc-ac4a-7b8983376af8", {"password":"d54c88d4-b962-4232-b3d6-dc68347cef6c","newPassword":"b23de3a6-1563-41dc-ac4a-7b8983376af8","newPasswordConfirm":"b23de3a6-1563-41dc-ac4a-7b8983376af8"}, requestBody.newPassword) +09:12:49.258 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e349330 +09:12:49.263 [XNIO-1 task-1] GKuERFKXRV63vHW9-yEmvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b6b5057f, base path is set to: null +09:12:49.263 [XNIO-1 task-1] GKuERFKXRV63vHW9-yEmvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.263 [XNIO-1 task-1] GKuERFKXRV63vHW9-yEmvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.263 [XNIO-1 task-1] GKuERFKXRV63vHW9-yEmvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b6b5057f, base path is set to: null +09:12:49.263 [XNIO-1 task-1] GKuERFKXRV63vHW9-yEmvw DEBUG com.networknt.schema.TypeValidator debug - validate( "b6b5057f", "b6b5057f", userId) +09:12:49.269 [XNIO-1 task-1] 5UMOVJupQaauXXvRJCed6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e349330 +09:12:49.269 [XNIO-1 task-1] 5UMOVJupQaauXXvRJCed6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.269 [XNIO-1 task-1] 5UMOVJupQaauXXvRJCed6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.269 [XNIO-1 task-1] 5UMOVJupQaauXXvRJCed6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0e349330 +09:12:49.269 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0e349330 +09:12:49.275 [XNIO-1 task-1] mCSNgzn7T4SyWorURpBvrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.275 [XNIO-1 task-1] mCSNgzn7T4SyWorURpBvrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.275 [XNIO-1 task-1] mCSNgzn7T4SyWorURpBvrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.286 [XNIO-1 task-1] SGnMEkiiTa6I3-EgJslXmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.286 [XNIO-1 task-1] SGnMEkiiTa6I3-EgJslXmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.286 [XNIO-1 task-1] SGnMEkiiTa6I3-EgJslXmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.297 [XNIO-1 task-1] bIgpLmj1Qo6RwJlSHPMsEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.297 [XNIO-1 task-1] bIgpLmj1Qo6RwJlSHPMsEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.297 [XNIO-1 task-1] bIgpLmj1Qo6RwJlSHPMsEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.309 [XNIO-1 task-1] 2x5AiheVRgST4d5shLJGKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.310 [XNIO-1 task-1] 2x5AiheVRgST4d5shLJGKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.310 [XNIO-1 task-1] 2x5AiheVRgST4d5shLJGKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.315 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ed3db458 +09:12:49.321 [XNIO-1 task-1] 9STbwUjPSJOGzKURUZwivA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.321 [XNIO-1 task-1] 9STbwUjPSJOGzKURUZwivA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.321 [XNIO-1 task-1] 9STbwUjPSJOGzKURUZwivA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.321 [XNIO-1 task-1] 9STbwUjPSJOGzKURUZwivA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:49.346 [XNIO-1 task-1] KkUXKH3dREWPejOTUtrvkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.346 [XNIO-1 task-1] KkUXKH3dREWPejOTUtrvkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.346 [XNIO-1 task-1] KkUXKH3dREWPejOTUtrvkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.353 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ed3db458, base path is set to: null +09:12:49.353 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.353 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.353 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:49.353 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ed3db458, base path is set to: null +09:12:49.354 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG com.networknt.schema.TypeValidator debug - validate( "ed3db458", "ed3db458", userId) +09:12:49.354 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0365cc73-b79f-48b6-a1b1-41d944cf8db6","newPassword":"de408a25-6c00-44bd-a884-c8baef850246","newPasswordConfirm":"de408a25-6c00-44bd-a884-c8baef850246"}, {"password":"0365cc73-b79f-48b6-a1b1-41d944cf8db6","newPassword":"de408a25-6c00-44bd-a884-c8baef850246","newPasswordConfirm":"de408a25-6c00-44bd-a884-c8baef850246"}, requestBody) +09:12:49.354 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG com.networknt.schema.TypeValidator debug - validate( "de408a25-6c00-44bd-a884-c8baef850246", {"password":"0365cc73-b79f-48b6-a1b1-41d944cf8db6","newPassword":"de408a25-6c00-44bd-a884-c8baef850246","newPasswordConfirm":"de408a25-6c00-44bd-a884-c8baef850246"}, requestBody.newPasswordConfirm) +09:12:49.354 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG com.networknt.schema.TypeValidator debug - validate( "0365cc73-b79f-48b6-a1b1-41d944cf8db6", {"password":"0365cc73-b79f-48b6-a1b1-41d944cf8db6","newPassword":"de408a25-6c00-44bd-a884-c8baef850246","newPasswordConfirm":"de408a25-6c00-44bd-a884-c8baef850246"}, requestBody.password) +09:12:49.354 [XNIO-1 task-1] C7at72Y1Qg-Bri8M8D-_MA DEBUG com.networknt.schema.TypeValidator debug - validate( "de408a25-6c00-44bd-a884-c8baef850246", {"password":"0365cc73-b79f-48b6-a1b1-41d944cf8db6","newPassword":"de408a25-6c00-44bd-a884-c8baef850246","newPasswordConfirm":"de408a25-6c00-44bd-a884-c8baef850246"}, requestBody.newPassword) +09:12:49.364 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ed3db458 +09:12:49.371 [XNIO-1 task-1] rUizjSg4S12qjURhpyoy9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.371 [XNIO-1 task-1] rUizjSg4S12qjURhpyoy9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.371 [XNIO-1 task-1] rUizjSg4S12qjURhpyoy9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.396 [XNIO-1 task-1] BQ3TGXEcT0WcZy6zYiLfdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.396 [XNIO-1 task-1] BQ3TGXEcT0WcZy6zYiLfdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.397 [XNIO-1 task-1] BQ3TGXEcT0WcZy6zYiLfdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.397 [XNIO-1 task-1] BQ3TGXEcT0WcZy6zYiLfdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.449 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ed3db458, base path is set to: null +09:12:49.449 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.449 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.449 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:49.450 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ed3db458, base path is set to: null +09:12:49.450 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG com.networknt.schema.TypeValidator debug - validate( "ed3db458", "ed3db458", userId) +09:12:49.450 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"de408a25-6c00-44bd-a884-c8baef850246","newPassword":"112d5815-80d4-41db-9282-15a6833d681d","newPasswordConfirm":"112d5815-80d4-41db-9282-15a6833d681d"}, {"password":"de408a25-6c00-44bd-a884-c8baef850246","newPassword":"112d5815-80d4-41db-9282-15a6833d681d","newPasswordConfirm":"112d5815-80d4-41db-9282-15a6833d681d"}, requestBody) +09:12:49.450 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG com.networknt.schema.TypeValidator debug - validate( "112d5815-80d4-41db-9282-15a6833d681d", {"password":"de408a25-6c00-44bd-a884-c8baef850246","newPassword":"112d5815-80d4-41db-9282-15a6833d681d","newPasswordConfirm":"112d5815-80d4-41db-9282-15a6833d681d"}, requestBody.newPasswordConfirm) +09:12:49.450 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG com.networknt.schema.TypeValidator debug - validate( "de408a25-6c00-44bd-a884-c8baef850246", {"password":"de408a25-6c00-44bd-a884-c8baef850246","newPassword":"112d5815-80d4-41db-9282-15a6833d681d","newPasswordConfirm":"112d5815-80d4-41db-9282-15a6833d681d"}, requestBody.password) +09:12:49.450 [XNIO-1 task-1] jfT_CwYRTlebovNRFf49iA DEBUG com.networknt.schema.TypeValidator debug - validate( "112d5815-80d4-41db-9282-15a6833d681d", {"password":"de408a25-6c00-44bd-a884-c8baef850246","newPassword":"112d5815-80d4-41db-9282-15a6833d681d","newPasswordConfirm":"112d5815-80d4-41db-9282-15a6833d681d"}, requestBody.newPassword) +09:12:49.460 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ed3db458 +09:12:49.466 [XNIO-1 task-1] yj9dWrlqRGm82Uev0ZlX5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da257e32, base path is set to: null +09:12:49.466 [XNIO-1 task-1] yj9dWrlqRGm82Uev0ZlX5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.466 [XNIO-1 task-1] yj9dWrlqRGm82Uev0ZlX5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.466 [XNIO-1 task-1] yj9dWrlqRGm82Uev0ZlX5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da257e32, base path is set to: null +09:12:49.466 [XNIO-1 task-1] yj9dWrlqRGm82Uev0ZlX5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "da257e32", "da257e32", userId) +09:12:49.469 [XNIO-1 task-1] gSkLtgYyRTCh_V6LCMmj5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.469 [XNIO-1 task-1] gSkLtgYyRTCh_V6LCMmj5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.470 [XNIO-1 task-1] gSkLtgYyRTCh_V6LCMmj5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.470 [XNIO-1 task-1] gSkLtgYyRTCh_V6LCMmj5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.477 [XNIO-1 task-1] PICokxfOQ0CIqKwCp43_Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.477 [XNIO-1 task-1] PICokxfOQ0CIqKwCp43_Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.477 [XNIO-1 task-1] PICokxfOQ0CIqKwCp43_Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.478 [XNIO-1 task-1] PICokxfOQ0CIqKwCp43_Bg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:49.479 [XNIO-1 task-1] OqtqUeVIS_inuUVYk1z9vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ed3db458 +09:12:49.479 [XNIO-1 task-1] OqtqUeVIS_inuUVYk1z9vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.480 [XNIO-1 task-1] OqtqUeVIS_inuUVYk1z9vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.480 [XNIO-1 task-1] OqtqUeVIS_inuUVYk1z9vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ed3db458 +09:12:49.480 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ed3db458 +09:12:49.485 [XNIO-1 task-1] b17vfADpStCWGLdDuvG92g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.485 [XNIO-1 task-1] b17vfADpStCWGLdDuvG92g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.485 [XNIO-1 task-1] b17vfADpStCWGLdDuvG92g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498","newPassword":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPasswordConfirm":"374fe702-3859-4ce0-9cdb-00e33ac85bd4"}, {"password":"b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498","newPassword":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPasswordConfirm":"374fe702-3859-4ce0-9cdb-00e33ac85bd4"}, requestBody) +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498","newPassword":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPasswordConfirm":"374fe702-3859-4ce0-9cdb-00e33ac85bd4"}, {"password":"b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498","newPassword":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPasswordConfirm":"374fe702-3859-4ce0-9cdb-00e33ac85bd4"}, requestBody) +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG com.networknt.schema.FormatValidator debug - validate( "374fe702-3859-4ce0-9cdb-00e33ac85bd4", {"password":"b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498","newPassword":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPasswordConfirm":"374fe702-3859-4ce0-9cdb-00e33ac85bd4"}, requestBody.newPasswordConfirm) +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG com.networknt.schema.FormatValidator debug - validate( "b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498", {"password":"b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498","newPassword":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPasswordConfirm":"374fe702-3859-4ce0-9cdb-00e33ac85bd4"}, requestBody.password) +09:12:49.492 [XNIO-1 task-1] -oxD6NjhSASpjOyhiYWqZg DEBUG com.networknt.schema.FormatValidator debug - validate( "374fe702-3859-4ce0-9cdb-00e33ac85bd4", {"password":"b73bc1cc-7dd9-4dbc-b041-9c2a52cfb498","newPassword":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPasswordConfirm":"374fe702-3859-4ce0-9cdb-00e33ac85bd4"}, requestBody.newPassword) +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPassword":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPasswordConfirm":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d"}, {"password":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPassword":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPasswordConfirm":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d"}, requestBody) +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPassword":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPasswordConfirm":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d"}, {"password":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPassword":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPasswordConfirm":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d"}, requestBody) +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG com.networknt.schema.FormatValidator debug - validate( "4fad10e8-2bca-41d0-bfb9-a050b1c1f73d", {"password":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPassword":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPasswordConfirm":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d"}, requestBody.newPasswordConfirm) +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG com.networknt.schema.FormatValidator debug - validate( "374fe702-3859-4ce0-9cdb-00e33ac85bd4", {"password":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPassword":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPasswordConfirm":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d"}, requestBody.password) +09:12:49.508 [XNIO-1 task-1] gQTY_Dt6Ss-pZTBQGlFJIw DEBUG com.networknt.schema.FormatValidator debug - validate( "4fad10e8-2bca-41d0-bfb9-a050b1c1f73d", {"password":"374fe702-3859-4ce0-9cdb-00e33ac85bd4","newPassword":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPasswordConfirm":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d"}, requestBody.newPassword) +09:12:49.523 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.523 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.523 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.523 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.524 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.524 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPassword":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPasswordConfirm":"c67181cd-2b77-4ebd-9d7d-9a7165620524"}, {"password":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPassword":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPasswordConfirm":"c67181cd-2b77-4ebd-9d7d-9a7165620524"}, requestBody) +09:12:49.524 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPassword":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPasswordConfirm":"c67181cd-2b77-4ebd-9d7d-9a7165620524"}, {"password":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPassword":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPasswordConfirm":"c67181cd-2b77-4ebd-9d7d-9a7165620524"}, requestBody) +09:12:49.524 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c67181cd-2b77-4ebd-9d7d-9a7165620524", {"password":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPassword":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPasswordConfirm":"c67181cd-2b77-4ebd-9d7d-9a7165620524"}, requestBody.newPasswordConfirm) +09:12:49.524 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "4fad10e8-2bca-41d0-bfb9-a050b1c1f73d", {"password":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPassword":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPasswordConfirm":"c67181cd-2b77-4ebd-9d7d-9a7165620524"}, requestBody.password) +09:12:49.524 [XNIO-1 task-1] b58LhjL4RbCZJxrcCXmoqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c67181cd-2b77-4ebd-9d7d-9a7165620524", {"password":"4fad10e8-2bca-41d0-bfb9-a050b1c1f73d","newPassword":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPasswordConfirm":"c67181cd-2b77-4ebd-9d7d-9a7165620524"}, requestBody.newPassword) +09:12:49.539 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.539 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPassword":"274f1235-294f-4242-b07f-78dd8907c35c","newPasswordConfirm":"274f1235-294f-4242-b07f-78dd8907c35c"}, {"password":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPassword":"274f1235-294f-4242-b07f-78dd8907c35c","newPasswordConfirm":"274f1235-294f-4242-b07f-78dd8907c35c"}, requestBody) +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPassword":"274f1235-294f-4242-b07f-78dd8907c35c","newPasswordConfirm":"274f1235-294f-4242-b07f-78dd8907c35c"}, {"password":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPassword":"274f1235-294f-4242-b07f-78dd8907c35c","newPasswordConfirm":"274f1235-294f-4242-b07f-78dd8907c35c"}, requestBody) +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG com.networknt.schema.FormatValidator debug - validate( "274f1235-294f-4242-b07f-78dd8907c35c", {"password":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPassword":"274f1235-294f-4242-b07f-78dd8907c35c","newPasswordConfirm":"274f1235-294f-4242-b07f-78dd8907c35c"}, requestBody.newPasswordConfirm) +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG com.networknt.schema.FormatValidator debug - validate( "c67181cd-2b77-4ebd-9d7d-9a7165620524", {"password":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPassword":"274f1235-294f-4242-b07f-78dd8907c35c","newPasswordConfirm":"274f1235-294f-4242-b07f-78dd8907c35c"}, requestBody.password) +09:12:49.540 [XNIO-1 task-1] NXV5scZ3QlyxiXkpXkS78g DEBUG com.networknt.schema.FormatValidator debug - validate( "274f1235-294f-4242-b07f-78dd8907c35c", {"password":"c67181cd-2b77-4ebd-9d7d-9a7165620524","newPassword":"274f1235-294f-4242-b07f-78dd8907c35c","newPasswordConfirm":"274f1235-294f-4242-b07f-78dd8907c35c"}, requestBody.newPassword) +09:12:49.557 [XNIO-1 task-1] kKJeQJGlTcqF8cfuVwTFzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.557 [XNIO-1 task-1] kKJeQJGlTcqF8cfuVwTFzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.557 [XNIO-1 task-1] kKJeQJGlTcqF8cfuVwTFzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.557 [XNIO-1 task-1] kKJeQJGlTcqF8cfuVwTFzQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:49.559 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.559 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.559 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.559 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.559 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:49.560 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"274f1235-294f-4242-b07f-78dd8907c35c","newPassword":"c3f2de1d-e4db-4816-8559-69da62679027","newPasswordConfirm":"c3f2de1d-e4db-4816-8559-69da62679027"}, {"password":"274f1235-294f-4242-b07f-78dd8907c35c","newPassword":"c3f2de1d-e4db-4816-8559-69da62679027","newPasswordConfirm":"c3f2de1d-e4db-4816-8559-69da62679027"}, requestBody) +09:12:49.560 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"274f1235-294f-4242-b07f-78dd8907c35c","newPassword":"c3f2de1d-e4db-4816-8559-69da62679027","newPasswordConfirm":"c3f2de1d-e4db-4816-8559-69da62679027"}, {"password":"274f1235-294f-4242-b07f-78dd8907c35c","newPassword":"c3f2de1d-e4db-4816-8559-69da62679027","newPasswordConfirm":"c3f2de1d-e4db-4816-8559-69da62679027"}, requestBody) +09:12:49.560 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c3f2de1d-e4db-4816-8559-69da62679027", {"password":"274f1235-294f-4242-b07f-78dd8907c35c","newPassword":"c3f2de1d-e4db-4816-8559-69da62679027","newPasswordConfirm":"c3f2de1d-e4db-4816-8559-69da62679027"}, requestBody.newPasswordConfirm) +09:12:49.560 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "274f1235-294f-4242-b07f-78dd8907c35c", {"password":"274f1235-294f-4242-b07f-78dd8907c35c","newPassword":"c3f2de1d-e4db-4816-8559-69da62679027","newPasswordConfirm":"c3f2de1d-e4db-4816-8559-69da62679027"}, requestBody.password) +09:12:49.560 [XNIO-1 task-1] ReMyLrmIR4a9d-iPnAgWdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c3f2de1d-e4db-4816-8559-69da62679027", {"password":"274f1235-294f-4242-b07f-78dd8907c35c","newPassword":"c3f2de1d-e4db-4816-8559-69da62679027","newPasswordConfirm":"c3f2de1d-e4db-4816-8559-69da62679027"}, requestBody.newPassword) +09:12:49.574 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8592e7d1-76f5-40f7-abb2-87e6e73bfcd6 +09:12:49.575 [XNIO-1 task-1] U9FZ8UpIRQSkHWppxp8EFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.575 [XNIO-1 task-1] U9FZ8UpIRQSkHWppxp8EFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.575 [XNIO-1 task-1] U9FZ8UpIRQSkHWppxp8EFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.592 [XNIO-1 task-1] 2CHjz9hFTR6xml1jQWgaMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c807f19 +09:12:49.592 [XNIO-1 task-1] 2CHjz9hFTR6xml1jQWgaMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.592 [XNIO-1 task-1] 2CHjz9hFTR6xml1jQWgaMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.592 [XNIO-1 task-1] 2CHjz9hFTR6xml1jQWgaMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c807f19 +09:12:49.597 [XNIO-1 task-1] ZWnRwbBXTJyz1dXNPqKo2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.597 [XNIO-1 task-1] ZWnRwbBXTJyz1dXNPqKo2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.597 [XNIO-1 task-1] ZWnRwbBXTJyz1dXNPqKo2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.610 [XNIO-1 task-1] 4rBpb-xERYq91V--OBxHfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.611 [XNIO-1 task-1] 4rBpb-xERYq91V--OBxHfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.611 [XNIO-1 task-1] 4rBpb-xERYq91V--OBxHfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.616 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:68bf9e84 +09:12:49.617 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:68bf9e84 +09:12:49.622 [XNIO-1 task-1] pDTGoAF9QRKIkNlqAB3zng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.622 [XNIO-1 task-1] pDTGoAF9QRKIkNlqAB3zng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.622 [XNIO-1 task-1] pDTGoAF9QRKIkNlqAB3zng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.633 [XNIO-1 task-1] QDkgA-IZRQOkWJ_FPyRRIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.633 [XNIO-1 task-1] QDkgA-IZRQOkWJ_FPyRRIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.633 [XNIO-1 task-1] QDkgA-IZRQOkWJ_FPyRRIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.634 [XNIO-1 task-1] QDkgA-IZRQOkWJ_FPyRRIQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:49.635 [XNIO-1 task-1] 9vTBXRwBQtOY6BLSxV8exQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.635 [XNIO-1 task-1] 9vTBXRwBQtOY6BLSxV8exQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.635 [XNIO-1 task-1] 9vTBXRwBQtOY6BLSxV8exQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.646 [XNIO-1 task-1] AcBxeV2rSJ6tcFy5eEUwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c807f19 +09:12:49.646 [XNIO-1 task-1] AcBxeV2rSJ6tcFy5eEUwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.646 [XNIO-1 task-1] AcBxeV2rSJ6tcFy5eEUwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.646 [XNIO-1 task-1] AcBxeV2rSJ6tcFy5eEUwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c807f19 +09:12:49.649 [XNIO-1 task-1] LAbaxEVPShuaKoQzneR7Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.649 [XNIO-1 task-1] LAbaxEVPShuaKoQzneR7Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.650 [XNIO-1 task-1] LAbaxEVPShuaKoQzneR7Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.662 [XNIO-1 task-1] puJtk8ZKQmiSwrCmgG_6Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.662 [XNIO-1 task-1] puJtk8ZKQmiSwrCmgG_6Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.662 [XNIO-1 task-1] puJtk8ZKQmiSwrCmgG_6Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.674 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ce5f624 +09:12:49.675 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ce5f624 +09:12:49.678 [XNIO-1 task-1] SEmJKUaxTuWMueRwqfZaZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/799ed7e0, base path is set to: null +09:12:49.678 [XNIO-1 task-1] SEmJKUaxTuWMueRwqfZaZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.678 [XNIO-1 task-1] SEmJKUaxTuWMueRwqfZaZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.679 [XNIO-1 task-1] SEmJKUaxTuWMueRwqfZaZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/799ed7e0, base path is set to: null +09:12:49.679 [XNIO-1 task-1] SEmJKUaxTuWMueRwqfZaZA DEBUG com.networknt.schema.TypeValidator debug - validate( "799ed7e0", "799ed7e0", userId) +09:12:49.679 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:189f46ee-dad5-4a60-bd8d-c971328b5fc5 +09:12:49.691 [XNIO-1 task-1] W1K0nM6DR_61m0avWN4MxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.691 [XNIO-1 task-1] W1K0nM6DR_61m0avWN4MxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.691 [XNIO-1 task-1] W1K0nM6DR_61m0avWN4MxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.691 [XNIO-1 task-1] W1K0nM6DR_61m0avWN4MxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.696 [XNIO-1 task-1] d1YkcHuTRJaqHlTFS4DCfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.696 [XNIO-1 task-1] d1YkcHuTRJaqHlTFS4DCfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.696 [XNIO-1 task-1] d1YkcHuTRJaqHlTFS4DCfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.708 [XNIO-1 task-1] -OEv_rQkTJawxxtmGRdKHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/799ed7e0 +09:12:49.708 [XNIO-1 task-1] -OEv_rQkTJawxxtmGRdKHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.708 [XNIO-1 task-1] -OEv_rQkTJawxxtmGRdKHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.708 [XNIO-1 task-1] -OEv_rQkTJawxxtmGRdKHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/799ed7e0 +09:12:49.715 [XNIO-1 task-1] qyX8uNQFRfeejGN7kRXECg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.716 [XNIO-1 task-1] qyX8uNQFRfeejGN7kRXECg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.716 [XNIO-1 task-1] qyX8uNQFRfeejGN7kRXECg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.733 [XNIO-1 task-1] vOzqPvzrS3a7g6aOuvexWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.733 [XNIO-1 task-1] vOzqPvzrS3a7g6aOuvexWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.733 [XNIO-1 task-1] vOzqPvzrS3a7g6aOuvexWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.740 [XNIO-1 task-1] 4k6YC7TLQ9G6zu3BKsbJXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.741 [XNIO-1 task-1] 4k6YC7TLQ9G6zu3BKsbJXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.741 [XNIO-1 task-1] 4k6YC7TLQ9G6zu3BKsbJXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.753 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/506a8086, base path is set to: null +09:12:49.753 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.753 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.753 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:49.753 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/506a8086, base path is set to: null +09:12:49.753 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "506a8086", "506a8086", userId) +09:12:49.754 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b024cd7b-f902-4f04-92d7-e6b6aae13533","newPassword":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPasswordConfirm":"db115be4-aba2-40be-a2fe-d7eefa5b4b73"}, {"password":"b024cd7b-f902-4f04-92d7-e6b6aae13533","newPassword":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPasswordConfirm":"db115be4-aba2-40be-a2fe-d7eefa5b4b73"}, requestBody) +09:12:49.754 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "db115be4-aba2-40be-a2fe-d7eefa5b4b73", {"password":"b024cd7b-f902-4f04-92d7-e6b6aae13533","newPassword":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPasswordConfirm":"db115be4-aba2-40be-a2fe-d7eefa5b4b73"}, requestBody.newPasswordConfirm) +09:12:49.754 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "b024cd7b-f902-4f04-92d7-e6b6aae13533", {"password":"b024cd7b-f902-4f04-92d7-e6b6aae13533","newPassword":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPasswordConfirm":"db115be4-aba2-40be-a2fe-d7eefa5b4b73"}, requestBody.password) +09:12:49.754 [XNIO-1 task-1] V9lg-vRwTAuWXQTj066qeg DEBUG com.networknt.schema.TypeValidator debug - validate( "db115be4-aba2-40be-a2fe-d7eefa5b4b73", {"password":"b024cd7b-f902-4f04-92d7-e6b6aae13533","newPassword":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPasswordConfirm":"db115be4-aba2-40be-a2fe-d7eefa5b4b73"}, requestBody.newPassword) +09:12:49.770 [XNIO-1 task-1] Xht93nsOTAGXJmGl1HdvuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.770 [XNIO-1 task-1] Xht93nsOTAGXJmGl1HdvuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.770 [XNIO-1 task-1] Xht93nsOTAGXJmGl1HdvuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.770 [XNIO-1 task-1] Xht93nsOTAGXJmGl1HdvuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.774 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/506a8086, base path is set to: null +09:12:49.774 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.774 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.774 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:49.774 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/506a8086, base path is set to: null +09:12:49.775 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG com.networknt.schema.TypeValidator debug - validate( "506a8086", "506a8086", userId) +09:12:49.775 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPassword":"95203386-bfd1-4ed5-addd-19ed4af570ba","newPasswordConfirm":"95203386-bfd1-4ed5-addd-19ed4af570ba"}, {"password":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPassword":"95203386-bfd1-4ed5-addd-19ed4af570ba","newPasswordConfirm":"95203386-bfd1-4ed5-addd-19ed4af570ba"}, requestBody) +09:12:49.775 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG com.networknt.schema.TypeValidator debug - validate( "95203386-bfd1-4ed5-addd-19ed4af570ba", {"password":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPassword":"95203386-bfd1-4ed5-addd-19ed4af570ba","newPasswordConfirm":"95203386-bfd1-4ed5-addd-19ed4af570ba"}, requestBody.newPasswordConfirm) +09:12:49.775 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG com.networknt.schema.TypeValidator debug - validate( "db115be4-aba2-40be-a2fe-d7eefa5b4b73", {"password":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPassword":"95203386-bfd1-4ed5-addd-19ed4af570ba","newPasswordConfirm":"95203386-bfd1-4ed5-addd-19ed4af570ba"}, requestBody.password) +09:12:49.775 [XNIO-1 task-1] t98_FdQ0TFKNgemSIMEhTA DEBUG com.networknt.schema.TypeValidator debug - validate( "95203386-bfd1-4ed5-addd-19ed4af570ba", {"password":"db115be4-aba2-40be-a2fe-d7eefa5b4b73","newPassword":"95203386-bfd1-4ed5-addd-19ed4af570ba","newPasswordConfirm":"95203386-bfd1-4ed5-addd-19ed4af570ba"}, requestBody.newPassword) +09:12:49.792 [XNIO-1 task-1] 6-83X1b7TuKGDTH0H1jkQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/506a8086, base path is set to: null +09:12:49.793 [XNIO-1 task-1] 6-83X1b7TuKGDTH0H1jkQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.793 [XNIO-1 task-1] 6-83X1b7TuKGDTH0H1jkQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.793 [XNIO-1 task-1] 6-83X1b7TuKGDTH0H1jkQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/506a8086, base path is set to: null +09:12:49.793 [XNIO-1 task-1] 6-83X1b7TuKGDTH0H1jkQw DEBUG com.networknt.schema.TypeValidator debug - validate( "506a8086", "506a8086", userId) +09:12:49.800 [XNIO-1 task-1] YPBtaOmMTfKU1ejQNn5LhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.800 [XNIO-1 task-1] YPBtaOmMTfKU1ejQNn5LhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.800 [XNIO-1 task-1] YPBtaOmMTfKU1ejQNn5LhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.800 [XNIO-1 task-1] YPBtaOmMTfKU1ejQNn5LhA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.805 [XNIO-1 task-1] C7XkRSYiR4y3ihKviJ4oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.805 [XNIO-1 task-1] C7XkRSYiR4y3ihKviJ4oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.805 [XNIO-1 task-1] C7XkRSYiR4y3ihKviJ4oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.810 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ef89fc11 +09:12:49.810 [XNIO-1 task-1] FcH8c3XdToaOSryhRbCpqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.810 [XNIO-1 task-1] FcH8c3XdToaOSryhRbCpqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.811 [XNIO-1 task-1] FcH8c3XdToaOSryhRbCpqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.826 [XNIO-1 task-1] 0tzMgPu1SZaxgj2j3_qfEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ae7acf8b +09:12:49.826 [XNIO-1 task-1] 0tzMgPu1SZaxgj2j3_qfEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.826 [XNIO-1 task-1] 0tzMgPu1SZaxgj2j3_qfEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.827 [XNIO-1 task-1] 0tzMgPu1SZaxgj2j3_qfEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ae7acf8b +09:12:49.833 [XNIO-1 task-1] GuW1gZruRkWzeljWTSf46Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.833 [XNIO-1 task-1] GuW1gZruRkWzeljWTSf46Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.834 [XNIO-1 task-1] GuW1gZruRkWzeljWTSf46Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.834 [XNIO-1 task-1] GuW1gZruRkWzeljWTSf46Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/da257e32, base path is set to: null +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/da257e32, base path is set to: null +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da257e32", "da257e32", userId) +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"42719bdd-15d1-4855-b092-775537e1e483","newPassword":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPasswordConfirm":"9059eb9e-39db-4225-b3a8-5e785961d45e"}, {"password":"42719bdd-15d1-4855-b092-775537e1e483","newPassword":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPasswordConfirm":"9059eb9e-39db-4225-b3a8-5e785961d45e"}, requestBody) +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9059eb9e-39db-4225-b3a8-5e785961d45e", {"password":"42719bdd-15d1-4855-b092-775537e1e483","newPassword":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPasswordConfirm":"9059eb9e-39db-4225-b3a8-5e785961d45e"}, requestBody.newPasswordConfirm) +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "42719bdd-15d1-4855-b092-775537e1e483", {"password":"42719bdd-15d1-4855-b092-775537e1e483","newPassword":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPasswordConfirm":"9059eb9e-39db-4225-b3a8-5e785961d45e"}, requestBody.password) +09:12:49.837 [XNIO-1 task-1] UcKi8dgYSxibtXsj4-f9QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9059eb9e-39db-4225-b3a8-5e785961d45e", {"password":"42719bdd-15d1-4855-b092-775537e1e483","newPassword":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPasswordConfirm":"9059eb9e-39db-4225-b3a8-5e785961d45e"}, requestBody.newPassword) +09:12:49.840 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:49.843 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b1916c95-0716-48ea-a23b-e2d7dacc752d +09:12:49.852 [XNIO-1 task-1] uTP32wAQRiWivqet2_DUkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.852 [XNIO-1 task-1] uTP32wAQRiWivqet2_DUkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.852 [XNIO-1 task-1] uTP32wAQRiWivqet2_DUkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.867 [XNIO-1 task-1] 1-xjHU9KQqWowtZWpqEC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/68bf9e84 +09:12:49.867 [XNIO-1 task-1] 1-xjHU9KQqWowtZWpqEC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.867 [XNIO-1 task-1] 1-xjHU9KQqWowtZWpqEC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.867 [XNIO-1 task-1] 1-xjHU9KQqWowtZWpqEC0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/68bf9e84 +09:12:49.868 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:68bf9e84 +09:12:49.874 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/da257e32 +09:12:49.874 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.874 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.874 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.874 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/da257e32 +09:12:49.874 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPassword":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPasswordConfirm":"fe67611c-b22a-43e4-af60-c4dcb3703d03"}, {"password":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPassword":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPasswordConfirm":"fe67611c-b22a-43e4-af60-c4dcb3703d03"}, requestBody) +09:12:49.874 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPassword":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPasswordConfirm":"fe67611c-b22a-43e4-af60-c4dcb3703d03"}, {"password":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPassword":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPasswordConfirm":"fe67611c-b22a-43e4-af60-c4dcb3703d03"}, requestBody) +09:12:49.875 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG com.networknt.schema.FormatValidator debug - validate( "fe67611c-b22a-43e4-af60-c4dcb3703d03", {"password":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPassword":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPasswordConfirm":"fe67611c-b22a-43e4-af60-c4dcb3703d03"}, requestBody.newPasswordConfirm) +09:12:49.875 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG com.networknt.schema.FormatValidator debug - validate( "9059eb9e-39db-4225-b3a8-5e785961d45e", {"password":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPassword":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPasswordConfirm":"fe67611c-b22a-43e4-af60-c4dcb3703d03"}, requestBody.password) +09:12:49.875 [XNIO-1 task-1] 1pYGyAJ0RZaK4ZpM2R5rnw DEBUG com.networknt.schema.FormatValidator debug - validate( "fe67611c-b22a-43e4-af60-c4dcb3703d03", {"password":"9059eb9e-39db-4225-b3a8-5e785961d45e","newPassword":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPasswordConfirm":"fe67611c-b22a-43e4-af60-c4dcb3703d03"}, requestBody.newPassword) +09:12:49.890 [XNIO-1 task-1] fKpb-aDXQTuGAgn9lJrbQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.890 [XNIO-1 task-1] fKpb-aDXQTuGAgn9lJrbQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.890 [XNIO-1 task-1] fKpb-aDXQTuGAgn9lJrbQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.901 [XNIO-1 task-1] 3dk67TbvQbCr6CUejBLbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/da257e32 +09:12:49.901 [XNIO-1 task-1] 3dk67TbvQbCr6CUejBLbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.901 [XNIO-1 task-1] 3dk67TbvQbCr6CUejBLbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.901 [XNIO-1 task-1] 3dk67TbvQbCr6CUejBLbqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/da257e32 +09:12:49.903 [XNIO-1 task-1] WtUrcxZuSrGn-7fZIl-ROA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.904 [XNIO-1 task-1] WtUrcxZuSrGn-7fZIl-ROA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.904 [XNIO-1 task-1] WtUrcxZuSrGn-7fZIl-ROA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.921 [XNIO-1 task-1] lg3xy4LST2qS03wqEzwQpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5041cea0, base path is set to: null +09:12:49.921 [XNIO-1 task-1] lg3xy4LST2qS03wqEzwQpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.921 [XNIO-1 task-1] lg3xy4LST2qS03wqEzwQpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.922 [XNIO-1 task-1] lg3xy4LST2qS03wqEzwQpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5041cea0, base path is set to: null +09:12:49.922 [XNIO-1 task-1] lg3xy4LST2qS03wqEzwQpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5041cea0", "5041cea0", userId) +09:12:49.926 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/da257e32 +09:12:49.926 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.926 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.926 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:49.926 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/da257e32 +09:12:49.927 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPassword":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPasswordConfirm":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b"}, {"password":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPassword":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPasswordConfirm":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b"}, requestBody) +09:12:49.927 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPassword":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPasswordConfirm":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b"}, {"password":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPassword":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPasswordConfirm":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b"}, requestBody) +09:12:49.927 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG com.networknt.schema.FormatValidator debug - validate( "f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b", {"password":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPassword":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPasswordConfirm":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b"}, requestBody.newPasswordConfirm) +09:12:49.927 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG com.networknt.schema.FormatValidator debug - validate( "fe67611c-b22a-43e4-af60-c4dcb3703d03", {"password":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPassword":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPasswordConfirm":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b"}, requestBody.password) +09:12:49.927 [XNIO-1 task-1] 0Nqpeh4TSiaP8z50OKYnGw DEBUG com.networknt.schema.FormatValidator debug - validate( "f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b", {"password":"fe67611c-b22a-43e4-af60-c4dcb3703d03","newPassword":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPasswordConfirm":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b"}, requestBody.newPassword) +09:12:49.942 [XNIO-1 task-1] VrSivTM4R7KCLcGI1RGXZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4fc3df71 +09:12:49.942 [XNIO-1 task-1] VrSivTM4R7KCLcGI1RGXZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.942 [XNIO-1 task-1] VrSivTM4R7KCLcGI1RGXZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:49.943 [XNIO-1 task-1] VrSivTM4R7KCLcGI1RGXZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4fc3df71 +09:12:49.948 [XNIO-1 task-1] D_-pjZatS6qoBxpz1qLK5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5041cea0, base path is set to: null +09:12:49.948 [XNIO-1 task-1] D_-pjZatS6qoBxpz1qLK5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.948 [XNIO-1 task-1] D_-pjZatS6qoBxpz1qLK5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:49.949 [XNIO-1 task-1] D_-pjZatS6qoBxpz1qLK5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5041cea0, base path is set to: null +09:12:49.949 [XNIO-1 task-1] D_-pjZatS6qoBxpz1qLK5w DEBUG com.networknt.schema.TypeValidator debug - validate( "5041cea0", "5041cea0", userId) +09:12:49.961 [XNIO-1 task-1] jaWSAPQXRyGOM64XwiVUkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.961 [XNIO-1 task-1] jaWSAPQXRyGOM64XwiVUkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.962 [XNIO-1 task-1] jaWSAPQXRyGOM64XwiVUkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.967 [XNIO-1 task-1] RtGcWelLRs2qB7PKqW98Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.967 [XNIO-1 task-1] RtGcWelLRs2qB7PKqW98Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.967 [XNIO-1 task-1] RtGcWelLRs2qB7PKqW98Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.967 [XNIO-1 task-1] RtGcWelLRs2qB7PKqW98Zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:49.973 [XNIO-1 task-1] 5Ry76V8-Q7uY-fd7FWT1SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.973 [XNIO-1 task-1] 5Ry76V8-Q7uY-fd7FWT1SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.973 [XNIO-1 task-1] 5Ry76V8-Q7uY-fd7FWT1SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:49.983 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3f22f319 +09:12:49.990 [XNIO-1 task-1] DI72vTb9T2uWKw5yhP-Lnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:49.990 [XNIO-1 task-1] DI72vTb9T2uWKw5yhP-Lnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:49.990 [XNIO-1 task-1] DI72vTb9T2uWKw5yhP-Lnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.002 [XNIO-1 task-1] 17n-vpKlRiebsGm3LL4tUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da257e32, base path is set to: null +09:12:50.002 [XNIO-1 task-1] 17n-vpKlRiebsGm3LL4tUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.002 [XNIO-1 task-1] 17n-vpKlRiebsGm3LL4tUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.003 [XNIO-1 task-1] 17n-vpKlRiebsGm3LL4tUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da257e32, base path is set to: null +09:12:50.003 [XNIO-1 task-1] 17n-vpKlRiebsGm3LL4tUA DEBUG com.networknt.schema.TypeValidator debug - validate( "da257e32", "da257e32", userId) +09:12:50.006 [XNIO-1 task-1] z62MIb9-Qt-q4VqTamesww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.007 [XNIO-1 task-1] z62MIb9-Qt-q4VqTamesww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.007 [XNIO-1 task-1] z62MIb9-Qt-q4VqTamesww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.016 [XNIO-1 task-1] k3N_8bUdQU2MxfxgvUUr6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.016 [XNIO-1 task-1] k3N_8bUdQU2MxfxgvUUr6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.016 [XNIO-1 task-1] k3N_8bUdQU2MxfxgvUUr6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.029 [XNIO-1 task-1] xQkAp8WQR4Kph6LEszTn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c807f19 +09:12:50.029 [XNIO-1 task-1] xQkAp8WQR4Kph6LEszTn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.029 [XNIO-1 task-1] xQkAp8WQR4Kph6LEszTn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.030 [XNIO-1 task-1] xQkAp8WQR4Kph6LEszTn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c807f19 +09:12:50.035 [XNIO-1 task-1] rgCPl2XKRb6ebJoYORbNDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3f22f319, base path is set to: null +09:12:50.035 [XNIO-1 task-1] rgCPl2XKRb6ebJoYORbNDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.035 [XNIO-1 task-1] rgCPl2XKRb6ebJoYORbNDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.035 [XNIO-1 task-1] rgCPl2XKRb6ebJoYORbNDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3f22f319, base path is set to: null +09:12:50.035 [XNIO-1 task-1] rgCPl2XKRb6ebJoYORbNDg DEBUG com.networknt.schema.TypeValidator debug - validate( "3f22f319", "3f22f319", userId) +09:12:50.037 [XNIO-1 task-1] H87S55xESVu5rSPzV3x0tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.037 [XNIO-1 task-1] H87S55xESVu5rSPzV3x0tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.037 [XNIO-1 task-1] H87S55xESVu5rSPzV3x0tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.038 [XNIO-1 task-1] H87S55xESVu5rSPzV3x0tw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.043 [XNIO-1 task-1] ExDGXemGRAevriQqxcVq8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.043 [XNIO-1 task-1] ExDGXemGRAevriQqxcVq8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.043 [XNIO-1 task-1] ExDGXemGRAevriQqxcVq8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.053 [XNIO-1 task-1] uySa1p6kQzKjtOvvV23D_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.053 [XNIO-1 task-1] uySa1p6kQzKjtOvvV23D_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.053 [XNIO-1 task-1] uySa1p6kQzKjtOvvV23D_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.054 [XNIO-1 task-1] uySa1p6kQzKjtOvvV23D_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:50.057 [XNIO-1 task-1] _O1hVNZcS8uGSKkKxIYLvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.057 [XNIO-1 task-1] _O1hVNZcS8uGSKkKxIYLvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.057 [XNIO-1 task-1] _O1hVNZcS8uGSKkKxIYLvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.064 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c93b2e94 +09:12:50.065 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c93b2e94 +09:12:50.073 [XNIO-1 task-1] Okopj7IBRpm2yUlZC0rBTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.073 [XNIO-1 task-1] Okopj7IBRpm2yUlZC0rBTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.073 [XNIO-1 task-1] Okopj7IBRpm2yUlZC0rBTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.074 [XNIO-1 task-1] Okopj7IBRpm2yUlZC0rBTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:50.077 [XNIO-1 task-1] U3F8CpJhSIGvDUjKsIL8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3f22f319 +09:12:50.077 [XNIO-1 task-1] U3F8CpJhSIGvDUjKsIL8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.077 [XNIO-1 task-1] U3F8CpJhSIGvDUjKsIL8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.077 [XNIO-1 task-1] U3F8CpJhSIGvDUjKsIL8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3f22f319 +09:12:50.078 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3f22f319 +09:12:50.085 [XNIO-1 task-1] D9HqPeu1RmuvbUrwxH4Y1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c93b2e94 +09:12:50.085 [XNIO-1 task-1] D9HqPeu1RmuvbUrwxH4Y1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.085 [XNIO-1 task-1] D9HqPeu1RmuvbUrwxH4Y1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.085 [XNIO-1 task-1] D9HqPeu1RmuvbUrwxH4Y1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c93b2e94 +09:12:50.085 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c93b2e94 +09:12:50.094 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b2787831 +09:12:50.094 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.094 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.094 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:50.094 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b2787831 +09:12:50.095 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e0eac782-2b90-4884-bac3-2519eac7c51c","newPassword":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPasswordConfirm":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1"}, {"password":"e0eac782-2b90-4884-bac3-2519eac7c51c","newPassword":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPasswordConfirm":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1"}, requestBody) +09:12:50.095 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e0eac782-2b90-4884-bac3-2519eac7c51c","newPassword":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPasswordConfirm":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1"}, {"password":"e0eac782-2b90-4884-bac3-2519eac7c51c","newPassword":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPasswordConfirm":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1"}, requestBody) +09:12:50.095 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG com.networknt.schema.FormatValidator debug - validate( "df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1", {"password":"e0eac782-2b90-4884-bac3-2519eac7c51c","newPassword":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPasswordConfirm":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1"}, requestBody.newPasswordConfirm) +09:12:50.095 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG com.networknt.schema.FormatValidator debug - validate( "e0eac782-2b90-4884-bac3-2519eac7c51c", {"password":"e0eac782-2b90-4884-bac3-2519eac7c51c","newPassword":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPasswordConfirm":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1"}, requestBody.password) +09:12:50.095 [XNIO-1 task-1] hsW67AsgSROIjg3Zwz8qEA DEBUG com.networknt.schema.FormatValidator debug - validate( "df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1", {"password":"e0eac782-2b90-4884-bac3-2519eac7c51c","newPassword":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPasswordConfirm":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1"}, requestBody.newPassword) +09:12:50.113 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b2787831 +09:12:50.113 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.113 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.114 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:50.114 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b2787831 +09:12:50.114 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPassword":"47483768-dec8-4cd5-9d5e-3d718a0e5252","newPasswordConfirm":"47483768-dec8-4cd5-9d5e-3d718a0e5252"}, {"password":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPassword":"47483768-dec8-4cd5-9d5e-3d718a0e5252","newPasswordConfirm":"47483768-dec8-4cd5-9d5e-3d718a0e5252"}, requestBody) +09:12:50.114 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPassword":"47483768-dec8-4cd5-9d5e-3d718a0e5252","newPasswordConfirm":"47483768-dec8-4cd5-9d5e-3d718a0e5252"}, {"password":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPassword":"47483768-dec8-4cd5-9d5e-3d718a0e5252","newPasswordConfirm":"47483768-dec8-4cd5-9d5e-3d718a0e5252"}, requestBody) +09:12:50.114 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG com.networknt.schema.FormatValidator debug - validate( "47483768-dec8-4cd5-9d5e-3d718a0e5252", {"password":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPassword":"47483768-dec8-4cd5-9d5e-3d718a0e5252","newPasswordConfirm":"47483768-dec8-4cd5-9d5e-3d718a0e5252"}, requestBody.newPasswordConfirm) +09:12:50.114 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG com.networknt.schema.FormatValidator debug - validate( "df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1", {"password":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPassword":"47483768-dec8-4cd5-9d5e-3d718a0e5252","newPasswordConfirm":"47483768-dec8-4cd5-9d5e-3d718a0e5252"}, requestBody.password) +09:12:50.114 [XNIO-1 task-1] l7yttyOIQ-uGhzsqmXf4WA DEBUG com.networknt.schema.FormatValidator debug - validate( "47483768-dec8-4cd5-9d5e-3d718a0e5252", {"password":"df6aa2f7-b5fd-428f-90b7-b47d0d3ccdb1","newPassword":"47483768-dec8-4cd5-9d5e-3d718a0e5252","newPasswordConfirm":"47483768-dec8-4cd5-9d5e-3d718a0e5252"}, requestBody.newPassword) +09:12:50.132 [XNIO-1 task-1] dExhfw9MR1ut780uMlY1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.132 [XNIO-1 task-1] dExhfw9MR1ut780uMlY1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.132 [XNIO-1 task-1] dExhfw9MR1ut780uMlY1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.138 [XNIO-1 task-1] DFI5Cya4TAWSQtC90O-7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c46de553 +09:12:50.138 [XNIO-1 task-1] DFI5Cya4TAWSQtC90O-7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.138 [XNIO-1 task-1] DFI5Cya4TAWSQtC90O-7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.138 [XNIO-1 task-1] DFI5Cya4TAWSQtC90O-7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c46de553 +09:12:50.141 [XNIO-1 task-1] gKQu6esJSi6mGPD63r0itQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.142 [XNIO-1 task-1] gKQu6esJSi6mGPD63r0itQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.142 [XNIO-1 task-1] gKQu6esJSi6mGPD63r0itQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.149 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ef89fc11 +09:12:50.150 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ef89fc11 +09:12:50.150 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:81ca6517 +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c46de553 +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c46de553 +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"47b4899d-9c99-409c-b964-39ae709f698e","newPassword":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPasswordConfirm":"13e4568a-a718-49b6-b65c-0e98107ddef9"}, {"password":"47b4899d-9c99-409c-b964-39ae709f698e","newPassword":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPasswordConfirm":"13e4568a-a718-49b6-b65c-0e98107ddef9"}, requestBody) +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"47b4899d-9c99-409c-b964-39ae709f698e","newPassword":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPasswordConfirm":"13e4568a-a718-49b6-b65c-0e98107ddef9"}, {"password":"47b4899d-9c99-409c-b964-39ae709f698e","newPassword":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPasswordConfirm":"13e4568a-a718-49b6-b65c-0e98107ddef9"}, requestBody) +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "13e4568a-a718-49b6-b65c-0e98107ddef9", {"password":"47b4899d-9c99-409c-b964-39ae709f698e","newPassword":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPasswordConfirm":"13e4568a-a718-49b6-b65c-0e98107ddef9"}, requestBody.newPasswordConfirm) +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "47b4899d-9c99-409c-b964-39ae709f698e", {"password":"47b4899d-9c99-409c-b964-39ae709f698e","newPassword":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPasswordConfirm":"13e4568a-a718-49b6-b65c-0e98107ddef9"}, requestBody.password) +09:12:50.158 [XNIO-1 task-1] MCy1aOU0Tv6N1TgY8dCUtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "13e4568a-a718-49b6-b65c-0e98107ddef9", {"password":"47b4899d-9c99-409c-b964-39ae709f698e","newPassword":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPasswordConfirm":"13e4568a-a718-49b6-b65c-0e98107ddef9"}, requestBody.newPassword) +09:12:50.179 [XNIO-1 task-1] 8vunkFLvStyh7xoBOqFhhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c46de553 +09:12:50.179 [XNIO-1 task-1] 8vunkFLvStyh7xoBOqFhhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.179 [XNIO-1 task-1] 8vunkFLvStyh7xoBOqFhhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.179 [XNIO-1 task-1] 8vunkFLvStyh7xoBOqFhhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c46de553 +09:12:50.195 [XNIO-1 task-1] NR_kPa3SRGG5ZQM2I9SV2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.195 [XNIO-1 task-1] NR_kPa3SRGG5ZQM2I9SV2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.195 [XNIO-1 task-1] NR_kPa3SRGG5ZQM2I9SV2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.195 [XNIO-1 task-1] NR_kPa3SRGG5ZQM2I9SV2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:50.199 [XNIO-1 task-1] g-RatN5US6aSAMLUmRCoyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.199 [XNIO-1 task-1] g-RatN5US6aSAMLUmRCoyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.199 [XNIO-1 task-1] g-RatN5US6aSAMLUmRCoyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.199 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5680bbe7 +09:12:50.200 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5680bbe7 +09:12:50.206 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9ce5f624 +09:12:50.206 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2ce0152c-4fed-448c-954a-5a4c45929958 +09:12:50.210 [XNIO-1 task-1] aa1UJ0VzRIGk4QYczBjJXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.210 [XNIO-1 task-1] aa1UJ0VzRIGk4QYczBjJXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.210 [XNIO-1 task-1] aa1UJ0VzRIGk4QYczBjJXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.210 [XNIO-1 task-1] aa1UJ0VzRIGk4QYczBjJXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.215 [XNIO-1 task-1] rhVqlPRcRrGJoiysAPlBGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c46de553, base path is set to: null +09:12:50.215 [XNIO-1 task-1] rhVqlPRcRrGJoiysAPlBGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.216 [XNIO-1 task-1] rhVqlPRcRrGJoiysAPlBGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.216 [XNIO-1 task-1] rhVqlPRcRrGJoiysAPlBGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c46de553, base path is set to: null +09:12:50.216 [XNIO-1 task-1] rhVqlPRcRrGJoiysAPlBGA DEBUG com.networknt.schema.TypeValidator debug - validate( "c46de553", "c46de553", userId) +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c46de553 +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c46de553 +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPassword":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641","newPasswordConfirm":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641"}, {"password":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPassword":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641","newPasswordConfirm":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641"}, requestBody) +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPassword":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641","newPasswordConfirm":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641"}, {"password":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPassword":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641","newPasswordConfirm":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641"}, requestBody) +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG com.networknt.schema.FormatValidator debug - validate( "83a8c14b-db23-48f0-b0a9-f2a3cfad2641", {"password":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPassword":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641","newPasswordConfirm":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641"}, requestBody.newPasswordConfirm) +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG com.networknt.schema.FormatValidator debug - validate( "13e4568a-a718-49b6-b65c-0e98107ddef9", {"password":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPassword":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641","newPasswordConfirm":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641"}, requestBody.password) +09:12:50.220 [XNIO-1 task-1] Cb6iCPZ2Scmj1j6EV8rGvw DEBUG com.networknt.schema.FormatValidator debug - validate( "83a8c14b-db23-48f0-b0a9-f2a3cfad2641", {"password":"13e4568a-a718-49b6-b65c-0e98107ddef9","newPassword":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641","newPasswordConfirm":"83a8c14b-db23-48f0-b0a9-f2a3cfad2641"}, requestBody.newPassword) +09:12:50.240 [XNIO-1 task-1] Vdc2AR-PT9yFUI41uvriyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c46de553 +09:12:50.240 [XNIO-1 task-1] Vdc2AR-PT9yFUI41uvriyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.241 [XNIO-1 task-1] Vdc2AR-PT9yFUI41uvriyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.241 [XNIO-1 task-1] Vdc2AR-PT9yFUI41uvriyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c46de553 +09:12:50.243 [XNIO-1 task-1] pjreicplQf-sRnCqvoY-Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.243 [XNIO-1 task-1] pjreicplQf-sRnCqvoY-Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.243 [XNIO-1 task-1] pjreicplQf-sRnCqvoY-Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.243 [XNIO-1 task-1] pjreicplQf-sRnCqvoY-Aw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:50.245 [XNIO-1 task-1] d-QDeSMhQp-q3nxHj9ZgPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c46de553, base path is set to: null +09:12:50.245 [XNIO-1 task-1] d-QDeSMhQp-q3nxHj9ZgPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.245 [XNIO-1 task-1] d-QDeSMhQp-q3nxHj9ZgPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.245 [XNIO-1 task-1] d-QDeSMhQp-q3nxHj9ZgPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c46de553, base path is set to: null +09:12:50.245 [XNIO-1 task-1] d-QDeSMhQp-q3nxHj9ZgPA DEBUG com.networknt.schema.TypeValidator debug - validate( "c46de553", "c46de553", userId) +09:12:50.250 [XNIO-1 task-1] tFSdGH4LSzifi58XHpm4xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.250 [XNIO-1 task-1] tFSdGH4LSzifi58XHpm4xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.250 [XNIO-1 task-1] tFSdGH4LSzifi58XHpm4xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.275 [XNIO-1 task-1] qJEXSP1ySZCdvJ3PyEMtmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5c6e6713 +09:12:50.275 [XNIO-1 task-1] qJEXSP1ySZCdvJ3PyEMtmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.275 [XNIO-1 task-1] qJEXSP1ySZCdvJ3PyEMtmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.275 [XNIO-1 task-1] qJEXSP1ySZCdvJ3PyEMtmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5c6e6713 +09:12:50.279 [XNIO-1 task-1] sOQIofHASoynsA8ZPtq_FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/496b1ffc, base path is set to: null +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:50.279 [XNIO-1 task-1] sOQIofHASoynsA8ZPtq_FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.279 [XNIO-1 task-1] sOQIofHASoynsA8ZPtq_FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/496b1ffc + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:50.281 [XNIO-1 task-1] yB9nFvDzTNWm4zwYcucczg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.281 [XNIO-1 task-1] yB9nFvDzTNWm4zwYcucczg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.282 [XNIO-1 task-1] yB9nFvDzTNWm4zwYcucczg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.282 [XNIO-1 task-1] yB9nFvDzTNWm4zwYcucczg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:50.283 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5c6e6713, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +09:12:50.283 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:12:50.283 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:50.283 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5c6e6713 + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +09:12:50.284 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f5cf6c61-6e0b-46bf-917c-49573d58419f","newPassword":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPasswordConfirm":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9"}, {"password":"f5cf6c61-6e0b-46bf-917c-49573d58419f","newPassword":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPasswordConfirm":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9"}, requestBody) +09:12:50.284 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f5cf6c61-6e0b-46bf-917c-49573d58419f","newPassword":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPasswordConfirm":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9"}, {"password":"f5cf6c61-6e0b-46bf-917c-49573d58419f","newPassword":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPasswordConfirm":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9"}, requestBody) + +09:12:50.284 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG com.networknt.schema.TypeValidator debug - validate( "deadfc7d-660d-49c7-bdd3-2a7ec36730a9", {"password":"f5cf6c61-6e0b-46bf-917c-49573d58419f","newPassword":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPasswordConfirm":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9"}, requestBody.newPasswordConfirm) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +09:12:50.284 [XNIO-1 task-1] wj3BL2PFRy-e3ot-MGXeiA DEBUG com.networknt.schema.FormatValidator debug - validate( "deadfc7d-660d-49c7-bdd3-2a7ec36730a9", {"password":"f5cf6c61-6e0b-46bf-917c-49573d58419f","newPassword":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPasswordConfirm":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9"}, requestBody.newPassword) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:50.299 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1065ff7b-ee46-4334-9d80-6da0e1344c6e +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +09:12:50.300 [XNIO-1 task-1] O1abQQxcQ2-uCwPf9Y-kng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:50.312 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:50.320 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:50.325 [XNIO-1 task-1] f4Jzs5JWRTCeCU7adFdV7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/496b1ffc +09:12:50.325 [XNIO-1 task-1] f4Jzs5JWRTCeCU7adFdV7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.326 [XNIO-1 task-1] f4Jzs5JWRTCeCU7adFdV7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.326 [XNIO-1 task-1] f4Jzs5JWRTCeCU7adFdV7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/496b1ffc +09:12:50.373 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/da257e32, base path is set to: null +09:12:50.373 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.373 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.373 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:50.373 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/da257e32, base path is set to: null +09:12:50.373 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG com.networknt.schema.TypeValidator debug - validate( "da257e32", "da257e32", userId) +09:12:50.374 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPassword":"baf48086-d6e8-44c2-945e-1249c1147f3d","newPasswordConfirm":"baf48086-d6e8-44c2-945e-1249c1147f3d"}, {"password":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPassword":"baf48086-d6e8-44c2-945e-1249c1147f3d","newPasswordConfirm":"baf48086-d6e8-44c2-945e-1249c1147f3d"}, requestBody) +09:12:50.374 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG com.networknt.schema.TypeValidator debug - validate( "baf48086-d6e8-44c2-945e-1249c1147f3d", {"password":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPassword":"baf48086-d6e8-44c2-945e-1249c1147f3d","newPasswordConfirm":"baf48086-d6e8-44c2-945e-1249c1147f3d"}, requestBody.newPasswordConfirm) +09:12:50.374 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG com.networknt.schema.TypeValidator debug - validate( "f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b", {"password":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPassword":"baf48086-d6e8-44c2-945e-1249c1147f3d","newPasswordConfirm":"baf48086-d6e8-44c2-945e-1249c1147f3d"}, requestBody.password) +09:12:50.374 [XNIO-1 task-1] SBzQzs2uQYeocFsjY9Q4IA DEBUG com.networknt.schema.TypeValidator debug - validate( "baf48086-d6e8-44c2-945e-1249c1147f3d", {"password":"f1d9f9a0-4a65-4d16-b7f2-e1a89c29e71b","newPassword":"baf48086-d6e8-44c2-945e-1249c1147f3d","newPasswordConfirm":"baf48086-d6e8-44c2-945e-1249c1147f3d"}, requestBody.newPassword) +09:12:50.393 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5c6e6713, base path is set to: null +09:12:50.393 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.393 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.393 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:50.393 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5c6e6713, base path is set to: null +09:12:50.394 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG com.networknt.schema.TypeValidator debug - validate( "5c6e6713", "5c6e6713", userId) +09:12:50.394 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPassword":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPasswordConfirm":"6bcd6a86-28d3-406b-90c7-5c0534e6476e"}, {"password":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPassword":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPasswordConfirm":"6bcd6a86-28d3-406b-90c7-5c0534e6476e"}, requestBody) +09:12:50.394 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG com.networknt.schema.TypeValidator debug - validate( "6bcd6a86-28d3-406b-90c7-5c0534e6476e", {"password":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPassword":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPasswordConfirm":"6bcd6a86-28d3-406b-90c7-5c0534e6476e"}, requestBody.newPasswordConfirm) +09:12:50.394 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG com.networknt.schema.TypeValidator debug - validate( "deadfc7d-660d-49c7-bdd3-2a7ec36730a9", {"password":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPassword":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPasswordConfirm":"6bcd6a86-28d3-406b-90c7-5c0534e6476e"}, requestBody.password) +09:12:50.394 [XNIO-1 task-1] rhgeprYpTlK8bBuXcSvI2g DEBUG com.networknt.schema.TypeValidator debug - validate( "6bcd6a86-28d3-406b-90c7-5c0534e6476e", {"password":"deadfc7d-660d-49c7-bdd3-2a7ec36730a9","newPassword":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPasswordConfirm":"6bcd6a86-28d3-406b-90c7-5c0534e6476e"}, requestBody.newPassword) +09:12:50.412 [XNIO-1 task-1] W7iyZPv5QK-fp-xALdNdhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ca0ba275, base path is set to: null +09:12:50.412 [XNIO-1 task-1] W7iyZPv5QK-fp-xALdNdhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.412 [XNIO-1 task-1] W7iyZPv5QK-fp-xALdNdhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.412 [XNIO-1 task-1] W7iyZPv5QK-fp-xALdNdhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ca0ba275, base path is set to: null +09:12:50.412 [XNIO-1 task-1] W7iyZPv5QK-fp-xALdNdhg DEBUG com.networknt.schema.TypeValidator debug - validate( "ca0ba275", "ca0ba275", userId) +09:12:50.413 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ce5f624 +09:12:50.423 [XNIO-1 task-1] XL0Ja_ZzTR-PppYRFajqaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/da257e32 +09:12:50.423 [XNIO-1 task-1] XL0Ja_ZzTR-PppYRFajqaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.423 [XNIO-1 task-1] XL0Ja_ZzTR-PppYRFajqaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.423 [XNIO-1 task-1] XL0Ja_ZzTR-PppYRFajqaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/da257e32 +09:12:50.429 [XNIO-1 task-1] IcqR8hTETeiS6xKyjLZfPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.429 [XNIO-1 task-1] IcqR8hTETeiS6xKyjLZfPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.429 [XNIO-1 task-1] IcqR8hTETeiS6xKyjLZfPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.436 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5680bbe7 +09:12:50.470 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5c6e6713, base path is set to: null +09:12:50.470 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.470 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.470 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:50.471 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5c6e6713, base path is set to: null +09:12:50.471 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG com.networknt.schema.TypeValidator debug - validate( "5c6e6713", "5c6e6713", userId) +09:12:50.471 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPassword":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437","newPasswordConfirm":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437"}, {"password":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPassword":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437","newPasswordConfirm":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437"}, requestBody) +09:12:50.471 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG com.networknt.schema.TypeValidator debug - validate( "4cada5b7-b708-4e7f-b27a-2ac8b3ce0437", {"password":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPassword":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437","newPasswordConfirm":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437"}, requestBody.newPasswordConfirm) +09:12:50.471 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG com.networknt.schema.TypeValidator debug - validate( "6bcd6a86-28d3-406b-90c7-5c0534e6476e", {"password":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPassword":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437","newPasswordConfirm":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437"}, requestBody.password) +09:12:50.471 [XNIO-1 task-1] UFHREwpwRx-qrARfXk9h6A DEBUG com.networknt.schema.TypeValidator debug - validate( "4cada5b7-b708-4e7f-b27a-2ac8b3ce0437", {"password":"6bcd6a86-28d3-406b-90c7-5c0534e6476e","newPassword":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437","newPasswordConfirm":"4cada5b7-b708-4e7f-b27a-2ac8b3ce0437"}, requestBody.newPassword) +09:12:50.491 [XNIO-1 task-1] 87ZS29i_R8umsGTRf9pkTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.491 [XNIO-1 task-1] 87ZS29i_R8umsGTRf9pkTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.491 [XNIO-1 task-1] 87ZS29i_R8umsGTRf9pkTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.492 [XNIO-1 task-1] 87ZS29i_R8umsGTRf9pkTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:50.523 [XNIO-1 task-1] zRMZ8UTHRJy_UOjIzhv4yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.523 [XNIO-1 task-1] zRMZ8UTHRJy_UOjIzhv4yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.523 [XNIO-1 task-1] zRMZ8UTHRJy_UOjIzhv4yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.574 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7e5fd7df-cdba-4489-9707-075203a36ce5 +09:12:50.576 [XNIO-1 task-1] YMrIwcZyQ9ihA1qvqEI6sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.576 [XNIO-1 task-1] YMrIwcZyQ9ihA1qvqEI6sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.576 [XNIO-1 task-1] YMrIwcZyQ9ihA1qvqEI6sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.584 [XNIO-1 task-1] _iHSBKhfSDC-xzsM4isjvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da257e32, base path is set to: null +09:12:50.585 [XNIO-1 task-1] _iHSBKhfSDC-xzsM4isjvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.585 [XNIO-1 task-1] _iHSBKhfSDC-xzsM4isjvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.585 [XNIO-1 task-1] _iHSBKhfSDC-xzsM4isjvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/da257e32, base path is set to: null +09:12:50.585 [XNIO-1 task-1] _iHSBKhfSDC-xzsM4isjvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da257e32", "da257e32", userId) +09:12:50.592 [XNIO-1 task-1] lq490_M1TRuS4QOEZzs8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7be90f48 +09:12:50.592 [XNIO-1 task-1] lq490_M1TRuS4QOEZzs8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.592 [XNIO-1 task-1] lq490_M1TRuS4QOEZzs8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.592 [XNIO-1 task-1] lq490_M1TRuS4QOEZzs8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7be90f48 +09:12:50.601 [XNIO-1 task-1] yAFb4DnrQzK6m5pAJ4abCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.602 [XNIO-1 task-1] yAFb4DnrQzK6m5pAJ4abCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.602 [XNIO-1 task-1] yAFb4DnrQzK6m5pAJ4abCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.607 [XNIO-1 task-1] i2re9oBEQL6ELupk2b-8tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.607 [XNIO-1 task-1] i2re9oBEQL6ELupk2b-8tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.608 [XNIO-1 task-1] i2re9oBEQL6ELupk2b-8tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.608 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:81ca6517 +09:12:50.612 [XNIO-1 task-1] LlJE1nsfQUqXKccAmzeIrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.612 [XNIO-1 task-1] LlJE1nsfQUqXKccAmzeIrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.612 [XNIO-1 task-1] LlJE1nsfQUqXKccAmzeIrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.618 [XNIO-1 task-1] 0IWxbGD6SKedSxACYLUQrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ccbbd51f, base path is set to: null +09:12:50.618 [XNIO-1 task-1] 0IWxbGD6SKedSxACYLUQrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.618 [XNIO-1 task-1] 0IWxbGD6SKedSxACYLUQrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.618 [XNIO-1 task-1] 0IWxbGD6SKedSxACYLUQrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ccbbd51f, base path is set to: null +09:12:50.618 [XNIO-1 task-1] 0IWxbGD6SKedSxACYLUQrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ccbbd51f", "ccbbd51f", userId) +09:12:50.621 [XNIO-1 task-1] -RKum_UBRymqravppyA95w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.621 [XNIO-1 task-1] -RKum_UBRymqravppyA95w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.622 [XNIO-1 task-1] -RKum_UBRymqravppyA95w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.627 [XNIO-1 task-1] oIDC9R2JSSOij_0yOu7pgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.628 [XNIO-1 task-1] oIDC9R2JSSOij_0yOu7pgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.628 [XNIO-1 task-1] oIDC9R2JSSOij_0yOu7pgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.633 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/65dd6f68 +09:12:50.633 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.633 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.633 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:50.634 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/65dd6f68 +09:12:50.634 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"586ff68e-adee-4bdf-90ba-5a4db09d9a02","newPassword":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc","newPasswordConfirm":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc"}, {"password":"586ff68e-adee-4bdf-90ba-5a4db09d9a02","newPassword":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc","newPasswordConfirm":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc"}, requestBody) +09:12:50.634 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"586ff68e-adee-4bdf-90ba-5a4db09d9a02","newPassword":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc","newPasswordConfirm":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc"}, {"password":"586ff68e-adee-4bdf-90ba-5a4db09d9a02","newPassword":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc","newPasswordConfirm":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc"}, requestBody) +09:12:50.634 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG com.networknt.schema.FormatValidator debug - validate( "6c1f73b0-1598-4d0b-8466-f6abd740ffcc", {"password":"586ff68e-adee-4bdf-90ba-5a4db09d9a02","newPassword":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc","newPasswordConfirm":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc"}, requestBody.newPasswordConfirm) +09:12:50.634 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG com.networknt.schema.FormatValidator debug - validate( "586ff68e-adee-4bdf-90ba-5a4db09d9a02", {"password":"586ff68e-adee-4bdf-90ba-5a4db09d9a02","newPassword":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc","newPasswordConfirm":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc"}, requestBody.password) +09:12:50.634 [XNIO-1 task-1] sHKUO470QjqSQ4UJdoBowg DEBUG com.networknt.schema.FormatValidator debug - validate( "6c1f73b0-1598-4d0b-8466-f6abd740ffcc", {"password":"586ff68e-adee-4bdf-90ba-5a4db09d9a02","newPassword":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc","newPasswordConfirm":"6c1f73b0-1598-4d0b-8466-f6abd740ffcc"}, requestBody.newPassword) +09:12:50.647 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6a1d5488-ca1b-4dca-a01b-d57f3bc18e1e +09:12:50.653 [XNIO-1 task-1] NCRkzp6hRw6KHEsloJgIjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.654 [XNIO-1 task-1] NCRkzp6hRw6KHEsloJgIjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.654 [XNIO-1 task-1] NCRkzp6hRw6KHEsloJgIjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.672 [XNIO-1 task-1] nXzA33e3QIaz6KWoh0elKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.672 [XNIO-1 task-1] nXzA33e3QIaz6KWoh0elKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.672 [XNIO-1 task-1] nXzA33e3QIaz6KWoh0elKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.685 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9ce5f624 +09:12:50.691 [XNIO-1 task-1] Plse5RMvRh6yegkUaQXIqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ccbbd51f, base path is set to: null +09:12:50.691 [XNIO-1 task-1] Plse5RMvRh6yegkUaQXIqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.691 [XNIO-1 task-1] Plse5RMvRh6yegkUaQXIqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.691 [XNIO-1 task-1] Plse5RMvRh6yegkUaQXIqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ccbbd51f, base path is set to: null +09:12:50.692 [XNIO-1 task-1] Plse5RMvRh6yegkUaQXIqg DEBUG com.networknt.schema.TypeValidator debug - validate( "ccbbd51f", "ccbbd51f", userId) +09:12:50.700 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2c807f19, base path is set to: null +09:12:50.700 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.700 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.700 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:50.701 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2c807f19, base path is set to: null +09:12:50.701 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG com.networknt.schema.TypeValidator debug - validate( "2c807f19", "2c807f19", userId) +09:12:50.701 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c3f2de1d-e4db-4816-8559-69da62679027","newPassword":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPasswordConfirm":"cb838f30-6e4e-47f5-b684-abe4d5a362de"}, {"password":"c3f2de1d-e4db-4816-8559-69da62679027","newPassword":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPasswordConfirm":"cb838f30-6e4e-47f5-b684-abe4d5a362de"}, requestBody) +09:12:50.701 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb838f30-6e4e-47f5-b684-abe4d5a362de", {"password":"c3f2de1d-e4db-4816-8559-69da62679027","newPassword":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPasswordConfirm":"cb838f30-6e4e-47f5-b684-abe4d5a362de"}, requestBody.newPasswordConfirm) +09:12:50.701 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG com.networknt.schema.TypeValidator debug - validate( "c3f2de1d-e4db-4816-8559-69da62679027", {"password":"c3f2de1d-e4db-4816-8559-69da62679027","newPassword":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPasswordConfirm":"cb838f30-6e4e-47f5-b684-abe4d5a362de"}, requestBody.password) +09:12:50.701 [XNIO-1 task-1] la5tZt_iR4-IrGAMtF7OOg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb838f30-6e4e-47f5-b684-abe4d5a362de", {"password":"c3f2de1d-e4db-4816-8559-69da62679027","newPassword":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPasswordConfirm":"cb838f30-6e4e-47f5-b684-abe4d5a362de"}, requestBody.newPassword) +09:12:50.702 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:38671464 +09:12:50.721 [XNIO-1 task-1] vXh8QoVdRSS-FvmzAJn9Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.722 [XNIO-1 task-1] vXh8QoVdRSS-FvmzAJn9Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.722 [XNIO-1 task-1] vXh8QoVdRSS-FvmzAJn9Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.722 [XNIO-1 task-1] vXh8QoVdRSS-FvmzAJn9Ow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:50.725 [XNIO-1 task-1] Ai0vFwt2QBiaR8QKAx1GYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.725 [XNIO-1 task-1] Ai0vFwt2QBiaR8QKAx1GYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.725 [XNIO-1 task-1] Ai0vFwt2QBiaR8QKAx1GYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.725 [XNIO-1 task-1] Ai0vFwt2QBiaR8QKAx1GYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:50.731 [XNIO-1 task-1] 2DGpc3p1RyKXe4mwte_L_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.731 [XNIO-1 task-1] 2DGpc3p1RyKXe4mwte_L_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.731 [XNIO-1 task-1] 2DGpc3p1RyKXe4mwte_L_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.742 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/61198f46, base path is set to: null +09:12:50.742 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.742 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.742 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:50.743 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/61198f46, base path is set to: null +09:12:50.743 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG com.networknt.schema.TypeValidator debug - validate( "61198f46", "61198f46", userId) +09:12:50.743 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2e1028ee-dbef-45d7-8dea-b20483bbcd1c","newPassword":"90267699-743e-4b94-abbd-08e635878840","newPasswordConfirm":"90267699-743e-4b94-abbd-08e635878840"}, {"password":"2e1028ee-dbef-45d7-8dea-b20483bbcd1c","newPassword":"90267699-743e-4b94-abbd-08e635878840","newPasswordConfirm":"90267699-743e-4b94-abbd-08e635878840"}, requestBody) +09:12:50.743 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG com.networknt.schema.TypeValidator debug - validate( "90267699-743e-4b94-abbd-08e635878840", {"password":"2e1028ee-dbef-45d7-8dea-b20483bbcd1c","newPassword":"90267699-743e-4b94-abbd-08e635878840","newPasswordConfirm":"90267699-743e-4b94-abbd-08e635878840"}, requestBody.newPasswordConfirm) +09:12:50.743 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG com.networknt.schema.TypeValidator debug - validate( "2e1028ee-dbef-45d7-8dea-b20483bbcd1c", {"password":"2e1028ee-dbef-45d7-8dea-b20483bbcd1c","newPassword":"90267699-743e-4b94-abbd-08e635878840","newPasswordConfirm":"90267699-743e-4b94-abbd-08e635878840"}, requestBody.password) +09:12:50.743 [XNIO-1 task-1] AlllYXx7QeymvWtuTHKTOg DEBUG com.networknt.schema.TypeValidator debug - validate( "90267699-743e-4b94-abbd-08e635878840", {"password":"2e1028ee-dbef-45d7-8dea-b20483bbcd1c","newPassword":"90267699-743e-4b94-abbd-08e635878840","newPasswordConfirm":"90267699-743e-4b94-abbd-08e635878840"}, requestBody.newPassword) +09:12:50.759 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/61198f46, base path is set to: null +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/61198f46, base path is set to: null +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "61198f46", "61198f46", userId) +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"90267699-743e-4b94-abbd-08e635878840","newPassword":"ade5a2b2-d5fb-4407-af1e-805b350c2da8","newPasswordConfirm":"ade5a2b2-d5fb-4407-af1e-805b350c2da8"}, {"password":"90267699-743e-4b94-abbd-08e635878840","newPassword":"ade5a2b2-d5fb-4407-af1e-805b350c2da8","newPasswordConfirm":"ade5a2b2-d5fb-4407-af1e-805b350c2da8"}, requestBody) +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ade5a2b2-d5fb-4407-af1e-805b350c2da8", {"password":"90267699-743e-4b94-abbd-08e635878840","newPassword":"ade5a2b2-d5fb-4407-af1e-805b350c2da8","newPasswordConfirm":"ade5a2b2-d5fb-4407-af1e-805b350c2da8"}, requestBody.newPasswordConfirm) +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "90267699-743e-4b94-abbd-08e635878840", {"password":"90267699-743e-4b94-abbd-08e635878840","newPassword":"ade5a2b2-d5fb-4407-af1e-805b350c2da8","newPasswordConfirm":"ade5a2b2-d5fb-4407-af1e-805b350c2da8"}, requestBody.password) +09:12:50.760 [XNIO-1 task-1] k-x69YibTtWE8-X-ZQZ_zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ade5a2b2-d5fb-4407-af1e-805b350c2da8", {"password":"90267699-743e-4b94-abbd-08e635878840","newPassword":"ade5a2b2-d5fb-4407-af1e-805b350c2da8","newPasswordConfirm":"ade5a2b2-d5fb-4407-af1e-805b350c2da8"}, requestBody.newPassword) +09:12:50.783 [XNIO-1 task-1] JiB9t00-TquODQVqQnexLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/61198f46, base path is set to: null +09:12:50.784 [XNIO-1 task-1] JiB9t00-TquODQVqQnexLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.784 [XNIO-1 task-1] JiB9t00-TquODQVqQnexLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.784 [XNIO-1 task-1] JiB9t00-TquODQVqQnexLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/61198f46, base path is set to: null +09:12:50.784 [XNIO-1 task-1] JiB9t00-TquODQVqQnexLA DEBUG com.networknt.schema.TypeValidator debug - validate( "61198f46", "61198f46", userId) +09:12:50.788 [XNIO-1 task-1] 2di2CC9XT7qs0NV0mz166w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.788 [XNIO-1 task-1] 2di2CC9XT7qs0NV0mz166w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.788 [XNIO-1 task-1] 2di2CC9XT7qs0NV0mz166w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.806 [XNIO-1 task-1] ZOm6saBeTvipFsblOov0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/61198f46 +09:12:50.806 [XNIO-1 task-1] ZOm6saBeTvipFsblOov0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.806 [XNIO-1 task-1] ZOm6saBeTvipFsblOov0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.806 [XNIO-1 task-1] ZOm6saBeTvipFsblOov0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/61198f46 +09:12:50.807 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2e59d06d-d2d9-4685-b4a0-209a03af9962 +09:12:50.809 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2e59d06d-d2d9-4685-b4a0-209a03af9962 +09:12:50.815 [XNIO-1 task-1] syDVo-fZRw-V6kHqgwWjew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/51c93784 +09:12:50.815 [XNIO-1 task-1] syDVo-fZRw-V6kHqgwWjew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:12:50.815 [XNIO-1 task-1] syDVo-fZRw-V6kHqgwWjew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/51c93784 +09:12:50.815 [XNIO-1 task-1] syDVo-fZRw-V6kHqgwWjew DEBUG com.networknt.schema.TypeValidator debug - validate( "51c93784", "51c93784", userId) +09:12:50.825 [XNIO-1 task-1] JLO2shspRbOjbrV1HA62DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/51c93784, base path is set to: null + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:12:50.825 [XNIO-1 task-1] JLO2shspRbOjbrV1HA62DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/51c93784 +09:12:50.825 [XNIO-1 task-1] JLO2shspRbOjbrV1HA62DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.825 [XNIO-1 task-1] JLO2shspRbOjbrV1HA62DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.825 [XNIO-1 task-1] JLO2shspRbOjbrV1HA62DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:50.825 [XNIO-1 task-1] JLO2shspRbOjbrV1HA62DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.hazelcast.spi.Operation.call(Operation.java:170) +09:12:50.825 [XNIO-1 task-1] JLO2shspRbOjbrV1HA62DA DEBUG com.networknt.schema.TypeValidator debug - validate( "51c93784", "51c93784", userId) +09:12:50.828 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2e59d06d-d2d9-4685-b4a0-209a03af9962 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +09:12:50.831 [XNIO-1 task-1] LTKWIWjQSr2ATfueGALeeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/51c93784, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:50.831 [XNIO-1 task-1] LTKWIWjQSr2ATfueGALeeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +09:12:50.831 [XNIO-1 task-1] LTKWIWjQSr2ATfueGALeeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +09:12:50.832 [XNIO-1 task-1] LTKWIWjQSr2ATfueGALeeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/51c93784 +09:12:50.832 [XNIO-1 task-1] LTKWIWjQSr2ATfueGALeeA DEBUG com.networknt.schema.TypeValidator debug - validate( "51c93784", "51c93784", userId) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:12:50.842 [XNIO-1 task-1] A1d2KwpvQbWBv4t4Z86D2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +09:12:50.842 [XNIO-1 task-1] A1d2KwpvQbWBv4t4Z86D2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +09:12:50.842 [XNIO-1 task-1] A1d2KwpvQbWBv4t4Z86D2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.857 [XNIO-1 task-1] yCXbbkWHStSjlca06eOHyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5be46b8a, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) +09:12:50.857 [XNIO-1 task-1] yCXbbkWHStSjlca06eOHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5be46b8a +09:12:50.857 [XNIO-1 task-1] yCXbbkWHStSjlca06eOHyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.857 [XNIO-1 task-1] yCXbbkWHStSjlca06eOHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +09:12:50.867 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1b8684e5-551f-4992-b769-f505c715331f + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +09:12:50.873 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:715cdd19 + ... 14 more + +Jun 29, 2024 9:12:50 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +09:12:50.886 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1b8684e5-551f-4992-b769-f505c715331f +09:12:50.889 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e137a452 +09:12:50.895 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1b8684e5-551f-4992-b769-f505c715331f +09:12:50.906 [XNIO-1 task-1] Z-zep4WySPGuMOgo_qSW9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.906 [XNIO-1 task-1] Z-zep4WySPGuMOgo_qSW9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.906 [XNIO-1 task-1] Z-zep4WySPGuMOgo_qSW9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.909 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +09:12:50.923 [XNIO-1 task-1] -MSEt84NRTanmms-TLchhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.924 [XNIO-1 task-1] -MSEt84NRTanmms-TLchhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:12:50.924 [XNIO-1 task-1] -MSEt84NRTanmms-TLchhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +09:12:50.924 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:50.931 [XNIO-1 task-1] ZW1SJORsQUuw6-R2t81ZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.931 [XNIO-1 task-1] ZW1SJORsQUuw6-R2t81ZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.931 [XNIO-1 task-1] ZW1SJORsQUuw6-R2t81ZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.932 [XNIO-1 task-1] ZW1SJORsQUuw6-R2t81ZGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +09:12:50.937 [XNIO-1 task-1] 0WwmSSHGQjm7gLq6Ccxq9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.937 [XNIO-1 task-1] 0WwmSSHGQjm7gLq6Ccxq9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +09:12:50.947 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d06da1d9 +09:12:50.947 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.947 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + ... 14 more + +09:12:50.947 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d06da1d9, base path is set to: null +09:12:50.947 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG com.networknt.schema.TypeValidator debug - validate( "d06da1d9", "d06da1d9", userId) +09:12:50.947 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"610615bf-63f8-40fd-93a4-6578400c26ec","newPassword":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPasswordConfirm":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec"}, {"password":"610615bf-63f8-40fd-93a4-6578400c26ec","newPassword":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPasswordConfirm":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec"}, requestBody) +09:12:50.948 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"610615bf-63f8-40fd-93a4-6578400c26ec","newPassword":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPasswordConfirm":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec"}, {"password":"610615bf-63f8-40fd-93a4-6578400c26ec","newPassword":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPasswordConfirm":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec"}, requestBody) +09:12:50.948 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG com.networknt.schema.FormatValidator debug - validate( "5503cbf9-0691-45cb-b9c3-764e4ecec5ec", {"password":"610615bf-63f8-40fd-93a4-6578400c26ec","newPassword":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPasswordConfirm":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec"}, requestBody.newPasswordConfirm) +09:12:50.948 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG com.networknt.schema.FormatValidator debug - validate( "610615bf-63f8-40fd-93a4-6578400c26ec", {"password":"610615bf-63f8-40fd-93a4-6578400c26ec","newPassword":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPasswordConfirm":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec"}, requestBody.password) +09:12:50.948 [XNIO-1 task-1] 3XBAF2i-SqOilZ3DCHSNSw DEBUG com.networknt.schema.FormatValidator debug - validate( "5503cbf9-0691-45cb-b9c3-764e4ecec5ec", {"password":"610615bf-63f8-40fd-93a4-6578400c26ec","newPassword":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPasswordConfirm":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec"}, requestBody.newPassword) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +09:12:50.964 [XNIO-1 task-1] WW_RWx0OQQS73lz1ZIEXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.965 [XNIO-1 task-1] WW_RWx0OQQS73lz1ZIEXLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.965 [XNIO-1 task-1] WW_RWx0OQQS73lz1ZIEXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.965 [XNIO-1 task-1] WW_RWx0OQQS73lz1ZIEXLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:50.967 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22308864-b09a-4525-83f4-a5ce139618d2 +09:12:50.968 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22308864-b09a-4525-83f4-a5ce139618d2 +09:12:50.973 [XNIO-1 task-1] qbRXFzRZSN6eoKfEhrMhew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d06da1d9 +09:12:50.973 [XNIO-1 task-1] qbRXFzRZSN6eoKfEhrMhew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.973 [XNIO-1 task-1] qbRXFzRZSN6eoKfEhrMhew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:50.973 [XNIO-1 task-1] qbRXFzRZSN6eoKfEhrMhew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d06da1d9 +09:12:50.973 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c4d7d6e +09:12:50.974 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c4d7d6e +09:12:50.979 [XNIO-1 task-1] WvrBpHnURTOMT3DwcHDv2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.979 [XNIO-1 task-1] WvrBpHnURTOMT3DwcHDv2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.979 [XNIO-1 task-1] WvrBpHnURTOMT3DwcHDv2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:50.995 [XNIO-1 task-1] s1ZJiBbPRmylzTATU8K-LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:50.995 [XNIO-1 task-1] s1ZJiBbPRmylzTATU8K-LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:50.995 [XNIO-1 task-1] s1ZJiBbPRmylzTATU8K-LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.005 [XNIO-1 task-1] NXmwfCy-TVG6lBgMg-2hBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b2787831, base path is set to: null +09:12:51.005 [XNIO-1 task-1] NXmwfCy-TVG6lBgMg-2hBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.005 [XNIO-1 task-1] NXmwfCy-TVG6lBgMg-2hBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.005 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:38671464 +09:12:51.005 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:38671464 +09:12:51.005 [XNIO-1 task-1] NXmwfCy-TVG6lBgMg-2hBA DEBUG com.networknt.schema.TypeValidator debug - validate( "b2787831", "b2787831", userId) +09:12:51.008 [XNIO-1 task-1] T59HmFROTruHhk5sqjLusg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e137a452, base path is set to: null +09:12:51.009 [XNIO-1 task-1] T59HmFROTruHhk5sqjLusg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.009 [XNIO-1 task-1] T59HmFROTruHhk5sqjLusg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.009 [XNIO-1 task-1] T59HmFROTruHhk5sqjLusg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e137a452, base path is set to: null +09:12:51.009 [XNIO-1 task-1] T59HmFROTruHhk5sqjLusg DEBUG com.networknt.schema.TypeValidator debug - validate( "e137a452", "e137a452", userId) +09:12:51.009 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:51.018 [XNIO-1 task-1] FcAgbSHISwi8dEymFeno6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b2787831 +09:12:51.018 [XNIO-1 task-1] FcAgbSHISwi8dEymFeno6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.018 [XNIO-1 task-1] FcAgbSHISwi8dEymFeno6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.018 [XNIO-1 task-1] FcAgbSHISwi8dEymFeno6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b2787831 +09:12:51.020 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f2928bdc-715a-4359-8845-c13ef1d631be +09:12:51.022 [XNIO-1 task-1] rAJaMCw3SLWMlfg1IQ5C1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.022 [XNIO-1 task-1] rAJaMCw3SLWMlfg1IQ5C1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.022 [XNIO-1 task-1] rAJaMCw3SLWMlfg1IQ5C1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.032 [XNIO-1 task-1] o430HR7-Qkug3jenQ_1WCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.032 [XNIO-1 task-1] o430HR7-Qkug3jenQ_1WCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.032 [XNIO-1 task-1] o430HR7-Qkug3jenQ_1WCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.035 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f2928bdc-715a-4359-8845-c13ef1d631be +09:12:51.041 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7c4d7d6e +09:12:51.046 [XNIO-1 task-1] EBQa5GvuRa6GbZqsE7VrnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.046 [XNIO-1 task-1] EBQa5GvuRa6GbZqsE7VrnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.046 [XNIO-1 task-1] EBQa5GvuRa6GbZqsE7VrnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.063 [XNIO-1 task-1] 8oHsoSDiRGetuBUWFOiifQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b2787831 +09:12:51.063 [XNIO-1 task-1] 8oHsoSDiRGetuBUWFOiifQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.063 [XNIO-1 task-1] 8oHsoSDiRGetuBUWFOiifQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.063 [XNIO-1 task-1] 8oHsoSDiRGetuBUWFOiifQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b2787831 +09:12:51.069 [XNIO-1 task-1] RUGwKJAHT8aCGdAwHU3I0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.069 [XNIO-1 task-1] RUGwKJAHT8aCGdAwHU3I0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.069 [XNIO-1 task-1] RUGwKJAHT8aCGdAwHU3I0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.069 [XNIO-1 task-1] RUGwKJAHT8aCGdAwHU3I0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.075 [XNIO-1 task-1] rieDtZvwRe-pgjK9cLAjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.075 [XNIO-1 task-1] rieDtZvwRe-pgjK9cLAjXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.076 [XNIO-1 task-1] rieDtZvwRe-pgjK9cLAjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.076 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:81ca6517 +09:12:51.081 [XNIO-1 task-1] qtHd-itrRjuJCRytSNVL2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ed6f7189, base path is set to: null +09:12:51.082 [XNIO-1 task-1] qtHd-itrRjuJCRytSNVL2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.082 [XNIO-1 task-1] qtHd-itrRjuJCRytSNVL2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.082 [XNIO-1 task-1] qtHd-itrRjuJCRytSNVL2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ed6f7189, base path is set to: null +09:12:51.083 [XNIO-1 task-1] qtHd-itrRjuJCRytSNVL2g DEBUG com.networknt.schema.TypeValidator debug - validate( "ed6f7189", "ed6f7189", userId) +09:12:51.089 [XNIO-1 task-1] Ze1bjLfZR_KN_tm5q4n-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.089 [XNIO-1 task-1] Ze1bjLfZR_KN_tm5q4n-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.089 [XNIO-1 task-1] Ze1bjLfZR_KN_tm5q4n-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.097 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:af5a9ade +09:12:51.107 [XNIO-1 task-1] 0eSDIUmYTuuR_aOl6hZHPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5be46b8a, base path is set to: null +09:12:51.107 [XNIO-1 task-1] 0eSDIUmYTuuR_aOl6hZHPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.107 [XNIO-1 task-1] 0eSDIUmYTuuR_aOl6hZHPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.107 [XNIO-1 task-1] 0eSDIUmYTuuR_aOl6hZHPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5be46b8a, base path is set to: null +09:12:51.107 [XNIO-1 task-1] 0eSDIUmYTuuR_aOl6hZHPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5be46b8a", "5be46b8a", userId) +09:12:51.116 [XNIO-1 task-1] _NCrEDjPTuGn5oJ7mkBjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.116 [XNIO-1 task-1] _NCrEDjPTuGn5oJ7mkBjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.116 [XNIO-1 task-1] _NCrEDjPTuGn5oJ7mkBjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.116 [XNIO-1 task-1] _NCrEDjPTuGn5oJ7mkBjfg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.122 [XNIO-1 task-1] Enq1584BT6-beKViVvq3Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/17e0d1ee +09:12:51.123 [XNIO-1 task-1] Enq1584BT6-beKViVvq3Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.123 [XNIO-1 task-1] Enq1584BT6-beKViVvq3Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.123 [XNIO-1 task-1] Enq1584BT6-beKViVvq3Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/17e0d1ee +09:12:51.125 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07bfd24c, base path is set to: null +09:12:51.126 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.126 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.126 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:51.126 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07bfd24c, base path is set to: null +09:12:51.126 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "07bfd24c", "07bfd24c", userId) +09:12:51.127 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4265f22d-01ba-4998-99b0-c6bd0e9ad930","newPassword":"994c7132-d7cd-475c-9569-0946c5947ed8","newPasswordConfirm":"994c7132-d7cd-475c-9569-0946c5947ed8"}, {"password":"4265f22d-01ba-4998-99b0-c6bd0e9ad930","newPassword":"994c7132-d7cd-475c-9569-0946c5947ed8","newPasswordConfirm":"994c7132-d7cd-475c-9569-0946c5947ed8"}, requestBody) +09:12:51.127 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "994c7132-d7cd-475c-9569-0946c5947ed8", {"password":"4265f22d-01ba-4998-99b0-c6bd0e9ad930","newPassword":"994c7132-d7cd-475c-9569-0946c5947ed8","newPasswordConfirm":"994c7132-d7cd-475c-9569-0946c5947ed8"}, requestBody.newPasswordConfirm) +09:12:51.127 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4265f22d-01ba-4998-99b0-c6bd0e9ad930", {"password":"4265f22d-01ba-4998-99b0-c6bd0e9ad930","newPassword":"994c7132-d7cd-475c-9569-0946c5947ed8","newPasswordConfirm":"994c7132-d7cd-475c-9569-0946c5947ed8"}, requestBody.password) +09:12:51.127 [XNIO-1 task-1] HuntbhGjS_ywBWsi5DNZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "994c7132-d7cd-475c-9569-0946c5947ed8", {"password":"4265f22d-01ba-4998-99b0-c6bd0e9ad930","newPassword":"994c7132-d7cd-475c-9569-0946c5947ed8","newPasswordConfirm":"994c7132-d7cd-475c-9569-0946c5947ed8"}, requestBody.newPassword) +09:12:51.131 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:839afe8d +09:12:51.131 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:839afe8d +09:12:51.138 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:839afe8d +09:12:51.146 [XNIO-1 task-1] 3DAR2sbWSzyxW54rOePsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.146 [XNIO-1 task-1] 3DAR2sbWSzyxW54rOePsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.146 [XNIO-1 task-1] 3DAR2sbWSzyxW54rOePsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.165 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/81ca6517 +09:12:51.165 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.165 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.165 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:51.165 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/81ca6517 +09:12:51.166 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"15651666-02be-42d3-8987-0da6d6f6b589","newPassword":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b","newPasswordConfirm":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b"}, {"password":"15651666-02be-42d3-8987-0da6d6f6b589","newPassword":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b","newPasswordConfirm":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b"}, requestBody) +09:12:51.167 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"15651666-02be-42d3-8987-0da6d6f6b589","newPassword":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b","newPasswordConfirm":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b"}, {"password":"15651666-02be-42d3-8987-0da6d6f6b589","newPassword":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b","newPasswordConfirm":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b"}, requestBody) +09:12:51.167 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG com.networknt.schema.FormatValidator debug - validate( "efc3dae2-ec2a-487c-a59c-2eed7d088d5b", {"password":"15651666-02be-42d3-8987-0da6d6f6b589","newPassword":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b","newPasswordConfirm":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b"}, requestBody.newPasswordConfirm) +09:12:51.167 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG com.networknt.schema.FormatValidator debug - validate( "15651666-02be-42d3-8987-0da6d6f6b589", {"password":"15651666-02be-42d3-8987-0da6d6f6b589","newPassword":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b","newPasswordConfirm":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b"}, requestBody.password) +09:12:51.167 [XNIO-1 task-1] K-eN63ZFQxeXB-SB-7K7CQ DEBUG com.networknt.schema.FormatValidator debug - validate( "efc3dae2-ec2a-487c-a59c-2eed7d088d5b", {"password":"15651666-02be-42d3-8987-0da6d6f6b589","newPassword":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b","newPasswordConfirm":"efc3dae2-ec2a-487c-a59c-2eed7d088d5b"}, requestBody.newPassword) +09:12:51.181 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:81ca6517 +09:12:51.190 [XNIO-1 task-1] OYtWtEXZT16TsSstKrCk-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.190 [XNIO-1 task-1] OYtWtEXZT16TsSstKrCk-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.190 [XNIO-1 task-1] OYtWtEXZT16TsSstKrCk-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.201 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7fc03c1e +09:12:51.202 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.202 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.202 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:51.202 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7fc03c1e +09:12:51.202 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"341e8ff0-ac2c-477d-acaa-d4d90f2bb511","newPassword":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6","newPasswordConfirm":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6"}, {"password":"341e8ff0-ac2c-477d-acaa-d4d90f2bb511","newPassword":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6","newPasswordConfirm":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6"}, requestBody) +09:12:51.202 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"341e8ff0-ac2c-477d-acaa-d4d90f2bb511","newPassword":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6","newPasswordConfirm":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6"}, {"password":"341e8ff0-ac2c-477d-acaa-d4d90f2bb511","newPassword":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6","newPasswordConfirm":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6"}, requestBody) +09:12:51.203 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG com.networknt.schema.FormatValidator debug - validate( "a40ef5b0-5687-4cd1-be89-533c7e76fbd6", {"password":"341e8ff0-ac2c-477d-acaa-d4d90f2bb511","newPassword":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6","newPasswordConfirm":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6"}, requestBody.newPasswordConfirm) +09:12:51.203 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG com.networknt.schema.FormatValidator debug - validate( "341e8ff0-ac2c-477d-acaa-d4d90f2bb511", {"password":"341e8ff0-ac2c-477d-acaa-d4d90f2bb511","newPassword":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6","newPasswordConfirm":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6"}, requestBody.password) +09:12:51.203 [XNIO-1 task-1] NCeZ_jHfSwS31KccnKTRtg DEBUG com.networknt.schema.FormatValidator debug - validate( "a40ef5b0-5687-4cd1-be89-533c7e76fbd6", {"password":"341e8ff0-ac2c-477d-acaa-d4d90f2bb511","newPassword":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6","newPasswordConfirm":"a40ef5b0-5687-4cd1-be89-533c7e76fbd6"}, requestBody.newPassword) +09:12:51.226 [XNIO-1 task-1] 3zk_XWj0RYGNC_SptUneDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.226 [XNIO-1 task-1] 3zk_XWj0RYGNC_SptUneDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.226 [XNIO-1 task-1] 3zk_XWj0RYGNC_SptUneDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.254 [XNIO-1 task-1] 0pdiUJe_QyOc080CxdDO7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07bfd24c +09:12:51.254 [XNIO-1 task-1] 0pdiUJe_QyOc080CxdDO7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.254 [XNIO-1 task-1] 0pdiUJe_QyOc080CxdDO7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.254 [XNIO-1 task-1] 0pdiUJe_QyOc080CxdDO7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07bfd24c +09:12:51.258 [XNIO-1 task-1] mm6h7kdCT9GVSMmbhrKsjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.258 [XNIO-1 task-1] mm6h7kdCT9GVSMmbhrKsjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.258 [XNIO-1 task-1] mm6h7kdCT9GVSMmbhrKsjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.266 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:04d3adca-b0a6-448e-b471-0fd8aa240307 +09:12:51.276 [XNIO-1 task-1] gsvohR8qTzehLZQx9XS8wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.276 [XNIO-1 task-1] gsvohR8qTzehLZQx9XS8wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.277 [XNIO-1 task-1] gsvohR8qTzehLZQx9XS8wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.277 [XNIO-1 task-1] gsvohR8qTzehLZQx9XS8wg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.277 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:04d3adca-b0a6-448e-b471-0fd8aa240307 +09:12:51.295 [XNIO-1 task-1] Sm_nnl5FTYOIooAOOwtQvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.295 [XNIO-1 task-1] Sm_nnl5FTYOIooAOOwtQvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.296 [XNIO-1 task-1] Sm_nnl5FTYOIooAOOwtQvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.315 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a482697 +09:12:51.315 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.315 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.315 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:51.315 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a482697 +09:12:51.315 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ef8ef44a-c89f-49d7-9878-fd07f54d6a77","newPassword":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPasswordConfirm":"2979e16f-73b7-43a4-a6f7-6390eeabddc7"}, {"password":"ef8ef44a-c89f-49d7-9878-fd07f54d6a77","newPassword":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPasswordConfirm":"2979e16f-73b7-43a4-a6f7-6390eeabddc7"}, requestBody) +09:12:51.316 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ef8ef44a-c89f-49d7-9878-fd07f54d6a77","newPassword":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPasswordConfirm":"2979e16f-73b7-43a4-a6f7-6390eeabddc7"}, {"password":"ef8ef44a-c89f-49d7-9878-fd07f54d6a77","newPassword":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPasswordConfirm":"2979e16f-73b7-43a4-a6f7-6390eeabddc7"}, requestBody) +09:12:51.316 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG com.networknt.schema.FormatValidator debug - validate( "2979e16f-73b7-43a4-a6f7-6390eeabddc7", {"password":"ef8ef44a-c89f-49d7-9878-fd07f54d6a77","newPassword":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPasswordConfirm":"2979e16f-73b7-43a4-a6f7-6390eeabddc7"}, requestBody.newPasswordConfirm) +09:12:51.316 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG com.networknt.schema.FormatValidator debug - validate( "ef8ef44a-c89f-49d7-9878-fd07f54d6a77", {"password":"ef8ef44a-c89f-49d7-9878-fd07f54d6a77","newPassword":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPasswordConfirm":"2979e16f-73b7-43a4-a6f7-6390eeabddc7"}, requestBody.password) +09:12:51.316 [XNIO-1 task-1] UsHIyKSfRMS5zAsxVYtCNg DEBUG com.networknt.schema.FormatValidator debug - validate( "2979e16f-73b7-43a4-a6f7-6390eeabddc7", {"password":"ef8ef44a-c89f-49d7-9878-fd07f54d6a77","newPassword":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPasswordConfirm":"2979e16f-73b7-43a4-a6f7-6390eeabddc7"}, requestBody.newPassword) +09:12:51.334 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:44b9c074-ff72-4323-8e6b-701f915a4a0a +09:12:51.350 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:38671464 +09:12:51.356 [XNIO-1 task-1] FB3TyU_uSISLtWOkJk12HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.356 [XNIO-1 task-1] FB3TyU_uSISLtWOkJk12HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.356 [XNIO-1 task-1] FB3TyU_uSISLtWOkJk12HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.357 [XNIO-1 task-1] FB3TyU_uSISLtWOkJk12HQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:51.363 [XNIO-1 task-1] mHlvjLtuQGaKQD0VAnwW8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.363 [XNIO-1 task-1] mHlvjLtuQGaKQD0VAnwW8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.363 [XNIO-1 task-1] mHlvjLtuQGaKQD0VAnwW8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.364 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:81ca6517 +09:12:51.369 [XNIO-1 task-1] DetvfUShTGKRw7PTu37ISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7fc03c1e +09:12:51.369 [XNIO-1 task-1] DetvfUShTGKRw7PTu37ISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.369 [XNIO-1 task-1] DetvfUShTGKRw7PTu37ISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.369 [XNIO-1 task-1] DetvfUShTGKRw7PTu37ISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7fc03c1e +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07bfd24c, base path is set to: null +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07bfd24c, base path is set to: null +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG com.networknt.schema.TypeValidator debug - validate( "07bfd24c", "07bfd24c", userId) +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"994c7132-d7cd-475c-9569-0946c5947ed8","newPassword":"6b716f40-4e77-4261-9448-8256bf27b9c2","newPasswordConfirm":"6b716f40-4e77-4261-9448-8256bf27b9c2"}, {"password":"994c7132-d7cd-475c-9569-0946c5947ed8","newPassword":"6b716f40-4e77-4261-9448-8256bf27b9c2","newPasswordConfirm":"6b716f40-4e77-4261-9448-8256bf27b9c2"}, requestBody) +09:12:51.375 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b716f40-4e77-4261-9448-8256bf27b9c2", {"password":"994c7132-d7cd-475c-9569-0946c5947ed8","newPassword":"6b716f40-4e77-4261-9448-8256bf27b9c2","newPasswordConfirm":"6b716f40-4e77-4261-9448-8256bf27b9c2"}, requestBody.newPasswordConfirm) +09:12:51.376 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG com.networknt.schema.TypeValidator debug - validate( "994c7132-d7cd-475c-9569-0946c5947ed8", {"password":"994c7132-d7cd-475c-9569-0946c5947ed8","newPassword":"6b716f40-4e77-4261-9448-8256bf27b9c2","newPasswordConfirm":"6b716f40-4e77-4261-9448-8256bf27b9c2"}, requestBody.password) +09:12:51.376 [XNIO-1 task-1] ytG3zS7URHiCZAcZHGyXEA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b716f40-4e77-4261-9448-8256bf27b9c2", {"password":"994c7132-d7cd-475c-9569-0946c5947ed8","newPassword":"6b716f40-4e77-4261-9448-8256bf27b9c2","newPasswordConfirm":"6b716f40-4e77-4261-9448-8256bf27b9c2"}, requestBody.newPassword) +09:12:51.424 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:44b9c074-ff72-4323-8e6b-701f915a4a0a +09:12:51.429 [XNIO-1 task-1] 71ncn0SXRfiPaYo2Q9tglg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.429 [XNIO-1 task-1] 71ncn0SXRfiPaYo2Q9tglg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.430 [XNIO-1 task-1] 71ncn0SXRfiPaYo2Q9tglg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.430 [XNIO-1 task-1] 71ncn0SXRfiPaYo2Q9tglg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.478 [XNIO-1 task-1] UPrT6S5nQW2Q8JNVzN2kjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.478 [XNIO-1 task-1] UPrT6S5nQW2Q8JNVzN2kjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.478 [XNIO-1 task-1] UPrT6S5nQW2Q8JNVzN2kjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.511 [XNIO-1 task-1] FpODTqkEQYS6Y4nzFPZvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.511 [XNIO-1 task-1] FpODTqkEQYS6Y4nzFPZvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.511 [XNIO-1 task-1] FpODTqkEQYS6Y4nzFPZvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.523 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fcd8855c-9f66-477f-8076-90180ff2de0b +09:12:51.542 [XNIO-1 task-1] cuHJtlyRQNCudG9-8i1UyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.542 [XNIO-1 task-1] cuHJtlyRQNCudG9-8i1UyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.542 [XNIO-1 task-1] cuHJtlyRQNCudG9-8i1UyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.543 [XNIO-1 task-1] cuHJtlyRQNCudG9-8i1UyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.552 [XNIO-1 task-1] goRmcy_SSu2OK-lhEY7l9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.553 [XNIO-1 task-1] goRmcy_SSu2OK-lhEY7l9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.553 [XNIO-1 task-1] goRmcy_SSu2OK-lhEY7l9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.553 [XNIO-1 task-1] goRmcy_SSu2OK-lhEY7l9g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:51.560 [XNIO-1 task-1] wiFvhycIRxSC1dheI24-jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.560 [XNIO-1 task-1] wiFvhycIRxSC1dheI24-jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.560 [XNIO-1 task-1] wiFvhycIRxSC1dheI24-jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.571 [XNIO-1 task-1] 1TwcYFQUQ6-yHSWWh6-P2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.572 [XNIO-1 task-1] 1TwcYFQUQ6-yHSWWh6-P2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.572 [XNIO-1 task-1] 1TwcYFQUQ6-yHSWWh6-P2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.591 [XNIO-1 task-1] bIs11RB1TgiBsuTUocxAXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7fc03c1e, base path is set to: null +09:12:51.592 [XNIO-1 task-1] bIs11RB1TgiBsuTUocxAXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.592 [XNIO-1 task-1] bIs11RB1TgiBsuTUocxAXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.592 [XNIO-1 task-1] bIs11RB1TgiBsuTUocxAXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7fc03c1e, base path is set to: null +09:12:51.592 [XNIO-1 task-1] bIs11RB1TgiBsuTUocxAXg DEBUG com.networknt.schema.TypeValidator debug - validate( "7fc03c1e", "7fc03c1e", userId) +09:12:51.600 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/699ec3e0 +09:12:51.601 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.601 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.601 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:51.601 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/699ec3e0 +09:12:51.601 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"486fb2f1-6a92-4ce0-9d7d-91519d4f57f6","newPassword":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96","newPasswordConfirm":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96"}, {"password":"486fb2f1-6a92-4ce0-9d7d-91519d4f57f6","newPassword":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96","newPasswordConfirm":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96"}, requestBody) +09:12:51.601 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"486fb2f1-6a92-4ce0-9d7d-91519d4f57f6","newPassword":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96","newPasswordConfirm":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96"}, {"password":"486fb2f1-6a92-4ce0-9d7d-91519d4f57f6","newPassword":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96","newPasswordConfirm":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96"}, requestBody) +09:12:51.602 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG com.networknt.schema.FormatValidator debug - validate( "2f6b1ba8-6133-449c-b8fc-c9d60f816f96", {"password":"486fb2f1-6a92-4ce0-9d7d-91519d4f57f6","newPassword":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96","newPasswordConfirm":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96"}, requestBody.newPasswordConfirm) +09:12:51.602 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG com.networknt.schema.FormatValidator debug - validate( "486fb2f1-6a92-4ce0-9d7d-91519d4f57f6", {"password":"486fb2f1-6a92-4ce0-9d7d-91519d4f57f6","newPassword":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96","newPasswordConfirm":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96"}, requestBody.password) +09:12:51.602 [XNIO-1 task-1] CbdxjiiuTneBj6nhud-auA DEBUG com.networknt.schema.FormatValidator debug - validate( "2f6b1ba8-6133-449c-b8fc-c9d60f816f96", {"password":"486fb2f1-6a92-4ce0-9d7d-91519d4f57f6","newPassword":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96","newPasswordConfirm":"2f6b1ba8-6133-449c-b8fc-c9d60f816f96"}, requestBody.newPassword) +09:12:51.627 [XNIO-1 task-1] fRUBgUJMQ4Wm_LySq0K0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/699ec3e0 +09:12:51.627 [XNIO-1 task-1] fRUBgUJMQ4Wm_LySq0K0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.627 [XNIO-1 task-1] fRUBgUJMQ4Wm_LySq0K0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.628 [XNIO-1 task-1] fRUBgUJMQ4Wm_LySq0K0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/699ec3e0 +09:12:51.633 [XNIO-1 task-1] 1DkvEP6iSaKnjZBzKeo5qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.633 [XNIO-1 task-1] 1DkvEP6iSaKnjZBzKeo5qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.633 [XNIO-1 task-1] 1DkvEP6iSaKnjZBzKeo5qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.643 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1ee7eae0 +09:12:51.643 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1ee7eae0 +09:12:51.652 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.652 [XNIO-1 task-1] 1f5mpmhrTMG4wB9wmFJGAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/699ec3e0 +09:12:51.652 [XNIO-1 task-1] 1f5mpmhrTMG4wB9wmFJGAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.652 [XNIO-1 task-1] 1f5mpmhrTMG4wB9wmFJGAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.652 [XNIO-1 task-1] 1f5mpmhrTMG4wB9wmFJGAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/699ec3e0 +09:12:51.660 [XNIO-1 task-1] Svg9UWeZQDOE2Oe01IVBZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.660 [XNIO-1 task-1] Svg9UWeZQDOE2Oe01IVBZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.660 [XNIO-1 task-1] Svg9UWeZQDOE2Oe01IVBZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.669 [XNIO-1 task-1] k9U1zyMATUud_p5-Bpnyyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.669 [XNIO-1 task-1] k9U1zyMATUud_p5-Bpnyyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.669 [XNIO-1 task-1] k9U1zyMATUud_p5-Bpnyyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.669 [XNIO-1 task-1] k9U1zyMATUud_p5-Bpnyyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:51.677 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d06da1d9, base path is set to: null +09:12:51.677 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.677 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.677 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:51.677 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d06da1d9, base path is set to: null +09:12:51.678 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d06da1d9", "d06da1d9", userId) +09:12:51.678 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPassword":"99c54b62-3b24-422b-a07a-a3e57c4412c0","newPasswordConfirm":"99c54b62-3b24-422b-a07a-a3e57c4412c0"}, {"password":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPassword":"99c54b62-3b24-422b-a07a-a3e57c4412c0","newPasswordConfirm":"99c54b62-3b24-422b-a07a-a3e57c4412c0"}, requestBody) +09:12:51.678 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG com.networknt.schema.TypeValidator debug - validate( "99c54b62-3b24-422b-a07a-a3e57c4412c0", {"password":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPassword":"99c54b62-3b24-422b-a07a-a3e57c4412c0","newPasswordConfirm":"99c54b62-3b24-422b-a07a-a3e57c4412c0"}, requestBody.newPasswordConfirm) +09:12:51.678 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5503cbf9-0691-45cb-b9c3-764e4ecec5ec", {"password":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPassword":"99c54b62-3b24-422b-a07a-a3e57c4412c0","newPasswordConfirm":"99c54b62-3b24-422b-a07a-a3e57c4412c0"}, requestBody.password) +09:12:51.678 [XNIO-1 task-1] IfxB8TeETtiaZnGdH3undQ DEBUG com.networknt.schema.TypeValidator debug - validate( "99c54b62-3b24-422b-a07a-a3e57c4412c0", {"password":"5503cbf9-0691-45cb-b9c3-764e4ecec5ec","newPassword":"99c54b62-3b24-422b-a07a-a3e57c4412c0","newPasswordConfirm":"99c54b62-3b24-422b-a07a-a3e57c4412c0"}, requestBody.newPassword) +09:12:51.682 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:78821472-253d-4487-a5fc-90ed7e953190 +09:12:51.695 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7182e3c +09:12:51.698 [XNIO-1 task-1] za4RyO57QTOvrO0y8vKVxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d06da1d9, base path is set to: null +09:12:51.698 [XNIO-1 task-1] za4RyO57QTOvrO0y8vKVxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.698 [XNIO-1 task-1] za4RyO57QTOvrO0y8vKVxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.698 [XNIO-1 task-1] za4RyO57QTOvrO0y8vKVxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d06da1d9, base path is set to: null +09:12:51.699 [XNIO-1 task-1] za4RyO57QTOvrO0y8vKVxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d06da1d9", "d06da1d9", userId) +09:12:51.706 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2cf1c11f-266e-4732-91cc-9f40bc45e926 +09:12:51.707 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2cf1c11f-266e-4732-91cc-9f40bc45e926 +09:12:51.707 [XNIO-1 task-1] 3lHEcJZHSf29MEVccqSEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f67173c5 +09:12:51.707 [XNIO-1 task-1] 3lHEcJZHSf29MEVccqSEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.707 [XNIO-1 task-1] 3lHEcJZHSf29MEVccqSEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.707 [XNIO-1 task-1] 3lHEcJZHSf29MEVccqSEjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f67173c5 +09:12:51.716 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f67173c5, base path is set to: null +09:12:51.716 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.716 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.716 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:51.716 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f67173c5, base path is set to: null +09:12:51.717 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG com.networknt.schema.TypeValidator debug - validate( "f67173c5", "f67173c5", userId) +09:12:51.717 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"022b6d53-f800-4c3e-8a48-1edeaafaecda","newPassword":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca","newPasswordConfirm":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca"}, {"password":"022b6d53-f800-4c3e-8a48-1edeaafaecda","newPassword":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca","newPasswordConfirm":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca"}, requestBody) +09:12:51.717 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG com.networknt.schema.TypeValidator debug - validate( "b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca", {"password":"022b6d53-f800-4c3e-8a48-1edeaafaecda","newPassword":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca","newPasswordConfirm":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca"}, requestBody.newPasswordConfirm) +09:12:51.717 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG com.networknt.schema.TypeValidator debug - validate( "022b6d53-f800-4c3e-8a48-1edeaafaecda", {"password":"022b6d53-f800-4c3e-8a48-1edeaafaecda","newPassword":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca","newPasswordConfirm":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca"}, requestBody.password) +09:12:51.717 [XNIO-1 task-1] NbsDd2beShORA5XL-rfO9w DEBUG com.networknt.schema.TypeValidator debug - validate( "b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca", {"password":"022b6d53-f800-4c3e-8a48-1edeaafaecda","newPassword":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca","newPasswordConfirm":"b59a8514-f2e0-4ca6-b2be-fdbb0dda19ca"}, requestBody.newPassword) +09:12:51.738 [XNIO-1 task-1] ImfAsP0BTxSHrLspuCpwtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.739 [XNIO-1 task-1] ImfAsP0BTxSHrLspuCpwtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.739 [XNIO-1 task-1] ImfAsP0BTxSHrLspuCpwtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.762 [XNIO-1 task-1] JhbI1tXWQDqn8E-gruxUYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f67173c5, base path is set to: null +09:12:51.762 [XNIO-1 task-1] JhbI1tXWQDqn8E-gruxUYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.762 [XNIO-1 task-1] JhbI1tXWQDqn8E-gruxUYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.762 [XNIO-1 task-1] JhbI1tXWQDqn8E-gruxUYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f67173c5, base path is set to: null +09:12:51.762 [XNIO-1 task-1] JhbI1tXWQDqn8E-gruxUYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f67173c5", "f67173c5", userId) +09:12:51.769 [XNIO-1 task-1] zOINevBLTCCoJc9O-R-u-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f67173c5 +09:12:51.769 [XNIO-1 task-1] zOINevBLTCCoJc9O-R-u-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.769 [XNIO-1 task-1] zOINevBLTCCoJc9O-R-u-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.769 [XNIO-1 task-1] zOINevBLTCCoJc9O-R-u-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f67173c5 +09:12:51.774 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:38671464 +09:12:51.777 [XNIO-1 task-1] -XNz1zMWRVOprltfQLPldQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.778 [XNIO-1 task-1] -XNz1zMWRVOprltfQLPldQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.778 [XNIO-1 task-1] -XNz1zMWRVOprltfQLPldQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.778 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1ee7eae0 +09:12:51.787 [XNIO-1 task-1] oxyUOmRsSVuQ5ewov-t2og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.787 [XNIO-1 task-1] oxyUOmRsSVuQ5ewov-t2og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.787 [XNIO-1 task-1] oxyUOmRsSVuQ5ewov-t2og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.805 [XNIO-1 task-1] zf9HxPnpTqaru7CLruQ96g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f67173c5, base path is set to: null +09:12:51.805 [XNIO-1 task-1] zf9HxPnpTqaru7CLruQ96g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.805 [XNIO-1 task-1] zf9HxPnpTqaru7CLruQ96g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.805 [XNIO-1 task-1] zf9HxPnpTqaru7CLruQ96g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f67173c5, base path is set to: null +09:12:51.805 [XNIO-1 task-1] zf9HxPnpTqaru7CLruQ96g DEBUG com.networknt.schema.TypeValidator debug - validate( "f67173c5", "f67173c5", userId) +09:12:51.813 [XNIO-1 task-1] 7Ob4sblCQ3qAuwvbV_46Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.813 [XNIO-1 task-1] 7Ob4sblCQ3qAuwvbV_46Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.813 [XNIO-1 task-1] 7Ob4sblCQ3qAuwvbV_46Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.828 [XNIO-1 task-1] Xz2hpkv7R0enmI0kyB458g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e98843d6 +09:12:51.828 [XNIO-1 task-1] Xz2hpkv7R0enmI0kyB458g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.828 [XNIO-1 task-1] Xz2hpkv7R0enmI0kyB458g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.829 [XNIO-1 task-1] Xz2hpkv7R0enmI0kyB458g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e98843d6 +09:12:51.844 [XNIO-1 task-1] T0iaTChuQ-GdQYen_0y6Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.844 [XNIO-1 task-1] T0iaTChuQ-GdQYen_0y6Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.844 [XNIO-1 task-1] T0iaTChuQ-GdQYen_0y6Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.857 [XNIO-1 task-1] Cvq_cC8aSMum3XIvfgnVYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.857 [XNIO-1 task-1] Cvq_cC8aSMum3XIvfgnVYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.857 [XNIO-1 task-1] Cvq_cC8aSMum3XIvfgnVYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.857 [XNIO-1 task-1] Cvq_cC8aSMum3XIvfgnVYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.863 [XNIO-1 task-1] XSW64_UhTwyeDKo7K-gQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/17e0d1ee, base path is set to: null +09:12:51.863 [XNIO-1 task-1] XSW64_UhTwyeDKo7K-gQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.863 [XNIO-1 task-1] XSW64_UhTwyeDKo7K-gQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.863 [XNIO-1 task-1] XSW64_UhTwyeDKo7K-gQ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/17e0d1ee, base path is set to: null +09:12:51.863 [XNIO-1 task-1] XSW64_UhTwyeDKo7K-gQ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "17e0d1ee", "17e0d1ee", userId) +09:12:51.868 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2f6e63da +09:12:51.868 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.868 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:51.868 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:51.868 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2f6e63da +09:12:51.869 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7379b4ac-62b8-4db8-82cc-1570bebc9bd9","newPassword":"7a439550-241c-4759-8867-d511731f8eb8","newPasswordConfirm":"7a439550-241c-4759-8867-d511731f8eb8"}, {"password":"7379b4ac-62b8-4db8-82cc-1570bebc9bd9","newPassword":"7a439550-241c-4759-8867-d511731f8eb8","newPasswordConfirm":"7a439550-241c-4759-8867-d511731f8eb8"}, requestBody) +09:12:51.869 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7379b4ac-62b8-4db8-82cc-1570bebc9bd9","newPassword":"7a439550-241c-4759-8867-d511731f8eb8","newPasswordConfirm":"7a439550-241c-4759-8867-d511731f8eb8"}, {"password":"7379b4ac-62b8-4db8-82cc-1570bebc9bd9","newPassword":"7a439550-241c-4759-8867-d511731f8eb8","newPasswordConfirm":"7a439550-241c-4759-8867-d511731f8eb8"}, requestBody) +09:12:51.869 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG com.networknt.schema.FormatValidator debug - validate( "7a439550-241c-4759-8867-d511731f8eb8", {"password":"7379b4ac-62b8-4db8-82cc-1570bebc9bd9","newPassword":"7a439550-241c-4759-8867-d511731f8eb8","newPasswordConfirm":"7a439550-241c-4759-8867-d511731f8eb8"}, requestBody.newPasswordConfirm) +09:12:51.869 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG com.networknt.schema.FormatValidator debug - validate( "7379b4ac-62b8-4db8-82cc-1570bebc9bd9", {"password":"7379b4ac-62b8-4db8-82cc-1570bebc9bd9","newPassword":"7a439550-241c-4759-8867-d511731f8eb8","newPasswordConfirm":"7a439550-241c-4759-8867-d511731f8eb8"}, requestBody.password) +09:12:51.869 [XNIO-1 task-1] LBEDlXtzR1KLKc8lIl0ASA DEBUG com.networknt.schema.FormatValidator debug - validate( "7a439550-241c-4759-8867-d511731f8eb8", {"password":"7379b4ac-62b8-4db8-82cc-1570bebc9bd9","newPassword":"7a439550-241c-4759-8867-d511731f8eb8","newPasswordConfirm":"7a439550-241c-4759-8867-d511731f8eb8"}, requestBody.newPassword) +09:12:51.890 [XNIO-1 task-2] CpOH2QC4RmezxX7vYDO9PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.890 [XNIO-1 task-2] CpOH2QC4RmezxX7vYDO9PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.890 [XNIO-1 task-2] CpOH2QC4RmezxX7vYDO9PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.898 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:05b2d472 +09:12:51.905 [XNIO-1 task-2] DxuTggEPQ9as2m-uiX5V7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.905 [XNIO-1 task-2] DxuTggEPQ9as2m-uiX5V7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.905 [XNIO-1 task-2] DxuTggEPQ9as2m-uiX5V7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.905 [XNIO-1 task-2] DxuTggEPQ9as2m-uiX5V7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.914 [XNIO-1 task-2] mfbT6uuUT_KW_usgpO-3Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.914 [XNIO-1 task-2] mfbT6uuUT_KW_usgpO-3Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.914 [XNIO-1 task-2] mfbT6uuUT_KW_usgpO-3Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.914 [XNIO-1 task-2] mfbT6uuUT_KW_usgpO-3Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.923 [XNIO-1 task-2] Le4L7EnKSTOfYaP_JkXZvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.924 [XNIO-1 task-2] Le4L7EnKSTOfYaP_JkXZvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.924 [XNIO-1 task-2] Le4L7EnKSTOfYaP_JkXZvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.924 [XNIO-1 task-2] Le4L7EnKSTOfYaP_JkXZvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.929 [XNIO-1 task-2] JsNyEBaHSHWRvNs8_bdEoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.929 [XNIO-1 task-2] JsNyEBaHSHWRvNs8_bdEoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.929 [XNIO-1 task-2] JsNyEBaHSHWRvNs8_bdEoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.940 [XNIO-1 task-2] VrCaG07NQ1i9uBuEdB-UCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.940 [XNIO-1 task-2] VrCaG07NQ1i9uBuEdB-UCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.940 [XNIO-1 task-2] VrCaG07NQ1i9uBuEdB-UCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:51.941 [XNIO-1 task-2] VrCaG07NQ1i9uBuEdB-UCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:51.946 [XNIO-1 task-2] GoI0P-_qSQKcIyz_h28sVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5c6e6713, base path is set to: null +09:12:51.947 [XNIO-1 task-2] GoI0P-_qSQKcIyz_h28sVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:51.947 [XNIO-1 task-2] GoI0P-_qSQKcIyz_h28sVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:51.947 [XNIO-1 task-2] GoI0P-_qSQKcIyz_h28sVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5c6e6713, base path is set to: null +09:12:51.947 [XNIO-1 task-2] GoI0P-_qSQKcIyz_h28sVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c6e6713", "5c6e6713", userId) +09:12:51.951 [XNIO-1 task-2] v68SCC_hT_qfzYZwazoISg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.951 [XNIO-1 task-2] v68SCC_hT_qfzYZwazoISg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.951 [XNIO-1 task-2] v68SCC_hT_qfzYZwazoISg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.952 [XNIO-1 task-2] v68SCC_hT_qfzYZwazoISg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:51.958 [XNIO-1 task-2] Ibfsjd-rTyyJIMw8KNBdaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.958 [XNIO-1 task-2] Ibfsjd-rTyyJIMw8KNBdaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.958 [XNIO-1 task-2] Ibfsjd-rTyyJIMw8KNBdaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.958 [XNIO-1 task-2] Ibfsjd-rTyyJIMw8KNBdaQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:51.960 [XNIO-1 task-2] WuVUrpYHTXmGnWFvLKDDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.961 [XNIO-1 task-2] WuVUrpYHTXmGnWFvLKDDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.961 [XNIO-1 task-2] WuVUrpYHTXmGnWFvLKDDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.970 [XNIO-1 task-2] wO4szltXQSmfcDx0GUMegw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.970 [XNIO-1 task-2] wO4szltXQSmfcDx0GUMegw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.970 [XNIO-1 task-2] wO4szltXQSmfcDx0GUMegw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.980 [XNIO-1 task-2] o8XNxB-wRUOWes6gf9RRBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.980 [XNIO-1 task-2] o8XNxB-wRUOWes6gf9RRBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:51.980 [XNIO-1 task-2] o8XNxB-wRUOWes6gf9RRBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.003 [XNIO-1 task-2] P1_exXkVTxWKEVKwgWSZrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.003 [XNIO-1 task-2] P1_exXkVTxWKEVKwgWSZrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.003 [XNIO-1 task-2] P1_exXkVTxWKEVKwgWSZrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.004 [XNIO-1 task-2] P1_exXkVTxWKEVKwgWSZrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:52.012 [XNIO-1 task-2] USqwgHEfS8Wz8BbWqAepAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ca0ba275 +09:12:52.013 [XNIO-1 task-2] USqwgHEfS8Wz8BbWqAepAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.013 [XNIO-1 task-2] USqwgHEfS8Wz8BbWqAepAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:52.013 [XNIO-1 task-2] USqwgHEfS8Wz8BbWqAepAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ca0ba275 +09:12:52.016 [XNIO-1 task-2] l7g6AW3kT66GJlzLUnOySg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.016 [XNIO-1 task-2] l7g6AW3kT66GJlzLUnOySg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.017 [XNIO-1 task-2] l7g6AW3kT66GJlzLUnOySg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.028 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d1df2362, base path is set to: null +09:12:52.028 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d1df2362, base path is set to: null +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d1df2362", "d1df2362", userId) +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ef908e10-1c7b-4edc-9162-ea1be28ac1d1","newPassword":"74782bf7-c057-4952-ac46-836200f70ceb","newPasswordConfirm":"74782bf7-c057-4952-ac46-836200f70ceb"}, {"password":"ef908e10-1c7b-4edc-9162-ea1be28ac1d1","newPassword":"74782bf7-c057-4952-ac46-836200f70ceb","newPasswordConfirm":"74782bf7-c057-4952-ac46-836200f70ceb"}, requestBody) +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "74782bf7-c057-4952-ac46-836200f70ceb", {"password":"ef908e10-1c7b-4edc-9162-ea1be28ac1d1","newPassword":"74782bf7-c057-4952-ac46-836200f70ceb","newPasswordConfirm":"74782bf7-c057-4952-ac46-836200f70ceb"}, requestBody.newPasswordConfirm) +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ef908e10-1c7b-4edc-9162-ea1be28ac1d1", {"password":"ef908e10-1c7b-4edc-9162-ea1be28ac1d1","newPassword":"74782bf7-c057-4952-ac46-836200f70ceb","newPasswordConfirm":"74782bf7-c057-4952-ac46-836200f70ceb"}, requestBody.password) +09:12:52.029 [XNIO-1 task-2] yQ_w0vGtRc2jh9X4Hr9p-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "74782bf7-c057-4952-ac46-836200f70ceb", {"password":"ef908e10-1c7b-4edc-9162-ea1be28ac1d1","newPassword":"74782bf7-c057-4952-ac46-836200f70ceb","newPasswordConfirm":"74782bf7-c057-4952-ac46-836200f70ceb"}, requestBody.newPassword) +09:12:52.046 [XNIO-1 task-2] W32nQht4QmqwPZuMOXT-Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.047 [XNIO-1 task-2] W32nQht4QmqwPZuMOXT-Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.048 [XNIO-1 task-2] W32nQht4QmqwPZuMOXT-Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.049 [XNIO-1 task-2] W32nQht4QmqwPZuMOXT-Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.059 [XNIO-1 task-2] G2wYTq1aR5ud4KiONkJjEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ca0ba275, base path is set to: null +09:12:52.059 [XNIO-1 task-2] G2wYTq1aR5ud4KiONkJjEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.060 [XNIO-1 task-2] G2wYTq1aR5ud4KiONkJjEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:52.060 [XNIO-1 task-2] G2wYTq1aR5ud4KiONkJjEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ca0ba275, base path is set to: null +09:12:52.060 [XNIO-1 task-2] G2wYTq1aR5ud4KiONkJjEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca0ba275", "ca0ba275", userId) +09:12:52.066 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/db46ef01 +09:12:52.066 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.067 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:52.067 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:52.067 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/db46ef01 +09:12:52.067 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5b27fe03-37f5-46a3-a1ff-6d05dac18734","newPassword":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89","newPasswordConfirm":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89"}, {"password":"5b27fe03-37f5-46a3-a1ff-6d05dac18734","newPassword":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89","newPasswordConfirm":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89"}, requestBody) +09:12:52.068 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5b27fe03-37f5-46a3-a1ff-6d05dac18734","newPassword":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89","newPasswordConfirm":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89"}, {"password":"5b27fe03-37f5-46a3-a1ff-6d05dac18734","newPassword":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89","newPasswordConfirm":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89"}, requestBody) +09:12:52.068 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG com.networknt.schema.FormatValidator debug - validate( "f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89", {"password":"5b27fe03-37f5-46a3-a1ff-6d05dac18734","newPassword":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89","newPasswordConfirm":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89"}, requestBody.newPasswordConfirm) +09:12:52.068 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG com.networknt.schema.FormatValidator debug - validate( "5b27fe03-37f5-46a3-a1ff-6d05dac18734", {"password":"5b27fe03-37f5-46a3-a1ff-6d05dac18734","newPassword":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89","newPasswordConfirm":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89"}, requestBody.password) +09:12:52.068 [XNIO-1 task-2] LDUUVKXpTVWPMkoPYVvwTg DEBUG com.networknt.schema.FormatValidator debug - validate( "f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89", {"password":"5b27fe03-37f5-46a3-a1ff-6d05dac18734","newPassword":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89","newPasswordConfirm":"f0a9e909-4c1b-4d1b-a3ad-27ba4393cd89"}, requestBody.newPassword) +09:12:52.092 [XNIO-1 task-2] TnNNzwJlRgKMm7bkuKeshA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.092 [XNIO-1 task-2] TnNNzwJlRgKMm7bkuKeshA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.092 [XNIO-1 task-2] TnNNzwJlRgKMm7bkuKeshA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.109 [XNIO-1 task-2] jnB34LOwSVeX2sJ2INZ-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.109 [XNIO-1 task-2] jnB34LOwSVeX2sJ2INZ-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.109 [XNIO-1 task-2] jnB34LOwSVeX2sJ2INZ-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.116 [XNIO-1 task-2] qqK1GfVeS_e8_xLp9l-lRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ca0ba275 +09:12:52.116 [XNIO-1 task-2] qqK1GfVeS_e8_xLp9l-lRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.116 [XNIO-1 task-2] qqK1GfVeS_e8_xLp9l-lRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:52.117 [XNIO-1 task-2] qqK1GfVeS_e8_xLp9l-lRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ca0ba275 +09:12:52.122 [XNIO-1 task-2] _omOJGOMS0Cv6vmWuPMrpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.122 [XNIO-1 task-2] _omOJGOMS0Cv6vmWuPMrpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.122 [XNIO-1 task-2] _omOJGOMS0Cv6vmWuPMrpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.122 [XNIO-1 task-2] _omOJGOMS0Cv6vmWuPMrpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:52.127 [XNIO-1 task-2] q1iCbDEsRxKQRl-iQMkYWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.127 [XNIO-1 task-2] q1iCbDEsRxKQRl-iQMkYWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.127 [XNIO-1 task-2] q1iCbDEsRxKQRl-iQMkYWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.127 [XNIO-1 task-2] q1iCbDEsRxKQRl-iQMkYWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:52.131 [XNIO-1 task-2] _9s9FqMJQT2dpu0Ez509zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/81ca6517, base path is set to: null +09:12:52.131 [XNIO-1 task-2] _9s9FqMJQT2dpu0Ez509zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.131 [XNIO-1 task-2] _9s9FqMJQT2dpu0Ez509zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:52.131 [XNIO-1 task-2] _9s9FqMJQT2dpu0Ez509zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/81ca6517, base path is set to: null +09:12:52.132 [XNIO-1 task-2] _9s9FqMJQT2dpu0Ez509zA DEBUG com.networknt.schema.TypeValidator debug - validate( "81ca6517", "81ca6517", userId) +09:12:52.138 [XNIO-1 task-2] V_xrDntERRWNdA6BCmmp7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.138 [XNIO-1 task-2] V_xrDntERRWNdA6BCmmp7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.138 [XNIO-1 task-2] V_xrDntERRWNdA6BCmmp7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.147 [XNIO-1 task-2] d_FHJq0iRkyQ3tB8OI4tgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.147 [XNIO-1 task-2] d_FHJq0iRkyQ3tB8OI4tgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.147 [XNIO-1 task-2] d_FHJq0iRkyQ3tB8OI4tgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.155 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9be1b7b0 +09:12:52.156 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9be1b7b0 +09:12:52.161 [XNIO-1 task-2] v8ytmIBWTli5QreLqzSfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/65dd6f68 +09:12:52.161 [XNIO-1 task-2] v8ytmIBWTli5QreLqzSfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:52.161 [XNIO-1 task-2] v8ytmIBWTli5QreLqzSfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:52.162 [XNIO-1 task-2] v8ytmIBWTli5QreLqzSfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/65dd6f68 +09:12:52.167 [XNIO-1 task-2] 8NO-CjBCRMO_ALTt8SxKGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.167 [XNIO-1 task-2] 8NO-CjBCRMO_ALTt8SxKGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:52.167 [XNIO-1 task-2] 8NO-CjBCRMO_ALTt8SxKGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:52.181 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:78821472-253d-4487-a5fc-90ed7e953190 +09:12:54.430 [XNIO-1 task-2] mHerMIy0QwuTZMxB6sfkJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.430 [XNIO-1 task-2] mHerMIy0QwuTZMxB6sfkJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.430 [XNIO-1 task-2] mHerMIy0QwuTZMxB6sfkJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.430 [XNIO-1 task-2] mHerMIy0QwuTZMxB6sfkJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2f6e63da, base path is set to: null +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2f6e63da, base path is set to: null +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2f6e63da", "2f6e63da", userId) +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7a439550-241c-4759-8867-d511731f8eb8","newPassword":"2e47db60-3520-43a1-8c4c-c5db16431ef0","newPasswordConfirm":"2e47db60-3520-43a1-8c4c-c5db16431ef0"}, {"password":"7a439550-241c-4759-8867-d511731f8eb8","newPassword":"2e47db60-3520-43a1-8c4c-c5db16431ef0","newPasswordConfirm":"2e47db60-3520-43a1-8c4c-c5db16431ef0"}, requestBody) +09:12:54.436 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2e47db60-3520-43a1-8c4c-c5db16431ef0", {"password":"7a439550-241c-4759-8867-d511731f8eb8","newPassword":"2e47db60-3520-43a1-8c4c-c5db16431ef0","newPasswordConfirm":"2e47db60-3520-43a1-8c4c-c5db16431ef0"}, requestBody.newPasswordConfirm) +09:12:54.437 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a439550-241c-4759-8867-d511731f8eb8", {"password":"7a439550-241c-4759-8867-d511731f8eb8","newPassword":"2e47db60-3520-43a1-8c4c-c5db16431ef0","newPasswordConfirm":"2e47db60-3520-43a1-8c4c-c5db16431ef0"}, requestBody.password) +09:12:54.437 [XNIO-1 task-2] W1nQldrnQv6zdQto-wXUhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2e47db60-3520-43a1-8c4c-c5db16431ef0", {"password":"7a439550-241c-4759-8867-d511731f8eb8","newPassword":"2e47db60-3520-43a1-8c4c-c5db16431ef0","newPasswordConfirm":"2e47db60-3520-43a1-8c4c-c5db16431ef0"}, requestBody.newPassword) +09:12:54.455 [XNIO-1 task-2] -O14_jmxTdm7_d1UkdYI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.455 [XNIO-1 task-2] -O14_jmxTdm7_d1UkdYI7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.455 [XNIO-1 task-2] -O14_jmxTdm7_d1UkdYI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.463 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3a482697, base path is set to: null +09:12:54.463 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.463 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:54.463 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:54.463 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3a482697, base path is set to: null +09:12:54.463 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG com.networknt.schema.TypeValidator debug - validate( "3a482697", "3a482697", userId) +09:12:54.464 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPassword":"5b423018-c7ec-4029-9f74-0a1a58b0f945","newPasswordConfirm":"5b423018-c7ec-4029-9f74-0a1a58b0f945"}, {"password":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPassword":"5b423018-c7ec-4029-9f74-0a1a58b0f945","newPasswordConfirm":"5b423018-c7ec-4029-9f74-0a1a58b0f945"}, requestBody) +09:12:54.464 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b423018-c7ec-4029-9f74-0a1a58b0f945", {"password":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPassword":"5b423018-c7ec-4029-9f74-0a1a58b0f945","newPasswordConfirm":"5b423018-c7ec-4029-9f74-0a1a58b0f945"}, requestBody.newPasswordConfirm) +09:12:54.465 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG com.networknt.schema.TypeValidator debug - validate( "2979e16f-73b7-43a4-a6f7-6390eeabddc7", {"password":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPassword":"5b423018-c7ec-4029-9f74-0a1a58b0f945","newPasswordConfirm":"5b423018-c7ec-4029-9f74-0a1a58b0f945"}, requestBody.password) +09:12:54.465 [XNIO-1 task-2] 39JbisDHSTane3CnJVltYA DEBUG com.networknt.schema.TypeValidator debug - validate( "5b423018-c7ec-4029-9f74-0a1a58b0f945", {"password":"2979e16f-73b7-43a4-a6f7-6390eeabddc7","newPassword":"5b423018-c7ec-4029-9f74-0a1a58b0f945","newPasswordConfirm":"5b423018-c7ec-4029-9f74-0a1a58b0f945"}, requestBody.newPassword) +09:12:54.484 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9be1b7b0, base path is set to: null +09:12:54.485 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.485 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:54.485 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:54.485 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9be1b7b0, base path is set to: null +09:12:54.486 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "9be1b7b0", "9be1b7b0", userId) +09:12:54.486 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"356ace89-d78d-4b47-8fde-b2fd745c020d","newPassword":"e46a988b-a470-4653-84fc-c7d3d454e9a9","newPasswordConfirm":"e46a988b-a470-4653-84fc-c7d3d454e9a9"}, {"password":"356ace89-d78d-4b47-8fde-b2fd745c020d","newPassword":"e46a988b-a470-4653-84fc-c7d3d454e9a9","newPasswordConfirm":"e46a988b-a470-4653-84fc-c7d3d454e9a9"}, requestBody) +09:12:54.486 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "e46a988b-a470-4653-84fc-c7d3d454e9a9", {"password":"356ace89-d78d-4b47-8fde-b2fd745c020d","newPassword":"e46a988b-a470-4653-84fc-c7d3d454e9a9","newPasswordConfirm":"e46a988b-a470-4653-84fc-c7d3d454e9a9"}, requestBody.newPasswordConfirm) +09:12:54.486 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "356ace89-d78d-4b47-8fde-b2fd745c020d", {"password":"356ace89-d78d-4b47-8fde-b2fd745c020d","newPassword":"e46a988b-a470-4653-84fc-c7d3d454e9a9","newPasswordConfirm":"e46a988b-a470-4653-84fc-c7d3d454e9a9"}, requestBody.password) +09:12:54.486 [XNIO-1 task-2] irGE2uKYS_ybPnGcS1B2Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "e46a988b-a470-4653-84fc-c7d3d454e9a9", {"password":"356ace89-d78d-4b47-8fde-b2fd745c020d","newPassword":"e46a988b-a470-4653-84fc-c7d3d454e9a9","newPasswordConfirm":"e46a988b-a470-4653-84fc-c7d3d454e9a9"}, requestBody.newPassword) +09:12:54.497 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9be1b7b0 +09:12:54.505 [XNIO-1 task-2] 2uWFOJYMT8e2LDzc7CmOyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.505 [XNIO-1 task-2] 2uWFOJYMT8e2LDzc7CmOyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.505 [XNIO-1 task-2] 2uWFOJYMT8e2LDzc7CmOyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.505 [XNIO-1 task-2] 2uWFOJYMT8e2LDzc7CmOyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.509 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/715cdd19, base path is set to: null +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/715cdd19, base path is set to: null +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG com.networknt.schema.TypeValidator debug - validate( "715cdd19", "715cdd19", userId) +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"858096d0-c27d-475c-a1d8-9a991aa35751","newPassword":"af65b684-cbd0-4a6e-bcba-f059b17abbc4","newPasswordConfirm":"af65b684-cbd0-4a6e-bcba-f059b17abbc4"}, {"password":"858096d0-c27d-475c-a1d8-9a991aa35751","newPassword":"af65b684-cbd0-4a6e-bcba-f059b17abbc4","newPasswordConfirm":"af65b684-cbd0-4a6e-bcba-f059b17abbc4"}, requestBody) +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG com.networknt.schema.TypeValidator debug - validate( "af65b684-cbd0-4a6e-bcba-f059b17abbc4", {"password":"858096d0-c27d-475c-a1d8-9a991aa35751","newPassword":"af65b684-cbd0-4a6e-bcba-f059b17abbc4","newPasswordConfirm":"af65b684-cbd0-4a6e-bcba-f059b17abbc4"}, requestBody.newPasswordConfirm) +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG com.networknt.schema.TypeValidator debug - validate( "858096d0-c27d-475c-a1d8-9a991aa35751", {"password":"858096d0-c27d-475c-a1d8-9a991aa35751","newPassword":"af65b684-cbd0-4a6e-bcba-f059b17abbc4","newPasswordConfirm":"af65b684-cbd0-4a6e-bcba-f059b17abbc4"}, requestBody.password) +09:12:54.510 [XNIO-1 task-2] 9FmqhvH2SzuiFuKdgxUyJg DEBUG com.networknt.schema.TypeValidator debug - validate( "af65b684-cbd0-4a6e-bcba-f059b17abbc4", {"password":"858096d0-c27d-475c-a1d8-9a991aa35751","newPassword":"af65b684-cbd0-4a6e-bcba-f059b17abbc4","newPasswordConfirm":"af65b684-cbd0-4a6e-bcba-f059b17abbc4"}, requestBody.newPassword) +09:12:54.522 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:715cdd19 +09:12:54.528 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:37244bca-945c-46af-b537-913c2b6656ec +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/af5a9ade, base path is set to: null +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/af5a9ade, base path is set to: null +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "af5a9ade", "af5a9ade", userId) +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ad5370eb-76b9-481f-9710-deb8f6eabad3","newPassword":"e278ec37-1f48-47f7-834f-ad2456f09f63","newPasswordConfirm":"e278ec37-1f48-47f7-834f-ad2456f09f63"}, {"password":"ad5370eb-76b9-481f-9710-deb8f6eabad3","newPassword":"e278ec37-1f48-47f7-834f-ad2456f09f63","newPasswordConfirm":"e278ec37-1f48-47f7-834f-ad2456f09f63"}, requestBody) +09:12:54.533 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "e278ec37-1f48-47f7-834f-ad2456f09f63", {"password":"ad5370eb-76b9-481f-9710-deb8f6eabad3","newPassword":"e278ec37-1f48-47f7-834f-ad2456f09f63","newPasswordConfirm":"e278ec37-1f48-47f7-834f-ad2456f09f63"}, requestBody.newPasswordConfirm) +09:12:54.534 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "ad5370eb-76b9-481f-9710-deb8f6eabad3", {"password":"ad5370eb-76b9-481f-9710-deb8f6eabad3","newPassword":"e278ec37-1f48-47f7-834f-ad2456f09f63","newPasswordConfirm":"e278ec37-1f48-47f7-834f-ad2456f09f63"}, requestBody.password) +09:12:54.534 [XNIO-1 task-2] 0BZt3j-DR_Wo1hNE4iOUsw DEBUG com.networknt.schema.TypeValidator debug - validate( "e278ec37-1f48-47f7-834f-ad2456f09f63", {"password":"ad5370eb-76b9-481f-9710-deb8f6eabad3","newPassword":"e278ec37-1f48-47f7-834f-ad2456f09f63","newPasswordConfirm":"e278ec37-1f48-47f7-834f-ad2456f09f63"}, requestBody.newPassword) +09:12:54.544 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:af5a9ade +09:12:54.546 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fd1e0c26 +09:12:54.547 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fd1e0c26 +09:12:54.551 [XNIO-1 task-2] V-bYVnnqT4SkLb9t0r8kYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.551 [XNIO-1 task-2] V-bYVnnqT4SkLb9t0r8kYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.551 [XNIO-1 task-2] V-bYVnnqT4SkLb9t0r8kYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.560 [XNIO-1 task-2] 4eaN6alUR0iTVMrWCWJwlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d1df2362 +09:12:54.560 [XNIO-1 task-2] 4eaN6alUR0iTVMrWCWJwlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.560 [XNIO-1 task-2] 4eaN6alUR0iTVMrWCWJwlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:54.560 [XNIO-1 task-2] 4eaN6alUR0iTVMrWCWJwlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d1df2362 +09:12:54.570 [XNIO-1 task-2] Q8R9Voa_SKWSygGpXmwbVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.570 [XNIO-1 task-2] Q8R9Voa_SKWSygGpXmwbVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.570 [XNIO-1 task-2] Q8R9Voa_SKWSygGpXmwbVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.583 [XNIO-1 task-2] Q4S4NAHhQUyMt-8Bqf7rYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a482697, base path is set to: null +09:12:54.584 [XNIO-1 task-2] Q4S4NAHhQUyMt-8Bqf7rYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.584 [XNIO-1 task-2] Q4S4NAHhQUyMt-8Bqf7rYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:54.584 [XNIO-1 task-2] Q4S4NAHhQUyMt-8Bqf7rYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a482697, base path is set to: null +09:12:54.584 [XNIO-1 task-2] Q4S4NAHhQUyMt-8Bqf7rYg DEBUG com.networknt.schema.TypeValidator debug - validate( "3a482697", "3a482697", userId) +09:12:54.626 [XNIO-1 task-2] pWAMMTmfTWyvUUaADOzBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.626 [XNIO-1 task-2] pWAMMTmfTWyvUUaADOzBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.627 [XNIO-1 task-2] pWAMMTmfTWyvUUaADOzBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.627 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:715cdd19 +09:12:54.641 [XNIO-1 task-2] qffj-Bo5TyaNqL0ijrlIIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.641 [XNIO-1 task-2] qffj-Bo5TyaNqL0ijrlIIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.641 [XNIO-1 task-2] qffj-Bo5TyaNqL0ijrlIIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.641 [XNIO-1 task-2] qffj-Bo5TyaNqL0ijrlIIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +09:12:54.646 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7e0c5457 +09:12:54.646 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7e0c5457 +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6b48346a-7532-45bf-871b-b540ea14d3f9","newPassword":"52e35925-f043-4aa6-b852-d1b088fab4a9","newPasswordConfirm":"52e35925-f043-4aa6-b852-d1b088fab4a9"}, {"password":"6b48346a-7532-45bf-871b-b540ea14d3f9","newPassword":"52e35925-f043-4aa6-b852-d1b088fab4a9","newPasswordConfirm":"52e35925-f043-4aa6-b852-d1b088fab4a9"}, requestBody) +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6b48346a-7532-45bf-871b-b540ea14d3f9","newPassword":"52e35925-f043-4aa6-b852-d1b088fab4a9","newPasswordConfirm":"52e35925-f043-4aa6-b852-d1b088fab4a9"}, {"password":"6b48346a-7532-45bf-871b-b540ea14d3f9","newPassword":"52e35925-f043-4aa6-b852-d1b088fab4a9","newPasswordConfirm":"52e35925-f043-4aa6-b852-d1b088fab4a9"}, requestBody) +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG com.networknt.schema.FormatValidator debug - validate( "52e35925-f043-4aa6-b852-d1b088fab4a9", {"password":"6b48346a-7532-45bf-871b-b540ea14d3f9","newPassword":"52e35925-f043-4aa6-b852-d1b088fab4a9","newPasswordConfirm":"52e35925-f043-4aa6-b852-d1b088fab4a9"}, requestBody.newPasswordConfirm) +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG com.networknt.schema.FormatValidator debug - validate( "6b48346a-7532-45bf-871b-b540ea14d3f9", {"password":"6b48346a-7532-45bf-871b-b540ea14d3f9","newPassword":"52e35925-f043-4aa6-b852-d1b088fab4a9","newPasswordConfirm":"52e35925-f043-4aa6-b852-d1b088fab4a9"}, requestBody.password) +09:12:54.647 [XNIO-1 task-2] NP0YS-PMSUO2VvHw-Trcxw DEBUG com.networknt.schema.FormatValidator debug - validate( "52e35925-f043-4aa6-b852-d1b088fab4a9", {"password":"6b48346a-7532-45bf-871b-b540ea14d3f9","newPassword":"52e35925-f043-4aa6-b852-d1b088fab4a9","newPasswordConfirm":"52e35925-f043-4aa6-b852-d1b088fab4a9"}, requestBody.newPassword) +09:12:54.648 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f5af4e76 +09:12:54.664 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fb898c6b-d735-4ce8-8ee2-65cc75241871 +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c807f19 +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPassword":"156ae945-f37b-4e09-aed1-7f56c456c5db","newPasswordConfirm":"156ae945-f37b-4e09-aed1-7f56c456c5db"}, {"password":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPassword":"156ae945-f37b-4e09-aed1-7f56c456c5db","newPasswordConfirm":"156ae945-f37b-4e09-aed1-7f56c456c5db"}, requestBody) +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPassword":"156ae945-f37b-4e09-aed1-7f56c456c5db","newPasswordConfirm":"156ae945-f37b-4e09-aed1-7f56c456c5db"}, {"password":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPassword":"156ae945-f37b-4e09-aed1-7f56c456c5db","newPasswordConfirm":"156ae945-f37b-4e09-aed1-7f56c456c5db"}, requestBody) +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG com.networknt.schema.FormatValidator debug - validate( "156ae945-f37b-4e09-aed1-7f56c456c5db", {"password":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPassword":"156ae945-f37b-4e09-aed1-7f56c456c5db","newPasswordConfirm":"156ae945-f37b-4e09-aed1-7f56c456c5db"}, requestBody.newPasswordConfirm) +09:12:54.665 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG com.networknt.schema.FormatValidator debug - validate( "cb838f30-6e4e-47f5-b684-abe4d5a362de", {"password":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPassword":"156ae945-f37b-4e09-aed1-7f56c456c5db","newPasswordConfirm":"156ae945-f37b-4e09-aed1-7f56c456c5db"}, requestBody.password) +09:12:54.666 [XNIO-1 task-2] ZI1L1vmGSQWEwkq6nkXP5w DEBUG com.networknt.schema.FormatValidator debug - validate( "156ae945-f37b-4e09-aed1-7f56c456c5db", {"password":"cb838f30-6e4e-47f5-b684-abe4d5a362de","newPassword":"156ae945-f37b-4e09-aed1-7f56c456c5db","newPasswordConfirm":"156ae945-f37b-4e09-aed1-7f56c456c5db"}, requestBody.newPassword) +09:12:54.666 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fb898c6b-d735-4ce8-8ee2-65cc75241871 +09:12:54.680 [XNIO-1 task-2] zguBzHRgR--m8VR0ZTHpCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.680 [XNIO-1 task-2] zguBzHRgR--m8VR0ZTHpCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.680 [XNIO-1 task-2] zguBzHRgR--m8VR0ZTHpCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.680 [XNIO-1 task-2] zguBzHRgR--m8VR0ZTHpCw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:54.683 [XNIO-1 task-2] z4HroLTtTymCqAXzHSfchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.683 [XNIO-1 task-2] z4HroLTtTymCqAXzHSfchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.683 [XNIO-1 task-2] z4HroLTtTymCqAXzHSfchg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.684 [XNIO-1 task-2] z4HroLTtTymCqAXzHSfchg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +09:12:54.688 [XNIO-1 task-2] ui4fkWo2RyadzsGEnkhMPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.688 [XNIO-1 task-2] ui4fkWo2RyadzsGEnkhMPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.688 [XNIO-1 task-2] ui4fkWo2RyadzsGEnkhMPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +09:12:54.695 [XNIO-1 task-2] 7s0ftW3eTAO3pcSnDWT1mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.695 [XNIO-1 task-2] 7s0ftW3eTAO3pcSnDWT1mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.695 [XNIO-1 task-2] 7s0ftW3eTAO3pcSnDWT1mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +09:12:54.703 [XNIO-1 task-2] WZ55yZujQ6WXpjbzpjf94A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.703 [XNIO-1 task-2] WZ55yZujQ6WXpjbzpjf94A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +09:12:54.712 [XNIO-1 task-2] O1HZ6UhITHi6gR-zEMx2zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.712 [XNIO-1 task-2] O1HZ6UhITHi6gR-zEMx2zA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/user but not found in request.","severity":"ERROR"} +09:12:54.714 [XNIO-1 task-2] 9iU1lzrVQV65E-YMeDNVDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +09:12:54.714 [XNIO-1 task-2] 9iU1lzrVQV65E-YMeDNVDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.714 [XNIO-1 task-2] 9iU1lzrVQV65E-YMeDNVDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +09:12:54.721 [XNIO-1 task-2] 40oXozzsTYaSbxuYBBqk7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} + ... 14 more + +09:12:54.721 [XNIO-1 task-2] 40oXozzsTYaSbxuYBBqk7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/56d001c3, base path is set to: null +09:12:54.721 [XNIO-1 task-2] 40oXozzsTYaSbxuYBBqk7A DEBUG com.networknt.schema.TypeValidator debug - validate( "56d001c3", "56d001c3", userId) +09:12:54.721 [XNIO-1 task-2] 40oXozzsTYaSbxuYBBqk7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"eb0fe2cf-2fef-4f74-b953-e995188f1437","newPassword":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPasswordConfirm":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75"}, {"password":"eb0fe2cf-2fef-4f74-b953-e995188f1437","newPassword":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPasswordConfirm":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75"}, requestBody) +09:12:54.721 [XNIO-1 task-2] 40oXozzsTYaSbxuYBBqk7A DEBUG com.networknt.schema.TypeValidator debug - validate( "6ac05d9f-14b2-4feb-84b5-e24be21c4d75", {"password":"eb0fe2cf-2fef-4f74-b953-e995188f1437","newPassword":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPasswordConfirm":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75"}, requestBody.newPasswordConfirm) +09:12:54.721 [XNIO-1 task-2] 40oXozzsTYaSbxuYBBqk7A DEBUG com.networknt.schema.TypeValidator debug - validate( "eb0fe2cf-2fef-4f74-b953-e995188f1437", {"password":"eb0fe2cf-2fef-4f74-b953-e995188f1437","newPassword":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPasswordConfirm":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75"}, requestBody.password) +09:12:54.722 [XNIO-1 task-2] 40oXozzsTYaSbxuYBBqk7A DEBUG com.networknt.schema.TypeValidator debug - validate( "6ac05d9f-14b2-4feb-84b5-e24be21c4d75", {"password":"eb0fe2cf-2fef-4f74-b953-e995188f1437","newPassword":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPasswordConfirm":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75"}, requestBody.newPassword) +09:12:54.741 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/56d001c3, base path is set to: null +09:12:54.741 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.741 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +09:12:54.741 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +09:12:54.741 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/56d001c3, base path is set to: null +09:12:54.741 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG com.networknt.schema.TypeValidator debug - validate( "56d001c3", "56d001c3", userId) +09:12:54.742 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPassword":"757f939f-8bf2-4def-a57a-efd713c52026","newPasswordConfirm":"757f939f-8bf2-4def-a57a-efd713c52026"}, {"password":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPassword":"757f939f-8bf2-4def-a57a-efd713c52026","newPasswordConfirm":"757f939f-8bf2-4def-a57a-efd713c52026"}, requestBody) +09:12:54.742 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG com.networknt.schema.TypeValidator debug - validate( "757f939f-8bf2-4def-a57a-efd713c52026", {"password":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPassword":"757f939f-8bf2-4def-a57a-efd713c52026","newPasswordConfirm":"757f939f-8bf2-4def-a57a-efd713c52026"}, requestBody.newPasswordConfirm) +09:12:54.742 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG com.networknt.schema.TypeValidator debug - validate( "6ac05d9f-14b2-4feb-84b5-e24be21c4d75", {"password":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPassword":"757f939f-8bf2-4def-a57a-efd713c52026","newPasswordConfirm":"757f939f-8bf2-4def-a57a-efd713c52026"}, requestBody.password) +09:12:54.742 [XNIO-1 task-2] 2SXzs75ZQwWfjuzBm3lukA DEBUG com.networknt.schema.TypeValidator debug - validate( "757f939f-8bf2-4def-a57a-efd713c52026", {"password":"6ac05d9f-14b2-4feb-84b5-e24be21c4d75","newPassword":"757f939f-8bf2-4def-a57a-efd713c52026","newPasswordConfirm":"757f939f-8bf2-4def-a57a-efd713c52026"}, requestBody.newPassword) +09:12:54.742 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5974bcf0 +09:12:54.743 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5974bcf0 +09:12:54.763 [XNIO-1 task-2] zgeJLKlqShiv_saABoiRwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.763 [XNIO-1 task-2] zgeJLKlqShiv_saABoiRwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.763 [XNIO-1 task-2] zgeJLKlqShiv_saABoiRwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.770 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +09:12:54.771 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7182e3c +09:12:54.776 [XNIO-1 task-2] _Wq8panLS-6xQQQToUtiFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ed6f7189 +09:12:54.777 [XNIO-1 task-2] _Wq8panLS-6xQQQToUtiFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.777 [XNIO-1 task-2] _Wq8panLS-6xQQQToUtiFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:54.777 [XNIO-1 task-2] _Wq8panLS-6xQQQToUtiFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ed6f7189 +09:12:54.784 [XNIO-1 task-2] CdCBfxB9SsmIWl87g1Qcxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.785 [XNIO-1 task-2] CdCBfxB9SsmIWl87g1Qcxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +09:12:54.785 [XNIO-1 task-2] CdCBfxB9SsmIWl87g1Qcxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +09:12:54.785 [XNIO-1 task-2] CdCBfxB9SsmIWl87g1Qcxg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +09:12:54.798 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b66c9ba8 +09:12:54.799 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b66c9ba8 +09:12:54.801 [XNIO-1 task-2] P3_XQB5eQ2iDhtFBHHzA2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.802 [XNIO-1 task-2] P3_XQB5eQ2iDhtFBHHzA2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.803 [XNIO-1 task-2] P3_XQB5eQ2iDhtFBHHzA2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.820 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ed6f7189 +09:12:54.820 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.821 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:54.821 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:54.821 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ed6f7189 +09:12:54.821 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"09ae49ed-035e-4891-aaa2-353e7b5d11e8","newPassword":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPasswordConfirm":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3"}, {"password":"09ae49ed-035e-4891-aaa2-353e7b5d11e8","newPassword":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPasswordConfirm":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3"}, requestBody) +09:12:54.821 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"09ae49ed-035e-4891-aaa2-353e7b5d11e8","newPassword":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPasswordConfirm":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3"}, {"password":"09ae49ed-035e-4891-aaa2-353e7b5d11e8","newPassword":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPasswordConfirm":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3"}, requestBody) +09:12:54.821 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG com.networknt.schema.FormatValidator debug - validate( "2e88d30c-5d21-4ff9-9c81-56e7c80233d3", {"password":"09ae49ed-035e-4891-aaa2-353e7b5d11e8","newPassword":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPasswordConfirm":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3"}, requestBody.newPasswordConfirm) +09:12:54.821 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG com.networknt.schema.FormatValidator debug - validate( "09ae49ed-035e-4891-aaa2-353e7b5d11e8", {"password":"09ae49ed-035e-4891-aaa2-353e7b5d11e8","newPassword":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPasswordConfirm":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3"}, requestBody.password) +09:12:54.822 [XNIO-1 task-2] ts4DikQ5TyaFInBv1jGHjw DEBUG com.networknt.schema.FormatValidator debug - validate( "2e88d30c-5d21-4ff9-9c81-56e7c80233d3", {"password":"09ae49ed-035e-4891-aaa2-353e7b5d11e8","newPassword":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPasswordConfirm":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3"}, requestBody.newPassword) +09:12:54.841 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ed6f7189 +09:12:54.841 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.841 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +09:12:54.842 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +09:12:54.842 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ed6f7189 +09:12:54.842 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPassword":"263d32da-1178-4660-9f77-6008f152af56","newPasswordConfirm":"263d32da-1178-4660-9f77-6008f152af56"}, {"password":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPassword":"263d32da-1178-4660-9f77-6008f152af56","newPasswordConfirm":"263d32da-1178-4660-9f77-6008f152af56"}, requestBody) +09:12:54.842 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPassword":"263d32da-1178-4660-9f77-6008f152af56","newPasswordConfirm":"263d32da-1178-4660-9f77-6008f152af56"}, {"password":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPassword":"263d32da-1178-4660-9f77-6008f152af56","newPasswordConfirm":"263d32da-1178-4660-9f77-6008f152af56"}, requestBody) +09:12:54.842 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG com.networknt.schema.FormatValidator debug - validate( "263d32da-1178-4660-9f77-6008f152af56", {"password":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPassword":"263d32da-1178-4660-9f77-6008f152af56","newPasswordConfirm":"263d32da-1178-4660-9f77-6008f152af56"}, requestBody.newPasswordConfirm) +09:12:54.842 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG com.networknt.schema.FormatValidator debug - validate( "2e88d30c-5d21-4ff9-9c81-56e7c80233d3", {"password":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPassword":"263d32da-1178-4660-9f77-6008f152af56","newPasswordConfirm":"263d32da-1178-4660-9f77-6008f152af56"}, requestBody.password) +09:12:54.842 [XNIO-1 task-2] PNTzYFBFTjmCpn9IqWAtOg DEBUG com.networknt.schema.FormatValidator debug - validate( "263d32da-1178-4660-9f77-6008f152af56", {"password":"2e88d30c-5d21-4ff9-9c81-56e7c80233d3","newPassword":"263d32da-1178-4660-9f77-6008f152af56","newPasswordConfirm":"263d32da-1178-4660-9f77-6008f152af56"}, requestBody.newPassword) +09:12:54.847 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:57c2c028 +09:12:54.852 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ee3e5eb4 +09:12:54.853 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ee3e5eb4 +09:12:54.861 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:57c2c028 +09:12:54.863 [XNIO-1 task-2] kqlS1vyASe2HptZgNEumpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.864 [XNIO-1 task-2] kqlS1vyASe2HptZgNEumpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.864 [XNIO-1 task-2] kqlS1vyASe2HptZgNEumpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.886 [XNIO-1 task-2] Hddq79pvR_eIYrDF-OMpmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +09:12:54.886 [XNIO-1 task-2] Hddq79pvR_eIYrDF-OMpmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user diff --git a/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-client-1.log b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..a3eb78c --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4343 @@ +00:00:38.150 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.150 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:38.154 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e33de663-92f9-4e85-bc53-1d9de243f4b3", {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:38.154 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:38.154 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:38.154 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fa400f03-8f4a-41c7-af5c-5548e4d7", {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:38.155 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:38.155 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fa400f03-8f4a-41c7-af5c-5548e4d7","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:38.155 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:38.156 [XNIO-1 task-1] NlNUbUKoRyuWiEFZet4tIQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:38.160 [XNIO-1 task-1] Idms0N2ZSb-3iHUs4ShrhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:38.160 [XNIO-1 task-1] Idms0N2ZSb-3iHUs4ShrhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:38.161 [XNIO-1 task-1] Idms0N2ZSb-3iHUs4ShrhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:38.161 [XNIO-1 task-1] Idms0N2ZSb-3iHUs4ShrhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:38.184 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:38.185 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:38.185 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:38.186 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.186 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.186 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.187 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.187 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:38.187 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:38.187 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.187 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.187 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"90953534-ec13-4c26-934b-41731370","clientDesc":"e33de663-92f9-4e85-bc53-1d9de243f4b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:38.193 [XNIO-1 task-1] 3WniIzMDQQeAkJCioxP6nA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:38.197 [XNIO-1 task-1] UcExBHI8TcyvecAFjhXkKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.197 [XNIO-1 task-1] UcExBHI8TcyvecAFjhXkKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.197 [XNIO-1 task-1] UcExBHI8TcyvecAFjhXkKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.234 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:513a6431-9659-4fea-8d2f-a0a9aa4f4e5a +00:00:38.278 [XNIO-1 task-1] yUXSe8hLSZWaAjLZFULUCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/52c5bf70-7864-447f-b48b-31f80e618e43, base path is set to: null +00:00:38.279 [XNIO-1 task-1] yUXSe8hLSZWaAjLZFULUCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:38.279 [XNIO-1 task-1] yUXSe8hLSZWaAjLZFULUCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:38.280 [XNIO-1 task-1] yUXSe8hLSZWaAjLZFULUCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/52c5bf70-7864-447f-b48b-31f80e618e43, base path is set to: null +00:00:38.283 [XNIO-1 task-1] yUXSe8hLSZWaAjLZFULUCg DEBUG com.networknt.schema.TypeValidator debug - validate( "52c5bf70-7864-447f-b48b-31f80e618e43", "52c5bf70-7864-447f-b48b-31f80e618e43", clientId) +00:00:38.317 [XNIO-1 task-1] 4YMJL4rpR8K9a1ZBkC2KPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.317 [XNIO-1 task-1] 4YMJL4rpR8K9a1ZBkC2KPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.318 [XNIO-1 task-1] 4YMJL4rpR8K9a1ZBkC2KPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.319 [XNIO-1 task-1] 4YMJL4rpR8K9a1ZBkC2KPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:38.344 [XNIO-1 task-1] oilm3AfGSX6AqxbY43DiWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.344 [XNIO-1 task-1] oilm3AfGSX6AqxbY43DiWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.345 [XNIO-1 task-1] oilm3AfGSX6AqxbY43DiWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.345 [XNIO-1 task-1] oilm3AfGSX6AqxbY43DiWA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:38.356 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.356 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.357 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.361 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.361 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:38.361 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG com.networknt.schema.TypeValidator debug - validate( "e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8", {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:38.362 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:38.362 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:38.363 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG com.networknt.schema.TypeValidator debug - validate( "e7a54198-101b-4cf2-96c9-b534f966", {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:38.363 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:38.363 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e7a54198-101b-4cf2-96c9-b534f966","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:38.364 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:38.364 [XNIO-1 task-1] D5zVRccQQAGa98oYRD96ew DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:38.399 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:38.400 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:38.424 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:38.425 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.425 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.425 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.426 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.426 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:38.426 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:38.426 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.426 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:38.427 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"271d1b4c-0f89-458c-8bab-0111f9ec","clientDesc":"e89ea3ba-8e08-4ef0-9875-e14d3c37f5a8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:38.466 [XNIO-1 task-1] IUva_l42Q4-SL2i3c1Twow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:38.474 [XNIO-1 task-1] YlriT0qJQUSdZxAYVf_Dqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.474 [XNIO-1 task-1] YlriT0qJQUSdZxAYVf_Dqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:38.475 [XNIO-1 task-1] YlriT0qJQUSdZxAYVf_Dqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.077 [XNIO-1 task-1] TJq113JeTySrR9NqZqTAfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/513a6431-9659-4fea-8d2f-a0a9aa4f4e5a +00:00:39.077 [XNIO-1 task-1] TJq113JeTySrR9NqZqTAfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.077 [XNIO-1 task-1] TJq113JeTySrR9NqZqTAfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:39.078 [XNIO-1 task-1] TJq113JeTySrR9NqZqTAfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/513a6431-9659-4fea-8d2f-a0a9aa4f4e5a +00:00:39.079 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:513a6431-9659-4fea-8d2f-a0a9aa4f4e5a +00:00:39.092 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.092 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.093 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.094 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:39.094 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:39.094 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1bccc14-7591-4cdb-8310-b1044e9225bc", {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:39.095 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:39.095 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:39.096 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca27c625-c0e0-4b83-a8fb-95e93443", {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:39.096 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:39.096 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ca27c625-c0e0-4b83-a8fb-95e93443","clientDesc":"a1bccc14-7591-4cdb-8310-b1044e9225bc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:39.096 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:39.097 [XNIO-1 task-1] ZBybj5-cRSS93mAlvUlKZQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:39.106 [XNIO-1 task-1] bG8si647TDaC7k4m9ytQcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.106 [XNIO-1 task-1] bG8si647TDaC7k4m9ytQcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.106 [XNIO-1 task-1] bG8si647TDaC7k4m9ytQcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.107 [XNIO-1 task-1] bG8si647TDaC7k4m9ytQcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:39.133 [XNIO-1 task-1] ypjFi76rQ4WtL_TD406NKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.133 [XNIO-1 task-1] ypjFi76rQ4WtL_TD406NKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.133 [XNIO-1 task-1] ypjFi76rQ4WtL_TD406NKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.134 [XNIO-1 task-1] ypjFi76rQ4WtL_TD406NKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:39.138 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c8fb34c4 +00:00:39.143 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c8fb34c4 +00:00:39.152 [XNIO-1 task-1] Iwh1rm1TTRORx-g8J7VoJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/78270865-57f1-43f7-b0a0-b0f76a59b896 +00:00:39.153 [XNIO-1 task-1] Iwh1rm1TTRORx-g8J7VoJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.153 [XNIO-1 task-1] Iwh1rm1TTRORx-g8J7VoJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:39.153 [XNIO-1 task-1] Iwh1rm1TTRORx-g8J7VoJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/78270865-57f1-43f7-b0a0-b0f76a59b896 +00:00:39.160 [XNIO-1 task-1] DzhmkLOQQJKJ6bwwJbXVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/78270865-57f1-43f7-b0a0-b0f76a59b896, base path is set to: null +00:00:39.160 [XNIO-1 task-1] DzhmkLOQQJKJ6bwwJbXVww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.160 [XNIO-1 task-1] DzhmkLOQQJKJ6bwwJbXVww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:39.160 [XNIO-1 task-1] DzhmkLOQQJKJ6bwwJbXVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/78270865-57f1-43f7-b0a0-b0f76a59b896, base path is set to: null +00:00:39.160 [XNIO-1 task-1] DzhmkLOQQJKJ6bwwJbXVww DEBUG com.networknt.schema.TypeValidator debug - validate( "78270865-57f1-43f7-b0a0-b0f76a59b896", "78270865-57f1-43f7-b0a0-b0f76a59b896", clientId) +00:00:39.173 [XNIO-1 task-1] P82RI6bqRnOdrZIKKQWUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.173 [XNIO-1 task-1] P82RI6bqRnOdrZIKKQWUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.173 [XNIO-1 task-1] P82RI6bqRnOdrZIKKQWUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.174 [XNIO-1 task-1] P82RI6bqRnOdrZIKKQWUdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:39.191 [XNIO-1 task-1] lOJF7Q31SNmiK8iPaYm_Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.191 [XNIO-1 task-1] lOJF7Q31SNmiK8iPaYm_Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.191 [XNIO-1 task-1] lOJF7Q31SNmiK8iPaYm_Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.192 [XNIO-1 task-1] lOJF7Q31SNmiK8iPaYm_Qg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:39.204 [XNIO-1 task-1] r3Em_ulRSm2PQJxm1RN7cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.204 [XNIO-1 task-1] r3Em_ulRSm2PQJxm1RN7cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.204 [XNIO-1 task-1] r3Em_ulRSm2PQJxm1RN7cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.205 [XNIO-1 task-1] r3Em_ulRSm2PQJxm1RN7cw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:39.218 [XNIO-1 task-1] 2MHsyIHlSK6dwt3gWyLcQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.219 [XNIO-1 task-1] 2MHsyIHlSK6dwt3gWyLcQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.219 [XNIO-1 task-1] 2MHsyIHlSK6dwt3gWyLcQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.220 [XNIO-1 task-1] 2MHsyIHlSK6dwt3gWyLcQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:39.288 [XNIO-1 task-1] Py8zb0aRT2S8YoTgBisyiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.288 [XNIO-1 task-1] Py8zb0aRT2S8YoTgBisyiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.289 [XNIO-1 task-1] Py8zb0aRT2S8YoTgBisyiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.361 [XNIO-1 task-1] FYnqHo3sSOyvqekH2mIDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.361 [XNIO-1 task-1] FYnqHo3sSOyvqekH2mIDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.362 [XNIO-1 task-1] FYnqHo3sSOyvqekH2mIDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.524 [XNIO-1 task-1] 7VSfXcd8RFq9QQMRpRcm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3038ae6-b0fc-4362-83b8-4d3b43a49f54 +00:00:39.524 [XNIO-1 task-1] 7VSfXcd8RFq9QQMRpRcm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.524 [XNIO-1 task-1] 7VSfXcd8RFq9QQMRpRcm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:39.524 [XNIO-1 task-1] 7VSfXcd8RFq9QQMRpRcm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3038ae6-b0fc-4362-83b8-4d3b43a49f54 +00:00:39.542 [XNIO-1 task-1] YLH5BED0QYK8Y993MSW_9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.542 [XNIO-1 task-1] YLH5BED0QYK8Y993MSW_9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.543 [XNIO-1 task-1] YLH5BED0QYK8Y993MSW_9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.543 [XNIO-1 task-1] YLH5BED0QYK8Y993MSW_9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:39.558 [XNIO-1 task-1] otN1XkFGRSiRUDNPiKcKgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.558 [XNIO-1 task-1] otN1XkFGRSiRUDNPiKcKgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.558 [XNIO-1 task-1] otN1XkFGRSiRUDNPiKcKgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.559 [XNIO-1 task-1] otN1XkFGRSiRUDNPiKcKgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:39.595 [XNIO-1 task-1] yhnd4trQQMK3uK4LKcv0sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.595 [XNIO-1 task-1] yhnd4trQQMK3uK4LKcv0sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.595 [XNIO-1 task-1] yhnd4trQQMK3uK4LKcv0sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.697 [XNIO-1 task-1] 0mK1gG5AQVm3ti6AIKwbqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3709dd49-cf22-4954-af83-7d981531b0a7, base path is set to: null +00:00:39.697 [XNIO-1 task-1] 0mK1gG5AQVm3ti6AIKwbqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.697 [XNIO-1 task-1] 0mK1gG5AQVm3ti6AIKwbqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:39.698 [XNIO-1 task-1] 0mK1gG5AQVm3ti6AIKwbqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3709dd49-cf22-4954-af83-7d981531b0a7, base path is set to: null +00:00:39.698 [XNIO-1 task-1] 0mK1gG5AQVm3ti6AIKwbqg DEBUG com.networknt.schema.TypeValidator debug - validate( "3709dd49-cf22-4954-af83-7d981531b0a7", "3709dd49-cf22-4954-af83-7d981531b0a7", clientId) +00:00:39.714 [XNIO-1 task-1] XrZBBK8cRLGsja8iA9fBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3709dd49-cf22-4954-af83-7d981531b0a7 +00:00:39.714 [XNIO-1 task-1] XrZBBK8cRLGsja8iA9fBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.714 [XNIO-1 task-1] XrZBBK8cRLGsja8iA9fBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:39.714 [XNIO-1 task-1] XrZBBK8cRLGsja8iA9fBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3709dd49-cf22-4954-af83-7d981531b0a7 +00:00:39.718 [XNIO-1 task-1] JX3erNrhSbmtaRArgGzyoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.718 [XNIO-1 task-1] JX3erNrhSbmtaRArgGzyoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.718 [XNIO-1 task-1] JX3erNrhSbmtaRArgGzyoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:39.758 [XNIO-1 task-1] c3maPjslQk-LokU-q_hfmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3709dd49-cf22-4954-af83-7d981531b0a7, base path is set to: null +00:00:39.759 [XNIO-1 task-1] c3maPjslQk-LokU-q_hfmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.759 [XNIO-1 task-1] c3maPjslQk-LokU-q_hfmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:39.759 [XNIO-1 task-1] c3maPjslQk-LokU-q_hfmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3709dd49-cf22-4954-af83-7d981531b0a7, base path is set to: null +00:00:39.759 [XNIO-1 task-1] c3maPjslQk-LokU-q_hfmg DEBUG com.networknt.schema.TypeValidator debug - validate( "3709dd49-cf22-4954-af83-7d981531b0a7", "3709dd49-cf22-4954-af83-7d981531b0a7", clientId) +00:00:39.772 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.772 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.774 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.774 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:39.775 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:39.775 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "7d3ec494-3575-40b5-b756-bb52ecca3aea", {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:39.775 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:39.775 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:39.775 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "84c927b1-e3f0-4261-b56a-2f7a0c71", {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:39.775 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:39.775 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"84c927b1-e3f0-4261-b56a-2f7a0c71","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:39.776 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:39.776 [XNIO-1 task-1] KaN0otJNTGSTbBQTiQe6eg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:39.782 [XNIO-1 task-1] ApzqbEPDTF2wFRiX34gAaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:39.782 [XNIO-1 task-1] ApzqbEPDTF2wFRiX34gAaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.782 [XNIO-1 task-1] ApzqbEPDTF2wFRiX34gAaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:39.782 [XNIO-1 task-1] ApzqbEPDTF2wFRiX34gAaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:39.783 [XNIO-1 task-1] ApzqbEPDTF2wFRiX34gAaw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0ece22-5f0b-437a-b052-76f6afa221f0", "fb0ece22-5f0b-437a-b052-76f6afa221f0", clientId) +00:00:39.790 [XNIO-1 task-1] 2LeaLJ8ATWactEsfh3jjOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.790 [XNIO-1 task-1] 2LeaLJ8ATWactEsfh3jjOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.790 [XNIO-1 task-1] 2LeaLJ8ATWactEsfh3jjOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.823 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.823 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.825 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.826 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:39.826 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:39.826 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "324b3969-4c37-4080-9720-8059e98d63b2", {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:39.826 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:39.826 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:39.827 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "3fd64223-d3ea-46f5-85e1-fe8a4dcc", {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:39.827 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:39.827 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3fd64223-d3ea-46f5-85e1-fe8a4dcc","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:39.829 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:39.829 [XNIO-1 task-1] B0B37mP-ReetjRWx3EzNJg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:39.835 [XNIO-1 task-1] LIuLUmoCTEax4VkSztTfPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:39.835 [XNIO-1 task-1] LIuLUmoCTEax4VkSztTfPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:39.836 [XNIO-1 task-1] LIuLUmoCTEax4VkSztTfPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:39.836 [XNIO-1 task-1] LIuLUmoCTEax4VkSztTfPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:39.837 [XNIO-1 task-1] LIuLUmoCTEax4VkSztTfPw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0ece22-5f0b-437a-b052-76f6afa221f0", "fb0ece22-5f0b-437a-b052-76f6afa221f0", clientId) +00:00:39.841 [XNIO-1 task-1] 7ESxM4lsQmSyOueuJGzasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.841 [XNIO-1 task-1] 7ESxM4lsQmSyOueuJGzasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.841 [XNIO-1 task-1] 7ESxM4lsQmSyOueuJGzasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.842 [XNIO-1 task-1] 7ESxM4lsQmSyOueuJGzasg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:39.873 [XNIO-1 task-1] tINgt1NiTKGse7fVcEUHqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.874 [XNIO-1 task-1] tINgt1NiTKGse7fVcEUHqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.874 [XNIO-1 task-1] tINgt1NiTKGse7fVcEUHqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.988 [XNIO-1 task-1] D5tHZkGmRSSsG6FAhgpSNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.989 [XNIO-1 task-1] D5tHZkGmRSSsG6FAhgpSNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.989 [XNIO-1 task-1] D5tHZkGmRSSsG6FAhgpSNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:39.989 [XNIO-1 task-1] D5tHZkGmRSSsG6FAhgpSNA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:40.072 [XNIO-1 task-1] 4qNQOCazTJq1tfbBeMUNuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.072 [XNIO-1 task-1] 4qNQOCazTJq1tfbBeMUNuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.072 [XNIO-1 task-1] 4qNQOCazTJq1tfbBeMUNuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.073 [XNIO-1 task-1] 4qNQOCazTJq1tfbBeMUNuA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:40.112 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.113 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.113 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.115 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.115 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:40.115 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "324b3969-4c37-4080-9720-8059e98d63b2", {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:40.115 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:40.116 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:40.116 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "6db8df6a-444b-4ff0-883f-d644722b", {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:40.116 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:40.116 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6db8df6a-444b-4ff0-883f-d644722b","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:40.116 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:40.117 [XNIO-1 task-1] Ru8lLBRcRJ-dtKCv2ehsMw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:40.121 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.121 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.122 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.123 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.124 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f6fa7306-ce6f-4800-8b1b-b810e648","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:40.124 [XNIO-1 task-1] 8BzJDJz2Sc62fvQcFVslFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:40.128 [XNIO-1 task-1] c2GYO0jXQcC5gPIcsXOnNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.128 [XNIO-1 task-1] c2GYO0jXQcC5gPIcsXOnNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.129 [XNIO-1 task-1] c2GYO0jXQcC5gPIcsXOnNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.163 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b146a15a-efe9-4e0c-9895-91048d148b3e +00:00:40.188 [XNIO-1 task-1] 8eX22bF0QjO22ovjm3i0LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.189 [XNIO-1 task-1] 8eX22bF0QjO22ovjm3i0LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.189 [XNIO-1 task-1] 8eX22bF0QjO22ovjm3i0LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.190 [XNIO-1 task-1] 8eX22bF0QjO22ovjm3i0LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:40.205 [XNIO-1 task-1] CXpu5xhER52bEpjMhgvNyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:40.205 [XNIO-1 task-1] CXpu5xhER52bEpjMhgvNyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.205 [XNIO-1 task-1] CXpu5xhER52bEpjMhgvNyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:40.205 [XNIO-1 task-1] CXpu5xhER52bEpjMhgvNyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:40.206 [XNIO-1 task-1] CXpu5xhER52bEpjMhgvNyw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0ece22-5f0b-437a-b052-76f6afa221f0", "fb0ece22-5f0b-437a-b052-76f6afa221f0", clientId) +00:00:40.211 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.211 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.212 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.212 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.213 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:40.213 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "324b3969-4c37-4080-9720-8059e98d63b2", {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:40.213 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:40.213 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:40.213 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "07fe3148-2701-4715-a5d1-535e4bb1", {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:40.213 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:40.213 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"07fe3148-2701-4715-a5d1-535e4bb1","clientDesc":"324b3969-4c37-4080-9720-8059e98d63b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:40.214 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:40.214 [XNIO-1 task-1] jSX1krl9S9mWmQ7gHmJFPA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:40.217 [XNIO-1 task-1] VKgmFB41QEGtxpxZTjHF6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ec38f8d-b220-424b-a87d-13a0a8616576, base path is set to: null +00:00:40.218 [XNIO-1 task-1] VKgmFB41QEGtxpxZTjHF6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.218 [XNIO-1 task-1] VKgmFB41QEGtxpxZTjHF6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:40.218 [XNIO-1 task-1] VKgmFB41QEGtxpxZTjHF6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ec38f8d-b220-424b-a87d-13a0a8616576, base path is set to: null +00:00:40.219 [XNIO-1 task-1] VKgmFB41QEGtxpxZTjHF6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0ec38f8d-b220-424b-a87d-13a0a8616576", "0ec38f8d-b220-424b-a87d-13a0a8616576", clientId) +00:00:40.223 [XNIO-1 task-1] IP0dGJ5GQSSa4K6SaYiCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.223 [XNIO-1 task-1] IP0dGJ5GQSSa4K6SaYiCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.223 [XNIO-1 task-1] IP0dGJ5GQSSa4K6SaYiCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.224 [XNIO-1 task-1] IP0dGJ5GQSSa4K6SaYiCfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:40.239 [XNIO-1 task-1] Cp0dElsOTqqxhHaZhFws8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.239 [XNIO-1 task-1] Cp0dElsOTqqxhHaZhFws8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.239 [XNIO-1 task-1] Cp0dElsOTqqxhHaZhFws8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.240 [XNIO-1 task-1] Cp0dElsOTqqxhHaZhFws8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:40.253 [XNIO-1 task-1] BnpzD1W_QuCjqfyKE6K69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b146a15a-efe9-4e0c-9895-91048d148b3e +00:00:40.253 [XNIO-1 task-1] BnpzD1W_QuCjqfyKE6K69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.253 [XNIO-1 task-1] BnpzD1W_QuCjqfyKE6K69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:40.253 [XNIO-1 task-1] BnpzD1W_QuCjqfyKE6K69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b146a15a-efe9-4e0c-9895-91048d148b3e +00:00:40.258 [XNIO-1 task-1] ELyUEua2QxCbFxsDXvVJmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.258 [XNIO-1 task-1] ELyUEua2QxCbFxsDXvVJmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.259 [XNIO-1 task-1] ELyUEua2QxCbFxsDXvVJmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.292 [XNIO-1 task-1] bC219YcyTWC-xwkRNv_EYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b146a15a-efe9-4e0c-9895-91048d148b3e, base path is set to: null +00:00:40.292 [XNIO-1 task-1] bC219YcyTWC-xwkRNv_EYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.294 [XNIO-1 task-1] bC219YcyTWC-xwkRNv_EYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:40.294 [XNIO-1 task-1] bC219YcyTWC-xwkRNv_EYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b146a15a-efe9-4e0c-9895-91048d148b3e, base path is set to: null +00:00:40.295 [XNIO-1 task-1] bC219YcyTWC-xwkRNv_EYg DEBUG com.networknt.schema.TypeValidator debug - validate( "b146a15a-efe9-4e0c-9895-91048d148b3e", "b146a15a-efe9-4e0c-9895-91048d148b3e", clientId) +00:00:40.308 [XNIO-1 task-1] qXzJH77NSDmsRPD0H-8o1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.308 [XNIO-1 task-1] qXzJH77NSDmsRPD0H-8o1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.309 [XNIO-1 task-1] qXzJH77NSDmsRPD0H-8o1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.318 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c8fb34c4 +00:00:40.321 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c8fb34c4 +00:00:40.326 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:01eaa43e +00:00:40.336 [XNIO-1 task-1] oWd-FjAkRcqrLS96Bf2xvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/36898826-b29b-44e0-9078-7a1f1baa8e39 +00:00:40.336 [XNIO-1 task-1] oWd-FjAkRcqrLS96Bf2xvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.336 [XNIO-1 task-1] oWd-FjAkRcqrLS96Bf2xvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:40.336 [XNIO-1 task-1] oWd-FjAkRcqrLS96Bf2xvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/36898826-b29b-44e0-9078-7a1f1baa8e39 +00:00:40.433 [XNIO-1 task-1] agkTn09_RrOQrXV_Na5dcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ec38f8d-b220-424b-a87d-13a0a8616576, base path is set to: null +00:00:40.433 [XNIO-1 task-1] agkTn09_RrOQrXV_Na5dcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.433 [XNIO-1 task-1] agkTn09_RrOQrXV_Na5dcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:40.433 [XNIO-1 task-1] agkTn09_RrOQrXV_Na5dcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0ec38f8d-b220-424b-a87d-13a0a8616576, base path is set to: null +00:00:40.434 [XNIO-1 task-1] agkTn09_RrOQrXV_Na5dcg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ec38f8d-b220-424b-a87d-13a0a8616576", "0ec38f8d-b220-424b-a87d-13a0a8616576", clientId) +00:00:40.446 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:01eaa43e +00:00:40.485 [XNIO-1 task-1] euaBBHp8T9C2KJRJTtOAGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0977a42-beb8-479c-a5f2-52c6e71df1a6, base path is set to: null +00:00:40.485 [XNIO-1 task-1] euaBBHp8T9C2KJRJTtOAGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.485 [XNIO-1 task-1] euaBBHp8T9C2KJRJTtOAGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:40.485 [XNIO-1 task-1] euaBBHp8T9C2KJRJTtOAGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0977a42-beb8-479c-a5f2-52c6e71df1a6, base path is set to: null +00:00:40.486 [XNIO-1 task-1] euaBBHp8T9C2KJRJTtOAGg DEBUG com.networknt.schema.TypeValidator debug - validate( "e0977a42-beb8-479c-a5f2-52c6e71df1a6", "e0977a42-beb8-479c-a5f2-52c6e71df1a6", clientId) +00:00:40.490 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.490 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.491 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.491 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.492 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:40.492 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "5d140d2b-b3dd-429f-94c2-644b845c6236", {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:40.492 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:40.492 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:40.492 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "82fddd25-947e-4ba8-8f8a-ad002939", {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:40.492 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:40.492 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"82fddd25-947e-4ba8-8f8a-ad002939","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:40.493 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:40.493 [XNIO-1 task-1] nQESeJaQRE-oKCgJqwhSpA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:40.497 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.497 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:40.497 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:40.498 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.498 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.498 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.498 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.498 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:40.499 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:40.499 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.499 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:40.499 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15a19eab-b797-4e26-b59d-9098f3a4","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:40.499 [XNIO-1 task-1] j-4M76y2SleexOWXor0bpg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:40.503 [XNIO-1 task-1] -G8o4AZSRt-C1mP1pdWPWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.503 [XNIO-1 task-1] -G8o4AZSRt-C1mP1pdWPWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.503 [XNIO-1 task-1] -G8o4AZSRt-C1mP1pdWPWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:40.503 [XNIO-1 task-1] -G8o4AZSRt-C1mP1pdWPWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:41.005 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.005 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.006 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.007 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.007 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:41.007 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG com.networknt.schema.TypeValidator debug - validate( "5d140d2b-b3dd-429f-94c2-644b845c6236", {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:41.007 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:41.007 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:41.008 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe0989c8-0694-4998-92cb-51446821", {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:41.008 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:41.008 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fe0989c8-0694-4998-92cb-51446821","clientDesc":"5d140d2b-b3dd-429f-94c2-644b845c6236","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:41.008 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:41.008 [XNIO-1 task-1] 2NRDe3zqQH6yiOQ0FfUPQg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:41.011 [XNIO-1 task-1] 3a7A4DdKRsmePxls2O0OoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.012 [XNIO-1 task-1] 3a7A4DdKRsmePxls2O0OoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.012 [XNIO-1 task-1] 3a7A4DdKRsmePxls2O0OoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.044 [XNIO-1 task-1] _2fZ1WQ4SGO4NnMys_Iddw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0977a42-beb8-479c-a5f2-52c6e71df1a6, base path is set to: null +00:00:41.044 [XNIO-1 task-1] _2fZ1WQ4SGO4NnMys_Iddw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.044 [XNIO-1 task-1] _2fZ1WQ4SGO4NnMys_Iddw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:41.044 [XNIO-1 task-1] _2fZ1WQ4SGO4NnMys_Iddw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e0977a42-beb8-479c-a5f2-52c6e71df1a6, base path is set to: null +00:00:41.045 [XNIO-1 task-1] _2fZ1WQ4SGO4NnMys_Iddw DEBUG com.networknt.schema.TypeValidator debug - validate( "e0977a42-beb8-479c-a5f2-52c6e71df1a6", "e0977a42-beb8-479c-a5f2-52c6e71df1a6", clientId) +00:00:41.057 [XNIO-1 task-1] uiHwIgQ4T52u3hKc4KIUAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/34fc11b4-64da-4b5e-9cd6-2de1ce2af92b +00:00:41.058 [XNIO-1 task-1] uiHwIgQ4T52u3hKc4KIUAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.058 [XNIO-1 task-1] uiHwIgQ4T52u3hKc4KIUAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:41.058 [XNIO-1 task-1] uiHwIgQ4T52u3hKc4KIUAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/34fc11b4-64da-4b5e-9cd6-2de1ce2af92b +00:00:41.063 [XNIO-1 task-1] mmT-0tzuSueybtFXRWTRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/34fc11b4-64da-4b5e-9cd6-2de1ce2af92b, base path is set to: null +00:00:41.064 [XNIO-1 task-1] mmT-0tzuSueybtFXRWTRyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.064 [XNIO-1 task-1] mmT-0tzuSueybtFXRWTRyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:41.064 [XNIO-1 task-1] mmT-0tzuSueybtFXRWTRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/34fc11b4-64da-4b5e-9cd6-2de1ce2af92b, base path is set to: null +00:00:41.064 [XNIO-1 task-1] mmT-0tzuSueybtFXRWTRyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "34fc11b4-64da-4b5e-9cd6-2de1ce2af92b", "34fc11b4-64da-4b5e-9cd6-2de1ce2af92b", clientId) +00:00:41.091 [XNIO-1 task-1] CEQWqiYHSoWdVUzK6HLk3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.091 [XNIO-1 task-1] CEQWqiYHSoWdVUzK6HLk3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.091 [XNIO-1 task-1] CEQWqiYHSoWdVUzK6HLk3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.155 [XNIO-1 task-1] nJTiAU7ZSx-rH5K7mq1BxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e +00:00:41.156 [XNIO-1 task-1] nJTiAU7ZSx-rH5K7mq1BxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.156 [XNIO-1 task-1] nJTiAU7ZSx-rH5K7mq1BxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:41.156 [XNIO-1 task-1] nJTiAU7ZSx-rH5K7mq1BxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e +00:00:41.161 [XNIO-1 task-1] enJHBjQfSxKdh4RIILOOew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.161 [XNIO-1 task-1] enJHBjQfSxKdh4RIILOOew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.161 [XNIO-1 task-1] enJHBjQfSxKdh4RIILOOew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.266 [XNIO-1 task-1] N30S0dzKQqSaFjHMvKlDkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.325 [XNIO-1 task-1] N30S0dzKQqSaFjHMvKlDkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.326 [XNIO-1 task-1] N30S0dzKQqSaFjHMvKlDkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.401 [XNIO-1 task-1] JqAiknCSTvWemm3yeCWRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e, base path is set to: null +00:00:41.401 [XNIO-1 task-1] JqAiknCSTvWemm3yeCWRHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.401 [XNIO-1 task-1] JqAiknCSTvWemm3yeCWRHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:41.401 [XNIO-1 task-1] JqAiknCSTvWemm3yeCWRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e, base path is set to: null +00:00:41.402 [XNIO-1 task-1] JqAiknCSTvWemm3yeCWRHA DEBUG com.networknt.schema.TypeValidator debug - validate( "6ad036bf-45ac-43b4-a020-d603e4f5a50e", "6ad036bf-45ac-43b4-a020-d603e4f5a50e", clientId) +00:00:41.406 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.406 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.407 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.407 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.408 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:41.408 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "95cf3df7-180e-49de-a86b-70dc8e48f50c", {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:41.408 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:41.408 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:41.408 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "9794abcd-8b44-4675-bd06-65f415fc", {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:41.408 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:41.408 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9794abcd-8b44-4675-bd06-65f415fc","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:41.409 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:41.409 [XNIO-1 task-1] T2rGFNFHT4SGuBYJhVpOqg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:41.414 [XNIO-1 task-1] yu7RhYLsR6KjR5vdGtWx3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.414 [XNIO-1 task-1] yu7RhYLsR6KjR5vdGtWx3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.415 [XNIO-1 task-1] yu7RhYLsR6KjR5vdGtWx3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.416 [XNIO-1 task-1] yu7RhYLsR6KjR5vdGtWx3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:41.473 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.473 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.474 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.475 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.475 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.475 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.475 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.476 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:41.476 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:41.476 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.476 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.476 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34d9d77b-1a60-4a71-8fe8-cb13620f","clientDesc":"c7bc6134-1a91-41a3-8d04-b72762728456","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:41.477 [XNIO-1 task-1] AfQ4XrZ-R9Sk6H2NX--X_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:41.506 [XNIO-1 task-1] SrZAE2Z3T-SG4L43jFWf0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e, base path is set to: null +00:00:41.506 [XNIO-1 task-1] SrZAE2Z3T-SG4L43jFWf0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.506 [XNIO-1 task-1] SrZAE2Z3T-SG4L43jFWf0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:41.506 [XNIO-1 task-1] SrZAE2Z3T-SG4L43jFWf0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e, base path is set to: null +00:00:41.507 [XNIO-1 task-1] SrZAE2Z3T-SG4L43jFWf0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6ad036bf-45ac-43b4-a020-d603e4f5a50e", "6ad036bf-45ac-43b4-a020-d603e4f5a50e", clientId) +00:00:41.511 [XNIO-1 task-1] cOW0a-sWTXKkHybhcDw9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.511 [XNIO-1 task-1] cOW0a-sWTXKkHybhcDw9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.511 [XNIO-1 task-1] cOW0a-sWTXKkHybhcDw9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.514 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d61f5b47 +00:00:41.572 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ba1011f2 +00:00:41.574 [XNIO-1 task-1] QBYc2ASdTcWa6TO1fZ3Bcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.574 [XNIO-1 task-1] QBYc2ASdTcWa6TO1fZ3Bcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.574 [XNIO-1 task-1] QBYc2ASdTcWa6TO1fZ3Bcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.596 [XNIO-1 task-1] SJ8rm0T3Q4Ormci1IOMMeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/03a06b80-06b3-4358-a031-3045220be230, base path is set to: null +00:00:41.596 [XNIO-1 task-1] SJ8rm0T3Q4Ormci1IOMMeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.596 [XNIO-1 task-1] SJ8rm0T3Q4Ormci1IOMMeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:41.596 [XNIO-1 task-1] SJ8rm0T3Q4Ormci1IOMMeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/03a06b80-06b3-4358-a031-3045220be230, base path is set to: null +00:00:41.597 [XNIO-1 task-1] SJ8rm0T3Q4Ormci1IOMMeg DEBUG com.networknt.schema.TypeValidator debug - validate( "03a06b80-06b3-4358-a031-3045220be230", "03a06b80-06b3-4358-a031-3045220be230", clientId) +00:00:41.606 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d61f5b47 +00:00:41.620 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ba1011f2 +00:00:41.630 [XNIO-1 task-1] 8YjK2eQaSd-J9a1BalN9hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e +00:00:41.630 [XNIO-1 task-1] 8YjK2eQaSd-J9a1BalN9hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.630 [XNIO-1 task-1] 8YjK2eQaSd-J9a1BalN9hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:41.630 [XNIO-1 task-1] 8YjK2eQaSd-J9a1BalN9hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6ad036bf-45ac-43b4-a020-d603e4f5a50e +00:00:41.641 [XNIO-1 task-1] VZhR4a59SgibAABtem5ugQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/803c8de7-45ff-4287-8813-59c13e75e353, base path is set to: null +00:00:41.642 [XNIO-1 task-1] VZhR4a59SgibAABtem5ugQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.642 [XNIO-1 task-1] VZhR4a59SgibAABtem5ugQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:41.642 [XNIO-1 task-1] VZhR4a59SgibAABtem5ugQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/803c8de7-45ff-4287-8813-59c13e75e353, base path is set to: null +00:00:41.642 [XNIO-1 task-1] VZhR4a59SgibAABtem5ugQ DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", clientId) +00:00:41.647 [XNIO-1 task-1] qvDWW6bQTpO0rP_-g_TbVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9cdc9018-a793-459c-902e-5794ac573957 +00:00:41.647 [XNIO-1 task-1] qvDWW6bQTpO0rP_-g_TbVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.647 [XNIO-1 task-1] qvDWW6bQTpO0rP_-g_TbVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:41.647 [XNIO-1 task-1] qvDWW6bQTpO0rP_-g_TbVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9cdc9018-a793-459c-902e-5794ac573957 +00:00:41.652 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.652 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.653 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.657 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.657 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.658 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.658 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.658 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:41.658 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:41.658 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.660 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.660 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19c98ae1-5041-4608-a40e-dcf19b18","clientDesc":"95cf3df7-180e-49de-a86b-70dc8e48f50c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:41.661 [XNIO-1 task-1] vo2dOvyERpO50SLFB4gpkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:41.665 [XNIO-1 task-1] BklUKsm8SvSJ_QjuTo9bvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.666 [XNIO-1 task-1] BklUKsm8SvSJ_QjuTo9bvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.666 [XNIO-1 task-1] BklUKsm8SvSJ_QjuTo9bvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.666 [XNIO-1 task-1] BklUKsm8SvSJ_QjuTo9bvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:41.803 [XNIO-1 task-1] mQaDxg3qQLWzHIGqQopF0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9cdc9018-a793-459c-902e-5794ac573957 +00:00:41.803 [XNIO-1 task-1] mQaDxg3qQLWzHIGqQopF0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.804 [XNIO-1 task-1] mQaDxg3qQLWzHIGqQopF0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:41.804 [XNIO-1 task-1] mQaDxg3qQLWzHIGqQopF0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9cdc9018-a793-459c-902e-5794ac573957 +00:00:41.811 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d61f5b47 +00:00:41.837 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ba1011f2 +00:00:41.840 [XNIO-1 task-1] An_cJH8LRQesCPhrk8w6Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.840 [XNIO-1 task-1] An_cJH8LRQesCPhrk8w6Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.841 [XNIO-1 task-1] An_cJH8LRQesCPhrk8w6Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.929 [XNIO-1 task-1] nc_sNIR2S5-ZzztS-4RBIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99f68871-fbca-4bc6-92d7-c9fd7096eae1 +00:00:41.929 [XNIO-1 task-1] nc_sNIR2S5-ZzztS-4RBIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.929 [XNIO-1 task-1] nc_sNIR2S5-ZzztS-4RBIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:41.929 [XNIO-1 task-1] nc_sNIR2S5-ZzztS-4RBIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99f68871-fbca-4bc6-92d7-c9fd7096eae1 +00:00:41.960 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.960 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:41.961 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:41.961 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.962 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0941649d-a863-4064-98af-2f141004","clientDesc":"fa3fcaa0-712c-4d14-8240-f5b8d0486294","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:41.963 [XNIO-1 task-1] YwBHPg2FRMyrWx--oNvAFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:41.967 [XNIO-1 task-1] zCFnY-hJRdmwC85LzL850g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.967 [XNIO-1 task-1] zCFnY-hJRdmwC85LzL850g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.968 [XNIO-1 task-1] zCFnY-hJRdmwC85LzL850g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.991 [XNIO-1 task-1] noLZNR_2RsuVoJub-pMgbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.991 [XNIO-1 task-1] noLZNR_2RsuVoJub-pMgbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.992 [XNIO-1 task-1] noLZNR_2RsuVoJub-pMgbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:41.992 [XNIO-1 task-1] noLZNR_2RsuVoJub-pMgbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.005 [XNIO-1 task-1] cwuN3i2fRnKp0haE0MorkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99f68871-fbca-4bc6-92d7-c9fd7096eae1 +00:00:42.005 [XNIO-1 task-1] cwuN3i2fRnKp0haE0MorkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.005 [XNIO-1 task-1] cwuN3i2fRnKp0haE0MorkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.005 [XNIO-1 task-1] cwuN3i2fRnKp0haE0MorkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99f68871-fbca-4bc6-92d7-c9fd7096eae1 +00:00:42.010 [XNIO-1 task-1] krWeooCBTmqFwgwZkM5QkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.011 [XNIO-1 task-1] krWeooCBTmqFwgwZkM5QkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.011 [XNIO-1 task-1] krWeooCBTmqFwgwZkM5QkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.099 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ba1011f2 +00:00:42.125 [XNIO-1 task-1] SNagYzBNS92rsjGIFrSgKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.125 [XNIO-1 task-1] SNagYzBNS92rsjGIFrSgKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.126 [XNIO-1 task-1] SNagYzBNS92rsjGIFrSgKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.180 [XNIO-1 task-1] EmMa8Wd2StKqpwXSREZXfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.180 [XNIO-1 task-1] EmMa8Wd2StKqpwXSREZXfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.180 [XNIO-1 task-1] EmMa8Wd2StKqpwXSREZXfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.200 [XNIO-1 task-1] H-2K4CjUT3iZiQaMwkOJCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/99f68871-fbca-4bc6-92d7-c9fd7096eae1, base path is set to: null +00:00:42.200 [XNIO-1 task-1] H-2K4CjUT3iZiQaMwkOJCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.200 [XNIO-1 task-1] H-2K4CjUT3iZiQaMwkOJCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:42.200 [XNIO-1 task-1] H-2K4CjUT3iZiQaMwkOJCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/99f68871-fbca-4bc6-92d7-c9fd7096eae1, base path is set to: null +00:00:42.201 [XNIO-1 task-1] H-2K4CjUT3iZiQaMwkOJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "99f68871-fbca-4bc6-92d7-c9fd7096eae1", "99f68871-fbca-4bc6-92d7-c9fd7096eae1", clientId) +00:00:42.221 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.221 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.222 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.222 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.222 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:42.222 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG com.networknt.schema.TypeValidator debug - validate( "05fbb39b-0c54-4381-a745-fe902c3b58c0", {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:42.223 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:42.223 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:42.223 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG com.networknt.schema.TypeValidator debug - validate( "a567fe77-9f42-400e-bf5f-8edd25fb", {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:42.223 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:42.223 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a567fe77-9f42-400e-bf5f-8edd25fb","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:42.223 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:42.223 [XNIO-1 task-1] l5-sYgsjTEaXnNcRYeIpSw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:42.231 [XNIO-1 task-1] ZTl9dId0Rs2opc7BKiX61A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.231 [XNIO-1 task-1] ZTl9dId0Rs2opc7BKiX61A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.231 [XNIO-1 task-1] ZTl9dId0Rs2opc7BKiX61A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.248 [XNIO-1 task-1] SDPHg4c1Rk6aXtGiRTkSfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.248 [XNIO-1 task-1] SDPHg4c1Rk6aXtGiRTkSfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.249 [XNIO-1 task-1] SDPHg4c1Rk6aXtGiRTkSfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.268 [XNIO-1 task-1] sAqRd_DfQ7C_FTFsGkuu8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f174ad3e-ae7e-49ca-a768-404b30b51f4d, base path is set to: null +00:00:42.268 [XNIO-1 task-1] sAqRd_DfQ7C_FTFsGkuu8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.268 [XNIO-1 task-1] sAqRd_DfQ7C_FTFsGkuu8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:42.268 [XNIO-1 task-1] sAqRd_DfQ7C_FTFsGkuu8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f174ad3e-ae7e-49ca-a768-404b30b51f4d, base path is set to: null +00:00:42.268 [XNIO-1 task-1] sAqRd_DfQ7C_FTFsGkuu8g DEBUG com.networknt.schema.TypeValidator debug - validate( "f174ad3e-ae7e-49ca-a768-404b30b51f4d", "f174ad3e-ae7e-49ca-a768-404b30b51f4d", clientId) +00:00:42.279 [XNIO-1 task-1] 89q5H93VSuOAmA9dPY82wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eb17034d-7b44-48df-9fd6-00336a68630d +00:00:42.279 [XNIO-1 task-1] 89q5H93VSuOAmA9dPY82wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.279 [XNIO-1 task-1] 89q5H93VSuOAmA9dPY82wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.279 [XNIO-1 task-1] 89q5H93VSuOAmA9dPY82wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eb17034d-7b44-48df-9fd6-00336a68630d +00:00:42.285 [XNIO-1 task-1] qmA1oGEiSbqsVhovWDqYWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27591882-7f7e-40b9-a9a1-1315bab45927, base path is set to: null +00:00:42.285 [XNIO-1 task-1] qmA1oGEiSbqsVhovWDqYWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.285 [XNIO-1 task-1] qmA1oGEiSbqsVhovWDqYWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:42.285 [XNIO-1 task-1] qmA1oGEiSbqsVhovWDqYWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/27591882-7f7e-40b9-a9a1-1315bab45927, base path is set to: null +00:00:42.285 [XNIO-1 task-1] qmA1oGEiSbqsVhovWDqYWw DEBUG com.networknt.schema.TypeValidator debug - validate( "27591882-7f7e-40b9-a9a1-1315bab45927", "27591882-7f7e-40b9-a9a1-1315bab45927", clientId) +00:00:42.313 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.314 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.314 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "05fbb39b-0c54-4381-a745-fe902c3b58c0", {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ea7e71bf-8b68-4345-a14b-fcd1312a", {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ea7e71bf-8b68-4345-a14b-fcd1312a","clientDesc":"05fbb39b-0c54-4381-a745-fe902c3b58c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:42.315 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:42.335 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:230fc5a3 +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:42.355 [XNIO-1 task-1] szaTvLU7QpS50ViRm-pXrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:42.375 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:230fc5a3 +00:00:42.442 [XNIO-1 task-1] psRmVmDEQC2l6op9c5w9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.442 [XNIO-1 task-1] psRmVmDEQC2l6op9c5w9tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.442 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5 +00:00:42.443 [XNIO-1 task-1] psRmVmDEQC2l6op9c5w9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.444 [XNIO-1 task-1] psRmVmDEQC2l6op9c5w9tA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.452 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ba1011f2 +00:00:42.463 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:230fc5a3 +00:00:42.511 [XNIO-1 task-1] 8iYr1gg2R4KxZTC6fzbK0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.511 [XNIO-1 task-1] 8iYr1gg2R4KxZTC6fzbK0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.511 [XNIO-1 task-1] 8iYr1gg2R4KxZTC6fzbK0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.511 [XNIO-1 task-1] 8iYr1gg2R4KxZTC6fzbK0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.523 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:230fc5a3 +00:00:42.552 [XNIO-1 task-1] LAO07cCZQeyFCRNXgKKvFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.552 [XNIO-1 task-1] LAO07cCZQeyFCRNXgKKvFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.552 [XNIO-1 task-1] LAO07cCZQeyFCRNXgKKvFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.573 [XNIO-1 task-1] DL7TSkomRg2QQvWTtK4f4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f174ad3e-ae7e-49ca-a768-404b30b51f4d +00:00:42.575 [XNIO-1 task-1] DL7TSkomRg2QQvWTtK4f4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.575 [XNIO-1 task-1] DL7TSkomRg2QQvWTtK4f4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.575 [XNIO-1 task-1] DL7TSkomRg2QQvWTtK4f4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f174ad3e-ae7e-49ca-a768-404b30b51f4d +00:00:42.590 [XNIO-1 task-1] JWZdzp1fQ7K-dokheNTZRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/800c022b-f8af-42d3-afdc-f6b54235f94a, base path is set to: null +00:00:42.590 [XNIO-1 task-1] JWZdzp1fQ7K-dokheNTZRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.591 [XNIO-1 task-1] JWZdzp1fQ7K-dokheNTZRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:42.591 [XNIO-1 task-1] JWZdzp1fQ7K-dokheNTZRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/800c022b-f8af-42d3-afdc-f6b54235f94a, base path is set to: null +00:00:42.591 [XNIO-1 task-1] JWZdzp1fQ7K-dokheNTZRA DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", clientId) +00:00:42.594 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:230fc5a3 +00:00:42.598 [XNIO-1 task-1] 1udN2u4zSl2IpSQ23REAcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.598 [XNIO-1 task-1] 1udN2u4zSl2IpSQ23REAcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.599 [XNIO-1 task-1] 1udN2u4zSl2IpSQ23REAcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.647 [XNIO-1 task-1] AKrDnScnT-Sv_unR1NTzQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7d2c3dc7-4dc7-4475-9669-f50532fd90f1 +00:00:42.647 [XNIO-1 task-1] AKrDnScnT-Sv_unR1NTzQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.647 [XNIO-1 task-1] AKrDnScnT-Sv_unR1NTzQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.647 [XNIO-1 task-1] AKrDnScnT-Sv_unR1NTzQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7d2c3dc7-4dc7-4475-9669-f50532fd90f1 +00:00:42.670 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.671 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.671 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.672 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.672 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.672 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.672 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.672 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:42.672 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:42.672 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.673 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.673 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0911e7a8-b315-447b-a51f-94501dbd","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:42.673 [XNIO-1 task-1] e0_UaGVWSpeGWR9ZDFzjtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:42.680 [XNIO-1 task-1] AGc81cQkRfiKbujLWOmwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:42.680 [XNIO-1 task-1] AGc81cQkRfiKbujLWOmwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.681 [XNIO-1 task-1] AGc81cQkRfiKbujLWOmwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.681 [XNIO-1 task-1] AGc81cQkRfiKbujLWOmwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:42.688 [XNIO-1 task-1] m3AhgOqKRVK7-saEqquKMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.688 [XNIO-1 task-1] m3AhgOqKRVK7-saEqquKMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.688 [XNIO-1 task-1] m3AhgOqKRVK7-saEqquKMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.719 [XNIO-1 task-1] 8vvQpYRuSoajxzDUkBMkWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.719 [XNIO-1 task-1] 8vvQpYRuSoajxzDUkBMkWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.720 [XNIO-1 task-1] 8vvQpYRuSoajxzDUkBMkWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.756 [XNIO-1 task-1] eYjIamewQDW-84K15NzUmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.757 [XNIO-1 task-1] eYjIamewQDW-84K15NzUmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.757 [XNIO-1 task-1] eYjIamewQDW-84K15NzUmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.757 [XNIO-1 task-1] eYjIamewQDW-84K15NzUmA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.846 [XNIO-1 task-1] MzfPZ6e9Q8-Jj2OjRyIeAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb17034d-7b44-48df-9fd6-00336a68630d, base path is set to: null +00:00:42.847 [XNIO-1 task-1] MzfPZ6e9Q8-Jj2OjRyIeAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.847 [XNIO-1 task-1] MzfPZ6e9Q8-Jj2OjRyIeAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:42.848 [XNIO-1 task-1] MzfPZ6e9Q8-Jj2OjRyIeAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb17034d-7b44-48df-9fd6-00336a68630d, base path is set to: null +00:00:42.851 [XNIO-1 task-1] MzfPZ6e9Q8-Jj2OjRyIeAA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb17034d-7b44-48df-9fd6-00336a68630d", "eb17034d-7b44-48df-9fd6-00336a68630d", clientId) +00:00:42.863 [XNIO-1 task-1] eLKYMiE7QaKfmR8fiU-O7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.863 [XNIO-1 task-1] eLKYMiE7QaKfmR8fiU-O7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.865 [XNIO-1 task-1] eLKYMiE7QaKfmR8fiU-O7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.900 [XNIO-1 task-1] -ivsZh2VQLK_Yyyt6ldSdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d +00:00:42.900 [XNIO-1 task-1] -ivsZh2VQLK_Yyyt6ldSdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.900 [XNIO-1 task-1] -ivsZh2VQLK_Yyyt6ldSdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.900 [XNIO-1 task-1] -ivsZh2VQLK_Yyyt6ldSdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d +00:00:42.902 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5 +00:00:42.906 [XNIO-1 task-1] l4wjLYGmRDyyAEF6v8WI6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.910 [XNIO-1 task-1] l4wjLYGmRDyyAEF6v8WI6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.910 [XNIO-1 task-1] l4wjLYGmRDyyAEF6v8WI6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.911 [XNIO-1 task-1] l4wjLYGmRDyyAEF6v8WI6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.949 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:230fc5a3 +00:00:42.955 [XNIO-1 task-1] ZudR1ovFT82ZHMGj-Ehv_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.955 [XNIO-1 task-1] ZudR1ovFT82ZHMGj-Ehv_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.956 [XNIO-1 task-1] ZudR1ovFT82ZHMGj-Ehv_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:42.956 [XNIO-1 task-1] ZudR1ovFT82ZHMGj-Ehv_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.971 [XNIO-1 task-1] d0OHsbnaSvKuNGgdRk4V6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:42.971 [XNIO-1 task-1] d0OHsbnaSvKuNGgdRk4V6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.972 [XNIO-1 task-1] d0OHsbnaSvKuNGgdRk4V6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:42.972 [XNIO-1 task-1] d0OHsbnaSvKuNGgdRk4V6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:42.972 [XNIO-1 task-1] d0OHsbnaSvKuNGgdRk4V6w DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", clientId) +00:00:42.978 [XNIO-1 task-1] AM7RpuToRW-3r5nSFx-4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:42.978 [XNIO-1 task-1] AM7RpuToRW-3r5nSFx-4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.978 [XNIO-1 task-1] AM7RpuToRW-3r5nSFx-4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.979 [XNIO-1 task-1] AM7RpuToRW-3r5nSFx-4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:42.983 [XNIO-1 task-1] 7-44rQZ6Rb24LfJxm-RRmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:42.984 [XNIO-1 task-1] 7-44rQZ6Rb24LfJxm-RRmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:42.984 [XNIO-1 task-1] 7-44rQZ6Rb24LfJxm-RRmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:42.984 [XNIO-1 task-1] 7-44rQZ6Rb24LfJxm-RRmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:42.984 [XNIO-1 task-1] 7-44rQZ6Rb24LfJxm-RRmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", clientId) +00:00:42.989 [XNIO-1 task-1] NxY46vlCQCu572SdiCNC3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/19c2c870-c6f3-4285-87c5-0bc3f0b11466 +00:00:42.990 [XNIO-1 task-1] NxY46vlCQCu572SdiCNC3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:42.991 [XNIO-1 task-1] NxY46vlCQCu572SdiCNC3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:42.991 [XNIO-1 task-1] NxY46vlCQCu572SdiCNC3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/19c2c870-c6f3-4285-87c5-0bc3f0b11466 +00:00:43.011 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.011 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.011 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.012 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.013 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac13e935-6e7c-4946-a737-d3ddad5c","clientDesc":"57e0b6f2-6046-42cb-9962-7b7f8d627758","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.014 [XNIO-1 task-1] OywxtITgRwOrwNlw0qFNSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:43.021 [XNIO-1 task-1] MiEc_-U8TDOlH5Ht5geNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/afd5f901-7e10-4d82-9011-20cd66ee7c74 +00:00:43.021 [XNIO-1 task-1] MiEc_-U8TDOlH5Ht5geNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.021 [XNIO-1 task-1] MiEc_-U8TDOlH5Ht5geNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:43.022 [XNIO-1 task-1] MiEc_-U8TDOlH5Ht5geNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/afd5f901-7e10-4d82-9011-20cd66ee7c74 +00:00:43.034 [XNIO-1 task-1] YyADrBrYRB2z4_Fdg4ebHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787, base path is set to: null +00:00:43.034 [XNIO-1 task-1] YyADrBrYRB2z4_Fdg4ebHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.034 [XNIO-1 task-1] YyADrBrYRB2z4_Fdg4ebHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:43.035 [XNIO-1 task-1] YyADrBrYRB2z4_Fdg4ebHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787, base path is set to: null +00:00:43.035 [XNIO-1 task-1] YyADrBrYRB2z4_Fdg4ebHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b36abf86-7c4c-409b-a18c-29e2b5b20787", "b36abf86-7c4c-409b-a18c-29e2b5b20787", clientId) +00:00:43.039 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.039 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.040 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.041 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.041 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:43.042 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "955b49eb-96a7-4a63-bacf-d45fd87e7c34", {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:43.042 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.043 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.043 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "2a5a9b86-7ac8-4fde-9998-ee128945", {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:43.043 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.043 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2a5a9b86-7ac8-4fde-9998-ee128945","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.043 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.043 [XNIO-1 task-1] 2UprKminSPO0928OHIVt_w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.047 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.048 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.048 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.049 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.050 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccba8e28-0bcd-4a32-82cb-0fe4f231","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.051 [XNIO-1 task-1] 5mMK7pPyT92PKh51Rb4iBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:43.058 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.058 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.058 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.059 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.059 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:43.059 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "120b2e89-e300-41d8-b593-0603c3f3f2a1", {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:43.059 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.060 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.060 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "fce6b06d-ca34-4198-95ed-08ada6d7", {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:43.060 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.060 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fce6b06d-ca34-4198-95ed-08ada6d7","clientDesc":"120b2e89-e300-41d8-b593-0603c3f3f2a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.060 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.060 [XNIO-1 task-1] Pqn6gWBkR8aOnPC3sjFvzw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.064 [XNIO-1 task-1] cWfO1CswSvGA-LpN_7tThQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.064 [XNIO-1 task-1] cWfO1CswSvGA-LpN_7tThQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.064 [XNIO-1 task-1] cWfO1CswSvGA-LpN_7tThQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.065 [XNIO-1 task-1] cWfO1CswSvGA-LpN_7tThQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.100 [XNIO-1 task-1] 0qvab9DsSiePTpMUTRK4_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.101 [XNIO-1 task-1] 0qvab9DsSiePTpMUTRK4_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.101 [XNIO-1 task-1] 0qvab9DsSiePTpMUTRK4_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.107 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b53f4295-c4ab-405b-80ae-60c01649c1d5 +00:00:43.108 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b53f4295-c4ab-405b-80ae-60c01649c1d5 +00:00:43.121 [XNIO-1 task-1] BG4yRpAcQri3HS9j-4Liog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.122 [XNIO-1 task-1] BG4yRpAcQri3HS9j-4Liog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.122 [XNIO-1 task-1] BG4yRpAcQri3HS9j-4Liog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.123 [XNIO-1 task-1] BG4yRpAcQri3HS9j-4Liog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.182 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.182 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.182 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.183 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.183 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.183 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.183 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.183 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.183 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.184 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.184 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.184 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c9118e96-6b5c-4259-ab55-1c2d88bb","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.184 [XNIO-1 task-1] 8kf04jXOR4-IeYyJVenhmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:43.191 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.191 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.191 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.192 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.192 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:43.192 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c4c7e3-9651-4f65-b895-6d8379ca26c8", {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:43.192 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.192 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.193 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG com.networknt.schema.TypeValidator debug - validate( "5d6e1d91-2728-4ff6-b591-5eee511b", {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:43.193 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.193 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5d6e1d91-2728-4ff6-b591-5eee511b","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.193 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.193 [XNIO-1 task-1] VIrE8xVCSryraFrUSyyAng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.198 [XNIO-1 task-1] nGacbUx7SSi7gXVJjBxcIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.198 [XNIO-1 task-1] nGacbUx7SSi7gXVJjBxcIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.199 [XNIO-1 task-1] nGacbUx7SSi7gXVJjBxcIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.203 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3ad9390d +00:00:43.222 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.223 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.223 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.224 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.224 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.224 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.224 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.226 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.227 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.227 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.227 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.227 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf5f3c99-6027-4188-9c93-3b54c7b0","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.228 [XNIO-1 task-1] gN0N3HnlQjm7o1CDyjPHqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:43.231 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3ad9390d +00:00:43.236 [XNIO-1 task-1] _iE1g3-vTk60fO-3isNwfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d +00:00:43.237 [XNIO-1 task-1] _iE1g3-vTk60fO-3isNwfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.237 [XNIO-1 task-1] _iE1g3-vTk60fO-3isNwfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:43.237 [XNIO-1 task-1] _iE1g3-vTk60fO-3isNwfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d +00:00:43.241 [XNIO-1 task-1] EEcilurlTIO4nT1qrQ3K7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.241 [XNIO-1 task-1] EEcilurlTIO4nT1qrQ3K7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.242 [XNIO-1 task-1] EEcilurlTIO4nT1qrQ3K7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.254 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3ad9390d +00:00:43.264 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:230fc5a3 +00:00:43.266 [XNIO-1 task-1] XezoumK5SQiV66l8hlaeRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.266 [XNIO-1 task-1] XezoumK5SQiV66l8hlaeRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.266 [XNIO-1 task-1] XezoumK5SQiV66l8hlaeRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.323 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aa13a50a-15c2-4638-ac84-ee16b170b91b +00:00:43.324 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:230fc5a3 +00:00:43.333 [XNIO-1 task-1] dH9oOcMdRx2uXBnBHthOQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.334 [XNIO-1 task-1] dH9oOcMdRx2uXBnBHthOQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.334 [XNIO-1 task-1] dH9oOcMdRx2uXBnBHthOQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.334 [XNIO-1 task-1] dH9oOcMdRx2uXBnBHthOQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.356 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:230fc5a3 +00:00:43.362 [XNIO-1 task-1] kKRn37ugRhC2k32QnhVrXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.362 [XNIO-1 task-1] kKRn37ugRhC2k32QnhVrXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.363 [XNIO-1 task-1] kKRn37ugRhC2k32QnhVrXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.385 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:230fc5a3 +00:00:43.393 [XNIO-1 task-1] Ii0HI_uwRkuzWoeWOhUu3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.393 [XNIO-1 task-1] Ii0HI_uwRkuzWoeWOhUu3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.394 [XNIO-1 task-1] Ii0HI_uwRkuzWoeWOhUu3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.454 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.454 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.456 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "c229e300-6330-415e-ba7c-dca91d653ebd", {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "1f01ed60-fb8e-4c47-b179-ac7b13a1", {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1f01ed60-fb8e-4c47-b179-ac7b13a1","clientDesc":"c229e300-6330-415e-ba7c-dca91d653ebd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.457 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.458 [XNIO-1 task-1] JanyyPtgTuSaFgKFeyWvwg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.462 [XNIO-1 task-1] qCbFsIMuTmuCTlgxNrNNKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.462 [XNIO-1 task-1] qCbFsIMuTmuCTlgxNrNNKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.463 [XNIO-1 task-1] qCbFsIMuTmuCTlgxNrNNKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.466 [XNIO-1 task-1] qCbFsIMuTmuCTlgxNrNNKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.486 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.486 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.486 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.487 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.487 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.487 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.487 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.488 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.488 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.488 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.488 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.488 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"32b3dd45-b09f-4db9-9f51-46c6ad6e","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.489 [XNIO-1 task-1] tGxr3bFKQKOPV1hIYF3v6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:43.492 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.492 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.492 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG com.networknt.schema.TypeValidator debug - validate( "218bbcfa-3104-467b-b2bc-2eb910ba4f5b", {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG com.networknt.schema.TypeValidator debug - validate( "c068daf6-ecc0-42e0-8df9-9e69cddc", {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.493 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c068daf6-ecc0-42e0-8df9-9e69cddc","clientDesc":"218bbcfa-3104-467b-b2bc-2eb910ba4f5b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.494 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.494 [XNIO-1 task-1] MawGfFMXR4Gl-4thlrmoKA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.497 [XNIO-1 task-1] PqnG0rKORNi7NeFmAxOkEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.497 [XNIO-1 task-1] PqnG0rKORNi7NeFmAxOkEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.497 [XNIO-1 task-1] PqnG0rKORNi7NeFmAxOkEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.517 [XNIO-1 task-1] w8mKBsVUQDePcRM8oar1kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e267e5c7-f78e-4258-ae59-278dc374c816, base path is set to: null +00:00:43.517 [XNIO-1 task-1] w8mKBsVUQDePcRM8oar1kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.517 [XNIO-1 task-1] w8mKBsVUQDePcRM8oar1kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:43.518 [XNIO-1 task-1] w8mKBsVUQDePcRM8oar1kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e267e5c7-f78e-4258-ae59-278dc374c816, base path is set to: null +00:00:43.518 [XNIO-1 task-1] w8mKBsVUQDePcRM8oar1kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e267e5c7-f78e-4258-ae59-278dc374c816", "e267e5c7-f78e-4258-ae59-278dc374c816", clientId) +00:00:43.526 [XNIO-1 task-1] 7UmEZ25KRGiKuzDucSYHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.526 [XNIO-1 task-1] 7UmEZ25KRGiKuzDucSYHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.526 [XNIO-1 task-1] 7UmEZ25KRGiKuzDucSYHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.527 [XNIO-1 task-1] 7UmEZ25KRGiKuzDucSYHug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.572 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.572 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.574 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.575 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.575 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.575 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.575 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.576 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.576 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.576 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.577 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.577 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c497831c-40d3-49b2-9672-ce156085","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.578 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:05b0acba +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.578 [XNIO-1 task-1] VRU0gEdMRKast3S6dXJp1g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:43.610 [XNIO-1 task-1] WGXELNcARaK2md1F1w9d7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.610 [XNIO-1 task-1] WGXELNcARaK2md1F1w9d7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.612 [XNIO-1 task-1] WGXELNcARaK2md1F1w9d7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.645 [XNIO-1 task-1] lVrCNb41Tk6BtiQ_npFEpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b53f4295-c4ab-405b-80ae-60c01649c1d5 +00:00:43.645 [XNIO-1 task-1] lVrCNb41Tk6BtiQ_npFEpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.645 [XNIO-1 task-1] lVrCNb41Tk6BtiQ_npFEpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:43.646 [XNIO-1 task-1] lVrCNb41Tk6BtiQ_npFEpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b53f4295-c4ab-405b-80ae-60c01649c1d5 +00:00:43.651 [XNIO-1 task-1] LScihCACRHSSs2IQWJMeQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.651 [XNIO-1 task-1] LScihCACRHSSs2IQWJMeQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.652 [XNIO-1 task-1] LScihCACRHSSs2IQWJMeQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:43.659 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7e1ff1d9-68a8-4332-bda3-732886544b20 +00:00:43.661 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7e1ff1d9-68a8-4332-bda3-732886544b20 +00:00:43.679 [XNIO-1 task-1] SZRJQoI0TFWLodX-yUiXyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.679 [XNIO-1 task-1] SZRJQoI0TFWLodX-yUiXyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.679 [XNIO-1 task-1] SZRJQoI0TFWLodX-yUiXyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.680 [XNIO-1 task-1] SZRJQoI0TFWLodX-yUiXyQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.772 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.774 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.774 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.775 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.775 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:43.775 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca1df808-898b-44b0-aab3-260118a5552e", {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:43.775 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.775 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.776 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "71f62028-51a2-454f-8ccb-364db87d", {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:43.776 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.776 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"71f62028-51a2-454f-8ccb-364db87d","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.776 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.776 [XNIO-1 task-1] IKS1zo-pTOqWk3Jb6cN6Qw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.782 [XNIO-1 task-1] YcrRvTwaRWyDfPso3sO4VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6c0c8931-b0fb-4b71-8d8e-5ea3456ea507, base path is set to: null +00:00:43.782 [XNIO-1 task-1] YcrRvTwaRWyDfPso3sO4VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.782 [XNIO-1 task-1] YcrRvTwaRWyDfPso3sO4VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:43.783 [XNIO-1 task-1] YcrRvTwaRWyDfPso3sO4VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6c0c8931-b0fb-4b71-8d8e-5ea3456ea507, base path is set to: null +00:00:43.783 [XNIO-1 task-1] YcrRvTwaRWyDfPso3sO4VA DEBUG com.networknt.schema.TypeValidator debug - validate( "6c0c8931-b0fb-4b71-8d8e-5ea3456ea507", "6c0c8931-b0fb-4b71-8d8e-5ea3456ea507", clientId) +00:00:43.789 [XNIO-1 task-1] OO2HrTRZROuUq0YIBq13cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6c0c8931-b0fb-4b71-8d8e-5ea3456ea507 +00:00:43.789 [XNIO-1 task-1] OO2HrTRZROuUq0YIBq13cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.790 [XNIO-1 task-1] OO2HrTRZROuUq0YIBq13cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:43.790 [XNIO-1 task-1] OO2HrTRZROuUq0YIBq13cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6c0c8931-b0fb-4b71-8d8e-5ea3456ea507 +00:00:43.808 [XNIO-1 task-1] suEWl_lJQcKLgO5oaVn8hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:43.808 [XNIO-1 task-1] suEWl_lJQcKLgO5oaVn8hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.809 [XNIO-1 task-1] suEWl_lJQcKLgO5oaVn8hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:43.809 [XNIO-1 task-1] suEWl_lJQcKLgO5oaVn8hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:43.809 [XNIO-1 task-1] suEWl_lJQcKLgO5oaVn8hw DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", clientId) +00:00:43.941 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3ad9390d +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:43.941 [XNIO-1 task-1] suEWl_lJQcKLgO5oaVn8hw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:43.948 [XNIO-1 task-1] eZ7OvmG5TcOprHd8T3oV6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/053ac611-7e0b-4119-8ec8-693366fcb7ef, base path is set to: null +00:00:43.948 [XNIO-1 task-1] eZ7OvmG5TcOprHd8T3oV6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:43.948 [XNIO-1 task-1] eZ7OvmG5TcOprHd8T3oV6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:43.948 [XNIO-1 task-1] eZ7OvmG5TcOprHd8T3oV6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/053ac611-7e0b-4119-8ec8-693366fcb7ef, base path is set to: null +00:00:43.949 [XNIO-1 task-1] eZ7OvmG5TcOprHd8T3oV6g DEBUG com.networknt.schema.TypeValidator debug - validate( "053ac611-7e0b-4119-8ec8-693366fcb7ef", "053ac611-7e0b-4119-8ec8-693366fcb7ef", clientId) +00:00:43.955 [XNIO-1 task-1] CRBLnlgQQwmZFxy83iByXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.955 [XNIO-1 task-1] CRBLnlgQQwmZFxy83iByXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.956 [XNIO-1 task-1] CRBLnlgQQwmZFxy83iByXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.981 [XNIO-1 task-1] a-7ZWyLCQkO4uvTefiJZcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.981 [XNIO-1 task-1] a-7ZWyLCQkO4uvTefiJZcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.981 [XNIO-1 task-1] a-7ZWyLCQkO4uvTefiJZcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.981 [XNIO-1 task-1] a-7ZWyLCQkO4uvTefiJZcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.992 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:05b0acba +00:00:43.994 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.994 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.995 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:43.995 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.995 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:43.995 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c4c7e3-9651-4f65-b895-6d8379ca26c8", {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:43.995 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:43.995 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:43.996 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "e41f0e29-e512-4386-ace2-d9b4ce40", {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:43.996 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.996 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e41f0e29-e512-4386-ace2-d9b4ce40","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.996 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:43.996 [XNIO-1 task-1] o_RSI9GLSlGpv_W4JmOLJA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:44.001 [XNIO-1 task-1] 3OU7UdugStSmlLcPUmrW2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.002 [XNIO-1 task-1] 3OU7UdugStSmlLcPUmrW2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.003 [XNIO-1 task-1] 3OU7UdugStSmlLcPUmrW2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.075 [XNIO-1 task-1] 0p2rOb9uREudWyIQHq1RpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.075 [XNIO-1 task-1] 0p2rOb9uREudWyIQHq1RpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.076 [XNIO-1 task-1] 0p2rOb9uREudWyIQHq1RpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.103 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.103 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.104 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.104 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.105 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.105 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.105 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.105 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.105 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.105 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.110 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.110 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7bd14d0-71f4-41a5-98db-2447d612","clientDesc":"7d3ec494-3575-40b5-b756-bb52ecca3aea","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.111 [XNIO-1 task-1] NZwMdaqqTzm_a17lSOmgbQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.123 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.123 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.128 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f2ce0e22 +00:00:44.130 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.131 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.133 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.133 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.133 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.134 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.134 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.134 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.134 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.134 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e0ec26c-e5a6-49c3-8fde-ba537799","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.134 [XNIO-1 task-1] VUYK7bLdSAGjTKoD1-FVLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.141 [XNIO-1 task-1] B8SsK9E9RJ6b-OEx-RPtwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.142 [XNIO-1 task-1] B8SsK9E9RJ6b-OEx-RPtwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.142 [XNIO-1 task-1] B8SsK9E9RJ6b-OEx-RPtwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.171 [XNIO-1 task-1] Gk92TnmPRTaNGG9zrkfesg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/82c3c92e-aa5e-4766-b049-9e8b3ecd7836 +00:00:44.171 [XNIO-1 task-1] Gk92TnmPRTaNGG9zrkfesg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.171 [XNIO-1 task-1] Gk92TnmPRTaNGG9zrkfesg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:44.171 [XNIO-1 task-1] Gk92TnmPRTaNGG9zrkfesg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/82c3c92e-aa5e-4766-b049-9e8b3ecd7836 +00:00:44.183 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.183 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.184 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.184 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.184 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.185 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.185 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.185 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.185 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.185 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.185 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.185 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef868290-60d7-4052-9e4c-34b5c8dc","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.186 [XNIO-1 task-1] zt1sj77KQJ6LHwQ-FWDzTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.192 [XNIO-1 task-1] e4u6P5leRJOl85xEh6Vrtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e267e5c7-f78e-4258-ae59-278dc374c816 +00:00:44.192 [XNIO-1 task-1] e4u6P5leRJOl85xEh6Vrtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.192 [XNIO-1 task-1] e4u6P5leRJOl85xEh6Vrtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:44.192 [XNIO-1 task-1] e4u6P5leRJOl85xEh6Vrtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e267e5c7-f78e-4258-ae59-278dc374c816 +00:00:44.199 [XNIO-1 task-1] nBi27ZjcSauoawbGiME7JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.200 [XNIO-1 task-1] nBi27ZjcSauoawbGiME7JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.200 [XNIO-1 task-1] nBi27ZjcSauoawbGiME7JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.200 [XNIO-1 task-1] nBi27ZjcSauoawbGiME7JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.255 [XNIO-1 task-1] JryfvvIuS7WVRXe2VXsNQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.256 [XNIO-1 task-1] JryfvvIuS7WVRXe2VXsNQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.256 [XNIO-1 task-1] JryfvvIuS7WVRXe2VXsNQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.256 [XNIO-1 task-1] JryfvvIuS7WVRXe2VXsNQA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.276 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.277 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.278 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.278 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.278 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.278 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.278 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.278 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.279 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.279 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.279 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.279 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"99a965ad-e63c-4394-95f3-c8b36e23","clientDesc":"05ea06f2-d8bc-4415-ae42-09fffa189a19","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.299 [XNIO-1 task-1] fgERgDa2RsKEL7Q0DUDLhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.308 [XNIO-1 task-1] mYIkiCDIRP2XbuJtU63cJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.308 [XNIO-1 task-1] mYIkiCDIRP2XbuJtU63cJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.308 [XNIO-1 task-1] mYIkiCDIRP2XbuJtU63cJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.309 [XNIO-1 task-1] mYIkiCDIRP2XbuJtU63cJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.320 [XNIO-1 task-1] _At_DTbnQ2emXqPpBWI_UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.320 [XNIO-1 task-1] _At_DTbnQ2emXqPpBWI_UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.321 [XNIO-1 task-1] _At_DTbnQ2emXqPpBWI_UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.328 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:29fbde61-63b5-4061-b72a-a3c2a39376f9 +00:00:44.342 [XNIO-1 task-1] nsGS6wytRiO6W4EqRZ5F7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.343 [XNIO-1 task-1] nsGS6wytRiO6W4EqRZ5F7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.343 [XNIO-1 task-1] nsGS6wytRiO6W4EqRZ5F7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.364 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.364 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.365 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.365 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.366 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efea8c92-ea3e-4b32-b005-eaf9da45","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.367 [XNIO-1 task-1] VDmn2fkPSySMPAvALAV_nQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.371 [XNIO-1 task-1] d8SEhisZR02PtXG4G8cn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16424c1d-81a4-4ff1-9eb7-9bdc10b896ea +00:00:44.371 [XNIO-1 task-1] d8SEhisZR02PtXG4G8cn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.371 [XNIO-1 task-1] d8SEhisZR02PtXG4G8cn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:44.371 [XNIO-1 task-1] d8SEhisZR02PtXG4G8cn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16424c1d-81a4-4ff1-9eb7-9bdc10b896ea +00:00:44.376 [XNIO-1 task-1] RvDo7DivSbKHnHo1nt-mmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/16424c1d-81a4-4ff1-9eb7-9bdc10b896ea, base path is set to: null +00:00:44.376 [XNIO-1 task-1] RvDo7DivSbKHnHo1nt-mmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.376 [XNIO-1 task-1] RvDo7DivSbKHnHo1nt-mmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:44.376 [XNIO-1 task-1] RvDo7DivSbKHnHo1nt-mmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/16424c1d-81a4-4ff1-9eb7-9bdc10b896ea, base path is set to: null +00:00:44.377 [XNIO-1 task-1] RvDo7DivSbKHnHo1nt-mmg DEBUG com.networknt.schema.TypeValidator debug - validate( "16424c1d-81a4-4ff1-9eb7-9bdc10b896ea", "16424c1d-81a4-4ff1-9eb7-9bdc10b896ea", clientId) +00:00:44.378 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4277ed43-2178-4071-b164-b1a8154b8d3c +00:00:44.391 [XNIO-1 task-1] kIL8gaeUQ02pLSmbIF9lOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0 +00:00:44.391 [XNIO-1 task-1] kIL8gaeUQ02pLSmbIF9lOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.391 [XNIO-1 task-1] kIL8gaeUQ02pLSmbIF9lOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:44.391 [XNIO-1 task-1] kIL8gaeUQ02pLSmbIF9lOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0 +00:00:44.398 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.399 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.399 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.400 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.401 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"12cc03e1-0208-4e21-a0b8-856c71a1","clientDesc":"ca1df808-898b-44b0-aab3-260118a5552e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.433 [XNIO-1 task-1] EVWb4oeJT9yrIrnk-x9PKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.440 [XNIO-1 task-1] AEFArDQMQCOzLTYsxBmXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.440 [XNIO-1 task-1] AEFArDQMQCOzLTYsxBmXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.441 [XNIO-1 task-1] AEFArDQMQCOzLTYsxBmXVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.476 [XNIO-1 task-1] 8kd8SsujQka1TQBRBAAMcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.476 [XNIO-1 task-1] 8kd8SsujQka1TQBRBAAMcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.476 [XNIO-1 task-1] 8kd8SsujQka1TQBRBAAMcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.502 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.503 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.503 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.504 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3c390146-a5a9-4866-8486-f782cb3e","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.504 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e09e3ded +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.507 [XNIO-1 task-1] DwzfOZw-SLOuFX3a5i7yqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.514 [XNIO-1 task-1] njVn9eixRmeMfi08Z1QVBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.514 [XNIO-1 task-1] njVn9eixRmeMfi08Z1QVBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.515 [XNIO-1 task-1] njVn9eixRmeMfi08Z1QVBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.546 [XNIO-1 task-1] x0Dbqy8NRyWRzhynyCygRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.547 [XNIO-1 task-1] x0Dbqy8NRyWRzhynyCygRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.548 [XNIO-1 task-1] x0Dbqy8NRyWRzhynyCygRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.548 [XNIO-1 task-1] x0Dbqy8NRyWRzhynyCygRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.593 [XNIO-1 task-1] f9xkI8eFRfGRoGDGdwXNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e15fa19-a8f7-4272-ba6e-3907a1704013 +00:00:44.594 [XNIO-1 task-1] f9xkI8eFRfGRoGDGdwXNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.594 [XNIO-1 task-1] f9xkI8eFRfGRoGDGdwXNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:44.594 [XNIO-1 task-1] f9xkI8eFRfGRoGDGdwXNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e15fa19-a8f7-4272-ba6e-3907a1704013 +00:00:44.620 [XNIO-1 task-1] YW6IP1DUSxuEzFo1sKEoGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.620 [XNIO-1 task-1] YW6IP1DUSxuEzFo1sKEoGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.621 [XNIO-1 task-1] YW6IP1DUSxuEzFo1sKEoGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.621 [XNIO-1 task-1] YW6IP1DUSxuEzFo1sKEoGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.635 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2a63416a-0df3-42c7-9c49-2fcf807321c6 +00:00:44.637 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2a63416a-0df3-42c7-9c49-2fcf807321c6 +00:00:44.680 [XNIO-1 task-1] pSkJZrlSSxCAChmEnAHxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.680 [XNIO-1 task-1] pSkJZrlSSxCAChmEnAHxnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.682 [XNIO-1 task-1] pSkJZrlSSxCAChmEnAHxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.688 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1f9a261d-f249-43ba-9f5b-9e0d0dba113f +00:00:44.689 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1f9a261d-f249-43ba-9f5b-9e0d0dba113f +00:00:44.708 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.709 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.709 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "c9d9285a-764f-4f95-b771-af19ce078f6e", {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "528c25b9-387e-4317-ad9b-ae0c3d7a", {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"528c25b9-387e-4317-ad9b-ae0c3d7a","clientDesc":"c9d9285a-764f-4f95-b771-af19ce078f6e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.710 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.712 [XNIO-1 task-1] iJ8KFSR-S02JWciZ9tdUzA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:44.717 [XNIO-1 task-1] Z6Jl9dumQxCQFcSCMj5FYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.717 [XNIO-1 task-1] Z6Jl9dumQxCQFcSCMj5FYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.717 [XNIO-1 task-1] Z6Jl9dumQxCQFcSCMj5FYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.718 [XNIO-1 task-1] Z6Jl9dumQxCQFcSCMj5FYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.725 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:24e3e317 +00:00:44.728 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:24e3e317 +00:00:44.736 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.736 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.738 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.738 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.739 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:44.739 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG com.networknt.schema.TypeValidator debug - validate( "137b0762-ab5a-40dd-88f9-a0f72a3a178d", {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:44.739 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.739 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.739 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG com.networknt.schema.TypeValidator debug - validate( "3e42d763-475c-4c89-8c9a-812e9301", {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:44.739 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:44.740 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3e42d763-475c-4c89-8c9a-812e9301","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.740 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.741 [XNIO-1 task-1] nyVP-YmXTvGOdhTn8ALXDA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:44.748 [XNIO-1 task-1] o61i0x58QLueFa66cKWLGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.748 [XNIO-1 task-1] o61i0x58QLueFa66cKWLGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.749 [XNIO-1 task-1] o61i0x58QLueFa66cKWLGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.771 [XNIO-1 task-1] vZCF6z0QSeifxEpZzuC7wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:44.771 [XNIO-1 task-1] vZCF6z0QSeifxEpZzuC7wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.771 [XNIO-1 task-1] vZCF6z0QSeifxEpZzuC7wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:44.772 [XNIO-1 task-1] vZCF6z0QSeifxEpZzuC7wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:44.772 [XNIO-1 task-1] vZCF6z0QSeifxEpZzuC7wA DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", clientId) +00:00:44.796 [XNIO-1 task-1] 1to_5LqDSPWwbHmF9qXzrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:44.796 [XNIO-1 task-1] 1to_5LqDSPWwbHmF9qXzrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.797 [XNIO-1 task-1] 1to_5LqDSPWwbHmF9qXzrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:44.797 [XNIO-1 task-1] 1to_5LqDSPWwbHmF9qXzrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:44.841 [XNIO-1 task-1] 1to_5LqDSPWwbHmF9qXzrw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.842 [XNIO-1 task-1] 1to_5LqDSPWwbHmF9qXzrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.846 [XNIO-1 task-1] UkzVnjvCSpaHBnmCYeGyBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.846 [XNIO-1 task-1] UkzVnjvCSpaHBnmCYeGyBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.847 [XNIO-1 task-1] UkzVnjvCSpaHBnmCYeGyBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.872 [XNIO-1 task-1] Xu-giYEjRH-380tkl8VxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.872 [XNIO-1 task-1] Xu-giYEjRH-380tkl8VxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.873 [XNIO-1 task-1] Xu-giYEjRH-380tkl8VxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.896 [XNIO-1 task-1] qzXUYmjqRTqu9LRJYI91ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.896 [XNIO-1 task-1] qzXUYmjqRTqu9LRJYI91ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.897 [XNIO-1 task-1] qzXUYmjqRTqu9LRJYI91ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.919 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a148478d-2516-49b0-8ccc-65bebf4f443d +00:00:44.931 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.931 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.932 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.933 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.933 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.933 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.933 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.933 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:44.933 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:44.933 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.934 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.935 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c1301f2-1006-41c3-9474-590e5cb0","clientDesc":"7d021070-f1fe-4c20-ae0b-d9cac34aa87a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:44.935 [XNIO-1 task-1] fQHU8zYfQ8SwOpdZbEU9bg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:44.938 [XNIO-1 task-1] FITt-R-nThaxYKXDnAtSOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3b6cedc6-c4ab-424c-97f9-ef115a6e5131 +00:00:44.938 [XNIO-1 task-1] FITt-R-nThaxYKXDnAtSOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.938 [XNIO-1 task-1] FITt-R-nThaxYKXDnAtSOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:44.939 [XNIO-1 task-1] FITt-R-nThaxYKXDnAtSOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3b6cedc6-c4ab-424c-97f9-ef115a6e5131 +00:00:44.948 [XNIO-1 task-1] lfN6P8QcRy6Y5TwzWOlUTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d, base path is set to: null +00:00:44.948 [XNIO-1 task-1] lfN6P8QcRy6Y5TwzWOlUTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.948 [XNIO-1 task-1] lfN6P8QcRy6Y5TwzWOlUTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:44.949 [XNIO-1 task-1] lfN6P8QcRy6Y5TwzWOlUTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d, base path is set to: null +00:00:44.949 [XNIO-1 task-1] lfN6P8QcRy6Y5TwzWOlUTg DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", clientId) +00:00:44.952 [XNIO-1 task-1] ZX0VY8GSQE2JGgzFLhQVPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.953 [XNIO-1 task-1] ZX0VY8GSQE2JGgzFLhQVPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.953 [XNIO-1 task-1] ZX0VY8GSQE2JGgzFLhQVPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:44.953 [XNIO-1 task-1] ZX0VY8GSQE2JGgzFLhQVPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.968 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b692ae6b +00:00:44.971 [XNIO-1 task-1] qq18hLzDS0unaUznJuaEbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:44.971 [XNIO-1 task-1] qq18hLzDS0unaUznJuaEbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:44.972 [XNIO-1 task-1] qq18hLzDS0unaUznJuaEbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.001 [XNIO-1 task-1] nsJoeMr_RTaH31KTpIUo-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a67c9220-66cb-454e-be66-18368a8e20cb, base path is set to: null +00:00:45.001 [XNIO-1 task-1] nsJoeMr_RTaH31KTpIUo-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.001 [XNIO-1 task-1] nsJoeMr_RTaH31KTpIUo-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.001 [XNIO-1 task-1] nsJoeMr_RTaH31KTpIUo-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a67c9220-66cb-454e-be66-18368a8e20cb, base path is set to: null +00:00:45.002 [XNIO-1 task-1] nsJoeMr_RTaH31KTpIUo-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a67c9220-66cb-454e-be66-18368a8e20cb", "a67c9220-66cb-454e-be66-18368a8e20cb", clientId) +00:00:45.011 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b692ae6b +00:00:45.032 [XNIO-1 task-1] LUyy2B1pQKa0yivtT7QZZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.032 [XNIO-1 task-1] LUyy2B1pQKa0yivtT7QZZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.032 [XNIO-1 task-1] LUyy2B1pQKa0yivtT7QZZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.033 [XNIO-1 task-1] LUyy2B1pQKa0yivtT7QZZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.038 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:24e3e317 +00:00:45.054 [XNIO-1 task-1] FhQ2JMaNSKa87THeKZ2pBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b262ec34-a090-4c2c-a1a4-750f264ea0e9 +00:00:45.054 [XNIO-1 task-1] FhQ2JMaNSKa87THeKZ2pBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.054 [XNIO-1 task-1] FhQ2JMaNSKa87THeKZ2pBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.054 [XNIO-1 task-1] FhQ2JMaNSKa87THeKZ2pBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b262ec34-a090-4c2c-a1a4-750f264ea0e9 +00:00:45.099 [XNIO-1 task-1] FhQ2JMaNSKa87THeKZ2pBg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.100 [XNIO-1 task-1] FhQ2JMaNSKa87THeKZ2pBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:45.103 [XNIO-1 task-1] 9J0dF801SY2758VDN8AnNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b53f4295-c4ab-405b-80ae-60c01649c1d5 +00:00:45.104 [XNIO-1 task-1] 9J0dF801SY2758VDN8AnNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.104 [XNIO-1 task-1] 9J0dF801SY2758VDN8AnNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.104 [XNIO-1 task-1] 9J0dF801SY2758VDN8AnNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b53f4295-c4ab-405b-80ae-60c01649c1d5 +00:00:45.104 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b53f4295-c4ab-405b-80ae-60c01649c1d5 +00:00:45.121 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f2ce0e22 +00:00:45.123 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.123 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.124 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.124 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.124 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG com.networknt.schema.TypeValidator debug - validate( "7695cb2d-9c40-4e80-8ac9-26e396e5c35e", {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG com.networknt.schema.TypeValidator debug - validate( "d45562c4-744c-4d80-a018-a69f379a", {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d45562c4-744c-4d80-a018-a69f379a","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.125 [XNIO-1 task-1] OZwRSPTyS3GdsQd67UIwEA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:45.134 [XNIO-1 task-1] PBqIksaAR52_NCLhstzKeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1a14a3b-a8a6-4a43-94f2-b82d1be1bfce, base path is set to: null +00:00:45.134 [XNIO-1 task-1] PBqIksaAR52_NCLhstzKeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.134 [XNIO-1 task-1] PBqIksaAR52_NCLhstzKeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.134 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b692ae6b +00:00:45.134 [XNIO-1 task-1] PBqIksaAR52_NCLhstzKeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c1a14a3b-a8a6-4a43-94f2-b82d1be1bfce +00:00:45.154 [XNIO-1 task-1] LFDlrlcDSs-9-uDneniCsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.154 [XNIO-1 task-1] LFDlrlcDSs-9-uDneniCsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.154 [XNIO-1 task-1] LFDlrlcDSs-9-uDneniCsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.154 [XNIO-1 task-1] LFDlrlcDSs-9-uDneniCsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.171 [XNIO-1 task-1] yxGbbM2XQd-d2zj5qPh4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:45.171 [XNIO-1 task-1] yxGbbM2XQd-d2zj5qPh4RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.171 [XNIO-1 task-1] yxGbbM2XQd-d2zj5qPh4RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.171 [XNIO-1 task-1] yxGbbM2XQd-d2zj5qPh4RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:45.172 [XNIO-1 task-1] yxGbbM2XQd-d2zj5qPh4RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", clientId) +00:00:45.176 [XNIO-1 task-1] tSEbzdojR9mDPlTWlkbqmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb +00:00:45.177 [XNIO-1 task-1] tSEbzdojR9mDPlTWlkbqmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.177 [XNIO-1 task-1] tSEbzdojR9mDPlTWlkbqmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.177 [XNIO-1 task-1] tSEbzdojR9mDPlTWlkbqmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb +00:00:45.182 [XNIO-1 task-1] c0sCfoRiSbyWP2h7WxkJnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.182 [XNIO-1 task-1] c0sCfoRiSbyWP2h7WxkJnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.183 [XNIO-1 task-1] c0sCfoRiSbyWP2h7WxkJnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.183 [XNIO-1 task-1] c0sCfoRiSbyWP2h7WxkJnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.202 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.202 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.202 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.203 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.203 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.203 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.203 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.203 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.203 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.203 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.204 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.204 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b67c7bba-40ac-43ee-b0ac-a2cdd618","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.204 [XNIO-1 task-1] n3wzU9kCQMqK9U1TkWaxJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:45.211 [XNIO-1 task-1] u_Kg9L23Ta2RYQotaG5mJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.211 [XNIO-1 task-1] u_Kg9L23Ta2RYQotaG5mJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.211 [XNIO-1 task-1] u_Kg9L23Ta2RYQotaG5mJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.211 [XNIO-1 task-1] u_Kg9L23Ta2RYQotaG5mJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.231 [XNIO-1 task-1] qvFbSepuSxaYUulpF2LViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:45.231 [XNIO-1 task-1] qvFbSepuSxaYUulpF2LViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.231 [XNIO-1 task-1] qvFbSepuSxaYUulpF2LViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.231 [XNIO-1 task-1] qvFbSepuSxaYUulpF2LViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:45.235 [XNIO-1 task-1] d6QWEwPhTziysxm4lHvx5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:45.235 [XNIO-1 task-1] d6QWEwPhTziysxm4lHvx5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.235 [XNIO-1 task-1] d6QWEwPhTziysxm4lHvx5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.236 [XNIO-1 task-1] d6QWEwPhTziysxm4lHvx5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:45.236 [XNIO-1 task-1] d6QWEwPhTziysxm4lHvx5A DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:45.249 [XNIO-1 task-1] d6QWEwPhTziysxm4lHvx5A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:45.255 [XNIO-1 task-1] gvhz9Xq1Qs-5wrgZTe01Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/800c022b-f8af-42d3-afdc-f6b54235f94a, base path is set to: null +00:00:45.256 [XNIO-1 task-1] gvhz9Xq1Qs-5wrgZTe01Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.256 [XNIO-1 task-1] gvhz9Xq1Qs-5wrgZTe01Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.256 [XNIO-1 task-1] gvhz9Xq1Qs-5wrgZTe01Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/800c022b-f8af-42d3-afdc-f6b54235f94a, base path is set to: null +00:00:45.256 [XNIO-1 task-1] gvhz9Xq1Qs-5wrgZTe01Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", clientId) +00:00:45.263 [XNIO-1 task-1] pYnMXSLaQ4O779v91QXs8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93b3fc66-8d9a-443b-8765-ca34e3bc2ea1 +00:00:45.263 [XNIO-1 task-1] pYnMXSLaQ4O779v91QXs8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.263 [XNIO-1 task-1] pYnMXSLaQ4O779v91QXs8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.263 [XNIO-1 task-1] pYnMXSLaQ4O779v91QXs8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93b3fc66-8d9a-443b-8765-ca34e3bc2ea1 +00:00:45.269 [XNIO-1 task-1] Y-6s7ZEHSLuMfRfNATiMpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/800c022b-f8af-42d3-afdc-f6b54235f94a, base path is set to: null +00:00:45.270 [XNIO-1 task-1] Y-6s7ZEHSLuMfRfNATiMpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.270 [XNIO-1 task-1] Y-6s7ZEHSLuMfRfNATiMpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.270 [XNIO-1 task-1] Y-6s7ZEHSLuMfRfNATiMpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/800c022b-f8af-42d3-afdc-f6b54235f94a, base path is set to: null +00:00:45.270 [XNIO-1 task-1] Y-6s7ZEHSLuMfRfNATiMpg DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:45.283 [XNIO-1 task-1] Y-6s7ZEHSLuMfRfNATiMpg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/800c022b-f8af-42d3-afdc-f6b54235f94a} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:45.294 [XNIO-1 task-1] RMy5gaTPRyyBtWgsuYKK8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93b3fc66-8d9a-443b-8765-ca34e3bc2ea1, base path is set to: null +00:00:45.294 [XNIO-1 task-1] RMy5gaTPRyyBtWgsuYKK8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.294 [XNIO-1 task-1] RMy5gaTPRyyBtWgsuYKK8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.294 [XNIO-1 task-1] RMy5gaTPRyyBtWgsuYKK8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93b3fc66-8d9a-443b-8765-ca34e3bc2ea1, base path is set to: null +00:00:45.295 [XNIO-1 task-1] RMy5gaTPRyyBtWgsuYKK8g DEBUG com.networknt.schema.TypeValidator debug - validate( "93b3fc66-8d9a-443b-8765-ca34e3bc2ea1", "93b3fc66-8d9a-443b-8765-ca34e3bc2ea1", clientId) +00:00:45.299 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.299 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.300 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG com.networknt.schema.TypeValidator debug - validate( "e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b", {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG com.networknt.schema.TypeValidator debug - validate( "184f83d7-ae5b-4371-bdb8-5212adb7", {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"184f83d7-ae5b-4371-bdb8-5212adb7","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.301 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.302 [XNIO-1 task-1] p9F1uRoBTym6NAsJzTsuRA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:45.307 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.308 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.308 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.309 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.312 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.312 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.312 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.312 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.312 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.312 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.312 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.313 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b09bbea1-7e01-45be-a530-5534a583","clientDesc":"e7e312ef-8c6c-4b5a-b7c9-f6155c3ec34b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.315 [XNIO-1 task-1] jW7VyThmRra1v-Yp8NjBLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:45.323 [XNIO-1 task-1] Tvj4NRH7T-SbrM7hqa5zbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.323 [XNIO-1 task-1] Tvj4NRH7T-SbrM7hqa5zbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.323 [XNIO-1 task-1] Tvj4NRH7T-SbrM7hqa5zbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.324 [XNIO-1 task-1] Tvj4NRH7T-SbrM7hqa5zbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.364 [XNIO-1 task-1] PBhVPTCuQjKoYZXo-rz6xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93b3fc66-8d9a-443b-8765-ca34e3bc2ea1 +00:00:45.364 [XNIO-1 task-1] PBhVPTCuQjKoYZXo-rz6xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.364 [XNIO-1 task-1] PBhVPTCuQjKoYZXo-rz6xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.364 [XNIO-1 task-1] PBhVPTCuQjKoYZXo-rz6xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93b3fc66-8d9a-443b-8765-ca34e3bc2ea1 +00:00:45.388 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.388 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.389 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.389 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.390 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92470b46-5498-4fa9-a8fd-5880cf6b","clientDesc":"47591171-7805-488b-af62-ae4fc4774945","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.391 [XNIO-1 task-1] 9T3yjBaoSmy9mr2ykVVBdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:45.398 [XNIO-1 task-1] PGa5PONzRBivEegvK7XYuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e267e5c7-f78e-4258-ae59-278dc374c816 +00:00:45.398 [XNIO-1 task-1] PGa5PONzRBivEegvK7XYuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.398 [XNIO-1 task-1] PGa5PONzRBivEegvK7XYuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.399 [XNIO-1 task-1] PGa5PONzRBivEegvK7XYuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e267e5c7-f78e-4258-ae59-278dc374c816 +00:00:45.427 [XNIO-1 task-1] cdyZ4QIGSvqrkHWaLk9n9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.427 [XNIO-1 task-1] cdyZ4QIGSvqrkHWaLk9n9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.427 [XNIO-1 task-1] cdyZ4QIGSvqrkHWaLk9n9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.428 [XNIO-1 task-1] cdyZ4QIGSvqrkHWaLk9n9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.506 [XNIO-1 task-1] 7S5D2XSjRKOeOhq2MNtuLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:45.506 [XNIO-1 task-1] 7S5D2XSjRKOeOhq2MNtuLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.506 [XNIO-1 task-1] 7S5D2XSjRKOeOhq2MNtuLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.507 [XNIO-1 task-1] 7S5D2XSjRKOeOhq2MNtuLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:45.507 [XNIO-1 task-1] 7S5D2XSjRKOeOhq2MNtuLg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0ece22-5f0b-437a-b052-76f6afa221f0", "fb0ece22-5f0b-437a-b052-76f6afa221f0", clientId) +00:00:45.519 [XNIO-1 task-1] -bhxcQolQcibaUkgoGo98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0 +00:00:45.519 [XNIO-1 task-1] -bhxcQolQcibaUkgoGo98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.519 [XNIO-1 task-1] -bhxcQolQcibaUkgoGo98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.519 [XNIO-1 task-1] -bhxcQolQcibaUkgoGo98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0 +00:00:45.528 [XNIO-1 task-1] ehD_xiwQSsWDx8jsTOkmRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.529 [XNIO-1 task-1] ehD_xiwQSsWDx8jsTOkmRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.529 [XNIO-1 task-1] ehD_xiwQSsWDx8jsTOkmRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.529 [XNIO-1 task-1] ehD_xiwQSsWDx8jsTOkmRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.534 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec4f3ff4 +00:00:45.538 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec4f3ff4 +00:00:45.589 [XNIO-1 task-1] 09FTmd31R8aL8FZCqs73hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.589 [XNIO-1 task-1] 09FTmd31R8aL8FZCqs73hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.590 [XNIO-1 task-1] 09FTmd31R8aL8FZCqs73hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.590 [XNIO-1 task-1] 09FTmd31R8aL8FZCqs73hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.617 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.617 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.618 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.618 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.618 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:45.619 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "137b0762-ab5a-40dd-88f9-a0f72a3a178d", {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:45.619 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.619 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.619 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9587030d-8157-4705-8a86-01e2b039", {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:45.619 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:45.619 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9587030d-8157-4705-8a86-01e2b039","clientDesc":"137b0762-ab5a-40dd-88f9-a0f72a3a178d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.620 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.620 [XNIO-1 task-1] PHZvQXW_T5OjnY6bbg5pSQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:45.624 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.624 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.624 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.625 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.625 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.625 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.625 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.625 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.626 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.626 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.626 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.627 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4906719c-d697-4e05-94aa-5fde9007","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.628 [XNIO-1 task-1] FT9rXPxxSgic8cZziqdUZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:45.635 [XNIO-1 task-1] HmZrNfF5S0Kz68UEjcMtzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:45.635 [XNIO-1 task-1] HmZrNfF5S0Kz68UEjcMtzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.635 [XNIO-1 task-1] HmZrNfF5S0Kz68UEjcMtzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.636 [XNIO-1 task-1] HmZrNfF5S0Kz68UEjcMtzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:45.649 [XNIO-1 task-1] j79tGGg5RpmgcgbDh0YPsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb, base path is set to: null +00:00:45.649 [XNIO-1 task-1] j79tGGg5RpmgcgbDh0YPsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.649 [XNIO-1 task-1] j79tGGg5RpmgcgbDh0YPsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.649 [XNIO-1 task-1] j79tGGg5RpmgcgbDh0YPsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb, base path is set to: null +00:00:45.649 [XNIO-1 task-1] j79tGGg5RpmgcgbDh0YPsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", clientId) +00:00:45.663 [XNIO-1 task-1] clNE_-aSR2mlanKN93jNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.664 [XNIO-1 task-1] clNE_-aSR2mlanKN93jNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.664 [XNIO-1 task-1] clNE_-aSR2mlanKN93jNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.664 [XNIO-1 task-1] clNE_-aSR2mlanKN93jNIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.687 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8bc65a51-6a9a-45b6-a098-a663bbb55dba +00:00:45.720 [XNIO-1 task-1] yf_6aWexSmmzOgJStaSDGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.720 [XNIO-1 task-1] yf_6aWexSmmzOgJStaSDGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.721 [XNIO-1 task-1] yf_6aWexSmmzOgJStaSDGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.748 [XNIO-1 task-1] nKGbj-GPSpSaJ0pYruoUyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.748 [XNIO-1 task-1] nKGbj-GPSpSaJ0pYruoUyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.748 [XNIO-1 task-1] nKGbj-GPSpSaJ0pYruoUyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.748 [XNIO-1 task-1] nKGbj-GPSpSaJ0pYruoUyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.767 [XNIO-1 task-1] rhaDN0CjTWSiW0PXd_OELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04b6b673-cdc6-4ddd-8a84-8990943448ef +00:00:45.768 [XNIO-1 task-1] rhaDN0CjTWSiW0PXd_OELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.768 [XNIO-1 task-1] rhaDN0CjTWSiW0PXd_OELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.768 [XNIO-1 task-1] rhaDN0CjTWSiW0PXd_OELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04b6b673-cdc6-4ddd-8a84-8990943448ef +00:00:45.773 [XNIO-1 task-1] 96kUIxiCSAyihqWMUiiUyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.774 [XNIO-1 task-1] 96kUIxiCSAyihqWMUiiUyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.774 [XNIO-1 task-1] 96kUIxiCSAyihqWMUiiUyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.803 [XNIO-1 task-1] Fwz6XBG5RyyuSwPI5vv8ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:45.803 [XNIO-1 task-1] Fwz6XBG5RyyuSwPI5vv8ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.804 [XNIO-1 task-1] Fwz6XBG5RyyuSwPI5vv8ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.804 [XNIO-1 task-1] Fwz6XBG5RyyuSwPI5vv8ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:45.804 [XNIO-1 task-1] Fwz6XBG5RyyuSwPI5vv8ow DEBUG com.networknt.schema.TypeValidator debug - validate( "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", clientId) +00:00:45.807 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:039654d2 +00:00:45.808 [XNIO-1 task-1] 2nfZxD6zTWKILah4Q1gwWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/29fbde61-63b5-4061-b72a-a3c2a39376f9, base path is set to: null +00:00:45.808 [XNIO-1 task-1] 2nfZxD6zTWKILah4Q1gwWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.808 [XNIO-1 task-1] 2nfZxD6zTWKILah4Q1gwWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.808 [XNIO-1 task-1] 2nfZxD6zTWKILah4Q1gwWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/29fbde61-63b5-4061-b72a-a3c2a39376f9, base path is set to: null +00:00:45.808 [XNIO-1 task-1] 2nfZxD6zTWKILah4Q1gwWg DEBUG com.networknt.schema.TypeValidator debug - validate( "29fbde61-63b5-4061-b72a-a3c2a39376f9", "29fbde61-63b5-4061-b72a-a3c2a39376f9", clientId) +00:00:45.829 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.831 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.831 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.832 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.832 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.832 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.832 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.832 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.832 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.833 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.833 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.833 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95120c4c-7d95-4ce4-a1ba-58359012","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.833 [XNIO-1 task-1] 3dCVn7LjSIS-MyBra3lxmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:45.838 [XNIO-1 task-1] z-k4mIYCRceCs7iHXBdUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35a5bf36-045a-485d-a426-dcaa726038f9 +00:00:45.838 [XNIO-1 task-1] z-k4mIYCRceCs7iHXBdUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.838 [XNIO-1 task-1] z-k4mIYCRceCs7iHXBdUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.838 [XNIO-1 task-1] z-k4mIYCRceCs7iHXBdUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35a5bf36-045a-485d-a426-dcaa726038f9 +00:00:45.863 [XNIO-1 task-1] pW4UUS-XTAKJcDkwQ6NQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.863 [XNIO-1 task-1] pW4UUS-XTAKJcDkwQ6NQNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.863 [XNIO-1 task-1] pW4UUS-XTAKJcDkwQ6NQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.864 [XNIO-1 task-1] pW4UUS-XTAKJcDkwQ6NQNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.888 [XNIO-1 task-1] RpOTEoO1RTyyTQHQZhH9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787, base path is set to: null +00:00:45.888 [XNIO-1 task-1] RpOTEoO1RTyyTQHQZhH9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.888 [XNIO-1 task-1] RpOTEoO1RTyyTQHQZhH9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.889 [XNIO-1 task-1] RpOTEoO1RTyyTQHQZhH9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787, base path is set to: null +00:00:45.889 [XNIO-1 task-1] RpOTEoO1RTyyTQHQZhH9ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b36abf86-7c4c-409b-a18c-29e2b5b20787", "b36abf86-7c4c-409b-a18c-29e2b5b20787", clientId) +00:00:45.895 [XNIO-1 task-1] _E1-gzJcSnK8VoeNG416Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787 +00:00:45.895 [XNIO-1 task-1] _E1-gzJcSnK8VoeNG416Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.895 [XNIO-1 task-1] _E1-gzJcSnK8VoeNG416Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.895 [XNIO-1 task-1] _E1-gzJcSnK8VoeNG416Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787 +00:00:45.901 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.901 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.902 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.902 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.902 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bcaef435-f750-48c2-bc48-df29bfcc","clientDesc":"93f6f561-518b-426c-865d-b94564892478","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.903 [XNIO-1 task-1] wswVC77rSWGADRxYeZDM8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:45.910 [XNIO-1 task-1] gt17QUzIRqSohUKkDYLUmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.911 [XNIO-1 task-1] gt17QUzIRqSohUKkDYLUmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.911 [XNIO-1 task-1] gt17QUzIRqSohUKkDYLUmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.911 [XNIO-1 task-1] gt17QUzIRqSohUKkDYLUmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.943 [XNIO-1 task-1] s4Y_qUf4RWCosCUzz2jDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/053ac611-7e0b-4119-8ec8-693366fcb7ef +00:00:45.943 [XNIO-1 task-1] s4Y_qUf4RWCosCUzz2jDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:45.943 [XNIO-1 task-1] s4Y_qUf4RWCosCUzz2jDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:45.943 [XNIO-1 task-1] s4Y_qUf4RWCosCUzz2jDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/053ac611-7e0b-4119-8ec8-693366fcb7ef +00:00:45.949 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:24e3e317 +00:00:45.954 [XNIO-1 task-1] 8pHhJk6qR1WYRnjGWLyPHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.955 [XNIO-1 task-1] 8pHhJk6qR1WYRnjGWLyPHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.955 [XNIO-1 task-1] 8pHhJk6qR1WYRnjGWLyPHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:45.956 [XNIO-1 task-1] 8pHhJk6qR1WYRnjGWLyPHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.974 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:34f460a1-01c5-423b-933e-6bbf595c018a +00:00:45.995 [XNIO-1 task-1] J3PuvggpQgGC8Q1CHqr11w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:45.995 [XNIO-1 task-1] J3PuvggpQgGC8Q1CHqr11w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:45.995 [XNIO-1 task-1] J3PuvggpQgGC8Q1CHqr11w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:45.996 [XNIO-1 task-1] J3PuvggpQgGC8Q1CHqr11w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/fb0ece22-5f0b-437a-b052-76f6afa221f0, base path is set to: null +00:00:45.996 [XNIO-1 task-1] J3PuvggpQgGC8Q1CHqr11w DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0ece22-5f0b-437a-b052-76f6afa221f0", "fb0ece22-5f0b-437a-b052-76f6afa221f0", clientId) +00:00:46.015 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.015 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.016 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.017 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.017 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"54459e39-7e6a-40c9-8d3e-0a59bede","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.018 [XNIO-1 task-1] NCTAoX_EQxyF8fqFpkaoNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.023 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.023 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.024 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.024 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.024 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:46.024 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG com.networknt.schema.TypeValidator debug - validate( "629c9c33-07cf-4cb7-a9c3-17bc753bcca3", {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:46.024 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.024 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.025 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG com.networknt.schema.TypeValidator debug - validate( "37bf3ed9-2730-40ca-b4e8-2b392b9c", {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:46.025 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:46.025 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"37bf3ed9-2730-40ca-b4e8-2b392b9c","clientDesc":"629c9c33-07cf-4cb7-a9c3-17bc753bcca3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.025 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.025 [XNIO-1 task-1] QWqA9WtuSbuqM_7RrYoOig DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:46.032 [XNIO-1 task-1] 7QvRyzyBR52va6p31fczuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:46.032 [XNIO-1 task-1] 7QvRyzyBR52va6p31fczuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.032 [XNIO-1 task-1] 7QvRyzyBR52va6p31fczuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:46.033 [XNIO-1 task-1] 7QvRyzyBR52va6p31fczuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:46.033 [XNIO-1 task-1] 7QvRyzyBR52va6p31fczuA DEBUG com.networknt.schema.TypeValidator debug - validate( "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", clientId) +00:00:46.038 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.038 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.038 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd", {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "f2780ed0-c77a-4079-b156-ef31b891", {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:46.043 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f2780ed0-c77a-4079-b156-ef31b891","clientDesc":"ef2a7d4e-40a7-4b14-822e-3f2345bd5ddd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.044 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.044 [XNIO-1 task-1] kmByiuNhSOenSRI5ISMt2g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:46.051 [XNIO-1 task-1] iEUE54OLQk6nQ8KXhQL3eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861, base path is set to: null +00:00:46.052 [XNIO-1 task-1] iEUE54OLQk6nQ8KXhQL3eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.052 [XNIO-1 task-1] iEUE54OLQk6nQ8KXhQL3eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:46.052 [XNIO-1 task-1] iEUE54OLQk6nQ8KXhQL3eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861, base path is set to: null +00:00:46.052 [XNIO-1 task-1] iEUE54OLQk6nQ8KXhQL3eA DEBUG com.networknt.schema.TypeValidator debug - validate( "183df51c-1383-4527-8c07-c995dee5b861", "183df51c-1383-4527-8c07-c995dee5b861", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:46.063 [XNIO-1 task-1] iEUE54OLQk6nQ8KXhQL3eA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:46.075 [XNIO-1 task-1] 7Cd9siKdRI6flOH0epRo7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.075 [XNIO-1 task-1] 7Cd9siKdRI6flOH0epRo7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.076 [XNIO-1 task-1] 7Cd9siKdRI6flOH0epRo7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.076 [XNIO-1 task-1] 7Cd9siKdRI6flOH0epRo7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.132 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.133 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.133 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.134 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0df8f66b-a01f-48d7-bf2d-7c31fe04","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.135 [XNIO-1 task-1] qVuSSVipT0e949MS63rxYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.139 [XNIO-1 task-1] LJTwtsRNSYSh0D-zZuz4Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.139 [XNIO-1 task-1] LJTwtsRNSYSh0D-zZuz4Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.139 [XNIO-1 task-1] LJTwtsRNSYSh0D-zZuz4Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.139 [XNIO-1 task-1] LJTwtsRNSYSh0D-zZuz4Ww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.189 [XNIO-1 task-1] cn4Mp_3OSy2Jh3Wwnc08-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.189 [XNIO-1 task-1] cn4Mp_3OSy2Jh3Wwnc08-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.189 [XNIO-1 task-1] cn4Mp_3OSy2Jh3Wwnc08-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.241 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.242 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.242 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG com.networknt.schema.TypeValidator debug - validate( "b72861a0-c919-45e1-ab59-599c85e34a55", {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG com.networknt.schema.TypeValidator debug - validate( "f95b2b04-dfe5-47cd-bf0c-87dc3c7f", {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f95b2b04-dfe5-47cd-bf0c-87dc3c7f","clientDesc":"b72861a0-c919-45e1-ab59-599c85e34a55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.243 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.244 [XNIO-1 task-1] 16S4CMwdSVCbvZrVrm-p_w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:46.251 [XNIO-1 task-1] SKTNCFAlSwaTCrrHyS2sUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9a886a79-894e-4b18-a956-05801407b16a, base path is set to: null +00:00:46.251 [XNIO-1 task-1] SKTNCFAlSwaTCrrHyS2sUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.251 [XNIO-1 task-1] SKTNCFAlSwaTCrrHyS2sUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:46.252 [XNIO-1 task-1] SKTNCFAlSwaTCrrHyS2sUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9a886a79-894e-4b18-a956-05801407b16a, base path is set to: null +00:00:46.252 [XNIO-1 task-1] SKTNCFAlSwaTCrrHyS2sUw DEBUG com.networknt.schema.TypeValidator debug - validate( "9a886a79-894e-4b18-a956-05801407b16a", "9a886a79-894e-4b18-a956-05801407b16a", clientId) +00:00:46.303 [XNIO-1 task-1] sKyj6i3nQPCcpblERyf85Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d +00:00:46.304 [XNIO-1 task-1] sKyj6i3nQPCcpblERyf85Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.304 [XNIO-1 task-1] sKyj6i3nQPCcpblERyf85Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.304 [XNIO-1 task-1] sKyj6i3nQPCcpblERyf85Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8bc4d9d3-ed0f-43ee-9119-2b1a0861783d +00:00:46.308 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.308 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.309 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.309 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.310 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25e77d1d-f663-4e3e-a799-ea7e55d1","clientDesc":"06d78e4c-36d9-4772-9ddd-d60037298d4e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.311 [XNIO-1 task-1] ikd6_dmNTyKR5fKUHKUclg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.316 [XNIO-1 task-1] F1mIyluGSQ2vwLYusAMhUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a148478d-2516-49b0-8ccc-65bebf4f443d +00:00:46.316 [XNIO-1 task-1] F1mIyluGSQ2vwLYusAMhUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.316 [XNIO-1 task-1] F1mIyluGSQ2vwLYusAMhUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.316 [XNIO-1 task-1] F1mIyluGSQ2vwLYusAMhUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a148478d-2516-49b0-8ccc-65bebf4f443d +00:00:46.317 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a148478d-2516-49b0-8ccc-65bebf4f443d +00:00:46.320 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:29d40603-73a5-4ce4-a68f-d360c8fd1e39 +00:00:46.332 [XNIO-1 task-1] KMGadEkiQfqM2GXk8k6Cig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e1ff1d9-68a8-4332-bda3-732886544b20 +00:00:46.332 [XNIO-1 task-1] KMGadEkiQfqM2GXk8k6Cig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.332 [XNIO-1 task-1] KMGadEkiQfqM2GXk8k6Cig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.332 [XNIO-1 task-1] KMGadEkiQfqM2GXk8k6Cig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e1ff1d9-68a8-4332-bda3-732886544b20 +00:00:46.336 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.337 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.337 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.337 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.338 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6f08b4e1-2052-48e6-b1e4-f6253610","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.339 [XNIO-1 task-1] IDgzJDpxTM-btyShg_d7PA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.346 [XNIO-1 task-1] 7BmiypHFRxCnLGzziddh0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.346 [XNIO-1 task-1] 7BmiypHFRxCnLGzziddh0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.346 [XNIO-1 task-1] 7BmiypHFRxCnLGzziddh0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.358 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:29d40603-73a5-4ce4-a68f-d360c8fd1e39 +00:00:46.372 [XNIO-1 task-1] pRuBZRooSS-fKK8Q5Jg4nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.372 [XNIO-1 task-1] pRuBZRooSS-fKK8Q5Jg4nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.373 [XNIO-1 task-1] pRuBZRooSS-fKK8Q5Jg4nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.373 [XNIO-1 task-1] pRuBZRooSS-fKK8Q5Jg4nw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.412 [XNIO-1 task-1] znnU11LmQKmyMligkhokDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/84caa2ad-381a-4648-9d86-14b14e7b07e4 +00:00:46.412 [XNIO-1 task-1] znnU11LmQKmyMligkhokDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.412 [XNIO-1 task-1] znnU11LmQKmyMligkhokDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.412 [XNIO-1 task-1] znnU11LmQKmyMligkhokDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.412 [XNIO-1 task-1] znnU11LmQKmyMligkhokDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/84caa2ad-381a-4648-9d86-14b14e7b07e4 +00:00:46.428 [XNIO-1 task-1] snMPzYtrTGWT6P3HTE-fuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.429 [XNIO-1 task-1] snMPzYtrTGWT6P3HTE-fuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.429 [XNIO-1 task-1] snMPzYtrTGWT6P3HTE-fuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.429 [XNIO-1 task-1] snMPzYtrTGWT6P3HTE-fuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.432 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93c91eb6 +00:00:46.435 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93c91eb6 +00:00:46.441 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.448 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.450 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.450 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "955b49eb-96a7-4a63-bacf-d45fd87e7c34", {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a41c7cc-3d69-4a6b-b67f-68e14ffc", {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:46.451 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7a41c7cc-3d69-4a6b-b67f-68e14ffc","clientDesc":"955b49eb-96a7-4a63-bacf-d45fd87e7c34","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.452 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.452 [XNIO-1 task-1] fxe4N1DTQhuyZreSrhrxaQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:46.459 [XNIO-1 task-1] S5k-QQVqSFGH9Wei78U5_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.459 [XNIO-1 task-1] S5k-QQVqSFGH9Wei78U5_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.459 [XNIO-1 task-1] S5k-QQVqSFGH9Wei78U5_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.488 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.488 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.488 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.489 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.490 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1de90b4b-28a1-4f79-a0fa-d1b3ecf4","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.490 [XNIO-1 task-1] -h0uxYASTwS-z_CavkZxcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.503 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.504 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.504 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "301e5592-7a04-4eab-94a0-8da1a98aadd7", {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1e77fce8-afb0-4431-acd7-471afdad", {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1e77fce8-afb0-4431-acd7-471afdad","clientDesc":"301e5592-7a04-4eab-94a0-8da1a98aadd7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.505 [XNIO-1 task-1] 0HXqzJGSQRGxNnRrYgMU2A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:46.513 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.513 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.513 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.514 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.515 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3297d536-bfed-4308-b86f-5b47f14d","clientDesc":"79007d8d-697a-4a1a-83bc-de93f4630d79","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.515 [XNIO-1 task-1] xbPchgMrSfuMieHS4ZtMPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.522 [XNIO-1 task-1] zlTz-eBVRnGj9Cne4utrMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.522 [XNIO-1 task-1] zlTz-eBVRnGj9Cne4utrMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.522 [XNIO-1 task-1] zlTz-eBVRnGj9Cne4utrMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.523 [XNIO-1 task-1] zlTz-eBVRnGj9Cne4utrMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.553 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e09e3ded +00:00:46.560 [XNIO-1 task-1] o1Wq4D0yTtWb30pxa-Objg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.560 [XNIO-1 task-1] o1Wq4D0yTtWb30pxa-Objg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.560 [XNIO-1 task-1] o1Wq4D0yTtWb30pxa-Objg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.565 [XNIO-1 task-1] o1Wq4D0yTtWb30pxa-Objg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.590 [XNIO-1 task-1] u8RCadrNTVa5mQR_QBUMiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.590 [XNIO-1 task-1] u8RCadrNTVa5mQR_QBUMiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.591 [XNIO-1 task-1] u8RCadrNTVa5mQR_QBUMiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.591 [XNIO-1 task-1] u8RCadrNTVa5mQR_QBUMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.650 [XNIO-1 task-1] 4dk5Z5k9TKSabL2r4dKHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.650 [XNIO-1 task-1] 4dk5Z5k9TKSabL2r4dKHqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.651 [XNIO-1 task-1] 4dk5Z5k9TKSabL2r4dKHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.738 [XNIO-1 task-1] heqiboyeTsu06jbHJ0ilzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04b6b673-cdc6-4ddd-8a84-8990943448ef, base path is set to: null +00:00:46.738 [XNIO-1 task-1] heqiboyeTsu06jbHJ0ilzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.738 [XNIO-1 task-1] heqiboyeTsu06jbHJ0ilzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:46.739 [XNIO-1 task-1] heqiboyeTsu06jbHJ0ilzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04b6b673-cdc6-4ddd-8a84-8990943448ef, base path is set to: null +00:00:46.739 [XNIO-1 task-1] heqiboyeTsu06jbHJ0ilzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04b6b673-cdc6-4ddd-8a84-8990943448ef", "04b6b673-cdc6-4ddd-8a84-8990943448ef", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:46.759 [XNIO-1 task-1] heqiboyeTsu06jbHJ0ilzQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/04b6b673-cdc6-4ddd-8a84-8990943448ef} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:46.768 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.768 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.768 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.769 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.770 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"78eec482-d81d-42e7-9cd1-df367f13","clientDesc":"8e2d6142-22f3-4a8b-82b5-b42026bfc71a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.770 [XNIO-1 task-1] YwEM0ubYTi-RpUqzEaqcTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.775 [XNIO-1 task-1] yCEmbeRBSaKgoG9qLiXReQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e77106bc-7b28-4213-8e50-e8c100768331 +00:00:46.776 [XNIO-1 task-1] yCEmbeRBSaKgoG9qLiXReQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.776 [XNIO-1 task-1] yCEmbeRBSaKgoG9qLiXReQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.776 [XNIO-1 task-1] yCEmbeRBSaKgoG9qLiXReQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e77106bc-7b28-4213-8e50-e8c100768331 +00:00:46.804 [XNIO-1 task-1] cb46sZ_7RiO9n9bUKk7YeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.804 [XNIO-1 task-1] cb46sZ_7RiO9n9bUKk7YeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.805 [XNIO-1 task-1] cb46sZ_7RiO9n9bUKk7YeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.813 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.866 [XNIO-1 task-1] kGJf08-eQmaosnvHlpmOzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b89904dd-3ce7-4aca-ba26-957b6a275bba +00:00:46.866 [XNIO-1 task-1] kGJf08-eQmaosnvHlpmOzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.866 [XNIO-1 task-1] kGJf08-eQmaosnvHlpmOzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.867 [XNIO-1 task-1] kGJf08-eQmaosnvHlpmOzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b89904dd-3ce7-4aca-ba26-957b6a275bba +00:00:46.877 [XNIO-1 task-1] EnPGMFl4S3iXzw04MwzoSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.877 [XNIO-1 task-1] EnPGMFl4S3iXzw04MwzoSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.878 [XNIO-1 task-1] EnPGMFl4S3iXzw04MwzoSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.903 [XNIO-1 task-1] 1VanCmNLSaaLQf3lQ4YTSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0b173c58-2d18-4014-8ed7-8edcf75fb7f6, base path is set to: null +00:00:46.903 [XNIO-1 task-1] 1VanCmNLSaaLQf3lQ4YTSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.903 [XNIO-1 task-1] 1VanCmNLSaaLQf3lQ4YTSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:46.903 [XNIO-1 task-1] 1VanCmNLSaaLQf3lQ4YTSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0b173c58-2d18-4014-8ed7-8edcf75fb7f6, base path is set to: null +00:00:46.903 [XNIO-1 task-1] 1VanCmNLSaaLQf3lQ4YTSw DEBUG com.networknt.schema.TypeValidator debug - validate( "0b173c58-2d18-4014-8ed7-8edcf75fb7f6", "0b173c58-2d18-4014-8ed7-8edcf75fb7f6", clientId) +00:00:46.913 [XNIO-1 task-1] pJOUu1rqQB-MTaSEx0GRVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/752e3cce-a89d-4baf-a466-762550d69973 +00:00:46.913 [XNIO-1 task-1] pJOUu1rqQB-MTaSEx0GRVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.913 [XNIO-1 task-1] pJOUu1rqQB-MTaSEx0GRVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.914 [XNIO-1 task-1] pJOUu1rqQB-MTaSEx0GRVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/752e3cce-a89d-4baf-a466-762550d69973 +00:00:46.926 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.926 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.927 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.927 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.927 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.927 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.928 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.928 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:46.928 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:46.928 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.928 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.928 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a1ae2bc-88d5-4666-ad96-526836a1","clientDesc":"0d6827b3-27cc-4889-876a-742ca8884a9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.928 [XNIO-1 task-1] arTLH1E2Q-OM7LGvivrTDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:46.935 [XNIO-1 task-1] 7YrO39MZRImTEKpObGnq9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:46.935 [XNIO-1 task-1] 7YrO39MZRImTEKpObGnq9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:46.935 [XNIO-1 task-1] 7YrO39MZRImTEKpObGnq9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:46.936 [XNIO-1 task-1] 7YrO39MZRImTEKpObGnq9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:46.939 [XNIO-1 task-1] 4xwVuaOdS8WoIOaC-w3dcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.939 [XNIO-1 task-1] 4xwVuaOdS8WoIOaC-w3dcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.940 [XNIO-1 task-1] 4xwVuaOdS8WoIOaC-w3dcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.940 [XNIO-1 task-1] 4xwVuaOdS8WoIOaC-w3dcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.969 [XNIO-1 task-1] CfxkRxaXQTO-3S5RNnxvoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.969 [XNIO-1 task-1] CfxkRxaXQTO-3S5RNnxvoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:46.969 [XNIO-1 task-1] CfxkRxaXQTO-3S5RNnxvoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:46.970 [XNIO-1 task-1] CfxkRxaXQTO-3S5RNnxvoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.004 [XNIO-1 task-1] mAM4Dbd8QVqT-bj-yEjmOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:47.004 [XNIO-1 task-1] mAM4Dbd8QVqT-bj-yEjmOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.004 [XNIO-1 task-1] mAM4Dbd8QVqT-bj-yEjmOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.004 [XNIO-1 task-1] mAM4Dbd8QVqT-bj-yEjmOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4, base path is set to: null +00:00:47.005 [XNIO-1 task-1] mAM4Dbd8QVqT-bj-yEjmOg DEBUG com.networknt.schema.TypeValidator debug - validate( "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", clientId) +00:00:47.013 [XNIO-1 task-1] pEGBNPvcQyqgY6fIJjz0CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.013 [XNIO-1 task-1] pEGBNPvcQyqgY6fIJjz0CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.013 [XNIO-1 task-1] pEGBNPvcQyqgY6fIJjz0CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.024 [XNIO-1 task-1] pEGBNPvcQyqgY6fIJjz0CQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.038 [XNIO-1 task-1] goTYr-CJQOSak-AMHNoPlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.038 [XNIO-1 task-1] goTYr-CJQOSak-AMHNoPlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.040 [XNIO-1 task-1] goTYr-CJQOSak-AMHNoPlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.085 [XNIO-1 task-1] KhRTQWcRTSucWc6d0zCOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.085 [XNIO-1 task-1] KhRTQWcRTSucWc6d0zCOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.085 [XNIO-1 task-1] KhRTQWcRTSucWc6d0zCOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.086 [XNIO-1 task-1] KhRTQWcRTSucWc6d0zCOmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.111 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.111 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.111 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.112 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.112 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:47.112 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "fcbbbf7d-cd0f-4cc7-926e-e94f7488207f", {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:47.112 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.113 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.113 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "62e83541-2c44-4233-851f-46d3f282", {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:47.113 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.113 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"62e83541-2c44-4233-851f-46d3f282","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.113 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.113 [XNIO-1 task-1] Yg4idQuCR9Sg-OdCgFXSDA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:47.119 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.119 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.120 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.120 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.121 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8f80db85-cbee-48d2-9dff-6e9247c7","clientDesc":"fcbbbf7d-cd0f-4cc7-926e-e94f7488207f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.122 [XNIO-1 task-1] qCegCek6TKixF0Q_n89dtQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:47.127 [XNIO-1 task-1] 1CFhWseqR46QwgBQ0Uq0jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.127 [XNIO-1 task-1] 1CFhWseqR46QwgBQ0Uq0jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.127 [XNIO-1 task-1] 1CFhWseqR46QwgBQ0Uq0jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.129 [XNIO-1 task-1] 1CFhWseqR46QwgBQ0Uq0jg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.151 [XNIO-1 task-1] 8VkHT1YZSTy_wbuYJBe5FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.151 [XNIO-1 task-1] 8VkHT1YZSTy_wbuYJBe5FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.153 [XNIO-1 task-1] 8VkHT1YZSTy_wbuYJBe5FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.174 [XNIO-1 task-1] vH61HCTvTAqmMn_STgxFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4 +00:00:47.174 [XNIO-1 task-1] vH61HCTvTAqmMn_STgxFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.174 [XNIO-1 task-1] vH61HCTvTAqmMn_STgxFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.175 [XNIO-1 task-1] vH61HCTvTAqmMn_STgxFtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/df996199-b90a-4f8b-8ade-bbf7ec9d73a4 +00:00:47.176 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bbaa88e8-1af9-4cf1-b124-3248ebaee90b +00:00:47.221 [XNIO-1 task-1] vH61HCTvTAqmMn_STgxFtw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.222 [XNIO-1 task-1] vH61HCTvTAqmMn_STgxFtw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:47.231 [XNIO-1 task-1] Dlgh1HmmT1aniSv1Cb75MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.231 [XNIO-1 task-1] Dlgh1HmmT1aniSv1Cb75MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.231 [XNIO-1 task-1] Dlgh1HmmT1aniSv1Cb75MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.231 [XNIO-1 task-1] Dlgh1HmmT1aniSv1Cb75MA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.243 [XNIO-1 task-1] Jrg8mj0FTj6D_F2lqkxMrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:47.243 [XNIO-1 task-1] Jrg8mj0FTj6D_F2lqkxMrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.243 [XNIO-1 task-1] Jrg8mj0FTj6D_F2lqkxMrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.243 [XNIO-1 task-1] Jrg8mj0FTj6D_F2lqkxMrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183df51c-1383-4527-8c07-c995dee5b861 +00:00:47.257 [XNIO-1 task-1] Jrg8mj0FTj6D_F2lqkxMrQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.258 [XNIO-1 task-1] Jrg8mj0FTj6D_F2lqkxMrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:47.261 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:93c91eb6 +00:00:47.263 [XNIO-1 task-1] GWREbtwXSl2ExlrY_KADTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d2b8a89-1092-43d4-88f4-bee24f9bd0fe +00:00:47.263 [XNIO-1 task-1] GWREbtwXSl2ExlrY_KADTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.263 [XNIO-1 task-1] GWREbtwXSl2ExlrY_KADTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.263 [XNIO-1 task-1] GWREbtwXSl2ExlrY_KADTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d2b8a89-1092-43d4-88f4-bee24f9bd0fe +00:00:47.291 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:039654d2 +00:00:47.294 [XNIO-1 task-1] NDTF8g1BT9e39OUiE-Wt6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.295 [XNIO-1 task-1] NDTF8g1BT9e39OUiE-Wt6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.295 [XNIO-1 task-1] NDTF8g1BT9e39OUiE-Wt6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.296 [XNIO-1 task-1] NDTF8g1BT9e39OUiE-Wt6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.314 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.314 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.315 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.315 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.315 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6a86eb32-9076-45ae-bb49-14a3f12c","clientDesc":"7695cb2d-9c40-4e80-8ac9-26e396e5c35e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.316 [XNIO-1 task-1] HcDTLkzbTVStb7qr4-dDOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:47.321 [XNIO-1 task-1] f7Uq8QKjTJ-ZkkdhsJugSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.321 [XNIO-1 task-1] f7Uq8QKjTJ-ZkkdhsJugSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.322 [XNIO-1 task-1] f7Uq8QKjTJ-ZkkdhsJugSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.322 [XNIO-1 task-1] f7Uq8QKjTJ-ZkkdhsJugSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.348 [XNIO-1 task-1] EXQm4vZtStS7g5U0L5MDnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/803c8de7-45ff-4287-8813-59c13e75e353 +00:00:47.348 [XNIO-1 task-1] EXQm4vZtStS7g5U0L5MDnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.348 [XNIO-1 task-1] EXQm4vZtStS7g5U0L5MDnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.348 [XNIO-1 task-1] EXQm4vZtStS7g5U0L5MDnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/803c8de7-45ff-4287-8813-59c13e75e353 +00:00:47.357 [XNIO-1 task-1] d1q-2eZRTZijI3iIOrKKtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.357 [XNIO-1 task-1] d1q-2eZRTZijI3iIOrKKtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.358 [XNIO-1 task-1] d1q-2eZRTZijI3iIOrKKtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.380 [XNIO-1 task-1] -DBAEgYST1G6LmY3IcLnbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/803c8de7-45ff-4287-8813-59c13e75e353, base path is set to: null +00:00:47.380 [XNIO-1 task-1] -DBAEgYST1G6LmY3IcLnbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.380 [XNIO-1 task-1] -DBAEgYST1G6LmY3IcLnbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.380 [XNIO-1 task-1] -DBAEgYST1G6LmY3IcLnbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/803c8de7-45ff-4287-8813-59c13e75e353, base path is set to: null +00:00:47.381 [XNIO-1 task-1] -DBAEgYST1G6LmY3IcLnbw DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", clientId) +00:00:47.382 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:24e3e317 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:47.395 [XNIO-1 task-1] -DBAEgYST1G6LmY3IcLnbw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/803c8de7-45ff-4287-8813-59c13e75e353} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:47.400 [XNIO-1 task-1] TE5nGBI9SE-ttFtJQNlFrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.400 [XNIO-1 task-1] TE5nGBI9SE-ttFtJQNlFrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.401 [XNIO-1 task-1] TE5nGBI9SE-ttFtJQNlFrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.401 [XNIO-1 task-1] TE5nGBI9SE-ttFtJQNlFrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.412 [XNIO-1 task-1] Ag0P2zKkQgOWbxZQLk3cnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.412 [XNIO-1 task-1] Ag0P2zKkQgOWbxZQLk3cnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.412 [XNIO-1 task-1] Ag0P2zKkQgOWbxZQLk3cnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.412 [XNIO-1 task-1] Ag0P2zKkQgOWbxZQLk3cnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.440 [XNIO-1 task-1] jVluBNlEQYGSYMrMJApJ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:47.440 [XNIO-1 task-1] jVluBNlEQYGSYMrMJApJ7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.442 [XNIO-1 task-1] jVluBNlEQYGSYMrMJApJ7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.442 [XNIO-1 task-1] jVluBNlEQYGSYMrMJApJ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076, base path is set to: null +00:00:47.442 [XNIO-1 task-1] jVluBNlEQYGSYMrMJApJ7w DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:47.455 [XNIO-1 task-1] jVluBNlEQYGSYMrMJApJ7w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/60c2bb92-4ee2-4160-b1ee-a2bf95f0f076} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:47.461 [XNIO-1 task-1] zMR305j5RK6TH6MQ13d-nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.461 [XNIO-1 task-1] zMR305j5RK6TH6MQ13d-nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.461 [XNIO-1 task-1] zMR305j5RK6TH6MQ13d-nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.461 [XNIO-1 task-1] zMR305j5RK6TH6MQ13d-nA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.468 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f748389b-f491-4181-ae44-a26d642a4769 +00:00:47.470 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f748389b-f491-4181-ae44-a26d642a4769 +00:00:47.480 [XNIO-1 task-1] 4s4CxIwySY-cDREIfMWCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.480 [XNIO-1 task-1] 4s4CxIwySY-cDREIfMWCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.481 [XNIO-1 task-1] 4s4CxIwySY-cDREIfMWCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.493 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:28593a6d-3473-4800-a6fa-952866df76a2 +00:00:47.495 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:28593a6d-3473-4800-a6fa-952866df76a2 +00:00:47.515 [XNIO-1 task-1] op2ucryXQ8Kl1yLhTvztLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.515 [XNIO-1 task-1] op2ucryXQ8Kl1yLhTvztLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.515 [XNIO-1 task-1] op2ucryXQ8Kl1yLhTvztLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.516 [XNIO-1 task-1] op2ucryXQ8Kl1yLhTvztLg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.531 [XNIO-1 task-1] miSMArCOT-Cgt190b0xRUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.532 [XNIO-1 task-1] miSMArCOT-Cgt190b0xRUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.532 [XNIO-1 task-1] miSMArCOT-Cgt190b0xRUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.560 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.560 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.561 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.561 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.561 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:47.561 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d5b2aa8-87f8-4101-b307-eb4f9687e3c6", {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:47.561 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.562 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.562 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG com.networknt.schema.TypeValidator debug - validate( "84c4d2c6-cd78-4030-8432-d4df4d97", {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:47.562 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.563 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"84c4d2c6-cd78-4030-8432-d4df4d97","clientDesc":"2d5b2aa8-87f8-4101-b307-eb4f9687e3c6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.564 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.564 [XNIO-1 task-1] 1gZJzckQR9qZohEr_2phaw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:47.567 [XNIO-1 task-1] yQ4XbwiLT2qTnWJXtPwd9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb, base path is set to: null +00:00:47.568 [XNIO-1 task-1] yQ4XbwiLT2qTnWJXtPwd9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.568 [XNIO-1 task-1] yQ4XbwiLT2qTnWJXtPwd9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.568 [XNIO-1 task-1] yQ4XbwiLT2qTnWJXtPwd9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb, base path is set to: null +00:00:47.568 [XNIO-1 task-1] yQ4XbwiLT2qTnWJXtPwd9g DEBUG com.networknt.schema.TypeValidator debug - validate( "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:47.579 [XNIO-1 task-1] yQ4XbwiLT2qTnWJXtPwd9g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:47.582 [XNIO-1 task-1] iHNoyU9KQRyzaTznUogEzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.583 [XNIO-1 task-1] iHNoyU9KQRyzaTznUogEzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.584 [XNIO-1 task-1] iHNoyU9KQRyzaTznUogEzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.607 [XNIO-1 task-1] HjmH0bJOTfqlmT3rUJ-TWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.608 [XNIO-1 task-1] HjmH0bJOTfqlmT3rUJ-TWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.608 [XNIO-1 task-1] HjmH0bJOTfqlmT3rUJ-TWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.608 [XNIO-1 task-1] HjmH0bJOTfqlmT3rUJ-TWw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.636 [XNIO-1 task-1] m2UmfR7_RYeUScASWzh6bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2d30bb62-6582-4737-a5ee-372e19e415ca, base path is set to: null +00:00:47.636 [XNIO-1 task-1] m2UmfR7_RYeUScASWzh6bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.636 [XNIO-1 task-1] m2UmfR7_RYeUScASWzh6bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.638 [XNIO-1 task-1] m2UmfR7_RYeUScASWzh6bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2d30bb62-6582-4737-a5ee-372e19e415ca, base path is set to: null +00:00:47.638 [XNIO-1 task-1] m2UmfR7_RYeUScASWzh6bA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d30bb62-6582-4737-a5ee-372e19e415ca", "2d30bb62-6582-4737-a5ee-372e19e415ca", clientId) +00:00:47.652 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.652 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.653 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.653 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.653 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:47.653 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "b3a88f70-ebd3-4874-8fa7-fc3898a66558", {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:47.653 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.653 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.653 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "cebe6a21-76aa-4a59-8a33-43996fd1", {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:47.654 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.654 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cebe6a21-76aa-4a59-8a33-43996fd1","clientDesc":"b3a88f70-ebd3-4874-8fa7-fc3898a66558","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.654 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.654 [XNIO-1 task-1] YJRPN0a2QPuINKpy0HeRSg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:47.661 [XNIO-1 task-1] xi2xxxmaS2Omz_gY0IlJXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.661 [XNIO-1 task-1] xi2xxxmaS2Omz_gY0IlJXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.662 [XNIO-1 task-1] xi2xxxmaS2Omz_gY0IlJXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.699 [XNIO-1 task-1] V86NPL23R7aU-s8Fcy809g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aea83d5a-1952-4555-b929-4d7cea9f6730, base path is set to: null +00:00:47.699 [XNIO-1 task-1] V86NPL23R7aU-s8Fcy809g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.699 [XNIO-1 task-1] V86NPL23R7aU-s8Fcy809g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.699 [XNIO-1 task-1] V86NPL23R7aU-s8Fcy809g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aea83d5a-1952-4555-b929-4d7cea9f6730, base path is set to: null +00:00:47.700 [XNIO-1 task-1] V86NPL23R7aU-s8Fcy809g DEBUG com.networknt.schema.TypeValidator debug - validate( "aea83d5a-1952-4555-b929-4d7cea9f6730", "aea83d5a-1952-4555-b929-4d7cea9f6730", clientId) +00:00:47.709 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.709 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.709 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "199a22ca-0f46-4ebb-90fe-019a14c50a89", {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "2851d5ae-cf0a-46da-bb15-7b7940da", {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2851d5ae-cf0a-46da-bb15-7b7940da","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.710 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.711 [XNIO-1 task-1] bfsGAdkQQ-i3u-VVeeqwMg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:47.714 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.714 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.714 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.715 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68248845-2349-48f2-8743-dfe41d69","clientDesc":"199a22ca-0f46-4ebb-90fe-019a14c50a89","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.716 [XNIO-1 task-1] _IDe39sZRGeHLvCeESnunA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:47.721 [XNIO-1 task-1] 736BaHdGSBme525xjGzaQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.721 [XNIO-1 task-1] 736BaHdGSBme525xjGzaQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.721 [XNIO-1 task-1] 736BaHdGSBme525xjGzaQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.723 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:47.754 [XNIO-1 task-1] VsJYPS5QSbOT_elvqA1eXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f601166b-3e12-469d-80a4-54e2267dad66 +00:00:47.754 [XNIO-1 task-1] VsJYPS5QSbOT_elvqA1eXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.754 [XNIO-1 task-1] VsJYPS5QSbOT_elvqA1eXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.754 [XNIO-1 task-1] VsJYPS5QSbOT_elvqA1eXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f601166b-3e12-469d-80a4-54e2267dad66 +00:00:47.763 [XNIO-1 task-1] ap2yDATJS0iKLwcly2zHKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787, base path is set to: null +00:00:47.763 [XNIO-1 task-1] ap2yDATJS0iKLwcly2zHKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.763 [XNIO-1 task-1] ap2yDATJS0iKLwcly2zHKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.764 [XNIO-1 task-1] ap2yDATJS0iKLwcly2zHKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36abf86-7c4c-409b-a18c-29e2b5b20787, base path is set to: null +00:00:47.764 [XNIO-1 task-1] ap2yDATJS0iKLwcly2zHKA DEBUG com.networknt.schema.TypeValidator debug - validate( "b36abf86-7c4c-409b-a18c-29e2b5b20787", "b36abf86-7c4c-409b-a18c-29e2b5b20787", clientId) +00:00:47.770 [XNIO-1 task-1] q6wAfeZRRlqHJBvJlieJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f9a261d-f249-43ba-9f5b-9e0d0dba113f +00:00:47.770 [XNIO-1 task-1] q6wAfeZRRlqHJBvJlieJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.770 [XNIO-1 task-1] q6wAfeZRRlqHJBvJlieJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.770 [XNIO-1 task-1] q6wAfeZRRlqHJBvJlieJvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f9a261d-f249-43ba-9f5b-9e0d0dba113f +00:00:47.774 [XNIO-1 task-1] niX3bYSbSLSbBpXf1O8lKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.774 [XNIO-1 task-1] niX3bYSbSLSbBpXf1O8lKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.774 [XNIO-1 task-1] niX3bYSbSLSbBpXf1O8lKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.775 [XNIO-1 task-1] niX3bYSbSLSbBpXf1O8lKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.792 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.792 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.793 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.793 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.793 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.793 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.793 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.794 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +00:00:47.797 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +00:00:47.797 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.797 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.797 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a435a7d3-6d9e-451c-a509-8056060a","clientDesc":"d1c4c7e3-9651-4f65-b895-6d8379ca26c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.797 [XNIO-1 task-1] IfMIcEmzSn-_wdyjW0FgCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:47.801 [XNIO-1 task-1] 3JyBeSG7Rs2Y0Ji71Rfung DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f9a261d-f249-43ba-9f5b-9e0d0dba113f +00:00:47.801 [XNIO-1 task-1] 3JyBeSG7Rs2Y0Ji71Rfung DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.801 [XNIO-1 task-1] 3JyBeSG7Rs2Y0Ji71Rfung DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.801 [XNIO-1 task-1] 3JyBeSG7Rs2Y0Ji71Rfung DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1f9a261d-f249-43ba-9f5b-9e0d0dba113f +00:00:47.808 [XNIO-1 task-1] FjE6yEBkRhCM6O8N8JPl3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/053ac611-7e0b-4119-8ec8-693366fcb7ef, base path is set to: null +00:00:47.808 [XNIO-1 task-1] FjE6yEBkRhCM6O8N8JPl3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.808 [XNIO-1 task-1] FjE6yEBkRhCM6O8N8JPl3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.808 [XNIO-1 task-1] FjE6yEBkRhCM6O8N8JPl3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/053ac611-7e0b-4119-8ec8-693366fcb7ef, base path is set to: null +00:00:47.809 [XNIO-1 task-1] FjE6yEBkRhCM6O8N8JPl3A DEBUG com.networknt.schema.TypeValidator debug - validate( "053ac611-7e0b-4119-8ec8-693366fcb7ef", "053ac611-7e0b-4119-8ec8-693366fcb7ef", clientId) +00:00:47.815 [XNIO-1 task-1] Cl5LdLq4Sxan6AhX8O5azw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/352d0ed7-e740-4f67-b285-2cf89febf4a5 +00:00:47.815 [XNIO-1 task-1] Cl5LdLq4Sxan6AhX8O5azw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.815 [XNIO-1 task-1] Cl5LdLq4Sxan6AhX8O5azw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.815 [XNIO-1 task-1] Cl5LdLq4Sxan6AhX8O5azw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/352d0ed7-e740-4f67-b285-2cf89febf4a5 +00:00:47.818 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:039654d2 +00:00:47.824 [XNIO-1 task-1] wYln7xY-TaOHS9hXq5C4EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.830 [XNIO-1 task-1] wYln7xY-TaOHS9hXq5C4EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.831 [XNIO-1 task-1] wYln7xY-TaOHS9hXq5C4EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +00:00:47.858 [XNIO-1 task-1] J9o_s8uLSxmV8fsnyDetEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca439636-b75e-4387-9bad-1c82948a7f30, base path is set to: null +00:00:47.858 [XNIO-1 task-1] J9o_s8uLSxmV8fsnyDetEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +00:00:47.858 [XNIO-1 task-1] J9o_s8uLSxmV8fsnyDetEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +00:00:47.859 [XNIO-1 task-1] J9o_s8uLSxmV8fsnyDetEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca439636-b75e-4387-9bad-1c82948a7f30, base path is set to: null +00:00:47.859 [XNIO-1 task-1] J9o_s8uLSxmV8fsnyDetEw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca439636-b75e-4387-9bad-1c82948a7f30", "ca439636-b75e-4387-9bad-1c82948a7f30", clientId) +00:00:47.881 [XNIO-1 task-1] 7Mdw9zXlRGKmvI5p245EkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1f5f07a-7b94-4c11-9bed-18ded9484784 +00:00:47.881 [XNIO-1 task-1] 7Mdw9zXlRGKmvI5p245EkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.881 [XNIO-1 task-1] 7Mdw9zXlRGKmvI5p245EkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.881 [XNIO-1 task-1] 7Mdw9zXlRGKmvI5p245EkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1f5f07a-7b94-4c11-9bed-18ded9484784 +00:00:47.939 [XNIO-1 task-1] 7Mdw9zXlRGKmvI5p245EkQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:47.939 [XNIO-1 task-1] 7Mdw9zXlRGKmvI5p245EkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +00:00:47.943 [XNIO-1 task-1] GyhbU2tQSd-opUMQRvRu9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb +00:00:47.944 [XNIO-1 task-1] GyhbU2tQSd-opUMQRvRu9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +00:00:47.944 [XNIO-1 task-1] GyhbU2tQSd-opUMQRvRu9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +00:00:47.944 [XNIO-1 task-1] GyhbU2tQSd-opUMQRvRu9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/958a5f3d-24ae-401e-9a9b-b09eab6a77bb +00:00:47.960 [XNIO-1 task-1] GyhbU2tQSd-opUMQRvRu9g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) diff --git a/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-code-1.log b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..81cdb86 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2933 @@ +00:00:42.120 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:42.120 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:42.122 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", client_id) +00:00:42.123 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:42.124 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.124 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.125 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.129 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:88de6404 +00:00:42.148 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f174ad3e-ae7e-49ca-a768-404b30b51f4d +00:00:42.148 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:42.170 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f174ad3e-ae7e-49ca-a768-404b30b51f4d +00:00:42.173 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:42.173 [XNIO-1 task-1] 3Bpj84X7QeSRqy03MIqpqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:42.238 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:eb17034d-7b44-48df-9fd6-00336a68630d +00:00:42.240 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:eb17034d-7b44-48df-9fd6-00336a68630d +00:00:42.291 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:88de6404 +00:00:42.339 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.339 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.340 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.341 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:42.341 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.342 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.342 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.343 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:42.349 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:42.350 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:42.355 [XNIO-1 task-1] 7_xYB5COTXmgkFfkJ2-nbA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=S3yNj5nFQcGPbhsXfPPw1Q +00:00:42.578 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d3fe0be-8cf7-455f-9949-2918e2414115 +00:00:42.581 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d3fe0be-8cf7-455f-9949-2918e2414115 +00:00:42.596 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.596 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.596 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.599 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:42.599 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.600 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.600 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.600 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:42.610 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:42.610 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:42.626 [XNIO-1 task-1] mg7d0IUDSEuQ6k07dE_TSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AdqEQ8H1SQ-xjvQCvRh9HA +00:00:42.634 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.634 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.634 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.635 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:42.636 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.636 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.636 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.651 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:88de6404 +00:00:42.657 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:42.666 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:42.666 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:42.671 [XNIO-1 task-1] JwFaCKMYRnWwZVrEuGIkjA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NohXPonBRim1Na0npAMAMg +00:00:42.675 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.675 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.675 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.677 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:42.677 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.677 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.678 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.678 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:42.692 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:42.692 [XNIO-1 task-1] C2hoT02oRxmpGWtFICzolA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:42.695 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:19c2c870-c6f3-4285-87c5-0bc3f0b11466 +00:00:42.698 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:19c2c870-c6f3-4285-87c5-0bc3f0b11466 +00:00:42.708 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:42.708 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:42.708 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:42.709 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1f5f07a-7b94-4c11-9bed-18ded9484784", "e1f5f07a-7b94-4c11-9bed-18ded9484784", client_id) +00:00:42.709 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:42.710 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:42.711 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:42.711 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:42.713 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:42.743 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:42.743 [XNIO-1 task-1] IK9DB9VxTa6OT0m6LFQtYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:42.827 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:88de6404 +00:00:42.845 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:42.846 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:42.846 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:42.846 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1f5f07a-7b94-4c11-9bed-18ded9484784", "e1f5f07a-7b94-4c11-9bed-18ded9484784", client_id) +00:00:42.847 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:42.847 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:42.848 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:42.848 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:42.848 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:42.862 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:42.863 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:42.865 [XNIO-1 task-1] XkDjEGqOTmGNhUmUhKx0jQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=X-rtMRs3RfW1eGLzvWaX4Q +00:00:42.884 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:88de6404 +00:00:42.909 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.909 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.909 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.910 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:42.911 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.911 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.911 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.912 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:42.922 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:42.922 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:42.930 [XNIO-1 task-1] 9JfrlBlHSL-oYqb4FLNehQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=48ki7KoMRL2RGQej2JIRkA +00:00:42.937 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.937 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.938 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.941 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:42.942 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.945 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.945 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.945 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:42.952 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:42.953 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:42.956 [XNIO-1 task-1] kZrI0NmySUORSSPVvafXHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Y5dJAru5Q92TNpDRHxItdw +00:00:42.995 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.995 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.995 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:42.996 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:42.996 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:42.997 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:42.997 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:42.997 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.000 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:19c2c870-c6f3-4285-87c5-0bc3f0b11466 +00:00:43.002 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.003 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.003 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.004 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG com.networknt.schema.TypeValidator debug - validate( "053ac611-7e0b-4119-8ec8-693366fcb7ef", "053ac611-7e0b-4119-8ec8-693366fcb7ef", client_id) +00:00:43.007 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.008 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.008 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.008 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.009 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.092 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.093 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.093 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.093 [XNIO-1 task-2] WfwrFBhBS-qz2DxUvWtF0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.096 [XNIO-1 task-1] REl3rmafS-SJFzWqrKB2Ew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HIZ9i__IQrmETkWGAn5Iew +00:00:43.106 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.107 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.107 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.107 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "-rLUNUS3zDNuMUCSmW2YkYPduCzxWqFX4rBGDxIw6dA", "-rLUNUS3zDNuMUCSmW2YkYPduCzxWqFX4rBGDxIw6dA", code_challenge) +00:00:43.108 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.108 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.109 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.109 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.109 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.115 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.136 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c054693b-c91b-4a90-8685-4586e34159b7 +00:00:43.143 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.144 [XNIO-1 task-2] m-jbG7tYRyiFBZW9qRvEcQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.162 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c054693b-c91b-4a90-8685-4586e34159b7 +00:00:43.189 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.189 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.190 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.191 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", client_id) +00:00:43.191 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.192 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.192 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.192 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.194 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.201 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.201 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.205 [XNIO-1 task-2] i2MXhGdhSCS6QhYqtO7Szw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rG6Hb8L6Td6Ez02eLp3RoA +00:00:43.213 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.213 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.213 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.219 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.219 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.220 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.221 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.221 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.221 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.222 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.222 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:88de6404 +00:00:43.214 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "x-55Efxm3LrtLZuql53ocKbSBFZn5mPI8T1qaZMuMKM", "x-55Efxm3LrtLZuql53ocKbSBFZn5mPI8T1qaZMuMKM", code_challenge) +00:00:43.223 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.223 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.224 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.224 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.225 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.231 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.231 [XNIO-1 task-1] X4yU6cbhT1iQ4Pq7Q551pg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.231 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.232 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.238 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:88de6404 +00:00:43.239 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:88de6404 +00:00:43.239 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.239 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.240 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG com.networknt.schema.TypeValidator debug - validate( "b36abf86-7c4c-409b-a18c-29e2b5b20787", "b36abf86-7c4c-409b-a18c-29e2b5b20787", client_id) +00:00:43.241 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.245 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.245 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.245 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.246 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.246 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.246 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.253 [XNIO-1 task-2] U4PMOIsuT-CmdZsUzyGA2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=u2KTgBDjSTmoykYItYBI0g +00:00:43.254 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e267e5c7-f78e-4258-ae59-278dc374c816 +00:00:43.262 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.264 [XNIO-1 task-1] RAGRXuNQRBaFT4-J0RWC_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.275 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:16424c1d-81a4-4ff1-9eb7-9bdc10b896ea +00:00:43.283 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:16424c1d-81a4-4ff1-9eb7-9bdc10b896ea +00:00:43.304 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.304 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.305 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.305 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.306 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.306 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.306 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.306 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.314 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.314 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.317 [XNIO-1 task-1] NIkOwIjiRbiWVWfc_W44vA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3aVLBScWQAKEb-UsYoxQ8g +00:00:43.344 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.345 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.345 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.345 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0d31dd3b +00:00:43.345 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG com.networknt.schema.TypeValidator debug - validate( "vUn_DutliJ50Wh-UTeOmPJG58gxZIqneq-KuineGsMQ", "vUn_DutliJ50Wh-UTeOmPJG58gxZIqneq-KuineGsMQ", code_challenge) +00:00:43.346 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.346 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.347 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.347 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.348 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.348 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.356 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.357 [XNIO-1 task-1] 8X62GixZSHSPKuYegatRVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.379 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.381 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:54972a55 +00:00:43.381 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.382 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.383 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", client_id) +00:00:43.383 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.383 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.384 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.384 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.384 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.392 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.393 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.393 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.393 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.394 [XNIO-1 task-2] XH_-uTVlTbCOVVpJ27by7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VqEhtr1wRQSfo5hx5WDhow +00:00:43.395 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.397 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG com.networknt.schema.TypeValidator debug - validate( "16424c1d-81a4-4ff1-9eb7-9bdc10b896ea", "16424c1d-81a4-4ff1-9eb7-9bdc10b896ea", client_id) +00:00:43.397 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.404 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.404 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.404 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.405 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.405 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.405 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.405 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0ece22-5f0b-437a-b052-76f6afa221f0", "fb0ece22-5f0b-437a-b052-76f6afa221f0", client_id) +00:00:43.405 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.405 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.407 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.407 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.407 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.407 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.410 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0d31dd3b +00:00:43.417 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.417 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.417 [XNIO-1 task-1] D0H3nj2FROyDu2UwBnkViw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.417 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.421 [XNIO-1 task-2] AfqOPH7sTnm21nlyJdMgWQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M72k2JEwTtKiMRpW3R4RWA +00:00:43.428 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.428 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.428 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.429 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", client_id) +00:00:43.429 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.430 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.430 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.479 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.480 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.490 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.491 [XNIO-1 task-1] ZoxUYbwfQFSmnTIvzNH7zQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.506 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.506 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.507 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.507 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", client_id) +00:00:43.508 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.508 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.509 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.509 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.510 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.526 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.526 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.560 [XNIO-1 task-1] HNcOj9qqQJqNn4KGVYVL3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0noZuNe8SUewM1w6pL_PHA +00:00:43.560 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.560 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.561 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.561 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG com.networknt.schema.TypeValidator debug - validate( "dvVmf_m0mtTx1tKzOM2UKjW-zATVnFOx4WhQHxZ2Amc", "dvVmf_m0mtTx1tKzOM2UKjW-zATVnFOx4WhQHxZ2Amc", code_challenge) +00:00:43.561 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.562 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.563 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.563 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.563 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.564 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.581 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.582 [XNIO-1 task-2] 8hUPoqcqRhOwnlg_IcNBEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.590 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.591 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.592 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.593 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Q3iZfTGHDKR5zh0_xVdUOe21DFFb_v70m7ENCVzBi6E", "Q3iZfTGHDKR5zh0_xVdUOe21DFFb_v70m7ENCVzBi6E", code_challenge) +00:00:43.593 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.593 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.594 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.594 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.594 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.595 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe873a4e-ab2c-465c-897e-f64258a624df +00:00:43.595 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.606 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.606 [XNIO-1 task-2] ETahL2rCTeq6B15OnliT7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.610 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.612 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.613 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.613 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", client_id) +00:00:43.614 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.614 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.615 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.615 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.615 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.625 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1aa68238 +00:00:43.634 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.635 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.640 [XNIO-1 task-1] jMPPMPCbS5-oFa8Q-19NaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=L9EKNCAYSxq4j0nkH5aoqg +00:00:43.651 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.651 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.651 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.654 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.659 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.659 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.660 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.661 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1aa68238 +00:00:43.668 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.677 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.677 [XNIO-1 task-1] Y_OcJ1OMRgG-jQZ3hZAcfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.684 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.684 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.685 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.685 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:43.686 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.688 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.688 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.688 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.689 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.703 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.703 [XNIO-1 task-1] kVgPcQugR_SGNGey-kgAmg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.725 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.726 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.726 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.726 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG com.networknt.schema.TypeValidator debug - validate( "VolCsPbfieqHvx2aI7rXdtFxcXw4odio0fLBRNxA9dk", "VolCsPbfieqHvx2aI7rXdtFxcXw4odio0fLBRNxA9dk", code_challenge) +00:00:43.727 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.727 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.728 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.728 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.728 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.728 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.737 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.737 [XNIO-1 task-1] ML97wHbKQjWw7OT7x4To7w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.745 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.746 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.746 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.747 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG com.networknt.schema.TypeValidator debug - validate( "nyIIKJCVVXTSxQ0MI3Mod2kltx5uqX2HMP9o7IfAx8U", "nyIIKJCVVXTSxQ0MI3Mod2kltx5uqX2HMP9o7IfAx8U", code_challenge) +00:00:43.747 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.748 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.748 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.748 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.749 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.749 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.761 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.761 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.769 [XNIO-1 task-1] ekpTYcPcSDGhEv9nIi2QQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dVTGyd8UQWesUgYwbjhwrA +00:00:43.770 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.771 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.771 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.771 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.772 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.772 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.772 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.774 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.777 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.777 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.777 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.778 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG com.networknt.schema.TypeValidator debug - validate( "x-DQHU0lux-6oPEFDtBbgq1n0XLeI746X2wFrcQNJBE", "x-DQHU0lux-6oPEFDtBbgq1n0XLeI746X2wFrcQNJBE", code_challenge) +00:00:43.778 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.779 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.779 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.779 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.780 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.780 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.783 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.783 [XNIO-1 task-2] MRlUdAmVS5GOuUfaf1Ob1g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.789 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.789 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.789 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.790 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.790 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.790 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:43.791 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.791 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.793 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.793 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.793 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.802 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.802 [XNIO-1 task-2] Wu50hZiGSzG2HyN3an9wcA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.808 [XNIO-1 task-1] esH-7dOgRyW11RZOLr3zGg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=J-fNArX4Th-ziIic7G7gfA +00:00:43.809 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.809 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.817 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.818 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.818 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.819 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.819 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.819 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.832 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.832 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.849 [XNIO-1 task-2] txCxyKrwQUyNP8ncjTseXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZggsGjStTMyAKgi9asdAog +00:00:43.855 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.855 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.855 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.856 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG com.networknt.schema.TypeValidator debug - validate( "e267e5c7-f78e-4258-ae59-278dc374c816", "e267e5c7-f78e-4258-ae59-278dc374c816", client_id) +00:00:43.856 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.857 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.857 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.857 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.857 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.889 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.889 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.893 [XNIO-1 task-2] NNYvYHuTQ62DI9Ulc5OrYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M4taTdbKQR2yILvSe74lzQ +00:00:43.921 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.921 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.922 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:43.922 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG com.networknt.schema.TypeValidator debug - validate( "b262ec34-a090-4c2c-a1a4-750f264ea0e9", "b262ec34-a090-4c2c-a1a4-750f264ea0e9", client_id) +00:00:43.923 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.923 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.923 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:43.923 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:43.923 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:43.936 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.937 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.937 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.938 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:43.938 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.938 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.938 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.938 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.939 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.940 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.940 [XNIO-1 task-2] 1wc6RCfKRa-fDBLByHQfhg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.949 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.950 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.950 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.951 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9iSgOo_SA6j8YXgvwG_mcZp7f1wpSnc4IrpNAISN5g", "f9iSgOo_SA6j8YXgvwG_mcZp7f1wpSnc4IrpNAISN5g", code_challenge) +00:00:43.953 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:43.953 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:43.953 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.953 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.954 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.954 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.955 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.956 [XNIO-1 task-1] lhyZW8pFRwqOtOhp1hiO-A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:43.963 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:43.964 [XNIO-1 task-2] dqrggfLgSWWn78JDxGMCAQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:43.965 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.966 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:43.967 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:43.967 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:43.968 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:43.968 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:43.969 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bd938f97 +00:00:43.969 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:43.973 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:43.975 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:43.975 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:43.984 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:43.984 [XNIO-1 task-1] YfW7RuQmSJefje1taxgi3g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.014 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.014 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.015 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.015 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG com.networknt.schema.TypeValidator debug - validate( "RDtJW5NWC7tx5q03ejH6DYxzbJ_zJbq5W1NCbqtAdh4", "RDtJW5NWC7tx5q03ejH6DYxzbJ_zJbq5W1NCbqtAdh4", code_challenge) +00:00:44.015 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.016 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.016 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.016 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.016 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.016 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.019 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0d31dd3b +00:00:44.026 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.027 [XNIO-1 task-1] Ey8b5kL7TVmdy2DoR5OsUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.035 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.035 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.036 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.036 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Pv_SsaZPfoU25biEy49O-6ALPN-M8lphKKbKMonXE0Y", "Pv_SsaZPfoU25biEy49O-6ALPN-M8lphKKbKMonXE0Y", code_challenge) +00:00:44.037 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.037 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.037 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.037 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.038 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.038 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.047 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.047 [XNIO-1 task-1] ZXjclcKyRwWbD0WJk3z_tQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.056 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.057 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.057 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.058 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Z1lPVMN_H09Je9Py7jwRBVTSZMOXwNxb3T5Q6JHuT24", "Z1lPVMN_H09Je9Py7jwRBVTSZMOXwNxb3T5Q6JHuT24", code_challenge) +00:00:44.059 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.060 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.060 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.060 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.061 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.061 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.069 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.069 [XNIO-1 task-1] Q_ahOjs8SxaqSSDceeauOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.077 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bd938f97 +00:00:44.079 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.079 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.079 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.080 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG com.networknt.schema.TypeValidator debug - validate( "16424c1d-81a4-4ff1-9eb7-9bdc10b896ea", "16424c1d-81a4-4ff1-9eb7-9bdc10b896ea", client_id) +00:00:44.080 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.081 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.081 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.081 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.081 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.087 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.087 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.087 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.088 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.088 [XNIO-1 task-2] vvsKUSF2RruCS0vUtt5MxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.088 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b262ec34-a090-4c2c-a1a4-750f264ea0e9", "b262ec34-a090-4c2c-a1a4-750f264ea0e9", client_id) +00:00:44.089 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.090 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.090 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.090 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.090 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.100 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4dd7fcf4 +00:00:44.105 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4dd7fcf4 +00:00:44.124 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.125 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.125 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.125 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.125 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.126 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.126 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.126 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.126 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.127 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.125 [XNIO-1 task-1] 5KebyUuQTIO_qoK9qcyBmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.142 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.143 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bd938f97 +00:00:44.143 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.145 [XNIO-1 task-2] PqTK9m1lQmGroD3hwN-fpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=a2B8sMHCTfqtOtvhg7QMhQ +00:00:44.153 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.153 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.153 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.154 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.154 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.154 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.154 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.162 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.168 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:bd938f97 +00:00:44.177 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.177 [XNIO-1 task-2] W68iezb4Rt2jFG4OUpJZ6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.187 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.188 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.188 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.188 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG com.networknt.schema.TypeValidator debug - validate( "17YrFnNiOL_ak9b9rdpRSwz7gxoLTkrsynA1_Yecol0", "17YrFnNiOL_ak9b9rdpRSwz7gxoLTkrsynA1_Yecol0", code_challenge) +00:00:44.189 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.189 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.189 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.189 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.189 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.190 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.202 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.202 [XNIO-1 task-2] kaS4XADWRO-QhhBT7pkTUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.245 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.245 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.246 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.246 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2K7PgNSSntpfKhZjZhUjZjZGET8LG_ebSZpfra3Csxw", "2K7PgNSSntpfKhZjZhUjZjZGET8LG_ebSZpfra3Csxw", code_challenge) +00:00:44.246 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.247 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.247 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.247 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:095edb90-79a6-45f7-ad65-bc087ad5d4ed +00:00:44.247 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.247 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.249 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.259 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.260 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.261 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.261 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.261 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.262 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.262 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.262 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.262 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.262 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.264 [XNIO-1 task-2] U1Ti_8i7QDCSu7i0J096jQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2wvYATP5TgG37qgA-aTWtg +00:00:44.273 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.273 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.273 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.275 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.276 [XNIO-1 task-1] acAnCHUgTpCL2ElSbGrylg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.280 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG com.networknt.schema.TypeValidator debug - validate( "84caa2ad-381a-4648-9d86-14b14e7b07e4", "84caa2ad-381a-4648-9d86-14b14e7b07e4", client_id) +00:00:44.280 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.281 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.281 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.281 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.284 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4dd7fcf4 +00:00:44.287 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.293 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.293 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.296 [XNIO-1 task-2] viWSfhUxQKOl02IL7eiUUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jDAEyTf4RrWj-X3wtt2vlQ +00:00:44.308 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.308 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.309 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.309 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG com.networknt.schema.TypeValidator debug - validate( "Og8HgT7q97sAEJYpCVRMBiGFmKdS3b_PBPCuJ6agyro", "Og8HgT7q97sAEJYpCVRMBiGFmKdS3b_PBPCuJ6agyro", code_challenge) +00:00:44.310 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.310 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.310 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.310 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.311 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.311 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.320 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:342e22c7 +00:00:44.322 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.322 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.327 [XNIO-1 task-1] c4yxTOpZT6yGAsKs2pr34w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=A4qQsZciTIe9NLZXfqjunw +00:00:44.339 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.339 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.339 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.340 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG com.networknt.schema.TypeValidator debug - validate( "b36abf86-7c4c-409b-a18c-29e2b5b20787", "b36abf86-7c4c-409b-a18c-29e2b5b20787", client_id) +00:00:44.340 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.340 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.340 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.341 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.341 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.349 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e73657df +00:00:44.350 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.350 [XNIO-1 task-1] AvFZMSOKRDuX4haW7_CIOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.352 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e73657df +00:00:44.359 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.360 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.360 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.360 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "053ac611-7e0b-4119-8ec8-693366fcb7ef", "053ac611-7e0b-4119-8ec8-693366fcb7ef", client_id) +00:00:44.361 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.361 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.361 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.361 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.362 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.366 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:342e22c7 +00:00:44.371 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.371 [XNIO-1 task-1] IW5t2U1TSU-gUuftkIOwsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.377 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:16424c1d-81a4-4ff1-9eb7-9bdc10b896ea +00:00:44.394 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:342e22c7 +00:00:44.398 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.398 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.398 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.399 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG com.networknt.schema.TypeValidator debug - validate( "b36abf86-7c4c-409b-a18c-29e2b5b20787", "b36abf86-7c4c-409b-a18c-29e2b5b20787", client_id) +00:00:44.400 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.400 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.400 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.400 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.400 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.408 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:342e22c7 +00:00:44.414 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.414 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.416 [XNIO-1 task-1] 8IT0sBBzSu-RYxUlhX1Vjg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ks6AODVqS_6BhDpXVAMMPQ +00:00:44.417 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.417 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.417 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.418 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.418 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.418 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.418 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.419 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.420 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.420 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.420 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.421 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG com.networknt.schema.TypeValidator debug - validate( "w74RaTAZsW2QDmbrtGzCg_QlweaXR0j2HsFzWeM2VGc", "w74RaTAZsW2QDmbrtGzCg_QlweaXR0j2HsFzWeM2VGc", code_challenge) +00:00:44.421 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.422 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.422 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.422 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.423 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.423 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.430 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.430 [XNIO-1 task-2] zFM3kwSjRIi32JLk0KdKhg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.433 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.433 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.437 [XNIO-1 task-1] HCpRzW9OQi6Sl-CpEOEy3g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5DieCs4fQGuF0nMoux_EXg +00:00:44.445 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.445 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.445 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.446 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", client_id) +00:00:44.446 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.447 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.447 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.447 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.447 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.483 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8e15fa19-a8f7-4272-ba6e-3907a1704013 +00:00:44.487 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8e15fa19-a8f7-4272-ba6e-3907a1704013 +00:00:44.501 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.501 [XNIO-1 task-1] TOXUSIakSVi009r5D2qREQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.568 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.568 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.569 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.569 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4ONhH4paEcCu-TGB9s0z8-QeTK1WggJd3P-Hej0vmfQ", "4ONhH4paEcCu-TGB9s0z8-QeTK1WggJd3P-Hej0vmfQ", code_challenge) +00:00:44.569 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.570 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.570 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.570 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.570 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.570 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.578 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.578 [XNIO-1 task-1] -Zlum7uJS_eEiK9wod0PKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.583 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:764216f9-d071-46c7-8acb-bf7b5293e7e0 +00:00:44.586 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:764216f9-d071-46c7-8acb-bf7b5293e7e0 +00:00:44.608 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.608 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.608 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.609 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1f5f07a-7b94-4c11-9bed-18ded9484784", "e1f5f07a-7b94-4c11-9bed-18ded9484784", client_id) +00:00:44.609 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.609 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.610 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.610 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.610 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.620 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.620 [XNIO-1 task-1] b74fTGbOTK2JGapRzc5EZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.643 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.643 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.643 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.644 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:44.644 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.645 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.645 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.645 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.645 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.654 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.655 [XNIO-1 task-1] dkfcLZg9SXmS4Dt108GUEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.664 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0d31dd3b +00:00:44.692 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.693 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.693 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.693 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:44.694 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.694 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.694 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.694 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.697 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.703 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.704 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.706 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.706 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.706 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.707 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", client_id) +00:00:44.707 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.707 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.707 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.707 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.708 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.713 [XNIO-1 task-1] 2-5614afTQGMI27K7J-OPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ay-z-4ZHScuXn-xDbkZhng +00:00:44.720 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.720 [XNIO-1 task-2] 1QYtwc84R82BnmR-KGgyvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.721 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.721 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.721 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.723 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:44.723 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.723 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.724 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.724 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.724 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.732 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.732 [XNIO-1 task-1] 91y7gvanTvCeb9iRwdCtwQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.735 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:342e22c7 +00:00:44.743 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.743 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.743 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.744 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.744 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.745 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.745 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.747 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.754 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.755 [XNIO-1 task-1] iTFXCmbzSLuqwsaRLI5arg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.757 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0b173c58-2d18-4014-8ed7-8edcf75fb7f6 +00:00:44.761 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0b173c58-2d18-4014-8ed7-8edcf75fb7f6 +00:00:44.765 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.765 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.765 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.766 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:44.766 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.766 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.767 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.767 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.767 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.800 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.800 [XNIO-1 task-1] efiouVjhTymshr2yu1ySfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.807 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.807 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.807 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.807 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "4iW5_l-Pr6Skmo5kZ1C5G7UPnOfBZUpnowJZJ_h8kzA", "4iW5_l-Pr6Skmo5kZ1C5G7UPnOfBZUpnowJZJ_h8kzA", code_challenge) +00:00:44.809 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.809 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.809 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.810 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.810 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.812 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.812 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.812 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.812 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.813 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.813 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.814 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.814 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.814 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.820 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.821 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.825 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.825 [XNIO-1 task-2] dDF5-IbRQMWGSR-plWae6g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.826 [XNIO-1 task-1] -OdUf9zQQ9mfBRWxHH57Yg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pElKpPiYQaGzgoLv6OZHGw +00:00:44.832 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.833 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.833 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.833 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:44.834 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.834 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.834 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.834 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.834 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.844 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.845 [XNIO-1 task-2] S1h-GPsySPWbY4MHBJdnsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.845 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:281a5bba-e9a7-4fbe-b525-fdbb2dbc6e17 +00:00:44.853 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.854 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.855 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.855 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:44.856 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.857 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.858 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.860 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.860 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.870 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.870 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.871 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.871 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG com.networknt.schema.TypeValidator debug - validate( "04b6b673-cdc6-4ddd-8a84-8990943448ef", "04b6b673-cdc6-4ddd-8a84-8990943448ef", client_id) +00:00:44.872 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.872 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.872 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.872 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.872 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.882 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.883 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.885 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:44.885 [XNIO-1 task-1] NSKO6xe2Q0G_AfUovgQEUw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:44.885 [XNIO-1 task-2] w8LA5Uk1Rhy2P17AgiUUDA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BPrIAY3cQjS9HPkacexvEg +00:00:44.901 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.901 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.901 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.902 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aK5zalfo-tjotWI5y7idwzZIpsW3iOTpRtpBo-dXlgk", "aK5zalfo-tjotWI5y7idwzZIpsW3iOTpRtpBo-dXlgk", code_challenge) +00:00:44.902 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.902 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.903 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.903 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.903 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.904 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.917 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.917 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.951 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.953 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.953 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.953 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.954 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.955 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:44.955 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:44.955 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:44.961 [XNIO-1 task-1] 4MiCDWueTnmgqE5BTH3DeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9B4oLW7-TLWrIu9khUKWMw +00:00:44.966 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.966 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.967 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:44.969 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.969 [XNIO-1 task-2] h0ncr9-yQB699cAAP9a8Pw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.969 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG com.networknt.schema.TypeValidator debug - validate( "82c3c92e-aa5e-4766-b049-9e8b3ecd7836", "82c3c92e-aa5e-4766-b049-9e8b3ecd7836", client_id) +00:00:44.970 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:44.970 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:44.971 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.972 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.972 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.972 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:44.984 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:44.984 [XNIO-1 task-1] 5auQTT9iRm2cxNRgaePf8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:44.995 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.995 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:44.995 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:44.996 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "MLSOXuzImgBhXJh-5CQ9AcZoo-ebKMixcsDRaYiRe8Q", "MLSOXuzImgBhXJh-5CQ9AcZoo-ebKMixcsDRaYiRe8Q", code_challenge) +00:00:44.996 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:44.996 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:44.997 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:44.997 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:44.997 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:44.997 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.000 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.000 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.001 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.001 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.001 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.002 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.002 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.002 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.007 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.007 [XNIO-1 task-1] cQ9GrORSSM-mrlvRFBd4NQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.010 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.010 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.014 [XNIO-1 task-2] XRqN0YLeQru_vO1U5zek6A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=I9HZxthCQECGuwvqoW4nig +00:00:45.028 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.029 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.029 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.029 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "-5XKq9Y2i0JZfyqj0K9Lff3lypSXvrDJcKno9J6dpJo", "-5XKq9Y2i0JZfyqj0K9Lff3lypSXvrDJcKno9J6dpJo", code_challenge) +00:00:45.030 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:45.030 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.030 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.030 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.030 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.031 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.031 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.031 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.032 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.038 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.039 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.039 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.040 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.042 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.046 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.046 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.051 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.051 [XNIO-1 task-1] bskcZcfBTpWkHQbvAwn_jQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.054 [XNIO-1 task-2] xuZT0BiGSfq44cAHRTiK9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ATIfdiccTdK8OEoyUGnAoA +00:00:45.066 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.066 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.066 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.067 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1ff1d9-68a8-4332-bda3-732886544b20", "7e1ff1d9-68a8-4332-bda3-732886544b20", client_id) +00:00:45.067 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.067 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.067 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.068 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.068 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.069 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.069 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.069 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.070 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:45.070 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.070 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.070 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.071 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.071 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.080 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.080 [XNIO-1 task-2] 1S6dqCwrRzKGMxR0axBvmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.080 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.080 [XNIO-1 task-1] yYcFZVp5SP2u0G2ZeWTc6Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.082 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0527a2f1 +00:00:45.089 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0527a2f1 +00:00:45.089 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.089 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.090 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.090 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "BfqEa3d0L6JVji9I_BIYbriCnjyzs9q7UMQzhQJJFn8", "BfqEa3d0L6JVji9I_BIYbriCnjyzs9q7UMQzhQJJFn8", code_challenge) +00:00:45.090 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:45.090 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.091 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.091 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.091 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.091 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.100 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.100 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.102 [XNIO-1 task-2] Wk-G3WGfTGyQP2TkSRAUJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8pt2MrVuTz6waeYSg3K5kQ +00:00:45.108 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.108 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.108 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.109 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.109 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.109 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.109 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.110 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.117 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.117 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.120 [XNIO-1 task-2] v6UN6GqcTi64RaMrBXVg8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k8R1Wf3UQGavaI_unHUmHA +00:00:45.138 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.138 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.139 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.139 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG com.networknt.schema.TypeValidator debug - validate( "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", client_id) +00:00:45.140 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.140 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.140 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.140 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.143 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.145 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.145 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.145 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.145 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:45.146 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.146 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.146 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.146 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.146 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.149 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.149 [XNIO-1 task-2] 2uStoncUQPGBEXVEk_kTnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.156 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.157 [XNIO-1 task-1] ZbrIN9q2QN6C2HY6lE0DWA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.159 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.160 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.160 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.160 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.160 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG com.networknt.schema.TypeValidator debug - validate( "e1f5f07a-7b94-4c11-9bed-18ded9484784", "e1f5f07a-7b94-4c11-9bed-18ded9484784", client_id) +00:00:45.161 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.161 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.161 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.161 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.162 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.168 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.169 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.170 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.170 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.171 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.171 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG com.networknt.schema.TypeValidator debug - validate( "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", "df996199-b90a-4f8b-8ade-bbf7ec9d73a4", client_id) +00:00:45.171 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.172 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.172 [XNIO-1 task-2] DmqcGJFvQRyAbx6s5ESFow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YCwEsqn4TYuSQQOz7uwLgw +00:00:45.172 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.173 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.182 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.182 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.187 [XNIO-1 task-1] 0F1oiX_yS32Kdi8EZUBZXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QS0NUPKgTY-PlDPvMbJWDA +00:00:45.215 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:72728abe-a396-4af6-9563-af3e97a4c234 +00:00:45.231 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.231 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.231 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.232 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.232 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.233 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.233 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.233 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.241 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.241 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.245 [XNIO-1 task-1] kxDzdt5YSwmo1R-tXvTyGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=csN3mmCeTo2U9dQeTEHmlg +00:00:45.280 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.295 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.295 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.295 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.296 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG com.networknt.schema.TypeValidator debug - validate( "5S31VKzqx3cFOBgPuXVJZepMPQHF9Y641FMZF03AcjI", "5S31VKzqx3cFOBgPuXVJZepMPQHF9Y641FMZF03AcjI", code_challenge) +00:00:45.297 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:45.297 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.298 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.298 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.298 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.298 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.305 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.305 [XNIO-1 task-1] IHTuhitOQ5O8UG2Ve9IbBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.319 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0527a2f1 +00:00:45.321 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.321 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.322 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.324 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.325 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", client_id) +00:00:45.325 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.325 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.326 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.326 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.326 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.361 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.361 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.369 [XNIO-1 task-1] nKrTarRxRi2f6VxcNH6OKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ay6ZVOgBQJSajY0Wrc6iqQ +00:00:45.374 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.374 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.375 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.376 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG com.networknt.schema.TypeValidator debug - validate( "82c3c92e-aa5e-4766-b049-9e8b3ecd7836", "82c3c92e-aa5e-4766-b049-9e8b3ecd7836", client_id) +00:00:45.376 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.376 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.377 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.377 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.377 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.399 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.399 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.400 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e267e5c7-f78e-4258-ae59-278dc374c816 +00:00:45.400 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e73657df +00:00:45.401 [XNIO-1 task-1] WQ70NkvKRCuZM8syWrLsBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AbLxlawHQNuMA7ZmmuXvGw +00:00:45.408 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.408 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.408 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.409 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "29fbde61-63b5-4061-b72a-a3c2a39376f9", "29fbde61-63b5-4061-b72a-a3c2a39376f9", client_id) +00:00:45.409 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.410 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.411 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.411 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.412 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.422 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.422 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.424 [XNIO-1 task-1] mKm1QGXtS0mOYuYbc7a_PA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NQaaqKEhRWe0oyrRULXpbA +00:00:45.429 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.429 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.429 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.430 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1ff1d9-68a8-4332-bda3-732886544b20", "7e1ff1d9-68a8-4332-bda3-732886544b20", client_id) +00:00:45.430 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.430 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.430 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.431 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.431 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.437 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.437 [XNIO-1 task-1] Lho0K7cPS4-KAf72cA6x_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.442 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.443 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.443 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.443 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG com.networknt.schema.TypeValidator debug - validate( "183df51c-1383-4527-8c07-c995dee5b861", "183df51c-1383-4527-8c07-c995dee5b861", client_id) +00:00:45.444 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.444 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.445 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.445 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.445 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.456 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.456 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.458 [XNIO-1 task-2] tgAp8jGKTZua_gbNVShRaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vsy8MVRKTZ6G-UZBwL30aA +00:00:45.460 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.461 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.461 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.462 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84caa2ad-381a-4648-9d86-14b14e7b07e4", "84caa2ad-381a-4648-9d86-14b14e7b07e4", client_id) +00:00:45.462 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.462 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.463 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.463 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.463 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.469 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.470 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.474 [XNIO-1 task-2] GVYKJXIoSpOl-SE5XbTadQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FldFC34hR7OlEe_CEQlKqQ +00:00:45.508 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.509 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.509 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.510 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.511 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.511 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.511 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.511 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.517 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.518 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.519 [XNIO-1 task-2] 6AjMTQIZSE2AtBGctF5ojQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=A4rsCVasSfC7hTtzn_SecQ +00:00:45.530 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.530 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.532 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.533 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.534 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.535 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.535 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.535 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.577 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.577 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.580 [XNIO-1 task-2] dF4GzYHnSHCZlAgPMF12IQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ovdrceSlSOi2KcMvX4rKxQ +00:00:45.587 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.587 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.587 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.588 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.588 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.588 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.588 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.589 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.604 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.604 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.604 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.605 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG com.networknt.schema.TypeValidator debug - validate( "_BUwHaps_7z1y4s5ItuWOBXzIj2i33lneZr67dLjsQg", "_BUwHaps_7z1y4s5ItuWOBXzIj2i33lneZr67dLjsQg", code_challenge) +00:00:45.605 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", client_id) +00:00:45.605 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.605 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.606 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.606 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.606 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.606 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.605 [XNIO-1 task-2] WaPIE9VzTQqSBOdSywhlVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.616 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.616 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.625 [XNIO-1 task-1] 1JSXfyyMRe-xu4qY5WCAtw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RTpDlISIRUSDw7oEqbAdFw +00:00:45.626 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.626 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.627 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.627 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.627 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.628 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.628 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.628 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.629 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.629 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.630 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.631 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG com.networknt.schema.TypeValidator debug - validate( "uB9-a7hluDK_efORyzGvo7wDTwpCyCTW0o5QAT0M89g", "uB9-a7hluDK_efORyzGvo7wDTwpCyCTW0o5QAT0M89g", code_challenge) +00:00:45.631 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:45.631 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.631 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.632 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.632 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.643 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.643 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.648 [XNIO-1 task-1] 3N6cgV6RTWCunqcJysHPNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=E-_-LbRpTteMzvUQ8-42_Q +00:00:45.705 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.705 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.705 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.706 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG com.networknt.schema.TypeValidator debug - validate( "183df51c-1383-4527-8c07-c995dee5b861", "183df51c-1383-4527-8c07-c995dee5b861", client_id) +00:00:45.706 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.707 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.707 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.707 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.707 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.713 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.713 [XNIO-1 task-2] GuERDLf6TaqtkdA-Z0ynDg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.723 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.724 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.728 [XNIO-1 task-1] t2cRi-V2RQqtYuexcpiEzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=i5S5T8ZYS7O-ZJeUuefHxQ +00:00:45.735 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.735 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.735 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.736 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.737 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.738 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.738 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.738 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.750 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.750 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.755 [XNIO-1 task-1] eXdV7xk_SluiqC1fYGQ_lQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9-QckFWMTpaszPVILoi3VA +00:00:45.767 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.767 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.768 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.768 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.768 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.769 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.769 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.770 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.787 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.787 [XNIO-1 task-1] PkCnESHuR9CZ98mIc__S8A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.791 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.793 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.793 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.794 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1PMkLOaqex4oqVmBNgM4KWTD8J8WyVQi7LaUm7iJtKw", "1PMkLOaqex4oqVmBNgM4KWTD8J8WyVQi7LaUm7iJtKw", code_challenge) +00:00:45.794 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:45.794 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.795 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.796 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.796 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.799 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.814 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.814 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.817 [XNIO-1 task-2] H945iQiRSXexFNDbo4aYaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eNy-uH58Qw-JFDAl8M_A4g +00:00:45.827 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0d31dd3b +00:00:45.834 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.834 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.834 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.835 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.835 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.835 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.835 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.836 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.847 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.848 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.851 [XNIO-1 task-2] gJ32aFFTTzOOqmCxBLcUIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aURjtrhuRTiih-oJy4WjsQ +00:00:45.854 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.854 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.855 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.855 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", client_id) +00:00:45.855 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.856 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.856 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.856 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.856 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.857 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.857 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.857 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.858 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG com.networknt.schema.TypeValidator debug - validate( "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", client_id) +00:00:45.858 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.858 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.858 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.860 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.860 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.868 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.869 [XNIO-1 task-2] yp9ewB-BTFOiMuoj5lpaUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.874 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.874 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.878 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.878 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.879 [XNIO-1 task-1] rwBHOST4R5CgHu8uRs_t5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HWO-nuXaQpmu3LnIF5_3ng +00:00:45.879 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:45.879 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:45.879 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:45.880 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:45.880 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:45.880 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:45.881 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:45.886 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.887 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.887 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.887 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG com.networknt.schema.TypeValidator debug - validate( "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", client_id) +00:00:45.888 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.889 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.889 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.889 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.889 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.893 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.893 [XNIO-1 task-2] DG-ZKfM9SeO251vqjUN1HA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.902 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.902 [XNIO-1 task-1] kZ2vldm-Q-OK1PnHjlJliA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.911 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.911 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.911 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.911 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", client_id) +00:00:45.912 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.912 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.912 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.912 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.914 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.933 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.935 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:45.935 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:45.936 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG com.networknt.schema.TypeValidator debug - validate( "NO0cuHCI2LYCLgo6-sncFqYS4aicJ6zmp38K1wIwu0c", "NO0cuHCI2LYCLgo6-sncFqYS4aicJ6zmp38K1wIwu0c", code_challenge) +00:00:45.936 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:45.936 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:45.936 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:45.937 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:45.937 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:45.939 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:45.941 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:45.941 [XNIO-1 task-1] 5g7kvmWuQtuzZEmvaeK2aw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:45.949 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:45.950 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:45.956 [XNIO-1 task-2] skFQC-XhT9GRuPJ_ucOH3g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wDBtK5NNTPWCmVav4Psb0Q +00:00:45.982 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d32cd748 +00:00:46.050 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.051 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.051 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.051 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG com.networknt.schema.TypeValidator debug - validate( "lrV2Ult4cUCRcnXBXmVZ3T_VzOWbIqTB6OeyyHjNBwg", "lrV2Ult4cUCRcnXBXmVZ3T_VzOWbIqTB6OeyyHjNBwg", code_challenge) +00:00:46.051 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.052 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.053 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.053 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.053 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.053 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.073 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.074 [XNIO-1 task-2] pUXVeMxVQRWbBRyM3md53A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.080 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:986b9ec7-2e7d-423b-b1bd-8c5a9c2d531c +00:00:46.081 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:986b9ec7-2e7d-423b-b1bd-8c5a9c2d531c +00:00:46.083 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.083 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.084 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.084 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:46.084 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.085 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.086 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.086 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.086 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.097 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.097 [XNIO-1 task-2] ZB2ckzDTSAyCVFEuBWuUmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.101 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.101 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.102 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.102 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", client_id) +00:00:46.105 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.105 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.105 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.105 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.105 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.109 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d32cd748 +00:00:46.118 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.119 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.122 [XNIO-1 task-1] 4ZgnYp-LQjm_DVr3o-XeiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=llO5caKVRuGavFtb0q8C8A +00:00:46.136 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.136 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.136 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.137 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "e1f5f07a-7b94-4c11-9bed-18ded9484784", "e1f5f07a-7b94-4c11-9bed-18ded9484784", client_id) +00:00:46.137 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.137 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.137 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.138 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.138 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.139 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.139 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.139 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.140 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.140 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.140 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.140 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.140 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.140 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.148 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.148 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.150 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.150 [XNIO-1 task-1] z42_bbAbTIejWbyGc21-Lg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.152 [XNIO-1 task-2] OvXYIcxiTiSpJHNWVpfDNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oXO7J1m8Tvu53Cs7i8M87Q +00:00:46.168 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.170 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.170 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.171 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "PspNaXN9qb1GoORfxp0R9Lp4QTkwGnKW709pfOuV0lo", "PspNaXN9qb1GoORfxp0R9Lp4QTkwGnKW709pfOuV0lo", code_challenge) +00:00:46.171 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.171 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.171 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.171 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.171 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.172 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.182 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.182 [XNIO-1 task-1] L86y8HIlR82U1XyFvq65Iw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.251 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.251 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.252 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.252 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", client_id) +00:00:46.252 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.252 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.253 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.253 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.253 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.253 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.253 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.253 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.254 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1f5f07a-7b94-4c11-9bed-18ded9484784", "e1f5f07a-7b94-4c11-9bed-18ded9484784", client_id) +00:00:46.254 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.254 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.254 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.254 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.255 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.257 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73395de2 +00:00:46.260 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73395de2 +00:00:46.262 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.262 [XNIO-1 task-1] CkK_EZToR_mxopHQ96qWzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.264 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.264 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.269 [XNIO-1 task-2] voFKhZrFQvGmRW92tpOqlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=goh6gdM-TNiSXNZ_1s903g +00:00:46.271 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.271 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.271 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.271 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", client_id) +00:00:46.271 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.272 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.272 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.272 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.272 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.277 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.278 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.278 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.278 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG com.networknt.schema.TypeValidator debug - validate( "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", client_id) +00:00:46.278 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.279 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.279 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.280 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.280 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.281 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.281 [XNIO-1 task-2] 9tttsgG2RiyvozJocIFIcA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.287 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.287 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.287 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.287 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Aam5zsBlDZ2L4wcwDKtXsMuvtoa6bVsMbuTW_W50W_c", "Aam5zsBlDZ2L4wcwDKtXsMuvtoa6bVsMbuTW_W50W_c", code_challenge) +00:00:46.288 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.288 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.288 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.288 [XNIO-1 task-1] B3X6Yx_FQR2IbZsQbk1njw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.288 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.289 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.290 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.290 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.301 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.302 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.317 [XNIO-1 task-2] JdR-kSfJQP-dBExXjJg1UQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PgVDPcd7Q-qCbz2wKq3tsA +00:00:46.327 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.328 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.330 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.332 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG com.networknt.schema.TypeValidator debug - validate( "e77106bc-7b28-4213-8e50-e8c100768331", "e77106bc-7b28-4213-8e50-e8c100768331", client_id) +00:00:46.333 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.334 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.336 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.336 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.340 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.352 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b89904dd-3ce7-4aca-ba26-957b6a275bba +00:00:46.357 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b89904dd-3ce7-4aca-ba26-957b6a275bba +00:00:46.358 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.358 [XNIO-1 task-2] Zj3EFhY0Rr64JCqJMA4nkA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.363 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.365 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.410 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aa19bf33-caed-4355-bdeb-510ef0b61f14 +00:00:46.417 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.417 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.418 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.418 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.418 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.418 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.419 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.419 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.436 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.436 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.442 [XNIO-1 task-2] k_ddOIy0SFSKvYVPVmKT4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zBlXhH_8Qnq4b260wz1z9Q +00:00:46.463 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.463 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.463 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.464 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG com.networknt.schema.TypeValidator debug - validate( "L1JpcjqVoAXFGdpf747OV7-7ZWjiLWD30KKL3b2dVf8", "L1JpcjqVoAXFGdpf747OV7-7ZWjiLWD30KKL3b2dVf8", code_challenge) +00:00:46.464 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.464 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.464 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.464 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.465 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.467 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.473 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.477 [XNIO-1 task-2] Cl_uNjxvQgqywgzZr1XtNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.501 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.501 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.501 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.504 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG com.networknt.schema.TypeValidator debug - validate( "RRhaa7V7gBHhwWYkGfMDxx7gPFctlfmZW3PXLSQVtJI", "RRhaa7V7gBHhwWYkGfMDxx7gPFctlfmZW3PXLSQVtJI", code_challenge) +00:00:46.504 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.504 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.504 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.505 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.505 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.505 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.514 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a5300e94-17ad-4131-b143-7a691d6e8271 +00:00:46.526 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.533 [XNIO-1 task-2] Fh1LCFguRumBRjFPLtUwUw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.535 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.535 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.536 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.536 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1ff1d9-68a8-4332-bda3-732886544b20", "7e1ff1d9-68a8-4332-bda3-732886544b20", client_id) +00:00:46.536 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.537 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.537 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.537 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.537 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.551 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.551 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.552 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.553 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG com.networknt.schema.TypeValidator debug - validate( "A19iYr8EAPsEvC40LSDU7igkoCT0ckVPhPeVEvrX8qg", "A19iYr8EAPsEvC40LSDU7igkoCT0ckVPhPeVEvrX8qg", code_challenge) +00:00:46.553 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.553 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.553 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.554 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.554 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.554 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.557 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.557 [XNIO-1 task-1] Ei08Gtr0SWSvD63ARrMjRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.576 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.576 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.582 [XNIO-1 task-2] LuVnzj9dRwmKrBcZBSvRHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6egrijeST1SWrq816yHYtA +00:00:46.687 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aed8491e-136a-4553-b924-8d43b70f48cc +00:00:46.723 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.723 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.724 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.724 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", client_id) +00:00:46.724 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.725 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.725 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.725 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.725 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.727 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:064d0f93-ab73-4727-b1f5-e22c0c1c3cc7 +00:00:46.731 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.731 [XNIO-1 task-2] Xy8EGXMZT1uvl3HJQScoGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.754 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:064d0f93-ab73-4727-b1f5-e22c0c1c3cc7 +00:00:46.778 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.779 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.779 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.779 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG com.networknt.schema.TypeValidator debug - validate( "800c022b-f8af-42d3-afdc-f6b54235f94a", "800c022b-f8af-42d3-afdc-f6b54235f94a", client_id) +00:00:46.780 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.780 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.780 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.780 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.780 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.816 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.817 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.821 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0e26b1bc +00:00:46.823 [XNIO-1 task-2] syfROCjAR-yO8CtTWsOq0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CdH2HEWBSQSGslh64Chpvw +00:00:46.832 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.832 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.833 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.833 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.833 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.834 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.834 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.834 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.848 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.849 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.855 [XNIO-1 task-2] uER8o6rmTlWjmKsbuBVqpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UKYBwxx1RpOCfkWs-vgCoA +00:00:46.869 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.869 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.869 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.870 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:46.870 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.870 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.870 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.872 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.873 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.874 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.874 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.874 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG com.networknt.schema.TypeValidator debug - validate( "K7b-5RNl2wWAmVp8AUca2cgJKmjLjtQxeDtKwQLjvfk", "K7b-5RNl2wWAmVp8AUca2cgJKmjLjtQxeDtKwQLjvfk", code_challenge) +00:00:46.874 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.875 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.875 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.875 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.875 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.876 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.881 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.881 [XNIO-1 task-2] jPAwnOBWTbaEhUk0r2iLfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.883 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.883 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.893 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.893 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.895 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:46.887 [XNIO-1 task-1] t3_FJ7-QSqG-rofme07AWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.896 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.900 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:46.902 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:46.902 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:46.902 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:46.907 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.910 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.910 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.911 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.911 [XNIO-1 task-2] 3IJYwno0Td6t0dXvCp3GjA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.911 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG com.networknt.schema.TypeValidator debug - validate( "bLW1VE5CmrSxEkoFNBzv2oePRG2v70y03SKi9RE2Wdk", "bLW1VE5CmrSxEkoFNBzv2oePRG2v70y03SKi9RE2Wdk", code_challenge) +00:00:46.911 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.912 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.912 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.912 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.912 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.912 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.922 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:46.922 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:46.925 [XNIO-1 task-1] aKhtoVYpQ9OD84HRIMJgbw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3Ya5SZ-sQ3uzkjKXSAHy2g +00:00:46.936 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.936 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.937 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.937 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG com.networknt.schema.TypeValidator debug - validate( "xMepcENbujs8NQulKMCP8s79u-yCJz1j859YKDIHs8I", "xMepcENbujs8NQulKMCP8s79u-yCJz1j859YKDIHs8I", code_challenge) +00:00:46.937 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:46.937 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.938 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.938 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.938 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.938 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.967 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:46.967 [XNIO-1 task-1] bKrLdEjIQhyCs0X10wlW1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:46.985 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.985 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:46.985 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:46.986 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG com.networknt.schema.TypeValidator debug - validate( "2af72bf1-f4df-4b37-9227-ccf01717f7c1", "2af72bf1-f4df-4b37-9227-ccf01717f7c1", client_id) +00:00:46.986 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:46.986 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:46.986 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:46.986 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:46.994 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:46.997 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7464dddf-9684-47bf-b2a2-5c1af606f1b6 +00:00:47.004 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.004 [XNIO-1 task-1] pp9OG4AES6abLQULOWNA0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.014 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.016 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.016 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.017 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG com.networknt.schema.TypeValidator debug - validate( "WtM6IkjKNabySPC6gKGPRHXY8bQm1dY2yeLFa0P8zFk", "WtM6IkjKNabySPC6gKGPRHXY8bQm1dY2yeLFa0P8zFk", code_challenge) +00:00:47.017 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.017 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.017 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.017 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.017 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.017 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.018 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.018 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.018 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.018 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.018 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.018 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.018 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.019 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.025 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.025 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.028 [XNIO-1 task-1] Iap-mn2rS66hvy_IbqLC-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=koAoXcInT26XiYLwnfYTPw +00:00:47.031 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73395de2 +00:00:47.031 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.032 [XNIO-1 task-2] eHpa3P-dSKWb1EGxEiaJzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.041 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.041 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.041 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.042 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", "60c2bb92-4ee2-4160-b1ee-a2bf95f0f076", client_id) +00:00:47.042 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.042 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.043 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.043 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.043 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.071 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ffd6d56b-da25-4b10-bca1-e94187bdd9b2 +00:00:47.075 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.075 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.076 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0527a2f1 +00:00:47.082 [XNIO-1 task-2] IGVsZDj5Q_GrpHz-bYWvjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5TjQNoBtRtijqNVpsUMxhA +00:00:47.092 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.093 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.093 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.093 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.094 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.094 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.094 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.094 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.114 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.114 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.122 [XNIO-1 task-2] HemSlOVfR-y0UzrmaAu1fg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=x-M74hK8RMWjk8jUNh5gUg +00:00:47.129 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.129 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.130 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.131 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.132 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.132 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.133 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.133 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.140 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.140 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.145 [XNIO-1 task-2] 5XZfxmr-TzGZ4e6fec3yyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MLaB36AvRNCj91-nfg-5Rw +00:00:47.162 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.162 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.162 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.163 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", client_id) +00:00:47.163 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.163 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.163 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.163 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.164 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.174 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.174 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.181 [XNIO-1 task-2] YD5ghJKKQ26pAvDb-BQRYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2gBR9T3MRj6KKNwZ8QFq0g +00:00:47.187 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.187 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.187 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.188 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1ff1d9-68a8-4332-bda3-732886544b20", "7e1ff1d9-68a8-4332-bda3-732886544b20", client_id) +00:00:47.188 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.188 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.188 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.188 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.188 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.192 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.192 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.192 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.193 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", client_id) +00:00:47.193 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.193 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.193 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.193 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.193 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.197 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.197 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.202 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.202 [XNIO-1 task-1] bWdK0JQATRKoTNQhHT-YiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.209 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.209 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.210 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.210 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG com.networknt.schema.TypeValidator debug - validate( "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", "958a5f3d-24ae-401e-9a9b-b09eab6a77bb", client_id) +00:00:47.210 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.210 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.211 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.211 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.211 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.217 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.218 [XNIO-1 task-1] BiOZMEcqS1C8vqIwYx1k-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.221 [XNIO-1 task-2] rMvqR1WOTJi4yALUy0yJIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Clj6TYquREqrmW9BQ2NXKA +00:00:47.223 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.223 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.223 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.224 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.224 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.224 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.224 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.225 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.227 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.227 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.227 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.228 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eaBqWL6mXMoi9anuHaPlBc8yjqOHiWQaM-eoDS1jJPI", "eaBqWL6mXMoi9anuHaPlBc8yjqOHiWQaM-eoDS1jJPI", code_challenge) +00:00:47.229 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.229 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.229 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.230 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.230 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.230 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.233 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.233 [XNIO-1 task-2] vWaC3LiPQRSSXZb1rbC3gg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.242 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.242 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.247 [XNIO-1 task-1] vALSh80YSmGSVTRJDYNoIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UIevTOArQRy4JbmEIT1d6w +00:00:47.248 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.248 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.249 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.249 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.249 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.249 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.250 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.250 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.251 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.251 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.252 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.252 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG com.networknt.schema.TypeValidator debug - validate( "zJ_DpOtrTp5lreLf6u_ZiMNEHNa48-hTnYmSWrsjlzA", "zJ_DpOtrTp5lreLf6u_ZiMNEHNa48-hTnYmSWrsjlzA", code_challenge) +00:00:47.252 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.253 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.254 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.254 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.254 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.254 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.264 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.264 [XNIO-1 task-2] R4HaYbPcQD6DeqNxrCqSIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.266 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.266 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.267 [XNIO-1 task-1] HVPSgOjDRcSChsKBc2HsaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3juOBjmfRfulAAPKeMV8Iw +00:00:47.274 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.274 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.274 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.277 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.278 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.278 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.278 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.278 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.278 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.278 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.278 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.278 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG com.networknt.schema.TypeValidator debug - validate( "fWjHNxduqYBPx26dSIdn1PtBHVyTzW7AUDPT_q4U3Ew", "fWjHNxduqYBPx26dSIdn1PtBHVyTzW7AUDPT_q4U3Ew", code_challenge) +00:00:47.279 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.279 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.279 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.279 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.280 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.280 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.285 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.285 [XNIO-1 task-1] e6vyK0XMRteSrDzuepFTgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.291 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.291 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.299 [XNIO-1 task-2] LxPx2APrQ3ug6HkL3L-rTA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TGV-bdnVTFiXtltTBvfTYw +00:00:47.306 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.306 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.309 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.310 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.310 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.310 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.310 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.310 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.340 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:94f1fcc2-cc5e-477f-9a1e-5783f76132b1 +00:00:47.350 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.351 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.355 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e73657df +00:00:47.356 [XNIO-1 task-2] aRfoL-o-SQ-C2ek1gHboIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dU23DDpPSYK1b3mOAUwp5Q +00:00:47.358 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.358 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.358 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.359 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG com.networknt.schema.TypeValidator debug - validate( "21f5eb34-6c70-4921-af18-37a600be7a03", "21f5eb34-6c70-4921-af18-37a600be7a03", client_id) +00:00:47.359 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.359 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.359 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.359 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.360 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.362 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.366 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.366 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.366 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ffd6d56b-da25-4b10-bca1-e94187bdd9b2", "ffd6d56b-da25-4b10-bca1-e94187bdd9b2", client_id) +00:00:47.366 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.367 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.367 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.367 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.368 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.378 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.378 [XNIO-1 task-1] RpO9H_AKQAC_enxF3Et63A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.385 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.385 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.387 [XNIO-1 task-2] ScdIEbzVTHWFMBBTnlzTrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jKaR-rycQaepld_EvFi1GQ +00:00:47.391 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.391 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.391 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.392 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", client_id) +00:00:47.392 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.393 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.393 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.393 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.394 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.406 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.406 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.411 [XNIO-1 task-2] S2RiZ1DUQAGqBVw89g0qGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GWmNik6tRTi9Ec4bIMjsAg +00:00:47.436 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.436 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.436 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.437 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.437 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.437 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.437 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.440 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.454 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.455 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.461 [XNIO-1 task-2] VCOWGZW4TiGx43BMj3gsFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gYVHEMjNRqaBvbeY-b6kNw +00:00:47.470 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.470 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.470 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.470 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.470 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.471 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.471 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.471 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.483 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.483 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.484 [XNIO-1 task-2] TxmNjXLOS0umPzt8uiVKhw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vKAy-m6uQnyVD79lwlFN3w +00:00:47.490 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.490 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.490 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.491 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.491 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.491 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.491 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.492 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.499 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.499 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.503 [XNIO-1 task-2] Bp0fGfeoRWK4_gBGJbLS6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LGFWj9JiRnWHeu0IfTeRdQ +00:00:47.508 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.508 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.508 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.509 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.509 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.509 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.509 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.509 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.513 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e73657df +00:00:47.516 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.516 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.517 [XNIO-1 task-2] 8i6IAD38TC-84hNNprl6jA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=B2tmMi6US--HY-bcF_0TCg +00:00:47.535 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.536 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.536 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.536 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", client_id) +00:00:47.536 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.536 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.537 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.537 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.537 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.545 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.545 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.548 [XNIO-1 task-2] gTs2WHUkSGuFHhodPmC6PQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=isUwsjE6QyC_n_YR7I4QFw +00:00:47.612 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.612 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.612 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.613 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.613 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.613 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.613 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.613 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.622 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.622 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.624 [XNIO-1 task-2] EKNNyNiJQkuZteQQyMuQ6A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Z4XwEzoXSuW8_mgn_ouN_w +00:00:47.634 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.635 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.635 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.635 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.635 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.636 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.636 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.636 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.639 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.639 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.639 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.640 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG com.networknt.schema.TypeValidator debug - validate( "q9GiT22xySGYDX7qOmwCmgR-dzi7C69Tzi0rIZ7RvF8", "q9GiT22xySGYDX7qOmwCmgR-dzi7C69Tzi0rIZ7RvF8", code_challenge) +00:00:47.640 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.640 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.640 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.640 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.640 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.641 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.650 [XNIO-1 task-1] TFpcmCF8TMyo94WMkW6Cpw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.650 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.650 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.650 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.651 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0e26b1bc +00:00:47.652 [XNIO-1 task-2] ClFbFO5RTEKhZD9fXU7MRA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FOuNzr1XQzuudkn8bolgsQ +00:00:47.656 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.656 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.657 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.657 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", client_id) +00:00:47.657 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.657 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.658 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.658 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.658 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.674 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.674 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.688 [XNIO-1 task-2] XtpFbrs9SXyWyMC8jO_G4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=twCDH22SSjGQH5tuLLO6_g +00:00:47.689 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73395de2 +00:00:47.693 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.693 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.694 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.694 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.694 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.694 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.695 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.695 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.701 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.701 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.705 [XNIO-1 task-2] 9tGQ-KLQRaK0npU7E6MnFg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1kKjZQogSLqai9xMCuk5wQ +00:00:47.733 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f601166b-3e12-469d-80a4-54e2267dad66 +00:00:47.747 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.747 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.748 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.748 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "183df51c-1383-4527-8c07-c995dee5b861", "183df51c-1383-4527-8c07-c995dee5b861", client_id) +00:00:47.748 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.749 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.749 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.749 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.749 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.755 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.755 [XNIO-1 task-2] PiZnYV-RQ9KVRhWNQW38WQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.763 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.764 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.764 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.764 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG com.networknt.schema.TypeValidator debug - validate( "183df51c-1383-4527-8c07-c995dee5b861", "183df51c-1383-4527-8c07-c995dee5b861", client_id) +00:00:47.765 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.765 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.765 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.765 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.765 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.773 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2241b81b-28ce-47cb-a745-43b8f2b85de6 +00:00:47.775 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.778 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.780 [XNIO-1 task-2] NmCQEzBbSg2dJlFbXf0lFg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U4oP6yk6RhCkFlr6nvEdkQ +00:00:47.788 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.788 [XNIO-1 task-2] MJNLSLvNSRuRzLEnQgG95A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.788 [XNIO-1 task-2] MJNLSLvNSRuRzLEnQgG95A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.788 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.788 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.788 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG com.networknt.schema.TypeValidator debug - validate( "FV4zHrnBQuPkXX7YOItor2S6BXlDwwx45F8Et1gZ76Y", "FV4zHrnBQuPkXX7YOItor2S6BXlDwwx45F8Et1gZ76Y", code_challenge) +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", "8bc4d9d3-ed0f-43ee-9119-2b1a0861783d", client_id) +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.789 [XNIO-1 task-2] MJNLSLvNSRuRzLEnQgG95A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.789 [XNIO-1 task-2] MJNLSLvNSRuRzLEnQgG95A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.789 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.797 [XNIO-1 task-2] MJNLSLvNSRuRzLEnQgG95A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.797 [XNIO-1 task-2] MJNLSLvNSRuRzLEnQgG95A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.799 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.799 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.802 [XNIO-1 task-1] ma7FIgVBTiKq4ldo4AUsnw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4xuoGPEVQ7W_YJwwmYFA6Q +00:00:47.804 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.804 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.805 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.806 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.806 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.806 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.807 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.807 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.810 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.811 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.811 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.811 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG com.networknt.schema.TypeValidator debug - validate( "AYHf-MyZcRblO8Gp21HlJGcc0P2gVyKnJ1Z5QLrxgZs", "AYHf-MyZcRblO8Gp21HlJGcc0P2gVyKnJ1Z5QLrxgZs", code_challenge) +00:00:47.811 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.811 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.812 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.812 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.812 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.812 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.815 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.815 [XNIO-1 task-1] vb1eMg6UQbikcmVqm70roQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.822 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.822 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.822 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.822 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.822 [XNIO-1 task-2] mq59sd2GSWqi4unVN9vpHg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.822 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:47.823 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.823 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.823 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.824 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.824 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.829 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.830 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.830 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.831 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG com.networknt.schema.TypeValidator debug - validate( "x2QWJ4fvkBf7eEWX-H-ZWQIq8t5D6D7WbXYcav7Ga2w", "x2QWJ4fvkBf7eEWX-H-ZWQIq8t5D6D7WbXYcav7Ga2w", code_challenge) +00:00:47.831 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:47.831 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.831 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.832 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.832 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.834 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.836 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.836 [XNIO-1 task-1] rU9KJCMYS5-sOogcMgROmg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.843 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.843 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.844 [XNIO-1 task-2] Omrqb4NLRmaxl0YrVpTa3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zULEYbJaSj6nsxAed-mDVw +00:00:47.850 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.850 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.850 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.850 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.850 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.851 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.851 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.863 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.869 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.870 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.873 [XNIO-1 task-2] 0nuEx5rmQ8yFUouUiu40FQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6q9sBXzIQqK3wHO4cPbc1w +00:00:47.877 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:73395de2 +00:00:47.917 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.918 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.918 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.918 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.918 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.919 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.919 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.919 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.931 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.932 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.933 [XNIO-1 task-2] 86lR9zmvSbK3OYt1ojF-5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7mjCB_wnRHOoPeyNKsLjBg +00:00:47.939 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.939 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.939 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.940 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.940 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.940 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.940 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.942 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.949 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.949 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.951 [XNIO-1 task-2] TRZ-AB_4SYC2a3e1IrpqVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-02e8RnDTySir9TD5UNEgg +00:00:47.956 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:726040ef-f853-4176-8be8-aec8ebde0f4b +00:00:47.960 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.961 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:47.962 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:47.962 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30374135-52ca-4dc4-bb25-b11216c14b61", "30374135-52ca-4dc4-bb25-b11216c14b61", client_id) +00:00:47.962 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:47.962 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:47.963 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:47.963 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:47.964 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:47.972 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:47.972 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:47.981 [XNIO-1 task-2] zj3CFlDMQhiQS0JkTkWZjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dr4R0pe3SFiQLz-0-bj_lQ +00:00:47.981 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.982 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.982 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.982 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", client_id) +00:00:47.982 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:47.982 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:47.983 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:47.983 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:47.983 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:47.984 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:77fe72e6 +00:00:47.990 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:47.990 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:47.994 [XNIO-1 task-1] znM3nleVQfK9h7yd1YY0hw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0kogDazaSHud5fg-Hnbjiw +00:00:47.999 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.999 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.999 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:47.999 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG com.networknt.schema.TypeValidator debug - validate( "803c8de7-45ff-4287-8813-59c13e75e353", "803c8de7-45ff-4287-8813-59c13e75e353", client_id) +00:00:48.000 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.000 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.000 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.000 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.000 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.008 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.008 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.010 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.010 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.011 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.011 [XNIO-1 task-1] 74OLseBLQIWEt9LK3ytixg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZXGxGUH6Rq2JPotNv91Mkg +00:00:48.011 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.011 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.012 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.012 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.012 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.023 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.024 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.025 [XNIO-1 task-2] exOCEOCzSVifKBp1uEtPtg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6LWia5CrTZOAPUr-UPTLxQ +00:00:48.029 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.030 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.030 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.030 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.030 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.030 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.031 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.031 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.031 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.044 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.045 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.045 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.046 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0KE2WRhz3EQETiNVbZimHYDQpwiSPM1h5stDqaigZU0", "0KE2WRhz3EQETiNVbZimHYDQpwiSPM1h5stDqaigZU0", code_challenge) +00:00:48.046 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:48.046 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.046 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.046 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.047 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.047 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.057 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.057 [XNIO-1 task-2] AAg8wStEQOaGOYRg1hkc9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.063 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.063 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.086 [XNIO-1 task-1] TeYLqh5fT7yQAG2POW9X9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=E3nodQnCQ6OR-LxCuqqePw +00:00:48.088 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.088 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.088 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.089 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ac87a237 +00:00:48.089 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG com.networknt.schema.TypeValidator debug - validate( "30374135-52ca-4dc4-bb25-b11216c14b61", "30374135-52ca-4dc4-bb25-b11216c14b61", client_id) +00:00:48.089 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.089 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.089 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.089 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.089 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.098 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.098 [XNIO-1 task-2] LGqiU0klRaGO9TKTl_IqaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.103 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.103 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.104 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.104 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG com.networknt.schema.TypeValidator debug - validate( "30374135-52ca-4dc4-bb25-b11216c14b61", "30374135-52ca-4dc4-bb25-b11216c14b61", client_id) +00:00:48.104 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.104 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.104 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.104 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.105 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.113 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.113 [XNIO-1 task-2] Uo8_Rd7OTxSwF8vwJ7cjEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.120 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.120 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.120 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.120 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cc6f64ca-ac5a-43cc-97b2-a469c87bd798", "cc6f64ca-ac5a-43cc-97b2-a469c87bd798", client_id) +00:00:48.121 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.121 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.128 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.128 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.131 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.138 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.138 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.138 [XNIO-1 task-2] liC-21NdQOylHxnldl46aQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.138 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.139 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.139 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67afd27b-3ebd-434c-b2c0-45ea60b2228a", "67afd27b-3ebd-434c-b2c0-45ea60b2228a", client_id) +00:00:48.139 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.139 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.139 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.142 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.142 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.144 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.144 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:306cb890 +00:00:48.152 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.152 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.157 [XNIO-1 task-1] 3wPnt9liSd6VzQ49fWwQaQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nWf6kjH6QSmk6FyBQEuHUQ +00:00:48.158 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.158 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.159 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.159 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.161 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.161 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.162 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.163 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.165 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.166 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.166 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.166 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ggH91wKwkf7lX3cibPWertU2KLYgMgIZcOo514ov7J0", "ggH91wKwkf7lX3cibPWertU2KLYgMgIZcOo514ov7J0", code_challenge) +00:00:48.166 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:48.170 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.170 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.170 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.170 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.171 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.174 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.175 [XNIO-1 task-1] rmGnCwEeQZeM4rgcISjPcA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.188 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.188 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.194 [XNIO-1 task-2] GWKoN6VmRIOqGesTlvBMrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6hHK9izcRtCtFRXIrUUD3w +00:00:48.214 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.214 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.219 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.219 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", "1f9a261d-f249-43ba-9f5b-9e0d0dba113f", client_id) +00:00:48.219 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.220 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.220 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.220 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.220 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.232 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.232 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.232 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.232 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "67afd27b-3ebd-434c-b2c0-45ea60b2228a", "67afd27b-3ebd-434c-b2c0-45ea60b2228a", client_id) +00:00:48.233 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.233 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.233 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.233 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.233 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.235 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.235 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.237 [XNIO-1 task-2] Eb0UXnr4SCK7TNe2eK-Vyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BvBjw3nDTdCjgr_hE2b2tA +00:00:48.241 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c4ba01da +00:00:48.248 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.248 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.252 [XNIO-1 task-1] Z1geHy7eQDSw8afVGwH6Dg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=s-UTsYZYRISQiJZGwroE5w +00:00:48.252 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fa173181-fa36-42c8-adc9-fa3545b52330 +00:00:48.266 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.266 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.267 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.267 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.267 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.267 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.268 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.272 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.282 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.282 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.284 [XNIO-1 task-1] 5jrecRlPTjWlDt4mJ20CbA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DLOIjtV5S5utXvOiE-J6HQ +00:00:48.288 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.288 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.289 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.289 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.289 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.289 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.289 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.290 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.296 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.296 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.301 [XNIO-1 task-1] QasxDJbKSvGPYpF4u2iy-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0gKUCvNgTuSO33xNqVEkXA +00:00:48.327 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6915201e-d061-45ae-9f97-ea77e16b7569 +00:00:48.340 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.340 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.340 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.341 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.341 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.341 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.341 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.342 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.342 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:77fe72e6 +00:00:48.349 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.349 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.349 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.350 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG com.networknt.schema.TypeValidator debug - validate( "EURU2RgEggeBHNiB0FusFKfnM-4yOEUIGzaEI2wu1DA", "EURU2RgEggeBHNiB0FusFKfnM-4yOEUIGzaEI2wu1DA", code_challenge) +00:00:48.350 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:48.350 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.350 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.350 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.351 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.351 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.351 [XNIO-1 task-1] nqu7oGF1Q0avCkx-jJ94GQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.351 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.360 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.360 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.362 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.362 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.362 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.363 [XNIO-1 task-2] Ov2JGXTWQPSqLcIS0svqfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XFrhtpecRYisa-8f03pQoQ +00:00:48.364 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.364 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.365 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.365 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.365 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.373 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.374 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.375 [XNIO-1 task-1] 4DaDhjgbS6KZqxmClv6kHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kek_iBjCQRCcJG_yt7PclA +00:00:48.415 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.415 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.416 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.416 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.416 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.416 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "352d0ed7-e740-4f67-b285-2cf89febf4a5", "352d0ed7-e740-4f67-b285-2cf89febf4a5", client_id) +00:00:48.416 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.416 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.416 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.417 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.417 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.417 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.417 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.417 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.417 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.417 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.418 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.418 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.431 [XNIO-1 task-2] cixsyEUcTAKdwm6ctlbEEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.431 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.431 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.432 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.434 [XNIO-1 task-1] zvsjZE_OS7y8HziljENCgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=a2vM72JyTGidlKBWq9bJpQ +00:00:48.444 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.444 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.445 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.445 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.445 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.446 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.446 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.446 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.456 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.456 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.461 [XNIO-1 task-1] otolFOMXT2659ePCM-fpCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1d72synXRwaDRzBHTxbi3Q +00:00:48.494 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.494 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.494 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.494 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "352d0ed7-e740-4f67-b285-2cf89febf4a5", "352d0ed7-e740-4f67-b285-2cf89febf4a5", client_id) +00:00:48.494 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.494 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.495 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.495 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.495 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.507 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.508 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.530 [XNIO-1 task-1] k9UeOrHuTb25ZzzZSUJT-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=czM_5LS3QDapg59T3lwgzg +00:00:48.543 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.543 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.543 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.545 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG com.networknt.schema.TypeValidator debug - validate( "b262ec34-a090-4c2c-a1a4-750f264ea0e9", "b262ec34-a090-4c2c-a1a4-750f264ea0e9", client_id) +00:00:48.545 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.545 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.546 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.546 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.546 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.547 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:306cb890 +00:00:48.553 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.553 [XNIO-1 task-1] NdwciZTYR3ONuCHwY9YjfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.558 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.558 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.560 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.560 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67afd27b-3ebd-434c-b2c0-45ea60b2228a", "67afd27b-3ebd-434c-b2c0-45ea60b2228a", client_id) +00:00:48.560 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.560 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.560 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.560 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.561 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.567 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.567 [XNIO-1 task-1] 9GHCvuh3T9molcC3MTA3iQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.615 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.615 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.615 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.615 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.616 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.616 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.616 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "67afd27b-3ebd-434c-b2c0-45ea60b2228a", "67afd27b-3ebd-434c-b2c0-45ea60b2228a", client_id) +00:00:48.616 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.616 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.616 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.616 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.617 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.617 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.617 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.617 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.617 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.617 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.617 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.624 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.625 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.625 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.626 [XNIO-1 task-1] 442h80RaRAulDE5DwIGMiw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.627 [XNIO-1 task-2] tI9qD-a0TQ-CqQCfs2epmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XEyXep10Th23WalYN3bQTw +00:00:48.627 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c4ba01da +00:00:48.631 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.634 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.635 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.636 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG com.networknt.schema.TypeValidator debug - validate( "9lFwejahXUeDCyXHqb7s-UBvFGf0k6ZoeD8Ath0bpc8", "9lFwejahXUeDCyXHqb7s-UBvFGf0k6ZoeD8Ath0bpc8", code_challenge) +00:00:48.636 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:48.636 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.636 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.637 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.637 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.637 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.637 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.637 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.637 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.638 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.638 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.638 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.638 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.638 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.663 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.665 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.665 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.665 [XNIO-1 task-1] X5gcTBySTq-WX0Nv9aJ3tA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.667 [XNIO-1 task-2] 0qU7Y9v3SBCzjTocKNSnQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p-x95iKrQyi4gamT_ipjoA +00:00:48.671 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.672 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.672 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.672 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG com.networknt.schema.TypeValidator debug - validate( "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", client_id) +00:00:48.673 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.673 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.673 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.673 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.676 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.676 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.677 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.677 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG com.networknt.schema.TypeValidator debug - validate( "b262ec34-a090-4c2c-a1a4-750f264ea0e9", "b262ec34-a090-4c2c-a1a4-750f264ea0e9", client_id) +00:00:48.677 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.677 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.677 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.678 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.678 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.678 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.679 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1ad677a8 +00:00:48.683 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.688 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.688 [XNIO-1 task-2] AlMCd1xPQf6Ow6c57wTmFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.692 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.692 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.694 [XNIO-1 task-1] U8V_2i1oQI295p8ck4JKHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SpBGy2vhT82BAT5fLlkZBA +00:00:48.697 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.697 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.697 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.698 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG com.networknt.schema.TypeValidator debug - validate( "b36abf86-7c4c-409b-a18c-29e2b5b20787", "b36abf86-7c4c-409b-a18c-29e2b5b20787", client_id) +00:00:48.698 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.698 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.698 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.698 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.699 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.705 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.705 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.709 [XNIO-1 task-2] sz4VyB_7TyuBoBpbv08iNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p_od5MTcR9mxSkI5K9wQKA +00:00:48.710 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c4ba01da +00:00:48.727 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.727 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.727 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.727 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.728 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.728 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.728 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.728 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.737 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c4ba01da +00:00:48.740 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.740 [XNIO-1 task-2] XPibIqEJR4CNkT0FBKCQgg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.748 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.749 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.749 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.750 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG com.networknt.schema.TypeValidator debug - validate( "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", client_id) +00:00:48.750 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.750 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.750 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.750 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.750 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.767 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.767 [XNIO-1 task-2] 4R5TvvI9QC--49gb3OkyFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.784 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.784 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.784 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.785 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG com.networknt.schema.TypeValidator debug - validate( "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", client_id) +00:00:48.785 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.785 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.785 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.785 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.785 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.787 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e04a5d9b-7ccc-43ba-831e-275fd29855f9 +00:00:48.796 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:48.796 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:48.797 [XNIO-1 task-2] MyI6-80lRLeIr03b1q6pLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sTTSgrn7RKGJPSgg7vYVUQ +00:00:48.824 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.824 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.825 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.825 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG com.networknt.schema.TypeValidator debug - validate( "352d0ed7-e740-4f67-b285-2cf89febf4a5", "352d0ed7-e740-4f67-b285-2cf89febf4a5", client_id) +00:00:48.826 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.827 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.827 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.827 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.827 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.845 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.845 [XNIO-1 task-2] 7wSy4qbwSImx4cGKngsHCw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.857 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.858 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.858 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.858 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG com.networknt.schema.TypeValidator debug - validate( "352d0ed7-e740-4f67-b285-2cf89febf4a5", "352d0ed7-e740-4f67-b285-2cf89febf4a5", client_id) +00:00:48.859 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.860 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.860 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.861 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.861 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.867 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.867 [XNIO-1 task-2] UPtD063eTz2d3wahdiMnEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.878 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.879 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.879 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.879 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7a9ba98-0893-493d-ae64-c11cc032d167", "d7a9ba98-0893-493d-ae64-c11cc032d167", client_id) +00:00:48.879 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.880 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.880 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.880 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.880 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.893 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.893 [XNIO-1 task-2] jxUi4UeIQuigDnZXvPEfCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.925 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.925 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.925 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.926 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Brh4ayjj2nj7lVPVBh4bJ1fw4ipW9N_GHnt69iIhS3U", "Brh4ayjj2nj7lVPVBh4bJ1fw4ipW9N_GHnt69iIhS3U", code_challenge) +00:00:48.926 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:48.926 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.926 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.927 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.927 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.927 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.934 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.934 [XNIO-1 task-2] svAxBIOtSZSKiHSzNIIfBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.944 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.944 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.944 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.944 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "zvoT-eqqS6GPZdrEPud2c5BKIKEHMhS5WQfoja6Tv1s", "zvoT-eqqS6GPZdrEPud2c5BKIKEHMhS5WQfoja6Tv1s", code_challenge) +00:00:48.945 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:48.946 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.946 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.946 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.946 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.946 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.955 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.955 [XNIO-1 task-2] skPTlDHuT_ytmbyWTtVLMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.962 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.963 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.963 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.963 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG com.networknt.schema.TypeValidator debug - validate( "UEoXE7Ht3mRl8hV8nl49br5xEzs5QqBcPSO746AUIeI", "UEoXE7Ht3mRl8hV8nl49br5xEzs5QqBcPSO746AUIeI", code_challenge) +00:00:48.963 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:48.963 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.964 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.964 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.964 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.965 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:48.971 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.972 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.971 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.972 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.973 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:48.973 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:48.973 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:48.973 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:48.974 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:48.974 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:48.975 [XNIO-1 task-2] ZQ1TbpDLS3euSOxpSHbXiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RoCBHygXSkyyfwbiFAtvMQ +00:00:48.981 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:48.981 [XNIO-1 task-1] hWJIsBfFTWeN_ndWe3iMaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:48.991 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.992 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:48.992 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:48.992 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "34e9bfda-de70-4d7f-8f1b-58fd0d8292d6", "34e9bfda-de70-4d7f-8f1b-58fd0d8292d6", client_id) +00:00:48.992 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:48.993 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:48.993 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:48.993 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:48.994 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.002 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.002 [XNIO-1 task-1] KYVejWGoTFqnbI_YDAXeLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.026 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.026 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.027 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.027 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mGzjqGXQhDKH5DZcmIPdX92aw6f_kBoowNaQYVQ5m14", "mGzjqGXQhDKH5DZcmIPdX92aw6f_kBoowNaQYVQ5m14", code_challenge) +00:00:49.027 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.027 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.028 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.028 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.028 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.028 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.035 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.035 [XNIO-1 task-1] KZUbgpnrRU67nEJ2QJhVsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.053 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.053 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.053 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.053 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG com.networknt.schema.TypeValidator debug - validate( "34e9bfda-de70-4d7f-8f1b-58fd0d8292d6", "34e9bfda-de70-4d7f-8f1b-58fd0d8292d6", client_id) +00:00:49.054 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.054 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.054 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.054 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.055 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.064 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.064 [XNIO-1 task-1] jZ8tZONUSmauDJ3NLB0Rdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.075 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.075 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.075 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.075 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04b6b673-cdc6-4ddd-8a84-8990943448ef", "04b6b673-cdc6-4ddd-8a84-8990943448ef", client_id) +00:00:49.075 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.076 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.076 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.076 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.076 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.085 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.085 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.112 [XNIO-1 task-1] TCfSvUIiSwqoh4E3sZkRnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MuZ61E80RvKwAIxapVTCMg +00:00:49.113 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.114 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.114 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "31x-hr1MLAIDY2Bxv5-vN_3nWjbzfen2jXy6M6jLanw", "31x-hr1MLAIDY2Bxv5-vN_3nWjbzfen2jXy6M6jLanw", code_challenge) +00:00:49.114 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.114 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.115 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.115 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.115 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.115 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.119 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.119 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.119 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.119 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.120 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.120 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.120 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.120 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.125 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.126 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.127 [XNIO-1 task-2] Icp3MuoFQ3S7qH1Nm5zFJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Wtw8LJyWRZybWCw7MU_vNA +00:00:49.129 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.129 [XNIO-1 task-1] mwRC6JYKR2Oce_uTBdbsQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.132 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.133 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.133 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.134 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ZjSI4hNacrzGYeTX3WeYy_DhvNuCg8_sLI197l_pndA", "ZjSI4hNacrzGYeTX3WeYy_DhvNuCg8_sLI197l_pndA", code_challenge) +00:00:49.134 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.134 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.134 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.134 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.134 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.139 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.139 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.139 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.140 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.140 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.140 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.141 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.141 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.141 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.146 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1348ca4e-4858-4295-b69b-cd5d8f5f5c0b +00:00:49.148 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1348ca4e-4858-4295-b69b-cd5d8f5f5c0b +00:00:49.156 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.156 [XNIO-1 task-2] 0DoXvM6PRiKk7ESbTPKTag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.156 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.156 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.158 [XNIO-1 task-1] NKbvC7oMSvKJorw9GpDr3Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Egw53OYtTDiiAKF_I5em8A +00:00:49.163 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.163 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.165 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.165 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.165 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.166 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.166 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.166 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.168 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1967bcb7-0085-422b-ae5a-c23304b1c753 +00:00:49.170 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.171 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1967bcb7-0085-422b-ae5a-c23304b1c753 +00:00:49.171 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.171 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.172 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG com.networknt.schema.TypeValidator debug - validate( "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", "56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0", client_id) +00:00:49.172 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.172 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.173 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.174 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.175 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.181 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.181 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.185 [XNIO-1 task-2] Tmo_BMECQDK8V5h_vS62kw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KusnWhfkTQ2de3U1IG5a4Q +00:00:49.188 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.188 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.191 [XNIO-1 task-1] LKbua2eXQHiAZhwGSEzpPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=molVTs-hQdOCbgf0t6rPQw +00:00:49.191 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.191 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.192 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG com.networknt.schema.TypeValidator debug - validate( "c663fcf0-dbbf-4b31-88b5-640ff4c79cfb", "c663fcf0-dbbf-4b31-88b5-640ff4c79cfb", client_id) +00:00:49.193 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.194 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.195 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.195 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.195 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.206 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.207 [XNIO-1 task-2] D_7ZRStnR5Cpwdh7YpccXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.226 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.226 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.226 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.227 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG com.networknt.schema.TypeValidator debug - validate( "NbCzPGSyMRgOV_O59A5ZF2lAuO2dCFztfcPWVu45bBI", "NbCzPGSyMRgOV_O59A5ZF2lAuO2dCFztfcPWVu45bBI", code_challenge) +00:00:49.227 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.227 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.227 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.227 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.228 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.231 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.238 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.238 [XNIO-1 task-2] qqWBOPO4RfWtFlhtFvV9oA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.252 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.252 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.252 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.253 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "tsLeO9HMXaDugdoLwt1HcD5lcsvQPdE8_nyfCzRBE0I", "tsLeO9HMXaDugdoLwt1HcD5lcsvQPdE8_nyfCzRBE0I", code_challenge) +00:00:49.253 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.253 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.253 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.254 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.254 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.254 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.262 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.262 [XNIO-1 task-2] gahJ3KDoRNOMBQ2CLX9PPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.276 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.276 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.276 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.276 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "dZ9kHplOFvdvm6CsyWTClYkDXhdZdMa-LNqezZkvZTo", "dZ9kHplOFvdvm6CsyWTClYkDXhdZdMa-LNqezZkvZTo", code_challenge) +00:00:49.277 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.277 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.277 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.277 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.277 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.277 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.291 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.291 [XNIO-1 task-2] N3pTgtFvSfyblcVVLzrjcg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.292 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.292 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.292 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.293 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.293 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.293 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.293 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.293 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.294 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.301 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.302 [XNIO-1 task-1] kY6W8lH4QjqytQ0RasKWQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.312 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.313 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.313 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.313 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c663fcf0-dbbf-4b31-88b5-640ff4c79cfb", "c663fcf0-dbbf-4b31-88b5-640ff4c79cfb", client_id) +00:00:49.314 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.314 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.315 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.315 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.315 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.322 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.322 [XNIO-1 task-1] GPdabJxxQ3enL0dYgMM38Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.328 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.328 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.329 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.329 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG com.networknt.schema.TypeValidator debug - validate( "c663fcf0-dbbf-4b31-88b5-640ff4c79cfb", "c663fcf0-dbbf-4b31-88b5-640ff4c79cfb", client_id) +00:00:49.329 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.329 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.329 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.330 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.330 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.333 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.333 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.334 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.334 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1ff1d9-68a8-4332-bda3-732886544b20", "7e1ff1d9-68a8-4332-bda3-732886544b20", client_id) +00:00:49.334 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.334 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.334 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.334 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.335 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.336 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.336 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.338 [XNIO-1 task-1] 4hQz-u6ITOacPLkG0oHp-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WpnozFHVTYe3WNtPN_iV3A +00:00:49.342 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.342 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.342 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.342 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.342 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.342 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.343 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.343 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.343 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.344 [XNIO-1 task-2] 90K77RWmReGDMI2uHIbptA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Zxnz_4mMQy6Wra67BwoozA +00:00:49.345 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.350 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.350 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.350 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.351 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1ff1d9-68a8-4332-bda3-732886544b20", "7e1ff1d9-68a8-4332-bda3-732886544b20", client_id) +00:00:49.351 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.351 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.351 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.351 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.352 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.354 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.355 [XNIO-1 task-1] 6JoMxBkiQv-X5zwYyzpylA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.358 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.358 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.358 [XNIO-1 task-2] yXevenVqQ9yN6BNHECfnPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.370 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.370 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.370 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.370 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "q-xUwhkfCPRRvKXRhKYEPfSwImbB33CSFmHNZZf_Ubs", "q-xUwhkfCPRRvKXRhKYEPfSwImbB33CSFmHNZZf_Ubs", code_challenge) +00:00:49.371 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.371 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.371 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.371 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.371 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.371 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.382 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:77fe72e6 +00:00:49.387 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.387 [XNIO-1 task-2] mWXbRCToSRivYEod8hYXJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.397 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.398 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.398 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.398 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "ArwsiWoyiNNvQSAY6QItmuVN4IrluqSBalls4LMhacI", "ArwsiWoyiNNvQSAY6QItmuVN4IrluqSBalls4LMhacI", code_challenge) +00:00:49.399 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.399 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.399 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.399 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.399 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.399 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.406 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.406 [XNIO-1 task-2] oKVoilBRTM-grnycL6Y1Xw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.419 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.419 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.423 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.423 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG com.networknt.schema.TypeValidator debug - validate( "ZhevzF_t3wa_lw5Vy9_TaNNC05OYBuQCai-gOdCZWFo", "ZhevzF_t3wa_lw5Vy9_TaNNC05OYBuQCai-gOdCZWFo", code_challenge) +00:00:49.424 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.424 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.424 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.424 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.424 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.425 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.432 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.432 [XNIO-1 task-2] g503NW8qR5GdTVPevfQOEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.460 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.461 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.461 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.461 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG com.networknt.schema.TypeValidator debug - validate( "04b6b673-cdc6-4ddd-8a84-8990943448ef", "04b6b673-cdc6-4ddd-8a84-8990943448ef", client_id) +00:00:49.461 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.461 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.462 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.462 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.462 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.469 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.469 [XNIO-1 task-2] Mf4XBnsxRlWiApTn70xEzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.493 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.493 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.493 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.494 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG com.networknt.schema.TypeValidator debug - validate( "y_I7Ux-bMhlgdoK1D7R7tJEffAkBcOronBlwlenNvBo", "y_I7Ux-bMhlgdoK1D7R7tJEffAkBcOronBlwlenNvBo", code_challenge) +00:00:49.494 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.494 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +00:00:49.494 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +00:00:49.494 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.494 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.495 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.502 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.502 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.502 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.502 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.502 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.503 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.503 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.503 [XNIO-1 task-2] LwRIacCySDqFqhe8kHQ_cA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8F051igsTTmAJDl_9DT9GQ +00:00:49.503 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +00:00:49.503 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +00:00:49.503 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +00:00:49.510 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@4e79958 for /oauth2/code +00:00:49.510 [XNIO-1 task-1] tW3CUEgqRjOwky2ou2tr3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +00:00:49.533 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b643de23 +00:00:49.539 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b643de23 +00:00:49.541 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.541 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.541 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.541 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG com.networknt.schema.TypeValidator debug - validate( "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", "29d06d6a-80a4-44e3-b706-0cf458b2ecb8", client_id) +00:00:49.541 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.542 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.542 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.542 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.542 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.549 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +00:00:49.550 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +00:00:49.552 [XNIO-1 task-1] giWjYDnvRvmrTQgJL8-Bjg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ndu4q4CbS8icmSp5M1jFRA +00:00:49.556 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.556 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.557 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +00:00:49.557 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0e26b1bc +00:00:49.557 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +00:00:49.557 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +00:00:49.557 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +00:00:49.558 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@764737ee for /oauth2/code +00:00:49.558 [XNIO-1 task-1] FbqzTSYcTGizZUmFf-RZJA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +00:00:49.565 [XNIO-1 task-2] wOSu0PfaSQSzLAf6UFLMkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.565 [XNIO-1 task-2] wOSu0PfaSQSzLAf6UFLMkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +00:00:49.565 [XNIO-1 task-2] wOSu0PfaSQSzLAf6UFLMkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +00:00:49.566 [XNIO-1 task-2] wOSu0PfaSQSzLAf6UFLMkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "qE8q44GvW2AuSmwkdwP6aENHlteOVVxIZl-xmZe3cTo", "qE8q44GvW2AuSmwkdwP6aENHlteOVVxIZl-xmZe3cTo", code_challenge) +00:00:49.566 [XNIO-1 task-2] wOSu0PfaSQSzLAf6UFLMkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +00:00:49.566 [XNIO-1 task-2] wOSu0PfaSQSzLAf6UFLMkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) diff --git a/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-key-1.log b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..e0835a2 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-key-1.log @@ -0,0 +1,294 @@ +00:00:45.139 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf2abecb-aaa9-4d72-999f-1088b6d22fac +00:00:45.141 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:82555a99 +00:00:45.163 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:161ba0a5 +00:00:45.237 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:82555a99 +00:00:45.507 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c81d6941-2a69-48c6-b5fa-9430642dceac +00:00:45.541 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c81d6941-2a69-48c6-b5fa-9430642dceac +00:00:45.585 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:41eb5ea3-080b-4df9-854e-3cf01244124b +00:00:45.602 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c81d6941-2a69-48c6-b5fa-9430642dceac +00:00:45.726 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:82555a99 +00:00:45.980 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6a2a42f9-0d69-468c-bb0c-306fb7ea52e0 +00:00:46.231 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f0c0fb59-cbcd-4dba-8b6b-12550dba26ab +00:00:46.232 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f0c0fb59-cbcd-4dba-8b6b-12550dba26ab +00:00:46.281 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:161ba0a5 +00:00:46.291 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3a7785f4 +00:00:46.336 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3a7785f4 +00:00:46.378 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3a7785f4 +00:00:46.397 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3a7785f4 +00:00:46.775 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1c7350f2-56e6-436f-ae63-d2c6fe8e0165 +00:00:46.840 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1c7350f2-56e6-436f-ae63-d2c6fe8e0165 +00:00:46.858 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:951c4414-4ba0-4433-a08a-64934b43edd8 +00:00:46.886 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:67afd27b-3ebd-434c-b2c0-45ea60b2228a +00:00:46.890 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:67afd27b-3ebd-434c-b2c0-45ea60b2228a +00:00:47.053 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0917e2a0-1bee-49bf-a5b6-c210f1c17658 +00:00:47.077 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0917e2a0-1bee-49bf-a5b6-c210f1c17658 +00:00:47.170 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7150a20c +00:00:47.183 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7881aeed +00:00:47.186 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7881aeed +00:00:47.257 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7150a20c +00:00:47.291 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f4b02c25 +00:00:47.407 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ced14368 +00:00:47.410 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ced14368 +00:00:47.442 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7150a20c +00:00:47.464 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7150a20c +00:00:47.514 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8a00dcad-48ac-4d43-a242-7df23e01957f +00:00:47.515 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eaadfbd7 +00:00:47.515 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8a00dcad-48ac-4d43-a242-7df23e01957f +00:00:47.576 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +Jun 29, 2024 12:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:47.593 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cff59a29-c904-4dd2-829e-6f801e780526 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +00:00:47.595 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cff59a29-c904-4dd2-829e-6f801e780526 + +00:00:47.595 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cff59a29-c904-4dd2-829e-6f801e780526 +00:00:47.673 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ced14368 +00:00:47.746 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4e681ac8 +00:00:47.762 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:eaadfbd7 +00:00:47.842 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cc6f64ca-ac5a-43cc-97b2-a469c87bd798 +00:00:47.897 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4e681ac8 +Jun 29, 2024 12:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:48.038 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c131ee59-5ccb-4e9a-a8a7-be2cfe002e15 +00:00:48.040 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c131ee59-5ccb-4e9a-a8a7-be2cfe002e15 +00:00:48.120 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7f18890a +00:00:48.123 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0 +00:00:48.124 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56f0f3a6-69cb-4f50-9b5a-a06e2e786dc0 +00:00:48.202 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:053ac611-7e0b-4119-8ec8-693366fcb7ef +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:48.244 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + ... 14 more + + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:48.395 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c131ee59-5ccb-4e9a-a8a7-be2cfe002e15 +00:00:48.424 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:48.501 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7881aeed +00:00:48.597 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f84c5a0c-3dc7-4ae4-8710-8bb05f417820 +00:00:48.617 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:21f5eb34-6c70-4921-af18-37a600be7a03 +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +00:00:48.826 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dafd6ae1-bd67-4d62-b95a-27682e42bc9b +00:00:48.826 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:053ac611-7e0b-4119-8ec8-693366fcb7ef +00:00:48.827 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:dafd6ae1-bd67-4d62-b95a-27682e42bc9b +00:00:48.827 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dafd6ae1-bd67-4d62-b95a-27682e42bc9b +00:00:48.832 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:48.848 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5dbe300d +00:00:48.855 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:dafd6ae1-bd67-4d62-b95a-27682e42bc9b +00:00:48.861 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:765c6790 +00:00:48.863 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:765c6790 +00:00:48.870 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5dbe300d + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) diff --git a/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..08b8efa --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,3704 @@ +00:00:43.022 [XNIO-1 task-1] jSuCd2aEQD-XnPjnqnJhHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.022 [XNIO-1 task-1] jSuCd2aEQD-XnPjnqnJhHg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.093 [XNIO-1 task-1] 6QNIxjjfRo6LEYWas8crqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.093 [XNIO-1 task-1] 6QNIxjjfRo6LEYWas8crqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.094 [XNIO-1 task-1] 6QNIxjjfRo6LEYWas8crqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.094 [XNIO-1 task-1] 6QNIxjjfRo6LEYWas8crqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.125 [XNIO-1 task-1] vdHICM7YTDSHZZUTH3XRpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.126 [XNIO-1 task-1] vdHICM7YTDSHZZUTH3XRpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.126 [XNIO-1 task-1] vdHICM7YTDSHZZUTH3XRpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.127 [XNIO-1 task-1] vdHICM7YTDSHZZUTH3XRpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.128 [XNIO-1 task-1] vdHICM7YTDSHZZUTH3XRpA DEBUG com.networknt.schema.TypeValidator debug - validate( "62cb394a-a44f-4f58-ae5b-45c21c98d79c", "62cb394a-a44f-4f58-ae5b-45c21c98d79c", refreshToken) +00:00:43.136 [XNIO-1 task-1] njNxbg2VRW2XT7DyUwojNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.137 [XNIO-1 task-1] njNxbg2VRW2XT7DyUwojNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.137 [XNIO-1 task-1] njNxbg2VRW2XT7DyUwojNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.138 [XNIO-1 task-1] njNxbg2VRW2XT7DyUwojNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.138 [XNIO-1 task-1] njNxbg2VRW2XT7DyUwojNg DEBUG com.networknt.schema.TypeValidator debug - validate( "62cb394a-a44f-4f58-ae5b-45c21c98d79c", "62cb394a-a44f-4f58-ae5b-45c21c98d79c", refreshToken) +00:00:43.143 [XNIO-1 task-1] eNfyQFa-TZCqmytZIEgc3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.144 [XNIO-1 task-1] eNfyQFa-TZCqmytZIEgc3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.146 [XNIO-1 task-1] eNfyQFa-TZCqmytZIEgc3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.146 [XNIO-1 task-1] eNfyQFa-TZCqmytZIEgc3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.147 [XNIO-1 task-1] eNfyQFa-TZCqmytZIEgc3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "62cb394a-a44f-4f58-ae5b-45c21c98d79c", "62cb394a-a44f-4f58-ae5b-45c21c98d79c", refreshToken) +00:00:43.157 [XNIO-1 task-1] TiYKwzmpR4O3C00kn-MueQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.157 [XNIO-1 task-1] TiYKwzmpR4O3C00kn-MueQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.157 [XNIO-1 task-1] TiYKwzmpR4O3C00kn-MueQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.158 [XNIO-1 task-1] TiYKwzmpR4O3C00kn-MueQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/62cb394a-a44f-4f58-ae5b-45c21c98d79c, base path is set to: null +00:00:43.158 [XNIO-1 task-1] TiYKwzmpR4O3C00kn-MueQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62cb394a-a44f-4f58-ae5b-45c21c98d79c", "62cb394a-a44f-4f58-ae5b-45c21c98d79c", refreshToken) +00:00:43.162 [XNIO-1 task-1] L4uucBKqTWW3e8pHdwSrzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.162 [XNIO-1 task-1] L4uucBKqTWW3e8pHdwSrzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.162 [XNIO-1 task-1] L4uucBKqTWW3e8pHdwSrzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.163 [XNIO-1 task-1] L4uucBKqTWW3e8pHdwSrzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.164 [XNIO-1 task-1] L4uucBKqTWW3e8pHdwSrzg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.203 [XNIO-1 task-1] GxSswVmnRg-sjs1G7W96Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.204 [XNIO-1 task-1] GxSswVmnRg-sjs1G7W96Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.204 [XNIO-1 task-1] GxSswVmnRg-sjs1G7W96Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.205 [XNIO-1 task-1] GxSswVmnRg-sjs1G7W96Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.206 [XNIO-1 task-1] GxSswVmnRg-sjs1G7W96Vw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.231 [XNIO-1 task-1] S9zN7BbcSj-hS9bjjnNDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.231 [XNIO-1 task-1] S9zN7BbcSj-hS9bjjnNDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.231 [XNIO-1 task-1] S9zN7BbcSj-hS9bjjnNDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.232 [XNIO-1 task-1] S9zN7BbcSj-hS9bjjnNDwA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.244 [XNIO-1 task-1] M6sgS7vPSPmrS2v5c9nSZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff, base path is set to: null +00:00:43.244 [XNIO-1 task-1] M6sgS7vPSPmrS2v5c9nSZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.244 [XNIO-1 task-1] M6sgS7vPSPmrS2v5c9nSZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.244 [XNIO-1 task-1] M6sgS7vPSPmrS2v5c9nSZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff, base path is set to: null +00:00:43.245 [XNIO-1 task-1] M6sgS7vPSPmrS2v5c9nSZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff", "8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff", refreshToken) +00:00:43.251 [XNIO-1 task-1] M6sgS7vPSPmrS2v5c9nSZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff is not found.","severity":"ERROR"} +00:00:43.256 [XNIO-1 task-1] SRtdhk9hR_WI8l-i5d4SCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.256 [XNIO-1 task-1] SRtdhk9hR_WI8l-i5d4SCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.257 [XNIO-1 task-1] SRtdhk9hR_WI8l-i5d4SCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.264 [XNIO-1 task-1] SRtdhk9hR_WI8l-i5d4SCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.288 [XNIO-1 task-1] pAf9fln5Rp6XL_z-fxdtTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.289 [XNIO-1 task-1] pAf9fln5Rp6XL_z-fxdtTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.289 [XNIO-1 task-1] pAf9fln5Rp6XL_z-fxdtTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.290 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:79c3d595-1379-4bc0-b0df-87acec43e5b0 +00:00:43.290 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:79c3d595-1379-4bc0-b0df-87acec43e5b0 +00:00:43.290 [XNIO-1 task-1] pAf9fln5Rp6XL_z-fxdtTg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.333 [XNIO-1 task-1] qxxV7K11Swa-ypcm6VqIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.333 [XNIO-1 task-1] qxxV7K11Swa-ypcm6VqIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.334 [XNIO-1 task-1] qxxV7K11Swa-ypcm6VqIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.334 [XNIO-1 task-1] qxxV7K11Swa-ypcm6VqIrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.335 [XNIO-1 task-1] qxxV7K11Swa-ypcm6VqIrg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.341 [XNIO-1 task-1] FbOADuogSK6es0tq-uEjIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5, base path is set to: null +00:00:43.341 [XNIO-1 task-1] FbOADuogSK6es0tq-uEjIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.341 [XNIO-1 task-1] FbOADuogSK6es0tq-uEjIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.342 [XNIO-1 task-1] FbOADuogSK6es0tq-uEjIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5, base path is set to: null +00:00:43.342 [XNIO-1 task-1] FbOADuogSK6es0tq-uEjIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5", "984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5", refreshToken) +00:00:43.343 [XNIO-1 task-1] FbOADuogSK6es0tq-uEjIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5 is not found.","severity":"ERROR"} +00:00:43.347 [XNIO-1 task-1] BMYWQUELTvq-56NXbZn9aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.347 [XNIO-1 task-1] BMYWQUELTvq-56NXbZn9aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.347 [XNIO-1 task-1] BMYWQUELTvq-56NXbZn9aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.347 [XNIO-1 task-1] BMYWQUELTvq-56NXbZn9aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.350 [XNIO-1 task-1] BMYWQUELTvq-56NXbZn9aA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.353 [XNIO-1 task-1] Vrk-UnpKQeqfH_UOEoosvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5, base path is set to: null +00:00:43.353 [XNIO-1 task-1] Vrk-UnpKQeqfH_UOEoosvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.354 [XNIO-1 task-1] Vrk-UnpKQeqfH_UOEoosvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.354 [XNIO-1 task-1] Vrk-UnpKQeqfH_UOEoosvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5, base path is set to: null +00:00:43.356 [XNIO-1 task-1] Vrk-UnpKQeqfH_UOEoosvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5", "984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5", refreshToken) +00:00:43.356 [XNIO-1 task-1] Vrk-UnpKQeqfH_UOEoosvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 984c0c4d-ec2d-4b5f-8645-6c145a9bd9e5 is not found.","severity":"ERROR"} +00:00:43.360 [XNIO-1 task-1] yvhd6vEcQ-er8eA2b2afzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.360 [XNIO-1 task-1] yvhd6vEcQ-er8eA2b2afzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.360 [XNIO-1 task-1] yvhd6vEcQ-er8eA2b2afzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.361 [XNIO-1 task-1] yvhd6vEcQ-er8eA2b2afzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.361 [XNIO-1 task-1] yvhd6vEcQ-er8eA2b2afzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.367 [XNIO-1 task-1] s2xvP_ceTBmpg3gUCMwt-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff, base path is set to: null +00:00:43.367 [XNIO-1 task-1] s2xvP_ceTBmpg3gUCMwt-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.367 [XNIO-1 task-1] s2xvP_ceTBmpg3gUCMwt-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.367 [XNIO-1 task-1] s2xvP_ceTBmpg3gUCMwt-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff, base path is set to: null +00:00:43.368 [XNIO-1 task-1] s2xvP_ceTBmpg3gUCMwt-A DEBUG com.networknt.schema.TypeValidator debug - validate( "8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff", "8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff", refreshToken) +00:00:43.368 [XNIO-1 task-1] s2xvP_ceTBmpg3gUCMwt-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff is not found.","severity":"ERROR"} +00:00:43.372 [XNIO-1 task-1] mO2HO3Y4TXGEknibWDJhbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.373 [XNIO-1 task-1] mO2HO3Y4TXGEknibWDJhbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.373 [XNIO-1 task-1] mO2HO3Y4TXGEknibWDJhbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.374 [XNIO-1 task-1] mO2HO3Y4TXGEknibWDJhbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.384 [XNIO-1 task-1] CGYrAxTFTwGfPp-Z0RnYTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.384 [XNIO-1 task-1] CGYrAxTFTwGfPp-Z0RnYTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.385 [XNIO-1 task-1] CGYrAxTFTwGfPp-Z0RnYTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.385 [XNIO-1 task-1] CGYrAxTFTwGfPp-Z0RnYTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.385 [XNIO-1 task-1] CGYrAxTFTwGfPp-Z0RnYTg DEBUG com.networknt.schema.TypeValidator debug - validate( "da2cbf76-98cc-4616-82b1-065da2093609", "da2cbf76-98cc-4616-82b1-065da2093609", refreshToken) +00:00:43.408 [XNIO-1 task-1] HM2auBq8ScqnIgK7rGZmsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.409 [XNIO-1 task-1] HM2auBq8ScqnIgK7rGZmsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.410 [XNIO-1 task-1] HM2auBq8ScqnIgK7rGZmsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.410 [XNIO-1 task-1] HM2auBq8ScqnIgK7rGZmsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.411 [XNIO-1 task-1] HM2auBq8ScqnIgK7rGZmsA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.425 [XNIO-1 task-1] iZrSeT1GTI2ByslMKxa2RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.425 [XNIO-1 task-1] iZrSeT1GTI2ByslMKxa2RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.425 [XNIO-1 task-1] iZrSeT1GTI2ByslMKxa2RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.425 [XNIO-1 task-1] iZrSeT1GTI2ByslMKxa2RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.427 [XNIO-1 task-1] iZrSeT1GTI2ByslMKxa2RQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.434 [XNIO-1 task-1] V8tSfF_xSR2QAjMudevQlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.438 [XNIO-1 task-1] V8tSfF_xSR2QAjMudevQlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.438 [XNIO-1 task-1] V8tSfF_xSR2QAjMudevQlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.438 [XNIO-1 task-1] V8tSfF_xSR2QAjMudevQlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.439 [XNIO-1 task-1] V8tSfF_xSR2QAjMudevQlg DEBUG com.networknt.schema.TypeValidator debug - validate( "da2cbf76-98cc-4616-82b1-065da2093609", "da2cbf76-98cc-4616-82b1-065da2093609", refreshToken) +00:00:43.450 [XNIO-1 task-1] V8tSfF_xSR2QAjMudevQlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token da2cbf76-98cc-4616-82b1-065da2093609 is not found.","severity":"ERROR"} +00:00:43.457 [XNIO-1 task-1] FDLIr6CqQciS9WLk-ciRgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.457 [XNIO-1 task-1] FDLIr6CqQciS9WLk-ciRgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.457 [XNIO-1 task-1] FDLIr6CqQciS9WLk-ciRgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.457 [XNIO-1 task-1] FDLIr6CqQciS9WLk-ciRgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.459 [XNIO-1 task-1] FDLIr6CqQciS9WLk-ciRgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.486 [XNIO-1 task-1] RtpP7e5IRIKpVMWE_rMuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.486 [XNIO-1 task-1] RtpP7e5IRIKpVMWE_rMuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.487 [XNIO-1 task-1] RtpP7e5IRIKpVMWE_rMuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.487 [XNIO-1 task-1] RtpP7e5IRIKpVMWE_rMuuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.489 [XNIO-1 task-1] RtpP7e5IRIKpVMWE_rMuuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.493 [XNIO-1 task-1] DVQXnlSqSimRC7BwqELonw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.493 [XNIO-1 task-1] DVQXnlSqSimRC7BwqELonw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.493 [XNIO-1 task-1] DVQXnlSqSimRC7BwqELonw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.494 [XNIO-1 task-1] DVQXnlSqSimRC7BwqELonw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.494 [XNIO-1 task-1] DVQXnlSqSimRC7BwqELonw DEBUG com.networknt.schema.TypeValidator debug - validate( "da2cbf76-98cc-4616-82b1-065da2093609", "da2cbf76-98cc-4616-82b1-065da2093609", refreshToken) +00:00:43.495 [XNIO-1 task-1] DVQXnlSqSimRC7BwqELonw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token da2cbf76-98cc-4616-82b1-065da2093609 is not found.","severity":"ERROR"} +00:00:43.498 [XNIO-1 task-1] kCJdsaSxTtSSyChpzAf_SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.499 [XNIO-1 task-1] kCJdsaSxTtSSyChpzAf_SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.499 [XNIO-1 task-1] kCJdsaSxTtSSyChpzAf_SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.499 [XNIO-1 task-1] kCJdsaSxTtSSyChpzAf_SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.500 [XNIO-1 task-1] kCJdsaSxTtSSyChpzAf_SA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.502 [XNIO-1 task-1] b902L5ziRjaGadZHNEWPzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.503 [XNIO-1 task-1] b902L5ziRjaGadZHNEWPzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.503 [XNIO-1 task-1] b902L5ziRjaGadZHNEWPzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.503 [XNIO-1 task-1] b902L5ziRjaGadZHNEWPzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.504 [XNIO-1 task-1] b902L5ziRjaGadZHNEWPzw DEBUG com.networknt.schema.TypeValidator debug - validate( "da2cbf76-98cc-4616-82b1-065da2093609", "da2cbf76-98cc-4616-82b1-065da2093609", refreshToken) +00:00:43.504 [XNIO-1 task-1] b902L5ziRjaGadZHNEWPzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token da2cbf76-98cc-4616-82b1-065da2093609 is not found.","severity":"ERROR"} +00:00:43.507 [XNIO-1 task-1] ZnDeXSJ-SPOwgxtEJe9A-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.507 [XNIO-1 task-1] ZnDeXSJ-SPOwgxtEJe9A-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.508 [XNIO-1 task-1] ZnDeXSJ-SPOwgxtEJe9A-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.508 [XNIO-1 task-1] ZnDeXSJ-SPOwgxtEJe9A-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.522 [XNIO-1 task-1] zjiA6WYpR6yiOQCFG2tKng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff, base path is set to: null +00:00:43.523 [XNIO-1 task-1] zjiA6WYpR6yiOQCFG2tKng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.523 [XNIO-1 task-1] zjiA6WYpR6yiOQCFG2tKng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.523 [XNIO-1 task-1] zjiA6WYpR6yiOQCFG2tKng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff, base path is set to: null +00:00:43.524 [XNIO-1 task-1] zjiA6WYpR6yiOQCFG2tKng DEBUG com.networknt.schema.TypeValidator debug - validate( "8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff", "8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff", refreshToken) +00:00:43.525 [XNIO-1 task-1] zjiA6WYpR6yiOQCFG2tKng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff is not found.","severity":"ERROR"} +00:00:43.532 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.536 [XNIO-1 task-1] 7NiS1tPJTseweU72kZSJDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.536 [XNIO-1 task-1] 7NiS1tPJTseweU72kZSJDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.537 [XNIO-1 task-1] 7NiS1tPJTseweU72kZSJDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.539 [XNIO-1 task-1] 7NiS1tPJTseweU72kZSJDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.539 [XNIO-1 task-1] 7NiS1tPJTseweU72kZSJDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.551 [XNIO-1 task-1] JydzfAjYSI6RssafYjR-tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.551 [XNIO-1 task-1] JydzfAjYSI6RssafYjR-tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.551 [XNIO-1 task-1] JydzfAjYSI6RssafYjR-tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.552 [XNIO-1 task-1] JydzfAjYSI6RssafYjR-tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609, base path is set to: null +00:00:43.552 [XNIO-1 task-1] JydzfAjYSI6RssafYjR-tg DEBUG com.networknt.schema.TypeValidator debug - validate( "da2cbf76-98cc-4616-82b1-065da2093609", "da2cbf76-98cc-4616-82b1-065da2093609", refreshToken) +00:00:43.552 [XNIO-1 task-1] JydzfAjYSI6RssafYjR-tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token da2cbf76-98cc-4616-82b1-065da2093609 is not found.","severity":"ERROR"} +00:00:43.555 [XNIO-1 task-1] hNphd_2VQpynMGpfPCArRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.555 [XNIO-1 task-1] hNphd_2VQpynMGpfPCArRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.555 [XNIO-1 task-1] hNphd_2VQpynMGpfPCArRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.555 [XNIO-1 task-1] hNphd_2VQpynMGpfPCArRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.556 [XNIO-1 task-1] hNphd_2VQpynMGpfPCArRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.560 [XNIO-1 task-1] F5CUl4pqS-uUSGKrIQWVtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.560 [XNIO-1 task-1] F5CUl4pqS-uUSGKrIQWVtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.560 [XNIO-1 task-1] F5CUl4pqS-uUSGKrIQWVtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.561 [XNIO-1 task-1] F5CUl4pqS-uUSGKrIQWVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.562 [XNIO-1 task-1] F5CUl4pqS-uUSGKrIQWVtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.572 [XNIO-1 task-1] EWpoRu7gRq-E1ALjldHj8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.572 [XNIO-1 task-1] EWpoRu7gRq-E1ALjldHj8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.572 [XNIO-1 task-1] EWpoRu7gRq-E1ALjldHj8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.572 [XNIO-1 task-1] EWpoRu7gRq-E1ALjldHj8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.575 [XNIO-1 task-1] EWpoRu7gRq-E1ALjldHj8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.583 [XNIO-1 task-1] XNJNQzN5TciSUCiLGSGUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609 +00:00:43.583 [XNIO-1 task-1] XNJNQzN5TciSUCiLGSGUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.583 [XNIO-1 task-1] XNJNQzN5TciSUCiLGSGUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.583 [XNIO-1 task-1] XNJNQzN5TciSUCiLGSGUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/da2cbf76-98cc-4616-82b1-065da2093609 +00:00:43.584 [XNIO-1 task-1] XNJNQzN5TciSUCiLGSGUYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = da2cbf76-98cc-4616-82b1-065da2093609 +00:00:43.588 [XNIO-1 task-1] xXmAM15RSHCPG9gJKm71iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.588 [XNIO-1 task-1] xXmAM15RSHCPG9gJKm71iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.588 [XNIO-1 task-1] xXmAM15RSHCPG9gJKm71iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.589 [XNIO-1 task-1] xXmAM15RSHCPG9gJKm71iA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.589 [XNIO-1 task-1] xXmAM15RSHCPG9gJKm71iA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.616 [XNIO-1 task-1] 6JYuT450TOCl5ZPfqJQTIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.616 [XNIO-1 task-1] 6JYuT450TOCl5ZPfqJQTIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.617 [XNIO-1 task-1] 6JYuT450TOCl5ZPfqJQTIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.617 [XNIO-1 task-1] 6JYuT450TOCl5ZPfqJQTIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.630 [XNIO-1 task-1] Cr4AUrGlQWCi46B_A3xZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.630 [XNIO-1 task-1] Cr4AUrGlQWCi46B_A3xZNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.630 [XNIO-1 task-1] Cr4AUrGlQWCi46B_A3xZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.631 [XNIO-1 task-1] Cr4AUrGlQWCi46B_A3xZNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.631 [XNIO-1 task-1] Cr4AUrGlQWCi46B_A3xZNg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.672 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:91c2893b +00:00:43.673 [XNIO-1 task-1] zGx0KZaQS3-mnwpKITPO0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.673 [XNIO-1 task-1] zGx0KZaQS3-mnwpKITPO0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.674 [XNIO-1 task-1] zGx0KZaQS3-mnwpKITPO0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.674 [XNIO-1 task-1] zGx0KZaQS3-mnwpKITPO0A DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0f63b7-dc0e-4950-b76c-75530a041975", "4c0f63b7-dc0e-4950-b76c-75530a041975", refreshToken) +00:00:43.675 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.676 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:91c2893b +00:00:43.747 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e75b4597-008b-4293-95c9-1a1591545c41 +00:00:43.758 [XNIO-1 task-1] MjB29HNdTyubcUku590KFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe873a4e-ab2c-465c-897e-f64258a624df +00:00:43.758 [XNIO-1 task-1] MjB29HNdTyubcUku590KFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.758 [XNIO-1 task-1] MjB29HNdTyubcUku590KFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.758 [XNIO-1 task-1] MjB29HNdTyubcUku590KFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe873a4e-ab2c-465c-897e-f64258a624df +00:00:43.759 [XNIO-1 task-1] MjB29HNdTyubcUku590KFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe873a4e-ab2c-465c-897e-f64258a624df +00:00:43.767 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:91c2893b +00:00:43.781 [XNIO-1 task-1] PvaOoUb_TBaR6r1wU8hsAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.781 [XNIO-1 task-1] PvaOoUb_TBaR6r1wU8hsAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.781 [XNIO-1 task-1] PvaOoUb_TBaR6r1wU8hsAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.781 [XNIO-1 task-1] PvaOoUb_TBaR6r1wU8hsAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.782 [XNIO-1 task-1] PvaOoUb_TBaR6r1wU8hsAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.805 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:91c2893b +00:00:43.810 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:91c2893b +00:00:43.811 [XNIO-1 task-1] dtHazPRdQYmPjwsLFC253w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.811 [XNIO-1 task-1] dtHazPRdQYmPjwsLFC253w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.811 [XNIO-1 task-1] dtHazPRdQYmPjwsLFC253w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.811 [XNIO-1 task-1] dtHazPRdQYmPjwsLFC253w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.812 [XNIO-1 task-1] dtHazPRdQYmPjwsLFC253w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.814 [XNIO-1 task-1] dtHazPRdQYmPjwsLFC253w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c0f63b7-dc0e-4950-b76c-75530a041975 is not found.","severity":"ERROR"} +00:00:43.817 [XNIO-1 task-1] Qe5FxLywS0SmPBMdAFNLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.817 [XNIO-1 task-1] Qe5FxLywS0SmPBMdAFNLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.818 [XNIO-1 task-1] Qe5FxLywS0SmPBMdAFNLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.818 [XNIO-1 task-1] Qe5FxLywS0SmPBMdAFNLqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.828 [XNIO-1 task-1] QbSHw4t7R7-oED-f06QwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.828 [XNIO-1 task-1] QbSHw4t7R7-oED-f06QwHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.828 [XNIO-1 task-1] QbSHw4t7R7-oED-f06QwHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.829 [XNIO-1 task-1] QbSHw4t7R7-oED-f06QwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.829 [XNIO-1 task-1] QbSHw4t7R7-oED-f06QwHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0f63b7-dc0e-4950-b76c-75530a041975", "4c0f63b7-dc0e-4950-b76c-75530a041975", refreshToken) +00:00:43.830 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.835 [XNIO-1 task-1] m_FoLjhnQh-BT_4v-22ujw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.835 [XNIO-1 task-1] m_FoLjhnQh-BT_4v-22ujw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.836 [XNIO-1 task-1] m_FoLjhnQh-BT_4v-22ujw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.836 [XNIO-1 task-1] m_FoLjhnQh-BT_4v-22ujw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.836 [XNIO-1 task-1] m_FoLjhnQh-BT_4v-22ujw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0f63b7-dc0e-4950-b76c-75530a041975", "4c0f63b7-dc0e-4950-b76c-75530a041975", refreshToken) +00:00:43.837 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.873 [XNIO-1 task-1] JGTENbcvSfStDVt9W_zf6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.874 [XNIO-1 task-1] JGTENbcvSfStDVt9W_zf6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.874 [XNIO-1 task-1] JGTENbcvSfStDVt9W_zf6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.875 [XNIO-1 task-1] JGTENbcvSfStDVt9W_zf6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.875 [XNIO-1 task-1] JGTENbcvSfStDVt9W_zf6g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.895 [XNIO-1 task-1] xqlj8ER8QFWoidrlZD4AjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.895 [XNIO-1 task-1] xqlj8ER8QFWoidrlZD4AjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.895 [XNIO-1 task-1] xqlj8ER8QFWoidrlZD4AjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.895 [XNIO-1 task-1] xqlj8ER8QFWoidrlZD4AjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.896 [XNIO-1 task-1] xqlj8ER8QFWoidrlZD4AjA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.897 [XNIO-1 task-1] xqlj8ER8QFWoidrlZD4AjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c0f63b7-dc0e-4950-b76c-75530a041975 is not found.","severity":"ERROR"} +00:00:43.902 [XNIO-1 task-1] 6eRFDvo1Q1Ot5OfQhPi1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.902 [XNIO-1 task-1] 6eRFDvo1Q1Ot5OfQhPi1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.902 [XNIO-1 task-1] 6eRFDvo1Q1Ot5OfQhPi1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.902 [XNIO-1 task-1] 6eRFDvo1Q1Ot5OfQhPi1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.903 [XNIO-1 task-1] 6eRFDvo1Q1Ot5OfQhPi1hA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.904 [XNIO-1 task-1] 6eRFDvo1Q1Ot5OfQhPi1hA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c0f63b7-dc0e-4950-b76c-75530a041975 is not found.","severity":"ERROR"} +00:00:43.907 [XNIO-1 task-1] QUcFfVE0RQ25th6H71Tx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:43.908 [XNIO-1 task-1] QUcFfVE0RQ25th6H71Tx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.908 [XNIO-1 task-1] QUcFfVE0RQ25th6H71Tx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.908 [XNIO-1 task-1] QUcFfVE0RQ25th6H71Tx9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:43.908 [XNIO-1 task-1] QUcFfVE0RQ25th6H71Tx9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:43.927 [XNIO-1 task-1] Tx9LSTbcTEKJGHcX7TaqUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.927 [XNIO-1 task-1] Tx9LSTbcTEKJGHcX7TaqUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.927 [XNIO-1 task-1] Tx9LSTbcTEKJGHcX7TaqUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.928 [XNIO-1 task-1] Tx9LSTbcTEKJGHcX7TaqUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.945 [XNIO-1 task-1] ENvmUg6qTAah37W6rRjJtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.945 [XNIO-1 task-1] ENvmUg6qTAah37W6rRjJtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.945 [XNIO-1 task-1] ENvmUg6qTAah37W6rRjJtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.945 [XNIO-1 task-1] ENvmUg6qTAah37W6rRjJtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.946 [XNIO-1 task-1] ENvmUg6qTAah37W6rRjJtA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0f63b7-dc0e-4950-b76c-75530a041975", "4c0f63b7-dc0e-4950-b76c-75530a041975", refreshToken) +00:00:43.946 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.955 [XNIO-1 task-1] wAxml97-Tr2hp1Vlw9DDoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.955 [XNIO-1 task-1] wAxml97-Tr2hp1Vlw9DDoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.955 [XNIO-1 task-1] wAxml97-Tr2hp1Vlw9DDoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.955 [XNIO-1 task-1] wAxml97-Tr2hp1Vlw9DDoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.956 [XNIO-1 task-1] wAxml97-Tr2hp1Vlw9DDoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0f63b7-dc0e-4950-b76c-75530a041975", "4c0f63b7-dc0e-4950-b76c-75530a041975", refreshToken) +00:00:43.956 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.961 [XNIO-1 task-1] uyd8mfIWT0KfQOCu7R2EQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.961 [XNIO-1 task-1] uyd8mfIWT0KfQOCu7R2EQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.961 [XNIO-1 task-1] uyd8mfIWT0KfQOCu7R2EQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:43.962 [XNIO-1 task-1] uyd8mfIWT0KfQOCu7R2EQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:43.962 [XNIO-1 task-1] uyd8mfIWT0KfQOCu7R2EQg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0f63b7-dc0e-4950-b76c-75530a041975", "4c0f63b7-dc0e-4950-b76c-75530a041975", refreshToken) +00:00:43.965 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.972 [XNIO-1 task-1] B-9GJdVQRcO8BjzNwzk7Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.972 [XNIO-1 task-1] B-9GJdVQRcO8BjzNwzk7Ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:43.972 [XNIO-1 task-1] B-9GJdVQRcO8BjzNwzk7Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:43.973 [XNIO-1 task-1] B-9GJdVQRcO8BjzNwzk7Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.973 [XNIO-1 task-1] B-9GJdVQRcO8BjzNwzk7Ew DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:43.984 [XNIO-1 task-1] -LPaxVtCQleApDdfk8uNPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.984 [XNIO-1 task-1] -LPaxVtCQleApDdfk8uNPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.984 [XNIO-1 task-1] -LPaxVtCQleApDdfk8uNPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.984 [XNIO-1 task-1] -LPaxVtCQleApDdfk8uNPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.985 [XNIO-1 task-1] -LPaxVtCQleApDdfk8uNPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.987 [XNIO-1 task-1] -LPaxVtCQleApDdfk8uNPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c0f63b7-dc0e-4950-b76c-75530a041975 is not found.","severity":"ERROR"} +00:00:43.992 [XNIO-1 task-1] RYjEl0sLRfCHIborBsgYHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.992 [XNIO-1 task-1] RYjEl0sLRfCHIborBsgYHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.992 [XNIO-1 task-1] RYjEl0sLRfCHIborBsgYHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.992 [XNIO-1 task-1] RYjEl0sLRfCHIborBsgYHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.994 [XNIO-1 task-1] RYjEl0sLRfCHIborBsgYHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.995 [XNIO-1 task-1] RYjEl0sLRfCHIborBsgYHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c0f63b7-dc0e-4950-b76c-75530a041975 is not found.","severity":"ERROR"} +00:00:43.998 [XNIO-1 task-1] oRUBas5HQHue_MW60TupKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.998 [XNIO-1 task-1] oRUBas5HQHue_MW60TupKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:43.998 [XNIO-1 task-1] oRUBas5HQHue_MW60TupKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:43.999 [XNIO-1 task-1] oRUBas5HQHue_MW60TupKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:43.999 [XNIO-1 task-1] oRUBas5HQHue_MW60TupKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:44.001 [XNIO-1 task-1] oRUBas5HQHue_MW60TupKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c0f63b7-dc0e-4950-b76c-75530a041975 is not found.","severity":"ERROR"} +00:00:44.014 [XNIO-1 task-1] j4UE0ibEQT6AGrDmgEhMRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:44.014 [XNIO-1 task-1] j4UE0ibEQT6AGrDmgEhMRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.014 [XNIO-1 task-1] j4UE0ibEQT6AGrDmgEhMRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.014 [XNIO-1 task-1] j4UE0ibEQT6AGrDmgEhMRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c0f63b7-dc0e-4950-b76c-75530a041975, base path is set to: null +00:00:44.015 [XNIO-1 task-1] j4UE0ibEQT6AGrDmgEhMRg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c0f63b7-dc0e-4950-b76c-75530a041975", "4c0f63b7-dc0e-4950-b76c-75530a041975", refreshToken) +00:00:44.015 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4c0f63b7-dc0e-4950-b76c-75530a041975 +00:00:44.023 [XNIO-1 task-1] 74LONJnDR5C7n6_h6TEu6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.023 [XNIO-1 task-1] 74LONJnDR5C7n6_h6TEu6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.023 [XNIO-1 task-1] 74LONJnDR5C7n6_h6TEu6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.024 [XNIO-1 task-1] 74LONJnDR5C7n6_h6TEu6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.024 [XNIO-1 task-1] 74LONJnDR5C7n6_h6TEu6A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.047 [XNIO-1 task-1] nQf8gANMR0afJ_DjOL-w0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.047 [XNIO-1 task-1] nQf8gANMR0afJ_DjOL-w0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.047 [XNIO-1 task-1] nQf8gANMR0afJ_DjOL-w0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.047 [XNIO-1 task-1] nQf8gANMR0afJ_DjOL-w0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.048 [XNIO-1 task-1] nQf8gANMR0afJ_DjOL-w0g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.072 [XNIO-1 task-1] 2rNQZUuuShqtcxdlx6pTvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.072 [XNIO-1 task-1] 2rNQZUuuShqtcxdlx6pTvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.072 [XNIO-1 task-1] 2rNQZUuuShqtcxdlx6pTvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.073 [XNIO-1 task-1] 2rNQZUuuShqtcxdlx6pTvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.082 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:84caa2ad-381a-4648-9d86-14b14e7b07e4 +00:00:44.084 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:84caa2ad-381a-4648-9d86-14b14e7b07e4 +00:00:44.086 [XNIO-1 task-1] JECmU4UiS7qPmSRlaNBGtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.087 [XNIO-1 task-1] JECmU4UiS7qPmSRlaNBGtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.087 [XNIO-1 task-1] JECmU4UiS7qPmSRlaNBGtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.089 [XNIO-1 task-1] JECmU4UiS7qPmSRlaNBGtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.118 [XNIO-1 task-1] JZLeYt02S6GIkTJ02wtxoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.119 [XNIO-1 task-1] JZLeYt02S6GIkTJ02wtxoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.119 [XNIO-1 task-1] JZLeYt02S6GIkTJ02wtxoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.119 [XNIO-1 task-1] JZLeYt02S6GIkTJ02wtxoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.119 [XNIO-1 task-1] JZLeYt02S6GIkTJ02wtxoA DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", refreshToken) +00:00:44.124 [XNIO-1 task-1] JZLeYt02S6GIkTJ02wtxoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 is not found.","severity":"ERROR"} +00:00:44.128 [XNIO-1 task-1] _eiItRFPTtyWBMBEDrmRXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.128 [XNIO-1 task-1] _eiItRFPTtyWBMBEDrmRXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.128 [XNIO-1 task-1] _eiItRFPTtyWBMBEDrmRXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.129 [XNIO-1 task-1] _eiItRFPTtyWBMBEDrmRXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.129 [XNIO-1 task-1] _eiItRFPTtyWBMBEDrmRXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.135 [XNIO-1 task-1] Q1zo2Vs0Rxy-K68VSLNd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.135 [XNIO-1 task-1] Q1zo2Vs0Rxy-K68VSLNd4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.135 [XNIO-1 task-1] Q1zo2Vs0Rxy-K68VSLNd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.136 [XNIO-1 task-1] Q1zo2Vs0Rxy-K68VSLNd4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.136 [XNIO-1 task-1] Q1zo2Vs0Rxy-K68VSLNd4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.145 [XNIO-1 task-1] BTe8wPG4RLmxHisRs6jfew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.145 [XNIO-1 task-1] BTe8wPG4RLmxHisRs6jfew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.146 [XNIO-1 task-1] BTe8wPG4RLmxHisRs6jfew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.146 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8c077d0f +00:00:44.148 [XNIO-1 task-1] BTe8wPG4RLmxHisRs6jfew DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.150 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8c077d0f +00:00:44.157 [XNIO-1 task-1] 6jNp9U1LQIqtrSFeyF8rkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.157 [XNIO-1 task-1] 6jNp9U1LQIqtrSFeyF8rkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.157 [XNIO-1 task-1] 6jNp9U1LQIqtrSFeyF8rkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.157 [XNIO-1 task-1] 6jNp9U1LQIqtrSFeyF8rkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.160 [XNIO-1 task-1] 6jNp9U1LQIqtrSFeyF8rkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.164 [XNIO-1 task-1] 1LIJnITeR5a3zQ_miMe41Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.164 [XNIO-1 task-1] 1LIJnITeR5a3zQ_miMe41Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.164 [XNIO-1 task-1] 1LIJnITeR5a3zQ_miMe41Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.164 [XNIO-1 task-1] 1LIJnITeR5a3zQ_miMe41Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.165 [XNIO-1 task-1] 1LIJnITeR5a3zQ_miMe41Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", refreshToken) +00:00:44.165 [XNIO-1 task-1] 1LIJnITeR5a3zQ_miMe41Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 is not found.","severity":"ERROR"} +00:00:44.169 [XNIO-1 task-1] qCB_3PlSTBSSSjPc3euHMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.169 [XNIO-1 task-1] qCB_3PlSTBSSSjPc3euHMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.169 [XNIO-1 task-1] qCB_3PlSTBSSSjPc3euHMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.169 [XNIO-1 task-1] qCB_3PlSTBSSSjPc3euHMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.170 [XNIO-1 task-1] qCB_3PlSTBSSSjPc3euHMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.172 [XNIO-1 task-1] bmhpjz9sQKytxSXjMXeFPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.173 [XNIO-1 task-1] bmhpjz9sQKytxSXjMXeFPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.173 [XNIO-1 task-1] bmhpjz9sQKytxSXjMXeFPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.173 [XNIO-1 task-1] bmhpjz9sQKytxSXjMXeFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.174 [XNIO-1 task-1] bmhpjz9sQKytxSXjMXeFPA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.182 [XNIO-1 task-1] GPwTzmZhQumRpYCJUyS_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.182 [XNIO-1 task-1] GPwTzmZhQumRpYCJUyS_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.182 [XNIO-1 task-1] GPwTzmZhQumRpYCJUyS_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.183 [XNIO-1 task-1] GPwTzmZhQumRpYCJUyS_UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.183 [XNIO-1 task-1] GPwTzmZhQumRpYCJUyS_UA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.190 [XNIO-1 task-1] y5CkDtSESzyCVtfth6GBDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.191 [XNIO-1 task-1] y5CkDtSESzyCVtfth6GBDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.191 [XNIO-1 task-1] y5CkDtSESzyCVtfth6GBDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.191 [XNIO-1 task-1] y5CkDtSESzyCVtfth6GBDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.196 [XNIO-1 task-1] y5CkDtSESzyCVtfth6GBDw DEBUG com.networknt.schema.TypeValidator debug - validate( "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", refreshToken) +00:00:44.203 [XNIO-1 task-1] PsEkVA2YRyC8x4n7uNWp8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.204 [XNIO-1 task-1] PsEkVA2YRyC8x4n7uNWp8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.204 [XNIO-1 task-1] PsEkVA2YRyC8x4n7uNWp8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.204 [XNIO-1 task-1] PsEkVA2YRyC8x4n7uNWp8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.206 [XNIO-1 task-1] PsEkVA2YRyC8x4n7uNWp8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", refreshToken) +00:00:44.208 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8c077d0f +00:00:44.212 [XNIO-1 task-1] I8JTJpSbQFis71_dIOp_xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.212 [XNIO-1 task-1] I8JTJpSbQFis71_dIOp_xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.212 [XNIO-1 task-1] I8JTJpSbQFis71_dIOp_xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.213 [XNIO-1 task-1] I8JTJpSbQFis71_dIOp_xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.213 [XNIO-1 task-1] I8JTJpSbQFis71_dIOp_xQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.246 [XNIO-1 task-1] U0g2g4bsRDOPVEeYKXGOlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.246 [XNIO-1 task-1] U0g2g4bsRDOPVEeYKXGOlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.246 [XNIO-1 task-1] U0g2g4bsRDOPVEeYKXGOlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.246 [XNIO-1 task-1] U0g2g4bsRDOPVEeYKXGOlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.247 [XNIO-1 task-1] U0g2g4bsRDOPVEeYKXGOlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.252 [XNIO-1 task-1] eq4XjFwdSo66wYDIMXyQbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.252 [XNIO-1 task-1] eq4XjFwdSo66wYDIMXyQbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.252 [XNIO-1 task-1] eq4XjFwdSo66wYDIMXyQbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.252 [XNIO-1 task-1] eq4XjFwdSo66wYDIMXyQbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.253 [XNIO-1 task-1] eq4XjFwdSo66wYDIMXyQbw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.260 [XNIO-1 task-1] FTomkyvAQM29nwInxr6J-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.261 [XNIO-1 task-1] FTomkyvAQM29nwInxr6J-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.261 [XNIO-1 task-1] FTomkyvAQM29nwInxr6J-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.261 [XNIO-1 task-1] FTomkyvAQM29nwInxr6J-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.261 [XNIO-1 task-1] FTomkyvAQM29nwInxr6J-g DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", refreshToken) +00:00:44.262 [XNIO-1 task-1] FTomkyvAQM29nwInxr6J-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 is not found.","severity":"ERROR"} +00:00:44.265 [XNIO-1 task-1] T2kfbQHFTzqoDxsKYdAtvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.266 [XNIO-1 task-1] T2kfbQHFTzqoDxsKYdAtvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.266 [XNIO-1 task-1] T2kfbQHFTzqoDxsKYdAtvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.266 [XNIO-1 task-1] T2kfbQHFTzqoDxsKYdAtvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.267 [XNIO-1 task-1] T2kfbQHFTzqoDxsKYdAtvw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.274 [XNIO-1 task-1] RBmxfe0BSfi8Fye3wybFkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.274 [XNIO-1 task-1] RBmxfe0BSfi8Fye3wybFkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.274 [XNIO-1 task-1] RBmxfe0BSfi8Fye3wybFkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.274 [XNIO-1 task-1] RBmxfe0BSfi8Fye3wybFkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.275 [XNIO-1 task-1] RBmxfe0BSfi8Fye3wybFkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", refreshToken) +00:00:44.275 [XNIO-1 task-1] RBmxfe0BSfi8Fye3wybFkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 is not found.","severity":"ERROR"} +00:00:44.279 [XNIO-1 task-1] XMFYsVhiQX2he61Y2vAwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.279 [XNIO-1 task-1] XMFYsVhiQX2he61Y2vAwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.279 [XNIO-1 task-1] XMFYsVhiQX2he61Y2vAwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.280 [XNIO-1 task-1] XMFYsVhiQX2he61Y2vAwAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.282 [XNIO-1 task-1] XMFYsVhiQX2he61Y2vAwAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.290 [XNIO-1 task-1] 5V2ZHTI7TQeVtdslYK5Kfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.290 [XNIO-1 task-1] 5V2ZHTI7TQeVtdslYK5Kfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.290 [XNIO-1 task-1] 5V2ZHTI7TQeVtdslYK5Kfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.291 [XNIO-1 task-1] 5V2ZHTI7TQeVtdslYK5Kfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.294 [XNIO-1 task-1] 5V2ZHTI7TQeVtdslYK5Kfw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.316 [XNIO-1 task-1] MATg7oA2QwilSEeoxscXzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.316 [XNIO-1 task-1] MATg7oA2QwilSEeoxscXzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.316 [XNIO-1 task-1] MATg7oA2QwilSEeoxscXzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.316 [XNIO-1 task-1] MATg7oA2QwilSEeoxscXzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.317 [XNIO-1 task-1] MATg7oA2QwilSEeoxscXzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.321 [XNIO-1 task-1] jbXgQAJDTvK6Cv4PeI0JDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.322 [XNIO-1 task-1] jbXgQAJDTvK6Cv4PeI0JDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.322 [XNIO-1 task-1] jbXgQAJDTvK6Cv4PeI0JDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.322 [XNIO-1 task-1] jbXgQAJDTvK6Cv4PeI0JDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.322 [XNIO-1 task-1] jbXgQAJDTvK6Cv4PeI0JDA DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", refreshToken) +00:00:44.323 [XNIO-1 task-1] jbXgQAJDTvK6Cv4PeI0JDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 is not found.","severity":"ERROR"} +00:00:44.331 [XNIO-1 task-1] 5JS918K4T5aCVMT3_NyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.331 [XNIO-1 task-1] 5JS918K4T5aCVMT3_NyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.331 [XNIO-1 task-1] 5JS918K4T5aCVMT3_NyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.331 [XNIO-1 task-1] 5JS918K4T5aCVMT3_NyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.332 [XNIO-1 task-1] 5JS918K4T5aCVMT3_NyQTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.342 [XNIO-1 task-1] o8qQMxkjTYui_yxnjcAHBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.342 [XNIO-1 task-1] o8qQMxkjTYui_yxnjcAHBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.342 [XNIO-1 task-1] o8qQMxkjTYui_yxnjcAHBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.342 [XNIO-1 task-1] o8qQMxkjTYui_yxnjcAHBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14, base path is set to: null +00:00:44.343 [XNIO-1 task-1] o8qQMxkjTYui_yxnjcAHBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", "0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14", refreshToken) +00:00:44.343 [XNIO-1 task-1] o8qQMxkjTYui_yxnjcAHBQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 is not found.","severity":"ERROR"} +00:00:44.349 [XNIO-1 task-1] N3E3GW5ySgWRe2bCEAOcnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.349 [XNIO-1 task-1] N3E3GW5ySgWRe2bCEAOcnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.349 [XNIO-1 task-1] N3E3GW5ySgWRe2bCEAOcnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.350 [XNIO-1 task-1] N3E3GW5ySgWRe2bCEAOcnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.362 [XNIO-1 task-1] JjomYIcjT_Sud82JFgpA8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.362 [XNIO-1 task-1] JjomYIcjT_Sud82JFgpA8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.362 [XNIO-1 task-1] JjomYIcjT_Sud82JFgpA8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.363 [XNIO-1 task-1] JjomYIcjT_Sud82JFgpA8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.363 [XNIO-1 task-1] JjomYIcjT_Sud82JFgpA8g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.368 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2a8bd16e +00:00:44.374 [XNIO-1 task-1] CTto0qCXTiaRC-3Kld1f0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.376 [XNIO-1 task-1] CTto0qCXTiaRC-3Kld1f0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.376 [XNIO-1 task-1] CTto0qCXTiaRC-3Kld1f0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.376 [XNIO-1 task-1] CTto0qCXTiaRC-3Kld1f0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.377 [XNIO-1 task-1] CTto0qCXTiaRC-3Kld1f0g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.388 [XNIO-1 task-1] 6aK50OEHTXuZfpwh6I6TXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.388 [XNIO-1 task-1] 6aK50OEHTXuZfpwh6I6TXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.388 [XNIO-1 task-1] 6aK50OEHTXuZfpwh6I6TXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.388 [XNIO-1 task-1] 6aK50OEHTXuZfpwh6I6TXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.389 [XNIO-1 task-1] 6aK50OEHTXuZfpwh6I6TXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:44.396 [XNIO-1 task-1] K4ZlvJoBSN2-IR_NS1zdtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.398 [XNIO-1 task-1] K4ZlvJoBSN2-IR_NS1zdtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.398 [XNIO-1 task-1] K4ZlvJoBSN2-IR_NS1zdtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.398 [XNIO-1 task-1] K4ZlvJoBSN2-IR_NS1zdtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.399 [XNIO-1 task-1] K4ZlvJoBSN2-IR_NS1zdtg DEBUG com.networknt.schema.TypeValidator debug - validate( "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", refreshToken) +00:00:44.407 [XNIO-1 task-1] K4ZlvJoBSN2-IR_NS1zdtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token db1a4960-3d7c-4b3e-b4f7-2b749553eb0e is not found.","severity":"ERROR"} +00:00:44.413 [XNIO-1 task-1] bGe6ZVfCRzmP7wVCgG2AvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.413 [XNIO-1 task-1] bGe6ZVfCRzmP7wVCgG2AvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.413 [XNIO-1 task-1] bGe6ZVfCRzmP7wVCgG2AvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.413 [XNIO-1 task-1] bGe6ZVfCRzmP7wVCgG2AvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.414 [XNIO-1 task-1] bGe6ZVfCRzmP7wVCgG2AvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = db1a4960-3d7c-4b3e-b4f7-2b749553eb0e +00:00:44.418 [XNIO-1 task-1] ZyPnTWuORn6wB5pYt0ipYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.418 [XNIO-1 task-1] ZyPnTWuORn6wB5pYt0ipYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.419 [XNIO-1 task-1] ZyPnTWuORn6wB5pYt0ipYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.419 [XNIO-1 task-1] ZyPnTWuORn6wB5pYt0ipYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.424 [XNIO-1 task-1] ZyPnTWuORn6wB5pYt0ipYw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.445 [XNIO-1 task-1] 948_26X4Sm6IenH9DtFzGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.446 [XNIO-1 task-1] 948_26X4Sm6IenH9DtFzGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.446 [XNIO-1 task-1] 948_26X4Sm6IenH9DtFzGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.447 [XNIO-1 task-1] 948_26X4Sm6IenH9DtFzGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.458 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2a8bd16e +00:00:44.459 [XNIO-1 task-1] u0dIWFNeRbGcaAeobMnsbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.459 [XNIO-1 task-1] u0dIWFNeRbGcaAeobMnsbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.460 [XNIO-1 task-1] u0dIWFNeRbGcaAeobMnsbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.460 [XNIO-1 task-1] u0dIWFNeRbGcaAeobMnsbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.460 [XNIO-1 task-1] u0dIWFNeRbGcaAeobMnsbg DEBUG com.networknt.schema.TypeValidator debug - validate( "28703ac0-b29f-43c3-bb47-d64126e5b976", "28703ac0-b29f-43c3-bb47-d64126e5b976", refreshToken) +00:00:44.481 [XNIO-1 task-1] hgPxgk_6TSGR6rsTs9fxAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.482 [XNIO-1 task-1] hgPxgk_6TSGR6rsTs9fxAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.482 [XNIO-1 task-1] hgPxgk_6TSGR6rsTs9fxAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.482 [XNIO-1 task-1] hgPxgk_6TSGR6rsTs9fxAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.482 [XNIO-1 task-1] hgPxgk_6TSGR6rsTs9fxAw DEBUG com.networknt.schema.TypeValidator debug - validate( "28703ac0-b29f-43c3-bb47-d64126e5b976", "28703ac0-b29f-43c3-bb47-d64126e5b976", refreshToken) +00:00:44.486 [XNIO-1 task-1] hgPxgk_6TSGR6rsTs9fxAw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28703ac0-b29f-43c3-bb47-d64126e5b976 is not found.","severity":"ERROR"} +00:00:44.492 [XNIO-1 task-1] xLecwUzgS5mGe61oe_DySw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.492 [XNIO-1 task-1] xLecwUzgS5mGe61oe_DySw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.492 [XNIO-1 task-1] xLecwUzgS5mGe61oe_DySw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.492 [XNIO-1 task-1] xLecwUzgS5mGe61oe_DySw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.494 [XNIO-1 task-1] xLecwUzgS5mGe61oe_DySw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.500 [XNIO-1 task-1] blYDVo8_RF61eSytGEVqFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.500 [XNIO-1 task-1] blYDVo8_RF61eSytGEVqFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.500 [XNIO-1 task-1] blYDVo8_RF61eSytGEVqFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.500 [XNIO-1 task-1] blYDVo8_RF61eSytGEVqFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.501 [XNIO-1 task-1] blYDVo8_RF61eSytGEVqFw DEBUG com.networknt.schema.TypeValidator debug - validate( "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", refreshToken) +00:00:44.501 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:297963b4 +00:00:44.576 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:297963b4 +00:00:44.576 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8c077d0f +00:00:44.576 [XNIO-1 task-1] hFaBHSdXTNCHkmOzTeEX2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.577 [XNIO-1 task-1] hFaBHSdXTNCHkmOzTeEX2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.578 [XNIO-1 task-1] hFaBHSdXTNCHkmOzTeEX2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.579 [XNIO-1 task-1] hFaBHSdXTNCHkmOzTeEX2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/db1a4960-3d7c-4b3e-b4f7-2b749553eb0e, base path is set to: null +00:00:44.579 [XNIO-1 task-1] hFaBHSdXTNCHkmOzTeEX2A DEBUG com.networknt.schema.TypeValidator debug - validate( "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", "db1a4960-3d7c-4b3e-b4f7-2b749553eb0e", refreshToken) +00:00:44.581 [XNIO-1 task-1] hFaBHSdXTNCHkmOzTeEX2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token db1a4960-3d7c-4b3e-b4f7-2b749553eb0e is not found.","severity":"ERROR"} +00:00:44.591 [XNIO-1 task-1] yB-VjYvnTn61EDhC3Cw4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.601 [XNIO-1 task-1] yB-VjYvnTn61EDhC3Cw4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.603 [XNIO-1 task-1] yB-VjYvnTn61EDhC3Cw4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.604 [XNIO-1 task-1] yB-VjYvnTn61EDhC3Cw4IA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.620 [XNIO-1 task-1] MY7uGl-hR7Sg0hInhOFUgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.621 [XNIO-1 task-1] MY7uGl-hR7Sg0hInhOFUgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.621 [XNIO-1 task-1] MY7uGl-hR7Sg0hInhOFUgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.621 [XNIO-1 task-1] MY7uGl-hR7Sg0hInhOFUgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.621 [XNIO-1 task-1] MY7uGl-hR7Sg0hInhOFUgA DEBUG com.networknt.schema.TypeValidator debug - validate( "28703ac0-b29f-43c3-bb47-d64126e5b976", "28703ac0-b29f-43c3-bb47-d64126e5b976", refreshToken) +00:00:44.622 [XNIO-1 task-1] MY7uGl-hR7Sg0hInhOFUgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28703ac0-b29f-43c3-bb47-d64126e5b976 is not found.","severity":"ERROR"} +00:00:44.625 [XNIO-1 task-1] 8yztTseURxuSDzL4lEKneg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.625 [XNIO-1 task-1] 8yztTseURxuSDzL4lEKneg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.625 [XNIO-1 task-1] 8yztTseURxuSDzL4lEKneg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.625 [XNIO-1 task-1] 8yztTseURxuSDzL4lEKneg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.626 [XNIO-1 task-1] 8yztTseURxuSDzL4lEKneg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.629 [XNIO-1 task-1] XdMU0TX_QqKQ4M957lNjzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d7fc4d5-77aa-4c56-bf9e-34d627d749ab, base path is set to: null +00:00:44.629 [XNIO-1 task-1] XdMU0TX_QqKQ4M957lNjzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.630 [XNIO-1 task-1] XdMU0TX_QqKQ4M957lNjzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.630 [XNIO-1 task-1] XdMU0TX_QqKQ4M957lNjzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d7fc4d5-77aa-4c56-bf9e-34d627d749ab, base path is set to: null +00:00:44.630 [XNIO-1 task-1] XdMU0TX_QqKQ4M957lNjzA DEBUG com.networknt.schema.TypeValidator debug - validate( "4d7fc4d5-77aa-4c56-bf9e-34d627d749ab", "4d7fc4d5-77aa-4c56-bf9e-34d627d749ab", refreshToken) +00:00:44.636 [XNIO-1 task-1] XdMU0TX_QqKQ4M957lNjzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d7fc4d5-77aa-4c56-bf9e-34d627d749ab is not found.","severity":"ERROR"} +00:00:44.640 [XNIO-1 task-1] VLLydyepRjWZL0uX_yauiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.640 [XNIO-1 task-1] VLLydyepRjWZL0uX_yauiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.640 [XNIO-1 task-1] VLLydyepRjWZL0uX_yauiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.640 [XNIO-1 task-1] VLLydyepRjWZL0uX_yauiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.670 [XNIO-1 task-1] VfUEkYNcSaGiY-GdfF87GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.670 [XNIO-1 task-1] VfUEkYNcSaGiY-GdfF87GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.670 [XNIO-1 task-1] VfUEkYNcSaGiY-GdfF87GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.670 [XNIO-1 task-1] VfUEkYNcSaGiY-GdfF87GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.671 [XNIO-1 task-1] VfUEkYNcSaGiY-GdfF87GA DEBUG com.networknt.schema.TypeValidator debug - validate( "28703ac0-b29f-43c3-bb47-d64126e5b976", "28703ac0-b29f-43c3-bb47-d64126e5b976", refreshToken) +00:00:44.671 [XNIO-1 task-1] VfUEkYNcSaGiY-GdfF87GA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28703ac0-b29f-43c3-bb47-d64126e5b976 is not found.","severity":"ERROR"} +00:00:44.672 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:463f3e61-5624-4612-80a4-91364da44bba +00:00:44.677 [XNIO-1 task-1] lvoPx9GQT46dt7YXX9F2rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.677 [XNIO-1 task-1] lvoPx9GQT46dt7YXX9F2rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.678 [XNIO-1 task-1] lvoPx9GQT46dt7YXX9F2rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.679 [XNIO-1 task-1] lvoPx9GQT46dt7YXX9F2rw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.683 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:297963b4 +00:00:44.686 [XNIO-1 task-1] FcONoK0EQ3OMVkPdajfZ3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.687 [XNIO-1 task-1] FcONoK0EQ3OMVkPdajfZ3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.688 [XNIO-1 task-1] FcONoK0EQ3OMVkPdajfZ3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.688 [XNIO-1 task-1] FcONoK0EQ3OMVkPdajfZ3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:44.688 [XNIO-1 task-1] FcONoK0EQ3OMVkPdajfZ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "28703ac0-b29f-43c3-bb47-d64126e5b976", "28703ac0-b29f-43c3-bb47-d64126e5b976", refreshToken) +00:00:44.689 [XNIO-1 task-1] FcONoK0EQ3OMVkPdajfZ3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28703ac0-b29f-43c3-bb47-d64126e5b976 is not found.","severity":"ERROR"} +00:00:44.693 [XNIO-1 task-1] PRsj1ag3QDaNrPL0z13OHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.693 [XNIO-1 task-1] PRsj1ag3QDaNrPL0z13OHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.693 [XNIO-1 task-1] PRsj1ag3QDaNrPL0z13OHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.694 [XNIO-1 task-1] PRsj1ag3QDaNrPL0z13OHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.705 [XNIO-1 task-1] JPXU_4yDSNOEnbqHI_MP3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/702f1ca9-4d96-4791-8eba-3b44d06a8f62, base path is set to: null +00:00:44.706 [XNIO-1 task-1] JPXU_4yDSNOEnbqHI_MP3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.706 [XNIO-1 task-1] JPXU_4yDSNOEnbqHI_MP3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.706 [XNIO-1 task-1] JPXU_4yDSNOEnbqHI_MP3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/702f1ca9-4d96-4791-8eba-3b44d06a8f62, base path is set to: null +00:00:44.706 [XNIO-1 task-1] JPXU_4yDSNOEnbqHI_MP3A DEBUG com.networknt.schema.TypeValidator debug - validate( "702f1ca9-4d96-4791-8eba-3b44d06a8f62", "702f1ca9-4d96-4791-8eba-3b44d06a8f62", refreshToken) +00:00:44.721 [XNIO-1 task-1] 94qAiLYRScWCcGuk1OFL9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.722 [XNIO-1 task-1] 94qAiLYRScWCcGuk1OFL9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.722 [XNIO-1 task-1] 94qAiLYRScWCcGuk1OFL9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.722 [XNIO-1 task-1] 94qAiLYRScWCcGuk1OFL9A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.723 [XNIO-1 task-1] 94qAiLYRScWCcGuk1OFL9A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.735 [XNIO-1 task-1] t6vGgqtyTOSf8aFjcgCnOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.735 [XNIO-1 task-1] t6vGgqtyTOSf8aFjcgCnOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.735 [XNIO-1 task-1] t6vGgqtyTOSf8aFjcgCnOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.735 [XNIO-1 task-1] t6vGgqtyTOSf8aFjcgCnOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.736 [XNIO-1 task-1] t6vGgqtyTOSf8aFjcgCnOw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.745 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a114447c +00:00:44.745 [XNIO-1 task-1] ArTMJX0nSgyn-n-rj-acbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.746 [XNIO-1 task-1] ArTMJX0nSgyn-n-rj-acbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.746 [XNIO-1 task-1] ArTMJX0nSgyn-n-rj-acbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.746 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a114447c +00:00:44.746 [XNIO-1 task-1] ArTMJX0nSgyn-n-rj-acbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.752 [XNIO-1 task-1] xqxYeYGVT7aRZGBLho1V2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.753 [XNIO-1 task-1] xqxYeYGVT7aRZGBLho1V2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.754 [XNIO-1 task-1] xqxYeYGVT7aRZGBLho1V2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.755 [XNIO-1 task-1] xqxYeYGVT7aRZGBLho1V2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.755 [XNIO-1 task-1] xqxYeYGVT7aRZGBLho1V2A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.766 [XNIO-1 task-1] WWBo-FmfTNG60nRXqiiLgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.766 [XNIO-1 task-1] WWBo-FmfTNG60nRXqiiLgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.766 [XNIO-1 task-1] WWBo-FmfTNG60nRXqiiLgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.767 [XNIO-1 task-1] WWBo-FmfTNG60nRXqiiLgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.798 [XNIO-1 task-1] QO-ZvmHSR3ey6GRFAVwTUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.799 [XNIO-1 task-1] QO-ZvmHSR3ey6GRFAVwTUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.799 [XNIO-1 task-1] QO-ZvmHSR3ey6GRFAVwTUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.799 [XNIO-1 task-1] QO-ZvmHSR3ey6GRFAVwTUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.800 [XNIO-1 task-1] QO-ZvmHSR3ey6GRFAVwTUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.812 [XNIO-1 task-1] Oxw3KSnPR5ukaGhqAIfMgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/463f3e61-5624-4612-80a4-91364da44bba +00:00:44.812 [XNIO-1 task-1] Oxw3KSnPR5ukaGhqAIfMgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.812 [XNIO-1 task-1] Oxw3KSnPR5ukaGhqAIfMgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.812 [XNIO-1 task-1] Oxw3KSnPR5ukaGhqAIfMgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/463f3e61-5624-4612-80a4-91364da44bba +00:00:44.813 [XNIO-1 task-1] Oxw3KSnPR5ukaGhqAIfMgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 463f3e61-5624-4612-80a4-91364da44bba +00:00:44.819 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:297963b4 +00:00:44.828 [XNIO-1 task-1] eNwtTHLeT5GU0EAEptlpTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.828 [XNIO-1 task-1] eNwtTHLeT5GU0EAEptlpTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.829 [XNIO-1 task-1] eNwtTHLeT5GU0EAEptlpTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.829 [XNIO-1 task-1] eNwtTHLeT5GU0EAEptlpTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.829 [XNIO-1 task-1] eNwtTHLeT5GU0EAEptlpTA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.845 [XNIO-1 task-1] fKsM9UElQOmSuygZqTMjOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.845 [XNIO-1 task-1] fKsM9UElQOmSuygZqTMjOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.845 [XNIO-1 task-1] fKsM9UElQOmSuygZqTMjOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.845 [XNIO-1 task-1] fKsM9UElQOmSuygZqTMjOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.846 [XNIO-1 task-1] fKsM9UElQOmSuygZqTMjOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.856 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:df996199-b90a-4f8b-8ade-bbf7ec9d73a4 +00:00:44.865 [XNIO-1 task-1] IcRMyWzwSAeWYSBS2s1Hhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.865 [XNIO-1 task-1] IcRMyWzwSAeWYSBS2s1Hhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.865 [XNIO-1 task-1] IcRMyWzwSAeWYSBS2s1Hhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.866 [XNIO-1 task-1] IcRMyWzwSAeWYSBS2s1Hhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.866 [XNIO-1 task-1] IcRMyWzwSAeWYSBS2s1Hhw DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:44.870 [XNIO-1 task-1] IcRMyWzwSAeWYSBS2s1Hhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:44.874 [XNIO-1 task-1] K1EmvMZBTJWztGCBJpglMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.874 [XNIO-1 task-1] K1EmvMZBTJWztGCBJpglMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.874 [XNIO-1 task-1] K1EmvMZBTJWztGCBJpglMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.875 [XNIO-1 task-1] K1EmvMZBTJWztGCBJpglMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.875 [XNIO-1 task-1] K1EmvMZBTJWztGCBJpglMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.879 [XNIO-1 task-1] DQiEgZ8bSCy2VV0wEV--Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.879 [XNIO-1 task-1] DQiEgZ8bSCy2VV0wEV--Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.879 [XNIO-1 task-1] DQiEgZ8bSCy2VV0wEV--Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.879 [XNIO-1 task-1] DQiEgZ8bSCy2VV0wEV--Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.879 [XNIO-1 task-1] DQiEgZ8bSCy2VV0wEV--Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:44.880 [XNIO-1 task-1] DQiEgZ8bSCy2VV0wEV--Xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:44.882 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a114447c +00:00:44.886 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:297963b4 +00:00:44.893 [XNIO-1 task-1] R-UW2tMkTVuAFqoWZGn65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.893 [XNIO-1 task-1] R-UW2tMkTVuAFqoWZGn65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.893 [XNIO-1 task-1] R-UW2tMkTVuAFqoWZGn65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.894 [XNIO-1 task-1] R-UW2tMkTVuAFqoWZGn65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.895 [XNIO-1 task-1] R-UW2tMkTVuAFqoWZGn65A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.906 [XNIO-1 task-1] cv84cjW8RvivT3UlusUNYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.907 [XNIO-1 task-1] cv84cjW8RvivT3UlusUNYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.907 [XNIO-1 task-1] cv84cjW8RvivT3UlusUNYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.907 [XNIO-1 task-1] cv84cjW8RvivT3UlusUNYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.908 [XNIO-1 task-1] cv84cjW8RvivT3UlusUNYg DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:44.908 [XNIO-1 task-1] cv84cjW8RvivT3UlusUNYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:44.918 [XNIO-1 task-1] 7eSAscI2RduhZv_8AI627Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.918 [XNIO-1 task-1] 7eSAscI2RduhZv_8AI627Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.919 [XNIO-1 task-1] 7eSAscI2RduhZv_8AI627Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.919 [XNIO-1 task-1] 7eSAscI2RduhZv_8AI627Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.924 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bee8b466-9216-4c9f-92c0-7b1e88892876 +00:00:44.928 [XNIO-1 task-1] WglWCqRHQ3iJtALdiSuI2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.928 [XNIO-1 task-1] WglWCqRHQ3iJtALdiSuI2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.928 [XNIO-1 task-1] WglWCqRHQ3iJtALdiSuI2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.929 [XNIO-1 task-1] WglWCqRHQ3iJtALdiSuI2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.929 [XNIO-1 task-1] WglWCqRHQ3iJtALdiSuI2A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.939 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:297963b4 +00:00:44.957 [XNIO-1 task-1] wT9-4U9nTzG49jWMQcuq4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.957 [XNIO-1 task-1] wT9-4U9nTzG49jWMQcuq4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.957 [XNIO-1 task-1] wT9-4U9nTzG49jWMQcuq4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:44.957 [XNIO-1 task-1] wT9-4U9nTzG49jWMQcuq4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.958 [XNIO-1 task-1] wT9-4U9nTzG49jWMQcuq4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.961 [XNIO-1 task-1] w9db92KqS2eNguU04pT0WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.961 [XNIO-1 task-1] w9db92KqS2eNguU04pT0WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.962 [XNIO-1 task-1] w9db92KqS2eNguU04pT0WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:44.964 [XNIO-1 task-1] w9db92KqS2eNguU04pT0WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:44.965 [XNIO-1 task-1] w9db92KqS2eNguU04pT0WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:44.965 [XNIO-1 task-1] w9db92KqS2eNguU04pT0WQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:44.969 [XNIO-1 task-1] WSksjOauRXeqxyYzFfww6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.969 [XNIO-1 task-1] WSksjOauRXeqxyYzFfww6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.969 [XNIO-1 task-1] WSksjOauRXeqxyYzFfww6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:44.970 [XNIO-1 task-1] WSksjOauRXeqxyYzFfww6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.978 [XNIO-1 task-1] q6xON4wwQRGbGPjdE-Vcog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.978 [XNIO-1 task-1] q6xON4wwQRGbGPjdE-Vcog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.978 [XNIO-1 task-1] q6xON4wwQRGbGPjdE-Vcog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.981 [XNIO-1 task-1] q6xON4wwQRGbGPjdE-Vcog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.981 [XNIO-1 task-1] q6xON4wwQRGbGPjdE-Vcog DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:44.988 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9a886a79-894e-4b18-a956-05801407b16a +00:00:44.992 [XNIO-1 task-1] NGoczCHnQBySDsiax4eEXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.993 [XNIO-1 task-1] NGoczCHnQBySDsiax4eEXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:44.993 [XNIO-1 task-1] NGoczCHnQBySDsiax4eEXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:44.993 [XNIO-1 task-1] NGoczCHnQBySDsiax4eEXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.994 [XNIO-1 task-1] NGoczCHnQBySDsiax4eEXg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:45.004 [XNIO-1 task-1] Ot1L_oGBSOmnlN9Ke49vdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.004 [XNIO-1 task-1] Ot1L_oGBSOmnlN9Ke49vdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.005 [XNIO-1 task-1] Ot1L_oGBSOmnlN9Ke49vdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.005 [XNIO-1 task-1] Ot1L_oGBSOmnlN9Ke49vdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.005 [XNIO-1 task-1] Ot1L_oGBSOmnlN9Ke49vdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.010 [XNIO-1 task-1] rTmGMAd_SaC12hSFFeYopg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.011 [XNIO-1 task-1] rTmGMAd_SaC12hSFFeYopg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.011 [XNIO-1 task-1] rTmGMAd_SaC12hSFFeYopg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.012 [XNIO-1 task-1] rTmGMAd_SaC12hSFFeYopg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.012 [XNIO-1 task-1] rTmGMAd_SaC12hSFFeYopg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:45.022 [XNIO-1 task-1] pIKIEz6CTKypLGuCrpHD9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.022 [XNIO-1 task-1] pIKIEz6CTKypLGuCrpHD9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.022 [XNIO-1 task-1] pIKIEz6CTKypLGuCrpHD9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.022 [XNIO-1 task-1] pIKIEz6CTKypLGuCrpHD9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.023 [XNIO-1 task-1] pIKIEz6CTKypLGuCrpHD9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.031 [XNIO-1 task-1] fLMUMTaoSAW4TpEBoUdjaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:45.031 [XNIO-1 task-1] fLMUMTaoSAW4TpEBoUdjaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.031 [XNIO-1 task-1] fLMUMTaoSAW4TpEBoUdjaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.032 [XNIO-1 task-1] fLMUMTaoSAW4TpEBoUdjaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976, base path is set to: null +00:00:45.032 [XNIO-1 task-1] fLMUMTaoSAW4TpEBoUdjaA DEBUG com.networknt.schema.TypeValidator debug - validate( "28703ac0-b29f-43c3-bb47-d64126e5b976", "28703ac0-b29f-43c3-bb47-d64126e5b976", refreshToken) +00:00:45.032 [XNIO-1 task-1] fLMUMTaoSAW4TpEBoUdjaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28703ac0-b29f-43c3-bb47-d64126e5b976 is not found.","severity":"ERROR"} +00:00:45.036 [XNIO-1 task-1] WE6_IvDDTPaEW0BTXN8kaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.036 [XNIO-1 task-1] WE6_IvDDTPaEW0BTXN8kaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.036 [XNIO-1 task-1] WE6_IvDDTPaEW0BTXN8kaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.036 [XNIO-1 task-1] WE6_IvDDTPaEW0BTXN8kaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.036 [XNIO-1 task-1] WE6_IvDDTPaEW0BTXN8kaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:45.042 [XNIO-1 task-1] KEnQx61yQimjFE3qYlfqSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.042 [XNIO-1 task-1] KEnQx61yQimjFE3qYlfqSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.042 [XNIO-1 task-1] KEnQx61yQimjFE3qYlfqSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.042 [XNIO-1 task-1] KEnQx61yQimjFE3qYlfqSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.043 [XNIO-1 task-1] KEnQx61yQimjFE3qYlfqSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1ef8e74b-5db1-4093-8258-f5ec15564765", "1ef8e74b-5db1-4093-8258-f5ec15564765", refreshToken) +00:00:45.045 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:297963b4 +00:00:45.052 [XNIO-1 task-1] CzuHP-i2RD-nOwKKpSs2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.052 [XNIO-1 task-1] CzuHP-i2RD-nOwKKpSs2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.052 [XNIO-1 task-1] CzuHP-i2RD-nOwKKpSs2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.052 [XNIO-1 task-1] CzuHP-i2RD-nOwKKpSs2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.053 [XNIO-1 task-1] CzuHP-i2RD-nOwKKpSs2YA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.071 [XNIO-1 task-1] H0-cmFpARaqPsLmEusMU3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.071 [XNIO-1 task-1] H0-cmFpARaqPsLmEusMU3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.071 [XNIO-1 task-1] H0-cmFpARaqPsLmEusMU3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.072 [XNIO-1 task-1] H0-cmFpARaqPsLmEusMU3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.072 [XNIO-1 task-1] H0-cmFpARaqPsLmEusMU3Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.079 [XNIO-1 task-1] E-uH5T1-Rw2JNc870pWBnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.079 [XNIO-1 task-1] E-uH5T1-Rw2JNc870pWBnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.079 [XNIO-1 task-1] E-uH5T1-Rw2JNc870pWBnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.079 [XNIO-1 task-1] E-uH5T1-Rw2JNc870pWBnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.080 [XNIO-1 task-1] E-uH5T1-Rw2JNc870pWBnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1ef8e74b-5db1-4093-8258-f5ec15564765", "1ef8e74b-5db1-4093-8258-f5ec15564765", refreshToken) +00:00:45.080 [XNIO-1 task-1] E-uH5T1-Rw2JNc870pWBnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ef8e74b-5db1-4093-8258-f5ec15564765 is not found.","severity":"ERROR"} +00:00:45.084 [XNIO-1 task-1] fQqO11aYTCici6COkUoPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.084 [XNIO-1 task-1] fQqO11aYTCici6COkUoPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.084 [XNIO-1 task-1] fQqO11aYTCici6COkUoPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.085 [XNIO-1 task-1] fQqO11aYTCici6COkUoPFw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.101 [XNIO-1 task-1] 5087cw0BT2qwGlcCzBw6-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.101 [XNIO-1 task-1] 5087cw0BT2qwGlcCzBw6-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.101 [XNIO-1 task-1] 5087cw0BT2qwGlcCzBw6-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.102 [XNIO-1 task-1] 5087cw0BT2qwGlcCzBw6-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.102 [XNIO-1 task-1] 5087cw0BT2qwGlcCzBw6-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1ef8e74b-5db1-4093-8258-f5ec15564765", "1ef8e74b-5db1-4093-8258-f5ec15564765", refreshToken) +00:00:45.102 [XNIO-1 task-1] 5087cw0BT2qwGlcCzBw6-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ef8e74b-5db1-4093-8258-f5ec15564765 is not found.","severity":"ERROR"} +00:00:45.112 [XNIO-1 task-1] _J8WkzG_Tyer-cbJbnV6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.112 [XNIO-1 task-1] _J8WkzG_Tyer-cbJbnV6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.112 [XNIO-1 task-1] _J8WkzG_Tyer-cbJbnV6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.112 [XNIO-1 task-1] _J8WkzG_Tyer-cbJbnV6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.113 [XNIO-1 task-1] _J8WkzG_Tyer-cbJbnV6NA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.121 [XNIO-1 task-1] JstwenR0QhC2ukDHjKbDhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.121 [XNIO-1 task-1] JstwenR0QhC2ukDHjKbDhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.121 [XNIO-1 task-1] JstwenR0QhC2ukDHjKbDhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.121 [XNIO-1 task-1] JstwenR0QhC2ukDHjKbDhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ef8e74b-5db1-4093-8258-f5ec15564765, base path is set to: null +00:00:45.122 [XNIO-1 task-1] JstwenR0QhC2ukDHjKbDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1ef8e74b-5db1-4093-8258-f5ec15564765", "1ef8e74b-5db1-4093-8258-f5ec15564765", refreshToken) +00:00:45.122 [XNIO-1 task-1] JstwenR0QhC2ukDHjKbDhA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ef8e74b-5db1-4093-8258-f5ec15564765 is not found.","severity":"ERROR"} +00:00:45.130 [XNIO-1 task-1] QIoJGUyHTVWZi0TaBcNsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf2abecb-aaa9-4d72-999f-1088b6d22fac +00:00:45.130 [XNIO-1 task-1] QIoJGUyHTVWZi0TaBcNsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.130 [XNIO-1 task-1] QIoJGUyHTVWZi0TaBcNsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.131 [XNIO-1 task-1] QIoJGUyHTVWZi0TaBcNsPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf2abecb-aaa9-4d72-999f-1088b6d22fac +00:00:45.131 [XNIO-1 task-1] QIoJGUyHTVWZi0TaBcNsPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bf2abecb-aaa9-4d72-999f-1088b6d22fac +00:00:45.147 [XNIO-1 task-1] ox25_dnKRG6usf8xSUuIrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.147 [XNIO-1 task-1] ox25_dnKRG6usf8xSUuIrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.148 [XNIO-1 task-1] ox25_dnKRG6usf8xSUuIrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.148 [XNIO-1 task-1] ox25_dnKRG6usf8xSUuIrA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.158 [XNIO-1 task-1] pT1KcnahR7iothsTQRv04g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.158 [XNIO-1 task-1] pT1KcnahR7iothsTQRv04g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.158 [XNIO-1 task-1] pT1KcnahR7iothsTQRv04g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.159 [XNIO-1 task-1] pT1KcnahR7iothsTQRv04g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.159 [XNIO-1 task-1] pT1KcnahR7iothsTQRv04g DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.159 [XNIO-1 task-1] pT1KcnahR7iothsTQRv04g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.170 [XNIO-1 task-1] Di2ibyteR3WC4cyiQKZIdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.170 [XNIO-1 task-1] Di2ibyteR3WC4cyiQKZIdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.170 [XNIO-1 task-1] Di2ibyteR3WC4cyiQKZIdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.170 [XNIO-1 task-1] Di2ibyteR3WC4cyiQKZIdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.171 [XNIO-1 task-1] Di2ibyteR3WC4cyiQKZIdw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.175 [XNIO-1 task-1] kX4ohjCyTU6sibtu86MdfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.175 [XNIO-1 task-1] kX4ohjCyTU6sibtu86MdfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.175 [XNIO-1 task-1] kX4ohjCyTU6sibtu86MdfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.176 [XNIO-1 task-1] kX4ohjCyTU6sibtu86MdfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.176 [XNIO-1 task-1] kX4ohjCyTU6sibtu86MdfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.176 [XNIO-1 task-1] kX4ohjCyTU6sibtu86MdfQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.186 [XNIO-1 task-1] mFmsQUeCTCKtFHHDrJVFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.186 [XNIO-1 task-1] mFmsQUeCTCKtFHHDrJVFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.186 [XNIO-1 task-1] mFmsQUeCTCKtFHHDrJVFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.186 [XNIO-1 task-1] mFmsQUeCTCKtFHHDrJVFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.187 [XNIO-1 task-1] mFmsQUeCTCKtFHHDrJVFnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.197 [XNIO-1 task-1] M2dOOM48SUyjbav7ZN_W4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.197 [XNIO-1 task-1] M2dOOM48SUyjbav7ZN_W4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.197 [XNIO-1 task-1] M2dOOM48SUyjbav7ZN_W4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.198 [XNIO-1 task-1] M2dOOM48SUyjbav7ZN_W4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.198 [XNIO-1 task-1] M2dOOM48SUyjbav7ZN_W4w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:45.210 [XNIO-1 task-1] AEwC6fHwSe6c3kdyo3bz8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.211 [XNIO-1 task-1] AEwC6fHwSe6c3kdyo3bz8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.211 [XNIO-1 task-1] AEwC6fHwSe6c3kdyo3bz8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.211 [XNIO-1 task-1] AEwC6fHwSe6c3kdyo3bz8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.212 [XNIO-1 task-1] AEwC6fHwSe6c3kdyo3bz8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.217 [XNIO-1 task-1] zfsMikqaRCOnGObNv_DRcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.217 [XNIO-1 task-1] zfsMikqaRCOnGObNv_DRcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.217 [XNIO-1 task-1] zfsMikqaRCOnGObNv_DRcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.218 [XNIO-1 task-1] zfsMikqaRCOnGObNv_DRcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.219 [XNIO-1 task-1] zfsMikqaRCOnGObNv_DRcw DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cfcf5e-8542-4021-abc3-4902f85754ac", "f4cfcf5e-8542-4021-abc3-4902f85754ac", refreshToken) +00:00:45.230 [XNIO-1 task-1] stSWO_-5Roq8j1kVH0ChpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.231 [XNIO-1 task-1] stSWO_-5Roq8j1kVH0ChpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.231 [XNIO-1 task-1] stSWO_-5Roq8j1kVH0ChpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.232 [XNIO-1 task-1] stSWO_-5Roq8j1kVH0ChpA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.232 [XNIO-1 task-1] stSWO_-5Roq8j1kVH0ChpA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:45.242 [XNIO-1 task-1] Fi2g3aB-RO-9LrZWrm8ilg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.242 [XNIO-1 task-1] Fi2g3aB-RO-9LrZWrm8ilg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.242 [XNIO-1 task-1] Fi2g3aB-RO-9LrZWrm8ilg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.243 [XNIO-1 task-1] Fi2g3aB-RO-9LrZWrm8ilg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.243 [XNIO-1 task-1] Fi2g3aB-RO-9LrZWrm8ilg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.248 [XNIO-1 task-1] 3YfHsEPJSE-agkZ9IG5dkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.248 [XNIO-1 task-1] 3YfHsEPJSE-agkZ9IG5dkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.249 [XNIO-1 task-1] 3YfHsEPJSE-agkZ9IG5dkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.249 [XNIO-1 task-1] 3YfHsEPJSE-agkZ9IG5dkw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.255 [XNIO-1 task-1] FvGVjahdStuolqXmoAMYTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f24c6b5e-e8ba-4bfd-962c-c0cf1ffcd3d3, base path is set to: null +00:00:45.256 [XNIO-1 task-1] FvGVjahdStuolqXmoAMYTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.256 [XNIO-1 task-1] FvGVjahdStuolqXmoAMYTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.256 [XNIO-1 task-1] FvGVjahdStuolqXmoAMYTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f24c6b5e-e8ba-4bfd-962c-c0cf1ffcd3d3, base path is set to: null +00:00:45.256 [XNIO-1 task-1] FvGVjahdStuolqXmoAMYTA DEBUG com.networknt.schema.TypeValidator debug - validate( "f24c6b5e-e8ba-4bfd-962c-c0cf1ffcd3d3", "f24c6b5e-e8ba-4bfd-962c-c0cf1ffcd3d3", refreshToken) +00:00:45.263 [XNIO-1 task-1] FvGVjahdStuolqXmoAMYTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f24c6b5e-e8ba-4bfd-962c-c0cf1ffcd3d3 is not found.","severity":"ERROR"} +00:00:45.268 [XNIO-1 task-1] Om4UHXLMQeW20VA-ofjuWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.268 [XNIO-1 task-1] Om4UHXLMQeW20VA-ofjuWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.268 [XNIO-1 task-1] Om4UHXLMQeW20VA-ofjuWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.268 [XNIO-1 task-1] Om4UHXLMQeW20VA-ofjuWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.269 [XNIO-1 task-1] Om4UHXLMQeW20VA-ofjuWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.285 [XNIO-1 task-1] X5EV09nGRwyKMLagl_7kCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/963421fb-2274-4506-9f81-659bcba1a6b4 +00:00:45.285 [XNIO-1 task-1] X5EV09nGRwyKMLagl_7kCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.285 [XNIO-1 task-1] X5EV09nGRwyKMLagl_7kCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.285 [XNIO-1 task-1] X5EV09nGRwyKMLagl_7kCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/963421fb-2274-4506-9f81-659bcba1a6b4 +00:00:45.286 [XNIO-1 task-1] X5EV09nGRwyKMLagl_7kCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 963421fb-2274-4506-9f81-659bcba1a6b4 +00:00:45.292 [XNIO-1 task-1] SpTBkr8FTryzDZFsBfn74Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.293 [XNIO-1 task-1] SpTBkr8FTryzDZFsBfn74Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.293 [XNIO-1 task-1] SpTBkr8FTryzDZFsBfn74Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.293 [XNIO-1 task-1] SpTBkr8FTryzDZFsBfn74Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.293 [XNIO-1 task-1] SpTBkr8FTryzDZFsBfn74Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.294 [XNIO-1 task-1] SpTBkr8FTryzDZFsBfn74Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.299 [XNIO-1 task-1] LRjzShTLSuyZ78aQJE-v1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.302 [XNIO-1 task-1] LRjzShTLSuyZ78aQJE-v1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.302 [XNIO-1 task-1] LRjzShTLSuyZ78aQJE-v1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.303 [XNIO-1 task-1] LRjzShTLSuyZ78aQJE-v1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.305 [XNIO-1 task-1] LRjzShTLSuyZ78aQJE-v1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:45.317 [XNIO-1 task-1] anSzN7q5S9GW1u3BaK_5Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5, base path is set to: null +00:00:45.317 [XNIO-1 task-1] anSzN7q5S9GW1u3BaK_5Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.317 [XNIO-1 task-1] anSzN7q5S9GW1u3BaK_5Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.318 [XNIO-1 task-1] anSzN7q5S9GW1u3BaK_5Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5, base path is set to: null +00:00:45.318 [XNIO-1 task-1] anSzN7q5S9GW1u3BaK_5Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5", "c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5", refreshToken) +00:00:45.358 [XNIO-1 task-1] yQGVoun_S06yy7w8XGe7PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.359 [XNIO-1 task-1] yQGVoun_S06yy7w8XGe7PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.359 [XNIO-1 task-1] yQGVoun_S06yy7w8XGe7PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.359 [XNIO-1 task-1] yQGVoun_S06yy7w8XGe7PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.359 [XNIO-1 task-1] yQGVoun_S06yy7w8XGe7PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.360 [XNIO-1 task-1] yQGVoun_S06yy7w8XGe7PQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.366 [XNIO-1 task-1] 5dAZy_X2QCqN7Fyl0tLxoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.366 [XNIO-1 task-1] 5dAZy_X2QCqN7Fyl0tLxoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.366 [XNIO-1 task-1] 5dAZy_X2QCqN7Fyl0tLxoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.366 [XNIO-1 task-1] 5dAZy_X2QCqN7Fyl0tLxoA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.397 [XNIO-1 task-1] zjYATDT6ROC2WN58PnQJ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5, base path is set to: null +00:00:45.397 [XNIO-1 task-1] zjYATDT6ROC2WN58PnQJ8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.397 [XNIO-1 task-1] zjYATDT6ROC2WN58PnQJ8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.397 [XNIO-1 task-1] zjYATDT6ROC2WN58PnQJ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5, base path is set to: null +00:00:45.398 [XNIO-1 task-1] zjYATDT6ROC2WN58PnQJ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5", "c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5", refreshToken) +00:00:45.413 [XNIO-1 task-1] zjYATDT6ROC2WN58PnQJ8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 is not found.","severity":"ERROR"} +00:00:45.416 [XNIO-1 task-1] bpQZX9fKSa2LB2xpxBMQ2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f8b2d53d-15f9-4f29-b331-fa2b3c88c89b +00:00:45.416 [XNIO-1 task-1] bpQZX9fKSa2LB2xpxBMQ2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.418 [XNIO-1 task-1] bpQZX9fKSa2LB2xpxBMQ2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.419 [XNIO-1 task-1] bpQZX9fKSa2LB2xpxBMQ2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f8b2d53d-15f9-4f29-b331-fa2b3c88c89b +00:00:45.419 [XNIO-1 task-1] bpQZX9fKSa2LB2xpxBMQ2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f8b2d53d-15f9-4f29-b331-fa2b3c88c89b +00:00:45.446 [XNIO-1 task-1] gm-_Xh4nRzaR0kqPad4O7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.446 [XNIO-1 task-1] gm-_Xh4nRzaR0kqPad4O7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.446 [XNIO-1 task-1] gm-_Xh4nRzaR0kqPad4O7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.447 [XNIO-1 task-1] gm-_Xh4nRzaR0kqPad4O7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.447 [XNIO-1 task-1] gm-_Xh4nRzaR0kqPad4O7A DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.448 [XNIO-1 task-1] gm-_Xh4nRzaR0kqPad4O7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.455 [XNIO-1 task-1] muTVwcWsS0628XTc5p7i_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.455 [XNIO-1 task-1] muTVwcWsS0628XTc5p7i_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.456 [XNIO-1 task-1] muTVwcWsS0628XTc5p7i_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.456 [XNIO-1 task-1] muTVwcWsS0628XTc5p7i_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.518 [XNIO-1 task-1] CWSaBY8qRrWAMk7UkFa8Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5, base path is set to: null +00:00:45.518 [XNIO-1 task-1] CWSaBY8qRrWAMk7UkFa8Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.518 [XNIO-1 task-1] CWSaBY8qRrWAMk7UkFa8Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.519 [XNIO-1 task-1] CWSaBY8qRrWAMk7UkFa8Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5, base path is set to: null +00:00:45.519 [XNIO-1 task-1] CWSaBY8qRrWAMk7UkFa8Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5", "c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5", refreshToken) +00:00:45.519 [XNIO-1 task-1] CWSaBY8qRrWAMk7UkFa8Uw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 is not found.","severity":"ERROR"} +00:00:45.556 [XNIO-1 task-1] 4c9YcUk_SValXq0aPIqFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.556 [XNIO-1 task-1] 4c9YcUk_SValXq0aPIqFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.556 [XNIO-1 task-1] 4c9YcUk_SValXq0aPIqFeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.557 [XNIO-1 task-1] 4c9YcUk_SValXq0aPIqFeg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.597 [XNIO-1 task-1] s5ugiRAvTLGO_sGgPjZ6PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c81d6941-2a69-48c6-b5fa-9430642dceac, base path is set to: null +00:00:45.598 [XNIO-1 task-1] s5ugiRAvTLGO_sGgPjZ6PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.598 [XNIO-1 task-1] s5ugiRAvTLGO_sGgPjZ6PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.598 [XNIO-1 task-1] s5ugiRAvTLGO_sGgPjZ6PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c81d6941-2a69-48c6-b5fa-9430642dceac, base path is set to: null +00:00:45.598 [XNIO-1 task-1] s5ugiRAvTLGO_sGgPjZ6PA DEBUG com.networknt.schema.TypeValidator debug - validate( "c81d6941-2a69-48c6-b5fa-9430642dceac", "c81d6941-2a69-48c6-b5fa-9430642dceac", refreshToken) +00:00:45.605 [XNIO-1 task-1] s5ugiRAvTLGO_sGgPjZ6PA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c81d6941-2a69-48c6-b5fa-9430642dceac is not found.","severity":"ERROR"} +00:00:45.614 [XNIO-1 task-1] txiXrsgaRDOjZ24MBLVwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.614 [XNIO-1 task-1] txiXrsgaRDOjZ24MBLVwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.614 [XNIO-1 task-1] txiXrsgaRDOjZ24MBLVwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.615 [XNIO-1 task-1] txiXrsgaRDOjZ24MBLVwbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.629 [XNIO-1 task-1] 7VfzzUBuRO-Z4XL565X71A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.629 [XNIO-1 task-1] 7VfzzUBuRO-Z4XL565X71A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.630 [XNIO-1 task-1] 7VfzzUBuRO-Z4XL565X71A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.631 [XNIO-1 task-1] 7VfzzUBuRO-Z4XL565X71A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.631 [XNIO-1 task-1] 7VfzzUBuRO-Z4XL565X71A DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cfcf5e-8542-4021-abc3-4902f85754ac", "f4cfcf5e-8542-4021-abc3-4902f85754ac", refreshToken) +00:00:45.637 [XNIO-1 task-1] 7VfzzUBuRO-Z4XL565X71A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f4cfcf5e-8542-4021-abc3-4902f85754ac is not found.","severity":"ERROR"} +00:00:45.643 [XNIO-1 task-1] d5CpS3UcQlyByE8PV8E8xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.643 [XNIO-1 task-1] d5CpS3UcQlyByE8PV8E8xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.643 [XNIO-1 task-1] d5CpS3UcQlyByE8PV8E8xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.643 [XNIO-1 task-1] d5CpS3UcQlyByE8PV8E8xQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.659 [XNIO-1 task-1] HQDFaO1CRTi1Dq8sWCRB2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.660 [XNIO-1 task-1] HQDFaO1CRTi1Dq8sWCRB2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.660 [XNIO-1 task-1] HQDFaO1CRTi1Dq8sWCRB2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.660 [XNIO-1 task-1] HQDFaO1CRTi1Dq8sWCRB2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.661 [XNIO-1 task-1] HQDFaO1CRTi1Dq8sWCRB2w DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cfcf5e-8542-4021-abc3-4902f85754ac", "f4cfcf5e-8542-4021-abc3-4902f85754ac", refreshToken) +00:00:45.661 [XNIO-1 task-1] HQDFaO1CRTi1Dq8sWCRB2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f4cfcf5e-8542-4021-abc3-4902f85754ac is not found.","severity":"ERROR"} +00:00:45.664 [XNIO-1 task-1] 4x4vawKVTNC4sUIkP4WGGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.665 [XNIO-1 task-1] 4x4vawKVTNC4sUIkP4WGGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.665 [XNIO-1 task-1] 4x4vawKVTNC4sUIkP4WGGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.665 [XNIO-1 task-1] 4x4vawKVTNC4sUIkP4WGGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.665 [XNIO-1 task-1] 4x4vawKVTNC4sUIkP4WGGA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.672 [XNIO-1 task-1] gS1M4R_GTWGaMkIlVVMB8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.672 [XNIO-1 task-1] gS1M4R_GTWGaMkIlVVMB8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.672 [XNIO-1 task-1] gS1M4R_GTWGaMkIlVVMB8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.672 [XNIO-1 task-1] gS1M4R_GTWGaMkIlVVMB8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.673 [XNIO-1 task-1] gS1M4R_GTWGaMkIlVVMB8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cfcf5e-8542-4021-abc3-4902f85754ac", "f4cfcf5e-8542-4021-abc3-4902f85754ac", refreshToken) +00:00:45.673 [XNIO-1 task-1] gS1M4R_GTWGaMkIlVVMB8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f4cfcf5e-8542-4021-abc3-4902f85754ac is not found.","severity":"ERROR"} +00:00:45.678 [XNIO-1 task-1] D869EaVjQRuvEnNXCht9EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.678 [XNIO-1 task-1] D869EaVjQRuvEnNXCht9EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.679 [XNIO-1 task-1] D869EaVjQRuvEnNXCht9EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.679 [XNIO-1 task-1] D869EaVjQRuvEnNXCht9EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.679 [XNIO-1 task-1] D869EaVjQRuvEnNXCht9EQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.687 [XNIO-1 task-1] 25G9HspITBCjqXaWD7im4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.687 [XNIO-1 task-1] 25G9HspITBCjqXaWD7im4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.687 [XNIO-1 task-1] 25G9HspITBCjqXaWD7im4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.687 [XNIO-1 task-1] 25G9HspITBCjqXaWD7im4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.687 [XNIO-1 task-1] 25G9HspITBCjqXaWD7im4w DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cfcf5e-8542-4021-abc3-4902f85754ac", "f4cfcf5e-8542-4021-abc3-4902f85754ac", refreshToken) +00:00:45.688 [XNIO-1 task-1] 25G9HspITBCjqXaWD7im4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f4cfcf5e-8542-4021-abc3-4902f85754ac is not found.","severity":"ERROR"} +00:00:45.691 [XNIO-1 task-1] 7AH_8Ba7RpSwg-De6YrFqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.691 [XNIO-1 task-1] 7AH_8Ba7RpSwg-De6YrFqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.692 [XNIO-1 task-1] 7AH_8Ba7RpSwg-De6YrFqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.693 [XNIO-1 task-1] 7AH_8Ba7RpSwg-De6YrFqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.693 [XNIO-1 task-1] 7AH_8Ba7RpSwg-De6YrFqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.698 [XNIO-1 task-1] VdRc2uJVS_aDlPo9bRQasA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.698 [XNIO-1 task-1] VdRc2uJVS_aDlPo9bRQasA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.698 [XNIO-1 task-1] VdRc2uJVS_aDlPo9bRQasA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.698 [XNIO-1 task-1] VdRc2uJVS_aDlPo9bRQasA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.699 [XNIO-1 task-1] VdRc2uJVS_aDlPo9bRQasA DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cfcf5e-8542-4021-abc3-4902f85754ac", "f4cfcf5e-8542-4021-abc3-4902f85754ac", refreshToken) +00:00:45.699 [XNIO-1 task-1] VdRc2uJVS_aDlPo9bRQasA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f4cfcf5e-8542-4021-abc3-4902f85754ac is not found.","severity":"ERROR"} +00:00:45.703 [XNIO-1 task-1] ubq10jxqTo6h-LoUqCbgcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.703 [XNIO-1 task-1] ubq10jxqTo6h-LoUqCbgcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.703 [XNIO-1 task-1] ubq10jxqTo6h-LoUqCbgcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.703 [XNIO-1 task-1] ubq10jxqTo6h-LoUqCbgcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.716 [XNIO-1 task-1] -EKP4lN3SCKXrXRQLzjdag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.720 [XNIO-1 task-1] -EKP4lN3SCKXrXRQLzjdag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.720 [XNIO-1 task-1] -EKP4lN3SCKXrXRQLzjdag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.720 [XNIO-1 task-1] -EKP4lN3SCKXrXRQLzjdag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.721 [XNIO-1 task-1] -EKP4lN3SCKXrXRQLzjdag DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:45.733 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c3e7e8c5-4c1b-42ba-9eb8-919f8c7e0c3b +00:00:45.735 [XNIO-1 task-1] wj6R2elNT8CXnuTcXnPTRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.735 [XNIO-1 task-1] wj6R2elNT8CXnuTcXnPTRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.736 [XNIO-1 task-1] wj6R2elNT8CXnuTcXnPTRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.736 [XNIO-1 task-1] wj6R2elNT8CXnuTcXnPTRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.739 [XNIO-1 task-1] wj6R2elNT8CXnuTcXnPTRg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:45.741 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2a8bd16e +00:00:45.755 [XNIO-1 task-1] 8kJGBoRrSlGtlNrRVz33wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.755 [XNIO-1 task-1] 8kJGBoRrSlGtlNrRVz33wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.755 [XNIO-1 task-1] 8kJGBoRrSlGtlNrRVz33wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.756 [XNIO-1 task-1] 8kJGBoRrSlGtlNrRVz33wA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.768 [XNIO-1 task-1] cIco6qW3TrCROjXf7SHYjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.768 [XNIO-1 task-1] cIco6qW3TrCROjXf7SHYjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.768 [XNIO-1 task-1] cIco6qW3TrCROjXf7SHYjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.768 [XNIO-1 task-1] cIco6qW3TrCROjXf7SHYjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac, base path is set to: null +00:00:45.769 [XNIO-1 task-1] cIco6qW3TrCROjXf7SHYjA DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cfcf5e-8542-4021-abc3-4902f85754ac", "f4cfcf5e-8542-4021-abc3-4902f85754ac", refreshToken) +00:00:45.769 [XNIO-1 task-1] cIco6qW3TrCROjXf7SHYjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f4cfcf5e-8542-4021-abc3-4902f85754ac is not found.","severity":"ERROR"} +00:00:45.774 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8c077d0f +00:00:45.775 [XNIO-1 task-1] Y46Q6uFIQ52Y75fk4I8AUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.775 [XNIO-1 task-1] Y46Q6uFIQ52Y75fk4I8AUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.775 [XNIO-1 task-1] Y46Q6uFIQ52Y75fk4I8AUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.776 [XNIO-1 task-1] Y46Q6uFIQ52Y75fk4I8AUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.779 [XNIO-1 task-1] Y46Q6uFIQ52Y75fk4I8AUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.784 [XNIO-1 task-1] T3hKkR5qQG-dyaVc92TUaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.785 [XNIO-1 task-1] T3hKkR5qQG-dyaVc92TUaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.785 [XNIO-1 task-1] T3hKkR5qQG-dyaVc92TUaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.785 [XNIO-1 task-1] T3hKkR5qQG-dyaVc92TUaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.785 [XNIO-1 task-1] T3hKkR5qQG-dyaVc92TUaw DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.786 [XNIO-1 task-1] T3hKkR5qQG-dyaVc92TUaw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.800 [XNIO-1 task-1] tepEZZnTRKi4teFzRs-3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.800 [XNIO-1 task-1] tepEZZnTRKi4teFzRs-3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.800 [XNIO-1 task-1] tepEZZnTRKi4teFzRs-3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.800 [XNIO-1 task-1] tepEZZnTRKi4teFzRs-3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.801 [XNIO-1 task-1] tepEZZnTRKi4teFzRs-3gg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.805 [XNIO-1 task-1] IqU-jDgpSF61DPVm1vqAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.806 [XNIO-1 task-1] IqU-jDgpSF61DPVm1vqAOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.806 [XNIO-1 task-1] IqU-jDgpSF61DPVm1vqAOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.806 [XNIO-1 task-1] IqU-jDgpSF61DPVm1vqAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.807 [XNIO-1 task-1] IqU-jDgpSF61DPVm1vqAOA DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.807 [XNIO-1 task-1] IqU-jDgpSF61DPVm1vqAOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.813 [XNIO-1 task-1] 8yKbFJI9RLyG8SOvAQD02g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.813 [XNIO-1 task-1] 8yKbFJI9RLyG8SOvAQD02g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.813 [XNIO-1 task-1] 8yKbFJI9RLyG8SOvAQD02g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.814 [XNIO-1 task-1] 8yKbFJI9RLyG8SOvAQD02g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.814 [XNIO-1 task-1] 8yKbFJI9RLyG8SOvAQD02g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.820 [XNIO-1 task-1] _ifY5imITfijzpZaelQ9yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.820 [XNIO-1 task-1] _ifY5imITfijzpZaelQ9yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.820 [XNIO-1 task-1] _ifY5imITfijzpZaelQ9yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.820 [XNIO-1 task-1] _ifY5imITfijzpZaelQ9yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.820 [XNIO-1 task-1] _ifY5imITfijzpZaelQ9yg DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.821 [XNIO-1 task-1] _ifY5imITfijzpZaelQ9yg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.832 [XNIO-1 task-1] _wtR1z2xThe-IQPl3Fb3kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.832 [XNIO-1 task-1] _wtR1z2xThe-IQPl3Fb3kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.832 [XNIO-1 task-1] _wtR1z2xThe-IQPl3Fb3kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.832 [XNIO-1 task-1] _wtR1z2xThe-IQPl3Fb3kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.833 [XNIO-1 task-1] _wtR1z2xThe-IQPl3Fb3kA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.838 [XNIO-1 task-1] 9ya0m33pSVuSFgU3qbxA0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.838 [XNIO-1 task-1] 9ya0m33pSVuSFgU3qbxA0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.839 [XNIO-1 task-1] 9ya0m33pSVuSFgU3qbxA0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:45.839 [XNIO-1 task-1] 9ya0m33pSVuSFgU3qbxA0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.839 [XNIO-1 task-1] 9ya0m33pSVuSFgU3qbxA0w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:45.847 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4b7d25b4 +00:00:45.848 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b7d25b4 +00:00:45.848 [XNIO-1 task-1] ZSGUrfD4TAe5YjJ4RI9bgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.848 [XNIO-1 task-1] ZSGUrfD4TAe5YjJ4RI9bgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.848 [XNIO-1 task-1] ZSGUrfD4TAe5YjJ4RI9bgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.849 [XNIO-1 task-1] ZSGUrfD4TAe5YjJ4RI9bgg DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.850 [XNIO-1 task-1] ZSGUrfD4TAe5YjJ4RI9bgg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.858 [XNIO-1 task-1] VNm8FmC4S--MuMMvuwj2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.858 [XNIO-1 task-1] VNm8FmC4S--MuMMvuwj2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.862 [XNIO-1 task-1] VNm8FmC4S--MuMMvuwj2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.862 [XNIO-1 task-1] VNm8FmC4S--MuMMvuwj2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.862 [XNIO-1 task-1] VNm8FmC4S--MuMMvuwj2Aw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c3ef9e4f-7c84-44c1-8bcf-d2bfc62303f5 +00:00:45.871 [XNIO-1 task-1] j7WkTEfSQvOKbi5cl723gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.871 [XNIO-1 task-1] j7WkTEfSQvOKbi5cl723gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.871 [XNIO-1 task-1] j7WkTEfSQvOKbi5cl723gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.871 [XNIO-1 task-1] j7WkTEfSQvOKbi5cl723gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:45.872 [XNIO-1 task-1] j7WkTEfSQvOKbi5cl723gg DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:45.872 [XNIO-1 task-1] j7WkTEfSQvOKbi5cl723gg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:45.883 [XNIO-1 task-1] zWqs8lERS_WOk8gb2EpgJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:45.883 [XNIO-1 task-1] zWqs8lERS_WOk8gb2EpgJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.883 [XNIO-1 task-1] zWqs8lERS_WOk8gb2EpgJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:45.884 [XNIO-1 task-1] zWqs8lERS_WOk8gb2EpgJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:45.884 [XNIO-1 task-1] zWqs8lERS_WOk8gb2EpgJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:45.905 [XNIO-1 task-1] Iek7iUB9SEiuL6OsGtbq5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.910 [XNIO-1 task-1] Iek7iUB9SEiuL6OsGtbq5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.910 [XNIO-1 task-1] Iek7iUB9SEiuL6OsGtbq5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.910 [XNIO-1 task-1] Iek7iUB9SEiuL6OsGtbq5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.934 [XNIO-1 task-1] qdSHYKuORU2W620IOzq_pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:45.934 [XNIO-1 task-1] qdSHYKuORU2W620IOzq_pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.935 [XNIO-1 task-1] qdSHYKuORU2W620IOzq_pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.935 [XNIO-1 task-1] qdSHYKuORU2W620IOzq_pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:45.935 [XNIO-1 task-1] qdSHYKuORU2W620IOzq_pA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:45.943 [XNIO-1 task-1] qdSHYKuORU2W620IOzq_pA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:45.968 [XNIO-1 task-1] BR1ao95WQBumurfVjjC-jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.968 [XNIO-1 task-1] BR1ao95WQBumurfVjjC-jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.968 [XNIO-1 task-1] BR1ao95WQBumurfVjjC-jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:45.968 [XNIO-1 task-1] BR1ao95WQBumurfVjjC-jA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.995 [XNIO-1 task-1] 7GQ_OgagS3Ggz-yLcAYq0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:45.996 [XNIO-1 task-1] 7GQ_OgagS3Ggz-yLcAYq0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:45.996 [XNIO-1 task-1] 7GQ_OgagS3Ggz-yLcAYq0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:45.996 [XNIO-1 task-1] 7GQ_OgagS3Ggz-yLcAYq0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:45.997 [XNIO-1 task-1] 7GQ_OgagS3Ggz-yLcAYq0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.000 [XNIO-1 task-1] 7GQ_OgagS3Ggz-yLcAYq0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.010 [XNIO-1 task-1] dpYFz9aMSVib75XRnGXNug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.010 [XNIO-1 task-1] dpYFz9aMSVib75XRnGXNug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.010 [XNIO-1 task-1] dpYFz9aMSVib75XRnGXNug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.010 [XNIO-1 task-1] dpYFz9aMSVib75XRnGXNug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.012 [XNIO-1 task-1] dpYFz9aMSVib75XRnGXNug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.017 [XNIO-1 task-1] XoxZyOheQKu9YWjgPQlZmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.017 [XNIO-1 task-1] XoxZyOheQKu9YWjgPQlZmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.017 [XNIO-1 task-1] XoxZyOheQKu9YWjgPQlZmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.018 [XNIO-1 task-1] XoxZyOheQKu9YWjgPQlZmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.018 [XNIO-1 task-1] XoxZyOheQKu9YWjgPQlZmA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.018 [XNIO-1 task-1] XoxZyOheQKu9YWjgPQlZmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.024 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1e5c2f9b-4997-475d-9ca0-bd10acca9275 +00:00:46.025 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dcbaf4f2-0334-4147-8d31-d05714ed92e8 +00:00:46.031 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1e5c2f9b-4997-475d-9ca0-bd10acca9275 +00:00:46.034 [XNIO-1 task-1] 0ayxDJQYTJGe79niPu85Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.034 [XNIO-1 task-1] 0ayxDJQYTJGe79niPu85Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.034 [XNIO-1 task-1] 0ayxDJQYTJGe79niPu85Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.035 [XNIO-1 task-1] 0ayxDJQYTJGe79niPu85Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.043 [XNIO-1 task-1] subo0qinTfmUjCmEqBufvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.043 [XNIO-1 task-1] subo0qinTfmUjCmEqBufvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.043 [XNIO-1 task-1] subo0qinTfmUjCmEqBufvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.043 [XNIO-1 task-1] subo0qinTfmUjCmEqBufvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.043 [XNIO-1 task-1] subo0qinTfmUjCmEqBufvg DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:46.044 [XNIO-1 task-1] subo0qinTfmUjCmEqBufvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:46.050 [XNIO-1 task-1] 7kXcFnyfQAWoKwdM49ir6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.050 [XNIO-1 task-1] 7kXcFnyfQAWoKwdM49ir6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.050 [XNIO-1 task-1] 7kXcFnyfQAWoKwdM49ir6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.055 [XNIO-1 task-1] 7kXcFnyfQAWoKwdM49ir6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.055 [XNIO-1 task-1] 7kXcFnyfQAWoKwdM49ir6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.059 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:dcbaf4f2-0334-4147-8d31-d05714ed92e8 +00:00:46.060 [XNIO-1 task-1] -EPR6ikwT6KMNgnVeVxzzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.061 [XNIO-1 task-1] -EPR6ikwT6KMNgnVeVxzzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.061 [XNIO-1 task-1] -EPR6ikwT6KMNgnVeVxzzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.064 [XNIO-1 task-1] -EPR6ikwT6KMNgnVeVxzzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.064 [XNIO-1 task-1] -EPR6ikwT6KMNgnVeVxzzQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.073 [XNIO-1 task-1] T3hmilxtT-emDU68B6F9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.073 [XNIO-1 task-1] T3hmilxtT-emDU68B6F9tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.073 [XNIO-1 task-1] T3hmilxtT-emDU68B6F9tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.074 [XNIO-1 task-1] T3hmilxtT-emDU68B6F9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.074 [XNIO-1 task-1] T3hmilxtT-emDU68B6F9tA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.074 [XNIO-1 task-1] T3hmilxtT-emDU68B6F9tA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.078 [XNIO-1 task-1] 8VY8IX2FRYGu2olzzjlS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.079 [XNIO-1 task-1] 8VY8IX2FRYGu2olzzjlS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.079 [XNIO-1 task-1] 8VY8IX2FRYGu2olzzjlS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.079 [XNIO-1 task-1] 8VY8IX2FRYGu2olzzjlS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.079 [XNIO-1 task-1] 8VY8IX2FRYGu2olzzjlS5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.082 [XNIO-1 task-1] E2P_cilMSWGrbOT0g-zkmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.083 [XNIO-1 task-1] E2P_cilMSWGrbOT0g-zkmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.083 [XNIO-1 task-1] E2P_cilMSWGrbOT0g-zkmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.083 [XNIO-1 task-1] E2P_cilMSWGrbOT0g-zkmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.083 [XNIO-1 task-1] E2P_cilMSWGrbOT0g-zkmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.084 [XNIO-1 task-1] E2P_cilMSWGrbOT0g-zkmQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.088 [XNIO-1 task-1] 9yTUczk9SSa_8K2GdXjhig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcbaf4f2-0334-4147-8d31-d05714ed92e8 +00:00:46.088 [XNIO-1 task-1] 9yTUczk9SSa_8K2GdXjhig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.088 [XNIO-1 task-1] 9yTUczk9SSa_8K2GdXjhig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.088 [XNIO-1 task-1] 9yTUczk9SSa_8K2GdXjhig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dcbaf4f2-0334-4147-8d31-d05714ed92e8 +00:00:46.089 [XNIO-1 task-1] 9yTUczk9SSa_8K2GdXjhig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dcbaf4f2-0334-4147-8d31-d05714ed92e8 +00:00:46.090 [XNIO-1 task-1] 9yTUczk9SSa_8K2GdXjhig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dcbaf4f2-0334-4147-8d31-d05714ed92e8 is not found.","severity":"ERROR"} +00:00:46.095 [XNIO-1 task-1] vSRqHarVR6KxdmymjNWArA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.095 [XNIO-1 task-1] vSRqHarVR6KxdmymjNWArA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.095 [XNIO-1 task-1] vSRqHarVR6KxdmymjNWArA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.096 [XNIO-1 task-1] vSRqHarVR6KxdmymjNWArA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.096 [XNIO-1 task-1] vSRqHarVR6KxdmymjNWArA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.102 [XNIO-1 task-1] yuzMoShLT1uPPtVsKmL2tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.103 [XNIO-1 task-1] yuzMoShLT1uPPtVsKmL2tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.103 [XNIO-1 task-1] yuzMoShLT1uPPtVsKmL2tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.103 [XNIO-1 task-1] yuzMoShLT1uPPtVsKmL2tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.103 [XNIO-1 task-1] yuzMoShLT1uPPtVsKmL2tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:46.104 [XNIO-1 task-1] yuzMoShLT1uPPtVsKmL2tQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:46.127 [XNIO-1 task-1] deFiZFGZTCu9Rx65-62M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.127 [XNIO-1 task-1] deFiZFGZTCu9Rx65-62M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.127 [XNIO-1 task-1] deFiZFGZTCu9Rx65-62M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.127 [XNIO-1 task-1] deFiZFGZTCu9Rx65-62M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.127 [XNIO-1 task-1] deFiZFGZTCu9Rx65-62M7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.135 [XNIO-1 task-1] NQHkBekoSl2voM-BY9C8WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.135 [XNIO-1 task-1] NQHkBekoSl2voM-BY9C8WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.135 [XNIO-1 task-1] NQHkBekoSl2voM-BY9C8WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.136 [XNIO-1 task-1] NQHkBekoSl2voM-BY9C8WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.136 [XNIO-1 task-1] NQHkBekoSl2voM-BY9C8WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:46.136 [XNIO-1 task-1] NQHkBekoSl2voM-BY9C8WQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:46.181 [XNIO-1 task-2] UIuK9pgmSy-RFRJiQj9mKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.181 [XNIO-1 task-2] UIuK9pgmSy-RFRJiQj9mKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.181 [XNIO-1 task-2] UIuK9pgmSy-RFRJiQj9mKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.182 [XNIO-1 task-2] UIuK9pgmSy-RFRJiQj9mKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.182 [XNIO-1 task-2] UIuK9pgmSy-RFRJiQj9mKA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.282 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9a886a79-894e-4b18-a956-05801407b16a +00:00:46.283 [XNIO-1 task-2] 0BYrqZcqSRuqUtiyyeNeeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.283 [XNIO-1 task-2] 0BYrqZcqSRuqUtiyyeNeeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.283 [XNIO-1 task-2] 0BYrqZcqSRuqUtiyyeNeeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.284 [XNIO-1 task-2] 0BYrqZcqSRuqUtiyyeNeeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.297 [XNIO-1 task-2] 1Zqmow9BR8-DGM576WJw4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.297 [XNIO-1 task-2] 1Zqmow9BR8-DGM576WJw4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.297 [XNIO-1 task-2] 1Zqmow9BR8-DGM576WJw4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.298 [XNIO-1 task-2] 1Zqmow9BR8-DGM576WJw4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.301 [XNIO-1 task-2] 1Zqmow9BR8-DGM576WJw4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.307 [XNIO-1 task-2] kd-AfqAkSem_QtvttY500g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.307 [XNIO-1 task-2] kd-AfqAkSem_QtvttY500g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.307 [XNIO-1 task-2] kd-AfqAkSem_QtvttY500g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.307 [XNIO-1 task-2] kd-AfqAkSem_QtvttY500g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.308 [XNIO-1 task-2] kd-AfqAkSem_QtvttY500g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.313 [XNIO-1 task-2] yQMbpp6JSoStI2c0v1390w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.314 [XNIO-1 task-2] yQMbpp6JSoStI2c0v1390w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.314 [XNIO-1 task-2] yQMbpp6JSoStI2c0v1390w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.314 [XNIO-1 task-2] yQMbpp6JSoStI2c0v1390w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.314 [XNIO-1 task-2] yQMbpp6JSoStI2c0v1390w DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:46.315 [XNIO-1 task-2] yQMbpp6JSoStI2c0v1390w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:46.318 [XNIO-1 task-2] NDF4LSs2RzCU0aACpttK2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.318 [XNIO-1 task-2] NDF4LSs2RzCU0aACpttK2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.318 [XNIO-1 task-2] NDF4LSs2RzCU0aACpttK2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.318 [XNIO-1 task-2] NDF4LSs2RzCU0aACpttK2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.332 [XNIO-1 task-2] 7Pymp7brS5eC38HB0-9hjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.332 [XNIO-1 task-2] 7Pymp7brS5eC38HB0-9hjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.332 [XNIO-1 task-2] 7Pymp7brS5eC38HB0-9hjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.332 [XNIO-1 task-2] 7Pymp7brS5eC38HB0-9hjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.333 [XNIO-1 task-2] 7Pymp7brS5eC38HB0-9hjg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.333 [XNIO-1 task-2] 7Pymp7brS5eC38HB0-9hjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.341 [XNIO-1 task-2] ndsTFQgRRemwxe0zT5rYRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.342 [XNIO-1 task-2] ndsTFQgRRemwxe0zT5rYRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.343 [XNIO-1 task-2] ndsTFQgRRemwxe0zT5rYRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.344 [XNIO-1 task-2] ndsTFQgRRemwxe0zT5rYRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.344 [XNIO-1 task-2] ndsTFQgRRemwxe0zT5rYRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.348 [XNIO-1 task-2] 0-rSqZN1R4eip1sQIGITXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.351 [XNIO-1 task-2] 0-rSqZN1R4eip1sQIGITXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.351 [XNIO-1 task-2] 0-rSqZN1R4eip1sQIGITXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.351 [XNIO-1 task-2] 0-rSqZN1R4eip1sQIGITXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.351 [XNIO-1 task-2] 0-rSqZN1R4eip1sQIGITXA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.352 [XNIO-1 task-2] 0-rSqZN1R4eip1sQIGITXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.357 [XNIO-1 task-2] VF1RcBxfQlSM3ANFtBOAvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29d40603-73a5-4ce4-a68f-d360c8fd1e39 +00:00:46.357 [XNIO-1 task-2] VF1RcBxfQlSM3ANFtBOAvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.357 [XNIO-1 task-2] VF1RcBxfQlSM3ANFtBOAvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.357 [XNIO-1 task-2] VF1RcBxfQlSM3ANFtBOAvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29d40603-73a5-4ce4-a68f-d360c8fd1e39 +00:00:46.357 [XNIO-1 task-2] VF1RcBxfQlSM3ANFtBOAvw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 29d40603-73a5-4ce4-a68f-d360c8fd1e39 +00:00:46.366 [XNIO-1 task-2] 8rLg-gfuSJWtKkF2YYKSNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.366 [XNIO-1 task-2] 8rLg-gfuSJWtKkF2YYKSNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.366 [XNIO-1 task-2] 8rLg-gfuSJWtKkF2YYKSNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.366 [XNIO-1 task-2] 8rLg-gfuSJWtKkF2YYKSNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c, base path is set to: null +00:00:46.367 [XNIO-1 task-2] 8rLg-gfuSJWtKkF2YYKSNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5abd1395-0939-4ad7-95bd-f8956230fc3c", "5abd1395-0939-4ad7-95bd-f8956230fc3c", refreshToken) +00:00:46.367 [XNIO-1 task-2] 8rLg-gfuSJWtKkF2YYKSNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5abd1395-0939-4ad7-95bd-f8956230fc3c is not found.","severity":"ERROR"} +00:00:46.373 [XNIO-1 task-2] 9QV-CgA-QpmVpPd6XCb-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.373 [XNIO-1 task-2] 9QV-CgA-QpmVpPd6XCb-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.373 [XNIO-1 task-2] 9QV-CgA-QpmVpPd6XCb-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.373 [XNIO-1 task-2] 9QV-CgA-QpmVpPd6XCb-KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.373 [XNIO-1 task-2] 9QV-CgA-QpmVpPd6XCb-KQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.376 [XNIO-1 task-2] _WD74y1ARzWnYXDiMG83KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29d40603-73a5-4ce4-a68f-d360c8fd1e39, base path is set to: null +00:00:46.376 [XNIO-1 task-2] _WD74y1ARzWnYXDiMG83KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.376 [XNIO-1 task-2] _WD74y1ARzWnYXDiMG83KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.376 [XNIO-1 task-2] _WD74y1ARzWnYXDiMG83KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29d40603-73a5-4ce4-a68f-d360c8fd1e39, base path is set to: null +00:00:46.377 [XNIO-1 task-2] _WD74y1ARzWnYXDiMG83KA DEBUG com.networknt.schema.TypeValidator debug - validate( "29d40603-73a5-4ce4-a68f-d360c8fd1e39", "29d40603-73a5-4ce4-a68f-d360c8fd1e39", refreshToken) +00:00:46.377 [XNIO-1 task-2] _WD74y1ARzWnYXDiMG83KA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 29d40603-73a5-4ce4-a68f-d360c8fd1e39 is not found.","severity":"ERROR"} +00:00:46.384 [XNIO-1 task-2] XgdchJnLTuCZ-eHCtroaGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.384 [XNIO-1 task-2] XgdchJnLTuCZ-eHCtroaGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.385 [XNIO-1 task-2] XgdchJnLTuCZ-eHCtroaGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.385 [XNIO-1 task-2] XgdchJnLTuCZ-eHCtroaGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.385 [XNIO-1 task-2] XgdchJnLTuCZ-eHCtroaGA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.390 [XNIO-1 task-2] Bfl6UolqS6KLiuF9_F4c4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.391 [XNIO-1 task-2] Bfl6UolqS6KLiuF9_F4c4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.391 [XNIO-1 task-2] Bfl6UolqS6KLiuF9_F4c4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.391 [XNIO-1 task-2] Bfl6UolqS6KLiuF9_F4c4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.395 [XNIO-1 task-2] Bfl6UolqS6KLiuF9_F4c4g DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.395 [XNIO-1 task-2] Bfl6UolqS6KLiuF9_F4c4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.398 [XNIO-1 task-2] tLmRUtLcTZqb4ZQL-7jphQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.398 [XNIO-1 task-2] tLmRUtLcTZqb4ZQL-7jphQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.398 [XNIO-1 task-2] tLmRUtLcTZqb4ZQL-7jphQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.399 [XNIO-1 task-2] tLmRUtLcTZqb4ZQL-7jphQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.399 [XNIO-1 task-2] tLmRUtLcTZqb4ZQL-7jphQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.406 [XNIO-1 task-2] 5BklUDddR7ijzoJii_JPyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836, base path is set to: null +00:00:46.406 [XNIO-1 task-2] 5BklUDddR7ijzoJii_JPyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.406 [XNIO-1 task-2] 5BklUDddR7ijzoJii_JPyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.407 [XNIO-1 task-2] 5BklUDddR7ijzoJii_JPyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836, base path is set to: null +00:00:46.407 [XNIO-1 task-2] 5BklUDddR7ijzoJii_JPyA DEBUG com.networknt.schema.TypeValidator debug - validate( "6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836", "6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836", refreshToken) +00:00:46.414 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:84caa2ad-381a-4648-9d86-14b14e7b07e4 +00:00:46.416 [XNIO-1 task-2] kbqIJXJAQ-2uheDE53DCnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.416 [XNIO-1 task-2] kbqIJXJAQ-2uheDE53DCnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.416 [XNIO-1 task-2] kbqIJXJAQ-2uheDE53DCnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.416 [XNIO-1 task-2] kbqIJXJAQ-2uheDE53DCnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.417 [XNIO-1 task-2] kbqIJXJAQ-2uheDE53DCnA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:46.421 [XNIO-1 task-2] WB3TQUuFSVS9-AwNmp4Kcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.421 [XNIO-1 task-2] WB3TQUuFSVS9-AwNmp4Kcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.422 [XNIO-1 task-2] WB3TQUuFSVS9-AwNmp4Kcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.422 [XNIO-1 task-2] WB3TQUuFSVS9-AwNmp4Kcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.422 [XNIO-1 task-2] WB3TQUuFSVS9-AwNmp4Kcw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.434 [XNIO-1 task-2] CRxVLsSfRuGNgowx0fMugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.434 [XNIO-1 task-2] CRxVLsSfRuGNgowx0fMugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.434 [XNIO-1 task-2] CRxVLsSfRuGNgowx0fMugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.434 [XNIO-1 task-2] CRxVLsSfRuGNgowx0fMugA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.435 [XNIO-1 task-2] CRxVLsSfRuGNgowx0fMugA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.439 [XNIO-1 task-2] fciNFqf5Q1uq3Rp0fAKjKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.439 [XNIO-1 task-2] fciNFqf5Q1uq3Rp0fAKjKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.439 [XNIO-1 task-2] fciNFqf5Q1uq3Rp0fAKjKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.440 [XNIO-1 task-2] fciNFqf5Q1uq3Rp0fAKjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.440 [XNIO-1 task-2] fciNFqf5Q1uq3Rp0fAKjKg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.447 [XNIO-1 task-2] kGpneDq1TDi-Zdj1bulOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.447 [XNIO-1 task-2] kGpneDq1TDi-Zdj1bulOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.447 [XNIO-1 task-2] kGpneDq1TDi-Zdj1bulOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.448 [XNIO-1 task-2] kGpneDq1TDi-Zdj1bulOuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.448 [XNIO-1 task-2] kGpneDq1TDi-Zdj1bulOuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.456 [XNIO-1 task-2] xH0SHCFMR52WfVIe4AfRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aa19bf33-caed-4355-bdeb-510ef0b61f14 +00:00:46.456 [XNIO-1 task-2] xH0SHCFMR52WfVIe4AfRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.456 [XNIO-1 task-2] xH0SHCFMR52WfVIe4AfRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.456 [XNIO-1 task-2] xH0SHCFMR52WfVIe4AfRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aa19bf33-caed-4355-bdeb-510ef0b61f14 +00:00:46.457 [XNIO-1 task-2] xH0SHCFMR52WfVIe4AfRzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aa19bf33-caed-4355-bdeb-510ef0b61f14 +00:00:46.471 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0ac36c72-9319-4978-8cf2-1a6d17ee0971 +00:00:46.472 [XNIO-1 task-2] 14H27saaTq6Uhlm2IPPiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.472 [XNIO-1 task-2] 14H27saaTq6Uhlm2IPPiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.472 [XNIO-1 task-2] 14H27saaTq6Uhlm2IPPiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.473 [XNIO-1 task-2] 14H27saaTq6Uhlm2IPPiEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.498 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0ac36c72-9319-4978-8cf2-1a6d17ee0971 +00:00:46.500 [XNIO-1 task-2] puZnIV4vQIOwtWc5ljO66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.500 [XNIO-1 task-2] puZnIV4vQIOwtWc5ljO66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.500 [XNIO-1 task-2] puZnIV4vQIOwtWc5ljO66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.500 [XNIO-1 task-2] puZnIV4vQIOwtWc5ljO66Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.501 [XNIO-1 task-2] puZnIV4vQIOwtWc5ljO66Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.506 [XNIO-1 task-2] 0MrUa4Z7T_uNIVfKCpseVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.506 [XNIO-1 task-2] 0MrUa4Z7T_uNIVfKCpseVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.507 [XNIO-1 task-2] 0MrUa4Z7T_uNIVfKCpseVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.507 [XNIO-1 task-2] 0MrUa4Z7T_uNIVfKCpseVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.507 [XNIO-1 task-2] 0MrUa4Z7T_uNIVfKCpseVA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.511 [XNIO-1 task-2] qXedZb49QzW-tmkV8EKFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.512 [XNIO-1 task-2] qXedZb49QzW-tmkV8EKFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.512 [XNIO-1 task-2] qXedZb49QzW-tmkV8EKFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.512 [XNIO-1 task-2] qXedZb49QzW-tmkV8EKFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.512 [XNIO-1 task-2] qXedZb49QzW-tmkV8EKFWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.516 [XNIO-1 task-2] GYsRA3wqTHKUUuNI_pMbzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.516 [XNIO-1 task-2] GYsRA3wqTHKUUuNI_pMbzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.516 [XNIO-1 task-2] GYsRA3wqTHKUUuNI_pMbzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.517 [XNIO-1 task-2] GYsRA3wqTHKUUuNI_pMbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.517 [XNIO-1 task-2] GYsRA3wqTHKUUuNI_pMbzg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.542 [XNIO-1 task-2] Qc0wKo3fQEqyCfYe7iTyPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.542 [XNIO-1 task-2] Qc0wKo3fQEqyCfYe7iTyPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.542 [XNIO-1 task-2] Qc0wKo3fQEqyCfYe7iTyPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.543 [XNIO-1 task-2] Qc0wKo3fQEqyCfYe7iTyPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.543 [XNIO-1 task-2] Qc0wKo3fQEqyCfYe7iTyPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.549 [XNIO-1 task-2] nfLazYdyQp-3jR7Wccpx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.549 [XNIO-1 task-2] nfLazYdyQp-3jR7Wccpx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.549 [XNIO-1 task-2] nfLazYdyQp-3jR7Wccpx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.550 [XNIO-1 task-2] nfLazYdyQp-3jR7Wccpx2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.550 [XNIO-1 task-2] nfLazYdyQp-3jR7Wccpx2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.558 [XNIO-1 task-2] dv6CFXd8QG-L0vzVnaYNhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e, base path is set to: null +00:00:46.560 [XNIO-1 task-2] dv6CFXd8QG-L0vzVnaYNhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.560 [XNIO-1 task-2] dv6CFXd8QG-L0vzVnaYNhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.560 [XNIO-1 task-2] dv6CFXd8QG-L0vzVnaYNhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e, base path is set to: null +00:00:46.561 [XNIO-1 task-2] dv6CFXd8QG-L0vzVnaYNhw DEBUG com.networknt.schema.TypeValidator debug - validate( "5b833afe-2e22-4c51-a70b-bdc18d15a37e", "5b833afe-2e22-4c51-a70b-bdc18d15a37e", refreshToken) +00:00:46.566 [XNIO-1 task-2] DZzT1sBqR56qxs95Mz_-TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836, base path is set to: null +00:00:46.567 [XNIO-1 task-2] DZzT1sBqR56qxs95Mz_-TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.567 [XNIO-1 task-2] DZzT1sBqR56qxs95Mz_-TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.567 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c547064f +00:00:46.567 [XNIO-1 task-2] DZzT1sBqR56qxs95Mz_-TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.568 [XNIO-1 task-2] DZzT1sBqR56qxs95Mz_-TA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.568 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c547064f +00:00:46.576 [XNIO-1 task-2] 77MlQENCQsaL_NRrmgAHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.577 [XNIO-1 task-2] 77MlQENCQsaL_NRrmgAHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.577 [XNIO-1 task-2] 77MlQENCQsaL_NRrmgAHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.577 [XNIO-1 task-2] 77MlQENCQsaL_NRrmgAHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.578 [XNIO-1 task-2] 77MlQENCQsaL_NRrmgAHyg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.589 [XNIO-1 task-2] fZUYzSGPRuWjIs6pUaLbrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e, base path is set to: null +00:00:46.589 [XNIO-1 task-2] fZUYzSGPRuWjIs6pUaLbrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.590 [XNIO-1 task-2] fZUYzSGPRuWjIs6pUaLbrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.590 [XNIO-1 task-2] fZUYzSGPRuWjIs6pUaLbrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e, base path is set to: null +00:00:46.590 [XNIO-1 task-2] fZUYzSGPRuWjIs6pUaLbrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b833afe-2e22-4c51-a70b-bdc18d15a37e", "5b833afe-2e22-4c51-a70b-bdc18d15a37e", refreshToken) +00:00:46.636 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c547064f +00:00:46.653 [XNIO-1 task-2] R0FB5PBYTIy4zxQcLRVh2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.653 [XNIO-1 task-2] R0FB5PBYTIy4zxQcLRVh2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.654 [XNIO-1 task-2] R0FB5PBYTIy4zxQcLRVh2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.654 [XNIO-1 task-2] R0FB5PBYTIy4zxQcLRVh2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.654 [XNIO-1 task-2] R0FB5PBYTIy4zxQcLRVh2A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.690 [XNIO-1 task-2] t0nnsyZmTVyyNbqXrK8ynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.690 [XNIO-1 task-2] t0nnsyZmTVyyNbqXrK8ynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.690 [XNIO-1 task-2] t0nnsyZmTVyyNbqXrK8ynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.691 [XNIO-1 task-2] t0nnsyZmTVyyNbqXrK8ynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.691 [XNIO-1 task-2] t0nnsyZmTVyyNbqXrK8ynQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6f66b9b3-f2dc-4d10-8ac1-90cee3cb3836 +00:00:46.706 [XNIO-1 task-2] RXdckkMVQ8uRMnPqgCpyUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.706 [XNIO-1 task-2] RXdckkMVQ8uRMnPqgCpyUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.706 [XNIO-1 task-2] RXdckkMVQ8uRMnPqgCpyUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.706 [XNIO-1 task-2] RXdckkMVQ8uRMnPqgCpyUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.707 [XNIO-1 task-2] RXdckkMVQ8uRMnPqgCpyUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.710 [XNIO-1 task-2] kdYQv0ABR2Kk_7r1-If2bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.710 [XNIO-1 task-2] kdYQv0ABR2Kk_7r1-If2bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.710 [XNIO-1 task-2] kdYQv0ABR2Kk_7r1-If2bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.710 [XNIO-1 task-2] kdYQv0ABR2Kk_7r1-If2bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.711 [XNIO-1 task-2] kdYQv0ABR2Kk_7r1-If2bQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.723 [XNIO-1 task-2] KgiytaeaSsCA0oSqg5lQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc +00:00:46.723 [XNIO-1 task-2] KgiytaeaSsCA0oSqg5lQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.723 [XNIO-1 task-2] KgiytaeaSsCA0oSqg5lQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.723 [XNIO-1 task-2] KgiytaeaSsCA0oSqg5lQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc +00:00:46.725 [XNIO-1 task-2] KgiytaeaSsCA0oSqg5lQCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aed8491e-136a-4553-b924-8d43b70f48cc +00:00:46.735 [XNIO-1 task-2] 1f8oE63UQQO9rsNmaSXeEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.735 [XNIO-1 task-2] 1f8oE63UQQO9rsNmaSXeEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.736 [XNIO-1 task-2] 1f8oE63UQQO9rsNmaSXeEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.736 [XNIO-1 task-2] 1f8oE63UQQO9rsNmaSXeEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.740 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c547064f +00:00:46.745 [XNIO-1 task-2] D9SarfAZQce9u0wor49eqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.746 [XNIO-1 task-2] D9SarfAZQce9u0wor49eqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.746 [XNIO-1 task-2] D9SarfAZQce9u0wor49eqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.746 [XNIO-1 task-2] D9SarfAZQce9u0wor49eqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.747 [XNIO-1 task-2] D9SarfAZQce9u0wor49eqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.756 [XNIO-1 task-2] 2IkhfzBoTP66g9yjhiX8xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc +00:00:46.757 [XNIO-1 task-2] 2IkhfzBoTP66g9yjhiX8xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.757 [XNIO-1 task-2] 2IkhfzBoTP66g9yjhiX8xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.757 [XNIO-1 task-2] 2IkhfzBoTP66g9yjhiX8xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc +00:00:46.757 [XNIO-1 task-2] 2IkhfzBoTP66g9yjhiX8xA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aed8491e-136a-4553-b924-8d43b70f48cc +00:00:46.781 [XNIO-1 task-2] QTiD33q0Qo6yvCppwNfWnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf85dbae-52a8-4d2e-9e9b-8787415119a7, base path is set to: null +00:00:46.781 [XNIO-1 task-2] QTiD33q0Qo6yvCppwNfWnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.781 [XNIO-1 task-2] QTiD33q0Qo6yvCppwNfWnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.781 [XNIO-1 task-2] QTiD33q0Qo6yvCppwNfWnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bf85dbae-52a8-4d2e-9e9b-8787415119a7, base path is set to: null +00:00:46.782 [XNIO-1 task-2] QTiD33q0Qo6yvCppwNfWnw DEBUG com.networknt.schema.TypeValidator debug - validate( "bf85dbae-52a8-4d2e-9e9b-8787415119a7", "bf85dbae-52a8-4d2e-9e9b-8787415119a7", refreshToken) +00:00:46.794 [XNIO-1 task-2] uhLurBO7Rk2LYjgoo7mVSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.795 [XNIO-1 task-2] uhLurBO7Rk2LYjgoo7mVSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.795 [XNIO-1 task-2] uhLurBO7Rk2LYjgoo7mVSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.795 [XNIO-1 task-2] uhLurBO7Rk2LYjgoo7mVSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.795 [XNIO-1 task-2] uhLurBO7Rk2LYjgoo7mVSg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.796 [XNIO-1 task-2] uhLurBO7Rk2LYjgoo7mVSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.803 [XNIO-1 task-2] 8rEw7P5QTmajS2unTOULHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.803 [XNIO-1 task-2] 8rEw7P5QTmajS2unTOULHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.803 [XNIO-1 task-2] 8rEw7P5QTmajS2unTOULHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.803 [XNIO-1 task-2] 8rEw7P5QTmajS2unTOULHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.803 [XNIO-1 task-2] 8rEw7P5QTmajS2unTOULHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.807 [XNIO-1 task-2] NAkZdiTrSlOQu8jzQ3yFLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.807 [XNIO-1 task-2] NAkZdiTrSlOQu8jzQ3yFLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.807 [XNIO-1 task-2] NAkZdiTrSlOQu8jzQ3yFLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.807 [XNIO-1 task-2] NAkZdiTrSlOQu8jzQ3yFLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.808 [XNIO-1 task-2] NAkZdiTrSlOQu8jzQ3yFLw DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.808 [XNIO-1 task-2] NAkZdiTrSlOQu8jzQ3yFLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.811 [XNIO-1 task-2] WlpJxiRgTQCCDNk70ToAnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.812 [XNIO-1 task-2] WlpJxiRgTQCCDNk70ToAnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.812 [XNIO-1 task-2] WlpJxiRgTQCCDNk70ToAnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.812 [XNIO-1 task-2] WlpJxiRgTQCCDNk70ToAnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.812 [XNIO-1 task-2] WlpJxiRgTQCCDNk70ToAnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.818 [XNIO-1 task-2] dLMIzT8JR8GqoxgP-WgUTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.819 [XNIO-1 task-2] dLMIzT8JR8GqoxgP-WgUTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.819 [XNIO-1 task-2] dLMIzT8JR8GqoxgP-WgUTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.819 [XNIO-1 task-2] dLMIzT8JR8GqoxgP-WgUTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.819 [XNIO-1 task-2] dLMIzT8JR8GqoxgP-WgUTw DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.819 [XNIO-1 task-2] dLMIzT8JR8GqoxgP-WgUTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.824 [XNIO-1 task-2] 59jCNhK5RwyQrqO9WQ85_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.824 [XNIO-1 task-2] 59jCNhK5RwyQrqO9WQ85_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.824 [XNIO-1 task-2] 59jCNhK5RwyQrqO9WQ85_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.825 [XNIO-1 task-2] 59jCNhK5RwyQrqO9WQ85_g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.842 [XNIO-1 task-2] sj7YVFT3Skexd7bTPwluMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.842 [XNIO-1 task-2] sj7YVFT3Skexd7bTPwluMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.842 [XNIO-1 task-2] sj7YVFT3Skexd7bTPwluMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.843 [XNIO-1 task-2] sj7YVFT3Skexd7bTPwluMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.843 [XNIO-1 task-2] sj7YVFT3Skexd7bTPwluMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.849 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b7d25b4 +00:00:46.866 [XNIO-1 task-2] UR17nX5aSlCLHFYBgIBN4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.866 [XNIO-1 task-2] UR17nX5aSlCLHFYBgIBN4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.867 [XNIO-1 task-2] UR17nX5aSlCLHFYBgIBN4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.867 [XNIO-1 task-2] UR17nX5aSlCLHFYBgIBN4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.876 [XNIO-1 task-2] ev7y1ol-T-6aOEnDsp9nbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.877 [XNIO-1 task-2] ev7y1ol-T-6aOEnDsp9nbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.877 [XNIO-1 task-2] ev7y1ol-T-6aOEnDsp9nbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:46.877 [XNIO-1 task-2] ev7y1ol-T-6aOEnDsp9nbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.878 [XNIO-1 task-2] ev7y1ol-T-6aOEnDsp9nbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:46.886 [XNIO-1 task-2] rK4QLJ8_QkGyd8X6Zljfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.887 [XNIO-1 task-2] rK4QLJ8_QkGyd8X6Zljfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.887 [XNIO-1 task-2] rK4QLJ8_QkGyd8X6Zljfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.887 [XNIO-1 task-2] rK4QLJ8_QkGyd8X6Zljfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.888 [XNIO-1 task-2] rK4QLJ8_QkGyd8X6Zljfaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5b833afe-2e22-4c51-a70b-bdc18d15a37e +00:00:46.893 [XNIO-1 task-2] diwuqyO-TyK5mO7xV1DdoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.893 [XNIO-1 task-2] diwuqyO-TyK5mO7xV1DdoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.893 [XNIO-1 task-2] diwuqyO-TyK5mO7xV1DdoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.893 [XNIO-1 task-2] diwuqyO-TyK5mO7xV1DdoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.894 [XNIO-1 task-2] diwuqyO-TyK5mO7xV1DdoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.896 [XNIO-1 task-2] diwuqyO-TyK5mO7xV1DdoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.899 [XNIO-1 task-2] YbRfSkvvSkm9KjHQ1y_nhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.899 [XNIO-1 task-2] YbRfSkvvSkm9KjHQ1y_nhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.899 [XNIO-1 task-2] YbRfSkvvSkm9KjHQ1y_nhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.900 [XNIO-1 task-2] YbRfSkvvSkm9KjHQ1y_nhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.908 [XNIO-1 task-2] 2mYz-6AISvOAkOApwuCf2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e, base path is set to: null +00:00:46.910 [XNIO-1 task-2] 2mYz-6AISvOAkOApwuCf2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.910 [XNIO-1 task-2] 2mYz-6AISvOAkOApwuCf2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.911 [XNIO-1 task-2] 2mYz-6AISvOAkOApwuCf2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5b833afe-2e22-4c51-a70b-bdc18d15a37e, base path is set to: null +00:00:46.911 [XNIO-1 task-2] 2mYz-6AISvOAkOApwuCf2A DEBUG com.networknt.schema.TypeValidator debug - validate( "5b833afe-2e22-4c51-a70b-bdc18d15a37e", "5b833afe-2e22-4c51-a70b-bdc18d15a37e", refreshToken) +00:00:46.911 [XNIO-1 task-2] 2mYz-6AISvOAkOApwuCf2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5b833afe-2e22-4c51-a70b-bdc18d15a37e is not found.","severity":"ERROR"} +00:00:46.922 [XNIO-1 task-2] eQdJkA6bReO1Q5ZoMju3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.922 [XNIO-1 task-2] eQdJkA6bReO1Q5ZoMju3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.922 [XNIO-1 task-2] eQdJkA6bReO1Q5ZoMju3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.922 [XNIO-1 task-2] eQdJkA6bReO1Q5ZoMju3bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.923 [XNIO-1 task-2] eQdJkA6bReO1Q5ZoMju3bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.930 [XNIO-1 task-2] 8ps78Aj0SwyjdtSAJZuTBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc, base path is set to: null +00:00:46.930 [XNIO-1 task-2] 8ps78Aj0SwyjdtSAJZuTBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.931 [XNIO-1 task-2] 8ps78Aj0SwyjdtSAJZuTBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.931 [XNIO-1 task-2] 8ps78Aj0SwyjdtSAJZuTBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc, base path is set to: null +00:00:46.931 [XNIO-1 task-2] 8ps78Aj0SwyjdtSAJZuTBw DEBUG com.networknt.schema.TypeValidator debug - validate( "aed8491e-136a-4553-b924-8d43b70f48cc", "aed8491e-136a-4553-b924-8d43b70f48cc", refreshToken) +00:00:46.935 [XNIO-1 task-2] 8ps78Aj0SwyjdtSAJZuTBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aed8491e-136a-4553-b924-8d43b70f48cc is not found.","severity":"ERROR"} +00:00:46.940 [XNIO-1 task-2] iqDcLHzzQQOODwrtoCjUKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.940 [XNIO-1 task-2] iqDcLHzzQQOODwrtoCjUKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.940 [XNIO-1 task-2] iqDcLHzzQQOODwrtoCjUKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:46.940 [XNIO-1 task-2] iqDcLHzzQQOODwrtoCjUKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.941 [XNIO-1 task-2] iqDcLHzzQQOODwrtoCjUKA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:46.943 [XNIO-1 task-2] RlSw0kYQRJyurRp7kx449A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc, base path is set to: null +00:00:46.944 [XNIO-1 task-2] RlSw0kYQRJyurRp7kx449A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.944 [XNIO-1 task-2] RlSw0kYQRJyurRp7kx449A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.944 [XNIO-1 task-2] RlSw0kYQRJyurRp7kx449A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc, base path is set to: null +00:00:46.944 [XNIO-1 task-2] RlSw0kYQRJyurRp7kx449A DEBUG com.networknt.schema.TypeValidator debug - validate( "aed8491e-136a-4553-b924-8d43b70f48cc", "aed8491e-136a-4553-b924-8d43b70f48cc", refreshToken) +00:00:46.944 [XNIO-1 task-2] RlSw0kYQRJyurRp7kx449A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aed8491e-136a-4553-b924-8d43b70f48cc is not found.","severity":"ERROR"} +00:00:46.949 [XNIO-1 task-2] k18F0ndNTdCepip49XTb9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.949 [XNIO-1 task-2] k18F0ndNTdCepip49XTb9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.949 [XNIO-1 task-2] k18F0ndNTdCepip49XTb9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:46.949 [XNIO-1 task-2] k18F0ndNTdCepip49XTb9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.969 [XNIO-1 task-2] uGZpHgNJSUeiSBQy_AsDlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.969 [XNIO-1 task-2] uGZpHgNJSUeiSBQy_AsDlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.969 [XNIO-1 task-2] uGZpHgNJSUeiSBQy_AsDlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.969 [XNIO-1 task-2] uGZpHgNJSUeiSBQy_AsDlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:46.969 [XNIO-1 task-2] uGZpHgNJSUeiSBQy_AsDlg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:46.972 [XNIO-1 task-2] uGZpHgNJSUeiSBQy_AsDlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:46.977 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ba1aa965 +00:00:46.979 [XNIO-1 task-2] 9J5lJdajTXy6jB8iV_q-hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/951c4414-4ba0-4433-a08a-64934b43edd8, base path is set to: null +00:00:46.979 [XNIO-1 task-2] 9J5lJdajTXy6jB8iV_q-hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:46.979 [XNIO-1 task-2] 9J5lJdajTXy6jB8iV_q-hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:46.980 [XNIO-1 task-2] 9J5lJdajTXy6jB8iV_q-hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/951c4414-4ba0-4433-a08a-64934b43edd8, base path is set to: null +00:00:46.980 [XNIO-1 task-2] 9J5lJdajTXy6jB8iV_q-hA DEBUG com.networknt.schema.TypeValidator debug - validate( "951c4414-4ba0-4433-a08a-64934b43edd8", "951c4414-4ba0-4433-a08a-64934b43edd8", refreshToken) +00:00:47.005 [XNIO-1 task-2] 3pFnVDdFTveu9VSIBp-6WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc, base path is set to: null +00:00:47.005 [XNIO-1 task-2] 3pFnVDdFTveu9VSIBp-6WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.005 [XNIO-1 task-2] 3pFnVDdFTveu9VSIBp-6WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.005 [XNIO-1 task-2] 3pFnVDdFTveu9VSIBp-6WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aed8491e-136a-4553-b924-8d43b70f48cc, base path is set to: null +00:00:47.005 [XNIO-1 task-2] 3pFnVDdFTveu9VSIBp-6WA DEBUG com.networknt.schema.TypeValidator debug - validate( "aed8491e-136a-4553-b924-8d43b70f48cc", "aed8491e-136a-4553-b924-8d43b70f48cc", refreshToken) +00:00:47.006 [XNIO-1 task-2] 3pFnVDdFTveu9VSIBp-6WA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aed8491e-136a-4553-b924-8d43b70f48cc is not found.","severity":"ERROR"} +00:00:47.014 [XNIO-1 task-2] NzHLAZU4SnSmJKUCKHHzWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.014 [XNIO-1 task-2] NzHLAZU4SnSmJKUCKHHzWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.014 [XNIO-1 task-2] NzHLAZU4SnSmJKUCKHHzWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.015 [XNIO-1 task-2] NzHLAZU4SnSmJKUCKHHzWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.015 [XNIO-1 task-2] NzHLAZU4SnSmJKUCKHHzWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.021 [XNIO-1 task-2] zkNBhdm0QKyzmkxgW-eNkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.021 [XNIO-1 task-2] zkNBhdm0QKyzmkxgW-eNkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.021 [XNIO-1 task-2] zkNBhdm0QKyzmkxgW-eNkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.021 [XNIO-1 task-2] zkNBhdm0QKyzmkxgW-eNkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.021 [XNIO-1 task-2] zkNBhdm0QKyzmkxgW-eNkg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.022 [XNIO-1 task-2] zkNBhdm0QKyzmkxgW-eNkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.028 [XNIO-1 task-2] QzBFGUazS5yOF77AjOk-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.028 [XNIO-1 task-2] QzBFGUazS5yOF77AjOk-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.028 [XNIO-1 task-2] QzBFGUazS5yOF77AjOk-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.028 [XNIO-1 task-2] QzBFGUazS5yOF77AjOk-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.029 [XNIO-1 task-2] QzBFGUazS5yOF77AjOk-4w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.034 [XNIO-1 task-2] -Fg7IV_yRdi7QuGokZAcOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.036 [XNIO-1 task-2] -Fg7IV_yRdi7QuGokZAcOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.036 [XNIO-1 task-2] -Fg7IV_yRdi7QuGokZAcOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.037 [XNIO-1 task-2] -Fg7IV_yRdi7QuGokZAcOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.037 [XNIO-1 task-2] -Fg7IV_yRdi7QuGokZAcOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.043 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.043 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.043 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +00:00:47.043 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.044 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.044 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.044 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.044 [XNIO-1 task-2] Efd8SFz6Qy6RzBET4Pc4sg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.051 [XNIO-1 task-2] nlTJvlwGTUmvgPrJcc4a_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.051 [XNIO-1 task-2] nlTJvlwGTUmvgPrJcc4a_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.051 [XNIO-1 task-2] nlTJvlwGTUmvgPrJcc4a_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.051 [XNIO-1 task-2] nlTJvlwGTUmvgPrJcc4a_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.052 [XNIO-1 task-2] nlTJvlwGTUmvgPrJcc4a_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.081 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.083 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.083 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.083 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.083 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.083 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.083 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.084 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.084 [XNIO-1 task-2] _dHF1ZUaTk2ShHvwa0buLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.092 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.092 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.092 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.092 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.092 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.092 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.092 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.093 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.093 [XNIO-1 task-2] KGLJWADZSyWKkt_rk-HGew DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 + +00:00:47.104 [XNIO-1 task-2] JOa_qBZKTqCfWulKteCxBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.104 [XNIO-1 task-2] JOa_qBZKTqCfWulKteCxBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.104 [XNIO-1 task-2] JOa_qBZKTqCfWulKteCxBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.104 [XNIO-1 task-2] JOa_qBZKTqCfWulKteCxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.105 [XNIO-1 task-2] JOa_qBZKTqCfWulKteCxBg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.113 [XNIO-1 task-2] tFiihEnTS-G20eIJ6oWH4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.113 [XNIO-1 task-2] tFiihEnTS-G20eIJ6oWH4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.113 [XNIO-1 task-2] tFiihEnTS-G20eIJ6oWH4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.115 [XNIO-1 task-2] tFiihEnTS-G20eIJ6oWH4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.121 [XNIO-1 task-2] zdWQ-rw2SR-Hz9Y7XQDCUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.121 [XNIO-1 task-2] zdWQ-rw2SR-Hz9Y7XQDCUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.121 [XNIO-1 task-2] zdWQ-rw2SR-Hz9Y7XQDCUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.122 [XNIO-1 task-2] zdWQ-rw2SR-Hz9Y7XQDCUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.122 [XNIO-1 task-2] zdWQ-rw2SR-Hz9Y7XQDCUg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.127 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ba1aa965 +00:00:47.132 [XNIO-1 task-2] L3lXIKS4QPeFj4hlYB_83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.132 [XNIO-1 task-2] L3lXIKS4QPeFj4hlYB_83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.132 [XNIO-1 task-2] L3lXIKS4QPeFj4hlYB_83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.133 [XNIO-1 task-2] L3lXIKS4QPeFj4hlYB_83A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.133 [XNIO-1 task-2] L3lXIKS4QPeFj4hlYB_83A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.137 [XNIO-1 task-2] Wcp5jsG2QkWzyi0xlZ1VPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.137 [XNIO-1 task-2] Wcp5jsG2QkWzyi0xlZ1VPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.137 [XNIO-1 task-2] Wcp5jsG2QkWzyi0xlZ1VPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.137 [XNIO-1 task-2] Wcp5jsG2QkWzyi0xlZ1VPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.137 [XNIO-1 task-2] Wcp5jsG2QkWzyi0xlZ1VPw DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.138 [XNIO-1 task-2] Wcp5jsG2QkWzyi0xlZ1VPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.141 [XNIO-1 task-2] wcI8pf6CTryliKu7OMhCgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.141 [XNIO-1 task-2] wcI8pf6CTryliKu7OMhCgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.141 [XNIO-1 task-2] wcI8pf6CTryliKu7OMhCgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.141 [XNIO-1 task-2] wcI8pf6CTryliKu7OMhCgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.143 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ba1aa965 +00:00:47.148 [XNIO-1 task-2] Pq8poo-0QameQnQBSMFJQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.149 [XNIO-1 task-2] Pq8poo-0QameQnQBSMFJQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.149 [XNIO-1 task-2] Pq8poo-0QameQnQBSMFJQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.149 [XNIO-1 task-2] Pq8poo-0QameQnQBSMFJQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.149 [XNIO-1 task-2] Pq8poo-0QameQnQBSMFJQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.150 [XNIO-1 task-2] Pq8poo-0QameQnQBSMFJQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.158 [XNIO-1 task-2] -zcMQw4OTa-kwYVpsR0tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.158 [XNIO-1 task-2] -zcMQw4OTa-kwYVpsR0tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.159 [XNIO-1 task-2] -zcMQw4OTa-kwYVpsR0tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.159 [XNIO-1 task-2] -zcMQw4OTa-kwYVpsR0tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.159 [XNIO-1 task-2] -zcMQw4OTa-kwYVpsR0tSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.163 [XNIO-1 task-2] j8t2XtkkSnSQV_4ovxA_KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.164 [XNIO-1 task-2] j8t2XtkkSnSQV_4ovxA_KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.164 [XNIO-1 task-2] j8t2XtkkSnSQV_4ovxA_KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.164 [XNIO-1 task-2] j8t2XtkkSnSQV_4ovxA_KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.164 [XNIO-1 task-2] j8t2XtkkSnSQV_4ovxA_KA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.164 [XNIO-1 task-2] j8t2XtkkSnSQV_4ovxA_KA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.167 [XNIO-1 task-2] 3-oeV_n8QoOy9tJLWWDuag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.167 [XNIO-1 task-2] 3-oeV_n8QoOy9tJLWWDuag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.167 [XNIO-1 task-2] 3-oeV_n8QoOy9tJLWWDuag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.168 [XNIO-1 task-2] 3-oeV_n8QoOy9tJLWWDuag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.175 [XNIO-1 task-2] 8BOw_0aFQ5uycq5uFFqiPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.176 [XNIO-1 task-2] 8BOw_0aFQ5uycq5uFFqiPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.176 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:df996199-b90a-4f8b-8ade-bbf7ec9d73a4 +00:00:47.176 [XNIO-1 task-2] 8BOw_0aFQ5uycq5uFFqiPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.176 [XNIO-1 task-2] 8BOw_0aFQ5uycq5uFFqiPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.176 [XNIO-1 task-2] 8BOw_0aFQ5uycq5uFFqiPg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.180 [XNIO-1 task-2] vfAYUTO-Tkq10c3NQ9mQJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.180 [XNIO-1 task-2] vfAYUTO-Tkq10c3NQ9mQJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.180 [XNIO-1 task-2] vfAYUTO-Tkq10c3NQ9mQJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.181 [XNIO-1 task-2] vfAYUTO-Tkq10c3NQ9mQJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.181 [XNIO-1 task-2] vfAYUTO-Tkq10c3NQ9mQJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.188 [XNIO-1 task-2] 62vlYR9JQdeyHyTikkmT2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.188 [XNIO-1 task-2] 62vlYR9JQdeyHyTikkmT2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.188 [XNIO-1 task-2] 62vlYR9JQdeyHyTikkmT2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.189 [XNIO-1 task-2] 62vlYR9JQdeyHyTikkmT2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.189 [XNIO-1 task-2] 62vlYR9JQdeyHyTikkmT2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.192 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:47.195 [XNIO-1 task-2] C7ci1WfJT1eEl1XzQGYRmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.195 [XNIO-1 task-2] C7ci1WfJT1eEl1XzQGYRmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.195 [XNIO-1 task-2] C7ci1WfJT1eEl1XzQGYRmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.195 [XNIO-1 task-2] C7ci1WfJT1eEl1XzQGYRmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.230 [XNIO-1 task-2] IsWvCe8IT367FM0SsMpq6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.231 [XNIO-1 task-2] IsWvCe8IT367FM0SsMpq6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.231 [XNIO-1 task-2] IsWvCe8IT367FM0SsMpq6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.231 [XNIO-1 task-2] IsWvCe8IT367FM0SsMpq6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.231 [XNIO-1 task-2] IsWvCe8IT367FM0SsMpq6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.244 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2a8bd16e +00:00:47.248 [XNIO-1 task-2] HgJR08DzSP6H29UxTd4a5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.248 [XNIO-1 task-2] HgJR08DzSP6H29UxTd4a5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.249 [XNIO-1 task-2] HgJR08DzSP6H29UxTd4a5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.249 [XNIO-1 task-2] HgJR08DzSP6H29UxTd4a5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.249 [XNIO-1 task-2] HgJR08DzSP6H29UxTd4a5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.264 [XNIO-1 task-2] cfFNVSYUQB-EULQP_Z1WBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.264 [XNIO-1 task-2] cfFNVSYUQB-EULQP_Z1WBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.264 [XNIO-1 task-2] cfFNVSYUQB-EULQP_Z1WBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.265 [XNIO-1 task-2] cfFNVSYUQB-EULQP_Z1WBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.265 [XNIO-1 task-2] cfFNVSYUQB-EULQP_Z1WBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.268 [XNIO-1 task-2] l8HcRvcFTtGLXVDxKUrFVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.268 [XNIO-1 task-2] l8HcRvcFTtGLXVDxKUrFVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.269 [XNIO-1 task-2] l8HcRvcFTtGLXVDxKUrFVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.269 [XNIO-1 task-2] l8HcRvcFTtGLXVDxKUrFVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.269 [XNIO-1 task-2] l8HcRvcFTtGLXVDxKUrFVw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.285 [XNIO-1 task-2] QJyO5j77SPKWNDlIFWgw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.286 [XNIO-1 task-2] QJyO5j77SPKWNDlIFWgw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.286 [XNIO-1 task-2] QJyO5j77SPKWNDlIFWgw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.286 [XNIO-1 task-2] QJyO5j77SPKWNDlIFWgw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.286 [XNIO-1 task-2] QJyO5j77SPKWNDlIFWgw4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.290 [XNIO-1 task-2] O6lR3GIFSVS8Sp1EAsivmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.290 [XNIO-1 task-2] O6lR3GIFSVS8Sp1EAsivmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.290 [XNIO-1 task-2] O6lR3GIFSVS8Sp1EAsivmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.290 [XNIO-1 task-2] O6lR3GIFSVS8Sp1EAsivmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.291 [XNIO-1 task-2] O6lR3GIFSVS8Sp1EAsivmA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.291 [XNIO-1 task-2] O6lR3GIFSVS8Sp1EAsivmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.298 [XNIO-1 task-2] GdJtN_iFSN2yJg2umMRxXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.298 [XNIO-1 task-2] GdJtN_iFSN2yJg2umMRxXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.298 [XNIO-1 task-2] GdJtN_iFSN2yJg2umMRxXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.299 [XNIO-1 task-2] GdJtN_iFSN2yJg2umMRxXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.309 [XNIO-1 task-2] j907Uxf2Rce2LpKslEEOvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.310 [XNIO-1 task-2] j907Uxf2Rce2LpKslEEOvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.310 [XNIO-1 task-2] j907Uxf2Rce2LpKslEEOvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.310 [XNIO-1 task-2] j907Uxf2Rce2LpKslEEOvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.310 [XNIO-1 task-2] j907Uxf2Rce2LpKslEEOvw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.336 [XNIO-1 task-2] bY0FjseFQ96NWpYLQ6KKaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.336 [XNIO-1 task-2] bY0FjseFQ96NWpYLQ6KKaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.336 [XNIO-1 task-2] bY0FjseFQ96NWpYLQ6KKaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.336 [XNIO-1 task-2] bY0FjseFQ96NWpYLQ6KKaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.336 [XNIO-1 task-2] bY0FjseFQ96NWpYLQ6KKaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.340 [XNIO-1 task-2] ilD-M6-4Rt2ph9xUdlMQ9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.340 [XNIO-1 task-2] ilD-M6-4Rt2ph9xUdlMQ9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.340 [XNIO-1 task-2] ilD-M6-4Rt2ph9xUdlMQ9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.340 [XNIO-1 task-2] ilD-M6-4Rt2ph9xUdlMQ9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.340 [XNIO-1 task-2] ilD-M6-4Rt2ph9xUdlMQ9A DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.341 [XNIO-1 task-2] ilD-M6-4Rt2ph9xUdlMQ9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.345 [XNIO-1 task-2] 6clSqBVISG2uuqAURDeI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.345 [XNIO-1 task-2] 6clSqBVISG2uuqAURDeI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.345 [XNIO-1 task-2] 6clSqBVISG2uuqAURDeI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.346 [XNIO-1 task-2] 6clSqBVISG2uuqAURDeI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.346 [XNIO-1 task-2] 6clSqBVISG2uuqAURDeI3Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.354 [XNIO-1 task-2] t_xIzLjfTxG3-DJQs4LTtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.355 [XNIO-1 task-2] t_xIzLjfTxG3-DJQs4LTtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.355 [XNIO-1 task-2] t_xIzLjfTxG3-DJQs4LTtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.355 [XNIO-1 task-2] t_xIzLjfTxG3-DJQs4LTtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.355 [XNIO-1 task-2] t_xIzLjfTxG3-DJQs4LTtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.356 [XNIO-1 task-2] t_xIzLjfTxG3-DJQs4LTtQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.360 [XNIO-1 task-2] AScy9Tf3RviC0wa133jp_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.361 [XNIO-1 task-2] AScy9Tf3RviC0wa133jp_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.361 [XNIO-1 task-2] AScy9Tf3RviC0wa133jp_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.361 [XNIO-1 task-2] AScy9Tf3RviC0wa133jp_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.361 [XNIO-1 task-2] AScy9Tf3RviC0wa133jp_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.365 [XNIO-1 task-2] fIvHS2toQXienYovIvTXgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920, base path is set to: null +00:00:47.365 [XNIO-1 task-2] fIvHS2toQXienYovIvTXgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.365 [XNIO-1 task-2] fIvHS2toQXienYovIvTXgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.365 [XNIO-1 task-2] fIvHS2toQXienYovIvTXgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920, base path is set to: null +00:00:47.366 [XNIO-1 task-2] fIvHS2toQXienYovIvTXgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ef121d0-f264-4cd0-8823-0c20e87fd920", "2ef121d0-f264-4cd0-8823-0c20e87fd920", refreshToken) +00:00:47.370 [XNIO-1 task-2] fIvHS2toQXienYovIvTXgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2ef121d0-f264-4cd0-8823-0c20e87fd920 is not found.","severity":"ERROR"} +00:00:47.376 [XNIO-1 task-2] eINQ3suyT7SZZ4fpTYwUCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.376 [XNIO-1 task-2] eINQ3suyT7SZZ4fpTYwUCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.376 [XNIO-1 task-2] eINQ3suyT7SZZ4fpTYwUCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.377 [XNIO-1 task-2] eINQ3suyT7SZZ4fpTYwUCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.386 [XNIO-1 task-2] qqBhWYCXTcecSbHhMTyqVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.386 [XNIO-1 task-2] qqBhWYCXTcecSbHhMTyqVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.386 [XNIO-1 task-2] qqBhWYCXTcecSbHhMTyqVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.387 [XNIO-1 task-2] qqBhWYCXTcecSbHhMTyqVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.387 [XNIO-1 task-2] qqBhWYCXTcecSbHhMTyqVg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.394 [XNIO-1 task-2] a6SRDCKaSwmrboUv3Nc7Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.394 [XNIO-1 task-2] a6SRDCKaSwmrboUv3Nc7Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.394 [XNIO-1 task-2] a6SRDCKaSwmrboUv3Nc7Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.395 [XNIO-1 task-2] a6SRDCKaSwmrboUv3Nc7Vw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.405 [XNIO-1 task-2] Al-wpnmrRGS7GOLpXb2N9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.405 [XNIO-1 task-2] Al-wpnmrRGS7GOLpXb2N9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.405 [XNIO-1 task-2] Al-wpnmrRGS7GOLpXb2N9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.405 [XNIO-1 task-2] Al-wpnmrRGS7GOLpXb2N9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.406 [XNIO-1 task-2] Al-wpnmrRGS7GOLpXb2N9w DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.406 [XNIO-1 task-2] Al-wpnmrRGS7GOLpXb2N9w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.410 [XNIO-1 task-2] 66q7BBsWQKiMKeS3tEA8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.410 [XNIO-1 task-2] 66q7BBsWQKiMKeS3tEA8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.410 [XNIO-1 task-2] 66q7BBsWQKiMKeS3tEA8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.410 [XNIO-1 task-2] 66q7BBsWQKiMKeS3tEA8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.410 [XNIO-1 task-2] 66q7BBsWQKiMKeS3tEA8-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.413 [XNIO-1 task-2] 2BTsFhALTxejYdprvyb0-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.413 [XNIO-1 task-2] 2BTsFhALTxejYdprvyb0-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.414 [XNIO-1 task-2] 2BTsFhALTxejYdprvyb0-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.414 [XNIO-1 task-2] 2BTsFhALTxejYdprvyb0-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.414 [XNIO-1 task-2] 2BTsFhALTxejYdprvyb0-g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.422 [XNIO-1 task-2] mGvG3wRyTJW5zItIotcEpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.422 [XNIO-1 task-2] mGvG3wRyTJW5zItIotcEpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.422 [XNIO-1 task-2] mGvG3wRyTJW5zItIotcEpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.422 [XNIO-1 task-2] mGvG3wRyTJW5zItIotcEpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.430 [XNIO-1 task-2] T5JWsB3oQqex0kGmgAN6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.430 [XNIO-1 task-2] T5JWsB3oQqex0kGmgAN6dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.430 [XNIO-1 task-2] T5JWsB3oQqex0kGmgAN6dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.431 [XNIO-1 task-2] T5JWsB3oQqex0kGmgAN6dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.431 [XNIO-1 task-2] T5JWsB3oQqex0kGmgAN6dg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.431 [XNIO-1 task-2] T5JWsB3oQqex0kGmgAN6dg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.441 [XNIO-1 task-2] IVjhg1GESCal8dnqe7_m6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.442 [XNIO-1 task-2] IVjhg1GESCal8dnqe7_m6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.442 [XNIO-1 task-2] IVjhg1GESCal8dnqe7_m6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.442 [XNIO-1 task-2] IVjhg1GESCal8dnqe7_m6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.442 [XNIO-1 task-2] IVjhg1GESCal8dnqe7_m6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.445 [XNIO-1 task-2] _Jnm-bq5TfSPPOtDjIgybA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ead3cb1c-d636-47bf-b8d5-bb9faa9eb988, base path is set to: null +00:00:47.446 [XNIO-1 task-2] _Jnm-bq5TfSPPOtDjIgybA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.446 [XNIO-1 task-2] _Jnm-bq5TfSPPOtDjIgybA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.446 [XNIO-1 task-2] _Jnm-bq5TfSPPOtDjIgybA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ead3cb1c-d636-47bf-b8d5-bb9faa9eb988, base path is set to: null +00:00:47.448 [XNIO-1 task-2] _Jnm-bq5TfSPPOtDjIgybA DEBUG com.networknt.schema.TypeValidator debug - validate( "ead3cb1c-d636-47bf-b8d5-bb9faa9eb988", "ead3cb1c-d636-47bf-b8d5-bb9faa9eb988", refreshToken) +00:00:47.467 [XNIO-1 task-2] V7XLrigSSuKo7k_mHoB5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.468 [XNIO-1 task-2] V7XLrigSSuKo7k_mHoB5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.468 [XNIO-1 task-2] V7XLrigSSuKo7k_mHoB5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.468 [XNIO-1 task-2] V7XLrigSSuKo7k_mHoB5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.468 [XNIO-1 task-2] V7XLrigSSuKo7k_mHoB5ig DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:47.474 [XNIO-1 task-2] uYk8NPoyQeG8XtbY-Wi2Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.475 [XNIO-1 task-2] uYk8NPoyQeG8XtbY-Wi2Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.476 [XNIO-1 task-2] uYk8NPoyQeG8XtbY-Wi2Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.476 [XNIO-1 task-2] uYk8NPoyQeG8XtbY-Wi2Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.477 [XNIO-1 task-2] uYk8NPoyQeG8XtbY-Wi2Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:47.491 [XNIO-1 task-2] RneZYEStQCSSTsQPJE6bmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.491 [XNIO-1 task-2] RneZYEStQCSSTsQPJE6bmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.492 [XNIO-1 task-2] RneZYEStQCSSTsQPJE6bmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.492 [XNIO-1 task-2] RneZYEStQCSSTsQPJE6bmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.492 [XNIO-1 task-2] RneZYEStQCSSTsQPJE6bmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.510 [XNIO-1 task-2] rmF3sM4HQW6M8_ytvWRNTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.510 [XNIO-1 task-2] rmF3sM4HQW6M8_ytvWRNTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.511 [XNIO-1 task-2] rmF3sM4HQW6M8_ytvWRNTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.511 [XNIO-1 task-2] rmF3sM4HQW6M8_ytvWRNTA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.519 [XNIO-1 task-2] UhcZ1m-GQzC4qi-22hPiVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.519 [XNIO-1 task-2] UhcZ1m-GQzC4qi-22hPiVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.519 [XNIO-1 task-2] UhcZ1m-GQzC4qi-22hPiVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.519 [XNIO-1 task-2] UhcZ1m-GQzC4qi-22hPiVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.520 [XNIO-1 task-2] UhcZ1m-GQzC4qi-22hPiVA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.520 [XNIO-1 task-2] UhcZ1m-GQzC4qi-22hPiVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.528 [XNIO-1 task-2] 2uzL6ImWS4ancUnhuFFy6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.528 [XNIO-1 task-2] 2uzL6ImWS4ancUnhuFFy6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.529 [XNIO-1 task-2] 2uzL6ImWS4ancUnhuFFy6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.529 [XNIO-1 task-2] 2uzL6ImWS4ancUnhuFFy6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.529 [XNIO-1 task-2] 2uzL6ImWS4ancUnhuFFy6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.535 [XNIO-1 task-2] XhHdYee8R3SV3bNuOXK-BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.535 [XNIO-1 task-2] XhHdYee8R3SV3bNuOXK-BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.535 [XNIO-1 task-2] XhHdYee8R3SV3bNuOXK-BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.535 [XNIO-1 task-2] XhHdYee8R3SV3bNuOXK-BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.536 [XNIO-1 task-2] XhHdYee8R3SV3bNuOXK-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.536 [XNIO-1 task-2] XhHdYee8R3SV3bNuOXK-BA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.539 [XNIO-1 task-2] APbo8cmERaGUCuIgUcx-RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.540 [XNIO-1 task-2] APbo8cmERaGUCuIgUcx-RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.540 [XNIO-1 task-2] APbo8cmERaGUCuIgUcx-RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.540 [XNIO-1 task-2] APbo8cmERaGUCuIgUcx-RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.540 [XNIO-1 task-2] APbo8cmERaGUCuIgUcx-RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.542 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:aea83d5a-1952-4555-b929-4d7cea9f6730 +00:00:47.542 [XNIO-1 task-2] APbo8cmERaGUCuIgUcx-RQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.546 [XNIO-1 task-2] YhG40LrNQmqed5iYyfbDpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.546 [XNIO-1 task-2] YhG40LrNQmqed5iYyfbDpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.546 [XNIO-1 task-2] YhG40LrNQmqed5iYyfbDpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.546 [XNIO-1 task-2] YhG40LrNQmqed5iYyfbDpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.547 [XNIO-1 task-2] YhG40LrNQmqed5iYyfbDpw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.551 [XNIO-1 task-2] k6FGtDE3TbCdKgtqHOizYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.551 [XNIO-1 task-2] k6FGtDE3TbCdKgtqHOizYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.552 [XNIO-1 task-2] k6FGtDE3TbCdKgtqHOizYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.552 [XNIO-1 task-2] k6FGtDE3TbCdKgtqHOizYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.552 [XNIO-1 task-2] k6FGtDE3TbCdKgtqHOizYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.552 [XNIO-1 task-2] k6FGtDE3TbCdKgtqHOizYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.558 [XNIO-1 task-2] 14SRoaJATRSYOZtgAy2KeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.558 [XNIO-1 task-2] 14SRoaJATRSYOZtgAy2KeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.558 [XNIO-1 task-2] 14SRoaJATRSYOZtgAy2KeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.558 [XNIO-1 task-2] 14SRoaJATRSYOZtgAy2KeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.559 [XNIO-1 task-2] 14SRoaJATRSYOZtgAy2KeA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.563 [XNIO-1 task-2] BQ9PqMwtQr-gQ7dDRwDoSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.563 [XNIO-1 task-2] BQ9PqMwtQr-gQ7dDRwDoSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.563 [XNIO-1 task-2] BQ9PqMwtQr-gQ7dDRwDoSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.563 [XNIO-1 task-2] BQ9PqMwtQr-gQ7dDRwDoSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.564 [XNIO-1 task-2] BQ9PqMwtQr-gQ7dDRwDoSw DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.564 [XNIO-1 task-2] BQ9PqMwtQr-gQ7dDRwDoSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.568 [XNIO-1 task-2] 3PytL0kfSPC-oUF7fSc3iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55acad2c-4fa3-493e-b94f-973fef67f009 +00:00:47.568 [XNIO-1 task-2] 3PytL0kfSPC-oUF7fSc3iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.568 [XNIO-1 task-2] 3PytL0kfSPC-oUF7fSc3iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.569 [XNIO-1 task-2] 3PytL0kfSPC-oUF7fSc3iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55acad2c-4fa3-493e-b94f-973fef67f009 +00:00:47.569 [XNIO-1 task-2] 3PytL0kfSPC-oUF7fSc3iw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 55acad2c-4fa3-493e-b94f-973fef67f009 +00:00:47.584 [XNIO-1 task-2] UW0GbSrwQfWVXANcWjk3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.584 [XNIO-1 task-2] UW0GbSrwQfWVXANcWjk3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.584 [XNIO-1 task-2] UW0GbSrwQfWVXANcWjk3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.584 [XNIO-1 task-2] UW0GbSrwQfWVXANcWjk3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.584 [XNIO-1 task-2] UW0GbSrwQfWVXANcWjk3yA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.589 [XNIO-1 task-2] N8Iz3Z_gQ2q445769fB-5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55acad2c-4fa3-493e-b94f-973fef67f009, base path is set to: null +00:00:47.589 [XNIO-1 task-2] N8Iz3Z_gQ2q445769fB-5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.589 [XNIO-1 task-2] N8Iz3Z_gQ2q445769fB-5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.589 [XNIO-1 task-2] N8Iz3Z_gQ2q445769fB-5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55acad2c-4fa3-493e-b94f-973fef67f009, base path is set to: null +00:00:47.591 [XNIO-1 task-2] N8Iz3Z_gQ2q445769fB-5w DEBUG com.networknt.schema.TypeValidator debug - validate( "55acad2c-4fa3-493e-b94f-973fef67f009", "55acad2c-4fa3-493e-b94f-973fef67f009", refreshToken) +00:00:47.598 [XNIO-1 task-2] AmX93prXQb6WZo_P8dpbWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.598 [XNIO-1 task-2] AmX93prXQb6WZo_P8dpbWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.598 [XNIO-1 task-2] AmX93prXQb6WZo_P8dpbWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.598 [XNIO-1 task-2] AmX93prXQb6WZo_P8dpbWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.599 [XNIO-1 task-2] AmX93prXQb6WZo_P8dpbWA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.599 [XNIO-1 task-2] AmX93prXQb6WZo_P8dpbWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.603 [XNIO-1 task-2] gtyGcAGjRrCvoR0xfTVjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.603 [XNIO-1 task-2] gtyGcAGjRrCvoR0xfTVjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.604 [XNIO-1 task-2] gtyGcAGjRrCvoR0xfTVjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.604 [XNIO-1 task-2] gtyGcAGjRrCvoR0xfTVjmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.604 [XNIO-1 task-2] gtyGcAGjRrCvoR0xfTVjmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.609 [XNIO-1 task-2] Yjy3OGZeSxauWzO0Rf1jGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.609 [XNIO-1 task-2] Yjy3OGZeSxauWzO0Rf1jGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.609 [XNIO-1 task-2] Yjy3OGZeSxauWzO0Rf1jGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.609 [XNIO-1 task-2] Yjy3OGZeSxauWzO0Rf1jGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.610 [XNIO-1 task-2] Yjy3OGZeSxauWzO0Rf1jGA DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:47.614 [XNIO-1 task-2] Yjy3OGZeSxauWzO0Rf1jGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:47.619 [XNIO-1 task-2] V6tTv2geQKe6VIxnosIn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.619 [XNIO-1 task-2] V6tTv2geQKe6VIxnosIn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.620 [XNIO-1 task-2] V6tTv2geQKe6VIxnosIn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.620 [XNIO-1 task-2] V6tTv2geQKe6VIxnosIn6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.621 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a87b96e9-91c5-4654-8feb-4f76bbc31fbb +00:00:47.622 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a87b96e9-91c5-4654-8feb-4f76bbc31fbb +00:00:47.633 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b7d25b4 +00:00:47.634 [XNIO-1 task-2] ySfLI4otRp6PSrwfNNJLCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.634 [XNIO-1 task-2] ySfLI4otRp6PSrwfNNJLCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.634 [XNIO-1 task-2] ySfLI4otRp6PSrwfNNJLCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.635 [XNIO-1 task-2] ySfLI4otRp6PSrwfNNJLCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.641 [XNIO-1 task-2] y8Lkxsx3QR-Y6dTPI_yVmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.642 [XNIO-1 task-2] y8Lkxsx3QR-Y6dTPI_yVmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.642 [XNIO-1 task-2] y8Lkxsx3QR-Y6dTPI_yVmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.642 [XNIO-1 task-2] y8Lkxsx3QR-Y6dTPI_yVmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.643 [XNIO-1 task-2] y8Lkxsx3QR-Y6dTPI_yVmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:47.643 [XNIO-1 task-2] y8Lkxsx3QR-Y6dTPI_yVmQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:47.646 [XNIO-1 task-2] y102VmeIQ6yWAvO3G43sXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.646 [XNIO-1 task-2] y102VmeIQ6yWAvO3G43sXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.646 [XNIO-1 task-2] y102VmeIQ6yWAvO3G43sXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.647 [XNIO-1 task-2] y102VmeIQ6yWAvO3G43sXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.647 [XNIO-1 task-2] y102VmeIQ6yWAvO3G43sXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.649 [XNIO-1 task-2] LP6erB_8QsCndR0aNHARww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.650 [XNIO-1 task-2] LP6erB_8QsCndR0aNHARww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.650 [XNIO-1 task-2] LP6erB_8QsCndR0aNHARww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.650 [XNIO-1 task-2] LP6erB_8QsCndR0aNHARww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.651 [XNIO-1 task-2] LP6erB_8QsCndR0aNHARww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.659 [XNIO-1 task-2] XzolEjmzRESFBE_Nh1Ew8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.659 [XNIO-1 task-2] XzolEjmzRESFBE_Nh1Ew8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.659 [XNIO-1 task-2] XzolEjmzRESFBE_Nh1Ew8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.659 [XNIO-1 task-2] XzolEjmzRESFBE_Nh1Ew8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.660 [XNIO-1 task-2] XzolEjmzRESFBE_Nh1Ew8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.664 [XNIO-1 task-2] RZZGppHPSSuC9e1Cg_Pneg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.664 [XNIO-1 task-2] RZZGppHPSSuC9e1Cg_Pneg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.664 [XNIO-1 task-2] RZZGppHPSSuC9e1Cg_Pneg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.664 [XNIO-1 task-2] RZZGppHPSSuC9e1Cg_Pneg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.664 [XNIO-1 task-2] RZZGppHPSSuC9e1Cg_Pneg DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:47.665 [XNIO-1 task-2] RZZGppHPSSuC9e1Cg_Pneg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:47.667 [XNIO-1 task-2] WK4MabtaRaalx0UkxKGxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.667 [XNIO-1 task-2] WK4MabtaRaalx0UkxKGxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.667 [XNIO-1 task-2] WK4MabtaRaalx0UkxKGxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.668 [XNIO-1 task-2] WK4MabtaRaalx0UkxKGxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.668 [XNIO-1 task-2] WK4MabtaRaalx0UkxKGxCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.672 [XNIO-1 task-2] TcFW0GENTjWoB2zDkBXmvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.672 [XNIO-1 task-2] TcFW0GENTjWoB2zDkBXmvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.672 [XNIO-1 task-2] TcFW0GENTjWoB2zDkBXmvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.672 [XNIO-1 task-2] TcFW0GENTjWoB2zDkBXmvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.673 [XNIO-1 task-2] TcFW0GENTjWoB2zDkBXmvA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.677 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:503d5813-9c29-4f62-ac85-b845e75c0812 +00:00:47.693 [XNIO-1 task-2] GTy4GTvtQ5-t4YcfXl5rqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.693 [XNIO-1 task-2] GTy4GTvtQ5-t4YcfXl5rqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.693 [XNIO-1 task-2] GTy4GTvtQ5-t4YcfXl5rqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.694 [XNIO-1 task-2] GTy4GTvtQ5-t4YcfXl5rqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.701 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:aea83d5a-1952-4555-b929-4d7cea9f6730 +00:00:47.703 [XNIO-1 task-2] 4JdaOviZSn211np9gSvAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.703 [XNIO-1 task-2] 4JdaOviZSn211np9gSvAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.703 [XNIO-1 task-2] 4JdaOviZSn211np9gSvAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.704 [XNIO-1 task-2] 4JdaOviZSn211np9gSvAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.704 [XNIO-1 task-2] 4JdaOviZSn211np9gSvAZA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.704 [XNIO-1 task-2] 4JdaOviZSn211np9gSvAZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.705 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d3237065 +00:00:47.707 [XNIO-1 task-2] -E5u2_FUSri8ZvENY6wkSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.707 [XNIO-1 task-2] -E5u2_FUSri8ZvENY6wkSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.707 [XNIO-1 task-2] -E5u2_FUSri8ZvENY6wkSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.707 [XNIO-1 task-2] -E5u2_FUSri8ZvENY6wkSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.708 [XNIO-1 task-2] -E5u2_FUSri8ZvENY6wkSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.711 [XNIO-1 task-2] fR5FIkZsTC-VKbQQOLnaSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.712 [XNIO-1 task-2] fR5FIkZsTC-VKbQQOLnaSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.712 [XNIO-1 task-2] fR5FIkZsTC-VKbQQOLnaSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.713 [XNIO-1 task-2] fR5FIkZsTC-VKbQQOLnaSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.713 [XNIO-1 task-2] fR5FIkZsTC-VKbQQOLnaSg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.713 [XNIO-1 task-2] fR5FIkZsTC-VKbQQOLnaSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.719 [XNIO-1 task-2] WkpRDS4jRNKTm4sBxdoENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.719 [XNIO-1 task-2] WkpRDS4jRNKTm4sBxdoENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.719 [XNIO-1 task-2] WkpRDS4jRNKTm4sBxdoENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.719 [XNIO-1 task-2] WkpRDS4jRNKTm4sBxdoENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.719 [XNIO-1 task-2] WkpRDS4jRNKTm4sBxdoENA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.724 [XNIO-1 task-2] wGu-f82LTQe5Ot-iOnF49A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.724 [XNIO-1 task-2] wGu-f82LTQe5Ot-iOnF49A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.724 [XNIO-1 task-2] wGu-f82LTQe5Ot-iOnF49A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.725 [XNIO-1 task-2] wGu-f82LTQe5Ot-iOnF49A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.725 [XNIO-1 task-2] wGu-f82LTQe5Ot-iOnF49A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.735 [XNIO-1 task-2] ToofjOrZS8WHsl-kxL6-wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.737 [XNIO-1 task-2] ToofjOrZS8WHsl-kxL6-wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.737 [XNIO-1 task-2] ToofjOrZS8WHsl-kxL6-wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.737 [XNIO-1 task-2] ToofjOrZS8WHsl-kxL6-wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.737 [XNIO-1 task-2] ToofjOrZS8WHsl-kxL6-wg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.740 [XNIO-1 task-2] YyXjmlgIRR-XxjwVrLcnZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.743 [XNIO-1 task-2] YyXjmlgIRR-XxjwVrLcnZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.743 [XNIO-1 task-2] YyXjmlgIRR-XxjwVrLcnZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.743 [XNIO-1 task-2] YyXjmlgIRR-XxjwVrLcnZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.744 [XNIO-1 task-2] YyXjmlgIRR-XxjwVrLcnZA DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:47.744 [XNIO-1 task-2] YyXjmlgIRR-XxjwVrLcnZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:47.755 [XNIO-1 task-2] Xv19ODkJTliBWUiU0WC3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.755 [XNIO-1 task-2] Xv19ODkJTliBWUiU0WC3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.755 [XNIO-1 task-2] Xv19ODkJTliBWUiU0WC3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.755 [XNIO-1 task-2] Xv19ODkJTliBWUiU0WC3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.755 [XNIO-1 task-2] Xv19ODkJTliBWUiU0WC3SQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.762 [XNIO-1 task-2] RGUrTztwTVKCv6ld-KOnLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.763 [XNIO-1 task-2] RGUrTztwTVKCv6ld-KOnLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.763 [XNIO-1 task-2] RGUrTztwTVKCv6ld-KOnLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.763 [XNIO-1 task-2] RGUrTztwTVKCv6ld-KOnLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.763 [XNIO-1 task-2] RGUrTztwTVKCv6ld-KOnLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.772 [XNIO-1 task-2] pAIH58yVSN6KNV8ybVR2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.772 [XNIO-1 task-2] pAIH58yVSN6KNV8ybVR2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.773 [XNIO-1 task-2] pAIH58yVSN6KNV8ybVR2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.773 [XNIO-1 task-2] pAIH58yVSN6KNV8ybVR2cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.773 [XNIO-1 task-2] pAIH58yVSN6KNV8ybVR2cQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.776 [XNIO-1 task-2] r27yJw5iSh2nSBlk73gviw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:47.777 [XNIO-1 task-2] r27yJw5iSh2nSBlk73gviw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.777 [XNIO-1 task-2] r27yJw5iSh2nSBlk73gviw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.778 [XNIO-1 task-2] r27yJw5iSh2nSBlk73gviw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:47.778 [XNIO-1 task-2] r27yJw5iSh2nSBlk73gviw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:47.783 [XNIO-1 task-2] sTs2OQEwQLGwcz2JMSIcsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.783 [XNIO-1 task-2] sTs2OQEwQLGwcz2JMSIcsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.783 [XNIO-1 task-2] sTs2OQEwQLGwcz2JMSIcsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.784 [XNIO-1 task-2] sTs2OQEwQLGwcz2JMSIcsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.784 [XNIO-1 task-2] sTs2OQEwQLGwcz2JMSIcsw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.792 [XNIO-1 task-2] YHfHM3-gQoK0qnTTOQL2LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.792 [XNIO-1 task-2] YHfHM3-gQoK0qnTTOQL2LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.792 [XNIO-1 task-2] YHfHM3-gQoK0qnTTOQL2LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.793 [XNIO-1 task-2] YHfHM3-gQoK0qnTTOQL2LA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.798 [XNIO-1 task-2] hMjIAwIaSV2-Bk6PiYgJOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.798 [XNIO-1 task-2] hMjIAwIaSV2-Bk6PiYgJOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.798 [XNIO-1 task-2] hMjIAwIaSV2-Bk6PiYgJOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.798 [XNIO-1 task-2] hMjIAwIaSV2-Bk6PiYgJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.799 [XNIO-1 task-2] hMjIAwIaSV2-Bk6PiYgJOA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.808 [XNIO-1 task-2] KERmtZGJRfGq6vyA786P2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.808 [XNIO-1 task-2] KERmtZGJRfGq6vyA786P2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.808 [XNIO-1 task-2] KERmtZGJRfGq6vyA786P2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.809 [XNIO-1 task-2] KERmtZGJRfGq6vyA786P2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.809 [XNIO-1 task-2] KERmtZGJRfGq6vyA786P2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.814 [XNIO-1 task-2] 0lo74G1kSTqXvCHwVHv5JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.815 [XNIO-1 task-2] 0lo74G1kSTqXvCHwVHv5JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.815 [XNIO-1 task-2] 0lo74G1kSTqXvCHwVHv5JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.815 [XNIO-1 task-2] 0lo74G1kSTqXvCHwVHv5JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.816 [XNIO-1 task-2] 0lo74G1kSTqXvCHwVHv5JA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.816 [XNIO-1 task-2] 0lo74G1kSTqXvCHwVHv5JA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.819 [XNIO-1 task-2] BVib0TtGTjOHyHvJbHbEkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.819 [XNIO-1 task-2] BVib0TtGTjOHyHvJbHbEkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.819 [XNIO-1 task-2] BVib0TtGTjOHyHvJbHbEkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.819 [XNIO-1 task-2] BVib0TtGTjOHyHvJbHbEkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.819 [XNIO-1 task-2] BVib0TtGTjOHyHvJbHbEkg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.830 [XNIO-1 task-2] M9FfpX9JTOWd2r4qAQVDyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.830 [XNIO-1 task-2] M9FfpX9JTOWd2r4qAQVDyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.830 [XNIO-1 task-2] M9FfpX9JTOWd2r4qAQVDyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.831 [XNIO-1 task-2] M9FfpX9JTOWd2r4qAQVDyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.832 [XNIO-1 task-2] M9FfpX9JTOWd2r4qAQVDyw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.836 [XNIO-1 task-2] 8OP1Sp3zRdq62fESmdJcqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.837 [XNIO-1 task-2] 8OP1Sp3zRdq62fESmdJcqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.837 [XNIO-1 task-2] 8OP1Sp3zRdq62fESmdJcqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.837 [XNIO-1 task-2] 8OP1Sp3zRdq62fESmdJcqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.837 [XNIO-1 task-2] 8OP1Sp3zRdq62fESmdJcqA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.838 [XNIO-1 task-2] 8OP1Sp3zRdq62fESmdJcqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.843 [XNIO-1 task-2] eodcP0rcQTWg3fNRD8ZP6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.845 [XNIO-1 task-2] eodcP0rcQTWg3fNRD8ZP6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.845 [XNIO-1 task-2] eodcP0rcQTWg3fNRD8ZP6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.845 [XNIO-1 task-2] eodcP0rcQTWg3fNRD8ZP6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.845 [XNIO-1 task-2] eodcP0rcQTWg3fNRD8ZP6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.846 [XNIO-1 task-2] eodcP0rcQTWg3fNRD8ZP6Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.851 [XNIO-1 task-2] sSUDE3ITSrihWUALJIG8cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.851 [XNIO-1 task-2] sSUDE3ITSrihWUALJIG8cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.852 [XNIO-1 task-2] sSUDE3ITSrihWUALJIG8cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.852 [XNIO-1 task-2] sSUDE3ITSrihWUALJIG8cg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.868 [XNIO-1 task-2] d0QwYX0hSAOQDL3YNh0UFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.868 [XNIO-1 task-2] d0QwYX0hSAOQDL3YNh0UFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.868 [XNIO-1 task-2] d0QwYX0hSAOQDL3YNh0UFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.868 [XNIO-1 task-2] d0QwYX0hSAOQDL3YNh0UFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.869 [XNIO-1 task-2] d0QwYX0hSAOQDL3YNh0UFg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.869 [XNIO-1 task-2] d0QwYX0hSAOQDL3YNh0UFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.871 [XNIO-1 task-2] zuP35tIySSinYelJyPdGzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.871 [XNIO-1 task-2] zuP35tIySSinYelJyPdGzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.871 [XNIO-1 task-2] zuP35tIySSinYelJyPdGzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.872 [XNIO-1 task-2] zuP35tIySSinYelJyPdGzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.880 [XNIO-1 task-2] Tw98mCwdT--r7nHCh18-sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.880 [XNIO-1 task-2] Tw98mCwdT--r7nHCh18-sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.880 [XNIO-1 task-2] Tw98mCwdT--r7nHCh18-sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.880 [XNIO-1 task-2] Tw98mCwdT--r7nHCh18-sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.881 [XNIO-1 task-2] Tw98mCwdT--r7nHCh18-sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.881 [XNIO-1 task-2] Tw98mCwdT--r7nHCh18-sQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.883 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9c65e175-9d4c-47e1-ab7e-682d71fbeadb +00:00:47.885 [XNIO-1 task-2] pZ2APf5xSCCzfMYKrYFM9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.885 [XNIO-1 task-2] pZ2APf5xSCCzfMYKrYFM9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.885 [XNIO-1 task-2] pZ2APf5xSCCzfMYKrYFM9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.885 [XNIO-1 task-2] pZ2APf5xSCCzfMYKrYFM9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.886 [XNIO-1 task-2] pZ2APf5xSCCzfMYKrYFM9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.888 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d3237065 +00:00:47.889 [XNIO-1 task-2] FQKEFnsTTyGc_eSIoivVyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.889 [XNIO-1 task-2] FQKEFnsTTyGc_eSIoivVyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.889 [XNIO-1 task-2] FQKEFnsTTyGc_eSIoivVyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.889 [XNIO-1 task-2] FQKEFnsTTyGc_eSIoivVyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.890 [XNIO-1 task-2] FQKEFnsTTyGc_eSIoivVyA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.890 [XNIO-1 task-2] FQKEFnsTTyGc_eSIoivVyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.893 [XNIO-1 task-2] 5W9JkW9dQIChzVMNMnDVpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.893 [XNIO-1 task-2] 5W9JkW9dQIChzVMNMnDVpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.893 [XNIO-1 task-2] 5W9JkW9dQIChzVMNMnDVpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.893 [XNIO-1 task-2] 5W9JkW9dQIChzVMNMnDVpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.903 [XNIO-1 task-2] hIeiBMggRj-mQ18RKES-HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.903 [XNIO-1 task-2] hIeiBMggRj-mQ18RKES-HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.904 [XNIO-1 task-2] hIeiBMggRj-mQ18RKES-HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.904 [XNIO-1 task-2] hIeiBMggRj-mQ18RKES-HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.905 [XNIO-1 task-2] hIeiBMggRj-mQ18RKES-HQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.916 [XNIO-1 task-2] afKRZi7IS0ir4jQkIN04wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.916 [XNIO-1 task-2] afKRZi7IS0ir4jQkIN04wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.916 [XNIO-1 task-2] afKRZi7IS0ir4jQkIN04wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.916 [XNIO-1 task-2] afKRZi7IS0ir4jQkIN04wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.916 [XNIO-1 task-2] afKRZi7IS0ir4jQkIN04wg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:47.927 [XNIO-1 task-2] s02Zvm00RN-CJFEcTYvVEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.927 [XNIO-1 task-2] s02Zvm00RN-CJFEcTYvVEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.927 [XNIO-1 task-2] s02Zvm00RN-CJFEcTYvVEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:47.927 [XNIO-1 task-2] s02Zvm00RN-CJFEcTYvVEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.929 [XNIO-1 task-2] s02Zvm00RN-CJFEcTYvVEA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:47.944 [XNIO-1 task-2] kTVq4Ux2S4iiIU4z40oaeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.945 [XNIO-1 task-2] kTVq4Ux2S4iiIU4z40oaeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.946 [XNIO-1 task-2] kTVq4Ux2S4iiIU4z40oaeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.946 [XNIO-1 task-2] kTVq4Ux2S4iiIU4z40oaeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.947 [XNIO-1 task-2] kTVq4Ux2S4iiIU4z40oaeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.947 [XNIO-1 task-2] kTVq4Ux2S4iiIU4z40oaeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.951 [XNIO-1 task-2] cfnaFaypRx6Ud0UtHu4pWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.953 [XNIO-1 task-2] cfnaFaypRx6Ud0UtHu4pWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.953 [XNIO-1 task-2] cfnaFaypRx6Ud0UtHu4pWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.954 [XNIO-1 task-2] cfnaFaypRx6Ud0UtHu4pWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:47.954 [XNIO-1 task-2] cfnaFaypRx6Ud0UtHu4pWg DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:47.954 [XNIO-1 task-2] cfnaFaypRx6Ud0UtHu4pWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:47.955 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:06fbff08 +00:00:47.961 [XNIO-1 task-2] LnIWkCqFRHW1pSXAjHThiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.961 [XNIO-1 task-2] LnIWkCqFRHW1pSXAjHThiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.962 [XNIO-1 task-2] LnIWkCqFRHW1pSXAjHThiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.962 [XNIO-1 task-2] LnIWkCqFRHW1pSXAjHThiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.983 [XNIO-1 task-2] kEbupxb-SGqBlcjdO2aodQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9c65e175-9d4c-47e1-ab7e-682d71fbeadb, base path is set to: null +00:00:47.983 [XNIO-1 task-2] kEbupxb-SGqBlcjdO2aodQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.983 [XNIO-1 task-2] kEbupxb-SGqBlcjdO2aodQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.983 [XNIO-1 task-2] kEbupxb-SGqBlcjdO2aodQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9c65e175-9d4c-47e1-ab7e-682d71fbeadb, base path is set to: null +00:00:47.984 [XNIO-1 task-2] kEbupxb-SGqBlcjdO2aodQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9c65e175-9d4c-47e1-ab7e-682d71fbeadb", "9c65e175-9d4c-47e1-ab7e-682d71fbeadb", refreshToken) +00:00:47.984 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9c65e175-9d4c-47e1-ab7e-682d71fbeadb +00:00:47.990 [XNIO-1 task-2] z56V3rsGQNe1PimnV8Hbcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.990 [XNIO-1 task-2] z56V3rsGQNe1PimnV8Hbcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:47.990 [XNIO-1 task-2] z56V3rsGQNe1PimnV8Hbcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:47.990 [XNIO-1 task-2] z56V3rsGQNe1PimnV8Hbcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:47.991 [XNIO-1 task-2] z56V3rsGQNe1PimnV8Hbcg DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:47.994 [XNIO-1 task-2] z56V3rsGQNe1PimnV8Hbcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:47.996 [XNIO-1 task-2] qItqoB6sS6y8pXgFZp7XDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.997 [XNIO-1 task-2] qItqoB6sS6y8pXgFZp7XDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:47.997 [XNIO-1 task-2] qItqoB6sS6y8pXgFZp7XDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:47.997 [XNIO-1 task-2] qItqoB6sS6y8pXgFZp7XDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.997 [XNIO-1 task-2] qItqoB6sS6y8pXgFZp7XDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.008 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bc90251f +00:00:48.009 [XNIO-1 task-2] F07XLLHDR762U6yI1YsCBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.009 [XNIO-1 task-2] F07XLLHDR762U6yI1YsCBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.009 [XNIO-1 task-2] F07XLLHDR762U6yI1YsCBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.009 [XNIO-1 task-2] F07XLLHDR762U6yI1YsCBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.009 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bc90251f +00:00:48.009 [XNIO-1 task-2] F07XLLHDR762U6yI1YsCBw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.012 [XNIO-1 task-2] 0eJ8X7VpQbihY2BzD3X0hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.012 [XNIO-1 task-2] 0eJ8X7VpQbihY2BzD3X0hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.012 [XNIO-1 task-2] 0eJ8X7VpQbihY2BzD3X0hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.012 [XNIO-1 task-2] 0eJ8X7VpQbihY2BzD3X0hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.014 [XNIO-1 task-2] 0eJ8X7VpQbihY2BzD3X0hg DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:48.015 [XNIO-1 task-2] 0eJ8X7VpQbihY2BzD3X0hg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:48.019 [XNIO-1 task-2] 33t_i7RkSBuUb8lcTQA25Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.019 [XNIO-1 task-2] 33t_i7RkSBuUb8lcTQA25Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.019 [XNIO-1 task-2] 33t_i7RkSBuUb8lcTQA25Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.020 [XNIO-1 task-2] 33t_i7RkSBuUb8lcTQA25Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.020 [XNIO-1 task-2] 33t_i7RkSBuUb8lcTQA25Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.035 [XNIO-1 task-2] FkNfDeRbRM23ZnmrNLnqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.036 [XNIO-1 task-2] FkNfDeRbRM23ZnmrNLnqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.036 [XNIO-1 task-2] FkNfDeRbRM23ZnmrNLnqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.036 [XNIO-1 task-2] FkNfDeRbRM23ZnmrNLnqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.036 [XNIO-1 task-2] FkNfDeRbRM23ZnmrNLnqlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.041 [XNIO-1 task-2] 1oddvBvkR5uq4XglOjuVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.042 [XNIO-1 task-2] 1oddvBvkR5uq4XglOjuVvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.042 [XNIO-1 task-2] 1oddvBvkR5uq4XglOjuVvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.042 [XNIO-1 task-2] 1oddvBvkR5uq4XglOjuVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.042 [XNIO-1 task-2] 1oddvBvkR5uq4XglOjuVvw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:48.045 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ba1aa965 +00:00:48.048 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ba1aa965 +00:00:48.049 [XNIO-1 task-2] uF7tFcaGR8qz0tvnCIexJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.049 [XNIO-1 task-2] uF7tFcaGR8qz0tvnCIexJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.049 [XNIO-1 task-2] uF7tFcaGR8qz0tvnCIexJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.050 [XNIO-1 task-2] uF7tFcaGR8qz0tvnCIexJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.063 [XNIO-1 task-2] 05odRyDEQTKUpEgyj0mLfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.063 [XNIO-1 task-2] 05odRyDEQTKUpEgyj0mLfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.064 [XNIO-1 task-2] 05odRyDEQTKUpEgyj0mLfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.064 [XNIO-1 task-2] 05odRyDEQTKUpEgyj0mLfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.064 [XNIO-1 task-2] 05odRyDEQTKUpEgyj0mLfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.104 [XNIO-1 task-2] V5Ab-63ETx2HenvL2xG9xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.104 [XNIO-1 task-2] V5Ab-63ETx2HenvL2xG9xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.105 [XNIO-1 task-2] V5Ab-63ETx2HenvL2xG9xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.105 [XNIO-1 task-2] V5Ab-63ETx2HenvL2xG9xg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.113 [XNIO-1 task-2] nSPcDVM5RKOuGAIP4jc91w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.113 [XNIO-1 task-2] nSPcDVM5RKOuGAIP4jc91w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.113 [XNIO-1 task-2] nSPcDVM5RKOuGAIP4jc91w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.113 [XNIO-1 task-2] nSPcDVM5RKOuGAIP4jc91w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.114 [XNIO-1 task-2] nSPcDVM5RKOuGAIP4jc91w DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:48.114 [XNIO-1 task-2] nSPcDVM5RKOuGAIP4jc91w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:48.116 [XNIO-1 task-2] y4VzbyPfT3qUkm91dFkWpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.116 [XNIO-1 task-2] y4VzbyPfT3qUkm91dFkWpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.117 [XNIO-1 task-2] y4VzbyPfT3qUkm91dFkWpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.117 [XNIO-1 task-2] y4VzbyPfT3qUkm91dFkWpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.125 [XNIO-1 task-2] Me57H7kwRBSkYbeqmlWl3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:48.125 [XNIO-1 task-2] Me57H7kwRBSkYbeqmlWl3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.125 [XNIO-1 task-2] Me57H7kwRBSkYbeqmlWl3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.125 [XNIO-1 task-2] Me57H7kwRBSkYbeqmlWl3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:48.126 [XNIO-1 task-2] Me57H7kwRBSkYbeqmlWl3A DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:48.127 [XNIO-1 task-2] Me57H7kwRBSkYbeqmlWl3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:48.129 [XNIO-1 task-2] EbJhtF9jTzGrLopaHkz8TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.129 [XNIO-1 task-2] EbJhtF9jTzGrLopaHkz8TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.129 [XNIO-1 task-2] EbJhtF9jTzGrLopaHkz8TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.130 [XNIO-1 task-2] EbJhtF9jTzGrLopaHkz8TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.130 [XNIO-1 task-2] EbJhtF9jTzGrLopaHkz8TQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.137 [XNIO-1 task-2] aGc-uGeQTUycDUQA6pjNHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.138 [XNIO-1 task-2] aGc-uGeQTUycDUQA6pjNHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.138 [XNIO-1 task-2] aGc-uGeQTUycDUQA6pjNHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.138 [XNIO-1 task-2] aGc-uGeQTUycDUQA6pjNHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.138 [XNIO-1 task-2] aGc-uGeQTUycDUQA6pjNHg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.148 [XNIO-1 task-2] Z5kPVhocRPG94G0nt6GBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.148 [XNIO-1 task-2] Z5kPVhocRPG94G0nt6GBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.148 [XNIO-1 task-2] Z5kPVhocRPG94G0nt6GBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.148 [XNIO-1 task-2] Z5kPVhocRPG94G0nt6GBdw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.155 [XNIO-1 task-2] bSrE_bC9Rni1-UFvr0INOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.155 [XNIO-1 task-2] bSrE_bC9Rni1-UFvr0INOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.155 [XNIO-1 task-2] bSrE_bC9Rni1-UFvr0INOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.155 [XNIO-1 task-2] bSrE_bC9Rni1-UFvr0INOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.155 [XNIO-1 task-2] bSrE_bC9Rni1-UFvr0INOg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.160 [XNIO-1 task-2] qD-TQkwPRJO4UzITkCpjbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.160 [XNIO-1 task-2] qD-TQkwPRJO4UzITkCpjbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.160 [XNIO-1 task-2] qD-TQkwPRJO4UzITkCpjbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.160 [XNIO-1 task-2] qD-TQkwPRJO4UzITkCpjbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.161 [XNIO-1 task-2] qD-TQkwPRJO4UzITkCpjbw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.173 [XNIO-1 task-2] 6lVzKRl0R9WeZK9NNEI1dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.173 [XNIO-1 task-2] 6lVzKRl0R9WeZK9NNEI1dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.173 [XNIO-1 task-2] 6lVzKRl0R9WeZK9NNEI1dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.173 [XNIO-1 task-2] 6lVzKRl0R9WeZK9NNEI1dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.174 [XNIO-1 task-2] 6lVzKRl0R9WeZK9NNEI1dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.176 [XNIO-1 task-2] 6lVzKRl0R9WeZK9NNEI1dQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.181 [XNIO-1 task-2] v85yie-VSJubTs2r94UNAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.181 [XNIO-1 task-2] v85yie-VSJubTs2r94UNAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.181 [XNIO-1 task-2] v85yie-VSJubTs2r94UNAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.181 [XNIO-1 task-2] v85yie-VSJubTs2r94UNAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.181 [XNIO-1 task-2] v85yie-VSJubTs2r94UNAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.186 [XNIO-1 task-2] BJiSar0DQ5O4RKyxk82Ntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.186 [XNIO-1 task-2] BJiSar0DQ5O4RKyxk82Ntg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.186 [XNIO-1 task-2] BJiSar0DQ5O4RKyxk82Ntg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.186 [XNIO-1 task-2] BJiSar0DQ5O4RKyxk82Ntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.186 [XNIO-1 task-2] BJiSar0DQ5O4RKyxk82Ntg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.187 [XNIO-1 task-2] BJiSar0DQ5O4RKyxk82Ntg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.191 [XNIO-1 task-2] iwqx_fYNTOiCJRGcZK8sBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.191 [XNIO-1 task-2] iwqx_fYNTOiCJRGcZK8sBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.191 [XNIO-1 task-2] iwqx_fYNTOiCJRGcZK8sBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.191 [XNIO-1 task-2] iwqx_fYNTOiCJRGcZK8sBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.191 [XNIO-1 task-2] iwqx_fYNTOiCJRGcZK8sBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.195 [XNIO-1 task-2] hIWgigalQKqSSWmw8xMtMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.195 [XNIO-1 task-2] hIWgigalQKqSSWmw8xMtMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.195 [XNIO-1 task-2] hIWgigalQKqSSWmw8xMtMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.195 [XNIO-1 task-2] hIWgigalQKqSSWmw8xMtMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.196 [XNIO-1 task-2] hIWgigalQKqSSWmw8xMtMw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.196 [XNIO-1 task-2] hIWgigalQKqSSWmw8xMtMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.203 [XNIO-1 task-2] TjHjCDjiSsm3vt4NCP9_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.203 [XNIO-1 task-2] TjHjCDjiSsm3vt4NCP9_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.203 [XNIO-1 task-2] TjHjCDjiSsm3vt4NCP9_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.203 [XNIO-1 task-2] TjHjCDjiSsm3vt4NCP9_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.204 [XNIO-1 task-2] TjHjCDjiSsm3vt4NCP9_vQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.206 [XNIO-1 task-2] PAW57OJwRcidkm-fefORNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.206 [XNIO-1 task-2] PAW57OJwRcidkm-fefORNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.206 [XNIO-1 task-2] PAW57OJwRcidkm-fefORNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.207 [XNIO-1 task-2] PAW57OJwRcidkm-fefORNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.207 [XNIO-1 task-2] PAW57OJwRcidkm-fefORNg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.207 [XNIO-1 task-2] PAW57OJwRcidkm-fefORNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.211 [XNIO-1 task-2] SW6MXoy4SjWuLBiloUne-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.212 [XNIO-1 task-2] SW6MXoy4SjWuLBiloUne-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.212 [XNIO-1 task-2] SW6MXoy4SjWuLBiloUne-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.212 [XNIO-1 task-2] SW6MXoy4SjWuLBiloUne-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.212 [XNIO-1 task-2] SW6MXoy4SjWuLBiloUne-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.215 [XNIO-1 task-2] cRefOr_IShyBHdAUG5KJ_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.215 [XNIO-1 task-2] cRefOr_IShyBHdAUG5KJ_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.215 [XNIO-1 task-2] cRefOr_IShyBHdAUG5KJ_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.215 [XNIO-1 task-2] cRefOr_IShyBHdAUG5KJ_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.215 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:622e50cf-b290-4010-9746-8210dc8c1710 +00:00:48.216 [XNIO-1 task-2] cRefOr_IShyBHdAUG5KJ_A DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2183fa-0029-4bf8-b4e1-546e036281c8", "6b2183fa-0029-4bf8-b4e1-546e036281c8", refreshToken) +00:00:48.237 [XNIO-1 task-2] qB2IV94hQM-Wfb3WWxI42g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.237 [XNIO-1 task-2] qB2IV94hQM-Wfb3WWxI42g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.237 [XNIO-1 task-2] qB2IV94hQM-Wfb3WWxI42g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.237 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4b7d25b4 +00:00:48.238 [XNIO-1 task-2] qB2IV94hQM-Wfb3WWxI42g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.239 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4b7d25b4 +00:00:48.243 [XNIO-1 task-2] vZeTxYIwSwe3SvNZeJ4AjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.243 [XNIO-1 task-2] vZeTxYIwSwe3SvNZeJ4AjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.243 [XNIO-1 task-2] vZeTxYIwSwe3SvNZeJ4AjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.243 [XNIO-1 task-2] vZeTxYIwSwe3SvNZeJ4AjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.248 [XNIO-1 task-2] Ax7Uv7BhRPqdzslgRPncXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.248 [XNIO-1 task-2] Ax7Uv7BhRPqdzslgRPncXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.248 [XNIO-1 task-2] Ax7Uv7BhRPqdzslgRPncXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.248 [XNIO-1 task-2] Ax7Uv7BhRPqdzslgRPncXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.248 [XNIO-1 task-2] Ax7Uv7BhRPqdzslgRPncXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2183fa-0029-4bf8-b4e1-546e036281c8", "6b2183fa-0029-4bf8-b4e1-546e036281c8", refreshToken) +00:00:48.250 [XNIO-1 task-2] Ax7Uv7BhRPqdzslgRPncXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b2183fa-0029-4bf8-b4e1-546e036281c8 is not found.","severity":"ERROR"} +00:00:48.265 [XNIO-1 task-2] wdOU5oMQQMexHMyt6r_i0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8 +00:00:48.265 [XNIO-1 task-2] wdOU5oMQQMexHMyt6r_i0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.265 [XNIO-1 task-2] wdOU5oMQQMexHMyt6r_i0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.266 [XNIO-1 task-2] wdOU5oMQQMexHMyt6r_i0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8 +00:00:48.266 [XNIO-1 task-2] wdOU5oMQQMexHMyt6r_i0w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b2183fa-0029-4bf8-b4e1-546e036281c8 +00:00:48.273 [XNIO-1 task-2] 15SUGIsiTsOsfJ9NELnKyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.274 [XNIO-1 task-2] 15SUGIsiTsOsfJ9NELnKyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.274 [XNIO-1 task-2] 15SUGIsiTsOsfJ9NELnKyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.274 [XNIO-1 task-2] 15SUGIsiTsOsfJ9NELnKyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.274 [XNIO-1 task-2] 15SUGIsiTsOsfJ9NELnKyA DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:48.274 [XNIO-1 task-2] 15SUGIsiTsOsfJ9NELnKyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:48.280 [XNIO-1 task-2] 2RYGWlWpSpasfW61DrK8DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.280 [XNIO-1 task-2] 2RYGWlWpSpasfW61DrK8DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.280 [XNIO-1 task-2] 2RYGWlWpSpasfW61DrK8DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.280 [XNIO-1 task-2] 2RYGWlWpSpasfW61DrK8DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.280 [XNIO-1 task-2] 2RYGWlWpSpasfW61DrK8DQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.284 [XNIO-1 task-2] 8Ug8fSzdRwG-aoigL0tRQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.285 [XNIO-1 task-2] 8Ug8fSzdRwG-aoigL0tRQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.285 [XNIO-1 task-2] 8Ug8fSzdRwG-aoigL0tRQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.285 [XNIO-1 task-2] 8Ug8fSzdRwG-aoigL0tRQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/30b23eda-915b-4c9f-afd8-44ad7718872f, base path is set to: null +00:00:48.286 [XNIO-1 task-2] 8Ug8fSzdRwG-aoigL0tRQw DEBUG com.networknt.schema.TypeValidator debug - validate( "30b23eda-915b-4c9f-afd8-44ad7718872f", "30b23eda-915b-4c9f-afd8-44ad7718872f", refreshToken) +00:00:48.287 [XNIO-1 task-2] 8Ug8fSzdRwG-aoigL0tRQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 30b23eda-915b-4c9f-afd8-44ad7718872f is not found.","severity":"ERROR"} +00:00:48.298 [XNIO-1 task-2] TwECXsCSR0y8-p2-UOU6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.298 [XNIO-1 task-2] TwECXsCSR0y8-p2-UOU6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.298 [XNIO-1 task-2] TwECXsCSR0y8-p2-UOU6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.298 [XNIO-1 task-2] TwECXsCSR0y8-p2-UOU6Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.299 [XNIO-1 task-2] TwECXsCSR0y8-p2-UOU6Ig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.306 [XNIO-1 task-2] -zs6JZlaSOmXAPvXAOYGRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.306 [XNIO-1 task-2] -zs6JZlaSOmXAPvXAOYGRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.306 [XNIO-1 task-2] -zs6JZlaSOmXAPvXAOYGRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.306 [XNIO-1 task-2] -zs6JZlaSOmXAPvXAOYGRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.307 [XNIO-1 task-2] -zs6JZlaSOmXAPvXAOYGRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:48.307 [XNIO-1 task-2] -zs6JZlaSOmXAPvXAOYGRQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:48.314 [XNIO-1 task-2] 3iYvE-1LQu-hnPt8N_hgGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.314 [XNIO-1 task-2] 3iYvE-1LQu-hnPt8N_hgGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.314 [XNIO-1 task-2] 3iYvE-1LQu-hnPt8N_hgGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.315 [XNIO-1 task-2] 3iYvE-1LQu-hnPt8N_hgGg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.319 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:20cf334a +00:00:48.321 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:20cf334a +00:00:48.323 [XNIO-1 task-2] NpfB70-zQoe6rd2wVJbrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.323 [XNIO-1 task-2] NpfB70-zQoe6rd2wVJbrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.323 [XNIO-1 task-2] NpfB70-zQoe6rd2wVJbrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.325 [XNIO-1 task-2] NpfB70-zQoe6rd2wVJbrDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.325 [XNIO-1 task-2] NpfB70-zQoe6rd2wVJbrDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.331 [XNIO-1 task-2] iFOmdLBnTyiAcNFjl8M8_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.331 [XNIO-1 task-2] iFOmdLBnTyiAcNFjl8M8_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.331 [XNIO-1 task-2] iFOmdLBnTyiAcNFjl8M8_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.331 [XNIO-1 task-2] iFOmdLBnTyiAcNFjl8M8_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.331 [XNIO-1 task-2] iFOmdLBnTyiAcNFjl8M8_g DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:48.332 [XNIO-1 task-2] iFOmdLBnTyiAcNFjl8M8_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:48.340 [XNIO-1 task-2] 6858Y6asSFyA-YATfLfAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:48.341 [XNIO-1 task-2] 6858Y6asSFyA-YATfLfAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.341 [XNIO-1 task-2] 6858Y6asSFyA-YATfLfAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.341 [XNIO-1 task-2] 6858Y6asSFyA-YATfLfAzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:48.341 [XNIO-1 task-2] 6858Y6asSFyA-YATfLfAzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:48.345 [XNIO-1 task-2] xH1Ws6MeR2yXv5uetSAmNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.351 [XNIO-1 task-2] xH1Ws6MeR2yXv5uetSAmNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.351 [XNIO-1 task-2] xH1Ws6MeR2yXv5uetSAmNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.352 [XNIO-1 task-2] xH1Ws6MeR2yXv5uetSAmNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.352 [XNIO-1 task-2] xH1Ws6MeR2yXv5uetSAmNw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.365 [XNIO-1 task-2] XvOrf_ScSNqOtBiV0qW8Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.365 [XNIO-1 task-2] XvOrf_ScSNqOtBiV0qW8Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.365 [XNIO-1 task-2] XvOrf_ScSNqOtBiV0qW8Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.365 [XNIO-1 task-2] XvOrf_ScSNqOtBiV0qW8Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.366 [XNIO-1 task-2] XvOrf_ScSNqOtBiV0qW8Gg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.375 [XNIO-1 task-2] MOntgtonQlaA50FT-Ii7yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.375 [XNIO-1 task-2] MOntgtonQlaA50FT-Ii7yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.375 [XNIO-1 task-2] MOntgtonQlaA50FT-Ii7yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.377 [XNIO-1 task-2] MOntgtonQlaA50FT-Ii7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.378 [XNIO-1 task-2] MOntgtonQlaA50FT-Ii7yA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.386 [XNIO-1 task-2] Q9Bhs5jORwSSNZyvNWzhxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.386 [XNIO-1 task-2] Q9Bhs5jORwSSNZyvNWzhxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.386 [XNIO-1 task-2] Q9Bhs5jORwSSNZyvNWzhxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.386 [XNIO-1 task-2] Q9Bhs5jORwSSNZyvNWzhxg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.387 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:02a6570c-9543-4ed7-97eb-311fef4f6252 +00:00:48.392 [XNIO-1 task-2] qHxKh6qYQnaR9reMmoCLwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.393 [XNIO-1 task-2] qHxKh6qYQnaR9reMmoCLwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.393 [XNIO-1 task-2] qHxKh6qYQnaR9reMmoCLwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.393 [XNIO-1 task-2] qHxKh6qYQnaR9reMmoCLwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.394 [XNIO-1 task-2] qHxKh6qYQnaR9reMmoCLwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.394 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.409 [XNIO-1 task-2] 0QTLBANyTR6euvK9nMAgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f719b73a-143f-43ff-9ae7-bffd0094af0d +00:00:48.409 [XNIO-1 task-2] 0QTLBANyTR6euvK9nMAgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.409 [XNIO-1 task-2] 0QTLBANyTR6euvK9nMAgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.409 [XNIO-1 task-2] 0QTLBANyTR6euvK9nMAgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f719b73a-143f-43ff-9ae7-bffd0094af0d +00:00:48.410 [XNIO-1 task-2] 0QTLBANyTR6euvK9nMAgkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f719b73a-143f-43ff-9ae7-bffd0094af0d +00:00:48.415 [XNIO-1 task-2] lwRFilg7RNesIoOHvyDoWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.415 [XNIO-1 task-2] lwRFilg7RNesIoOHvyDoWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.415 [XNIO-1 task-2] lwRFilg7RNesIoOHvyDoWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.416 [XNIO-1 task-2] lwRFilg7RNesIoOHvyDoWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.416 [XNIO-1 task-2] lwRFilg7RNesIoOHvyDoWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.416 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ce09941a +00:00:48.418 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ce09941a +00:00:48.420 [XNIO-1 task-2] Xf9Qiop_RoqBI29L0m-rog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.423 [XNIO-1 task-2] Xf9Qiop_RoqBI29L0m-rog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.423 [XNIO-1 task-2] Xf9Qiop_RoqBI29L0m-rog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.423 [XNIO-1 task-2] Xf9Qiop_RoqBI29L0m-rog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.424 [XNIO-1 task-2] Xf9Qiop_RoqBI29L0m-rog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.429 [XNIO-1 task-2] PT7ddd5KThinUV09pbWoCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.430 [XNIO-1 task-2] PT7ddd5KThinUV09pbWoCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.430 [XNIO-1 task-2] PT7ddd5KThinUV09pbWoCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.430 [XNIO-1 task-2] PT7ddd5KThinUV09pbWoCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.431 [XNIO-1 task-2] PT7ddd5KThinUV09pbWoCw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.431 [XNIO-1 task-2] PT7ddd5KThinUV09pbWoCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.440 [XNIO-1 task-2] D2j0nYv5TjiUuhVbg16h0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.440 [XNIO-1 task-2] D2j0nYv5TjiUuhVbg16h0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.440 [XNIO-1 task-2] D2j0nYv5TjiUuhVbg16h0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.440 [XNIO-1 task-2] D2j0nYv5TjiUuhVbg16h0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.440 [XNIO-1 task-2] D2j0nYv5TjiUuhVbg16h0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.447 [XNIO-1 task-2] eUbNPDy3RrGr1SNuhtxNXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.447 [XNIO-1 task-2] eUbNPDy3RrGr1SNuhtxNXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.447 [XNIO-1 task-2] eUbNPDy3RrGr1SNuhtxNXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.448 [XNIO-1 task-2] eUbNPDy3RrGr1SNuhtxNXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.448 [XNIO-1 task-2] eUbNPDy3RrGr1SNuhtxNXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2183fa-0029-4bf8-b4e1-546e036281c8", "6b2183fa-0029-4bf8-b4e1-546e036281c8", refreshToken) +00:00:48.448 [XNIO-1 task-2] eUbNPDy3RrGr1SNuhtxNXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b2183fa-0029-4bf8-b4e1-546e036281c8 is not found.","severity":"ERROR"} +00:00:48.451 [XNIO-1 task-2] opEWAhsbQ4Cd0iAu-HvBUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.451 [XNIO-1 task-2] opEWAhsbQ4Cd0iAu-HvBUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.452 [XNIO-1 task-2] opEWAhsbQ4Cd0iAu-HvBUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.456 [XNIO-1 task-2] opEWAhsbQ4Cd0iAu-HvBUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.457 [XNIO-1 task-2] opEWAhsbQ4Cd0iAu-HvBUw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.461 [XNIO-1 task-2] hzgrh1v2T86nnZd7f1mgeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.462 [XNIO-1 task-2] hzgrh1v2T86nnZd7f1mgeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.462 [XNIO-1 task-2] hzgrh1v2T86nnZd7f1mgeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.462 [XNIO-1 task-2] hzgrh1v2T86nnZd7f1mgeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.462 [XNIO-1 task-2] hzgrh1v2T86nnZd7f1mgeg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2183fa-0029-4bf8-b4e1-546e036281c8", "6b2183fa-0029-4bf8-b4e1-546e036281c8", refreshToken) +00:00:48.463 [XNIO-1 task-2] hzgrh1v2T86nnZd7f1mgeg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b2183fa-0029-4bf8-b4e1-546e036281c8 is not found.","severity":"ERROR"} +00:00:48.480 [XNIO-1 task-2] fOZLdziNS0CRBHjd2Ne7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.480 [XNIO-1 task-2] fOZLdziNS0CRBHjd2Ne7Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.481 [XNIO-1 task-2] fOZLdziNS0CRBHjd2Ne7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.482 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ad6c8978-cd89-48d8-aea8-69e2dab0e77b +00:00:48.482 [XNIO-1 task-2] fOZLdziNS0CRBHjd2Ne7Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.482 [XNIO-1 task-2] fOZLdziNS0CRBHjd2Ne7Aw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.498 [XNIO-1 task-2] gn-YsIy0RVuOCjExyNam4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.498 [XNIO-1 task-2] gn-YsIy0RVuOCjExyNam4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.498 [XNIO-1 task-2] gn-YsIy0RVuOCjExyNam4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.499 [XNIO-1 task-2] gn-YsIy0RVuOCjExyNam4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.506 [XNIO-1 task-2] 7JA5rIt9QdGkznRT9za8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.506 [XNIO-1 task-2] 7JA5rIt9QdGkznRT9za8Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.506 [XNIO-1 task-2] 7JA5rIt9QdGkznRT9za8Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.506 [XNIO-1 task-2] 7JA5rIt9QdGkznRT9za8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.507 [XNIO-1 task-2] 7JA5rIt9QdGkznRT9za8Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.507 [XNIO-1 task-2] 7JA5rIt9QdGkznRT9za8Xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.512 [XNIO-1 task-2] d9vbdlYGRHWfto-CAX4UzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.512 [XNIO-1 task-2] d9vbdlYGRHWfto-CAX4UzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.513 [XNIO-1 task-2] d9vbdlYGRHWfto-CAX4UzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.513 [XNIO-1 task-2] d9vbdlYGRHWfto-CAX4UzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.532 [XNIO-1 task-2] kem80ylFRGaSnVAOk3EN9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.532 [XNIO-1 task-2] kem80ylFRGaSnVAOk3EN9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.533 [XNIO-1 task-2] kem80ylFRGaSnVAOk3EN9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.533 [XNIO-1 task-2] kem80ylFRGaSnVAOk3EN9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b2183fa-0029-4bf8-b4e1-546e036281c8, base path is set to: null +00:00:48.533 [XNIO-1 task-2] kem80ylFRGaSnVAOk3EN9A DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2183fa-0029-4bf8-b4e1-546e036281c8", "6b2183fa-0029-4bf8-b4e1-546e036281c8", refreshToken) +00:00:48.534 [XNIO-1 task-2] kem80ylFRGaSnVAOk3EN9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b2183fa-0029-4bf8-b4e1-546e036281c8 is not found.","severity":"ERROR"} +00:00:48.545 [XNIO-1 task-2] JgXykKkiRcKaLZvz5_v3oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.545 [XNIO-1 task-2] JgXykKkiRcKaLZvz5_v3oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.545 [XNIO-1 task-2] JgXykKkiRcKaLZvz5_v3oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.545 [XNIO-1 task-2] JgXykKkiRcKaLZvz5_v3oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.546 [XNIO-1 task-2] JgXykKkiRcKaLZvz5_v3oA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.552 [XNIO-1 task-2] __MxI9qcRjK6rTaCGX_xrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.552 [XNIO-1 task-2] __MxI9qcRjK6rTaCGX_xrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.553 [XNIO-1 task-2] __MxI9qcRjK6rTaCGX_xrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.553 [XNIO-1 task-2] __MxI9qcRjK6rTaCGX_xrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.556 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ad6c8978-cd89-48d8-aea8-69e2dab0e77b +00:00:48.567 [XNIO-1 task-2] 52wTUF6qQfOMTfAYUJ92eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.567 [XNIO-1 task-2] 52wTUF6qQfOMTfAYUJ92eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.567 [XNIO-1 task-2] 52wTUF6qQfOMTfAYUJ92eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.568 [XNIO-1 task-2] 52wTUF6qQfOMTfAYUJ92eA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.572 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c3e7e8c5-4c1b-42ba-9eb8-919f8c7e0c3b +00:00:48.579 [XNIO-1 task-2] 9sBJ7bFVTsywC44MqtVkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.579 [XNIO-1 task-2] 9sBJ7bFVTsywC44MqtVkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.579 [XNIO-1 task-2] 9sBJ7bFVTsywC44MqtVkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.579 [XNIO-1 task-2] 9sBJ7bFVTsywC44MqtVkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.579 [XNIO-1 task-2] 9sBJ7bFVTsywC44MqtVkkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.597 [XNIO-1 task-2] Wo2OnqPST2WhYRB1zDhPUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.598 [XNIO-1 task-2] Wo2OnqPST2WhYRB1zDhPUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.598 [XNIO-1 task-2] Wo2OnqPST2WhYRB1zDhPUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.599 [XNIO-1 task-2] Wo2OnqPST2WhYRB1zDhPUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.599 [XNIO-1 task-2] Wo2OnqPST2WhYRB1zDhPUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.613 [XNIO-1 task-2] GBtTWAH-SPWG80D8ISauNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.614 [XNIO-1 task-2] GBtTWAH-SPWG80D8ISauNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.614 [XNIO-1 task-2] GBtTWAH-SPWG80D8ISauNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.614 [XNIO-1 task-2] GBtTWAH-SPWG80D8ISauNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.614 [XNIO-1 task-2] GBtTWAH-SPWG80D8ISauNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:48.619 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d3237065 +00:00:48.624 [XNIO-1 task-2] wR8RRjhnTU-9Wpxa8T0CwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f, base path is set to: null +00:00:48.625 [XNIO-1 task-2] wR8RRjhnTU-9Wpxa8T0CwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.626 [XNIO-1 task-2] wR8RRjhnTU-9Wpxa8T0CwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.626 [XNIO-1 task-2] wR8RRjhnTU-9Wpxa8T0CwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f, base path is set to: null +00:00:48.626 [XNIO-1 task-2] wR8RRjhnTU-9Wpxa8T0CwA DEBUG com.networknt.schema.TypeValidator debug - validate( "ddbc0f92-4025-434d-954d-237dd1b2648f", "ddbc0f92-4025-434d-954d-237dd1b2648f", refreshToken) +00:00:48.626 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.634 [XNIO-1 task-2] nocIgvO7RISgl86GIsGqOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.635 [XNIO-1 task-2] nocIgvO7RISgl86GIsGqOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.635 [XNIO-1 task-2] nocIgvO7RISgl86GIsGqOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.635 [XNIO-1 task-2] nocIgvO7RISgl86GIsGqOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.635 [XNIO-1 task-2] nocIgvO7RISgl86GIsGqOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:48.635 [XNIO-1 task-2] nocIgvO7RISgl86GIsGqOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:48.640 [XNIO-1 task-2] rOXSjYU1QU-oPeFqFXLCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.640 [XNIO-1 task-2] rOXSjYU1QU-oPeFqFXLCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.640 [XNIO-1 task-2] rOXSjYU1QU-oPeFqFXLCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.640 [XNIO-1 task-2] rOXSjYU1QU-oPeFqFXLCzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.640 [XNIO-1 task-2] rOXSjYU1QU-oPeFqFXLCzQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.647 [XNIO-1 task-2] rOXSjYU1QU-oPeFqFXLCzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ddbc0f92-4025-434d-954d-237dd1b2648f is not found.","severity":"ERROR"} +00:00:48.652 [XNIO-1 task-2] 7D-_iu0ISA-hUMry7-WKvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.652 [XNIO-1 task-2] 7D-_iu0ISA-hUMry7-WKvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.652 [XNIO-1 task-2] 7D-_iu0ISA-hUMry7-WKvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.652 [XNIO-1 task-2] 7D-_iu0ISA-hUMry7-WKvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.667 [XNIO-1 task-2] Y5hqh4hAQme-tpT-C2TdWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.667 [XNIO-1 task-2] Y5hqh4hAQme-tpT-C2TdWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.667 [XNIO-1 task-2] Y5hqh4hAQme-tpT-C2TdWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.667 [XNIO-1 task-2] Y5hqh4hAQme-tpT-C2TdWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.668 [XNIO-1 task-2] Y5hqh4hAQme-tpT-C2TdWA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.680 [XNIO-1 task-2] S_HDvLH3QPG5ADD3SHlVIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:48.680 [XNIO-1 task-2] S_HDvLH3QPG5ADD3SHlVIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.680 [XNIO-1 task-2] S_HDvLH3QPG5ADD3SHlVIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.680 [XNIO-1 task-2] S_HDvLH3QPG5ADD3SHlVIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:48.680 [XNIO-1 task-2] S_HDvLH3QPG5ADD3SHlVIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:48.683 [XNIO-1 task-2] TrPQChtXTXWfCTbpauhD0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.684 [XNIO-1 task-2] TrPQChtXTXWfCTbpauhD0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.684 [XNIO-1 task-2] TrPQChtXTXWfCTbpauhD0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.684 [XNIO-1 task-2] TrPQChtXTXWfCTbpauhD0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:48.684 [XNIO-1 task-2] TrPQChtXTXWfCTbpauhD0w DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:48.684 [XNIO-1 task-2] TrPQChtXTXWfCTbpauhD0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:48.687 [XNIO-1 task-2] yuFSZzZSQ3i2LRi2TBA_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.687 [XNIO-1 task-2] yuFSZzZSQ3i2LRi2TBA_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.687 [XNIO-1 task-2] yuFSZzZSQ3i2LRi2TBA_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.687 [XNIO-1 task-2] yuFSZzZSQ3i2LRi2TBA_7w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.711 [XNIO-1 task-2] irBzNxFJQsCdJVvhb9Metw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f, base path is set to: null +00:00:48.712 [XNIO-1 task-2] irBzNxFJQsCdJVvhb9Metw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.712 [XNIO-1 task-2] irBzNxFJQsCdJVvhb9Metw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.712 [XNIO-1 task-2] irBzNxFJQsCdJVvhb9Metw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f, base path is set to: null +00:00:48.712 [XNIO-1 task-2] irBzNxFJQsCdJVvhb9Metw DEBUG com.networknt.schema.TypeValidator debug - validate( "ddbc0f92-4025-434d-954d-237dd1b2648f", "ddbc0f92-4025-434d-954d-237dd1b2648f", refreshToken) +00:00:48.712 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.713 [XNIO-1 task-2] irBzNxFJQsCdJVvhb9Metw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ddbc0f92-4025-434d-954d-237dd1b2648f is not found.","severity":"ERROR"} +00:00:48.716 [XNIO-1 task-2] _GhWHHL3RteS1pKL_Qjd3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.716 [XNIO-1 task-2] _GhWHHL3RteS1pKL_Qjd3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.716 [XNIO-1 task-2] _GhWHHL3RteS1pKL_Qjd3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.716 [XNIO-1 task-2] _GhWHHL3RteS1pKL_Qjd3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.717 [XNIO-1 task-2] _GhWHHL3RteS1pKL_Qjd3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.717 [XNIO-1 task-2] _GhWHHL3RteS1pKL_Qjd3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.721 [XNIO-1 task-2] JyEFcTrIQvyD8sHg5D0oYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.722 [XNIO-1 task-2] JyEFcTrIQvyD8sHg5D0oYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.722 [XNIO-1 task-2] JyEFcTrIQvyD8sHg5D0oYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.722 [XNIO-1 task-2] JyEFcTrIQvyD8sHg5D0oYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.731 [XNIO-1 task-2] hxey2uvbT5qZUFxrzRoZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.731 [XNIO-1 task-2] hxey2uvbT5qZUFxrzRoZPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.731 [XNIO-1 task-2] hxey2uvbT5qZUFxrzRoZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.731 [XNIO-1 task-2] hxey2uvbT5qZUFxrzRoZPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.732 [XNIO-1 task-2] hxey2uvbT5qZUFxrzRoZPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.740 [XNIO-1 task-2] jdqM-xboQEWyGV8FW1fQvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.740 [XNIO-1 task-2] jdqM-xboQEWyGV8FW1fQvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.741 [XNIO-1 task-2] jdqM-xboQEWyGV8FW1fQvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.741 [XNIO-1 task-2] jdqM-xboQEWyGV8FW1fQvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.757 [XNIO-1 task-2] NqaYiqiBQ9eT_PFEOx3a1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.758 [XNIO-1 task-2] NqaYiqiBQ9eT_PFEOx3a1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.758 [XNIO-1 task-2] NqaYiqiBQ9eT_PFEOx3a1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.758 [XNIO-1 task-2] NqaYiqiBQ9eT_PFEOx3a1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.758 [XNIO-1 task-2] NqaYiqiBQ9eT_PFEOx3a1w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.766 [XNIO-1 task-2] u98G8ZX9Rpa_AV3VSO1-TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.766 [XNIO-1 task-2] u98G8ZX9Rpa_AV3VSO1-TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.766 [XNIO-1 task-2] u98G8ZX9Rpa_AV3VSO1-TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.766 [XNIO-1 task-2] u98G8ZX9Rpa_AV3VSO1-TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.766 [XNIO-1 task-2] u98G8ZX9Rpa_AV3VSO1-TQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.781 [XNIO-1 task-2] QKxu66J3QruJCzvanzWowQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.781 [XNIO-1 task-2] QKxu66J3QruJCzvanzWowQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.781 [XNIO-1 task-2] QKxu66J3QruJCzvanzWowQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.783 [XNIO-1 task-2] QKxu66J3QruJCzvanzWowQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.783 [XNIO-1 task-2] QKxu66J3QruJCzvanzWowQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.783 [XNIO-1 task-2] QKxu66J3QruJCzvanzWowQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.787 [XNIO-1 task-2] KT_0dCO_Qpm2ZCmk5VvtuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.788 [XNIO-1 task-2] KT_0dCO_Qpm2ZCmk5VvtuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.788 [XNIO-1 task-2] KT_0dCO_Qpm2ZCmk5VvtuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.788 [XNIO-1 task-2] KT_0dCO_Qpm2ZCmk5VvtuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.793 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:641439d7 +00:00:48.795 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:641439d7 +00:00:48.806 [XNIO-1 task-2] EeTNG_7cRMqyxc11ml1UGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.806 [XNIO-1 task-2] EeTNG_7cRMqyxc11ml1UGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.807 [XNIO-1 task-2] EeTNG_7cRMqyxc11ml1UGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.807 [XNIO-1 task-2] EeTNG_7cRMqyxc11ml1UGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.807 [XNIO-1 task-2] EeTNG_7cRMqyxc11ml1UGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.810 [XNIO-1 task-2] WI5Rga5QTiCHwCfShNqNoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.811 [XNIO-1 task-2] WI5Rga5QTiCHwCfShNqNoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.811 [XNIO-1 task-2] WI5Rga5QTiCHwCfShNqNoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.811 [XNIO-1 task-2] WI5Rga5QTiCHwCfShNqNoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.811 [XNIO-1 task-2] WI5Rga5QTiCHwCfShNqNoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.812 [XNIO-1 task-2] WI5Rga5QTiCHwCfShNqNoA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.812 [XNIO-1 task-2] WI5Rga5QTiCHwCfShNqNoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.816 [XNIO-1 task-2] 7fD5120jS3mvRGqzL7mGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.816 [XNIO-1 task-2] 7fD5120jS3mvRGqzL7mGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.816 [XNIO-1 task-2] 7fD5120jS3mvRGqzL7mGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.816 [XNIO-1 task-2] 7fD5120jS3mvRGqzL7mGcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.832 [XNIO-1 task-2] P69ePlG-R6KVjEBJuXLBZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.832 [XNIO-1 task-2] P69ePlG-R6KVjEBJuXLBZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.832 [XNIO-1 task-2] P69ePlG-R6KVjEBJuXLBZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.832 [XNIO-1 task-2] P69ePlG-R6KVjEBJuXLBZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:48.833 [XNIO-1 task-2] P69ePlG-R6KVjEBJuXLBZg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:48.833 [XNIO-1 task-2] P69ePlG-R6KVjEBJuXLBZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:48.836 [XNIO-1 task-2] pS0pvZb_SFK4SwLE7dJ73A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.837 [XNIO-1 task-2] pS0pvZb_SFK4SwLE7dJ73A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.837 [XNIO-1 task-2] pS0pvZb_SFK4SwLE7dJ73A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.837 [XNIO-1 task-2] pS0pvZb_SFK4SwLE7dJ73A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.845 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4f5cb1db-994d-476e-a34b-d55c7f277d90 +00:00:48.849 [XNIO-1 task-2] HVLB05YiQ2e_hXVMrGWWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/02a6570c-9543-4ed7-97eb-311fef4f6252 +00:00:48.850 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4f5cb1db-994d-476e-a34b-d55c7f277d90 +00:00:48.850 [XNIO-1 task-2] HVLB05YiQ2e_hXVMrGWWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.850 [XNIO-1 task-2] HVLB05YiQ2e_hXVMrGWWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.850 [XNIO-1 task-2] HVLB05YiQ2e_hXVMrGWWpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/02a6570c-9543-4ed7-97eb-311fef4f6252 +00:00:48.850 [XNIO-1 task-2] HVLB05YiQ2e_hXVMrGWWpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 02a6570c-9543-4ed7-97eb-311fef4f6252 +00:00:48.866 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b83a090-79ee-4eb4-b75d-65549034f7d9 +00:00:48.867 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b83a090-79ee-4eb4-b75d-65549034f7d9 +00:00:48.869 [XNIO-1 task-2] TJ8XhCI0SM-kTDEh2T8RCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.870 [XNIO-1 task-2] TJ8XhCI0SM-kTDEh2T8RCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.871 [XNIO-1 task-2] TJ8XhCI0SM-kTDEh2T8RCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.871 [XNIO-1 task-2] TJ8XhCI0SM-kTDEh2T8RCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.871 [XNIO-1 task-2] TJ8XhCI0SM-kTDEh2T8RCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.883 [XNIO-1 task-2] ZlxW9ihfTtulwN8vFqM_iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.883 [XNIO-1 task-2] ZlxW9ihfTtulwN8vFqM_iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.883 [XNIO-1 task-2] ZlxW9ihfTtulwN8vFqM_iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.884 [XNIO-1 task-2] ZlxW9ihfTtulwN8vFqM_iw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.885 [XNIO-1 task-2] ZlxW9ihfTtulwN8vFqM_iw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.897 [XNIO-1 task-2] yQ_HpcfLQdizaPBL-4-PDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.897 [XNIO-1 task-2] yQ_HpcfLQdizaPBL-4-PDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.897 [XNIO-1 task-2] yQ_HpcfLQdizaPBL-4-PDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.897 [XNIO-1 task-2] yQ_HpcfLQdizaPBL-4-PDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.898 [XNIO-1 task-2] yQ_HpcfLQdizaPBL-4-PDg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.910 [XNIO-1 task-2] 5fscSGToSJeLICjCK0mIXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.910 [XNIO-1 task-2] 5fscSGToSJeLICjCK0mIXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.910 [XNIO-1 task-2] 5fscSGToSJeLICjCK0mIXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:48.910 [XNIO-1 task-2] 5fscSGToSJeLICjCK0mIXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.911 [XNIO-1 task-2] 5fscSGToSJeLICjCK0mIXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.918 [XNIO-1 task-2] -xe3XkraTqaRyRmwtH4YDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/02a6570c-9543-4ed7-97eb-311fef4f6252, base path is set to: null +00:00:48.918 [XNIO-1 task-2] -xe3XkraTqaRyRmwtH4YDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.918 [XNIO-1 task-2] -xe3XkraTqaRyRmwtH4YDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.918 [XNIO-1 task-2] -xe3XkraTqaRyRmwtH4YDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/02a6570c-9543-4ed7-97eb-311fef4f6252, base path is set to: null +00:00:48.919 [XNIO-1 task-2] -xe3XkraTqaRyRmwtH4YDw DEBUG com.networknt.schema.TypeValidator debug - validate( "02a6570c-9543-4ed7-97eb-311fef4f6252", "02a6570c-9543-4ed7-97eb-311fef4f6252", refreshToken) +00:00:48.919 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:02a6570c-9543-4ed7-97eb-311fef4f6252 +00:00:48.925 [XNIO-1 task-2] W1bf7vffSgy8gS3P2NRZwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.925 [XNIO-1 task-2] W1bf7vffSgy8gS3P2NRZwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.925 [XNIO-1 task-2] W1bf7vffSgy8gS3P2NRZwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.925 [XNIO-1 task-2] W1bf7vffSgy8gS3P2NRZwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.926 [XNIO-1 task-2] W1bf7vffSgy8gS3P2NRZwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.928 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:bc90251f +00:00:48.933 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d000855d-39f0-422f-8215-7020fe3b5dc3 +00:00:48.940 [XNIO-1 task-2] XxLE2pocRpmPDKhsL0PBOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.940 [XNIO-1 task-2] XxLE2pocRpmPDKhsL0PBOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.940 [XNIO-1 task-2] XxLE2pocRpmPDKhsL0PBOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.940 [XNIO-1 task-2] XxLE2pocRpmPDKhsL0PBOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.977 [XNIO-1 task-2] qYeQCsfaRQS3NSp5LvWS4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f, base path is set to: null +00:00:48.978 [XNIO-1 task-2] qYeQCsfaRQS3NSp5LvWS4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.978 [XNIO-1 task-2] qYeQCsfaRQS3NSp5LvWS4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:48.978 [XNIO-1 task-2] qYeQCsfaRQS3NSp5LvWS4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f, base path is set to: null +00:00:48.978 [XNIO-1 task-2] qYeQCsfaRQS3NSp5LvWS4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ddbc0f92-4025-434d-954d-237dd1b2648f", "ddbc0f92-4025-434d-954d-237dd1b2648f", refreshToken) +00:00:48.978 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:48.988 [XNIO-1 task-2] 9O7C7pkQQMWMpIX3D3PPyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.988 [XNIO-1 task-2] 9O7C7pkQQMWMpIX3D3PPyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:48.988 [XNIO-1 task-2] 9O7C7pkQQMWMpIX3D3PPyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:48.988 [XNIO-1 task-2] 9O7C7pkQQMWMpIX3D3PPyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.989 [XNIO-1 task-2] 9O7C7pkQQMWMpIX3D3PPyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:48.993 [XNIO-1 task-2] 8pooKfz9TnelTmpHYqmKGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.994 [XNIO-1 task-2] 8pooKfz9TnelTmpHYqmKGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.994 [XNIO-1 task-2] 8pooKfz9TnelTmpHYqmKGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:48.994 [XNIO-1 task-2] 8pooKfz9TnelTmpHYqmKGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.005 [XNIO-1 task-2] DHUNh-EFQ42GZ3cQw3LEEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.005 [XNIO-1 task-2] DHUNh-EFQ42GZ3cQw3LEEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.005 [XNIO-1 task-2] DHUNh-EFQ42GZ3cQw3LEEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.005 [XNIO-1 task-2] DHUNh-EFQ42GZ3cQw3LEEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.006 [XNIO-1 task-2] DHUNh-EFQ42GZ3cQw3LEEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.006 [XNIO-1 task-2] DHUNh-EFQ42GZ3cQw3LEEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.009 [XNIO-1 task-2] SgmxWYMzSoqnhRufHFxRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:49.010 [XNIO-1 task-2] SgmxWYMzSoqnhRufHFxRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.010 [XNIO-1 task-2] SgmxWYMzSoqnhRufHFxRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.010 [XNIO-1 task-2] SgmxWYMzSoqnhRufHFxRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:49.010 [XNIO-1 task-2] SgmxWYMzSoqnhRufHFxRng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:49.012 [XNIO-1 task-2] SgmxWYMzSoqnhRufHFxRng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ddbc0f92-4025-434d-954d-237dd1b2648f is not found.","severity":"ERROR"} +00:00:49.014 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ce09941a +00:00:49.015 [XNIO-1 task-2] 54pP87HiT8qRJfuMzIscLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.015 [XNIO-1 task-2] 54pP87HiT8qRJfuMzIscLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.015 [XNIO-1 task-2] 54pP87HiT8qRJfuMzIscLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.016 [XNIO-1 task-2] 54pP87HiT8qRJfuMzIscLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.016 [XNIO-1 task-2] 54pP87HiT8qRJfuMzIscLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.019 [XNIO-1 task-2] CCNtnGHyT2esKAv7FMEo5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.019 [XNIO-1 task-2] CCNtnGHyT2esKAv7FMEo5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.019 [XNIO-1 task-2] CCNtnGHyT2esKAv7FMEo5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.019 [XNIO-1 task-2] CCNtnGHyT2esKAv7FMEo5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.021 [XNIO-1 task-2] CCNtnGHyT2esKAv7FMEo5w DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.021 [XNIO-1 task-2] CCNtnGHyT2esKAv7FMEo5w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.028 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:10e31b9d-1b69-4b9a-8c6a-4f8964f12876 +00:00:49.029 [XNIO-1 task-2] dfQXlXoZT7Oaes29YFJvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.029 [XNIO-1 task-2] dfQXlXoZT7Oaes29YFJvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.029 [XNIO-1 task-2] dfQXlXoZT7Oaes29YFJvbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.029 [XNIO-1 task-2] dfQXlXoZT7Oaes29YFJvbw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.040 [XNIO-1 task-2] r_vYDzJ0RIa9Hh3ElpBmNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.042 [XNIO-1 task-2] r_vYDzJ0RIa9Hh3ElpBmNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.042 [XNIO-1 task-2] r_vYDzJ0RIa9Hh3ElpBmNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.043 [XNIO-1 task-2] r_vYDzJ0RIa9Hh3ElpBmNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.043 [XNIO-1 task-2] r_vYDzJ0RIa9Hh3ElpBmNw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.052 [XNIO-1 task-2] T0MSQH52S0aSR9z_R9tVqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:49.052 [XNIO-1 task-2] T0MSQH52S0aSR9z_R9tVqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.052 [XNIO-1 task-2] T0MSQH52S0aSR9z_R9tVqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.053 [XNIO-1 task-2] T0MSQH52S0aSR9z_R9tVqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:49.053 [XNIO-1 task-2] T0MSQH52S0aSR9z_R9tVqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:49.055 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e28a4da4-73d7-42e0-87a8-562b8ce9eed9 +00:00:49.058 [XNIO-1 task-2] T0MSQH52S0aSR9z_R9tVqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ddbc0f92-4025-434d-954d-237dd1b2648f is not found.","severity":"ERROR"} +00:00:49.066 [XNIO-1 task-2] FLA9Jn1zS7qG0jH-Fsa66A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.066 [XNIO-1 task-2] FLA9Jn1zS7qG0jH-Fsa66A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.066 [XNIO-1 task-2] FLA9Jn1zS7qG0jH-Fsa66A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.066 [XNIO-1 task-2] FLA9Jn1zS7qG0jH-Fsa66A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.067 [XNIO-1 task-2] FLA9Jn1zS7qG0jH-Fsa66A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.074 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddbc0f92-4025-434d-954d-237dd1b2648f +00:00:49.074 [XNIO-1 task-2] crW3lbmTRyOHraI3gD3LvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.075 [XNIO-1 task-2] crW3lbmTRyOHraI3gD3LvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.075 [XNIO-1 task-2] crW3lbmTRyOHraI3gD3LvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.075 [XNIO-1 task-2] crW3lbmTRyOHraI3gD3LvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.075 [XNIO-1 task-2] crW3lbmTRyOHraI3gD3LvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.079 [XNIO-1 task-2] Z--Jv3tkRdSUqhwKCqZQOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.079 [XNIO-1 task-2] Z--Jv3tkRdSUqhwKCqZQOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.079 [XNIO-1 task-2] Z--Jv3tkRdSUqhwKCqZQOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.080 [XNIO-1 task-2] Z--Jv3tkRdSUqhwKCqZQOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.080 [XNIO-1 task-2] Z--Jv3tkRdSUqhwKCqZQOA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.093 [XNIO-1 task-2] qXhvQKtcRouCWeFIn0Z7bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.094 [XNIO-1 task-2] qXhvQKtcRouCWeFIn0Z7bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.094 [XNIO-1 task-2] qXhvQKtcRouCWeFIn0Z7bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.094 [XNIO-1 task-2] qXhvQKtcRouCWeFIn0Z7bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.094 [XNIO-1 task-2] qXhvQKtcRouCWeFIn0Z7bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.099 [XNIO-1 task-2] lvAsLedaQg2d-bOelre3cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.099 [XNIO-1 task-2] lvAsLedaQg2d-bOelre3cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.100 [XNIO-1 task-2] lvAsLedaQg2d-bOelre3cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.100 [XNIO-1 task-2] lvAsLedaQg2d-bOelre3cA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.100 [XNIO-1 task-2] lvAsLedaQg2d-bOelre3cA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.116 [XNIO-1 task-2] oGLQ_HHCQZGvPEdqmLLR5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.116 [XNIO-1 task-2] oGLQ_HHCQZGvPEdqmLLR5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.116 [XNIO-1 task-2] oGLQ_HHCQZGvPEdqmLLR5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.116 [XNIO-1 task-2] oGLQ_HHCQZGvPEdqmLLR5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.117 [XNIO-1 task-2] oGLQ_HHCQZGvPEdqmLLR5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.123 [XNIO-1 task-2] KbIF9T3lQVSx_N19pf7umg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.123 [XNIO-1 task-2] KbIF9T3lQVSx_N19pf7umg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.123 [XNIO-1 task-2] KbIF9T3lQVSx_N19pf7umg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.123 [XNIO-1 task-2] KbIF9T3lQVSx_N19pf7umg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.123 [XNIO-1 task-2] KbIF9T3lQVSx_N19pf7umg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:49.123 [XNIO-1 task-2] KbIF9T3lQVSx_N19pf7umg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:49.127 [XNIO-1 task-2] yk8P785oSNecb3a9pmuTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.127 [XNIO-1 task-2] yk8P785oSNecb3a9pmuTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.127 [XNIO-1 task-2] yk8P785oSNecb3a9pmuTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.128 [XNIO-1 task-2] yk8P785oSNecb3a9pmuTpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.134 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d3237065 +00:00:49.138 [XNIO-1 task-2] j2I3huJURDm8ulDo593OeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.138 [XNIO-1 task-2] j2I3huJURDm8ulDo593OeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.139 [XNIO-1 task-2] j2I3huJURDm8ulDo593OeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.139 [XNIO-1 task-2] j2I3huJURDm8ulDo593OeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.139 [XNIO-1 task-2] j2I3huJURDm8ulDo593OeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:49.139 [XNIO-1 task-2] j2I3huJURDm8ulDo593OeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:49.146 [XNIO-1 task-2] IuU6s0qeR7Cs1E9KEfG3Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e28a4da4-73d7-42e0-87a8-562b8ce9eed9 +00:00:49.147 [XNIO-1 task-2] IuU6s0qeR7Cs1E9KEfG3Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.147 [XNIO-1 task-2] IuU6s0qeR7Cs1E9KEfG3Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.147 [XNIO-1 task-2] IuU6s0qeR7Cs1E9KEfG3Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e28a4da4-73d7-42e0-87a8-562b8ce9eed9 +00:00:49.147 [XNIO-1 task-2] IuU6s0qeR7Cs1E9KEfG3Jw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e28a4da4-73d7-42e0-87a8-562b8ce9eed9 +00:00:49.168 [XNIO-1 task-2] 7fd8C67CRlW-RCDd3yAHww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.168 [XNIO-1 task-2] 7fd8C67CRlW-RCDd3yAHww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.169 [XNIO-1 task-2] 7fd8C67CRlW-RCDd3yAHww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.169 [XNIO-1 task-2] 7fd8C67CRlW-RCDd3yAHww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.169 [XNIO-1 task-2] 7fd8C67CRlW-RCDd3yAHww DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:49.169 [XNIO-1 task-2] 7fd8C67CRlW-RCDd3yAHww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:49.175 [XNIO-1 task-2] 6T3fdmXAQxqCl8RUZS0TOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.176 [XNIO-1 task-2] 6T3fdmXAQxqCl8RUZS0TOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.176 [XNIO-1 task-2] 6T3fdmXAQxqCl8RUZS0TOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.176 [XNIO-1 task-2] 6T3fdmXAQxqCl8RUZS0TOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.176 [XNIO-1 task-2] 6T3fdmXAQxqCl8RUZS0TOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:49.180 [XNIO-1 task-2] T7GjNR4PS_WjQ3biV7WRrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08e7ef93-52eb-49a2-882b-81fe08c2bb79, base path is set to: null +00:00:49.181 [XNIO-1 task-2] T7GjNR4PS_WjQ3biV7WRrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.181 [XNIO-1 task-2] T7GjNR4PS_WjQ3biV7WRrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.181 [XNIO-1 task-2] T7GjNR4PS_WjQ3biV7WRrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08e7ef93-52eb-49a2-882b-81fe08c2bb79, base path is set to: null +00:00:49.181 [XNIO-1 task-2] T7GjNR4PS_WjQ3biV7WRrg DEBUG com.networknt.schema.TypeValidator debug - validate( "08e7ef93-52eb-49a2-882b-81fe08c2bb79", "08e7ef93-52eb-49a2-882b-81fe08c2bb79", refreshToken) +00:00:49.187 [XNIO-1 task-2] HP7YEumESImcjBtMD1O_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.187 [XNIO-1 task-2] HP7YEumESImcjBtMD1O_GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.187 [XNIO-1 task-2] HP7YEumESImcjBtMD1O_GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.188 [XNIO-1 task-2] HP7YEumESImcjBtMD1O_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/eb5000ea-aaa6-4631-81d0-a8fef159be1b, base path is set to: null +00:00:49.188 [XNIO-1 task-2] HP7YEumESImcjBtMD1O_GA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb5000ea-aaa6-4631-81d0-a8fef159be1b", "eb5000ea-aaa6-4631-81d0-a8fef159be1b", refreshToken) +00:00:49.188 [XNIO-1 task-2] HP7YEumESImcjBtMD1O_GA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token eb5000ea-aaa6-4631-81d0-a8fef159be1b is not found.","severity":"ERROR"} +00:00:49.193 [XNIO-1 task-2] 3aUvYpLcTEyHRsECpNOiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.193 [XNIO-1 task-2] 3aUvYpLcTEyHRsECpNOiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.195 [XNIO-1 task-2] 3aUvYpLcTEyHRsECpNOiqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.196 [XNIO-1 task-2] 3aUvYpLcTEyHRsECpNOiqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.209 [XNIO-1 task-2] U9oF7Iy_QbuyAHJ6gfN0KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08e7ef93-52eb-49a2-882b-81fe08c2bb79, base path is set to: null +00:00:49.209 [XNIO-1 task-2] U9oF7Iy_QbuyAHJ6gfN0KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.210 [XNIO-1 task-2] U9oF7Iy_QbuyAHJ6gfN0KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.210 [XNIO-1 task-2] U9oF7Iy_QbuyAHJ6gfN0KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08e7ef93-52eb-49a2-882b-81fe08c2bb79, base path is set to: null +00:00:49.211 [XNIO-1 task-2] U9oF7Iy_QbuyAHJ6gfN0KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08e7ef93-52eb-49a2-882b-81fe08c2bb79", "08e7ef93-52eb-49a2-882b-81fe08c2bb79", refreshToken) +00:00:49.224 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ac895eab +00:00:49.226 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ac895eab +00:00:49.229 [XNIO-1 task-2] Ya_2noJYRFqW4JonOwSI5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08e7ef93-52eb-49a2-882b-81fe08c2bb79 +00:00:49.229 [XNIO-1 task-2] Ya_2noJYRFqW4JonOwSI5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.229 [XNIO-1 task-2] Ya_2noJYRFqW4JonOwSI5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.229 [XNIO-1 task-2] Ya_2noJYRFqW4JonOwSI5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08e7ef93-52eb-49a2-882b-81fe08c2bb79 +00:00:49.229 [XNIO-1 task-2] Ya_2noJYRFqW4JonOwSI5w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 08e7ef93-52eb-49a2-882b-81fe08c2bb79 +00:00:49.237 [XNIO-1 task-2] 7qwQZc3sQ_Wy9A2IdQF8BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.238 [XNIO-1 task-2] 7qwQZc3sQ_Wy9A2IdQF8BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.238 [XNIO-1 task-2] 7qwQZc3sQ_Wy9A2IdQF8BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.238 [XNIO-1 task-2] 7qwQZc3sQ_Wy9A2IdQF8BQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.238 [XNIO-1 task-2] 7qwQZc3sQ_Wy9A2IdQF8BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.239 [XNIO-1 task-2] 7qwQZc3sQ_Wy9A2IdQF8BQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.244 [XNIO-1 task-2] tAGBV9XtR1io_ViEm2LFMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.244 [XNIO-1 task-2] tAGBV9XtR1io_ViEm2LFMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.244 [XNIO-1 task-2] tAGBV9XtR1io_ViEm2LFMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.244 [XNIO-1 task-2] tAGBV9XtR1io_ViEm2LFMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.245 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:638f6c8f +00:00:49.247 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:638f6c8f +00:00:49.254 [XNIO-1 task-2] KCf5zhalTYGnErPGZLe9Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.254 [XNIO-1 task-2] KCf5zhalTYGnErPGZLe9Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.255 [XNIO-1 task-2] KCf5zhalTYGnErPGZLe9Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.255 [XNIO-1 task-2] KCf5zhalTYGnErPGZLe9Hw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.261 [XNIO-1 task-2] wrd5CuSmS0WpcexjKsT7vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.262 [XNIO-1 task-2] wrd5CuSmS0WpcexjKsT7vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.262 [XNIO-1 task-2] wrd5CuSmS0WpcexjKsT7vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.262 [XNIO-1 task-2] wrd5CuSmS0WpcexjKsT7vA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.263 [XNIO-1 task-2] wrd5CuSmS0WpcexjKsT7vA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.269 [XNIO-1 task-2] 4-EWuo2jR-6OryqXM-ibew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.269 [XNIO-1 task-2] 4-EWuo2jR-6OryqXM-ibew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.269 [XNIO-1 task-2] 4-EWuo2jR-6OryqXM-ibew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.270 [XNIO-1 task-2] 4-EWuo2jR-6OryqXM-ibew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.272 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3aaba40c-1e00-4388-ab84-4083499169f0 +00:00:49.276 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3aaba40c-1e00-4388-ab84-4083499169f0 +00:00:49.279 [XNIO-1 task-2] nemXjaZaTsigpj1yRzhxbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.279 [XNIO-1 task-2] nemXjaZaTsigpj1yRzhxbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.280 [XNIO-1 task-2] nemXjaZaTsigpj1yRzhxbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.280 [XNIO-1 task-2] nemXjaZaTsigpj1yRzhxbg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.290 [XNIO-1 task-2] u9shv-rzSbqpj-6trGES3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.290 [XNIO-1 task-2] u9shv-rzSbqpj-6trGES3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.290 [XNIO-1 task-2] u9shv-rzSbqpj-6trGES3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.291 [XNIO-1 task-2] u9shv-rzSbqpj-6trGES3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.291 [XNIO-1 task-2] u9shv-rzSbqpj-6trGES3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.298 [XNIO-1 task-2] lZ5Nc1VSQGK0BPNnE60Qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.298 [XNIO-1 task-2] lZ5Nc1VSQGK0BPNnE60Qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.299 [XNIO-1 task-2] lZ5Nc1VSQGK0BPNnE60Qcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.299 [XNIO-1 task-2] lZ5Nc1VSQGK0BPNnE60Qcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.309 [XNIO-1 task-2] 86tt1uk6Q5Wl2G0alJ-akA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.309 [XNIO-1 task-2] 86tt1uk6Q5Wl2G0alJ-akA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.310 [XNIO-1 task-2] 86tt1uk6Q5Wl2G0alJ-akA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.310 [XNIO-1 task-2] 86tt1uk6Q5Wl2G0alJ-akA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.310 [XNIO-1 task-2] 86tt1uk6Q5Wl2G0alJ-akA DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.310 [XNIO-1 task-2] 86tt1uk6Q5Wl2G0alJ-akA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.314 [XNIO-1 task-2] KQ2wNfT7TdWGFWdmgb-NMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.314 [XNIO-1 task-2] KQ2wNfT7TdWGFWdmgb-NMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.314 [XNIO-1 task-2] KQ2wNfT7TdWGFWdmgb-NMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.315 [XNIO-1 task-2] KQ2wNfT7TdWGFWdmgb-NMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.324 [XNIO-1 task-2] _92wjNKLQfyc35I5pczRmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.325 [XNIO-1 task-2] _92wjNKLQfyc35I5pczRmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.325 [XNIO-1 task-2] _92wjNKLQfyc35I5pczRmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.325 [XNIO-1 task-2] _92wjNKLQfyc35I5pczRmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.325 [XNIO-1 task-2] _92wjNKLQfyc35I5pczRmw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.330 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:06fbff08 +00:00:49.336 [XNIO-1 task-2] QwDxieKmQc-gqjRRPcv0tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.337 [XNIO-1 task-2] QwDxieKmQc-gqjRRPcv0tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.337 [XNIO-1 task-2] QwDxieKmQc-gqjRRPcv0tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.337 [XNIO-1 task-2] QwDxieKmQc-gqjRRPcv0tQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.347 [XNIO-1 task-2] Wt9ik0MeTY2U83sJumNB9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.347 [XNIO-1 task-2] Wt9ik0MeTY2U83sJumNB9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.347 [XNIO-1 task-2] Wt9ik0MeTY2U83sJumNB9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.347 [XNIO-1 task-2] Wt9ik0MeTY2U83sJumNB9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.347 [XNIO-1 task-2] Wt9ik0MeTY2U83sJumNB9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.349 [XNIO-1 task-2] Wt9ik0MeTY2U83sJumNB9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.353 [XNIO-1 task-2] pWw-KP9gR3a85QmKj84SMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.354 [XNIO-1 task-2] pWw-KP9gR3a85QmKj84SMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.354 [XNIO-1 task-2] pWw-KP9gR3a85QmKj84SMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.354 [XNIO-1 task-2] pWw-KP9gR3a85QmKj84SMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.354 [XNIO-1 task-2] pWw-KP9gR3a85QmKj84SMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.372 [XNIO-1 task-2] WtuQbwzTQhO8OiSCsu3mfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:49.372 [XNIO-1 task-2] WtuQbwzTQhO8OiSCsu3mfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.372 [XNIO-1 task-2] WtuQbwzTQhO8OiSCsu3mfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.372 [XNIO-1 task-2] WtuQbwzTQhO8OiSCsu3mfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:49.373 [XNIO-1 task-2] WtuQbwzTQhO8OiSCsu3mfA DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:49.373 [XNIO-1 task-2] WtuQbwzTQhO8OiSCsu3mfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:49.380 [XNIO-1 task-2] RtRzXpZeQ8ecJFpkPCmrhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.380 [XNIO-1 task-2] RtRzXpZeQ8ecJFpkPCmrhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.380 [XNIO-1 task-2] RtRzXpZeQ8ecJFpkPCmrhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.381 [XNIO-1 task-2] RtRzXpZeQ8ecJFpkPCmrhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.391 [XNIO-1 task-2] k6MKN4llS7--7UGGvcPEFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.391 [XNIO-1 task-2] k6MKN4llS7--7UGGvcPEFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.391 [XNIO-1 task-2] k6MKN4llS7--7UGGvcPEFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.391 [XNIO-1 task-2] k6MKN4llS7--7UGGvcPEFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.391 [XNIO-1 task-2] k6MKN4llS7--7UGGvcPEFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.397 [XNIO-1 task-2] vQAiPEXCTT-3mbVf7L2COQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.397 [XNIO-1 task-2] vQAiPEXCTT-3mbVf7L2COQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.397 [XNIO-1 task-2] vQAiPEXCTT-3mbVf7L2COQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.397 [XNIO-1 task-2] vQAiPEXCTT-3mbVf7L2COQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.397 [XNIO-1 task-2] vQAiPEXCTT-3mbVf7L2COQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.398 [XNIO-1 task-2] vQAiPEXCTT-3mbVf7L2COQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.401 [XNIO-1 task-2] 5Lh5sGNcS-6UQQdkQggdnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.402 [XNIO-1 task-2] 5Lh5sGNcS-6UQQdkQggdnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.402 [XNIO-1 task-2] 5Lh5sGNcS-6UQQdkQggdnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.402 [XNIO-1 task-2] 5Lh5sGNcS-6UQQdkQggdnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.410 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e28a4da4-73d7-42e0-87a8-562b8ce9eed9 +00:00:49.415 [XNIO-1 task-2] gPTu0kdbR1ykTIkBFD76KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.415 [XNIO-1 task-2] gPTu0kdbR1ykTIkBFD76KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.415 [XNIO-1 task-2] gPTu0kdbR1ykTIkBFD76KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.415 [XNIO-1 task-2] gPTu0kdbR1ykTIkBFD76KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.416 [XNIO-1 task-2] gPTu0kdbR1ykTIkBFD76KA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.417 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6b35343f +00:00:49.418 [XNIO-1 task-2] gPTu0kdbR1ykTIkBFD76KA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f4c4965-f0bc-4206-8eef-b2dfdae33056 is not found.","severity":"ERROR"} +00:00:49.423 [XNIO-1 task-2] tRYMxyDdRSyuMqwgeZgLPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.423 [XNIO-1 task-2] tRYMxyDdRSyuMqwgeZgLPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.423 [XNIO-1 task-2] tRYMxyDdRSyuMqwgeZgLPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.425 [XNIO-1 task-2] tRYMxyDdRSyuMqwgeZgLPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.425 [XNIO-1 task-2] tRYMxyDdRSyuMqwgeZgLPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:49.428 [XNIO-1 task-2] 2F-Yv_NZRPKMxzbj9huk8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.428 [XNIO-1 task-2] 2F-Yv_NZRPKMxzbj9huk8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.428 [XNIO-1 task-2] 2F-Yv_NZRPKMxzbj9huk8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.428 [XNIO-1 task-2] 2F-Yv_NZRPKMxzbj9huk8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.429 [XNIO-1 task-2] 2F-Yv_NZRPKMxzbj9huk8A DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.429 [XNIO-1 task-2] 2F-Yv_NZRPKMxzbj9huk8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.432 [XNIO-1 task-2] mIxOaASERvGpH8wLnZNxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.432 [XNIO-1 task-2] mIxOaASERvGpH8wLnZNxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.432 [XNIO-1 task-2] mIxOaASERvGpH8wLnZNxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.432 [XNIO-1 task-2] mIxOaASERvGpH8wLnZNxfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.432 [XNIO-1 task-2] mIxOaASERvGpH8wLnZNxfA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.439 [XNIO-1 task-2] tta5x2I9QNy8Wi3R488XEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e28a4da4-73d7-42e0-87a8-562b8ce9eed9, base path is set to: null +00:00:49.440 [XNIO-1 task-2] tta5x2I9QNy8Wi3R488XEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.443 [XNIO-1 task-2] tta5x2I9QNy8Wi3R488XEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.443 [XNIO-1 task-2] tta5x2I9QNy8Wi3R488XEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e28a4da4-73d7-42e0-87a8-562b8ce9eed9, base path is set to: null +00:00:49.444 [XNIO-1 task-2] tta5x2I9QNy8Wi3R488XEA DEBUG com.networknt.schema.TypeValidator debug - validate( "e28a4da4-73d7-42e0-87a8-562b8ce9eed9", "e28a4da4-73d7-42e0-87a8-562b8ce9eed9", refreshToken) +00:00:49.444 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e28a4da4-73d7-42e0-87a8-562b8ce9eed9 +00:00:49.461 [XNIO-1 task-2] 2NzYgoeGS9yfUkuV-rGm2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.461 [XNIO-1 task-2] 2NzYgoeGS9yfUkuV-rGm2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.462 [XNIO-1 task-2] 2NzYgoeGS9yfUkuV-rGm2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.462 [XNIO-1 task-2] 2NzYgoeGS9yfUkuV-rGm2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.462 [XNIO-1 task-2] 2NzYgoeGS9yfUkuV-rGm2g DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.470 [XNIO-1 task-2] yLb2jlPTT4CN1733rA_ylg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.470 [XNIO-1 task-2] yLb2jlPTT4CN1733rA_ylg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.470 [XNIO-1 task-2] yLb2jlPTT4CN1733rA_ylg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.470 [XNIO-1 task-2] yLb2jlPTT4CN1733rA_ylg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.470 [XNIO-1 task-2] yLb2jlPTT4CN1733rA_ylg DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.479 [XNIO-1 task-2] ccJ8usjTTQyexFPhW5EpiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.479 [XNIO-1 task-2] ccJ8usjTTQyexFPhW5EpiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.479 [XNIO-1 task-2] ccJ8usjTTQyexFPhW5EpiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.481 [XNIO-1 task-2] ccJ8usjTTQyexFPhW5EpiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.481 [XNIO-1 task-2] ccJ8usjTTQyexFPhW5EpiA DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.486 [XNIO-1 task-2] ccJ8usjTTQyexFPhW5EpiA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b is not found.","severity":"ERROR"} +00:00:49.494 [XNIO-1 task-2] xW2cLqt_RI-za8o2x3SpJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.494 [XNIO-1 task-2] xW2cLqt_RI-za8o2x3SpJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.494 [XNIO-1 task-2] xW2cLqt_RI-za8o2x3SpJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.494 [XNIO-1 task-2] xW2cLqt_RI-za8o2x3SpJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.494 [XNIO-1 task-2] xW2cLqt_RI-za8o2x3SpJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.495 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a7259ca2-59c2-4477-a7c6-e4ff993ed563 +00:00:49.499 [XNIO-1 task-2] 73LEwZaWTv2t7-RGCOUxEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.499 [XNIO-1 task-2] 73LEwZaWTv2t7-RGCOUxEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.499 [XNIO-1 task-2] 73LEwZaWTv2t7-RGCOUxEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.499 [XNIO-1 task-2] 73LEwZaWTv2t7-RGCOUxEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.499 [XNIO-1 task-2] 73LEwZaWTv2t7-RGCOUxEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.502 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a7259ca2-59c2-4477-a7c6-e4ff993ed563 +00:00:49.505 [XNIO-1 task-2] VO2jX02RTKKVCpVO5Eaekw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.507 [XNIO-1 task-2] VO2jX02RTKKVCpVO5Eaekw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.507 [XNIO-1 task-2] VO2jX02RTKKVCpVO5Eaekw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.508 [XNIO-1 task-2] VO2jX02RTKKVCpVO5Eaekw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.508 [XNIO-1 task-2] VO2jX02RTKKVCpVO5Eaekw DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.508 [XNIO-1 task-2] VO2jX02RTKKVCpVO5Eaekw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b is not found.","severity":"ERROR"} +00:00:49.512 [XNIO-1 task-2] -Q0b_dgyRo2E2K3mZkoGqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.512 [XNIO-1 task-2] -Q0b_dgyRo2E2K3mZkoGqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.512 [XNIO-1 task-2] -Q0b_dgyRo2E2K3mZkoGqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.512 [XNIO-1 task-2] -Q0b_dgyRo2E2K3mZkoGqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.512 [XNIO-1 task-2] -Q0b_dgyRo2E2K3mZkoGqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.516 [XNIO-1 task-2] xjxPJbgHSJm2pLkXMoYcug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:49.520 [XNIO-1 task-2] xjxPJbgHSJm2pLkXMoYcug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.520 [XNIO-1 task-2] xjxPJbgHSJm2pLkXMoYcug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.520 [XNIO-1 task-2] xjxPJbgHSJm2pLkXMoYcug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:49.521 [XNIO-1 task-2] xjxPJbgHSJm2pLkXMoYcug DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:49.521 [XNIO-1 task-2] xjxPJbgHSJm2pLkXMoYcug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:49.530 [XNIO-1 task-2] EgQ8FWb-TbSUZT7dvuhDew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.531 [XNIO-1 task-2] EgQ8FWb-TbSUZT7dvuhDew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.531 [XNIO-1 task-2] EgQ8FWb-TbSUZT7dvuhDew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.531 [XNIO-1 task-2] EgQ8FWb-TbSUZT7dvuhDew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.550 [XNIO-1 task-2] 0KWNKZi0RfeZDn8jq3cBXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc, base path is set to: null +00:00:49.551 [XNIO-1 task-2] 0KWNKZi0RfeZDn8jq3cBXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.551 [XNIO-1 task-2] 0KWNKZi0RfeZDn8jq3cBXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.551 [XNIO-1 task-2] 0KWNKZi0RfeZDn8jq3cBXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc, base path is set to: null +00:00:49.551 [XNIO-1 task-2] 0KWNKZi0RfeZDn8jq3cBXA DEBUG com.networknt.schema.TypeValidator debug - validate( "aee1e9d5-7f54-44a4-9786-68d7597669fc", "aee1e9d5-7f54-44a4-9786-68d7597669fc", refreshToken) +00:00:49.556 [XNIO-1 task-2] fwgDo_L5S0yugwDQkV79-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.556 [XNIO-1 task-2] fwgDo_L5S0yugwDQkV79-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.556 [XNIO-1 task-2] fwgDo_L5S0yugwDQkV79-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.556 [XNIO-1 task-2] fwgDo_L5S0yugwDQkV79-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.556 [XNIO-1 task-2] fwgDo_L5S0yugwDQkV79-w DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:49.573 [XNIO-1 task-2] PNK-gd_ZQ1eAq34QwIJiNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc, base path is set to: null +00:00:49.575 [XNIO-1 task-2] PNK-gd_ZQ1eAq34QwIJiNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.575 [XNIO-1 task-2] PNK-gd_ZQ1eAq34QwIJiNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.575 [XNIO-1 task-2] PNK-gd_ZQ1eAq34QwIJiNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc, base path is set to: null +00:00:49.576 [XNIO-1 task-2] PNK-gd_ZQ1eAq34QwIJiNw DEBUG com.networknt.schema.TypeValidator debug - validate( "aee1e9d5-7f54-44a4-9786-68d7597669fc", "aee1e9d5-7f54-44a4-9786-68d7597669fc", refreshToken) +00:00:49.579 [XNIO-1 task-2] 4rt-jg5ETZKhVHGTLoh3SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.579 [XNIO-1 task-2] 4rt-jg5ETZKhVHGTLoh3SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.580 [XNIO-1 task-2] 4rt-jg5ETZKhVHGTLoh3SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.580 [XNIO-1 task-2] 4rt-jg5ETZKhVHGTLoh3SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.580 [XNIO-1 task-2] 4rt-jg5ETZKhVHGTLoh3SA DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:49.582 [XNIO-1 task-2] 4rt-jg5ETZKhVHGTLoh3SA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} +00:00:49.585 [XNIO-1 task-2] 1fGTVpdDSH-HoW3RNyEaYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.585 [XNIO-1 task-2] 1fGTVpdDSH-HoW3RNyEaYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.585 [XNIO-1 task-2] 1fGTVpdDSH-HoW3RNyEaYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.585 [XNIO-1 task-2] 1fGTVpdDSH-HoW3RNyEaYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.586 [XNIO-1 task-2] 1fGTVpdDSH-HoW3RNyEaYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.595 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6b35343f +00:00:49.602 [XNIO-1 task-2] bo7BZZgWQQOtKZXBpdb4Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.602 [XNIO-1 task-2] bo7BZZgWQQOtKZXBpdb4Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.603 [XNIO-1 task-2] bo7BZZgWQQOtKZXBpdb4Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.603 [XNIO-1 task-2] bo7BZZgWQQOtKZXBpdb4Og DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.632 [XNIO-1 task-2] WevE3jheRjqImu_sMsoPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.632 [XNIO-1 task-2] WevE3jheRjqImu_sMsoPag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.632 [XNIO-1 task-2] WevE3jheRjqImu_sMsoPag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.632 [XNIO-1 task-2] WevE3jheRjqImu_sMsoPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.633 [XNIO-1 task-2] WevE3jheRjqImu_sMsoPag DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:49.633 [XNIO-1 task-2] WevE3jheRjqImu_sMsoPag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} +00:00:49.639 [XNIO-1 task-2] r63vrt7wTI2_RPszjDuWsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.639 [XNIO-1 task-2] r63vrt7wTI2_RPszjDuWsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.640 [XNIO-1 task-2] r63vrt7wTI2_RPszjDuWsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.640 [XNIO-1 task-2] r63vrt7wTI2_RPszjDuWsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.640 [XNIO-1 task-2] r63vrt7wTI2_RPszjDuWsg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.643 [XNIO-1 task-2] r63vrt7wTI2_RPszjDuWsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aee1e9d5-7f54-44a4-9786-68d7597669fc is not found.","severity":"ERROR"} +00:00:49.651 [XNIO-1 task-2] 3m9f-sB2SZ2trFE916CQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:49.651 [XNIO-1 task-2] 3m9f-sB2SZ2trFE916CQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.651 [XNIO-1 task-2] 3m9f-sB2SZ2trFE916CQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.651 [XNIO-1 task-2] 3m9f-sB2SZ2trFE916CQlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:49.651 [XNIO-1 task-2] 3m9f-sB2SZ2trFE916CQlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:49.660 [XNIO-1 task-2] luqjmTPUR-2TKWA8od_AeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.660 [XNIO-1 task-2] luqjmTPUR-2TKWA8od_AeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.660 [XNIO-1 task-2] luqjmTPUR-2TKWA8od_AeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.661 [XNIO-1 task-2] luqjmTPUR-2TKWA8od_AeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.661 [XNIO-1 task-2] luqjmTPUR-2TKWA8od_AeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.670 [XNIO-1 task-2] 8mkEIEkWT4S4tEAmHo2YHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.670 [XNIO-1 task-2] 8mkEIEkWT4S4tEAmHo2YHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.670 [XNIO-1 task-2] 8mkEIEkWT4S4tEAmHo2YHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.670 [XNIO-1 task-2] 8mkEIEkWT4S4tEAmHo2YHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.670 [XNIO-1 task-2] 8mkEIEkWT4S4tEAmHo2YHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aee1e9d5-7f54-44a4-9786-68d7597669fc +00:00:49.679 [XNIO-1 task-2] j1FQ8HadTwy_aRdcsU_m4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.680 [XNIO-1 task-2] j1FQ8HadTwy_aRdcsU_m4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.680 [XNIO-1 task-2] j1FQ8HadTwy_aRdcsU_m4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.680 [XNIO-1 task-2] j1FQ8HadTwy_aRdcsU_m4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.680 [XNIO-1 task-2] j1FQ8HadTwy_aRdcsU_m4g DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:49.681 [XNIO-1 task-2] j1FQ8HadTwy_aRdcsU_m4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} +00:00:49.687 [XNIO-1 task-2] 1A9Gtu1xQ1qbMAsIVJAsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.687 [XNIO-1 task-2] 1A9Gtu1xQ1qbMAsIVJAsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.687 [XNIO-1 task-2] 1A9Gtu1xQ1qbMAsIVJAsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.688 [XNIO-1 task-2] 1A9Gtu1xQ1qbMAsIVJAsdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.698 [XNIO-1 task-2] iN5rPAR2QSy2HKI_2PrT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.699 [XNIO-1 task-2] iN5rPAR2QSy2HKI_2PrT6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.699 [XNIO-1 task-2] iN5rPAR2QSy2HKI_2PrT6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.699 [XNIO-1 task-2] iN5rPAR2QSy2HKI_2PrT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:49.699 [XNIO-1 task-2] iN5rPAR2QSy2HKI_2PrT6w DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:49.701 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7eb94af7-fcfe-41b5-baa9-564815816c75 +00:00:49.701 [XNIO-1 task-2] iN5rPAR2QSy2HKI_2PrT6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} +00:00:49.708 [XNIO-1 task-2] HLE_xn0PRwmJN-TchI0eqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.708 [XNIO-1 task-2] HLE_xn0PRwmJN-TchI0eqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.708 [XNIO-1 task-2] HLE_xn0PRwmJN-TchI0eqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.709 [XNIO-1 task-2] HLE_xn0PRwmJN-TchI0eqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.746 [XNIO-1 task-2] ZK5GAQ4PRmycDD0QfxycQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.747 [XNIO-1 task-2] ZK5GAQ4PRmycDD0QfxycQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.747 [XNIO-1 task-2] ZK5GAQ4PRmycDD0QfxycQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.747 [XNIO-1 task-2] ZK5GAQ4PRmycDD0QfxycQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.747 [XNIO-1 task-2] ZK5GAQ4PRmycDD0QfxycQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.747 [XNIO-1 task-2] ZK5GAQ4PRmycDD0QfxycQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b is not found.","severity":"ERROR"} +00:00:49.752 [XNIO-1 task-2] WWUCClCwSMa6KoJ4xTV_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b +00:00:49.752 [XNIO-1 task-2] WWUCClCwSMa6KoJ4xTV_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.752 [XNIO-1 task-2] WWUCClCwSMa6KoJ4xTV_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.753 [XNIO-1 task-2] WWUCClCwSMa6KoJ4xTV_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b +00:00:49.753 [XNIO-1 task-2] WWUCClCwSMa6KoJ4xTV_YQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b +00:00:49.759 [XNIO-1 task-2] TbL2zuAQSEeltOhIVMPIlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.760 [XNIO-1 task-2] TbL2zuAQSEeltOhIVMPIlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.761 [XNIO-1 task-2] TbL2zuAQSEeltOhIVMPIlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.761 [XNIO-1 task-2] TbL2zuAQSEeltOhIVMPIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.761 [XNIO-1 task-2] TbL2zuAQSEeltOhIVMPIlw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.774 [XNIO-1 task-2] HWEKJCcTS4aanmbVR8p0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.774 [XNIO-1 task-2] HWEKJCcTS4aanmbVR8p0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.774 [XNIO-1 task-2] HWEKJCcTS4aanmbVR8p0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.775 [XNIO-1 task-2] HWEKJCcTS4aanmbVR8p0kw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.784 [XNIO-1 task-2] YUeX-6QdRPehdp0G6JVsTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.784 [XNIO-1 task-2] YUeX-6QdRPehdp0G6JVsTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.784 [XNIO-1 task-2] YUeX-6QdRPehdp0G6JVsTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.784 [XNIO-1 task-2] YUeX-6QdRPehdp0G6JVsTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.784 [XNIO-1 task-2] YUeX-6QdRPehdp0G6JVsTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.785 [XNIO-1 task-2] YUeX-6QdRPehdp0G6JVsTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b is not found.","severity":"ERROR"} +00:00:49.791 [XNIO-1 task-2] UNwDuZNyTW6aFusPnJNnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b +00:00:49.792 [XNIO-1 task-2] UNwDuZNyTW6aFusPnJNnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.792 [XNIO-1 task-2] UNwDuZNyTW6aFusPnJNnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.792 [XNIO-1 task-2] UNwDuZNyTW6aFusPnJNnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b +00:00:49.792 [XNIO-1 task-2] UNwDuZNyTW6aFusPnJNnjQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b +00:00:49.796 [XNIO-1 task-2] vc9d7Oq9Q4SUOIKBHdxkzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.797 [XNIO-1 task-2] vc9d7Oq9Q4SUOIKBHdxkzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.797 [XNIO-1 task-2] vc9d7Oq9Q4SUOIKBHdxkzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.797 [XNIO-1 task-2] vc9d7Oq9Q4SUOIKBHdxkzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.797 [XNIO-1 task-2] vc9d7Oq9Q4SUOIKBHdxkzA DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.798 [XNIO-1 task-2] vc9d7Oq9Q4SUOIKBHdxkzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b is not found.","severity":"ERROR"} +00:00:49.803 [XNIO-1 task-2] LrZb6N3aSoOUCDTzSswFqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.803 [XNIO-1 task-2] LrZb6N3aSoOUCDTzSswFqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.803 [XNIO-1 task-2] LrZb6N3aSoOUCDTzSswFqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.803 [XNIO-1 task-2] LrZb6N3aSoOUCDTzSswFqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.815 [XNIO-1 task-2] ThEElyU1QqSioSWTK243Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.815 [XNIO-1 task-2] ThEElyU1QqSioSWTK243Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.815 [XNIO-1 task-2] ThEElyU1QqSioSWTK243Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.815 [XNIO-1 task-2] ThEElyU1QqSioSWTK243Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.816 [XNIO-1 task-2] ThEElyU1QqSioSWTK243Gg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.820 [XNIO-1 task-2] 97dSfSGIRamnBY3QUtIOiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.820 [XNIO-1 task-2] 97dSfSGIRamnBY3QUtIOiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.821 [XNIO-1 task-2] 97dSfSGIRamnBY3QUtIOiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.821 [XNIO-1 task-2] 97dSfSGIRamnBY3QUtIOiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.828 [XNIO-1 task-2] cbhoAkxNTP-pocxss4Lhug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.828 [XNIO-1 task-2] cbhoAkxNTP-pocxss4Lhug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.828 [XNIO-1 task-2] cbhoAkxNTP-pocxss4Lhug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.829 [XNIO-1 task-2] cbhoAkxNTP-pocxss4Lhug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.829 [XNIO-1 task-2] cbhoAkxNTP-pocxss4Lhug DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.840 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8a8bc533 +00:00:49.840 [XNIO-1 task-2] U1KRFoCoRByDt40opr8O7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.840 [XNIO-1 task-2] U1KRFoCoRByDt40opr8O7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.840 [XNIO-1 task-2] U1KRFoCoRByDt40opr8O7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.840 [XNIO-1 task-2] U1KRFoCoRByDt40opr8O7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.841 [XNIO-1 task-2] U1KRFoCoRByDt40opr8O7A DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.841 [XNIO-1 task-2] U1KRFoCoRByDt40opr8O7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b is not found.","severity":"ERROR"} +00:00:49.845 [XNIO-1 task-2] UrEB8uQeTZKdT96mgrwWTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b +00:00:49.845 [XNIO-1 task-2] UrEB8uQeTZKdT96mgrwWTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.845 [XNIO-1 task-2] UrEB8uQeTZKdT96mgrwWTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +00:00:49.845 [XNIO-1 task-2] UrEB8uQeTZKdT96mgrwWTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:49.852 [XNIO-1 task-2] Bp9dygnITreaEEo-7WfDqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a99e36f9-c054-42f7-810e-65e155882cef, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +00:00:49.852 [XNIO-1 task-2] Bp9dygnITreaEEo-7WfDqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.852 [XNIO-1 task-2] Bp9dygnITreaEEo-7WfDqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +00:00:49.852 [XNIO-1 task-2] Bp9dygnITreaEEo-7WfDqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +00:00:49.853 [XNIO-1 task-2] Bp9dygnITreaEEo-7WfDqA DEBUG com.networknt.schema.TypeValidator debug - validate( "a99e36f9-c054-42f7-810e-65e155882cef", "a99e36f9-c054-42f7-810e-65e155882cef", refreshToken) +00:00:49.857 [XNIO-1 task-2] Bp9dygnITreaEEo-7WfDqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a99e36f9-c054-42f7-810e-65e155882cef is not found.","severity":"ERROR"} + +00:00:49.865 [XNIO-1 task-2] 9Si4QapOQOOGGKy8ZhXSpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.865 [XNIO-1 task-2] 9Si4QapOQOOGGKy8ZhXSpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.865 [XNIO-1 task-2] 9Si4QapOQOOGGKy8ZhXSpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.865 [XNIO-1 task-2] 9Si4QapOQOOGGKy8ZhXSpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19ca9bae-f60b-4d43-b2da-cfb6689aeb9b, base path is set to: null +00:00:49.866 [XNIO-1 task-2] 9Si4QapOQOOGGKy8ZhXSpA DEBUG com.networknt.schema.TypeValidator debug - validate( "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", "19ca9bae-f60b-4d43-b2da-cfb6689aeb9b", refreshToken) +00:00:49.866 [XNIO-1 task-2] 9Si4QapOQOOGGKy8ZhXSpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19ca9bae-f60b-4d43-b2da-cfb6689aeb9b is not found.","severity":"ERROR"} +00:00:49.878 [XNIO-1 task-2] Uv46NFkqRz--viST5_YcxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a99e36f9-c054-42f7-810e-65e155882cef +00:00:49.878 [XNIO-1 task-2] Uv46NFkqRz--viST5_YcxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.878 [XNIO-1 task-2] Uv46NFkqRz--viST5_YcxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.883 [XNIO-1 task-2] Uv46NFkqRz--viST5_YcxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a99e36f9-c054-42f7-810e-65e155882cef +00:00:49.883 [XNIO-1 task-2] Uv46NFkqRz--viST5_YcxA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a99e36f9-c054-42f7-810e-65e155882cef +00:00:49.889 [XNIO-1 task-2] sAdq32tVTjShF8_LACJxOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d3adacb2-e620-41fa-aa0f-b8a5efd24fd6, base path is set to: null +00:00:49.889 [XNIO-1 task-2] sAdq32tVTjShF8_LACJxOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.889 [XNIO-1 task-2] sAdq32tVTjShF8_LACJxOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.889 [XNIO-1 task-2] sAdq32tVTjShF8_LACJxOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d3adacb2-e620-41fa-aa0f-b8a5efd24fd6, base path is set to: null +00:00:49.889 [XNIO-1 task-2] sAdq32tVTjShF8_LACJxOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d3adacb2-e620-41fa-aa0f-b8a5efd24fd6", "d3adacb2-e620-41fa-aa0f-b8a5efd24fd6", refreshToken) +00:00:49.908 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ed77d9a8-c0c7-4ba9-be84-b9e5dc2f50c2 +00:00:49.911 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ed77d9a8-c0c7-4ba9-be84-b9e5dc2f50c2 +00:00:49.916 [XNIO-1 task-2] WYY_tKYzR9SOZQDIr30zQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.917 [XNIO-1 task-2] WYY_tKYzR9SOZQDIr30zQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.917 [XNIO-1 task-2] WYY_tKYzR9SOZQDIr30zQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.917 [XNIO-1 task-2] WYY_tKYzR9SOZQDIr30zQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:49.917 [XNIO-1 task-2] WYY_tKYzR9SOZQDIr30zQg DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:49.917 [XNIO-1 task-2] WYY_tKYzR9SOZQDIr30zQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:49.925 [XNIO-1 task-2] s7MC-lYlTyKAymIMGTsScg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.925 [XNIO-1 task-2] s7MC-lYlTyKAymIMGTsScg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.925 [XNIO-1 task-2] s7MC-lYlTyKAymIMGTsScg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.925 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:638f6c8f +00:00:49.926 [XNIO-1 task-2] s7MC-lYlTyKAymIMGTsScg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:49.937 [XNIO-1 task-2] 4lj469XlSGS7wnXjkgUF8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:49.938 [XNIO-1 task-2] 4lj469XlSGS7wnXjkgUF8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.938 [XNIO-1 task-2] 4lj469XlSGS7wnXjkgUF8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:49.938 [XNIO-1 task-2] 4lj469XlSGS7wnXjkgUF8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:49.938 [XNIO-1 task-2] 4lj469XlSGS7wnXjkgUF8g DEBUG com.networknt.schema.TypeValidator debug - validate( "3f4c4965-f0bc-4206-8eef-b2dfdae33056", "3f4c4965-f0bc-4206-8eef-b2dfdae33056", refreshToken) +00:00:49.938 [XNIO-1 task-2] 4lj469XlSGS7wnXjkgUF8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f4c4965-f0bc-4206-8eef-b2dfdae33056 is not found.","severity":"ERROR"} +00:00:49.945 [XNIO-1 task-2] sN00M1uvRpiSJGO4jzXpnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.946 [XNIO-1 task-2] sN00M1uvRpiSJGO4jzXpnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.947 [XNIO-1 task-2] sN00M1uvRpiSJGO4jzXpnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.947 [XNIO-1 task-2] sN00M1uvRpiSJGO4jzXpnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.947 [XNIO-1 task-2] sN00M1uvRpiSJGO4jzXpnA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.953 [XNIO-1 task-2] lvLbyOE4RqCLiOij8frukw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.954 [XNIO-1 task-2] lvLbyOE4RqCLiOij8frukw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.954 [XNIO-1 task-2] lvLbyOE4RqCLiOij8frukw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.954 [XNIO-1 task-2] lvLbyOE4RqCLiOij8frukw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.954 [XNIO-1 task-2] lvLbyOE4RqCLiOij8frukw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:49.957 [XNIO-1 task-2] kD5vLsiAQo2S_pw4NplIcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.957 [XNIO-1 task-2] kD5vLsiAQo2S_pw4NplIcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.958 [XNIO-1 task-2] kD5vLsiAQo2S_pw4NplIcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.958 [XNIO-1 task-2] kD5vLsiAQo2S_pw4NplIcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.958 [XNIO-1 task-2] kD5vLsiAQo2S_pw4NplIcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:49.972 [XNIO-1 task-2] 3TBjVfdST-SvQ4R-SlltFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.972 [XNIO-1 task-2] 3TBjVfdST-SvQ4R-SlltFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:49.972 [XNIO-1 task-2] 3TBjVfdST-SvQ4R-SlltFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:49.972 [XNIO-1 task-2] 3TBjVfdST-SvQ4R-SlltFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.973 [XNIO-1 task-2] 3TBjVfdST-SvQ4R-SlltFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:49.978 [XNIO-1 task-2] kyK45YCSSOez54ySY5x5ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.978 [XNIO-1 task-2] kyK45YCSSOez54ySY5x5ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:49.979 [XNIO-1 task-2] kyK45YCSSOez54ySY5x5ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:49.979 [XNIO-1 task-2] kyK45YCSSOez54ySY5x5ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:49.979 [XNIO-1 task-2] kyK45YCSSOez54ySY5x5ZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.000 [XNIO-1 task-2] Mj61CWjDQDCYSQt5imJ9DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.000 [XNIO-1 task-2] Mj61CWjDQDCYSQt5imJ9DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.001 [XNIO-1 task-2] Mj61CWjDQDCYSQt5imJ9DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.001 [XNIO-1 task-2] Mj61CWjDQDCYSQt5imJ9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.001 [XNIO-1 task-2] Mj61CWjDQDCYSQt5imJ9DQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.005 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f3aeced5-8a95-4a4a-a2b4-afc10d343df4 +00:00:50.010 [XNIO-1 task-2] Hgotp-SKRFul312hoc-WeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.010 [XNIO-1 task-2] Hgotp-SKRFul312hoc-WeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.010 [XNIO-1 task-2] Hgotp-SKRFul312hoc-WeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.010 [XNIO-1 task-2] Hgotp-SKRFul312hoc-WeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.011 [XNIO-1 task-2] Hgotp-SKRFul312hoc-WeA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.014 [XNIO-1 task-2] 7ndDnbGCQpanNziHVwNEwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.014 [XNIO-1 task-2] 7ndDnbGCQpanNziHVwNEwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.014 [XNIO-1 task-2] 7ndDnbGCQpanNziHVwNEwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.014 [XNIO-1 task-2] 7ndDnbGCQpanNziHVwNEwg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.017 [XNIO-1 task-2] 7ndDnbGCQpanNziHVwNEwg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.027 [XNIO-1 task-2] eVVpdPVRRqeaYLyJCPic5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.027 [XNIO-1 task-2] eVVpdPVRRqeaYLyJCPic5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.027 [XNIO-1 task-2] eVVpdPVRRqeaYLyJCPic5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.028 [XNIO-1 task-2] eVVpdPVRRqeaYLyJCPic5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.028 [XNIO-1 task-2] eVVpdPVRRqeaYLyJCPic5w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.034 [XNIO-1 task-2] 9tD_jesLQZCw39HB_wtzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:50.034 [XNIO-1 task-2] 9tD_jesLQZCw39HB_wtzHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.035 [XNIO-1 task-2] 9tD_jesLQZCw39HB_wtzHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.035 [XNIO-1 task-2] 9tD_jesLQZCw39HB_wtzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:50.035 [XNIO-1 task-2] 9tD_jesLQZCw39HB_wtzHg DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:50.035 [XNIO-1 task-2] 9tD_jesLQZCw39HB_wtzHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:50.040 [XNIO-1 task-2] DKaOYMLLS96CrUks33CqTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.040 [XNIO-1 task-2] DKaOYMLLS96CrUks33CqTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.040 [XNIO-1 task-2] DKaOYMLLS96CrUks33CqTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.040 [XNIO-1 task-2] DKaOYMLLS96CrUks33CqTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.040 [XNIO-1 task-2] DKaOYMLLS96CrUks33CqTg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.045 [XNIO-1 task-2] knAGCVE7TpCom7BJksPrFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:50.046 [XNIO-1 task-2] knAGCVE7TpCom7BJksPrFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.046 [XNIO-1 task-2] knAGCVE7TpCom7BJksPrFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.046 [XNIO-1 task-2] knAGCVE7TpCom7BJksPrFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:50.046 [XNIO-1 task-2] knAGCVE7TpCom7BJksPrFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f4c4965-f0bc-4206-8eef-b2dfdae33056", "3f4c4965-f0bc-4206-8eef-b2dfdae33056", refreshToken) +00:00:50.047 [XNIO-1 task-2] knAGCVE7TpCom7BJksPrFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f4c4965-f0bc-4206-8eef-b2dfdae33056 is not found.","severity":"ERROR"} +00:00:50.050 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2c50c76f +00:00:50.052 [XNIO-1 task-2] DNWdLF-mR12NmurqE9m4qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.052 [XNIO-1 task-2] DNWdLF-mR12NmurqE9m4qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.052 [XNIO-1 task-2] DNWdLF-mR12NmurqE9m4qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.052 [XNIO-1 task-2] DNWdLF-mR12NmurqE9m4qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.053 [XNIO-1 task-2] DNWdLF-mR12NmurqE9m4qg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.055 [XNIO-1 task-2] Lpn96DK7QzaMjlOIfC1YmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.056 [XNIO-1 task-2] Lpn96DK7QzaMjlOIfC1YmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.056 [XNIO-1 task-2] Lpn96DK7QzaMjlOIfC1YmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.056 [XNIO-1 task-2] Lpn96DK7QzaMjlOIfC1YmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.056 [XNIO-1 task-2] Lpn96DK7QzaMjlOIfC1YmA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.058 [XNIO-1 task-2] rxtZzctRSO2eMUyeNZndug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677, base path is set to: null +00:00:50.058 [XNIO-1 task-2] rxtZzctRSO2eMUyeNZndug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.059 [XNIO-1 task-2] rxtZzctRSO2eMUyeNZndug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.059 [XNIO-1 task-2] rxtZzctRSO2eMUyeNZndug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677, base path is set to: null +00:00:50.059 [XNIO-1 task-2] rxtZzctRSO2eMUyeNZndug DEBUG com.networknt.schema.TypeValidator debug - validate( "29081b88-04e6-49ea-86d8-fe8dc37ec677", "29081b88-04e6-49ea-86d8-fe8dc37ec677", refreshToken) +00:00:50.073 [XNIO-1 task-2] T0SxfnAtTHG-6iY_uwULJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:50.074 [XNIO-1 task-2] T0SxfnAtTHG-6iY_uwULJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.074 [XNIO-1 task-2] T0SxfnAtTHG-6iY_uwULJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.075 [XNIO-1 task-2] T0SxfnAtTHG-6iY_uwULJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:50.075 [XNIO-1 task-2] T0SxfnAtTHG-6iY_uwULJg DEBUG com.networknt.schema.TypeValidator debug - validate( "3f4c4965-f0bc-4206-8eef-b2dfdae33056", "3f4c4965-f0bc-4206-8eef-b2dfdae33056", refreshToken) +00:00:50.075 [XNIO-1 task-2] T0SxfnAtTHG-6iY_uwULJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f4c4965-f0bc-4206-8eef-b2dfdae33056 is not found.","severity":"ERROR"} +00:00:50.080 [XNIO-1 task-2] v8ttzHxVT7KlqbFFNvsrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.080 [XNIO-1 task-2] v8ttzHxVT7KlqbFFNvsrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.080 [XNIO-1 task-2] v8ttzHxVT7KlqbFFNvsrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.081 [XNIO-1 task-2] v8ttzHxVT7KlqbFFNvsrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.081 [XNIO-1 task-2] v8ttzHxVT7KlqbFFNvsrCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.089 [XNIO-1 task-2] EaZ1z6PPQziQmZBtmFaR-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:50.089 [XNIO-1 task-2] EaZ1z6PPQziQmZBtmFaR-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.089 [XNIO-1 task-2] EaZ1z6PPQziQmZBtmFaR-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.090 [XNIO-1 task-2] EaZ1z6PPQziQmZBtmFaR-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056, base path is set to: null +00:00:50.090 [XNIO-1 task-2] EaZ1z6PPQziQmZBtmFaR-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3f4c4965-f0bc-4206-8eef-b2dfdae33056", "3f4c4965-f0bc-4206-8eef-b2dfdae33056", refreshToken) +00:00:50.090 [XNIO-1 task-2] EaZ1z6PPQziQmZBtmFaR-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f4c4965-f0bc-4206-8eef-b2dfdae33056 is not found.","severity":"ERROR"} +00:00:50.094 [XNIO-1 task-2] tBt7_dPCQ9mQrub5bFvh-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.094 [XNIO-1 task-2] tBt7_dPCQ9mQrub5bFvh-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.094 [XNIO-1 task-2] tBt7_dPCQ9mQrub5bFvh-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.094 [XNIO-1 task-2] tBt7_dPCQ9mQrub5bFvh-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.095 [XNIO-1 task-2] tBt7_dPCQ9mQrub5bFvh-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f4c4965-f0bc-4206-8eef-b2dfdae33056 +00:00:50.102 [XNIO-1 task-2] m-u40s71Rk25rMAHCaP03w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.102 [XNIO-1 task-2] m-u40s71Rk25rMAHCaP03w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.103 [XNIO-1 task-2] m-u40s71Rk25rMAHCaP03w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.103 [XNIO-1 task-2] m-u40s71Rk25rMAHCaP03w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.103 [XNIO-1 task-2] m-u40s71Rk25rMAHCaP03w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.111 [XNIO-1 task-2] eZE1W4NSQimchYDbz4Flgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.111 [XNIO-1 task-2] eZE1W4NSQimchYDbz4Flgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.111 [XNIO-1 task-2] eZE1W4NSQimchYDbz4Flgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.111 [XNIO-1 task-2] eZE1W4NSQimchYDbz4Flgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.111 [XNIO-1 task-2] eZE1W4NSQimchYDbz4Flgg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.120 [XNIO-1 task-2] cJdIK4sWRDy4a3nQbl4qSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.120 [XNIO-1 task-2] cJdIK4sWRDy4a3nQbl4qSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.120 [XNIO-1 task-2] cJdIK4sWRDy4a3nQbl4qSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.121 [XNIO-1 task-2] cJdIK4sWRDy4a3nQbl4qSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.121 [XNIO-1 task-2] cJdIK4sWRDy4a3nQbl4qSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.127 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2c50c76f +00:00:50.145 [XNIO-1 task-2] QvJLcLnJRQqLMrhfiAvtPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.145 [XNIO-1 task-2] QvJLcLnJRQqLMrhfiAvtPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.145 [XNIO-1 task-2] QvJLcLnJRQqLMrhfiAvtPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.145 [XNIO-1 task-2] QvJLcLnJRQqLMrhfiAvtPA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.167 [XNIO-1 task-2] c_AH6BNOQEeZrsPUokpOCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677, base path is set to: null +00:00:50.167 [XNIO-1 task-2] c_AH6BNOQEeZrsPUokpOCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.167 [XNIO-1 task-2] c_AH6BNOQEeZrsPUokpOCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.167 [XNIO-1 task-2] c_AH6BNOQEeZrsPUokpOCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677, base path is set to: null +00:00:50.168 [XNIO-1 task-2] c_AH6BNOQEeZrsPUokpOCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "29081b88-04e6-49ea-86d8-fe8dc37ec677", "29081b88-04e6-49ea-86d8-fe8dc37ec677", refreshToken) +00:00:50.169 [XNIO-1 task-2] c_AH6BNOQEeZrsPUokpOCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 29081b88-04e6-49ea-86d8-fe8dc37ec677 is not found.","severity":"ERROR"} +00:00:50.176 [XNIO-1 task-2] XzkwlVkbQ0OaDE_thDVd9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.176 [XNIO-1 task-2] XzkwlVkbQ0OaDE_thDVd9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.177 [XNIO-1 task-2] XzkwlVkbQ0OaDE_thDVd9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.177 [XNIO-1 task-2] XzkwlVkbQ0OaDE_thDVd9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.181 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2c50c76f +00:00:50.182 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.188 [XNIO-1 task-2] 3F8bwoYKQFu-vU4fnCjEuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677, base path is set to: null +00:00:50.188 [XNIO-1 task-2] 3F8bwoYKQFu-vU4fnCjEuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.188 [XNIO-1 task-2] 3F8bwoYKQFu-vU4fnCjEuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.189 [XNIO-1 task-2] 3F8bwoYKQFu-vU4fnCjEuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677, base path is set to: null +00:00:50.189 [XNIO-1 task-2] 3F8bwoYKQFu-vU4fnCjEuA DEBUG com.networknt.schema.TypeValidator debug - validate( "29081b88-04e6-49ea-86d8-fe8dc37ec677", "29081b88-04e6-49ea-86d8-fe8dc37ec677", refreshToken) +00:00:50.189 [XNIO-1 task-2] 3F8bwoYKQFu-vU4fnCjEuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 29081b88-04e6-49ea-86d8-fe8dc37ec677 is not found.","severity":"ERROR"} +00:00:50.193 [XNIO-1 task-2] cxylyc-BQaOS7Xu4XbPOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.193 [XNIO-1 task-2] cxylyc-BQaOS7Xu4XbPOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.193 [XNIO-1 task-2] cxylyc-BQaOS7Xu4XbPOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.194 [XNIO-1 task-2] cxylyc-BQaOS7Xu4XbPOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.194 [XNIO-1 task-2] cxylyc-BQaOS7Xu4XbPOIg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.198 [XNIO-1 task-2] XtrQGoWwSjKvJOECpUXwhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.198 [XNIO-1 task-2] XtrQGoWwSjKvJOECpUXwhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.198 [XNIO-1 task-2] XtrQGoWwSjKvJOECpUXwhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.198 [XNIO-1 task-2] XtrQGoWwSjKvJOECpUXwhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.198 [XNIO-1 task-2] XtrQGoWwSjKvJOECpUXwhw DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:50.199 [XNIO-1 task-2] XtrQGoWwSjKvJOECpUXwhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:50.202 [XNIO-1 task-2] 3FiyRDRDQmG7BweqmJ2hvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.202 [XNIO-1 task-2] 3FiyRDRDQmG7BweqmJ2hvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.202 [XNIO-1 task-2] 3FiyRDRDQmG7BweqmJ2hvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.202 [XNIO-1 task-2] 3FiyRDRDQmG7BweqmJ2hvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.202 [XNIO-1 task-2] 3FiyRDRDQmG7BweqmJ2hvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.213 [XNIO-1 task-2] kQ2nzVswRtO-3p_vqEfOHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.213 [XNIO-1 task-2] kQ2nzVswRtO-3p_vqEfOHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.213 [XNIO-1 task-2] kQ2nzVswRtO-3p_vqEfOHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.213 [XNIO-1 task-2] kQ2nzVswRtO-3p_vqEfOHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.214 [XNIO-1 task-2] kQ2nzVswRtO-3p_vqEfOHA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.220 [XNIO-1 task-2] ppOFt86FROGcJrQKZPd1wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:50.221 [XNIO-1 task-2] ppOFt86FROGcJrQKZPd1wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.221 [XNIO-1 task-2] ppOFt86FROGcJrQKZPd1wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.221 [XNIO-1 task-2] ppOFt86FROGcJrQKZPd1wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:50.221 [XNIO-1 task-2] ppOFt86FROGcJrQKZPd1wg DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:50.221 [XNIO-1 task-2] ppOFt86FROGcJrQKZPd1wg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:50.226 [XNIO-1 task-2] 6SasV6ghS9epW0mPOfcZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.226 [XNIO-1 task-2] 6SasV6ghS9epW0mPOfcZVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.226 [XNIO-1 task-2] 6SasV6ghS9epW0mPOfcZVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.226 [XNIO-1 task-2] 6SasV6ghS9epW0mPOfcZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.227 [XNIO-1 task-2] 6SasV6ghS9epW0mPOfcZVw DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:50.227 [XNIO-1 task-2] 6SasV6ghS9epW0mPOfcZVw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:50.233 [XNIO-1 task-2] U4KXLPp3RSubZsXatZN8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.233 [XNIO-1 task-2] U4KXLPp3RSubZsXatZN8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.233 [XNIO-1 task-2] U4KXLPp3RSubZsXatZN8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.233 [XNIO-1 task-2] U4KXLPp3RSubZsXatZN8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.234 [XNIO-1 task-2] U4KXLPp3RSubZsXatZN8bg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.245 [XNIO-1 task-2] wmfN3dthR5ufu-MrpzAo8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.245 [XNIO-1 task-2] wmfN3dthR5ufu-MrpzAo8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.245 [XNIO-1 task-2] wmfN3dthR5ufu-MrpzAo8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.245 [XNIO-1 task-2] wmfN3dthR5ufu-MrpzAo8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.246 [XNIO-1 task-2] wmfN3dthR5ufu-MrpzAo8g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.254 [XNIO-1 task-2] EAw4uR1pT3CjeR6SgcM7DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.254 [XNIO-1 task-2] EAw4uR1pT3CjeR6SgcM7DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.254 [XNIO-1 task-2] EAw4uR1pT3CjeR6SgcM7DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.254 [XNIO-1 task-2] EAw4uR1pT3CjeR6SgcM7DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.255 [XNIO-1 task-2] EAw4uR1pT3CjeR6SgcM7DA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 29081b88-04e6-49ea-86d8-fe8dc37ec677 +00:00:50.259 [XNIO-1 task-2] APgFTPzgS4OVGYIvF3KeLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.259 [XNIO-1 task-2] APgFTPzgS4OVGYIvF3KeLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.260 [XNIO-1 task-2] APgFTPzgS4OVGYIvF3KeLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.260 [XNIO-1 task-2] APgFTPzgS4OVGYIvF3KeLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.260 [XNIO-1 task-2] APgFTPzgS4OVGYIvF3KeLg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.269 [XNIO-1 task-2] Se39d1nRQbS9bF5sSTNsuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.269 [XNIO-1 task-2] Se39d1nRQbS9bF5sSTNsuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.269 [XNIO-1 task-2] Se39d1nRQbS9bF5sSTNsuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.270 [XNIO-1 task-2] Se39d1nRQbS9bF5sSTNsuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.270 [XNIO-1 task-2] Se39d1nRQbS9bF5sSTNsuA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.275 [XNIO-1 task-2] XY1WPFlISymPLI8JRmML0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.275 [XNIO-1 task-2] XY1WPFlISymPLI8JRmML0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.277 [XNIO-1 task-2] XY1WPFlISymPLI8JRmML0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.277 [XNIO-1 task-2] XY1WPFlISymPLI8JRmML0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.278 [XNIO-1 task-2] XY1WPFlISymPLI8JRmML0g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.285 [XNIO-1 task-2] jrpMyrB_THWZznyf8Phhaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.286 [XNIO-1 task-2] jrpMyrB_THWZznyf8Phhaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.286 [XNIO-1 task-2] jrpMyrB_THWZznyf8Phhaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.286 [XNIO-1 task-2] jrpMyrB_THWZznyf8Phhaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.286 [XNIO-1 task-2] jrpMyrB_THWZznyf8Phhaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.290 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:85d36df2 +00:00:50.291 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:85d36df2 +00:00:50.292 [XNIO-1 task-2] KmSD8zmtSLy9v3tl3zuofQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.292 [XNIO-1 task-2] KmSD8zmtSLy9v3tl3zuofQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.292 [XNIO-1 task-2] KmSD8zmtSLy9v3tl3zuofQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.292 [XNIO-1 task-2] KmSD8zmtSLy9v3tl3zuofQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.292 [XNIO-1 task-2] KmSD8zmtSLy9v3tl3zuofQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.295 [XNIO-1 task-2] _DIuXnSPSYafh0iBnSEV6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.296 [XNIO-1 task-2] _DIuXnSPSYafh0iBnSEV6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.296 [XNIO-1 task-2] _DIuXnSPSYafh0iBnSEV6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.296 [XNIO-1 task-2] _DIuXnSPSYafh0iBnSEV6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.297 [XNIO-1 task-2] _DIuXnSPSYafh0iBnSEV6w DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:50.297 [XNIO-1 task-2] _DIuXnSPSYafh0iBnSEV6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:50.299 [XNIO-1 task-2] z22qasacTLmrBdLLGpHJ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.300 [XNIO-1 task-2] z22qasacTLmrBdLLGpHJ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.300 [XNIO-1 task-2] z22qasacTLmrBdLLGpHJ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.302 [XNIO-1 task-2] z22qasacTLmrBdLLGpHJ_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.313 [XNIO-1 task-2] kduCh5ffQKmOMM-WpRqsVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.313 [XNIO-1 task-2] kduCh5ffQKmOMM-WpRqsVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.314 [XNIO-1 task-2] kduCh5ffQKmOMM-WpRqsVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.314 [XNIO-1 task-2] kduCh5ffQKmOMM-WpRqsVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.315 [XNIO-1 task-2] kduCh5ffQKmOMM-WpRqsVg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.321 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0dce9874-1f1c-4323-beb9-ff158a7d4acf +00:00:50.328 [XNIO-1 task-2] -CZIKIOARLSBApgI58cjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:50.332 [XNIO-1 task-2] -CZIKIOARLSBApgI58cjig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.332 [XNIO-1 task-2] -CZIKIOARLSBApgI58cjig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.332 [XNIO-1 task-2] -CZIKIOARLSBApgI58cjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:50.332 [XNIO-1 task-2] -CZIKIOARLSBApgI58cjig DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:50.334 [XNIO-1 task-2] -CZIKIOARLSBApgI58cjig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} +00:00:50.341 [XNIO-1 task-2] gswYkGD_RXa23d_avRpAvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +Jun 29, 2024 12:00:50 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +00:00:50.341 [XNIO-1 task-2] gswYkGD_RXa23d_avRpAvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.342 [XNIO-1 task-2] gswYkGD_RXa23d_avRpAvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +00:00:50.342 [XNIO-1 task-2] gswYkGD_RXa23d_avRpAvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.348 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ce09941a +00:00:50.354 [XNIO-1 task-2] 8w9DLfAxQoG20tVBxBClvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +00:00:50.355 [XNIO-1 task-2] 8w9DLfAxQoG20tVBxBClvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:50.355 [XNIO-1 task-2] 8w9DLfAxQoG20tVBxBClvg DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.355 [XNIO-1 task-2] 8w9DLfAxQoG20tVBxBClvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.355 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.359 [XNIO-1 task-2] 8w9DLfAxQoG20tVBxBClvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af383352-e0b5-4231-91c3-cfee3dc47c06 is not found.","severity":"ERROR"} +00:00:50.362 [XNIO-1 task-2] 5yDmyluDRyGOGoInb3LOzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.362 [XNIO-1 task-2] 5yDmyluDRyGOGoInb3LOzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.362 [XNIO-1 task-2] 5yDmyluDRyGOGoInb3LOzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.362 [XNIO-1 task-2] 5yDmyluDRyGOGoInb3LOzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:50.363 [XNIO-1 task-2] 5yDmyluDRyGOGoInb3LOzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.377 [XNIO-1 task-2] 7wdLqB7RQ5S2yG7Jg8LD0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.378 [XNIO-1 task-2] 7wdLqB7RQ5S2yG7Jg8LD0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.378 [XNIO-1 task-2] 7wdLqB7RQ5S2yG7Jg8LD0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.378 [XNIO-1 task-2] 7wdLqB7RQ5S2yG7Jg8LD0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.379 [XNIO-1 task-2] 7wdLqB7RQ5S2yG7Jg8LD0g DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.379 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.385 [XNIO-1 task-2] rvbH7J99QUeymbocCer2bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.385 [XNIO-1 task-2] rvbH7J99QUeymbocCer2bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.385 [XNIO-1 task-2] rvbH7J99QUeymbocCer2bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.385 [XNIO-1 task-2] rvbH7J99QUeymbocCer2bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.386 [XNIO-1 task-2] rvbH7J99QUeymbocCer2bw DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.386 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.392 [XNIO-1 task-2] fnKFzR8gRJyycmKc0FB3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.395 [XNIO-1 task-2] fnKFzR8gRJyycmKc0FB3sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.395 [XNIO-1 task-2] fnKFzR8gRJyycmKc0FB3sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.395 [XNIO-1 task-2] fnKFzR8gRJyycmKc0FB3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.395 [XNIO-1 task-2] fnKFzR8gRJyycmKc0FB3sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.395 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.399 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:85d36df2 +00:00:50.405 [XNIO-1 task-2] BCu6C2hAQrWhT5z9r5yRfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.406 [XNIO-1 task-2] BCu6C2hAQrWhT5z9r5yRfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.406 [XNIO-1 task-2] BCu6C2hAQrWhT5z9r5yRfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.406 [XNIO-1 task-2] BCu6C2hAQrWhT5z9r5yRfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.406 [XNIO-1 task-2] BCu6C2hAQrWhT5z9r5yRfw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.408 [XNIO-1 task-2] BCu6C2hAQrWhT5z9r5yRfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af383352-e0b5-4231-91c3-cfee3dc47c06 is not found.","severity":"ERROR"} +00:00:50.414 [XNIO-1 task-2] ji_fPXD7Qti-uHa6L-9Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.415 [XNIO-1 task-2] ji_fPXD7Qti-uHa6L-9Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.415 [XNIO-1 task-2] ji_fPXD7Qti-uHa6L-9Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.415 [XNIO-1 task-2] ji_fPXD7Qti-uHa6L-9Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.415 [XNIO-1 task-2] ji_fPXD7Qti-uHa6L-9Wkg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.418 [XNIO-1 task-2] ji_fPXD7Qti-uHa6L-9Wkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af383352-e0b5-4231-91c3-cfee3dc47c06 is not found.","severity":"ERROR"} +00:00:50.421 [XNIO-1 task-2] 9s0QpNJhT72ubWRMEGlJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.421 [XNIO-1 task-2] 9s0QpNJhT72ubWRMEGlJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.421 [XNIO-1 task-2] 9s0QpNJhT72ubWRMEGlJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.421 [XNIO-1 task-2] 9s0QpNJhT72ubWRMEGlJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.423 [XNIO-1 task-2] 9s0QpNJhT72ubWRMEGlJ0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.426 [XNIO-1 task-2] zbxhdTiJQVqd9429F-Yd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.427 [XNIO-1 task-2] zbxhdTiJQVqd9429F-Yd6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.427 [XNIO-1 task-2] zbxhdTiJQVqd9429F-Yd6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.427 [XNIO-1 task-2] zbxhdTiJQVqd9429F-Yd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.427 [XNIO-1 task-2] zbxhdTiJQVqd9429F-Yd6g DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.427 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.431 [XNIO-1 task-2] yoxNOQNfRP2_eiMfSmeMrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.432 [XNIO-1 task-2] yoxNOQNfRP2_eiMfSmeMrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.432 [XNIO-1 task-2] yoxNOQNfRP2_eiMfSmeMrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.432 [XNIO-1 task-2] yoxNOQNfRP2_eiMfSmeMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.432 [XNIO-1 task-2] yoxNOQNfRP2_eiMfSmeMrQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.439 [XNIO-1 task-2] TZj2_oliR7uEl8p-Hibnew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.440 [XNIO-1 task-2] TZj2_oliR7uEl8p-Hibnew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.440 [XNIO-1 task-2] TZj2_oliR7uEl8p-Hibnew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.440 [XNIO-1 task-2] TZj2_oliR7uEl8p-Hibnew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.465 [XNIO-1 task-2] 5CZovhrIRWqZtU_8CACFoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:50.465 [XNIO-1 task-2] 5CZovhrIRWqZtU_8CACFoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.465 [XNIO-1 task-2] 5CZovhrIRWqZtU_8CACFoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.465 [XNIO-1 task-2] 5CZovhrIRWqZtU_8CACFoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49, base path is set to: null +00:00:50.465 [XNIO-1 task-2] 5CZovhrIRWqZtU_8CACFoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3d6a2f2-7727-4ccc-8f0c-893372280a49", "a3d6a2f2-7727-4ccc-8f0c-893372280a49", refreshToken) +00:00:50.466 [XNIO-1 task-2] 5CZovhrIRWqZtU_8CACFoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} +00:00:50.483 [XNIO-1 task-2] tWIXSGcMSUKgLRWXlixWYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.483 [XNIO-1 task-2] tWIXSGcMSUKgLRWXlixWYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.483 [XNIO-1 task-2] tWIXSGcMSUKgLRWXlixWYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.484 [XNIO-1 task-2] tWIXSGcMSUKgLRWXlixWYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.493 [XNIO-1 task-2] VMQ6U0BWTMOBpIROiFFw3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.493 [XNIO-1 task-2] VMQ6U0BWTMOBpIROiFFw3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.493 [XNIO-1 task-2] VMQ6U0BWTMOBpIROiFFw3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.494 [XNIO-1 task-2] VMQ6U0BWTMOBpIROiFFw3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3, base path is set to: null +00:00:50.496 [XNIO-1 task-2] VMQ6U0BWTMOBpIROiFFw3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "04c0cee7-85dd-463f-a77f-7b42e5608fd3", "04c0cee7-85dd-463f-a77f-7b42e5608fd3", refreshToken) +00:00:50.497 [XNIO-1 task-2] VMQ6U0BWTMOBpIROiFFw3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 04c0cee7-85dd-463f-a77f-7b42e5608fd3 is not found.","severity":"ERROR"} +00:00:50.502 [XNIO-1 task-2] xxZ1mYbyTSK0ffsrU6s1NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.502 [XNIO-1 task-2] xxZ1mYbyTSK0ffsrU6s1NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.502 [XNIO-1 task-2] xxZ1mYbyTSK0ffsrU6s1NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.503 [XNIO-1 task-2] xxZ1mYbyTSK0ffsrU6s1NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.503 [XNIO-1 task-2] xxZ1mYbyTSK0ffsrU6s1NA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 +00:00:50.505 [XNIO-1 task-2] 0m0Oh_VeQyOLmNbDS7HLNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:50.505 [XNIO-1 task-2] 0m0Oh_VeQyOLmNbDS7HLNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.506 [XNIO-1 task-2] 0m0Oh_VeQyOLmNbDS7HLNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.506 [XNIO-1 task-2] 0m0Oh_VeQyOLmNbDS7HLNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7, base path is set to: null +00:00:50.506 [XNIO-1 task-2] 0m0Oh_VeQyOLmNbDS7HLNg DEBUG com.networknt.schema.TypeValidator debug - validate( "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", "e96c51d1-1fe3-4555-8c15-dab15b85a7d7", refreshToken) +00:00:50.506 [XNIO-1 task-2] 0m0Oh_VeQyOLmNbDS7HLNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} +00:00:50.512 [XNIO-1 task-2] afS3iqCEQiadvUxdKKpYdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.512 [XNIO-1 task-2] afS3iqCEQiadvUxdKKpYdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.512 [XNIO-1 task-2] afS3iqCEQiadvUxdKKpYdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.512 [XNIO-1 task-2] afS3iqCEQiadvUxdKKpYdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.516 [XNIO-1 task-2] afS3iqCEQiadvUxdKKpYdw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.522 [XNIO-1 task-2] nNLBkNA3RqKuNj5WvW6N8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.522 [XNIO-1 task-2] nNLBkNA3RqKuNj5WvW6N8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.522 [XNIO-1 task-2] nNLBkNA3RqKuNj5WvW6N8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.522 [XNIO-1 task-2] nNLBkNA3RqKuNj5WvW6N8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.522 [XNIO-1 task-2] nNLBkNA3RqKuNj5WvW6N8A DEBUG com.networknt.schema.TypeValidator debug - validate( "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", refreshToken) +00:00:50.526 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.537 [XNIO-1 task-2] fyNBvsMFSbSrpWjX9LOBeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.537 [XNIO-1 task-2] fyNBvsMFSbSrpWjX9LOBeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.537 [XNIO-1 task-2] fyNBvsMFSbSrpWjX9LOBeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.537 [XNIO-1 task-2] fyNBvsMFSbSrpWjX9LOBeA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.546 [XNIO-1 task-2] yC1t9IQ4T9e_6Lba56pOnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.547 [XNIO-1 task-2] yC1t9IQ4T9e_6Lba56pOnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.547 [XNIO-1 task-2] yC1t9IQ4T9e_6Lba56pOnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.547 [XNIO-1 task-2] yC1t9IQ4T9e_6Lba56pOnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.547 [XNIO-1 task-2] yC1t9IQ4T9e_6Lba56pOnA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.563 [XNIO-1 task-2] z0ZwLL84R5S8VhOI1cAD6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.563 [XNIO-1 task-2] z0ZwLL84R5S8VhOI1cAD6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.563 [XNIO-1 task-2] z0ZwLL84R5S8VhOI1cAD6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.563 [XNIO-1 task-2] z0ZwLL84R5S8VhOI1cAD6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.572 [XNIO-1 task-2] 8El5kMvqQlOoamTAOec64w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.573 [XNIO-1 task-2] 8El5kMvqQlOoamTAOec64w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.573 [XNIO-1 task-2] 8El5kMvqQlOoamTAOec64w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.573 [XNIO-1 task-2] 8El5kMvqQlOoamTAOec64w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.573 [XNIO-1 task-2] 8El5kMvqQlOoamTAOec64w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.585 [XNIO-1 task-2] 7IncKGrKSw2uXcpqAdZ3pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.585 [XNIO-1 task-2] 7IncKGrKSw2uXcpqAdZ3pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.585 [XNIO-1 task-2] 7IncKGrKSw2uXcpqAdZ3pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.585 [XNIO-1 task-2] 7IncKGrKSw2uXcpqAdZ3pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.585 [XNIO-1 task-2] 7IncKGrKSw2uXcpqAdZ3pw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.591 [XNIO-1 task-2] IJS8YtEiRPWP07c4ICvXcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.591 [XNIO-1 task-2] IJS8YtEiRPWP07c4ICvXcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.591 [XNIO-1 task-2] IJS8YtEiRPWP07c4ICvXcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.592 [XNIO-1 task-2] IJS8YtEiRPWP07c4ICvXcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.592 [XNIO-1 task-2] IJS8YtEiRPWP07c4ICvXcg DEBUG com.networknt.schema.TypeValidator debug - validate( "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", refreshToken) +00:00:50.594 [XNIO-1 task-2] IJS8YtEiRPWP07c4ICvXcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b is not found.","severity":"ERROR"} +00:00:50.606 [XNIO-1 task-2] GzHAEY2ET4aIOYakeRVWHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.606 [XNIO-1 task-2] GzHAEY2ET4aIOYakeRVWHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.606 [XNIO-1 task-2] GzHAEY2ET4aIOYakeRVWHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.606 [XNIO-1 task-2] GzHAEY2ET4aIOYakeRVWHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.607 [XNIO-1 task-2] GzHAEY2ET4aIOYakeRVWHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.614 [XNIO-1 task-2] O97qSWBIS5G_kpLXZtKpqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.615 [XNIO-1 task-2] O97qSWBIS5G_kpLXZtKpqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.615 [XNIO-1 task-2] O97qSWBIS5G_kpLXZtKpqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.615 [XNIO-1 task-2] O97qSWBIS5G_kpLXZtKpqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.615 [XNIO-1 task-2] O97qSWBIS5G_kpLXZtKpqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", refreshToken) +00:00:50.615 [XNIO-1 task-2] O97qSWBIS5G_kpLXZtKpqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b is not found.","severity":"ERROR"} +00:00:50.623 [XNIO-1 task-2] 3QebRxsrRf2oFBSa036TKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.623 [XNIO-1 task-2] 3QebRxsrRf2oFBSa036TKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.623 [XNIO-1 task-2] 3QebRxsrRf2oFBSa036TKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.623 [XNIO-1 task-2] 3QebRxsrRf2oFBSa036TKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.623 [XNIO-1 task-2] 3QebRxsrRf2oFBSa036TKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 +00:00:50.627 [XNIO-1 task-2] OrMgUCsuTEK62XXFls3Log DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.627 [XNIO-1 task-2] OrMgUCsuTEK62XXFls3Log DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.628 [XNIO-1 task-2] OrMgUCsuTEK62XXFls3Log DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.628 [XNIO-1 task-2] OrMgUCsuTEK62XXFls3Log DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.628 [XNIO-1 task-2] OrMgUCsuTEK62XXFls3Log DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.664 [XNIO-1 task-2] xxgnTASYTumtJX3nVLu6DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b +00:00:50.664 [XNIO-1 task-2] xxgnTASYTumtJX3nVLu6DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.664 [XNIO-1 task-2] xxgnTASYTumtJX3nVLu6DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.664 [XNIO-1 task-2] xxgnTASYTumtJX3nVLu6DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b +00:00:50.664 [XNIO-1 task-2] xxgnTASYTumtJX3nVLu6DQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b +00:00:50.674 [XNIO-1 task-2] 5fWAkNiyRViBYTD9HpvYKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.674 [XNIO-1 task-2] 5fWAkNiyRViBYTD9HpvYKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.674 [XNIO-1 task-2] 5fWAkNiyRViBYTD9HpvYKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.674 [XNIO-1 task-2] 5fWAkNiyRViBYTD9HpvYKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b, base path is set to: null +00:00:50.674 [XNIO-1 task-2] 5fWAkNiyRViBYTD9HpvYKA DEBUG com.networknt.schema.TypeValidator debug - validate( "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", "d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b", refreshToken) +00:00:50.675 [XNIO-1 task-2] 5fWAkNiyRViBYTD9HpvYKA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d5d5c9a0-a913-4f5e-ba44-8e5a127bf33b is not found.","severity":"ERROR"} +00:00:50.678 [XNIO-1 task-2] -K2gR38NS7SIYWUIg_UTZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.679 [XNIO-1 task-2] -K2gR38NS7SIYWUIg_UTZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.679 [XNIO-1 task-2] -K2gR38NS7SIYWUIg_UTZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.679 [XNIO-1 task-2] -K2gR38NS7SIYWUIg_UTZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.687 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ac895eab +00:00:50.688 [XNIO-1 task-2] hG97Y6ObSJmxlIhxfQIfGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.688 [XNIO-1 task-2] hG97Y6ObSJmxlIhxfQIfGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.688 [XNIO-1 task-2] hG97Y6ObSJmxlIhxfQIfGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.688 [XNIO-1 task-2] hG97Y6ObSJmxlIhxfQIfGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.688 [XNIO-1 task-2] hG97Y6ObSJmxlIhxfQIfGw DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.695 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.699 [XNIO-1 task-2] Yf0Bo50PS1S9iU0JSaJKLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.699 [XNIO-1 task-2] Yf0Bo50PS1S9iU0JSaJKLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.699 [XNIO-1 task-2] Yf0Bo50PS1S9iU0JSaJKLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.700 [XNIO-1 task-2] Yf0Bo50PS1S9iU0JSaJKLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.700 [XNIO-1 task-2] Yf0Bo50PS1S9iU0JSaJKLg DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.700 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.708 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:20cf334a +00:00:50.708 [XNIO-1 task-2] XhIURaIARX-lb48hjHE1jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.709 [XNIO-1 task-2] XhIURaIARX-lb48hjHE1jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.709 [XNIO-1 task-2] XhIURaIARX-lb48hjHE1jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.710 [XNIO-1 task-2] XhIURaIARX-lb48hjHE1jA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.710 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3f910524-c2bb-42d8-a537-1c6231e2111c +00:00:50.715 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3f910524-c2bb-42d8-a537-1c6231e2111c +00:00:50.723 [XNIO-1 task-2] Bel9TgqVS3OkVx-SF8Vk5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.724 [XNIO-1 task-2] Bel9TgqVS3OkVx-SF8Vk5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.724 [XNIO-1 task-2] Bel9TgqVS3OkVx-SF8Vk5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.724 [XNIO-1 task-2] Bel9TgqVS3OkVx-SF8Vk5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.725 [XNIO-1 task-2] Bel9TgqVS3OkVx-SF8Vk5A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.733 [XNIO-1 task-2] jRnr2LSBSEaKgCjOqun7YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.733 [XNIO-1 task-2] jRnr2LSBSEaKgCjOqun7YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.733 [XNIO-1 task-2] jRnr2LSBSEaKgCjOqun7YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.734 [XNIO-1 task-2] jRnr2LSBSEaKgCjOqun7YQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.740 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:397da06c +00:00:50.742 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:397da06c +00:00:50.744 [XNIO-1 task-2] 1egKhA4OTKCTOHnh1kp0_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.744 [XNIO-1 task-2] 1egKhA4OTKCTOHnh1kp0_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.744 [XNIO-1 task-2] 1egKhA4OTKCTOHnh1kp0_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.745 [XNIO-1 task-2] 1egKhA4OTKCTOHnh1kp0_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.759 [XNIO-1 task-2] deNtr3RjQ5OvM8PoyVhuEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.759 [XNIO-1 task-2] deNtr3RjQ5OvM8PoyVhuEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.759 [XNIO-1 task-2] deNtr3RjQ5OvM8PoyVhuEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.759 [XNIO-1 task-2] deNtr3RjQ5OvM8PoyVhuEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.760 [XNIO-1 task-2] deNtr3RjQ5OvM8PoyVhuEA DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.761 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.769 [XNIO-1 task-2] pcGKnbPoRFSWYkep6H4B4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.770 [XNIO-1 task-2] pcGKnbPoRFSWYkep6H4B4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.770 [XNIO-1 task-2] pcGKnbPoRFSWYkep6H4B4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.770 [XNIO-1 task-2] pcGKnbPoRFSWYkep6H4B4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.770 [XNIO-1 task-2] pcGKnbPoRFSWYkep6H4B4w DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.770 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.774 [XNIO-1 task-2] OvkB62rvRcybiqytn6CywQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.774 [XNIO-1 task-2] OvkB62rvRcybiqytn6CywQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.774 [XNIO-1 task-2] OvkB62rvRcybiqytn6CywQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.774 [XNIO-1 task-2] OvkB62rvRcybiqytn6CywQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.775 [XNIO-1 task-2] OvkB62rvRcybiqytn6CywQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.813 [XNIO-1 task-2] KlFt5HvIRhqYTkbEo9FsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.813 [XNIO-1 task-2] KlFt5HvIRhqYTkbEo9FsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.814 [XNIO-1 task-2] KlFt5HvIRhqYTkbEo9FsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.814 [XNIO-1 task-2] KlFt5HvIRhqYTkbEo9FsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.815 [XNIO-1 task-2] KlFt5HvIRhqYTkbEo9FsLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.816 [XNIO-1 task-2] KlFt5HvIRhqYTkbEo9FsLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af383352-e0b5-4231-91c3-cfee3dc47c06 is not found.","severity":"ERROR"} +00:00:50.827 [XNIO-1 task-2] Jb-rmaPzQTWQ9HditZKCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.828 [XNIO-1 task-2] Jb-rmaPzQTWQ9HditZKCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.828 [XNIO-1 task-2] Jb-rmaPzQTWQ9HditZKCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.828 [XNIO-1 task-2] Jb-rmaPzQTWQ9HditZKCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.828 [XNIO-1 task-2] Jb-rmaPzQTWQ9HditZKCVg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.829 [XNIO-1 task-2] Jb-rmaPzQTWQ9HditZKCVg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af383352-e0b5-4231-91c3-cfee3dc47c06 is not found.","severity":"ERROR"} +00:00:50.833 [XNIO-1 task-2] pgyT8zPtTKqO1H0S19hXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.833 [XNIO-1 task-2] pgyT8zPtTKqO1H0S19hXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.833 [XNIO-1 task-2] pgyT8zPtTKqO1H0S19hXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.833 [XNIO-1 task-2] pgyT8zPtTKqO1H0S19hXLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.834 [XNIO-1 task-2] pgyT8zPtTKqO1H0S19hXLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.835 [XNIO-1 task-2] pgyT8zPtTKqO1H0S19hXLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token af383352-e0b5-4231-91c3-cfee3dc47c06 is not found.","severity":"ERROR"} +00:00:50.840 [XNIO-1 task-2] S3RjvLECSG2E1o50-SEnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.840 [XNIO-1 task-2] S3RjvLECSG2E1o50-SEnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.840 [XNIO-1 task-2] S3RjvLECSG2E1o50-SEnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:50.840 [XNIO-1 task-2] S3RjvLECSG2E1o50-SEnoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.840 [XNIO-1 task-2] S3RjvLECSG2E1o50-SEnoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.840 [XNIO-1 task-2] S3RjvLECSG2E1o50-SEnoA DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +00:00:50.852 [XNIO-1 task-2] BCnlYzokSTuDLm3sh2Wgtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +00:00:50.852 [XNIO-1 task-2] BCnlYzokSTuDLm3sh2Wgtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.852 [XNIO-1 task-2] BCnlYzokSTuDLm3sh2Wgtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:50.874 [XNIO-1 task-2] HvQLoHOwRui-5Oe3X6P9Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.874 [XNIO-1 task-2] HvQLoHOwRui-5Oe3X6P9Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.874 [XNIO-1 task-2] HvQLoHOwRui-5Oe3X6P9Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.875 [XNIO-1 task-2] HvQLoHOwRui-5Oe3X6P9Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.882 [XNIO-1 task-2] Z20dphaNTgqNPrQHgAcsFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.882 [XNIO-1 task-2] Z20dphaNTgqNPrQHgAcsFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.883 [XNIO-1 task-2] Z20dphaNTgqNPrQHgAcsFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.883 [XNIO-1 task-2] Z20dphaNTgqNPrQHgAcsFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.883 [XNIO-1 task-2] Z20dphaNTgqNPrQHgAcsFg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.892 [XNIO-1 task-2] aMtv6lmRTcerGWebWdFY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b55ac1e-e0f7-4359-9db3-7ef502b92335 +00:00:50.893 [XNIO-1 task-2] aMtv6lmRTcerGWebWdFY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.893 [XNIO-1 task-2] aMtv6lmRTcerGWebWdFY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.893 [XNIO-1 task-2] aMtv6lmRTcerGWebWdFY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0b55ac1e-e0f7-4359-9db3-7ef502b92335 +00:00:50.893 [XNIO-1 task-2] aMtv6lmRTcerGWebWdFY3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0b55ac1e-e0f7-4359-9db3-7ef502b92335 +00:00:50.906 [XNIO-1 task-2] yV0oLfMhQ2GacCHlNCTmjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.906 [XNIO-1 task-2] yV0oLfMhQ2GacCHlNCTmjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.906 [XNIO-1 task-2] yV0oLfMhQ2GacCHlNCTmjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.907 [XNIO-1 task-2] yV0oLfMhQ2GacCHlNCTmjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.914 [XNIO-1 task-2] Lkb9QjKcRpWjG4S4canjlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.914 [XNIO-1 task-2] Lkb9QjKcRpWjG4S4canjlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.915 [XNIO-1 task-2] Lkb9QjKcRpWjG4S4canjlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.915 [XNIO-1 task-2] Lkb9QjKcRpWjG4S4canjlw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.915 [XNIO-1 task-2] Lkb9QjKcRpWjG4S4canjlw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.929 [XNIO-1 task-2] setDw7JpTIyPoYgqgk3PaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.929 [XNIO-1 task-2] setDw7JpTIyPoYgqgk3PaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.929 [XNIO-1 task-2] setDw7JpTIyPoYgqgk3PaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +00:00:50.929 [XNIO-1 task-2] setDw7JpTIyPoYgqgk3PaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.929 [XNIO-1 task-2] setDw7JpTIyPoYgqgk3PaA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:50.936 [XNIO-1 task-2] R4P5ksRfS9CjqPNR9QWP-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.941 [XNIO-1 task-2] R4P5ksRfS9CjqPNR9QWP-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.942 [XNIO-1 task-2] R4P5ksRfS9CjqPNR9QWP-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +00:00:50.942 [XNIO-1 task-2] R4P5ksRfS9CjqPNR9QWP-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/af383352-e0b5-4231-91c3-cfee3dc47c06, base path is set to: null +00:00:50.942 [XNIO-1 task-2] R4P5ksRfS9CjqPNR9QWP-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "af383352-e0b5-4231-91c3-cfee3dc47c06", "af383352-e0b5-4231-91c3-cfee3dc47c06", refreshToken) +00:00:50.942 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:af383352-e0b5-4231-91c3-cfee3dc47c06 +00:00:50.949 [XNIO-1 task-2] Fq9Ntos1SOmqFpI0dItVhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.950 [XNIO-1 task-2] Fq9Ntos1SOmqFpI0dItVhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +00:00:50.951 [XNIO-1 task-2] Fq9Ntos1SOmqFpI0dItVhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.951 [XNIO-1 task-2] Fq9Ntos1SOmqFpI0dItVhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:50.951 [XNIO-1 task-2] Fq9Ntos1SOmqFpI0dItVhA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +00:00:50.960 [XNIO-1 task-2] ig26zLL8TbqSsYgUc1_5dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.960 [XNIO-1 task-2] ig26zLL8TbqSsYgUc1_5dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.960 [XNIO-1 task-2] ig26zLL8TbqSsYgUc1_5dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +00:00:50.960 [XNIO-1 task-2] ig26zLL8TbqSsYgUc1_5dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:50.966 [XNIO-1 task-2] GPRx0r7mQUqLsBBiAyuo9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +00:00:50.967 [XNIO-1 task-2] GPRx0r7mQUqLsBBiAyuo9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token diff --git a/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-service-1.log b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..e283e0e --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1715 @@ +00:00:41.486 [XNIO-1 task-2] OXS9I0eoQa-PN8SnayIlBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63d38574 +00:00:41.487 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:63d38574 +00:00:41.497 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.497 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:41.515 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.532 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:803c8de7-45ff-4287-8813-59c13e75e353 +00:00:41.552 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.552 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:803c8de7-45ff-4287-8813-59c13e75e353 +00:00:41.553 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:41.553 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "7530ca15-a60e-452c-bd73-177f71946b0f", {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:41.554 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "ff2c41d7", {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:41.554 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:41.555 [XNIO-1 task-2] Fz9vZZZBTR2rvnsXrevHvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.573 [XNIO-1 task-2] 58PROrtJRT6vo7Ol0q7Ajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.573 [XNIO-1 task-2] 58PROrtJRT6vo7Ol0q7Ajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.573 [XNIO-1 task-2] 58PROrtJRT6vo7Ol0q7Ajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.599 [XNIO-1 task-2] Jzw8pRa7Q36UXkuevyrjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.599 [XNIO-1 task-2] Jzw8pRa7Q36UXkuevyrjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.599 [XNIO-1 task-2] Jzw8pRa7Q36UXkuevyrjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.600 [XNIO-1 task-2] Jzw8pRa7Q36UXkuevyrjpA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:41.627 [XNIO-1 task-2] tj4m4oQmT2WkSFKKXdKCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dead74d1 +00:00:41.628 [XNIO-1 task-2] tj4m4oQmT2WkSFKKXdKCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.628 [XNIO-1 task-2] tj4m4oQmT2WkSFKKXdKCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:41.628 [XNIO-1 task-2] tj4m4oQmT2WkSFKKXdKCTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dead74d1 +00:00:41.682 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.683 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:41.683 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.684 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.684 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.685 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:41.685 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:41.685 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG com.networknt.schema.TypeValidator debug - validate( "802e21b7-5e40-4c93-a076-ec870996", {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:41.685 [XNIO-1 task-2] FGUTmvPPSfGsMmZ5D8qetQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff2c41d7","serviceName":"802e21b7-5e40-4c93-a076-ec870996","serviceDesc":"7530ca15-a60e-452c-bd73-177f71946b0f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:41.696 [XNIO-1 task-2] 4K7qw5ZIS5utBcwktpC6AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.696 [XNIO-1 task-2] 4K7qw5ZIS5utBcwktpC6AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:41.696 [XNIO-1 task-2] 4K7qw5ZIS5utBcwktpC6AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.697 [XNIO-1 task-2] 4K7qw5ZIS5utBcwktpC6AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:41.804 [XNIO-1 task-2] ha9wcj_DSGGVtEGYggGwcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ff2c41d7, base path is set to: null +00:00:41.805 [XNIO-1 task-2] ha9wcj_DSGGVtEGYggGwcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:41.805 [XNIO-1 task-2] ha9wcj_DSGGVtEGYggGwcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:41.805 [XNIO-1 task-2] ha9wcj_DSGGVtEGYggGwcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ff2c41d7, base path is set to: null +00:00:41.806 [XNIO-1 task-2] ha9wcj_DSGGVtEGYggGwcA DEBUG com.networknt.schema.TypeValidator debug - validate( "ff2c41d7", "ff2c41d7", serviceId) +00:00:41.824 [XNIO-1 task-2] xa4uuTUsRzi_6G13JOPKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.824 [XNIO-1 task-2] xa4uuTUsRzi_6G13JOPKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.825 [XNIO-1 task-2] xa4uuTUsRzi_6G13JOPKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.860 [XNIO-1 task-2] 9DTtfhH0SACrQJfg0gRHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.860 [XNIO-1 task-2] 9DTtfhH0SACrQJfg0gRHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.861 [XNIO-1 task-2] 9DTtfhH0SACrQJfg0gRHtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.956 [XNIO-1 task-2] hGI-eJ2-Qyy5-C_2d9CKsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:41.974 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2382b483 +00:00:41.977 [XNIO-1 task-2] hGI-eJ2-Qyy5-C_2d9CKsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.977 [XNIO-1 task-2] hGI-eJ2-Qyy5-C_2d9CKsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:41.980 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2382b483 +00:00:41.996 [XNIO-1 task-2] rgiRWJjPSgGYI6bhtswkjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:41.996 [XNIO-1 task-2] rgiRWJjPSgGYI6bhtswkjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:41.998 [XNIO-1 task-2] rgiRWJjPSgGYI6bhtswkjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.017 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0d7c8372 +00:00:42.107 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0d7c8372 +00:00:42.108 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:800c022b-f8af-42d3-afdc-f6b54235f94a +00:00:42.122 [XNIO-1 task-2] 1ZvzrSshTsuJX3I42JfISA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72a3543c, base path is set to: null +00:00:42.122 [XNIO-1 task-2] 1ZvzrSshTsuJX3I42JfISA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.122 [XNIO-1 task-2] 1ZvzrSshTsuJX3I42JfISA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:42.122 [XNIO-1 task-2] 1ZvzrSshTsuJX3I42JfISA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/72a3543c, base path is set to: null +00:00:42.123 [XNIO-1 task-2] 1ZvzrSshTsuJX3I42JfISA DEBUG com.networknt.schema.TypeValidator debug - validate( "72a3543c", "72a3543c", serviceId) +00:00:42.152 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.152 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.152 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.153 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.153 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:42.154 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG com.networknt.schema.TypeValidator debug - validate( "421d2fac-de63-44de-acb6-2b55eedd3c6b", {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:42.154 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d7c8372", {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:42.154 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:42.154 [XNIO-1 task-2] PYAcqm-WSR-d84FWxUBGxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d7c8372","serviceName":"c55d7149-fa9b-4e12-ac26-6706e662","serviceDesc":"421d2fac-de63-44de-acb6-2b55eedd3c6b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.155 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0d7c8372 +00:00:42.178 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.178 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.179 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.179 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.179 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:42.180 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9c0e058f-d7f4-4834-999b-07cea3e94cbd", {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:42.180 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0fa5752f", {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:42.180 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:42.180 [XNIO-1 task-2] bdTccwsgSNuaSpZIIouzYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0fa5752f","serviceName":"449d2508-8924-4f14-9c7d-f9f18176","serviceDesc":"9c0e058f-d7f4-4834-999b-07cea3e94cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.195 [XNIO-1 task-2] Wx4Gddh9SCijqjtn1zFVLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.195 [XNIO-1 task-2] Wx4Gddh9SCijqjtn1zFVLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.196 [XNIO-1 task-2] Wx4Gddh9SCijqjtn1zFVLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.196 [XNIO-1 task-2] Wx4Gddh9SCijqjtn1zFVLg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.261 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2382b483 +00:00:42.264 [XNIO-1 task-2] 6tirJzg1Tm-V69K4l1ry4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0fa5752f +00:00:42.264 [XNIO-1 task-2] 6tirJzg1Tm-V69K4l1ry4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.264 [XNIO-1 task-2] 6tirJzg1Tm-V69K4l1ry4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:42.266 [XNIO-1 task-2] 6tirJzg1Tm-V69K4l1ry4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0fa5752f +00:00:42.273 [XNIO-1 task-2] 0GATDxAbRumTpzZ9YiQTow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0fa5752f, base path is set to: null +00:00:42.273 [XNIO-1 task-2] 0GATDxAbRumTpzZ9YiQTow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.273 [XNIO-1 task-2] 0GATDxAbRumTpzZ9YiQTow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:42.273 [XNIO-1 task-2] 0GATDxAbRumTpzZ9YiQTow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0fa5752f, base path is set to: null +00:00:42.274 [XNIO-1 task-2] 0GATDxAbRumTpzZ9YiQTow DEBUG com.networknt.schema.TypeValidator debug - validate( "0fa5752f", "0fa5752f", serviceId) +00:00:42.289 [XNIO-1 task-2] -ZZSnRnpSmGdLETU-_zyLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d7c8372 +00:00:42.289 [XNIO-1 task-2] -ZZSnRnpSmGdLETU-_zyLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.289 [XNIO-1 task-2] -ZZSnRnpSmGdLETU-_zyLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:42.290 [XNIO-1 task-2] -ZZSnRnpSmGdLETU-_zyLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d7c8372 +00:00:42.297 [XNIO-1 task-2] S3OLtyWNSVKkCymFQmKwGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0d7c8372, base path is set to: null +00:00:42.297 [XNIO-1 task-2] S3OLtyWNSVKkCymFQmKwGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.297 [XNIO-1 task-2] S3OLtyWNSVKkCymFQmKwGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:42.297 [XNIO-1 task-2] S3OLtyWNSVKkCymFQmKwGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0d7c8372, base path is set to: null +00:00:42.298 [XNIO-1 task-2] S3OLtyWNSVKkCymFQmKwGA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d7c8372", "0d7c8372", serviceId) +00:00:42.317 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0d7c8372 +00:00:42.325 [XNIO-1 task-2] AlPfGZt6S_OQMYFa5peADA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.326 [XNIO-1 task-2] AlPfGZt6S_OQMYFa5peADA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.326 [XNIO-1 task-2] AlPfGZt6S_OQMYFa5peADA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.326 [XNIO-1 task-2] AlPfGZt6S_OQMYFa5peADA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.460 [XNIO-1 task-2] fQrQ0V5JSPu4snqKUR3xKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.460 [XNIO-1 task-2] fQrQ0V5JSPu4snqKUR3xKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.460 [XNIO-1 task-2] fQrQ0V5JSPu4snqKUR3xKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.462 [XNIO-1 task-2] fQrQ0V5JSPu4snqKUR3xKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.484 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2382b483 +00:00:42.502 [XNIO-1 task-2] 4r2HoXuiTUyicPb4B8W93w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.502 [XNIO-1 task-2] 4r2HoXuiTUyicPb4B8W93w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.502 [XNIO-1 task-2] 4r2HoXuiTUyicPb4B8W93w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.504 [XNIO-1 task-2] 4r2HoXuiTUyicPb4B8W93w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.522 [XNIO-1 task-2] JrZyy3pERg2N8DzhbCVzPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.522 [XNIO-1 task-2] JrZyy3pERg2N8DzhbCVzPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.522 [XNIO-1 task-2] JrZyy3pERg2N8DzhbCVzPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.548 [XNIO-1 task-2] yl-Py99nSH-AnLELU39n2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d907d281 +00:00:42.548 [XNIO-1 task-2] yl-Py99nSH-AnLELU39n2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.548 [XNIO-1 task-2] yl-Py99nSH-AnLELU39n2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:42.549 [XNIO-1 task-2] yl-Py99nSH-AnLELU39n2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d907d281 +00:00:42.569 [XNIO-1 task-2] 1XcpwUaMQsizlH0DXnLTVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.569 [XNIO-1 task-2] 1XcpwUaMQsizlH0DXnLTVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.570 [XNIO-1 task-2] 1XcpwUaMQsizlH0DXnLTVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.570 [XNIO-1 task-2] 1XcpwUaMQsizlH0DXnLTVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.591 [XNIO-1 task-2] qfSAUXtcQWCyrtdOlDDlxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.591 [XNIO-1 task-2] qfSAUXtcQWCyrtdOlDDlxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.591 [XNIO-1 task-2] qfSAUXtcQWCyrtdOlDDlxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.592 [XNIO-1 task-2] qfSAUXtcQWCyrtdOlDDlxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.616 [XNIO-1 task-2] 0NWFvngkSo-TxN8fN0IlHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.616 [XNIO-1 task-2] 0NWFvngkSo-TxN8fN0IlHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.616 [XNIO-1 task-2] 0NWFvngkSo-TxN8fN0IlHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.656 [XNIO-1 task-2] jytrt2rLS1-nsD9ZQV433A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f5a54372, base path is set to: null +00:00:42.656 [XNIO-1 task-2] jytrt2rLS1-nsD9ZQV433A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.656 [XNIO-1 task-2] jytrt2rLS1-nsD9ZQV433A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:42.657 [XNIO-1 task-2] jytrt2rLS1-nsD9ZQV433A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f5a54372, base path is set to: null +00:00:42.657 [XNIO-1 task-2] jytrt2rLS1-nsD9ZQV433A DEBUG com.networknt.schema.TypeValidator debug - validate( "f5a54372", "f5a54372", serviceId) +00:00:42.681 [XNIO-1 task-2] -CeIPJYISkKAOoNkfD_irQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.681 [XNIO-1 task-2] -CeIPJYISkKAOoNkfD_irQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.682 [XNIO-1 task-2] -CeIPJYISkKAOoNkfD_irQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.732 [XNIO-1 task-2] DkjBq-cpQcy7DHIQF_3dIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3900e41e +00:00:42.732 [XNIO-1 task-2] DkjBq-cpQcy7DHIQF_3dIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.732 [XNIO-1 task-2] DkjBq-cpQcy7DHIQF_3dIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:42.735 [XNIO-1 task-2] DkjBq-cpQcy7DHIQF_3dIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3900e41e +00:00:42.760 [XNIO-1 task-2] 8r4eiNPbRoCa6blopoosyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.760 [XNIO-1 task-2] 8r4eiNPbRoCa6blopoosyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.760 [XNIO-1 task-2] 8r4eiNPbRoCa6blopoosyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.761 [XNIO-1 task-2] 8r4eiNPbRoCa6blopoosyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.876 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.876 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.877 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:42.878 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.878 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.878 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:42.878 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:42.879 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG com.networknt.schema.TypeValidator debug - validate( "0c52a708-2db7-44ad-ace0-5ede1b06", {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:42.879 [XNIO-1 task-2] s3DCqNGYREud9jB0jZNnIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3900e41e","serviceName":"0c52a708-2db7-44ad-ace0-5ede1b06","serviceDesc":"b5a68d4e-9143-4552-acf2-f8239ad8ae90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:42.902 [XNIO-1 task-2] 2ojT5MOZRCi8tXgIK35rlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3900e41e, base path is set to: null +00:00:42.902 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2382b483 +00:00:42.903 [XNIO-1 task-2] 2ojT5MOZRCi8tXgIK35rlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:42.903 [XNIO-1 task-2] 2ojT5MOZRCi8tXgIK35rlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:42.903 [XNIO-1 task-2] 2ojT5MOZRCi8tXgIK35rlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3900e41e, base path is set to: null +00:00:42.904 [XNIO-1 task-2] 2ojT5MOZRCi8tXgIK35rlA DEBUG com.networknt.schema.TypeValidator debug - validate( "3900e41e", "3900e41e", serviceId) +00:00:42.948 [XNIO-1 task-2] D5UecEQKTyaEKc_OyNB5Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.948 [XNIO-1 task-2] D5UecEQKTyaEKc_OyNB5Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.949 [XNIO-1 task-2] D5UecEQKTyaEKc_OyNB5Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.971 [XNIO-1 task-2] QLwFgH25Sdq0T9TQqa-3jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ff76874 +00:00:42.971 [XNIO-1 task-2] QLwFgH25Sdq0T9TQqa-3jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:42.971 [XNIO-1 task-2] QLwFgH25Sdq0T9TQqa-3jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:42.971 [XNIO-1 task-2] QLwFgH25Sdq0T9TQqa-3jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ff76874 +00:00:42.979 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:926feca7-7bf0-42f2-b770-8c425ffcf352 +00:00:43.094 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2382b483 +00:00:43.114 [XNIO-1 task-2] tFwq0HyUS_CDhaZQyoxi7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.114 [XNIO-1 task-2] tFwq0HyUS_CDhaZQyoxi7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.114 [XNIO-1 task-2] tFwq0HyUS_CDhaZQyoxi7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.115 [XNIO-1 task-2] tFwq0HyUS_CDhaZQyoxi7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.148 [XNIO-1 task-2] PZeoGPoSRyGI_VSpLqCUzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.149 [XNIO-1 task-2] PZeoGPoSRyGI_VSpLqCUzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.149 [XNIO-1 task-2] PZeoGPoSRyGI_VSpLqCUzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.196 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.199 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.221 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.221 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.222 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.223 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.223 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.223 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:43.223 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.223 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG com.networknt.schema.TypeValidator debug - validate( "eab50acb-abea-4354-849b-2739f729", {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:43.223 [XNIO-1 task-2] BMHk1ztXQU-GggT7XjPSZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.246 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.247 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.247 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.248 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.248 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.248 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:43.248 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.252 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG com.networknt.schema.TypeValidator debug - validate( "eab50acb-abea-4354-849b-2739f729", {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:43.252 [XNIO-1 task-2] f5W95xV7QdKuLQO2KzkeGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3ad9390d","serviceName":"eab50acb-abea-4354-849b-2739f729","serviceDesc":"72006ebe-e6dc-4fe6-b195-ea3db7f90f5c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.276 [XNIO-1 task-2] 7pMIv2s6Tk62shb3Mrs7vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3ad9390d, base path is set to: null +00:00:43.276 [XNIO-1 task-2] 7pMIv2s6Tk62shb3Mrs7vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.276 [XNIO-1 task-2] 7pMIv2s6Tk62shb3Mrs7vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:43.277 [XNIO-1 task-2] 7pMIv2s6Tk62shb3Mrs7vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3ad9390d, base path is set to: null +00:00:43.277 [XNIO-1 task-2] 7pMIv2s6Tk62shb3Mrs7vA DEBUG com.networknt.schema.TypeValidator debug - validate( "3ad9390d", "3ad9390d", serviceId) +00:00:43.293 [XNIO-1 task-2] ECiwKwvOQRuI2qKxHNja7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.293 [XNIO-1 task-2] ECiwKwvOQRuI2qKxHNja7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.293 [XNIO-1 task-2] ECiwKwvOQRuI2qKxHNja7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.307 [XNIO-1 task-2] szuy30HVStWRAoezTcqPBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/aa1c14be +00:00:43.307 [XNIO-1 task-2] szuy30HVStWRAoezTcqPBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.308 [XNIO-1 task-2] szuy30HVStWRAoezTcqPBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:43.308 [XNIO-1 task-2] szuy30HVStWRAoezTcqPBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/aa1c14be +00:00:43.321 [XNIO-1 task-2] wD2039mtRaiMFqEtX1Rgqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.322 [XNIO-1 task-2] wD2039mtRaiMFqEtX1Rgqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.322 [XNIO-1 task-2] wD2039mtRaiMFqEtX1Rgqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.355 [XNIO-1 task-2] M4St794iSRKxhYSy0lbURw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.355 [XNIO-1 task-2] M4St794iSRKxhYSy0lbURw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.356 [XNIO-1 task-2] M4St794iSRKxhYSy0lbURw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.369 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2af72bf1-f4df-4b37-9227-ccf01717f7c1 +00:00:43.375 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2af72bf1-f4df-4b37-9227-ccf01717f7c1 +00:00:43.395 [XNIO-1 task-2] OKwRXHgnTRC0lY6Fkqo8Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/54972a55 +00:00:43.395 [XNIO-1 task-2] OKwRXHgnTRC0lY6Fkqo8Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.395 [XNIO-1 task-2] OKwRXHgnTRC0lY6Fkqo8Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:43.396 [XNIO-1 task-2] OKwRXHgnTRC0lY6Fkqo8Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/54972a55 +00:00:43.405 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.406 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.407 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:183df51c-1383-4527-8c07-c995dee5b861 +00:00:43.407 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.408 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.408 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:43.408 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG com.networknt.schema.TypeValidator debug - validate( "c98b268d-050e-4295-8485-45f0cc9c7852", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:43.409 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG com.networknt.schema.TypeValidator debug - validate( "0d31dd3b", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:43.409 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:43.409 [XNIO-1 task-2] AOfAmgyfQnu1UOD9H5B--g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.410 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:183df51c-1383-4527-8c07-c995dee5b861 +00:00:43.433 [XNIO-1 task-2] gk3O1jT5Q7iTXDsu_IqUNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.433 [XNIO-1 task-2] gk3O1jT5Q7iTXDsu_IqUNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.434 [XNIO-1 task-2] gk3O1jT5Q7iTXDsu_IqUNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.449 [XNIO-1 task-2] cvb8JSE0Sde6gZVLDGpIOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3ad9390d +00:00:43.449 [XNIO-1 task-2] cvb8JSE0Sde6gZVLDGpIOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.449 [XNIO-1 task-2] cvb8JSE0Sde6gZVLDGpIOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:43.450 [XNIO-1 task-2] cvb8JSE0Sde6gZVLDGpIOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3ad9390d +00:00:43.457 [XNIO-1 task-2] zrZYjlCAQnuaj2zT9uUE8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.457 [XNIO-1 task-2] zrZYjlCAQnuaj2zT9uUE8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.457 [XNIO-1 task-2] zrZYjlCAQnuaj2zT9uUE8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.458 [XNIO-1 task-2] zrZYjlCAQnuaj2zT9uUE8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.460 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.530 [XNIO-1 task-2] lSFSci-6SU-IjM09TAQ58A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/54972a55 +00:00:43.530 [XNIO-1 task-2] lSFSci-6SU-IjM09TAQ58A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.530 [XNIO-1 task-2] lSFSci-6SU-IjM09TAQ58A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:43.530 [XNIO-1 task-2] lSFSci-6SU-IjM09TAQ58A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/54972a55 +00:00:43.541 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8c7a9faf-a835-4788-b286-1496f55371ee +00:00:43.573 [XNIO-1 task-2] QQBfvWkqQFaNeevdgJsmug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.573 [XNIO-1 task-2] QQBfvWkqQFaNeevdgJsmug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.574 [XNIO-1 task-2] QQBfvWkqQFaNeevdgJsmug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.620 [XNIO-1 task-2] gNETXfbCQoKlAl5rdG36JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.620 [XNIO-1 task-2] gNETXfbCQoKlAl5rdG36JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.620 [XNIO-1 task-2] gNETXfbCQoKlAl5rdG36JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.621 [XNIO-1 task-2] gNETXfbCQoKlAl5rdG36JQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.645 [XNIO-1 task-2] uuOWd0GBTe6CVgCQ-QoSAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.645 [XNIO-1 task-2] uuOWd0GBTe6CVgCQ-QoSAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.645 [XNIO-1 task-2] uuOWd0GBTe6CVgCQ-QoSAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.714 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:55e5d0fa-9791-4d7a-97e3-3b33cbf4f30e +00:00:43.764 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.764 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.764 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.765 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.765 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.765 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:43.765 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.765 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7fdff0dd-77b5-4165-b10e-39445403", {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:43.766 [XNIO-1 task-2] Lyc628DSToS0MjtQxrMzOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"91c2893b","serviceName":"7fdff0dd-77b5-4165-b10e-39445403","serviceDesc":"80e6b9b5-b266-4cf1-9b1b-e4982681eba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.782 [XNIO-1 task-2] 1EFGk7uGSB6IVLki5CiQDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91c2893b, base path is set to: null +00:00:43.782 [XNIO-1 task-2] 1EFGk7uGSB6IVLki5CiQDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.782 [XNIO-1 task-2] 1EFGk7uGSB6IVLki5CiQDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:43.782 [XNIO-1 task-2] 1EFGk7uGSB6IVLki5CiQDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91c2893b, base path is set to: null +00:00:43.783 [XNIO-1 task-2] 1EFGk7uGSB6IVLki5CiQDg DEBUG com.networknt.schema.TypeValidator debug - validate( "91c2893b", "91c2893b", serviceId) +00:00:43.835 [XNIO-1 task-2] J7flgBZmRviCQqp9XJwzKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/97e277f2 +00:00:43.835 [XNIO-1 task-2] J7flgBZmRviCQqp9XJwzKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.835 [XNIO-1 task-2] J7flgBZmRviCQqp9XJwzKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:43.835 [XNIO-1 task-2] J7flgBZmRviCQqp9XJwzKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/97e277f2 +00:00:43.853 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.853 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.853 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.854 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.854 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.855 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:43.855 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:43.855 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f6f1bd0-381a-4393-8498-c8026a34", {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:43.855 [XNIO-1 task-2] CB6vJS1DQcC0XCG-QTLIjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"97e277f2","serviceName":"5f6f1bd0-381a-4393-8498-c8026a34","serviceDesc":"0f3c4cef-f309-4541-a8bb-c30d72e9bb7d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:43.884 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b296704 +00:00:43.887 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b296704 +00:00:43.889 [XNIO-1 task-2] GDUuaTHyR-iay13kw_3W3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3ad9390d +00:00:43.889 [XNIO-1 task-2] GDUuaTHyR-iay13kw_3W3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.889 [XNIO-1 task-2] GDUuaTHyR-iay13kw_3W3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:43.889 [XNIO-1 task-2] GDUuaTHyR-iay13kw_3W3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3ad9390d +00:00:43.950 [XNIO-1 task-2] YDqW1DO1SyGTpIvI9btN_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.952 [XNIO-1 task-2] YDqW1DO1SyGTpIvI9btN_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.953 [XNIO-1 task-2] YDqW1DO1SyGTpIvI9btN_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.953 [XNIO-1 task-2] YDqW1DO1SyGTpIvI9btN_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.962 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:04b6b673-cdc6-4ddd-8a84-8990943448ef +00:00:43.964 [XNIO-1 task-2] 49a7ui5PT6W87EPtMDfjvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05b0acba +00:00:43.964 [XNIO-1 task-2] 49a7ui5PT6W87EPtMDfjvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:43.964 [XNIO-1 task-2] 49a7ui5PT6W87EPtMDfjvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:43.965 [XNIO-1 task-2] 49a7ui5PT6W87EPtMDfjvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/05b0acba +00:00:43.965 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:04b6b673-cdc6-4ddd-8a84-8990943448ef +00:00:43.970 [XNIO-1 task-2] IyZL8OR1TYWr5X_sx62PuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.970 [XNIO-1 task-2] IyZL8OR1TYWr5X_sx62PuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.970 [XNIO-1 task-2] IyZL8OR1TYWr5X_sx62PuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:43.971 [XNIO-1 task-2] IyZL8OR1TYWr5X_sx62PuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:43.988 [XNIO-1 task-2] VIoCzAKaRWiRBLcJmzoQZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/05b0acba, base path is set to: null +00:00:43.989 [XNIO-1 task-2] VIoCzAKaRWiRBLcJmzoQZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:43.989 [XNIO-1 task-2] VIoCzAKaRWiRBLcJmzoQZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:43.989 [XNIO-1 task-2] VIoCzAKaRWiRBLcJmzoQZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/05b0acba, base path is set to: null +00:00:43.990 [XNIO-1 task-2] VIoCzAKaRWiRBLcJmzoQZw DEBUG com.networknt.schema.TypeValidator debug - validate( "05b0acba", "05b0acba", serviceId) +00:00:44.004 [XNIO-1 task-2] 479WgikVQ7i16m3jO-vcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:44.004 [XNIO-1 task-2] 479WgikVQ7i16m3jO-vcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.004 [XNIO-1 task-2] 479WgikVQ7i16m3jO-vcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.004 [XNIO-1 task-2] 479WgikVQ7i16m3jO-vcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:44.009 [XNIO-1 task-2] VQGjlarxTgygf6REAZ_qZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0d31dd3b, base path is set to: null +00:00:44.009 [XNIO-1 task-2] VQGjlarxTgygf6REAZ_qZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.009 [XNIO-1 task-2] VQGjlarxTgygf6REAZ_qZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:44.010 [XNIO-1 task-2] VQGjlarxTgygf6REAZ_qZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0d31dd3b, base path is set to: null +00:00:44.010 [XNIO-1 task-2] VQGjlarxTgygf6REAZ_qZA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d31dd3b", "0d31dd3b", serviceId) +00:00:44.015 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.015 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.015 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.016 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.016 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.016 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG com.networknt.schema.TypeValidator debug - validate( "c98b268d-050e-4295-8485-45f0cc9c7852", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:44.017 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d31dd3b", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:44.017 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.017 [XNIO-1 task-2] 6omL_KtSQx2zE0cxsOy8aA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.038 [XNIO-1 task-2] nF_kZET2Sw63KjHSfYvtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.038 [XNIO-1 task-2] nF_kZET2Sw63KjHSfYvtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.039 [XNIO-1 task-2] nF_kZET2Sw63KjHSfYvtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.039 [XNIO-1 task-2] nF_kZET2Sw63KjHSfYvtnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.076 [XNIO-1 task-2] JDHG-ZBmSmqWZjdW-PLLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.076 [XNIO-1 task-2] JDHG-ZBmSmqWZjdW-PLLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.076 [XNIO-1 task-2] JDHG-ZBmSmqWZjdW-PLLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.077 [XNIO-1 task-2] JDHG-ZBmSmqWZjdW-PLLgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.091 [XNIO-1 task-2] vc8oWicpSlmsR8jNDjZx1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.091 [XNIO-1 task-2] vc8oWicpSlmsR8jNDjZx1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.092 [XNIO-1 task-2] vc8oWicpSlmsR8jNDjZx1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.120 [XNIO-1 task-2] 7GjTQeSnTCCLtbdhz1qeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.121 [XNIO-1 task-2] 7GjTQeSnTCCLtbdhz1qeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.121 [XNIO-1 task-2] 7GjTQeSnTCCLtbdhz1qeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.144 [XNIO-1 task-2] Y6uHfjiUREOg77a_io7P4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.145 [XNIO-1 task-2] Y6uHfjiUREOg77a_io7P4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.145 [XNIO-1 task-2] Y6uHfjiUREOg77a_io7P4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.155 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3b6cedc6-c4ab-424c-97f9-ef115a6e5131 +00:00:44.172 [XNIO-1 task-2] aBnUCdBLQr2ZaiEYoGuxjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/97e277f2, base path is set to: null +00:00:44.172 [XNIO-1 task-2] aBnUCdBLQr2ZaiEYoGuxjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.172 [XNIO-1 task-2] aBnUCdBLQr2ZaiEYoGuxjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:44.172 [XNIO-1 task-2] aBnUCdBLQr2ZaiEYoGuxjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/97e277f2, base path is set to: null +00:00:44.173 [XNIO-1 task-2] aBnUCdBLQr2ZaiEYoGuxjw DEBUG com.networknt.schema.TypeValidator debug - validate( "97e277f2", "97e277f2", serviceId) +00:00:44.199 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b296704 +00:00:44.200 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.201 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.201 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.202 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.202 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.203 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01", {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:44.203 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "8c077d0f", {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:44.206 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.206 [XNIO-1 task-2] Uf930-ntQU-eu5NNCPbc6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.242 [XNIO-1 task-2] WEdQiVZUQ6S4zyBbbkdS4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c077d0f +00:00:44.243 [XNIO-1 task-2] WEdQiVZUQ6S4zyBbbkdS4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.243 [XNIO-1 task-2] WEdQiVZUQ6S4zyBbbkdS4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.243 [XNIO-1 task-2] WEdQiVZUQ6S4zyBbbkdS4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c077d0f +00:00:44.248 [XNIO-1 task-2] G6CT9vr3QbSHN_yKCPU9lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2ce0e22, base path is set to: null +00:00:44.248 [XNIO-1 task-2] G6CT9vr3QbSHN_yKCPU9lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.248 [XNIO-1 task-2] G6CT9vr3QbSHN_yKCPU9lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:44.249 [XNIO-1 task-2] G6CT9vr3QbSHN_yKCPU9lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2ce0e22, base path is set to: null +00:00:44.249 [XNIO-1 task-2] G6CT9vr3QbSHN_yKCPU9lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f2ce0e22", "f2ce0e22", serviceId) +00:00:44.256 [XNIO-1 task-2] I46ztQIqShue7K0mPyz7EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2ce0e22 +00:00:44.256 [XNIO-1 task-2] I46ztQIqShue7K0mPyz7EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.256 [XNIO-1 task-2] I46ztQIqShue7K0mPyz7EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.256 [XNIO-1 task-2] I46ztQIqShue7K0mPyz7EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2ce0e22 +00:00:44.262 [XNIO-1 task-2] tad3aUToTRahDC8zgm1-YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.262 [XNIO-1 task-2] tad3aUToTRahDC8zgm1-YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.262 [XNIO-1 task-2] tad3aUToTRahDC8zgm1-YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.279 [XNIO-1 task-2] 1mYM6uDjQeuW6rTBgrf41Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4dd7fcf4, base path is set to: null +00:00:44.279 [XNIO-1 task-2] 1mYM6uDjQeuW6rTBgrf41Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.279 [XNIO-1 task-2] 1mYM6uDjQeuW6rTBgrf41Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:44.279 [XNIO-1 task-2] 1mYM6uDjQeuW6rTBgrf41Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4dd7fcf4, base path is set to: null +00:00:44.280 [XNIO-1 task-2] 1mYM6uDjQeuW6rTBgrf41Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4dd7fcf4", "4dd7fcf4", serviceId) +00:00:44.303 [XNIO-1 task-2] lW7DFf4IR0aNkev5M-U-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.303 [XNIO-1 task-2] lW7DFf4IR0aNkev5M-U-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.303 [XNIO-1 task-2] lW7DFf4IR0aNkev5M-U-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.318 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.319 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.319 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.320 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.320 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.320 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG com.networknt.schema.TypeValidator debug - validate( "eb241345-abe5-4927-9842-8f52adb9843a", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:44.320 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG com.networknt.schema.TypeValidator debug - validate( "7a4e7a56", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:44.320 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.320 [XNIO-1 task-2] o6htV7dDS1u40Qjaw1dX1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.341 [XNIO-1 task-2] uvIQLvHHSJOq8V1VpdbSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:44.341 [XNIO-1 task-2] uvIQLvHHSJOq8V1VpdbSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.341 [XNIO-1 task-2] uvIQLvHHSJOq8V1VpdbSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.342 [XNIO-1 task-2] uvIQLvHHSJOq8V1VpdbSgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:44.347 [XNIO-1 task-2] kZkG2p0iQX2dG-y8geul2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.348 [XNIO-1 task-2] kZkG2p0iQX2dG-y8geul2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.348 [XNIO-1 task-2] kZkG2p0iQX2dG-y8geul2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.365 [XNIO-1 task-2] _6DZp31QRE2wcZuGqUbQTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.365 [XNIO-1 task-2] _6DZp31QRE2wcZuGqUbQTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.366 [XNIO-1 task-2] _6DZp31QRE2wcZuGqUbQTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.382 [XNIO-1 task-2] D8-sVVjXQWOZvB5tzo265A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9bc1fd05, base path is set to: null +00:00:44.384 [XNIO-1 task-2] D8-sVVjXQWOZvB5tzo265A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.384 [XNIO-1 task-2] D8-sVVjXQWOZvB5tzo265A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:44.384 [XNIO-1 task-2] D8-sVVjXQWOZvB5tzo265A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9bc1fd05, base path is set to: null +00:00:44.384 [XNIO-1 task-2] D8-sVVjXQWOZvB5tzo265A DEBUG com.networknt.schema.TypeValidator debug - validate( "9bc1fd05", "9bc1fd05", serviceId) +00:00:44.400 [XNIO-1 task-2] pfd_YuevSoK4LybkYl3XTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.400 [XNIO-1 task-2] pfd_YuevSoK4LybkYl3XTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.400 [XNIO-1 task-2] pfd_YuevSoK4LybkYl3XTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.401 [XNIO-1 task-2] pfd_YuevSoK4LybkYl3XTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.450 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.450 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.451 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.451 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.451 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.451 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "24b2bb52-6571-421c-87b7-5a4ba3e9ab6e", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:44.452 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2a8bd16e", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:44.452 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.452 [XNIO-1 task-2] aC59istNSAqrHp5r1EkMwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.454 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b296704 +00:00:44.474 [XNIO-1 task-2] CKslWV6zTRq-gAxA9tHy3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:44.474 [XNIO-1 task-2] CKslWV6zTRq-gAxA9tHy3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.474 [XNIO-1 task-2] CKslWV6zTRq-gAxA9tHy3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.475 [XNIO-1 task-2] CKslWV6zTRq-gAxA9tHy3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:44.478 [XNIO-1 task-2] aLMcI3PCSkm1TMRb39xZNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.478 [XNIO-1 task-2] aLMcI3PCSkm1TMRb39xZNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.478 [XNIO-1 task-2] aLMcI3PCSkm1TMRb39xZNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.479 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:125db9e5 +00:00:44.483 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:125db9e5 +00:00:44.496 [XNIO-1 task-2] k4wjcRqcTOWxqVVAAjhm3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.497 [XNIO-1 task-2] k4wjcRqcTOWxqVVAAjhm3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.498 [XNIO-1 task-2] k4wjcRqcTOWxqVVAAjhm3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.515 [XNIO-1 task-2] hSEMyDUuQzyfgq6D8giePg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.516 [XNIO-1 task-2] hSEMyDUuQzyfgq6D8giePg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.516 [XNIO-1 task-2] hSEMyDUuQzyfgq6D8giePg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.548 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:eb533c13-d4e6-4958-88a5-7226f499608e +00:00:44.557 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.557 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.557 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.558 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.558 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.559 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.559 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:44.559 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG com.networknt.schema.TypeValidator debug - validate( "e331e84e-a817-4ec9-9946-33f54221", {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:44.559 [XNIO-1 task-2] c-qtN7_dS5yEFNHpI6Ba6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c077d0f","serviceName":"e331e84e-a817-4ec9-9946-33f54221","serviceDesc":"e5d5acf2-31a8-47f0-af8e-e10bbd6bdf01","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.573 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:eb533c13-d4e6-4958-88a5-7226f499608e +00:00:44.587 [XNIO-1 task-2] rxPQhCmXThaJQy3dpSrfOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.587 [XNIO-1 task-2] rxPQhCmXThaJQy3dpSrfOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.587 [XNIO-1 task-2] rxPQhCmXThaJQy3dpSrfOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.588 [XNIO-1 task-2] rxPQhCmXThaJQy3dpSrfOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.598 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b296704 +00:00:44.616 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.616 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.617 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.618 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.618 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.619 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG com.networknt.schema.TypeValidator debug - validate( "c98b268d-050e-4295-8485-45f0cc9c7852", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:44.619 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d31dd3b", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:44.619 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.664 [XNIO-1 task-2] 9XinfkYSR---SKwXAp7IDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0d31dd3b","serviceName":"9e9f33c2-0b96-4231-b507-721013cc","serviceDesc":"c98b268d-050e-4295-8485-45f0cc9c7852","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.669 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b296704 +00:00:44.676 [XNIO-1 task-2] i9U46Q13TPqv6OekMdBI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.677 [XNIO-1 task-2] i9U46Q13TPqv6OekMdBI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.677 [XNIO-1 task-2] i9U46Q13TPqv6OekMdBI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.678 [XNIO-1 task-2] i9U46Q13TPqv6OekMdBI2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.708 [XNIO-1 task-2] DTHu7NEAQ1eKkSKnGtiEvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.708 [XNIO-1 task-2] DTHu7NEAQ1eKkSKnGtiEvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.708 [XNIO-1 task-2] DTHu7NEAQ1eKkSKnGtiEvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.709 [XNIO-1 task-2] DTHu7NEAQ1eKkSKnGtiEvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.718 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b296704 +00:00:44.724 [XNIO-1 task-2] 3TVtcwWWSOGOVsWUaSXZLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.724 [XNIO-1 task-2] 3TVtcwWWSOGOVsWUaSXZLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.724 [XNIO-1 task-2] 3TVtcwWWSOGOVsWUaSXZLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.739 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.743 [XNIO-1 task-2] -Oz6eqBmTfWpWTHD8xJK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.744 [XNIO-1 task-2] -Oz6eqBmTfWpWTHD8xJK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.744 [XNIO-1 task-2] -Oz6eqBmTfWpWTHD8xJK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.763 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.764 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.764 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.766 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.766 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.767 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.767 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:44.767 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG com.networknt.schema.TypeValidator debug - validate( "243ced56-2248-4e81-90ac-9af6a853", {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:44.767 [XNIO-1 task-2] _e0xKvq4R8ajNDH8HSXRKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bd33963","serviceName":"243ced56-2248-4e81-90ac-9af6a853","serviceDesc":"93055059-b588-431e-8803-3a410bf478ac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.799 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ea259058 +00:00:44.801 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ea259058 +00:00:44.811 [XNIO-1 task-2] XVV3rGPSSLSNuGVmZbaCFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.811 [XNIO-1 task-2] XVV3rGPSSLSNuGVmZbaCFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.812 [XNIO-1 task-2] XVV3rGPSSLSNuGVmZbaCFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.812 [XNIO-1 task-2] XVV3rGPSSLSNuGVmZbaCFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.815 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +00:00:44.844 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ea259058 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:44.847 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.848 [XNIO-1 task-2] jD1ssjIaRzCy5xa54ADMfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e09e3ded +00:00:44.848 [XNIO-1 task-2] jD1ssjIaRzCy5xa54ADMfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.848 [XNIO-1 task-2] jD1ssjIaRzCy5xa54ADMfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.849 [XNIO-1 task-2] jD1ssjIaRzCy5xa54ADMfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e09e3ded +00:00:44.856 [XNIO-1 task-2] QWVSgvZTR3itqSxPvSA_pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.857 [XNIO-1 task-2] QWVSgvZTR3itqSxPvSA_pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.857 [XNIO-1 task-2] QWVSgvZTR3itqSxPvSA_pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.857 [XNIO-1 task-2] QWVSgvZTR3itqSxPvSA_pw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.867 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5abd1395-0939-4ad7-95bd-f8956230fc3c +00:00:44.876 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.876 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.877 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.878 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.878 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.878 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG com.networknt.schema.TypeValidator debug - validate( "ef0fa271-08fb-4739-8e89-63ffce5d46e4", {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:44.878 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG com.networknt.schema.TypeValidator debug - validate( "a114447c", {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:44.878 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.878 [XNIO-1 task-2] V3r1QS-tQj6-Cj2LRSghnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a114447c","serviceName":"15bf0d05-3681-4bc8-87d0-03dc5b13","serviceDesc":"ef0fa271-08fb-4739-8e89-63ffce5d46e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.902 [XNIO-1 task-2] _o5-_7XORu-w378-4EVyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a4e7a56 +00:00:44.902 [XNIO-1 task-2] _o5-_7XORu-w378-4EVyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.902 [XNIO-1 task-2] _o5-_7XORu-w378-4EVyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.902 [XNIO-1 task-2] _o5-_7XORu-w378-4EVyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a4e7a56 +00:00:44.907 [XNIO-1 task-2] FBF0FFFbSR-x2b2m5N2nbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:44.907 [XNIO-1 task-2] FBF0FFFbSR-x2b2m5N2nbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.907 [XNIO-1 task-2] FBF0FFFbSR-x2b2m5N2nbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:44.908 [XNIO-1 task-2] FBF0FFFbSR-x2b2m5N2nbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:44.908 [XNIO-1 task-2] FBF0FFFbSR-x2b2m5N2nbA DEBUG com.networknt.schema.TypeValidator debug - validate( "e09e3ded", "e09e3ded", serviceId) +00:00:44.918 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.918 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.920 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.921 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.921 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:44.921 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG com.networknt.schema.TypeValidator debug - validate( "eb241345-abe5-4927-9842-8f52adb9843a", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:44.921 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG com.networknt.schema.TypeValidator debug - validate( "7a4e7a56", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:44.921 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:44.923 [XNIO-1 task-2] oIPJ8-QNRs6kfwQiZZXd5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a4e7a56","serviceName":"6b9449a5-2cce-4403-9be4-d87b5ee3","serviceDesc":"eb241345-abe5-4927-9842-8f52adb9843a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:44.944 [XNIO-1 task-2] NxMHqrJpRFaQCaGsk9-yTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.944 [XNIO-1 task-2] NxMHqrJpRFaQCaGsk9-yTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.945 [XNIO-1 task-2] NxMHqrJpRFaQCaGsk9-yTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.961 [XNIO-1 task-2] D1hcwIO6TeSHCgpDC6QoNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.961 [XNIO-1 task-2] D1hcwIO6TeSHCgpDC6QoNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.962 [XNIO-1 task-2] D1hcwIO6TeSHCgpDC6QoNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.962 [XNIO-1 task-2] D1hcwIO6TeSHCgpDC6QoNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.974 [XNIO-1 task-2] iRtXhlqVSB6Zb4Ft3M6N2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:44.975 [XNIO-1 task-2] iRtXhlqVSB6Zb4Ft3M6N2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.975 [XNIO-1 task-2] iRtXhlqVSB6Zb4Ft3M6N2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:44.975 [XNIO-1 task-2] iRtXhlqVSB6Zb4Ft3M6N2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:44.975 [XNIO-1 task-2] iRtXhlqVSB6Zb4Ft3M6N2g DEBUG com.networknt.schema.TypeValidator debug - validate( "e09e3ded", "e09e3ded", serviceId) +00:00:44.979 [XNIO-1 task-2] FoMweXGuTW6Oyb5coKa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bd33963 +00:00:44.979 [XNIO-1 task-2] FoMweXGuTW6Oyb5coKa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:44.979 [XNIO-1 task-2] FoMweXGuTW6Oyb5coKa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:44.980 [XNIO-1 task-2] FoMweXGuTW6Oyb5coKa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bd33963 +00:00:44.984 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ea259058 +00:00:44.985 [XNIO-1 task-2] H-nQnxopT6qFo13AHYAFvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.985 [XNIO-1 task-2] H-nQnxopT6qFo13AHYAFvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:44.986 [XNIO-1 task-2] H-nQnxopT6qFo13AHYAFvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:44.986 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb673f25 +00:00:44.991 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb673f25 +00:00:45.006 [XNIO-1 task-2] g5HdbJA_Rhe4lWQ23naq4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e09e3ded +00:00:45.006 [XNIO-1 task-2] g5HdbJA_Rhe4lWQ23naq4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.006 [XNIO-1 task-2] g5HdbJA_Rhe4lWQ23naq4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.006 [XNIO-1 task-2] g5HdbJA_Rhe4lWQ23naq4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e09e3ded +00:00:45.013 [XNIO-1 task-2] h9u0RctsRuGdXi7kHYom7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bd33963, base path is set to: null +00:00:45.014 [XNIO-1 task-2] h9u0RctsRuGdXi7kHYom7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.014 [XNIO-1 task-2] h9u0RctsRuGdXi7kHYom7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:45.014 [XNIO-1 task-2] h9u0RctsRuGdXi7kHYom7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bd33963, base path is set to: null +00:00:45.016 [XNIO-1 task-2] h9u0RctsRuGdXi7kHYom7g DEBUG com.networknt.schema.TypeValidator debug - validate( "2bd33963", "2bd33963", serviceId) +00:00:45.032 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.033 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.034 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.035 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.035 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.035 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG com.networknt.schema.TypeValidator debug - validate( "2e49870d-263f-42d6-86ad-654948b23e57", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:45.035 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG com.networknt.schema.TypeValidator debug - validate( "24e3e317", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:45.035 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.035 [XNIO-1 task-2] fEl4ZGhOROiP1uTOAwKP_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.054 [XNIO-1 task-2] kA64-85oRtC0vfFvqt6rNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a4e7a56 +00:00:45.054 [XNIO-1 task-2] kA64-85oRtC0vfFvqt6rNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.054 [XNIO-1 task-2] kA64-85oRtC0vfFvqt6rNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.055 [XNIO-1 task-2] kA64-85oRtC0vfFvqt6rNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a4e7a56 +00:00:45.071 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ea259058 +00:00:45.072 [XNIO-1 task-2] YwE61KH6RrWE7LRgY6GWdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/125db9e5, base path is set to: null +00:00:45.073 [XNIO-1 task-2] YwE61KH6RrWE7LRgY6GWdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.073 [XNIO-1 task-2] YwE61KH6RrWE7LRgY6GWdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:45.073 [XNIO-1 task-2] YwE61KH6RrWE7LRgY6GWdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/125db9e5, base path is set to: null +00:00:45.073 [XNIO-1 task-2] YwE61KH6RrWE7LRgY6GWdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "125db9e5", "125db9e5", serviceId) +00:00:45.081 [XNIO-1 task-2] O7nTEG1eSj63HcYHDMyj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.081 [XNIO-1 task-2] O7nTEG1eSj63HcYHDMyj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.082 [XNIO-1 task-2] O7nTEG1eSj63HcYHDMyj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.101 [XNIO-1 task-2] at7uJ0DsQZim4OPvs7gOJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/125db9e5 +00:00:45.101 [XNIO-1 task-2] at7uJ0DsQZim4OPvs7gOJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.101 [XNIO-1 task-2] at7uJ0DsQZim4OPvs7gOJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.101 [XNIO-1 task-2] at7uJ0DsQZim4OPvs7gOJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/125db9e5 +00:00:45.102 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:125db9e5 +00:00:45.110 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ea259058 +00:00:45.114 [XNIO-1 task-2] WwZmVEz-QWKjD0fOa1R1QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2ce0e22 +00:00:45.114 [XNIO-1 task-2] WwZmVEz-QWKjD0fOa1R1QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.114 [XNIO-1 task-2] WwZmVEz-QWKjD0fOa1R1QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.114 [XNIO-1 task-2] WwZmVEz-QWKjD0fOa1R1QA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f2ce0e22 +00:00:45.117 [XNIO-1 task-2] m1qwrsk4QAu2ITOgxy82uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2ce0e22, base path is set to: null +00:00:45.118 [XNIO-1 task-2] m1qwrsk4QAu2ITOgxy82uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.118 [XNIO-1 task-2] m1qwrsk4QAu2ITOgxy82uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:45.118 [XNIO-1 task-2] m1qwrsk4QAu2ITOgxy82uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f2ce0e22, base path is set to: null +00:00:45.118 [XNIO-1 task-2] m1qwrsk4QAu2ITOgxy82uw DEBUG com.networknt.schema.TypeValidator debug - validate( "f2ce0e22", "f2ce0e22", serviceId) +00:00:45.126 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.134 [XNIO-1 task-2] R6cQMYKiRtWPZ88xGXwigw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.134 [XNIO-1 task-2] R6cQMYKiRtWPZ88xGXwigw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.136 [XNIO-1 task-2] R6cQMYKiRtWPZ88xGXwigw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.160 [XNIO-1 task-2] H7tZ7BHWSSOzB_mvq1wQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.160 [XNIO-1 task-2] H7tZ7BHWSSOzB_mvq1wQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.160 [XNIO-1 task-2] H7tZ7BHWSSOzB_mvq1wQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.175 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dcb452ec +00:00:45.177 [XNIO-1 task-2] CAA_xak8SkmR5IiEurtHyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.178 [XNIO-1 task-2] CAA_xak8SkmR5IiEurtHyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.178 [XNIO-1 task-2] CAA_xak8SkmR5IiEurtHyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.178 [XNIO-1 task-2] CAA_xak8SkmR5IiEurtHyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.189 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dcb452ec +00:00:45.197 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f24c6b5e-e8ba-4bfd-962c-c0cf1ffcd3d3 +00:00:45.206 [XNIO-1 task-2] 5UFS2gs6SbOtGi1K2M8TfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.206 [XNIO-1 task-2] 5UFS2gs6SbOtGi1K2M8TfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.207 [XNIO-1 task-2] 5UFS2gs6SbOtGi1K2M8TfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.227 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.227 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.228 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dcb452ec +00:00:45.228 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dcb452ec +00:00:45.228 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.228 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.229 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.230 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:45.231 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG com.networknt.schema.TypeValidator debug - validate( "82555a99", {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:45.231 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e85afb9-9567-412c-8810-f7218393", {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:45.231 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.231 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.231 [XNIO-1 task-2] uF4cnKuLRRuZO83K4PxUNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"82555a99","serviceName":"0e85afb9-9567-412c-8810-f7218393","serviceDesc":"303b43b5-ba54-47a2-88df-7a118f9db89e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.250 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.251 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:45.254 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.254 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.255 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.255 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.255 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.255 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.255 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG com.networknt.schema.TypeValidator debug - validate( "78618e2f-e93b-475b-96c4-063721db7b52", {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +00:00:45.255 [XNIO-1 task-2] 2YiU8EAjRH-5HjmxqqlR2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bf0526c8","serviceName":"be0d9b9c-f95c-4678-927a-be201fd5","serviceDesc":"78618e2f-e93b-475b-96c4-063721db7b52","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.257 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f24c6b5e-e8ba-4bfd-962c-c0cf1ffcd3d3 +00:00:45.271 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:800c022b-f8af-42d3-afdc-f6b54235f94a +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:45.291 [XNIO-1 task-2] ZM0DlUcDQKutZFmigZZ7DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb673f25, base path is set to: null +00:00:45.291 [XNIO-1 task-2] ZM0DlUcDQKutZFmigZZ7DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.291 [XNIO-1 task-2] ZM0DlUcDQKutZFmigZZ7DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:45.291 [XNIO-1 task-2] ZM0DlUcDQKutZFmigZZ7DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb673f25, base path is set to: null +00:00:45.291 [XNIO-1 task-2] ZM0DlUcDQKutZFmigZZ7DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cb673f25", "cb673f25", serviceId) +00:00:45.299 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cb673f25 +00:00:45.314 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.314 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.314 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.315 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.316 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.316 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG com.networknt.schema.TypeValidator debug - validate( "095d2726-b740-496d-a24d-8e317dde2ba9", {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:45.317 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG com.networknt.schema.TypeValidator debug - validate( "0527a2f1", {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:45.317 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.317 [XNIO-1 task-2] SBnvnuicQhKi9jC9AvoDNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0527a2f1","serviceName":"bf4bb802-2244-4679-ad98-bf6d9a72","serviceDesc":"095d2726-b740-496d-a24d-8e317dde2ba9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.393 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dcb452ec +00:00:45.395 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.395 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.396 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.396 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.396 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.396 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc015cb6-0bf6-4b35-b64f-013ec286459a", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:45.396 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e73657df", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:45.397 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.397 [XNIO-1 task-2] d-5m-b5rRcmeebJo9478TQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.418 [XNIO-1 task-2] wac9c9kPRDSIV0p0h-LxoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf0526c8 +00:00:45.418 [XNIO-1 task-2] wac9c9kPRDSIV0p0h-LxoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.418 [XNIO-1 task-2] wac9c9kPRDSIV0p0h-LxoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.419 [XNIO-1 task-2] wac9c9kPRDSIV0p0h-LxoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf0526c8 +00:00:45.449 [XNIO-1 task-2] lzb2D0UyQEep9FrcjFdhcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.450 [XNIO-1 task-2] lzb2D0UyQEep9FrcjFdhcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.450 [XNIO-1 task-2] lzb2D0UyQEep9FrcjFdhcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.465 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:dcb452ec +00:00:45.502 [XNIO-1 task-2] c8nJGn_bSoOY1REYZbIAbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.502 [XNIO-1 task-2] c8nJGn_bSoOY1REYZbIAbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.503 [XNIO-1 task-2] c8nJGn_bSoOY1REYZbIAbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.503 [XNIO-1 task-2] c8nJGn_bSoOY1REYZbIAbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.533 [XNIO-1 task-2] hqTySPjCQfuHo_rkTdabrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.533 [XNIO-1 task-2] hqTySPjCQfuHo_rkTdabrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.533 [XNIO-1 task-2] hqTySPjCQfuHo_rkTdabrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.578 [XNIO-1 task-2] 8IHr_tsKTyWWxUVX4GeAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.578 [XNIO-1 task-2] 8IHr_tsKTyWWxUVX4GeAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.579 [XNIO-1 task-2] 8IHr_tsKTyWWxUVX4GeAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.608 [XNIO-1 task-2] 3oYH81c3QD-5enpBcqn5rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0527a2f1 +00:00:45.609 [XNIO-1 task-2] 3oYH81c3QD-5enpBcqn5rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.609 [XNIO-1 task-2] 3oYH81c3QD-5enpBcqn5rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.609 [XNIO-1 task-2] 3oYH81c3QD-5enpBcqn5rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0527a2f1 +00:00:45.617 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.617 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.618 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.619 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.619 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.619 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.620 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:45.621 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG com.networknt.schema.TypeValidator debug - validate( "6965a030-02bd-4156-9c18-529ad090", {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:45.621 [XNIO-1 task-2] L-uPSM1_Qyy3rqsfW948XA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6b4ef55d","serviceName":"6965a030-02bd-4156-9c18-529ad090","serviceDesc":"3b869986-3ec9-4d13-948d-7009b706fa04","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.633 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f4cfcf5e-8542-4021-abc3-4902f85754ac +00:00:45.649 [XNIO-1 task-2] fE18_ozZT8uSRtIJi7ZMUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.649 [XNIO-1 task-2] fE18_ozZT8uSRtIJi7ZMUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.649 [XNIO-1 task-2] fE18_ozZT8uSRtIJi7ZMUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.650 [XNIO-1 task-2] fE18_ozZT8uSRtIJi7ZMUw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.715 [XNIO-1 task-2] gsrDquI9SXuriO-PwG5YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b4ef55d +00:00:45.715 [XNIO-1 task-2] gsrDquI9SXuriO-PwG5YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.715 [XNIO-1 task-2] gsrDquI9SXuriO-PwG5YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.715 [XNIO-1 task-2] gsrDquI9SXuriO-PwG5YFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b4ef55d +00:00:45.722 [XNIO-1 task-2] 8XWNsAX9Tg2hMTRGhr86dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/82555a99, base path is set to: null +00:00:45.722 [XNIO-1 task-2] 8XWNsAX9Tg2hMTRGhr86dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.722 [XNIO-1 task-2] 8XWNsAX9Tg2hMTRGhr86dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:45.722 [XNIO-1 task-2] 8XWNsAX9Tg2hMTRGhr86dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/82555a99, base path is set to: null +00:00:45.723 [XNIO-1 task-2] 8XWNsAX9Tg2hMTRGhr86dg DEBUG com.networknt.schema.TypeValidator debug - validate( "82555a99", "82555a99", serviceId) +00:00:45.737 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.737 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.737 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.738 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.738 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.738 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG com.networknt.schema.TypeValidator debug - validate( "24b2bb52-6571-421c-87b7-5a4ba3e9ab6e", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:45.738 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG com.networknt.schema.TypeValidator debug - validate( "2a8bd16e", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:45.738 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:45.738 [XNIO-1 task-2] Cwxs986sTGaVp9wMCV7a4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2a8bd16e","serviceName":"9ac4927a-885f-44c3-a987-024b1ade","serviceDesc":"24b2bb52-6571-421c-87b7-5a4ba3e9ab6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.741 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:741aba68-8dd7-4d35-9904-bebd17c7cf21 +00:00:45.767 [XNIO-1 task-2] kWHV8B_rSVKobjJ9Pgpnig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c077d0f, base path is set to: null +00:00:45.767 [XNIO-1 task-2] kWHV8B_rSVKobjJ9Pgpnig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.767 [XNIO-1 task-2] kWHV8B_rSVKobjJ9Pgpnig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:45.768 [XNIO-1 task-2] kWHV8B_rSVKobjJ9Pgpnig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c077d0f, base path is set to: null +00:00:45.768 [XNIO-1 task-2] kWHV8B_rSVKobjJ9Pgpnig DEBUG com.networknt.schema.TypeValidator debug - validate( "8c077d0f", "8c077d0f", serviceId) +00:00:45.772 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bcaa476d-8e65-4356-9a4f-1c10e3c759f2 +00:00:45.781 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:35a5bf36-045a-485d-a426-dcaa726038f9 +00:00:45.784 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:35a5bf36-045a-485d-a426-dcaa726038f9 +00:00:45.804 [XNIO-1 task-2] H-I9aCONRvOQKHKVu1aa-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.804 [XNIO-1 task-2] H-I9aCONRvOQKHKVu1aa-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.805 [XNIO-1 task-2] H-I9aCONRvOQKHKVu1aa-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.815 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8304c15a-3ced-4930-8cc9-349b2a384b2b +00:00:45.824 [XNIO-1 task-2] oTyU38gERdGP0H84kBtIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:45.824 [XNIO-1 task-2] oTyU38gERdGP0H84kBtIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.824 [XNIO-1 task-2] oTyU38gERdGP0H84kBtIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:45.824 [XNIO-1 task-2] oTyU38gERdGP0H84kBtIiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0d31dd3b +00:00:45.839 [XNIO-1 task-2] 5IXwwR20RTC02Tb1vtrb8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.839 [XNIO-1 task-2] 5IXwwR20RTC02Tb1vtrb8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.840 [XNIO-1 task-2] 5IXwwR20RTC02Tb1vtrb8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.842 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:35a5bf36-045a-485d-a426-dcaa726038f9 +00:00:45.865 [XNIO-1 task-2] PA4g7Eq8RjaRA63_oR8-9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.865 [XNIO-1 task-2] PA4g7Eq8RjaRA63_oR8-9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.866 [XNIO-1 task-2] PA4g7Eq8RjaRA63_oR8-9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:45.868 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b2b2be5e +00:00:45.888 [XNIO-1 task-2] qRyWHch1TXKCwrefpgE6SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.888 [XNIO-1 task-2] qRyWHch1TXKCwrefpgE6SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.889 [XNIO-1 task-2] qRyWHch1TXKCwrefpgE6SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.947 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.947 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.948 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.948 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.948 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.948 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:45.948 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:45.949 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG com.networknt.schema.TypeValidator debug - validate( "b04ac6d7-18b4-49ad-9df7-4e8c624c", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:45.949 [XNIO-1 task-2] ugspEh6gQ2aAYL1fAjiL8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:45.964 [XNIO-1 task-2] LffefKvtRAuck29cAOuQxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.964 [XNIO-1 task-2] LffefKvtRAuck29cAOuQxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.964 [XNIO-1 task-2] LffefKvtRAuck29cAOuQxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.965 [XNIO-1 task-2] LffefKvtRAuck29cAOuQxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.976 [XNIO-1 task-2] k__WLopKTZKlve7OSBZCmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:45.977 [XNIO-1 task-2] k__WLopKTZKlve7OSBZCmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:45.977 [XNIO-1 task-2] k__WLopKTZKlve7OSBZCmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.009 [XNIO-1 task-2] 3R86KrgwTuKdEH1ZyTafIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.010 [XNIO-1 task-2] 3R86KrgwTuKdEH1ZyTafIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.010 [XNIO-1 task-2] 3R86KrgwTuKdEH1ZyTafIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.010 [XNIO-1 task-2] 3R86KrgwTuKdEH1ZyTafIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.034 [XNIO-1 task-2] YtBDh9ioQWWvSaORkj2mjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.034 [XNIO-1 task-2] YtBDh9ioQWWvSaORkj2mjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.034 [XNIO-1 task-2] YtBDh9ioQWWvSaORkj2mjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.035 [XNIO-1 task-2] YtBDh9ioQWWvSaORkj2mjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.053 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:183df51c-1383-4527-8c07-c995dee5b861 +00:00:46.059 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +00:00:46.132 [XNIO-1 task-2] 4CiqbWS-RFCsgHj9TlkS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1a92f02b +00:00:46.132 [XNIO-1 task-2] 4CiqbWS-RFCsgHj9TlkS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.132 [XNIO-1 task-2] 4CiqbWS-RFCsgHj9TlkS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:46.132 [XNIO-1 task-2] 4CiqbWS-RFCsgHj9TlkS7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1a92f02b +00:00:46.159 [XNIO-1 task-2] bCtMV1f0SW-q8gDtyBwcrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.159 [XNIO-1 task-2] bCtMV1f0SW-q8gDtyBwcrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.159 [XNIO-1 task-2] bCtMV1f0SW-q8gDtyBwcrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.185 [XNIO-1 task-2] CGkmdw2tTeihFrNo69qHkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a114447c, base path is set to: null +00:00:46.185 [XNIO-1 task-2] CGkmdw2tTeihFrNo69qHkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.185 [XNIO-1 task-2] CGkmdw2tTeihFrNo69qHkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:46.185 [XNIO-1 task-2] CGkmdw2tTeihFrNo69qHkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a114447c, base path is set to: null +00:00:46.186 [XNIO-1 task-2] CGkmdw2tTeihFrNo69qHkA DEBUG com.networknt.schema.TypeValidator debug - validate( "a114447c", "a114447c", serviceId) +00:00:46.197 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e77106bc-7b28-4213-8e50-e8c100768331 +00:00:46.236 [XNIO-1 task-2] OiKmqJrRS_SUMHJSgKl-cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.237 [XNIO-1 task-2] OiKmqJrRS_SUMHJSgKl-cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.237 [XNIO-1 task-2] OiKmqJrRS_SUMHJSgKl-cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.256 [XNIO-1 task-2] 1cC6iNSqTUyQRblsUsTKuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.257 [XNIO-1 task-2] 1cC6iNSqTUyQRblsUsTKuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.257 [XNIO-1 task-2] 1cC6iNSqTUyQRblsUsTKuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.278 [XNIO-1 task-2] 57Zlzh5CQT-dpzM1BVYaxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/161ba0a5, base path is set to: null +00:00:46.278 [XNIO-1 task-2] 57Zlzh5CQT-dpzM1BVYaxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.278 [XNIO-1 task-2] 57Zlzh5CQT-dpzM1BVYaxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:46.278 [XNIO-1 task-2] 57Zlzh5CQT-dpzM1BVYaxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/161ba0a5, base path is set to: null +00:00:46.279 [XNIO-1 task-2] 57Zlzh5CQT-dpzM1BVYaxA DEBUG com.networknt.schema.TypeValidator debug - validate( "161ba0a5", "161ba0a5", serviceId) +00:00:46.299 [XNIO-1 task-2] 9ysT8DsNQtGPvklNkJCzHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.299 [XNIO-1 task-2] 9ysT8DsNQtGPvklNkJCzHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.299 [XNIO-1 task-2] 9ysT8DsNQtGPvklNkJCzHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.300 [XNIO-1 task-2] 9ysT8DsNQtGPvklNkJCzHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.322 [XNIO-1 task-2] 08w1Kb8WQT6fNClTrbGasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.322 [XNIO-1 task-2] 08w1Kb8WQT6fNClTrbGasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.323 [XNIO-1 task-2] 08w1Kb8WQT6fNClTrbGasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.323 [XNIO-1 task-2] 08w1Kb8WQT6fNClTrbGasg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.338 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.339 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.340 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.342 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.343 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:46.343 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG com.networknt.schema.TypeValidator debug - validate( "84539605-8c4f-4d96-a2f4-560a4b75ac57", {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:46.343 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG com.networknt.schema.TypeValidator debug - validate( "3db09f23", {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:46.343 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.343 [XNIO-1 task-2] 3iErBcI4SkiFdLOLWgqINA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3db09f23","serviceName":"42d1967e-2288-4dc7-9964-6ca227fc","serviceDesc":"84539605-8c4f-4d96-a2f4-560a4b75ac57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.369 [XNIO-1 task-2] oGNLnHSGSm2jGAhiXUbmoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e09e3ded +00:00:46.369 [XNIO-1 task-2] oGNLnHSGSm2jGAhiXUbmoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.369 [XNIO-1 task-2] oGNLnHSGSm2jGAhiXUbmoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:46.370 [XNIO-1 task-2] oGNLnHSGSm2jGAhiXUbmoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e09e3ded +00:00:46.374 [XNIO-1 task-2] fon0t-w-Ss6xqIlYfDg1Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.374 [XNIO-1 task-2] fon0t-w-Ss6xqIlYfDg1Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.374 [XNIO-1 task-2] fon0t-w-Ss6xqIlYfDg1Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.389 [XNIO-1 task-2] OfMqOUapRnW_sdGGGJyCfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ec4f3ff4, base path is set to: null +00:00:46.389 [XNIO-1 task-2] OfMqOUapRnW_sdGGGJyCfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.389 [XNIO-1 task-2] OfMqOUapRnW_sdGGGJyCfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:46.390 [XNIO-1 task-2] OfMqOUapRnW_sdGGGJyCfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ec4f3ff4, base path is set to: null +00:00:46.390 [XNIO-1 task-2] OfMqOUapRnW_sdGGGJyCfg DEBUG com.networknt.schema.TypeValidator debug - validate( "ec4f3ff4", "ec4f3ff4", serviceId) +00:00:46.396 [XNIO-1 task-2] KT02T7vXQFSI7Mpj5GCbzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a114447c +00:00:46.396 [XNIO-1 task-2] KT02T7vXQFSI7Mpj5GCbzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.397 [XNIO-1 task-2] KT02T7vXQFSI7Mpj5GCbzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:46.397 [XNIO-1 task-2] KT02T7vXQFSI7Mpj5GCbzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a114447c +00:00:46.400 [XNIO-1 task-2] DWSdZTS9Rl2FhyCyB3udKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:46.400 [XNIO-1 task-2] DWSdZTS9Rl2FhyCyB3udKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.400 [XNIO-1 task-2] DWSdZTS9Rl2FhyCyB3udKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:46.400 [XNIO-1 task-2] DWSdZTS9Rl2FhyCyB3udKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:46.401 [XNIO-1 task-2] DWSdZTS9Rl2FhyCyB3udKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e09e3ded", "e09e3ded", serviceId) +00:00:46.409 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.409 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.410 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.410 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.411 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:46.411 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG com.networknt.schema.TypeValidator debug - validate( "43f28ef6-022a-4e7e-9bec-f45b9f658548", {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:46.411 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec4f3ff4", {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:46.411 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.411 [XNIO-1 task-2] Eff67O5LRlCWGqcejQhCsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec4f3ff4","serviceName":"fe7c7c84-d79c-42e2-bff9-e09c12f5","serviceDesc":"43f28ef6-022a-4e7e-9bec-f45b9f658548","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.431 [XNIO-1 task-2] uFHr5iJWRTO4_M7d4FUGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.431 [XNIO-1 task-2] uFHr5iJWRTO4_M7d4FUGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.431 [XNIO-1 task-2] uFHr5iJWRTO4_M7d4FUGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.443 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0d30e043 +00:00:46.456 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.456 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.457 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.457 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.458 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.458 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:46.458 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:46.458 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG com.networknt.schema.TypeValidator debug - validate( "89f92afe-8e52-4cba-ab89-eed46da0", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:46.458 [XNIO-1 task-2] 8oVPZ_i4Q_aoMLnVBLt6-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.467 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0d30e043 +00:00:46.477 [XNIO-1 task-2] QgXcgVTmRr-YAj6iLyHc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/633ec39f +00:00:46.478 [XNIO-1 task-2] QgXcgVTmRr-YAj6iLyHc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.478 [XNIO-1 task-2] QgXcgVTmRr-YAj6iLyHc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:46.478 [XNIO-1 task-2] QgXcgVTmRr-YAj6iLyHc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/633ec39f +00:00:46.485 [XNIO-1 task-2] 4WdwWuoiQvivmFEhgEtovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.485 [XNIO-1 task-2] 4WdwWuoiQvivmFEhgEtovg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.485 [XNIO-1 task-2] 4WdwWuoiQvivmFEhgEtovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.485 [XNIO-1 task-2] 4WdwWuoiQvivmFEhgEtovg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.542 [XNIO-1 task-2] MtFiIV4oSzyd__qYRk1tNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:46.543 [XNIO-1 task-2] MtFiIV4oSzyd__qYRk1tNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.543 [XNIO-1 task-2] MtFiIV4oSzyd__qYRk1tNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:46.543 [XNIO-1 task-2] MtFiIV4oSzyd__qYRk1tNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e09e3ded, base path is set to: null +00:00:46.543 [XNIO-1 task-2] MtFiIV4oSzyd__qYRk1tNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e09e3ded", "e09e3ded", serviceId) +00:00:46.569 [XNIO-1 task-2] M8WoMlHaT9Gy1WxTY5RBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/633ec39f +00:00:46.569 [XNIO-1 task-2] M8WoMlHaT9Gy1WxTY5RBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.569 [XNIO-1 task-2] M8WoMlHaT9Gy1WxTY5RBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:46.569 [XNIO-1 task-2] M8WoMlHaT9Gy1WxTY5RBBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/633ec39f +00:00:46.640 [XNIO-1 task-2] lIJe2bwSSbioXepH5hTf-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.640 [XNIO-1 task-2] lIJe2bwSSbioXepH5hTf-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.641 [XNIO-1 task-2] lIJe2bwSSbioXepH5hTf-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.641 [XNIO-1 task-2] lIJe2bwSSbioXepH5hTf-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.735 [XNIO-1 task-2] zLD1hm3uQaeT_hQIH7hYbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.735 [XNIO-1 task-2] zLD1hm3uQaeT_hQIH7hYbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.736 [XNIO-1 task-2] zLD1hm3uQaeT_hQIH7hYbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +Jun 29, 2024 12:00:46 AM com.hazelcast.map.impl.operation.DeleteOperation +00:00:46.736 [XNIO-1 task-2] zLD1hm3uQaeT_hQIH7hYbQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.737 [XNIO-1 task-2] zLD1hm3uQaeT_hQIH7hYbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +00:00:46.737 [XNIO-1 task-2] zLD1hm3uQaeT_hQIH7hYbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.738 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b2b2be5e +00:00:46.742 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:04b6b673-cdc6-4ddd-8a84-8990943448ef +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:46.763 [XNIO-1 task-2] EijqXS8aTZWYJU4s9FSMMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b85359ba +00:00:46.763 [XNIO-1 task-2] EijqXS8aTZWYJU4s9FSMMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.763 [XNIO-1 task-2] EijqXS8aTZWYJU4s9FSMMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:46.763 [XNIO-1 task-2] EijqXS8aTZWYJU4s9FSMMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b85359ba +00:00:46.783 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e77106bc-7b28-4213-8e50-e8c100768331 +00:00:46.794 [XNIO-1 task-2] UO3_BkEyQsK5mT7KchOywA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.794 [XNIO-1 task-2] UO3_BkEyQsK5mT7KchOywA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.794 [XNIO-1 task-2] UO3_BkEyQsK5mT7KchOywA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.839 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.839 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.840 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.841 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.841 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:46.841 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08882d66-79dc-4443-8514-5b25ecb3095b", {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:46.841 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4b7d25b4", {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:46.841 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:46.841 [XNIO-1 task-2] HjrkF_PvRJSY2awO8P7lNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:46.868 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9ed55f8a +00:00:46.869 [XNIO-1 task-2] dv83oVYNQsWsj4FB59IT4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.869 [XNIO-1 task-2] dv83oVYNQsWsj4FB59IT4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.870 [XNIO-1 task-2] dv83oVYNQsWsj4FB59IT4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.871 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4acc9b34 +00:00:46.873 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4acc9b34 +00:00:46.891 [XNIO-1 task-2] 9_dZFEVjT5Oa16JgHT2YNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0527a2f1 +00:00:46.892 [XNIO-1 task-2] 9_dZFEVjT5Oa16JgHT2YNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.892 [XNIO-1 task-2] 9_dZFEVjT5Oa16JgHT2YNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:46.892 [XNIO-1 task-2] 9_dZFEVjT5Oa16JgHT2YNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0527a2f1 +00:00:46.897 [XNIO-1 task-2] evfhWlZPTCuYS0Oih0O3hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.897 [XNIO-1 task-2] evfhWlZPTCuYS0Oih0O3hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.897 [XNIO-1 task-2] evfhWlZPTCuYS0Oih0O3hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:46.898 [XNIO-1 task-2] evfhWlZPTCuYS0Oih0O3hw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.903 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9ed55f8a +00:00:46.917 [XNIO-1 task-2] uMr08x6IQfapUj2XoHPr0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/73395de2, base path is set to: null +00:00:46.917 [XNIO-1 task-2] uMr08x6IQfapUj2XoHPr0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:46.917 [XNIO-1 task-2] uMr08x6IQfapUj2XoHPr0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:46.918 [XNIO-1 task-2] uMr08x6IQfapUj2XoHPr0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/73395de2, base path is set to: null +00:00:46.918 [XNIO-1 task-2] uMr08x6IQfapUj2XoHPr0g DEBUG com.networknt.schema.TypeValidator debug - validate( "73395de2", "73395de2", serviceId) +00:00:46.926 [XNIO-1 task-2] FKUcKSThRaC05mOUQfNRjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.927 [XNIO-1 task-2] FKUcKSThRaC05mOUQfNRjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.927 [XNIO-1 task-2] FKUcKSThRaC05mOUQfNRjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.947 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:46.966 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9ed55f8a +00:00:46.972 [XNIO-1 task-2] 6xZ2ivKkRYy1t5dZjFndIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.972 [XNIO-1 task-2] 6xZ2ivKkRYy1t5dZjFndIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.972 [XNIO-1 task-2] 6xZ2ivKkRYy1t5dZjFndIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.993 [XNIO-1 task-2] rZWkwpAcSTqiCrijmKn94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.994 [XNIO-1 task-2] rZWkwpAcSTqiCrijmKn94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.994 [XNIO-1 task-2] rZWkwpAcSTqiCrijmKn94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:46.996 [XNIO-1 task-2] rZWkwpAcSTqiCrijmKn94g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.998 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9ed55f8a +00:00:47.021 [XNIO-1 task-2] SyDx_YGoT_qi29nhsvqJlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0527a2f1 +00:00:47.021 [XNIO-1 task-2] SyDx_YGoT_qi29nhsvqJlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.021 [XNIO-1 task-2] SyDx_YGoT_qi29nhsvqJlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:47.022 [XNIO-1 task-2] SyDx_YGoT_qi29nhsvqJlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0527a2f1 +00:00:47.028 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.029 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.029 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.030 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.030 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.030 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.030 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.030 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG com.networknt.schema.TypeValidator debug - validate( "5df6c71b-34c7-4827-87c4-0025e5e1", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:47.030 [XNIO-1 task-2] HEth-NS4SZqNWPzX9E_UMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.033 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9ed55f8a +00:00:47.073 [XNIO-1 task-2] WQkCh_0dTjWIhuVappEIsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0527a2f1, base path is set to: null +00:00:47.073 [XNIO-1 task-2] WQkCh_0dTjWIhuVappEIsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.073 [XNIO-1 task-2] WQkCh_0dTjWIhuVappEIsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.074 [XNIO-1 task-2] WQkCh_0dTjWIhuVappEIsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0527a2f1, base path is set to: null +00:00:47.074 [XNIO-1 task-2] WQkCh_0dTjWIhuVappEIsg DEBUG com.networknt.schema.TypeValidator debug - validate( "0527a2f1", "0527a2f1", serviceId) +00:00:47.096 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:322b6c5a-58c6-4fb4-aafa-a9ee3341b1bb +00:00:47.096 [XNIO-1 task-2] ZZwPDq5YQQSGbYevJ3dMzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b4ef55d, base path is set to: null +00:00:47.096 [XNIO-1 task-2] ZZwPDq5YQQSGbYevJ3dMzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.097 [XNIO-1 task-2] ZZwPDq5YQQSGbYevJ3dMzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.097 [XNIO-1 task-2] ZZwPDq5YQQSGbYevJ3dMzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b4ef55d, base path is set to: null +00:00:47.097 [XNIO-1 task-2] ZZwPDq5YQQSGbYevJ3dMzw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b4ef55d", "6b4ef55d", serviceId) +00:00:47.099 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9ed55f8a +00:00:47.125 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.125 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.125 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.126 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.126 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.126 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG com.networknt.schema.TypeValidator debug - validate( "4659691c-94cb-4665-a95d-888d92b33257", {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.126 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1aa965", {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.126 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.126 [XNIO-1 task-2] I2xN8YRhSxeFumhLAO-42g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.138 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.139 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.139 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.140 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.140 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.140 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.141 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.141 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG com.networknt.schema.TypeValidator debug - validate( "aeec07a8-cd11-4ae2-aa15-8a1c6309", {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:47.141 [XNIO-1 task-2] DJ9-_WClQ8O4DvnH9Kp86w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ba1aa965","serviceName":"aeec07a8-cd11-4ae2-aa15-8a1c6309","serviceDesc":"4659691c-94cb-4665-a95d-888d92b33257","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.157 [XNIO-1 task-2] O2frwWT7T-aXvsw9QmRASw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.158 [XNIO-1 task-2] O2frwWT7T-aXvsw9QmRASw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.158 [XNIO-1 task-2] O2frwWT7T-aXvsw9QmRASw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.158 [XNIO-1 task-2] O2frwWT7T-aXvsw9QmRASw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:47.173 [XNIO-1 task-2] p3mpRre_QNqOuNG2zt84RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2a8bd16e, base path is set to: null +00:00:47.173 [XNIO-1 task-2] p3mpRre_QNqOuNG2zt84RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.174 [XNIO-1 task-2] p3mpRre_QNqOuNG2zt84RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.174 [XNIO-1 task-2] p3mpRre_QNqOuNG2zt84RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2a8bd16e, base path is set to: null +00:00:47.174 [XNIO-1 task-2] p3mpRre_QNqOuNG2zt84RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2a8bd16e", "2a8bd16e", serviceId) +00:00:47.181 [XNIO-1 task-2] R7QGYOCyQj28TLig0drqiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.181 [XNIO-1 task-2] R7QGYOCyQj28TLig0drqiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.182 [XNIO-1 task-2] R7QGYOCyQj28TLig0drqiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.201 [XNIO-1 task-2] 6-tgbF7hSiW24yW3lKcJJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.201 [XNIO-1 task-2] 6-tgbF7hSiW24yW3lKcJJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.201 [XNIO-1 task-2] 6-tgbF7hSiW24yW3lKcJJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.202 [XNIO-1 task-2] 6-tgbF7hSiW24yW3lKcJJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.235 [XNIO-1 task-2] uAEyrmJmQlKRfpMHWiMx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2a8bd16e +00:00:47.235 [XNIO-1 task-2] uAEyrmJmQlKRfpMHWiMx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.235 [XNIO-1 task-2] uAEyrmJmQlKRfpMHWiMx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:47.235 [XNIO-1 task-2] uAEyrmJmQlKRfpMHWiMx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2a8bd16e +00:00:47.245 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:183df51c-1383-4527-8c07-c995dee5b861 +Jun 29, 2024 12:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:47.256 [XNIO-1 task-2] TnpSG4ZSSXmT2Armr7RhrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93c91eb6, base path is set to: null +00:00:47.256 [XNIO-1 task-2] TnpSG4ZSSXmT2Armr7RhrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93c91eb6 +00:00:47.256 [XNIO-1 task-2] TnpSG4ZSSXmT2Armr7RhrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.256 [XNIO-1 task-2] TnpSG4ZSSXmT2Armr7RhrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +00:00:47.258 [XNIO-1 task-2] TnpSG4ZSSXmT2Armr7RhrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93c91eb6 +00:00:47.259 [XNIO-1 task-2] TnpSG4ZSSXmT2Armr7RhrA DEBUG com.networknt.schema.TypeValidator debug - validate( "93c91eb6", "93c91eb6", serviceId) +00:00:47.282 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.282 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.282 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.282 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.283 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +00:00:47.283 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.283 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.283 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + +00:00:47.283 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.283 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "378cd2e1-a18f-4290-9040-c26420fe796e", {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.284 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "039654d2", {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.284 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.284 [XNIO-1 task-2] WS8wqnxlTLypDPUUCElAyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"039654d2","serviceName":"90b3f7d1-aa33-4efe-886b-04f62d11","serviceDesc":"378cd2e1-a18f-4290-9040-c26420fe796e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.311 [XNIO-1 task-2] -anQn-NBQ3OOryD47zsIWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.311 [XNIO-1 task-2] -anQn-NBQ3OOryD47zsIWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.311 [XNIO-1 task-2] -anQn-NBQ3OOryD47zsIWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.312 [XNIO-1 task-2] -anQn-NBQ3OOryD47zsIWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.350 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.350 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.351 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.351 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.351 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.352 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc015cb6-0bf6-4b35-b64f-013ec286459a", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.352 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG com.networknt.schema.TypeValidator debug - validate( "e73657df", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.352 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.352 [XNIO-1 task-2] 7VKEcKbmS42K_35VJliQEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e73657df","serviceName":"8b9ac94d-dd93-4940-bb03-9e11fac5","serviceDesc":"dc015cb6-0bf6-4b35-b64f-013ec286459a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.367 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2ef121d0-f264-4cd0-8823-0c20e87fd920 +00:00:47.367 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:49f2c391-e232-49c5-a655-d2388bc68246 +00:00:47.373 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.373 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.374 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.378 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.378 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.378 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG com.networknt.schema.TypeValidator debug - validate( "2e49870d-263f-42d6-86ad-654948b23e57", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.378 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG com.networknt.schema.TypeValidator debug - validate( "24e3e317", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.378 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.378 [XNIO-1 task-2] Rk8idnA-Rfu3MAeaO-ZECg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"24e3e317","serviceName":"b04ac6d7-18b4-49ad-9df7-4e8c624c","serviceDesc":"2e49870d-263f-42d6-86ad-654948b23e57","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 29, 2024 12:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:47.398 [XNIO-1 task-2] DfqEXnUlTPG6HLhsYMBWDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e73657df, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +00:00:47.398 [XNIO-1 task-2] DfqEXnUlTPG6HLhsYMBWDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:47.399 [XNIO-1 task-2] DfqEXnUlTPG6HLhsYMBWDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e73657df +00:00:47.405 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.405 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.406 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.406 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.407 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.407 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.407 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.407 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) + +00:00:47.407 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "62464eec", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.407 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.407 [XNIO-1 task-2] 7eTaREcWQ9WIk2OaMuEU7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.432 [XNIO-1 task-2] RK3w6OC3RiGgOGkUibfLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4acc9b34 +00:00:47.433 [XNIO-1 task-2] RK3w6OC3RiGgOGkUibfLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.433 [XNIO-1 task-2] RK3w6OC3RiGgOGkUibfLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:47.433 [XNIO-1 task-2] RK3w6OC3RiGgOGkUibfLuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4acc9b34 +00:00:47.435 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4acc9b34 +00:00:47.448 [XNIO-1 task-2] kHYZUjZBSJG7gRhEn3zu4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.448 [XNIO-1 task-2] kHYZUjZBSJG7gRhEn3zu4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.448 [XNIO-1 task-2] kHYZUjZBSJG7gRhEn3zu4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.480 [XNIO-1 task-2] oS8DFQd6RHewVLRnfmxlyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.480 [XNIO-1 task-2] oS8DFQd6RHewVLRnfmxlyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.481 [XNIO-1 task-2] oS8DFQd6RHewVLRnfmxlyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.505 [XNIO-1 task-2] 6XftOCxqTbiJBMJIoBtLrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e73657df, base path is set to: null +00:00:47.505 [XNIO-1 task-2] 6XftOCxqTbiJBMJIoBtLrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.506 [XNIO-1 task-2] 6XftOCxqTbiJBMJIoBtLrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.506 [XNIO-1 task-2] 6XftOCxqTbiJBMJIoBtLrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e73657df, base path is set to: null +00:00:47.506 [XNIO-1 task-2] 6XftOCxqTbiJBMJIoBtLrA DEBUG com.networknt.schema.TypeValidator debug - validate( "e73657df", "e73657df", serviceId) +00:00:47.512 [XNIO-1 task-2] O_1BVvM1T0CjyfY48SvZ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e73657df +00:00:47.512 [XNIO-1 task-2] O_1BVvM1T0CjyfY48SvZ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.512 [XNIO-1 task-2] O_1BVvM1T0CjyfY48SvZ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:47.512 [XNIO-1 task-2] O_1BVvM1T0CjyfY48SvZ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e73657df +00:00:47.528 [XNIO-1 task-2] KayvKXbCRPOSe5hdQh3QhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4f1d3b11, base path is set to: null +00:00:47.528 [XNIO-1 task-2] KayvKXbCRPOSe5hdQh3QhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.528 [XNIO-1 task-2] KayvKXbCRPOSe5hdQh3QhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.528 [XNIO-1 task-2] KayvKXbCRPOSe5hdQh3QhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4f1d3b11, base path is set to: null +00:00:47.529 [XNIO-1 task-2] KayvKXbCRPOSe5hdQh3QhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f1d3b11", "4f1d3b11", serviceId) +00:00:47.555 [XNIO-1 task-2] 0mdj5VBsR_aMev1P1fyINQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.555 [XNIO-1 task-2] 0mdj5VBsR_aMev1P1fyINQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.556 [XNIO-1 task-2] 0mdj5VBsR_aMev1P1fyINQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.556 [XNIO-1 task-2] 0mdj5VBsR_aMev1P1fyINQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.570 [XNIO-1 task-2] nl4anQ7WTfGYxl0wFySv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.570 [XNIO-1 task-2] nl4anQ7WTfGYxl0wFySv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.571 [XNIO-1 task-2] nl4anQ7WTfGYxl0wFySv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.593 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:30374135-52ca-4dc4-bb25-b11216c14b61 +00:00:47.606 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.607 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.608 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.608 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.609 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.609 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.609 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.609 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG com.networknt.schema.TypeValidator debug - validate( "45e74319-db76-43b7-937d-0e6741dd", {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:47.610 [XNIO-1 task-2] wGG7Oc3AQJiDVg8Yq0LpOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"173eae79","serviceName":"45e74319-db76-43b7-937d-0e6741dd","serviceDesc":"c3cd1b05-6514-4df5-bfdc-b8c28d68d701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.628 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.629 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.629 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.630 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.631 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.631 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.631 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.631 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3db2a89-d1f9-48de-a3a4-feee36ae", {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:47.631 [XNIO-1 task-2] XOW4eCSfQjSGxpgDf7xvNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b7d25b4","serviceName":"a3db2a89-d1f9-48de-a3a4-feee36ae","serviceDesc":"08882d66-79dc-4443-8514-5b25ecb3095b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.647 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.647 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.648 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.648 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.649 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.649 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.649 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.649 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "79c1f349-136d-417b-bed5-5053b847", {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:47.649 [XNIO-1 task-2] aHTRPxq1QxO_tMN1l0QIrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0e26b1bc","serviceName":"79c1f349-136d-417b-bed5-5053b847","serviceDesc":"7a4a7764-5b6f-4d59-a806-0e13f30120c0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.652 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4c4224c4 +00:00:47.654 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4c4224c4 +00:00:47.665 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.665 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.666 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.687 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.687 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.687 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "32415f58-513a-4aad-abdc-dab65bd56ed3", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.687 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "73395de2", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.687 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.687 [XNIO-1 task-2] pKihXlsPSLSuD5o77Y0wQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.703 [XNIO-1 task-2] Dde-ewcMRZyPlY7954oh3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.703 [XNIO-1 task-2] Dde-ewcMRZyPlY7954oh3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.703 [XNIO-1 task-2] Dde-ewcMRZyPlY7954oh3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.708 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7f72b46b +00:00:47.717 [XNIO-1 task-2] alHDk9K2Q-yl1bTW25A0yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3db09f23, base path is set to: null +00:00:47.717 [XNIO-1 task-2] alHDk9K2Q-yl1bTW25A0yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.717 [XNIO-1 task-2] alHDk9K2Q-yl1bTW25A0yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.717 [XNIO-1 task-2] alHDk9K2Q-yl1bTW25A0yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3db09f23, base path is set to: null +00:00:47.718 [XNIO-1 task-2] alHDk9K2Q-yl1bTW25A0yg DEBUG com.networknt.schema.TypeValidator debug - validate( "3db09f23", "3db09f23", serviceId) +00:00:47.723 [XNIO-1 task-2] fxRjhkbaQTOKNF5MumHWZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.723 [XNIO-1 task-2] fxRjhkbaQTOKNF5MumHWZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.723 [XNIO-1 task-2] fxRjhkbaQTOKNF5MumHWZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.724 [XNIO-1 task-2] fxRjhkbaQTOKNF5MumHWZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.737 [XNIO-1 task-2] I1k8GccITAeiDjg8HwdHrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3db09f23 +00:00:47.737 [XNIO-1 task-2] I1k8GccITAeiDjg8HwdHrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.737 [XNIO-1 task-2] I1k8GccITAeiDjg8HwdHrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:47.737 [XNIO-1 task-2] I1k8GccITAeiDjg8HwdHrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3db09f23 +00:00:47.746 [XNIO-1 task-2] T39_SS_2ThaRuQEGbwzMFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3db09f23, base path is set to: null +00:00:47.746 [XNIO-1 task-2] T39_SS_2ThaRuQEGbwzMFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.746 [XNIO-1 task-2] T39_SS_2ThaRuQEGbwzMFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.746 [XNIO-1 task-2] T39_SS_2ThaRuQEGbwzMFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3db09f23, base path is set to: null +00:00:47.747 [XNIO-1 task-2] T39_SS_2ThaRuQEGbwzMFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3db09f23", "3db09f23", serviceId) +00:00:47.757 [XNIO-1 task-2] NQYWuXyaQAeisUaknUDfcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.757 [XNIO-1 task-2] NQYWuXyaQAeisUaknUDfcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.757 [XNIO-1 task-2] NQYWuXyaQAeisUaknUDfcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.758 [XNIO-1 task-2] NQYWuXyaQAeisUaknUDfcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.772 [XNIO-1 task-2] _TS3PlEaTlyO6LmO053PEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/173eae79 +00:00:47.772 [XNIO-1 task-2] _TS3PlEaTlyO6LmO053PEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.772 [XNIO-1 task-2] _TS3PlEaTlyO6LmO053PEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:47.772 [XNIO-1 task-2] _TS3PlEaTlyO6LmO053PEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/173eae79 +00:00:47.796 [XNIO-1 task-2] xcGVUFKCQuSEJWnpfD5fkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3db09f23, base path is set to: null +00:00:47.796 [XNIO-1 task-2] xcGVUFKCQuSEJWnpfD5fkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.797 [XNIO-1 task-2] xcGVUFKCQuSEJWnpfD5fkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.797 [XNIO-1 task-2] xcGVUFKCQuSEJWnpfD5fkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3db09f23, base path is set to: null +00:00:47.797 [XNIO-1 task-2] xcGVUFKCQuSEJWnpfD5fkA DEBUG com.networknt.schema.TypeValidator debug - validate( "3db09f23", "3db09f23", serviceId) +00:00:47.815 [XNIO-1 task-2] f-USY21BT8GBLi3qqOhlNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/039654d2, base path is set to: null +00:00:47.815 [XNIO-1 task-2] f-USY21BT8GBLi3qqOhlNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.815 [XNIO-1 task-2] f-USY21BT8GBLi3qqOhlNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.816 [XNIO-1 task-2] f-USY21BT8GBLi3qqOhlNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/039654d2, base path is set to: null +00:00:47.816 [XNIO-1 task-2] f-USY21BT8GBLi3qqOhlNw DEBUG com.networknt.schema.TypeValidator debug - validate( "039654d2", "039654d2", serviceId) +00:00:47.834 [XNIO-1 task-2] azp8oLeYS3mYoKdFSaEksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a114447c, base path is set to: null +00:00:47.835 [XNIO-1 task-2] azp8oLeYS3mYoKdFSaEksg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.835 [XNIO-1 task-2] azp8oLeYS3mYoKdFSaEksg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:47.835 [XNIO-1 task-2] azp8oLeYS3mYoKdFSaEksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a114447c, base path is set to: null +00:00:47.835 [XNIO-1 task-2] azp8oLeYS3mYoKdFSaEksg DEBUG com.networknt.schema.TypeValidator debug - validate( "a114447c", "a114447c", serviceId) +00:00:47.871 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.871 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.872 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.873 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.873 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.873 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "32415f58-513a-4aad-abdc-dab65bd56ed3", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.874 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "73395de2", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.874 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.874 [XNIO-1 task-2] emRF8K4vRiu2qb4pN1x3_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"73395de2","serviceName":"5df6c71b-34c7-4827-87c4-0025e5e1","serviceDesc":"32415f58-513a-4aad-abdc-dab65bd56ed3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.878 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4c4224c4 +00:00:47.885 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.885 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.885 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.886 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.886 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.886 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG com.networknt.schema.TypeValidator debug - validate( "5b0ce9bc-b65f-497c-a264-676e493c64ed", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.886 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG com.networknt.schema.TypeValidator debug - validate( "d3237065", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.886 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.886 [XNIO-1 task-2] JaqAeCmDTri4U9Eefw43zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.911 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.911 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.911 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:47.912 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.912 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.912 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG com.networknt.schema.TypeValidator debug - validate( "24100d10-2975-4faa-93dd-5dbc2b41f4a0", {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:47.912 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG com.networknt.schema.TypeValidator debug - validate( "b2b2be5e", {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:47.912 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:47.912 [XNIO-1 task-2] OVqT_WPWQaC9fXkDqhZaJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b2b2be5e","serviceName":"149b7141-13c0-4a81-9c70-8ae3f971","serviceDesc":"24100d10-2975-4faa-93dd-5dbc2b41f4a0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.914 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b2b2be5e +00:00:47.925 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.925 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.926 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.926 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.926 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da9b2d33 +00:00:47.926 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.927 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:47.927 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:47.927 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f8f7ad6-e05c-4d98-ab30-624e81a4", {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:47.928 [XNIO-1 task-2] SaO_z1O0QWu3F2ZkQFvstQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18331000","serviceName":"1f8f7ad6-e05c-4d98-ab30-624e81a4","serviceDesc":"0fe65bff-901d-48c1-8504-03e49c05c2ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:47.944 [XNIO-1 task-2] 7F6MVePZT56r1xDtGn0wfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.946 [XNIO-1 task-2] 7F6MVePZT56r1xDtGn0wfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.947 [XNIO-1 task-2] 7F6MVePZT56r1xDtGn0wfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.979 [XNIO-1 task-2] J5KNBKqkQD2OD8zDAlXhGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:47.979 [XNIO-1 task-2] J5KNBKqkQD2OD8zDAlXhGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:47.979 [XNIO-1 task-2] J5KNBKqkQD2OD8zDAlXhGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.007 [XNIO-1 task-2] 9gZCNbg2SUC-Z3WkYl7ngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.007 [XNIO-1 task-2] 9gZCNbg2SUC-Z3WkYl7ngQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.007 [XNIO-1 task-2] 9gZCNbg2SUC-Z3WkYl7ngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.021 [XNIO-1 task-2] Ilwl9aznRui1pDoKCcjfvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.021 [XNIO-1 task-2] Ilwl9aznRui1pDoKCcjfvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.021 [XNIO-1 task-2] Ilwl9aznRui1pDoKCcjfvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.022 [XNIO-1 task-2] Ilwl9aznRui1pDoKCcjfvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.042 [XNIO-1 task-2] RAncaYhZTTutv08-aPuFzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ba1aa965, base path is set to: null +00:00:48.043 [XNIO-1 task-2] RAncaYhZTTutv08-aPuFzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.043 [XNIO-1 task-2] RAncaYhZTTutv08-aPuFzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:48.043 [XNIO-1 task-2] RAncaYhZTTutv08-aPuFzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ba1aa965, base path is set to: null +00:00:48.043 [XNIO-1 task-2] RAncaYhZTTutv08-aPuFzA DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1aa965", "ba1aa965", serviceId) +00:00:48.060 [XNIO-1 task-2] J0VnTWTkQLy2rYPbzXUZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.060 [XNIO-1 task-2] J0VnTWTkQLy2rYPbzXUZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.060 [XNIO-1 task-2] J0VnTWTkQLy2rYPbzXUZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.080 [XNIO-1 task-2] ku-sYRBlTOOj8Lc4X24KNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18331000 +00:00:48.080 [XNIO-1 task-2] ku-sYRBlTOOj8Lc4X24KNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.080 [XNIO-1 task-2] ku-sYRBlTOOj8Lc4X24KNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:48.080 [XNIO-1 task-2] ku-sYRBlTOOj8Lc4X24KNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18331000 +00:00:48.099 [XNIO-1 task-2] 9sINBbhsRuyvIOEsouhFQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b2b2be5e, base path is set to: null +00:00:48.099 [XNIO-1 task-2] 9sINBbhsRuyvIOEsouhFQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.100 [XNIO-1 task-2] 9sINBbhsRuyvIOEsouhFQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:48.100 [XNIO-1 task-2] 9sINBbhsRuyvIOEsouhFQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b2b2be5e, base path is set to: null +00:00:48.100 [XNIO-1 task-2] 9sINBbhsRuyvIOEsouhFQg DEBUG com.networknt.schema.TypeValidator debug - validate( "b2b2be5e", "b2b2be5e", serviceId) +00:00:48.103 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b2b2be5e +00:00:48.115 [XNIO-1 task-2] 5WBSHUI2RSiZjwU9Wz4S-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.116 [XNIO-1 task-2] 5WBSHUI2RSiZjwU9Wz4S-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.116 [XNIO-1 task-2] 5WBSHUI2RSiZjwU9Wz4S-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.140 [XNIO-1 task-2] iIe824WURQOv-jbUkDY4pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec4f3ff4 +00:00:48.140 [XNIO-1 task-2] iIe824WURQOv-jbUkDY4pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.140 [XNIO-1 task-2] iIe824WURQOv-jbUkDY4pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:48.141 [XNIO-1 task-2] iIe824WURQOv-jbUkDY4pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec4f3ff4 +00:00:48.148 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.148 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.149 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.151 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.151 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.151 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:48.151 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:48.151 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG com.networknt.schema.TypeValidator debug - validate( "be03984c-d9b3-4eb5-b5d1-38e6287c", {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:48.151 [XNIO-1 task-2] IrPU5XpvQYu-E3Jvt_Tlpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"97412e99","serviceName":"be03984c-d9b3-4eb5-b5d1-38e6287c","serviceDesc":"193053c4-37e7-48b0-bd5f-7be26f6e1563","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.168 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da9b2d33 +00:00:48.169 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:183df51c-1383-4527-8c07-c995dee5b861 +00:00:48.170 [XNIO-1 task-2] W2ZXdG37Sa2hyW65-6IKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.170 [XNIO-1 task-2] W2ZXdG37Sa2hyW65-6IKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.170 [XNIO-1 task-2] W2ZXdG37Sa2hyW65-6IKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.171 [XNIO-1 task-2] W2ZXdG37Sa2hyW65-6IKbw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:48.188 [XNIO-1 task-2] W8BcApTcQqu6utcwMcRMJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.188 [XNIO-1 task-2] W8BcApTcQqu6utcwMcRMJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +00:00:48.189 [XNIO-1 task-2] W8BcApTcQqu6utcwMcRMJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.189 [XNIO-1 task-2] W8BcApTcQqu6utcwMcRMJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +00:00:48.207 [XNIO-1 task-2] AYEidPwISXyCUrwZcX79jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ec4f3ff4, base path is set to: null + +00:00:48.207 [XNIO-1 task-2] AYEidPwISXyCUrwZcX79jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec4f3ff4 +00:00:48.212 [XNIO-1 task-2] AYEidPwISXyCUrwZcX79jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.212 [XNIO-1 task-2] AYEidPwISXyCUrwZcX79jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:48.212 [XNIO-1 task-2] AYEidPwISXyCUrwZcX79jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec4f3ff4 +00:00:48.233 [XNIO-1 task-2] 0f-QFjWYSXKPdS_pkLlHgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b7d25b4, base path is set to: null +00:00:48.233 [XNIO-1 task-2] 0f-QFjWYSXKPdS_pkLlHgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.233 [XNIO-1 task-2] 0f-QFjWYSXKPdS_pkLlHgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:48.234 [XNIO-1 task-2] 0f-QFjWYSXKPdS_pkLlHgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b7d25b4, base path is set to: null +00:00:48.234 [XNIO-1 task-2] 0f-QFjWYSXKPdS_pkLlHgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4b7d25b4", "4b7d25b4", serviceId) +00:00:48.259 [XNIO-1 task-2] aP28tp3CSw-EE9-z3tKz4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.259 [XNIO-1 task-2] aP28tp3CSw-EE9-z3tKz4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.259 [XNIO-1 task-2] aP28tp3CSw-EE9-z3tKz4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.260 [XNIO-1 task-2] aP28tp3CSw-EE9-z3tKz4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.284 [XNIO-1 task-2] bOUKA9OBQZOn1orv6yYaOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.285 [XNIO-1 task-2] bOUKA9OBQZOn1orv6yYaOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.285 [XNIO-1 task-2] bOUKA9OBQZOn1orv6yYaOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.286 [XNIO-1 task-2] bOUKA9OBQZOn1orv6yYaOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.296 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:50b8e01e-35f8-4712-bbe5-a3de5e65dde5 +00:00:48.304 [XNIO-1 task-2] KemDtTtIT-Oi_35r5xHlwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7881aeed, base path is set to: null +00:00:48.304 [XNIO-1 task-2] KemDtTtIT-Oi_35r5xHlwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.304 [XNIO-1 task-2] KemDtTtIT-Oi_35r5xHlwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:48.304 [XNIO-1 task-2] KemDtTtIT-Oi_35r5xHlwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7881aeed, base path is set to: null +00:00:48.305 [XNIO-1 task-2] KemDtTtIT-Oi_35r5xHlwA DEBUG com.networknt.schema.TypeValidator debug - validate( "7881aeed", "7881aeed", serviceId) +00:00:48.318 [XNIO-1 task-2] YHKIop7pRHaG5DupUCF4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.318 [XNIO-1 task-2] YHKIop7pRHaG5DupUCF4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.318 [XNIO-1 task-2] YHKIop7pRHaG5DupUCF4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.333 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f719b73a-143f-43ff-9ae7-bffd0094af0d +00:00:48.337 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.338 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.338 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.339 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.339 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +00:00:48.339 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG com.networknt.schema.TypeValidator debug - validate( "fd809e15-3edf-4727-aff1-df342c094c91", {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:48.340 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG com.networknt.schema.TypeValidator debug - validate( "77fe72e6", {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:48.340 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:48.340 [XNIO-1 task-2] r1WPfA1WQI-ZId_Fg2CBYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"77fe72e6","serviceName":"c98e86f4-4a38-454b-a7b8-46ccfc00","serviceDesc":"fd809e15-3edf-4727-aff1-df342c094c91","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.353 [XNIO-1 task-2] mxzpKrMMQ3KZVNBhJFKi1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.353 [XNIO-1 task-2] mxzpKrMMQ3KZVNBhJFKi1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.353 [XNIO-1 task-2] mxzpKrMMQ3KZVNBhJFKi1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.353 [XNIO-1 task-2] mxzpKrMMQ3KZVNBhJFKi1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.353 [XNIO-1 task-2] mxzpKrMMQ3KZVNBhJFKi1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.353 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4c4224c4 + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:48.366 [XNIO-1 task-2] 97x47wYOS2yAbILKoPIY3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7881aeed, base path is set to: null +00:00:48.366 [XNIO-1 task-2] 97x47wYOS2yAbILKoPIY3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.366 [XNIO-1 task-2] 97x47wYOS2yAbILKoPIY3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:48.367 [XNIO-1 task-2] 97x47wYOS2yAbILKoPIY3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7881aeed, base path is set to: null +00:00:48.367 [XNIO-1 task-2] 97x47wYOS2yAbILKoPIY3w DEBUG com.networknt.schema.TypeValidator debug - validate( "7881aeed", "7881aeed", serviceId) +00:00:48.384 [XNIO-1 task-2] djoPHBPCTrSmogJgIa81EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7881aeed +00:00:48.384 [XNIO-1 task-2] djoPHBPCTrSmogJgIa81EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.384 [XNIO-1 task-2] djoPHBPCTrSmogJgIa81EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:48.385 [XNIO-1 task-2] djoPHBPCTrSmogJgIa81EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7881aeed +00:00:48.388 [XNIO-1 task-2] RxUPdqnjSVKahj3AcX7BDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.388 [XNIO-1 task-2] RxUPdqnjSVKahj3AcX7BDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.388 [XNIO-1 task-2] RxUPdqnjSVKahj3AcX7BDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.389 [XNIO-1 task-2] RxUPdqnjSVKahj3AcX7BDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.414 [XNIO-1 task-2] TUgqAGqjTiKcM-UxEBXM4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.415 [XNIO-1 task-2] TUgqAGqjTiKcM-UxEBXM4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.415 [XNIO-1 task-2] TUgqAGqjTiKcM-UxEBXM4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.435 [XNIO-1 task-2] mgPjmSu3Sv-HM9NL1QmPOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.436 [XNIO-1 task-2] mgPjmSu3Sv-HM9NL1QmPOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.436 [XNIO-1 task-2] mgPjmSu3Sv-HM9NL1QmPOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.436 [XNIO-1 task-2] mgPjmSu3Sv-HM9NL1QmPOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.464 [XNIO-1 task-2] WCbr2zzcSNuTqrhQtdmudQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.464 [XNIO-1 task-2] WCbr2zzcSNuTqrhQtdmudQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.464 [XNIO-1 task-2] WCbr2zzcSNuTqrhQtdmudQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.465 [XNIO-1 task-2] WCbr2zzcSNuTqrhQtdmudQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.500 [XNIO-1 task-2] ahALXewlRaqpKUyaMSA4Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7881aeed, base path is set to: null +00:00:48.500 [XNIO-1 task-2] ahALXewlRaqpKUyaMSA4Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.500 [XNIO-1 task-2] ahALXewlRaqpKUyaMSA4Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +00:00:48.500 [XNIO-1 task-2] ahALXewlRaqpKUyaMSA4Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7881aeed, base path is set to: null +00:00:48.500 [XNIO-1 task-2] ahALXewlRaqpKUyaMSA4Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "7881aeed", "7881aeed", serviceId) +00:00:48.537 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.538 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.538 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.539 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.539 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:48.539 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG com.networknt.schema.TypeValidator debug - validate( "378bb8e2-eb54-4d59-a7d5-e49eb2035b46", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:48.539 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG com.networknt.schema.TypeValidator debug - validate( "62464eec", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:48.539 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:48.539 [XNIO-1 task-2] h-oPG_W4SYyq8fTkMJbmgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.555 [XNIO-1 task-2] FTlq2xZyQE-96TUy3kV8sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce09941a +00:00:48.555 [XNIO-1 task-2] FTlq2xZyQE-96TUy3kV8sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.555 [XNIO-1 task-2] FTlq2xZyQE-96TUy3kV8sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:48.555 [XNIO-1 task-2] FTlq2xZyQE-96TUy3kV8sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce09941a +00:00:48.567 [XNIO-1 task-2] z4SS_0jrSYmkXdKWL2jW0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.567 [XNIO-1 task-2] z4SS_0jrSYmkXdKWL2jW0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.567 [XNIO-1 task-2] z4SS_0jrSYmkXdKWL2jW0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.577 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:debf4a48 +00:00:48.582 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:debf4a48 +00:00:48.591 [XNIO-1 task-2] dDAdzaB9TGapeehwnz74VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.591 [XNIO-1 task-2] dDAdzaB9TGapeehwnz74VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.592 [XNIO-1 task-2] dDAdzaB9TGapeehwnz74VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.592 [XNIO-1 task-2] dDAdzaB9TGapeehwnz74VQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.607 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:da9b2d33 +00:00:48.613 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.613 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.614 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.615 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.615 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:48.615 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG com.networknt.schema.TypeValidator debug - validate( "5b0ce9bc-b65f-497c-a264-676e493c64ed", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:48.615 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG com.networknt.schema.TypeValidator debug - validate( "d3237065", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:48.615 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:48.615 [XNIO-1 task-2] Jzxeg1v4Tdy0Kc1b5I_gew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d3237065","serviceName":"82690570-f265-42b7-82b1-a791cdd4","serviceDesc":"5b0ce9bc-b65f-497c-a264-676e493c64ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.650 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.650 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.651 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.651 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.651 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:48.652 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG com.networknt.schema.TypeValidator debug - validate( "378bb8e2-eb54-4d59-a7d5-e49eb2035b46", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:48.652 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG com.networknt.schema.TypeValidator debug - validate( "62464eec", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:48.652 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:48.652 [XNIO-1 task-2] ap_QMXTPT0yaZV3w6N2ocw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.676 [XNIO-1 task-2] pxpGuiUJQ9-s-XsySWNwwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.676 [XNIO-1 task-2] pxpGuiUJQ9-s-XsySWNwwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.676 [XNIO-1 task-2] pxpGuiUJQ9-s-XsySWNwwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.705 [XNIO-1 task-2] 5PM0eSO_TcehAjhOIt1CTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.706 [XNIO-1 task-2] 5PM0eSO_TcehAjhOIt1CTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.706 [XNIO-1 task-2] 5PM0eSO_TcehAjhOIt1CTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.733 [XNIO-1 task-2] XjKhOrTzT_aS3WimvYL8nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.733 [XNIO-1 task-2] XjKhOrTzT_aS3WimvYL8nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.733 [XNIO-1 task-2] XjKhOrTzT_aS3WimvYL8nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.735 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:25822b19-3614-425d-a467-097195de9275 +00:00:48.758 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.758 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.758 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.759 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.759 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.759 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:48.759 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:48.759 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "a5879e17-7418-4012-9104-83d4fa47", {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:48.759 [XNIO-1 task-2] D-udtzsEShWqzMaSdOe5Ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"634b85d5","serviceName":"a5879e17-7418-4012-9104-83d4fa47","serviceDesc":"c7e80ae2-50b9-4d1b-9f2e-18953b9a219b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.762 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:da9b2d33 +00:00:48.766 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:25822b19-3614-425d-a467-097195de9275 +00:00:48.786 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:da9b2d33 +00:00:48.789 [XNIO-1 task-2] FZzbcS90SuqhP0ftcXr35g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.790 [XNIO-1 task-2] FZzbcS90SuqhP0ftcXr35g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.791 [XNIO-1 task-2] FZzbcS90SuqhP0ftcXr35g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.809 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.809 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.809 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.810 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.810 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:48.810 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4abebf1f-a234-43d1-87dc-f91a515f7134", {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +00:00:48.810 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ce09941a", {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +00:00:48.810 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +00:00:48.810 [XNIO-1 task-2] ztx0QcJHTDCT1h3_SPNbjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ce09941a","serviceName":"34286c9f-712a-406f-8802-5a5bd43b","serviceDesc":"4abebf1f-a234-43d1-87dc-f91a515f7134","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.826 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.826 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +00:00:48.827 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.827 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.827 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.828 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +00:00:48.828 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +00:00:48.828 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG com.networknt.schema.TypeValidator debug - validate( "89f92afe-8e52-4cba-ab89-eed46da0", {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +00:00:48.828 [XNIO-1 task-2] VObM5yNoRrCLI428FeWXmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"62464eec","serviceName":"89f92afe-8e52-4cba-ab89-eed46da0","serviceDesc":"378bb8e2-eb54-4d59-a7d5-e49eb2035b46","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +00:00:48.845 [XNIO-1 task-2] LjBOdTHQSmWjkgHB_mPNJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.845 [XNIO-1 task-2] LjBOdTHQSmWjkgHB_mPNJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +00:00:48.860 [XNIO-1 task-2] -B9EJPl_T0Cg6oj1Ifp0Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +00:00:48.871 [XNIO-1 task-2] TcjHVDxSQkS2b_NoerH6sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + +00:00:48.871 [XNIO-1 task-2] TcjHVDxSQkS2b_NoerH6sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +00:00:48.871 [XNIO-1 task-2] TcjHVDxSQkS2b_NoerH6sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +00:00:48.872 [XNIO-1 task-2] TcjHVDxSQkS2b_NoerH6sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9f5bdf2e +00:00:48.873 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:803c8de7-45ff-4287-8813-59c13e75e353 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:48.891 [XNIO-1 task-2] 1Ut_-_ruTaagh-0Tl5T6WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +00:00:48.891 [XNIO-1 task-2] 1Ut_-_ruTaagh-0Tl5T6WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service diff --git a/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-token-1.log b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..a3c8cc7 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3536 @@ +00:00:42.276 [XNIO-1 task-5] mlIt8ZTtT1q2-Fi4YfzxJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.278 [XNIO-1 task-6] LtHAcb-tSCCV74TmSyPiiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.305 [XNIO-1 task-6] LtHAcb-tSCCV74TmSyPiiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.311 [XNIO-1 task-4] epkV7mGYTEydggcWt_l0DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.312 [XNIO-1 task-4] epkV7mGYTEydggcWt_l0DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.313 [XNIO-1 task-4] epkV7mGYTEydggcWt_l0DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.316 [XNIO-1 task-4] epkV7mGYTEydggcWt_l0DA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:42.325 [XNIO-1 task-4] epkV7mGYTEydggcWt_l0DA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.337 [XNIO-1 task-5] y_cdZNPfRyiwNFkLNl24hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.337 [XNIO-1 task-5] y_cdZNPfRyiwNFkLNl24hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.337 [XNIO-1 task-5] y_cdZNPfRyiwNFkLNl24hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.338 [XNIO-1 task-5] y_cdZNPfRyiwNFkLNl24hg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:42.347 [XNIO-1 task-6] 8iv5ghbsRM-V2OXtxAcgAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.347 [XNIO-1 task-6] 8iv5ghbsRM-V2OXtxAcgAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.348 [XNIO-1 task-6] 8iv5ghbsRM-V2OXtxAcgAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.350 [XNIO-1 task-6] 8iv5ghbsRM-V2OXtxAcgAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 213c6975-aa1b-4f3d-8b65-77f94404b449 scope = null +00:00:42.350 [XNIO-1 task-5] y_cdZNPfRyiwNFkLNl24hg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.363 [XNIO-1 task-4] fz2V2cPMTBGRpkixHRNTEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.363 [XNIO-1 task-4] fz2V2cPMTBGRpkixHRNTEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.365 [XNIO-1 task-5] yJvBhToRTs-bP9zeigmFJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.365 [XNIO-1 task-4] fz2V2cPMTBGRpkixHRNTEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.366 [XNIO-1 task-5] yJvBhToRTs-bP9zeigmFJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.366 [XNIO-1 task-4] fz2V2cPMTBGRpkixHRNTEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = S3yNj5nFQcGPbhsXfPPw1Q redirectUri = http://localhost:8080/authorization +00:00:42.367 [XNIO-1 task-6] 8iv5ghbsRM-V2OXtxAcgAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.370 [XNIO-1 task-5] yJvBhToRTs-bP9zeigmFJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.372 [XNIO-1 task-5] yJvBhToRTs-bP9zeigmFJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:42.378 [XNIO-1 task-4] fz2V2cPMTBGRpkixHRNTEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.378 [XNIO-1 task-4] fz2V2cPMTBGRpkixHRNTEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.388 [XNIO-1 task-5] JoVhCcdeSGucfgi1IfsV4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.389 [XNIO-1 task-5] JoVhCcdeSGucfgi1IfsV4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.389 [XNIO-1 task-5] JoVhCcdeSGucfgi1IfsV4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.392 [XNIO-1 task-5] JoVhCcdeSGucfgi1IfsV4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:42.393 [XNIO-1 task-4] xKxa0m0ASn6uC9ZbaKItIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.394 [XNIO-1 task-4] xKxa0m0ASn6uC9ZbaKItIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.394 [XNIO-1 task-4] xKxa0m0ASn6uC9ZbaKItIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.395 [XNIO-1 task-4] xKxa0m0ASn6uC9ZbaKItIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:42.398 [XNIO-1 task-5] JoVhCcdeSGucfgi1IfsV4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.406 [XNIO-1 task-5] 7o2U2IG_TOShAJDLH4jgew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.406 [XNIO-1 task-5] 7o2U2IG_TOShAJDLH4jgew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.407 [XNIO-1 task-5] 7o2U2IG_TOShAJDLH4jgew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.408 [XNIO-1 task-5] 7o2U2IG_TOShAJDLH4jgew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:42.408 [XNIO-1 task-5] 7o2U2IG_TOShAJDLH4jgew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:42.412 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bcd53202-8492-4310-aa11-e0b351c7cb24 +00:00:42.414 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bcd53202-8492-4310-aa11-e0b351c7cb24 +00:00:42.415 [XNIO-1 task-5] 7o2U2IG_TOShAJDLH4jgew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.425 [XNIO-1 task-5] r8N19feURUyEvpjETaCfkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.425 [XNIO-1 task-5] r8N19feURUyEvpjETaCfkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.426 [XNIO-1 task-5] r8N19feURUyEvpjETaCfkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.427 [XNIO-1 task-4] iYHL5TYHRIm_9LMsEW-JDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.428 [XNIO-1 task-4] iYHL5TYHRIm_9LMsEW-JDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.428 [XNIO-1 task-4] iYHL5TYHRIm_9LMsEW-JDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.429 [XNIO-1 task-5] r8N19feURUyEvpjETaCfkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bcd53202-8492-4310-aa11-e0b351c7cb24 scope = null +00:00:42.432 [XNIO-1 task-4] iYHL5TYHRIm_9LMsEW-JDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:42.439 [XNIO-1 task-4] iYHL5TYHRIm_9LMsEW-JDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.441 [XNIO-1 task-4] iYHL5TYHRIm_9LMsEW-JDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.499 [XNIO-1 task-6] AujClpK7QFWG7wcwHZOe5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.499 [XNIO-1 task-6] AujClpK7QFWG7wcwHZOe5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.500 [XNIO-1 task-6] AujClpK7QFWG7wcwHZOe5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.503 [XNIO-1 task-4] qG7gRbksSSSfLHwzXzVV_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.505 [XNIO-1 task-4] qG7gRbksSSSfLHwzXzVV_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.506 [XNIO-1 task-4] qG7gRbksSSSfLHwzXzVV_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.501 [XNIO-1 task-6] AujClpK7QFWG7wcwHZOe5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:42.507 [XNIO-1 task-6] AujClpK7QFWG7wcwHZOe5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = eec537e7-abf6-4b19-ae4e-1485fc751b8e scope = null +00:00:42.514 [XNIO-1 task-5] yvBzEx7wRDyfDPpGTtH2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.515 [XNIO-1 task-5] yvBzEx7wRDyfDPpGTtH2xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.518 [XNIO-1 task-5] yvBzEx7wRDyfDPpGTtH2xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.519 [XNIO-1 task-5] yvBzEx7wRDyfDPpGTtH2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.541 [XNIO-1 task-6] AujClpK7QFWG7wcwHZOe5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.541 [XNIO-1 task-6] AujClpK7QFWG7wcwHZOe5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.564 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3d66ca77-d7ac-4e6f-bb53-3d282590b1e3 +00:00:42.565 [XNIO-1 task-4] w98zR0rdRVC8oLiDGk66-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.565 [XNIO-1 task-4] w98zR0rdRVC8oLiDGk66-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.566 [XNIO-1 task-4] w98zR0rdRVC8oLiDGk66-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.567 [XNIO-1 task-4] w98zR0rdRVC8oLiDGk66-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:42.566 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3d66ca77-d7ac-4e6f-bb53-3d282590b1e3 +00:00:42.573 [XNIO-1 task-4] w98zR0rdRVC8oLiDGk66-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.574 [XNIO-1 task-5] yvBzEx7wRDyfDPpGTtH2xA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.585 [XNIO-1 task-6] FfHcDHk_SDuWQl1jSV6HLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.585 [XNIO-1 task-6] FfHcDHk_SDuWQl1jSV6HLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.587 [XNIO-1 task-6] FfHcDHk_SDuWQl1jSV6HLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.587 [XNIO-1 task-4] i684FdwSQBmbaDY4fkdytw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.587 [XNIO-1 task-4] i684FdwSQBmbaDY4fkdytw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.588 [XNIO-1 task-6] FfHcDHk_SDuWQl1jSV6HLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:42.588 [XNIO-1 task-4] i684FdwSQBmbaDY4fkdytw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.589 [XNIO-1 task-4] i684FdwSQBmbaDY4fkdytw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3d66ca77-d7ac-4e6f-bb53-3d282590b1e3 scope = null +00:00:42.594 [XNIO-1 task-6] FfHcDHk_SDuWQl1jSV6HLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.602 [XNIO-1 task-6] ZdXUlh0UTg-9Ygp_w3KJ1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.602 [XNIO-1 task-6] ZdXUlh0UTg-9Ygp_w3KJ1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.603 [XNIO-1 task-6] ZdXUlh0UTg-9Ygp_w3KJ1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.604 [XNIO-1 task-6] ZdXUlh0UTg-9Ygp_w3KJ1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWIxNzAzNGQtN2I0NC00OGRmLTlmZDYtMDAzMzZhNjg2MzBkOkl0R2xDNkZhUmcycmduWHgzNEdTemc=", "Basic ZWIxNzAzNGQtN2I0NC00OGRmLTlmZDYtMDAzMzZhNjg2MzBkOkl0R2xDNkZhUmcycmduWHgzNEdTemc=", authorization) +00:00:42.609 [XNIO-1 task-6] ZdXUlh0UTg-9Ygp_w3KJ1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.618 [XNIO-1 task-6] NZ66WVrWTymVWrVkkvvbMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.618 [XNIO-1 task-6] NZ66WVrWTymVWrVkkvvbMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.619 [XNIO-1 task-6] NZ66WVrWTymVWrVkkvvbMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.619 [XNIO-1 task-6] NZ66WVrWTymVWrVkkvvbMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:42.625 [XNIO-1 task-4] i684FdwSQBmbaDY4fkdytw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.626 [XNIO-1 task-6] NZ66WVrWTymVWrVkkvvbMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.635 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9f4b4390-f0c4-4315-aaf7-cca7fd9e3782 +00:00:42.635 [XNIO-1 task-6] e8UbMM7AT5aLL5s-Uyc-eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.654 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9f4b4390-f0c4-4315-aaf7-cca7fd9e3782 +00:00:42.635 [XNIO-1 task-6] e8UbMM7AT5aLL5s-Uyc-eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.668 [XNIO-1 task-6] e8UbMM7AT5aLL5s-Uyc-eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.671 [XNIO-1 task-6] e8UbMM7AT5aLL5s-Uyc-eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:42.678 [XNIO-1 task-6] e8UbMM7AT5aLL5s-Uyc-eg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.678 [XNIO-1 task-4] 0sTnB789QkSSTvOF6GH0kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.679 [XNIO-1 task-4] 0sTnB789QkSSTvOF6GH0kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.679 [XNIO-1 task-4] 0sTnB789QkSSTvOF6GH0kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.680 [XNIO-1 task-4] 0sTnB789QkSSTvOF6GH0kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:42.700 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3900e41e +00:00:42.702 [XNIO-1 task-6] sF7Uc-rBRjGY9K20v7tYig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.702 [XNIO-1 task-6] sF7Uc-rBRjGY9K20v7tYig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.705 [XNIO-1 task-6] sF7Uc-rBRjGY9K20v7tYig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.709 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3900e41e +00:00:42.711 [XNIO-1 task-6] sF7Uc-rBRjGY9K20v7tYig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:42.719 [XNIO-1 task-6] sF7Uc-rBRjGY9K20v7tYig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.720 [XNIO-1 task-4] 0sTnB789QkSSTvOF6GH0kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.727 [XNIO-1 task-6] ruhqj5LwR7GOSC30mHJb2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.727 [XNIO-1 task-6] ruhqj5LwR7GOSC30mHJb2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.728 [XNIO-1 task-6] ruhqj5LwR7GOSC30mHJb2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.817 [XNIO-1 task-6] ruhqj5LwR7GOSC30mHJb2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:42.870 [XNIO-1 task-4] 3G1F3AivR1uT_smWmpnjWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.871 [XNIO-1 task-4] 3G1F3AivR1uT_smWmpnjWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.872 [XNIO-1 task-4] 3G1F3AivR1uT_smWmpnjWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.872 [XNIO-1 task-5] 9IP9DfpPS0CyvIZ5BwOBbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.873 [XNIO-1 task-5] 9IP9DfpPS0CyvIZ5BwOBbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.873 [XNIO-1 task-5] 9IP9DfpPS0CyvIZ5BwOBbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.873 [XNIO-1 task-4] 3G1F3AivR1uT_smWmpnjWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:42.874 [XNIO-1 task-5] 9IP9DfpPS0CyvIZ5BwOBbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:42.883 [XNIO-1 task-6] ruhqj5LwR7GOSC30mHJb2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.887 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3900e41e +00:00:42.884 [XNIO-1 task-4] 3G1F3AivR1uT_smWmpnjWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:42.890 [XNIO-1 task-5] 9IP9DfpPS0CyvIZ5BwOBbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:42.893 [XNIO-1 task-5] 9IP9DfpPS0CyvIZ5BwOBbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.895 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2b49b485-9545-4bd0-b5cc-b3b286050563 +00:00:42.897 [XNIO-1 task-6] wDudGfQaS9G_uAdjPPWZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.897 [XNIO-1 task-6] wDudGfQaS9G_uAdjPPWZPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.898 [XNIO-1 task-6] wDudGfQaS9G_uAdjPPWZPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.901 [XNIO-1 task-6] wDudGfQaS9G_uAdjPPWZPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:42.931 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3900e41e +00:00:42.940 [XNIO-1 task-4] xPMbnE3pRx-8_Wrne8XbqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.940 [XNIO-1 task-4] xPMbnE3pRx-8_Wrne8XbqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.941 [XNIO-1 task-4] xPMbnE3pRx-8_Wrne8XbqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.946 [XNIO-1 task-6] wDudGfQaS9G_uAdjPPWZPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.950 [XNIO-1 task-4] xPMbnE3pRx-8_Wrne8XbqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:42.960 [XNIO-1 task-6] HUt5X5tTTY-GpGX-3NEKaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.960 [XNIO-1 task-6] HUt5X5tTTY-GpGX-3NEKaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:42.961 [XNIO-1 task-6] HUt5X5tTTY-GpGX-3NEKaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.961 [XNIO-1 task-5] Jb-cxQF3Qt6HT_Teeu77Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.962 [XNIO-1 task-6] HUt5X5tTTY-GpGX-3NEKaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:42.962 [XNIO-1 task-5] Jb-cxQF3Qt6HT_Teeu77Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.963 [XNIO-1 task-5] Jb-cxQF3Qt6HT_Teeu77Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:42.963 [XNIO-1 task-5] Jb-cxQF3Qt6HT_Teeu77Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:42.967 [XNIO-1 task-6] HUt5X5tTTY-GpGX-3NEKaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:42.970 [XNIO-1 task-5] Jb-cxQF3Qt6HT_Teeu77Vw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:42.975 [XNIO-1 task-5] Jb-cxQF3Qt6HT_Teeu77Vw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.982 [XNIO-1 task-6] L7j5mN2hRl-UStbOqobMEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.983 [XNIO-1 task-6] L7j5mN2hRl-UStbOqobMEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.983 [XNIO-1 task-4] xPMbnE3pRx-8_Wrne8XbqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:42.984 [XNIO-1 task-6] L7j5mN2hRl-UStbOqobMEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:42.984 [XNIO-1 task-6] L7j5mN2hRl-UStbOqobMEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:42.991 [XNIO-1 task-6] L7j5mN2hRl-UStbOqobMEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.001 [XNIO-1 task-6] vRyjMPHaRumhrvo1ET6CSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.001 [XNIO-1 task-6] vRyjMPHaRumhrvo1ET6CSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.003 [XNIO-1 task-6] vRyjMPHaRumhrvo1ET6CSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.004 [XNIO-1 task-6] vRyjMPHaRumhrvo1ET6CSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.011 [XNIO-1 task-6] vRyjMPHaRumhrvo1ET6CSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.018 [XNIO-1 task-6] IZv0rpP1Sp6Ju8VpemVmnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.019 [XNIO-1 task-6] IZv0rpP1Sp6Ju8VpemVmnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.019 [XNIO-1 task-6] IZv0rpP1Sp6Ju8VpemVmnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.020 [XNIO-1 task-6] IZv0rpP1Sp6Ju8VpemVmnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.027 [XNIO-1 task-6] IZv0rpP1Sp6Ju8VpemVmnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.039 [XNIO-1 task-6] ZrfNfb9ZRhSIAYJQI1QD1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.039 [XNIO-1 task-6] ZrfNfb9ZRhSIAYJQI1QD1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.039 [XNIO-1 task-6] ZrfNfb9ZRhSIAYJQI1QD1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.040 [XNIO-1 task-6] ZrfNfb9ZRhSIAYJQI1QD1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.047 [XNIO-1 task-6] ZrfNfb9ZRhSIAYJQI1QD1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.055 [XNIO-1 task-6] CjLqZnE7ROGVHAsR0p55sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.056 [XNIO-1 task-6] CjLqZnE7ROGVHAsR0p55sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.056 [XNIO-1 task-6] CjLqZnE7ROGVHAsR0p55sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.057 [XNIO-1 task-6] CjLqZnE7ROGVHAsR0p55sQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.063 [XNIO-1 task-6] CjLqZnE7ROGVHAsR0p55sQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.070 [XNIO-1 task-6] hJ_Uzj6fS5GqpHdi-t33nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.070 [XNIO-1 task-6] hJ_Uzj6fS5GqpHdi-t33nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.071 [XNIO-1 task-6] hJ_Uzj6fS5GqpHdi-t33nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.071 [XNIO-1 task-6] hJ_Uzj6fS5GqpHdi-t33nQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.077 [XNIO-1 task-6] hJ_Uzj6fS5GqpHdi-t33nQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.083 [XNIO-1 task-6] AzhUCncKQp-R49BJTQ64vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.083 [XNIO-1 task-6] AzhUCncKQp-R49BJTQ64vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.086 [XNIO-1 task-6] AzhUCncKQp-R49BJTQ64vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.087 [XNIO-1 task-6] AzhUCncKQp-R49BJTQ64vQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.094 [XNIO-1 task-6] AzhUCncKQp-R49BJTQ64vQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.102 [XNIO-1 task-4] GffLP7liQECCRdel9uwVXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.102 [XNIO-1 task-4] GffLP7liQECCRdel9uwVXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.103 [XNIO-1 task-4] GffLP7liQECCRdel9uwVXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.103 [XNIO-1 task-4] GffLP7liQECCRdel9uwVXA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = HIZ9i__IQrmETkWGAn5Iew redirectUri = http://localhost:8080/authorization +00:00:43.108 [XNIO-1 task-6] BxdHtC-IROebjNRRiRvaqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.108 [XNIO-1 task-6] BxdHtC-IROebjNRRiRvaqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.109 [XNIO-1 task-6] BxdHtC-IROebjNRRiRvaqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.109 [XNIO-1 task-6] BxdHtC-IROebjNRRiRvaqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.117 [XNIO-1 task-4] GffLP7liQECCRdel9uwVXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.118 [XNIO-1 task-6] BxdHtC-IROebjNRRiRvaqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.127 [XNIO-1 task-6] bemA_GX1SZKwYv5YOTF68A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.127 [XNIO-1 task-6] bemA_GX1SZKwYv5YOTF68A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.128 [XNIO-1 task-6] bemA_GX1SZKwYv5YOTF68A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.128 [XNIO-1 task-6] bemA_GX1SZKwYv5YOTF68A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:43.133 [XNIO-1 task-6] bemA_GX1SZKwYv5YOTF68A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.145 [XNIO-1 task-6] wYYpScfQToGWaN--f15UKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.145 [XNIO-1 task-6] wYYpScfQToGWaN--f15UKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.146 [XNIO-1 task-6] wYYpScfQToGWaN--f15UKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.146 [XNIO-1 task-6] wYYpScfQToGWaN--f15UKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", authorization) +00:00:43.150 [XNIO-1 task-4] 3P9KaVrjSPKQ1Y3rLKTZ5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.150 [XNIO-1 task-4] 3P9KaVrjSPKQ1Y3rLKTZ5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.151 [XNIO-1 task-4] 3P9KaVrjSPKQ1Y3rLKTZ5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.151 [XNIO-1 task-4] 3P9KaVrjSPKQ1Y3rLKTZ5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:43.161 [XNIO-1 task-5] VSV18ITCRHOB6MXZ3t2OaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.161 [XNIO-1 task-5] VSV18ITCRHOB6MXZ3t2OaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.162 [XNIO-1 task-5] VSV18ITCRHOB6MXZ3t2OaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.162 [XNIO-1 task-5] VSV18ITCRHOB6MXZ3t2OaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:43.163 [XNIO-1 task-6] wYYpScfQToGWaN--f15UKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.169 [XNIO-1 task-5] VSV18ITCRHOB6MXZ3t2OaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:43.169 [XNIO-1 task-4] 3P9KaVrjSPKQ1Y3rLKTZ5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.170 [XNIO-1 task-4] 3P9KaVrjSPKQ1Y3rLKTZ5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.173 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.176 [XNIO-1 task-6] mgpd9J9UQma04FJdYCxc4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.176 [XNIO-1 task-6] mgpd9J9UQma04FJdYCxc4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.176 [XNIO-1 task-6] mgpd9J9UQma04FJdYCxc4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.181 [XNIO-1 task-6] mgpd9J9UQma04FJdYCxc4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.188 [XNIO-1 task-6] mgpd9J9UQma04FJdYCxc4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.196 [XNIO-1 task-6] 46ACUKE4Sq-sqkIcGoiObw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.196 [XNIO-1 task-6] 46ACUKE4Sq-sqkIcGoiObw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.197 [XNIO-1 task-6] 46ACUKE4Sq-sqkIcGoiObw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.197 [XNIO-1 task-6] 46ACUKE4Sq-sqkIcGoiObw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.203 [XNIO-1 task-6] 46ACUKE4Sq-sqkIcGoiObw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.207 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6c0c8931-b0fb-4b71-8d8e-5ea3456ea507 +00:00:43.210 [XNIO-1 task-6] ktH8ajKcR7W9qOJIvemiKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.210 [XNIO-1 task-6] ktH8ajKcR7W9qOJIvemiKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.211 [XNIO-1 task-6] ktH8ajKcR7W9qOJIvemiKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.211 [XNIO-1 task-6] ktH8ajKcR7W9qOJIvemiKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:43.213 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8dfdc6b3-a9c9-4d21-a2e5-a3ac799613ff +00:00:43.220 [XNIO-1 task-6] ktH8ajKcR7W9qOJIvemiKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.229 [XNIO-1 task-6] iTYQIHHuQcG_gPGN_TMWCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.229 [XNIO-1 task-6] iTYQIHHuQcG_gPGN_TMWCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.230 [XNIO-1 task-6] iTYQIHHuQcG_gPGN_TMWCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.231 [XNIO-1 task-6] iTYQIHHuQcG_gPGN_TMWCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.242 [XNIO-1 task-6] iTYQIHHuQcG_gPGN_TMWCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.260 [XNIO-1 task-4] MZIRhEeLQ861DbBmszU3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.260 [XNIO-1 task-4] MZIRhEeLQ861DbBmszU3jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.261 [XNIO-1 task-4] MZIRhEeLQ861DbBmszU3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.261 [XNIO-1 task-4] MZIRhEeLQ861DbBmszU3jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:43.252 [XNIO-1 task-6] -9Etg9WER8Of1rGf2YzVUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.269 [XNIO-1 task-6] -9Etg9WER8Of1rGf2YzVUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.270 [XNIO-1 task-6] -9Etg9WER8Of1rGf2YzVUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.271 [XNIO-1 task-6] -9Etg9WER8Of1rGf2YzVUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:43.273 [XNIO-1 task-5] TSl8OlmuR3WgVniRNvKnkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.274 [XNIO-1 task-5] TSl8OlmuR3WgVniRNvKnkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.274 [XNIO-1 task-5] TSl8OlmuR3WgVniRNvKnkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.275 [XNIO-1 task-5] TSl8OlmuR3WgVniRNvKnkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:43.285 [XNIO-1 task-5] TSl8OlmuR3WgVniRNvKnkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:43.285 [XNIO-1 task-5] TSl8OlmuR3WgVniRNvKnkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.289 [XNIO-1 task-4] MZIRhEeLQ861DbBmszU3jg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.294 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:aa1c14be +00:00:43.296 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:aa1c14be +00:00:43.299 [XNIO-1 task-6] -9Etg9WER8Of1rGf2YzVUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.308 [XNIO-1 task-6] LJ5bK7mvQWiHUxD77RBiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.308 [XNIO-1 task-6] LJ5bK7mvQWiHUxD77RBiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.309 [XNIO-1 task-6] LJ5bK7mvQWiHUxD77RBiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.309 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:aa1c14be +00:00:43.311 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:aa1c14be +00:00:43.319 [XNIO-1 task-6] LJ5bK7mvQWiHUxD77RBiCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.323 [XNIO-1 task-6] Pe08D0EZQj6DpNhcFkQrCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.323 [XNIO-1 task-6] Pe08D0EZQj6DpNhcFkQrCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.323 [XNIO-1 task-6] Pe08D0EZQj6DpNhcFkQrCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.324 [XNIO-1 task-6] Pe08D0EZQj6DpNhcFkQrCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3aVLBScWQAKEb-UsYoxQ8g redirectUri = http://localhost:8080/authorization +00:00:43.325 [XNIO-1 task-5] Req9e_viQV2cec7M5N8GZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.325 [XNIO-1 task-5] Req9e_viQV2cec7M5N8GZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.337 [XNIO-1 task-5] Req9e_viQV2cec7M5N8GZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.338 [XNIO-1 task-6] Pe08D0EZQj6DpNhcFkQrCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.338 [XNIO-1 task-6] Pe08D0EZQj6DpNhcFkQrCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.343 [XNIO-1 task-5] Req9e_viQV2cec7M5N8GZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.349 [XNIO-1 task-5] PmVuQFVLSy6WKDNsAThr5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.350 [XNIO-1 task-5] PmVuQFVLSy6WKDNsAThr5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.350 [XNIO-1 task-5] PmVuQFVLSy6WKDNsAThr5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.351 [XNIO-1 task-5] PmVuQFVLSy6WKDNsAThr5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:43.356 [XNIO-1 task-5] PmVuQFVLSy6WKDNsAThr5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.365 [XNIO-1 task-5] wb3APeLcTmuCTDYoecj-Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.366 [XNIO-1 task-5] wb3APeLcTmuCTDYoecj-Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.366 [XNIO-1 task-5] wb3APeLcTmuCTDYoecj-Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.367 [XNIO-1 task-5] wb3APeLcTmuCTDYoecj-Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:43.372 [XNIO-1 task-5] wb3APeLcTmuCTDYoecj-Bw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.382 [XNIO-1 task-5] rXtfgD6-RGyOpuQlLxIFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.383 [XNIO-1 task-5] rXtfgD6-RGyOpuQlLxIFyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.383 [XNIO-1 task-5] rXtfgD6-RGyOpuQlLxIFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.384 [XNIO-1 task-5] rXtfgD6-RGyOpuQlLxIFyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:43.394 [XNIO-1 task-5] rXtfgD6-RGyOpuQlLxIFyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.406 [XNIO-1 task-5] Nc-mF0e6R8q8TWpN2xkDAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.406 [XNIO-1 task-5] Nc-mF0e6R8q8TWpN2xkDAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.407 [XNIO-1 task-5] Nc-mF0e6R8q8TWpN2xkDAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.407 [XNIO-1 task-5] Nc-mF0e6R8q8TWpN2xkDAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", authorization) +00:00:43.414 [XNIO-1 task-5] Nc-mF0e6R8q8TWpN2xkDAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.423 [XNIO-1 task-5] I-O6Q59CTkKGc2B4QPbqJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.424 [XNIO-1 task-5] I-O6Q59CTkKGc2B4QPbqJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.424 [XNIO-1 task-5] I-O6Q59CTkKGc2B4QPbqJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.425 [XNIO-1 task-5] I-O6Q59CTkKGc2B4QPbqJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", authorization) +00:00:43.431 [XNIO-1 task-6] yZcytUH-RjOhIZiM6wBbSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.432 [XNIO-1 task-6] yZcytUH-RjOhIZiM6wBbSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.432 [XNIO-1 task-6] yZcytUH-RjOhIZiM6wBbSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.433 [XNIO-1 task-5] I-O6Q59CTkKGc2B4QPbqJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.433 [XNIO-1 task-6] yZcytUH-RjOhIZiM6wBbSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTY0MjRjMWQtODFhNC00ZmYxLTllYjctOWJkYzEwYjg5NmVhOnZBWFVtUzl3U3BPZGNpajd5QmJJNGc=", "Basic MTY0MjRjMWQtODFhNC00ZmYxLTllYjctOWJkYzEwYjg5NmVhOnZBWFVtUzl3U3BPZGNpajd5QmJJNGc=", authorization) +00:00:43.437 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:97e277f2 +00:00:43.439 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:97e277f2 +00:00:43.448 [XNIO-1 task-5] T4gYI5tpShODEq_BFfupzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.448 [XNIO-1 task-5] T4gYI5tpShODEq_BFfupzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.448 [XNIO-1 task-5] T4gYI5tpShODEq_BFfupzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.451 [XNIO-1 task-5] T4gYI5tpShODEq_BFfupzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.457 [XNIO-1 task-5] T4gYI5tpShODEq_BFfupzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.467 [XNIO-1 task-5] yu-9aplBT9CVUBRIhPdvEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.468 [XNIO-1 task-5] yu-9aplBT9CVUBRIhPdvEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.471 [XNIO-1 task-5] yu-9aplBT9CVUBRIhPdvEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.471 [XNIO-1 task-5] yu-9aplBT9CVUBRIhPdvEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.477 [XNIO-1 task-5] yu-9aplBT9CVUBRIhPdvEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.515 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eba3c2f1 +00:00:43.519 [XNIO-1 task-5] -AERQavTSIK6Ig4-EfKsQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.520 [XNIO-1 task-5] -AERQavTSIK6Ig4-EfKsQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.520 [XNIO-1 task-5] -AERQavTSIK6Ig4-EfKsQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmMwYzg5MzEtYjBmYi00YjcxLThkOGUtNWVhMzQ1NmVhNTA3Okt3cVJtSU10US1DUHJ5Uzk2OVZ4MVE=", "Basic NmMwYzg5MzEtYjBmYi00YjcxLThkOGUtNWVhMzQ1NmVhNTA3Okt3cVJtSU10US1DUHJ5Uzk2OVZ4MVE=", authorization) +00:00:43.521 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eba3c2f1 +00:00:43.525 [XNIO-1 task-6] yZcytUH-RjOhIZiM6wBbSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:43.526 [XNIO-1 task-6] yZcytUH-RjOhIZiM6wBbSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.526 [XNIO-1 task-6] yZcytUH-RjOhIZiM6wBbSQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.533 [XNIO-1 task-5] -2bxQE3RS1iAIyXquK0ldA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.534 [XNIO-1 task-5] -2bxQE3RS1iAIyXquK0ldA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.534 [XNIO-1 task-5] -2bxQE3RS1iAIyXquK0ldA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.535 [XNIO-1 task-5] -2bxQE3RS1iAIyXquK0ldA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.542 [XNIO-1 task-5] -2bxQE3RS1iAIyXquK0ldA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.548 [XNIO-1 task-6] w4R5aMooSROTudOzqD9OtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.548 [XNIO-1 task-6] w4R5aMooSROTudOzqD9OtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.548 [XNIO-1 task-6] w4R5aMooSROTudOzqD9OtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.549 [XNIO-1 task-6] w4R5aMooSROTudOzqD9OtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.554 [XNIO-1 task-6] w4R5aMooSROTudOzqD9OtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.559 [XNIO-1 task-6] 3bf2XyHtQWqdSk8m0e5x5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.560 [XNIO-1 task-6] 3bf2XyHtQWqdSk8m0e5x5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.561 [XNIO-1 task-6] 3bf2XyHtQWqdSk8m0e5x5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.561 [XNIO-1 task-6] 3bf2XyHtQWqdSk8m0e5x5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.568 [XNIO-1 task-6] 3bf2XyHtQWqdSk8m0e5x5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.573 [XNIO-1 task-6] XOag0MZERmOBJPvvOYK6LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.574 [XNIO-1 task-6] XOag0MZERmOBJPvvOYK6LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.575 [XNIO-1 task-6] XOag0MZERmOBJPvvOYK6LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.576 [XNIO-1 task-6] XOag0MZERmOBJPvvOYK6LA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:43.579 [XNIO-1 task-5] ovZa7Un8Rve0JxkDRp5sWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.579 [XNIO-1 task-5] ovZa7Un8Rve0JxkDRp5sWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.580 [XNIO-1 task-5] ovZa7Un8Rve0JxkDRp5sWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.580 [XNIO-1 task-5] ovZa7Un8Rve0JxkDRp5sWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmMwYzg5MzEtYjBmYi00YjcxLThkOGUtNWVhMzQ1NmVhNTA3Okt3cVJtSU10US1DUHJ5Uzk2OVZ4MVE=", "Basic NmMwYzg5MzEtYjBmYi00YjcxLThkOGUtNWVhMzQ1NmVhNTA3Okt3cVJtSU10US1DUHJ5Uzk2OVZ4MVE=", authorization) +00:00:43.589 [XNIO-1 task-5] ovZa7Un8Rve0JxkDRp5sWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.591 [XNIO-1 task-6] XOag0MZERmOBJPvvOYK6LA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:43.592 [XNIO-1 task-6] XOag0MZERmOBJPvvOYK6LA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.604 [XNIO-1 task-5] yTNvw7seQ0GaLUJzHMOcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.604 [XNIO-1 task-5] yTNvw7seQ0GaLUJzHMOcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.605 [XNIO-1 task-5] yTNvw7seQ0GaLUJzHMOcDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.609 [XNIO-1 task-5] yTNvw7seQ0GaLUJzHMOcDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.615 [XNIO-1 task-5] yTNvw7seQ0GaLUJzHMOcDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.620 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a67c9220-66cb-454e-be66-18368a8e20cb +00:00:43.620 [XNIO-1 task-6] j4Ww1rYNQCCTJQqMh-Jn1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.621 [XNIO-1 task-6] j4Ww1rYNQCCTJQqMh-Jn1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.621 [XNIO-1 task-6] j4Ww1rYNQCCTJQqMh-Jn1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:43.625 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a67c9220-66cb-454e-be66-18368a8e20cb +00:00:43.628 [XNIO-1 task-5] KOxB_pThS7WiKnLs8r0uFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.628 [XNIO-1 task-5] KOxB_pThS7WiKnLs8r0uFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.630 [XNIO-1 task-5] KOxB_pThS7WiKnLs8r0uFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.631 [XNIO-1 task-5] KOxB_pThS7WiKnLs8r0uFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:43.637 [XNIO-1 task-6] j4Ww1rYNQCCTJQqMh-Jn1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:43.637 [XNIO-1 task-6] j4Ww1rYNQCCTJQqMh-Jn1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.638 [XNIO-1 task-6] j4Ww1rYNQCCTJQqMh-Jn1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.653 [XNIO-1 task-5] pN0-pSGdTUCnz4mLeLH5LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.653 [XNIO-1 task-5] pN0-pSGdTUCnz4mLeLH5LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.654 [XNIO-1 task-5] pN0-pSGdTUCnz4mLeLH5LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.654 [XNIO-1 task-5] pN0-pSGdTUCnz4mLeLH5LQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.661 [XNIO-1 task-5] pN0-pSGdTUCnz4mLeLH5LQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.670 [XNIO-1 task-5] W084X0p6R6yDP86oA_4uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.670 [XNIO-1 task-5] W084X0p6R6yDP86oA_4uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.671 [XNIO-1 task-5] W084X0p6R6yDP86oA_4uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.672 [XNIO-1 task-5] W084X0p6R6yDP86oA_4uow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.678 [XNIO-1 task-5] W084X0p6R6yDP86oA_4uow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.686 [XNIO-1 task-5] Rhc0l2KpSfacnPtMJ7lbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.686 [XNIO-1 task-5] Rhc0l2KpSfacnPtMJ7lbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.687 [XNIO-1 task-5] Rhc0l2KpSfacnPtMJ7lbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.687 [XNIO-1 task-5] Rhc0l2KpSfacnPtMJ7lbfg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.689 [XNIO-1 task-6] Nq61Bz4QS2qf7-XvjTrzDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.690 [XNIO-1 task-6] Nq61Bz4QS2qf7-XvjTrzDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.690 [XNIO-1 task-6] Nq61Bz4QS2qf7-XvjTrzDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.691 [XNIO-1 task-6] Nq61Bz4QS2qf7-XvjTrzDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 97fddf87-a451-49ec-b166-5d41b0a30318 scope = null +00:00:43.697 [XNIO-1 task-5] Rhc0l2KpSfacnPtMJ7lbfg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.705 [XNIO-1 task-5] yZ9RnUceSM-YJcUUKew6BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.705 [XNIO-1 task-5] yZ9RnUceSM-YJcUUKew6BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.705 [XNIO-1 task-5] yZ9RnUceSM-YJcUUKew6BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.707 [XNIO-1 task-5] yZ9RnUceSM-YJcUUKew6BQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.711 [XNIO-1 task-6] Nq61Bz4QS2qf7-XvjTrzDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.711 [XNIO-1 task-4] HuzcCL3MTuas30MqCDX32w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.711 [XNIO-1 task-4] HuzcCL3MTuas30MqCDX32w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.712 [XNIO-1 task-4] HuzcCL3MTuas30MqCDX32w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.712 [XNIO-1 task-4] HuzcCL3MTuas30MqCDX32w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.712 [XNIO-1 task-4] HuzcCL3MTuas30MqCDX32w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 7j_4eJCzQLizxlfyHrVDiw redirectUri = http://localhost:8080/authorization +00:00:43.718 [XNIO-1 task-5] EuXocW0STFyUR3xmBw8m5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.718 [XNIO-1 task-5] EuXocW0STFyUR3xmBw8m5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.719 [XNIO-1 task-5] EuXocW0STFyUR3xmBw8m5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.719 [XNIO-1 task-5] EuXocW0STFyUR3xmBw8m5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.723 [XNIO-1 task-4] HuzcCL3MTuas30MqCDX32w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.725 [XNIO-1 task-5] EuXocW0STFyUR3xmBw8m5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.731 [XNIO-1 task-5] EU22uDm8SwiHu_qFJZ6vAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.731 [XNIO-1 task-5] EU22uDm8SwiHu_qFJZ6vAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.732 [XNIO-1 task-5] EU22uDm8SwiHu_qFJZ6vAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.732 [XNIO-1 task-5] EU22uDm8SwiHu_qFJZ6vAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:43.738 [XNIO-1 task-5] EU22uDm8SwiHu_qFJZ6vAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.746 [XNIO-1 task-5] HGfi-vq7S4-wCBfR1ApDQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.747 [XNIO-1 task-5] HGfi-vq7S4-wCBfR1ApDQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.747 [XNIO-1 task-5] HGfi-vq7S4-wCBfR1ApDQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.748 [XNIO-1 task-5] HGfi-vq7S4-wCBfR1ApDQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:43.754 [XNIO-1 task-5] HGfi-vq7S4-wCBfR1ApDQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.762 [XNIO-1 task-5] qTD_8S4TSd6qadJqZ-VnJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.762 [XNIO-1 task-5] qTD_8S4TSd6qadJqZ-VnJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.762 [XNIO-1 task-5] qTD_8S4TSd6qadJqZ-VnJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.763 [XNIO-1 task-5] qTD_8S4TSd6qadJqZ-VnJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmIwZWNlMjItNWYwYi00MzdhLWIwNTItNzZmNmFmYTIyMWYwOjNmbDRPSERaUXRLd3c0SVllRl9vS3c=", "Basic ZmIwZWNlMjItNWYwYi00MzdhLWIwNTItNzZmNmFmYTIyMWYwOjNmbDRPSERaUXRLd3c0SVllRl9vS3c=", authorization) +00:00:43.770 [XNIO-1 task-5] qTD_8S4TSd6qadJqZ-VnJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.780 [XNIO-1 task-5] j6HzOZUAQSKLD9VYGNabFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.781 [XNIO-1 task-5] j6HzOZUAQSKLD9VYGNabFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.781 [XNIO-1 task-5] j6HzOZUAQSKLD9VYGNabFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.782 [XNIO-1 task-5] j6HzOZUAQSKLD9VYGNabFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:43.788 [XNIO-1 task-5] j6HzOZUAQSKLD9VYGNabFA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.793 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6c0c8931-b0fb-4b71-8d8e-5ea3456ea507 +00:00:43.793 [XNIO-1 task-5] xtY7v1MlSQaekrra52ynAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.793 [XNIO-1 task-5] xtY7v1MlSQaekrra52ynAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.794 [XNIO-1 task-5] xtY7v1MlSQaekrra52ynAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.794 [XNIO-1 task-5] xtY7v1MlSQaekrra52ynAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.800 [XNIO-1 task-5] xtY7v1MlSQaekrra52ynAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.808 [XNIO-1 task-5] MZl7HnGAS26atdGVqYPFZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.808 [XNIO-1 task-5] MZl7HnGAS26atdGVqYPFZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.809 [XNIO-1 task-5] MZl7HnGAS26atdGVqYPFZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.809 [XNIO-1 task-5] MZl7HnGAS26atdGVqYPFZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.814 [XNIO-1 task-4] XtDqS664Sbaqg4DjBCjnEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.815 [XNIO-1 task-4] XtDqS664Sbaqg4DjBCjnEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.816 [XNIO-1 task-4] XtDqS664Sbaqg4DjBCjnEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.816 [XNIO-1 task-4] XtDqS664Sbaqg4DjBCjnEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:43.816 [XNIO-1 task-4] XtDqS664Sbaqg4DjBCjnEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = J-fNArX4Th-ziIic7G7gfA redirectUri = http://localhost:8080/authorization +00:00:43.826 [XNIO-1 task-5] lnPgJWiGRSCyUfyOxY5jkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.826 [XNIO-1 task-5] lnPgJWiGRSCyUfyOxY5jkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.827 [XNIO-1 task-5] lnPgJWiGRSCyUfyOxY5jkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.828 [XNIO-1 task-4] XtDqS664Sbaqg4DjBCjnEg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.829 [XNIO-1 task-4] XtDqS664Sbaqg4DjBCjnEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.831 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0cd97f9a-a4a5-4223-8cb9-1cb0821bbd14 +00:00:43.841 [XNIO-1 task-5] lnPgJWiGRSCyUfyOxY5jkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.855 [XNIO-1 task-4] zVyFYpIFSW2NALb_9xLmyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.855 [XNIO-1 task-4] zVyFYpIFSW2NALb_9xLmyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.856 [XNIO-1 task-4] zVyFYpIFSW2NALb_9xLmyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.856 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:97e277f2 +00:00:43.858 [XNIO-1 task-4] zVyFYpIFSW2NALb_9xLmyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTY3YzkyMjAtNjZjYi00NTRlLWJlNjYtMTgzNjhhOGUyMGNiOi1pb0xHczI0UVNDRDdQc2x3ZUpOSUE=", "Basic YTY3YzkyMjAtNjZjYi00NTRlLWJlNjYtMTgzNjhhOGUyMGNiOi1pb0xHczI0UVNDRDdQc2x3ZUpOSUE=", authorization) +00:00:43.858 [XNIO-1 task-5] mcn6-Df3QlS91Ip7_HHP8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.858 [XNIO-1 task-5] mcn6-Df3QlS91Ip7_HHP8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.859 [XNIO-1 task-5] mcn6-Df3QlS91Ip7_HHP8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.861 [XNIO-1 task-5] mcn6-Df3QlS91Ip7_HHP8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZggsGjStTMyAKgi9asdAog redirectUri = http://localhost:8080/authorization +00:00:43.872 [XNIO-1 task-4] zVyFYpIFSW2NALb_9xLmyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.880 [XNIO-1 task-4] O66ZBrTOTbiHjYow-3C1fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.880 [XNIO-1 task-4] O66ZBrTOTbiHjYow-3C1fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.881 [XNIO-1 task-4] O66ZBrTOTbiHjYow-3C1fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.882 [XNIO-1 task-4] O66ZBrTOTbiHjYow-3C1fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", authorization) +00:00:43.889 [XNIO-1 task-4] O66ZBrTOTbiHjYow-3C1fQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.893 [XNIO-1 task-5] mcn6-Df3QlS91Ip7_HHP8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:43.893 [XNIO-1 task-5] mcn6-Df3QlS91Ip7_HHP8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.899 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:699aed0f-9882-44a0-929a-651468602a84 +00:00:43.923 [XNIO-1 task-4] RQXuwoptTgefUGu2GBaSjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.923 [XNIO-1 task-4] RQXuwoptTgefUGu2GBaSjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.924 [XNIO-1 task-4] RQXuwoptTgefUGu2GBaSjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.925 [XNIO-1 task-4] RQXuwoptTgefUGu2GBaSjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.933 [XNIO-1 task-4] RQXuwoptTgefUGu2GBaSjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.942 [XNIO-1 task-4] gqP5pTBQRSeL2Zm0U1FoHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.942 [XNIO-1 task-4] gqP5pTBQRSeL2Zm0U1FoHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.942 [XNIO-1 task-4] gqP5pTBQRSeL2Zm0U1FoHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.944 [XNIO-1 task-4] gqP5pTBQRSeL2Zm0U1FoHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.953 [XNIO-1 task-4] gqP5pTBQRSeL2Zm0U1FoHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.960 [XNIO-1 task-4] hoiYiHYhSnyjQu8R24at3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.960 [XNIO-1 task-4] hoiYiHYhSnyjQu8R24at3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.960 [XNIO-1 task-4] hoiYiHYhSnyjQu8R24at3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.961 [XNIO-1 task-4] hoiYiHYhSnyjQu8R24at3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.970 [XNIO-1 task-4] hoiYiHYhSnyjQu8R24at3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.975 [XNIO-1 task-5] x-1bthOBRQWYf6Eii0i8Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.976 [XNIO-1 task-5] x-1bthOBRQWYf6Eii0i8Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.978 [XNIO-1 task-5] x-1bthOBRQWYf6Eii0i8Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.978 [XNIO-1 task-4] BeqbZGHXST6rgCUFRTP3Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.978 [XNIO-1 task-4] BeqbZGHXST6rgCUFRTP3Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.979 [XNIO-1 task-5] x-1bthOBRQWYf6Eii0i8Yg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = yyIywMJKROK4n6HUCThLRg redirectUri = http://localhost:8080/authorization +00:00:43.979 [XNIO-1 task-4] BeqbZGHXST6rgCUFRTP3Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:43.979 [XNIO-1 task-4] BeqbZGHXST6rgCUFRTP3Zg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:43.987 [XNIO-1 task-4] BeqbZGHXST6rgCUFRTP3Zg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:43.988 [XNIO-1 task-5] x-1bthOBRQWYf6Eii0i8Yg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:43.993 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:34995359-0a74-48a7-bab1-6ed1575cd2ce +00:00:43.994 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.994 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.995 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.995 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTY0MjRjMWQtODFhNC00ZmYxLTllYjctOWJkYzEwYjg5NmVhOnZBWFVtUzl3U3BPZGNpajd5QmJJNGc=", "Basic MTY0MjRjMWQtODFhNC00ZmYxLTllYjctOWJkYzEwYjg5NmVhOnZBWFVtUzl3U3BPZGNpajd5QmJJNGc=", authorization) +00:00:43.998 [XNIO-1 task-6] Q3I-X-L9RsybVuBxYyIZjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.999 [XNIO-1 task-6] Q3I-X-L9RsybVuBxYyIZjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:43.999 [XNIO-1 task-6] Q3I-X-L9RsybVuBxYyIZjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:43.999 [XNIO-1 task-6] Q3I-X-L9RsybVuBxYyIZjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:44.005 [XNIO-1 task-6] Q3I-X-L9RsybVuBxYyIZjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.010 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:82c3c92e-aa5e-4766-b049-9e8b3ecd7836 +00:00:44.012 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw INFO com.networknt.config.Config loadJsonMapConfigWithSpecificConfigLoader - Trying to load status with extension yaml, yml or json by using default loading method. +00:00:44.013 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw INFO com.networknt.config.Config getConfigStream - Unable to load config from externalized folder for status.yml in /config +00:00:44.013 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw INFO com.networknt.config.Config getConfigStream - Config loaded from default folder for status.yml +00:00:44.043 [XNIO-1 task-6] xZhy-vC7Q7WBuQN0FWjgQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.043 [XNIO-1 task-6] xZhy-vC7Q7WBuQN0FWjgQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.044 [XNIO-1 task-6] xZhy-vC7Q7WBuQN0FWjgQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.044 [XNIO-1 task-6] xZhy-vC7Q7WBuQN0FWjgQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.050 [XNIO-1 task-6] xZhy-vC7Q7WBuQN0FWjgQg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.057 [XNIO-1 task-6] EpmvS41bRoencw9Bcqwzag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.057 [XNIO-1 task-6] EpmvS41bRoencw9Bcqwzag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.058 [XNIO-1 task-6] EpmvS41bRoencw9Bcqwzag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.060 [XNIO-1 task-6] EpmvS41bRoencw9Bcqwzag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:44.066 [XNIO-1 task-6] EpmvS41bRoencw9Bcqwzag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.066 [XNIO-1 task-4] LT2778FARCCQdHUfaxZzYw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:44.082 [XNIO-1 task-6] Agcb98bxTEi5-eVm7t8yBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.083 [XNIO-1 task-6] Agcb98bxTEi5-eVm7t8yBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.084 [XNIO-1 task-6] Agcb98bxTEi5-eVm7t8yBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.085 [XNIO-1 task-6] Agcb98bxTEi5-eVm7t8yBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.092 [XNIO-1 task-6] Agcb98bxTEi5-eVm7t8yBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.102 [XNIO-1 task-6] rmuPVK9WSJSFvbBvQm57Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.105 [XNIO-1 task-6] rmuPVK9WSJSFvbBvQm57Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.106 [XNIO-1 task-6] rmuPVK9WSJSFvbBvQm57Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.107 [XNIO-1 task-6] rmuPVK9WSJSFvbBvQm57Ow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.114 [XNIO-1 task-6] rmuPVK9WSJSFvbBvQm57Ow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.125 [XNIO-1 task-6] IjvjbrIGRsmFKJRJzAmnCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.125 [XNIO-1 task-6] IjvjbrIGRsmFKJRJzAmnCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.126 [XNIO-1 task-6] IjvjbrIGRsmFKJRJzAmnCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.128 [XNIO-1 task-6] IjvjbrIGRsmFKJRJzAmnCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:44.135 [XNIO-1 task-6] IjvjbrIGRsmFKJRJzAmnCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.138 [XNIO-1 task-6] cP8AQfyvQRyw0XY9m0EvAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.139 [XNIO-1 task-6] cP8AQfyvQRyw0XY9m0EvAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.139 [XNIO-1 task-6] cP8AQfyvQRyw0XY9m0EvAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.140 [XNIO-1 task-6] cP8AQfyvQRyw0XY9m0EvAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:44.143 [XNIO-1 task-4] T5fuJ4VCTX-0-4t76xLqMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.145 [XNIO-1 task-4] T5fuJ4VCTX-0-4t76xLqMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.146 [XNIO-1 task-4] T5fuJ4VCTX-0-4t76xLqMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.148 [XNIO-1 task-6] cP8AQfyvQRyw0XY9m0EvAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.150 [XNIO-1 task-6] cP8AQfyvQRyw0XY9m0EvAA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.151 [XNIO-1 task-4] T5fuJ4VCTX-0-4t76xLqMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.160 [XNIO-1 task-4] T5fuJ4VCTX-0-4t76xLqMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.168 [XNIO-1 task-4] wGEkAe9cTRG7E3MyFhtyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.168 [XNIO-1 task-4] wGEkAe9cTRG7E3MyFhtyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.168 [XNIO-1 task-4] wGEkAe9cTRG7E3MyFhtyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.169 [XNIO-1 task-4] wGEkAe9cTRG7E3MyFhtyJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.176 [XNIO-1 task-4] wGEkAe9cTRG7E3MyFhtyJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.190 [XNIO-1 task-4] MK_v9kCVSOiZHRIvT35DkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.190 [XNIO-1 task-4] MK_v9kCVSOiZHRIvT35DkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.191 [XNIO-1 task-4] MK_v9kCVSOiZHRIvT35DkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.191 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:97e277f2 +00:00:44.191 [XNIO-1 task-6] MNK7cK4DSwCrbPjiJexzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.192 [XNIO-1 task-6] MNK7cK4DSwCrbPjiJexzHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.192 [XNIO-1 task-6] MNK7cK4DSwCrbPjiJexzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.191 [XNIO-1 task-4] MK_v9kCVSOiZHRIvT35DkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YDIPyeYhT-66H5m4VzJoHQ redirectUri = http://localhost:8080/authorization +00:00:44.193 [XNIO-1 task-6] MNK7cK4DSwCrbPjiJexzHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.203 [XNIO-1 task-6] MNK7cK4DSwCrbPjiJexzHg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.211 [XNIO-1 task-6] _NXYudhJQ9aCvbHXyu9PbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.212 [XNIO-1 task-6] _NXYudhJQ9aCvbHXyu9PbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.212 [XNIO-1 task-6] _NXYudhJQ9aCvbHXyu9PbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.213 [XNIO-1 task-6] _NXYudhJQ9aCvbHXyu9PbQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.218 [XNIO-1 task-6] _NXYudhJQ9aCvbHXyu9PbQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.223 [XNIO-1 task-6] U5moT_mAR8OpW3I6-CELnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.223 [XNIO-1 task-6] U5moT_mAR8OpW3I6-CELnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.224 [XNIO-1 task-6] U5moT_mAR8OpW3I6-CELnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.224 [XNIO-1 task-6] U5moT_mAR8OpW3I6-CELnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.230 [XNIO-1 task-6] U5moT_mAR8OpW3I6-CELnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.238 [XNIO-1 task-6] uv6X4doDQea-qUDZkz0eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.238 [XNIO-1 task-6] uv6X4doDQea-qUDZkz0eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.239 [XNIO-1 task-6] uv6X4doDQea-qUDZkz0eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.239 [XNIO-1 task-4] MK_v9kCVSOiZHRIvT35DkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.239 [XNIO-1 task-6] uv6X4doDQea-qUDZkz0eKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", authorization) +00:00:44.244 [XNIO-1 task-6] uv6X4doDQea-qUDZkz0eKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.250 [XNIO-1 task-6] VHYur41nSxie7z83wIc6Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.250 [XNIO-1 task-6] VHYur41nSxie7z83wIc6Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.252 [XNIO-1 task-6] VHYur41nSxie7z83wIc6Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.252 [XNIO-1 task-6] VHYur41nSxie7z83wIc6Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", authorization) +00:00:44.258 [XNIO-1 task-6] VHYur41nSxie7z83wIc6Pw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.272 [XNIO-1 task-6] njlY6CkXRMqw-UHJxdT1UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.272 [XNIO-1 task-6] njlY6CkXRMqw-UHJxdT1UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.272 [XNIO-1 task-6] njlY6CkXRMqw-UHJxdT1UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.273 [XNIO-1 task-6] njlY6CkXRMqw-UHJxdT1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", authorization) +00:00:44.278 [XNIO-1 task-6] njlY6CkXRMqw-UHJxdT1UQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.283 [XNIO-1 task-6] zJT52CRPTL2Rtz0rdP81DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.283 [XNIO-1 task-6] zJT52CRPTL2Rtz0rdP81DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.284 [XNIO-1 task-6] zJT52CRPTL2Rtz0rdP81DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.284 [XNIO-1 task-6] zJT52CRPTL2Rtz0rdP81DA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", authorization) +00:00:44.289 [XNIO-1 task-6] zJT52CRPTL2Rtz0rdP81DA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.294 [XNIO-1 task-6] AGZpaxNVSLq9h2lhYpVMaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.294 [XNIO-1 task-6] AGZpaxNVSLq9h2lhYpVMaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.295 [XNIO-1 task-6] AGZpaxNVSLq9h2lhYpVMaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.296 [XNIO-1 task-6] AGZpaxNVSLq9h2lhYpVMaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", authorization) +00:00:44.304 [XNIO-1 task-6] AGZpaxNVSLq9h2lhYpVMaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.316 [XNIO-1 task-6] yRTWkgV3SzqoaZe_esTILQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.316 [XNIO-1 task-6] yRTWkgV3SzqoaZe_esTILQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.317 [XNIO-1 task-6] yRTWkgV3SzqoaZe_esTILQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.317 [XNIO-1 task-6] yRTWkgV3SzqoaZe_esTILQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", authorization) +00:00:44.337 [XNIO-1 task-4] eMBJDPmtQdijTlOeaNimsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.337 [XNIO-1 task-4] eMBJDPmtQdijTlOeaNimsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.337 [XNIO-1 task-4] eMBJDPmtQdijTlOeaNimsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.339 [XNIO-1 task-4] eMBJDPmtQdijTlOeaNimsA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", authorization) +00:00:44.345 [XNIO-1 task-4] eMBJDPmtQdijTlOeaNimsA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.349 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ca439636-b75e-4387-9bad-1c82948a7f30 +00:00:44.351 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ca439636-b75e-4387-9bad-1c82948a7f30 +00:00:44.353 [XNIO-1 task-6] yRTWkgV3SzqoaZe_esTILQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:44.357 [XNIO-1 task-4] Zh0SbKn8SAODoC-nIdTJZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.358 [XNIO-1 task-4] Zh0SbKn8SAODoC-nIdTJZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.358 [XNIO-1 task-6] FXOHTp59Q0i8zv6vtVVpPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.358 [XNIO-1 task-6] FXOHTp59Q0i8zv6vtVVpPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.358 [XNIO-1 task-4] Zh0SbKn8SAODoC-nIdTJZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.358 [XNIO-1 task-6] FXOHTp59Q0i8zv6vtVVpPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.360 [XNIO-1 task-4] Zh0SbKn8SAODoC-nIdTJZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.362 [XNIO-1 task-6] FXOHTp59Q0i8zv6vtVVpPg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6SO8VD16T3CLquBm5Teo9A redirectUri = http://localhost:8080/authorization +00:00:44.367 [XNIO-1 task-4] Zh0SbKn8SAODoC-nIdTJZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.375 [XNIO-1 task-4] dxTavyI_TBemkFsEIffr4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.376 [XNIO-1 task-6] FXOHTp59Q0i8zv6vtVVpPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.376 [XNIO-1 task-4] dxTavyI_TBemkFsEIffr4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.376 [XNIO-1 task-4] dxTavyI_TBemkFsEIffr4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.377 [XNIO-1 task-4] dxTavyI_TBemkFsEIffr4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:44.379 [XNIO-1 task-5] qDGgdOsMRp-JnoCIGw1agg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.379 [XNIO-1 task-5] qDGgdOsMRp-JnoCIGw1agg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.381 [XNIO-1 task-5] qDGgdOsMRp-JnoCIGw1agg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.381 [XNIO-1 task-5] qDGgdOsMRp-JnoCIGw1agg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:44.390 [XNIO-1 task-4] dxTavyI_TBemkFsEIffr4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.394 [XNIO-1 task-5] qDGgdOsMRp-JnoCIGw1agg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.401 [XNIO-1 task-4] dxTavyI_TBemkFsEIffr4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.404 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.413 [XNIO-1 task-4] DtdcbbQkQCOIYcCA62NCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.413 [XNIO-1 task-4] DtdcbbQkQCOIYcCA62NCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.414 [XNIO-1 task-4] DtdcbbQkQCOIYcCA62NCng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.414 [XNIO-1 task-4] DtdcbbQkQCOIYcCA62NCng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.420 [XNIO-1 task-4] DtdcbbQkQCOIYcCA62NCng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.425 [XNIO-1 task-4] GYS0msY2Tmqk_shaMhm-Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.425 [XNIO-1 task-4] GYS0msY2Tmqk_shaMhm-Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.426 [XNIO-1 task-4] GYS0msY2Tmqk_shaMhm-Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.426 [XNIO-1 task-4] GYS0msY2Tmqk_shaMhm-Rw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.432 [XNIO-1 task-4] GYS0msY2Tmqk_shaMhm-Rw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.442 [XNIO-1 task-4] IACleNTJQ42ifinkOXIN1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.442 [XNIO-1 task-4] IACleNTJQ42ifinkOXIN1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.442 [XNIO-1 task-4] IACleNTJQ42ifinkOXIN1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.443 [XNIO-1 task-4] IACleNTJQ42ifinkOXIN1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BswHYaa6Rqqmym47yB8ofQ redirectUri = http://localhost:8080/authorization +00:00:44.445 [XNIO-1 task-5] 9mik-2xxQ52t6MprG8yz1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.445 [XNIO-1 task-5] 9mik-2xxQ52t6MprG8yz1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.445 [XNIO-1 task-5] 9mik-2xxQ52t6MprG8yz1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.446 [XNIO-1 task-5] 9mik-2xxQ52t6MprG8yz1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.450 [XNIO-1 task-4] IACleNTJQ42ifinkOXIN1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.451 [XNIO-1 task-5] 9mik-2xxQ52t6MprG8yz1A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.458 [XNIO-1 task-5] WA44DjiYSWSrBRO5-F7ipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.459 [XNIO-1 task-5] WA44DjiYSWSrBRO5-F7ipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.460 [XNIO-1 task-5] WA44DjiYSWSrBRO5-F7ipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.460 [XNIO-1 task-5] WA44DjiYSWSrBRO5-F7ipg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODJjM2M5MmUtYWE1ZS00NzY2LWIwNDktOWU4YjNlY2Q3ODM2OnhZS25qMlYxUUxhcnlyVjJsd0M2LXc=", "Basic ODJjM2M5MmUtYWE1ZS00NzY2LWIwNDktOWU4YjNlY2Q3ODM2OnhZS25qMlYxUUxhcnlyVjJsd0M2LXc=", authorization) +00:00:44.463 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:28703ac0-b29f-43c3-bb47-d64126e5b976 +00:00:44.467 [XNIO-1 task-5] WA44DjiYSWSrBRO5-F7ipg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.473 [XNIO-1 task-5] bn3JkBpEQQOC_wRKTzUFug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.474 [XNIO-1 task-5] bn3JkBpEQQOC_wRKTzUFug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.485 [XNIO-1 task-5] bn3JkBpEQQOC_wRKTzUFug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.493 [XNIO-1 task-5] bn3JkBpEQQOC_wRKTzUFug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2I2Y2VkYzYtYzRhYi00MjRjLTk3ZjktZWYxMTVhNmU1MTMxOmNIYkxjdGlNUlo2VXRJa3dDdDBjTmc=", "Basic M2I2Y2VkYzYtYzRhYi00MjRjLTk3ZjktZWYxMTVhNmU1MTMxOmNIYkxjdGlNUlo2VXRJa3dDdDBjTmc=", authorization) +00:00:44.501 [XNIO-1 task-5] bn3JkBpEQQOC_wRKTzUFug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.502 [XNIO-1 task-4] yEfryfy9RwaCHsaF1yAdwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.502 [XNIO-1 task-4] yEfryfy9RwaCHsaF1yAdwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.503 [XNIO-1 task-4] yEfryfy9RwaCHsaF1yAdwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.503 [XNIO-1 task-4] yEfryfy9RwaCHsaF1yAdwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:44.512 [XNIO-1 task-5] QL78II_xTvibZSh0vCfUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.514 [XNIO-1 task-5] QL78II_xTvibZSh0vCfUeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.514 [XNIO-1 task-5] QL78II_xTvibZSh0vCfUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.515 [XNIO-1 task-5] QL78II_xTvibZSh0vCfUeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", authorization) +00:00:44.515 [XNIO-1 task-6] vJ9M6N0tS76jX9jEkOL4rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.515 [XNIO-1 task-6] vJ9M6N0tS76jX9jEkOL4rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.515 [XNIO-1 task-4] yEfryfy9RwaCHsaF1yAdwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.516 [XNIO-1 task-6] vJ9M6N0tS76jX9jEkOL4rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.516 [XNIO-1 task-6] vJ9M6N0tS76jX9jEkOL4rw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:44.520 [XNIO-1 task-5] QL78II_xTvibZSh0vCfUeg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.529 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:93b3fc66-8d9a-443b-8765-ca34e3bc2ea1 +00:00:44.529 [XNIO-1 task-6] vJ9M6N0tS76jX9jEkOL4rw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.531 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:65f237fb-d927-4072-bf5b-78bbd34e6a68 +00:00:44.532 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:93b3fc66-8d9a-443b-8765-ca34e3bc2ea1 +00:00:44.534 [XNIO-1 task-5] OopXVlIJQom8nM0AO0gsgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.536 [XNIO-1 task-5] OopXVlIJQom8nM0AO0gsgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.537 [XNIO-1 task-5] OopXVlIJQom8nM0AO0gsgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.537 [XNIO-1 task-5] OopXVlIJQom8nM0AO0gsgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", authorization) +00:00:44.545 [XNIO-1 task-5] OopXVlIJQom8nM0AO0gsgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.565 [XNIO-1 task-4] pRLvY7GES12uBlBHvG1hPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.565 [XNIO-1 task-4] pRLvY7GES12uBlBHvG1hPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.565 [XNIO-1 task-4] pRLvY7GES12uBlBHvG1hPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.566 [XNIO-1 task-4] pRLvY7GES12uBlBHvG1hPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:44.566 [XNIO-1 task-6] 1I0BmEI9TYyR3DaNwKx_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.566 [XNIO-1 task-6] 1I0BmEI9TYyR3DaNwKx_PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.567 [XNIO-1 task-6] 1I0BmEI9TYyR3DaNwKx_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.567 [XNIO-1 task-6] 1I0BmEI9TYyR3DaNwKx_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", authorization) +00:00:44.574 [XNIO-1 task-6] 1I0BmEI9TYyR3DaNwKx_PA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.579 [XNIO-1 task-4] pRLvY7GES12uBlBHvG1hPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.580 [XNIO-1 task-6] 1hSlxXP3Rm6o_L4hmSvA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.580 [XNIO-1 task-6] 1hSlxXP3Rm6o_L4hmSvA9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.581 [XNIO-1 task-6] 1hSlxXP3Rm6o_L4hmSvA9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.581 [XNIO-1 task-6] 1hSlxXP3Rm6o_L4hmSvA9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:44.584 [XNIO-1 task-5] lP_xmlMCTgG1dsNxKpAzpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.585 [XNIO-1 task-5] lP_xmlMCTgG1dsNxKpAzpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.585 [XNIO-1 task-5] lP_xmlMCTgG1dsNxKpAzpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.585 [XNIO-1 task-5] lP_xmlMCTgG1dsNxKpAzpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:44.589 [XNIO-1 task-6] 1hSlxXP3Rm6o_L4hmSvA9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.597 [XNIO-1 task-6] 33Neu3-gS0mM6E_WL3OjIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.597 [XNIO-1 task-6] 33Neu3-gS0mM6E_WL3OjIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.598 [XNIO-1 task-6] 33Neu3-gS0mM6E_WL3OjIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.599 [XNIO-1 task-6] 33Neu3-gS0mM6E_WL3OjIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", authorization) +00:00:44.601 [XNIO-1 task-5] lP_xmlMCTgG1dsNxKpAzpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:44.605 [XNIO-1 task-5] lP_xmlMCTgG1dsNxKpAzpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.606 [XNIO-1 task-6] 33Neu3-gS0mM6E_WL3OjIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.616 [XNIO-1 task-5] XFfCUag-TX6wehLZaCGkUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.616 [XNIO-1 task-5] XFfCUag-TX6wehLZaCGkUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.617 [XNIO-1 task-5] XFfCUag-TX6wehLZaCGkUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.617 [XNIO-1 task-5] XFfCUag-TX6wehLZaCGkUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.619 [XNIO-1 task-6] Ngkz3X9WRmaH92syoAhCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.620 [XNIO-1 task-6] Ngkz3X9WRmaH92syoAhCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.620 [XNIO-1 task-6] Ngkz3X9WRmaH92syoAhCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.621 [XNIO-1 task-6] Ngkz3X9WRmaH92syoAhCVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4d7fc4d5-77aa-4c56-bf9e-34d627d749ab scope = null +00:00:44.624 [XNIO-1 task-5] XFfCUag-TX6wehLZaCGkUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.627 [XNIO-1 task-5] Sy3Ex0bpScuApE_L5Gjixg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.627 [XNIO-1 task-5] Sy3Ex0bpScuApE_L5Gjixg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.628 [XNIO-1 task-5] Sy3Ex0bpScuApE_L5Gjixg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.628 [XNIO-1 task-5] Sy3Ex0bpScuApE_L5Gjixg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = A4qQsZciTIe9NLZXfqjunw redirectUri = http://localhost:8080/authorization +00:00:44.632 [XNIO-1 task-4] Xx7-3YRgR5mwWF1xL-cCKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.632 [XNIO-1 task-4] Xx7-3YRgR5mwWF1xL-cCKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.632 [XNIO-1 task-4] Xx7-3YRgR5mwWF1xL-cCKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.633 [XNIO-1 task-4] Xx7-3YRgR5mwWF1xL-cCKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.633 [XNIO-1 task-6] Ngkz3X9WRmaH92syoAhCVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.636 [XNIO-1 task-5] Sy3Ex0bpScuApE_L5Gjixg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:44.638 [XNIO-1 task-4] Xx7-3YRgR5mwWF1xL-cCKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.650 [XNIO-1 task-4] fGcOhK7DQXyan3WgBAZY2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.650 [XNIO-1 task-4] fGcOhK7DQXyan3WgBAZY2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.650 [XNIO-1 task-4] fGcOhK7DQXyan3WgBAZY2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.651 [XNIO-1 task-4] fGcOhK7DQXyan3WgBAZY2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.658 [XNIO-1 task-4] fGcOhK7DQXyan3WgBAZY2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.660 [XNIO-1 task-5] kJM6n11dQK2JgjcaWlsbxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.660 [XNIO-1 task-5] kJM6n11dQK2JgjcaWlsbxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.660 [XNIO-1 task-5] kJM6n11dQK2JgjcaWlsbxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.661 [XNIO-1 task-5] kJM6n11dQK2JgjcaWlsbxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PpUlhhuFRZiA8eV05eOXyw redirectUri = http://localhost:8080/authorization +00:00:44.664 [XNIO-1 task-4] mLQNNZOrRzCJOSwuZjFjdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.664 [XNIO-1 task-4] mLQNNZOrRzCJOSwuZjFjdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.664 [XNIO-1 task-4] mLQNNZOrRzCJOSwuZjFjdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.664 [XNIO-1 task-4] mLQNNZOrRzCJOSwuZjFjdA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.669 [XNIO-1 task-6] hfqrGASjTuKPkK_XpDXWbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.669 [XNIO-1 task-6] hfqrGASjTuKPkK_XpDXWbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.669 [XNIO-1 task-5] kJM6n11dQK2JgjcaWlsbxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:44.670 [XNIO-1 task-5] kJM6n11dQK2JgjcaWlsbxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.670 [XNIO-1 task-6] hfqrGASjTuKPkK_XpDXWbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:44.670 [XNIO-1 task-4] mLQNNZOrRzCJOSwuZjFjdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.675 [XNIO-1 task-4] mNSojS8PR6qMJ8MdWy_q0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.675 [XNIO-1 task-4] mNSojS8PR6qMJ8MdWy_q0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.676 [XNIO-1 task-4] mNSojS8PR6qMJ8MdWy_q0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.677 [XNIO-1 task-4] mNSojS8PR6qMJ8MdWy_q0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", authorization) +00:00:44.683 [XNIO-1 task-4] mNSojS8PR6qMJ8MdWy_q0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.685 [XNIO-1 task-6] hfqrGASjTuKPkK_XpDXWbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.689 [XNIO-1 task-5] zuC-fEOcTKuw4LhPlSXuFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.689 [XNIO-1 task-5] zuC-fEOcTKuw4LhPlSXuFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.690 [XNIO-1 task-5] zuC-fEOcTKuw4LhPlSXuFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.690 [XNIO-1 task-5] zuC-fEOcTKuw4LhPlSXuFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", authorization) +00:00:44.695 [XNIO-1 task-5] zuC-fEOcTKuw4LhPlSXuFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.702 [XNIO-1 task-6] LjITLuILQGKACdIoBmsUDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.702 [XNIO-1 task-6] LjITLuILQGKACdIoBmsUDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.703 [XNIO-1 task-6] LjITLuILQGKACdIoBmsUDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.703 [XNIO-1 task-6] LjITLuILQGKACdIoBmsUDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzFhMTRhM2ItYThhNi00YTQzLTk0ZjItYjgyZDFiZTFiZmNlOmxYVVpPd3NDU2d5bVZUd0ZnTzlPQVE=", "Basic YzFhMTRhM2ItYThhNi00YTQzLTk0ZjItYjgyZDFiZTFiZmNlOmxYVVpPd3NDU2d5bVZUd0ZnTzlPQVE=", authorization) +00:00:44.716 [XNIO-1 task-6] LjITLuILQGKACdIoBmsUDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.727 [XNIO-1 task-6] kdcsZSlwR0CyOyO1CfVLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.727 [XNIO-1 task-6] kdcsZSlwR0CyOyO1CfVLjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.727 [XNIO-1 task-6] kdcsZSlwR0CyOyO1CfVLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.728 [XNIO-1 task-6] kdcsZSlwR0CyOyO1CfVLjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:44.730 [XNIO-1 task-5] Q3Z10GpjQh6yukrk03i0sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.730 [XNIO-1 task-5] Q3Z10GpjQh6yukrk03i0sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.730 [XNIO-1 task-5] Q3Z10GpjQh6yukrk03i0sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.731 [XNIO-1 task-5] Q3Z10GpjQh6yukrk03i0sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2E0Mzk2MzYtYjc1ZS00Mzg3LTliYWQtMWM4Mjk0OGE3ZjMwOl8tOEdIQjFNUXRXSzNDUUpONzY0bHc=", "Basic Y2E0Mzk2MzYtYjc1ZS00Mzg3LTliYWQtMWM4Mjk0OGE3ZjMwOl8tOEdIQjFNUXRXSzNDUUpONzY0bHc=", authorization) +00:00:44.734 [XNIO-1 task-6] kdcsZSlwR0CyOyO1CfVLjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:44.735 [XNIO-1 task-6] kdcsZSlwR0CyOyO1CfVLjA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.738 [XNIO-1 task-5] Q3Z10GpjQh6yukrk03i0sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.748 [XNIO-1 task-6] ZSj5H46JTD2LaqUd_av7bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.749 [XNIO-1 task-6] ZSj5H46JTD2LaqUd_av7bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.749 [XNIO-1 task-6] ZSj5H46JTD2LaqUd_av7bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.749 [XNIO-1 task-6] ZSj5H46JTD2LaqUd_av7bA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.750 [XNIO-1 task-5] OboDSqXBRlOeOGZ6q6Pygw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.750 [XNIO-1 task-5] OboDSqXBRlOeOGZ6q6Pygw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.751 [XNIO-1 task-5] OboDSqXBRlOeOGZ6q6Pygw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.751 [XNIO-1 task-5] OboDSqXBRlOeOGZ6q6Pygw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LeNL-AlsT7erUezMEgUOWQ redirectUri = http://localhost:8080/authorization +00:00:44.754 [XNIO-1 task-6] ZSj5H46JTD2LaqUd_av7bA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.759 [XNIO-1 task-5] OboDSqXBRlOeOGZ6q6Pygw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.761 [XNIO-1 task-6] gF0C_IUmR8yAOLYva0C8Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.761 [XNIO-1 task-6] gF0C_IUmR8yAOLYva0C8Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.761 [XNIO-1 task-6] gF0C_IUmR8yAOLYva0C8Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.762 [XNIO-1 task-6] gF0C_IUmR8yAOLYva0C8Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2E0Mzk2MzYtYjc1ZS00Mzg3LTliYWQtMWM4Mjk0OGE3ZjMwOl8tOEdIQjFNUXRXSzNDUUpONzY0bHc=", "Basic Y2E0Mzk2MzYtYjc1ZS00Mzg3LTliYWQtMWM4Mjk0OGE3ZjMwOl8tOEdIQjFNUXRXSzNDUUpONzY0bHc=", authorization) +00:00:44.767 [XNIO-1 task-6] gF0C_IUmR8yAOLYva0C8Hw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.775 [XNIO-1 task-6] fhGa-9NeSDeUZyX000k6OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.775 [XNIO-1 task-6] fhGa-9NeSDeUZyX000k6OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.775 [XNIO-1 task-6] fhGa-9NeSDeUZyX000k6OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.776 [XNIO-1 task-6] fhGa-9NeSDeUZyX000k6OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:44.781 [XNIO-1 task-6] fhGa-9NeSDeUZyX000k6OQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.789 [XNIO-1 task-6] _MfpyCWDSJa2N-c_ldrvOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.789 [XNIO-1 task-6] _MfpyCWDSJa2N-c_ldrvOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.789 [XNIO-1 task-6] _MfpyCWDSJa2N-c_ldrvOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.790 [XNIO-1 task-6] _MfpyCWDSJa2N-c_ldrvOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:44.796 [XNIO-1 task-6] _MfpyCWDSJa2N-c_ldrvOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.804 [XNIO-1 task-5] STZrgtTpSTikyOCWZEPR_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.805 [XNIO-1 task-5] STZrgtTpSTikyOCWZEPR_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.805 [XNIO-1 task-5] STZrgtTpSTikyOCWZEPR_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.805 [XNIO-1 task-5] STZrgtTpSTikyOCWZEPR_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:44.813 [XNIO-1 task-5] STZrgtTpSTikyOCWZEPR_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.822 [XNIO-1 task-5] NXNbB5VwQLmcp8X683v6fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.822 [XNIO-1 task-5] NXNbB5VwQLmcp8X683v6fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.823 [XNIO-1 task-5] NXNbB5VwQLmcp8X683v6fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.823 [XNIO-1 task-5] NXNbB5VwQLmcp8X683v6fg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:44.830 [XNIO-1 task-6] -QqrhaWDQNqVykdsPv7W9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.830 [XNIO-1 task-6] -QqrhaWDQNqVykdsPv7W9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.831 [XNIO-1 task-6] -QqrhaWDQNqVykdsPv7W9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.831 [XNIO-1 task-5] NXNbB5VwQLmcp8X683v6fg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.831 [XNIO-1 task-6] -QqrhaWDQNqVykdsPv7W9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:44.836 [XNIO-1 task-5] PWNyn5RzSs-NF626S4P_xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.837 [XNIO-1 task-5] PWNyn5RzSs-NF626S4P_xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.837 [XNIO-1 task-5] PWNyn5RzSs-NF626S4P_xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.838 [XNIO-1 task-5] PWNyn5RzSs-NF626S4P_xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:44.840 [XNIO-1 task-6] -QqrhaWDQNqVykdsPv7W9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:44.841 [XNIO-1 task-6] -QqrhaWDQNqVykdsPv7W9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.844 [XNIO-1 task-5] PWNyn5RzSs-NF626S4P_xg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.850 [XNIO-1 task-5] 8aHSeeCIQO-CISYlTvj_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.850 [XNIO-1 task-5] 8aHSeeCIQO-CISYlTvj_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.851 [XNIO-1 task-5] 8aHSeeCIQO-CISYlTvj_7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.851 [XNIO-1 task-5] 8aHSeeCIQO-CISYlTvj_7w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.857 [XNIO-1 task-5] 8aHSeeCIQO-CISYlTvj_7w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.870 [XNIO-1 task-6] heYO49gTQlGNHz3AUAap0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.870 [XNIO-1 task-6] heYO49gTQlGNHz3AUAap0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.871 [XNIO-1 task-6] heYO49gTQlGNHz3AUAap0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.871 [XNIO-1 task-6] heYO49gTQlGNHz3AUAap0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.879 [XNIO-1 task-6] heYO49gTQlGNHz3AUAap0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.885 [XNIO-1 task-6] 69Rg37qnSZqoIVKTtRj-iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.885 [XNIO-1 task-6] 69Rg37qnSZqoIVKTtRj-iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.885 [XNIO-1 task-6] 69Rg37qnSZqoIVKTtRj-iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.886 [XNIO-1 task-6] 69Rg37qnSZqoIVKTtRj-iw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.892 [XNIO-1 task-6] 69Rg37qnSZqoIVKTtRj-iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.893 [XNIO-1 task-6] 69Rg37qnSZqoIVKTtRj-iw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.893 [XNIO-1 task-5] KDBkNrmQRl2p6dPtZs3IqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.894 [XNIO-1 task-5] KDBkNrmQRl2p6dPtZs3IqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.894 [XNIO-1 task-5] KDBkNrmQRl2p6dPtZs3IqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BPrIAY3cQjS9HPkacexvEg redirectUri = http://localhost:8080/authorization +00:00:44.908 [XNIO-1 task-6] a2lPfpB1SIm1OE8AO843dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.908 [XNIO-1 task-6] a2lPfpB1SIm1OE8AO843dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.909 [XNIO-1 task-6] a2lPfpB1SIm1OE8AO843dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.909 [XNIO-1 task-6] a2lPfpB1SIm1OE8AO843dA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.917 [XNIO-1 task-6] a2lPfpB1SIm1OE8AO843dA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.919 [XNIO-1 task-5] KDBkNrmQRl2p6dPtZs3IqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.925 [XNIO-1 task-6] xPLGxYjyQkqVV0NSi0FWoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.925 [XNIO-1 task-6] xPLGxYjyQkqVV0NSi0FWoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.925 [XNIO-1 task-6] xPLGxYjyQkqVV0NSi0FWoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.926 [XNIO-1 task-6] xPLGxYjyQkqVV0NSi0FWoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:44.932 [XNIO-1 task-6] xPLGxYjyQkqVV0NSi0FWoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.940 [XNIO-1 task-6] 7U7uvXcAQmCqnMJ0szOcQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.941 [XNIO-1 task-6] 7U7uvXcAQmCqnMJ0szOcQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.941 [XNIO-1 task-6] 7U7uvXcAQmCqnMJ0szOcQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.941 [XNIO-1 task-6] 7U7uvXcAQmCqnMJ0szOcQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:44.950 [XNIO-1 task-6] 7U7uvXcAQmCqnMJ0szOcQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.959 [XNIO-1 task-6] cFsa43uJRZyGx7FOj3DiZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.959 [XNIO-1 task-6] cFsa43uJRZyGx7FOj3DiZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.960 [XNIO-1 task-6] cFsa43uJRZyGx7FOj3DiZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.961 [XNIO-1 task-6] cFsa43uJRZyGx7FOj3DiZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:44.971 [XNIO-1 task-6] cFsa43uJRZyGx7FOj3DiZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:44.977 [XNIO-1 task-5] nVVcC6SpTG65mM5nzChqKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.977 [XNIO-1 task-5] nVVcC6SpTG65mM5nzChqKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:44.977 [XNIO-1 task-5] nVVcC6SpTG65mM5nzChqKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:44.978 [XNIO-1 task-5] nVVcC6SpTG65mM5nzChqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", authorization) +00:00:44.985 [XNIO-1 task-5] nVVcC6SpTG65mM5nzChqKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:44.985 [XNIO-1 task-5] nVVcC6SpTG65mM5nzChqKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:44.988 [XNIO-1 task-6] jv0tJmutRPeTDM5-GPm-jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.989 [XNIO-1 task-6] jv0tJmutRPeTDM5-GPm-jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.989 [XNIO-1 task-6] jv0tJmutRPeTDM5-GPm-jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:44.990 [XNIO-1 task-6] jv0tJmutRPeTDM5-GPm-jw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:44.998 [XNIO-1 task-6] jv0tJmutRPeTDM5-GPm-jw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.005 [XNIO-1 task-6] TC6Fd7I9TeanOzzcAPx71g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.005 [XNIO-1 task-6] TC6Fd7I9TeanOzzcAPx71g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.006 [XNIO-1 task-6] TC6Fd7I9TeanOzzcAPx71g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.007 [XNIO-1 task-6] TC6Fd7I9TeanOzzcAPx71g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.012 [XNIO-1 task-6] TC6Fd7I9TeanOzzcAPx71g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.022 [XNIO-1 task-6] 0NX3hOxfS4m3yuT6JH9viQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.022 [XNIO-1 task-6] 0NX3hOxfS4m3yuT6JH9viQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.023 [XNIO-1 task-6] 0NX3hOxfS4m3yuT6JH9viQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.023 [XNIO-1 task-6] 0NX3hOxfS4m3yuT6JH9viQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", authorization) +00:00:45.029 [XNIO-1 task-6] 0NX3hOxfS4m3yuT6JH9viQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.035 [XNIO-1 task-6] bV2smSpJSByxZj3GGgqF3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.036 [XNIO-1 task-6] bV2smSpJSByxZj3GGgqF3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.036 [XNIO-1 task-6] bV2smSpJSByxZj3GGgqF3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.037 [XNIO-1 task-6] bV2smSpJSByxZj3GGgqF3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", "Basic ZTI2N2U1YzctZjc4ZS00MjU4LWFlNTktMjc4ZGMzNzRjODE2OkNTV0hZMnFfUThLV1dxTUk2Y1NvQ0E=", authorization) +00:00:45.044 [XNIO-1 task-6] bV2smSpJSByxZj3GGgqF3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.054 [XNIO-1 task-6] xsrg95_xSPGA7mSDpwzyLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.057 [XNIO-1 task-6] xsrg95_xSPGA7mSDpwzyLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.058 [XNIO-1 task-6] xsrg95_xSPGA7mSDpwzyLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.059 [XNIO-1 task-6] xsrg95_xSPGA7mSDpwzyLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", authorization) +00:00:45.070 [XNIO-1 task-6] xsrg95_xSPGA7mSDpwzyLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.077 [XNIO-1 task-6] qK02Gi1ZRkmAtnwDX6AOew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.078 [XNIO-1 task-6] qK02Gi1ZRkmAtnwDX6AOew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.078 [XNIO-1 task-6] qK02Gi1ZRkmAtnwDX6AOew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.079 [XNIO-1 task-6] qK02Gi1ZRkmAtnwDX6AOew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", "Basic YjUzZjQyOTUtYzRhYi00MDViLTgwYWUtNjBjMDE2NDljMWQ1Ok15VzRGU3oxUmF5RXJfd0Y0R1Z0aGc=", authorization) +00:00:45.085 [XNIO-1 task-6] qK02Gi1ZRkmAtnwDX6AOew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.092 [XNIO-1 task-6] eNudWOwXRpOxuZ0kelZ6Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.092 [XNIO-1 task-6] eNudWOwXRpOxuZ0kelZ6Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.093 [XNIO-1 task-6] eNudWOwXRpOxuZ0kelZ6Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.093 [XNIO-1 task-6] eNudWOwXRpOxuZ0kelZ6Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", "Basic ODRjYWEyYWQtMzgxYS00NjQ4LTlkODYtMTRiMTRlN2IwN2U0Olh1ZFc4VUcwVDFTRzhsQXpWczZSWWc=", authorization) +00:00:45.101 [XNIO-1 task-6] eNudWOwXRpOxuZ0kelZ6Nw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.112 [XNIO-1 task-6] vVGY7k1XSoytskR8UxY2YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.112 [XNIO-1 task-6] vVGY7k1XSoytskR8UxY2YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.112 [XNIO-1 task-6] vVGY7k1XSoytskR8UxY2YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.114 [XNIO-1 task-6] vVGY7k1XSoytskR8UxY2YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:45.114 [XNIO-1 task-5] cchxo6YKTR-5g1HPM4phfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.115 [XNIO-1 task-5] cchxo6YKTR-5g1HPM4phfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.115 [XNIO-1 task-5] cchxo6YKTR-5g1HPM4phfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.116 [XNIO-1 task-5] cchxo6YKTR-5g1HPM4phfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:45.121 [XNIO-1 task-6] vVGY7k1XSoytskR8UxY2YQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.122 [XNIO-1 task-6] vVGY7k1XSoytskR8UxY2YQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.124 [XNIO-1 task-5] cchxo6YKTR-5g1HPM4phfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.127 [XNIO-1 task-5] MV-RE2eeRGytzvSUuzzanA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.127 [XNIO-1 task-5] MV-RE2eeRGytzvSUuzzanA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.128 [XNIO-1 task-5] MV-RE2eeRGytzvSUuzzanA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.128 [XNIO-1 task-5] MV-RE2eeRGytzvSUuzzanA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bf2abecb-aaa9-4d72-999f-1088b6d22fac scope = null +00:00:45.134 [XNIO-1 task-4] G4shDvlSTN2Foy_JxrgZhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.136 [XNIO-1 task-4] G4shDvlSTN2Foy_JxrgZhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.136 [XNIO-1 task-4] G4shDvlSTN2Foy_JxrgZhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.137 [XNIO-1 task-4] G4shDvlSTN2Foy_JxrgZhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bf2abecb-aaa9-4d72-999f-1088b6d22fac is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:45.142 [XNIO-1 task-4] G4shDvlSTN2Foy_JxrgZhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.154 [XNIO-1 task-4] QmlI1HgqTlaSh_V-1nRqgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.154 [XNIO-1 task-4] QmlI1HgqTlaSh_V-1nRqgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.155 [XNIO-1 task-4] QmlI1HgqTlaSh_V-1nRqgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.156 [XNIO-1 task-4] QmlI1HgqTlaSh_V-1nRqgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:45.163 [XNIO-1 task-4] QmlI1HgqTlaSh_V-1nRqgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.172 [XNIO-1 task-4] xsz3YMrqSceDPu_xgnkm_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.172 [XNIO-1 task-4] xsz3YMrqSceDPu_xgnkm_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.172 [XNIO-1 task-4] xsz3YMrqSceDPu_xgnkm_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.173 [XNIO-1 task-4] xsz3YMrqSceDPu_xgnkm_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:45.179 [XNIO-1 task-4] xsz3YMrqSceDPu_xgnkm_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.183 [XNIO-1 task-5] IytYowZVRJaTyz7FGIrMow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.183 [XNIO-1 task-5] IytYowZVRJaTyz7FGIrMow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.184 [XNIO-1 task-5] IytYowZVRJaTyz7FGIrMow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.184 [XNIO-1 task-5] IytYowZVRJaTyz7FGIrMow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:45.194 [XNIO-1 task-5] IytYowZVRJaTyz7FGIrMow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.195 [XNIO-1 task-5] IytYowZVRJaTyz7FGIrMow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.197 [XNIO-1 task-6] xOhfiGxpSOa7HcGQar50_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.197 [XNIO-1 task-6] xOhfiGxpSOa7HcGQar50_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.198 [XNIO-1 task-4] sbSF2oH-RtqCVLUlzkVZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.198 [XNIO-1 task-4] sbSF2oH-RtqCVLUlzkVZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.198 [XNIO-1 task-6] xOhfiGxpSOa7HcGQar50_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.198 [XNIO-1 task-4] sbSF2oH-RtqCVLUlzkVZww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.198 [XNIO-1 task-6] xOhfiGxpSOa7HcGQar50_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.199 [XNIO-1 task-4] sbSF2oH-RtqCVLUlzkVZww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QS0NUPKgTY-PlDPvMbJWDA redirectUri = http://localhost:8080/authorization +00:00:45.205 [XNIO-1 task-6] xOhfiGxpSOa7HcGQar50_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.213 [XNIO-1 task-4] sbSF2oH-RtqCVLUlzkVZww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.223 [XNIO-1 task-4] f3EeNeCkS7aV9VgsgZ9aNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.223 [XNIO-1 task-4] f3EeNeCkS7aV9VgsgZ9aNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.223 [XNIO-1 task-4] f3EeNeCkS7aV9VgsgZ9aNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.224 [XNIO-1 task-4] f3EeNeCkS7aV9VgsgZ9aNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:45.227 [XNIO-1 task-5] 4nYKCY-vQZuctsYapp9ngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.227 [XNIO-1 task-5] 4nYKCY-vQZuctsYapp9ngQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.227 [XNIO-1 task-5] 4nYKCY-vQZuctsYapp9ngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.228 [XNIO-1 task-5] 4nYKCY-vQZuctsYapp9ngQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:45.230 [XNIO-1 task-4] f3EeNeCkS7aV9VgsgZ9aNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.243 [XNIO-1 task-5] 4nYKCY-vQZuctsYapp9ngQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.246 [XNIO-1 task-4] RHsKK7GAT-u80iF--LzJqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.247 [XNIO-1 task-4] RHsKK7GAT-u80iF--LzJqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.247 [XNIO-1 task-4] RHsKK7GAT-u80iF--LzJqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.248 [XNIO-1 task-4] RHsKK7GAT-u80iF--LzJqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:45.253 [XNIO-1 task-4] RHsKK7GAT-u80iF--LzJqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.253 [XNIO-1 task-6] XLzssdsMQ7myGHrh0Kvirw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.256 [XNIO-1 task-6] XLzssdsMQ7myGHrh0Kvirw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.256 [XNIO-1 task-6] XLzssdsMQ7myGHrh0Kvirw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.257 [XNIO-1 task-6] XLzssdsMQ7myGHrh0Kvirw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:45.260 [XNIO-1 task-5] ZTRCo2bjTh-6YFDLXjcIdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.260 [XNIO-1 task-4] PYZ1mqe0SJGpYxi2NWdZgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.260 [XNIO-1 task-4] PYZ1mqe0SJGpYxi2NWdZgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.261 [XNIO-1 task-4] PYZ1mqe0SJGpYxi2NWdZgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.261 [XNIO-1 task-5] ZTRCo2bjTh-6YFDLXjcIdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.261 [XNIO-1 task-4] PYZ1mqe0SJGpYxi2NWdZgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.261 [XNIO-1 task-5] ZTRCo2bjTh-6YFDLXjcIdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:45.261 [XNIO-1 task-4] PYZ1mqe0SJGpYxi2NWdZgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 963421fb-2274-4506-9f81-659bcba1a6b4 scope = null +00:00:45.265 [XNIO-1 task-6] XLzssdsMQ7myGHrh0Kvirw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.265 [XNIO-1 task-6] XLzssdsMQ7myGHrh0Kvirw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.266 [XNIO-1 task-5] ZTRCo2bjTh-6YFDLXjcIdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.268 [XNIO-1 task-5] ZTRCo2bjTh-6YFDLXjcIdA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.274 [XNIO-1 task-4] PYZ1mqe0SJGpYxi2NWdZgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.276 [XNIO-1 task-5] jsdQ647ITxefoOtnWc_V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.276 [XNIO-1 task-5] jsdQ647ITxefoOtnWc_V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.276 [XNIO-1 task-5] jsdQ647ITxefoOtnWc_V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.277 [XNIO-1 task-5] jsdQ647ITxefoOtnWc_V1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.285 [XNIO-1 task-5] jsdQ647ITxefoOtnWc_V1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.287 [XNIO-1 task-6] n02_5TZCSuifP_PnUuC_Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.287 [XNIO-1 task-6] n02_5TZCSuifP_PnUuC_Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.287 [XNIO-1 task-6] n02_5TZCSuifP_PnUuC_Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.288 [XNIO-1 task-6] n02_5TZCSuifP_PnUuC_Rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 371d19be-4253-494c-9367-c1b6c7f3aeb2 scope = null +00:00:45.291 [XNIO-1 task-4] qE6q4yMmRnGRNjJ71DIKrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.291 [XNIO-1 task-4] qE6q4yMmRnGRNjJ71DIKrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.291 [XNIO-1 task-4] qE6q4yMmRnGRNjJ71DIKrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.292 [XNIO-1 task-4] qE6q4yMmRnGRNjJ71DIKrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.301 [XNIO-1 task-6] n02_5TZCSuifP_PnUuC_Rg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.302 [XNIO-1 task-4] qE6q4yMmRnGRNjJ71DIKrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.303 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f8b2d53d-15f9-4f29-b331-fa2b3c88c89b +00:00:45.305 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f8b2d53d-15f9-4f29-b331-fa2b3c88c89b +00:00:45.317 [XNIO-1 task-4] feNiZiWOSAy5Keb1Gfni6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.317 [XNIO-1 task-4] feNiZiWOSAy5Keb1Gfni6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.317 [XNIO-1 task-4] feNiZiWOSAy5Keb1Gfni6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.318 [XNIO-1 task-4] feNiZiWOSAy5Keb1Gfni6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.324 [XNIO-1 task-4] feNiZiWOSAy5Keb1Gfni6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.330 [XNIO-1 task-6] HZ-aUxZIR0agLajBkUhQ4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.330 [XNIO-1 task-6] HZ-aUxZIR0agLajBkUhQ4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.331 [XNIO-1 task-6] HZ-aUxZIR0agLajBkUhQ4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.331 [XNIO-1 task-6] HZ-aUxZIR0agLajBkUhQ4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f8b2d53d-15f9-4f29-b331-fa2b3c88c89b scope = null +00:00:45.367 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93b3fc66-8d9a-443b-8765-ca34e3bc2ea1 +00:00:45.368 [XNIO-1 task-4] ivt7lJNCQlW4BaSoSqYWHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.368 [XNIO-1 task-4] ivt7lJNCQlW4BaSoSqYWHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.368 [XNIO-1 task-4] ivt7lJNCQlW4BaSoSqYWHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.369 [XNIO-1 task-4] ivt7lJNCQlW4BaSoSqYWHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.374 [XNIO-1 task-4] ivt7lJNCQlW4BaSoSqYWHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.380 [XNIO-1 task-4] qwAU7XT5RD6HvdtKUREasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.381 [XNIO-1 task-4] qwAU7XT5RD6HvdtKUREasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.381 [XNIO-1 task-4] qwAU7XT5RD6HvdtKUREasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.382 [XNIO-1 task-4] qwAU7XT5RD6HvdtKUREasg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.387 [XNIO-1 task-4] qwAU7XT5RD6HvdtKUREasg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.397 [XNIO-1 task-4] G0g5LVDvRX2AoVaQfv1riA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.397 [XNIO-1 task-4] G0g5LVDvRX2AoVaQfv1riA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.398 [XNIO-1 task-4] G0g5LVDvRX2AoVaQfv1riA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.398 [XNIO-1 task-4] G0g5LVDvRX2AoVaQfv1riA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.399 [XNIO-1 task-4] G0g5LVDvRX2AoVaQfv1riA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.400 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3a1f54f9-b884-44d1-8656-73318c951a8e +00:00:45.436 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f8b2d53d-15f9-4f29-b331-fa2b3c88c89b +00:00:45.457 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6b4ef55d +00:00:45.485 [XNIO-1 task-6] O_pxjFN6RW-IMCf-wRUkEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.486 [XNIO-1 task-6] O_pxjFN6RW-IMCf-wRUkEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.486 [XNIO-1 task-6] O_pxjFN6RW-IMCf-wRUkEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.486 [XNIO-1 task-6] O_pxjFN6RW-IMCf-wRUkEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:45.487 [XNIO-1 task-4] G0g5LVDvRX2AoVaQfv1riA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.487 [XNIO-1 task-5] p2bZUC8_RlygJQu_H3yhwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.487 [XNIO-1 task-5] p2bZUC8_RlygJQu_H3yhwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.488 [XNIO-1 task-5] p2bZUC8_RlygJQu_H3yhwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.488 [XNIO-1 task-5] p2bZUC8_RlygJQu_H3yhwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:45.497 [XNIO-1 task-4] FQXlLrseTDe4AlgnI5idJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.497 [XNIO-1 task-4] FQXlLrseTDe4AlgnI5idJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.498 [XNIO-1 task-4] FQXlLrseTDe4AlgnI5idJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.498 [XNIO-1 task-4] FQXlLrseTDe4AlgnI5idJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:45.502 [XNIO-1 task-6] O_pxjFN6RW-IMCf-wRUkEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.502 [XNIO-1 task-6] O_pxjFN6RW-IMCf-wRUkEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.503 [XNIO-1 task-5] p2bZUC8_RlygJQu_H3yhwA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:45.516 [XNIO-1 task-4] FQXlLrseTDe4AlgnI5idJw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.528 [XNIO-1 task-4] gU4PMkmdRcyjCc3bqNtEpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.528 [XNIO-1 task-4] gU4PMkmdRcyjCc3bqNtEpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.528 [XNIO-1 task-4] gU4PMkmdRcyjCc3bqNtEpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.529 [XNIO-1 task-4] gU4PMkmdRcyjCc3bqNtEpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.535 [XNIO-1 task-6] FyGCG5z0Qvq7I1BoWKiwHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.535 [XNIO-1 task-6] FyGCG5z0Qvq7I1BoWKiwHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.535 [XNIO-1 task-6] FyGCG5z0Qvq7I1BoWKiwHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.535 [XNIO-1 task-4] gU4PMkmdRcyjCc3bqNtEpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.536 [XNIO-1 task-6] FyGCG5z0Qvq7I1BoWKiwHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c81d6941-2a69-48c6-b5fa-9430642dceac scope = null +00:00:45.540 [XNIO-1 task-4] in-k-mgRSL6Ar9dsKOsyRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.540 [XNIO-1 task-4] in-k-mgRSL6Ar9dsKOsyRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.540 [XNIO-1 task-4] in-k-mgRSL6Ar9dsKOsyRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.541 [XNIO-1 task-4] in-k-mgRSL6Ar9dsKOsyRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.546 [XNIO-1 task-4] in-k-mgRSL6Ar9dsKOsyRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.554 [XNIO-1 task-4] wNFHrJM_Qm-a36_tfUCy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.554 [XNIO-1 task-4] wNFHrJM_Qm-a36_tfUCy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.555 [XNIO-1 task-4] wNFHrJM_Qm-a36_tfUCy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.582 [XNIO-1 task-6] FyGCG5z0Qvq7I1BoWKiwHg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.582 [XNIO-1 task-4] wNFHrJM_Qm-a36_tfUCy6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.587 [XNIO-1 task-4] wNFHrJM_Qm-a36_tfUCy6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.587 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1a92f02b +00:00:45.603 [XNIO-1 task-6] uItaJ_mNRhCF7JbZaQTOqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.607 [XNIO-1 task-6] uItaJ_mNRhCF7JbZaQTOqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.607 [XNIO-1 task-6] uItaJ_mNRhCF7JbZaQTOqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.608 [XNIO-1 task-6] uItaJ_mNRhCF7JbZaQTOqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:45.615 [XNIO-1 task-6] uItaJ_mNRhCF7JbZaQTOqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.629 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6b4ef55d +00:00:45.632 [XNIO-1 task-6] K0PdkptsRiSLbr-96w2Iqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.633 [XNIO-1 task-6] K0PdkptsRiSLbr-96w2Iqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.634 [XNIO-1 task-6] K0PdkptsRiSLbr-96w2Iqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.634 [XNIO-1 task-6] K0PdkptsRiSLbr-96w2Iqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:45.642 [XNIO-1 task-6] K0PdkptsRiSLbr-96w2Iqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.656 [XNIO-1 task-6] PyB_cLJtSTmK8DVr_Lkqnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.656 [XNIO-1 task-6] PyB_cLJtSTmK8DVr_Lkqnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.657 [XNIO-1 task-6] PyB_cLJtSTmK8DVr_Lkqnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.657 [XNIO-1 task-6] PyB_cLJtSTmK8DVr_Lkqnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:45.660 [XNIO-1 task-4] HShePy91T2CRBTXz1pW0uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.660 [XNIO-1 task-4] HShePy91T2CRBTXz1pW0uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.660 [XNIO-1 task-4] HShePy91T2CRBTXz1pW0uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.661 [XNIO-1 task-4] HShePy91T2CRBTXz1pW0uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", authorization) +00:00:45.666 [XNIO-1 task-6] PyB_cLJtSTmK8DVr_Lkqnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.672 [XNIO-1 task-6] g55qGeAfRwmkYLhLUjH-Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.673 [XNIO-1 task-6] g55qGeAfRwmkYLhLUjH-Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.673 [XNIO-1 task-6] g55qGeAfRwmkYLhLUjH-Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.673 [XNIO-1 task-6] g55qGeAfRwmkYLhLUjH-Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:45.679 [XNIO-1 task-6] g55qGeAfRwmkYLhLUjH-Ww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.684 [XNIO-1 task-4] HShePy91T2CRBTXz1pW0uw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.684 [XNIO-1 task-4] HShePy91T2CRBTXz1pW0uw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.687 [XNIO-1 task-6] ynE74cQzQa2b6g6o3NQB7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.687 [XNIO-1 task-6] ynE74cQzQa2b6g6o3NQB7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.687 [XNIO-1 task-6] ynE74cQzQa2b6g6o3NQB7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.688 [XNIO-1 task-6] ynE74cQzQa2b6g6o3NQB7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.693 [XNIO-1 task-6] ynE74cQzQa2b6g6o3NQB7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.698 [XNIO-1 task-6] duMTkeE2QcKge-B5pD1QdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.698 [XNIO-1 task-6] duMTkeE2QcKge-B5pD1QdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.699 [XNIO-1 task-6] duMTkeE2QcKge-B5pD1QdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.699 [XNIO-1 task-6] duMTkeE2QcKge-B5pD1QdA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.704 [XNIO-1 task-6] duMTkeE2QcKge-B5pD1QdA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.725 [XNIO-1 task-6] ln1UbKaQRDa0_UYwuZrZoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.725 [XNIO-1 task-6] ln1UbKaQRDa0_UYwuZrZoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.726 [XNIO-1 task-6] ln1UbKaQRDa0_UYwuZrZoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.727 [XNIO-1 task-6] ln1UbKaQRDa0_UYwuZrZoA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = xX-TLtwFQSK2MqH7CRMwyg redirectUri = http://localhost:8080/authorization +00:00:45.728 [XNIO-1 task-4] 9qPuejg2R9ON9g_JkoFmXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.729 [XNIO-1 task-4] 9qPuejg2R9ON9g_JkoFmXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.729 [XNIO-1 task-4] 9qPuejg2R9ON9g_JkoFmXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.731 [XNIO-1 task-4] 9qPuejg2R9ON9g_JkoFmXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.738 [XNIO-1 task-6] ln1UbKaQRDa0_UYwuZrZoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.738 [XNIO-1 task-4] 9qPuejg2R9ON9g_JkoFmXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.747 [XNIO-1 task-4] tqb6HlT9RxqXYlOXqpWhHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.747 [XNIO-1 task-4] tqb6HlT9RxqXYlOXqpWhHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.747 [XNIO-1 task-4] tqb6HlT9RxqXYlOXqpWhHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.748 [XNIO-1 task-4] tqb6HlT9RxqXYlOXqpWhHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:45.755 [XNIO-1 task-6] 9EXZzG4CSZSSMr8iku6Biw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.755 [XNIO-1 task-6] 9EXZzG4CSZSSMr8iku6Biw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.756 [XNIO-1 task-6] 9EXZzG4CSZSSMr8iku6Biw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.756 [XNIO-1 task-6] 9EXZzG4CSZSSMr8iku6Biw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:45.756 [XNIO-1 task-4] tqb6HlT9RxqXYlOXqpWhHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.768 [XNIO-1 task-6] 9EXZzG4CSZSSMr8iku6Biw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.770 [XNIO-1 task-4] ccRYcHGBSFSZc4RN8xAo2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.770 [XNIO-1 task-4] ccRYcHGBSFSZc4RN8xAo2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.771 [XNIO-1 task-4] ccRYcHGBSFSZc4RN8xAo2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.771 [XNIO-1 task-4] ccRYcHGBSFSZc4RN8xAo2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODJjM2M5MmUtYWE1ZS00NzY2LWIwNDktOWU4YjNlY2Q3ODM2OnhZS25qMlYxUUxhcnlyVjJsd0M2LXc=", "Basic ODJjM2M5MmUtYWE1ZS00NzY2LWIwNDktOWU4YjNlY2Q3ODM2OnhZS25qMlYxUUxhcnlyVjJsd0M2LXc=", authorization) +00:00:45.782 [XNIO-1 task-4] ccRYcHGBSFSZc4RN8xAo2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.797 [XNIO-1 task-4] 8EIC5-kAQlmwRs1TV5Tl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.798 [XNIO-1 task-4] 8EIC5-kAQlmwRs1TV5Tl0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.798 [XNIO-1 task-4] 8EIC5-kAQlmwRs1TV5Tl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.798 [XNIO-1 task-4] 8EIC5-kAQlmwRs1TV5Tl0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:45.801 [XNIO-1 task-6] XjApSJ_6Q0qznnQPV_ykhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.802 [XNIO-1 task-6] XjApSJ_6Q0qznnQPV_ykhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.802 [XNIO-1 task-6] XjApSJ_6Q0qznnQPV_ykhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.802 [XNIO-1 task-6] XjApSJ_6Q0qznnQPV_ykhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:45.803 [XNIO-1 task-4] 8EIC5-kAQlmwRs1TV5Tl0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.809 [XNIO-1 task-4] mBJ6MnZ6QBigGJwUs3Eogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.811 [XNIO-1 task-4] mBJ6MnZ6QBigGJwUs3Eogw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.812 [XNIO-1 task-4] mBJ6MnZ6QBigGJwUs3Eogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.812 [XNIO-1 task-4] mBJ6MnZ6QBigGJwUs3Eogw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:45.812 [XNIO-1 task-6] XjApSJ_6Q0qznnQPV_ykhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.813 [XNIO-1 task-6] XjApSJ_6Q0qznnQPV_ykhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.818 [XNIO-1 task-4] mBJ6MnZ6QBigGJwUs3Eogw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.819 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7dbe75d4 +00:00:45.824 [XNIO-1 task-4] oXpoljAnRFi90imQscQQpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.826 [XNIO-1 task-4] oXpoljAnRFi90imQscQQpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.826 [XNIO-1 task-4] oXpoljAnRFi90imQscQQpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.827 [XNIO-1 task-4] oXpoljAnRFi90imQscQQpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWE4ODZhNzktODk0ZS00YjE4LWE5NTYtMDU4MDE0MDdiMTZhOlJib3I0bnZ0UVVlOFVLWFlxaU1XWmc=", "Basic OWE4ODZhNzktODk0ZS00YjE4LWE5NTYtMDU4MDE0MDdiMTZhOlJib3I0bnZ0UVVlOFVLWFlxaU1XWmc=", authorization) +00:00:45.834 [XNIO-1 task-6] OqE-McouS-SDaFn5IT6WEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.834 [XNIO-1 task-6] OqE-McouS-SDaFn5IT6WEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.835 [XNIO-1 task-6] OqE-McouS-SDaFn5IT6WEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.835 [XNIO-1 task-4] oXpoljAnRFi90imQscQQpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.835 [XNIO-1 task-4] oXpoljAnRFi90imQscQQpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.836 [XNIO-1 task-4] oXpoljAnRFi90imQscQQpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.841 [XNIO-1 task-6] OqE-McouS-SDaFn5IT6WEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.848 [XNIO-1 task-6] L7Mq3o6nSZ6XXxtoXmfXlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.848 [XNIO-1 task-6] L7Mq3o6nSZ6XXxtoXmfXlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.849 [XNIO-1 task-6] L7Mq3o6nSZ6XXxtoXmfXlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.849 [XNIO-1 task-6] L7Mq3o6nSZ6XXxtoXmfXlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.855 [XNIO-1 task-6] L7Mq3o6nSZ6XXxtoXmfXlA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.861 [XNIO-1 task-6] YEdJx-JbSbCQO9D2ELLsDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.861 [XNIO-1 task-6] YEdJx-JbSbCQO9D2ELLsDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.861 [XNIO-1 task-6] YEdJx-JbSbCQO9D2ELLsDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.862 [XNIO-1 task-6] YEdJx-JbSbCQO9D2ELLsDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.865 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7dbe75d4 +00:00:45.868 [XNIO-1 task-6] YEdJx-JbSbCQO9D2ELLsDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.884 [XNIO-1 task-6] cKeqZhqmRJechCgPZOKr2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.884 [XNIO-1 task-6] cKeqZhqmRJechCgPZOKr2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.884 [XNIO-1 task-6] cKeqZhqmRJechCgPZOKr2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.885 [XNIO-1 task-6] cKeqZhqmRJechCgPZOKr2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.893 [XNIO-1 task-6] cKeqZhqmRJechCgPZOKr2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.898 [XNIO-1 task-6] O0dpn6BdQgm-sWsZW9htDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.899 [XNIO-1 task-6] O0dpn6BdQgm-sWsZW9htDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.899 [XNIO-1 task-6] O0dpn6BdQgm-sWsZW9htDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.900 [XNIO-1 task-6] O0dpn6BdQgm-sWsZW9htDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.905 [XNIO-1 task-6] O0dpn6BdQgm-sWsZW9htDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.927 [XNIO-1 task-6] 9t4PBrVTQnaekY_JH0QjKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.927 [XNIO-1 task-6] 9t4PBrVTQnaekY_JH0QjKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.927 [XNIO-1 task-6] 9t4PBrVTQnaekY_JH0QjKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.928 [XNIO-1 task-6] 9t4PBrVTQnaekY_JH0QjKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.939 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7dbe75d4 +00:00:45.944 [XNIO-1 task-6] 9t4PBrVTQnaekY_JH0QjKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.950 [XNIO-1 task-6] buxxLjxuQNeQoEVZoc_vvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.950 [XNIO-1 task-6] buxxLjxuQNeQoEVZoc_vvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.951 [XNIO-1 task-6] buxxLjxuQNeQoEVZoc_vvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.951 [XNIO-1 task-6] buxxLjxuQNeQoEVZoc_vvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = wKcE6T_oTImAF8EQjqpJYg redirectUri = http://localhost:8080/authorization +00:00:45.954 [XNIO-1 task-4] kXUIWEWoQ6yEW88gUSeJeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.954 [XNIO-1 task-4] kXUIWEWoQ6yEW88gUSeJeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.955 [XNIO-1 task-4] kXUIWEWoQ6yEW88gUSeJeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.955 [XNIO-1 task-4] kXUIWEWoQ6yEW88gUSeJeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.960 [XNIO-1 task-5] 3UizeoCGTeuRkH9GA9EK1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.960 [XNIO-1 task-5] 3UizeoCGTeuRkH9GA9EK1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.961 [XNIO-1 task-5] 3UizeoCGTeuRkH9GA9EK1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.961 [XNIO-1 task-5] 3UizeoCGTeuRkH9GA9EK1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = wDBtK5NNTPWCmVav4Psb0Q redirectUri = http://localhost:8080/authorization +00:00:45.966 [XNIO-1 task-4] kXUIWEWoQ6yEW88gUSeJeQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.969 [XNIO-1 task-6] buxxLjxuQNeQoEVZoc_vvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.975 [XNIO-1 task-4] I3uTAk6DRnuz-mcFcGz0vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.975 [XNIO-1 task-4] I3uTAk6DRnuz-mcFcGz0vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.976 [XNIO-1 task-5] 3UizeoCGTeuRkH9GA9EK1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:45.976 [XNIO-1 task-4] I3uTAk6DRnuz-mcFcGz0vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:45.976 [XNIO-1 task-5] 3UizeoCGTeuRkH9GA9EK1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:45.977 [XNIO-1 task-4] I3uTAk6DRnuz-mcFcGz0vw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:45.984 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:633ec39f +00:00:45.985 [XNIO-1 task-4] I3uTAk6DRnuz-mcFcGz0vw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:45.994 [XNIO-1 task-5] VF5T4Qw9TxujsMq-jYxY3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.994 [XNIO-1 task-5] VF5T4Qw9TxujsMq-jYxY3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:45.994 [XNIO-1 task-5] VF5T4Qw9TxujsMq-jYxY3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:45.995 [XNIO-1 task-5] VF5T4Qw9TxujsMq-jYxY3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:46.000 [XNIO-1 task-6] csfp1T3RQp2YuyWkZiOjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.001 [XNIO-1 task-6] csfp1T3RQp2YuyWkZiOjcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.001 [XNIO-1 task-6] csfp1T3RQp2YuyWkZiOjcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.002 [XNIO-1 task-6] csfp1T3RQp2YuyWkZiOjcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:46.004 [XNIO-1 task-4] 8kw3aW57Tnmry1GYDwCfBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.004 [XNIO-1 task-4] 8kw3aW57Tnmry1GYDwCfBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.005 [XNIO-1 task-4] 8kw3aW57Tnmry1GYDwCfBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.005 [XNIO-1 task-4] 8kw3aW57Tnmry1GYDwCfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", authorization) +00:00:46.010 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7dbe75d4 +00:00:46.013 [XNIO-1 task-4] 8kw3aW57Tnmry1GYDwCfBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.019 [XNIO-1 task-6] csfp1T3RQp2YuyWkZiOjcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.019 [XNIO-1 task-5] VF5T4Qw9TxujsMq-jYxY3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.029 [XNIO-1 task-4] zdey3wovTsSgG5l-FcTs9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.029 [XNIO-1 task-4] zdey3wovTsSgG5l-FcTs9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.029 [XNIO-1 task-4] zdey3wovTsSgG5l-FcTs9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.030 [XNIO-1 task-4] zdey3wovTsSgG5l-FcTs9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:46.039 [XNIO-1 task-4] zdey3wovTsSgG5l-FcTs9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.050 [XNIO-1 task-4] zdey3wovTsSgG5l-FcTs9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.050 [XNIO-1 task-5] nChPTFzAQ_iM6OEOkOsE0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.051 [XNIO-1 task-5] nChPTFzAQ_iM6OEOkOsE0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.051 [XNIO-1 task-5] nChPTFzAQ_iM6OEOkOsE0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:46.055 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7dbe75d4 +00:00:46.056 [XNIO-1 task-4] EN-ctyYQRkquLew5F_opxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.056 [XNIO-1 task-4] EN-ctyYQRkquLew5F_opxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.056 [XNIO-1 task-4] EN-ctyYQRkquLew5F_opxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.058 [XNIO-1 task-4] EN-ctyYQRkquLew5F_opxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:46.065 [XNIO-1 task-4] EN-ctyYQRkquLew5F_opxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.077 [XNIO-1 task-5] nChPTFzAQ_iM6OEOkOsE0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.077 [XNIO-1 task-4] i-olBauuQoSgCHYQc0vxiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.078 [XNIO-1 task-4] i-olBauuQoSgCHYQc0vxiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.078 [XNIO-1 task-4] i-olBauuQoSgCHYQc0vxiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.079 [XNIO-1 task-4] i-olBauuQoSgCHYQc0vxiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:46.084 [XNIO-1 task-4] i-olBauuQoSgCHYQc0vxiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.093 [XNIO-1 task-4] q8DluzKiSLSBVzQyLylrOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.093 [XNIO-1 task-4] q8DluzKiSLSBVzQyLylrOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.093 [XNIO-1 task-4] q8DluzKiSLSBVzQyLylrOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.094 [XNIO-1 task-4] q8DluzKiSLSBVzQyLylrOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:46.100 [XNIO-1 task-4] q8DluzKiSLSBVzQyLylrOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.125 [XNIO-1 task-4] iBqOkFaHSYyzuMhP5J-QaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.125 [XNIO-1 task-4] iBqOkFaHSYyzuMhP5J-QaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.125 [XNIO-1 task-4] iBqOkFaHSYyzuMhP5J-QaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.126 [XNIO-1 task-4] iBqOkFaHSYyzuMhP5J-QaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:46.131 [XNIO-1 task-4] iBqOkFaHSYyzuMhP5J-QaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.139 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1a92f02b +00:00:46.147 [XNIO-1 task-4] -uC9UHqBTF2C0UCHCPYAbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.147 [XNIO-1 task-4] -uC9UHqBTF2C0UCHCPYAbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.147 [XNIO-1 task-4] -uC9UHqBTF2C0UCHCPYAbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.148 [XNIO-1 task-4] -uC9UHqBTF2C0UCHCPYAbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:46.154 [XNIO-1 task-4] -uC9UHqBTF2C0UCHCPYAbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.157 [XNIO-1 task-5] IED8CSpQSUyGlsKmHk4z9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.157 [XNIO-1 task-5] IED8CSpQSUyGlsKmHk4z9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.158 [XNIO-1 task-5] IED8CSpQSUyGlsKmHk4z9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.158 [XNIO-1 task-5] IED8CSpQSUyGlsKmHk4z9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:46.160 [XNIO-1 task-4] CbA0JZJ3TAamyutCb0KJnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.160 [XNIO-1 task-4] CbA0JZJ3TAamyutCb0KJnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.161 [XNIO-1 task-4] CbA0JZJ3TAamyutCb0KJnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.161 [XNIO-1 task-4] CbA0JZJ3TAamyutCb0KJnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:46.167 [XNIO-1 task-5] IED8CSpQSUyGlsKmHk4z9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.169 [XNIO-1 task-5] IED8CSpQSUyGlsKmHk4z9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.170 [XNIO-1 task-5] IED8CSpQSUyGlsKmHk4z9A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.173 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2751dc52-7fed-4e52-8aa5-bfaaf0907156 +00:00:46.177 [XNIO-1 task-4] sHj6LqV0RYaOHT_dv3H_pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.181 [XNIO-1 task-4] sHj6LqV0RYaOHT_dv3H_pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.182 [XNIO-1 task-4] sHj6LqV0RYaOHT_dv3H_pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.184 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7dbe75d4 +00:00:46.184 [XNIO-1 task-4] sHj6LqV0RYaOHT_dv3H_pg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.196 [XNIO-1 task-4] sHj6LqV0RYaOHT_dv3H_pg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.201 [XNIO-1 task-4] SfIZJPdMRmindXv3WK_Thg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.201 [XNIO-1 task-4] SfIZJPdMRmindXv3WK_Thg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.204 [XNIO-1 task-5] RpGBYFkRQOeZn9v_W3FypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.204 [XNIO-1 task-5] RpGBYFkRQOeZn9v_W3FypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.205 [XNIO-1 task-5] RpGBYFkRQOeZn9v_W3FypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.205 [XNIO-1 task-4] SfIZJPdMRmindXv3WK_Thg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.205 [XNIO-1 task-5] RpGBYFkRQOeZn9v_W3FypA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.206 [XNIO-1 task-4] SfIZJPdMRmindXv3WK_Thg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2751dc52-7fed-4e52-8aa5-bfaaf0907156 scope = null +00:00:46.209 [XNIO-1 task-6] Ia2-6Tx9SXijasdnQkDXIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.209 [XNIO-1 task-6] Ia2-6Tx9SXijasdnQkDXIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.209 [XNIO-1 task-6] Ia2-6Tx9SXijasdnQkDXIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.210 [XNIO-1 task-6] Ia2-6Tx9SXijasdnQkDXIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Mvxg08W9QjCmNVstTtPhkg redirectUri = http://localhost:8080/authorization +00:00:46.214 [XNIO-1 task-5] RpGBYFkRQOeZn9v_W3FypA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.220 [XNIO-1 task-5] lZaX4gVQRHytsK5kaLMbyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.220 [XNIO-1 task-5] lZaX4gVQRHytsK5kaLMbyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.222 [XNIO-1 task-5] lZaX4gVQRHytsK5kaLMbyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.222 [XNIO-1 task-5] lZaX4gVQRHytsK5kaLMbyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:46.222 [XNIO-1 task-6] Ia2-6Tx9SXijasdnQkDXIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.223 [XNIO-1 task-6] Ia2-6Tx9SXijasdnQkDXIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.226 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7dbe75d4 +00:00:46.227 [XNIO-1 task-4] SfIZJPdMRmindXv3WK_Thg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.230 [XNIO-1 task-5] lZaX4gVQRHytsK5kaLMbyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.241 [XNIO-1 task-6] 745ffGbARG6wy0OumFh1UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.242 [XNIO-1 task-6] 745ffGbARG6wy0OumFh1UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.242 [XNIO-1 task-6] 745ffGbARG6wy0OumFh1UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.242 [XNIO-1 task-6] 745ffGbARG6wy0OumFh1UA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.250 [XNIO-1 task-6] 745ffGbARG6wy0OumFh1UA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.261 [XNIO-1 task-6] _SOas3AiS5mpe8NDkHgKqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.262 [XNIO-1 task-6] _SOas3AiS5mpe8NDkHgKqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.262 [XNIO-1 task-6] _SOas3AiS5mpe8NDkHgKqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.263 [XNIO-1 task-6] _SOas3AiS5mpe8NDkHgKqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:46.270 [XNIO-1 task-6] _SOas3AiS5mpe8NDkHgKqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.276 [XNIO-1 task-6] KRY6WZYsRCuCM4eDg3fWxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.276 [XNIO-1 task-6] KRY6WZYsRCuCM4eDg3fWxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.277 [XNIO-1 task-6] KRY6WZYsRCuCM4eDg3fWxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.277 [XNIO-1 task-6] KRY6WZYsRCuCM4eDg3fWxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:46.284 [XNIO-1 task-6] KRY6WZYsRCuCM4eDg3fWxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.293 [XNIO-1 task-6] JIurIF3wSvCVdaxsYtsamQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.294 [XNIO-1 task-6] JIurIF3wSvCVdaxsYtsamQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.294 [XNIO-1 task-6] JIurIF3wSvCVdaxsYtsamQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.295 [XNIO-1 task-6] JIurIF3wSvCVdaxsYtsamQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:46.300 [XNIO-1 task-4] lnl__oVWTPO_udjX9IvezQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.301 [XNIO-1 task-4] lnl__oVWTPO_udjX9IvezQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.301 [XNIO-1 task-6] JIurIF3wSvCVdaxsYtsamQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.302 [XNIO-1 task-6] JIurIF3wSvCVdaxsYtsamQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.303 [XNIO-1 task-4] lnl__oVWTPO_udjX9IvezQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:46.311 [XNIO-1 task-6] -6Mk-K7FR9CNgQRGbh5jWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.312 [XNIO-1 task-6] -6Mk-K7FR9CNgQRGbh5jWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.312 [XNIO-1 task-6] -6Mk-K7FR9CNgQRGbh5jWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.313 [XNIO-1 task-6] -6Mk-K7FR9CNgQRGbh5jWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", authorization) +00:00:46.317 [XNIO-1 task-4] lnl__oVWTPO_udjX9IvezQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.317 [XNIO-1 task-4] lnl__oVWTPO_udjX9IvezQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.321 [XNIO-1 task-6] -6Mk-K7FR9CNgQRGbh5jWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.330 [XNIO-1 task-6] FgLh6ANSQcKTwFrN_unnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.330 [XNIO-1 task-6] FgLh6ANSQcKTwFrN_unnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.330 [XNIO-1 task-6] FgLh6ANSQcKTwFrN_unnfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.331 [XNIO-1 task-6] FgLh6ANSQcKTwFrN_unnfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.334 [XNIO-1 task-4] BAdnYGl_Tr-M-BLcQyH50w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.334 [XNIO-1 task-4] BAdnYGl_Tr-M-BLcQyH50w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.334 [XNIO-1 task-4] BAdnYGl_Tr-M-BLcQyH50w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.334 [XNIO-1 task-4] BAdnYGl_Tr-M-BLcQyH50w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 29d40603-73a5-4ce4-a68f-d360c8fd1e39 scope = null +00:00:46.336 [XNIO-1 task-6] FgLh6ANSQcKTwFrN_unnfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.347 [XNIO-1 task-6] udSgWmLTTgW17MTxckKuTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.348 [XNIO-1 task-6] udSgWmLTTgW17MTxckKuTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.350 [XNIO-1 task-6] udSgWmLTTgW17MTxckKuTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.351 [XNIO-1 task-6] udSgWmLTTgW17MTxckKuTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.357 [XNIO-1 task-4] BAdnYGl_Tr-M-BLcQyH50w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.359 [XNIO-1 task-6] udSgWmLTTgW17MTxckKuTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.370 [XNIO-1 task-5] h-dZd2wjS3OAoFPiub-jZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.370 [XNIO-1 task-5] h-dZd2wjS3OAoFPiub-jZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.370 [XNIO-1 task-5] h-dZd2wjS3OAoFPiub-jZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.371 [XNIO-1 task-5] h-dZd2wjS3OAoFPiub-jZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.377 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:97412e99 +00:00:46.379 [XNIO-1 task-5] h-dZd2wjS3OAoFPiub-jZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.369 [XNIO-1 task-6] BLuZWLh3RXCyc5qdl1gyJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.383 [XNIO-1 task-6] BLuZWLh3RXCyc5qdl1gyJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.383 [XNIO-1 task-6] BLuZWLh3RXCyc5qdl1gyJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.383 [XNIO-1 task-6] BLuZWLh3RXCyc5qdl1gyJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTc3MTA2YmMtN2IyOC00MjEzLThlNTAtZThjMTAwNzY4MzMxOkgxN1N1dzBxVEYyX3FiSEhnNHpsRWc=", "Basic ZTc3MTA2YmMtN2IyOC00MjEzLThlNTAtZThjMTAwNzY4MzMxOkgxN1N1dzBxVEYyX3FiSEhnNHpsRWc=", authorization) +00:00:46.384 [XNIO-1 task-5] bWQTsnASRSyHRFKmJxDXSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.384 [XNIO-1 task-5] bWQTsnASRSyHRFKmJxDXSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.385 [XNIO-1 task-5] bWQTsnASRSyHRFKmJxDXSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.385 [XNIO-1 task-5] bWQTsnASRSyHRFKmJxDXSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", authorization) +00:00:46.393 [XNIO-1 task-5] bWQTsnASRSyHRFKmJxDXSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.405 [XNIO-1 task-6] BLuZWLh3RXCyc5qdl1gyJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.406 [XNIO-1 task-6] BLuZWLh3RXCyc5qdl1gyJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.409 [XNIO-1 task-5] L_Pc70W1Rb-kk0W6quNF4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.410 [XNIO-1 task-5] L_Pc70W1Rb-kk0W6quNF4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.410 [XNIO-1 task-5] L_Pc70W1Rb-kk0W6quNF4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.410 [XNIO-1 task-5] L_Pc70W1Rb-kk0W6quNF4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.416 [XNIO-1 task-5] L_Pc70W1Rb-kk0W6quNF4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.424 [XNIO-1 task-5] 1wLY58peQ7CKDLFfYcy9rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.424 [XNIO-1 task-5] 1wLY58peQ7CKDLFfYcy9rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.424 [XNIO-1 task-5] 1wLY58peQ7CKDLFfYcy9rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.425 [XNIO-1 task-5] 1wLY58peQ7CKDLFfYcy9rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.425 [XNIO-1 task-6] PrMBlaMMShGvNYPhD2YH7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.425 [XNIO-1 task-6] PrMBlaMMShGvNYPhD2YH7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.426 [XNIO-1 task-6] PrMBlaMMShGvNYPhD2YH7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.426 [XNIO-1 task-6] PrMBlaMMShGvNYPhD2YH7w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = GNzhSEdkR_uDQMM9yAKaMQ redirectUri = http://localhost:8080/authorization +00:00:46.436 [XNIO-1 task-5] 1wLY58peQ7CKDLFfYcy9rg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.437 [XNIO-1 task-6] PrMBlaMMShGvNYPhD2YH7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.441 [XNIO-1 task-5] AyMek_yMQhaT861zFfJ82Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.442 [XNIO-1 task-5] AyMek_yMQhaT861zFfJ82Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.442 [XNIO-1 task-5] AyMek_yMQhaT861zFfJ82Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.444 [XNIO-1 task-5] AyMek_yMQhaT861zFfJ82Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", authorization) +00:00:46.450 [XNIO-1 task-5] AyMek_yMQhaT861zFfJ82Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.453 [XNIO-1 task-4] Ae1nH8xtRium5UpcCt-RIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.453 [XNIO-1 task-4] Ae1nH8xtRium5UpcCt-RIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.453 [XNIO-1 task-4] Ae1nH8xtRium5UpcCt-RIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.453 [XNIO-1 task-4] Ae1nH8xtRium5UpcCt-RIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", authorization) +00:00:46.460 [XNIO-1 task-6] _Byf-6BsRLWGNI7UCcjx6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.460 [XNIO-1 task-6] _Byf-6BsRLWGNI7UCcjx6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.460 [XNIO-1 task-6] _Byf-6BsRLWGNI7UCcjx6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.461 [XNIO-1 task-6] _Byf-6BsRLWGNI7UCcjx6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:46.467 [XNIO-1 task-6] _Byf-6BsRLWGNI7UCcjx6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.468 [XNIO-1 task-4] Ae1nH8xtRium5UpcCt-RIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.468 [XNIO-1 task-4] Ae1nH8xtRium5UpcCt-RIg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.478 [XNIO-1 task-6] grGNoUJVTz2gZ1Ns23IK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.478 [XNIO-1 task-6] grGNoUJVTz2gZ1Ns23IK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.479 [XNIO-1 task-6] grGNoUJVTz2gZ1Ns23IK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.479 [XNIO-1 task-6] grGNoUJVTz2gZ1Ns23IK8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.485 [XNIO-1 task-6] grGNoUJVTz2gZ1Ns23IK8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.488 [XNIO-1 task-4] 3v_J6GntSHGTXj6TyrZfHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.488 [XNIO-1 task-4] 3v_J6GntSHGTXj6TyrZfHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.489 [XNIO-1 task-4] 3v_J6GntSHGTXj6TyrZfHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.489 [XNIO-1 task-4] 3v_J6GntSHGTXj6TyrZfHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0ac36c72-9319-4978-8cf2-1a6d17ee0971 scope = null +00:00:46.497 [XNIO-1 task-6] 7xPyUgMaT4qZVNSwDlze_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.498 [XNIO-1 task-6] 7xPyUgMaT4qZVNSwDlze_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.498 [XNIO-1 task-6] 7xPyUgMaT4qZVNSwDlze_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.499 [XNIO-1 task-6] 7xPyUgMaT4qZVNSwDlze_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.506 [XNIO-1 task-6] 7xPyUgMaT4qZVNSwDlze_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.509 [XNIO-1 task-4] 3v_J6GntSHGTXj6TyrZfHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.512 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:98d03acc +00:00:46.521 [XNIO-1 task-6] B7niXPiGSWK-vAa2emkOQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.521 [XNIO-1 task-6] B7niXPiGSWK-vAa2emkOQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.522 [XNIO-1 task-6] B7niXPiGSWK-vAa2emkOQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.522 [XNIO-1 task-6] B7niXPiGSWK-vAa2emkOQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:46.531 [XNIO-1 task-6] B7niXPiGSWK-vAa2emkOQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.538 [XNIO-1 task-6] laDccZ9RRvWWWW6ksdsNMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.539 [XNIO-1 task-6] laDccZ9RRvWWWW6ksdsNMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.539 [XNIO-1 task-6] laDccZ9RRvWWWW6ksdsNMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.539 [XNIO-1 task-6] laDccZ9RRvWWWW6ksdsNMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:46.543 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:98d03acc +00:00:46.548 [XNIO-1 task-6] laDccZ9RRvWWWW6ksdsNMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.558 [XNIO-1 task-6] VMvPCKl6SXyhu6iFkOF-0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.559 [XNIO-1 task-6] VMvPCKl6SXyhu6iFkOF-0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.559 [XNIO-1 task-6] VMvPCKl6SXyhu6iFkOF-0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.561 [XNIO-1 task-6] VMvPCKl6SXyhu6iFkOF-0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.568 [XNIO-1 task-6] VMvPCKl6SXyhu6iFkOF-0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.572 [XNIO-1 task-4] Bz3GMQV8RX-kj6Qg0GxwHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.572 [XNIO-1 task-4] Bz3GMQV8RX-kj6Qg0GxwHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.576 [XNIO-1 task-4] Bz3GMQV8RX-kj6Qg0GxwHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.577 [XNIO-1 task-4] Bz3GMQV8RX-kj6Qg0GxwHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sJ01qEeBTeaxQRlUI5_UsA redirectUri = http://localhost:8080/authorization +00:00:46.581 [XNIO-1 task-6] bpwHGnbrQtGsM3C5j5UNtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.582 [XNIO-1 task-6] bpwHGnbrQtGsM3C5j5UNtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.613 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:633ec39f +00:00:46.613 [XNIO-1 task-5] UO2xAt9iT02llA03wAaDMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.613 [XNIO-1 task-5] UO2xAt9iT02llA03wAaDMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.613 [XNIO-1 task-5] UO2xAt9iT02llA03wAaDMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.614 [XNIO-1 task-5] UO2xAt9iT02llA03wAaDMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9-QckFWMTpaszPVILoi3VA redirectUri = http://localhost:8080/authorization +00:00:46.619 [XNIO-1 task-6] bpwHGnbrQtGsM3C5j5UNtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.620 [XNIO-1 task-6] bpwHGnbrQtGsM3C5j5UNtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.626 [XNIO-1 task-6] bpwHGnbrQtGsM3C5j5UNtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.631 [XNIO-1 task-6] vAkIjaheQsiGHJp_8Lh3iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.632 [XNIO-1 task-6] vAkIjaheQsiGHJp_8Lh3iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.632 [XNIO-1 task-6] vAkIjaheQsiGHJp_8Lh3iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.632 [XNIO-1 task-6] vAkIjaheQsiGHJp_8Lh3iQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.637 [XNIO-1 task-5] UO2xAt9iT02llA03wAaDMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.640 [XNIO-1 task-4] Bz3GMQV8RX-kj6Qg0GxwHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.640 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bf85dbae-52a8-4d2e-9e9b-8787415119a7 +00:00:46.679 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf85dbae-52a8-4d2e-9e9b-8787415119a7 +00:00:46.679 [XNIO-1 task-4] Bz3GMQV8RX-kj6Qg0GxwHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.713 [XNIO-1 task-6] vjI_-Ng_SYOsU7il8TNKJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.713 [XNIO-1 task-6] vjI_-Ng_SYOsU7il8TNKJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.714 [XNIO-1 task-6] vjI_-Ng_SYOsU7il8TNKJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.714 [XNIO-1 task-5] q0i1YQOSTZWL3mMn2gS3dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.715 [XNIO-1 task-5] q0i1YQOSTZWL3mMn2gS3dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.715 [XNIO-1 task-6] vjI_-Ng_SYOsU7il8TNKJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:46.715 [XNIO-1 task-5] q0i1YQOSTZWL3mMn2gS3dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.716 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1d2b8a89-1092-43d4-88f4-bee24f9bd0fe +00:00:46.716 [XNIO-1 task-5] q0i1YQOSTZWL3mMn2gS3dg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:46.724 [XNIO-1 task-5] q0i1YQOSTZWL3mMn2gS3dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.725 [XNIO-1 task-5] q0i1YQOSTZWL3mMn2gS3dg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.727 [XNIO-1 task-6] vjI_-Ng_SYOsU7il8TNKJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.740 [XNIO-1 task-5] ZgvuRPQtRj6x77ja5uVl6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.740 [XNIO-1 task-5] ZgvuRPQtRj6x77ja5uVl6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.741 [XNIO-1 task-5] ZgvuRPQtRj6x77ja5uVl6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.741 [XNIO-1 task-6] lssMXJAGQ0ii-k-HyFX4Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.741 [XNIO-1 task-4] JfZ0pMC6SDyXPHz0fxD0Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.741 [XNIO-1 task-4] JfZ0pMC6SDyXPHz0fxD0Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.741 [XNIO-1 task-4] JfZ0pMC6SDyXPHz0fxD0Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.741 [XNIO-1 task-6] lssMXJAGQ0ii-k-HyFX4Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.742 [XNIO-1 task-6] lssMXJAGQ0ii-k-HyFX4Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.743 [XNIO-1 task-6] lssMXJAGQ0ii-k-HyFX4Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.746 [XNIO-1 task-6] lssMXJAGQ0ii-k-HyFX4Aw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dXY21EEeT_CMkgWt5x1u3g redirectUri = http://localhost:8080/authorization +00:00:46.747 [XNIO-1 task-5] ZgvuRPQtRj6x77ja5uVl6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 064d0f93-ab73-4727-b1f5-e22c0c1c3cc7 scope = null +00:00:46.756 [XNIO-1 task-4] JfZ0pMC6SDyXPHz0fxD0Fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.757 [XNIO-1 task-6] lssMXJAGQ0ii-k-HyFX4Aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.763 [XNIO-1 task-4] SliSrHooS62ak3oZUehEZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.763 [XNIO-1 task-4] SliSrHooS62ak3oZUehEZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.764 [XNIO-1 task-4] SliSrHooS62ak3oZUehEZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.764 [XNIO-1 task-4] SliSrHooS62ak3oZUehEZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODJjM2M5MmUtYWE1ZS00NzY2LWIwNDktOWU4YjNlY2Q3ODM2OnhZS25qMlYxUUxhcnlyVjJsd0M2LXc=", "Basic ODJjM2M5MmUtYWE1ZS00NzY2LWIwNDktOWU4YjNlY2Q3ODM2OnhZS25qMlYxUUxhcnlyVjJsd0M2LXc=", authorization) +00:00:46.771 [XNIO-1 task-5] ZgvuRPQtRj6x77ja5uVl6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.778 [XNIO-1 task-4] SliSrHooS62ak3oZUehEZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.796 [XNIO-1 task-4] 74XXUCByRMy8fRfm8EvEJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.796 [XNIO-1 task-4] 74XXUCByRMy8fRfm8EvEJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.796 [XNIO-1 task-4] 74XXUCByRMy8fRfm8EvEJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.797 [XNIO-1 task-4] 74XXUCByRMy8fRfm8EvEJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:46.797 [XNIO-1 task-5] 8cZraGBSSyqhI9YuBGLFtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.797 [XNIO-1 task-5] 8cZraGBSSyqhI9YuBGLFtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.834 [XNIO-1 task-5] 8cZraGBSSyqhI9YuBGLFtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.834 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2d30bb62-6582-4737-a5ee-372e19e415ca +00:00:46.834 [XNIO-1 task-5] 8cZraGBSSyqhI9YuBGLFtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1c7350f2-56e6-436f-ae63-d2c6fe8e0165 scope = null +00:00:46.836 [XNIO-1 task-4] 74XXUCByRMy8fRfm8EvEJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.841 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2d30bb62-6582-4737-a5ee-372e19e415ca +00:00:46.843 [XNIO-1 task-4] 6qHcrkNKTfy5q9maYpKr2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.843 [XNIO-1 task-4] 6qHcrkNKTfy5q9maYpKr2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.845 [XNIO-1 task-4] 6qHcrkNKTfy5q9maYpKr2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.846 [XNIO-1 task-4] 6qHcrkNKTfy5q9maYpKr2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.852 [XNIO-1 task-4] 6qHcrkNKTfy5q9maYpKr2Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.853 [XNIO-1 task-5] 8cZraGBSSyqhI9YuBGLFtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.863 [XNIO-1 task-4] A39hcJx_TSm4fRluEMb-LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.863 [XNIO-1 task-4] A39hcJx_TSm4fRluEMb-LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.863 [XNIO-1 task-4] A39hcJx_TSm4fRluEMb-LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.864 [XNIO-1 task-4] A39hcJx_TSm4fRluEMb-LA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.870 [XNIO-1 task-4] A39hcJx_TSm4fRluEMb-LA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.880 [XNIO-1 task-4] YAha75w-TaiWnWkicTwyhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.880 [XNIO-1 task-4] YAha75w-TaiWnWkicTwyhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.881 [XNIO-1 task-4] YAha75w-TaiWnWkicTwyhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.881 [XNIO-1 task-4] YAha75w-TaiWnWkicTwyhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.888 [XNIO-1 task-4] YAha75w-TaiWnWkicTwyhw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.895 [XNIO-1 task-4] RkuKdznUQi-GAQi4oCjDpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.895 [XNIO-1 task-4] RkuKdznUQi-GAQi4oCjDpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.896 [XNIO-1 task-4] RkuKdznUQi-GAQi4oCjDpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.896 [XNIO-1 task-4] RkuKdznUQi-GAQi4oCjDpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.904 [XNIO-1 task-4] RkuKdznUQi-GAQi4oCjDpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.916 [XNIO-1 task-4] NOYwN5BOR5iDYBhoPlhd_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.917 [XNIO-1 task-4] NOYwN5BOR5iDYBhoPlhd_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.919 [XNIO-1 task-4] NOYwN5BOR5iDYBhoPlhd_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.919 [XNIO-1 task-4] NOYwN5BOR5iDYBhoPlhd_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.921 [XNIO-1 task-5] 3hYqkwv0RR2BY8_1RUNGqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.921 [XNIO-1 task-5] 3hYqkwv0RR2BY8_1RUNGqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.921 [XNIO-1 task-5] 3hYqkwv0RR2BY8_1RUNGqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.922 [XNIO-1 task-5] 3hYqkwv0RR2BY8_1RUNGqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6Y46hMhWTTKYpLGznB-lWw redirectUri = http://localhost:8080/authorization +00:00:46.926 [XNIO-1 task-4] NOYwN5BOR5iDYBhoPlhd_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.935 [XNIO-1 task-4] pqqUNzQBQjST8sM_iVH8UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.935 [XNIO-1 task-4] pqqUNzQBQjST8sM_iVH8UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.935 [XNIO-1 task-4] pqqUNzQBQjST8sM_iVH8UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.936 [XNIO-1 task-4] pqqUNzQBQjST8sM_iVH8UA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:46.942 [XNIO-1 task-4] pqqUNzQBQjST8sM_iVH8UA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:46.944 [XNIO-1 task-5] 3hYqkwv0RR2BY8_1RUNGqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.947 [XNIO-1 task-4] HOpGgT0XRnmeDu9TmuNa8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.947 [XNIO-1 task-4] HOpGgT0XRnmeDu9TmuNa8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.947 [XNIO-1 task-4] HOpGgT0XRnmeDu9TmuNa8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.948 [XNIO-1 task-4] HOpGgT0XRnmeDu9TmuNa8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:46.957 [XNIO-1 task-4] HOpGgT0XRnmeDu9TmuNa8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.964 [XNIO-1 task-4] Zke94TmjRzmOjNVzcNLwpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.964 [XNIO-1 task-4] Zke94TmjRzmOjNVzcNLwpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.964 [XNIO-1 task-4] Zke94TmjRzmOjNVzcNLwpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.965 [XNIO-1 task-4] Zke94TmjRzmOjNVzcNLwpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:46.969 [XNIO-1 task-5] RdE0hri8S0m5BABT4rGvmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.969 [XNIO-1 task-5] RdE0hri8S0m5BABT4rGvmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.969 [XNIO-1 task-5] RdE0hri8S0m5BABT4rGvmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.970 [XNIO-1 task-5] RdE0hri8S0m5BABT4rGvmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:46.976 [XNIO-1 task-4] Zke94TmjRzmOjNVzcNLwpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:46.978 [XNIO-1 task-5] RdE0hri8S0m5BABT4rGvmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.978 [XNIO-1 task-6] cp5AluuGSaebRQ3C_vuFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:46.978 [XNIO-1 task-6] cp5AluuGSaebRQ3C_vuFtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.979 [XNIO-1 task-6] cp5AluuGSaebRQ3C_vuFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.979 [XNIO-1 task-6] cp5AluuGSaebRQ3C_vuFtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:46.987 [XNIO-1 task-5] DQ8QnEagTR22-HwXSqLZvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.988 [XNIO-1 task-5] DQ8QnEagTR22-HwXSqLZvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:46.988 [XNIO-1 task-5] DQ8QnEagTR22-HwXSqLZvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:46.988 [XNIO-1 task-5] DQ8QnEagTR22-HwXSqLZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2E0Mzk2MzYtYjc1ZS00Mzg3LTliYWQtMWM4Mjk0OGE3ZjMwOl8tOEdIQjFNUXRXSzNDUUpONzY0bHc=", "Basic Y2E0Mzk2MzYtYjc1ZS00Mzg3LTliYWQtMWM4Mjk0OGE3ZjMwOl8tOEdIQjFNUXRXSzNDUUpONzY0bHc=", authorization) +00:00:46.989 [XNIO-1 task-6] cp5AluuGSaebRQ3C_vuFtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:46.994 [XNIO-1 task-5] DQ8QnEagTR22-HwXSqLZvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:46.994 [XNIO-1 task-6] cp5AluuGSaebRQ3C_vuFtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.004 [XNIO-1 task-5] 0Pmsy_WQSnKIWhheGjoI5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.004 [XNIO-1 task-5] 0Pmsy_WQSnKIWhheGjoI5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.004 [XNIO-1 task-5] 0Pmsy_WQSnKIWhheGjoI5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.005 [XNIO-1 task-5] 0Pmsy_WQSnKIWhheGjoI5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.015 [XNIO-1 task-5] 0Pmsy_WQSnKIWhheGjoI5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.024 [XNIO-1 task-5] mI8D3RrlRiqtCRoFgByc3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.024 [XNIO-1 task-5] mI8D3RrlRiqtCRoFgByc3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.032 [XNIO-1 task-5] mI8D3RrlRiqtCRoFgByc3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.033 [XNIO-1 task-5] mI8D3RrlRiqtCRoFgByc3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.036 [XNIO-1 task-6] S0dtO5cjThiPEndzIxU5Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.037 [XNIO-1 task-6] S0dtO5cjThiPEndzIxU5Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.037 [XNIO-1 task-6] S0dtO5cjThiPEndzIxU5Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.038 [XNIO-1 task-6] S0dtO5cjThiPEndzIxU5Dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = koAoXcInT26XiYLwnfYTPw redirectUri = http://localhost:8080/authorization +00:00:47.041 [XNIO-1 task-5] mI8D3RrlRiqtCRoFgByc3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.048 [XNIO-1 task-6] S0dtO5cjThiPEndzIxU5Dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.048 [XNIO-1 task-5] YQO04d7DSW6XTpHF52LoNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.048 [XNIO-1 task-6] S0dtO5cjThiPEndzIxU5Dg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.048 [XNIO-1 task-5] YQO04d7DSW6XTpHF52LoNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.049 [XNIO-1 task-5] YQO04d7DSW6XTpHF52LoNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:47.055 [XNIO-1 task-5] YQO04d7DSW6XTpHF52LoNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.060 [XNIO-1 task-5] WLOSEAHmQg-LTewpqwxS4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.060 [XNIO-1 task-5] WLOSEAHmQg-LTewpqwxS4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.060 [XNIO-1 task-5] WLOSEAHmQg-LTewpqwxS4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.061 [XNIO-1 task-5] WLOSEAHmQg-LTewpqwxS4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", "Basic ZTFmNWYwN2EtN2I5NC00YzExLTliZWQtMThkZWQ5NDg0Nzg0OjJjaUo3QlI4UXY2bi1pMDEtbU1Ca1E=", authorization) +00:00:47.066 [XNIO-1 task-5] WLOSEAHmQg-LTewpqwxS4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.070 [XNIO-1 task-5] CNiA5_qpTPS72PfA0i3BjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.070 [XNIO-1 task-5] CNiA5_qpTPS72PfA0i3BjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.070 [XNIO-1 task-5] CNiA5_qpTPS72PfA0i3BjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.070 [XNIO-1 task-5] CNiA5_qpTPS72PfA0i3BjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:47.072 [XNIO-1 task-6] TPpzvyqmQXuiHABLJHc-cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.073 [XNIO-1 task-6] TPpzvyqmQXuiHABLJHc-cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.073 [XNIO-1 task-6] TPpzvyqmQXuiHABLJHc-cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.073 [XNIO-1 task-6] TPpzvyqmQXuiHABLJHc-cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:47.079 [XNIO-1 task-6] TPpzvyqmQXuiHABLJHc-cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.087 [XNIO-1 task-6] -IVe5RHBSV64pgP3CKD_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.088 [XNIO-1 task-6] -IVe5RHBSV64pgP3CKD_8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.088 [XNIO-1 task-6] -IVe5RHBSV64pgP3CKD_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.089 [XNIO-1 task-6] -IVe5RHBSV64pgP3CKD_8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:47.091 [XNIO-1 task-5] CNiA5_qpTPS72PfA0i3BjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.096 [XNIO-1 task-6] -IVe5RHBSV64pgP3CKD_8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.099 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6b4ef55d +00:00:47.105 [XNIO-1 task-5] HSkY-21mS0qs4oQG9dv-pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.106 [XNIO-1 task-5] HSkY-21mS0qs4oQG9dv-pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.106 [XNIO-1 task-5] HSkY-21mS0qs4oQG9dv-pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.106 [XNIO-1 task-5] HSkY-21mS0qs4oQG9dv-pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:47.111 [XNIO-1 task-6] bqoCVFixQHetrA7ZYbDDNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.112 [XNIO-1 task-6] bqoCVFixQHetrA7ZYbDDNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.112 [XNIO-1 task-6] bqoCVFixQHetrA7ZYbDDNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.113 [XNIO-1 task-6] bqoCVFixQHetrA7ZYbDDNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:47.115 [XNIO-1 task-5] HSkY-21mS0qs4oQG9dv-pw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.125 [XNIO-1 task-5] U8-X6l81TfSd_qqGHDXYSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.125 [XNIO-1 task-5] U8-X6l81TfSd_qqGHDXYSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.125 [XNIO-1 task-5] U8-X6l81TfSd_qqGHDXYSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.126 [XNIO-1 task-5] U8-X6l81TfSd_qqGHDXYSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmQzMGJiNjItNjU4Mi00NzM3LWE1ZWUtMzcyZTE5ZTQxNWNhOnpKR3pnM2hhUUEtRnVmbFBpeVBhUEE=", "Basic MmQzMGJiNjItNjU4Mi00NzM3LWE1ZWUtMzcyZTE5ZTQxNWNhOnpKR3pnM2hhUUEtRnVmbFBpeVBhUEE=", authorization) +00:00:47.129 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a7acc66b +00:00:47.133 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a7acc66b +00:00:47.136 [XNIO-1 task-5] U8-X6l81TfSd_qqGHDXYSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.143 [XNIO-1 task-6] bqoCVFixQHetrA7ZYbDDNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.145 [XNIO-1 task-5] KKCBxsedTuqUpv_r2t37-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.145 [XNIO-1 task-5] KKCBxsedTuqUpv_r2t37-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.146 [XNIO-1 task-5] KKCBxsedTuqUpv_r2t37-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.146 [XNIO-1 task-5] KKCBxsedTuqUpv_r2t37-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.152 [XNIO-1 task-4] _Cqlvgw2T_64Fb4m7pkm7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.153 [XNIO-1 task-4] _Cqlvgw2T_64Fb4m7pkm7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.153 [XNIO-1 task-4] _Cqlvgw2T_64Fb4m7pkm7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.153 [XNIO-1 task-4] _Cqlvgw2T_64Fb4m7pkm7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.154 [XNIO-1 task-4] _Cqlvgw2T_64Fb4m7pkm7w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MLaB36AvRNCj91-nfg-5Rw redirectUri = http://localhost:8080/authorization +00:00:47.161 [XNIO-1 task-5] QuxqzqvjTI6DXKsJ15kfgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.162 [XNIO-1 task-5] QuxqzqvjTI6DXKsJ15kfgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.163 [XNIO-1 task-5] QuxqzqvjTI6DXKsJ15kfgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.164 [XNIO-1 task-5] QuxqzqvjTI6DXKsJ15kfgA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.168 [XNIO-1 task-4] _Cqlvgw2T_64Fb4m7pkm7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.171 [XNIO-1 task-5] QuxqzqvjTI6DXKsJ15kfgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.178 [XNIO-1 task-5] 0QAF1cHtRM2sQs2k98bWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.180 [XNIO-1 task-5] 0QAF1cHtRM2sQs2k98bWtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.180 [XNIO-1 task-5] 0QAF1cHtRM2sQs2k98bWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.181 [XNIO-1 task-5] 0QAF1cHtRM2sQs2k98bWtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", authorization) +00:00:47.188 [XNIO-1 task-5] 0QAF1cHtRM2sQs2k98bWtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.197 [XNIO-1 task-5] TKtt9B9xRKWW0U74zdxMsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.197 [XNIO-1 task-5] TKtt9B9xRKWW0U74zdxMsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.197 [XNIO-1 task-5] TKtt9B9xRKWW0U74zdxMsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.198 [XNIO-1 task-5] TKtt9B9xRKWW0U74zdxMsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", authorization) +00:00:47.211 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7acc66b +00:00:47.224 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7acc66b +00:00:47.228 [XNIO-1 task-5] TKtt9B9xRKWW0U74zdxMsg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.239 [XNIO-1 task-5] CqZ0YXsnQDikb4U5spCsOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.239 [XNIO-1 task-5] CqZ0YXsnQDikb4U5spCsOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.245 [XNIO-1 task-5] CqZ0YXsnQDikb4U5spCsOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.245 [XNIO-1 task-5] CqZ0YXsnQDikb4U5spCsOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", authorization) +00:00:47.251 [XNIO-1 task-5] CqZ0YXsnQDikb4U5spCsOA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.259 [XNIO-1 task-5] VyGSrOIuT7aGu0IFAF3FSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.259 [XNIO-1 task-5] VyGSrOIuT7aGu0IFAF3FSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.260 [XNIO-1 task-5] VyGSrOIuT7aGu0IFAF3FSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.260 [XNIO-1 task-5] VyGSrOIuT7aGu0IFAF3FSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", "Basic YzNlN2U4YzUtNGMxYi00MmJhLTllYjgtOTE5ZjhjN2UwYzNiOm1TY1NHZDBXUS1HeERXLW9URTRtVHc=", authorization) +00:00:47.266 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1d2b8a89-1092-43d4-88f4-bee24f9bd0fe +00:00:47.268 [XNIO-1 task-5] VyGSrOIuT7aGu0IFAF3FSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.283 [XNIO-1 task-5] sEbJPTjOT86rNPWqGh5pZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.283 [XNIO-1 task-5] sEbJPTjOT86rNPWqGh5pZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.283 [XNIO-1 task-5] sEbJPTjOT86rNPWqGh5pZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.284 [XNIO-1 task-5] sEbJPTjOT86rNPWqGh5pZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.289 [XNIO-1 task-5] sEbJPTjOT86rNPWqGh5pZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.299 [XNIO-1 task-5] Bwt_C8X-SDq0ixrEHeBjhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.299 [XNIO-1 task-5] Bwt_C8X-SDq0ixrEHeBjhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.299 [XNIO-1 task-5] Bwt_C8X-SDq0ixrEHeBjhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.300 [XNIO-1 task-5] Bwt_C8X-SDq0ixrEHeBjhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.309 [XNIO-1 task-5] Bwt_C8X-SDq0ixrEHeBjhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.312 [XNIO-1 task-4] p9N1GB6ERDG_aNVajRarVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.313 [XNIO-1 task-4] p9N1GB6ERDG_aNVajRarVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.313 [XNIO-1 task-4] p9N1GB6ERDG_aNVajRarVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.314 [XNIO-1 task-4] p9N1GB6ERDG_aNVajRarVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = TGV-bdnVTFiXtltTBvfTYw redirectUri = http://localhost:8080/authorization +00:00:47.323 [XNIO-1 task-5] CYTiSejUSZeYnDDq2J3Ugg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.323 [XNIO-1 task-5] CYTiSejUSZeYnDDq2J3Ugg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.324 [XNIO-1 task-5] CYTiSejUSZeYnDDq2J3Ugg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.325 [XNIO-1 task-5] CYTiSejUSZeYnDDq2J3Ugg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.330 [XNIO-1 task-5] CYTiSejUSZeYnDDq2J3Ugg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.334 [XNIO-1 task-4] p9N1GB6ERDG_aNVajRarVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.337 [XNIO-1 task-5] L2DuSPoiT9eow5MbmpLCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.337 [XNIO-1 task-5] L2DuSPoiT9eow5MbmpLCsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.337 [XNIO-1 task-5] L2DuSPoiT9eow5MbmpLCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.338 [XNIO-1 task-5] L2DuSPoiT9eow5MbmpLCsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", authorization) +00:00:47.345 [XNIO-1 task-5] L2DuSPoiT9eow5MbmpLCsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.355 [XNIO-1 task-4] GR94BUsPQESWhWxp07QOnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.355 [XNIO-1 task-4] GR94BUsPQESWhWxp07QOnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.355 [XNIO-1 task-4] GR94BUsPQESWhWxp07QOnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.356 [XNIO-1 task-4] GR94BUsPQESWhWxp07QOnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:47.361 [XNIO-1 task-4] GR94BUsPQESWhWxp07QOnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.368 [XNIO-1 task-4] jEbUMhyATIasbXnOqw_aRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.369 [XNIO-1 task-4] jEbUMhyATIasbXnOqw_aRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.370 [XNIO-1 task-4] jEbUMhyATIasbXnOqw_aRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.372 [XNIO-1 task-4] jEbUMhyATIasbXnOqw_aRA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:47.377 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7acc66b +00:00:47.378 [XNIO-1 task-4] jEbUMhyATIasbXnOqw_aRA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.384 [XNIO-1 task-4] 51uy2VbbSVm_YI5ntrskNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.384 [XNIO-1 task-4] 51uy2VbbSVm_YI5ntrskNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.385 [XNIO-1 task-4] 51uy2VbbSVm_YI5ntrskNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.385 [XNIO-1 task-4] 51uy2VbbSVm_YI5ntrskNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:47.392 [XNIO-1 task-4] 51uy2VbbSVm_YI5ntrskNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.393 [XNIO-1 task-5] 0Uo35SSkSpa1KUeg3YCVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.393 [XNIO-1 task-5] 0Uo35SSkSpa1KUeg3YCVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.394 [XNIO-1 task-5] 0Uo35SSkSpa1KUeg3YCVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.394 [XNIO-1 task-5] 0Uo35SSkSpa1KUeg3YCVpg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jKaR-rycQaepld_EvFi1GQ redirectUri = http://localhost:8080/authorization +00:00:47.408 [XNIO-1 task-4] 30HGEldjSga58CGVguiOeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.409 [XNIO-1 task-4] 30HGEldjSga58CGVguiOeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.409 [XNIO-1 task-4] 30HGEldjSga58CGVguiOeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.410 [XNIO-1 task-4] 30HGEldjSga58CGVguiOeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:47.410 [XNIO-1 task-5] 0Uo35SSkSpa1KUeg3YCVpg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.410 [XNIO-1 task-5] 0Uo35SSkSpa1KUeg3YCVpg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.416 [XNIO-1 task-6] w0d1vek1TuObWuFf8YvnaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.416 [XNIO-1 task-6] w0d1vek1TuObWuFf8YvnaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.417 [XNIO-1 task-6] w0d1vek1TuObWuFf8YvnaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.417 [XNIO-1 task-6] w0d1vek1TuObWuFf8YvnaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:47.417 [XNIO-1 task-6] w0d1vek1TuObWuFf8YvnaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = GWmNik6tRTi9Ec4bIMjsAg redirectUri = http://localhost:8080/authorization +00:00:47.424 [XNIO-1 task-4] ufdo2TaQRm-Nx9Wda8Cxmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.424 [XNIO-1 task-4] ufdo2TaQRm-Nx9Wda8Cxmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.424 [XNIO-1 task-6] w0d1vek1TuObWuFf8YvnaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.424 [XNIO-1 task-4] ufdo2TaQRm-Nx9Wda8Cxmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.425 [XNIO-1 task-4] ufdo2TaQRm-Nx9Wda8Cxmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:47.430 [XNIO-1 task-4] ufdo2TaQRm-Nx9Wda8Cxmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.440 [XNIO-1 task-4] 5Jp3zRegScySCaHAGsuSAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.440 [XNIO-1 task-4] 5Jp3zRegScySCaHAGsuSAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.442 [XNIO-1 task-4] 5Jp3zRegScySCaHAGsuSAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.442 [XNIO-1 task-4] 5Jp3zRegScySCaHAGsuSAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:47.443 [XNIO-1 task-6] jNQYis92TZujvUtqv_EWKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.443 [XNIO-1 task-6] jNQYis92TZujvUtqv_EWKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.443 [XNIO-1 task-6] jNQYis92TZujvUtqv_EWKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.444 [XNIO-1 task-6] jNQYis92TZujvUtqv_EWKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:47.453 [XNIO-1 task-4] 5Jp3zRegScySCaHAGsuSAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.459 [XNIO-1 task-4] bds6egh4TlqM836sE-vQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.459 [XNIO-1 task-4] bds6egh4TlqM836sE-vQ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.459 [XNIO-1 task-4] bds6egh4TlqM836sE-vQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.460 [XNIO-1 task-4] bds6egh4TlqM836sE-vQ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:47.463 [XNIO-1 task-6] jNQYis92TZujvUtqv_EWKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.467 [XNIO-1 task-4] bds6egh4TlqM836sE-vQ-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.478 [XNIO-1 task-4] vAs70UaoS6aJUb0h-wHkCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.478 [XNIO-1 task-4] vAs70UaoS6aJUb0h-wHkCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.478 [XNIO-1 task-4] vAs70UaoS6aJUb0h-wHkCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.479 [XNIO-1 task-4] vAs70UaoS6aJUb0h-wHkCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:47.488 [XNIO-1 task-6] j-cn-he4SEqT5IpjxRpYOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.488 [XNIO-1 task-6] j-cn-he4SEqT5IpjxRpYOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.489 [XNIO-1 task-6] j-cn-he4SEqT5IpjxRpYOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.489 [XNIO-1 task-6] j-cn-he4SEqT5IpjxRpYOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:47.498 [XNIO-1 task-4] vAs70UaoS6aJUb0h-wHkCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.503 [XNIO-1 task-4] D31O5XerSJKcwacfSga__A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.504 [XNIO-1 task-4] D31O5XerSJKcwacfSga__A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.504 [XNIO-1 task-4] D31O5XerSJKcwacfSga__A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.504 [XNIO-1 task-4] D31O5XerSJKcwacfSga__A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:47.512 [XNIO-1 task-6] j-cn-he4SEqT5IpjxRpYOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.511 [XNIO-1 task-4] D31O5XerSJKcwacfSga__A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.524 [XNIO-1 task-5] GXXrutuzT6iMzfOVN4cfJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.526 [XNIO-1 task-5] GXXrutuzT6iMzfOVN4cfJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.526 [XNIO-1 task-5] GXXrutuzT6iMzfOVN4cfJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.525 [XNIO-1 task-4] qe1VukUQQE2eg9hyP2AHTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.527 [XNIO-1 task-4] qe1VukUQQE2eg9hyP2AHTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.527 [XNIO-1 task-5] GXXrutuzT6iMzfOVN4cfJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.527 [XNIO-1 task-4] qe1VukUQQE2eg9hyP2AHTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.528 [XNIO-1 task-4] qe1VukUQQE2eg9hyP2AHTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:47.532 [XNIO-1 task-5] GXXrutuzT6iMzfOVN4cfJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.534 [XNIO-1 task-4] qe1VukUQQE2eg9hyP2AHTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.534 [XNIO-1 task-4] qe1VukUQQE2eg9hyP2AHTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.536 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:55acad2c-4fa3-493e-b94f-973fef67f009 +00:00:47.537 [XNIO-1 task-5] bDAgM1tBTMGAUsE5iZjm8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.537 [XNIO-1 task-5] bDAgM1tBTMGAUsE5iZjm8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.538 [XNIO-1 task-5] bDAgM1tBTMGAUsE5iZjm8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.538 [XNIO-1 task-5] bDAgM1tBTMGAUsE5iZjm8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.544 [XNIO-1 task-5] bDAgM1tBTMGAUsE5iZjm8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.550 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a7acc66b +00:00:47.556 [XNIO-1 task-5] QtZfW-j3TEm4P6goJ-HDfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.556 [XNIO-1 task-6] 1jUk5z1uSYqzEEgl3lF60Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.556 [XNIO-1 task-6] 1jUk5z1uSYqzEEgl3lF60Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.556 [XNIO-1 task-6] 1jUk5z1uSYqzEEgl3lF60Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.556 [XNIO-1 task-6] 1jUk5z1uSYqzEEgl3lF60Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.556 [XNIO-1 task-6] 1jUk5z1uSYqzEEgl3lF60Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.557 [XNIO-1 task-5] QtZfW-j3TEm4P6goJ-HDfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:47.558 [XNIO-1 task-5] QtZfW-j3TEm4P6goJ-HDfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = isUwsjE6QyC_n_YR7I4QFw redirectUri = http://localhost:8080/authorization +00:00:47.562 [XNIO-1 task-4] Dn1l12MtRByquohCMnFDyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.562 [XNIO-1 task-4] Dn1l12MtRByquohCMnFDyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.564 [XNIO-1 task-6] 1jUk5z1uSYqzEEgl3lF60Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.564 [XNIO-1 task-6] 1jUk5z1uSYqzEEgl3lF60Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.565 [XNIO-1 task-4] Dn1l12MtRByquohCMnFDyQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 55acad2c-4fa3-493e-b94f-973fef67f009 scope = null +00:00:47.568 [XNIO-1 task-5] QtZfW-j3TEm4P6goJ-HDfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.574 [XNIO-1 task-6] 6wpHTj_AT5OU4PUg9G0fJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.574 [XNIO-1 task-6] 6wpHTj_AT5OU4PUg9G0fJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.574 [XNIO-1 task-5] QtZfW-j3TEm4P6goJ-HDfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.574 [XNIO-1 task-6] 6wpHTj_AT5OU4PUg9G0fJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.575 [XNIO-1 task-6] 6wpHTj_AT5OU4PUg9G0fJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.582 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7acc66b +00:00:47.583 [XNIO-1 task-6] 6wpHTj_AT5OU4PUg9G0fJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.586 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:173eae79 +00:00:47.590 [XNIO-1 task-4] Dn1l12MtRByquohCMnFDyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.594 [XNIO-1 task-6] -hn-B8WNQHG7QRbRtVbGqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.594 [XNIO-1 task-6] -hn-B8WNQHG7QRbRtVbGqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.594 [XNIO-1 task-6] -hn-B8WNQHG7QRbRtVbGqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.595 [XNIO-1 task-6] -hn-B8WNQHG7QRbRtVbGqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:47.599 [XNIO-1 task-5] 50LZvlfjTC-2KHLdmiBguA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.599 [XNIO-1 task-5] 50LZvlfjTC-2KHLdmiBguA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.600 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a7acc66b +00:00:47.600 [XNIO-1 task-5] 50LZvlfjTC-2KHLdmiBguA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.601 [XNIO-1 task-5] 50LZvlfjTC-2KHLdmiBguA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.607 [XNIO-1 task-5] 50LZvlfjTC-2KHLdmiBguA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.613 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:173eae79 +00:00:47.613 [XNIO-1 task-5] spyLffgHQMOdf3LYUaM37g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.613 [XNIO-1 task-5] spyLffgHQMOdf3LYUaM37g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.613 [XNIO-1 task-6] -hn-B8WNQHG7QRbRtVbGqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.614 [XNIO-1 task-5] spyLffgHQMOdf3LYUaM37g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.614 [XNIO-1 task-5] spyLffgHQMOdf3LYUaM37g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.621 [XNIO-1 task-5] spyLffgHQMOdf3LYUaM37g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.629 [XNIO-1 task-5] lWVQUv5KS_iG3yzHrjVQnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.630 [XNIO-1 task-5] lWVQUv5KS_iG3yzHrjVQnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.631 [XNIO-1 task-5] lWVQUv5KS_iG3yzHrjVQnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.631 [XNIO-1 task-5] lWVQUv5KS_iG3yzHrjVQnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.638 [XNIO-1 task-5] lWVQUv5KS_iG3yzHrjVQnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.651 [XNIO-1 task-5] GZjrn_HWSfyjp0WdyT2Niw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.651 [XNIO-1 task-5] GZjrn_HWSfyjp0WdyT2Niw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.651 [XNIO-1 task-5] GZjrn_HWSfyjp0WdyT2Niw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.653 [XNIO-1 task-5] GZjrn_HWSfyjp0WdyT2Niw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:47.659 [XNIO-1 task-6] lwe-EowgTriLyJrXumxtaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.659 [XNIO-1 task-6] lwe-EowgTriLyJrXumxtaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.660 [XNIO-1 task-6] lwe-EowgTriLyJrXumxtaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.660 [XNIO-1 task-5] GZjrn_HWSfyjp0WdyT2Niw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.660 [XNIO-1 task-6] lwe-EowgTriLyJrXumxtaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", authorization) +00:00:47.675 [XNIO-1 task-6] lwe-EowgTriLyJrXumxtaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.675 [XNIO-1 task-5] 0A7tn7c4T3qs76n9aOD4bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.675 [XNIO-1 task-6] lwe-EowgTriLyJrXumxtaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.675 [XNIO-1 task-5] 0A7tn7c4T3qs76n9aOD4bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.675 [XNIO-1 task-5] 0A7tn7c4T3qs76n9aOD4bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.676 [XNIO-1 task-5] 0A7tn7c4T3qs76n9aOD4bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", authorization) +00:00:47.682 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d7a9ba98-0893-493d-ae64-c11cc032d167 +00:00:47.682 [XNIO-1 task-5] 0A7tn7c4T3qs76n9aOD4bQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.686 [XNIO-1 task-5] zWzYJZ2OSm2OFW0XCSqx7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.687 [XNIO-1 task-5] zWzYJZ2OSm2OFW0XCSqx7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.687 [XNIO-1 task-5] zWzYJZ2OSm2OFW0XCSqx7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.687 [XNIO-1 task-5] zWzYJZ2OSm2OFW0XCSqx7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", authorization) +00:00:47.693 [XNIO-1 task-5] zWzYJZ2OSm2OFW0XCSqx7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.701 [XNIO-1 task-5] mK559aIGQcCk3RR0N-xkJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.701 [XNIO-1 task-5] mK559aIGQcCk3RR0N-xkJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.701 [XNIO-1 task-5] mK559aIGQcCk3RR0N-xkJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.702 [XNIO-1 task-5] mK559aIGQcCk3RR0N-xkJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:47.703 [XNIO-1 task-6] XygX5hXvTumu-J0z8rHRjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.703 [XNIO-1 task-6] XygX5hXvTumu-J0z8rHRjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.703 [XNIO-1 task-6] XygX5hXvTumu-J0z8rHRjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.703 [XNIO-1 task-6] XygX5hXvTumu-J0z8rHRjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", authorization) +00:00:47.709 [XNIO-1 task-6] XygX5hXvTumu-J0z8rHRjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.712 [XNIO-1 task-6] 8EeSk_SvRN6v_sfBlr81RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.713 [XNIO-1 task-6] 8EeSk_SvRN6v_sfBlr81RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.713 [XNIO-1 task-6] 8EeSk_SvRN6v_sfBlr81RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.713 [XNIO-1 task-6] 8EeSk_SvRN6v_sfBlr81RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", authorization) +00:00:47.719 [XNIO-1 task-4] TMrmxW2BTo2mHoYBDmHEwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.719 [XNIO-1 task-4] TMrmxW2BTo2mHoYBDmHEwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.719 [XNIO-1 task-4] TMrmxW2BTo2mHoYBDmHEwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.720 [XNIO-1 task-4] TMrmxW2BTo2mHoYBDmHEwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:47.721 [XNIO-1 task-6] 8EeSk_SvRN6v_sfBlr81RQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.721 [XNIO-1 task-6] 8EeSk_SvRN6v_sfBlr81RQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.726 [XNIO-1 task-4] TMrmxW2BTo2mHoYBDmHEwQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.728 [XNIO-1 task-5] mK559aIGQcCk3RR0N-xkJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.735 [XNIO-1 task-4] xRRM0lMXRju98DpJem-_Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.737 [XNIO-1 task-4] xRRM0lMXRju98DpJem-_Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.737 [XNIO-1 task-4] xRRM0lMXRju98DpJem-_Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.738 [XNIO-1 task-4] xRRM0lMXRju98DpJem-_Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:47.743 [XNIO-1 task-4] xRRM0lMXRju98DpJem-_Bw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.751 [XNIO-1 task-4] 2riE-rCdSiywlxPIkAAJ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.752 [XNIO-1 task-4] 2riE-rCdSiywlxPIkAAJ7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.752 [XNIO-1 task-4] 2riE-rCdSiywlxPIkAAJ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.752 [XNIO-1 task-4] 2riE-rCdSiywlxPIkAAJ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:47.755 [XNIO-1 task-5] FtjLqo92Tgm_qOqdnqaN4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.755 [XNIO-1 task-5] FtjLqo92Tgm_qOqdnqaN4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.755 [XNIO-1 task-5] FtjLqo92Tgm_qOqdnqaN4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.756 [XNIO-1 task-5] FtjLqo92Tgm_qOqdnqaN4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", "Basic MjFmNWViMzQtNmM3MC00OTIxLWFmMTgtMzdhNjAwYmU3YTAzOjVZcWUwT3g4U2h1R1V6MGZNbjBhRXc=", authorization) +00:00:47.761 [XNIO-1 task-5] FtjLqo92Tgm_qOqdnqaN4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.767 [XNIO-1 task-4] 2riE-rCdSiywlxPIkAAJ7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.767 [XNIO-1 task-5] q6GxkcSFSrqfigfyaZhm2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.767 [XNIO-1 task-5] q6GxkcSFSrqfigfyaZhm2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.768 [XNIO-1 task-5] q6GxkcSFSrqfigfyaZhm2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.768 [XNIO-1 task-5] q6GxkcSFSrqfigfyaZhm2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:47.775 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:173eae79 +00:00:47.779 [XNIO-1 task-5] q6GxkcSFSrqfigfyaZhm2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.790 [XNIO-1 task-5] 4Eujj_BURqiorHTTy02l2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.790 [XNIO-1 task-5] 4Eujj_BURqiorHTTy02l2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.790 [XNIO-1 task-5] 4Eujj_BURqiorHTTy02l2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.791 [XNIO-1 task-5] 4Eujj_BURqiorHTTy02l2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:47.796 [XNIO-1 task-5] 4Eujj_BURqiorHTTy02l2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.802 [XNIO-1 task-5] KSDx3TbXQA6J18YnYkg1Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.802 [XNIO-1 task-5] KSDx3TbXQA6J18YnYkg1Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.802 [XNIO-1 task-5] KSDx3TbXQA6J18YnYkg1Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.803 [XNIO-1 task-5] KSDx3TbXQA6J18YnYkg1Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:47.809 [XNIO-1 task-5] KSDx3TbXQA6J18YnYkg1Ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.816 [XNIO-1 task-5] PgVq0Xe2TlytG_aSOh8lgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.817 [XNIO-1 task-5] PgVq0Xe2TlytG_aSOh8lgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.817 [XNIO-1 task-5] PgVq0Xe2TlytG_aSOh8lgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.818 [XNIO-1 task-5] PgVq0Xe2TlytG_aSOh8lgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:47.823 [XNIO-1 task-5] PgVq0Xe2TlytG_aSOh8lgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.829 [XNIO-1 task-5] oEBLkOWcTASuEF6teemkaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.830 [XNIO-1 task-5] oEBLkOWcTASuEF6teemkaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.830 [XNIO-1 task-5] oEBLkOWcTASuEF6teemkaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.831 [XNIO-1 task-5] oEBLkOWcTASuEF6teemkaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:47.836 [XNIO-1 task-5] oEBLkOWcTASuEF6teemkaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.863 [XNIO-1 task-5] vb-dY1h9Q1O9tjd51x58iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.863 [XNIO-1 task-5] vb-dY1h9Q1O9tjd51x58iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.863 [XNIO-1 task-5] vb-dY1h9Q1O9tjd51x58iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.863 [XNIO-1 task-5] vb-dY1h9Q1O9tjd51x58iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.863 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ca439636-b75e-4387-9bad-1c82948a7f30 +00:00:47.863 [XNIO-1 task-4] RHvE_ucUSV-RPxZTF9ZZqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.863 [XNIO-1 task-4] RHvE_ucUSV-RPxZTF9ZZqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.864 [XNIO-1 task-4] RHvE_ucUSV-RPxZTF9ZZqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:47.864 [XNIO-1 task-4] RHvE_ucUSV-RPxZTF9ZZqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = zULEYbJaSj6nsxAed-mDVw redirectUri = http://localhost:8080/authorization +00:00:47.869 [XNIO-1 task-5] vb-dY1h9Q1O9tjd51x58iQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.879 [XNIO-1 task-4] RHvE_ucUSV-RPxZTF9ZZqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.879 [XNIO-1 task-6] g74gz0M5QPKPZk7TQu2D-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.880 [XNIO-1 task-6] g74gz0M5QPKPZk7TQu2D-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.880 [XNIO-1 task-5] w8AQ6Y7BTTuUx4RyGfpVWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.880 [XNIO-1 task-6] g74gz0M5QPKPZk7TQu2D-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.880 [XNIO-1 task-5] w8AQ6Y7BTTuUx4RyGfpVWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.880 [XNIO-1 task-5] w8AQ6Y7BTTuUx4RyGfpVWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 29, 2024 12:00:47 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:47.881 [XNIO-1 task-5] w8AQ6Y7BTTuUx4RyGfpVWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.881 [XNIO-1 task-6] g74gz0M5QPKPZk7TQu2D-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6q9sBXzIQqK3wHO4cPbc1w redirectUri = http://localhost:8080/authorization +00:00:47.887 [XNIO-1 task-5] w8AQ6Y7BTTuUx4RyGfpVWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.889 [XNIO-1 task-6] g74gz0M5QPKPZk7TQu2D-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +00:00:47.896 [XNIO-1 task-5] 2NzyEYTWT-ahu0jb30tWXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:47.896 [XNIO-1 task-5] 2NzyEYTWT-ahu0jb30tWXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:47.902 [XNIO-1 task-5] 2NzyEYTWT-ahu0jb30tWXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.909 [XNIO-1 task-5] dcXn39ntRaaS3PrBe2-1xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:47.909 [XNIO-1 task-5] dcXn39ntRaaS3PrBe2-1xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.909 [XNIO-1 task-5] dcXn39ntRaaS3PrBe2-1xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.910 [XNIO-1 task-5] dcXn39ntRaaS3PrBe2-1xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9c65e175-9d4c-47e1-ab7e-682d71fbeadb scope = null +00:00:47.910 [XNIO-1 task-4] dGMDVD10TR2CBwBkAujLZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.910 [XNIO-1 task-4] dGMDVD10TR2CBwBkAujLZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.911 [XNIO-1 task-4] dGMDVD10TR2CBwBkAujLZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:47.911 [XNIO-1 task-4] dGMDVD10TR2CBwBkAujLZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:47.941 [XNIO-1 task-4] dGMDVD10TR2CBwBkAujLZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.951 [XNIO-1 task-5] dcXn39ntRaaS3PrBe2-1xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.954 [XNIO-1 task-4] TzyzfnY9S-iebI1k7oycgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.955 [XNIO-1 task-4] TzyzfnY9S-iebI1k7oycgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.955 [XNIO-1 task-4] TzyzfnY9S-iebI1k7oycgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.956 [XNIO-1 task-4] TzyzfnY9S-iebI1k7oycgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:47.961 [XNIO-1 task-4] TzyzfnY9S-iebI1k7oycgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.980 [XNIO-1 task-5] fQGAcMvSTMOvIJBva7B5aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.980 [XNIO-1 task-5] fQGAcMvSTMOvIJBva7B5aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.980 [XNIO-1 task-5] fQGAcMvSTMOvIJBva7B5aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.981 [XNIO-1 task-5] fQGAcMvSTMOvIJBva7B5aA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:47.984 [XNIO-1 task-4] 15t-24DTSLCaZYEspHZxuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.985 [XNIO-1 task-4] 15t-24DTSLCaZYEspHZxuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.985 [XNIO-1 task-4] 15t-24DTSLCaZYEspHZxuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.988 [XNIO-1 task-4] 15t-24DTSLCaZYEspHZxuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzAzNzQxMzUtNTJjYS00ZGM0LWJiMjUtYjExMjE2YzE0YjYxOmE1ZXE0WlJiU0NDdWRFRFlOQjM2dmc=", "Basic MzAzNzQxMzUtNTJjYS00ZGM0LWJiMjUtYjExMjE2YzE0YjYxOmE1ZXE0WlJiU0NDdWRFRFlOQjM2dmc=", authorization) +00:00:47.987 [XNIO-1 task-5] fQGAcMvSTMOvIJBva7B5aA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:47.994 [XNIO-1 task-5] TBNzPYGoRsKqkTosFEhB5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.994 [XNIO-1 task-5] TBNzPYGoRsKqkTosFEhB5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:47.994 [XNIO-1 task-5] TBNzPYGoRsKqkTosFEhB5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:47.995 [XNIO-1 task-5] TBNzPYGoRsKqkTosFEhB5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:47.996 [XNIO-1 task-4] 15t-24DTSLCaZYEspHZxuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:47.996 [XNIO-1 task-4] 15t-24DTSLCaZYEspHZxuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:47.998 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0f3e0129-687b-48c7-8154-358521a9b9bf +00:00:48.001 [XNIO-1 task-5] TBNzPYGoRsKqkTosFEhB5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.008 [XNIO-1 task-5] WPLi56yATf2nMX2h6YdeXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.008 [XNIO-1 task-5] WPLi56yATf2nMX2h6YdeXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.009 [XNIO-1 task-5] WPLi56yATf2nMX2h6YdeXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.009 [XNIO-1 task-5] WPLi56yATf2nMX2h6YdeXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.015 [XNIO-1 task-5] WPLi56yATf2nMX2h6YdeXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.016 [XNIO-1 task-4] 8l20NfaYQLKgDsqmBPGk5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.016 [XNIO-1 task-4] 8l20NfaYQLKgDsqmBPGk5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.017 [XNIO-1 task-4] 8l20NfaYQLKgDsqmBPGk5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.017 [XNIO-1 task-4] 8l20NfaYQLKgDsqmBPGk5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:48.022 [XNIO-1 task-5] 9wIG-YFpROSzhN2k9Tr4oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.022 [XNIO-1 task-5] 9wIG-YFpROSzhN2k9Tr4oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.022 [XNIO-1 task-5] 9wIG-YFpROSzhN2k9Tr4oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.023 [XNIO-1 task-5] 9wIG-YFpROSzhN2k9Tr4oA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", authorization) +00:00:48.027 [XNIO-1 task-4] 8l20NfaYQLKgDsqmBPGk5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.027 [XNIO-1 task-4] 8l20NfaYQLKgDsqmBPGk5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.029 [XNIO-1 task-5] 9wIG-YFpROSzhN2k9Tr4oA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.036 [XNIO-1 task-5] fqoCmPmbRseTJ6h6rmEM8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.037 [XNIO-1 task-5] fqoCmPmbRseTJ6h6rmEM8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.038 [XNIO-1 task-5] fqoCmPmbRseTJ6h6rmEM8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.038 [XNIO-1 task-5] fqoCmPmbRseTJ6h6rmEM8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.046 [XNIO-1 task-5] fqoCmPmbRseTJ6h6rmEM8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.057 [XNIO-1 task-5] p5acTB8WQ7efdCqIclgPnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.057 [XNIO-1 task-5] p5acTB8WQ7efdCqIclgPnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.058 [XNIO-1 task-5] p5acTB8WQ7efdCqIclgPnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.058 [XNIO-1 task-5] p5acTB8WQ7efdCqIclgPnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.066 [XNIO-1 task-5] p5acTB8WQ7efdCqIclgPnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.072 [XNIO-1 task-5] QaA_hcUCR7a7SrP-viGyDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.072 [XNIO-1 task-5] QaA_hcUCR7a7SrP-viGyDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.073 [XNIO-1 task-5] QaA_hcUCR7a7SrP-viGyDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.073 [XNIO-1 task-5] QaA_hcUCR7a7SrP-viGyDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.080 [XNIO-1 task-5] QaA_hcUCR7a7SrP-viGyDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.085 [XNIO-1 task-5] Obt00lbzSdm9IaYrwOlVWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.085 [XNIO-1 task-5] Obt00lbzSdm9IaYrwOlVWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.085 [XNIO-1 task-5] Obt00lbzSdm9IaYrwOlVWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.085 [XNIO-1 task-5] Obt00lbzSdm9IaYrwOlVWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.092 [XNIO-1 task-5] Obt00lbzSdm9IaYrwOlVWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.097 [XNIO-1 task-4] n-xJPxx-QTuFcBivj3Z-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.097 [XNIO-1 task-4] n-xJPxx-QTuFcBivj3Z-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.097 [XNIO-1 task-4] n-xJPxx-QTuFcBivj3Z-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.099 [XNIO-1 task-4] n-xJPxx-QTuFcBivj3Z-nw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = E3nodQnCQ6OR-LxCuqqePw redirectUri = http://localhost:8080/authorization +00:00:48.100 [XNIO-1 task-5] lrrO0t69Q9-TdZ9D4PRWTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.100 [XNIO-1 task-5] lrrO0t69Q9-TdZ9D4PRWTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.100 [XNIO-1 task-5] lrrO0t69Q9-TdZ9D4PRWTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.102 [XNIO-1 task-5] lrrO0t69Q9-TdZ9D4PRWTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.105 [XNIO-1 task-4] n-xJPxx-QTuFcBivj3Z-nw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.115 [XNIO-1 task-4] n-xJPxx-QTuFcBivj3Z-nw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.118 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.127 [XNIO-1 task-5] FQhITAXqSk-IP0Fgq__czA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.128 [XNIO-1 task-5] FQhITAXqSk-IP0Fgq__czA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.128 [XNIO-1 task-5] FQhITAXqSk-IP0Fgq__czA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.128 [XNIO-1 task-5] FQhITAXqSk-IP0Fgq__czA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:48.137 [XNIO-1 task-5] FQhITAXqSk-IP0Fgq__czA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.143 [XNIO-1 task-4] 3MkUYV3oTKigt08B23Vemw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.143 [XNIO-1 task-4] 3MkUYV3oTKigt08B23Vemw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.143 [XNIO-1 task-4] 3MkUYV3oTKigt08B23Vemw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.144 [XNIO-1 task-4] 3MkUYV3oTKigt08B23Vemw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", "Basic N2UxZmYxZDktNjhhOC00MzMyLWJkYTMtNzMyODg2NTQ0YjIwOk9DOTNnWnEwUUthSWw4MkhaOF9HVHc=", authorization) +00:00:48.149 [XNIO-1 task-5] EHyyOrOLRY2ji9nDG60FHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.150 [XNIO-1 task-5] EHyyOrOLRY2ji9nDG60FHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.150 [XNIO-1 task-5] EHyyOrOLRY2ji9nDG60FHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.150 [XNIO-1 task-5] EHyyOrOLRY2ji9nDG60FHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:48.153 [XNIO-1 task-4] 3MkUYV3oTKigt08B23Vemw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:48.157 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:97412e99 +00:00:48.158 [XNIO-1 task-5] EHyyOrOLRY2ji9nDG60FHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.161 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:eb5000ea-aaa6-4631-81d0-a8fef159be1b +00:00:48.166 [XNIO-1 task-5] F1uxj0MFTrm5Y2AMQDDa-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.166 [XNIO-1 task-5] F1uxj0MFTrm5Y2AMQDDa-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.167 [XNIO-1 task-5] F1uxj0MFTrm5Y2AMQDDa-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.168 [XNIO-1 task-5] F1uxj0MFTrm5Y2AMQDDa-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.175 [XNIO-1 task-5] F1uxj0MFTrm5Y2AMQDDa-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.183 [XNIO-1 task-5] SFDXJzA1RDWgrVDRMVyWxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.183 [XNIO-1 task-5] SFDXJzA1RDWgrVDRMVyWxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.183 [XNIO-1 task-5] SFDXJzA1RDWgrVDRMVyWxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.184 [XNIO-1 task-5] SFDXJzA1RDWgrVDRMVyWxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:48.186 [XNIO-1 task-4] m94w00wqTBKVzTh3zoKgLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.186 [XNIO-1 task-4] m94w00wqTBKVzTh3zoKgLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.187 [XNIO-1 task-4] m94w00wqTBKVzTh3zoKgLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.187 [XNIO-1 task-4] m94w00wqTBKVzTh3zoKgLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:48.190 [XNIO-1 task-5] SFDXJzA1RDWgrVDRMVyWxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.199 [XNIO-1 task-4] m94w00wqTBKVzTh3zoKgLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.199 [XNIO-1 task-4] m94w00wqTBKVzTh3zoKgLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.201 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6b2183fa-0029-4bf8-b4e1-546e036281c8 +00:00:48.201 [XNIO-1 task-5] -9rMKQNEQZmif4qZhVtXLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.201 [XNIO-1 task-5] -9rMKQNEQZmif4qZhVtXLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.202 [XNIO-1 task-5] -9rMKQNEQZmif4qZhVtXLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.202 [XNIO-1 task-5] -9rMKQNEQZmif4qZhVtXLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.202 [XNIO-1 task-6] unJuZbCVTGuj7gAAB5DwPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.202 [XNIO-1 task-6] unJuZbCVTGuj7gAAB5DwPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.202 [XNIO-1 task-5] -9rMKQNEQZmif4qZhVtXLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.203 [XNIO-1 task-6] unJuZbCVTGuj7gAAB5DwPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6hHK9izcRtCtFRXIrUUD3w redirectUri = http://localhost:8080/authorization +00:00:48.210 [XNIO-1 task-5] -9rMKQNEQZmif4qZhVtXLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.212 [XNIO-1 task-6] unJuZbCVTGuj7gAAB5DwPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.223 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6b2183fa-0029-4bf8-b4e1-546e036281c8 +00:00:48.223 [XNIO-1 task-5] kmcs4MDMTtSKQp_nTYrxsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.223 [XNIO-1 task-5] kmcs4MDMTtSKQp_nTYrxsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.224 [XNIO-1 task-5] kmcs4MDMTtSKQp_nTYrxsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.224 [XNIO-1 task-5] kmcs4MDMTtSKQp_nTYrxsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.230 [XNIO-1 task-5] kmcs4MDMTtSKQp_nTYrxsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.236 [XNIO-1 task-5] 8yyaXm_vSZ-r8-XDr8qI-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.236 [XNIO-1 task-5] 8yyaXm_vSZ-r8-XDr8qI-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.236 [XNIO-1 task-5] 8yyaXm_vSZ-r8-XDr8qI-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.237 [XNIO-1 task-5] 8yyaXm_vSZ-r8-XDr8qI-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.240 [XNIO-1 task-6] mD_QThgFQNC9Mltq_sb-sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.240 [XNIO-1 task-6] mD_QThgFQNC9Mltq_sb-sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.241 [XNIO-1 task-6] mD_QThgFQNC9Mltq_sb-sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.241 [XNIO-1 task-6] mD_QThgFQNC9Mltq_sb-sQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BvBjw3nDTdCjgr_hE2b2tA redirectUri = http://localhost:8080/authorization +00:00:48.247 [XNIO-1 task-5] 8yyaXm_vSZ-r8-XDr8qI-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.249 [XNIO-1 task-6] mD_QThgFQNC9Mltq_sb-sQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.250 [XNIO-1 task-6] mD_QThgFQNC9Mltq_sb-sQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.258 [XNIO-1 task-5] 2OYclqgdRkS-BTQYb3zJTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.259 [XNIO-1 task-5] 2OYclqgdRkS-BTQYb3zJTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.259 [XNIO-1 task-5] 2OYclqgdRkS-BTQYb3zJTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.260 [XNIO-1 task-5] 2OYclqgdRkS-BTQYb3zJTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.265 [XNIO-1 task-6] ZtMIqnMmSJuWp5NRI9kgEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 29, 2024 12:00:48 AM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +00:00:48.269 [XNIO-1 task-6] ZtMIqnMmSJuWp5NRI9kgEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", authorization) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +00:00:48.269 [XNIO-1 task-5] 2OYclqgdRkS-BTQYb3zJTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.269 [XNIO-1 task-5] 2OYclqgdRkS-BTQYb3zJTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:48.276 [XNIO-1 task-5] rUg-HpCbRNKaF7dahHRMaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", authorization) +00:00:48.276 [XNIO-1 task-6] ZtMIqnMmSJuWp5NRI9kgEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.277 [XNIO-1 task-6] ZtMIqnMmSJuWp5NRI9kgEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.283 [XNIO-1 task-5] rUg-HpCbRNKaF7dahHRMaQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +00:00:48.292 [XNIO-1 task-5] Zd4A25tOTieujzwPHMUaog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.292 [XNIO-1 task-5] Zd4A25tOTieujzwPHMUaog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmZkNmQ1NmItZGEyNS00YjEwLWJjYTEtZTk0MTg3YmRkOWIyOndKVzREcTh0VDV5X2FFN240bTg3NUE=", "Basic ZmZkNmQ1NmItZGEyNS00YjEwLWJjYTEtZTk0MTg3YmRkOWIyOndKVzREcTh0VDV5X2FFN240bTg3NUE=", authorization) +00:00:48.292 [XNIO-1 task-5] Zd4A25tOTieujzwPHMUaog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:48.297 [XNIO-1 task-5] Zd4A25tOTieujzwPHMUaog INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.315 [XNIO-1 task-6] U4rgFlfwSXmnw5zbrcjQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.315 [XNIO-1 task-6] U4rgFlfwSXmnw5zbrcjQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.315 [XNIO-1 task-6] U4rgFlfwSXmnw5zbrcjQ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.315 [XNIO-1 task-6] U4rgFlfwSXmnw5zbrcjQ-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e822d280-92db-4a67-8b3c-5568a4dea1ff scope = null +00:00:48.316 [XNIO-1 task-4] gJmfJvKcT82G9GcXN9u5wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.316 [XNIO-1 task-4] gJmfJvKcT82G9GcXN9u5wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.316 [XNIO-1 task-5] 3vt_vezLRt6p5A6KmqHJLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.316 [XNIO-1 task-4] gJmfJvKcT82G9GcXN9u5wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.316 [XNIO-1 task-4] gJmfJvKcT82G9GcXN9u5wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.317 [XNIO-1 task-4] gJmfJvKcT82G9GcXN9u5wQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.317 [XNIO-1 task-5] 3vt_vezLRt6p5A6KmqHJLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.317 [XNIO-1 task-5] 3vt_vezLRt6p5A6KmqHJLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0gKUCvNgTuSO33xNqVEkXA redirectUri = http://localhost:8080/authorization +00:00:48.322 [XNIO-1 task-4] gJmfJvKcT82G9GcXN9u5wQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.323 [XNIO-1 task-5] 3vt_vezLRt6p5A6KmqHJLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.325 [XNIO-1 task-5] 3vt_vezLRt6p5A6KmqHJLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.326 [XNIO-1 task-6] U4rgFlfwSXmnw5zbrcjQ-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.333 [XNIO-1 task-4] YCkGRisxTN61wYO8TXs9aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.334 [XNIO-1 task-4] YCkGRisxTN61wYO8TXs9aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.334 [XNIO-1 task-4] YCkGRisxTN61wYO8TXs9aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.334 [XNIO-1 task-4] YCkGRisxTN61wYO8TXs9aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", "Basic MTgzZGY1MWMtMTM4My00NTI3LThjMDctYzk5NWRlZTViODYxOmtzMDNDNmVKVGlhelNBaFlTRmJyZmc=", authorization) +00:00:48.333 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:48.341 [XNIO-1 task-4] YCkGRisxTN61wYO8TXs9aQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.352 [XNIO-1 task-4] jw-cwB5mRmqpZl2z8MLiCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.352 [XNIO-1 task-4] jw-cwB5mRmqpZl2z8MLiCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.352 [XNIO-1 task-4] jw-cwB5mRmqpZl2z8MLiCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.353 [XNIO-1 task-4] jw-cwB5mRmqpZl2z8MLiCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.361 [XNIO-1 task-4] jw-cwB5mRmqpZl2z8MLiCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.373 [XNIO-1 task-6] sR7omjEsRi65fqfmDCffvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.373 [XNIO-1 task-6] sR7omjEsRi65fqfmDCffvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.373 [XNIO-1 task-4] 0wa3Ux1XTKe_6sX3cBTbiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.373 [XNIO-1 task-4] 0wa3Ux1XTKe_6sX3cBTbiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.373 [XNIO-1 task-6] sR7omjEsRi65fqfmDCffvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.374 [XNIO-1 task-4] 0wa3Ux1XTKe_6sX3cBTbiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.374 [XNIO-1 task-6] sR7omjEsRi65fqfmDCffvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.374 [XNIO-1 task-4] 0wa3Ux1XTKe_6sX3cBTbiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XFrhtpecRYisa-8f03pQoQ redirectUri = http://localhost:8080/authorization +00:00:48.380 [XNIO-1 task-5] LRzqTkYqShWRIdv-YfXTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.380 [XNIO-1 task-5] LRzqTkYqShWRIdv-YfXTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.380 [XNIO-1 task-5] LRzqTkYqShWRIdv-YfXTgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.380 [XNIO-1 task-5] LRzqTkYqShWRIdv-YfXTgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.381 [XNIO-1 task-5] LRzqTkYqShWRIdv-YfXTgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Pz3Ux36gQvO6zCfpMUz9_w redirectUri = http://localhost:8080/authorization +00:00:48.384 [XNIO-1 task-4] 0wa3Ux1XTKe_6sX3cBTbiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.390 [XNIO-1 task-5] LRzqTkYqShWRIdv-YfXTgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.391 [XNIO-1 task-5] LRzqTkYqShWRIdv-YfXTgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.393 [XNIO-1 task-6] tH8Ybm8qSCi4zbuqCpXXXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.393 [XNIO-1 task-6] tH8Ybm8qSCi4zbuqCpXXXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.393 [XNIO-1 task-6] tH8Ybm8qSCi4zbuqCpXXXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.394 [XNIO-1 task-6] tH8Ybm8qSCi4zbuqCpXXXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.399 [XNIO-1 task-6] tH8Ybm8qSCi4zbuqCpXXXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.410 [XNIO-1 task-5] YWXQEEPTRbSihgp_6aWLzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.410 [XNIO-1 task-5] YWXQEEPTRbSihgp_6aWLzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.410 [XNIO-1 task-5] YWXQEEPTRbSihgp_6aWLzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.411 [XNIO-1 task-5] YWXQEEPTRbSihgp_6aWLzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.422 [XNIO-1 task-5] YWXQEEPTRbSihgp_6aWLzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.425 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5522421d +00:00:48.427 [XNIO-1 task-5] IhSwj_FMS4GEZ7rHxxfwzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.427 [XNIO-1 task-5] IhSwj_FMS4GEZ7rHxxfwzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.427 [XNIO-1 task-5] IhSwj_FMS4GEZ7rHxxfwzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.428 [XNIO-1 task-5] IhSwj_FMS4GEZ7rHxxfwzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:48.436 [XNIO-1 task-5] IhSwj_FMS4GEZ7rHxxfwzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.450 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a4e2857-85bd-496f-a378-c12a6dd5607e +00:00:48.452 [XNIO-1 task-6] tQ34ObttQU-2jQnTGI_PVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.452 [XNIO-1 task-6] tQ34ObttQU-2jQnTGI_PVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.452 [XNIO-1 task-6] tQ34ObttQU-2jQnTGI_PVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.453 [XNIO-1 task-6] tQ34ObttQU-2jQnTGI_PVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.453 [XNIO-1 task-5] JCNYp4nqQf-17XWeWPaSbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.454 [XNIO-1 task-5] JCNYp4nqQf-17XWeWPaSbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.454 [XNIO-1 task-5] JCNYp4nqQf-17XWeWPaSbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.455 [XNIO-1 task-5] JCNYp4nqQf-17XWeWPaSbQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = a2vM72JyTGidlKBWq9bJpQ redirectUri = http://localhost:8080/authorization +00:00:48.457 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a4e2857-85bd-496f-a378-c12a6dd5607e +00:00:48.461 [XNIO-1 task-6] tQ34ObttQU-2jQnTGI_PVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.466 [XNIO-1 task-5] JCNYp4nqQf-17XWeWPaSbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.468 [XNIO-1 task-6] 4ytdSA_kSZeYwEo35IGcjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.469 [XNIO-1 task-6] 4ytdSA_kSZeYwEo35IGcjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.469 [XNIO-1 task-6] 4ytdSA_kSZeYwEo35IGcjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.470 [XNIO-1 task-6] 4ytdSA_kSZeYwEo35IGcjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", authorization) +00:00:48.471 [XNIO-1 task-4] pT0b8gZmS4eB3IzebWxL_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.472 [XNIO-1 task-4] pT0b8gZmS4eB3IzebWxL_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.472 [XNIO-1 task-4] pT0b8gZmS4eB3IzebWxL_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.473 [XNIO-1 task-4] pT0b8gZmS4eB3IzebWxL_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2M2ZjY0Y2EtYWM1YS00M2NjLTk3YjItYTQ2OWM4N2JkNzk4OkU3NjFSUkx1UXZHb3hJTXRMTkJ5YXc=", "Basic Y2M2ZjY0Y2EtYWM1YS00M2NjLTk3YjItYTQ2OWM4N2JkNzk4OkU3NjFSUkx1UXZHb3hJTXRMTkJ5YXc=", authorization) +00:00:48.489 [XNIO-1 task-4] pT0b8gZmS4eB3IzebWxL_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.496 [XNIO-1 task-6] 4ytdSA_kSZeYwEo35IGcjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.497 [XNIO-1 task-6] 4ytdSA_kSZeYwEo35IGcjA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.500 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1e0e6484-c854-48ea-9b9c-2a05736f6856 +00:00:48.501 [XNIO-1 task-4] dsmb_xOqRWK37x1WZ5guXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.501 [XNIO-1 task-4] dsmb_xOqRWK37x1WZ5guXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.502 [XNIO-1 task-4] dsmb_xOqRWK37x1WZ5guXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.502 [XNIO-1 task-4] dsmb_xOqRWK37x1WZ5guXA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.509 [XNIO-1 task-4] dsmb_xOqRWK37x1WZ5guXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.516 [XNIO-1 task-6] jGt4StKNSdeOLISwU__xbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.516 [XNIO-1 task-6] jGt4StKNSdeOLISwU__xbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.516 [XNIO-1 task-6] jGt4StKNSdeOLISwU__xbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.516 [XNIO-1 task-6] jGt4StKNSdeOLISwU__xbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", authorization) +00:00:48.518 [XNIO-1 task-4] rSrE5lrxRnqI2S2bOpSCXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.518 [XNIO-1 task-4] rSrE5lrxRnqI2S2bOpSCXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.518 [XNIO-1 task-4] rSrE5lrxRnqI2S2bOpSCXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.518 [XNIO-1 task-4] rSrE5lrxRnqI2S2bOpSCXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", authorization) +00:00:48.523 [XNIO-1 task-6] jGt4StKNSdeOLISwU__xbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.524 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1e0e6484-c854-48ea-9b9c-2a05736f6856 +00:00:48.537 [XNIO-1 task-4] rSrE5lrxRnqI2S2bOpSCXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.539 [XNIO-1 task-6] 5HV07yHPT6aucSLhK-mNHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.539 [XNIO-1 task-6] 5HV07yHPT6aucSLhK-mNHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.539 [XNIO-1 task-6] 5HV07yHPT6aucSLhK-mNHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.540 [XNIO-1 task-6] 5HV07yHPT6aucSLhK-mNHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.559 [XNIO-1 task-6] 5HV07yHPT6aucSLhK-mNHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.564 [XNIO-1 task-4] LjDtOryWTvOJR42iOV7Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.564 [XNIO-1 task-4] LjDtOryWTvOJR42iOV7Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.564 [XNIO-1 task-4] LjDtOryWTvOJR42iOV7Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.565 [XNIO-1 task-4] LjDtOryWTvOJR42iOV7Dog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = rbyNKs1zTcavN8e7yPi0VA redirectUri = http://localhost:8080/authorization +00:00:48.571 [XNIO-1 task-6] VOjwcx92Qn2NIcyLZmv5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.571 [XNIO-1 task-6] VOjwcx92Qn2NIcyLZmv5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.572 [XNIO-1 task-6] VOjwcx92Qn2NIcyLZmv5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.572 [XNIO-1 task-6] VOjwcx92Qn2NIcyLZmv5JA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.577 [XNIO-1 task-5] W7Y-hgvNSO-nFjEYq_6TqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.578 [XNIO-1 task-5] W7Y-hgvNSO-nFjEYq_6TqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.578 [XNIO-1 task-6] VOjwcx92Qn2NIcyLZmv5JA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.578 [XNIO-1 task-5] W7Y-hgvNSO-nFjEYq_6TqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.578 [XNIO-1 task-5] W7Y-hgvNSO-nFjEYq_6TqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", authorization) +00:00:48.584 [XNIO-1 task-4] LjDtOryWTvOJR42iOV7Dog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.590 [XNIO-1 task-6] L08T9BaqRA-hMA2UNMsq_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.590 [XNIO-1 task-6] L08T9BaqRA-hMA2UNMsq_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.590 [XNIO-1 task-6] L08T9BaqRA-hMA2UNMsq_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.591 [XNIO-1 task-6] L08T9BaqRA-hMA2UNMsq_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWE0ZTI4NTctODViZC00OTZmLWEzNzgtYzEyYTZkZDU2MDdlOjBEQzdLY0xiUk5LSXozbHgzdEFSQUE=", "Basic NWE0ZTI4NTctODViZC00OTZmLWEzNzgtYzEyYTZkZDU2MDdlOjBEQzdLY0xiUk5LSXozbHgzdEFSQUE=", authorization) +00:00:48.591 [XNIO-1 task-5] W7Y-hgvNSO-nFjEYq_6TqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.593 [XNIO-1 task-5] W7Y-hgvNSO-nFjEYq_6TqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.598 [XNIO-1 task-6] L08T9BaqRA-hMA2UNMsq_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.605 [XNIO-1 task-6] 04RRHbyERKK1uSNlxUsYMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.605 [XNIO-1 task-6] 04RRHbyERKK1uSNlxUsYMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.606 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:22f0c937-0977-42e9-a20c-d0495353e1e2 +00:00:48.606 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:22f0c937-0977-42e9-a20c-d0495353e1e2 +00:00:48.606 [XNIO-1 task-6] 04RRHbyERKK1uSNlxUsYMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWE0ZTI4NTctODViZC00OTZmLWEzNzgtYzEyYTZkZDU2MDdlOjBEQzdLY0xiUk5LSXozbHgzdEFSQUE=", "Basic NWE0ZTI4NTctODViZC00OTZmLWEzNzgtYzEyYTZkZDU2MDdlOjBEQzdLY0xiUk5LSXozbHgzdEFSQUE=", authorization) +00:00:48.612 [XNIO-1 task-6] 04RRHbyERKK1uSNlxUsYMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.620 [XNIO-1 task-6] DgAsJDO-R-Oi3IXCDzYW2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.626 [XNIO-1 task-6] DgAsJDO-R-Oi3IXCDzYW2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.627 [XNIO-1 task-6] DgAsJDO-R-Oi3IXCDzYW2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.627 [XNIO-1 task-6] DgAsJDO-R-Oi3IXCDzYW2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:48.632 [XNIO-1 task-6] DgAsJDO-R-Oi3IXCDzYW2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.642 [XNIO-1 task-6] 47sJfq-ESpOnyWvg8eCxLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.642 [XNIO-1 task-6] 47sJfq-ESpOnyWvg8eCxLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.643 [XNIO-1 task-6] 47sJfq-ESpOnyWvg8eCxLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.643 [XNIO-1 task-6] 47sJfq-ESpOnyWvg8eCxLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:48.648 [XNIO-1 task-6] 47sJfq-ESpOnyWvg8eCxLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.655 [XNIO-1 task-6] _ssYXuXkSaG4fHncmF33zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.660 [XNIO-1 task-6] _ssYXuXkSaG4fHncmF33zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.660 [XNIO-1 task-6] _ssYXuXkSaG4fHncmF33zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.660 [XNIO-1 task-6] _ssYXuXkSaG4fHncmF33zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:48.669 [XNIO-1 task-6] _ssYXuXkSaG4fHncmF33zw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.681 [XNIO-1 task-6] mr5E5IWUQwy_mncjhOQ8uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.682 [XNIO-1 task-6] mr5E5IWUQwy_mncjhOQ8uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.683 [XNIO-1 task-6] mr5E5IWUQwy_mncjhOQ8uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.683 [XNIO-1 task-6] mr5E5IWUQwy_mncjhOQ8uA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:48.689 [XNIO-1 task-6] mr5E5IWUQwy_mncjhOQ8uA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.699 [XNIO-1 task-6] FE61c4pNTACHiKXOd_dGAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.699 [XNIO-1 task-6] FE61c4pNTACHiKXOd_dGAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.699 [XNIO-1 task-6] FE61c4pNTACHiKXOd_dGAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.700 [XNIO-1 task-6] FE61c4pNTACHiKXOd_dGAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:48.700 [XNIO-1 task-4] Htez7iLyQbuz6SYR2sVDvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.701 [XNIO-1 task-4] Htez7iLyQbuz6SYR2sVDvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.701 [XNIO-1 task-4] Htez7iLyQbuz6SYR2sVDvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.701 [XNIO-1 task-4] Htez7iLyQbuz6SYR2sVDvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", authorization) +00:00:48.706 [XNIO-1 task-6] FE61c4pNTACHiKXOd_dGAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.710 [XNIO-1 task-4] Htez7iLyQbuz6SYR2sVDvg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.711 [XNIO-1 task-4] Htez7iLyQbuz6SYR2sVDvg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.714 [XNIO-1 task-6] 5rGS85dZTgyg-ijPgC6z_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.714 [XNIO-1 task-6] 5rGS85dZTgyg-ijPgC6z_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.715 [XNIO-1 task-6] 5rGS85dZTgyg-ijPgC6z_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.715 [XNIO-1 task-6] 5rGS85dZTgyg-ijPgC6z_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = p_od5MTcR9mxSkI5K9wQKA redirectUri = http://localhost:8080/authorization +00:00:48.715 [XNIO-1 task-5] k-j4sPNXTea53_qSEfe0-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.715 [XNIO-1 task-5] k-j4sPNXTea53_qSEfe0-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.716 [XNIO-1 task-5] k-j4sPNXTea53_qSEfe0-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.716 [XNIO-1 task-5] k-j4sPNXTea53_qSEfe0-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:48.719 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c663fcf0-dbbf-4b31-88b5-640ff4c79cfb +00:00:48.722 [XNIO-1 task-5] k-j4sPNXTea53_qSEfe0-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.733 [XNIO-1 task-6] 5rGS85dZTgyg-ijPgC6z_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.734 [XNIO-1 task-6] 5rGS85dZTgyg-ijPgC6z_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.734 [XNIO-1 task-5] _6n4OkbGTi2NDURifUTx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.734 [XNIO-1 task-5] _6n4OkbGTi2NDURifUTx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.735 [XNIO-1 task-5] _6n4OkbGTi2NDURifUTx-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.736 [XNIO-1 task-5] _6n4OkbGTi2NDURifUTx-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.744 [XNIO-1 task-5] _6n4OkbGTi2NDURifUTx-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.756 [XNIO-1 task-6] cb3LqMYGTUWbui_ypXe8qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.759 [XNIO-1 task-5] 5xN4FzhQTqGolFbWDVPrmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.760 [XNIO-1 task-5] 5xN4FzhQTqGolFbWDVPrmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.756 [XNIO-1 task-6] cb3LqMYGTUWbui_ypXe8qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.760 [XNIO-1 task-6] cb3LqMYGTUWbui_ypXe8qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.760 [XNIO-1 task-6] cb3LqMYGTUWbui_ypXe8qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.760 [XNIO-1 task-6] cb3LqMYGTUWbui_ypXe8qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:48.760 [XNIO-1 task-6] cb3LqMYGTUWbui_ypXe8qw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.766 [XNIO-1 task-6] cb3LqMYGTUWbui_ypXe8qw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.783 [XNIO-1 task-6] yf9ioeRYQXeFDeMo6dKnBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.783 [XNIO-1 task-6] yf9ioeRYQXeFDeMo6dKnBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.783 [XNIO-1 task-6] yf9ioeRYQXeFDeMo6dKnBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.784 [XNIO-1 task-6] yf9ioeRYQXeFDeMo6dKnBg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.784 [XNIO-1 task-5] 5xN4FzhQTqGolFbWDVPrmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.799 [XNIO-1 task-6] yf9ioeRYQXeFDeMo6dKnBg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.802 [XNIO-1 task-6] FRqDS8iGSV2d3YVrl3lWng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.803 [XNIO-1 task-6] FRqDS8iGSV2d3YVrl3lWng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.803 [XNIO-1 task-6] FRqDS8iGSV2d3YVrl3lWng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.804 [XNIO-1 task-6] FRqDS8iGSV2d3YVrl3lWng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e04a5d9b-7ccc-43ba-831e-275fd29855f9 scope = null +00:00:48.806 [XNIO-1 task-5] HfPeHQn1QmWnY0DU2MMwsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.806 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6deda7ee-5689-4c04-9d1a-4863a8281042 +00:00:48.806 [XNIO-1 task-5] HfPeHQn1QmWnY0DU2MMwsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.807 [XNIO-1 task-5] HfPeHQn1QmWnY0DU2MMwsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.807 [XNIO-1 task-5] HfPeHQn1QmWnY0DU2MMwsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", authorization) +00:00:48.810 [XNIO-1 task-4] P2qhtJ6pR7iGmxyFo-usyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.810 [XNIO-1 task-4] P2qhtJ6pR7iGmxyFo-usyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.810 [XNIO-1 task-4] P2qhtJ6pR7iGmxyFo-usyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.810 [XNIO-1 task-4] P2qhtJ6pR7iGmxyFo-usyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:48.817 [XNIO-1 task-5] HfPeHQn1QmWnY0DU2MMwsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:48.819 [XNIO-1 task-4] P2qhtJ6pR7iGmxyFo-usyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.824 [XNIO-1 task-6] FRqDS8iGSV2d3YVrl3lWng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.826 [XNIO-1 task-4] cTAFELCETx29k_XAtYhjJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.826 [XNIO-1 task-4] cTAFELCETx29k_XAtYhjJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.827 [XNIO-1 task-4] cTAFELCETx29k_XAtYhjJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.827 [XNIO-1 task-4] cTAFELCETx29k_XAtYhjJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:48.837 [XNIO-1 task-4] cTAFELCETx29k_XAtYhjJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.842 [XNIO-1 task-6] 64Wy-VOqR2Sv9oEfgM876A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.842 [XNIO-1 task-6] 64Wy-VOqR2Sv9oEfgM876A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.842 [XNIO-1 task-6] 64Wy-VOqR2Sv9oEfgM876A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.842 [XNIO-1 task-6] 64Wy-VOqR2Sv9oEfgM876A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:48.845 [XNIO-1 task-4] 18EEvyvMRO6sDR1RR1Gcpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.845 [XNIO-1 task-4] 18EEvyvMRO6sDR1RR1Gcpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.845 [XNIO-1 task-4] 18EEvyvMRO6sDR1RR1Gcpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.845 [XNIO-1 task-4] 18EEvyvMRO6sDR1RR1Gcpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:48.853 [XNIO-1 task-6] 64Wy-VOqR2Sv9oEfgM876A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.863 [XNIO-1 task-4] 18EEvyvMRO6sDR1RR1Gcpg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.863 [XNIO-1 task-6] R-L-zcCWQMGUVAzvx11G9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.863 [XNIO-1 task-6] R-L-zcCWQMGUVAzvx11G9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.864 [XNIO-1 task-6] R-L-zcCWQMGUVAzvx11G9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.864 [XNIO-1 task-6] R-L-zcCWQMGUVAzvx11G9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhNTU4OTItMTc1NS00MjIyLWI2ZWEtZGYxOTkzN2EwMjQ1OkY2TlJFcWt2UmF5OVJpdlpCNzMwa1E=", "Basic NmZhNTU4OTItMTc1NS00MjIyLWI2ZWEtZGYxOTkzN2EwMjQ1OkY2TlJFcWt2UmF5OVJpdlpCNzMwa1E=", authorization) +00:00:48.870 [XNIO-1 task-6] R-L-zcCWQMGUVAzvx11G9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.884 [XNIO-1 task-4] Rum7uCNkQ7WPNCA9UZ6R7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.885 [XNIO-1 task-6] M59vU0KERuyuQJ__Lp-u3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.885 [XNIO-1 task-6] M59vU0KERuyuQJ__Lp-u3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.885 [XNIO-1 task-6] M59vU0KERuyuQJ__Lp-u3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.885 [XNIO-1 task-6] M59vU0KERuyuQJ__Lp-u3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.885 [XNIO-1 task-6] M59vU0KERuyuQJ__Lp-u3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.886 [XNIO-1 task-4] Rum7uCNkQ7WPNCA9UZ6R7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhNTU4OTItMTc1NS00MjIyLWI2ZWEtZGYxOTkzN2EwMjQ1OkY2TlJFcWt2UmF5OVJpdlpCNzMwa1E=", "Basic NmZhNTU4OTItMTc1NS00MjIyLWI2ZWEtZGYxOTkzN2EwMjQ1OkY2TlJFcWt2UmF5OVJpdlpCNzMwa1E=", authorization) +00:00:48.886 [XNIO-1 task-6] M59vU0KERuyuQJ__Lp-u3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:48.895 [XNIO-1 task-4] Rum7uCNkQ7WPNCA9UZ6R7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.901 [XNIO-1 task-6] M59vU0KERuyuQJ__Lp-u3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.906 [XNIO-1 task-4] keCs77wNTay8PVBpt8h8kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.906 [XNIO-1 task-4] keCs77wNTay8PVBpt8h8kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.907 [XNIO-1 task-4] keCs77wNTay8PVBpt8h8kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.907 [XNIO-1 task-4] keCs77wNTay8PVBpt8h8kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDdhOWJhOTgtMDg5My00OTNkLWFlNjQtYzExY2MwMzJkMTY3OnhIZVJhVHlnU3MtN25kRjcyQ2ZmNHc=", "Basic ZDdhOWJhOTgtMDg5My00OTNkLWFlNjQtYzExY2MwMzJkMTY3OnhIZVJhVHlnU3MtN25kRjcyQ2ZmNHc=", authorization) +00:00:48.908 [XNIO-1 task-5] BzIS_77vRV68Px6UaoDrsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.908 [XNIO-1 task-5] BzIS_77vRV68Px6UaoDrsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:48.909 [XNIO-1 task-5] BzIS_77vRV68Px6UaoDrsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:48.915 [XNIO-1 task-5] BzIS_77vRV68Px6UaoDrsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZhNTU4OTItMTc1NS00MjIyLWI2ZWEtZGYxOTkzN2EwMjQ1OkY2TlJFcWt2UmF5OVJpdlpCNzMwa1E=", "Basic NmZhNTU4OTItMTc1NS00MjIyLWI2ZWEtZGYxOTkzN2EwMjQ1OkY2TlJFcWt2UmF5OVJpdlpCNzMwa1E=", authorization) +00:00:48.921 [XNIO-1 task-5] BzIS_77vRV68Px6UaoDrsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:48.930 [XNIO-1 task-4] keCs77wNTay8PVBpt8h8kQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:48.931 [XNIO-1 task-4] keCs77wNTay8PVBpt8h8kQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.968 [XNIO-1 task-5] S5TmXOdnQ569jCCWDb7cOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.968 [XNIO-1 task-5] S5TmXOdnQ569jCCWDb7cOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.969 [XNIO-1 task-5] S5TmXOdnQ569jCCWDb7cOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.969 [XNIO-1 task-5] S5TmXOdnQ569jCCWDb7cOA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.976 [XNIO-1 task-5] S5TmXOdnQ569jCCWDb7cOA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:48.982 [XNIO-1 task-5] Zuf9L1i7QtWMklTFn5q7Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.982 [XNIO-1 task-5] Zuf9L1i7QtWMklTFn5q7Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.982 [XNIO-1 task-5] Zuf9L1i7QtWMklTFn5q7Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.983 [XNIO-1 task-5] Zuf9L1i7QtWMklTFn5q7Ew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = RoCBHygXSkyyfwbiFAtvMQ redirectUri = http://localhost:8080/authorization +00:00:48.983 [XNIO-1 task-4] FF0tYC3nQZivJeZO0F43og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.984 [XNIO-1 task-4] FF0tYC3nQZivJeZO0F43og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.984 [XNIO-1 task-4] FF0tYC3nQZivJeZO0F43og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:48.984 [XNIO-1 task-4] FF0tYC3nQZivJeZO0F43og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:48.999 [XNIO-1 task-4] FF0tYC3nQZivJeZO0F43og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.005 [XNIO-1 task-5] Zuf9L1i7QtWMklTFn5q7Ew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.008 [XNIO-1 task-4] lVk3s754RFaasTma6aMypA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.008 [XNIO-1 task-4] lVk3s754RFaasTma6aMypA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.009 [XNIO-1 task-4] lVk3s754RFaasTma6aMypA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.009 [XNIO-1 task-4] lVk3s754RFaasTma6aMypA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:49.011 [XNIO-1 task-6] ZG8XqAiKQQ6bhRU_7p2Vkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.011 [XNIO-1 task-6] ZG8XqAiKQQ6bhRU_7p2Vkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.011 [XNIO-1 task-6] ZG8XqAiKQQ6bhRU_7p2Vkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.012 [XNIO-1 task-6] ZG8XqAiKQQ6bhRU_7p2Vkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzRlOWJmZGEtZGU3MC00ZDdmLThmMWItNThmZDBkODI5MmQ2OnZQUnhidHltVGVDVTZqaGlMSmxJcFE=", "Basic MzRlOWJmZGEtZGU3MC00ZDdmLThmMWItNThmZDBkODI5MmQ2OnZQUnhidHltVGVDVTZqaGlMSmxJcFE=", authorization) +00:00:49.017 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:61fa8734 +00:00:49.020 [XNIO-1 task-4] lVk3s754RFaasTma6aMypA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.024 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:61fa8734 +00:00:49.025 [XNIO-1 task-6] ZG8XqAiKQQ6bhRU_7p2Vkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.029 [XNIO-1 task-4] D6MKTtNaRO2GtGUSGpJCBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.030 [XNIO-1 task-4] D6MKTtNaRO2GtGUSGpJCBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.030 [XNIO-1 task-4] D6MKTtNaRO2GtGUSGpJCBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.030 [XNIO-1 task-4] D6MKTtNaRO2GtGUSGpJCBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", authorization) +00:00:49.038 [XNIO-1 task-4] D6MKTtNaRO2GtGUSGpJCBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.039 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:97412e99 +00:00:49.045 [XNIO-1 task-6] LqiOutjlTz26yb7K75MtUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.045 [XNIO-1 task-6] LqiOutjlTz26yb7K75MtUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.046 [XNIO-1 task-6] LqiOutjlTz26yb7K75MtUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.046 [XNIO-1 task-6] LqiOutjlTz26yb7K75MtUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:49.049 [XNIO-1 task-4] nWGV099nRs2SHhA2_mP5Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.049 [XNIO-1 task-4] nWGV099nRs2SHhA2_mP5Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.049 [XNIO-1 task-4] nWGV099nRs2SHhA2_mP5Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.049 [XNIO-1 task-4] nWGV099nRs2SHhA2_mP5Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:49.052 [XNIO-1 task-6] LqiOutjlTz26yb7K75MtUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.053 [XNIO-1 task-6] LqiOutjlTz26yb7K75MtUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.055 [XNIO-1 task-4] nWGV099nRs2SHhA2_mP5Ww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.064 [XNIO-1 task-4] W9JAN9tdS6uQ9x8p5DPnVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.064 [XNIO-1 task-4] W9JAN9tdS6uQ9x8p5DPnVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.065 [XNIO-1 task-4] W9JAN9tdS6uQ9x8p5DPnVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.065 [XNIO-1 task-4] W9JAN9tdS6uQ9x8p5DPnVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.068 [XNIO-1 task-6] CmMtgvM8TDSyDyHtIAT8kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.068 [XNIO-1 task-6] CmMtgvM8TDSyDyHtIAT8kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.068 [XNIO-1 task-6] CmMtgvM8TDSyDyHtIAT8kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.069 [XNIO-1 task-6] CmMtgvM8TDSyDyHtIAT8kA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ddbc0f92-4025-434d-954d-237dd1b2648f scope = null +00:00:49.074 [XNIO-1 task-4] W9JAN9tdS6uQ9x8p5DPnVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.078 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:eb7c0fb6-ef0c-414a-a8fe-33cc6e79ee47 +00:00:49.078 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:eb7c0fb6-ef0c-414a-a8fe-33cc6e79ee47 +00:00:49.080 [XNIO-1 task-4] RfKYAa4tSZyX2OnXsKFVaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.080 [XNIO-1 task-4] RfKYAa4tSZyX2OnXsKFVaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.080 [XNIO-1 task-4] RfKYAa4tSZyX2OnXsKFVaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.081 [XNIO-1 task-4] RfKYAa4tSZyX2OnXsKFVaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:49.081 [XNIO-1 task-6] CmMtgvM8TDSyDyHtIAT8kA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:49.088 [XNIO-1 task-4] RfKYAa4tSZyX2OnXsKFVaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.098 [XNIO-1 task-4] w7JwUl0ISceTwwM1aDLTTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.098 [XNIO-1 task-4] w7JwUl0ISceTwwM1aDLTTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.099 [XNIO-1 task-4] w7JwUl0ISceTwwM1aDLTTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.100 [XNIO-1 task-4] w7JwUl0ISceTwwM1aDLTTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.104 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:61fa8734 +00:00:49.109 [XNIO-1 task-4] w7JwUl0ISceTwwM1aDLTTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.114 [XNIO-1 task-4] DHkx6jr_S0K02H481bUgfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.114 [XNIO-1 task-4] DHkx6jr_S0K02H481bUgfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.115 [XNIO-1 task-4] DHkx6jr_S0K02H481bUgfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.115 [XNIO-1 task-4] DHkx6jr_S0K02H481bUgfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.125 [XNIO-1 task-4] DHkx6jr_S0K02H481bUgfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.136 [XNIO-1 task-4] -wqiHTCFQWq_2zeVoouErQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.136 [XNIO-1 task-4] -wqiHTCFQWq_2zeVoouErQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.136 [XNIO-1 task-4] -wqiHTCFQWq_2zeVoouErQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.137 [XNIO-1 task-4] -wqiHTCFQWq_2zeVoouErQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.144 [XNIO-1 task-4] -wqiHTCFQWq_2zeVoouErQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.151 [XNIO-1 task-4] yH_NTRC2QS-cx3VAmNu_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.151 [XNIO-1 task-4] yH_NTRC2QS-cx3VAmNu_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.152 [XNIO-1 task-4] yH_NTRC2QS-cx3VAmNu_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.152 [XNIO-1 task-4] yH_NTRC2QS-cx3VAmNu_Og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.163 [XNIO-1 task-4] yH_NTRC2QS-cx3VAmNu_Og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.171 [XNIO-1 task-4] 2lSjb2N4TI6rOGbXUFUxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.171 [XNIO-1 task-4] 2lSjb2N4TI6rOGbXUFUxcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.171 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b44a0df7 +00:00:49.171 [XNIO-1 task-4] 2lSjb2N4TI6rOGbXUFUxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.172 [XNIO-1 task-4] 2lSjb2N4TI6rOGbXUFUxcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTBiOGUwMWUtMzVmOC00NzEyLWJiZTUtYTNkZTVlNjVkZGU1OmFSU1Z1MUotUXAtMjRtY19QU1ZlcHc=", "Basic NTBiOGUwMWUtMzVmOC00NzEyLWJiZTUtYTNkZTVlNjVkZGU1OmFSU1Z1MUotUXAtMjRtY19QU1ZlcHc=", authorization) +00:00:49.178 [XNIO-1 task-4] 2lSjb2N4TI6rOGbXUFUxcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.180 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:61fa8734 +00:00:49.184 [XNIO-1 task-4] BQMuz6i8QMO7KGY10OngAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.184 [XNIO-1 task-4] BQMuz6i8QMO7KGY10OngAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.185 [XNIO-1 task-4] BQMuz6i8QMO7KGY10OngAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.185 [XNIO-1 task-4] BQMuz6i8QMO7KGY10OngAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.192 [XNIO-1 task-4] BQMuz6i8QMO7KGY10OngAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.194 [XNIO-1 task-6] BG0q6NScT0yNb6kQzoZq5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.195 [XNIO-1 task-6] BG0q6NScT0yNb6kQzoZq5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.195 [XNIO-1 task-6] BG0q6NScT0yNb6kQzoZq5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.195 [XNIO-1 task-6] BG0q6NScT0yNb6kQzoZq5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = molVTs-hQdOCbgf0t6rPQw redirectUri = http://localhost:8080/authorization +00:00:49.201 [XNIO-1 task-4] piLHeULmQUigejSUTUeaTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.202 [XNIO-1 task-4] piLHeULmQUigejSUTUeaTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.202 [XNIO-1 task-4] piLHeULmQUigejSUTUeaTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.202 [XNIO-1 task-4] piLHeULmQUigejSUTUeaTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.203 [XNIO-1 task-6] BG0q6NScT0yNb6kQzoZq5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.208 [XNIO-1 task-4] piLHeULmQUigejSUTUeaTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.216 [XNIO-1 task-4] mszZk3rLQsmDnxH-i65JOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.216 [XNIO-1 task-4] mszZk3rLQsmDnxH-i65JOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.217 [XNIO-1 task-4] mszZk3rLQsmDnxH-i65JOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.219 [XNIO-1 task-4] mszZk3rLQsmDnxH-i65JOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", authorization) +00:00:49.221 [XNIO-1 task-5] laCkztaLQaaFvm-zLINsiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.222 [XNIO-1 task-5] laCkztaLQaaFvm-zLINsiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.222 [XNIO-1 task-5] laCkztaLQaaFvm-zLINsiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.223 [XNIO-1 task-5] laCkztaLQaaFvm-zLINsiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", "Basic MWY5YTI2MWQtZjI0OS00M2JhLTlmNWItOWUwZDBkYmExMTNmOjJvVTZXNkFpU3dhbk1ON3dqNDFwYXc=", authorization) +00:00:49.230 [XNIO-1 task-4] mszZk3rLQsmDnxH-i65JOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.230 [XNIO-1 task-4] mszZk3rLQsmDnxH-i65JOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.231 [XNIO-1 task-5] laCkztaLQaaFvm-zLINsiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.243 [XNIO-1 task-5] u89RtKmCTQW3ZFp7v3UNBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.243 [XNIO-1 task-5] u89RtKmCTQW3ZFp7v3UNBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.243 [XNIO-1 task-5] u89RtKmCTQW3ZFp7v3UNBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.243 [XNIO-1 task-5] u89RtKmCTQW3ZFp7v3UNBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.251 [XNIO-1 task-5] u89RtKmCTQW3ZFp7v3UNBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.252 [XNIO-1 task-4] gr_bMry_SMGYEGThQaQzsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.252 [XNIO-1 task-4] gr_bMry_SMGYEGThQaQzsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.252 [XNIO-1 task-4] gr_bMry_SMGYEGThQaQzsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.253 [XNIO-1 task-4] gr_bMry_SMGYEGThQaQzsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ad6afdb8-1b89-4184-8056-4398fadeda0e scope = null +00:00:49.258 [XNIO-1 task-5] JqxHGSV7QJyklq7WrgVyEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.258 [XNIO-1 task-5] JqxHGSV7QJyklq7WrgVyEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.258 [XNIO-1 task-5] JqxHGSV7QJyklq7WrgVyEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.258 [XNIO-1 task-5] JqxHGSV7QJyklq7WrgVyEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.264 [XNIO-1 task-5] JqxHGSV7QJyklq7WrgVyEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.270 [XNIO-1 task-4] gr_bMry_SMGYEGThQaQzsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.272 [XNIO-1 task-5] UKIVV6TESuSGcTymu_zGvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.272 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:13cfe5f5-bd9c-4b51-bc66-1b8930d2ad2c +00:00:49.273 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:13cfe5f5-bd9c-4b51-bc66-1b8930d2ad2c +00:00:49.273 [XNIO-1 task-5] UKIVV6TESuSGcTymu_zGvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.273 [XNIO-1 task-5] UKIVV6TESuSGcTymu_zGvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:49.279 [XNIO-1 task-5] UKIVV6TESuSGcTymu_zGvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.290 [XNIO-1 task-4] cQhi7CVdS6KyiAx8Q9kWwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.290 [XNIO-1 task-4] cQhi7CVdS6KyiAx8Q9kWwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.291 [XNIO-1 task-4] cQhi7CVdS6KyiAx8Q9kWwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.291 [XNIO-1 task-4] cQhi7CVdS6KyiAx8Q9kWwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", authorization) +00:00:49.297 [XNIO-1 task-4] cQhi7CVdS6KyiAx8Q9kWwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.298 [XNIO-1 task-5] yHqu0WadSge8YWoSJGKV9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.300 [XNIO-1 task-5] yHqu0WadSge8YWoSJGKV9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.301 [XNIO-1 task-5] yHqu0WadSge8YWoSJGKV9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.301 [XNIO-1 task-5] yHqu0WadSge8YWoSJGKV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", authorization) +00:00:49.303 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4e4d5d6f +00:00:49.304 [XNIO-1 task-4] 26AxbFyJR7GP6Y46iLOsxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.304 [XNIO-1 task-4] 26AxbFyJR7GP6Y46iLOsxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.305 [XNIO-1 task-4] 26AxbFyJR7GP6Y46iLOsxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.305 [XNIO-1 task-4] 26AxbFyJR7GP6Y46iLOsxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.310 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4e4d5d6f +00:00:49.312 [XNIO-1 task-4] 26AxbFyJR7GP6Y46iLOsxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.314 [XNIO-1 task-5] yHqu0WadSge8YWoSJGKV9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.320 [XNIO-1 task-4] jdGKY6fsRB-uNYrRlFD70Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.321 [XNIO-1 task-4] jdGKY6fsRB-uNYrRlFD70Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.321 [XNIO-1 task-4] jdGKY6fsRB-uNYrRlFD70Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.321 [XNIO-1 task-4] jdGKY6fsRB-uNYrRlFD70Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTM0OGNhNGUtNDg1OC00Mjk1LWI2OWItY2Q1ZDhmNWY1YzBiOm0teHFjelVCUmhteURaYXM0UE5qU0E=", "Basic MTM0OGNhNGUtNDg1OC00Mjk1LWI2OWItY2Q1ZDhmNWY1YzBiOm0teHFjelVCUmhteURaYXM0UE5qU0E=", authorization) +00:00:49.327 [XNIO-1 task-4] jdGKY6fsRB-uNYrRlFD70Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.329 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4e4d5d6f +00:00:49.330 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:22f0c937-0977-42e9-a20c-d0495353e1e2 +00:00:49.337 [XNIO-1 task-4] Gp_jWCw2QMGgOMzvXzNU5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.337 [XNIO-1 task-4] Gp_jWCw2QMGgOMzvXzNU5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.337 [XNIO-1 task-4] Gp_jWCw2QMGgOMzvXzNU5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.338 [XNIO-1 task-4] Gp_jWCw2QMGgOMzvXzNU5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.347 [XNIO-1 task-4] Gp_jWCw2QMGgOMzvXzNU5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.352 [XNIO-1 task-4] Hy-srf-DQKC_FvWeslSZjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.352 [XNIO-1 task-4] Hy-srf-DQKC_FvWeslSZjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.353 [XNIO-1 task-4] Hy-srf-DQKC_FvWeslSZjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.353 [XNIO-1 task-4] Hy-srf-DQKC_FvWeslSZjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.361 [XNIO-1 task-4] Hy-srf-DQKC_FvWeslSZjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.364 [XNIO-1 task-5] h56iHoAlQ2Wv6K0p6urUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.364 [XNIO-1 task-5] h56iHoAlQ2Wv6K0p6urUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.364 [XNIO-1 task-5] h56iHoAlQ2Wv6K0p6urUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.365 [XNIO-1 task-5] h56iHoAlQ2Wv6K0p6urUew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e28a4da4-73d7-42e0-87a8-562b8ce9eed9 scope = null +00:00:49.370 [XNIO-1 task-4] lWu2WjDqR7SFt7Ou2mAImQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.370 [XNIO-1 task-4] lWu2WjDqR7SFt7Ou2mAImQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.371 [XNIO-1 task-4] lWu2WjDqR7SFt7Ou2mAImQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.371 [XNIO-1 task-4] lWu2WjDqR7SFt7Ou2mAImQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e28a4da4-73d7-42e0-87a8-562b8ce9eed9 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:49.378 [XNIO-1 task-4] lWu2WjDqR7SFt7Ou2mAImQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.378 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7134bdb3 +00:00:49.381 [XNIO-1 task-5] Wx8HhKBkRKOH62svWUOt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.381 [XNIO-1 task-5] Wx8HhKBkRKOH62svWUOt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.382 [XNIO-1 task-5] Wx8HhKBkRKOH62svWUOt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.382 [XNIO-1 task-5] Wx8HhKBkRKOH62svWUOt6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e28a4da4-73d7-42e0-87a8-562b8ce9eed9 scope = null +00:00:49.383 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7134bdb3 +00:00:49.394 [XNIO-1 task-4] _pNCSkDQREi_M5jfC_qsig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.394 [XNIO-1 task-4] _pNCSkDQREi_M5jfC_qsig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.394 [XNIO-1 task-4] _pNCSkDQREi_M5jfC_qsig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.395 [XNIO-1 task-4] _pNCSkDQREi_M5jfC_qsig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e28a4da4-73d7-42e0-87a8-562b8ce9eed9 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:49.400 [XNIO-1 task-4] _pNCSkDQREi_M5jfC_qsig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.403 [XNIO-1 task-5] y8W7AG3ORSKVpXxxwfSeFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.404 [XNIO-1 task-5] y8W7AG3ORSKVpXxxwfSeFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.404 [XNIO-1 task-5] y8W7AG3ORSKVpXxxwfSeFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.405 [XNIO-1 task-5] y8W7AG3ORSKVpXxxwfSeFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:49.411 [XNIO-1 task-4] PmzACgMXRWWKJN0U1xJwBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.411 [XNIO-1 task-4] PmzACgMXRWWKJN0U1xJwBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.412 [XNIO-1 task-4] PmzACgMXRWWKJN0U1xJwBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.412 [XNIO-1 task-4] PmzACgMXRWWKJN0U1xJwBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDdhOWJhOTgtMDg5My00OTNkLWFlNjQtYzExY2MwMzJkMTY3OnhIZVJhVHlnU3MtN25kRjcyQ2ZmNHc=", "Basic ZDdhOWJhOTgtMDg5My00OTNkLWFlNjQtYzExY2MwMzJkMTY3OnhIZVJhVHlnU3MtN25kRjcyQ2ZmNHc=", authorization) +00:00:49.412 [XNIO-1 task-5] y8W7AG3ORSKVpXxxwfSeFA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:49.418 [XNIO-1 task-4] PmzACgMXRWWKJN0U1xJwBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.422 [XNIO-1 task-5] JOxMSwzRT7G5OJU5CaBY-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.422 [XNIO-1 task-5] JOxMSwzRT7G5OJU5CaBY-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.422 [XNIO-1 task-5] JOxMSwzRT7G5OJU5CaBY-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.423 [XNIO-1 task-5] JOxMSwzRT7G5OJU5CaBY-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LGFWj9JiRnWHeu0IfTeRdQ redirectUri = http://localhost:8080/authorization +00:00:49.424 [XNIO-1 task-4] xpeHEIxbQoi3jD_a72UzDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.424 [XNIO-1 task-4] xpeHEIxbQoi3jD_a72UzDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.425 [XNIO-1 task-4] xpeHEIxbQoi3jD_a72UzDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.425 [XNIO-1 task-4] xpeHEIxbQoi3jD_a72UzDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.430 [XNIO-1 task-5] JOxMSwzRT7G5OJU5CaBY-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.431 [XNIO-1 task-4] xpeHEIxbQoi3jD_a72UzDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.439 [XNIO-1 task-4] eNXbKrUgT6mjsWzhFcIOWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.440 [XNIO-1 task-4] eNXbKrUgT6mjsWzhFcIOWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.440 [XNIO-1 task-6] cFXIki_RQKS7AY6hPL3GaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.440 [XNIO-1 task-6] cFXIki_RQKS7AY6hPL3GaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.440 [XNIO-1 task-4] eNXbKrUgT6mjsWzhFcIOWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.440 [XNIO-1 task-4] eNXbKrUgT6mjsWzhFcIOWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.440 [XNIO-1 task-6] cFXIki_RQKS7AY6hPL3GaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzAzNzQxMzUtNTJjYS00ZGM0LWJiMjUtYjExMjE2YzE0YjYxOmE1ZXE0WlJiU0NDdWRFRFlOQjM2dmc=", "Basic MzAzNzQxMzUtNTJjYS00ZGM0LWJiMjUtYjExMjE2YzE0YjYxOmE1ZXE0WlJiU0NDdWRFRFlOQjM2dmc=", authorization) +00:00:49.442 [XNIO-1 task-6] cFXIki_RQKS7AY6hPL3GaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.448 [XNIO-1 task-6] cFXIki_RQKS7AY6hPL3GaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.452 [XNIO-1 task-4] eNXbKrUgT6mjsWzhFcIOWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.453 [XNIO-1 task-4] eNXbKrUgT6mjsWzhFcIOWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.463 [XNIO-1 task-6] AfHq7VeZS_aRyjSv7Vp6hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.463 [XNIO-1 task-6] AfHq7VeZS_aRyjSv7Vp6hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.463 [XNIO-1 task-6] AfHq7VeZS_aRyjSv7Vp6hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.464 [XNIO-1 task-6] AfHq7VeZS_aRyjSv7Vp6hQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.468 [XNIO-1 task-4] ZOrcxhdZTlqj4S2Q9Ctj1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.468 [XNIO-1 task-4] ZOrcxhdZTlqj4S2Q9Ctj1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.468 [XNIO-1 task-4] ZOrcxhdZTlqj4S2Q9Ctj1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.469 [XNIO-1 task-6] AfHq7VeZS_aRyjSv7Vp6hQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.469 [XNIO-1 task-4] ZOrcxhdZTlqj4S2Q9Ctj1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a3d6a2f2-7727-4ccc-8f0c-893372280a49 scope = null +00:00:49.476 [XNIO-1 task-6] vdXtA5MnSEShMcmUs2I7yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.476 [XNIO-1 task-6] vdXtA5MnSEShMcmUs2I7yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.476 [XNIO-1 task-6] vdXtA5MnSEShMcmUs2I7yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.477 [XNIO-1 task-6] vdXtA5MnSEShMcmUs2I7yQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = FYLY_IKpS4iYVnar7KyDBQ redirectUri = http://localhost:8080/authorization +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a3d6a2f2-7727-4ccc-8f0c-893372280a49 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:49.484 [XNIO-1 task-5] Jm-oPvMiRAic63cAgTSjJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.486 [XNIO-1 task-5] Jm-oPvMiRAic63cAgTSjJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.486 [XNIO-1 task-6] vdXtA5MnSEShMcmUs2I7yQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.486 [XNIO-1 task-6] vdXtA5MnSEShMcmUs2I7yQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.487 [XNIO-1 task-5] Jm-oPvMiRAic63cAgTSjJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.489 [XNIO-1 task-5] Jm-oPvMiRAic63cAgTSjJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.497 [XNIO-1 task-5] Jm-oPvMiRAic63cAgTSjJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.511 [XNIO-1 task-5] P5bO3qJASWaoYpmJ11ehBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.511 [XNIO-1 task-5] P5bO3qJASWaoYpmJ11ehBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.511 [XNIO-1 task-6] fL4lB1vwQ7yNJSEqDhM1sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.511 [XNIO-1 task-6] fL4lB1vwQ7yNJSEqDhM1sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.511 [XNIO-1 task-5] P5bO3qJASWaoYpmJ11ehBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.511 [XNIO-1 task-6] fL4lB1vwQ7yNJSEqDhM1sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.512 [XNIO-1 task-5] P5bO3qJASWaoYpmJ11ehBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.512 [XNIO-1 task-6] fL4lB1vwQ7yNJSEqDhM1sw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8F051igsTTmAJDl_9DT9GQ redirectUri = http://localhost:8080/authorization +00:00:49.517 [XNIO-1 task-4] hAxYIHRTTICC6vo1WSRggg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.517 [XNIO-1 task-4] hAxYIHRTTICC6vo1WSRggg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.517 [XNIO-1 task-4] hAxYIHRTTICC6vo1WSRggg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.518 [XNIO-1 task-4] hAxYIHRTTICC6vo1WSRggg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:49.518 [XNIO-1 task-5] P5bO3qJASWaoYpmJ11ehBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.521 [XNIO-1 task-6] fL4lB1vwQ7yNJSEqDhM1sw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.521 [XNIO-1 task-6] fL4lB1vwQ7yNJSEqDhM1sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.525 [XNIO-1 task-4] hAxYIHRTTICC6vo1WSRggg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.529 [XNIO-1 task-5] e49_Nl8kQFSP12gy9Jmgiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.531 [XNIO-1 task-5] e49_Nl8kQFSP12gy9Jmgiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.531 [XNIO-1 task-5] e49_Nl8kQFSP12gy9Jmgiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.532 [XNIO-1 task-5] e49_Nl8kQFSP12gy9Jmgiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmZkNmQ1NmItZGEyNS00YjEwLWJjYTEtZTk0MTg3YmRkOWIyOndKVzREcTh0VDV5X2FFN240bTg3NUE=", "Basic ZmZkNmQ1NmItZGEyNS00YjEwLWJjYTEtZTk0MTg3YmRkOWIyOndKVzREcTh0VDV5X2FFN240bTg3NUE=", authorization) +00:00:49.537 [XNIO-1 task-5] e49_Nl8kQFSP12gy9Jmgiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.543 [XNIO-1 task-4] AzcWEi79QAipFZkQJI61cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.543 [XNIO-1 task-4] AzcWEi79QAipFZkQJI61cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.546 [XNIO-1 task-4] AzcWEi79QAipFZkQJI61cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.546 [XNIO-1 task-4] AzcWEi79QAipFZkQJI61cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:49.552 [XNIO-1 task-4] AzcWEi79QAipFZkQJI61cw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.564 [XNIO-1 task-4] -g32UO7eRVy33oaF1bPOkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.564 [XNIO-1 task-4] -g32UO7eRVy33oaF1bPOkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.565 [XNIO-1 task-4] -g32UO7eRVy33oaF1bPOkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.567 [XNIO-1 task-4] -g32UO7eRVy33oaF1bPOkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", "Basic NjBjMmJiOTItNGVlMi00MTYwLWIxZWUtYTJiZjk1ZjBmMDc2OkdKVURoR2dlUVp5bFBEVDNSZ3RFSVE=", authorization) +00:00:49.568 [XNIO-1 task-4] -g32UO7eRVy33oaF1bPOkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.572 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d41b0d79-f72f-46b9-831f-a3e29b6bfe13 +00:00:49.575 [XNIO-1 task-4] -g32UO7eRVy33oaF1bPOkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.586 [XNIO-1 task-4] kBuoQ_bmRnam_BEFgMKCgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.587 [XNIO-1 task-4] kBuoQ_bmRnam_BEFgMKCgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.587 [XNIO-1 task-4] kBuoQ_bmRnam_BEFgMKCgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.587 [XNIO-1 task-4] kBuoQ_bmRnam_BEFgMKCgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.593 [XNIO-1 task-4] kBuoQ_bmRnam_BEFgMKCgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.600 [XNIO-1 task-4] 73jaBXtURZ2-2OJtBpxGXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.601 [XNIO-1 task-4] 73jaBXtURZ2-2OJtBpxGXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.604 [XNIO-1 task-4] 73jaBXtURZ2-2OJtBpxGXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.607 [XNIO-1 task-4] 73jaBXtURZ2-2OJtBpxGXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTEzYmNlM2EtOWI4Ny00OGRlLTgyMDgtM2NlMmUxNTc0ZmY2OmZlZDMtVEJDUVUtVTJBQV9NaGQxaGc=", "Basic YTEzYmNlM2EtOWI4Ny00OGRlLTgyMDgtM2NlMmUxNTc0ZmY2OmZlZDMtVEJDUVUtVTJBQV9NaGQxaGc=", authorization) +00:00:49.612 [XNIO-1 task-4] 73jaBXtURZ2-2OJtBpxGXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.616 [XNIO-1 task-4] 6KC_SX29RkKPywOmWcYR-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.617 [XNIO-1 task-4] 6KC_SX29RkKPywOmWcYR-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.617 [XNIO-1 task-4] 6KC_SX29RkKPywOmWcYR-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.617 [XNIO-1 task-4] 6KC_SX29RkKPywOmWcYR-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:49.620 [XNIO-1 task-5] Uaq6erMCReOLU3IjOiKyaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.620 [XNIO-1 task-5] Uaq6erMCReOLU3IjOiKyaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.621 [XNIO-1 task-5] Uaq6erMCReOLU3IjOiKyaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.621 [XNIO-1 task-5] Uaq6erMCReOLU3IjOiKyaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTM0OGNhNGUtNDg1OC00Mjk1LWI2OWItY2Q1ZDhmNWY1YzBiOm0teHFjelVCUmhteURaYXM0UE5qU0E=", "Basic MTM0OGNhNGUtNDg1OC00Mjk1LWI2OWItY2Q1ZDhmNWY1YzBiOm0teHFjelVCUmhteURaYXM0UE5qU0E=", authorization) +00:00:49.628 [XNIO-1 task-4] 6KC_SX29RkKPywOmWcYR-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.628 [XNIO-1 task-4] 6KC_SX29RkKPywOmWcYR-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.632 [XNIO-1 task-5] Uaq6erMCReOLU3IjOiKyaA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.643 [XNIO-1 task-5] Ev2aSMF2SN-qxuo2MgmAwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.643 [XNIO-1 task-5] Ev2aSMF2SN-qxuo2MgmAwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.643 [XNIO-1 task-5] Ev2aSMF2SN-qxuo2MgmAwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.644 [XNIO-1 task-5] Ev2aSMF2SN-qxuo2MgmAwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.649 [XNIO-1 task-5] Ev2aSMF2SN-qxuo2MgmAwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.652 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6461d0bd +00:00:49.664 [XNIO-1 task-5] KYwvEsoZQli9VQL_ekX7cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.664 [XNIO-1 task-5] KYwvEsoZQli9VQL_ekX7cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.665 [XNIO-1 task-5] KYwvEsoZQli9VQL_ekX7cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.665 [XNIO-1 task-5] KYwvEsoZQli9VQL_ekX7cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzRlOWJmZGEtZGU3MC00ZDdmLThmMWItNThmZDBkODI5MmQ2OnZQUnhidHltVGVDVTZqaGlMSmxJcFE=", "Basic MzRlOWJmZGEtZGU3MC00ZDdmLThmMWItNThmZDBkODI5MmQ2OnZQUnhidHltVGVDVTZqaGlMSmxJcFE=", authorization) +00:00:49.671 [XNIO-1 task-5] KYwvEsoZQli9VQL_ekX7cw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.671 [XNIO-1 task-5] KYwvEsoZQli9VQL_ekX7cw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.671 [XNIO-1 task-4] qea68k6hRGWDOFQRT1P6eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.671 [XNIO-1 task-4] qea68k6hRGWDOFQRT1P6eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.672 [XNIO-1 task-4] qea68k6hRGWDOFQRT1P6eA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmZkNmQ1NmItZGEyNS00YjEwLWJjYTEtZTk0MTg3YmRkOWIyOndKVzREcTh0VDV5X2FFN240bTg3NUE=", "Basic ZmZkNmQ1NmItZGEyNS00YjEwLWJjYTEtZTk0MTg3YmRkOWIyOndKVzREcTh0VDV5X2FFN240bTg3NUE=", authorization) +00:00:49.677 [XNIO-1 task-5] qiaSEgnhTeWE8_0zygzxtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.677 [XNIO-1 task-5] qiaSEgnhTeWE8_0zygzxtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.678 [XNIO-1 task-5] qiaSEgnhTeWE8_0zygzxtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.680 [XNIO-1 task-5] qiaSEgnhTeWE8_0zygzxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.680 [XNIO-1 task-4] qea68k6hRGWDOFQRT1P6eA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.681 [XNIO-1 task-5] qiaSEgnhTeWE8_0zygzxtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.683 [XNIO-1 task-6] 076Q340eQaGNoWzglXcPtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.683 [XNIO-1 task-6] 076Q340eQaGNoWzglXcPtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.684 [XNIO-1 task-6] 076Q340eQaGNoWzglXcPtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.684 [XNIO-1 task-6] 076Q340eQaGNoWzglXcPtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = DvIoseqJTv-9Hy_rCPvVJQ redirectUri = http://localhost:8080/authorization +00:00:49.687 [XNIO-1 task-5] qiaSEgnhTeWE8_0zygzxtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.696 [XNIO-1 task-4] xRYFwNODS6GJyP1RFRl70A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.696 [XNIO-1 task-4] xRYFwNODS6GJyP1RFRl70A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.696 [XNIO-1 task-4] xRYFwNODS6GJyP1RFRl70A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.696 [XNIO-1 task-4] xRYFwNODS6GJyP1RFRl70A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.697 [XNIO-1 task-6] 076Q340eQaGNoWzglXcPtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.700 [XNIO-1 task-5] H_Ne4TyhRl2lnnBazkh-HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.701 [XNIO-1 task-5] H_Ne4TyhRl2lnnBazkh-HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.701 [XNIO-1 task-5] H_Ne4TyhRl2lnnBazkh-HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.702 [XNIO-1 task-4] xRYFwNODS6GJyP1RFRl70A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.702 [XNIO-1 task-5] H_Ne4TyhRl2lnnBazkh-HA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 79f10b22-9303-4d4b-83c3-17e97e6469ef scope = null +00:00:49.716 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:eb7c0fb6-ef0c-414a-a8fe-33cc6e79ee47 +00:00:49.717 [XNIO-1 task-6] Y16usJH5SeyeccSaSBsgGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.717 [XNIO-1 task-6] Y16usJH5SeyeccSaSBsgGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.717 [XNIO-1 task-5] H_Ne4TyhRl2lnnBazkh-HA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.717 [XNIO-1 task-6] Y16usJH5SeyeccSaSBsgGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.718 [XNIO-1 task-6] Y16usJH5SeyeccSaSBsgGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.724 [XNIO-1 task-6] Y16usJH5SeyeccSaSBsgGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.729 [XNIO-1 task-6] JP8llU6fS_6OFB_5vgayXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.729 [XNIO-1 task-6] JP8llU6fS_6OFB_5vgayXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.729 [XNIO-1 task-6] JP8llU6fS_6OFB_5vgayXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.730 [XNIO-1 task-6] JP8llU6fS_6OFB_5vgayXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.735 [XNIO-1 task-5] x4Qlx2tSQ4aYhUNmqnppjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.735 [XNIO-1 task-5] x4Qlx2tSQ4aYhUNmqnppjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.735 [XNIO-1 task-5] x4Qlx2tSQ4aYhUNmqnppjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.736 [XNIO-1 task-5] x4Qlx2tSQ4aYhUNmqnppjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3d07358b-c560-4870-9e03-2c9561e93bb7 scope = null +00:00:49.737 [XNIO-1 task-6] JP8llU6fS_6OFB_5vgayXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.742 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5a4fb9e5 +00:00:49.746 [XNIO-1 task-6] 9eozxkuVTcenmI1Tj2gVfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.747 [XNIO-1 task-6] 9eozxkuVTcenmI1Tj2gVfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.747 [XNIO-1 task-6] 9eozxkuVTcenmI1Tj2gVfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.747 [XNIO-1 task-6] 9eozxkuVTcenmI1Tj2gVfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", "Basic YjI2MmVjMzQtYTA5MC00YzJjLWExYTQtNzUwZjI2NGVhMGU5OmQ5cXJMeWlRUmFPTzA3akh1LTI5SkE=", authorization) +00:00:49.749 [XNIO-1 task-5] x4Qlx2tSQ4aYhUNmqnppjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.753 [XNIO-1 task-6] 9eozxkuVTcenmI1Tj2gVfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.762 [XNIO-1 task-6] PPCeBpa5Q82FeBMbCWn4UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.762 [XNIO-1 task-6] PPCeBpa5Q82FeBMbCWn4UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.763 [XNIO-1 task-6] PPCeBpa5Q82FeBMbCWn4UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.763 [XNIO-1 task-6] PPCeBpa5Q82FeBMbCWn4UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWE0ZTI4NTctODViZC00OTZmLWEzNzgtYzEyYTZkZDU2MDdlOjBEQzdLY0xiUk5LSXozbHgzdEFSQUE=", "Basic NWE0ZTI4NTctODViZC00OTZmLWEzNzgtYzEyYTZkZDU2MDdlOjBEQzdLY0xiUk5LSXozbHgzdEFSQUE=", authorization) +00:00:49.769 [XNIO-1 task-6] PPCeBpa5Q82FeBMbCWn4UQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.781 [XNIO-1 task-6] 7pJPJjZFQQO4vagVBEc06A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.781 [XNIO-1 task-6] 7pJPJjZFQQO4vagVBEc06A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.781 [XNIO-1 task-6] 7pJPJjZFQQO4vagVBEc06A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.781 [XNIO-1 task-6] 7pJPJjZFQQO4vagVBEc06A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:49.787 [XNIO-1 task-6] 7pJPJjZFQQO4vagVBEc06A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.795 [XNIO-1 task-6] SEOe7PjmR6mmf8vuo0Ns_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.795 [XNIO-1 task-6] SEOe7PjmR6mmf8vuo0Ns_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.795 [XNIO-1 task-6] SEOe7PjmR6mmf8vuo0Ns_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.796 [XNIO-1 task-6] SEOe7PjmR6mmf8vuo0Ns_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:49.797 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5a4e2857-85bd-496f-a378-c12a6dd5607e +00:00:49.802 [XNIO-1 task-5] HoSDQ9a4R8adKP7IuC5MGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.802 [XNIO-1 task-5] HoSDQ9a4R8adKP7IuC5MGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.802 [XNIO-1 task-6] SEOe7PjmR6mmf8vuo0Ns_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.802 [XNIO-1 task-5] HoSDQ9a4R8adKP7IuC5MGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.802 [XNIO-1 task-5] HoSDQ9a4R8adKP7IuC5MGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ksOCdgukR5mJTE_mZo1RAQ redirectUri = http://localhost:8080/authorization +00:00:49.815 [XNIO-1 task-6] DTWCwTJ3SL-K3ufrfG0ToA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.815 [XNIO-1 task-6] DTWCwTJ3SL-K3ufrfG0ToA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.817 [XNIO-1 task-6] DTWCwTJ3SL-K3ufrfG0ToA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.819 [XNIO-1 task-6] DTWCwTJ3SL-K3ufrfG0ToA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", "Basic ZjYwMTE2NmItM2UxMi00NjlkLTgwYTQtNTRlMjI2N2RhZDY2OlYtVFJQZ2x1VGUyNlg4bTZ5Nk51OEE=", authorization) +00:00:49.820 [XNIO-1 task-5] HoSDQ9a4R8adKP7IuC5MGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.821 [XNIO-1 task-5] HoSDQ9a4R8adKP7IuC5MGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.825 [XNIO-1 task-6] DTWCwTJ3SL-K3ufrfG0ToA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.832 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6461d0bd +00:00:49.837 [XNIO-1 task-6] takYiJqgQiORthWCVodhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.837 [XNIO-1 task-5] hWov0umjQ1y_YtZ9KQSVZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.837 [XNIO-1 task-5] hWov0umjQ1y_YtZ9KQSVZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.837 [XNIO-1 task-5] hWov0umjQ1y_YtZ9KQSVZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.838 [XNIO-1 task-6] takYiJqgQiORthWCVodhjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.838 [XNIO-1 task-6] takYiJqgQiORthWCVodhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.841 [XNIO-1 task-4] tqUg7autQjenQ8JXXqpMaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.841 [XNIO-1 task-4] tqUg7autQjenQ8JXXqpMaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.841 [XNIO-1 task-4] tqUg7autQjenQ8JXXqpMaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.842 [XNIO-1 task-4] tqUg7autQjenQ8JXXqpMaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a99e36f9-c054-42f7-810e-65e155882cef scope = null +00:00:49.842 [XNIO-1 task-6] takYiJqgQiORthWCVodhjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.843 [XNIO-1 task-5] hWov0umjQ1y_YtZ9KQSVZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = oGoEu8ZETkS9tGanmemCJQ redirectUri = http://localhost:8080/authorization +00:00:49.847 [XNIO-1 task-6] takYiJqgQiORthWCVodhjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.852 [XNIO-1 task-5] hWov0umjQ1y_YtZ9KQSVZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.855 [XNIO-1 task-4] tqUg7autQjenQ8JXXqpMaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.855 [XNIO-1 task-6] AGZcZ_K0Tu6ARMtgL403Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.856 [XNIO-1 task-6] AGZcZ_K0Tu6ARMtgL403Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.856 [XNIO-1 task-6] AGZcZ_K0Tu6ARMtgL403Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.856 [XNIO-1 task-6] AGZcZ_K0Tu6ARMtgL403Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:49.857 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0a4ab93d-1ed7-40e3-b910-655f2f32e12f +00:00:49.862 [XNIO-1 task-6] AGZcZ_K0Tu6ARMtgL403Bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.862 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0a4ab93d-1ed7-40e3-b910-655f2f32e12f +00:00:49.872 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6461d0bd +00:00:49.874 [XNIO-1 task-5] karAycmOQT-rB_DwOSGHIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.874 [XNIO-1 task-5] karAycmOQT-rB_DwOSGHIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.874 [XNIO-1 task-5] karAycmOQT-rB_DwOSGHIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.874 [XNIO-1 task-5] karAycmOQT-rB_DwOSGHIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.877 [XNIO-1 task-6] _TJvU0gES0aeg-WbMoLCpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.877 [XNIO-1 task-6] _TJvU0gES0aeg-WbMoLCpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.880 [XNIO-1 task-5] karAycmOQT-rB_DwOSGHIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.883 [XNIO-1 task-5] karAycmOQT-rB_DwOSGHIg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.883 [XNIO-1 task-6] _TJvU0gES0aeg-WbMoLCpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d3adacb2-e620-41fa-aa0f-b8a5efd24fd6 scope = null +00:00:49.889 [XNIO-1 task-5] _1_d8XVMQ0-Il7jq9-ZPQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.889 [XNIO-1 task-5] _1_d8XVMQ0-Il7jq9-ZPQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.889 [XNIO-1 task-5] _1_d8XVMQ0-Il7jq9-ZPQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.890 [XNIO-1 task-5] _1_d8XVMQ0-Il7jq9-ZPQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.896 [XNIO-1 task-5] _1_d8XVMQ0-Il7jq9-ZPQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.903 [XNIO-1 task-5] -6d3XIQDR5Kd9pFo0KyFpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.903 [XNIO-1 task-5] -6d3XIQDR5Kd9pFo0KyFpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.903 [XNIO-1 task-5] -6d3XIQDR5Kd9pFo0KyFpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.904 [XNIO-1 task-5] -6d3XIQDR5Kd9pFo0KyFpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.906 [XNIO-1 task-6] _TJvU0gES0aeg-WbMoLCpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.911 [XNIO-1 task-5] -6d3XIQDR5Kd9pFo0KyFpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.922 [XNIO-1 task-5] EWIW9VRMTauY_O76gqoc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.922 [XNIO-1 task-5] EWIW9VRMTauY_O76gqoc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.923 [XNIO-1 task-5] EWIW9VRMTauY_O76gqoc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.923 [XNIO-1 task-5] EWIW9VRMTauY_O76gqoc_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.933 [XNIO-1 task-5] EWIW9VRMTauY_O76gqoc_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.935 [XNIO-1 task-6] VYojihMaSf6TyofF0eSxuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.935 [XNIO-1 task-6] VYojihMaSf6TyofF0eSxuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.935 [XNIO-1 task-6] VYojihMaSf6TyofF0eSxuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.936 [XNIO-1 task-6] VYojihMaSf6TyofF0eSxuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ed77d9a8-c0c7-4ba9-be84-b9e5dc2f50c2 scope = null +00:00:49.946 [XNIO-1 task-5] r4ooyTCMQKqq5UhNuf0MiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.946 [XNIO-1 task-5] r4ooyTCMQKqq5UhNuf0MiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.947 [XNIO-1 task-5] r4ooyTCMQKqq5UhNuf0MiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.947 [XNIO-1 task-5] r4ooyTCMQKqq5UhNuf0MiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTk2N2JjYjctMDA4NS00MjJiLWFlNWEtYzIzMzA0YjFjNzUzOlhGY1JzUk9lVFJLZF9raEt6QVpYcHc=", "Basic MTk2N2JjYjctMDA4NS00MjJiLWFlNWEtYzIzMzA0YjFjNzUzOlhGY1JzUk9lVFJLZF9raEt6QVpYcHc=", authorization) +00:00:49.948 [XNIO-1 task-4] U8F7YH_6QCWiX5U60hiLXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.948 [XNIO-1 task-4] U8F7YH_6QCWiX5U60hiLXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:49.949 [XNIO-1 task-4] U8F7YH_6QCWiX5U60hiLXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:49.949 [XNIO-1 task-4] U8F7YH_6QCWiX5U60hiLXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGY1Y2IxZGItOTk0ZC00NzZlLWEzNGItZDU1YzdmMjc3ZDkwOmdmUDNOd0lzUnJHTjFUSFcwUFBJZnc=", "Basic NGY1Y2IxZGItOTk0ZC00NzZlLWEzNGItZDU1YzdmMjc3ZDkwOmdmUDNOd0lzUnJHTjFUSFcwUFBJZnc=", authorization) +00:00:49.949 [XNIO-1 task-6] VYojihMaSf6TyofF0eSxuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.955 [XNIO-1 task-5] r4ooyTCMQKqq5UhNuf0MiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:49.959 [XNIO-1 task-4] U8F7YH_6QCWiX5U60hiLXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:49.960 [XNIO-1 task-4] U8F7YH_6QCWiX5U60hiLXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:49.963 [XNIO-1 task-5] 12zIEsxGS22wc5VmEY89Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.963 [XNIO-1 task-5] 12zIEsxGS22wc5VmEY89Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.963 [XNIO-1 task-5] 12zIEsxGS22wc5VmEY89Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:49.964 [XNIO-1 task-5] 12zIEsxGS22wc5VmEY89Jg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:49.996 [XNIO-1 task-5] 12zIEsxGS22wc5VmEY89Jg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.007 [XNIO-1 task-5] BmdL4ozAQ4OP-bFHkO02rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.007 [XNIO-1 task-5] BmdL4ozAQ4OP-bFHkO02rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.008 [XNIO-1 task-5] BmdL4ozAQ4OP-bFHkO02rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.008 [XNIO-1 task-5] BmdL4ozAQ4OP-bFHkO02rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.013 [XNIO-1 task-5] BmdL4ozAQ4OP-bFHkO02rg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.016 [XNIO-1 task-4] jgT7SAqESk-gSrNeZlE1wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.016 [XNIO-1 task-4] jgT7SAqESk-gSrNeZlE1wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.017 [XNIO-1 task-4] jgT7SAqESk-gSrNeZlE1wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.020 [XNIO-1 task-5] 7vUzAXZqR9ONWWiSxqcZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.020 [XNIO-1 task-5] 7vUzAXZqR9ONWWiSxqcZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.021 [XNIO-1 task-5] 7vUzAXZqR9ONWWiSxqcZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.021 [XNIO-1 task-5] 7vUzAXZqR9ONWWiSxqcZaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.022 [XNIO-1 task-4] jgT7SAqESk-gSrNeZlE1wg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8uqs6T7QS8e6vrhZc2hDZg redirectUri = http://localhost:8080/authorization +00:00:50.026 [XNIO-1 task-5] 7vUzAXZqR9ONWWiSxqcZaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.032 [XNIO-1 task-5] XZZ_qAX8TlaVo3Bvsg1TGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.032 [XNIO-1 task-5] XZZ_qAX8TlaVo3Bvsg1TGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.033 [XNIO-1 task-5] XZZ_qAX8TlaVo3Bvsg1TGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.033 [XNIO-1 task-5] XZZ_qAX8TlaVo3Bvsg1TGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.034 [XNIO-1 task-4] jgT7SAqESk-gSrNeZlE1wg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.041 [XNIO-1 task-5] XZZ_qAX8TlaVo3Bvsg1TGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.050 [XNIO-1 task-4] kxup6IHxScS_TE6X5kppFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.050 [XNIO-1 task-4] kxup6IHxScS_TE6X5kppFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.050 [XNIO-1 task-4] kxup6IHxScS_TE6X5kppFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.051 [XNIO-1 task-4] kxup6IHxScS_TE6X5kppFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", authorization) +00:00:50.052 [XNIO-1 task-5] 9h3CBXKuRySe5HtegyUqnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.052 [XNIO-1 task-5] 9h3CBXKuRySe5HtegyUqnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.053 [XNIO-1 task-5] 9h3CBXKuRySe5HtegyUqnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.053 [XNIO-1 task-5] 9h3CBXKuRySe5HtegyUqnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", "Basic MDUzYWM2MTEtN2UwYi00MTE5LThlYzgtNjkzMzY2ZmNiN2VmOmZoZDlqejJTUndhTFVsVTVNSGFYSlE=", authorization) +00:00:50.056 [XNIO-1 task-4] kxup6IHxScS_TE6X5kppFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.064 [XNIO-1 task-4] e9pVf5ZgRKuXVxZE19ZXBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.064 [XNIO-1 task-4] e9pVf5ZgRKuXVxZE19ZXBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.064 [XNIO-1 task-4] e9pVf5ZgRKuXVxZE19ZXBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.065 [XNIO-1 task-4] e9pVf5ZgRKuXVxZE19ZXBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", authorization) +00:00:50.070 [XNIO-1 task-5] 9h3CBXKuRySe5HtegyUqnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.071 [XNIO-1 task-4] e9pVf5ZgRKuXVxZE19ZXBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.076 [XNIO-1 task-4] mvjt8YPNTL6a26wo_I49sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.076 [XNIO-1 task-4] mvjt8YPNTL6a26wo_I49sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.077 [XNIO-1 task-4] mvjt8YPNTL6a26wo_I49sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.079 [XNIO-1 task-4] mvjt8YPNTL6a26wo_I49sA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", authorization) +00:00:50.080 [XNIO-1 task-6] wmQRhKCvTGGVdV-CdV2r0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.081 [XNIO-1 task-6] wmQRhKCvTGGVdV-CdV2r0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.081 [XNIO-1 task-6] wmQRhKCvTGGVdV-CdV2r0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.081 [XNIO-1 task-6] wmQRhKCvTGGVdV-CdV2r0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", authorization) +00:00:50.084 [XNIO-1 task-4] mvjt8YPNTL6a26wo_I49sA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.090 [XNIO-1 task-5] Ya1bCXq9RnC7o7ut8swKJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.091 [XNIO-1 task-5] Ya1bCXq9RnC7o7ut8swKJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.092 [XNIO-1 task-6] wmQRhKCvTGGVdV-CdV2r0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:50.094 [XNIO-1 task-4] AGoCbAXIQ8qh55NJZHWtjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.094 [XNIO-1 task-6] wmQRhKCvTGGVdV-CdV2r0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.094 [XNIO-1 task-5] Ya1bCXq9RnC7o7ut8swKJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.094 [XNIO-1 task-5] Ya1bCXq9RnC7o7ut8swKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.094 [XNIO-1 task-4] AGoCbAXIQ8qh55NJZHWtjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.095 [XNIO-1 task-5] Ya1bCXq9RnC7o7ut8swKJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", authorization) +00:00:50.095 [XNIO-1 task-5] Ya1bCXq9RnC7o7ut8swKJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.100 [XNIO-1 task-5] Ya1bCXq9RnC7o7ut8swKJw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.110 [XNIO-1 task-5] XaXtox2SQse-IGMuWPMwWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.110 [XNIO-1 task-5] XaXtox2SQse-IGMuWPMwWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.110 [XNIO-1 task-5] XaXtox2SQse-IGMuWPMwWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.111 [XNIO-1 task-5] XaXtox2SQse-IGMuWPMwWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.118 [XNIO-1 task-5] XaXtox2SQse-IGMuWPMwWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.123 [XNIO-1 task-4] AGoCbAXIQ8qh55NJZHWtjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.124 [XNIO-1 task-6] g2aXypcCS_2dKa1G5PEguw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.124 [XNIO-1 task-6] g2aXypcCS_2dKa1G5PEguw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.124 [XNIO-1 task-6] g2aXypcCS_2dKa1G5PEguw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.124 [XNIO-1 task-6] g2aXypcCS_2dKa1G5PEguw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.126 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e62dbb56-302c-4f88-920d-26119e16ab75 +00:00:50.129 [XNIO-1 task-5] _mmlyQUMR5qu9gJChCOoyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.129 [XNIO-1 task-5] _mmlyQUMR5qu9gJChCOoyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.129 [XNIO-1 task-5] _mmlyQUMR5qu9gJChCOoyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.129 [XNIO-1 task-5] _mmlyQUMR5qu9gJChCOoyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", authorization) +00:00:50.130 [XNIO-1 task-6] g2aXypcCS_2dKa1G5PEguw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.170 [XNIO-1 task-4] vokns-2BRLaNp7E7GBd7Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.170 [XNIO-1 task-4] vokns-2BRLaNp7E7GBd7Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.171 [XNIO-1 task-4] vokns-2BRLaNp7E7GBd7Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.171 [XNIO-1 task-4] vokns-2BRLaNp7E7GBd7Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", "Basic YjM2YWJmODYtN2M0Yy00MDliLWExOGMtMjllMmI1YjIwNzg3Okc1MENvVVIyUmJ1cTlwV1poOXJEWkE=", authorization) +00:00:50.176 [XNIO-1 task-4] vokns-2BRLaNp7E7GBd7Fw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.178 [XNIO-1 task-5] _mmlyQUMR5qu9gJChCOoyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.183 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6deda7ee-5689-4c04-9d1a-4863a8281042 +00:00:50.194 [XNIO-1 task-4] boPJ8rnRQqu--wWa6qD-uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.195 [XNIO-1 task-4] boPJ8rnRQqu--wWa6qD-uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.195 [XNIO-1 task-4] boPJ8rnRQqu--wWa6qD-uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.195 [XNIO-1 task-6] APFSl8JZTbu5yBbvBg40zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.196 [XNIO-1 task-6] APFSl8JZTbu5yBbvBg40zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.196 [XNIO-1 task-6] APFSl8JZTbu5yBbvBg40zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.196 [XNIO-1 task-6] APFSl8JZTbu5yBbvBg40zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.196 [XNIO-1 task-6] APFSl8JZTbu5yBbvBg40zg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e96c51d1-1fe3-4555-8c15-dab15b85a7d7 scope = null +00:00:50.201 [XNIO-1 task-4] boPJ8rnRQqu--wWa6qD-uw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e96c51d1-1fe3-4555-8c15-dab15b85a7d7 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:50.211 [XNIO-1 task-6] b8DxVL9HSpejtSYcO6vOPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.211 [XNIO-1 task-6] b8DxVL9HSpejtSYcO6vOPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.212 [XNIO-1 task-6] b8DxVL9HSpejtSYcO6vOPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.212 [XNIO-1 task-6] b8DxVL9HSpejtSYcO6vOPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", "Basic MjlkMDZkNmEtODBhNC00NGUzLWI3MDYtMGNmNDU4YjJlY2I4OlBQTTc4eFYyUmMtUTF4NzBxcXNrenc=", authorization) +00:00:50.217 [XNIO-1 task-6] b8DxVL9HSpejtSYcO6vOPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.226 [XNIO-1 task-6] woBpa1xmRFO_-WsI18pm8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.226 [XNIO-1 task-6] woBpa1xmRFO_-WsI18pm8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.226 [XNIO-1 task-6] woBpa1xmRFO_-WsI18pm8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.227 [XNIO-1 task-6] woBpa1xmRFO_-WsI18pm8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThhYTNjNzctZmE2Ny00YTVmLWJmYzItMDE2ZWJkNTQyNzIzOkRuaGtpSE5yUkphRVgzZEc4M3laWkE=", "Basic ZThhYTNjNzctZmE2Ny00YTVmLWJmYzItMDE2ZWJkNTQyNzIzOkRuaGtpSE5yUkphRVgzZEc4M3laWkE=", authorization) +00:00:50.236 [XNIO-1 task-6] woBpa1xmRFO_-WsI18pm8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.247 [XNIO-1 task-6] Uc1pElWgTgexbs8XWU6GSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.248 [XNIO-1 task-6] Uc1pElWgTgexbs8XWU6GSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.248 [XNIO-1 task-6] Uc1pElWgTgexbs8XWU6GSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.248 [XNIO-1 task-6] Uc1pElWgTgexbs8XWU6GSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThhYTNjNzctZmE2Ny00YTVmLWJmYzItMDE2ZWJkNTQyNzIzOkRuaGtpSE5yUkphRVgzZEc4M3laWkE=", "Basic ZThhYTNjNzctZmE2Ny00YTVmLWJmYzItMDE2ZWJkNTQyNzIzOkRuaGtpSE5yUkphRVgzZEc4M3laWkE=", authorization) +00:00:50.256 [XNIO-1 task-6] Uc1pElWgTgexbs8XWU6GSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.264 [XNIO-1 task-6] WPCYjUUbSfCuFv-4_IG5cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.264 [XNIO-1 task-6] WPCYjUUbSfCuFv-4_IG5cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.265 [XNIO-1 task-6] WPCYjUUbSfCuFv-4_IG5cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.265 [XNIO-1 task-6] WPCYjUUbSfCuFv-4_IG5cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", "Basic ZGY5OTYxOTktYjkwYS00ZjhiLThhZGUtYmJmN2VjOWQ3M2E0Ollkak9ma01uVGFtQUUwcmlTd3h3UkE=", authorization) +00:00:50.268 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5a4fb9e5 +00:00:50.275 [XNIO-1 task-6] WPCYjUUbSfCuFv-4_IG5cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.284 [XNIO-1 task-6] YCVS59BETKOkBYMgiuG96w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.284 [XNIO-1 task-6] YCVS59BETKOkBYMgiuG96w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.284 [XNIO-1 task-6] YCVS59BETKOkBYMgiuG96w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.285 [XNIO-1 task-6] YCVS59BETKOkBYMgiuG96w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:50.290 [XNIO-1 task-6] YCVS59BETKOkBYMgiuG96w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.300 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b44a0df7 +00:00:50.305 [XNIO-1 task-6] m6AY3P77R4idw2Z4PrGxyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.305 [XNIO-1 task-6] m6AY3P77R4idw2Z4PrGxyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.306 [XNIO-1 task-6] m6AY3P77R4idw2Z4PrGxyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.306 [XNIO-1 task-6] m6AY3P77R4idw2Z4PrGxyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:50.310 [XNIO-1 task-4] bnQnVqwbT6akDOhzUgsEvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.310 [XNIO-1 task-4] bnQnVqwbT6akDOhzUgsEvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.310 [XNIO-1 task-4] bnQnVqwbT6akDOhzUgsEvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.310 [XNIO-1 task-4] bnQnVqwbT6akDOhzUgsEvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhZWNlZDUtOGE5NS00YTRhLWEyYjQtYWZjMTBkMzQzZGY0OmVsQ0xIWWVKUlMtYzUwX1prOXB0OUE=", "Basic ZjNhZWNlZDUtOGE5NS00YTRhLWEyYjQtYWZjMTBkMzQzZGY0OmVsQ0xIWWVKUlMtYzUwX1prOXB0OUE=", authorization) +00:00:50.312 [XNIO-1 task-6] m6AY3P77R4idw2Z4PrGxyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.313 [XNIO-1 task-5] lR87UfxSQwqmgwgQhFXV-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.314 [XNIO-1 task-5] lR87UfxSQwqmgwgQhFXV-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.314 [XNIO-1 task-5] lR87UfxSQwqmgwgQhFXV-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.314 [XNIO-1 task-5] lR87UfxSQwqmgwgQhFXV-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", "Basic NjdhZmQyN2ItM2ViZC00MzRjLWIyYzAtNDVlYTYwYjIyMjhhOnE5Ukdabm00U0lhajNyb05MaGdBcHc=", authorization) +00:00:50.321 [XNIO-1 task-5] lR87UfxSQwqmgwgQhFXV-g ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:50.324 [XNIO-1 task-4] bnQnVqwbT6akDOhzUgsEvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:50.324 [XNIO-1 task-5] KwkUmwMYR9q1IQiusVd55A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.325 [XNIO-1 task-5] KwkUmwMYR9q1IQiusVd55A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.325 [XNIO-1 task-5] KwkUmwMYR9q1IQiusVd55A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.325 [XNIO-1 task-5] KwkUmwMYR9q1IQiusVd55A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", authorization) +00:00:50.330 [XNIO-1 task-5] KwkUmwMYR9q1IQiusVd55A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.344 [XNIO-1 task-4] 0mawXd2pTOG_dWD6BG5nEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.344 [XNIO-1 task-4] 0mawXd2pTOG_dWD6BG5nEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.344 [XNIO-1 task-4] 0mawXd2pTOG_dWD6BG5nEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +Jun 29, 2024 12:00:50 AM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:50.345 [XNIO-1 task-4] 0mawXd2pTOG_dWD6BG5nEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.350 [XNIO-1 task-4] 0mawXd2pTOG_dWD6BG5nEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.356 [XNIO-1 task-4] RxIa1UR5TAuZI7UmL8209A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +00:00:50.363 [XNIO-1 task-4] RxIa1UR5TAuZI7UmL8209A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.369 [XNIO-1 task-4] WVFKv0QCTo-REZbcwn-gCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.371 [XNIO-1 task-5] 9tg4J01gSx-Ic7N6frZAjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +00:00:50.371 [XNIO-1 task-4] WVFKv0QCTo-REZbcwn-gCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.371 [XNIO-1 task-5] 9tg4J01gSx-Ic7N6frZAjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.371 [XNIO-1 task-5] 9tg4J01gSx-Ic7N6frZAjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.371 [XNIO-1 task-5] 9tg4J01gSx-Ic7N6frZAjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.371 [XNIO-1 task-5] 9tg4J01gSx-Ic7N6frZAjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk1N2U3MzItYTBiNy00NjQ2LTg3YTgtYTIzZDkxYzdiZWEyOmRFcXRqd0s4VEhpTWRaa1ZoY2pNbXc=", "Basic OTk1N2U3MzItYTBiNy00NjQ2LTg3YTgtYTIzZDkxYzdiZWEyOmRFcXRqd0s4VEhpTWRaa1ZoY2pNbXc=", authorization) +00:00:50.372 [XNIO-1 task-5] 9tg4J01gSx-Ic7N6frZAjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.378 [XNIO-1 task-5] 9tg4J01gSx-Ic7N6frZAjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.380 [XNIO-1 task-4] WVFKv0QCTo-REZbcwn-gCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.385 [XNIO-1 task-5] 43FhbDCWSBWHb2GjZR502A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.385 [XNIO-1 task-5] 43FhbDCWSBWHb2GjZR502A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.386 [XNIO-1 task-5] 43FhbDCWSBWHb2GjZR502A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.386 [XNIO-1 task-5] 43FhbDCWSBWHb2GjZR502A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk1N2U3MzItYTBiNy00NjQ2LTg3YTgtYTIzZDkxYzdiZWEyOmRFcXRqd0s4VEhpTWRaa1ZoY2pNbXc=", "Basic OTk1N2U3MzItYTBiNy00NjQ2LTg3YTgtYTIzZDkxYzdiZWEyOmRFcXRqd0s4VEhpTWRaa1ZoY2pNbXc=", authorization) +00:00:50.391 [XNIO-1 task-5] 43FhbDCWSBWHb2GjZR502A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.405 [XNIO-1 task-4] hBSfnA-mSkeCxDKjJzzLbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.405 [XNIO-1 task-4] hBSfnA-mSkeCxDKjJzzLbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.405 [XNIO-1 task-4] hBSfnA-mSkeCxDKjJzzLbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.406 [XNIO-1 task-4] hBSfnA-mSkeCxDKjJzzLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTk1N2U3MzItYTBiNy00NjQ2LTg3YTgtYTIzZDkxYzdiZWEyOmRFcXRqd0s4VEhpTWRaa1ZoY2pNbXc=", "Basic OTk1N2U3MzItYTBiNy00NjQ2LTg3YTgtYTIzZDkxYzdiZWEyOmRFcXRqd0s4VEhpTWRaa1ZoY2pNbXc=", authorization) +00:00:50.411 [XNIO-1 task-4] hBSfnA-mSkeCxDKjJzzLbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.416 [XNIO-1 task-4] fACDrPvUTnePu2cFt-oMgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.416 [XNIO-1 task-4] fACDrPvUTnePu2cFt-oMgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.416 [XNIO-1 task-4] fACDrPvUTnePu2cFt-oMgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.417 [XNIO-1 task-4] fACDrPvUTnePu2cFt-oMgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTY4MjZjY2MtNTUxYi00MjlkLTlmNmEtMDE0ZjM4YTc4Yjk5OjRaVmFWOV82UzBTOFQza1Itc0FmdWc=", "Basic MTY4MjZjY2MtNTUxYi00MjlkLTlmNmEtMDE0ZjM4YTc4Yjk5OjRaVmFWOV82UzBTOFQza1Itc0FmdWc=", authorization) +00:00:50.419 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5a4fb9e5 +00:00:50.423 [XNIO-1 task-4] fACDrPvUTnePu2cFt-oMgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.430 [XNIO-1 task-4] TTEkAhswSJGefqV3MvtF8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.430 [XNIO-1 task-4] TTEkAhswSJGefqV3MvtF8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.430 [XNIO-1 task-4] TTEkAhswSJGefqV3MvtF8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.431 [XNIO-1 task-4] TTEkAhswSJGefqV3MvtF8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", "Basic MzUyZDBlZDctZTc0MC00ZjY3LWIyODUtMmNmODlmZWJmNGE1Okd3ZlN3MFVjUUFhZWViZlpta2EyVmc=", authorization) +00:00:50.437 [XNIO-1 task-4] TTEkAhswSJGefqV3MvtF8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.441 [XNIO-1 task-4] JQldaqwDQq6ruLeEuAgwMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.441 [XNIO-1 task-4] JQldaqwDQq6ruLeEuAgwMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.442 [XNIO-1 task-4] JQldaqwDQq6ruLeEuAgwMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.442 [XNIO-1 task-4] JQldaqwDQq6ruLeEuAgwMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTY4MjZjY2MtNTUxYi00MjlkLTlmNmEtMDE0ZjM4YTc4Yjk5OjRaVmFWOV82UzBTOFQza1Itc0FmdWc=", "Basic MTY4MjZjY2MtNTUxYi00MjlkLTlmNmEtMDE0ZjM4YTc4Yjk5OjRaVmFWOV82UzBTOFQza1Itc0FmdWc=", authorization) +00:00:50.447 [XNIO-1 task-4] JQldaqwDQq6ruLeEuAgwMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.452 [XNIO-1 task-4] aACkltYLSaiqnd1B1yVjzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.452 [XNIO-1 task-4] aACkltYLSaiqnd1B1yVjzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.452 [XNIO-1 task-4] aACkltYLSaiqnd1B1yVjzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.452 [XNIO-1 task-4] aACkltYLSaiqnd1B1yVjzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGRjZTk4NzQtMWYxYy00MzIzLWJlYjktZmYxNThhN2Q0YWNmOnJxSnNfaVlFU0gtR2FLOXlTZl9GbEE=", "Basic MGRjZTk4NzQtMWYxYy00MzIzLWJlYjktZmYxNThhN2Q0YWNmOnJxSnNfaVlFU0gtR2FLOXlTZl9GbEE=", authorization) +00:00:50.459 [XNIO-1 task-4] aACkltYLSaiqnd1B1yVjzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.474 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d7a9ba98-0893-493d-ae64-c11cc032d167 +00:00:50.474 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a4fb9e5 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:50.480 [XNIO-1 task-4] tALlEmT2TX-CfkAJazHxhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.481 [XNIO-1 task-4] tALlEmT2TX-CfkAJazHxhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.481 [XNIO-1 task-4] tALlEmT2TX-CfkAJazHxhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.481 [XNIO-1 task-4] tALlEmT2TX-CfkAJazHxhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:50.490 [XNIO-1 task-4] tALlEmT2TX-CfkAJazHxhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.498 [XNIO-1 task-4] GZJe9roYSpyCQzY2IDzHUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.498 [XNIO-1 task-4] GZJe9roYSpyCQzY2IDzHUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.499 [XNIO-1 task-4] GZJe9roYSpyCQzY2IDzHUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.499 [XNIO-1 task-5] EdhS6NPfSrmSnEtL7-Dwpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.499 [XNIO-1 task-5] EdhS6NPfSrmSnEtL7-Dwpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.499 [XNIO-1 task-4] GZJe9roYSpyCQzY2IDzHUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGY1Y2IxZGItOTk0ZC00NzZlLWEzNGItZDU1YzdmMjc3ZDkwOmdmUDNOd0lzUnJHTjFUSFcwUFBJZnc=", "Basic NGY1Y2IxZGItOTk0ZC00NzZlLWEzNGItZDU1YzdmMjc3ZDkwOmdmUDNOd0lzUnJHTjFUSFcwUFBJZnc=", authorization) +00:00:50.499 [XNIO-1 task-5] EdhS6NPfSrmSnEtL7-Dwpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.499 [XNIO-1 task-5] EdhS6NPfSrmSnEtL7-Dwpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:50.504 [XNIO-1 task-5] EdhS6NPfSrmSnEtL7-Dwpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.512 [XNIO-1 task-5] iS9PqoxTTt-JkMPAnEwI7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.512 [XNIO-1 task-5] iS9PqoxTTt-JkMPAnEwI7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.512 [XNIO-1 task-5] iS9PqoxTTt-JkMPAnEwI7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.512 [XNIO-1 task-5] iS9PqoxTTt-JkMPAnEwI7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +00:00:50.513 [XNIO-1 task-5] iS9PqoxTTt-JkMPAnEwI7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:50.519 [XNIO-1 task-4] QG3uOquURx6PmdXyZS5DtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.519 [XNIO-1 task-4] QG3uOquURx6PmdXyZS5DtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.519 [XNIO-1 task-5] iS9PqoxTTt-JkMPAnEwI7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.519 [XNIO-1 task-5] iS9PqoxTTt-JkMPAnEwI7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.520 [XNIO-1 task-4] QG3uOquURx6PmdXyZS5DtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", "Basic Yjg5OTA0ZGQtM2NlNy00YWNhLWJhMjYtOTU3YjZhMjc1YmJhOjZVbi1kUkROUlZXMDFub1ZrWjlaelE=", authorization) +00:00:50.521 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5a4fb9e5 +00:00:50.524 [XNIO-1 task-5] CwlnJuzISXSLmLm8HQ8r1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.525 [XNIO-1 task-5] CwlnJuzISXSLmLm8HQ8r1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.527 [XNIO-1 task-5] CwlnJuzISXSLmLm8HQ8r1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.527 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:18bc9b6d +00:00:50.528 [XNIO-1 task-5] CwlnJuzISXSLmLm8HQ8r1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", "Basic MDRiNmI2NzMtY2RjNi00ZGRkLThhODQtODk5MDk0MzQ0OGVmOkE5WG1lZE4tUndlSFdwRktCV0tVVHc=", authorization) +00:00:50.529 [XNIO-1 task-4] QG3uOquURx6PmdXyZS5DtA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:50.534 [XNIO-1 task-5] CwlnJuzISXSLmLm8HQ8r1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.539 [XNIO-1 task-5] 3rHKtLeBQVeHXaJJxQrjnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.539 [XNIO-1 task-5] 3rHKtLeBQVeHXaJJxQrjnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.539 [XNIO-1 task-4] 21PjWEpnS5S05BNLvcVQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.539 [XNIO-1 task-5] 3rHKtLeBQVeHXaJJxQrjnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.540 [XNIO-1 task-5] 3rHKtLeBQVeHXaJJxQrjnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.540 [XNIO-1 task-4] 21PjWEpnS5S05BNLvcVQUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.540 [XNIO-1 task-5] 3rHKtLeBQVeHXaJJxQrjnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = b7cQZJ-AS-GOyncEz5erbw redirectUri = http://localhost:8080/authorization +00:00:50.540 [XNIO-1 task-4] 21PjWEpnS5S05BNLvcVQUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.550 [XNIO-1 task-4] 21PjWEpnS5S05BNLvcVQUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.551 [XNIO-1 task-6] x_z8EZIvTROwZQBCyy9acA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.551 [XNIO-1 task-6] x_z8EZIvTROwZQBCyy9acA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.552 [XNIO-1 task-6] x_z8EZIvTROwZQBCyy9acA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.552 [XNIO-1 task-6] x_z8EZIvTROwZQBCyy9acA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = udXaSnvuTIWHyNwfO_6Nhw redirectUri = http://localhost:8080/authorization +00:00:50.556 [XNIO-1 task-4] FvWuLybcRxisfwK3m0mz3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.556 [XNIO-1 task-5] 3rHKtLeBQVeHXaJJxQrjnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:50.556 [XNIO-1 task-5] 3rHKtLeBQVeHXaJJxQrjnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.556 [XNIO-1 task-4] FvWuLybcRxisfwK3m0mz3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.557 [XNIO-1 task-4] FvWuLybcRxisfwK3m0mz3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", "Basic MmFmNzJiZjEtZjRkZi00YjM3LTkyMjctY2NmMDE3MTdmN2MxOkJvQjZKZWRWVGQtbnpBMHpvUnZHTVE=", authorization) +00:00:50.562 [XNIO-1 task-4] FvWuLybcRxisfwK3m0mz3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.563 [XNIO-1 task-6] x_z8EZIvTROwZQBCyy9acA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:50.564 [XNIO-1 task-6] x_z8EZIvTROwZQBCyy9acA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.568 [XNIO-1 task-4] qzijjQT-TIuPG07q6b4FUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.568 [XNIO-1 task-4] qzijjQT-TIuPG07q6b4FUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.568 [XNIO-1 task-4] qzijjQT-TIuPG07q6b4FUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.568 [XNIO-1 task-4] qzijjQT-TIuPG07q6b4FUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.577 [XNIO-1 task-4] qzijjQT-TIuPG07q6b4FUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.582 [XNIO-1 task-4] 7sLX3JWeRtyWdEWNpyAozw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.582 [XNIO-1 task-4] 7sLX3JWeRtyWdEWNpyAozw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.582 [XNIO-1 task-4] 7sLX3JWeRtyWdEWNpyAozw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.583 [XNIO-1 task-4] 7sLX3JWeRtyWdEWNpyAozw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3e97ea7f-e968-4864-aec3-16c7195acc62 scope = null +00:00:50.585 [XNIO-1 task-6] dACaEP6USHySU6HdMKw80Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.585 [XNIO-1 task-6] dACaEP6USHySU6HdMKw80Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.585 [XNIO-1 task-6] dACaEP6USHySU6HdMKw80Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.585 [XNIO-1 task-6] dACaEP6USHySU6HdMKw80Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.591 [XNIO-1 task-6] dACaEP6USHySU6HdMKw80Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.598 [XNIO-1 task-6] 2xAPn4MtQGeTVeIexuePbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.598 [XNIO-1 task-6] 2xAPn4MtQGeTVeIexuePbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.598 [XNIO-1 task-4] 7sLX3JWeRtyWdEWNpyAozw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.599 [XNIO-1 task-6] 2xAPn4MtQGeTVeIexuePbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.599 [XNIO-1 task-6] 2xAPn4MtQGeTVeIexuePbg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.603 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3c6d0630-e697-4e0a-b25f-9c417f867258 +00:00:50.604 [XNIO-1 task-6] 2xAPn4MtQGeTVeIexuePbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.611 [XNIO-1 task-6] LUcmvDTWSgOiQAP-g1eC2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.611 [XNIO-1 task-6] LUcmvDTWSgOiQAP-g1eC2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.612 [XNIO-1 task-6] LUcmvDTWSgOiQAP-g1eC2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.612 [XNIO-1 task-6] LUcmvDTWSgOiQAP-g1eC2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", authorization) +00:00:50.623 [XNIO-1 task-6] LUcmvDTWSgOiQAP-g1eC2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.624 [XNIO-1 task-4] LYBAy30MRh-suA88az9bHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.625 [XNIO-1 task-4] LYBAy30MRh-suA88az9bHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.625 [XNIO-1 task-4] LYBAy30MRh-suA88az9bHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.626 [XNIO-1 task-4] LYBAy30MRh-suA88az9bHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", authorization) +00:00:50.634 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3c6d0630-e697-4e0a-b25f-9c417f867258 +00:00:50.644 [XNIO-1 task-4] LYBAy30MRh-suA88az9bHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.645 [XNIO-1 task-6] lTCTiCgUROGgemSVtY_ntA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.645 [XNIO-1 task-6] lTCTiCgUROGgemSVtY_ntA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.645 [XNIO-1 task-6] lTCTiCgUROGgemSVtY_ntA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.645 [XNIO-1 task-6] lTCTiCgUROGgemSVtY_ntA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.650 [XNIO-1 task-6] lTCTiCgUROGgemSVtY_ntA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.655 [XNIO-1 task-6] LNswCMasRayZz_7MSe-xsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.655 [XNIO-1 task-6] LNswCMasRayZz_7MSe-xsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.656 [XNIO-1 task-6] LNswCMasRayZz_7MSe-xsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.656 [XNIO-1 task-6] LNswCMasRayZz_7MSe-xsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.661 [XNIO-1 task-6] LNswCMasRayZz_7MSe-xsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.667 [XNIO-1 task-6] tOxQB_7xRPGD0ph8ADe-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.667 [XNIO-1 task-6] tOxQB_7xRPGD0ph8ADe-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.667 [XNIO-1 task-6] tOxQB_7xRPGD0ph8ADe-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.668 [XNIO-1 task-6] tOxQB_7xRPGD0ph8ADe-4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = zRcU-GIhRZi9CHJFVZsBQg redirectUri = http://localhost:8080/authorization +00:00:50.673 [XNIO-1 task-4] izXbt55nTrqCVhnhr_wrqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.673 [XNIO-1 task-4] izXbt55nTrqCVhnhr_wrqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.673 [XNIO-1 task-4] izXbt55nTrqCVhnhr_wrqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.674 [XNIO-1 task-4] izXbt55nTrqCVhnhr_wrqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.679 [XNIO-1 task-6] tOxQB_7xRPGD0ph8ADe-4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.685 [XNIO-1 task-4] izXbt55nTrqCVhnhr_wrqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.694 [XNIO-1 task-6] IzUdUrA2SXWOTCkvX_H0lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.694 [XNIO-1 task-6] IzUdUrA2SXWOTCkvX_H0lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.695 [XNIO-1 task-6] IzUdUrA2SXWOTCkvX_H0lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.695 [XNIO-1 task-6] IzUdUrA2SXWOTCkvX_H0lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", "Basic YzY2M2ZjZjAtZGJiZi00YjMxLTg4YjUtNjQwZmY0Yzc5Y2ZiOkJpWi03YlNsUkRLMFlUUzEwYTlJanc=", authorization) +00:00:50.696 [XNIO-1 task-4] 9eEW1RiSTWScOeu6rSqKYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.697 [XNIO-1 task-4] 9eEW1RiSTWScOeu6rSqKYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.697 [XNIO-1 task-4] 9eEW1RiSTWScOeu6rSqKYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.697 [XNIO-1 task-4] 9eEW1RiSTWScOeu6rSqKYA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", "Basic MGIxNzNjNTgtMmQxOC00MDE0LThlZDctOGVkY2Y3NWZiN2Y2OjlQVFNlS0hJUjJ5VkEzSzdSTzgxY0E=", authorization) +00:00:50.700 [XNIO-1 task-6] IzUdUrA2SXWOTCkvX_H0lw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.703 [XNIO-1 task-4] 9eEW1RiSTWScOeu6rSqKYA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +00:00:50.704 [XNIO-1 task-4] 9eEW1RiSTWScOeu6rSqKYA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.705 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:34bf4053-c82b-4e6a-895e-64b9ae1b3cc1 +00:00:50.706 [XNIO-1 task-6] O-6CrEiKS_Ga-I3KHbLKTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.706 [XNIO-1 task-6] O-6CrEiKS_Ga-I3KHbLKTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.706 [XNIO-1 task-6] O-6CrEiKS_Ga-I3KHbLKTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.707 [XNIO-1 task-6] O-6CrEiKS_Ga-I3KHbLKTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.713 [XNIO-1 task-6] O-6CrEiKS_Ga-I3KHbLKTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.724 [XNIO-1 task-6] aviORezIRji8NcrwsChRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.724 [XNIO-1 task-6] aviORezIRji8NcrwsChRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.724 [XNIO-1 task-6] aviORezIRji8NcrwsChRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.724 [XNIO-1 task-4] DFKrrAN3S3CfIbv1Vthl7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.724 [XNIO-1 task-4] DFKrrAN3S3CfIbv1Vthl7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.724 [XNIO-1 task-6] aviORezIRji8NcrwsChRzA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.725 [XNIO-1 task-4] DFKrrAN3S3CfIbv1Vthl7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.725 [XNIO-1 task-4] DFKrrAN3S3CfIbv1Vthl7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = D_cmdBqWT16DeLOUdwci0w redirectUri = http://localhost:8080/authorization +00:00:50.731 [XNIO-1 task-6] aviORezIRji8NcrwsChRzA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.733 [XNIO-1 task-4] DFKrrAN3S3CfIbv1Vthl7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.742 [XNIO-1 task-6] a--HNvHXR8iNLgDZZRbfsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.742 [XNIO-1 task-6] a--HNvHXR8iNLgDZZRbfsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.743 [XNIO-1 task-6] a--HNvHXR8iNLgDZZRbfsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.745 [XNIO-1 task-6] a--HNvHXR8iNLgDZZRbfsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", "Basic NTZmMGYzYTYtNjljYi00ZjUwLTliNWEtYTA2ZTJlNzg2ZGMwOmFvZFFnWHVjVHZhVmhmOUJxWGh4LVE=", authorization) +00:00:50.750 [XNIO-1 task-4] vdxMi05lT3qSvTeWfvem9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.750 [XNIO-1 task-4] vdxMi05lT3qSvTeWfvem9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.751 [XNIO-1 task-4] vdxMi05lT3qSvTeWfvem9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.751 [XNIO-1 task-4] vdxMi05lT3qSvTeWfvem9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", "Basic ODAzYzhkZTctNDVmZi00Mjg3LTg4MTMtNTljMTNlNzVlMzUzOjhPUDVqTG9TU25laldRazRVU0x4dmc=", authorization) +00:00:50.755 [XNIO-1 task-6] a--HNvHXR8iNLgDZZRbfsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.759 [XNIO-1 task-4] vdxMi05lT3qSvTeWfvem9w ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +00:00:50.805 [XNIO-1 task-6] D5-6XPpmSya-2xMUaDmGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.805 [XNIO-1 task-6] D5-6XPpmSya-2xMUaDmGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.806 [XNIO-1 task-6] D5-6XPpmSya-2xMUaDmGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.806 [XNIO-1 task-6] D5-6XPpmSya-2xMUaDmGZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.807 [XNIO-1 task-4] HtR-6piJSeWtAuzIG3wDfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.807 [XNIO-1 task-4] HtR-6piJSeWtAuzIG3wDfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.807 [XNIO-1 task-4] HtR-6piJSeWtAuzIG3wDfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.808 [XNIO-1 task-4] HtR-6piJSeWtAuzIG3wDfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9ZYrc1g8QsCDa2kl3ttGWw redirectUri = http://localhost:8080/authorization +00:00:50.812 [XNIO-1 task-6] D5-6XPpmSya-2xMUaDmGZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.841 [XNIO-1 task-4] HtR-6piJSeWtAuzIG3wDfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.868 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a6e03baa-980a-4fee-8137-4420cf3a919f +00:00:50.874 [XNIO-1 task-6] x6as-r3LSyCC5GcoVrCUVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.874 [XNIO-1 task-6] x6as-r3LSyCC5GcoVrCUVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.875 [XNIO-1 task-6] x6as-r3LSyCC5GcoVrCUVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.875 [XNIO-1 task-6] x6as-r3LSyCC5GcoVrCUVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", "Basic OTU4YTVmM2QtMjRhZS00MDFlLTlhOWItYjA5ZWFiNmE3N2JiOm1ONFVxOEpRU3JPbTYxU1Zva3hkcVE=", authorization) +00:00:50.880 [XNIO-1 task-6] x6as-r3LSyCC5GcoVrCUVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.884 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:70993f18 +00:00:50.887 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:70993f18 +00:00:50.896 [XNIO-1 task-6] kciI1FudT8qFoJu5ZX-Omg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.896 [XNIO-1 task-6] kciI1FudT8qFoJu5ZX-Omg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.896 [XNIO-1 task-6] kciI1FudT8qFoJu5ZX-Omg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.897 [XNIO-1 task-6] kciI1FudT8qFoJu5ZX-Omg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.902 [XNIO-1 task-6] kciI1FudT8qFoJu5ZX-Omg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.914 [XNIO-1 task-6] VyuWhM_RRSiFYYrdE9sZ_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.915 [XNIO-1 task-6] VyuWhM_RRSiFYYrdE9sZ_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.915 [XNIO-1 task-6] VyuWhM_RRSiFYYrdE9sZ_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.915 [XNIO-1 task-6] VyuWhM_RRSiFYYrdE9sZ_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.920 [XNIO-1 task-6] VyuWhM_RRSiFYYrdE9sZ_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +00:00:50.925 [XNIO-1 task-6] vwsY7Dg6TVGIhCZyvF2F2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.925 [XNIO-1 task-6] vwsY7Dg6TVGIhCZyvF2F2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.925 [XNIO-1 task-6] vwsY7Dg6TVGIhCZyvF2F2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.926 [XNIO-1 task-6] vwsY7Dg6TVGIhCZyvF2F2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = xAVGaG4aQaOIi_qEZfcT1Q redirectUri = http://localhost:8080/authorization +00:00:50.929 [XNIO-1 task-4] LR4rbNRzRB6B9zn6fW1Fog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.929 [XNIO-1 task-4] LR4rbNRzRB6B9zn6fW1Fog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.929 [XNIO-1 task-4] LR4rbNRzRB6B9zn6fW1Fog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +00:00:50.929 [XNIO-1 task-4] LR4rbNRzRB6B9zn6fW1Fog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +00:00:50.933 [XNIO-1 task-6] vwsY7Dg6TVGIhCZyvF2F2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.936 [XNIO-1 task-4] LR4rbNRzRB6B9zn6fW1Fog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.942 [XNIO-1 task-4] r89ZvDTERDGsmZvdGXQWhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.942 [XNIO-1 task-4] r89ZvDTERDGsmZvdGXQWhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.943 [XNIO-1 task-4] r89ZvDTERDGsmZvdGXQWhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.943 [XNIO-1 task-4] r89ZvDTERDGsmZvdGXQWhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:50.951 [XNIO-1 task-4] r89ZvDTERDGsmZvdGXQWhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.952 [XNIO-1 task-6] _XUts1ObRE2X3F72iD3iRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.952 [XNIO-1 task-6] _XUts1ObRE2X3F72iD3iRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.953 [XNIO-1 task-6] _XUts1ObRE2X3F72iD3iRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.953 [XNIO-1 task-6] _XUts1ObRE2X3F72iD3iRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", "Basic ODAwYzAyMmItZjhhZi00MmQzLWFmZGMtZjZiNTQyMzVmOTRhOmJQMG1iLW5SVEVtejZRYXJ3cTh6cXc=", authorization) +00:00:50.955 [XNIO-1 task-4] XiS_Hyj8SFqgrwoWRZpoww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.955 [XNIO-1 task-4] XiS_Hyj8SFqgrwoWRZpoww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.955 [XNIO-1 task-4] XiS_Hyj8SFqgrwoWRZpoww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.956 [XNIO-1 task-4] XiS_Hyj8SFqgrwoWRZpoww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", "Basic OGJjNGQ5ZDMtZWQwZi00M2VlLTkxMTktMmIxYTA4NjE3ODNkOm10X1Vydmw5VGZLcHlNdFByWGtsNVE=", authorization) +00:00:50.962 [XNIO-1 task-4] XiS_Hyj8SFqgrwoWRZpoww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +00:00:50.966 [XNIO-1 task-4] K4ZGivmPStmOGirIIbGqPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.967 [XNIO-1 task-4] K4ZGivmPStmOGirIIbGqPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +00:00:50.967 [XNIO-1 task-4] K4ZGivmPStmOGirIIbGqPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +00:00:50.968 [XNIO-1 task-4] K4ZGivmPStmOGirIIbGqPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", "Basic NDlmMmMzOTEtZTIzMi00OWM1LWE2NTUtZDIzODhiYzY4MjQ2OnlRRm1ZNmRBU1lHNDV3SnQ4QXEzMlE=", authorization) +00:00:50.969 [XNIO-1 task-5] CmDGI-hrT0G0QNnVwTeaUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null diff --git a/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-user-1.log b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..3cf62c7 --- /dev/null +++ b/log_data/LO2/Hidden_Group_1/Run_8/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1522 @@ +00:00:40.120 [XNIO-1 task-1] yWvmbxp1SiO-PpgDQAX8nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/72f2f8af +00:00:40.120 [XNIO-1 task-1] yWvmbxp1SiO-PpgDQAX8nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.120 [XNIO-1 task-1] yWvmbxp1SiO-PpgDQAX8nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:40.121 [XNIO-1 task-1] yWvmbxp1SiO-PpgDQAX8nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/72f2f8af +00:00:40.132 [XNIO-1 task-1] lTXR5Sv6SPaw-1hW5lnV2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.132 [XNIO-1 task-1] lTXR5Sv6SPaw-1hW5lnV2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.132 [XNIO-1 task-1] lTXR5Sv6SPaw-1hW5lnV2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.133 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:72f2f8af +00:00:40.146 [XNIO-1 task-1] l5p716KSRwOH022vuZ469Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.146 [XNIO-1 task-1] l5p716KSRwOH022vuZ469Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.147 [XNIO-1 task-1] l5p716KSRwOH022vuZ469Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.147 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:72f2f8af +00:00:40.157 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/72f2f8af, base path is set to: null +00:00:40.157 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.157 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:40.158 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:40.161 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/72f2f8af, base path is set to: null +00:00:40.161 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG com.networknt.schema.TypeValidator debug - validate( "72f2f8af", "72f2f8af", userId) +00:00:40.164 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c586fe83-2703-4f03-aa4a-a58b40261167","newPassword":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPasswordConfirm":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0"}, {"password":"c586fe83-2703-4f03-aa4a-a58b40261167","newPassword":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPasswordConfirm":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0"}, requestBody) +00:00:40.165 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG com.networknt.schema.TypeValidator debug - validate( "c7022e02-0f51-4b61-9ad8-b9d1679c39c0", {"password":"c586fe83-2703-4f03-aa4a-a58b40261167","newPassword":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPasswordConfirm":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0"}, requestBody.newPasswordConfirm) +00:00:40.165 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG com.networknt.schema.TypeValidator debug - validate( "c586fe83-2703-4f03-aa4a-a58b40261167", {"password":"c586fe83-2703-4f03-aa4a-a58b40261167","newPassword":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPasswordConfirm":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0"}, requestBody.password) +00:00:40.171 [XNIO-1 task-1] 2mycvrVNTDy1AsAHOvdH5A DEBUG com.networknt.schema.TypeValidator debug - validate( "c7022e02-0f51-4b61-9ad8-b9d1679c39c0", {"password":"c586fe83-2703-4f03-aa4a-a58b40261167","newPassword":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPasswordConfirm":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0"}, requestBody.newPassword) +00:00:40.186 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:72f2f8af +00:00:40.202 [XNIO-1 task-1] 0rIuf4ZZTaKJz8CfhYRkBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.202 [XNIO-1 task-1] 0rIuf4ZZTaKJz8CfhYRkBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.202 [XNIO-1 task-1] 0rIuf4ZZTaKJz8CfhYRkBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.203 [XNIO-1 task-1] 0rIuf4ZZTaKJz8CfhYRkBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:40.212 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/72f2f8af, base path is set to: null +00:00:40.212 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.212 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:40.212 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:40.213 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/72f2f8af, base path is set to: null +00:00:40.214 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72f2f8af", "72f2f8af", userId) +00:00:40.214 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPassword":"30a43086-86c0-4dc4-8fe1-49024612fade","newPasswordConfirm":"30a43086-86c0-4dc4-8fe1-49024612fade"}, {"password":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPassword":"30a43086-86c0-4dc4-8fe1-49024612fade","newPasswordConfirm":"30a43086-86c0-4dc4-8fe1-49024612fade"}, requestBody) +00:00:40.214 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30a43086-86c0-4dc4-8fe1-49024612fade", {"password":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPassword":"30a43086-86c0-4dc4-8fe1-49024612fade","newPasswordConfirm":"30a43086-86c0-4dc4-8fe1-49024612fade"}, requestBody.newPasswordConfirm) +00:00:40.215 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7022e02-0f51-4b61-9ad8-b9d1679c39c0", {"password":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPassword":"30a43086-86c0-4dc4-8fe1-49024612fade","newPasswordConfirm":"30a43086-86c0-4dc4-8fe1-49024612fade"}, requestBody.password) +00:00:40.215 [XNIO-1 task-1] nqlDM4PAQnC7Ev5jH-4BFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30a43086-86c0-4dc4-8fe1-49024612fade", {"password":"c7022e02-0f51-4b61-9ad8-b9d1679c39c0","newPassword":"30a43086-86c0-4dc4-8fe1-49024612fade","newPasswordConfirm":"30a43086-86c0-4dc4-8fe1-49024612fade"}, requestBody.newPassword) +00:00:40.226 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:72f2f8af +00:00:40.240 [XNIO-1 task-1] 8iv-FadbREGIe8UDx579Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.240 [XNIO-1 task-1] 8iv-FadbREGIe8UDx579Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.241 [XNIO-1 task-1] 8iv-FadbREGIe8UDx579Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.241 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:72f2f8af +00:00:40.251 [XNIO-1 task-1] VbGRVw_6QGqbhccawJiRBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/72f2f8af, base path is set to: null +00:00:40.251 [XNIO-1 task-1] VbGRVw_6QGqbhccawJiRBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.252 [XNIO-1 task-1] VbGRVw_6QGqbhccawJiRBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:40.252 [XNIO-1 task-1] VbGRVw_6QGqbhccawJiRBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/72f2f8af, base path is set to: null +00:00:40.253 [XNIO-1 task-1] VbGRVw_6QGqbhccawJiRBA DEBUG com.networknt.schema.TypeValidator debug - validate( "72f2f8af", "72f2f8af", userId) +00:00:40.269 [XNIO-1 task-1] UR2mAKRaQgSss3CyKZZFJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.269 [XNIO-1 task-1] UR2mAKRaQgSss3CyKZZFJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.270 [XNIO-1 task-1] UR2mAKRaQgSss3CyKZZFJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.271 [XNIO-1 task-1] UR2mAKRaQgSss3CyKZZFJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:40.278 [XNIO-1 task-1] mIcxNSFGTHKbXLIU6ryN-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.278 [XNIO-1 task-1] mIcxNSFGTHKbXLIU6ryN-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.279 [XNIO-1 task-1] mIcxNSFGTHKbXLIU6ryN-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.303 [XNIO-1 task-1] eLOxAoMVRrC-6o5kzG4KYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.303 [XNIO-1 task-1] eLOxAoMVRrC-6o5kzG4KYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.304 [XNIO-1 task-1] eLOxAoMVRrC-6o5kzG4KYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.348 [XNIO-1 task-1] S787VAFpR8mvwoZynXoxQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.348 [XNIO-1 task-1] S787VAFpR8mvwoZynXoxQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.349 [XNIO-1 task-1] S787VAFpR8mvwoZynXoxQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.431 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/01eaa43e, base path is set to: null +00:00:40.432 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.432 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:40.432 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:40.432 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/01eaa43e, base path is set to: null +00:00:40.433 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "01eaa43e", "01eaa43e", userId) +00:00:40.434 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"93cadd32-fb7b-42e7-ab43-4431e7a76610","newPassword":"595830b8-860f-4210-96c9-886e7c9185b9","newPasswordConfirm":"595830b8-860f-4210-96c9-886e7c9185b9"}, {"password":"93cadd32-fb7b-42e7-ab43-4431e7a76610","newPassword":"595830b8-860f-4210-96c9-886e7c9185b9","newPasswordConfirm":"595830b8-860f-4210-96c9-886e7c9185b9"}, requestBody) +00:00:40.434 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "595830b8-860f-4210-96c9-886e7c9185b9", {"password":"93cadd32-fb7b-42e7-ab43-4431e7a76610","newPassword":"595830b8-860f-4210-96c9-886e7c9185b9","newPasswordConfirm":"595830b8-860f-4210-96c9-886e7c9185b9"}, requestBody.newPasswordConfirm) +00:00:40.434 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "93cadd32-fb7b-42e7-ab43-4431e7a76610", {"password":"93cadd32-fb7b-42e7-ab43-4431e7a76610","newPassword":"595830b8-860f-4210-96c9-886e7c9185b9","newPasswordConfirm":"595830b8-860f-4210-96c9-886e7c9185b9"}, requestBody.password) +00:00:40.435 [XNIO-1 task-1] IW8zyaR5SpKa8B6aECgLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "595830b8-860f-4210-96c9-886e7c9185b9", {"password":"93cadd32-fb7b-42e7-ab43-4431e7a76610","newPassword":"595830b8-860f-4210-96c9-886e7c9185b9","newPasswordConfirm":"595830b8-860f-4210-96c9-886e7c9185b9"}, requestBody.newPassword) +00:00:40.471 [XNIO-1 task-1] s8lVW8uvT32Vbr-uHO_I9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/01eaa43e, base path is set to: null +00:00:40.472 [XNIO-1 task-1] s8lVW8uvT32Vbr-uHO_I9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.472 [XNIO-1 task-1] s8lVW8uvT32Vbr-uHO_I9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:40.472 [XNIO-1 task-1] s8lVW8uvT32Vbr-uHO_I9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/01eaa43e, base path is set to: null +00:00:40.472 [XNIO-1 task-1] s8lVW8uvT32Vbr-uHO_I9w DEBUG com.networknt.schema.TypeValidator debug - validate( "01eaa43e", "01eaa43e", userId) +00:00:40.487 [XNIO-1 task-1] cq7cYn-aT4GJIPqNKpnDkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.488 [XNIO-1 task-1] cq7cYn-aT4GJIPqNKpnDkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.488 [XNIO-1 task-1] cq7cYn-aT4GJIPqNKpnDkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.489 [XNIO-1 task-1] cq7cYn-aT4GJIPqNKpnDkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:40.541 [XNIO-1 task-1] RlBIqCMRRa-s9RlZQrCM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.541 [XNIO-1 task-1] RlBIqCMRRa-s9RlZQrCM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.542 [XNIO-1 task-1] RlBIqCMRRa-s9RlZQrCM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.567 [XNIO-1 task-1] ZFLrRCBdQ7CBT5ewPbqTmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d038ce28 +00:00:40.568 [XNIO-1 task-1] ZFLrRCBdQ7CBT5ewPbqTmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.568 [XNIO-1 task-1] ZFLrRCBdQ7CBT5ewPbqTmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:40.568 [XNIO-1 task-1] ZFLrRCBdQ7CBT5ewPbqTmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d038ce28 +00:00:40.577 [XNIO-1 task-1] TTO7GVXmTHC3IWj6t3UltA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d038ce28, base path is set to: null +00:00:40.578 [XNIO-1 task-1] TTO7GVXmTHC3IWj6t3UltA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.578 [XNIO-1 task-1] TTO7GVXmTHC3IWj6t3UltA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:40.578 [XNIO-1 task-1] TTO7GVXmTHC3IWj6t3UltA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d038ce28, base path is set to: null +00:00:40.579 [XNIO-1 task-1] TTO7GVXmTHC3IWj6t3UltA DEBUG com.networknt.schema.TypeValidator debug - validate( "d038ce28", "d038ce28", userId) +00:00:40.595 [XNIO-1 task-1] dFVhriMQTeuCk_8rZMSGdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.596 [XNIO-1 task-1] dFVhriMQTeuCk_8rZMSGdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.596 [XNIO-1 task-1] dFVhriMQTeuCk_8rZMSGdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.597 [XNIO-1 task-1] dFVhriMQTeuCk_8rZMSGdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:40.620 [XNIO-1 task-1] k9OFAQBgTze0euVkg6hMCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.620 [XNIO-1 task-1] k9OFAQBgTze0euVkg6hMCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.620 [XNIO-1 task-1] k9OFAQBgTze0euVkg6hMCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.621 [XNIO-1 task-1] k9OFAQBgTze0euVkg6hMCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:40.640 [XNIO-1 task-1] PTH8llRdTiau7VcLJO4xww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.640 [XNIO-1 task-1] PTH8llRdTiau7VcLJO4xww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.640 [XNIO-1 task-1] PTH8llRdTiau7VcLJO4xww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.729 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a9348d59 +00:00:40.729 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.729 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:40.729 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:40.730 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a9348d59 +00:00:40.731 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3c7226f1-7b52-4c74-9733-21c1cb0280c3","newPassword":"3f150211-4001-4e8e-a524-4b0b61f17e9e","newPasswordConfirm":"3f150211-4001-4e8e-a524-4b0b61f17e9e"}, {"password":"3c7226f1-7b52-4c74-9733-21c1cb0280c3","newPassword":"3f150211-4001-4e8e-a524-4b0b61f17e9e","newPasswordConfirm":"3f150211-4001-4e8e-a524-4b0b61f17e9e"}, requestBody) +00:00:40.731 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3c7226f1-7b52-4c74-9733-21c1cb0280c3","newPassword":"3f150211-4001-4e8e-a524-4b0b61f17e9e","newPasswordConfirm":"3f150211-4001-4e8e-a524-4b0b61f17e9e"}, {"password":"3c7226f1-7b52-4c74-9733-21c1cb0280c3","newPassword":"3f150211-4001-4e8e-a524-4b0b61f17e9e","newPasswordConfirm":"3f150211-4001-4e8e-a524-4b0b61f17e9e"}, requestBody) +00:00:40.731 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "3f150211-4001-4e8e-a524-4b0b61f17e9e", {"password":"3c7226f1-7b52-4c74-9733-21c1cb0280c3","newPassword":"3f150211-4001-4e8e-a524-4b0b61f17e9e","newPasswordConfirm":"3f150211-4001-4e8e-a524-4b0b61f17e9e"}, requestBody.newPasswordConfirm) +00:00:40.731 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "3c7226f1-7b52-4c74-9733-21c1cb0280c3", {"password":"3c7226f1-7b52-4c74-9733-21c1cb0280c3","newPassword":"3f150211-4001-4e8e-a524-4b0b61f17e9e","newPasswordConfirm":"3f150211-4001-4e8e-a524-4b0b61f17e9e"}, requestBody.password) +00:00:40.731 [XNIO-1 task-1] U5vljAi0RCqpGIu1W3-x8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "3f150211-4001-4e8e-a524-4b0b61f17e9e", {"password":"3c7226f1-7b52-4c74-9733-21c1cb0280c3","newPassword":"3f150211-4001-4e8e-a524-4b0b61f17e9e","newPasswordConfirm":"3f150211-4001-4e8e-a524-4b0b61f17e9e"}, requestBody.newPassword) +00:00:40.792 [XNIO-1 task-1] izD9CFfmRUyFv1SB-Xch1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a9348d59 +00:00:40.792 [XNIO-1 task-1] izD9CFfmRUyFv1SB-Xch1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.792 [XNIO-1 task-1] izD9CFfmRUyFv1SB-Xch1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:40.792 [XNIO-1 task-1] izD9CFfmRUyFv1SB-Xch1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a9348d59 +00:00:40.822 [XNIO-1 task-1] flVC0EUcQPydb6uw-9Yf7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.822 [XNIO-1 task-1] flVC0EUcQPydb6uw-9Yf7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.823 [XNIO-1 task-1] flVC0EUcQPydb6uw-9Yf7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.955 [XNIO-1 task-1] 5vrmHtVdQjunrTyDIv51MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e0d214d9, base path is set to: null +00:00:40.955 [XNIO-1 task-1] 5vrmHtVdQjunrTyDIv51MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.955 [XNIO-1 task-1] 5vrmHtVdQjunrTyDIv51MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:40.956 [XNIO-1 task-1] 5vrmHtVdQjunrTyDIv51MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e0d214d9, base path is set to: null +00:00:40.956 [XNIO-1 task-1] 5vrmHtVdQjunrTyDIv51MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e0d214d9", "e0d214d9", userId) +00:00:40.968 [XNIO-1 task-1] CkqKqJ9WQ1C-nmPTvRUuag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e0d214d9 +00:00:40.968 [XNIO-1 task-1] CkqKqJ9WQ1C-nmPTvRUuag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:40.968 [XNIO-1 task-1] CkqKqJ9WQ1C-nmPTvRUuag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:40.969 [XNIO-1 task-1] CkqKqJ9WQ1C-nmPTvRUuag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e0d214d9 +00:00:40.978 [XNIO-1 task-1] Y9OSKzA3SCyHQ3kwBeVkzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.978 [XNIO-1 task-1] Y9OSKzA3SCyHQ3kwBeVkzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.978 [XNIO-1 task-1] Y9OSKzA3SCyHQ3kwBeVkzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.996 [XNIO-1 task-1] rChTptEHSde0r8Amb4ykWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:40.997 [XNIO-1 task-1] rChTptEHSde0r8Amb4ykWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:40.997 [XNIO-1 task-1] rChTptEHSde0r8Amb4ykWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.122 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6ad036bf-45ac-43b4-a020-d603e4f5a50e +00:00:41.142 [XNIO-1 task-1] uLSzByeHT2iDxvQO3Aim-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.142 [XNIO-1 task-1] uLSzByeHT2iDxvQO3Aim-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.143 [XNIO-1 task-1] uLSzByeHT2iDxvQO3Aim-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.145 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6ad036bf-45ac-43b4-a020-d603e4f5a50e +00:00:41.216 [XNIO-1 task-1] HclOv0cjQgSNzEvK-BnmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/de3439e9 +00:00:41.217 [XNIO-1 task-1] HclOv0cjQgSNzEvK-BnmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.217 [XNIO-1 task-1] HclOv0cjQgSNzEvK-BnmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:41.217 [XNIO-1 task-1] HclOv0cjQgSNzEvK-BnmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/de3439e9 +00:00:41.226 [XNIO-1 task-1] gcc3N33HTZ2cdPP7ZVuyBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/af431d4c, base path is set to: null +00:00:41.226 [XNIO-1 task-1] gcc3N33HTZ2cdPP7ZVuyBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.226 [XNIO-1 task-1] gcc3N33HTZ2cdPP7ZVuyBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:41.227 [XNIO-1 task-1] gcc3N33HTZ2cdPP7ZVuyBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/af431d4c, base path is set to: null +00:00:41.227 [XNIO-1 task-1] gcc3N33HTZ2cdPP7ZVuyBw DEBUG com.networknt.schema.TypeValidator debug - validate( "af431d4c", "af431d4c", userId) +00:00:41.240 [XNIO-1 task-1] zVrx5oi5TXeqRiSo-wlEag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e0d214d9 +00:00:41.241 [XNIO-1 task-1] zVrx5oi5TXeqRiSo-wlEag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.241 [XNIO-1 task-1] zVrx5oi5TXeqRiSo-wlEag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:41.241 [XNIO-1 task-1] zVrx5oi5TXeqRiSo-wlEag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e0d214d9 +00:00:41.251 [XNIO-1 task-1] CgzMJ53HS9elW5j7JB5Dvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.252 [XNIO-1 task-1] CgzMJ53HS9elW5j7JB5Dvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.253 [XNIO-1 task-1] CgzMJ53HS9elW5j7JB5Dvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.371 [XNIO-1 task-1] QdecbgEtRiSOl71QW8ryHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/df0b1bf3, base path is set to: null +00:00:41.372 [XNIO-1 task-1] QdecbgEtRiSOl71QW8ryHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.372 [XNIO-1 task-1] QdecbgEtRiSOl71QW8ryHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:41.372 [XNIO-1 task-1] QdecbgEtRiSOl71QW8ryHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/df0b1bf3, base path is set to: null +00:00:41.373 [XNIO-1 task-1] QdecbgEtRiSOl71QW8ryHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "df0b1bf3", "df0b1bf3", userId) +00:00:41.416 [XNIO-1 task-1] s4xxRPpaRxeIFhSIp4xKJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.416 [XNIO-1 task-1] s4xxRPpaRxeIFhSIp4xKJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.417 [XNIO-1 task-1] s4xxRPpaRxeIFhSIp4xKJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.525 [XNIO-1 task-1] iVvSECtCSFOjrkTlw0gFCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.525 [XNIO-1 task-1] iVvSECtCSFOjrkTlw0gFCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.526 [XNIO-1 task-1] iVvSECtCSFOjrkTlw0gFCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.526 [XNIO-1 task-1] iVvSECtCSFOjrkTlw0gFCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:41.537 [XNIO-1 task-1] Fu0y-jJuSEqIKANoPd0gWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d61f5b47 +00:00:41.538 [XNIO-1 task-1] Fu0y-jJuSEqIKANoPd0gWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.538 [XNIO-1 task-1] Fu0y-jJuSEqIKANoPd0gWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:41.538 [XNIO-1 task-1] Fu0y-jJuSEqIKANoPd0gWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d61f5b47 +00:00:41.544 [XNIO-1 task-1] xJbRRojIRsavPj--70HEHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.544 [XNIO-1 task-1] xJbRRojIRsavPj--70HEHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.545 [XNIO-1 task-1] xJbRRojIRsavPj--70HEHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.581 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d61f5b47, base path is set to: null +00:00:41.582 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.582 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:41.582 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:41.583 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d61f5b47, base path is set to: null +00:00:41.584 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "d61f5b47", "d61f5b47", userId) +00:00:41.584 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"69634fbb-3cbf-485a-91f5-59e11296b96b","newPassword":"fb9c28d7-7b90-483e-8aff-810f18b46e92","newPasswordConfirm":"fb9c28d7-7b90-483e-8aff-810f18b46e92"}, {"password":"69634fbb-3cbf-485a-91f5-59e11296b96b","newPassword":"fb9c28d7-7b90-483e-8aff-810f18b46e92","newPasswordConfirm":"fb9c28d7-7b90-483e-8aff-810f18b46e92"}, requestBody) +00:00:41.586 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb9c28d7-7b90-483e-8aff-810f18b46e92", {"password":"69634fbb-3cbf-485a-91f5-59e11296b96b","newPassword":"fb9c28d7-7b90-483e-8aff-810f18b46e92","newPasswordConfirm":"fb9c28d7-7b90-483e-8aff-810f18b46e92"}, requestBody.newPasswordConfirm) +00:00:41.586 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "69634fbb-3cbf-485a-91f5-59e11296b96b", {"password":"69634fbb-3cbf-485a-91f5-59e11296b96b","newPassword":"fb9c28d7-7b90-483e-8aff-810f18b46e92","newPasswordConfirm":"fb9c28d7-7b90-483e-8aff-810f18b46e92"}, requestBody.password) +00:00:41.588 [XNIO-1 task-1] XtqNyRDGSwedi7ZZ4oZ4aw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb9c28d7-7b90-483e-8aff-810f18b46e92", {"password":"69634fbb-3cbf-485a-91f5-59e11296b96b","newPassword":"fb9c28d7-7b90-483e-8aff-810f18b46e92","newPasswordConfirm":"fb9c28d7-7b90-483e-8aff-810f18b46e92"}, requestBody.newPassword) +00:00:41.617 [XNIO-1 task-1] z6_TGFl5SJuYRSCRCCltgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.618 [XNIO-1 task-1] z6_TGFl5SJuYRSCRCCltgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.618 [XNIO-1 task-1] z6_TGFl5SJuYRSCRCCltgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.631 [XNIO-1 task-1] ezkcPiVST0CSXycV7byHag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.631 [XNIO-1 task-1] ezkcPiVST0CSXycV7byHag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.632 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6ad036bf-45ac-43b4-a020-d603e4f5a50e +00:00:41.632 [XNIO-1 task-1] ezkcPiVST0CSXycV7byHag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.809 [XNIO-1 task-1] 63lhUjPnQK2IJUxT_K23bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d61f5b47 +00:00:41.809 [XNIO-1 task-1] 63lhUjPnQK2IJUxT_K23bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.809 [XNIO-1 task-1] 63lhUjPnQK2IJUxT_K23bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:41.809 [XNIO-1 task-1] 63lhUjPnQK2IJUxT_K23bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d61f5b47 +00:00:41.821 [XNIO-1 task-1] X_FRcMxFQPeUJ5aJ1JrxMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.821 [XNIO-1 task-1] X_FRcMxFQPeUJ5aJ1JrxMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.822 [XNIO-1 task-1] X_FRcMxFQPeUJ5aJ1JrxMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.848 [XNIO-1 task-1] T3O18uLPTCi-FbuGixQFlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c5b707a, base path is set to: null +00:00:41.852 [XNIO-1 task-1] T3O18uLPTCi-FbuGixQFlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.852 [XNIO-1 task-1] T3O18uLPTCi-FbuGixQFlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:41.852 [XNIO-1 task-1] T3O18uLPTCi-FbuGixQFlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c5b707a, base path is set to: null +00:00:41.853 [XNIO-1 task-1] T3O18uLPTCi-FbuGixQFlg DEBUG com.networknt.schema.TypeValidator debug - validate( "6c5b707a", "6c5b707a", userId) +00:00:41.903 [XNIO-1 task-1] XWaiLs5sTve8dRBNVbYGSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ba1011f2 +00:00:41.903 [XNIO-1 task-1] XWaiLs5sTve8dRBNVbYGSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:41.904 [XNIO-1 task-1] XWaiLs5sTve8dRBNVbYGSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:41.904 [XNIO-1 task-1] XWaiLs5sTve8dRBNVbYGSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ba1011f2 +00:00:41.912 [XNIO-1 task-1] Fx_Yp3NhSxa9SC_P9wF4Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.912 [XNIO-1 task-1] Fx_Yp3NhSxa9SC_P9wF4Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.912 [XNIO-1 task-1] Fx_Yp3NhSxa9SC_P9wF4Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.913 [XNIO-1 task-1] Fx_Yp3NhSxa9SC_P9wF4Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:41.936 [XNIO-1 task-1] sMgGkCqEQGOGbV_jO3tHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.936 [XNIO-1 task-1] sMgGkCqEQGOGbV_jO3tHxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.937 [XNIO-1 task-1] sMgGkCqEQGOGbV_jO3tHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:41.994 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ba1011f2, base path is set to: null +00:00:41.995 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:41.995 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:41.995 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:41.995 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ba1011f2, base path is set to: null +00:00:41.996 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1011f2", "ba1011f2", userId) +00:00:41.996 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d93abc44-dc97-48ee-9a8a-3b7dc8b5f23b","newPassword":"880b612d-4763-40b2-bad6-e5960a1a324e","newPasswordConfirm":"880b612d-4763-40b2-bad6-e5960a1a324e"}, {"password":"d93abc44-dc97-48ee-9a8a-3b7dc8b5f23b","newPassword":"880b612d-4763-40b2-bad6-e5960a1a324e","newPasswordConfirm":"880b612d-4763-40b2-bad6-e5960a1a324e"}, requestBody) +00:00:41.997 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "880b612d-4763-40b2-bad6-e5960a1a324e", {"password":"d93abc44-dc97-48ee-9a8a-3b7dc8b5f23b","newPassword":"880b612d-4763-40b2-bad6-e5960a1a324e","newPasswordConfirm":"880b612d-4763-40b2-bad6-e5960a1a324e"}, requestBody.newPasswordConfirm) +00:00:41.997 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d93abc44-dc97-48ee-9a8a-3b7dc8b5f23b", {"password":"d93abc44-dc97-48ee-9a8a-3b7dc8b5f23b","newPassword":"880b612d-4763-40b2-bad6-e5960a1a324e","newPasswordConfirm":"880b612d-4763-40b2-bad6-e5960a1a324e"}, requestBody.password) +00:00:41.997 [XNIO-1 task-1] CE7R5gOeSxaB2Yy_-q6H4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "880b612d-4763-40b2-bad6-e5960a1a324e", {"password":"d93abc44-dc97-48ee-9a8a-3b7dc8b5f23b","newPassword":"880b612d-4763-40b2-bad6-e5960a1a324e","newPasswordConfirm":"880b612d-4763-40b2-bad6-e5960a1a324e"}, requestBody.newPassword) +00:00:42.110 [XNIO-1 task-1] vyWaMUkMRx-w9x6uFI3K2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.110 [XNIO-1 task-1] vyWaMUkMRx-w9x6uFI3K2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.111 [XNIO-1 task-1] vyWaMUkMRx-w9x6uFI3K2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.241 [XNIO-1 task-1] qSas2LzmR3G6wgssCkPIPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/88de6404, base path is set to: null +00:00:42.241 [XNIO-1 task-1] qSas2LzmR3G6wgssCkPIPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.241 [XNIO-1 task-1] qSas2LzmR3G6wgssCkPIPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:42.241 [XNIO-1 task-1] qSas2LzmR3G6wgssCkPIPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/88de6404, base path is set to: null +00:00:42.242 [XNIO-1 task-1] qSas2LzmR3G6wgssCkPIPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88de6404", "88de6404", userId) +00:00:42.246 [XNIO-1 task-1] MGE1YzboTgOzU8tnH2qf8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.246 [XNIO-1 task-1] MGE1YzboTgOzU8tnH2qf8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.246 [XNIO-1 task-1] MGE1YzboTgOzU8tnH2qf8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.246 [XNIO-1 task-1] MGE1YzboTgOzU8tnH2qf8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.258 [XNIO-1 task-1] XsEwK-pWRqSUyAFu9HNM0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.258 [XNIO-1 task-1] XsEwK-pWRqSUyAFu9HNM0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.259 [XNIO-1 task-1] XsEwK-pWRqSUyAFu9HNM0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.276 [XNIO-1 task-1] 0UC67kq_QEuyRGem6BfKOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.276 [XNIO-1 task-1] 0UC67kq_QEuyRGem6BfKOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.277 [XNIO-1 task-1] 0UC67kq_QEuyRGem6BfKOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.277 [XNIO-1 task-1] 0UC67kq_QEuyRGem6BfKOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.286 [XNIO-1 task-1] TfYP1M-GSQupWmzrX5hgpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.287 [XNIO-1 task-1] TfYP1M-GSQupWmzrX5hgpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.287 [XNIO-1 task-1] TfYP1M-GSQupWmzrX5hgpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.308 [XNIO-1 task-1] oL6L4aNVQeSjm9f9U1W1gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.308 [XNIO-1 task-1] oL6L4aNVQeSjm9f9U1W1gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.309 [XNIO-1 task-1] oL6L4aNVQeSjm9f9U1W1gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.450 [XNIO-1 task-1] UpelS8sFTzi5UIWV-co6cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ba1011f2 +00:00:42.450 [XNIO-1 task-1] UpelS8sFTzi5UIWV-co6cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.450 [XNIO-1 task-1] UpelS8sFTzi5UIWV-co6cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:42.450 [XNIO-1 task-1] UpelS8sFTzi5UIWV-co6cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ba1011f2 +00:00:42.461 [XNIO-1 task-1] msH_h5HcRZadVWM-UaQhyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.461 [XNIO-1 task-1] msH_h5HcRZadVWM-UaQhyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.461 [XNIO-1 task-1] msH_h5HcRZadVWM-UaQhyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.477 [XNIO-1 task-1] pWCyye5fQ1eHcK4wQSGs0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2382b483, base path is set to: null +00:00:42.477 [XNIO-1 task-1] pWCyye5fQ1eHcK4wQSGs0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.477 [XNIO-1 task-1] pWCyye5fQ1eHcK4wQSGs0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:42.477 [XNIO-1 task-1] pWCyye5fQ1eHcK4wQSGs0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2382b483, base path is set to: null +00:00:42.478 [XNIO-1 task-1] pWCyye5fQ1eHcK4wQSGs0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2382b483", "2382b483", userId) +00:00:42.482 [XNIO-1 task-1] wB4X2aXJQ_uvraynYm1wAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.482 [XNIO-1 task-1] wB4X2aXJQ_uvraynYm1wAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.483 [XNIO-1 task-1] wB4X2aXJQ_uvraynYm1wAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.499 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f6692ed7-77f0-4e7b-bccc-f77283842ae5 +00:00:42.500 [XNIO-1 task-1] ePlGoRUSSeSP4IfeUXLAkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2382b483, base path is set to: null +00:00:42.500 [XNIO-1 task-1] ePlGoRUSSeSP4IfeUXLAkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.500 [XNIO-1 task-1] ePlGoRUSSeSP4IfeUXLAkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:42.501 [XNIO-1 task-1] ePlGoRUSSeSP4IfeUXLAkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2382b483, base path is set to: null +00:00:42.501 [XNIO-1 task-1] ePlGoRUSSeSP4IfeUXLAkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2382b483", "2382b483", userId) +00:00:42.508 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:42.508 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.508 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:42.508 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:42.509 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:42.509 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"16878cf9-58a1-45c0-88f8-4fcde3d1ec03","newPassword":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPasswordConfirm":"ed840261-06d1-4357-9e1c-c24485e29ba1"}, {"password":"16878cf9-58a1-45c0-88f8-4fcde3d1ec03","newPassword":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPasswordConfirm":"ed840261-06d1-4357-9e1c-c24485e29ba1"}, requestBody) +00:00:42.510 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"16878cf9-58a1-45c0-88f8-4fcde3d1ec03","newPassword":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPasswordConfirm":"ed840261-06d1-4357-9e1c-c24485e29ba1"}, {"password":"16878cf9-58a1-45c0-88f8-4fcde3d1ec03","newPassword":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPasswordConfirm":"ed840261-06d1-4357-9e1c-c24485e29ba1"}, requestBody) +00:00:42.510 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG com.networknt.schema.FormatValidator debug - validate( "ed840261-06d1-4357-9e1c-c24485e29ba1", {"password":"16878cf9-58a1-45c0-88f8-4fcde3d1ec03","newPassword":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPasswordConfirm":"ed840261-06d1-4357-9e1c-c24485e29ba1"}, requestBody.newPasswordConfirm) +00:00:42.510 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG com.networknt.schema.FormatValidator debug - validate( "16878cf9-58a1-45c0-88f8-4fcde3d1ec03", {"password":"16878cf9-58a1-45c0-88f8-4fcde3d1ec03","newPassword":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPasswordConfirm":"ed840261-06d1-4357-9e1c-c24485e29ba1"}, requestBody.password) +00:00:42.510 [XNIO-1 task-1] b35RNpJfQ4CM7yg6ih6d8g DEBUG com.networknt.schema.FormatValidator debug - validate( "ed840261-06d1-4357-9e1c-c24485e29ba1", {"password":"16878cf9-58a1-45c0-88f8-4fcde3d1ec03","newPassword":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPasswordConfirm":"ed840261-06d1-4357-9e1c-c24485e29ba1"}, requestBody.newPassword) +00:00:42.542 [XNIO-1 task-1] oLgElvTKS0qj18a3UxfFfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:42.542 [XNIO-1 task-1] oLgElvTKS0qj18a3UxfFfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.542 [XNIO-1 task-1] oLgElvTKS0qj18a3UxfFfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:42.542 [XNIO-1 task-1] oLgElvTKS0qj18a3UxfFfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:42.551 [XNIO-1 task-1] etuQgVoUSMWuKaJHfXp5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.551 [XNIO-1 task-1] etuQgVoUSMWuKaJHfXp5ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.551 [XNIO-1 task-1] etuQgVoUSMWuKaJHfXp5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.552 [XNIO-1 task-1] etuQgVoUSMWuKaJHfXp5ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.565 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f6692ed7-77f0-4e7b-bccc-f77283842ae5 +00:00:42.572 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:42.572 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.572 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:42.572 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:42.573 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:42.574 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPassword":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPasswordConfirm":"037d4e46-44a7-4fa2-a153-05913e55ca97"}, {"password":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPassword":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPasswordConfirm":"037d4e46-44a7-4fa2-a153-05913e55ca97"}, requestBody) +00:00:42.574 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPassword":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPasswordConfirm":"037d4e46-44a7-4fa2-a153-05913e55ca97"}, {"password":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPassword":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPasswordConfirm":"037d4e46-44a7-4fa2-a153-05913e55ca97"}, requestBody) +00:00:42.574 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG com.networknt.schema.FormatValidator debug - validate( "037d4e46-44a7-4fa2-a153-05913e55ca97", {"password":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPassword":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPasswordConfirm":"037d4e46-44a7-4fa2-a153-05913e55ca97"}, requestBody.newPasswordConfirm) +00:00:42.574 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG com.networknt.schema.FormatValidator debug - validate( "ed840261-06d1-4357-9e1c-c24485e29ba1", {"password":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPassword":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPasswordConfirm":"037d4e46-44a7-4fa2-a153-05913e55ca97"}, requestBody.password) +00:00:42.574 [XNIO-1 task-1] cw0DXboMSqidlsJwPRsJYA DEBUG com.networknt.schema.FormatValidator debug - validate( "037d4e46-44a7-4fa2-a153-05913e55ca97", {"password":"ed840261-06d1-4357-9e1c-c24485e29ba1","newPassword":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPasswordConfirm":"037d4e46-44a7-4fa2-a153-05913e55ca97"}, requestBody.newPassword) +00:00:42.606 [XNIO-1 task-1] ByGeOaAfTHm3Zlad4mm-xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:42.606 [XNIO-1 task-1] ByGeOaAfTHm3Zlad4mm-xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.606 [XNIO-1 task-1] ByGeOaAfTHm3Zlad4mm-xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:42.606 [XNIO-1 task-1] ByGeOaAfTHm3Zlad4mm-xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:42.617 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/88de6404, base path is set to: null +00:00:42.618 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.618 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:42.618 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:42.618 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/88de6404, base path is set to: null +00:00:42.639 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f5a54372 +00:00:42.640 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2647a1f4-02c7-402d-9c5d-992887efc78d","newPassword":"55599f30-f19f-4daf-8f52-bdf74787cad6","newPasswordConfirm":"55599f30-f19f-4daf-8f52-bdf74787cad6"}, {"password":"2647a1f4-02c7-402d-9c5d-992887efc78d","newPassword":"55599f30-f19f-4daf-8f52-bdf74787cad6","newPasswordConfirm":"55599f30-f19f-4daf-8f52-bdf74787cad6"}, requestBody) +00:00:42.640 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2647a1f4-02c7-402d-9c5d-992887efc78d","newPassword":"55599f30-f19f-4daf-8f52-bdf74787cad6","newPasswordConfirm":"55599f30-f19f-4daf-8f52-bdf74787cad6"}, {"password":"2647a1f4-02c7-402d-9c5d-992887efc78d","newPassword":"55599f30-f19f-4daf-8f52-bdf74787cad6","newPasswordConfirm":"55599f30-f19f-4daf-8f52-bdf74787cad6"}, requestBody) +00:00:42.640 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG com.networknt.schema.FormatValidator debug - validate( "55599f30-f19f-4daf-8f52-bdf74787cad6", {"password":"2647a1f4-02c7-402d-9c5d-992887efc78d","newPassword":"55599f30-f19f-4daf-8f52-bdf74787cad6","newPasswordConfirm":"55599f30-f19f-4daf-8f52-bdf74787cad6"}, requestBody.newPasswordConfirm) +00:00:42.640 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG com.networknt.schema.FormatValidator debug - validate( "2647a1f4-02c7-402d-9c5d-992887efc78d", {"password":"2647a1f4-02c7-402d-9c5d-992887efc78d","newPassword":"55599f30-f19f-4daf-8f52-bdf74787cad6","newPasswordConfirm":"55599f30-f19f-4daf-8f52-bdf74787cad6"}, requestBody.password) +00:00:42.640 [XNIO-1 task-1] REHuEygvThejBzjjtIPMGA DEBUG com.networknt.schema.FormatValidator debug - validate( "55599f30-f19f-4daf-8f52-bdf74787cad6", {"password":"2647a1f4-02c7-402d-9c5d-992887efc78d","newPassword":"55599f30-f19f-4daf-8f52-bdf74787cad6","newPasswordConfirm":"55599f30-f19f-4daf-8f52-bdf74787cad6"}, requestBody.newPassword) +00:00:42.645 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f5a54372 +00:00:42.662 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f5a54372 +00:00:42.678 [XNIO-1 task-1] TFkesrbqQuGR-_aSxeXxTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.679 [XNIO-1 task-1] TFkesrbqQuGR-_aSxeXxTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.679 [XNIO-1 task-1] TFkesrbqQuGR-_aSxeXxTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.679 [XNIO-1 task-1] TFkesrbqQuGR-_aSxeXxTA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:42.689 [XNIO-1 task-1] 5idbVtsSTaCYFmHt9n48IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.689 [XNIO-1 task-1] 5idbVtsSTaCYFmHt9n48IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.690 [XNIO-1 task-1] 5idbVtsSTaCYFmHt9n48IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.736 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f49c5bdc +00:00:42.821 [XNIO-1 task-1] JOFpR3TETDqPpdCj41FMHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.821 [XNIO-1 task-1] JOFpR3TETDqPpdCj41FMHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.821 [XNIO-1 task-1] JOFpR3TETDqPpdCj41FMHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.843 [XNIO-1 task-1] 7SQL9wDRQuC0-GwlFt5s2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.843 [XNIO-1 task-1] 7SQL9wDRQuC0-GwlFt5s2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.843 [XNIO-1 task-1] 7SQL9wDRQuC0-GwlFt5s2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.844 [XNIO-1 task-1] 7SQL9wDRQuC0-GwlFt5s2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.873 [XNIO-1 task-1] NFg91-4HRDmf1_-x83Cv2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.873 [XNIO-1 task-1] NFg91-4HRDmf1_-x83Cv2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.874 [XNIO-1 task-1] NFg91-4HRDmf1_-x83Cv2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.899 [XNIO-1 task-1] Yxom0UqAR3yzfg_SIsNXUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.900 [XNIO-1 task-1] Yxom0UqAR3yzfg_SIsNXUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.901 [XNIO-1 task-1] Yxom0UqAR3yzfg_SIsNXUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.915 [XNIO-1 task-1] -sPRL_t8SoCiMcqS7Jov4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.915 [XNIO-1 task-1] -sPRL_t8SoCiMcqS7Jov4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.915 [XNIO-1 task-1] -sPRL_t8SoCiMcqS7Jov4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.916 [XNIO-1 task-1] -sPRL_t8SoCiMcqS7Jov4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:42.941 [XNIO-1 task-1] AO2c1SnRQkGusT795SGZAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.942 [XNIO-1 task-1] AO2c1SnRQkGusT795SGZAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:42.942 [XNIO-1 task-1] AO2c1SnRQkGusT795SGZAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:42.949 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7ff76874 +00:00:42.955 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7ff76874 +00:00:42.969 [XNIO-1 task-1] BFHvgFZJSfmCXtZtO9JCyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f49c5bdc +00:00:42.969 [XNIO-1 task-1] BFHvgFZJSfmCXtZtO9JCyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:42.969 [XNIO-1 task-1] BFHvgFZJSfmCXtZtO9JCyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:42.969 [XNIO-1 task-1] BFHvgFZJSfmCXtZtO9JCyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f49c5bdc +00:00:42.972 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f49c5bdc +00:00:43.086 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7ff76874 +00:00:43.092 [XNIO-1 task-1] VIeWxyEEQxm27VGKX5b8rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.092 [XNIO-1 task-1] VIeWxyEEQxm27VGKX5b8rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.092 [XNIO-1 task-1] VIeWxyEEQxm27VGKX5b8rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.142 [XNIO-1 task-1] u0P729qCSA-ulZLlS7xdsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.142 [XNIO-1 task-1] u0P729qCSA-ulZLlS7xdsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.142 [XNIO-1 task-1] u0P729qCSA-ulZLlS7xdsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.143 [XNIO-1 task-1] u0P729qCSA-ulZLlS7xdsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.156 [XNIO-1 task-1] lqENDl-YSYSd0eIxQ3FvBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:43.156 [XNIO-1 task-1] lqENDl-YSYSd0eIxQ3FvBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.156 [XNIO-1 task-1] lqENDl-YSYSd0eIxQ3FvBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.156 [XNIO-1 task-1] lqENDl-YSYSd0eIxQ3FvBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:43.189 [XNIO-1 task-1] VoUk9orbTgOLV2Ypqf7YtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2382b483, base path is set to: null +00:00:43.189 [XNIO-1 task-1] VoUk9orbTgOLV2Ypqf7YtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.189 [XNIO-1 task-1] VoUk9orbTgOLV2Ypqf7YtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:43.189 [XNIO-1 task-1] VoUk9orbTgOLV2Ypqf7YtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2382b483, base path is set to: null +00:00:43.189 [XNIO-1 task-1] VoUk9orbTgOLV2Ypqf7YtA DEBUG com.networknt.schema.TypeValidator debug - validate( "2382b483", "2382b483", userId) +00:00:43.219 [XNIO-1 task-1] NxH0jNJTR0SK9JJVOb6Yvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.219 [XNIO-1 task-1] NxH0jNJTR0SK9JJVOb6Yvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.220 [XNIO-1 task-1] NxH0jNJTR0SK9JJVOb6Yvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.235 [XNIO-1 task-1] 30NhO6xyQjO-mh1oZqQ6ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.235 [XNIO-1 task-1] 30NhO6xyQjO-mh1oZqQ6ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.236 [XNIO-1 task-1] 30NhO6xyQjO-mh1oZqQ6ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.249 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:43.249 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.249 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.249 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:43.250 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:43.251 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPassword":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPasswordConfirm":"0e327d37-49ab-4455-8eeb-f5311c11fa73"}, {"password":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPassword":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPasswordConfirm":"0e327d37-49ab-4455-8eeb-f5311c11fa73"}, requestBody) +00:00:43.251 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPassword":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPasswordConfirm":"0e327d37-49ab-4455-8eeb-f5311c11fa73"}, {"password":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPassword":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPasswordConfirm":"0e327d37-49ab-4455-8eeb-f5311c11fa73"}, requestBody) +00:00:43.251 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG com.networknt.schema.FormatValidator debug - validate( "0e327d37-49ab-4455-8eeb-f5311c11fa73", {"password":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPassword":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPasswordConfirm":"0e327d37-49ab-4455-8eeb-f5311c11fa73"}, requestBody.newPasswordConfirm) +00:00:43.251 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG com.networknt.schema.FormatValidator debug - validate( "037d4e46-44a7-4fa2-a153-05913e55ca97", {"password":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPassword":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPasswordConfirm":"0e327d37-49ab-4455-8eeb-f5311c11fa73"}, requestBody.password) +00:00:43.251 [XNIO-1 task-1] wtt67L05QOmODB6aW3EHdg DEBUG com.networknt.schema.FormatValidator debug - validate( "0e327d37-49ab-4455-8eeb-f5311c11fa73", {"password":"037d4e46-44a7-4fa2-a153-05913e55ca97","newPassword":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPasswordConfirm":"0e327d37-49ab-4455-8eeb-f5311c11fa73"}, requestBody.newPassword) +00:00:43.277 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:43.277 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.277 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.278 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:43.278 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:43.279 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPassword":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPasswordConfirm":"64a80509-ebac-4e2b-ba71-6d8c96f1b878"}, {"password":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPassword":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPasswordConfirm":"64a80509-ebac-4e2b-ba71-6d8c96f1b878"}, requestBody) +00:00:43.279 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPassword":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPasswordConfirm":"64a80509-ebac-4e2b-ba71-6d8c96f1b878"}, {"password":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPassword":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPasswordConfirm":"64a80509-ebac-4e2b-ba71-6d8c96f1b878"}, requestBody) +00:00:43.279 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG com.networknt.schema.FormatValidator debug - validate( "64a80509-ebac-4e2b-ba71-6d8c96f1b878", {"password":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPassword":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPasswordConfirm":"64a80509-ebac-4e2b-ba71-6d8c96f1b878"}, requestBody.newPasswordConfirm) +00:00:43.279 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG com.networknt.schema.FormatValidator debug - validate( "0e327d37-49ab-4455-8eeb-f5311c11fa73", {"password":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPassword":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPasswordConfirm":"64a80509-ebac-4e2b-ba71-6d8c96f1b878"}, requestBody.password) +00:00:43.279 [XNIO-1 task-1] 8c4qzw2WTECLdI7M6YMDtg DEBUG com.networknt.schema.FormatValidator debug - validate( "64a80509-ebac-4e2b-ba71-6d8c96f1b878", {"password":"0e327d37-49ab-4455-8eeb-f5311c11fa73","newPassword":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPasswordConfirm":"64a80509-ebac-4e2b-ba71-6d8c96f1b878"}, requestBody.newPassword) +00:00:43.342 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:43.342 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.343 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.343 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:43.343 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/230fc5a3 +00:00:43.344 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPassword":"9ad4d497-b774-40cd-b506-43f0f6f4fac9","newPasswordConfirm":"9ad4d497-b774-40cd-b506-43f0f6f4fac9"}, {"password":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPassword":"9ad4d497-b774-40cd-b506-43f0f6f4fac9","newPasswordConfirm":"9ad4d497-b774-40cd-b506-43f0f6f4fac9"}, requestBody) +00:00:43.344 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPassword":"9ad4d497-b774-40cd-b506-43f0f6f4fac9","newPasswordConfirm":"9ad4d497-b774-40cd-b506-43f0f6f4fac9"}, {"password":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPassword":"9ad4d497-b774-40cd-b506-43f0f6f4fac9","newPasswordConfirm":"9ad4d497-b774-40cd-b506-43f0f6f4fac9"}, requestBody) +00:00:43.344 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG com.networknt.schema.FormatValidator debug - validate( "9ad4d497-b774-40cd-b506-43f0f6f4fac9", {"password":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPassword":"9ad4d497-b774-40cd-b506-43f0f6f4fac9","newPasswordConfirm":"9ad4d497-b774-40cd-b506-43f0f6f4fac9"}, requestBody.newPasswordConfirm) +00:00:43.344 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG com.networknt.schema.FormatValidator debug - validate( "64a80509-ebac-4e2b-ba71-6d8c96f1b878", {"password":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPassword":"9ad4d497-b774-40cd-b506-43f0f6f4fac9","newPasswordConfirm":"9ad4d497-b774-40cd-b506-43f0f6f4fac9"}, requestBody.password) +00:00:43.344 [XNIO-1 task-1] uKOEZJ_iRgi1Ao__M3wrRw DEBUG com.networknt.schema.FormatValidator debug - validate( "9ad4d497-b774-40cd-b506-43f0f6f4fac9", {"password":"64a80509-ebac-4e2b-ba71-6d8c96f1b878","newPassword":"9ad4d497-b774-40cd-b506-43f0f6f4fac9","newPasswordConfirm":"9ad4d497-b774-40cd-b506-43f0f6f4fac9"}, requestBody.newPassword) +00:00:43.373 [XNIO-1 task-1] ht9p70nmSHWt4RzScavQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:43.374 [XNIO-1 task-1] ht9p70nmSHWt4RzScavQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.374 [XNIO-1 task-1] ht9p70nmSHWt4RzScavQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.374 [XNIO-1 task-1] ht9p70nmSHWt4RzScavQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/230fc5a3 +00:00:43.405 [XNIO-1 task-1] ebhJEqgwQlOpa2-_QZWugQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/88de6404, base path is set to: null +00:00:43.406 [XNIO-1 task-1] ebhJEqgwQlOpa2-_QZWugQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.406 [XNIO-1 task-1] ebhJEqgwQlOpa2-_QZWugQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:43.406 [XNIO-1 task-1] ebhJEqgwQlOpa2-_QZWugQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/88de6404, base path is set to: null +00:00:43.406 [XNIO-1 task-1] ebhJEqgwQlOpa2-_QZWugQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88de6404", "88de6404", userId) +00:00:43.431 [XNIO-1 task-1] STSYf5C_TLeCmAdG3hn68g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.432 [XNIO-1 task-1] STSYf5C_TLeCmAdG3hn68g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.450 [XNIO-1 task-1] STSYf5C_TLeCmAdG3hn68g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.505 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c1a14a3b-a8a6-4a43-94f2-b82d1be1bfce +00:00:43.536 [XNIO-1 task-1] ntbjtGN6QWOsxU6jXSQiWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eba3c2f1, base path is set to: null +00:00:43.536 [XNIO-1 task-1] ntbjtGN6QWOsxU6jXSQiWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.537 [XNIO-1 task-1] ntbjtGN6QWOsxU6jXSQiWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:43.537 [XNIO-1 task-1] ntbjtGN6QWOsxU6jXSQiWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eba3c2f1, base path is set to: null +00:00:43.537 [XNIO-1 task-1] ntbjtGN6QWOsxU6jXSQiWA DEBUG com.networknt.schema.TypeValidator debug - validate( "eba3c2f1", "eba3c2f1", userId) +00:00:43.544 [XNIO-1 task-1] nlUJJAGZQbWgd3ATEtEfCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.544 [XNIO-1 task-1] nlUJJAGZQbWgd3ATEtEfCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.544 [XNIO-1 task-1] nlUJJAGZQbWgd3ATEtEfCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.545 [XNIO-1 task-1] nlUJJAGZQbWgd3ATEtEfCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:43.569 [XNIO-1 task-1] OnwGKFFlR-W_ftmIMvZaNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eba3c2f1 +00:00:43.569 [XNIO-1 task-1] OnwGKFFlR-W_ftmIMvZaNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.569 [XNIO-1 task-1] OnwGKFFlR-W_ftmIMvZaNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.569 [XNIO-1 task-1] OnwGKFFlR-W_ftmIMvZaNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eba3c2f1 +00:00:43.585 [XNIO-1 task-1] A2SkEz0rSTSoISWRyrBlnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:43.585 [XNIO-1 task-1] A2SkEz0rSTSoISWRyrBlnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.586 [XNIO-1 task-1] A2SkEz0rSTSoISWRyrBlnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:43.640 [XNIO-1 task-1] QCiTE5asRyOl1sZCKxyCgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1aa68238, base path is set to: null +00:00:43.640 [XNIO-1 task-1] QCiTE5asRyOl1sZCKxyCgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.640 [XNIO-1 task-1] QCiTE5asRyOl1sZCKxyCgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:43.640 [XNIO-1 task-1] QCiTE5asRyOl1sZCKxyCgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1aa68238, base path is set to: null +00:00:43.641 [XNIO-1 task-1] QCiTE5asRyOl1sZCKxyCgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1aa68238", "1aa68238", userId) +00:00:43.650 [XNIO-1 task-1] dLVHpOClR4ekEABH0fCaHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1aa68238 +00:00:43.650 [XNIO-1 task-1] dLVHpOClR4ekEABH0fCaHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.650 [XNIO-1 task-1] dLVHpOClR4ekEABH0fCaHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.651 [XNIO-1 task-1] dLVHpOClR4ekEABH0fCaHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1aa68238 +00:00:43.659 [XNIO-1 task-1] fJh-0v_yQSGIL9azeHmO6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1aa68238, base path is set to: null +00:00:43.660 [XNIO-1 task-1] fJh-0v_yQSGIL9azeHmO6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.660 [XNIO-1 task-1] fJh-0v_yQSGIL9azeHmO6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:43.660 [XNIO-1 task-1] fJh-0v_yQSGIL9azeHmO6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1aa68238, base path is set to: null +00:00:43.660 [XNIO-1 task-1] fJh-0v_yQSGIL9azeHmO6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1aa68238", "1aa68238", userId) +00:00:43.692 [XNIO-1 task-1] a6jiB1W_R5G_dClgT3Xegw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.692 [XNIO-1 task-1] a6jiB1W_R5G_dClgT3Xegw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.692 [XNIO-1 task-1] a6jiB1W_R5G_dClgT3Xegw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.759 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5fdc6aa1 +00:00:43.773 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5fdc6aa1, base path is set to: null +00:00:43.774 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.774 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:43.774 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:43.775 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5fdc6aa1, base path is set to: null +00:00:43.775 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG com.networknt.schema.TypeValidator debug - validate( "5fdc6aa1", "5fdc6aa1", userId) +00:00:43.775 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0308d28f-bba4-4fe7-b52a-a02f1aecd551","newPassword":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPasswordConfirm":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf"}, {"password":"0308d28f-bba4-4fe7-b52a-a02f1aecd551","newPassword":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPasswordConfirm":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf"}, requestBody) +00:00:43.776 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG com.networknt.schema.TypeValidator debug - validate( "8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf", {"password":"0308d28f-bba4-4fe7-b52a-a02f1aecd551","newPassword":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPasswordConfirm":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf"}, requestBody.newPasswordConfirm) +00:00:43.776 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG com.networknt.schema.TypeValidator debug - validate( "0308d28f-bba4-4fe7-b52a-a02f1aecd551", {"password":"0308d28f-bba4-4fe7-b52a-a02f1aecd551","newPassword":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPasswordConfirm":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf"}, requestBody.password) +00:00:43.776 [XNIO-1 task-1] jwgSjy1gSjSh5mXLEE3pIw DEBUG com.networknt.schema.TypeValidator debug - validate( "8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf", {"password":"0308d28f-bba4-4fe7-b52a-a02f1aecd551","newPassword":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPasswordConfirm":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf"}, requestBody.newPassword) +00:00:43.788 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5fdc6aa1 +00:00:43.803 [XNIO-1 task-1] cV1UZ5RzR4y09pm9-fzSgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:43.803 [XNIO-1 task-1] cV1UZ5RzR4y09pm9-fzSgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.804 [XNIO-1 task-1] cV1UZ5RzR4y09pm9-fzSgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:43.804 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5fdc6aa1 +00:00:43.810 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:43.826 [XNIO-1 task-1] 2t8hZcDeSFeTLJZV4dYhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.826 [XNIO-1 task-1] 2t8hZcDeSFeTLJZV4dYhBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +00:00:43.827 [XNIO-1 task-1] 2t8hZcDeSFeTLJZV4dYhBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:43.857 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:43.918 [XNIO-1 task-1] u9k3PXccTRaoKktTBaavVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b296704 +00:00:43.918 [XNIO-1 task-1] u9k3PXccTRaoKktTBaavVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.918 [XNIO-1 task-1] u9k3PXccTRaoKktTBaavVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:43.918 [XNIO-1 task-1] u9k3PXccTRaoKktTBaavVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b296704 +00:00:43.930 [XNIO-1 task-1] 6legnvByQuaktLiy6Zlg4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:43.930 [XNIO-1 task-1] 6legnvByQuaktLiy6Zlg4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:43.931 [XNIO-1 task-1] 6legnvByQuaktLiy6Zlg4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:43.945 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:655f7a67 +00:00:43.947 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:655f7a67 +00:00:43.958 [XNIO-1 task-1] X7p7QZbCSku0Yb-cpFJVmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.958 [XNIO-1 task-1] X7p7QZbCSku0Yb-cpFJVmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.958 [XNIO-1 task-1] X7p7QZbCSku0Yb-cpFJVmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.986 [XNIO-1 task-1] F6CLf1wGSv-SjZFfMTbkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.986 [XNIO-1 task-1] F6CLf1wGSv-SjZFfMTbkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.987 [XNIO-1 task-1] F6CLf1wGSv-SjZFfMTbkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:43.989 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5fdc6aa1 +00:00:44.002 [XNIO-1 task-1] p_Pzude6QTKjksUmVGnClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/655f7a67 +00:00:44.002 [XNIO-1 task-1] p_Pzude6QTKjksUmVGnClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.002 [XNIO-1 task-1] p_Pzude6QTKjksUmVGnClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.003 [XNIO-1 task-1] p_Pzude6QTKjksUmVGnClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/655f7a67 +00:00:44.006 [XNIO-1 task-1] caOLNoQoSOO9-1dj71UZKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.006 [XNIO-1 task-1] caOLNoQoSOO9-1dj71UZKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.007 [XNIO-1 task-1] caOLNoQoSOO9-1dj71UZKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.007 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:655f7a67 +00:00:44.020 [XNIO-1 task-1] fcWJNqm0RsynAlj5uAQS7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5fdc6aa1, base path is set to: null +00:00:44.020 [XNIO-1 task-1] fcWJNqm0RsynAlj5uAQS7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.020 [XNIO-1 task-1] fcWJNqm0RsynAlj5uAQS7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.020 [XNIO-1 task-1] fcWJNqm0RsynAlj5uAQS7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5fdc6aa1, base path is set to: null +00:00:44.021 [XNIO-1 task-1] fcWJNqm0RsynAlj5uAQS7A DEBUG com.networknt.schema.TypeValidator debug - validate( "5fdc6aa1", "5fdc6aa1", userId) +00:00:44.026 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5fdc6aa1 +00:00:44.026 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.026 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.026 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:44.027 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5fdc6aa1 +00:00:44.027 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPassword":"9994eaa2-7e0b-4992-b106-5d44b76824b3","newPasswordConfirm":"9994eaa2-7e0b-4992-b106-5d44b76824b3"}, {"password":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPassword":"9994eaa2-7e0b-4992-b106-5d44b76824b3","newPasswordConfirm":"9994eaa2-7e0b-4992-b106-5d44b76824b3"}, requestBody) +00:00:44.028 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPassword":"9994eaa2-7e0b-4992-b106-5d44b76824b3","newPasswordConfirm":"9994eaa2-7e0b-4992-b106-5d44b76824b3"}, {"password":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPassword":"9994eaa2-7e0b-4992-b106-5d44b76824b3","newPasswordConfirm":"9994eaa2-7e0b-4992-b106-5d44b76824b3"}, requestBody) +00:00:44.028 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG com.networknt.schema.FormatValidator debug - validate( "9994eaa2-7e0b-4992-b106-5d44b76824b3", {"password":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPassword":"9994eaa2-7e0b-4992-b106-5d44b76824b3","newPasswordConfirm":"9994eaa2-7e0b-4992-b106-5d44b76824b3"}, requestBody.newPasswordConfirm) +00:00:44.028 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG com.networknt.schema.FormatValidator debug - validate( "8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf", {"password":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPassword":"9994eaa2-7e0b-4992-b106-5d44b76824b3","newPasswordConfirm":"9994eaa2-7e0b-4992-b106-5d44b76824b3"}, requestBody.password) +00:00:44.028 [XNIO-1 task-1] A3obBNtESren-0Y7hplyqA DEBUG com.networknt.schema.FormatValidator debug - validate( "9994eaa2-7e0b-4992-b106-5d44b76824b3", {"password":"8c11ffd7-0cfa-42ff-ac93-2b8cd0f836cf","newPassword":"9994eaa2-7e0b-4992-b106-5d44b76824b3","newPasswordConfirm":"9994eaa2-7e0b-4992-b106-5d44b76824b3"}, requestBody.newPassword) +00:00:44.038 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5fdc6aa1 +00:00:44.059 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bd938f97 +00:00:44.060 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.060 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.060 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:44.060 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bd938f97 +00:00:44.061 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0f577617-837b-4d89-be0e-2bb771c2312d","newPassword":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPasswordConfirm":"b62335f4-1f35-4caf-9a5e-ce23476988cf"}, {"password":"0f577617-837b-4d89-be0e-2bb771c2312d","newPassword":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPasswordConfirm":"b62335f4-1f35-4caf-9a5e-ce23476988cf"}, requestBody) +00:00:44.061 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0f577617-837b-4d89-be0e-2bb771c2312d","newPassword":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPasswordConfirm":"b62335f4-1f35-4caf-9a5e-ce23476988cf"}, {"password":"0f577617-837b-4d89-be0e-2bb771c2312d","newPassword":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPasswordConfirm":"b62335f4-1f35-4caf-9a5e-ce23476988cf"}, requestBody) +00:00:44.061 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG com.networknt.schema.FormatValidator debug - validate( "b62335f4-1f35-4caf-9a5e-ce23476988cf", {"password":"0f577617-837b-4d89-be0e-2bb771c2312d","newPassword":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPasswordConfirm":"b62335f4-1f35-4caf-9a5e-ce23476988cf"}, requestBody.newPasswordConfirm) +00:00:44.062 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG com.networknt.schema.FormatValidator debug - validate( "0f577617-837b-4d89-be0e-2bb771c2312d", {"password":"0f577617-837b-4d89-be0e-2bb771c2312d","newPassword":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPasswordConfirm":"b62335f4-1f35-4caf-9a5e-ce23476988cf"}, requestBody.password) +00:00:44.062 [XNIO-1 task-1] 3-z9eOrXRhKn8cX3KgXWPw DEBUG com.networknt.schema.FormatValidator debug - validate( "b62335f4-1f35-4caf-9a5e-ce23476988cf", {"password":"0f577617-837b-4d89-be0e-2bb771c2312d","newPassword":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPasswordConfirm":"b62335f4-1f35-4caf-9a5e-ce23476988cf"}, requestBody.newPassword) +00:00:44.112 [XNIO-1 task-1] mqu0cbbBTYGXWjkVZO2D6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5fdc6aa1 +00:00:44.112 [XNIO-1 task-1] mqu0cbbBTYGXWjkVZO2D6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.112 [XNIO-1 task-1] mqu0cbbBTYGXWjkVZO2D6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.112 [XNIO-1 task-1] mqu0cbbBTYGXWjkVZO2D6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5fdc6aa1 +00:00:44.113 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5fdc6aa1 +00:00:44.127 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bd938f97 +00:00:44.127 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.127 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.127 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:44.127 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bd938f97 +00:00:44.129 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPassword":"7180cdbc-80e3-45af-94a7-c7ba082762de","newPasswordConfirm":"7180cdbc-80e3-45af-94a7-c7ba082762de"}, {"password":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPassword":"7180cdbc-80e3-45af-94a7-c7ba082762de","newPasswordConfirm":"7180cdbc-80e3-45af-94a7-c7ba082762de"}, requestBody) +00:00:44.129 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPassword":"7180cdbc-80e3-45af-94a7-c7ba082762de","newPasswordConfirm":"7180cdbc-80e3-45af-94a7-c7ba082762de"}, {"password":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPassword":"7180cdbc-80e3-45af-94a7-c7ba082762de","newPasswordConfirm":"7180cdbc-80e3-45af-94a7-c7ba082762de"}, requestBody) +00:00:44.129 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG com.networknt.schema.FormatValidator debug - validate( "7180cdbc-80e3-45af-94a7-c7ba082762de", {"password":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPassword":"7180cdbc-80e3-45af-94a7-c7ba082762de","newPasswordConfirm":"7180cdbc-80e3-45af-94a7-c7ba082762de"}, requestBody.newPasswordConfirm) +00:00:44.129 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG com.networknt.schema.FormatValidator debug - validate( "b62335f4-1f35-4caf-9a5e-ce23476988cf", {"password":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPassword":"7180cdbc-80e3-45af-94a7-c7ba082762de","newPasswordConfirm":"7180cdbc-80e3-45af-94a7-c7ba082762de"}, requestBody.password) +00:00:44.129 [XNIO-1 task-1] APJtR_6aR4ip_z2XuJhoZA DEBUG com.networknt.schema.FormatValidator debug - validate( "7180cdbc-80e3-45af-94a7-c7ba082762de", {"password":"b62335f4-1f35-4caf-9a5e-ce23476988cf","newPassword":"7180cdbc-80e3-45af-94a7-c7ba082762de","newPasswordConfirm":"7180cdbc-80e3-45af-94a7-c7ba082762de"}, requestBody.newPassword) +00:00:44.166 [XNIO-1 task-1] mvjFoFBMRSSftVM6T5aRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bd938f97 +00:00:44.166 [XNIO-1 task-1] mvjFoFBMRSSftVM6T5aRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.166 [XNIO-1 task-1] mvjFoFBMRSSftVM6T5aRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.166 [XNIO-1 task-1] mvjFoFBMRSSftVM6T5aRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bd938f97 +00:00:44.182 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b296704, base path is set to: null +00:00:44.182 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.183 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.183 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:44.183 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b296704, base path is set to: null +00:00:44.184 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG com.networknt.schema.TypeValidator debug - validate( "6b296704", "6b296704", userId) +00:00:44.186 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ba1fa6e5-0e23-482e-bc5b-e750d364cac6","newPassword":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPasswordConfirm":"337ed247-1a59-4696-b361-9f5a9a91c1e1"}, {"password":"ba1fa6e5-0e23-482e-bc5b-e750d364cac6","newPassword":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPasswordConfirm":"337ed247-1a59-4696-b361-9f5a9a91c1e1"}, requestBody) +00:00:44.186 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG com.networknt.schema.TypeValidator debug - validate( "337ed247-1a59-4696-b361-9f5a9a91c1e1", {"password":"ba1fa6e5-0e23-482e-bc5b-e750d364cac6","newPassword":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPasswordConfirm":"337ed247-1a59-4696-b361-9f5a9a91c1e1"}, requestBody.newPasswordConfirm) +00:00:44.187 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1fa6e5-0e23-482e-bc5b-e750d364cac6", {"password":"ba1fa6e5-0e23-482e-bc5b-e750d364cac6","newPassword":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPasswordConfirm":"337ed247-1a59-4696-b361-9f5a9a91c1e1"}, requestBody.password) +00:00:44.187 [XNIO-1 task-1] AuIXqibURQWb06Whuy_l9w DEBUG com.networknt.schema.TypeValidator debug - validate( "337ed247-1a59-4696-b361-9f5a9a91c1e1", {"password":"ba1fa6e5-0e23-482e-bc5b-e750d364cac6","newPassword":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPasswordConfirm":"337ed247-1a59-4696-b361-9f5a9a91c1e1"}, requestBody.newPassword) +00:00:44.248 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/655f7a67, base path is set to: null +00:00:44.248 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.248 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.248 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:44.249 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/655f7a67, base path is set to: null +00:00:44.249 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG com.networknt.schema.TypeValidator debug - validate( "655f7a67", "655f7a67", userId) +00:00:44.250 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c6ac64d5-a0d5-4eb7-b54b-cbc772823b3b","newPassword":"a78bd75c-783d-4536-bc6f-6660e5151764","newPasswordConfirm":"a78bd75c-783d-4536-bc6f-6660e5151764"}, {"password":"c6ac64d5-a0d5-4eb7-b54b-cbc772823b3b","newPassword":"a78bd75c-783d-4536-bc6f-6660e5151764","newPasswordConfirm":"a78bd75c-783d-4536-bc6f-6660e5151764"}, requestBody) +00:00:44.250 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG com.networknt.schema.TypeValidator debug - validate( "a78bd75c-783d-4536-bc6f-6660e5151764", {"password":"c6ac64d5-a0d5-4eb7-b54b-cbc772823b3b","newPassword":"a78bd75c-783d-4536-bc6f-6660e5151764","newPasswordConfirm":"a78bd75c-783d-4536-bc6f-6660e5151764"}, requestBody.newPasswordConfirm) +00:00:44.250 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG com.networknt.schema.TypeValidator debug - validate( "c6ac64d5-a0d5-4eb7-b54b-cbc772823b3b", {"password":"c6ac64d5-a0d5-4eb7-b54b-cbc772823b3b","newPassword":"a78bd75c-783d-4536-bc6f-6660e5151764","newPasswordConfirm":"a78bd75c-783d-4536-bc6f-6660e5151764"}, requestBody.password) +00:00:44.250 [XNIO-1 task-1] UihGWzhKSZK9s-qIhuGW8w DEBUG com.networknt.schema.TypeValidator debug - validate( "a78bd75c-783d-4536-bc6f-6660e5151764", {"password":"c6ac64d5-a0d5-4eb7-b54b-cbc772823b3b","newPassword":"a78bd75c-783d-4536-bc6f-6660e5151764","newPasswordConfirm":"a78bd75c-783d-4536-bc6f-6660e5151764"}, requestBody.newPassword) +00:00:44.272 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:655f7a67 +00:00:44.304 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a4e7a56 +00:00:44.306 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a4e7a56 +00:00:44.308 [XNIO-1 task-1] ldh8J4-rSNyWY3bboUMKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.308 [XNIO-1 task-1] ldh8J4-rSNyWY3bboUMKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.308 [XNIO-1 task-1] ldh8J4-rSNyWY3bboUMKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.325 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a4e7a56 +00:00:44.334 [XNIO-1 task-1] bypcbCc8QRm3uIqX8TxEKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/655f7a67 +00:00:44.335 [XNIO-1 task-1] bypcbCc8QRm3uIqX8TxEKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.335 [XNIO-1 task-1] bypcbCc8QRm3uIqX8TxEKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.335 [XNIO-1 task-1] bypcbCc8QRm3uIqX8TxEKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/655f7a67 +00:00:44.336 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:655f7a67 +00:00:44.349 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/342e22c7 +00:00:44.349 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.349 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.349 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:44.350 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/342e22c7 +00:00:44.351 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e64980aa-4311-4fcc-9bb2-3c6a813cc2e5","newPassword":"4e61279c-df4d-475b-a2f6-a9ae94038630","newPasswordConfirm":"4e61279c-df4d-475b-a2f6-a9ae94038630"}, {"password":"e64980aa-4311-4fcc-9bb2-3c6a813cc2e5","newPassword":"4e61279c-df4d-475b-a2f6-a9ae94038630","newPasswordConfirm":"4e61279c-df4d-475b-a2f6-a9ae94038630"}, requestBody) +00:00:44.351 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e64980aa-4311-4fcc-9bb2-3c6a813cc2e5","newPassword":"4e61279c-df4d-475b-a2f6-a9ae94038630","newPasswordConfirm":"4e61279c-df4d-475b-a2f6-a9ae94038630"}, {"password":"e64980aa-4311-4fcc-9bb2-3c6a813cc2e5","newPassword":"4e61279c-df4d-475b-a2f6-a9ae94038630","newPasswordConfirm":"4e61279c-df4d-475b-a2f6-a9ae94038630"}, requestBody) +00:00:44.351 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG com.networknt.schema.FormatValidator debug - validate( "4e61279c-df4d-475b-a2f6-a9ae94038630", {"password":"e64980aa-4311-4fcc-9bb2-3c6a813cc2e5","newPassword":"4e61279c-df4d-475b-a2f6-a9ae94038630","newPasswordConfirm":"4e61279c-df4d-475b-a2f6-a9ae94038630"}, requestBody.newPasswordConfirm) +00:00:44.351 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG com.networknt.schema.FormatValidator debug - validate( "e64980aa-4311-4fcc-9bb2-3c6a813cc2e5", {"password":"e64980aa-4311-4fcc-9bb2-3c6a813cc2e5","newPassword":"4e61279c-df4d-475b-a2f6-a9ae94038630","newPasswordConfirm":"4e61279c-df4d-475b-a2f6-a9ae94038630"}, requestBody.password) +00:00:44.351 [XNIO-1 task-1] iotb-EzzQOGfa7lu873ldg DEBUG com.networknt.schema.FormatValidator debug - validate( "4e61279c-df4d-475b-a2f6-a9ae94038630", {"password":"e64980aa-4311-4fcc-9bb2-3c6a813cc2e5","newPassword":"4e61279c-df4d-475b-a2f6-a9ae94038630","newPasswordConfirm":"4e61279c-df4d-475b-a2f6-a9ae94038630"}, requestBody.newPassword) +00:00:44.384 [XNIO-1 task-1] TKfU6M7cQUe6FnYgOqlnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/342e22c7 +00:00:44.384 [XNIO-1 task-1] TKfU6M7cQUe6FnYgOqlnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.384 [XNIO-1 task-1] TKfU6M7cQUe6FnYgOqlnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.384 [XNIO-1 task-1] TKfU6M7cQUe6FnYgOqlnWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/342e22c7 +00:00:44.393 [XNIO-1 task-1] PUroi_z1SyqYPGSkfwiHgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.393 [XNIO-1 task-1] PUroi_z1SyqYPGSkfwiHgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.393 [XNIO-1 task-1] PUroi_z1SyqYPGSkfwiHgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.405 [XNIO-1 task-1] lRu1idc4SAixDuKhkTLfIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.405 [XNIO-1 task-1] lRu1idc4SAixDuKhkTLfIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.405 [XNIO-1 task-1] lRu1idc4SAixDuKhkTLfIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.440 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b296704, base path is set to: null +00:00:44.440 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.440 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.440 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:44.441 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b296704, base path is set to: null +00:00:44.441 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b296704", "6b296704", userId) +00:00:44.442 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPassword":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPasswordConfirm":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6"}, {"password":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPassword":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPasswordConfirm":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6"}, requestBody) +00:00:44.442 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG com.networknt.schema.TypeValidator debug - validate( "50fc08b0-0da8-4165-8dcc-22387a8ef8e6", {"password":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPassword":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPasswordConfirm":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6"}, requestBody.newPasswordConfirm) +00:00:44.442 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG com.networknt.schema.TypeValidator debug - validate( "337ed247-1a59-4696-b361-9f5a9a91c1e1", {"password":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPassword":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPasswordConfirm":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6"}, requestBody.password) +00:00:44.442 [XNIO-1 task-1] TW1r2u5QS0aEkM8p8leFQA DEBUG com.networknt.schema.TypeValidator debug - validate( "50fc08b0-0da8-4165-8dcc-22387a8ef8e6", {"password":"337ed247-1a59-4696-b361-9f5a9a91c1e1","newPassword":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPasswordConfirm":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6"}, requestBody.newPassword) +00:00:44.485 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c25e3bbd-fd96-4eff-9ecf-9b8ffb8025f0 +00:00:44.489 [XNIO-1 task-1] 2EYmKWLhT4KpHvdv8XjO9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.489 [XNIO-1 task-1] 2EYmKWLhT4KpHvdv8XjO9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.490 [XNIO-1 task-1] 2EYmKWLhT4KpHvdv8XjO9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.509 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c25e3bbd-fd96-4eff-9ecf-9b8ffb8025f0 +00:00:44.596 [XNIO-1 task-1] I8-pAFhlSD6A9MoRY28UYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.596 [XNIO-1 task-1] I8-pAFhlSD6A9MoRY28UYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.596 [XNIO-1 task-1] I8-pAFhlSD6A9MoRY28UYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.612 [XNIO-1 task-1] nWMlwRquQEC-8VklhQkDFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.612 [XNIO-1 task-1] nWMlwRquQEC-8VklhQkDFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.612 [XNIO-1 task-1] nWMlwRquQEC-8VklhQkDFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.613 [XNIO-1 task-1] nWMlwRquQEC-8VklhQkDFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:44.624 [XNIO-1 task-1] NBnn52nPT1m0jQLou2bvZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/297963b4 +00:00:44.624 [XNIO-1 task-1] NBnn52nPT1m0jQLou2bvZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.624 [XNIO-1 task-1] NBnn52nPT1m0jQLou2bvZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.625 [XNIO-1 task-1] NBnn52nPT1m0jQLou2bvZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/297963b4 +00:00:44.633 [XNIO-1 task-1] AfY4OO4hQxq9MQXqPNhKww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.633 [XNIO-1 task-1] AfY4OO4hQxq9MQXqPNhKww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.634 [XNIO-1 task-1] AfY4OO4hQxq9MQXqPNhKww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.681 [XNIO-1 task-1] HUWF_q8TTTauQ874Q3lNKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.682 [XNIO-1 task-1] HUWF_q8TTTauQ874Q3lNKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.682 [XNIO-1 task-1] HUWF_q8TTTauQ874Q3lNKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.698 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b296704, base path is set to: null +00:00:44.698 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.698 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.698 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:44.698 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b296704, base path is set to: null +00:00:44.700 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b296704", "6b296704", userId) +00:00:44.701 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPassword":"d118fb40-54df-4c10-bc7e-8caee9a7d29e","newPasswordConfirm":"d118fb40-54df-4c10-bc7e-8caee9a7d29e"}, {"password":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPassword":"d118fb40-54df-4c10-bc7e-8caee9a7d29e","newPasswordConfirm":"d118fb40-54df-4c10-bc7e-8caee9a7d29e"}, requestBody) +00:00:44.701 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "d118fb40-54df-4c10-bc7e-8caee9a7d29e", {"password":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPassword":"d118fb40-54df-4c10-bc7e-8caee9a7d29e","newPasswordConfirm":"d118fb40-54df-4c10-bc7e-8caee9a7d29e"}, requestBody.newPasswordConfirm) +00:00:44.701 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "50fc08b0-0da8-4165-8dcc-22387a8ef8e6", {"password":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPassword":"d118fb40-54df-4c10-bc7e-8caee9a7d29e","newPasswordConfirm":"d118fb40-54df-4c10-bc7e-8caee9a7d29e"}, requestBody.password) +00:00:44.701 [XNIO-1 task-1] v0QOwrsNTkKzVgg5xQ98Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "d118fb40-54df-4c10-bc7e-8caee9a7d29e", {"password":"50fc08b0-0da8-4165-8dcc-22387a8ef8e6","newPassword":"d118fb40-54df-4c10-bc7e-8caee9a7d29e","newPasswordConfirm":"d118fb40-54df-4c10-bc7e-8caee9a7d29e"}, requestBody.newPassword) +00:00:44.732 [XNIO-1 task-1] zbHYnY1hQM6ZfXny5tgHSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/342e22c7, base path is set to: null +00:00:44.733 [XNIO-1 task-1] zbHYnY1hQM6ZfXny5tgHSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.733 [XNIO-1 task-1] zbHYnY1hQM6ZfXny5tgHSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.733 [XNIO-1 task-1] zbHYnY1hQM6ZfXny5tgHSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/342e22c7, base path is set to: null +00:00:44.734 [XNIO-1 task-1] zbHYnY1hQM6ZfXny5tgHSw DEBUG com.networknt.schema.TypeValidator debug - validate( "342e22c7", "342e22c7", userId) +00:00:44.746 [XNIO-1 task-1] KY5g9pD_QMWqcanUxnhnjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b296704 +00:00:44.746 [XNIO-1 task-1] KY5g9pD_QMWqcanUxnhnjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.746 [XNIO-1 task-1] KY5g9pD_QMWqcanUxnhnjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.746 [XNIO-1 task-1] KY5g9pD_QMWqcanUxnhnjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b296704 +00:00:44.760 [XNIO-1 task-1] sB6dmMy4TLiX0RGRuMdYJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.761 [XNIO-1 task-1] sB6dmMy4TLiX0RGRuMdYJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.761 [XNIO-1 task-1] sB6dmMy4TLiX0RGRuMdYJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.764 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:44.813 [XNIO-1 task-1] RDLmTblkQa2S7KvqhR1YFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.813 [XNIO-1 task-1] RDLmTblkQa2S7KvqhR1YFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.814 [XNIO-1 task-1] RDLmTblkQa2S7KvqhR1YFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.834 [XNIO-1 task-1] gLN4J3-BQa6PF70oIwFeAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.834 [XNIO-1 task-1] gLN4J3-BQa6PF70oIwFeAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.834 [XNIO-1 task-1] gLN4J3-BQa6PF70oIwFeAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.859 [XNIO-1 task-1] rJN2gjarSNiITgW8HvBnBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.859 [XNIO-1 task-1] rJN2gjarSNiITgW8HvBnBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.859 [XNIO-1 task-1] rJN2gjarSNiITgW8HvBnBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.859 [XNIO-1 task-1] rJN2gjarSNiITgW8HvBnBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.872 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/297963b4, base path is set to: null +00:00:44.872 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.872 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.872 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:44.873 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/297963b4, base path is set to: null +00:00:44.873 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "297963b4", "297963b4", userId) +00:00:44.874 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"81d1466f-ff38-415c-933e-9adcb7626e2a","newPassword":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPasswordConfirm":"f15cb557-d363-4735-a6eb-4221b7fe6116"}, {"password":"81d1466f-ff38-415c-933e-9adcb7626e2a","newPassword":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPasswordConfirm":"f15cb557-d363-4735-a6eb-4221b7fe6116"}, requestBody) +00:00:44.874 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f15cb557-d363-4735-a6eb-4221b7fe6116", {"password":"81d1466f-ff38-415c-933e-9adcb7626e2a","newPassword":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPasswordConfirm":"f15cb557-d363-4735-a6eb-4221b7fe6116"}, requestBody.newPasswordConfirm) +00:00:44.874 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "81d1466f-ff38-415c-933e-9adcb7626e2a", {"password":"81d1466f-ff38-415c-933e-9adcb7626e2a","newPassword":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPasswordConfirm":"f15cb557-d363-4735-a6eb-4221b7fe6116"}, requestBody.password) +00:00:44.874 [XNIO-1 task-1] kfF_QcG5SgaaiPVcNAFCdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f15cb557-d363-4735-a6eb-4221b7fe6116", {"password":"81d1466f-ff38-415c-933e-9adcb7626e2a","newPassword":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPasswordConfirm":"f15cb557-d363-4735-a6eb-4221b7fe6116"}, requestBody.newPassword) +00:00:44.905 [XNIO-1 task-1] y5Rz35WBSXCOqJ0UCkrGBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.905 [XNIO-1 task-1] y5Rz35WBSXCOqJ0UCkrGBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.905 [XNIO-1 task-1] y5Rz35WBSXCOqJ0UCkrGBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:44.906 [XNIO-1 task-1] y5Rz35WBSXCOqJ0UCkrGBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:44.911 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/297963b4, base path is set to: null +00:00:44.911 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:44.911 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:44.911 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:44.912 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/297963b4, base path is set to: null +00:00:44.912 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG com.networknt.schema.TypeValidator debug - validate( "297963b4", "297963b4", userId) +00:00:44.914 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPassword":"0d6fd0fe-6b64-4872-855e-afbfce246f02","newPasswordConfirm":"0d6fd0fe-6b64-4872-855e-afbfce246f02"}, {"password":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPassword":"0d6fd0fe-6b64-4872-855e-afbfce246f02","newPasswordConfirm":"0d6fd0fe-6b64-4872-855e-afbfce246f02"}, requestBody) +00:00:44.914 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG com.networknt.schema.TypeValidator debug - validate( "0d6fd0fe-6b64-4872-855e-afbfce246f02", {"password":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPassword":"0d6fd0fe-6b64-4872-855e-afbfce246f02","newPasswordConfirm":"0d6fd0fe-6b64-4872-855e-afbfce246f02"}, requestBody.newPasswordConfirm) +00:00:44.914 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG com.networknt.schema.TypeValidator debug - validate( "f15cb557-d363-4735-a6eb-4221b7fe6116", {"password":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPassword":"0d6fd0fe-6b64-4872-855e-afbfce246f02","newPasswordConfirm":"0d6fd0fe-6b64-4872-855e-afbfce246f02"}, requestBody.password) +00:00:44.914 [XNIO-1 task-1] f5NcMhTURRS9EjjxdEijug DEBUG com.networknt.schema.TypeValidator debug - validate( "0d6fd0fe-6b64-4872-855e-afbfce246f02", {"password":"f15cb557-d363-4735-a6eb-4221b7fe6116","newPassword":"0d6fd0fe-6b64-4872-855e-afbfce246f02","newPasswordConfirm":"0d6fd0fe-6b64-4872-855e-afbfce246f02"}, requestBody.newPassword) +00:00:44.928 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a4e7a56 +00:00:44.945 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf0526c8 +00:00:44.948 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf0526c8 +00:00:44.955 [XNIO-1 task-1] ZVUMCRAMTfaVlAC7uGsEwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.955 [XNIO-1 task-1] ZVUMCRAMTfaVlAC7uGsEwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.955 [XNIO-1 task-1] ZVUMCRAMTfaVlAC7uGsEwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.981 [XNIO-1 task-1] 6GVVpJ7WQnKUUMHnxm2_OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.981 [XNIO-1 task-1] 6GVVpJ7WQnKUUMHnxm2_OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.981 [XNIO-1 task-1] 6GVVpJ7WQnKUUMHnxm2_OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.996 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b692ae6b +00:00:44.997 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:44.997 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:44.997 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:44.997 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b692ae6b +00:00:44.998 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"629b62e4-cf40-44e9-a020-5804d24f5568","newPassword":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca","newPasswordConfirm":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca"}, {"password":"629b62e4-cf40-44e9-a020-5804d24f5568","newPassword":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca","newPasswordConfirm":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca"}, requestBody) +00:00:44.999 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"629b62e4-cf40-44e9-a020-5804d24f5568","newPassword":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca","newPasswordConfirm":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca"}, {"password":"629b62e4-cf40-44e9-a020-5804d24f5568","newPassword":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca","newPasswordConfirm":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca"}, requestBody) +00:00:44.999 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "3276e994-0c3b-45fb-ae1c-10e1e70b22ca", {"password":"629b62e4-cf40-44e9-a020-5804d24f5568","newPassword":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca","newPasswordConfirm":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca"}, requestBody.newPasswordConfirm) +00:00:44.999 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "629b62e4-cf40-44e9-a020-5804d24f5568", {"password":"629b62e4-cf40-44e9-a020-5804d24f5568","newPassword":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca","newPasswordConfirm":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca"}, requestBody.password) +00:00:44.999 [XNIO-1 task-1] eAClhIVzStGf51egkbQIZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "3276e994-0c3b-45fb-ae1c-10e1e70b22ca", {"password":"629b62e4-cf40-44e9-a020-5804d24f5568","newPassword":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca","newPasswordConfirm":"3276e994-0c3b-45fb-ae1c-10e1e70b22ca"}, requestBody.newPassword) +00:00:45.032 [XNIO-1 task-1] yv0BHMLMQj-n8tv08sH0iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/297963b4 +00:00:45.032 [XNIO-1 task-1] yv0BHMLMQj-n8tv08sH0iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.032 [XNIO-1 task-1] yv0BHMLMQj-n8tv08sH0iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.032 [XNIO-1 task-1] yv0BHMLMQj-n8tv08sH0iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/297963b4 +00:00:45.053 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1ef8e74b-5db1-4093-8258-f5ec15564765 +00:00:45.057 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ea259058 +00:00:45.057 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.057 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.057 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:45.058 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ea259058, base path is set to: null +00:00:45.059 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ea259058", "ea259058", userId) +00:00:45.059 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"34791f0a-0fc5-41d7-9bb8-01ec9a5d1b4d","newPassword":"c1f3b384-2a34-4595-9b3d-457ab8cd6086","newPasswordConfirm":"c1f3b384-2a34-4595-9b3d-457ab8cd6086"}, {"password":"34791f0a-0fc5-41d7-9bb8-01ec9a5d1b4d","newPassword":"c1f3b384-2a34-4595-9b3d-457ab8cd6086","newPasswordConfirm":"c1f3b384-2a34-4595-9b3d-457ab8cd6086"}, requestBody) +00:00:45.059 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c1f3b384-2a34-4595-9b3d-457ab8cd6086", {"password":"34791f0a-0fc5-41d7-9bb8-01ec9a5d1b4d","newPassword":"c1f3b384-2a34-4595-9b3d-457ab8cd6086","newPasswordConfirm":"c1f3b384-2a34-4595-9b3d-457ab8cd6086"}, requestBody.newPasswordConfirm) +00:00:45.059 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "34791f0a-0fc5-41d7-9bb8-01ec9a5d1b4d", {"password":"34791f0a-0fc5-41d7-9bb8-01ec9a5d1b4d","newPassword":"c1f3b384-2a34-4595-9b3d-457ab8cd6086","newPasswordConfirm":"c1f3b384-2a34-4595-9b3d-457ab8cd6086"}, requestBody.password) +00:00:45.059 [XNIO-1 task-1] lc3jnNSnTASG9iWUYZSH5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c1f3b384-2a34-4595-9b3d-457ab8cd6086", {"password":"34791f0a-0fc5-41d7-9bb8-01ec9a5d1b4d","newPassword":"c1f3b384-2a34-4595-9b3d-457ab8cd6086","newPasswordConfirm":"c1f3b384-2a34-4595-9b3d-457ab8cd6086"}, requestBody.newPassword) +00:00:45.060 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7a4e7a56 +00:00:45.091 [XNIO-1 task-1] 1GCuiuEIQQSyzmTKd-BgeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ea259058, base path is set to: null +00:00:45.091 [XNIO-1 task-1] 1GCuiuEIQQSyzmTKd-BgeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.091 [XNIO-1 task-1] 1GCuiuEIQQSyzmTKd-BgeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:45.091 [XNIO-1 task-1] 1GCuiuEIQQSyzmTKd-BgeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ea259058, base path is set to: null +00:00:45.092 [XNIO-1 task-1] 1GCuiuEIQQSyzmTKd-BgeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ea259058", "ea259058", userId) +00:00:45.098 [XNIO-1 task-1] r2E6D5-CRGKkHvUu7gyibg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ea259058 +00:00:45.099 [XNIO-1 task-1] r2E6D5-CRGKkHvUu7gyibg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.099 [XNIO-1 task-1] r2E6D5-CRGKkHvUu7gyibg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.099 [XNIO-1 task-1] r2E6D5-CRGKkHvUu7gyibg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ea259058 +00:00:45.130 [XNIO-1 task-1] A--RRUtBQIufJ1CVMuyEKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b692ae6b, base path is set to: null +00:00:45.130 [XNIO-1 task-1] A--RRUtBQIufJ1CVMuyEKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.132 [XNIO-1 task-1] A--RRUtBQIufJ1CVMuyEKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:45.132 [XNIO-1 task-1] A--RRUtBQIufJ1CVMuyEKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b692ae6b, base path is set to: null +00:00:45.132 [XNIO-1 task-1] A--RRUtBQIufJ1CVMuyEKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b692ae6b", "b692ae6b", userId) +00:00:45.149 [XNIO-1 task-1] XsW2ICJNQmmvvQVVmOScTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.151 [XNIO-1 task-1] XsW2ICJNQmmvvQVVmOScTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.151 [XNIO-1 task-1] XsW2ICJNQmmvvQVVmOScTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.151 [XNIO-1 task-1] XsW2ICJNQmmvvQVVmOScTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.163 [XNIO-1 task-1] 5IP_kbFPRPWHPU5g-NxEdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.164 [XNIO-1 task-1] 5IP_kbFPRPWHPU5g-NxEdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.164 [XNIO-1 task-1] 5IP_kbFPRPWHPU5g-NxEdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.187 [XNIO-1 task-1] 9HZtVqNBT_m8aExWxNDBpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.188 [XNIO-1 task-1] 9HZtVqNBT_m8aExWxNDBpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.188 [XNIO-1 task-1] 9HZtVqNBT_m8aExWxNDBpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.202 [XNIO-1 task-1] Lcm9E9oWRH6BJYKHq7NGUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dcb452ec, base path is set to: null +00:00:45.202 [XNIO-1 task-1] Lcm9E9oWRH6BJYKHq7NGUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.202 [XNIO-1 task-1] Lcm9E9oWRH6BJYKHq7NGUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:45.203 [XNIO-1 task-1] Lcm9E9oWRH6BJYKHq7NGUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dcb452ec, base path is set to: null +00:00:45.203 [XNIO-1 task-1] Lcm9E9oWRH6BJYKHq7NGUw DEBUG com.networknt.schema.TypeValidator debug - validate( "dcb452ec", "dcb452ec", userId) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:45.207 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dcb452ec +00:00:45.207 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.207 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.207 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +00:00:45.208 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcb452ec", "dcb452ec", userId) +00:00:45.209 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody) +00:00:45.209 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +00:00:45.209 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6", {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody.newPasswordConfirm) +00:00:45.209 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6", {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody.newPasswordConfirm) +00:00:45.209 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "12a4cd9e-fe93-4a70-89dd-6521dec67f23", {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody.password) +00:00:45.209 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3db09f23 +00:00:45.209 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "12a4cd9e-fe93-4a70-89dd-6521dec67f23", {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody.password) +00:00:45.210 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6", {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody.newPassword) +00:00:45.210 [XNIO-1 task-1] dFJYZ9FBRW-V7TT10qEvqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6", {"password":"12a4cd9e-fe93-4a70-89dd-6521dec67f23","newPassword":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPasswordConfirm":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6"}, requestBody.newPassword) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +00:00:45.237 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:60c2bb92-4ee2-4160-b1ee-a2bf95f0f076 +00:00:45.238 [XNIO-1 task-1] ESD8a3P5R0mRbzIuw6RPSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dcb452ec + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +00:00:45.239 [XNIO-1 task-1] ESD8a3P5R0mRbzIuw6RPSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.239 [XNIO-1 task-1] ESD8a3P5R0mRbzIuw6RPSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:45.239 [XNIO-1 task-1] ESD8a3P5R0mRbzIuw6RPSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dcb452ec +00:00:45.240 [XNIO-1 task-1] ESD8a3P5R0mRbzIuw6RPSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcb452ec", "dcb452ec", userId) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +00:00:45.241 [XNIO-1 task-1] ESD8a3P5R0mRbzIuw6RPSQ DEBUG com.networknt.schema.FormatValidator debug - validate( "9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6", {"password":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPassword":"04885979-7446-4fa9-9528-8bdc844f22cb","newPasswordConfirm":"04885979-7446-4fa9-9528-8bdc844f22cb"}, requestBody.password) + +00:00:45.241 [XNIO-1 task-1] ESD8a3P5R0mRbzIuw6RPSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04885979-7446-4fa9-9528-8bdc844f22cb", {"password":"9fd2b1a1-b307-47ba-bc1e-6926b00bd2e6","newPassword":"04885979-7446-4fa9-9528-8bdc844f22cb","newPasswordConfirm":"04885979-7446-4fa9-9528-8bdc844f22cb"}, requestBody.newPassword) +00:00:45.246 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +00:00:45.249 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:963421fb-2274-4506-9f81-659bcba1a6b4 +00:00:45.267 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:963421fb-2274-4506-9f81-659bcba1a6b4 +00:00:45.268 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf0526c8 +00:00:45.274 [XNIO-1 task-1] 54xfbYDdSVWLm5bVDk-ozQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.274 [XNIO-1 task-1] 54xfbYDdSVWLm5bVDk-ozQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.275 [XNIO-1 task-1] 54xfbYDdSVWLm5bVDk-ozQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.286 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:963421fb-2274-4506-9f81-659bcba1a6b4 +00:00:45.291 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1311cae5 +00:00:45.310 [XNIO-1 task-1] KM5iZsQAQkmMNhEAjrl9mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.310 [XNIO-1 task-1] KM5iZsQAQkmMNhEAjrl9mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.310 [XNIO-1 task-1] KM5iZsQAQkmMNhEAjrl9mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.311 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1311cae5 +00:00:45.325 [XNIO-1 task-1] mGYbHIrxQpeRNAxLE_RdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.325 [XNIO-1 task-1] mGYbHIrxQpeRNAxLE_RdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.325 [XNIO-1 task-1] mGYbHIrxQpeRNAxLE_RdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.326 [XNIO-1 task-1] mGYbHIrxQpeRNAxLE_RdJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:45.337 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dcb452ec +00:00:45.337 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.337 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.337 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:45.337 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dcb452ec +00:00:45.338 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"04885979-7446-4fa9-9528-8bdc844f22cb","newPassword":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9","newPasswordConfirm":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9"}, {"password":"04885979-7446-4fa9-9528-8bdc844f22cb","newPassword":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9","newPasswordConfirm":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9"}, requestBody) +00:00:45.338 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"04885979-7446-4fa9-9528-8bdc844f22cb","newPassword":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9","newPasswordConfirm":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9"}, {"password":"04885979-7446-4fa9-9528-8bdc844f22cb","newPassword":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9","newPasswordConfirm":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9"}, requestBody) +00:00:45.338 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG com.networknt.schema.FormatValidator debug - validate( "3cbd7ae9-df3d-43ec-aa28-c8282c141ee9", {"password":"04885979-7446-4fa9-9528-8bdc844f22cb","newPassword":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9","newPasswordConfirm":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9"}, requestBody.newPasswordConfirm) +00:00:45.338 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG com.networknt.schema.FormatValidator debug - validate( "04885979-7446-4fa9-9528-8bdc844f22cb", {"password":"04885979-7446-4fa9-9528-8bdc844f22cb","newPassword":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9","newPasswordConfirm":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9"}, requestBody.password) +00:00:45.338 [XNIO-1 task-1] y6brH24PSHy1gTUGDYp1nw DEBUG com.networknt.schema.FormatValidator debug - validate( "3cbd7ae9-df3d-43ec-aa28-c8282c141ee9", {"password":"04885979-7446-4fa9-9528-8bdc844f22cb","newPassword":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9","newPasswordConfirm":"3cbd7ae9-df3d-43ec-aa28-c8282c141ee9"}, requestBody.newPassword) +00:00:45.433 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:bf0526c8 +00:00:45.446 [XNIO-1 task-1] Kcnk9tMJTqmX0YT_FNc4Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.447 [XNIO-1 task-1] Kcnk9tMJTqmX0YT_FNc4Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.447 [XNIO-1 task-1] Kcnk9tMJTqmX0YT_FNc4Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.448 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1311cae5 +00:00:45.463 [XNIO-1 task-1] Zcn9pPsaTp2mVvBDaus5iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dcb452ec +00:00:45.463 [XNIO-1 task-1] Zcn9pPsaTp2mVvBDaus5iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.463 [XNIO-1 task-1] Zcn9pPsaTp2mVvBDaus5iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.463 [XNIO-1 task-1] Zcn9pPsaTp2mVvBDaus5iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dcb452ec +00:00:45.505 [XNIO-1 task-1] Fjv_zNSrQrqymTlLoKqwug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1311cae5, base path is set to: null +00:00:45.505 [XNIO-1 task-1] Fjv_zNSrQrqymTlLoKqwug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.505 [XNIO-1 task-1] Fjv_zNSrQrqymTlLoKqwug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:45.507 [XNIO-1 task-1] Fjv_zNSrQrqymTlLoKqwug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1311cae5, base path is set to: null +00:00:45.507 [XNIO-1 task-1] Fjv_zNSrQrqymTlLoKqwug DEBUG com.networknt.schema.TypeValidator debug - validate( "1311cae5", "1311cae5", userId) +00:00:45.531 [XNIO-1 task-1] ldnuNV1kRKegOMULzT0icA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.531 [XNIO-1 task-1] ldnuNV1kRKegOMULzT0icA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.531 [XNIO-1 task-1] ldnuNV1kRKegOMULzT0icA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.532 [XNIO-1 task-1] ldnuNV1kRKegOMULzT0icA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.575 [XNIO-1 task-1] Gyw1ttG0SA-oo02CFrO5Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.575 [XNIO-1 task-1] Gyw1ttG0SA-oo02CFrO5Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.576 [XNIO-1 task-1] Gyw1ttG0SA-oo02CFrO5Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.576 [XNIO-1 task-1] Gyw1ttG0SA-oo02CFrO5Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.604 [XNIO-1 task-1] TbO6RZssTkWSxeqsVYD0jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.604 [XNIO-1 task-1] TbO6RZssTkWSxeqsVYD0jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.604 [XNIO-1 task-1] TbO6RZssTkWSxeqsVYD0jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.605 [XNIO-1 task-1] TbO6RZssTkWSxeqsVYD0jA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.621 [XNIO-1 task-1] oPqvFcT2QeWTCzoAC7XNvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.626 [XNIO-1 task-1] oPqvFcT2QeWTCzoAC7XNvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.626 [XNIO-1 task-1] oPqvFcT2QeWTCzoAC7XNvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.629 [XNIO-1 task-1] oPqvFcT2QeWTCzoAC7XNvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.644 [XNIO-1 task-1] mtx7SEMkRT21_6As9f3FPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.644 [XNIO-1 task-1] mtx7SEMkRT21_6As9f3FPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.644 [XNIO-1 task-1] mtx7SEMkRT21_6As9f3FPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.645 [XNIO-1 task-1] mtx7SEMkRT21_6As9f3FPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.663 [XNIO-1 task-1] lHnEKGBIRj-hRsBn0QZqgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.663 [XNIO-1 task-1] lHnEKGBIRj-hRsBn0QZqgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.663 [XNIO-1 task-1] lHnEKGBIRj-hRsBn0QZqgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.664 [XNIO-1 task-1] lHnEKGBIRj-hRsBn0QZqgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.714 [XNIO-1 task-1] LUK1U9cZQBmmFleuwdi2GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.715 [XNIO-1 task-1] LUK1U9cZQBmmFleuwdi2GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.715 [XNIO-1 task-1] LUK1U9cZQBmmFleuwdi2GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.716 [XNIO-1 task-1] LUK1U9cZQBmmFleuwdi2GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.722 [XNIO-1 task-1] M-lLzDsvR6uSJGqrPi_GCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.723 [XNIO-1 task-1] M-lLzDsvR6uSJGqrPi_GCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.723 [XNIO-1 task-1] M-lLzDsvR6uSJGqrPi_GCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.723 [XNIO-1 task-1] M-lLzDsvR6uSJGqrPi_GCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.740 [XNIO-1 task-1] VAcNvWpxQBqxn6DqXh4FbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.742 [XNIO-1 task-1] VAcNvWpxQBqxn6DqXh4FbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.743 [XNIO-1 task-1] VAcNvWpxQBqxn6DqXh4FbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.743 [XNIO-1 task-1] VAcNvWpxQBqxn6DqXh4FbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.758 [XNIO-1 task-1] AESmWZQMQEGdannDVnSNlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.758 [XNIO-1 task-1] AESmWZQMQEGdannDVnSNlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.759 [XNIO-1 task-1] AESmWZQMQEGdannDVnSNlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.759 [XNIO-1 task-1] AESmWZQMQEGdannDVnSNlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.772 [XNIO-1 task-1] w5sbQSHATsaurPd8XTUZhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.772 [XNIO-1 task-1] w5sbQSHATsaurPd8XTUZhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.773 [XNIO-1 task-1] w5sbQSHATsaurPd8XTUZhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.773 [XNIO-1 task-1] w5sbQSHATsaurPd8XTUZhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.785 [XNIO-1 task-1] PqsAH1BCRjiEx3P8JTLNIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.785 [XNIO-1 task-1] PqsAH1BCRjiEx3P8JTLNIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.786 [XNIO-1 task-1] PqsAH1BCRjiEx3P8JTLNIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.786 [XNIO-1 task-1] PqsAH1BCRjiEx3P8JTLNIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:45.802 [XNIO-1 task-1] jv44zU2DRfWXiT91xyN5Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.802 [XNIO-1 task-1] jv44zU2DRfWXiT91xyN5Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.802 [XNIO-1 task-1] jv44zU2DRfWXiT91xyN5Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.836 [XNIO-1 task-1] fUBOZ--tQsGao70dWuFbbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7dbe75d4, base path is set to: null +00:00:45.836 [XNIO-1 task-1] fUBOZ--tQsGao70dWuFbbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.836 [XNIO-1 task-1] fUBOZ--tQsGao70dWuFbbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:45.837 [XNIO-1 task-1] fUBOZ--tQsGao70dWuFbbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7dbe75d4, base path is set to: null +00:00:45.837 [XNIO-1 task-1] fUBOZ--tQsGao70dWuFbbA DEBUG com.networknt.schema.TypeValidator debug - validate( "7dbe75d4", "7dbe75d4", userId) +00:00:45.839 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:04c0cee7-85dd-463f-a77f-7b42e5608fd3 +00:00:45.844 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:45.845 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.845 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.845 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:45.845 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:45.846 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"aabedba1-3840-49de-bf24-7f26b1803a71","newPassword":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPasswordConfirm":"a7b4b967-b750-4013-9ca5-2853b1a9bec3"}, {"password":"aabedba1-3840-49de-bf24-7f26b1803a71","newPassword":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPasswordConfirm":"a7b4b967-b750-4013-9ca5-2853b1a9bec3"}, requestBody) +00:00:45.846 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"aabedba1-3840-49de-bf24-7f26b1803a71","newPassword":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPasswordConfirm":"a7b4b967-b750-4013-9ca5-2853b1a9bec3"}, {"password":"aabedba1-3840-49de-bf24-7f26b1803a71","newPassword":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPasswordConfirm":"a7b4b967-b750-4013-9ca5-2853b1a9bec3"}, requestBody) +00:00:45.846 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a7b4b967-b750-4013-9ca5-2853b1a9bec3", {"password":"aabedba1-3840-49de-bf24-7f26b1803a71","newPassword":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPasswordConfirm":"a7b4b967-b750-4013-9ca5-2853b1a9bec3"}, requestBody.newPasswordConfirm) +00:00:45.846 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "aabedba1-3840-49de-bf24-7f26b1803a71", {"password":"aabedba1-3840-49de-bf24-7f26b1803a71","newPassword":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPasswordConfirm":"a7b4b967-b750-4013-9ca5-2853b1a9bec3"}, requestBody.password) +00:00:45.848 [XNIO-1 task-1] hOKTF9k4QVSFJJqAmlj0cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a7b4b967-b750-4013-9ca5-2853b1a9bec3", {"password":"aabedba1-3840-49de-bf24-7f26b1803a71","newPassword":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPasswordConfirm":"a7b4b967-b750-4013-9ca5-2853b1a9bec3"}, requestBody.newPassword) +00:00:45.883 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:45.883 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:45.883 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:45.884 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:45.884 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:45.885 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPassword":"6c1eeb92-8373-4689-b358-e19451d6be29","newPasswordConfirm":"6c1eeb92-8373-4689-b358-e19451d6be29"}, {"password":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPassword":"6c1eeb92-8373-4689-b358-e19451d6be29","newPasswordConfirm":"6c1eeb92-8373-4689-b358-e19451d6be29"}, requestBody) +00:00:45.885 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPassword":"6c1eeb92-8373-4689-b358-e19451d6be29","newPasswordConfirm":"6c1eeb92-8373-4689-b358-e19451d6be29"}, {"password":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPassword":"6c1eeb92-8373-4689-b358-e19451d6be29","newPasswordConfirm":"6c1eeb92-8373-4689-b358-e19451d6be29"}, requestBody) +00:00:45.885 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG com.networknt.schema.FormatValidator debug - validate( "6c1eeb92-8373-4689-b358-e19451d6be29", {"password":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPassword":"6c1eeb92-8373-4689-b358-e19451d6be29","newPasswordConfirm":"6c1eeb92-8373-4689-b358-e19451d6be29"}, requestBody.newPasswordConfirm) +00:00:45.885 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG com.networknt.schema.FormatValidator debug - validate( "a7b4b967-b750-4013-9ca5-2853b1a9bec3", {"password":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPassword":"6c1eeb92-8373-4689-b358-e19451d6be29","newPasswordConfirm":"6c1eeb92-8373-4689-b358-e19451d6be29"}, requestBody.password) +00:00:45.886 [XNIO-1 task-1] b4WqVvE0SsyBrPffkWfJyg DEBUG com.networknt.schema.FormatValidator debug - validate( "6c1eeb92-8373-4689-b358-e19451d6be29", {"password":"a7b4b967-b750-4013-9ca5-2853b1a9bec3","newPassword":"6c1eeb92-8373-4689-b358-e19451d6be29","newPasswordConfirm":"6c1eeb92-8373-4689-b358-e19451d6be29"}, requestBody.newPassword) +00:00:45.896 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:62464eec +00:00:45.932 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:62464eec +00:00:45.956 [XNIO-1 task-1] fFpdI1G_TwquBVqasUIBpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.956 [XNIO-1 task-1] fFpdI1G_TwquBVqasUIBpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:45.956 [XNIO-1 task-1] fFpdI1G_TwquBVqasUIBpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:45.997 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fb0ece22-5f0b-437a-b052-76f6afa221f0 +00:00:46.003 [XNIO-1 task-1] VM5YmboLSFyvI7uCwdZxhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.004 [XNIO-1 task-1] VM5YmboLSFyvI7uCwdZxhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.004 [XNIO-1 task-1] VM5YmboLSFyvI7uCwdZxhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.029 [XNIO-1 task-1] CRI1Iv9uS6qcWzY6b4LGrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d32cd748 +00:00:46.030 [XNIO-1 task-1] CRI1Iv9uS6qcWzY6b4LGrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.030 [XNIO-1 task-1] CRI1Iv9uS6qcWzY6b4LGrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.030 [XNIO-1 task-1] CRI1Iv9uS6qcWzY6b4LGrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d32cd748 +00:00:46.040 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7dbe75d4, base path is set to: null +00:00:46.040 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.040 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.041 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:46.041 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7dbe75d4, base path is set to: null +00:00:46.041 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7dbe75d4", "7dbe75d4", userId) +00:00:46.042 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6c1eeb92-8373-4689-b358-e19451d6be29","newPassword":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPasswordConfirm":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a"}, {"password":"6c1eeb92-8373-4689-b358-e19451d6be29","newPassword":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPasswordConfirm":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a"}, requestBody) +00:00:46.042 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f34f16e9-5a0f-4791-b0b3-9cbfb02f675a", {"password":"6c1eeb92-8373-4689-b358-e19451d6be29","newPassword":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPasswordConfirm":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a"}, requestBody.newPasswordConfirm) +00:00:46.042 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6c1eeb92-8373-4689-b358-e19451d6be29", {"password":"6c1eeb92-8373-4689-b358-e19451d6be29","newPassword":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPasswordConfirm":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a"}, requestBody.password) +00:00:46.042 [XNIO-1 task-1] fZ0diCEwRSKtMSEbxP7X0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f34f16e9-5a0f-4791-b0b3-9cbfb02f675a", {"password":"6c1eeb92-8373-4689-b358-e19451d6be29","newPassword":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPasswordConfirm":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a"}, requestBody.newPassword) +00:00:46.076 [XNIO-1 task-1] b3C142vbTIy9qCQBZ06KZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.076 [XNIO-1 task-1] b3C142vbTIy9qCQBZ06KZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.077 [XNIO-1 task-1] b3C142vbTIy9qCQBZ06KZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.077 [XNIO-1 task-1] b3C142vbTIy9qCQBZ06KZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.105 [XNIO-1 task-1] CItCcTehRdS16P-grwaNeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.105 [XNIO-1 task-1] CItCcTehRdS16P-grwaNeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.106 [XNIO-1 task-1] CItCcTehRdS16P-grwaNeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.137 [XNIO-1 task-1] rn-wSuekTKuhHcFG8aeSow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d32cd748, base path is set to: null +00:00:46.137 [XNIO-1 task-1] rn-wSuekTKuhHcFG8aeSow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.137 [XNIO-1 task-1] rn-wSuekTKuhHcFG8aeSow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.137 [XNIO-1 task-1] rn-wSuekTKuhHcFG8aeSow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d32cd748, base path is set to: null +00:00:46.138 [XNIO-1 task-1] rn-wSuekTKuhHcFG8aeSow DEBUG com.networknt.schema.TypeValidator debug - validate( "d32cd748", "d32cd748", userId) +00:00:46.154 [XNIO-1 task-1] TrWYCj1WQI6UP_Rno77gOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7dbe75d4 +00:00:46.154 [XNIO-1 task-1] TrWYCj1WQI6UP_Rno77gOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.154 [XNIO-1 task-1] TrWYCj1WQI6UP_Rno77gOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.155 [XNIO-1 task-1] TrWYCj1WQI6UP_Rno77gOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7dbe75d4 +00:00:46.160 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4f1d3b11 +00:00:46.163 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4f1d3b11 +00:00:46.164 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:46.164 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.165 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.165 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:46.165 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:46.166 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPassword":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPasswordConfirm":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7"}, {"password":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPassword":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPasswordConfirm":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7"}, requestBody) +00:00:46.166 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPassword":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPasswordConfirm":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7"}, {"password":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPassword":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPasswordConfirm":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7"}, requestBody) +00:00:46.166 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "94ba058e-5ee8-42a3-9339-6f7f52bcf8c7", {"password":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPassword":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPasswordConfirm":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7"}, requestBody.newPasswordConfirm) +00:00:46.166 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "f34f16e9-5a0f-4791-b0b3-9cbfb02f675a", {"password":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPassword":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPasswordConfirm":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7"}, requestBody.password) +00:00:46.166 [XNIO-1 task-1] WAfc0SEaRX6D8EzrRSbLZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "94ba058e-5ee8-42a3-9339-6f7f52bcf8c7", {"password":"f34f16e9-5a0f-4791-b0b3-9cbfb02f675a","newPassword":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPasswordConfirm":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7"}, requestBody.newPassword) +00:00:46.208 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:46.208 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.208 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.208 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:46.208 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7dbe75d4 +00:00:46.209 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPassword":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a","newPasswordConfirm":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a"}, {"password":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPassword":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a","newPasswordConfirm":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a"}, requestBody) +00:00:46.209 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPassword":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a","newPasswordConfirm":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a"}, {"password":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPassword":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a","newPasswordConfirm":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a"}, requestBody) +00:00:46.209 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG com.networknt.schema.FormatValidator debug - validate( "fba66e87-c26e-4a87-89b0-ca57d5e8a42a", {"password":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPassword":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a","newPasswordConfirm":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a"}, requestBody.newPasswordConfirm) +00:00:46.209 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG com.networknt.schema.FormatValidator debug - validate( "94ba058e-5ee8-42a3-9339-6f7f52bcf8c7", {"password":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPassword":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a","newPasswordConfirm":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a"}, requestBody.password) +00:00:46.210 [XNIO-1 task-1] j-yPsKFOSwyOmQeYerOKdw DEBUG com.networknt.schema.FormatValidator debug - validate( "fba66e87-c26e-4a87-89b0-ca57d5e8a42a", {"password":"94ba058e-5ee8-42a3-9339-6f7f52bcf8c7","newPassword":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a","newPasswordConfirm":"fba66e87-c26e-4a87-89b0-ca57d5e8a42a"}, requestBody.newPassword) +00:00:46.226 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:01e5fce0-66d1-49a0-a00b-0b06c0f07cd1 +00:00:46.243 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b85359ba +00:00:46.253 [XNIO-1 task-1] 7MH0e5y4RAyIOjbVUteXlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7dbe75d4, base path is set to: null +00:00:46.253 [XNIO-1 task-1] 7MH0e5y4RAyIOjbVUteXlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.253 [XNIO-1 task-1] 7MH0e5y4RAyIOjbVUteXlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.254 [XNIO-1 task-1] 7MH0e5y4RAyIOjbVUteXlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7dbe75d4, base path is set to: null +00:00:46.254 [XNIO-1 task-1] 7MH0e5y4RAyIOjbVUteXlA DEBUG com.networknt.schema.TypeValidator debug - validate( "7dbe75d4", "7dbe75d4", userId) +00:00:46.267 [XNIO-1 task-1] ZtlcYAA3QkG_dNrWY8Ovxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.268 [XNIO-1 task-1] ZtlcYAA3QkG_dNrWY8Ovxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.268 [XNIO-1 task-1] ZtlcYAA3QkG_dNrWY8Ovxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.316 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a7785f4 +00:00:46.316 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.316 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.316 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:46.317 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a7785f4 +00:00:46.317 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"06e7a425-2ad7-4646-a540-6b9074f6cbb3","newPassword":"da18596e-50b2-4572-814e-f7cac526db59","newPasswordConfirm":"da18596e-50b2-4572-814e-f7cac526db59"}, {"password":"06e7a425-2ad7-4646-a540-6b9074f6cbb3","newPassword":"da18596e-50b2-4572-814e-f7cac526db59","newPasswordConfirm":"da18596e-50b2-4572-814e-f7cac526db59"}, requestBody) +00:00:46.318 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"06e7a425-2ad7-4646-a540-6b9074f6cbb3","newPassword":"da18596e-50b2-4572-814e-f7cac526db59","newPasswordConfirm":"da18596e-50b2-4572-814e-f7cac526db59"}, {"password":"06e7a425-2ad7-4646-a540-6b9074f6cbb3","newPassword":"da18596e-50b2-4572-814e-f7cac526db59","newPasswordConfirm":"da18596e-50b2-4572-814e-f7cac526db59"}, requestBody) +00:00:46.318 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG com.networknt.schema.FormatValidator debug - validate( "da18596e-50b2-4572-814e-f7cac526db59", {"password":"06e7a425-2ad7-4646-a540-6b9074f6cbb3","newPassword":"da18596e-50b2-4572-814e-f7cac526db59","newPasswordConfirm":"da18596e-50b2-4572-814e-f7cac526db59"}, requestBody.newPasswordConfirm) +00:00:46.318 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG com.networknt.schema.FormatValidator debug - validate( "06e7a425-2ad7-4646-a540-6b9074f6cbb3", {"password":"06e7a425-2ad7-4646-a540-6b9074f6cbb3","newPassword":"da18596e-50b2-4572-814e-f7cac526db59","newPasswordConfirm":"da18596e-50b2-4572-814e-f7cac526db59"}, requestBody.password) +00:00:46.318 [XNIO-1 task-1] V_CYEZYMRSeYTy0IZ2kv1g DEBUG com.networknt.schema.FormatValidator debug - validate( "da18596e-50b2-4572-814e-f7cac526db59", {"password":"06e7a425-2ad7-4646-a540-6b9074f6cbb3","newPassword":"da18596e-50b2-4572-814e-f7cac526db59","newPasswordConfirm":"da18596e-50b2-4572-814e-f7cac526db59"}, requestBody.newPassword) +00:00:46.346 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3db09f23 +00:00:46.353 [XNIO-1 task-1] cQ27zTDeQb-oXAH-RrKs_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a7785f4 +00:00:46.353 [XNIO-1 task-1] cQ27zTDeQb-oXAH-RrKs_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.353 [XNIO-1 task-1] cQ27zTDeQb-oXAH-RrKs_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.353 [XNIO-1 task-1] cQ27zTDeQb-oXAH-RrKs_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a7785f4 +00:00:46.358 [XNIO-1 task-1] szBNIv0LTxKU8VNVS8TT0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a7785f4, base path is set to: null +00:00:46.358 [XNIO-1 task-1] szBNIv0LTxKU8VNVS8TT0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.358 [XNIO-1 task-1] szBNIv0LTxKU8VNVS8TT0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.358 [XNIO-1 task-1] szBNIv0LTxKU8VNVS8TT0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3a7785f4, base path is set to: null +00:00:46.359 [XNIO-1 task-1] szBNIv0LTxKU8VNVS8TT0w DEBUG com.networknt.schema.TypeValidator debug - validate( "3a7785f4", "3a7785f4", userId) +00:00:46.364 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a7785f4 +00:00:46.364 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.364 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.364 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:46.364 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3a7785f4 +00:00:46.365 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"da18596e-50b2-4572-814e-f7cac526db59","newPassword":"f054ac46-7a81-42b2-b0e4-8a665133388d","newPasswordConfirm":"f054ac46-7a81-42b2-b0e4-8a665133388d"}, {"password":"da18596e-50b2-4572-814e-f7cac526db59","newPassword":"f054ac46-7a81-42b2-b0e4-8a665133388d","newPasswordConfirm":"f054ac46-7a81-42b2-b0e4-8a665133388d"}, requestBody) +00:00:46.365 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"da18596e-50b2-4572-814e-f7cac526db59","newPassword":"f054ac46-7a81-42b2-b0e4-8a665133388d","newPasswordConfirm":"f054ac46-7a81-42b2-b0e4-8a665133388d"}, {"password":"da18596e-50b2-4572-814e-f7cac526db59","newPassword":"f054ac46-7a81-42b2-b0e4-8a665133388d","newPasswordConfirm":"f054ac46-7a81-42b2-b0e4-8a665133388d"}, requestBody) +00:00:46.365 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG com.networknt.schema.FormatValidator debug - validate( "f054ac46-7a81-42b2-b0e4-8a665133388d", {"password":"da18596e-50b2-4572-814e-f7cac526db59","newPassword":"f054ac46-7a81-42b2-b0e4-8a665133388d","newPasswordConfirm":"f054ac46-7a81-42b2-b0e4-8a665133388d"}, requestBody.newPasswordConfirm) +00:00:46.365 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG com.networknt.schema.FormatValidator debug - validate( "da18596e-50b2-4572-814e-f7cac526db59", {"password":"da18596e-50b2-4572-814e-f7cac526db59","newPassword":"f054ac46-7a81-42b2-b0e4-8a665133388d","newPasswordConfirm":"f054ac46-7a81-42b2-b0e4-8a665133388d"}, requestBody.password) +00:00:46.365 [XNIO-1 task-1] vUttFX7WSEqtEirqinMA2g DEBUG com.networknt.schema.FormatValidator debug - validate( "f054ac46-7a81-42b2-b0e4-8a665133388d", {"password":"da18596e-50b2-4572-814e-f7cac526db59","newPassword":"f054ac46-7a81-42b2-b0e4-8a665133388d","newPasswordConfirm":"f054ac46-7a81-42b2-b0e4-8a665133388d"}, requestBody.newPassword) +00:00:46.395 [XNIO-1 task-1] 7Da_ZKDuTh2T-YsUpXnvTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a7785f4 +00:00:46.396 [XNIO-1 task-1] 7Da_ZKDuTh2T-YsUpXnvTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.396 [XNIO-1 task-1] 7Da_ZKDuTh2T-YsUpXnvTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.396 [XNIO-1 task-1] 7Da_ZKDuTh2T-YsUpXnvTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3a7785f4 +00:00:46.418 [XNIO-1 task-1] -psHmdNMTRywhJYkYwjFsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.418 [XNIO-1 task-1] -psHmdNMTRywhJYkYwjFsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.419 [XNIO-1 task-1] -psHmdNMTRywhJYkYwjFsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.419 [XNIO-1 task-1] -psHmdNMTRywhJYkYwjFsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.432 [XNIO-1 task-1] kXbfxJDDTam6bxbxoMjCiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.432 [XNIO-1 task-1] kXbfxJDDTam6bxbxoMjCiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.432 [XNIO-1 task-1] kXbfxJDDTam6bxbxoMjCiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.463 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:62464eec +00:00:46.463 [XNIO-1 task-1] BrPOwmsSRCW__ZMkp5KEmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0d30e043, base path is set to: null +00:00:46.463 [XNIO-1 task-1] BrPOwmsSRCW__ZMkp5KEmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.463 [XNIO-1 task-1] BrPOwmsSRCW__ZMkp5KEmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.463 [XNIO-1 task-1] BrPOwmsSRCW__ZMkp5KEmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0d30e043, base path is set to: null +00:00:46.464 [XNIO-1 task-1] BrPOwmsSRCW__ZMkp5KEmA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d30e043", "0d30e043", userId) +00:00:46.468 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:752e3cce-a89d-4baf-a466-762550d69973 +00:00:46.488 [XNIO-1 task-1] iETGq_CuR3W2mSh2HqhqXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.489 [XNIO-1 task-1] iETGq_CuR3W2mSh2HqhqXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.489 [XNIO-1 task-1] iETGq_CuR3W2mSh2HqhqXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.536 [XNIO-1 task-1] _a_bJPg1SJeyl8HS7JihVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/98d03acc, base path is set to: null +00:00:46.537 [XNIO-1 task-1] _a_bJPg1SJeyl8HS7JihVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.537 [XNIO-1 task-1] _a_bJPg1SJeyl8HS7JihVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.537 [XNIO-1 task-1] _a_bJPg1SJeyl8HS7JihVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/98d03acc, base path is set to: null +00:00:46.537 [XNIO-1 task-1] _a_bJPg1SJeyl8HS7JihVA DEBUG com.networknt.schema.TypeValidator debug - validate( "98d03acc", "98d03acc", userId) +00:00:46.558 [XNIO-1 task-1] 5NdaoMHMR_GIP4y38k1IyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.558 [XNIO-1 task-1] 5NdaoMHMR_GIP4y38k1IyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.558 [XNIO-1 task-1] 5NdaoMHMR_GIP4y38k1IyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.604 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c547064f +00:00:46.604 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.604 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.604 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:46.605 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c547064f +00:00:46.606 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"08916cf6-b196-4060-86b1-fa3ddf3ed3c0","newPassword":"2f236012-3621-4af5-935c-d38b7c31bf70","newPasswordConfirm":"2f236012-3621-4af5-935c-d38b7c31bf70"}, {"password":"08916cf6-b196-4060-86b1-fa3ddf3ed3c0","newPassword":"2f236012-3621-4af5-935c-d38b7c31bf70","newPasswordConfirm":"2f236012-3621-4af5-935c-d38b7c31bf70"}, requestBody) +00:00:46.606 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"08916cf6-b196-4060-86b1-fa3ddf3ed3c0","newPassword":"2f236012-3621-4af5-935c-d38b7c31bf70","newPasswordConfirm":"2f236012-3621-4af5-935c-d38b7c31bf70"}, {"password":"08916cf6-b196-4060-86b1-fa3ddf3ed3c0","newPassword":"2f236012-3621-4af5-935c-d38b7c31bf70","newPasswordConfirm":"2f236012-3621-4af5-935c-d38b7c31bf70"}, requestBody) +00:00:46.606 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG com.networknt.schema.FormatValidator debug - validate( "2f236012-3621-4af5-935c-d38b7c31bf70", {"password":"08916cf6-b196-4060-86b1-fa3ddf3ed3c0","newPassword":"2f236012-3621-4af5-935c-d38b7c31bf70","newPasswordConfirm":"2f236012-3621-4af5-935c-d38b7c31bf70"}, requestBody.newPasswordConfirm) +00:00:46.606 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG com.networknt.schema.FormatValidator debug - validate( "08916cf6-b196-4060-86b1-fa3ddf3ed3c0", {"password":"08916cf6-b196-4060-86b1-fa3ddf3ed3c0","newPassword":"2f236012-3621-4af5-935c-d38b7c31bf70","newPasswordConfirm":"2f236012-3621-4af5-935c-d38b7c31bf70"}, requestBody.password) +00:00:46.606 [XNIO-1 task-1] 2mlJIs06Ss2snw7_N89exg DEBUG com.networknt.schema.FormatValidator debug - validate( "2f236012-3621-4af5-935c-d38b7c31bf70", {"password":"08916cf6-b196-4060-86b1-fa3ddf3ed3c0","newPassword":"2f236012-3621-4af5-935c-d38b7c31bf70","newPasswordConfirm":"2f236012-3621-4af5-935c-d38b7c31bf70"}, requestBody.newPassword) +00:00:46.722 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c547064f +00:00:46.722 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.722 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.722 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:46.723 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c547064f +00:00:46.725 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2f236012-3621-4af5-935c-d38b7c31bf70","newPassword":"3072feb1-5d99-41c6-9f26-c83e49a1e669","newPasswordConfirm":"3072feb1-5d99-41c6-9f26-c83e49a1e669"}, {"password":"2f236012-3621-4af5-935c-d38b7c31bf70","newPassword":"3072feb1-5d99-41c6-9f26-c83e49a1e669","newPasswordConfirm":"3072feb1-5d99-41c6-9f26-c83e49a1e669"}, requestBody) +00:00:46.725 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2f236012-3621-4af5-935c-d38b7c31bf70","newPassword":"3072feb1-5d99-41c6-9f26-c83e49a1e669","newPasswordConfirm":"3072feb1-5d99-41c6-9f26-c83e49a1e669"}, {"password":"2f236012-3621-4af5-935c-d38b7c31bf70","newPassword":"3072feb1-5d99-41c6-9f26-c83e49a1e669","newPasswordConfirm":"3072feb1-5d99-41c6-9f26-c83e49a1e669"}, requestBody) +00:00:46.725 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "3072feb1-5d99-41c6-9f26-c83e49a1e669", {"password":"2f236012-3621-4af5-935c-d38b7c31bf70","newPassword":"3072feb1-5d99-41c6-9f26-c83e49a1e669","newPasswordConfirm":"3072feb1-5d99-41c6-9f26-c83e49a1e669"}, requestBody.newPasswordConfirm) +00:00:46.725 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "2f236012-3621-4af5-935c-d38b7c31bf70", {"password":"2f236012-3621-4af5-935c-d38b7c31bf70","newPassword":"3072feb1-5d99-41c6-9f26-c83e49a1e669","newPasswordConfirm":"3072feb1-5d99-41c6-9f26-c83e49a1e669"}, requestBody.password) +00:00:46.725 [XNIO-1 task-1] 0x-MKNgETFyA2P6zxuyLFQ DEBUG com.networknt.schema.FormatValidator debug - validate( "3072feb1-5d99-41c6-9f26-c83e49a1e669", {"password":"2f236012-3621-4af5-935c-d38b7c31bf70","newPassword":"3072feb1-5d99-41c6-9f26-c83e49a1e669","newPasswordConfirm":"3072feb1-5d99-41c6-9f26-c83e49a1e669"}, requestBody.newPassword) +00:00:46.754 [XNIO-1 task-1] FBOKyKrPRb6jhiesVTuh6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c547064f +00:00:46.755 [XNIO-1 task-1] FBOKyKrPRb6jhiesVTuh6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.755 [XNIO-1 task-1] FBOKyKrPRb6jhiesVTuh6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.755 [XNIO-1 task-1] FBOKyKrPRb6jhiesVTuh6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c547064f +00:00:46.760 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f654b26a-e7eb-40f0-b4ef-119b80f6a984 +00:00:46.764 [XNIO-1 task-1] k6Rq9edcS-K71siyLIsUjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c547064f, base path is set to: null +00:00:46.765 [XNIO-1 task-1] k6Rq9edcS-K71siyLIsUjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.765 [XNIO-1 task-1] k6Rq9edcS-K71siyLIsUjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.765 [XNIO-1 task-1] k6Rq9edcS-K71siyLIsUjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c547064f, base path is set to: null +00:00:46.766 [XNIO-1 task-1] k6Rq9edcS-K71siyLIsUjA DEBUG com.networknt.schema.TypeValidator debug - validate( "c547064f", "c547064f", userId) +00:00:46.774 [XNIO-1 task-1] ByaJXAyWQc-uU3KFqeBG-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c547064f, base path is set to: null +00:00:46.774 [XNIO-1 task-1] ByaJXAyWQc-uU3KFqeBG-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.774 [XNIO-1 task-1] ByaJXAyWQc-uU3KFqeBG-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.775 [XNIO-1 task-1] ByaJXAyWQc-uU3KFqeBG-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c547064f, base path is set to: null +00:00:46.775 [XNIO-1 task-1] ByaJXAyWQc-uU3KFqeBG-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c547064f", "c547064f", userId) +00:00:46.802 [XNIO-1 task-1] yK61CjsSRjafDm1obC0CUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.802 [XNIO-1 task-1] yK61CjsSRjafDm1obC0CUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.802 [XNIO-1 task-1] yK61CjsSRjafDm1obC0CUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.803 [XNIO-1 task-1] yK61CjsSRjafDm1obC0CUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.841 [XNIO-1 task-1] a0Oc0WG3QtWg0qddnNirXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.842 [XNIO-1 task-1] a0Oc0WG3QtWg0qddnNirXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.842 [XNIO-1 task-1] a0Oc0WG3QtWg0qddnNirXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.842 [XNIO-1 task-1] a0Oc0WG3QtWg0qddnNirXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:46.855 [XNIO-1 task-1] EMhdh3ZcTE-vsu5E4AbM8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.855 [XNIO-1 task-1] EMhdh3ZcTE-vsu5E4AbM8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.855 [XNIO-1 task-1] EMhdh3ZcTE-vsu5E4AbM8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:46.883 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9ed55f8a, base path is set to: null +00:00:46.883 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:46.883 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:46.883 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:46.886 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9ed55f8a, base path is set to: null +00:00:46.887 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG com.networknt.schema.TypeValidator debug - validate( "9ed55f8a", "9ed55f8a", userId) +00:00:46.888 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"9b9b007e-a7c8-4eda-bd64-0dd57ece72f0","newPassword":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPasswordConfirm":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76"}, {"password":"9b9b007e-a7c8-4eda-bd64-0dd57ece72f0","newPassword":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPasswordConfirm":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76"}, requestBody) +00:00:46.888 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG com.networknt.schema.TypeValidator debug - validate( "077ddf0f-ce4a-434f-8189-c3e0ffbdbf76", {"password":"9b9b007e-a7c8-4eda-bd64-0dd57ece72f0","newPassword":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPasswordConfirm":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76"}, requestBody.newPasswordConfirm) +00:00:46.888 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG com.networknt.schema.TypeValidator debug - validate( "9b9b007e-a7c8-4eda-bd64-0dd57ece72f0", {"password":"9b9b007e-a7c8-4eda-bd64-0dd57ece72f0","newPassword":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPasswordConfirm":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76"}, requestBody.password) +00:00:46.888 [XNIO-1 task-1] -LL-2xuvT4eb6gP_263XLw DEBUG com.networknt.schema.TypeValidator debug - validate( "077ddf0f-ce4a-434f-8189-c3e0ffbdbf76", {"password":"9b9b007e-a7c8-4eda-bd64-0dd57ece72f0","newPassword":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPasswordConfirm":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76"}, requestBody.newPassword) +00:00:46.915 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:752e3cce-a89d-4baf-a466-762550d69973 +00:00:46.924 [XNIO-1 task-1] zlH6_IDZTGG0KRxT1RQEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ed55f8a +00:00:46.924 [XNIO-1 task-1] zlH6_IDZTGG0KRxT1RQEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.924 [XNIO-1 task-1] zlH6_IDZTGG0KRxT1RQEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.924 [XNIO-1 task-1] zlH6_IDZTGG0KRxT1RQEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ed55f8a +00:00:46.928 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:18331000 +00:00:46.951 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9ed55f8a +00:00:46.951 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.951 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:46.951 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:46.952 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9ed55f8a +00:00:46.952 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPassword":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPasswordConfirm":"86e0cd10-4cc4-4f06-bffe-49a05583f283"}, {"password":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPassword":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPasswordConfirm":"86e0cd10-4cc4-4f06-bffe-49a05583f283"}, requestBody) +00:00:46.954 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPassword":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPasswordConfirm":"86e0cd10-4cc4-4f06-bffe-49a05583f283"}, {"password":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPassword":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPasswordConfirm":"86e0cd10-4cc4-4f06-bffe-49a05583f283"}, requestBody) +00:00:46.954 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG com.networknt.schema.FormatValidator debug - validate( "86e0cd10-4cc4-4f06-bffe-49a05583f283", {"password":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPassword":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPasswordConfirm":"86e0cd10-4cc4-4f06-bffe-49a05583f283"}, requestBody.newPasswordConfirm) +00:00:46.954 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG com.networknt.schema.FormatValidator debug - validate( "077ddf0f-ce4a-434f-8189-c3e0ffbdbf76", {"password":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPassword":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPasswordConfirm":"86e0cd10-4cc4-4f06-bffe-49a05583f283"}, requestBody.password) +00:00:46.954 [XNIO-1 task-1] Y8CD6tPsQTaRcf9dna60kQ DEBUG com.networknt.schema.FormatValidator debug - validate( "86e0cd10-4cc4-4f06-bffe-49a05583f283", {"password":"077ddf0f-ce4a-434f-8189-c3e0ffbdbf76","newPassword":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPasswordConfirm":"86e0cd10-4cc4-4f06-bffe-49a05583f283"}, requestBody.newPassword) +00:00:46.956 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:18331000 +00:00:46.983 [XNIO-1 task-1] 9bZyxg51TrmtxuGV2CzvbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.984 [XNIO-1 task-1] 9bZyxg51TrmtxuGV2CzvbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.984 [XNIO-1 task-1] 9bZyxg51TrmtxuGV2CzvbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.985 [XNIO-1 task-1] 9bZyxg51TrmtxuGV2CzvbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:46.992 [XNIO-1 task-1] RXAJuIGrRHOf4EK7ec3Yyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.992 [XNIO-1 task-1] RXAJuIGrRHOf4EK7ec3Yyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:46.992 [XNIO-1 task-1] RXAJuIGrRHOf4EK7ec3Yyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.024 [XNIO-1 task-1] 6-tiWruvTjWkjCXhb9QAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.024 [XNIO-1 task-1] 6-tiWruvTjWkjCXhb9QAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.024 [XNIO-1 task-1] 6-tiWruvTjWkjCXhb9QAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.025 [XNIO-1 task-1] 6-tiWruvTjWkjCXhb9QAqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.032 [XNIO-1 task-1] V45fGrW4TROEoz_2AwsQ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.032 [XNIO-1 task-1] V45fGrW4TROEoz_2AwsQ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.032 [XNIO-1 task-1] V45fGrW4TROEoz_2AwsQ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.051 [XNIO-1 task-1] ktKWhd5TTtyTHOZRPRly1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.051 [XNIO-1 task-1] ktKWhd5TTtyTHOZRPRly1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.051 [XNIO-1 task-1] ktKWhd5TTtyTHOZRPRly1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.052 [XNIO-1 task-1] ktKWhd5TTtyTHOZRPRly1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.080 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9ed55f8a +00:00:47.080 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.080 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.080 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:47.081 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9ed55f8a +00:00:47.083 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPassword":"1be990e7-ea18-4f1e-b558-498a8c941baa","newPasswordConfirm":"1be990e7-ea18-4f1e-b558-498a8c941baa"}, {"password":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPassword":"1be990e7-ea18-4f1e-b558-498a8c941baa","newPasswordConfirm":"1be990e7-ea18-4f1e-b558-498a8c941baa"}, requestBody) +00:00:47.083 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPassword":"1be990e7-ea18-4f1e-b558-498a8c941baa","newPasswordConfirm":"1be990e7-ea18-4f1e-b558-498a8c941baa"}, {"password":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPassword":"1be990e7-ea18-4f1e-b558-498a8c941baa","newPasswordConfirm":"1be990e7-ea18-4f1e-b558-498a8c941baa"}, requestBody) +00:00:47.083 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1be990e7-ea18-4f1e-b558-498a8c941baa", {"password":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPassword":"1be990e7-ea18-4f1e-b558-498a8c941baa","newPasswordConfirm":"1be990e7-ea18-4f1e-b558-498a8c941baa"}, requestBody.newPasswordConfirm) +00:00:47.083 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG com.networknt.schema.FormatValidator debug - validate( "86e0cd10-4cc4-4f06-bffe-49a05583f283", {"password":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPassword":"1be990e7-ea18-4f1e-b558-498a8c941baa","newPasswordConfirm":"1be990e7-ea18-4f1e-b558-498a8c941baa"}, requestBody.password) +00:00:47.083 [XNIO-1 task-1] qMgup3_ZRSiI_Fv2PC1eFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1be990e7-ea18-4f1e-b558-498a8c941baa", {"password":"86e0cd10-4cc4-4f06-bffe-49a05583f283","newPassword":"1be990e7-ea18-4f1e-b558-498a8c941baa","newPasswordConfirm":"1be990e7-ea18-4f1e-b558-498a8c941baa"}, requestBody.newPassword) +00:00:47.118 [XNIO-1 task-1] XqMnlJCPRFWNlgVMYuVWiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.118 [XNIO-1 task-1] XqMnlJCPRFWNlgVMYuVWiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.118 [XNIO-1 task-1] XqMnlJCPRFWNlgVMYuVWiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.146 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:29a79ad1-74e3-4464-abda-806155fc4e71 +00:00:47.157 [XNIO-1 task-1] BSXjlCLtQ7W2cdZQFzxaYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.157 [XNIO-1 task-1] BSXjlCLtQ7W2cdZQFzxaYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.158 [XNIO-1 task-1] BSXjlCLtQ7W2cdZQFzxaYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.160 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:352d0ed7-e740-4f67-b285-2cf89febf4a5 +00:00:47.161 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:352d0ed7-e740-4f67-b285-2cf89febf4a5 +00:00:47.184 [XNIO-1 task-1] xBrW5FbFQlucmt32tESm1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.184 [XNIO-1 task-1] xBrW5FbFQlucmt32tESm1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.184 [XNIO-1 task-1] xBrW5FbFQlucmt32tESm1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.185 [XNIO-1 task-1] xBrW5FbFQlucmt32tESm1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.195 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a7acc66b +00:00:47.195 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.195 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.195 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:47.195 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a7acc66b +00:00:47.196 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6150e3e9-b79b-44dd-9a4d-6aa289110aed","newPassword":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPasswordConfirm":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f"}, {"password":"6150e3e9-b79b-44dd-9a4d-6aa289110aed","newPassword":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPasswordConfirm":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f"}, requestBody) +00:00:47.196 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6150e3e9-b79b-44dd-9a4d-6aa289110aed","newPassword":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPasswordConfirm":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f"}, {"password":"6150e3e9-b79b-44dd-9a4d-6aa289110aed","newPassword":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPasswordConfirm":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f"}, requestBody) +00:00:47.196 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG com.networknt.schema.FormatValidator debug - validate( "9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f", {"password":"6150e3e9-b79b-44dd-9a4d-6aa289110aed","newPassword":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPasswordConfirm":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f"}, requestBody.newPasswordConfirm) +00:00:47.196 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG com.networknt.schema.FormatValidator debug - validate( "6150e3e9-b79b-44dd-9a4d-6aa289110aed", {"password":"6150e3e9-b79b-44dd-9a4d-6aa289110aed","newPassword":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPasswordConfirm":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f"}, requestBody.password) +00:00:47.196 [XNIO-1 task-1] NCbZiRBJQ4iDcXw8qLFq6A DEBUG com.networknt.schema.FormatValidator debug - validate( "9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f", {"password":"6150e3e9-b79b-44dd-9a4d-6aa289110aed","newPassword":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPasswordConfirm":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f"}, requestBody.newPassword) +00:00:47.221 [XNIO-1 task-1] TmfCYSIKTm-lNSsPTlgBtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.222 [XNIO-1 task-1] TmfCYSIKTm-lNSsPTlgBtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.222 [XNIO-1 task-1] TmfCYSIKTm-lNSsPTlgBtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.239 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7150a20c +00:00:47.239 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.239 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.239 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:47.240 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7150a20c +00:00:47.240 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ed120806-34fe-492d-b34e-0e2b5ab5885e","newPassword":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPasswordConfirm":"3543d976-fe2f-4e28-be92-a2473dcf37ba"}, {"password":"ed120806-34fe-492d-b34e-0e2b5ab5885e","newPassword":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPasswordConfirm":"3543d976-fe2f-4e28-be92-a2473dcf37ba"}, requestBody) +00:00:47.240 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ed120806-34fe-492d-b34e-0e2b5ab5885e","newPassword":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPasswordConfirm":"3543d976-fe2f-4e28-be92-a2473dcf37ba"}, {"password":"ed120806-34fe-492d-b34e-0e2b5ab5885e","newPassword":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPasswordConfirm":"3543d976-fe2f-4e28-be92-a2473dcf37ba"}, requestBody) +00:00:47.240 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG com.networknt.schema.FormatValidator debug - validate( "3543d976-fe2f-4e28-be92-a2473dcf37ba", {"password":"ed120806-34fe-492d-b34e-0e2b5ab5885e","newPassword":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPasswordConfirm":"3543d976-fe2f-4e28-be92-a2473dcf37ba"}, requestBody.newPasswordConfirm) +00:00:47.241 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG com.networknt.schema.FormatValidator debug - validate( "ed120806-34fe-492d-b34e-0e2b5ab5885e", {"password":"ed120806-34fe-492d-b34e-0e2b5ab5885e","newPassword":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPasswordConfirm":"3543d976-fe2f-4e28-be92-a2473dcf37ba"}, requestBody.password) +00:00:47.241 [XNIO-1 task-1] qE5qfIDITJKGBoDOrUdL-w DEBUG com.networknt.schema.FormatValidator debug - validate( "3543d976-fe2f-4e28-be92-a2473dcf37ba", {"password":"ed120806-34fe-492d-b34e-0e2b5ab5885e","newPassword":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPasswordConfirm":"3543d976-fe2f-4e28-be92-a2473dcf37ba"}, requestBody.newPassword) +00:00:47.274 [XNIO-1 task-1] v7NxNVrhRRqL6Rb0W1yYcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.274 [XNIO-1 task-1] v7NxNVrhRRqL6Rb0W1yYcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.274 [XNIO-1 task-1] v7NxNVrhRRqL6Rb0W1yYcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.331 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a7acc66b +00:00:47.331 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.331 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.331 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:47.332 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a7acc66b +00:00:47.333 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPassword":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPasswordConfirm":"797c9cba-24a2-4ff5-aa37-2884c75e75dc"}, {"password":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPassword":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPasswordConfirm":"797c9cba-24a2-4ff5-aa37-2884c75e75dc"}, requestBody) +00:00:47.333 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPassword":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPasswordConfirm":"797c9cba-24a2-4ff5-aa37-2884c75e75dc"}, {"password":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPassword":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPasswordConfirm":"797c9cba-24a2-4ff5-aa37-2884c75e75dc"}, requestBody) +00:00:47.333 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "797c9cba-24a2-4ff5-aa37-2884c75e75dc", {"password":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPassword":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPasswordConfirm":"797c9cba-24a2-4ff5-aa37-2884c75e75dc"}, requestBody.newPasswordConfirm) +00:00:47.333 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f", {"password":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPassword":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPasswordConfirm":"797c9cba-24a2-4ff5-aa37-2884c75e75dc"}, requestBody.password) +00:00:47.333 [XNIO-1 task-1] 9qOADr0KQISn0ssTgEV8Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "797c9cba-24a2-4ff5-aa37-2884c75e75dc", {"password":"9ac0f072-0bf3-4ddb-8af9-5e3233c6e83f","newPassword":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPasswordConfirm":"797c9cba-24a2-4ff5-aa37-2884c75e75dc"}, requestBody.newPassword) +00:00:47.397 [XNIO-1 task-1] GzKyN09MQuyUFsIecXIKQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.397 [XNIO-1 task-1] GzKyN09MQuyUFsIecXIKQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.398 [XNIO-1 task-1] GzKyN09MQuyUFsIecXIKQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.414 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:62464eec +00:00:47.414 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.428 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7150a20c +00:00:47.428 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.428 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.428 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:47.428 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7150a20c +00:00:47.429 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ead3cb1c-d636-47bf-b8d5-bb9faa9eb988 +00:00:47.429 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPassword":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534","newPasswordConfirm":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534"}, {"password":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPassword":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534","newPasswordConfirm":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534"}, requestBody) +00:00:47.429 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPassword":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534","newPasswordConfirm":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534"}, {"password":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPassword":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534","newPasswordConfirm":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534"}, requestBody) +00:00:47.429 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5c60ea9e-ff3b-4001-91c0-2449a8fcd534", {"password":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPassword":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534","newPasswordConfirm":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534"}, requestBody.newPasswordConfirm) +00:00:47.429 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "3543d976-fe2f-4e28-be92-a2473dcf37ba", {"password":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPassword":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534","newPasswordConfirm":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534"}, requestBody.password) +00:00:47.429 [XNIO-1 task-1] 2lnNOkYkRKu3OHAMstDuGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5c60ea9e-ff3b-4001-91c0-2449a8fcd534", {"password":"3543d976-fe2f-4e28-be92-a2473dcf37ba","newPassword":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534","newPasswordConfirm":"5c60ea9e-ff3b-4001-91c0-2449a8fcd534"}, requestBody.newPassword) +00:00:47.449 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:634b85d5 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +00:00:47.453 [XNIO-1 task-1] 8FjJeaPzQAuypYyQ8HYsbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7150a20c, base path is set to: null +00:00:47.453 [XNIO-1 task-1] 8FjJeaPzQAuypYyQ8HYsbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.453 [XNIO-1 task-1] 8FjJeaPzQAuypYyQ8HYsbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.453 [XNIO-1 task-1] 8FjJeaPzQAuypYyQ8HYsbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7150a20c, base path is set to: null +00:00:47.454 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ead3cb1c-d636-47bf-b8d5-bb9faa9eb988 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +00:00:47.454 [XNIO-1 task-1] 8FjJeaPzQAuypYyQ8HYsbg DEBUG com.networknt.schema.TypeValidator debug - validate( "7150a20c", "7150a20c", userId) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +00:00:47.461 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ead3cb1c-d636-47bf-b8d5-bb9faa9eb988 +00:00:47.461 [XNIO-1 task-1] UvRixJ6jRBGbUIfPpnANqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +00:00:47.462 [XNIO-1 task-1] UvRixJ6jRBGbUIfPpnANqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.479 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.482 [XNIO-1 task-1] KfX_TS6xRW-sZafdh_hC7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.482 [XNIO-1 task-1] KfX_TS6xRW-sZafdh_hC7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.484 [XNIO-1 task-1] KfX_TS6xRW-sZafdh_hC7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.485 [XNIO-1 task-1] KfX_TS6xRW-sZafdh_hC7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.530 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4f1d3b11 +00:00:47.536 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a7acc66b +00:00:47.536 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.536 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.536 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:47.536 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a7acc66b +00:00:47.537 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG com.networknt.schema.TypeValidator debug - validate( "a7acc66b", "a7acc66b", userId) +00:00:47.537 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPassword":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPasswordConfirm":"39486b93-6f22-45f4-a326-2f499d2fbea8"}, {"password":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPassword":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPasswordConfirm":"39486b93-6f22-45f4-a326-2f499d2fbea8"}, requestBody) +00:00:47.537 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG com.networknt.schema.TypeValidator debug - validate( "39486b93-6f22-45f4-a326-2f499d2fbea8", {"password":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPassword":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPasswordConfirm":"39486b93-6f22-45f4-a326-2f499d2fbea8"}, requestBody.newPasswordConfirm) +00:00:47.537 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG com.networknt.schema.TypeValidator debug - validate( "797c9cba-24a2-4ff5-aa37-2884c75e75dc", {"password":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPassword":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPasswordConfirm":"39486b93-6f22-45f4-a326-2f499d2fbea8"}, requestBody.password) +00:00:47.537 [XNIO-1 task-1] 5dIPI2AlTXOc9BQVUQPLeA DEBUG com.networknt.schema.TypeValidator debug - validate( "39486b93-6f22-45f4-a326-2f499d2fbea8", {"password":"797c9cba-24a2-4ff5-aa37-2884c75e75dc","newPassword":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPasswordConfirm":"39486b93-6f22-45f4-a326-2f499d2fbea8"}, requestBody.newPassword) +00:00:47.565 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a7acc66b, base path is set to: null +00:00:47.565 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.565 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.565 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:47.566 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a7acc66b, base path is set to: null +00:00:47.566 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7acc66b", "a7acc66b", userId) +00:00:47.567 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPassword":"7c128535-461d-47f0-955f-4c31baba4166","newPasswordConfirm":"7c128535-461d-47f0-955f-4c31baba4166"}, {"password":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPassword":"7c128535-461d-47f0-955f-4c31baba4166","newPasswordConfirm":"7c128535-461d-47f0-955f-4c31baba4166"}, requestBody) +00:00:47.567 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c128535-461d-47f0-955f-4c31baba4166", {"password":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPassword":"7c128535-461d-47f0-955f-4c31baba4166","newPasswordConfirm":"7c128535-461d-47f0-955f-4c31baba4166"}, requestBody.newPasswordConfirm) +00:00:47.567 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG com.networknt.schema.TypeValidator debug - validate( "39486b93-6f22-45f4-a326-2f499d2fbea8", {"password":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPassword":"7c128535-461d-47f0-955f-4c31baba4166","newPasswordConfirm":"7c128535-461d-47f0-955f-4c31baba4166"}, requestBody.password) +00:00:47.567 [XNIO-1 task-1] 7ukzp9neRK2ltwl1BNwPuw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c128535-461d-47f0-955f-4c31baba4166", {"password":"39486b93-6f22-45f4-a326-2f499d2fbea8","newPassword":"7c128535-461d-47f0-955f-4c31baba4166","newPasswordConfirm":"7c128535-461d-47f0-955f-4c31baba4166"}, requestBody.newPassword) +00:00:47.576 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:dec6c686-6d0a-4286-903f-c526d7a9a9da +00:00:47.594 [XNIO-1 task-1] ZuE41AZjQmqNDkeRMlR2pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7acc66b, base path is set to: null +00:00:47.594 [XNIO-1 task-1] ZuE41AZjQmqNDkeRMlR2pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.594 [XNIO-1 task-1] ZuE41AZjQmqNDkeRMlR2pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.594 [XNIO-1 task-1] ZuE41AZjQmqNDkeRMlR2pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7acc66b, base path is set to: null +00:00:47.595 [XNIO-1 task-1] ZuE41AZjQmqNDkeRMlR2pA DEBUG com.networknt.schema.TypeValidator debug - validate( "a7acc66b", "a7acc66b", userId) +00:00:47.611 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:47.618 [XNIO-1 task-1] HjVjwxrGTNm83TWqiZkmhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ed55f8a +00:00:47.618 [XNIO-1 task-1] HjVjwxrGTNm83TWqiZkmhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.618 [XNIO-1 task-1] HjVjwxrGTNm83TWqiZkmhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.618 [XNIO-1 task-1] HjVjwxrGTNm83TWqiZkmhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ed55f8a +00:00:47.625 [XNIO-1 task-1] HzaYfVNKRq2S0V36sYAYIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f4b02c25, base path is set to: null +00:00:47.625 [XNIO-1 task-1] HzaYfVNKRq2S0V36sYAYIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.625 [XNIO-1 task-1] HzaYfVNKRq2S0V36sYAYIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.625 [XNIO-1 task-1] HzaYfVNKRq2S0V36sYAYIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f4b02c25, base path is set to: null +00:00:47.626 [XNIO-1 task-1] HzaYfVNKRq2S0V36sYAYIw DEBUG com.networknt.schema.TypeValidator debug - validate( "f4b02c25", "f4b02c25", userId) +00:00:47.638 [XNIO-1 task-1] 6GvKOOwwRgSwzlR106rRGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.638 [XNIO-1 task-1] 6GvKOOwwRgSwzlR106rRGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.638 [XNIO-1 task-1] 6GvKOOwwRgSwzlR106rRGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.667 [XNIO-1 task-1] vowLuatwSjWGT1tHYrH2CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ced14368 +00:00:47.667 [XNIO-1 task-1] vowLuatwSjWGT1tHYrH2CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.667 [XNIO-1 task-1] vowLuatwSjWGT1tHYrH2CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.668 [XNIO-1 task-1] vowLuatwSjWGT1tHYrH2CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ced14368 +00:00:47.682 [XNIO-1 task-1] -QPBl2NlSo2Psbn2ehTSVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9ed55f8a, base path is set to: null +00:00:47.683 [XNIO-1 task-1] -QPBl2NlSo2Psbn2ehTSVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.683 [XNIO-1 task-1] -QPBl2NlSo2Psbn2ehTSVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.683 [XNIO-1 task-1] -QPBl2NlSo2Psbn2ehTSVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9ed55f8a, base path is set to: null +00:00:47.683 [XNIO-1 task-1] -QPBl2NlSo2Psbn2ehTSVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9ed55f8a", "9ed55f8a", userId) +00:00:47.699 [XNIO-1 task-1] n0dPHvpARKajIasnmGPTaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.699 [XNIO-1 task-1] n0dPHvpARKajIasnmGPTaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.699 [XNIO-1 task-1] n0dPHvpARKajIasnmGPTaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.723 [XNIO-1 task-1] jxCONQ2ASouSakW7TRf8rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7150a20c +00:00:47.723 [XNIO-1 task-1] jxCONQ2ASouSakW7TRf8rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.723 [XNIO-1 task-1] jxCONQ2ASouSakW7TRf8rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.723 [XNIO-1 task-1] jxCONQ2ASouSakW7TRf8rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7150a20c +00:00:47.730 [XNIO-1 task-1] ZNXGb-fTQHqrS2uQzKS3Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.731 [XNIO-1 task-1] ZNXGb-fTQHqrS2uQzKS3Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.731 [XNIO-1 task-1] ZNXGb-fTQHqrS2uQzKS3Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.733 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4c07cf06-f287-4492-a7e9-d6ec0d092e58 +00:00:47.757 [XNIO-1 task-1] NdkhljVBRG6vtfpjC4ZmrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eaadfbd7, base path is set to: null +00:00:47.758 [XNIO-1 task-1] NdkhljVBRG6vtfpjC4ZmrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.758 [XNIO-1 task-1] NdkhljVBRG6vtfpjC4ZmrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.758 [XNIO-1 task-1] NdkhljVBRG6vtfpjC4ZmrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eaadfbd7, base path is set to: null +00:00:47.758 [XNIO-1 task-1] NdkhljVBRG6vtfpjC4ZmrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eaadfbd7", "eaadfbd7", userId) +00:00:47.773 [XNIO-1 task-1] Lmkre4L-SlOzEaQKWhZHYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.774 [XNIO-1 task-1] Lmkre4L-SlOzEaQKWhZHYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.774 [XNIO-1 task-1] Lmkre4L-SlOzEaQKWhZHYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.784 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1b04cb72 +00:00:47.790 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1b04cb72 +00:00:47.801 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3db09f23 +00:00:47.808 [XNIO-1 task-1] V4m2SGmNQUW8ndtlhax1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ed55f8a +00:00:47.808 [XNIO-1 task-1] V4m2SGmNQUW8ndtlhax1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.808 [XNIO-1 task-1] V4m2SGmNQUW8ndtlhax1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.809 [XNIO-1 task-1] V4m2SGmNQUW8ndtlhax1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9ed55f8a +00:00:47.825 [XNIO-1 task-1] KeskdL3wQqeUZ6KKFfTbwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f72b46b, base path is set to: null +00:00:47.826 [XNIO-1 task-1] KeskdL3wQqeUZ6KKFfTbwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.826 [XNIO-1 task-1] KeskdL3wQqeUZ6KKFfTbwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.826 [XNIO-1 task-1] KeskdL3wQqeUZ6KKFfTbwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f72b46b, base path is set to: null +00:00:47.827 [XNIO-1 task-1] KeskdL3wQqeUZ6KKFfTbwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7f72b46b", "7f72b46b", userId) +00:00:47.848 [XNIO-1 task-1] 0MCOSpM1TxaNiEGBE3VIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.850 [XNIO-1 task-1] 0MCOSpM1TxaNiEGBE3VIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.850 [XNIO-1 task-1] 0MCOSpM1TxaNiEGBE3VIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.850 [XNIO-1 task-1] 0MCOSpM1TxaNiEGBE3VIMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:47.866 [XNIO-1 task-1] 10-D5GpdSVOeNyaiSgmqbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7150a20c +00:00:47.867 [XNIO-1 task-1] 10-D5GpdSVOeNyaiSgmqbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.867 [XNIO-1 task-1] 10-D5GpdSVOeNyaiSgmqbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:47.867 [XNIO-1 task-1] 10-D5GpdSVOeNyaiSgmqbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7150a20c +00:00:47.876 [XNIO-1 task-1] uB-L-b5VRTmhbAjY54TNGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.876 [XNIO-1 task-1] uB-L-b5VRTmhbAjY54TNGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.876 [XNIO-1 task-1] uB-L-b5VRTmhbAjY54TNGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.891 [XNIO-1 task-1] J78XqVS7SwGJFz0hmyDk4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4e681ac8, base path is set to: null +00:00:47.891 [XNIO-1 task-1] J78XqVS7SwGJFz0hmyDk4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.891 [XNIO-1 task-1] J78XqVS7SwGJFz0hmyDk4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:47.892 [XNIO-1 task-1] J78XqVS7SwGJFz0hmyDk4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4e681ac8, base path is set to: null +00:00:47.892 [XNIO-1 task-1] J78XqVS7SwGJFz0hmyDk4A DEBUG com.networknt.schema.TypeValidator debug - validate( "4e681ac8", "4e681ac8", userId) +00:00:47.894 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:755ad38c-a888-435b-bbb7-40f9b3b4f45a +00:00:47.912 [XNIO-1 task-1] aqd57y7xS8m-BDed2wB_Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.912 [XNIO-1 task-1] aqd57y7xS8m-BDed2wB_Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.913 [XNIO-1 task-1] aqd57y7xS8m-BDed2wB_Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:47.932 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:18331000 +00:00:47.941 [XNIO-1 task-1] 8GhhUWb2QGenVeUjahnsvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.941 [XNIO-1 task-1] 8GhhUWb2QGenVeUjahnsvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.941 [XNIO-1 task-1] 8GhhUWb2QGenVeUjahnsvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.942 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1b04cb72 +00:00:47.963 [XNIO-1 task-1] L0JmaGGTRVSs5QtoiGir-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.963 [XNIO-1 task-1] L0JmaGGTRVSs5QtoiGir-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:47.963 [XNIO-1 task-1] L0JmaGGTRVSs5QtoiGir-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:47.991 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30b23eda-915b-4c9f-afd8-44ad7718872f +00:00:48.001 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1b04cb72 +00:00:48.002 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.002 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.002 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:48.003 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1b04cb72 +00:00:48.004 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6da3c0ef-2f0f-4642-8dcb-6637be6aa159","newPassword":"eb26f646-7e7b-4181-b98b-a76845567832","newPasswordConfirm":"eb26f646-7e7b-4181-b98b-a76845567832"}, {"password":"6da3c0ef-2f0f-4642-8dcb-6637be6aa159","newPassword":"eb26f646-7e7b-4181-b98b-a76845567832","newPasswordConfirm":"eb26f646-7e7b-4181-b98b-a76845567832"}, requestBody) +00:00:48.004 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6da3c0ef-2f0f-4642-8dcb-6637be6aa159","newPassword":"eb26f646-7e7b-4181-b98b-a76845567832","newPasswordConfirm":"eb26f646-7e7b-4181-b98b-a76845567832"}, {"password":"6da3c0ef-2f0f-4642-8dcb-6637be6aa159","newPassword":"eb26f646-7e7b-4181-b98b-a76845567832","newPasswordConfirm":"eb26f646-7e7b-4181-b98b-a76845567832"}, requestBody) +00:00:48.004 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG com.networknt.schema.FormatValidator debug - validate( "eb26f646-7e7b-4181-b98b-a76845567832", {"password":"6da3c0ef-2f0f-4642-8dcb-6637be6aa159","newPassword":"eb26f646-7e7b-4181-b98b-a76845567832","newPasswordConfirm":"eb26f646-7e7b-4181-b98b-a76845567832"}, requestBody.newPasswordConfirm) +00:00:48.004 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG com.networknt.schema.FormatValidator debug - validate( "6da3c0ef-2f0f-4642-8dcb-6637be6aa159", {"password":"6da3c0ef-2f0f-4642-8dcb-6637be6aa159","newPassword":"eb26f646-7e7b-4181-b98b-a76845567832","newPasswordConfirm":"eb26f646-7e7b-4181-b98b-a76845567832"}, requestBody.password) +00:00:48.004 [XNIO-1 task-1] Pg0Ql6PESlOXTqCfTvm2zg DEBUG com.networknt.schema.FormatValidator debug - validate( "eb26f646-7e7b-4181-b98b-a76845567832", {"password":"6da3c0ef-2f0f-4642-8dcb-6637be6aa159","newPassword":"eb26f646-7e7b-4181-b98b-a76845567832","newPasswordConfirm":"eb26f646-7e7b-4181-b98b-a76845567832"}, requestBody.newPassword) +00:00:48.021 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1b04cb72 +00:00:48.039 [XNIO-1 task-1] LSh-cvrGSRmghm0lR0rSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.039 [XNIO-1 task-1] LSh-cvrGSRmghm0lR0rSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.039 [XNIO-1 task-1] LSh-cvrGSRmghm0lR0rSXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.040 [XNIO-1 task-1] LSh-cvrGSRmghm0lR0rSXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.050 [XNIO-1 task-1] LD3JtDlmSWaP_v8DKJi5qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.051 [XNIO-1 task-1] LD3JtDlmSWaP_v8DKJi5qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.051 [XNIO-1 task-1] LD3JtDlmSWaP_v8DKJi5qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.087 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:18331000 +00:00:48.107 [XNIO-1 task-1] 4ZYGrAnlQSKE4hPkTg5cAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.108 [XNIO-1 task-1] 4ZYGrAnlQSKE4hPkTg5cAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.108 [XNIO-1 task-1] 4ZYGrAnlQSKE4hPkTg5cAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.122 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:89bca83f +00:00:48.135 [XNIO-1 task-1] uhottv8fSeGC3eSM6SZX_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.135 [XNIO-1 task-1] uhottv8fSeGC3eSM6SZX_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.136 [XNIO-1 task-1] uhottv8fSeGC3eSM6SZX_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.153 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/da9b2d33, base path is set to: null +00:00:48.154 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.154 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:48.154 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +00:00:48.154 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/da9b2d33, base path is set to: null +00:00:48.155 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG com.networknt.schema.TypeValidator debug - validate( "da9b2d33", "da9b2d33", userId) +00:00:48.155 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b560fa98-ab5d-4555-a533-8915074a3f66","newPassword":"fb86c412-feba-47cf-9173-e23237e790ab","newPasswordConfirm":"fb86c412-feba-47cf-9173-e23237e790ab"}, {"password":"b560fa98-ab5d-4555-a533-8915074a3f66","newPassword":"fb86c412-feba-47cf-9173-e23237e790ab","newPasswordConfirm":"fb86c412-feba-47cf-9173-e23237e790ab"}, requestBody) +00:00:48.155 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb86c412-feba-47cf-9173-e23237e790ab", {"password":"b560fa98-ab5d-4555-a533-8915074a3f66","newPassword":"fb86c412-feba-47cf-9173-e23237e790ab","newPasswordConfirm":"fb86c412-feba-47cf-9173-e23237e790ab"}, requestBody.newPasswordConfirm) +00:00:48.155 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG com.networknt.schema.TypeValidator debug - validate( "b560fa98-ab5d-4555-a533-8915074a3f66", {"password":"b560fa98-ab5d-4555-a533-8915074a3f66","newPassword":"fb86c412-feba-47cf-9173-e23237e790ab","newPasswordConfirm":"fb86c412-feba-47cf-9173-e23237e790ab"}, requestBody.password) +00:00:48.156 [XNIO-1 task-1] wwP5N7vFQTWDWKbYcOdNtw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb86c412-feba-47cf-9173-e23237e790ab", {"password":"b560fa98-ab5d-4555-a533-8915074a3f66","newPassword":"fb86c412-feba-47cf-9173-e23237e790ab","newPasswordConfirm":"fb86c412-feba-47cf-9173-e23237e790ab"}, requestBody.newPassword) +00:00:48.180 [XNIO-1 task-1] GXzO1YunSsKEYX_fxG4Xag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7150a20c, base path is set to: null +00:00:48.181 [XNIO-1 task-1] GXzO1YunSsKEYX_fxG4Xag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.181 [XNIO-1 task-1] GXzO1YunSsKEYX_fxG4Xag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:48.181 [XNIO-1 task-1] GXzO1YunSsKEYX_fxG4Xag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7150a20c, base path is set to: null +00:00:48.181 [XNIO-1 task-1] GXzO1YunSsKEYX_fxG4Xag DEBUG com.networknt.schema.TypeValidator debug - validate( "7150a20c", "7150a20c", userId) +00:00:48.208 [XNIO-1 task-1] YJS0gPoSRlezzGRMJY5fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ac87a237 +00:00:48.209 [XNIO-1 task-1] YJS0gPoSRlezzGRMJY5fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.209 [XNIO-1 task-1] YJS0gPoSRlezzGRMJY5fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.209 [XNIO-1 task-1] YJS0gPoSRlezzGRMJY5fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ac87a237 +00:00:48.225 [XNIO-1 task-1] aeXETDPtTyqvSYNcDNnEEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.226 [XNIO-1 task-1] aeXETDPtTyqvSYNcDNnEEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.226 [XNIO-1 task-1] aeXETDPtTyqvSYNcDNnEEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.259 [XNIO-1 task-1] hlIq4n-DS_q1Ff40EIRKvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.259 [XNIO-1 task-1] hlIq4n-DS_q1Ff40EIRKvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.260 [XNIO-1 task-1] hlIq4n-DS_q1Ff40EIRKvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.260 [XNIO-1 task-1] hlIq4n-DS_q1Ff40EIRKvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.272 [XNIO-1 task-1] ECugczEcS6aHJIhQnQ-qKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.273 [XNIO-1 task-1] ECugczEcS6aHJIhQnQ-qKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.273 [XNIO-1 task-1] ECugczEcS6aHJIhQnQ-qKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.283 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7199668e +00:00:48.285 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7199668e +00:00:48.297 [XNIO-1 task-1] ybY_S8J2SCq5PBu9FUqdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.297 [XNIO-1 task-1] ybY_S8J2SCq5PBu9FUqdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.298 [XNIO-1 task-1] ybY_S8J2SCq5PBu9FUqdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.299 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7199668e +00:00:48.316 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1b04cb72 +00:00:48.316 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.316 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.316 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +00:00:48.316 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1b04cb72 +00:00:48.317 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"eb26f646-7e7b-4181-b98b-a76845567832","newPassword":"8fa889bd-8feb-4e62-b3e5-004aea41022f","newPasswordConfirm":"8fa889bd-8feb-4e62-b3e5-004aea41022f"}, {"password":"eb26f646-7e7b-4181-b98b-a76845567832","newPassword":"8fa889bd-8feb-4e62-b3e5-004aea41022f","newPasswordConfirm":"8fa889bd-8feb-4e62-b3e5-004aea41022f"}, requestBody) +00:00:48.318 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"eb26f646-7e7b-4181-b98b-a76845567832","newPassword":"8fa889bd-8feb-4e62-b3e5-004aea41022f","newPasswordConfirm":"8fa889bd-8feb-4e62-b3e5-004aea41022f"}, {"password":"eb26f646-7e7b-4181-b98b-a76845567832","newPassword":"8fa889bd-8feb-4e62-b3e5-004aea41022f","newPasswordConfirm":"8fa889bd-8feb-4e62-b3e5-004aea41022f"}, requestBody) +00:00:48.318 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG com.networknt.schema.FormatValidator debug - validate( "8fa889bd-8feb-4e62-b3e5-004aea41022f", {"password":"eb26f646-7e7b-4181-b98b-a76845567832","newPassword":"8fa889bd-8feb-4e62-b3e5-004aea41022f","newPasswordConfirm":"8fa889bd-8feb-4e62-b3e5-004aea41022f"}, requestBody.newPasswordConfirm) +00:00:48.318 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG com.networknt.schema.FormatValidator debug - validate( "eb26f646-7e7b-4181-b98b-a76845567832", {"password":"eb26f646-7e7b-4181-b98b-a76845567832","newPassword":"8fa889bd-8feb-4e62-b3e5-004aea41022f","newPasswordConfirm":"8fa889bd-8feb-4e62-b3e5-004aea41022f"}, requestBody.password) +00:00:48.318 [XNIO-1 task-1] jS1lQQ_CQCSqHVADL5CKXw DEBUG com.networknt.schema.FormatValidator debug - validate( "8fa889bd-8feb-4e62-b3e5-004aea41022f", {"password":"eb26f646-7e7b-4181-b98b-a76845567832","newPassword":"8fa889bd-8feb-4e62-b3e5-004aea41022f","newPasswordConfirm":"8fa889bd-8feb-4e62-b3e5-004aea41022f"}, requestBody.newPassword) +00:00:48.330 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1b04cb72 +00:00:48.345 [XNIO-1 task-1] yoTI-483QKu4VB-voTIUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4c4224c4 +00:00:48.345 [XNIO-1 task-1] yoTI-483QKu4VB-voTIUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.345 [XNIO-1 task-1] yoTI-483QKu4VB-voTIUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.346 [XNIO-1 task-1] yoTI-483QKu4VB-voTIUYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4c4224c4 +00:00:48.364 [XNIO-1 task-1] WyvhK9PURTOTv7d_cXowrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7199668e, base path is set to: null +00:00:48.364 [XNIO-1 task-1] WyvhK9PURTOTv7d_cXowrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.364 [XNIO-1 task-1] WyvhK9PURTOTv7d_cXowrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:48.365 [XNIO-1 task-1] WyvhK9PURTOTv7d_cXowrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7199668e, base path is set to: null +00:00:48.365 [XNIO-1 task-1] WyvhK9PURTOTv7d_cXowrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7199668e", "7199668e", userId) +00:00:48.377 [XNIO-1 task-1] DgFn6556RJCJAWy7tLkRJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1b04cb72, base path is set to: null +00:00:48.377 [XNIO-1 task-1] DgFn6556RJCJAWy7tLkRJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.377 [XNIO-1 task-1] DgFn6556RJCJAWy7tLkRJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:48.378 [XNIO-1 task-1] DgFn6556RJCJAWy7tLkRJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1b04cb72, base path is set to: null +00:00:48.378 [XNIO-1 task-1] DgFn6556RJCJAWy7tLkRJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1b04cb72", "1b04cb72", userId) +00:00:48.383 [XNIO-1 task-1] nciTOr8WQsGWq4ZO87iu9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1b04cb72 +00:00:48.383 [XNIO-1 task-1] nciTOr8WQsGWq4ZO87iu9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.383 [XNIO-1 task-1] nciTOr8WQsGWq4ZO87iu9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.383 [XNIO-1 task-1] nciTOr8WQsGWq4ZO87iu9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1b04cb72 +00:00:48.384 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1b04cb72 +00:00:48.402 [XNIO-1 task-1] RZ-v__l_QzGkcJdZvPxeGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.402 [XNIO-1 task-1] RZ-v__l_QzGkcJdZvPxeGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.402 [XNIO-1 task-1] RZ-v__l_QzGkcJdZvPxeGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.441 [XNIO-1 task-1] -hLdPzMISASt3yPYFHN87w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.441 [XNIO-1 task-1] -hLdPzMISASt3yPYFHN87w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.441 [XNIO-1 task-1] -hLdPzMISASt3yPYFHN87w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.442 [XNIO-1 task-1] -hLdPzMISASt3yPYFHN87w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.457 [XNIO-1 task-1] nsyg--moTQGGuXrTBk2hXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.457 [XNIO-1 task-1] nsyg--moTQGGuXrTBk2hXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.457 [XNIO-1 task-1] nsyg--moTQGGuXrTBk2hXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.458 [XNIO-1 task-1] nsyg--moTQGGuXrTBk2hXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.465 [XNIO-1 task-1] UKWW8SxiRIeIxgqf0s8Z1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4120345e +00:00:48.465 [XNIO-1 task-1] UKWW8SxiRIeIxgqf0s8Z1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.465 [XNIO-1 task-1] UKWW8SxiRIeIxgqf0s8Z1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.465 [XNIO-1 task-1] UKWW8SxiRIeIxgqf0s8Z1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4120345e +00:00:48.479 [XNIO-1 task-1] 3VYiJ-HzQg-oaElMO1Ubig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.480 [XNIO-1 task-1] 3VYiJ-HzQg-oaElMO1Ubig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.480 [XNIO-1 task-1] 3VYiJ-HzQg-oaElMO1Ubig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +00:00:48.481 [XNIO-1 task-1] 3VYiJ-HzQg-oaElMO1Ubig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +00:00:48.498 [XNIO-1 task-1] z_KpTA3zSfevzDuQNjbHUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5522421d, base path is set to: null +00:00:48.499 [XNIO-1 task-1] z_KpTA3zSfevzDuQNjbHUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +00:00:48.499 [XNIO-1 task-1] z_KpTA3zSfevzDuQNjbHUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +00:00:48.499 [XNIO-1 task-1] z_KpTA3zSfevzDuQNjbHUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5522421d, base path is set to: null +00:00:48.499 [XNIO-1 task-1] z_KpTA3zSfevzDuQNjbHUw DEBUG com.networknt.schema.TypeValidator debug - validate( "5522421d", "5522421d", userId) +00:00:48.520 [XNIO-1 task-1] evG68xoLSO68P6il2uI43A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/89bca83f +00:00:48.520 [XNIO-1 task-1] evG68xoLSO68P6il2uI43A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.520 [XNIO-1 task-1] evG68xoLSO68P6il2uI43A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.520 [XNIO-1 task-1] evG68xoLSO68P6il2uI43A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/89bca83f +00:00:48.521 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:89bca83f +00:00:48.537 [XNIO-1 task-1] KZE-d9X8TM-RjOfjoxMJ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.538 [XNIO-1 task-1] KZE-d9X8TM-RjOfjoxMJ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.538 [XNIO-1 task-1] KZE-d9X8TM-RjOfjoxMJ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.538 [XNIO-1 task-1] KZE-d9X8TM-RjOfjoxMJ2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +00:00:48.540 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:62464eec +00:00:48.545 [XNIO-1 task-1] vF_oe0trRaavEo17oqL1wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/306cb890 +00:00:48.545 [XNIO-1 task-1] vF_oe0trRaavEo17oqL1wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +00:00:48.545 [XNIO-1 task-1] vF_oe0trRaavEo17oqL1wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +00:00:48.545 [XNIO-1 task-1] vF_oe0trRaavEo17oqL1wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/306cb890 diff --git a/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-client-1.log b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..8084dfb --- /dev/null +++ b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4812 @@ + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:37.084 [XNIO-1 task-2] VA_liiDnT6ekGEgSQYnk2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:37.093 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:37.093 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:37.094 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:37.096 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:37.096 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:37.097 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a", {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:37.097 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:37.098 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:37.100 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d590c9e-a219-4e1f-9ce7-604c6f31", {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:37.100 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:37.100 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2d590c9e-a219-4e1f-9ce7-604c6f31","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:37.101 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:37.101 [XNIO-1 task-2] SKGAX7PDTtaN4iINR47eXA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:37.107 [XNIO-1 task-2] Ms9fhsl9S0qhtyb5CVyCCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.107 [XNIO-1 task-2] Ms9fhsl9S0qhtyb5CVyCCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:37.108 [XNIO-1 task-2] Ms9fhsl9S0qhtyb5CVyCCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.109 [XNIO-1 task-2] Ms9fhsl9S0qhtyb5CVyCCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:37.151 [XNIO-1 task-2] uXBXqklnSRmfMApz2S39dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.152 [XNIO-1 task-2] uXBXqklnSRmfMApz2S39dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:37.152 [XNIO-1 task-2] uXBXqklnSRmfMApz2S39dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.154 [XNIO-1 task-2] uXBXqklnSRmfMApz2S39dg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:37.173 [XNIO-1 task-2] UwESGGh7QaWJxOh79BfhqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.175 [XNIO-1 task-2] UwESGGh7QaWJxOh79BfhqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:37.175 [XNIO-1 task-2] UwESGGh7QaWJxOh79BfhqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.645 [XNIO-1 task-2] k8AzAhTdTgmSRi-KBMPfMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.645 [XNIO-1 task-2] k8AzAhTdTgmSRi-KBMPfMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:37.645 [XNIO-1 task-2] k8AzAhTdTgmSRi-KBMPfMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:37.652 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8841a1a7-cfb3-489f-b136-405149b8988b +16:29:37.682 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - allowPoolSuspension.............false +16:29:37.682 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - catalog.........................none +16:29:37.682 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - connectionTestQuery.............none +16:29:37.682 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSource......................none +16:29:37.682 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSourceJNDI..................none +16:29:37.683 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - driverClassName.................none +16:29:37.683 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - healthCheckRegistry.............none +16:29:37.683 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - initializationFailTimeout.......1 +16:29:37.683 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - jdbcUrl.........................jdbc:mysql://mysqldb:3306/oauth2?useSSL=false&disableMariaDbDriver +16:29:37.683 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - maxLifetime.....................1800000 +16:29:37.683 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - metricRegistry..................none +16:29:37.684 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - minimumIdle.....................2 +16:29:37.684 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - poolName........................"HikariPool-1" +16:29:37.684 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - registerMbeans..................false +16:29:37.684 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - schema..........................none +16:29:37.684 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - transactionIsolation............default +16:29:37.684 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - validationTimeout...............5000 +16:29:38.046 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG com.zaxxer.hikari.pool.HikariPool checkFailFast - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3e5e550e +16:29:38.134 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8841a1a7-cfb3-489f-b136-405149b8988b +16:29:38.152 [XNIO-1 task-2] jKD--UH0R56QZ5_b19Rbmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8841a1a7-cfb3-489f-b136-405149b8988b, base path is set to: null +16:29:38.152 [XNIO-1 task-2] jKD--UH0R56QZ5_b19Rbmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.152 [XNIO-1 task-2] jKD--UH0R56QZ5_b19Rbmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:38.153 [XNIO-1 task-2] jKD--UH0R56QZ5_b19Rbmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8841a1a7-cfb3-489f-b136-405149b8988b, base path is set to: null +16:29:38.153 [XNIO-1 task-2] jKD--UH0R56QZ5_b19Rbmw DEBUG com.networknt.schema.TypeValidator debug - validate( "8841a1a7-cfb3-489f-b136-405149b8988b", "8841a1a7-cfb3-489f-b136-405149b8988b", clientId) +16:29:38.155 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8841a1a7-cfb3-489f-b136-405149b8988b +16:29:38.180 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) +16:29:38.188 [XNIO-1 task-2] zGbYVeX4RTKTqU7WKWQoWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.188 [XNIO-1 task-2] zGbYVeX4RTKTqU7WKWQoWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.189 [XNIO-1 task-2] zGbYVeX4RTKTqU7WKWQoWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.208 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b3e4f695-65b0-4601-a4be-9709ca3d3d94 +16:29:38.236 [XNIO-1 task-2] W4JX6EZbTt2l4JrGCD8hfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.236 [XNIO-1 task-2] W4JX6EZbTt2l4JrGCD8hfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.236 [XNIO-1 task-2] W4JX6EZbTt2l4JrGCD8hfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.237 [XNIO-1 task-2] W4JX6EZbTt2l4JrGCD8hfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:38.303 [XNIO-1 task-2] Y4vtKd02QB6uLuAXzH9Bgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.303 [XNIO-1 task-2] Y4vtKd02QB6uLuAXzH9Bgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.304 [XNIO-1 task-2] Y4vtKd02QB6uLuAXzH9Bgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.326 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9f2ec6b0-7de7-4028-a636-fe8364b327ac +16:29:38.371 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9f2ec6b0-7de7-4028-a636-fe8364b327ac +16:29:38.383 [XNIO-1 task-2] cpLByrtvQxWHOAYyLdV5Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.383 [XNIO-1 task-2] cpLByrtvQxWHOAYyLdV5Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.384 [XNIO-1 task-2] cpLByrtvQxWHOAYyLdV5Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.455 [XNIO-1 task-2] X6wlGehgRKesbO70NZgdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.456 [XNIO-1 task-2] X6wlGehgRKesbO70NZgdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.456 [XNIO-1 task-2] X6wlGehgRKesbO70NZgdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.456 [XNIO-1 task-2] X6wlGehgRKesbO70NZgdXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.481 [XNIO-1 task-2] auxa1iwzSVGHS5BAe-iReQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.481 [XNIO-1 task-2] auxa1iwzSVGHS5BAe-iReQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.481 [XNIO-1 task-2] auxa1iwzSVGHS5BAe-iReQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.482 [XNIO-1 task-2] auxa1iwzSVGHS5BAe-iReQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.520 [XNIO-1 task-2] rplU6j4TRyGlfHIcANzaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3e4f695-65b0-4601-a4be-9709ca3d3d94 +16:29:38.520 [XNIO-1 task-2] rplU6j4TRyGlfHIcANzaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.520 [XNIO-1 task-2] rplU6j4TRyGlfHIcANzaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:38.521 [XNIO-1 task-2] rplU6j4TRyGlfHIcANzaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3e4f695-65b0-4601-a4be-9709ca3d3d94 +16:29:38.522 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b3e4f695-65b0-4601-a4be-9709ca3d3d94 +16:29:38.530 [XNIO-1 task-2] hcAL9JyGTo6sKE-U9YdfHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.530 [XNIO-1 task-2] hcAL9JyGTo6sKE-U9YdfHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.530 [XNIO-1 task-2] hcAL9JyGTo6sKE-U9YdfHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.566 [XNIO-1 task-2] uymaQ7TETrCMUgrhDlYH8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.566 [XNIO-1 task-2] uymaQ7TETrCMUgrhDlYH8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.566 [XNIO-1 task-2] uymaQ7TETrCMUgrhDlYH8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.567 [XNIO-1 task-2] uymaQ7TETrCMUgrhDlYH8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.622 [XNIO-1 task-2] evSdAo9bQteMYOLmmWatOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.622 [XNIO-1 task-2] evSdAo9bQteMYOLmmWatOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.623 [XNIO-1 task-2] evSdAo9bQteMYOLmmWatOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.721 [XNIO-1 task-2] eevbZLDATQqHsFuQb-gaWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.721 [XNIO-1 task-2] eevbZLDATQqHsFuQb-gaWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.721 [XNIO-1 task-2] eevbZLDATQqHsFuQb-gaWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.723 [XNIO-1 task-2] eevbZLDATQqHsFuQb-gaWw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.731 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1c6348e5 +16:29:38.747 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.747 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.747 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.748 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.748 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.749 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.749 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.749 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:38.750 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:38.750 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.750 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.750 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e93e8135-3b51-4a69-a294-2bf38f24","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:38.753 [XNIO-1 task-2] Diq-NeAfQ1y7zOSBouW1cQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:38.757 [XNIO-1 task-2] 3niD_fVeTKWCgTbAEAfcSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1abc349b-4fa2-400f-805c-0bb6d9fce578 +16:29:38.757 [XNIO-1 task-2] 3niD_fVeTKWCgTbAEAfcSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.757 [XNIO-1 task-2] 3niD_fVeTKWCgTbAEAfcSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:38.758 [XNIO-1 task-2] 3niD_fVeTKWCgTbAEAfcSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1abc349b-4fa2-400f-805c-0bb6d9fce578 +16:29:38.763 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1c6348e5 +16:29:38.764 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.764 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.765 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.765 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.766 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.766 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.766 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.766 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:38.766 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:38.766 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.767 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.767 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"277236f9-a192-4882-b5b5-9bd46a9d","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:38.768 [XNIO-1 task-2] D0X4vFyITKyo0jrBXLKd3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:38.773 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.774 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.774 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.775 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.776 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:38.776 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe1ca658-f13d-4be7-aa03-8d8f728b38fe", {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:38.776 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:38.776 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:38.776 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fcd33a1d-40cd-4f19-b22d-f980ced9", {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:38.776 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:38.776 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.777 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcd33a1d-40cd-4f19-b22d-f980ced9","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:38.777 [XNIO-1 task-2] IuExHISNRM6y5QfO5GjOmQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:38.784 [XNIO-1 task-2] FVzlZggNT_6X3fSVuQhBpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9e2902ba-abf6-4782-8703-058476838594 +16:29:38.784 [XNIO-1 task-2] FVzlZggNT_6X3fSVuQhBpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.784 [XNIO-1 task-2] FVzlZggNT_6X3fSVuQhBpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:38.785 [XNIO-1 task-2] FVzlZggNT_6X3fSVuQhBpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9e2902ba-abf6-4782-8703-058476838594 +16:29:38.802 [XNIO-1 task-2] crQxMsPcRzO_Wfu4L67VYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.802 [XNIO-1 task-2] crQxMsPcRzO_Wfu4L67VYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.803 [XNIO-1 task-2] crQxMsPcRzO_Wfu4L67VYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.871 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.871 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.872 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.873 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.873 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.873 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.873 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.874 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:38.874 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:38.874 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.874 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.874 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"81e1289d-3d32-40b4-bc07-965e3550","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:38.877 [XNIO-1 task-2] 2MeYOCZATYSWofSkagC9cw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:38.881 [XNIO-1 task-2] d3eA-Fh3Ty-52pz7DePV6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.881 [XNIO-1 task-2] d3eA-Fh3Ty-52pz7DePV6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.881 [XNIO-1 task-2] d3eA-Fh3Ty-52pz7DePV6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.913 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e9535d54 +16:29:38.921 [XNIO-1 task-2] he4pvXDvQZyjPvXr5QkICw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ff38b92a-ff20-4a28-98f1-e21d718f1a77, base path is set to: null +16:29:38.921 [XNIO-1 task-2] he4pvXDvQZyjPvXr5QkICw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.921 [XNIO-1 task-2] he4pvXDvQZyjPvXr5QkICw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:38.921 [XNIO-1 task-2] he4pvXDvQZyjPvXr5QkICw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ff38b92a-ff20-4a28-98f1-e21d718f1a77, base path is set to: null +16:29:38.922 [XNIO-1 task-2] he4pvXDvQZyjPvXr5QkICw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", clientId) +16:29:38.936 [XNIO-1 task-2] ZBO85zQoRyubgySI1KKkAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.937 [XNIO-1 task-2] ZBO85zQoRyubgySI1KKkAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.937 [XNIO-1 task-2] ZBO85zQoRyubgySI1KKkAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.937 [XNIO-1 task-2] ZBO85zQoRyubgySI1KKkAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.951 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.951 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.952 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:38.953 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:38.953 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:38.954 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe1ca658-f13d-4be7-aa03-8d8f728b38fe", {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:38.955 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:38.956 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:38.956 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG com.networknt.schema.TypeValidator debug - validate( "17fea1cf-0d84-4e99-a39d-29c3306d", {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:38.956 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:38.956 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"17fea1cf-0d84-4e99-a39d-29c3306d","clientDesc":"fe1ca658-f13d-4be7-aa03-8d8f728b38fe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:38.957 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:38.957 [XNIO-1 task-2] ghLkh8zMRSO9eIOkddyUwA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:38.963 [XNIO-1 task-2] FjGJNTn9S2aoKLXZzKjPYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.963 [XNIO-1 task-2] FjGJNTn9S2aoKLXZzKjPYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.967 [XNIO-1 task-2] FjGJNTn9S2aoKLXZzKjPYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.968 [XNIO-1 task-2] FjGJNTn9S2aoKLXZzKjPYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:38.985 [XNIO-1 task-2] LQZzB5LIQnO93XdCYeMO7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:38.985 [XNIO-1 task-2] LQZzB5LIQnO93XdCYeMO7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:38.985 [XNIO-1 task-2] LQZzB5LIQnO93XdCYeMO7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.025 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.025 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.026 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.027 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.028 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0094cbf1-3bce-4c4c-8ef7-e2feb6a8","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:39.031 [XNIO-1 task-2] IdcMdyh7TLyUPQsdLtf6_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:39.036 [XNIO-1 task-2] LZvUjxWNRZ6_32Jgb0W_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1598e7f-fa18-45d6-ad14-5330767b6e38 +16:29:39.036 [XNIO-1 task-2] LZvUjxWNRZ6_32Jgb0W_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.036 [XNIO-1 task-2] LZvUjxWNRZ6_32Jgb0W_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.036 [XNIO-1 task-2] LZvUjxWNRZ6_32Jgb0W_8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1598e7f-fa18-45d6-ad14-5330767b6e38 +16:29:39.046 [XNIO-1 task-2] Xp0gKgCKTcKe5oOKufJddw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.047 [XNIO-1 task-2] Xp0gKgCKTcKe5oOKufJddw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.047 [XNIO-1 task-2] Xp0gKgCKTcKe5oOKufJddw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.047 [XNIO-1 task-2] Xp0gKgCKTcKe5oOKufJddw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.114 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.115 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.115 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.116 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.117 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.117 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.117 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.118 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:39.118 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:39.118 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.119 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.119 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d4ea4a-6e46-4bbe-bddc-c63d8cc1","clientDesc":"19a1bb55-24f1-48c7-85ed-416582cc167a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:39.119 [XNIO-1 task-2] I9np_TtRTo2iyoChYRTG3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:39.123 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.123 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.124 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.125 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.125 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e9535d54 +16:29:39.125 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:39.125 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82a18114-179d-4066-ad93-d07c84d2b8ca", {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:39.126 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:39.126 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:39.126 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4372e529-f5e5-4261-a4d3-dc66f3c3", {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:39.126 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:39.126 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4372e529-f5e5-4261-a4d3-dc66f3c3","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:39.127 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:39.127 [XNIO-1 task-2] TR7b6YzfRo-i8oCEneNeYQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:39.153 [XNIO-1 task-2] ftNXF8gkTMCQScOih_ttrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1b14a55-712d-42a0-a9bb-42502c9051d9, base path is set to: null +16:29:39.154 [XNIO-1 task-2] ftNXF8gkTMCQScOih_ttrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.154 [XNIO-1 task-2] ftNXF8gkTMCQScOih_ttrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:39.154 [XNIO-1 task-2] ftNXF8gkTMCQScOih_ttrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d1b14a55-712d-42a0-a9bb-42502c9051d9, base path is set to: null +16:29:39.155 [XNIO-1 task-2] ftNXF8gkTMCQScOih_ttrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d1b14a55-712d-42a0-a9bb-42502c9051d9", "d1b14a55-712d-42a0-a9bb-42502c9051d9", clientId) +16:29:39.171 [XNIO-1 task-2] nmiR9h-2Q12KbLTIe4QXOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.171 [XNIO-1 task-2] nmiR9h-2Q12KbLTIe4QXOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.171 [XNIO-1 task-2] nmiR9h-2Q12KbLTIe4QXOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.172 [XNIO-1 task-2] nmiR9h-2Q12KbLTIe4QXOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.233 [XNIO-1 task-2] M8LKB-lOQh6ttXrtHhdFVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1598e7f-fa18-45d6-ad14-5330767b6e38 +16:29:39.233 [XNIO-1 task-2] M8LKB-lOQh6ttXrtHhdFVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.234 [XNIO-1 task-2] M8LKB-lOQh6ttXrtHhdFVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.234 [XNIO-1 task-2] M8LKB-lOQh6ttXrtHhdFVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e1598e7f-fa18-45d6-ad14-5330767b6e38 +16:29:39.242 [XNIO-1 task-2] 3FsMVT4yRt60m70OYy3enA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.242 [XNIO-1 task-2] 3FsMVT4yRt60m70OYy3enA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.243 [XNIO-1 task-2] 3FsMVT4yRt60m70OYy3enA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.244 [XNIO-1 task-2] 3FsMVT4yRt60m70OYy3enA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.261 [XNIO-1 task-2] akrMu_ulRjmoBacYSMtoDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1abc349b-4fa2-400f-805c-0bb6d9fce578, base path is set to: null +16:29:39.262 [XNIO-1 task-2] akrMu_ulRjmoBacYSMtoDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.262 [XNIO-1 task-2] akrMu_ulRjmoBacYSMtoDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:39.262 [XNIO-1 task-2] akrMu_ulRjmoBacYSMtoDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1abc349b-4fa2-400f-805c-0bb6d9fce578, base path is set to: null +16:29:39.263 [XNIO-1 task-2] akrMu_ulRjmoBacYSMtoDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1abc349b-4fa2-400f-805c-0bb6d9fce578", "1abc349b-4fa2-400f-805c-0bb6d9fce578", clientId) +16:29:39.271 [XNIO-1 task-2] xwjbx9LDRS2m_BFFHq5Rew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.272 [XNIO-1 task-2] xwjbx9LDRS2m_BFFHq5Rew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.272 [XNIO-1 task-2] xwjbx9LDRS2m_BFFHq5Rew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.295 [XNIO-1 task-2] AE04GB32RBKjIyDdM4cGBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2af7cba0-f8ec-405a-9f76-73361d607b1e +16:29:39.295 [XNIO-1 task-2] AE04GB32RBKjIyDdM4cGBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.295 [XNIO-1 task-2] AE04GB32RBKjIyDdM4cGBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.295 [XNIO-1 task-2] AE04GB32RBKjIyDdM4cGBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2af7cba0-f8ec-405a-9f76-73361d607b1e +16:29:39.299 [XNIO-1 task-2] IMv3ncHiSmepESGqVUlIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.299 [XNIO-1 task-2] IMv3ncHiSmepESGqVUlIIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.300 [XNIO-1 task-2] IMv3ncHiSmepESGqVUlIIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.317 [XNIO-1 task-2] UUnmFz_SQW6QPalK8ejk9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd685456-0e70-498c-a927-ad28123496a5, base path is set to: null +16:29:39.317 [XNIO-1 task-2] UUnmFz_SQW6QPalK8ejk9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.317 [XNIO-1 task-2] UUnmFz_SQW6QPalK8ejk9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:39.317 [XNIO-1 task-2] UUnmFz_SQW6QPalK8ejk9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd685456-0e70-498c-a927-ad28123496a5, base path is set to: null +16:29:39.317 [XNIO-1 task-2] UUnmFz_SQW6QPalK8ejk9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "dd685456-0e70-498c-a927-ad28123496a5", "dd685456-0e70-498c-a927-ad28123496a5", clientId) +16:29:39.325 [XNIO-1 task-2] YY_459eUScCdnqBJI_883g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3158caa9-9581-473d-afe4-fd0c3d1d7092 +16:29:39.325 [XNIO-1 task-2] YY_459eUScCdnqBJI_883g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.326 [XNIO-1 task-2] YY_459eUScCdnqBJI_883g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.326 [XNIO-1 task-2] YY_459eUScCdnqBJI_883g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3158caa9-9581-473d-afe4-fd0c3d1d7092 +16:29:39.330 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.330 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.331 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.332 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3baa4751-e508-4501-a471-6b359934","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:39.333 [XNIO-1 task-2] 0oHr8VnkQmaDbQ8h0DXAzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:39.336 [XNIO-1 task-2] oUQ3SF0WQdq7JpdYLvPalA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.336 [XNIO-1 task-2] oUQ3SF0WQdq7JpdYLvPalA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.336 [XNIO-1 task-2] oUQ3SF0WQdq7JpdYLvPalA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.370 [XNIO-1 task-2] odyn6rvASZKBDghZMiGpRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38a85312-89f5-488c-8545-70d31be267d0 +16:29:39.370 [XNIO-1 task-2] odyn6rvASZKBDghZMiGpRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.370 [XNIO-1 task-2] odyn6rvASZKBDghZMiGpRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.370 [XNIO-1 task-2] odyn6rvASZKBDghZMiGpRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38a85312-89f5-488c-8545-70d31be267d0 +16:29:39.381 [XNIO-1 task-2] Z_qvWkHZS4OSLW9m1i7CEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.381 [XNIO-1 task-2] Z_qvWkHZS4OSLW9m1i7CEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.382 [XNIO-1 task-2] Z_qvWkHZS4OSLW9m1i7CEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.387 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7709ceb2-68e5-40f6-8db9-4c6ac11f81f1 +16:29:39.389 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7709ceb2-68e5-40f6-8db9-4c6ac11f81f1 +16:29:39.398 [XNIO-1 task-2] zQGDkeJkS5m9jqHw2o9f_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.398 [XNIO-1 task-2] zQGDkeJkS5m9jqHw2o9f_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.398 [XNIO-1 task-2] zQGDkeJkS5m9jqHw2o9f_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.416 [XNIO-1 task-2] oSjZ7V3YRh-mwSDEtUbalg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.417 [XNIO-1 task-2] oSjZ7V3YRh-mwSDEtUbalg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.417 [XNIO-1 task-2] oSjZ7V3YRh-mwSDEtUbalg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.418 [XNIO-1 task-2] oSjZ7V3YRh-mwSDEtUbalg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.436 [XNIO-1 task-2] VpICwpfkS_2qt6eaNpY9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3158caa9-9581-473d-afe4-fd0c3d1d7092 +16:29:39.436 [XNIO-1 task-2] VpICwpfkS_2qt6eaNpY9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.437 [XNIO-1 task-2] VpICwpfkS_2qt6eaNpY9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.437 [XNIO-1 task-2] VpICwpfkS_2qt6eaNpY9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3158caa9-9581-473d-afe4-fd0c3d1d7092 +16:29:39.446 [XNIO-1 task-2] 1Vnd_f9qRYmemDxIAsE63A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.446 [XNIO-1 task-2] 1Vnd_f9qRYmemDxIAsE63A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.447 [XNIO-1 task-2] 1Vnd_f9qRYmemDxIAsE63A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.464 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.465 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.465 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.466 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.466 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.466 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.466 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.466 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:39.466 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:39.467 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.467 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.467 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3508d41b-ea34-4eb0-b664-9f0d3578","clientDesc":"82a18114-179d-4066-ad93-d07c84d2b8ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:39.467 [XNIO-1 task-2] iVucNrgjRiy2DkMzgrq2pg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:39.471 [XNIO-1 task-2] 0DVtVyLtQ2SqPcO4QgavzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7736976d-f08a-4bbc-aa22-bd53e12e2ac7 +16:29:39.471 [XNIO-1 task-2] 0DVtVyLtQ2SqPcO4QgavzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.471 [XNIO-1 task-2] 0DVtVyLtQ2SqPcO4QgavzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.472 [XNIO-1 task-2] 0DVtVyLtQ2SqPcO4QgavzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7736976d-f08a-4bbc-aa22-bd53e12e2ac7 +16:29:39.476 [XNIO-1 task-2] fXNi0pnmRWG091JGCPHFuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.476 [XNIO-1 task-2] fXNi0pnmRWG091JGCPHFuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.476 [XNIO-1 task-2] fXNi0pnmRWG091JGCPHFuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.476 [XNIO-1 task-2] fXNi0pnmRWG091JGCPHFuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.546 [XNIO-1 task-2] YS-BHvABTqK3Swtid7W_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2af7cba0-f8ec-405a-9f76-73361d607b1e, base path is set to: null +16:29:39.546 [XNIO-1 task-2] YS-BHvABTqK3Swtid7W_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.546 [XNIO-1 task-2] YS-BHvABTqK3Swtid7W_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:39.547 [XNIO-1 task-2] YS-BHvABTqK3Swtid7W_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2af7cba0-f8ec-405a-9f76-73361d607b1e, base path is set to: null +16:29:39.547 [XNIO-1 task-2] YS-BHvABTqK3Swtid7W_iA DEBUG com.networknt.schema.TypeValidator debug - validate( "2af7cba0-f8ec-405a-9f76-73361d607b1e", "2af7cba0-f8ec-405a-9f76-73361d607b1e", clientId) +16:29:39.557 [XNIO-1 task-2] vDNBNsaDRo-6kUf0RcFpMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.558 [XNIO-1 task-2] vDNBNsaDRo-6kUf0RcFpMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.558 [XNIO-1 task-2] vDNBNsaDRo-6kUf0RcFpMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.628 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.628 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.629 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.630 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.630 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:39.630 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a8c19a09-9e17-4e10-be63-f2a27183288f", {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:39.630 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:39.631 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:39.631 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "067dfd06-8dbf-4f31-9075-36f5b7c7", {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:39.631 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:39.631 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"067dfd06-8dbf-4f31-9075-36f5b7c7","clientDesc":"a8c19a09-9e17-4e10-be63-f2a27183288f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:39.681 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b8f9651a +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:39.703 [XNIO-1 task-2] 8grSz4lNShu5PzTmEOHEuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:39.745 [XNIO-1 task-2] StoMxjrnRWmNyNyRYFA-zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.745 [XNIO-1 task-2] StoMxjrnRWmNyNyRYFA-zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.746 [XNIO-1 task-2] StoMxjrnRWmNyNyRYFA-zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.772 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b8f9651a +16:29:39.795 [XNIO-1 task-2] Q969E85VSm2QRtYBmdFH6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7736976d-f08a-4bbc-aa22-bd53e12e2ac7 +16:29:39.795 [XNIO-1 task-2] Q969E85VSm2QRtYBmdFH6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.795 [XNIO-1 task-2] Q969E85VSm2QRtYBmdFH6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.795 [XNIO-1 task-2] Q969E85VSm2QRtYBmdFH6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7736976d-f08a-4bbc-aa22-bd53e12e2ac7 +16:29:39.822 [XNIO-1 task-2] y-RyHBVVSnOBKpJTfXmksA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7709ceb2-68e5-40f6-8db9-4c6ac11f81f1, base path is set to: null +16:29:39.822 [XNIO-1 task-2] y-RyHBVVSnOBKpJTfXmksA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.822 [XNIO-1 task-2] y-RyHBVVSnOBKpJTfXmksA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:39.823 [XNIO-1 task-2] y-RyHBVVSnOBKpJTfXmksA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7709ceb2-68e5-40f6-8db9-4c6ac11f81f1, base path is set to: null +16:29:39.823 [XNIO-1 task-2] y-RyHBVVSnOBKpJTfXmksA DEBUG com.networknt.schema.TypeValidator debug - validate( "7709ceb2-68e5-40f6-8db9-4c6ac11f81f1", "7709ceb2-68e5-40f6-8db9-4c6ac11f81f1", clientId) +16:29:39.833 [XNIO-1 task-2] FIb23JAoQOWYXibVyDTufw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28e92236-904a-4ad7-8cb2-0b0dc0d81b31, base path is set to: null +16:29:39.833 [XNIO-1 task-2] FIb23JAoQOWYXibVyDTufw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.833 [XNIO-1 task-2] FIb23JAoQOWYXibVyDTufw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:39.833 [XNIO-1 task-2] FIb23JAoQOWYXibVyDTufw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28e92236-904a-4ad7-8cb2-0b0dc0d81b31, base path is set to: null +16:29:39.834 [XNIO-1 task-2] FIb23JAoQOWYXibVyDTufw DEBUG com.networknt.schema.TypeValidator debug - validate( "28e92236-904a-4ad7-8cb2-0b0dc0d81b31", "28e92236-904a-4ad7-8cb2-0b0dc0d81b31", clientId) +16:29:39.863 [XNIO-1 task-2] EY6jC5BbTR6o-Uyn-sR_Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0fc25b2c-e204-4d04-8acd-75c6bf9dac27 +16:29:39.863 [XNIO-1 task-2] EY6jC5BbTR6o-Uyn-sR_Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.863 [XNIO-1 task-2] EY6jC5BbTR6o-Uyn-sR_Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.863 [XNIO-1 task-2] EY6jC5BbTR6o-Uyn-sR_Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0fc25b2c-e204-4d04-8acd-75c6bf9dac27 +16:29:39.870 [XNIO-1 task-2] cmjlSZjPTTibuj4c-taCGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.870 [XNIO-1 task-2] cmjlSZjPTTibuj4c-taCGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.871 [XNIO-1 task-2] cmjlSZjPTTibuj4c-taCGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:39.898 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b8f9651a +16:29:39.951 [XNIO-1 task-2] 2Dy2gACqRg6VglWx4xvYKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/39c311fb-c218-4cf3-8ed5-91951b099faf, base path is set to: null +16:29:39.951 [XNIO-1 task-2] 2Dy2gACqRg6VglWx4xvYKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:39.951 [XNIO-1 task-2] 2Dy2gACqRg6VglWx4xvYKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:39.952 [XNIO-1 task-2] 2Dy2gACqRg6VglWx4xvYKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/39c311fb-c218-4cf3-8ed5-91951b099faf, base path is set to: null +16:29:39.952 [XNIO-1 task-2] 2Dy2gACqRg6VglWx4xvYKw DEBUG com.networknt.schema.TypeValidator debug - validate( "39c311fb-c218-4cf3-8ed5-91951b099faf", "39c311fb-c218-4cf3-8ed5-91951b099faf", clientId) +16:29:39.986 [XNIO-1 task-2] ICLHH8OpRZeBYmUY4XFD4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0fc25b2c-e204-4d04-8acd-75c6bf9dac27 +16:29:39.986 [XNIO-1 task-2] ICLHH8OpRZeBYmUY4XFD4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:39.986 [XNIO-1 task-2] ICLHH8OpRZeBYmUY4XFD4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:39.986 [XNIO-1 task-2] ICLHH8OpRZeBYmUY4XFD4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0fc25b2c-e204-4d04-8acd-75c6bf9dac27 +16:29:40.001 [XNIO-1 task-2] 25DyCny7TRGjL6CAXMkBPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.001 [XNIO-1 task-2] 25DyCny7TRGjL6CAXMkBPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.002 [XNIO-1 task-2] 25DyCny7TRGjL6CAXMkBPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.022 [XNIO-1 task-2] t11xlucBT1CpttVgBz_a4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c3e37c7-269e-47ff-9abf-60185c5e7ef0, base path is set to: null +16:29:40.022 [XNIO-1 task-2] t11xlucBT1CpttVgBz_a4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.022 [XNIO-1 task-2] t11xlucBT1CpttVgBz_a4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:40.023 [XNIO-1 task-2] t11xlucBT1CpttVgBz_a4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c3e37c7-269e-47ff-9abf-60185c5e7ef0, base path is set to: null +16:29:40.023 [XNIO-1 task-2] t11xlucBT1CpttVgBz_a4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7c3e37c7-269e-47ff-9abf-60185c5e7ef0", "7c3e37c7-269e-47ff-9abf-60185c5e7ef0", clientId) +16:29:40.112 [XNIO-1 task-2] Dn-VIwn2RGKMBz4WAQdWXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.113 [XNIO-1 task-2] Dn-VIwn2RGKMBz4WAQdWXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.113 [XNIO-1 task-2] Dn-VIwn2RGKMBz4WAQdWXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.136 [XNIO-1 task-2] 0ZERPFnSQoa9DafF9qM1Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c902b3e9-2498-4b4d-a931-61a4539eb9eb +16:29:40.136 [XNIO-1 task-2] 0ZERPFnSQoa9DafF9qM1Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.136 [XNIO-1 task-2] 0ZERPFnSQoa9DafF9qM1Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:40.136 [XNIO-1 task-2] 0ZERPFnSQoa9DafF9qM1Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c902b3e9-2498-4b4d-a931-61a4539eb9eb +16:29:40.144 [XNIO-1 task-2] Mv4CzxJLQ0aJ-ktUxHMVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.144 [XNIO-1 task-2] Mv4CzxJLQ0aJ-ktUxHMVVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.144 [XNIO-1 task-2] Mv4CzxJLQ0aJ-ktUxHMVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.145 [XNIO-1 task-2] Mv4CzxJLQ0aJ-ktUxHMVVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.219 [XNIO-1 task-2] soitUr8IT2eTJZmwHehy0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.220 [XNIO-1 task-2] soitUr8IT2eTJZmwHehy0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.220 [XNIO-1 task-2] soitUr8IT2eTJZmwHehy0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.220 [XNIO-1 task-2] soitUr8IT2eTJZmwHehy0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.250 [XNIO-1 task-2] eSXkZUHoQuCDZ6UjUpHbgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.251 [XNIO-1 task-2] eSXkZUHoQuCDZ6UjUpHbgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.251 [XNIO-1 task-2] eSXkZUHoQuCDZ6UjUpHbgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.270 [XNIO-1 task-2] ad7HxC3GQQucTQj7W1bFPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.270 [XNIO-1 task-2] ad7HxC3GQQucTQj7W1bFPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.271 [XNIO-1 task-2] ad7HxC3GQQucTQj7W1bFPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.271 [XNIO-1 task-2] ad7HxC3GQQucTQj7W1bFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.336 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.336 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.336 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.337 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.337 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.337 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.337 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.338 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.338 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.338 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.338 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.338 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6957b601-0bb9-40dd-adab-74207204","clientDesc":"18a8d470-b7b6-495c-adb5-d918153843b2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.429 [XNIO-1 task-2] LZi9g-hgTEa85t-gIRdOcA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:40.439 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.439 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.439 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.441 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.441 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:40.441 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG com.networknt.schema.TypeValidator debug - validate( "5dd08657-032f-4f1d-ba16-74ea164d8996", {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:40.441 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.441 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.442 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG com.networknt.schema.TypeValidator debug - validate( "1a72f97a-7a74-4d75-8910-6fd1a3d1", {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:40.442 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:40.443 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1a72f97a-7a74-4d75-8910-6fd1a3d1","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:40.443 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.444 [XNIO-1 task-2] y2LZ-2O1RUyaj-Bkz27ihw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:40.449 [XNIO-1 task-2] DWL3CrR4S0K1I0VKCkyB_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.450 [XNIO-1 task-2] DWL3CrR4S0K1I0VKCkyB_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.450 [XNIO-1 task-2] DWL3CrR4S0K1I0VKCkyB_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.450 [XNIO-1 task-2] DWL3CrR4S0K1I0VKCkyB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.487 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.487 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.488 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.489 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7cdb4eb-df68-4606-a3f4-fdb2206e","clientDesc":"64be833a-ab68-4c15-9d2f-a666449dbd9f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.490 [XNIO-1 task-2] RO5cH9_8TiiB_5a_u61I6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:40.493 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.493 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.494 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.494 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1e610d17-53f9-43c6-a53f-ee451e7edc5f", {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e37f2067-e7da-4504-bf17-d8951659", {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e37f2067-e7da-4504-bf17-d8951659","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:40.495 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.496 [XNIO-1 task-2] K12pLiYhQGGYpUP_k-YMzQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:40.501 [XNIO-1 task-2] gk31_Hp8Q1uiR9TAb9iSqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.501 [XNIO-1 task-2] gk31_Hp8Q1uiR9TAb9iSqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.501 [XNIO-1 task-2] gk31_Hp8Q1uiR9TAb9iSqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.526 [XNIO-1 task-2] hSs4r0v1Rb2DkjZk8iT7lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c3e37c7-269e-47ff-9abf-60185c5e7ef0, base path is set to: null +16:29:40.526 [XNIO-1 task-2] hSs4r0v1Rb2DkjZk8iT7lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.526 [XNIO-1 task-2] hSs4r0v1Rb2DkjZk8iT7lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:40.526 [XNIO-1 task-2] hSs4r0v1Rb2DkjZk8iT7lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c3e37c7-269e-47ff-9abf-60185c5e7ef0, base path is set to: null +16:29:40.527 [XNIO-1 task-2] hSs4r0v1Rb2DkjZk8iT7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7c3e37c7-269e-47ff-9abf-60185c5e7ef0", "7c3e37c7-269e-47ff-9abf-60185c5e7ef0", clientId) +16:29:40.538 [XNIO-1 task-2] fgXq1OG0RGK0BfHh3Esucg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.538 [XNIO-1 task-2] fgXq1OG0RGK0BfHh3Esucg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.539 [XNIO-1 task-2] fgXq1OG0RGK0BfHh3Esucg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.586 [XNIO-1 task-2] 561a9MwcR1mALUoZcQN39A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac +16:29:40.586 [XNIO-1 task-2] 561a9MwcR1mALUoZcQN39A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.586 [XNIO-1 task-2] 561a9MwcR1mALUoZcQN39A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:40.586 [XNIO-1 task-2] 561a9MwcR1mALUoZcQN39A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac +16:29:40.590 [XNIO-1 task-2] aLahsF01QBWOordisxbP6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73, base path is set to: null +16:29:40.590 [XNIO-1 task-2] aLahsF01QBWOordisxbP6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.590 [XNIO-1 task-2] aLahsF01QBWOordisxbP6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:40.590 [XNIO-1 task-2] aLahsF01QBWOordisxbP6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73, base path is set to: null +16:29:40.590 [XNIO-1 task-2] aLahsF01QBWOordisxbP6g DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:40.651 [XNIO-1 task-2] aLahsF01QBWOordisxbP6g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:40.675 [XNIO-1 task-2] 445aCPEuSiG6LVxuhJGxNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac, base path is set to: null +Jun 28, 2024 4:29:40 PM com.hazelcast.map.impl.operation.DeleteOperation +16:29:40.675 [XNIO-1 task-2] 445aCPEuSiG6LVxuhJGxNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.676 [XNIO-1 task-2] 445aCPEuSiG6LVxuhJGxNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.676 [XNIO-1 task-2] 445aCPEuSiG6LVxuhJGxNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:40.676 [XNIO-1 task-2] 445aCPEuSiG6LVxuhJGxNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:40.714 [XNIO-1 task-2] 445aCPEuSiG6LVxuhJGxNQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.715 [XNIO-1 task-2] 445aCPEuSiG6LVxuhJGxNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:40.730 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.730 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.731 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.731 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.731 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:40.731 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "5dd08657-032f-4f1d-ba16-74ea164d8996", {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:40.731 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.731 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.732 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "a21eeeaa-7aa4-4931-9af4-13c1bf29", {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:40.732 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:40.732 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a21eeeaa-7aa4-4931-9af4-13c1bf29","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:40.732 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.732 [XNIO-1 task-2] XHiGhwhXSGClly5TO6rbzg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:40.736 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.737 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.737 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.738 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.739 [XNIO-1 task-2] E3rAJ_9KSVChpxDBAqt85w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"776a69f3-fdd5-499c-83ee-44b98be1","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +16:29:40.765 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +16:29:40.765 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37b53dd7-69b4-447f-b0c2-e0447094","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.766 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: +java.lang.NullPointerException: Null key is not allowed! + + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.767 [XNIO-1 task-2] vJZrImMTSn-xrzUE6G4veA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:40.774 [XNIO-1 task-2] qh-5IbhBScK0KBxVLLsUpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.774 [XNIO-1 task-2] qh-5IbhBScK0KBxVLLsUpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.774 [XNIO-1 task-2] qh-5IbhBScK0KBxVLLsUpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.811 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.811 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.812 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.812 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.813 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1dbb011-7e4a-4faf-9ec7-78d14366","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.814 [XNIO-1 task-2] AqQLYgcySBSHRs557QQMIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:40.818 [XNIO-1 task-2] eMxF9voZT96ktx3eBfYASg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.818 [XNIO-1 task-2] eMxF9voZT96ktx3eBfYASg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.819 [XNIO-1 task-2] eMxF9voZT96ktx3eBfYASg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.828 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9792f649-62ee-4bfb-8371-b9911635149a +16:29:40.854 [XNIO-1 task-2] tc2N8qS_SmGyiIScUvLPZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac, base path is set to: null +16:29:40.854 [XNIO-1 task-2] tc2N8qS_SmGyiIScUvLPZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.854 [XNIO-1 task-2] tc2N8qS_SmGyiIScUvLPZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:40.854 [XNIO-1 task-2] tc2N8qS_SmGyiIScUvLPZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac, base path is set to: null +16:29:40.856 [XNIO-1 task-2] tc2N8qS_SmGyiIScUvLPZw DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", clientId) +16:29:40.860 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:40.861 [XNIO-1 task-2] tc2N8qS_SmGyiIScUvLPZw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.862 [XNIO-1 task-2] tc2N8qS_SmGyiIScUvLPZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:40.872 [XNIO-1 task-2] Xhvv9OeoSAatkHXJOWBEGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668 +16:29:40.872 [XNIO-1 task-2] Xhvv9OeoSAatkHXJOWBEGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.872 [XNIO-1 task-2] Xhvv9OeoSAatkHXJOWBEGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:40.872 [XNIO-1 task-2] Xhvv9OeoSAatkHXJOWBEGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668 +16:29:40.888 [XNIO-1 task-2] dGJf8jblQ1-zc__tDFRoTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.889 [XNIO-1 task-2] dGJf8jblQ1-zc__tDFRoTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.889 [XNIO-1 task-2] dGJf8jblQ1-zc__tDFRoTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.889 [XNIO-1 task-2] dGJf8jblQ1-zc__tDFRoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.929 [XNIO-1 task-2] MzDRo69RSdeXM5fBsFSwJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.930 [XNIO-1 task-2] MzDRo69RSdeXM5fBsFSwJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.930 [XNIO-1 task-2] MzDRo69RSdeXM5fBsFSwJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.960 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.960 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:40.960 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.961 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.962 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a9c3b243-9e62-4ead-9a5e-26f4b31f","clientDesc":"34c9c244-d06c-49a7-860e-e9256ecd753e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:40.962 [XNIO-1 task-2] EE9nq3xHT7KCTR5CM28o4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:40.969 [XNIO-1 task-2] QCF3aswmSjaORAnYO3M92g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.969 [XNIO-1 task-2] QCF3aswmSjaORAnYO3M92g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.969 [XNIO-1 task-2] QCF3aswmSjaORAnYO3M92g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.994 [XNIO-1 task-2] ODOo8mZeSXq8_KLhSIlIUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:40.994 [XNIO-1 task-2] ODOo8mZeSXq8_KLhSIlIUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:40.994 [XNIO-1 task-2] ODOo8mZeSXq8_KLhSIlIUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:40.995 [XNIO-1 task-2] ODOo8mZeSXq8_KLhSIlIUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:41.014 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:398665ba +16:29:41.016 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:398665ba +16:29:41.044 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.044 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.045 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.045 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.045 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "81908ad0-88b8-47d4-9e5b-3325c0c275ac", {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7d9068f5-68d5-4eb3-8fd3-7ee2be8d", {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7d9068f5-68d5-4eb3-8fd3-7ee2be8d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.046 [XNIO-1 task-2] cESVcnj7T2-0MrdYwNRt5Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:41.050 [XNIO-1 task-2] j4FVNrIwQ5KJB1TJ-qpQXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e81b6e90-6cf4-476f-9af2-15acd98807f3, base path is set to: null +16:29:41.050 [XNIO-1 task-2] j4FVNrIwQ5KJB1TJ-qpQXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.050 [XNIO-1 task-2] j4FVNrIwQ5KJB1TJ-qpQXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:41.050 [XNIO-1 task-2] j4FVNrIwQ5KJB1TJ-qpQXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e81b6e90-6cf4-476f-9af2-15acd98807f3, base path is set to: null +16:29:41.050 [XNIO-1 task-2] j4FVNrIwQ5KJB1TJ-qpQXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e81b6e90-6cf4-476f-9af2-15acd98807f3", "e81b6e90-6cf4-476f-9af2-15acd98807f3", clientId) +16:29:41.054 [XNIO-1 task-2] 90kjG2X6R_WgviyKW_-sxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.054 [XNIO-1 task-2] 90kjG2X6R_WgviyKW_-sxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.055 [XNIO-1 task-2] 90kjG2X6R_WgviyKW_-sxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.070 [XNIO-1 task-2] cUdcJf_mSWiuKZXImL6_xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.071 [XNIO-1 task-2] cUdcJf_mSWiuKZXImL6_xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.071 [XNIO-1 task-2] cUdcJf_mSWiuKZXImL6_xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.071 [XNIO-1 task-2] cUdcJf_mSWiuKZXImL6_xw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.083 [XNIO-1 task-2] 1frQl12wQRCfADyBZNr1UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.084 [XNIO-1 task-2] 1frQl12wQRCfADyBZNr1UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.084 [XNIO-1 task-2] 1frQl12wQRCfADyBZNr1UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.084 [XNIO-1 task-2] 1frQl12wQRCfADyBZNr1UQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.100 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.100 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.100 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.101 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.101 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:41.101 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1e610d17-53f9-43c6-a53f-ee451e7edc5f", {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:41.101 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.101 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.102 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "59962aa7-4d30-43d1-b677-af10d53a", {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:41.102 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.102 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"59962aa7-4d30-43d1-b677-af10d53a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.102 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.102 [XNIO-1 task-2] 1Cd9Are0SZCXaU2xq5AV9w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:41.105 [XNIO-1 task-2] GCku1jowRGun6HTxqc880A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb, base path is set to: null +16:29:41.106 [XNIO-1 task-2] GCku1jowRGun6HTxqc880A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.106 [XNIO-1 task-2] GCku1jowRGun6HTxqc880A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:41.106 [XNIO-1 task-2] GCku1jowRGun6HTxqc880A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb, base path is set to: null +16:29:41.106 [XNIO-1 task-2] GCku1jowRGun6HTxqc880A DEBUG com.networknt.schema.TypeValidator debug - validate( "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", clientId) +16:29:41.131 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a57bf465 +16:29:41.131 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.132 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.132 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.133 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.134 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.134 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.134 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.135 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.135 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.135 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.135 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.135 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30fbebed-0819-4e93-84a9-787983bc","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.136 [XNIO-1 task-2] g5MiM2-4QhSfJ8aPCZL3DA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.146 [XNIO-1 task-2] Dq9p2FxOTfOyA5HW3MJ8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:41.147 [XNIO-1 task-2] Dq9p2FxOTfOyA5HW3MJ8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.147 [XNIO-1 task-2] Dq9p2FxOTfOyA5HW3MJ8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:41.147 [XNIO-1 task-2] Dq9p2FxOTfOyA5HW3MJ8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:41.152 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.152 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.153 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.153 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.153 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.153 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.154 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.154 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.154 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.154 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.154 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.154 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"92b49aa5-b8bb-4890-9bb9-10e86671","clientDesc":"f6bd3f6a-4a18-4b1b-bf86-c1ef42a24b2a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.156 [XNIO-1 task-2] kTcJ_eaPQOOGnPjtWt6Okg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.160 [XNIO-1 task-2] OXODo-m7Qsm-vk4-vRX2LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.160 [XNIO-1 task-2] OXODo-m7Qsm-vk4-vRX2LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.160 [XNIO-1 task-2] OXODo-m7Qsm-vk4-vRX2LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.161 [XNIO-1 task-2] OXODo-m7Qsm-vk4-vRX2LQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.176 [XNIO-1 task-2] F91-WCL4RxiDvDGW9lNDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/216c1dcd-fa8e-4eff-88b7-a3e98f2b0557 +16:29:41.176 [XNIO-1 task-2] F91-WCL4RxiDvDGW9lNDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.176 [XNIO-1 task-2] F91-WCL4RxiDvDGW9lNDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:41.176 [XNIO-1 task-2] F91-WCL4RxiDvDGW9lNDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/216c1dcd-fa8e-4eff-88b7-a3e98f2b0557 +16:29:41.184 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.184 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.184 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.185 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.185 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.185 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.189 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.189 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.189 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.189 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.189 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.189 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c7b6b53-9eb3-4b50-a801-f55ca2e3","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.190 [XNIO-1 task-2] foN1h7zhSUWrGAk5PmSYYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.196 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.196 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.196 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG com.networknt.schema.TypeValidator debug - validate( "26341443-1102-444e-8604-2c7150b0e8a1", {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG com.networknt.schema.TypeValidator debug - validate( "70541f09-e171-4005-b2cd-cb077663", {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"70541f09-e171-4005-b2cd-cb077663","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.197 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.198 [XNIO-1 task-2] zmUtvt_mQGybBVm8PXDtBA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:41.201 [XNIO-1 task-2] dw-mYXxDRTeiv-sNCPizrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.202 [XNIO-1 task-2] dw-mYXxDRTeiv-sNCPizrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.202 [XNIO-1 task-2] dw-mYXxDRTeiv-sNCPizrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.202 [XNIO-1 task-2] dw-mYXxDRTeiv-sNCPizrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.226 [XNIO-1 task-2] 0dSOyJIrQy2r6wwZimxxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331, base path is set to: null +16:29:41.226 [XNIO-1 task-2] 0dSOyJIrQy2r6wwZimxxZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.226 [XNIO-1 task-2] 0dSOyJIrQy2r6wwZimxxZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:41.226 [XNIO-1 task-2] 0dSOyJIrQy2r6wwZimxxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331, base path is set to: null +16:29:41.226 [XNIO-1 task-2] 0dSOyJIrQy2r6wwZimxxZg DEBUG com.networknt.schema.TypeValidator debug - validate( "56db2545-5603-4d9c-b7d7-c9cd21829331", "56db2545-5603-4d9c-b7d7-c9cd21829331", clientId) +16:29:41.246 [XNIO-1 task-2] QkiSetJgQ0isUwM6j5JCrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331, base path is set to: null +16:29:41.246 [XNIO-1 task-2] QkiSetJgQ0isUwM6j5JCrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.247 [XNIO-1 task-2] QkiSetJgQ0isUwM6j5JCrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:41.247 [XNIO-1 task-2] QkiSetJgQ0isUwM6j5JCrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331, base path is set to: null +16:29:41.247 [XNIO-1 task-2] QkiSetJgQ0isUwM6j5JCrw DEBUG com.networknt.schema.TypeValidator debug - validate( "56db2545-5603-4d9c-b7d7-c9cd21829331", "56db2545-5603-4d9c-b7d7-c9cd21829331", clientId) +16:29:41.248 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:223cda23 +16:29:41.251 [XNIO-1 task-2] _xkvuuytQZ2pQozNfa5eSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:41.251 [XNIO-1 task-2] _xkvuuytQZ2pQozNfa5eSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.251 [XNIO-1 task-2] _xkvuuytQZ2pQozNfa5eSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:41.252 [XNIO-1 task-2] _xkvuuytQZ2pQozNfa5eSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:41.258 [XNIO-1 task-2] 9sdexdAzTay4r3jTYX-68g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f, base path is set to: null +16:29:41.258 [XNIO-1 task-2] 9sdexdAzTay4r3jTYX-68g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.258 [XNIO-1 task-2] 9sdexdAzTay4r3jTYX-68g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:41.258 [XNIO-1 task-2] 9sdexdAzTay4r3jTYX-68g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f, base path is set to: null +16:29:41.259 [XNIO-1 task-2] 9sdexdAzTay4r3jTYX-68g DEBUG com.networknt.schema.TypeValidator debug - validate( "f7529e7e-ace0-4e36-aed2-4535998eae0f", "f7529e7e-ace0-4e36-aed2-4535998eae0f", clientId) +16:29:41.299 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:57be0a7c-e732-429c-8063-7f0562d712cc +16:29:41.304 [XNIO-1 task-2] 9sdexdAzTay4r3jTYX-68g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.304 [XNIO-1 task-2] 9sdexdAzTay4r3jTYX-68g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.313 [XNIO-1 task-2] rsbzCQbXTvu-OazpFHOk3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.314 [XNIO-1 task-2] rsbzCQbXTvu-OazpFHOk3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.318 [XNIO-1 task-2] rsbzCQbXTvu-OazpFHOk3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.327 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:740d5a10-bae7-4eb2-a7cd-49d343d84bfa +16:29:41.332 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:740d5a10-bae7-4eb2-a7cd-49d343d84bfa +16:29:41.409 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.409 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.410 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.410 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.410 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:41.410 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1e610d17-53f9-43c6-a53f-ee451e7edc5f", {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:41.410 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.411 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.411 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "15242d6b-1c0c-487f-9a28-ee14207a", {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:41.411 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.411 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"15242d6b-1c0c-487f-9a28-ee14207a","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.411 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.411 [XNIO-1 task-2] qNdpeEkUQ6Wi-TvBu9ZUdg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:41.417 [XNIO-1 task-2] KJ6_jZKxT6e7XVMPbcoVLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c, base path is set to: null +16:29:41.417 [XNIO-1 task-2] KJ6_jZKxT6e7XVMPbcoVLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.417 [XNIO-1 task-2] KJ6_jZKxT6e7XVMPbcoVLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:41.417 [XNIO-1 task-2] KJ6_jZKxT6e7XVMPbcoVLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c, base path is set to: null +16:29:41.418 [XNIO-1 task-2] KJ6_jZKxT6e7XVMPbcoVLA DEBUG com.networknt.schema.TypeValidator debug - validate( "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", clientId) +16:29:41.426 [XNIO-1 task-2] xprPNOxzRYu3rPv17cMUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f +16:29:41.426 [XNIO-1 task-2] xprPNOxzRYu3rPv17cMUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.426 [XNIO-1 task-2] xprPNOxzRYu3rPv17cMUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:41.426 [XNIO-1 task-2] xprPNOxzRYu3rPv17cMUew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f +16:29:41.449 [XNIO-1 task-2] xprPNOxzRYu3rPv17cMUew ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.470 [XNIO-1 task-2] xprPNOxzRYu3rPv17cMUew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.474 [XNIO-1 task-2] ANEPqJ-BRJuNBLo5RTSn-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.474 [XNIO-1 task-2] ANEPqJ-BRJuNBLo5RTSn-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.474 [XNIO-1 task-2] ANEPqJ-BRJuNBLo5RTSn-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.475 [XNIO-1 task-2] ANEPqJ-BRJuNBLo5RTSn-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.499 [XNIO-1 task-2] UNHjupPBT4yIMMhGtbZFCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.499 [XNIO-1 task-2] UNHjupPBT4yIMMhGtbZFCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.499 [XNIO-1 task-2] UNHjupPBT4yIMMhGtbZFCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.500 [XNIO-1 task-2] UNHjupPBT4yIMMhGtbZFCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.506 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2ee50b52 +16:29:41.547 [XNIO-1 task-2] iTphLjXaTVmH3Z1tgOtG_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.548 [XNIO-1 task-2] iTphLjXaTVmH3Z1tgOtG_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.548 [XNIO-1 task-2] iTphLjXaTVmH3Z1tgOtG_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.548 [XNIO-1 task-2] iTphLjXaTVmH3Z1tgOtG_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.571 [XNIO-1 task-2] eKlbShwHTU2PJVBAnwIhPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.571 [XNIO-1 task-2] eKlbShwHTU2PJVBAnwIhPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.572 [XNIO-1 task-2] eKlbShwHTU2PJVBAnwIhPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.578 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:084e3b47-b7aa-48b2-9949-9cabaa838761 +16:29:41.580 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:084e3b47-b7aa-48b2-9949-9cabaa838761 +16:29:41.593 [XNIO-1 task-2] R9FaOOhzS2C7sShiR6XtlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.594 [XNIO-1 task-2] R9FaOOhzS2C7sShiR6XtlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.594 [XNIO-1 task-2] R9FaOOhzS2C7sShiR6XtlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.623 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:affe05f1-03b1-489a-9dca-6f283a0fb86e +16:29:41.628 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.628 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.631 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5dd08657-032f-4f1d-ba16-74ea164d8996", {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f70960e0-a4df-4746-9c3e-cfc37be3", {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.632 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f70960e0-a4df-4746-9c3e-cfc37be3","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.633 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.633 [XNIO-1 task-2] LMOkGzAAQfKTS7uNt9d9DQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:41.637 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e4b5e731 +16:29:41.639 [XNIO-1 task-2] aG_-XUN0QUCNt_Pcaj6m2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c +16:29:41.639 [XNIO-1 task-2] aG_-XUN0QUCNt_Pcaj6m2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.639 [XNIO-1 task-2] aG_-XUN0QUCNt_Pcaj6m2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:41.639 [XNIO-1 task-2] aG_-XUN0QUCNt_Pcaj6m2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c +16:29:41.641 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e4b5e731 +16:29:41.645 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.646 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.647 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.649 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.649 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.649 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.650 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.650 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.650 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.650 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.650 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.650 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2714a022-cd4d-4a27-a67d-819d4c2b","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.651 [XNIO-1 task-2] 8JLyydeLQcyEhpvznXwQ0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.654 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.654 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.655 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.655 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.655 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:41.655 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f18b74b-564e-4a7e-9560-8c54f29365c1", {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:41.656 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.656 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.656 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3cc107ed-2ad8-4e18-b1eb-bd27e6a4", {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:41.656 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.656 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3cc107ed-2ad8-4e18-b1eb-bd27e6a4","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.656 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.656 [XNIO-1 task-2] cArsnDIrRBek565W_SJ1oQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:41.662 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.662 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.663 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.663 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.663 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.663 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.664 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.664 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.664 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.664 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.664 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.664 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad888e13-503a-4d0d-990f-7e4fe3e3","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.665 [XNIO-1 task-2] r-QreiCsRQ-Ms7BvMKZYsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.668 [XNIO-1 task-2] UccZFT1lT2Odh_mEnzXxmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668 +16:29:41.668 [XNIO-1 task-2] UccZFT1lT2Odh_mEnzXxmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.668 [XNIO-1 task-2] UccZFT1lT2Odh_mEnzXxmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:41.668 [XNIO-1 task-2] UccZFT1lT2Odh_mEnzXxmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668 +16:29:41.673 [XNIO-1 task-2] jnp2Kv79ShiX6BxcKMMnyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.673 [XNIO-1 task-2] jnp2Kv79ShiX6BxcKMMnyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.674 [XNIO-1 task-2] jnp2Kv79ShiX6BxcKMMnyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.680 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5930e563-2238-43fe-a6ad-c8aea6b02f5c +16:29:41.691 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.691 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.692 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.693 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.693 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.693 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.693 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.693 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.693 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.694 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.694 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.694 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a88b8a55-1569-44e1-8863-f2f5da14","clientDesc":"1f18b74b-564e-4a7e-9560-8c54f29365c1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.700 [XNIO-1 task-2] UWs2n7-aSgye9tVfAVCvLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.704 [XNIO-1 task-2] kWgy86a9RPySyw8-gnoaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.704 [XNIO-1 task-2] kWgy86a9RPySyw8-gnoaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.705 [XNIO-1 task-2] kWgy86a9RPySyw8-gnoaVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.771 [XNIO-1 task-2] VodSKeu-SKqLr5ed3W0g7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9792f649-62ee-4bfb-8371-b9911635149a, base path is set to: null +16:29:41.771 [XNIO-1 task-2] VodSKeu-SKqLr5ed3W0g7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.771 [XNIO-1 task-2] VodSKeu-SKqLr5ed3W0g7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:41.771 [XNIO-1 task-2] VodSKeu-SKqLr5ed3W0g7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9792f649-62ee-4bfb-8371-b9911635149a, base path is set to: null +16:29:41.771 [XNIO-1 task-2] VodSKeu-SKqLr5ed3W0g7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9792f649-62ee-4bfb-8371-b9911635149a", "9792f649-62ee-4bfb-8371-b9911635149a", clientId) +16:29:41.773 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:398665ba +16:29:41.863 [XNIO-1 task-2] yt0qqwTzRu2SEt96QTdkJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.863 [XNIO-1 task-2] yt0qqwTzRu2SEt96QTdkJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.864 [XNIO-1 task-2] yt0qqwTzRu2SEt96QTdkJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.877 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a57bf465 +16:29:41.882 [XNIO-1 task-2] D2h_fqibQimQ-ybZ9a9Lmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.883 [XNIO-1 task-2] D2h_fqibQimQ-ybZ9a9Lmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.883 [XNIO-1 task-2] D2h_fqibQimQ-ybZ9a9Lmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.883 [XNIO-1 task-2] D2h_fqibQimQ-ybZ9a9Lmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.915 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.916 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:41.916 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:41.916 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.917 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.917 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.917 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.918 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:41.919 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:41.919 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.919 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.919 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06c6d9be-3029-4d9b-857e-7988468d","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:41.919 [XNIO-1 task-2] YntIYOBeTpOnXxtQrlUSFw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:41.924 [XNIO-1 task-2] CYyAP3dJSH-xgIQOrd7wTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.924 [XNIO-1 task-2] CYyAP3dJSH-xgIQOrd7wTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.925 [XNIO-1 task-2] CYyAP3dJSH-xgIQOrd7wTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.960 [XNIO-1 task-2] 5UukltNRSP63iAYCmrg19w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.961 [XNIO-1 task-2] 5UukltNRSP63iAYCmrg19w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.961 [XNIO-1 task-2] 5UukltNRSP63iAYCmrg19w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.963 [XNIO-1 task-2] 5UukltNRSP63iAYCmrg19w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.977 [XNIO-1 task-2] qDcp8GUoT3SqDvxgyVjoow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.977 [XNIO-1 task-2] qDcp8GUoT3SqDvxgyVjoow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.978 [XNIO-1 task-2] qDcp8GUoT3SqDvxgyVjoow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:41.992 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a57bf465 +16:29:42.007 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.008 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.008 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.010 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.010 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:42.010 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "027ead5c-c70b-4376-b8df-a81a62cba4a6", {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:42.010 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.010 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.010 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "9fe16d41-063a-4a1c-90d2-b7340864", {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:42.011 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.011 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9fe16d41-063a-4a1c-90d2-b7340864","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.012 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.012 [XNIO-1 task-2] snzmyNw8Qxu9oyISKjBp8w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.020 [XNIO-1 task-2] DAK2xgq0Rti_SjqXL53ffg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb, base path is set to: null +16:29:42.020 [XNIO-1 task-2] DAK2xgq0Rti_SjqXL53ffg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.020 [XNIO-1 task-2] DAK2xgq0Rti_SjqXL53ffg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.020 [XNIO-1 task-2] DAK2xgq0Rti_SjqXL53ffg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb, base path is set to: null +16:29:42.022 [XNIO-1 task-2] DAK2xgq0Rti_SjqXL53ffg DEBUG com.networknt.schema.TypeValidator debug - validate( "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:42.036 [XNIO-1 task-2] DAK2xgq0Rti_SjqXL53ffg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.045 [XNIO-1 task-2] ttwl2fMfRZinc_ilJJayyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.046 [XNIO-1 task-2] ttwl2fMfRZinc_ilJJayyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.046 [XNIO-1 task-2] ttwl2fMfRZinc_ilJJayyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.057 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2ee50b52 +16:29:42.077 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.077 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.078 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.079 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.079 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.079 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.079 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.079 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.080 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.080 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.080 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.080 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d4bfdb0-ec03-4f0e-aaab-957706ce","clientDesc":"8a9dcb6d-eed4-4ac6-8232-40f4b9e4082d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.081 [XNIO-1 task-2] CxP2ed-jT-6DaKyBZAGHxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.086 [XNIO-1 task-2] bjCkkkkGQ-C5IbEDDr_49A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/efeddd87-366f-4788-b5be-87328e889982 +16:29:42.086 [XNIO-1 task-2] bjCkkkkGQ-C5IbEDDr_49A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.088 [XNIO-1 task-2] bjCkkkkGQ-C5IbEDDr_49A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.090 [XNIO-1 task-2] bjCkkkkGQ-C5IbEDDr_49A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/efeddd87-366f-4788-b5be-87328e889982 +16:29:42.097 [XNIO-1 task-2] uVTlNhQOTBScKT1NRAxhHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.099 [XNIO-1 task-2] uVTlNhQOTBScKT1NRAxhHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.100 [XNIO-1 task-2] uVTlNhQOTBScKT1NRAxhHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.103 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ac27334 +16:29:42.107 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ac27334 +16:29:42.164 [XNIO-1 task-2] crxNKguCTtW-KPzppnRghg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661, base path is set to: null +16:29:42.165 [XNIO-1 task-2] crxNKguCTtW-KPzppnRghg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.165 [XNIO-1 task-2] crxNKguCTtW-KPzppnRghg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.166 [XNIO-1 task-2] crxNKguCTtW-KPzppnRghg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661, base path is set to: null +16:29:42.166 [XNIO-1 task-2] crxNKguCTtW-KPzppnRghg DEBUG com.networknt.schema.TypeValidator debug - validate( "4385eba9-d9dc-4ff7-9d02-744f4edd0661", "4385eba9-d9dc-4ff7-9d02-744f4edd0661", clientId) +16:29:42.171 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd1fc82f +16:29:42.172 [XNIO-1 task-2] aXCULychRoKa5xqRwfzfwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:42.172 [XNIO-1 task-2] aXCULychRoKa5xqRwfzfwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.172 [XNIO-1 task-2] aXCULychRoKa5xqRwfzfwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.173 [XNIO-1 task-2] aXCULychRoKa5xqRwfzfwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:42.180 [XNIO-1 task-2] yCK91JueS0Kyr17NsyDm9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.181 [XNIO-1 task-2] yCK91JueS0Kyr17NsyDm9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.182 [XNIO-1 task-2] yCK91JueS0Kyr17NsyDm9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.183 [XNIO-1 task-2] yCK91JueS0Kyr17NsyDm9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.199 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:223cda23 +16:29:42.207 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.207 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.208 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.210 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.210 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.210 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.210 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.211 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.211 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.211 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.212 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.212 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ad8b94b5-92ac-47a3-9bf2-52de39af","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.213 [XNIO-1 task-2] rhWgHCwJSAOEx-uO6ufhIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.217 [XNIO-1 task-2] cmB9hA1eT7CuWjjqYghmUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.218 [XNIO-1 task-2] cmB9hA1eT7CuWjjqYghmUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.223 [XNIO-1 task-2] cmB9hA1eT7CuWjjqYghmUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.237 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd1fc82f +16:29:42.252 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.252 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.253 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "61e8eb1c-2a69-4e00-8300-a69031eb3639", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "41c61fa5-fd33-4c2d-8dc8-0d6fd22b", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:42.254 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.255 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"41c61fa5-fd33-4c2d-8dc8-0d6fd22b","clientDesc":"61e8eb1c-2a69-4e00-8300-a69031eb3639","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.255 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.277 [XNIO-1 task-2] hHyEwhwdQw-Mf6kvU2SWUA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.284 [XNIO-1 task-2] n2u20ZiIQKi5c--PI_Xnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c, base path is set to: null +16:29:42.284 [XNIO-1 task-2] n2u20ZiIQKi5c--PI_Xnew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.284 [XNIO-1 task-2] n2u20ZiIQKi5c--PI_Xnew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.285 [XNIO-1 task-2] n2u20ZiIQKi5c--PI_Xnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c, base path is set to: null +16:29:42.285 [XNIO-1 task-2] n2u20ZiIQKi5c--PI_Xnew DEBUG com.networknt.schema.TypeValidator debug - validate( "93c2f760-f00d-47e5-9cfb-8086ad6ae24c", "93c2f760-f00d-47e5-9cfb-8086ad6ae24c", clientId) +16:29:42.292 [XNIO-1 task-2] GuM36CIWQiuK048RSPTH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7a1a2b09-f435-4f6e-8faa-0d8326a452df +16:29:42.292 [XNIO-1 task-2] GuM36CIWQiuK048RSPTH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.292 [XNIO-1 task-2] GuM36CIWQiuK048RSPTH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.292 [XNIO-1 task-2] GuM36CIWQiuK048RSPTH5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7a1a2b09-f435-4f6e-8faa-0d8326a452df +16:29:42.301 [XNIO-1 task-2] Y1O8AHyLTqelyEYyElAdUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f1bb798c-f28b-45d0-bcf6-af588c91f15b, base path is set to: null +16:29:42.301 [XNIO-1 task-2] Y1O8AHyLTqelyEYyElAdUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.301 [XNIO-1 task-2] Y1O8AHyLTqelyEYyElAdUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.302 [XNIO-1 task-2] Y1O8AHyLTqelyEYyElAdUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f1bb798c-f28b-45d0-bcf6-af588c91f15b, base path is set to: null +16:29:42.302 [XNIO-1 task-2] Y1O8AHyLTqelyEYyElAdUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f1bb798c-f28b-45d0-bcf6-af588c91f15b", "f1bb798c-f28b-45d0-bcf6-af588c91f15b", clientId) +16:29:42.310 [XNIO-1 task-2] 29QpddQlSliBwTwKgD5vOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.310 [XNIO-1 task-2] 29QpddQlSliBwTwKgD5vOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.310 [XNIO-1 task-2] 29QpddQlSliBwTwKgD5vOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.319 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:47a1e44d-71f4-4af8-a0f3-5da92a0b25d6 +16:29:42.326 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a57bf465 +16:29:42.336 [XNIO-1 task-2] efj25IV-TmOPcJ9OP-5lUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.336 [XNIO-1 task-2] efj25IV-TmOPcJ9OP-5lUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.337 [XNIO-1 task-2] efj25IV-TmOPcJ9OP-5lUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.373 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:753ecad7 +16:29:42.375 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:753ecad7 +16:29:42.379 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.379 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.379 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.380 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.380 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:42.380 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "027ead5c-c70b-4376-b8df-a81a62cba4a6", {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:42.380 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.382 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.383 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8fbf456b-509b-4bf0-b7c1-a22fd642", {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:42.383 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.383 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8fbf456b-509b-4bf0-b7c1-a22fd642","clientDesc":"027ead5c-c70b-4376-b8df-a81a62cba4a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.383 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.383 [XNIO-1 task-2] bPyI4CNcQeu9P35EoKsIqQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.390 [XNIO-1 task-2] lzcGzF2WRyyjB10BfuSUcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e81b6e90-6cf4-476f-9af2-15acd98807f3, base path is set to: null +16:29:42.390 [XNIO-1 task-2] lzcGzF2WRyyjB10BfuSUcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.391 [XNIO-1 task-2] lzcGzF2WRyyjB10BfuSUcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.391 [XNIO-1 task-2] lzcGzF2WRyyjB10BfuSUcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e81b6e90-6cf4-476f-9af2-15acd98807f3, base path is set to: null +16:29:42.391 [XNIO-1 task-2] lzcGzF2WRyyjB10BfuSUcA DEBUG com.networknt.schema.TypeValidator debug - validate( "e81b6e90-6cf4-476f-9af2-15acd98807f3", "e81b6e90-6cf4-476f-9af2-15acd98807f3", clientId) +16:29:42.400 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2ee50b52 +16:29:42.402 [XNIO-1 task-2] lN4gjSubQJ2d8854M-wgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:42.402 [XNIO-1 task-2] lN4gjSubQJ2d8854M-wgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.402 [XNIO-1 task-2] lN4gjSubQJ2d8854M-wgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.402 [XNIO-1 task-2] lN4gjSubQJ2d8854M-wgXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:42.412 [XNIO-1 task-2] lN4gjSubQJ2d8854M-wgXA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.417 [XNIO-1 task-2] lN4gjSubQJ2d8854M-wgXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.424 [XNIO-1 task-2] bKxzIigYT16oCfx_BG4Vnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.424 [XNIO-1 task-2] bKxzIigYT16oCfx_BG4Vnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.425 [XNIO-1 task-2] bKxzIigYT16oCfx_BG4Vnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.458 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.458 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.459 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.459 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.459 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.459 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.459 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.460 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.460 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.460 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.460 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.460 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bc5c698e-b03e-43e6-9e5a-00023f50","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.460 [XNIO-1 task-2] bLoC0E4-QBS-x7xDMSZlug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.467 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.468 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.468 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.469 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.469 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:42.469 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "5dd08657-032f-4f1d-ba16-74ea164d8996", {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:42.469 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.469 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.469 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "70bf3b6d-75ec-46ae-9911-accf6ab4", {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:42.469 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.470 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"70bf3b6d-75ec-46ae-9911-accf6ab4","clientDesc":"5dd08657-032f-4f1d-ba16-74ea164d8996","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.470 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.470 [XNIO-1 task-2] 3Ygwi_2ATtu-bA53Y7lVCg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.474 [XNIO-1 task-2] eZVTrDL6R9eOjoREU1tx9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.474 [XNIO-1 task-2] eZVTrDL6R9eOjoREU1tx9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.474 [XNIO-1 task-2] eZVTrDL6R9eOjoREU1tx9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.495 [XNIO-1 task-2] WUIURZKJQheDKCelVTvd_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.495 [XNIO-1 task-2] WUIURZKJQheDKCelVTvd_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.496 [XNIO-1 task-2] WUIURZKJQheDKCelVTvd_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.538 [XNIO-1 task-2] 9ZBIqYhHRKyNMR1l3j-FDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22366e7a-f195-4384-b977-5bc4a3e8cf12, base path is set to: null +16:29:42.538 [XNIO-1 task-2] 9ZBIqYhHRKyNMR1l3j-FDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.538 [XNIO-1 task-2] 9ZBIqYhHRKyNMR1l3j-FDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.538 [XNIO-1 task-2] 9ZBIqYhHRKyNMR1l3j-FDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22366e7a-f195-4384-b977-5bc4a3e8cf12, base path is set to: null +16:29:42.539 [XNIO-1 task-2] 9ZBIqYhHRKyNMR1l3j-FDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "22366e7a-f195-4384-b977-5bc4a3e8cf12", "22366e7a-f195-4384-b977-5bc4a3e8cf12", clientId) +16:29:42.551 [XNIO-1 task-2] pp-AObBnQ7yIqzLUuwNFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dc5595f-c8d7-4f92-93d7-b1a77376a185 +16:29:42.551 [XNIO-1 task-2] pp-AObBnQ7yIqzLUuwNFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.551 [XNIO-1 task-2] pp-AObBnQ7yIqzLUuwNFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.552 [XNIO-1 task-2] pp-AObBnQ7yIqzLUuwNFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1dc5595f-c8d7-4f92-93d7-b1a77376a185 +16:29:42.567 [XNIO-1 task-2] -ByX0c1vQxanYlufkpeaQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a1a2b09-f435-4f6e-8faa-0d8326a452df, base path is set to: null +16:29:42.567 [XNIO-1 task-2] -ByX0c1vQxanYlufkpeaQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.567 [XNIO-1 task-2] -ByX0c1vQxanYlufkpeaQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.567 [XNIO-1 task-2] -ByX0c1vQxanYlufkpeaQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a1a2b09-f435-4f6e-8faa-0d8326a452df, base path is set to: null +16:29:42.568 [XNIO-1 task-2] -ByX0c1vQxanYlufkpeaQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1a2b09-f435-4f6e-8faa-0d8326a452df", "7a1a2b09-f435-4f6e-8faa-0d8326a452df", clientId) +16:29:42.572 [XNIO-1 task-2] bGU1JKieTtigBYAlRYSPRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/efeddd87-366f-4788-b5be-87328e889982 +16:29:42.572 [XNIO-1 task-2] bGU1JKieTtigBYAlRYSPRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.572 [XNIO-1 task-2] bGU1JKieTtigBYAlRYSPRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.572 [XNIO-1 task-2] bGU1JKieTtigBYAlRYSPRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/efeddd87-366f-4788-b5be-87328e889982 +16:29:42.581 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e4b5e731 +16:29:42.584 [XNIO-1 task-2] Mfjy3fmEQbu8nXLNHRsqwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f +16:29:42.585 [XNIO-1 task-2] Mfjy3fmEQbu8nXLNHRsqwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.585 [XNIO-1 task-2] Mfjy3fmEQbu8nXLNHRsqwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.585 [XNIO-1 task-2] Mfjy3fmEQbu8nXLNHRsqwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f +16:29:42.592 [XNIO-1 task-2] Mfjy3fmEQbu8nXLNHRsqwQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.593 [XNIO-1 task-2] Mfjy3fmEQbu8nXLNHRsqwQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.599 [XNIO-1 task-2] 49yRX1jNTXCezoyTjAw79g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f +16:29:42.600 [XNIO-1 task-2] 49yRX1jNTXCezoyTjAw79g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.600 [XNIO-1 task-2] 49yRX1jNTXCezoyTjAw79g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.600 [XNIO-1 task-2] 49yRX1jNTXCezoyTjAw79g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7529e7e-ace0-4e36-aed2-4535998eae0f +16:29:42.610 [XNIO-1 task-2] 49yRX1jNTXCezoyTjAw79g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.611 [XNIO-1 task-2] 49yRX1jNTXCezoyTjAw79g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.616 [XNIO-1 task-2] wk_DsovBQKS2ytHv_xEXxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.616 [XNIO-1 task-2] wk_DsovBQKS2ytHv_xEXxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.616 [XNIO-1 task-2] wk_DsovBQKS2ytHv_xEXxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.623 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a +16:29:42.631 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.632 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.632 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.632 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.633 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"912ecffa-4980-450c-bf20-bc5f66fa","clientDesc":"f568d957-ef92-4132-adbe-2f0fe5a5ab5c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.634 [XNIO-1 task-2] hPx5vm3eRdG5nWSzzqdgGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.638 [XNIO-1 task-2] PSjFOGtqTmaMpWuq8Ru4hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:42.638 [XNIO-1 task-2] PSjFOGtqTmaMpWuq8Ru4hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.638 [XNIO-1 task-2] PSjFOGtqTmaMpWuq8Ru4hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.638 [XNIO-1 task-2] PSjFOGtqTmaMpWuq8Ru4hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:42.641 [XNIO-1 task-2] IOX1WlTmQ3CLdSXvvwpc9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.641 [XNIO-1 task-2] IOX1WlTmQ3CLdSXvvwpc9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.642 [XNIO-1 task-2] IOX1WlTmQ3CLdSXvvwpc9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.667 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:dd1fc82f +16:29:42.689 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.689 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.690 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.690 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.690 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:42.690 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG com.networknt.schema.TypeValidator debug - validate( "26341443-1102-444e-8604-2c7150b0e8a1", {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:42.690 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.690 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.690 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG com.networknt.schema.TypeValidator debug - validate( "5831b49b-8aec-457b-bca2-2a1a8664", {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:42.691 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.691 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5831b49b-8aec-457b-bca2-2a1a8664","clientDesc":"26341443-1102-444e-8604-2c7150b0e8a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.691 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.691 [XNIO-1 task-2] W8nH6GhHRUagjz990m856g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.697 [XNIO-1 task-2] GW-XqMlARt-nxUUeJI78Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.698 [XNIO-1 task-2] GW-XqMlARt-nxUUeJI78Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.698 [XNIO-1 task-2] GW-XqMlARt-nxUUeJI78Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.698 [XNIO-1 task-2] GW-XqMlARt-nxUUeJI78Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.742 [XNIO-1 task-2] fBqpJUY3TtKxeyzl_1q6LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c, base path is set to: null +16:29:42.743 [XNIO-1 task-2] fBqpJUY3TtKxeyzl_1q6LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.743 [XNIO-1 task-2] fBqpJUY3TtKxeyzl_1q6LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.743 [XNIO-1 task-2] fBqpJUY3TtKxeyzl_1q6LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c, base path is set to: null +16:29:42.743 [XNIO-1 task-2] fBqpJUY3TtKxeyzl_1q6LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93c2f760-f00d-47e5-9cfb-8086ad6ae24c", "93c2f760-f00d-47e5-9cfb-8086ad6ae24c", clientId) +16:29:42.746 [XNIO-1 task-2] SXWCco8YSdKx0QFnM18ZVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.747 [XNIO-1 task-2] SXWCco8YSdKx0QFnM18ZVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.747 [XNIO-1 task-2] SXWCco8YSdKx0QFnM18ZVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.747 [XNIO-1 task-2] SXWCco8YSdKx0QFnM18ZVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.776 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.777 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.777 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.777 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2744588-9ecf-4c41-be5a-952e2b5e","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.778 [XNIO-1 task-2] VazCq5FoRLawmWSpIlsHvg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.782 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.782 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.783 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.783 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.784 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a320594-fce4-4473-97f8-1259f3bd","clientDesc":"b9f2ec56-c3f8-4419-aef4-ed72f8804a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.785 [XNIO-1 task-2] uWzIsFtyQki5wopYFgbx0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.787 [XNIO-1 task-2] BwPLKrERQMCBN6dt_dS50Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/370eb83d-c4ff-4aca-a854-e90d6ab65db2 +16:29:42.787 [XNIO-1 task-2] BwPLKrERQMCBN6dt_dS50Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.787 [XNIO-1 task-2] BwPLKrERQMCBN6dt_dS50Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.787 [XNIO-1 task-2] BwPLKrERQMCBN6dt_dS50Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/370eb83d-c4ff-4aca-a854-e90d6ab65db2 +16:29:42.805 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.806 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.806 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.807 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fc1f4ffd-f5bf-4917-aff6-e8b34b3c","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:42.808 [XNIO-1 task-2] bYB_iHKiQZeGSGfd6mu8IA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:42.810 [XNIO-1 task-2] _l_4wiQuR2WKT4NR1slS3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.811 [XNIO-1 task-2] _l_4wiQuR2WKT4NR1slS3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.811 [XNIO-1 task-2] _l_4wiQuR2WKT4NR1slS3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.811 [XNIO-1 task-2] _l_4wiQuR2WKT4NR1slS3w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.821 [XNIO-1 task-2] mXz0a0SGSY-iScKERS6-qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:42.821 [XNIO-1 task-2] mXz0a0SGSY-iScKERS6-qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.822 [XNIO-1 task-2] mXz0a0SGSY-iScKERS6-qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.822 [XNIO-1 task-2] mXz0a0SGSY-iScKERS6-qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:42.831 [XNIO-1 task-2] h5O0ptMxSMuhVWR2BD6uhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.831 [XNIO-1 task-2] h5O0ptMxSMuhVWR2BD6uhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.831 [XNIO-1 task-2] h5O0ptMxSMuhVWR2BD6uhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.831 [XNIO-1 task-2] h5O0ptMxSMuhVWR2BD6uhw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.856 [XNIO-1 task-2] mcse-CdVT5aAMsfS0ojpRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6, base path is set to: null +16:29:42.856 [XNIO-1 task-2] mcse-CdVT5aAMsfS0ojpRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.856 [XNIO-1 task-2] mcse-CdVT5aAMsfS0ojpRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.856 [XNIO-1 task-2] mcse-CdVT5aAMsfS0ojpRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6, base path is set to: null +16:29:42.857 [XNIO-1 task-2] mcse-CdVT5aAMsfS0ojpRg DEBUG com.networknt.schema.TypeValidator debug - validate( "47a1e44d-71f4-4af8-a0f3-5da92a0b25d6", "47a1e44d-71f4-4af8-a0f3-5da92a0b25d6", clientId) +16:29:42.861 [XNIO-1 task-2] 6hi1OnDGRImp1MhHv_GFsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.861 [XNIO-1 task-2] 6hi1OnDGRImp1MhHv_GFsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.861 [XNIO-1 task-2] 6hi1OnDGRImp1MhHv_GFsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.902 [XNIO-1 task-2] XbD7sR_ITLeMHgO_wOxNag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6 +16:29:42.902 [XNIO-1 task-2] XbD7sR_ITLeMHgO_wOxNag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.902 [XNIO-1 task-2] XbD7sR_ITLeMHgO_wOxNag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:42.902 [XNIO-1 task-2] XbD7sR_ITLeMHgO_wOxNag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6 +16:29:42.907 [XNIO-1 task-2] nZ9p0zHQQByAyizkXNatqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.907 [XNIO-1 task-2] nZ9p0zHQQByAyizkXNatqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.908 [XNIO-1 task-2] nZ9p0zHQQByAyizkXNatqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.927 [XNIO-1 task-2] glRgFenbRQSUUWPMntNY8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.927 [XNIO-1 task-2] glRgFenbRQSUUWPMntNY8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.928 [XNIO-1 task-2] glRgFenbRQSUUWPMntNY8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:42.928 [XNIO-1 task-2] glRgFenbRQSUUWPMntNY8w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.974 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:753ecad7 +16:29:42.983 [XNIO-1 task-2] 0YyKH83YTdy_5cMv_umkyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/216c1dcd-fa8e-4eff-88b7-a3e98f2b0557, base path is set to: null +16:29:42.983 [XNIO-1 task-2] 0YyKH83YTdy_5cMv_umkyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:42.983 [XNIO-1 task-2] 0YyKH83YTdy_5cMv_umkyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:42.983 [XNIO-1 task-2] 0YyKH83YTdy_5cMv_umkyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/216c1dcd-fa8e-4eff-88b7-a3e98f2b0557, base path is set to: null +16:29:42.984 [XNIO-1 task-2] 0YyKH83YTdy_5cMv_umkyg DEBUG com.networknt.schema.TypeValidator debug - validate( "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", clientId) +16:29:42.993 [XNIO-1 task-2] XyVgENWQTcGSSuH9pB971A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.993 [XNIO-1 task-2] XyVgENWQTcGSSuH9pB971A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:42.994 [XNIO-1 task-2] XyVgENWQTcGSSuH9pB971A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.015 [XNIO-1 task-2] ejx4N46URq6l45Md04FlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.015 [XNIO-1 task-2] ejx4N46URq6l45Md04FlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.015 [XNIO-1 task-2] ejx4N46URq6l45Md04FlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.016 [XNIO-1 task-2] ejx4N46URq6l45Md04FlGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.038 [XNIO-1 task-2] -M72nZZoRSeszBMLMojxAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/917fbc74-8b32-495a-99bb-6d74ee4e7f70 +16:29:43.038 [XNIO-1 task-2] -M72nZZoRSeszBMLMojxAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.038 [XNIO-1 task-2] -M72nZZoRSeszBMLMojxAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:43.038 [XNIO-1 task-2] -M72nZZoRSeszBMLMojxAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/917fbc74-8b32-495a-99bb-6d74ee4e7f70 +16:29:43.045 [XNIO-1 task-2] KdcZCOjtT6q9yzvFhUOPWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668, base path is set to: null +16:29:43.050 [XNIO-1 task-2] KdcZCOjtT6q9yzvFhUOPWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.050 [XNIO-1 task-2] KdcZCOjtT6q9yzvFhUOPWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.050 [XNIO-1 task-2] KdcZCOjtT6q9yzvFhUOPWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668, base path is set to: null +16:29:43.050 [XNIO-1 task-2] KdcZCOjtT6q9yzvFhUOPWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f4d7d1cf-7944-42ed-afcf-78b464a81668", "f4d7d1cf-7944-42ed-afcf-78b464a81668", clientId) +16:29:43.058 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.058 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.059 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.059 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.059 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:43.059 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "b793ff20-d0e9-43ae-adc6-6749b03b9a9b", {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:43.059 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:43.059 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:43.059 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "e36ee25f-11cc-4031-a9a7-97325638", {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:43.060 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.060 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e36ee25f-11cc-4031-a9a7-97325638","clientDesc":"b793ff20-d0e9-43ae-adc6-6749b03b9a9b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.060 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:43.060 [XNIO-1 task-2] t0WIf5ZDQqKhtHEHWTQHPw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:43.067 [XNIO-1 task-2] 65UZvoW_TDixwvHzIpoVgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.067 [XNIO-1 task-2] 65UZvoW_TDixwvHzIpoVgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.068 [XNIO-1 task-2] 65UZvoW_TDixwvHzIpoVgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.068 [XNIO-1 task-2] 65UZvoW_TDixwvHzIpoVgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.088 [XNIO-1 task-2] XCNSIfe5RSakNA9X6o_jZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.088 [XNIO-1 task-2] XCNSIfe5RSakNA9X6o_jZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.088 [XNIO-1 task-2] XCNSIfe5RSakNA9X6o_jZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.089 [XNIO-1 task-2] XCNSIfe5RSakNA9X6o_jZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.092 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dd2ee325-2332-441c-a950-428f06c7c91e +16:29:43.094 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dd2ee325-2332-441c-a950-428f06c7c91e +16:29:43.111 [XNIO-1 task-2] BdJD-AFER82V66DbY79L0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.111 [XNIO-1 task-2] BdJD-AFER82V66DbY79L0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.111 [XNIO-1 task-2] BdJD-AFER82V66DbY79L0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.111 [XNIO-1 task-2] BdJD-AFER82V66DbY79L0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.118 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:753ecad7 +16:29:43.130 [XNIO-1 task-2] MJAX1_4DS1qpAggZUsrwVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.130 [XNIO-1 task-2] MJAX1_4DS1qpAggZUsrwVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.131 [XNIO-1 task-2] MJAX1_4DS1qpAggZUsrwVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.160 [XNIO-1 task-2] Jv8-lvbfT6-Yvrp-Dudb3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c, base path is set to: null +16:29:43.160 [XNIO-1 task-2] Jv8-lvbfT6-Yvrp-Dudb3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.160 [XNIO-1 task-2] Jv8-lvbfT6-Yvrp-Dudb3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.161 [XNIO-1 task-2] Jv8-lvbfT6-Yvrp-Dudb3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c, base path is set to: null +16:29:43.161 [XNIO-1 task-2] Jv8-lvbfT6-Yvrp-Dudb3g DEBUG com.networknt.schema.TypeValidator debug - validate( "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:43.222 [XNIO-1 task-2] Jv8-lvbfT6-Yvrp-Dudb3g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:43.225 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.225 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.227 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.227 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.227 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.227 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.227 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.228 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:43.228 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:43.228 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.228 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.228 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"321dfd96-47a5-4beb-8b24-7a2d56ff","clientDesc":"790870d8-6fa7-495e-98a0-368e0270e335","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:43.228 [XNIO-1 task-2] yZf_YeTRSaq3WeR1pkJ4tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:43.239 [XNIO-1 task-2] nmiwDYvpRDqJy_VH2kGGqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.239 [XNIO-1 task-2] nmiwDYvpRDqJy_VH2kGGqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.239 [XNIO-1 task-2] nmiwDYvpRDqJy_VH2kGGqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.240 [XNIO-1 task-2] nmiwDYvpRDqJy_VH2kGGqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.288 [XNIO-1 task-2] sGI5AQRNRW2Pkqq33mxQow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.288 [XNIO-1 task-2] sGI5AQRNRW2Pkqq33mxQow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.288 [XNIO-1 task-2] sGI5AQRNRW2Pkqq33mxQow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.306 [XNIO-1 task-2] dXTooDuTRbqNUcEkVThslA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c +16:29:43.307 [XNIO-1 task-2] dXTooDuTRbqNUcEkVThslA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.308 [XNIO-1 task-2] dXTooDuTRbqNUcEkVThslA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:43.308 [XNIO-1 task-2] dXTooDuTRbqNUcEkVThslA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93c2f760-f00d-47e5-9cfb-8086ad6ae24c +16:29:43.322 [XNIO-1 task-2] cx8mjcoZTP69ioSemC_mFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.322 [XNIO-1 task-2] cx8mjcoZTP69ioSemC_mFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.322 [XNIO-1 task-2] cx8mjcoZTP69ioSemC_mFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.348 [XNIO-1 task-1] h2yzj05bSNCoZvEYjpo-wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f1bb798c-f28b-45d0-bcf6-af588c91f15b, base path is set to: null +16:29:43.348 [XNIO-1 task-1] h2yzj05bSNCoZvEYjpo-wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.348 [XNIO-1 task-1] h2yzj05bSNCoZvEYjpo-wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.348 [XNIO-1 task-1] h2yzj05bSNCoZvEYjpo-wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f1bb798c-f28b-45d0-bcf6-af588c91f15b, base path is set to: null +16:29:43.349 [XNIO-1 task-1] h2yzj05bSNCoZvEYjpo-wg DEBUG com.networknt.schema.TypeValidator debug - validate( "f1bb798c-f28b-45d0-bcf6-af588c91f15b", "f1bb798c-f28b-45d0-bcf6-af588c91f15b", clientId) +16:29:43.362 [XNIO-1 task-1] T_vRpgd0SHuRMHejW1JYZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.362 [XNIO-1 task-1] T_vRpgd0SHuRMHejW1JYZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.363 [XNIO-1 task-1] T_vRpgd0SHuRMHejW1JYZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.363 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1f35b1e7-126c-4a8b-b04a-d3d44b871553 +16:29:43.402 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1f35b1e7-126c-4a8b-b04a-d3d44b871553 +16:29:43.409 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:561e47b5-9b72-42b7-8fd5-c66da289ac2c +16:29:43.412 [XNIO-1 task-1] E89IQ9iKQ1WlIO9Dob5SMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6, base path is set to: null +16:29:43.412 [XNIO-1 task-1] E89IQ9iKQ1WlIO9Dob5SMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.413 [XNIO-1 task-1] E89IQ9iKQ1WlIO9Dob5SMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.413 [XNIO-1 task-1] E89IQ9iKQ1WlIO9Dob5SMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6, base path is set to: null +16:29:43.413 [XNIO-1 task-1] E89IQ9iKQ1WlIO9Dob5SMA DEBUG com.networknt.schema.TypeValidator debug - validate( "47a1e44d-71f4-4af8-a0f3-5da92a0b25d6", "47a1e44d-71f4-4af8-a0f3-5da92a0b25d6", clientId) +16:29:43.417 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.417 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.417 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.418 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.418 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:43.418 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "e2bf7a95-cf99-4647-8d12-0289a24ac0bb", {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:43.418 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:43.418 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:43.418 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e3082cb-67ac-45c2-bc18-87d2882a", {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:43.419 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.419 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0e3082cb-67ac-45c2-bc18-87d2882a","clientDesc":"e2bf7a95-cf99-4647-8d12-0289a24ac0bb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.419 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:43.419 [XNIO-1 task-1] 3J7d7vqkRve5tpyBkwPPxg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:43.423 [XNIO-1 task-1] 9Ui3hRMLQgSCNNdgelVSUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6, base path is set to: null +16:29:43.423 [XNIO-1 task-1] 9Ui3hRMLQgSCNNdgelVSUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.423 [XNIO-1 task-1] 9Ui3hRMLQgSCNNdgelVSUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.423 [XNIO-1 task-1] 9Ui3hRMLQgSCNNdgelVSUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47a1e44d-71f4-4af8-a0f3-5da92a0b25d6, base path is set to: null +16:29:43.424 [XNIO-1 task-1] 9Ui3hRMLQgSCNNdgelVSUA DEBUG com.networknt.schema.TypeValidator debug - validate( "47a1e44d-71f4-4af8-a0f3-5da92a0b25d6", "47a1e44d-71f4-4af8-a0f3-5da92a0b25d6", clientId) +16:29:43.436 [XNIO-1 task-1] xzS3c79ZS-CepuM043ZckQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.436 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:561e47b5-9b72-42b7-8fd5-c66da289ac2c +16:29:43.437 [XNIO-1 task-1] xzS3c79ZS-CepuM043ZckQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.437 [XNIO-1 task-1] xzS3c79ZS-CepuM043ZckQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.465 [XNIO-1 task-1] ItNV9ESMQpO69QW-AKeXcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/07638422-d323-4bfa-9b75-9da1647a0235 +16:29:43.465 [XNIO-1 task-1] ItNV9ESMQpO69QW-AKeXcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.465 [XNIO-1 task-1] ItNV9ESMQpO69QW-AKeXcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:43.465 [XNIO-1 task-1] ItNV9ESMQpO69QW-AKeXcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/07638422-d323-4bfa-9b75-9da1647a0235 +16:29:43.482 [XNIO-1 task-1] 4_nUAW2_R9q6I4Iqm05Ogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3378dda-224b-42c8-babc-5425db5519c1, base path is set to: null +16:29:43.483 [XNIO-1 task-1] 4_nUAW2_R9q6I4Iqm05Ogw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.483 [XNIO-1 task-1] 4_nUAW2_R9q6I4Iqm05Ogw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.485 [XNIO-1 task-1] 4_nUAW2_R9q6I4Iqm05Ogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3378dda-224b-42c8-babc-5425db5519c1, base path is set to: null +16:29:43.508 [XNIO-1 task-1] 4_nUAW2_R9q6I4Iqm05Ogw DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", clientId) +16:29:43.531 [XNIO-1 task-1] SPw_sdPyT36-CEhOqTaLLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3ef7dc47-4e4a-4932-9289-40f1cf199c1f +16:29:43.532 [XNIO-1 task-1] SPw_sdPyT36-CEhOqTaLLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.532 [XNIO-1 task-1] SPw_sdPyT36-CEhOqTaLLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:43.532 [XNIO-1 task-1] SPw_sdPyT36-CEhOqTaLLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3ef7dc47-4e4a-4932-9289-40f1cf199c1f +16:29:43.559 [XNIO-1 task-1] cZHbhny1RXm51Uf1DHPOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3378dda-224b-42c8-babc-5425db5519c1, base path is set to: null +16:29:43.559 [XNIO-1 task-1] cZHbhny1RXm51Uf1DHPOog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.559 [XNIO-1 task-1] cZHbhny1RXm51Uf1DHPOog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.559 [XNIO-1 task-1] cZHbhny1RXm51Uf1DHPOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3378dda-224b-42c8-babc-5425db5519c1, base path is set to: null +16:29:43.560 [XNIO-1 task-1] cZHbhny1RXm51Uf1DHPOog DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:43.572 [XNIO-1 task-1] cZHbhny1RXm51Uf1DHPOog DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/c3378dda-224b-42c8-babc-5425db5519c1} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:43.579 [XNIO-1 task-1] ZS40bsRaSSmxcML8oM0y9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.579 [XNIO-1 task-1] ZS40bsRaSSmxcML8oM0y9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.579 [XNIO-1 task-1] ZS40bsRaSSmxcML8oM0y9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.579 [XNIO-1 task-1] ZS40bsRaSSmxcML8oM0y9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.598 [XNIO-1 task-1] nVt5dxaRT7md6h5f-TE0Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73, base path is set to: null +16:29:43.598 [XNIO-1 task-1] nVt5dxaRT7md6h5f-TE0Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.599 [XNIO-1 task-1] nVt5dxaRT7md6h5f-TE0Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.599 [XNIO-1 task-1] nVt5dxaRT7md6h5f-TE0Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73, base path is set to: null +16:29:43.599 [XNIO-1 task-1] nVt5dxaRT7md6h5f-TE0Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", clientId) +16:29:43.607 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.607 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.609 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.610 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.610 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:43.610 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG com.networknt.schema.TypeValidator debug - validate( "3c18b82d-433f-4f16-81a8-c885c6e2b268", {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:43.610 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:43.610 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:43.611 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG com.networknt.schema.TypeValidator debug - validate( "dd3afb0c-9aec-4437-93f2-b845d0f2", {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:43.611 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.611 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dd3afb0c-9aec-4437-93f2-b845d0f2","clientDesc":"3c18b82d-433f-4f16-81a8-c885c6e2b268","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.611 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:43.611 [XNIO-1 task-1] PrlUN9M1TkGWEXlL4YDs-A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:43.617 [XNIO-1 task-1] 8fzxXOgmQJmOTQYn2QNehQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73, base path is set to: null +16:29:43.618 [XNIO-1 task-1] 8fzxXOgmQJmOTQYn2QNehQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.618 [XNIO-1 task-1] 8fzxXOgmQJmOTQYn2QNehQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:43.618 [XNIO-1 task-1] 8fzxXOgmQJmOTQYn2QNehQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73, base path is set to: null +16:29:43.618 [XNIO-1 task-1] 8fzxXOgmQJmOTQYn2QNehQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", clientId) +16:29:43.622 [XNIO-1 task-1] QzwT0pJ_RpK4rhoRwDWdsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.623 [XNIO-1 task-1] QzwT0pJ_RpK4rhoRwDWdsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.623 [XNIO-1 task-1] QzwT0pJ_RpK4rhoRwDWdsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.623 [XNIO-1 task-1] QzwT0pJ_RpK4rhoRwDWdsA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.647 [XNIO-1 task-1] I3dzboUJSyi5l_FwSz9GCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.647 [XNIO-1 task-1] I3dzboUJSyi5l_FwSz9GCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.647 [XNIO-1 task-1] I3dzboUJSyi5l_FwSz9GCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.647 [XNIO-1 task-1] I3dzboUJSyi5l_FwSz9GCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.660 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:753ecad7 +16:29:43.673 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.673 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.674 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.674 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.674 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:43.674 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc2087db-3e75-494c-977f-4dd27907ea7a", {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:43.674 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:43.675 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:43.675 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "5972c7b7-a3e1-49af-915a-16f676d1", {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:43.675 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.675 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5972c7b7-a3e1-49af-915a-16f676d1","clientDesc":"dc2087db-3e75-494c-977f-4dd27907ea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.675 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:43.675 [XNIO-1 task-1] BceCllb5TruGJbkSwPS-VA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:43.679 [XNIO-1 task-1] _H-77oixTQifg1P969UEAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.679 [XNIO-1 task-1] _H-77oixTQifg1P969UEAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.680 [XNIO-1 task-1] _H-77oixTQifg1P969UEAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.680 [XNIO-1 task-1] _H-77oixTQifg1P969UEAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.750 [XNIO-1 task-1] HUozCUG5SLyUMra4XLlBhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.750 [XNIO-1 task-1] HUozCUG5SLyUMra4XLlBhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.750 [XNIO-1 task-1] HUozCUG5SLyUMra4XLlBhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.751 [XNIO-1 task-1] HUozCUG5SLyUMra4XLlBhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.770 [XNIO-1 task-1] rr-kdeXNTmCATlF0rDl5JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.770 [XNIO-1 task-1] rr-kdeXNTmCATlF0rDl5JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.770 [XNIO-1 task-1] rr-kdeXNTmCATlF0rDl5JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.771 [XNIO-1 task-1] rr-kdeXNTmCATlF0rDl5JA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.785 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.785 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:43.786 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:43.786 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.787 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8401578b-e1e2-4cc3-b7e5-753075c7","clientDesc":"fe42cfb7-cde0-4f77-9bcf-5e0d2a608ae5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:43.788 [XNIO-1 task-1] TLiSXKXISvWHj06jIDWzgg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:43.807 [XNIO-1 task-1] IqJ136lpREC9H2wC73PrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.808 [XNIO-1 task-1] IqJ136lpREC9H2wC73PrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.809 [XNIO-1 task-1] IqJ136lpREC9H2wC73PrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.836 [XNIO-1 task-1] XeajC4ojSyutGml8IvhDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.836 [XNIO-1 task-1] XeajC4ojSyutGml8IvhDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.837 [XNIO-1 task-1] XeajC4ojSyutGml8IvhDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.844 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4028915a-8b05-4ae4-adaa-92f5935eaa9d +16:29:43.857 [XNIO-1 task-1] YqXrX2VkSc-_l9NZeMQiEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.857 [XNIO-1 task-1] YqXrX2VkSc-_l9NZeMQiEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.857 [XNIO-1 task-1] YqXrX2VkSc-_l9NZeMQiEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.858 [XNIO-1 task-1] YqXrX2VkSc-_l9NZeMQiEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.957 [XNIO-1 task-1] foDNvAOmRDqTYjQMqNe8HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:43.957 [XNIO-1 task-1] foDNvAOmRDqTYjQMqNe8HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.958 [XNIO-1 task-1] foDNvAOmRDqTYjQMqNe8HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:43.958 [XNIO-1 task-1] foDNvAOmRDqTYjQMqNe8HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:43.967 [XNIO-1 task-1] foDNvAOmRDqTYjQMqNe8HQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:43.968 [XNIO-1 task-1] foDNvAOmRDqTYjQMqNe8HQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:43.972 [XNIO-1 task-1] 9HV9e0WNS9qfHvwlEhNxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.972 [XNIO-1 task-1] 9HV9e0WNS9qfHvwlEhNxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.973 [XNIO-1 task-1] 9HV9e0WNS9qfHvwlEhNxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.995 [XNIO-1 task-1] gUd0rUVPRb6tuCfcMsWFeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.995 [XNIO-1 task-1] gUd0rUVPRb6tuCfcMsWFeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.995 [XNIO-1 task-1] gUd0rUVPRb6tuCfcMsWFeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:43.998 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ac27334 +16:29:44.024 [XNIO-1 task-1] 46pLTnZ9QY6k2bqHUtqeYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e28a663-48b6-4f65-b5c1-a0429aa16d15 +16:29:44.024 [XNIO-1 task-1] 46pLTnZ9QY6k2bqHUtqeYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.024 [XNIO-1 task-1] 46pLTnZ9QY6k2bqHUtqeYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.024 [XNIO-1 task-1] 46pLTnZ9QY6k2bqHUtqeYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e28a663-48b6-4f65-b5c1-a0429aa16d15 +16:29:44.027 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4028915a-8b05-4ae4-adaa-92f5935eaa9d +16:29:44.049 [XNIO-1 task-1] Ss-vqtDeS5ynUJDjiW9PLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.049 [XNIO-1 task-1] Ss-vqtDeS5ynUJDjiW9PLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.049 [XNIO-1 task-1] Ss-vqtDeS5ynUJDjiW9PLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.049 [XNIO-1 task-1] Ss-vqtDeS5ynUJDjiW9PLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.078 [XNIO-1 task-1] Rm4cI-d-SDiO2u22PfrPSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb +16:29:44.078 [XNIO-1 task-1] Rm4cI-d-SDiO2u22PfrPSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.078 [XNIO-1 task-1] Rm4cI-d-SDiO2u22PfrPSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.078 [XNIO-1 task-1] Rm4cI-d-SDiO2u22PfrPSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb +16:29:44.088 [XNIO-1 task-1] Rm4cI-d-SDiO2u22PfrPSw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.089 [XNIO-1 task-1] Rm4cI-d-SDiO2u22PfrPSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.095 [XNIO-1 task-1] Zn_LIA2cSh-IBox63RynHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:44.095 [XNIO-1 task-1] Zn_LIA2cSh-IBox63RynHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.095 [XNIO-1 task-1] Zn_LIA2cSh-IBox63RynHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.095 [XNIO-1 task-1] Zn_LIA2cSh-IBox63RynHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:44.101 [XNIO-1 task-1] eMqM5x3VRjKT9jermd2qNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.101 [XNIO-1 task-1] eMqM5x3VRjKT9jermd2qNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.101 [XNIO-1 task-1] eMqM5x3VRjKT9jermd2qNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.102 [XNIO-1 task-1] eMqM5x3VRjKT9jermd2qNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.115 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.117 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.122 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:03934616-6290-4cc8-b757-9e7d497b9026 +16:29:44.145 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7331e7bd-ae2a-4bd1-8624-afa7076dd4b0 +16:29:44.146 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7331e7bd-ae2a-4bd1-8624-afa7076dd4b0 +16:29:44.171 [XNIO-1 task-1] 9m0tXXMyRCqkN17LXaZuig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/21b8b7ea-60ec-4af0-af13-57c2ca9acb53, base path is set to: null +16:29:44.172 [XNIO-1 task-1] 9m0tXXMyRCqkN17LXaZuig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.172 [XNIO-1 task-1] 9m0tXXMyRCqkN17LXaZuig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:44.172 [XNIO-1 task-1] 9m0tXXMyRCqkN17LXaZuig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/21b8b7ea-60ec-4af0-af13-57c2ca9acb53, base path is set to: null +16:29:44.172 [XNIO-1 task-1] 9m0tXXMyRCqkN17LXaZuig DEBUG com.networknt.schema.TypeValidator debug - validate( "21b8b7ea-60ec-4af0-af13-57c2ca9acb53", "21b8b7ea-60ec-4af0-af13-57c2ca9acb53", clientId) +16:29:44.180 [XNIO-1 task-1] 7spGLLxKQJOjfSN2tU-x5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21b8b7ea-60ec-4af0-af13-57c2ca9acb53 +16:29:44.180 [XNIO-1 task-1] 7spGLLxKQJOjfSN2tU-x5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.180 [XNIO-1 task-1] 7spGLLxKQJOjfSN2tU-x5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.182 [XNIO-1 task-1] 7spGLLxKQJOjfSN2tU-x5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21b8b7ea-60ec-4af0-af13-57c2ca9acb53 +16:29:44.226 [XNIO-1 task-1] 7spGLLxKQJOjfSN2tU-x5Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.226 [XNIO-1 task-1] 7spGLLxKQJOjfSN2tU-x5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.237 [XNIO-1 task-1] YzMQytH7Tp-fJe4ck71Ckg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.237 [XNIO-1 task-1] YzMQytH7Tp-fJe4ck71Ckg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.238 [XNIO-1 task-1] YzMQytH7Tp-fJe4ck71Ckg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.238 [XNIO-1 task-1] YzMQytH7Tp-fJe4ck71Ckg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.255 [XNIO-1 task-1] 4Zhxt-9NSlW-hlMDvVSalw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668 +16:29:44.255 [XNIO-1 task-1] 4Zhxt-9NSlW-hlMDvVSalw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.255 [XNIO-1 task-1] 4Zhxt-9NSlW-hlMDvVSalw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.256 [XNIO-1 task-1] 4Zhxt-9NSlW-hlMDvVSalw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668 +16:29:44.347 [XNIO-1 task-1] 4Zhxt-9NSlW-hlMDvVSalw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.347 [XNIO-1 task-1] 4Zhxt-9NSlW-hlMDvVSalw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.357 [XNIO-1 task-1] Iw7G8KR7QCiiUFNEWd1G_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.357 [XNIO-1 task-1] Iw7G8KR7QCiiUFNEWd1G_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.358 [XNIO-1 task-1] Iw7G8KR7QCiiUFNEWd1G_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.378 [XNIO-1 task-1] mzXIpp0PR6GqH4QfuKIysA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.379 [XNIO-1 task-1] mzXIpp0PR6GqH4QfuKIysA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.379 [XNIO-1 task-1] mzXIpp0PR6GqH4QfuKIysA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.404 [XNIO-1 task-1] byeqPj77RLaWINS_b4PyQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.405 [XNIO-1 task-1] byeqPj77RLaWINS_b4PyQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.405 [XNIO-1 task-1] byeqPj77RLaWINS_b4PyQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.409 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4dee1604 +16:29:44.410 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:11e2e401-ffc5-45ba-83e6-649bccf2f148 +16:29:44.411 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:11e2e401-ffc5-45ba-83e6-649bccf2f148 +16:29:44.423 [XNIO-1 task-1] TRRViKIuSdWil8d15hwE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:44.423 [XNIO-1 task-1] TRRViKIuSdWil8d15hwE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.423 [XNIO-1 task-1] TRRViKIuSdWil8d15hwE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.424 [XNIO-1 task-1] TRRViKIuSdWil8d15hwE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:44.426 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f44e84d2-1862-41de-a523-b2104e27c138 +16:29:44.429 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f44e84d2-1862-41de-a523-b2104e27c138 +16:29:44.430 [XNIO-1 task-1] tuRb9SUfQZ2wYS2g8A70Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.430 [XNIO-1 task-1] tuRb9SUfQZ2wYS2g8A70Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.432 [XNIO-1 task-1] tuRb9SUfQZ2wYS2g8A70Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.440 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5525f0f6-5c65-4fa5-a88f-8fce85fcd26e +16:29:44.449 [XNIO-1 task-1] ZZn4jRDGTjCp3kT1uShwsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.450 [XNIO-1 task-1] ZZn4jRDGTjCp3kT1uShwsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.450 [XNIO-1 task-1] ZZn4jRDGTjCp3kT1uShwsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.453 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f44e84d2-1862-41de-a523-b2104e27c138 +16:29:44.456 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:93114a1e-c7aa-4917-8b7d-7b041eaf5947 +16:29:44.464 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.465 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.465 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.465 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.466 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.466 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.466 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.466 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:44.467 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:44.467 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.467 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.467 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd2d309d-1aea-427a-a6cd-a8badde0","clientDesc":"7b061041-1953-4942-abe1-43ad83775f02","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.467 [XNIO-1 task-1] lqhHj8iYTGq8Wy-Zp8hBbg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.468 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:33ebaa99-39eb-4ddb-a657-859ef9da6627 +16:29:44.472 [XNIO-1 task-1] ERJSQRBTRxuq8Q1t_0KT3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.473 [XNIO-1 task-1] ERJSQRBTRxuq8Q1t_0KT3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.474 [XNIO-1 task-1] ERJSQRBTRxuq8Q1t_0KT3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.498 [XNIO-1 task-1] _HXStVWtSseQyDAviUlqfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.498 [XNIO-1 task-1] _HXStVWtSseQyDAviUlqfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.499 [XNIO-1 task-1] _HXStVWtSseQyDAviUlqfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.546 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.546 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.547 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.547 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.547 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.547 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.547 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.547 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:44.547 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:44.548 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.548 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.548 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"123dd3fc-8c92-47b9-8ef4-0a54934b","clientDesc":"983b3d9b-f579-458b-a92b-f93a5f4135e7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.548 [XNIO-1 task-1] tOCjJ2DlRuG_HSQWOM2mwQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.552 [XNIO-1 task-1] SMgWEMctRUOZs2ZMkO76eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.553 [XNIO-1 task-1] SMgWEMctRUOZs2ZMkO76eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.553 [XNIO-1 task-1] SMgWEMctRUOZs2ZMkO76eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.553 [XNIO-1 task-1] SMgWEMctRUOZs2ZMkO76eQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.565 [XNIO-1 task-1] Gdqk5RBITG2JvqwJWCRwsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:44.565 [XNIO-1 task-1] Gdqk5RBITG2JvqwJWCRwsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.565 [XNIO-1 task-1] Gdqk5RBITG2JvqwJWCRwsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.565 [XNIO-1 task-1] Gdqk5RBITG2JvqwJWCRwsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4385eba9-d9dc-4ff7-9d02-744f4edd0661 +16:29:44.582 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.583 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.583 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.584 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.584 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.584 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.584 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.584 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:44.584 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:44.588 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.588 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.588 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f08499f5-fb9a-4e29-936e-2132842a","clientDesc":"81908ad0-88b8-47d4-9e5b-3325c0c275ac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.589 [XNIO-1 task-1] l2ARO1bJQjC7A0UU2hNfYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.594 [XNIO-1 task-1] JlqbKPvpRUOYe6uDS-3RjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/deeea842-7b5d-41f4-af72-6964eb3a6d84 +16:29:44.594 [XNIO-1 task-1] JlqbKPvpRUOYe6uDS-3RjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.594 [XNIO-1 task-1] JlqbKPvpRUOYe6uDS-3RjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.595 [XNIO-1 task-1] JlqbKPvpRUOYe6uDS-3RjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/deeea842-7b5d-41f4-af72-6964eb3a6d84 +16:29:44.601 [XNIO-1 task-1] JlqbKPvpRUOYe6uDS-3RjQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null +Jun 28, 2024 4:29:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.602 [XNIO-1 task-1] JlqbKPvpRUOYe6uDS-3RjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.604 [XNIO-1 task-1] w4gcaJcPTSmdVZJalDrQYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac +16:29:44.605 [XNIO-1 task-1] w4gcaJcPTSmdVZJalDrQYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.605 [XNIO-1 task-1] w4gcaJcPTSmdVZJalDrQYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.606 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1224e111-c805-4160-a665-e536a4ebc738 +16:29:44.606 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1224e111-c805-4160-a665-e536a4ebc738 + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +16:29:44.619 [XNIO-1 task-1] LKcQPvQcRQKhn1bfjs08_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.630 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4a2ad044-8eb0-48d1-a074-ebbf75b75fad +16:29:44.642 [XNIO-1 task-1] pCQtgL4PRHOpMO9NKC119Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3201e3c-ce26-4a57-89ee-7fd136d902bd, base path is set to: null +16:29:44.642 [XNIO-1 task-1] pCQtgL4PRHOpMO9NKC119Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.642 [XNIO-1 task-1] pCQtgL4PRHOpMO9NKC119Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:29:44.642 [XNIO-1 task-1] pCQtgL4PRHOpMO9NKC119Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:44.642 [XNIO-1 task-1] pCQtgL4PRHOpMO9NKC119Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} + +16:29:44.642 [XNIO-1 task-1] pCQtgL4PRHOpMO9NKC119Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3201e3c-ce26-4a57-89ee-7fd136d902bd, base path is set to: null +16:29:44.643 [XNIO-1 task-1] pCQtgL4PRHOpMO9NKC119Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f3201e3c-ce26-4a57-89ee-7fd136d902bd", "f3201e3c-ce26-4a57-89ee-7fd136d902bd", clientId) +16:29:44.647 [XNIO-1 task-1] EP8h5uVHQoCcNmM9Y5SQzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.647 [XNIO-1 task-1] EP8h5uVHQoCcNmM9Y5SQzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.647 [XNIO-1 task-1] EP8h5uVHQoCcNmM9Y5SQzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.654 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:37854a5d-00e2-413d-92a7-b682e3c69aff +16:29:44.666 [XNIO-1 task-1] uzuivm_6T-yM7Mjy4ZKEvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.667 [XNIO-1 task-1] uzuivm_6T-yM7Mjy4ZKEvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.667 [XNIO-1 task-1] uzuivm_6T-yM7Mjy4ZKEvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.667 [XNIO-1 task-1] uzuivm_6T-yM7Mjy4ZKEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.678 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.680 [XNIO-1 task-1] BjLOW9fISY6UHWXyzdvUdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.681 [XNIO-1 task-1] BjLOW9fISY6UHWXyzdvUdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.681 [XNIO-1 task-1] BjLOW9fISY6UHWXyzdvUdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.681 [XNIO-1 task-1] BjLOW9fISY6UHWXyzdvUdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.700 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1224e111-c805-4160-a665-e536a4ebc738 +16:29:44.702 [XNIO-1 task-1] -SyB3mYwQK-HP8MZugcZwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.702 [XNIO-1 task-1] -SyB3mYwQK-HP8MZugcZwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.703 [XNIO-1 task-1] -SyB3mYwQK-HP8MZugcZwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.726 [XNIO-1 task-1] yHwaoFKwTYK4p6k9NJ4azg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.727 [XNIO-1 task-1] yHwaoFKwTYK4p6k9NJ4azg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.727 [XNIO-1 task-1] yHwaoFKwTYK4p6k9NJ4azg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.747 [XNIO-1 task-1] V-WnykR6Sfm0h8xsfmX7sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e +16:29:44.748 [XNIO-1 task-1] V-WnykR6Sfm0h8xsfmX7sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.748 [XNIO-1 task-1] V-WnykR6Sfm0h8xsfmX7sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.748 [XNIO-1 task-1] V-WnykR6Sfm0h8xsfmX7sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e +16:29:44.752 [XNIO-1 task-1] lv0dpOuJRRmuVk1cvwDywA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb, base path is set to: null +16:29:44.753 [XNIO-1 task-1] lv0dpOuJRRmuVk1cvwDywA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.753 [XNIO-1 task-1] lv0dpOuJRRmuVk1cvwDywA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:44.753 [XNIO-1 task-1] lv0dpOuJRRmuVk1cvwDywA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb, base path is set to: null +16:29:44.753 [XNIO-1 task-1] lv0dpOuJRRmuVk1cvwDywA DEBUG com.networknt.schema.TypeValidator debug - validate( "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", clientId) +16:29:44.766 [XNIO-1 task-1] b8ea_vRVSkS-vpH9wsdI8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e +16:29:44.766 [XNIO-1 task-1] b8ea_vRVSkS-vpH9wsdI8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.766 [XNIO-1 task-1] b8ea_vRVSkS-vpH9wsdI8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.766 [XNIO-1 task-1] b8ea_vRVSkS-vpH9wsdI8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e +16:29:44.774 [XNIO-1 task-1] TNsI6g2UTxq2hTZEq5gCEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.774 [XNIO-1 task-1] TNsI6g2UTxq2hTZEq5gCEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.775 [XNIO-1 task-1] TNsI6g2UTxq2hTZEq5gCEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.776 [XNIO-1 task-1] TNsI6g2UTxq2hTZEq5gCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.790 [XNIO-1 task-1] dM_v2c_lQOiWsxj3tY4aKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.791 [XNIO-1 task-1] dM_v2c_lQOiWsxj3tY4aKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:44.791 [XNIO-1 task-1] dM_v2c_lQOiWsxj3tY4aKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.792 [XNIO-1 task-1] dM_v2c_lQOiWsxj3tY4aKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.793 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.802 [XNIO-1 task-1] YEJtGXhiSL64jbnE-e2eKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21b8b7ea-60ec-4af0-af13-57c2ca9acb53 +16:29:44.802 [XNIO-1 task-1] YEJtGXhiSL64jbnE-e2eKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.803 [XNIO-1 task-1] YEJtGXhiSL64jbnE-e2eKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.803 [XNIO-1 task-1] YEJtGXhiSL64jbnE-e2eKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/21b8b7ea-60ec-4af0-af13-57c2ca9acb53 +16:29:44.818 [XNIO-1 task-1] YEJtGXhiSL64jbnE-e2eKA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:44.819 [XNIO-1 task-1] YEJtGXhiSL64jbnE-e2eKA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:44.824 [XNIO-1 task-1] eK08_R_pTHWhnj8YHmKDlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/740d5a10-bae7-4eb2-a7cd-49d343d84bfa +16:29:44.824 [XNIO-1 task-1] eK08_R_pTHWhnj8YHmKDlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.824 [XNIO-1 task-1] eK08_R_pTHWhnj8YHmKDlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:44.825 [XNIO-1 task-1] eK08_R_pTHWhnj8YHmKDlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/740d5a10-bae7-4eb2-a7cd-49d343d84bfa +16:29:44.825 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:740d5a10-bae7-4eb2-a7cd-49d343d84bfa +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +Jun 28, 2024 4:29:45 PM com.hazelcast.map.impl.operation.DeleteOperation +16:29:44.830 [XNIO-1 task-1] eK08_R_pTHWhnj8YHmKDlw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:44.830 [XNIO-1 task-1] eK08_R_pTHWhnj8YHmKDlw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/740d5a10-bae7-4eb2-a7cd-49d343d84bfa} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:44.844 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:600088b6 +16:29:44.845 [XNIO-1 task-1] zJ0v67c2TzCxfAtYWgcc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.846 [XNIO-1 task-1] zJ0v67c2TzCxfAtYWgcc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.846 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:600088b6 +16:29:44.846 [XNIO-1 task-1] zJ0v67c2TzCxfAtYWgcc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.877 [XNIO-1 task-1] TN38ZEVEQV2FTURxoca8xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.877 [XNIO-1 task-1] TN38ZEVEQV2FTURxoca8xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.878 [XNIO-1 task-1] TN38ZEVEQV2FTURxoca8xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:44.918 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.953 [XNIO-1 task-1] Vw9Fnyi6TeO3RzA-DCQOqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.953 [XNIO-1 task-1] Vw9Fnyi6TeO3RzA-DCQOqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.953 [XNIO-1 task-1] Vw9Fnyi6TeO3RzA-DCQOqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.973 [XNIO-1 task-1] uWxH1gRLSS-BZqYsXpf4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.973 [XNIO-1 task-1] uWxH1gRLSS-BZqYsXpf4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.973 [XNIO-1 task-1] uWxH1gRLSS-BZqYsXpf4ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:44.974 [XNIO-1 task-1] uWxH1gRLSS-BZqYsXpf4ZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.009 [XNIO-1 task-1] TFsVPqltQxub3OjjOjlP6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.009 [XNIO-1 task-1] TFsVPqltQxub3OjjOjlP6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.009 [XNIO-1 task-1] TFsVPqltQxub3OjjOjlP6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.009 [XNIO-1 task-1] TFsVPqltQxub3OjjOjlP6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.039 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5a5c0178-1e07-44ed-92bb-b6b6c005e034 +16:29:45.048 [XNIO-1 task-1] n2Src19jQO6B32Fm_ZAiHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.048 [XNIO-1 task-1] n2Src19jQO6B32Fm_ZAiHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.048 [XNIO-1 task-1] n2Src19jQO6B32Fm_ZAiHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.048 [XNIO-1 task-1] n2Src19jQO6B32Fm_ZAiHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.050 [XNIO-1 task-1] n2Src19jQO6B32Fm_ZAiHg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", clientId) +16:29:45.054 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:45.054 [XNIO-1 task-1] n2Src19jQO6B32Fm_ZAiHg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:45.056 [XNIO-1 task-1] n2Src19jQO6B32Fm_ZAiHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:45.060 [XNIO-1 task-1] zQpp5lyCSACff164JiMASQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.060 [XNIO-1 task-1] zQpp5lyCSACff164JiMASQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.060 [XNIO-1 task-1] zQpp5lyCSACff164JiMASQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.074 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d3df5a6a-cf6a-4ae3-8476-6f33de2ca85a +16:29:45.076 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:600088b6 +16:29:45.085 [XNIO-1 task-1] zHeal6DgR0yJqKN5CKFBBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.085 [XNIO-1 task-1] zHeal6DgR0yJqKN5CKFBBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.086 [XNIO-1 task-1] zHeal6DgR0yJqKN5CKFBBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.092 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:759d766e-4cb6-4c14-8dfc-6325b5f02933 +16:29:45.094 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:759d766e-4cb6-4c14-8dfc-6325b5f02933 +16:29:45.107 [XNIO-1 task-1] 63EL9pK0Rbu_D7pWTbbGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.108 [XNIO-1 task-1] 63EL9pK0Rbu_D7pWTbbGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.108 [XNIO-1 task-1] 63EL9pK0Rbu_D7pWTbbGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.114 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:02c08e87-2491-4fda-adce-bcec3bf977c5 +16:29:45.121 [XNIO-1 task-1] Y7x2rM7-TeKtU1agk9urwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.121 [XNIO-1 task-1] Y7x2rM7-TeKtU1agk9urwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.122 [XNIO-1 task-1] Y7x2rM7-TeKtU1agk9urwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.129 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5ac27334 +16:29:45.137 [XNIO-1 task-1] fL7h_J_CRKGe4PvudXXfqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668, base path is set to: null +16:29:45.137 [XNIO-1 task-1] fL7h_J_CRKGe4PvudXXfqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.137 [XNIO-1 task-1] fL7h_J_CRKGe4PvudXXfqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.137 [XNIO-1 task-1] fL7h_J_CRKGe4PvudXXfqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668, base path is set to: null +16:29:45.138 [XNIO-1 task-1] fL7h_J_CRKGe4PvudXXfqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f4d7d1cf-7944-42ed-afcf-78b464a81668", "f4d7d1cf-7944-42ed-afcf-78b464a81668", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:45.164 [XNIO-1 task-1] fL7h_J_CRKGe4PvudXXfqQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f4d7d1cf-7944-42ed-afcf-78b464a81668} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.167 [XNIO-1 task-1] qs-0kYI5TU6lNmN2ydsA_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.167 [XNIO-1 task-1] qs-0kYI5TU6lNmN2ydsA_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.167 [XNIO-1 task-1] qs-0kYI5TU6lNmN2ydsA_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.167 [XNIO-1 task-1] qs-0kYI5TU6lNmN2ydsA_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.193 [XNIO-1 task-1] TTHPeyAURweSFjjZuGls0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a1a2b09-f435-4f6e-8faa-0d8326a452df, base path is set to: null +16:29:45.193 [XNIO-1 task-1] TTHPeyAURweSFjjZuGls0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.193 [XNIO-1 task-1] TTHPeyAURweSFjjZuGls0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.193 [XNIO-1 task-1] TTHPeyAURweSFjjZuGls0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.193 [XNIO-1 task-1] TTHPeyAURweSFjjZuGls0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7a1a2b09-f435-4f6e-8faa-0d8326a452df +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:45.197 [XNIO-1 task-1] YdLbOW7DTt2WqpoPuXU0Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d5d9588-7d95-41e6-90e7-81e97545543e, base path is set to: null +16:29:45.197 [XNIO-1 task-1] YdLbOW7DTt2WqpoPuXU0Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.197 [XNIO-1 task-1] YdLbOW7DTt2WqpoPuXU0Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.197 [XNIO-1 task-1] YdLbOW7DTt2WqpoPuXU0Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d5d9588-7d95-41e6-90e7-81e97545543e, base path is set to: null +16:29:45.197 [XNIO-1 task-1] YdLbOW7DTt2WqpoPuXU0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d5d9588-7d95-41e6-90e7-81e97545543e + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +16:29:45.199 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5ac27334 + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +16:29:45.203 [XNIO-1 task-1] A233lCB6RC2LP8vgsEH3mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.203 [XNIO-1 task-1] A233lCB6RC2LP8vgsEH3mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +16:29:45.204 [XNIO-1 task-1] A233lCB6RC2LP8vgsEH3mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.247 [XNIO-1 task-1] mKZyWqZRS9uS6yGlORecDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.248 [XNIO-1 task-1] mKZyWqZRS9uS6yGlORecDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.248 [XNIO-1 task-1] mKZyWqZRS9uS6yGlORecDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.248 [XNIO-1 task-1] mKZyWqZRS9uS6yGlORecDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.248 [XNIO-1 task-1] mKZyWqZRS9uS6yGlORecDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.248 [XNIO-1 task-1] mKZyWqZRS9uS6yGlORecDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +16:29:45.279 [XNIO-1 task-1] QKPhPlK3TFWrcn6YStzZ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.279 [XNIO-1 task-1] QKPhPlK3TFWrcn6YStzZ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/02c08e87-2491-4fda-adce-bcec3bf977c5, base path is set to: null +16:29:45.279 [XNIO-1 task-1] QKPhPlK3TFWrcn6YStzZ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "02c08e87-2491-4fda-adce-bcec3bf977c5", "02c08e87-2491-4fda-adce-bcec3bf977c5", clientId) +16:29:45.279 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:600088b6 +16:29:45.292 [XNIO-1 task-1] 4ZgIHgrQTHGpXuGlkJscJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/370eb83d-c4ff-4aca-a854-e90d6ab65db2 +16:29:45.292 [XNIO-1 task-1] 4ZgIHgrQTHGpXuGlkJscJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.292 [XNIO-1 task-1] 4ZgIHgrQTHGpXuGlkJscJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.293 [XNIO-1 task-1] 4ZgIHgrQTHGpXuGlkJscJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/370eb83d-c4ff-4aca-a854-e90d6ab65db2 +16:29:45.293 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:600088b6 +16:29:45.296 [XNIO-1 task-1] GcTOsmeEQZ63H2D3nD62wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.296 [XNIO-1 task-1] GcTOsmeEQZ63H2D3nD62wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.296 [XNIO-1 task-1] GcTOsmeEQZ63H2D3nD62wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.316 [XNIO-1 task-1] bbyhfKrQSoan0GwoplGzpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.316 [XNIO-1 task-1] bbyhfKrQSoan0GwoplGzpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.317 [XNIO-1 task-1] bbyhfKrQSoan0GwoplGzpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.350 [XNIO-1 task-1] ERzCIdyNTEKanUvOyCE1gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d5d9588-7d95-41e6-90e7-81e97545543e, base path is set to: null +16:29:45.350 [XNIO-1 task-1] ERzCIdyNTEKanUvOyCE1gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.350 [XNIO-1 task-1] ERzCIdyNTEKanUvOyCE1gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.350 [XNIO-1 task-1] ERzCIdyNTEKanUvOyCE1gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d5d9588-7d95-41e6-90e7-81e97545543e, base path is set to: null +16:29:45.350 [XNIO-1 task-1] ERzCIdyNTEKanUvOyCE1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3d5d9588-7d95-41e6-90e7-81e97545543e", "3d5d9588-7d95-41e6-90e7-81e97545543e", clientId) +16:29:45.353 [XNIO-1 task-1] pQTmvfdQTHWr6OmPCi765A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.353 [XNIO-1 task-1] pQTmvfdQTHWr6OmPCi765A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.354 [XNIO-1 task-1] pQTmvfdQTHWr6OmPCi765A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.354 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:600088b6 +16:29:45.367 [XNIO-1 task-1] -_mvHB8YQ_GizkSHdC_nZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac, base path is set to: null +16:29:45.368 [XNIO-1 task-1] -_mvHB8YQ_GizkSHdC_nZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.368 [XNIO-1 task-1] -_mvHB8YQ_GizkSHdC_nZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.368 [XNIO-1 task-1] -_mvHB8YQ_GizkSHdC_nZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9f2ec6b0-7de7-4028-a636-fe8364b327ac, base path is set to: null +16:29:45.368 [XNIO-1 task-1] -_mvHB8YQ_GizkSHdC_nZg DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", clientId) +16:29:45.372 [XNIO-1 task-1] 4bxdlG_3RrSzqmvg77in0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3378dda-224b-42c8-babc-5425db5519c1 +16:29:45.372 [XNIO-1 task-1] 4bxdlG_3RrSzqmvg77in0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.372 [XNIO-1 task-1] 4bxdlG_3RrSzqmvg77in0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.375 [XNIO-1 task-1] 4bxdlG_3RrSzqmvg77in0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c3378dda-224b-42c8-babc-5425db5519c1 +16:29:45.380 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.380 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.381 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.381 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9b0c194c-3d28-4d8d-ae87-f612458c","clientDesc":"811f5168-6f13-46ad-bdeb-254f72ed7c2b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} +java.lang.RuntimeException: null + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:45.382 [XNIO-1 task-1] CFdUQU0OQ0KmXSya3EbIhQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:45.391 [XNIO-1 task-1] JOEuKzD5Rh-nc9wNwfMjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e28a663-48b6-4f65-b5c1-a0429aa16d15 +16:29:45.391 [XNIO-1 task-1] JOEuKzD5Rh-nc9wNwfMjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.391 [XNIO-1 task-1] JOEuKzD5Rh-nc9wNwfMjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.391 [XNIO-1 task-1] JOEuKzD5Rh-nc9wNwfMjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e28a663-48b6-4f65-b5c1-a0429aa16d15 +16:29:45.401 [XNIO-1 task-1] 3nDUZd3RSB66VRzcYhWSuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.402 [XNIO-1 task-1] 3nDUZd3RSB66VRzcYhWSuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.402 [XNIO-1 task-1] 3nDUZd3RSB66VRzcYhWSuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.402 [XNIO-1 task-1] 3nDUZd3RSB66VRzcYhWSuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.402 [XNIO-1 task-1] 3nDUZd3RSB66VRzcYhWSuw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", clientId) +16:29:45.407 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +Jun 28, 2024 4:29:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:45.410 [XNIO-1 task-1] 3nDUZd3RSB66VRzcYhWSuw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +Jun 28, 2024 4:29:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + ... 13 more + + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:45.410 [XNIO-1 task-1] 3nDUZd3RSB66VRzcYhWSuw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +java.lang.RuntimeException: null + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.413 [XNIO-1 task-1] -VCoXiA_Swa5OWZ5aDlQoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.413 [XNIO-1 task-1] -VCoXiA_Swa5OWZ5aDlQoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.413 [XNIO-1 task-1] -VCoXiA_Swa5OWZ5aDlQoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.414 [XNIO-1 task-1] -VCoXiA_Swa5OWZ5aDlQoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.429 [XNIO-1 task-1] dQPqhCXyTq2qLLHipBZBvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.430 [XNIO-1 task-1] dQPqhCXyTq2qLLHipBZBvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.430 [XNIO-1 task-1] dQPqhCXyTq2qLLHipBZBvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.430 [XNIO-1 task-1] dQPqhCXyTq2qLLHipBZBvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +16:29:45.448 [XNIO-1 task-1] n97bTrA5ShqoDt3gHLJQQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11e2e401-ffc5-45ba-83e6-649bccf2f148 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:45.448 [XNIO-1 task-1] n97bTrA5ShqoDt3gHLJQQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11e2e401-ffc5-45ba-83e6-649bccf2f148, base path is set to: null +16:29:45.450 [XNIO-1 task-1] n97bTrA5ShqoDt3gHLJQQg DEBUG com.networknt.schema.TypeValidator debug - validate( "11e2e401-ffc5-45ba-83e6-649bccf2f148", "11e2e401-ffc5-45ba-83e6-649bccf2f148", clientId) +16:29:45.454 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.454 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.454 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG com.networknt.schema.TypeValidator debug - validate( "1e610d17-53f9-43c6-a53f-ee451e7edc5f", {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + +16:29:45.456 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.457 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.457 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cef4f73e-4a32-4dec-8ded-208d08af","clientDesc":"1e610d17-53f9-43c6-a53f-ee451e7edc5f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:45.457 [XNIO-1 task-1] Nt0MX5xkTxaPy6Bt5IttQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:45.462 [XNIO-1 task-1] Wz5nCiKLS0665CoseuiGfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.463 [XNIO-1 task-1] Wz5nCiKLS0665CoseuiGfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.463 [XNIO-1 task-1] Wz5nCiKLS0665CoseuiGfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.463 [XNIO-1 task-1] Wz5nCiKLS0665CoseuiGfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.476 [XNIO-1 task-1] HcyZuuucQpiSEzAeYjr7mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f23b976-3ad2-422d-8008-78878f5d4813 +16:29:45.477 [XNIO-1 task-1] HcyZuuucQpiSEzAeYjr7mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.477 [XNIO-1 task-1] HcyZuuucQpiSEzAeYjr7mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.477 [XNIO-1 task-1] HcyZuuucQpiSEzAeYjr7mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f23b976-3ad2-422d-8008-78878f5d4813 +16:29:45.480 [XNIO-1 task-1] twprkKq2QoK-wQfMGillWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.480 [XNIO-1 task-1] twprkKq2QoK-wQfMGillWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.480 [XNIO-1 task-1] twprkKq2QoK-wQfMGillWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.481 [XNIO-1 task-1] twprkKq2QoK-wQfMGillWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.491 [XNIO-1 task-1] w1Uy2XuXRqKHl6q25irATw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/917fbc74-8b32-495a-99bb-6d74ee4e7f70, base path is set to: null +16:29:45.491 [XNIO-1 task-1] w1Uy2XuXRqKHl6q25irATw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.492 [XNIO-1 task-1] w1Uy2XuXRqKHl6q25irATw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.492 [XNIO-1 task-1] w1Uy2XuXRqKHl6q25irATw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/917fbc74-8b32-495a-99bb-6d74ee4e7f70, base path is set to: null +16:29:45.492 [XNIO-1 task-1] w1Uy2XuXRqKHl6q25irATw DEBUG com.networknt.schema.TypeValidator debug - validate( "917fbc74-8b32-495a-99bb-6d74ee4e7f70", "917fbc74-8b32-495a-99bb-6d74ee4e7f70", clientId) +16:29:45.502 [XNIO-1 task-1] GkqmQY-6QGut6OnaSse_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/084e3b47-b7aa-48b2-9949-9cabaa838761 +16:29:45.502 [XNIO-1 task-1] GkqmQY-6QGut6OnaSse_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.502 [XNIO-1 task-1] GkqmQY-6QGut6OnaSse_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.502 [XNIO-1 task-1] GkqmQY-6QGut6OnaSse_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/084e3b47-b7aa-48b2-9949-9cabaa838761 +16:29:45.503 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:084e3b47-b7aa-48b2-9949-9cabaa838761 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:45.509 [XNIO-1 task-1] GkqmQY-6QGut6OnaSse_-g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/084e3b47-b7aa-48b2-9949-9cabaa838761} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.516 [XNIO-1 task-1] pYQolq7PR7-uPn-5SCsQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59ed2ff7-0763-4ea2-a8c1-cef73611f934, base path is set to: null +16:29:45.517 [XNIO-1 task-1] pYQolq7PR7-uPn-5SCsQNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.517 [XNIO-1 task-1] pYQolq7PR7-uPn-5SCsQNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.517 [XNIO-1 task-1] pYQolq7PR7-uPn-5SCsQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/59ed2ff7-0763-4ea2-a8c1-cef73611f934, base path is set to: null +16:29:45.517 [XNIO-1 task-1] pYQolq7PR7-uPn-5SCsQNw DEBUG com.networknt.schema.TypeValidator debug - validate( "59ed2ff7-0763-4ea2-a8c1-cef73611f934", "59ed2ff7-0763-4ea2-a8c1-cef73611f934", clientId) +16:29:45.523 [XNIO-1 task-1] URA8OR60QhSpvMd1hjoEXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93114a1e-c7aa-4917-8b7d-7b041eaf5947 +16:29:45.524 [XNIO-1 task-1] URA8OR60QhSpvMd1hjoEXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.524 [XNIO-1 task-1] URA8OR60QhSpvMd1hjoEXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.524 [XNIO-1 task-1] URA8OR60QhSpvMd1hjoEXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93114a1e-c7aa-4917-8b7d-7b041eaf5947 +16:29:45.529 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93114a1e-c7aa-4917-8b7d-7b041eaf5947 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:45.545 [XNIO-1 task-1] URA8OR60QhSpvMd1hjoEXw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/93114a1e-c7aa-4917-8b7d-7b041eaf5947} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.557 [XNIO-1 task-1] yEstPVoJT-2wiIIfAaNdaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.557 [XNIO-1 task-1] yEstPVoJT-2wiIIfAaNdaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.557 [XNIO-1 task-1] yEstPVoJT-2wiIIfAaNdaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.557 [XNIO-1 task-1] yEstPVoJT-2wiIIfAaNdaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.557 [XNIO-1 task-1] yEstPVoJT-2wiIIfAaNdaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", clientId) +16:29:45.561 [XNIO-1 task-1] BVIwTICwTiiwgtljMvLb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a +16:29:45.561 [XNIO-1 task-1] BVIwTICwTiiwgtljMvLb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.561 [XNIO-1 task-1] BVIwTICwTiiwgtljMvLb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.561 [XNIO-1 task-1] BVIwTICwTiiwgtljMvLb_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a +16:29:45.562 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:45.567 [XNIO-1 task-1] BVIwTICwTiiwgtljMvLb_Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.570 [XNIO-1 task-1] gi2nkVcOTnaY6ckk1V2zSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.570 [XNIO-1 task-1] gi2nkVcOTnaY6ckk1V2zSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.570 [XNIO-1 task-1] gi2nkVcOTnaY6ckk1V2zSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:29:45.570 [XNIO-1 task-1] gi2nkVcOTnaY6ckk1V2zSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a, base path is set to: null +16:29:45.571 [XNIO-1 task-1] gi2nkVcOTnaY6ckk1V2zSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", clientId) +16:29:45.574 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:45.575 [XNIO-1 task-1] gi2nkVcOTnaY6ckk1V2zSQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) +Jun 28, 2024 4:29:46 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:45.575 [XNIO-1 task-1] gi2nkVcOTnaY6ckk1V2zSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:45.580 [XNIO-1 task-1] SZiqnEuKQNePwikaM3oyfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a +16:29:45.581 [XNIO-1 task-1] SZiqnEuKQNePwikaM3oyfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.581 [XNIO-1 task-1] SZiqnEuKQNePwikaM3oyfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:29:45.581 [XNIO-1 task-1] SZiqnEuKQNePwikaM3oyfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a +16:29:45.581 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:29:45.586 [XNIO-1 task-1] SZiqnEuKQNePwikaM3oyfA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.591 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.591 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.591 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.594 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.594 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.595 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.595 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.595 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:45.595 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:45.595 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.595 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.595 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d658407d-e600-4eb5-b68e-c9f0da0b","clientDesc":"b8efb706-b630-4f32-a9fd-3939b97af70b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:45.596 [XNIO-1 task-1] ZFIRtycVSHy5r_QyO1fE3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:29:45.599 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.599 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.600 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:29:45.600 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.600 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "92cf4920-e1f5-4778-affb-382527ea7e35", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "3dd8bb37-65d7-4c37-9a7e-2de8b5d9", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3dd8bb37-65d7-4c37-9a7e-2de8b5d9","clientDesc":"92cf4920-e1f5-4778-affb-382527ea7e35","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:45.601 [XNIO-1 task-1] 7Lw-DlVNTAqxwdExoBsO9A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.611 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.611 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:29:45.612 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:29:45.612 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.612 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.612 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.613 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.613 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +Jun 28, 2024 4:29:46 PM com.hazelcast.map.impl.operation.DeleteOperation +16:29:45.613 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG com.networknt.schema.TypeValidator debug - validate( "7327f448-9746-4ca3-b207-f8d7e1d1", {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:45.613 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +16:29:45.613 [XNIO-1 task-1] aVkfH8WxSxaLwYxMHS5ZJw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7327f448-9746-4ca3-b207-f8d7e1d1","clientDesc":"741a6166-5b35-409e-9ec3-bd63182b0c5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) diff --git a/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-code-1.log b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..22e460a --- /dev/null +++ b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-code-1.log @@ -0,0 +1,3069 @@ +16:29:38.293 [XNIO-1 task-2] 9WHjIQlHS7-RaWIGdJojtA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:38.376 [XNIO-1 task-2] 9WHjIQlHS7-RaWIGdJojtA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:38.377 [XNIO-1 task-2] 9WHjIQlHS7-RaWIGdJojtA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:38.377 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:38.378 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:38.378 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:38.379 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1abc349b-4fa2-400f-805c-0bb6d9fce578", "1abc349b-4fa2-400f-805c-0bb6d9fce578", client_id) +16:29:38.379 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:38.380 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:38.380 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:38.380 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:38.382 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:38.389 [XNIO-1 task-2] 9WHjIQlHS7-RaWIGdJojtA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wBiJpp2UQKuqMabYqV4QdQ +16:29:38.403 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:38.403 [XNIO-1 task-1] 8kH-GB1fTu6tv8VtrZOuLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:38.457 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:38.457 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:38.463 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:38.464 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG com.networknt.schema.TypeValidator debug - validate( "TFmQs-RBvnnNrL3gQAU7vNJY2UyyOTs8lq15w8l_RLM", "TFmQs-RBvnnNrL3gQAU7vNJY2UyyOTs8lq15w8l_RLM", code_challenge) +16:29:38.464 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:38.465 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:38.465 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:38.466 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:38.466 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:38.468 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:38.485 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:38.485 [XNIO-1 task-1] tt_P9ecjTuSjB5aZzIVMjg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:39.278 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:40d9676c +16:29:39.349 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:40d9676c +16:29:39.447 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:40d9676c +16:29:39.455 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7736976d-f08a-4bbc-aa22-bd53e12e2ac7 +16:29:39.472 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:40d9676c +16:29:39.493 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:40d9676c +16:29:39.814 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7736976d-f08a-4bbc-aa22-bd53e12e2ac7 +16:29:39.900 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c902b3e9-2498-4b4d-a931-61a4539eb9eb +16:29:40.121 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e +16:29:40.123 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e +16:29:40.129 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.130 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.130 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.131 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.132 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.132 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.132 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.132 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.138 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c902b3e9-2498-4b4d-a931-61a4539eb9eb +16:29:40.139 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.139 [XNIO-1 task-1] HbPTikB6QbWh9ElJUWvKkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.149 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.149 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.150 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.150 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:40.151 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.151 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.152 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.152 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.155 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.161 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.162 [XNIO-1 task-1] FMMYZ7nFTLCO0rOHrYAXag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.252 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.252 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.252 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.253 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e", "b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e", client_id) +16:29:40.254 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.254 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.254 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.254 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.255 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.261 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.261 [XNIO-1 task-1] K_l7IvoxSceZRKM52NMJoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.269 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.269 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.270 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.270 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:40.271 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.271 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.272 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.272 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.272 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.282 [XNIO-1 task-1] -qnI99PrQC6-Aby6ZTgOug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.282 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.282 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.283 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.283 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.284 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", client_id) +16:29:40.284 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.285 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.285 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.285 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.286 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.333 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.334 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.334 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.334 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.335 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.335 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.336 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.336 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.336 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.351 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.351 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.361 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.361 [XNIO-1 task-2] -niSPyhRQ0iKkq-xYnDgow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.372 [XNIO-1 task-1] kXCuR74sRd6OS-xQCUcujw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6CikmynsQO-EYtydTO9myQ +16:29:40.394 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8be0a342-8ff8-4134-bfd5-c9ba304e22c0 +16:29:40.411 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.411 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.411 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.412 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.412 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.413 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.413 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.413 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.421 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.421 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.423 [XNIO-1 task-1] Y3shnVLGRV-LVWVKwEprEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vaJlJYPXTDKfrx8dHqtZXQ +16:29:40.431 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.431 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.431 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.432 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", client_id) +16:29:40.432 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.433 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.433 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.433 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.433 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.435 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.435 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.436 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.436 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f7529e7e-ace0-4e36-aed2-4535998eae0f", "f7529e7e-ace0-4e36-aed2-4535998eae0f", client_id) +16:29:40.441 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.441 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.441 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.441 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.441 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.441 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.442 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.444 [XNIO-1 task-2] W-OKsqOWTd-ccQ4_Sk59CA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dFolzuKySMSZ4BEo3WFK9g +16:29:40.449 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.450 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.450 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.451 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.451 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.452 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.452 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.452 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.460 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.461 [XNIO-1 task-1] gLogImZpS2C73unyC70x-Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.462 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.463 [XNIO-1 task-2] 4_OB2-COQOS0YujfIoe9rw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.463 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c8bead95 +16:29:40.469 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.470 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.470 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.470 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", client_id) +16:29:40.471 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.471 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.472 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.472 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.472 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.473 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c8bead95 +16:29:40.485 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.485 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.485 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.486 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG com.networknt.schema.TypeValidator debug - validate( "eTUhQ_xzYpUhbu9hEHqCI5KlNpJDE3tV5RarU-1rPmo", "eTUhQ_xzYpUhbu9hEHqCI5KlNpJDE3tV5RarU-1rPmo", code_challenge) +16:29:40.487 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:40.487 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.488 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.488 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.489 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.489 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.497 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.497 [XNIO-1 task-2] NehpW2nCTEqpyrCdtEdRaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.501 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.501 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.504 [XNIO-1 task-1] oLk5GhY7QKShYuMVexY0xw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=anHOqeJwTVi0tiesNLkAxg +16:29:40.506 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.506 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.506 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.508 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:40.511 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.512 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.514 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.514 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.514 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.516 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56db2545-5603-4d9c-b7d7-c9cd21829331 +16:29:40.522 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.522 [XNIO-1 task-1] ktH4YJxYRTq-gDuWrbb4cw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.528 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.529 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.529 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.530 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", client_id) +16:29:40.531 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.532 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.533 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.533 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.534 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.546 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.547 [XNIO-1 task-1] V0_tOTlzSoGt6lSNZgHSIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.559 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.559 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.559 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.560 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", client_id) +16:29:40.560 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.561 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.561 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.561 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.561 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.572 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.573 [XNIO-1 task-1] Agetgt9MT9iSpbv4-PoBWQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.665 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d9f822f1-1844-4404-a39f-8ebd9a58e10f +16:29:40.666 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d9f822f1-1844-4404-a39f-8ebd9a58e10f +16:29:40.679 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.679 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.680 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.680 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG com.networknt.schema.TypeValidator debug - validate( "f7529e7e-ace0-4e36-aed2-4535998eae0f", "f7529e7e-ace0-4e36-aed2-4535998eae0f", client_id) +16:29:40.681 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.681 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.683 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.683 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.683 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.695 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.695 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.697 [XNIO-1 task-1] qYjKAnnbRSCSHFDdJPncqg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6GQ3MEruTwu-XoHe56k4Vw +16:29:40.703 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.703 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.703 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.704 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f7529e7e-ace0-4e36-aed2-4535998eae0f", "f7529e7e-ace0-4e36-aed2-4535998eae0f", client_id) +16:29:40.705 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.705 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.705 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.705 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.709 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.717 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.717 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.723 [XNIO-1 task-1] cKBnlkqjTd-nioU8OryLqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UsG5YM0MTXytO3J00R34Ig +16:29:40.750 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.750 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.750 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.751 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", client_id) +16:29:40.751 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.751 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.752 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.752 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.752 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.762 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.763 [XNIO-1 task-1] fsF2yuuNSveRB_qNiETZ0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.765 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a21c5193-f971-46b6-b463-d6808b46ec6f +16:29:40.766 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a21c5193-f971-46b6-b463-d6808b46ec6f +16:29:40.812 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.812 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.814 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.814 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG com.networknt.schema.TypeValidator debug - validate( "vxZ-TOggIsRzODAO0KnAE2ay3Fku8EcR2kBgoJ3S21Q", "vxZ-TOggIsRzODAO0KnAE2ay3Fku8EcR2kBgoJ3S21Q", code_challenge) +16:29:40.815 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:40.816 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.817 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.817 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.817 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.817 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.827 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.827 [XNIO-1 task-1] z-2aWhS0R-qudYJ_Vv01TA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.835 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.836 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.836 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.837 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG com.networknt.schema.TypeValidator debug - validate( "UCyr1sBAY6rh9gucOhVsdP_39e-Iti11A5iCgwXdvXA", "UCyr1sBAY6rh9gucOhVsdP_39e-Iti11A5iCgwXdvXA", code_challenge) +16:29:40.838 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:40.838 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.839 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.841 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.841 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.842 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.849 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.850 [XNIO-1 task-1] BDxXpN61TSC8DD0lvGpveA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.860 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.861 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.861 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.863 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG com.networknt.schema.TypeValidator debug - validate( "yAnx_XPgc4KP_UqBNEW3fChILz7y_CRaVYZhNwAvbRU", "yAnx_XPgc4KP_UqBNEW3fChILz7y_CRaVYZhNwAvbRU", code_challenge) +16:29:40.864 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:40.866 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.868 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.868 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.868 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.870 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.880 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.880 [XNIO-1 task-1] 35jEsZRST4GqSz4G8fxJbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.912 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.912 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.912 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.914 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG com.networknt.schema.TypeValidator debug - validate( "_bokXeIbLtob1t8eku2EyP-iuObISPW01wMFE6IMfIs", "_bokXeIbLtob1t8eku2EyP-iuObISPW01wMFE6IMfIs", code_challenge) +16:29:40.914 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:40.915 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.915 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.915 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.916 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.916 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.945 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.947 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.951 [XNIO-1 task-1] lHhtbIbIQICpRJukqs3G3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=K_fWD6NMR0GaBuuL94YMVw +16:29:40.959 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.959 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.960 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.961 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:40.961 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:40.962 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:40.962 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:40.962 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:40.962 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:40.963 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.964 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:40.964 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:40.964 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", client_id) +16:29:40.964 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:40.965 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:40.965 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:40.965 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:40.968 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:40.979 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:40.979 [XNIO-1 task-1] NqLAGPJbS32POwQi03gjmw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:40.982 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:40.983 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:40.989 [XNIO-1 task-2] LuCbjchfQqazxayqB3dqag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mCFLltUhTTSVj_9dyluHuA +16:29:40.992 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.993 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:40.993 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.036 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.036 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.036 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.036 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.037 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG com.networknt.schema.TypeValidator debug - validate( "5gUmMKsk-S6jZrxpr6H_CKLZArVThTS1bMq3GJvuX6g", "5gUmMKsk-S6jZrxpr6H_CKLZArVThTS1bMq3GJvuX6g", code_challenge) +16:29:41.037 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.045 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.045 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.046 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.046 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.046 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.046 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.046 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.046 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.055 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.055 [XNIO-1 task-2] uIWKIX4dQ_epDW2Hk_vR9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.060 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.060 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.060 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.061 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", client_id) +16:29:41.061 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.062 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.062 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.063 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.063 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.067 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.074 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.074 [XNIO-1 task-2] H2Qi3hsGTIaLnOiz7z-CmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.075 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.075 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.077 [XNIO-1 task-1] 4edLnXRrSAW0sRo9WJtTIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NHg3VzNRSHOn-LAwVFwprw +16:29:41.139 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.140 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.140 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.140 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG com.networknt.schema.TypeValidator debug - validate( "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", client_id) +16:29:41.141 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.141 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.141 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.142 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.142 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:41.159 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:41.161 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:41.164 [XNIO-1 task-1] sWgTJZkfTaiT8Qe4FdMJLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aYP-tQEVSg6l1C-XuQfgPw +16:29:41.183 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.185 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.186 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.187 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:41.188 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.188 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.189 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.189 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.189 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.206 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.206 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.206 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.207 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG com.networknt.schema.TypeValidator debug - validate( "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", client_id) +16:29:41.208 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.208 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.208 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.208 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.212 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:41.227 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:41.227 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.227 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.227 [XNIO-1 task-1] _ryU5V9xQIibzkmcbE9uug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:41.245 [XNIO-1 task-2] BEOI_NZ2SpehMQkFqa4snw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=b46LGSZiQeO47Z6oZD0QsA +16:29:41.249 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.250 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.250 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.250 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG com.networknt.schema.TypeValidator debug - validate( "nnQSeRtsIX2UjRTOC0InhLyyKjyQRsSvH0CJFZlUgCw", "nnQSeRtsIX2UjRTOC0InhLyyKjyQRsSvH0CJFZlUgCw", code_challenge) +16:29:41.252 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.252 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.252 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.252 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.253 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.253 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.259 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.259 [XNIO-1 task-2] lwb3WCHFSlKnsv9Qu3qImg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.338 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.338 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.338 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.339 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", client_id) +16:29:41.339 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.339 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.340 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.340 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.341 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.349 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.349 [XNIO-1 task-2] f18E6K5dRLamH4j5vld_Zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.413 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.413 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.413 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.414 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG com.networknt.schema.TypeValidator debug - validate( "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", client_id) +16:29:41.414 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.414 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.414 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.414 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.415 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.466 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.466 [XNIO-1 task-2] CPYAci0QQvSW2_38HPyV2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.470 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.470 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.470 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.476 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG com.networknt.schema.TypeValidator debug - validate( "1MvMcnERCM11xURqcvzYJe-jBi1zgFfaIjFzthK7SC0", "1MvMcnERCM11xURqcvzYJe-jBi1zgFfaIjFzthK7SC0", code_challenge) +16:29:41.477 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.477 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.478 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.478 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.478 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.478 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.485 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.485 [XNIO-1 task-1] oeDhlHVzR_yLb8gw8oCPug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.491 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.491 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.491 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.492 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "QejOq8MV8CMK6AUT_QzHbD7lN1Qr4DHyN3RpUPLj7vk", "QejOq8MV8CMK6AUT_QzHbD7lN1Qr4DHyN3RpUPLj7vk", code_challenge) +16:29:41.492 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.492 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.493 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.493 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.493 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.494 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.503 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.503 [XNIO-1 task-1] gNHnCvavTkCs5a_W6Gzw-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.534 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.534 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.535 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.535 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7529e7e-ace0-4e36-aed2-4535998eae0f", "f7529e7e-ace0-4e36-aed2-4535998eae0f", client_id) +16:29:41.535 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.537 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.538 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.538 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.538 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.548 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e82aab2a-30f6-4de4-808e-393d23917989 +16:29:41.554 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.555 [XNIO-1 task-1] FDdUDAx-T16QdLDKwoI9oA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.561 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.562 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.562 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.562 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S3LbW9k-tOd1b0_qYFqp62pBsgdehG4wd0xjNPynSMs", "S3LbW9k-tOd1b0_qYFqp62pBsgdehG4wd0xjNPynSMs", code_challenge) +16:29:41.564 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.564 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.565 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.565 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.565 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.565 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.566 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.566 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.566 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.567 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.567 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.567 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.567 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.568 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:41.576 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:41.576 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:41.578 [XNIO-1 task-1] 956aespDS-i7SenYwU1Dog DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mud542cMSJiNOsTbOLCNJg +16:29:41.579 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.579 [XNIO-1 task-2] w1PxKbYMQeKcOhF3u-WdAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.590 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.591 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.591 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.591 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG com.networknt.schema.TypeValidator debug - validate( "-y0woxVkZnG3xxWRUWjpKMO7vji03nqxHGGVvYqpizA", "-y0woxVkZnG3xxWRUWjpKMO7vji03nqxHGGVvYqpizA", code_challenge) +16:29:41.592 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.592 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.592 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.592 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.592 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.593 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.604 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.604 [XNIO-1 task-2] ZQCEu3oZTKuxXr6XWlDA4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.616 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.616 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.617 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.617 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bwO9zMP3btcMPA-5PEuB0BbdY13IRs64WSwEVxmb77E", "bwO9zMP3btcMPA-5PEuB0BbdY13IRs64WSwEVxmb77E", code_challenge) +16:29:41.617 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.618 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.618 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.618 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.618 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.619 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.625 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.625 [XNIO-1 task-2] 3y4A1X9sR4SxhBjjzXecTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.639 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.639 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.640 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.640 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", client_id) +16:29:41.640 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.641 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.641 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.641 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.641 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.651 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.651 [XNIO-1 task-2] tHaBABAARKySrwzjrysWbQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.717 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:de292015-2f6f-4e9b-97c8-ad72bd728552 +16:29:41.719 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:de292015-2f6f-4e9b-97c8-ad72bd728552 +16:29:41.789 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.789 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.790 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.790 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", client_id) +16:29:41.791 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.791 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.791 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.791 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.791 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.797 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.798 [XNIO-1 task-2] HVDM8rWsSW-iaLBWRzoCXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.803 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.804 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.804 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.804 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG com.networknt.schema.TypeValidator debug - validate( "pocj4K56P8AlaXKsBw5CLrXUwuIDqUFnIPqAC1waPpU", "pocj4K56P8AlaXKsBw5CLrXUwuIDqUFnIPqAC1waPpU", code_challenge) +16:29:41.805 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.805 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.805 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.806 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.806 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.806 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.812 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.812 [XNIO-1 task-2] 2oTMWxkDQsCsPUIuJyWSeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.818 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.818 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.818 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.819 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG com.networknt.schema.TypeValidator debug - validate( "wb2W4PND9zPrBWE0Gk2CtK7IruOKsYZ368tNdelOE1c", "wb2W4PND9zPrBWE0Gk2CtK7IruOKsYZ368tNdelOE1c", code_challenge) +16:29:41.820 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.820 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.820 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.820 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.821 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.821 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.827 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.827 [XNIO-1 task-2] ppSZ0uVrR3eHjnOVUIWlkw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.835 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.835 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.836 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.836 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG com.networknt.schema.TypeValidator debug - validate( "DbByC87sCTFwL0FG8m3J2PDuzCBAejqCQWOZWZEe0eA", "DbByC87sCTFwL0FG8m3J2PDuzCBAejqCQWOZWZEe0eA", code_challenge) +16:29:41.837 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.837 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.837 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.837 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.837 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.841 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.847 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.847 [XNIO-1 task-2] ryTxqvK2RDujBD5dhEVP9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.868 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.868 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.869 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.869 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG com.networknt.schema.TypeValidator debug - validate( "NkopAYC5iz3RmiaMLYcPMYar6BWrMRIlWYANkhX_Yl4", "NkopAYC5iz3RmiaMLYcPMYar6BWrMRIlWYANkhX_Yl4", code_challenge) +16:29:41.869 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:41.870 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.871 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.871 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.871 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.871 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.877 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.877 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.879 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.879 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.880 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.881 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.881 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.881 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.882 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.882 [XNIO-1 task-2] SJJ4O1HfT1S79IEp9z-dMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SoPlv4hbR_SNOplwZyF2Wg +16:29:41.886 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.896 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.896 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.899 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.899 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.899 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.900 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", client_id) +16:29:41.900 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.900 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.900 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.901 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.903 [XNIO-1 task-1] D7GnrjYeR2ygNXGHG5Gnxw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UjAJ0fwqR5GL900iPIl3WQ +16:29:41.903 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.906 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.906 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.907 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.907 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.907 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.908 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.908 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.908 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:41.909 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:41.909 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:41.913 [XNIO-1 task-2] wu85GKw-ReucGH8dmIFUkw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WuVCy850QpCXv8KSOVr1Tw +16:29:41.918 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.918 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.918 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.918 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.918 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.918 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", client_id) +16:29:41.919 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.919 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.919 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.919 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.919 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:41.926 [XNIO-1 task-1] afTEaAddTZ6yTnVhJAv1OQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tpraO9n5TFqS4bpkd8XmqQ +16:29:41.931 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.931 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.931 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.932 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.932 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.932 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:41.932 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:41.932 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:41.933 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:41.933 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:41.938 [XNIO-1 task-2] 0J7-drITQCOY5thBe2hO-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-8fPXzH3QwWx18SHtICzXA +16:29:41.941 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.941 [XNIO-1 task-1] eCP3v6fvTyC7MCre949rwA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.952 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.952 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.953 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.953 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG com.networknt.schema.TypeValidator debug - validate( "084e3b47-b7aa-48b2-9949-9cabaa838761", "084e3b47-b7aa-48b2-9949-9cabaa838761", client_id) +16:29:41.954 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.954 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.954 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.955 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.955 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.967 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.968 [XNIO-1 task-1] C5nupC5BQGOtILLZc6wHXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.969 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.969 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.969 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:41.970 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", client_id) +16:29:41.970 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:41.970 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:41.970 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.970 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.970 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.971 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.981 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.981 [XNIO-1 task-2] 4nyHW5nQSGKIUCzm7jgLzg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:41.983 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.986 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:41.986 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:41.987 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", client_id) +16:29:41.987 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:41.987 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:41.988 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:41.988 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:41.988 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:41.996 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:41.996 [XNIO-1 task-1] hsejP2r2RF6CRTcRELIoKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.001 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.001 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.002 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.002 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7CV5xRBl-mEMl5VOZSkIr_HpDpUuTgQWbPeYA0Gjxc", "a7CV5xRBl-mEMl5VOZSkIr_HpDpUuTgQWbPeYA0Gjxc", code_challenge) +16:29:42.002 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.003 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.003 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.003 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.003 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.004 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.010 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.010 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.010 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.010 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.011 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.011 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.011 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.011 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.014 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.014 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.020 [XNIO-1 task-1] IX6LQG9eQi6GKpnaE8DcYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_E2HBq4rQ1-v2KBhQsiXvA +16:29:42.023 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.024 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.026 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.026 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.026 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.028 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", client_id) +16:29:42.029 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.029 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.029 [XNIO-1 task-2] wdhifL7xS4-rirIXWV4mIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=adsixkN3ReWWIISXlARA0Q +16:29:42.031 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.031 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.031 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.034 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.034 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.034 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.035 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.035 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.036 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.036 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.036 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.051 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.054 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.053 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.054 [XNIO-1 task-1] u4brIU3CRZGRzebrvA4N6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.058 [XNIO-1 task-2] VXtsWEyaReiCQ62Y2Tfr4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HojQ1ZYSQIePMVvfOH14lw +16:29:42.092 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.093 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.093 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.093 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "efeddd87-366f-4788-b5be-87328e889982", "efeddd87-366f-4788-b5be-87328e889982", client_id) +16:29:42.094 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.094 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.094 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.094 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.095 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.095 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.095 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.095 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "084e3b47-b7aa-48b2-9949-9cabaa838761", "084e3b47-b7aa-48b2-9949-9cabaa838761", client_id) +16:29:42.096 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.096 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.096 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.096 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.097 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.098 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.107 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.107 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.110 [XNIO-1 task-2] EFq_FBrcSeCpDShfoeFSqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AgQdLoDDStCQNP1MkRq7MA +16:29:42.113 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.113 [XNIO-1 task-1] xIbJTJSRQCyRCdynMOs6Rg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.121 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.122 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.122 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.122 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "efeddd87-366f-4788-b5be-87328e889982", "efeddd87-366f-4788-b5be-87328e889982", client_id) +16:29:42.122 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.123 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.123 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.123 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.123 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.134 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.135 [XNIO-1 task-1] ANnjDtSCROGX3ikY3j_jTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.158 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.158 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.158 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.158 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG com.networknt.schema.TypeValidator debug - validate( "NIzk_EUaSNu7wL8VvQCfUtJLIejraofNsO05YS2d9C0", "NIzk_EUaSNu7wL8VvQCfUtJLIejraofNsO05YS2d9C0", code_challenge) +16:29:42.159 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.159 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.159 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.159 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.160 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.160 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.160 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.161 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.161 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.162 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.162 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.162 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.162 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.162 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.170 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.170 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.172 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.172 [XNIO-1 task-1] bbSlL2A-RQCJ8OUaQJzpdw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.174 [XNIO-1 task-2] zJIuWSOHSI6TX_qS9I21Bg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jsG1AQ4US2KtJHQZWd5ikg +16:29:42.194 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ef5399d2-ed5f-4306-a54c-dcd08a50e414 +16:29:42.206 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.206 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.206 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.207 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG com.networknt.schema.TypeValidator debug - validate( "P4aojQe1xlHpUY8CBTH3Efmxd6in3o_fiQdrMpp5i-s", "P4aojQe1xlHpUY8CBTH3Efmxd6in3o_fiQdrMpp5i-s", code_challenge) +16:29:42.208 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.208 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.208 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.208 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.209 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.209 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.218 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.220 [XNIO-1 task-1] VTYGY0VDS62LWqSHXICbeA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.230 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.231 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.231 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.231 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG com.networknt.schema.TypeValidator debug - validate( "GLvpFnnAfJlN86tALWQiDGKFDUGPaYn3lXAjZi5Q-rk", "GLvpFnnAfJlN86tALWQiDGKFDUGPaYn3lXAjZi5Q-rk", code_challenge) +16:29:42.232 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.232 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.232 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.232 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.232 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.232 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.235 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.235 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.235 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.236 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.236 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.236 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.237 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.238 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.245 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.245 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.247 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.248 [XNIO-1 task-2] 7d9hXRMJTuKFKJkpWYDt-Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.272 [XNIO-1 task-1] 8er2nGWiSxOaEgaOa42j3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=b8sDcWXDQd-Jo7lf39gVTw +16:29:42.319 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.319 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.320 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.320 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93c2f760-f00d-47e5-9cfb-8086ad6ae24c", "93c2f760-f00d-47e5-9cfb-8086ad6ae24c", client_id) +16:29:42.320 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.322 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.322 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.322 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.322 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.331 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.331 [XNIO-1 task-2] 4ZcmXdH7QUG5titd7eCPBQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.341 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.341 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.341 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.341 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG com.networknt.schema.TypeValidator debug - validate( "3S_MCwYCTWYWhf9BxmFSW8Vb5KokGe_J5WlLtopyV6w", "3S_MCwYCTWYWhf9BxmFSW8Vb5KokGe_J5WlLtopyV6w", code_challenge) +16:29:42.342 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.342 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.342 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.342 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.342 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.342 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.344 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.345 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.345 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.345 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.345 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.346 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.346 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.346 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.351 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.351 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.355 [XNIO-1 task-1] rDKhyZYXTQqG4FmM4-qqFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VqTpcF_9S3epaEQSwvb0iw +16:29:42.356 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.356 [XNIO-1 task-2] yWNhJs0kSQqldiDnhF9tUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.408 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.408 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.408 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.409 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG com.networknt.schema.TypeValidator debug - validate( "jE7ct7sYK1pAYAIAPPOIrYqhSRU0wG6-jM6q3yauZ1Q", "jE7ct7sYK1pAYAIAPPOIrYqhSRU0wG6-jM6q3yauZ1Q", code_challenge) +16:29:42.409 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.409 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.410 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.410 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.410 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.411 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.422 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.423 [XNIO-1 task-2] G6mdF6GzSROZtLF7ELrHLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.432 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.432 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.433 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.433 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", client_id) +16:29:42.433 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.434 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.434 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.434 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.434 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.434 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.435 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.435 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.435 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG com.networknt.schema.TypeValidator debug - validate( "4385eba9-d9dc-4ff7-9d02-744f4edd0661", "4385eba9-d9dc-4ff7-9d02-744f4edd0661", client_id) +16:29:42.435 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.435 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.436 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.437 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.437 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.442 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.442 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.445 [XNIO-1 task-2] jRrYFa5SRbWRQxm4JR3p5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vIo6zr8XSra4TAiy-yqqFg +16:29:42.449 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.449 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.449 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.450 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.450 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.450 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.450 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.451 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.455 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.456 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.459 [XNIO-1 task-1] Y3wp5xEySf2eN3Y_JQb3xg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zAW9O702SyKAyrsURk_qTw +16:29:42.463 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.463 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.491 [XNIO-1 task-2] lALo1DH3S2SRCm6Vsb8mGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vbB9zW3jTuSKNXdiqH2x5g +16:29:42.491 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.491 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.492 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG com.networknt.schema.TypeValidator debug - validate( "TGbEWjcQ32Y-08RqldImdpFsZ4QY9Z2P47XHwvU_kHg", "TGbEWjcQ32Y-08RqldImdpFsZ4QY9Z2P47XHwvU_kHg", code_challenge) +16:29:42.492 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.492 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.493 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.493 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.493 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.493 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.500 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.500 [XNIO-1 task-1] qYRqhb5YRoyDlWSw0KpuKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.513 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.516 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.516 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.516 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG com.networknt.schema.TypeValidator debug - validate( "zQrW9WftYTERnHjP-QnJnlXdHNBcE1FGPEh3WQbUYJA", "zQrW9WftYTERnHjP-QnJnlXdHNBcE1FGPEh3WQbUYJA", code_challenge) +16:29:42.517 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.517 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.517 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.517 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.517 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.518 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.528 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.529 [XNIO-1 task-1] RM4U_i_FRH-Cg5lU-GVtuw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.563 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.563 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.563 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.563 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG com.networknt.schema.TypeValidator debug - validate( "PXoDTque9ukEpU7yCEhJutauCE3mU7R1GYtaR-1D8q0", "PXoDTque9ukEpU7yCEhJutauCE3mU7R1GYtaR-1D8q0", code_challenge) +16:29:42.564 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.564 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.564 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.564 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.564 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.564 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.566 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.566 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.566 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.567 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.567 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.567 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.567 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.567 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.572 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.573 [XNIO-1 task-1] SY7e2lD1Qc-ESHNuRDPEWw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.573 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.573 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.576 [XNIO-1 task-2] pxMn27ZpRlSXBW9oBN26wQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lVyzWzefTJOKqj6arPtrCQ +16:29:42.582 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.582 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.583 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.583 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "l5fMj70BmlVZCmTtSRXA4tedYI3ai1aqttK7ByiAdQA", "l5fMj70BmlVZCmTtSRXA4tedYI3ai1aqttK7ByiAdQA", code_challenge) +16:29:42.584 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.584 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.585 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.585 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.585 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.585 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.594 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.594 [XNIO-1 task-1] GNd2fSQ1Tm-xZc_5FEAdrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.595 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7f141210-e914-494e-bc23-648eea1396d6 +16:29:42.603 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.603 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.603 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.604 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG com.networknt.schema.TypeValidator debug - validate( "xxVok-vwnQ9_QyRRBRp6ZONd9lHEOMw8wtGsdDB8Gus", "xxVok-vwnQ9_QyRRBRp6ZONd9lHEOMw8wtGsdDB8Gus", code_challenge) +16:29:42.604 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.605 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.605 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.606 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.606 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.608 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.608 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.608 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.608 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.609 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.609 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.609 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.609 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.609 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.614 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.614 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.616 [XNIO-1 task-1] hiMQeLXzRF6wIKDDRf0ALw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ou94FCCOTZmgwgrc0Ryw9A +16:29:42.622 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.622 [XNIO-1 task-2] g5ujhUSaTHGdcuZuS7X2eQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.627 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.627 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.628 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.628 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG com.networknt.schema.TypeValidator debug - validate( "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", client_id) +16:29:42.629 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.630 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.630 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.630 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.630 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.638 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.638 [XNIO-1 task-2] 3R60MyuoTkan-N2-RTNqRA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.645 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.645 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.646 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.646 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1a2b09-f435-4f6e-8faa-0d8326a452df", "7a1a2b09-f435-4f6e-8faa-0d8326a452df", client_id) +16:29:42.647 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.647 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.647 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.648 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.650 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:59ed2ff7-0763-4ea2-a8c1-cef73611f934 +16:29:42.658 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.668 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.668 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.669 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.671 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG com.networknt.schema.TypeValidator debug - validate( "7-Rk03ccWFSP40jMIMB__CjYrXidaEyODev-FHSvDKA", "7-Rk03ccWFSP40jMIMB__CjYrXidaEyODev-FHSvDKA", code_challenge) +16:29:42.671 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.671 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.671 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.683 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.683 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.683 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.691 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.691 [XNIO-1 task-2] Cqtt34erToSEqwPwBzHaRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.693 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.693 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.727 [XNIO-1 task-1] mzNejq3GT_et4znZxEMO1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jiDQGVDkSrqi_iGUjaFZmA +16:29:42.774 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.774 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.774 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.775 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", client_id) +16:29:42.775 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.776 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.776 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.776 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.780 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.792 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.792 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.796 [XNIO-1 task-2] ahXJK2jtQuOPz3TPLIqagw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=d4OJeiv5Toea-ApJgtvJ9w +16:29:42.846 [XNIO-1 task-1] 2Z4xT1xXRniS7kYyYbI-Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.846 [XNIO-1 task-1] 2Z4xT1xXRniS7kYyYbI-Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.846 [XNIO-1 task-1] 2Z4xT1xXRniS7kYyYbI-Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.847 [XNIO-1 task-1] 2Z4xT1xXRniS7kYyYbI-Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.847 [XNIO-1 task-1] 2Z4xT1xXRniS7kYyYbI-Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.847 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.847 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "E_7sNvoVbYvba87mCjGio8Uzv_RReQZ0snCuyfRBt1M", "E_7sNvoVbYvba87mCjGio8Uzv_RReQZ0snCuyfRBt1M", code_challenge) +16:29:42.847 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", client_id) +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.848 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.848 [XNIO-1 task-1] 2Z4xT1xXRniS7kYyYbI-Zw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.849 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.855 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.855 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.855 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.855 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.870 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:deeea842-7b5d-41f4-af72-6964eb3a6d84 +16:29:42.877 [XNIO-1 task-2] ZYv1y-QaR4alN8cvC884AQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HrbeJc55QQyywqwSib4OlA +16:29:42.884 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.885 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.885 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.885 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", client_id) +16:29:42.886 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.886 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.886 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.886 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.886 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.912 [XNIO-1 task-1] 2Z4xT1xXRniS7kYyYbI-Zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XY_bfEhwRIO0-L95PVwYBA +16:29:42.915 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.916 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.916 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.916 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:21b8b7ea-60ec-4af0-af13-57c2ca9acb53 +16:29:42.916 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG com.networknt.schema.TypeValidator debug - validate( "deeea842-7b5d-41f4-af72-6964eb3a6d84", "deeea842-7b5d-41f4-af72-6964eb3a6d84", client_id) +16:29:42.917 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.917 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.917 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.917 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:42.918 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:42.918 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:42.918 [XNIO-1 task-2] Y6DyTnFTTjGdD34CswlTOQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:42.952 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.952 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.957 [XNIO-1 task-1] akTndiqVRSaFgW9fYe60LA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kegISjKtT-WkZP0qE4kzbw +16:29:42.960 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.960 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.960 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:42.961 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:42.961 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:42.961 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:42.961 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:42.962 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:42.973 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:42.973 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:42.976 [XNIO-1 task-1] 6Fv8cl0bSne9zC_yenyF2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CEXXwNJaTsKUkjT8t0m4dQ +16:29:42.978 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4e8a7002-bf05-402a-8b58-48d3faef1e8b +16:29:42.998 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.998 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:42.998 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:42.998 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG com.networknt.schema.TypeValidator debug - validate( "90cUNTWwXN8DOikPHLqhWUy8ij3rplPcbWpNzNpwQdQ", "90cUNTWwXN8DOikPHLqhWUy8ij3rplPcbWpNzNpwQdQ", code_challenge) +16:29:42.999 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:42.999 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:42.999 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:42.999 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:42.999 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.000 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.009 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.009 [XNIO-1 task-1] legnKYYcRPi5uQ6qRD0hRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.014 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.014 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.015 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.016 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.016 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.016 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.016 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.016 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.017 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.027 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.027 [XNIO-1 task-2] eoHyFKSJTqOY9SJXb1VjGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.068 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.068 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.069 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.069 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG com.networknt.schema.TypeValidator debug - validate( "ea6cBE3vtihuXRULCx1Q5CpA0c2-3jKwdIXEnnzhDDA", "ea6cBE3vtihuXRULCx1Q5CpA0c2-3jKwdIXEnnzhDDA", code_challenge) +16:29:43.069 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.069 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.070 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.070 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.070 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.070 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.082 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.082 [XNIO-1 task-2] BNdbr0czT1OUWERjWvAGEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.145 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.145 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.146 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.146 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG com.networknt.schema.TypeValidator debug - validate( "ff38b92a-ff20-4a28-98f1-e21d718f1a77", "ff38b92a-ff20-4a28-98f1-e21d718f1a77", client_id) +16:29:43.146 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.146 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.147 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.147 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.147 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.148 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.148 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.148 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.149 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG com.networknt.schema.TypeValidator debug - validate( "59ed2ff7-0763-4ea2-a8c1-cef73611f934", "59ed2ff7-0763-4ea2-a8c1-cef73611f934", client_id) +16:29:43.149 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.149 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.149 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.149 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.150 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.156 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.156 [XNIO-1 task-2] URQ3YgYTSOKBtOiXuPhNJA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.157 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.157 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.161 [XNIO-1 task-1] qCjMLZCUTr-ibnlFn6IHyw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RE8wjtqtTWCDqE_LIR2Kxg +16:29:43.170 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.171 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.171 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.171 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.171 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.171 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.172 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG com.networknt.schema.TypeValidator debug - validate( "--CWbOtEQDyS1N_8MMZG3cpJTcjpY7tl7Ph4Skhb_MU", "--CWbOtEQDyS1N_8MMZG3cpJTcjpY7tl7Ph4Skhb_MU", code_challenge) +16:29:43.172 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG com.networknt.schema.TypeValidator debug - validate( "59ed2ff7-0763-4ea2-a8c1-cef73611f934", "59ed2ff7-0763-4ea2-a8c1-cef73611f934", client_id) +16:29:43.172 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.172 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.172 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.173 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.173 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.173 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.174 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.176 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.176 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.176 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.184 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.185 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.188 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.188 [XNIO-1 task-1] B7Ywcci7RTmQFvFq7vTUXg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.227 [XNIO-1 task-2] -Q04sRnkTWeAWhIfWXpufw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_OBosRNuRKaMpT26pxOO4w +16:29:43.265 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ba581aa4-8997-4b95-b11f-d50256a37d9e +16:29:43.266 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ba581aa4-8997-4b95-b11f-d50256a37d9e +16:29:43.278 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.278 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.278 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.278 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.279 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.279 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.281 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.281 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.287 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.288 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.292 [XNIO-1 task-1] kZTcT4YXR-usT_2-M0ksWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=py8mgYBhRYSgQ7ppU35rfA +16:29:43.318 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.326 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:804d76e5-f31d-4d41-b9d2-4eccb4989faa +16:29:43.328 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.328 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.329 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.329 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG com.networknt.schema.TypeValidator debug - validate( "VICljoeRnkBkUzfLIS756Xk8E5dkeNhlj57Ts2PH7X0", "VICljoeRnkBkUzfLIS756Xk8E5dkeNhlj57Ts2PH7X0", code_challenge) +16:29:43.329 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.329 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.330 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.330 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.330 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.331 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.341 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.341 [XNIO-1 task-1] r3f8wOUgSOGl1E148xwMfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.349 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:804d76e5-f31d-4d41-b9d2-4eccb4989faa +16:29:43.352 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.352 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.352 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.352 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", client_id) +16:29:43.353 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.354 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.355 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.355 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.355 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.368 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:72379539-c5a4-49d8-b8d3-0eb3ef79091c +16:29:43.373 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:72379539-c5a4-49d8-b8d3-0eb3ef79091c +16:29:43.374 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.374 [XNIO-1 task-1] 9wTJb1Q5RCy3xIwBU4tzXQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.406 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.406 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.407 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.407 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG com.networknt.schema.TypeValidator debug - validate( "gxjAgARoNrZrD48uqcdtmpvK_8VRHobmQVPk4NcJ6u4", "gxjAgARoNrZrD48uqcdtmpvK_8VRHobmQVPk4NcJ6u4", code_challenge) +16:29:43.407 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.407 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.408 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.408 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.408 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.412 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.430 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.431 [XNIO-1 task-1] NmPodlX2QKC8THSexK-sBA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.478 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4f0cc6dc-2465-46ac-8813-a254de178519 +16:29:43.480 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4f0cc6dc-2465-46ac-8813-a254de178519 +16:29:43.544 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.544 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.544 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.545 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.545 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.545 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.545 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.545 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.553 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0fc8ae14-4083-4d36-a5e6-b6cd659626bd +16:29:43.554 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0fc8ae14-4083-4d36-a5e6-b6cd659626bd +16:29:43.554 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.554 [XNIO-1 task-1] bz4iADyvQd6-8K_-V2isKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.574 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.575 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.575 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.576 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Ry0cAjIwiGR_Ma3qC6HV4C36tz2Wb6_n0spAD63mo3I", "Ry0cAjIwiGR_Ma3qC6HV4C36tz2Wb6_n0spAD63mo3I", code_challenge) +16:29:43.576 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.576 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.576 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.576 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.577 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.585 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.593 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.593 [XNIO-1 task-1] u75DAA5hRWK43rrWR85c3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.605 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.606 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.606 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.606 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG com.networknt.schema.TypeValidator debug - validate( "H1sp89TfJ1llt7iG9ZK_udnrChuPxRiSvXtGGRz77OQ", "H1sp89TfJ1llt7iG9ZK_udnrChuPxRiSvXtGGRz77OQ", code_challenge) +16:29:43.607 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.607 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.608 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.608 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.608 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.613 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.625 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.625 [XNIO-1 task-1] 6qYbepJlTTOrqERmJ4zVww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.634 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.634 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.634 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.634 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG com.networknt.schema.TypeValidator debug - validate( "_E7PZ8C9nZtaMwlVGuh_4aCrMBqUlizxqPuggHRosm0", "_E7PZ8C9nZtaMwlVGuh_4aCrMBqUlizxqPuggHRosm0", code_challenge) +16:29:43.635 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.635 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.635 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.635 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.635 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.635 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.643 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.643 [XNIO-1 task-1] k2WxiemnT72UuVhRQLaf3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.652 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.653 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.653 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.653 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "X_QS8vnywGCE61YdZbHgVX44MogcwL4QeT7kJMGzguo", "X_QS8vnywGCE61YdZbHgVX44MogcwL4QeT7kJMGzguo", code_challenge) +16:29:43.653 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.654 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.654 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.654 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.654 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.654 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.662 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.662 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.665 [XNIO-1 task-1] NQuv60YLTiSvuycZ_C3NnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w8uMe_dBTsa2OvEfHkds4A +16:29:43.675 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.675 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.676 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.676 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:43.676 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.677 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.677 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.677 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.677 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.688 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.688 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.697 [XNIO-1 task-1] EVIfTRd7T_ORTbMoYFBNCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dPmjUO98Tv2SHrYLebfQhA +16:29:43.701 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.701 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.701 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.702 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:43.702 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.702 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.702 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.702 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.703 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.721 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.724 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.724 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.725 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.725 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.725 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.726 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.726 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.757 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.766 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.767 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.774 [XNIO-1 task-1] NCd56GOISumIr4JZ2uR5Zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aoT4AWthT7eT4oj5YWIORg +16:29:43.776 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.776 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.804 [XNIO-1 task-2] X6BHvvoJRe28QL1TinYqHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fmBgoAb0SMeOrcA8RMSbxA +16:29:43.808 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a5b2bff6-04fc-4d4c-8911-b33637b7b964 +16:29:43.811 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.811 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.812 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.812 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.812 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.812 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.813 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.813 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.819 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.819 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.820 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3afb15a9-6e04-4462-8e39-22d6360b834c +16:29:43.821 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.821 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.821 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.821 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:43.822 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.822 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.822 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.822 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.822 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.822 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.823 [XNIO-1 task-2] VQOMHSi6QoW6DYIVJ-osOQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WjBl34YtRXKsQNS4W-7Lyg +16:29:43.833 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:26dc8226 +16:29:43.833 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.834 [XNIO-1 task-1] J40pI5_0QWaj24gKTH9raA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.848 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.848 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.849 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.849 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG com.networknt.schema.TypeValidator debug - validate( "GId1WE8HJp-m201KF3op7VMpr3OMqd7RBR4w6an9msI", "GId1WE8HJp-m201KF3op7VMpr3OMqd7RBR4w6an9msI", code_challenge) +16:29:43.849 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:43.849 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.851 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.852 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.852 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.852 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.855 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.856 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.856 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.856 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.856 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.858 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.858 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.859 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.860 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0fc8ae14-4083-4d36-a5e6-b6cd659626bd +16:29:43.951 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0fc8ae14-4083-4d36-a5e6-b6cd659626bd +16:29:43.952 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.952 [XNIO-1 task-1] 5hbSNw5fRzuhZzx3pTuA9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:43.956 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c2f4f37b +16:29:43.956 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.957 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.961 [XNIO-1 task-2] mdZUZdX1QjumDTgDbhpkLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w51bcVixT9mN5iArxISPKg +16:29:43.963 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.964 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.964 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:43.964 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG com.networknt.schema.TypeValidator debug - validate( "370eb83d-c4ff-4aca-a854-e90d6ab65db2", "370eb83d-c4ff-4aca-a854-e90d6ab65db2", client_id) +16:29:43.964 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:43.965 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:43.965 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:43.965 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:43.965 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:43.968 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.968 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.969 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.969 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG com.networknt.schema.TypeValidator debug - validate( "59ed2ff7-0763-4ea2-a8c1-cef73611f934", "59ed2ff7-0763-4ea2-a8c1-cef73611f934", client_id) +16:29:43.969 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.970 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.970 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.970 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.970 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.981 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:43.981 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.981 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.981 [XNIO-1 task-1] 6RBdZEAPRkeHhUr25isW3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.981 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:43.983 [XNIO-1 task-2] M2QwE65XTaecXcYN16Rslg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rkhNBaK5Ro-OVB16pcblcQ +16:29:43.987 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.987 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:43.988 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:43.988 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "deeea842-7b5d-41f4-af72-6964eb3a6d84", "deeea842-7b5d-41f4-af72-6964eb3a6d84", client_id) +16:29:43.988 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:43.988 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:43.988 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:43.989 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:43.989 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:43.996 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:43.996 [XNIO-1 task-1] YuDhCAUmT6-NMhA9ICICEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.012 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f3201e3c-ce26-4a57-89ee-7fd136d902bd +16:29:44.013 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.013 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.013 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.014 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f3201e3c-ce26-4a57-89ee-7fd136d902bd +16:29:44.014 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG com.networknt.schema.TypeValidator debug - validate( "370eb83d-c4ff-4aca-a854-e90d6ab65db2", "370eb83d-c4ff-4aca-a854-e90d6ab65db2", client_id) +16:29:44.014 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.014 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.014 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.014 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.015 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.025 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.025 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.027 [XNIO-1 task-1] aCUgdmnQSx-8YyxyUneiHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rzgxEDXCTBmPNx_jU_8jng +16:29:44.032 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.032 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.032 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.033 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG com.networknt.schema.TypeValidator debug - validate( "370eb83d-c4ff-4aca-a854-e90d6ab65db2", "370eb83d-c4ff-4aca-a854-e90d6ab65db2", client_id) +16:29:44.033 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.033 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.033 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.033 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.034 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.039 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.040 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.040 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.040 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.040 [XNIO-1 task-1] ME9G98g7Qd28RUjD8sBrUA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.041 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG com.networknt.schema.TypeValidator debug - validate( "deeea842-7b5d-41f4-af72-6964eb3a6d84", "deeea842-7b5d-41f4-af72-6964eb3a6d84", client_id) +16:29:44.041 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.041 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.041 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.041 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.041 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.046 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.046 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.047 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.047 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG com.networknt.schema.TypeValidator debug - validate( "k3RsrYlU-HztuEQiLMulV83vCpzC0WyTYyjNAl_5obs", "k3RsrYlU-HztuEQiLMulV83vCpzC0WyTYyjNAl_5obs", code_challenge) +16:29:44.047 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.047 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.047 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.047 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.048 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.048 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.052 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.052 [XNIO-1 task-2] C8BmMrXXRX2xqbWYYtnUNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.055 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.055 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.059 [XNIO-1 task-1] 7QNWQ7CFR0SdUcy1WQxj7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uISart1nQWGr6LHWqQ9Ovg +16:29:44.089 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.090 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.090 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.090 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.090 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.091 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.091 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.091 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.098 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.098 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.104 [XNIO-1 task-1] WsUF-BY8T3arF86v-oJqlg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MjXTIDjfTM6GtxavbQK29w +16:29:44.105 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:26dc8226 +16:29:44.134 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.134 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.134 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.135 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", "a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb", client_id) +16:29:44.135 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.135 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.135 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.135 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.135 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.142 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.142 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.143 [XNIO-1 task-1] qWOKN-5kRLqvJBfVJwHZ7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=57xyhTSMRTizSYsW241tMQ +16:29:44.157 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.170 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.170 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.171 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.171 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.171 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.172 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.172 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.172 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.172 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.172 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.172 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.178 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG com.networknt.schema.TypeValidator debug - validate( "Qp4auWcRxbe1EI-OLCA47ddicTtKEiv0cFEYTU9NTxc", "Qp4auWcRxbe1EI-OLCA47ddicTtKEiv0cFEYTU9NTxc", code_challenge) +16:29:44.178 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.178 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.178 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.179 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.179 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.179 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.182 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.182 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.183 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.183 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.184 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:21b8b7ea-60ec-4af0-af13-57c2ca9acb53 +16:29:44.185 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:26dc8226 +16:29:44.187 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.187 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.187 [XNIO-1 task-1] xSVwKyEzSI6W9WSo5tk62A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.187 [XNIO-1 task-2] Q0kWjrJAR_ewcxCCh0OPXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=l0VqoxmUQ6y7wBk1MZrwqw + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +16:29:44.193 [XNIO-1 task-1] wRDunNrgTcag8bHNwSCBNg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +16:29:44.193 [XNIO-1 task-1] wRDunNrgTcag8bHNwSCBNg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.193 [XNIO-1 task-1] wRDunNrgTcag8bHNwSCBNg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.194 [XNIO-1 task-1] wRDunNrgTcag8bHNwSCBNg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +16:29:44.195 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.195 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:29:44.198 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.198 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.198 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.198 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.199 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:44.202 [XNIO-1 task-1] wRDunNrgTcag8bHNwSCBNg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.202 [XNIO-1 task-1] wRDunNrgTcag8bHNwSCBNg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.225 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b563e58e +16:29:44.229 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.229 [XNIO-1 task-2] 7JJqGSJ0Q12HERo86wYQXw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.230 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.230 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b563e58e +16:29:44.230 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.231 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.231 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG com.networknt.schema.TypeValidator debug - validate( "3f23b976-3ad2-422d-8008-78878f5d4813", "3f23b976-3ad2-422d-8008-78878f5d4813", client_id) +16:29:44.231 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.231 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.231 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.231 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.232 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.236 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.243 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.243 [XNIO-1 task-1] rgxSBdwEQH6KOcMa9ENYhg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.270 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5add39ef +16:29:44.273 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5add39ef +16:29:44.276 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:59264f7f +16:29:44.321 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.322 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.322 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.322 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG com.networknt.schema.TypeValidator debug - validate( "c44bbb62-4112-4185-85e5-3ff823b349cc", "c44bbb62-4112-4185-85e5-3ff823b349cc", client_id) +16:29:44.322 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.322 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.323 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.323 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.346 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:59264f7f +16:29:44.348 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.357 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.357 [XNIO-1 task-1] n0TC03NuTHC0-et8C9_zgg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.363 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.363 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.363 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.363 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ab6a40d-8455-47ff-bf20-d439399dbd54", "2ab6a40d-8455-47ff-bf20-d439399dbd54", client_id) +16:29:44.364 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.364 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.364 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.364 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.365 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.370 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7ba88ab +16:29:44.378 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.378 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.381 [XNIO-1 task-1] KhlaV94pS_Cdx5Eyh8zOWQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Cww5o9qhTFexsI-E4jzibA +16:29:44.386 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.386 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.387 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.387 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.387 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.388 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.388 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.388 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.400 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.401 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.402 [XNIO-1 task-1] -SUHlstkTbWbWelZ145UXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=X8lE4390SzCCkVQyZIwORQ +16:29:44.409 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.409 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.409 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.410 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.410 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.410 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.410 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.410 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.418 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.418 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.423 [XNIO-1 task-1] Qpez4u2SQMSImhfEnUXBiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lO3lYtarTN2YfCRQln_DJw +16:29:44.431 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7ba88ab +16:29:44.427 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.433 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.433 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.434 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.434 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.434 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.434 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.434 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.444 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.444 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.447 [XNIO-1 task-1] LiimlkvuQOqIRgv4eBOLJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CwV8ZS6wRV2ldoyjh6jOLw +16:29:44.464 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:37e674c2 +16:29:44.465 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7ba88ab +16:29:44.481 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.481 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.481 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.481 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG com.networknt.schema.TypeValidator debug - validate( "4385eba9-d9dc-4ff7-9d02-744f4edd0661", "4385eba9-d9dc-4ff7-9d02-744f4edd0661", client_id) +16:29:44.481 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.482 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.482 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.482 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.482 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.493 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.493 [XNIO-1 task-1] BqOhV6qaSp6IoN5CTJUsDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.497 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec07a7cb-a242-44d5-be47-5c3496e67919 +16:29:44.500 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec07a7cb-a242-44d5-be47-5c3496e67919 +16:29:44.502 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.502 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.502 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.502 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.503 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.506 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.506 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.506 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.510 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.510 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.510 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.510 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG com.networknt.schema.TypeValidator debug - validate( "YsWaHgdnklwR9hctbBc62eGZDlIW8JuqQYTTlfwTxu8", "YsWaHgdnklwR9hctbBc62eGZDlIW8JuqQYTTlfwTxu8", code_challenge) +16:29:44.511 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.511 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.511 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.511 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.511 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.511 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.513 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.513 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.518 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.518 [XNIO-1 task-1] QnKCfqN8QlSbryh02XZpIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8Z1L2bV4QhK835kfbYlu2g +16:29:44.528 [XNIO-1 task-2] VuqMTpGrRmeXz_qW6V8GCw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=D5oJCJiWQNa3ID7hXuHqMA +16:29:44.553 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.553 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.554 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.554 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.554 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.554 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.554 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.555 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.564 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.564 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.566 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a4fb9d46-ac3f-43ff-848e-92ac7324e77d +16:29:44.567 [XNIO-1 task-2] Y0ojq9ZBQrqmXpYcnLo6Nw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=68tmggNURWuaP0cN7K_ZXg +16:29:44.574 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.574 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.574 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.575 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.575 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.575 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +16:29:44.576 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.576 [XNIO-1 task-2] 96_T9BgNS2KSGbmrpdE0fg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:29:44.597 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a4fb9d46-ac3f-43ff-848e-92ac7324e77d + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:44.599 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:44.623 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.624 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.624 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.624 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.624 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.625 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.625 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.625 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.623 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.625 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.626 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.626 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG com.networknt.schema.TypeValidator debug - validate( "yqS3kI39GLuImUTxbUgnJQIuh5MXplzMQC7cO4g1z-8", "yqS3kI39GLuImUTxbUgnJQIuh5MXplzMQC7cO4g1z-8", code_challenge) +16:29:44.626 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.626 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.627 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.627 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.627 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.628 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.633 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.633 [XNIO-1 task-1] GG_50WsvQiaGcarwG7qDeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.634 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.634 [XNIO-1 task-2] Kbj3jRUVRnWY_DVzY_AN_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.638 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.640 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.640 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.640 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "370eb83d-c4ff-4aca-a854-e90d6ab65db2", "370eb83d-c4ff-4aca-a854-e90d6ab65db2", client_id) +16:29:44.641 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.641 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.641 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.641 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.641 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.651 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.651 [XNIO-1 task-1] P2y1KBfvQ1K9sEVzA7x2Jw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.657 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ebb4122 +16:29:44.659 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9ebb4122 +16:29:44.661 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.661 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.662 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.662 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG com.networknt.schema.TypeValidator debug - validate( "BO3aDPakQulAro47QAghcKVu4mUsneB65w-_soh-Wi0", "BO3aDPakQulAro47QAghcKVu4mUsneB65w-_soh-Wi0", code_challenge) +16:29:44.662 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.662 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.662 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.664 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.664 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.664 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.674 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.674 [XNIO-1 task-2] SSCpWk7pQ_2iFw0R869wPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.691 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.691 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.692 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.692 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG com.networknt.schema.TypeValidator debug - validate( "509bd455-3690-47d3-b75c-1ad0f53e77b7", "509bd455-3690-47d3-b75c-1ad0f53e77b7", client_id) +16:29:44.692 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.692 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.692 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.692 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.694 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.702 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.703 [XNIO-1 task-2] Du9tNoj2RgG3a3Hc7oVCHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.709 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9ebb4122 +16:29:44.725 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.726 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.726 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.726 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Fec8mlB8r56JJxm5oNV6NnF2ayMyNwMh1r4rYkAWCm0", "Fec8mlB8r56JJxm5oNV6NnF2ayMyNwMh1r4rYkAWCm0", code_challenge) +16:29:44.726 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.726 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.727 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.727 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.727 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.727 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.749 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.749 [XNIO-1 task-2] 3v2YCB0yRFOsNUkhTl6Bkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.767 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b9648e7b-fd53-4ce0-8ac4-8c4d1e06a26e +16:29:44.767 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.768 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.768 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.768 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:37e674c2 +16:29:44.768 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.769 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.769 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.770 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.770 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.779 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.779 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:44.781 [XNIO-1 task-2] 6YFLtEz_SFipC9cdrp19ww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ypzFhiVKSMGIKZmfgAVBcA +16:29:44.788 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.788 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.788 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.791 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.792 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.792 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.792 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.792 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:44.807 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7ba88ab +16:29:44.807 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7ba88ab +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:44.809 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +16:29:44.814 [XNIO-1 task-2] 5zwsLtxATvOZXD6kp1gLHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NYXUIC27T-uTtJzHv25CHA +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:44.821 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6a429801-b9b0-46da-a51f-6438d123fba9 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:29:44.841 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.841 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.842 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.842 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG com.networknt.schema.TypeValidator debug - validate( "E6SvZnhBkjkDeY14Izqw9nQzzg8kt4fQZ0_R05nCCsI", "E6SvZnhBkjkDeY14Izqw9nQzzg8kt4fQZ0_R05nCCsI", code_challenge) +16:29:44.842 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.842 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.843 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.843 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.843 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.843 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.854 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b80bc4cf-069e-4533-9628-ec6cff7f0a62 +16:29:44.864 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.867 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.867 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.867 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.867 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + +16:29:44.867 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.871 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.872 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.872 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.872 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.873 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:44.877 [XNIO-1 task-2] C3QyujwSRi6K7LRh5MIGlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=akcQiSKZRPCbAEUSRoL4uw +16:29:44.879 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.889 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.890 [XNIO-1 task-1] NjQI9GkqRJqFX78bNlYUZw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.953 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d0efb61d-9b4f-44aa-957b-1d96fc2ff82f +16:29:44.955 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5add39ef +16:29:44.962 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:59264f7f +16:29:44.971 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.971 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.972 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:44.972 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:44.973 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:44.973 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:44.976 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.976 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:44.977 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:44.977 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "u0tUzcTteQObz37ZOk_FonugCFlMXugKAQ53Zq8to9o", "u0tUzcTteQObz37ZOk_FonugCFlMXugKAQ53Zq8to9o", code_challenge) +16:29:44.978 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:44.979 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:44.979 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:44.979 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:44.980 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.980 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.983 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:44.986 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:44.990 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:44.990 [XNIO-1 task-2] pGZgJ7AITW6eA5cYR7mo_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:44.996 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:37e674c2 +16:29:44.999 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:44.999 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.001 [XNIO-1 task-1] I6fiAp80Q_qqXFu84V1F1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OPfavkK8QaadUkwQ6laCYw +16:29:45.019 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:60ef5f75-a013-49c2-bcf2-b6e14bafe1b5 +16:29:45.035 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.035 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.035 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.036 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG com.networknt.schema.TypeValidator debug - validate( "883feb89-1bff-4d15-afeb-9e0b9e7ba244", "883feb89-1bff-4d15-afeb-9e0b9e7ba244", client_id) +16:29:45.036 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.036 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.036 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.036 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.036 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.052 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.052 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.054 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.054 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.057 [XNIO-1 task-1] XYQuZ2WfSiGv1dUsZQmsig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=thvqK3CNTHyu3I1fTo0Xhw +16:29:45.057 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.057 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "59ed2ff7-0763-4ea2-a8c1-cef73611f934", "59ed2ff7-0763-4ea2-a8c1-cef73611f934", client_id) +16:29:45.058 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.058 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.058 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.058 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.059 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.065 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.065 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.065 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.065 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.065 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG com.networknt.schema.TypeValidator debug - validate( "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", "f6174f78-33d0-4c9e-8de5-f7f8d7f19e8a", client_id) +16:29:45.065 [XNIO-1 task-2] DxKV7-BPSP2kxgl8GKjc8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.066 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.066 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.066 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.066 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.066 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.073 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.073 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.073 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.074 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG com.networknt.schema.TypeValidator debug - validate( "eE3LR9am5W1j979ZaK3_PN-4g2i-9npNCNZX6yAvgCc", "eE3LR9am5W1j979ZaK3_PN-4g2i-9npNCNZX6yAvgCc", code_challenge) +16:29:45.075 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.075 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.075 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.075 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.075 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.075 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.077 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.077 [XNIO-1 task-1] KXuYZ7wZQwqs17ExuOPP2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.083 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.084 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.086 [XNIO-1 task-2] zLLb5lu6QIiDY_zaLvOZRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cGlXf2yGRH6OfgSt6bBSKg +16:29:45.091 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.092 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.092 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.092 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.092 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.093 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.093 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.093 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.095 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.095 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.095 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.095 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG com.networknt.schema.TypeValidator debug - validate( "kG4v-PVFY4NkJtBJHNjYWmMLzs_7jQIzekhtI7nXsFw", "kG4v-PVFY4NkJtBJHNjYWmMLzs_7jQIzekhtI7nXsFw", code_challenge) +16:29:45.096 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.096 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.096 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.096 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.096 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.096 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.104 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.104 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.106 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.106 [XNIO-1 task-2] i6r3WO6ETMeHt49a1TyD5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.113 [XNIO-1 task-1] vb-1b7S3RPqnpRSWmyNXrA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aA2LU3zGSLiURVllryXE5w +16:29:45.115 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.116 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.116 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.117 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.117 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.117 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.118 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.118 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.120 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.120 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.121 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.121 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Cv8GCeWrcaMT0oT6X_RMEfqQ08xfK1m2jl0p5CkKp2c", "Cv8GCeWrcaMT0oT6X_RMEfqQ08xfK1m2jl0p5CkKp2c", code_challenge) +16:29:45.121 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.121 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.121 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.121 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.123 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.123 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.125 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.125 [XNIO-1 task-1] lTYEPm41QRWEFHPhiutFDg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.135 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.135 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.136 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.136 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG com.networknt.schema.TypeValidator debug - validate( "37458bbb-1302-41c6-a469-1f5e3b3ee839", "37458bbb-1302-41c6-a469-1f5e3b3ee839", client_id) +16:29:45.137 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.137 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.137 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.137 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.137 [XNIO-1 task-2] PApefMJaRiuOcFqqOrl3WQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.137 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.138 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.183 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.183 [XNIO-1 task-1] z4Lpw6NYSRmMoXuDUmBbyA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.184 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.184 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.184 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.184 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3APXg7z8pXjHoC8YfXJ9F-_s0z9jrJCAkvmfOwmAziQ", "3APXg7z8pXjHoC8YfXJ9F-_s0z9jrJCAkvmfOwmAziQ", code_challenge) +16:29:45.185 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.185 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.185 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.185 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.186 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.186 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.194 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.194 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.198 [XNIO-1 task-2] xv0gkVxgTy-uARmK2W5SvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=y9r2ElmrT8S7IbLkWv3NNg +16:29:45.202 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.202 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.202 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.203 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG com.networknt.schema.TypeValidator debug - validate( "4385eba9-d9dc-4ff7-9d02-744f4edd0661", "4385eba9-d9dc-4ff7-9d02-744f4edd0661", client_id) +16:29:45.203 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.203 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.203 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.203 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.203 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.210 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c2f4f37b +16:29:45.217 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.217 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.228 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f7ba88ab +16:29:45.236 [XNIO-1 task-2] RqpqqKTMS4qHR3s_KNCiug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9-6yrbHZTumfibE0TIFCmg +16:29:45.240 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.240 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.240 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.240 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG com.networknt.schema.TypeValidator debug - validate( "4385eba9-d9dc-4ff7-9d02-744f4edd0661", "4385eba9-d9dc-4ff7-9d02-744f4edd0661", client_id) +16:29:45.241 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.241 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.241 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.241 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.241 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.242 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.242 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.242 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.242 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "37458bbb-1302-41c6-a469-1f5e3b3ee839", "37458bbb-1302-41c6-a469-1f5e3b3ee839", client_id) +16:29:45.242 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.242 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.243 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.243 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.243 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.279 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.279 [XNIO-1 task-1] ep6CHAxtROm9BPKFf6Fj4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.279 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.279 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.282 [XNIO-1 task-2] Z4MLoTnPQNaDMdhKY4xznA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PH_dOzDlTI-r2Dpcx0iIBA +16:29:45.284 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.284 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.285 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.285 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.285 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.285 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.286 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.286 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.286 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.286 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.287 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.287 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "qW7dkmWiyv7borDlIdkwX0VgX__dZnv2JfNXNaSNXIc", "qW7dkmWiyv7borDlIdkwX0VgX__dZnv2JfNXNaSNXIc", code_challenge) +16:29:45.287 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.287 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.287 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.287 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.288 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.290 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.292 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.292 [XNIO-1 task-2] ZtSdLfVwThOYdYWyDcgCcg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.298 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.298 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.301 [XNIO-1 task-1] b7Q8eOPhQ-OXTnGMTsLvuQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=feoVT_4bRO-C5_J3J0I0kw +16:29:45.303 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9f472452-0fd0-4ac3-9838-117bba5ee119 +16:29:45.303 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.304 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.304 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.304 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG com.networknt.schema.TypeValidator debug - validate( "3d5d9588-7d95-41e6-90e7-81e97545543e", "3d5d9588-7d95-41e6-90e7-81e97545543e", client_id) +16:29:45.304 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.305 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.305 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.305 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.308 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.316 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.316 [XNIO-1 task-1] 2J1lFa0LTZGXCq1cg2iuMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.322 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.323 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.323 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.323 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3d5d9588-7d95-41e6-90e7-81e97545543e", "3d5d9588-7d95-41e6-90e7-81e97545543e", client_id) +16:29:45.323 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.324 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.324 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.324 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.325 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.336 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.336 [XNIO-1 task-1] hWgQzzh4QMWFDDAkoY0XkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.344 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.345 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.345 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.345 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG com.networknt.schema.TypeValidator debug - validate( "509bd455-3690-47d3-b75c-1ad0f53e77b7", "509bd455-3690-47d3-b75c-1ad0f53e77b7", client_id) +16:29:45.345 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.346 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.346 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.346 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.346 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.359 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.359 [XNIO-1 task-1] W2XuNRnhSIqgCbiBZhYuwg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.363 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.364 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.364 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.364 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG com.networknt.schema.TypeValidator debug - validate( "VdoaWOM7kje2b9pq9s8q8mHh6pIsrJxC6E0SdHsA2d4", "VdoaWOM7kje2b9pq9s8q8mHh6pIsrJxC6E0SdHsA2d4", code_challenge) +16:29:45.364 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.365 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.365 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.365 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.365 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.366 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.368 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.368 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.368 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.368 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.368 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.369 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.369 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.369 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.369 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5add39ef +16:29:45.375 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.376 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.377 [XNIO-1 task-2] -31nWOVKQ7O2UxSYvbSihQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5RcMKVFhTM-kgtjiY3MyMw +16:29:45.379 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.379 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.381 [XNIO-1 task-1] e499xY31SZihycPQnVJqMg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3lvjmv_2S8aKW0N8Ttqw5w +16:29:45.384 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.384 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.384 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.385 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.385 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.385 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.385 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.386 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.391 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.391 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.391 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.391 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "o96mgYOU2x6zc_s5bs5965zKWpsX6e4DEZLfiIu1RjU", "o96mgYOU2x6zc_s5bs5965zKWpsX6e4DEZLfiIu1RjU", code_challenge) +16:29:45.392 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.392 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.392 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.392 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.392 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.392 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.393 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.393 [XNIO-1 task-1] F9k9ZiwzRDWapjH05gpxDA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.400 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.400 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.401 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.401 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG com.networknt.schema.TypeValidator debug - validate( "df43064e-2874-4cb5-8d32-526aa6466627", "df43064e-2874-4cb5-8d32-526aa6466627", client_id) +16:29:45.401 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.402 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.402 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.402 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.406 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.406 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.406 [XNIO-1 task-2] uwNZDzscQuKvUPU1JdGWUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.416 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.417 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.418 [XNIO-1 task-1] u5z6YpQlT4-DzNk5ZLnhkw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gefkDiMIRGSMujGPgfeVjg +16:29:45.425 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.425 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.426 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.426 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.426 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.426 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.426 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.426 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.434 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.435 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.436 [XNIO-1 task-1] L7ujKXYFSBeFxKPausvbCw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BsAREw5zQZ-pqRPQFtoMVw +16:29:45.443 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.444 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.444 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.444 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.444 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.444 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.444 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG com.networknt.schema.TypeValidator debug - validate( "37854a5d-00e2-413d-92a7-b682e3c69aff", "37854a5d-00e2-413d-92a7-b682e3c69aff", client_id) +16:29:45.444 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "5525f0f6-5c65-4fa5-a88f-8fce85fcd26e", "5525f0f6-5c65-4fa5-a88f-8fce85fcd26e", client_id) +16:29:45.444 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.444 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.444 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.445 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.445 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.445 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.445 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.445 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.445 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.445 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.453 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4a8edce0 +16:29:45.453 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.454 [XNIO-1 task-1] UjsQSruzRSCTWSvLGowvIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tjqWhPp8QaaQ7q7ueQBHmw +16:29:45.455 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4a8edce0 +16:29:45.456 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.456 [XNIO-1 task-2] AXNleQyoQ3OINsHgRyU1Mw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.458 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.458 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.458 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.458 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG com.networknt.schema.TypeValidator debug - validate( "-4KwvKewI5E0WN6cW5ZewLSevtpa-Qio_lvUIGWFGos", "-4KwvKewI5E0WN6cW5ZewLSevtpa-Qio_lvUIGWFGos", code_challenge) +16:29:45.459 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.459 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.459 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.459 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.459 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.459 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.463 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.463 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.464 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.464 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.464 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.464 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.464 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.465 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.468 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.468 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.470 [XNIO-1 task-1] INLCnqjeTtGiiLfm4NAGfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wuUQR4haTciN5pLo2IPgJw +16:29:45.480 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.480 [XNIO-1 task-2] TxoDAFz4RVyIdNtn5_vJWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.485 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.485 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.485 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.485 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ItGOd91p6aikL9z8Plvq87Ej_EuAvA5SSPFz_IgstJc", "ItGOd91p6aikL9z8Plvq87Ej_EuAvA5SSPFz_IgstJc", code_challenge) +16:29:45.486 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.486 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.486 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.486 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.486 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.489 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.496 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.496 [XNIO-1 task-3] tOj1YeGoTyOyDCF9pytqFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.552 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.552 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.552 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.552 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "883feb89-1bff-4d15-afeb-9e0b9e7ba244", "883feb89-1bff-4d15-afeb-9e0b9e7ba244", client_id) +16:29:45.553 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.554 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.554 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.554 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.554 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.568 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.568 [XNIO-1 task-3] kYFedu6LT-GBjl1YyUBuRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.575 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4a8edce0 +16:29:45.587 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.587 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.587 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.588 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG com.networknt.schema.TypeValidator debug - validate( "6IEpNpMEmLlBrUo9_BQXWp4pgaPYlKRyPPvc9lPOUT8", "6IEpNpMEmLlBrUo9_BQXWp4pgaPYlKRyPPvc9lPOUT8", code_challenge) +16:29:45.588 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.588 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.588 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.588 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.588 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.589 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.595 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.595 [XNIO-1 task-3] -tJQVeuDTCqLjMqNwj09FA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.603 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.603 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.603 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.603 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ISZnZBNqXHDYqEQnT7bgnTNXthBUULEvX9tzlBkFjAU", "ISZnZBNqXHDYqEQnT7bgnTNXthBUULEvX9tzlBkFjAU", code_challenge) +16:29:45.604 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.604 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.604 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.604 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.604 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.605 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.611 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4b79744f +16:29:45.612 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.612 [XNIO-1 task-3] Sc24Z_k_Tn-CKoU8unJUgQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.612 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.612 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.612 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.613 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG com.networknt.schema.TypeValidator debug - validate( "630a0f2d-bc1b-4197-b8f2-8edd1fa3f521", "630a0f2d-bc1b-4197-b8f2-8edd1fa3f521", client_id) +16:29:45.614 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.614 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.614 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.614 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.620 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.622 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.623 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.623 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.623 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG com.networknt.schema.TypeValidator debug - validate( "EtwOpOz_ifO_HuK6NcSxh9EdGtw34XrkcwNltXRGYds", "EtwOpOz_ifO_HuK6NcSxh9EdGtw34XrkcwNltXRGYds", code_challenge) +16:29:45.624 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.625 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.626 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.626 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.626 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.627 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.632 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.633 [XNIO-1 task-2] sCd7hHD8Q7Sjb-scHxHs3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.639 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.639 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.649 [XNIO-1 task-3] 6-s_g-dySRCNU0VK7311aw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IOVFLSsHTaGxuC8Tp1EErA +16:29:45.664 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.664 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.664 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.665 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG com.networknt.schema.TypeValidator debug - validate( "d2e3630a-d817-4b49-ae03-6acfcc374ae4", "d2e3630a-d817-4b49-ae03-6acfcc374ae4", client_id) +16:29:45.665 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.665 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.665 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.666 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.666 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.674 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.674 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.684 [XNIO-1 task-3] iwPYiM7ZTt--jTwGkQZ5nA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YoFKbZmGRK-yd7qzweZeQA +16:29:45.716 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4b79744f +16:29:45.728 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.728 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.728 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.729 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.729 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.730 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.730 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.730 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.743 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.743 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.744 [XNIO-1 task-3] Uro8dvisQfqxjlDXKdLfpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GG3qjL-GTt-y6wJ6Ggsk_A +16:29:45.769 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.769 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.769 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.770 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG com.networknt.schema.TypeValidator debug - validate( "48d0f72e-44cb-42b6-84de-30f5d2ae701e", "48d0f72e-44cb-42b6-84de-30f5d2ae701e", client_id) +16:29:45.770 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.770 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.770 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.774 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.775 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.783 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.783 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.788 [XNIO-1 task-3] pcY-hElRQPibXx71n3Yslw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HxuntuPwRwmUq5l19TrBnw +16:29:45.808 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a5b01fa4-a956-43f8-b4b6-8bd31c7f2d99 +16:29:45.824 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.824 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.824 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.825 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.825 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.825 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.825 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.826 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.829 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a5b01fa4-a956-43f8-b4b6-8bd31c7f2d99 +16:29:45.832 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.832 [XNIO-1 task-3] rREjp8D2QcalnP9lg1LA6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.843 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.843 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.843 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.843 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG com.networknt.schema.TypeValidator debug - validate( "d3df5a6a-cf6a-4ae3-8476-6f33de2ca85a", "d3df5a6a-cf6a-4ae3-8476-6f33de2ca85a", client_id) +16:29:45.843 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.844 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.844 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.844 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.844 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.847 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.847 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.848 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.848 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1a2b09-f435-4f6e-8faa-0d8326a452df", "7a1a2b09-f435-4f6e-8faa-0d8326a452df", client_id) +16:29:45.848 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.848 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.849 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.849 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.849 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.852 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.852 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.856 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.856 [XNIO-1 task-2] HM3dAF3sSeq68nTp1QhuBQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.857 [XNIO-1 task-3] bdNTbh8aRpSqLsQHtqfAJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hUS2Hm7dRl6QEE962jJ9nQ +16:29:45.884 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d0d31a05-60d8-47de-b47f-fba33a5be083 +16:29:45.891 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.891 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.892 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:45.892 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG com.networknt.schema.TypeValidator debug - validate( "3d5d9588-7d95-41e6-90e7-81e97545543e", "3d5d9588-7d95-41e6-90e7-81e97545543e", client_id) +16:29:45.893 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:45.893 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.893 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:45.893 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.893 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.901 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.901 [XNIO-1 task-2] gKlAYE-3TfianEicbtDNVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.909 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d0d31a05-60d8-47de-b47f-fba33a5be083 +16:29:45.910 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.910 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.911 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.911 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.912 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.913 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.913 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.913 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.929 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.929 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.933 [XNIO-1 task-2] QXQJRdOgTkehoASgTOkSmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ROMiqx6oTsymnhGJS4vZEQ +16:29:45.940 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.940 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.940 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.941 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.941 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:45.941 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.941 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.941 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.952 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:45.953 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:45.956 [XNIO-1 task-2] aHDu4z8mTxOALqGRHgNLTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bU_NcrlrRsSueyBid4XuSw +16:29:45.965 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.965 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:45.965 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.965 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.965 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.965 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:45.965 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "o4iu6w6Kr81guCaFnnJPLTikrcbjvcVjrLSDmHau4SE", "o4iu6w6Kr81guCaFnnJPLTikrcbjvcVjrLSDmHau4SE", code_challenge) +16:29:45.965 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.966 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:45.966 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:45.966 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:45.966 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:45.966 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:45.966 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.966 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:45.966 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.966 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:45.966 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:45.973 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.974 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.975 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:45.976 [XNIO-1 task-3] 1WQ0zOdSSf6qHBlTGs12Gg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:45.977 [XNIO-1 task-2] 8oV9bPF5S-2lhoZB69-jCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RxCZSs-KTa6jmlgUs4VeAw +16:29:45.999 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:59d407b7-5a7b-48d2-b28b-7dfb9b391696 +16:29:46.014 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.014 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.015 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.015 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.015 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.015 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1a2b09-f435-4f6e-8faa-0d8326a452df", "7a1a2b09-f435-4f6e-8faa-0d8326a452df", client_id) +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.016 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.016 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.016 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.017 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.017 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.023 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.024 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.024 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.024 [XNIO-1 task-2] k7Z7FTi5SUq1i_yQ7fyZqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6urSv0DPQ4qHkYj0RfjBNQ +16:29:46.028 [XNIO-1 task-3] F2NwtGH4RUSNDf3b-VRzlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Zq7_pQXQSEeOEq4h_KylzA +16:29:46.035 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.036 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.036 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.036 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG com.networknt.schema.TypeValidator debug - validate( "7a1a2b09-f435-4f6e-8faa-0d8326a452df", "7a1a2b09-f435-4f6e-8faa-0d8326a452df", client_id) +16:29:46.036 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.036 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.037 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.037 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.037 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.044 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ef6ed021-8c52-4219-9004-e6f1e1eade20 +16:29:46.044 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.045 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.046 [XNIO-1 task-3] vXLkV-x4ROmFjWw5x1Lh_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Sv79YZCqQJKlMMKBfIGvMg +16:29:46.051 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.051 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.051 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.051 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG com.networknt.schema.TypeValidator debug - validate( "509bd455-3690-47d3-b75c-1ad0f53e77b7", "509bd455-3690-47d3-b75c-1ad0f53e77b7", client_id) +16:29:46.052 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.052 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.052 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.052 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.052 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.054 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.054 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.054 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.055 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG com.networknt.schema.TypeValidator debug - validate( "9f2ec6b0-7de7-4028-a636-fe8364b327ac", "9f2ec6b0-7de7-4028-a636-fe8364b327ac", client_id) +16:29:46.055 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.055 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.055 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.055 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.055 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.060 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.060 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.062 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:966a1bdd +16:29:46.062 [XNIO-1 task-3] BgA6EiFfRWiC-XBat3zI1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=boVA2PEPRDSxVRpMMPv4dQ +16:29:46.064 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.064 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.071 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.071 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.071 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.072 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG com.networknt.schema.TypeValidator debug - validate( "509bd455-3690-47d3-b75c-1ad0f53e77b7", "509bd455-3690-47d3-b75c-1ad0f53e77b7", client_id) +16:29:46.073 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.073 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.073 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.073 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.074 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.075 [XNIO-1 task-2] JhcHEXr2Q6ic4Er-g-Drzg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jhYT6vfsR4qTeg23UP0xVA +16:29:46.082 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.085 [XNIO-1 task-3] kWgYOBF7RlC5AZ9cwMsEHg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.091 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.091 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.092 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.094 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG com.networknt.schema.TypeValidator debug - validate( "708vx1zP_OXqOUZK6DdYOAq8wlO525eemyxZG0Admcs", "708vx1zP_OXqOUZK6DdYOAq8wlO525eemyxZG0Admcs", code_challenge) +16:29:46.094 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.094 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.094 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.094 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.094 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.094 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.110 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.110 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.113 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f6cbad7e +16:29:46.114 [XNIO-1 task-3] m-BEwBQeSeiGO9WOPLXowg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KFzQbC5cT6mb39FKACyGPg +16:29:46.128 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:078fa44b-81ed-47ea-8a49-5f15de94015a +16:29:46.137 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f6cbad7e +16:29:46.151 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.151 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.151 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.152 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "CI684fCwoc9RW_pGItasKi6QuFaaqo4xubhUMUDGLNk", "CI684fCwoc9RW_pGItasKi6QuFaaqo4xubhUMUDGLNk", code_challenge) +16:29:46.152 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.152 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.152 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.152 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.152 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.153 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.161 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.161 [XNIO-1 task-3] FxbFLNkLSr2-RoygcHr9uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.174 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.174 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.175 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.175 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cz_bY-M5rM7WHKhnTm0VeWLeSiurHBT69LPi1ISyQE8", "cz_bY-M5rM7WHKhnTm0VeWLeSiurHBT69LPi1ISyQE8", code_challenge) +16:29:46.176 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.176 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.176 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.176 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.176 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.176 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.180 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.180 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.180 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.181 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.181 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.181 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.181 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.181 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.185 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.185 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.189 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.190 [XNIO-1 task-2] g84k1EvSRa2XsAdwBVLkGg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.191 [XNIO-1 task-3] JxRMlbqHTdKbalFoCKdJxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dQGr7sxST96T7D4JxkBv7g +16:29:46.196 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.196 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.196 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.197 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG com.networknt.schema.TypeValidator debug - validate( "KNYdJRTpAgDWMt45JafE6HQ-h4K8AAeDoKnFw_z-k3k", "KNYdJRTpAgDWMt45JafE6HQ-h4K8AAeDoKnFw_z-k3k", code_challenge) +16:29:46.197 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.197 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.197 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.198 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.198 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.198 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.199 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.199 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.199 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.200 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.200 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.200 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.200 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.200 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.214 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.215 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.219 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.219 [XNIO-1 task-2] vJXVklEcSfO_7h0CyszxAQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.221 [XNIO-1 task-3] 6uUPGCCrSc2pJOUWi9ABJg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Mng4A8m9Qcqrl62VWwr_cg +16:29:46.229 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.229 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.230 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.230 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG com.networknt.schema.TypeValidator debug - validate( "bfe9ecd3-2b64-46c3-a516-f839adde9715", "bfe9ecd3-2b64-46c3-a516-f839adde9715", client_id) +16:29:46.230 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.230 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.235 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.235 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.235 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.241 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:966a1bdd +16:29:46.252 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.252 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.275 [XNIO-1 task-2] 2KK_YojYSF66D7WjnSNo4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AXKMKBi4SR6IzPLqcpAhTg +16:29:46.301 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.301 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.301 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.302 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG com.networknt.schema.TypeValidator debug - validate( "bfe9ecd3-2b64-46c3-a516-f839adde9715", "bfe9ecd3-2b64-46c3-a516-f839adde9715", client_id) +16:29:46.302 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.302 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.302 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.302 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.303 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.316 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.316 [XNIO-1 task-2] uw7ZSwWYSOGDLPZkrMnhzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.321 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.321 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.321 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.322 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG com.networknt.schema.TypeValidator debug - validate( "bfe9ecd3-2b64-46c3-a516-f839adde9715", "bfe9ecd3-2b64-46c3-a516-f839adde9715", client_id) +16:29:46.323 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.323 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.324 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.324 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.324 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.331 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.331 [XNIO-1 task-2] 5eUCi06fRNO6GY9-96Fq-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.333 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.333 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.333 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.334 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "rXDQ56UKP-4roJBocIyhMVp1IudohdlG4cHktJxwNok", "rXDQ56UKP-4roJBocIyhMVp1IudohdlG4cHktJxwNok", code_challenge) +16:29:46.334 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.334 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.334 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.334 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.334 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.335 [XNIO-1 task-3] DQ5R7QnDQ6W_9ZvuI63cSQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.337 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.337 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.337 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.338 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.338 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.339 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +Jun 28, 2024 4:29:46 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +16:29:46.348 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG com.networknt.schema.TypeValidator debug - validate( "21a21337-63ee-4726-8ae5-9012a7a14644", "21a21337-63ee-4726-8ae5-9012a7a14644", client_id) +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.349 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.348 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.350 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.350 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.350 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.352 [XNIO-1 task-2] QK07ys65QF-EgxAQBaniBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VdrfZ94lQHCOF5-6vOdqyw +16:29:46.356 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.356 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.356 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.357 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG com.networknt.schema.TypeValidator debug - validate( "bfe9ecd3-2b64-46c3-a516-f839adde9715", "bfe9ecd3-2b64-46c3-a516-f839adde9715", client_id) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:29:46.357 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.358 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.358 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.358 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.363 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.364 [XNIO-1 task-3] U2Y9hQzAQQyVhN6pJY6AFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.369 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.369 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.371 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.371 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.372 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.372 [XNIO-1 task-2] RDYm8KQ8QMqtJsP6oSsuAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GE6wRSXdQ9m93ht4GLwW7w +16:29:46.372 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG com.networknt.schema.TypeValidator debug - validate( "21a21337-63ee-4726-8ae5-9012a7a14644", "21a21337-63ee-4726-8ae5-9012a7a14644", client_id) +16:29:46.372 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.372 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.373 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.373 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.373 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.376 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.376 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.377 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.377 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG com.networknt.schema.TypeValidator debug - validate( "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", client_id) +16:29:46.377 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.377 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.377 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.378 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.378 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.379 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.379 [XNIO-1 task-3] jHfOy_ylT-OZzru-7hrFJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.384 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.387 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.390 [XNIO-1 task-2] F_hspgxMQd6fZ5QCHk4lmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1bLhOY1ITfO2dyFHaiFRTw +16:29:46.398 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.398 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.399 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.400 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.400 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.405 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.405 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.405 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.405 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.405 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.405 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.406 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG com.networknt.schema.TypeValidator debug - validate( "jabmVJGe855on_KpAbcBD1_oxuUXDVEae2-mmaFL2Ls", "jabmVJGe855on_KpAbcBD1_oxuUXDVEae2-mmaFL2Ls", code_challenge) +16:29:46.407 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.407 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.407 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.409 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.409 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.409 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.413 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.413 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.415 [XNIO-1 task-2] p7M7msjJSw-Pc_GYdFuUSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7BKHaUTNTHOmN6sttWJMww +16:29:46.415 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f95f737b +16:29:46.417 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.417 [XNIO-1 task-3] wfdU-D1dTwCk-WlClnC03Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.418 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.418 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.421 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.421 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG com.networknt.schema.TypeValidator debug - validate( "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", "216c1dcd-fa8e-4eff-88b7-a3e98f2b0557", client_id) +16:29:46.422 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.422 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.423 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.423 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.423 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.429 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.433 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.434 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.433 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.434 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.434 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48d0f72e-44cb-42b6-84de-30f5d2ae701e", "48d0f72e-44cb-42b6-84de-30f5d2ae701e", client_id) +16:29:46.434 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.434 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.435 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.435 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.435 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.437 [XNIO-1 task-2] LBFt9Zc9QWyTj65ISlGsTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CqA3roJuQUaTp9zLkpcTkQ +16:29:46.443 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.443 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.444 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.444 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.444 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.445 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.445 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.445 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.445 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.446 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.453 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.454 [XNIO-1 task-2] MACUDh41RaO48l2h5TPXvA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.455 [XNIO-1 task-3] i_lHshjkTo2JCYIqPpBjgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Aj1wGCUqSfq8H_dTgRieAQ +16:29:46.466 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.467 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.467 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.468 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG com.networknt.schema.TypeValidator debug - validate( "nwiI-lhKCrTAqKXWERg8iR5XdH_AqjPsETcqUcB-jI8", "nwiI-lhKCrTAqKXWERg8iR5XdH_AqjPsETcqUcB-jI8", code_challenge) +16:29:46.468 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.468 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.468 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.469 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.469 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.469 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.481 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.481 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.484 [XNIO-1 task-2] ZsmHD0cqTo6EAB22xG7m0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gjgCIPUzQVSGs1hvcydB_w +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:46.502 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9f472452-0fd0-4ac3-9838-117bba5ee119 +16:29:46.503 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.504 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.504 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.504 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.504 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.504 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.505 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.505 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.513 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.513 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.514 [XNIO-1 task-2] 8oFR808TRPSEQDJHgOQ2hQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UXWbEavxT_mG7ePORMlLFw +16:29:46.558 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.559 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.559 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.559 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.559 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.560 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.560 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.561 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.569 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.569 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.571 [XNIO-1 task-2] nBQoilXtTYKBTm-fwemfLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Am8FvnoUTFeFar355CGbRA +16:29:46.573 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.573 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.573 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.573 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG com.networknt.schema.TypeValidator debug - validate( "c3378dda-224b-42c8-babc-5425db5519c1", "c3378dda-224b-42c8-babc-5425db5519c1", client_id) +16:29:46.573 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.574 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.574 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.574 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.575 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.577 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.577 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.577 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.578 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG com.networknt.schema.TypeValidator debug - validate( "8dd693da-1b34-42f6-89da-9cf842dfdc73", "8dd693da-1b34-42f6-89da-9cf842dfdc73", client_id) +16:29:46.578 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.578 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.578 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.578 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.578 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.584 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.584 [XNIO-1 task-2] RzDmDhwcT1aeDV5WaodGmg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.586 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.586 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.588 [XNIO-1 task-3] fFXjSW3NRa2_rcwyi75a7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jwNhODfLS5SeG666XNL7EQ +16:29:46.589 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.589 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.589 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.589 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG com.networknt.schema.TypeValidator debug - validate( "509bd455-3690-47d3-b75c-1ad0f53e77b7", "509bd455-3690-47d3-b75c-1ad0f53e77b7", client_id) +16:29:46.589 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.590 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.590 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.590 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.592 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.596 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.596 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.597 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.597 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21b8b7ea-60ec-4af0-af13-57c2ca9acb53", "21b8b7ea-60ec-4af0-af13-57c2ca9acb53", client_id) +16:29:46.597 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.597 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.597 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.597 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.597 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.599 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.599 [XNIO-1 task-3] d-et8rTHS02gHljiiAGLEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.606 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.607 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.607 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.607 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1AdOWt_0U-mEvaL2scM31VPN7U9kwpRTooQroNVHMs8", "1AdOWt_0U-mEvaL2scM31VPN7U9kwpRTooQroNVHMs8", code_challenge) +16:29:46.607 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.607 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.608 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.608 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.608 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.608 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.610 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.610 [XNIO-1 task-2] OTMOM7BGQeiYgh9Ayf8pfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.614 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.615 [XNIO-1 task-3] 3orXCUB6S8eRexUJ14ogjQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.619 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.619 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.619 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.619 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG com.networknt.schema.TypeValidator debug - validate( "740d5a10-bae7-4eb2-a7cd-49d343d84bfa", "740d5a10-bae7-4eb2-a7cd-49d343d84bfa", client_id) +16:29:46.620 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.620 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.620 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.620 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.620 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.628 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.628 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.631 [XNIO-1 task-2] IYbXvbrZQCKvGlmwGGKntg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OpdliL6BQnKJbtXiv3LjdQ +16:29:46.637 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.637 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.637 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.637 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.637 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.638 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.638 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.638 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.653 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.654 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.654 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.654 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG com.networknt.schema.TypeValidator debug - validate( "qSmdF8OFnPwUU8IlhXIWY3MyKhezGi4722tLLd3I1Sk", "qSmdF8OFnPwUU8IlhXIWY3MyKhezGi4722tLLd3I1Sk", code_challenge) +16:29:46.654 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.654 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.655 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.655 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.655 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.655 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.657 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.657 [XNIO-1 task-2] gSd8MjXaTnWpYo5QBV77kg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.664 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.665 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.665 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.666 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.666 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.666 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG com.networknt.schema.TypeValidator debug - validate( "740d5a10-bae7-4eb2-a7cd-49d343d84bfa", "740d5a10-bae7-4eb2-a7cd-49d343d84bfa", client_id) +16:29:46.666 [XNIO-1 task-3] Bf47-UuDSIeEUaWBIjYi_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=knmsme1xQN-W5NGiVipBzg +16:29:46.667 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.667 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.667 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.667 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.674 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.675 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.676 [XNIO-1 task-2] nJBX7AQ3RYCfLVLvmsqZHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U4bPyGBTT4qd_a25VMYE1w +16:29:46.677 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f95f737b +16:29:46.703 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.704 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.704 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.704 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG com.networknt.schema.TypeValidator debug - validate( "6b39ac82-315b-457d-baf4-49b154d8a6cb", "6b39ac82-315b-457d-baf4-49b154d8a6cb", client_id) +16:29:46.704 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.704 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.705 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.705 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.710 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.715 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.715 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.716 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.716 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", client_id) +16:29:46.716 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.716 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.717 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.717 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.718 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.721 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.721 [XNIO-1 task-2] koBGHf1ITm2PM8pN6pppig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.726 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.726 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.728 [XNIO-1 task-3] Xy9zaAe9TPSiwbLPklj9Cg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OCwtIo7sRXak2rve1FbRZw +16:29:46.731 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.731 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.731 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.731 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "93114a1e-c7aa-4917-8b7d-7b041eaf5947", "93114a1e-c7aa-4917-8b7d-7b041eaf5947", client_id) +16:29:46.736 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.736 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.736 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.736 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.736 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.736 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", "c4bef0d7-21f5-4b6a-b76b-450fbad6ac7c", client_id) +16:29:46.737 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.737 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.737 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.737 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.737 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.737 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.737 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.737 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.745 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.745 [XNIO-1 task-2] BbD4Pw9bRDuxg0sfkx4e4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.750 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.750 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.750 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.757 [XNIO-1 task-3] foF56fTHT1-VDKvzp174Ng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cBGX8kGuS-CdSsUpj6uEqw + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +16:29:46.765 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.765 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.765 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.765 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.766 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG com.networknt.schema.TypeValidator debug - validate( "yFDc5k_Utftz8mIsubznZyyJvPb4sM-DmLAV62qlKCE", "yFDc5k_Utftz8mIsubznZyyJvPb4sM-DmLAV62qlKCE", code_challenge) +16:29:46.766 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.766 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.766 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.766 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.766 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:29:46.766 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:29:46.769 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:29:46.774 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:46.789 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.791 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.791 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.791 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +16:29:46.791 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.791 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:29:46.792 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.792 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.792 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.792 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.793 [XNIO-1 task-3] DQvXVRh3S8Gh3_Uxxr8xpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YnlOMQgtSx2_K8_zJi4nCg +16:29:46.800 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.800 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.800 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.800 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG com.networknt.schema.TypeValidator debug - validate( "ef86cf18-564d-4e8a-bf76-365edc0620e5", "ef86cf18-564d-4e8a-bf76-365edc0620e5", client_id) +16:29:46.801 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.801 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.801 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.801 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.802 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.806 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.806 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.808 [XNIO-1 task-2] dN0F6LHsQSajGPYzfdvYYg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=EBEbs6EeS7OLzZ6Xx6EnZQ +16:29:46.809 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:29:46.809 [XNIO-1 task-3] O38uK_q9TxGUO_i_qnbw2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.816 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.817 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.817 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.817 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.817 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.817 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.818 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.818 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.818 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.818 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.818 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.818 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.818 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.819 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.819 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.819 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.819 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.819 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.827 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.827 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.827 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:29:46.827 [XNIO-1 task-2] 716mmeSoR9-O_7QNS0y7gw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.831 [XNIO-1 task-3] jYv6-7LcRr-_BdmD2HfUig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hgoCP8rFR9WCySNc8j6Rdw +16:29:46.838 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.838 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:29:46.838 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:29:46.838 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG com.networknt.schema.TypeValidator debug - validate( "tRLpXRQsaP8o0o6BZg2kQ65I1aAxnYIrMJzD5P3WCak", "tRLpXRQsaP8o0o6BZg2kQ65I1aAxnYIrMJzD5P3WCak", code_challenge) +16:29:46.838 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:29:46.839 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:29:46.839 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:29:46.839 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.839 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.839 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.848 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.849 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.850 [XNIO-1 task-2] kzNxHYv8QPKewLIYawX36g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=t5G9LXCOSQ2ZtPzEshxtHg +16:29:46.856 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.857 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.857 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.857 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b2599ed-e50f-46c0-b254-558be58e803d", "4b2599ed-e50f-46c0-b254-558be58e803d", client_id) +16:29:46.857 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.857 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.858 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.858 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.858 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.868 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.868 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.870 [XNIO-1 task-2] YlZJ3YpQSB237SiUj9_5Zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=i5uGfR-gRy6WPN3dk8d5tQ +16:29:46.878 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.878 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.878 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.878 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG com.networknt.schema.TypeValidator debug - validate( "4b2599ed-e50f-46c0-b254-558be58e803d", "4b2599ed-e50f-46c0-b254-558be58e803d", client_id) +16:29:46.879 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:29:46.879 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:29:46.879 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:29:46.879 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:29:46.879 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:29:46.891 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:29:46.891 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:29:46.893 [XNIO-1 task-2] 5Vaat1OJQqWJ53fl1_MM1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iXWhjBGxRsOR_-KltQvwmg +16:29:46.898 [XNIO-1 task-2] oUHReKOZRoKAHETNqz1yaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.899 [XNIO-1 task-2] oUHReKOZRoKAHETNqz1yaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.899 [XNIO-1 task-2] oUHReKOZRoKAHETNqz1yaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:29:46.899 [XNIO-1 task-2] oUHReKOZRoKAHETNqz1yaw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b2599ed-e50f-46c0-b254-558be58e803d", "4b2599ed-e50f-46c0-b254-558be58e803d", client_id) diff --git a/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-key-1.log b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..67c4d1a --- /dev/null +++ b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-key-1.log @@ -0,0 +1,254 @@ + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:43.293 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:509bd455-3690-47d3-b75c-1ad0f53e77b7 +16:29:43.295 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:509bd455-3690-47d3-b75c-1ad0f53e77b7 +16:29:43.350 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f1bb798c-f28b-45d0-bcf6-af588c91f15b +16:29:43.357 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21b16b75 +16:29:43.379 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c79e61a6 +16:29:43.420 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:21b16b75 +16:29:43.482 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a89ce770 +16:29:43.502 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c79e61a6 +16:29:43.517 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8b021d03 +16:29:43.562 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c3378dda-224b-42c8-babc-5425db5519c1 +16:29:43.563 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a89ce770 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Jun 28, 2024 4:29:43 PM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:29:43.680 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f9a33d69-1b25-4b71-80f1-fe5d4bc343b1 +16:29:43.899 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a89ce770 +16:29:43.959 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4385eba9-d9dc-4ff7-9d02-744f4edd0661 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Jun 28, 2024 4:29:43 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + ... 14 more + +16:29:44.083 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.176 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8b021d03 +16:29:44.303 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8b021d03 +16:29:44.411 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8b021d03 +16:29:44.677 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ec85bd99 +16:29:44.714 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f5bd9901-ecb8-4df3-9a0b-5e26a1b0a438 +16:29:44.715 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:064ae885 +16:29:44.717 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:064ae885 +16:29:44.737 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:74a8fc09-f34a-46f0-b3e2-06bf5cd52543 +16:29:44.785 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fa479345-26b6-441b-b81f-d3ba21e14d1f +16:29:44.807 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fa479345-26b6-441b-b81f-d3ba21e14d1f +16:29:44.959 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3d5d9588-7d95-41e6-90e7-81e97545543e +16:29:44.961 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3d5d9588-7d95-41e6-90e7-81e97545543e +16:29:45.071 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec85bd99 +16:29:45.173 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ab47a961 +16:29:45.322 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ab47a961 +16:29:45.385 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec85bd99 +16:29:45.433 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:da6c701d +16:29:45.472 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ec85bd99 +16:29:45.519 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:da6c701d +16:29:45.591 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:202d204d +16:29:45.594 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:202d204d +16:29:45.627 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:36d61ad2 +16:29:45.660 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f5390e48-222e-4550-99b0-8989954c2e7c +16:29:45.665 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:202d204d +16:29:45.688 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f5390e48-222e-4550-99b0-8989954c2e7c +16:29:45.699 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:36d61ad2 +16:29:45.791 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:feae2798 +16:29:45.821 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:feae2798 +16:29:45.841 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:feae2798 +16:29:45.884 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f5d6ea7a-0053-44bb-adcc-2b0edbc57b73 +16:29:45.887 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f5d6ea7a-0053-44bb-adcc-2b0edbc57b73 +16:29:45.984 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:46.154 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:842c97fb +16:29:46.156 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:842c97fb +16:29:46.277 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:218b717f-f297-4e91-81ce-139e80bd43de +16:29:46.493 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:218b717f-f297-4e91-81ce-139e80bd43de +16:29:46.506 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d8329bd1-361a-4a00-8c8e-9349b04cc614 +16:29:46.551 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d8329bd1-361a-4a00-8c8e-9349b04cc614 +16:29:46.570 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6b39ac82-315b-457d-baf4-49b154d8a6cb +16:29:46.628 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:842c97fb +16:29:46.689 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:218b717f-f297-4e91-81ce-139e80bd43de +16:29:46.720 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5005073a-eff8-4c34-9a66-9af81d228b41 +16:29:46.722 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5005073a-eff8-4c34-9a66-9af81d228b41 +16:29:46.777 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c00a34ef-ecf7-4df3-a207-03ff93f8b7ca +16:29:46.908 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5b1e80b6-40b0-4091-a15f-40c2b69343d4 +16:29:46.910 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5b1e80b6-40b0-4091-a15f-40c2b69343d4 +16:29:46.975 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a693d007 +16:29:47.030 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:230c0b72-ec26-4fbb-8c36-7002a8da72ba +16:29:47.032 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:230c0b72-ec26-4fbb-8c36-7002a8da72ba +16:29:47.050 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5005073a-eff8-4c34-9a66-9af81d228b41 +16:29:47.069 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a693d007 +16:29:47.089 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:de373ff5 +16:29:47.137 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f5d6ea7a-0053-44bb-adcc-2b0edbc57b73 +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:47.173 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:de373ff5 +16:29:47.212 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a7e9e056-3836-4a96-b299-56042a5c0f2c +16:29:47.470 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a7e9e056-3836-4a96-b299-56042a5c0f2c +16:29:47.513 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d646297a +16:29:47.565 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8880c69d +16:29:47.567 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8880c69d +16:29:47.622 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +Jun 28, 2024 4:29:47 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:47.673 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8880c69d +16:29:47.742 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f3cf6ad2 +16:29:47.743 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:81f4fef0-10ec-4d38-a4f2-573867c7884c +16:29:47.744 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f3cf6ad2 +16:29:47.754 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7cdcf1de +16:29:47.755 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7cdcf1de +16:29:47.768 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d646297a +16:29:47.823 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f6c1b84f-e592-4a34-ba69-2e5faf1ebce0 +16:29:47.825 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f6c1b84f-e592-4a34-ba69-2e5faf1ebce0 +16:29:47.875 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d5e2d666-c78e-4fe2-87dc-ea8c65df8ecc +16:29:47.884 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d5e2d666-c78e-4fe2-87dc-ea8c65df8ecc +16:29:47.931 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8880c69d diff --git a/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..7310783 --- /dev/null +++ b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,3197 @@ +16:29:43.189 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0d34ccaf +16:29:43.282 [XNIO-1 task-1] GptQJWLqRBSyaRFmskvFaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67, base path is set to: null +16:29:43.284 [XNIO-1 task-1] GptQJWLqRBSyaRFmskvFaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.284 [XNIO-1 task-1] GptQJWLqRBSyaRFmskvFaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:43.285 [XNIO-1 task-1] GptQJWLqRBSyaRFmskvFaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67, base path is set to: null +16:29:43.285 [XNIO-1 task-1] GptQJWLqRBSyaRFmskvFaA DEBUG com.networknt.schema.TypeValidator debug - validate( "33aaea97-4436-488f-ab2f-9e3d8307ac67", "33aaea97-4436-488f-ab2f-9e3d8307ac67", refreshToken) +16:29:43.297 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:48d7a224 +16:29:43.302 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:48d7a224 +16:29:43.311 [XNIO-1 task-1] -LWtWq8HSzmTMBzuzNaj3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.312 [XNIO-1 task-1] -LWtWq8HSzmTMBzuzNaj3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.312 [XNIO-1 task-1] -LWtWq8HSzmTMBzuzNaj3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.313 [XNIO-1 task-1] -LWtWq8HSzmTMBzuzNaj3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.326 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:708fcf8d +16:29:43.332 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:708fcf8d +16:29:43.343 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f30522c-6230-4e9b-8a3a-647ac02bb40c +16:29:43.347 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.347 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.347 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f30522c-6230-4e9b-8a3a-647ac02bb40c +16:29:43.352 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5f30522c-6230-4e9b-8a3a-647ac02bb40c +16:29:43.356 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ INFO com.networknt.config.Config loadJsonMapConfigWithSpecificConfigLoader - Trying to load status with extension yaml, yml or json by using default loading method. +16:29:43.361 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ INFO com.networknt.config.Config getConfigStream - Trying to load config from classpath directory for file status.yml +16:29:43.386 [XNIO-1 task-1] 0faDnZY2Q7-uCxdqKVHPYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5f30522c-6230-4e9b-8a3a-647ac02bb40c is not found.","severity":"ERROR"} +16:29:43.390 [XNIO-1 task-1] D4GHJ9B2SYaAthgDw6DVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.390 [XNIO-1 task-1] D4GHJ9B2SYaAthgDw6DVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.390 [XNIO-1 task-1] D4GHJ9B2SYaAthgDw6DVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.390 [XNIO-1 task-1] D4GHJ9B2SYaAthgDw6DVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.391 [XNIO-1 task-1] D4GHJ9B2SYaAthgDw6DVZw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.409 [XNIO-1 task-1] uhjkep_1TPWK537iiHgrUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:43.410 [XNIO-1 task-1] uhjkep_1TPWK537iiHgrUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.410 [XNIO-1 task-1] uhjkep_1TPWK537iiHgrUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:43.410 [XNIO-1 task-1] uhjkep_1TPWK537iiHgrUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:43.411 [XNIO-1 task-1] uhjkep_1TPWK537iiHgrUg DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:43.420 [XNIO-1 task-1] MY3GY2QUSTKHFaPOGdigVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.420 [XNIO-1 task-1] MY3GY2QUSTKHFaPOGdigVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.422 [XNIO-1 task-1] MY3GY2QUSTKHFaPOGdigVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.428 [XNIO-1 task-1] MY3GY2QUSTKHFaPOGdigVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.429 [XNIO-1 task-1] MY3GY2QUSTKHFaPOGdigVw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.465 [XNIO-1 task-1] bFqhUsMkQj2mjTTuOY-1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.465 [XNIO-1 task-1] bFqhUsMkQj2mjTTuOY-1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.465 [XNIO-1 task-1] bFqhUsMkQj2mjTTuOY-1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.471 [XNIO-1 task-1] bFqhUsMkQj2mjTTuOY-1ZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.486 [XNIO-1 task-1] Pd6kjeS6Rym1GCeQ5-MiFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/93613d6d-6d27-476a-91cf-48d1b65d10c3, base path is set to: null +16:29:43.489 [XNIO-1 task-1] Pd6kjeS6Rym1GCeQ5-MiFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.491 [XNIO-1 task-1] Pd6kjeS6Rym1GCeQ5-MiFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:43.493 [XNIO-1 task-1] Pd6kjeS6Rym1GCeQ5-MiFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/93613d6d-6d27-476a-91cf-48d1b65d10c3, base path is set to: null +16:29:43.499 [XNIO-1 task-1] Pd6kjeS6Rym1GCeQ5-MiFA DEBUG com.networknt.schema.TypeValidator debug - validate( "93613d6d-6d27-476a-91cf-48d1b65d10c3", "93613d6d-6d27-476a-91cf-48d1b65d10c3", refreshToken) +16:29:43.513 [XNIO-1 task-1] D1MHkegOQ9K4MpX5l4ksNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.513 [XNIO-1 task-1] D1MHkegOQ9K4MpX5l4ksNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.513 [XNIO-1 task-1] D1MHkegOQ9K4MpX5l4ksNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.515 [XNIO-1 task-1] D1MHkegOQ9K4MpX5l4ksNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.516 [XNIO-1 task-1] D1MHkegOQ9K4MpX5l4ksNg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.549 [XNIO-1 task-1] ep5SCDU7QCWuSV_SdjrW_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93613d6d-6d27-476a-91cf-48d1b65d10c3 +16:29:43.549 [XNIO-1 task-1] ep5SCDU7QCWuSV_SdjrW_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.550 [XNIO-1 task-1] ep5SCDU7QCWuSV_SdjrW_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.550 [XNIO-1 task-1] ep5SCDU7QCWuSV_SdjrW_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93613d6d-6d27-476a-91cf-48d1b65d10c3 +16:29:43.551 [XNIO-1 task-1] ep5SCDU7QCWuSV_SdjrW_A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 93613d6d-6d27-476a-91cf-48d1b65d10c3 +16:29:43.566 [XNIO-1 task-1] VooGuVm0SlWw-_r0x8a-RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.566 [XNIO-1 task-1] VooGuVm0SlWw-_r0x8a-RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.566 [XNIO-1 task-1] VooGuVm0SlWw-_r0x8a-RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.567 [XNIO-1 task-1] VooGuVm0SlWw-_r0x8a-RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.567 [XNIO-1 task-1] VooGuVm0SlWw-_r0x8a-RA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.574 [XNIO-1 task-1] Fd8dHO6hR3Kdj1XvQwRQFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.574 [XNIO-1 task-1] Fd8dHO6hR3Kdj1XvQwRQFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.575 [XNIO-1 task-1] Fd8dHO6hR3Kdj1XvQwRQFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.576 [XNIO-1 task-1] Fd8dHO6hR3Kdj1XvQwRQFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.595 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5029f4e2-8dd2-4f92-ba67-1daa15d705dc +16:29:43.604 [XNIO-1 task-1] ztdPWPAMTxCgoGImf0bfcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.604 [XNIO-1 task-1] ztdPWPAMTxCgoGImf0bfcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.604 [XNIO-1 task-1] ztdPWPAMTxCgoGImf0bfcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.607 [XNIO-1 task-1] ztdPWPAMTxCgoGImf0bfcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.607 [XNIO-1 task-1] ztdPWPAMTxCgoGImf0bfcw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.621 [XNIO-1 task-1] k2H5jtB9QYSQCxB7jaMYCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.626 [XNIO-1 task-1] k2H5jtB9QYSQCxB7jaMYCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.626 [XNIO-1 task-1] k2H5jtB9QYSQCxB7jaMYCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.626 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:708fcf8d +16:29:43.630 [XNIO-1 task-1] k2H5jtB9QYSQCxB7jaMYCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.630 [XNIO-1 task-1] k2H5jtB9QYSQCxB7jaMYCw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.647 [XNIO-1 task-1] fD9ZsmgvTlGdWC0oAwOPtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.649 [XNIO-1 task-1] fD9ZsmgvTlGdWC0oAwOPtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.649 [XNIO-1 task-1] fD9ZsmgvTlGdWC0oAwOPtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.652 [XNIO-1 task-1] fD9ZsmgvTlGdWC0oAwOPtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.655 [XNIO-1 task-1] fD9ZsmgvTlGdWC0oAwOPtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.677 [XNIO-1 task-1] iTXwlrvJQFmfvpUZdzDCdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.677 [XNIO-1 task-1] iTXwlrvJQFmfvpUZdzDCdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.677 [XNIO-1 task-1] iTXwlrvJQFmfvpUZdzDCdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.678 [XNIO-1 task-1] iTXwlrvJQFmfvpUZdzDCdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.680 [XNIO-1 task-1] iTXwlrvJQFmfvpUZdzDCdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.726 [XNIO-1 task-1] iTXwlrvJQFmfvpUZdzDCdA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 is not found.","severity":"ERROR"} +16:29:43.731 [XNIO-1 task-1] 3BCW75y6R2ex_PVz_MWTiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.731 [XNIO-1 task-1] 3BCW75y6R2ex_PVz_MWTiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.731 [XNIO-1 task-1] 3BCW75y6R2ex_PVz_MWTiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.731 [XNIO-1 task-1] 3BCW75y6R2ex_PVz_MWTiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.731 [XNIO-1 task-1] 3BCW75y6R2ex_PVz_MWTiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.735 [XNIO-1 task-1] 4EnijvJ7QI-7og9OrR_Nbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52, base path is set to: null +16:29:43.735 [XNIO-1 task-1] 4EnijvJ7QI-7og9OrR_Nbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.735 [XNIO-1 task-1] 4EnijvJ7QI-7og9OrR_Nbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:43.736 [XNIO-1 task-1] 4EnijvJ7QI-7og9OrR_Nbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52, base path is set to: null +16:29:43.736 [XNIO-1 task-1] 4EnijvJ7QI-7og9OrR_Nbw DEBUG com.networknt.schema.TypeValidator debug - validate( "ad3d6c8b-6834-4869-8c00-f6ea9c7fba52", "ad3d6c8b-6834-4869-8c00-f6ea9c7fba52", refreshToken) +16:29:43.737 [XNIO-1 task-1] 4EnijvJ7QI-7og9OrR_Nbw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 is not found.","severity":"ERROR"} +16:29:43.741 [XNIO-1 task-1] ZkMVtBFpTEiSE99fKn-6Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.741 [XNIO-1 task-1] ZkMVtBFpTEiSE99fKn-6Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.741 [XNIO-1 task-1] ZkMVtBFpTEiSE99fKn-6Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.742 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bb7c8f39 +16:29:43.746 [XNIO-1 task-1] ZkMVtBFpTEiSE99fKn-6Fg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.748 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3586d42e +16:29:43.766 [XNIO-1 task-1] ybe4zX26QOuebB9Q3uz33g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.766 [XNIO-1 task-1] ybe4zX26QOuebB9Q3uz33g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.766 [XNIO-1 task-1] ybe4zX26QOuebB9Q3uz33g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.767 [XNIO-1 task-1] ybe4zX26QOuebB9Q3uz33g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.767 [XNIO-1 task-1] ybe4zX26QOuebB9Q3uz33g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.776 [XNIO-1 task-1] uR2GTGL2Tea1DfSiKGVYSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.776 [XNIO-1 task-1] uR2GTGL2Tea1DfSiKGVYSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.776 [XNIO-1 task-1] uR2GTGL2Tea1DfSiKGVYSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.776 [XNIO-1 task-1] uR2GTGL2Tea1DfSiKGVYSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.777 [XNIO-1 task-1] uR2GTGL2Tea1DfSiKGVYSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad3d6c8b-6834-4869-8c00-f6ea9c7fba52 +16:29:43.781 [XNIO-1 task-1] ysZR3fiyRTyWySecD4fxfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.781 [XNIO-1 task-1] ysZR3fiyRTyWySecD4fxfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.781 [XNIO-1 task-1] ysZR3fiyRTyWySecD4fxfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.782 [XNIO-1 task-1] ysZR3fiyRTyWySecD4fxfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.782 [XNIO-1 task-1] ysZR3fiyRTyWySecD4fxfw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.819 [XNIO-1 task-1] 59QQuuS8T6WreFCUqV_oPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.819 [XNIO-1 task-1] 59QQuuS8T6WreFCUqV_oPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.823 [XNIO-1 task-1] 59QQuuS8T6WreFCUqV_oPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.823 [XNIO-1 task-1] 59QQuuS8T6WreFCUqV_oPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.824 [XNIO-1 task-1] 59QQuuS8T6WreFCUqV_oPg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.828 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a25ef366 +16:29:43.840 [XNIO-1 task-1] Nvi1NZqCR7-uyMhKOkkQAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.840 [XNIO-1 task-1] Nvi1NZqCR7-uyMhKOkkQAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.840 [XNIO-1 task-1] Nvi1NZqCR7-uyMhKOkkQAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.840 [XNIO-1 task-1] Nvi1NZqCR7-uyMhKOkkQAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.841 [XNIO-1 task-1] Nvi1NZqCR7-uyMhKOkkQAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.856 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a25ef366 +16:29:43.857 [XNIO-1 task-1] CAVzV91VRM-Wy0RW0clicg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0fc8ae14-4083-4d36-a5e6-b6cd659626bd, base path is set to: null +16:29:43.857 [XNIO-1 task-1] CAVzV91VRM-Wy0RW0clicg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.857 [XNIO-1 task-1] CAVzV91VRM-Wy0RW0clicg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:43.857 [XNIO-1 task-1] CAVzV91VRM-Wy0RW0clicg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0fc8ae14-4083-4d36-a5e6-b6cd659626bd, base path is set to: null +16:29:43.858 [XNIO-1 task-1] CAVzV91VRM-Wy0RW0clicg DEBUG com.networknt.schema.TypeValidator debug - validate( "0fc8ae14-4083-4d36-a5e6-b6cd659626bd", "0fc8ae14-4083-4d36-a5e6-b6cd659626bd", refreshToken) +16:29:43.919 [XNIO-1 task-1] e53x4bZKQhyniOGaUHVvpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67, base path is set to: null +16:29:43.919 [XNIO-1 task-1] e53x4bZKQhyniOGaUHVvpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.919 [XNIO-1 task-1] e53x4bZKQhyniOGaUHVvpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:43.920 [XNIO-1 task-1] e53x4bZKQhyniOGaUHVvpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67, base path is set to: null +16:29:43.920 [XNIO-1 task-1] e53x4bZKQhyniOGaUHVvpw DEBUG com.networknt.schema.TypeValidator debug - validate( "33aaea97-4436-488f-ab2f-9e3d8307ac67", "33aaea97-4436-488f-ab2f-9e3d8307ac67", refreshToken) +16:29:43.920 [XNIO-1 task-1] e53x4bZKQhyniOGaUHVvpw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 33aaea97-4436-488f-ab2f-9e3d8307ac67 is not found.","severity":"ERROR"} +16:29:43.924 [XNIO-1 task-1] NvtBinjuQwept61IICVKZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.925 [XNIO-1 task-1] NvtBinjuQwept61IICVKZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.925 [XNIO-1 task-1] NvtBinjuQwept61IICVKZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.925 [XNIO-1 task-1] NvtBinjuQwept61IICVKZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.925 [XNIO-1 task-1] NvtBinjuQwept61IICVKZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.927 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:446c03c3 +16:29:43.938 [XNIO-1 task-1] WiDbZiUSS766LYNTIl3Svw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0fc8ae14-4083-4d36-a5e6-b6cd659626bd +16:29:43.939 [XNIO-1 task-1] WiDbZiUSS766LYNTIl3Svw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.939 [XNIO-1 task-1] WiDbZiUSS766LYNTIl3Svw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.940 [XNIO-1 task-1] WiDbZiUSS766LYNTIl3Svw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0fc8ae14-4083-4d36-a5e6-b6cd659626bd +16:29:43.940 [XNIO-1 task-1] WiDbZiUSS766LYNTIl3Svw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0fc8ae14-4083-4d36-a5e6-b6cd659626bd +16:29:43.961 [XNIO-1 task-1] PSV8B3QFSzuGCRVLNRrE9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.961 [XNIO-1 task-1] PSV8B3QFSzuGCRVLNRrE9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.961 [XNIO-1 task-1] PSV8B3QFSzuGCRVLNRrE9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.962 [XNIO-1 task-1] PSV8B3QFSzuGCRVLNRrE9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.962 [XNIO-1 task-1] PSV8B3QFSzuGCRVLNRrE9w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:43.973 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0d34ccaf +16:29:43.977 [XNIO-1 task-1] DIuAMeizSq2ZyLmk6pTnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:43.978 [XNIO-1 task-1] DIuAMeizSq2ZyLmk6pTnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.978 [XNIO-1 task-1] DIuAMeizSq2ZyLmk6pTnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.978 [XNIO-1 task-1] DIuAMeizSq2ZyLmk6pTnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:43.978 [XNIO-1 task-1] DIuAMeizSq2ZyLmk6pTnDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:43.983 [XNIO-1 task-1] QJUiZAgLQl-UAKbTF7AO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.983 [XNIO-1 task-1] QJUiZAgLQl-UAKbTF7AO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:43.983 [XNIO-1 task-1] QJUiZAgLQl-UAKbTF7AO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:43.983 [XNIO-1 task-1] QJUiZAgLQl-UAKbTF7AO9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.984 [XNIO-1 task-1] QJUiZAgLQl-UAKbTF7AO9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.992 [XNIO-1 task-1] N7AI17pYTwGsyUWqfbQp5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4028915a-8b05-4ae4-adaa-92f5935eaa9d, base path is set to: null +16:29:43.992 [XNIO-1 task-1] N7AI17pYTwGsyUWqfbQp5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:43.992 [XNIO-1 task-1] N7AI17pYTwGsyUWqfbQp5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:43.993 [XNIO-1 task-1] N7AI17pYTwGsyUWqfbQp5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4028915a-8b05-4ae4-adaa-92f5935eaa9d, base path is set to: null +16:29:43.993 [XNIO-1 task-1] N7AI17pYTwGsyUWqfbQp5g DEBUG com.networknt.schema.TypeValidator debug - validate( "4028915a-8b05-4ae4-adaa-92f5935eaa9d", "4028915a-8b05-4ae4-adaa-92f5935eaa9d", refreshToken) +16:29:43.999 [XNIO-1 task-1] Cmzct2iGRKeLuBjB2-vFFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:43.999 [XNIO-1 task-1] Cmzct2iGRKeLuBjB2-vFFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.000 [XNIO-1 task-1] Cmzct2iGRKeLuBjB2-vFFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.000 [XNIO-1 task-1] Cmzct2iGRKeLuBjB2-vFFw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.000 [XNIO-1 task-1] Cmzct2iGRKeLuBjB2-vFFw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.003 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0828fe58-1531-4eee-aad8-ec9aec2528fb +16:29:44.011 [XNIO-1 task-1] 2iiO-DVeRzel6GanW5_-IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.011 [XNIO-1 task-1] 2iiO-DVeRzel6GanW5_-IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.012 [XNIO-1 task-1] 2iiO-DVeRzel6GanW5_-IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.012 [XNIO-1 task-1] 2iiO-DVeRzel6GanW5_-IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.012 [XNIO-1 task-1] 2iiO-DVeRzel6GanW5_-IA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.017 [XNIO-1 task-1] K2DXEIBGRCqJ4EPETPxVeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:44.017 [XNIO-1 task-1] K2DXEIBGRCqJ4EPETPxVeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.017 [XNIO-1 task-1] K2DXEIBGRCqJ4EPETPxVeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.018 [XNIO-1 task-1] K2DXEIBGRCqJ4EPETPxVeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:44.018 [XNIO-1 task-1] K2DXEIBGRCqJ4EPETPxVeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:44.025 [XNIO-1 task-1] gseVlLsmSTic3x6ULiWqrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4028915a-8b05-4ae4-adaa-92f5935eaa9d, base path is set to: null +16:29:44.025 [XNIO-1 task-1] gseVlLsmSTic3x6ULiWqrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.025 [XNIO-1 task-1] gseVlLsmSTic3x6ULiWqrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.026 [XNIO-1 task-1] gseVlLsmSTic3x6ULiWqrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4028915a-8b05-4ae4-adaa-92f5935eaa9d, base path is set to: null +16:29:44.026 [XNIO-1 task-1] gseVlLsmSTic3x6ULiWqrA DEBUG com.networknt.schema.TypeValidator debug - validate( "4028915a-8b05-4ae4-adaa-92f5935eaa9d", "4028915a-8b05-4ae4-adaa-92f5935eaa9d", refreshToken) +16:29:44.036 [XNIO-1 task-1] o1zehJnTSQebsk3fj8pDlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.036 [XNIO-1 task-1] o1zehJnTSQebsk3fj8pDlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.036 [XNIO-1 task-1] o1zehJnTSQebsk3fj8pDlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.036 [XNIO-1 task-1] o1zehJnTSQebsk3fj8pDlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.037 [XNIO-1 task-1] o1zehJnTSQebsk3fj8pDlA DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:44.049 [XNIO-1 task-1] XcXWZFlYRiOQaeAFFxdNIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.049 [XNIO-1 task-1] XcXWZFlYRiOQaeAFFxdNIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.049 [XNIO-1 task-1] XcXWZFlYRiOQaeAFFxdNIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.050 [XNIO-1 task-1] XcXWZFlYRiOQaeAFFxdNIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.050 [XNIO-1 task-1] XcXWZFlYRiOQaeAFFxdNIg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.073 [XNIO-1 task-2] 143-ylvmRU-9eeo8VAbKgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.074 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a25ef366 +16:29:44.079 [XNIO-1 task-2] 143-ylvmRU-9eeo8VAbKgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.079 [XNIO-1 task-2] 143-ylvmRU-9eeo8VAbKgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.080 [XNIO-1 task-2] 143-ylvmRU-9eeo8VAbKgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.081 [XNIO-1 task-2] 143-ylvmRU-9eeo8VAbKgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.161 [XNIO-1 task-2] ELzEC6bLSzmFXdkOIy9cZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4028915a-8b05-4ae4-adaa-92f5935eaa9d, base path is set to: null +16:29:44.161 [XNIO-1 task-2] ELzEC6bLSzmFXdkOIy9cZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.161 [XNIO-1 task-2] ELzEC6bLSzmFXdkOIy9cZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.162 [XNIO-1 task-2] ELzEC6bLSzmFXdkOIy9cZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4028915a-8b05-4ae4-adaa-92f5935eaa9d, base path is set to: null +16:29:44.162 [XNIO-1 task-2] ELzEC6bLSzmFXdkOIy9cZw DEBUG com.networknt.schema.TypeValidator debug - validate( "4028915a-8b05-4ae4-adaa-92f5935eaa9d", "4028915a-8b05-4ae4-adaa-92f5935eaa9d", refreshToken) +16:29:44.166 [XNIO-1 task-2] ELzEC6bLSzmFXdkOIy9cZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4028915a-8b05-4ae4-adaa-92f5935eaa9d is not found.","severity":"ERROR"} +16:29:44.174 [XNIO-1 task-2] 5AE_dwJuRs2OPLF_0SRnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.174 [XNIO-1 task-2] 5AE_dwJuRs2OPLF_0SRnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.174 [XNIO-1 task-2] 5AE_dwJuRs2OPLF_0SRnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.174 [XNIO-1 task-2] 5AE_dwJuRs2OPLF_0SRnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.175 [XNIO-1 task-2] 5AE_dwJuRs2OPLF_0SRnIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.178 [XNIO-1 task-2] tHQI05QYRqaU58V865mnAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.178 [XNIO-1 task-2] tHQI05QYRqaU58V865mnAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.178 [XNIO-1 task-2] tHQI05QYRqaU58V865mnAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.179 [XNIO-1 task-2] tHQI05QYRqaU58V865mnAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.179 [XNIO-1 task-2] tHQI05QYRqaU58V865mnAw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.190 [XNIO-1 task-2] MANLb9z4TJ2PEHyVcQvmjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.190 [XNIO-1 task-2] MANLb9z4TJ2PEHyVcQvmjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.190 [XNIO-1 task-2] MANLb9z4TJ2PEHyVcQvmjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.191 [XNIO-1 task-2] MANLb9z4TJ2PEHyVcQvmjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.191 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:708fcf8d +16:29:44.203 [XNIO-1 task-2] q0p4rW5YTf6fW2vO6HHqeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.204 [XNIO-1 task-2] q0p4rW5YTf6fW2vO6HHqeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.204 [XNIO-1 task-2] q0p4rW5YTf6fW2vO6HHqeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.204 [XNIO-1 task-2] q0p4rW5YTf6fW2vO6HHqeA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.205 [XNIO-1 task-2] q0p4rW5YTf6fW2vO6HHqeA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.233 [XNIO-1 task-2] 9iYFmUkARnuNow21jpe8Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.233 [XNIO-1 task-2] 9iYFmUkARnuNow21jpe8Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.233 [XNIO-1 task-2] 9iYFmUkARnuNow21jpe8Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.233 [XNIO-1 task-2] 9iYFmUkARnuNow21jpe8Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.234 [XNIO-1 task-2] 9iYFmUkARnuNow21jpe8Pg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.241 [XNIO-1 task-2] LUN0mmewQDixYYgdqypd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.241 [XNIO-1 task-2] LUN0mmewQDixYYgdqypd4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.241 [XNIO-1 task-2] LUN0mmewQDixYYgdqypd4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.241 [XNIO-1 task-2] LUN0mmewQDixYYgdqypd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.243 [XNIO-1 task-2] LUN0mmewQDixYYgdqypd4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:44.244 [XNIO-1 task-2] LUN0mmewQDixYYgdqypd4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:44.248 [XNIO-1 task-2] sEc9TmScSCKQpb7hARJlkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.249 [XNIO-1 task-2] sEc9TmScSCKQpb7hARJlkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.249 [XNIO-1 task-2] sEc9TmScSCKQpb7hARJlkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.249 [XNIO-1 task-2] sEc9TmScSCKQpb7hARJlkg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.258 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.260 [XNIO-1 task-2] PW9rOqoxR-OumWAExBilaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.260 [XNIO-1 task-2] PW9rOqoxR-OumWAExBilaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.260 [XNIO-1 task-2] PW9rOqoxR-OumWAExBilaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.260 [XNIO-1 task-2] PW9rOqoxR-OumWAExBilaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.261 [XNIO-1 task-2] PW9rOqoxR-OumWAExBilaA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:44.261 [XNIO-1 task-2] PW9rOqoxR-OumWAExBilaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:44.265 [XNIO-1 task-2] PBqMo__mR1imOd9dsK67iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.266 [XNIO-1 task-2] PBqMo__mR1imOd9dsK67iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.266 [XNIO-1 task-2] PBqMo__mR1imOd9dsK67iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.266 [XNIO-1 task-2] PBqMo__mR1imOd9dsK67iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.266 [XNIO-1 task-2] PBqMo__mR1imOd9dsK67iQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.271 [XNIO-1 task-2] FIIbdkeGQYejVIKvBxhtuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.271 [XNIO-1 task-2] FIIbdkeGQYejVIKvBxhtuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.271 [XNIO-1 task-2] FIIbdkeGQYejVIKvBxhtuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.271 [XNIO-1 task-2] FIIbdkeGQYejVIKvBxhtuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.272 [XNIO-1 task-2] FIIbdkeGQYejVIKvBxhtuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.281 [XNIO-1 task-2] OEQYo6o8SjqJOXUabMfG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.282 [XNIO-1 task-2] OEQYo6o8SjqJOXUabMfG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.282 [XNIO-1 task-2] OEQYo6o8SjqJOXUabMfG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.282 [XNIO-1 task-2] OEQYo6o8SjqJOXUabMfG4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.282 [XNIO-1 task-2] OEQYo6o8SjqJOXUabMfG4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.287 [XNIO-1 task-2] LyucGXWtRlmgtu5KdDwoUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:44.287 [XNIO-1 task-2] LyucGXWtRlmgtu5KdDwoUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.288 [XNIO-1 task-2] LyucGXWtRlmgtu5KdDwoUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.288 [XNIO-1 task-2] LyucGXWtRlmgtu5KdDwoUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:44.288 [XNIO-1 task-2] LyucGXWtRlmgtu5KdDwoUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:44.290 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.291 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:bb7c8f39 +16:29:44.309 [XNIO-1 task-2] DUA5Rs9lQjmdTbaKmasIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.309 [XNIO-1 task-2] DUA5Rs9lQjmdTbaKmasIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.310 [XNIO-1 task-2] DUA5Rs9lQjmdTbaKmasIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.310 [XNIO-1 task-2] DUA5Rs9lQjmdTbaKmasIzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.310 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0d34ccaf +16:29:44.310 [XNIO-1 task-2] DUA5Rs9lQjmdTbaKmasIzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.315 [XNIO-1 task-2] JuNgCJPpSBiqKsBvyXu4IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.315 [XNIO-1 task-2] JuNgCJPpSBiqKsBvyXu4IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.316 [XNIO-1 task-2] JuNgCJPpSBiqKsBvyXu4IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.317 [XNIO-1 task-2] JuNgCJPpSBiqKsBvyXu4IA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.317 [XNIO-1 task-2] JuNgCJPpSBiqKsBvyXu4IA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.318 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:708fcf8d +16:29:44.318 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:db0fc5a4-0a5f-430f-85db-e645ebaf7851 +16:29:44.326 [XNIO-1 task-2] XSJht98dSiWb_hyEEsMZmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.326 [XNIO-1 task-2] XSJht98dSiWb_hyEEsMZmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.326 [XNIO-1 task-2] XSJht98dSiWb_hyEEsMZmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.327 [XNIO-1 task-2] XSJht98dSiWb_hyEEsMZmA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.361 [XNIO-1 task-2] BECe-_7lT3yzFQigPaRDtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401, base path is set to: null +16:29:44.362 [XNIO-1 task-2] BECe-_7lT3yzFQigPaRDtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.362 [XNIO-1 task-2] BECe-_7lT3yzFQigPaRDtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.362 [XNIO-1 task-2] BECe-_7lT3yzFQigPaRDtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401, base path is set to: null +16:29:44.362 [XNIO-1 task-2] BECe-_7lT3yzFQigPaRDtg DEBUG com.networknt.schema.TypeValidator debug - validate( "3c126831-b14f-4371-976a-df0c6134c401", "3c126831-b14f-4371-976a-df0c6134c401", refreshToken) +16:29:44.370 [XNIO-1 task-2] 3xI2iclvQmW4T9ms2jcRkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.370 [XNIO-1 task-2] 3xI2iclvQmW4T9ms2jcRkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.371 [XNIO-1 task-2] 3xI2iclvQmW4T9ms2jcRkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.371 [XNIO-1 task-2] 3xI2iclvQmW4T9ms2jcRkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.371 [XNIO-1 task-2] 3xI2iclvQmW4T9ms2jcRkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:44.372 [XNIO-1 task-2] 3xI2iclvQmW4T9ms2jcRkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3698e587-6ee2-48c0-8597-92e2420e9b05 is not found.","severity":"ERROR"} +16:29:44.377 [XNIO-1 task-2] xp8rpCR0QRe6uZS49HGoYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:44.377 [XNIO-1 task-2] xp8rpCR0QRe6uZS49HGoYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.377 [XNIO-1 task-2] xp8rpCR0QRe6uZS49HGoYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.378 [XNIO-1 task-2] xp8rpCR0QRe6uZS49HGoYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:44.378 [XNIO-1 task-2] xp8rpCR0QRe6uZS49HGoYw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:44.387 [XNIO-1 task-2] FZs7tf-gQGaB3Qs4aoWkLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.387 [XNIO-1 task-2] FZs7tf-gQGaB3Qs4aoWkLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.387 [XNIO-1 task-2] FZs7tf-gQGaB3Qs4aoWkLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.388 [XNIO-1 task-2] FZs7tf-gQGaB3Qs4aoWkLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.388 [XNIO-1 task-2] FZs7tf-gQGaB3Qs4aoWkLg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.398 [XNIO-1 task-2] CZ6iRhNKR_qpoSJ9HBTOkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.399 [XNIO-1 task-2] CZ6iRhNKR_qpoSJ9HBTOkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.399 [XNIO-1 task-2] CZ6iRhNKR_qpoSJ9HBTOkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.399 [XNIO-1 task-2] CZ6iRhNKR_qpoSJ9HBTOkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.399 [XNIO-1 task-2] CZ6iRhNKR_qpoSJ9HBTOkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.405 [XNIO-1 task-2] OqPjnUBiR2ioWMIzei8pJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:44.405 [XNIO-1 task-2] OqPjnUBiR2ioWMIzei8pJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.405 [XNIO-1 task-2] OqPjnUBiR2ioWMIzei8pJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.405 [XNIO-1 task-2] OqPjnUBiR2ioWMIzei8pJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:44.405 [XNIO-1 task-2] OqPjnUBiR2ioWMIzei8pJw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:44.423 [XNIO-1 task-2] WAAJD4DkSbSPb2_DFjh66w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.423 [XNIO-1 task-2] WAAJD4DkSbSPb2_DFjh66w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.423 [XNIO-1 task-2] WAAJD4DkSbSPb2_DFjh66w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.424 [XNIO-1 task-2] WAAJD4DkSbSPb2_DFjh66w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.424 [XNIO-1 task-2] WAAJD4DkSbSPb2_DFjh66w DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:44.424 [XNIO-1 task-2] WAAJD4DkSbSPb2_DFjh66w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3698e587-6ee2-48c0-8597-92e2420e9b05 is not found.","severity":"ERROR"} +16:29:44.431 [XNIO-1 task-2] XXw1GOzIR8q0JkZwR6Y94g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:44.432 [XNIO-1 task-2] XXw1GOzIR8q0JkZwR6Y94g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.432 [XNIO-1 task-2] XXw1GOzIR8q0JkZwR6Y94g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.432 [XNIO-1 task-2] XXw1GOzIR8q0JkZwR6Y94g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:44.432 [XNIO-1 task-2] XXw1GOzIR8q0JkZwR6Y94g DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:44.434 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:423a5c26 +16:29:44.436 [XNIO-1 task-2] XXw1GOzIR8q0JkZwR6Y94g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} +16:29:44.441 [XNIO-1 task-2] iMrA20rQQp-FZ3Gx4ckyIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.442 [XNIO-1 task-2] iMrA20rQQp-FZ3Gx4ckyIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.444 [XNIO-1 task-2] iMrA20rQQp-FZ3Gx4ckyIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.444 [XNIO-1 task-2] iMrA20rQQp-FZ3Gx4ckyIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.454 [XNIO-1 task-2] sgLfylb0Q0S3fg_nJL_PcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.455 [XNIO-1 task-2] sgLfylb0Q0S3fg_nJL_PcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.455 [XNIO-1 task-2] sgLfylb0Q0S3fg_nJL_PcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.455 [XNIO-1 task-2] sgLfylb0Q0S3fg_nJL_PcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.456 [XNIO-1 task-2] sgLfylb0Q0S3fg_nJL_PcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:44.456 [XNIO-1 task-2] sgLfylb0Q0S3fg_nJL_PcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3698e587-6ee2-48c0-8597-92e2420e9b05 is not found.","severity":"ERROR"} +16:29:44.462 [XNIO-1 task-2] WKbEScwRS7eADILmf8T1qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:44.462 [XNIO-1 task-2] WKbEScwRS7eADILmf8T1qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.462 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:63fa6a03-912c-4d49-bb6f-79606b2f5eec +16:29:44.463 [XNIO-1 task-2] WKbEScwRS7eADILmf8T1qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:44.465 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:63fa6a03-912c-4d49-bb6f-79606b2f5eec +16:29:44.465 [XNIO-1 task-2] WKbEScwRS7eADILmf8T1qg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:44.466 [XNIO-1 task-2] WKbEScwRS7eADILmf8T1qg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} +16:29:44.473 [XNIO-1 task-2] SNxXYL_IQHCSv-Vc7R2F6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.473 [XNIO-1 task-2] SNxXYL_IQHCSv-Vc7R2F6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.474 [XNIO-1 task-2] SNxXYL_IQHCSv-Vc7R2F6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.474 [XNIO-1 task-2] SNxXYL_IQHCSv-Vc7R2F6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.489 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:63fa6a03-912c-4d49-bb6f-79606b2f5eec +16:29:44.493 [XNIO-1 task-2] hRB7eISkQVyCo4gl5OJLRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.494 [XNIO-1 task-2] hRB7eISkQVyCo4gl5OJLRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.494 [XNIO-1 task-2] hRB7eISkQVyCo4gl5OJLRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.494 [XNIO-1 task-2] hRB7eISkQVyCo4gl5OJLRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.508 [XNIO-1 task-2] c9guc0VwR8yEgP-QrkXmlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.509 [XNIO-1 task-2] c9guc0VwR8yEgP-QrkXmlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.509 [XNIO-1 task-2] c9guc0VwR8yEgP-QrkXmlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.510 [XNIO-1 task-2] c9guc0VwR8yEgP-QrkXmlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.510 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f0a6e1c6 +16:29:44.510 [XNIO-1 task-2] c9guc0VwR8yEgP-QrkXmlw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.512 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0a6e1c6 +16:29:44.516 [XNIO-1 task-2] kA22up29SOmrpnaAhLmxFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.519 [XNIO-1 task-2] kA22up29SOmrpnaAhLmxFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.519 [XNIO-1 task-2] kA22up29SOmrpnaAhLmxFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.520 [XNIO-1 task-2] kA22up29SOmrpnaAhLmxFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.520 [XNIO-1 task-2] kA22up29SOmrpnaAhLmxFA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.545 [XNIO-1 task-2] q2kvX8HBRLOfFethD15gRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.545 [XNIO-1 task-2] q2kvX8HBRLOfFethD15gRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.546 [XNIO-1 task-2] q2kvX8HBRLOfFethD15gRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.546 [XNIO-1 task-2] q2kvX8HBRLOfFethD15gRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.546 [XNIO-1 task-2] q2kvX8HBRLOfFethD15gRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:44.550 [XNIO-1 task-2] j4ANctQuTKadQAWwGqpiIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.554 [XNIO-1 task-2] j4ANctQuTKadQAWwGqpiIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.556 [XNIO-1 task-2] j4ANctQuTKadQAWwGqpiIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.556 [XNIO-1 task-2] j4ANctQuTKadQAWwGqpiIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.556 [XNIO-1 task-2] j4ANctQuTKadQAWwGqpiIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.565 [XNIO-1 task-2] 4SyGCD4qRSawdd-ipxr3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.566 [XNIO-1 task-2] 4SyGCD4qRSawdd-ipxr3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.566 [XNIO-1 task-2] 4SyGCD4qRSawdd-ipxr3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.567 [XNIO-1 task-2] 4SyGCD4qRSawdd-ipxr3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.568 [XNIO-1 task-2] 4SyGCD4qRSawdd-ipxr3MA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.570 [XNIO-1 task-2] 4SyGCD4qRSawdd-ipxr3MA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:44.573 [XNIO-1 task-2] jnfQ4j5XQWOjEnVHasilkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.573 [XNIO-1 task-2] jnfQ4j5XQWOjEnVHasilkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.574 [XNIO-1 task-2] jnfQ4j5XQWOjEnVHasilkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.574 [XNIO-1 task-2] jnfQ4j5XQWOjEnVHasilkw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.575 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3586d42e +16:29:44.606 [XNIO-1 task-2] kcJvVixWTTaV85tVvnU0Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.606 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f0a6e1c6 +16:29:44.606 [XNIO-1 task-2] kcJvVixWTTaV85tVvnU0Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.606 [XNIO-1 task-2] kcJvVixWTTaV85tVvnU0Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.607 [XNIO-1 task-2] kcJvVixWTTaV85tVvnU0Vg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.608 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f0a6e1c6 +16:29:44.618 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:708fcf8d +16:29:44.623 [XNIO-1 task-2] 61UYVRkfSqye81rZGyMuYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.623 [XNIO-1 task-2] 61UYVRkfSqye81rZGyMuYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.623 [XNIO-1 task-2] 61UYVRkfSqye81rZGyMuYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.624 [XNIO-1 task-2] 61UYVRkfSqye81rZGyMuYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.640 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:446c03c3 +16:29:44.655 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3586d42e +16:29:44.659 [XNIO-1 task-2] yY71-D-JRUWQBDctbwh6HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.660 [XNIO-1 task-2] yY71-D-JRUWQBDctbwh6HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.660 [XNIO-1 task-2] yY71-D-JRUWQBDctbwh6HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.660 [XNIO-1 task-2] yY71-D-JRUWQBDctbwh6HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.661 [XNIO-1 task-2] yY71-D-JRUWQBDctbwh6HQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.669 [XNIO-1 task-2] mL12vbloSd6B2q3xXwsnEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.669 [XNIO-1 task-2] mL12vbloSd6B2q3xXwsnEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.669 [XNIO-1 task-2] mL12vbloSd6B2q3xXwsnEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.669 [XNIO-1 task-2] mL12vbloSd6B2q3xXwsnEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.673 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3586d42e +16:29:44.678 [XNIO-1 task-2] FL5pbAuzSEOFjLgIM_YJLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.678 [XNIO-1 task-2] FL5pbAuzSEOFjLgIM_YJLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.678 [XNIO-1 task-2] FL5pbAuzSEOFjLgIM_YJLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.678 [XNIO-1 task-2] FL5pbAuzSEOFjLgIM_YJLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.681 [XNIO-1 task-2] FL5pbAuzSEOFjLgIM_YJLw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:44.681 [XNIO-1 task-2] FL5pbAuzSEOFjLgIM_YJLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:44.689 [XNIO-1 task-2] -LpLKQoYSRuykiMj_qWZqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.690 [XNIO-1 task-2] -LpLKQoYSRuykiMj_qWZqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.690 [XNIO-1 task-2] -LpLKQoYSRuykiMj_qWZqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.690 [XNIO-1 task-2] -LpLKQoYSRuykiMj_qWZqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.690 [XNIO-1 task-2] -LpLKQoYSRuykiMj_qWZqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.692 [XNIO-1 task-2] -LpLKQoYSRuykiMj_qWZqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:44.697 [XNIO-1 task-2] LZpjKlGCSGe0m1lOHQF8MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1224e111-c805-4160-a665-e536a4ebc738 +16:29:44.697 [XNIO-1 task-2] LZpjKlGCSGe0m1lOHQF8MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.698 [XNIO-1 task-2] LZpjKlGCSGe0m1lOHQF8MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.698 [XNIO-1 task-2] LZpjKlGCSGe0m1lOHQF8MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1224e111-c805-4160-a665-e536a4ebc738 +16:29:44.698 [XNIO-1 task-2] LZpjKlGCSGe0m1lOHQF8MA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1224e111-c805-4160-a665-e536a4ebc738 +16:29:44.708 [XNIO-1 task-2] xyIqMC2eQa6qw4OGh51YJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.711 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d2e3630a-d817-4b49-ae03-6acfcc374ae4 +16:29:44.711 [XNIO-1 task-2] xyIqMC2eQa6qw4OGh51YJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.712 [XNIO-1 task-2] xyIqMC2eQa6qw4OGh51YJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.712 [XNIO-1 task-2] xyIqMC2eQa6qw4OGh51YJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:44.712 [XNIO-1 task-2] xyIqMC2eQa6qw4OGh51YJA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:44.713 [XNIO-1 task-2] xyIqMC2eQa6qw4OGh51YJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:44.719 [XNIO-1 task-2] YF--3IIESaStDYUnbCO25w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.719 [XNIO-1 task-2] YF--3IIESaStDYUnbCO25w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.719 [XNIO-1 task-2] YF--3IIESaStDYUnbCO25w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.720 [XNIO-1 task-2] YF--3IIESaStDYUnbCO25w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.721 [XNIO-1 task-2] YF--3IIESaStDYUnbCO25w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:44.725 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:446c03c3 +16:29:44.729 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:446c03c3 +16:29:44.730 [XNIO-1 task-2] Kq8W9K1xQzW8EjE8BUpskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.734 [XNIO-1 task-2] Kq8W9K1xQzW8EjE8BUpskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.734 [XNIO-1 task-2] Kq8W9K1xQzW8EjE8BUpskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.734 [XNIO-1 task-2] Kq8W9K1xQzW8EjE8BUpskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.735 [XNIO-1 task-2] Kq8W9K1xQzW8EjE8BUpskw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.738 [XNIO-1 task-2] 24LHaU47SZinUlWWN8sd8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.738 [XNIO-1 task-2] 24LHaU47SZinUlWWN8sd8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.738 [XNIO-1 task-2] 24LHaU47SZinUlWWN8sd8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.739 [XNIO-1 task-2] 24LHaU47SZinUlWWN8sd8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.769 [XNIO-1 task-2] JjjYXCJFQ12cMKjQReS2gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.769 [XNIO-1 task-2] JjjYXCJFQ12cMKjQReS2gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.769 [XNIO-1 task-2] JjjYXCJFQ12cMKjQReS2gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.769 [XNIO-1 task-2] JjjYXCJFQ12cMKjQReS2gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:44.770 [XNIO-1 task-2] JjjYXCJFQ12cMKjQReS2gA DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:44.770 [XNIO-1 task-2] JjjYXCJFQ12cMKjQReS2gA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3698e587-6ee2-48c0-8597-92e2420e9b05 is not found.","severity":"ERROR"} +16:29:44.774 [XNIO-1 task-2] _8ICC8rzTz23xAG6LxtWAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.774 [XNIO-1 task-2] _8ICC8rzTz23xAG6LxtWAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.775 [XNIO-1 task-2] _8ICC8rzTz23xAG6LxtWAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.776 [XNIO-1 task-2] _8ICC8rzTz23xAG6LxtWAg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.787 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:708fcf8d +16:29:44.790 [XNIO-1 task-2] 9DjLL5pdQYm1ru5hHoDQJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401, base path is set to: null +16:29:44.790 [XNIO-1 task-2] 9DjLL5pdQYm1ru5hHoDQJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.790 [XNIO-1 task-2] 9DjLL5pdQYm1ru5hHoDQJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.790 [XNIO-1 task-2] 9DjLL5pdQYm1ru5hHoDQJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401, base path is set to: null +16:29:44.791 [XNIO-1 task-2] 9DjLL5pdQYm1ru5hHoDQJg DEBUG com.networknt.schema.TypeValidator debug - validate( "3c126831-b14f-4371-976a-df0c6134c401", "3c126831-b14f-4371-976a-df0c6134c401", refreshToken) +16:29:44.807 [XNIO-1 task-2] bt9b0c6ERn6IbbvEQD8vAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.808 [XNIO-1 task-2] bt9b0c6ERn6IbbvEQD8vAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.808 [XNIO-1 task-2] bt9b0c6ERn6IbbvEQD8vAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.809 [XNIO-1 task-2] bt9b0c6ERn6IbbvEQD8vAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.809 [XNIO-1 task-2] bt9b0c6ERn6IbbvEQD8vAw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.824 [XNIO-1 task-2] lk9OCXSxTQKCTRDjeXzi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.824 [XNIO-1 task-2] lk9OCXSxTQKCTRDjeXzi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.824 [XNIO-1 task-2] lk9OCXSxTQKCTRDjeXzi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.824 [XNIO-1 task-2] lk9OCXSxTQKCTRDjeXzi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.825 [XNIO-1 task-2] lk9OCXSxTQKCTRDjeXzi1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.828 [XNIO-1 task-2] sXKBe5v6S0u0HX_tgstYaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.828 [XNIO-1 task-2] sXKBe5v6S0u0HX_tgstYaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.829 [XNIO-1 task-2] sXKBe5v6S0u0HX_tgstYaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.829 [XNIO-1 task-2] sXKBe5v6S0u0HX_tgstYaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.829 [XNIO-1 task-2] sXKBe5v6S0u0HX_tgstYaw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.843 [XNIO-1 task-2] nynJBptMSQqrnWKC7fvAxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.843 [XNIO-1 task-2] nynJBptMSQqrnWKC7fvAxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.844 [XNIO-1 task-2] nynJBptMSQqrnWKC7fvAxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.844 [XNIO-1 task-2] nynJBptMSQqrnWKC7fvAxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.852 [XNIO-1 task-2] hbYzGT66QS6sftYMRLeo5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.852 [XNIO-1 task-2] hbYzGT66QS6sftYMRLeo5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.852 [XNIO-1 task-2] hbYzGT66QS6sftYMRLeo5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.853 [XNIO-1 task-2] hbYzGT66QS6sftYMRLeo5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.853 [XNIO-1 task-2] hbYzGT66QS6sftYMRLeo5A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.862 [XNIO-1 task-2] TMhtkiLoS3CNn0klkas6LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.862 [XNIO-1 task-2] TMhtkiLoS3CNn0klkas6LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.862 [XNIO-1 task-2] TMhtkiLoS3CNn0klkas6LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.862 [XNIO-1 task-2] TMhtkiLoS3CNn0klkas6LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.863 [XNIO-1 task-2] TMhtkiLoS3CNn0klkas6LQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.876 [XNIO-1 task-2] 6nCWM3rZT2uJkBuSop1qXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.876 [XNIO-1 task-2] 6nCWM3rZT2uJkBuSop1qXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.876 [XNIO-1 task-2] 6nCWM3rZT2uJkBuSop1qXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.877 [XNIO-1 task-2] 6nCWM3rZT2uJkBuSop1qXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.877 [XNIO-1 task-2] 6nCWM3rZT2uJkBuSop1qXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.884 [XNIO-1 task-2] -fO9fbWcRmaQX55Yupy8zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.884 [XNIO-1 task-2] -fO9fbWcRmaQX55Yupy8zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.884 [XNIO-1 task-2] -fO9fbWcRmaQX55Yupy8zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.885 [XNIO-1 task-2] -fO9fbWcRmaQX55Yupy8zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.885 [XNIO-1 task-2] -fO9fbWcRmaQX55Yupy8zg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.912 [XNIO-1 task-2] 6cs1fRDyTKOijCGzWKuy0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.912 [XNIO-1 task-2] 6cs1fRDyTKOijCGzWKuy0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.912 [XNIO-1 task-2] 6cs1fRDyTKOijCGzWKuy0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.913 [XNIO-1 task-2] 6cs1fRDyTKOijCGzWKuy0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.913 [XNIO-1 task-2] 6cs1fRDyTKOijCGzWKuy0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.916 [XNIO-1 task-2] 0n-Q9zpfQkqJxFVgFVVgWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f7be26d-8db5-45be-80c2-7205bda1215b, base path is set to: null +16:29:44.916 [XNIO-1 task-2] 0n-Q9zpfQkqJxFVgFVVgWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.916 [XNIO-1 task-2] 0n-Q9zpfQkqJxFVgFVVgWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:44.917 [XNIO-1 task-2] 0n-Q9zpfQkqJxFVgFVVgWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f7be26d-8db5-45be-80c2-7205bda1215b, base path is set to: null +16:29:44.918 [XNIO-1 task-2] 0n-Q9zpfQkqJxFVgFVVgWg DEBUG com.networknt.schema.TypeValidator debug - validate( "5f7be26d-8db5-45be-80c2-7205bda1215b", "5f7be26d-8db5-45be-80c2-7205bda1215b", refreshToken) +16:29:44.925 [XNIO-1 task-2] 1j-Td_SiTyqR6Pti1-voBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.925 [XNIO-1 task-2] 1j-Td_SiTyqR6Pti1-voBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.925 [XNIO-1 task-2] 1j-Td_SiTyqR6Pti1-voBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.926 [XNIO-1 task-2] 1j-Td_SiTyqR6Pti1-voBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.926 [XNIO-1 task-2] 1j-Td_SiTyqR6Pti1-voBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.945 [XNIO-1 task-2] v5wrCtdVSu--CXwb8IICig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.945 [XNIO-1 task-2] v5wrCtdVSu--CXwb8IICig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.945 [XNIO-1 task-2] v5wrCtdVSu--CXwb8IICig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.945 [XNIO-1 task-2] v5wrCtdVSu--CXwb8IICig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.946 [XNIO-1 task-2] v5wrCtdVSu--CXwb8IICig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3c126831-b14f-4371-976a-df0c6134c401 +16:29:44.950 [XNIO-1 task-2] bFsb4dBnQNWxs01bORlvng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.950 [XNIO-1 task-2] bFsb4dBnQNWxs01bORlvng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.950 [XNIO-1 task-2] bFsb4dBnQNWxs01bORlvng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.951 [XNIO-1 task-2] bFsb4dBnQNWxs01bORlvng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.951 [XNIO-1 task-2] bFsb4dBnQNWxs01bORlvng DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.955 [XNIO-1 task-2] Oi7sDbnRQICM9TNPSVoppg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.955 [XNIO-1 task-2] Oi7sDbnRQICM9TNPSVoppg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.955 [XNIO-1 task-2] Oi7sDbnRQICM9TNPSVoppg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.956 [XNIO-1 task-2] Oi7sDbnRQICM9TNPSVoppg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.957 [XNIO-1 task-2] Oi7sDbnRQICM9TNPSVoppg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:44.961 [XNIO-1 task-2] W3tt0QHQSoONH_t0AXgIkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.961 [XNIO-1 task-2] W3tt0QHQSoONH_t0AXgIkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.961 [XNIO-1 task-2] W3tt0QHQSoONH_t0AXgIkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.962 [XNIO-1 task-2] W3tt0QHQSoONH_t0AXgIkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.962 [XNIO-1 task-2] W3tt0QHQSoONH_t0AXgIkw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:44.973 [XNIO-1 task-2] UMrT_NCdTUe1lIOeHKW2ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.973 [XNIO-1 task-2] UMrT_NCdTUe1lIOeHKW2ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:44.974 [XNIO-1 task-2] UMrT_NCdTUe1lIOeHKW2ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:44.974 [XNIO-1 task-2] UMrT_NCdTUe1lIOeHKW2ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.974 [XNIO-1 task-2] UMrT_NCdTUe1lIOeHKW2ow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5f7be26d-8db5-45be-80c2-7205bda1215b +16:29:44.981 [XNIO-1 task-2] gmn1Cq8ITwCDfw9LxXYgkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.981 [XNIO-1 task-2] gmn1Cq8ITwCDfw9LxXYgkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:44.981 [XNIO-1 task-2] gmn1Cq8ITwCDfw9LxXYgkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:44.982 [XNIO-1 task-2] gmn1Cq8ITwCDfw9LxXYgkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.982 [XNIO-1 task-2] gmn1Cq8ITwCDfw9LxXYgkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.017 [XNIO-1 task-2] 5Sc6qrTRRQC6igZGAlLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.018 [XNIO-1 task-2] 5Sc6qrTRRQC6igZGAlLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.018 [XNIO-1 task-2] 5Sc6qrTRRQC6igZGAlLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.018 [XNIO-1 task-2] 5Sc6qrTRRQC6igZGAlLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.019 [XNIO-1 task-2] 5Sc6qrTRRQC6igZGAlLdWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.033 [XNIO-1 task-2] 8QTdXGyATumm40KXQVOtvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.034 [XNIO-1 task-2] 8QTdXGyATumm40KXQVOtvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.034 [XNIO-1 task-2] 8QTdXGyATumm40KXQVOtvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.034 [XNIO-1 task-2] 8QTdXGyATumm40KXQVOtvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.034 [XNIO-1 task-2] 8QTdXGyATumm40KXQVOtvg DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.040 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0d34ccaf +16:29:45.043 [XNIO-1 task-2] wU5BOzN3QuunLx6DLG72RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb65860e-8215-4e80-b0e6-776fa0ae27f3 +16:29:45.043 [XNIO-1 task-2] wU5BOzN3QuunLx6DLG72RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.043 [XNIO-1 task-2] wU5BOzN3QuunLx6DLG72RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.043 [XNIO-1 task-2] wU5BOzN3QuunLx6DLG72RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb65860e-8215-4e80-b0e6-776fa0ae27f3 +16:29:45.044 [XNIO-1 task-2] wU5BOzN3QuunLx6DLG72RA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fb65860e-8215-4e80-b0e6-776fa0ae27f3 +16:29:45.051 [XNIO-1 task-2] uTUFR0n3TBq5Zv8En9K1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.051 [XNIO-1 task-2] uTUFR0n3TBq5Zv8En9K1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.051 [XNIO-1 task-2] uTUFR0n3TBq5Zv8En9K1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.052 [XNIO-1 task-2] uTUFR0n3TBq5Zv8En9K1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.052 [XNIO-1 task-2] uTUFR0n3TBq5Zv8En9K1MA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.055 [XNIO-1 task-2] vJH4QTEKT5ueB0_7CwAaaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.055 [XNIO-1 task-2] vJH4QTEKT5ueB0_7CwAaaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.055 [XNIO-1 task-2] vJH4QTEKT5ueB0_7CwAaaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.056 [XNIO-1 task-2] vJH4QTEKT5ueB0_7CwAaaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.056 [XNIO-1 task-2] vJH4QTEKT5ueB0_7CwAaaA DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.069 [XNIO-1 task-2] N9lLOzWoREOAkdVAOM0FPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.069 [XNIO-1 task-2] N9lLOzWoREOAkdVAOM0FPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.069 [XNIO-1 task-2] N9lLOzWoREOAkdVAOM0FPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.069 [XNIO-1 task-2] N9lLOzWoREOAkdVAOM0FPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.070 [XNIO-1 task-2] N9lLOzWoREOAkdVAOM0FPg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.084 [XNIO-1 task-2] OJRYxN9tQyCT36jEeo2oJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.084 [XNIO-1 task-2] OJRYxN9tQyCT36jEeo2oJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.084 [XNIO-1 task-2] OJRYxN9tQyCT36jEeo2oJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.084 [XNIO-1 task-2] OJRYxN9tQyCT36jEeo2oJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.085 [XNIO-1 task-2] OJRYxN9tQyCT36jEeo2oJA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.095 [XNIO-1 task-2] a0hxHPW8QRm5Sc_Xbw_8FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.095 [XNIO-1 task-2] a0hxHPW8QRm5Sc_Xbw_8FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.095 [XNIO-1 task-2] a0hxHPW8QRm5Sc_Xbw_8FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.095 [XNIO-1 task-2] a0hxHPW8QRm5Sc_Xbw_8FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.096 [XNIO-1 task-2] a0hxHPW8QRm5Sc_Xbw_8FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.098 [XNIO-1 task-2] a0hxHPW8QRm5Sc_Xbw_8FQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token faf6d92e-fc1a-4754-97ed-5cdc01cd8419 is not found.","severity":"ERROR"} +16:29:45.106 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:708fcf8d +16:29:45.108 [XNIO-1 task-2] JJeBki9bQJORyFfxfM2f1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.108 [XNIO-1 task-2] JJeBki9bQJORyFfxfM2f1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.108 [XNIO-1 task-2] JJeBki9bQJORyFfxfM2f1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.108 [XNIO-1 task-2] JJeBki9bQJORyFfxfM2f1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.109 [XNIO-1 task-2] JJeBki9bQJORyFfxfM2f1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.115 [XNIO-1 task-2] lcoAUodZQeyssF5BjFUJgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.116 [XNIO-1 task-2] lcoAUodZQeyssF5BjFUJgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.116 [XNIO-1 task-2] lcoAUodZQeyssF5BjFUJgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.117 [XNIO-1 task-2] lcoAUodZQeyssF5BjFUJgg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.117 [XNIO-1 task-2] lcoAUodZQeyssF5BjFUJgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.132 [XNIO-1 task-2] XZuIja4vTlu61Ts-38R81w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.133 [XNIO-1 task-2] XZuIja4vTlu61Ts-38R81w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.133 [XNIO-1 task-2] XZuIja4vTlu61Ts-38R81w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.133 [XNIO-1 task-2] XZuIja4vTlu61Ts-38R81w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.134 [XNIO-1 task-2] XZuIja4vTlu61Ts-38R81w DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.135 [XNIO-1 task-2] XZuIja4vTlu61Ts-38R81w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token faf6d92e-fc1a-4754-97ed-5cdc01cd8419 is not found.","severity":"ERROR"} +16:29:45.138 [XNIO-1 task-2] XOvOdcC7QXC5i8klkEC-nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.138 [XNIO-1 task-2] XOvOdcC7QXC5i8klkEC-nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.138 [XNIO-1 task-2] XOvOdcC7QXC5i8klkEC-nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.139 [XNIO-1 task-2] XOvOdcC7QXC5i8klkEC-nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.139 [XNIO-1 task-2] XOvOdcC7QXC5i8klkEC-nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.139 [XNIO-1 task-2] XOvOdcC7QXC5i8klkEC-nQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token faf6d92e-fc1a-4754-97ed-5cdc01cd8419 is not found.","severity":"ERROR"} +16:29:45.145 [XNIO-1 task-2] Q35UuR7_RESkBxvHkrVjTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.145 [XNIO-1 task-2] Q35UuR7_RESkBxvHkrVjTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.145 [XNIO-1 task-2] Q35UuR7_RESkBxvHkrVjTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.145 [XNIO-1 task-2] Q35UuR7_RESkBxvHkrVjTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.146 [XNIO-1 task-2] Q35UuR7_RESkBxvHkrVjTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.149 [XNIO-1 task-2] I2Q8KlAvSqSLUSI22s5d_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.149 [XNIO-1 task-2] I2Q8KlAvSqSLUSI22s5d_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.149 [XNIO-1 task-2] I2Q8KlAvSqSLUSI22s5d_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.149 [XNIO-1 task-2] I2Q8KlAvSqSLUSI22s5d_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.150 [XNIO-1 task-2] I2Q8KlAvSqSLUSI22s5d_A DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.150 [XNIO-1 task-2] I2Q8KlAvSqSLUSI22s5d_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.152 [XNIO-1 task-2] 6bz2owgeQ5CGsfyvm7Woog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.152 [XNIO-1 task-2] 6bz2owgeQ5CGsfyvm7Woog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.152 [XNIO-1 task-2] 6bz2owgeQ5CGsfyvm7Woog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.153 [XNIO-1 task-2] 6bz2owgeQ5CGsfyvm7Woog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.172 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a093136d +16:29:45.174 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a093136d +16:29:45.176 [XNIO-1 task-2] dzXXY467RUmSFvO2kcLs0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.176 [XNIO-1 task-2] dzXXY467RUmSFvO2kcLs0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.176 [XNIO-1 task-2] dzXXY467RUmSFvO2kcLs0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.176 [XNIO-1 task-2] dzXXY467RUmSFvO2kcLs0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.186 [XNIO-1 task-2] JiixbrPGSYqHQI95J_Y0wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.186 [XNIO-1 task-2] JiixbrPGSYqHQI95J_Y0wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.186 [XNIO-1 task-2] JiixbrPGSYqHQI95J_Y0wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.187 [XNIO-1 task-2] JiixbrPGSYqHQI95J_Y0wA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.187 [XNIO-1 task-2] JiixbrPGSYqHQI95J_Y0wA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.199 [XNIO-1 task-2] u1je080SQpWiPat6AD86sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.199 [XNIO-1 task-2] u1je080SQpWiPat6AD86sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.199 [XNIO-1 task-2] u1je080SQpWiPat6AD86sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.200 [XNIO-1 task-2] u1je080SQpWiPat6AD86sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.200 [XNIO-1 task-2] u1je080SQpWiPat6AD86sA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.209 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a7f850a5-fac3-4006-a67c-cc50a52fa69d +16:29:45.209 [XNIO-1 task-2] 3cH8-B24Q2ayy-XFJBCjmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.210 [XNIO-1 task-2] 3cH8-B24Q2ayy-XFJBCjmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.210 [XNIO-1 task-2] 3cH8-B24Q2ayy-XFJBCjmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.210 [XNIO-1 task-2] 3cH8-B24Q2ayy-XFJBCjmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.211 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bcbc9920-daa2-4522-b439-8cca54258b9a +16:29:45.211 [XNIO-1 task-2] 3cH8-B24Q2ayy-XFJBCjmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.213 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bcbc9920-daa2-4522-b439-8cca54258b9a +16:29:45.240 [XNIO-1 task-2] t-_np5h_SbKWpEOcyPmjbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.240 [XNIO-1 task-2] t-_np5h_SbKWpEOcyPmjbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.243 [XNIO-1 task-2] t-_np5h_SbKWpEOcyPmjbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.244 [XNIO-1 task-2] t-_np5h_SbKWpEOcyPmjbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.246 [XNIO-1 task-2] t-_np5h_SbKWpEOcyPmjbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.278 [XNIO-1 task-2] zhLOZAArSLWMpX6DRuKTdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.278 [XNIO-1 task-2] zhLOZAArSLWMpX6DRuKTdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.278 [XNIO-1 task-2] zhLOZAArSLWMpX6DRuKTdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.279 [XNIO-1 task-2] zhLOZAArSLWMpX6DRuKTdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.279 [XNIO-1 task-2] zhLOZAArSLWMpX6DRuKTdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.279 [XNIO-1 task-2] zhLOZAArSLWMpX6DRuKTdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.282 [XNIO-1 task-2] IKJvIohrTOit0tcmXBXtkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.282 [XNIO-1 task-2] IKJvIohrTOit0tcmXBXtkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.282 [XNIO-1 task-2] IKJvIohrTOit0tcmXBXtkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.282 [XNIO-1 task-2] IKJvIohrTOit0tcmXBXtkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.283 [XNIO-1 task-2] IKJvIohrTOit0tcmXBXtkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.290 [XNIO-1 task-2] KKrdXjjTQLmBzwYoK_qzYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.290 [XNIO-1 task-2] KKrdXjjTQLmBzwYoK_qzYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.290 [XNIO-1 task-2] KKrdXjjTQLmBzwYoK_qzYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.291 [XNIO-1 task-2] KKrdXjjTQLmBzwYoK_qzYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.291 [XNIO-1 task-2] KKrdXjjTQLmBzwYoK_qzYw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.307 [XNIO-1 task-2] UqmAJ8XOQBSE4gNJ6-6U9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.307 [XNIO-1 task-2] UqmAJ8XOQBSE4gNJ6-6U9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.307 [XNIO-1 task-2] UqmAJ8XOQBSE4gNJ6-6U9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.307 [XNIO-1 task-2] UqmAJ8XOQBSE4gNJ6-6U9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.308 [XNIO-1 task-2] UqmAJ8XOQBSE4gNJ6-6U9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.313 [XNIO-1 task-2] zEBZK0-8R6iSH2ejwmAH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.313 [XNIO-1 task-2] zEBZK0-8R6iSH2ejwmAH4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.314 [XNIO-1 task-2] zEBZK0-8R6iSH2ejwmAH4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.314 [XNIO-1 task-2] zEBZK0-8R6iSH2ejwmAH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.314 [XNIO-1 task-2] zEBZK0-8R6iSH2ejwmAH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.314 [XNIO-1 task-2] zEBZK0-8R6iSH2ejwmAH4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.319 [XNIO-1 task-2] -ffkNblNSkeJhan_uw7gpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.319 [XNIO-1 task-2] -ffkNblNSkeJhan_uw7gpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.320 [XNIO-1 task-2] -ffkNblNSkeJhan_uw7gpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.321 [XNIO-1 task-2] -ffkNblNSkeJhan_uw7gpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.332 [XNIO-1 task-2] wYb-ztzCRCmaiCydPcGWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.336 [XNIO-1 task-2] wYb-ztzCRCmaiCydPcGWtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.336 [XNIO-1 task-2] wYb-ztzCRCmaiCydPcGWtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.337 [XNIO-1 task-2] wYb-ztzCRCmaiCydPcGWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.337 [XNIO-1 task-2] wYb-ztzCRCmaiCydPcGWtg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.337 [XNIO-1 task-2] wYb-ztzCRCmaiCydPcGWtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.348 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e1a851ce-c658-41d2-a7c8-72daa624b89c +16:29:45.348 [XNIO-1 task-2] P3pzWxu7RgGc_a-7_nyLpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.349 [XNIO-1 task-2] P3pzWxu7RgGc_a-7_nyLpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.349 [XNIO-1 task-2] P3pzWxu7RgGc_a-7_nyLpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.349 [XNIO-1 task-2] P3pzWxu7RgGc_a-7_nyLpA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.349 [XNIO-1 task-2] P3pzWxu7RgGc_a-7_nyLpA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.359 [XNIO-1 task-2] 10Vs-m76TOK0JkRq8rE3HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.359 [XNIO-1 task-2] 10Vs-m76TOK0JkRq8rE3HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.359 [XNIO-1 task-2] 10Vs-m76TOK0JkRq8rE3HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.359 [XNIO-1 task-2] 10Vs-m76TOK0JkRq8rE3HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.360 [XNIO-1 task-2] 10Vs-m76TOK0JkRq8rE3HA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.366 [XNIO-1 task-2] Ke_vb58uS0KOONP2tD63iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.366 [XNIO-1 task-2] Ke_vb58uS0KOONP2tD63iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.367 [XNIO-1 task-2] Ke_vb58uS0KOONP2tD63iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.367 [XNIO-1 task-2] Ke_vb58uS0KOONP2tD63iw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.376 [XNIO-1 task-2] Ke_vb58uS0KOONP2tD63iw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.389 [XNIO-1 task-2] pWZoNBMMQHKnq030NWe-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.389 [XNIO-1 task-2] pWZoNBMMQHKnq030NWe-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.390 [XNIO-1 task-2] pWZoNBMMQHKnq030NWe-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.390 [XNIO-1 task-2] pWZoNBMMQHKnq030NWe-mA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.396 [XNIO-1 task-2] htk4APU0QomtFCZhVG5zqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.396 [XNIO-1 task-2] htk4APU0QomtFCZhVG5zqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.396 [XNIO-1 task-2] htk4APU0QomtFCZhVG5zqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.397 [XNIO-1 task-2] htk4APU0QomtFCZhVG5zqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.397 [XNIO-1 task-2] htk4APU0QomtFCZhVG5zqw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.406 [XNIO-1 task-2] LufmoVniTgesFB12wAKJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.406 [XNIO-1 task-2] LufmoVniTgesFB12wAKJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.406 [XNIO-1 task-2] LufmoVniTgesFB12wAKJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.407 [XNIO-1 task-2] LufmoVniTgesFB12wAKJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.407 [XNIO-1 task-2] LufmoVniTgesFB12wAKJNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.411 [XNIO-1 task-2] -1BGuEE0TiuTZymrNq_9dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.411 [XNIO-1 task-2] -1BGuEE0TiuTZymrNq_9dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.411 [XNIO-1 task-2] -1BGuEE0TiuTZymrNq_9dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.412 [XNIO-1 task-2] -1BGuEE0TiuTZymrNq_9dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.412 [XNIO-1 task-2] -1BGuEE0TiuTZymrNq_9dw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.412 [XNIO-1 task-2] -1BGuEE0TiuTZymrNq_9dw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.417 [XNIO-1 task-2] qWahj2oiQDSUdiv-_X5IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.417 [XNIO-1 task-2] qWahj2oiQDSUdiv-_X5IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.417 [XNIO-1 task-2] qWahj2oiQDSUdiv-_X5IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.418 [XNIO-1 task-2] qWahj2oiQDSUdiv-_X5IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.418 [XNIO-1 task-2] qWahj2oiQDSUdiv-_X5IWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.428 [XNIO-1 task-2] uvRMElM6T9uGUsq5M3hGUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.428 [XNIO-1 task-2] uvRMElM6T9uGUsq5M3hGUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.428 [XNIO-1 task-2] uvRMElM6T9uGUsq5M3hGUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.429 [XNIO-1 task-2] uvRMElM6T9uGUsq5M3hGUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.430 [XNIO-1 task-2] uvRMElM6T9uGUsq5M3hGUg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.430 [XNIO-1 task-2] uvRMElM6T9uGUsq5M3hGUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.434 [XNIO-1 task-2] E4Df3kuwSt2uKfI7760F_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.434 [XNIO-1 task-2] E4Df3kuwSt2uKfI7760F_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.434 [XNIO-1 task-2] E4Df3kuwSt2uKfI7760F_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.434 [XNIO-1 task-2] E4Df3kuwSt2uKfI7760F_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.435 [XNIO-1 task-2] E4Df3kuwSt2uKfI7760F_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.439 [XNIO-1 task-2] 9YBodEGvQD6cM5LrUp4mHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.439 [XNIO-1 task-2] 9YBodEGvQD6cM5LrUp4mHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.440 [XNIO-1 task-2] 9YBodEGvQD6cM5LrUp4mHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.440 [XNIO-1 task-2] 9YBodEGvQD6cM5LrUp4mHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.440 [XNIO-1 task-2] 9YBodEGvQD6cM5LrUp4mHg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.450 [XNIO-1 task-2] 20XiH4zHT1i_5gHXTKkWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.451 [XNIO-1 task-2] 20XiH4zHT1i_5gHXTKkWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.451 [XNIO-1 task-2] 20XiH4zHT1i_5gHXTKkWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.451 [XNIO-1 task-2] 20XiH4zHT1i_5gHXTKkWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.451 [XNIO-1 task-2] 20XiH4zHT1i_5gHXTKkWUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.457 [XNIO-1 task-2] 9coNf2fHRI2aKyBFCQllpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.457 [XNIO-1 task-2] 9coNf2fHRI2aKyBFCQllpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.457 [XNIO-1 task-2] 9coNf2fHRI2aKyBFCQllpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.458 [XNIO-1 task-2] 9coNf2fHRI2aKyBFCQllpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.458 [XNIO-1 task-2] 9coNf2fHRI2aKyBFCQllpg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:45.459 [XNIO-1 task-2] 9coNf2fHRI2aKyBFCQllpg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} +16:29:45.467 [XNIO-1 task-2] 4B5eCoYmQBS7iNRNdoPvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.468 [XNIO-1 task-2] 4B5eCoYmQBS7iNRNdoPvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.468 [XNIO-1 task-2] 4B5eCoYmQBS7iNRNdoPvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.468 [XNIO-1 task-2] 4B5eCoYmQBS7iNRNdoPvEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.474 [XNIO-1 task-2] 8jyapRPpQkqadBvFAbgt4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.474 [XNIO-1 task-2] 8jyapRPpQkqadBvFAbgt4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.474 [XNIO-1 task-2] 8jyapRPpQkqadBvFAbgt4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.476 [XNIO-1 task-2] 8jyapRPpQkqadBvFAbgt4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.476 [XNIO-1 task-2] 8jyapRPpQkqadBvFAbgt4A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.486 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:708fcf8d +16:29:45.490 [XNIO-1 task-2] GqdjPLD9RTi5j_W614WbZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.490 [XNIO-1 task-2] GqdjPLD9RTi5j_W614WbZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.490 [XNIO-1 task-2] GqdjPLD9RTi5j_W614WbZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.491 [XNIO-1 task-2] GqdjPLD9RTi5j_W614WbZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.497 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a093136d +16:29:45.500 [XNIO-1 task-2] hKO9Cm21Q0qhBdI0UTW-lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.501 [XNIO-1 task-2] hKO9Cm21Q0qhBdI0UTW-lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.501 [XNIO-1 task-2] hKO9Cm21Q0qhBdI0UTW-lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.501 [XNIO-1 task-2] hKO9Cm21Q0qhBdI0UTW-lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.502 [XNIO-1 task-2] hKO9Cm21Q0qhBdI0UTW-lw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:45.502 [XNIO-1 task-2] hKO9Cm21Q0qhBdI0UTW-lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} +16:29:45.510 [XNIO-1 task-2] Ux3QF7nIQjGtvh53jxqCcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.510 [XNIO-1 task-2] Ux3QF7nIQjGtvh53jxqCcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.510 [XNIO-1 task-2] Ux3QF7nIQjGtvh53jxqCcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.510 [XNIO-1 task-2] Ux3QF7nIQjGtvh53jxqCcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.510 [XNIO-1 task-2] Ux3QF7nIQjGtvh53jxqCcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.513 [XNIO-1 task-2] OvQGhOyFTTKgAxZGPheGgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.514 [XNIO-1 task-2] OvQGhOyFTTKgAxZGPheGgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.514 [XNIO-1 task-2] OvQGhOyFTTKgAxZGPheGgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.514 [XNIO-1 task-2] OvQGhOyFTTKgAxZGPheGgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.514 [XNIO-1 task-2] OvQGhOyFTTKgAxZGPheGgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:45.514 [XNIO-1 task-2] OvQGhOyFTTKgAxZGPheGgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} +16:29:45.519 [XNIO-1 task-2] mn8FnGn_SC-xeAQYvWSNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.520 [XNIO-1 task-2] mn8FnGn_SC-xeAQYvWSNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.520 [XNIO-1 task-2] mn8FnGn_SC-xeAQYvWSNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.520 [XNIO-1 task-2] mn8FnGn_SC-xeAQYvWSNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.520 [XNIO-1 task-2] mn8FnGn_SC-xeAQYvWSNoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.524 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ab1033b3-fd65-4a52-922b-f149c3835ad2 +16:29:45.525 [XNIO-1 task-2] 2B7CTdnUQTGzSqHtbE6jOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.540 [XNIO-1 task-2] 2B7CTdnUQTGzSqHtbE6jOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.540 [XNIO-1 task-2] 2B7CTdnUQTGzSqHtbE6jOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.540 [XNIO-1 task-2] 2B7CTdnUQTGzSqHtbE6jOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.540 [XNIO-1 task-2] 2B7CTdnUQTGzSqHtbE6jOA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.541 [XNIO-1 task-2] 2B7CTdnUQTGzSqHtbE6jOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.550 [XNIO-1 task-2] GKNEFMLMSeCxvbVQOwbjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.550 [XNIO-1 task-2] GKNEFMLMSeCxvbVQOwbjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.551 [XNIO-1 task-2] GKNEFMLMSeCxvbVQOwbjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.551 [XNIO-1 task-2] GKNEFMLMSeCxvbVQOwbjzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.559 [XNIO-1 task-2] 4vpjUdIRRquSB3ayVxoW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:45.559 [XNIO-1 task-2] 4vpjUdIRRquSB3ayVxoW3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.560 [XNIO-1 task-2] 4vpjUdIRRquSB3ayVxoW3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.560 [XNIO-1 task-2] 4vpjUdIRRquSB3ayVxoW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:45.560 [XNIO-1 task-2] 4vpjUdIRRquSB3ayVxoW3A DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:45.561 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a093136d +16:29:45.563 [XNIO-1 task-2] 4vpjUdIRRquSB3ayVxoW3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:45.564 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ab1033b3-fd65-4a52-922b-f149c3835ad2 +16:29:45.566 [XNIO-1 task-2] QHpjOenYSb6ZXVbyzITNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.566 [XNIO-1 task-2] QHpjOenYSb6ZXVbyzITNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.566 [XNIO-1 task-2] QHpjOenYSb6ZXVbyzITNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.568 [XNIO-1 task-2] QHpjOenYSb6ZXVbyzITNoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.572 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d613e55f-fd28-4220-b2ec-7677e911e2a0 +16:29:45.573 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d613e55f-fd28-4220-b2ec-7677e911e2a0 +16:29:45.577 [XNIO-1 task-2] X3L4KXRiR1SDWlkqsVasdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.577 [XNIO-1 task-2] X3L4KXRiR1SDWlkqsVasdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.577 [XNIO-1 task-2] X3L4KXRiR1SDWlkqsVasdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.577 [XNIO-1 task-2] X3L4KXRiR1SDWlkqsVasdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.578 [XNIO-1 task-2] X3L4KXRiR1SDWlkqsVasdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.583 [XNIO-1 task-2] IVx7IKBFTmakrT1XfeDk4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:45.583 [XNIO-1 task-2] IVx7IKBFTmakrT1XfeDk4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.583 [XNIO-1 task-2] IVx7IKBFTmakrT1XfeDk4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.584 [XNIO-1 task-2] IVx7IKBFTmakrT1XfeDk4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:45.585 [XNIO-1 task-2] IVx7IKBFTmakrT1XfeDk4g DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:45.585 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:45.593 [XNIO-1 task-2] Fb6n2AdWS6WTHZ9Mtj9Y_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:45.594 [XNIO-1 task-2] Fb6n2AdWS6WTHZ9Mtj9Y_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.594 [XNIO-1 task-2] Fb6n2AdWS6WTHZ9Mtj9Y_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.594 [XNIO-1 task-2] Fb6n2AdWS6WTHZ9Mtj9Y_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:45.594 [XNIO-1 task-2] Fb6n2AdWS6WTHZ9Mtj9Y_A DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:45.595 [XNIO-1 task-2] Fb6n2AdWS6WTHZ9Mtj9Y_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3698e587-6ee2-48c0-8597-92e2420e9b05 is not found.","severity":"ERROR"} +16:29:45.598 [XNIO-1 task-2] b7XDwcycQU2geCVF3Pc_2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.598 [XNIO-1 task-2] b7XDwcycQU2geCVF3Pc_2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.599 [XNIO-1 task-2] b7XDwcycQU2geCVF3Pc_2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.600 [XNIO-1 task-2] b7XDwcycQU2geCVF3Pc_2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.610 [XNIO-1 task-2] XgRRlfuhTuKX1BSg3e8HCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.611 [XNIO-1 task-2] XgRRlfuhTuKX1BSg3e8HCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.611 [XNIO-1 task-2] XgRRlfuhTuKX1BSg3e8HCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.612 [XNIO-1 task-2] XgRRlfuhTuKX1BSg3e8HCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.612 [XNIO-1 task-2] XgRRlfuhTuKX1BSg3e8HCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.623 [XNIO-1 task-2] cX5ZP8RTR06pnzcrDaFkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.623 [XNIO-1 task-2] cX5ZP8RTR06pnzcrDaFkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.623 [XNIO-1 task-2] cX5ZP8RTR06pnzcrDaFkQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.623 [XNIO-1 task-2] cX5ZP8RTR06pnzcrDaFkQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.630 [XNIO-1 task-2] rtowJiSCQ0u-dcrjUREfoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.630 [XNIO-1 task-2] rtowJiSCQ0u-dcrjUREfoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.630 [XNIO-1 task-2] rtowJiSCQ0u-dcrjUREfoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.630 [XNIO-1 task-2] rtowJiSCQ0u-dcrjUREfoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.631 [XNIO-1 task-2] rtowJiSCQ0u-dcrjUREfoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:45.631 [XNIO-1 task-2] rtowJiSCQ0u-dcrjUREfoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} +16:29:45.638 [XNIO-1 task-2] cCQUfmPfRFKmHImG42YjZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.638 [XNIO-1 task-2] cCQUfmPfRFKmHImG42YjZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.638 [XNIO-1 task-2] cCQUfmPfRFKmHImG42YjZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.638 [XNIO-1 task-2] cCQUfmPfRFKmHImG42YjZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.646 [XNIO-1 task-2] 4mxoX8ldTc-97WuO6oFLxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:45.647 [XNIO-1 task-2] 4mxoX8ldTc-97WuO6oFLxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.647 [XNIO-1 task-2] 4mxoX8ldTc-97WuO6oFLxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.647 [XNIO-1 task-2] 4mxoX8ldTc-97WuO6oFLxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05, base path is set to: null +16:29:45.647 [XNIO-1 task-2] 4mxoX8ldTc-97WuO6oFLxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3698e587-6ee2-48c0-8597-92e2420e9b05", "3698e587-6ee2-48c0-8597-92e2420e9b05", refreshToken) +16:29:45.648 [XNIO-1 task-2] 4mxoX8ldTc-97WuO6oFLxQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3698e587-6ee2-48c0-8597-92e2420e9b05 is not found.","severity":"ERROR"} +16:29:45.654 [XNIO-1 task-2] rp_bFp1DSVqyNEqgMAp21w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:45.654 [XNIO-1 task-2] rp_bFp1DSVqyNEqgMAp21w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.654 [XNIO-1 task-2] rp_bFp1DSVqyNEqgMAp21w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.654 [XNIO-1 task-2] rp_bFp1DSVqyNEqgMAp21w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:45.655 [XNIO-1 task-2] rp_bFp1DSVqyNEqgMAp21w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:45.663 [XNIO-1 task-2] k0p_KCpGRrmOymNhViTYuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.664 [XNIO-1 task-2] k0p_KCpGRrmOymNhViTYuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.665 [XNIO-1 task-2] k0p_KCpGRrmOymNhViTYuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.666 [XNIO-1 task-2] k0p_KCpGRrmOymNhViTYuA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.676 [XNIO-1 task-2] oQ67xk5ARUiY1Ts24-wjDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.676 [XNIO-1 task-2] oQ67xk5ARUiY1Ts24-wjDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.676 [XNIO-1 task-2] oQ67xk5ARUiY1Ts24-wjDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.677 [XNIO-1 task-2] oQ67xk5ARUiY1Ts24-wjDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.677 [XNIO-1 task-2] oQ67xk5ARUiY1Ts24-wjDg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.684 [XNIO-1 task-2] vkFgTGHDRn2rJH-gLLLVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.684 [XNIO-1 task-2] vkFgTGHDRn2rJH-gLLLVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.684 [XNIO-1 task-2] vkFgTGHDRn2rJH-gLLLVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.685 [XNIO-1 task-2] vkFgTGHDRn2rJH-gLLLVAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.699 [XNIO-1 task-2] jmudubRcRiW00AFawoFoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.699 [XNIO-1 task-2] jmudubRcRiW00AFawoFoqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.699 [XNIO-1 task-2] jmudubRcRiW00AFawoFoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.700 [XNIO-1 task-2] jmudubRcRiW00AFawoFoqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.700 [XNIO-1 task-2] jmudubRcRiW00AFawoFoqA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.715 [XNIO-1 task-2] RzZuJ8P-SyqVdVCnTCb0hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.715 [XNIO-1 task-2] RzZuJ8P-SyqVdVCnTCb0hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.715 [XNIO-1 task-2] RzZuJ8P-SyqVdVCnTCb0hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.717 [XNIO-1 task-2] RzZuJ8P-SyqVdVCnTCb0hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.717 [XNIO-1 task-2] RzZuJ8P-SyqVdVCnTCb0hQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.722 [XNIO-1 task-2] LkmrKSbnTOuHIqGSKiwiQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.722 [XNIO-1 task-2] LkmrKSbnTOuHIqGSKiwiQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.723 [XNIO-1 task-2] LkmrKSbnTOuHIqGSKiwiQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.723 [XNIO-1 task-2] LkmrKSbnTOuHIqGSKiwiQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.723 [XNIO-1 task-2] LkmrKSbnTOuHIqGSKiwiQg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.733 [XNIO-1 task-2] 1iPHArfiTK6_D6uMFxJj4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.733 [XNIO-1 task-2] 1iPHArfiTK6_D6uMFxJj4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.733 [XNIO-1 task-2] 1iPHArfiTK6_D6uMFxJj4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.733 [XNIO-1 task-2] 1iPHArfiTK6_D6uMFxJj4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.734 [XNIO-1 task-2] 1iPHArfiTK6_D6uMFxJj4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.739 [XNIO-1 task-2] hW5ND8MoQc-sId5_FyUH6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:45.739 [XNIO-1 task-2] hW5ND8MoQc-sId5_FyUH6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.739 [XNIO-1 task-2] hW5ND8MoQc-sId5_FyUH6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.740 [XNIO-1 task-2] hW5ND8MoQc-sId5_FyUH6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:45.741 [XNIO-1 task-2] hW5ND8MoQc-sId5_FyUH6g DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:45.752 [XNIO-1 task-2] WtVHp2k5SdW8Kgb2o69Tig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.752 [XNIO-1 task-2] WtVHp2k5SdW8Kgb2o69Tig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.752 [XNIO-1 task-2] WtVHp2k5SdW8Kgb2o69Tig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.752 [XNIO-1 task-2] WtVHp2k5SdW8Kgb2o69Tig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c, base path is set to: null +16:29:45.753 [XNIO-1 task-2] WtVHp2k5SdW8Kgb2o69Tig DEBUG com.networknt.schema.TypeValidator debug - validate( "c0505771-06f5-4b6f-8e68-a5def85e196c", "c0505771-06f5-4b6f-8e68-a5def85e196c", refreshToken) +16:29:45.753 [XNIO-1 task-2] WtVHp2k5SdW8Kgb2o69Tig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} +16:29:45.760 [XNIO-1 task-2] Q-7oaZx_R6-muGKrDW0fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.760 [XNIO-1 task-2] Q-7oaZx_R6-muGKrDW0fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.760 [XNIO-1 task-2] Q-7oaZx_R6-muGKrDW0fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.760 [XNIO-1 task-2] Q-7oaZx_R6-muGKrDW0fNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.760 [XNIO-1 task-2] Q-7oaZx_R6-muGKrDW0fNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3698e587-6ee2-48c0-8597-92e2420e9b05 +16:29:45.761 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4131a81e-11e4-470e-903f-66ae83ee5b57 +16:29:45.764 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4131a81e-11e4-470e-903f-66ae83ee5b57 +16:29:45.764 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4131a81e-11e4-470e-903f-66ae83ee5b57 +16:29:45.765 [XNIO-1 task-2] kVFNO1QCSYKQoflsZcoK0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.765 [XNIO-1 task-2] kVFNO1QCSYKQoflsZcoK0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.765 [XNIO-1 task-2] kVFNO1QCSYKQoflsZcoK0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.765 [XNIO-1 task-2] kVFNO1QCSYKQoflsZcoK0Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.770 [XNIO-1 task-2] 981oUditRAW8kcdo_iVZTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.770 [XNIO-1 task-2] 981oUditRAW8kcdo_iVZTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.770 [XNIO-1 task-2] 981oUditRAW8kcdo_iVZTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.770 [XNIO-1 task-2] 981oUditRAW8kcdo_iVZTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.771 [XNIO-1 task-2] 981oUditRAW8kcdo_iVZTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.771 [XNIO-1 task-2] 981oUditRAW8kcdo_iVZTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token faf6d92e-fc1a-4754-97ed-5cdc01cd8419 is not found.","severity":"ERROR"} +16:29:45.776 [XNIO-1 task-2] VqA5TbeST_i_2ydzmk-jpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.776 [XNIO-1 task-2] VqA5TbeST_i_2ydzmk-jpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.777 [XNIO-1 task-2] VqA5TbeST_i_2ydzmk-jpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.777 [XNIO-1 task-2] VqA5TbeST_i_2ydzmk-jpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.777 [XNIO-1 task-2] VqA5TbeST_i_2ydzmk-jpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.780 [XNIO-1 task-2] 7zsoyy_wSqCGdpUHKQFlYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.780 [XNIO-1 task-2] 7zsoyy_wSqCGdpUHKQFlYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.780 [XNIO-1 task-2] 7zsoyy_wSqCGdpUHKQFlYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.780 [XNIO-1 task-2] 7zsoyy_wSqCGdpUHKQFlYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.780 [XNIO-1 task-2] 7zsoyy_wSqCGdpUHKQFlYg DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.781 [XNIO-1 task-2] 7zsoyy_wSqCGdpUHKQFlYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token faf6d92e-fc1a-4754-97ed-5cdc01cd8419 is not found.","severity":"ERROR"} +16:29:45.789 [XNIO-1 task-2] l8cIwWX9Q5yJL9Tof7YqEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.789 [XNIO-1 task-2] l8cIwWX9Q5yJL9Tof7YqEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.789 [XNIO-1 task-2] l8cIwWX9Q5yJL9Tof7YqEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.790 [XNIO-1 task-2] l8cIwWX9Q5yJL9Tof7YqEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.800 [XNIO-1 task-2] XGb1v7DNRS2036WoxhFl8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.800 [XNIO-1 task-2] XGb1v7DNRS2036WoxhFl8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.801 [XNIO-1 task-2] XGb1v7DNRS2036WoxhFl8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.801 [XNIO-1 task-2] XGb1v7DNRS2036WoxhFl8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.801 [XNIO-1 task-2] XGb1v7DNRS2036WoxhFl8A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.808 [XNIO-1 task-2] 0mX720Z3SVezqPNqtmQldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.808 [XNIO-1 task-2] 0mX720Z3SVezqPNqtmQldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.808 [XNIO-1 task-2] 0mX720Z3SVezqPNqtmQldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.809 [XNIO-1 task-2] 0mX720Z3SVezqPNqtmQldw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.823 [XNIO-1 task-2] b2rbt3LzRv64cr8hMZoxCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.823 [XNIO-1 task-2] b2rbt3LzRv64cr8hMZoxCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.823 [XNIO-1 task-2] b2rbt3LzRv64cr8hMZoxCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.824 [XNIO-1 task-2] b2rbt3LzRv64cr8hMZoxCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.824 [XNIO-1 task-2] b2rbt3LzRv64cr8hMZoxCA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.831 [XNIO-1 task-2] L-EMoBcLQ-mC-zS89R8-_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.831 [XNIO-1 task-2] L-EMoBcLQ-mC-zS89R8-_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.831 [XNIO-1 task-2] L-EMoBcLQ-mC-zS89R8-_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.831 [XNIO-1 task-2] L-EMoBcLQ-mC-zS89R8-_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.840 [XNIO-1 task-2] MgHUGtiLRZSuHuTRhBgWfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.840 [XNIO-1 task-2] MgHUGtiLRZSuHuTRhBgWfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.840 [XNIO-1 task-2] MgHUGtiLRZSuHuTRhBgWfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.841 [XNIO-1 task-2] MgHUGtiLRZSuHuTRhBgWfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.841 [XNIO-1 task-2] MgHUGtiLRZSuHuTRhBgWfw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.852 [XNIO-1 task-2] r0t8r9hKTDSyfz_84pXArg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.853 [XNIO-1 task-2] r0t8r9hKTDSyfz_84pXArg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.853 [XNIO-1 task-2] r0t8r9hKTDSyfz_84pXArg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.853 [XNIO-1 task-2] r0t8r9hKTDSyfz_84pXArg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.853 [XNIO-1 task-2] r0t8r9hKTDSyfz_84pXArg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.858 [XNIO-1 task-2] ojv5gexUShCi5xyLSymfZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.858 [XNIO-1 task-2] ojv5gexUShCi5xyLSymfZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.858 [XNIO-1 task-2] ojv5gexUShCi5xyLSymfZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.858 [XNIO-1 task-2] ojv5gexUShCi5xyLSymfZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419, base path is set to: null +16:29:45.859 [XNIO-1 task-2] ojv5gexUShCi5xyLSymfZA DEBUG com.networknt.schema.TypeValidator debug - validate( "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", "faf6d92e-fc1a-4754-97ed-5cdc01cd8419", refreshToken) +16:29:45.859 [XNIO-1 task-2] ojv5gexUShCi5xyLSymfZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token faf6d92e-fc1a-4754-97ed-5cdc01cd8419 is not found.","severity":"ERROR"} +16:29:45.870 [XNIO-1 task-2] sZdR3KfATMujiFUmRzKAhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.870 [XNIO-1 task-2] sZdR3KfATMujiFUmRzKAhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.870 [XNIO-1 task-2] sZdR3KfATMujiFUmRzKAhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.870 [XNIO-1 task-2] sZdR3KfATMujiFUmRzKAhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.870 [XNIO-1 task-2] sZdR3KfATMujiFUmRzKAhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.878 [XNIO-1 task-2] kAxUa92XQvaLIc20MeqFUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.878 [XNIO-1 task-2] kAxUa92XQvaLIc20MeqFUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.878 [XNIO-1 task-2] kAxUa92XQvaLIc20MeqFUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.879 [XNIO-1 task-2] kAxUa92XQvaLIc20MeqFUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.879 [XNIO-1 task-2] kAxUa92XQvaLIc20MeqFUg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.886 [XNIO-1 task-2] uMDet8acQbq2tzp5GaplBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.886 [XNIO-1 task-2] uMDet8acQbq2tzp5GaplBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.886 [XNIO-1 task-2] uMDet8acQbq2tzp5GaplBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.886 [XNIO-1 task-2] uMDet8acQbq2tzp5GaplBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.887 [XNIO-1 task-2] uMDet8acQbq2tzp5GaplBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.893 [XNIO-1 task-2] Sw1h39NSRd2cj6s6rh4vvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.893 [XNIO-1 task-2] Sw1h39NSRd2cj6s6rh4vvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.894 [XNIO-1 task-2] Sw1h39NSRd2cj6s6rh4vvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.894 [XNIO-1 task-2] Sw1h39NSRd2cj6s6rh4vvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.894 [XNIO-1 task-2] Sw1h39NSRd2cj6s6rh4vvg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.903 [XNIO-1 task-2] B-gJJYQ_SvucJQSNzilvLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.903 [XNIO-1 task-2] B-gJJYQ_SvucJQSNzilvLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.903 [XNIO-1 task-2] B-gJJYQ_SvucJQSNzilvLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.903 [XNIO-1 task-2] B-gJJYQ_SvucJQSNzilvLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.904 [XNIO-1 task-2] B-gJJYQ_SvucJQSNzilvLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.906 [XNIO-1 task-2] jJNhnXtVQ26e2FToYNb_MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.906 [XNIO-1 task-2] jJNhnXtVQ26e2FToYNb_MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.906 [XNIO-1 task-2] jJNhnXtVQ26e2FToYNb_MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.907 [XNIO-1 task-2] jJNhnXtVQ26e2FToYNb_MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.907 [XNIO-1 task-2] jJNhnXtVQ26e2FToYNb_MQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.918 [XNIO-1 task-2] CEEefMCBR5qtnnEryXOpLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.918 [XNIO-1 task-2] CEEefMCBR5qtnnEryXOpLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.918 [XNIO-1 task-2] CEEefMCBR5qtnnEryXOpLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.918 [XNIO-1 task-2] CEEefMCBR5qtnnEryXOpLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.918 [XNIO-1 task-2] CEEefMCBR5qtnnEryXOpLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.924 [XNIO-1 task-2] BF-dH4JERBG5hgz2FqUdCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.925 [XNIO-1 task-2] BF-dH4JERBG5hgz2FqUdCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.925 [XNIO-1 task-2] BF-dH4JERBG5hgz2FqUdCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.932 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b8aac77f +16:29:45.925 [XNIO-1 task-2] BF-dH4JERBG5hgz2FqUdCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.935 [XNIO-1 task-2] BF-dH4JERBG5hgz2FqUdCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.935 [XNIO-1 task-2] BF-dH4JERBG5hgz2FqUdCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.943 [XNIO-1 task-2] HSjDC2D3QqeHisA_cvRmwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.943 [XNIO-1 task-2] HSjDC2D3QqeHisA_cvRmwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.943 [XNIO-1 task-2] HSjDC2D3QqeHisA_cvRmwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:45.944 [XNIO-1 task-2] HSjDC2D3QqeHisA_cvRmwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.949 [XNIO-1 task-2] HSjDC2D3QqeHisA_cvRmwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:45.959 [XNIO-1 task-2] -0VGLi-aQHKVOkVxqMCPGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.959 [XNIO-1 task-2] -0VGLi-aQHKVOkVxqMCPGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.959 [XNIO-1 task-2] -0VGLi-aQHKVOkVxqMCPGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.960 [XNIO-1 task-2] -0VGLi-aQHKVOkVxqMCPGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.972 [XNIO-1 task-2] WSgi4lHtSO2JSawbjEi3Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.972 [XNIO-1 task-2] WSgi4lHtSO2JSawbjEi3Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.972 [XNIO-1 task-2] WSgi4lHtSO2JSawbjEi3Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.973 [XNIO-1 task-2] WSgi4lHtSO2JSawbjEi3Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:45.973 [XNIO-1 task-2] WSgi4lHtSO2JSawbjEi3Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:45.973 [XNIO-1 task-2] WSgi4lHtSO2JSawbjEi3Fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:45.979 [XNIO-1 task-2] GWXWbawXRiiONsDH4BDlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.980 [XNIO-1 task-2] GWXWbawXRiiONsDH4BDlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:45.980 [XNIO-1 task-2] GWXWbawXRiiONsDH4BDlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:45.980 [XNIO-1 task-2] GWXWbawXRiiONsDH4BDlVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.981 [XNIO-1 task-2] GWXWbawXRiiONsDH4BDlVw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:45.990 [XNIO-1 task-2] Xkbc7Q74RHS-cp4__2GQEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6, base path is set to: null +16:29:45.991 [XNIO-1 task-2] Xkbc7Q74RHS-cp4__2GQEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:45.991 [XNIO-1 task-2] Xkbc7Q74RHS-cp4__2GQEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:45.991 [XNIO-1 task-2] Xkbc7Q74RHS-cp4__2GQEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6, base path is set to: null +16:29:45.991 [XNIO-1 task-2] Xkbc7Q74RHS-cp4__2GQEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "39174f3b-972e-429e-9d7b-178defa3ead6", "39174f3b-972e-429e-9d7b-178defa3ead6", refreshToken) +16:29:46.003 [XNIO-1 task-2] c3jGwyDVR0Ow2joaGEcDDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.003 [XNIO-1 task-2] c3jGwyDVR0Ow2joaGEcDDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.003 [XNIO-1 task-2] c3jGwyDVR0Ow2joaGEcDDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.003 [XNIO-1 task-2] c3jGwyDVR0Ow2joaGEcDDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.005 [XNIO-1 task-2] c3jGwyDVR0Ow2joaGEcDDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.005 [XNIO-1 task-2] c3jGwyDVR0Ow2joaGEcDDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.009 [XNIO-1 task-2] gAgFoquVQ0iH-TcI18q57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.010 [XNIO-1 task-2] gAgFoquVQ0iH-TcI18q57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.010 [XNIO-1 task-2] gAgFoquVQ0iH-TcI18q57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.010 [XNIO-1 task-2] gAgFoquVQ0iH-TcI18q57A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.017 [XNIO-1 task-2] zPOHt756SVqY4551eRUVWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.018 [XNIO-1 task-2] zPOHt756SVqY4551eRUVWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.018 [XNIO-1 task-2] zPOHt756SVqY4551eRUVWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.018 [XNIO-1 task-2] zPOHt756SVqY4551eRUVWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.018 [XNIO-1 task-2] zPOHt756SVqY4551eRUVWA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.025 [XNIO-1 task-2] 7PsVi7mlRfW1Yh9a3nYdqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.025 [XNIO-1 task-2] 7PsVi7mlRfW1Yh9a3nYdqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.025 [XNIO-1 task-2] 7PsVi7mlRfW1Yh9a3nYdqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.026 [XNIO-1 task-2] 7PsVi7mlRfW1Yh9a3nYdqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.026 [XNIO-1 task-2] 7PsVi7mlRfW1Yh9a3nYdqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.031 [XNIO-1 task-2] WbmN-22BTAKBdS4XdA-oBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.031 [XNIO-1 task-2] WbmN-22BTAKBdS4XdA-oBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.031 [XNIO-1 task-2] WbmN-22BTAKBdS4XdA-oBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.032 [XNIO-1 task-2] WbmN-22BTAKBdS4XdA-oBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.032 [XNIO-1 task-2] WbmN-22BTAKBdS4XdA-oBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.036 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b8aac77f +16:29:46.039 [XNIO-1 task-2] NvcEkBubRgCNeo29GFHJDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.039 [XNIO-1 task-2] NvcEkBubRgCNeo29GFHJDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.039 [XNIO-1 task-2] NvcEkBubRgCNeo29GFHJDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.039 [XNIO-1 task-2] NvcEkBubRgCNeo29GFHJDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.040 [XNIO-1 task-2] NvcEkBubRgCNeo29GFHJDw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.040 [XNIO-1 task-2] NvcEkBubRgCNeo29GFHJDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.044 [XNIO-1 task-2] d8l54DXWQYKO0LojkDavhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:46.044 [XNIO-1 task-2] d8l54DXWQYKO0LojkDavhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.044 [XNIO-1 task-2] d8l54DXWQYKO0LojkDavhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.044 [XNIO-1 task-2] d8l54DXWQYKO0LojkDavhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:46.045 [XNIO-1 task-2] d8l54DXWQYKO0LojkDavhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:46.050 [XNIO-1 task-2] yrSNEg5iQ4e-AwpXX877pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.050 [XNIO-1 task-2] yrSNEg5iQ4e-AwpXX877pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.051 [XNIO-1 task-2] yrSNEg5iQ4e-AwpXX877pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.051 [XNIO-1 task-2] yrSNEg5iQ4e-AwpXX877pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.051 [XNIO-1 task-2] yrSNEg5iQ4e-AwpXX877pQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.058 [XNIO-1 task-2] lA5KJvG1Si-yfzeCi6RrWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.059 [XNIO-1 task-2] lA5KJvG1Si-yfzeCi6RrWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.059 [XNIO-1 task-2] lA5KJvG1Si-yfzeCi6RrWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.059 [XNIO-1 task-2] lA5KJvG1Si-yfzeCi6RrWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.059 [XNIO-1 task-2] lA5KJvG1Si-yfzeCi6RrWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.062 [XNIO-1 task-2] 68KWI9z2Re6PJrr8qOX_nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.062 [XNIO-1 task-2] 68KWI9z2Re6PJrr8qOX_nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.062 [XNIO-1 task-2] 68KWI9z2Re6PJrr8qOX_nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.062 [XNIO-1 task-2] 68KWI9z2Re6PJrr8qOX_nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.063 [XNIO-1 task-2] 68KWI9z2Re6PJrr8qOX_nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.072 [XNIO-1 task-2] UXokUNpdT2CImB7aa6zhhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.072 [XNIO-1 task-2] UXokUNpdT2CImB7aa6zhhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.073 [XNIO-1 task-2] UXokUNpdT2CImB7aa6zhhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.073 [XNIO-1 task-2] UXokUNpdT2CImB7aa6zhhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.073 [XNIO-1 task-2] UXokUNpdT2CImB7aa6zhhg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.085 [XNIO-1 task-2] lU9b6EzMQDaqP0snUGpAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.085 [XNIO-1 task-2] lU9b6EzMQDaqP0snUGpAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.085 [XNIO-1 task-2] lU9b6EzMQDaqP0snUGpAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.085 [XNIO-1 task-2] lU9b6EzMQDaqP0snUGpAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.086 [XNIO-1 task-2] lU9b6EzMQDaqP0snUGpAig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.089 [XNIO-1 task-2] YqFxPMZBTUuRGmG1zB8t1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.089 [XNIO-1 task-2] YqFxPMZBTUuRGmG1zB8t1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.089 [XNIO-1 task-2] YqFxPMZBTUuRGmG1zB8t1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.089 [XNIO-1 task-2] YqFxPMZBTUuRGmG1zB8t1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.089 [XNIO-1 task-2] YqFxPMZBTUuRGmG1zB8t1w DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.090 [XNIO-1 task-2] YqFxPMZBTUuRGmG1zB8t1w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.095 [XNIO-1 task-2] PB5hCjH_R4CuU4nSyM0TzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.095 [XNIO-1 task-2] PB5hCjH_R4CuU4nSyM0TzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.096 [XNIO-1 task-2] PB5hCjH_R4CuU4nSyM0TzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.096 [XNIO-1 task-2] PB5hCjH_R4CuU4nSyM0TzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.101 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5176c09e +16:29:46.102 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5176c09e +16:29:46.103 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:071981af-e79c-4eea-94b0-642a5f185547 +16:29:46.103 [XNIO-1 task-2] F3VbJFrwQFKfptf5ZMBD5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:46.104 [XNIO-1 task-2] F3VbJFrwQFKfptf5ZMBD5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.104 [XNIO-1 task-2] F3VbJFrwQFKfptf5ZMBD5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.105 [XNIO-1 task-2] F3VbJFrwQFKfptf5ZMBD5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:46.106 [XNIO-1 task-2] F3VbJFrwQFKfptf5ZMBD5w DEBUG com.networknt.schema.TypeValidator debug - validate( "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", refreshToken) +16:29:46.107 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b8aac77f +16:29:46.117 [XNIO-1 task-2] vfPVDlz9SJGqJ7oAaLbKCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.117 [XNIO-1 task-2] vfPVDlz9SJGqJ7oAaLbKCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.117 [XNIO-1 task-2] vfPVDlz9SJGqJ7oAaLbKCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.117 [XNIO-1 task-2] vfPVDlz9SJGqJ7oAaLbKCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.117 [XNIO-1 task-2] vfPVDlz9SJGqJ7oAaLbKCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:46.118 [XNIO-1 task-2] vfPVDlz9SJGqJ7oAaLbKCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:46.122 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4b2599ed-e50f-46c0-b254-558be58e803d +16:29:46.122 [XNIO-1 task-2] o0zzcwBASVaIvEJjYS-nAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.122 [XNIO-1 task-2] o0zzcwBASVaIvEJjYS-nAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.122 [XNIO-1 task-2] o0zzcwBASVaIvEJjYS-nAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.122 [XNIO-1 task-2] o0zzcwBASVaIvEJjYS-nAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.123 [XNIO-1 task-2] o0zzcwBASVaIvEJjYS-nAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:46.123 [XNIO-1 task-2] o0zzcwBASVaIvEJjYS-nAQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:46.127 [XNIO-1 task-2] pJJ0SMtKRVyGTfDYjQWX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.127 [XNIO-1 task-2] pJJ0SMtKRVyGTfDYjQWX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.127 [XNIO-1 task-2] pJJ0SMtKRVyGTfDYjQWX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.127 [XNIO-1 task-2] pJJ0SMtKRVyGTfDYjQWX5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.127 [XNIO-1 task-2] pJJ0SMtKRVyGTfDYjQWX5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.131 [XNIO-1 task-2] soOzCX1QQkSJ74BUlRv61w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.132 [XNIO-1 task-2] soOzCX1QQkSJ74BUlRv61w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.132 [XNIO-1 task-2] soOzCX1QQkSJ74BUlRv61w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.132 [XNIO-1 task-2] soOzCX1QQkSJ74BUlRv61w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.133 [XNIO-1 task-2] soOzCX1QQkSJ74BUlRv61w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.133 [XNIO-1 task-2] soOzCX1QQkSJ74BUlRv61w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.138 [XNIO-1 task-2] 7M1c3bs4TaapS8U3imqcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.138 [XNIO-1 task-2] 7M1c3bs4TaapS8U3imqcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.138 [XNIO-1 task-2] 7M1c3bs4TaapS8U3imqcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.139 [XNIO-1 task-2] 7M1c3bs4TaapS8U3imqcmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.147 [XNIO-1 task-2] s-VtKFRZT0qZVcnp8JgdpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.147 [XNIO-1 task-2] s-VtKFRZT0qZVcnp8JgdpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.147 [XNIO-1 task-2] s-VtKFRZT0qZVcnp8JgdpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.148 [XNIO-1 task-2] s-VtKFRZT0qZVcnp8JgdpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.148 [XNIO-1 task-2] s-VtKFRZT0qZVcnp8JgdpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:46.149 [XNIO-1 task-2] s-VtKFRZT0qZVcnp8JgdpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:46.152 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5176c09e +16:29:46.152 [XNIO-1 task-2] tXi0Gc9sRWSp6xdoe-_Kvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.152 [XNIO-1 task-2] tXi0Gc9sRWSp6xdoe-_Kvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.152 [XNIO-1 task-2] tXi0Gc9sRWSp6xdoe-_Kvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.153 [XNIO-1 task-2] tXi0Gc9sRWSp6xdoe-_Kvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.153 [XNIO-1 task-2] tXi0Gc9sRWSp6xdoe-_Kvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 39174f3b-972e-429e-9d7b-178defa3ead6 +16:29:46.156 [XNIO-1 task-2] vDRi4xLZQoeAeR7RBsgqZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.157 [XNIO-1 task-2] vDRi4xLZQoeAeR7RBsgqZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.157 [XNIO-1 task-2] vDRi4xLZQoeAeR7RBsgqZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.157 [XNIO-1 task-2] vDRi4xLZQoeAeR7RBsgqZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.157 [XNIO-1 task-2] vDRi4xLZQoeAeR7RBsgqZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:46.157 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.161 [XNIO-1 task-2] AbJmpdEZT9i0ceUNnowPIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.161 [XNIO-1 task-2] AbJmpdEZT9i0ceUNnowPIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.161 [XNIO-1 task-2] AbJmpdEZT9i0ceUNnowPIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.161 [XNIO-1 task-2] AbJmpdEZT9i0ceUNnowPIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.162 [XNIO-1 task-2] AbJmpdEZT9i0ceUNnowPIA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.170 [XNIO-1 task-2] VS2OEtUMQByowowcJKuvWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.170 [XNIO-1 task-2] VS2OEtUMQByowowcJKuvWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.170 [XNIO-1 task-2] VS2OEtUMQByowowcJKuvWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.170 [XNIO-1 task-2] VS2OEtUMQByowowcJKuvWw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.173 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b8aac77f +16:29:46.190 [XNIO-1 task-2] RR5eDarmTAC16zVQkGGt7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.190 [XNIO-1 task-2] RR5eDarmTAC16zVQkGGt7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.190 [XNIO-1 task-2] RR5eDarmTAC16zVQkGGt7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.190 [XNIO-1 task-2] RR5eDarmTAC16zVQkGGt7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.191 [XNIO-1 task-2] RR5eDarmTAC16zVQkGGt7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:46.191 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.202 [XNIO-1 task-2] CdAqnU8mQV-ZknEsvKiUCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.202 [XNIO-1 task-2] CdAqnU8mQV-ZknEsvKiUCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.202 [XNIO-1 task-2] CdAqnU8mQV-ZknEsvKiUCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.203 [XNIO-1 task-2] CdAqnU8mQV-ZknEsvKiUCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.204 [XNIO-1 task-2] CdAqnU8mQV-ZknEsvKiUCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.209 [XNIO-1 task-2] glkcJDctQ1qsxhwO17b1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.209 [XNIO-1 task-2] glkcJDctQ1qsxhwO17b1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.209 [XNIO-1 task-2] glkcJDctQ1qsxhwO17b1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.210 [XNIO-1 task-2] glkcJDctQ1qsxhwO17b1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.210 [XNIO-1 task-2] glkcJDctQ1qsxhwO17b1bg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.212 [XNIO-1 task-2] glkcJDctQ1qsxhwO17b1bg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:46.216 [XNIO-1 task-2] KInfyhX0Rd2SqDN2OGeofQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.216 [XNIO-1 task-2] KInfyhX0Rd2SqDN2OGeofQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.216 [XNIO-1 task-2] KInfyhX0Rd2SqDN2OGeofQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.217 [XNIO-1 task-2] KInfyhX0Rd2SqDN2OGeofQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.217 [XNIO-1 task-2] KInfyhX0Rd2SqDN2OGeofQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.223 [XNIO-1 task-2] FREv1weUQ8a30HblaEC09A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.223 [XNIO-1 task-2] FREv1weUQ8a30HblaEC09A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.223 [XNIO-1 task-2] FREv1weUQ8a30HblaEC09A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.224 [XNIO-1 task-2] FREv1weUQ8a30HblaEC09A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.224 [XNIO-1 task-2] FREv1weUQ8a30HblaEC09A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.226 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a45d0083 +16:29:46.232 [XNIO-1 task-2] tmz1gGQYQ6-S2X26_vHRDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.232 [XNIO-1 task-2] tmz1gGQYQ6-S2X26_vHRDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.232 [XNIO-1 task-2] tmz1gGQYQ6-S2X26_vHRDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.257 [XNIO-1 task-2] tmz1gGQYQ6-S2X26_vHRDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.264 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2309437d +16:29:46.267 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2309437d +16:29:46.279 [XNIO-1 task-2] ToeU8xPGQW6UtVWLEsL6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.279 [XNIO-1 task-2] ToeU8xPGQW6UtVWLEsL6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.279 [XNIO-1 task-2] ToeU8xPGQW6UtVWLEsL6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.280 [XNIO-1 task-2] ToeU8xPGQW6UtVWLEsL6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.281 [XNIO-1 task-2] ToeU8xPGQW6UtVWLEsL6aQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.282 [XNIO-1 task-2] ToeU8xPGQW6UtVWLEsL6aQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:46.285 [XNIO-1 task-2] u3B9GB8VQE6khwzFqokOWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.285 [XNIO-1 task-2] u3B9GB8VQE6khwzFqokOWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.285 [XNIO-1 task-2] u3B9GB8VQE6khwzFqokOWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.285 [XNIO-1 task-2] u3B9GB8VQE6khwzFqokOWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.286 [XNIO-1 task-2] u3B9GB8VQE6khwzFqokOWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.287 [XNIO-1 task-2] u3B9GB8VQE6khwzFqokOWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:46.290 [XNIO-1 task-2] jeV-V5CRQAaoWhPtj9151g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.290 [XNIO-1 task-2] jeV-V5CRQAaoWhPtj9151g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.290 [XNIO-1 task-2] jeV-V5CRQAaoWhPtj9151g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.290 [XNIO-1 task-2] jeV-V5CRQAaoWhPtj9151g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.290 [XNIO-1 task-2] jeV-V5CRQAaoWhPtj9151g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.292 [XNIO-1 task-2] jeV-V5CRQAaoWhPtj9151g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:46.295 [XNIO-1 task-2] mV5cPpneTIKB8s1DJ4r_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.295 [XNIO-1 task-2] mV5cPpneTIKB8s1DJ4r_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.295 [XNIO-1 task-2] mV5cPpneTIKB8s1DJ4r_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.295 [XNIO-1 task-2] mV5cPpneTIKB8s1DJ4r_YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.296 [XNIO-1 task-2] mV5cPpneTIKB8s1DJ4r_YQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.297 [XNIO-1 task-2] mV5cPpneTIKB8s1DJ4r_YQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:46.304 [XNIO-1 task-2] ikDuyQIHRd-ai620fsFz9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.304 [XNIO-1 task-2] ikDuyQIHRd-ai620fsFz9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.305 [XNIO-1 task-2] ikDuyQIHRd-ai620fsFz9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.305 [XNIO-1 task-2] ikDuyQIHRd-ai620fsFz9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.313 [XNIO-1 task-2] b4g-J40LRzaGxkYVQJLHGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.313 [XNIO-1 task-2] b4g-J40LRzaGxkYVQJLHGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.313 [XNIO-1 task-2] b4g-J40LRzaGxkYVQJLHGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.313 [XNIO-1 task-2] b4g-J40LRzaGxkYVQJLHGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.314 [XNIO-1 task-2] b4g-J40LRzaGxkYVQJLHGw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.320 [XNIO-1 task-2] 3eNw1SnBRc6d-qWHeFgTkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.320 [XNIO-1 task-2] 3eNw1SnBRc6d-qWHeFgTkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.320 [XNIO-1 task-2] 3eNw1SnBRc6d-qWHeFgTkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.320 [XNIO-1 task-2] 3eNw1SnBRc6d-qWHeFgTkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.321 [XNIO-1 task-2] 3eNw1SnBRc6d-qWHeFgTkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.329 [XNIO-1 task-2] e7-HQnmDSI6g5pqHsgfqvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.329 [XNIO-1 task-2] e7-HQnmDSI6g5pqHsgfqvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.329 [XNIO-1 task-2] e7-HQnmDSI6g5pqHsgfqvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.329 [XNIO-1 task-2] e7-HQnmDSI6g5pqHsgfqvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.332 [XNIO-1 task-2] e7-HQnmDSI6g5pqHsgfqvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.333 [XNIO-1 task-2] e7-HQnmDSI6g5pqHsgfqvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:46.340 [XNIO-1 task-2] fPiTMMUaRtq1sk8teUWwjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.340 [XNIO-1 task-2] fPiTMMUaRtq1sk8teUWwjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.340 [XNIO-1 task-2] fPiTMMUaRtq1sk8teUWwjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.343 [XNIO-1 task-2] fPiTMMUaRtq1sk8teUWwjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.348 [XNIO-1 task-2] fPiTMMUaRtq1sk8teUWwjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.360 [XNIO-1 task-2] BKKyVeYjRECz0h0IDPV_cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.361 [XNIO-1 task-2] BKKyVeYjRECz0h0IDPV_cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.361 [XNIO-1 task-2] BKKyVeYjRECz0h0IDPV_cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.362 [XNIO-1 task-2] BKKyVeYjRECz0h0IDPV_cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.362 [XNIO-1 task-2] BKKyVeYjRECz0h0IDPV_cw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.369 [XNIO-1 task-2] XjSJcaTiQRKlDwmISjbGGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.369 [XNIO-1 task-2] XjSJcaTiQRKlDwmISjbGGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.369 [XNIO-1 task-2] XjSJcaTiQRKlDwmISjbGGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.370 [XNIO-1 task-2] XjSJcaTiQRKlDwmISjbGGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.370 [XNIO-1 task-2] XjSJcaTiQRKlDwmISjbGGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.372 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5176c09e +16:29:46.373 [XNIO-1 task-2] p8uMFMPyQWqC90QdvUKV4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:46.373 [XNIO-1 task-2] p8uMFMPyQWqC90QdvUKV4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.373 [XNIO-1 task-2] p8uMFMPyQWqC90QdvUKV4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.373 [XNIO-1 task-2] p8uMFMPyQWqC90QdvUKV4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:46.373 [XNIO-1 task-2] p8uMFMPyQWqC90QdvUKV4g DEBUG com.networknt.schema.TypeValidator debug - validate( "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", refreshToken) +16:29:46.374 [XNIO-1 task-2] p8uMFMPyQWqC90QdvUKV4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ecacf795-4779-4f2c-a1ad-aceb3b29e7ba is not found.","severity":"ERROR"} +16:29:46.387 [XNIO-1 task-2] zuVe4CxRRp66RKH1eWse7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/218b717f-f297-4e91-81ce-139e80bd43de +16:29:46.387 [XNIO-1 task-2] zuVe4CxRRp66RKH1eWse7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.387 [XNIO-1 task-2] zuVe4CxRRp66RKH1eWse7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.387 [XNIO-1 task-2] zuVe4CxRRp66RKH1eWse7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/218b717f-f297-4e91-81ce-139e80bd43de +16:29:46.388 [XNIO-1 task-2] zuVe4CxRRp66RKH1eWse7g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 218b717f-f297-4e91-81ce-139e80bd43de +16:29:46.393 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d2e3630a-d817-4b49-ae03-6acfcc374ae4 +16:29:46.394 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6d558e80 +16:29:46.396 [XNIO-1 task-2] mHrPZuRpQxyCg0brtPK3Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.396 [XNIO-1 task-2] mHrPZuRpQxyCg0brtPK3Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.396 [XNIO-1 task-2] mHrPZuRpQxyCg0brtPK3Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.397 [XNIO-1 task-2] mHrPZuRpQxyCg0brtPK3Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.398 [XNIO-1 task-2] mHrPZuRpQxyCg0brtPK3Eg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.401 [XNIO-1 task-2] 83CovnfdQ5CWeJi4nks5hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/218b717f-f297-4e91-81ce-139e80bd43de, base path is set to: null +16:29:46.402 [XNIO-1 task-2] 83CovnfdQ5CWeJi4nks5hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.402 [XNIO-1 task-2] 83CovnfdQ5CWeJi4nks5hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.402 [XNIO-1 task-2] 83CovnfdQ5CWeJi4nks5hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/218b717f-f297-4e91-81ce-139e80bd43de, base path is set to: null +16:29:46.402 [XNIO-1 task-2] 83CovnfdQ5CWeJi4nks5hw DEBUG com.networknt.schema.TypeValidator debug - validate( "218b717f-f297-4e91-81ce-139e80bd43de", "218b717f-f297-4e91-81ce-139e80bd43de", refreshToken) +16:29:46.415 [XNIO-1 task-2] oKfkpmviQMuAAhBZ7eOb_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.415 [XNIO-1 task-2] oKfkpmviQMuAAhBZ7eOb_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.416 [XNIO-1 task-2] oKfkpmviQMuAAhBZ7eOb_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.416 [XNIO-1 task-2] oKfkpmviQMuAAhBZ7eOb_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.416 [XNIO-1 task-2] oKfkpmviQMuAAhBZ7eOb_A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.429 [XNIO-1 task-2] MWr8Nj0FR-aWBMPYyN2M6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbc70464-e104-4d0b-bc00-6270096c4cb4 +16:29:46.429 [XNIO-1 task-2] MWr8Nj0FR-aWBMPYyN2M6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.429 [XNIO-1 task-2] MWr8Nj0FR-aWBMPYyN2M6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.430 [XNIO-1 task-2] MWr8Nj0FR-aWBMPYyN2M6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbc70464-e104-4d0b-bc00-6270096c4cb4 +16:29:46.430 [XNIO-1 task-2] MWr8Nj0FR-aWBMPYyN2M6A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fbc70464-e104-4d0b-bc00-6270096c4cb4 +16:29:46.445 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a45d0083 +16:29:46.446 [XNIO-1 task-2] IUgJbm0qTr6PPaxBNW4N3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.446 [XNIO-1 task-2] IUgJbm0qTr6PPaxBNW4N3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.446 [XNIO-1 task-2] IUgJbm0qTr6PPaxBNW4N3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.446 [XNIO-1 task-2] IUgJbm0qTr6PPaxBNW4N3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.447 [XNIO-1 task-2] IUgJbm0qTr6PPaxBNW4N3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:46.452 [XNIO-1 task-2] MwLETw8BRou-wUZjG3saAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.453 [XNIO-1 task-2] MwLETw8BRou-wUZjG3saAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.453 [XNIO-1 task-2] MwLETw8BRou-wUZjG3saAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.453 [XNIO-1 task-2] MwLETw8BRou-wUZjG3saAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.454 [XNIO-1 task-2] MwLETw8BRou-wUZjG3saAg DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:46.454 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.457 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b8573c2d-5847-450a-8b80-bd29070affd1 +16:29:46.463 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b8573c2d-5847-450a-8b80-bd29070affd1 +16:29:46.469 [XNIO-1 task-2] YPMKiSLyTgGDi8J_HGp3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.469 [XNIO-1 task-2] YPMKiSLyTgGDi8J_HGp3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.469 [XNIO-1 task-2] YPMKiSLyTgGDi8J_HGp3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.469 [XNIO-1 task-2] YPMKiSLyTgGDi8J_HGp3sw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.488 [XNIO-1 task-2] zleZ-wGqTFG2D5fk2DijJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/218b717f-f297-4e91-81ce-139e80bd43de, base path is set to: null +16:29:46.489 [XNIO-1 task-2] zleZ-wGqTFG2D5fk2DijJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.490 [XNIO-1 task-2] zleZ-wGqTFG2D5fk2DijJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.490 [XNIO-1 task-2] zleZ-wGqTFG2D5fk2DijJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/218b717f-f297-4e91-81ce-139e80bd43de, base path is set to: null +16:29:46.491 [XNIO-1 task-2] zleZ-wGqTFG2D5fk2DijJw DEBUG com.networknt.schema.TypeValidator debug - validate( "218b717f-f297-4e91-81ce-139e80bd43de", "218b717f-f297-4e91-81ce-139e80bd43de", refreshToken) +16:29:46.497 [XNIO-1 task-2] zleZ-wGqTFG2D5fk2DijJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 218b717f-f297-4e91-81ce-139e80bd43de is not found.","severity":"ERROR"} +16:29:46.504 [XNIO-1 task-2] t6Eaj4aLTQiFetdQwFoCZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.504 [XNIO-1 task-2] t6Eaj4aLTQiFetdQwFoCZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.504 [XNIO-1 task-2] t6Eaj4aLTQiFetdQwFoCZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.504 [XNIO-1 task-2] t6Eaj4aLTQiFetdQwFoCZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.515 [XNIO-1 task-2] K68gFYCGTvm8AXTZZXUWtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.515 [XNIO-1 task-2] K68gFYCGTvm8AXTZZXUWtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.516 [XNIO-1 task-2] K68gFYCGTvm8AXTZZXUWtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.516 [XNIO-1 task-2] K68gFYCGTvm8AXTZZXUWtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.516 [XNIO-1 task-2] K68gFYCGTvm8AXTZZXUWtA DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:46.516 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.525 [XNIO-1 task-2] Vy6snCWHRY-WjsxVjfW8Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.525 [XNIO-1 task-2] Vy6snCWHRY-WjsxVjfW8Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.525 [XNIO-1 task-2] Vy6snCWHRY-WjsxVjfW8Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.525 [XNIO-1 task-2] Vy6snCWHRY-WjsxVjfW8Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.526 [XNIO-1 task-2] Vy6snCWHRY-WjsxVjfW8Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:46.526 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.530 [XNIO-1 task-2] D8FjGOZpTc-ELFSF4Q3aog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.530 [XNIO-1 task-2] D8FjGOZpTc-ELFSF4Q3aog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.530 [XNIO-1 task-2] D8FjGOZpTc-ELFSF4Q3aog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.531 [XNIO-1 task-2] D8FjGOZpTc-ELFSF4Q3aog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.531 [XNIO-1 task-2] D8FjGOZpTc-ELFSF4Q3aog DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:46.532 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.536 [XNIO-1 task-2] Xer8fRcLRyuCBMbZG3Vpmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.536 [XNIO-1 task-2] Xer8fRcLRyuCBMbZG3Vpmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.536 [XNIO-1 task-2] Xer8fRcLRyuCBMbZG3Vpmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.536 [XNIO-1 task-2] Xer8fRcLRyuCBMbZG3Vpmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.537 [XNIO-1 task-2] Xer8fRcLRyuCBMbZG3Vpmg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.537 [XNIO-1 task-2] Xer8fRcLRyuCBMbZG3Vpmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.542 [XNIO-1 task-2] KdpR7wy7QBevEWeHlyZbsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.542 [XNIO-1 task-2] KdpR7wy7QBevEWeHlyZbsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.542 [XNIO-1 task-2] KdpR7wy7QBevEWeHlyZbsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.543 [XNIO-1 task-2] KdpR7wy7QBevEWeHlyZbsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.552 [XNIO-1 task-2] 1ACXPMcVRQW3aS6hXveBQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.552 [XNIO-1 task-2] 1ACXPMcVRQW3aS6hXveBQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.553 [XNIO-1 task-2] 1ACXPMcVRQW3aS6hXveBQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.553 [XNIO-1 task-2] 1ACXPMcVRQW3aS6hXveBQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.554 [XNIO-1 task-2] 1ACXPMcVRQW3aS6hXveBQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.554 [XNIO-1 task-2] 1ACXPMcVRQW3aS6hXveBQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.560 [XNIO-1 task-2] fF_fQwy6QD6y17-jgzEhpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.560 [XNIO-1 task-2] fF_fQwy6QD6y17-jgzEhpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.560 [XNIO-1 task-2] fF_fQwy6QD6y17-jgzEhpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.560 [XNIO-1 task-2] fF_fQwy6QD6y17-jgzEhpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.560 [XNIO-1 task-2] fF_fQwy6QD6y17-jgzEhpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.565 [XNIO-1 task-2] bqptUG1hRjm8vF1EMzOwSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.565 [XNIO-1 task-2] bqptUG1hRjm8vF1EMzOwSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.565 [XNIO-1 task-2] bqptUG1hRjm8vF1EMzOwSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.565 [XNIO-1 task-2] bqptUG1hRjm8vF1EMzOwSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.566 [XNIO-1 task-2] bqptUG1hRjm8vF1EMzOwSA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.566 [XNIO-1 task-2] bqptUG1hRjm8vF1EMzOwSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.568 [XNIO-1 task-2] eShc7MG_Rh2thyL07DrbwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.569 [XNIO-1 task-2] eShc7MG_Rh2thyL07DrbwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.569 [XNIO-1 task-2] eShc7MG_Rh2thyL07DrbwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.569 [XNIO-1 task-2] eShc7MG_Rh2thyL07DrbwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.569 [XNIO-1 task-2] eShc7MG_Rh2thyL07DrbwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.578 [XNIO-1 task-2] 2xpyIkHMT7m92-E-kGxWNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.578 [XNIO-1 task-2] 2xpyIkHMT7m92-E-kGxWNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.579 [XNIO-1 task-2] 2xpyIkHMT7m92-E-kGxWNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.579 [XNIO-1 task-2] 2xpyIkHMT7m92-E-kGxWNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.579 [XNIO-1 task-2] 2xpyIkHMT7m92-E-kGxWNw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.579 [XNIO-1 task-2] 2xpyIkHMT7m92-E-kGxWNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.586 [XNIO-1 task-2] 2awB8vC4TWG7P9cm-dcbqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.586 [XNIO-1 task-2] 2awB8vC4TWG7P9cm-dcbqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.586 [XNIO-1 task-2] 2awB8vC4TWG7P9cm-dcbqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.586 [XNIO-1 task-2] 2awB8vC4TWG7P9cm-dcbqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.587 [XNIO-1 task-2] 2awB8vC4TWG7P9cm-dcbqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 +16:29:46.591 [XNIO-1 task-2] ixXPqsePSl6wCiZF1xYqtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.591 [XNIO-1 task-2] ixXPqsePSl6wCiZF1xYqtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.591 [XNIO-1 task-2] ixXPqsePSl6wCiZF1xYqtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.591 [XNIO-1 task-2] ixXPqsePSl6wCiZF1xYqtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.592 [XNIO-1 task-2] ixXPqsePSl6wCiZF1xYqtg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.592 [XNIO-1 task-2] ixXPqsePSl6wCiZF1xYqtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.599 [XNIO-1 task-2] GEr8AJhAQ96961vX6jauzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.599 [XNIO-1 task-2] GEr8AJhAQ96961vX6jauzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.599 [XNIO-1 task-2] GEr8AJhAQ96961vX6jauzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.600 [XNIO-1 task-2] GEr8AJhAQ96961vX6jauzw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.607 [XNIO-1 task-2] wDuix79gQ1mytw03uqxNVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:46.608 [XNIO-1 task-2] wDuix79gQ1mytw03uqxNVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.608 [XNIO-1 task-2] wDuix79gQ1mytw03uqxNVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.608 [XNIO-1 task-2] wDuix79gQ1mytw03uqxNVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:46.608 [XNIO-1 task-2] wDuix79gQ1mytw03uqxNVA DEBUG com.networknt.schema.TypeValidator debug - validate( "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", refreshToken) +16:29:46.610 [XNIO-1 task-2] wDuix79gQ1mytw03uqxNVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fbf8e215-a48c-4704-a560-b7d9c17ccfdd is not found.","severity":"ERROR"} +16:29:46.613 [XNIO-1 task-2] fBanKI39RlKKCl9tpUsqQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.613 [XNIO-1 task-2] fBanKI39RlKKCl9tpUsqQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.614 [XNIO-1 task-2] fBanKI39RlKKCl9tpUsqQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.614 [XNIO-1 task-2] fBanKI39RlKKCl9tpUsqQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.621 [XNIO-1 task-2] Ygq8hS4hReakPJRAtN8Ecw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.622 [XNIO-1 task-2] Ygq8hS4hReakPJRAtN8Ecw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.622 [XNIO-1 task-2] Ygq8hS4hReakPJRAtN8Ecw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.622 [XNIO-1 task-2] Ygq8hS4hReakPJRAtN8Ecw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.623 [XNIO-1 task-2] Ygq8hS4hReakPJRAtN8Ecw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.623 [XNIO-1 task-2] Ygq8hS4hReakPJRAtN8Ecw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.626 [XNIO-1 task-2] -w6psc4fR0mH20HRtw4_Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.626 [XNIO-1 task-2] -w6psc4fR0mH20HRtw4_Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.626 [XNIO-1 task-2] -w6psc4fR0mH20HRtw4_Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.626 [XNIO-1 task-2] -w6psc4fR0mH20HRtw4_Ig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.651 [XNIO-1 task-2] ON4YOcdIRM2OTsHk9UK-ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.651 [XNIO-1 task-2] ON4YOcdIRM2OTsHk9UK-ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.652 [XNIO-1 task-2] ON4YOcdIRM2OTsHk9UK-ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.652 [XNIO-1 task-2] ON4YOcdIRM2OTsHk9UK-ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.652 [XNIO-1 task-2] ON4YOcdIRM2OTsHk9UK-ZA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.658 [XNIO-1 task-2] 4OKZyVg9SoGeLub2Kfe8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.658 [XNIO-1 task-2] 4OKZyVg9SoGeLub2Kfe8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.658 [XNIO-1 task-2] 4OKZyVg9SoGeLub2Kfe8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.658 [XNIO-1 task-2] 4OKZyVg9SoGeLub2Kfe8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.659 [XNIO-1 task-2] 4OKZyVg9SoGeLub2Kfe8lw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.668 [XNIO-1 task-2] oEknH0E5SR68Ew_CBuO1Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.668 [XNIO-1 task-2] oEknH0E5SR68Ew_CBuO1Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.668 [XNIO-1 task-2] oEknH0E5SR68Ew_CBuO1Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.668 [XNIO-1 task-2] oEknH0E5SR68Ew_CBuO1Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.669 [XNIO-1 task-2] oEknH0E5SR68Ew_CBuO1Kw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.674 [XNIO-1 task-2] 7teqY__3S2GreCXssM4T7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.675 [XNIO-1 task-2] 7teqY__3S2GreCXssM4T7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.675 [XNIO-1 task-2] 7teqY__3S2GreCXssM4T7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.675 [XNIO-1 task-2] 7teqY__3S2GreCXssM4T7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.684 [XNIO-1 task-2] p0NeGRFARkmxBSseWUN2GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:46.684 [XNIO-1 task-2] p0NeGRFARkmxBSseWUN2GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.684 [XNIO-1 task-2] p0NeGRFARkmxBSseWUN2GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.684 [XNIO-1 task-2] p0NeGRFARkmxBSseWUN2GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:46.685 [XNIO-1 task-2] p0NeGRFARkmxBSseWUN2GA DEBUG com.networknt.schema.TypeValidator debug - validate( "a63b2427-996a-427a-a04c-70a8a0b9bb5f", "a63b2427-996a-427a-a04c-70a8a0b9bb5f", refreshToken) +16:29:46.705 [XNIO-1 task-2] IgDlQqODQ6S26LVIBPnTFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.705 [XNIO-1 task-2] IgDlQqODQ6S26LVIBPnTFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.705 [XNIO-1 task-2] IgDlQqODQ6S26LVIBPnTFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.705 [XNIO-1 task-2] IgDlQqODQ6S26LVIBPnTFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:46.706 [XNIO-1 task-2] IgDlQqODQ6S26LVIBPnTFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:46.706 [XNIO-1 task-2] IgDlQqODQ6S26LVIBPnTFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:46.710 [XNIO-1 task-2] RQQbPc96Q8S_34F8nkSjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.710 [XNIO-1 task-2] RQQbPc96Q8S_34F8nkSjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.710 [XNIO-1 task-2] RQQbPc96Q8S_34F8nkSjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.710 [XNIO-1 task-2] RQQbPc96Q8S_34F8nkSjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.711 [XNIO-1 task-2] RQQbPc96Q8S_34F8nkSjzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.717 [XNIO-1 task-2] K-XzIWkaQp6d00YdM8RvYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:46.717 [XNIO-1 task-2] K-XzIWkaQp6d00YdM8RvYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.717 [XNIO-1 task-2] K-XzIWkaQp6d00YdM8RvYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.718 [XNIO-1 task-2] K-XzIWkaQp6d00YdM8RvYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:46.718 [XNIO-1 task-2] K-XzIWkaQp6d00YdM8RvYg DEBUG com.networknt.schema.TypeValidator debug - validate( "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", refreshToken) +16:29:46.718 [XNIO-1 task-2] K-XzIWkaQp6d00YdM8RvYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fbf8e215-a48c-4704-a560-b7d9c17ccfdd is not found.","severity":"ERROR"} +16:29:46.721 [XNIO-1 task-2] 7WiUsYY9Q5iZik2wqoph_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f +16:29:46.721 [XNIO-1 task-2] 7WiUsYY9Q5iZik2wqoph_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.721 [XNIO-1 task-2] 7WiUsYY9Q5iZik2wqoph_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.721 [XNIO-1 task-2] 7WiUsYY9Q5iZik2wqoph_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f +16:29:46.724 [XNIO-1 task-2] 7WiUsYY9Q5iZik2wqoph_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a63b2427-996a-427a-a04c-70a8a0b9bb5f +16:29:46.728 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2309437d +16:29:46.734 [XNIO-1 task-2] odKmnTvMQVS4RyYMOmS-NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.734 [XNIO-1 task-2] odKmnTvMQVS4RyYMOmS-NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.734 [XNIO-1 task-2] odKmnTvMQVS4RyYMOmS-NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.734 [XNIO-1 task-2] odKmnTvMQVS4RyYMOmS-NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.734 [XNIO-1 task-2] odKmnTvMQVS4RyYMOmS-NA DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:46.735 [XNIO-1 task-2] odKmnTvMQVS4RyYMOmS-NA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:46.738 [XNIO-1 task-2] C91Ccr0-R7C3pVYAMiyFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.739 [XNIO-1 task-2] C91Ccr0-R7C3pVYAMiyFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.739 [XNIO-1 task-2] C91Ccr0-R7C3pVYAMiyFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.739 [XNIO-1 task-2] C91Ccr0-R7C3pVYAMiyFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.739 [XNIO-1 task-2] C91Ccr0-R7C3pVYAMiyFTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:46.742 [XNIO-1 task-2] fz2rzecIRcWMCmaV_iYzxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.742 [XNIO-1 task-2] fz2rzecIRcWMCmaV_iYzxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.743 [XNIO-1 task-2] fz2rzecIRcWMCmaV_iYzxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.743 [XNIO-1 task-2] fz2rzecIRcWMCmaV_iYzxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.743 [XNIO-1 task-2] fz2rzecIRcWMCmaV_iYzxA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.748 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ecb441b1 +16:29:46.756 [XNIO-1 task-2] uUokZxUcSSCLyoFXxYIhOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.756 [XNIO-1 task-2] uUokZxUcSSCLyoFXxYIhOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.756 [XNIO-1 task-2] uUokZxUcSSCLyoFXxYIhOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.757 [XNIO-1 task-2] uUokZxUcSSCLyoFXxYIhOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.757 [XNIO-1 task-2] uUokZxUcSSCLyoFXxYIhOA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.766 [XNIO-1 task-2] eaEDa65jQGOupuOSRER9zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.767 [XNIO-1 task-2] eaEDa65jQGOupuOSRER9zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.767 [XNIO-1 task-2] eaEDa65jQGOupuOSRER9zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.767 [XNIO-1 task-2] eaEDa65jQGOupuOSRER9zA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.779 [XNIO-1 task-2] zw42fxx1RP-oGO_Chv6HZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:46.779 [XNIO-1 task-2] zw42fxx1RP-oGO_Chv6HZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.779 [XNIO-1 task-2] zw42fxx1RP-oGO_Chv6HZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.779 [XNIO-1 task-2] zw42fxx1RP-oGO_Chv6HZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:46.780 [XNIO-1 task-2] zw42fxx1RP-oGO_Chv6HZw DEBUG com.networknt.schema.TypeValidator debug - validate( "a63b2427-996a-427a-a04c-70a8a0b9bb5f", "a63b2427-996a-427a-a04c-70a8a0b9bb5f", refreshToken) +16:29:46.781 [XNIO-1 task-2] zw42fxx1RP-oGO_Chv6HZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a63b2427-996a-427a-a04c-70a8a0b9bb5f is not found.","severity":"ERROR"} +16:29:46.791 [XNIO-1 task-2] sRGwEvrqSDy34ZtTGRIbKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.792 [XNIO-1 task-2] sRGwEvrqSDy34ZtTGRIbKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.792 [XNIO-1 task-2] sRGwEvrqSDy34ZtTGRIbKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.793 [XNIO-1 task-2] sRGwEvrqSDy34ZtTGRIbKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.801 [XNIO-1 task-2] _j5U0lc2Ssajj2uQAs02Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.802 [XNIO-1 task-2] _j5U0lc2Ssajj2uQAs02Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.802 [XNIO-1 task-2] _j5U0lc2Ssajj2uQAs02Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.802 [XNIO-1 task-2] _j5U0lc2Ssajj2uQAs02Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:46.803 [XNIO-1 task-2] _j5U0lc2Ssajj2uQAs02Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:46.803 [XNIO-1 task-2] _j5U0lc2Ssajj2uQAs02Lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:46.810 [XNIO-1 task-2] 5FcqeZIXTae3wQT7UGJQDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.810 [XNIO-1 task-2] 5FcqeZIXTae3wQT7UGJQDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.811 [XNIO-1 task-2] 5FcqeZIXTae3wQT7UGJQDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.811 [XNIO-1 task-2] 5FcqeZIXTae3wQT7UGJQDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.827 [XNIO-1 task-2] RosboyssTnOLfOjQLRSmXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.828 [XNIO-1 task-2] RosboyssTnOLfOjQLRSmXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.828 [XNIO-1 task-2] RosboyssTnOLfOjQLRSmXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.828 [XNIO-1 task-2] RosboyssTnOLfOjQLRSmXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.828 [XNIO-1 task-2] RosboyssTnOLfOjQLRSmXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.830 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a45d0083 +16:29:46.842 [XNIO-1 task-2] LWfrVu6vRrOPkRvtU2OrYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.842 [XNIO-1 task-2] LWfrVu6vRrOPkRvtU2OrYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.842 [XNIO-1 task-2] LWfrVu6vRrOPkRvtU2OrYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.842 [XNIO-1 task-2] LWfrVu6vRrOPkRvtU2OrYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.844 [XNIO-1 task-2] LWfrVu6vRrOPkRvtU2OrYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.855 [XNIO-1 task-2] RnfPJYnMTXSJU8X638PmWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3147fa44-23f8-4d63-b58d-d8979506daf4, base path is set to: null +16:29:46.855 [XNIO-1 task-2] RnfPJYnMTXSJU8X638PmWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.855 [XNIO-1 task-2] RnfPJYnMTXSJU8X638PmWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.855 [XNIO-1 task-2] RnfPJYnMTXSJU8X638PmWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3147fa44-23f8-4d63-b58d-d8979506daf4, base path is set to: null +16:29:46.855 [XNIO-1 task-2] RnfPJYnMTXSJU8X638PmWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3147fa44-23f8-4d63-b58d-d8979506daf4", "3147fa44-23f8-4d63-b58d-d8979506daf4", refreshToken) +16:29:46.868 [XNIO-1 task-2] LVDJzQH2QTuQcXQ7nor_vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/019a6cf2-8bc5-40a1-9158-7f2b2a7b5566, base path is set to: null +16:29:46.869 [XNIO-1 task-2] LVDJzQH2QTuQcXQ7nor_vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.869 [XNIO-1 task-2] LVDJzQH2QTuQcXQ7nor_vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.869 [XNIO-1 task-2] LVDJzQH2QTuQcXQ7nor_vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/019a6cf2-8bc5-40a1-9158-7f2b2a7b5566, base path is set to: null +16:29:46.869 [XNIO-1 task-2] LVDJzQH2QTuQcXQ7nor_vw DEBUG com.networknt.schema.TypeValidator debug - validate( "019a6cf2-8bc5-40a1-9158-7f2b2a7b5566", "019a6cf2-8bc5-40a1-9158-7f2b2a7b5566", refreshToken) +16:29:46.875 [XNIO-1 task-2] Fk5XJDamTYqlNUygXp4qqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:46.876 [XNIO-1 task-2] Fk5XJDamTYqlNUygXp4qqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.876 [XNIO-1 task-2] Fk5XJDamTYqlNUygXp4qqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.876 [XNIO-1 task-2] Fk5XJDamTYqlNUygXp4qqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:46.876 [XNIO-1 task-2] Fk5XJDamTYqlNUygXp4qqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", refreshToken) +16:29:46.876 [XNIO-1 task-2] Fk5XJDamTYqlNUygXp4qqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ecacf795-4779-4f2c-a1ad-aceb3b29e7ba is not found.","severity":"ERROR"} +16:29:46.880 [XNIO-1 task-2] 2IfD9CF6RQCKSNFLTWpGcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.880 [XNIO-1 task-2] 2IfD9CF6RQCKSNFLTWpGcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.880 [XNIO-1 task-2] 2IfD9CF6RQCKSNFLTWpGcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.881 [XNIO-1 task-2] 2IfD9CF6RQCKSNFLTWpGcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.898 [XNIO-1 task-2] wjQ_OOzGR-Gyu54FD4NZQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.898 [XNIO-1 task-2] wjQ_OOzGR-Gyu54FD4NZQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.898 [XNIO-1 task-2] wjQ_OOzGR-Gyu54FD4NZQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.898 [XNIO-1 task-2] wjQ_OOzGR-Gyu54FD4NZQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:46.899 [XNIO-1 task-2] wjQ_OOzGR-Gyu54FD4NZQw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:46.899 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:46.902 [XNIO-1 task-2] IcgtZYOCS-acIh-wecJ7kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.903 [XNIO-1 task-2] IcgtZYOCS-acIh-wecJ7kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.903 [XNIO-1 task-2] IcgtZYOCS-acIh-wecJ7kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:46.903 [XNIO-1 task-2] IcgtZYOCS-acIh-wecJ7kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.903 [XNIO-1 task-2] IcgtZYOCS-acIh-wecJ7kQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:46.933 [XNIO-1 task-2] __eztd3cQs--dSp5IP1Uhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.933 [XNIO-1 task-2] __eztd3cQs--dSp5IP1Uhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.933 [XNIO-1 task-2] __eztd3cQs--dSp5IP1Uhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.933 [XNIO-1 task-2] __eztd3cQs--dSp5IP1Uhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.936 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5176c09e +16:29:46.941 [XNIO-1 task-2] mxMCfODIThCbdqJZcktHSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.941 [XNIO-1 task-2] mxMCfODIThCbdqJZcktHSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.941 [XNIO-1 task-2] mxMCfODIThCbdqJZcktHSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.942 [XNIO-1 task-2] mxMCfODIThCbdqJZcktHSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.942 [XNIO-1 task-2] mxMCfODIThCbdqJZcktHSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "71cd3a1d-908e-437b-8f40-2960f6a444ba", "71cd3a1d-908e-437b-8f40-2960f6a444ba", refreshToken) +16:29:46.960 [XNIO-1 task-2] 3OZop_zpQBmDEwTWTeyLyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.960 [XNIO-1 task-2] 3OZop_zpQBmDEwTWTeyLyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.960 [XNIO-1 task-2] 3OZop_zpQBmDEwTWTeyLyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.960 [XNIO-1 task-2] 3OZop_zpQBmDEwTWTeyLyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.960 [XNIO-1 task-2] 3OZop_zpQBmDEwTWTeyLyw DEBUG com.networknt.schema.TypeValidator debug - validate( "71cd3a1d-908e-437b-8f40-2960f6a444ba", "71cd3a1d-908e-437b-8f40-2960f6a444ba", refreshToken) +16:29:46.967 [XNIO-1 task-2] 3OZop_zpQBmDEwTWTeyLyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 71cd3a1d-908e-437b-8f40-2960f6a444ba is not found.","severity":"ERROR"} +16:29:46.971 [XNIO-1 task-2] 3F0yCVDzTcaMMaeGRj0QrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.972 [XNIO-1 task-2] 3F0yCVDzTcaMMaeGRj0QrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.972 [XNIO-1 task-2] 3F0yCVDzTcaMMaeGRj0QrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.972 [XNIO-1 task-2] 3F0yCVDzTcaMMaeGRj0QrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.972 [XNIO-1 task-2] 3F0yCVDzTcaMMaeGRj0QrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.976 [XNIO-1 task-2] psICOVtGSk-HTVBDPeXiMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.976 [XNIO-1 task-2] psICOVtGSk-HTVBDPeXiMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.976 [XNIO-1 task-2] psICOVtGSk-HTVBDPeXiMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.976 [XNIO-1 task-2] psICOVtGSk-HTVBDPeXiMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.976 [XNIO-1 task-2] psICOVtGSk-HTVBDPeXiMA DEBUG com.networknt.schema.TypeValidator debug - validate( "71cd3a1d-908e-437b-8f40-2960f6a444ba", "71cd3a1d-908e-437b-8f40-2960f6a444ba", refreshToken) +16:29:46.977 [XNIO-1 task-2] psICOVtGSk-HTVBDPeXiMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 71cd3a1d-908e-437b-8f40-2960f6a444ba is not found.","severity":"ERROR"} +16:29:46.981 [XNIO-1 task-2] QGBqDGHURl6Tkbwu5YWHlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.982 [XNIO-1 task-2] QGBqDGHURl6Tkbwu5YWHlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.982 [XNIO-1 task-2] QGBqDGHURl6Tkbwu5YWHlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.982 [XNIO-1 task-2] QGBqDGHURl6Tkbwu5YWHlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.982 [XNIO-1 task-2] QGBqDGHURl6Tkbwu5YWHlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.992 [XNIO-1 task-2] VDV8HtCHRsm8qdMagrtOoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.992 [XNIO-1 task-2] VDV8HtCHRsm8qdMagrtOoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:46.992 [XNIO-1 task-2] VDV8HtCHRsm8qdMagrtOoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:46.992 [XNIO-1 task-2] VDV8HtCHRsm8qdMagrtOoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:46.993 [XNIO-1 task-2] VDV8HtCHRsm8qdMagrtOoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "71cd3a1d-908e-437b-8f40-2960f6a444ba", "71cd3a1d-908e-437b-8f40-2960f6a444ba", refreshToken) +16:29:46.993 [XNIO-1 task-2] VDV8HtCHRsm8qdMagrtOoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 71cd3a1d-908e-437b-8f40-2960f6a444ba is not found.","severity":"ERROR"} +16:29:46.997 [XNIO-1 task-2] uY_yxNlPSjKAmR_V8Ud_qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.997 [XNIO-1 task-2] uY_yxNlPSjKAmR_V8Ud_qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:46.998 [XNIO-1 task-2] uY_yxNlPSjKAmR_V8Ud_qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:46.998 [XNIO-1 task-2] uY_yxNlPSjKAmR_V8Ud_qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:46.998 [XNIO-1 task-2] uY_yxNlPSjKAmR_V8Ud_qw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:47.001 [XNIO-1 task-2] ZxypePmxSjaAUOcNSwVg8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.001 [XNIO-1 task-2] ZxypePmxSjaAUOcNSwVg8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.001 [XNIO-1 task-2] ZxypePmxSjaAUOcNSwVg8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.002 [XNIO-1 task-2] ZxypePmxSjaAUOcNSwVg8w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.002 [XNIO-1 task-2] ZxypePmxSjaAUOcNSwVg8w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.017 [XNIO-1 task-2] 7oTZ6hntTPShMy6NBfDxug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:47.017 [XNIO-1 task-2] 7oTZ6hntTPShMy6NBfDxug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.018 [XNIO-1 task-2] 7oTZ6hntTPShMy6NBfDxug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.018 [XNIO-1 task-2] 7oTZ6hntTPShMy6NBfDxug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:47.019 [XNIO-1 task-2] 7oTZ6hntTPShMy6NBfDxug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 71cd3a1d-908e-437b-8f40-2960f6a444ba +16:29:47.023 [XNIO-1 task-2] yknHzftNQxaKB8xhIuCXBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.023 [XNIO-1 task-2] yknHzftNQxaKB8xhIuCXBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.023 [XNIO-1 task-2] yknHzftNQxaKB8xhIuCXBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.023 [XNIO-1 task-2] yknHzftNQxaKB8xhIuCXBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.023 [XNIO-1 task-2] yknHzftNQxaKB8xhIuCXBA DEBUG com.networknt.schema.TypeValidator debug - validate( "58b05025-200a-4a5e-a989-bcbc1d980a82", "58b05025-200a-4a5e-a989-bcbc1d980a82", refreshToken) +16:29:47.038 [XNIO-1 task-2] 0OQTzcoKQoGSgqcXtwhBYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3b6d8a27-b7f8-4778-8797-89bcc915917d, base path is set to: null +16:29:47.039 [XNIO-1 task-2] 0OQTzcoKQoGSgqcXtwhBYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.039 [XNIO-1 task-2] 0OQTzcoKQoGSgqcXtwhBYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.039 [XNIO-1 task-2] 0OQTzcoKQoGSgqcXtwhBYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3b6d8a27-b7f8-4778-8797-89bcc915917d, base path is set to: null +16:29:47.039 [XNIO-1 task-2] 0OQTzcoKQoGSgqcXtwhBYg DEBUG com.networknt.schema.TypeValidator debug - validate( "3b6d8a27-b7f8-4778-8797-89bcc915917d", "3b6d8a27-b7f8-4778-8797-89bcc915917d", refreshToken) +16:29:47.042 [XNIO-1 task-2] 0OQTzcoKQoGSgqcXtwhBYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3b6d8a27-b7f8-4778-8797-89bcc915917d is not found.","severity":"ERROR"} +16:29:47.050 [XNIO-1 task-2] x0QyY767S9qPg7-H4mB2pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.050 [XNIO-1 task-2] x0QyY767S9qPg7-H4mB2pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.050 [XNIO-1 task-2] x0QyY767S9qPg7-H4mB2pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.050 [XNIO-1 task-2] x0QyY767S9qPg7-H4mB2pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.051 [XNIO-1 task-2] x0QyY767S9qPg7-H4mB2pQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.055 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2309437d +16:29:47.056 [XNIO-1 task-2] 861MtF4JTkqbUkugIndjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.056 [XNIO-1 task-2] 861MtF4JTkqbUkugIndjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.056 [XNIO-1 task-2] 861MtF4JTkqbUkugIndjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.056 [XNIO-1 task-2] 861MtF4JTkqbUkugIndjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.057 [XNIO-1 task-2] 861MtF4JTkqbUkugIndjqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.063 [XNIO-1 task-2] 36zOc-A6QLui49CpGqT3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.063 [XNIO-1 task-2] 36zOc-A6QLui49CpGqT3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.063 [XNIO-1 task-2] 36zOc-A6QLui49CpGqT3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.064 [XNIO-1 task-2] 36zOc-A6QLui49CpGqT3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.064 [XNIO-1 task-2] 36zOc-A6QLui49CpGqT3rw DEBUG com.networknt.schema.TypeValidator debug - validate( "58b05025-200a-4a5e-a989-bcbc1d980a82", "58b05025-200a-4a5e-a989-bcbc1d980a82", refreshToken) +16:29:47.064 [XNIO-1 task-2] 36zOc-A6QLui49CpGqT3rw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58b05025-200a-4a5e-a989-bcbc1d980a82 is not found.","severity":"ERROR"} +16:29:47.068 [XNIO-1 task-2] IMbSk9bsQSCYNtzVlZW6lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.069 [XNIO-1 task-2] IMbSk9bsQSCYNtzVlZW6lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.069 [XNIO-1 task-2] IMbSk9bsQSCYNtzVlZW6lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.069 [XNIO-1 task-2] IMbSk9bsQSCYNtzVlZW6lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.069 [XNIO-1 task-2] IMbSk9bsQSCYNtzVlZW6lw DEBUG com.networknt.schema.TypeValidator debug - validate( "58b05025-200a-4a5e-a989-bcbc1d980a82", "58b05025-200a-4a5e-a989-bcbc1d980a82", refreshToken) +16:29:47.069 [XNIO-1 task-2] IMbSk9bsQSCYNtzVlZW6lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58b05025-200a-4a5e-a989-bcbc1d980a82 is not found.","severity":"ERROR"} +16:29:47.071 [XNIO-1 task-2] wG5L97cNRm2V5g3WJ2DiYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.071 [XNIO-1 task-2] wG5L97cNRm2V5g3WJ2DiYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.072 [XNIO-1 task-2] wG5L97cNRm2V5g3WJ2DiYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.073 [XNIO-1 task-2] wG5L97cNRm2V5g3WJ2DiYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.085 [XNIO-1 task-2] G8exJ9hGT6WmNWkbEAr6Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.085 [XNIO-1 task-2] G8exJ9hGT6WmNWkbEAr6Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.085 [XNIO-1 task-2] G8exJ9hGT6WmNWkbEAr6Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.085 [XNIO-1 task-2] G8exJ9hGT6WmNWkbEAr6Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.086 [XNIO-1 task-2] G8exJ9hGT6WmNWkbEAr6Vw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.094 [XNIO-1 task-2] hsM1ucJMReWLAMABxs4m6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.094 [XNIO-1 task-2] hsM1ucJMReWLAMABxs4m6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.094 [XNIO-1 task-2] hsM1ucJMReWLAMABxs4m6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.094 [XNIO-1 task-2] hsM1ucJMReWLAMABxs4m6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.095 [XNIO-1 task-2] hsM1ucJMReWLAMABxs4m6A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.098 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4131a81e-11e4-470e-903f-66ae83ee5b57 +16:29:47.099 [XNIO-1 task-2] DnTzPxeORK2czAhUQil7JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.099 [XNIO-1 task-2] DnTzPxeORK2czAhUQil7JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.099 [XNIO-1 task-2] DnTzPxeORK2czAhUQil7JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.100 [XNIO-1 task-2] DnTzPxeORK2czAhUQil7JQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.111 [XNIO-1 task-2] zlwvlh5HRau-zp1DHps6ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.111 [XNIO-1 task-2] zlwvlh5HRau-zp1DHps6ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.111 [XNIO-1 task-2] zlwvlh5HRau-zp1DHps6ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.111 [XNIO-1 task-2] zlwvlh5HRau-zp1DHps6ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.111 [XNIO-1 task-2] zlwvlh5HRau-zp1DHps6ew DEBUG com.networknt.schema.TypeValidator debug - validate( "58b05025-200a-4a5e-a989-bcbc1d980a82", "58b05025-200a-4a5e-a989-bcbc1d980a82", refreshToken) +16:29:47.112 [XNIO-1 task-2] zlwvlh5HRau-zp1DHps6ew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58b05025-200a-4a5e-a989-bcbc1d980a82 is not found.","severity":"ERROR"} +16:29:47.117 [XNIO-1 task-2] 7UeydseLThSuv23fmGh8Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.117 [XNIO-1 task-2] 7UeydseLThSuv23fmGh8Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.117 [XNIO-1 task-2] 7UeydseLThSuv23fmGh8Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.117 [XNIO-1 task-2] 7UeydseLThSuv23fmGh8Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.118 [XNIO-1 task-2] 7UeydseLThSuv23fmGh8Qg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 58b05025-200a-4a5e-a989-bcbc1d980a82 +16:29:47.122 [XNIO-1 task-2] 45e_FD-5TzWCV6aUkMaOTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.122 [XNIO-1 task-2] 45e_FD-5TzWCV6aUkMaOTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.122 [XNIO-1 task-2] 45e_FD-5TzWCV6aUkMaOTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.122 [XNIO-1 task-2] 45e_FD-5TzWCV6aUkMaOTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/58b05025-200a-4a5e-a989-bcbc1d980a82, base path is set to: null +16:29:47.122 [XNIO-1 task-2] 45e_FD-5TzWCV6aUkMaOTA DEBUG com.networknt.schema.TypeValidator debug - validate( "58b05025-200a-4a5e-a989-bcbc1d980a82", "58b05025-200a-4a5e-a989-bcbc1d980a82", refreshToken) +16:29:47.123 [XNIO-1 task-2] 45e_FD-5TzWCV6aUkMaOTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 58b05025-200a-4a5e-a989-bcbc1d980a82 is not found.","severity":"ERROR"} +16:29:47.128 [XNIO-1 task-2] 7MdOLAptRvyKRKbGe6fKxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.128 [XNIO-1 task-2] 7MdOLAptRvyKRKbGe6fKxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.128 [XNIO-1 task-2] 7MdOLAptRvyKRKbGe6fKxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.128 [XNIO-1 task-2] 7MdOLAptRvyKRKbGe6fKxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.140 [XNIO-1 task-2] jYnFnNjOSoONy2hJDKdAGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:47.140 [XNIO-1 task-2] jYnFnNjOSoONy2hJDKdAGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.140 [XNIO-1 task-2] jYnFnNjOSoONy2hJDKdAGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.140 [XNIO-1 task-2] jYnFnNjOSoONy2hJDKdAGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:47.140 [XNIO-1 task-2] jYnFnNjOSoONy2hJDKdAGg DEBUG com.networknt.schema.TypeValidator debug - validate( "71cd3a1d-908e-437b-8f40-2960f6a444ba", "71cd3a1d-908e-437b-8f40-2960f6a444ba", refreshToken) +16:29:47.141 [XNIO-1 task-2] jYnFnNjOSoONy2hJDKdAGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 71cd3a1d-908e-437b-8f40-2960f6a444ba is not found.","severity":"ERROR"} +16:29:47.145 [XNIO-1 task-2] 6YlF_zxPSRGg_87NBl-HYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.145 [XNIO-1 task-2] 6YlF_zxPSRGg_87NBl-HYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.146 [XNIO-1 task-2] 6YlF_zxPSRGg_87NBl-HYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.146 [XNIO-1 task-2] 6YlF_zxPSRGg_87NBl-HYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.150 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6d558e80 +16:29:47.155 [XNIO-1 task-2] ycdhnUMARYGkZVbWRdI1Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:47.157 [XNIO-1 task-2] ycdhnUMARYGkZVbWRdI1Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.157 [XNIO-1 task-2] ycdhnUMARYGkZVbWRdI1Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.157 [XNIO-1 task-2] ycdhnUMARYGkZVbWRdI1Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e46e2fb-8463-4edd-b4cb-626cc8acf1d5, base path is set to: null +16:29:47.158 [XNIO-1 task-2] ycdhnUMARYGkZVbWRdI1Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", "9e46e2fb-8463-4edd-b4cb-626cc8acf1d5", refreshToken) +16:29:47.158 [XNIO-1 task-2] ycdhnUMARYGkZVbWRdI1Fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e46e2fb-8463-4edd-b4cb-626cc8acf1d5 is not found.","severity":"ERROR"} +16:29:47.162 [XNIO-1 task-2] BOAc5xSMTCeRWVDJjEbAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.162 [XNIO-1 task-2] BOAc5xSMTCeRWVDJjEbAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.162 [XNIO-1 task-2] BOAc5xSMTCeRWVDJjEbAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.162 [XNIO-1 task-2] BOAc5xSMTCeRWVDJjEbAcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.170 [XNIO-1 task-2] rzHZ5A7hRAaq15GwBXZSwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d, base path is set to: null +16:29:47.170 [XNIO-1 task-2] rzHZ5A7hRAaq15GwBXZSwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.170 [XNIO-1 task-2] rzHZ5A7hRAaq15GwBXZSwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.170 [XNIO-1 task-2] rzHZ5A7hRAaq15GwBXZSwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d, base path is set to: null +16:29:47.170 [XNIO-1 task-2] rzHZ5A7hRAaq15GwBXZSwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f42282e-c9ff-408f-9063-aa8bf2e0182d", "5f42282e-c9ff-408f-9063-aa8bf2e0182d", refreshToken) +16:29:47.192 [XNIO-1 task-2] UJWVqS5YT7m4Tk1j0mZSxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:47.192 [XNIO-1 task-2] UJWVqS5YT7m4Tk1j0mZSxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.192 [XNIO-1 task-2] UJWVqS5YT7m4Tk1j0mZSxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.192 [XNIO-1 task-2] UJWVqS5YT7m4Tk1j0mZSxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd, base path is set to: null +16:29:47.193 [XNIO-1 task-2] UJWVqS5YT7m4Tk1j0mZSxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", "fbf8e215-a48c-4704-a560-b7d9c17ccfdd", refreshToken) +16:29:47.196 [XNIO-1 task-2] UJWVqS5YT7m4Tk1j0mZSxQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fbf8e215-a48c-4704-a560-b7d9c17ccfdd is not found.","severity":"ERROR"} +16:29:47.203 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:764ce932 +16:29:47.203 [XNIO-1 task-2] DAcrYIHQTa65NcVrGKELpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d, base path is set to: null +16:29:47.204 [XNIO-1 task-2] DAcrYIHQTa65NcVrGKELpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.204 [XNIO-1 task-2] DAcrYIHQTa65NcVrGKELpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.204 [XNIO-1 task-2] DAcrYIHQTa65NcVrGKELpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d, base path is set to: null +16:29:47.204 [XNIO-1 task-2] DAcrYIHQTa65NcVrGKELpw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f42282e-c9ff-408f-9063-aa8bf2e0182d", "5f42282e-c9ff-408f-9063-aa8bf2e0182d", refreshToken) +16:29:47.208 [XNIO-1 task-2] DAcrYIHQTa65NcVrGKELpw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5f42282e-c9ff-408f-9063-aa8bf2e0182d is not found.","severity":"ERROR"} +16:29:47.211 [XNIO-1 task-2] yNTA_VECSyqWibjJVq32cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:47.211 [XNIO-1 task-2] yNTA_VECSyqWibjJVq32cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.211 [XNIO-1 task-2] yNTA_VECSyqWibjJVq32cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.211 [XNIO-1 task-2] yNTA_VECSyqWibjJVq32cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:47.212 [XNIO-1 task-2] yNTA_VECSyqWibjJVq32cw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:47.215 [XNIO-1 task-2] N3-8b01ZQ_uL_qfS5osMJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.215 [XNIO-1 task-2] N3-8b01ZQ_uL_qfS5osMJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.215 [XNIO-1 task-2] N3-8b01ZQ_uL_qfS5osMJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.216 [XNIO-1 task-2] N3-8b01ZQ_uL_qfS5osMJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.216 [XNIO-1 task-2] N3-8b01ZQ_uL_qfS5osMJA DEBUG com.networknt.schema.TypeValidator debug - validate( "a63b2427-996a-427a-a04c-70a8a0b9bb5f", "a63b2427-996a-427a-a04c-70a8a0b9bb5f", refreshToken) +16:29:47.216 [XNIO-1 task-2] N3-8b01ZQ_uL_qfS5osMJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a63b2427-996a-427a-a04c-70a8a0b9bb5f is not found.","severity":"ERROR"} +16:29:47.218 [XNIO-1 task-2] OztjKBgoSdejyQWhIqOJkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.218 [XNIO-1 task-2] OztjKBgoSdejyQWhIqOJkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.219 [XNIO-1 task-2] OztjKBgoSdejyQWhIqOJkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.219 [XNIO-1 task-2] OztjKBgoSdejyQWhIqOJkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.219 [XNIO-1 task-2] OztjKBgoSdejyQWhIqOJkg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.223 [XNIO-1 task-2] My0z48PUTNaLYjMGlvtwGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:47.223 [XNIO-1 task-2] My0z48PUTNaLYjMGlvtwGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.223 [XNIO-1 task-2] My0z48PUTNaLYjMGlvtwGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.223 [XNIO-1 task-2] My0z48PUTNaLYjMGlvtwGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:47.223 [XNIO-1 task-2] My0z48PUTNaLYjMGlvtwGA DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:47.224 [XNIO-1 task-2] My0z48PUTNaLYjMGlvtwGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:47.224 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.231 [XNIO-1 task-2] yVkxo4o9RAW21WLGHjVB-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:47.231 [XNIO-1 task-2] yVkxo4o9RAW21WLGHjVB-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.231 [XNIO-1 task-2] yVkxo4o9RAW21WLGHjVB-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.231 [XNIO-1 task-2] yVkxo4o9RAW21WLGHjVB-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:47.232 [XNIO-1 task-2] yVkxo4o9RAW21WLGHjVB-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:47.240 [XNIO-1 task-2] TV0BQIrLRxCZCPlJ8SAPCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.240 [XNIO-1 task-2] TV0BQIrLRxCZCPlJ8SAPCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.240 [XNIO-1 task-2] TV0BQIrLRxCZCPlJ8SAPCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.240 [XNIO-1 task-2] TV0BQIrLRxCZCPlJ8SAPCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.240 [XNIO-1 task-2] TV0BQIrLRxCZCPlJ8SAPCg DEBUG com.networknt.schema.TypeValidator debug - validate( "a63b2427-996a-427a-a04c-70a8a0b9bb5f", "a63b2427-996a-427a-a04c-70a8a0b9bb5f", refreshToken) +16:29:47.241 [XNIO-1 task-2] TV0BQIrLRxCZCPlJ8SAPCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a63b2427-996a-427a-a04c-70a8a0b9bb5f is not found.","severity":"ERROR"} +16:29:47.244 [XNIO-1 task-2] U_FkpUaYTleLy4oohWUU6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.244 [XNIO-1 task-2] U_FkpUaYTleLy4oohWUU6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.244 [XNIO-1 task-2] U_FkpUaYTleLy4oohWUU6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.244 [XNIO-1 task-2] U_FkpUaYTleLy4oohWUU6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.244 [XNIO-1 task-2] U_FkpUaYTleLy4oohWUU6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.247 [XNIO-1 task-2] n3cCgZ3jR_ScAtevdJarow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.247 [XNIO-1 task-2] n3cCgZ3jR_ScAtevdJarow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.247 [XNIO-1 task-2] n3cCgZ3jR_ScAtevdJarow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.248 [XNIO-1 task-2] n3cCgZ3jR_ScAtevdJarow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.248 [XNIO-1 task-2] n3cCgZ3jR_ScAtevdJarow DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.276 [XNIO-1 task-2] Lou4PYvyTCq3p12RI2bldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.276 [XNIO-1 task-2] Lou4PYvyTCq3p12RI2bldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.276 [XNIO-1 task-2] Lou4PYvyTCq3p12RI2bldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.276 [XNIO-1 task-2] Lou4PYvyTCq3p12RI2bldw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.277 [XNIO-1 task-2] Lou4PYvyTCq3p12RI2bldw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.282 [XNIO-1 task-2] GJanv2ucSUykHpxdBjRr7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.283 [XNIO-1 task-2] GJanv2ucSUykHpxdBjRr7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.283 [XNIO-1 task-2] GJanv2ucSUykHpxdBjRr7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.283 [XNIO-1 task-2] GJanv2ucSUykHpxdBjRr7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.283 [XNIO-1 task-2] GJanv2ucSUykHpxdBjRr7w DEBUG com.networknt.schema.TypeValidator debug - validate( "a63b2427-996a-427a-a04c-70a8a0b9bb5f", "a63b2427-996a-427a-a04c-70a8a0b9bb5f", refreshToken) +16:29:47.284 [XNIO-1 task-2] GJanv2ucSUykHpxdBjRr7w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a63b2427-996a-427a-a04c-70a8a0b9bb5f is not found.","severity":"ERROR"} +16:29:47.288 [XNIO-1 task-2] kFM8jopyRFOE39eVeNZUxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.288 [XNIO-1 task-2] kFM8jopyRFOE39eVeNZUxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.288 [XNIO-1 task-2] kFM8jopyRFOE39eVeNZUxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.288 [XNIO-1 task-2] kFM8jopyRFOE39eVeNZUxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.288 [XNIO-1 task-2] kFM8jopyRFOE39eVeNZUxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.292 [XNIO-1 task-2] KUGyWgQgRs6LS3dD7gzqtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.292 [XNIO-1 task-2] KUGyWgQgRs6LS3dD7gzqtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.292 [XNIO-1 task-2] KUGyWgQgRs6LS3dD7gzqtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.293 [XNIO-1 task-2] KUGyWgQgRs6LS3dD7gzqtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a63b2427-996a-427a-a04c-70a8a0b9bb5f, base path is set to: null +16:29:47.293 [XNIO-1 task-2] KUGyWgQgRs6LS3dD7gzqtg DEBUG com.networknt.schema.TypeValidator debug - validate( "a63b2427-996a-427a-a04c-70a8a0b9bb5f", "a63b2427-996a-427a-a04c-70a8a0b9bb5f", refreshToken) +16:29:47.294 [XNIO-1 task-2] KUGyWgQgRs6LS3dD7gzqtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a63b2427-996a-427a-a04c-70a8a0b9bb5f is not found.","severity":"ERROR"} +16:29:47.302 [XNIO-1 task-2] QHWOf8JHRpWuOzH7OVQV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.302 [XNIO-1 task-2] QHWOf8JHRpWuOzH7OVQV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.303 [XNIO-1 task-2] QHWOf8JHRpWuOzH7OVQV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.303 [XNIO-1 task-2] QHWOf8JHRpWuOzH7OVQV-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.304 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:810fa8fa +16:29:47.306 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:810fa8fa +16:29:47.309 [XNIO-1 task-2] rtBvZGLWSlmn5FnjdbZ1-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.310 [XNIO-1 task-2] rtBvZGLWSlmn5FnjdbZ1-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.310 [XNIO-1 task-2] rtBvZGLWSlmn5FnjdbZ1-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.310 [XNIO-1 task-2] rtBvZGLWSlmn5FnjdbZ1-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.310 [XNIO-1 task-2] rtBvZGLWSlmn5FnjdbZ1-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.313 [XNIO-1 task-2] S4JhQViqTGiBIyOwgxjKig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.313 [XNIO-1 task-2] S4JhQViqTGiBIyOwgxjKig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.314 [XNIO-1 task-2] S4JhQViqTGiBIyOwgxjKig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.315 [XNIO-1 task-2] S4JhQViqTGiBIyOwgxjKig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.315 [XNIO-1 task-2] S4JhQViqTGiBIyOwgxjKig DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.320 [XNIO-1 task-2] Xp4NSGMbRR-_aiXdYEXIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.320 [XNIO-1 task-2] Xp4NSGMbRR-_aiXdYEXIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.321 [XNIO-1 task-2] Xp4NSGMbRR-_aiXdYEXIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.321 [XNIO-1 task-2] Xp4NSGMbRR-_aiXdYEXIdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.333 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0df26301 +16:29:47.334 [XNIO-1 task-2] 3V2DbY4WQb6CGeqT_TZ3Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.334 [XNIO-1 task-2] 3V2DbY4WQb6CGeqT_TZ3Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.334 [XNIO-1 task-2] 3V2DbY4WQb6CGeqT_TZ3Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.335 [XNIO-1 task-2] 3V2DbY4WQb6CGeqT_TZ3Dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.339 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:94ed7211-3530-4c3a-9ae7-11632493ae75 +16:29:47.340 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0df26301 +16:29:47.350 [XNIO-1 task-2] 4DrbxuMoS4WKNX20Jefe5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:47.350 [XNIO-1 task-2] 4DrbxuMoS4WKNX20Jefe5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.350 [XNIO-1 task-2] 4DrbxuMoS4WKNX20Jefe5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.350 [XNIO-1 task-2] 4DrbxuMoS4WKNX20Jefe5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:47.350 [XNIO-1 task-2] 4DrbxuMoS4WKNX20Jefe5A DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:47.351 [XNIO-1 task-2] 4DrbxuMoS4WKNX20Jefe5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:47.356 [XNIO-1 task-2] FSjB6MtORn2qLjH_CbbOKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43e18a2d-658f-42e8-8628-fff24a3c1b7d, base path is set to: null +16:29:47.356 [XNIO-1 task-2] FSjB6MtORn2qLjH_CbbOKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.356 [XNIO-1 task-2] FSjB6MtORn2qLjH_CbbOKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.356 [XNIO-1 task-2] FSjB6MtORn2qLjH_CbbOKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43e18a2d-658f-42e8-8628-fff24a3c1b7d, base path is set to: null +16:29:47.356 [XNIO-1 task-2] FSjB6MtORn2qLjH_CbbOKw DEBUG com.networknt.schema.TypeValidator debug - validate( "43e18a2d-658f-42e8-8628-fff24a3c1b7d", "43e18a2d-658f-42e8-8628-fff24a3c1b7d", refreshToken) +16:29:47.359 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0df26301 +16:29:47.395 [XNIO-1 task-2] YR_tOGybS-uO0d3BbOje2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d, base path is set to: null +16:29:47.395 [XNIO-1 task-2] YR_tOGybS-uO0d3BbOje2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.395 [XNIO-1 task-2] YR_tOGybS-uO0d3BbOje2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.395 [XNIO-1 task-2] YR_tOGybS-uO0d3BbOje2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5f42282e-c9ff-408f-9063-aa8bf2e0182d, base path is set to: null +16:29:47.396 [XNIO-1 task-2] YR_tOGybS-uO0d3BbOje2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5f42282e-c9ff-408f-9063-aa8bf2e0182d", "5f42282e-c9ff-408f-9063-aa8bf2e0182d", refreshToken) +16:29:47.396 [XNIO-1 task-2] YR_tOGybS-uO0d3BbOje2Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5f42282e-c9ff-408f-9063-aa8bf2e0182d is not found.","severity":"ERROR"} +16:29:47.405 [XNIO-1 task-2] 8lhxcL9yTbCTliTVHRYMCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.405 [XNIO-1 task-2] 8lhxcL9yTbCTliTVHRYMCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.405 [XNIO-1 task-2] 8lhxcL9yTbCTliTVHRYMCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.406 [XNIO-1 task-2] 8lhxcL9yTbCTliTVHRYMCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.406 [XNIO-1 task-2] 8lhxcL9yTbCTliTVHRYMCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.419 [XNIO-1 task-2] qjj4vy8mToS9LHdREjMpOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.419 [XNIO-1 task-2] qjj4vy8mToS9LHdREjMpOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.419 [XNIO-1 task-2] qjj4vy8mToS9LHdREjMpOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.420 [XNIO-1 task-2] qjj4vy8mToS9LHdREjMpOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.420 [XNIO-1 task-2] qjj4vy8mToS9LHdREjMpOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.424 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:810fa8fa +16:29:47.431 [XNIO-1 task-2] yOS57CyzTnaXA5x7bAGr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.432 [XNIO-1 task-2] yOS57CyzTnaXA5x7bAGr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.434 [XNIO-1 task-2] yOS57CyzTnaXA5x7bAGr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.435 [XNIO-1 task-2] yOS57CyzTnaXA5x7bAGr9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.447 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.452 [XNIO-1 task-2] lPfOxi6cRROEnq4WFOuT-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.452 [XNIO-1 task-2] lPfOxi6cRROEnq4WFOuT-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.452 [XNIO-1 task-2] lPfOxi6cRROEnq4WFOuT-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.452 [XNIO-1 task-2] lPfOxi6cRROEnq4WFOuT-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.453 [XNIO-1 task-2] lPfOxi6cRROEnq4WFOuT-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.457 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23fb534c +16:29:47.461 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23fb534c +16:29:47.463 [XNIO-1 task-2] 9eNack2FS5inrreITnMeCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.464 [XNIO-1 task-2] 9eNack2FS5inrreITnMeCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.464 [XNIO-1 task-2] 9eNack2FS5inrreITnMeCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.464 [XNIO-1 task-2] 9eNack2FS5inrreITnMeCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.464 [XNIO-1 task-2] 9eNack2FS5inrreITnMeCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.472 [XNIO-1 task-2] Ka9SYi_xSVG3Z_PEYdsnOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.472 [XNIO-1 task-2] Ka9SYi_xSVG3Z_PEYdsnOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.472 [XNIO-1 task-2] Ka9SYi_xSVG3Z_PEYdsnOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.472 [XNIO-1 task-2] Ka9SYi_xSVG3Z_PEYdsnOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.473 [XNIO-1 task-2] Ka9SYi_xSVG3Z_PEYdsnOw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.481 [XNIO-1 task-2] XJ66VCgIQviGuTBynUEQGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.481 [XNIO-1 task-2] XJ66VCgIQviGuTBynUEQGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.481 [XNIO-1 task-2] XJ66VCgIQviGuTBynUEQGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.482 [XNIO-1 task-2] XJ66VCgIQviGuTBynUEQGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.486 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0df26301 +16:29:47.492 [XNIO-1 task-2] lcE_8zn3Tq6YML4W_hCW5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.492 [XNIO-1 task-2] lcE_8zn3Tq6YML4W_hCW5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.492 [XNIO-1 task-2] lcE_8zn3Tq6YML4W_hCW5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.492 [XNIO-1 task-2] lcE_8zn3Tq6YML4W_hCW5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.493 [XNIO-1 task-2] lcE_8zn3Tq6YML4W_hCW5w DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.494 [XNIO-1 task-2] lcE_8zn3Tq6YML4W_hCW5w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.497 [XNIO-1 task-2] PfBLucfOTqeVqcqleIo8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.497 [XNIO-1 task-2] PfBLucfOTqeVqcqleIo8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.497 [XNIO-1 task-2] PfBLucfOTqeVqcqleIo8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.497 [XNIO-1 task-2] PfBLucfOTqeVqcqleIo8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.499 [XNIO-1 task-2] PfBLucfOTqeVqcqleIo8FA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.502 [XNIO-1 task-2] 7MzAYoOSQOapd6tWu61h3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.503 [XNIO-1 task-2] 7MzAYoOSQOapd6tWu61h3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.503 [XNIO-1 task-2] 7MzAYoOSQOapd6tWu61h3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.503 [XNIO-1 task-2] 7MzAYoOSQOapd6tWu61h3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.503 [XNIO-1 task-2] 7MzAYoOSQOapd6tWu61h3A DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.504 [XNIO-1 task-2] 7MzAYoOSQOapd6tWu61h3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.507 [XNIO-1 task-2] Hhb6fAV_SZahzI5s0OTtYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.507 [XNIO-1 task-2] Hhb6fAV_SZahzI5s0OTtYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.507 [XNIO-1 task-2] Hhb6fAV_SZahzI5s0OTtYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.507 [XNIO-1 task-2] Hhb6fAV_SZahzI5s0OTtYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.507 [XNIO-1 task-2] Hhb6fAV_SZahzI5s0OTtYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.510 [XNIO-1 task-2] qVNQOlHRRRyHnIG4LZBPlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.510 [XNIO-1 task-2] qVNQOlHRRRyHnIG4LZBPlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.510 [XNIO-1 task-2] qVNQOlHRRRyHnIG4LZBPlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.510 [XNIO-1 task-2] qVNQOlHRRRyHnIG4LZBPlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.511 [XNIO-1 task-2] qVNQOlHRRRyHnIG4LZBPlA DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.511 [XNIO-1 task-2] qVNQOlHRRRyHnIG4LZBPlA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.515 [XNIO-1 task-2] TRiZ9x5jTCSl07G3aEUTog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.515 [XNIO-1 task-2] TRiZ9x5jTCSl07G3aEUTog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.515 [XNIO-1 task-2] TRiZ9x5jTCSl07G3aEUTog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.516 [XNIO-1 task-2] TRiZ9x5jTCSl07G3aEUTog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.518 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:764ce932 +16:29:47.524 [XNIO-1 task-2] oJHZN4-sQwOr9pTHftBcoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.524 [XNIO-1 task-2] oJHZN4-sQwOr9pTHftBcoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.524 [XNIO-1 task-2] oJHZN4-sQwOr9pTHftBcoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.525 [XNIO-1 task-2] oJHZN4-sQwOr9pTHftBcoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.525 [XNIO-1 task-2] oJHZN4-sQwOr9pTHftBcoA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.532 [XNIO-1 task-2] Z2SXISeVTXKjjPnokv0ktQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:47.532 [XNIO-1 task-2] Z2SXISeVTXKjjPnokv0ktQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.532 [XNIO-1 task-2] Z2SXISeVTXKjjPnokv0ktQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.532 [XNIO-1 task-2] Z2SXISeVTXKjjPnokv0ktQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:47.532 [XNIO-1 task-2] Z2SXISeVTXKjjPnokv0ktQ DEBUG com.networknt.schema.TypeValidator debug - validate( "70768563-9620-4b6b-9fbf-101b3fd88c1e", "70768563-9620-4b6b-9fbf-101b3fd88c1e", refreshToken) +16:29:47.536 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:47.545 [XNIO-1 task-2] YJmDZolJToqrZbqtPb2QOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:47.546 [XNIO-1 task-2] YJmDZolJToqrZbqtPb2QOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.547 [XNIO-1 task-2] YJmDZolJToqrZbqtPb2QOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.547 [XNIO-1 task-2] YJmDZolJToqrZbqtPb2QOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:47.547 [XNIO-1 task-2] YJmDZolJToqrZbqtPb2QOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", refreshToken) +16:29:47.547 [XNIO-1 task-2] YJmDZolJToqrZbqtPb2QOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ecacf795-4779-4f2c-a1ad-aceb3b29e7ba is not found.","severity":"ERROR"} +16:29:47.553 [XNIO-1 task-2] KMrhmTCaR_uegExoEK1SlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e +16:29:47.553 [XNIO-1 task-2] KMrhmTCaR_uegExoEK1SlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.554 [XNIO-1 task-2] KMrhmTCaR_uegExoEK1SlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.555 [XNIO-1 task-2] KMrhmTCaR_uegExoEK1SlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e +16:29:47.555 [XNIO-1 task-2] KMrhmTCaR_uegExoEK1SlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 70768563-9620-4b6b-9fbf-101b3fd88c1e +16:29:47.568 [XNIO-1 task-2] 0ncMD1vNQJ-E9QY2WqCUhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:47.569 [XNIO-1 task-2] 0ncMD1vNQJ-E9QY2WqCUhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.569 [XNIO-1 task-2] 0ncMD1vNQJ-E9QY2WqCUhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.569 [XNIO-1 task-2] 0ncMD1vNQJ-E9QY2WqCUhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:47.569 [XNIO-1 task-2] 0ncMD1vNQJ-E9QY2WqCUhA DEBUG com.networknt.schema.TypeValidator debug - validate( "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", refreshToken) +16:29:47.570 [XNIO-1 task-2] 0ncMD1vNQJ-E9QY2WqCUhA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ecacf795-4779-4f2c-a1ad-aceb3b29e7ba is not found.","severity":"ERROR"} +16:29:47.576 [XNIO-1 task-2] YfkfBCFySDeGyXLsayz6cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:47.576 [XNIO-1 task-2] YfkfBCFySDeGyXLsayz6cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.576 [XNIO-1 task-2] YfkfBCFySDeGyXLsayz6cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.576 [XNIO-1 task-2] YfkfBCFySDeGyXLsayz6cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:47.576 [XNIO-1 task-2] YfkfBCFySDeGyXLsayz6cg DEBUG com.networknt.schema.TypeValidator debug - validate( "71cd3a1d-908e-437b-8f40-2960f6a444ba", "71cd3a1d-908e-437b-8f40-2960f6a444ba", refreshToken) +16:29:47.577 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6d558e80 +16:29:47.584 [XNIO-1 task-2] j6bqMFdhT9aNwrWx-smInQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:47.584 [XNIO-1 task-2] j6bqMFdhT9aNwrWx-smInQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.584 [XNIO-1 task-2] j6bqMFdhT9aNwrWx-smInQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.584 [XNIO-1 task-2] j6bqMFdhT9aNwrWx-smInQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:47.585 [XNIO-1 task-2] j6bqMFdhT9aNwrWx-smInQ DEBUG com.networknt.schema.TypeValidator debug - validate( "70768563-9620-4b6b-9fbf-101b3fd88c1e", "70768563-9620-4b6b-9fbf-101b3fd88c1e", refreshToken) +16:29:47.585 [XNIO-1 task-2] j6bqMFdhT9aNwrWx-smInQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 70768563-9620-4b6b-9fbf-101b3fd88c1e is not found.","severity":"ERROR"} +16:29:47.594 [XNIO-1 task-2] uIeKeSAUQwyanzXDkQk-LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.594 [XNIO-1 task-2] uIeKeSAUQwyanzXDkQk-LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.594 [XNIO-1 task-2] uIeKeSAUQwyanzXDkQk-LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.595 [XNIO-1 task-2] uIeKeSAUQwyanzXDkQk-LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.595 [XNIO-1 task-2] uIeKeSAUQwyanzXDkQk-LA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.599 [XNIO-1 task-2] 6SEnlQVXQYuLgh2mWG5n-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:47.599 [XNIO-1 task-2] 6SEnlQVXQYuLgh2mWG5n-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.599 [XNIO-1 task-2] 6SEnlQVXQYuLgh2mWG5n-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.599 [XNIO-1 task-2] 6SEnlQVXQYuLgh2mWG5n-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/71cd3a1d-908e-437b-8f40-2960f6a444ba, base path is set to: null +16:29:47.599 [XNIO-1 task-2] 6SEnlQVXQYuLgh2mWG5n-w DEBUG com.networknt.schema.TypeValidator debug - validate( "71cd3a1d-908e-437b-8f40-2960f6a444ba", "71cd3a1d-908e-437b-8f40-2960f6a444ba", refreshToken) +16:29:47.600 [XNIO-1 task-2] 6SEnlQVXQYuLgh2mWG5n-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 71cd3a1d-908e-437b-8f40-2960f6a444ba is not found.","severity":"ERROR"} +16:29:47.606 [XNIO-1 task-2] yIYrcZswSKySa1RmPbLB1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.606 [XNIO-1 task-2] yIYrcZswSKySa1RmPbLB1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.606 [XNIO-1 task-2] yIYrcZswSKySa1RmPbLB1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.606 [XNIO-1 task-2] yIYrcZswSKySa1RmPbLB1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.606 [XNIO-1 task-2] yIYrcZswSKySa1RmPbLB1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:47.609 [XNIO-1 task-2] WaA11RtqRKeRvjmDt1WJUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.609 [XNIO-1 task-2] WaA11RtqRKeRvjmDt1WJUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.609 [XNIO-1 task-2] WaA11RtqRKeRvjmDt1WJUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.609 [XNIO-1 task-2] WaA11RtqRKeRvjmDt1WJUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.609 [XNIO-1 task-2] WaA11RtqRKeRvjmDt1WJUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", refreshToken) +16:29:47.611 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:47.621 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:47.626 [XNIO-1 task-2] gbd2iXlHSJGD3afb4Hbdlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:47.626 [XNIO-1 task-2] gbd2iXlHSJGD3afb4Hbdlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.626 [XNIO-1 task-2] gbd2iXlHSJGD3afb4Hbdlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.626 [XNIO-1 task-2] gbd2iXlHSJGD3afb4Hbdlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:47.627 [XNIO-1 task-2] gbd2iXlHSJGD3afb4Hbdlw DEBUG com.networknt.schema.TypeValidator debug - validate( "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", refreshToken) +16:29:47.627 [XNIO-1 task-2] gbd2iXlHSJGD3afb4Hbdlw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ecacf795-4779-4f2c-a1ad-aceb3b29e7ba is not found.","severity":"ERROR"} +16:29:47.634 [XNIO-1 task-2] R-osCaUPT9aDXmklzDRcAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.634 [XNIO-1 task-2] R-osCaUPT9aDXmklzDRcAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.634 [XNIO-1 task-2] R-osCaUPT9aDXmklzDRcAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.634 [XNIO-1 task-2] R-osCaUPT9aDXmklzDRcAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.634 [XNIO-1 task-2] R-osCaUPT9aDXmklzDRcAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.645 [XNIO-1 task-2] 3Dy0Y1dxRTqDJiJ0v6kdWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.645 [XNIO-1 task-2] 3Dy0Y1dxRTqDJiJ0v6kdWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.645 [XNIO-1 task-2] 3Dy0Y1dxRTqDJiJ0v6kdWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.645 [XNIO-1 task-2] 3Dy0Y1dxRTqDJiJ0v6kdWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.645 [XNIO-1 task-2] 3Dy0Y1dxRTqDJiJ0v6kdWg DEBUG com.networknt.schema.TypeValidator debug - validate( "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", refreshToken) +16:29:47.645 [XNIO-1 task-2] 3Dy0Y1dxRTqDJiJ0v6kdWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec62d610-b4d9-4021-9ea2-b447b6fdb72f is not found.","severity":"ERROR"} +16:29:47.650 [XNIO-1 task-2] ouA6sUOpTJm--EvRkz48Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.650 [XNIO-1 task-2] ouA6sUOpTJm--EvRkz48Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.650 [XNIO-1 task-2] ouA6sUOpTJm--EvRkz48Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.650 [XNIO-1 task-2] ouA6sUOpTJm--EvRkz48Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.651 [XNIO-1 task-2] ouA6sUOpTJm--EvRkz48Zg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.656 [XNIO-1 task-2] BeP2pPSNQ3SwP5EgLr8y6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58, base path is set to: null +16:29:47.656 [XNIO-1 task-2] BeP2pPSNQ3SwP5EgLr8y6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.657 [XNIO-1 task-2] BeP2pPSNQ3SwP5EgLr8y6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.657 [XNIO-1 task-2] BeP2pPSNQ3SwP5EgLr8y6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58, base path is set to: null +16:29:47.657 [XNIO-1 task-2] BeP2pPSNQ3SwP5EgLr8y6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1eb15e6d-9a8f-437f-96dd-10e94206bd58", "1eb15e6d-9a8f-437f-96dd-10e94206bd58", refreshToken) +16:29:47.657 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.661 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fe2c6166-2c12-450e-a113-30cfdc7c550d +16:29:47.670 [XNIO-1 task-2] n0oroN-SSnCi32ZTNeo8QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.670 [XNIO-1 task-2] n0oroN-SSnCi32ZTNeo8QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.670 [XNIO-1 task-2] n0oroN-SSnCi32ZTNeo8QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.670 [XNIO-1 task-2] n0oroN-SSnCi32ZTNeo8QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.670 [XNIO-1 task-2] n0oroN-SSnCi32ZTNeo8QA DEBUG com.networknt.schema.TypeValidator debug - validate( "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", refreshToken) +16:29:47.671 [XNIO-1 task-2] n0oroN-SSnCi32ZTNeo8QA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec62d610-b4d9-4021-9ea2-b447b6fdb72f is not found.","severity":"ERROR"} +16:29:47.683 [XNIO-1 task-2] 46durolRSyivS-DZmD7CLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.683 [XNIO-1 task-2] 46durolRSyivS-DZmD7CLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.683 [XNIO-1 task-2] 46durolRSyivS-DZmD7CLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.684 [XNIO-1 task-2] 46durolRSyivS-DZmD7CLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.684 [XNIO-1 task-2] 46durolRSyivS-DZmD7CLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.718 [XNIO-1 task-2] 46durolRSyivS-DZmD7CLg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1eb15e6d-9a8f-437f-96dd-10e94206bd58 is not found.","severity":"ERROR"} +16:29:47.725 [XNIO-1 task-2] 13lSIvPIRnynsn0UK8l14A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.725 [XNIO-1 task-2] 13lSIvPIRnynsn0UK8l14A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.725 [XNIO-1 task-2] 13lSIvPIRnynsn0UK8l14A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.725 [XNIO-1 task-2] 13lSIvPIRnynsn0UK8l14A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.730 [XNIO-1 task-2] 13lSIvPIRnynsn0UK8l14A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.737 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fe2c6166-2c12-450e-a113-30cfdc7c550d +16:29:47.743 [XNIO-1 task-2] DLki8XKlTRymg_GoYiQ5cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.743 [XNIO-1 task-2] DLki8XKlTRymg_GoYiQ5cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.743 [XNIO-1 task-2] DLki8XKlTRymg_GoYiQ5cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.743 [XNIO-1 task-2] DLki8XKlTRymg_GoYiQ5cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.745 [XNIO-1 task-2] DLki8XKlTRymg_GoYiQ5cw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.746 [XNIO-1 task-2] DLki8XKlTRymg_GoYiQ5cw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1eb15e6d-9a8f-437f-96dd-10e94206bd58 is not found.","severity":"ERROR"} +16:29:47.756 [XNIO-1 task-2] xndZ-57GQN2yiaUwnvvtYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.756 [XNIO-1 task-2] xndZ-57GQN2yiaUwnvvtYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.756 [XNIO-1 task-2] xndZ-57GQN2yiaUwnvvtYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.756 [XNIO-1 task-2] xndZ-57GQN2yiaUwnvvtYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.758 [XNIO-1 task-2] xndZ-57GQN2yiaUwnvvtYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.763 [XNIO-1 task-2] dbidJxU1RN-a9ZSMsxxOKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.763 [XNIO-1 task-2] dbidJxU1RN-a9ZSMsxxOKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.764 [XNIO-1 task-2] dbidJxU1RN-a9ZSMsxxOKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.764 [XNIO-1 task-2] dbidJxU1RN-a9ZSMsxxOKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.764 [XNIO-1 task-2] dbidJxU1RN-a9ZSMsxxOKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.769 [XNIO-1 task-2] 1p22ys-mSTyrDtXtI_zblQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.770 [XNIO-1 task-2] 1p22ys-mSTyrDtXtI_zblQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.770 [XNIO-1 task-2] 1p22ys-mSTyrDtXtI_zblQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.770 [XNIO-1 task-2] 1p22ys-mSTyrDtXtI_zblQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f, base path is set to: null +16:29:47.771 [XNIO-1 task-2] 1p22ys-mSTyrDtXtI_zblQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", "ec62d610-b4d9-4021-9ea2-b447b6fdb72f", refreshToken) +16:29:47.772 [XNIO-1 task-2] 1p22ys-mSTyrDtXtI_zblQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec62d610-b4d9-4021-9ea2-b447b6fdb72f is not found.","severity":"ERROR"} +16:29:47.776 [XNIO-1 task-2] iqKd1Y2wQIilBm9zQd-KcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.776 [XNIO-1 task-2] iqKd1Y2wQIilBm9zQd-KcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.776 [XNIO-1 task-2] iqKd1Y2wQIilBm9zQd-KcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.776 [XNIO-1 task-2] iqKd1Y2wQIilBm9zQd-KcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.777 [XNIO-1 task-2] iqKd1Y2wQIilBm9zQd-KcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1eb15e6d-9a8f-437f-96dd-10e94206bd58 +16:29:47.778 [XNIO-1 task-2] iqKd1Y2wQIilBm9zQd-KcA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1eb15e6d-9a8f-437f-96dd-10e94206bd58 is not found.","severity":"ERROR"} +16:29:47.784 [XNIO-1 task-2] oJ6H9sxASviTyWgTrSyWxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.785 [XNIO-1 task-2] oJ6H9sxASviTyWgTrSyWxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.785 [XNIO-1 task-2] oJ6H9sxASviTyWgTrSyWxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.785 [XNIO-1 task-2] oJ6H9sxASviTyWgTrSyWxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.785 [XNIO-1 task-2] oJ6H9sxASviTyWgTrSyWxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.795 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:47.796 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d0b48f0a-38dd-498b-9dd7-087d678e5e2e +16:29:47.797 [XNIO-1 task-2] to09klENS2OrOMnhVLhySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.797 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d0b48f0a-38dd-498b-9dd7-087d678e5e2e +16:29:47.798 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d0b48f0a-38dd-498b-9dd7-087d678e5e2e +16:29:47.798 [XNIO-1 task-2] to09klENS2OrOMnhVLhySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.798 [XNIO-1 task-2] to09klENS2OrOMnhVLhySQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.804 [XNIO-1 task-2] BJIjlA4WRgW_jansPu7dZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.804 [XNIO-1 task-2] BJIjlA4WRgW_jansPu7dZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.804 [XNIO-1 task-2] BJIjlA4WRgW_jansPu7dZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.804 [XNIO-1 task-2] BJIjlA4WRgW_jansPu7dZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.804 [XNIO-1 task-2] BJIjlA4WRgW_jansPu7dZg DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.804 [XNIO-1 task-2] BJIjlA4WRgW_jansPu7dZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.813 [XNIO-1 task-2] F3z6lHpbS6es6O8vRRzRxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.813 [XNIO-1 task-2] F3z6lHpbS6es6O8vRRzRxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.813 [XNIO-1 task-2] F3z6lHpbS6es6O8vRRzRxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.813 [XNIO-1 task-2] F3z6lHpbS6es6O8vRRzRxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.813 [XNIO-1 task-2] F3z6lHpbS6es6O8vRRzRxw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.816 [XNIO-1 task-2] izIaQacxTPOuaR8cOhpW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.816 [XNIO-1 task-2] izIaQacxTPOuaR8cOhpW3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.816 [XNIO-1 task-2] izIaQacxTPOuaR8cOhpW3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.816 [XNIO-1 task-2] izIaQacxTPOuaR8cOhpW3A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.817 [XNIO-1 task-2] izIaQacxTPOuaR8cOhpW3A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.822 [XNIO-1 task-2] dyTAZA2sRemS7jcFDrw6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.822 [XNIO-1 task-2] dyTAZA2sRemS7jcFDrw6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.822 [XNIO-1 task-2] dyTAZA2sRemS7jcFDrw6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.822 [XNIO-1 task-2] dyTAZA2sRemS7jcFDrw6FA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.823 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:47.828 [XNIO-1 task-2] kjRHPFMGT0urvtGeTa2eTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.828 [XNIO-1 task-2] kjRHPFMGT0urvtGeTa2eTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.828 [XNIO-1 task-2] kjRHPFMGT0urvtGeTa2eTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.828 [XNIO-1 task-2] kjRHPFMGT0urvtGeTa2eTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.829 [XNIO-1 task-2] kjRHPFMGT0urvtGeTa2eTA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.837 [XNIO-1 task-2] TXqZ97COS9OBxI8wpQxyDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.837 [XNIO-1 task-2] TXqZ97COS9OBxI8wpQxyDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.837 [XNIO-1 task-2] TXqZ97COS9OBxI8wpQxyDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.837 [XNIO-1 task-2] TXqZ97COS9OBxI8wpQxyDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.838 [XNIO-1 task-2] TXqZ97COS9OBxI8wpQxyDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 63ad3d15-a330-422a-ad2e-c3f57d3ae338 +16:29:47.840 [XNIO-1 task-2] TXqZ97COS9OBxI8wpQxyDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 63ad3d15-a330-422a-ad2e-c3f57d3ae338 is not found.","severity":"ERROR"} +16:29:47.843 [XNIO-1 task-2] mHG8axP8RzGQQyHegavHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.843 [XNIO-1 task-2] mHG8axP8RzGQQyHegavHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.843 [XNIO-1 task-2] mHG8axP8RzGQQyHegavHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.843 [XNIO-1 task-2] mHG8axP8RzGQQyHegavHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.844 [XNIO-1 task-2] mHG8axP8RzGQQyHegavHyg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.856 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:47.857 [XNIO-1 task-2] OPme97cLSO6gzPBbt2WzEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.857 [XNIO-1 task-2] OPme97cLSO6gzPBbt2WzEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.857 [XNIO-1 task-2] OPme97cLSO6gzPBbt2WzEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.857 [XNIO-1 task-2] OPme97cLSO6gzPBbt2WzEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.858 [XNIO-1 task-2] OPme97cLSO6gzPBbt2WzEw DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.858 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bcbc9920-daa2-4522-b439-8cca54258b9a +16:29:47.861 [XNIO-1 task-2] NE_fOBLJSsGZ_-O_rGv5GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.861 [XNIO-1 task-2] NE_fOBLJSsGZ_-O_rGv5GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.862 [XNIO-1 task-2] NE_fOBLJSsGZ_-O_rGv5GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.862 [XNIO-1 task-2] NE_fOBLJSsGZ_-O_rGv5GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.862 [XNIO-1 task-2] NE_fOBLJSsGZ_-O_rGv5GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.863 [XNIO-1 task-2] NE_fOBLJSsGZ_-O_rGv5GQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.869 [XNIO-1 task-2] eOUawSFOQs-dddzIn6iVNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.869 [XNIO-1 task-2] eOUawSFOQs-dddzIn6iVNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.869 [XNIO-1 task-2] eOUawSFOQs-dddzIn6iVNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.870 [XNIO-1 task-2] eOUawSFOQs-dddzIn6iVNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.870 [XNIO-1 task-2] eOUawSFOQs-dddzIn6iVNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.875 [XNIO-1 task-2] NBJdtztrQeyr3pUa_9kMTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.875 [XNIO-1 task-2] NBJdtztrQeyr3pUa_9kMTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.875 [XNIO-1 task-2] NBJdtztrQeyr3pUa_9kMTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.875 [XNIO-1 task-2] NBJdtztrQeyr3pUa_9kMTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.875 [XNIO-1 task-2] NBJdtztrQeyr3pUa_9kMTA DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.876 [XNIO-1 task-2] NBJdtztrQeyr3pUa_9kMTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.878 [XNIO-1 task-2] UXpEDs7PQXiIj-n3IVitwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.879 [XNIO-1 task-2] UXpEDs7PQXiIj-n3IVitwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.879 [XNIO-1 task-2] UXpEDs7PQXiIj-n3IVitwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.879 [XNIO-1 task-2] UXpEDs7PQXiIj-n3IVitwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.879 [XNIO-1 task-2] UXpEDs7PQXiIj-n3IVitwg DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.880 [XNIO-1 task-2] UXpEDs7PQXiIj-n3IVitwg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.883 [XNIO-1 task-2] O405L7hMQHaK-B8GRfSBUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.883 [XNIO-1 task-2] O405L7hMQHaK-B8GRfSBUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.883 [XNIO-1 task-2] O405L7hMQHaK-B8GRfSBUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.883 [XNIO-1 task-2] O405L7hMQHaK-B8GRfSBUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.883 [XNIO-1 task-2] O405L7hMQHaK-B8GRfSBUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.884 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8639090e +16:29:47.886 [XNIO-1 task-2] MIExNvnfQdqzT9vzDD8Tig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.887 [XNIO-1 task-2] MIExNvnfQdqzT9vzDD8Tig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.887 [XNIO-1 task-2] MIExNvnfQdqzT9vzDD8Tig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:47.887 [XNIO-1 task-2] MIExNvnfQdqzT9vzDD8Tig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aca7f161-9e33-45f6-b1e4-84597bb76eec, base path is set to: null +16:29:47.887 [XNIO-1 task-2] MIExNvnfQdqzT9vzDD8Tig DEBUG com.networknt.schema.TypeValidator debug - validate( "aca7f161-9e33-45f6-b1e4-84597bb76eec", "aca7f161-9e33-45f6-b1e4-84597bb76eec", refreshToken) +16:29:47.890 [XNIO-1 task-2] MIExNvnfQdqzT9vzDD8Tig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aca7f161-9e33-45f6-b1e4-84597bb76eec is not found.","severity":"ERROR"} +16:29:47.893 [XNIO-1 task-2] 6hrApW_ySxmEBzVyDahDgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.893 [XNIO-1 task-2] 6hrApW_ySxmEBzVyDahDgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.893 [XNIO-1 task-2] 6hrApW_ySxmEBzVyDahDgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.894 [XNIO-1 task-2] 6hrApW_ySxmEBzVyDahDgA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.903 [XNIO-1 task-2] yf_aolvxRsai4FMkOQEXwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.903 [XNIO-1 task-2] yf_aolvxRsai4FMkOQEXwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.903 [XNIO-1 task-2] yf_aolvxRsai4FMkOQEXwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.903 [XNIO-1 task-2] yf_aolvxRsai4FMkOQEXwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.904 [XNIO-1 task-2] yf_aolvxRsai4FMkOQEXwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.916 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:764ce932 +16:29:47.921 [XNIO-1 task-2] PSJX_CWZRGqBtHnK47FRcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.922 [XNIO-1 task-2] PSJX_CWZRGqBtHnK47FRcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.925 [XNIO-1 task-2] PSJX_CWZRGqBtHnK47FRcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.925 [XNIO-1 task-2] PSJX_CWZRGqBtHnK47FRcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.928 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bd4f45d3-5310-4e8a-bf05-e694fedc8d02 +16:29:47.935 [XNIO-1 task-2] JC_mTU3jTEystcYC0nDaDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.935 [XNIO-1 task-2] JC_mTU3jTEystcYC0nDaDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.935 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8c6d2ce7-4fa1-4080-b133-fba58f2a6845 +16:29:47.935 [XNIO-1 task-2] JC_mTU3jTEystcYC0nDaDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.935 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8c6d2ce7-4fa1-4080-b133-fba58f2a6845 +16:29:47.936 [XNIO-1 task-2] JC_mTU3jTEystcYC0nDaDw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.946 [XNIO-1 task-2] CWt63B6vTJSpFF845A8H2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.946 [XNIO-1 task-2] CWt63B6vTJSpFF845A8H2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.946 [XNIO-1 task-2] CWt63B6vTJSpFF845A8H2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.946 [XNIO-1 task-2] CWt63B6vTJSpFF845A8H2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:47.957 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:47.970 [XNIO-1 task-2] FOF2CWQWQL6hMG98x8X-Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.970 [XNIO-1 task-2] FOF2CWQWQL6hMG98x8X-Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.970 [XNIO-1 task-2] FOF2CWQWQL6hMG98x8X-Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.971 [XNIO-1 task-2] FOF2CWQWQL6hMG98x8X-Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.971 [XNIO-1 task-2] FOF2CWQWQL6hMG98x8X-Ag DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.977 [XNIO-1 task-2] GpKgk1V6QRmWo2QGhT8GnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.977 [XNIO-1 task-2] GpKgk1V6QRmWo2QGhT8GnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.977 [XNIO-1 task-2] GpKgk1V6QRmWo2QGhT8GnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.977 [XNIO-1 task-2] GpKgk1V6QRmWo2QGhT8GnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.977 [XNIO-1 task-2] GpKgk1V6QRmWo2QGhT8GnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:47.986 [XNIO-1 task-2] _QTrAMf1RLCYgFZcsviyqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.986 [XNIO-1 task-2] _QTrAMf1RLCYgFZcsviyqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:47.986 [XNIO-1 task-2] _QTrAMf1RLCYgFZcsviyqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:47.988 [XNIO-1 task-2] _QTrAMf1RLCYgFZcsviyqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:47.988 [XNIO-1 task-2] _QTrAMf1RLCYgFZcsviyqA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:47.997 [XNIO-1 task-2] VJTLiovSRaGi7Q9Z1ejbJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:47.998 [XNIO-1 task-2] VJTLiovSRaGi7Q9Z1ejbJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:47.998 [XNIO-1 task-2] VJTLiovSRaGi7Q9Z1ejbJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:47.998 [XNIO-1 task-2] VJTLiovSRaGi7Q9Z1ejbJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:47.998 [XNIO-1 task-2] VJTLiovSRaGi7Q9Z1ejbJg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:47.998 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23fb534c +16:29:48.011 [XNIO-1 task-2] ZivcuB5BTT2qr-enbxNAMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:48.011 [XNIO-1 task-2] ZivcuB5BTT2qr-enbxNAMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.011 [XNIO-1 task-2] ZivcuB5BTT2qr-enbxNAMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.011 [XNIO-1 task-2] ZivcuB5BTT2qr-enbxNAMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:48.012 [XNIO-1 task-2] ZivcuB5BTT2qr-enbxNAMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:48.055 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:23fb534c +16:29:48.059 [XNIO-1 task-2] oSU3Y2dWQE26pqPnhRjDWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37, base path is set to: null +16:29:48.060 [XNIO-1 task-2] oSU3Y2dWQE26pqPnhRjDWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.060 [XNIO-1 task-2] oSU3Y2dWQE26pqPnhRjDWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.060 [XNIO-1 task-2] oSU3Y2dWQE26pqPnhRjDWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37, base path is set to: null +16:29:48.060 [XNIO-1 task-2] oSU3Y2dWQE26pqPnhRjDWA DEBUG com.networknt.schema.TypeValidator debug - validate( "e955e60c-2237-46e1-b4f3-707c93fe0c37", "e955e60c-2237-46e1-b4f3-707c93fe0c37", refreshToken) +16:29:48.065 [XNIO-1 task-2] oSU3Y2dWQE26pqPnhRjDWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e955e60c-2237-46e1-b4f3-707c93fe0c37 is not found.","severity":"ERROR"} +16:29:48.068 [XNIO-1 task-2] ewDRz8p3RVCMyhimedqZ9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:48.068 [XNIO-1 task-2] ewDRz8p3RVCMyhimedqZ9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.068 [XNIO-1 task-2] ewDRz8p3RVCMyhimedqZ9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.069 [XNIO-1 task-2] ewDRz8p3RVCMyhimedqZ9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:48.069 [XNIO-1 task-2] ewDRz8p3RVCMyhimedqZ9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:48.089 [XNIO-1 task-2] 9TyYyNz_TgieFN8UVJKapg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37, base path is set to: null +16:29:48.091 [XNIO-1 task-2] 9TyYyNz_TgieFN8UVJKapg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.091 [XNIO-1 task-2] 9TyYyNz_TgieFN8UVJKapg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.091 [XNIO-1 task-2] 9TyYyNz_TgieFN8UVJKapg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37, base path is set to: null +16:29:48.091 [XNIO-1 task-2] 9TyYyNz_TgieFN8UVJKapg DEBUG com.networknt.schema.TypeValidator debug - validate( "e955e60c-2237-46e1-b4f3-707c93fe0c37", "e955e60c-2237-46e1-b4f3-707c93fe0c37", refreshToken) +16:29:48.094 [XNIO-1 task-2] 9TyYyNz_TgieFN8UVJKapg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e955e60c-2237-46e1-b4f3-707c93fe0c37 is not found.","severity":"ERROR"} +16:29:48.099 [XNIO-1 task-2] IhlU5l8SSDeIgEwepO112w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.099 [XNIO-1 task-2] IhlU5l8SSDeIgEwepO112w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.100 [XNIO-1 task-2] IhlU5l8SSDeIgEwepO112w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.100 [XNIO-1 task-2] IhlU5l8SSDeIgEwepO112w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.110 [XNIO-1 task-2] ldfCu3r_RI-6vDMgbivH-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:48.110 [XNIO-1 task-2] ldfCu3r_RI-6vDMgbivH-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.111 [XNIO-1 task-2] ldfCu3r_RI-6vDMgbivH-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.111 [XNIO-1 task-2] ldfCu3r_RI-6vDMgbivH-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:48.111 [XNIO-1 task-2] ldfCu3r_RI-6vDMgbivH-w DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:48.111 [XNIO-1 task-2] ldfCu3r_RI-6vDMgbivH-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:48.115 [XNIO-1 task-2] pJnprYaBQ627MmycQvHS9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.115 [XNIO-1 task-2] pJnprYaBQ627MmycQvHS9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.116 [XNIO-1 task-2] pJnprYaBQ627MmycQvHS9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.116 [XNIO-1 task-2] pJnprYaBQ627MmycQvHS9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.125 [XNIO-1 task-2] p7zBFYYaQem6ez0P9DWxdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.126 [XNIO-1 task-2] p7zBFYYaQem6ez0P9DWxdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.126 [XNIO-1 task-2] p7zBFYYaQem6ez0P9DWxdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.126 [XNIO-1 task-2] p7zBFYYaQem6ez0P9DWxdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.127 [XNIO-1 task-2] p7zBFYYaQem6ez0P9DWxdg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.135 [XNIO-1 task-2] q-bbOIpcQcmb-UFNzU4i8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.136 [XNIO-1 task-2] q-bbOIpcQcmb-UFNzU4i8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.136 [XNIO-1 task-2] q-bbOIpcQcmb-UFNzU4i8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.136 [XNIO-1 task-2] q-bbOIpcQcmb-UFNzU4i8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.137 [XNIO-1 task-2] q-bbOIpcQcmb-UFNzU4i8A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.141 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8186bfbd-ead0-4fca-a062-92c83487aa4d +16:29:48.150 [XNIO-1 task-2] PZyvO__CQhya9z_N-qUWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:48.150 [XNIO-1 task-2] PZyvO__CQhya9z_N-qUWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.150 [XNIO-1 task-2] PZyvO__CQhya9z_N-qUWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.150 [XNIO-1 task-2] PZyvO__CQhya9z_N-qUWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:48.151 [XNIO-1 task-2] PZyvO__CQhya9z_N-qUWGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:48.154 [XNIO-1 task-2] lPeuirFATMyb24qCimgV_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:48.154 [XNIO-1 task-2] lPeuirFATMyb24qCimgV_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.154 [XNIO-1 task-2] lPeuirFATMyb24qCimgV_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.154 [XNIO-1 task-2] lPeuirFATMyb24qCimgV_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/066bafe4-ed29-4108-850e-3acdf2c4aaf8, base path is set to: null +16:29:48.154 [XNIO-1 task-2] lPeuirFATMyb24qCimgV_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "066bafe4-ed29-4108-850e-3acdf2c4aaf8", "066bafe4-ed29-4108-850e-3acdf2c4aaf8", refreshToken) +16:29:48.154 [XNIO-1 task-2] lPeuirFATMyb24qCimgV_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} +16:29:48.160 [XNIO-1 task-2] y-WDN34LQM6tXX2EBbZ41w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:48.160 [XNIO-1 task-2] y-WDN34LQM6tXX2EBbZ41w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.161 [XNIO-1 task-2] y-WDN34LQM6tXX2EBbZ41w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.161 [XNIO-1 task-2] y-WDN34LQM6tXX2EBbZ41w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:48.161 [XNIO-1 task-2] y-WDN34LQM6tXX2EBbZ41w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e955e60c-2237-46e1-b4f3-707c93fe0c37 +16:29:48.165 [XNIO-1 task-2] eKhu7Iz4RieUF9muIZwSlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43e18a2d-658f-42e8-8628-fff24a3c1b7d, base path is set to: null +16:29:48.167 [XNIO-1 task-2] eKhu7Iz4RieUF9muIZwSlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.167 [XNIO-1 task-2] eKhu7Iz4RieUF9muIZwSlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.167 [XNIO-1 task-2] eKhu7Iz4RieUF9muIZwSlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43e18a2d-658f-42e8-8628-fff24a3c1b7d, base path is set to: null +16:29:48.168 [XNIO-1 task-2] eKhu7Iz4RieUF9muIZwSlg DEBUG com.networknt.schema.TypeValidator debug - validate( "43e18a2d-658f-42e8-8628-fff24a3c1b7d", "43e18a2d-658f-42e8-8628-fff24a3c1b7d", refreshToken) +16:29:48.171 [XNIO-1 task-2] eKhu7Iz4RieUF9muIZwSlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 43e18a2d-658f-42e8-8628-fff24a3c1b7d is not found.","severity":"ERROR"} +16:29:48.174 [XNIO-1 task-2] mLfmy6HiT7iTJM2XdAbpUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb99ba2f-0309-4bab-a6a8-6eee9f9214ea +16:29:48.175 [XNIO-1 task-2] mLfmy6HiT7iTJM2XdAbpUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.175 [XNIO-1 task-2] mLfmy6HiT7iTJM2XdAbpUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.175 [XNIO-1 task-2] mLfmy6HiT7iTJM2XdAbpUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb99ba2f-0309-4bab-a6a8-6eee9f9214ea +16:29:48.175 [XNIO-1 task-2] mLfmy6HiT7iTJM2XdAbpUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fb99ba2f-0309-4bab-a6a8-6eee9f9214ea +16:29:48.189 [XNIO-1 task-2] EXqmeYiTRuyh8njQMtnlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:48.189 [XNIO-1 task-2] EXqmeYiTRuyh8njQMtnlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.189 [XNIO-1 task-2] EXqmeYiTRuyh8njQMtnlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.190 [XNIO-1 task-2] EXqmeYiTRuyh8njQMtnlJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:48.190 [XNIO-1 task-2] EXqmeYiTRuyh8njQMtnlJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:48.201 [XNIO-1 task-2] gHSj0QBBQhW3aIyVGLunUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.201 [XNIO-1 task-2] gHSj0QBBQhW3aIyVGLunUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.201 [XNIO-1 task-2] gHSj0QBBQhW3aIyVGLunUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.202 [XNIO-1 task-2] gHSj0QBBQhW3aIyVGLunUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.202 [XNIO-1 task-2] gHSj0QBBQhW3aIyVGLunUw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.206 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:821e372a-c5ba-4b40-890e-b2ca06154278 +16:29:48.208 [XNIO-1 task-2] TbGTESNOQYC5JaT8uP0hjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8c6d2ce7-4fa1-4080-b133-fba58f2a6845 +16:29:48.208 [XNIO-1 task-2] TbGTESNOQYC5JaT8uP0hjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.208 [XNIO-1 task-2] TbGTESNOQYC5JaT8uP0hjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.208 [XNIO-1 task-2] TbGTESNOQYC5JaT8uP0hjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8c6d2ce7-4fa1-4080-b133-fba58f2a6845 +16:29:48.209 [XNIO-1 task-2] TbGTESNOQYC5JaT8uP0hjw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8c6d2ce7-4fa1-4080-b133-fba58f2a6845 +16:29:48.213 [XNIO-1 task-2] mo3biEz2TG2k9BsqZbnBlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.213 [XNIO-1 task-2] mo3biEz2TG2k9BsqZbnBlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.213 [XNIO-1 task-2] mo3biEz2TG2k9BsqZbnBlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.213 [XNIO-1 task-2] mo3biEz2TG2k9BsqZbnBlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.224 [XNIO-1 task-2] jL2hoRBMR3Oxaq1QfxkQTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.224 [XNIO-1 task-2] jL2hoRBMR3Oxaq1QfxkQTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.224 [XNIO-1 task-2] jL2hoRBMR3Oxaq1QfxkQTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.225 [XNIO-1 task-2] jL2hoRBMR3Oxaq1QfxkQTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.225 [XNIO-1 task-2] jL2hoRBMR3Oxaq1QfxkQTg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.233 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2c7da961 +16:29:48.233 [XNIO-1 task-2] c2rJNhoaRRmpgn4jFlroIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.233 [XNIO-1 task-2] c2rJNhoaRRmpgn4jFlroIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.233 [XNIO-1 task-2] c2rJNhoaRRmpgn4jFlroIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.234 [XNIO-1 task-2] c2rJNhoaRRmpgn4jFlroIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.234 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c7da961 +16:29:48.237 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8639090e +16:29:48.244 [XNIO-1 task-2] S0t5yxn1RnSNYxh40eTsZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.244 [XNIO-1 task-2] S0t5yxn1RnSNYxh40eTsZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.244 [XNIO-1 task-2] S0t5yxn1RnSNYxh40eTsZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.245 [XNIO-1 task-2] S0t5yxn1RnSNYxh40eTsZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.245 [XNIO-1 task-2] S0t5yxn1RnSNYxh40eTsZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.251 [XNIO-1 task-2] 9rkwc1ysTTWUgaeR3wDYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.251 [XNIO-1 task-2] 9rkwc1ysTTWUgaeR3wDYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.251 [XNIO-1 task-2] 9rkwc1ysTTWUgaeR3wDYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.251 [XNIO-1 task-2] 9rkwc1ysTTWUgaeR3wDYIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.251 [XNIO-1 task-2] 9rkwc1ysTTWUgaeR3wDYIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.253 [XNIO-1 task-2] 9rkwc1ysTTWUgaeR3wDYIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:48.256 [XNIO-1 task-2] mdZ4dzGvQf27Me1-oBR9_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:48.256 [XNIO-1 task-2] mdZ4dzGvQf27Me1-oBR9_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.256 [XNIO-1 task-2] mdZ4dzGvQf27Me1-oBR9_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.256 [XNIO-1 task-2] mdZ4dzGvQf27Me1-oBR9_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.256 [XNIO-1 task-2] mdZ4dzGvQf27Me1-oBR9_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.257 [XNIO-1 task-2] mdZ4dzGvQf27Me1-oBR9_A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.262 [XNIO-1 task-2] mdZ4dzGvQf27Me1-oBR9_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:48.264 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aaaac268-7a8f-4c49-9b37-dc5b8cf973e8 +16:29:48.266 [XNIO-1 task-2] pn-2OWMITVahe3I93q-c3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0a2c2e0d-29a2-45a9-8913-ec3cfda4f452, base path is set to: null +16:29:48.266 [XNIO-1 task-2] pn-2OWMITVahe3I93q-c3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.266 [XNIO-1 task-2] pn-2OWMITVahe3I93q-c3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.266 [XNIO-1 task-2] pn-2OWMITVahe3I93q-c3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0a2c2e0d-29a2-45a9-8913-ec3cfda4f452, base path is set to: null +16:29:48.267 [XNIO-1 task-2] pn-2OWMITVahe3I93q-c3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0a2c2e0d-29a2-45a9-8913-ec3cfda4f452", "0a2c2e0d-29a2-45a9-8913-ec3cfda4f452", refreshToken) +16:29:48.270 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d5eb86a4 +16:29:48.271 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d5eb86a4 +16:29:48.278 [XNIO-1 task-2] y2pZIHI8T46xIkWh375o2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.278 [XNIO-1 task-2] y2pZIHI8T46xIkWh375o2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.278 [XNIO-1 task-2] y2pZIHI8T46xIkWh375o2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.279 [XNIO-1 task-2] y2pZIHI8T46xIkWh375o2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.279 [XNIO-1 task-2] y2pZIHI8T46xIkWh375o2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.281 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:aaaac268-7a8f-4c49-9b37-dc5b8cf973e8 +16:29:48.284 [XNIO-1 task-2] vEbIDwJbT1y3aNqJYTpjOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.284 [XNIO-1 task-2] vEbIDwJbT1y3aNqJYTpjOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.284 [XNIO-1 task-2] vEbIDwJbT1y3aNqJYTpjOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.284 [XNIO-1 task-2] vEbIDwJbT1y3aNqJYTpjOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.284 [XNIO-1 task-2] vEbIDwJbT1y3aNqJYTpjOw DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:48.299 [XNIO-1 task-2] EEKSvDTPS_y15x6dun-Fpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:48.299 [XNIO-1 task-2] EEKSvDTPS_y15x6dun-Fpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.299 [XNIO-1 task-2] EEKSvDTPS_y15x6dun-Fpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.299 [XNIO-1 task-2] EEKSvDTPS_y15x6dun-Fpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:48.300 [XNIO-1 task-2] EEKSvDTPS_y15x6dun-Fpg DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:48.302 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.307 [XNIO-1 task-2] z7OkNGj5Su-lHa_xW477NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.307 [XNIO-1 task-2] z7OkNGj5Su-lHa_xW477NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.308 [XNIO-1 task-2] z7OkNGj5Su-lHa_xW477NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.308 [XNIO-1 task-2] z7OkNGj5Su-lHa_xW477NA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.309 [XNIO-1 task-2] z7OkNGj5Su-lHa_xW477NA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.323 [XNIO-1 task-2] TiuFVooaQS2_rTAn5kSaOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.323 [XNIO-1 task-2] TiuFVooaQS2_rTAn5kSaOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.323 [XNIO-1 task-2] TiuFVooaQS2_rTAn5kSaOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.324 [XNIO-1 task-2] TiuFVooaQS2_rTAn5kSaOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.324 [XNIO-1 task-2] TiuFVooaQS2_rTAn5kSaOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.331 [XNIO-1 task-2] daiAzL4BQeGRKNY6ETsBVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:48.332 [XNIO-1 task-2] daiAzL4BQeGRKNY6ETsBVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.332 [XNIO-1 task-2] daiAzL4BQeGRKNY6ETsBVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.332 [XNIO-1 task-2] daiAzL4BQeGRKNY6ETsBVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:48.333 [XNIO-1 task-2] daiAzL4BQeGRKNY6ETsBVA DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:48.333 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:48.340 [XNIO-1 task-2] iE_8X7BGSvGRLzWhMJLRcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.340 [XNIO-1 task-2] iE_8X7BGSvGRLzWhMJLRcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.340 [XNIO-1 task-2] iE_8X7BGSvGRLzWhMJLRcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.340 [XNIO-1 task-2] iE_8X7BGSvGRLzWhMJLRcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.341 [XNIO-1 task-2] iE_8X7BGSvGRLzWhMJLRcA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.349 [XNIO-1 task-2] PJs1O5kFTTisR-FLp3ZPFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.349 [XNIO-1 task-2] PJs1O5kFTTisR-FLp3ZPFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.349 [XNIO-1 task-2] PJs1O5kFTTisR-FLp3ZPFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.350 [XNIO-1 task-2] PJs1O5kFTTisR-FLp3ZPFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.350 [XNIO-1 task-2] PJs1O5kFTTisR-FLp3ZPFg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.354 [XNIO-1 task-2] InBOgwQgSdulMJ4O97OY_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.354 [XNIO-1 task-2] InBOgwQgSdulMJ4O97OY_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.354 [XNIO-1 task-2] InBOgwQgSdulMJ4O97OY_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.354 [XNIO-1 task-2] InBOgwQgSdulMJ4O97OY_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.354 [XNIO-1 task-2] InBOgwQgSdulMJ4O97OY_w DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:48.355 [XNIO-1 task-2] InBOgwQgSdulMJ4O97OY_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:48.360 [XNIO-1 task-2] 3N3IsXbNQDSqKPj5_qJHCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.360 [XNIO-1 task-2] 3N3IsXbNQDSqKPj5_qJHCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.361 [XNIO-1 task-2] 3N3IsXbNQDSqKPj5_qJHCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.361 [XNIO-1 task-2] 3N3IsXbNQDSqKPj5_qJHCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.361 [XNIO-1 task-2] 3N3IsXbNQDSqKPj5_qJHCw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.363 [XNIO-1 task-2] 5UkyuKtCS5yj4NaFt7qGng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.364 [XNIO-1 task-2] 5UkyuKtCS5yj4NaFt7qGng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.365 [XNIO-1 task-2] 5UkyuKtCS5yj4NaFt7qGng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.366 [XNIO-1 task-2] 5UkyuKtCS5yj4NaFt7qGng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.366 [XNIO-1 task-2] 5UkyuKtCS5yj4NaFt7qGng DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.384 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d5eb86a4 +16:29:48.397 [XNIO-1 task-2] -OjDperdSFirN96HijW6yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.397 [XNIO-1 task-2] -OjDperdSFirN96HijW6yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.398 [XNIO-1 task-2] -OjDperdSFirN96HijW6yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.398 [XNIO-1 task-2] -OjDperdSFirN96HijW6yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.412 [XNIO-1 task-2] lKCOMCtKRyyaVkkY8yqXbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.412 [XNIO-1 task-2] lKCOMCtKRyyaVkkY8yqXbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.412 [XNIO-1 task-2] lKCOMCtKRyyaVkkY8yqXbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.412 [XNIO-1 task-2] lKCOMCtKRyyaVkkY8yqXbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.413 [XNIO-1 task-2] lKCOMCtKRyyaVkkY8yqXbA DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:48.413 [XNIO-1 task-2] lKCOMCtKRyyaVkkY8yqXbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:48.415 [XNIO-1 task-2] UuLPe3knTimRzuqB86lYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.416 [XNIO-1 task-2] UuLPe3knTimRzuqB86lYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.416 [XNIO-1 task-2] UuLPe3knTimRzuqB86lYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.416 [XNIO-1 task-2] UuLPe3knTimRzuqB86lYpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.416 [XNIO-1 task-2] UuLPe3knTimRzuqB86lYpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.419 [XNIO-1 task-2] xqnVEi0kRnWhj1D8OQLU8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.420 [XNIO-1 task-2] xqnVEi0kRnWhj1D8OQLU8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.420 [XNIO-1 task-2] xqnVEi0kRnWhj1D8OQLU8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.420 [XNIO-1 task-2] xqnVEi0kRnWhj1D8OQLU8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.420 [XNIO-1 task-2] xqnVEi0kRnWhj1D8OQLU8g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.436 [XNIO-1 task-2] uoqQ0vuYSeueSG8oboLYmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.436 [XNIO-1 task-2] uoqQ0vuYSeueSG8oboLYmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.436 [XNIO-1 task-2] uoqQ0vuYSeueSG8oboLYmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.437 [XNIO-1 task-2] uoqQ0vuYSeueSG8oboLYmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.444 [XNIO-1 task-2] RuvDbb9CRDa-9fQ1v8qq6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.444 [XNIO-1 task-2] RuvDbb9CRDa-9fQ1v8qq6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.444 [XNIO-1 task-2] RuvDbb9CRDa-9fQ1v8qq6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.444 [XNIO-1 task-2] RuvDbb9CRDa-9fQ1v8qq6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.444 [XNIO-1 task-2] RuvDbb9CRDa-9fQ1v8qq6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.453 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4627e508-e372-4958-b085-b8dd723bfb63 +16:29:48.455 [XNIO-1 task-2] i5CYt1ShTZyCZsJyQYI5tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.456 [XNIO-1 task-2] i5CYt1ShTZyCZsJyQYI5tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.456 [XNIO-1 task-2] i5CYt1ShTZyCZsJyQYI5tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.456 [XNIO-1 task-2] i5CYt1ShTZyCZsJyQYI5tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.456 [XNIO-1 task-2] i5CYt1ShTZyCZsJyQYI5tA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.461 [XNIO-1 task-2] kNnThQkHTc-saqs_Bx0yBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.461 [XNIO-1 task-2] kNnThQkHTc-saqs_Bx0yBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.462 [XNIO-1 task-2] kNnThQkHTc-saqs_Bx0yBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.462 [XNIO-1 task-2] kNnThQkHTc-saqs_Bx0yBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.463 [XNIO-1 task-2] kNnThQkHTc-saqs_Bx0yBw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.467 [XNIO-1 task-2] L5bnVHZdSe-fYJ6om5wNog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e +16:29:48.467 [XNIO-1 task-2] L5bnVHZdSe-fYJ6om5wNog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.467 [XNIO-1 task-2] L5bnVHZdSe-fYJ6om5wNog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.468 [XNIO-1 task-2] L5bnVHZdSe-fYJ6om5wNog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e +16:29:48.468 [XNIO-1 task-2] L5bnVHZdSe-fYJ6om5wNog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e47f0556-2c52-409e-a429-58570256d82e +16:29:48.480 [XNIO-1 task-2] SpXTe8g2SlSW_6OgFaLB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.480 [XNIO-1 task-2] SpXTe8g2SlSW_6OgFaLB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.480 [XNIO-1 task-2] SpXTe8g2SlSW_6OgFaLB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.481 [XNIO-1 task-2] SpXTe8g2SlSW_6OgFaLB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.481 [XNIO-1 task-2] SpXTe8g2SlSW_6OgFaLB-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.484 [XNIO-1 task-2] isj7oNQ_RdiWQg0dPQNNPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e +16:29:48.484 [XNIO-1 task-2] isj7oNQ_RdiWQg0dPQNNPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.485 [XNIO-1 task-2] isj7oNQ_RdiWQg0dPQNNPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.485 [XNIO-1 task-2] isj7oNQ_RdiWQg0dPQNNPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e +16:29:48.485 [XNIO-1 task-2] isj7oNQ_RdiWQg0dPQNNPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e47f0556-2c52-409e-a429-58570256d82e +16:29:48.486 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23fb534c +16:29:48.492 [XNIO-1 task-2] XEKAloOaTpmHUlFnqU3XpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.493 [XNIO-1 task-2] XEKAloOaTpmHUlFnqU3XpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.493 [XNIO-1 task-2] XEKAloOaTpmHUlFnqU3XpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.493 [XNIO-1 task-2] XEKAloOaTpmHUlFnqU3XpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.493 [XNIO-1 task-2] XEKAloOaTpmHUlFnqU3XpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "772139ab-3488-44e1-86cd-84c7b08ce92c", "772139ab-3488-44e1-86cd-84c7b08ce92c", refreshToken) +16:29:48.498 [XNIO-1 task-2] cb28HDtSTZKT_hClq0_ZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e, base path is set to: null +16:29:48.498 [XNIO-1 task-2] cb28HDtSTZKT_hClq0_ZDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.498 [XNIO-1 task-2] cb28HDtSTZKT_hClq0_ZDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.498 [XNIO-1 task-2] cb28HDtSTZKT_hClq0_ZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e, base path is set to: null +16:29:48.498 [XNIO-1 task-2] cb28HDtSTZKT_hClq0_ZDg DEBUG com.networknt.schema.TypeValidator debug - validate( "e47f0556-2c52-409e-a429-58570256d82e", "e47f0556-2c52-409e-a429-58570256d82e", refreshToken) +16:29:48.499 [XNIO-1 task-2] cb28HDtSTZKT_hClq0_ZDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e47f0556-2c52-409e-a429-58570256d82e is not found.","severity":"ERROR"} +16:29:48.501 [XNIO-1 task-2] twSX1HIwQiuDEB6DGOc1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.501 [XNIO-1 task-2] twSX1HIwQiuDEB6DGOc1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.501 [XNIO-1 task-2] twSX1HIwQiuDEB6DGOc1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.501 [XNIO-1 task-2] twSX1HIwQiuDEB6DGOc1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.501 [XNIO-1 task-2] twSX1HIwQiuDEB6DGOc1FQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.518 [XNIO-1 task-2] _a2_eWcYRyC_PR3ImWFCqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.518 [XNIO-1 task-2] _a2_eWcYRyC_PR3ImWFCqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.518 [XNIO-1 task-2] _a2_eWcYRyC_PR3ImWFCqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.518 [XNIO-1 task-2] _a2_eWcYRyC_PR3ImWFCqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.530 [XNIO-1 task-2] g2ncWiYTR2OJ99iNk-Ju3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.530 [XNIO-1 task-2] g2ncWiYTR2OJ99iNk-Ju3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.530 [XNIO-1 task-2] g2ncWiYTR2OJ99iNk-Ju3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.530 [XNIO-1 task-2] g2ncWiYTR2OJ99iNk-Ju3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.530 [XNIO-1 task-2] g2ncWiYTR2OJ99iNk-Ju3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.540 [XNIO-1 task-2] jTbelhV6S-20U_nUgjFBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e +16:29:48.540 [XNIO-1 task-2] jTbelhV6S-20U_nUgjFBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.540 [XNIO-1 task-2] jTbelhV6S-20U_nUgjFBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.540 [XNIO-1 task-2] jTbelhV6S-20U_nUgjFBMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e47f0556-2c52-409e-a429-58570256d82e +16:29:48.540 [XNIO-1 task-2] jTbelhV6S-20U_nUgjFBMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e47f0556-2c52-409e-a429-58570256d82e +16:29:48.545 [XNIO-1 task-2] YvI0aVG-TOGHVXhIgi3eRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd4f45d3-5310-4e8a-bf05-e694fedc8d02, base path is set to: null +16:29:48.545 [XNIO-1 task-2] YvI0aVG-TOGHVXhIgi3eRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.546 [XNIO-1 task-2] YvI0aVG-TOGHVXhIgi3eRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.546 [XNIO-1 task-2] YvI0aVG-TOGHVXhIgi3eRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd4f45d3-5310-4e8a-bf05-e694fedc8d02, base path is set to: null +16:29:48.546 [XNIO-1 task-2] YvI0aVG-TOGHVXhIgi3eRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd4f45d3-5310-4e8a-bf05-e694fedc8d02", "bd4f45d3-5310-4e8a-bf05-e694fedc8d02", refreshToken) +16:29:48.551 [XNIO-1 task-2] fTX7OXewQ0W5L36X_CIvdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd4f45d3-5310-4e8a-bf05-e694fedc8d02, base path is set to: null +16:29:48.551 [XNIO-1 task-2] fTX7OXewQ0W5L36X_CIvdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.552 [XNIO-1 task-2] fTX7OXewQ0W5L36X_CIvdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.555 [XNIO-1 task-2] fTX7OXewQ0W5L36X_CIvdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bd4f45d3-5310-4e8a-bf05-e694fedc8d02, base path is set to: null +16:29:48.555 [XNIO-1 task-2] fTX7OXewQ0W5L36X_CIvdg DEBUG com.networknt.schema.TypeValidator debug - validate( "bd4f45d3-5310-4e8a-bf05-e694fedc8d02", "bd4f45d3-5310-4e8a-bf05-e694fedc8d02", refreshToken) +16:29:48.556 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bd4f45d3-5310-4e8a-bf05-e694fedc8d02 +16:29:48.565 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1519c310-f3f5-483b-a8bc-3f533951878d +16:29:48.574 [XNIO-1 task-2] 8nmRjEc7To6jElvYu-40dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.574 [XNIO-1 task-2] 8nmRjEc7To6jElvYu-40dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.575 [XNIO-1 task-2] 8nmRjEc7To6jElvYu-40dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.575 [XNIO-1 task-2] 8nmRjEc7To6jElvYu-40dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.579 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c03f62b1-82ab-4891-a0ce-08d7d8d76a1e +16:29:48.599 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c03f62b1-82ab-4891-a0ce-08d7d8d76a1e +16:29:48.602 [XNIO-1 task-2] vNV8wl1zRQCRnomHiUJnGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.602 [XNIO-1 task-2] vNV8wl1zRQCRnomHiUJnGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.602 [XNIO-1 task-2] vNV8wl1zRQCRnomHiUJnGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.603 [XNIO-1 task-2] vNV8wl1zRQCRnomHiUJnGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.612 [XNIO-1 task-2] J-9R8wJUT0CNAy7jnTSZvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.613 [XNIO-1 task-2] J-9R8wJUT0CNAy7jnTSZvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.613 [XNIO-1 task-2] J-9R8wJUT0CNAy7jnTSZvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.613 [XNIO-1 task-2] J-9R8wJUT0CNAy7jnTSZvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.613 [XNIO-1 task-2] J-9R8wJUT0CNAy7jnTSZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "772139ab-3488-44e1-86cd-84c7b08ce92c", "772139ab-3488-44e1-86cd-84c7b08ce92c", refreshToken) +16:29:48.617 [XNIO-1 task-2] J-9R8wJUT0CNAy7jnTSZvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 772139ab-3488-44e1-86cd-84c7b08ce92c is not found.","severity":"ERROR"} +16:29:48.621 [XNIO-1 task-2] _dLHcbqWS4asq2mWhXoOZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd4f45d3-5310-4e8a-bf05-e694fedc8d02 +16:29:48.621 [XNIO-1 task-2] _dLHcbqWS4asq2mWhXoOZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.621 [XNIO-1 task-2] _dLHcbqWS4asq2mWhXoOZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.621 [XNIO-1 task-2] _dLHcbqWS4asq2mWhXoOZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bd4f45d3-5310-4e8a-bf05-e694fedc8d02 +16:29:48.622 [XNIO-1 task-2] _dLHcbqWS4asq2mWhXoOZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bd4f45d3-5310-4e8a-bf05-e694fedc8d02 +16:29:48.624 [XNIO-1 task-2] _dLHcbqWS4asq2mWhXoOZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bd4f45d3-5310-4e8a-bf05-e694fedc8d02 is not found.","severity":"ERROR"} +16:29:48.630 [XNIO-1 task-2] SMUwxENUT4-S0vDxzlblHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.630 [XNIO-1 task-2] SMUwxENUT4-S0vDxzlblHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.630 [XNIO-1 task-2] SMUwxENUT4-S0vDxzlblHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.631 [XNIO-1 task-2] SMUwxENUT4-S0vDxzlblHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.631 [XNIO-1 task-2] SMUwxENUT4-S0vDxzlblHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.634 [XNIO-1 task-2] uW8K1qBjRzSAMPDqUhK2Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.634 [XNIO-1 task-2] uW8K1qBjRzSAMPDqUhK2Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.634 [XNIO-1 task-2] uW8K1qBjRzSAMPDqUhK2Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.635 [XNIO-1 task-2] uW8K1qBjRzSAMPDqUhK2Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.635 [XNIO-1 task-2] uW8K1qBjRzSAMPDqUhK2Gw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.644 [XNIO-1 task-2] AjfSAJ08QTWTpww68_jY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.644 [XNIO-1 task-2] AjfSAJ08QTWTpww68_jY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.646 [XNIO-1 task-2] AjfSAJ08QTWTpww68_jY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.646 [XNIO-1 task-2] AjfSAJ08QTWTpww68_jY_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.653 [XNIO-1 task-2] Fk0SyPvvTVqTfgZef5Kolg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.653 [XNIO-1 task-2] Fk0SyPvvTVqTfgZef5Kolg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.653 [XNIO-1 task-2] Fk0SyPvvTVqTfgZef5Kolg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.653 [XNIO-1 task-2] Fk0SyPvvTVqTfgZef5Kolg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.653 [XNIO-1 task-2] Fk0SyPvvTVqTfgZef5Kolg DEBUG com.networknt.schema.TypeValidator debug - validate( "772139ab-3488-44e1-86cd-84c7b08ce92c", "772139ab-3488-44e1-86cd-84c7b08ce92c", refreshToken) +16:29:48.653 [XNIO-1 task-2] Fk0SyPvvTVqTfgZef5Kolg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 772139ab-3488-44e1-86cd-84c7b08ce92c is not found.","severity":"ERROR"} +16:29:48.657 [XNIO-1 task-2] k_nxq4YYRry9YIjE1NeiLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.658 [XNIO-1 task-2] k_nxq4YYRry9YIjE1NeiLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.658 [XNIO-1 task-2] k_nxq4YYRry9YIjE1NeiLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.659 [XNIO-1 task-2] k_nxq4YYRry9YIjE1NeiLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.665 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:764ce932 +16:29:48.670 [XNIO-1 task-2] PdnJ-qkIRMCWRStH9FAf7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.671 [XNIO-1 task-2] PdnJ-qkIRMCWRStH9FAf7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.671 [XNIO-1 task-2] PdnJ-qkIRMCWRStH9FAf7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.671 [XNIO-1 task-2] PdnJ-qkIRMCWRStH9FAf7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.672 [XNIO-1 task-2] PdnJ-qkIRMCWRStH9FAf7g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.672 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2c7da961 +16:29:48.678 [XNIO-1 task-2] IfoM9TpBSJO96wYHmj_VKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.679 [XNIO-1 task-2] IfoM9TpBSJO96wYHmj_VKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.679 [XNIO-1 task-2] IfoM9TpBSJO96wYHmj_VKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.679 [XNIO-1 task-2] IfoM9TpBSJO96wYHmj_VKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.679 [XNIO-1 task-2] IfoM9TpBSJO96wYHmj_VKA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.686 [XNIO-1 task-2] RhaUR5TXRmCq2Fb_VygFVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.686 [XNIO-1 task-2] RhaUR5TXRmCq2Fb_VygFVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.686 [XNIO-1 task-2] RhaUR5TXRmCq2Fb_VygFVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.687 [XNIO-1 task-2] RhaUR5TXRmCq2Fb_VygFVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.687 [XNIO-1 task-2] RhaUR5TXRmCq2Fb_VygFVw DEBUG com.networknt.schema.TypeValidator debug - validate( "772139ab-3488-44e1-86cd-84c7b08ce92c", "772139ab-3488-44e1-86cd-84c7b08ce92c", refreshToken) +16:29:48.687 [XNIO-1 task-2] RhaUR5TXRmCq2Fb_VygFVw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 772139ab-3488-44e1-86cd-84c7b08ce92c is not found.","severity":"ERROR"} +16:29:48.694 [XNIO-1 task-2] jzkVkX08RAG_L5hzuOsjJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.694 [XNIO-1 task-2] jzkVkX08RAG_L5hzuOsjJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.694 [XNIO-1 task-2] jzkVkX08RAG_L5hzuOsjJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.695 [XNIO-1 task-2] jzkVkX08RAG_L5hzuOsjJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.699 [XNIO-1 task-2] OvNO8SuqTs6teRso-L25og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.700 [XNIO-1 task-2] OvNO8SuqTs6teRso-L25og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.700 [XNIO-1 task-2] OvNO8SuqTs6teRso-L25og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.700 [XNIO-1 task-2] OvNO8SuqTs6teRso-L25og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c, base path is set to: null +16:29:48.700 [XNIO-1 task-2] OvNO8SuqTs6teRso-L25og DEBUG com.networknt.schema.TypeValidator debug - validate( "772139ab-3488-44e1-86cd-84c7b08ce92c", "772139ab-3488-44e1-86cd-84c7b08ce92c", refreshToken) +16:29:48.703 [XNIO-1 task-2] OvNO8SuqTs6teRso-L25og ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 772139ab-3488-44e1-86cd-84c7b08ce92c is not found.","severity":"ERROR"} +16:29:48.707 [XNIO-1 task-2] SEpKos0kSjOPwSszb4ey-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.707 [XNIO-1 task-2] SEpKos0kSjOPwSszb4ey-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.707 [XNIO-1 task-2] SEpKos0kSjOPwSszb4ey-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.707 [XNIO-1 task-2] SEpKos0kSjOPwSszb4ey-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.707 [XNIO-1 task-2] SEpKos0kSjOPwSszb4ey-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 772139ab-3488-44e1-86cd-84c7b08ce92c +16:29:48.712 [XNIO-1 task-2] ylutpfSDQwCO-it9uAWG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.712 [XNIO-1 task-2] ylutpfSDQwCO-it9uAWG-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.712 [XNIO-1 task-2] ylutpfSDQwCO-it9uAWG-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.712 [XNIO-1 task-2] ylutpfSDQwCO-it9uAWG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.712 [XNIO-1 task-2] ylutpfSDQwCO-it9uAWG-A DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:48.713 [XNIO-1 task-2] ylutpfSDQwCO-it9uAWG-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:48.714 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a60e6322-e319-4c12-9182-59a740475ccd +16:29:48.715 [XNIO-1 task-2] 2wwl8NatQtW-dD80krnfEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:48.715 [XNIO-1 task-2] 2wwl8NatQtW-dD80krnfEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.715 [XNIO-1 task-2] 2wwl8NatQtW-dD80krnfEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.715 [XNIO-1 task-2] 2wwl8NatQtW-dD80krnfEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.715 [XNIO-1 task-2] 2wwl8NatQtW-dD80krnfEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:48.715 [XNIO-1 task-2] 2wwl8NatQtW-dD80krnfEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:48.727 [XNIO-1 task-2] Z17iJXgXSQSu4NqltTk6Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.727 [XNIO-1 task-2] Z17iJXgXSQSu4NqltTk6Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.727 [XNIO-1 task-2] Z17iJXgXSQSu4NqltTk6Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.727 [XNIO-1 task-2] Z17iJXgXSQSu4NqltTk6Tw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.733 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a60e6322-e319-4c12-9182-59a740475ccd +16:29:48.734 [XNIO-1 task-2] 9tJ8AgmiTVuPTo23r_a5zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.735 [XNIO-1 task-2] 9tJ8AgmiTVuPTo23r_a5zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.735 [XNIO-1 task-2] 9tJ8AgmiTVuPTo23r_a5zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.735 [XNIO-1 task-2] 9tJ8AgmiTVuPTo23r_a5zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.743 [XNIO-1 task-2] 9UvcLQz-TBKGrb7pATdb6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.743 [XNIO-1 task-2] 9UvcLQz-TBKGrb7pATdb6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.743 [XNIO-1 task-2] 9UvcLQz-TBKGrb7pATdb6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.743 [XNIO-1 task-2] 9UvcLQz-TBKGrb7pATdb6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.743 [XNIO-1 task-2] 9UvcLQz-TBKGrb7pATdb6A DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:48.744 [XNIO-1 task-2] 9UvcLQz-TBKGrb7pATdb6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:48.750 [XNIO-1 task-2] tP7NAWD8TP-UCehBA6ZqHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.750 [XNIO-1 task-2] tP7NAWD8TP-UCehBA6ZqHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.750 [XNIO-1 task-2] tP7NAWD8TP-UCehBA6ZqHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.750 [XNIO-1 task-2] tP7NAWD8TP-UCehBA6ZqHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.756 [XNIO-1 task-2] nd9tYt41SaqVFUM1U1tTeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.756 [XNIO-1 task-2] nd9tYt41SaqVFUM1U1tTeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.756 [XNIO-1 task-2] nd9tYt41SaqVFUM1U1tTeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.757 [XNIO-1 task-2] nd9tYt41SaqVFUM1U1tTeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:48.757 [XNIO-1 task-2] nd9tYt41SaqVFUM1U1tTeA DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:48.757 [XNIO-1 task-2] nd9tYt41SaqVFUM1U1tTeA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:48.761 [XNIO-1 task-2] oVzenkfbSGG80IEA4NHfYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ae02a98-f471-466e-985d-17d529abab3b +16:29:48.761 [XNIO-1 task-2] oVzenkfbSGG80IEA4NHfYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.761 [XNIO-1 task-2] oVzenkfbSGG80IEA4NHfYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.761 [XNIO-1 task-2] oVzenkfbSGG80IEA4NHfYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ae02a98-f471-466e-985d-17d529abab3b +16:29:48.761 [XNIO-1 task-2] oVzenkfbSGG80IEA4NHfYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ae02a98-f471-466e-985d-17d529abab3b +16:29:48.767 [XNIO-1 task-2] 9l6kouWEQOKB_nrN9astvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.767 [XNIO-1 task-2] 9l6kouWEQOKB_nrN9astvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.767 [XNIO-1 task-2] 9l6kouWEQOKB_nrN9astvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.767 [XNIO-1 task-2] 9l6kouWEQOKB_nrN9astvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.768 [XNIO-1 task-2] 9l6kouWEQOKB_nrN9astvw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.771 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:23fb534c +16:29:48.774 [XNIO-1 task-2] DegKmF5uTgKi9_-NwtiLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.774 [XNIO-1 task-2] DegKmF5uTgKi9_-NwtiLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.774 [XNIO-1 task-2] DegKmF5uTgKi9_-NwtiLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.776 [XNIO-1 task-2] DegKmF5uTgKi9_-NwtiLZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.785 [XNIO-1 task-2] 0UZOJv3mSqCT-6ZpVVksoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.785 [XNIO-1 task-2] 0UZOJv3mSqCT-6ZpVVksoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.785 [XNIO-1 task-2] 0UZOJv3mSqCT-6ZpVVksoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.786 [XNIO-1 task-2] 0UZOJv3mSqCT-6ZpVVksoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.786 [XNIO-1 task-2] 0UZOJv3mSqCT-6ZpVVksoA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.802 [XNIO-1 task-2] ouHLOMkpSVe08MJLwYYBTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb99ba2f-0309-4bab-a6a8-6eee9f9214ea, base path is set to: null +16:29:48.802 [XNIO-1 task-2] ouHLOMkpSVe08MJLwYYBTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.802 [XNIO-1 task-2] ouHLOMkpSVe08MJLwYYBTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.802 [XNIO-1 task-2] ouHLOMkpSVe08MJLwYYBTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fb99ba2f-0309-4bab-a6a8-6eee9f9214ea, base path is set to: null +16:29:48.803 [XNIO-1 task-2] ouHLOMkpSVe08MJLwYYBTg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb99ba2f-0309-4bab-a6a8-6eee9f9214ea", "fb99ba2f-0309-4bab-a6a8-6eee9f9214ea", refreshToken) +16:29:48.808 [XNIO-1 task-2] ouHLOMkpSVe08MJLwYYBTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fb99ba2f-0309-4bab-a6a8-6eee9f9214ea is not found.","severity":"ERROR"} +16:29:48.811 [XNIO-1 task-2] I7o5E9jkQXydC8WjaN-i7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f64b301e-c26b-4d11-b052-d35ef3858522 +16:29:48.811 [XNIO-1 task-2] I7o5E9jkQXydC8WjaN-i7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.811 [XNIO-1 task-2] I7o5E9jkQXydC8WjaN-i7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.812 [XNIO-1 task-2] I7o5E9jkQXydC8WjaN-i7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f64b301e-c26b-4d11-b052-d35ef3858522 +16:29:48.813 [XNIO-1 task-2] I7o5E9jkQXydC8WjaN-i7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f64b301e-c26b-4d11-b052-d35ef3858522 +16:29:48.823 [XNIO-1 task-2] DXx0nUCaSyiYK_tzX4eyNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.823 [XNIO-1 task-2] DXx0nUCaSyiYK_tzX4eyNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.823 [XNIO-1 task-2] DXx0nUCaSyiYK_tzX4eyNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.824 [XNIO-1 task-2] DXx0nUCaSyiYK_tzX4eyNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.835 [XNIO-1 task-2] KBE72n2xSVCuV2Nnj5UY_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.836 [XNIO-1 task-2] KBE72n2xSVCuV2Nnj5UY_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.836 [XNIO-1 task-2] KBE72n2xSVCuV2Nnj5UY_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.836 [XNIO-1 task-2] KBE72n2xSVCuV2Nnj5UY_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.838 [XNIO-1 task-2] KBE72n2xSVCuV2Nnj5UY_g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.843 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:764ce932 +16:29:48.845 [XNIO-1 task-2] x1bsFhIWRzOm0gEcNYzdEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:48.845 [XNIO-1 task-2] x1bsFhIWRzOm0gEcNYzdEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.846 [XNIO-1 task-2] x1bsFhIWRzOm0gEcNYzdEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.846 [XNIO-1 task-2] x1bsFhIWRzOm0gEcNYzdEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:48.846 [XNIO-1 task-2] x1bsFhIWRzOm0gEcNYzdEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:48.853 [XNIO-1 task-2] x681SNYsQFmMAiW6xN-owg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb99ba2f-0309-4bab-a6a8-6eee9f9214ea +16:29:48.853 [XNIO-1 task-2] x681SNYsQFmMAiW6xN-owg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.853 [XNIO-1 task-2] x681SNYsQFmMAiW6xN-owg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.853 [XNIO-1 task-2] x681SNYsQFmMAiW6xN-owg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fb99ba2f-0309-4bab-a6a8-6eee9f9214ea +16:29:48.853 [XNIO-1 task-2] x681SNYsQFmMAiW6xN-owg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fb99ba2f-0309-4bab-a6a8-6eee9f9214ea +16:29:48.858 [XNIO-1 task-2] TRofgl3LQlehPQX_5ARy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.858 [XNIO-1 task-2] TRofgl3LQlehPQX_5ARy3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.859 [XNIO-1 task-2] TRofgl3LQlehPQX_5ARy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.859 [XNIO-1 task-2] TRofgl3LQlehPQX_5ARy3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.859 [XNIO-1 task-2] TRofgl3LQlehPQX_5ARy3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.871 [XNIO-1 task-2] sJyUXMFtQc-pjdhScg8gDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.872 [XNIO-1 task-2] sJyUXMFtQc-pjdhScg8gDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.872 [XNIO-1 task-2] sJyUXMFtQc-pjdhScg8gDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.873 [XNIO-1 task-2] sJyUXMFtQc-pjdhScg8gDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.879 [XNIO-1 task-2] GeEnbN4zTKGo_s4WRDWagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.879 [XNIO-1 task-2] GeEnbN4zTKGo_s4WRDWagA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.879 [XNIO-1 task-2] GeEnbN4zTKGo_s4WRDWagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.880 [XNIO-1 task-2] GeEnbN4zTKGo_s4WRDWagA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.880 [XNIO-1 task-2] GeEnbN4zTKGo_s4WRDWagA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.893 [XNIO-1 task-2] qhF93qwyQfKzXHAxjL55sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f64b301e-c26b-4d11-b052-d35ef3858522 +16:29:48.893 [XNIO-1 task-2] qhF93qwyQfKzXHAxjL55sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.893 [XNIO-1 task-2] qhF93qwyQfKzXHAxjL55sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.893 [XNIO-1 task-2] qhF93qwyQfKzXHAxjL55sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f64b301e-c26b-4d11-b052-d35ef3858522 +16:29:48.894 [XNIO-1 task-2] qhF93qwyQfKzXHAxjL55sQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f64b301e-c26b-4d11-b052-d35ef3858522 +16:29:48.901 [XNIO-1 task-2] T5Jypz_vQ7W80A6-QqX-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.901 [XNIO-1 task-2] T5Jypz_vQ7W80A6-QqX-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.901 [XNIO-1 task-2] T5Jypz_vQ7W80A6-QqX-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.902 [XNIO-1 task-2] T5Jypz_vQ7W80A6-QqX-8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.914 [XNIO-1 task-2] GFsEfmdmTbqpVsSQlm5qMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.914 [XNIO-1 task-2] GFsEfmdmTbqpVsSQlm5qMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.914 [XNIO-1 task-2] GFsEfmdmTbqpVsSQlm5qMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.915 [XNIO-1 task-2] GFsEfmdmTbqpVsSQlm5qMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.915 [XNIO-1 task-2] GFsEfmdmTbqpVsSQlm5qMg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.923 [XNIO-1 task-2] PFmFB6ObRpuD3xsEpffyBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:48.924 [XNIO-1 task-2] PFmFB6ObRpuD3xsEpffyBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.924 [XNIO-1 task-2] PFmFB6ObRpuD3xsEpffyBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:48.924 [XNIO-1 task-2] PFmFB6ObRpuD3xsEpffyBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:48.924 [XNIO-1 task-2] PFmFB6ObRpuD3xsEpffyBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:48.929 [XNIO-1 task-2] HiJ0TuaBRUq5w2D20wQ7EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.929 [XNIO-1 task-2] HiJ0TuaBRUq5w2D20wQ7EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.929 [XNIO-1 task-2] HiJ0TuaBRUq5w2D20wQ7EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.930 [XNIO-1 task-2] HiJ0TuaBRUq5w2D20wQ7EQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.935 [XNIO-1 task-2] MUi4gwtrTuK8Sim0EQ5T0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:48.935 [XNIO-1 task-2] MUi4gwtrTuK8Sim0EQ5T0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.935 [XNIO-1 task-2] MUi4gwtrTuK8Sim0EQ5T0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.935 [XNIO-1 task-2] MUi4gwtrTuK8Sim0EQ5T0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba, base path is set to: null +16:29:48.936 [XNIO-1 task-2] MUi4gwtrTuK8Sim0EQ5T0A DEBUG com.networknt.schema.TypeValidator debug - validate( "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", "ecacf795-4779-4f2c-a1ad-aceb3b29e7ba", refreshToken) +16:29:48.936 [XNIO-1 task-2] MUi4gwtrTuK8Sim0EQ5T0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ecacf795-4779-4f2c-a1ad-aceb3b29e7ba is not found.","severity":"ERROR"} +16:29:48.943 [XNIO-1 task-2] 8XmlTOJUS6W-6qPnTb7dYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.943 [XNIO-1 task-2] 8XmlTOJUS6W-6qPnTb7dYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.943 [XNIO-1 task-2] 8XmlTOJUS6W-6qPnTb7dYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.944 [XNIO-1 task-2] 8XmlTOJUS6W-6qPnTb7dYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.953 [XNIO-1 task-2] 6nf0bGnmTg-yBnBtHDTITg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8c6d2ce7-4fa1-4080-b133-fba58f2a6845, base path is set to: null +16:29:48.953 [XNIO-1 task-2] 6nf0bGnmTg-yBnBtHDTITg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.954 [XNIO-1 task-2] 6nf0bGnmTg-yBnBtHDTITg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.954 [XNIO-1 task-2] 6nf0bGnmTg-yBnBtHDTITg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8c6d2ce7-4fa1-4080-b133-fba58f2a6845, base path is set to: null +16:29:48.954 [XNIO-1 task-2] 6nf0bGnmTg-yBnBtHDTITg DEBUG com.networknt.schema.TypeValidator debug - validate( "8c6d2ce7-4fa1-4080-b133-fba58f2a6845", "8c6d2ce7-4fa1-4080-b133-fba58f2a6845", refreshToken) +16:29:48.958 [XNIO-1 task-2] 7gMwJPsfTHquXBv7FK0JyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9f435746-34a3-4849-9289-eeb2056d81b5, base path is set to: null +16:29:48.958 [XNIO-1 task-2] 7gMwJPsfTHquXBv7FK0JyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.958 [XNIO-1 task-2] 7gMwJPsfTHquXBv7FK0JyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.959 [XNIO-1 task-2] 7gMwJPsfTHquXBv7FK0JyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9f435746-34a3-4849-9289-eeb2056d81b5, base path is set to: null +16:29:48.959 [XNIO-1 task-2] 7gMwJPsfTHquXBv7FK0JyA DEBUG com.networknt.schema.TypeValidator debug - validate( "9f435746-34a3-4849-9289-eeb2056d81b5", "9f435746-34a3-4849-9289-eeb2056d81b5", refreshToken) +16:29:48.965 [XNIO-1 task-2] KsUNCn-BRQeI5wPj8ujOEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.965 [XNIO-1 task-2] KsUNCn-BRQeI5wPj8ujOEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.969 [XNIO-1 task-2] KsUNCn-BRQeI5wPj8ujOEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:48.970 [XNIO-1 task-2] KsUNCn-BRQeI5wPj8ujOEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:48.970 [XNIO-1 task-2] KsUNCn-BRQeI5wPj8ujOEg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:48.975 [XNIO-1 task-2] LQecH-e5Tn2K6Z5zIrPQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.975 [XNIO-1 task-2] LQecH-e5Tn2K6Z5zIrPQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.976 [XNIO-1 task-2] LQecH-e5Tn2K6Z5zIrPQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.976 [XNIO-1 task-2] LQecH-e5Tn2K6Z5zIrPQtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:48.982 [XNIO-1 task-2] G-JYal2RR3KU6sqVDfd39g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:48.982 [XNIO-1 task-2] G-JYal2RR3KU6sqVDfd39g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:48.983 [XNIO-1 task-2] G-JYal2RR3KU6sqVDfd39g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:48.983 [XNIO-1 task-2] G-JYal2RR3KU6sqVDfd39g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:48.983 [XNIO-1 task-2] G-JYal2RR3KU6sqVDfd39g DEBUG com.networknt.schema.TypeValidator debug - validate( "70768563-9620-4b6b-9fbf-101b3fd88c1e", "70768563-9620-4b6b-9fbf-101b3fd88c1e", refreshToken) +16:29:48.987 [XNIO-1 task-2] G-JYal2RR3KU6sqVDfd39g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 70768563-9620-4b6b-9fbf-101b3fd88c1e is not found.","severity":"ERROR"} +16:29:48.993 [XNIO-1 task-2] HPEmlTwuRImWklE30v6SUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.993 [XNIO-1 task-2] HPEmlTwuRImWklE30v6SUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.997 [XNIO-1 task-2] HPEmlTwuRImWklE30v6SUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:48.999 [XNIO-1 task-2] HPEmlTwuRImWklE30v6SUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.005 [XNIO-1 task-2] p2rcCIRYRomRZA-tFx0Nng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.005 [XNIO-1 task-2] p2rcCIRYRomRZA-tFx0Nng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.005 [XNIO-1 task-2] p2rcCIRYRomRZA-tFx0Nng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.006 [XNIO-1 task-2] p2rcCIRYRomRZA-tFx0Nng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.006 [XNIO-1 task-2] p2rcCIRYRomRZA-tFx0Nng DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.015 [XNIO-1 task-2] gZwPQdNYSPSEpLsXVZzNNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:49.015 [XNIO-1 task-2] gZwPQdNYSPSEpLsXVZzNNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.015 [XNIO-1 task-2] gZwPQdNYSPSEpLsXVZzNNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.015 [XNIO-1 task-2] gZwPQdNYSPSEpLsXVZzNNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:49.016 [XNIO-1 task-2] gZwPQdNYSPSEpLsXVZzNNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7954d4e5-3c87-49f5-900a-987f9bf03dc8 +16:29:49.020 [XNIO-1 task-2] 7lKMOcPISbqzPC3ze98D_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.020 [XNIO-1 task-2] 7lKMOcPISbqzPC3ze98D_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.020 [XNIO-1 task-2] 7lKMOcPISbqzPC3ze98D_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.020 [XNIO-1 task-2] 7lKMOcPISbqzPC3ze98D_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.020 [XNIO-1 task-2] 7lKMOcPISbqzPC3ze98D_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.024 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c7da961 +16:29:49.025 [XNIO-1 task-2] HxNoPq6lT9OS8B-gNwRZ9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.025 [XNIO-1 task-2] HxNoPq6lT9OS8B-gNwRZ9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.025 [XNIO-1 task-2] HxNoPq6lT9OS8B-gNwRZ9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.025 [XNIO-1 task-2] HxNoPq6lT9OS8B-gNwRZ9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.025 [XNIO-1 task-2] HxNoPq6lT9OS8B-gNwRZ9w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.042 [XNIO-1 task-2] HVgwNw8GRe2mhL-QAvsH7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9f435746-34a3-4849-9289-eeb2056d81b5 +16:29:49.042 [XNIO-1 task-2] HVgwNw8GRe2mhL-QAvsH7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.042 [XNIO-1 task-2] HVgwNw8GRe2mhL-QAvsH7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.042 [XNIO-1 task-2] HVgwNw8GRe2mhL-QAvsH7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9f435746-34a3-4849-9289-eeb2056d81b5 +16:29:49.042 [XNIO-1 task-2] HVgwNw8GRe2mhL-QAvsH7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9f435746-34a3-4849-9289-eeb2056d81b5 +16:29:49.054 [XNIO-1 task-2] D3v77m4FSt-4_R7C8vVWiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922 +16:29:49.054 [XNIO-1 task-2] D3v77m4FSt-4_R7C8vVWiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.054 [XNIO-1 task-2] D3v77m4FSt-4_R7C8vVWiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.055 [XNIO-1 task-2] D3v77m4FSt-4_R7C8vVWiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922 +16:29:49.055 [XNIO-1 task-2] D3v77m4FSt-4_R7C8vVWiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0794e320-704e-41d5-bb6d-f24b9ed4d922 +16:29:49.064 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2c7da961 +16:29:49.067 [XNIO-1 task-2] X-e9NQ3GQ8-Puk83DgkBag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.067 [XNIO-1 task-2] X-e9NQ3GQ8-Puk83DgkBag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.067 [XNIO-1 task-2] X-e9NQ3GQ8-Puk83DgkBag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.068 [XNIO-1 task-2] X-e9NQ3GQ8-Puk83DgkBag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.099 [XNIO-1 task-2] uys-X_W1QpGuv9SyIxemzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:49.099 [XNIO-1 task-2] uys-X_W1QpGuv9SyIxemzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.099 [XNIO-1 task-2] uys-X_W1QpGuv9SyIxemzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.099 [XNIO-1 task-2] uys-X_W1QpGuv9SyIxemzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70768563-9620-4b6b-9fbf-101b3fd88c1e, base path is set to: null +16:29:49.100 [XNIO-1 task-2] uys-X_W1QpGuv9SyIxemzw DEBUG com.networknt.schema.TypeValidator debug - validate( "70768563-9620-4b6b-9fbf-101b3fd88c1e", "70768563-9620-4b6b-9fbf-101b3fd88c1e", refreshToken) +16:29:49.100 [XNIO-1 task-2] uys-X_W1QpGuv9SyIxemzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 70768563-9620-4b6b-9fbf-101b3fd88c1e is not found.","severity":"ERROR"} +16:29:49.103 [XNIO-1 task-2] -5KzjnNyR6eqdFeyIU-9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.103 [XNIO-1 task-2] -5KzjnNyR6eqdFeyIU-9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.103 [XNIO-1 task-2] -5KzjnNyR6eqdFeyIU-9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.103 [XNIO-1 task-2] -5KzjnNyR6eqdFeyIU-9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.103 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.103 [XNIO-1 task-2] -5KzjnNyR6eqdFeyIU-9aQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.106 [XNIO-1 task-2] WDqTQjztRUemLPmScm1GvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9f435746-34a3-4849-9289-eeb2056d81b5, base path is set to: null +16:29:49.106 [XNIO-1 task-2] WDqTQjztRUemLPmScm1GvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.106 [XNIO-1 task-2] WDqTQjztRUemLPmScm1GvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.106 [XNIO-1 task-2] WDqTQjztRUemLPmScm1GvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9f435746-34a3-4849-9289-eeb2056d81b5, base path is set to: null +16:29:49.107 [XNIO-1 task-2] WDqTQjztRUemLPmScm1GvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9f435746-34a3-4849-9289-eeb2056d81b5", "9f435746-34a3-4849-9289-eeb2056d81b5", refreshToken) +16:29:49.114 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:469f02e8-0826-419a-b70d-2f3995d40482 +16:29:49.117 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:469f02e8-0826-419a-b70d-2f3995d40482 +16:29:49.120 [XNIO-1 task-2] U4h4loQ_Rw-ObGuJbIAQLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922, base path is set to: null +16:29:49.120 [XNIO-1 task-2] U4h4loQ_Rw-ObGuJbIAQLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.120 [XNIO-1 task-2] U4h4loQ_Rw-ObGuJbIAQLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.120 [XNIO-1 task-2] U4h4loQ_Rw-ObGuJbIAQLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922, base path is set to: null +16:29:49.121 [XNIO-1 task-2] U4h4loQ_Rw-ObGuJbIAQLw DEBUG com.networknt.schema.TypeValidator debug - validate( "0794e320-704e-41d5-bb6d-f24b9ed4d922", "0794e320-704e-41d5-bb6d-f24b9ed4d922", refreshToken) +16:29:49.126 [XNIO-1 task-2] U4h4loQ_Rw-ObGuJbIAQLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0794e320-704e-41d5-bb6d-f24b9ed4d922 is not found.","severity":"ERROR"} +16:29:49.130 [XNIO-1 task-2] oSX8oCH-TSGoDGjXz8IGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.130 [XNIO-1 task-2] oSX8oCH-TSGoDGjXz8IGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.130 [XNIO-1 task-2] oSX8oCH-TSGoDGjXz8IGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.130 [XNIO-1 task-2] oSX8oCH-TSGoDGjXz8IGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.130 [XNIO-1 task-2] oSX8oCH-TSGoDGjXz8IGXA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.132 [XNIO-1 task-2] OHOqVULAQm229IKrsByKDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922, base path is set to: null +16:29:49.132 [XNIO-1 task-2] OHOqVULAQm229IKrsByKDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.133 [XNIO-1 task-2] OHOqVULAQm229IKrsByKDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.133 [XNIO-1 task-2] OHOqVULAQm229IKrsByKDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922, base path is set to: null +16:29:49.134 [XNIO-1 task-2] OHOqVULAQm229IKrsByKDw DEBUG com.networknt.schema.TypeValidator debug - validate( "0794e320-704e-41d5-bb6d-f24b9ed4d922", "0794e320-704e-41d5-bb6d-f24b9ed4d922", refreshToken) +16:29:49.134 [XNIO-1 task-2] OHOqVULAQm229IKrsByKDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0794e320-704e-41d5-bb6d-f24b9ed4d922 is not found.","severity":"ERROR"} +16:29:49.143 [XNIO-1 task-2] ZbR43mB1SpGNn5NGXj5AHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.143 [XNIO-1 task-2] ZbR43mB1SpGNn5NGXj5AHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.143 [XNIO-1 task-2] ZbR43mB1SpGNn5NGXj5AHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.143 [XNIO-1 task-2] ZbR43mB1SpGNn5NGXj5AHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.143 [XNIO-1 task-2] ZbR43mB1SpGNn5NGXj5AHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.143 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:855af8d8-8a9b-4e10-8013-91b0aed2fcef +16:29:49.145 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:855af8d8-8a9b-4e10-8013-91b0aed2fcef +16:29:49.150 [XNIO-1 task-2] 036REFsdR4yinFq2Ly1gwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.150 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2c7da961 +16:29:49.150 [XNIO-1 task-2] 036REFsdR4yinFq2Ly1gwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.150 [XNIO-1 task-2] 036REFsdR4yinFq2Ly1gwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.151 [XNIO-1 task-2] 036REFsdR4yinFq2Ly1gwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.154 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:469f02e8-0826-419a-b70d-2f3995d40482 +16:29:49.166 [XNIO-1 task-2] XyNSdrKpSv-GEw7IP6PGRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.167 [XNIO-1 task-2] XyNSdrKpSv-GEw7IP6PGRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.167 [XNIO-1 task-2] XyNSdrKpSv-GEw7IP6PGRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.167 [XNIO-1 task-2] XyNSdrKpSv-GEw7IP6PGRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.171 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c7da961 +16:29:49.172 [XNIO-1 task-2] PK-oSv9BSICgTpWTadjmBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.172 [XNIO-1 task-2] PK-oSv9BSICgTpWTadjmBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.173 [XNIO-1 task-2] PK-oSv9BSICgTpWTadjmBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.173 [XNIO-1 task-2] PK-oSv9BSICgTpWTadjmBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.173 [XNIO-1 task-2] PK-oSv9BSICgTpWTadjmBA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.179 [XNIO-1 task-2] 6IupEhfbQsC3_rgsNTM5-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.179 [XNIO-1 task-2] 6IupEhfbQsC3_rgsNTM5-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.179 [XNIO-1 task-2] 6IupEhfbQsC3_rgsNTM5-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.180 [XNIO-1 task-2] 6IupEhfbQsC3_rgsNTM5-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.185 [XNIO-1 task-2] gJAS_60PTF-9oXMWF0qBuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922, base path is set to: null +16:29:49.186 [XNIO-1 task-2] gJAS_60PTF-9oXMWF0qBuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.186 [XNIO-1 task-2] gJAS_60PTF-9oXMWF0qBuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.186 [XNIO-1 task-2] gJAS_60PTF-9oXMWF0qBuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794e320-704e-41d5-bb6d-f24b9ed4d922, base path is set to: null +16:29:49.186 [XNIO-1 task-2] gJAS_60PTF-9oXMWF0qBuA DEBUG com.networknt.schema.TypeValidator debug - validate( "0794e320-704e-41d5-bb6d-f24b9ed4d922", "0794e320-704e-41d5-bb6d-f24b9ed4d922", refreshToken) +16:29:49.186 [XNIO-1 task-2] gJAS_60PTF-9oXMWF0qBuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0794e320-704e-41d5-bb6d-f24b9ed4d922 is not found.","severity":"ERROR"} +16:29:49.192 [XNIO-1 task-2] Z7TXsG_tRkijefJKtKvYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.192 [XNIO-1 task-2] Z7TXsG_tRkijefJKtKvYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.192 [XNIO-1 task-2] Z7TXsG_tRkijefJKtKvYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.192 [XNIO-1 task-2] Z7TXsG_tRkijefJKtKvYUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.193 [XNIO-1 task-2] Z7TXsG_tRkijefJKtKvYUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ecacf795-4779-4f2c-a1ad-aceb3b29e7ba +16:29:49.197 [XNIO-1 task-2] k2_2TCrqQ_eASCYCgPMHnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.197 [XNIO-1 task-2] k2_2TCrqQ_eASCYCgPMHnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.197 [XNIO-1 task-2] k2_2TCrqQ_eASCYCgPMHnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.197 [XNIO-1 task-2] k2_2TCrqQ_eASCYCgPMHnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.198 [XNIO-1 task-2] k2_2TCrqQ_eASCYCgPMHnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84cb073b-d915-4333-899a-7e21cf8eae04", "84cb073b-d915-4333-899a-7e21cf8eae04", refreshToken) +16:29:49.203 [XNIO-1 task-2] iOJjfmkzRsOlHPVqE5fbEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.203 [XNIO-1 task-2] iOJjfmkzRsOlHPVqE5fbEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.203 [XNIO-1 task-2] iOJjfmkzRsOlHPVqE5fbEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.203 [XNIO-1 task-2] iOJjfmkzRsOlHPVqE5fbEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.203 [XNIO-1 task-2] iOJjfmkzRsOlHPVqE5fbEA DEBUG com.networknt.schema.TypeValidator debug - validate( "84cb073b-d915-4333-899a-7e21cf8eae04", "84cb073b-d915-4333-899a-7e21cf8eae04", refreshToken) +16:29:49.210 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c80e271b-4931-4ae5-8bde-b1ddad2df2ce +16:29:49.212 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c80e271b-4931-4ae5-8bde-b1ddad2df2ce +16:29:49.213 [XNIO-1 task-2] i3JqqMN4Q5GkgaA5jb5iNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.214 [XNIO-1 task-2] i3JqqMN4Q5GkgaA5jb5iNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.214 [XNIO-1 task-2] i3JqqMN4Q5GkgaA5jb5iNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.214 [XNIO-1 task-2] i3JqqMN4Q5GkgaA5jb5iNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.214 [XNIO-1 task-2] i3JqqMN4Q5GkgaA5jb5iNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.221 [XNIO-1 task-2] IBJ8L1rJS8OE0XRE2NiMXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.221 [XNIO-1 task-2] IBJ8L1rJS8OE0XRE2NiMXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.221 [XNIO-1 task-2] IBJ8L1rJS8OE0XRE2NiMXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.221 [XNIO-1 task-2] IBJ8L1rJS8OE0XRE2NiMXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.221 [XNIO-1 task-2] IBJ8L1rJS8OE0XRE2NiMXg DEBUG com.networknt.schema.TypeValidator debug - validate( "84cb073b-d915-4333-899a-7e21cf8eae04", "84cb073b-d915-4333-899a-7e21cf8eae04", refreshToken) +16:29:49.222 [XNIO-1 task-2] IBJ8L1rJS8OE0XRE2NiMXg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84cb073b-d915-4333-899a-7e21cf8eae04 is not found.","severity":"ERROR"} +16:29:49.227 [XNIO-1 task-2] pBBM3MjFSHy2UKuXnQWBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.227 [XNIO-1 task-2] pBBM3MjFSHy2UKuXnQWBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.227 [XNIO-1 task-2] pBBM3MjFSHy2UKuXnQWBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.227 [XNIO-1 task-2] pBBM3MjFSHy2UKuXnQWBEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.227 [XNIO-1 task-2] pBBM3MjFSHy2UKuXnQWBEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.231 [XNIO-1 task-2] ua8owPCFQjCb9zpQYL62cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.231 [XNIO-1 task-2] ua8owPCFQjCb9zpQYL62cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.231 [XNIO-1 task-2] ua8owPCFQjCb9zpQYL62cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.231 [XNIO-1 task-2] ua8owPCFQjCb9zpQYL62cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.231 [XNIO-1 task-2] ua8owPCFQjCb9zpQYL62cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84cb073b-d915-4333-899a-7e21cf8eae04", "84cb073b-d915-4333-899a-7e21cf8eae04", refreshToken) +16:29:49.231 [XNIO-1 task-2] ua8owPCFQjCb9zpQYL62cQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84cb073b-d915-4333-899a-7e21cf8eae04 is not found.","severity":"ERROR"} +16:29:49.238 [XNIO-1 task-2] b5P1B0TESKGwGg9XojPBxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.239 [XNIO-1 task-2] b5P1B0TESKGwGg9XojPBxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.239 [XNIO-1 task-2] b5P1B0TESKGwGg9XojPBxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.239 [XNIO-1 task-2] b5P1B0TESKGwGg9XojPBxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.239 [XNIO-1 task-2] b5P1B0TESKGwGg9XojPBxA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.245 [XNIO-1 task-2] 4aj0K43XRVGoRSM0pbfitQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.245 [XNIO-1 task-2] 4aj0K43XRVGoRSM0pbfitQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +Jun 28, 2024 4:29:49 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:49.245 [XNIO-1 task-2] 4aj0K43XRVGoRSM0pbfitQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:49.246 [XNIO-1 task-2] 4aj0K43XRVGoRSM0pbfitQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.253 [XNIO-1 task-2] 7AyqonjwTJ6YLyI28rFBpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.253 [XNIO-1 task-2] 7AyqonjwTJ6YLyI28rFBpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.254 [XNIO-1 task-2] 7AyqonjwTJ6YLyI28rFBpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.254 [XNIO-1 task-2] 7AyqonjwTJ6YLyI28rFBpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:29:49.254 [XNIO-1 task-2] 7AyqonjwTJ6YLyI28rFBpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84cb073b-d915-4333-899a-7e21cf8eae04 is not found.","severity":"ERROR"} +16:29:49.262 [XNIO-1 task-2] 2HrbY7nQQA2oJQPOPridlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.263 [XNIO-1 task-2] 2HrbY7nQQA2oJQPOPridlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.263 [XNIO-1 task-2] 2HrbY7nQQA2oJQPOPridlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.263 [XNIO-1 task-2] 2HrbY7nQQA2oJQPOPridlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.263 [XNIO-1 task-2] 2HrbY7nQQA2oJQPOPridlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84cb073b-d915-4333-899a-7e21cf8eae04 +16:29:49.271 [XNIO-1 task-2] xGmzeO1OSHiLZHwFi3L2Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.271 [XNIO-1 task-2] xGmzeO1OSHiLZHwFi3L2Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.271 [XNIO-1 task-2] xGmzeO1OSHiLZHwFi3L2Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.271 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:58f2f0e7-0d36-4b63-b2ab-d2e4f2b77cda +16:29:49.271 [XNIO-1 task-2] xGmzeO1OSHiLZHwFi3L2Ow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.274 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:58f2f0e7-0d36-4b63-b2ab-d2e4f2b77cda +16:29:49.279 [XNIO-1 task-2] 1baI_GlHTGq862L23MOWoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.279 [XNIO-1 task-2] 1baI_GlHTGq862L23MOWoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.279 [XNIO-1 task-2] 1baI_GlHTGq862L23MOWoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.279 [XNIO-1 task-2] 1baI_GlHTGq862L23MOWoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84cb073b-d915-4333-899a-7e21cf8eae04, base path is set to: null +16:29:49.279 [XNIO-1 task-2] 1baI_GlHTGq862L23MOWoA DEBUG com.networknt.schema.TypeValidator debug - validate( "84cb073b-d915-4333-899a-7e21cf8eae04", "84cb073b-d915-4333-899a-7e21cf8eae04", refreshToken) +16:29:49.280 [XNIO-1 task-2] 1baI_GlHTGq862L23MOWoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84cb073b-d915-4333-899a-7e21cf8eae04 is not found.","severity":"ERROR"} +16:29:49.283 [XNIO-1 task-2] qLi1XvnxRIyOgtR7XLQW4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.283 [XNIO-1 task-2] qLi1XvnxRIyOgtR7XLQW4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.283 [XNIO-1 task-2] qLi1XvnxRIyOgtR7XLQW4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.284 [XNIO-1 task-2] qLi1XvnxRIyOgtR7XLQW4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.293 [XNIO-1 task-2] GIA7ckPWTBeWznKzaDCD4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.293 [XNIO-1 task-2] GIA7ckPWTBeWznKzaDCD4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.294 [XNIO-1 task-2] GIA7ckPWTBeWznKzaDCD4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.294 [XNIO-1 task-2] GIA7ckPWTBeWznKzaDCD4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.294 [XNIO-1 task-2] GIA7ckPWTBeWznKzaDCD4A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.303 [XNIO-1 task-2] vFhaEma-TKyCbJwjKEn32A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73 +16:29:49.303 [XNIO-1 task-2] vFhaEma-TKyCbJwjKEn32A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.303 [XNIO-1 task-2] vFhaEma-TKyCbJwjKEn32A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.304 [XNIO-1 task-2] vFhaEma-TKyCbJwjKEn32A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73 +16:29:49.304 [XNIO-1 task-2] vFhaEma-TKyCbJwjKEn32A DEBUG com.networknt.schema.TypeValidator debug - validate( "a297db10-3822-41d8-85af-9dd959353d73", "a297db10-3822-41d8-85af-9dd959353d73", refreshToken) +16:29:49.319 [XNIO-1 task-2] j0NB2dxfQKOBXmkH8jQKrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73, base path is set to: null +16:29:49.319 [XNIO-1 task-2] j0NB2dxfQKOBXmkH8jQKrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.319 [XNIO-1 task-2] j0NB2dxfQKOBXmkH8jQKrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.319 [XNIO-1 task-2] j0NB2dxfQKOBXmkH8jQKrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73, base path is set to: null +16:29:49.320 [XNIO-1 task-2] j0NB2dxfQKOBXmkH8jQKrg DEBUG com.networknt.schema.TypeValidator debug - validate( "a297db10-3822-41d8-85af-9dd959353d73", "a297db10-3822-41d8-85af-9dd959353d73", refreshToken) +16:29:49.323 [XNIO-1 task-2] j0NB2dxfQKOBXmkH8jQKrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a297db10-3822-41d8-85af-9dd959353d73 is not found.","severity":"ERROR"} +16:29:49.327 [XNIO-1 task-2] _PkmaBejSLiz6LOjeMB63Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.327 [XNIO-1 task-2] _PkmaBejSLiz6LOjeMB63Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.327 [XNIO-1 task-2] _PkmaBejSLiz6LOjeMB63Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.328 [XNIO-1 task-2] _PkmaBejSLiz6LOjeMB63Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.334 [XNIO-1 task-2] tqtI6MtqSR-aLwbtH9v0_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53c5c0e5-9238-4b8b-a742-58106cc1eb38, base path is set to: null +16:29:49.334 [XNIO-1 task-2] tqtI6MtqSR-aLwbtH9v0_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.334 [XNIO-1 task-2] tqtI6MtqSR-aLwbtH9v0_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.334 [XNIO-1 task-2] tqtI6MtqSR-aLwbtH9v0_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53c5c0e5-9238-4b8b-a742-58106cc1eb38, base path is set to: null +16:29:49.335 [XNIO-1 task-2] tqtI6MtqSR-aLwbtH9v0_w DEBUG com.networknt.schema.TypeValidator debug - validate( "53c5c0e5-9238-4b8b-a742-58106cc1eb38", "53c5c0e5-9238-4b8b-a742-58106cc1eb38", refreshToken) +16:29:49.345 [XNIO-1 task-2] vkqa17-mSA6l6ypbGUnkcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.345 [XNIO-1 task-2] vkqa17-mSA6l6ypbGUnkcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.346 [XNIO-1 task-2] vkqa17-mSA6l6ypbGUnkcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.346 [XNIO-1 task-2] vkqa17-mSA6l6ypbGUnkcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.346 [XNIO-1 task-2] vkqa17-mSA6l6ypbGUnkcw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.366 [XNIO-1 task-2] ahMZ_ljnQ1ykS5jf4B03jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73 +16:29:49.366 [XNIO-1 task-2] ahMZ_ljnQ1ykS5jf4B03jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.366 [XNIO-1 task-2] ahMZ_ljnQ1ykS5jf4B03jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.366 [XNIO-1 task-2] ahMZ_ljnQ1ykS5jf4B03jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73 +16:29:49.366 [XNIO-1 task-2] ahMZ_ljnQ1ykS5jf4B03jg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a297db10-3822-41d8-85af-9dd959353d73 +16:29:49.372 [XNIO-1 task-2] oOsmKAZ-RK2s8eVVgqk6JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b654e8fb-2c06-4f43-9086-4ed8afe5628b, base path is set to: null +16:29:49.372 [XNIO-1 task-2] oOsmKAZ-RK2s8eVVgqk6JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.372 [XNIO-1 task-2] oOsmKAZ-RK2s8eVVgqk6JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.372 [XNIO-1 task-2] oOsmKAZ-RK2s8eVVgqk6JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b654e8fb-2c06-4f43-9086-4ed8afe5628b, base path is set to: null +16:29:49.372 [XNIO-1 task-2] oOsmKAZ-RK2s8eVVgqk6JA DEBUG com.networknt.schema.TypeValidator debug - validate( "b654e8fb-2c06-4f43-9086-4ed8afe5628b", "b654e8fb-2c06-4f43-9086-4ed8afe5628b", refreshToken) +16:29:49.383 [XNIO-1 task-2] TSuEaqt1Re28QzYSG5hPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53c5c0e5-9238-4b8b-a742-58106cc1eb38, base path is set to: null +16:29:49.383 [XNIO-1 task-2] TSuEaqt1Re28QzYSG5hPUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.384 [XNIO-1 task-2] TSuEaqt1Re28QzYSG5hPUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.384 [XNIO-1 task-2] TSuEaqt1Re28QzYSG5hPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/53c5c0e5-9238-4b8b-a742-58106cc1eb38, base path is set to: null +16:29:49.384 [XNIO-1 task-2] TSuEaqt1Re28QzYSG5hPUg DEBUG com.networknt.schema.TypeValidator debug - validate( "53c5c0e5-9238-4b8b-a742-58106cc1eb38", "53c5c0e5-9238-4b8b-a742-58106cc1eb38", refreshToken) +16:29:49.387 [XNIO-1 task-2] YJ28FchBQOWJydZ6D5_Yvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73, base path is set to: null +16:29:49.388 [XNIO-1 task-2] YJ28FchBQOWJydZ6D5_Yvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.388 [XNIO-1 task-2] YJ28FchBQOWJydZ6D5_Yvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.388 [XNIO-1 task-2] YJ28FchBQOWJydZ6D5_Yvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a297db10-3822-41d8-85af-9dd959353d73, base path is set to: null +16:29:49.388 [XNIO-1 task-2] YJ28FchBQOWJydZ6D5_Yvw DEBUG com.networknt.schema.TypeValidator debug - validate( "a297db10-3822-41d8-85af-9dd959353d73", "a297db10-3822-41d8-85af-9dd959353d73", refreshToken) +16:29:49.388 [XNIO-1 task-2] YJ28FchBQOWJydZ6D5_Yvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a297db10-3822-41d8-85af-9dd959353d73 is not found.","severity":"ERROR"} +16:29:49.392 [XNIO-1 task-2] Bz2Syab1TgC8e65Tyy8-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b654e8fb-2c06-4f43-9086-4ed8afe5628b +16:29:49.392 [XNIO-1 task-2] Bz2Syab1TgC8e65Tyy8-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.392 [XNIO-1 task-2] Bz2Syab1TgC8e65Tyy8-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.393 [XNIO-1 task-2] Bz2Syab1TgC8e65Tyy8-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b654e8fb-2c06-4f43-9086-4ed8afe5628b +16:29:49.393 [XNIO-1 task-2] Bz2Syab1TgC8e65Tyy8-Wg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b654e8fb-2c06-4f43-9086-4ed8afe5628b +16:29:49.397 [XNIO-1 task-2] 6SSEFoiYSe-uUdka_3W3Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43e18a2d-658f-42e8-8628-fff24a3c1b7d, base path is set to: null +16:29:49.398 [XNIO-1 task-2] 6SSEFoiYSe-uUdka_3W3Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +Jun 28, 2024 4:29:50 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:49.398 [XNIO-1 task-2] 6SSEFoiYSe-uUdka_3W3Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43e18a2d-658f-42e8-8628-fff24a3c1b7d +16:29:49.399 [XNIO-1 task-2] 6SSEFoiYSe-uUdka_3W3Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "43e18a2d-658f-42e8-8628-fff24a3c1b7d", "43e18a2d-658f-42e8-8628-fff24a3c1b7d", refreshToken) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:49.401 [XNIO-1 task-2] RfBNgHbMR4aeKD-uXWcs8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.402 [XNIO-1 task-2] RfBNgHbMR4aeKD-uXWcs8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0fa792b-f566-4449-bb50-cb6d41e55c0f, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +16:29:49.402 [XNIO-1 task-2] RfBNgHbMR4aeKD-uXWcs8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a0fa792b-f566-4449-bb50-cb6d41e55c0f +16:29:49.406 [XNIO-1 task-2] qZKyKQ-iS-yr9mOJL7KsUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.406 [XNIO-1 task-2] qZKyKQ-iS-yr9mOJL7KsUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.406 [XNIO-1 task-2] qZKyKQ-iS-yr9mOJL7KsUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.406 [XNIO-1 task-2] qZKyKQ-iS-yr9mOJL7KsUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:49.406 [XNIO-1 task-2] qZKyKQ-iS-yr9mOJL7KsUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:49.406 [XNIO-1 task-2] qZKyKQ-iS-yr9mOJL7KsUw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:49.407 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.410 [XNIO-1 task-2] VFJi4PaRQtmEAqIQzAJjIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0fa792b-f566-4449-bb50-cb6d41e55c0f, base path is set to: null +16:29:49.410 [XNIO-1 task-2] VFJi4PaRQtmEAqIQzAJjIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.410 [XNIO-1 task-2] VFJi4PaRQtmEAqIQzAJjIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.411 [XNIO-1 task-2] VFJi4PaRQtmEAqIQzAJjIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0fa792b-f566-4449-bb50-cb6d41e55c0f, base path is set to: null +16:29:49.411 [XNIO-1 task-2] VFJi4PaRQtmEAqIQzAJjIA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0fa792b-f566-4449-bb50-cb6d41e55c0f", "a0fa792b-f566-4449-bb50-cb6d41e55c0f", refreshToken) +16:29:49.420 [XNIO-1 task-2] gDDyy0qbTDa_8Dmf7hmvkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:49.420 [XNIO-1 task-2] gDDyy0qbTDa_8Dmf7hmvkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.420 [XNIO-1 task-2] gDDyy0qbTDa_8Dmf7hmvkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.420 [XNIO-1 task-2] gDDyy0qbTDa_8Dmf7hmvkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:49.420 [XNIO-1 task-2] gDDyy0qbTDa_8Dmf7hmvkw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:49.421 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.427 [XNIO-1 task-2] 3pz-sKxRRs6nlgmpzJgXdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0fa792b-f566-4449-bb50-cb6d41e55c0f, base path is set to: null +16:29:49.427 [XNIO-1 task-2] 3pz-sKxRRs6nlgmpzJgXdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.427 [XNIO-1 task-2] 3pz-sKxRRs6nlgmpzJgXdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.428 [XNIO-1 task-2] 3pz-sKxRRs6nlgmpzJgXdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0fa792b-f566-4449-bb50-cb6d41e55c0f, base path is set to: null +16:29:49.428 [XNIO-1 task-2] 3pz-sKxRRs6nlgmpzJgXdA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0fa792b-f566-4449-bb50-cb6d41e55c0f", "a0fa792b-f566-4449-bb50-cb6d41e55c0f", refreshToken) +16:29:49.435 [XNIO-1 task-2] 9TOfJkKgSnqS-pz5jMvQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:49.435 [XNIO-1 task-2] 9TOfJkKgSnqS-pz5jMvQZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.436 [XNIO-1 task-2] 9TOfJkKgSnqS-pz5jMvQZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.436 [XNIO-1 task-2] 9TOfJkKgSnqS-pz5jMvQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:49.436 [XNIO-1 task-2] 9TOfJkKgSnqS-pz5jMvQZg DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:49.436 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.439 [XNIO-1 task-2] QyhaJgqyQKy3G5nExBN5hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.439 [XNIO-1 task-2] QyhaJgqyQKy3G5nExBN5hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.439 [XNIO-1 task-2] QyhaJgqyQKy3G5nExBN5hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.440 [XNIO-1 task-2] QyhaJgqyQKy3G5nExBN5hw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.440 [XNIO-1 task-2] QyhaJgqyQKy3G5nExBN5hw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.451 [XNIO-1 task-2] fbiIj5qsS4WUkxTw5rMvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.451 [XNIO-1 task-2] fbiIj5qsS4WUkxTw5rMvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.451 [XNIO-1 task-2] fbiIj5qsS4WUkxTw5rMvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.451 [XNIO-1 task-2] fbiIj5qsS4WUkxTw5rMvNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.451 [XNIO-1 task-2] fbiIj5qsS4WUkxTw5rMvNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.455 [XNIO-1 task-2] gLKcwTcxSSK5OnAeDo-uBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0fa792b-f566-4449-bb50-cb6d41e55c0f, base path is set to: null +16:29:49.456 [XNIO-1 task-2] gLKcwTcxSSK5OnAeDo-uBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.456 [XNIO-1 task-2] gLKcwTcxSSK5OnAeDo-uBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.456 [XNIO-1 task-2] gLKcwTcxSSK5OnAeDo-uBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a0fa792b-f566-4449-bb50-cb6d41e55c0f, base path is set to: null +16:29:49.456 [XNIO-1 task-2] gLKcwTcxSSK5OnAeDo-uBw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0fa792b-f566-4449-bb50-cb6d41e55c0f", "a0fa792b-f566-4449-bb50-cb6d41e55c0f", refreshToken) +16:29:49.458 [XNIO-1 task-2] 3_D_xkORQTuZtHY89eMYkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:49.458 [XNIO-1 task-2] 3_D_xkORQTuZtHY89eMYkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.458 [XNIO-1 task-2] 3_D_xkORQTuZtHY89eMYkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.459 [XNIO-1 task-2] 3_D_xkORQTuZtHY89eMYkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7, base path is set to: null +16:29:49.459 [XNIO-1 task-2] 3_D_xkORQTuZtHY89eMYkA DEBUG com.networknt.schema.TypeValidator debug - validate( "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", "ec3a4f04-6c42-41c0-816e-01e42ee6bdc7", refreshToken) +16:29:49.459 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.463 [XNIO-1 task-2] aXV5Du6iTBq0cuwZ2qzS7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:49.463 [XNIO-1 task-2] aXV5Du6iTBq0cuwZ2qzS7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.463 [XNIO-1 task-2] aXV5Du6iTBq0cuwZ2qzS7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.463 [XNIO-1 task-2] aXV5Du6iTBq0cuwZ2qzS7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:49.463 [XNIO-1 task-2] aXV5Du6iTBq0cuwZ2qzS7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:49.463 [XNIO-1 task-2] aXV5Du6iTBq0cuwZ2qzS7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:49.468 [XNIO-1 task-2] x8yHxwwFSde4gFBgSCd8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.468 [XNIO-1 task-2] x8yHxwwFSde4gFBgSCd8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.468 [XNIO-1 task-2] x8yHxwwFSde4gFBgSCd8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.468 [XNIO-1 task-2] x8yHxwwFSde4gFBgSCd8FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.469 [XNIO-1 task-2] x8yHxwwFSde4gFBgSCd8FA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 +16:29:49.470 [XNIO-1 task-2] x8yHxwwFSde4gFBgSCd8FA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ec3a4f04-6c42-41c0-816e-01e42ee6bdc7 is not found.","severity":"ERROR"} +16:29:49.473 [XNIO-1 task-2] NdjztEZqQg6xQIgFdJ-55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.473 [XNIO-1 task-2] NdjztEZqQg6xQIgFdJ-55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.473 [XNIO-1 task-2] NdjztEZqQg6xQIgFdJ-55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.473 [XNIO-1 task-2] NdjztEZqQg6xQIgFdJ-55g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.473 [XNIO-1 task-2] NdjztEZqQg6xQIgFdJ-55g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.476 [XNIO-1 task-2] bS62wUNQR36GonKbdFTLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.476 [XNIO-1 task-2] bS62wUNQR36GonKbdFTLyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.476 [XNIO-1 task-2] bS62wUNQR36GonKbdFTLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.477 [XNIO-1 task-2] bS62wUNQR36GonKbdFTLyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.478 [XNIO-1 task-2] bS62wUNQR36GonKbdFTLyg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.486 [XNIO-1 task-2] TtAzwnPaROCvHrH9CC4xZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.486 [XNIO-1 task-2] TtAzwnPaROCvHrH9CC4xZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.486 [XNIO-1 task-2] TtAzwnPaROCvHrH9CC4xZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.486 [XNIO-1 task-2] TtAzwnPaROCvHrH9CC4xZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.486 [XNIO-1 task-2] TtAzwnPaROCvHrH9CC4xZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.490 [XNIO-1 task-2] n9vMxQOcRJiO9q2-O7Bpxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:49.490 [XNIO-1 task-2] n9vMxQOcRJiO9q2-O7Bpxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.490 [XNIO-1 task-2] n9vMxQOcRJiO9q2-O7Bpxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.490 [XNIO-1 task-2] n9vMxQOcRJiO9q2-O7Bpxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e, base path is set to: null +16:29:49.491 [XNIO-1 task-2] n9vMxQOcRJiO9q2-O7Bpxg DEBUG com.networknt.schema.TypeValidator debug - validate( "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", "3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e", refreshToken) +16:29:49.491 [XNIO-1 task-2] n9vMxQOcRJiO9q2-O7Bpxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e is not found.","severity":"ERROR"} +16:29:49.494 [XNIO-1 task-2] QlBZd0QCRQa9GqjtmhUJ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.494 [XNIO-1 task-2] QlBZd0QCRQa9GqjtmhUJ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.494 [XNIO-1 task-2] QlBZd0QCRQa9GqjtmhUJ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:29:49.494 [XNIO-1 task-2] QlBZd0QCRQa9GqjtmhUJ2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.494 [XNIO-1 task-2] QlBZd0QCRQa9GqjtmhUJ2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3fa0d4ac-557d-40d3-9b3c-e46d4af5d94e +16:29:49.497 [XNIO-1 task-2] YkzBxAuMTYCqGlJq8xNmPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.498 [XNIO-1 task-2] YkzBxAuMTYCqGlJq8xNmPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.498 [XNIO-1 task-2] YkzBxAuMTYCqGlJq8xNmPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.498 [XNIO-1 task-2] YkzBxAuMTYCqGlJq8xNmPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.498 [XNIO-1 task-2] YkzBxAuMTYCqGlJq8xNmPw DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.499 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.511 [XNIO-1 task-2] 5tUNXPAFQhydrxgUt22zyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.511 [XNIO-1 task-2] 5tUNXPAFQhydrxgUt22zyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.511 [XNIO-1 task-2] 5tUNXPAFQhydrxgUt22zyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.512 [XNIO-1 task-2] 5tUNXPAFQhydrxgUt22zyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.517 [XNIO-1 task-2] m_z2A3zzThyBfkYsCHia2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.517 [XNIO-1 task-2] m_z2A3zzThyBfkYsCHia2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.517 [XNIO-1 task-2] m_z2A3zzThyBfkYsCHia2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.517 [XNIO-1 task-2] m_z2A3zzThyBfkYsCHia2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.517 [XNIO-1 task-2] m_z2A3zzThyBfkYsCHia2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.518 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.522 [XNIO-1 task-2] tK02kVl2QXSsLjsfPSvz6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.522 [XNIO-1 task-2] tK02kVl2QXSsLjsfPSvz6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.522 [XNIO-1 task-2] tK02kVl2QXSsLjsfPSvz6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.522 [XNIO-1 task-2] tK02kVl2QXSsLjsfPSvz6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.522 [XNIO-1 task-2] tK02kVl2QXSsLjsfPSvz6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.523 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.527 [XNIO-1 task-2] _zQsILCWQEWHuBTRTk03Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.527 [XNIO-1 task-2] _zQsILCWQEWHuBTRTk03Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.527 [XNIO-1 task-2] _zQsILCWQEWHuBTRTk03Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.527 [XNIO-1 task-2] _zQsILCWQEWHuBTRTk03Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.527 [XNIO-1 task-2] _zQsILCWQEWHuBTRTk03Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.528 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.535 [XNIO-1 task-2] tzROL5g7SQeO2WwMUY5ZzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.535 [XNIO-1 task-2] tzROL5g7SQeO2WwMUY5ZzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.535 [XNIO-1 task-2] tzROL5g7SQeO2WwMUY5ZzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.535 [XNIO-1 task-2] tzROL5g7SQeO2WwMUY5ZzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.535 [XNIO-1 task-2] tzROL5g7SQeO2WwMUY5ZzA DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.536 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.543 [XNIO-1 task-2] 3XUr4_9ISGewON4vxktGsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.543 [XNIO-1 task-2] 3XUr4_9ISGewON4vxktGsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.543 [XNIO-1 task-2] 3XUr4_9ISGewON4vxktGsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:29:49.544 [XNIO-1 task-2] 3XUr4_9ISGewON4vxktGsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:49.544 [XNIO-1 task-2] 3XUr4_9ISGewON4vxktGsw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:29:49.551 [XNIO-1 task-2] NUdeXKQAQ-KLwau7RP4Irg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.551 [XNIO-1 task-2] NUdeXKQAQ-KLwau7RP4Irg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.552 [XNIO-1 task-2] NUdeXKQAQ-KLwau7RP4Irg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.552 [XNIO-1 task-2] NUdeXKQAQ-KLwau7RP4Irg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.561 [XNIO-1 task-2] PP_BStryRBGbZp5Ocj7Pmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.561 [XNIO-1 task-2] PP_BStryRBGbZp5Ocj7Pmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.561 [XNIO-1 task-2] PP_BStryRBGbZp5Ocj7Pmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.561 [XNIO-1 task-2] PP_BStryRBGbZp5Ocj7Pmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.561 [XNIO-1 task-2] PP_BStryRBGbZp5Ocj7Pmw DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.562 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.566 [XNIO-1 task-2] NwoT6cBYQBaHJVy0QDhC0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.566 [XNIO-1 task-2] NwoT6cBYQBaHJVy0QDhC0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.566 [XNIO-1 task-2] NwoT6cBYQBaHJVy0QDhC0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.566 [XNIO-1 task-2] NwoT6cBYQBaHJVy0QDhC0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.566 [XNIO-1 task-2] NwoT6cBYQBaHJVy0QDhC0g DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.567 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.576 [XNIO-1 task-2] OC4K2JZ4RleJhhK66TEsww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.576 [XNIO-1 task-2] OC4K2JZ4RleJhhK66TEsww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.576 [XNIO-1 task-2] OC4K2JZ4RleJhhK66TEsww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.576 [XNIO-1 task-2] OC4K2JZ4RleJhhK66TEsww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.576 [XNIO-1 task-2] OC4K2JZ4RleJhhK66TEsww DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.577 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.580 [XNIO-1 task-2] ya82f7a2Q-yALmqw8_osfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.580 [XNIO-1 task-2] ya82f7a2Q-yALmqw8_osfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.580 [XNIO-1 task-2] ya82f7a2Q-yALmqw8_osfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.581 [XNIO-1 task-2] ya82f7a2Q-yALmqw8_osfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66927f8e-2654-4648-b0f0-9277adc921c9, base path is set to: null +16:29:49.581 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:254ed7b5-4446-484e-94f0-6c58991cd6f2 +16:29:49.581 [XNIO-1 task-2] ya82f7a2Q-yALmqw8_osfA DEBUG com.networknt.schema.TypeValidator debug - validate( "66927f8e-2654-4648-b0f0-9277adc921c9", "66927f8e-2654-4648-b0f0-9277adc921c9", refreshToken) +16:29:49.584 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66927f8e-2654-4648-b0f0-9277adc921c9 +16:29:49.591 [XNIO-1 task-2] zgrlFWyAR0KLfcPid2zFQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d2a1045-06cd-4142-a2da-a10e35ddfba8, base path is set to: null +16:29:49.591 [XNIO-1 task-2] zgrlFWyAR0KLfcPid2zFQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.591 [XNIO-1 task-2] zgrlFWyAR0KLfcPid2zFQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.591 [XNIO-1 task-2] zgrlFWyAR0KLfcPid2zFQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d2a1045-06cd-4142-a2da-a10e35ddfba8, base path is set to: null +16:29:49.592 [XNIO-1 task-2] zgrlFWyAR0KLfcPid2zFQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3d2a1045-06cd-4142-a2da-a10e35ddfba8", "3d2a1045-06cd-4142-a2da-a10e35ddfba8", refreshToken) +16:29:49.601 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bb805a45 +16:29:49.602 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bb805a45 +16:29:49.602 [XNIO-1 task-2] xMzfMPE-Tei4zsQjyfHPOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.602 [XNIO-1 task-2] xMzfMPE-Tei4zsQjyfHPOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.602 [XNIO-1 task-2] xMzfMPE-Tei4zsQjyfHPOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:29:49.603 [XNIO-1 task-2] xMzfMPE-Tei4zsQjyfHPOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:49.622 [XNIO-1 task-2] jK-FK0gFS4icP7I_Z1P22g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d2a1045-06cd-4142-a2da-a10e35ddfba8, base path is set to: null +16:29:49.622 [XNIO-1 task-2] jK-FK0gFS4icP7I_Z1P22g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:29:49.622 [XNIO-1 task-2] jK-FK0gFS4icP7I_Z1P22g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:29:49.622 [XNIO-1 task-2] jK-FK0gFS4icP7I_Z1P22g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d2a1045-06cd-4142-a2da-a10e35ddfba8, base path is set to: null diff --git a/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-service-1.log b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..b2966f8 --- /dev/null +++ b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1901 @@ +16:29:38.846 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ff38b92a-ff20-4a28-98f1-e21d718f1a77 +16:29:38.849 [XNIO-1 task-2] 2rjGLrPSTVW_79OXPz36Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/da3ef261 +16:29:38.849 [XNIO-1 task-2] 2rjGLrPSTVW_79OXPz36Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:38.849 [XNIO-1 task-2] 2rjGLrPSTVW_79OXPz36Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:38.849 [XNIO-1 task-2] 2rjGLrPSTVW_79OXPz36Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/da3ef261 +16:29:38.875 [XNIO-1 task-2] hHVNKd_CQu6MX5rkf_4W1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.875 [XNIO-1 task-2] hHVNKd_CQu6MX5rkf_4W1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:38.876 [XNIO-1 task-2] hHVNKd_CQu6MX5rkf_4W1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.876 [XNIO-1 task-2] hHVNKd_CQu6MX5rkf_4W1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:38.907 [XNIO-1 task-2] hER1umSbQcOfLPzVD8K_Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.908 [XNIO-1 task-2] hER1umSbQcOfLPzVD8K_Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:38.908 [XNIO-1 task-2] hER1umSbQcOfLPzVD8K_Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.940 [XNIO-1 task-2] zd9GJYyrTmKRlBmrlWcndA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.940 [XNIO-1 task-2] zd9GJYyrTmKRlBmrlWcndA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:38.941 [XNIO-1 task-2] zd9GJYyrTmKRlBmrlWcndA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.958 [XNIO-1 task-2] iDLQZ_t7TuiF7TuVEvao9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.958 [XNIO-1 task-2] iDLQZ_t7TuiF7TuVEvao9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:38.959 [XNIO-1 task-2] iDLQZ_t7TuiF7TuVEvao9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:38.979 [XNIO-1 task-2] oIYvT4bGQS-RYbJrGOELXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e9535d54, base path is set to: null +16:29:38.979 [XNIO-1 task-2] oIYvT4bGQS-RYbJrGOELXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:38.979 [XNIO-1 task-2] oIYvT4bGQS-RYbJrGOELXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:38.979 [XNIO-1 task-2] oIYvT4bGQS-RYbJrGOELXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e9535d54, base path is set to: null +16:29:38.980 [XNIO-1 task-2] oIYvT4bGQS-RYbJrGOELXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9535d54", "e9535d54", serviceId) +16:29:38.986 [XNIO-1 task-2] VihxsC9YRvCitmL7ZbpTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/acf4c152 +16:29:38.986 [XNIO-1 task-2] VihxsC9YRvCitmL7ZbpTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:38.986 [XNIO-1 task-2] VihxsC9YRvCitmL7ZbpTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:38.986 [XNIO-1 task-2] VihxsC9YRvCitmL7ZbpTpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/acf4c152 +16:29:39.000 [XNIO-1 task-2] b1D_C9CrTZeR-zg6cSQrAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.000 [XNIO-1 task-2] b1D_C9CrTZeR-zg6cSQrAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.001 [XNIO-1 task-2] b1D_C9CrTZeR-zg6cSQrAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.001 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:45c12497 +16:29:39.003 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:45c12497 +16:29:39.011 [XNIO-1 task-2] 9LA7lY8fSsS0AtWpqvDFIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.011 [XNIO-1 task-2] 9LA7lY8fSsS0AtWpqvDFIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.012 [XNIO-1 task-2] 9LA7lY8fSsS0AtWpqvDFIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.028 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.028 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.029 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.029 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.030 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:39.030 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d6400a7b-aa75-45cd-b986-97ab7114b6f9", {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:39.030 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1330243b", {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:39.030 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:39.030 [XNIO-1 task-2] CJRbYKYMT-KiEf1Dn_1XRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1330243b","serviceName":"e38dd7d7-216e-4107-a8bc-10fe9de6","serviceDesc":"d6400a7b-aa75-45cd-b986-97ab7114b6f9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.045 [XNIO-1 task-2] Z_WncduTRxiMj8Qb46QyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29098e38 +16:29:39.045 [XNIO-1 task-2] Z_WncduTRxiMj8Qb46QyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.045 [XNIO-1 task-2] Z_WncduTRxiMj8Qb46QyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:39.045 [XNIO-1 task-2] Z_WncduTRxiMj8Qb46QyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29098e38 +16:29:39.061 [XNIO-1 task-2] H3fCRONFQY-rb933OsI5iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.061 [XNIO-1 task-2] H3fCRONFQY-rb933OsI5iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.061 [XNIO-1 task-2] H3fCRONFQY-rb933OsI5iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.062 [XNIO-1 task-2] H3fCRONFQY-rb933OsI5iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.110 [XNIO-1 task-2] JOpQ3U2WRV2x1eOulK6i8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/45c12497, base path is set to: null +16:29:39.111 [XNIO-1 task-2] JOpQ3U2WRV2x1eOulK6i8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.111 [XNIO-1 task-2] JOpQ3U2WRV2x1eOulK6i8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:39.111 [XNIO-1 task-2] JOpQ3U2WRV2x1eOulK6i8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/45c12497, base path is set to: null +16:29:39.111 [XNIO-1 task-2] JOpQ3U2WRV2x1eOulK6i8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "45c12497", "45c12497", serviceId) +16:29:39.114 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:45c12497 +16:29:39.120 [XNIO-1 task-2] khEfO7vtQoaxlWds7FdKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e9535d54 +16:29:39.121 [XNIO-1 task-2] khEfO7vtQoaxlWds7FdKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.121 [XNIO-1 task-2] khEfO7vtQoaxlWds7FdKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:39.121 [XNIO-1 task-2] khEfO7vtQoaxlWds7FdKCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e9535d54 +16:29:39.158 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d1b14a55-712d-42a0-a9bb-42502c9051d9 +16:29:39.158 [XNIO-1 task-2] tIrDw3_BRfua4IEx-YmCeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.159 [XNIO-1 task-2] tIrDw3_BRfua4IEx-YmCeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.159 [XNIO-1 task-2] tIrDw3_BRfua4IEx-YmCeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.160 [XNIO-1 task-2] tIrDw3_BRfua4IEx-YmCeg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.232 [XNIO-1 task-2] MViEtxhuRq-a7h7llrPVGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.232 [XNIO-1 task-2] MViEtxhuRq-a7h7llrPVGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.232 [XNIO-1 task-2] MViEtxhuRq-a7h7llrPVGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.233 [XNIO-1 task-2] MViEtxhuRq-a7h7llrPVGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.261 [XNIO-1 task-2] B5UcAjf_RyCe2gdvjLTi3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1330243b +16:29:39.261 [XNIO-1 task-2] B5UcAjf_RyCe2gdvjLTi3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.261 [XNIO-1 task-2] B5UcAjf_RyCe2gdvjLTi3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:39.261 [XNIO-1 task-2] B5UcAjf_RyCe2gdvjLTi3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1330243b +16:29:39.276 [XNIO-1 task-2] eNrsZpObTMuEe3vHHFAVPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.277 [XNIO-1 task-2] eNrsZpObTMuEe3vHHFAVPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.277 [XNIO-1 task-2] eNrsZpObTMuEe3vHHFAVPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.362 [XNIO-1 task-2] FAKdQdQ6RleIREuZ7bYA3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.362 [XNIO-1 task-2] FAKdQdQ6RleIREuZ7bYA3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.363 [XNIO-1 task-2] FAKdQdQ6RleIREuZ7bYA3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.364 [XNIO-1 task-2] FAKdQdQ6RleIREuZ7bYA3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.391 [XNIO-1 task-2] GjsU896FSPOpLJe5Ur5w_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.392 [XNIO-1 task-2] GjsU896FSPOpLJe5Ur5w_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.392 [XNIO-1 task-2] GjsU896FSPOpLJe5Ur5w_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.392 [XNIO-1 task-2] GjsU896FSPOpLJe5Ur5w_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.404 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0fc25b2c-e204-4d04-8acd-75c6bf9dac27 +16:29:39.408 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0fc25b2c-e204-4d04-8acd-75c6bf9dac27 +16:29:39.415 [XNIO-1 task-2] h0va_3P6R96uNt6nlg-YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40d9676c +16:29:39.415 [XNIO-1 task-2] h0va_3P6R96uNt6nlg-YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.415 [XNIO-1 task-2] h0va_3P6R96uNt6nlg-YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:39.415 [XNIO-1 task-2] h0va_3P6R96uNt6nlg-YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40d9676c +16:29:39.427 [XNIO-1 task-2] JEX5ysmESfCJMnfsOG_piw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.428 [XNIO-1 task-2] JEX5ysmESfCJMnfsOG_piw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.428 [XNIO-1 task-2] JEX5ysmESfCJMnfsOG_piw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.428 [XNIO-1 task-2] JEX5ysmESfCJMnfsOG_piw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.442 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.442 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.443 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.444 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.445 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.445 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:39.445 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:39.445 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0f340ece-e62a-491b-b028-c9dc596e", {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:39.445 [XNIO-1 task-2] AbK1evd4SzqIol5L1JxfOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.458 [XNIO-1 task-2] D6wBbJoITPWJg1UCjJ4auA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40d9676c, base path is set to: null +16:29:39.458 [XNIO-1 task-2] D6wBbJoITPWJg1UCjJ4auA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.458 [XNIO-1 task-2] D6wBbJoITPWJg1UCjJ4auA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:39.458 [XNIO-1 task-2] D6wBbJoITPWJg1UCjJ4auA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40d9676c, base path is set to: null +16:29:39.459 [XNIO-1 task-2] D6wBbJoITPWJg1UCjJ4auA DEBUG com.networknt.schema.TypeValidator debug - validate( "40d9676c", "40d9676c", serviceId) +16:29:39.468 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.468 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.468 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.470 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.470 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:39.470 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG com.networknt.schema.TypeValidator debug - validate( "cf031cf3-f9ba-4746-a781-64a80b750ca2", {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:39.471 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG com.networknt.schema.TypeValidator debug - validate( "40d9676c", {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:39.471 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:39.471 [XNIO-1 task-2] uV9eOa0CQyuoQPnwR9WEag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40d9676c","serviceName":"0f340ece-e62a-491b-b028-c9dc596e","serviceDesc":"cf031cf3-f9ba-4746-a781-64a80b750ca2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:39.490 [XNIO-1 task-2] AU2YlAyZSsWWDTX-hyQxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40d9676c +16:29:39.490 [XNIO-1 task-2] AU2YlAyZSsWWDTX-hyQxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.491 [XNIO-1 task-2] AU2YlAyZSsWWDTX-hyQxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:39.491 [XNIO-1 task-2] AU2YlAyZSsWWDTX-hyQxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40d9676c +16:29:39.502 [XNIO-1 task-2] p4ilJsBmRFqYDA_NZW8o5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.502 [XNIO-1 task-2] p4ilJsBmRFqYDA_NZW8o5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.503 [XNIO-1 task-2] p4ilJsBmRFqYDA_NZW8o5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.529 [XNIO-1 task-2] uwoqxuwcTZKGsyUyWfaT_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9dccfa24, base path is set to: null +16:29:39.529 [XNIO-1 task-2] uwoqxuwcTZKGsyUyWfaT_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.529 [XNIO-1 task-2] uwoqxuwcTZKGsyUyWfaT_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:39.529 [XNIO-1 task-2] uwoqxuwcTZKGsyUyWfaT_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9dccfa24, base path is set to: null +16:29:39.530 [XNIO-1 task-2] uwoqxuwcTZKGsyUyWfaT_w DEBUG com.networknt.schema.TypeValidator debug - validate( "9dccfa24", "9dccfa24", serviceId) +16:29:39.551 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3150012d +16:29:39.560 [XNIO-1 task-2] mducw2SaQIyUUC2K0wGWPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.560 [XNIO-1 task-2] mducw2SaQIyUUC2K0wGWPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.560 [XNIO-1 task-2] mducw2SaQIyUUC2K0wGWPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.561 [XNIO-1 task-2] mducw2SaQIyUUC2K0wGWPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.580 [XNIO-1 task-2] s9TMe9PoS0ucb5sqjItZag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.580 [XNIO-1 task-2] s9TMe9PoS0ucb5sqjItZag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.580 [XNIO-1 task-2] s9TMe9PoS0ucb5sqjItZag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.581 [XNIO-1 task-2] s9TMe9PoS0ucb5sqjItZag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.612 [XNIO-1 task-2] l2XCcnzHSjSVEvGl2vjaIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.612 [XNIO-1 task-2] l2XCcnzHSjSVEvGl2vjaIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.612 [XNIO-1 task-2] l2XCcnzHSjSVEvGl2vjaIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.613 [XNIO-1 task-2] l2XCcnzHSjSVEvGl2vjaIw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.650 [XNIO-1 task-2] volM_aSMRnaJesJJS2rj6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.651 [XNIO-1 task-2] volM_aSMRnaJesJJS2rj6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:39.651 [XNIO-1 task-2] volM_aSMRnaJesJJS2rj6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:39.670 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e5261506 +16:29:39.672 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e5261506 +16:29:39.698 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3150012d +16:29:39.781 [XNIO-1 task-2] 9cioYAXbQnm9DfBnRukH5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.781 [XNIO-1 task-2] 9cioYAXbQnm9DfBnRukH5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.781 [XNIO-1 task-2] 9cioYAXbQnm9DfBnRukH5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.782 [XNIO-1 task-2] 9cioYAXbQnm9DfBnRukH5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.807 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3150012d +16:29:39.811 [XNIO-1 task-2] 3-1nUVpUQlyYxUAMHAEIKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.812 [XNIO-1 task-2] 3-1nUVpUQlyYxUAMHAEIKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.812 [XNIO-1 task-2] 3-1nUVpUQlyYxUAMHAEIKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.813 [XNIO-1 task-2] 3-1nUVpUQlyYxUAMHAEIKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.869 [XNIO-1 task-2] 9-0Ih1HPTc2NtFosEhfKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8f9651a +16:29:39.869 [XNIO-1 task-2] 9-0Ih1HPTc2NtFosEhfKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.869 [XNIO-1 task-2] 9-0Ih1HPTc2NtFosEhfKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:39.869 [XNIO-1 task-2] 9-0Ih1HPTc2NtFosEhfKJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8f9651a +16:29:39.889 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3150012d +16:29:39.914 [XNIO-1 task-2] PsoiIWgbRjKDdpEAIV4r4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.914 [XNIO-1 task-2] PsoiIWgbRjKDdpEAIV4r4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.915 [XNIO-1 task-2] PsoiIWgbRjKDdpEAIV4r4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.915 [XNIO-1 task-2] PsoiIWgbRjKDdpEAIV4r4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.958 [XNIO-1 task-2] qGopfi7sTgGQuc3zLbRAlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.958 [XNIO-1 task-2] qGopfi7sTgGQuc3zLbRAlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.959 [XNIO-1 task-2] qGopfi7sTgGQuc3zLbRAlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:39.959 [XNIO-1 task-2] qGopfi7sTgGQuc3zLbRAlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.997 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:40.031 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:40.217 [XNIO-1 task-2] Bc2bW1xKQCKgbYDuO9_42g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.217 [XNIO-1 task-2] Bc2bW1xKQCKgbYDuO9_42g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.217 [XNIO-1 task-2] Bc2bW1xKQCKgbYDuO9_42g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.218 [XNIO-1 task-2] Bc2bW1xKQCKgbYDuO9_42g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.240 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:40.251 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5949b17-f487-4a92-bc5b-d4a214881026 +16:29:40.253 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5949b17-f487-4a92-bc5b-d4a214881026 +16:29:40.257 [XNIO-1 task-2] -pdRh1ZGQ8yqOga7Gvqshg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.257 [XNIO-1 task-2] -pdRh1ZGQ8yqOga7Gvqshg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.258 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:65527edb +16:29:40.276 [XNIO-1 task-2] -pdRh1ZGQ8yqOga7Gvqshg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.331 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:65527edb +16:29:40.335 [XNIO-1 task-2] UwdQAU06Q2ey4g3CLSw6HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.336 [XNIO-1 task-2] UwdQAU06Q2ey4g3CLSw6HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.336 [XNIO-1 task-2] UwdQAU06Q2ey4g3CLSw6HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.336 [XNIO-1 task-2] UwdQAU06Q2ey4g3CLSw6HA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.359 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:40.438 [XNIO-1 task-2] c5IDyx_1TUGx5rYtbUy4Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.438 [XNIO-1 task-2] c5IDyx_1TUGx5rYtbUy4Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.438 [XNIO-1 task-2] c5IDyx_1TUGx5rYtbUy4Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.438 [XNIO-1 task-2] c5IDyx_1TUGx5rYtbUy4Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.453 [XNIO-1 task-2] ceMau1DrQ9eyLB0F1zgVjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.454 [XNIO-1 task-2] ceMau1DrQ9eyLB0F1zgVjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.454 [XNIO-1 task-2] ceMau1DrQ9eyLB0F1zgVjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.455 [XNIO-1 task-2] ceMau1DrQ9eyLB0F1zgVjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.483 [XNIO-1 task-2] Lrk0z1UiQ1qF2KBVGrC-HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.484 [XNIO-1 task-2] Lrk0z1UiQ1qF2KBVGrC-HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.486 [XNIO-1 task-2] Lrk0z1UiQ1qF2KBVGrC-HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.501 [XNIO-1 task-2] eezCHpt4QI-cPok4jo3CWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.502 [XNIO-1 task-2] eezCHpt4QI-cPok4jo3CWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.502 [XNIO-1 task-2] eezCHpt4QI-cPok4jo3CWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.502 [XNIO-1 task-2] eezCHpt4QI-cPok4jo3CWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.517 [XNIO-1 task-2] HVlhInDsSP-bzs1UkmIqyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7d171003, base path is set to: null +16:29:40.517 [XNIO-1 task-2] HVlhInDsSP-bzs1UkmIqyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.517 [XNIO-1 task-2] HVlhInDsSP-bzs1UkmIqyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:40.518 [XNIO-1 task-2] HVlhInDsSP-bzs1UkmIqyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7d171003, base path is set to: null +16:29:40.518 [XNIO-1 task-2] HVlhInDsSP-bzs1UkmIqyg DEBUG com.networknt.schema.TypeValidator debug - validate( "7d171003", "7d171003", serviceId) +16:29:40.530 [XNIO-1 task-2] NY4b_zNSRQS_-GNjkGImxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.531 [XNIO-1 task-2] NY4b_zNSRQS_-GNjkGImxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.531 [XNIO-1 task-2] NY4b_zNSRQS_-GNjkGImxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.531 [XNIO-1 task-2] NY4b_zNSRQS_-GNjkGImxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:40.547 [XNIO-1 task-2] y3oWqPkbT4ST4J0ApNM-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.547 [XNIO-1 task-2] y3oWqPkbT4ST4J0ApNM-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.547 [XNIO-1 task-2] y3oWqPkbT4ST4J0ApNM-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.548 [XNIO-1 task-2] y3oWqPkbT4ST4J0ApNM-Wg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:40.582 [XNIO-1 task-2] VgsT2iVHTBuuAAxW-mm0Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.582 [XNIO-1 task-2] VgsT2iVHTBuuAAxW-mm0Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.582 [XNIO-1 task-2] VgsT2iVHTBuuAAxW-mm0Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.702 [XNIO-1 task-2] yt0y6sUJQby-0e6WOdWjeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.702 [XNIO-1 task-2] yt0y6sUJQby-0e6WOdWjeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.702 [XNIO-1 task-2] yt0y6sUJQby-0e6WOdWjeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.703 [XNIO-1 task-2] yt0y6sUJQby-0e6WOdWjeA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.743 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.743 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.743 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.744 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.745 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.745 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:40.745 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:40.745 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG com.networknt.schema.TypeValidator debug - validate( "03ebb072-9fe0-4e35-aa3f-a69bcd4c", {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:40.745 [XNIO-1 task-2] gKCfXX09TRSuNbkVqdHzvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f5a79038","serviceName":"03ebb072-9fe0-4e35-aa3f-a69bcd4c","serviceDesc":"696eff2f-7807-4161-9bf8-88d2adba06df","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.777 [XNIO-1 task-2] lGGHqlEpTK-Q1yFmvHi1Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.777 [XNIO-1 task-2] lGGHqlEpTK-Q1yFmvHi1Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.778 [XNIO-1 task-2] lGGHqlEpTK-Q1yFmvHi1Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.783 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb +16:29:40.786 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb +16:29:40.857 [XNIO-1 task-2] yqADph1KQgCUscdWrAKVlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f5a79038 +16:29:40.857 [XNIO-1 task-2] yqADph1KQgCUscdWrAKVlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.857 [XNIO-1 task-2] yqADph1KQgCUscdWrAKVlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:40.857 [XNIO-1 task-2] yqADph1KQgCUscdWrAKVlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f5a79038 +16:29:40.890 [XNIO-1 task-2] fmumngjWRgizcqr7WfZZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.890 [XNIO-1 task-2] fmumngjWRgizcqr7WfZZ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.890 [XNIO-1 task-2] fmumngjWRgizcqr7WfZZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:40.891 [XNIO-1 task-2] fmumngjWRgizcqr7WfZZ7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.934 [XNIO-1 task-2] 346FKdcGTByQjh4XvVC-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d8404fa3, base path is set to: null +16:29:40.935 [XNIO-1 task-2] 346FKdcGTByQjh4XvVC-8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:40.935 [XNIO-1 task-2] 346FKdcGTByQjh4XvVC-8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:40.935 [XNIO-1 task-2] 346FKdcGTByQjh4XvVC-8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d8404fa3, base path is set to: null +16:29:40.936 [XNIO-1 task-2] 346FKdcGTByQjh4XvVC-8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d8404fa3", "d8404fa3", serviceId) +16:29:40.948 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.948 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.949 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.949 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.950 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:40.950 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "55e9a629-3e7d-4ed9-acc1-0d13f1719edc", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:40.950 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d8404fa3", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:40.950 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:40.950 [XNIO-1 task-2] 05mPWIKGSySd-3y3rvEU4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:40.991 [XNIO-1 task-2] TnAbtB2UTvKH1vJGdsSXFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.992 [XNIO-1 task-2] TnAbtB2UTvKH1vJGdsSXFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.992 [XNIO-1 task-2] TnAbtB2UTvKH1vJGdsSXFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:40.992 [XNIO-1 task-2] TnAbtB2UTvKH1vJGdsSXFw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.044 [XNIO-1 task-2] CZMxqVgWSu-ozxvDhJLU9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.044 [XNIO-1 task-2] CZMxqVgWSu-ozxvDhJLU9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.045 [XNIO-1 task-2] CZMxqVgWSu-ozxvDhJLU9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.080 [XNIO-1 task-2] n7IMiMgeRSmmjsmQza4Wtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.080 [XNIO-1 task-2] n7IMiMgeRSmmjsmQza4Wtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.080 [XNIO-1 task-2] n7IMiMgeRSmmjsmQza4Wtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.081 [XNIO-1 task-2] n7IMiMgeRSmmjsmQza4Wtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.089 [XNIO-1 task-2] Tsx-wfivQmSjjciu620ZaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d8404fa3 +16:29:41.089 [XNIO-1 task-2] Tsx-wfivQmSjjciu620ZaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.089 [XNIO-1 task-2] Tsx-wfivQmSjjciu620ZaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:41.089 [XNIO-1 task-2] Tsx-wfivQmSjjciu620ZaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d8404fa3 +16:29:41.095 [XNIO-1 task-2] 9-X5D6WoRG2e-_-Aq3PLgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.095 [XNIO-1 task-2] 9-X5D6WoRG2e-_-Aq3PLgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.095 [XNIO-1 task-2] 9-X5D6WoRG2e-_-Aq3PLgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.096 [XNIO-1 task-2] 9-X5D6WoRG2e-_-Aq3PLgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.107 [XNIO-1 task-2] kZhtQM2zSA6G5xbJpGiDlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.107 [XNIO-1 task-2] kZhtQM2zSA6G5xbJpGiDlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.108 [XNIO-1 task-2] kZhtQM2zSA6G5xbJpGiDlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.140 [XNIO-1 task-2] UuE0n-f3TQ-7FX4PhABS3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.140 [XNIO-1 task-2] UuE0n-f3TQ-7FX4PhABS3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.140 [XNIO-1 task-2] UuE0n-f3TQ-7FX4PhABS3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.141 [XNIO-1 task-2] UuE0n-f3TQ-7FX4PhABS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.152 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.152 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.152 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.153 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.153 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.153 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.153 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.153 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG com.networknt.schema.TypeValidator debug - validate( "8b009d4a-4dac-4f5b-8b00-10305fac", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:41.153 [XNIO-1 task-2] yBd5k_STQaaD-EALfQGq3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.162 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.162 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.163 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.164 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.164 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.164 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.165 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.166 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8b009d4a-4dac-4f5b-8b00-10305fac", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:41.166 [XNIO-1 task-2] aUjVzDZwTimgV4-4lGr6_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.185 [XNIO-1 task-2] I82gF9t2Q2-mkZ9t3ECySA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.185 [XNIO-1 task-2] I82gF9t2Q2-mkZ9t3ECySA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.186 [XNIO-1 task-2] I82gF9t2Q2-mkZ9t3ECySA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.215 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65d8bb21 +16:29:41.217 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65d8bb21 +16:29:41.227 [XNIO-1 task-2] 8FZR3bWlSkC7oo87OdBUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.230 [XNIO-1 task-2] 8FZR3bWlSkC7oo87OdBUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.230 [XNIO-1 task-2] 8FZR3bWlSkC7oo87OdBUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.261 [XNIO-1 task-2] hYb5jSRpTdu86zIasCS1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.262 [XNIO-1 task-2] hYb5jSRpTdu86zIasCS1ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.262 [XNIO-1 task-2] hYb5jSRpTdu86zIasCS1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.272 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:29:41.303 [XNIO-1 task-2] 5IDK1znMRsqCnPcZKr8X8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.303 [XNIO-1 task-2] 5IDK1znMRsqCnPcZKr8X8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + +16:29:41.303 [XNIO-1 task-2] 5IDK1znMRsqCnPcZKr8X8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.303 [XNIO-1 task-2] 5IDK1znMRsqCnPcZKr8X8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.304 [XNIO-1 task-2] 5IDK1znMRsqCnPcZKr8X8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.330 [XNIO-1 task-2] ZSJT30WmSROj4ZBfInozlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.330 [XNIO-1 task-2] ZSJT30WmSROj4ZBfInozlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.331 [XNIO-1 task-2] ZSJT30WmSROj4ZBfInozlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.412 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.412 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.413 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.414 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.414 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.414 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.414 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.414 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG com.networknt.schema.TypeValidator debug - validate( "ae6e5fe0-7686-437f-823e-1855bd7d", {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:41.414 [XNIO-1 task-2] W_kA_2FDR-moiZXTU5zrOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a91244d2","serviceName":"ae6e5fe0-7686-437f-823e-1855bd7d","serviceDesc":"8a17e706-d6a1-47a9-8dab-d91eaf7c52e9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.438 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d2ae751-3aa5-4aae-a5c4-7f2b06734e1b +16:29:41.440 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d2ae751-3aa5-4aae-a5c4-7f2b06734e1b +16:29:41.443 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.443 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.443 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.444 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.445 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:29:41.447 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.447 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.448 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.448 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG com.networknt.schema.TypeValidator debug - validate( "12b101a1-ae56-4470-ac49-3e06b5b42b3b", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:41.448 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG com.networknt.schema.TypeValidator debug - validate( "d81b2b65", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) + +16:29:41.448 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG com.networknt.schema.TypeValidator debug - validate( "2b13a91c-d777-4d1a-8f96-148907ce", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:41.448 [XNIO-1 task-2] LENEM32GQGSPe50nkep4Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.467 [XNIO-1 task-2] lKMdxZlUS5mAvWpNTwOMSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a57bf465, base path is set to: null +16:29:41.467 [XNIO-1 task-2] lKMdxZlUS5mAvWpNTwOMSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.467 [XNIO-1 task-2] lKMdxZlUS5mAvWpNTwOMSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:41.467 [XNIO-1 task-2] lKMdxZlUS5mAvWpNTwOMSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a57bf465, base path is set to: null +16:29:41.468 [XNIO-1 task-2] lKMdxZlUS5mAvWpNTwOMSw DEBUG com.networknt.schema.TypeValidator debug - validate( "a57bf465", "a57bf465", serviceId) +16:29:41.484 [XNIO-1 task-2] LLaRYSn5Q0GJw6AEMix9vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d8404fa3 +16:29:41.485 [XNIO-1 task-2] LLaRYSn5Q0GJw6AEMix9vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.485 [XNIO-1 task-2] LLaRYSn5Q0GJw6AEMix9vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:41.485 [XNIO-1 task-2] LLaRYSn5Q0GJw6AEMix9vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d8404fa3 +16:29:41.493 [XNIO-1 task-2] E2RXlBZCTfm_AEqV0DcDnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8247e476, base path is set to: null +16:29:41.494 [XNIO-1 task-2] E2RXlBZCTfm_AEqV0DcDnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.494 [XNIO-1 task-2] E2RXlBZCTfm_AEqV0DcDnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:41.494 [XNIO-1 task-2] E2RXlBZCTfm_AEqV0DcDnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8247e476, base path is set to: null +16:29:41.494 [XNIO-1 task-2] E2RXlBZCTfm_AEqV0DcDnw DEBUG com.networknt.schema.TypeValidator debug - validate( "8247e476", "8247e476", serviceId) +16:29:41.545 [XNIO-1 task-2] GJDXvzc-S7GMP4r9msV7Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.545 [XNIO-1 task-2] GJDXvzc-S7GMP4r9msV7Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.546 [XNIO-1 task-2] GJDXvzc-S7GMP4r9msV7Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.569 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.569 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.570 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.570 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.570 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.571 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "12b101a1-ae56-4470-ac49-3e06b5b42b3b", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:41.571 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "d81b2b65", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:41.571 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.571 [XNIO-1 task-2] FSVDNX6gQYKhQHrDjGU0Rw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d81b2b65","serviceName":"2b13a91c-d777-4d1a-8f96-148907ce","serviceDesc":"12b101a1-ae56-4470-ac49-3e06b5b42b3b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.585 [XNIO-1 task-2] G8Pb7bmzQQKjPZwmCsB3lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a57bf465 +16:29:41.585 [XNIO-1 task-2] G8Pb7bmzQQKjPZwmCsB3lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.586 [XNIO-1 task-2] G8Pb7bmzQQKjPZwmCsB3lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:41.586 [XNIO-1 task-2] G8Pb7bmzQQKjPZwmCsB3lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a57bf465 +16:29:41.592 [XNIO-1 task-2] 3cO8qdEYTPKuQN-MspddZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.592 [XNIO-1 task-2] 3cO8qdEYTPKuQN-MspddZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.592 [XNIO-1 task-2] 3cO8qdEYTPKuQN-MspddZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.593 [XNIO-1 task-2] 3cO8qdEYTPKuQN-MspddZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.628 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.629 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.629 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.630 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.630 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.630 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.630 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.630 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG com.networknt.schema.TypeValidator debug - validate( "8b009d4a-4dac-4f5b-8b00-10305fac", {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:41.630 [XNIO-1 task-2] PSTPWuUdQ8KHBge12Yk4WA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d8404fa3","serviceName":"8b009d4a-4dac-4f5b-8b00-10305fac","serviceDesc":"55e9a629-3e7d-4ed9-acc1-0d13f1719edc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.644 [XNIO-1 task-2] 61HPi6zbTX6GnByBFdu4vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.644 [XNIO-1 task-2] 61HPi6zbTX6GnByBFdu4vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.645 [XNIO-1 task-2] 61HPi6zbTX6GnByBFdu4vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.678 [XNIO-1 task-2] VjycE6MWSDqSInb13OST7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.678 [XNIO-1 task-2] VjycE6MWSDqSInb13OST7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.679 [XNIO-1 task-2] VjycE6MWSDqSInb13OST7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.679 [XNIO-1 task-2] VjycE6MWSDqSInb13OST7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.703 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6ef30bde-c578-41c7-a213-a0a61112df38 +16:29:41.704 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6ef30bde-c578-41c7-a213-a0a61112df38 +16:29:41.709 [XNIO-1 task-2] tzHgo8KsRmyDIKfLEDXgrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.709 [XNIO-1 task-2] tzHgo8KsRmyDIKfLEDXgrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.709 [XNIO-1 task-2] tzHgo8KsRmyDIKfLEDXgrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.710 [XNIO-1 task-2] tzHgo8KsRmyDIKfLEDXgrA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.732 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df0f1ca4-b7c6-437a-870b-83481b23dde4 +16:29:41.735 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df0f1ca4-b7c6-437a-870b-83481b23dde4 +16:29:41.780 [XNIO-1 task-2] CJISZiaaRwShQhMeNhQi9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.780 [XNIO-1 task-2] CJISZiaaRwShQhMeNhQi9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.781 [XNIO-1 task-2] CJISZiaaRwShQhMeNhQi9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.793 [XNIO-1 task-2] IXhI23fkS-S81h9Ptida9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.793 [XNIO-1 task-2] IXhI23fkS-S81h9Ptida9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.793 [XNIO-1 task-2] IXhI23fkS-S81h9Ptida9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.861 [XNIO-1 task-2] 7_0epfA4RG-VIsfwXrI3Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:41.861 [XNIO-1 task-2] 7_0epfA4RG-VIsfwXrI3Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.861 [XNIO-1 task-2] 7_0epfA4RG-VIsfwXrI3Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:41.861 [XNIO-1 task-2] 7_0epfA4RG-VIsfwXrI3Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:41.862 [XNIO-1 task-2] 7_0epfA4RG-VIsfwXrI3Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b021d03", "8b021d03", serviceId) +16:29:41.874 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.874 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.874 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.875 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.875 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.875 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d34beb38-65b4-488b-a086-dccf20c1fd08", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:41.875 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a57bf465", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:41.875 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.875 [XNIO-1 task-2] mB5Is8MGQpmK0JIaO1sESQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.881 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e5261506 +16:29:41.885 [XNIO-1 task-2] 7bY0zxP6QPW_HVacHMsCEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d8404fa3 +16:29:41.885 [XNIO-1 task-2] 7bY0zxP6QPW_HVacHMsCEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.885 [XNIO-1 task-2] 7bY0zxP6QPW_HVacHMsCEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:41.885 [XNIO-1 task-2] 7bY0zxP6QPW_HVacHMsCEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d8404fa3 +16:29:41.920 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.920 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.921 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:41.921 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.921 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.921 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.922 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:41.922 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c638a75-6bab-4400-98d8-5b8a349a", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:41.922 [XNIO-1 task-2] f_5i_1FPQWSKn3IRdEG9bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.925 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:41.932 [XNIO-1 task-2] Ib08-DMZSKygH06lYURM6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/223cda23, base path is set to: null +16:29:41.932 [XNIO-1 task-2] Ib08-DMZSKygH06lYURM6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:41.932 [XNIO-1 task-2] Ib08-DMZSKygH06lYURM6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:41.932 [XNIO-1 task-2] Ib08-DMZSKygH06lYURM6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/223cda23, base path is set to: null +16:29:41.933 [XNIO-1 task-2] Ib08-DMZSKygH06lYURM6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "223cda23", "223cda23", serviceId) +16:29:41.943 [XNIO-1 task-2] Clvxwu4JTvydwpG0wCgSvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.943 [XNIO-1 task-2] Clvxwu4JTvydwpG0wCgSvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.943 [XNIO-1 task-2] Clvxwu4JTvydwpG0wCgSvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.943 [XNIO-1 task-2] Clvxwu4JTvydwpG0wCgSvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.964 [XNIO-1 task-2] h8ahwv2nTOStPHakhORPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.964 [XNIO-1 task-2] h8ahwv2nTOStPHakhORPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.964 [XNIO-1 task-2] h8ahwv2nTOStPHakhORPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.965 [XNIO-1 task-2] h8ahwv2nTOStPHakhORPbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.984 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.985 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.985 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:41.988 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:41.988 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:41.988 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d34beb38-65b4-488b-a086-dccf20c1fd08", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:41.989 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a57bf465", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:41.989 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:41.989 [XNIO-1 task-2] HodkIS15SfeKjA-rkXNawQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.013 [XNIO-1 task-2] _4_kQtXDTWezmtUJ4FzzUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a91244d2 +16:29:42.014 [XNIO-1 task-2] _4_kQtXDTWezmtUJ4FzzUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.014 [XNIO-1 task-2] _4_kQtXDTWezmtUJ4FzzUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.014 [XNIO-1 task-2] _4_kQtXDTWezmtUJ4FzzUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a91244d2 +16:29:42.025 [XNIO-1 task-2] VGB2adfFRNaELFEHHxXrEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.026 [XNIO-1 task-2] VGB2adfFRNaELFEHHxXrEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +Jun 28, 2024 4:29:42 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:42.026 [XNIO-1 task-2] VGB2adfFRNaELFEHHxXrEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.026 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb +16:29:42.026 [XNIO-1 task-2] VGB2adfFRNaELFEHHxXrEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.031 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:42.042 [XNIO-1 task-2] pUBHWnleRkWkUxAKzHL-lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.042 [XNIO-1 task-2] pUBHWnleRkWkUxAKzHL-lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.042 [XNIO-1 task-2] pUBHWnleRkWkUxAKzHL-lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +16:29:42.060 [XNIO-1 task-2] 0BeBLwK-Q0i93rxHcLpNMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/223cda23, base path is set to: null +16:29:42.061 [XNIO-1 task-2] 0BeBLwK-Q0i93rxHcLpNMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.061 [XNIO-1 task-2] 0BeBLwK-Q0i93rxHcLpNMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.062 [XNIO-1 task-2] 0BeBLwK-Q0i93rxHcLpNMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.062 [XNIO-1 task-2] 0BeBLwK-Q0i93rxHcLpNMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/223cda23, base path is set to: null +16:29:42.064 [XNIO-1 task-2] 0BeBLwK-Q0i93rxHcLpNMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/223cda23 +16:29:42.065 [XNIO-1 task-2] 0BeBLwK-Q0i93rxHcLpNMg DEBUG com.networknt.schema.TypeValidator debug - validate( "223cda23", "223cda23", serviceId) + +16:29:42.076 [XNIO-1 task-2] QD-ZHFvmTquvfoJV8ernfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.077 [XNIO-1 task-2] QD-ZHFvmTquvfoJV8ernfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.077 [XNIO-1 task-2] QD-ZHFvmTquvfoJV8ernfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.077 [XNIO-1 task-2] QD-ZHFvmTquvfoJV8ernfA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.101 [XNIO-1 task-2] xPrHQEzATbqJvffEcbj_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.101 [XNIO-1 task-2] xPrHQEzATbqJvffEcbj_mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.102 [XNIO-1 task-2] xPrHQEzATbqJvffEcbj_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.167 [XNIO-1 task-2] uYpfii8qQCS8uJCo0M0K_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.168 [XNIO-1 task-2] uYpfii8qQCS8uJCo0M0K_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.168 [XNIO-1 task-2] uYpfii8qQCS8uJCo0M0K_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.168 [XNIO-1 task-2] uYpfii8qQCS8uJCo0M0K_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.190 [XNIO-1 task-2] WMZr5ooMQIqzrcxCz8BlqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a91244d2, base path is set to: null +16:29:42.190 [XNIO-1 task-2] WMZr5ooMQIqzrcxCz8BlqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.190 [XNIO-1 task-2] WMZr5ooMQIqzrcxCz8BlqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.190 [XNIO-1 task-2] WMZr5ooMQIqzrcxCz8BlqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a91244d2, base path is set to: null +16:29:42.191 [XNIO-1 task-2] WMZr5ooMQIqzrcxCz8BlqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a91244d2", "a91244d2", serviceId) +16:29:42.195 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.195 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.196 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.197 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.198 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.198 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "060fe2d5-829f-44ce-a36b-fcafac345098", {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:42.198 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "223cda23", {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:42.198 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.198 [XNIO-1 task-2] rCs3HShkRpKWgGz--w7HjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"223cda23","serviceName":"297e5263-8000-4790-901a-08cb46d3","serviceDesc":"060fe2d5-829f-44ce-a36b-fcafac345098","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.215 [XNIO-1 task-2] KdjuSm6VTAKXWVyvn2PEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a91244d2 +16:29:42.216 [XNIO-1 task-2] KdjuSm6VTAKXWVyvn2PEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.216 [XNIO-1 task-2] KdjuSm6VTAKXWVyvn2PEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.216 [XNIO-1 task-2] KdjuSm6VTAKXWVyvn2PEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a91244d2 +16:29:42.232 [XNIO-1 task-2] 5x-dmimaS4601zgoDUrTJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.232 [XNIO-1 task-2] 5x-dmimaS4601zgoDUrTJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.232 [XNIO-1 task-2] 5x-dmimaS4601zgoDUrTJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.251 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.251 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.252 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.253 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.253 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.253 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.253 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.253 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG com.networknt.schema.TypeValidator debug - validate( "fbd07dc9-4587-4b3b-a93a-90f14756", {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:42.253 [XNIO-1 task-2] e2my3hvlQoacKZcagdXjbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a57bf465","serviceName":"fbd07dc9-4587-4b3b-a93a-90f14756","serviceDesc":"d34beb38-65b4-488b-a086-dccf20c1fd08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.289 [XNIO-1 task-2] 0akDX33hSrKNkNOgoykPTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.289 [XNIO-1 task-2] 0akDX33hSrKNkNOgoykPTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.289 [XNIO-1 task-2] 0akDX33hSrKNkNOgoykPTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.290 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c92117ab +16:29:42.292 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c92117ab +16:29:42.322 [XNIO-1 task-2] 4AS7OTdRRn271GVruhHCOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a57bf465 +16:29:42.322 [XNIO-1 task-2] 4AS7OTdRRn271GVruhHCOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.322 [XNIO-1 task-2] 4AS7OTdRRn271GVruhHCOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.322 [XNIO-1 task-2] 4AS7OTdRRn271GVruhHCOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a57bf465 +16:29:42.338 [XNIO-1 task-2] 4AMJ0XApQJaPiLKR59ikWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.338 [XNIO-1 task-2] 4AMJ0XApQJaPiLKR59ikWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.338 [XNIO-1 task-2] 4AMJ0XApQJaPiLKR59ikWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.339 [XNIO-1 task-2] 4AMJ0XApQJaPiLKR59ikWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.353 [XNIO-1 task-2] YetCxbDfTBm_aL-8NAJn-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.354 [XNIO-1 task-2] YetCxbDfTBm_aL-8NAJn-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.354 [XNIO-1 task-2] YetCxbDfTBm_aL-8NAJn-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.354 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0bdf60b3 +16:29:42.356 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0bdf60b3 +16:29:42.371 [XNIO-1 task-2] yBVyWvjGRTeD8XYL6Vl_xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.372 [XNIO-1 task-2] yBVyWvjGRTeD8XYL6Vl_xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.372 [XNIO-1 task-2] yBVyWvjGRTeD8XYL6Vl_xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.379 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:201e2688-28ce-4a3b-bd5b-77a0914600f3 +16:29:42.384 [XNIO-1 task-2] 01W4Hxr5Tb6lb0wF1euHjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c92117ab, base path is set to: null +16:29:42.384 [XNIO-1 task-2] 01W4Hxr5Tb6lb0wF1euHjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.384 [XNIO-1 task-2] 01W4Hxr5Tb6lb0wF1euHjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.384 [XNIO-1 task-2] 01W4Hxr5Tb6lb0wF1euHjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c92117ab, base path is set to: null +16:29:42.385 [XNIO-1 task-2] 01W4Hxr5Tb6lb0wF1euHjA DEBUG com.networknt.schema.TypeValidator debug - validate( "c92117ab", "c92117ab", serviceId) +16:29:42.388 [XNIO-1 task-2] zTtwg41eTsqVRvFYCzpcGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c92117ab +16:29:42.389 [XNIO-1 task-2] zTtwg41eTsqVRvFYCzpcGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.389 [XNIO-1 task-2] zTtwg41eTsqVRvFYCzpcGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.389 [XNIO-1 task-2] zTtwg41eTsqVRvFYCzpcGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c92117ab +16:29:42.392 [XNIO-1 task-2] SVVXC9ApQgOrCdlz1UduyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.392 [XNIO-1 task-2] SVVXC9ApQgOrCdlz1UduyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.392 [XNIO-1 task-2] SVVXC9ApQgOrCdlz1UduyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.416 [XNIO-1 task-2] QgDva2pIQ4yWwJl5qQpZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c92117ab, base path is set to: null +16:29:42.416 [XNIO-1 task-2] QgDva2pIQ4yWwJl5qQpZ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.416 [XNIO-1 task-2] QgDva2pIQ4yWwJl5qQpZ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.417 [XNIO-1 task-2] QgDva2pIQ4yWwJl5qQpZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c92117ab, base path is set to: null +16:29:42.417 [XNIO-1 task-2] QgDva2pIQ4yWwJl5qQpZ7A DEBUG com.networknt.schema.TypeValidator debug - validate( "c92117ab", "c92117ab", serviceId) +16:29:42.422 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.422 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.423 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.424 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.424 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.424 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG com.networknt.schema.TypeValidator debug - validate( "c4836ea2-9155-4dfc-bc95-911bbd664842", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:42.424 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG com.networknt.schema.TypeValidator debug - validate( "c92117ab", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:42.424 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.424 [XNIO-1 task-2] jYOo8jsFRPud7kZNpFsVkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.426 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c92117ab +16:29:42.439 [XNIO-1 task-2] C36zdDFcQJmLMeBmC-772Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c92117ab +16:29:42.439 [XNIO-1 task-2] C36zdDFcQJmLMeBmC-772Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.439 [XNIO-1 task-2] C36zdDFcQJmLMeBmC-772Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.439 [XNIO-1 task-2] C36zdDFcQJmLMeBmC-772Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c92117ab +16:29:42.444 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.444 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.446 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.448 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.448 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.448 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.448 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.448 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG com.networknt.schema.TypeValidator debug - validate( "503fed2b-fc43-4efc-a966-9cce2b9e", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:42.448 [XNIO-1 task-2] 0UgiUM3mTVGg5-MLNttdlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.449 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c92117ab +16:29:42.462 [XNIO-1 task-2] CaUb_xlqR0yXSKNsuFpHcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21b16b75, base path is set to: null +16:29:42.462 [XNIO-1 task-2] CaUb_xlqR0yXSKNsuFpHcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.462 [XNIO-1 task-2] CaUb_xlqR0yXSKNsuFpHcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.462 [XNIO-1 task-2] CaUb_xlqR0yXSKNsuFpHcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21b16b75, base path is set to: null +16:29:42.463 [XNIO-1 task-2] CaUb_xlqR0yXSKNsuFpHcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21b16b75", "21b16b75", serviceId) +16:29:42.471 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e5261506 +16:29:42.471 [XNIO-1 task-2] H8RBY7KmTUqdNKMR_FQFzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac27334 +16:29:42.471 [XNIO-1 task-2] H8RBY7KmTUqdNKMR_FQFzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.471 [XNIO-1 task-2] H8RBY7KmTUqdNKMR_FQFzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.472 [XNIO-1 task-2] H8RBY7KmTUqdNKMR_FQFzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac27334 +16:29:42.480 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:917fbc74-8b32-495a-99bb-6d74ee4e7f70 +16:29:42.482 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:917fbc74-8b32-495a-99bb-6d74ee4e7f70 +16:29:42.492 [XNIO-1 task-2] -aIWa4WmQkGrhsLN_r4Fjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.492 [XNIO-1 task-2] -aIWa4WmQkGrhsLN_r4Fjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.492 [XNIO-1 task-2] -aIWa4WmQkGrhsLN_r4Fjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.494 [XNIO-1 task-2] -aIWa4WmQkGrhsLN_r4Fjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.498 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e5261506 +16:29:42.521 [XNIO-1 task-2] 8lS2-l8-SZ60RVSij1YAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3c613b1 +16:29:42.521 [XNIO-1 task-2] 8lS2-l8-SZ60RVSij1YAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.521 [XNIO-1 task-2] 8lS2-l8-SZ60RVSij1YAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.521 [XNIO-1 task-2] 8lS2-l8-SZ60RVSij1YAPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3c613b1 +16:29:42.527 [XNIO-1 task-2] AZqpdC2YSUC-kPAeAzbySw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.527 [XNIO-1 task-2] AZqpdC2YSUC-kPAeAzbySw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.527 [XNIO-1 task-2] AZqpdC2YSUC-kPAeAzbySw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.527 [XNIO-1 task-2] AZqpdC2YSUC-kPAeAzbySw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.552 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1dac7b57-4920-4993-8b7e-0ff533b1c115 +16:29:42.566 [XNIO-1 task-2] CV6laBFUR-GZk2xg1lW5zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d81b2b65, base path is set to: null +16:29:42.566 [XNIO-1 task-2] CV6laBFUR-GZk2xg1lW5zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.566 [XNIO-1 task-2] CV6laBFUR-GZk2xg1lW5zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.566 [XNIO-1 task-2] CV6laBFUR-GZk2xg1lW5zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d81b2b65, base path is set to: null +16:29:42.566 [XNIO-1 task-2] CV6laBFUR-GZk2xg1lW5zw DEBUG com.networknt.schema.TypeValidator debug - validate( "d81b2b65", "d81b2b65", serviceId) +16:29:42.585 [XNIO-1 task-2] a0L6FaxmTHCaR_imAj6aDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bdf60b3 +16:29:42.585 [XNIO-1 task-2] a0L6FaxmTHCaR_imAj6aDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.585 [XNIO-1 task-2] a0L6FaxmTHCaR_imAj6aDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.585 [XNIO-1 task-2] a0L6FaxmTHCaR_imAj6aDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0bdf60b3 +16:29:42.586 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f7529e7e-ace0-4e36-aed2-4535998eae0f +Jun 28, 2024 4:29:42 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:42.594 [XNIO-1 task-2] lH6tq2eITCy5qwJkxmVKiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +Jun 28, 2024 4:29:42 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:42.610 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.610 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.610 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.610 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + +16:29:42.610 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.611 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.611 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.611 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.611 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.611 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG com.networknt.schema.TypeValidator debug - validate( "87b96126-14e4-40e1-acaa-3fd0d0d0", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:42.611 [XNIO-1 task-2] RRo7nJTMRcKPNHNzAGcyyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.613 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:65d8bb21 +16:29:42.623 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.623 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.624 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.624 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.624 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.624 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.624 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.625 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG com.networknt.schema.TypeValidator debug - validate( "503fed2b-fc43-4efc-a966-9cce2b9e", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:42.625 [XNIO-1 task-2] HqlL_xKnQ_aSzyzs5Wh8oA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.627 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c92117ab +16:29:42.637 [XNIO-1 task-2] SwddeIuES76BgK0yTUs5-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0bdf60b3, base path is set to: null +16:29:42.638 [XNIO-1 task-2] SwddeIuES76BgK0yTUs5-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.638 [XNIO-1 task-2] SwddeIuES76BgK0yTUs5-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.638 [XNIO-1 task-2] SwddeIuES76BgK0yTUs5-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0bdf60b3, base path is set to: null +16:29:42.638 [XNIO-1 task-2] SwddeIuES76BgK0yTUs5-A DEBUG com.networknt.schema.TypeValidator debug - validate( "0bdf60b3", "0bdf60b3", serviceId) +16:29:42.643 [XNIO-1 task-2] eAj_pMabSuC4MJGcSvuqGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3c613b1 +16:29:42.643 [XNIO-1 task-2] eAj_pMabSuC4MJGcSvuqGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.643 [XNIO-1 task-2] eAj_pMabSuC4MJGcSvuqGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.643 [XNIO-1 task-2] eAj_pMabSuC4MJGcSvuqGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3c613b1 +16:29:42.657 [XNIO-1 task-2] _0K0nElRQS28BS1KecSPBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0bdf60b3, base path is set to: null +16:29:42.657 [XNIO-1 task-2] _0K0nElRQS28BS1KecSPBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.657 [XNIO-1 task-2] _0K0nElRQS28BS1KecSPBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.657 [XNIO-1 task-2] _0K0nElRQS28BS1KecSPBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0bdf60b3, base path is set to: null +16:29:42.659 [XNIO-1 task-2] _0K0nElRQS28BS1KecSPBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0bdf60b3", "0bdf60b3", serviceId) +16:29:42.679 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0bdf60b3 +16:29:42.686 [XNIO-1 task-2] 0ul7rhICTVOG4UHdiXtn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ff1d88e +16:29:42.686 [XNIO-1 task-2] 0ul7rhICTVOG4UHdiXtn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.686 [XNIO-1 task-2] 0ul7rhICTVOG4UHdiXtn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.687 [XNIO-1 task-2] 0ul7rhICTVOG4UHdiXtn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ff1d88e +16:29:42.697 [XNIO-1 task-2] v1kQt9BKT8CvJBhyZ9lGuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.698 [XNIO-1 task-2] v1kQt9BKT8CvJBhyZ9lGuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.698 [XNIO-1 task-2] v1kQt9BKT8CvJBhyZ9lGuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.698 [XNIO-1 task-2] v1kQt9BKT8CvJBhyZ9lGuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.738 [XNIO-1 task-2] VlvVaKGhTJ-Dj6wAwd61gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ff1d88e, base path is set to: null +16:29:42.739 [XNIO-1 task-2] VlvVaKGhTJ-Dj6wAwd61gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.739 [XNIO-1 task-2] VlvVaKGhTJ-Dj6wAwd61gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.739 [XNIO-1 task-2] VlvVaKGhTJ-Dj6wAwd61gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ff1d88e, base path is set to: null +16:29:42.740 [XNIO-1 task-2] VlvVaKGhTJ-Dj6wAwd61gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5ff1d88e", "5ff1d88e", serviceId) +16:29:42.755 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.755 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.756 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.756 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.756 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.757 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG com.networknt.schema.TypeValidator debug - validate( "eeb88c3a-db3a-472a-819d-7f09cd043a90", {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:42.757 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG com.networknt.schema.TypeValidator debug - validate( "0460bf8c", {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:42.757 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:42.757 [XNIO-1 task-2] vEQPtbm3STGpLJUH_cWY2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0460bf8c","serviceName":"3e48f117-b032-418a-adf1-f09cf563","serviceDesc":"eeb88c3a-db3a-472a-819d-7f09cd043a90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.767 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e5261506 +16:29:42.774 [XNIO-1 task-2] r0wZVjRVR267Hs6FH_6bjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/223cda23 +16:29:42.774 [XNIO-1 task-2] r0wZVjRVR267Hs6FH_6bjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.774 [XNIO-1 task-2] r0wZVjRVR267Hs6FH_6bjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.774 [XNIO-1 task-2] r0wZVjRVR267Hs6FH_6bjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/223cda23 +16:29:42.793 [XNIO-1 task-2] bDNzy-z1QVKjkBSW2ZRgwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.793 [XNIO-1 task-2] bDNzy-z1QVKjkBSW2ZRgwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.793 [XNIO-1 task-2] bDNzy-z1QVKjkBSW2ZRgwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.794 [XNIO-1 task-2] bDNzy-z1QVKjkBSW2ZRgwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.816 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.816 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.817 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.817 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.817 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.818 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.818 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.818 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG com.networknt.schema.TypeValidator debug - validate( "300b9628-c9d0-4057-9185-a1355694", {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:42.818 [XNIO-1 task-2] obNBcNbxTt29P3VUhnWQFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"87585978","serviceName":"300b9628-c9d0-4057-9185-a1355694","serviceDesc":"5ef52b79-aabb-469a-940f-bfe5074f6802","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.827 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:42.832 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.832 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.834 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.834 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.834 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.834 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.834 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.834 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c638a75-6bab-4400-98d8-5b8a349a", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:42.835 [XNIO-1 task-2] GEpw6de6RXmu-Fg1Ao7Zbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.851 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.851 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.852 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:42.852 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.852 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.853 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:42.853 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:42.853 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG com.networknt.schema.TypeValidator debug - validate( "a030f68f-74fc-48fe-ad24-60a33215", {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:42.912 [XNIO-1 task-2] gsTFhbK6Sy-WoBLsbEFGoA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:42.945 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:42.960 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e5261506 +16:29:42.987 [XNIO-1 task-2] rYvLSobRRJmDm3nqg_IjLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0460bf8c, base path is set to: null +16:29:42.987 [XNIO-1 task-2] rYvLSobRRJmDm3nqg_IjLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:42.987 [XNIO-1 task-2] rYvLSobRRJmDm3nqg_IjLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:42.987 [XNIO-1 task-2] rYvLSobRRJmDm3nqg_IjLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0460bf8c, base path is set to: null +16:29:42.987 [XNIO-1 task-2] rYvLSobRRJmDm3nqg_IjLg DEBUG com.networknt.schema.TypeValidator debug - validate( "0460bf8c", "0460bf8c", serviceId) +16:29:42.995 [XNIO-1 task-2] iU9yGW32TkaVDreSvxClAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0460bf8c +16:29:42.995 [XNIO-1 task-2] iU9yGW32TkaVDreSvxClAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:42.995 [XNIO-1 task-2] iU9yGW32TkaVDreSvxClAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:42.995 [XNIO-1 task-2] iU9yGW32TkaVDreSvxClAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0460bf8c +16:29:43.001 [XNIO-1 task-2] FZ5dwGjUSUWfRtEnajGPxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87585978, base path is set to: null +16:29:43.002 [XNIO-1 task-2] FZ5dwGjUSUWfRtEnajGPxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.002 [XNIO-1 task-2] FZ5dwGjUSUWfRtEnajGPxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.002 [XNIO-1 task-2] FZ5dwGjUSUWfRtEnajGPxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/87585978, base path is set to: null +16:29:43.003 [XNIO-1 task-2] FZ5dwGjUSUWfRtEnajGPxA DEBUG com.networknt.schema.TypeValidator debug - validate( "87585978", "87585978", serviceId) +16:29:43.017 [XNIO-1 task-2] vEwJgpwiSLWh0RjWbFeo8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.017 [XNIO-1 task-2] vEwJgpwiSLWh0RjWbFeo8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.018 [XNIO-1 task-2] vEwJgpwiSLWh0RjWbFeo8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.018 [XNIO-1 task-2] vEwJgpwiSLWh0RjWbFeo8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.037 [XNIO-1 task-2] xKGlpheOTZ6gxKK9fpvLHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0460bf8c, base path is set to: null +16:29:43.038 [XNIO-1 task-2] xKGlpheOTZ6gxKK9fpvLHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.038 [XNIO-1 task-2] xKGlpheOTZ6gxKK9fpvLHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.038 [XNIO-1 task-2] xKGlpheOTZ6gxKK9fpvLHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0460bf8c, base path is set to: null +16:29:43.038 [XNIO-1 task-2] xKGlpheOTZ6gxKK9fpvLHA DEBUG com.networknt.schema.TypeValidator debug - validate( "0460bf8c", "0460bf8c", serviceId) +16:29:43.043 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.046 [XNIO-1 task-2] 7vbDH_OFQK2d22wWtcUhmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.046 [XNIO-1 task-2] 7vbDH_OFQK2d22wWtcUhmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.046 [XNIO-1 task-2] 7vbDH_OFQK2d22wWtcUhmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.047 [XNIO-1 task-2] 7vbDH_OFQK2d22wWtcUhmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.080 [XNIO-1 task-2] asOmb2G8Shy51YyBTwytJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0460bf8c +16:29:43.080 [XNIO-1 task-2] asOmb2G8Shy51YyBTwytJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.080 [XNIO-1 task-2] asOmb2G8Shy51YyBTwytJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.080 [XNIO-1 task-2] asOmb2G8Shy51YyBTwytJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0460bf8c +16:29:43.086 [XNIO-1 task-2] mJWLA6lXRGGnoVxhnBKQWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0460bf8c, base path is set to: null +16:29:43.086 [XNIO-1 task-2] mJWLA6lXRGGnoVxhnBKQWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.086 [XNIO-1 task-2] mJWLA6lXRGGnoVxhnBKQWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.087 [XNIO-1 task-2] mJWLA6lXRGGnoVxhnBKQWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0460bf8c, base path is set to: null +16:29:43.087 [XNIO-1 task-2] mJWLA6lXRGGnoVxhnBKQWw DEBUG com.networknt.schema.TypeValidator debug - validate( "0460bf8c", "0460bf8c", serviceId) +16:29:43.112 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.113 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.113 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.114 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.114 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.114 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG com.networknt.schema.TypeValidator debug - validate( "7d4721d9-28a0-40ae-929d-77fc0f16c8e5", {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.114 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG com.networknt.schema.TypeValidator debug - validate( "753ecad7", {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.114 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.114 [XNIO-1 task-2] uxkOhIZWQNi3GDfT2lwGLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"753ecad7","serviceName":"a030f68f-74fc-48fe-ad24-60a33215","serviceDesc":"7d4721d9-28a0-40ae-929d-77fc0f16c8e5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.129 [XNIO-1 task-2] WgnJbF1ESZqYLa54ficxrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65d8bb21 +16:29:43.129 [XNIO-1 task-2] WgnJbF1ESZqYLa54ficxrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.130 [XNIO-1 task-2] WgnJbF1ESZqYLa54ficxrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.130 [XNIO-1 task-2] WgnJbF1ESZqYLa54ficxrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65d8bb21 +16:29:43.138 [XNIO-1 task-2] LWXF6aebShqsF2yMdtkc6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65d8bb21, base path is set to: null +16:29:43.138 [XNIO-1 task-2] LWXF6aebShqsF2yMdtkc6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.138 [XNIO-1 task-2] LWXF6aebShqsF2yMdtkc6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.138 [XNIO-1 task-2] LWXF6aebShqsF2yMdtkc6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65d8bb21, base path is set to: null +16:29:43.139 [XNIO-1 task-2] LWXF6aebShqsF2yMdtkc6g DEBUG com.networknt.schema.TypeValidator debug - validate( "65d8bb21", "65d8bb21", serviceId) +16:29:43.145 [XNIO-1 task-2] ehkO5WelRE6oShrFCjOwWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.145 [XNIO-1 task-2] ehkO5WelRE6oShrFCjOwWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.146 [XNIO-1 task-2] ehkO5WelRE6oShrFCjOwWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.183 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.183 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.184 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.185 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.185 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.185 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f398c687-7e32-4569-8cf2-2cf4f047c3e1", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.185 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "65d8bb21", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.185 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.185 [XNIO-1 task-2] 3HlaBA_rT3egSE91gzDb9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.187 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65d8bb21 +16:29:43.195 [XNIO-1 task-2] Qcb_0RMbQf27FvYWi1-RJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.195 [XNIO-1 task-2] Qcb_0RMbQf27FvYWi1-RJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.195 [XNIO-1 task-2] Qcb_0RMbQf27FvYWi1-RJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.196 [XNIO-1 task-2] Qcb_0RMbQf27FvYWi1-RJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.283 [XNIO-1 task-2] -_L3jWhtQQSX5Yc2p3S9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.284 [XNIO-1 task-2] -_L3jWhtQQSX5Yc2p3S9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.284 [XNIO-1 task-2] -_L3jWhtQQSX5Yc2p3S9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.288 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:303b0915 +16:29:43.295 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.300 [XNIO-1 task-2] A1Vfoa-jR02RSSpXGl-1AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.301 [XNIO-1 task-2] A1Vfoa-jR02RSSpXGl-1AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.301 [XNIO-1 task-2] A1Vfoa-jR02RSSpXGl-1AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.301 [XNIO-1 task-2] A1Vfoa-jR02RSSpXGl-1AA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.320 [XNIO-1 task-2] IFq-3UuhSaKnsf2V-F6cLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.321 [XNIO-1 task-2] IFq-3UuhSaKnsf2V-F6cLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.322 [XNIO-1 task-2] IFq-3UuhSaKnsf2V-F6cLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.352 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.353 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.355 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.356 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.356 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.356 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG com.networknt.schema.TypeValidator debug - validate( "33bb8ad3-d949-4e71-9f3f-3c167120f08e", {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.356 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG com.networknt.schema.TypeValidator debug - validate( "21b16b75", {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.356 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.356 [XNIO-1 task-2] oJmIRMrkRJW1Fzsrbv-tQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21b16b75","serviceName":"580a8076-cce7-4370-8bb7-30429010","serviceDesc":"33bb8ad3-d949-4e71-9f3f-3c167120f08e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.368 [XNIO-1 task-2] kBGf3Ky-SmGHEQB9X29WyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac27334 +16:29:43.368 [XNIO-1 task-2] kBGf3Ky-SmGHEQB9X29WyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.368 [XNIO-1 task-2] kBGf3Ky-SmGHEQB9X29WyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.368 [XNIO-1 task-2] kBGf3Ky-SmGHEQB9X29WyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac27334 +16:29:43.373 [XNIO-1 task-2] C3HAKajeQuqBzWgY5JqAZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.373 [XNIO-1 task-2] C3HAKajeQuqBzWgY5JqAZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.374 [XNIO-1 task-2] C3HAKajeQuqBzWgY5JqAZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.391 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.392 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.393 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.393 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:33aaea97-4436-488f-ab2f-9e3d8307ac67 +16:29:43.396 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.396 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.396 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG com.networknt.schema.TypeValidator debug - validate( "c4836ea2-9155-4dfc-bc95-911bbd664842", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.396 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG com.networknt.schema.TypeValidator debug - validate( "c92117ab", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.396 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.398 [XNIO-1 task-2] qi_Kdby6SmOz6vA2-crdZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.403 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c92117ab +16:29:43.415 [XNIO-1 task-2] MtgCYZF9RBet10hlMB4iag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21b16b75 +16:29:43.416 [XNIO-1 task-2] MtgCYZF9RBet10hlMB4iag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.416 [XNIO-1 task-2] MtgCYZF9RBet10hlMB4iag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.416 [XNIO-1 task-2] MtgCYZF9RBet10hlMB4iag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21b16b75 +16:29:43.429 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e924261e +16:29:43.432 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e924261e +16:29:43.440 [XNIO-1 task-2] LFYPuvGkRTuRfRlulyWHCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.440 [XNIO-1 task-2] LFYPuvGkRTuRfRlulyWHCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.441 [XNIO-1 task-2] LFYPuvGkRTuRfRlulyWHCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.441 [XNIO-1 task-2] LFYPuvGkRTuRfRlulyWHCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.448 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:07638422-d323-4bfa-9b75-9da1647a0235 +16:29:43.465 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:93613d6d-6d27-476a-91cf-48d1b65d10c3 +16:29:43.469 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.471 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.471 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:07638422-d323-4bfa-9b75-9da1647a0235 +16:29:43.473 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.478 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.478 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.480 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d9ac2b7e-eaab-4922-8d20-fc3af5521cbd", {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.480 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a89ce770", {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.480 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.481 [XNIO-1 task-2] 3JKNZ0U0SNW-vqiCnrrmpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.495 [XNIO-1 task-2] zK_6o89PT4SZqUKuW0XhxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b021d03 +16:29:43.495 [XNIO-1 task-2] zK_6o89PT4SZqUKuW0XhxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.495 [XNIO-1 task-2] zK_6o89PT4SZqUKuW0XhxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.495 [XNIO-1 task-2] zK_6o89PT4SZqUKuW0XhxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b021d03 +16:29:43.500 [XNIO-1 task-2] HxFpEPu_RluyuKL6uAWe3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c79e61a6, base path is set to: null +16:29:43.500 [XNIO-1 task-2] HxFpEPu_RluyuKL6uAWe3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.501 [XNIO-1 task-2] HxFpEPu_RluyuKL6uAWe3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.501 [XNIO-1 task-2] HxFpEPu_RluyuKL6uAWe3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c79e61a6, base path is set to: null +16:29:43.501 [XNIO-1 task-2] HxFpEPu_RluyuKL6uAWe3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c79e61a6", "c79e61a6", serviceId) +16:29:43.513 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.513 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.514 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.515 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.516 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.517 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f73a870-ea74-417d-92b9-dce01a306d00", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.517 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b021d03", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.517 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.517 [XNIO-1 task-2] FaOwm3pJTLmid64s8TWecQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.525 [XNIO-1 task-2] F7MvyHLjR6C9MyHZbjs0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/708fcf8d +16:29:43.526 [XNIO-1 task-2] F7MvyHLjR6C9MyHZbjs0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.526 [XNIO-1 task-2] F7MvyHLjR6C9MyHZbjs0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.526 [XNIO-1 task-2] F7MvyHLjR6C9MyHZbjs0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/708fcf8d +16:29:43.535 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.537 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.537 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.538 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.538 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.538 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.538 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.538 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG com.networknt.schema.TypeValidator debug - validate( "7708ce65-f081-4395-801c-3bdb51d8", {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:43.538 [XNIO-1 task-2] Pu8RwCYeSrKV9UNVJyc22A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a89ce770","serviceName":"7708ce65-f081-4395-801c-3bdb51d8","serviceDesc":"d9ac2b7e-eaab-4922-8d20-fc3af5521cbd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.544 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:93613d6d-6d27-476a-91cf-48d1b65d10c3 +16:29:43.572 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e924261e +16:29:43.576 [XNIO-1 task-2] l4upsGLUTPKIr5o7ofonfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/708fcf8d +16:29:43.577 [XNIO-1 task-2] l4upsGLUTPKIr5o7ofonfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.577 [XNIO-1 task-2] l4upsGLUTPKIr5o7ofonfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.577 [XNIO-1 task-2] l4upsGLUTPKIr5o7ofonfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/708fcf8d +16:29:43.583 [XNIO-1 task-2] mg8A9eOlSje7EdY5hoC2zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/753ecad7, base path is set to: null +16:29:43.583 [XNIO-1 task-2] mg8A9eOlSje7EdY5hoC2zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.583 [XNIO-1 task-2] mg8A9eOlSje7EdY5hoC2zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.583 [XNIO-1 task-2] mg8A9eOlSje7EdY5hoC2zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/753ecad7, base path is set to: null +16:29:43.584 [XNIO-1 task-2] mg8A9eOlSje7EdY5hoC2zg DEBUG com.networknt.schema.TypeValidator debug - validate( "753ecad7", "753ecad7", serviceId) +16:29:43.590 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.591 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.591 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.591 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.592 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.592 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG com.networknt.schema.TypeValidator debug - validate( "f398c687-7e32-4569-8cf2-2cf4f047c3e1", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.592 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG com.networknt.schema.TypeValidator debug - validate( "65d8bb21", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.592 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.592 [XNIO-1 task-2] M5_fsl2WQNq3GZZaXmlZGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65d8bb21","serviceName":"87b96126-14e4-40e1-acaa-3fd0d0d0","serviceDesc":"f398c687-7e32-4569-8cf2-2cf4f047c3e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.594 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65d8bb21 +16:29:43.618 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.618 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.618 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.619 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.619 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.619 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1c315c59-1d55-4172-982b-7331b39986aa", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.619 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG com.networknt.schema.TypeValidator debug - validate( "708fcf8d", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.619 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.619 [XNIO-1 task-2] YM4YKi0lTO-BtWfp2gsdtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.644 [XNIO-1 task-2] hVyWslXvS1qALA8gO2MZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/753ecad7 +16:29:43.653 [XNIO-1 task-2] hVyWslXvS1qALA8gO2MZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.653 [XNIO-1 task-2] hVyWslXvS1qALA8gO2MZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.653 [XNIO-1 task-2] hVyWslXvS1qALA8gO2MZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/753ecad7 +16:29:43.684 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.684 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.685 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.686 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.686 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.686 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.686 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.686 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG com.networknt.schema.TypeValidator debug - validate( "872beb0b-1489-40e9-a558-a91c1cbe", {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:43.687 [XNIO-1 task-2] 0aMhP1YpSDaw69HqI8ZcKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bb7c8f39","serviceName":"872beb0b-1489-40e9-a558-a91c1cbe","serviceDesc":"590df4ed-ff27-4f97-8678-5c7af3b184ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.766 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.767 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.770 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.770 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.771 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.771 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.771 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.771 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG com.networknt.schema.TypeValidator debug - validate( "3fddb09f-59f4-4e4c-984b-38cd483c", {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:43.771 [XNIO-1 task-2] 6UJn5BE_RHaMDroy2aluqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"303b0915","serviceName":"3fddb09f-59f4-4e4c-984b-38cd483c","serviceDesc":"12499ee5-426e-475a-9421-044a56b9b7a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.777 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:303b0915 +16:29:43.802 [XNIO-1 task-2] w7_7q3QaReS9dPKG3y-_Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.813 [XNIO-1 task-2] w7_7q3QaReS9dPKG3y-_Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.820 [XNIO-1 task-2] w7_7q3QaReS9dPKG3y-_Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.843 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.846 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.846 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:43.851 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.852 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.852 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.853 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:43.853 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30e86a4b-6b36-4234-b52b-92707997", {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:43.853 [XNIO-1 task-2] prGLCxLWRriWzaScbPaOFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a25ef366","serviceName":"30e86a4b-6b36-4234-b52b-92707997","serviceDesc":"48bc5856-b560-4089-a41f-438575ba0d43","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.891 [XNIO-1 task-2] iESm_YUmSAmcnpwptAtKVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a89ce770, base path is set to: null +16:29:43.891 [XNIO-1 task-2] iESm_YUmSAmcnpwptAtKVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.891 [XNIO-1 task-2] iESm_YUmSAmcnpwptAtKVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.891 [XNIO-1 task-2] iESm_YUmSAmcnpwptAtKVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a89ce770, base path is set to: null +16:29:43.891 [XNIO-1 task-2] iESm_YUmSAmcnpwptAtKVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a89ce770", "a89ce770", serviceId) +16:29:43.898 [XNIO-1 task-2] q3gOaB0gS6aF8CqCn_Qweg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a89ce770 +16:29:43.898 [XNIO-1 task-2] q3gOaB0gS6aF8CqCn_Qweg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.898 [XNIO-1 task-2] q3gOaB0gS6aF8CqCn_Qweg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.898 [XNIO-1 task-2] q3gOaB0gS6aF8CqCn_Qweg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a89ce770 +16:29:43.911 [XNIO-1 task-2] O35xftxET4ec4bBrzMd_0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a25ef366, base path is set to: null +16:29:43.912 [XNIO-1 task-2] O35xftxET4ec4bBrzMd_0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.912 [XNIO-1 task-2] O35xftxET4ec4bBrzMd_0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.912 [XNIO-1 task-2] O35xftxET4ec4bBrzMd_0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a25ef366, base path is set to: null +16:29:43.913 [XNIO-1 task-2] O35xftxET4ec4bBrzMd_0w DEBUG com.networknt.schema.TypeValidator debug - validate( "a25ef366", "a25ef366", serviceId) +16:29:43.922 [XNIO-1 task-2] JKDpuE_gSt6pNqIZkvo3Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.922 [XNIO-1 task-2] JKDpuE_gSt6pNqIZkvo3Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.923 [XNIO-1 task-2] JKDpuE_gSt6pNqIZkvo3Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.946 [XNIO-1 task-2] y8NZQ2IWTVy-a508Lsn37A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.946 [XNIO-1 task-2] y8NZQ2IWTVy-a508Lsn37A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.946 [XNIO-1 task-2] y8NZQ2IWTVy-a508Lsn37A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.946 [XNIO-1 task-2] y8NZQ2IWTVy-a508Lsn37A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.970 [XNIO-1 task-2] R5JKEqWlTUSvBZqwQyKcig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/303b0915 +16:29:43.970 [XNIO-1 task-2] R5JKEqWlTUSvBZqwQyKcig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.970 [XNIO-1 task-2] R5JKEqWlTUSvBZqwQyKcig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:43.970 [XNIO-1 task-2] R5JKEqWlTUSvBZqwQyKcig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/303b0915 +16:29:43.971 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:303b0915 +16:29:43.984 [XNIO-1 task-2] bQp3VN6eSg-dv95UG7uWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a25ef366, base path is set to: null +16:29:43.985 [XNIO-1 task-2] bQp3VN6eSg-dv95UG7uWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:43.985 [XNIO-1 task-2] bQp3VN6eSg-dv95UG7uWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:43.985 [XNIO-1 task-2] bQp3VN6eSg-dv95UG7uWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a25ef366, base path is set to: null +16:29:43.985 [XNIO-1 task-2] bQp3VN6eSg-dv95UG7uWWg DEBUG com.networknt.schema.TypeValidator debug - validate( "a25ef366", "a25ef366", serviceId) +16:29:43.994 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.994 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.995 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:43.995 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:43.995 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:43.996 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG com.networknt.schema.TypeValidator debug - validate( "5507fd5f-f742-4d61-b0a4-917d25977cb6", {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:43.996 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac27334", {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:43.996 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:43.996 [XNIO-1 task-2] nZdCcSSVSee0lOlB0e2cXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.013 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.013 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.014 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.014 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.014 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.015 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG com.networknt.schema.TypeValidator debug - validate( "c4836ea2-9155-4dfc-bc95-911bbd664842", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.015 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG com.networknt.schema.TypeValidator debug - validate( "c92117ab", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.015 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.015 [XNIO-1 task-2] Wqs7dnPnQ72EMWHOcyHN_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c92117ab","serviceName":"503fed2b-fc43-4efc-a966-9cce2b9e","serviceDesc":"c4836ea2-9155-4dfc-bc95-911bbd664842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.017 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c92117ab +16:29:44.017 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9686b271-7c3d-4ec0-a070-bed6e07d5562 +16:29:44.029 [XNIO-1 task-2] WDWYDr5MRcydyO-0BYyDJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.030 [XNIO-1 task-2] WDWYDr5MRcydyO-0BYyDJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.030 [XNIO-1 task-2] WDWYDr5MRcydyO-0BYyDJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.030 [XNIO-1 task-2] WDWYDr5MRcydyO-0BYyDJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.052 [XNIO-1 task-2] ZQNbH_MSS8G3JWHAnoWU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a25ef366 +16:29:44.053 [XNIO-1 task-2] ZQNbH_MSS8G3JWHAnoWU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.053 [XNIO-1 task-2] ZQNbH_MSS8G3JWHAnoWU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.053 [XNIO-1 task-2] ZQNbH_MSS8G3JWHAnoWU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a25ef366 +Jun 28, 2024 4:29:44 PM com.hazelcast.map.impl.operation.DeleteOperation +16:29:44.080 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb +16:29:44.081 [XNIO-1 task-2] jnezAvcvRIO0wXuhAwmWIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +16:29:44.081 [XNIO-1 task-2] jnezAvcvRIO0wXuhAwmWIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.081 [XNIO-1 task-2] jnezAvcvRIO0wXuhAwmWIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.084 [XNIO-1 task-2] jnezAvcvRIO0wXuhAwmWIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.087 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:29:44.173 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.173 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.174 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.175 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.175 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.175 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1f73a870-ea74-417d-92b9-dce01a306d00", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.175 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "8b021d03", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.175 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.175 [XNIO-1 task-2] Bvd5u3cCRpqlzfAQezn0Ag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.187 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.187 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.188 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.188 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.188 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.189 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1c315c59-1d55-4172-982b-7331b39986aa", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.189 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG com.networknt.schema.TypeValidator debug - validate( "708fcf8d", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.189 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.189 [XNIO-1 task-2] ChPcUTDpRcG0cdUUKiNlVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.202 [XNIO-1 task-2] WBG_5XslQZaTS99gTuvy7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.202 [XNIO-1 task-2] WBG_5XslQZaTS99gTuvy7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.202 [XNIO-1 task-2] WBG_5XslQZaTS99gTuvy7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.203 [XNIO-1 task-2] WBG_5XslQZaTS99gTuvy7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.235 [XNIO-1 task-2] vWnVe8zPQG-sn_6p0FCT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65d8bb21 +16:29:44.235 [XNIO-1 task-2] vWnVe8zPQG-sn_6p0FCT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.235 [XNIO-1 task-2] vWnVe8zPQG-sn_6p0FCT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.235 [XNIO-1 task-2] vWnVe8zPQG-sn_6p0FCT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65d8bb21 +16:29:44.237 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:65d8bb21 +16:29:44.253 [XNIO-1 task-2] 7q5LDWPxTXmE246zeBrnUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:44.253 [XNIO-1 task-2] 7q5LDWPxTXmE246zeBrnUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.253 [XNIO-1 task-2] 7q5LDWPxTXmE246zeBrnUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.253 [XNIO-1 task-2] 7q5LDWPxTXmE246zeBrnUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:44.254 [XNIO-1 task-2] 7q5LDWPxTXmE246zeBrnUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b021d03", "8b021d03", serviceId) +16:29:44.262 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:564cba2b-2780-4646-a529-f5b1b246fe13 +16:29:44.263 [XNIO-1 task-2] sn5sZYwyTTuRYVoBHEXIlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b021d03 +16:29:44.263 [XNIO-1 task-2] sn5sZYwyTTuRYVoBHEXIlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.263 [XNIO-1 task-2] sn5sZYwyTTuRYVoBHEXIlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.264 [XNIO-1 task-2] sn5sZYwyTTuRYVoBHEXIlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b021d03 +16:29:44.269 [XNIO-1 task-2] XFdSP3l7TNOZJZyoSL4e4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.269 [XNIO-1 task-2] XFdSP3l7TNOZJZyoSL4e4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.269 [XNIO-1 task-2] XFdSP3l7TNOZJZyoSL4e4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.280 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:564cba2b-2780-4646-a529-f5b1b246fe13 +16:29:44.282 [XNIO-1 task-2] S7VfAyQ-RKap0-cLW3NC4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bb7c8f39 +16:29:44.282 [XNIO-1 task-2] S7VfAyQ-RKap0-cLW3NC4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.283 [XNIO-1 task-2] S7VfAyQ-RKap0-cLW3NC4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.283 [XNIO-1 task-2] S7VfAyQ-RKap0-cLW3NC4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bb7c8f39 +16:29:44.297 [XNIO-1 task-2] OM_ZZKYvQtGVBBFrv4P1Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/708fcf8d, base path is set to: null +16:29:44.297 [XNIO-1 task-2] OM_ZZKYvQtGVBBFrv4P1Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.297 [XNIO-1 task-2] OM_ZZKYvQtGVBBFrv4P1Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.298 [XNIO-1 task-2] OM_ZZKYvQtGVBBFrv4P1Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/708fcf8d, base path is set to: null +16:29:44.298 [XNIO-1 task-2] OM_ZZKYvQtGVBBFrv4P1Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "708fcf8d", "708fcf8d", serviceId) +16:29:44.301 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.301 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.302 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.302 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.302 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.302 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f73a870-ea74-417d-92b9-dce01a306d00", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.302 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG com.networknt.schema.TypeValidator debug - validate( "8b021d03", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.302 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.302 [XNIO-1 task-2] rXfMHXAQTl6xf76T5xWCTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8b021d03","serviceName":"5c638a75-6bab-4400-98d8-5b8a349a","serviceDesc":"1f73a870-ea74-417d-92b9-dce01a306d00","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.314 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.314 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.315 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.316 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.316 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.316 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1c315c59-1d55-4172-982b-7331b39986aa", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.317 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG com.networknt.schema.TypeValidator debug - validate( "708fcf8d", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.317 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.317 [XNIO-1 task-2] BSF3AjkcSISMkNyRy6teMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.331 [XNIO-1 task-2] AiZFDk_UQyKGFa4xMSXsoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b021d03 +16:29:44.331 [XNIO-1 task-2] AiZFDk_UQyKGFa4xMSXsoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.331 [XNIO-1 task-2] AiZFDk_UQyKGFa4xMSXsoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.331 [XNIO-1 task-2] AiZFDk_UQyKGFa4xMSXsoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b021d03 +16:29:44.335 [XNIO-1 task-2] R4U801D1RfyQI4FLa7Qw0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:44.336 [XNIO-1 task-2] R4U801D1RfyQI4FLa7Qw0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.336 [XNIO-1 task-2] R4U801D1RfyQI4FLa7Qw0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.336 [XNIO-1 task-2] R4U801D1RfyQI4FLa7Qw0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:44.336 [XNIO-1 task-2] R4U801D1RfyQI4FLa7Qw0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8b021d03", "8b021d03", serviceId) +16:29:44.340 [XNIO-1 task-2] RoizBw-0RrCYBaXrsyhYwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.340 [XNIO-1 task-2] RoizBw-0RrCYBaXrsyhYwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.340 [XNIO-1 task-2] RoizBw-0RrCYBaXrsyhYwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.340 [XNIO-1 task-2] RoizBw-0RrCYBaXrsyhYwA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.359 [XNIO-1 task-2] ps-AwBNLQsWNKOFvbMEyog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.359 [XNIO-1 task-2] ps-AwBNLQsWNKOFvbMEyog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.360 [XNIO-1 task-2] ps-AwBNLQsWNKOFvbMEyog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.381 [XNIO-1 task-2] UNvbT88bTrCecFruKpHhDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.382 [XNIO-1 task-2] UNvbT88bTrCecFruKpHhDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.382 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e924261e +16:29:44.382 [XNIO-1 task-2] UNvbT88bTrCecFruKpHhDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.383 [XNIO-1 task-2] UNvbT88bTrCecFruKpHhDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.389 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:48d0f72e-44cb-42b6-84de-30f5d2ae701e +16:29:44.402 [XNIO-1 task-2] yXAPljO7R7iPHezCGNkDVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:44.402 [XNIO-1 task-2] yXAPljO7R7iPHezCGNkDVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.402 [XNIO-1 task-2] yXAPljO7R7iPHezCGNkDVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.402 [XNIO-1 task-2] yXAPljO7R7iPHezCGNkDVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b021d03, base path is set to: null +16:29:44.403 [XNIO-1 task-2] yXAPljO7R7iPHezCGNkDVA DEBUG com.networknt.schema.TypeValidator debug - validate( "8b021d03", "8b021d03", serviceId) +16:29:44.427 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.427 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.428 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.428 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.428 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.428 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "c473d6f6-2f3d-407d-99e1-0be1d39a1594", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.428 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7ba88ab", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.428 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.428 [XNIO-1 task-2] wGsW4bpZQUu-efiscXhKIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.444 [XNIO-1 task-2] 7KC4WVhSR7-NodX7Dqosag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.444 [XNIO-1 task-2] 7KC4WVhSR7-NodX7Dqosag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.444 [XNIO-1 task-2] 7KC4WVhSR7-NodX7Dqosag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.463 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.463 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.463 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.464 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.464 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.464 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "c473d6f6-2f3d-407d-99e1-0be1d39a1594", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.464 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "f7ba88ab", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.464 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.464 [XNIO-1 task-2] Lxon182EQOacQEE9tjq7Cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.478 [XNIO-1 task-2] koFW6uxAR6SqidnypFaAPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.478 [XNIO-1 task-2] koFW6uxAR6SqidnypFaAPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.479 [XNIO-1 task-2] koFW6uxAR6SqidnypFaAPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.492 [XNIO-1 task-2] yXZ_6FSlShCMW_7KfzmO4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.492 [XNIO-1 task-2] yXZ_6FSlShCMW_7KfzmO4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.492 [XNIO-1 task-2] yXZ_6FSlShCMW_7KfzmO4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.493 [XNIO-1 task-2] yXZ_6FSlShCMW_7KfzmO4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.506 [XNIO-1 task-2] DNMorhU2SVmIWQXX-dbF3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.506 [XNIO-1 task-2] DNMorhU2SVmIWQXX-dbF3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.507 [XNIO-1 task-2] DNMorhU2SVmIWQXX-dbF3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.522 [XNIO-1 task-2] azDMAJOaRduccQy5n9-2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.522 [XNIO-1 task-2] azDMAJOaRduccQy5n9-2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.522 [XNIO-1 task-2] azDMAJOaRduccQy5n9-2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.523 [XNIO-1 task-2] azDMAJOaRduccQy5n9-2Sw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.559 [XNIO-1 task-2] Aq-q_DIfQTKkczctry5sKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.559 [XNIO-1 task-2] Aq-q_DIfQTKkczctry5sKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.559 [XNIO-1 task-2] Aq-q_DIfQTKkczctry5sKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.559 [XNIO-1 task-2] Aq-q_DIfQTKkczctry5sKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.586 [XNIO-1 task-2] Af-KtO3aRt-VsUcVQgijbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f0a6e1c6 +16:29:44.586 [XNIO-1 task-2] Af-KtO3aRt-VsUcVQgijbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.586 [XNIO-1 task-2] Af-KtO3aRt-VsUcVQgijbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.587 [XNIO-1 task-2] Af-KtO3aRt-VsUcVQgijbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f0a6e1c6 +16:29:44.615 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.615 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.616 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.616 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.616 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.616 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.616 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:44.616 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9ca6ec-2713-40a1-ab98-60ac3d38", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:44.617 [XNIO-1 task-2] 3pKEWeO9ThmWsb7-I_Otog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.637 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.638 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.638 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.639 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.639 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.639 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.639 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:44.639 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "0f51a3b9-35ca-44a9-81f8-fc5ef4f9", {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:44.639 [XNIO-1 task-2] SuK0UFRpSiGKeihQR0o0Hg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"446c03c3","serviceName":"0f51a3b9-35ca-44a9-81f8-fc5ef4f9","serviceDesc":"8367601f-3c33-4dbe-ac49-31269049f78d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.651 [XNIO-1 task-2] bBDzKfmUTkuW2EKVbfxYvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ac27334, base path is set to: null +16:29:44.651 [XNIO-1 task-2] bBDzKfmUTkuW2EKVbfxYvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.651 [XNIO-1 task-2] bBDzKfmUTkuW2EKVbfxYvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.651 [XNIO-1 task-2] bBDzKfmUTkuW2EKVbfxYvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5ac27334, base path is set to: null +16:29:44.651 [XNIO-1 task-2] bBDzKfmUTkuW2EKVbfxYvw DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac27334", "5ac27334", serviceId) +16:29:44.656 [XNIO-1 task-2] SQBfH1RnR12uJEJ-8uWCPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.656 [XNIO-1 task-2] SQBfH1RnR12uJEJ-8uWCPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.656 [XNIO-1 task-2] SQBfH1RnR12uJEJ-8uWCPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.671 [XNIO-1 task-2] ma-XJqVhSv-J91slbWnkjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.671 [XNIO-1 task-2] ma-XJqVhSv-J91slbWnkjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.672 [XNIO-1 task-2] ma-XJqVhSv-J91slbWnkjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.690 [XNIO-1 task-2] 4Uv9OfiyQVm3f_81wk-4Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c4d46c4e +16:29:44.690 [XNIO-1 task-2] 4Uv9OfiyQVm3f_81wk-4Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.690 [XNIO-1 task-2] 4Uv9OfiyQVm3f_81wk-4Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.690 [XNIO-1 task-2] 4Uv9OfiyQVm3f_81wk-4Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c4d46c4e +16:29:44.703 [XNIO-1 task-2] 9t7TRMljQISaensGtU5oWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ebb4122, base path is set to: null +16:29:44.704 [XNIO-1 task-2] 9t7TRMljQISaensGtU5oWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.704 [XNIO-1 task-2] 9t7TRMljQISaensGtU5oWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.704 [XNIO-1 task-2] 9t7TRMljQISaensGtU5oWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ebb4122, base path is set to: null +16:29:44.704 [XNIO-1 task-2] 9t7TRMljQISaensGtU5oWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9ebb4122", "9ebb4122", serviceId) +16:29:44.723 [XNIO-1 task-2] 4UWF_P9XQVWewWYBn_xNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/446c03c3 +16:29:44.723 [XNIO-1 task-2] 4UWF_P9XQVWewWYBn_xNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.723 [XNIO-1 task-2] 4UWF_P9XQVWewWYBn_xNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.723 [XNIO-1 task-2] 4UWF_P9XQVWewWYBn_xNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/446c03c3 +16:29:44.735 [XNIO-1 task-2] QruRYO2LQ6-z8GX0nIQrDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.735 [XNIO-1 task-2] QruRYO2LQ6-z8GX0nIQrDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.735 [XNIO-1 task-2] QruRYO2LQ6-z8GX0nIQrDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.736 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e6b8562f-3bfc-4cdc-83d1-f0233620e39e +16:29:44.761 [XNIO-1 task-2] Lwym2JyTQ0u-gUcqDBs2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.761 [XNIO-1 task-2] Lwym2JyTQ0u-gUcqDBs2xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.761 [XNIO-1 task-2] Lwym2JyTQ0u-gUcqDBs2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.762 [XNIO-1 task-2] Lwym2JyTQ0u-gUcqDBs2xA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.770 [XNIO-1 task-2] bFEnFAS_SKeNn5I7jWt9kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c92117ab, base path is set to: null +16:29:44.771 [XNIO-1 task-2] bFEnFAS_SKeNn5I7jWt9kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.771 [XNIO-1 task-2] bFEnFAS_SKeNn5I7jWt9kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.771 [XNIO-1 task-2] bFEnFAS_SKeNn5I7jWt9kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c92117ab, base path is set to: null +16:29:44.772 [XNIO-1 task-2] bFEnFAS_SKeNn5I7jWt9kw DEBUG com.networknt.schema.TypeValidator debug - validate( "c92117ab", "c92117ab", serviceId) +16:29:44.773 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c92117ab +16:29:44.783 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.783 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.783 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.784 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.784 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.784 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1c315c59-1d55-4172-982b-7331b39986aa", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.784 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG com.networknt.schema.TypeValidator debug - validate( "708fcf8d", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.784 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.784 [XNIO-1 task-2] tjuvB_eUSHe3hanw0S7p3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.801 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.801 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.802 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.802 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.802 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.802 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ce1e5319 +16:29:44.802 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.802 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:44.802 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed91d104-22d3-4510-bc55-fc7eeae7", {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:44.802 [XNIO-1 task-2] -_S-kA5CSi2qtUH1R4a6DQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7ba88ab","serviceName":"ed91d104-22d3-4510-bc55-fc7eeae7","serviceDesc":"c473d6f6-2f3d-407d-99e1-0be1d39a1594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.825 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.825 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.825 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.826 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.826 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.826 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.826 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:44.826 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG com.networknt.schema.TypeValidator debug - validate( "c8062a5b-ffe5-4793-b1b3-0efac758", {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:44.826 [XNIO-1 task-2] dYDIAJ6hS4CP2nD38weMng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.845 [XNIO-1 task-2] 4emFmvxhRtOVS4agk_s5ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.845 [XNIO-1 task-2] 4emFmvxhRtOVS4agk_s5ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.845 [XNIO-1 task-2] 4emFmvxhRtOVS4agk_s5ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.846 [XNIO-1 task-2] 4emFmvxhRtOVS4agk_s5ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.852 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:44.874 [XNIO-1 task-2] CKzSs_FTTgutSlkR_qsG6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/678d5188, base path is set to: null +16:29:44.874 [XNIO-1 task-2] CKzSs_FTTgutSlkR_qsG6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.874 [XNIO-1 task-2] CKzSs_FTTgutSlkR_qsG6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.874 [XNIO-1 task-2] CKzSs_FTTgutSlkR_qsG6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/678d5188, base path is set to: null +16:29:44.880 [XNIO-1 task-2] CKzSs_FTTgutSlkR_qsG6g DEBUG com.networknt.schema.TypeValidator debug - validate( "678d5188", "678d5188", serviceId) +16:29:44.948 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.948 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.948 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.949 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.949 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:44.949 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG com.networknt.schema.TypeValidator debug - validate( "0d854752-37bd-4a6c-abb1-5e4dbfcc895b", {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:44.949 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG com.networknt.schema.TypeValidator debug - validate( "5add39ef", {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:44.949 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:44.950 [XNIO-1 task-2] Gkl5gxBoQj6m2qgOPmkKBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5add39ef","serviceName":"c8062a5b-ffe5-4793-b1b3-0efac758","serviceDesc":"0d854752-37bd-4a6c-abb1-5e4dbfcc895b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:44.953 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fb65860e-8215-4e80-b0e6-776fa0ae27f3 +16:29:44.973 [XNIO-1 task-2] r5FaULBgQJKNBA5p48BRmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/678d5188 +16:29:44.974 [XNIO-1 task-2] r5FaULBgQJKNBA5p48BRmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.974 [XNIO-1 task-2] r5FaULBgQJKNBA5p48BRmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.974 [XNIO-1 task-2] r5FaULBgQJKNBA5p48BRmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/678d5188 +16:29:44.987 [XNIO-1 task-2] xVaBCQKTTLyvOvO98NfNdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ec85bd99, base path is set to: null +16:29:44.987 [XNIO-1 task-2] xVaBCQKTTLyvOvO98NfNdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.987 [XNIO-1 task-2] xVaBCQKTTLyvOvO98NfNdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:44.987 [XNIO-1 task-2] xVaBCQKTTLyvOvO98NfNdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ec85bd99, base path is set to: null +16:29:44.988 [XNIO-1 task-2] xVaBCQKTTLyvOvO98NfNdw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec85bd99", "ec85bd99", serviceId) +16:29:44.992 [XNIO-1 task-2] PE8vBGLGRf2lo2Zi-3Nrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec85bd99 +16:29:44.992 [XNIO-1 task-2] PE8vBGLGRf2lo2Zi-3Nrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:44.992 [XNIO-1 task-2] PE8vBGLGRf2lo2Zi-3Nrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:44.992 [XNIO-1 task-2] PE8vBGLGRf2lo2Zi-3Nrvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec85bd99 +16:29:44.995 [XNIO-1 task-2] MMv9MXsHTYmBCMQwlAXAVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.996 [XNIO-1 task-2] MMv9MXsHTYmBCMQwlAXAVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:44.996 [XNIO-1 task-2] MMv9MXsHTYmBCMQwlAXAVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:44.996 [XNIO-1 task-2] MMv9MXsHTYmBCMQwlAXAVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.048 [XNIO-1 task-2] tJ-DtigqR4eFNIYiLE5nmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.048 [XNIO-1 task-2] tJ-DtigqR4eFNIYiLE5nmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.048 [XNIO-1 task-2] tJ-DtigqR4eFNIYiLE5nmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.058 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.066 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.067 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.067 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.068 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.068 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.068 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG com.networknt.schema.TypeValidator debug - validate( "8a519208-21ca-4699-91fe-7fd8270f2f6e", {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:45.068 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG com.networknt.schema.TypeValidator debug - validate( "ec85bd99", {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:45.068 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:45.068 [XNIO-1 task-2] 5E0O8-mGRlSASREXJYhSfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.082 [XNIO-1 task-2] e5vgemK5Sn2TgFbMno0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f43c78a +16:29:45.082 [XNIO-1 task-2] e5vgemK5Sn2TgFbMno0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.082 [XNIO-1 task-2] e5vgemK5Sn2TgFbMno0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.082 [XNIO-1 task-2] e5vgemK5Sn2TgFbMno0z9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f43c78a +16:29:45.097 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:faf6d92e-fc1a-4754-97ed-5cdc01cd8419 +16:29:45.097 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.098 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.099 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.099 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.099 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.099 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1c315c59-1d55-4172-982b-7331b39986aa", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:45.099 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG com.networknt.schema.TypeValidator debug - validate( "708fcf8d", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:45.100 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:45.100 [XNIO-1 task-2] xE5ACa7xQI2XSYd3GuEP-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"708fcf8d","serviceName":"5a9ca6ec-2713-40a1-ab98-60ac3d38","serviceDesc":"1c315c59-1d55-4172-982b-7331b39986aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.120 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.120 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.121 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.121 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.121 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.124 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.124 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:45.124 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG com.networknt.schema.TypeValidator debug - validate( "265daacf-b5eb-4aac-b662-c753fe19", {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:45.124 [XNIO-1 task-2] I7uZgFLXQaeG-jEUM-rWZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5ac27334","serviceName":"265daacf-b5eb-4aac-b662-c753fe19","serviceDesc":"5507fd5f-f742-4d61-b0a4-917d25977cb6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.170 [XNIO-1 task-2] c18yzIo8T-CXPVJNTBO6Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.171 [XNIO-1 task-2] c18yzIo8T-CXPVJNTBO6Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.171 [XNIO-1 task-2] c18yzIo8T-CXPVJNTBO6Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.185 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e924261e +16:29:45.191 [XNIO-1 task-2] WxvNQptOQi-vjAmh1jEXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac27334 +16:29:45.191 [XNIO-1 task-2] WxvNQptOQi-vjAmh1jEXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.191 [XNIO-1 task-2] WxvNQptOQi-vjAmh1jEXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.192 [XNIO-1 task-2] WxvNQptOQi-vjAmh1jEXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5ac27334 +16:29:45.218 [XNIO-1 task-2] 5CCSh4RmTzWOi2uNV6Wd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7ba88ab, base path is set to: null +16:29:45.218 [XNIO-1 task-2] 5CCSh4RmTzWOi2uNV6Wd0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.218 [XNIO-1 task-2] 5CCSh4RmTzWOi2uNV6Wd0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.218 [XNIO-1 task-2] 5CCSh4RmTzWOi2uNV6Wd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7ba88ab, base path is set to: null +16:29:45.219 [XNIO-1 task-2] 5CCSh4RmTzWOi2uNV6Wd0g DEBUG com.networknt.schema.TypeValidator debug - validate( "f7ba88ab", "f7ba88ab", serviceId) +16:29:45.276 [XNIO-1 task-2] idhVBRDKSUitx21PhQqQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9dd69d00 +16:29:45.276 [XNIO-1 task-2] idhVBRDKSUitx21PhQqQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.276 [XNIO-1 task-2] idhVBRDKSUitx21PhQqQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.276 [XNIO-1 task-2] idhVBRDKSUitx21PhQqQGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9dd69d00 +16:29:45.313 [XNIO-1 task-2] ZzuH4uIuT5aTY0Fdoo5pSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5add39ef, base path is set to: null +16:29:45.314 [XNIO-1 task-2] ZzuH4uIuT5aTY0Fdoo5pSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.314 [XNIO-1 task-2] ZzuH4uIuT5aTY0Fdoo5pSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.314 [XNIO-1 task-2] ZzuH4uIuT5aTY0Fdoo5pSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5add39ef, base path is set to: null +16:29:45.314 [XNIO-1 task-2] ZzuH4uIuT5aTY0Fdoo5pSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5add39ef", "5add39ef", serviceId) +16:29:45.318 [XNIO-1 task-2] 2HfIdjOlRxueFWYT6T75Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.318 [XNIO-1 task-2] 2HfIdjOlRxueFWYT6T75Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.319 [XNIO-1 task-2] 2HfIdjOlRxueFWYT6T75Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.319 [XNIO-1 task-2] 2HfIdjOlRxueFWYT6T75Ag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.352 [XNIO-1 task-2] TsBjHmCWRdqOiUuhkVgqcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.352 [XNIO-1 task-2] TsBjHmCWRdqOiUuhkVgqcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.352 [XNIO-1 task-2] TsBjHmCWRdqOiUuhkVgqcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.353 [XNIO-1 task-2] TsBjHmCWRdqOiUuhkVgqcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.368 [XNIO-1 task-2] NYcVgcpqQZCf5fDVVM9Lmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5add39ef +16:29:45.368 [XNIO-1 task-2] NYcVgcpqQZCf5fDVVM9Lmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.368 [XNIO-1 task-2] NYcVgcpqQZCf5fDVVM9Lmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.368 [XNIO-1 task-2] NYcVgcpqQZCf5fDVVM9Lmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5add39ef +16:29:45.380 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.381 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.381 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.382 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.382 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.382 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:45.382 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG com.networknt.schema.TypeValidator debug - validate( "625c01ad-9ccb-4ace-90b2-c522ae3d", {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:45.382 [XNIO-1 task-2] B1Y_H5zoTMuqYbSjGZ81bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec85bd99","serviceName":"625c01ad-9ccb-4ace-90b2-c522ae3d","serviceDesc":"8a519208-21ca-4699-91fe-7fd8270f2f6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.393 [XNIO-1 task-2] BqkIk6o1QieUK-5SBt6Mcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.393 [XNIO-1 task-2] BqkIk6o1QieUK-5SBt6Mcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.394 [XNIO-1 task-2] BqkIk6o1QieUK-5SBt6Mcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.395 [XNIO-1 task-2] BqkIk6o1QieUK-5SBt6Mcg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.397 [XNIO-1 task-2] BqkIk6o1QieUK-5SBt6Mcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.401 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:46cb4adb +16:29:45.416 [XNIO-1 task-2] zJGV1N87TgyfSsRyl-hwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec85bd99 +16:29:45.416 [XNIO-1 task-2] zJGV1N87TgyfSsRyl-hwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.416 [XNIO-1 task-2] zJGV1N87TgyfSsRyl-hwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.416 [XNIO-1 task-2] zJGV1N87TgyfSsRyl-hwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec85bd99 +16:29:45.423 [XNIO-1 task-2] aTu3vNPHQWeZvqTdC2-UtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.423 [XNIO-1 task-2] aTu3vNPHQWeZvqTdC2-UtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.423 [XNIO-1 task-2] aTu3vNPHQWeZvqTdC2-UtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.430 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b848dd43 +16:29:45.432 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b848dd43 +16:29:45.450 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b848dd43 +16:29:45.452 [XNIO-1 task-2] qqUZct9BT22m_q9vw3elow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.452 [XNIO-1 task-2] qqUZct9BT22m_q9vw3elow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.452 [XNIO-1 task-2] qqUZct9BT22m_q9vw3elow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.470 [XNIO-1 task-2] z5MAPptDSUWsP3YrHv3-2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec85bd99 +16:29:45.470 [XNIO-1 task-2] z5MAPptDSUWsP3YrHv3-2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.470 [XNIO-1 task-2] z5MAPptDSUWsP3YrHv3-2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.470 [XNIO-1 task-2] z5MAPptDSUWsP3YrHv3-2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec85bd99 +16:29:45.475 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b848dd43 +16:29:45.483 [XNIO-1 task-2] fZCTkM1tQdaM31lHvYKAqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/708fcf8d, base path is set to: null +16:29:45.483 [XNIO-1 task-2] fZCTkM1tQdaM31lHvYKAqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.483 [XNIO-1 task-2] fZCTkM1tQdaM31lHvYKAqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.483 [XNIO-1 task-2] fZCTkM1tQdaM31lHvYKAqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/708fcf8d, base path is set to: null +16:29:45.483 [XNIO-1 task-2] fZCTkM1tQdaM31lHvYKAqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "708fcf8d", "708fcf8d", serviceId) +16:29:45.488 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b848dd43 +16:29:45.494 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.494 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.495 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.495 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.495 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.495 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.495 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:45.496 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG com.networknt.schema.TypeValidator debug - validate( "16649710-0658-4fe2-990d-c74bd144", {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:45.496 [XNIO-1 task-2] phIL0cDpTtmjv03N7l6chA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a093136d","serviceName":"16649710-0658-4fe2-990d-c74bd144","serviceDesc":"5f70e08f-67a0-4436-8718-867e07773719","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.502 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:46cb4adb +16:29:45.514 [XNIO-1 task-2] 6xCfbuI-Ti6w5EunOIEhDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/da6c701d, base path is set to: null +16:29:45.514 [XNIO-1 task-2] 6xCfbuI-Ti6w5EunOIEhDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.514 [XNIO-1 task-2] 6xCfbuI-Ti6w5EunOIEhDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.514 [XNIO-1 task-2] 6xCfbuI-Ti6w5EunOIEhDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/da6c701d, base path is set to: null +16:29:45.515 [XNIO-1 task-2] 6xCfbuI-Ti6w5EunOIEhDg DEBUG com.networknt.schema.TypeValidator debug - validate( "da6c701d", "da6c701d", serviceId) +16:29:45.549 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:46cb4adb +16:29:45.553 [XNIO-1 task-2] AHMBc-07Q5CxqTYos9H5rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a093136d +16:29:45.553 [XNIO-1 task-2] AHMBc-07Q5CxqTYos9H5rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.553 [XNIO-1 task-2] AHMBc-07Q5CxqTYos9H5rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.553 [XNIO-1 task-2] AHMBc-07Q5CxqTYos9H5rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a093136d +16:29:45.573 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1e4b6b4 +16:29:45.574 [XNIO-1 task-2] k39mpESoRlOtPAoscUEbQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a8edce0 +16:29:45.574 [XNIO-1 task-2] k39mpESoRlOtPAoscUEbQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.574 [XNIO-1 task-2] k39mpESoRlOtPAoscUEbQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.574 [XNIO-1 task-2] k39mpESoRlOtPAoscUEbQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4a8edce0 +16:29:45.575 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c1e4b6b4 +16:29:45.588 [XNIO-1 task-2] UgYLCjsBSpWhQt5-jAAKqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.588 [XNIO-1 task-2] UgYLCjsBSpWhQt5-jAAKqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.588 [XNIO-1 task-2] UgYLCjsBSpWhQt5-jAAKqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.599 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c1e4b6b4 +16:29:45.606 [XNIO-1 task-2] ju-YoZ-iQr-wgKVnWM9GSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.606 [XNIO-1 task-2] ju-YoZ-iQr-wgKVnWM9GSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.607 [XNIO-1 task-2] ju-YoZ-iQr-wgKVnWM9GSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.625 [XNIO-1 task-2] WSSdLFJbQfaXD94bO6ocGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.625 [XNIO-1 task-2] WSSdLFJbQfaXD94bO6ocGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.625 [XNIO-1 task-2] WSSdLFJbQfaXD94bO6ocGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.637 [XNIO-1 task-2] E5SVqIdyQouB65G0JTN0uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/202d204d +16:29:45.637 [XNIO-1 task-2] E5SVqIdyQouB65G0JTN0uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.637 [XNIO-1 task-2] E5SVqIdyQouB65G0JTN0uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.638 [XNIO-1 task-2] E5SVqIdyQouB65G0JTN0uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/202d204d +16:29:45.642 [XNIO-1 task-2] T6NDMVKtRO6TRFEhrQnV0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36d61ad2, base path is set to: null +16:29:45.643 [XNIO-1 task-2] T6NDMVKtRO6TRFEhrQnV0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.643 [XNIO-1 task-2] T6NDMVKtRO6TRFEhrQnV0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.643 [XNIO-1 task-2] T6NDMVKtRO6TRFEhrQnV0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36d61ad2, base path is set to: null +16:29:45.643 [XNIO-1 task-2] T6NDMVKtRO6TRFEhrQnV0A DEBUG com.networknt.schema.TypeValidator debug - validate( "36d61ad2", "36d61ad2", serviceId) +16:29:45.650 [XNIO-1 task-2] 3QNuvLa7TVuxyTOeIy41gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/202d204d +16:29:45.650 [XNIO-1 task-2] 3QNuvLa7TVuxyTOeIy41gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.650 [XNIO-1 task-2] 3QNuvLa7TVuxyTOeIy41gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.650 [XNIO-1 task-2] 3QNuvLa7TVuxyTOeIy41gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/202d204d +16:29:45.658 [XNIO-1 task-2] DAfrQksbRgGBNn-jlWpKfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36d61ad2, base path is set to: null +16:29:45.659 [XNIO-1 task-2] DAfrQksbRgGBNn-jlWpKfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.659 [XNIO-1 task-2] DAfrQksbRgGBNn-jlWpKfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.659 [XNIO-1 task-2] DAfrQksbRgGBNn-jlWpKfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36d61ad2, base path is set to: null +16:29:45.659 [XNIO-1 task-2] DAfrQksbRgGBNn-jlWpKfA DEBUG com.networknt.schema.TypeValidator debug - validate( "36d61ad2", "36d61ad2", serviceId) +16:29:45.664 [XNIO-1 task-2] vdByjaNSSQum4UpEN3bVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/202d204d +16:29:45.664 [XNIO-1 task-2] vdByjaNSSQum4UpEN3bVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.664 [XNIO-1 task-2] vdByjaNSSQum4UpEN3bVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.664 [XNIO-1 task-2] vdByjaNSSQum4UpEN3bVqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/202d204d +16:29:45.679 [XNIO-1 task-2] qu0G8ea2Si-JAGeZBKTLzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.680 [XNIO-1 task-2] qu0G8ea2Si-JAGeZBKTLzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.680 [XNIO-1 task-2] qu0G8ea2Si-JAGeZBKTLzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.696 [XNIO-1 task-2] Z-yOWpcnRuaoy87fSlpU6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36d61ad2, base path is set to: null +16:29:45.696 [XNIO-1 task-2] Z-yOWpcnRuaoy87fSlpU6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.696 [XNIO-1 task-2] Z-yOWpcnRuaoy87fSlpU6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.697 [XNIO-1 task-2] Z-yOWpcnRuaoy87fSlpU6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36d61ad2, base path is set to: null +16:29:45.697 [XNIO-1 task-2] Z-yOWpcnRuaoy87fSlpU6g DEBUG com.networknt.schema.TypeValidator debug - validate( "36d61ad2", "36d61ad2", serviceId) +16:29:45.708 [XNIO-1 task-2] sOthswuGSk-8DN7R5JH9cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4b79744f +16:29:45.708 [XNIO-1 task-2] sOthswuGSk-8DN7R5JH9cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.708 [XNIO-1 task-2] sOthswuGSk-8DN7R5JH9cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.709 [XNIO-1 task-2] sOthswuGSk-8DN7R5JH9cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4b79744f +16:29:45.720 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b1b337fb +16:29:45.724 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b1b337fb +16:29:45.728 [XNIO-1 task-2] bWb3-CRrQc2s5SMB_rNMMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/99546fda +16:29:45.728 [XNIO-1 task-2] bWb3-CRrQc2s5SMB_rNMMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.728 [XNIO-1 task-2] bWb3-CRrQc2s5SMB_rNMMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.728 [XNIO-1 task-2] bWb3-CRrQc2s5SMB_rNMMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/99546fda +16:29:45.736 [XNIO-1 task-2] ZGSz7uTqQremrAE5a1wYQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99546fda, base path is set to: null +16:29:45.736 [XNIO-1 task-2] ZGSz7uTqQremrAE5a1wYQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.736 [XNIO-1 task-2] ZGSz7uTqQremrAE5a1wYQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.736 [XNIO-1 task-2] ZGSz7uTqQremrAE5a1wYQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99546fda, base path is set to: null +16:29:45.737 [XNIO-1 task-2] ZGSz7uTqQremrAE5a1wYQA DEBUG com.networknt.schema.TypeValidator debug - validate( "99546fda", "99546fda", serviceId) +16:29:45.737 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b1b337fb +16:29:45.756 [XNIO-1 task-2] Fjfq33LNTea4R-CR_FGwqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.756 [XNIO-1 task-2] Fjfq33LNTea4R-CR_FGwqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.756 [XNIO-1 task-2] Fjfq33LNTea4R-CR_FGwqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.757 [XNIO-1 task-2] Fjfq33LNTea4R-CR_FGwqQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.765 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b1b337fb +16:29:45.774 [XNIO-1 task-2] w46-YH2FSv-spGlrdpLp6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.774 [XNIO-1 task-2] w46-YH2FSv-spGlrdpLp6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.774 [XNIO-1 task-2] w46-YH2FSv-spGlrdpLp6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.775 [XNIO-1 task-2] w46-YH2FSv-spGlrdpLp6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.779 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e1342c77-81d6-4d92-8d29-770a3ffa5df1 +16:29:45.784 [XNIO-1 task-2] 5YClXCW4R2qkyGNrSbx9Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.785 [XNIO-1 task-2] 5YClXCW4R2qkyGNrSbx9Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.785 [XNIO-1 task-2] 5YClXCW4R2qkyGNrSbx9Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.799 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e1342c77-81d6-4d92-8d29-770a3ffa5df1 +16:29:45.804 [XNIO-1 task-2] q-r5873zRoe_F_JWW4iRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.804 [XNIO-1 task-2] q-r5873zRoe_F_JWW4iRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.804 [XNIO-1 task-2] q-r5873zRoe_F_JWW4iRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.805 [XNIO-1 task-2] q-r5873zRoe_F_JWW4iRvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.819 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.819 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.819 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.820 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.820 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.820 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b3f65f4c-d53e-4ff0-99d8-782ad22bd157", {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:45.820 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "feae2798", {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:45.820 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:45.820 [XNIO-1 task-2] v86XR_WxQuGV34nVOg0EvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"feae2798","serviceName":"00df76d0-f5b3-4b64-b174-8e56ae45","serviceDesc":"b3f65f4c-d53e-4ff0-99d8-782ad22bd157","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.829 [XNIO-1 task-2] na-Fjr14QKGwsQLwxsTWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feae2798 +16:29:45.829 [XNIO-1 task-2] na-Fjr14QKGwsQLwxsTWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.829 [XNIO-1 task-2] na-Fjr14QKGwsQLwxsTWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.829 [XNIO-1 task-2] na-Fjr14QKGwsQLwxsTWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feae2798 +16:29:45.834 [XNIO-1 task-2] UntTQ7tWRhSQA96NLbvvDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/feae2798, base path is set to: null +16:29:45.834 [XNIO-1 task-2] UntTQ7tWRhSQA96NLbvvDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.834 [XNIO-1 task-2] UntTQ7tWRhSQA96NLbvvDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:45.834 [XNIO-1 task-2] UntTQ7tWRhSQA96NLbvvDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/feae2798, base path is set to: null +16:29:45.834 [XNIO-1 task-2] UntTQ7tWRhSQA96NLbvvDg DEBUG com.networknt.schema.TypeValidator debug - validate( "feae2798", "feae2798", serviceId) +16:29:45.840 [XNIO-1 task-2] fG7HNfZ_RmiFcHqwj2SJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feae2798 +16:29:45.840 [XNIO-1 task-2] fG7HNfZ_RmiFcHqwj2SJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.840 [XNIO-1 task-2] fG7HNfZ_RmiFcHqwj2SJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.840 [XNIO-1 task-2] fG7HNfZ_RmiFcHqwj2SJ4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feae2798 +16:29:45.854 [XNIO-1 task-2] -Vzxo6LdSvS5DlN_CSoW8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.854 [XNIO-1 task-2] -Vzxo6LdSvS5DlN_CSoW8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.855 [XNIO-1 task-2] -Vzxo6LdSvS5DlN_CSoW8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.868 [XNIO-1 task-2] EXfj25UTTaGqC6PhGL2FGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.868 [XNIO-1 task-2] EXfj25UTTaGqC6PhGL2FGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.868 [XNIO-1 task-2] EXfj25UTTaGqC6PhGL2FGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.869 [XNIO-1 task-2] EXfj25UTTaGqC6PhGL2FGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.876 [XNIO-1 task-2] 7sH1-QALSGifsEdNmYHctQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.876 [XNIO-1 task-2] 7sH1-QALSGifsEdNmYHctQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.876 [XNIO-1 task-2] 7sH1-QALSGifsEdNmYHctQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.877 [XNIO-1 task-2] 7sH1-QALSGifsEdNmYHctQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.882 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fbf8e215-a48c-4704-a560-b7d9c17ccfdd +16:29:45.893 [XNIO-1 task-2] 92z5uaJFTkiLh_X1OSnj6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.893 [XNIO-1 task-2] 92z5uaJFTkiLh_X1OSnj6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.893 [XNIO-1 task-2] 92z5uaJFTkiLh_X1OSnj6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.893 [XNIO-1 task-2] 92z5uaJFTkiLh_X1OSnj6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.910 [XNIO-1 task-2] 8AA-hbU8RMyGx-VhLPgihg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.910 [XNIO-1 task-2] 8AA-hbU8RMyGx-VhLPgihg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.910 [XNIO-1 task-2] 8AA-hbU8RMyGx-VhLPgihg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.910 [XNIO-1 task-2] 8AA-hbU8RMyGx-VhLPgihg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.916 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:20abbce2-9633-4725-9ce5-9aec5f722768 +16:29:45.918 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:20abbce2-9633-4725-9ce5-9aec5f722768 +16:29:45.928 [XNIO-1 task-2] SypG0mwtQGmIX99x0GIaPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d9233bbe +16:29:45.928 [XNIO-1 task-2] SypG0mwtQGmIX99x0GIaPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:45.928 [XNIO-1 task-2] SypG0mwtQGmIX99x0GIaPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:45.929 [XNIO-1 task-2] SypG0mwtQGmIX99x0GIaPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d9233bbe +16:29:45.941 [XNIO-1 task-2] 0KJ7pEQIRJyL6o9nMlBfqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.941 [XNIO-1 task-2] 0KJ7pEQIRJyL6o9nMlBfqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.942 [XNIO-1 task-2] 0KJ7pEQIRJyL6o9nMlBfqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.942 [XNIO-1 task-2] 0KJ7pEQIRJyL6o9nMlBfqg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.963 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.963 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.964 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.964 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.964 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.964 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.966 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:45.966 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG com.networknt.schema.TypeValidator debug - validate( "8ca1912e-a2cb-42ac-8bef-ef044bdf", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:45.966 [XNIO-1 task-2] o7Pj1MwMSN-M4QeDwrDgOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.986 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.986 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:45.987 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:45.987 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.987 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:45.987 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:45.987 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:45.988 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ca1912e-a2cb-42ac-8bef-ef044bdf", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:45.988 [XNIO-1 task-2] 1MPkbt_0RnCt8HhtoY4GBQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.008 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.008 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.008 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.009 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.009 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.009 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:46.009 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:46.009 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG com.networknt.schema.TypeValidator debug - validate( "8ca1912e-a2cb-42ac-8bef-ef044bdf", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:46.009 [XNIO-1 task-2] pCOsGMDXQ-qVgwd_br_G-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.021 [XNIO-1 task-2] 97XvVy01QtukVIRaG-qoLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.021 [XNIO-1 task-2] 97XvVy01QtukVIRaG-qoLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.022 [XNIO-1 task-2] 97XvVy01QtukVIRaG-qoLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.022 [XNIO-1 task-2] 97XvVy01QtukVIRaG-qoLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.028 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a369f5de-5fd2-467b-b58e-ed4ecd7fc4fb +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:46.034 [XNIO-1 task-2] Uc1tB7nrStuQ0BJLDHvvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.034 [XNIO-1 task-2] Uc1tB7nrStuQ0BJLDHvvww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.034 [XNIO-1 task-2] Uc1tB7nrStuQ0BJLDHvvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.034 [XNIO-1 task-2] Uc1tB7nrStuQ0BJLDHvvww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.034 [XNIO-1 task-2] Uc1tB7nrStuQ0BJLDHvvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.035 [XNIO-1 task-2] Uc1tB7nrStuQ0BJLDHvvww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +16:29:46.046 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.046 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.046 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +16:29:46.046 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:46.047 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.047 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:46.047 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "34133f3d-7e6c-4a33-b25f-343bd9291c92", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:46.047 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d9233bbe", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:46.047 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:46.047 [XNIO-1 task-2] Iv4P1rtuS_-TCqLgG2WEJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.057 [XNIO-1 task-2] _xQ5bTOITLSZ1TNGmUfN7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.058 [XNIO-1 task-2] _xQ5bTOITLSZ1TNGmUfN7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.058 [XNIO-1 task-2] _xQ5bTOITLSZ1TNGmUfN7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.069 [XNIO-1 task-2] N_g4DtmjTxupRKO8v2JMTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.069 [XNIO-1 task-2] N_g4DtmjTxupRKO8v2JMTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.069 [XNIO-1 task-2] N_g4DtmjTxupRKO8v2JMTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.069 [XNIO-1 task-2] N_g4DtmjTxupRKO8v2JMTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.084 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.085 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.085 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.085 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.086 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:46.086 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG com.networknt.schema.TypeValidator debug - validate( "34133f3d-7e6c-4a33-b25f-343bd9291c92", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:46.086 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG com.networknt.schema.TypeValidator debug - validate( "d9233bbe", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:46.086 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:46.086 [XNIO-1 task-2] iFG7rrOdQtiBHKbnjteVvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9233bbe","serviceName":"8ca1912e-a2cb-42ac-8bef-ef044bdf","serviceDesc":"34133f3d-7e6c-4a33-b25f-343bd9291c92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.092 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1dfd316e-4ef5-43ab-87ea-12744273a931 +16:29:46.099 [XNIO-1 task-2] vsDlofk4SLy1oKwh5tQZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.099 [XNIO-1 task-2] vsDlofk4SLy1oKwh5tQZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.100 [XNIO-1 task-2] vsDlofk4SLy1oKwh5tQZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.109 [XNIO-1 task-2] z9AOMAJvSjGzT64Tmhr6Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.110 [XNIO-1 task-2] z9AOMAJvSjGzT64Tmhr6Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.110 [XNIO-1 task-2] z9AOMAJvSjGzT64Tmhr6Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.118 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1dfd316e-4ef5-43ab-87ea-12744273a931 +16:29:46.125 [XNIO-1 task-2] foulFyolTsy6ESiUz2hOEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.125 [XNIO-1 task-2] foulFyolTsy6ESiUz2hOEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.125 [XNIO-1 task-2] foulFyolTsy6ESiUz2hOEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.126 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4381c39c +16:29:46.134 [XNIO-1 task-2] zeaNy5CYRJeE_hd1NzKbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f6cbad7e, base path is set to: null +16:29:46.134 [XNIO-1 task-2] zeaNy5CYRJeE_hd1NzKbMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.134 [XNIO-1 task-2] zeaNy5CYRJeE_hd1NzKbMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:46.134 [XNIO-1 task-2] zeaNy5CYRJeE_hd1NzKbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f6cbad7e, base path is set to: null +16:29:46.134 [XNIO-1 task-2] zeaNy5CYRJeE_hd1NzKbMg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6cbad7e", "f6cbad7e", serviceId) +16:29:46.149 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.149 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.149 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.150 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.150 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:46.150 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1248e883-bafd-44dc-a1de-98879bf3c632", {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:46.150 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5176c09e", {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:46.150 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:46.150 [XNIO-1 task-2] ouLDTxMYTTy21w7gnXD_TQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.161 [XNIO-1 task-2] 6BmjqI4jQha510z9P7Y0wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.161 [XNIO-1 task-2] 6BmjqI4jQha510z9P7Y0wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.161 [XNIO-1 task-2] 6BmjqI4jQha510z9P7Y0wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.162 [XNIO-1 task-2] 6BmjqI4jQha510z9P7Y0wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.163 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0f5c64e5-3aec-4177-9e28-e735e6112710 +16:29:46.185 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0f5c64e5-3aec-4177-9e28-e735e6112710 +16:29:46.192 [XNIO-1 task-2] FXMSzmATSm2TGxtOZ32AJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.192 [XNIO-1 task-2] FXMSzmATSm2TGxtOZ32AJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.192 [XNIO-1 task-2] FXMSzmATSm2TGxtOZ32AJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.193 [XNIO-1 task-2] FXMSzmATSm2TGxtOZ32AJg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.205 [XNIO-1 task-2] 2uKBz8zFSLKKg8VNE5Ov-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.206 [XNIO-1 task-2] 2uKBz8zFSLKKg8VNE5Ov-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.206 [XNIO-1 task-2] 2uKBz8zFSLKKg8VNE5Ov-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.219 [XNIO-1 task-2] KEuBUM3qTHqCHfuAYlDqig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.220 [XNIO-1 task-2] KEuBUM3qTHqCHfuAYlDqig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.221 [XNIO-1 task-2] KEuBUM3qTHqCHfuAYlDqig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.235 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.235 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.235 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.236 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.236 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.236 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:46.236 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:46.236 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ab824bee-5d33-43cc-8968-c46cf7c0", {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:46.236 [XNIO-1 task-2] MIiFpBKvTfSejqQlZy0LNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"966a1bdd","serviceName":"ab824bee-5d33-43cc-8968-c46cf7c0","serviceDesc":"5f67ab1b-6aa2-4da0-9fd3-e838e9982359","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.254 [XNIO-1 task-2] g_YtS7mHT9mYdT_IVSBsoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.254 [XNIO-1 task-2] g_YtS7mHT9mYdT_IVSBsoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.254 [XNIO-1 task-2] g_YtS7mHT9mYdT_IVSBsoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.267 [XNIO-1 task-2] HiOmo0xcRZqXB-SyWqhy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/966a1bdd, base path is set to: null +16:29:46.267 [XNIO-1 task-2] HiOmo0xcRZqXB-SyWqhy3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.267 [XNIO-1 task-2] HiOmo0xcRZqXB-SyWqhy3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:46.267 [XNIO-1 task-2] HiOmo0xcRZqXB-SyWqhy3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/966a1bdd, base path is set to: null +16:29:46.268 [XNIO-1 task-2] HiOmo0xcRZqXB-SyWqhy3g DEBUG com.networknt.schema.TypeValidator debug - validate( "966a1bdd", "966a1bdd", serviceId) +16:29:46.305 [XNIO-1 task-2] aMgnxtrIS7OcYzsKFP12Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/782b1069 +16:29:46.306 [XNIO-1 task-2] aMgnxtrIS7OcYzsKFP12Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.306 [XNIO-1 task-2] aMgnxtrIS7OcYzsKFP12Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:29:46.306 [XNIO-1 task-2] aMgnxtrIS7OcYzsKFP12Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/782b1069 +16:29:46.330 [XNIO-1 task-2] 4wZCCL3SR6yLOA-z_E-7uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4381c39c, base path is set to: null +16:29:46.330 [XNIO-1 task-2] 4wZCCL3SR6yLOA-z_E-7uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.330 [XNIO-1 task-2] 4wZCCL3SR6yLOA-z_E-7uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:46.330 [XNIO-1 task-2] 4wZCCL3SR6yLOA-z_E-7uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4381c39c, base path is set to: null +16:29:46.331 [XNIO-1 task-2] 4wZCCL3SR6yLOA-z_E-7uA DEBUG com.networknt.schema.TypeValidator debug - validate( "4381c39c", "4381c39c", serviceId) +16:29:46.335 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.335 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.335 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.335 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.336 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:46.336 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG com.networknt.schema.TypeValidator debug - validate( "844f7167-f1a9-4848-a94a-77a71eba38bc", {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:29:46.336 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG com.networknt.schema.TypeValidator debug - validate( "4381c39c", {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:29:46.336 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:29:46.336 [XNIO-1 task-2] 3PXnsPIPShOOHpeDHBYEtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4381c39c","serviceName":"bec6f22e-1d7c-4f2f-9f68-e57b28d2","serviceDesc":"844f7167-f1a9-4848-a94a-77a71eba38bc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.336 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4381c39c +16:29:46.341 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:923f0f7e +16:29:46.348 [XNIO-1 task-2] PZUpefUTRgi07JlZCY8ouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.349 [XNIO-1 task-2] PZUpefUTRgi07JlZCY8ouw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.349 [XNIO-1 task-2] PZUpefUTRgi07JlZCY8ouw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.349 [XNIO-1 task-2] PZUpefUTRgi07JlZCY8ouw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.366 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.367 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.368 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:29:46.369 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.370 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.370 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:29:46.370 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:29:46.370 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG com.networknt.schema.TypeValidator debug - validate( "92ad6a58-e473-4949-8112-129c741f", {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:29:46.370 [XNIO-1 task-2] Pee9W447QxO4ZlOM2dP6mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5176c09e","serviceName":"92ad6a58-e473-4949-8112-129c741f","serviceDesc":"1248e883-bafd-44dc-a1de-98879bf3c632","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:29:46.384 [XNIO-1 task-2] 5Y3KoCOtQh2K7UGX8_aXsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f76536fc, base path is set to: null +16:29:46.384 [XNIO-1 task-2] 5Y3KoCOtQh2K7UGX8_aXsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:29:46.384 [XNIO-1 task-2] 5Y3KoCOtQh2K7UGX8_aXsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:29:46.384 [XNIO-1 task-2] 5Y3KoCOtQh2K7UGX8_aXsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f76536fc, base path is set to: null +16:29:46.385 [XNIO-1 task-2] 5Y3KoCOtQh2K7UGX8_aXsg DEBUG com.networknt.schema.TypeValidator debug - validate( "f76536fc", "f76536fc", serviceId) +16:29:46.390 [XNIO-1 task-2] k1uEkPfJRimMdPSZ29cPsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.390 [XNIO-1 task-2] k1uEkPfJRimMdPSZ29cPsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.391 [XNIO-1 task-2] k1uEkPfJRimMdPSZ29cPsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:29:46.396 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bee7c12a-8d6d-403a-9081-28ba78756444 +16:29:46.404 [XNIO-1 task-2] WKIU_DUHT0eMuZnW_154xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null diff --git a/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-token-1.log b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..e5519c2 --- /dev/null +++ b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3578 @@ +16:29:40.148 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:66c2c2bd +16:29:40.153 [XNIO-1 task-4] f3ZRcnoES_G80IVuBDezBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.195 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:66c2c2bd +16:29:40.196 [XNIO-1 task-2] lqjdlXLvSrqVQqgvkNyY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.196 [XNIO-1 task-1] sxn9TW9eQq6pn3-ZVwo2iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.197 [XNIO-1 task-1] sxn9TW9eQq6pn3-ZVwo2iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.197 [XNIO-1 task-1] sxn9TW9eQq6pn3-ZVwo2iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.198 [XNIO-1 task-1] sxn9TW9eQq6pn3-ZVwo2iw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = keNUio1dQP-rs6SyE15iUw redirectUri = http://localhost:8080/authorization +16:29:40.202 [XNIO-1 task-4] kBWDF1y3Q2WaOBLYC9q6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.202 [XNIO-1 task-4] kBWDF1y3Q2WaOBLYC9q6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.206 [XNIO-1 task-2] lqjdlXLvSrqVQqgvkNyY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.206 [XNIO-1 task-4] kBWDF1y3Q2WaOBLYC9q6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.207 [XNIO-1 task-2] lqjdlXLvSrqVQqgvkNyY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.207 [XNIO-1 task-4] kBWDF1y3Q2WaOBLYC9q6qw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.209 [XNIO-1 task-2] lqjdlXLvSrqVQqgvkNyY7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 96bce40c-3e1e-41df-ac31-34e16e0a46b8 scope = null +16:29:40.213 [XNIO-1 task-4] kBWDF1y3Q2WaOBLYC9q6qw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.217 [XNIO-1 task-1] sxn9TW9eQq6pn3-ZVwo2iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.221 [XNIO-1 task-4] XgY8YVqfRTGjmhawhHeKOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.238 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aa22f24b-51c1-442c-b1ea-00337461b58b +16:29:40.239 [XNIO-1 task-4] XgY8YVqfRTGjmhawhHeKOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.239 [XNIO-1 task-2] lqjdlXLvSrqVQqgvkNyY7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.243 [XNIO-1 task-4] XgY8YVqfRTGjmhawhHeKOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.245 [XNIO-1 task-4] XgY8YVqfRTGjmhawhHeKOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:40.252 [XNIO-1 task-4] XgY8YVqfRTGjmhawhHeKOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.262 [XNIO-1 task-4] txFXf0cKQeyNs7vOaKDKog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.262 [XNIO-1 task-4] txFXf0cKQeyNs7vOaKDKog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.263 [XNIO-1 task-4] txFXf0cKQeyNs7vOaKDKog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.266 [XNIO-1 task-4] txFXf0cKQeyNs7vOaKDKog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:40.272 [XNIO-1 task-4] txFXf0cKQeyNs7vOaKDKog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.282 [XNIO-1 task-2] iHkA_fdyTym1WcKFs_gvGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.282 [XNIO-1 task-2] iHkA_fdyTym1WcKFs_gvGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.283 [XNIO-1 task-2] iHkA_fdyTym1WcKFs_gvGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.283 [XNIO-1 task-2] iHkA_fdyTym1WcKFs_gvGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:40.288 [XNIO-1 task-4] SHm8awRoT7WBeZMb9JXmlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.288 [XNIO-1 task-4] SHm8awRoT7WBeZMb9JXmlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.289 [XNIO-1 task-4] SHm8awRoT7WBeZMb9JXmlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.289 [XNIO-1 task-4] SHm8awRoT7WBeZMb9JXmlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:40.293 [XNIO-1 task-2] iHkA_fdyTym1WcKFs_gvGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.301 [XNIO-1 task-2] cCX6rgvZRZuyj78QTkTimg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.302 [XNIO-1 task-2] cCX6rgvZRZuyj78QTkTimg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.302 [XNIO-1 task-2] cCX6rgvZRZuyj78QTkTimg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.303 [XNIO-1 task-2] cCX6rgvZRZuyj78QTkTimg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:40.308 [XNIO-1 task-2] cCX6rgvZRZuyj78QTkTimg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.308 [XNIO-1 task-2] cCX6rgvZRZuyj78QTkTimg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.308 [XNIO-1 task-4] SHm8awRoT7WBeZMb9JXmlw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.312 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c418ff08-759b-4e8d-ad8c-ad4044565a2b +16:29:40.315 [XNIO-1 task-2] -5hBEp94SeOi6haA45r4rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.315 [XNIO-1 task-2] -5hBEp94SeOi6haA45r4rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.317 [XNIO-1 task-2] -5hBEp94SeOi6haA45r4rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.318 [XNIO-1 task-2] -5hBEp94SeOi6haA45r4rQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.332 [XNIO-1 task-2] -5hBEp94SeOi6haA45r4rQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.339 [XNIO-1 task-2] C_l4kra4RPWG9tmHfmuUwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.339 [XNIO-1 task-2] C_l4kra4RPWG9tmHfmuUwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.341 [XNIO-1 task-2] C_l4kra4RPWG9tmHfmuUwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.342 [XNIO-1 task-2] C_l4kra4RPWG9tmHfmuUwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.349 [XNIO-1 task-2] C_l4kra4RPWG9tmHfmuUwg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.356 [XNIO-1 task-2] IXtVzO7AQ0yvB8WpaAjBxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.357 [XNIO-1 task-2] IXtVzO7AQ0yvB8WpaAjBxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.358 [XNIO-1 task-2] IXtVzO7AQ0yvB8WpaAjBxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.358 [XNIO-1 task-2] IXtVzO7AQ0yvB8WpaAjBxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.368 [XNIO-1 task-2] IXtVzO7AQ0yvB8WpaAjBxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.374 [XNIO-1 task-2] 6eGljVfuQqKoXsUPesOgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.374 [XNIO-1 task-2] 6eGljVfuQqKoXsUPesOgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.376 [XNIO-1 task-2] 6eGljVfuQqKoXsUPesOgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.378 [XNIO-1 task-2] 6eGljVfuQqKoXsUPesOgvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.380 [XNIO-1 task-4] 4hsdT1MWQW-w1VmkUPnFlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.380 [XNIO-1 task-4] 4hsdT1MWQW-w1VmkUPnFlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.380 [XNIO-1 task-4] 4hsdT1MWQW-w1VmkUPnFlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.381 [XNIO-1 task-4] 4hsdT1MWQW-w1VmkUPnFlg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6CikmynsQO-EYtydTO9myQ redirectUri = http://localhost:8080/authorization +16:29:40.383 [XNIO-1 task-2] 6eGljVfuQqKoXsUPesOgvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.389 [XNIO-1 task-4] 4hsdT1MWQW-w1VmkUPnFlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.389 [XNIO-1 task-2] ONGY8WPrR22B11xmccVvBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.391 [XNIO-1 task-2] ONGY8WPrR22B11xmccVvBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.392 [XNIO-1 task-2] ONGY8WPrR22B11xmccVvBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.392 [XNIO-1 task-2] ONGY8WPrR22B11xmccVvBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:40.397 [XNIO-1 task-2] ONGY8WPrR22B11xmccVvBQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.403 [XNIO-1 task-4] jMK-Nb9fT1SA2Zn6A8VxZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.404 [XNIO-1 task-4] jMK-Nb9fT1SA2Zn6A8VxZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.404 [XNIO-1 task-4] jMK-Nb9fT1SA2Zn6A8VxZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.405 [XNIO-1 task-4] jMK-Nb9fT1SA2Zn6A8VxZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:40.410 [XNIO-1 task-4] jMK-Nb9fT1SA2Zn6A8VxZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.416 [XNIO-1 task-4] u_SPiBoFRpSNScmt-7Zsqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.416 [XNIO-1 task-4] u_SPiBoFRpSNScmt-7Zsqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.417 [XNIO-1 task-4] u_SPiBoFRpSNScmt-7Zsqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.422 [XNIO-1 task-4] u_SPiBoFRpSNScmt-7Zsqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", authorization) +16:29:40.428 [XNIO-1 task-4] u_SPiBoFRpSNScmt-7Zsqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.439 [XNIO-1 task-4] 1XRRmEOMR3yHRmG8lQEa9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.439 [XNIO-1 task-4] 1XRRmEOMR3yHRmG8lQEa9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.440 [XNIO-1 task-4] 1XRRmEOMR3yHRmG8lQEa9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.440 [XNIO-1 task-4] 1XRRmEOMR3yHRmG8lQEa9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", authorization) +16:29:40.446 [XNIO-1 task-4] 1XRRmEOMR3yHRmG8lQEa9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.452 [XNIO-1 task-4] -GFN7VF-RxGtL_bRM4xXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.453 [XNIO-1 task-4] -GFN7VF-RxGtL_bRM4xXLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.454 [XNIO-1 task-4] -GFN7VF-RxGtL_bRM4xXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.454 [XNIO-1 task-4] -GFN7VF-RxGtL_bRM4xXLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", authorization) +16:29:40.461 [XNIO-1 task-4] -GFN7VF-RxGtL_bRM4xXLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.468 [XNIO-1 task-4] BlCMPvTKTCSMWPKahIzQlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.468 [XNIO-1 task-4] BlCMPvTKTCSMWPKahIzQlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.468 [XNIO-1 task-4] BlCMPvTKTCSMWPKahIzQlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.469 [XNIO-1 task-4] BlCMPvTKTCSMWPKahIzQlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", authorization) +16:29:40.474 [XNIO-1 task-4] BlCMPvTKTCSMWPKahIzQlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.480 [XNIO-1 task-4] zCzzYz2LS3qLMap6EuTYyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.481 [XNIO-1 task-4] zCzzYz2LS3qLMap6EuTYyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.481 [XNIO-1 task-4] zCzzYz2LS3qLMap6EuTYyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.482 [XNIO-1 task-4] zCzzYz2LS3qLMap6EuTYyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2MzZTM3YzctMjY5ZS00N2ZmLTlhYmYtNjAxODVjNWU3ZWYwOkhoSWxTZmJWUThHbjc1M29OOFJPZ2c=", "Basic N2MzZTM3YzctMjY5ZS00N2ZmLTlhYmYtNjAxODVjNWU3ZWYwOkhoSWxTZmJWUThHbjc1M29OOFJPZ2c=", authorization) +16:29:40.490 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7d171003 +16:29:40.491 [XNIO-1 task-4] zCzzYz2LS3qLMap6EuTYyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.493 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7d171003 +16:29:40.499 [XNIO-1 task-4] 8CgF0VZvTnC20hAC29gDMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.499 [XNIO-1 task-4] 8CgF0VZvTnC20hAC29gDMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.500 [XNIO-1 task-4] 8CgF0VZvTnC20hAC29gDMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.501 [XNIO-1 task-4] 8CgF0VZvTnC20hAC29gDMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.510 [XNIO-1 task-2] sQHu0DYeQIGknE8QHaMG5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.510 [XNIO-1 task-2] sQHu0DYeQIGknE8QHaMG5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.510 [XNIO-1 task-4] 8CgF0VZvTnC20hAC29gDMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.514 [XNIO-1 task-2] sQHu0DYeQIGknE8QHaMG5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.515 [XNIO-1 task-2] sQHu0DYeQIGknE8QHaMG5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = anHOqeJwTVi0tiesNLkAxg redirectUri = http://localhost:8080/authorization +16:29:40.518 [XNIO-1 task-4] y9FMl6ekRLSsJKX6M1SwvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.518 [XNIO-1 task-4] y9FMl6ekRLSsJKX6M1SwvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.519 [XNIO-1 task-4] y9FMl6ekRLSsJKX6M1SwvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.519 [XNIO-1 task-4] y9FMl6ekRLSsJKX6M1SwvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.522 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7d171003 +16:29:40.528 [XNIO-1 task-2] sQHu0DYeQIGknE8QHaMG5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:40.528 [XNIO-1 task-2] sQHu0DYeQIGknE8QHaMG5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.528 [XNIO-1 task-2] sQHu0DYeQIGknE8QHaMG5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.531 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8d9dfa25-1250-485d-a5f1-2332f5113489 +16:29:40.547 [XNIO-1 task-2] zl57xHRQTKKvfualzBtokg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.547 [XNIO-1 task-2] zl57xHRQTKKvfualzBtokg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.548 [XNIO-1 task-2] zl57xHRQTKKvfualzBtokg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.550 [XNIO-1 task-4] mKVo8h0USCGrqg2ZfwqT8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.550 [XNIO-1 task-4] mKVo8h0USCGrqg2ZfwqT8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.550 [XNIO-1 task-2] zl57xHRQTKKvfualzBtokg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 8d9dfa25-1250-485d-a5f1-2332f5113489 scope = null +16:29:40.550 [XNIO-1 task-4] mKVo8h0USCGrqg2ZfwqT8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.575 [XNIO-1 task-4] mKVo8h0USCGrqg2ZfwqT8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", authorization) +16:29:40.578 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f4d7d1cf-7944-42ed-afcf-78b464a81668 +16:29:40.582 [XNIO-1 task-1] kyK8bpD8TDeEl7kfU1bVAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.582 [XNIO-1 task-1] kyK8bpD8TDeEl7kfU1bVAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.582 [XNIO-1 task-1] kyK8bpD8TDeEl7kfU1bVAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.583 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8d9dfa25-1250-485d-a5f1-2332f5113489 +16:29:40.584 [XNIO-1 task-4] mKVo8h0USCGrqg2ZfwqT8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.584 [XNIO-1 task-1] kyK8bpD8TDeEl7kfU1bVAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6zdYUUbHRXGrxLB3AwSW0Q redirectUri = http://localhost:8080/authorization +16:29:40.626 [XNIO-1 task-2] zl57xHRQTKKvfualzBtokg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.641 [XNIO-1 task-1] kyK8bpD8TDeEl7kfU1bVAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.641 [XNIO-1 task-4] B-KwIjQcSq-GWgfqlllJsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.641 [XNIO-1 task-4] B-KwIjQcSq-GWgfqlllJsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.642 [XNIO-1 task-4] B-KwIjQcSq-GWgfqlllJsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.643 [XNIO-1 task-4] B-KwIjQcSq-GWgfqlllJsA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", authorization) +16:29:40.648 [XNIO-1 task-4] B-KwIjQcSq-GWgfqlllJsA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.679 [XNIO-1 task-2] RwNCwoiCQtqnSM3TiXlBhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.679 [XNIO-1 task-2] RwNCwoiCQtqnSM3TiXlBhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.680 [XNIO-1 task-2] RwNCwoiCQtqnSM3TiXlBhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.680 [XNIO-1 task-2] RwNCwoiCQtqnSM3TiXlBhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:40.686 [XNIO-1 task-2] RwNCwoiCQtqnSM3TiXlBhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.692 [XNIO-1 task-2] LwnpfOgqSXOcp4tbCsf_QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.692 [XNIO-1 task-2] LwnpfOgqSXOcp4tbCsf_QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.692 [XNIO-1 task-2] LwnpfOgqSXOcp4tbCsf_QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.693 [XNIO-1 task-2] LwnpfOgqSXOcp4tbCsf_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:40.693 [XNIO-1 task-1] VCtjqHMpQk2Pej6ojz4bKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.694 [XNIO-1 task-1] VCtjqHMpQk2Pej6ojz4bKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.694 [XNIO-1 task-1] VCtjqHMpQk2Pej6ojz4bKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.695 [XNIO-1 task-1] VCtjqHMpQk2Pej6ojz4bKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:40.702 [XNIO-1 task-1] VCtjqHMpQk2Pej6ojz4bKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.708 [XNIO-1 task-2] LwnpfOgqSXOcp4tbCsf_QQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.710 [XNIO-1 task-1] asJhWQQnR62CSZNkyyNUuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.710 [XNIO-1 task-1] asJhWQQnR62CSZNkyyNUuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.710 [XNIO-1 task-1] asJhWQQnR62CSZNkyyNUuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.715 [XNIO-1 task-1] asJhWQQnR62CSZNkyyNUuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:40.722 [XNIO-1 task-1] asJhWQQnR62CSZNkyyNUuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.727 [XNIO-1 task-1] 3WOj_sVPR3uFJEjqjMkgAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.727 [XNIO-1 task-1] 3WOj_sVPR3uFJEjqjMkgAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.728 [XNIO-1 task-1] 3WOj_sVPR3uFJEjqjMkgAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.728 [XNIO-1 task-1] 3WOj_sVPR3uFJEjqjMkgAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:40.730 [XNIO-1 task-4] qf0LLXmcS26GmVA6pSEE6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.730 [XNIO-1 task-4] qf0LLXmcS26GmVA6pSEE6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.731 [XNIO-1 task-4] qf0LLXmcS26GmVA6pSEE6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.731 [XNIO-1 task-4] qf0LLXmcS26GmVA6pSEE6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:40.735 [XNIO-1 task-1] 3WOj_sVPR3uFJEjqjMkgAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:40.735 [XNIO-1 task-1] 3WOj_sVPR3uFJEjqjMkgAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.740 [XNIO-1 task-4] qf0LLXmcS26GmVA6pSEE6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.744 [XNIO-1 task-2] 8xnWHvrvTfG6axb6qQs8Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.744 [XNIO-1 task-2] 8xnWHvrvTfG6axb6qQs8Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.745 [XNIO-1 task-2] 8xnWHvrvTfG6axb6qQs8Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.746 [XNIO-1 task-2] 8xnWHvrvTfG6axb6qQs8Rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = cb8e0fc5-21b8-4c22-a3a7-05a22480f62c scope = null +16:29:40.757 [XNIO-1 task-1] Di3GOzg5Ra6F7D8QH6KJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.757 [XNIO-1 task-1] Di3GOzg5Ra6F7D8QH6KJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.757 [XNIO-1 task-1] Di3GOzg5Ra6F7D8QH6KJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.758 [XNIO-1 task-1] Di3GOzg5Ra6F7D8QH6KJ5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.761 [XNIO-1 task-2] 8xnWHvrvTfG6axb6qQs8Rg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.766 [XNIO-1 task-1] Di3GOzg5Ra6F7D8QH6KJ5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.771 [XNIO-1 task-1] 1XXv2qngTwSNk3CkgZV2jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.772 [XNIO-1 task-1] 1XXv2qngTwSNk3CkgZV2jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.772 [XNIO-1 task-1] 1XXv2qngTwSNk3CkgZV2jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.773 [XNIO-1 task-1] 1XXv2qngTwSNk3CkgZV2jw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = nge_SemLRPeb4Zg5KKdGTw redirectUri = http://localhost:8080/authorization +16:29:40.776 [XNIO-1 task-4] vqVZ1CeERI-1XN7AkfEfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.776 [XNIO-1 task-4] vqVZ1CeERI-1XN7AkfEfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.779 [XNIO-1 task-4] vqVZ1CeERI-1XN7AkfEfxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.780 [XNIO-1 task-4] vqVZ1CeERI-1XN7AkfEfxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.785 [XNIO-1 task-4] vqVZ1CeERI-1XN7AkfEfxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.788 [XNIO-1 task-1] 1XXv2qngTwSNk3CkgZV2jw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.792 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:07459b3d-4f09-4066-8f95-db6daa41e73f +16:29:40.793 [XNIO-1 task-4] K6DyAow2TWapoh4YW6K4Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.794 [XNIO-1 task-4] K6DyAow2TWapoh4YW6K4Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.795 [XNIO-1 task-4] K6DyAow2TWapoh4YW6K4Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.796 [XNIO-1 task-4] K6DyAow2TWapoh4YW6K4Og DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:40.802 [XNIO-1 task-4] K6DyAow2TWapoh4YW6K4Og DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.850 [XNIO-1 task-2] eFnHKdn4QKeZN51fLKOSzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.882 [XNIO-1 task-2] eFnHKdn4QKeZN51fLKOSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.882 [XNIO-1 task-4] SzRzWdzARA6Rk_EQ1tYjzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.882 [XNIO-1 task-4] SzRzWdzARA6Rk_EQ1tYjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.882 [XNIO-1 task-2] eFnHKdn4QKeZN51fLKOSzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.882 [XNIO-1 task-4] SzRzWdzARA6Rk_EQ1tYjzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.883 [XNIO-1 task-2] eFnHKdn4QKeZN51fLKOSzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:40.883 [XNIO-1 task-2] eFnHKdn4QKeZN51fLKOSzA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.917 [XNIO-1 task-2] eFnHKdn4QKeZN51fLKOSzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.923 [XNIO-1 task-2] tXIKAVVGQ_qmAgh40_gXfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.923 [XNIO-1 task-2] tXIKAVVGQ_qmAgh40_gXfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.924 [XNIO-1 task-2] tXIKAVVGQ_qmAgh40_gXfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.924 [XNIO-1 task-2] tXIKAVVGQ_qmAgh40_gXfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", authorization) +16:29:40.929 [XNIO-1 task-2] tXIKAVVGQ_qmAgh40_gXfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.931 [XNIO-1 task-4] SzRzWdzARA6Rk_EQ1tYjzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.960 [XNIO-1 task-2] a40KpAe_S-yf4YVxzQsQlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.960 [XNIO-1 task-2] a40KpAe_S-yf4YVxzQsQlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:40.961 [XNIO-1 task-2] a40KpAe_S-yf4YVxzQsQlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:40.962 [XNIO-1 task-2] a40KpAe_S-yf4YVxzQsQlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", "Basic ZTgxYjZlOTAtNmNmNC00NzZmLTlhZjItMTVhY2Q5ODgwN2YzOmlFb2lrZi1oVEJLeFZDMTM1NEtpanc=", authorization) +16:29:40.968 [XNIO-1 task-2] a40KpAe_S-yf4YVxzQsQlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:40.975 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:216c1dcd-fa8e-4eff-88b7-a3e98f2b0557 +16:29:40.979 [XNIO-1 task-2] sA7mZ9q1Q4C9ieJ-EtodzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.979 [XNIO-1 task-2] sA7mZ9q1Q4C9ieJ-EtodzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.980 [XNIO-1 task-2] sA7mZ9q1Q4C9ieJ-EtodzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.980 [XNIO-1 task-2] sA7mZ9q1Q4C9ieJ-EtodzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:40.983 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:216c1dcd-fa8e-4eff-88b7-a3e98f2b0557 +16:29:40.988 [XNIO-1 task-2] sA7mZ9q1Q4C9ieJ-EtodzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:40.995 [XNIO-1 task-2] lG_TgL4oREyUGDx4Gm_Sfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.995 [XNIO-1 task-2] lG_TgL4oREyUGDx4Gm_Sfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.996 [XNIO-1 task-2] lG_TgL4oREyUGDx4Gm_Sfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:40.997 [XNIO-1 task-2] lG_TgL4oREyUGDx4Gm_Sfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.002 [XNIO-1 task-2] lG_TgL4oREyUGDx4Gm_Sfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.008 [XNIO-1 task-2] daOl9OvISjufCFq3Cm33gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.008 [XNIO-1 task-2] daOl9OvISjufCFq3Cm33gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.008 [XNIO-1 task-2] daOl9OvISjufCFq3Cm33gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.009 [XNIO-1 task-2] daOl9OvISjufCFq3Cm33gg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.014 [XNIO-1 task-2] daOl9OvISjufCFq3Cm33gg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.020 [XNIO-1 task-2] -HJFoIpVTuiRQSzuImmYeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.020 [XNIO-1 task-2] -HJFoIpVTuiRQSzuImmYeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.021 [XNIO-1 task-2] -HJFoIpVTuiRQSzuImmYeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.021 [XNIO-1 task-2] -HJFoIpVTuiRQSzuImmYeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.027 [XNIO-1 task-2] -HJFoIpVTuiRQSzuImmYeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.032 [XNIO-1 task-2] KfyjaGRzSyeppOTjsjV0Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.032 [XNIO-1 task-2] KfyjaGRzSyeppOTjsjV0Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.033 [XNIO-1 task-2] KfyjaGRzSyeppOTjsjV0Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.033 [XNIO-1 task-2] KfyjaGRzSyeppOTjsjV0Ow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.039 [XNIO-1 task-2] KfyjaGRzSyeppOTjsjV0Ow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.063 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a91244d2 +16:29:41.065 [XNIO-1 task-2] G7v-giBxRJqo0K8k_ii20w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.067 [XNIO-1 task-2] G7v-giBxRJqo0K8k_ii20w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.068 [XNIO-1 task-2] G7v-giBxRJqo0K8k_ii20w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.070 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a91244d2 +16:29:41.076 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:66c2c2bd +16:29:41.077 [XNIO-1 task-2] G7v-giBxRJqo0K8k_ii20w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.083 [XNIO-1 task-4] gY5NnhbJScWgm5Qbru6JRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.084 [XNIO-1 task-4] gY5NnhbJScWgm5Qbru6JRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.085 [XNIO-1 task-4] gY5NnhbJScWgm5Qbru6JRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.086 [XNIO-1 task-4] gY5NnhbJScWgm5Qbru6JRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:41.088 [XNIO-1 task-1] ajMz1BKzSwK4Pn4r2rf2Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.088 [XNIO-1 task-1] ajMz1BKzSwK4Pn4r2rf2Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.090 [XNIO-1 task-1] ajMz1BKzSwK4Pn4r2rf2Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.091 [XNIO-1 task-1] ajMz1BKzSwK4Pn4r2rf2Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjRkN2QxY2YtNzk0NC00MmVkLWFmY2YtNzhiNDY0YTgxNjY4OkM5Y1NRVWc0UWNDM3gyMXVKODZkM0E=", "Basic ZjRkN2QxY2YtNzk0NC00MmVkLWFmY2YtNzhiNDY0YTgxNjY4OkM5Y1NRVWc0UWNDM3gyMXVKODZkM0E=", authorization) +16:29:41.099 [XNIO-1 task-2] lHaHyOvlRsqhHU47uUitaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.099 [XNIO-1 task-2] lHaHyOvlRsqhHU47uUitaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.100 [XNIO-1 task-2] lHaHyOvlRsqhHU47uUitaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.100 [XNIO-1 task-2] lHaHyOvlRsqhHU47uUitaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzRiZWYwZDctMjFmNS00YjZhLWI3NmItNDUwZmJhZDZhYzdjOmU0MTUzMGdLUi1lclFwZUFpYlJxTXc=", "Basic YzRiZWYwZDctMjFmNS00YjZhLWI3NmItNDUwZmJhZDZhYzdjOmU0MTUzMGdLUi1lclFwZUFpYlJxTXc=", authorization) +16:29:41.103 [XNIO-1 task-1] ajMz1BKzSwK4Pn4r2rf2Cw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:41.104 [XNIO-1 task-1] ajMz1BKzSwK4Pn4r2rf2Cw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.104 [XNIO-1 task-4] gY5NnhbJScWgm5Qbru6JRg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.110 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:204f682e-5bd6-4b31-b5a2-3ed5b30e3e25 +16:29:41.127 [XNIO-1 task-2] lHaHyOvlRsqhHU47uUitaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.132 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:66c2c2bd +16:29:41.135 [XNIO-1 task-2] IGPSiPmCQk2aEKKIGMx14A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.135 [XNIO-1 task-2] IGPSiPmCQk2aEKKIGMx14A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.136 [XNIO-1 task-2] IGPSiPmCQk2aEKKIGMx14A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.137 [XNIO-1 task-2] IGPSiPmCQk2aEKKIGMx14A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:41.140 [XNIO-1 task-1] iPHw4MkpQf2YwzkWtZNcmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.140 [XNIO-1 task-1] iPHw4MkpQf2YwzkWtZNcmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.141 [XNIO-1 task-1] iPHw4MkpQf2YwzkWtZNcmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.141 [XNIO-1 task-1] iPHw4MkpQf2YwzkWtZNcmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzRiZWYwZDctMjFmNS00YjZhLWI3NmItNDUwZmJhZDZhYzdjOmU0MTUzMGdLUi1lclFwZUFpYlJxTXc=", "Basic YzRiZWYwZDctMjFmNS00YjZhLWI3NmItNDUwZmJhZDZhYzdjOmU0MTUzMGdLUi1lclFwZUFpYlJxTXc=", authorization) +16:29:41.150 [XNIO-1 task-1] iPHw4MkpQf2YwzkWtZNcmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.154 [XNIO-1 task-2] IGPSiPmCQk2aEKKIGMx14A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.157 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c594fac0-59a2-4de8-8b89-d869f9cb7400 +16:29:41.159 [XNIO-1 task-1] WjOrau2jRQSxfiuYVhpTEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.159 [XNIO-1 task-1] WjOrau2jRQSxfiuYVhpTEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.159 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c594fac0-59a2-4de8-8b89-d869f9cb7400 +16:29:41.160 [XNIO-1 task-1] WjOrau2jRQSxfiuYVhpTEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.160 [XNIO-1 task-1] WjOrau2jRQSxfiuYVhpTEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.166 [XNIO-1 task-1] WjOrau2jRQSxfiuYVhpTEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.177 [XNIO-1 task-1] SQHlA2_KRoagYxVMGetUbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.177 [XNIO-1 task-1] SQHlA2_KRoagYxVMGetUbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.178 [XNIO-1 task-1] SQHlA2_KRoagYxVMGetUbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.179 [XNIO-1 task-1] SQHlA2_KRoagYxVMGetUbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = aYP-tQEVSg6l1C-XuQfgPw redirectUri = http://localhost:8080/authorization +16:29:41.182 [XNIO-1 task-2] IdFpaplzSJOM3ucsiVqY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.182 [XNIO-1 task-2] IdFpaplzSJOM3ucsiVqY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.183 [XNIO-1 task-2] IdFpaplzSJOM3ucsiVqY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.184 [XNIO-1 task-2] IdFpaplzSJOM3ucsiVqY3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.190 [XNIO-1 task-1] SQHlA2_KRoagYxVMGetUbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.192 [XNIO-1 task-2] IdFpaplzSJOM3ucsiVqY3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.192 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3b62a01c-3ff4-449a-a28c-4f240696775c +16:29:41.198 [XNIO-1 task-2] 6Y_tDK3qTOOuVoCdjuZHtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.199 [XNIO-1 task-2] 6Y_tDK3qTOOuVoCdjuZHtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.199 [XNIO-1 task-2] 6Y_tDK3qTOOuVoCdjuZHtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.200 [XNIO-1 task-2] 6Y_tDK3qTOOuVoCdjuZHtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:41.212 [XNIO-1 task-2] 6Y_tDK3qTOOuVoCdjuZHtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.220 [XNIO-1 task-2] fG-9nI_RQq2US69QfPS35w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.220 [XNIO-1 task-2] fG-9nI_RQq2US69QfPS35w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.220 [XNIO-1 task-2] fG-9nI_RQq2US69QfPS35w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.243 [XNIO-1 task-2] fG-9nI_RQq2US69QfPS35w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.244 [XNIO-1 task-2] fG-9nI_RQq2US69QfPS35w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.244 [XNIO-1 task-2] fG-9nI_RQq2US69QfPS35w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.250 [XNIO-1 task-2] fG-9nI_RQq2US69QfPS35w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.255 [XNIO-1 task-2] fb3R0qnOTCe5LcBUYgF_aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.255 [XNIO-1 task-2] fb3R0qnOTCe5LcBUYgF_aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.256 [XNIO-1 task-2] fb3R0qnOTCe5LcBUYgF_aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.257 [XNIO-1 task-2] fb3R0qnOTCe5LcBUYgF_aw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c594fac0-59a2-4de8-8b89-d869f9cb7400 scope = null +16:29:41.259 [XNIO-1 task-1] 5yzkjZBxSIGUCpJZvosrMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.259 [XNIO-1 task-1] 5yzkjZBxSIGUCpJZvosrMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.259 [XNIO-1 task-1] 5yzkjZBxSIGUCpJZvosrMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.260 [XNIO-1 task-1] 5yzkjZBxSIGUCpJZvosrMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.266 [XNIO-1 task-1] 5yzkjZBxSIGUCpJZvosrMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.268 [XNIO-1 task-2] fb3R0qnOTCe5LcBUYgF_aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.269 [XNIO-1 task-1] 8ykwsIqaROiD_cDWayoK9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.272 [XNIO-1 task-1] 8ykwsIqaROiD_cDWayoK9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.273 [XNIO-1 task-1] 8ykwsIqaROiD_cDWayoK9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.273 [XNIO-1 task-4] JWic1XwGTyGqoFxQJOjQuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.273 [XNIO-1 task-4] JWic1XwGTyGqoFxQJOjQuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.273 [XNIO-1 task-1] 8ykwsIqaROiD_cDWayoK9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", authorization) +16:29:41.274 [XNIO-1 task-4] JWic1XwGTyGqoFxQJOjQuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.277 [XNIO-1 task-4] JWic1XwGTyGqoFxQJOjQuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.282 [XNIO-1 task-4] JWic1XwGTyGqoFxQJOjQuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.283 [XNIO-1 task-2] Jg62pkTkTqOZaw936tSzTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.283 [XNIO-1 task-2] Jg62pkTkTqOZaw936tSzTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.284 [XNIO-1 task-2] Jg62pkTkTqOZaw936tSzTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.284 [XNIO-1 task-2] Jg62pkTkTqOZaw936tSzTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:41.287 [XNIO-1 task-4] Q1x24fZbQ_iXnoaQBqIIrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.287 [XNIO-1 task-4] Q1x24fZbQ_iXnoaQBqIIrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.288 [XNIO-1 task-4] Q1x24fZbQ_iXnoaQBqIIrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.288 [XNIO-1 task-4] Q1x24fZbQ_iXnoaQBqIIrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", authorization) +16:29:41.293 [XNIO-1 task-4] Q1x24fZbQ_iXnoaQBqIIrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.294 [XNIO-1 task-2] Jg62pkTkTqOZaw936tSzTQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.298 [XNIO-1 task-4] 7qNRz61CRe60UtzjyCGflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.299 [XNIO-1 task-4] 7qNRz61CRe60UtzjyCGflA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.299 [XNIO-1 task-4] 7qNRz61CRe60UtzjyCGflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.300 [XNIO-1 task-4] 7qNRz61CRe60UtzjyCGflA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", authorization) +16:29:41.306 [XNIO-1 task-4] 7qNRz61CRe60UtzjyCGflA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.308 [XNIO-1 task-2] SnabZ7lyRZiPV7T8bAmRYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.309 [XNIO-1 task-2] SnabZ7lyRZiPV7T8bAmRYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.309 [XNIO-1 task-1] 8ykwsIqaROiD_cDWayoK9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:41.309 [XNIO-1 task-1] 8ykwsIqaROiD_cDWayoK9A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.309 [XNIO-1 task-2] SnabZ7lyRZiPV7T8bAmRYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.310 [XNIO-1 task-2] SnabZ7lyRZiPV7T8bAmRYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 57be0a7c-e732-429c-8063-7f0562d712cc scope = null +16:29:41.313 [XNIO-1 task-4] SeRJ_af6S7OLmv98URh7zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.314 [XNIO-1 task-4] SeRJ_af6S7OLmv98URh7zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.314 [XNIO-1 task-4] SeRJ_af6S7OLmv98URh7zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.315 [XNIO-1 task-4] SeRJ_af6S7OLmv98URh7zA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.321 [XNIO-1 task-4] SeRJ_af6S7OLmv98URh7zA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.322 [XNIO-1 task-1] gxDs7NsaQfai8QXlnds0Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.323 [XNIO-1 task-1] gxDs7NsaQfai8QXlnds0Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.323 [XNIO-1 task-1] gxDs7NsaQfai8QXlnds0Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.323 [XNIO-1 task-1] gxDs7NsaQfai8QXlnds0Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.324 [XNIO-1 task-1] gxDs7NsaQfai8QXlnds0Lw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 204f682e-5bd6-4b31-b5a2-3ed5b30e3e25 scope = null +16:29:41.326 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4fa2da08-ac1e-4ef4-aff9-15696dc5f019 +16:29:41.332 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8247e476 +16:29:41.334 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8247e476 +16:29:41.335 [XNIO-1 task-4] XOkz1poKSYm2e8BO_3vVAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.335 [XNIO-1 task-4] XOkz1poKSYm2e8BO_3vVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.387 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ce36b750 +16:29:41.404 [XNIO-1 task-4] XOkz1poKSYm2e8BO_3vVAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.404 [XNIO-1 task-4] XOkz1poKSYm2e8BO_3vVAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.411 [XNIO-1 task-4] XOkz1poKSYm2e8BO_3vVAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.415 [XNIO-1 task-1] gxDs7NsaQfai8QXlnds0Lw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.415 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a91244d2 +16:29:41.431 [XNIO-1 task-4] oPaDyylrRa-uUVnkagtmpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.431 [XNIO-1 task-4] oPaDyylrRa-uUVnkagtmpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.433 [XNIO-1 task-4] oPaDyylrRa-uUVnkagtmpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.433 [XNIO-1 task-4] oPaDyylrRa-uUVnkagtmpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.438 [XNIO-1 task-4] oPaDyylrRa-uUVnkagtmpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.448 [XNIO-1 task-4] tR8FXZ-5RlO-tKyxZOHFXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.448 [XNIO-1 task-4] tR8FXZ-5RlO-tKyxZOHFXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.449 [XNIO-1 task-4] tR8FXZ-5RlO-tKyxZOHFXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.449 [XNIO-1 task-4] tR8FXZ-5RlO-tKyxZOHFXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.454 [XNIO-1 task-4] tR8FXZ-5RlO-tKyxZOHFXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.459 [XNIO-1 task-4] teCl_pK4TnSkafwoTnva-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.460 [XNIO-1 task-4] teCl_pK4TnSkafwoTnva-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.460 [XNIO-1 task-4] teCl_pK4TnSkafwoTnva-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.460 [XNIO-1 task-4] teCl_pK4TnSkafwoTnva-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.469 [XNIO-1 task-4] teCl_pK4TnSkafwoTnva-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.479 [XNIO-1 task-4] -YtmZr86T7msDQjrKyIE2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.479 [XNIO-1 task-4] -YtmZr86T7msDQjrKyIE2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.479 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ce36b750 +16:29:41.479 [XNIO-1 task-4] -YtmZr86T7msDQjrKyIE2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.480 [XNIO-1 task-4] -YtmZr86T7msDQjrKyIE2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", authorization) +16:29:41.480 [XNIO-1 task-1] p8Y9QaeuRq-9wITuDoop8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.480 [XNIO-1 task-1] p8Y9QaeuRq-9wITuDoop8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.481 [XNIO-1 task-1] p8Y9QaeuRq-9wITuDoop8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.481 [XNIO-1 task-1] p8Y9QaeuRq-9wITuDoop8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:41.487 [XNIO-1 task-1] p8Y9QaeuRq-9wITuDoop8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.491 [XNIO-1 task-4] -YtmZr86T7msDQjrKyIE2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:41.491 [XNIO-1 task-4] -YtmZr86T7msDQjrKyIE2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.499 [XNIO-1 task-1] OupN67-VTsumUtuFiXMGPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.499 [XNIO-1 task-1] OupN67-VTsumUtuFiXMGPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.530 [XNIO-1 task-1] OupN67-VTsumUtuFiXMGPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.531 [XNIO-1 task-1] OupN67-VTsumUtuFiXMGPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", "Basic OGRkNjkzZGEtMWIzNC00MmY2LTg5ZGEtOWNmODQyZGZkYzczOmpVLVFtd0t3U3JXWlJZV2JyUlVfZHc=", authorization) +16:29:41.532 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8247e476 +16:29:41.536 [XNIO-1 task-4] -QzTBh2DRLeqbynimSlhnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.536 [XNIO-1 task-4] -QzTBh2DRLeqbynimSlhnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.536 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ce36b750 +16:29:41.536 [XNIO-1 task-4] -QzTBh2DRLeqbynimSlhnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.537 [XNIO-1 task-4] -QzTBh2DRLeqbynimSlhnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3nELLEeBS0aZbZORcLfMXQ redirectUri = http://localhost:8080/authorization +16:29:41.537 [XNIO-1 task-1] OupN67-VTsumUtuFiXMGPw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.544 [XNIO-1 task-4] -QzTBh2DRLeqbynimSlhnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.548 [XNIO-1 task-1] 3Cu6OhYVTgyut5ewZFB_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.548 [XNIO-1 task-1] 3Cu6OhYVTgyut5ewZFB_AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.550 [XNIO-1 task-1] 3Cu6OhYVTgyut5ewZFB_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.552 [XNIO-1 task-1] 3Cu6OhYVTgyut5ewZFB_AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", authorization) +16:29:41.558 [XNIO-1 task-1] 3Cu6OhYVTgyut5ewZFB_AA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.564 [XNIO-1 task-1] 02fsn8pZSyWcPdFFn5jZkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.564 [XNIO-1 task-1] 02fsn8pZSyWcPdFFn5jZkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.564 [XNIO-1 task-1] 02fsn8pZSyWcPdFFn5jZkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.565 [XNIO-1 task-1] 02fsn8pZSyWcPdFFn5jZkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", authorization) +16:29:41.571 [XNIO-1 task-1] 02fsn8pZSyWcPdFFn5jZkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.578 [XNIO-1 task-1] jdERW_NKQD2-f_DBpUaqqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.579 [XNIO-1 task-1] jdERW_NKQD2-f_DBpUaqqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.581 [XNIO-1 task-1] jdERW_NKQD2-f_DBpUaqqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.581 [XNIO-1 task-1] jdERW_NKQD2-f_DBpUaqqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.587 [XNIO-1 task-4] d8LbcKxpQd-MFWAjuweIuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.588 [XNIO-1 task-4] d8LbcKxpQd-MFWAjuweIuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.588 [XNIO-1 task-1] jdERW_NKQD2-f_DBpUaqqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.588 [XNIO-1 task-4] d8LbcKxpQd-MFWAjuweIuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.589 [XNIO-1 task-4] d8LbcKxpQd-MFWAjuweIuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mud542cMSJiNOsTbOLCNJg redirectUri = http://localhost:8080/authorization +16:29:41.598 [XNIO-1 task-1] aPiuRGzWRMm-bPta14KysQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.598 [XNIO-1 task-1] aPiuRGzWRMm-bPta14KysQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.598 [XNIO-1 task-1] aPiuRGzWRMm-bPta14KysQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.599 [XNIO-1 task-1] aPiuRGzWRMm-bPta14KysQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.600 [XNIO-1 task-4] d8LbcKxpQd-MFWAjuweIuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:41.601 [XNIO-1 task-4] d8LbcKxpQd-MFWAjuweIuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.607 [XNIO-1 task-1] aPiuRGzWRMm-bPta14KysQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.613 [XNIO-1 task-1] cvHGWWwhQcGpmGycK2EQqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.613 [XNIO-1 task-1] cvHGWWwhQcGpmGycK2EQqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.613 [XNIO-1 task-1] cvHGWWwhQcGpmGycK2EQqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.614 [XNIO-1 task-1] cvHGWWwhQcGpmGycK2EQqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.619 [XNIO-1 task-1] cvHGWWwhQcGpmGycK2EQqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.625 [XNIO-1 task-1] 4FVMQlymT7yDXi66Mm7eIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.625 [XNIO-1 task-1] 4FVMQlymT7yDXi66Mm7eIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.625 [XNIO-1 task-1] 4FVMQlymT7yDXi66Mm7eIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.626 [XNIO-1 task-1] 4FVMQlymT7yDXi66Mm7eIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.635 [XNIO-1 task-4] KJy4xtOXR9K2XV4x1FWUJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.637 [XNIO-1 task-4] KJy4xtOXR9K2XV4x1FWUJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.637 [XNIO-1 task-4] KJy4xtOXR9K2XV4x1FWUJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.638 [XNIO-1 task-4] KJy4xtOXR9K2XV4x1FWUJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", authorization) +16:29:41.636 [XNIO-1 task-1] 4FVMQlymT7yDXi66Mm7eIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.652 [XNIO-1 task-4] KJy4xtOXR9K2XV4x1FWUJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.658 [XNIO-1 task-1] IddlyDIGSkSGnnfg8vcJhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.663 [XNIO-1 task-1] IddlyDIGSkSGnnfg8vcJhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.663 [XNIO-1 task-2] 6KELONRxTK2lhooNf-sqBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.663 [XNIO-1 task-2] 6KELONRxTK2lhooNf-sqBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.664 [XNIO-1 task-1] IddlyDIGSkSGnnfg8vcJhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.664 [XNIO-1 task-1] IddlyDIGSkSGnnfg8vcJhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.664 [XNIO-1 task-1] IddlyDIGSkSGnnfg8vcJhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", "Basic OTc5MmY2NDktNjJlZS00YmZiLTgzNzEtYjk5MTE2MzUxNDlhOllzbmE5R0lHU2YyZGUwUjZDWFdMcFE=", authorization) +16:29:41.664 [XNIO-1 task-1] IddlyDIGSkSGnnfg8vcJhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.670 [XNIO-1 task-1] IddlyDIGSkSGnnfg8vcJhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:41.675 [XNIO-1 task-1] OlzsJ8eKS4eX7GkXwK8Kxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.675 [XNIO-1 task-1] OlzsJ8eKS4eX7GkXwK8Kxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:41.675 [XNIO-1 task-1] OlzsJ8eKS4eX7GkXwK8Kxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.676 [XNIO-1 task-2] 6KELONRxTK2lhooNf-sqBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:41.676 [XNIO-1 task-1] OlzsJ8eKS4eX7GkXwK8Kxw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4dc08b33-4e2b-476b-8378-a0792fca0b09 scope = null +16:29:41.678 [XNIO-1 task-2] 6KELONRxTK2lhooNf-sqBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.678 [XNIO-1 task-4] 6RPyq92VQNyJfdOb_Al8pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.679 [XNIO-1 task-4] 6RPyq92VQNyJfdOb_Al8pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.679 [XNIO-1 task-4] 6RPyq92VQNyJfdOb_Al8pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.680 [XNIO-1 task-4] 6RPyq92VQNyJfdOb_Al8pA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.689 [XNIO-1 task-4] 6RPyq92VQNyJfdOb_Al8pA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.691 [XNIO-1 task-2] 7ovBb3CDQCG2dx-DAxXNXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.691 [XNIO-1 task-2] 7ovBb3CDQCG2dx-DAxXNXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.691 [XNIO-1 task-2] 7ovBb3CDQCG2dx-DAxXNXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.692 [XNIO-1 task-1] OlzsJ8eKS4eX7GkXwK8Kxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.696 [XNIO-1 task-2] 7ovBb3CDQCG2dx-DAxXNXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5930e563-2238-43fe-a6ad-c8aea6b02f5c scope = null +16:29:41.697 [XNIO-1 task-4] ajreKl-BQNOsgzErDBpM_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.697 [XNIO-1 task-4] ajreKl-BQNOsgzErDBpM_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.698 [XNIO-1 task-4] ajreKl-BQNOsgzErDBpM_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.698 [XNIO-1 task-4] ajreKl-BQNOsgzErDBpM_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.709 [XNIO-1 task-4] ajreKl-BQNOsgzErDBpM_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.712 [XNIO-1 task-1] e1p7kgWyRE6rY7IXNMpMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:41.712 [XNIO-1 task-1] e1p7kgWyRE6rY7IXNMpMAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.712 [XNIO-1 task-1] e1p7kgWyRE6rY7IXNMpMAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.713 [XNIO-1 task-1] e1p7kgWyRE6rY7IXNMpMAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.713 [XNIO-1 task-1] e1p7kgWyRE6rY7IXNMpMAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6ef30bde-c578-41c7-a213-a0a61112df38 scope = null +16:29:41.718 [XNIO-1 task-4] SPwjvcvWSeiFyWWsjEKLPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.718 [XNIO-1 task-4] SPwjvcvWSeiFyWWsjEKLPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.719 [XNIO-1 task-4] SPwjvcvWSeiFyWWsjEKLPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.719 [XNIO-1 task-4] SPwjvcvWSeiFyWWsjEKLPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.726 [XNIO-1 task-4] SPwjvcvWSeiFyWWsjEKLPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.729 [XNIO-1 task-1] e1p7kgWyRE6rY7IXNMpMAw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.734 [XNIO-1 task-4] QPB_yfN9TnW0D7Wq-c7fMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.734 [XNIO-1 task-4] QPB_yfN9TnW0D7Wq-c7fMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.734 [XNIO-1 task-4] QPB_yfN9TnW0D7Wq-c7fMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.735 [XNIO-1 task-4] QPB_yfN9TnW0D7Wq-c7fMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.741 [XNIO-1 task-4] QPB_yfN9TnW0D7Wq-c7fMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.747 [XNIO-1 task-1] vV71LrmETryUB-yeb8rEQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.748 [XNIO-1 task-1] vV71LrmETryUB-yeb8rEQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.748 [XNIO-1 task-1] vV71LrmETryUB-yeb8rEQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.749 [XNIO-1 task-1] vV71LrmETryUB-yeb8rEQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = df0f1ca4-b7c6-437a-870b-83481b23dde4 scope = null +16:29:41.749 [XNIO-1 task-4] b04G6E93QAeV4MfzwnfMpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.749 [XNIO-1 task-4] b04G6E93QAeV4MfzwnfMpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.750 [XNIO-1 task-4] b04G6E93QAeV4MfzwnfMpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.750 [XNIO-1 task-4] b04G6E93QAeV4MfzwnfMpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.762 [XNIO-1 task-2] 859fuanQTAuCoYP3ZEV9Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.763 [XNIO-1 task-2] 859fuanQTAuCoYP3ZEV9Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.763 [XNIO-1 task-2] 859fuanQTAuCoYP3ZEV9Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.763 [XNIO-1 task-4] b04G6E93QAeV4MfzwnfMpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.764 [XNIO-1 task-2] 859fuanQTAuCoYP3ZEV9Gw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = de292015-2f6f-4e9b-97c8-ad72bd728552 scope = null +16:29:41.772 [XNIO-1 task-4] oE-YLjKGT4mJEsk9uceHMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.773 [XNIO-1 task-4] oE-YLjKGT4mJEsk9uceHMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.773 [XNIO-1 task-4] oE-YLjKGT4mJEsk9uceHMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.775 [XNIO-1 task-4] oE-YLjKGT4mJEsk9uceHMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.776 [XNIO-1 task-2] 859fuanQTAuCoYP3ZEV9Gw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.780 [XNIO-1 task-4] oE-YLjKGT4mJEsk9uceHMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.782 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b3c613b1 +16:29:41.784 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3c613b1 +16:29:41.785 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d40d687a-15e4-415f-b6a4-a07607a823a3 +16:29:41.786 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d40d687a-15e4-415f-b6a4-a07607a823a3 +16:29:41.787 [XNIO-1 task-2] t-uj_l8aT82semACKKuHGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.787 [XNIO-1 task-2] t-uj_l8aT82semACKKuHGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.788 [XNIO-1 task-2] t-uj_l8aT82semACKKuHGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.788 [XNIO-1 task-2] t-uj_l8aT82semACKKuHGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.795 [XNIO-1 task-2] t-uj_l8aT82semACKKuHGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.803 [XNIO-1 task-2] UHWkjXaaTiW09vDu7X3vmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.803 [XNIO-1 task-2] UHWkjXaaTiW09vDu7X3vmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.804 [XNIO-1 task-2] UHWkjXaaTiW09vDu7X3vmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.804 [XNIO-1 task-2] UHWkjXaaTiW09vDu7X3vmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.806 [XNIO-1 task-1] uptqggIRSSyyi47K3c9iyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.806 [XNIO-1 task-1] uptqggIRSSyyi47K3c9iyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.807 [XNIO-1 task-1] uptqggIRSSyyi47K3c9iyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.807 [XNIO-1 task-1] uptqggIRSSyyi47K3c9iyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = affe05f1-03b1-489a-9dca-6f283a0fb86e scope = null +16:29:41.809 [XNIO-1 task-2] UHWkjXaaTiW09vDu7X3vmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.814 [XNIO-1 task-2] ChHvy7qHQVWI7vehLfb7Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.814 [XNIO-1 task-2] ChHvy7qHQVWI7vehLfb7Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.815 [XNIO-1 task-2] ChHvy7qHQVWI7vehLfb7Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.815 [XNIO-1 task-2] ChHvy7qHQVWI7vehLfb7Tg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.820 [XNIO-1 task-2] ChHvy7qHQVWI7vehLfb7Tg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.827 [XNIO-1 task-2] 58YqMsSFRAq6ruKTAdkCLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.827 [XNIO-1 task-2] 58YqMsSFRAq6ruKTAdkCLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.828 [XNIO-1 task-2] 58YqMsSFRAq6ruKTAdkCLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.828 [XNIO-1 task-2] 58YqMsSFRAq6ruKTAdkCLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.864 [XNIO-1 task-2] 58YqMsSFRAq6ruKTAdkCLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.864 [XNIO-1 task-1] uptqggIRSSyyi47K3c9iyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.868 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0ecad3db-3b4d-4652-abc4-cb33ad289c6b +16:29:41.871 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c44bbb62-4112-4185-85e5-3ff823b349cc +16:29:41.874 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c44bbb62-4112-4185-85e5-3ff823b349cc +16:29:41.879 [XNIO-1 task-1] zmfPZPEbQmyF5ZF1ihSL0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.879 [XNIO-1 task-1] zmfPZPEbQmyF5ZF1ihSL0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.880 [XNIO-1 task-1] zmfPZPEbQmyF5ZF1ihSL0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.881 [XNIO-1 task-1] zmfPZPEbQmyF5ZF1ihSL0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.888 [XNIO-1 task-1] zmfPZPEbQmyF5ZF1ihSL0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.897 [XNIO-1 task-1] OgmzWb29QIGUBpfOE2Kmzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.897 [XNIO-1 task-1] OgmzWb29QIGUBpfOE2Kmzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.898 [XNIO-1 task-1] OgmzWb29QIGUBpfOE2Kmzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.898 [XNIO-1 task-1] OgmzWb29QIGUBpfOE2Kmzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.904 [XNIO-1 task-1] OgmzWb29QIGUBpfOE2Kmzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.910 [XNIO-1 task-1] m1YtVImcTOub2aFDyvUI4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.910 [XNIO-1 task-1] m1YtVImcTOub2aFDyvUI4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.911 [XNIO-1 task-1] m1YtVImcTOub2aFDyvUI4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.912 [XNIO-1 task-1] m1YtVImcTOub2aFDyvUI4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.921 [XNIO-1 task-1] m1YtVImcTOub2aFDyvUI4w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.926 [XNIO-1 task-1] bFyIiY9ISlyBdR5ZeYRhdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.926 [XNIO-1 task-1] bFyIiY9ISlyBdR5ZeYRhdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.927 [XNIO-1 task-1] bFyIiY9ISlyBdR5ZeYRhdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.927 [XNIO-1 task-1] bFyIiY9ISlyBdR5ZeYRhdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.934 [XNIO-1 task-1] bFyIiY9ISlyBdR5ZeYRhdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.942 [XNIO-1 task-1] joz6sqxNQnmF7bDfjvExig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.942 [XNIO-1 task-1] joz6sqxNQnmF7bDfjvExig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.943 [XNIO-1 task-2] LcwO4TlhRguG2MNld6oScQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.943 [XNIO-1 task-2] LcwO4TlhRguG2MNld6oScQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.944 [XNIO-1 task-1] joz6sqxNQnmF7bDfjvExig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.944 [XNIO-1 task-2] LcwO4TlhRguG2MNld6oScQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.944 [XNIO-1 task-1] joz6sqxNQnmF7bDfjvExig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNjMmY3NjAtZjAwZC00N2U1LTljZmItODA4NmFkNmFlMjRjOmotbU9ONHZBU1BtaF9zeF9oMG5zMVE=", "Basic OTNjMmY3NjAtZjAwZC00N2U1LTljZmItODA4NmFkNmFlMjRjOmotbU9ONHZBU1BtaF9zeF9oMG5zMVE=", authorization) +16:29:41.944 [XNIO-1 task-1] joz6sqxNQnmF7bDfjvExig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.951 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e3a4da3 +16:29:41.954 [XNIO-1 task-2] LcwO4TlhRguG2MNld6oScQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:41.954 [XNIO-1 task-2] LcwO4TlhRguG2MNld6oScQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.958 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e3a4da3 +16:29:41.958 [XNIO-1 task-1] z1D4ym-uQ_q7NbJ0hxjoBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.959 [XNIO-1 task-1] z1D4ym-uQ_q7NbJ0hxjoBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.960 [XNIO-1 task-1] z1D4ym-uQ_q7NbJ0hxjoBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.961 [XNIO-1 task-1] z1D4ym-uQ_q7NbJ0hxjoBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.967 [XNIO-1 task-1] z1D4ym-uQ_q7NbJ0hxjoBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:41.983 [XNIO-1 task-1] cJ7s2Rv3SZ-Yj3mIx1ZKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.983 [XNIO-1 task-1] cJ7s2Rv3SZ-Yj3mIx1ZKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.984 [XNIO-1 task-1] cJ7s2Rv3SZ-Yj3mIx1ZKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:41.984 [XNIO-1 task-1] cJ7s2Rv3SZ-Yj3mIx1ZKTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:41.989 [XNIO-1 task-1] cJ7s2Rv3SZ-Yj3mIx1ZKTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.001 [XNIO-1 task-1] 8AA8qZGTR260lEuNxXEggA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.001 [XNIO-1 task-1] 8AA8qZGTR260lEuNxXEggA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.002 [XNIO-1 task-1] 8AA8qZGTR260lEuNxXEggA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.002 [XNIO-1 task-1] 8AA8qZGTR260lEuNxXEggA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.008 [XNIO-1 task-1] 8AA8qZGTR260lEuNxXEggA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.017 [XNIO-1 task-1] sS3tVTgPSJ-e3MIDsjXB3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.017 [XNIO-1 task-1] sS3tVTgPSJ-e3MIDsjXB3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.017 [XNIO-1 task-1] sS3tVTgPSJ-e3MIDsjXB3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.018 [XNIO-1 task-1] sS3tVTgPSJ-e3MIDsjXB3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.023 [XNIO-1 task-1] sS3tVTgPSJ-e3MIDsjXB3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.030 [XNIO-1 task-1] 2ic2UN3-QseXtf6XIOPBKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.031 [XNIO-1 task-1] 2ic2UN3-QseXtf6XIOPBKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.032 [XNIO-1 task-1] 2ic2UN3-QseXtf6XIOPBKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.033 [XNIO-1 task-1] 2ic2UN3-QseXtf6XIOPBKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.041 [XNIO-1 task-1] 2ic2UN3-QseXtf6XIOPBKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.048 [XNIO-1 task-1] rslIze7qSo-yAGuclCyuNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.049 [XNIO-1 task-1] rslIze7qSo-yAGuclCyuNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.049 [XNIO-1 task-1] rslIze7qSo-yAGuclCyuNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.050 [XNIO-1 task-1] rslIze7qSo-yAGuclCyuNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", authorization) +16:29:42.060 [XNIO-1 task-1] rslIze7qSo-yAGuclCyuNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.063 [XNIO-1 task-2] nCVpmzbcRoOTqsdiHy3skQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.063 [XNIO-1 task-2] nCVpmzbcRoOTqsdiHy3skQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.064 [XNIO-1 task-2] nCVpmzbcRoOTqsdiHy3skQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.065 [XNIO-1 task-2] nCVpmzbcRoOTqsdiHy3skQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:42.065 [XNIO-1 task-4] 2DxPV104RKylxBBWoQ170Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.065 [XNIO-1 task-4] 2DxPV104RKylxBBWoQ170Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.067 [XNIO-1 task-4] 2DxPV104RKylxBBWoQ170Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.067 [XNIO-1 task-4] 2DxPV104RKylxBBWoQ170Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", authorization) +16:29:42.071 [XNIO-1 task-1] lOqKV9SKR7-UnbJ0PbneiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.071 [XNIO-1 task-1] lOqKV9SKR7-UnbJ0PbneiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.072 [XNIO-1 task-1] lOqKV9SKR7-UnbJ0PbneiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.072 [XNIO-1 task-1] lOqKV9SKR7-UnbJ0PbneiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:42.073 [XNIO-1 task-2] nCVpmzbcRoOTqsdiHy3skQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.074 [XNIO-1 task-2] nCVpmzbcRoOTqsdiHy3skQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.078 [XNIO-1 task-4] 2DxPV104RKylxBBWoQ170Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.083 [XNIO-1 task-1] lOqKV9SKR7-UnbJ0PbneiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.095 [XNIO-1 task-4] F52tmrv2RiGmsWEAxZc3zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.095 [XNIO-1 task-4] F52tmrv2RiGmsWEAxZc3zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.095 [XNIO-1 task-4] F52tmrv2RiGmsWEAxZc3zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.096 [XNIO-1 task-4] F52tmrv2RiGmsWEAxZc3zA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:42.101 [XNIO-1 task-4] F52tmrv2RiGmsWEAxZc3zA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.107 [XNIO-1 task-4] xBDxZDpTRuG_7R77hdPx6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.107 [XNIO-1 task-4] xBDxZDpTRuG_7R77hdPx6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.108 [XNIO-1 task-4] xBDxZDpTRuG_7R77hdPx6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.108 [XNIO-1 task-4] xBDxZDpTRuG_7R77hdPx6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:42.114 [XNIO-1 task-1] UiPMBI6ZS0e_DBbB7TwNBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.114 [XNIO-1 task-1] UiPMBI6ZS0e_DBbB7TwNBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.114 [XNIO-1 task-1] UiPMBI6ZS0e_DBbB7TwNBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.114 [XNIO-1 task-4] xBDxZDpTRuG_7R77hdPx6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.115 [XNIO-1 task-1] UiPMBI6ZS0e_DBbB7TwNBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", authorization) +16:29:42.120 [XNIO-1 task-4] 22uU6kUdRmy-FMTE9Mp0Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.120 [XNIO-1 task-4] 22uU6kUdRmy-FMTE9Mp0Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.120 [XNIO-1 task-4] 22uU6kUdRmy-FMTE9Mp0Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.121 [XNIO-1 task-4] 22uU6kUdRmy-FMTE9Mp0Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:42.125 [XNIO-1 task-1] UiPMBI6ZS0e_DBbB7TwNBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.125 [XNIO-1 task-1] UiPMBI6ZS0e_DBbB7TwNBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.126 [XNIO-1 task-4] 22uU6kUdRmy-FMTE9Mp0Hw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.131 [XNIO-1 task-4] Tv6zfMYCRjO99TA9ZJZ6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.131 [XNIO-1 task-4] Tv6zfMYCRjO99TA9ZJZ6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.132 [XNIO-1 task-4] Tv6zfMYCRjO99TA9ZJZ6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.132 [XNIO-1 task-4] Tv6zfMYCRjO99TA9ZJZ6Dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.137 [XNIO-1 task-4] Tv6zfMYCRjO99TA9ZJZ6Dg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.159 [XNIO-1 task-4] sdpmgMcmRiWinGs9yeI6UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.159 [XNIO-1 task-4] sdpmgMcmRiWinGs9yeI6UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.160 [XNIO-1 task-4] sdpmgMcmRiWinGs9yeI6UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.162 [XNIO-1 task-4] sdpmgMcmRiWinGs9yeI6UQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.168 [XNIO-1 task-4] sdpmgMcmRiWinGs9yeI6UQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.178 [XNIO-1 task-4] fFxBVCF0QEOD40Jsugw3OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.178 [XNIO-1 task-4] fFxBVCF0QEOD40Jsugw3OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.178 [XNIO-1 task-4] fFxBVCF0QEOD40Jsugw3OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.179 [XNIO-1 task-4] fFxBVCF0QEOD40Jsugw3OQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.181 [XNIO-1 task-2] II5bfuwjQRG7LuOEAYDxug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.181 [XNIO-1 task-2] II5bfuwjQRG7LuOEAYDxug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.181 [XNIO-1 task-2] II5bfuwjQRG7LuOEAYDxug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.181 [XNIO-1 task-1] zt-xK4uYS8Wd9_EZCzG8Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.181 [XNIO-1 task-1] zt-xK4uYS8Wd9_EZCzG8Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.181 [XNIO-1 task-1] zt-xK4uYS8Wd9_EZCzG8Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.182 [XNIO-1 task-2] II5bfuwjQRG7LuOEAYDxug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzQwZDVhMTAtYmFlNy00ZWIyLWE3Y2QtNDlkMzQzZDg0YmZhOmZYZFl6VF9HUnZDblJsOFZDbk5CbUE=", "Basic NzQwZDVhMTAtYmFlNy00ZWIyLWE3Y2QtNDlkMzQzZDg0YmZhOmZYZFl6VF9HUnZDblJsOFZDbk5CbUE=", authorization) +16:29:42.182 [XNIO-1 task-2] II5bfuwjQRG7LuOEAYDxug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IdrOOp-pRUmUbQ7Gq106Qw redirectUri = http://localhost:8080/authorization +16:29:42.188 [XNIO-1 task-4] fFxBVCF0QEOD40Jsugw3OQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.191 [XNIO-1 task-2] II5bfuwjQRG7LuOEAYDxug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.192 [XNIO-1 task-1] zt-xK4uYS8Wd9_EZCzG8Zg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.193 [XNIO-1 task-1] zt-xK4uYS8Wd9_EZCzG8Zg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.196 [XNIO-1 task-4] gvc89hVhRUKqahP17jxqkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.196 [XNIO-1 task-4] gvc89hVhRUKqahP17jxqkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.197 [XNIO-1 task-4] gvc89hVhRUKqahP17jxqkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.199 [XNIO-1 task-4] gvc89hVhRUKqahP17jxqkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.209 [XNIO-1 task-1] Aq6gFd-fRQC3IetRXzc8eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.209 [XNIO-1 task-1] Aq6gFd-fRQC3IetRXzc8eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.210 [XNIO-1 task-1] Aq6gFd-fRQC3IetRXzc8eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.210 [XNIO-1 task-1] Aq6gFd-fRQC3IetRXzc8eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", authorization) +16:29:42.215 [XNIO-1 task-4] gvc89hVhRUKqahP17jxqkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.220 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a91244d2 +16:29:42.221 [XNIO-1 task-4] zDAJ9UkRRiOxWQlGADEsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.221 [XNIO-1 task-1] Aq6gFd-fRQC3IetRXzc8eQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.224 [XNIO-1 task-4] zDAJ9UkRRiOxWQlGADEsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.224 [XNIO-1 task-4] zDAJ9UkRRiOxWQlGADEsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.225 [XNIO-1 task-4] zDAJ9UkRRiOxWQlGADEsFw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.230 [XNIO-1 task-4] zDAJ9UkRRiOxWQlGADEsFw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.236 [XNIO-1 task-4] aLO-fd_VRDWhD1nUN1zy0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.237 [XNIO-1 task-4] aLO-fd_VRDWhD1nUN1zy0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.251 [XNIO-1 task-4] aLO-fd_VRDWhD1nUN1zy0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.252 [XNIO-1 task-4] aLO-fd_VRDWhD1nUN1zy0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.257 [XNIO-1 task-4] aLO-fd_VRDWhD1nUN1zy0g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.263 [XNIO-1 task-4] bhjZ2iCFROqZ9bHXiF5ziQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.263 [XNIO-1 task-4] bhjZ2iCFROqZ9bHXiF5ziQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.263 [XNIO-1 task-4] bhjZ2iCFROqZ9bHXiF5ziQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.264 [XNIO-1 task-4] bhjZ2iCFROqZ9bHXiF5ziQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.272 [XNIO-1 task-4] bhjZ2iCFROqZ9bHXiF5ziQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.281 [XNIO-1 task-4] AWVpmcl2QoCXoToBFbPjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.281 [XNIO-1 task-4] AWVpmcl2QoCXoToBFbPjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.281 [XNIO-1 task-4] AWVpmcl2QoCXoToBFbPjjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.281 [XNIO-1 task-2] BnWZzXwpRYqRz2qk5Ev-jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.282 [XNIO-1 task-2] BnWZzXwpRYqRz2qk5Ev-jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.282 [XNIO-1 task-4] AWVpmcl2QoCXoToBFbPjjw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CLfjDrYLRMSv8jIp_1IMCw redirectUri = http://localhost:8080/authorization +16:29:42.282 [XNIO-1 task-2] BnWZzXwpRYqRz2qk5Ev-jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.282 [XNIO-1 task-2] BnWZzXwpRYqRz2qk5Ev-jg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.282 [XNIO-1 task-1] 0d3-4uTWSAue0zjO1xb0kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.282 [XNIO-1 task-1] 0d3-4uTWSAue0zjO1xb0kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.283 [XNIO-1 task-1] 0d3-4uTWSAue0zjO1xb0kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.283 [XNIO-1 task-1] 0d3-4uTWSAue0zjO1xb0kg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = b8sDcWXDQd-Jo7lf39gVTw redirectUri = http://localhost:8080/authorization +16:29:42.290 [XNIO-1 task-2] BnWZzXwpRYqRz2qk5Ev-jg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.293 [XNIO-1 task-4] AWVpmcl2QoCXoToBFbPjjw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.293 [XNIO-1 task-4] AWVpmcl2QoCXoToBFbPjjw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.303 [XNIO-1 task-2] R6ol0MyHT1-NlDYjg9jhCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.303 [XNIO-1 task-2] R6ol0MyHT1-NlDYjg9jhCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.304 [XNIO-1 task-2] R6ol0MyHT1-NlDYjg9jhCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.305 [XNIO-1 task-2] R6ol0MyHT1-NlDYjg9jhCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.310 [XNIO-1 task-2] R6ol0MyHT1-NlDYjg9jhCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.316 [XNIO-1 task-4] o7L3vPULSYqXYqeVQp09eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.316 [XNIO-1 task-4] o7L3vPULSYqXYqeVQp09eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.317 [XNIO-1 task-4] o7L3vPULSYqXYqeVQp09eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.317 [XNIO-1 task-4] o7L3vPULSYqXYqeVQp09eA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.320 [XNIO-1 task-1] 0d3-4uTWSAue0zjO1xb0kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.324 [XNIO-1 task-4] o7L3vPULSYqXYqeVQp09eA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.337 [XNIO-1 task-4] HEtcBZi1RUmfFFjj-EDhvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.337 [XNIO-1 task-4] HEtcBZi1RUmfFFjj-EDhvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.338 [XNIO-1 task-4] HEtcBZi1RUmfFFjj-EDhvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.338 [XNIO-1 task-4] HEtcBZi1RUmfFFjj-EDhvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWYyZWM2YjAtN2RlNy00MDI4LWE2MzYtZmU4MzY0YjMyN2FjOmxDbWtRYzRrU29HbEk1OXhKYlpqLVE=", "Basic OWYyZWM2YjAtN2RlNy00MDI4LWE2MzYtZmU4MzY0YjMyN2FjOmxDbWtRYzRrU29HbEk1OXhKYlpqLVE=", authorization) +16:29:42.343 [XNIO-1 task-4] HEtcBZi1RUmfFFjj-EDhvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.350 [XNIO-1 task-4] z4XlibR4SFazdEhfwwAaOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.354 [XNIO-1 task-4] z4XlibR4SFazdEhfwwAaOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.354 [XNIO-1 task-4] z4XlibR4SFazdEhfwwAaOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.355 [XNIO-1 task-4] z4XlibR4SFazdEhfwwAaOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDdhMWU0NGQtNzFmNC00YWY4LWEwZjMtNWRhOTJhMGIyNWQ2OkdQemdSTjBsU1dpaDR6SVdyN1pESUE=", "Basic NDdhMWU0NGQtNzFmNC00YWY4LWEwZjMtNWRhOTJhMGIyNWQ2OkdQemdSTjBsU1dpaDR6SVdyN1pESUE=", authorization) +16:29:42.359 [XNIO-1 task-1] D8Id1BA3SO6Kpy9GxzOdAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.359 [XNIO-1 task-1] D8Id1BA3SO6Kpy9GxzOdAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.360 [XNIO-1 task-1] D8Id1BA3SO6Kpy9GxzOdAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.360 [XNIO-1 task-1] D8Id1BA3SO6Kpy9GxzOdAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:42.363 [XNIO-1 task-4] z4XlibR4SFazdEhfwwAaOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.368 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.368 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.368 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.369 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", authorization) +16:29:42.370 [XNIO-1 task-4] GMXZd_7gQvmKD73oj-gU4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.372 [XNIO-1 task-4] GMXZd_7gQvmKD73oj-gU4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.372 [XNIO-1 task-4] GMXZd_7gQvmKD73oj-gU4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.372 [XNIO-1 task-4] GMXZd_7gQvmKD73oj-gU4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:42.376 [XNIO-1 task-1] D8Id1BA3SO6Kpy9GxzOdAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.378 [XNIO-1 task-4] GMXZd_7gQvmKD73oj-gU4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.378 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.380 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ INFO com.networknt.config.Config getConfigStream - Unable to load config from externalized folder for status.yml in /config +16:29:42.381 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ INFO com.networknt.config.Config getConfigStream - Config loaded from default folder for status.yml +16:29:42.405 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0460bf8c +16:29:42.414 [XNIO-1 task-4] vHKnXVAzSnepPbVFNhOJdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.414 [XNIO-1 task-4] vHKnXVAzSnepPbVFNhOJdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.418 [XNIO-1 task-4] vHKnXVAzSnepPbVFNhOJdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.418 [XNIO-1 task-4] vHKnXVAzSnepPbVFNhOJdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:42.425 [XNIO-1 task-2] 9lZs5u4cSx6GOlZOowR-bQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:42.435 [XNIO-1 task-4] vHKnXVAzSnepPbVFNhOJdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.442 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:21a21337-63ee-4726-8ae5-9012a7a14644 +16:29:42.463 [XNIO-1 task-4] 2_BWLQpwR22f-Xgl33IWpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.464 [XNIO-1 task-4] 2_BWLQpwR22f-Xgl33IWpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.464 [XNIO-1 task-4] 2_BWLQpwR22f-Xgl33IWpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.464 [XNIO-1 task-4] 2_BWLQpwR22f-Xgl33IWpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", authorization) +16:29:42.471 [XNIO-1 task-4] 2_BWLQpwR22f-Xgl33IWpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.488 [XNIO-1 task-4] 7bhCIXR0Scy3LT6yjanTcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.488 [XNIO-1 task-4] 7bhCIXR0Scy3LT6yjanTcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.489 [XNIO-1 task-4] 7bhCIXR0Scy3LT6yjanTcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.489 [XNIO-1 task-4] 7bhCIXR0Scy3LT6yjanTcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", authorization) +16:29:42.499 [XNIO-1 task-2] LlOOyuG2S5eAldUyIg1gGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.499 [XNIO-1 task-2] LlOOyuG2S5eAldUyIg1gGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.500 [XNIO-1 task-2] LlOOyuG2S5eAldUyIg1gGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.500 [XNIO-1 task-2] LlOOyuG2S5eAldUyIg1gGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", authorization) +16:29:42.501 [XNIO-1 task-4] 7bhCIXR0Scy3LT6yjanTcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.511 [XNIO-1 task-4] r_sjEV9AQK6EwJG9Fi4QaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.512 [XNIO-1 task-4] r_sjEV9AQK6EwJG9Fi4QaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.512 [XNIO-1 task-4] r_sjEV9AQK6EwJG9Fi4QaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.512 [XNIO-1 task-4] r_sjEV9AQK6EwJG9Fi4QaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", authorization) +16:29:42.518 [XNIO-1 task-4] r_sjEV9AQK6EwJG9Fi4QaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.519 [XNIO-1 task-2] LlOOyuG2S5eAldUyIg1gGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.529 [XNIO-1 task-4] EsveXBKCQ82geVRhgJ_x8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.529 [XNIO-1 task-4] EsveXBKCQ82geVRhgJ_x8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.531 [XNIO-1 task-4] EsveXBKCQ82geVRhgJ_x8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.531 [XNIO-1 task-4] EsveXBKCQ82geVRhgJ_x8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:42.537 [XNIO-1 task-1] XBMHT_RZTIuudq3hNWG00w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.538 [XNIO-1 task-1] XBMHT_RZTIuudq3hNWG00w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.539 [XNIO-1 task-1] XBMHT_RZTIuudq3hNWG00w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.539 [XNIO-1 task-1] XBMHT_RZTIuudq3hNWG00w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:42.543 [XNIO-1 task-4] EsveXBKCQ82geVRhgJ_x8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.550 [XNIO-1 task-1] XBMHT_RZTIuudq3hNWG00w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.550 [XNIO-1 task-1] XBMHT_RZTIuudq3hNWG00w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.552 [XNIO-1 task-4] NSP5R1OqReqW5NBM_Wpr9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.552 [XNIO-1 task-4] NSP5R1OqReqW5NBM_Wpr9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.552 [XNIO-1 task-4] NSP5R1OqReqW5NBM_Wpr9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.553 [XNIO-1 task-4] NSP5R1OqReqW5NBM_Wpr9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.564 [XNIO-1 task-4] NSP5R1OqReqW5NBM_Wpr9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.566 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ce36b750 +16:29:42.574 [XNIO-1 task-4] PvTQn8-mQ7qfkRVYdTeIBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.574 [XNIO-1 task-4] PvTQn8-mQ7qfkRVYdTeIBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.574 [XNIO-1 task-4] PvTQn8-mQ7qfkRVYdTeIBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.577 [XNIO-1 task-4] PvTQn8-mQ7qfkRVYdTeIBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.580 [XNIO-1 task-1] zuEIbsw-Rx-j4wPIl7YBDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.580 [XNIO-1 task-1] zuEIbsw-Rx-j4wPIl7YBDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.581 [XNIO-1 task-1] zuEIbsw-Rx-j4wPIl7YBDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.582 [XNIO-1 task-1] zuEIbsw-Rx-j4wPIl7YBDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 4EptpRHSR-WD0nJwWZV4QA redirectUri = http://localhost:8080/authorization +16:29:42.583 [XNIO-1 task-4] PvTQn8-mQ7qfkRVYdTeIBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.592 [XNIO-1 task-1] zuEIbsw-Rx-j4wPIl7YBDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.596 [XNIO-1 task-4] ubmBT0pIT3G1wOlBjcr4bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.596 [XNIO-1 task-4] ubmBT0pIT3G1wOlBjcr4bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.597 [XNIO-1 task-4] ubmBT0pIT3G1wOlBjcr4bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.597 [XNIO-1 task-4] ubmBT0pIT3G1wOlBjcr4bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", authorization) +16:29:42.604 [XNIO-1 task-4] ubmBT0pIT3G1wOlBjcr4bw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.611 [XNIO-1 task-4] iyFmw3JCS2S5SlmSQyKJHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.611 [XNIO-1 task-4] iyFmw3JCS2S5SlmSQyKJHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.611 [XNIO-1 task-4] iyFmw3JCS2S5SlmSQyKJHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.612 [XNIO-1 task-4] iyFmw3JCS2S5SlmSQyKJHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", authorization) +16:29:42.617 [XNIO-1 task-4] iyFmw3JCS2S5SlmSQyKJHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.621 [XNIO-1 task-1] Jc22x0kKR9Ww0gQ4FtvqHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.621 [XNIO-1 task-1] Jc22x0kKR9Ww0gQ4FtvqHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.621 [XNIO-1 task-1] Jc22x0kKR9Ww0gQ4FtvqHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.622 [XNIO-1 task-1] Jc22x0kKR9Ww0gQ4FtvqHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:42.627 [XNIO-1 task-4] 0RqUubuiRC-FEALQK18Wbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.628 [XNIO-1 task-4] 0RqUubuiRC-FEALQK18Wbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.629 [XNIO-1 task-1] Jc22x0kKR9Ww0gQ4FtvqHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.630 [XNIO-1 task-1] Jc22x0kKR9Ww0gQ4FtvqHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.631 [XNIO-1 task-4] 0RqUubuiRC-FEALQK18Wbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.631 [XNIO-1 task-4] 0RqUubuiRC-FEALQK18Wbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.638 [XNIO-1 task-4] 0RqUubuiRC-FEALQK18Wbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.645 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b3c613b1 +16:29:42.647 [XNIO-1 task-4] aoJTNp_2QR6Jxyz2waP65Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.648 [XNIO-1 task-4] aoJTNp_2QR6Jxyz2waP65Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.649 [XNIO-1 task-4] aoJTNp_2QR6Jxyz2waP65Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.650 [XNIO-1 task-4] aoJTNp_2QR6Jxyz2waP65Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.655 [XNIO-1 task-4] aoJTNp_2QR6Jxyz2waP65Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.672 [XNIO-1 task-4] 1MqKWolpRaCw7J7kmYmRsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.672 [XNIO-1 task-4] 1MqKWolpRaCw7J7kmYmRsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.672 [XNIO-1 task-4] 1MqKWolpRaCw7J7kmYmRsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.673 [XNIO-1 task-4] 1MqKWolpRaCw7J7kmYmRsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.678 [XNIO-1 task-4] 1MqKWolpRaCw7J7kmYmRsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.683 [XNIO-1 task-4] vM7T0MGQRq2JNGci2NWsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.683 [XNIO-1 task-4] vM7T0MGQRq2JNGci2NWsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.684 [XNIO-1 task-4] vM7T0MGQRq2JNGci2NWsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.684 [XNIO-1 task-4] vM7T0MGQRq2JNGci2NWsjw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.689 [XNIO-1 task-4] vM7T0MGQRq2JNGci2NWsjw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.695 [XNIO-1 task-4] wq4AT2EwQJSLwHnEIZV-zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.695 [XNIO-1 task-4] wq4AT2EwQJSLwHnEIZV-zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.696 [XNIO-1 task-4] wq4AT2EwQJSLwHnEIZV-zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.696 [XNIO-1 task-4] wq4AT2EwQJSLwHnEIZV-zQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.702 [XNIO-1 task-4] wq4AT2EwQJSLwHnEIZV-zQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.708 [XNIO-1 task-4] IcVngMD_QE6qREtFX4tpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.708 [XNIO-1 task-4] IcVngMD_QE6qREtFX4tpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.709 [XNIO-1 task-4] IcVngMD_QE6qREtFX4tpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.709 [XNIO-1 task-4] IcVngMD_QE6qREtFX4tpXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.714 [XNIO-1 task-4] IcVngMD_QE6qREtFX4tpXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.720 [XNIO-1 task-4] EFcyDYzKSTObUJ4g6R149A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.721 [XNIO-1 task-4] EFcyDYzKSTObUJ4g6R149A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.721 [XNIO-1 task-4] EFcyDYzKSTObUJ4g6R149A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.721 [XNIO-1 task-4] EFcyDYzKSTObUJ4g6R149A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.727 [XNIO-1 task-4] EFcyDYzKSTObUJ4g6R149A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.735 [XNIO-1 task-4] EPZzF7X2SyKQo2G86X7E-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.735 [XNIO-1 task-4] EPZzF7X2SyKQo2G86X7E-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.736 [XNIO-1 task-4] EPZzF7X2SyKQo2G86X7E-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.736 [XNIO-1 task-4] EPZzF7X2SyKQo2G86X7E-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ae79qzkfSZuYlQ8PF-xubg redirectUri = http://localhost:8080/authorization +16:29:42.738 [XNIO-1 task-1] leODXh5oRwyZLsiOM727OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.738 [XNIO-1 task-1] leODXh5oRwyZLsiOM727OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.738 [XNIO-1 task-1] leODXh5oRwyZLsiOM727OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.739 [XNIO-1 task-1] leODXh5oRwyZLsiOM727OQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jiDQGVDkSrqi_iGUjaFZmA redirectUri = http://localhost:8080/authorization +16:29:42.739 [XNIO-1 task-2] mpqqP-OsSL6EnYc9ueTFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.739 [XNIO-1 task-2] mpqqP-OsSL6EnYc9ueTFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.739 [XNIO-1 task-2] mpqqP-OsSL6EnYc9ueTFsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.740 [XNIO-1 task-2] mpqqP-OsSL6EnYc9ueTFsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.748 [XNIO-1 task-4] EPZzF7X2SyKQo2G86X7E-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.748 [XNIO-1 task-2] mpqqP-OsSL6EnYc9ueTFsA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.749 [XNIO-1 task-1] leODXh5oRwyZLsiOM727OQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.749 [XNIO-1 task-1] leODXh5oRwyZLsiOM727OQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.758 [XNIO-1 task-2] nZ-guVIdScyxLKvDhqVuYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.758 [XNIO-1 task-2] nZ-guVIdScyxLKvDhqVuYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.759 [XNIO-1 task-2] nZ-guVIdScyxLKvDhqVuYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.760 [XNIO-1 task-2] nZ-guVIdScyxLKvDhqVuYA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.760 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0460bf8c +16:29:42.771 [XNIO-1 task-2] nZ-guVIdScyxLKvDhqVuYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.775 [XNIO-1 task-2] nZ-guVIdScyxLKvDhqVuYA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.775 [XNIO-1 task-1] cY74_PuHQF-Cvo_MP_HGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.775 [XNIO-1 task-1] cY74_PuHQF-Cvo_MP_HGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.776 [XNIO-1 task-1] cY74_PuHQF-Cvo_MP_HGcw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = acaff580-7f0a-4fb0-8ae7-0d946eb3f2dd scope = null +16:29:42.783 [XNIO-1 task-2] 3r1DRm-0SA-T5tH7ulYr_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.783 [XNIO-1 task-2] 3r1DRm-0SA-T5tH7ulYr_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.784 [XNIO-1 task-2] 3r1DRm-0SA-T5tH7ulYr_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.784 [XNIO-1 task-2] 3r1DRm-0SA-T5tH7ulYr_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.792 [XNIO-1 task-1] cY74_PuHQF-Cvo_MP_HGcw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.792 [XNIO-1 task-2] 3r1DRm-0SA-T5tH7ulYr_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.799 [XNIO-1 task-2] l4uZePiHR1qU3lh-DJXA6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.800 [XNIO-1 task-2] l4uZePiHR1qU3lh-DJXA6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.801 [XNIO-1 task-4] fN3qlSIiT-SJS_wVND4ebQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.801 [XNIO-1 task-4] fN3qlSIiT-SJS_wVND4ebQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.802 [XNIO-1 task-4] fN3qlSIiT-SJS_wVND4ebQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.803 [XNIO-1 task-2] l4uZePiHR1qU3lh-DJXA6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.803 [XNIO-1 task-4] fN3qlSIiT-SJS_wVND4ebQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", authorization) +16:29:42.803 [XNIO-1 task-2] l4uZePiHR1qU3lh-DJXA6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", authorization) +16:29:42.812 [XNIO-1 task-2] l4uZePiHR1qU3lh-DJXA6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.818 [XNIO-1 task-2] 9f4sLBF3Q_imYQ0m-eJSmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.819 [XNIO-1 task-2] 9f4sLBF3Q_imYQ0m-eJSmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.819 [XNIO-1 task-2] 9f4sLBF3Q_imYQ0m-eJSmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.819 [XNIO-1 task-2] 9f4sLBF3Q_imYQ0m-eJSmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", authorization) +16:29:42.821 [XNIO-1 task-4] fN3qlSIiT-SJS_wVND4ebQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.824 [XNIO-1 task-4] fN3qlSIiT-SJS_wVND4ebQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.825 [XNIO-1 task-2] 9f4sLBF3Q_imYQ0m-eJSmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.826 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cbdc4323-a55c-48d4-b087-93cb2b02a0f1 +16:29:42.833 [XNIO-1 task-2] vKQ7bVkXTBWFfdZAMLiemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.833 [XNIO-1 task-2] vKQ7bVkXTBWFfdZAMLiemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.834 [XNIO-1 task-2] vKQ7bVkXTBWFfdZAMLiemQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.834 [XNIO-1 task-2] vKQ7bVkXTBWFfdZAMLiemQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.844 [XNIO-1 task-2] vKQ7bVkXTBWFfdZAMLiemQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.851 [XNIO-1 task-2] aOjFFML5R1mGGwJrcGeZyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.851 [XNIO-1 task-2] aOjFFML5R1mGGwJrcGeZyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.852 [XNIO-1 task-2] aOjFFML5R1mGGwJrcGeZyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.852 [XNIO-1 task-2] aOjFFML5R1mGGwJrcGeZyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.881 [XNIO-1 task-2] aOjFFML5R1mGGwJrcGeZyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.886 [XNIO-1 task-2] yA9TgAdSS1WSuWFdygALzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.886 [XNIO-1 task-2] yA9TgAdSS1WSuWFdygALzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.887 [XNIO-1 task-2] yA9TgAdSS1WSuWFdygALzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.887 [XNIO-1 task-2] yA9TgAdSS1WSuWFdygALzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.893 [XNIO-1 task-2] yA9TgAdSS1WSuWFdygALzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.900 [XNIO-1 task-2] TitAU2JoTp6oYf3FyOH0pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.900 [XNIO-1 task-2] TitAU2JoTp6oYf3FyOH0pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.901 [XNIO-1 task-2] TitAU2JoTp6oYf3FyOH0pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.901 [XNIO-1 task-2] TitAU2JoTp6oYf3FyOH0pQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.906 [XNIO-1 task-2] TitAU2JoTp6oYf3FyOH0pQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.911 [XNIO-1 task-2] _XtfelUkTgm08d1drIMqUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.911 [XNIO-1 task-2] _XtfelUkTgm08d1drIMqUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.911 [XNIO-1 task-2] _XtfelUkTgm08d1drIMqUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.912 [XNIO-1 task-2] _XtfelUkTgm08d1drIMqUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.921 [XNIO-1 task-2] _XtfelUkTgm08d1drIMqUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.929 [XNIO-1 task-4] RuXSnEK8QkWqUtz6MG5Huw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.929 [XNIO-1 task-4] RuXSnEK8QkWqUtz6MG5Huw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.930 [XNIO-1 task-4] RuXSnEK8QkWqUtz6MG5Huw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.930 [XNIO-1 task-2] JUqhQ0nmQPevCvmbrt_jrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.930 [XNIO-1 task-2] JUqhQ0nmQPevCvmbrt_jrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.930 [XNIO-1 task-2] JUqhQ0nmQPevCvmbrt_jrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.930 [XNIO-1 task-2] JUqhQ0nmQPevCvmbrt_jrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.931 [XNIO-1 task-2] JUqhQ0nmQPevCvmbrt_jrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:42.936 [XNIO-1 task-2] JUqhQ0nmQPevCvmbrt_jrQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.938 [XNIO-1 task-4] RuXSnEK8QkWqUtz6MG5Huw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.941 [XNIO-1 task-2] m4t97eu1R7uUSGRePM0y4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.941 [XNIO-1 task-2] m4t97eu1R7uUSGRePM0y4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.941 [XNIO-1 task-2] m4t97eu1R7uUSGRePM0y4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.942 [XNIO-1 task-2] m4t97eu1R7uUSGRePM0y4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:42.947 [XNIO-1 task-2] m4t97eu1R7uUSGRePM0y4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.949 [XNIO-1 task-4] x0GrYW1hRLKR5bZuvkVPzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.949 [XNIO-1 task-4] x0GrYW1hRLKR5bZuvkVPzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.950 [XNIO-1 task-4] x0GrYW1hRLKR5bZuvkVPzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.950 [XNIO-1 task-4] x0GrYW1hRLKR5bZuvkVPzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", authorization) +16:29:42.955 [XNIO-1 task-2] 8HX8TYQNSLqklRDGeneu5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.955 [XNIO-1 task-2] 8HX8TYQNSLqklRDGeneu5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.955 [XNIO-1 task-2] 8HX8TYQNSLqklRDGeneu5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.956 [XNIO-1 task-2] 8HX8TYQNSLqklRDGeneu5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:42.961 [XNIO-1 task-2] 8HX8TYQNSLqklRDGeneu5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.965 [XNIO-1 task-2] SDKKtPFgS7mnKhnmhRfC2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.965 [XNIO-1 task-2] SDKKtPFgS7mnKhnmhRfC2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.966 [XNIO-1 task-2] SDKKtPFgS7mnKhnmhRfC2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.966 [XNIO-1 task-2] SDKKtPFgS7mnKhnmhRfC2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:42.972 [XNIO-1 task-2] SDKKtPFgS7mnKhnmhRfC2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.974 [XNIO-1 task-4] x0GrYW1hRLKR5bZuvkVPzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.979 [XNIO-1 task-2] ePH4omLHTsGutOF7gBvDhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.980 [XNIO-1 task-2] ePH4omLHTsGutOF7gBvDhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.980 [XNIO-1 task-2] ePH4omLHTsGutOF7gBvDhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.981 [XNIO-1 task-2] ePH4omLHTsGutOF7gBvDhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", authorization) +16:29:42.983 [XNIO-1 task-1] Ih2va9ZmS92LO4bIACaiCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.983 [XNIO-1 task-1] Ih2va9ZmS92LO4bIACaiCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:42.983 [XNIO-1 task-1] Ih2va9ZmS92LO4bIACaiCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:42.984 [XNIO-1 task-1] Ih2va9ZmS92LO4bIACaiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", authorization) +16:29:42.989 [XNIO-1 task-2] ePH4omLHTsGutOF7gBvDhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:42.991 [XNIO-1 task-1] Ih2va9ZmS92LO4bIACaiCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:42.992 [XNIO-1 task-1] Ih2va9ZmS92LO4bIACaiCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:42.996 [XNIO-1 task-2] tL3DQ5rfTSa66zlZTArZoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.996 [XNIO-1 task-2] tL3DQ5rfTSa66zlZTArZoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.997 [XNIO-1 task-2] tL3DQ5rfTSa66zlZTArZoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:42.997 [XNIO-1 task-2] tL3DQ5rfTSa66zlZTArZoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.002 [XNIO-1 task-2] tL3DQ5rfTSa66zlZTArZoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.005 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:daa4a37b-4aa5-4028-8417-4ab903ee7564 +16:29:43.011 [XNIO-1 task-1] VN0781crQSO-6jwCAoVevQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.012 [XNIO-1 task-1] VN0781crQSO-6jwCAoVevQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.012 [XNIO-1 task-1] VN0781crQSO-6jwCAoVevQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.012 [XNIO-1 task-1] VN0781crQSO-6jwCAoVevQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:43.019 [XNIO-1 task-1] VN0781crQSO-6jwCAoVevQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.021 [XNIO-1 task-2] yslFw8AARV2mhdYPI2CEpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.021 [XNIO-1 task-2] yslFw8AARV2mhdYPI2CEpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.022 [XNIO-1 task-2] yslFw8AARV2mhdYPI2CEpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.022 [XNIO-1 task-2] yslFw8AARV2mhdYPI2CEpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", authorization) +16:29:43.027 [XNIO-1 task-1] dGXgMSSRQUykKhJQZ0Pbtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.027 [XNIO-1 task-1] dGXgMSSRQUykKhJQZ0Pbtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.028 [XNIO-1 task-1] dGXgMSSRQUykKhJQZ0Pbtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.028 [XNIO-1 task-1] dGXgMSSRQUykKhJQZ0Pbtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:43.033 [XNIO-1 task-1] dGXgMSSRQUykKhJQZ0Pbtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.035 [XNIO-1 task-2] yslFw8AARV2mhdYPI2CEpg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:43.036 [XNIO-1 task-2] yslFw8AARV2mhdYPI2CEpg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.043 [XNIO-1 task-1] nsuszv_3SrCLVDdE5ixzdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.044 [XNIO-1 task-1] nsuszv_3SrCLVDdE5ixzdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.044 [XNIO-1 task-1] nsuszv_3SrCLVDdE5ixzdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.045 [XNIO-1 task-1] nsuszv_3SrCLVDdE5ixzdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = JVzJ1fKbSAmAKlaKYZrRFw redirectUri = http://localhost:8080/authorization +16:29:43.046 [XNIO-1 task-4] xiKOM6clRLmbGZ7bstmofg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.046 [XNIO-1 task-4] xiKOM6clRLmbGZ7bstmofg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.047 [XNIO-1 task-4] xiKOM6clRLmbGZ7bstmofg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.047 [XNIO-1 task-4] xiKOM6clRLmbGZ7bstmofg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.055 [XNIO-1 task-1] nsuszv_3SrCLVDdE5ixzdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:43.057 [XNIO-1 task-4] xiKOM6clRLmbGZ7bstmofg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.067 [XNIO-1 task-4] 0M-Hh2OvSxit4Gr0W8EvqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.068 [XNIO-1 task-4] 0M-Hh2OvSxit4Gr0W8EvqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.069 [XNIO-1 task-4] 0M-Hh2OvSxit4Gr0W8EvqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.070 [XNIO-1 task-4] 0M-Hh2OvSxit4Gr0W8EvqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:43.075 [XNIO-1 task-1] jvvsF9UKSjuNsLcGEnoNVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.075 [XNIO-1 task-1] jvvsF9UKSjuNsLcGEnoNVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.076 [XNIO-1 task-1] jvvsF9UKSjuNsLcGEnoNVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.076 [XNIO-1 task-1] jvvsF9UKSjuNsLcGEnoNVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:43.080 [XNIO-1 task-4] 0M-Hh2OvSxit4Gr0W8EvqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.089 [XNIO-1 task-1] jvvsF9UKSjuNsLcGEnoNVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.089 [XNIO-1 task-2] Z1FlMpTkTgCS3W-5AI7fgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.090 [XNIO-1 task-2] Z1FlMpTkTgCS3W-5AI7fgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.090 [XNIO-1 task-2] Z1FlMpTkTgCS3W-5AI7fgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.090 [XNIO-1 task-2] Z1FlMpTkTgCS3W-5AI7fgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:43.090 [XNIO-1 task-2] Z1FlMpTkTgCS3W-5AI7fgA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.091 [XNIO-1 task-4] ehVL35OpR3-npLQ_Je4yhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.091 [XNIO-1 task-4] ehVL35OpR3-npLQ_Je4yhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.091 [XNIO-1 task-4] ehVL35OpR3-npLQ_Je4yhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.092 [XNIO-1 task-4] ehVL35OpR3-npLQ_Je4yhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2zTjRkRJRc6nBcw7Uy-m8w redirectUri = http://localhost:8080/authorization +16:29:43.098 [XNIO-1 task-2] Z1FlMpTkTgCS3W-5AI7fgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.099 [XNIO-1 task-2] Z1FlMpTkTgCS3W-5AI7fgA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.105 [XNIO-1 task-4] ehVL35OpR3-npLQ_Je4yhw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.107 [XNIO-1 task-2] QIKzXThRTqeA8k5xjPdg0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.107 [XNIO-1 task-2] QIKzXThRTqeA8k5xjPdg0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.107 [XNIO-1 task-2] QIKzXThRTqeA8k5xjPdg0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.108 [XNIO-1 task-2] QIKzXThRTqeA8k5xjPdg0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.112 [XNIO-1 task-1] xHO4PRm8RIeq82jyVnBRDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.112 [XNIO-1 task-1] xHO4PRm8RIeq82jyVnBRDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.113 [XNIO-1 task-1] xHO4PRm8RIeq82jyVnBRDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.113 [XNIO-1 task-2] QIKzXThRTqeA8k5xjPdg0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.116 [XNIO-1 task-1] xHO4PRm8RIeq82jyVnBRDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = dd2ee325-2332-441c-a950-428f06c7c91e scope = null +16:29:43.119 [XNIO-1 task-4] esZQJpCUQjmxXLWC8LURGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.119 [XNIO-1 task-4] esZQJpCUQjmxXLWC8LURGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.120 [XNIO-1 task-4] esZQJpCUQjmxXLWC8LURGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.120 [XNIO-1 task-4] esZQJpCUQjmxXLWC8LURGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 868f76b6-358d-4dec-92e0-f772b891f38d scope = null +16:29:43.122 [XNIO-1 task-2] 6sfMX8B9RqCVVkKJb2H6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.123 [XNIO-1 task-2] 6sfMX8B9RqCVVkKJb2H6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.124 [XNIO-1 task-2] 6sfMX8B9RqCVVkKJb2H6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.125 [XNIO-1 task-2] 6sfMX8B9RqCVVkKJb2H6Vw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.130 [XNIO-1 task-2] 6sfMX8B9RqCVVkKJb2H6Vw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.132 [XNIO-1 task-1] xHO4PRm8RIeq82jyVnBRDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.134 [XNIO-1 task-4] esZQJpCUQjmxXLWC8LURGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.137 [XNIO-1 task-2] tg7ollgISUmWnlkoB13c_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.141 [XNIO-1 task-2] tg7ollgISUmWnlkoB13c_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.141 [XNIO-1 task-2] tg7ollgISUmWnlkoB13c_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.141 [XNIO-1 task-2] tg7ollgISUmWnlkoB13c_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", authorization) +16:29:43.147 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3ef7dc47-4e4a-4932-9289-40f1cf199c1f +16:29:43.159 [XNIO-1 task-2] tg7ollgISUmWnlkoB13c_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.171 [XNIO-1 task-2] GQ1Rg5CkSWi3IPHg77KLxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.172 [XNIO-1 task-2] GQ1Rg5CkSWi3IPHg77KLxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.172 [XNIO-1 task-2] GQ1Rg5CkSWi3IPHg77KLxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.172 [XNIO-1 task-2] GQ1Rg5CkSWi3IPHg77KLxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjRkN2QxY2YtNzk0NC00MmVkLWFmY2YtNzhiNDY0YTgxNjY4OkM5Y1NRVWc0UWNDM3gyMXVKODZkM0E=", "Basic ZjRkN2QxY2YtNzk0NC00MmVkLWFmY2YtNzhiNDY0YTgxNjY4OkM5Y1NRVWc0UWNDM3gyMXVKODZkM0E=", authorization) +16:29:43.185 [XNIO-1 task-2] GQ1Rg5CkSWi3IPHg77KLxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.232 [XNIO-1 task-2] FhFHCBrbSO6wJWa-5nNT0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.232 [XNIO-1 task-2] FhFHCBrbSO6wJWa-5nNT0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.233 [XNIO-1 task-2] FhFHCBrbSO6wJWa-5nNT0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.233 [XNIO-1 task-2] FhFHCBrbSO6wJWa-5nNT0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:43.235 [XNIO-1 task-4] g_KsCFXcRqms06N-0sJ2BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.236 [XNIO-1 task-4] g_KsCFXcRqms06N-0sJ2BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.236 [XNIO-1 task-4] g_KsCFXcRqms06N-0sJ2BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.236 [XNIO-1 task-4] g_KsCFXcRqms06N-0sJ2BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.236 [XNIO-1 task-1] 964WZCkBQ-WNUaVFh-P61Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.236 [XNIO-1 task-4] g_KsCFXcRqms06N-0sJ2BA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTllZDJmZjctMDc2My00ZWEyLWE4YzEtY2VmNzM2MTFmOTM0Ok5RZEFVR1FkVGhHMWNWSmluWmt5cmc=", "Basic NTllZDJmZjctMDc2My00ZWEyLWE4YzEtY2VmNzM2MTFmOTM0Ok5RZEFVR1FkVGhHMWNWSmluWmt5cmc=", authorization) +16:29:43.237 [XNIO-1 task-1] 964WZCkBQ-WNUaVFh-P61Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.237 [XNIO-1 task-1] 964WZCkBQ-WNUaVFh-P61Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:43.238 [XNIO-1 task-2] FhFHCBrbSO6wJWa-5nNT0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.247 [XNIO-1 task-2] 0N0b3bv9TQeRm9drk5WlDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.247 [XNIO-1 task-2] 0N0b3bv9TQeRm9drk5WlDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.248 [XNIO-1 task-2] 0N0b3bv9TQeRm9drk5WlDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.248 [XNIO-1 task-2] 0N0b3bv9TQeRm9drk5WlDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:43.253 [XNIO-1 task-2] 0N0b3bv9TQeRm9drk5WlDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.259 [XNIO-1 task-2] 68fMzNqnRuaE3kN7ANPhnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.260 [XNIO-1 task-2] 68fMzNqnRuaE3kN7ANPhnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.260 [XNIO-1 task-2] 68fMzNqnRuaE3kN7ANPhnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.260 [XNIO-1 task-2] 68fMzNqnRuaE3kN7ANPhnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", authorization) +16:29:43.261 [XNIO-1 task-1] 964WZCkBQ-WNUaVFh-P61Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.266 [XNIO-1 task-2] 68fMzNqnRuaE3kN7ANPhnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.274 [XNIO-1 task-1] sCHVWk6MTIOyp7YxDzQElw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.274 [XNIO-1 task-1] sCHVWk6MTIOyp7YxDzQElw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.274 [XNIO-1 task-1] sCHVWk6MTIOyp7YxDzQElw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.275 [XNIO-1 task-4] g_KsCFXcRqms06N-0sJ2BA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:43.275 [XNIO-1 task-1] sCHVWk6MTIOyp7YxDzQElw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.275 [XNIO-1 task-4] g_KsCFXcRqms06N-0sJ2BA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.278 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:18bbbe3d-f100-4bfd-a2d9-4bea0d9e280c +16:29:43.280 [XNIO-1 task-1] sCHVWk6MTIOyp7YxDzQElw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.289 [XNIO-1 task-1] tmuNlzh7S0aKbQdvSgaALw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.289 [XNIO-1 task-1] tmuNlzh7S0aKbQdvSgaALw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.290 [XNIO-1 task-1] tmuNlzh7S0aKbQdvSgaALw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.290 [XNIO-1 task-1] tmuNlzh7S0aKbQdvSgaALw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.294 [XNIO-1 task-4] RHx4F97gSbaP_rsGImxzYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.294 [XNIO-1 task-4] RHx4F97gSbaP_rsGImxzYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.295 [XNIO-1 task-4] RHx4F97gSbaP_rsGImxzYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.295 [XNIO-1 task-4] RHx4F97gSbaP_rsGImxzYA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 18bbbe3d-f100-4bfd-a2d9-4bea0d9e280c scope = null +16:29:43.298 [XNIO-1 task-1] tmuNlzh7S0aKbQdvSgaALw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.303 [XNIO-1 task-1] 3SLPqeiAQyyJa-iYe3ayag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.303 [XNIO-1 task-1] 3SLPqeiAQyyJa-iYe3ayag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.303 [XNIO-1 task-1] 3SLPqeiAQyyJa-iYe3ayag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.303 [XNIO-1 task-2] zBhHz8pVSKmY7RTLqLnOYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.303 [XNIO-1 task-2] zBhHz8pVSKmY7RTLqLnOYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.303 [XNIO-1 task-1] 3SLPqeiAQyyJa-iYe3ayag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:43.304 [XNIO-1 task-1] 3SLPqeiAQyyJa-iYe3ayag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.304 [XNIO-1 task-2] zBhHz8pVSKmY7RTLqLnOYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", authorization) +16:29:43.308 [XNIO-1 task-4] RHx4F97gSbaP_rsGImxzYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.309 [XNIO-1 task-1] 3SLPqeiAQyyJa-iYe3ayag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.316 [XNIO-1 task-1] nEUTEu8NRiGbIZcNLtkdlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.316 [XNIO-1 task-1] nEUTEu8NRiGbIZcNLtkdlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.316 [XNIO-1 task-1] nEUTEu8NRiGbIZcNLtkdlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.317 [XNIO-1 task-1] nEUTEu8NRiGbIZcNLtkdlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:43.321 [XNIO-1 task-2] zBhHz8pVSKmY7RTLqLnOYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:43.321 [XNIO-1 task-2] zBhHz8pVSKmY7RTLqLnOYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.325 [XNIO-1 task-1] nEUTEu8NRiGbIZcNLtkdlA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.342 [XNIO-1 task-2] -P3eJLpgTd2xS1eWp1KJHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.342 [XNIO-1 task-2] -P3eJLpgTd2xS1eWp1KJHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.342 [XNIO-1 task-2] -P3eJLpgTd2xS1eWp1KJHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.337 [XNIO-1 task-1] TYUDdLlpQG-DzvAkPxjLiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.343 [XNIO-1 task-1] TYUDdLlpQG-DzvAkPxjLiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.343 [XNIO-1 task-1] TYUDdLlpQG-DzvAkPxjLiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.343 [XNIO-1 task-1] TYUDdLlpQG-DzvAkPxjLiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.344 [XNIO-1 task-1] TYUDdLlpQG-DzvAkPxjLiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.352 [XNIO-1 task-1] TYUDdLlpQG-DzvAkPxjLiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.356 [XNIO-1 task-2] -P3eJLpgTd2xS1eWp1KJHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.359 [XNIO-1 task-1] xZKTy9c4RBiFzqjDGOgzhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.359 [XNIO-1 task-1] xZKTy9c4RBiFzqjDGOgzhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.359 [XNIO-1 task-1] xZKTy9c4RBiFzqjDGOgzhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.360 [XNIO-1 task-1] xZKTy9c4RBiFzqjDGOgzhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.366 [XNIO-1 task-1] xZKTy9c4RBiFzqjDGOgzhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.373 [XNIO-1 task-1] jXl0YZnOQW2GSJWfyS2F9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.373 [XNIO-1 task-1] jXl0YZnOQW2GSJWfyS2F9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.374 [XNIO-1 task-1] jXl0YZnOQW2GSJWfyS2F9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.374 [XNIO-1 task-1] jXl0YZnOQW2GSJWfyS2F9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.381 [XNIO-1 task-1] jXl0YZnOQW2GSJWfyS2F9A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.393 [XNIO-1 task-2] CB01cLlAQouDc3BO8eIP2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.393 [XNIO-1 task-2] CB01cLlAQouDc3BO8eIP2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.393 [XNIO-1 task-2] CB01cLlAQouDc3BO8eIP2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.394 [XNIO-1 task-2] CB01cLlAQouDc3BO8eIP2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.394 [XNIO-1 task-1] OCN1ylSXSYea6Mk132LwUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.394 [XNIO-1 task-1] OCN1ylSXSYea6Mk132LwUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.394 [XNIO-1 task-1] OCN1ylSXSYea6Mk132LwUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.395 [XNIO-1 task-1] OCN1ylSXSYea6Mk132LwUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1f35b1e7-126c-4a8b-b04a-d3d44b871553 scope = null +16:29:43.403 [XNIO-1 task-2] CB01cLlAQouDc3BO8eIP2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.406 [XNIO-1 task-1] OCN1ylSXSYea6Mk132LwUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.411 [XNIO-1 task-2] qhaeqOe2QNGiJqE474Riow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.411 [XNIO-1 task-2] qhaeqOe2QNGiJqE474Riow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.413 [XNIO-1 task-2] qhaeqOe2QNGiJqE474Riow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.414 [XNIO-1 task-2] qhaeqOe2QNGiJqE474Riow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.420 [XNIO-1 task-2] qhaeqOe2QNGiJqE474Riow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.429 [XNIO-1 task-2] JrnMGJ7DQnm-Yc1i7CNUBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.429 [XNIO-1 task-2] JrnMGJ7DQnm-Yc1i7CNUBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.430 [XNIO-1 task-2] JrnMGJ7DQnm-Yc1i7CNUBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.431 [XNIO-1 task-1] vjci71ldT96thbAL0YjjKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.431 [XNIO-1 task-1] vjci71ldT96thbAL0YjjKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.431 [XNIO-1 task-2] JrnMGJ7DQnm-Yc1i7CNUBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 561e47b5-9b72-42b7-8fd5-c66da289ac2c scope = null +16:29:43.431 [XNIO-1 task-1] vjci71ldT96thbAL0YjjKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.432 [XNIO-1 task-1] vjci71ldT96thbAL0YjjKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.437 [XNIO-1 task-1] vjci71ldT96thbAL0YjjKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.441 [XNIO-1 task-2] JrnMGJ7DQnm-Yc1i7CNUBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.441 [XNIO-1 task-1] Joo_iqi1SsqFR5S3GDVY1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.441 [XNIO-1 task-1] Joo_iqi1SsqFR5S3GDVY1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.442 [XNIO-1 task-1] Joo_iqi1SsqFR5S3GDVY1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.442 [XNIO-1 task-1] Joo_iqi1SsqFR5S3GDVY1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZkcyTFoBRUueI7k7-faFJw redirectUri = http://localhost:8080/authorization +16:29:43.451 [XNIO-1 task-4] X0lY6HB_T_O-rZCT8dQVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.451 [XNIO-1 task-4] X0lY6HB_T_O-rZCT8dQVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.454 [XNIO-1 task-4] X0lY6HB_T_O-rZCT8dQVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.454 [XNIO-1 task-4] X0lY6HB_T_O-rZCT8dQVrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.460 [XNIO-1 task-4] X0lY6HB_T_O-rZCT8dQVrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.462 [XNIO-1 task-2] T1EdQneqRfyNL_NLn48yfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.462 [XNIO-1 task-1] Joo_iqi1SsqFR5S3GDVY1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.462 [XNIO-1 task-2] T1EdQneqRfyNL_NLn48yfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.463 [XNIO-1 task-2] T1EdQneqRfyNL_NLn48yfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.464 [XNIO-1 task-2] T1EdQneqRfyNL_NLn48yfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.466 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:575f6d1b +16:29:43.466 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:575f6d1b +16:29:43.471 [XNIO-1 task-4] 1l9oF-e9R9WKlITRRAxTyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.471 [XNIO-1 task-4] 1l9oF-e9R9WKlITRRAxTyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.471 [XNIO-1 task-4] 1l9oF-e9R9WKlITRRAxTyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.473 [XNIO-1 task-4] 1l9oF-e9R9WKlITRRAxTyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.476 [XNIO-1 task-2] T1EdQneqRfyNL_NLn48yfg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.480 [XNIO-1 task-1] cXtQjbfmTfKqx30-CGrlWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.480 [XNIO-1 task-1] cXtQjbfmTfKqx30-CGrlWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.480 [XNIO-1 task-1] cXtQjbfmTfKqx30-CGrlWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.481 [XNIO-1 task-1] cXtQjbfmTfKqx30-CGrlWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 93613d6d-6d27-476a-91cf-48d1b65d10c3 scope = null +16:29:43.543 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:aae8a5de +16:29:43.546 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3ef7dc47-4e4a-4932-9289-40f1cf199c1f +16:29:43.551 [XNIO-1 task-1] cXtQjbfmTfKqx30-CGrlWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.551 [XNIO-1 task-4] 1l9oF-e9R9WKlITRRAxTyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.566 [XNIO-1 task-4] 3QsNmv0URNeorBf_abB4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.566 [XNIO-1 task-4] 3QsNmv0URNeorBf_abB4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.567 [XNIO-1 task-4] 3QsNmv0URNeorBf_abB4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.568 [XNIO-1 task-4] 3QsNmv0URNeorBf_abB4_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.573 [XNIO-1 task-4] 3QsNmv0URNeorBf_abB4_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.578 [XNIO-1 task-1] C612Bkm-RT-Oqx0kd4JdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.578 [XNIO-1 task-1] C612Bkm-RT-Oqx0kd4JdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.579 [XNIO-1 task-1] C612Bkm-RT-Oqx0kd4JdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.579 [XNIO-1 task-1] C612Bkm-RT-Oqx0kd4JdpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = t3ETar9SRNWp0zFwhbRg_g redirectUri = http://localhost:8080/authorization +16:29:43.583 [XNIO-1 task-4] u_rrjm70T4OanFUczPw2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.583 [XNIO-1 task-4] u_rrjm70T4OanFUczPw2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.584 [XNIO-1 task-4] u_rrjm70T4OanFUczPw2nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.584 [XNIO-1 task-4] u_rrjm70T4OanFUczPw2nw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.586 [XNIO-1 task-1] C612Bkm-RT-Oqx0kd4JdpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.596 [XNIO-1 task-4] u_rrjm70T4OanFUczPw2nw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.604 [XNIO-1 task-4] FDaCebypQW-lJOyZKmqQrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.604 [XNIO-1 task-4] FDaCebypQW-lJOyZKmqQrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.604 [XNIO-1 task-4] FDaCebypQW-lJOyZKmqQrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.606 [XNIO-1 task-4] FDaCebypQW-lJOyZKmqQrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", authorization) +16:29:43.614 [XNIO-1 task-1] 0KVe0VYiS4ugJwMI-yPWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.614 [XNIO-1 task-1] 0KVe0VYiS4ugJwMI-yPWMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.615 [XNIO-1 task-1] 0KVe0VYiS4ugJwMI-yPWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.615 [XNIO-1 task-1] 0KVe0VYiS4ugJwMI-yPWMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", authorization) +16:29:43.618 [XNIO-1 task-4] FDaCebypQW-lJOyZKmqQrA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.624 [XNIO-1 task-4] L1YSKmjFQ5W-Jk4hv_--WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.624 [XNIO-1 task-4] L1YSKmjFQ5W-Jk4hv_--WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.624 [XNIO-1 task-4] L1YSKmjFQ5W-Jk4hv_--WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.625 [XNIO-1 task-4] L1YSKmjFQ5W-Jk4hv_--WA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", authorization) +16:29:43.626 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:575f6d1b +16:29:43.632 [XNIO-1 task-4] L1YSKmjFQ5W-Jk4hv_--WA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.633 [XNIO-1 task-1] 0KVe0VYiS4ugJwMI-yPWMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.636 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d2e12336-e4f7-4fae-93fb-7740d930c539 +16:29:43.638 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d2e12336-e4f7-4fae-93fb-7740d930c539 +16:29:43.639 [XNIO-1 task-4] 1sq6oRCdSFOSDGm3BS_7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.640 [XNIO-1 task-4] 1sq6oRCdSFOSDGm3BS_7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.641 [XNIO-1 task-4] 1sq6oRCdSFOSDGm3BS_7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.641 [XNIO-1 task-4] 1sq6oRCdSFOSDGm3BS_7AA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.650 [XNIO-1 task-1] 1HTQ2muoSRuGsLt8I8m94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.650 [XNIO-1 task-1] 1HTQ2muoSRuGsLt8I8m94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.650 [XNIO-1 task-1] 1HTQ2muoSRuGsLt8I8m94g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.651 [XNIO-1 task-1] 1HTQ2muoSRuGsLt8I8m94g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d2e12336-e4f7-4fae-93fb-7740d930c539 scope = null +16:29:43.652 [XNIO-1 task-4] 1sq6oRCdSFOSDGm3BS_7AA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.661 [XNIO-1 task-4] _iTjI11ZSJ-xxlF1d7D9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.661 [XNIO-1 task-4] _iTjI11ZSJ-xxlF1d7D9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.662 [XNIO-1 task-4] _iTjI11ZSJ-xxlF1d7D9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.662 [XNIO-1 task-4] _iTjI11ZSJ-xxlF1d7D9ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", authorization) +16:29:43.665 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d2e12336-e4f7-4fae-93fb-7740d930c539 +16:29:43.671 [XNIO-1 task-4] _iTjI11ZSJ-xxlF1d7D9ZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.675 [XNIO-1 task-1] 1HTQ2muoSRuGsLt8I8m94g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.682 [XNIO-1 task-4] sC8-Ygp7THWGFdgd8CRwkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.682 [XNIO-1 task-4] sC8-Ygp7THWGFdgd8CRwkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.682 [XNIO-1 task-4] sC8-Ygp7THWGFdgd8CRwkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.684 [XNIO-1 task-4] sC8-Ygp7THWGFdgd8CRwkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.690 [XNIO-1 task-4] sC8-Ygp7THWGFdgd8CRwkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.696 [XNIO-1 task-4] _R66yD_tTe-DKn67W0UzNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.696 [XNIO-1 task-4] _R66yD_tTe-DKn67W0UzNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.697 [XNIO-1 task-4] _R66yD_tTe-DKn67W0UzNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.697 [XNIO-1 task-4] _R66yD_tTe-DKn67W0UzNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.703 [XNIO-1 task-4] _R66yD_tTe-DKn67W0UzNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.708 [XNIO-1 task-4] _8Mt0uX_TnujLw9tQr7Y_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.708 [XNIO-1 task-4] _8Mt0uX_TnujLw9tQr7Y_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.709 [XNIO-1 task-4] _8Mt0uX_TnujLw9tQr7Y_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.709 [XNIO-1 task-4] _8Mt0uX_TnujLw9tQr7Y_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.720 [XNIO-1 task-4] _8Mt0uX_TnujLw9tQr7Y_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.728 [XNIO-1 task-4] sL65H-ghTdKFZS31Wjeg9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.728 [XNIO-1 task-4] sL65H-ghTdKFZS31Wjeg9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.729 [XNIO-1 task-4] sL65H-ghTdKFZS31Wjeg9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.729 [XNIO-1 task-4] sL65H-ghTdKFZS31Wjeg9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.734 [XNIO-1 task-4] sL65H-ghTdKFZS31Wjeg9A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.744 [XNIO-1 task-4] Aa4InCoZSDiM9AUEeyooVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.744 [XNIO-1 task-4] Aa4InCoZSDiM9AUEeyooVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.744 [XNIO-1 task-4] Aa4InCoZSDiM9AUEeyooVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.746 [XNIO-1 task-4] Aa4InCoZSDiM9AUEeyooVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.752 [XNIO-1 task-4] Aa4InCoZSDiM9AUEeyooVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.760 [XNIO-1 task-4] os_TyZnYReC06xKwJAO-jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.760 [XNIO-1 task-4] os_TyZnYReC06xKwJAO-jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.760 [XNIO-1 task-4] os_TyZnYReC06xKwJAO-jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.761 [XNIO-1 task-4] os_TyZnYReC06xKwJAO-jw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.784 [XNIO-1 task-1] Sf0vqhWlSCu0Hs7-rxCFgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.785 [XNIO-1 task-1] Sf0vqhWlSCu0Hs7-rxCFgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.786 [XNIO-1 task-1] Sf0vqhWlSCu0Hs7-rxCFgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.787 [XNIO-1 task-1] Sf0vqhWlSCu0Hs7-rxCFgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = aoT4AWthT7eT4oj5YWIORg redirectUri = http://localhost:8080/authorization +16:29:43.787 [XNIO-1 task-4] os_TyZnYReC06xKwJAO-jw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.796 [XNIO-1 task-4] wEg4AS8mR3i7q3_GezHWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.796 [XNIO-1 task-4] wEg4AS8mR3i7q3_GezHWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.797 [XNIO-1 task-4] wEg4AS8mR3i7q3_GezHWVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.799 [XNIO-1 task-4] wEg4AS8mR3i7q3_GezHWVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:43.804 [XNIO-1 task-4] wEg4AS8mR3i7q3_GezHWVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.805 [XNIO-1 task-1] Sf0vqhWlSCu0Hs7-rxCFgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.814 [XNIO-1 task-4] PVMMddJaTtix44VcE9nC8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.814 [XNIO-1 task-4] PVMMddJaTtix44VcE9nC8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.814 [XNIO-1 task-4] PVMMddJaTtix44VcE9nC8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.815 [XNIO-1 task-4] PVMMddJaTtix44VcE9nC8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:43.820 [XNIO-1 task-4] PVMMddJaTtix44VcE9nC8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.832 [XNIO-1 task-1] ywz_whp6SQ-o5YdXA9CUzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.832 [XNIO-1 task-1] ywz_whp6SQ-o5YdXA9CUzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.832 [XNIO-1 task-1] ywz_whp6SQ-o5YdXA9CUzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.833 [XNIO-1 task-1] ywz_whp6SQ-o5YdXA9CUzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:43.836 [XNIO-1 task-4] yp4FWdffQCiDRoPQSdlnow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.836 [XNIO-1 task-4] yp4FWdffQCiDRoPQSdlnow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.836 [XNIO-1 task-4] yp4FWdffQCiDRoPQSdlnow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.836 [XNIO-1 task-4] yp4FWdffQCiDRoPQSdlnow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:43.841 [XNIO-1 task-4] yp4FWdffQCiDRoPQSdlnow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.842 [XNIO-1 task-1] ywz_whp6SQ-o5YdXA9CUzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:43.842 [XNIO-1 task-1] ywz_whp6SQ-o5YdXA9CUzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:43.845 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:82257194-c95d-4059-9a01-638033a3d1ef +16:29:43.858 [XNIO-1 task-4] 0ITXI_alS6eO_ao7Fg5OuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.863 [XNIO-1 task-4] 0ITXI_alS6eO_ao7Fg5OuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.867 [XNIO-1 task-4] 0ITXI_alS6eO_ao7Fg5OuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.869 [XNIO-1 task-4] 0ITXI_alS6eO_ao7Fg5OuA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", authorization) +16:29:43.874 [XNIO-1 task-4] 0ITXI_alS6eO_ao7Fg5OuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.883 [XNIO-1 task-4] hxRClH8_RomquXu-g8PQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.883 [XNIO-1 task-4] hxRClH8_RomquXu-g8PQ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.884 [XNIO-1 task-4] hxRClH8_RomquXu-g8PQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.884 [XNIO-1 task-4] hxRClH8_RomquXu-g8PQ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", authorization) +16:29:43.890 [XNIO-1 task-4] hxRClH8_RomquXu-g8PQ-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.897 [XNIO-1 task-4] hwot7NCPT-CcmmjU3Rjcig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.897 [XNIO-1 task-4] hwot7NCPT-CcmmjU3Rjcig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.898 [XNIO-1 task-4] hwot7NCPT-CcmmjU3Rjcig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.898 [XNIO-1 task-4] hwot7NCPT-CcmmjU3Rjcig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", authorization) +16:29:43.904 [XNIO-1 task-4] hwot7NCPT-CcmmjU3Rjcig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.911 [XNIO-1 task-4] 5jtgAqHIS9iu8hw-Lxx2fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.911 [XNIO-1 task-4] 5jtgAqHIS9iu8hw-Lxx2fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.912 [XNIO-1 task-4] 5jtgAqHIS9iu8hw-Lxx2fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.912 [XNIO-1 task-4] 5jtgAqHIS9iu8hw-Lxx2fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:43.917 [XNIO-1 task-4] 5jtgAqHIS9iu8hw-Lxx2fQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.923 [XNIO-1 task-4] SaTQkDswQoSRp_PE9b_Cmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.923 [XNIO-1 task-4] SaTQkDswQoSRp_PE9b_Cmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.923 [XNIO-1 task-4] SaTQkDswQoSRp_PE9b_Cmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.924 [XNIO-1 task-4] SaTQkDswQoSRp_PE9b_Cmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:43.930 [XNIO-1 task-4] SaTQkDswQoSRp_PE9b_Cmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.938 [XNIO-1 task-4] Tq6s4JEMRIGgiF8GAhdx6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.938 [XNIO-1 task-4] Tq6s4JEMRIGgiF8GAhdx6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.938 [XNIO-1 task-4] Tq6s4JEMRIGgiF8GAhdx6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.939 [XNIO-1 task-4] Tq6s4JEMRIGgiF8GAhdx6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:43.944 [XNIO-1 task-4] Tq6s4JEMRIGgiF8GAhdx6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.951 [XNIO-1 task-4] EGYjbWbpSzGigeQdURwD-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.951 [XNIO-1 task-4] EGYjbWbpSzGigeQdURwD-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.952 [XNIO-1 task-4] EGYjbWbpSzGigeQdURwD-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.952 [XNIO-1 task-4] EGYjbWbpSzGigeQdURwD-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:43.959 [XNIO-1 task-4] EGYjbWbpSzGigeQdURwD-A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.968 [XNIO-1 task-4] kEHu66OpTjmNsqozI2Kn7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.969 [XNIO-1 task-4] kEHu66OpTjmNsqozI2Kn7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.969 [XNIO-1 task-4] kEHu66OpTjmNsqozI2Kn7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.970 [XNIO-1 task-4] kEHu66OpTjmNsqozI2Kn7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:43.981 [XNIO-1 task-4] kEHu66OpTjmNsqozI2Kn7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:43.992 [XNIO-1 task-4] lyBHm_4mTZa5Zizx56kpPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.992 [XNIO-1 task-1] EcOmK0tqQRedh-Kyi6Z3gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.992 [XNIO-1 task-4] lyBHm_4mTZa5Zizx56kpPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.992 [XNIO-1 task-4] lyBHm_4mTZa5Zizx56kpPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:43.992 [XNIO-1 task-1] EcOmK0tqQRedh-Kyi6Z3gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:43.992 [XNIO-1 task-1] EcOmK0tqQRedh-Kyi6Z3gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:43.993 [XNIO-1 task-4] lyBHm_4mTZa5Zizx56kpPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", authorization) +16:29:43.993 [XNIO-1 task-4] lyBHm_4mTZa5Zizx56kpPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = oHinwDrqQSqf1mGBKXcLMg redirectUri = http://localhost:8080/authorization +16:29:43.999 [XNIO-1 task-4] lyBHm_4mTZa5Zizx56kpPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:43.999 [XNIO-1 task-4] lyBHm_4mTZa5Zizx56kpPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.000 [XNIO-1 task-1] EcOmK0tqQRedh-Kyi6Z3gA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.003 [XNIO-1 task-2] _3O_2kbsTK--puL50eKsnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.003 [XNIO-1 task-2] _3O_2kbsTK--puL50eKsnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.003 [XNIO-1 task-2] _3O_2kbsTK--puL50eKsnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.003 [XNIO-1 task-2] _3O_2kbsTK--puL50eKsnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 233O1HKuQ_urK97t_Xxc5w redirectUri = http://localhost:8080/authorization +16:29:44.004 [XNIO-1 task-1] mZaEoJ8MSNeFNuVY-n4E1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.005 [XNIO-1 task-1] mZaEoJ8MSNeFNuVY-n4E1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.006 [XNIO-1 task-1] mZaEoJ8MSNeFNuVY-n4E1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.007 [XNIO-1 task-1] mZaEoJ8MSNeFNuVY-n4E1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.012 [XNIO-1 task-1] mZaEoJ8MSNeFNuVY-n4E1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.013 [XNIO-1 task-2] _3O_2kbsTK--puL50eKsnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.019 [XNIO-1 task-1] O5RwXxq6QnC2itY8xL4rvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.020 [XNIO-1 task-1] O5RwXxq6QnC2itY8xL4rvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.020 [XNIO-1 task-1] O5RwXxq6QnC2itY8xL4rvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.021 [XNIO-1 task-1] O5RwXxq6QnC2itY8xL4rvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", authorization) +16:29:44.031 [XNIO-1 task-1] O5RwXxq6QnC2itY8xL4rvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.043 [XNIO-1 task-1] hC6d5hLaRc6LuoOqvrnV0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.043 [XNIO-1 task-1] hC6d5hLaRc6LuoOqvrnV0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.044 [XNIO-1 task-1] hC6d5hLaRc6LuoOqvrnV0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.045 [XNIO-1 task-1] hC6d5hLaRc6LuoOqvrnV0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", authorization) +16:29:44.060 [XNIO-1 task-1] hC6d5hLaRc6LuoOqvrnV0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.061 [XNIO-1 task-2] m1QHPhfISE6_QyAFbevPEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.061 [XNIO-1 task-2] m1QHPhfISE6_QyAFbevPEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.062 [XNIO-1 task-2] m1QHPhfISE6_QyAFbevPEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.062 [XNIO-1 task-2] m1QHPhfISE6_QyAFbevPEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", authorization) +16:29:44.066 [XNIO-1 task-1] w34pkkTrSRKWc6vXuCnU3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.066 [XNIO-1 task-1] w34pkkTrSRKWc6vXuCnU3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.066 [XNIO-1 task-1] w34pkkTrSRKWc6vXuCnU3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.067 [XNIO-1 task-1] w34pkkTrSRKWc6vXuCnU3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", "Basic ZGFhNGEzN2ItNGFhNS00MDI4LTg0MTctNGFiOTAzZWU3NTY0OmVSMWdKeUc3UW42LUw4MU9xbFpjNWc=", authorization) +16:29:44.072 [XNIO-1 task-1] w34pkkTrSRKWc6vXuCnU3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.073 [XNIO-1 task-2] m1QHPhfISE6_QyAFbevPEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:44.074 [XNIO-1 task-2] m1QHPhfISE6_QyAFbevPEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.077 [XNIO-1 task-1] OUbEBpuPS82hRuo1HFbj8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.077 [XNIO-1 task-1] OUbEBpuPS82hRuo1HFbj8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.078 [XNIO-1 task-4] TMDuymV2RrmQ9piyS_FhUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.078 [XNIO-1 task-4] TMDuymV2RrmQ9piyS_FhUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.078 [XNIO-1 task-1] OUbEBpuPS82hRuo1HFbj8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.078 [XNIO-1 task-4] TMDuymV2RrmQ9piyS_FhUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.078 [XNIO-1 task-1] OUbEBpuPS82hRuo1HFbj8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.079 [XNIO-1 task-4] TMDuymV2RrmQ9piyS_FhUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uISart1nQWGr6LHWqQ9Ovg redirectUri = http://localhost:8080/authorization +16:29:44.085 [XNIO-1 task-1] OUbEBpuPS82hRuo1HFbj8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.090 [XNIO-1 task-4] TMDuymV2RrmQ9piyS_FhUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.096 [XNIO-1 task-1] v1yi9nd2TUuqinNVI8R4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.096 [XNIO-1 task-1] v1yi9nd2TUuqinNVI8R4Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.096 [XNIO-1 task-1] v1yi9nd2TUuqinNVI8R4Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.097 [XNIO-1 task-1] v1yi9nd2TUuqinNVI8R4Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", authorization) +16:29:44.102 [XNIO-1 task-4] EBjBBmISRfe6yQIYsWajEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.102 [XNIO-1 task-4] EBjBBmISRfe6yQIYsWajEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.102 [XNIO-1 task-4] EBjBBmISRfe6yQIYsWajEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.103 [XNIO-1 task-1] v1yi9nd2TUuqinNVI8R4Dw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.104 [XNIO-1 task-4] EBjBBmISRfe6yQIYsWajEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFhMjEzMzctNjNlZS00NzI2LThhZTUtOTAxMmE3YTE0NjQ0OkQyNW92Q2xLVFdTQngxSkhSdVduOWc=", "Basic MjFhMjEzMzctNjNlZS00NzI2LThhZTUtOTAxMmE3YTE0NjQ0OkQyNW92Q2xLVFdTQngxSkhSdVduOWc=", authorization) +16:29:44.108 [XNIO-1 task-1] JywkRDlSSa6ETLpnFL0pJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.109 [XNIO-1 task-1] JywkRDlSSa6ETLpnFL0pJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.109 [XNIO-1 task-1] JywkRDlSSa6ETLpnFL0pJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.110 [XNIO-1 task-2] GHM1rfqzSqO1WKPkp36exg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.110 [XNIO-1 task-1] JywkRDlSSa6ETLpnFL0pJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", authorization) +16:29:44.110 [XNIO-1 task-2] GHM1rfqzSqO1WKPkp36exg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.110 [XNIO-1 task-2] GHM1rfqzSqO1WKPkp36exg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.110 [XNIO-1 task-2] GHM1rfqzSqO1WKPkp36exg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", authorization) +16:29:44.113 [XNIO-1 task-4] EBjBBmISRfe6yQIYsWajEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.116 [XNIO-1 task-2] GHM1rfqzSqO1WKPkp36exg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.116 [XNIO-1 task-1] JywkRDlSSa6ETLpnFL0pJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:44.116 [XNIO-1 task-1] JywkRDlSSa6ETLpnFL0pJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.123 [XNIO-1 task-2] ZASe_s7oQY65lGqd5cOf5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.123 [XNIO-1 task-2] ZASe_s7oQY65lGqd5cOf5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.123 [XNIO-1 task-2] ZASe_s7oQY65lGqd5cOf5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.124 [XNIO-1 task-2] ZASe_s7oQY65lGqd5cOf5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.130 [XNIO-1 task-1] L6iW0vyMR5ixB5d3Xstw5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.131 [XNIO-1 task-1] L6iW0vyMR5ixB5d3Xstw5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.131 [XNIO-1 task-1] L6iW0vyMR5ixB5d3Xstw5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.131 [XNIO-1 task-1] L6iW0vyMR5ixB5d3Xstw5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.132 [XNIO-1 task-1] L6iW0vyMR5ixB5d3Xstw5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 03934616-6290-4cc8-b757-9e7d497b9026 scope = null +16:29:44.136 [XNIO-1 task-2] PruKRuhjTnSVictgqpbmxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.136 [XNIO-1 task-2] PruKRuhjTnSVictgqpbmxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.137 [XNIO-1 task-2] PruKRuhjTnSVictgqpbmxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.137 [XNIO-1 task-2] PruKRuhjTnSVictgqpbmxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.142 [XNIO-1 task-2] PruKRuhjTnSVictgqpbmxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.143 [XNIO-1 task-1] L6iW0vyMR5ixB5d3Xstw5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.147 [XNIO-1 task-2] YfqtnNjcQSeDed8IgRr48Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.147 [XNIO-1 task-2] YfqtnNjcQSeDed8IgRr48Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.148 [XNIO-1 task-2] YfqtnNjcQSeDed8IgRr48Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.149 [XNIO-1 task-2] YfqtnNjcQSeDed8IgRr48Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 57xyhTSMRTizSYsW241tMQ redirectUri = http://localhost:8080/authorization +16:29:44.151 [XNIO-1 task-4] YY4XBvB7RV-C59oVq_Jt0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.151 [XNIO-1 task-4] YY4XBvB7RV-C59oVq_Jt0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.151 [XNIO-1 task-4] YY4XBvB7RV-C59oVq_Jt0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.151 [XNIO-1 task-4] YY4XBvB7RV-C59oVq_Jt0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.155 [XNIO-1 task-2] YfqtnNjcQSeDed8IgRr48Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.156 [XNIO-1 task-4] YY4XBvB7RV-C59oVq_Jt0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.166 [XNIO-1 task-1] PCfQ9yEfSkOh3xRp5ZTC9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.167 [XNIO-1 task-1] PCfQ9yEfSkOh3xRp5ZTC9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.167 [XNIO-1 task-1] PCfQ9yEfSkOh3xRp5ZTC9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.167 [XNIO-1 task-1] PCfQ9yEfSkOh3xRp5ZTC9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", "Basic MjE2YzFkY2QtZmE4ZS00ZWZmLTg4YjctYTNlOThmMmIwNTU3Oi1QdVZBMzNSU3JpZnhnTWk3dXNOVmc=", authorization) +16:29:44.173 [XNIO-1 task-1] PCfQ9yEfSkOh3xRp5ZTC9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.182 [XNIO-1 task-1] MoMZwXHBT269c4CAg--23g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.182 [XNIO-1 task-1] MoMZwXHBT269c4CAg--23g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.182 [XNIO-1 task-1] MoMZwXHBT269c4CAg--23g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.183 [XNIO-1 task-1] MoMZwXHBT269c4CAg--23g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", "Basic MDg0ZTNiNDctYjdhYS00OGIyLTk5NDktOWNhYmFhODM4NzYxOmpnVzhlVUVDVDl1Y2pEc2dCNi1IM0E=", authorization) +16:29:44.190 [XNIO-1 task-1] MoMZwXHBT269c4CAg--23g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.201 [XNIO-1 task-1] 4F2qjP_STUuIe9OPpoRgjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.201 [XNIO-1 task-1] 4F2qjP_STUuIe9OPpoRgjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.205 [XNIO-1 task-1] 4F2qjP_STUuIe9OPpoRgjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.212 [XNIO-1 task-1] 4F2qjP_STUuIe9OPpoRgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:44.217 [XNIO-1 task-1] 4F2qjP_STUuIe9OPpoRgjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.223 [XNIO-1 task-1] Jz65Fe9YQ9-6LAH1L-YRaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.223 [XNIO-1 task-1] Jz65Fe9YQ9-6LAH1L-YRaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.224 [XNIO-1 task-1] Jz65Fe9YQ9-6LAH1L-YRaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.224 [XNIO-1 task-1] Jz65Fe9YQ9-6LAH1L-YRaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", authorization) +16:29:44.233 [XNIO-1 task-1] Jz65Fe9YQ9-6LAH1L-YRaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.236 [XNIO-1 task-2] GiZTY4PNSwqQSatMaOnvEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.236 [XNIO-1 task-2] GiZTY4PNSwqQSatMaOnvEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.237 [XNIO-1 task-2] GiZTY4PNSwqQSatMaOnvEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.237 [XNIO-1 task-2] GiZTY4PNSwqQSatMaOnvEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", "Basic Yjk2NDhlN2ItZmQ1My00Y2UwLThhYzQtOGM0ZDFlMDZhMjZlOl8ycDBaaUNHVHg2SHpqQzluMTBVOHc=", authorization) +16:29:44.238 [XNIO-1 task-1] pqvZFOQ0S5eO0XCvXqmyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.239 [XNIO-1 task-1] pqvZFOQ0S5eO0XCvXqmyhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.239 [XNIO-1 task-1] pqvZFOQ0S5eO0XCvXqmyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.240 [XNIO-1 task-1] pqvZFOQ0S5eO0XCvXqmyhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjRkN2QxY2YtNzk0NC00MmVkLWFmY2YtNzhiNDY0YTgxNjY4OkM5Y1NRVWc0UWNDM3gyMXVKODZkM0E=", "Basic ZjRkN2QxY2YtNzk0NC00MmVkLWFmY2YtNzhiNDY0YTgxNjY4OkM5Y1NRVWc0UWNDM3gyMXVKODZkM0E=", authorization) +16:29:44.248 [XNIO-1 task-1] pqvZFOQ0S5eO0XCvXqmyhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.251 [XNIO-1 task-4] eV3Mhk42TuqoD0gsXP3EGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +Jun 28, 2024 4:29:44 PM com.hazelcast.map.impl.operation.DeleteOperation +16:29:44.251 [XNIO-1 task-4] eV3Mhk42TuqoD0gsXP3EGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.251 [XNIO-1 task-4] eV3Mhk42TuqoD0gsXP3EGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +16:29:44.252 [XNIO-1 task-2] GiZTY4PNSwqQSatMaOnvEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.252 [XNIO-1 task-4] eV3Mhk42TuqoD0gsXP3EGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +16:29:44.252 [XNIO-1 task-4] eV3Mhk42TuqoD0gsXP3EGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = llzsTc_JR-Og900i9ane1Q redirectUri = http://localhost:8080/authorization +16:29:44.257 [XNIO-1 task-1] 1RbdKaz_TRug2m2XDAHWIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.257 [XNIO-1 task-1] 1RbdKaz_TRug2m2XDAHWIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.257 [XNIO-1 task-1] 1RbdKaz_TRug2m2XDAHWIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.257 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f4d7d1cf-7944-42ed-afcf-78b464a81668 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +16:29:44.273 [XNIO-1 task-4] -_OCznaLTSuiVKpukWpn8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.273 [XNIO-1 task-1] HXNwHcOZR2a55-srHHJs8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.273 [XNIO-1 task-4] -_OCznaLTSuiVKpukWpn8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +16:29:44.273 [XNIO-1 task-1] HXNwHcOZR2a55-srHHJs8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.273 [XNIO-1 task-4] -_OCznaLTSuiVKpukWpn8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.273 [XNIO-1 task-4] -_OCznaLTSuiVKpukWpn8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:29:44.274 [XNIO-1 task-1] HXNwHcOZR2a55-srHHJs8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.274 [XNIO-1 task-4] -_OCznaLTSuiVKpukWpn8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:44.274 [XNIO-1 task-1] HXNwHcOZR2a55-srHHJs8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.278 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:44.304 [XNIO-1 task-2] O_YGixsZTlSG0ktM51gvqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.304 [XNIO-1 task-2] O_YGixsZTlSG0ktM51gvqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.304 [XNIO-1 task-4] -_OCznaLTSuiVKpukWpn8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.305 [XNIO-1 task-2] O_YGixsZTlSG0ktM51gvqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.305 [XNIO-1 task-2] O_YGixsZTlSG0ktM51gvqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = yPhS90cxTtKlOUm_HzBXMA redirectUri = http://localhost:8080/authorization +16:29:44.306 [XNIO-1 task-1] HXNwHcOZR2a55-srHHJs8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.312 [XNIO-1 task-1] re9oFnKqQQyrMWczd0NMLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.312 [XNIO-1 task-1] re9oFnKqQQyrMWczd0NMLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.312 [XNIO-1 task-1] re9oFnKqQQyrMWczd0NMLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.313 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:44.313 [XNIO-1 task-1] re9oFnKqQQyrMWczd0NMLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", authorization) +16:29:44.314 [XNIO-1 task-2] O_YGixsZTlSG0ktM51gvqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:44.314 [XNIO-1 task-2] O_YGixsZTlSG0ktM51gvqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.348 [XNIO-1 task-1] re9oFnKqQQyrMWczd0NMLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.361 [XNIO-1 task-1] KIs2_RfPSaqzfhzrB94QQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.361 [XNIO-1 task-1] KIs2_RfPSaqzfhzrB94QQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.361 [XNIO-1 task-1] KIs2_RfPSaqzfhzrB94QQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.362 [XNIO-1 task-1] KIs2_RfPSaqzfhzrB94QQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.365 [XNIO-1 task-2] N2BD2p9rT5WmB1tISXUo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.366 [XNIO-1 task-2] N2BD2p9rT5WmB1tISXUo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.366 [XNIO-1 task-2] N2BD2p9rT5WmB1tISXUo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.366 [XNIO-1 task-2] N2BD2p9rT5WmB1tISXUo8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = db0fc5a4-0a5f-430f-85db-e645ebaf7851 scope = null +16:29:44.368 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:883feb89-1bff-4d15-afeb-9e0b9e7ba244 +16:29:44.369 [XNIO-1 task-1] KIs2_RfPSaqzfhzrB94QQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.383 [XNIO-1 task-1] YAKNnJ1SQ6iNvt5bXCEKoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.383 [XNIO-1 task-1] YAKNnJ1SQ6iNvt5bXCEKoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.384 [XNIO-1 task-1] YAKNnJ1SQ6iNvt5bXCEKoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.384 [XNIO-1 task-2] N2BD2p9rT5WmB1tISXUo8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.384 [XNIO-1 task-1] YAKNnJ1SQ6iNvt5bXCEKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:44.391 [XNIO-1 task-1] YAKNnJ1SQ6iNvt5bXCEKoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.402 [XNIO-1 task-1] oJloswWaRs-KLYU-snl8ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.402 [XNIO-1 task-1] oJloswWaRs-KLYU-snl8ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.402 [XNIO-1 task-1] oJloswWaRs-KLYU-snl8ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.403 [XNIO-1 task-1] oJloswWaRs-KLYU-snl8ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:44.406 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:44.407 [XNIO-1 task-2] wlQeDFXmQRyc4a5ezUulMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.408 [XNIO-1 task-2] wlQeDFXmQRyc4a5ezUulMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.408 [XNIO-1 task-2] wlQeDFXmQRyc4a5ezUulMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.409 [XNIO-1 task-2] wlQeDFXmQRyc4a5ezUulMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 796e333e-5e64-4603-812a-e603a075f351 scope = null +16:29:44.412 [XNIO-1 task-1] oJloswWaRs-KLYU-snl8ew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.420 [XNIO-1 task-1] 2SD-xTZPR32bkGmOKHW04Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.420 [XNIO-1 task-1] 2SD-xTZPR32bkGmOKHW04Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.421 [XNIO-1 task-1] 2SD-xTZPR32bkGmOKHW04Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.421 [XNIO-1 task-1] 2SD-xTZPR32bkGmOKHW04Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.423 [XNIO-1 task-2] wlQeDFXmQRyc4a5ezUulMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.428 [XNIO-1 task-1] 2SD-xTZPR32bkGmOKHW04Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.434 [XNIO-1 task-1] 3uL9hLwgQjyQsttvPYzm1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.434 [XNIO-1 task-1] 3uL9hLwgQjyQsttvPYzm1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.437 [XNIO-1 task-1] 3uL9hLwgQjyQsttvPYzm1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.439 [XNIO-1 task-1] 3uL9hLwgQjyQsttvPYzm1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:44.442 [XNIO-1 task-2] UiLUZbE0QeqrhZkPAdKGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.442 [XNIO-1 task-2] UiLUZbE0QeqrhZkPAdKGZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.445 [XNIO-1 task-2] UiLUZbE0QeqrhZkPAdKGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.445 [XNIO-1 task-2] UiLUZbE0QeqrhZkPAdKGZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:44.447 [XNIO-1 task-1] 3uL9hLwgQjyQsttvPYzm1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.448 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:678d5188 +16:29:44.450 [XNIO-1 task-4] sV6SMye-Q_ugA5Ol43FRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.451 [XNIO-1 task-4] sV6SMye-Q_ugA5Ol43FRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.451 [XNIO-1 task-4] sV6SMye-Q_ugA5Ol43FRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.451 [XNIO-1 task-4] sV6SMye-Q_ugA5Ol43FRKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CwV8ZS6wRV2ldoyjh6jOLw redirectUri = http://localhost:8080/authorization +16:29:44.452 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:678d5188 +16:29:44.459 [XNIO-1 task-1] ELx-Gg2WTl2kfyoSbz3A9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.460 [XNIO-1 task-1] ELx-Gg2WTl2kfyoSbz3A9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.460 [XNIO-1 task-2] UiLUZbE0QeqrhZkPAdKGZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.460 [XNIO-1 task-1] ELx-Gg2WTl2kfyoSbz3A9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.461 [XNIO-1 task-1] ELx-Gg2WTl2kfyoSbz3A9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.466 [XNIO-1 task-4] sV6SMye-Q_ugA5Ol43FRKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.468 [XNIO-1 task-1] ELx-Gg2WTl2kfyoSbz3A9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.476 [XNIO-1 task-2] kEYtJCefRqOeedAoGHKJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.476 [XNIO-1 task-2] kEYtJCefRqOeedAoGHKJJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.477 [XNIO-1 task-2] kEYtJCefRqOeedAoGHKJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.477 [XNIO-1 task-2] kEYtJCefRqOeedAoGHKJJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", authorization) +16:29:44.480 [XNIO-1 task-4] OZeRCjgGRs2XT5mreXsmXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.480 [XNIO-1 task-4] OZeRCjgGRs2XT5mreXsmXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.480 [XNIO-1 task-4] OZeRCjgGRs2XT5mreXsmXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.481 [XNIO-1 task-4] OZeRCjgGRs2XT5mreXsmXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:44.495 [XNIO-1 task-4] OZeRCjgGRs2XT5mreXsmXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.498 [XNIO-1 task-2] kEYtJCefRqOeedAoGHKJJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.509 [XNIO-1 task-4] jB7H1m_0TGqFat__JrJFBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.509 [XNIO-1 task-4] jB7H1m_0TGqFat__JrJFBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.509 [XNIO-1 task-4] jB7H1m_0TGqFat__JrJFBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.511 [XNIO-1 task-4] jB7H1m_0TGqFat__JrJFBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", authorization) +16:29:44.513 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:aae8a5de +16:29:44.520 [XNIO-1 task-4] jB7H1m_0TGqFat__JrJFBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.539 [XNIO-1 task-4] vR-7NhR_RImVQwY1edTaNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.539 [XNIO-1 task-4] vR-7NhR_RImVQwY1edTaNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.539 [XNIO-1 task-4] vR-7NhR_RImVQwY1edTaNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.540 [XNIO-1 task-4] vR-7NhR_RImVQwY1edTaNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 7vfzBso3TC-rQdhdL5M36A redirectUri = http://localhost:8080/authorization +16:29:44.546 [XNIO-1 task-1] 6YPVhaYZT8ChDPy6Yk3whA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.546 [XNIO-1 task-2] CJaVaDRESlCPyBn8xyoAqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.546 [XNIO-1 task-4] vR-7NhR_RImVQwY1edTaNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:44.546 [XNIO-1 task-2] CJaVaDRESlCPyBn8xyoAqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.546 [XNIO-1 task-2] CJaVaDRESlCPyBn8xyoAqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.546 [XNIO-1 task-1] 6YPVhaYZT8ChDPy6Yk3whA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.546 [XNIO-1 task-4] vR-7NhR_RImVQwY1edTaNA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:44.547 [XNIO-1 task-1] 6YPVhaYZT8ChDPy6Yk3whA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:44.547 [XNIO-1 task-1] 6YPVhaYZT8ChDPy6Yk3whA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.556 [XNIO-1 task-1] 6YPVhaYZT8ChDPy6Yk3whA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.563 [XNIO-1 task-2] CJaVaDRESlCPyBn8xyoAqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.566 [XNIO-1 task-1] TexXsjTMSnuj38gLrT_xeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.566 [XNIO-1 task-1] TexXsjTMSnuj38gLrT_xeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.567 [XNIO-1 task-1] TexXsjTMSnuj38gLrT_xeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.567 [XNIO-1 task-1] TexXsjTMSnuj38gLrT_xeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", authorization) +16:29:44.574 [XNIO-1 task-1] TexXsjTMSnuj38gLrT_xeA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.587 [XNIO-1 task-2] jRvnAvdfSTG9SW0vRhNjZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.591 [XNIO-1 task-1] VT2atxkkS5yZfVRRNgPvFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.591 [XNIO-1 task-1] VT2atxkkS5yZfVRRNgPvFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.591 [XNIO-1 task-1] VT2atxkkS5yZfVRRNgPvFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.592 [XNIO-1 task-2] jRvnAvdfSTG9SW0vRhNjZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.592 [XNIO-1 task-2] jRvnAvdfSTG9SW0vRhNjZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.592 [XNIO-1 task-2] jRvnAvdfSTG9SW0vRhNjZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:44.592 [XNIO-1 task-2] jRvnAvdfSTG9SW0vRhNjZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.593 [XNIO-1 task-4] hrs58HDgSDqGVJ00KQqZDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.593 [XNIO-1 task-4] hrs58HDgSDqGVJ00KQqZDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.593 [XNIO-1 task-4] hrs58HDgSDqGVJ00KQqZDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.594 [XNIO-1 task-4] hrs58HDgSDqGVJ00KQqZDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", authorization) +16:29:44.598 [XNIO-1 task-2] jRvnAvdfSTG9SW0vRhNjZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.601 [XNIO-1 task-4] hrs58HDgSDqGVJ00KQqZDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:44.601 [XNIO-1 task-4] hrs58HDgSDqGVJ00KQqZDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.603 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7652134e-1888-4111-9efc-ad17c779a7f3 +16:29:44.603 [XNIO-1 task-1] VT2atxkkS5yZfVRRNgPvFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.603 [XNIO-1 task-2] wAA69HwDRKuiWzUqtwuOnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.604 [XNIO-1 task-2] wAA69HwDRKuiWzUqtwuOnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.605 [XNIO-1 task-2] wAA69HwDRKuiWzUqtwuOnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.605 [XNIO-1 task-2] wAA69HwDRKuiWzUqtwuOnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.610 [XNIO-1 task-2] wAA69HwDRKuiWzUqtwuOnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.622 [XNIO-1 task-1] 0p2GwX8sTXuyzjvTLTXNdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.622 [XNIO-1 task-1] 0p2GwX8sTXuyzjvTLTXNdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.622 [XNIO-1 task-1] 0p2GwX8sTXuyzjvTLTXNdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.622 [XNIO-1 task-1] 0p2GwX8sTXuyzjvTLTXNdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.628 [XNIO-1 task-1] 0p2GwX8sTXuyzjvTLTXNdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.636 [XNIO-1 task-1] zbVaL12MSYaUT52dIQjHQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.636 [XNIO-1 task-1] zbVaL12MSYaUT52dIQjHQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.636 [XNIO-1 task-1] zbVaL12MSYaUT52dIQjHQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.637 [XNIO-1 task-1] zbVaL12MSYaUT52dIQjHQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.643 [XNIO-1 task-1] zbVaL12MSYaUT52dIQjHQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.650 [XNIO-1 task-1] r96NMOnRQT6B3lPxovOBkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.650 [XNIO-1 task-1] r96NMOnRQT6B3lPxovOBkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.651 [XNIO-1 task-1] r96NMOnRQT6B3lPxovOBkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.651 [XNIO-1 task-1] r96NMOnRQT6B3lPxovOBkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.657 [XNIO-1 task-2] PsS9vJPKSUCJUVyHFa6oKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.658 [XNIO-1 task-2] PsS9vJPKSUCJUVyHFa6oKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.658 [XNIO-1 task-2] PsS9vJPKSUCJUVyHFa6oKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.658 [XNIO-1 task-2] PsS9vJPKSUCJUVyHFa6oKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.658 [XNIO-1 task-2] PsS9vJPKSUCJUVyHFa6oKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = COgZ2oluS4qruBFAgphQdw redirectUri = http://localhost:8080/authorization +16:29:44.662 [XNIO-1 task-1] wiPic5RkQZitIBKHpVbQsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.662 [XNIO-1 task-1] wiPic5RkQZitIBKHpVbQsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.663 [XNIO-1 task-1] wiPic5RkQZitIBKHpVbQsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.663 [XNIO-1 task-1] wiPic5RkQZitIBKHpVbQsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.668 [XNIO-1 task-2] PsS9vJPKSUCJUVyHFa6oKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.675 [XNIO-1 task-1] wiPic5RkQZitIBKHpVbQsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.684 [XNIO-1 task-2] U1EraFtVT22p1UwyaS7Mhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.684 [XNIO-1 task-2] U1EraFtVT22p1UwyaS7Mhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.684 [XNIO-1 task-2] U1EraFtVT22p1UwyaS7Mhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.685 [XNIO-1 task-2] U1EraFtVT22p1UwyaS7Mhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", "Basic YzMzNzhkZGEtMjI0Yi00MmM4LWJhYmMtNTQyNWRiNTUxOWMxOlpTc1hWVm5tUmxtUktMcERvcG83elE=", authorization) +16:29:44.687 [XNIO-1 task-1] -2-w0mc7SuCapuBsqAY3NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.687 [XNIO-1 task-1] -2-w0mc7SuCapuBsqAY3NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.687 [XNIO-1 task-1] -2-w0mc7SuCapuBsqAY3NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.687 [XNIO-1 task-1] -2-w0mc7SuCapuBsqAY3NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2FmYjE1YTktNmUwNC00NDYyLThlMzktMjJkNjM2MGI4MzRjOjVCZWJ3RFZZU1Fhc0dRWDBMTlI5cEE=", "Basic M2FmYjE1YTktNmUwNC00NDYyLThlMzktMjJkNjM2MGI4MzRjOjVCZWJ3RFZZU1Fhc0dRWDBMTlI5cEE=", authorization) +16:29:44.695 [XNIO-1 task-2] U1EraFtVT22p1UwyaS7Mhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.706 [XNIO-1 task-2] 66QF-Ye_QEK6hkXVTI6fyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.709 [XNIO-1 task-2] 66QF-Ye_QEK6hkXVTI6fyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.709 [XNIO-1 task-2] 66QF-Ye_QEK6hkXVTI6fyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.709 [XNIO-1 task-1] -2-w0mc7SuCapuBsqAY3NQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.709 [XNIO-1 task-2] 66QF-Ye_QEK6hkXVTI6fyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.710 [XNIO-1 task-2] 66QF-Ye_QEK6hkXVTI6fyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.715 [XNIO-1 task-2] 66QF-Ye_QEK6hkXVTI6fyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.718 [XNIO-1 task-4] 049bVgRfQUuLpZLiJi7WkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.718 [XNIO-1 task-4] 049bVgRfQUuLpZLiJi7WkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.719 [XNIO-1 task-4] 049bVgRfQUuLpZLiJi7WkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.720 [XNIO-1 task-4] 049bVgRfQUuLpZLiJi7WkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Cww5o9qhTFexsI-E4jzibA redirectUri = http://localhost:8080/authorization +16:29:44.724 [XNIO-1 task-1] DvEN6tPEQZKCtJyMCp9XQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.724 [XNIO-1 task-1] DvEN6tPEQZKCtJyMCp9XQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.725 [XNIO-1 task-1] DvEN6tPEQZKCtJyMCp9XQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.725 [XNIO-1 task-1] DvEN6tPEQZKCtJyMCp9XQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.732 [XNIO-1 task-1] DvEN6tPEQZKCtJyMCp9XQg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.733 [XNIO-1 task-4] 049bVgRfQUuLpZLiJi7WkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.740 [XNIO-1 task-1] 5-Zi2MvBQ7CuSX7xRHKyAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.740 [XNIO-1 task-1] 5-Zi2MvBQ7CuSX7xRHKyAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.740 [XNIO-1 task-1] 5-Zi2MvBQ7CuSX7xRHKyAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.741 [XNIO-1 task-1] 5-Zi2MvBQ7CuSX7xRHKyAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", authorization) +16:29:44.746 [XNIO-1 task-1] 5-Zi2MvBQ7CuSX7xRHKyAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.754 [XNIO-1 task-1] FoHSogujReG9W93b3e-Vrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.754 [XNIO-1 task-1] FoHSogujReG9W93b3e-Vrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.754 [XNIO-1 task-1] FoHSogujReG9W93b3e-Vrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.755 [XNIO-1 task-1] FoHSogujReG9W93b3e-Vrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", authorization) +16:29:44.761 [XNIO-1 task-1] FoHSogujReG9W93b3e-Vrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.768 [XNIO-1 task-1] 5GHZVzcMQ2SKIASXq7FwzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.769 [XNIO-1 task-1] 5GHZVzcMQ2SKIASXq7FwzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.769 [XNIO-1 task-4] hTXlc9JARc2eP9_SVFREaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.769 [XNIO-1 task-4] hTXlc9JARc2eP9_SVFREaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.769 [XNIO-1 task-1] 5GHZVzcMQ2SKIASXq7FwzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.769 [XNIO-1 task-4] hTXlc9JARc2eP9_SVFREaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.770 [XNIO-1 task-1] 5GHZVzcMQ2SKIASXq7FwzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", authorization) +16:29:44.770 [XNIO-1 task-4] hTXlc9JARc2eP9_SVFREaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2FmYjE1YTktNmUwNC00NDYyLThlMzktMjJkNjM2MGI4MzRjOjVCZWJ3RFZZU1Fhc0dRWDBMTlI5cEE=", "Basic M2FmYjE1YTktNmUwNC00NDYyLThlMzktMjJkNjM2MGI4MzRjOjVCZWJ3RFZZU1Fhc0dRWDBMTlI5cEE=", authorization) +16:29:44.777 [XNIO-1 task-1] 5GHZVzcMQ2SKIASXq7FwzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.781 [XNIO-1 task-4] hTXlc9JARc2eP9_SVFREaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:44.782 [XNIO-1 task-4] hTXlc9JARc2eP9_SVFREaA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.788 [XNIO-1 task-1] w2nVjn1ASU6VtK0fzxpRRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.788 [XNIO-1 task-1] w2nVjn1ASU6VtK0fzxpRRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.788 [XNIO-1 task-1] w2nVjn1ASU6VtK0fzxpRRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.789 [XNIO-1 task-1] w2nVjn1ASU6VtK0fzxpRRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.794 [XNIO-1 task-1] w2nVjn1ASU6VtK0fzxpRRg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.797 [XNIO-1 task-1] sUCG_QFYQuCAnzvjMUQpAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.797 [XNIO-1 task-1] sUCG_QFYQuCAnzvjMUQpAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.797 [XNIO-1 task-1] sUCG_QFYQuCAnzvjMUQpAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.798 [XNIO-1 task-1] sUCG_QFYQuCAnzvjMUQpAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fa479345-26b6-441b-b81f-d3ba21e14d1f scope = null +16:29:44.800 [XNIO-1 task-4] TWdMEQTZRKyy_ShsNZjBJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.801 [XNIO-1 task-4] TWdMEQTZRKyy_ShsNZjBJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.801 [XNIO-1 task-4] TWdMEQTZRKyy_ShsNZjBJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.801 [XNIO-1 task-4] TWdMEQTZRKyy_ShsNZjBJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.813 [XNIO-1 task-4] TWdMEQTZRKyy_ShsNZjBJw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.818 [XNIO-1 task-1] sUCG_QFYQuCAnzvjMUQpAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.818 [XNIO-1 task-4] k71BOMEfTOKjm4-S09Y3yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.818 [XNIO-1 task-4] k71BOMEfTOKjm4-S09Y3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.819 [XNIO-1 task-4] k71BOMEfTOKjm4-S09Y3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.819 [XNIO-1 task-4] k71BOMEfTOKjm4-S09Y3yA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c scope = null +16:29:44.824 [XNIO-1 task-2] Iz3h2pRPRiuX9tSqHbqNKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.824 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:44.825 [XNIO-1 task-2] Iz3h2pRPRiuX9tSqHbqNKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.825 [XNIO-1 task-2] Iz3h2pRPRiuX9tSqHbqNKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", authorization) +16:29:44.830 [XNIO-1 task-2] Iz3h2pRPRiuX9tSqHbqNKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.832 [XNIO-1 task-4] k71BOMEfTOKjm4-S09Y3yA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:44.838 [XNIO-1 task-4] LQ8xzOVHSf-ITvnhKAHYXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.838 [XNIO-1 task-4] LQ8xzOVHSf-ITvnhKAHYXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.839 [XNIO-1 task-4] LQ8xzOVHSf-ITvnhKAHYXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.839 [XNIO-1 task-4] LQ8xzOVHSf-ITvnhKAHYXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.839 [XNIO-1 task-1] 0PoLYx9dTsSlHC-1h-0yvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.839 [XNIO-1 task-1] 0PoLYx9dTsSlHC-1h-0yvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.840 [XNIO-1 task-1] 0PoLYx9dTsSlHC-1h-0yvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.840 [XNIO-1 task-1] 0PoLYx9dTsSlHC-1h-0yvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1o-H2X7lR1iJDhX-rO8i2g redirectUri = http://localhost:8080/authorization +16:29:44.849 [XNIO-1 task-1] 0PoLYx9dTsSlHC-1h-0yvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.856 [XNIO-1 task-4] LQ8xzOVHSf-ITvnhKAHYXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.863 [XNIO-1 task-1] n9whtggWQUWwAqSbG1OVwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.863 [XNIO-1 task-1] n9whtggWQUWwAqSbG1OVwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.863 [XNIO-1 task-1] n9whtggWQUWwAqSbG1OVwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.865 [XNIO-1 task-1] n9whtggWQUWwAqSbG1OVwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", "Basic OTE3ZmJjNzQtOGIzMi00OTVhLTk5YmItNmQ3NGVlNGU3ZjcwOi1yNnZBODZUUXN1b0lxU0pjZ1NBYXc=", authorization) +16:29:44.871 [XNIO-1 task-1] n9whtggWQUWwAqSbG1OVwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.906 [XNIO-1 task-4] 22fsS4S6Qz2OkP6AZ19jtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:44.907 [XNIO-1 task-4] 22fsS4S6Qz2OkP6AZ19jtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.907 [XNIO-1 task-4] 22fsS4S6Qz2OkP6AZ19jtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.907 [XNIO-1 task-4] 22fsS4S6Qz2OkP6AZ19jtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.907 [XNIO-1 task-2] -ps5GsCjTKOd_vXNDWw-dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.908 [XNIO-1 task-2] -ps5GsCjTKOd_vXNDWw-dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:44.908 [XNIO-1 task-4] 22fsS4S6Qz2OkP6AZ19jtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tU7EMjTpRqKTO_Xc8ysJlg redirectUri = http://localhost:8080/authorization +16:29:44.908 [XNIO-1 task-2] -ps5GsCjTKOd_vXNDWw-dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.908 [XNIO-1 task-2] -ps5GsCjTKOd_vXNDWw-dQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.910 [XNIO-1 task-1] Y72w1lsETgeXc7-15ORC_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.910 [XNIO-1 task-1] Y72w1lsETgeXc7-15ORC_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.910 [XNIO-1 task-1] Y72w1lsETgeXc7-15ORC_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.911 [XNIO-1 task-1] Y72w1lsETgeXc7-15ORC_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = akcQiSKZRPCbAEUSRoL4uw redirectUri = http://localhost:8080/authorization +16:29:44.940 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:630a0f2d-bc1b-4197-b8f2-8edd1fa3f521 +16:29:44.944 [XNIO-1 task-2] -ps5GsCjTKOd_vXNDWw-dQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.949 [XNIO-1 task-2] OOjPP7cRRo-n48XiEbqgCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.949 [XNIO-1 task-2] OOjPP7cRRo-n48XiEbqgCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.950 [XNIO-1 task-4] 22fsS4S6Qz2OkP6AZ19jtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:44.950 [XNIO-1 task-1] Y72w1lsETgeXc7-15ORC_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:44.950 [XNIO-1 task-1] Y72w1lsETgeXc7-15ORC_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.950 [XNIO-1 task-2] OOjPP7cRRo-n48XiEbqgCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.951 [XNIO-1 task-2] OOjPP7cRRo-n48XiEbqgCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.956 [XNIO-1 task-2] OOjPP7cRRo-n48XiEbqgCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.972 [XNIO-1 task-1] _4ZB3HuaTeih07xFbVQFJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.972 [XNIO-1 task-1] _4ZB3HuaTeih07xFbVQFJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.972 [XNIO-1 task-1] _4ZB3HuaTeih07xFbVQFJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.973 [XNIO-1 task-1] _4ZB3HuaTeih07xFbVQFJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.979 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:678d5188 +16:29:44.979 [XNIO-1 task-1] _4ZB3HuaTeih07xFbVQFJA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.985 [XNIO-1 task-1] HfZjK8OESseiTPpeI073dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.985 [XNIO-1 task-1] HfZjK8OESseiTPpeI073dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.986 [XNIO-1 task-1] HfZjK8OESseiTPpeI073dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.986 [XNIO-1 task-1] HfZjK8OESseiTPpeI073dQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:44.994 [XNIO-1 task-1] HfZjK8OESseiTPpeI073dQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:44.998 [XNIO-1 task-2] uIPy9PzrSUKXCkrDEHs81w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:44.998 [XNIO-1 task-2] uIPy9PzrSUKXCkrDEHs81w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.000 [XNIO-1 task-2] uIPy9PzrSUKXCkrDEHs81w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.000 [XNIO-1 task-2] uIPy9PzrSUKXCkrDEHs81w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VjpMCOE-T86PPhfd9RcUnQ redirectUri = http://localhost:8080/authorization +16:29:45.001 [XNIO-1 task-4] NFDCBtT7S3CzfM3tMvsc3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.001 [XNIO-1 task-4] NFDCBtT7S3CzfM3tMvsc3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.001 [XNIO-1 task-4] NFDCBtT7S3CzfM3tMvsc3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.002 [XNIO-1 task-4] NFDCBtT7S3CzfM3tMvsc3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.005 [XNIO-1 task-1] EjBPi22UTT65mBW_HkqJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.005 [XNIO-1 task-1] EjBPi22UTT65mBW_HkqJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.006 [XNIO-1 task-1] EjBPi22UTT65mBW_HkqJzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.006 [XNIO-1 task-1] EjBPi22UTT65mBW_HkqJzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OPfavkK8QaadUkwQ6laCYw redirectUri = http://localhost:8080/authorization +16:29:45.011 [XNIO-1 task-2] uIPy9PzrSUKXCkrDEHs81w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.013 [XNIO-1 task-4] NFDCBtT7S3CzfM3tMvsc3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.013 [XNIO-1 task-1] EjBPi22UTT65mBW_HkqJzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.013 [XNIO-1 task-1] EjBPi22UTT65mBW_HkqJzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.018 [XNIO-1 task-4] dlFs0VzeTzKyJnOGwvx19Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.018 [XNIO-1 task-4] dlFs0VzeTzKyJnOGwvx19Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.019 [XNIO-1 task-4] dlFs0VzeTzKyJnOGwvx19Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.023 [XNIO-1 task-4] dlFs0VzeTzKyJnOGwvx19Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.034 [XNIO-1 task-4] dlFs0VzeTzKyJnOGwvx19Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.051 [XNIO-1 task-2] yjpbxmufTG-NKhyT1dVaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.051 [XNIO-1 task-2] yjpbxmufTG-NKhyT1dVaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.051 [XNIO-1 task-2] yjpbxmufTG-NKhyT1dVaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.052 [XNIO-1 task-2] yjpbxmufTG-NKhyT1dVaRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.057 [XNIO-1 task-2] yjpbxmufTG-NKhyT1dVaRg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.066 [XNIO-1 task-2] vspE_IVTSx-GCtN5rBKYlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.066 [XNIO-1 task-2] vspE_IVTSx-GCtN5rBKYlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.067 [XNIO-1 task-2] vspE_IVTSx-GCtN5rBKYlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.067 [XNIO-1 task-2] vspE_IVTSx-GCtN5rBKYlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.074 [XNIO-1 task-2] vspE_IVTSx-GCtN5rBKYlQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.084 [XNIO-1 task-2] ee1wDTwxSRiO2wUGLpEtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.084 [XNIO-1 task-2] ee1wDTwxSRiO2wUGLpEtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.085 [XNIO-1 task-2] ee1wDTwxSRiO2wUGLpEtnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.085 [XNIO-1 task-2] ee1wDTwxSRiO2wUGLpEtnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.092 [XNIO-1 task-2] ee1wDTwxSRiO2wUGLpEtnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.099 [XNIO-1 task-2] xXS-b11FTSm_qTv8KiWXhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.099 [XNIO-1 task-2] xXS-b11FTSm_qTv8KiWXhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.099 [XNIO-1 task-2] xXS-b11FTSm_qTv8KiWXhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.099 [XNIO-1 task-2] xXS-b11FTSm_qTv8KiWXhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.109 [XNIO-1 task-2] xXS-b11FTSm_qTv8KiWXhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.117 [XNIO-1 task-2] i3XlwCpxRpC3Ztaww5C_fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:45.118 [XNIO-1 task-2] i3XlwCpxRpC3Ztaww5C_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.118 [XNIO-1 task-2] i3XlwCpxRpC3Ztaww5C_fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +16:29:45.119 [XNIO-1 task-2] i3XlwCpxRpC3Ztaww5C_fQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.124 [XNIO-1 task-2] i3XlwCpxRpC3Ztaww5C_fQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.130 [XNIO-1 task-2] zUi0ZTyoTQmN6qUEJsd7JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +16:29:45.130 [XNIO-1 task-2] zUi0ZTyoTQmN6qUEJsd7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:45.147 [XNIO-1 task-2] aosZ5asGTpeNBiGBEkG62A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.147 [XNIO-1 task-2] aosZ5asGTpeNBiGBEkG62A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.147 [XNIO-1 task-2] aosZ5asGTpeNBiGBEkG62A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.148 [XNIO-1 task-2] aosZ5asGTpeNBiGBEkG62A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", authorization) +16:29:45.153 [XNIO-1 task-2] aosZ5asGTpeNBiGBEkG62A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.160 [XNIO-1 task-2] txPijr6QRdWAeu1z6Y0VcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.161 [XNIO-1 task-2] txPijr6QRdWAeu1z6Y0VcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.161 [XNIO-1 task-2] txPijr6QRdWAeu1z6Y0VcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.161 [XNIO-1 task-2] txPijr6QRdWAeu1z6Y0VcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:45.166 [XNIO-1 task-2] txPijr6QRdWAeu1z6Y0VcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.173 [XNIO-1 task-2] _yRylSY_SqCwFHL8rD87fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.173 [XNIO-1 task-2] _yRylSY_SqCwFHL8rD87fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.173 [XNIO-1 task-2] _yRylSY_SqCwFHL8rD87fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.174 [XNIO-1 task-2] _yRylSY_SqCwFHL8rD87fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODgzZmViODktMWJmZi00ZDE1LWFmZWItOWUwYjllN2JhMjQ0OjUtdUd4c2JaU3FxRm1kM3hab3lKV2c=", "Basic ODgzZmViODktMWJmZi00ZDE1LWFmZWItOWUwYjllN2JhMjQ0OjUtdUd4c2JaU3FxRm1kM3hab3lKV2c=", authorization) +16:29:45.181 [XNIO-1 task-2] _yRylSY_SqCwFHL8rD87fA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.192 [XNIO-1 task-2] vO2LObb9Q36sSYu8Baca4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.192 [XNIO-1 task-2] vO2LObb9Q36sSYu8Baca4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.193 [XNIO-1 task-2] vO2LObb9Q36sSYu8Baca4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.193 [XNIO-1 task-2] vO2LObb9Q36sSYu8Baca4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", authorization) +16:29:45.195 [XNIO-1 task-4] x6onYkd7RSy121HZSAy2Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.195 [XNIO-1 task-4] x6onYkd7RSy121HZSAy2Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.195 [XNIO-1 task-4] x6onYkd7RSy121HZSAy2Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.195 [XNIO-1 task-4] x6onYkd7RSy121HZSAy2Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", authorization) +16:29:45.203 [XNIO-1 task-2] vO2LObb9Q36sSYu8Baca4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.205 [XNIO-1 task-4] x6onYkd7RSy121HZSAy2Ow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.205 [XNIO-1 task-4] x6onYkd7RSy121HZSAy2Ow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.211 [XNIO-1 task-2] ZOsYnvzXRoiH9dUhIZBMPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.211 [XNIO-1 task-2] ZOsYnvzXRoiH9dUhIZBMPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.213 [XNIO-1 task-2] ZOsYnvzXRoiH9dUhIZBMPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.239 [XNIO-1 task-2] ZOsYnvzXRoiH9dUhIZBMPg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.249 [XNIO-1 task-2] ZOsYnvzXRoiH9dUhIZBMPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.260 [XNIO-1 task-2] 5ZssRTvnSuSYlyWDL-85CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.260 [XNIO-1 task-2] 5ZssRTvnSuSYlyWDL-85CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.261 [XNIO-1 task-2] 5ZssRTvnSuSYlyWDL-85CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.261 [XNIO-1 task-2] 5ZssRTvnSuSYlyWDL-85CA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.270 [XNIO-1 task-2] 5ZssRTvnSuSYlyWDL-85CA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.278 [XNIO-1 task-2] 46X4ejj8SnOgDSKr8XWsZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.278 [XNIO-1 task-2] 46X4ejj8SnOgDSKr8XWsZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.278 [XNIO-1 task-2] 46X4ejj8SnOgDSKr8XWsZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.278 [XNIO-1 task-2] 46X4ejj8SnOgDSKr8XWsZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.286 [XNIO-1 task-2] 46X4ejj8SnOgDSKr8XWsZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.295 [XNIO-1 task-2] 2CmwZy9IToKHuIcguDtTUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.295 [XNIO-1 task-2] 2CmwZy9IToKHuIcguDtTUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.296 [XNIO-1 task-2] 2CmwZy9IToKHuIcguDtTUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.299 [XNIO-1 task-2] 2CmwZy9IToKHuIcguDtTUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.304 [XNIO-1 task-2] 2CmwZy9IToKHuIcguDtTUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.306 [XNIO-1 task-4] PIs5opv1RZiUZc-aWLpeBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.306 [XNIO-1 task-4] PIs5opv1RZiUZc-aWLpeBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.307 [XNIO-1 task-4] PIs5opv1RZiUZc-aWLpeBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.307 [XNIO-1 task-4] PIs5opv1RZiUZc-aWLpeBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = feoVT_4bRO-C5_J3J0I0kw redirectUri = http://localhost:8080/authorization +16:29:45.310 [XNIO-1 task-2] 9ZaqLztET0S8pn2fXNGSJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.310 [XNIO-1 task-2] 9ZaqLztET0S8pn2fXNGSJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.310 [XNIO-1 task-2] 9ZaqLztET0S8pn2fXNGSJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.311 [XNIO-1 task-2] 9ZaqLztET0S8pn2fXNGSJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.315 [XNIO-1 task-4] PIs5opv1RZiUZc-aWLpeBA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.318 [XNIO-1 task-2] 9ZaqLztET0S8pn2fXNGSJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.325 [XNIO-1 task-4] 2M-CY_RxQw2beErOBalCnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.325 [XNIO-1 task-4] 2M-CY_RxQw2beErOBalCnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.325 [XNIO-1 task-4] 2M-CY_RxQw2beErOBalCnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.325 [XNIO-1 task-4] 2M-CY_RxQw2beErOBalCnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWYyZWM2YjAtN2RlNy00MDI4LWE2MzYtZmU4MzY0YjMyN2FjOmxDbWtRYzRrU29HbEk1OXhKYlpqLVE=", "Basic OWYyZWM2YjAtN2RlNy00MDI4LWE2MzYtZmU4MzY0YjMyN2FjOmxDbWtRYzRrU29HbEk1OXhKYlpqLVE=", authorization) +16:29:45.326 [XNIO-1 task-2] jPSH8Ya2S-mi81NR7TXalQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.326 [XNIO-1 task-2] jPSH8Ya2S-mi81NR7TXalQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.326 [XNIO-1 task-2] jPSH8Ya2S-mi81NR7TXalQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.327 [XNIO-1 task-2] jPSH8Ya2S-mi81NR7TXalQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:45.331 [XNIO-1 task-4] 2M-CY_RxQw2beErOBalCnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.340 [XNIO-1 task-4] P8H5DKs5TwqNNyaIjTiNCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.345 [XNIO-1 task-4] P8H5DKs5TwqNNyaIjTiNCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.345 [XNIO-1 task-2] jPSH8Ya2S-mi81NR7TXalQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.345 [XNIO-1 task-4] P8H5DKs5TwqNNyaIjTiNCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.346 [XNIO-1 task-4] P8H5DKs5TwqNNyaIjTiNCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWYyZWM2YjAtN2RlNy00MDI4LWE2MzYtZmU4MzY0YjMyN2FjOmxDbWtRYzRrU29HbEk1OXhKYlpqLVE=", "Basic OWYyZWM2YjAtN2RlNy00MDI4LWE2MzYtZmU4MzY0YjMyN2FjOmxDbWtRYzRrU29HbEk1OXhKYlpqLVE=", authorization) +16:29:45.351 [XNIO-1 task-4] P8H5DKs5TwqNNyaIjTiNCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.358 [XNIO-1 task-4] zrAIGahxR0y-u6j9yO_xYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.358 [XNIO-1 task-4] zrAIGahxR0y-u6j9yO_xYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.359 [XNIO-1 task-4] zrAIGahxR0y-u6j9yO_xYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.359 [XNIO-1 task-4] zrAIGahxR0y-u6j9yO_xYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2Q1ZDk1ODgtN2Q5NS00MWU2LTkwZTctODFlOTc1NDU1NDNlOlVCVmp1NUh2U1lpVzRQRGlvSXJaQ0E=", "Basic M2Q1ZDk1ODgtN2Q5NS00MWU2LTkwZTctODFlOTc1NDU1NDNlOlVCVmp1NUh2U1lpVzRQRGlvSXJaQ0E=", authorization) +16:29:45.366 [XNIO-1 task-4] zrAIGahxR0y-u6j9yO_xYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.371 [XNIO-1 task-4] saA1xPAbSJewzPt7ZXcp3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.372 [XNIO-1 task-4] saA1xPAbSJewzPt7ZXcp3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.372 [XNIO-1 task-4] saA1xPAbSJewzPt7ZXcp3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.373 [XNIO-1 task-4] saA1xPAbSJewzPt7ZXcp3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2Q1ZDk1ODgtN2Q5NS00MWU2LTkwZTctODFlOTc1NDU1NDNlOlVCVmp1NUh2U1lpVzRQRGlvSXJaQ0E=", "Basic M2Q1ZDk1ODgtN2Q5NS00MWU2LTkwZTctODFlOTc1NDU1NDNlOlVCVmp1NUh2U1lpVzRQRGlvSXJaQ0E=", authorization) +16:29:45.379 [XNIO-1 task-4] saA1xPAbSJewzPt7ZXcp3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.387 [XNIO-1 task-4] YUVDkJdpQc-KrIPcAaUaKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.389 [XNIO-1 task-4] YUVDkJdpQc-KrIPcAaUaKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.389 [XNIO-1 task-4] YUVDkJdpQc-KrIPcAaUaKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.389 [XNIO-1 task-4] YUVDkJdpQc-KrIPcAaUaKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2Q1ZDk1ODgtN2Q5NS00MWU2LTkwZTctODFlOTc1NDU1NDNlOlVCVmp1NUh2U1lpVzRQRGlvSXJaQ0E=", "Basic M2Q1ZDk1ODgtN2Q5NS00MWU2LTkwZTctODFlOTc1NDU1NDNlOlVCVmp1NUh2U1lpVzRQRGlvSXJaQ0E=", authorization) +16:29:45.396 [XNIO-1 task-4] YUVDkJdpQc-KrIPcAaUaKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.408 [XNIO-1 task-4] JEDszIbST6eb16fLzxAoVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.409 [XNIO-1 task-4] JEDszIbST6eb16fLzxAoVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.410 [XNIO-1 task-4] JEDszIbST6eb16fLzxAoVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.410 [XNIO-1 task-4] JEDszIbST6eb16fLzxAoVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:45.416 [XNIO-1 task-2] FJsYRyQ_QCiKgtk0Fhcr9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.416 [XNIO-1 task-2] FJsYRyQ_QCiKgtk0Fhcr9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.416 [XNIO-1 task-4] JEDszIbST6eb16fLzxAoVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.416 [XNIO-1 task-4] JEDszIbST6eb16fLzxAoVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.417 [XNIO-1 task-2] FJsYRyQ_QCiKgtk0Fhcr9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzc4NTRhNWQtMDBlMi00MTNkLTkyYTctYjY4MmUzYzY5YWZmOm5PNDNsZ1R0UW9hZW1aRTM1MTlJRHc=", "Basic Mzc4NTRhNWQtMDBlMi00MTNkLTkyYTctYjY4MmUzYzY5YWZmOm5PNDNsZ1R0UW9hZW1aRTM1MTlJRHc=", authorization) +16:29:45.425 [XNIO-1 task-2] FJsYRyQ_QCiKgtk0Fhcr9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.427 [XNIO-1 task-4] TMuCEiZCQ9CJvH2fdRPB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.427 [XNIO-1 task-4] TMuCEiZCQ9CJvH2fdRPB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.428 [XNIO-1 task-4] TMuCEiZCQ9CJvH2fdRPB-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.428 [XNIO-1 task-2] FJsYRyQ_QCiKgtk0Fhcr9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.429 [XNIO-1 task-4] TMuCEiZCQ9CJvH2fdRPB-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.438 [XNIO-1 task-4] TMuCEiZCQ9CJvH2fdRPB-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.446 [XNIO-1 task-4] l4X10CvOTe-EFRrI20nrPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.446 [XNIO-1 task-4] l4X10CvOTe-EFRrI20nrPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.447 [XNIO-1 task-4] l4X10CvOTe-EFRrI20nrPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.447 [XNIO-1 task-4] l4X10CvOTe-EFRrI20nrPw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.455 [XNIO-1 task-4] l4X10CvOTe-EFRrI20nrPw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.466 [XNIO-1 task-4] kSo_lcE3SOm7OlKu3n64lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.466 [XNIO-1 task-4] kSo_lcE3SOm7OlKu3n64lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.468 [XNIO-1 task-4] kSo_lcE3SOm7OlKu3n64lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.468 [XNIO-1 task-4] kSo_lcE3SOm7OlKu3n64lg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.480 [XNIO-1 task-4] kSo_lcE3SOm7OlKu3n64lg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.490 [XNIO-1 task-4] peab9camTjSmC9tyzByokw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.490 [XNIO-1 task-2] O3XjbhCTQl-fE1dDWkSHjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.490 [XNIO-1 task-2] O3XjbhCTQl-fE1dDWkSHjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.490 [XNIO-1 task-2] O3XjbhCTQl-fE1dDWkSHjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.491 [XNIO-1 task-4] peab9camTjSmC9tyzByokw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.491 [XNIO-1 task-2] O3XjbhCTQl-fE1dDWkSHjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.491 [XNIO-1 task-4] peab9camTjSmC9tyzByokw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjgwYmM0Y2YtMDY5ZS00NTMzLTk2MjgtZWM2Y2ZmN2YwYTYyOmxrbjlHN1FOVEd5UjdmZ252NTE3VkE=", "Basic YjgwYmM0Y2YtMDY5ZS00NTMzLTk2MjgtZWM2Y2ZmN2YwYTYyOmxrbjlHN1FOVEd5UjdmZ252NTE3VkE=", authorization) +16:29:45.491 [XNIO-1 task-4] peab9camTjSmC9tyzByokw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.497 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0505771-06f5-4b6f-8e68-a5def85e196c +16:29:45.499 [XNIO-1 task-2] O3XjbhCTQl-fE1dDWkSHjA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.505 [XNIO-1 task-2] pw2lmfy-TVqWS9i47_tKdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.505 [XNIO-1 task-2] pw2lmfy-TVqWS9i47_tKdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.505 [XNIO-1 task-4] 8bGIHBJoTcapbvYKGcZ_Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.506 [XNIO-1 task-4] 8bGIHBJoTcapbvYKGcZ_Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.506 [XNIO-1 task-2] pw2lmfy-TVqWS9i47_tKdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.506 [XNIO-1 task-4] 8bGIHBJoTcapbvYKGcZ_Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.506 [XNIO-1 task-2] pw2lmfy-TVqWS9i47_tKdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c0505771-06f5-4b6f-8e68-a5def85e196c scope = null +16:29:45.507 [XNIO-1 task-4] 8bGIHBJoTcapbvYKGcZ_Sw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.511 [XNIO-1 task-1] wMpQUUBeRCGOTkdalreRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.512 [XNIO-1 task-1] wMpQUUBeRCGOTkdalreRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.512 [XNIO-1 task-1] wMpQUUBeRCGOTkdalreRtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.512 [XNIO-1 task-1] wMpQUUBeRCGOTkdalreRtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -Uopgj33TH6Bgc28-QOl0g redirectUri = http://localhost:8080/authorization +16:29:45.514 [XNIO-1 task-4] 8bGIHBJoTcapbvYKGcZ_Sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.516 [XNIO-1 task-2] pw2lmfy-TVqWS9i47_tKdg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:45.521 [XNIO-1 task-1] wMpQUUBeRCGOTkdalreRtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.522 [XNIO-1 task-2] xIfudQLfSI2TMd0920jeNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.522 [XNIO-1 task-2] xIfudQLfSI2TMd0920jeNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.522 [XNIO-1 task-4] K9iKtWSoS5WVdKrsXoFhwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.522 [XNIO-1 task-4] K9iKtWSoS5WVdKrsXoFhwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.522 [XNIO-1 task-2] xIfudQLfSI2TMd0920jeNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.522 [XNIO-1 task-2] xIfudQLfSI2TMd0920jeNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.523 [XNIO-1 task-2] xIfudQLfSI2TMd0920jeNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.524 [XNIO-1 task-2] xIfudQLfSI2TMd0920jeNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:45.528 [XNIO-1 task-4] K9iKtWSoS5WVdKrsXoFhwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.540 [XNIO-1 task-4] K9iKtWSoS5WVdKrsXoFhwg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c0505771-06f5-4b6f-8e68-a5def85e196c is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:45.554 [XNIO-1 task-1] Jmg5SmTyTAChQXx76Zj0NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.555 [XNIO-1 task-1] Jmg5SmTyTAChQXx76Zj0NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.555 [XNIO-1 task-1] Jmg5SmTyTAChQXx76Zj0NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.555 [XNIO-1 task-1] Jmg5SmTyTAChQXx76Zj0NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjMyMDFlM2MtY2UyNi00YTU3LTg5ZWUtN2ZkMTM2ZDkwMmJkOm1BRl9WQVE1VHhDcUtoc29hb3FrWXc=", "Basic ZjMyMDFlM2MtY2UyNi00YTU3LTg5ZWUtN2ZkMTM2ZDkwMmJkOm1BRl9WQVE1VHhDcUtoc29hb3FrWXc=", authorization) +16:29:45.557 [XNIO-1 task-2] MSwOt-acSx6OGGUxlEQ9Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.557 [XNIO-1 task-2] MSwOt-acSx6OGGUxlEQ9Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.557 [XNIO-1 task-2] MSwOt-acSx6OGGUxlEQ9Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.557 [XNIO-1 task-2] MSwOt-acSx6OGGUxlEQ9Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTFlMmU0MDEtZmZjNS00NWJhLTgzZTYtNjQ5YmNjZjJmMTQ4OkFhQ3ZBaFBhUVhpOF81R3VvNkw0anc=", "Basic MTFlMmU0MDEtZmZjNS00NWJhLTgzZTYtNjQ5YmNjZjJmMTQ4OkFhQ3ZBaFBhUVhpOF81R3VvNkw0anc=", authorization) +16:29:45.562 [XNIO-1 task-1] Jmg5SmTyTAChQXx76Zj0NQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.570 [XNIO-1 task-2] MSwOt-acSx6OGGUxlEQ9Sw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.577 [XNIO-1 task-1] cqRM8cwMTTam-flUHu7CbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.577 [XNIO-1 task-1] cqRM8cwMTTam-flUHu7CbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.577 [XNIO-1 task-1] cqRM8cwMTTam-flUHu7CbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.577 [XNIO-1 task-1] cqRM8cwMTTam-flUHu7CbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjMyMDFlM2MtY2UyNi00YTU3LTg5ZWUtN2ZkMTM2ZDkwMmJkOm1BRl9WQVE1VHhDcUtoc29hb3FrWXc=", "Basic ZjMyMDFlM2MtY2UyNi00YTU3LTg5ZWUtN2ZkMTM2ZDkwMmJkOm1BRl9WQVE1VHhDcUtoc29hb3FrWXc=", authorization) +16:29:45.580 [XNIO-1 task-4] zwSpG6YPTi-SagNu4kfnhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.581 [XNIO-1 task-4] zwSpG6YPTi-SagNu4kfnhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.581 [XNIO-1 task-4] zwSpG6YPTi-SagNu4kfnhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.581 [XNIO-1 task-4] zwSpG6YPTi-SagNu4kfnhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODgzZmViODktMWJmZi00ZDE1LWFmZWItOWUwYjllN2JhMjQ0OjUtdUd4c2JaU3FxRm1kM3hab3lKV2c=", "Basic ODgzZmViODktMWJmZi00ZDE1LWFmZWItOWUwYjllN2JhMjQ0OjUtdUd4c2JaU3FxRm1kM3hab3lKV2c=", authorization) +16:29:45.583 [XNIO-1 task-1] cqRM8cwMTTam-flUHu7CbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.591 [XNIO-1 task-1] JSMBoTgnTR-h7ynGNfhpiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.591 [XNIO-1 task-1] JSMBoTgnTR-h7ynGNfhpiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.592 [XNIO-1 task-1] JSMBoTgnTR-h7ynGNfhpiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.592 [XNIO-1 task-1] JSMBoTgnTR-h7ynGNfhpiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", authorization) +16:29:45.593 [XNIO-1 task-4] zwSpG6YPTi-SagNu4kfnhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.593 [XNIO-1 task-4] zwSpG6YPTi-SagNu4kfnhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.597 [XNIO-1 task-1] JSMBoTgnTR-h7ynGNfhpiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.606 [XNIO-1 task-1] WunIksn6SjqAeF-irpmC9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.606 [XNIO-1 task-1] WunIksn6SjqAeF-irpmC9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.607 [XNIO-1 task-1] WunIksn6SjqAeF-irpmC9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.607 [XNIO-1 task-1] WunIksn6SjqAeF-irpmC9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.613 [XNIO-1 task-1] WunIksn6SjqAeF-irpmC9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:45.622 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:daa4a37b-4aa5-4028-8417-4ab903ee7564 +16:29:45.623 [XNIO-1 task-1] Cb0OCcPrQH6TXQQ2LOqK6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.623 [XNIO-1 task-1] Cb0OCcPrQH6TXQQ2LOqK6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.623 [XNIO-1 task-1] Cb0OCcPrQH6TXQQ2LOqK6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.623 [XNIO-1 task-1] Cb0OCcPrQH6TXQQ2LOqK6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.632 [XNIO-1 task-1] Cb0OCcPrQH6TXQQ2LOqK6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.640 [XNIO-1 task-1] DSe5wPqMQYeZYhoBbP192w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.640 [XNIO-1 task-1] DSe5wPqMQYeZYhoBbP192w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.641 [XNIO-1 task-4] HKdP4bUVQ7eT1Qnbk-FR6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.641 [XNIO-1 task-1] DSe5wPqMQYeZYhoBbP192w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.641 [XNIO-1 task-1] DSe5wPqMQYeZYhoBbP192w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.641 [XNIO-1 task-1] DSe5wPqMQYeZYhoBbP192w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", authorization) +16:29:45.641 [XNIO-1 task-4] HKdP4bUVQ7eT1Qnbk-FR6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.641 [XNIO-1 task-4] HKdP4bUVQ7eT1Qnbk-FR6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", authorization) +16:29:45.642 [XNIO-1 task-4] HKdP4bUVQ7eT1Qnbk-FR6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = x8Fpb3wARnGc73KWDf96kA redirectUri = http://localhost:8080/authorization +16:29:45.653 [XNIO-1 task-1] DSe5wPqMQYeZYhoBbP192w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.655 [XNIO-1 task-4] HKdP4bUVQ7eT1Qnbk-FR6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.655 [XNIO-1 task-4] HKdP4bUVQ7eT1Qnbk-FR6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.668 [XNIO-1 task-1] XxTdClKWRF6VWpBy78Z8xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.668 [XNIO-1 task-1] XxTdClKWRF6VWpBy78Z8xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.668 [XNIO-1 task-1] XxTdClKWRF6VWpBy78Z8xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.668 [XNIO-1 task-1] XxTdClKWRF6VWpBy78Z8xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.674 [XNIO-1 task-1] XxTdClKWRF6VWpBy78Z8xg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.679 [XNIO-1 task-1] 5_1rsKRUT8eeD2A4X8NRWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.679 [XNIO-1 task-1] 5_1rsKRUT8eeD2A4X8NRWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.680 [XNIO-1 task-1] 5_1rsKRUT8eeD2A4X8NRWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 4:29:45 PM com.hazelcast.map.impl.operation.DeleteOperation +16:29:45.680 [XNIO-1 task-1] 5_1rsKRUT8eeD2A4X8NRWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f5390e48-222e-4550-99b0-8989954c2e7c scope = null +16:29:45.681 [XNIO-1 task-4] Ob1LGhtsRr-td6fgas9PTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.682 [XNIO-1 task-4] Ob1LGhtsRr-td6fgas9PTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.683 [XNIO-1 task-4] Ob1LGhtsRr-td6fgas9PTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.683 [XNIO-1 task-4] Ob1LGhtsRr-td6fgas9PTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", authorization) +16:29:45.688 [XNIO-1 task-4] Ob1LGhtsRr-td6fgas9PTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.694 [XNIO-1 task-4] Ob1LGhtsRr-td6fgas9PTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.696 [XNIO-1 task-2] eS2G4YhgSWyIFyVA_92AqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.697 [XNIO-1 task-2] eS2G4YhgSWyIFyVA_92AqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.697 [XNIO-1 task-2] eS2G4YhgSWyIFyVA_92AqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.697 [XNIO-1 task-2] eS2G4YhgSWyIFyVA_92AqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDJlMzYzMGEtZDgxNy00YjQ5LWFlMDMtNmFjZmNjMzc0YWU0OlhmN1ZKNUM4VDZXSkt6V0NiTEV3WFE=", "Basic ZDJlMzYzMGEtZDgxNy00YjQ5LWFlMDMtNmFjZmNjMzc0YWU0OlhmN1ZKNUM4VDZXSkt6V0NiTEV3WFE=", authorization) +16:29:45.697 [XNIO-1 task-2] eS2G4YhgSWyIFyVA_92AqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YoFKbZmGRK-yd7qzweZeQA redirectUri = http://localhost:8080/authorization +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:45.701 [XNIO-1 task-4] 5ZK3QN-hRuqv0oHgw7emaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.702 [XNIO-1 task-4] 5ZK3QN-hRuqv0oHgw7emaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.702 [XNIO-1 task-4] 5ZK3QN-hRuqv0oHgw7emaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.703 [XNIO-1 task-4] 5ZK3QN-hRuqv0oHgw7emaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", authorization) +16:29:45.703 [XNIO-1 task-4] 5ZK3QN-hRuqv0oHgw7emaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.710 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1fe8707c-5b90-45e2-b53e-47ef6f68778d +16:29:45.713 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1fe8707c-5b90-45e2-b53e-47ef6f68778d +16:29:45.716 [XNIO-1 task-2] eS2G4YhgSWyIFyVA_92AqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.719 [XNIO-1 task-4] 5ZK3QN-hRuqv0oHgw7emaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.729 [XNIO-1 task-1] ffmK7Ib7TZ-xqcxxPbsEsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.729 [XNIO-1 task-1] ffmK7Ib7TZ-xqcxxPbsEsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +16:29:45.730 [XNIO-1 task-1] ffmK7Ib7TZ-xqcxxPbsEsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.730 [XNIO-1 task-1] ffmK7Ib7TZ-xqcxxPbsEsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", authorization) +16:29:45.731 [XNIO-1 task-1] ffmK7Ib7TZ-xqcxxPbsEsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.737 [XNIO-1 task-2] Fpni0_tWSIqfU8bmkVVB7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +16:29:45.738 [XNIO-1 task-2] Fpni0_tWSIqfU8bmkVVB7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +16:29:45.738 [XNIO-1 task-2] Fpni0_tWSIqfU8bmkVVB7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2b15176d-2d42-4712-8d60-4d8c7b46bef1 scope = null +16:29:45.739 [XNIO-1 task-1] ffmK7Ib7TZ-xqcxxPbsEsg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.739 [XNIO-1 task-1] ffmK7Ib7TZ-xqcxxPbsEsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.745 [XNIO-1 task-1] fYoZ2-SJTvKxEesWrThJUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:45.746 [XNIO-1 task-1] fYoZ2-SJTvKxEesWrThJUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +Jun 28, 2024 4:29:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:45.752 [XNIO-1 task-2] Fpni0_tWSIqfU8bmkVVB7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +16:29:45.752 [XNIO-1 task-2] Fpni0_tWSIqfU8bmkVVB7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.759 [XNIO-1 task-1] fYoZ2-SJTvKxEesWrThJUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.763 [XNIO-1 task-4] 6Yk2gdx1S465bPAPuheTgQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.767 [XNIO-1 task-2] fl4RrH0uR1aufZca-g4yFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.768 [XNIO-1 task-2] fl4RrH0uR1aufZca-g4yFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.768 [XNIO-1 task-2] fl4RrH0uR1aufZca-g4yFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.768 [XNIO-1 task-2] fl4RrH0uR1aufZca-g4yFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.768 [XNIO-1 task-2] fl4RrH0uR1aufZca-g4yFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", authorization) +16:29:45.773 [XNIO-1 task-2] fl4RrH0uR1aufZca-g4yFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.777 [XNIO-1 task-2] fl4RrH0uR1aufZca-g4yFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.784 [XNIO-1 task-2] xQ5eVumaQruU7lz20yLcLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.784 [XNIO-1 task-2] xQ5eVumaQruU7lz20yLcLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.785 [XNIO-1 task-2] xQ5eVumaQruU7lz20yLcLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.785 [XNIO-1 task-2] xQ5eVumaQruU7lz20yLcLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", authorization) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:45.788 [XNIO-1 task-2] xQ5eVumaQruU7lz20yLcLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:29:45.790 [XNIO-1 task-4] r0A4WB3rR5WUaL4kyzJW5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.790 [XNIO-1 task-4] r0A4WB3rR5WUaL4kyzJW5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.791 [XNIO-1 task-4] r0A4WB3rR5WUaL4kyzJW5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.791 [XNIO-1 task-4] r0A4WB3rR5WUaL4kyzJW5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e1342c77-81d6-4d92-8d29-770a3ffa5df1 scope = null +16:29:45.795 [XNIO-1 task-2] xQ5eVumaQruU7lz20yLcLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.797 [XNIO-1 task-1] 3W6Nc5scTqCrO5ePMr4ByA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.797 [XNIO-1 task-1] 3W6Nc5scTqCrO5ePMr4ByA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.798 [XNIO-1 task-1] 3W6Nc5scTqCrO5ePMr4ByA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.798 [XNIO-1 task-1] 3W6Nc5scTqCrO5ePMr4ByA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = HxuntuPwRwmUq5l19TrBnw redirectUri = http://localhost:8080/authorization +16:29:45.803 [XNIO-1 task-2] UlTorrT_QByglGvjIsP06w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.803 [XNIO-1 task-2] UlTorrT_QByglGvjIsP06w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.804 [XNIO-1 task-2] UlTorrT_QByglGvjIsP06w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.805 [XNIO-1 task-2] UlTorrT_QByglGvjIsP06w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.806 [XNIO-1 task-1] 3W6Nc5scTqCrO5ePMr4ByA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.807 [XNIO-1 task-4] r0A4WB3rR5WUaL4kyzJW5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.811 [XNIO-1 task-2] UlTorrT_QByglGvjIsP06w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.817 [XNIO-1 task-2] 0qAFmDCjT6-AN6MFfS4mRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.817 [XNIO-1 task-2] 0qAFmDCjT6-AN6MFfS4mRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.818 [XNIO-1 task-2] 0qAFmDCjT6-AN6MFfS4mRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.818 [XNIO-1 task-2] 0qAFmDCjT6-AN6MFfS4mRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzRhOGZjMDktZjM0YS00NmYwLWIzZTItMDZiZjVjZDUyNTQzOmJDLTNYdUNvU2tlY3QtYXdJV1pZZ0E=", "Basic NzRhOGZjMDktZjM0YS00NmYwLWIzZTItMDZiZjVjZDUyNTQzOmJDLTNYdUNvU2tlY3QtYXdJV1pZZ0E=", authorization) +16:29:45.822 [XNIO-1 task-4] GfRvYqBmSFi9lfcqv09R9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.822 [XNIO-1 task-4] GfRvYqBmSFi9lfcqv09R9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.822 [XNIO-1 task-4] GfRvYqBmSFi9lfcqv09R9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.822 [XNIO-1 task-4] GfRvYqBmSFi9lfcqv09R9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", authorization) +16:29:45.823 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:883feb89-1bff-4d15-afeb-9e0b9e7ba244 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:45.827 [XNIO-1 task-2] 0qAFmDCjT6-AN6MFfS4mRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.834 [XNIO-1 task-4] GfRvYqBmSFi9lfcqv09R9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.835 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0d43439 +16:29:45.839 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:45.840 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0d43439 +16:29:45.844 [XNIO-1 task-2] VW-dDLPlSX6SJfy-lfjX5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.844 [XNIO-1 task-2] VW-dDLPlSX6SJfy-lfjX5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.845 [XNIO-1 task-2] VW-dDLPlSX6SJfy-lfjX5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.846 [XNIO-1 task-2] VW-dDLPlSX6SJfy-lfjX5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.854 [XNIO-1 task-2] VW-dDLPlSX6SJfy-lfjX5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.859 [XNIO-1 task-2] wUUcKO00Qgu9P-TlkXoxlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.859 [XNIO-1 task-2] wUUcKO00Qgu9P-TlkXoxlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.860 [XNIO-1 task-2] wUUcKO00Qgu9P-TlkXoxlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.860 [XNIO-1 task-2] wUUcKO00Qgu9P-TlkXoxlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:45.863 [XNIO-1 task-4] wWXkUBqkSMi-_24bYdc0QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.863 [XNIO-1 task-4] wWXkUBqkSMi-_24bYdc0QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.863 [XNIO-1 task-4] wWXkUBqkSMi-_24bYdc0QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.864 [XNIO-1 task-4] wWXkUBqkSMi-_24bYdc0QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", authorization) +16:29:45.865 [XNIO-1 task-2] wUUcKO00Qgu9P-TlkXoxlw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.866 [XNIO-1 task-1] VsYNBFOzQKGmYekgahQeLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.866 [XNIO-1 task-1] VsYNBFOzQKGmYekgahQeLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.866 [XNIO-1 task-1] VsYNBFOzQKGmYekgahQeLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.866 [XNIO-1 task-1] VsYNBFOzQKGmYekgahQeLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:45.870 [XNIO-1 task-2] yr1D-ebzTleO-76vevlmHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.870 [XNIO-1 task-2] yr1D-ebzTleO-76vevlmHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.871 [XNIO-1 task-2] yr1D-ebzTleO-76vevlmHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.872 [XNIO-1 task-2] yr1D-ebzTleO-76vevlmHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWY0NzI0NTItMGZkMC00YWMzLTk4MzgtMTE3YmJhNWVlMTE5Ok1iQ1JhQTVEUVUteEhtTjJYdGJIb1E=", "Basic OWY0NzI0NTItMGZkMC00YWMzLTk4MzgtMTE3YmJhNWVlMTE5Ok1iQ1JhQTVEUVUteEhtTjJYdGJIb1E=", authorization) +16:29:45.878 [XNIO-1 task-2] yr1D-ebzTleO-76vevlmHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.878 [XNIO-1 task-1] VsYNBFOzQKGmYekgahQeLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.880 [XNIO-1 task-1] VsYNBFOzQKGmYekgahQeLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.880 [XNIO-1 task-1] VsYNBFOzQKGmYekgahQeLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.884 [XNIO-1 task-2] TorC7-TwQPeTJ4bwQYIrAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.884 [XNIO-1 task-2] TorC7-TwQPeTJ4bwQYIrAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.885 [XNIO-1 task-2] TorC7-TwQPeTJ4bwQYIrAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.886 [XNIO-1 task-2] TorC7-TwQPeTJ4bwQYIrAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWY0NzI0NTItMGZkMC00YWMzLTk4MzgtMTE3YmJhNWVlMTE5Ok1iQ1JhQTVEUVUteEhtTjJYdGJIb1E=", "Basic OWY0NzI0NTItMGZkMC00YWMzLTk4MzgtMTE3YmJhNWVlMTE5Ok1iQ1JhQTVEUVUteEhtTjJYdGJIb1E=", authorization) +16:29:45.891 [XNIO-1 task-2] TorC7-TwQPeTJ4bwQYIrAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.900 [XNIO-1 task-2] EKvWXqkFQ0S1VMF8W_7eeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.900 [XNIO-1 task-2] EKvWXqkFQ0S1VMF8W_7eeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.901 [XNIO-1 task-2] EKvWXqkFQ0S1VMF8W_7eeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.901 [XNIO-1 task-2] EKvWXqkFQ0S1VMF8W_7eeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", "Basic N2ExYTJiMDktZjQzNS00ZjZlLThmYWEtMGQ4MzI2YTQ1MmRmOnZ2b0Q3MkhtUm1XODlscWRnVmlWT3c=", authorization) +16:29:45.902 [XNIO-1 task-1] 79liCsWITSailLk6XQf1AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.903 [XNIO-1 task-1] 79liCsWITSailLk6XQf1AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.903 [XNIO-1 task-1] 79liCsWITSailLk6XQf1AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.903 [XNIO-1 task-1] 79liCsWITSailLk6XQf1AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWY0NzI0NTItMGZkMC00YWMzLTk4MzgtMTE3YmJhNWVlMTE5Ok1iQ1JhQTVEUVUteEhtTjJYdGJIb1E=", "Basic OWY0NzI0NTItMGZkMC00YWMzLTk4MzgtMTE3YmJhNWVlMTE5Ok1iQ1JhQTVEUVUteEhtTjJYdGJIb1E=", authorization) +16:29:45.912 [XNIO-1 task-1] 79liCsWITSailLk6XQf1AA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.913 [XNIO-1 task-2] EKvWXqkFQ0S1VMF8W_7eeQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.921 [XNIO-1 task-1] -F9pZWP7TqyYskLZRRzOAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.922 [XNIO-1 task-1] -F9pZWP7TqyYskLZRRzOAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.922 [XNIO-1 task-1] -F9pZWP7TqyYskLZRRzOAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.922 [XNIO-1 task-1] -F9pZWP7TqyYskLZRRzOAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", "Basic NzIzNzk1MzktYzVhNC00OWQ4LWI4ZDMtMGViM2VmNzkwOTFjOkNyWXNZanlEUkxtaFdEZlc2eGN4M0E=", authorization) +16:29:45.930 [XNIO-1 task-1] -F9pZWP7TqyYskLZRRzOAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.933 [XNIO-1 task-1] aATWqN9iTQK6msvdR9XB2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.933 [XNIO-1 task-1] aATWqN9iTQK6msvdR9XB2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.934 [XNIO-1 task-1] aATWqN9iTQK6msvdR9XB2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.934 [XNIO-1 task-1] aATWqN9iTQK6msvdR9XB2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:45.935 [XNIO-1 task-2] gJ8PvPB1QW6mKCqCODMhVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.936 [XNIO-1 task-2] gJ8PvPB1QW6mKCqCODMhVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.936 [XNIO-1 task-2] gJ8PvPB1QW6mKCqCODMhVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.936 [XNIO-1 task-2] gJ8PvPB1QW6mKCqCODMhVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", "Basic MzcwZWI4M2QtYzRmZi00YWNhLWE4NTQtZTkwZDZhYjY1ZGIyOnVhZ2VKV0hVU1FTMEZOdzEyWHZ4MEE=", authorization) +16:29:45.941 [XNIO-1 task-2] gJ8PvPB1QW6mKCqCODMhVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.948 [XNIO-1 task-1] aATWqN9iTQK6msvdR9XB2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.948 [XNIO-1 task-2] dzPVQSucS5Kl527UNM62XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.948 [XNIO-1 task-2] dzPVQSucS5Kl527UNM62XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.948 [XNIO-1 task-2] dzPVQSucS5Kl527UNM62XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.948 [XNIO-1 task-2] dzPVQSucS5Kl527UNM62XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.949 [XNIO-1 task-2] dzPVQSucS5Kl527UNM62XA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.955 [XNIO-1 task-2] dzPVQSucS5Kl527UNM62XA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.966 [XNIO-1 task-2] djRCwmIoRBSD92DfEWQUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.966 [XNIO-1 task-2] djRCwmIoRBSD92DfEWQUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.966 [XNIO-1 task-2] djRCwmIoRBSD92DfEWQUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.967 [XNIO-1 task-2] djRCwmIoRBSD92DfEWQUcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:45.974 [XNIO-1 task-2] djRCwmIoRBSD92DfEWQUcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.985 [XNIO-1 task-2] DZRD6bhWSka3jVXur-LuKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.985 [XNIO-1 task-2] DZRD6bhWSka3jVXur-LuKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.986 [XNIO-1 task-2] DZRD6bhWSka3jVXur-LuKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.986 [XNIO-1 task-1] Xw4GKpchSf2KlIzG4RL03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.986 [XNIO-1 task-1] Xw4GKpchSf2KlIzG4RL03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.986 [XNIO-1 task-2] DZRD6bhWSka3jVXur-LuKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8aenzfQIRPOwE3HADydb-g redirectUri = http://localhost:8080/authorization +16:29:45.986 [XNIO-1 task-4] mwAXQ5dnQryonA5tVAG0ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.987 [XNIO-1 task-4] mwAXQ5dnQryonA5tVAG0ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:45.987 [XNIO-1 task-4] mwAXQ5dnQryonA5tVAG0ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:45.987 [XNIO-1 task-4] mwAXQ5dnQryonA5tVAG0ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA5YmQ0NTUtMzY5MC00N2QzLWI3NWMtMWFkMGY1M2U3N2I3OmhTOFZmTVVFUzVtVW9kMkEycE9MdlE=", "Basic NTA5YmQ0NTUtMzY5MC00N2QzLWI3NWMtMWFkMGY1M2U3N2I3OmhTOFZmTVVFUzVtVW9kMkEycE9MdlE=", authorization) +16:29:45.986 [XNIO-1 task-1] Xw4GKpchSf2KlIzG4RL03A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.989 [XNIO-1 task-1] Xw4GKpchSf2KlIzG4RL03A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = RxCZSs-KTa6jmlgUs4VeAw redirectUri = http://localhost:8080/authorization +16:29:45.993 [XNIO-1 task-4] mwAXQ5dnQryonA5tVAG0ug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.993 [XNIO-1 task-2] DZRD6bhWSka3jVXur-LuKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:45.996 [XNIO-1 task-1] Xw4GKpchSf2KlIzG4RL03A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:45.996 [XNIO-1 task-1] Xw4GKpchSf2KlIzG4RL03A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:45.999 [XNIO-1 task-4] MKaFyqfnRR-TFqv8n_jDnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.999 [XNIO-1 task-4] MKaFyqfnRR-TFqv8n_jDnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:45.999 [XNIO-1 task-4] MKaFyqfnRR-TFqv8n_jDnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.000 [XNIO-1 task-4] MKaFyqfnRR-TFqv8n_jDnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.005 [XNIO-1 task-4] MKaFyqfnRR-TFqv8n_jDnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.011 [XNIO-1 task-2] o_G_GvJPRaixXJY4847oxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.011 [XNIO-1 task-2] o_G_GvJPRaixXJY4847oxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.011 [XNIO-1 task-2] o_G_GvJPRaixXJY4847oxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.012 [XNIO-1 task-2] o_G_GvJPRaixXJY4847oxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.016 [XNIO-1 task-2] o_G_GvJPRaixXJY4847oxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.024 [XNIO-1 task-2] wSI0cXRWRiywEyUqeISu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.025 [XNIO-1 task-2] wSI0cXRWRiywEyUqeISu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.025 [XNIO-1 task-2] wSI0cXRWRiywEyUqeISu5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.025 [XNIO-1 task-2] wSI0cXRWRiywEyUqeISu5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.029 [XNIO-1 task-1] taFryPP1Q42pUoM57wMVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.030 [XNIO-1 task-1] taFryPP1Q42pUoM57wMVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.030 [XNIO-1 task-1] taFryPP1Q42pUoM57wMVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.030 [XNIO-1 task-2] wSI0cXRWRiywEyUqeISu5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.032 [XNIO-1 task-2] wSI0cXRWRiywEyUqeISu5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.037 [XNIO-1 task-2] 5SyvmmlxQfSNK3srC3hong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.037 [XNIO-1 task-2] 5SyvmmlxQfSNK3srC3hong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.037 [XNIO-1 task-2] 5SyvmmlxQfSNK3srC3hong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.038 [XNIO-1 task-2] 5SyvmmlxQfSNK3srC3hong DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.042 [XNIO-1 task-1] taFryPP1Q42pUoM57wMVpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.044 [XNIO-1 task-2] 5SyvmmlxQfSNK3srC3hong DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.052 [XNIO-1 task-1] UovM4EbKSC-0xAEm9QWjtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.052 [XNIO-1 task-1] UovM4EbKSC-0xAEm9QWjtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.053 [XNIO-1 task-1] UovM4EbKSC-0xAEm9QWjtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.053 [XNIO-1 task-1] UovM4EbKSC-0xAEm9QWjtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", authorization) +16:29:46.062 [XNIO-1 task-1] UovM4EbKSC-0xAEm9QWjtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.071 [XNIO-1 task-1] 3dJ1zctUSESmNEsCuKOpKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.072 [XNIO-1 task-1] 3dJ1zctUSESmNEsCuKOpKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.072 [XNIO-1 task-1] 3dJ1zctUSESmNEsCuKOpKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.073 [XNIO-1 task-1] 3dJ1zctUSESmNEsCuKOpKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", "Basic MjFiOGI3ZWEtNjBlYy00YWYwLWFmMTMtNTdjMmNhOWFjYjUzOkliMXdfQzdqU25PNWZYOGo2eHh6ZGc=", authorization) +16:29:46.078 [XNIO-1 task-2] 7uz9huCQRL2malgnZHaf5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.078 [XNIO-1 task-2] 7uz9huCQRL2malgnZHaf5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.079 [XNIO-1 task-1] 3dJ1zctUSESmNEsCuKOpKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.079 [XNIO-1 task-2] 7uz9huCQRL2malgnZHaf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.080 [XNIO-1 task-2] 7uz9huCQRL2malgnZHaf5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jhYT6vfsR4qTeg23UP0xVA redirectUri = http://localhost:8080/authorization +16:29:46.086 [XNIO-1 task-1] 8lq7fOEEQiC9bXyUS0wtHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.086 [XNIO-1 task-1] 8lq7fOEEQiC9bXyUS0wtHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.086 [XNIO-1 task-1] 8lq7fOEEQiC9bXyUS0wtHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.087 [XNIO-1 task-1] 8lq7fOEEQiC9bXyUS0wtHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", "Basic M2YyM2I5NzYtM2FkMi00MjJkLTgwMDgtNzg4NzhmNWQ0ODEzOjgybHhoZVpjUjFDOTFxeXVaOVllWFE=", authorization) +16:29:46.089 [XNIO-1 task-2] 7uz9huCQRL2malgnZHaf5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.089 [XNIO-1 task-2] 7uz9huCQRL2malgnZHaf5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.093 [XNIO-1 task-1] 8lq7fOEEQiC9bXyUS0wtHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.102 [XNIO-1 task-2] h7spcY1fSE6I0MSJS6i_mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.103 [XNIO-1 task-2] h7spcY1fSE6I0MSJS6i_mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.103 [XNIO-1 task-2] h7spcY1fSE6I0MSJS6i_mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.104 [XNIO-1 task-1] l-o_rBIYR1WycvrECodZdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.104 [XNIO-1 task-2] h7spcY1fSE6I0MSJS6i_mQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.108 [XNIO-1 task-1] l-o_rBIYR1WycvrECodZdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.109 [XNIO-1 task-1] l-o_rBIYR1WycvrECodZdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.112 [XNIO-1 task-1] l-o_rBIYR1WycvrECodZdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1dfd316e-4ef5-43ab-87ea-12744273a931 scope = null +16:29:46.113 [XNIO-1 task-2] h7spcY1fSE6I0MSJS6i_mQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.121 [XNIO-1 task-4] a269E9U5RKWYwwsEleD-qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.121 [XNIO-1 task-4] a269E9U5RKWYwwsEleD-qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.121 [XNIO-1 task-4] a269E9U5RKWYwwsEleD-qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.123 [XNIO-1 task-1] l-o_rBIYR1WycvrECodZdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.124 [XNIO-1 task-1] l-o_rBIYR1WycvrECodZdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.128 [XNIO-1 task-2] kLpAWW8nRM-8AqlaLKKHIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.128 [XNIO-1 task-2] kLpAWW8nRM-8AqlaLKKHIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.129 [XNIO-1 task-2] kLpAWW8nRM-8AqlaLKKHIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.132 [XNIO-1 task-4] a269E9U5RKWYwwsEleD-qw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.133 [XNIO-1 task-4] a269E9U5RKWYwwsEleD-qw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.141 [XNIO-1 task-2] kLpAWW8nRM-8AqlaLKKHIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.143 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cc177dad-3ae5-4e88-a964-286491ec34b3 +16:29:46.145 [XNIO-1 task-1] -FTZTyruRJmHsEvFd7H51Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.146 [XNIO-1 task-1] -FTZTyruRJmHsEvFd7H51Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.146 [XNIO-1 task-1] -FTZTyruRJmHsEvFd7H51Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.146 [XNIO-1 task-4] tmKZh_kcSBCB-61RF63iKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.146 [XNIO-1 task-1] -FTZTyruRJmHsEvFd7H51Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.146 [XNIO-1 task-4] tmKZh_kcSBCB-61RF63iKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.146 [XNIO-1 task-1] -FTZTyruRJmHsEvFd7H51Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", authorization) +16:29:46.147 [XNIO-1 task-4] tmKZh_kcSBCB-61RF63iKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.156 [XNIO-1 task-4] tmKZh_kcSBCB-61RF63iKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.160 [XNIO-1 task-1] -FTZTyruRJmHsEvFd7H51Q ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:46.164 [XNIO-1 task-4] 8ZS4T6AfRBiFHaCEITkEIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.164 [XNIO-1 task-4] 8ZS4T6AfRBiFHaCEITkEIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.165 [XNIO-1 task-4] 8ZS4T6AfRBiFHaCEITkEIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.165 [XNIO-1 task-4] 8ZS4T6AfRBiFHaCEITkEIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = faf6d92e-fc1a-4754-97ed-5cdc01cd8419 scope = null +16:29:46.165 [XNIO-1 task-1] Qd_Maj-5Ty21XKzW2yF9MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.165 [XNIO-1 task-1] Qd_Maj-5Ty21XKzW2yF9MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.166 [XNIO-1 task-1] Qd_Maj-5Ty21XKzW2yF9MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.166 [XNIO-1 task-1] Qd_Maj-5Ty21XKzW2yF9MQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.174 [XNIO-1 task-1] Qd_Maj-5Ty21XKzW2yF9MQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token faf6d92e-fc1a-4754-97ed-5cdc01cd8419 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:46.181 [XNIO-1 task-1] onKtu3yuT6eBkba75vy9Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.181 [XNIO-1 task-1] onKtu3yuT6eBkba75vy9Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.183 [XNIO-1 task-1] onKtu3yuT6eBkba75vy9Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.183 [XNIO-1 task-1] onKtu3yuT6eBkba75vy9Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", authorization) +16:29:46.188 [XNIO-1 task-1] onKtu3yuT6eBkba75vy9Qg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.202 [XNIO-1 task-1] N0nKhIXSTsWQe1tyBAez2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.202 [XNIO-1 task-1] N0nKhIXSTsWQe1tyBAez2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.202 [XNIO-1 task-1] N0nKhIXSTsWQe1tyBAez2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.203 [XNIO-1 task-1] N0nKhIXSTsWQe1tyBAez2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", authorization) +16:29:46.209 [XNIO-1 task-1] N0nKhIXSTsWQe1tyBAez2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.225 [XNIO-1 task-1] 4Nlu3xVySkSRDrHSwfH8og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.225 [XNIO-1 task-1] 4Nlu3xVySkSRDrHSwfH8og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.226 [XNIO-1 task-1] 4Nlu3xVySkSRDrHSwfH8og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.226 [XNIO-1 task-4] W6OD5NXiQ-WWpExjFOFd8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.226 [XNIO-1 task-4] W6OD5NXiQ-WWpExjFOFd8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.226 [XNIO-1 task-1] 4Nlu3xVySkSRDrHSwfH8og DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", authorization) +16:29:46.226 [XNIO-1 task-4] W6OD5NXiQ-WWpExjFOFd8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.226 [XNIO-1 task-4] W6OD5NXiQ-WWpExjFOFd8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDcxOTgxYWYtZTc5Yy00ZWVhLTk0YjAtNjQyYTVmMTg1NTQ3Ok5BdnJzaTFBUlBpbTlnLXlGQTZHZXc=", "Basic MDcxOTgxYWYtZTc5Yy00ZWVhLTk0YjAtNjQyYTVmMTg1NTQ3Ok5BdnJzaTFBUlBpbTlnLXlGQTZHZXc=", authorization) +16:29:46.234 [XNIO-1 task-1] 4Nlu3xVySkSRDrHSwfH8og DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.275 [XNIO-1 task-4] W6OD5NXiQ-WWpExjFOFd8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.275 [XNIO-1 task-4] W6OD5NXiQ-WWpExjFOFd8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.282 [XNIO-1 task-1] wALyhBLYQ56hrO3NMA8aCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.282 [XNIO-1 task-1] wALyhBLYQ56hrO3NMA8aCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.282 [XNIO-1 task-1] wALyhBLYQ56hrO3NMA8aCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.282 [XNIO-1 task-2] M-iKTVikSp6r_0qpYjoSBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.283 [XNIO-1 task-2] M-iKTVikSp6r_0qpYjoSBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.283 [XNIO-1 task-1] wALyhBLYQ56hrO3NMA8aCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.283 [XNIO-1 task-2] M-iKTVikSp6r_0qpYjoSBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.283 [XNIO-1 task-1] wALyhBLYQ56hrO3NMA8aCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = AXKMKBi4SR6IzPLqcpAhTg redirectUri = http://localhost:8080/authorization +16:29:46.287 [XNIO-1 task-4] Y8qUK5W_QZy4lgpweQOgRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.287 [XNIO-1 task-4] Y8qUK5W_QZy4lgpweQOgRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.287 [XNIO-1 task-4] Y8qUK5W_QZy4lgpweQOgRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.287 [XNIO-1 task-4] Y8qUK5W_QZy4lgpweQOgRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 scope = null +16:29:46.289 [XNIO-1 task-1] wALyhBLYQ56hrO3NMA8aCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.289 [XNIO-1 task-1] wALyhBLYQ56hrO3NMA8aCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.293 [XNIO-1 task-2] qionyeYXQb-lukkm5y2w_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.294 [XNIO-1 task-2] qionyeYXQb-lukkm5y2w_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.294 [XNIO-1 task-2] qionyeYXQb-lukkm5y2w_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.294 [XNIO-1 task-2] qionyeYXQb-lukkm5y2w_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", authorization) +16:29:46.298 [XNIO-1 task-4] Y8qUK5W_QZy4lgpweQOgRw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:46.304 [XNIO-1 task-2] qionyeYXQb-lukkm5y2w_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.304 [XNIO-1 task-4] AexNZtxeRUOA-ZPAa9UWAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.304 [XNIO-1 task-4] AexNZtxeRUOA-ZPAa9UWAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.305 [XNIO-1 task-4] AexNZtxeRUOA-ZPAa9UWAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.305 [XNIO-1 task-4] AexNZtxeRUOA-ZPAa9UWAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 scope = null +16:29:46.308 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:69be3544 +16:29:46.312 [XNIO-1 task-2] unbmCbz5QqyyDXKH_CCvpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.312 [XNIO-1 task-2] unbmCbz5QqyyDXKH_CCvpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.312 [XNIO-1 task-4] AexNZtxeRUOA-ZPAa9UWAQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:46.313 [XNIO-1 task-2] unbmCbz5QqyyDXKH_CCvpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.313 [XNIO-1 task-2] unbmCbz5QqyyDXKH_CCvpg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.317 [XNIO-1 task-4] mHbDWy5tSJe3dh7zFqj3sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.317 [XNIO-1 task-4] mHbDWy5tSJe3dh7zFqj3sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.317 [XNIO-1 task-4] mHbDWy5tSJe3dh7zFqj3sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.317 [XNIO-1 task-4] mHbDWy5tSJe3dh7zFqj3sg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 066bafe4-ed29-4108-850e-3acdf2c4aaf8 scope = null +16:29:46.318 [XNIO-1 task-2] unbmCbz5QqyyDXKH_CCvpg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.322 [XNIO-1 task-2] 6Z95Cx-fTd6HaG180Lw3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.322 [XNIO-1 task-2] 6Z95Cx-fTd6HaG180Lw3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.323 [XNIO-1 task-2] 6Z95Cx-fTd6HaG180Lw3gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.323 [XNIO-1 task-2] 6Z95Cx-fTd6HaG180Lw3gg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 066bafe4-ed29-4108-850e-3acdf2c4aaf8 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:46.329 [XNIO-1 task-2] 6Z95Cx-fTd6HaG180Lw3gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.340 [XNIO-1 task-2] 0mQJmB8NRmqvnovhKdns0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.340 [XNIO-1 task-2] 0mQJmB8NRmqvnovhKdns0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.341 [XNIO-1 task-2] 0mQJmB8NRmqvnovhKdns0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.353 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:630a0f2d-bc1b-4197-b8f2-8edd1fa3f521 +16:29:46.357 [XNIO-1 task-2] 0mQJmB8NRmqvnovhKdns0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.366 [XNIO-1 task-2] 0mQJmB8NRmqvnovhKdns0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.380 [XNIO-1 task-2] Iqj2T6YYQny5v5v-6OXHlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.380 [XNIO-1 task-2] Iqj2T6YYQny5v5v-6OXHlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.380 [XNIO-1 task-2] Iqj2T6YYQny5v5v-6OXHlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.381 [XNIO-1 task-2] Iqj2T6YYQny5v5v-6OXHlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzMWE4MWUtMTFlNC00NzBlLTkwM2YtNjZhZTgzZWU1YjU3OlcwalBqOFZ4UVdPVXFMWlM2YjhZNVE=", "Basic NDEzMWE4MWUtMTFlNC00NzBlLTkwM2YtNjZhZTgzZWU1YjU3OlcwalBqOFZ4UVdPVXFMWlM2YjhZNVE=", authorization) +16:29:46.386 [XNIO-1 task-2] Iqj2T6YYQny5v5v-6OXHlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.387 [XNIO-1 task-2] Iqj2T6YYQny5v5v-6OXHlg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.387 [XNIO-1 task-4] 5eAZE34xTmiEaG_O-2zKgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.387 [XNIO-1 task-4] 5eAZE34xTmiEaG_O-2zKgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.387 [XNIO-1 task-4] 5eAZE34xTmiEaG_O-2zKgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", "Basic ZmYzOGI5MmEtZmYyMC00YTI4LTk4ZjEtZTIxZDcxOGYxYTc3OjBGeU9pZzFmVDdlOUNaQnJHMlVjQ1E=", authorization) +16:29:46.392 [XNIO-1 task-2] AprBoTStQ-eWILSvKFF5bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.392 [XNIO-1 task-2] AprBoTStQ-eWILSvKFF5bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.392 [XNIO-1 task-2] AprBoTStQ-eWILSvKFF5bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.393 [XNIO-1 task-2] AprBoTStQ-eWILSvKFF5bA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", "Basic Mzc0NThiYmItMTMwMi00MWM2LWE0NjktMWY1ZTNiM2VlODM5OmJEVkNFbEFCU1EyYmhhX3lheUdiX0E=", authorization) +16:29:46.394 [XNIO-1 task-4] 5eAZE34xTmiEaG_O-2zKgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.394 [XNIO-1 task-4] 5eAZE34xTmiEaG_O-2zKgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.401 [XNIO-1 task-2] AprBoTStQ-eWILSvKFF5bA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.408 [XNIO-1 task-2] hWammbARSXy-mOsSRCcB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.408 [XNIO-1 task-2] hWammbARSXy-mOsSRCcB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.408 [XNIO-1 task-2] hWammbARSXy-mOsSRCcB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.409 [XNIO-1 task-2] hWammbARSXy-mOsSRCcB1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.420 [XNIO-1 task-2] hWammbARSXy-mOsSRCcB1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.432 [XNIO-1 task-2] MKEjS-hkRS2vBhHoGlzkRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.432 [XNIO-1 task-2] MKEjS-hkRS2vBhHoGlzkRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.432 [XNIO-1 task-2] MKEjS-hkRS2vBhHoGlzkRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.433 [XNIO-1 task-2] MKEjS-hkRS2vBhHoGlzkRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.439 [XNIO-1 task-2] MKEjS-hkRS2vBhHoGlzkRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.447 [XNIO-1 task-2] 4UQK6HgLSpWXUyyn8_NSJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.447 [XNIO-1 task-2] 4UQK6HgLSpWXUyyn8_NSJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.448 [XNIO-1 task-2] 4UQK6HgLSpWXUyyn8_NSJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.448 [XNIO-1 task-2] 4UQK6HgLSpWXUyyn8_NSJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.453 [XNIO-1 task-2] 4UQK6HgLSpWXUyyn8_NSJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.455 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:69be3544 +16:29:46.463 [XNIO-1 task-2] BV92tenoQ9-WjN3peZdfJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.463 [XNIO-1 task-2] BV92tenoQ9-WjN3peZdfJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.464 [XNIO-1 task-2] BV92tenoQ9-WjN3peZdfJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.465 [XNIO-1 task-2] BV92tenoQ9-WjN3peZdfJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.467 [XNIO-1 task-4] PhzOpX9cQ7uQHtz4n4G0_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.467 [XNIO-1 task-4] PhzOpX9cQ7uQHtz4n4G0_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.467 [XNIO-1 task-4] PhzOpX9cQ7uQHtz4n4G0_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.468 [XNIO-1 task-4] PhzOpX9cQ7uQHtz4n4G0_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0asFDVPcQAGmgYxP-7TKzw redirectUri = http://localhost:8080/authorization +16:29:46.472 [XNIO-1 task-2] BV92tenoQ9-WjN3peZdfJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.476 [XNIO-1 task-2] nxmwKjqWSmO43m1ii5Yc5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.476 [XNIO-1 task-2] nxmwKjqWSmO43m1ii5Yc5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.476 [XNIO-1 task-2] nxmwKjqWSmO43m1ii5Yc5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.477 [XNIO-1 task-2] nxmwKjqWSmO43m1ii5Yc5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzRhOGZjMDktZjM0YS00NmYwLWIzZTItMDZiZjVjZDUyNTQzOmJDLTNYdUNvU2tlY3QtYXdJV1pZZ0E=", "Basic NzRhOGZjMDktZjM0YS00NmYwLWIzZTItMDZiZjVjZDUyNTQzOmJDLTNYdUNvU2tlY3QtYXdJV1pZZ0E=", authorization) +16:29:46.480 [XNIO-1 task-4] PhzOpX9cQ7uQHtz4n4G0_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.480 [XNIO-1 task-4] PhzOpX9cQ7uQHtz4n4G0_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.489 [XNIO-1 task-1] tqbWlQLJS22MWjGKlLQtLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.489 [XNIO-1 task-1] tqbWlQLJS22MWjGKlLQtLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.489 [XNIO-1 task-1] tqbWlQLJS22MWjGKlLQtLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.490 [XNIO-1 task-1] tqbWlQLJS22MWjGKlLQtLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gjgCIPUzQVSGs1hvcydB_w redirectUri = http://localhost:8080/authorization +16:29:46.490 [XNIO-1 task-2] nxmwKjqWSmO43m1ii5Yc5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.503 [XNIO-1 task-2] fWiG2zvzS-GA038m6E62xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.503 [XNIO-1 task-2] fWiG2zvzS-GA038m6E62xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.504 [XNIO-1 task-2] fWiG2zvzS-GA038m6E62xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.504 [XNIO-1 task-1] tqbWlQLJS22MWjGKlLQtLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.504 [XNIO-1 task-2] fWiG2zvzS-GA038m6E62xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", "Basic NTZkYjI1NDUtNTYwMy00ZDljLWI3ZDctYzljZDIxODI5MzMxOlJVNlcxWmdaVFJxb1dfcTFpT3l4RVE=", authorization) +16:29:46.510 [XNIO-1 task-2] fWiG2zvzS-GA038m6E62xw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.520 [XNIO-1 task-1] d4A-y7EmTSKWZ-GmYrPx7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.520 [XNIO-1 task-1] d4A-y7EmTSKWZ-GmYrPx7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.520 [XNIO-1 task-1] d4A-y7EmTSKWZ-GmYrPx7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.521 [XNIO-1 task-1] d4A-y7EmTSKWZ-GmYrPx7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:46.526 [XNIO-1 task-1] d4A-y7EmTSKWZ-GmYrPx7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.527 [XNIO-1 task-4] 8ujzj6teSa6AijSIWZKNOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.527 [XNIO-1 task-4] 8ujzj6teSa6AijSIWZKNOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.527 [XNIO-1 task-4] 8ujzj6teSa6AijSIWZKNOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.527 [XNIO-1 task-2] jEHmD49HSiKx6Wg32QlZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.528 [XNIO-1 task-2] jEHmD49HSiKx6Wg32QlZDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.528 [XNIO-1 task-2] jEHmD49HSiKx6Wg32QlZDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.528 [XNIO-1 task-2] jEHmD49HSiKx6Wg32QlZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.528 [XNIO-1 task-2] jEHmD49HSiKx6Wg32QlZDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:46.535 [XNIO-1 task-1] MkgydzbBQlOJVPMANidxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.535 [XNIO-1 task-1] MkgydzbBQlOJVPMANidxRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.536 [XNIO-1 task-1] MkgydzbBQlOJVPMANidxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.536 [XNIO-1 task-1] MkgydzbBQlOJVPMANidxRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:46.538 [XNIO-1 task-4] 8ujzj6teSa6AijSIWZKNOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.539 [XNIO-1 task-4] 8ujzj6teSa6AijSIWZKNOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.541 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a63b2427-996a-427a-a04c-70a8a0b9bb5f +16:29:46.542 [XNIO-1 task-1] MkgydzbBQlOJVPMANidxRg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.548 [XNIO-1 task-1] NmnQPnOITiGCjXOR1ix8Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.548 [XNIO-1 task-1] NmnQPnOITiGCjXOR1ix8Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.549 [XNIO-1 task-1] NmnQPnOITiGCjXOR1ix8Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.550 [XNIO-1 task-1] NmnQPnOITiGCjXOR1ix8Hg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.555 [XNIO-1 task-2] jEHmD49HSiKx6Wg32QlZDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.555 [XNIO-1 task-2] jEHmD49HSiKx6Wg32QlZDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.569 [XNIO-1 task-1] JCXD19UHS1KxT02Yveq84g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.569 [XNIO-1 task-1] JCXD19UHS1KxT02Yveq84g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.569 [XNIO-1 task-1] JCXD19UHS1KxT02Yveq84g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.570 [XNIO-1 task-1] JCXD19UHS1KxT02Yveq84g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.576 [XNIO-1 task-1] JCXD19UHS1KxT02Yveq84g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.583 [XNIO-1 task-1] -51e5WXeTliTRX_OY3FW1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.583 [XNIO-1 task-1] -51e5WXeTliTRX_OY3FW1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.584 [XNIO-1 task-1] -51e5WXeTliTRX_OY3FW1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.584 [XNIO-1 task-1] -51e5WXeTliTRX_OY3FW1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.589 [XNIO-1 task-1] -51e5WXeTliTRX_OY3FW1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.599 [XNIO-1 task-1] IxRBoFRbT1O2GN4Ln02BZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.599 [XNIO-1 task-1] IxRBoFRbT1O2GN4Ln02BZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.599 [XNIO-1 task-1] IxRBoFRbT1O2GN4Ln02BZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.600 [XNIO-1 task-1] IxRBoFRbT1O2GN4Ln02BZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.606 [XNIO-1 task-1] IxRBoFRbT1O2GN4Ln02BZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.612 [XNIO-1 task-1] Dnr11COnTN2f1Ol72dLmbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.612 [XNIO-1 task-1] Dnr11COnTN2f1Ol72dLmbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.613 [XNIO-1 task-1] Dnr11COnTN2f1Ol72dLmbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.613 [XNIO-1 task-1] Dnr11COnTN2f1Ol72dLmbg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.620 [XNIO-1 task-1] Dnr11COnTN2f1Ol72dLmbg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +Jun 28, 2024 4:29:46 PM com.hazelcast.map.impl.operation.DeleteOperation +16:29:46.625 [XNIO-1 task-1] vxXFnW5NQ_mp6gS7qXG3TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +16:29:46.625 [XNIO-1 task-1] vxXFnW5NQ_mp6gS7qXG3TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.625 [XNIO-1 task-1] vxXFnW5NQ_mp6gS7qXG3TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.625 [XNIO-1 task-1] vxXFnW5NQ_mp6gS7qXG3TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", authorization) +16:29:46.628 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.628 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.629 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.629 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.629 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.629 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA5YmQ0NTUtMzY5MC00N2QzLWI3NWMtMWFkMGY1M2U3N2I3OmhTOFZmTVVFUzVtVW9kMkEycE9MdlE=", "Basic NTA5YmQ0NTUtMzY5MC00N2QzLWI3NWMtMWFkMGY1M2U3N2I3OmhTOFZmTVVFUzVtVW9kMkEycE9MdlE=", authorization) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +16:29:46.629 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0b5PHFtvS46zXiUvwM3Ldw redirectUri = http://localhost:8080/authorization + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +16:29:46.631 [XNIO-1 task-1] vxXFnW5NQ_mp6gS7qXG3TQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.636 [XNIO-1 task-1] RfPV7BlWQm-hjR3QFH3m3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.636 [XNIO-1 task-1] RfPV7BlWQm-hjR3QFH3m3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.636 [XNIO-1 task-1] RfPV7BlWQm-hjR3QFH3m3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.636 [XNIO-1 task-1] RfPV7BlWQm-hjR3QFH3m3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.636 [XNIO-1 task-1] RfPV7BlWQm-hjR3QFH3m3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + +16:29:46.638 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.638 [XNIO-1 task-2] r013YLwkRWuqDlh3_oy0UQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.640 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0828d862-7f01-4872-8732-21c3f9cb5333 +16:29:46.642 [XNIO-1 task-1] RfPV7BlWQm-hjR3QFH3m3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.648 [XNIO-1 task-1] yCfRsab-TCCFfEoaBm68OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.648 [XNIO-1 task-1] yCfRsab-TCCFfEoaBm68OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.648 [XNIO-1 task-1] yCfRsab-TCCFfEoaBm68OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.649 [XNIO-1 task-1] yCfRsab-TCCFfEoaBm68OA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.656 [XNIO-1 task-1] yCfRsab-TCCFfEoaBm68OA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.666 [XNIO-1 task-1] eP7Vn0KXQ2qfukzVpF0Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.666 [XNIO-1 task-1] eP7Vn0KXQ2qfukzVpF0Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.667 [XNIO-1 task-1] eP7Vn0KXQ2qfukzVpF0Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.667 [XNIO-1 task-1] eP7Vn0KXQ2qfukzVpF0Rag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.673 [XNIO-1 task-1] eP7Vn0KXQ2qfukzVpF0Rag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.674 [XNIO-1 task-2] lPNHhuyES3yf2bti6K3Ykw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.674 [XNIO-1 task-2] lPNHhuyES3yf2bti6K3Ykw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.675 [XNIO-1 task-2] lPNHhuyES3yf2bti6K3Ykw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.675 [XNIO-1 task-2] lPNHhuyES3yf2bti6K3Ykw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = knmsme1xQN-W5NGiVipBzg redirectUri = http://localhost:8080/authorization +16:29:46.678 [XNIO-1 task-1] wSK7ruC5QBu5OVCjzBcjzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.678 [XNIO-1 task-1] wSK7ruC5QBu5OVCjzBcjzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.678 [XNIO-1 task-1] wSK7ruC5QBu5OVCjzBcjzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.679 [XNIO-1 task-1] wSK7ruC5QBu5OVCjzBcjzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.681 [XNIO-1 task-4] Fs2iq5FVQBS_CmCPId1mQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.681 [XNIO-1 task-4] Fs2iq5FVQBS_CmCPId1mQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.681 [XNIO-1 task-4] Fs2iq5FVQBS_CmCPId1mQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.681 [XNIO-1 task-4] Fs2iq5FVQBS_CmCPId1mQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 218b717f-f297-4e91-81ce-139e80bd43de scope = null +16:29:46.684 [XNIO-1 task-1] wSK7ruC5QBu5OVCjzBcjzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.686 [XNIO-1 task-2] lPNHhuyES3yf2bti6K3Ykw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.686 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a63b2427-996a-427a-a04c-70a8a0b9bb5f +16:29:46.691 [XNIO-1 task-1] 9pswABc-T0eBuY6Dlgor7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.692 [XNIO-1 task-1] 9pswABc-T0eBuY6Dlgor7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.692 [XNIO-1 task-1] 9pswABc-T0eBuY6Dlgor7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.692 [XNIO-1 task-1] 9pswABc-T0eBuY6Dlgor7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 218b717f-f297-4e91-81ce-139e80bd43de is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:46.697 [XNIO-1 task-1] 9pswABc-T0eBuY6Dlgor7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.698 [XNIO-1 task-4] 7v4jtJQdQKGXqGFXmbAomg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.698 [XNIO-1 task-4] 7v4jtJQdQKGXqGFXmbAomg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.698 [XNIO-1 task-4] 7v4jtJQdQKGXqGFXmbAomg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.699 [XNIO-1 task-4] 7v4jtJQdQKGXqGFXmbAomg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDcxOTgxYWYtZTc5Yy00ZWVhLTk0YjAtNjQyYTVmMTg1NTQ3Ok5BdnJzaTFBUlBpbTlnLXlGQTZHZXc=", "Basic MDcxOTgxYWYtZTc5Yy00ZWVhLTk0YjAtNjQyYTVmMTg1NTQ3Ok5BdnJzaTFBUlBpbTlnLXlGQTZHZXc=", authorization) +16:29:46.705 [XNIO-1 task-1] dUM07AKxSwm0q_j3ct8z9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.705 [XNIO-1 task-1] dUM07AKxSwm0q_j3ct8z9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.705 [XNIO-1 task-1] dUM07AKxSwm0q_j3ct8z9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.706 [XNIO-1 task-1] dUM07AKxSwm0q_j3ct8z9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", authorization) +16:29:46.712 [XNIO-1 task-4] 7v4jtJQdQKGXqGFXmbAomg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:46.716 [XNIO-1 task-1] dUM07AKxSwm0q_j3ct8z9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.717 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8db88c2c +16:29:46.724 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a63b2427-996a-427a-a04c-70a8a0b9bb5f +16:29:46.726 [XNIO-1 task-1] Si2DiUamQiGPxtTnqq3d6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.726 [XNIO-1 task-1] Si2DiUamQiGPxtTnqq3d6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.727 [XNIO-1 task-1] Si2DiUamQiGPxtTnqq3d6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.727 [XNIO-1 task-1] Si2DiUamQiGPxtTnqq3d6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.734 [XNIO-1 task-1] Si2DiUamQiGPxtTnqq3d6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.740 [XNIO-1 task-1] eMYz3NMAQJ2uFl0aCaktgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.748 [XNIO-1 task-1] eMYz3NMAQJ2uFl0aCaktgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.748 [XNIO-1 task-1] eMYz3NMAQJ2uFl0aCaktgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.749 [XNIO-1 task-1] eMYz3NMAQJ2uFl0aCaktgA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.754 [XNIO-1 task-4] xKrONnksSTKAXacPFYWz_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.754 [XNIO-1 task-4] xKrONnksSTKAXacPFYWz_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.755 [XNIO-1 task-4] xKrONnksSTKAXacPFYWz_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.755 [XNIO-1 task-4] xKrONnksSTKAXacPFYWz_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 80Om7MdHRhaMrI-k6hWMhQ redirectUri = http://localhost:8080/authorization +16:29:46.756 [XNIO-1 task-1] eMYz3NMAQJ2uFl0aCaktgA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.761 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:38918081 +16:29:46.769 [XNIO-1 task-1] vgeqrT8rQwemAKWVc_5eag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.770 [XNIO-1 task-1] vgeqrT8rQwemAKWVc_5eag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.770 [XNIO-1 task-1] vgeqrT8rQwemAKWVc_5eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.770 [XNIO-1 task-4] xKrONnksSTKAXacPFYWz_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.770 [XNIO-1 task-1] vgeqrT8rQwemAKWVc_5eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.771 [XNIO-1 task-1] vgeqrT8rQwemAKWVc_5eag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.777 [XNIO-1 task-1] vgeqrT8rQwemAKWVc_5eag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.788 [XNIO-1 task-1] PQpV3I9xRO2qPGWihYPDBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.789 [XNIO-1 task-1] PQpV3I9xRO2qPGWihYPDBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.789 [XNIO-1 task-1] PQpV3I9xRO2qPGWihYPDBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.789 [XNIO-1 task-1] PQpV3I9xRO2qPGWihYPDBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:46.797 [XNIO-1 task-1] PQpV3I9xRO2qPGWihYPDBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.813 [XNIO-1 task-1] 84MgCuanQj2vwP86EpcA8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.813 [XNIO-1 task-1] 84MgCuanQj2vwP86EpcA8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.814 [XNIO-1 task-1] 84MgCuanQj2vwP86EpcA8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.814 [XNIO-1 task-1] 84MgCuanQj2vwP86EpcA8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", "Basic YmZlOWVjZDMtMmI2NC00NmMzLWE1MTYtZjgzOWFkZGU5NzE1OmJaLWE0T3hNUzBxYUt5b3ZwQ1NPakE=", authorization) +16:29:46.819 [XNIO-1 task-1] 84MgCuanQj2vwP86EpcA8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.824 [XNIO-1 task-1] 2A0apf7RQ7W4Czw6zSITkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.825 [XNIO-1 task-1] 2A0apf7RQ7W4Czw6zSITkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.825 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:883feb89-1bff-4d15-afeb-9e0b9e7ba244 +16:29:46.825 [XNIO-1 task-1] 2A0apf7RQ7W4Czw6zSITkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.825 [XNIO-1 task-1] 2A0apf7RQ7W4Czw6zSITkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:46.831 [XNIO-1 task-1] 2A0apf7RQ7W4Czw6zSITkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.837 [XNIO-1 task-1] lSKZlX95Qie5NaEaWLBw-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.837 [XNIO-1 task-1] lSKZlX95Qie5NaEaWLBw-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.838 [XNIO-1 task-1] lSKZlX95Qie5NaEaWLBw-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.838 [XNIO-1 task-1] lSKZlX95Qie5NaEaWLBw-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", "Basic OTMxMTRhMWUtYzdhYS00OTE3LThiN2QtN2IwNDFlYWY1OTQ3OkMwNFVGMEJ0VDhhSXBodnJuRWNUaEE=", authorization) +16:29:46.840 [XNIO-1 task-4] Ly8sqo4uTPuDT6V6uPuHPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.842 [XNIO-1 task-4] Ly8sqo4uTPuDT6V6uPuHPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.842 [XNIO-1 task-4] Ly8sqo4uTPuDT6V6uPuHPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.843 [XNIO-1 task-4] Ly8sqo4uTPuDT6V6uPuHPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", authorization) +16:29:46.847 [XNIO-1 task-1] lSKZlX95Qie5NaEaWLBw-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.848 [XNIO-1 task-1] lSKZlX95Qie5NaEaWLBw-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.896 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:38918081 +16:29:46.901 [XNIO-1 task-4] Ly8sqo4uTPuDT6V6uPuHPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.923 [XNIO-1 task-2] QWoF9EKAS5eoqPHYGLefkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.923 [XNIO-1 task-2] QWoF9EKAS5eoqPHYGLefkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.924 [XNIO-1 task-2] QWoF9EKAS5eoqPHYGLefkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.924 [XNIO-1 task-2] QWoF9EKAS5eoqPHYGLefkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ugV6gSt4Quy01ZR8WuBUjQ redirectUri = http://localhost:8080/authorization +16:29:46.930 [XNIO-1 task-4] 5jCikq_ZQu6dJeh87MuRmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.930 [XNIO-1 task-4] 5jCikq_ZQu6dJeh87MuRmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.931 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dee00a24 +16:29:46.931 [XNIO-1 task-4] 5jCikq_ZQu6dJeh87MuRmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.931 [XNIO-1 task-2] QWoF9EKAS5eoqPHYGLefkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.932 [XNIO-1 task-4] 5jCikq_ZQu6dJeh87MuRmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", "Basic ZjYxNzRmNzgtMzNkMC00YzllLThkZTUtZjdmOGQ3ZjE5ZThhOmp1NXBVeS12UWpxRTJyVlNUcEUtTGc=", authorization) +16:29:46.932 [XNIO-1 task-2] QWoF9EKAS5eoqPHYGLefkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.938 [XNIO-1 task-4] 5jCikq_ZQu6dJeh87MuRmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.951 [XNIO-1 task-4] PR8Z6LEmTveq92H7frqF_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.951 [XNIO-1 task-4] PR8Z6LEmTveq92H7frqF_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.952 [XNIO-1 task-4] PR8Z6LEmTveq92H7frqF_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.953 [XNIO-1 task-4] PR8Z6LEmTveq92H7frqF_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.958 [XNIO-1 task-4] PR8Z6LEmTveq92H7frqF_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:46.967 [XNIO-1 task-4] 7i77i3PbQCe_fsByF_lkug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.967 [XNIO-1 task-4] 7i77i3PbQCe_fsByF_lkug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.968 [XNIO-1 task-4] 7i77i3PbQCe_fsByF_lkug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.968 [XNIO-1 task-4] 7i77i3PbQCe_fsByF_lkug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:46.970 [XNIO-1 task-2] ihY4PnKHQM6dkfMmU9a0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.970 [XNIO-1 task-2] ihY4PnKHQM6dkfMmU9a0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.971 [XNIO-1 task-2] ihY4PnKHQM6dkfMmU9a0kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.971 [XNIO-1 task-1] YCLuyg3RRs2jdSxL8VYzQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.971 [XNIO-1 task-1] YCLuyg3RRs2jdSxL8VYzQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.972 [XNIO-1 task-1] YCLuyg3RRs2jdSxL8VYzQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:46.972 [XNIO-1 task-1] YCLuyg3RRs2jdSxL8VYzQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = rODuOptdRtaLCSRKTmbJ7Q redirectUri = http://localhost:8080/authorization +16:29:46.972 [XNIO-1 task-2] ihY4PnKHQM6dkfMmU9a0kw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uTQzLtUHSx-JcjzqmnAlTg redirectUri = http://localhost:8080/authorization +16:29:46.979 [XNIO-1 task-1] YCLuyg3RRs2jdSxL8VYzQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.982 [XNIO-1 task-1] YCLuyg3RRs2jdSxL8VYzQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:46.992 [XNIO-1 task-4] YxgB52QvRnK-kZASLVU6mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.993 [XNIO-1 task-4] YxgB52QvRnK-kZASLVU6mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:46.993 [XNIO-1 task-4] YxgB52QvRnK-kZASLVU6mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:46.994 [XNIO-1 task-4] YxgB52QvRnK-kZASLVU6mg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzAwYTM0ZWYtZWNmNy00ZGYzLWEyMDctMDNmZjkzZjhiN2NhOktxaFpkZ2toUnNPM295S24wTThsOFE=", "Basic YzAwYTM0ZWYtZWNmNy00ZGYzLWEyMDctMDNmZjkzZjhiN2NhOktxaFpkZ2toUnNPM295S24wTThsOFE=", authorization) +16:29:46.998 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:38918081 +16:29:46.998 [XNIO-1 task-2] ihY4PnKHQM6dkfMmU9a0kw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:46.999 [XNIO-1 task-2] ihY4PnKHQM6dkfMmU9a0kw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.012 [XNIO-1 task-4] YxgB52QvRnK-kZASLVU6mg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.017 [XNIO-1 task-4] aLsDzezQTy2ifmOPtgE_ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.018 [XNIO-1 task-4] aLsDzezQTy2ifmOPtgE_ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.018 [XNIO-1 task-4] aLsDzezQTy2ifmOPtgE_ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.019 [XNIO-1 task-2] 7YBalVj6SEGxVTX81VGnOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.019 [XNIO-1 task-2] 7YBalVj6SEGxVTX81VGnOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.019 [XNIO-1 task-2] 7YBalVj6SEGxVTX81VGnOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.020 [XNIO-1 task-2] 7YBalVj6SEGxVTX81VGnOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.020 [XNIO-1 task-1] CI5HQX8kSI-AcQU380Fp8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.020 [XNIO-1 task-1] CI5HQX8kSI-AcQU380Fp8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.020 [XNIO-1 task-2] 7YBalVj6SEGxVTX81VGnOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.020 [XNIO-1 task-1] CI5HQX8kSI-AcQU380Fp8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.021 [XNIO-1 task-1] CI5HQX8kSI-AcQU380Fp8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = UBgN9mp8QSCcfaluOvyqtg redirectUri = http://localhost:8080/authorization +16:29:47.025 [XNIO-1 task-2] 7YBalVj6SEGxVTX81VGnOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.032 [XNIO-1 task-4] aLsDzezQTy2ifmOPtgE_ZA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.034 [XNIO-1 task-1] CI5HQX8kSI-AcQU380Fp8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.034 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1095cba4-2acf-4902-9483-27ea7671bdbb +16:29:47.035 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1095cba4-2acf-4902-9483-27ea7671bdbb +16:29:47.037 [XNIO-1 task-2] tk100dJxQAeC_DCT-y9Vug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.040 [XNIO-1 task-2] tk100dJxQAeC_DCT-y9Vug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.040 [XNIO-1 task-2] tk100dJxQAeC_DCT-y9Vug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.041 [XNIO-1 task-2] tk100dJxQAeC_DCT-y9Vug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.045 [XNIO-1 task-4] Iw4GVFC_Sd-_E2nZmfulxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.046 [XNIO-1 task-4] Iw4GVFC_Sd-_E2nZmfulxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.046 [XNIO-1 task-2] tk100dJxQAeC_DCT-y9Vug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.046 [XNIO-1 task-4] Iw4GVFC_Sd-_E2nZmfulxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.047 [XNIO-1 task-4] Iw4GVFC_Sd-_E2nZmfulxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1095cba4-2acf-4902-9483-27ea7671bdbb scope = null +16:29:47.053 [XNIO-1 task-2] HxyOrOTeQPCNTsxHAdAavQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.053 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8eba6d4d +16:29:47.053 [XNIO-1 task-2] HxyOrOTeQPCNTsxHAdAavQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.053 [XNIO-1 task-2] HxyOrOTeQPCNTsxHAdAavQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.053 [XNIO-1 task-2] HxyOrOTeQPCNTsxHAdAavQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2FmYjE1YTktNmUwNC00NDYyLThlMzktMjJkNjM2MGI4MzRjOjVCZWJ3RFZZU1Fhc0dRWDBMTlI5cEE=", "Basic M2FmYjE1YTktNmUwNC00NDYyLThlMzktMjJkNjM2MGI4MzRjOjVCZWJ3RFZZU1Fhc0dRWDBMTlI5cEE=", authorization) +16:29:47.054 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1095cba4-2acf-4902-9483-27ea7671bdbb +16:29:47.061 [XNIO-1 task-2] HxyOrOTeQPCNTsxHAdAavQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.065 [XNIO-1 task-4] Iw4GVFC_Sd-_E2nZmfulxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.066 [XNIO-1 task-2] 6PMC4WOtRRmfbB0OsP3JxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.066 [XNIO-1 task-2] 6PMC4WOtRRmfbB0OsP3JxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.067 [XNIO-1 task-2] 6PMC4WOtRRmfbB0OsP3JxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.067 [XNIO-1 task-2] 6PMC4WOtRRmfbB0OsP3JxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.075 [XNIO-1 task-2] 6PMC4WOtRRmfbB0OsP3JxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.083 [XNIO-1 task-4] DGjZ7XVmS3mAAWckX41i2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.083 [XNIO-1 task-4] DGjZ7XVmS3mAAWckX41i2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.083 [XNIO-1 task-4] DGjZ7XVmS3mAAWckX41i2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.083 [XNIO-1 task-4] DGjZ7XVmS3mAAWckX41i2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", authorization) +16:29:47.085 [XNIO-1 task-2] Wl_YPqs1SGKx5NUUqCaRSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.085 [XNIO-1 task-2] Wl_YPqs1SGKx5NUUqCaRSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.085 [XNIO-1 task-2] Wl_YPqs1SGKx5NUUqCaRSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.088 [XNIO-1 task-4] DGjZ7XVmS3mAAWckX41i2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.090 [XNIO-1 task-2] Wl_YPqs1SGKx5NUUqCaRSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", authorization) +16:29:47.096 [XNIO-1 task-4] YvRwOF2fRge_0xZSA9M_HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.096 [XNIO-1 task-4] YvRwOF2fRge_0xZSA9M_HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.096 [XNIO-1 task-4] YvRwOF2fRge_0xZSA9M_HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.097 [XNIO-1 task-4] YvRwOF2fRge_0xZSA9M_HA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", "Basic ODIyNTcxOTQtYzk1ZC00MDU5LTlhMDEtNjM4MDMzYTNkMWVmOklKODdLR2hRU29lSUVNUFJMYmJWNFE=", authorization) +16:29:47.099 [XNIO-1 task-2] Wl_YPqs1SGKx5NUUqCaRSg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:47.103 [XNIO-1 task-4] YvRwOF2fRge_0xZSA9M_HA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.105 [XNIO-1 task-2] 5jNHzHdRT9aGY4W8vNNeaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.105 [XNIO-1 task-2] 5jNHzHdRT9aGY4W8vNNeaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.105 [XNIO-1 task-2] 5jNHzHdRT9aGY4W8vNNeaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.105 [XNIO-1 task-2] 5jNHzHdRT9aGY4W8vNNeaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd scope = null +16:29:47.108 [XNIO-1 task-4] umHZ6GA9RHiFGlDtt-Sp6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.108 [XNIO-1 task-4] umHZ6GA9RHiFGlDtt-Sp6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.109 [XNIO-1 task-4] umHZ6GA9RHiFGlDtt-Sp6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.109 [XNIO-1 task-4] umHZ6GA9RHiFGlDtt-Sp6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.110 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dee00a24 +16:29:47.114 [XNIO-1 task-1] vLVy9V8aTyuG2IS2Y9YVnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.114 [XNIO-1 task-1] vLVy9V8aTyuG2IS2Y9YVnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.114 [XNIO-1 task-4] umHZ6GA9RHiFGlDtt-Sp6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.114 [XNIO-1 task-1] vLVy9V8aTyuG2IS2Y9YVnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.114 [XNIO-1 task-1] vLVy9V8aTyuG2IS2Y9YVnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9LqFvL13SVyGwsA2zpItog redirectUri = http://localhost:8080/authorization +16:29:47.120 [XNIO-1 task-4] Xz_s7bRIS1aNNw-Mdb-oCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.120 [XNIO-1 task-4] Xz_s7bRIS1aNNw-Mdb-oCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.121 [XNIO-1 task-4] Xz_s7bRIS1aNNw-Mdb-oCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.121 [XNIO-1 task-4] Xz_s7bRIS1aNNw-Mdb-oCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fbf8e215-a48c-4704-a560-b7d9c17ccfdd is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:47.123 [XNIO-1 task-1] vLVy9V8aTyuG2IS2Y9YVnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.128 [XNIO-1 task-2] DiAd2CnBRCOw2o7scmsB8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.128 [XNIO-1 task-2] DiAd2CnBRCOw2o7scmsB8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.128 [XNIO-1 task-2] DiAd2CnBRCOw2o7scmsB8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.128 [XNIO-1 task-4] Xz_s7bRIS1aNNw-Mdb-oCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.128 [XNIO-1 task-2] DiAd2CnBRCOw2o7scmsB8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", "Basic ZDNkZjVhNmEtY2Y2YS00YWUzLTg0NzYtNmYzM2RlMmNhODVhOmN3Tk95M1BhUjBLbHhUM3hBZ2YzRnc=", authorization) +16:29:47.129 [XNIO-1 task-2] DiAd2CnBRCOw2o7scmsB8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fbf8e215-a48c-4704-a560-b7d9c17ccfdd scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fbf8e215-a48c-4704-a560-b7d9c17ccfdd is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:29:47.143 [XNIO-1 task-2] ExqWHbH5QQqyssy-XYRXWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.143 [XNIO-1 task-2] ExqWHbH5QQqyssy-XYRXWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.143 [XNIO-1 task-1] PTNDtdgXRqyKZBbLHDjChg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.143 [XNIO-1 task-2] ExqWHbH5QQqyssy-XYRXWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.143 [XNIO-1 task-1] PTNDtdgXRqyKZBbLHDjChg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.144 [XNIO-1 task-1] PTNDtdgXRqyKZBbLHDjChg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.144 [XNIO-1 task-1] PTNDtdgXRqyKZBbLHDjChg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.145 [XNIO-1 task-1] PTNDtdgXRqyKZBbLHDjChg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", authorization) +16:29:47.150 [XNIO-1 task-1] PTNDtdgXRqyKZBbLHDjChg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.162 [XNIO-1 task-2] ExqWHbH5QQqyssy-XYRXWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.167 [XNIO-1 task-1] 21v2ciKsTGafBU-8QRKCxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.170 [XNIO-1 task-1] 21v2ciKsTGafBU-8QRKCxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.170 [XNIO-1 task-1] 21v2ciKsTGafBU-8QRKCxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.171 [XNIO-1 task-1] 21v2ciKsTGafBU-8QRKCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", "Basic NDhkMGY3MmUtNDRjYi00MmI2LTg0ZGUtMzBmNWQyYWU3MDFlOm5aRzU5MjBiUzJhSjFFXzc2djNyRWc=", authorization) +16:29:47.177 [XNIO-1 task-1] 21v2ciKsTGafBU-8QRKCxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.178 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dee00a24 +16:29:47.200 [XNIO-1 task-1] SDDT0z79SSuuJkXCHgK1Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.200 [XNIO-1 task-1] SDDT0z79SSuuJkXCHgK1Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.201 [XNIO-1 task-1] SDDT0z79SSuuJkXCHgK1Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.201 [XNIO-1 task-1] SDDT0z79SSuuJkXCHgK1Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjBjYmI1YzMtZTI5Zi00Mjk2LTk3ZjktZTU5ZmYyNDQ4OTQxOnVZakxJZ05mU2pPVjF1c0xZWXJhUVE=", "Basic MjBjYmI1YzMtZTI5Zi00Mjk2LTk3ZjktZTU5ZmYyNDQ4OTQxOnVZakxJZ05mU2pPVjF1c0xZWXJhUVE=", authorization) +16:29:47.210 [XNIO-1 task-2] 7G-TF-n8RPSOlnDu9B3FtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.210 [XNIO-1 task-2] 7G-TF-n8RPSOlnDu9B3FtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.211 [XNIO-1 task-2] 7G-TF-n8RPSOlnDu9B3FtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.211 [XNIO-1 task-2] 7G-TF-n8RPSOlnDu9B3FtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", authorization) +16:29:47.214 [XNIO-1 task-1] SDDT0z79SSuuJkXCHgK1Tw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.218 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dee00a24 +16:29:47.220 [XNIO-1 task-1] Y0NMD3J6ShKKpVGupZKQMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.220 [XNIO-1 task-1] Y0NMD3J6ShKKpVGupZKQMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.220 [XNIO-1 task-1] Y0NMD3J6ShKKpVGupZKQMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.221 [XNIO-1 task-2] 7G-TF-n8RPSOlnDu9B3FtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.221 [XNIO-1 task-1] Y0NMD3J6ShKKpVGupZKQMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.221 [XNIO-1 task-2] 7G-TF-n8RPSOlnDu9B3FtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.230 [XNIO-1 task-1] Y0NMD3J6ShKKpVGupZKQMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.239 [XNIO-1 task-1] SZdD7CIvRpeOP7LDE23Eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.239 [XNIO-1 task-1] SZdD7CIvRpeOP7LDE23Eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.239 [XNIO-1 task-1] SZdD7CIvRpeOP7LDE23Eiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.240 [XNIO-1 task-1] SZdD7CIvRpeOP7LDE23Eiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.245 [XNIO-1 task-1] SZdD7CIvRpeOP7LDE23Eiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.247 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dee00a24 +16:29:47.253 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:38918081 +16:29:47.256 [XNIO-1 task-1] g0kCD5KMQp-5vP-iyffDDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.256 [XNIO-1 task-1] g0kCD5KMQp-5vP-iyffDDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.257 [XNIO-1 task-1] g0kCD5KMQp-5vP-iyffDDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.257 [XNIO-1 task-1] g0kCD5KMQp-5vP-iyffDDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.261 [XNIO-1 task-2] WiMrAMtpRWSAsU4VeJaQqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.261 [XNIO-1 task-2] WiMrAMtpRWSAsU4VeJaQqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.266 [XNIO-1 task-2] WiMrAMtpRWSAsU4VeJaQqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.266 [XNIO-1 task-1] g0kCD5KMQp-5vP-iyffDDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.266 [XNIO-1 task-2] WiMrAMtpRWSAsU4VeJaQqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:47.272 [XNIO-1 task-1] Ly5l5-FjRteVKd7ixW7ykQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.272 [XNIO-1 task-1] Ly5l5-FjRteVKd7ixW7ykQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.272 [XNIO-1 task-1] Ly5l5-FjRteVKd7ixW7ykQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.273 [XNIO-1 task-1] Ly5l5-FjRteVKd7ixW7ykQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:47.278 [XNIO-1 task-2] WiMrAMtpRWSAsU4VeJaQqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.278 [XNIO-1 task-2] WiMrAMtpRWSAsU4VeJaQqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.278 [XNIO-1 task-1] Ly5l5-FjRteVKd7ixW7ykQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.285 [XNIO-1 task-1] E-qdY54eSfuxobFC4NMD0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.285 [XNIO-1 task-1] E-qdY54eSfuxobFC4NMD0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.286 [XNIO-1 task-1] E-qdY54eSfuxobFC4NMD0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.286 [XNIO-1 task-1] E-qdY54eSfuxobFC4NMD0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.291 [XNIO-1 task-1] E-qdY54eSfuxobFC4NMD0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.292 [XNIO-1 task-1] E-qdY54eSfuxobFC4NMD0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.301 [XNIO-1 task-1] GRo7GMAiSoKJE0RHkHtolw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.301 [XNIO-1 task-1] GRo7GMAiSoKJE0RHkHtolw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.302 [XNIO-1 task-1] GRo7GMAiSoKJE0RHkHtolw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.302 [XNIO-1 task-1] GRo7GMAiSoKJE0RHkHtolw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.306 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:38918081 +16:29:47.307 [XNIO-1 task-1] GRo7GMAiSoKJE0RHkHtolw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.314 [XNIO-1 task-1] 4BeA3AXlR96XyHHXvETuvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.314 [XNIO-1 task-1] 4BeA3AXlR96XyHHXvETuvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.315 [XNIO-1 task-1] 4BeA3AXlR96XyHHXvETuvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.316 [XNIO-1 task-1] 4BeA3AXlR96XyHHXvETuvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.321 [XNIO-1 task-1] 4BeA3AXlR96XyHHXvETuvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.321 [XNIO-1 task-2] sFAMqI7bSluNmIiaqEUAsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.321 [XNIO-1 task-2] sFAMqI7bSluNmIiaqEUAsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.321 [XNIO-1 task-2] sFAMqI7bSluNmIiaqEUAsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.322 [XNIO-1 task-2] sFAMqI7bSluNmIiaqEUAsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = KXYleqBKRnCk1cZa8s9xhA redirectUri = http://localhost:8080/authorization +16:29:47.331 [XNIO-1 task-1] BYrtP33pQl2gbvBMjBVesg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.331 [XNIO-1 task-1] BYrtP33pQl2gbvBMjBVesg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.331 [XNIO-1 task-4] Gej_XEzPRMeXGAbTKgBnSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.331 [XNIO-1 task-4] Gej_XEzPRMeXGAbTKgBnSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.331 [XNIO-1 task-1] BYrtP33pQl2gbvBMjBVesg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.331 [XNIO-1 task-4] Gej_XEzPRMeXGAbTKgBnSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.332 [XNIO-1 task-1] BYrtP33pQl2gbvBMjBVesg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", "Basic NDM4NWViYTktZDlkYy00ZmY3LTlkMDItNzQ0ZjRlZGQwNjYxOjRONEwwWEhFVEZtdlhnOVhJdHJ3QWc=", authorization) +16:29:47.332 [XNIO-1 task-4] Gej_XEzPRMeXGAbTKgBnSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.336 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7f054b7 +16:29:47.336 [XNIO-1 task-2] sFAMqI7bSluNmIiaqEUAsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.337 [XNIO-1 task-2] sFAMqI7bSluNmIiaqEUAsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.340 [XNIO-1 task-4] Gej_XEzPRMeXGAbTKgBnSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.345 [XNIO-1 task-1] BYrtP33pQl2gbvBMjBVesg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.346 [XNIO-1 task-2] iZthzIo0SgWkgZVzHq907Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.346 [XNIO-1 task-2] iZthzIo0SgWkgZVzHq907Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.347 [XNIO-1 task-2] iZthzIo0SgWkgZVzHq907Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.347 [XNIO-1 task-2] iZthzIo0SgWkgZVzHq907Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTUwZjIzY2EtM2RkMy00ZTI2LWJmZGUtZTM1MmViYmI4ZGZjOmtGNXU0b0lPU1ktdkR5LVc4eUpFZ2c=", "Basic MTUwZjIzY2EtM2RkMy00ZTI2LWJmZGUtZTM1MmViYmI4ZGZjOmtGNXU0b0lPU1ktdkR5LVc4eUpFZ2c=", authorization) +16:29:47.347 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aca7f161-9e33-45f6-b1e4-84597bb76eec +16:29:47.348 [XNIO-1 task-4] W0-HtItLQA-p1RsGZHK9YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.348 [XNIO-1 task-4] W0-HtItLQA-p1RsGZHK9YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.348 [XNIO-1 task-4] W0-HtItLQA-p1RsGZHK9YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.348 [XNIO-1 task-4] W0-HtItLQA-p1RsGZHK9YA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg1NzNjMmQtNTg0Ny00NTBhLThiODAtYmQyOTA3MGFmZmQxOjVYckpTc09nVGstSjExWHNJcXcxNWc=", "Basic Yjg1NzNjMmQtNTg0Ny00NTBhLThiODAtYmQyOTA3MGFmZmQxOjVYckpTc09nVGstSjExWHNJcXcxNWc=", authorization) +16:29:47.354 [XNIO-1 task-2] iZthzIo0SgWkgZVzHq907Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.361 [XNIO-1 task-4] W0-HtItLQA-p1RsGZHK9YA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.364 [XNIO-1 task-2] SoTYAUY-Syecz0puAFRg_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.364 [XNIO-1 task-2] SoTYAUY-Syecz0puAFRg_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.364 [XNIO-1 task-2] SoTYAUY-Syecz0puAFRg_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.364 [XNIO-1 task-2] SoTYAUY-Syecz0puAFRg_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTUwZjIzY2EtM2RkMy00ZTI2LWJmZGUtZTM1MmViYmI4ZGZjOmtGNXU0b0lPU1ktdkR5LVc4eUpFZ2c=", "Basic MTUwZjIzY2EtM2RkMy00ZTI2LWJmZGUtZTM1MmViYmI4ZGZjOmtGNXU0b0lPU1ktdkR5LVc4eUpFZ2c=", authorization) +16:29:47.371 [XNIO-1 task-2] SoTYAUY-Syecz0puAFRg_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.375 [XNIO-1 task-2] xDjS0tkZTdag_XUNHP6hUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.375 [XNIO-1 task-2] xDjS0tkZTdag_XUNHP6hUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.376 [XNIO-1 task-2] xDjS0tkZTdag_XUNHP6hUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.376 [XNIO-1 task-2] xDjS0tkZTdag_XUNHP6hUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTUwZjIzY2EtM2RkMy00ZTI2LWJmZGUtZTM1MmViYmI4ZGZjOmtGNXU0b0lPU1ktdkR5LVc4eUpFZ2c=", "Basic MTUwZjIzY2EtM2RkMy00ZTI2LWJmZGUtZTM1MmViYmI4ZGZjOmtGNXU0b0lPU1ktdkR5LVc4eUpFZ2c=", authorization) +16:29:47.380 [XNIO-1 task-4] nQ84hqTsTFWz2EesE_wHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.380 [XNIO-1 task-4] nQ84hqTsTFWz2EesE_wHvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.381 [XNIO-1 task-4] nQ84hqTsTFWz2EesE_wHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.381 [XNIO-1 task-4] nQ84hqTsTFWz2EesE_wHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", "Basic NTUyNWYwZjYtNWM2NS00ZmE1LWE4OGYtOGZjZTg1ZmNkMjZlOjFkNEtVUS1KVGwtdFdBeVRpa2VGcFE=", authorization) +16:29:47.381 [XNIO-1 task-2] xDjS0tkZTdag_XUNHP6hUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.386 [XNIO-1 task-2] LI7dnquwQc6D6fONLdxWRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.386 [XNIO-1 task-2] LI7dnquwQc6D6fONLdxWRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.386 [XNIO-1 task-2] LI7dnquwQc6D6fONLdxWRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.386 [XNIO-1 task-2] LI7dnquwQc6D6fONLdxWRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTFlMmU0MDEtZmZjNS00NWJhLTgzZTYtNjQ5YmNjZjJmMTQ4OkFhQ3ZBaFBhUVhpOF81R3VvNkw0anc=", "Basic MTFlMmU0MDEtZmZjNS00NWJhLTgzZTYtNjQ5YmNjZjJmMTQ4OkFhQ3ZBaFBhUVhpOF81R3VvNkw0anc=", authorization) +16:29:47.387 [XNIO-1 task-4] nQ84hqTsTFWz2EesE_wHvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.387 [XNIO-1 task-4] nQ84hqTsTFWz2EesE_wHvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.389 [XNIO-1 task-1] xaLbBdW6Q-WV2YLG5pEDKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.389 [XNIO-1 task-1] xaLbBdW6Q-WV2YLG5pEDKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.389 [XNIO-1 task-1] xaLbBdW6Q-WV2YLG5pEDKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.390 [XNIO-1 task-1] xaLbBdW6Q-WV2YLG5pEDKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.390 [XNIO-1 task-1] xaLbBdW6Q-WV2YLG5pEDKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.395 [XNIO-1 task-1] xaLbBdW6Q-WV2YLG5pEDKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.395 [XNIO-1 task-1] xaLbBdW6Q-WV2YLG5pEDKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.402 [XNIO-1 task-1] flscWRkjT3KLdV7puSlFHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.402 [XNIO-1 task-1] flscWRkjT3KLdV7puSlFHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.403 [XNIO-1 task-1] flscWRkjT3KLdV7puSlFHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.403 [XNIO-1 task-1] flscWRkjT3KLdV7puSlFHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGEyYWQwNDQtOGViMC00OGQxLWEwNzQtZWJiZjc1Yjc1ZmFkOng0RnJWZTFZUkFhaTNxNTBPRFNmOEE=", "Basic NGEyYWQwNDQtOGViMC00OGQxLWEwNzQtZWJiZjc1Yjc1ZmFkOng0RnJWZTFZUkFhaTNxNTBPRFNmOEE=", authorization) +16:29:47.416 [XNIO-1 task-1] flscWRkjT3KLdV7puSlFHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.425 [XNIO-1 task-1] oKV3RqR_QgqYMODj8grIVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.425 [XNIO-1 task-1] oKV3RqR_QgqYMODj8grIVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.427 [XNIO-1 task-2] eeLKiGRyTLyYVly6vNlrRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.427 [XNIO-1 task-2] eeLKiGRyTLyYVly6vNlrRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.428 [XNIO-1 task-2] eeLKiGRyTLyYVly6vNlrRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.428 [XNIO-1 task-2] eeLKiGRyTLyYVly6vNlrRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", "Basic YTM2OWY1ZGUtNWZkMi00NjdiLWI1OGUtZWQ0ZWNkN2ZjNGZiOmh4U0NsZ29uUkhTd0k2d3lDSTdwVHc=", authorization) +16:29:47.429 [XNIO-1 task-1] oKV3RqR_QgqYMODj8grIVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.430 [XNIO-1 task-1] oKV3RqR_QgqYMODj8grIVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGEyYWQwNDQtOGViMC00OGQxLWEwNzQtZWJiZjc1Yjc1ZmFkOng0RnJWZTFZUkFhaTNxNTBPRFNmOEE=", "Basic NGEyYWQwNDQtOGViMC00OGQxLWEwNzQtZWJiZjc1Yjc1ZmFkOng0RnJWZTFZUkFhaTNxNTBPRFNmOEE=", authorization) +16:29:47.437 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:38918081 +16:29:47.437 [XNIO-1 task-4] Inm7sJ1jSKGNua4r1C0tSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.438 [XNIO-1 task-4] Inm7sJ1jSKGNua4r1C0tSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.438 [XNIO-1 task-4] Inm7sJ1jSKGNua4r1C0tSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.439 [XNIO-1 task-2] eeLKiGRyTLyYVly6vNlrRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.439 [XNIO-1 task-4] Inm7sJ1jSKGNua4r1C0tSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 4s3YiMqNT32Gb9-vPxtVTA redirectUri = http://localhost:8080/authorization +16:29:47.440 [XNIO-1 task-1] oKV3RqR_QgqYMODj8grIVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.443 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:38918081 +16:29:47.446 [XNIO-1 task-1] UO6uIsTgTdy_WRjW5XUVDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.446 [XNIO-1 task-1] UO6uIsTgTdy_WRjW5XUVDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.446 [XNIO-1 task-1] UO6uIsTgTdy_WRjW5XUVDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.448 [XNIO-1 task-1] UO6uIsTgTdy_WRjW5XUVDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.452 [XNIO-1 task-4] Inm7sJ1jSKGNua4r1C0tSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.452 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f7f054b7 +16:29:47.453 [XNIO-1 task-1] UO6uIsTgTdy_WRjW5XUVDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.455 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f7f054b7 +16:29:47.458 [XNIO-1 task-1] rVrHaqQVTIaOHgsiHvTgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.458 [XNIO-1 task-1] rVrHaqQVTIaOHgsiHvTgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.459 [XNIO-1 task-1] rVrHaqQVTIaOHgsiHvTgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.459 [XNIO-1 task-1] rVrHaqQVTIaOHgsiHvTgIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.464 [XNIO-1 task-1] rVrHaqQVTIaOHgsiHvTgIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.475 [XNIO-1 task-1] DD35NYjsQ9arLrYoUvNJLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.476 [XNIO-1 task-1] DD35NYjsQ9arLrYoUvNJLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.476 [XNIO-1 task-1] DD35NYjsQ9arLrYoUvNJLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.476 [XNIO-1 task-1] DD35NYjsQ9arLrYoUvNJLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzQwZDVhMTAtYmFlNy00ZWIyLWE3Y2QtNDlkMzQzZDg0YmZhOmZYZFl6VF9HUnZDblJsOFZDbk5CbUE=", "Basic NzQwZDVhMTAtYmFlNy00ZWIyLWE3Y2QtNDlkMzQzZDg0YmZhOmZYZFl6VF9HUnZDblJsOFZDbk5CbUE=", authorization) +16:29:47.482 [XNIO-1 task-1] DD35NYjsQ9arLrYoUvNJLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.488 [XNIO-1 task-1] 4ezSJjYUScunO-ikWvuVqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.491 [XNIO-1 task-1] 4ezSJjYUScunO-ikWvuVqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.491 [XNIO-1 task-1] 4ezSJjYUScunO-ikWvuVqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.491 [XNIO-1 task-1] 4ezSJjYUScunO-ikWvuVqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzQwZDVhMTAtYmFlNy00ZWIyLWE3Y2QtNDlkMzQzZDg0YmZhOmZYZFl6VF9HUnZDblJsOFZDbk5CbUE=", "Basic NzQwZDVhMTAtYmFlNy00ZWIyLWE3Y2QtNDlkMzQzZDg0YmZhOmZYZFl6VF9HUnZDblJsOFZDbk5CbUE=", authorization) +16:29:47.490 [XNIO-1 task-4] fK_CX2h0S3WuhM2mRd0J2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.492 [XNIO-1 task-4] fK_CX2h0S3WuhM2mRd0J2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.492 [XNIO-1 task-4] fK_CX2h0S3WuhM2mRd0J2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.492 [XNIO-1 task-4] fK_CX2h0S3WuhM2mRd0J2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", authorization) +16:29:47.501 [XNIO-1 task-4] fK_CX2h0S3WuhM2mRd0J2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.501 [XNIO-1 task-4] fK_CX2h0S3WuhM2mRd0J2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.503 [XNIO-1 task-1] 4ezSJjYUScunO-ikWvuVqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.503 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:eafe7c69-9b97-4515-ac9f-7f7db25a53fd +16:29:47.503 [XNIO-1 task-1] 4ezSJjYUScunO-ikWvuVqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.504 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.504 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.504 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.504 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.505 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ntTsnF4VQiSJBp0dmcr07Q redirectUri = http://localhost:8080/authorization +16:29:47.507 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.507 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.507 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.507 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.508 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.508 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:29:47.508 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY3MDdiNzItNTVkNi00Zjc1LThiNGQtYzJhN2E1MTE1ZDMxOnJUWl9KQ0pFUjVxc21jVE8zSHFNeHc=", "Basic NjY3MDdiNzItNTVkNi00Zjc1LThiNGQtYzJhN2E1MTE1ZDMxOnJUWl9KQ0pFUjVxc21jVE8zSHFNeHc=", authorization) +16:29:47.508 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.512 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +16:29:47.512 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.512 [XNIO-1 task-2] ckNX6dHBSQKKMNQoQG5moQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.516 [XNIO-1 task-1] cZ0MQ5A1SrGNfbmUJ7Zolg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.522 [XNIO-1 task-1] KsdVvcYzRuG6Z9LZ6U4a9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.522 [XNIO-1 task-1] KsdVvcYzRuG6Z9LZ6U4a9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +16:29:47.522 [XNIO-1 task-1] KsdVvcYzRuG6Z9LZ6U4a9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +16:29:47.522 [XNIO-1 task-1] KsdVvcYzRuG6Z9LZ6U4a9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +16:29:47.528 [XNIO-1 task-1] KsdVvcYzRuG6Z9LZ6U4a9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + +16:29:47.528 [XNIO-1 task-1] KsdVvcYzRuG6Z9LZ6U4a9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.530 [XNIO-1 task-2] ARs0Ym-yRv-Vnw23IawlmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.530 [XNIO-1 task-2] ARs0Ym-yRv-Vnw23IawlmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.531 [XNIO-1 task-2] ARs0Ym-yRv-Vnw23IawlmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.532 [XNIO-1 task-2] ARs0Ym-yRv-Vnw23IawlmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CgpxjQ-XRrm0VCVEgCwAYA redirectUri = http://localhost:8080/authorization +16:29:47.534 [XNIO-1 task-1] VSaFqDNXTQCsoYpy2W4IeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.534 [XNIO-1 task-1] VSaFqDNXTQCsoYpy2W4IeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.535 [XNIO-1 task-1] VSaFqDNXTQCsoYpy2W4IeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.535 [XNIO-1 task-1] VSaFqDNXTQCsoYpy2W4IeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.541 [XNIO-1 task-1] VSaFqDNXTQCsoYpy2W4IeQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.541 [XNIO-1 task-2] ARs0Ym-yRv-Vnw23IawlmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.548 [XNIO-1 task-1] SffQGnzXR5SbcFypFjeJhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.549 [XNIO-1 task-1] SffQGnzXR5SbcFypFjeJhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.549 [XNIO-1 task-1] SffQGnzXR5SbcFypFjeJhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.550 [XNIO-1 task-1] SffQGnzXR5SbcFypFjeJhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY3MDdiNzItNTVkNi00Zjc1LThiNGQtYzJhN2E1MTE1ZDMxOnJUWl9KQ0pFUjVxc21jVE8zSHFNeHc=", "Basic NjY3MDdiNzItNTVkNi00Zjc1LThiNGQtYzJhN2E1MTE1ZDMxOnJUWl9KQ0pFUjVxc21jVE8zSHFNeHc=", authorization) +16:29:47.556 [XNIO-1 task-2] rOc-ycCURRCyzAMo5V0-Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.556 [XNIO-1 task-2] rOc-ycCURRCyzAMo5V0-Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.556 [XNIO-1 task-1] SffQGnzXR5SbcFypFjeJhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.557 [XNIO-1 task-2] rOc-ycCURRCyzAMo5V0-Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.557 [XNIO-1 task-2] rOc-ycCURRCyzAMo5V0-Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", "Basic MmFiNmE0MGQtODQ1NS00N2ZmLWJmMjAtZDQzOTM5OWRiZDU0OllVY3N5YnJVVEkyZm5lZXEtcndNRWc=", authorization) +16:29:47.561 [XNIO-1 task-1] 4COJhE12Stmf0YX889xf_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.561 [XNIO-1 task-1] 4COJhE12Stmf0YX889xf_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.562 [XNIO-1 task-1] 4COJhE12Stmf0YX889xf_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.562 [XNIO-1 task-1] 4COJhE12Stmf0YX889xf_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTllZDJmZjctMDc2My00ZWEyLWE4YzEtY2VmNzM2MTFmOTM0Ok5RZEFVR1FkVGhHMWNWSmluWmt5cmc=", "Basic NTllZDJmZjctMDc2My00ZWEyLWE4YzEtY2VmNzM2MTFmOTM0Ok5RZEFVR1FkVGhHMWNWSmluWmt5cmc=", authorization) +16:29:47.566 [XNIO-1 task-2] rOc-ycCURRCyzAMo5V0-Mg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.569 [XNIO-1 task-1] 4COJhE12Stmf0YX889xf_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.575 [XNIO-1 task-1] nxPsw4YXSLemqf_58hQWKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.575 [XNIO-1 task-1] nxPsw4YXSLemqf_58hQWKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.575 [XNIO-1 task-1] nxPsw4YXSLemqf_58hQWKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.576 [XNIO-1 task-1] nxPsw4YXSLemqf_58hQWKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", authorization) +16:29:47.578 [XNIO-1 task-2] 8qqivDiVSya4ZRS0XFEofQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.578 [XNIO-1 task-2] 8qqivDiVSya4ZRS0XFEofQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.578 [XNIO-1 task-2] 8qqivDiVSya4ZRS0XFEofQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.578 [XNIO-1 task-2] 8qqivDiVSya4ZRS0XFEofQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTllZDJmZjctMDc2My00ZWEyLWE4YzEtY2VmNzM2MTFmOTM0Ok5RZEFVR1FkVGhHMWNWSmluWmt5cmc=", "Basic NTllZDJmZjctMDc2My00ZWEyLWE4YzEtY2VmNzM2MTFmOTM0Ok5RZEFVR1FkVGhHMWNWSmluWmt5cmc=", authorization) +16:29:47.582 [XNIO-1 task-1] nxPsw4YXSLemqf_58hQWKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.582 [XNIO-1 task-1] nxPsw4YXSLemqf_58hQWKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.584 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:be941fec-b3fd-4f02-8ed5-42ed07afe63b +16:29:47.589 [XNIO-1 task-2] 8qqivDiVSya4ZRS0XFEofQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.596 [XNIO-1 task-4] 1do833vTQT6V1hGPKm33UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.596 [XNIO-1 task-4] 1do833vTQT6V1hGPKm33UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.596 [XNIO-1 task-4] 1do833vTQT6V1hGPKm33UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.596 [XNIO-1 task-4] 1do833vTQT6V1hGPKm33UA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jXg6FNkpSpiAkdsL_t0RyA redirectUri = http://localhost:8080/authorization +16:29:47.602 [XNIO-1 task-1] YPRD1DnnQ2-rFVBXrtTh3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.602 [XNIO-1 task-1] YPRD1DnnQ2-rFVBXrtTh3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.602 [XNIO-1 task-1] YPRD1DnnQ2-rFVBXrtTh3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.602 [XNIO-1 task-1] YPRD1DnnQ2-rFVBXrtTh3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.604 [XNIO-1 task-4] 1do833vTQT6V1hGPKm33UA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.608 [XNIO-1 task-1] YPRD1DnnQ2-rFVBXrtTh3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.612 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ec62d610-b4d9-4021-9ea2-b447b6fdb72f +16:29:47.615 [XNIO-1 task-1] hm1_lV4CTVWbgiEyDfY3Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.615 [XNIO-1 task-1] hm1_lV4CTVWbgiEyDfY3Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.615 [XNIO-1 task-1] hm1_lV4CTVWbgiEyDfY3Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.615 [XNIO-1 task-1] hm1_lV4CTVWbgiEyDfY3Fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.617 [XNIO-1 task-4] xO1xyE6lSF60S4pqADf3fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.617 [XNIO-1 task-4] xO1xyE6lSF60S4pqADf3fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.618 [XNIO-1 task-4] xO1xyE6lSF60S4pqADf3fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.618 [XNIO-1 task-4] xO1xyE6lSF60S4pqADf3fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 04df6f78-0bc4-4746-9a6c-1df09208ecd7 scope = null +16:29:47.620 [XNIO-1 task-1] hm1_lV4CTVWbgiEyDfY3Fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.628 [XNIO-1 task-1] mnilc6asTNefuln0J-9acg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.629 [XNIO-1 task-1] mnilc6asTNefuln0J-9acg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.629 [XNIO-1 task-1] mnilc6asTNefuln0J-9acg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.629 [XNIO-1 task-1] mnilc6asTNefuln0J-9acg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.632 [XNIO-1 task-4] xO1xyE6lSF60S4pqADf3fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.634 [XNIO-1 task-1] mnilc6asTNefuln0J-9acg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.641 [XNIO-1 task-4] -c_ZMIJ0Ry-NbZDotfCSXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.641 [XNIO-1 task-4] -c_ZMIJ0Ry-NbZDotfCSXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.643 [XNIO-1 task-4] -c_ZMIJ0Ry-NbZDotfCSXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.643 [XNIO-1 task-4] -c_ZMIJ0Ry-NbZDotfCSXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzRiZWYwZDctMjFmNS00YjZhLWI3NmItNDUwZmJhZDZhYzdjOmU0MTUzMGdLUi1lclFwZUFpYlJxTXc=", "Basic YzRiZWYwZDctMjFmNS00YjZhLWI3NmItNDUwZmJhZDZhYzdjOmU0MTUzMGdLUi1lclFwZUFpYlJxTXc=", authorization) +16:29:47.645 [XNIO-1 task-1] zXH_cZS2QDeisgh9bWnGVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.645 [XNIO-1 task-1] zXH_cZS2QDeisgh9bWnGVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.646 [XNIO-1 task-1] zXH_cZS2QDeisgh9bWnGVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.646 [XNIO-1 task-1] zXH_cZS2QDeisgh9bWnGVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg1NzNjMmQtNTg0Ny00NTBhLThiODAtYmQyOTA3MGFmZmQxOjVYckpTc09nVGstSjExWHNJcXcxNWc=", "Basic Yjg1NzNjMmQtNTg0Ny00NTBhLThiODAtYmQyOTA3MGFmZmQxOjVYckpTc09nVGstSjExWHNJcXcxNWc=", authorization) +16:29:47.649 [XNIO-1 task-4] -c_ZMIJ0Ry-NbZDotfCSXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.650 [XNIO-1 task-2] KuCPu9JtSt6UZHGzrrgGog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.650 [XNIO-1 task-2] KuCPu9JtSt6UZHGzrrgGog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.651 [XNIO-1 task-2] KuCPu9JtSt6UZHGzrrgGog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.651 [XNIO-1 task-2] KuCPu9JtSt6UZHGzrrgGog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", "Basic YzQ0YmJiNjItNDExMi00MTg1LTg1ZTUtM2ZmODIzYjM0OWNjOjBYV2F4RS14Ui1Da21UcnhtWmFTUEE=", authorization) +16:29:47.653 [XNIO-1 task-4] hFxZ1S7ARVKCN_37V9ejlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.653 [XNIO-1 task-4] hFxZ1S7ARVKCN_37V9ejlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.653 [XNIO-1 task-4] hFxZ1S7ARVKCN_37V9ejlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.654 [XNIO-1 task-4] hFxZ1S7ARVKCN_37V9ejlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:47.658 [XNIO-1 task-1] zXH_cZS2QDeisgh9bWnGVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.668 [XNIO-1 task-2] KuCPu9JtSt6UZHGzrrgGog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:29:47.668 [XNIO-1 task-2] KuCPu9JtSt6UZHGzrrgGog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.668 [XNIO-1 task-2] KuCPu9JtSt6UZHGzrrgGog INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.678 [XNIO-1 task-1] HoQuoAqXQ8y-nHPMqMy6oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.678 [XNIO-1 task-1] HoQuoAqXQ8y-nHPMqMy6oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.702 [XNIO-1 task-4] k9WL1INQQaOn7AG7IQSXkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.702 [XNIO-1 task-4] k9WL1INQQaOn7AG7IQSXkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.732 [XNIO-1 task-4] k9WL1INQQaOn7AG7IQSXkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.732 [XNIO-1 task-1] HoQuoAqXQ8y-nHPMqMy6oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.732 [XNIO-1 task-1] HoQuoAqXQ8y-nHPMqMy6oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.732 [XNIO-1 task-4] k9WL1INQQaOn7AG7IQSXkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg1NzNjMmQtNTg0Ny00NTBhLThiODAtYmQyOTA3MGFmZmQxOjVYckpTc09nVGstSjExWHNJcXcxNWc=", "Basic Yjg1NzNjMmQtNTg0Ny00NTBhLThiODAtYmQyOTA3MGFmZmQxOjVYckpTc09nVGstSjExWHNJcXcxNWc=", authorization) +16:29:47.732 [XNIO-1 task-1] HoQuoAqXQ8y-nHPMqMy6oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:29:47.740 [XNIO-1 task-4] k9WL1INQQaOn7AG7IQSXkg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +16:29:47.741 [XNIO-1 task-1] tmi1VBW2QGedQmgFj112wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.741 [XNIO-1 task-1] tmi1VBW2QGedQmgFj112wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.742 [XNIO-1 task-1] tmi1VBW2QGedQmgFj112wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.742 [XNIO-1 task-1] tmi1VBW2QGedQmgFj112wA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGIyNTk5ZWQtZTUwZi00NmMwLWIyNTQtNTU4YmU1OGU4MDNkOmlKcEFWSHpfVHYteTJHcGh4UDhyWkE=", "Basic NGIyNTk5ZWQtZTUwZi00NmMwLWIyNTQtNTU4YmU1OGU4MDNkOmlKcEFWSHpfVHYteTJHcGh4UDhyWkE=", authorization) +16:29:47.744 [XNIO-1 task-2] y-JDOCfZRUGMdm_0kanUJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:47.744 [XNIO-1 task-2] y-JDOCfZRUGMdm_0kanUJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.744 [XNIO-1 task-2] y-JDOCfZRUGMdm_0kanUJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.745 [XNIO-1 task-2] y-JDOCfZRUGMdm_0kanUJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:47.745 [XNIO-1 task-2] y-JDOCfZRUGMdm_0kanUJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:47.758 [XNIO-1 task-4] qLG1DxiDRKyLBvzqf3rQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.758 [XNIO-1 task-4] qLG1DxiDRKyLBvzqf3rQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.758 [XNIO-1 task-4] qLG1DxiDRKyLBvzqf3rQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.759 [XNIO-1 task-4] qLG1DxiDRKyLBvzqf3rQ5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.760 [XNIO-1 task-1] zddk2YXfTPOxJ3FzN0cXcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.760 [XNIO-1 task-1] zddk2YXfTPOxJ3FzN0cXcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.761 [XNIO-1 task-1] zddk2YXfTPOxJ3FzN0cXcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.761 [XNIO-1 task-1] zddk2YXfTPOxJ3FzN0cXcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5f42282e-c9ff-408f-9063-aa8bf2e0182d scope = null +16:29:47.762 [XNIO-1 task-2] AHDwNUM_Q7-qt2GRqEmxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.762 [XNIO-1 task-2] AHDwNUM_Q7-qt2GRqEmxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.762 [XNIO-1 task-2] AHDwNUM_Q7-qt2GRqEmxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.762 [XNIO-1 task-2] AHDwNUM_Q7-qt2GRqEmxuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 81f4fef0-10ec-4d38-a4f2-573867c7884c scope = null +16:29:47.766 [XNIO-1 task-4] qLG1DxiDRKyLBvzqf3rQ5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.768 [XNIO-1 task-1] zddk2YXfTPOxJ3FzN0cXcA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:29:47.770 [XNIO-1 task-4] 6BXmaDT5TIqyrczeakiiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.770 [XNIO-1 task-4] 6BXmaDT5TIqyrczeakiiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:47.770 [XNIO-1 task-4] 6BXmaDT5TIqyrczeakiiUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.770 [XNIO-1 task-4] 6BXmaDT5TIqyrczeakiiUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", "Basic Zjc1MjllN2UtYWNlMC00ZTM2LWFlZDItNDUzNTk5OGVhZTBmOnlJSHBkWEZOUTAyeE8tV0gzZUN1U3c=", authorization) +16:29:47.773 [XNIO-1 task-2] AHDwNUM_Q7-qt2GRqEmxuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.774 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:29873664-c9ec-44ba-af51-7b508c12015d +16:29:47.775 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:29873664-c9ec-44ba-af51-7b508c12015d +16:29:47.776 [XNIO-1 task-4] 6BXmaDT5TIqyrczeakiiUw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.780 [XNIO-1 task-4] 9fcvgj9UTp2tXYEXorl0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.781 [XNIO-1 task-4] 9fcvgj9UTp2tXYEXorl0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.781 [XNIO-1 task-4] 9fcvgj9UTp2tXYEXorl0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.782 [XNIO-1 task-4] 9fcvgj9UTp2tXYEXorl0Yg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.784 [XNIO-1 task-2] CTsqyavZSfmAxsOOIxM6QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.785 [XNIO-1 task-2] CTsqyavZSfmAxsOOIxM6QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.785 [XNIO-1 task-2] CTsqyavZSfmAxsOOIxM6QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.785 [XNIO-1 task-2] CTsqyavZSfmAxsOOIxM6QQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 29873664-c9ec-44ba-af51-7b508c12015d scope = null +16:29:47.787 [XNIO-1 task-4] 9fcvgj9UTp2tXYEXorl0Yg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.788 [XNIO-1 task-1] jkWBBKQjS7CyliAh6FeQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.788 [XNIO-1 task-1] jkWBBKQjS7CyliAh6FeQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.788 [XNIO-1 task-1] jkWBBKQjS7CyliAh6FeQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.789 [XNIO-1 task-1] jkWBBKQjS7CyliAh6FeQBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BCZzSA_RSN-U_KPQd9alzg redirectUri = http://localhost:8080/authorization +16:29:47.794 [XNIO-1 task-2] CTsqyavZSfmAxsOOIxM6QQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.795 [XNIO-1 task-4] i3fJAM_dTB2LVC6XOGQfuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.796 [XNIO-1 task-1] jkWBBKQjS7CyliAh6FeQBQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.795 [XNIO-1 task-4] i3fJAM_dTB2LVC6XOGQfuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.796 [XNIO-1 task-4] i3fJAM_dTB2LVC6XOGQfuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.796 [XNIO-1 task-4] i3fJAM_dTB2LVC6XOGQfuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.797 [XNIO-1 task-4] i3fJAM_dTB2LVC6XOGQfuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.803 [XNIO-1 task-4] i3fJAM_dTB2LVC6XOGQfuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.812 [XNIO-1 task-4] -R-Fs4v3RP29BPG82vSxsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.812 [XNIO-1 task-4] -R-Fs4v3RP29BPG82vSxsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.812 [XNIO-1 task-1] 0fYoXutpTvSwbPlKQ3xpTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.812 [XNIO-1 task-1] 0fYoXutpTvSwbPlKQ3xpTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.812 [XNIO-1 task-4] -R-Fs4v3RP29BPG82vSxsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.812 [XNIO-1 task-1] 0fYoXutpTvSwbPlKQ3xpTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.813 [XNIO-1 task-4] -R-Fs4v3RP29BPG82vSxsA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGIyNTk5ZWQtZTUwZi00NmMwLWIyNTQtNTU4YmU1OGU4MDNkOmlKcEFWSHpfVHYteTJHcGh4UDhyWkE=", "Basic NGIyNTk5ZWQtZTUwZi00NmMwLWIyNTQtNTU4YmU1OGU4MDNkOmlKcEFWSHpfVHYteTJHcGh4UDhyWkE=", authorization) +16:29:47.813 [XNIO-1 task-4] -R-Fs4v3RP29BPG82vSxsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d6b678e2-5943-4f0b-9296-b0c0a6708bc0 scope = null +16:29:47.818 [XNIO-1 task-1] 0fYoXutpTvSwbPlKQ3xpTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.823 [XNIO-1 task-1] 83eZWi90SkW68fjk9Cjiog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.823 [XNIO-1 task-1] 83eZWi90SkW68fjk9Cjiog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.823 [XNIO-1 task-4] -R-Fs4v3RP29BPG82vSxsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.824 [XNIO-1 task-1] 83eZWi90SkW68fjk9Cjiog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.824 [XNIO-1 task-1] 83eZWi90SkW68fjk9Cjiog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.830 [XNIO-1 task-1] 83eZWi90SkW68fjk9Cjiog INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:29:47.837 [XNIO-1 task-4] YSYYCFRaRaKeWMN5l2jDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.837 [XNIO-1 task-4] YSYYCFRaRaKeWMN5l2jDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.837 [XNIO-1 task-4] YSYYCFRaRaKeWMN5l2jDwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:29:47.838 [XNIO-1 task-4] YSYYCFRaRaKeWMN5l2jDwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:29:47.841 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a378d980 +16:29:47.847 [XNIO-1 task-4] YSYYCFRaRaKeWMN5l2jDwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:29:47.847 [XNIO-1 task-1] QgHeheBNR3i4fMxASYUhBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.847 [XNIO-1 task-1] QgHeheBNR3i4fMxASYUhBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.848 [XNIO-1 task-1] QgHeheBNR3i4fMxASYUhBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.848 [XNIO-1 task-1] QgHeheBNR3i4fMxASYUhBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjMwYzBiNzItZWMyNi00ZmJiLThjMzYtNzAwMmE4ZGE3MmJhOkRzS2UwQk81UVdTNmZVc3gyc0xmS2c=", "Basic MjMwYzBiNzItZWMyNi00ZmJiLThjMzYtNzAwMmE4ZGE3MmJhOkRzS2UwQk81UVdTNmZVc3gyc0xmS2c=", authorization) +16:29:47.856 [XNIO-1 task-4] sIbjZibYQxaG88iacR-8oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.856 [XNIO-1 task-4] sIbjZibYQxaG88iacR-8oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:29:47.856 [XNIO-1 task-4] sIbjZibYQxaG88iacR-8oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:29:47.856 [XNIO-1 task-4] sIbjZibYQxaG88iacR-8oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", "Basic ZGVlZWE4NDItN2I1ZC00MWY0LWFmNzItNjk2NGViM2E2ZDg0OkFhUHlmaGY0VF9TME42WXRiNHlHdlE=", authorization) diff --git a/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-user-1.log b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..a9ac654 --- /dev/null +++ b/log_data/LO2/Labeled/correct_1/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1628 @@ +16:29:38.905 [XNIO-1 task-1] AQcXXv_TSwqJxfy_HIoukA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.933 [XNIO-1 task-1] 7YpbpMxfSD6GZb1WwrBIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.933 [XNIO-1 task-1] 7YpbpMxfSD6GZb1WwrBIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.936 [XNIO-1 task-1] 7YpbpMxfSD6GZb1WwrBIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.937 [XNIO-1 task-1] 7YpbpMxfSD6GZb1WwrBIQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.946 [XNIO-1 task-1] niVQYNzBSvKoTh2-KTtrng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:38.947 [XNIO-1 task-1] niVQYNzBSvKoTh2-KTtrng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:38.947 [XNIO-1 task-1] niVQYNzBSvKoTh2-KTtrng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:38.949 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:29098e38 +16:29:38.961 [XNIO-1 task-1] QHQDeUfNS7eWQiGICSFuWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f4446d34, base path is set to: null +16:29:38.961 [XNIO-1 task-1] QHQDeUfNS7eWQiGICSFuWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:38.961 [XNIO-1 task-1] QHQDeUfNS7eWQiGICSFuWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:38.961 [XNIO-1 task-1] QHQDeUfNS7eWQiGICSFuWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f4446d34, base path is set to: null +16:29:38.962 [XNIO-1 task-1] QHQDeUfNS7eWQiGICSFuWA DEBUG com.networknt.schema.TypeValidator debug - validate( "f4446d34", "f4446d34", userId) +16:29:38.969 [XNIO-1 task-1] BeiG5J3XTRKmtWy89YDnjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.970 [XNIO-1 task-1] BeiG5J3XTRKmtWy89YDnjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.970 [XNIO-1 task-1] BeiG5J3XTRKmtWy89YDnjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.971 [XNIO-1 task-1] BeiG5J3XTRKmtWy89YDnjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:38.981 [XNIO-1 task-1] Gb9I2aPERmaBp_erx9seQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.981 [XNIO-1 task-1] Gb9I2aPERmaBp_erx9seQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.982 [XNIO-1 task-1] Gb9I2aPERmaBp_erx9seQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:38.993 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ee5fb220 +16:29:39.015 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ee5fb220 +16:29:39.016 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2af7cba0-f8ec-405a-9f76-73361d607b1e +16:29:39.016 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1330243b +16:29:39.032 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1330243b +16:29:39.036 [XNIO-1 task-1] _tr9k7osRymJhnrlFuoykQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.036 [XNIO-1 task-1] _tr9k7osRymJhnrlFuoykQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.038 [XNIO-1 task-1] _tr9k7osRymJhnrlFuoykQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.051 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:29098e38 +16:29:39.154 [XNIO-1 task-1] 2k7LIcCsRBKe9R6SLQAUng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.154 [XNIO-1 task-1] 2k7LIcCsRBKe9R6SLQAUng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.154 [XNIO-1 task-1] 2k7LIcCsRBKe9R6SLQAUng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.235 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e1598e7f-fa18-45d6-ad14-5330767b6e38 +16:29:39.243 [XNIO-1 task-1] cHqF8GkIRH2O2-ko91OR5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ee5fb220 +16:29:39.243 [XNIO-1 task-1] cHqF8GkIRH2O2-ko91OR5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.243 [XNIO-1 task-1] cHqF8GkIRH2O2-ko91OR5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:39.244 [XNIO-1 task-1] cHqF8GkIRH2O2-ko91OR5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ee5fb220 +16:29:39.251 [XNIO-1 task-1] 1dp_py7US8-DzF1kVYAB5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.251 [XNIO-1 task-1] 1dp_py7US8-DzF1kVYAB5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.252 [XNIO-1 task-1] 1dp_py7US8-DzF1kVYAB5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.252 [XNIO-1 task-1] 1dp_py7US8-DzF1kVYAB5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.263 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1abc349b-4fa2-400f-805c-0bb6d9fce578 +16:29:39.263 [XNIO-1 task-1] _bfsh5tYQAWUr7nKTmDz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8abaeec2 +16:29:39.263 [XNIO-1 task-1] _bfsh5tYQAWUr7nKTmDz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.264 [XNIO-1 task-1] _bfsh5tYQAWUr7nKTmDz7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:39.264 [XNIO-1 task-1] _bfsh5tYQAWUr7nKTmDz7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8abaeec2, base path is set to: null +16:29:39.264 [XNIO-1 task-1] _bfsh5tYQAWUr7nKTmDz7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8abaeec2", "8abaeec2", userId) +16:29:39.292 [XNIO-1 task-1] mWHxDbnTRRqNC2qCg9vxWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.292 [XNIO-1 task-1] mWHxDbnTRRqNC2qCg9vxWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.293 [XNIO-1 task-1] mWHxDbnTRRqNC2qCg9vxWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.392 [XNIO-1 task-1] Fll5exB_THCEKeUG2jNepA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8abaeec2, base path is set to: null +16:29:39.392 [XNIO-1 task-1] Fll5exB_THCEKeUG2jNepA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.392 [XNIO-1 task-1] Fll5exB_THCEKeUG2jNepA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:39.392 [XNIO-1 task-1] Fll5exB_THCEKeUG2jNepA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8abaeec2, base path is set to: null +16:29:39.393 [XNIO-1 task-1] Fll5exB_THCEKeUG2jNepA DEBUG com.networknt.schema.TypeValidator debug - validate( "8abaeec2", "8abaeec2", userId) +16:29:39.410 [XNIO-1 task-1] BhajBmP9QGSXloKXRyuRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.410 [XNIO-1 task-1] BhajBmP9QGSXloKXRyuRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.410 [XNIO-1 task-1] BhajBmP9QGSXloKXRyuRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.411 [XNIO-1 task-1] BhajBmP9QGSXloKXRyuRrA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.423 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8abaeec2 +16:29:39.423 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.423 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:39.423 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:39.424 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8abaeec2 +16:29:39.424 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9f32e71e-6c27-4839-bcb2-3dbd80ec251a","newPassword":"ca63151d-77b9-45ee-8e7e-c1bea9181995","newPasswordConfirm":"ca63151d-77b9-45ee-8e7e-c1bea9181995"}, {"password":"9f32e71e-6c27-4839-bcb2-3dbd80ec251a","newPassword":"ca63151d-77b9-45ee-8e7e-c1bea9181995","newPasswordConfirm":"ca63151d-77b9-45ee-8e7e-c1bea9181995"}, requestBody) +16:29:39.425 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9f32e71e-6c27-4839-bcb2-3dbd80ec251a","newPassword":"ca63151d-77b9-45ee-8e7e-c1bea9181995","newPasswordConfirm":"ca63151d-77b9-45ee-8e7e-c1bea9181995"}, {"password":"9f32e71e-6c27-4839-bcb2-3dbd80ec251a","newPassword":"ca63151d-77b9-45ee-8e7e-c1bea9181995","newPasswordConfirm":"ca63151d-77b9-45ee-8e7e-c1bea9181995"}, requestBody) +16:29:39.425 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG com.networknt.schema.FormatValidator debug - validate( "ca63151d-77b9-45ee-8e7e-c1bea9181995", {"password":"9f32e71e-6c27-4839-bcb2-3dbd80ec251a","newPassword":"ca63151d-77b9-45ee-8e7e-c1bea9181995","newPasswordConfirm":"ca63151d-77b9-45ee-8e7e-c1bea9181995"}, requestBody.newPasswordConfirm) +16:29:39.425 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG com.networknt.schema.FormatValidator debug - validate( "9f32e71e-6c27-4839-bcb2-3dbd80ec251a", {"password":"9f32e71e-6c27-4839-bcb2-3dbd80ec251a","newPassword":"ca63151d-77b9-45ee-8e7e-c1bea9181995","newPasswordConfirm":"ca63151d-77b9-45ee-8e7e-c1bea9181995"}, requestBody.password) +16:29:39.425 [XNIO-1 task-1] E37rAABOR8KjVtK0McJPog DEBUG com.networknt.schema.FormatValidator debug - validate( "ca63151d-77b9-45ee-8e7e-c1bea9181995", {"password":"9f32e71e-6c27-4839-bcb2-3dbd80ec251a","newPassword":"ca63151d-77b9-45ee-8e7e-c1bea9181995","newPasswordConfirm":"ca63151d-77b9-45ee-8e7e-c1bea9181995"}, requestBody.newPassword) +16:29:39.452 [XNIO-1 task-1] gHIZ23BxQ527AaFm51gyiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f4446d34 +16:29:39.453 [XNIO-1 task-1] gHIZ23BxQ527AaFm51gyiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.453 [XNIO-1 task-1] gHIZ23BxQ527AaFm51gyiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:39.453 [XNIO-1 task-1] gHIZ23BxQ527AaFm51gyiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f4446d34 +16:29:39.518 [XNIO-1 task-1] PJrnwzRmRdu91AH84RMejg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.518 [XNIO-1 task-1] PJrnwzRmRdu91AH84RMejg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.519 [XNIO-1 task-1] PJrnwzRmRdu91AH84RMejg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.548 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2af7cba0-f8ec-405a-9f76-73361d607b1e +16:29:39.572 [XNIO-1 task-1] mRzvLAuNSm6zdKYq5Kb5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bb7b4b6c +16:29:39.573 [XNIO-1 task-1] mRzvLAuNSm6zdKYq5Kb5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.573 [XNIO-1 task-1] mRzvLAuNSm6zdKYq5Kb5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:39.573 [XNIO-1 task-1] mRzvLAuNSm6zdKYq5Kb5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bb7b4b6c +16:29:39.612 [XNIO-1 task-1] 6PB7YpgNQHKc4v-KMa0gtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ee5fb220, base path is set to: null +16:29:39.612 [XNIO-1 task-1] 6PB7YpgNQHKc4v-KMa0gtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.612 [XNIO-1 task-1] 6PB7YpgNQHKc4v-KMa0gtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:39.612 [XNIO-1 task-1] 6PB7YpgNQHKc4v-KMa0gtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ee5fb220, base path is set to: null +16:29:39.613 [XNIO-1 task-1] 6PB7YpgNQHKc4v-KMa0gtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee5fb220", "ee5fb220", userId) +16:29:39.616 [XNIO-1 task-1] pjqx2dMAQZuBKst6eNFBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ee5fb220 +16:29:39.617 [XNIO-1 task-1] pjqx2dMAQZuBKst6eNFBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.617 [XNIO-1 task-1] pjqx2dMAQZuBKst6eNFBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:39.617 [XNIO-1 task-1] pjqx2dMAQZuBKst6eNFBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ee5fb220 +16:29:39.618 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ee5fb220 +16:29:39.627 [XNIO-1 task-1] za5WOkVcRyC1ckuhK0uoAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.628 [XNIO-1 task-1] za5WOkVcRyC1ckuhK0uoAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.629 [XNIO-1 task-1] za5WOkVcRyC1ckuhK0uoAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.680 [XNIO-1 task-1] Y_cTferhQnmWdvjXRAMhxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.680 [XNIO-1 task-1] Y_cTferhQnmWdvjXRAMhxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.681 [XNIO-1 task-1] Y_cTferhQnmWdvjXRAMhxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.707 [XNIO-1 task-1] KdgKNCETRIWz19X24LJNcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.707 [XNIO-1 task-1] KdgKNCETRIWz19X24LJNcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.707 [XNIO-1 task-1] KdgKNCETRIWz19X24LJNcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.708 [XNIO-1 task-1] KdgKNCETRIWz19X24LJNcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:39.753 [XNIO-1 task-1] vLkc9cg1QvuyZ1cAy_5-qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:39.753 [XNIO-1 task-1] vLkc9cg1QvuyZ1cAy_5-qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.753 [XNIO-1 task-1] vLkc9cg1QvuyZ1cAy_5-qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:39.754 [XNIO-1 task-1] vLkc9cg1QvuyZ1cAy_5-qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:39.760 [XNIO-1 task-1] eE9Kwc94Qg2r7WdKRm1HNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.760 [XNIO-1 task-1] eE9Kwc94Qg2r7WdKRm1HNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.760 [XNIO-1 task-1] eE9Kwc94Qg2r7WdKRm1HNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.761 [XNIO-1 task-1] eE9Kwc94Qg2r7WdKRm1HNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.776 [XNIO-1 task-1] eEQr0YG3QyuSNo0fulR_gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.777 [XNIO-1 task-1] eEQr0YG3QyuSNo0fulR_gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.777 [XNIO-1 task-1] eEQr0YG3QyuSNo0fulR_gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.778 [XNIO-1 task-1] eEQr0YG3QyuSNo0fulR_gA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:39.786 [XNIO-1 task-1] RIwX9SyBQWOooT9Yro1ekw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.787 [XNIO-1 task-1] RIwX9SyBQWOooT9Yro1ekw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.787 [XNIO-1 task-1] RIwX9SyBQWOooT9Yro1ekw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:39.832 [XNIO-1 task-1] 2cikaoOeQr-pqMR37m1CBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8abaeec2, base path is set to: null +16:29:39.832 [XNIO-1 task-1] 2cikaoOeQr-pqMR37m1CBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.832 [XNIO-1 task-1] 2cikaoOeQr-pqMR37m1CBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:39.832 [XNIO-1 task-1] 2cikaoOeQr-pqMR37m1CBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8abaeec2, base path is set to: null +16:29:39.834 [XNIO-1 task-1] 2cikaoOeQr-pqMR37m1CBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8abaeec2", "8abaeec2", userId) +16:29:39.865 [XNIO-1 task-1] FIOV00PcRqu-cnY_XywpTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3150012d +16:29:39.882 [XNIO-1 task-1] FIOV00PcRqu-cnY_XywpTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:39.882 [XNIO-1 task-1] FIOV00PcRqu-cnY_XywpTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:39.882 [XNIO-1 task-1] FIOV00PcRqu-cnY_XywpTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3150012d +16:29:39.947 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:39.947 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:39.947 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:39.947 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:39.949 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:39.975 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "e5261506", "e5261506", userId) +16:29:39.976 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cbcd5295-8df3-450d-b15c-db04263b0d5b","newPassword":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPasswordConfirm":"0f5a6079-6083-4ac8-9379-b53c4d45ced4"}, {"password":"cbcd5295-8df3-450d-b15c-db04263b0d5b","newPassword":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPasswordConfirm":"0f5a6079-6083-4ac8-9379-b53c4d45ced4"}, requestBody) +16:29:39.976 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "0f5a6079-6083-4ac8-9379-b53c4d45ced4", {"password":"cbcd5295-8df3-450d-b15c-db04263b0d5b","newPassword":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPasswordConfirm":"0f5a6079-6083-4ac8-9379-b53c4d45ced4"}, requestBody.newPasswordConfirm) +16:29:39.976 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "cbcd5295-8df3-450d-b15c-db04263b0d5b", {"password":"cbcd5295-8df3-450d-b15c-db04263b0d5b","newPassword":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPasswordConfirm":"0f5a6079-6083-4ac8-9379-b53c4d45ced4"}, requestBody.password) +16:29:39.976 [XNIO-1 task-1] KfdLaZH8TReFkJKtKjMW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "0f5a6079-6083-4ac8-9379-b53c4d45ced4", {"password":"cbcd5295-8df3-450d-b15c-db04263b0d5b","newPassword":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPasswordConfirm":"0f5a6079-6083-4ac8-9379-b53c4d45ced4"}, requestBody.newPassword) +16:29:40.009 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:40.009 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.009 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:40.009 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:40.010 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:40.011 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:40.012 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:40.014 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPassword":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPasswordConfirm":"4c6da62d-6efa-486a-b082-6341e66ddb0d"}, {"password":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPassword":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPasswordConfirm":"4c6da62d-6efa-486a-b082-6341e66ddb0d"}, requestBody) +16:29:40.014 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPassword":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPasswordConfirm":"4c6da62d-6efa-486a-b082-6341e66ddb0d"}, {"password":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPassword":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPasswordConfirm":"4c6da62d-6efa-486a-b082-6341e66ddb0d"}, requestBody) +16:29:40.014 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG com.networknt.schema.FormatValidator debug - validate( "4c6da62d-6efa-486a-b082-6341e66ddb0d", {"password":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPassword":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPasswordConfirm":"4c6da62d-6efa-486a-b082-6341e66ddb0d"}, requestBody.newPasswordConfirm) +16:29:40.015 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG com.networknt.schema.FormatValidator debug - validate( "0f5a6079-6083-4ac8-9379-b53c4d45ced4", {"password":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPassword":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPasswordConfirm":"4c6da62d-6efa-486a-b082-6341e66ddb0d"}, requestBody.password) +16:29:40.015 [XNIO-1 task-1] T1cp1laXSsKKHWZBt44WGw DEBUG com.networknt.schema.FormatValidator debug - validate( "4c6da62d-6efa-486a-b082-6341e66ddb0d", {"password":"0f5a6079-6083-4ac8-9379-b53c4d45ced4","newPassword":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPasswordConfirm":"4c6da62d-6efa-486a-b082-6341e66ddb0d"}, requestBody.newPassword) +16:29:40.056 [XNIO-1 task-1] a5fHmXspTeGKsqmxlaUluA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.056 [XNIO-1 task-1] a5fHmXspTeGKsqmxlaUluA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.057 [XNIO-1 task-1] a5fHmXspTeGKsqmxlaUluA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.220 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e5261506 +16:29:40.220 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.220 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:40.220 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:40.221 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e5261506 +16:29:40.223 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPassword":"0eb24650-b632-4292-999b-00de75c5826b","newPasswordConfirm":"0eb24650-b632-4292-999b-00de75c5826b"}, {"password":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPassword":"0eb24650-b632-4292-999b-00de75c5826b","newPasswordConfirm":"0eb24650-b632-4292-999b-00de75c5826b"}, requestBody) +16:29:40.223 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPassword":"0eb24650-b632-4292-999b-00de75c5826b","newPasswordConfirm":"0eb24650-b632-4292-999b-00de75c5826b"}, {"password":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPassword":"0eb24650-b632-4292-999b-00de75c5826b","newPasswordConfirm":"0eb24650-b632-4292-999b-00de75c5826b"}, requestBody) +16:29:40.223 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG com.networknt.schema.FormatValidator debug - validate( "0eb24650-b632-4292-999b-00de75c5826b", {"password":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPassword":"0eb24650-b632-4292-999b-00de75c5826b","newPasswordConfirm":"0eb24650-b632-4292-999b-00de75c5826b"}, requestBody.newPasswordConfirm) +16:29:40.223 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG com.networknt.schema.FormatValidator debug - validate( "4c6da62d-6efa-486a-b082-6341e66ddb0d", {"password":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPassword":"0eb24650-b632-4292-999b-00de75c5826b","newPasswordConfirm":"0eb24650-b632-4292-999b-00de75c5826b"}, requestBody.password) +16:29:40.223 [XNIO-1 task-1] CHEBdBZxRw27Zjpq03LkOA DEBUG com.networknt.schema.FormatValidator debug - validate( "0eb24650-b632-4292-999b-00de75c5826b", {"password":"4c6da62d-6efa-486a-b082-6341e66ddb0d","newPassword":"0eb24650-b632-4292-999b-00de75c5826b","newPasswordConfirm":"0eb24650-b632-4292-999b-00de75c5826b"}, requestBody.newPassword) +16:29:40.249 [XNIO-1 task-1] p5PGpAnZQt6CjNbyZpK9ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.249 [XNIO-1 task-1] p5PGpAnZQt6CjNbyZpK9ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.249 [XNIO-1 task-1] p5PGpAnZQt6CjNbyZpK9ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.349 [XNIO-1 task-1] yt3pIf85SMKIruYctZwIRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:40.349 [XNIO-1 task-1] yt3pIf85SMKIruYctZwIRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.349 [XNIO-1 task-1] yt3pIf85SMKIruYctZwIRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:40.349 [XNIO-1 task-1] yt3pIf85SMKIruYctZwIRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:40.357 [XNIO-1 task-1] I24EhhYtRqapgK6uKc25uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.358 [XNIO-1 task-1] I24EhhYtRqapgK6uKc25uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.358 [XNIO-1 task-1] I24EhhYtRqapgK6uKc25uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.369 [XNIO-1 task-1] kQQ4VH0LSBWXbejUV3PD7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.369 [XNIO-1 task-1] kQQ4VH0LSBWXbejUV3PD7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.371 [XNIO-1 task-1] kQQ4VH0LSBWXbejUV3PD7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.452 [XNIO-1 task-1] sLqsP_EYQfeTosrrkjzMdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.452 [XNIO-1 task-1] sLqsP_EYQfeTosrrkjzMdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.454 [XNIO-1 task-1] sLqsP_EYQfeTosrrkjzMdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.502 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6e58d283, base path is set to: null +16:29:40.502 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.502 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:40.503 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:40.505 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6e58d283, base path is set to: null +16:29:40.507 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e58d283", "6e58d283", userId) +16:29:40.509 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2880fc04-fdd8-44e7-a57d-0a3480d041e4","newPassword":"d011f551-fb20-40ed-823a-c99c4e7ddb0e","newPasswordConfirm":"d011f551-fb20-40ed-823a-c99c4e7ddb0e"}, {"password":"2880fc04-fdd8-44e7-a57d-0a3480d041e4","newPassword":"d011f551-fb20-40ed-823a-c99c4e7ddb0e","newPasswordConfirm":"d011f551-fb20-40ed-823a-c99c4e7ddb0e"}, requestBody) +16:29:40.509 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG com.networknt.schema.TypeValidator debug - validate( "d011f551-fb20-40ed-823a-c99c4e7ddb0e", {"password":"2880fc04-fdd8-44e7-a57d-0a3480d041e4","newPassword":"d011f551-fb20-40ed-823a-c99c4e7ddb0e","newPasswordConfirm":"d011f551-fb20-40ed-823a-c99c4e7ddb0e"}, requestBody.newPasswordConfirm) +16:29:40.509 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG com.networknt.schema.TypeValidator debug - validate( "2880fc04-fdd8-44e7-a57d-0a3480d041e4", {"password":"2880fc04-fdd8-44e7-a57d-0a3480d041e4","newPassword":"d011f551-fb20-40ed-823a-c99c4e7ddb0e","newPasswordConfirm":"d011f551-fb20-40ed-823a-c99c4e7ddb0e"}, requestBody.password) +16:29:40.509 [XNIO-1 task-1] aWq9tdUeSTm0TpWuERogAw DEBUG com.networknt.schema.TypeValidator debug - validate( "d011f551-fb20-40ed-823a-c99c4e7ddb0e", {"password":"2880fc04-fdd8-44e7-a57d-0a3480d041e4","newPassword":"d011f551-fb20-40ed-823a-c99c4e7ddb0e","newPasswordConfirm":"d011f551-fb20-40ed-823a-c99c4e7ddb0e"}, requestBody.newPassword) +16:29:40.537 [XNIO-1 task-1] M5s0-hRVQY-wZu-YQpJtFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.538 [XNIO-1 task-1] M5s0-hRVQY-wZu-YQpJtFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.538 [XNIO-1 task-1] M5s0-hRVQY-wZu-YQpJtFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.538 [XNIO-1 task-1] M5s0-hRVQY-wZu-YQpJtFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:40.548 [XNIO-1 task-1] x1zhXYMnSJGiObrfOMgp8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/65527edb, base path is set to: null +16:29:40.548 [XNIO-1 task-1] x1zhXYMnSJGiObrfOMgp8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.548 [XNIO-1 task-1] x1zhXYMnSJGiObrfOMgp8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:40.549 [XNIO-1 task-1] x1zhXYMnSJGiObrfOMgp8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/65527edb, base path is set to: null +16:29:40.549 [XNIO-1 task-1] x1zhXYMnSJGiObrfOMgp8A DEBUG com.networknt.schema.TypeValidator debug - validate( "65527edb", "65527edb", userId) +16:29:40.557 [XNIO-1 task-1] MGwrnMiGRmGqgaNmcrkmUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.557 [XNIO-1 task-1] MGwrnMiGRmGqgaNmcrkmUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.558 [XNIO-1 task-1] MGwrnMiGRmGqgaNmcrkmUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.604 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:29:40.669 [XNIO-1 task-1] FkLnmA8oRmKJBASLEzOmlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/65527edb, base path is set to: null +16:29:40.669 [XNIO-1 task-1] FkLnmA8oRmKJBASLEzOmlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.669 [XNIO-1 task-1] FkLnmA8oRmKJBASLEzOmlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:40.670 [XNIO-1 task-1] FkLnmA8oRmKJBASLEzOmlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/65527edb, base path is set to: null +16:29:40.670 [XNIO-1 task-1] FkLnmA8oRmKJBASLEzOmlA DEBUG com.networknt.schema.TypeValidator debug - validate( "65527edb", "65527edb", userId) +16:29:40.680 [XNIO-1 task-1] fIK11NwFS7CJAteRiktQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.680 [XNIO-1 task-1] fIK11NwFS7CJAteRiktQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.680 [XNIO-1 task-1] fIK11NwFS7CJAteRiktQCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.714 [XNIO-1 task-1] CKAd8P_YTNms3MCmyyqYdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.714 [XNIO-1 task-1] CKAd8P_YTNms3MCmyyqYdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.714 [XNIO-1 task-1] CKAd8P_YTNms3MCmyyqYdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.715 [XNIO-1 task-1] CKAd8P_YTNms3MCmyyqYdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:40.738 [XNIO-1 task-1] 5d5s4UEYTvaU-KhLhQ9-Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.738 [XNIO-1 task-1] 5d5s4UEYTvaU-KhLhQ9-Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.738 [XNIO-1 task-1] 5d5s4UEYTvaU-KhLhQ9-Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.739 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b6f6678c-6bd1-420d-a78f-ba88ea3a9ede +16:29:40.739 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b6f6678c-6bd1-420d-a78f-ba88ea3a9ede +16:29:40.766 [XNIO-1 task-1] R2ZP8wm2RxqJx_M6G-jCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecd38f46 +16:29:40.766 [XNIO-1 task-1] R2ZP8wm2RxqJx_M6G-jCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.766 [XNIO-1 task-1] R2ZP8wm2RxqJx_M6G-jCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:40.766 [XNIO-1 task-1] R2ZP8wm2RxqJx_M6G-jCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecd38f46 +16:29:40.774 [XNIO-1 task-1] xle_DWNdTdG5S8RZ-bLeHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.774 [XNIO-1 task-1] xle_DWNdTdG5S8RZ-bLeHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:40.774 [XNIO-1 task-1] xle_DWNdTdG5S8RZ-bLeHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:40.801 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d8404fa3 +16:29:40.804 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d8404fa3 +16:29:40.859 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b5f6ee48 +16:29:40.859 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.859 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:40.859 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:40.860 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b5f6ee48 +16:29:40.861 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"305d3d92-14ce-4404-95fb-7f8cf6460ed8","newPassword":"9ba44212-3a66-4d71-905d-5d73176d5c82","newPasswordConfirm":"9ba44212-3a66-4d71-905d-5d73176d5c82"}, {"password":"305d3d92-14ce-4404-95fb-7f8cf6460ed8","newPassword":"9ba44212-3a66-4d71-905d-5d73176d5c82","newPasswordConfirm":"9ba44212-3a66-4d71-905d-5d73176d5c82"}, requestBody) +16:29:40.862 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"305d3d92-14ce-4404-95fb-7f8cf6460ed8","newPassword":"9ba44212-3a66-4d71-905d-5d73176d5c82","newPasswordConfirm":"9ba44212-3a66-4d71-905d-5d73176d5c82"}, {"password":"305d3d92-14ce-4404-95fb-7f8cf6460ed8","newPassword":"9ba44212-3a66-4d71-905d-5d73176d5c82","newPasswordConfirm":"9ba44212-3a66-4d71-905d-5d73176d5c82"}, requestBody) +16:29:40.862 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG com.networknt.schema.FormatValidator debug - validate( "9ba44212-3a66-4d71-905d-5d73176d5c82", {"password":"305d3d92-14ce-4404-95fb-7f8cf6460ed8","newPassword":"9ba44212-3a66-4d71-905d-5d73176d5c82","newPasswordConfirm":"9ba44212-3a66-4d71-905d-5d73176d5c82"}, requestBody.newPasswordConfirm) +16:29:40.863 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG com.networknt.schema.FormatValidator debug - validate( "305d3d92-14ce-4404-95fb-7f8cf6460ed8", {"password":"305d3d92-14ce-4404-95fb-7f8cf6460ed8","newPassword":"9ba44212-3a66-4d71-905d-5d73176d5c82","newPasswordConfirm":"9ba44212-3a66-4d71-905d-5d73176d5c82"}, requestBody.password) +16:29:40.863 [XNIO-1 task-1] vjeP6h_bSSeRoe0ntA4EZw DEBUG com.networknt.schema.FormatValidator debug - validate( "9ba44212-3a66-4d71-905d-5d73176d5c82", {"password":"305d3d92-14ce-4404-95fb-7f8cf6460ed8","newPassword":"9ba44212-3a66-4d71-905d-5d73176d5c82","newPasswordConfirm":"9ba44212-3a66-4d71-905d-5d73176d5c82"}, requestBody.newPassword) +16:29:40.904 [XNIO-1 task-1] yvSRRsbeS7S-EboCvBs1Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.904 [XNIO-1 task-1] yvSRRsbeS7S-EboCvBs1Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.905 [XNIO-1 task-1] yvSRRsbeS7S-EboCvBs1Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.930 [XNIO-1 task-1] 53qFPJnnT_qHKSlU7lkQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.930 [XNIO-1 task-1] 53qFPJnnT_qHKSlU7lkQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.930 [XNIO-1 task-1] 53qFPJnnT_qHKSlU7lkQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.946 [XNIO-1 task-1] d9uxH-Q_QI-rKhBdb3ArUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.946 [XNIO-1 task-1] d9uxH-Q_QI-rKhBdb3ArUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.947 [XNIO-1 task-1] d9uxH-Q_QI-rKhBdb3ArUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.947 [XNIO-1 task-1] d9uxH-Q_QI-rKhBdb3ArUA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:40.951 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d8404fa3 +16:29:40.989 [XNIO-1 task-1] eSPIxJtRRjudrMXNOABnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.990 [XNIO-1 task-1] eSPIxJtRRjudrMXNOABnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:40.990 [XNIO-1 task-1] eSPIxJtRRjudrMXNOABnbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.041 [XNIO-1 task-1] lg6XFiM-Tvev4bECTIQjuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.041 [XNIO-1 task-1] lg6XFiM-Tvev4bECTIQjuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.042 [XNIO-1 task-1] lg6XFiM-Tvev4bECTIQjuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.056 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/66c2c2bd +16:29:41.056 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.056 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:41.056 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:41.056 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/66c2c2bd +16:29:41.057 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4720d7d7-6add-44a8-a0d0-4ed931dbf785","newPassword":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPasswordConfirm":"b125c4aa-c128-4592-9bd9-bc8e9c75c819"}, {"password":"4720d7d7-6add-44a8-a0d0-4ed931dbf785","newPassword":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPasswordConfirm":"b125c4aa-c128-4592-9bd9-bc8e9c75c819"}, requestBody) +16:29:41.057 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4720d7d7-6add-44a8-a0d0-4ed931dbf785","newPassword":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPasswordConfirm":"b125c4aa-c128-4592-9bd9-bc8e9c75c819"}, {"password":"4720d7d7-6add-44a8-a0d0-4ed931dbf785","newPassword":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPasswordConfirm":"b125c4aa-c128-4592-9bd9-bc8e9c75c819"}, requestBody) +16:29:41.058 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b125c4aa-c128-4592-9bd9-bc8e9c75c819", {"password":"4720d7d7-6add-44a8-a0d0-4ed931dbf785","newPassword":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPasswordConfirm":"b125c4aa-c128-4592-9bd9-bc8e9c75c819"}, requestBody.newPasswordConfirm) +16:29:41.058 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG com.networknt.schema.FormatValidator debug - validate( "4720d7d7-6add-44a8-a0d0-4ed931dbf785", {"password":"4720d7d7-6add-44a8-a0d0-4ed931dbf785","newPassword":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPasswordConfirm":"b125c4aa-c128-4592-9bd9-bc8e9c75c819"}, requestBody.password) +16:29:41.058 [XNIO-1 task-1] VCgHM7xMTPyY25WINSensQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b125c4aa-c128-4592-9bd9-bc8e9c75c819", {"password":"4720d7d7-6add-44a8-a0d0-4ed931dbf785","newPassword":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPasswordConfirm":"b125c4aa-c128-4592-9bd9-bc8e9c75c819"}, requestBody.newPassword) +16:29:41.086 [XNIO-1 task-1] NqZm2YdeQp6oGrRFU4B1dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.087 [XNIO-1 task-1] NqZm2YdeQp6oGrRFU4B1dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.087 [XNIO-1 task-1] NqZm2YdeQp6oGrRFU4B1dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.100 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/66c2c2bd +16:29:41.100 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.100 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:41.100 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:41.101 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/66c2c2bd +16:29:41.101 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPassword":"fa3d3487-1f19-4a60-abe1-421ecdbec68a","newPasswordConfirm":"fa3d3487-1f19-4a60-abe1-421ecdbec68a"}, {"password":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPassword":"fa3d3487-1f19-4a60-abe1-421ecdbec68a","newPasswordConfirm":"fa3d3487-1f19-4a60-abe1-421ecdbec68a"}, requestBody) +16:29:41.102 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPassword":"fa3d3487-1f19-4a60-abe1-421ecdbec68a","newPasswordConfirm":"fa3d3487-1f19-4a60-abe1-421ecdbec68a"}, {"password":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPassword":"fa3d3487-1f19-4a60-abe1-421ecdbec68a","newPasswordConfirm":"fa3d3487-1f19-4a60-abe1-421ecdbec68a"}, requestBody) +16:29:41.102 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG com.networknt.schema.FormatValidator debug - validate( "fa3d3487-1f19-4a60-abe1-421ecdbec68a", {"password":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPassword":"fa3d3487-1f19-4a60-abe1-421ecdbec68a","newPasswordConfirm":"fa3d3487-1f19-4a60-abe1-421ecdbec68a"}, requestBody.newPasswordConfirm) +16:29:41.102 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG com.networknt.schema.FormatValidator debug - validate( "b125c4aa-c128-4592-9bd9-bc8e9c75c819", {"password":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPassword":"fa3d3487-1f19-4a60-abe1-421ecdbec68a","newPasswordConfirm":"fa3d3487-1f19-4a60-abe1-421ecdbec68a"}, requestBody.password) +16:29:41.102 [XNIO-1 task-1] iFUH1dhsSjKMVB6NqBuLvw DEBUG com.networknt.schema.FormatValidator debug - validate( "fa3d3487-1f19-4a60-abe1-421ecdbec68a", {"password":"b125c4aa-c128-4592-9bd9-bc8e9c75c819","newPassword":"fa3d3487-1f19-4a60-abe1-421ecdbec68a","newPasswordConfirm":"fa3d3487-1f19-4a60-abe1-421ecdbec68a"}, requestBody.newPassword) +16:29:41.126 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e6aad361-0a8d-474c-8a36-cb8defc6948a +16:29:41.147 [XNIO-1 task-1] 6qL2WJZVTpqxIHbaGPO79g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:41.147 [XNIO-1 task-1] 6qL2WJZVTpqxIHbaGPO79g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:41.147 [XNIO-1 task-1] 6qL2WJZVTpqxIHbaGPO79g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:41.148 [XNIO-1 task-1] 6qL2WJZVTpqxIHbaGPO79g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:41.154 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d8404fa3 +16:29:41.159 [XNIO-1 task-1] ql5rq0YNT2CScflJ87V5RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:41.159 [XNIO-1 task-1] ql5rq0YNT2CScflJ87V5RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:41.160 [XNIO-1 task-1] ql5rq0YNT2CScflJ87V5RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:41.170 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d8404fa3 +16:29:41.178 [XNIO-1 task-1] W4t-JzoGT7aC-h4dUo7Ljw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c8bead95, base path is set to: null +16:29:41.178 [XNIO-1 task-1] W4t-JzoGT7aC-h4dUo7Ljw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:41.179 [XNIO-1 task-1] W4t-JzoGT7aC-h4dUo7Ljw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:41.179 [XNIO-1 task-1] W4t-JzoGT7aC-h4dUo7Ljw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c8bead95, base path is set to: null +16:29:41.179 [XNIO-1 task-1] W4t-JzoGT7aC-h4dUo7Ljw DEBUG com.networknt.schema.TypeValidator debug - validate( "c8bead95", "c8bead95", userId) +16:29:41.190 [XNIO-1 task-1] 20maVQM3TKuz5Z6RT4mrLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.190 [XNIO-1 task-1] 20maVQM3TKuz5Z6RT4mrLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.190 [XNIO-1 task-1] 20maVQM3TKuz5Z6RT4mrLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.259 [XNIO-1 task-1] -_IHznUpRLe65gu6knlMAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ce36b750 +16:29:41.260 [XNIO-1 task-1] -_IHznUpRLe65gu6knlMAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.260 [XNIO-1 task-1] -_IHznUpRLe65gu6knlMAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:41.260 [XNIO-1 task-1] -_IHznUpRLe65gu6knlMAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ce36b750 +16:29:41.266 [XNIO-1 task-1] O247eLa8TM2hNSJCWREGtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/049d1567, base path is set to: null +16:29:41.267 [XNIO-1 task-1] O247eLa8TM2hNSJCWREGtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:41.267 [XNIO-1 task-1] O247eLa8TM2hNSJCWREGtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:41.267 [XNIO-1 task-1] O247eLa8TM2hNSJCWREGtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/049d1567, base path is set to: null +16:29:41.267 [XNIO-1 task-1] O247eLa8TM2hNSJCWREGtw DEBUG com.networknt.schema.TypeValidator debug - validate( "049d1567", "049d1567", userId) +16:29:41.273 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:19108821-ed56-4578-9bd7-e29d14095408 +16:29:41.289 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:19108821-ed56-4578-9bd7-e29d14095408 +16:29:41.311 [XNIO-1 task-1] zcxlFN1oQ_yHqY4tlqr05g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.311 [XNIO-1 task-1] zcxlFN1oQ_yHqY4tlqr05g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.312 [XNIO-1 task-1] zcxlFN1oQ_yHqY4tlqr05g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.312 [XNIO-1 task-1] zcxlFN1oQ_yHqY4tlqr05g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.321 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ce36b750 +16:29:41.321 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.321 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:41.321 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:41.322 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ce36b750 +16:29:41.323 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2c3ea677-53d2-459c-8781-01c7c0fcff13","newPassword":"30660e9f-993d-4096-adf1-1cfbd619607f","newPasswordConfirm":"30660e9f-993d-4096-adf1-1cfbd619607f"}, {"password":"2c3ea677-53d2-459c-8781-01c7c0fcff13","newPassword":"30660e9f-993d-4096-adf1-1cfbd619607f","newPasswordConfirm":"30660e9f-993d-4096-adf1-1cfbd619607f"}, requestBody) +16:29:41.323 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2c3ea677-53d2-459c-8781-01c7c0fcff13","newPassword":"30660e9f-993d-4096-adf1-1cfbd619607f","newPasswordConfirm":"30660e9f-993d-4096-adf1-1cfbd619607f"}, {"password":"2c3ea677-53d2-459c-8781-01c7c0fcff13","newPassword":"30660e9f-993d-4096-adf1-1cfbd619607f","newPasswordConfirm":"30660e9f-993d-4096-adf1-1cfbd619607f"}, requestBody) +16:29:41.323 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG com.networknt.schema.FormatValidator debug - validate( "30660e9f-993d-4096-adf1-1cfbd619607f", {"password":"2c3ea677-53d2-459c-8781-01c7c0fcff13","newPassword":"30660e9f-993d-4096-adf1-1cfbd619607f","newPasswordConfirm":"30660e9f-993d-4096-adf1-1cfbd619607f"}, requestBody.newPasswordConfirm) +16:29:41.324 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG com.networknt.schema.FormatValidator debug - validate( "2c3ea677-53d2-459c-8781-01c7c0fcff13", {"password":"2c3ea677-53d2-459c-8781-01c7c0fcff13","newPassword":"30660e9f-993d-4096-adf1-1cfbd619607f","newPasswordConfirm":"30660e9f-993d-4096-adf1-1cfbd619607f"}, requestBody.password) +16:29:41.324 [XNIO-1 task-1] QwxLd5bVTdq862s_658SEg DEBUG com.networknt.schema.FormatValidator debug - validate( "30660e9f-993d-4096-adf1-1cfbd619607f", {"password":"2c3ea677-53d2-459c-8781-01c7c0fcff13","newPassword":"30660e9f-993d-4096-adf1-1cfbd619607f","newPasswordConfirm":"30660e9f-993d-4096-adf1-1cfbd619607f"}, requestBody.newPassword) +16:29:41.447 [XNIO-1 task-1] amspa1FVRKGqSNG-HjmP0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.447 [XNIO-1 task-1] amspa1FVRKGqSNG-HjmP0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.447 [XNIO-1 task-1] amspa1FVRKGqSNG-HjmP0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.447 [XNIO-1 task-1] amspa1FVRKGqSNG-HjmP0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.471 [XNIO-1 task-1] 6EBg8FbLTjqsuvdE9TiPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.471 [XNIO-1 task-1] 6EBg8FbLTjqsuvdE9TiPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.472 [XNIO-1 task-1] 6EBg8FbLTjqsuvdE9TiPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.496 [XNIO-1 task-1] G64djNZ4TKCvmohfTQg_Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.496 [XNIO-1 task-1] G64djNZ4TKCvmohfTQg_Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.497 [XNIO-1 task-1] G64djNZ4TKCvmohfTQg_Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.515 [XNIO-1 task-1] 8_lg_tmCQCCc4WnH2dPVKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.515 [XNIO-1 task-1] 8_lg_tmCQCCc4WnH2dPVKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.515 [XNIO-1 task-1] 8_lg_tmCQCCc4WnH2dPVKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.548 [XNIO-1 task-1] 9UmL_ez-SImjvrA7vo3_kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.548 [XNIO-1 task-1] 9UmL_ez-SImjvrA7vo3_kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.549 [XNIO-1 task-1] 9UmL_ez-SImjvrA7vo3_kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.594 [XNIO-1 task-1] Dx7L9HKvQeiXK5BC9bElQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.594 [XNIO-1 task-1] Dx7L9HKvQeiXK5BC9bElQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.595 [XNIO-1 task-1] Dx7L9HKvQeiXK5BC9bElQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.615 [XNIO-1 task-1] yKBe8VX5TPGu0q8DJMxdKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.615 [XNIO-1 task-1] yKBe8VX5TPGu0q8DJMxdKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.615 [XNIO-1 task-1] yKBe8VX5TPGu0q8DJMxdKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.631 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d8404fa3 +16:29:41.656 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ecd38f46 +16:29:41.657 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.657 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:41.657 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:41.659 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ecd38f46 +16:29:41.660 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7c48e3c2-d05f-4a66-b2b9-dd636ebb866f","newPassword":"0c0a78b8-55a8-4783-8485-bba20d9448fd","newPasswordConfirm":"0c0a78b8-55a8-4783-8485-bba20d9448fd"}, {"password":"7c48e3c2-d05f-4a66-b2b9-dd636ebb866f","newPassword":"0c0a78b8-55a8-4783-8485-bba20d9448fd","newPasswordConfirm":"0c0a78b8-55a8-4783-8485-bba20d9448fd"}, requestBody) +16:29:41.660 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7c48e3c2-d05f-4a66-b2b9-dd636ebb866f","newPassword":"0c0a78b8-55a8-4783-8485-bba20d9448fd","newPasswordConfirm":"0c0a78b8-55a8-4783-8485-bba20d9448fd"}, {"password":"7c48e3c2-d05f-4a66-b2b9-dd636ebb866f","newPassword":"0c0a78b8-55a8-4783-8485-bba20d9448fd","newPasswordConfirm":"0c0a78b8-55a8-4783-8485-bba20d9448fd"}, requestBody) +16:29:41.660 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG com.networknt.schema.FormatValidator debug - validate( "0c0a78b8-55a8-4783-8485-bba20d9448fd", {"password":"7c48e3c2-d05f-4a66-b2b9-dd636ebb866f","newPassword":"0c0a78b8-55a8-4783-8485-bba20d9448fd","newPasswordConfirm":"0c0a78b8-55a8-4783-8485-bba20d9448fd"}, requestBody.newPasswordConfirm) +16:29:41.660 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG com.networknt.schema.FormatValidator debug - validate( "7c48e3c2-d05f-4a66-b2b9-dd636ebb866f", {"password":"7c48e3c2-d05f-4a66-b2b9-dd636ebb866f","newPassword":"0c0a78b8-55a8-4783-8485-bba20d9448fd","newPasswordConfirm":"0c0a78b8-55a8-4783-8485-bba20d9448fd"}, requestBody.password) +16:29:41.660 [XNIO-1 task-1] SGLjGdPvROyYOwoQhHyOrA DEBUG com.networknt.schema.FormatValidator debug - validate( "0c0a78b8-55a8-4783-8485-bba20d9448fd", {"password":"7c48e3c2-d05f-4a66-b2b9-dd636ebb866f","newPassword":"0c0a78b8-55a8-4783-8485-bba20d9448fd","newPasswordConfirm":"0c0a78b8-55a8-4783-8485-bba20d9448fd"}, requestBody.newPassword) +16:29:41.696 [XNIO-1 task-1] oZDeqCYpQtq6_OhmLFvi2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.696 [XNIO-1 task-1] oZDeqCYpQtq6_OhmLFvi2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.696 [XNIO-1 task-1] oZDeqCYpQtq6_OhmLFvi2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.697 [XNIO-1 task-1] oZDeqCYpQtq6_OhmLFvi2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.709 [XNIO-1 task-1] I88p_Lv-QG-NL5hzzWdY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecd38f46 +16:29:41.709 [XNIO-1 task-1] I88p_Lv-QG-NL5hzzWdY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.709 [XNIO-1 task-1] I88p_Lv-QG-NL5hzzWdY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:41.709 [XNIO-1 task-1] I88p_Lv-QG-NL5hzzWdY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecd38f46 +16:29:41.758 [XNIO-1 task-1] I88p_Lv-QG-NL5hzzWdY_A DEBUG com.networknt.schema.TypeValidator debug - validate( "ecd38f46", "ecd38f46", userId) +16:29:41.761 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7a1a2b09-f435-4f6e-8faa-0d8326a452df +16:29:41.770 [XNIO-1 task-1] qvmobAkVQm-hIpoLBC6bGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/398665ba +16:29:41.770 [XNIO-1 task-1] qvmobAkVQm-hIpoLBC6bGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.770 [XNIO-1 task-1] qvmobAkVQm-hIpoLBC6bGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:41.770 [XNIO-1 task-1] qvmobAkVQm-hIpoLBC6bGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/398665ba +16:29:41.866 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:41.867 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:41.867 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:41.867 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:41.867 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:41.868 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG com.networknt.schema.TypeValidator debug - validate( "e5261506", "e5261506", userId) +16:29:41.868 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0eb24650-b632-4292-999b-00de75c5826b","newPassword":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPasswordConfirm":"216c0c13-39f1-43b9-a43a-ee428ea15ff8"}, {"password":"0eb24650-b632-4292-999b-00de75c5826b","newPassword":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPasswordConfirm":"216c0c13-39f1-43b9-a43a-ee428ea15ff8"}, requestBody) +16:29:41.868 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG com.networknt.schema.TypeValidator debug - validate( "216c0c13-39f1-43b9-a43a-ee428ea15ff8", {"password":"0eb24650-b632-4292-999b-00de75c5826b","newPassword":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPasswordConfirm":"216c0c13-39f1-43b9-a43a-ee428ea15ff8"}, requestBody.newPasswordConfirm) +16:29:41.868 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG com.networknt.schema.TypeValidator debug - validate( "0eb24650-b632-4292-999b-00de75c5826b", {"password":"0eb24650-b632-4292-999b-00de75c5826b","newPassword":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPasswordConfirm":"216c0c13-39f1-43b9-a43a-ee428ea15ff8"}, requestBody.password) +16:29:41.868 [XNIO-1 task-1] 0mFY-IRvT-ybHyuf4Fr2qA DEBUG com.networknt.schema.TypeValidator debug - validate( "216c0c13-39f1-43b9-a43a-ee428ea15ff8", {"password":"0eb24650-b632-4292-999b-00de75c5826b","newPassword":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPasswordConfirm":"216c0c13-39f1-43b9-a43a-ee428ea15ff8"}, requestBody.newPassword) +16:29:41.906 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d8404fa3 +16:29:41.911 [XNIO-1 task-1] Ct5SztSfSSuvzoWDcn2emg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b5f6ee48, base path is set to: null +16:29:41.911 [XNIO-1 task-1] Ct5SztSfSSuvzoWDcn2emg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:41.912 [XNIO-1 task-1] Ct5SztSfSSuvzoWDcn2emg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:41.917 [XNIO-1 task-1] Ct5SztSfSSuvzoWDcn2emg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b5f6ee48, base path is set to: null +16:29:41.918 [XNIO-1 task-1] Ct5SztSfSSuvzoWDcn2emg DEBUG com.networknt.schema.TypeValidator debug - validate( "b5f6ee48", "b5f6ee48", userId) +16:29:41.924 [XNIO-1 task-1] vlSm520XRkK3IQL7duRdqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.924 [XNIO-1 task-1] vlSm520XRkK3IQL7duRdqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.924 [XNIO-1 task-1] vlSm520XRkK3IQL7duRdqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.934 [XNIO-1 task-1] SR2wVJfXRcyGIAh025FV7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.934 [XNIO-1 task-1] SR2wVJfXRcyGIAh025FV7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.934 [XNIO-1 task-1] SR2wVJfXRcyGIAh025FV7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.957 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:761b36c8-f755-403f-8c18-2ca58a3f8af8 +16:29:41.970 [XNIO-1 task-1] jAQDS41UT06rgyzIlTI5vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.970 [XNIO-1 task-1] jAQDS41UT06rgyzIlTI5vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.971 [XNIO-1 task-1] jAQDS41UT06rgyzIlTI5vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.983 [XNIO-1 task-1] DT5UMCnySqenigkwUB6T_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.984 [XNIO-1 task-1] DT5UMCnySqenigkwUB6T_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.984 [XNIO-1 task-1] DT5UMCnySqenigkwUB6T_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.984 [XNIO-1 task-1] DT5UMCnySqenigkwUB6T_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:41.997 [XNIO-1 task-1] U_mc9XlHRge92EYVZSd3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.997 [XNIO-1 task-1] U_mc9XlHRge92EYVZSd3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.997 [XNIO-1 task-1] U_mc9XlHRge92EYVZSd3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:41.998 [XNIO-1 task-1] U_mc9XlHRge92EYVZSd3lQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.007 [XNIO-1 task-1] zQ5svrEVT6yKRz5Oi60FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.007 [XNIO-1 task-1] zQ5svrEVT6yKRz5Oi60FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.007 [XNIO-1 task-1] zQ5svrEVT6yKRz5Oi60FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.035 [XNIO-1 task-1] 0SRw5xlIRceRQ9MG3KhIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e3a4da3 +16:29:42.036 [XNIO-1 task-1] 0SRw5xlIRceRQ9MG3KhIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.036 [XNIO-1 task-1] 0SRw5xlIRceRQ9MG3KhIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.036 [XNIO-1 task-1] 0SRw5xlIRceRQ9MG3KhIdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e3a4da3 +16:29:42.051 [XNIO-1 task-1] TQHwSaKuTOmQ5mpmo00tYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.051 [XNIO-1 task-1] TQHwSaKuTOmQ5mpmo00tYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.052 [XNIO-1 task-1] TQHwSaKuTOmQ5mpmo00tYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.058 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1dc5595f-c8d7-4f92-93d7-b1a77376a185 +16:29:42.062 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1dc5595f-c8d7-4f92-93d7-b1a77376a185 +16:29:42.077 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c4e456b8-7c26-496f-b0a3-4973f7685551 +16:29:42.089 [XNIO-1 task-1] VKI90YlNSGepaKu6PbiZrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbaea1f6 +16:29:42.092 [XNIO-1 task-1] VKI90YlNSGepaKu6PbiZrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.092 [XNIO-1 task-1] VKI90YlNSGepaKu6PbiZrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.093 [XNIO-1 task-1] VKI90YlNSGepaKu6PbiZrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbaea1f6 +16:29:42.108 [XNIO-1 task-1] Mn0-jExSRV2Eb9hZRz2sVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.109 [XNIO-1 task-1] Mn0-jExSRV2Eb9hZRz2sVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.109 [XNIO-1 task-1] Mn0-jExSRV2Eb9hZRz2sVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.189 [XNIO-1 task-1] 8eFFgO15SeSKINvNf_nyNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6e58d283, base path is set to: null +16:29:42.189 [XNIO-1 task-1] 8eFFgO15SeSKINvNf_nyNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.189 [XNIO-1 task-1] 8eFFgO15SeSKINvNf_nyNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.190 [XNIO-1 task-1] 8eFFgO15SeSKINvNf_nyNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6e58d283, base path is set to: null +16:29:42.190 [XNIO-1 task-1] 8eFFgO15SeSKINvNf_nyNA DEBUG com.networknt.schema.TypeValidator debug - validate( "6e58d283", "6e58d283", userId) +16:29:42.216 [XNIO-1 task-1] 3eYRPkftSv2tFDEvWe2gTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.216 [XNIO-1 task-1] 3eYRPkftSv2tFDEvWe2gTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.217 [XNIO-1 task-1] 3eYRPkftSv2tFDEvWe2gTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.218 [XNIO-1 task-1] 3eYRPkftSv2tFDEvWe2gTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.229 [XNIO-1 task-1] wPGPp3P-SBOFqD6Iu_77OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.229 [XNIO-1 task-1] wPGPp3P-SBOFqD6Iu_77OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.230 [XNIO-1 task-1] wPGPp3P-SBOFqD6Iu_77OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.235 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bfe9ecd3-2b64-46c3-a516-f839adde9715 +16:29:42.239 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bfe9ecd3-2b64-46c3-a516-f839adde9715 +16:29:42.242 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5ff1d88e +16:29:42.245 [XNIO-1 task-1] KC3duzMMSK2wmg6OLQ3-xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.245 [XNIO-1 task-1] KC3duzMMSK2wmg6OLQ3-xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.246 [XNIO-1 task-1] KC3duzMMSK2wmg6OLQ3-xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.247 [XNIO-1 task-1] KC3duzMMSK2wmg6OLQ3-xg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.279 [XNIO-1 task-1] zOUFFMKrSD-dzfCojeq5vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66c2c2bd +16:29:42.279 [XNIO-1 task-1] zOUFFMKrSD-dzfCojeq5vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.279 [XNIO-1 task-1] zOUFFMKrSD-dzfCojeq5vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.280 [XNIO-1 task-1] zOUFFMKrSD-dzfCojeq5vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66c2c2bd +16:29:42.321 [XNIO-1 task-1] kU03BKqCT5qVo6mp0RnPfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.321 [XNIO-1 task-1] kU03BKqCT5qVo6mp0RnPfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.323 [XNIO-1 task-1] kU03BKqCT5qVo6mp0RnPfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.324 [XNIO-1 task-1] kU03BKqCT5qVo6mp0RnPfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.327 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:029d0cfb-0404-4b24-955b-997c25452efd +16:29:42.346 [XNIO-1 task-1] j3Pvzy0pSaCVIrwiwx9oEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/af08b82e, base path is set to: null +16:29:42.346 [XNIO-1 task-1] j3Pvzy0pSaCVIrwiwx9oEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.346 [XNIO-1 task-1] j3Pvzy0pSaCVIrwiwx9oEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.346 [XNIO-1 task-1] j3Pvzy0pSaCVIrwiwx9oEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/af08b82e, base path is set to: null +16:29:42.347 [XNIO-1 task-1] j3Pvzy0pSaCVIrwiwx9oEg DEBUG com.networknt.schema.TypeValidator debug - validate( "af08b82e", "af08b82e", userId) +16:29:42.363 [XNIO-1 task-1] yKDGuAe6Qbe0FTGaD90nIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5f6ee48 +16:29:42.363 [XNIO-1 task-1] yKDGuAe6Qbe0FTGaD90nIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.364 [XNIO-1 task-1] yKDGuAe6Qbe0FTGaD90nIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.364 [XNIO-1 task-1] yKDGuAe6Qbe0FTGaD90nIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b5f6ee48 +16:29:42.378 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2ee50b52, base path is set to: null +16:29:42.379 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.379 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.379 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:42.379 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2ee50b52, base path is set to: null +16:29:42.380 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG com.networknt.schema.TypeValidator debug - validate( "2ee50b52", "2ee50b52", userId) +16:29:42.380 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"3d305f51-d916-47e4-8e1d-d2a1fb37d917","newPassword":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1","newPasswordConfirm":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1"}, {"password":"3d305f51-d916-47e4-8e1d-d2a1fb37d917","newPassword":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1","newPasswordConfirm":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1"}, requestBody) +16:29:42.380 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG com.networknt.schema.TypeValidator debug - validate( "05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1", {"password":"3d305f51-d916-47e4-8e1d-d2a1fb37d917","newPassword":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1","newPasswordConfirm":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1"}, requestBody.newPasswordConfirm) +16:29:42.380 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG com.networknt.schema.TypeValidator debug - validate( "3d305f51-d916-47e4-8e1d-d2a1fb37d917", {"password":"3d305f51-d916-47e4-8e1d-d2a1fb37d917","newPassword":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1","newPasswordConfirm":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1"}, requestBody.password) +16:29:42.380 [XNIO-1 task-1] PFn-B1m7SeyZ3coC_AeCKA DEBUG com.networknt.schema.TypeValidator debug - validate( "05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1", {"password":"3d305f51-d916-47e4-8e1d-d2a1fb37d917","newPassword":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1","newPasswordConfirm":"05ef0f5e-957b-4a7c-bc6b-0f595be4e2b1"}, requestBody.newPassword) +16:29:42.406 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8dd693da-1b34-42f6-89da-9cf842dfdc73 +Jun 28, 2024 4:29:42 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:29:42.413 [XNIO-1 task-1] -BbGtLzOQBGsjVKuPMr2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2ee50b52 +16:29:42.413 [XNIO-1 task-1] -BbGtLzOQBGsjVKuPMr2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.416 [XNIO-1 task-1] -BbGtLzOQBGsjVKuPMr2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.416 [XNIO-1 task-1] -BbGtLzOQBGsjVKuPMr2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2ee50b52 +16:29:42.431 [XNIO-1 task-1] ydppjvorQzqStBQt6WLcXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:42.431 [XNIO-1 task-1] ydppjvorQzqStBQt6WLcXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.431 [XNIO-1 task-1] ydppjvorQzqStBQt6WLcXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.431 [XNIO-1 task-1] ydppjvorQzqStBQt6WLcXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:42.432 [XNIO-1 task-1] ydppjvorQzqStBQt6WLcXw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5261506", "e5261506", userId) +16:29:42.439 [XNIO-1 task-1] jO0wswrQSZy-Vb-dSjb2yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:42.439 [XNIO-1 task-1] jO0wswrQSZy-Vb-dSjb2yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.439 [XNIO-1 task-1] jO0wswrQSZy-Vb-dSjb2yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.440 [XNIO-1 task-1] jO0wswrQSZy-Vb-dSjb2yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:42.445 [XNIO-1 task-1] Wc3jE1HQSR254v4CrPCDMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.445 [XNIO-1 task-1] Wc3jE1HQSR254v4CrPCDMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.445 [XNIO-1 task-1] Wc3jE1HQSR254v4CrPCDMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.446 [XNIO-1 task-1] Wc3jE1HQSR254v4CrPCDMg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.456 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:42.456 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.456 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.456 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:42.456 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e5261506, base path is set to: null +16:29:42.457 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG com.networknt.schema.TypeValidator debug - validate( "e5261506", "e5261506", userId) +16:29:42.457 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPassword":"301adca5-515f-451b-a602-17abfad51691","newPasswordConfirm":"301adca5-515f-451b-a602-17abfad51691"}, {"password":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPassword":"301adca5-515f-451b-a602-17abfad51691","newPasswordConfirm":"301adca5-515f-451b-a602-17abfad51691"}, requestBody) +16:29:42.457 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG com.networknt.schema.TypeValidator debug - validate( "301adca5-515f-451b-a602-17abfad51691", {"password":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPassword":"301adca5-515f-451b-a602-17abfad51691","newPasswordConfirm":"301adca5-515f-451b-a602-17abfad51691"}, requestBody.newPasswordConfirm) +16:29:42.457 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG com.networknt.schema.TypeValidator debug - validate( "216c0c13-39f1-43b9-a43a-ee428ea15ff8", {"password":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPassword":"301adca5-515f-451b-a602-17abfad51691","newPasswordConfirm":"301adca5-515f-451b-a602-17abfad51691"}, requestBody.password) +16:29:42.458 [XNIO-1 task-1] 0cahacZcS52jFZSAxuyh3A DEBUG com.networknt.schema.TypeValidator debug - validate( "301adca5-515f-451b-a602-17abfad51691", {"password":"216c0c13-39f1-43b9-a43a-ee428ea15ff8","newPassword":"301adca5-515f-451b-a602-17abfad51691","newPasswordConfirm":"301adca5-515f-451b-a602-17abfad51691"}, requestBody.newPassword) +16:29:42.484 [XNIO-1 task-1] NqkPPaXSRiidpRqRKDyVbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:42.488 [XNIO-1 task-1] NqkPPaXSRiidpRqRKDyVbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.488 [XNIO-1 task-1] NqkPPaXSRiidpRqRKDyVbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.488 [XNIO-1 task-1] NqkPPaXSRiidpRqRKDyVbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:42.488 [XNIO-1 task-1] NqkPPaXSRiidpRqRKDyVbw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5261506", "e5261506", userId) +16:29:42.496 [XNIO-1 task-1] hp0qxHYdRb2H3jA3m-W71Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.496 [XNIO-1 task-1] hp0qxHYdRb2H3jA3m-W71Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.496 [XNIO-1 task-1] hp0qxHYdRb2H3jA3m-W71Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.521 [XNIO-1 task-1] rTOyBtfcSwaBVQ7jt3AZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.522 [XNIO-1 task-1] rTOyBtfcSwaBVQ7jt3AZDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.522 [XNIO-1 task-1] rTOyBtfcSwaBVQ7jt3AZDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.522 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3f23b976-3ad2-422d-8008-78878f5d4813 +16:29:42.523 [XNIO-1 task-1] rTOyBtfcSwaBVQ7jt3AZDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:42.553 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1dc5595f-c8d7-4f92-93d7-b1a77376a185 +16:29:42.559 [XNIO-1 task-1] z3M7WVPpQu2JZHjqk_uT9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.559 [XNIO-1 task-1] z3M7WVPpQu2JZHjqk_uT9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.560 [XNIO-1 task-1] z3M7WVPpQu2JZHjqk_uT9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.577 [XNIO-1 task-1] 5w9laV5YTxSV6EIEMx83Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e4b5e731 +16:29:42.577 [XNIO-1 task-1] 5w9laV5YTxSV6EIEMx83Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.577 [XNIO-1 task-1] 5w9laV5YTxSV6EIEMx83Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.577 [XNIO-1 task-1] 5w9laV5YTxSV6EIEMx83Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e4b5e731 +16:29:42.599 [XNIO-1 task-1] qbfOaX6GRH2hwOKSmXza9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.600 [XNIO-1 task-1] qbfOaX6GRH2hwOKSmXza9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.600 [XNIO-1 task-1] qbfOaX6GRH2hwOKSmXza9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.636 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:10e200c2-0570-4cca-964b-fe9fb0d3d920 +16:29:42.659 [XNIO-1 task-1] 5y5OMcoRSCy7SDrhvb9Ipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd1fc82f, base path is set to: null +16:29:42.659 [XNIO-1 task-1] 5y5OMcoRSCy7SDrhvb9Ipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.659 [XNIO-1 task-1] 5y5OMcoRSCy7SDrhvb9Ipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.659 [XNIO-1 task-1] 5y5OMcoRSCy7SDrhvb9Ipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd1fc82f, base path is set to: null +16:29:42.660 [XNIO-1 task-1] 5y5OMcoRSCy7SDrhvb9Ipg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd1fc82f", "dd1fc82f", userId) +16:29:42.676 [XNIO-1 task-1] BPSt66ebSLuK6tZqlh_UzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e963511 +16:29:42.676 [XNIO-1 task-1] BPSt66ebSLuK6tZqlh_UzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.676 [XNIO-1 task-1] BPSt66ebSLuK6tZqlh_UzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.677 [XNIO-1 task-1] BPSt66ebSLuK6tZqlh_UzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e963511 +16:29:42.741 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5ff1d88e +16:29:42.741 [XNIO-1 task-1] NdK8q0U4SbCd_vub7Spiiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:42.741 [XNIO-1 task-1] NdK8q0U4SbCd_vub7Spiiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.741 [XNIO-1 task-1] NdK8q0U4SbCd_vub7Spiiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.742 [XNIO-1 task-1] NdK8q0U4SbCd_vub7Spiiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:42.743 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5ff1d88e +16:29:42.749 [XNIO-1 task-1] -2iQLzlQSouGrUUHRBgA-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.749 [XNIO-1 task-1] -2iQLzlQSouGrUUHRBgA-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.749 [XNIO-1 task-1] -2iQLzlQSouGrUUHRBgA-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.750 [XNIO-1 task-1] -2iQLzlQSouGrUUHRBgA-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:42.751 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:acaff580-7f0a-4fb0-8ae7-0d946eb3f2dd +16:29:42.756 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d58d63b-d554-4a7a-8935-d09ec597f7f2 +16:29:42.759 [XNIO-1 task-1] euliZivFR6KEYVTmZBNpew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.759 [XNIO-1 task-1] euliZivFR6KEYVTmZBNpew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.760 [XNIO-1 task-1] euliZivFR6KEYVTmZBNpew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.788 [XNIO-1 task-1] m9Gi0amLR6ie1vGHDDDsfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ce36b750, base path is set to: null +16:29:42.789 [XNIO-1 task-1] m9Gi0amLR6ie1vGHDDDsfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.789 [XNIO-1 task-1] m9Gi0amLR6ie1vGHDDDsfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.789 [XNIO-1 task-1] m9Gi0amLR6ie1vGHDDDsfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ce36b750, base path is set to: null +16:29:42.790 [XNIO-1 task-1] m9Gi0amLR6ie1vGHDDDsfg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce36b750", "ce36b750", userId) +16:29:42.805 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e5261506 +16:29:42.806 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.806 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.808 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:42.809 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e5261506 +16:29:42.814 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"301adca5-515f-451b-a602-17abfad51691","newPassword":"702d0a56-4d9e-4870-a11a-1239cc7fd368","newPasswordConfirm":"702d0a56-4d9e-4870-a11a-1239cc7fd368"}, {"password":"301adca5-515f-451b-a602-17abfad51691","newPassword":"702d0a56-4d9e-4870-a11a-1239cc7fd368","newPasswordConfirm":"702d0a56-4d9e-4870-a11a-1239cc7fd368"}, requestBody) +16:29:42.814 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"301adca5-515f-451b-a602-17abfad51691","newPassword":"702d0a56-4d9e-4870-a11a-1239cc7fd368","newPasswordConfirm":"702d0a56-4d9e-4870-a11a-1239cc7fd368"}, {"password":"301adca5-515f-451b-a602-17abfad51691","newPassword":"702d0a56-4d9e-4870-a11a-1239cc7fd368","newPasswordConfirm":"702d0a56-4d9e-4870-a11a-1239cc7fd368"}, requestBody) +16:29:42.814 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG com.networknt.schema.FormatValidator debug - validate( "702d0a56-4d9e-4870-a11a-1239cc7fd368", {"password":"301adca5-515f-451b-a602-17abfad51691","newPassword":"702d0a56-4d9e-4870-a11a-1239cc7fd368","newPasswordConfirm":"702d0a56-4d9e-4870-a11a-1239cc7fd368"}, requestBody.newPasswordConfirm) +16:29:42.814 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG com.networknt.schema.FormatValidator debug - validate( "301adca5-515f-451b-a602-17abfad51691", {"password":"301adca5-515f-451b-a602-17abfad51691","newPassword":"702d0a56-4d9e-4870-a11a-1239cc7fd368","newPasswordConfirm":"702d0a56-4d9e-4870-a11a-1239cc7fd368"}, requestBody.password) +16:29:42.814 [XNIO-1 task-1] gmdyK99bTXe8KSExpFkO7w DEBUG com.networknt.schema.FormatValidator debug - validate( "702d0a56-4d9e-4870-a11a-1239cc7fd368", {"password":"301adca5-515f-451b-a602-17abfad51691","newPassword":"702d0a56-4d9e-4870-a11a-1239cc7fd368","newPasswordConfirm":"702d0a56-4d9e-4870-a11a-1239cc7fd368"}, requestBody.newPassword) +16:29:42.846 [XNIO-1 task-1] 6uQv4BCXRhKc-hHm7dzjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:42.846 [XNIO-1 task-1] 6uQv4BCXRhKc-hHm7dzjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.846 [XNIO-1 task-1] 6uQv4BCXRhKc-hHm7dzjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.847 [XNIO-1 task-1] 6uQv4BCXRhKc-hHm7dzjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:42.855 [XNIO-1 task-1] rpodd9luSPWHrfTnwiqEbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.875 [XNIO-1 task-1] rpodd9luSPWHrfTnwiqEbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.875 [XNIO-1 task-1] rpodd9luSPWHrfTnwiqEbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.955 [XNIO-1 task-1] l7ak_vS9TGK52mD-stydMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.955 [XNIO-1 task-1] l7ak_vS9TGK52mD-stydMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.956 [XNIO-1 task-1] l7ak_vS9TGK52mD-stydMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:42.985 [XNIO-1 task-1] 1jNeBHBQTrm63COqdqdo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:42.985 [XNIO-1 task-1] 1jNeBHBQTrm63COqdqdo2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:42.985 [XNIO-1 task-1] 1jNeBHBQTrm63COqdqdo2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:42.986 [XNIO-1 task-1] 1jNeBHBQTrm63COqdqdo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:42.986 [XNIO-1 task-1] 1jNeBHBQTrm63COqdqdo2A DEBUG com.networknt.schema.TypeValidator debug - validate( "e5261506", "e5261506", userId) +16:29:42.998 [XNIO-1 task-1] pfF72RTzSYap-hnx9-EGxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:42.998 [XNIO-1 task-1] pfF72RTzSYap-hnx9-EGxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:42.999 [XNIO-1 task-1] pfF72RTzSYap-hnx9-EGxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:42.999 [XNIO-1 task-1] pfF72RTzSYap-hnx9-EGxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e5261506 +16:29:43.007 [XNIO-1 task-1] x-8jN6gVS9W-pSLRO-6Uhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:43.007 [XNIO-1 task-1] x-8jN6gVS9W-pSLRO-6Uhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.008 [XNIO-1 task-1] x-8jN6gVS9W-pSLRO-6Uhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:43.008 [XNIO-1 task-1] x-8jN6gVS9W-pSLRO-6Uhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e5261506, base path is set to: null +16:29:43.009 [XNIO-1 task-1] x-8jN6gVS9W-pSLRO-6Uhw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5261506", "e5261506", userId) +16:29:43.020 [XNIO-1 task-1] ChoJ8rDoQMWMVLHnh7m90w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.020 [XNIO-1 task-1] ChoJ8rDoQMWMVLHnh7m90w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.021 [XNIO-1 task-1] ChoJ8rDoQMWMVLHnh7m90w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.021 [XNIO-1 task-1] ChoJ8rDoQMWMVLHnh7m90w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.035 [XNIO-1 task-1] vHntoYzdSuGBuPa7Vq5c6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.035 [XNIO-1 task-1] vHntoYzdSuGBuPa7Vq5c6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.035 [XNIO-1 task-1] vHntoYzdSuGBuPa7Vq5c6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.079 [XNIO-1 task-1] ay_SBfPdSnK3PzMh6_QOJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.079 [XNIO-1 task-1] ay_SBfPdSnK3PzMh6_QOJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.079 [XNIO-1 task-1] ay_SBfPdSnK3PzMh6_QOJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.110 [XNIO-1 task-1] Lc91r7aMTBmypYe7h19aGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.110 [XNIO-1 task-1] Lc91r7aMTBmypYe7h19aGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.110 [XNIO-1 task-1] Lc91r7aMTBmypYe7h19aGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.111 [XNIO-1 task-1] Lc91r7aMTBmypYe7h19aGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.121 [XNIO-1 task-1] 5AwGW--eS_OOjziJcYYcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/41a16451 +16:29:43.121 [XNIO-1 task-1] 5AwGW--eS_OOjziJcYYcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.121 [XNIO-1 task-1] 5AwGW--eS_OOjziJcYYcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:43.121 [XNIO-1 task-1] 5AwGW--eS_OOjziJcYYcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/41a16451 +16:29:43.128 [XNIO-1 task-1] hrCLEXvhQY21v5_RRLlX0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.128 [XNIO-1 task-1] hrCLEXvhQY21v5_RRLlX0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.129 [XNIO-1 task-1] hrCLEXvhQY21v5_RRLlX0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.134 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a61e8fa1-6d6b-44fb-b780-b3f78764465c +16:29:43.135 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a61e8fa1-6d6b-44fb-b780-b3f78764465c +16:29:43.139 [XNIO-1 task-1] KfMYfvmlTD6VVZ79OqbDUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/41a16451 +16:29:43.139 [XNIO-1 task-1] KfMYfvmlTD6VVZ79OqbDUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.140 [XNIO-1 task-1] KfMYfvmlTD6VVZ79OqbDUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:43.140 [XNIO-1 task-1] KfMYfvmlTD6VVZ79OqbDUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/41a16451 +16:29:43.154 [XNIO-1 task-1] da_njx91RD240Ob6HELJBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.154 [XNIO-1 task-1] da_njx91RD240Ob6HELJBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.155 [XNIO-1 task-1] da_njx91RD240Ob6HELJBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.155 [XNIO-1 task-1] da_njx91RD240Ob6HELJBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.164 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0d34ccaf, base path is set to: null +16:29:43.165 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.165 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:43.165 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:43.165 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0d34ccaf, base path is set to: null +16:29:43.166 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "0d34ccaf", "0d34ccaf", userId) +16:29:43.166 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"9b89cf41-882a-40dd-a6da-9dc9c15b7484","newPassword":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPasswordConfirm":"0dfd0ab3-822e-445f-a946-3ba8355a0927"}, {"password":"9b89cf41-882a-40dd-a6da-9dc9c15b7484","newPassword":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPasswordConfirm":"0dfd0ab3-822e-445f-a946-3ba8355a0927"}, requestBody) +16:29:43.166 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "0dfd0ab3-822e-445f-a946-3ba8355a0927", {"password":"9b89cf41-882a-40dd-a6da-9dc9c15b7484","newPassword":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPasswordConfirm":"0dfd0ab3-822e-445f-a946-3ba8355a0927"}, requestBody.newPasswordConfirm) +16:29:43.166 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "9b89cf41-882a-40dd-a6da-9dc9c15b7484", {"password":"9b89cf41-882a-40dd-a6da-9dc9c15b7484","newPassword":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPasswordConfirm":"0dfd0ab3-822e-445f-a946-3ba8355a0927"}, requestBody.password) +16:29:43.167 [XNIO-1 task-1] s8_YL_bAS5Grp-e0pGsO9A DEBUG com.networknt.schema.TypeValidator debug - validate( "0dfd0ab3-822e-445f-a946-3ba8355a0927", {"password":"9b89cf41-882a-40dd-a6da-9dc9c15b7484","newPassword":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPasswordConfirm":"0dfd0ab3-822e-445f-a946-3ba8355a0927"}, requestBody.newPassword) +16:29:43.256 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2d58d63b-d554-4a7a-8935-d09ec597f7f2 +16:29:43.284 [XNIO-1 task-1] PZNKGkKcTJiFZxCYszJpcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.284 [XNIO-1 task-1] PZNKGkKcTJiFZxCYszJpcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.284 [XNIO-1 task-1] PZNKGkKcTJiFZxCYszJpcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.318 [XNIO-1 task-1] rLK_98W8Tiype1lpCLstMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.318 [XNIO-1 task-1] rLK_98W8Tiype1lpCLstMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.318 [XNIO-1 task-1] rLK_98W8Tiype1lpCLstMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.319 [XNIO-1 task-1] rLK_98W8Tiype1lpCLstMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:43.328 [XNIO-1 task-1] 93QOJ80eRaa-rgR5pbTRTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.328 [XNIO-1 task-1] 93QOJ80eRaa-rgR5pbTRTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.329 [XNIO-1 task-1] 93QOJ80eRaa-rgR5pbTRTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.330 [XNIO-1 task-1] 93QOJ80eRaa-rgR5pbTRTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:43.333 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5e28a663-48b6-4f65-b5c1-a0429aa16d15 +16:29:43.343 [XNIO-1 task-1] rmP6iVsORF61IH9IAB-SCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0d34ccaf, base path is set to: null +16:29:43.343 [XNIO-1 task-1] rmP6iVsORF61IH9IAB-SCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.343 [XNIO-1 task-1] rmP6iVsORF61IH9IAB-SCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:43.343 [XNIO-1 task-1] rmP6iVsORF61IH9IAB-SCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0d34ccaf, base path is set to: null +16:29:43.344 [XNIO-1 task-1] rmP6iVsORF61IH9IAB-SCA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d34ccaf", "0d34ccaf", userId) +16:29:43.355 [XNIO-1 task-1] nqiBmGdRSqeHe5owgPc6xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.355 [XNIO-1 task-1] nqiBmGdRSqeHe5owgPc6xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.355 [XNIO-1 task-1] nqiBmGdRSqeHe5owgPc6xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.393 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2aeb08c9 +16:29:43.411 [XNIO-1 task-1] tOSsyv-gRS-_1fxIN4cUSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.412 [XNIO-1 task-1] tOSsyv-gRS-_1fxIN4cUSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.415 [XNIO-1 task-1] tOSsyv-gRS-_1fxIN4cUSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.446 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:95d7a9a6-75a7-4ec3-a998-d71aa765c7b1 +16:29:43.448 [XNIO-1 task-1] YELvyQZXSfqLQh8L0f2I6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.448 [XNIO-1 task-1] YELvyQZXSfqLQh8L0f2I6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.448 [XNIO-1 task-1] YELvyQZXSfqLQh8L0f2I6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.451 [XNIO-1 task-1] YELvyQZXSfqLQh8L0f2I6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.478 [XNIO-1 task-1] OhqwqGRaRii5VODOh2EOAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.478 [XNIO-1 task-1] OhqwqGRaRii5VODOh2EOAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.479 [XNIO-1 task-1] OhqwqGRaRii5VODOh2EOAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.560 [XNIO-1 task-1] u6T4qE9TSmCfz7qA-m3v5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e924261e, base path is set to: null +16:29:43.560 [XNIO-1 task-1] u6T4qE9TSmCfz7qA-m3v5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.560 [XNIO-1 task-1] u6T4qE9TSmCfz7qA-m3v5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:43.560 [XNIO-1 task-1] u6T4qE9TSmCfz7qA-m3v5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e924261e, base path is set to: null +16:29:43.561 [XNIO-1 task-1] u6T4qE9TSmCfz7qA-m3v5A DEBUG com.networknt.schema.TypeValidator debug - validate( "e924261e", "e924261e", userId) +16:29:43.570 [XNIO-1 task-1] whseDfr5Q8CIHK0H8N3V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.570 [XNIO-1 task-1] whseDfr5Q8CIHK0H8N3V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.570 [XNIO-1 task-1] whseDfr5Q8CIHK0H8N3V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.588 [XNIO-1 task-1] OE_WcX6oTR2dcujGzYM9pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/575f6d1b +16:29:43.588 [XNIO-1 task-1] OE_WcX6oTR2dcujGzYM9pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.588 [XNIO-1 task-1] OE_WcX6oTR2dcujGzYM9pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:43.588 [XNIO-1 task-1] OE_WcX6oTR2dcujGzYM9pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/575f6d1b +16:29:43.608 [XNIO-1 task-1] 47ixyLxeQRGyXu7kX-FcJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/575f6d1b, base path is set to: null +16:29:43.608 [XNIO-1 task-1] 47ixyLxeQRGyXu7kX-FcJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.608 [XNIO-1 task-1] 47ixyLxeQRGyXu7kX-FcJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:43.608 [XNIO-1 task-1] 47ixyLxeQRGyXu7kX-FcJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/575f6d1b, base path is set to: null +16:29:43.609 [XNIO-1 task-1] 47ixyLxeQRGyXu7kX-FcJg DEBUG com.networknt.schema.TypeValidator debug - validate( "575f6d1b", "575f6d1b", userId) +16:29:43.621 [XNIO-1 task-1] uEEPFQKwQsauKVqTZGOAvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.621 [XNIO-1 task-1] uEEPFQKwQsauKVqTZGOAvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.621 [XNIO-1 task-1] uEEPFQKwQsauKVqTZGOAvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.646 [XNIO-1 task-1] Cm5jjk8XS4GRE4AQP_VnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/575f6d1b +16:29:43.646 [XNIO-1 task-1] Cm5jjk8XS4GRE4AQP_VnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.646 [XNIO-1 task-1] Cm5jjk8XS4GRE4AQP_VnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:43.647 [XNIO-1 task-1] Cm5jjk8XS4GRE4AQP_VnHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/575f6d1b +16:29:43.654 [XNIO-1 task-1] SXIXtvquTI-yUImjQaWqrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/575f6d1b, base path is set to: null +16:29:43.654 [XNIO-1 task-1] SXIXtvquTI-yUImjQaWqrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.655 [XNIO-1 task-1] SXIXtvquTI-yUImjQaWqrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:43.655 [XNIO-1 task-1] SXIXtvquTI-yUImjQaWqrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/575f6d1b, base path is set to: null +16:29:43.655 [XNIO-1 task-1] SXIXtvquTI-yUImjQaWqrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "575f6d1b", "575f6d1b", userId) +16:29:43.677 [XNIO-1 task-1] H-hKw169QNuUo5Fa8twdMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0d34ccaf +16:29:43.677 [XNIO-1 task-1] H-hKw169QNuUo5Fa8twdMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:43.677 [XNIO-1 task-1] H-hKw169QNuUo5Fa8twdMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:43.677 [XNIO-1 task-1] H-hKw169QNuUo5Fa8twdMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0d34ccaf +16:29:43.686 [XNIO-1 task-1] vXwk0-v-TiWlPj0doUFQ4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.686 [XNIO-1 task-1] vXwk0-v-TiWlPj0doUFQ4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.687 [XNIO-1 task-1] vXwk0-v-TiWlPj0doUFQ4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.765 [XNIO-1 task-1] uI1aispsRyKWyIFpQg3qLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.766 [XNIO-1 task-1] uI1aispsRyKWyIFpQg3qLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.766 [XNIO-1 task-1] uI1aispsRyKWyIFpQg3qLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.849 [XNIO-1 task-1] GPwY_ayBQseQ25JN1PhlUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.849 [XNIO-1 task-1] GPwY_ayBQseQ25JN1PhlUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.850 [XNIO-1 task-1] GPwY_ayBQseQ25JN1PhlUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.964 [XNIO-1 task-1] vxwDRs0mR0K8wpdm1cKdIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.965 [XNIO-1 task-1] vxwDRs0mR0K8wpdm1cKdIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.965 [XNIO-1 task-1] vxwDRs0mR0K8wpdm1cKdIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.992 [XNIO-1 task-1] i3g2yYSlSTS5DML_6KqJqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.992 [XNIO-1 task-1] i3g2yYSlSTS5DML_6KqJqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:43.992 [XNIO-1 task-1] i3g2yYSlSTS5DML_6KqJqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:43.993 [XNIO-1 task-1] i3g2yYSlSTS5DML_6KqJqg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.010 [XNIO-1 task-1] yBG6URsiS9yPpn2oe9ICFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48d7a224, base path is set to: null +16:29:44.011 [XNIO-1 task-1] yBG6URsiS9yPpn2oe9ICFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.011 [XNIO-1 task-1] yBG6URsiS9yPpn2oe9ICFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.011 [XNIO-1 task-1] yBG6URsiS9yPpn2oe9ICFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48d7a224, base path is set to: null +16:29:44.011 [XNIO-1 task-1] yBG6URsiS9yPpn2oe9ICFw DEBUG com.networknt.schema.TypeValidator debug - validate( "48d7a224", "48d7a224", userId) +16:29:44.017 [XNIO-1 task-1] 3iFcWnfES3mSBJuWAx9AMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.017 [XNIO-1 task-1] 3iFcWnfES3mSBJuWAx9AMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.017 [XNIO-1 task-1] 3iFcWnfES3mSBJuWAx9AMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.018 [XNIO-1 task-1] 3iFcWnfES3mSBJuWAx9AMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.050 [XNIO-1 task-1] mNPiZikgQS-E71tMzDvPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c2f4f37b +16:29:44.050 [XNIO-1 task-1] mNPiZikgQS-E71tMzDvPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.050 [XNIO-1 task-1] mNPiZikgQS-E71tMzDvPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.050 [XNIO-1 task-1] mNPiZikgQS-E71tMzDvPFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c2f4f37b +16:29:44.055 [XNIO-1 task-1] pRyaAwdNRhirmi_1SNwz2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26dc8226, base path is set to: null +16:29:44.056 [XNIO-1 task-1] pRyaAwdNRhirmi_1SNwz2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.056 [XNIO-1 task-1] pRyaAwdNRhirmi_1SNwz2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.056 [XNIO-1 task-1] pRyaAwdNRhirmi_1SNwz2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26dc8226, base path is set to: null +16:29:44.056 [XNIO-1 task-1] pRyaAwdNRhirmi_1SNwz2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "26dc8226", "26dc8226", userId) +16:29:44.062 [XNIO-1 task-1] IwiOJKKTQSmmB0q7U2GAuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.062 [XNIO-1 task-1] IwiOJKKTQSmmB0q7U2GAuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.063 [XNIO-1 task-1] IwiOJKKTQSmmB0q7U2GAuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.063 [XNIO-1 task-1] IwiOJKKTQSmmB0q7U2GAuw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.077 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f782a5b4-8990-434c-854d-20c6792eb3ca +16:29:44.086 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/26dc8226 +16:29:44.086 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.086 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.086 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:44.087 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/26dc8226 +16:29:44.087 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c7fe3b86-e401-4bb8-92d1-2591aabdee8f","newPassword":"136e2ca4-70ab-4304-944f-ee661489655b","newPasswordConfirm":"136e2ca4-70ab-4304-944f-ee661489655b"}, {"password":"c7fe3b86-e401-4bb8-92d1-2591aabdee8f","newPassword":"136e2ca4-70ab-4304-944f-ee661489655b","newPasswordConfirm":"136e2ca4-70ab-4304-944f-ee661489655b"}, requestBody) +16:29:44.088 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c7fe3b86-e401-4bb8-92d1-2591aabdee8f","newPassword":"136e2ca4-70ab-4304-944f-ee661489655b","newPasswordConfirm":"136e2ca4-70ab-4304-944f-ee661489655b"}, {"password":"c7fe3b86-e401-4bb8-92d1-2591aabdee8f","newPassword":"136e2ca4-70ab-4304-944f-ee661489655b","newPasswordConfirm":"136e2ca4-70ab-4304-944f-ee661489655b"}, requestBody) +16:29:44.088 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG com.networknt.schema.FormatValidator debug - validate( "136e2ca4-70ab-4304-944f-ee661489655b", {"password":"c7fe3b86-e401-4bb8-92d1-2591aabdee8f","newPassword":"136e2ca4-70ab-4304-944f-ee661489655b","newPasswordConfirm":"136e2ca4-70ab-4304-944f-ee661489655b"}, requestBody.newPasswordConfirm) +16:29:44.088 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG com.networknt.schema.FormatValidator debug - validate( "c7fe3b86-e401-4bb8-92d1-2591aabdee8f", {"password":"c7fe3b86-e401-4bb8-92d1-2591aabdee8f","newPassword":"136e2ca4-70ab-4304-944f-ee661489655b","newPasswordConfirm":"136e2ca4-70ab-4304-944f-ee661489655b"}, requestBody.password) +16:29:44.088 [XNIO-1 task-1] YLtqmjOKQzSV8fv0x89ElA DEBUG com.networknt.schema.FormatValidator debug - validate( "136e2ca4-70ab-4304-944f-ee661489655b", {"password":"c7fe3b86-e401-4bb8-92d1-2591aabdee8f","newPassword":"136e2ca4-70ab-4304-944f-ee661489655b","newPasswordConfirm":"136e2ca4-70ab-4304-944f-ee661489655b"}, requestBody.newPassword) +16:29:44.092 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8cce1dee-c8c6-48a4-afbd-58a3ed9c1173 +16:29:44.168 [XNIO-1 task-1] O2lW5F0OSdKYAIyHLLC3cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26dc8226, base path is set to: null +16:29:44.169 [XNIO-1 task-1] O2lW5F0OSdKYAIyHLLC3cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.169 [XNIO-1 task-1] O2lW5F0OSdKYAIyHLLC3cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.169 [XNIO-1 task-1] O2lW5F0OSdKYAIyHLLC3cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26dc8226, base path is set to: null +16:29:44.169 [XNIO-1 task-1] O2lW5F0OSdKYAIyHLLC3cg DEBUG com.networknt.schema.TypeValidator debug - validate( "26dc8226", "26dc8226", userId) +16:29:44.176 [XNIO-1 task-1] eq_ApJ1GTPSpYP1vpu84bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.176 [XNIO-1 task-1] eq_ApJ1GTPSpYP1vpu84bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.176 [XNIO-1 task-1] eq_ApJ1GTPSpYP1vpu84bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.177 [XNIO-1 task-1] eq_ApJ1GTPSpYP1vpu84bA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.183 [XNIO-1 task-1] 5EApTC6dSjGQYNjv3NyOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26dc8226 +16:29:44.183 [XNIO-1 task-1] 5EApTC6dSjGQYNjv3NyOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.183 [XNIO-1 task-1] 5EApTC6dSjGQYNjv3NyOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.184 [XNIO-1 task-1] 5EApTC6dSjGQYNjv3NyOIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26dc8226 +16:29:44.194 [XNIO-1 task-1] 4ojOi_ucRAifhIgYh1n1KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.195 [XNIO-1 task-1] 4ojOi_ucRAifhIgYh1n1KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.195 [XNIO-1 task-1] 4ojOi_ucRAifhIgYh1n1KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.240 [XNIO-1 task-1] yVPDXy7sRaqnn6o_HP508w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.240 [XNIO-1 task-1] yVPDXy7sRaqnn6o_HP508w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.240 [XNIO-1 task-1] yVPDXy7sRaqnn6o_HP508w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.241 [XNIO-1 task-1] yVPDXy7sRaqnn6o_HP508w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.255 [XNIO-1 task-1] p_w9HcIKRVuW3qlhdsDBmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.255 [XNIO-1 task-1] p_w9HcIKRVuW3qlhdsDBmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.255 [XNIO-1 task-1] p_w9HcIKRVuW3qlhdsDBmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.256 [XNIO-1 task-1] p_w9HcIKRVuW3qlhdsDBmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.266 [XNIO-1 task-1] gFVJoml6TleDBGoiJi1_bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.266 [XNIO-1 task-1] gFVJoml6TleDBGoiJi1_bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.266 [XNIO-1 task-1] gFVJoml6TleDBGoiJi1_bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.283 [XNIO-1 task-1] hO2vjMebT8KZr57mobMvgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48d7a224, base path is set to: null +16:29:44.283 [XNIO-1 task-1] hO2vjMebT8KZr57mobMvgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.283 [XNIO-1 task-1] hO2vjMebT8KZr57mobMvgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.284 [XNIO-1 task-1] hO2vjMebT8KZr57mobMvgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48d7a224, base path is set to: null +16:29:44.284 [XNIO-1 task-1] hO2vjMebT8KZr57mobMvgg DEBUG com.networknt.schema.TypeValidator debug - validate( "48d7a224", "48d7a224", userId) +16:29:44.290 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0d34ccaf +16:29:44.290 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.291 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.291 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:44.291 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0d34ccaf +16:29:44.292 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPassword":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5","newPasswordConfirm":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5"}, {"password":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPassword":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5","newPasswordConfirm":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5"}, requestBody) +16:29:44.292 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPassword":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5","newPasswordConfirm":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5"}, {"password":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPassword":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5","newPasswordConfirm":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5"}, requestBody) +16:29:44.292 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG com.networknt.schema.FormatValidator debug - validate( "64b55a83-009e-4b01-8b3e-6c56efc1c5f5", {"password":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPassword":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5","newPasswordConfirm":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5"}, requestBody.newPasswordConfirm) +16:29:44.292 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG com.networknt.schema.FormatValidator debug - validate( "0dfd0ab3-822e-445f-a946-3ba8355a0927", {"password":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPassword":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5","newPasswordConfirm":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5"}, requestBody.password) +16:29:44.292 [XNIO-1 task-1] TalQSgf-SlWd-OaOubrocA DEBUG com.networknt.schema.FormatValidator debug - validate( "64b55a83-009e-4b01-8b3e-6c56efc1c5f5", {"password":"0dfd0ab3-822e-445f-a946-3ba8355a0927","newPassword":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5","newPasswordConfirm":"64b55a83-009e-4b01-8b3e-6c56efc1c5f5"}, requestBody.newPassword) +16:29:44.319 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2aeb08c9 +16:29:44.319 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.319 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.319 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:44.319 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2aeb08c9 +16:29:44.320 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104","newPassword":"4248b7c9-ab89-4a74-aed0-6b56ef88704f","newPasswordConfirm":"4248b7c9-ab89-4a74-aed0-6b56ef88704f"}, {"password":"b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104","newPassword":"4248b7c9-ab89-4a74-aed0-6b56ef88704f","newPasswordConfirm":"4248b7c9-ab89-4a74-aed0-6b56ef88704f"}, requestBody) +16:29:44.321 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104","newPassword":"4248b7c9-ab89-4a74-aed0-6b56ef88704f","newPasswordConfirm":"4248b7c9-ab89-4a74-aed0-6b56ef88704f"}, {"password":"b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104","newPassword":"4248b7c9-ab89-4a74-aed0-6b56ef88704f","newPasswordConfirm":"4248b7c9-ab89-4a74-aed0-6b56ef88704f"}, requestBody) +16:29:44.321 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG com.networknt.schema.FormatValidator debug - validate( "4248b7c9-ab89-4a74-aed0-6b56ef88704f", {"password":"b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104","newPassword":"4248b7c9-ab89-4a74-aed0-6b56ef88704f","newPasswordConfirm":"4248b7c9-ab89-4a74-aed0-6b56ef88704f"}, requestBody.newPasswordConfirm) +16:29:44.321 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG com.networknt.schema.FormatValidator debug - validate( "b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104", {"password":"b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104","newPassword":"4248b7c9-ab89-4a74-aed0-6b56ef88704f","newPasswordConfirm":"4248b7c9-ab89-4a74-aed0-6b56ef88704f"}, requestBody.password) +16:29:44.321 [XNIO-1 task-1] G2H27BK0ToK75oTQG-m7Jw DEBUG com.networknt.schema.FormatValidator debug - validate( "4248b7c9-ab89-4a74-aed0-6b56ef88704f", {"password":"b90a7eb4-5a4c-4dbc-86b9-d33b19e1f104","newPassword":"4248b7c9-ab89-4a74-aed0-6b56ef88704f","newPasswordConfirm":"4248b7c9-ab89-4a74-aed0-6b56ef88704f"}, requestBody.newPassword) +16:29:44.332 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2aeb08c9 +16:29:44.339 [XNIO-1 task-1] qSjPllXETtqvg2cERVAYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c2f4f37b +16:29:44.339 [XNIO-1 task-1] qSjPllXETtqvg2cERVAYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.339 [XNIO-1 task-1] qSjPllXETtqvg2cERVAYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.339 [XNIO-1 task-1] qSjPllXETtqvg2cERVAYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c2f4f37b +16:29:44.344 [XNIO-1 task-1] 2yrR7OH9RsGn8aEbAlrUtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.344 [XNIO-1 task-1] 2yrR7OH9RsGn8aEbAlrUtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.345 [XNIO-1 task-1] 2yrR7OH9RsGn8aEbAlrUtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.360 [XNIO-1 task-1] PmKooLXETGG1YOg4ShmWYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.360 [XNIO-1 task-1] PmKooLXETGG1YOg4ShmWYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.361 [XNIO-1 task-1] PmKooLXETGG1YOg4ShmWYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.361 [XNIO-1 task-1] PmKooLXETGG1YOg4ShmWYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.369 [XNIO-1 task-1] NHI64zViRbCz4E_CkWbdlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2aeb08c9, base path is set to: null +16:29:44.369 [XNIO-1 task-1] NHI64zViRbCz4E_CkWbdlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.369 [XNIO-1 task-1] NHI64zViRbCz4E_CkWbdlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.369 [XNIO-1 task-1] NHI64zViRbCz4E_CkWbdlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2aeb08c9, base path is set to: null +16:29:44.370 [XNIO-1 task-1] NHI64zViRbCz4E_CkWbdlg DEBUG com.networknt.schema.TypeValidator debug - validate( "2aeb08c9", "2aeb08c9", userId) +16:29:44.380 [XNIO-1 task-1] VblO7TJvTaivUbJcd6F6_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.380 [XNIO-1 task-1] VblO7TJvTaivUbJcd6F6_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.381 [XNIO-1 task-1] VblO7TJvTaivUbJcd6F6_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.388 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:796e333e-5e64-4603-812a-e603a075f351 +16:29:44.390 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:796e333e-5e64-4603-812a-e603a075f351 +16:29:44.396 [XNIO-1 task-1] qbXnKYRnSmOlGiVYG4mc4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.396 [XNIO-1 task-1] qbXnKYRnSmOlGiVYG4mc4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.396 [XNIO-1 task-1] qbXnKYRnSmOlGiVYG4mc4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.417 [XNIO-1 task-1] LoeRrVgoT3C95-uYOgeXvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.417 [XNIO-1 task-1] LoeRrVgoT3C95-uYOgeXvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.418 [XNIO-1 task-1] LoeRrVgoT3C95-uYOgeXvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.445 [XNIO-1 task-1] R_v97U5FRwi0oxuu1qw34g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.446 [XNIO-1 task-1] R_v97U5FRwi0oxuu1qw34g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.446 [XNIO-1 task-1] R_v97U5FRwi0oxuu1qw34g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.473 [XNIO-1 task-1] cZFzwvhcRkCyXEYHJAde0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.476 [XNIO-1 task-1] cZFzwvhcRkCyXEYHJAde0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.476 [XNIO-1 task-1] cZFzwvhcRkCyXEYHJAde0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.477 [XNIO-1 task-1] cZFzwvhcRkCyXEYHJAde0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.479 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:37458bbb-1302-41c6-a469-1f5e3b3ee839 +16:29:44.482 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:37458bbb-1302-41c6-a469-1f5e3b3ee839 +16:29:44.483 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c4d46c4e +16:29:44.483 [XNIO-1 task-1] r5bIfVnCTNaQawI4B2M28A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.483 [XNIO-1 task-1] r5bIfVnCTNaQawI4B2M28A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.483 [XNIO-1 task-1] r5bIfVnCTNaQawI4B2M28A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.484 [XNIO-1 task-1] r5bIfVnCTNaQawI4B2M28A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.490 [XNIO-1 task-1] Q3FLelI0RAqOFda_KaMjpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4dee1604, base path is set to: null +16:29:44.490 [XNIO-1 task-1] Q3FLelI0RAqOFda_KaMjpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.490 [XNIO-1 task-1] Q3FLelI0RAqOFda_KaMjpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.490 [XNIO-1 task-1] Q3FLelI0RAqOFda_KaMjpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4dee1604, base path is set to: null +16:29:44.493 [XNIO-1 task-1] Q3FLelI0RAqOFda_KaMjpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4dee1604", "4dee1604", userId) +16:29:44.503 [XNIO-1 task-1] ERbeapRKSF6cZzCUH_YOaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/aae8a5de +16:29:44.505 [XNIO-1 task-1] ERbeapRKSF6cZzCUH_YOaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.505 [XNIO-1 task-1] ERbeapRKSF6cZzCUH_YOaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.505 [XNIO-1 task-1] ERbeapRKSF6cZzCUH_YOaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/aae8a5de +16:29:44.508 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9fc59e45-5e5c-4ff3-93ef-0d5fbfafc902 +16:29:44.513 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9fc59e45-5e5c-4ff3-93ef-0d5fbfafc902 +16:29:44.546 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3586d42e +16:29:44.546 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.546 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.547 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:44.547 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3586d42e +16:29:44.548 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e","newPassword":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPasswordConfirm":"41c21180-d564-4322-ac5b-0331ee18d5e9"}, {"password":"8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e","newPassword":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPasswordConfirm":"41c21180-d564-4322-ac5b-0331ee18d5e9"}, requestBody) +16:29:44.548 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e","newPassword":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPasswordConfirm":"41c21180-d564-4322-ac5b-0331ee18d5e9"}, {"password":"8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e","newPassword":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPasswordConfirm":"41c21180-d564-4322-ac5b-0331ee18d5e9"}, requestBody) +16:29:44.548 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG com.networknt.schema.FormatValidator debug - validate( "41c21180-d564-4322-ac5b-0331ee18d5e9", {"password":"8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e","newPassword":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPasswordConfirm":"41c21180-d564-4322-ac5b-0331ee18d5e9"}, requestBody.newPasswordConfirm) +16:29:44.548 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG com.networknt.schema.FormatValidator debug - validate( "8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e", {"password":"8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e","newPassword":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPasswordConfirm":"41c21180-d564-4322-ac5b-0331ee18d5e9"}, requestBody.password) +16:29:44.548 [XNIO-1 task-1] -VtH8MKzQpOCE59jaKOfPA DEBUG com.networknt.schema.FormatValidator debug - validate( "41c21180-d564-4322-ac5b-0331ee18d5e9", {"password":"8fbfe3a1-47d7-4798-a661-c56d6bfb8e5e","newPassword":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPasswordConfirm":"41c21180-d564-4322-ac5b-0331ee18d5e9"}, requestBody.newPassword) +16:29:44.589 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3586d42e +16:29:44.589 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.589 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.589 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:44.590 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3586d42e +16:29:44.590 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPassword":"25c25863-4525-4e1d-8f47-9d5808c28061","newPasswordConfirm":"25c25863-4525-4e1d-8f47-9d5808c28061"}, {"password":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPassword":"25c25863-4525-4e1d-8f47-9d5808c28061","newPasswordConfirm":"25c25863-4525-4e1d-8f47-9d5808c28061"}, requestBody) +16:29:44.590 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPassword":"25c25863-4525-4e1d-8f47-9d5808c28061","newPasswordConfirm":"25c25863-4525-4e1d-8f47-9d5808c28061"}, {"password":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPassword":"25c25863-4525-4e1d-8f47-9d5808c28061","newPasswordConfirm":"25c25863-4525-4e1d-8f47-9d5808c28061"}, requestBody) +16:29:44.591 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "25c25863-4525-4e1d-8f47-9d5808c28061", {"password":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPassword":"25c25863-4525-4e1d-8f47-9d5808c28061","newPasswordConfirm":"25c25863-4525-4e1d-8f47-9d5808c28061"}, requestBody.newPasswordConfirm) +16:29:44.591 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "41c21180-d564-4322-ac5b-0331ee18d5e9", {"password":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPassword":"25c25863-4525-4e1d-8f47-9d5808c28061","newPasswordConfirm":"25c25863-4525-4e1d-8f47-9d5808c28061"}, requestBody.password) +16:29:44.591 [XNIO-1 task-1] 8I-nzLubSjCNhU8vJ8UmeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "25c25863-4525-4e1d-8f47-9d5808c28061", {"password":"41c21180-d564-4322-ac5b-0331ee18d5e9","newPassword":"25c25863-4525-4e1d-8f47-9d5808c28061","newPasswordConfirm":"25c25863-4525-4e1d-8f47-9d5808c28061"}, requestBody.newPassword) +16:29:44.670 [XNIO-1 task-1] XRlyivgLQEKwwNnFFZ4YfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.671 [XNIO-1 task-1] XRlyivgLQEKwwNnFFZ4YfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.671 [XNIO-1 task-1] XRlyivgLQEKwwNnFFZ4YfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.690 [XNIO-1 task-1] x3MAiLDdQO-LXGpE426Qrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/37e674c2 +16:29:44.690 [XNIO-1 task-1] x3MAiLDdQO-LXGpE426Qrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.690 [XNIO-1 task-1] x3MAiLDdQO-LXGpE426Qrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.690 [XNIO-1 task-1] x3MAiLDdQO-LXGpE426Qrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/37e674c2 +16:29:44.693 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c4d46c4e +16:29:44.696 [XNIO-1 task-1] bEnGjxIjTUmaFRxDZqx3GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.696 [XNIO-1 task-1] bEnGjxIjTUmaFRxDZqx3GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.697 [XNIO-1 task-1] bEnGjxIjTUmaFRxDZqx3GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.697 [XNIO-1 task-1] bEnGjxIjTUmaFRxDZqx3GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.704 [XNIO-1 task-1] aOt2wlW5S8qc_veOnZ1D0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.704 [XNIO-1 task-1] aOt2wlW5S8qc_veOnZ1D0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.704 [XNIO-1 task-1] aOt2wlW5S8qc_veOnZ1D0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.726 [XNIO-1 task-1] 39QPC8q_Q-mqGQ8qAZ997Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/37e674c2, base path is set to: null +16:29:44.727 [XNIO-1 task-1] 39QPC8q_Q-mqGQ8qAZ997Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.727 [XNIO-1 task-1] 39QPC8q_Q-mqGQ8qAZ997Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.727 [XNIO-1 task-1] 39QPC8q_Q-mqGQ8qAZ997Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/37e674c2, base path is set to: null +16:29:44.727 [XNIO-1 task-1] 39QPC8q_Q-mqGQ8qAZ997Q DEBUG com.networknt.schema.TypeValidator debug - validate( "37e674c2", "37e674c2", userId) +16:29:44.735 [XNIO-1 task-1] RILULMy8QHuD5ffT15-gQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.735 [XNIO-1 task-1] RILULMy8QHuD5ffT15-gQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.736 [XNIO-1 task-1] RILULMy8QHuD5ffT15-gQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.736 [XNIO-1 task-1] RILULMy8QHuD5ffT15-gQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.737 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9dd69d00 +16:29:44.740 [XNIO-1 task-1] tE5XHatVS6qMgE1Mx4CwMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.740 [XNIO-1 task-1] tE5XHatVS6qMgE1Mx4CwMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.741 [XNIO-1 task-1] tE5XHatVS6qMgE1Mx4CwMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.741 [XNIO-1 task-1] tE5XHatVS6qMgE1Mx4CwMw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:44.765 [XNIO-1 task-1] PABr04F1TuidCuPO4H17ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.766 [XNIO-1 task-1] PABr04F1TuidCuPO4H17ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.766 [XNIO-1 task-1] PABr04F1TuidCuPO4H17ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.785 [XNIO-1 task-1] 3nGD0jSzTautesnJH0CfUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.785 [XNIO-1 task-1] 3nGD0jSzTautesnJH0CfUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.786 [XNIO-1 task-1] 3nGD0jSzTautesnJH0CfUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.811 [XNIO-1 task-1] K3bGaqJGToW7cEUZ7erhbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/064ae885, base path is set to: null +16:29:44.811 [XNIO-1 task-1] K3bGaqJGToW7cEUZ7erhbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.812 [XNIO-1 task-1] K3bGaqJGToW7cEUZ7erhbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.812 [XNIO-1 task-1] K3bGaqJGToW7cEUZ7erhbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/064ae885, base path is set to: null +16:29:44.816 [XNIO-1 task-1] K3bGaqJGToW7cEUZ7erhbw DEBUG com.networknt.schema.TypeValidator debug - validate( "064ae885", "064ae885", userId) +16:29:44.825 [XNIO-1 task-1] tqXZQaVCQsyWYuYltcgSiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.825 [XNIO-1 task-1] tqXZQaVCQsyWYuYltcgSiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.826 [XNIO-1 task-1] tqXZQaVCQsyWYuYltcgSiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.855 [XNIO-1 task-1] WzEmgHVET1qRU2nRjhMxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/064ae885 +16:29:44.855 [XNIO-1 task-1] WzEmgHVET1qRU2nRjhMxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.856 [XNIO-1 task-1] WzEmgHVET1qRU2nRjhMxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.856 [XNIO-1 task-1] WzEmgHVET1qRU2nRjhMxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/064ae885 +16:29:44.870 [XNIO-1 task-1] GnzQjxqOSVaFuIV3IIaIIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.870 [XNIO-1 task-1] GnzQjxqOSVaFuIV3IIaIIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.871 [XNIO-1 task-1] GnzQjxqOSVaFuIV3IIaIIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:44.882 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b49de5d3 +16:29:44.886 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b49de5d3 +16:29:44.899 [XNIO-1 task-1] tWf00BZ8RKONYuYz5XZnsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.899 [XNIO-1 task-1] tWf00BZ8RKONYuYz5XZnsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.900 [XNIO-1 task-1] tWf00BZ8RKONYuYz5XZnsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.900 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b49de5d3 +16:29:44.909 [XNIO-1 task-1] 2ArzZqR9TqSJPq1-sWo8KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.909 [XNIO-1 task-1] 2ArzZqR9TqSJPq1-sWo8KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.909 [XNIO-1 task-1] 2ArzZqR9TqSJPq1-sWo8KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.909 [XNIO-1 task-1] 2ArzZqR9TqSJPq1-sWo8KA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:44.947 [XNIO-1 task-1] 3JVaBgJiRzaKjWqT0D7kxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b49de5d3 +16:29:44.947 [XNIO-1 task-1] 3JVaBgJiRzaKjWqT0D7kxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.948 [XNIO-1 task-1] 3JVaBgJiRzaKjWqT0D7kxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.948 [XNIO-1 task-1] 3JVaBgJiRzaKjWqT0D7kxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b49de5d3 +16:29:44.949 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b49de5d3 +16:29:44.958 [XNIO-1 task-1] R9ip8uz2RL6G6QX8YL0pwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/59264f7f +16:29:44.958 [XNIO-1 task-1] R9ip8uz2RL6G6QX8YL0pwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:44.958 [XNIO-1 task-1] R9ip8uz2RL6G6QX8YL0pwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:44.958 [XNIO-1 task-1] R9ip8uz2RL6G6QX8YL0pwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/59264f7f +16:29:44.976 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/37e674c2, base path is set to: null +16:29:44.977 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:44.977 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:44.977 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:44.977 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/37e674c2, base path is set to: null +16:29:44.978 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "37e674c2", "37e674c2", userId) +16:29:44.981 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0303da75-6777-498e-b107-c5146a261af3","newPassword":"b43978a3-f53c-4280-a252-a8f3a3a974f0","newPasswordConfirm":"b43978a3-f53c-4280-a252-a8f3a3a974f0"}, {"password":"0303da75-6777-498e-b107-c5146a261af3","newPassword":"b43978a3-f53c-4280-a252-a8f3a3a974f0","newPasswordConfirm":"b43978a3-f53c-4280-a252-a8f3a3a974f0"}, requestBody) +16:29:44.981 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b43978a3-f53c-4280-a252-a8f3a3a974f0", {"password":"0303da75-6777-498e-b107-c5146a261af3","newPassword":"b43978a3-f53c-4280-a252-a8f3a3a974f0","newPasswordConfirm":"b43978a3-f53c-4280-a252-a8f3a3a974f0"}, requestBody.newPasswordConfirm) +16:29:44.981 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0303da75-6777-498e-b107-c5146a261af3", {"password":"0303da75-6777-498e-b107-c5146a261af3","newPassword":"b43978a3-f53c-4280-a252-a8f3a3a974f0","newPasswordConfirm":"b43978a3-f53c-4280-a252-a8f3a3a974f0"}, requestBody.password) +16:29:44.981 [XNIO-1 task-1] Op4eKq0KTMuUjKrvXolXoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b43978a3-f53c-4280-a252-a8f3a3a974f0", {"password":"0303da75-6777-498e-b107-c5146a261af3","newPassword":"b43978a3-f53c-4280-a252-a8f3a3a974f0","newPasswordConfirm":"b43978a3-f53c-4280-a252-a8f3a3a974f0"}, requestBody.newPassword) +16:29:45.009 [XNIO-1 task-1] opEuJLsvRviSCUPw_M-0yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/37e674c2, base path is set to: null +16:29:45.009 [XNIO-1 task-1] opEuJLsvRviSCUPw_M-0yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.009 [XNIO-1 task-1] opEuJLsvRviSCUPw_M-0yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.009 [XNIO-1 task-1] opEuJLsvRviSCUPw_M-0yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/37e674c2, base path is set to: null +16:29:45.010 [XNIO-1 task-1] opEuJLsvRviSCUPw_M-0yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "37e674c2", "37e674c2", userId) +16:29:45.036 [XNIO-1 task-1] tA2AoYXAT5qiFzunMbUnyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0d34ccaf +16:29:45.036 [XNIO-1 task-1] tA2AoYXAT5qiFzunMbUnyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.036 [XNIO-1 task-1] tA2AoYXAT5qiFzunMbUnyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.036 [XNIO-1 task-1] tA2AoYXAT5qiFzunMbUnyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0d34ccaf +16:29:45.049 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f43c78a +16:29:45.050 [XNIO-1 task-1] Qigkch2LQYKbc-RhuMwfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b563e58e +16:29:45.050 [XNIO-1 task-1] Qigkch2LQYKbc-RhuMwfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.050 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3f43c78a +16:29:45.050 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f43c78a +16:29:45.050 [XNIO-1 task-1] Qigkch2LQYKbc-RhuMwfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b563e58e +16:29:45.066 [XNIO-1 task-1] w_wv5VLrQpqFpxm81_20wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48d7a224, base path is set to: null +16:29:45.066 [XNIO-1 task-1] w_wv5VLrQpqFpxm81_20wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.066 [XNIO-1 task-1] w_wv5VLrQpqFpxm81_20wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.066 [XNIO-1 task-1] w_wv5VLrQpqFpxm81_20wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48d7a224, base path is set to: null +16:29:45.067 [XNIO-1 task-1] w_wv5VLrQpqFpxm81_20wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48d7a224", "48d7a224", userId) +16:29:45.075 [XNIO-1 task-1] tKGFIRmYTRSiScpiA3i8JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.075 [XNIO-1 task-1] tKGFIRmYTRSiScpiA3i8JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.075 [XNIO-1 task-1] tKGFIRmYTRSiScpiA3i8JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.085 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3f43c78a +16:29:45.095 [XNIO-1 task-1] In2tdsjPT1iAYdVSCetpew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ce1e5319 +16:29:45.095 [XNIO-1 task-1] In2tdsjPT1iAYdVSCetpew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.095 [XNIO-1 task-1] In2tdsjPT1iAYdVSCetpew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.096 [XNIO-1 task-1] In2tdsjPT1iAYdVSCetpew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ce1e5319 +16:29:45.103 [XNIO-1 task-1] mqMNG11gRQmfkdHhVkBmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ce1e5319, base path is set to: null +16:29:45.104 [XNIO-1 task-1] mqMNG11gRQmfkdHhVkBmqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.104 [XNIO-1 task-1] mqMNG11gRQmfkdHhVkBmqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.104 [XNIO-1 task-1] mqMNG11gRQmfkdHhVkBmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ce1e5319, base path is set to: null +16:29:45.104 [XNIO-1 task-1] mqMNG11gRQmfkdHhVkBmqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ce1e5319", "ce1e5319", userId) +16:29:45.115 [XNIO-1 task-1] R9-2oE4bSaScUW6QgNyHAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/423a5c26 +16:29:45.115 [XNIO-1 task-1] R9-2oE4bSaScUW6QgNyHAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.115 [XNIO-1 task-1] R9-2oE4bSaScUW6QgNyHAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.116 [XNIO-1 task-1] R9-2oE4bSaScUW6QgNyHAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/423a5c26 +16:29:45.127 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:df43064e-2874-4cb5-8d32-526aa6466627 +16:29:45.130 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:df43064e-2874-4cb5-8d32-526aa6466627 +16:29:45.132 [XNIO-1 task-1] UvrZfHbAQ56xL9lOYVw56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48d7a224 +16:29:45.132 [XNIO-1 task-1] UvrZfHbAQ56xL9lOYVw56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.133 [XNIO-1 task-1] UvrZfHbAQ56xL9lOYVw56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.133 [XNIO-1 task-1] UvrZfHbAQ56xL9lOYVw56g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48d7a224 +16:29:45.146 [XNIO-1 task-1] U4J_T1AnTQuspWDGPMbg1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.146 [XNIO-1 task-1] U4J_T1AnTQuspWDGPMbg1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.146 [XNIO-1 task-1] U4J_T1AnTQuspWDGPMbg1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.182 [XNIO-1 task-1] YQOxrz-KSuGI46wupyq62g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e924261e, base path is set to: null +16:29:45.182 [XNIO-1 task-1] YQOxrz-KSuGI46wupyq62g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.182 [XNIO-1 task-1] YQOxrz-KSuGI46wupyq62g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.183 [XNIO-1 task-1] YQOxrz-KSuGI46wupyq62g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e924261e, base path is set to: null +16:29:45.183 [XNIO-1 task-1] YQOxrz-KSuGI46wupyq62g DEBUG com.networknt.schema.TypeValidator debug - validate( "e924261e", "e924261e", userId) +16:29:45.194 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c2f4f37b +16:29:45.194 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.194 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.195 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:45.195 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c2f4f37b +16:29:45.196 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4d43d7e5-2258-4df4-b630-29849592e12d","newPassword":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b","newPasswordConfirm":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b"}, {"password":"4d43d7e5-2258-4df4-b630-29849592e12d","newPassword":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b","newPasswordConfirm":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b"}, requestBody) +16:29:45.196 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4d43d7e5-2258-4df4-b630-29849592e12d","newPassword":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b","newPasswordConfirm":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b"}, {"password":"4d43d7e5-2258-4df4-b630-29849592e12d","newPassword":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b","newPasswordConfirm":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b"}, requestBody) +16:29:45.196 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG com.networknt.schema.FormatValidator debug - validate( "e0cac3f2-7f6f-4665-a6a0-a9a32b73528b", {"password":"4d43d7e5-2258-4df4-b630-29849592e12d","newPassword":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b","newPasswordConfirm":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b"}, requestBody.newPasswordConfirm) +16:29:45.196 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG com.networknt.schema.FormatValidator debug - validate( "4d43d7e5-2258-4df4-b630-29849592e12d", {"password":"4d43d7e5-2258-4df4-b630-29849592e12d","newPassword":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b","newPasswordConfirm":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b"}, requestBody.password) +16:29:45.196 [XNIO-1 task-1] 1GHqFDZ_QgWue2XAE-X4hw DEBUG com.networknt.schema.FormatValidator debug - validate( "e0cac3f2-7f6f-4665-a6a0-a9a32b73528b", {"password":"4d43d7e5-2258-4df4-b630-29849592e12d","newPassword":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b","newPasswordConfirm":"e0cac3f2-7f6f-4665-a6a0-a9a32b73528b"}, requestBody.newPassword) +16:29:45.244 [XNIO-1 task-1] ISd0KnUMTL2lPxkMFUKuRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3586d42e +16:29:45.244 [XNIO-1 task-1] ISd0KnUMTL2lPxkMFUKuRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.244 [XNIO-1 task-1] ISd0KnUMTL2lPxkMFUKuRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.244 [XNIO-1 task-1] ISd0KnUMTL2lPxkMFUKuRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3586d42e +16:29:45.258 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/600088b6, base path is set to: null +16:29:45.258 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.258 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.258 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:45.259 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/600088b6, base path is set to: null +16:29:45.259 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "600088b6", "600088b6", userId) +16:29:45.260 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2cfb8629-6165-4f54-884e-8b34d1ed7188","newPassword":"c41ecb6c-0e47-46a1-ab12-27230fa18952","newPasswordConfirm":"c41ecb6c-0e47-46a1-ab12-27230fa18952"}, {"password":"2cfb8629-6165-4f54-884e-8b34d1ed7188","newPassword":"c41ecb6c-0e47-46a1-ab12-27230fa18952","newPasswordConfirm":"c41ecb6c-0e47-46a1-ab12-27230fa18952"}, requestBody) +16:29:45.260 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c41ecb6c-0e47-46a1-ab12-27230fa18952", {"password":"2cfb8629-6165-4f54-884e-8b34d1ed7188","newPassword":"c41ecb6c-0e47-46a1-ab12-27230fa18952","newPasswordConfirm":"c41ecb6c-0e47-46a1-ab12-27230fa18952"}, requestBody.newPasswordConfirm) +16:29:45.260 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2cfb8629-6165-4f54-884e-8b34d1ed7188", {"password":"2cfb8629-6165-4f54-884e-8b34d1ed7188","newPassword":"c41ecb6c-0e47-46a1-ab12-27230fa18952","newPasswordConfirm":"c41ecb6c-0e47-46a1-ab12-27230fa18952"}, requestBody.password) +16:29:45.260 [XNIO-1 task-1] U3SjaxLASFyBMKNwSz6D7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c41ecb6c-0e47-46a1-ab12-27230fa18952", {"password":"2cfb8629-6165-4f54-884e-8b34d1ed7188","newPassword":"c41ecb6c-0e47-46a1-ab12-27230fa18952","newPasswordConfirm":"c41ecb6c-0e47-46a1-ab12-27230fa18952"}, requestBody.newPassword) +16:29:45.282 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9dd69d00 +16:29:45.288 [XNIO-1 task-1] m0QUKHkrTpiMhlyV0VRDcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.289 [XNIO-1 task-1] m0QUKHkrTpiMhlyV0VRDcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.289 [XNIO-1 task-1] m0QUKHkrTpiMhlyV0VRDcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.302 [XNIO-1 task-1] DYfHV8lvQjuG219gjgwOHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.302 [XNIO-1 task-1] DYfHV8lvQjuG219gjgwOHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.303 [XNIO-1 task-1] DYfHV8lvQjuG219gjgwOHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.303 [XNIO-1 task-1] DYfHV8lvQjuG219gjgwOHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.315 [XNIO-1 task-1] rwMSZpPRQg6GMJjPFi4IgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ab47a961, base path is set to: null +16:29:45.315 [XNIO-1 task-1] rwMSZpPRQg6GMJjPFi4IgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.315 [XNIO-1 task-1] rwMSZpPRQg6GMJjPFi4IgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.315 [XNIO-1 task-1] rwMSZpPRQg6GMJjPFi4IgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ab47a961, base path is set to: null +16:29:45.316 [XNIO-1 task-1] rwMSZpPRQg6GMJjPFi4IgA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab47a961", "ab47a961", userId) +16:29:45.317 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1701ebc8-720b-4b61-a1be-dd6c4c1b5197 +16:29:45.327 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d2fcf608-dd3c-4274-a8cc-4595e7b54970 +16:29:45.332 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1701ebc8-720b-4b61-a1be-dd6c4c1b5197 +16:29:45.352 [XNIO-1 task-1] ktkr6F9MRwG3zCutiFCmlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/600088b6 +16:29:45.352 [XNIO-1 task-1] ktkr6F9MRwG3zCutiFCmlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.352 [XNIO-1 task-1] ktkr6F9MRwG3zCutiFCmlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.352 [XNIO-1 task-1] ktkr6F9MRwG3zCutiFCmlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/600088b6 +16:29:45.366 [XNIO-1 task-1] GKHJI2blSYO8K_RaEMeKtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c2f4f37b, base path is set to: null +16:29:45.366 [XNIO-1 task-1] GKHJI2blSYO8K_RaEMeKtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.366 [XNIO-1 task-1] GKHJI2blSYO8K_RaEMeKtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.367 [XNIO-1 task-1] GKHJI2blSYO8K_RaEMeKtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c2f4f37b, base path is set to: null +16:29:45.367 [XNIO-1 task-1] GKHJI2blSYO8K_RaEMeKtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c2f4f37b", "c2f4f37b", userId) +16:29:45.374 [XNIO-1 task-1] wOTQfdIpReO1f3MZbx8oLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c2f4f37b +16:29:45.374 [XNIO-1 task-1] wOTQfdIpReO1f3MZbx8oLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.374 [XNIO-1 task-1] wOTQfdIpReO1f3MZbx8oLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.374 [XNIO-1 task-1] wOTQfdIpReO1f3MZbx8oLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c2f4f37b +16:29:45.387 [XNIO-1 task-1] CXm31fbwQM27GChawz9TeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.388 [XNIO-1 task-1] CXm31fbwQM27GChawz9TeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.389 [XNIO-1 task-1] CXm31fbwQM27GChawz9TeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.392 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5e28a663-48b6-4f65-b5c1-a0429aa16d15 +16:29:45.410 [XNIO-1 task-1] kL_moUcBRaWTjgOPG8HHUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.410 [XNIO-1 task-1] kL_moUcBRaWTjgOPG8HHUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.410 [XNIO-1 task-1] kL_moUcBRaWTjgOPG8HHUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.411 [XNIO-1 task-1] kL_moUcBRaWTjgOPG8HHUA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.423 [XNIO-1 task-1] BMi12QGjSrG1WnhTI93gSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.423 [XNIO-1 task-1] BMi12QGjSrG1WnhTI93gSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.423 [XNIO-1 task-1] BMi12QGjSrG1WnhTI93gSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.431 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:20369e60-145f-4127-931d-7365172b2619 +16:29:45.448 [XNIO-1 task-1] 6lYAVF2yRWqHOZsWhXkDlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.448 [XNIO-1 task-1] 6lYAVF2yRWqHOZsWhXkDlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.449 [XNIO-1 task-1] 6lYAVF2yRWqHOZsWhXkDlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.460 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b848dd43 +16:29:45.460 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.460 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.460 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:45.460 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b848dd43 +16:29:45.461 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f44eb738-fccd-4c92-a593-3cbaec23f802","newPassword":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff","newPasswordConfirm":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff"}, {"password":"f44eb738-fccd-4c92-a593-3cbaec23f802","newPassword":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff","newPasswordConfirm":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff"}, requestBody) +16:29:45.461 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f44eb738-fccd-4c92-a593-3cbaec23f802","newPassword":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff","newPasswordConfirm":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff"}, {"password":"f44eb738-fccd-4c92-a593-3cbaec23f802","newPassword":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff","newPasswordConfirm":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff"}, requestBody) +16:29:45.461 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG com.networknt.schema.FormatValidator debug - validate( "0f34fc1e-bf90-48d4-ad84-ac14935e1eff", {"password":"f44eb738-fccd-4c92-a593-3cbaec23f802","newPassword":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff","newPasswordConfirm":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff"}, requestBody.newPasswordConfirm) +16:29:45.461 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG com.networknt.schema.FormatValidator debug - validate( "f44eb738-fccd-4c92-a593-3cbaec23f802", {"password":"f44eb738-fccd-4c92-a593-3cbaec23f802","newPassword":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff","newPasswordConfirm":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff"}, requestBody.password) +16:29:45.461 [XNIO-1 task-1] p-OCMvAIQpq--P20kio4QQ DEBUG com.networknt.schema.FormatValidator debug - validate( "0f34fc1e-bf90-48d4-ad84-ac14935e1eff", {"password":"f44eb738-fccd-4c92-a593-3cbaec23f802","newPassword":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff","newPasswordConfirm":"0f34fc1e-bf90-48d4-ad84-ac14935e1eff"}, requestBody.newPassword) +16:29:45.486 [XNIO-1 task-1] FtG3mHDbSOCe8encHIwH-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.487 [XNIO-1 task-1] FtG3mHDbSOCe8encHIwH-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.487 [XNIO-1 task-1] FtG3mHDbSOCe8encHIwH-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.500 [XNIO-1 task-1] tBTOi2m8SSawA-6uZ_vedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.501 [XNIO-1 task-1] tBTOi2m8SSawA-6uZ_vedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.501 [XNIO-1 task-1] tBTOi2m8SSawA-6uZ_vedw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.512 [XNIO-1 task-1] wZqoO_LLRRyhIRRZ8_GYCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b848dd43 +16:29:45.512 [XNIO-1 task-1] wZqoO_LLRRyhIRRZ8_GYCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.512 [XNIO-1 task-1] wZqoO_LLRRyhIRRZ8_GYCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.512 [XNIO-1 task-1] wZqoO_LLRRyhIRRZ8_GYCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b848dd43 +16:29:45.519 [XNIO-1 task-1] E7Nn90qvRjS2wRZQFgNC_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b848dd43, base path is set to: null +16:29:45.519 [XNIO-1 task-1] E7Nn90qvRjS2wRZQFgNC_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.519 [XNIO-1 task-1] E7Nn90qvRjS2wRZQFgNC_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.519 [XNIO-1 task-1] E7Nn90qvRjS2wRZQFgNC_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b848dd43, base path is set to: null +16:29:45.520 [XNIO-1 task-1] E7Nn90qvRjS2wRZQFgNC_w DEBUG com.networknt.schema.TypeValidator debug - validate( "b848dd43", "b848dd43", userId) +16:29:45.541 [XNIO-1 task-1] cywrcTrWRU64BWYiXm8AyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/46cb4adb +16:29:45.541 [XNIO-1 task-1] cywrcTrWRU64BWYiXm8AyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.541 [XNIO-1 task-1] cywrcTrWRU64BWYiXm8AyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.542 [XNIO-1 task-1] cywrcTrWRU64BWYiXm8AyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/46cb4adb +16:29:45.560 [XNIO-1 task-1] zkR85FliQZ2fkSGalxnHcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.560 [XNIO-1 task-1] zkR85FliQZ2fkSGalxnHcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.561 [XNIO-1 task-1] zkR85FliQZ2fkSGalxnHcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.586 [XNIO-1 task-1] 82euKsYSRg-Xco-cAowDKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1e4b6b4, base path is set to: null +16:29:45.587 [XNIO-1 task-1] 82euKsYSRg-Xco-cAowDKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.587 [XNIO-1 task-1] 82euKsYSRg-Xco-cAowDKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.587 [XNIO-1 task-1] 82euKsYSRg-Xco-cAowDKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1e4b6b4, base path is set to: null +16:29:45.587 [XNIO-1 task-1] 82euKsYSRg-Xco-cAowDKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c1e4b6b4", "c1e4b6b4", userId) +16:29:45.594 [XNIO-1 task-1] FTJQxIPVS22sCHpNtfym9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1e4b6b4 +16:29:45.594 [XNIO-1 task-1] FTJQxIPVS22sCHpNtfym9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.594 [XNIO-1 task-1] FTJQxIPVS22sCHpNtfym9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.596 [XNIO-1 task-1] FTJQxIPVS22sCHpNtfym9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1e4b6b4 +16:29:45.596 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:45.611 [XNIO-1 task-1] 2grnb-hdTJaofxP-Ckzkeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.611 [XNIO-1 task-1] 2grnb-hdTJaofxP-Ckzkeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.612 [XNIO-1 task-1] 2grnb-hdTJaofxP-Ckzkeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.620 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d370b16d +16:29:45.622 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d370b16d +16:29:45.632 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d370b16d +16:29:45.632 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.632 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.632 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:45.633 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d370b16d +16:29:45.634 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"05fab3bd-a0f5-4f21-893e-2649e8c2e96c","newPassword":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f","newPasswordConfirm":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f"}, {"password":"05fab3bd-a0f5-4f21-893e-2649e8c2e96c","newPassword":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f","newPasswordConfirm":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f"}, requestBody) +16:29:45.634 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"05fab3bd-a0f5-4f21-893e-2649e8c2e96c","newPassword":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f","newPasswordConfirm":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f"}, {"password":"05fab3bd-a0f5-4f21-893e-2649e8c2e96c","newPassword":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f","newPasswordConfirm":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f"}, requestBody) +16:29:45.634 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG com.networknt.schema.FormatValidator debug - validate( "de54892f-ca5e-4bc5-98a0-cd64ce3bad8f", {"password":"05fab3bd-a0f5-4f21-893e-2649e8c2e96c","newPassword":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f","newPasswordConfirm":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f"}, requestBody.newPasswordConfirm) +16:29:45.634 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG com.networknt.schema.FormatValidator debug - validate( "05fab3bd-a0f5-4f21-893e-2649e8c2e96c", {"password":"05fab3bd-a0f5-4f21-893e-2649e8c2e96c","newPassword":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f","newPasswordConfirm":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f"}, requestBody.password) +16:29:45.634 [XNIO-1 task-1] JvDC51bWTUmCSTGyJ8uzMw DEBUG com.networknt.schema.FormatValidator debug - validate( "de54892f-ca5e-4bc5-98a0-cd64ce3bad8f", {"password":"05fab3bd-a0f5-4f21-893e-2649e8c2e96c","newPassword":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f","newPasswordConfirm":"de54892f-ca5e-4bc5-98a0-cd64ce3bad8f"}, requestBody.newPassword) +16:29:45.644 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d370b16d +16:29:45.663 [XNIO-1 task-1] s4V3Nf4kRE-36SaKV1-bCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d370b16d +16:29:45.664 [XNIO-1 task-1] s4V3Nf4kRE-36SaKV1-bCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.664 [XNIO-1 task-1] s4V3Nf4kRE-36SaKV1-bCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.664 [XNIO-1 task-1] s4V3Nf4kRE-36SaKV1-bCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d370b16d +16:29:45.665 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d370b16d +Jun 28, 2024 4:29:45 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +16:29:45.675 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:45.679 [XNIO-1 task-1] Xgyaujh7SzW-4nFZnD1V8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.679 [XNIO-1 task-1] Xgyaujh7SzW-4nFZnD1V8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.680 [XNIO-1 task-1] Xgyaujh7SzW-4nFZnD1V8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:29:45.681 [XNIO-1 task-1] Xgyaujh7SzW-4nFZnD1V8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.686 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:99546fda + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:29:45.696 [XNIO-1 task-1] Prv1pDvOTTq1tY8NH7hsNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.697 [XNIO-1 task-1] Prv1pDvOTTq1tY8NH7hsNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.697 [XNIO-1 task-1] Prv1pDvOTTq1tY8NH7hsNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.697 [XNIO-1 task-1] Prv1pDvOTTq1tY8NH7hsNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.697 [XNIO-1 task-1] Prv1pDvOTTq1tY8NH7hsNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.699 [XNIO-1 task-1] Prv1pDvOTTq1tY8NH7hsNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +16:29:45.699 [XNIO-1 task-1] Prv1pDvOTTq1tY8NH7hsNw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:45.713 [XNIO-1 task-1] 1oEa92FhTbOwxq8OGPbOPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.713 [XNIO-1 task-1] 1oEa92FhTbOwxq8OGPbOPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + +16:29:45.713 [XNIO-1 task-1] 1oEa92FhTbOwxq8OGPbOPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.713 [XNIO-1 task-1] 1oEa92FhTbOwxq8OGPbOPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.725 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:37458bbb-1302-41c6-a469-1f5e3b3ee839 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:29:45.735 [XNIO-1 task-1] fRgthvRwQnaNQTcA22uYRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.735 [XNIO-1 task-1] fRgthvRwQnaNQTcA22uYRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.736 [XNIO-1 task-1] fRgthvRwQnaNQTcA22uYRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.737 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:99546fda +16:29:45.743 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:45.750 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b1b337fb +16:29:45.750 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.751 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.751 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:45.751 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b1b337fb +16:29:45.752 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9488efa9-f8c4-4f76-adad-85d9490dfa4b","newPassword":"a45c6a77-14c4-483c-9e5e-1c328d6439c5","newPasswordConfirm":"a45c6a77-14c4-483c-9e5e-1c328d6439c5"}, {"password":"9488efa9-f8c4-4f76-adad-85d9490dfa4b","newPassword":"a45c6a77-14c4-483c-9e5e-1c328d6439c5","newPasswordConfirm":"a45c6a77-14c4-483c-9e5e-1c328d6439c5"}, requestBody) +16:29:45.752 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9488efa9-f8c4-4f76-adad-85d9490dfa4b","newPassword":"a45c6a77-14c4-483c-9e5e-1c328d6439c5","newPasswordConfirm":"a45c6a77-14c4-483c-9e5e-1c328d6439c5"}, {"password":"9488efa9-f8c4-4f76-adad-85d9490dfa4b","newPassword":"a45c6a77-14c4-483c-9e5e-1c328d6439c5","newPasswordConfirm":"a45c6a77-14c4-483c-9e5e-1c328d6439c5"}, requestBody) +16:29:45.752 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG com.networknt.schema.FormatValidator debug - validate( "a45c6a77-14c4-483c-9e5e-1c328d6439c5", {"password":"9488efa9-f8c4-4f76-adad-85d9490dfa4b","newPassword":"a45c6a77-14c4-483c-9e5e-1c328d6439c5","newPasswordConfirm":"a45c6a77-14c4-483c-9e5e-1c328d6439c5"}, requestBody.newPasswordConfirm) +16:29:45.752 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG com.networknt.schema.FormatValidator debug - validate( "9488efa9-f8c4-4f76-adad-85d9490dfa4b", {"password":"9488efa9-f8c4-4f76-adad-85d9490dfa4b","newPassword":"a45c6a77-14c4-483c-9e5e-1c328d6439c5","newPasswordConfirm":"a45c6a77-14c4-483c-9e5e-1c328d6439c5"}, requestBody.password) +16:29:45.752 [XNIO-1 task-1] IPAIdPz6TSqShf7aQs2znA DEBUG com.networknt.schema.FormatValidator debug - validate( "a45c6a77-14c4-483c-9e5e-1c328d6439c5", {"password":"9488efa9-f8c4-4f76-adad-85d9490dfa4b","newPassword":"a45c6a77-14c4-483c-9e5e-1c328d6439c5","newPasswordConfirm":"a45c6a77-14c4-483c-9e5e-1c328d6439c5"}, requestBody.newPassword) +16:29:45.778 [XNIO-1 task-1] uLOQeQYFSUaO0FlscM95TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1b337fb +16:29:45.778 [XNIO-1 task-1] uLOQeQYFSUaO0FlscM95TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.778 [XNIO-1 task-1] uLOQeQYFSUaO0FlscM95TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.778 [XNIO-1 task-1] uLOQeQYFSUaO0FlscM95TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1b337fb +16:29:45.787 [XNIO-1 task-1] 9ehXipnWSpyxMrkNkRdbjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.787 [XNIO-1 task-1] 9ehXipnWSpyxMrkNkRdbjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.787 [XNIO-1 task-1] 9ehXipnWSpyxMrkNkRdbjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.788 [XNIO-1 task-1] 9ehXipnWSpyxMrkNkRdbjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.802 [XNIO-1 task-1] AWhKMwZIT4a0mcnbNuur5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.803 [XNIO-1 task-1] AWhKMwZIT4a0mcnbNuur5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.804 [XNIO-1 task-1] AWhKMwZIT4a0mcnbNuur5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.804 [XNIO-1 task-1] AWhKMwZIT4a0mcnbNuur5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.815 [XNIO-1 task-1] 9lTrbLhuT6-zeeK1V-w1YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.815 [XNIO-1 task-1] 9lTrbLhuT6-zeeK1V-w1YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.815 [XNIO-1 task-1] 9lTrbLhuT6-zeeK1V-w1YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.815 [XNIO-1 task-1] 9lTrbLhuT6-zeeK1V-w1YA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:45.826 [XNIO-1 task-1] -1Ey8-r4SSegw46uZWNXag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.826 [XNIO-1 task-1] -1Ey8-r4SSegw46uZWNXag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.827 [XNIO-1 task-1] -1Ey8-r4SSegw46uZWNXag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.854 [XNIO-1 task-1] _sxRuON8SP-PVIwSy3-wog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d0d43439, base path is set to: null +16:29:45.854 [XNIO-1 task-1] _sxRuON8SP-PVIwSy3-wog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.854 [XNIO-1 task-1] _sxRuON8SP-PVIwSy3-wog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.855 [XNIO-1 task-1] _sxRuON8SP-PVIwSy3-wog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d0d43439, base path is set to: null +16:29:45.855 [XNIO-1 task-1] _sxRuON8SP-PVIwSy3-wog DEBUG com.networknt.schema.TypeValidator debug - validate( "d0d43439", "d0d43439", userId) +16:29:45.858 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d9233bbe +16:29:45.868 [XNIO-1 task-1] dUYzHmySTX6Yugq4bxnSWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.869 [XNIO-1 task-1] dUYzHmySTX6Yugq4bxnSWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.869 [XNIO-1 task-1] dUYzHmySTX6Yugq4bxnSWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.897 [XNIO-1 task-1] w9lw5wQVSHaTKICAthx8yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f078ee2c, base path is set to: null +16:29:45.897 [XNIO-1 task-1] w9lw5wQVSHaTKICAthx8yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.897 [XNIO-1 task-1] w9lw5wQVSHaTKICAthx8yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:45.897 [XNIO-1 task-1] w9lw5wQVSHaTKICAthx8yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f078ee2c, base path is set to: null +16:29:45.898 [XNIO-1 task-1] w9lw5wQVSHaTKICAthx8yA DEBUG com.networknt.schema.TypeValidator debug - validate( "f078ee2c", "f078ee2c", userId) +16:29:45.905 [XNIO-1 task-1] HA5ZTYsxQ_yTCDt2sUVKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.905 [XNIO-1 task-1] HA5ZTYsxQ_yTCDt2sUVKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.906 [XNIO-1 task-1] HA5ZTYsxQ_yTCDt2sUVKbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.916 [XNIO-1 task-1] DZ7Y-DqmSL-g3hhqYwOVEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.916 [XNIO-1 task-1] DZ7Y-DqmSL-g3hhqYwOVEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.916 [XNIO-1 task-1] DZ7Y-DqmSL-g3hhqYwOVEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.946 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f078ee2c +16:29:45.946 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.946 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.946 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:45.946 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f078ee2c +16:29:45.947 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a82184cd-22c3-432e-a2df-efbe90ccd089","newPassword":"c9426df0-9f27-4164-b466-7c92231050ad","newPasswordConfirm":"c9426df0-9f27-4164-b466-7c92231050ad"}, {"password":"a82184cd-22c3-432e-a2df-efbe90ccd089","newPassword":"c9426df0-9f27-4164-b466-7c92231050ad","newPasswordConfirm":"c9426df0-9f27-4164-b466-7c92231050ad"}, requestBody) +16:29:45.947 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a82184cd-22c3-432e-a2df-efbe90ccd089","newPassword":"c9426df0-9f27-4164-b466-7c92231050ad","newPasswordConfirm":"c9426df0-9f27-4164-b466-7c92231050ad"}, {"password":"a82184cd-22c3-432e-a2df-efbe90ccd089","newPassword":"c9426df0-9f27-4164-b466-7c92231050ad","newPasswordConfirm":"c9426df0-9f27-4164-b466-7c92231050ad"}, requestBody) +16:29:45.947 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG com.networknt.schema.FormatValidator debug - validate( "c9426df0-9f27-4164-b466-7c92231050ad", {"password":"a82184cd-22c3-432e-a2df-efbe90ccd089","newPassword":"c9426df0-9f27-4164-b466-7c92231050ad","newPasswordConfirm":"c9426df0-9f27-4164-b466-7c92231050ad"}, requestBody.newPasswordConfirm) +16:29:45.947 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG com.networknt.schema.FormatValidator debug - validate( "a82184cd-22c3-432e-a2df-efbe90ccd089", {"password":"a82184cd-22c3-432e-a2df-efbe90ccd089","newPassword":"c9426df0-9f27-4164-b466-7c92231050ad","newPasswordConfirm":"c9426df0-9f27-4164-b466-7c92231050ad"}, requestBody.password) +16:29:45.947 [XNIO-1 task-1] u0JXGax1S4CZR_7p92aHVA DEBUG com.networknt.schema.FormatValidator debug - validate( "c9426df0-9f27-4164-b466-7c92231050ad", {"password":"a82184cd-22c3-432e-a2df-efbe90ccd089","newPassword":"c9426df0-9f27-4164-b466-7c92231050ad","newPasswordConfirm":"c9426df0-9f27-4164-b466-7c92231050ad"}, requestBody.newPassword) +16:29:45.967 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d9233bbe +16:29:45.981 [XNIO-1 task-1] JG99g1iUSsyqwmu4J9HQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f078ee2c +16:29:45.981 [XNIO-1 task-1] JG99g1iUSsyqwmu4J9HQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:45.981 [XNIO-1 task-1] JG99g1iUSsyqwmu4J9HQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:45.981 [XNIO-1 task-1] JG99g1iUSsyqwmu4J9HQbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f078ee2c +16:29:45.992 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d9233bbe +16:29:45.995 [XNIO-1 task-1] Z-yG5FegSjCGPLdVjq4M3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:45.996 [XNIO-1 task-1] Z-yG5FegSjCGPLdVjq4M3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:45.997 [XNIO-1 task-1] Z-yG5FegSjCGPLdVjq4M3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.012 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d9233bbe +16:29:46.014 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d91fb884 +16:29:46.015 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d91fb884 +16:29:46.029 [XNIO-1 task-1] rwEwDHLwTduu7OORpDFLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b8aac77f +16:29:46.029 [XNIO-1 task-1] rwEwDHLwTduu7OORpDFLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.029 [XNIO-1 task-1] rwEwDHLwTduu7OORpDFLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.029 [XNIO-1 task-1] rwEwDHLwTduu7OORpDFLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b8aac77f +16:29:46.034 [XNIO-1 task-1] CRc1MttKSFuSqCMWSUuHfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.034 [XNIO-1 task-1] CRc1MttKSFuSqCMWSUuHfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.035 [XNIO-1 task-1] CRc1MttKSFuSqCMWSUuHfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.048 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d9233bbe +16:29:46.051 [XNIO-1 task-1] va_NGOurSZ6QFEWDo7h0Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d91fb884, base path is set to: null +16:29:46.051 [XNIO-1 task-1] va_NGOurSZ6QFEWDo7h0Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.051 [XNIO-1 task-1] va_NGOurSZ6QFEWDo7h0Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.051 [XNIO-1 task-1] va_NGOurSZ6QFEWDo7h0Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d91fb884, base path is set to: null +16:29:46.051 [XNIO-1 task-1] va_NGOurSZ6QFEWDo7h0Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "d91fb884", "d91fb884", userId) +16:29:46.055 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:150f23ca-3dd3-4e26-bfde-e352ebbb8dfc +16:29:46.060 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d91fb884, base path is set to: null +16:29:46.060 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.060 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.060 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:46.061 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d91fb884, base path is set to: null +16:29:46.061 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG com.networknt.schema.TypeValidator debug - validate( "d91fb884", "d91fb884", userId) +16:29:46.061 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b2ae1ebd-c432-4c78-ad1e-f3ce4eed6997","newPassword":"2dead5c1-cc81-4e12-9075-9b0c806f65a7","newPasswordConfirm":"2dead5c1-cc81-4e12-9075-9b0c806f65a7"}, {"password":"b2ae1ebd-c432-4c78-ad1e-f3ce4eed6997","newPassword":"2dead5c1-cc81-4e12-9075-9b0c806f65a7","newPasswordConfirm":"2dead5c1-cc81-4e12-9075-9b0c806f65a7"}, requestBody) +16:29:46.062 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG com.networknt.schema.TypeValidator debug - validate( "2dead5c1-cc81-4e12-9075-9b0c806f65a7", {"password":"b2ae1ebd-c432-4c78-ad1e-f3ce4eed6997","newPassword":"2dead5c1-cc81-4e12-9075-9b0c806f65a7","newPasswordConfirm":"2dead5c1-cc81-4e12-9075-9b0c806f65a7"}, requestBody.newPasswordConfirm) +16:29:46.062 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG com.networknt.schema.TypeValidator debug - validate( "b2ae1ebd-c432-4c78-ad1e-f3ce4eed6997", {"password":"b2ae1ebd-c432-4c78-ad1e-f3ce4eed6997","newPassword":"2dead5c1-cc81-4e12-9075-9b0c806f65a7","newPasswordConfirm":"2dead5c1-cc81-4e12-9075-9b0c806f65a7"}, requestBody.password) +16:29:46.062 [XNIO-1 task-1] S4I1evVuRI2qXIuWkyWW5w DEBUG com.networknt.schema.TypeValidator debug - validate( "2dead5c1-cc81-4e12-9075-9b0c806f65a7", {"password":"b2ae1ebd-c432-4c78-ad1e-f3ce4eed6997","newPassword":"2dead5c1-cc81-4e12-9075-9b0c806f65a7","newPasswordConfirm":"2dead5c1-cc81-4e12-9075-9b0c806f65a7"}, requestBody.newPassword) +16:29:46.068 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.077 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d91fb884 +16:29:46.090 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d9233bbe +16:29:46.094 [XNIO-1 task-1] HqZphf0gRj-eb9E1N1r4xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d91fb884 +16:29:46.094 [XNIO-1 task-1] HqZphf0gRj-eb9E1N1r4xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.094 [XNIO-1 task-1] HqZphf0gRj-eb9E1N1r4xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.094 [XNIO-1 task-1] HqZphf0gRj-eb9E1N1r4xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d91fb884 +16:29:46.096 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d91fb884 +16:29:46.105 [XNIO-1 task-1] ncssK1Q7SpGn97tJHizNHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.105 [XNIO-1 task-1] ncssK1Q7SpGn97tJHizNHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.105 [XNIO-1 task-1] ncssK1Q7SpGn97tJHizNHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.119 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b8aac77f +16:29:46.119 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.119 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.119 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:46.120 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b8aac77f +16:29:46.120 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0901bfb7-ba61-44f8-9406-c8deeb99a4e3","newPassword":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750","newPasswordConfirm":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750"}, {"password":"0901bfb7-ba61-44f8-9406-c8deeb99a4e3","newPassword":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750","newPasswordConfirm":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750"}, requestBody) +16:29:46.120 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0901bfb7-ba61-44f8-9406-c8deeb99a4e3","newPassword":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750","newPasswordConfirm":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750"}, {"password":"0901bfb7-ba61-44f8-9406-c8deeb99a4e3","newPassword":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750","newPasswordConfirm":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750"}, requestBody) +16:29:46.121 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG com.networknt.schema.FormatValidator debug - validate( "a5f0752d-f26a-49d1-9a9e-2c68d3e57750", {"password":"0901bfb7-ba61-44f8-9406-c8deeb99a4e3","newPassword":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750","newPasswordConfirm":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750"}, requestBody.newPasswordConfirm) +16:29:46.121 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG com.networknt.schema.FormatValidator debug - validate( "0901bfb7-ba61-44f8-9406-c8deeb99a4e3", {"password":"0901bfb7-ba61-44f8-9406-c8deeb99a4e3","newPassword":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750","newPasswordConfirm":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750"}, requestBody.password) +16:29:46.121 [XNIO-1 task-1] 4ETLg_mxQOiUhj1JcVuPcA DEBUG com.networknt.schema.FormatValidator debug - validate( "a5f0752d-f26a-49d1-9a9e-2c68d3e57750", {"password":"0901bfb7-ba61-44f8-9406-c8deeb99a4e3","newPassword":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750","newPasswordConfirm":"a5f0752d-f26a-49d1-9a9e-2c68d3e57750"}, requestBody.newPassword) +16:29:46.143 [XNIO-1 task-1] uFqlu8H4RyWlZl7Ct20u-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.143 [XNIO-1 task-1] uFqlu8H4RyWlZl7Ct20u-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.145 [XNIO-1 task-1] uFqlu8H4RyWlZl7Ct20u-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.171 [XNIO-1 task-1] 6XZLMwmnREuH2qeapa2MIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.171 [XNIO-1 task-1] 6XZLMwmnREuH2qeapa2MIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.172 [XNIO-1 task-1] 6XZLMwmnREuH2qeapa2MIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.181 [XNIO-1 task-1] wMU8trbKSw2iN-0mXKPpJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.181 [XNIO-1 task-1] wMU8trbKSw2iN-0mXKPpJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.181 [XNIO-1 task-1] wMU8trbKSw2iN-0mXKPpJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.181 [XNIO-1 task-1] wMU8trbKSw2iN-0mXKPpJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.191 [XNIO-1 task-1] SkvFJPDvSnO6TEgympsTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.191 [XNIO-1 task-1] SkvFJPDvSnO6TEgympsTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.191 [XNIO-1 task-1] SkvFJPDvSnO6TEgympsTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.201 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:daba9408 +16:29:46.213 [XNIO-1 task-1] zyG-80GrRTuUV9__R2ZV1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b8aac77f, base path is set to: null +16:29:46.213 [XNIO-1 task-1] zyG-80GrRTuUV9__R2ZV1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.213 [XNIO-1 task-1] zyG-80GrRTuUV9__R2ZV1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.213 [XNIO-1 task-1] zyG-80GrRTuUV9__R2ZV1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b8aac77f, base path is set to: null +16:29:46.214 [XNIO-1 task-1] zyG-80GrRTuUV9__R2ZV1w DEBUG com.networknt.schema.TypeValidator debug - validate( "b8aac77f", "b8aac77f", userId) +16:29:46.229 [XNIO-1 task-1] QUMSQuPKRSmx1lq6akQeOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.229 [XNIO-1 task-1] QUMSQuPKRSmx1lq6akQeOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.234 [XNIO-1 task-1] QUMSQuPKRSmx1lq6akQeOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.276 [XNIO-1 task-1] jcXC6HclRdWf3khaAU01UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.276 [XNIO-1 task-1] jcXC6HclRdWf3khaAU01UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.276 [XNIO-1 task-1] jcXC6HclRdWf3khaAU01UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.292 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:de25dde4-2fd5-4c29-892a-5f148f7d6926 +16:29:46.296 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.318 [XNIO-1 task-1] arlo1kr7Rzqi7cHHc8AgbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.318 [XNIO-1 task-1] arlo1kr7Rzqi7cHHc8AgbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.319 [XNIO-1 task-1] arlo1kr7Rzqi7cHHc8AgbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.319 [XNIO-1 task-1] arlo1kr7Rzqi7cHHc8AgbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.323 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:066bafe4-ed29-4108-850e-3acdf2c4aaf8 +16:29:46.325 [XNIO-1 task-1] TeqyTiKURmufTFHMJS83Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.325 [XNIO-1 task-1] TeqyTiKURmufTFHMJS83Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.326 [XNIO-1 task-1] TeqyTiKURmufTFHMJS83Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.356 [XNIO-1 task-1] PwUuM9C5SrWy1ZTpwhmILQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.356 [XNIO-1 task-1] PwUuM9C5SrWy1ZTpwhmILQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.356 [XNIO-1 task-1] PwUuM9C5SrWy1ZTpwhmILQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.380 [XNIO-1 task-1] 0e1VzXKKTJ6ixxIWX9ftnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/923f0f7e +16:29:46.380 [XNIO-1 task-1] 0e1VzXKKTJ6ixxIWX9ftnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.380 [XNIO-1 task-1] 0e1VzXKKTJ6ixxIWX9ftnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.381 [XNIO-1 task-1] 0e1VzXKKTJ6ixxIWX9ftnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/923f0f7e +16:29:46.388 [XNIO-1 task-1] 7_kRQ_yRS5yL1m07uIOWdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/daba9408, base path is set to: null +16:29:46.389 [XNIO-1 task-1] 7_kRQ_yRS5yL1m07uIOWdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.389 [XNIO-1 task-1] 7_kRQ_yRS5yL1m07uIOWdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.389 [XNIO-1 task-1] 7_kRQ_yRS5yL1m07uIOWdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/daba9408, base path is set to: null +16:29:46.389 [XNIO-1 task-1] 7_kRQ_yRS5yL1m07uIOWdw DEBUG com.networknt.schema.TypeValidator debug - validate( "daba9408", "daba9408", userId) +16:29:46.397 [XNIO-1 task-1] VO3MTIsARdq7PFwR7ZfHGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.399 [XNIO-1 task-1] VO3MTIsARdq7PFwR7ZfHGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.400 [XNIO-1 task-1] VO3MTIsARdq7PFwR7ZfHGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.407 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d9233bbe +16:29:46.418 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ef86cf18-564d-4e8a-bf76-365edc0620e5 +16:29:46.419 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ef86cf18-564d-4e8a-bf76-365edc0620e5 +16:29:46.425 [XNIO-1 task-1] MgxaAeQwThameo9u4nZYEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.425 [XNIO-1 task-1] MgxaAeQwThameo9u4nZYEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.425 [XNIO-1 task-1] MgxaAeQwThameo9u4nZYEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.425 [XNIO-1 task-1] MgxaAeQwThameo9u4nZYEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.439 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/69be3544 +16:29:46.439 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.439 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.440 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:46.440 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/69be3544 +16:29:46.441 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bc1e6e54-f757-42d4-b72f-c42f9b7b360f","newPassword":"8d957016-7882-4b76-8ec9-8580b90480a6","newPasswordConfirm":"8d957016-7882-4b76-8ec9-8580b90480a6"}, {"password":"bc1e6e54-f757-42d4-b72f-c42f9b7b360f","newPassword":"8d957016-7882-4b76-8ec9-8580b90480a6","newPasswordConfirm":"8d957016-7882-4b76-8ec9-8580b90480a6"}, requestBody) +16:29:46.441 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bc1e6e54-f757-42d4-b72f-c42f9b7b360f","newPassword":"8d957016-7882-4b76-8ec9-8580b90480a6","newPasswordConfirm":"8d957016-7882-4b76-8ec9-8580b90480a6"}, {"password":"bc1e6e54-f757-42d4-b72f-c42f9b7b360f","newPassword":"8d957016-7882-4b76-8ec9-8580b90480a6","newPasswordConfirm":"8d957016-7882-4b76-8ec9-8580b90480a6"}, requestBody) +16:29:46.441 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG com.networknt.schema.FormatValidator debug - validate( "8d957016-7882-4b76-8ec9-8580b90480a6", {"password":"bc1e6e54-f757-42d4-b72f-c42f9b7b360f","newPassword":"8d957016-7882-4b76-8ec9-8580b90480a6","newPasswordConfirm":"8d957016-7882-4b76-8ec9-8580b90480a6"}, requestBody.newPasswordConfirm) +16:29:46.441 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG com.networknt.schema.FormatValidator debug - validate( "bc1e6e54-f757-42d4-b72f-c42f9b7b360f", {"password":"bc1e6e54-f757-42d4-b72f-c42f9b7b360f","newPassword":"8d957016-7882-4b76-8ec9-8580b90480a6","newPasswordConfirm":"8d957016-7882-4b76-8ec9-8580b90480a6"}, requestBody.password) +16:29:46.441 [XNIO-1 task-1] MCPX1Cn7R0yD40XFL8bsTw DEBUG com.networknt.schema.FormatValidator debug - validate( "8d957016-7882-4b76-8ec9-8580b90480a6", {"password":"bc1e6e54-f757-42d4-b72f-c42f9b7b360f","newPassword":"8d957016-7882-4b76-8ec9-8580b90480a6","newPasswordConfirm":"8d957016-7882-4b76-8ec9-8580b90480a6"}, requestBody.newPassword) +16:29:46.470 [XNIO-1 task-1] NFK1q_fJTNeK41qtV3pCsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69be3544 +16:29:46.470 [XNIO-1 task-1] NFK1q_fJTNeK41qtV3pCsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.470 [XNIO-1 task-1] NFK1q_fJTNeK41qtV3pCsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.470 [XNIO-1 task-1] NFK1q_fJTNeK41qtV3pCsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69be3544 +16:29:46.483 [XNIO-1 task-1] kF-ibFIFRlC0OJJoQqz0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4a5100a0, base path is set to: null +16:29:46.483 [XNIO-1 task-1] kF-ibFIFRlC0OJJoQqz0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.483 [XNIO-1 task-1] kF-ibFIFRlC0OJJoQqz0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.483 [XNIO-1 task-1] kF-ibFIFRlC0OJJoQqz0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4a5100a0, base path is set to: null +16:29:46.483 [XNIO-1 task-1] kF-ibFIFRlC0OJJoQqz0ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4a5100a0", "4a5100a0", userId) +16:29:46.489 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5ea1b379 +16:29:46.495 [XNIO-1 task-1] b_-f0XIiQKSf0DK5qgWPOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.495 [XNIO-1 task-1] b_-f0XIiQKSf0DK5qgWPOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.496 [XNIO-1 task-1] b_-f0XIiQKSf0DK5qgWPOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.511 [XNIO-1 task-1] P3OWHpQyQJae0F8nA-8emw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f95f737b, base path is set to: null +16:29:46.511 [XNIO-1 task-1] P3OWHpQyQJae0F8nA-8emw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.511 [XNIO-1 task-1] P3OWHpQyQJae0F8nA-8emw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.511 [XNIO-1 task-1] P3OWHpQyQJae0F8nA-8emw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f95f737b, base path is set to: null +16:29:46.512 [XNIO-1 task-1] P3OWHpQyQJae0F8nA-8emw DEBUG com.networknt.schema.TypeValidator debug - validate( "f95f737b", "f95f737b", userId) +16:29:46.526 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/923f0f7e +16:29:46.526 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.526 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.526 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:46.527 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/923f0f7e +16:29:46.527 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f323791f-7cc9-47e3-8b3c-d50ebd1b9889","newPassword":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPasswordConfirm":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a"}, {"password":"f323791f-7cc9-47e3-8b3c-d50ebd1b9889","newPassword":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPasswordConfirm":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a"}, requestBody) +16:29:46.528 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f323791f-7cc9-47e3-8b3c-d50ebd1b9889","newPassword":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPasswordConfirm":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a"}, {"password":"f323791f-7cc9-47e3-8b3c-d50ebd1b9889","newPassword":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPasswordConfirm":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a"}, requestBody) +16:29:46.528 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG com.networknt.schema.FormatValidator debug - validate( "a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a", {"password":"f323791f-7cc9-47e3-8b3c-d50ebd1b9889","newPassword":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPasswordConfirm":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a"}, requestBody.newPasswordConfirm) +16:29:46.528 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG com.networknt.schema.FormatValidator debug - validate( "f323791f-7cc9-47e3-8b3c-d50ebd1b9889", {"password":"f323791f-7cc9-47e3-8b3c-d50ebd1b9889","newPassword":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPasswordConfirm":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a"}, requestBody.password) +16:29:46.528 [XNIO-1 task-1] pmrtiz2aQOGFMDPZoUDPwg DEBUG com.networknt.schema.FormatValidator debug - validate( "a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a", {"password":"f323791f-7cc9-47e3-8b3c-d50ebd1b9889","newPassword":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPasswordConfirm":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a"}, requestBody.newPassword) +16:29:46.559 [XNIO-1 task-1] 5OXHpKZVTmap-BpXzAtzQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.559 [XNIO-1 task-1] 5OXHpKZVTmap-BpXzAtzQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.559 [XNIO-1 task-1] 5OXHpKZVTmap-BpXzAtzQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.586 [XNIO-1 task-1] d16zCqtLSjS1tFkt2c8NAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f95f737b +16:29:46.586 [XNIO-1 task-1] d16zCqtLSjS1tFkt2c8NAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.586 [XNIO-1 task-1] d16zCqtLSjS1tFkt2c8NAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.586 [XNIO-1 task-1] d16zCqtLSjS1tFkt2c8NAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f95f737b +16:29:46.596 [XNIO-1 task-1] EDccbzUmQmqfRasm9RVA_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.596 [XNIO-1 task-1] EDccbzUmQmqfRasm9RVA_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.597 [XNIO-1 task-1] EDccbzUmQmqfRasm9RVA_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.608 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8dd693da-1b34-42f6-89da-9cf842dfdc73 +16:29:46.610 [XNIO-1 task-1] MpGIp3nTRMGzvdUnBIBhkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f95f737b, base path is set to: null +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +16:29:46.610 [XNIO-1 task-1] MpGIp3nTRMGzvdUnBIBhkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +16:29:46.611 [XNIO-1 task-1] MpGIp3nTRMGzvdUnBIBhkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f95f737b", "f95f737b", userId) +16:29:46.614 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:29:46.614 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/842c97fb, base path is set to: null +16:29:46.614 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.614 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.614 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:46.615 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/842c97fb, base path is set to: null +16:29:46.615 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG com.networknt.schema.TypeValidator debug - validate( "842c97fb", "842c97fb", userId) +16:29:46.615 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cbaa07e3-22e7-4749-8dc3-1988c03d9827","newPassword":"6187040e-741a-46c6-bbdb-17a33da512da","newPasswordConfirm":"6187040e-741a-46c6-bbdb-17a33da512da"}, {"password":"cbaa07e3-22e7-4749-8dc3-1988c03d9827","newPassword":"6187040e-741a-46c6-bbdb-17a33da512da","newPasswordConfirm":"6187040e-741a-46c6-bbdb-17a33da512da"}, requestBody) +16:29:46.615 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG com.networknt.schema.TypeValidator debug - validate( "6187040e-741a-46c6-bbdb-17a33da512da", {"password":"cbaa07e3-22e7-4749-8dc3-1988c03d9827","newPassword":"6187040e-741a-46c6-bbdb-17a33da512da","newPasswordConfirm":"6187040e-741a-46c6-bbdb-17a33da512da"}, requestBody.newPasswordConfirm) +16:29:46.615 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG com.networknt.schema.TypeValidator debug - validate( "cbaa07e3-22e7-4749-8dc3-1988c03d9827", {"password":"cbaa07e3-22e7-4749-8dc3-1988c03d9827","newPassword":"6187040e-741a-46c6-bbdb-17a33da512da","newPasswordConfirm":"6187040e-741a-46c6-bbdb-17a33da512da"}, requestBody.password) +16:29:46.616 [XNIO-1 task-1] HQVQ9MsRSmaLNTyxOetWvg DEBUG com.networknt.schema.TypeValidator debug - validate( "6187040e-741a-46c6-bbdb-17a33da512da", {"password":"cbaa07e3-22e7-4749-8dc3-1988c03d9827","newPassword":"6187040e-741a-46c6-bbdb-17a33da512da","newPasswordConfirm":"6187040e-741a-46c6-bbdb-17a33da512da"}, requestBody.newPassword) +16:29:46.651 [XNIO-1 task-1] 6cp24aDrTZSpA-ZJIPiAjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.652 [XNIO-1 task-1] 6cp24aDrTZSpA-ZJIPiAjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.652 [XNIO-1 task-1] 6cp24aDrTZSpA-ZJIPiAjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.660 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4c0cb5c4 +16:29:46.661 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4c0cb5c4 +16:29:46.675 [XNIO-1 task-1] GyhpvFtcRxiqzZv5SnVufg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.675 [XNIO-1 task-1] GyhpvFtcRxiqzZv5SnVufg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.675 [XNIO-1 task-1] GyhpvFtcRxiqzZv5SnVufg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.688 [XNIO-1 task-1] DcDt53pAQnmLlzF5_hLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4c0cb5c4 +16:29:46.688 [XNIO-1 task-1] DcDt53pAQnmLlzF5_hLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.688 [XNIO-1 task-1] DcDt53pAQnmLlzF5_hLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.688 [XNIO-1 task-1] DcDt53pAQnmLlzF5_hLdWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4c0cb5c4 +16:29:46.689 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:019a6cf2-8bc5-40a1-9158-7f2b2a7b5566 +16:29:46.689 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4c0cb5c4 +16:29:46.700 [XNIO-1 task-1] YBYIU7lTSlyJlmYbuoOKnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.700 [XNIO-1 task-1] YBYIU7lTSlyJlmYbuoOKnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.700 [XNIO-1 task-1] YBYIU7lTSlyJlmYbuoOKnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.727 [XNIO-1 task-1] pEbWxOv6Rhq0xNbeT0MGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.727 [XNIO-1 task-1] pEbWxOv6Rhq0xNbeT0MGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.727 [XNIO-1 task-1] pEbWxOv6Rhq0xNbeT0MGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.737 [XNIO-1 task-1] TDAJCcTqRXO5Wj36UB4rWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.737 [XNIO-1 task-1] TDAJCcTqRXO5Wj36UB4rWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.738 [XNIO-1 task-1] TDAJCcTqRXO5Wj36UB4rWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.761 [XNIO-1 task-1] 6JdVmOz6Sgql6-f9YN2UeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.761 [XNIO-1 task-1] 6JdVmOz6Sgql6-f9YN2UeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.761 [XNIO-1 task-1] 6JdVmOz6Sgql6-f9YN2UeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.762 [XNIO-1 task-1] 6JdVmOz6Sgql6-f9YN2UeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.773 [XNIO-1 task-1] vCnC9IM_Rqi_eOuPmqfcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8db88c2c +16:29:46.773 [XNIO-1 task-1] vCnC9IM_Rqi_eOuPmqfcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.773 [XNIO-1 task-1] vCnC9IM_Rqi_eOuPmqfcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.773 [XNIO-1 task-1] vCnC9IM_Rqi_eOuPmqfcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8db88c2c +16:29:46.784 [XNIO-1 task-1] OszwaqnQRZCPW5odZIkOtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/923f0f7e, base path is set to: null +16:29:46.784 [XNIO-1 task-1] OszwaqnQRZCPW5odZIkOtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.785 [XNIO-1 task-1] OszwaqnQRZCPW5odZIkOtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.785 [XNIO-1 task-1] OszwaqnQRZCPW5odZIkOtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/923f0f7e, base path is set to: null +16:29:46.785 [XNIO-1 task-1] OszwaqnQRZCPW5odZIkOtg DEBUG com.networknt.schema.TypeValidator debug - validate( "923f0f7e", "923f0f7e", userId) +16:29:46.797 [XNIO-1 task-1] sb7K1q_WT0SRKMnEJg1LPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.797 [XNIO-1 task-1] sb7K1q_WT0SRKMnEJg1LPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.798 [XNIO-1 task-1] sb7K1q_WT0SRKMnEJg1LPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.798 [XNIO-1 task-1] sb7K1q_WT0SRKMnEJg1LPA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.805 [XNIO-1 task-1] gQFpUoPBSL6cyTxqia7AlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f95f737b +16:29:46.805 [XNIO-1 task-1] gQFpUoPBSL6cyTxqia7AlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.805 [XNIO-1 task-1] gQFpUoPBSL6cyTxqia7AlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.805 [XNIO-1 task-1] gQFpUoPBSL6cyTxqia7AlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f95f737b +16:29:46.811 [XNIO-1 task-1] _7UAjvtASbiwFWLHd--8jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.811 [XNIO-1 task-1] _7UAjvtASbiwFWLHd--8jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.812 [XNIO-1 task-1] _7UAjvtASbiwFWLHd--8jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:46.812 [XNIO-1 task-1] _7UAjvtASbiwFWLHd--8jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:29:46.821 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/923f0f7e, base path is set to: null +16:29:46.821 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.821 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.821 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:29:46.822 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/923f0f7e, base path is set to: null +16:29:46.822 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "923f0f7e", "923f0f7e", userId) +16:29:46.822 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPassword":"bac7381b-4aed-41bd-950d-aa3508baca32","newPasswordConfirm":"bac7381b-4aed-41bd-950d-aa3508baca32"}, {"password":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPassword":"bac7381b-4aed-41bd-950d-aa3508baca32","newPasswordConfirm":"bac7381b-4aed-41bd-950d-aa3508baca32"}, requestBody) +16:29:46.823 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bac7381b-4aed-41bd-950d-aa3508baca32", {"password":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPassword":"bac7381b-4aed-41bd-950d-aa3508baca32","newPasswordConfirm":"bac7381b-4aed-41bd-950d-aa3508baca32"}, requestBody.newPasswordConfirm) +16:29:46.823 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a", {"password":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPassword":"bac7381b-4aed-41bd-950d-aa3508baca32","newPasswordConfirm":"bac7381b-4aed-41bd-950d-aa3508baca32"}, requestBody.password) +16:29:46.823 [XNIO-1 task-1] itVT64TNQpW1P9hPRymkuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bac7381b-4aed-41bd-950d-aa3508baca32", {"password":"a69976f0-76f4-44a0-9b9d-4ea6fdff1c0a","newPassword":"bac7381b-4aed-41bd-950d-aa3508baca32","newPasswordConfirm":"bac7381b-4aed-41bd-950d-aa3508baca32"}, requestBody.newPassword) +16:29:46.852 [XNIO-1 task-1] OrahC2cdRzKbp4NX_qdWTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f95f737b, base path is set to: null +16:29:46.853 [XNIO-1 task-1] OrahC2cdRzKbp4NX_qdWTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:46.853 [XNIO-1 task-1] OrahC2cdRzKbp4NX_qdWTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:46.853 [XNIO-1 task-1] OrahC2cdRzKbp4NX_qdWTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f95f737b, base path is set to: null +16:29:46.854 [XNIO-1 task-1] OrahC2cdRzKbp4NX_qdWTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f95f737b", "f95f737b", userId) +16:29:46.859 [XNIO-1 task-1] R6Z0sgtOS1C5PJmfT9EYQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.859 [XNIO-1 task-1] R6Z0sgtOS1C5PJmfT9EYQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.860 [XNIO-1 task-1] R6Z0sgtOS1C5PJmfT9EYQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.948 [XNIO-1 task-1] b9R4_7tMTv-bw4XNY_pI0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.949 [XNIO-1 task-1] b9R4_7tMTv-bw4XNY_pI0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.949 [XNIO-1 task-1] b9R4_7tMTv-bw4XNY_pI0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.949 [XNIO-1 task-1] b9R4_7tMTv-bw4XNY_pI0g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:29:46.961 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/923f0f7e +16:29:46.961 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.961 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.961 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:29:46.962 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/923f0f7e +16:29:46.963 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bac7381b-4aed-41bd-950d-aa3508baca32","newPassword":"450a4b3b-8550-483c-8d36-4095f4c15572","newPasswordConfirm":"450a4b3b-8550-483c-8d36-4095f4c15572"}, {"password":"bac7381b-4aed-41bd-950d-aa3508baca32","newPassword":"450a4b3b-8550-483c-8d36-4095f4c15572","newPasswordConfirm":"450a4b3b-8550-483c-8d36-4095f4c15572"}, requestBody) +16:29:46.963 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bac7381b-4aed-41bd-950d-aa3508baca32","newPassword":"450a4b3b-8550-483c-8d36-4095f4c15572","newPasswordConfirm":"450a4b3b-8550-483c-8d36-4095f4c15572"}, {"password":"bac7381b-4aed-41bd-950d-aa3508baca32","newPassword":"450a4b3b-8550-483c-8d36-4095f4c15572","newPasswordConfirm":"450a4b3b-8550-483c-8d36-4095f4c15572"}, requestBody) +16:29:46.963 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "450a4b3b-8550-483c-8d36-4095f4c15572", {"password":"bac7381b-4aed-41bd-950d-aa3508baca32","newPassword":"450a4b3b-8550-483c-8d36-4095f4c15572","newPasswordConfirm":"450a4b3b-8550-483c-8d36-4095f4c15572"}, requestBody.newPasswordConfirm) +16:29:46.963 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bac7381b-4aed-41bd-950d-aa3508baca32", {"password":"bac7381b-4aed-41bd-950d-aa3508baca32","newPassword":"450a4b3b-8550-483c-8d36-4095f4c15572","newPasswordConfirm":"450a4b3b-8550-483c-8d36-4095f4c15572"}, requestBody.password) +16:29:46.963 [XNIO-1 task-1] a6vgnVKOR2KJ2t8zWqzLZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "450a4b3b-8550-483c-8d36-4095f4c15572", {"password":"bac7381b-4aed-41bd-950d-aa3508baca32","newPassword":"450a4b3b-8550-483c-8d36-4095f4c15572","newPasswordConfirm":"450a4b3b-8550-483c-8d36-4095f4c15572"}, requestBody.newPassword) +16:29:46.996 [XNIO-1 task-1] WoVwxQumTc2Nz24UIwz7UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f95f737b +16:29:46.998 [XNIO-1 task-1] WoVwxQumTc2Nz24UIwz7UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:46.998 [XNIO-1 task-1] WoVwxQumTc2Nz24UIwz7UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:46.998 [XNIO-1 task-1] WoVwxQumTc2Nz24UIwz7UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f95f737b +16:29:47.014 [XNIO-1 task-1] BxQ_aPgrR4q5a_kkjzWlGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:47.014 [XNIO-1 task-1] BxQ_aPgrR4q5a_kkjzWlGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:47.014 [XNIO-1 task-1] BxQ_aPgrR4q5a_kkjzWlGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:29:47.028 [XNIO-1 task-1] 1Hq8l76IQcGeSnKAmcK74Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/824a7ebf, base path is set to: null +16:29:47.028 [XNIO-1 task-1] 1Hq8l76IQcGeSnKAmcK74Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:29:47.028 [XNIO-1 task-1] 1Hq8l76IQcGeSnKAmcK74Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:29:47.029 [XNIO-1 task-1] 1Hq8l76IQcGeSnKAmcK74Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/824a7ebf, base path is set to: null +16:29:47.029 [XNIO-1 task-1] 1Hq8l76IQcGeSnKAmcK74Q DEBUG com.networknt.schema.TypeValidator debug - validate( "824a7ebf", "824a7ebf", userId) +16:29:47.037 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5f42282e-c9ff-408f-9063-aa8bf2e0182d +16:29:47.040 [XNIO-1 task-1] UJfp3ugIQ4eEZnVlMUDP1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/842c97fb +16:29:47.041 [XNIO-1 task-1] UJfp3ugIQ4eEZnVlMUDP1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:29:47.041 [XNIO-1 task-1] UJfp3ugIQ4eEZnVlMUDP1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:29:47.041 [XNIO-1 task-1] UJfp3ugIQ4eEZnVlMUDP1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/842c97fb +16:29:47.052 [XNIO-1 task-1] 3Uy7QOvwS327-mzMlQB1qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2309437d, base path is set to: null +16:29:47.053 [XNIO-1 task-1] 3Uy7QOvwS327-mzMlQB1qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user diff --git a/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-client-1.log b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..c0f6350 --- /dev/null +++ b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4677 @@ +17:00:37.777 [XNIO-1 task-1] Bt94m-Y_T6mOVGOQVing7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"078f1faf-5d90-4e5c-a5ec-a344dbf1","clientDesc":"ea22de9e-428a-4132-ae43-c5532bab2b8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"078f1faf-5d90-4e5c-a5ec-a344dbf1","clientDesc":"ea22de9e-428a-4132-ae43-c5532bab2b8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:37.778 [XNIO-1 task-1] Bt94m-Y_T6mOVGOQVing7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"078f1faf-5d90-4e5c-a5ec-a344dbf1","clientDesc":"ea22de9e-428a-4132-ae43-c5532bab2b8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"078f1faf-5d90-4e5c-a5ec-a344dbf1","clientDesc":"ea22de9e-428a-4132-ae43-c5532bab2b8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:37.778 [XNIO-1 task-1] Bt94m-Y_T6mOVGOQVing7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"078f1faf-5d90-4e5c-a5ec-a344dbf1","clientDesc":"ea22de9e-428a-4132-ae43-c5532bab2b8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"078f1faf-5d90-4e5c-a5ec-a344dbf1","clientDesc":"ea22de9e-428a-4132-ae43-c5532bab2b8e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:37.779 [XNIO-1 task-1] Bt94m-Y_T6mOVGOQVing7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:37.782 [XNIO-1 task-1] AFnzIHL6TgeZbAIl-5rg3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d85e8b2-77f6-4ac8-ae47-4c5a6f3487b6 +17:00:37.783 [XNIO-1 task-1] AFnzIHL6TgeZbAIl-5rg3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.783 [XNIO-1 task-1] AFnzIHL6TgeZbAIl-5rg3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:37.783 [XNIO-1 task-1] AFnzIHL6TgeZbAIl-5rg3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d85e8b2-77f6-4ac8-ae47-4c5a6f3487b6 +17:00:37.798 [XNIO-1 task-1] -sQ7acg6SU2Y1fk7ZYtxFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d85e8b2-77f6-4ac8-ae47-4c5a6f3487b6, base path is set to: null +17:00:37.802 [XNIO-1 task-1] -sQ7acg6SU2Y1fk7ZYtxFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:37.802 [XNIO-1 task-1] -sQ7acg6SU2Y1fk7ZYtxFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:37.802 [XNIO-1 task-1] -sQ7acg6SU2Y1fk7ZYtxFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d85e8b2-77f6-4ac8-ae47-4c5a6f3487b6, base path is set to: null +17:00:37.803 [XNIO-1 task-1] -sQ7acg6SU2Y1fk7ZYtxFA DEBUG com.networknt.schema.TypeValidator debug - validate( "3d85e8b2-77f6-4ac8-ae47-4c5a6f3487b6", "3d85e8b2-77f6-4ac8-ae47-4c5a6f3487b6", clientId) +17:00:37.838 [XNIO-1 task-1] 4-TA43rTT7ygEAfjX5A2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.838 [XNIO-1 task-1] 4-TA43rTT7ygEAfjX5A2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.843 [XNIO-1 task-1] 4-TA43rTT7ygEAfjX5A2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.844 [XNIO-1 task-1] 4-TA43rTT7ygEAfjX5A2dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:37.879 [XNIO-1 task-1] yGpY2-YyQp-HkeR_-kBlNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.879 [XNIO-1 task-1] yGpY2-YyQp-HkeR_-kBlNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.880 [XNIO-1 task-1] yGpY2-YyQp-HkeR_-kBlNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.880 [XNIO-1 task-1] yGpY2-YyQp-HkeR_-kBlNg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:37.915 [XNIO-1 task-1] EQBs2Oy7Rcad9cAh-yFfKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aa5292c6-9d79-4a4a-aa1d-b63c2ed39d81 +17:00:37.916 [XNIO-1 task-1] EQBs2Oy7Rcad9cAh-yFfKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:37.916 [XNIO-1 task-1] EQBs2Oy7Rcad9cAh-yFfKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:37.916 [XNIO-1 task-1] EQBs2Oy7Rcad9cAh-yFfKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aa5292c6-9d79-4a4a-aa1d-b63c2ed39d81 +17:00:37.975 [XNIO-1 task-2] aR_IyGOpTi2349CYmHY74g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:37.975 [XNIO-1 task-2] aR_IyGOpTi2349CYmHY74g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:37.977 [XNIO-1 task-2] aR_IyGOpTi2349CYmHY74g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:37.999 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b42fff8c-7399-4238-802d-ed5469fad613 +17:00:38.132 [hz._hzInstance_1_dev.cached.thread-8] INFO com.zaxxer.hikari.HikariDataSource getConnection - HikariPool-1 - Start completed. +17:00:38.233 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - Pool stats (total=2, active=2, idle=0, waiting=0) +17:00:38.279 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b42fff8c-7399-4238-802d-ed5469fad613 +17:00:38.415 [XNIO-1 task-2] nQ9OrLp-TeeS4YSlREw5gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.415 [XNIO-1 task-2] nQ9OrLp-TeeS4YSlREw5gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.416 [XNIO-1 task-2] nQ9OrLp-TeeS4YSlREw5gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.417 [XNIO-1 task-2] nQ9OrLp-TeeS4YSlREw5gg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:38.443 [XNIO-1 task-2] xAXT6PzHSMua90c-tGmP6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.443 [XNIO-1 task-2] xAXT6PzHSMua90c-tGmP6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.443 [XNIO-1 task-2] xAXT6PzHSMua90c-tGmP6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.444 [XNIO-1 task-2] xAXT6PzHSMua90c-tGmP6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:38.466 [XNIO-1 task-2] dgGRWwUiRpuCLGLBCQQFhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.466 [XNIO-1 task-2] dgGRWwUiRpuCLGLBCQQFhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.466 [XNIO-1 task-2] dgGRWwUiRpuCLGLBCQQFhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.467 [XNIO-1 task-2] dgGRWwUiRpuCLGLBCQQFhw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:38.487 [XNIO-1 task-2] 84YUgvlOQhW_CduFZqyHLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.487 [XNIO-1 task-2] 84YUgvlOQhW_CduFZqyHLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.488 [XNIO-1 task-2] 84YUgvlOQhW_CduFZqyHLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:38.994 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:91cbd1ea +17:00:39.069 [XNIO-1 task-2] UpyEHCIRSYCx8DCwoYSBHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.069 [XNIO-1 task-2] UpyEHCIRSYCx8DCwoYSBHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.070 [XNIO-1 task-2] UpyEHCIRSYCx8DCwoYSBHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.070 [XNIO-1 task-2] UpyEHCIRSYCx8DCwoYSBHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.197 [XNIO-1 task-2] XS-NZaZFShG7YD7LrvSeBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.197 [XNIO-1 task-2] XS-NZaZFShG7YD7LrvSeBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.198 [XNIO-1 task-2] XS-NZaZFShG7YD7LrvSeBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.219 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:91cbd1ea +17:00:39.299 [XNIO-1 task-2] u5pZLMh6QNGzr407ht2v-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc, base path is set to: null +17:00:39.299 [XNIO-1 task-2] u5pZLMh6QNGzr407ht2v-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.299 [XNIO-1 task-2] u5pZLMh6QNGzr407ht2v-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:39.300 [XNIO-1 task-2] u5pZLMh6QNGzr407ht2v-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc, base path is set to: null +17:00:39.301 [XNIO-1 task-2] u5pZLMh6QNGzr407ht2v-g DEBUG com.networknt.schema.TypeValidator debug - validate( "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", clientId) +17:00:39.314 [XNIO-1 task-2] fJbAVPlrTVCwIbhbpxkLsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.314 [XNIO-1 task-2] fJbAVPlrTVCwIbhbpxkLsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.314 [XNIO-1 task-2] fJbAVPlrTVCwIbhbpxkLsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.315 [XNIO-1 task-2] fJbAVPlrTVCwIbhbpxkLsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:39.338 [XNIO-1 task-2] J1DjxCXqS4mj_LjTXlPoaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.338 [XNIO-1 task-2] J1DjxCXqS4mj_LjTXlPoaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.339 [XNIO-1 task-2] J1DjxCXqS4mj_LjTXlPoaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.430 [XNIO-1 task-2] pbszh4qUS4eHmfBKmhDADg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.430 [XNIO-1 task-2] pbszh4qUS4eHmfBKmhDADg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.431 [XNIO-1 task-2] pbszh4qUS4eHmfBKmhDADg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.514 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.514 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.515 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.516 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.516 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:39.517 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG com.networknt.schema.TypeValidator debug - validate( "3978c867-5c7f-472c-8b04-9fd5636ed22c", {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:39.517 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:39.517 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:39.518 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG com.networknt.schema.TypeValidator debug - validate( "8b11bd19-d588-42e0-ad35-305a6edb", {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:39.518 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.518 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8b11bd19-d588-42e0-ad35-305a6edb","clientDesc":"3978c867-5c7f-472c-8b04-9fd5636ed22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:39.519 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:39.519 [XNIO-1 task-2] vKzSDAO-RWa8biVIv5hMDA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:39.534 [XNIO-1 task-2] 66XUTHXnTp6F47-kGE8RHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.534 [XNIO-1 task-2] 66XUTHXnTp6F47-kGE8RHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.534 [XNIO-1 task-2] 66XUTHXnTp6F47-kGE8RHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.536 [XNIO-1 task-2] 66XUTHXnTp6F47-kGE8RHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.544 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:91cbd1ea +17:00:39.556 [XNIO-1 task-2] 4wkrafXTRdWgAW5u9jv7xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.556 [XNIO-1 task-2] 4wkrafXTRdWgAW5u9jv7xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.557 [XNIO-1 task-2] 4wkrafXTRdWgAW5u9jv7xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.569 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:91cbd1ea +17:00:39.596 [XNIO-1 task-2] 45Jj_-eqThm4yZNmpB2bcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0af628df-b938-48f8-bf82-29cdb78d2a89 +17:00:39.598 [XNIO-1 task-2] 45Jj_-eqThm4yZNmpB2bcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.598 [XNIO-1 task-2] 45Jj_-eqThm4yZNmpB2bcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:39.598 [XNIO-1 task-2] 45Jj_-eqThm4yZNmpB2bcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0af628df-b938-48f8-bf82-29cdb78d2a89 +17:00:39.616 [XNIO-1 task-2] mR1wckxWT_qbn2OPyeqHDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/351da182-bdf0-4dc7-a740-9319f1f377b7, base path is set to: null +17:00:39.616 [XNIO-1 task-2] mR1wckxWT_qbn2OPyeqHDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.616 [XNIO-1 task-2] mR1wckxWT_qbn2OPyeqHDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:39.616 [XNIO-1 task-2] mR1wckxWT_qbn2OPyeqHDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/351da182-bdf0-4dc7-a740-9319f1f377b7, base path is set to: null +17:00:39.618 [XNIO-1 task-2] mR1wckxWT_qbn2OPyeqHDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "351da182-bdf0-4dc7-a740-9319f1f377b7", "351da182-bdf0-4dc7-a740-9319f1f377b7", clientId) +17:00:39.682 [XNIO-1 task-2] 46QLGoguQN2htFEEVdIUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.683 [XNIO-1 task-2] 46QLGoguQN2htFEEVdIUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.683 [XNIO-1 task-2] 46QLGoguQN2htFEEVdIUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.704 [XNIO-1 task-2] SVPoAooJRH-fL7mY7k7rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.704 [XNIO-1 task-2] SVPoAooJRH-fL7mY7k7rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.704 [XNIO-1 task-2] SVPoAooJRH-fL7mY7k7rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.705 [XNIO-1 task-2] SVPoAooJRH-fL7mY7k7rag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:39.773 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.773 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.774 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.775 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.775 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:39.775 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0235b7be-a6b5-4168-83d4-ccafb4e6720e", {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:39.775 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:39.775 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:39.776 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3383306f-2471-4949-b319-b274f06d", {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:39.776 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.776 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3383306f-2471-4949-b319-b274f06d","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:39.776 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:39.777 [XNIO-1 task-2] uAPiqAeEQhW1yk34yd_8QQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:39.780 [XNIO-1 task-2] K__Hr_phTO-h8WnGy8TJUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.780 [XNIO-1 task-2] K__Hr_phTO-h8WnGy8TJUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.781 [XNIO-1 task-2] K__Hr_phTO-h8WnGy8TJUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.866 [XNIO-1 task-2] Oq7lKEymTSufOXmNSm6_Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.867 [XNIO-1 task-2] Oq7lKEymTSufOXmNSm6_Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.867 [XNIO-1 task-2] Oq7lKEymTSufOXmNSm6_Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.867 [XNIO-1 task-2] Oq7lKEymTSufOXmNSm6_Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.880 [XNIO-1 task-2] fUj23EviToCxr7P3hvje6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e, base path is set to: null +17:00:39.881 [XNIO-1 task-2] fUj23EviToCxr7P3hvje6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.881 [XNIO-1 task-2] fUj23EviToCxr7P3hvje6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:39.881 [XNIO-1 task-2] fUj23EviToCxr7P3hvje6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e, base path is set to: null +17:00:39.881 [XNIO-1 task-2] fUj23EviToCxr7P3hvje6g DEBUG com.networknt.schema.TypeValidator debug - validate( "482b1cbd-625a-4f88-bed5-9f008ef8498e", "482b1cbd-625a-4f88-bed5-9f008ef8498e", clientId) +17:00:39.886 [XNIO-1 task-2] NowRCTpYQ9u7MZJk5cWD3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4cf7ab4b-8d36-4fc4-a74e-0cd70a1d1288 +17:00:39.886 [XNIO-1 task-2] NowRCTpYQ9u7MZJk5cWD3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.886 [XNIO-1 task-2] NowRCTpYQ9u7MZJk5cWD3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:39.886 [XNIO-1 task-2] NowRCTpYQ9u7MZJk5cWD3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4cf7ab4b-8d36-4fc4-a74e-0cd70a1d1288 +17:00:39.891 [XNIO-1 task-2] fVHcxL4hRfqn85r0oNJybg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e, base path is set to: null +17:00:39.891 [XNIO-1 task-2] fVHcxL4hRfqn85r0oNJybg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.891 [XNIO-1 task-2] fVHcxL4hRfqn85r0oNJybg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:39.891 [XNIO-1 task-2] fVHcxL4hRfqn85r0oNJybg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e, base path is set to: null +17:00:39.893 [XNIO-1 task-2] fVHcxL4hRfqn85r0oNJybg DEBUG com.networknt.schema.TypeValidator debug - validate( "482b1cbd-625a-4f88-bed5-9f008ef8498e", "482b1cbd-625a-4f88-bed5-9f008ef8498e", clientId) +17:00:39.896 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.897 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.897 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:39.898 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.898 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:39.899 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG com.networknt.schema.TypeValidator debug - validate( "0235b7be-a6b5-4168-83d4-ccafb4e6720e", {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:39.899 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:39.899 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:39.899 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG com.networknt.schema.TypeValidator debug - validate( "db7fbb26-3ffb-4c44-99b5-8c8dadce", {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:39.899 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.899 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"db7fbb26-3ffb-4c44-99b5-8c8dadce","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:39.901 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:39.902 [XNIO-1 task-2] xKR5GFg3QhmaCyxIQD4LsA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:39.913 [XNIO-1 task-2] kHjCyhVkTwmZ-lANqJ1BzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.914 [XNIO-1 task-2] kHjCyhVkTwmZ-lANqJ1BzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:39.914 [XNIO-1 task-2] kHjCyhVkTwmZ-lANqJ1BzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:39.915 [XNIO-1 task-2] kHjCyhVkTwmZ-lANqJ1BzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.044 [XNIO-1 task-2] xPq73vv9RPSBtNqf_IuOjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:40.044 [XNIO-1 task-2] xPq73vv9RPSBtNqf_IuOjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.045 [XNIO-1 task-2] xPq73vv9RPSBtNqf_IuOjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.045 [XNIO-1 task-2] xPq73vv9RPSBtNqf_IuOjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:40.045 [XNIO-1 task-2] xPq73vv9RPSBtNqf_IuOjA DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:40.053 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.053 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.054 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG com.networknt.schema.TypeValidator debug - validate( "0235b7be-a6b5-4168-83d4-ccafb4e6720e", {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG com.networknt.schema.TypeValidator debug - validate( "37e28e74-e7a6-4e0a-a0a5-5cd63989", {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.055 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"37e28e74-e7a6-4e0a-a0a5-5cd63989","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:40.056 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.056 [XNIO-1 task-2] d3r8wJPvTnm9meZyerPYZA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.062 [XNIO-1 task-2] XuXyjtN4S1S1-cKVkJ3ptA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.063 [XNIO-1 task-2] XuXyjtN4S1S1-cKVkJ3ptA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.064 [XNIO-1 task-2] XuXyjtN4S1S1-cKVkJ3ptA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.064 [XNIO-1 task-2] XuXyjtN4S1S1-cKVkJ3ptA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.132 [XNIO-1 task-2] QleNcILKRiKeLPCM5v6T7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:40.133 [XNIO-1 task-2] QleNcILKRiKeLPCM5v6T7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.133 [XNIO-1 task-2] QleNcILKRiKeLPCM5v6T7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.133 [XNIO-1 task-2] QleNcILKRiKeLPCM5v6T7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:40.134 [XNIO-1 task-2] QleNcILKRiKeLPCM5v6T7A DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:40.138 [XNIO-1 task-2] wifmr8hkQ0-AHxmg7NIjLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.139 [XNIO-1 task-2] wifmr8hkQ0-AHxmg7NIjLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.139 [XNIO-1 task-2] wifmr8hkQ0-AHxmg7NIjLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.173 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1a606664-5776-4952-b713-a982dcb54ddd +17:00:40.185 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.185 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.185 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.186 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.187 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.187 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.187 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.189 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.190 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.190 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.190 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.190 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e435f3-a841-424e-9bff-4139b637","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.191 [XNIO-1 task-2] 3NHqEcHnSUmat_o5Xnarow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:40.195 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.195 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.195 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.197 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.197 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:40.197 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG com.networknt.schema.TypeValidator debug - validate( "8d2906dc-ceff-440e-8f9b-415905bc78ca", {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:40.197 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.198 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.198 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG com.networknt.schema.TypeValidator debug - validate( "425f0870-3c1e-4237-b6e6-a2d735c4", {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:40.198 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.198 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"425f0870-3c1e-4237-b6e6-a2d735c4","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:40.198 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.199 [XNIO-1 task-2] qhbeVxZWSaKWRyUHzq_eQg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.202 [XNIO-1 task-2] CFDJE8ZQSqOOBPJoY-0aRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/185d4a23-2eb3-4efd-8c0b-c8802a66ef09, base path is set to: null +17:00:40.202 [XNIO-1 task-2] CFDJE8ZQSqOOBPJoY-0aRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.202 [XNIO-1 task-2] CFDJE8ZQSqOOBPJoY-0aRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.202 [XNIO-1 task-2] CFDJE8ZQSqOOBPJoY-0aRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/185d4a23-2eb3-4efd-8c0b-c8802a66ef09, base path is set to: null +17:00:40.203 [XNIO-1 task-2] CFDJE8ZQSqOOBPJoY-0aRw DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", clientId) +17:00:40.208 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.209 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.209 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.210 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.210 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:40.210 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d2906dc-ceff-440e-8f9b-415905bc78ca", {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:40.210 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.210 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.211 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG com.networknt.schema.TypeValidator debug - validate( "7ff8ead7-d170-4fd8-8a0e-ae29042d", {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:40.211 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.211 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7ff8ead7-d170-4fd8-8a0e-ae29042d","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:40.211 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.212 [XNIO-1 task-2] WCAyOXhIRnChMRfC1KsFkA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.215 [XNIO-1 task-2] tU3dLJUyRqut-PPT9aFD6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.215 [XNIO-1 task-2] tU3dLJUyRqut-PPT9aFD6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.216 [XNIO-1 task-2] tU3dLJUyRqut-PPT9aFD6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.216 [XNIO-1 task-2] tU3dLJUyRqut-PPT9aFD6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.243 [XNIO-1 task-2] DK_tNU3TS3qOeY46IT4K3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.243 [XNIO-1 task-2] DK_tNU3TS3qOeY46IT4K3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.243 [XNIO-1 task-2] DK_tNU3TS3qOeY46IT4K3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.244 [XNIO-1 task-2] DK_tNU3TS3qOeY46IT4K3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.268 [XNIO-1 task-2] KqATLAdvS_avYW1YwHoXeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.268 [XNIO-1 task-2] KqATLAdvS_avYW1YwHoXeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.269 [XNIO-1 task-2] KqATLAdvS_avYW1YwHoXeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.378 [XNIO-1 task-2] 02r9xd5aQV2y6c8aizJCrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.379 [XNIO-1 task-2] 02r9xd5aQV2y6c8aizJCrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.382 [XNIO-1 task-2] 02r9xd5aQV2y6c8aizJCrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.444 [XNIO-1 task-2] 6_v3WtJJSfiwynDhFd7RmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e, base path is set to: null +17:00:40.444 [XNIO-1 task-2] 6_v3WtJJSfiwynDhFd7RmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.444 [XNIO-1 task-2] 6_v3WtJJSfiwynDhFd7RmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.444 [XNIO-1 task-2] 6_v3WtJJSfiwynDhFd7RmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e, base path is set to: null +17:00:40.445 [XNIO-1 task-2] 6_v3WtJJSfiwynDhFd7RmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "482b1cbd-625a-4f88-bed5-9f008ef8498e", "482b1cbd-625a-4f88-bed5-9f008ef8498e", clientId) +17:00:40.450 [XNIO-1 task-2] VVSvQ5SmTBSSDpoHHPYTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc +17:00:40.452 [XNIO-1 task-2] VVSvQ5SmTBSSDpoHHPYTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.452 [XNIO-1 task-2] VVSvQ5SmTBSSDpoHHPYTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:40.452 [XNIO-1 task-2] VVSvQ5SmTBSSDpoHHPYTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc +17:00:40.455 [hz._hzInstance_1_dev.cached.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore loadAllKeys - loadAllKeys is called +17:00:40.481 [XNIO-1 task-2] tBJTSu5bSrq3VUV1mckTTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e +17:00:40.482 [XNIO-1 task-2] tBJTSu5bSrq3VUV1mckTTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.482 [XNIO-1 task-2] tBJTSu5bSrq3VUV1mckTTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:40.482 [XNIO-1 task-2] tBJTSu5bSrq3VUV1mckTTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/482b1cbd-625a-4f88-bed5-9f008ef8498e +17:00:40.512 [XNIO-1 task-2] KLPzVmHgS9GCBNwB-wdvpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc, base path is set to: null +17:00:40.512 [XNIO-1 task-2] KLPzVmHgS9GCBNwB-wdvpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.512 [XNIO-1 task-2] KLPzVmHgS9GCBNwB-wdvpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.512 [XNIO-1 task-2] KLPzVmHgS9GCBNwB-wdvpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc, base path is set to: null +17:00:40.513 [XNIO-1 task-2] KLPzVmHgS9GCBNwB-wdvpA DEBUG com.networknt.schema.TypeValidator debug - validate( "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", clientId) +17:00:40.517 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.517 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.522 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.523 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.523 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:40.523 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG com.networknt.schema.TypeValidator debug - validate( "0235b7be-a6b5-4168-83d4-ccafb4e6720e", {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:40.523 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.523 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.524 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG com.networknt.schema.TypeValidator debug - validate( "376ee0d3-d071-4d4d-a514-465a28c0", {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:40.524 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.524 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"376ee0d3-d071-4d4d-a514-465a28c0","clientDesc":"0235b7be-a6b5-4168-83d4-ccafb4e6720e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:40.524 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.524 [XNIO-1 task-2] EC4bXBq7QNWaUzwcPE9Q8A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.528 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.528 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.528 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.529 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.529 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.529 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.529 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.529 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.530 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.530 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.530 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.530 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d2e8f16-8495-45e6-ac54-38da2078","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.530 [XNIO-1 task-2] mN8qlumHR162UjOSFFUsRg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:40.535 [XNIO-1 task-2] oR3CyKBJTdW_hT-SKzy0XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a606664-5776-4952-b713-a982dcb54ddd +17:00:40.535 [XNIO-1 task-2] oR3CyKBJTdW_hT-SKzy0XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.535 [XNIO-1 task-2] oR3CyKBJTdW_hT-SKzy0XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:40.535 [XNIO-1 task-2] oR3CyKBJTdW_hT-SKzy0XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a606664-5776-4952-b713-a982dcb54ddd +17:00:40.538 [XNIO-1 task-2] wFwcv_vTRem-ORiclcVnHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.539 [XNIO-1 task-2] wFwcv_vTRem-ORiclcVnHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.539 [XNIO-1 task-2] wFwcv_vTRem-ORiclcVnHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.539 [XNIO-1 task-2] wFwcv_vTRem-ORiclcVnHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.590 [XNIO-1 task-2] JdXUPOXbQvWKrplixB4pgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/185d4a23-2eb3-4efd-8c0b-c8802a66ef09, base path is set to: null +17:00:40.590 [XNIO-1 task-2] JdXUPOXbQvWKrplixB4pgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.591 [XNIO-1 task-2] JdXUPOXbQvWKrplixB4pgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.591 [XNIO-1 task-2] JdXUPOXbQvWKrplixB4pgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/185d4a23-2eb3-4efd-8c0b-c8802a66ef09, base path is set to: null +17:00:40.591 [XNIO-1 task-2] JdXUPOXbQvWKrplixB4pgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", clientId) +17:00:40.595 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.595 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.596 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.596 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.596 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:40.596 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d2906dc-ceff-440e-8f9b-415905bc78ca", {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:40.596 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.597 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.597 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a882702-c9e4-4646-8773-0927267f", {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:40.597 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.597 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7a882702-c9e4-4646-8773-0927267f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:40.597 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.597 [XNIO-1 task-2] BZwyxyFnSc6WxjqFqVnelA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.604 [XNIO-1 task-2] pYB7shmuTmqdh3ge9bzV7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.604 [XNIO-1 task-2] pYB7shmuTmqdh3ge9bzV7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.604 [XNIO-1 task-2] pYB7shmuTmqdh3ge9bzV7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.605 [XNIO-1 task-2] pYB7shmuTmqdh3ge9bzV7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.620 [XNIO-1 task-2] lZmljmXASPq2-DwdYxIDlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4cf7ab4b-8d36-4fc4-a74e-0cd70a1d1288, base path is set to: null +17:00:40.621 [XNIO-1 task-2] lZmljmXASPq2-DwdYxIDlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.621 [XNIO-1 task-2] lZmljmXASPq2-DwdYxIDlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.621 [XNIO-1 task-2] lZmljmXASPq2-DwdYxIDlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4cf7ab4b-8d36-4fc4-a74e-0cd70a1d1288, base path is set to: null +17:00:40.621 [XNIO-1 task-2] lZmljmXASPq2-DwdYxIDlA DEBUG com.networknt.schema.TypeValidator debug - validate( "4cf7ab4b-8d36-4fc4-a74e-0cd70a1d1288", "4cf7ab4b-8d36-4fc4-a74e-0cd70a1d1288", clientId) +17:00:40.629 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f32f05e +17:00:40.639 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.639 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.640 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.640 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.641 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.641 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.641 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.641 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.641 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.641 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.642 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.642 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4155de3-4483-442e-b268-93be2f64","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.643 [XNIO-1 task-2] ALmraKQ1Rlia_E0o75uKfQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:40.652 [XNIO-1 task-2] arLBpmDCRyeDcpKUADD2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:40.652 [XNIO-1 task-2] arLBpmDCRyeDcpKUADD2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.652 [XNIO-1 task-2] arLBpmDCRyeDcpKUADD2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:40.653 [XNIO-1 task-2] arLBpmDCRyeDcpKUADD2Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:40.657 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.657 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.657 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.659 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.660 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f175594c-1880-47c9-8665-debda23e","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.661 [XNIO-1 task-2] ktp8MjxDTlCLQBCzwbJ_Kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:40.662 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f32f05e +17:00:40.664 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.665 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.666 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d7ec65-3437-458b-9c22-0c2e56bea52d", {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG com.networknt.schema.TypeValidator debug - validate( "55d8d1a9-46fb-462f-a1c5-51548e98", {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.668 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"55d8d1a9-46fb-462f-a1c5-51548e98","clientDesc":"c4d7ec65-3437-458b-9c22-0c2e56bea52d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:40.669 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.669 [XNIO-1 task-2] VQ39nofYS3WloWL0CE8mGA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.671 [XNIO-1 task-2] FAgdFJ1iTwCUhnjebQ4GLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc, base path is set to: null +17:00:40.672 [XNIO-1 task-2] FAgdFJ1iTwCUhnjebQ4GLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.672 [XNIO-1 task-2] FAgdFJ1iTwCUhnjebQ4GLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:40.672 [XNIO-1 task-2] FAgdFJ1iTwCUhnjebQ4GLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc, base path is set to: null +17:00:40.672 [XNIO-1 task-2] FAgdFJ1iTwCUhnjebQ4GLg DEBUG com.networknt.schema.TypeValidator debug - validate( "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", clientId) +17:00:40.682 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f32f05e +17:00:40.689 [XNIO-1 task-2] pr3TNmlCTUanRTluCM1P8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:40.690 [XNIO-1 task-2] pr3TNmlCTUanRTluCM1P8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.690 [XNIO-1 task-2] pr3TNmlCTUanRTluCM1P8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:40.691 [XNIO-1 task-2] pr3TNmlCTUanRTluCM1P8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:40.716 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bfab1afb +17:00:40.717 [XNIO-1 task-2] kK6MpOTQRL6YcKd1PPpCPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.717 [XNIO-1 task-2] kK6MpOTQRL6YcKd1PPpCPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.717 [XNIO-1 task-2] kK6MpOTQRL6YcKd1PPpCPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.717 [XNIO-1 task-2] kK6MpOTQRL6YcKd1PPpCPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.717 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bfab1afb +17:00:40.740 [XNIO-1 task-2] kK6MpOTQRL6YcKd1PPpCPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.751 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bfab1afb +17:00:40.780 [XNIO-1 task-2] oz6pj8CwRRKYy45QjbQ5Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.780 [XNIO-1 task-2] oz6pj8CwRRKYy45QjbQ5Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.781 [XNIO-1 task-2] oz6pj8CwRRKYy45QjbQ5Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.781 [XNIO-1 task-2] oz6pj8CwRRKYy45QjbQ5Wg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.797 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bfab1afb +17:00:40.810 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.810 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.811 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.812 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.812 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.812 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.812 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.813 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.813 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.813 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.813 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.813 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"713c9d2b-ce21-4521-abc9-a488378f","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.839 [XNIO-1 task-2] -DxK_EM5Qz68fN28sbhysQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:40.863 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bdf24b65-ffde-4356-841a-cc74e8c7dd54 +17:00:40.864 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.865 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.865 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.866 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.868 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d9715b09-3190-413b-a782-0c267419","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.870 [XNIO-1 task-2] q2I46l0oSBKD-VykdzMRuw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:40.874 [XNIO-1 task-2] auYzVN-kRfuIFW-Givi0XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.874 [XNIO-1 task-2] auYzVN-kRfuIFW-Givi0XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.874 [XNIO-1 task-2] auYzVN-kRfuIFW-Givi0XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.875 [XNIO-1 task-2] auYzVN-kRfuIFW-Givi0XQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.894 [XNIO-1 task-2] xs-tN9-NQjOnx0Zr_6pLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.897 [XNIO-1 task-2] xs-tN9-NQjOnx0Zr_6pLyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.897 [XNIO-1 task-2] xs-tN9-NQjOnx0Zr_6pLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.928 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.929 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:40.929 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.930 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"797b163a-fe0c-4950-8dc4-da827acd","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 28, 2024 5:00:41 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:40.931 [XNIO-1 task-2] oaDVgbyuQHugdUIq_xyxnw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:40.934 [XNIO-1 task-2] 9Yixg0AxSeGvxWaJ33lPMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.934 [XNIO-1 task-2] 9Yixg0AxSeGvxWaJ33lPMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.934 [XNIO-1 task-2] 9Yixg0AxSeGvxWaJ33lPMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.935 [XNIO-1 task-2] 9Yixg0AxSeGvxWaJ33lPMA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.994 [XNIO-1 task-2] xXdZZ7GQQMaRRZ7nQa9dqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:40.994 [XNIO-1 task-2] xXdZZ7GQQMaRRZ7nQa9dqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:40.994 [XNIO-1 task-2] xXdZZ7GQQMaRRZ7nQa9dqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:40.994 [XNIO-1 task-2] xXdZZ7GQQMaRRZ7nQa9dqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:40.995 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b42fff8c-7399-4238-802d-ed5469fad613 +17:00:41.011 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f32f05e +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:41.015 [XNIO-1 task-2] xXdZZ7GQQMaRRZ7nQa9dqw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) +Jun 28, 2024 5:00:41 PM com.hazelcast.map.impl.operation.DeleteOperation + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.032 [XNIO-1 task-2] xXdZZ7GQQMaRRZ7nQa9dqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.035 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34, base path is set to: null +17:00:41.035 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34 +17:00:41.035 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.035 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.036 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.036 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.036 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34, base path is set to: null +17:00:41.036 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34 +17:00:41.036 [XNIO-1 task-2] XHc25A0GSDyXC4Z8cviZog DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", clientId) +17:00:41.045 [XNIO-1 task-2] ki6PZainQoaMozPoZZtvsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +17:00:41.045 [XNIO-1 task-2] ki6PZainQoaMozPoZZtvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.045 [XNIO-1 task-2] ki6PZainQoaMozPoZZtvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34 +17:00:41.046 [XNIO-1 task-2] ki6PZainQoaMozPoZZtvsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", clientId) +17:00:41.050 [XNIO-1 task-2] YoQsXmIaTm6sXoLDmHeuGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/878e15af-1b81-4c3f-b32e-a223017b2aa2, base path is set to: null +17:00:41.051 [XNIO-1 task-2] YoQsXmIaTm6sXoLDmHeuGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/878e15af-1b81-4c3f-b32e-a223017b2aa2 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:41.051 [XNIO-1 task-2] YoQsXmIaTm6sXoLDmHeuGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.051 [XNIO-1 task-2] YoQsXmIaTm6sXoLDmHeuGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.052 [XNIO-1 task-2] YoQsXmIaTm6sXoLDmHeuGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/878e15af-1b81-4c3f-b32e-a223017b2aa2, base path is set to: null +17:00:41.052 [XNIO-1 task-2] YoQsXmIaTm6sXoLDmHeuGw DEBUG com.networknt.schema.TypeValidator debug - validate( "878e15af-1b81-4c3f-b32e-a223017b2aa2", "878e15af-1b81-4c3f-b32e-a223017b2aa2", clientId) +17:00:41.062 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:bfab1afb +17:00:41.071 [XNIO-1 task-2] 0Jgcs54GTS63xMYdWAESyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.071 [XNIO-1 task-2] 0Jgcs54GTS63xMYdWAESyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.071 [XNIO-1 task-2] 0Jgcs54GTS63xMYdWAESyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.073 [XNIO-1 task-2] 0Jgcs54GTS63xMYdWAESyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.155 [XNIO-1 task-2] 3uDhlH7yRM61EIDsFSVGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:41.155 [XNIO-1 task-2] 3uDhlH7yRM61EIDsFSVGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.155 [XNIO-1 task-2] 3uDhlH7yRM61EIDsFSVGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.155 [XNIO-1 task-2] 3uDhlH7yRM61EIDsFSVGWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:41.156 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b42fff8c-7399-4238-802d-ed5469fad613 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +Jun 28, 2024 5:00:41 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:41.162 [XNIO-1 task-2] 3uDhlH7yRM61EIDsFSVGWA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.165 [XNIO-1 task-2] IxMa0f2vRQKWPKlEwTEzaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.167 [XNIO-1 task-2] IxMa0f2vRQKWPKlEwTEzaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.167 [XNIO-1 task-2] IxMa0f2vRQKWPKlEwTEzaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.216 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.217 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.217 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.218 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2be52e0e-678c-47eb-b541-6dd611fc","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.220 [XNIO-1 task-2] xYqIJnuoTZ--_YgAg5bdow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.223 [XNIO-1 task-2] 0lob6M-gQOybH-zYKzrztw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a606664-5776-4952-b713-a982dcb54ddd +17:00:41.223 [XNIO-1 task-2] 0lob6M-gQOybH-zYKzrztw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.223 [XNIO-1 task-2] 0lob6M-gQOybH-zYKzrztw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.224 [XNIO-1 task-2] 0lob6M-gQOybH-zYKzrztw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a606664-5776-4952-b713-a982dcb54ddd +17:00:41.224 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1a606664-5776-4952-b713-a982dcb54ddd +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:41.230 [XNIO-1 task-2] 0lob6M-gQOybH-zYKzrztw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/1a606664-5776-4952-b713-a982dcb54ddd} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.234 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.234 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.235 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.235 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.235 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.235 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.235 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.236 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:41.236 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:41.236 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.236 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.236 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0045bf2a-1a45-466b-b8c7-a63ec5e1","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.254 [XNIO-1 task-2] M8uJoybqSgGuPxlQeO6n0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.258 [XNIO-1 task-2] EnxX74dcRLm0zt5hh_f8_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.258 [XNIO-1 task-2] EnxX74dcRLm0zt5hh_f8_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.258 [XNIO-1 task-2] EnxX74dcRLm0zt5hh_f8_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.276 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f32f05e +17:00:41.283 [XNIO-1 task-2] JGmfZMllRCO9AMxUDpn0YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.284 [XNIO-1 task-2] JGmfZMllRCO9AMxUDpn0YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.284 [XNIO-1 task-2] JGmfZMllRCO9AMxUDpn0YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.284 [XNIO-1 task-2] JGmfZMllRCO9AMxUDpn0YA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.401 [XNIO-1 task-2] kBY1TNzzQ06kFc90d7EbPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:41.401 [XNIO-1 task-2] kBY1TNzzQ06kFc90d7EbPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.401 [XNIO-1 task-2] kBY1TNzzQ06kFc90d7EbPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.401 [XNIO-1 task-2] kBY1TNzzQ06kFc90d7EbPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:41.409 [XNIO-1 task-2] r7Dsx1d8RsCse-8UKfP5xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.410 [XNIO-1 task-2] r7Dsx1d8RsCse-8UKfP5xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.410 [XNIO-1 task-2] r7Dsx1d8RsCse-8UKfP5xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.441 [XNIO-1 task-2] zrtTZVCZRmaZeHlc0PnS6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:41.441 [XNIO-1 task-2] zrtTZVCZRmaZeHlc0PnS6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.441 [XNIO-1 task-2] zrtTZVCZRmaZeHlc0PnS6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.441 [XNIO-1 task-2] zrtTZVCZRmaZeHlc0PnS6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:41.442 [XNIO-1 task-2] zrtTZVCZRmaZeHlc0PnS6A DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", clientId) +17:00:41.450 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.450 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.451 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.451 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.451 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:41.452 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e3ae8cab-7dca-482e-8cdd-25b1e1098075", {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:41.452 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:41.452 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:41.452 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb567f98-8d25-49b8-b1a6-6f55d89b", {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:41.452 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.456 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fb567f98-8d25-49b8-b1a6-6f55d89b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:41.456 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.457 [XNIO-1 task-2] IvXp7LO-RNm9qz1GI3qdIQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.462 [XNIO-1 task-2] wNRvcFVbSVufUtLkGc5tNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.463 [XNIO-1 task-2] wNRvcFVbSVufUtLkGc5tNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.463 [XNIO-1 task-2] wNRvcFVbSVufUtLkGc5tNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.463 [XNIO-1 task-2] wNRvcFVbSVufUtLkGc5tNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.463 [XNIO-1 task-2] wNRvcFVbSVufUtLkGc5tNA DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:41.511 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:54390d46-9e0f-4ba9-8ac4-14ba59034d67 +17:00:41.565 [XNIO-1 task-2] wNRvcFVbSVufUtLkGc5tNA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.566 [XNIO-1 task-2] wNRvcFVbSVufUtLkGc5tNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.569 [XNIO-1 task-2] -8e-m3cLS-2htUmxgcf7nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34 +17:00:41.569 [XNIO-1 task-2] -8e-m3cLS-2htUmxgcf7nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.569 [XNIO-1 task-2] -8e-m3cLS-2htUmxgcf7nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.570 [XNIO-1 task-2] -8e-m3cLS-2htUmxgcf7nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34 +17:00:41.575 [XNIO-1 task-2] gLNH3CzSQQ-3gOj25LV6Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:41.575 [XNIO-1 task-2] gLNH3CzSQQ-3gOj25LV6Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.575 [XNIO-1 task-2] gLNH3CzSQQ-3gOj25LV6Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.575 [XNIO-1 task-2] gLNH3CzSQQ-3gOj25LV6Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:41.575 [XNIO-1 task-2] gLNH3CzSQQ-3gOj25LV6Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", clientId) +17:00:41.632 [XNIO-1 task-2] yZ-8Kwn1RGqYqNzElX72uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.632 [XNIO-1 task-2] yZ-8Kwn1RGqYqNzElX72uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.633 [XNIO-1 task-2] yZ-8Kwn1RGqYqNzElX72uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.633 [XNIO-1 task-2] yZ-8Kwn1RGqYqNzElX72uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.633 [XNIO-1 task-2] yZ-8Kwn1RGqYqNzElX72uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:41.637 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f32f05e +17:00:41.661 [XNIO-1 task-2] jPRZUzPfQIuOeK_xE2En5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0, base path is set to: null +17:00:41.661 [XNIO-1 task-2] jPRZUzPfQIuOeK_xE2En5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.661 [XNIO-1 task-2] jPRZUzPfQIuOeK_xE2En5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.662 [XNIO-1 task-2] jPRZUzPfQIuOeK_xE2En5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0, base path is set to: null +17:00:41.662 [XNIO-1 task-2] jPRZUzPfQIuOeK_xE2En5A DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", clientId) +17:00:41.663 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1976a749 +17:00:41.697 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f32f05e +17:00:41.716 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1976a749 +17:00:41.719 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f32f05e +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:41.745 [XNIO-1 task-2] jPRZUzPfQIuOeK_xE2En5A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.748 [XNIO-1 task-2] Ri1A4f6bS9ebtD_vj_XaCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.748 [XNIO-1 task-2] Ri1A4f6bS9ebtD_vj_XaCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.748 [XNIO-1 task-2] Ri1A4f6bS9ebtD_vj_XaCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.749 [XNIO-1 task-2] Ri1A4f6bS9ebtD_vj_XaCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.763 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1976a749 +17:00:41.768 [XNIO-1 task-2] BKHLGMSzTy-MJvXb_mCzVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/40596890-d969-466f-b235-b056c87dd4c5, base path is set to: null +17:00:41.768 [XNIO-1 task-2] BKHLGMSzTy-MJvXb_mCzVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.769 [XNIO-1 task-2] BKHLGMSzTy-MJvXb_mCzVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.769 [XNIO-1 task-2] BKHLGMSzTy-MJvXb_mCzVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/40596890-d969-466f-b235-b056c87dd4c5, base path is set to: null +17:00:41.769 [XNIO-1 task-2] BKHLGMSzTy-MJvXb_mCzVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "40596890-d969-466f-b235-b056c87dd4c5", "40596890-d969-466f-b235-b056c87dd4c5", clientId) +17:00:41.785 [XNIO-1 task-2] 4pVaAqn1QFe0_siLKjUaZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.785 [XNIO-1 task-2] 4pVaAqn1QFe0_siLKjUaZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.786 [XNIO-1 task-2] 4pVaAqn1QFe0_siLKjUaZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.787 [XNIO-1 task-2] 4pVaAqn1QFe0_siLKjUaZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.804 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.804 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.804 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.805 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.805 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:41.805 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e3ae8cab-7dca-482e-8cdd-25b1e1098075", {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:41.805 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:41.805 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:41.805 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82aab0d6-088d-4ae9-8d94-e55bbf5d", {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:41.805 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.806 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"82aab0d6-088d-4ae9-8d94-e55bbf5d","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:41.806 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.806 [XNIO-1 task-2] vHEIRKWhRsqcP5WBDWjjGQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.814 [XNIO-1 task-2] 7vl0a8foQFqSUsV-I5Ib6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.814 [XNIO-1 task-2] 7vl0a8foQFqSUsV-I5Ib6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.814 [XNIO-1 task-2] 7vl0a8foQFqSUsV-I5Ib6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.815 [XNIO-1 task-2] 7vl0a8foQFqSUsV-I5Ib6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.815 [XNIO-1 task-2] 7vl0a8foQFqSUsV-I5Ib6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:41.818 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.818 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.818 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.819 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.819 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:41.819 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG com.networknt.schema.TypeValidator debug - validate( "e3ae8cab-7dca-482e-8cdd-25b1e1098075", {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:41.819 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:41.819 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:41.820 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG com.networknt.schema.TypeValidator debug - validate( "f075eb49-eab2-4310-9b9d-49bb1ca0", {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:41.820 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.820 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f075eb49-eab2-4310-9b9d-49bb1ca0","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:41.820 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.820 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.820 [XNIO-1 task-2] CFpSY7adR2Sjkt5vWiqHkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.826 [XNIO-1 task-2] uxGpz_O8S_Sd-PPJarutWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:41.826 [XNIO-1 task-2] uxGpz_O8S_Sd-PPJarutWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +17:00:41.827 [XNIO-1 task-2] uxGpz_O8S_Sd-PPJarutWw DEBUG com.networknt.schema.TypeValidator debug - validate( "e3ae8cab-7dca-482e-8cdd-25b1e1098075", {"clientType":"public","clientProfile":"mobile","clientName":"57ea937d-1fb3-434f-a6f3-d0d7c8f9","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + +17:00:41.827 [XNIO-1 task-2] uxGpz_O8S_Sd-PPJarutWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57ea937d-1fb3-434f-a6f3-d0d7c8f9","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57ea937d-1fb3-434f-a6f3-d0d7c8f9","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.827 [XNIO-1 task-2] uxGpz_O8S_Sd-PPJarutWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57ea937d-1fb3-434f-a6f3-d0d7c8f9","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57ea937d-1fb3-434f-a6f3-d0d7c8f9","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.828 [XNIO-1 task-2] uxGpz_O8S_Sd-PPJarutWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"57ea937d-1fb3-434f-a6f3-d0d7c8f9","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"57ea937d-1fb3-434f-a6f3-d0d7c8f9","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.828 [XNIO-1 task-2] uxGpz_O8S_Sd-PPJarutWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.831 [XNIO-1 task-2] -PBMeUv9R8yGbgTA7vPIiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:41.831 [XNIO-1 task-2] -PBMeUv9R8yGbgTA7vPIiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.831 [XNIO-1 task-2] -PBMeUv9R8yGbgTA7vPIiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.831 [XNIO-1 task-2] -PBMeUv9R8yGbgTA7vPIiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:41.835 [XNIO-1 task-2] VqAIO7ixRGCD1q11Itcmzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34, base path is set to: null +17:00:41.835 [XNIO-1 task-2] VqAIO7ixRGCD1q11Itcmzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.835 [XNIO-1 task-2] VqAIO7ixRGCD1q11Itcmzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.836 [XNIO-1 task-2] VqAIO7ixRGCD1q11Itcmzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34, base path is set to: null +17:00:41.836 [XNIO-1 task-2] VqAIO7ixRGCD1q11Itcmzg DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", clientId) +17:00:41.839 [XNIO-1 task-2] QPSpd6jeQb2qqCd-TsCcUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89 +17:00:41.839 [XNIO-1 task-2] QPSpd6jeQb2qqCd-TsCcUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.840 [XNIO-1 task-2] QPSpd6jeQb2qqCd-TsCcUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.840 [XNIO-1 task-2] QPSpd6jeQb2qqCd-TsCcUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89 +17:00:41.893 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1976a749 +17:00:41.900 [XNIO-1 task-2] QPSpd6jeQb2qqCd-TsCcUg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.901 [XNIO-1 task-2] QPSpd6jeQb2qqCd-TsCcUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.907 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.907 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.908 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "2558028c-b4b5-4af4-bf7c-39226cf95205", {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "7c133f5f-52b8-4966-a0ed-cf89da7b", {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7c133f5f-52b8-4966-a0ed-cf89da7b","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:41.909 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.910 [XNIO-1 task-2] Y04HLvm4TyWV22f33ihCRg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.910 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f32f05e +17:00:41.916 [XNIO-1 task-2] RyZPbWHnSHae9WtIbOt_AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:41.918 [XNIO-1 task-2] RyZPbWHnSHae9WtIbOt_AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.918 [XNIO-1 task-2] RyZPbWHnSHae9WtIbOt_AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.918 [XNIO-1 task-2] RyZPbWHnSHae9WtIbOt_AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:41.918 [XNIO-1 task-2] RyZPbWHnSHae9WtIbOt_AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", clientId) +17:00:41.924 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:41.925 [XNIO-1 task-2] RyZPbWHnSHae9WtIbOt_AQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:41.925 [XNIO-1 task-2] RyZPbWHnSHae9WtIbOt_AQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:41.929 [XNIO-1 task-2] TgkP8GgkQ1-Sg2UALywcEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.929 [XNIO-1 task-2] TgkP8GgkQ1-Sg2UALywcEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.929 [XNIO-1 task-2] TgkP8GgkQ1-Sg2UALywcEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.930 [XNIO-1 task-2] TgkP8GgkQ1-Sg2UALywcEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.945 [XNIO-1 task-2] rnjXs6MzRimppGV3o6vgMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e +17:00:41.945 [XNIO-1 task-2] rnjXs6MzRimppGV3o6vgMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.945 [XNIO-1 task-2] rnjXs6MzRimppGV3o6vgMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.945 [XNIO-1 task-2] rnjXs6MzRimppGV3o6vgMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e +17:00:41.948 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1976a749 +17:00:41.948 [XNIO-1 task-2] 4vWlGeKqRT6vXjN-apENZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e +17:00:41.948 [XNIO-1 task-2] 4vWlGeKqRT6vXjN-apENZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.949 [XNIO-1 task-2] 4vWlGeKqRT6vXjN-apENZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:41.949 [XNIO-1 task-2] 4vWlGeKqRT6vXjN-apENZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e +17:00:41.958 [XNIO-1 task-2] vnReuhjySq2cyZKHCms_TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.959 [XNIO-1 task-2] vnReuhjySq2cyZKHCms_TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:41.959 [XNIO-1 task-2] vnReuhjySq2cyZKHCms_TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:41.959 [XNIO-1 task-2] vnReuhjySq2cyZKHCms_TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:41.959 [XNIO-1 task-2] vnReuhjySq2cyZKHCms_TA DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:41.967 [XNIO-1 task-2] A-pn9kjFQaWYcXZKVWiDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.967 [XNIO-1 task-2] A-pn9kjFQaWYcXZKVWiDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.968 [XNIO-1 task-2] A-pn9kjFQaWYcXZKVWiDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:41.968 [XNIO-1 task-2] A-pn9kjFQaWYcXZKVWiDpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.000 [XNIO-1 task-2] QYT2ZWk_RWCP624xAtPwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:42.000 [XNIO-1 task-2] QYT2ZWk_RWCP624xAtPwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.000 [XNIO-1 task-2] QYT2ZWk_RWCP624xAtPwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:42.000 [XNIO-1 task-2] QYT2ZWk_RWCP624xAtPwow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:42.002 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f32f05e +17:00:42.006 [XNIO-1 task-2] Alg-PVFZTK2yf1Uxs1-qHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:42.006 [XNIO-1 task-2] Alg-PVFZTK2yf1Uxs1-qHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.006 [XNIO-1 task-2] Alg-PVFZTK2yf1Uxs1-qHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.007 [XNIO-1 task-2] Alg-PVFZTK2yf1Uxs1-qHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:42.007 [XNIO-1 task-2] Alg-PVFZTK2yf1Uxs1-qHg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", clientId) +17:00:42.011 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.011 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.011 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.012 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.012 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:42.012 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG com.networknt.schema.TypeValidator debug - validate( "3804fc6f-adeb-47bd-a9c4-9be6423b090f", {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:42.013 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.013 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.013 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd8c7e29-5819-4b3a-9785-9216d10e", {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:42.014 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.014 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dd8c7e29-5819-4b3a-9785-9216d10e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.014 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.015 [XNIO-1 task-2] 7mdVjGNcRLmc3OJYRmHOLg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.045 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f32f05e +17:00:42.050 [XNIO-1 task-2] Zypkc3OtTfCD49LH7r76DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.050 [XNIO-1 task-2] Zypkc3OtTfCD49LH7r76DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.051 [XNIO-1 task-2] Zypkc3OtTfCD49LH7r76DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.080 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0f32f05e +17:00:42.111 [XNIO-1 task-2] Q7qouerrSIqJJurzlzGIYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:42.111 [XNIO-1 task-2] Q7qouerrSIqJJurzlzGIYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.112 [XNIO-1 task-2] Q7qouerrSIqJJurzlzGIYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.112 [XNIO-1 task-2] Q7qouerrSIqJJurzlzGIYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:42.112 [XNIO-1 task-2] Q7qouerrSIqJJurzlzGIYA DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", clientId) +17:00:42.118 [XNIO-1 task-2] l1Gdkf4dTUOCM6ZacIR2tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:42.118 [XNIO-1 task-2] l1Gdkf4dTUOCM6ZacIR2tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.118 [XNIO-1 task-2] l1Gdkf4dTUOCM6ZacIR2tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:42.118 [XNIO-1 task-2] l1Gdkf4dTUOCM6ZacIR2tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:42.119 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b42fff8c-7399-4238-802d-ed5469fad613 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:42.125 [XNIO-1 task-2] l1Gdkf4dTUOCM6ZacIR2tA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.129 [XNIO-1 task-2] cavp02FeTVWQaf9AU84sfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.129 [XNIO-1 task-2] cavp02FeTVWQaf9AU84sfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.130 [XNIO-1 task-2] cavp02FeTVWQaf9AU84sfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.135 [XNIO-1 task-2] cavp02FeTVWQaf9AU84sfA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.138 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6cb88ed3-dabe-438d-bbfc-3798b215f660 +17:00:42.150 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a3f1d379-3025-4d3d-a08e-c7034775bf56 +17:00:42.157 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.157 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.157 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.158 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.158 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.158 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.159 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.159 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.159 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.159 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.159 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.159 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72057bb-7bf0-4fd5-80cf-558941fc","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.160 [XNIO-1 task-2] JaOymQiVTByV-A-0lXzEWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:42.163 [XNIO-1 task-2] AUekVqpfTniNNdHMQNlpLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:42.164 [XNIO-1 task-2] AUekVqpfTniNNdHMQNlpLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.164 [XNIO-1 task-2] AUekVqpfTniNNdHMQNlpLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.164 [XNIO-1 task-2] AUekVqpfTniNNdHMQNlpLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0, base path is set to: null +17:00:42.164 [XNIO-1 task-2] AUekVqpfTniNNdHMQNlpLw DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:42.185 [XNIO-1 task-2] AUekVqpfTniNNdHMQNlpLw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.195 [XNIO-1 task-2] T2s6mJYSTFeG_ybIhguPow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.195 [XNIO-1 task-2] T2s6mJYSTFeG_ybIhguPow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.195 [XNIO-1 task-2] T2s6mJYSTFeG_ybIhguPow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.196 [XNIO-1 task-2] T2s6mJYSTFeG_ybIhguPow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.239 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.240 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.240 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.241 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e7e1214-2e32-41e0-8b25-724ed746","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.242 [XNIO-1 task-2] oKHe-ztARIKnQVd-NT5hPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:42.246 [XNIO-1 task-2] rgfHq4WhTxGfu8ZZzlapkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34 +17:00:42.247 [XNIO-1 task-2] rgfHq4WhTxGfu8ZZzlapkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.247 [XNIO-1 task-2] rgfHq4WhTxGfu8ZZzlapkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:42.247 [XNIO-1 task-2] rgfHq4WhTxGfu8ZZzlapkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3e4de304-d30a-46ae-9568-f90c50e9cd34 +17:00:42.252 [XNIO-1 task-2] UKFYHXzIRpCvPo3FDwXdKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.253 [XNIO-1 task-2] UKFYHXzIRpCvPo3FDwXdKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.254 [XNIO-1 task-2] UKFYHXzIRpCvPo3FDwXdKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.255 [XNIO-1 task-2] UKFYHXzIRpCvPo3FDwXdKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.301 [XNIO-1 task-2] IbqtqYx2TvCqpyexlOqhWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/185d4a23-2eb3-4efd-8c0b-c8802a66ef09, base path is set to: null +17:00:42.302 [XNIO-1 task-2] IbqtqYx2TvCqpyexlOqhWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.302 [XNIO-1 task-2] IbqtqYx2TvCqpyexlOqhWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.302 [XNIO-1 task-2] IbqtqYx2TvCqpyexlOqhWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/185d4a23-2eb3-4efd-8c0b-c8802a66ef09, base path is set to: null +17:00:42.302 [XNIO-1 task-2] IbqtqYx2TvCqpyexlOqhWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", clientId) +17:00:42.332 [XNIO-1 task-2] IbqtqYx2TvCqpyexlOqhWQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.333 [XNIO-1 task-2] IbqtqYx2TvCqpyexlOqhWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:42.337 [XNIO-1 task-2] pUu6PMC6S-y-7VJ8RHw3tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/91e4d991-1c96-4c2b-82a2-a31da96d1ce5 +17:00:42.337 [XNIO-1 task-2] pUu6PMC6S-y-7VJ8RHw3tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.337 [XNIO-1 task-2] pUu6PMC6S-y-7VJ8RHw3tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:42.337 [XNIO-1 task-2] pUu6PMC6S-y-7VJ8RHw3tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/91e4d991-1c96-4c2b-82a2-a31da96d1ce5 +17:00:42.355 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.355 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.356 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.357 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.357 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.357 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.357 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.357 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.357 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.358 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.358 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.359 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4287baa-f5cf-4480-aa8b-3dae1f12","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.359 [XNIO-1 task-2] BdN-NH6uQQWHixqpXx_j-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:42.364 [XNIO-1 task-2] QG9pi_aCRSKqrVXTx6GZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:42.364 [XNIO-1 task-2] QG9pi_aCRSKqrVXTx6GZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.364 [XNIO-1 task-2] QG9pi_aCRSKqrVXTx6GZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:42.364 [XNIO-1 task-2] QG9pi_aCRSKqrVXTx6GZAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:42.368 [XNIO-1 task-2] HbHm0XJYSZGWQviAyDaJoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.368 [XNIO-1 task-2] HbHm0XJYSZGWQviAyDaJoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.368 [XNIO-1 task-2] HbHm0XJYSZGWQviAyDaJoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.369 [XNIO-1 task-2] HbHm0XJYSZGWQviAyDaJoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.374 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fd9c6b2f +17:00:42.378 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fd9c6b2f +17:00:42.413 [XNIO-1 task-2] 4gkKLHNmS4iogWJa-sJ0yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.413 [XNIO-1 task-2] 4gkKLHNmS4iogWJa-sJ0yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.415 [XNIO-1 task-2] 4gkKLHNmS4iogWJa-sJ0yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.446 [XNIO-1 task-2] gfJC1_e8RTG4bbHtpoVZ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:42.447 [XNIO-1 task-2] gfJC1_e8RTG4bbHtpoVZ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.447 [XNIO-1 task-2] gfJC1_e8RTG4bbHtpoVZ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.447 [XNIO-1 task-2] gfJC1_e8RTG4bbHtpoVZ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:42.447 [XNIO-1 task-2] gfJC1_e8RTG4bbHtpoVZ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:42.455 [XNIO-1 task-2] Mb970frlSA-PMhdiahLENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:42.455 [XNIO-1 task-2] Mb970frlSA-PMhdiahLENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.455 [XNIO-1 task-2] Mb970frlSA-PMhdiahLENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:42.455 [XNIO-1 task-2] Mb970frlSA-PMhdiahLENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:42.463 [XNIO-1 task-2] Mb970frlSA-PMhdiahLENA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.464 [XNIO-1 task-2] Mb970frlSA-PMhdiahLENA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:42.468 [XNIO-1 task-2] iTrDGrriRPCpYtB4oviXyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.468 [XNIO-1 task-2] iTrDGrriRPCpYtB4oviXyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.470 [XNIO-1 task-2] iTrDGrriRPCpYtB4oviXyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.497 [XNIO-1 task-2] shZ7x-BdTH2zJNu2UeiqCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.497 [XNIO-1 task-2] shZ7x-BdTH2zJNu2UeiqCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.498 [XNIO-1 task-2] shZ7x-BdTH2zJNu2UeiqCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.517 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fd9c6b2f +17:00:42.544 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.544 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.544 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "a098274e-0d66-4bef-9be6-d7c14ae1e8e6", {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "4fef73a5-afb8-4723-b27a-c377307c", {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.545 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4fef73a5-afb8-4723-b27a-c377307c","clientDesc":"a098274e-0d66-4bef-9be6-d7c14ae1e8e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.546 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.546 [XNIO-1 task-2] UOzCETpORvSRlB45jLd9fA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.560 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.560 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.561 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.561 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.562 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac620474-a852-4eae-a6fb-bc6c0786","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.564 [XNIO-1 task-2] Wg6fpC51ReSx0hHMHoCYZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:42.568 [XNIO-1 task-2] vscHHeGzQli60grKr3Qdag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:42.569 [XNIO-1 task-2] vscHHeGzQli60grKr3Qdag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.569 [XNIO-1 task-2] vscHHeGzQli60grKr3Qdag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:42.569 [XNIO-1 task-2] vscHHeGzQli60grKr3Qdag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:42.576 [XNIO-1 task-2] fNtynl2aSOCjQZiY_Z7JcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.576 [XNIO-1 task-2] fNtynl2aSOCjQZiY_Z7JcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.578 [XNIO-1 task-2] fNtynl2aSOCjQZiY_Z7JcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.578 [XNIO-1 task-2] fNtynl2aSOCjQZiY_Z7JcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.623 [XNIO-1 task-2] KQDUYi_JSRqxpVO4bp-a6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.623 [XNIO-1 task-2] KQDUYi_JSRqxpVO4bp-a6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.624 [XNIO-1 task-2] KQDUYi_JSRqxpVO4bp-a6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.653 [XNIO-1 task-2] xKQAGJT3QrqBGYPRTWg0Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d5414f8-36f7-47e5-bbef-392069ecede6, base path is set to: null +17:00:42.654 [XNIO-1 task-2] xKQAGJT3QrqBGYPRTWg0Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.654 [XNIO-1 task-2] xKQAGJT3QrqBGYPRTWg0Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.654 [XNIO-1 task-2] xKQAGJT3QrqBGYPRTWg0Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5d5414f8-36f7-47e5-bbef-392069ecede6, base path is set to: null +17:00:42.655 [XNIO-1 task-2] xKQAGJT3QrqBGYPRTWg0Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d5414f8-36f7-47e5-bbef-392069ecede6", "5d5414f8-36f7-47e5-bbef-392069ecede6", clientId) +17:00:42.661 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:47ee6ef1-57d2-4825-ad19-8d3c346e8209 +17:00:42.669 [XNIO-1 task-2] NvRqKEuWTDiTeAhaAhd-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.669 [XNIO-1 task-2] NvRqKEuWTDiTeAhaAhd-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.669 [XNIO-1 task-2] NvRqKEuWTDiTeAhaAhd-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.671 [XNIO-1 task-2] NvRqKEuWTDiTeAhaAhd-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.690 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.691 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.691 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.693 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.693 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.693 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.694 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.694 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.694 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.694 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.694 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.694 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7588171c-7679-40ec-8216-b040cc46","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.695 [XNIO-1 task-2] C0KoVRDjR8acGZPQd7OIsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:42.700 [XNIO-1 task-2] Yzohk_nCSQyslYFOpTGd_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.700 [XNIO-1 task-2] Yzohk_nCSQyslYFOpTGd_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.701 [XNIO-1 task-2] Yzohk_nCSQyslYFOpTGd_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.702 [XNIO-1 task-2] Yzohk_nCSQyslYFOpTGd_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.735 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.735 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.736 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.736 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "aa437d61-5641-45c2-a04c-d31cb9b82a49", {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "33956a30-7b9c-4275-9933-274a8de1", {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"33956a30-7b9c-4275-9933-274a8de1","clientDesc":"aa437d61-5641-45c2-a04c-d31cb9b82a49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.737 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.738 [XNIO-1 task-2] wa5MpVZGSkykqh7qgY6xXg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.742 [XNIO-1 task-2] UkepCD1bSuGydw6TZg9Qdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:42.742 [XNIO-1 task-2] UkepCD1bSuGydw6TZg9Qdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.742 [XNIO-1 task-2] UkepCD1bSuGydw6TZg9Qdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.743 [XNIO-1 task-2] UkepCD1bSuGydw6TZg9Qdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:42.743 [XNIO-1 task-2] UkepCD1bSuGydw6TZg9Qdg DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", clientId) +17:00:42.750 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.750 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.751 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3804fc6f-adeb-47bd-a9c4-9be6423b090f", {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da46aedb-0bbc-409f-9db7-e389c62e", {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"da46aedb-0bbc-409f-9db7-e389c62e","clientDesc":"3804fc6f-adeb-47bd-a9c4-9be6423b090f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.752 [XNIO-1 task-2] UqyGy7f7Rf6xpQEtIn8ooQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Jun 28, 2024 5:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:42.757 [XNIO-1 task-2] eT3cqX3JTpaPWZM1G1vGWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +17:00:42.801 [XNIO-1 task-2] eT3cqX3JTpaPWZM1G1vGWQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:42.802 [XNIO-1 task-2] eT3cqX3JTpaPWZM1G1vGWQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.805 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:07ba867f-9cb7-40a7-95a7-69c2ae406784 +17:00:42.808 [XNIO-1 task-2] JdOJE0srQhm0UaBF-28-7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:42.809 [XNIO-1 task-2] JdOJE0srQhm0UaBF-28-7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.809 [XNIO-1 task-2] JdOJE0srQhm0UaBF-28-7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.809 [XNIO-1 task-2] JdOJE0srQhm0UaBF-28-7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:42.809 [XNIO-1 task-2] JdOJE0srQhm0UaBF-28-7w DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", clientId) +17:00:42.831 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:07ba867f-9cb7-40a7-95a7-69c2ae406784 +17:00:42.833 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:956b9f84 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:42.866 [XNIO-1 task-2] JdOJE0srQhm0UaBF-28-7w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.869 [XNIO-1 task-2] c34-PwmrQKqLB9xOzVSTnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.869 [XNIO-1 task-2] c34-PwmrQKqLB9xOzVSTnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.869 [XNIO-1 task-2] c34-PwmrQKqLB9xOzVSTnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.894 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:956b9f84 +17:00:42.918 [XNIO-1 task-2] 1W2kJw5TQwepVyKnqSyrNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:42.919 [XNIO-1 task-2] 1W2kJw5TQwepVyKnqSyrNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.919 [XNIO-1 task-2] 1W2kJw5TQwepVyKnqSyrNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:42.919 [XNIO-1 task-2] 1W2kJw5TQwepVyKnqSyrNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7, base path is set to: null +17:00:42.920 [XNIO-1 task-2] 1W2kJw5TQwepVyKnqSyrNA DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", clientId) +17:00:42.924 [XNIO-1 task-2] WvdZ-b24RzWW-ujAj5LKzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.925 [XNIO-1 task-2] WvdZ-b24RzWW-ujAj5LKzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.925 [XNIO-1 task-2] WvdZ-b24RzWW-ujAj5LKzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.925 [XNIO-1 task-2] WvdZ-b24RzWW-ujAj5LKzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.956 [XNIO-1 task-2] qDRC1baXQwSS-Sl2D7mrzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.957 [XNIO-1 task-2] qDRC1baXQwSS-Sl2D7mrzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:42.957 [XNIO-1 task-2] qDRC1baXQwSS-Sl2D7mrzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:42.958 [XNIO-1 task-2] qDRC1baXQwSS-Sl2D7mrzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.962 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:893d9708-c376-4af0-b8c0-d44f9b5ee128 +17:00:42.990 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:893d9708-c376-4af0-b8c0-d44f9b5ee128 +17:00:43.001 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.002 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.002 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.002 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9d709192-1114-4b34-870f-d8f3abcea2cf", {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0dadacf8-c372-43ad-86df-0e3fb46e", {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0dadacf8-c372-43ad-86df-0e3fb46e","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.003 [XNIO-1 task-2] cKcWZp7zQ7GEqAg3q9492Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.010 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.010 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.011 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.011 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.011 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.011 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.011 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.011 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.012 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.012 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.012 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.012 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d53f367b-7319-43ed-89e3-7aade5ef","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.012 [XNIO-1 task-2] H36HEk-xSiCLRQEr38ZfEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.024 [XNIO-1 task-2] 59it0DwoSbep7Rkz8v6TJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.024 [XNIO-1 task-2] 59it0DwoSbep7Rkz8v6TJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.024 [XNIO-1 task-2] 59it0DwoSbep7Rkz8v6TJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.024 [XNIO-1 task-2] 59it0DwoSbep7Rkz8v6TJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.073 [XNIO-1 task-2] uXHIsKkqQBKGJ3VqX9gCXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.073 [XNIO-1 task-2] uXHIsKkqQBKGJ3VqX9gCXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.074 [XNIO-1 task-2] uXHIsKkqQBKGJ3VqX9gCXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.090 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5c93bf1 +17:00:43.093 [XNIO-1 task-2] cDV_si26QzSxiNRmEMkImQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:43.093 [XNIO-1 task-2] cDV_si26QzSxiNRmEMkImQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.093 [XNIO-1 task-2] cDV_si26QzSxiNRmEMkImQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.094 [XNIO-1 task-2] cDV_si26QzSxiNRmEMkImQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:43.094 [XNIO-1 task-2] cDV_si26QzSxiNRmEMkImQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", clientId) +17:00:43.101 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:43.102 [XNIO-1 task-2] cDV_si26QzSxiNRmEMkImQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.103 [XNIO-1 task-2] cDV_si26QzSxiNRmEMkImQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.109 [XNIO-1 task-2] _zz8DhnGSEGaX97-kpfyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.109 [XNIO-1 task-2] _zz8DhnGSEGaX97-kpfyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.110 [XNIO-1 task-2] _zz8DhnGSEGaX97-kpfyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.110 [XNIO-1 task-2] _zz8DhnGSEGaX97-kpfyJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.151 [XNIO-1 task-2] fGcyWhRLQuyTbE7wPxYzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.174 [XNIO-1 task-2] fGcyWhRLQuyTbE7wPxYzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.174 [XNIO-1 task-2] fGcyWhRLQuyTbE7wPxYzUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.174 [XNIO-1 task-2] fGcyWhRLQuyTbE7wPxYzUg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.185 [XNIO-1 task-2] YA80nzsrR1-unyYFjduOjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:43.185 [XNIO-1 task-2] YA80nzsrR1-unyYFjduOjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.185 [XNIO-1 task-2] YA80nzsrR1-unyYFjduOjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.185 [XNIO-1 task-2] YA80nzsrR1-unyYFjduOjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:43.194 [XNIO-1 task-2] pQLkdiTWTmaN2pVFmFp6Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:43.194 [XNIO-1 task-2] pQLkdiTWTmaN2pVFmFp6Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.194 [XNIO-1 task-2] pQLkdiTWTmaN2pVFmFp6Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.194 [XNIO-1 task-2] pQLkdiTWTmaN2pVFmFp6Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:43.194 [XNIO-1 task-2] pQLkdiTWTmaN2pVFmFp6Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.203 [XNIO-1 task-2] pQLkdiTWTmaN2pVFmFp6Pg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.208 [XNIO-1 task-2] UYFR-4z8QBGSURfuXUZeBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:43.210 [XNIO-1 task-2] UYFR-4z8QBGSURfuXUZeBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.210 [XNIO-1 task-2] UYFR-4z8QBGSURfuXUZeBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.212 [XNIO-1 task-2] UYFR-4z8QBGSURfuXUZeBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677, base path is set to: null +17:00:43.212 [XNIO-1 task-2] UYFR-4z8QBGSURfuXUZeBA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.226 [XNIO-1 task-2] UYFR-4z8QBGSURfuXUZeBA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.233 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:acf82e8d-0e0f-40a5-a7f8-52c77ca744b4 +17:00:43.235 [XNIO-1 task-2] frVbd0D8TqWwh8GsaxMOPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:43.236 [XNIO-1 task-2] frVbd0D8TqWwh8GsaxMOPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.236 [XNIO-1 task-2] frVbd0D8TqWwh8GsaxMOPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.236 [XNIO-1 task-2] frVbd0D8TqWwh8GsaxMOPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:43.236 [XNIO-1 task-2] frVbd0D8TqWwh8GsaxMOPw DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", clientId) +17:00:43.245 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:43.246 [XNIO-1 task-2] frVbd0D8TqWwh8GsaxMOPw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.249 [XNIO-1 task-2] frVbd0D8TqWwh8GsaxMOPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.257 [XNIO-1 task-2] pCkwfFCKTWOe-SnTSYi1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:43.257 [XNIO-1 task-2] pCkwfFCKTWOe-SnTSYi1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.257 [XNIO-1 task-2] pCkwfFCKTWOe-SnTSYi1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.257 [XNIO-1 task-2] pCkwfFCKTWOe-SnTSYi1TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:43.259 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:acf82e8d-0e0f-40a5-a7f8-52c77ca744b4 +17:00:43.265 [XNIO-1 task-2] 4PyBhW09QeqCpO9KFQ5HIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.265 [XNIO-1 task-2] 4PyBhW09QeqCpO9KFQ5HIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.266 [XNIO-1 task-2] 4PyBhW09QeqCpO9KFQ5HIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.273 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aa6ef517-ab51-45b3-afd4-361361f95c58 +17:00:43.289 [XNIO-1 task-2] I7mA0BpqSrWR007w_nXHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.289 [XNIO-1 task-2] I7mA0BpqSrWR007w_nXHlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.289 [XNIO-1 task-2] I7mA0BpqSrWR007w_nXHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.346 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.347 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.347 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.348 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f76349-0e8c-40f3-965b-26816008","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.356 [XNIO-1 task-2] PxXv-6EySxO0r0COvEDgMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.359 [XNIO-1 task-2] 10wdL0vYSFus4fwe83LHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.359 [XNIO-1 task-2] 10wdL0vYSFus4fwe83LHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.360 [XNIO-1 task-2] 10wdL0vYSFus4fwe83LHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.387 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.387 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.388 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.388 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.388 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.388 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f44c13a4-a98e-453b-82be-7499e8c71e8f", {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.388 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.388 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.388 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a32d35e2-ce8d-4bb7-9809-616ae405", {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.389 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.389 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a32d35e2-ce8d-4bb7-9809-616ae405","clientDesc":"f44c13a4-a98e-453b-82be-7499e8c71e8f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.389 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.389 [XNIO-1 task-2] GlNatAMnTxGG4aQ9L-w7_Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.393 [XNIO-1 task-2] 3bP8mKYwRrGE77QxUjJE1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:43.393 [XNIO-1 task-2] 3bP8mKYwRrGE77QxUjJE1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.393 [XNIO-1 task-2] 3bP8mKYwRrGE77QxUjJE1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.393 [XNIO-1 task-2] 3bP8mKYwRrGE77QxUjJE1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:43.393 [XNIO-1 task-2] 3bP8mKYwRrGE77QxUjJE1g DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", clientId) +17:00:43.400 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.400 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.400 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc316f6d-e876-4e27-93eb-27f8cbeebcf4", {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "dfc6f90e-9404-46b9-8b50-1a2ce548", {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.401 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dfc6f90e-9404-46b9-8b50-1a2ce548","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.402 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.402 [XNIO-1 task-2] MXCZeTBDQuqSjD7Z0m25Zg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.406 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.406 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.406 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.407 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c81b4cf6-f4e8-467f-8403-ab88b50f","clientDesc":"dc316f6d-e876-4e27-93eb-27f8cbeebcf4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.433 [XNIO-1 task-2] noIPmF-tTaKVc47yfaKRag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.438 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.438 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.439 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.439 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.439 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.439 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "2558028c-b4b5-4af4-bf7c-39226cf95205", {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.439 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.439 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.439 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "da921113-acc3-44f7-ac04-18961b70", {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.440 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.440 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"da921113-acc3-44f7-ac04-18961b70","clientDesc":"2558028c-b4b5-4af4-bf7c-39226cf95205","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.440 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.440 [XNIO-1 task-2] jZfTsfA-RYSmuEdoLuyxbw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.444 [XNIO-1 task-2] 7EvFDroKSkWyOFmQaK88lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae649367-a66f-45d0-a78b-211aa0690d68, base path is set to: null +17:00:43.445 [XNIO-1 task-2] 7EvFDroKSkWyOFmQaK88lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.445 [XNIO-1 task-2] 7EvFDroKSkWyOFmQaK88lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.445 [XNIO-1 task-2] 7EvFDroKSkWyOFmQaK88lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae649367-a66f-45d0-a78b-211aa0690d68, base path is set to: null +17:00:43.445 [XNIO-1 task-2] 7EvFDroKSkWyOFmQaK88lw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae649367-a66f-45d0-a78b-211aa0690d68", "ae649367-a66f-45d0-a78b-211aa0690d68", clientId) +17:00:43.453 [XNIO-1 task-2] lE1JRHRqRyKPYEEe3tm11g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.453 [XNIO-1 task-2] lE1JRHRqRyKPYEEe3tm11g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.453 [XNIO-1 task-2] lE1JRHRqRyKPYEEe3tm11g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.453 [XNIO-1 task-2] lE1JRHRqRyKPYEEe3tm11g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.479 [XNIO-1 task-2] OvVEoLmcQnO4g7AW637vYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9aad4332-b99b-4483-87d3-98fd1daf3778 +17:00:43.480 [XNIO-1 task-2] OvVEoLmcQnO4g7AW637vYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.480 [XNIO-1 task-2] OvVEoLmcQnO4g7AW637vYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.480 [XNIO-1 task-2] OvVEoLmcQnO4g7AW637vYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9aad4332-b99b-4483-87d3-98fd1daf3778 +17:00:43.487 [XNIO-1 task-2] rdAPoftzSaWHzO0jI31LUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.488 [XNIO-1 task-2] rdAPoftzSaWHzO0jI31LUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.488 [XNIO-1 task-2] rdAPoftzSaWHzO0jI31LUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.488 [XNIO-1 task-2] rdAPoftzSaWHzO0jI31LUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.500 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.500 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.500 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.501 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.501 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.501 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.501 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.501 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.501 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.501 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.502 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.502 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6068456f-44ef-4bba-8e1a-17062cf4","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.502 [XNIO-1 task-2] GkEz4kjwRPqMy02dP8269A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.503 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.508 [XNIO-1 task-2] 38H8WSK3RkKOeg0XuG1MQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:43.508 [XNIO-1 task-2] 38H8WSK3RkKOeg0XuG1MQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.508 [XNIO-1 task-2] 38H8WSK3RkKOeg0XuG1MQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.508 [XNIO-1 task-2] 38H8WSK3RkKOeg0XuG1MQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:43.516 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.516 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.517 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.517 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.517 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.519 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.520 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.520 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.520 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.520 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.520 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.520 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a7d51f8-e3e3-4a97-84cc-6c1cf15e","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.520 [XNIO-1 task-2] wWEnQWnPTUazXAPvC8iVbw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.524 [XNIO-1 task-2] F71FTbkHTyOd6IbLXm6jYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:43.525 [XNIO-1 task-2] F71FTbkHTyOd6IbLXm6jYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.525 [XNIO-1 task-2] F71FTbkHTyOd6IbLXm6jYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.525 [XNIO-1 task-2] F71FTbkHTyOd6IbLXm6jYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:43.536 [XNIO-1 task-2] F71FTbkHTyOd6IbLXm6jYw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.537 [XNIO-1 task-2] F71FTbkHTyOd6IbLXm6jYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.543 [XNIO-1 task-2] z4Cy7GTLQPOf7XJ8rqAG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.543 [XNIO-1 task-2] z4Cy7GTLQPOf7XJ8rqAG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.544 [XNIO-1 task-2] z4Cy7GTLQPOf7XJ8rqAG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.610 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.610 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.611 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.611 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.611 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG com.networknt.schema.TypeValidator debug - validate( "ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914", {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG com.networknt.schema.TypeValidator debug - validate( "cbd37a9c-7a22-4ebc-8a32-02aca49a", {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cbd37a9c-7a22-4ebc-8a32-02aca49a","clientDesc":"ed8bb0e5-5a8b-404a-8f22-9a87ad2ed914","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.612 [XNIO-1 task-2] j560ibj1S_aHe8-CZd7baA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.616 [XNIO-1 task-2] 1AYPPwavTkWtOTDKUTCJnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:43.616 [XNIO-1 task-2] 1AYPPwavTkWtOTDKUTCJnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.616 [XNIO-1 task-2] 1AYPPwavTkWtOTDKUTCJnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.616 [XNIO-1 task-2] 1AYPPwavTkWtOTDKUTCJnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:43.617 [XNIO-1 task-2] 1AYPPwavTkWtOTDKUTCJnw DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", clientId) +17:00:43.619 [XNIO-1 task-2] D-ssS67uSkKFfrTLdrBHvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:43.619 [XNIO-1 task-2] D-ssS67uSkKFfrTLdrBHvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.619 [XNIO-1 task-2] D-ssS67uSkKFfrTLdrBHvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.620 [XNIO-1 task-2] D-ssS67uSkKFfrTLdrBHvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:43.622 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.622 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.623 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.623 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.623 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.623 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.623 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.624 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.624 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.624 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.624 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.624 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62ca0164-a1a6-4b77-820e-86958257","clientDesc":"a231839e-35dc-4fce-8601-5b85b778dbda","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.624 [XNIO-1 task-2] Ie9-vFJtTkCwWIsOo9Sedw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.627 [XNIO-1 task-2] GPztK2XwTVCiEXAzAOIJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.627 [XNIO-1 task-2] GPztK2XwTVCiEXAzAOIJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.627 [XNIO-1 task-2] GPztK2XwTVCiEXAzAOIJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.683 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0, base path is set to: null +17:00:43.684 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:43.684 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.684 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.684 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.684 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.684 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0, base path is set to: null + ... 13 more + +Jun 28, 2024 5:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +17:00:43.696 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:212) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.698 [XNIO-1 task-2] lNp-roBTQKOzCKga1mP6CQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.702 [XNIO-1 task-2] s2-onuWfQ_GqayL-CktvvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.702 [XNIO-1 task-2] s2-onuWfQ_GqayL-CktvvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.702 [XNIO-1 task-2] s2-onuWfQ_GqayL-CktvvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.702 [XNIO-1 task-2] s2-onuWfQ_GqayL-CktvvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.715 [XNIO-1 task-2] TkYmrEy0Q8mz7JbU0lck-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.715 [XNIO-1 task-2] TkYmrEy0Q8mz7JbU0lck-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.716 [XNIO-1 task-2] TkYmrEy0Q8mz7JbU0lck-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.716 [XNIO-1 task-2] TkYmrEy0Q8mz7JbU0lck-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.738 [XNIO-1 task-2] FsZeQ99rRO2GhIOYBnuq5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.739 [XNIO-1 task-2] FsZeQ99rRO2GhIOYBnuq5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.739 [XNIO-1 task-2] FsZeQ99rRO2GhIOYBnuq5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.766 [XNIO-1 task-2] rHQsmX00T6qIQAFo9cKV6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89, base path is set to: null +17:00:43.767 [XNIO-1 task-2] rHQsmX00T6qIQAFo9cKV6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.767 [XNIO-1 task-2] rHQsmX00T6qIQAFo9cKV6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.767 [XNIO-1 task-2] rHQsmX00T6qIQAFo9cKV6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89, base path is set to: null +17:00:43.767 [XNIO-1 task-2] rHQsmX00T6qIQAFo9cKV6g DEBUG com.networknt.schema.TypeValidator debug - validate( "8991a2df-9536-4b62-aa6f-f867d6639c89", "8991a2df-9536-4b62-aa6f-f867d6639c89", clientId) +17:00:43.822 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:46f9cec8-5a24-4c66-ba40-f9e9e6eacfe6 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.823 [XNIO-1 task-2] rHQsmX00T6qIQAFo9cKV6g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.823 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:46f9cec8-5a24-4c66-ba40-f9e9e6eacfe6 +17:00:43.827 [XNIO-1 task-2] IwH_rP_VQ92o5zwJyOdvWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d, base path is set to: null +17:00:43.827 [XNIO-1 task-2] IwH_rP_VQ92o5zwJyOdvWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.827 [XNIO-1 task-2] IwH_rP_VQ92o5zwJyOdvWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.827 [XNIO-1 task-2] IwH_rP_VQ92o5zwJyOdvWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d, base path is set to: null +17:00:43.827 [XNIO-1 task-2] IwH_rP_VQ92o5zwJyOdvWw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7c05b64-9e9c-4406-ab18-60830106eb1d", "a7c05b64-9e9c-4406-ab18-60830106eb1d", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.841 [XNIO-1 task-2] IwH_rP_VQ92o5zwJyOdvWw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.843 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:46f9cec8-5a24-4c66-ba40-f9e9e6eacfe6 +17:00:43.844 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.844 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.844 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.845 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.845 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.845 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG com.networknt.schema.TypeValidator debug - validate( "2e8d257f-9678-4456-860c-742d5c3d495a", {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.845 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.845 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.846 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG com.networknt.schema.TypeValidator debug - validate( "cb3133a9-7e59-443a-a19b-78f4ca9d", {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.846 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.846 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cb3133a9-7e59-443a-a19b-78f4ca9d","clientDesc":"2e8d257f-9678-4456-860c-742d5c3d495a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.846 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.847 [XNIO-1 task-2] 38AphsDzQiKLKqzB9T3z3w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.858 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.858 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.858 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.858 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.859 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.859 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.859 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "06cc8301-c66d-46a8-9f4a-4ad157ba2f8c", {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.859 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.859 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.860 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "39c7be60-6f19-49a9-9ff6-a9011ad3", {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.860 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.860 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"39c7be60-6f19-49a9-9ff6-a9011ad3","clientDesc":"06cc8301-c66d-46a8-9f4a-4ad157ba2f8c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.860 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.860 [XNIO-1 task-2] ctgx2QQ8RJ6tTXfvg4yLSw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.860 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5312473d +17:00:43.868 [XNIO-1 task-2] SbjZIbMkS62ez4HZ1SxrMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:43.869 [XNIO-1 task-2] SbjZIbMkS62ez4HZ1SxrMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.869 [XNIO-1 task-2] SbjZIbMkS62ez4HZ1SxrMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:43.869 [XNIO-1 task-2] SbjZIbMkS62ez4HZ1SxrMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6e8e80b7-f2bc-4f2a-8293-060c3c81127e, base path is set to: null +17:00:43.870 [XNIO-1 task-2] SbjZIbMkS62ez4HZ1SxrMw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", clientId) +17:00:43.873 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.873 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.873 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "9d709192-1114-4b34-870f-d8f3abcea2cf", {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "452b9080-28b3-474c-b0af-30dbff23", {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.874 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"452b9080-28b3-474c-b0af-30dbff23","clientDesc":"9d709192-1114-4b34-870f-d8f3abcea2cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.875 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.875 [XNIO-1 task-2] 39zdmG4XTQGdUBpq8vr3EA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.878 [XNIO-1 task-2] ZMzly85sQ4OaW7LTYl3lOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.878 [XNIO-1 task-2] ZMzly85sQ4OaW7LTYl3lOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.878 [XNIO-1 task-2] ZMzly85sQ4OaW7LTYl3lOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.879 [XNIO-1 task-2] ZMzly85sQ4OaW7LTYl3lOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.891 [XNIO-1 task-2] CkGuayHgSqe3WAoENiTSIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.892 [XNIO-1 task-2] CkGuayHgSqe3WAoENiTSIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.892 [XNIO-1 task-2] CkGuayHgSqe3WAoENiTSIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.912 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:92c92801-7235-4dd5-95cf-4db0dc5267e5 +17:00:43.926 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c5e28be1 +17:00:43.929 [XNIO-1 task-2] kBlpku_AT6WBVIi9JSOA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:43.929 [XNIO-1 task-2] kBlpku_AT6WBVIi9JSOA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.929 [XNIO-1 task-2] kBlpku_AT6WBVIi9JSOA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:43.929 [XNIO-1 task-2] kBlpku_AT6WBVIi9JSOA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f3a190c3-1969-4160-b306-5ca93039e677 +17:00:43.932 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c5e28be1 +17:00:43.941 [XNIO-1 task-2] kBlpku_AT6WBVIi9JSOA2g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.942 [XNIO-1 task-2] kBlpku_AT6WBVIi9JSOA2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.947 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.947 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.947 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.948 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.948 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.948 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.948 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.948 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.949 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.949 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.949 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.949 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"86dfce53-a674-450b-984a-d9e882cc","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.949 [XNIO-1 task-2] -0dovcBCTdiw7xv6gPzi2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:43.953 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.953 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.954 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.954 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.954 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.954 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4930be5e-2f7c-4843-b140-1d172fda8e58", {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.954 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.954 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.954 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8309e71b-ad77-498b-b55e-81a2b9b8", {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.957 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.957 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8309e71b-ad77-498b-b55e-81a2b9b8","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.957 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.957 [XNIO-1 task-2] 836lHCsxRSG4l7Xt_YOQhQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.960 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:560e299f-db45-4510-b7e4-f4a9f1b7762e +17:00:43.961 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:560e299f-db45-4510-b7e4-f4a9f1b7762e +17:00:43.961 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.962 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.963 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:43.966 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.968 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:43.968 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG com.networknt.schema.TypeValidator debug - validate( "4930be5e-2f7c-4843-b140-1d172fda8e58", {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:43.968 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:43.970 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:43.970 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG com.networknt.schema.TypeValidator debug - validate( "20885f85-9234-41cf-9b26-4bccbceb", {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:43.970 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.970 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"20885f85-9234-41cf-9b26-4bccbceb","clientDesc":"4930be5e-2f7c-4843-b140-1d172fda8e58","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.970 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.971 [XNIO-1 task-2] XE1lS2jqSqq5YB6HfSccig DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.981 [XNIO-1 task-2] 1oKBhNM8QaWrSGzl7KMcgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.981 [XNIO-1 task-2] 1oKBhNM8QaWrSGzl7KMcgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:43.982 [XNIO-1 task-2] 1oKBhNM8QaWrSGzl7KMcgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:43.986 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5c93bf1 +17:00:43.988 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5312473d +17:00:44.008 [XNIO-1 task-2] wUH562oqTg2qFo64Sbrapg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f5588ce2-4135-4089-a47f-a9d4e7cbffb4, base path is set to: null +17:00:44.009 [XNIO-1 task-2] wUH562oqTg2qFo64Sbrapg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.009 [XNIO-1 task-2] wUH562oqTg2qFo64Sbrapg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.009 [XNIO-1 task-2] wUH562oqTg2qFo64Sbrapg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f5588ce2-4135-4089-a47f-a9d4e7cbffb4, base path is set to: null +17:00:44.009 [XNIO-1 task-2] wUH562oqTg2qFo64Sbrapg DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.025 [XNIO-1 task-2] wUH562oqTg2qFo64Sbrapg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/f5588ce2-4135-4089-a47f-a9d4e7cbffb4} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:44.034 [XNIO-1 task-2] fH1KGSyASCm0fyQQ-gGm4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae649367-a66f-45d0-a78b-211aa0690d68, base path is set to: null +17:00:44.034 [XNIO-1 task-2] fH1KGSyASCm0fyQQ-gGm4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.034 [XNIO-1 task-2] fH1KGSyASCm0fyQQ-gGm4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.034 [XNIO-1 task-2] fH1KGSyASCm0fyQQ-gGm4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ae649367-a66f-45d0-a78b-211aa0690d68, base path is set to: null +17:00:44.034 [XNIO-1 task-2] fH1KGSyASCm0fyQQ-gGm4g DEBUG com.networknt.schema.TypeValidator debug - validate( "ae649367-a66f-45d0-a78b-211aa0690d68", "ae649367-a66f-45d0-a78b-211aa0690d68", clientId) +17:00:44.039 [XNIO-1 task-2] LHvW8CHZR9SrQSWzyyHn0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bc469f0e-6fc8-49e5-8925-d36b5e012d18 +17:00:44.039 [XNIO-1 task-2] LHvW8CHZR9SrQSWzyyHn0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.039 [XNIO-1 task-2] LHvW8CHZR9SrQSWzyyHn0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.039 [XNIO-1 task-2] LHvW8CHZR9SrQSWzyyHn0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bc469f0e-6fc8-49e5-8925-d36b5e012d18 +17:00:44.052 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5312473d +17:00:44.053 [XNIO-1 task-2] fSCr3eUGSWqwu6-JBsxJNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7e1a0b96-2d69-4147-bf71-27171626ea97, base path is set to: null +17:00:44.053 [XNIO-1 task-2] fSCr3eUGSWqwu6-JBsxJNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.053 [XNIO-1 task-2] fSCr3eUGSWqwu6-JBsxJNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.053 [XNIO-1 task-2] fSCr3eUGSWqwu6-JBsxJNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7e1a0b96-2d69-4147-bf71-27171626ea97, base path is set to: null +17:00:44.054 [XNIO-1 task-2] fSCr3eUGSWqwu6-JBsxJNA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e1a0b96-2d69-4147-bf71-27171626ea97", "7e1a0b96-2d69-4147-bf71-27171626ea97", clientId) +17:00:44.068 [XNIO-1 task-2] 8FwMnzA8R8ixw0hO1kQSeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.068 [XNIO-1 task-2] 8FwMnzA8R8ixw0hO1kQSeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.068 [XNIO-1 task-2] 8FwMnzA8R8ixw0hO1kQSeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.082 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c5e28be1 +17:00:44.091 [XNIO-1 task-2] RASH14hTSvyBSG368YyX6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.092 [XNIO-1 task-2] RASH14hTSvyBSG368YyX6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.092 [XNIO-1 task-2] RASH14hTSvyBSG368YyX6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.099 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:675f63c9-b37f-4ced-a130-f7000a4eb19c +17:00:44.112 [XNIO-1 task-2] GCJ41z1DSTGldudwOzEnXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.112 [XNIO-1 task-2] GCJ41z1DSTGldudwOzEnXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.112 [XNIO-1 task-2] GCJ41z1DSTGldudwOzEnXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.143 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4a07daaa-c43c-4214-aa8c-6eed8a6d40ba +17:00:44.161 [XNIO-1 task-2] bAR-86c8TuWANK057wo_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.161 [XNIO-1 task-2] bAR-86c8TuWANK057wo_GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.161 [XNIO-1 task-2] bAR-86c8TuWANK057wo_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.161 [XNIO-1 task-2] bAR-86c8TuWANK057wo_GA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.181 [XNIO-1 task-2] oFI2iCS_SZilphW-lOcMkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60a6f09d-699b-400e-85b8-005ef0108195, base path is set to: null +17:00:44.181 [XNIO-1 task-2] oFI2iCS_SZilphW-lOcMkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.181 [XNIO-1 task-2] oFI2iCS_SZilphW-lOcMkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.181 [XNIO-1 task-2] oFI2iCS_SZilphW-lOcMkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60a6f09d-699b-400e-85b8-005ef0108195, base path is set to: null +17:00:44.183 [XNIO-1 task-2] oFI2iCS_SZilphW-lOcMkg DEBUG com.networknt.schema.TypeValidator debug - validate( "60a6f09d-699b-400e-85b8-005ef0108195", "60a6f09d-699b-400e-85b8-005ef0108195", clientId) +17:00:44.190 [XNIO-1 task-2] XxH49LlsQtyT3q2Ts08RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b8c241e9-8509-4c8f-af99-20fb7984575d +17:00:44.190 [XNIO-1 task-2] XxH49LlsQtyT3q2Ts08RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.190 [XNIO-1 task-2] XxH49LlsQtyT3q2Ts08RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.190 [XNIO-1 task-2] XxH49LlsQtyT3q2Ts08RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b8c241e9-8509-4c8f-af99-20fb7984575d +17:00:44.195 [XNIO-1 task-2] dT3epphxR5OMIiDtVhnXSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.195 [XNIO-1 task-2] dT3epphxR5OMIiDtVhnXSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.196 [XNIO-1 task-2] dT3epphxR5OMIiDtVhnXSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.257 [XNIO-1 task-2] P0jePhKkRa64mu0gFuT3HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.257 [XNIO-1 task-2] P0jePhKkRa64mu0gFuT3HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.258 [XNIO-1 task-2] P0jePhKkRa64mu0gFuT3HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.291 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f0869fec-acf7-448d-ac0d-2c19ae514bc5 +17:00:44.295 [XNIO-1 task-2] xtE2VZoWSympjq8J7cfMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/675f63c9-b37f-4ced-a130-f7000a4eb19c, base path is set to: null +17:00:44.297 [XNIO-1 task-2] xtE2VZoWSympjq8J7cfMAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.297 [XNIO-1 task-2] xtE2VZoWSympjq8J7cfMAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.297 [XNIO-1 task-2] xtE2VZoWSympjq8J7cfMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/675f63c9-b37f-4ced-a130-f7000a4eb19c, base path is set to: null +17:00:44.297 [XNIO-1 task-2] xtE2VZoWSympjq8J7cfMAw DEBUG com.networknt.schema.TypeValidator debug - validate( "675f63c9-b37f-4ced-a130-f7000a4eb19c", "675f63c9-b37f-4ced-a130-f7000a4eb19c", clientId) +17:00:44.302 [XNIO-1 task-2] esMtlqPgS027VFtDcGoWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89 +17:00:44.302 [XNIO-1 task-2] esMtlqPgS027VFtDcGoWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.302 [XNIO-1 task-2] esMtlqPgS027VFtDcGoWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.302 [XNIO-1 task-2] esMtlqPgS027VFtDcGoWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89 +17:00:44.326 [XNIO-1 task-2] QnwERlkTQ66-VGQz3HTq1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/675f63c9-b37f-4ced-a130-f7000a4eb19c, base path is set to: null +17:00:44.326 [XNIO-1 task-2] QnwERlkTQ66-VGQz3HTq1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.326 [XNIO-1 task-2] QnwERlkTQ66-VGQz3HTq1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.327 [XNIO-1 task-2] QnwERlkTQ66-VGQz3HTq1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/675f63c9-b37f-4ced-a130-f7000a4eb19c, base path is set to: null +17:00:44.327 [XNIO-1 task-2] QnwERlkTQ66-VGQz3HTq1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "675f63c9-b37f-4ced-a130-f7000a4eb19c", "675f63c9-b37f-4ced-a130-f7000a4eb19c", clientId) +17:00:44.334 [XNIO-1 task-2] i67nD5zfTpCmexIebC-cNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89 +17:00:44.334 [XNIO-1 task-2] i67nD5zfTpCmexIebC-cNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.334 [XNIO-1 task-2] i67nD5zfTpCmexIebC-cNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.334 [XNIO-1 task-2] i67nD5zfTpCmexIebC-cNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8991a2df-9536-4b62-aa6f-f867d6639c89 +17:00:44.348 [XNIO-1 task-2] i67nD5zfTpCmexIebC-cNw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.348 [XNIO-1 task-2] i67nD5zfTpCmexIebC-cNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.353 [XNIO-1 task-2] KO4VXY5eT8yxshe-AiAh4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:44.353 [XNIO-1 task-2] KO4VXY5eT8yxshe-AiAh4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.353 [XNIO-1 task-2] KO4VXY5eT8yxshe-AiAh4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.354 [XNIO-1 task-2] KO4VXY5eT8yxshe-AiAh4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:44.374 [XNIO-1 task-2] KO4VXY5eT8yxshe-AiAh4Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.374 [XNIO-1 task-2] KO4VXY5eT8yxshe-AiAh4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.380 [XNIO-1 task-2] DTsTTjlcQVSdFoRqdEgDNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.380 [XNIO-1 task-2] DTsTTjlcQVSdFoRqdEgDNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.381 [XNIO-1 task-2] DTsTTjlcQVSdFoRqdEgDNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.390 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:53d7522d-bcc7-41c0-9f5a-fc6d78a83317 +17:00:44.430 [XNIO-1 task-2] Q8YDxmaQQMiTet60Rc-d9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1828f5df-246e-4856-a417-13528ad81f94, base path is set to: null +17:00:44.430 [XNIO-1 task-2] Q8YDxmaQQMiTet60Rc-d9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.430 [XNIO-1 task-2] Q8YDxmaQQMiTet60Rc-d9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.430 [XNIO-1 task-2] Q8YDxmaQQMiTet60Rc-d9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1828f5df-246e-4856-a417-13528ad81f94, base path is set to: null +17:00:44.431 [XNIO-1 task-2] Q8YDxmaQQMiTet60Rc-d9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1828f5df-246e-4856-a417-13528ad81f94", "1828f5df-246e-4856-a417-13528ad81f94", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.438 [XNIO-1 task-2] Q8YDxmaQQMiTet60Rc-d9Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/1828f5df-246e-4856-a417-13528ad81f94} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:44.444 [XNIO-1 task-2] XTiDOhRIQS2FJVnXRqFaCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:44.444 [XNIO-1 task-2] XTiDOhRIQS2FJVnXRqFaCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.444 [XNIO-1 task-2] XTiDOhRIQS2FJVnXRqFaCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.444 [XNIO-1 task-2] XTiDOhRIQS2FJVnXRqFaCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:44.445 [XNIO-1 task-2] XTiDOhRIQS2FJVnXRqFaCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", clientId) +17:00:44.448 [XNIO-1 task-2] RP2pETxXTs2qJ3oDwu1wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:44.448 [XNIO-1 task-2] RP2pETxXTs2qJ3oDwu1wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.448 [XNIO-1 task-2] RP2pETxXTs2qJ3oDwu1wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.448 [XNIO-1 task-2] RP2pETxXTs2qJ3oDwu1wdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613 +17:00:44.448 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b42fff8c-7399-4238-802d-ed5469fad613 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:44.455 [XNIO-1 task-2] RP2pETxXTs2qJ3oDwu1wdA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:44.460 [XNIO-1 task-2] Vmxm6tjISgC2jq3fy3MCbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:44.460 [XNIO-1 task-2] Vmxm6tjISgC2jq3fy3MCbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.461 [XNIO-1 task-2] Vmxm6tjISgC2jq3fy3MCbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.461 [XNIO-1 task-2] Vmxm6tjISgC2jq3fy3MCbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b42fff8c-7399-4238-802d-ed5469fad613, base path is set to: null +17:00:44.461 [XNIO-1 task-2] Vmxm6tjISgC2jq3fy3MCbA DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", clientId) +17:00:44.469 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +17:00:44.470 [XNIO-1 task-2] Vmxm6tjISgC2jq3fy3MCbA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.471 [XNIO-1 task-2] Vmxm6tjISgC2jq3fy3MCbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.475 [XNIO-1 task-2] 0WfLxWdwQ1CjdEaYp_mKgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.475 [XNIO-1 task-2] 0WfLxWdwQ1CjdEaYp_mKgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.475 [XNIO-1 task-2] 0WfLxWdwQ1CjdEaYp_mKgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.499 [XNIO-1 task-2] WJb2pydiThWKJRDh0BATJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.499 [XNIO-1 task-2] WJb2pydiThWKJRDh0BATJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.499 [XNIO-1 task-2] WJb2pydiThWKJRDh0BATJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.500 [XNIO-1 task-2] WJb2pydiThWKJRDh0BATJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.516 [XNIO-1 task-2] TX8NABPSQwWTMswnOZ0bBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:44.516 [XNIO-1 task-2] TX8NABPSQwWTMswnOZ0bBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.516 [XNIO-1 task-2] TX8NABPSQwWTMswnOZ0bBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.516 [XNIO-1 task-2] TX8NABPSQwWTMswnOZ0bBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:44.526 [XNIO-1 task-2] RDfjB0-XR-i_dz8-f5jI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.526 [XNIO-1 task-2] RDfjB0-XR-i_dz8-f5jI7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.526 [XNIO-1 task-2] RDfjB0-XR-i_dz8-f5jI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.527 [XNIO-1 task-2] RDfjB0-XR-i_dz8-f5jI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.542 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.542 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.542 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.543 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11667af0-e841-411a-84d8-5e0d08e7","clientDesc":"78140910-cffb-401a-918f-b51b1f00e392","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.544 [XNIO-1 task-2] t8lihum3QJiaU8bjbzbSdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.549 [XNIO-1 task-2] MB7iDcG9TaGM-KoxcBuxmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.549 [XNIO-1 task-2] MB7iDcG9TaGM-KoxcBuxmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.549 [XNIO-1 task-2] MB7iDcG9TaGM-KoxcBuxmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.552 [XNIO-1 task-2] MB7iDcG9TaGM-KoxcBuxmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.564 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c5c93bf1 +17:00:44.569 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.569 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "94757900-6f73-4e3f-b76e-812f39ffe2a7", {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ff3bbc4b-143f-494d-a14d-c937c878", {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:44.570 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.571 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ff3bbc4b-143f-494d-a14d-c937c878","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.571 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.571 [XNIO-1 task-2] fip5HptJQA-wHyoMQGx3dQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:44.574 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.576 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.577 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.577 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.577 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.577 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.577 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.578 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:44.578 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:44.578 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.578 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.578 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a48cce5d-2c22-4838-bf2d-d4bc954b","clientDesc":"e3ae8cab-7dca-482e-8cdd-25b1e1098075","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.578 [XNIO-1 task-2] J0Q3a34hTwez4IEb6AyI8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.591 [XNIO-1 task-2] 5ra94E27QZKwTuz0ATg7Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:44.591 [XNIO-1 task-2] 5ra94E27QZKwTuz0ATg7Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.591 [XNIO-1 task-2] 5ra94E27QZKwTuz0ATg7Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.592 [XNIO-1 task-2] 5ra94E27QZKwTuz0ATg7Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:44.599 [XNIO-1 task-2] 5ra94E27QZKwTuz0ATg7Tw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.600 [XNIO-1 task-2] 5ra94E27QZKwTuz0ATg7Tw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.604 [XNIO-1 task-2] 5-DRjyFWT26B5FzZuffgBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.604 [XNIO-1 task-2] 5-DRjyFWT26B5FzZuffgBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.604 [XNIO-1 task-2] 5-DRjyFWT26B5FzZuffgBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.613 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:20d15b62-aec6-4b59-be1b-fedb345fb4c0 +17:00:44.615 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a1465cf6-eed6-4b0c-8104-57143f72736c +17:00:44.641 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.643 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.644 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.644 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.645 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03f142f4-2406-4331-a27c-84adf803","clientDesc":"a0580296-cb82-421d-bb25-98011b55b529","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.649 [XNIO-1 task-2] 2EFLkNF0RlO8IBFhaGNIcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.655 [XNIO-1 task-2] nM0pY531RSK3CYQB_YzU5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.655 [XNIO-1 task-2] nM0pY531RSK3CYQB_YzU5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.655 [XNIO-1 task-2] nM0pY531RSK3CYQB_YzU5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.656 [XNIO-1 task-2] nM0pY531RSK3CYQB_YzU5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.690 [XNIO-1 task-2] X2oAjMQcTdG9kRSzRefxSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.690 [XNIO-1 task-2] X2oAjMQcTdG9kRSzRefxSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.690 [XNIO-1 task-2] X2oAjMQcTdG9kRSzRefxSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.729 [XNIO-1 task-2] o9Gnv1jWSMaYmEnpAYmA1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.729 [XNIO-1 task-2] o9Gnv1jWSMaYmEnpAYmA1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.730 [XNIO-1 task-2] o9Gnv1jWSMaYmEnpAYmA1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.730 [XNIO-1 task-2] o9Gnv1jWSMaYmEnpAYmA1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.753 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.753 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.753 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.754 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.754 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:44.754 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG com.networknt.schema.TypeValidator debug - validate( "956d4053-43c3-48ce-b06e-2edc461b2666", {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:44.754 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:44.754 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:44.754 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1290d08d-8b21-4989-8eca-c41fa9c5", {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:44.755 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.755 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1290d08d-8b21-4989-8eca-c41fa9c5","clientDesc":"956d4053-43c3-48ce-b06e-2edc461b2666","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.755 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.755 [XNIO-1 task-2] Q7dLs4JgRcqxLri1tQNVFg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:44.763 [XNIO-1 task-2] qL6k8XX1SrGIh_BqJJy1VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.763 [XNIO-1 task-2] qL6k8XX1SrGIh_BqJJy1VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.763 [XNIO-1 task-2] qL6k8XX1SrGIh_BqJJy1VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.764 [XNIO-1 task-2] qL6k8XX1SrGIh_BqJJy1VA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.783 [XNIO-1 task-2] JWgzXEIaS2mzMiFs7bNruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.784 [XNIO-1 task-2] JWgzXEIaS2mzMiFs7bNruA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.784 [XNIO-1 task-2] JWgzXEIaS2mzMiFs7bNruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.784 [XNIO-1 task-2] JWgzXEIaS2mzMiFs7bNruA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.805 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.806 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.806 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.807 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e3c5c56d-ae25-43b9-86e9-e50537af","clientDesc":"634601d9-b2e5-4dbb-951b-61801092da60","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.808 [XNIO-1 task-2] p5x48BFTSL-V7V6yku10FA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:44.810 [XNIO-1 task-2] snftHzsxTL-fJbsmrA9eXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.810 [XNIO-1 task-2] snftHzsxTL-fJbsmrA9eXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.811 [XNIO-1 task-2] snftHzsxTL-fJbsmrA9eXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.811 [XNIO-1 task-2] snftHzsxTL-fJbsmrA9eXg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.826 [XNIO-1 task-2] j3-_ey3NQ4K0Yuv_qbdaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.826 [XNIO-1 task-2] j3-_ey3NQ4K0Yuv_qbdaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.826 [XNIO-1 task-2] j3-_ey3NQ4K0Yuv_qbdaVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.826 [XNIO-1 task-2] j3-_ey3NQ4K0Yuv_qbdaVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.844 [XNIO-1 task-2] qwwrzz2SRlKMIMH2WvDUKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.844 [XNIO-1 task-2] qwwrzz2SRlKMIMH2WvDUKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.845 [XNIO-1 task-2] qwwrzz2SRlKMIMH2WvDUKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.845 [XNIO-1 task-2] qwwrzz2SRlKMIMH2WvDUKA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.863 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.863 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.863 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "90701768-831b-47ea-ad24-51dbcecabcb1", {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd6966bd-38c2-4dfe-8087-1a46e24e", {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bd6966bd-38c2-4dfe-8087-1a46e24e","clientDesc":"90701768-831b-47ea-ad24-51dbcecabcb1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.864 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:44.865 [XNIO-1 task-2] pwrgBzcgSl2pKpW6dkkBRQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:44.870 [XNIO-1 task-2] E1vkdXxVQMu4mey6VajR7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b8c241e9-8509-4c8f-af99-20fb7984575d, base path is set to: null +17:00:44.870 [XNIO-1 task-2] E1vkdXxVQMu4mey6VajR7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.870 [XNIO-1 task-2] E1vkdXxVQMu4mey6VajR7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.870 [XNIO-1 task-2] E1vkdXxVQMu4mey6VajR7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b8c241e9-8509-4c8f-af99-20fb7984575d, base path is set to: null +17:00:44.870 [XNIO-1 task-2] E1vkdXxVQMu4mey6VajR7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b8c241e9-8509-4c8f-af99-20fb7984575d", "b8c241e9-8509-4c8f-af99-20fb7984575d", clientId) +17:00:44.885 [XNIO-1 task-2] gqkSHSmvSKOkrKuKHanAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/675f63c9-b37f-4ced-a130-f7000a4eb19c +17:00:44.885 [XNIO-1 task-2] gqkSHSmvSKOkrKuKHanAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.885 [XNIO-1 task-2] gqkSHSmvSKOkrKuKHanAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.886 [XNIO-1 task-2] gqkSHSmvSKOkrKuKHanAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/675f63c9-b37f-4ced-a130-f7000a4eb19c +17:00:44.890 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:675f63c9-b37f-4ced-a130-f7000a4eb19c +17:00:44.901 [XNIO-1 task-2] RsoWM70DRJ6SRw2zUXQtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.901 [XNIO-1 task-2] RsoWM70DRJ6SRw2zUXQtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.901 [XNIO-1 task-2] RsoWM70DRJ6SRw2zUXQtxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.923 [XNIO-1 task-2] Qgxw-sJvToeVOzPmL6s1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:44.923 [XNIO-1 task-2] Qgxw-sJvToeVOzPmL6s1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.923 [XNIO-1 task-2] Qgxw-sJvToeVOzPmL6s1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.924 [XNIO-1 task-2] Qgxw-sJvToeVOzPmL6s1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:44.928 [XNIO-1 task-2] 80uWWTxlReO2d2NY3gNwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.928 [XNIO-1 task-2] 80uWWTxlReO2d2NY3gNwHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.928 [XNIO-1 task-2] 80uWWTxlReO2d2NY3gNwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.934 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:934b067a-71d9-40a7-96ef-b13ff011220c +17:00:44.935 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:934b067a-71d9-40a7-96ef-b13ff011220c +17:00:44.939 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:84caab1b-5e89-44bd-99ad-62c41e39352b +17:00:44.945 [XNIO-1 task-2] UB-8ZvJhQJe9coA27mKEfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.945 [XNIO-1 task-2] UB-8ZvJhQJe9coA27mKEfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.945 [XNIO-1 task-2] UB-8ZvJhQJe9coA27mKEfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.946 [XNIO-1 task-2] UB-8ZvJhQJe9coA27mKEfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.969 [XNIO-1 task-2] QT5l1yx5QwacCcpUlmaMVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f5588ce2-4135-4089-a47f-a9d4e7cbffb4 +17:00:44.969 [XNIO-1 task-2] QT5l1yx5QwacCcpUlmaMVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:44.969 [XNIO-1 task-2] QT5l1yx5QwacCcpUlmaMVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:44.969 [XNIO-1 task-2] QT5l1yx5QwacCcpUlmaMVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f5588ce2-4135-4089-a47f-a9d4e7cbffb4 +17:00:44.975 [XNIO-1 task-2] xGc-EDrERD6oRFygh71ObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1828f5df-246e-4856-a417-13528ad81f94, base path is set to: null +17:00:44.975 [XNIO-1 task-2] xGc-EDrERD6oRFygh71ObQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.975 [XNIO-1 task-2] xGc-EDrERD6oRFygh71ObQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +17:00:44.975 [XNIO-1 task-2] xGc-EDrERD6oRFygh71ObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1828f5df-246e-4856-a417-13528ad81f94, base path is set to: null +17:00:44.976 [XNIO-1 task-2] xGc-EDrERD6oRFygh71ObQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1828f5df-246e-4856-a417-13528ad81f94", "1828f5df-246e-4856-a417-13528ad81f94", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.984 [XNIO-1 task-2] xGc-EDrERD6oRFygh71ObQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/1828f5df-246e-4856-a417-13528ad81f94} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:44.986 [XNIO-1 task-2] nUjLZBsrQmqOspIbjVU0bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:44.986 [XNIO-1 task-2] nUjLZBsrQmqOspIbjVU0bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:44.987 [XNIO-1 task-2] nUjLZBsrQmqOspIbjVU0bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.023 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.024 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:45.024 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.024 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.025 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ebb0d130-3489-445c-b698-6f3f24f7","clientDesc":"94757900-6f73-4e3f-b76e-812f39ffe2a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:45.026 [XNIO-1 task-2] nL1vcTWCRV2d2hQhg5uAFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +17:00:45.030 [XNIO-1 task-2] Wvxis5_yS6ODR_D-apSSWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.031 [XNIO-1 task-2] Wvxis5_yS6ODR_D-apSSWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.031 [XNIO-1 task-2] Wvxis5_yS6ODR_D-apSSWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.049 [XNIO-1 task-2] K2aFoI5hSbiPTdZrlhjeew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.049 [XNIO-1 task-2] K2aFoI5hSbiPTdZrlhjeew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.049 [XNIO-1 task-2] K2aFoI5hSbiPTdZrlhjeew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.050 [XNIO-1 task-2] K2aFoI5hSbiPTdZrlhjeew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.069 [XNIO-1 task-2] uEDr9OIkT6C1X4FN800kaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.069 [XNIO-1 task-2] uEDr9OIkT6C1X4FN800kaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.069 [XNIO-1 task-2] uEDr9OIkT6C1X4FN800kaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.069 [XNIO-1 task-2] uEDr9OIkT6C1X4FN800kaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.103 [XNIO-1 task-2] jLD9dUzKQk6IteghT_XLpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.103 [XNIO-1 task-2] jLD9dUzKQk6IteghT_XLpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.104 [XNIO-1 task-2] jLD9dUzKQk6IteghT_XLpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.111 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5e1c698b-3cae-4286-90a7-ac9e9422bb9d +17:00:45.111 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1c2420c2-2714-40c9-8570-1948ba1b5469 +17:00:45.112 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1c2420c2-2714-40c9-8570-1948ba1b5469 +17:00:45.122 [XNIO-1 task-2] KzirRa8mQuOs2X9Td-8a4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.123 [XNIO-1 task-2] KzirRa8mQuOs2X9Td-8a4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.123 [XNIO-1 task-2] KzirRa8mQuOs2X9Td-8a4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.145 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b09c320-99fb-4f95-a8fa-8c8c5795f819 +17:00:45.147 [XNIO-1 task-2] mho2MlAsQh2ZovVqL2ANcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.147 [XNIO-1 task-2] mho2MlAsQh2ZovVqL2ANcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.147 [XNIO-1 task-2] mho2MlAsQh2ZovVqL2ANcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.148 [XNIO-1 task-2] mho2MlAsQh2ZovVqL2ANcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.168 [XNIO-1 task-2] jDt1fe-AQ8e5_MRgrxRVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/64b7b8dd-9753-480a-b61b-63af988ba826 +17:00:45.168 [XNIO-1 task-2] jDt1fe-AQ8e5_MRgrxRVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.168 [XNIO-1 task-2] jDt1fe-AQ8e5_MRgrxRVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +17:00:45.168 [XNIO-1 task-2] jDt1fe-AQ8e5_MRgrxRVpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/64b7b8dd-9753-480a-b61b-63af988ba826 +17:00:45.175 [XNIO-1 task-2] LMSpTGrRQd-IywPIfBGI5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.175 [XNIO-1 task-2] LMSpTGrRQd-IywPIfBGI5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:45.175 [XNIO-1 task-2] LMSpTGrRQd-IywPIfBGI5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.201 [XNIO-1 task-2] PaBrEqTXQfKXl6Ax_9gttQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.202 [XNIO-1 task-2] PaBrEqTXQfKXl6Ax_9gttQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:45.202 [XNIO-1 task-2] PaBrEqTXQfKXl6Ax_9gttQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.202 [XNIO-1 task-2] PaBrEqTXQfKXl6Ax_9gttQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.219 [XNIO-1 task-2] 7sxHNGzKSumnJFLZtGqlFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.219 [XNIO-1 task-2] 7sxHNGzKSumnJFLZtGqlFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:45.220 [XNIO-1 task-2] 7sxHNGzKSumnJFLZtGqlFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.220 [XNIO-1 task-2] 7sxHNGzKSumnJFLZtGqlFw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.236 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.236 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +17:00:45.237 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.237 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +17:00:45.237 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +17:00:45.237 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bef22d01-5f08-4d2b-923e-6acee330","clientDesc":"8d2906dc-ceff-440e-8f9b-415905bc78ca","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.238 [XNIO-1 task-2] XpTcd-gvRcWtWf6oDUDcbw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: +java.lang.NullPointerException: Null key is not allowed! + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) diff --git a/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-code-1.log b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..b4ced10 --- /dev/null +++ b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2845 @@ +17:00:40.585 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:40.585 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.586 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", client_id) +17:00:40.587 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:40.587 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:40.587 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:40.588 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:40.588 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:40.595 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8f7aa525 +17:00:40.602 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.602 [XNIO-1 task-1] K1MKNJ0pSMWOGk3FZqTr7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:40.610 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.610 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:40.610 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.611 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG com.networknt.schema.TypeValidator debug - validate( "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", "f14622fe-8cd8-40a4-abc0-9f41e1b8bfdc", client_id) +17:00:40.613 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:40.614 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:40.614 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:40.614 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:40.617 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:40.622 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.622 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.623 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.625 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", client_id) +17:00:40.626 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.626 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.626 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.626 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:40.626 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.627 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.627 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:40.629 [XNIO-1 task-1] wpZoIjANR_21s1Qk3kCoHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vBipAkO1TR2AtTOnWAE_cA +17:00:40.634 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.634 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.634 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.634 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.634 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.635 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.635 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.636 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.636 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.637 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:40.639 [XNIO-1 task-2] bI5sDQP6R3GRWGCKY32Sag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PFJzNyyxSYCzeAtV5NMZag +17:00:40.659 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.659 [XNIO-1 task-1] pBJMHFxnQbiDKGcWKhYtUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:40.701 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.701 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:40.702 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.702 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG com.networknt.schema.TypeValidator debug - validate( "JC3_6kbagEF14TmKYbd63UsWZUGFZamD7o_PnCDFs3A", "JC3_6kbagEF14TmKYbd63UsWZUGFZamD7o_PnCDFs3A", code_challenge) +17:00:40.703 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:40.703 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:40.704 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:40.704 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:40.704 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:40.705 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:40.716 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.716 [XNIO-1 task-1] 9a3Yh0i5QUWTYY-3s3xWRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:40.723 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.724 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:40.724 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:40.725 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG com.networknt.schema.TypeValidator debug - validate( "QRmIHYBva5Er1dMOMAoouIn9N569xoqVfdzCiVdS9Is", "QRmIHYBva5Er1dMOMAoouIn9N569xoqVfdzCiVdS9Is", code_challenge) +17:00:40.731 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:40.732 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:40.733 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:40.733 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:40.733 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:40.734 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:40.741 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.741 [XNIO-1 task-1] u-6HVclMTgWgA_KGxPmSqg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:40.791 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4ba0bce4 +17:00:40.793 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4ba0bce4 +17:00:40.845 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.846 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.846 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.847 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", client_id) +17:00:40.847 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.848 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.848 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.848 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.849 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:40.858 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:40.859 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:40.861 [XNIO-1 task-1] L4ru5P_oQ_SCpRiysxXzcQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SErU0TfnSn69bd4fzyUaHQ +17:00:40.868 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.868 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.868 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.869 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", client_id) +17:00:40.872 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.872 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.872 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.873 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.873 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:40.888 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:40.888 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:40.897 [XNIO-1 task-1] WX_cEAAvQjuUmw6LwEr7_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Zmkuf0SxQ4O6DNQ2sz2mrw +17:00:40.902 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.902 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.902 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.903 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:40.903 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.904 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.904 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.904 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.909 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:878e15af-1b81-4c3f-b32e-a223017b2aa2 +17:00:40.909 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:40.914 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:878e15af-1b81-4c3f-b32e-a223017b2aa2 +17:00:40.917 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.917 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:40.926 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.926 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.926 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.927 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.927 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.928 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.928 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.928 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:40.939 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:40.939 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:40.940 [XNIO-1 task-2] SJ5tvv2hRhiKccZtZOKS8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5iUPeMjiTeSwhNgBbPRd2w +17:00:40.945 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.945 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.945 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.946 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.946 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.948 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.948 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.949 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:40.962 [XNIO-1 task-1] Bn-yixQLR7qv4zM2dh45hw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rtBUaKdKQhmOpCLz5SlSeg +17:00:40.968 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.969 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:40.969 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:40.969 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.970 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:40.971 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:40.972 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:40.973 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:40.973 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:40.973 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:40.974 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:40.984 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:40.984 [XNIO-1 task-1] 4UCwf-E7Rdu-lyPA_tg-ug DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:40.989 [XNIO-1 task-2] hdLwomScRuq7qF07-w464w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=K_K3BobPScycCqRW_6U_0g +17:00:41.000 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.001 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.001 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.002 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG com.networknt.schema.TypeValidator debug - validate( "kqaZIz_6kMExr_6YAk1Ho6iaOz9V_R48dlQU6Q9pvQI", "kqaZIz_6kMExr_6YAk1Ho6iaOz9V_R48dlQU6Q9pvQI", code_challenge) +17:00:41.003 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:41.003 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.003 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.004 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.004 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.004 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.017 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.018 [XNIO-1 task-1] oaWZBdA2Q_mJ_Haup2Jviw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.040 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.040 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.041 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.041 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", client_id) +17:00:41.042 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.042 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.043 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.043 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.043 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.052 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.053 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.057 [XNIO-1 task-1] IdD9nribStWQVaNydPpFbQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0xppDO5DT0abmZNf1zTRhw +17:00:41.067 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4ba0bce4 +17:00:41.075 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.095 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.095 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.096 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "BNl6tE0vLVVSxdiUfB1OwahxwykdBAxKYj8Jd0CNAZg", "BNl6tE0vLVVSxdiUfB1OwahxwykdBAxKYj8Jd0CNAZg", code_challenge) +17:00:41.096 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:41.096 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.097 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.115 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.132 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.148 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.148 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.148 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.149 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", client_id) +17:00:41.149 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.149 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.149 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:375ea7c0 +17:00:41.150 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.150 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.150 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.151 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.157 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.157 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.158 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.158 [XNIO-1 task-1] c_UpjvEtR8K_JCBvHMN4Mg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qLtSQPLOSX29D2wUUk8wug +17:00:41.165 [XNIO-1 task-2] 7uBiVBMFQgixgtmf-A363w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=EEg838y4TFC7rJxd5fHpMA +17:00:41.179 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.179 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.179 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.180 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:41.181 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:41.181 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:41.181 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:41.181 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:41.190 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:41.191 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:41.198 [XNIO-1 task-2] _3p7xrvRTTCVWO7QJBYyvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9Hp3HxznRHeDtT9pftCXEA +17:00:41.202 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.202 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.202 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.203 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:41.204 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:41.205 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:41.205 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:41.205 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:41.220 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:41.220 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:41.260 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:375ea7c0 +17:00:41.280 [XNIO-1 task-2] A3ufE_CIQUSXO7FXU2vA6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tTPpkH7NT8CyUpMYXfXsvQ +17:00:41.310 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.311 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.311 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.312 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:41.312 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:41.313 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:41.313 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:41.313 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:41.313 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:41.320 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:41.321 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:41.334 [XNIO-1 task-2] HcRwJZcrTYmTHDjjQIhgoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MRUtEQUqTemGtog3j4oliw +17:00:41.345 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.345 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.345 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.346 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:41.347 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:41.347 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:41.347 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:41.348 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:41.360 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:deead4dd-b5cf-4025-b939-5079ba049516 +17:00:41.378 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.378 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.378 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.379 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", client_id) +17:00:41.380 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.380 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.386 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.391 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:41.391 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.391 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.401 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.401 [XNIO-1 task-2] CrnmCWmERyOD-Bmgf__YyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.405 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.405 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.408 [XNIO-1 task-1] EnKK3O2_SKOFWVF4PO17zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WdOHxO1MQuqLHlugBx9few +17:00:41.417 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.417 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.418 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.418 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:41.420 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.421 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.421 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:40596890-d969-466f-b235-b056c87dd4c5 +17:00:41.421 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.421 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.422 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.430 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.430 [XNIO-1 task-1] nEi8sbxjR069e6ZBYZc8lw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.522 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.523 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.523 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.523 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "1a606664-5776-4952-b713-a982dcb54ddd", "1a606664-5776-4952-b713-a982dcb54ddd", client_id) +17:00:41.524 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.525 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.525 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.525 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.525 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.549 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.549 [XNIO-1 task-1] RrBEG99jTyu3zusstD-9Wg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.563 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.564 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.564 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.564 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "8991a2df-9536-4b62-aa6f-f867d6639c89", "8991a2df-9536-4b62-aa6f-f867d6639c89", client_id) +17:00:41.565 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.565 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.565 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.565 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.568 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.579 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.579 [XNIO-1 task-1] kBzjgOkZQneXQzDOGpV9Ew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.586 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.586 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.587 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.587 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG com.networknt.schema.TypeValidator debug - validate( "8991a2df-9536-4b62-aa6f-f867d6639c89", "8991a2df-9536-4b62-aa6f-f867d6639c89", client_id) +17:00:41.588 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.588 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.589 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.589 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.589 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.595 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.595 [XNIO-1 task-1] 7gGoDnz4TK-n-oADkIvxoA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.748 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.749 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.749 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.749 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8991a2df-9536-4b62-aa6f-f867d6639c89", "8991a2df-9536-4b62-aa6f-f867d6639c89", client_id) +17:00:41.751 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.751 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.752 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.752 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.752 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.763 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.763 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.768 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.768 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.768 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:41.769 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:41.769 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:41.769 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:41.770 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:41.770 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:41.770 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:41.770 [XNIO-1 task-1] 8Cxm3I7rSTmdh4pDoMd7NQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_bfOJn9JRBK5s3S-RQlxgA +17:00:41.779 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:41.779 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:41.784 [XNIO-1 task-2] 7Q-GpBpPTC6ITyqq7EDQKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qF_MORLSQMK2tYaOeL3a3w +17:00:41.821 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3cc178c3-5927-4418-b0f6-c1ca9e10c441 +17:00:41.838 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.839 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.839 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.840 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:41.840 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.841 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.841 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.841 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.842 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.852 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.852 [XNIO-1 task-2] 35hDQ7GISA2hyZUhZIN-Tg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.858 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.859 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.859 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.860 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:41.865 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.868 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.868 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.869 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.869 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.875 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.876 [XNIO-1 task-2] fUh6UZHQQkmzI9mWHAUtMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.889 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.889 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.889 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.889 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:41.892 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.892 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.893 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.893 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.893 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.903 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.903 [XNIO-1 task-2] B4jazE8ySD6_s8DD6kPA7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.960 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.960 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.960 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.961 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG com.networknt.schema.TypeValidator debug - validate( "nj9cRB1pPOmpxKyxyMSMF6O-H6S9Dfon1SHCQIT6crQ", "nj9cRB1pPOmpxKyxyMSMF6O-H6S9Dfon1SHCQIT6crQ", code_challenge) +17:00:41.961 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:41.961 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.962 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.962 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.962 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.962 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.972 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.972 [XNIO-1 task-2] i3MVSK2IRKOQ0X8y12kLJw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:41.979 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.979 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:41.980 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:41.980 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG com.networknt.schema.TypeValidator debug - validate( "cB3ao_fixLTaVQqGUaM-3okMfpqUXQNLcrF7ln4X22E", "cB3ao_fixLTaVQqGUaM-3okMfpqUXQNLcrF7ln4X22E", code_challenge) +17:00:41.981 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:41.981 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:41.981 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:41.984 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:41.984 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:41.984 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:41.999 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:41.999 [XNIO-1 task-2] Ll_nY0RvTpKDSjjZ8FOeMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.006 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.007 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.007 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.008 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:42.008 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.008 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.009 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.009 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.009 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.018 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.018 [XNIO-1 task-2] O_t9f5wlTj-RmxBIxxIQgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.048 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.050 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.050 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.050 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG com.networknt.schema.TypeValidator debug - validate( "AG8iD4IFNcrtAb6_9JeZ_BSQhbbf2tBnRO5vvbv9FQA", "AG8iD4IFNcrtAb6_9JeZ_BSQhbbf2tBnRO5vvbv9FQA", code_challenge) +17:00:42.051 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.051 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.051 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.052 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.052 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.052 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.056 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.056 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.057 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.057 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:91e4d991-1c96-4c2b-82a2-a31da96d1ce5 +17:00:42.058 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.058 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.058 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.058 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.058 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.060 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.060 [XNIO-1 task-2] wGTbA3WbRT2Ts9wIxeAh9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.065 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.065 [XNIO-1 task-1] bIvHzAVORLmSmwRzlebYQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.089 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.090 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.090 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.090 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "24xOniVfvHC2G7b_ypolxJW3d7HlvJv13f52axhCVX8", "24xOniVfvHC2G7b_ypolxJW3d7HlvJv13f52axhCVX8", code_challenge) +17:00:42.091 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.091 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.091 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.092 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.092 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.092 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.097 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:91e4d991-1c96-4c2b-82a2-a31da96d1ce5 +17:00:42.101 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.102 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.110 [XNIO-1 task-2] AzOzs5J0SK2EyWylb1g_HQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RStyyGM5StSgto1xS4zo_g +17:00:42.167 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.167 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.167 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.168 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1a606664-5776-4952-b713-a982dcb54ddd", "1a606664-5776-4952-b713-a982dcb54ddd", client_id) +17:00:42.168 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.169 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.169 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.169 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.169 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.176 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:263cdb6e-cab4-4641-b155-38bf4ed3c19d +17:00:42.178 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:263cdb6e-cab4-4641-b155-38bf4ed3c19d +17:00:42.179 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.184 [XNIO-1 task-2] j9f4rPdXRhqbMMc88NAIvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.200 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.200 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.200 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.201 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG com.networknt.schema.TypeValidator debug - validate( "gL1Wg9BPufRPFUgxNmcDJ_ZqJofRQwfQQ_uqWWZ9y7A", "gL1Wg9BPufRPFUgxNmcDJ_ZqJofRQwfQQ_uqWWZ9y7A", code_challenge) +17:00:42.201 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.202 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.202 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.204 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.204 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.204 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.212 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.217 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.220 [XNIO-1 task-2] GmKEyIidSyuvSBAl1wG2qA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-Xsrzy8cTcu6mk2Hc1Yhlg +17:00:42.261 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.262 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.262 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.262 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:42.263 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.263 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.263 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.263 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.263 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.272 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.272 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.293 [XNIO-1 task-2] ZwR-3NN9QuiBBPU4i9Y88A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zyBq8uJ2TSKFzxuB4kPGPg +17:00:42.293 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ef8c432 +17:00:42.325 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.326 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.326 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.327 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.327 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.329 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.329 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.329 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.339 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:91e4d991-1c96-4c2b-82a2-a31da96d1ce5 +17:00:42.340 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.340 [XNIO-1 task-2] yeJr5V4bRqqAETApB0flbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.351 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.352 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.352 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.353 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:42.353 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.354 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.354 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.354 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.355 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.369 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.370 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.371 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.371 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.372 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.372 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:42.372 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.373 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.373 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.373 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.373 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.374 [XNIO-1 task-2] xYC35EahRtiwGoS0dpMLyg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lxagUx67QaC5umVp3mKoVQ +17:00:42.384 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.384 [XNIO-1 task-1] S9_HiMf1QfGWb6tn1LD9WQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.393 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.394 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.394 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.394 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG com.networknt.schema.TypeValidator debug - validate( "hh8hqna3fBx42hcy7XVcQ72UphtUG0ysYjRsnyHuEIo", "hh8hqna3fBx42hcy7XVcQ72UphtUG0ysYjRsnyHuEIo", code_challenge) +17:00:42.395 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.395 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.395 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.395 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.396 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.396 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.402 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.402 [XNIO-1 task-1] 2J3uZBg3S7OfF6yzfu4m0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.411 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.411 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.412 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.412 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "F5VwPaT8YTCWUoXaUDzxf7Z4nIW16bUpgZAPhhxPD3Q", "F5VwPaT8YTCWUoXaUDzxf7Z4nIW16bUpgZAPhhxPD3Q", code_challenge) +17:00:42.413 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.413 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.413 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.414 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.414 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.415 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.439 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.439 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.446 [XNIO-1 task-1] hisncTWNRWKVT2ju2BlF9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XFz8xIUWQf6Q0WWby5EzFA +17:00:42.485 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.486 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.486 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.486 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.487 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.487 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.487 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.487 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.494 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.494 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.503 [XNIO-1 task-1] cGc4cOK6SciYzlFyseP_xA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9e_NeuxXTjycfPjuhV4lzA +17:00:42.504 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.504 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.505 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.505 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", client_id) +17:00:42.506 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.506 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.506 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.507 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.507 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.507 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.507 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.508 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.508 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:42.508 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.508 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.509 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.509 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.509 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.515 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.515 [XNIO-1 task-1] 3Jav0AQhSFWnbRUYG-i9Uw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.517 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.517 [XNIO-1 task-2] oh_RlU9tRIydrwfzBcqw0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.525 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.525 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.525 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.526 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:42.526 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.527 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.527 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.527 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.528 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.546 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.546 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.549 [XNIO-1 task-1] A4EzQFfqR-CQetVJxQdmQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4x1ZJbHvSx6F5OJHfsw0fQ +17:00:42.553 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.553 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.553 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.554 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8991a2df-9536-4b62-aa6f-f867d6639c89", "8991a2df-9536-4b62-aa6f-f867d6639c89", client_id) +17:00:42.554 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.554 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.554 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.555 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.555 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.563 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.563 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.564 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.564 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.564 [XNIO-1 task-1] nFYNZaZxQIGTSWT52Wb72Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.564 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:42.565 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.565 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.565 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.566 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.566 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.613 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.613 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.617 [XNIO-1 task-2] 6U-fHzI9QEiMuoiKLFv0zQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3LVdFeuvSLS1pgNIIperZw +17:00:42.622 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.622 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.623 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.623 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.623 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.626 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.626 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.626 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.635 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.635 [XNIO-1 task-2] QAgbnbz7SnmHg8l00WI1_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.636 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5d5414f8-36f7-47e5-bbef-392069ecede6 +17:00:42.639 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5d5414f8-36f7-47e5-bbef-392069ecede6 +17:00:42.641 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.643 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.643 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.643 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:42.650 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.650 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.651 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.651 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.651 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.660 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.661 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.663 [XNIO-1 task-2] Zq_nTL1IRyGL1eXvea7ELg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LKtAa_rnQzarKLq4ytXZeg +17:00:42.668 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.668 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.669 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.669 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.670 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.670 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.670 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.670 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.671 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.672 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.672 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.673 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Uyk5YrrHSNQCVNEkGOlW_FqPu5oVcZ6Fk9vQHGEU46w", "Uyk5YrrHSNQCVNEkGOlW_FqPu5oVcZ6Fk9vQHGEU46w", code_challenge) +17:00:42.673 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.673 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.673 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.674 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.674 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.674 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.682 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.682 [XNIO-1 task-2] I2Z0QgoqThuZkQQTQ4gp8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.685 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.685 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.686 [XNIO-1 task-1] 1070wc-ATE2FoOdlE6pUxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ja9r_8XrRHyL_gauGlZ6EA +17:00:42.692 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.692 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.692 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.693 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:42.693 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.693 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.694 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.694 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.694 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.694 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.694 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.694 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.694 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:42.694 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.695 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.695 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.695 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.698 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.708 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.708 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.710 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.710 [XNIO-1 task-1] vHK9bzx1QSiq71UnAMkpNw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.723 [XNIO-1 task-2] 8ReEDQpcTR2yhy8TsF4lQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pia_UFPCRZe1vWPzqbuOMw +17:00:42.729 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.729 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.730 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.732 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:42.732 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.732 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.732 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.733 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.733 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.739 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:42.739 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:42.742 [XNIO-1 task-2] yQelaikVQNaedc6VwX1xHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=K6IcoR-ySRaO0jSE9WJ7eA +17:00:42.756 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.756 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.756 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:42.757 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:42.757 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:42.758 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:42.758 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:42.758 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:42.758 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f3a190c3-1969-4160-b306-5ca93039e677 +Jun 28, 2024 5:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +17:00:42.769 [XNIO-1 task-2] VSCGfMbERD-pqpJZdKpxJw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4CY2Krv6TNKFI6a_DEidGA +17:00:42.773 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:42.800 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.801 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.802 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.802 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG com.networknt.schema.TypeValidator debug - validate( "_dJJeOW0OeQgoSh5d8KMoHCRdWPSLy8nEKDoM5vFVUg", "_dJJeOW0OeQgoSh5d8KMoHCRdWPSLy8nEKDoM5vFVUg", code_challenge) +17:00:42.803 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.803 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.803 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.803 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.804 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.804 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.815 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.815 [XNIO-1 task-2] ZwpD1KujSzKlVvwu_jbYBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.826 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.826 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.827 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.827 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "nkm80jOdyyNRIYzTlDsLV1_WcpCaKY9QMrgcBsWuqtM", "nkm80jOdyyNRIYzTlDsLV1_WcpCaKY9QMrgcBsWuqtM", code_challenge) +17:00:42.827 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.829 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.829 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.829 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.829 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.829 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.837 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.837 [XNIO-1 task-2] YdnlYqMFRn6MvNF544TfcQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.905 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.905 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:42.906 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:42.906 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG com.networknt.schema.TypeValidator debug - validate( "_D9b-i-NZsLJqM_4oVNdwhK6LsJ-susDpbI5NgFn-nw", "_D9b-i-NZsLJqM_4oVNdwhK6LsJ-susDpbI5NgFn-nw", code_challenge) +17:00:42.907 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:42.908 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:42.908 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:42.908 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:42.908 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:42.908 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:42.916 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:42.916 [XNIO-1 task-2] e22TtkdKTEeGlVyKNW2jUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:42.998 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ab415b47-273f-47c8-ab67-37325918136e +17:00:43.000 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ab415b47-273f-47c8-ab67-37325918136e +17:00:43.007 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.007 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.008 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.008 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:43.008 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.009 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.009 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.009 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.009 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.023 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.024 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.027 [XNIO-1 task-2] 2MXtMspOReu22iSL9LU2LQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bwZ3uW79RpW4nsifk3FoYQ +17:00:43.110 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.110 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.110 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.111 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:43.111 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.111 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.111 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.112 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.112 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.117 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.117 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.117 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.118 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Nz2MCSy-qG6rQPpNEZNH9PkWMVp-WLTC_sz8cOGuumY", "Nz2MCSy-qG6rQPpNEZNH9PkWMVp-WLTC_sz8cOGuumY", code_challenge) +17:00:43.118 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.118 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:43.118 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.118 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.119 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.119 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.119 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.125 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.125 [XNIO-1 task-1] 2VZjBHvGRP6Pd03zWdspMQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.139 [XNIO-1 task-2] kOhkYjatQ4KUcp7Nd2KAlQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MnB7s-qCQ3iRvrgF_uwBzQ +17:00:43.144 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.146 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.146 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.147 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:43.147 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.147 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.148 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.148 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.148 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.149 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.149 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.149 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.149 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", client_id) +17:00:43.150 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.150 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.150 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.151 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.151 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.157 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.157 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.158 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.158 [XNIO-1 task-2] QYNsjp_pREaD6vBuJG4uHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.159 [XNIO-1 task-1] WuC6BNUIQqyzTOopd2HrvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WNzc9N8gRL-dbSrgelpeEg +17:00:43.165 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.166 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.166 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.166 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG com.networknt.schema.TypeValidator debug - validate( "60a6f09d-699b-400e-85b8-005ef0108195", "60a6f09d-699b-400e-85b8-005ef0108195", client_id) +17:00:43.167 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.167 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.167 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.167 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.168 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.169 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.169 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.169 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.169 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", client_id) +17:00:43.170 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.170 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.170 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.170 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.170 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.177 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +17:00:43.177 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.179 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.179 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:43.179 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.181 [XNIO-1 task-2] 2NnugZyGT-yOvcwexaLd4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p9ok_8y0SnGOerWiQiJ9wQ +17:00:43.181 [XNIO-1 task-1] IFmvMBunR4Wy1AVJofgkFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZuTeCwErQnGSERt07cnLPQ +17:00:43.188 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.191 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.191 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.193 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.193 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.193 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG com.networknt.schema.TypeValidator debug - validate( "60a6f09d-699b-400e-85b8-005ef0108195", "60a6f09d-699b-400e-85b8-005ef0108195", client_id) +17:00:43.193 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.193 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.193 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.194 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) + +17:00:43.194 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.194 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.194 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.195 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f3a190c3-1969-4160-b306-5ca93039e677 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.205 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.205 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.205 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.205 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.208 [XNIO-1 task-2] zMNrXk9PTdKbgbHUmjHBEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=V42JA4YyTRmgmmcnNw_Q2g +17:00:43.213 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.213 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f3a190c3-1969-4160-b306-5ca93039e677 +17:00:43.214 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.214 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.214 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.215 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.215 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.215 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a7c05b64-9e9c-4406-ab18-60830106eb1d", "a7c05b64-9e9c-4406-ab18-60830106eb1d", client_id) +17:00:43.215 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.215 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.215 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.215 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.216 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} + ... 14 more + +17:00:43.216 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.220 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.222 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:43.234 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.235 [XNIO-1 task-2] iV6yhlMQRqKvxQiz0emdkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.279 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b8be92aa +17:00:43.283 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.283 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.283 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.284 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:43.284 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.284 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.284 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.285 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.285 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.285 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.285 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.285 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.285 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.286 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.286 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b8be92aa +17:00:43.286 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.287 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.286 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b8be92aa +17:00:43.287 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.342 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.343 [XNIO-1 task-1] d4MIJLtISmKaAraUe0YxQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.357 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.358 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.366 [XNIO-1 task-2] MLYNGOJQTTOB4-yEhhqW7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Bpce5uWCTV-crbSDMDILKQ +17:00:43.373 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9aad4332-b99b-4483-87d3-98fd1daf3778 +17:00:43.390 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.391 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.391 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.391 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a7c05b64-9e9c-4406-ab18-60830106eb1d", "a7c05b64-9e9c-4406-ab18-60830106eb1d", client_id) +17:00:43.392 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.400 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.405 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.405 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.405 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.413 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.413 [XNIO-1 task-2] v9vMrxQ4Tg6MtPBH8ic8vQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.424 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.424 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.425 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.425 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a7c05b64-9e9c-4406-ab18-60830106eb1d", "a7c05b64-9e9c-4406-ab18-60830106eb1d", client_id) +17:00:43.425 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.425 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.426 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.426 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.426 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.436 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.436 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.436 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.437 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:43.437 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.437 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.438 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.439 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.439 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.443 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.444 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.445 [XNIO-1 task-2] j1GybYWMTB-eZRCndNHpKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cbT7Jeo8TgaWbPwQsYcYcA +17:00:43.454 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.454 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.455 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.455 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.455 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.456 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.456 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.456 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.456 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.456 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.468 [XNIO-1 task-1] BWMSzvfHRr28-rwbGCGeRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fmegAkbPTvSEuvUPqsTcDw +17:00:43.470 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.471 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.473 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.473 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.474 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.474 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG com.networknt.schema.TypeValidator debug - validate( "aa6ef517-ab51-45b3-afd4-361361f95c58", "aa6ef517-ab51-45b3-afd4-361361f95c58", client_id) +17:00:43.474 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.475 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.475 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.475 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.481 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.483 [XNIO-1 task-2] U9eGb9_aS4-sGCzt_RxpEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WIYGzOARQkq9rG9vNli76Q +17:00:43.497 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.497 [XNIO-1 task-1] P7wQHSR7RLaKHeW36OhzXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.514 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.514 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.515 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.515 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.515 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.515 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.515 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.515 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.515 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.516 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:43.516 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.516 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.516 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.516 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.516 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.516 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.517 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.518 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.526 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.526 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.526 [XNIO-1 task-2] P3NaGWpJT5qxTLDsLEwLjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.526 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.530 [XNIO-1 task-1] awoLz792R4OvWf5H9bkg0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M02HRjUOThyXKsCMIqeO5Q +17:00:43.534 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.534 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.534 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.535 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG com.networknt.schema.TypeValidator debug - validate( "9aad4332-b99b-4483-87d3-98fd1daf3778", "9aad4332-b99b-4483-87d3-98fd1daf3778", client_id) +17:00:43.537 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.537 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.537 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.537 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.538 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.539 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.539 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.539 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.540 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG com.networknt.schema.TypeValidator debug - validate( "aa6ef517-ab51-45b3-afd4-361361f95c58", "aa6ef517-ab51-45b3-afd4-361361f95c58", client_id) +17:00:43.540 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.541 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.541 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.541 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.541 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.548 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.550 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.555 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.556 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.559 [XNIO-1 task-1] EiyZbgyTT2uYKJJcCAGCfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2Oi7A2Z5Sdas89bSKnB7Jg +17:00:43.564 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.565 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.565 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.565 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", client_id) +17:00:43.565 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.565 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.566 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.566 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.566 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.572 [XNIO-1 task-2] any0vYxJQw-33qDc_uA3qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-2IAsX6sQSSfEk0w8W-ElQ +17:00:43.574 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.574 [XNIO-1 task-1] clFM0UqUQnW6sbpjDx4vug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.576 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.576 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.576 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.576 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:43.577 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.577 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.578 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.578 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.578 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.583 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.583 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.583 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.583 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", client_id) +17:00:43.583 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.584 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.584 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.584 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.584 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.594 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.594 [XNIO-1 task-2] KLBHDhDfR7KsE3HJq1mWRQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.595 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.595 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.596 [XNIO-1 task-1] AZ1y4MhURTCHDYJR4Ramqg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wutmdbNTTuybO0TqTOMovA +17:00:43.602 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.602 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.602 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.602 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "V_hlBMCQokSOZcnXRjwaAwZZyy2M-hjoKusfEUBcCHY", "V_hlBMCQokSOZcnXRjwaAwZZyy2M-hjoKusfEUBcCHY", code_challenge) +17:00:43.603 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:43.603 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.603 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.603 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.603 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.603 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.635 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a49a01c7-1e44-4f89-9b33-27a19607361d +17:00:43.672 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.673 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.676 [XNIO-1 task-2] McaIpwHkRy-lPVkGdCAbQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9OD4hh_HQoawqVfajPE0Ag +17:00:43.684 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.684 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.684 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.685 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG com.networknt.schema.TypeValidator debug - validate( "a49a01c7-1e44-4f89-9b33-27a19607361d", "a49a01c7-1e44-4f89-9b33-27a19607361d", client_id) +17:00:43.685 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.685 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.686 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.686 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.686 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.693 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.694 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.699 [XNIO-1 task-2] Vli3DF62R2SLKfR2XMqq7w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1NFlSeMuQMCw4Sy8Fl8zIA +17:00:43.752 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.752 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.752 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.752 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.753 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.753 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.753 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.753 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.772 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.772 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.776 [XNIO-1 task-2] U1yjSsX-SWqM2nyHQysXmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aUO0GjAUQ5m9CjbTVNhtug +17:00:43.827 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1 +17:00:43.871 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.871 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.871 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.872 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.872 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.872 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.872 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.872 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.878 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1 +17:00:43.883 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:43.883 [XNIO-1 task-2] cDxWNYNCTVm3v4qtqVKMuQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:43.898 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1 +Jun 28, 2024 5:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:43.973 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.974 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:43.974 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:43.975 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "SsPSqVYd5mRkD2GpZc_lP4y5a9I8lbfUXGKzOoJV-mo", "SsPSqVYd5mRkD2GpZc_lP4y5a9I8lbfUXGKzOoJV-mo", code_challenge) +17:00:43.975 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:43.975 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:43.975 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:43.976 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:43.976 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:43.976 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:43.980 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.980 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.980 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:43.981 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:43.981 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:43.981 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:43.981 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:43.981 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:43.991 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.991 [XNIO-1 task-2] WllYAhy9TUmPUefzX87KWQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:43.996 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:43.997 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.000 [XNIO-1 task-1] S-U_en44SZujhFT4DbKyaQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.005 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.006 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.006 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.006 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG com.networknt.schema.TypeValidator debug - validate( "pFTIBvqcKsWVQ9mSWUKD67K2Ehwq0HQlKnbXTImA9A8", "pFTIBvqcKsWVQ9mSWUKD67K2Ehwq0HQlKnbXTImA9A8", code_challenge) +17:00:44.007 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.007 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.007 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.007 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.008 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.008 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.009 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.009 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.010 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.010 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.010 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.010 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.011 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.011 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.017 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.017 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.021 [XNIO-1 task-2] q63eowKVRBCPBnnr7Ehjig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5uq66AuOTiO6AzZ_07v0tg +17:00:44.026 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.026 [XNIO-1 task-1] 6ufqM5RxTW-tE4yvSZpMbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.037 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.038 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.038 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.038 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG com.networknt.schema.TypeValidator debug - validate( "a90uRrRreRlzBN34FEWo29OMdnkoR0q5rD-ZpDxvchI", "a90uRrRreRlzBN34FEWo29OMdnkoR0q5rD-ZpDxvchI", code_challenge) +17:00:44.039 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.039 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.039 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.039 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.039 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.039 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.039 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.040 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.040 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.040 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.040 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.040 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.040 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.040 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.049 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.050 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.054 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.054 [XNIO-1 task-2] UNU3-UUdTfWjlLnuBxZMGQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.054 [XNIO-1 task-1] I-hRHXgGT4--Ww1dfelvhA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XOj4yzJbR9OvUZIEmO5cbw +17:00:44.061 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.061 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.061 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.062 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG com.networknt.schema.TypeValidator debug - validate( "uCRxjpmvlzj52V3OWfkcpAp9nTdl2ATw0A3T3SlCgfI", "uCRxjpmvlzj52V3OWfkcpAp9nTdl2ATw0A3T3SlCgfI", code_challenge) +17:00:44.062 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.062 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.062 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.063 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.063 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.065 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.066 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.066 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.066 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.067 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.067 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.067 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.068 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.068 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.072 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.076 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.078 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.079 [XNIO-1 task-1] DW18jVuFROqCkUNrNwAN_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.081 [XNIO-1 task-2] QWBYWOsDQzmUMv5-1KajfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MKw0hlCIRaSPPWJmK9dDWA +17:00:44.094 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.094 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.094 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.095 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", client_id) +17:00:44.095 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.095 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.097 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.097 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.097 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.114 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.114 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.120 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:32a58358-34a0-4ab1-bd1c-4ffc77662da3 +17:00:44.121 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b8be92aa +17:00:44.147 [XNIO-1 task-1] 9NgiZh72QyeSvD3zbVCLaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sBZL1L_kRWe95cnBG-psIw +17:00:44.155 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.155 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.155 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.156 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1828f5df-246e-4856-a417-13528ad81f94", "1828f5df-246e-4856-a417-13528ad81f94", client_id) +17:00:44.156 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.160 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.160 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.160 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.161 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.176 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.177 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aa6ff5e7-0df5-4f1b-9986-10c7dd39c42c +17:00:44.177 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.178 [XNIO-1 task-1] ws7H95TzQ5uvx3jo8AheLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qw8Wqr6tR6OnqgnM5eB7wQ +17:00:44.187 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.187 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.188 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.188 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60a6f09d-699b-400e-85b8-005ef0108195", "60a6f09d-699b-400e-85b8-005ef0108195", client_id) +17:00:44.188 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.189 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.189 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.189 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.189 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.189 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", client_id) +17:00:44.190 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.190 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.190 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.190 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.190 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.190 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.190 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.190 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.204 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.204 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.205 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.205 [XNIO-1 task-2] 2sV7rpd6QkWGtupa87AriQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.208 [XNIO-1 task-1] SH1i3bO2TvuqW3cr6jDVfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LGAcelrATOuQtm5vECij2Q +17:00:44.212 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.212 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.212 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.213 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.213 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.213 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.213 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.213 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.233 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.233 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.237 [XNIO-1 task-1] 3ai1zWWKRhurW2fu1QahlQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5zLJaHLcSI6P9OD9xjB7oQ +17:00:44.246 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.247 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.247 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.247 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.247 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.247 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.247 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG com.networknt.schema.TypeValidator debug - validate( "873a9e00-78a0-4046-8d12-6e80d09ca8f0", "873a9e00-78a0-4046-8d12-6e80d09ca8f0", client_id) +17:00:44.247 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.247 [XNIO-1 task-1] h7tUixShQ1KLCe0G0w9mhA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.248 [XNIO-1 task-1] h7tUixShQ1KLCe0G0w9mhA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.248 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.248 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.248 [XNIO-1 task-1] h7tUixShQ1KLCe0G0w9mhA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.248 [XNIO-1 task-1] h7tUixShQ1KLCe0G0w9mhA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.248 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.248 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.249 [XNIO-1 task-1] h7tUixShQ1KLCe0G0w9mhA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.249 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.258 [XNIO-1 task-1] h7tUixShQ1KLCe0G0w9mhA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.258 [XNIO-1 task-1] h7tUixShQ1KLCe0G0w9mhA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.265 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.266 [XNIO-1 task-2] jhjAqt9bRBKe05r3CTAJRw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.269 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b8be92aa +17:00:44.271 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.271 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.271 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.272 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "BqK6b0e9W_gi8B7JPN5A7MArunlmQ1Gz1ZzdO_pR0o8", "BqK6b0e9W_gi8B7JPN5A7MArunlmQ1Gz1ZzdO_pR0o8", code_challenge) +17:00:44.272 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.272 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.272 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.272 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.273 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.273 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.283 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.284 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.294 [XNIO-1 task-1] W6fd36gYQdmGoPj2pdD1Eg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=a4h2WU0YReKTWfNclOfNgw +17:00:44.307 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.307 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.307 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.308 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.308 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.308 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.308 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.309 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.321 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.322 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.360 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c6775f35-083d-44e8-8258-93c05609773b +17:00:44.362 [XNIO-1 task-1] 0dw6QAWOS_u_RAT3IzQIMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uNan6jFvRkiLJEAIimJuOA +17:00:44.399 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.399 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.399 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.399 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.400 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.400 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.400 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.400 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.416 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.416 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.427 [XNIO-1 task-1] IhbrzNNWRjqihoPDlhcZzg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Cc2uRmTAQR6GC6sHtI9KbA +17:00:44.429 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.429 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.429 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.430 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:44.430 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.430 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.430 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.430 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.431 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.433 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.435 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.435 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.436 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG com.networknt.schema.TypeValidator debug - validate( "ae649367-a66f-45d0-a78b-211aa0690d68", "ae649367-a66f-45d0-a78b-211aa0690d68", client_id) +17:00:44.436 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.436 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.437 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.437 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.437 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.445 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.445 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.450 [XNIO-1 task-2] 9BKEFQ6NTPWFnCjjEEjdXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wVegmKhiTx-WT48jfTzgZg +17:00:44.454 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.454 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.454 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.454 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.454 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.455 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:44.455 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.455 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.455 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.455 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.456 [XNIO-1 task-1] Yz6ZiSqLQsaOR1mqXx6Ipg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=axzSIU0TReOYkyxCJN0oDQ +17:00:44.458 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.467 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.467 [XNIO-1 task-2] 0RFDtPfRRpyDQG5xf3r9_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.467 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.468 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.468 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.468 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae649367-a66f-45d0-a78b-211aa0690d68", "ae649367-a66f-45d0-a78b-211aa0690d68", client_id) +17:00:44.469 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.469 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.469 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.469 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.470 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.478 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.482 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.482 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.483 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "u4-9OfRN0-5q1NsUWPO1J9H0p8biBkgJaAHC-yMg_fs", "u4-9OfRN0-5q1NsUWPO1J9H0p8biBkgJaAHC-yMg_fs", code_challenge) +17:00:44.484 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.484 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.484 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.484 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.485 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.485 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.485 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.486 [XNIO-1 task-1] m-OhEbHEQPqmsdiT7W1INw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.495 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.495 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.496 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.496 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.496 [XNIO-1 task-2] EPeCG0IcS_CHoWAhF42OvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.498 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae649367-a66f-45d0-a78b-211aa0690d68", "ae649367-a66f-45d0-a78b-211aa0690d68", client_id) +17:00:44.499 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.499 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.500 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.500 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.500 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.508 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.508 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.508 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.509 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG com.networknt.schema.TypeValidator debug - validate( "6CtCT5WYfePUQqEzGKxeQxBFTc5KWaZiXBDBAIO98lc", "6CtCT5WYfePUQqEzGKxeQxBFTc5KWaZiXBDBAIO98lc", code_challenge) +17:00:44.509 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.509 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.509 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.510 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.510 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.510 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.512 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.512 [XNIO-1 task-1] 8cuxTjJBTM2DSWv1PWliMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.517 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.517 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.523 [XNIO-1 task-2] bA_pJwu0RFe5zpgl-sLRqg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gF0lvY_SQZuIx_avBsV84w +17:00:44.525 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.525 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.526 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.526 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.526 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.527 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.527 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.527 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.541 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.541 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.544 [XNIO-1 task-1] VQsGECHvRKaCOc6ICh5AsA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Zs3IsrbHQKOYBImcO3kQPg +17:00:44.562 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.564 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.565 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.565 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", client_id) +17:00:44.565 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.566 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.566 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.566 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.568 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.587 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.588 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.589 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.590 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.590 [XNIO-1 task-1] KVkrJ-vVTt6d8ZD74Ys3sA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=phCdzde7SpGP5eRFAz3QEw +17:00:44.591 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.592 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.592 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.592 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.592 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.594 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.603 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.604 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.607 [XNIO-1 task-2] ntqRCih0RG2VHfV7ijRdjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DO3KUPVlQdekrQxM3mIxoA +17:00:44.626 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.626 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.626 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.627 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG com.networknt.schema.TypeValidator debug - validate( "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", client_id) +17:00:44.627 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.627 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.627 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.628 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.628 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.634 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.636 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.639 [XNIO-1 task-2] uMn_eDBdTXuUVIn0y8iEHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-vV04IUYRTyjVategO-ikQ +17:00:44.647 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.647 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.648 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.648 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG com.networknt.schema.TypeValidator debug - validate( "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", client_id) +17:00:44.649 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.649 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.649 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.650 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.651 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.661 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.661 [XNIO-1 task-2] p-uwLDbOR_-du7GYXRfDGg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.669 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.670 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.670 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.670 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:44.670 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.671 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.671 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.671 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.673 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.678 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.678 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.678 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.679 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG com.networknt.schema.TypeValidator debug - validate( "3sF6BsVR6WfXz1C5FOa80fRZPPLVB_fwXb0_HYLKU3s", "3sF6BsVR6WfXz1C5FOa80fRZPPLVB_fwXb0_HYLKU3s", code_challenge) +17:00:44.679 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:44.679 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.679 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.680 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.680 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.680 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.691 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.691 [XNIO-1 task-2] 3dRxH5NXQlSZ6nDl5sX2cg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.696 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.696 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.701 [XNIO-1 task-1] viugk8hMSHK914FYUdTXfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p9yU52XFSgipNZtR__Fzew +17:00:44.719 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.719 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.720 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.720 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:44.721 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.721 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.721 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.722 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.722 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.724 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.725 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.725 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.725 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG com.networknt.schema.TypeValidator debug - validate( "3e4de304-d30a-46ae-9568-f90c50e9cd34", "3e4de304-d30a-46ae-9568-f90c50e9cd34", client_id) +17:00:44.726 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.726 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.726 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.726 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.726 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.736 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.736 [XNIO-1 task-1] i0XhrVONRByJ9EcqAZlPjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.748 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.748 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.756 [XNIO-1 task-2] e8SAPrR4RwK4gv9GQYQe0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=u2QI1epISD-ENoTyXC0BdQ +17:00:44.811 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.811 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.811 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.812 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.812 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.812 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.812 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.817 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.817 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:039ec612 +17:00:44.821 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:039ec612 +17:00:44.834 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.834 [XNIO-1 task-2] qqQ-Sw2cRFSe7KeH7tR59w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.880 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb8e9ae7 +17:00:44.886 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb8e9ae7 +17:00:44.889 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:039ec612 +17:00:44.900 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.901 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.901 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.901 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG com.networknt.schema.TypeValidator debug - validate( "5d2adb72-0fbe-4210-9445-6e63529c0533", "5d2adb72-0fbe-4210-9445-6e63529c0533", client_id) +17:00:44.902 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.902 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.902 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.902 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.904 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.915 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.915 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.918 [XNIO-1 task-2] jAKiKb4-Qw2V_0pv81qcOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w4FQlt2sSN26F8lU7ocQPQ +17:00:44.933 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.934 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.934 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.934 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.934 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.935 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.935 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.935 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.936 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:039ec612 +17:00:44.951 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.951 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.953 [XNIO-1 task-2] uda3vNauTF2dNl-e_J8Ryg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kYKWk2SiQ4Sz6LmIsjJw4g +17:00:44.956 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.956 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.956 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.957 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG com.networknt.schema.TypeValidator debug - validate( "9aad4332-b99b-4483-87d3-98fd1daf3778", "9aad4332-b99b-4483-87d3-98fd1daf3778", client_id) +17:00:44.958 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:44.958 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:44.958 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:44.958 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:44.958 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:44.960 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.960 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:44.960 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:44.960 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", client_id) +17:00:44.961 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:44.961 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:44.961 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:44.961 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:44.961 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:44.969 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:44.969 [XNIO-1 task-2] kpkjqzGbQC2LHsL0GJUs1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:44.979 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:44.979 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:44.991 [XNIO-1 task-1] d9oAy5kNQ_CKRGqyPJ-mzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XMC70-JRTDyDAiTit--2AA +17:00:44.999 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.999 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.999 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:44.999 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.000 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.000 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.000 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.000 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.012 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.012 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.013 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.013 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "-EzGqXIXGRWMTGHqCrHQZTsK4KW8ceLSSQfsDMK0Hy8", "-EzGqXIXGRWMTGHqCrHQZTsK4KW8ceLSSQfsDMK0Hy8", code_challenge) +17:00:45.013 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.013 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.013 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.014 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.014 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.014 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.017 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.017 [XNIO-1 task-1] TuK27XhbSBihQirD0hMrJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.027 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.028 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.028 [XNIO-1 task-2] qRQNiyLQR9eLSzohw01pLQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.028 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.029 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.029 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG com.networknt.schema.TypeValidator debug - validate( "8fb931c1-e213-4a10-858b-7be565c645fd", "8fb931c1-e213-4a10-858b-7be565c645fd", client_id) +17:00:45.029 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.029 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.029 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.030 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.033 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.041 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.041 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.042 [XNIO-1 task-1] bUhqu0SKQ4yLMqhCA_4kOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rTcbIQ05QrmfsmGfXbR1nw +17:00:45.049 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.049 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.050 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.051 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.051 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.051 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.051 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.052 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.058 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.059 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.059 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.059 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG com.networknt.schema.TypeValidator debug - validate( "-C_2YYlqVNpJxkzXs5YlfEJp3bFqAQrxKeLXssYZ4sU", "-C_2YYlqVNpJxkzXs5YlfEJp3bFqAQrxKeLXssYZ4sU", code_challenge) +17:00:45.059 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.059 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.060 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.060 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.060 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.060 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.060 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.060 [XNIO-1 task-1] BbKePzs7Tsy2VeFK4pA7Ig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.070 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.071 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.075 [XNIO-1 task-2] l58IVVm4QNWTww-rO9GHEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-7W4xRY3RKC8PFaYaBfD5A +17:00:45.117 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.117 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.117 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.117 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5c763e-4f45-4f89-b6cc-14d644c57f9b", "6b5c763e-4f45-4f89-b6cc-14d644c57f9b", client_id) +17:00:45.118 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.118 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.118 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.118 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.118 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.123 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7f8b95e +17:00:45.125 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7f8b95e +17:00:45.125 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.125 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.125 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.125 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.125 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.126 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.126 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.126 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.126 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.126 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.127 [XNIO-1 task-2] gyP0y73bTcmWVKY1iEmpZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=C4aVdfyJRoymoaY2Jt7RbA +17:00:45.134 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1c64c375-d0d1-4737-964c-c6274f254131 +17:00:45.140 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.140 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.146 [XNIO-1 task-1] eX3l00YxSjyF6TLIG9WUFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k2DZ1Kc5TE2OF4ZQKLC2mg +17:00:45.150 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7f8b95e +17:00:45.155 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.156 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.159 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.160 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.160 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.160 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.160 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.160 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "QtGfI6P5yw6FXSWVN1ywI22E_dzpd47vWGCaaX7KKDI", "QtGfI6P5yw6FXSWVN1ywI22E_dzpd47vWGCaaX7KKDI", code_challenge) +17:00:45.160 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.161 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.161 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.161 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.161 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.161 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.161 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.161 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.161 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.161 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.173 [XNIO-1 task-2] EAx6HD2CSpm9RW_jaJQzeQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.173 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7f8b95e +17:00:45.174 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7f8b95e +17:00:45.179 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.180 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.184 [XNIO-1 task-1] 8nH_9c4BS1-KkOcix_guxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zQvbXjn_TQSB7-NVdWwAHg +17:00:45.190 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.190 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.190 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.191 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.191 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.191 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.191 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.191 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.203 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.204 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.206 [XNIO-1 task-1] s-aXM-wPRLus4DFpxQWLhA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PUB9uaduR6etKUiwlZ3aGg +17:00:45.216 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.217 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.217 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.217 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:45.217 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.215 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.218 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.218 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.218 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.218 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.218 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.218 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.219 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.219 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.219 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.219 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.219 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.219 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.235 [XNIO-1 task-1] mFYwEPODTCKXsJEQ6gGfJg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.231 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.236 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.236 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.240 [XNIO-1 task-2] qiHOlP3HSXSFyDBmKVD8Pg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2RuN2-a6RM6CMiGbV_20ig +17:00:45.252 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb8e9ae7 +17:00:45.253 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.253 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.253 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.254 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", client_id) +17:00:45.256 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.256 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.256 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.256 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.256 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.271 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.271 [XNIO-1 task-2] eVlw4G4TS2O8zS2XWP_GlQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.271 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cb8e9ae7 +17:00:45.285 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.285 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.286 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.286 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "yVCGksnqFIEFHClSnLRNd4NgqLAMG_d4gsbam2O1xio", "yVCGksnqFIEFHClSnLRNd4NgqLAMG_d4gsbam2O1xio", code_challenge) +17:00:45.286 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.286 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.286 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.287 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.287 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.287 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.293 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7f8b95e +17:00:45.306 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.306 [XNIO-1 task-2] -zKb0gSPRdW5kMtnRkPwlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.319 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:32a58358-34a0-4ab1-bd1c-4ffc77662da3 +17:00:45.348 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f7f8b95e +17:00:45.358 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.358 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.358 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.358 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", client_id) +17:00:45.358 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.359 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.359 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.359 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.359 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.367 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.368 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.374 [XNIO-1 task-2] V8KE4FEhQP-13bhkueRpxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=foW69TNNRyGEu48XoSP43A +17:00:45.411 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.411 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.418 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.411 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.419 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.419 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.419 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.419 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +17:00:45.419 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +17:00:45.420 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.420 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:45.420 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.420 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.420 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.420 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.420 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +17:00:45.423 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f3a190c3-1969-4160-b306-5ca93039e677 +17:00:45.429 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.429 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.429 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.429 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + ... 14 more + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:45.431 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.432 [XNIO-1 task-2] 0_6ZrV6iSDahoR3kp_f69g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.436 [XNIO-1 task-1] fu3fHJI7RhaNb-uOMcRuzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-Cugkdb9SHCAb06tKGUbvA +17:00:45.481 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.482 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.482 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.482 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:45.482 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.483 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.483 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.483 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.483 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.495 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.495 [XNIO-1 task-2] t6zZ8azNR8aYYi_7WmbZAw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.511 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.511 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.511 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.511 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:45.511 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.512 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.512 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.512 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.512 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.521 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.521 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.522 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.522 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG com.networknt.schema.TypeValidator debug - validate( "9aad4332-b99b-4483-87d3-98fd1daf3778", "9aad4332-b99b-4483-87d3-98fd1daf3778", client_id) +17:00:45.522 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.522 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.523 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.523 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.523 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.523 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.523 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.534 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.534 [XNIO-1 task-1] PZMTDHsQRJq-k-su1bgraw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.536 [XNIO-1 task-2] KsNZLfT8Ss2ZCghwPygB5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yJxRlhp4R8CRiktLQ9VWmA +17:00:45.544 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.545 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.545 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.545 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG com.networknt.schema.TypeValidator debug - validate( "f3a190c3-1969-4160-b306-5ca93039e677", "f3a190c3-1969-4160-b306-5ca93039e677", client_id) +17:00:45.545 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.547 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.547 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.547 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.548 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.555 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.555 [XNIO-1 task-1] BPWCND_TS3yYAdlBU_rthA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.612 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.612 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.613 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.613 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG com.networknt.schema.TypeValidator debug - validate( "AkfQkoshPh_PerRLSUh-xUwHFbCNVhe1c-jFYQY1NRM", "AkfQkoshPh_PerRLSUh-xUwHFbCNVhe1c-jFYQY1NRM", code_challenge) +17:00:45.613 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.613 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.613 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.614 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.614 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.617 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.624 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.624 [XNIO-1 task-1] hxZI5eBwT52fXXPAjtaZPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.628 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4dd78e54-54f9-4733-87c9-da0b06109de6 +17:00:45.629 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4dd78e54-54f9-4733-87c9-da0b06109de6 +17:00:45.639 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.639 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.639 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.639 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.639 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.640 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.640 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.640 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.670 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.670 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.671 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.671 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG com.networknt.schema.TypeValidator debug - validate( "vVi-FBPiTdd9b-hCyvBGw6bp9KPLfQztJfe7et5CQdI", "vVi-FBPiTdd9b-hCyvBGw6bp9KPLfQztJfe7et5CQdI", code_challenge) +17:00:45.671 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.671 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.671 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.672 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.672 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.672 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.675 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.675 [XNIO-1 task-1] 5Z0YccEuSz68LnMbQLRZmg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.687 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.689 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.689 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.689 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.689 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.689 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd7b24e1 +17:00:45.690 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.690 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.690 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.690 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.691 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dd7b24e1 +17:00:45.692 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dd7b24e1 +17:00:45.693 [XNIO-1 task-2] jmgU4RkdQ-CdQ5s-5vC-_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rmhpPClYSi-DYqtj9MI0pw +17:00:45.701 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.701 [XNIO-1 task-1] OGUdRGoVQwypAa7eSM8zNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.740 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.740 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.740 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.740 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "wCZZ2dVemF5ie2GZ5v7N1Qf_3hyi7nf2prb77Ynkv5c", "wCZZ2dVemF5ie2GZ5v7N1Qf_3hyi7nf2prb77Ynkv5c", code_challenge) +17:00:45.741 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.743 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.744 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.744 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.744 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.744 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.759 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.759 [XNIO-1 task-1] V7hUclxKQrKID2e482PK4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.768 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.768 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.768 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.769 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ustkSOm7moAazxAfIlJkQSZST4dB8sfh5xCwz2Apu4M", "ustkSOm7moAazxAfIlJkQSZST4dB8sfh5xCwz2Apu4M", code_challenge) +17:00:45.769 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.769 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.769 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.769 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.769 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.770 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.773 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.773 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.774 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:45.774 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:45.774 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:45.774 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:45.774 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.775 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:45.781 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:45.782 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:45.787 [XNIO-1 task-1] 7CURjRLlTxW7KYTl5JptQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WJkLhrqTQBKfOavMwRvkFA +17:00:45.787 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.787 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.799 [XNIO-1 task-2] 6u8jQ9uiQUiYuS3H0mgMeA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8-McCtWoSJiibmZ54vxscQ +17:00:45.801 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.801 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.801 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG com.networknt.schema.TypeValidator debug - validate( "0Gj2tT5AU1E9mpbcDBEvv1F_3p_2pQdA5CQeo0ZD4Ls", "0Gj2tT5AU1E9mpbcDBEvv1F_3p_2pQdA5CQeo0ZD4Ls", code_challenge) +17:00:45.801 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.803 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.804 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.804 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.804 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.805 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.815 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.815 [XNIO-1 task-1] DZqnm0VPR5STpxq7sNFGnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.822 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.822 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.823 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.823 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG com.networknt.schema.TypeValidator debug - validate( "hXGJ4oCDbA4Y6LEieaoosUt4fiucFL_aVYt5MEIEn8Q", "hXGJ4oCDbA4Y6LEieaoosUt4fiucFL_aVYt5MEIEn8Q", code_challenge) +17:00:45.823 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.823 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.823 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.824 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.824 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.824 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.830 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.830 [XNIO-1 task-1] JXG_cDuKRwyQYTK89MgJLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.835 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.835 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.836 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.836 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG com.networknt.schema.TypeValidator debug - validate( "CwmiUlbayk7pyj_a12OOqRJynSbojM2BIspfCwICr6M", "CwmiUlbayk7pyj_a12OOqRJynSbojM2BIspfCwICr6M", code_challenge) +17:00:45.836 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.836 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.836 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.837 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.837 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.837 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.843 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.843 [XNIO-1 task-1] 4QsWZaJeRky0Xlb1zNhe1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.848 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.848 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.848 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.849 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5_fDx7PtFXT-KxH26S10t0Ju2m6LD7PXk5khcHKZNMs", "5_fDx7PtFXT-KxH26S10t0Ju2m6LD7PXk5khcHKZNMs", code_challenge) +17:00:45.849 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:45.849 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.849 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.850 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.850 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.850 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.858 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.858 [XNIO-1 task-1] zjf_I3H0SJK4qJmof981_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.914 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:dd7b24e1 +17:00:45.924 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e5e9432a-3967-4ca1-817f-3942f3069292 +17:00:45.933 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.934 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.934 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.935 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:45.935 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.935 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.935 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.935 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.936 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.944 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.944 [XNIO-1 task-1] zpsKxRlZRRybCIPqqllyXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.950 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.951 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.951 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.951 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:45.952 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:45.952 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:45.952 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:45.952 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:45.953 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:45.965 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:45.965 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:45.968 [XNIO-1 task-1] AxP3QSYuTbOj9j-omCFvaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kauJnmcQQpqT9mOt2362qw +17:00:45.969 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dd6692af +17:00:45.973 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ff26e1cf-58f4-4673-9847-9757531e396f +17:00:45.977 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.977 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:45.978 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:45.978 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG com.networknt.schema.TypeValidator debug - validate( "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", client_id) +17:00:45.978 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +Jun 28, 2024 5:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +17:00:45.979 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:45.979 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:45.990 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ff26e1cf-58f4-4673-9847-9757531e396f +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:46.002 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth + at com.hazelcast.spi.Operation.call(Operation.java:170) +17:00:46.011 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:46.011 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.011 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.011 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.011 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Dv9PlZns7vSPrF2_A-MJclEYoMUvp9oieQTFjzheUxA", "Dv9PlZns7vSPrF2_A-MJclEYoMUvp9oieQTFjzheUxA", code_challenge) +17:00:46.011 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +17:00:46.012 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +17:00:46.013 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.013 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.034 [XNIO-1 task-1] CldJLZclSIC88KKGZH5Ndg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3GSI535aQSqjDaE9r-T7tA +17:00:46.035 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.035 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.035 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.038 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + +17:00:46.038 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.038 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.038 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", client_id) +17:00:46.039 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.039 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.039 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.039 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.039 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.043 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.043 [XNIO-1 task-2] -fyUVYY_TiWYGIH0yKcCPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.049 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.049 [XNIO-1 task-1] 1KaB46s_S_qq23crxb5OVQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.052 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:dd6692af +17:00:46.053 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:dd6692af +17:00:46.065 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:de348c68-3254-443a-ae0e-c0d2fee08766 +17:00:46.078 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.078 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.079 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.079 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG com.networknt.schema.TypeValidator debug - validate( "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", client_id) +17:00:46.079 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.079 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.079 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.080 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.080 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.086 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.087 [XNIO-1 task-1] 02TfSUq7T6SMKCtrnxhStw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.088 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.088 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.088 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.089 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG com.networknt.schema.TypeValidator debug - validate( "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", client_id) +17:00:46.089 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.089 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.089 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.089 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.090 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.096 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.096 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.098 [XNIO-1 task-2] BKaZTpwTTraTwREw-YXflA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PQcUpUc3TsWqmWm9SOT1QQ +17:00:46.142 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.143 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.143 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.143 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", "53d7522d-bcc7-41c0-9f5a-fc6d78a83317", client_id) +17:00:46.143 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.143 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.144 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.144 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.144 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.147 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4fd9aefe +17:00:46.149 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4fd9aefe +17:00:46.151 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.151 [XNIO-1 task-2] 5QJ9cPFsRf6HCpZteSzL_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.162 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.162 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.163 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.163 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "LwQBPE0DeBOOuIpgzS0yl2aA7MCsiN7OQNXxAuE91QA", "LwQBPE0DeBOOuIpgzS0yl2aA7MCsiN7OQNXxAuE91QA", code_challenge) +17:00:46.163 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:46.163 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.164 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.164 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.164 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.165 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.167 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.167 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.168 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.168 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.168 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.168 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.168 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.168 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.175 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.175 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.175 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.176 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.177 [XNIO-1 task-2] lLerCPrxTCyNR1ZFpfXKZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=446-ADsmSzaiCnsp6h_hhw +17:00:46.181 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.178 [XNIO-1 task-1] D5Im1FzhTYmY9gvly4OSMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ok42JdaTQnyxrBtM8eDlSg +17:00:46.182 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.182 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.182 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:46.182 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.182 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.183 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.183 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.183 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:446034d9 +17:00:46.183 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.186 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.187 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.187 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.187 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG com.networknt.schema.TypeValidator debug - validate( "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", "10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949", client_id) +17:00:46.188 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.188 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.188 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.188 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.188 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.191 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.191 [XNIO-1 task-2] ceXoM8CqTqiGz-UjTDimmw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.197 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.197 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.200 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.201 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.201 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.201 [XNIO-1 task-1] wPqEJ8weRYuYeeBDWC5Gag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tbUDEFwvQo6WycKiFBX4Pg +17:00:46.202 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9aad4332-b99b-4483-87d3-98fd1daf3778", "9aad4332-b99b-4483-87d3-98fd1daf3778", client_id) +17:00:46.204 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.204 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.205 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.205 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.205 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.211 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.212 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.212 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.212 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.213 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.213 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.213 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.213 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.218 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.218 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.219 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.219 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:619c7739 +17:00:46.221 [XNIO-1 task-2] 1SgmNwelS-yV2J4WXIkEhQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FaB5AUCMSKykiCPR7NJVQw +17:00:46.227 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.227 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.228 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.229 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", client_id) +17:00:46.229 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.229 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.230 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.230 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.230 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.233 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.233 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.236 [XNIO-1 task-1] 7cA-Ol0vTJ60o9rm76YrFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oLtTRSa-RR6svA29Ygnhsg +17:00:46.245 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.245 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.250 [XNIO-1 task-2] Hwy5DwT-Qn-kHCCBBZ8p5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pA7LfZNQQ2y051NBhsM2Yw +17:00:46.276 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:446034d9 +17:00:46.287 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.287 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.287 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.288 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG com.networknt.schema.TypeValidator debug - validate( "ae649367-a66f-45d0-a78b-211aa0690d68", "ae649367-a66f-45d0-a78b-211aa0690d68", client_id) +17:00:46.288 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.288 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.288 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.289 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.289 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.294 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.294 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.294 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.295 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG com.networknt.schema.TypeValidator debug - validate( "a1465cf6-eed6-4b0c-8104-57143f72736c", "a1465cf6-eed6-4b0c-8104-57143f72736c", client_id) +17:00:46.295 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.295 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.295 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.295 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.295 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.296 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4fd9aefe +17:00:46.301 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.301 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.304 [XNIO-1 task-2] mqugMjNiSa-bB6t4JlcjUg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=t3m1cZV_TYeWhSu45vAEXw +17:00:46.305 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.305 [XNIO-1 task-1] YD6x3UpXQUaoL9DXmRQjRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.310 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f105ff6d-d5d8-4a2f-9cf9-e80132d611e4 +17:00:46.313 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f105ff6d-d5d8-4a2f-9cf9-e80132d611e4 +17:00:46.316 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.317 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.317 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.317 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", client_id) +17:00:46.317 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.318 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.318 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.318 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.318 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.326 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.326 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.328 [XNIO-1 task-1] UiTtMz0ARTq5gdRa5ei4kA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6NVYgaQWSd-emYsTZzab0w +17:00:46.333 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.333 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.334 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.334 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", "32f33edd-6c44-4a5e-9b81-b9c15e17c4e7", client_id) +17:00:46.334 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.334 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.335 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.335 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.335 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.337 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.337 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.337 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.338 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5c763e-4f45-4f89-b6cc-14d644c57f9b", "6b5c763e-4f45-4f89-b6cc-14d644c57f9b", client_id) +17:00:46.338 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.338 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.338 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.338 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.340 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.342 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.342 [XNIO-1 task-1] Me_CD3EGRBazPPcKcvPKAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.346 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.346 [XNIO-1 task-2] NDwBdMvUSpqDzG-Qb1Y-Dw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.347 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.347 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.347 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.348 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG com.networknt.schema.TypeValidator debug - validate( "cpQd6dGkUgN5LhraM4zChV7pOKyHV-kVig0x0_u70wc", "cpQd6dGkUgN5LhraM4zChV7pOKyHV-kVig0x0_u70wc", code_challenge) +17:00:46.348 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:46.348 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.348 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.348 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.348 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.349 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.356 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.356 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.356 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.356 [XNIO-1 task-1] 0bdPgL-2QGqaH-dUCDAH-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.356 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.357 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1cfb163e-5d5f-4706-ac14-51ae4b920b39", "1cfb163e-5d5f-4706-ac14-51ae4b920b39", client_id) +17:00:46.357 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.357 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.357 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.357 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.365 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.366 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.366 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.366 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.366 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG com.networknt.schema.TypeValidator debug - validate( "_GcGwnx-e8UONTIhXmx28QE06qtXZS7A7lapKrkNOkA", "_GcGwnx-e8UONTIhXmx28QE06qtXZS7A7lapKrkNOkA", code_challenge) +17:00:46.366 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:46.367 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.367 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.367 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.367 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.367 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.377 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.378 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.377 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.380 [XNIO-1 task-1] _BXGtzHeToeTO4VltMbKNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.385 [XNIO-1 task-2] jToReR99SWWP-qKfU0Cx4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SzDRemG5Qu6kdG3I_qkKfQ +17:00:46.387 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.387 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.387 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.387 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:46.388 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.388 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.388 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.388 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.388 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.389 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.389 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.389 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.390 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG com.networknt.schema.TypeValidator debug - validate( "f105ff6d-d5d8-4a2f-9cf9-e80132d611e4", "f105ff6d-d5d8-4a2f-9cf9-e80132d611e4", client_id) +17:00:46.390 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.390 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.390 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.390 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.391 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.395 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.395 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.400 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.399 [XNIO-1 task-2] YxT8YPFVQ4ek4oHbPKH2eg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=T2l2zFGJRjaikAGpu0cPsA +17:00:46.408 [XNIO-1 task-1] e9fFtcQPQqyBCdxMkyMs8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_v2cbAF5St6qFZBt5ek7bA +17:00:46.411 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.411 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.411 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.411 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG com.networknt.schema.TypeValidator debug - validate( "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", "185d4a23-2eb3-4efd-8c0b-c8802a66ef09", client_id) +17:00:46.412 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.412 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.412 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.412 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.412 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.416 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.416 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.416 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.417 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG com.networknt.schema.TypeValidator debug - validate( "6624d344-9a37-4e00-a256-59a261a54eca", "6624d344-9a37-4e00-a256-59a261a54eca", client_id) +17:00:46.417 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.417 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.417 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.417 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.420 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:446034d9 +17:00:46.446 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.447 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.447 [XNIO-1 task-1] P8AqElcjRXOEZdM62a4GRw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.448 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4fd9aefe +17:00:46.453 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.453 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.483 [XNIO-1 task-2] tQTawmIdSrK2azhpRx2b6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ka0bMKE5RBKPiHrVgCG1MQ +17:00:46.494 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:446034d9 +17:00:46.498 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.498 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.499 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.499 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.499 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.499 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.499 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.499 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.508 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.509 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.511 [XNIO-1 task-2] uUXMJg6cTfK-TFe48S3g5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cJwxPGcJQfC7axs52kC0Rw +17:00:46.518 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.518 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.520 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.522 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.522 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.523 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.523 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.523 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.531 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8a5348d5-e37b-4b5f-8f48-0072d11abf65 +17:00:46.533 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.533 [XNIO-1 task-2] __EjXelCQrKrTIWQM4oRQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.533 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8a5348d5-e37b-4b5f-8f48-0072d11abf65 +17:00:46.577 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.578 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.578 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.578 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:46.579 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.579 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.579 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.580 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.580 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.592 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.592 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.592 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.593 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "9aad4332-b99b-4483-87d3-98fd1daf3778", "9aad4332-b99b-4483-87d3-98fd1daf3778", client_id) +17:00:46.593 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.593 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.593 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.593 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.594 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.596 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.596 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.603 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.603 [XNIO-1 task-1] OOmbUdUkRQCo_gjao031Fg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.603 [XNIO-1 task-2] a4j7j6z8TFyjYSJOylCn0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hCB2dDOtQzOdchoUUegGjA +17:00:46.622 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.623 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.624 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.626 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG com.networknt.schema.TypeValidator debug - validate( "b42fff8c-7399-4238-802d-ed5469fad613", "b42fff8c-7399-4238-802d-ed5469fad613", client_id) +17:00:46.627 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.628 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.629 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.629 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.630 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.637 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.637 [XNIO-1 task-1] PEXvQeznRdmAtQniW5eMHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.652 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.653 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.654 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.654 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:46.655 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.655 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.655 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.655 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.655 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.663 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.663 [XNIO-1 task-1] UJgni6GhTQmGW-ToKpy7bQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.667 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.667 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.668 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.668 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG com.networknt.schema.TypeValidator debug - validate( "JYWmDtxPgWqeONJhXCUwXX4bCUOft8fHL0HJXjfYHQY", "JYWmDtxPgWqeONJhXCUwXX4bCUOft8fHL0HJXjfYHQY", code_challenge) +17:00:46.671 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.671 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.671 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.671 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.671 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.671 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:46.672 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.672 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.672 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.672 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.672 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.672 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.673 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.675 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.680 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.680 [XNIO-1 task-2] b4QO85AbQAq0EWAz36IRXg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +Jun 28, 2024 5:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +17:00:46.687 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.687 [XNIO-1 task-1] qfcTRzb4T02za2juxLdHSA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.688 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +17:00:46.690 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.691 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.696 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.696 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.696 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c103f676 +17:00:46.696 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c103f676 +17:00:46.696 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:46.696 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +17:00:46.697 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.697 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +17:00:46.709 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.709 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.709 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.709 [XNIO-1 task-2] EASCe4YURjOsQ4t96MjJgA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +17:00:46.724 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.725 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +17:00:46.726 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.726 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG com.networknt.schema.TypeValidator debug - validate( "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", "f5588ce2-4135-4089-a47f-a9d4e7cbffb4", client_id) +17:00:46.726 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.726 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.727 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.727 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.727 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.743 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.743 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.753 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.753 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.753 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.753 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG com.networknt.schema.TypeValidator debug - validate( "5f143a23-e3c1-40ca-aa05-24900b3e63a5", "5f143a23-e3c1-40ca-aa05-24900b3e63a5", client_id) +17:00:46.753 [XNIO-1 task-2] gRFSuLFMR3Knled2J04HLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=a3p6anS5Q9iXIWBfepxgiw +17:00:46.754 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.754 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.754 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.754 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.754 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.757 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.757 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.757 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.758 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.758 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.758 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.758 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.759 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.766 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.766 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.767 [XNIO-1 task-1] MI-ARTFHSg-dG29A3YAh4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8UaR8Pz1TfWjx4vKcP4lSQ +17:00:46.770 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.771 [XNIO-1 task-2] g75r1I5DSyWbZ2-FmsINHg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.774 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.775 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.775 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.775 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f143a23-e3c1-40ca-aa05-24900b3e63a5", "5f143a23-e3c1-40ca-aa05-24900b3e63a5", client_id) +17:00:46.775 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:46.775 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.776 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.776 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.776 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.776 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.783 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.784 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.784 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.784 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.784 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG com.networknt.schema.TypeValidator debug - validate( "f105ff6d-d5d8-4a2f-9cf9-e80132d611e4", "f105ff6d-d5d8-4a2f-9cf9-e80132d611e4", client_id) +17:00:46.784 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.784 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.785 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.785 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.785 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.787 [XNIO-1 task-1] TdXif5ZOQMSpGNlBLl47PQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ea89pl_kT3KgEPeR2rE8yA +17:00:46.792 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.792 [XNIO-1 task-2] dDJDjr20Ts6rbcnj3J09rA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.792 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.792 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.793 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.793 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "6624d344-9a37-4e00-a256-59a261a54eca", "6624d344-9a37-4e00-a256-59a261a54eca", client_id) +17:00:46.793 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.793 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.793 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.794 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.794 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.794 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.801 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.801 [XNIO-1 task-1] 2RfjNJuqTKqihHcNIHS3Iw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.806 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.806 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.807 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.807 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG com.networknt.schema.TypeValidator debug - validate( "f105ff6d-d5d8-4a2f-9cf9-e80132d611e4", "f105ff6d-d5d8-4a2f-9cf9-e80132d611e4", client_id) +17:00:46.807 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.807 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.807 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.808 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.808 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.814 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.814 [XNIO-1 task-2] OvckrBNHT3et12AdCj5bEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.819 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c103f676 +17:00:46.842 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.842 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.843 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.843 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG com.networknt.schema.TypeValidator debug - validate( "HsQogxUg6YPude7KgxuR9q0Yq548she4UEBHF64i5KI", "HsQogxUg6YPude7KgxuR9q0Yq548she4UEBHF64i5KI", code_challenge) +17:00:46.843 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:46.843 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.844 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.844 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.844 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.844 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.850 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.851 [XNIO-1 task-2] 7yhngNFNTse12NZgf5_ABA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.853 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:46.865 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.865 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.865 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.865 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG com.networknt.schema.TypeValidator debug - validate( "6lBON4R9Zdc5MEqHfn20Bhp3_HdZXTglvgqo4QPUvSQ", "6lBON4R9Zdc5MEqHfn20Bhp3_HdZXTglvgqo4QPUvSQ", code_challenge) +Jun 28, 2024 5:00:47 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +17:00:46.866 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.866 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.866 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.866 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.866 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.873 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.873 [XNIO-1 task-2] 5_k8K_YhTaO_iILMvMLYpA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +17:00:46.884 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:46.884 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.884 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.886 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG com.networknt.schema.TypeValidator debug - validate( "9aad4332-b99b-4483-87d3-98fd1daf3778", "9aad4332-b99b-4483-87d3-98fd1daf3778", client_id) +17:00:46.886 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.886 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.887 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.887 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.887 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.893 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.894 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.896 [XNIO-1 task-2] KO6e-hpjQyKknQVT3LibDg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JYIyUQ7bQmKgqxn8qz7deQ +17:00:46.899 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:446034d9 +17:00:46.921 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:96a5f40c-467a-4e8a-9164-bdb6b906dd28 +17:00:46.933 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.934 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.934 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:46.934 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:46.934 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:46.934 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:46.935 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:46.936 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:46.938 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.938 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.938 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.939 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ZkqZGn8n7SoKNaBl_NUqJCczKq6Jr_TgnrF9z9MOCJ4", "ZkqZGn8n7SoKNaBl_NUqJCczKq6Jr_TgnrF9z9MOCJ4", code_challenge) +17:00:46.939 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:46.939 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.939 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.939 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.939 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.940 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.950 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:46.950 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:46.951 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.950 [XNIO-1 task-1] ISVE0Q34Q3i0x0JSoXIFeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:46.954 [XNIO-1 task-2] fB_oH-89QmOZK_Zh3z3KsA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6Kr-1dDBRm2_LJD4PTxcpg +17:00:46.963 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.963 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:46.964 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:46.964 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG com.networknt.schema.TypeValidator debug - validate( "xavySremqRC_rKEcDtXOpgXH2dmtcf1tD62tt1vT9cA", "xavySremqRC_rKEcDtXOpgXH2dmtcf1tD62tt1vT9cA", code_challenge) +17:00:46.964 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:46.964 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:46.964 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:46.965 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:46.965 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:46.965 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:46.971 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:46.971 [XNIO-1 task-1] kjca-lPYTIOaBSBllIShUg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:47.006 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.006 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:47.006 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.007 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG com.networknt.schema.TypeValidator debug - validate( "-dzuZu3p4OWvmXtXD4ZPfJYs6aFE-RwGv6nqy1DukmQ", "-dzuZu3p4OWvmXtXD4ZPfJYs6aFE-RwGv6nqy1DukmQ", code_challenge) +17:00:47.007 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:47.007 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:47.007 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:47.008 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:47.009 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:47.009 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:47.025 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:47.026 [XNIO-1 task-1] S9Ug4K9ZRvWosPxeCUeVVg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:47.043 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.043 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:47.044 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.044 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", client_id) +17:00:47.044 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:47.044 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:47.045 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:47.045 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:47.045 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:47.056 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:47.056 [XNIO-1 task-1] HQH1qpx7QjmM0eqEo_vOxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:47.069 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.070 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:47.070 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.070 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", "a8b722b9-16e0-49b6-a86a-cd9cdc7af869", client_id) +17:00:47.071 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:47.071 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:47.071 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:47.071 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:47.071 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:47.072 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.072 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.072 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.072 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG com.networknt.schema.TypeValidator debug - validate( "0c6110bd-6761-4926-86a1-ff4f8a38a68c", "0c6110bd-6761-4926-86a1-ff4f8a38a68c", client_id) +17:00:47.072 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:47.073 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:47.074 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:47.074 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:47.075 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:47.079 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:47.080 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:47.103 [XNIO-1 task-1] cbiTPKyAQsu0ONrdo7gLZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=I2MMlZ5gSfGX8n-OHnzHJA +17:00:47.108 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:47.108 [XNIO-1 task-2] Leb4RLYIT_mrv31yXWEIew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +17:00:47.113 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.113 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:47.114 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.114 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", "6e8e80b7-f2bc-4f2a-8293-060c3c81127e", client_id) +17:00:47.114 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:47.115 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:47.115 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:47.115 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:47.115 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +17:00:47.117 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.117 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.117 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.118 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b5c763e-4f45-4f89-b6cc-14d644c57f9b", "6b5c763e-4f45-4f89-b6cc-14d644c57f9b", client_id) +17:00:47.118 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:47.118 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:47.118 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:47.119 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:47.119 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:47.129 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:47.129 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:47.130 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:47.130 [XNIO-1 task-2] D-No1eOiTOyDVBR3QHpKZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:47.131 [XNIO-1 task-1] 8i9lgXd8QTK4MZYHt2j1Xw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WIv1eTy9Sp-pr6R4mAwwAw +17:00:47.136 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.136 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:47.136 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.137 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG com.networknt.schema.TypeValidator debug - validate( "HEOhv4uo8pOQV2MN7xyf3iYmER91oQOVs-wkDQHI-84", "HEOhv4uo8pOQV2MN7xyf3iYmER91oQOVs-wkDQHI-84", code_challenge) +17:00:47.137 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +17:00:47.137 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:47.137 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:47.137 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:47.137 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:47.138 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.138 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.138 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +17:00:47.139 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +17:00:47.139 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +17:00:47.139 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +17:00:47.139 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@6f3284e7 for /oauth2/code +17:00:47.139 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:47.141 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +17:00:47.146 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9aad4332-b99b-4483-87d3-98fd1daf3778 +17:00:47.148 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7f0ef3d3 for /oauth2/code +17:00:47.148 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:47.152 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +17:00:47.152 [XNIO-1 task-2] lUE2dkUqQfya10lO0niZzg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +17:00:47.154 [XNIO-1 task-1] 1ZflMEP7Tg65pgsGcTy6zw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ANtPWjETTBqMZ8vBdsw7tg +17:00:47.159 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.159 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +17:00:47.160 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +17:00:47.160 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae649367-a66f-45d0-a78b-211aa0690d68", "ae649367-a66f-45d0-a78b-211aa0690d68", client_id) +17:00:47.160 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +17:00:47.160 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +17:00:47.160 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +17:00:47.160 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +17:00:47.161 [XNIO-1 task-2] 48nbAR9vSz-Wo1XirHnHPw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth diff --git a/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-key-1.log b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..04a71f8 --- /dev/null +++ b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-key-1.log @@ -0,0 +1,222 @@ + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:43.942 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a569299d +17:00:43.994 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7e1a0b96-2d69-4147-bf71-27171626ea97 +Jun 28, 2024 5:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:44.056 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7e1a0b96-2d69-4147-bf71-27171626ea97 +17:00:44.237 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.315 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5a34f7e-d300-49fd-89e9-cd4e25497f64 +Jun 28, 2024 5:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.342 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.459 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:35f33600 +17:00:44.465 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:35f33600 +17:00:44.543 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a569299d +17:00:44.578 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.583 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:35f33600 +17:00:44.603 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:35f33600 +17:00:44.667 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.694 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:35f33600 +17:00:44.763 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a569299d +17:00:44.783 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:44.796 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f921331 +17:00:44.825 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2cff8cb6-e661-4d15-a894-ca59578e27e2 +17:00:44.845 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:44.869 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:44.873 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f921331 +17:00:44.915 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0f921331 +17:00:44.921 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bc2c0f88-8966-4467-b763-6387cd082c40 +17:00:44.979 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f921331 +17:00:45.004 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0f921331 +17:00:45.045 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0f921331 +17:00:45.281 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:60a6f09d-699b-400e-85b8-005ef0108195 +17:00:45.359 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:01a937db-7d1d-4f73-85cc-b852087352e3 +17:00:45.382 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d24e5110 +17:00:45.385 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d24e5110 +17:00:45.624 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d24e5110 +17:00:45.655 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d24e5110 +17:00:45.718 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d24e5110 +17:00:45.739 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d24e5110 +17:00:45.744 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:de87ae25 +17:00:45.779 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:acd04b95 +17:00:45.849 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:acd04b95 +17:00:45.887 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:de87ae25 +17:00:46.445 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5f143a23-e3c1-40ca-aa05-24900b3e63a5 +17:00:46.462 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8991a2df-9536-4b62-aa6f-f867d6639c89 +17:00:46.468 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +Jun 28, 2024 5:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:46.485 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:46.488 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:895e7450-4200-4a06-a149-5435d010918b +17:00:46.604 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:895e7450-4200-4a06-a149-5435d010918b +17:00:46.640 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a6332661 +17:00:46.642 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a6332661 +17:00:46.858 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.009 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.051 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:08dd2a82 +17:00:47.121 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:08dd2a82 +17:00:47.229 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:33cf996d +17:00:47.231 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:33cf996d +17:00:47.388 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ac5855ca +17:00:47.416 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:33cf996d +17:00:47.460 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:33cf996d +17:00:47.465 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8991a2df-9536-4b62-aa6f-f867d6639c89 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +Jun 28, 2024 5:00:47 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:47.504 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ac5855ca +17:00:47.505 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ac5855ca +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +17:00:47.534 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7ea99e11 +17:00:47.534 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7ea99e11 + +17:00:47.551 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f7f7ea7e-37b5-4d4d-9fe6-d5ce2ed9589a diff --git a/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..eb07964 --- /dev/null +++ b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,3876 @@ +17:00:42.079 [XNIO-1 task-1] jChuChmuSjmNd3anU2pFww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.079 [XNIO-1 task-1] jChuChmuSjmNd3anU2pFww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.080 [XNIO-1 task-1] jChuChmuSjmNd3anU2pFww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.080 [XNIO-1 task-1] jChuChmuSjmNd3anU2pFww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.099 [XNIO-1 task-1] g7jJXhTURsmBM_4jzPwlrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d +17:00:42.099 [XNIO-1 task-1] g7jJXhTURsmBM_4jzPwlrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.100 [XNIO-1 task-1] g7jJXhTURsmBM_4jzPwlrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.100 [XNIO-1 task-1] g7jJXhTURsmBM_4jzPwlrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d +17:00:42.109 [XNIO-1 task-1] g7jJXhTURsmBM_4jzPwlrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d +17:00:42.125 [XNIO-1 task-1] x0ewCHAxQNy0_6DR-ocEWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d, base path is set to: null +17:00:42.125 [XNIO-1 task-1] x0ewCHAxQNy0_6DR-ocEWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.125 [XNIO-1 task-1] x0ewCHAxQNy0_6DR-ocEWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.125 [XNIO-1 task-1] x0ewCHAxQNy0_6DR-ocEWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d, base path is set to: null +17:00:42.126 [XNIO-1 task-1] x0ewCHAxQNy0_6DR-ocEWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d", "fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d", refreshToken) +17:00:42.126 [XNIO-1 task-1] x0ewCHAxQNy0_6DR-ocEWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d is not found.","severity":"ERROR"} +17:00:42.131 [XNIO-1 task-1] 8VjgHicGRWKNZDhVTPPgnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.131 [XNIO-1 task-1] 8VjgHicGRWKNZDhVTPPgnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.132 [XNIO-1 task-1] 8VjgHicGRWKNZDhVTPPgnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.132 [XNIO-1 task-1] 8VjgHicGRWKNZDhVTPPgnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.142 [XNIO-1 task-1] MKWtOi7RQJ-RwmLChtl2EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.147 [XNIO-1 task-1] MKWtOi7RQJ-RwmLChtl2EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.147 [XNIO-1 task-1] MKWtOi7RQJ-RwmLChtl2EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.148 [XNIO-1 task-1] MKWtOi7RQJ-RwmLChtl2EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.148 [XNIO-1 task-1] MKWtOi7RQJ-RwmLChtl2EQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.161 [XNIO-1 task-1] z7MOt8yUSBuJ6F_UOK4usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d +17:00:42.161 [XNIO-1 task-1] z7MOt8yUSBuJ6F_UOK4usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.161 [XNIO-1 task-1] z7MOt8yUSBuJ6F_UOK4usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.162 [XNIO-1 task-1] z7MOt8yUSBuJ6F_UOK4usQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d +17:00:42.164 [XNIO-1 task-1] z7MOt8yUSBuJ6F_UOK4usQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d +17:00:42.172 [XNIO-1 task-1] usTZWJu4SLuh9P1bCDZRkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.173 [XNIO-1 task-1] usTZWJu4SLuh9P1bCDZRkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.173 [XNIO-1 task-1] usTZWJu4SLuh9P1bCDZRkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.174 [XNIO-1 task-1] usTZWJu4SLuh9P1bCDZRkg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.176 [XNIO-1 task-1] usTZWJu4SLuh9P1bCDZRkg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.191 [XNIO-1 task-1] REtGgszQSDiMeNTm-Xv5IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56 +17:00:42.191 [XNIO-1 task-1] REtGgszQSDiMeNTm-Xv5IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.191 [XNIO-1 task-1] REtGgszQSDiMeNTm-Xv5IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.192 [XNIO-1 task-1] REtGgszQSDiMeNTm-Xv5IQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56 +17:00:42.192 [XNIO-1 task-1] REtGgszQSDiMeNTm-Xv5IQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a3f1d379-3025-4d3d-a08e-c7034775bf56 +17:00:42.202 [XNIO-1 task-1] 7H8FFv3lSVSvm7YmUNL-HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.202 [XNIO-1 task-1] 7H8FFv3lSVSvm7YmUNL-HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.203 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a8d7609b +17:00:42.233 [XNIO-1 task-1] 7H8FFv3lSVSvm7YmUNL-HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.233 [XNIO-1 task-1] 7H8FFv3lSVSvm7YmUNL-HQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.234 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a8d7609b +17:00:42.246 [XNIO-1 task-1] mAe0MQY7Tyacl61aiA9JBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/263cdb6e-cab4-4641-b155-38bf4ed3c19d +17:00:42.247 [XNIO-1 task-1] mAe0MQY7Tyacl61aiA9JBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.247 [XNIO-1 task-1] mAe0MQY7Tyacl61aiA9JBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.247 [XNIO-1 task-1] mAe0MQY7Tyacl61aiA9JBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/263cdb6e-cab4-4641-b155-38bf4ed3c19d +17:00:42.248 [XNIO-1 task-1] mAe0MQY7Tyacl61aiA9JBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 263cdb6e-cab4-4641-b155-38bf4ed3c19d +17:00:42.255 [XNIO-1 task-1] VmUZV3nvQr6B2m9J__BTwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56, base path is set to: null +17:00:42.255 [XNIO-1 task-1] VmUZV3nvQr6B2m9J__BTwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.256 [XNIO-1 task-1] VmUZV3nvQr6B2m9J__BTwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.256 [XNIO-1 task-1] VmUZV3nvQr6B2m9J__BTwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56, base path is set to: null +17:00:42.256 [XNIO-1 task-1] VmUZV3nvQr6B2m9J__BTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3f1d379-3025-4d3d-a08e-c7034775bf56", "a3f1d379-3025-4d3d-a08e-c7034775bf56", refreshToken) +17:00:42.263 [XNIO-1 task-1] A-Pb4v97QGyHS4IjDSomTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.291 [XNIO-1 task-1] A-Pb4v97QGyHS4IjDSomTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.292 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cfa1313c +17:00:42.293 [XNIO-1 task-1] A-Pb4v97QGyHS4IjDSomTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.293 [XNIO-1 task-1] A-Pb4v97QGyHS4IjDSomTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.295 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cfa1313c +17:00:42.306 [XNIO-1 task-1] PFFtiwRRRkipXRxo2sPuWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56, base path is set to: null +17:00:42.309 [XNIO-1 task-1] PFFtiwRRRkipXRxo2sPuWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.309 [XNIO-1 task-1] PFFtiwRRRkipXRxo2sPuWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.309 [XNIO-1 task-1] PFFtiwRRRkipXRxo2sPuWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56, base path is set to: null +17:00:42.310 [XNIO-1 task-1] PFFtiwRRRkipXRxo2sPuWw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3f1d379-3025-4d3d-a08e-c7034775bf56", "a3f1d379-3025-4d3d-a08e-c7034775bf56", refreshToken) +17:00:42.330 [XNIO-1 task-1] psKiWdCsSQ2TRx25LyBXig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.330 [XNIO-1 task-1] psKiWdCsSQ2TRx25LyBXig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.330 [XNIO-1 task-1] psKiWdCsSQ2TRx25LyBXig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.331 [XNIO-1 task-1] psKiWdCsSQ2TRx25LyBXig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.333 [XNIO-1 task-1] psKiWdCsSQ2TRx25LyBXig DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.339 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cfa1313c +17:00:42.347 [XNIO-1 task-1] BVOg5_BFQkyGnUxTBIXPOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.347 [XNIO-1 task-1] BVOg5_BFQkyGnUxTBIXPOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.347 [XNIO-1 task-1] BVOg5_BFQkyGnUxTBIXPOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.348 [XNIO-1 task-1] BVOg5_BFQkyGnUxTBIXPOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.356 [XNIO-1 task-1] Xa8aPUcsT5CpDMYVG8kV7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.357 [XNIO-1 task-1] Xa8aPUcsT5CpDMYVG8kV7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.357 [XNIO-1 task-1] Xa8aPUcsT5CpDMYVG8kV7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.357 [XNIO-1 task-1] Xa8aPUcsT5CpDMYVG8kV7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.358 [XNIO-1 task-1] Xa8aPUcsT5CpDMYVG8kV7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a425b468-17de-4d99-8bec-c1c987700b66", "a425b468-17de-4d99-8bec-c1c987700b66", refreshToken) +17:00:42.361 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a8d7609b +17:00:42.372 [XNIO-1 task-1] VMAnnEhVTASsy70DA-9UxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.372 [XNIO-1 task-1] VMAnnEhVTASsy70DA-9UxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.372 [XNIO-1 task-1] VMAnnEhVTASsy70DA-9UxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.373 [XNIO-1 task-1] VMAnnEhVTASsy70DA-9UxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.373 [XNIO-1 task-1] VMAnnEhVTASsy70DA-9UxA DEBUG com.networknt.schema.TypeValidator debug - validate( "a425b468-17de-4d99-8bec-c1c987700b66", "a425b468-17de-4d99-8bec-c1c987700b66", refreshToken) +17:00:42.376 [XNIO-1 task-1] VMAnnEhVTASsy70DA-9UxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a425b468-17de-4d99-8bec-c1c987700b66 is not found.","severity":"ERROR"} +17:00:42.380 [XNIO-1 task-1] YumgkTmLRii-gk2XkZ_HDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56 +17:00:42.380 [XNIO-1 task-1] YumgkTmLRii-gk2XkZ_HDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.380 [XNIO-1 task-1] YumgkTmLRii-gk2XkZ_HDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.381 [XNIO-1 task-1] YumgkTmLRii-gk2XkZ_HDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a3f1d379-3025-4d3d-a08e-c7034775bf56 +17:00:42.382 [XNIO-1 task-1] YumgkTmLRii-gk2XkZ_HDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a3f1d379-3025-4d3d-a08e-c7034775bf56 +17:00:42.416 [XNIO-1 task-1] KCvoPEWVRdSR6yn93zsy3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.416 [XNIO-1 task-1] KCvoPEWVRdSR6yn93zsy3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.417 [XNIO-1 task-1] KCvoPEWVRdSR6yn93zsy3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.417 [XNIO-1 task-1] KCvoPEWVRdSR6yn93zsy3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.418 [XNIO-1 task-1] KCvoPEWVRdSR6yn93zsy3w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.434 [XNIO-1 task-1] j_Rb0wSIT4ajrtCEOkY1eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.434 [XNIO-1 task-1] j_Rb0wSIT4ajrtCEOkY1eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.434 [XNIO-1 task-1] j_Rb0wSIT4ajrtCEOkY1eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.434 [XNIO-1 task-1] j_Rb0wSIT4ajrtCEOkY1eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.435 [XNIO-1 task-1] j_Rb0wSIT4ajrtCEOkY1eg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.442 [XNIO-1 task-1] 3UgaFX0WSv-RcXUZ4ppT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.442 [XNIO-1 task-1] 3UgaFX0WSv-RcXUZ4ppT6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.442 [XNIO-1 task-1] 3UgaFX0WSv-RcXUZ4ppT6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.442 [XNIO-1 task-1] 3UgaFX0WSv-RcXUZ4ppT6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.443 [XNIO-1 task-1] 3UgaFX0WSv-RcXUZ4ppT6w DEBUG com.networknt.schema.TypeValidator debug - validate( "a425b468-17de-4d99-8bec-c1c987700b66", "a425b468-17de-4d99-8bec-c1c987700b66", refreshToken) +17:00:42.443 [XNIO-1 task-1] 3UgaFX0WSv-RcXUZ4ppT6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a425b468-17de-4d99-8bec-c1c987700b66 is not found.","severity":"ERROR"} +17:00:42.447 [XNIO-1 task-1] 0dmC7KFTQIuK_9ENquOySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.447 [XNIO-1 task-1] 0dmC7KFTQIuK_9ENquOySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.447 [XNIO-1 task-1] 0dmC7KFTQIuK_9ENquOySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.447 [XNIO-1 task-1] 0dmC7KFTQIuK_9ENquOySQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.448 [XNIO-1 task-1] 0dmC7KFTQIuK_9ENquOySQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.455 [XNIO-1 task-1] Y5sHpcc2Suap-tvMSn0GdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.455 [XNIO-1 task-1] Y5sHpcc2Suap-tvMSn0GdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.455 [XNIO-1 task-1] Y5sHpcc2Suap-tvMSn0GdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.456 [XNIO-1 task-1] Y5sHpcc2Suap-tvMSn0GdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.456 [XNIO-1 task-1] Y5sHpcc2Suap-tvMSn0GdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a425b468-17de-4d99-8bec-c1c987700b66", "a425b468-17de-4d99-8bec-c1c987700b66", refreshToken) +17:00:42.457 [XNIO-1 task-1] Y5sHpcc2Suap-tvMSn0GdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a425b468-17de-4d99-8bec-c1c987700b66 is not found.","severity":"ERROR"} +17:00:42.460 [XNIO-1 task-1] Xna-VRZqT8Geo9VDMhYM4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/42dc698d-0dfc-47fb-a55f-a78c6d11efe6 +17:00:42.460 [XNIO-1 task-1] Xna-VRZqT8Geo9VDMhYM4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.460 [XNIO-1 task-1] Xna-VRZqT8Geo9VDMhYM4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:42.461 [XNIO-1 task-1] Xna-VRZqT8Geo9VDMhYM4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/42dc698d-0dfc-47fb-a55f-a78c6d11efe6 +17:00:42.461 [XNIO-1 task-1] Xna-VRZqT8Geo9VDMhYM4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 42dc698d-0dfc-47fb-a55f-a78c6d11efe6 +17:00:42.469 [XNIO-1 task-1] Ha8CjbQgTLGf5em0A4pZ1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.470 [XNIO-1 task-1] Ha8CjbQgTLGf5em0A4pZ1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.470 [XNIO-1 task-1] Ha8CjbQgTLGf5em0A4pZ1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.470 [XNIO-1 task-1] Ha8CjbQgTLGf5em0A4pZ1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.471 [XNIO-1 task-1] Ha8CjbQgTLGf5em0A4pZ1w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.493 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07b25019-6e3d-4f15-b754-5c79d91da03a +17:00:42.497 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cfa1313c +17:00:42.498 [XNIO-1 task-1] Y273lPQjTv-wSJW9evjDyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.499 [XNIO-1 task-1] Y273lPQjTv-wSJW9evjDyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.499 [XNIO-1 task-1] Y273lPQjTv-wSJW9evjDyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.499 [XNIO-1 task-1] Y273lPQjTv-wSJW9evjDyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.511 [XNIO-1 task-1] LhmAmtHTTCKE0Z3aio2Cow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.511 [XNIO-1 task-1] LhmAmtHTTCKE0Z3aio2Cow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.511 [XNIO-1 task-1] LhmAmtHTTCKE0Z3aio2Cow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:42.512 [XNIO-1 task-1] LhmAmtHTTCKE0Z3aio2Cow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a425b468-17de-4d99-8bec-c1c987700b66, base path is set to: null +17:00:42.512 [XNIO-1 task-1] LhmAmtHTTCKE0Z3aio2Cow DEBUG com.networknt.schema.TypeValidator debug - validate( "a425b468-17de-4d99-8bec-c1c987700b66", "a425b468-17de-4d99-8bec-c1c987700b66", refreshToken) +17:00:42.512 [XNIO-1 task-1] LhmAmtHTTCKE0Z3aio2Cow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a425b468-17de-4d99-8bec-c1c987700b66 is not found.","severity":"ERROR"} +17:00:42.515 [XNIO-1 task-1] gD1K54ViT5SCF5o5ATGQvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.515 [XNIO-1 task-1] gD1K54ViT5SCF5o5ATGQvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.516 [XNIO-1 task-1] gD1K54ViT5SCF5o5ATGQvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.516 [XNIO-1 task-1] gD1K54ViT5SCF5o5ATGQvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.537 [XNIO-1 task-1] zZLz2VGDRv2YO3sY9D3Uog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.537 [XNIO-1 task-1] zZLz2VGDRv2YO3sY9D3Uog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.537 [XNIO-1 task-1] zZLz2VGDRv2YO3sY9D3Uog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.538 [XNIO-1 task-1] zZLz2VGDRv2YO3sY9D3Uog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.538 [XNIO-1 task-1] zZLz2VGDRv2YO3sY9D3Uog DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.560 [XNIO-1 task-1] 5NE1nnNhTVShLI7YK-B6bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.560 [XNIO-1 task-1] 5NE1nnNhTVShLI7YK-B6bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.560 [XNIO-1 task-1] 5NE1nnNhTVShLI7YK-B6bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.561 [XNIO-1 task-1] 5NE1nnNhTVShLI7YK-B6bQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.569 [XNIO-1 task-1] fAOLKszjRHuUw8XCTb_1Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.570 [XNIO-1 task-1] fAOLKszjRHuUw8XCTb_1Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:42.570 [XNIO-1 task-1] fAOLKszjRHuUw8XCTb_1Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:42.570 [XNIO-1 task-1] fAOLKszjRHuUw8XCTb_1Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.571 [XNIO-1 task-1] fAOLKszjRHuUw8XCTb_1Zg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:42.615 [XNIO-1 task-1] cDJiiI9mQXGi8ICigdzPIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.615 [XNIO-1 task-1] cDJiiI9mQXGi8ICigdzPIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.615 [XNIO-1 task-1] cDJiiI9mQXGi8ICigdzPIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:42.616 [XNIO-1 task-1] cDJiiI9mQXGi8ICigdzPIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.738 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2f6c3881-dfe1-4632-83d3-245f267c7fc9 +17:00:42.810 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6e8e80b7-f2bc-4f2a-8293-060c3c81127e +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +17:00:42.864 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c3b72ad8-24c0-4f65-a31c-f55bfb8b9694 +17:00:42.880 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:cfa1313c +17:00:42.913 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c3b72ad8-24c0-4f65-a31c-f55bfb8b9694 +17:00:42.959 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6deecdb1-8a12-4013-b890-e012812a1f50 +17:00:42.990 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6deecdb1-8a12-4013-b890-e012812a1f50 +17:00:43.012 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d24b2297 +17:00:43.095 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8d1a686b-ff7a-4118-849c-00b1a7b3619a +17:00:43.097 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8d1a686b-ff7a-4118-849c-00b1a7b3619a +17:00:43.100 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:05ebf10e +17:00:43.104 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3ae04b06 +17:00:43.106 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3ae04b06 +17:00:43.202 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e7c11306-9aa1-4967-8492-93f1bc96ce23 +17:00:43.263 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3ae04b06 +17:00:43.419 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e134e59f-f20d-4c3e-83f9-6519e1858fc9 +17:00:43.421 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e134e59f-f20d-4c3e-83f9-6519e1858fc9 +17:00:43.626 [XNIO-1 task-1] CnuS8D8JSa6D7A2QayqMzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.626 [XNIO-1 task-1] CnuS8D8JSa6D7A2QayqMzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.626 [XNIO-1 task-1] CnuS8D8JSa6D7A2QayqMzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:43.626 [XNIO-1 task-1] CnuS8D8JSa6D7A2QayqMzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.627 [XNIO-1 task-1] CnuS8D8JSa6D7A2QayqMzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.631 [XNIO-1 task-1] SbVDFItjSAuh0D6hqmyB2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.631 [XNIO-1 task-1] SbVDFItjSAuh0D6hqmyB2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.631 [XNIO-1 task-1] SbVDFItjSAuh0D6hqmyB2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:43.631 [XNIO-1 task-1] SbVDFItjSAuh0D6hqmyB2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.632 [XNIO-1 task-1] SbVDFItjSAuh0D6hqmyB2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.669 [XNIO-1 task-1] CLo-WmSkQzyrN9j025r1kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.669 [XNIO-1 task-1] CLo-WmSkQzyrN9j025r1kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.670 [XNIO-1 task-1] CLo-WmSkQzyrN9j025r1kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.670 [XNIO-1 task-1] CLo-WmSkQzyrN9j025r1kQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.688 [XNIO-1 task-1] 39mfdwjTQAWkdJQID2zqDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.688 [XNIO-1 task-1] 39mfdwjTQAWkdJQID2zqDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.688 [XNIO-1 task-1] 39mfdwjTQAWkdJQID2zqDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.689 [XNIO-1 task-1] 39mfdwjTQAWkdJQID2zqDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.689 [XNIO-1 task-1] 39mfdwjTQAWkdJQID2zqDg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:43.698 [XNIO-1 task-1] aXprHy5LQnKMo1jheW0JpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.698 [XNIO-1 task-1] aXprHy5LQnKMo1jheW0JpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.698 [XNIO-1 task-1] aXprHy5LQnKMo1jheW0JpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.699 [XNIO-1 task-1] aXprHy5LQnKMo1jheW0JpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.708 [XNIO-1 task-1] HBfcmLLyTtaFVxqIEbmceg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.708 [XNIO-1 task-1] HBfcmLLyTtaFVxqIEbmceg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.708 [XNIO-1 task-1] HBfcmLLyTtaFVxqIEbmceg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.709 [XNIO-1 task-1] HBfcmLLyTtaFVxqIEbmceg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.710 [XNIO-1 task-1] HBfcmLLyTtaFVxqIEbmceg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:43.717 [XNIO-1 task-1] IiqLtHjwRb2GpZkOhmYfRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.718 [XNIO-1 task-1] IiqLtHjwRb2GpZkOhmYfRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.719 [XNIO-1 task-1] IiqLtHjwRb2GpZkOhmYfRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.726 [XNIO-1 task-1] IiqLtHjwRb2GpZkOhmYfRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.737 [XNIO-1 task-1] 9dPqnrNmTuiRThrRIASonA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.739 [XNIO-1 task-1] 9dPqnrNmTuiRThrRIASonA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.739 [XNIO-1 task-1] 9dPqnrNmTuiRThrRIASonA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.740 [XNIO-1 task-1] 9dPqnrNmTuiRThrRIASonA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.740 [XNIO-1 task-1] 9dPqnrNmTuiRThrRIASonA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:43.752 [XNIO-1 task-1] VM0FF43fQgmo5wXUbDG51Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.753 [XNIO-1 task-1] VM0FF43fQgmo5wXUbDG51Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.753 [XNIO-1 task-1] VM0FF43fQgmo5wXUbDG51Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.753 [XNIO-1 task-1] VM0FF43fQgmo5wXUbDG51Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.767 [XNIO-1 task-1] gPywdBo4TyKyNSfFurVL7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c6af442-5c2d-4bbb-b88e-c57818f8420a, base path is set to: null +17:00:43.768 [XNIO-1 task-1] gPywdBo4TyKyNSfFurVL7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.768 [XNIO-1 task-1] gPywdBo4TyKyNSfFurVL7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.768 [XNIO-1 task-1] gPywdBo4TyKyNSfFurVL7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c6af442-5c2d-4bbb-b88e-c57818f8420a, base path is set to: null +17:00:43.770 [XNIO-1 task-1] gPywdBo4TyKyNSfFurVL7w DEBUG com.networknt.schema.TypeValidator debug - validate( "4c6af442-5c2d-4bbb-b88e-c57818f8420a", "4c6af442-5c2d-4bbb-b88e-c57818f8420a", refreshToken) +17:00:43.777 [XNIO-1 task-1] gPywdBo4TyKyNSfFurVL7w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c6af442-5c2d-4bbb-b88e-c57818f8420a is not found.","severity":"ERROR"} +17:00:43.781 [XNIO-1 task-1] LdFViGIDQPWHYKZpozZYgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4c6af442-5c2d-4bbb-b88e-c57818f8420a +17:00:43.783 [XNIO-1 task-1] LdFViGIDQPWHYKZpozZYgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.783 [XNIO-1 task-1] LdFViGIDQPWHYKZpozZYgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.783 [XNIO-1 task-1] LdFViGIDQPWHYKZpozZYgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c6af442-5c2d-4bbb-b88e-c57818f8420a, base path is set to: null +17:00:43.783 [XNIO-1 task-1] LdFViGIDQPWHYKZpozZYgg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c6af442-5c2d-4bbb-b88e-c57818f8420a", "4c6af442-5c2d-4bbb-b88e-c57818f8420a", refreshToken) +17:00:43.784 [XNIO-1 task-1] LdFViGIDQPWHYKZpozZYgg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c6af442-5c2d-4bbb-b88e-c57818f8420a is not found.","severity":"ERROR"} +17:00:43.784 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:55463b26-2a18-4269-8b00-9b66ba521481 +17:00:43.791 [XNIO-1 task-1] wiyJEYRpQbuePfPT2m5rbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.791 [XNIO-1 task-1] wiyJEYRpQbuePfPT2m5rbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.791 [XNIO-1 task-1] wiyJEYRpQbuePfPT2m5rbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:43.791 [XNIO-1 task-1] wiyJEYRpQbuePfPT2m5rbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.791 [XNIO-1 task-1] wiyJEYRpQbuePfPT2m5rbA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.805 [XNIO-1 task-1] JPS4TJCiRxuGwFgLC_RI7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c6af442-5c2d-4bbb-b88e-c57818f8420a, base path is set to: null +17:00:43.805 [XNIO-1 task-1] JPS4TJCiRxuGwFgLC_RI7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.805 [XNIO-1 task-1] JPS4TJCiRxuGwFgLC_RI7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.806 [XNIO-1 task-1] JPS4TJCiRxuGwFgLC_RI7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4c6af442-5c2d-4bbb-b88e-c57818f8420a, base path is set to: null +17:00:43.806 [XNIO-1 task-1] JPS4TJCiRxuGwFgLC_RI7g DEBUG com.networknt.schema.TypeValidator debug - validate( "4c6af442-5c2d-4bbb-b88e-c57818f8420a", "4c6af442-5c2d-4bbb-b88e-c57818f8420a", refreshToken) +17:00:43.806 [XNIO-1 task-1] JPS4TJCiRxuGwFgLC_RI7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4c6af442-5c2d-4bbb-b88e-c57818f8420a is not found.","severity":"ERROR"} +17:00:43.813 [XNIO-1 task-1] V3oPXz7uTVm-AYAwQLgLpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.813 [XNIO-1 task-1] V3oPXz7uTVm-AYAwQLgLpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.813 [XNIO-1 task-1] V3oPXz7uTVm-AYAwQLgLpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:43.814 [XNIO-1 task-1] V3oPXz7uTVm-AYAwQLgLpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.814 [XNIO-1 task-1] V3oPXz7uTVm-AYAwQLgLpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.815 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:55463b26-2a18-4269-8b00-9b66ba521481 +17:00:43.820 [XNIO-1 task-1] NjkpfIz_SpS4NoZ6IOKLCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.821 [XNIO-1 task-1] NjkpfIz_SpS4NoZ6IOKLCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.821 [XNIO-1 task-1] NjkpfIz_SpS4NoZ6IOKLCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:43.821 [XNIO-1 task-1] NjkpfIz_SpS4NoZ6IOKLCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.821 [XNIO-1 task-1] NjkpfIz_SpS4NoZ6IOKLCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c786903-ff29-48a0-906b-cb661f046b66 +17:00:43.827 [XNIO-1 task-1] jDn9_gGhT2O5qOd024ixvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.828 [XNIO-1 task-1] jDn9_gGhT2O5qOd024ixvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.828 [XNIO-1 task-1] jDn9_gGhT2O5qOd024ixvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.828 [XNIO-1 task-1] jDn9_gGhT2O5qOd024ixvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.829 [XNIO-1 task-1] jDn9_gGhT2O5qOd024ixvw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:43.840 [XNIO-1 task-1] _ZCxBFyMRcOUrHDX8SR90A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.840 [XNIO-1 task-1] _ZCxBFyMRcOUrHDX8SR90A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.841 [XNIO-1 task-1] _ZCxBFyMRcOUrHDX8SR90A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.841 [XNIO-1 task-1] _ZCxBFyMRcOUrHDX8SR90A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.850 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:43.851 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:43.853 [XNIO-1 task-1] _Vg5UNG3RLawBuaIwN2w_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.853 [XNIO-1 task-1] _Vg5UNG3RLawBuaIwN2w_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.854 [XNIO-1 task-1] _Vg5UNG3RLawBuaIwN2w_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.855 [XNIO-1 task-1] _Vg5UNG3RLawBuaIwN2w_g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.864 [XNIO-1 task-1] X6jXakihQxuC1nngcLQNpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.865 [XNIO-1 task-1] X6jXakihQxuC1nngcLQNpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.865 [XNIO-1 task-1] X6jXakihQxuC1nngcLQNpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:43.865 [XNIO-1 task-1] X6jXakihQxuC1nngcLQNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.866 [XNIO-1 task-1] X6jXakihQxuC1nngcLQNpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:43.880 [XNIO-1 task-1] dOOHXbvnTlGespTpWb-A2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.881 [XNIO-1 task-1] dOOHXbvnTlGespTpWb-A2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.881 [XNIO-1 task-1] dOOHXbvnTlGespTpWb-A2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.882 [XNIO-1 task-1] dOOHXbvnTlGespTpWb-A2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.894 [XNIO-1 task-1] A71HmpPNSUuGDoKsK5HMrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1, base path is set to: null +17:00:43.894 [XNIO-1 task-1] A71HmpPNSUuGDoKsK5HMrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.894 [XNIO-1 task-1] A71HmpPNSUuGDoKsK5HMrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.895 [XNIO-1 task-1] A71HmpPNSUuGDoKsK5HMrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1, base path is set to: null +17:00:43.895 [XNIO-1 task-1] A71HmpPNSUuGDoKsK5HMrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1", "5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1", refreshToken) +17:00:43.901 [XNIO-1 task-1] A71HmpPNSUuGDoKsK5HMrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c5e7a36-aeaa-4836-a8ff-0dc88c83aaa1 is not found.","severity":"ERROR"} +17:00:43.906 [XNIO-1 task-1] 3kS09O5KS6y27JZ2dIQttA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:43.907 [XNIO-1 task-1] 3kS09O5KS6y27JZ2dIQttA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.907 [XNIO-1 task-1] 3kS09O5KS6y27JZ2dIQttA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.907 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60fc213e +17:00:43.907 [XNIO-1 task-1] 3kS09O5KS6y27JZ2dIQttA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:43.907 [XNIO-1 task-1] 3kS09O5KS6y27JZ2dIQttA DEBUG com.networknt.schema.TypeValidator debug - validate( "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", refreshToken) +17:00:43.913 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d24b2297 +17:00:43.916 [XNIO-1 task-1] LcvhwIRnQO6EbUgnlCRfzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2040b941-18d0-4c27-8760-c5fcd7e166ac, base path is set to: null +17:00:43.916 [XNIO-1 task-1] LcvhwIRnQO6EbUgnlCRfzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.916 [XNIO-1 task-1] LcvhwIRnQO6EbUgnlCRfzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.916 [XNIO-1 task-1] LcvhwIRnQO6EbUgnlCRfzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2040b941-18d0-4c27-8760-c5fcd7e166ac, base path is set to: null +17:00:43.917 [XNIO-1 task-1] LcvhwIRnQO6EbUgnlCRfzA DEBUG com.networknt.schema.TypeValidator debug - validate( "2040b941-18d0-4c27-8760-c5fcd7e166ac", "2040b941-18d0-4c27-8760-c5fcd7e166ac", refreshToken) +17:00:43.932 [XNIO-1 task-1] ak4FcScrSi61gttDdQ85dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2040b941-18d0-4c27-8760-c5fcd7e166ac, base path is set to: null +17:00:43.932 [XNIO-1 task-1] ak4FcScrSi61gttDdQ85dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.932 [XNIO-1 task-1] ak4FcScrSi61gttDdQ85dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.933 [XNIO-1 task-1] ak4FcScrSi61gttDdQ85dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2040b941-18d0-4c27-8760-c5fcd7e166ac, base path is set to: null +17:00:43.933 [XNIO-1 task-1] ak4FcScrSi61gttDdQ85dA DEBUG com.networknt.schema.TypeValidator debug - validate( "2040b941-18d0-4c27-8760-c5fcd7e166ac", "2040b941-18d0-4c27-8760-c5fcd7e166ac", refreshToken) +17:00:43.961 [XNIO-1 task-1] ak4FcScrSi61gttDdQ85dA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2040b941-18d0-4c27-8760-c5fcd7e166ac is not found.","severity":"ERROR"} +17:00:43.970 [XNIO-1 task-1] rPubTBEbQguvhGbdGnh4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.970 [XNIO-1 task-1] rPubTBEbQguvhGbdGnh4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.970 [XNIO-1 task-1] rPubTBEbQguvhGbdGnh4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:43.971 [XNIO-1 task-1] rPubTBEbQguvhGbdGnh4IA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.988 [XNIO-1 task-1] 44PhaJKeScu9qzj178xANw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:43.988 [XNIO-1 task-1] 44PhaJKeScu9qzj178xANw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.988 [XNIO-1 task-1] 44PhaJKeScu9qzj178xANw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.988 [XNIO-1 task-1] 44PhaJKeScu9qzj178xANw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:43.989 [XNIO-1 task-1] 44PhaJKeScu9qzj178xANw DEBUG com.networknt.schema.TypeValidator debug - validate( "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", refreshToken) +17:00:43.997 [XNIO-1 task-1] 392Iq3eGTyyFctm3OJQTaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:43.998 [XNIO-1 task-1] 392Iq3eGTyyFctm3OJQTaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:43.998 [XNIO-1 task-1] 392Iq3eGTyyFctm3OJQTaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:43.998 [XNIO-1 task-1] 392Iq3eGTyyFctm3OJQTaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:43.998 [XNIO-1 task-1] 392Iq3eGTyyFctm3OJQTaA DEBUG com.networknt.schema.TypeValidator debug - validate( "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", refreshToken) +17:00:44.001 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.011 [XNIO-1 task-1] aKSaEgKPR3asvu5EVBC78Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.011 [XNIO-1 task-1] aKSaEgKPR3asvu5EVBC78Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.012 [XNIO-1 task-1] aKSaEgKPR3asvu5EVBC78Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.012 [XNIO-1 task-1] aKSaEgKPR3asvu5EVBC78Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.013 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60fc213e +17:00:44.018 [XNIO-1 task-1] b-LIYDp2RnShSJiDtcdnjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.018 [XNIO-1 task-1] b-LIYDp2RnShSJiDtcdnjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.019 [XNIO-1 task-1] b-LIYDp2RnShSJiDtcdnjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.019 [XNIO-1 task-1] b-LIYDp2RnShSJiDtcdnjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.020 [XNIO-1 task-1] b-LIYDp2RnShSJiDtcdnjg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:44.046 [XNIO-1 task-1] E53Db5toSNSZxE_q6ubGoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.046 [XNIO-1 task-1] E53Db5toSNSZxE_q6ubGoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.046 [XNIO-1 task-1] E53Db5toSNSZxE_q6ubGoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.046 [XNIO-1 task-1] E53Db5toSNSZxE_q6ubGoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.046 [XNIO-1 task-1] E53Db5toSNSZxE_q6ubGoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.048 [XNIO-1 task-1] E53Db5toSNSZxE_q6ubGoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.051 [XNIO-1 task-1] zGfkcpoHTl-5CckG8a2iGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.051 [XNIO-1 task-1] zGfkcpoHTl-5CckG8a2iGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.052 [XNIO-1 task-1] zGfkcpoHTl-5CckG8a2iGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.052 [XNIO-1 task-1] zGfkcpoHTl-5CckG8a2iGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.052 [XNIO-1 task-1] zGfkcpoHTl-5CckG8a2iGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.054 [XNIO-1 task-1] zGfkcpoHTl-5CckG8a2iGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.066 [XNIO-1 task-1] XdL05J2WSOm6pf_x90DL_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.066 [XNIO-1 task-1] XdL05J2WSOm6pf_x90DL_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.066 [XNIO-1 task-1] XdL05J2WSOm6pf_x90DL_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.067 [XNIO-1 task-1] XdL05J2WSOm6pf_x90DL_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.067 [XNIO-1 task-1] XdL05J2WSOm6pf_x90DL_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.069 [XNIO-1 task-1] XdL05J2WSOm6pf_x90DL_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.073 [XNIO-1 task-1] -DgD9UZkQoKiQMxmt4YMAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.073 [XNIO-1 task-1] -DgD9UZkQoKiQMxmt4YMAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.073 [XNIO-1 task-1] -DgD9UZkQoKiQMxmt4YMAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.074 [XNIO-1 task-1] -DgD9UZkQoKiQMxmt4YMAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.074 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a8b722b9-16e0-49b6-a86a-cd9cdc7af869 +17:00:44.078 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a8b722b9-16e0-49b6-a86a-cd9cdc7af869 +17:00:44.081 [XNIO-1 task-1] UAaGz4kxSaSCbm1tB2zIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.081 [XNIO-1 task-1] UAaGz4kxSaSCbm1tB2zIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.081 [XNIO-1 task-1] UAaGz4kxSaSCbm1tB2zIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.081 [XNIO-1 task-1] UAaGz4kxSaSCbm1tB2zIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.082 [XNIO-1 task-1] UAaGz4kxSaSCbm1tB2zIDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.083 [XNIO-1 task-1] UAaGz4kxSaSCbm1tB2zIDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.087 [XNIO-1 task-1] UJSGK-o1TjaHX36u-OLmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.087 [XNIO-1 task-1] UJSGK-o1TjaHX36u-OLmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.087 [XNIO-1 task-1] UJSGK-o1TjaHX36u-OLmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.088 [XNIO-1 task-1] UJSGK-o1TjaHX36u-OLmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.089 [XNIO-1 task-1] UJSGK-o1TjaHX36u-OLmOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.090 [XNIO-1 task-1] UJSGK-o1TjaHX36u-OLmOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.099 [XNIO-1 task-1] nLacj-9FQdGAQIc5PHNiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.099 [XNIO-1 task-1] nLacj-9FQdGAQIc5PHNiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.100 [XNIO-1 task-1] nLacj-9FQdGAQIc5PHNiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.101 [XNIO-1 task-1] nLacj-9FQdGAQIc5PHNiCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.105 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ada1a176 +17:00:44.110 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ada1a176 +17:00:44.127 [XNIO-1 task-1] Gab14t1-SI6WH7Me5UU2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.127 [XNIO-1 task-1] Gab14t1-SI6WH7Me5UU2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.127 [XNIO-1 task-1] Gab14t1-SI6WH7Me5UU2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.127 [XNIO-1 task-1] Gab14t1-SI6WH7Me5UU2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.128 [XNIO-1 task-1] Gab14t1-SI6WH7Me5UU2-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.129 [XNIO-1 task-1] Gab14t1-SI6WH7Me5UU2-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.132 [XNIO-1 task-1] z1WapW5ySEGBEWfUXqjIUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.132 [XNIO-1 task-1] z1WapW5ySEGBEWfUXqjIUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.132 [XNIO-1 task-1] z1WapW5ySEGBEWfUXqjIUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.132 [XNIO-1 task-1] z1WapW5ySEGBEWfUXqjIUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.133 [XNIO-1 task-1] z1WapW5ySEGBEWfUXqjIUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.134 [XNIO-1 task-1] z1WapW5ySEGBEWfUXqjIUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.137 [XNIO-1 task-1] ypowbaV6S4mKV_8COYW_Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.137 [XNIO-1 task-1] ypowbaV6S4mKV_8COYW_Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.137 [XNIO-1 task-1] ypowbaV6S4mKV_8COYW_Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.138 [XNIO-1 task-1] ypowbaV6S4mKV_8COYW_Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.138 [XNIO-1 task-1] ypowbaV6S4mKV_8COYW_Ow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.141 [XNIO-1 task-1] ypowbaV6S4mKV_8COYW_Ow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.145 [XNIO-1 task-1] SiworcrfRumplXy24p2MPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.145 [XNIO-1 task-1] SiworcrfRumplXy24p2MPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.145 [XNIO-1 task-1] SiworcrfRumplXy24p2MPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.145 [XNIO-1 task-1] SiworcrfRumplXy24p2MPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.148 [XNIO-1 task-1] SiworcrfRumplXy24p2MPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.154 [XNIO-1 task-1] SiworcrfRumplXy24p2MPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.159 [XNIO-1 task-1] PUAQv8TXR6CjoCzmSMVtAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.159 [XNIO-1 task-1] PUAQv8TXR6CjoCzmSMVtAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.159 [XNIO-1 task-1] PUAQv8TXR6CjoCzmSMVtAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.160 [XNIO-1 task-1] PUAQv8TXR6CjoCzmSMVtAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.160 [XNIO-1 task-1] PUAQv8TXR6CjoCzmSMVtAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.166 [XNIO-1 task-1] PUAQv8TXR6CjoCzmSMVtAQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.171 [XNIO-1 task-1] iPlKmXcISG24G92hJN9gEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.171 [XNIO-1 task-1] iPlKmXcISG24G92hJN9gEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.171 [XNIO-1 task-1] iPlKmXcISG24G92hJN9gEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.171 [XNIO-1 task-1] iPlKmXcISG24G92hJN9gEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.172 [XNIO-1 task-1] iPlKmXcISG24G92hJN9gEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.173 [XNIO-1 task-1] iPlKmXcISG24G92hJN9gEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.179 [XNIO-1 task-1] L8Xyo2L8QP-YaV0uUgrfpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.180 [XNIO-1 task-1] L8Xyo2L8QP-YaV0uUgrfpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.180 [XNIO-1 task-1] L8Xyo2L8QP-YaV0uUgrfpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.181 [XNIO-1 task-1] L8Xyo2L8QP-YaV0uUgrfpA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.207 [XNIO-1 task-1] xh-soL6uTw-GTCzl5o4nbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:44.207 [XNIO-1 task-1] xh-soL6uTw-GTCzl5o4nbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.207 [XNIO-1 task-1] xh-soL6uTw-GTCzl5o4nbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.208 [XNIO-1 task-1] xh-soL6uTw-GTCzl5o4nbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07, base path is set to: null +17:00:44.209 [XNIO-1 task-1] xh-soL6uTw-GTCzl5o4nbA DEBUG com.networknt.schema.TypeValidator debug - validate( "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", "14d4dfa5-bfad-4e77-a2ea-1fe48679cb07", refreshToken) +17:00:44.209 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.221 [XNIO-1 task-1] xRCjKP1ITnGN0I0ZMyCSJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.222 [XNIO-1 task-1] xRCjKP1ITnGN0I0ZMyCSJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.222 [XNIO-1 task-1] xRCjKP1ITnGN0I0ZMyCSJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.222 [XNIO-1 task-1] xRCjKP1ITnGN0I0ZMyCSJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.222 [XNIO-1 task-1] xRCjKP1ITnGN0I0ZMyCSJw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:44.234 [XNIO-1 task-1] VOvx6uMlSGy-n2YxyFBN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.234 [XNIO-1 task-1] VOvx6uMlSGy-n2YxyFBN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.234 [XNIO-1 task-1] VOvx6uMlSGy-n2YxyFBN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.234 [XNIO-1 task-1] VOvx6uMlSGy-n2YxyFBN_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.235 [XNIO-1 task-1] VOvx6uMlSGy-n2YxyFBN_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.237 [XNIO-1 task-1] VOvx6uMlSGy-n2YxyFBN_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.243 [XNIO-1 task-1] iaR9EbqSTh-J6LxQu_oSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.243 [XNIO-1 task-1] iaR9EbqSTh-J6LxQu_oSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.243 [XNIO-1 task-1] iaR9EbqSTh-J6LxQu_oSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.244 [XNIO-1 task-1] iaR9EbqSTh-J6LxQu_oSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.244 [XNIO-1 task-1] iaR9EbqSTh-J6LxQu_oSRA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.246 [XNIO-1 task-1] iaR9EbqSTh-J6LxQu_oSRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.249 [XNIO-1 task-1] yIJvw6SGRE2Ybln3xG0Eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.249 [XNIO-1 task-1] yIJvw6SGRE2Ybln3xG0Eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.249 [XNIO-1 task-1] yIJvw6SGRE2Ybln3xG0Eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.249 [XNIO-1 task-1] yIJvw6SGRE2Ybln3xG0Eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.250 [XNIO-1 task-1] yIJvw6SGRE2Ybln3xG0Eaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.253 [XNIO-1 task-1] yIJvw6SGRE2Ybln3xG0Eaw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.263 [XNIO-1 task-1] ejHIF_fiQDqJRwGDQ1llUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.264 [XNIO-1 task-1] ejHIF_fiQDqJRwGDQ1llUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.264 [XNIO-1 task-1] ejHIF_fiQDqJRwGDQ1llUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.264 [XNIO-1 task-1] ejHIF_fiQDqJRwGDQ1llUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.264 [XNIO-1 task-1] ejHIF_fiQDqJRwGDQ1llUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.267 [XNIO-1 task-1] ejHIF_fiQDqJRwGDQ1llUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.271 [XNIO-1 task-1] L2f1gDm-SXidCczDojXwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.271 [XNIO-1 task-1] L2f1gDm-SXidCczDojXwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.271 [XNIO-1 task-1] L2f1gDm-SXidCczDojXwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.271 [XNIO-1 task-1] L2f1gDm-SXidCczDojXwEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.272 [XNIO-1 task-1] L2f1gDm-SXidCczDojXwEA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.280 [XNIO-1 task-1] sUjrjc56Q06X0voQCWtGiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.280 [XNIO-1 task-1] sUjrjc56Q06X0voQCWtGiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.280 [XNIO-1 task-1] sUjrjc56Q06X0voQCWtGiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.281 [XNIO-1 task-1] sUjrjc56Q06X0voQCWtGiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.281 [XNIO-1 task-1] sUjrjc56Q06X0voQCWtGiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.293 [XNIO-1 task-1] JOFhbo2_Rp-NN5P5-jzs8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.293 [XNIO-1 task-1] JOFhbo2_Rp-NN5P5-jzs8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.293 [XNIO-1 task-1] JOFhbo2_Rp-NN5P5-jzs8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.294 [XNIO-1 task-1] JOFhbo2_Rp-NN5P5-jzs8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.314 [XNIO-1 task-1] jcfxaVWkR6-oET9meVdBqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64, base path is set to: null +17:00:44.314 [XNIO-1 task-1] jcfxaVWkR6-oET9meVdBqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.314 [XNIO-1 task-1] jcfxaVWkR6-oET9meVdBqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.314 [XNIO-1 task-1] jcfxaVWkR6-oET9meVdBqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64, base path is set to: null +17:00:44.315 [XNIO-1 task-1] jcfxaVWkR6-oET9meVdBqg DEBUG com.networknt.schema.TypeValidator debug - validate( "b5a34f7e-d300-49fd-89e9-cd4e25497f64", "b5a34f7e-d300-49fd-89e9-cd4e25497f64", refreshToken) +17:00:44.335 [XNIO-1 task-1] jcfxaVWkR6-oET9meVdBqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b5a34f7e-d300-49fd-89e9-cd4e25497f64 is not found.","severity":"ERROR"} +17:00:44.341 [XNIO-1 task-1] cSYI6o5eQQCaWeTa1rNARQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.342 [XNIO-1 task-1] cSYI6o5eQQCaWeTa1rNARQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.342 [XNIO-1 task-1] cSYI6o5eQQCaWeTa1rNARQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.342 [XNIO-1 task-1] cSYI6o5eQQCaWeTa1rNARQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.384 [XNIO-1 task-1] 7n9X2STbSWSgLBb_VdPNkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.385 [XNIO-1 task-1] 7n9X2STbSWSgLBb_VdPNkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.385 [XNIO-1 task-1] 7n9X2STbSWSgLBb_VdPNkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.386 [XNIO-1 task-1] 7n9X2STbSWSgLBb_VdPNkg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.386 [XNIO-1 task-1] 7n9X2STbSWSgLBb_VdPNkg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:44.400 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ada1a176 +17:00:44.431 [XNIO-1 task-1] 2vSAAVb7THaXKxeVxLaAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.431 [XNIO-1 task-1] 2vSAAVb7THaXKxeVxLaAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.431 [XNIO-1 task-1] 2vSAAVb7THaXKxeVxLaAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.432 [XNIO-1 task-1] 2vSAAVb7THaXKxeVxLaAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.432 [XNIO-1 task-1] 2vSAAVb7THaXKxeVxLaAOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.438 [XNIO-1 task-1] XLwvOcNLQq-27yx-W_EyzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.438 [XNIO-1 task-1] XLwvOcNLQq-27yx-W_EyzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.438 [XNIO-1 task-1] XLwvOcNLQq-27yx-W_EyzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.438 [XNIO-1 task-1] XLwvOcNLQq-27yx-W_EyzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.438 [XNIO-1 task-1] XLwvOcNLQq-27yx-W_EyzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:44.463 [XNIO-1 task-1] lTeanyNWQhim0yjmta2Mgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.464 [XNIO-1 task-1] lTeanyNWQhim0yjmta2Mgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.464 [XNIO-1 task-1] lTeanyNWQhim0yjmta2Mgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.464 [XNIO-1 task-1] lTeanyNWQhim0yjmta2Mgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.464 [XNIO-1 task-1] lTeanyNWQhim0yjmta2Mgw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:44.467 [XNIO-1 task-1] lTeanyNWQhim0yjmta2Mgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:44.471 [XNIO-1 task-1] -zj-GnINRL2fJ1GvJSGl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.471 [XNIO-1 task-1] -zj-GnINRL2fJ1GvJSGl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.471 [XNIO-1 task-1] -zj-GnINRL2fJ1GvJSGl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.472 [XNIO-1 task-1] -zj-GnINRL2fJ1GvJSGl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.472 [XNIO-1 task-1] -zj-GnINRL2fJ1GvJSGl3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.474 [XNIO-1 task-1] -zj-GnINRL2fJ1GvJSGl3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.479 [XNIO-1 task-1] yen8sIQbS7yj9jL_oMP5iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.479 [XNIO-1 task-1] yen8sIQbS7yj9jL_oMP5iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.479 [XNIO-1 task-1] yen8sIQbS7yj9jL_oMP5iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.479 [XNIO-1 task-1] yen8sIQbS7yj9jL_oMP5iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.480 [XNIO-1 task-1] yen8sIQbS7yj9jL_oMP5iQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.482 [XNIO-1 task-1] s8W1c7kxQLuXgIWZw2esWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.483 [XNIO-1 task-1] s8W1c7kxQLuXgIWZw2esWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.483 [XNIO-1 task-1] s8W1c7kxQLuXgIWZw2esWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.483 [XNIO-1 task-1] s8W1c7kxQLuXgIWZw2esWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.483 [XNIO-1 task-1] s8W1c7kxQLuXgIWZw2esWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:44.483 [XNIO-1 task-1] s8W1c7kxQLuXgIWZw2esWg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:44.485 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:41bbeccc-4824-4341-9547-98114ea06564 +17:00:44.486 [XNIO-1 task-1] MGGRG5xPTYC9wKaQhaE_eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64, base path is set to: null +17:00:44.486 [XNIO-1 task-1] MGGRG5xPTYC9wKaQhaE_eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.486 [XNIO-1 task-1] MGGRG5xPTYC9wKaQhaE_eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.486 [XNIO-1 task-1] MGGRG5xPTYC9wKaQhaE_eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64, base path is set to: null +17:00:44.487 [XNIO-1 task-1] MGGRG5xPTYC9wKaQhaE_eA DEBUG com.networknt.schema.TypeValidator debug - validate( "b5a34f7e-d300-49fd-89e9-cd4e25497f64", "b5a34f7e-d300-49fd-89e9-cd4e25497f64", refreshToken) +17:00:44.489 [XNIO-1 task-1] MGGRG5xPTYC9wKaQhaE_eA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b5a34f7e-d300-49fd-89e9-cd4e25497f64 is not found.","severity":"ERROR"} +17:00:44.495 [XNIO-1 task-1] MYN5W_u5QS-st44MR7_G8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:44.497 [XNIO-1 task-1] MYN5W_u5QS-st44MR7_G8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.497 [XNIO-1 task-1] MYN5W_u5QS-st44MR7_G8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.498 [XNIO-1 task-1] MYN5W_u5QS-st44MR7_G8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:44.499 [XNIO-1 task-1] MYN5W_u5QS-st44MR7_G8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:44.506 [XNIO-1 task-1] OTJr3x-tQ96oiryDM2eoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.506 [XNIO-1 task-1] OTJr3x-tQ96oiryDM2eoGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.508 [XNIO-1 task-1] OTJr3x-tQ96oiryDM2eoGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.508 [XNIO-1 task-1] OTJr3x-tQ96oiryDM2eoGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.508 [XNIO-1 task-1] OTJr3x-tQ96oiryDM2eoGA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:44.509 [XNIO-1 task-1] OTJr3x-tQ96oiryDM2eoGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:44.512 [XNIO-1 task-1] FUA0aBAwR8GCDCafjV07kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.512 [XNIO-1 task-1] FUA0aBAwR8GCDCafjV07kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.513 [XNIO-1 task-1] FUA0aBAwR8GCDCafjV07kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.513 [XNIO-1 task-1] FUA0aBAwR8GCDCafjV07kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.513 [XNIO-1 task-1] FUA0aBAwR8GCDCafjV07kg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 +17:00:44.521 [XNIO-1 task-1] FUA0aBAwR8GCDCafjV07kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 14d4dfa5-bfad-4e77-a2ea-1fe48679cb07 is not found.","severity":"ERROR"} +17:00:44.526 [XNIO-1 task-1] LzBNopVESPSU1GvgT_zs9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.526 [XNIO-1 task-1] LzBNopVESPSU1GvgT_zs9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.526 [XNIO-1 task-1] LzBNopVESPSU1GvgT_zs9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.526 [XNIO-1 task-1] LzBNopVESPSU1GvgT_zs9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.527 [XNIO-1 task-1] LzBNopVESPSU1GvgT_zs9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.533 [XNIO-1 task-1] TMCF1raMRHCxZraGdlDDSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.533 [XNIO-1 task-1] TMCF1raMRHCxZraGdlDDSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.533 [XNIO-1 task-1] TMCF1raMRHCxZraGdlDDSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.533 [XNIO-1 task-1] TMCF1raMRHCxZraGdlDDSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.534 [XNIO-1 task-1] TMCF1raMRHCxZraGdlDDSw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:44.534 [XNIO-1 task-1] TMCF1raMRHCxZraGdlDDSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:44.540 [XNIO-1 task-1] KT1UGJzOT0C32xQBJ0wWBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.540 [XNIO-1 task-1] KT1UGJzOT0C32xQBJ0wWBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.540 [XNIO-1 task-1] KT1UGJzOT0C32xQBJ0wWBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.540 [XNIO-1 task-1] KT1UGJzOT0C32xQBJ0wWBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.542 [XNIO-1 task-1] KT1UGJzOT0C32xQBJ0wWBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.545 [XNIO-1 task-1] G5gjyqPUQYCG9JhNdb1r0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.545 [XNIO-1 task-1] G5gjyqPUQYCG9JhNdb1r0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.545 [XNIO-1 task-1] G5gjyqPUQYCG9JhNdb1r0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.545 [XNIO-1 task-1] G5gjyqPUQYCG9JhNdb1r0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.546 [XNIO-1 task-1] G5gjyqPUQYCG9JhNdb1r0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.546 [XNIO-1 task-1] G5gjyqPUQYCG9JhNdb1r0g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:44.556 [XNIO-1 task-1] AHNxzr6tTQSNRBfj_tBG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:44.556 [XNIO-1 task-1] AHNxzr6tTQSNRBfj_tBG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.556 [XNIO-1 task-1] AHNxzr6tTQSNRBfj_tBG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.557 [XNIO-1 task-1] AHNxzr6tTQSNRBfj_tBG1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:44.558 [XNIO-1 task-1] AHNxzr6tTQSNRBfj_tBG1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:44.562 [XNIO-1 task-1] iMS8S9zNT7ifNcmxb9Hhfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.562 [XNIO-1 task-1] iMS8S9zNT7ifNcmxb9Hhfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.563 [XNIO-1 task-1] iMS8S9zNT7ifNcmxb9Hhfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.563 [XNIO-1 task-1] iMS8S9zNT7ifNcmxb9Hhfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:44.563 [XNIO-1 task-1] iMS8S9zNT7ifNcmxb9Hhfg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:44.563 [XNIO-1 task-1] iMS8S9zNT7ifNcmxb9Hhfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:44.575 [XNIO-1 task-1] clzOK2zXRziyfroJxzpmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.575 [XNIO-1 task-1] clzOK2zXRziyfroJxzpmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.575 [XNIO-1 task-1] clzOK2zXRziyfroJxzpmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.575 [XNIO-1 task-1] clzOK2zXRziyfroJxzpmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.576 [XNIO-1 task-1] clzOK2zXRziyfroJxzpmtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.582 [XNIO-1 task-1] hNDLmxCeTS2mPk9joIdLYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.582 [XNIO-1 task-1] hNDLmxCeTS2mPk9joIdLYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.582 [XNIO-1 task-1] hNDLmxCeTS2mPk9joIdLYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.583 [XNIO-1 task-1] hNDLmxCeTS2mPk9joIdLYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.593 [XNIO-1 task-1] wGa3EewERPCrEg8zuwXRDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:44.593 [XNIO-1 task-1] wGa3EewERPCrEg8zuwXRDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.593 [XNIO-1 task-1] wGa3EewERPCrEg8zuwXRDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.593 [XNIO-1 task-1] wGa3EewERPCrEg8zuwXRDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:44.594 [XNIO-1 task-1] wGa3EewERPCrEg8zuwXRDA DEBUG com.networknt.schema.TypeValidator debug - validate( "4245efda-7798-424b-9ecb-4913188fe5ee", "4245efda-7798-424b-9ecb-4913188fe5ee", refreshToken) +17:00:44.595 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.607 [XNIO-1 task-1] rPNrz-z1SwGJ0PRInBdeJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.607 [XNIO-1 task-1] rPNrz-z1SwGJ0PRInBdeJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.607 [XNIO-1 task-1] rPNrz-z1SwGJ0PRInBdeJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.608 [XNIO-1 task-1] rPNrz-z1SwGJ0PRInBdeJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.608 [XNIO-1 task-1] rPNrz-z1SwGJ0PRInBdeJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b5a34f7e-d300-49fd-89e9-cd4e25497f64 +17:00:44.615 [XNIO-1 task-1] -R2hFI4lSB2NpCB5z1kabA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.615 [XNIO-1 task-1] -R2hFI4lSB2NpCB5z1kabA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.615 [XNIO-1 task-1] -R2hFI4lSB2NpCB5z1kabA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.615 [XNIO-1 task-1] -R2hFI4lSB2NpCB5z1kabA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.616 [XNIO-1 task-1] -R2hFI4lSB2NpCB5z1kabA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:44.638 [XNIO-1 task-1] Hdygc38vTpyyIEIwnz0eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.638 [XNIO-1 task-1] Hdygc38vTpyyIEIwnz0eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.638 [XNIO-1 task-1] Hdygc38vTpyyIEIwnz0eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.639 [XNIO-1 task-1] Hdygc38vTpyyIEIwnz0eaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.639 [XNIO-1 task-1] Hdygc38vTpyyIEIwnz0eaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.665 [XNIO-1 task-1] OCb8tzOBSS-nSBIEX3dnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.665 [XNIO-1 task-1] OCb8tzOBSS-nSBIEX3dnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.665 [XNIO-1 task-1] OCb8tzOBSS-nSBIEX3dnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.665 [XNIO-1 task-1] OCb8tzOBSS-nSBIEX3dnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.666 [XNIO-1 task-1] OCb8tzOBSS-nSBIEX3dnMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.671 [XNIO-1 task-1] X4P1s5DQTZGPhXXCzW4lyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.672 [XNIO-1 task-1] X4P1s5DQTZGPhXXCzW4lyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.672 [XNIO-1 task-1] X4P1s5DQTZGPhXXCzW4lyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:44.672 [XNIO-1 task-1] X4P1s5DQTZGPhXXCzW4lyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.673 [XNIO-1 task-1] X4P1s5DQTZGPhXXCzW4lyw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:44.689 [XNIO-1 task-1] QYkkRRKESV21LUfpXLVoOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.689 [XNIO-1 task-1] QYkkRRKESV21LUfpXLVoOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.689 [XNIO-1 task-1] QYkkRRKESV21LUfpXLVoOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.689 [XNIO-1 task-1] QYkkRRKESV21LUfpXLVoOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.690 [XNIO-1 task-1] QYkkRRKESV21LUfpXLVoOw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.693 [XNIO-1 task-1] U_ww1EXrS2G9iPLHV11aIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:44.693 [XNIO-1 task-1] U_ww1EXrS2G9iPLHV11aIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.693 [XNIO-1 task-1] U_ww1EXrS2G9iPLHV11aIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.693 [XNIO-1 task-1] U_ww1EXrS2G9iPLHV11aIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:44.694 [XNIO-1 task-1] U_ww1EXrS2G9iPLHV11aIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", refreshToken) +17:00:44.694 [XNIO-1 task-1] U_ww1EXrS2G9iPLHV11aIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e68c56c0-83fb-4a9b-85c9-3352fa887d1c is not found.","severity":"ERROR"} +17:00:44.698 [XNIO-1 task-1] HolN15vQSXSr5JeqFwwQfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.699 [XNIO-1 task-1] HolN15vQSXSr5JeqFwwQfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.699 [XNIO-1 task-1] HolN15vQSXSr5JeqFwwQfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.699 [XNIO-1 task-1] HolN15vQSXSr5JeqFwwQfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.700 [XNIO-1 task-1] HolN15vQSXSr5JeqFwwQfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:44.725 [XNIO-1 task-1] oulE7x35RDqeiB_h2WOS-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:44.726 [XNIO-1 task-1] oulE7x35RDqeiB_h2WOS-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.726 [XNIO-1 task-1] oulE7x35RDqeiB_h2WOS-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.726 [XNIO-1 task-1] oulE7x35RDqeiB_h2WOS-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:44.726 [XNIO-1 task-1] oulE7x35RDqeiB_h2WOS-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", refreshToken) +17:00:44.727 [XNIO-1 task-1] oulE7x35RDqeiB_h2WOS-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e68c56c0-83fb-4a9b-85c9-3352fa887d1c is not found.","severity":"ERROR"} +17:00:44.731 [XNIO-1 task-1] gk_2AhkFQHqDHtmPo5dAiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.731 [XNIO-1 task-1] gk_2AhkFQHqDHtmPo5dAiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.731 [XNIO-1 task-1] gk_2AhkFQHqDHtmPo5dAiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.732 [XNIO-1 task-1] gk_2AhkFQHqDHtmPo5dAiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.732 [XNIO-1 task-1] gk_2AhkFQHqDHtmPo5dAiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.734 [XNIO-1 task-1] gk_2AhkFQHqDHtmPo5dAiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:44.738 [XNIO-1 task-1] 7I8VKBk_TvyKFYoDKRCA-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.738 [XNIO-1 task-1] 7I8VKBk_TvyKFYoDKRCA-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.739 [XNIO-1 task-1] 7I8VKBk_TvyKFYoDKRCA-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.739 [XNIO-1 task-1] 7I8VKBk_TvyKFYoDKRCA-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.762 [XNIO-1 task-1] GVdWLq1HSRSNNQmsBUMDMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:44.768 [XNIO-1 task-1] GVdWLq1HSRSNNQmsBUMDMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.768 [XNIO-1 task-1] GVdWLq1HSRSNNQmsBUMDMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.768 [XNIO-1 task-1] GVdWLq1HSRSNNQmsBUMDMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:44.770 [XNIO-1 task-1] GVdWLq1HSRSNNQmsBUMDMw DEBUG com.networknt.schema.TypeValidator debug - validate( "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", refreshToken) +17:00:44.770 [XNIO-1 task-1] GVdWLq1HSRSNNQmsBUMDMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e68c56c0-83fb-4a9b-85c9-3352fa887d1c is not found.","severity":"ERROR"} +17:00:44.773 [XNIO-1 task-1] TiqnsU4iQqyiX-S3FuAI9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.773 [XNIO-1 task-1] TiqnsU4iQqyiX-S3FuAI9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.773 [XNIO-1 task-1] TiqnsU4iQqyiX-S3FuAI9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.774 [XNIO-1 task-1] TiqnsU4iQqyiX-S3FuAI9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.776 [XNIO-1 task-1] TiqnsU4iQqyiX-S3FuAI9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.778 [XNIO-1 task-1] TiqnsU4iQqyiX-S3FuAI9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:44.787 [XNIO-1 task-1] BDP-ETuyT1yh5LnbO037Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.787 [XNIO-1 task-1] BDP-ETuyT1yh5LnbO037Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.787 [XNIO-1 task-1] BDP-ETuyT1yh5LnbO037Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.787 [XNIO-1 task-1] BDP-ETuyT1yh5LnbO037Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.788 [XNIO-1 task-1] BDP-ETuyT1yh5LnbO037Nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.810 [XNIO-1 task-1] g_9rqsYGRMGAa9_B2Kloug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.811 [XNIO-1 task-1] g_9rqsYGRMGAa9_B2Kloug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.811 [XNIO-1 task-1] g_9rqsYGRMGAa9_B2Kloug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.811 [XNIO-1 task-1] g_9rqsYGRMGAa9_B2Kloug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.811 [XNIO-1 task-1] g_9rqsYGRMGAa9_B2Kloug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:44.813 [XNIO-1 task-1] g_9rqsYGRMGAa9_B2Kloug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:44.819 [XNIO-1 task-1] oghnv3gyTaacaffIbwy6vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.820 [XNIO-1 task-1] oghnv3gyTaacaffIbwy6vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.820 [XNIO-1 task-1] oghnv3gyTaacaffIbwy6vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.820 [XNIO-1 task-1] oghnv3gyTaacaffIbwy6vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.821 [XNIO-1 task-1] oghnv3gyTaacaffIbwy6vw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.831 [XNIO-1 task-1] CXpo12m0Q_eHNvtRt5jqyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.831 [XNIO-1 task-1] CXpo12m0Q_eHNvtRt5jqyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.831 [XNIO-1 task-1] CXpo12m0Q_eHNvtRt5jqyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.831 [XNIO-1 task-1] CXpo12m0Q_eHNvtRt5jqyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.832 [XNIO-1 task-1] CXpo12m0Q_eHNvtRt5jqyw DEBUG com.networknt.schema.TypeValidator debug - validate( "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", refreshToken) +17:00:44.842 [XNIO-1 task-1] AcoQGkvrTXC1CaaCiyW_sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.842 [XNIO-1 task-1] AcoQGkvrTXC1CaaCiyW_sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.842 [XNIO-1 task-1] AcoQGkvrTXC1CaaCiyW_sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.842 [XNIO-1 task-1] AcoQGkvrTXC1CaaCiyW_sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.843 [XNIO-1 task-1] AcoQGkvrTXC1CaaCiyW_sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", refreshToken) +17:00:44.859 [XNIO-1 task-1] CuN44j6OTeydunK2ww8E0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.859 [XNIO-1 task-1] CuN44j6OTeydunK2ww8E0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.859 [XNIO-1 task-1] CuN44j6OTeydunK2ww8E0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.859 [XNIO-1 task-1] CuN44j6OTeydunK2ww8E0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.861 [XNIO-1 task-1] CuN44j6OTeydunK2ww8E0A DEBUG com.networknt.schema.TypeValidator debug - validate( "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", refreshToken) +17:00:44.871 [XNIO-1 task-1] CuN44j6OTeydunK2ww8E0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e2fd6444-a8ae-4e4c-86d8-2b5164cac292 is not found.","severity":"ERROR"} +17:00:44.878 [XNIO-1 task-1] KnyK6UE7T0WHkJg6kp3RZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.878 [XNIO-1 task-1] KnyK6UE7T0WHkJg6kp3RZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.878 [XNIO-1 task-1] KnyK6UE7T0WHkJg6kp3RZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.878 [XNIO-1 task-1] KnyK6UE7T0WHkJg6kp3RZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.880 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7cfc231b-d023-4674-ba2e-c72d2968ddd9 +17:00:44.882 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7cfc231b-d023-4674-ba2e-c72d2968ddd9 +17:00:44.952 [XNIO-1 task-1] 77-k685xTP-pipuyqJXvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:44.953 [XNIO-1 task-1] 77-k685xTP-pipuyqJXvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.953 [XNIO-1 task-1] 77-k685xTP-pipuyqJXvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.955 [XNIO-1 task-1] 77-k685xTP-pipuyqJXvRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:44.956 [XNIO-1 task-1] 77-k685xTP-pipuyqJXvRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:44.963 [XNIO-1 task-1] JoHS5_ZiRm6mH3vSSrVlHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.963 [XNIO-1 task-1] JoHS5_ZiRm6mH3vSSrVlHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.963 [XNIO-1 task-1] JoHS5_ZiRm6mH3vSSrVlHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.963 [XNIO-1 task-1] JoHS5_ZiRm6mH3vSSrVlHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.964 [XNIO-1 task-1] JoHS5_ZiRm6mH3vSSrVlHA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", refreshToken) +17:00:44.964 [XNIO-1 task-1] JoHS5_ZiRm6mH3vSSrVlHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e2fd6444-a8ae-4e4c-86d8-2b5164cac292 is not found.","severity":"ERROR"} +17:00:44.972 [XNIO-1 task-1] zVi208C7Sr6tZTZV_RoyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.972 [XNIO-1 task-1] zVi208C7Sr6tZTZV_RoyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.972 [XNIO-1 task-1] zVi208C7Sr6tZTZV_RoyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.973 [XNIO-1 task-1] zVi208C7Sr6tZTZV_RoyWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.983 [XNIO-1 task-1] vKjDaO0BQVSjXgvI-GXiCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.988 [XNIO-1 task-1] vKjDaO0BQVSjXgvI-GXiCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:44.988 [XNIO-1 task-1] vKjDaO0BQVSjXgvI-GXiCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:44.988 [XNIO-1 task-1] vKjDaO0BQVSjXgvI-GXiCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292, base path is set to: null +17:00:44.989 [XNIO-1 task-1] vKjDaO0BQVSjXgvI-GXiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", "e2fd6444-a8ae-4e4c-86d8-2b5164cac292", refreshToken) +17:00:44.989 [XNIO-1 task-1] vKjDaO0BQVSjXgvI-GXiCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e2fd6444-a8ae-4e4c-86d8-2b5164cac292 is not found.","severity":"ERROR"} +17:00:44.994 [XNIO-1 task-1] qerQdEi_Sy6xbwpyxaegtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:44.994 [XNIO-1 task-1] qerQdEi_Sy6xbwpyxaegtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:44.994 [XNIO-1 task-1] qerQdEi_Sy6xbwpyxaegtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:44.994 [XNIO-1 task-1] qerQdEi_Sy6xbwpyxaegtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:44.995 [XNIO-1 task-1] qerQdEi_Sy6xbwpyxaegtA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:44.999 [XNIO-1 task-1] X-VhDg4oQMO5i2u8pN0_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.000 [XNIO-1 task-1] X-VhDg4oQMO5i2u8pN0_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.000 [XNIO-1 task-1] X-VhDg4oQMO5i2u8pN0_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.000 [XNIO-1 task-1] X-VhDg4oQMO5i2u8pN0_iA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.001 [XNIO-1 task-1] X-VhDg4oQMO5i2u8pN0_iA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.010 [XNIO-1 task-1] PcHih5B0QxSq25iDyHe6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:45.010 [XNIO-1 task-1] PcHih5B0QxSq25iDyHe6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.010 [XNIO-1 task-1] PcHih5B0QxSq25iDyHe6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.010 [XNIO-1 task-1] PcHih5B0QxSq25iDyHe6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:45.013 [XNIO-1 task-1] PcHih5B0QxSq25iDyHe6Tg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e2fd6444-a8ae-4e4c-86d8-2b5164cac292 +17:00:45.015 [XNIO-1 task-1] vcZICkmyRY-fQspmEKqL1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84caab1b-5e89-44bd-99ad-62c41e39352b, base path is set to: null +17:00:45.016 [XNIO-1 task-1] vcZICkmyRY-fQspmEKqL1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.016 [XNIO-1 task-1] vcZICkmyRY-fQspmEKqL1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.016 [XNIO-1 task-1] vcZICkmyRY-fQspmEKqL1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84caab1b-5e89-44bd-99ad-62c41e39352b, base path is set to: null +17:00:45.016 [XNIO-1 task-1] vcZICkmyRY-fQspmEKqL1g DEBUG com.networknt.schema.TypeValidator debug - validate( "84caab1b-5e89-44bd-99ad-62c41e39352b", "84caab1b-5e89-44bd-99ad-62c41e39352b", refreshToken) +17:00:45.024 [XNIO-1 task-1] CmgMLpsWSvq8icxaMNPuvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.024 [XNIO-1 task-1] CmgMLpsWSvq8icxaMNPuvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.024 [XNIO-1 task-1] CmgMLpsWSvq8icxaMNPuvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.025 [XNIO-1 task-1] CmgMLpsWSvq8icxaMNPuvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.025 [XNIO-1 task-1] CmgMLpsWSvq8icxaMNPuvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.038 [XNIO-1 task-1] l9R6wJJhQzums6eeGZSz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.038 [XNIO-1 task-1] l9R6wJJhQzums6eeGZSz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.038 [XNIO-1 task-1] l9R6wJJhQzums6eeGZSz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.038 [XNIO-1 task-1] l9R6wJJhQzums6eeGZSz4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.047 [XNIO-1 task-1] CIXTn_v1SQmOJ825mbCxUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7cfc231b-d023-4674-ba2e-c72d2968ddd9, base path is set to: null +17:00:45.047 [XNIO-1 task-1] CIXTn_v1SQmOJ825mbCxUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.047 [XNIO-1 task-1] CIXTn_v1SQmOJ825mbCxUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.047 [XNIO-1 task-1] CIXTn_v1SQmOJ825mbCxUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7cfc231b-d023-4674-ba2e-c72d2968ddd9, base path is set to: null +17:00:45.048 [XNIO-1 task-1] CIXTn_v1SQmOJ825mbCxUA DEBUG com.networknt.schema.TypeValidator debug - validate( "7cfc231b-d023-4674-ba2e-c72d2968ddd9", "7cfc231b-d023-4674-ba2e-c72d2968ddd9", refreshToken) +17:00:45.055 [XNIO-1 task-1] bgUH50vvT7K4um9igbEzhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:45.055 [XNIO-1 task-1] bgUH50vvT7K4um9igbEzhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.056 [XNIO-1 task-1] bgUH50vvT7K4um9igbEzhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.056 [XNIO-1 task-1] bgUH50vvT7K4um9igbEzhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:45.056 [XNIO-1 task-1] bgUH50vvT7K4um9igbEzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", refreshToken) +17:00:45.057 [XNIO-1 task-1] bgUH50vvT7K4um9igbEzhA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e68c56c0-83fb-4a9b-85c9-3352fa887d1c is not found.","severity":"ERROR"} +17:00:45.061 [XNIO-1 task-1] m2YvMFgMSbGTdRtJLRt_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.061 [XNIO-1 task-1] m2YvMFgMSbGTdRtJLRt_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.061 [XNIO-1 task-1] m2YvMFgMSbGTdRtJLRt_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.061 [XNIO-1 task-1] m2YvMFgMSbGTdRtJLRt_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.061 [XNIO-1 task-1] m2YvMFgMSbGTdRtJLRt_Qw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.071 [XNIO-1 task-1] K60N_zdlQ2CG8EmnLcMmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:45.071 [XNIO-1 task-1] K60N_zdlQ2CG8EmnLcMmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.071 [XNIO-1 task-1] K60N_zdlQ2CG8EmnLcMmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.071 [XNIO-1 task-1] K60N_zdlQ2CG8EmnLcMmOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:45.072 [XNIO-1 task-1] K60N_zdlQ2CG8EmnLcMmOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:45.075 [XNIO-1 task-1] xHqzKhotSz6vv9gkjrKnnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50, base path is set to: null +17:00:45.076 [XNIO-1 task-1] xHqzKhotSz6vv9gkjrKnnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.076 [XNIO-1 task-1] xHqzKhotSz6vv9gkjrKnnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.076 [XNIO-1 task-1] xHqzKhotSz6vv9gkjrKnnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50, base path is set to: null +17:00:45.077 [XNIO-1 task-1] xHqzKhotSz6vv9gkjrKnnA DEBUG com.networknt.schema.TypeValidator debug - validate( "b669f784-b3b2-413f-9121-74555d055e50", "b669f784-b3b2-413f-9121-74555d055e50", refreshToken) +17:00:45.086 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60fc213e +17:00:45.087 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60fc213e +17:00:45.087 [XNIO-1 task-1] QR1ViLMHQrecs0QlP5B-dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.087 [XNIO-1 task-1] QR1ViLMHQrecs0QlP5B-dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.087 [XNIO-1 task-1] QR1ViLMHQrecs0QlP5B-dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:45.088 [XNIO-1 task-1] QR1ViLMHQrecs0QlP5B-dw DEBUG com.networknt.schema.TypeValidator debug - validate( "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", refreshToken) +17:00:45.088 [XNIO-1 task-1] QR1ViLMHQrecs0QlP5B-dw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e68c56c0-83fb-4a9b-85c9-3352fa887d1c is not found.","severity":"ERROR"} +17:00:45.090 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c32a9499 +17:00:45.093 [XNIO-1 task-1] -ytUiOuHSEu4N8RvlBOpxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50, base path is set to: null +17:00:45.093 [XNIO-1 task-1] -ytUiOuHSEu4N8RvlBOpxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.094 [XNIO-1 task-1] -ytUiOuHSEu4N8RvlBOpxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.094 [XNIO-1 task-1] -ytUiOuHSEu4N8RvlBOpxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50, base path is set to: null +17:00:45.094 [XNIO-1 task-1] -ytUiOuHSEu4N8RvlBOpxw DEBUG com.networknt.schema.TypeValidator debug - validate( "b669f784-b3b2-413f-9121-74555d055e50", "b669f784-b3b2-413f-9121-74555d055e50", refreshToken) +17:00:45.100 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60fc213e +17:00:45.104 [XNIO-1 task-1] mDq0rjPxRWanabKCwIeAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:45.104 [XNIO-1 task-1] mDq0rjPxRWanabKCwIeAOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.104 [XNIO-1 task-1] mDq0rjPxRWanabKCwIeAOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.105 [XNIO-1 task-1] mDq0rjPxRWanabKCwIeAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:45.106 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c32a9499 +17:00:45.106 [XNIO-1 task-1] mDq0rjPxRWanabKCwIeAOA DEBUG com.networknt.schema.TypeValidator debug - validate( "4245efda-7798-424b-9ecb-4913188fe5ee", "4245efda-7798-424b-9ecb-4913188fe5ee", refreshToken) +17:00:45.112 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.134 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60fc213e +17:00:45.138 [XNIO-1 task-1] OWYvfm2oRaGISbqQntIAGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.139 [XNIO-1 task-1] OWYvfm2oRaGISbqQntIAGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.139 [XNIO-1 task-1] OWYvfm2oRaGISbqQntIAGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.141 [XNIO-1 task-1] OWYvfm2oRaGISbqQntIAGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.141 [XNIO-1 task-1] OWYvfm2oRaGISbqQntIAGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.153 [XNIO-1 task-1] I1JJueycS1e9_F78Y5fA5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.153 [XNIO-1 task-1] I1JJueycS1e9_F78Y5fA5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.154 [XNIO-1 task-1] I1JJueycS1e9_F78Y5fA5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.155 [XNIO-1 task-1] I1JJueycS1e9_F78Y5fA5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.173 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60fc213e +17:00:45.175 [XNIO-1 task-1] yM3VeqbbTCKkDjBcJwFzQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.175 [XNIO-1 task-1] yM3VeqbbTCKkDjBcJwFzQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.175 [XNIO-1 task-1] yM3VeqbbTCKkDjBcJwFzQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.176 [XNIO-1 task-1] yM3VeqbbTCKkDjBcJwFzQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.180 [XNIO-1 task-1] yM3VeqbbTCKkDjBcJwFzQg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.198 [XNIO-1 task-1] lrteP7pUTl-m4PeRHNMUIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.198 [XNIO-1 task-1] lrteP7pUTl-m4PeRHNMUIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.198 [XNIO-1 task-1] lrteP7pUTl-m4PeRHNMUIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.199 [XNIO-1 task-1] lrteP7pUTl-m4PeRHNMUIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.199 [XNIO-1 task-1] lrteP7pUTl-m4PeRHNMUIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.204 [XNIO-1 task-1] -_OAhJz3SpGEMvbxVQ2f8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.204 [XNIO-1 task-1] -_OAhJz3SpGEMvbxVQ2f8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.205 [XNIO-1 task-1] -_OAhJz3SpGEMvbxVQ2f8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.205 [XNIO-1 task-1] -_OAhJz3SpGEMvbxVQ2f8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.205 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60fc213e +17:00:45.205 [XNIO-1 task-1] -_OAhJz3SpGEMvbxVQ2f8A DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.206 [XNIO-1 task-1] -_OAhJz3SpGEMvbxVQ2f8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.216 [XNIO-1 task-1] ZvcNYXoDTvasjmur93oPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.217 [XNIO-1 task-1] ZvcNYXoDTvasjmur93oPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.217 [XNIO-1 task-1] ZvcNYXoDTvasjmur93oPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.217 [XNIO-1 task-1] ZvcNYXoDTvasjmur93oPYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.229 [XNIO-1 task-1] lOWOl682Te-w5AZLDujauA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.229 [XNIO-1 task-1] lOWOl682Te-w5AZLDujauA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.229 [XNIO-1 task-1] lOWOl682Te-w5AZLDujauA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.229 [XNIO-1 task-1] lOWOl682Te-w5AZLDujauA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.230 [XNIO-1 task-1] lOWOl682Te-w5AZLDujauA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.245 [XNIO-1 task-1] BhhdcVsQRa271Ta1ijvKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.245 [XNIO-1 task-1] BhhdcVsQRa271Ta1ijvKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.245 [XNIO-1 task-1] BhhdcVsQRa271Ta1ijvKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.246 [XNIO-1 task-1] BhhdcVsQRa271Ta1ijvKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.246 [XNIO-1 task-1] BhhdcVsQRa271Ta1ijvKhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.255 [XNIO-1 task-1] wqdOTegvShqa2xAgnfHuug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.255 [XNIO-1 task-1] wqdOTegvShqa2xAgnfHuug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.256 [XNIO-1 task-1] wqdOTegvShqa2xAgnfHuug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.256 [XNIO-1 task-1] wqdOTegvShqa2xAgnfHuug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.256 [XNIO-1 task-1] wqdOTegvShqa2xAgnfHuug DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.256 [XNIO-1 task-1] wqdOTegvShqa2xAgnfHuug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.258 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dbbe7cf5-4ce9-43c7-9809-a8d7a1c2481b +17:00:45.268 [XNIO-1 task-1] -8uoBTgdSwexd0JeUeLiXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.268 [XNIO-1 task-1] -8uoBTgdSwexd0JeUeLiXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.268 [XNIO-1 task-1] -8uoBTgdSwexd0JeUeLiXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.268 [XNIO-1 task-1] -8uoBTgdSwexd0JeUeLiXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.269 [XNIO-1 task-1] -8uoBTgdSwexd0JeUeLiXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.273 [XNIO-1 task-1] VMZCakYuSQ-U7dGIXbrbJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.273 [XNIO-1 task-1] VMZCakYuSQ-U7dGIXbrbJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.273 [XNIO-1 task-1] VMZCakYuSQ-U7dGIXbrbJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.274 [XNIO-1 task-1] VMZCakYuSQ-U7dGIXbrbJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.274 [XNIO-1 task-1] VMZCakYuSQ-U7dGIXbrbJw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.274 [XNIO-1 task-1] VMZCakYuSQ-U7dGIXbrbJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.277 [XNIO-1 task-1] kO-OSjpWTdWT4GEBMGfBVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.278 [XNIO-1 task-1] kO-OSjpWTdWT4GEBMGfBVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.278 [XNIO-1 task-1] kO-OSjpWTdWT4GEBMGfBVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.278 [XNIO-1 task-1] kO-OSjpWTdWT4GEBMGfBVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.279 [XNIO-1 task-1] kO-OSjpWTdWT4GEBMGfBVg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.284 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:65236a1f-a739-4edb-83db-2186c5bdfab8 +17:00:45.290 [XNIO-1 task-1] nT7VW6-ST3yV9kOjgbgMoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.292 [XNIO-1 task-1] nT7VW6-ST3yV9kOjgbgMoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.293 [XNIO-1 task-1] nT7VW6-ST3yV9kOjgbgMoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.293 [XNIO-1 task-1] nT7VW6-ST3yV9kOjgbgMoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.294 [XNIO-1 task-1] nT7VW6-ST3yV9kOjgbgMoA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.294 [XNIO-1 task-1] nT7VW6-ST3yV9kOjgbgMoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.298 [XNIO-1 task-1] 0v4ZeipRTzGOmQMWnJ6E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.299 [XNIO-1 task-1] 0v4ZeipRTzGOmQMWnJ6E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.299 [XNIO-1 task-1] 0v4ZeipRTzGOmQMWnJ6E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.299 [XNIO-1 task-1] 0v4ZeipRTzGOmQMWnJ6E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.299 [XNIO-1 task-1] 0v4ZeipRTzGOmQMWnJ6E-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.304 [XNIO-1 task-1] 80G-FkPGTnGRUNGnUJYqhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.305 [XNIO-1 task-1] 80G-FkPGTnGRUNGnUJYqhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.305 [XNIO-1 task-1] 80G-FkPGTnGRUNGnUJYqhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.306 [XNIO-1 task-1] 80G-FkPGTnGRUNGnUJYqhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.306 [XNIO-1 task-1] 80G-FkPGTnGRUNGnUJYqhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.314 [XNIO-1 task-1] umc6ZGHvQ6KmphpaxOstBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.314 [XNIO-1 task-1] umc6ZGHvQ6KmphpaxOstBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.314 [XNIO-1 task-1] umc6ZGHvQ6KmphpaxOstBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.314 [XNIO-1 task-1] umc6ZGHvQ6KmphpaxOstBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.315 [XNIO-1 task-1] umc6ZGHvQ6KmphpaxOstBw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.315 [XNIO-1 task-1] umc6ZGHvQ6KmphpaxOstBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.326 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7efe6109-e307-436b-a37d-9d2bcb072036 +17:00:45.331 [XNIO-1 task-1] bj96vzUXQsCr31h55e-xQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.334 [XNIO-1 task-1] bj96vzUXQsCr31h55e-xQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.335 [XNIO-1 task-1] bj96vzUXQsCr31h55e-xQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.335 [XNIO-1 task-1] bj96vzUXQsCr31h55e-xQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.335 [XNIO-1 task-1] bj96vzUXQsCr31h55e-xQg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.359 [XNIO-1 task-1] SV5LluNBSc2Db-PPIpL-5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:45.360 [XNIO-1 task-1] SV5LluNBSc2Db-PPIpL-5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.360 [XNIO-1 task-1] SV5LluNBSc2Db-PPIpL-5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.360 [XNIO-1 task-1] SV5LluNBSc2Db-PPIpL-5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c, base path is set to: null +17:00:45.360 [XNIO-1 task-1] SV5LluNBSc2Db-PPIpL-5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", "e68c56c0-83fb-4a9b-85c9-3352fa887d1c", refreshToken) +17:00:45.361 [XNIO-1 task-1] SV5LluNBSc2Db-PPIpL-5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e68c56c0-83fb-4a9b-85c9-3352fa887d1c is not found.","severity":"ERROR"} +17:00:45.372 [XNIO-1 task-1] 7rWrCD3vSJ6emDVH2p9uLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.372 [XNIO-1 task-1] 7rWrCD3vSJ6emDVH2p9uLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.373 [XNIO-1 task-1] 7rWrCD3vSJ6emDVH2p9uLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.373 [XNIO-1 task-1] 7rWrCD3vSJ6emDVH2p9uLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.373 [XNIO-1 task-1] 7rWrCD3vSJ6emDVH2p9uLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.388 [XNIO-1 task-1] sTcYN5alQwWEtfGccn1wRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.390 [XNIO-1 task-1] sTcYN5alQwWEtfGccn1wRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.390 [XNIO-1 task-1] sTcYN5alQwWEtfGccn1wRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.390 [XNIO-1 task-1] sTcYN5alQwWEtfGccn1wRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.390 [XNIO-1 task-1] sTcYN5alQwWEtfGccn1wRA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.391 [XNIO-1 task-1] sTcYN5alQwWEtfGccn1wRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.396 [XNIO-1 task-1] PPnoP5b1SIqYN8_lWac-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.396 [XNIO-1 task-1] PPnoP5b1SIqYN8_lWac-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.397 [XNIO-1 task-1] PPnoP5b1SIqYN8_lWac-mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.397 [XNIO-1 task-1] PPnoP5b1SIqYN8_lWac-mA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.420 [XNIO-1 task-1] nx_fkyrbQ4SEOx91bfZtsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.421 [XNIO-1 task-1] nx_fkyrbQ4SEOx91bfZtsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.421 [XNIO-1 task-1] nx_fkyrbQ4SEOx91bfZtsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.421 [XNIO-1 task-1] nx_fkyrbQ4SEOx91bfZtsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.422 [XNIO-1 task-1] nx_fkyrbQ4SEOx91bfZtsQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.429 [XNIO-1 task-1] XCLe1KjATFaKoPjNDJ9ypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.429 [XNIO-1 task-1] XCLe1KjATFaKoPjNDJ9ypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.429 [XNIO-1 task-1] XCLe1KjATFaKoPjNDJ9ypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.431 [XNIO-1 task-1] XCLe1KjATFaKoPjNDJ9ypA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.442 [XNIO-1 task-1] _20wVqEhQPOZK_ZmsDd_FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.464 [XNIO-1 task-1] _20wVqEhQPOZK_ZmsDd_FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.465 [XNIO-1 task-1] _20wVqEhQPOZK_ZmsDd_FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.466 [XNIO-1 task-1] _20wVqEhQPOZK_ZmsDd_FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.466 [XNIO-1 task-1] _20wVqEhQPOZK_ZmsDd_FQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.475 [XNIO-1 task-1] BdPvKRaVQWS95IeD98_GkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:45.475 [XNIO-1 task-1] BdPvKRaVQWS95IeD98_GkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.475 [XNIO-1 task-1] BdPvKRaVQWS95IeD98_GkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.475 [XNIO-1 task-1] BdPvKRaVQWS95IeD98_GkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:45.476 [XNIO-1 task-1] BdPvKRaVQWS95IeD98_GkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e68c56c0-83fb-4a9b-85c9-3352fa887d1c +17:00:45.482 [XNIO-1 task-1] GkfklHWQS1mHW7eZlP2xvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50, base path is set to: null +17:00:45.483 [XNIO-1 task-1] GkfklHWQS1mHW7eZlP2xvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.483 [XNIO-1 task-1] GkfklHWQS1mHW7eZlP2xvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.484 [XNIO-1 task-1] GkfklHWQS1mHW7eZlP2xvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b669f784-b3b2-413f-9121-74555d055e50, base path is set to: null +17:00:45.484 [XNIO-1 task-1] GkfklHWQS1mHW7eZlP2xvA DEBUG com.networknt.schema.TypeValidator debug - validate( "b669f784-b3b2-413f-9121-74555d055e50", "b669f784-b3b2-413f-9121-74555d055e50", refreshToken) +17:00:45.484 [XNIO-1 task-1] GkfklHWQS1mHW7eZlP2xvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b669f784-b3b2-413f-9121-74555d055e50 is not found.","severity":"ERROR"} +17:00:45.485 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60fc213e +17:00:45.492 [XNIO-1 task-1] UNbCXm_CT1m4dBuLzeC-ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.492 [XNIO-1 task-1] UNbCXm_CT1m4dBuLzeC-ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.492 [XNIO-1 task-1] UNbCXm_CT1m4dBuLzeC-ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.493 [XNIO-1 task-1] UNbCXm_CT1m4dBuLzeC-ig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.512 [XNIO-1 task-1] 2bnTHlX9TZ6bvI5T9piaWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:45.513 [XNIO-1 task-1] 2bnTHlX9TZ6bvI5T9piaWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.513 [XNIO-1 task-1] 2bnTHlX9TZ6bvI5T9piaWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.513 [XNIO-1 task-1] 2bnTHlX9TZ6bvI5T9piaWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:45.513 [XNIO-1 task-1] 2bnTHlX9TZ6bvI5T9piaWw DEBUG com.networknt.schema.TypeValidator debug - validate( "4245efda-7798-424b-9ecb-4913188fe5ee", "4245efda-7798-424b-9ecb-4913188fe5ee", refreshToken) +17:00:45.514 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.522 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:60fc213e +17:00:45.523 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe8a5c8b +17:00:45.524 [XNIO-1 task-1] z5CZoyOMSwmN8fprjVlpCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.524 [XNIO-1 task-1] z5CZoyOMSwmN8fprjVlpCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.524 [XNIO-1 task-1] z5CZoyOMSwmN8fprjVlpCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.524 [XNIO-1 task-1] z5CZoyOMSwmN8fprjVlpCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.528 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe8a5c8b +17:00:45.534 [XNIO-1 task-1] U-iO91rJQwWu6Hr-x43P9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.534 [XNIO-1 task-1] U-iO91rJQwWu6Hr-x43P9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.534 [XNIO-1 task-1] U-iO91rJQwWu6Hr-x43P9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.535 [XNIO-1 task-1] U-iO91rJQwWu6Hr-x43P9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.535 [XNIO-1 task-1] U-iO91rJQwWu6Hr-x43P9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.535 [XNIO-1 task-1] U-iO91rJQwWu6Hr-x43P9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.543 [XNIO-1 task-1] 6e7F1ALERiSuktWsl6GLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.543 [XNIO-1 task-1] 6e7F1ALERiSuktWsl6GLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.543 [XNIO-1 task-1] 6e7F1ALERiSuktWsl6GLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.543 [XNIO-1 task-1] 6e7F1ALERiSuktWsl6GLwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.543 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe8a5c8b +17:00:45.544 [XNIO-1 task-1] 6e7F1ALERiSuktWsl6GLwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.550 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60fc213e +17:00:45.554 [XNIO-1 task-1] zx_u46EmR3SYSpEihZGO_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.555 [XNIO-1 task-1] zx_u46EmR3SYSpEihZGO_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.555 [XNIO-1 task-1] zx_u46EmR3SYSpEihZGO_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.555 [XNIO-1 task-1] zx_u46EmR3SYSpEihZGO_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.555 [XNIO-1 task-1] zx_u46EmR3SYSpEihZGO_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.556 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:39cb87ba-af2c-4903-9f00-d4808c414568 +17:00:45.557 [XNIO-1 task-1] zx_u46EmR3SYSpEihZGO_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:45.567 [XNIO-1 task-1] QoEcviVJSruzENqYBjwgRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.567 [XNIO-1 task-1] QoEcviVJSruzENqYBjwgRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.567 [XNIO-1 task-1] QoEcviVJSruzENqYBjwgRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.567 [XNIO-1 task-1] QoEcviVJSruzENqYBjwgRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.568 [XNIO-1 task-1] QoEcviVJSruzENqYBjwgRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.572 [XNIO-1 task-1] qEVODpzcSWu8Xy06njCxOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92ac24b9-47aa-4ccf-85f5-5d0876535275, base path is set to: null +17:00:45.572 [XNIO-1 task-1] qEVODpzcSWu8Xy06njCxOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.572 [XNIO-1 task-1] qEVODpzcSWu8Xy06njCxOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.572 [XNIO-1 task-1] qEVODpzcSWu8Xy06njCxOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/92ac24b9-47aa-4ccf-85f5-5d0876535275, base path is set to: null +17:00:45.573 [XNIO-1 task-1] qEVODpzcSWu8Xy06njCxOw DEBUG com.networknt.schema.TypeValidator debug - validate( "92ac24b9-47aa-4ccf-85f5-5d0876535275", "92ac24b9-47aa-4ccf-85f5-5d0876535275", refreshToken) +17:00:45.576 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe8a5c8b +17:00:45.582 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:39cb87ba-af2c-4903-9f00-d4808c414568 +17:00:45.587 [XNIO-1 task-1] sa0CIa0vRiixCJQ8BnhiZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.587 [XNIO-1 task-1] sa0CIa0vRiixCJQ8BnhiZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.587 [XNIO-1 task-1] sa0CIa0vRiixCJQ8BnhiZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.587 [XNIO-1 task-1] sa0CIa0vRiixCJQ8BnhiZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.588 [XNIO-1 task-1] sa0CIa0vRiixCJQ8BnhiZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.592 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d9c37254-904c-4f1d-ba93-5dfa38180450 +17:00:45.592 [XNIO-1 task-1] 8DIty9QoTY2mVqooxxw-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.596 [XNIO-1 task-1] 8DIty9QoTY2mVqooxxw-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.596 [XNIO-1 task-1] 8DIty9QoTY2mVqooxxw-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.596 [XNIO-1 task-1] 8DIty9QoTY2mVqooxxw-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.598 [XNIO-1 task-1] 8DIty9QoTY2mVqooxxw-1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.602 [XNIO-1 task-1] T1ImUBlTQoe0ZIEs1e4fDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.602 [XNIO-1 task-1] T1ImUBlTQoe0ZIEs1e4fDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.602 [XNIO-1 task-1] T1ImUBlTQoe0ZIEs1e4fDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.602 [XNIO-1 task-1] T1ImUBlTQoe0ZIEs1e4fDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.602 [XNIO-1 task-1] T1ImUBlTQoe0ZIEs1e4fDA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.603 [XNIO-1 task-1] T1ImUBlTQoe0ZIEs1e4fDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.613 [XNIO-1 task-1] Qh9d2-5rSJWhKvu0SWX81g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.613 [XNIO-1 task-1] Qh9d2-5rSJWhKvu0SWX81g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.613 [XNIO-1 task-1] Qh9d2-5rSJWhKvu0SWX81g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.613 [XNIO-1 task-1] Qh9d2-5rSJWhKvu0SWX81g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.614 [XNIO-1 task-1] Qh9d2-5rSJWhKvu0SWX81g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.615 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d9c37254-904c-4f1d-ba93-5dfa38180450 +17:00:45.623 [XNIO-1 task-1] tFidKMuHTp-PXwgpT3-QnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.623 [XNIO-1 task-1] tFidKMuHTp-PXwgpT3-QnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.624 [XNIO-1 task-1] tFidKMuHTp-PXwgpT3-QnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.624 [XNIO-1 task-1] tFidKMuHTp-PXwgpT3-QnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.666 [XNIO-1 task-1] ZPPGW2r9TeCFWMR_xNr-6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.667 [XNIO-1 task-1] ZPPGW2r9TeCFWMR_xNr-6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.667 [XNIO-1 task-1] ZPPGW2r9TeCFWMR_xNr-6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.667 [XNIO-1 task-1] ZPPGW2r9TeCFWMR_xNr-6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.667 [XNIO-1 task-1] ZPPGW2r9TeCFWMR_xNr-6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.668 [XNIO-1 task-1] ZPPGW2r9TeCFWMR_xNr-6Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.677 [XNIO-1 task-1] XE_gwM9ITjyenxHkMDqE6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.677 [XNIO-1 task-1] XE_gwM9ITjyenxHkMDqE6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.677 [XNIO-1 task-1] XE_gwM9ITjyenxHkMDqE6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.678 [XNIO-1 task-1] XE_gwM9ITjyenxHkMDqE6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.688 [XNIO-1 task-1] FwTexyqNR9Op95koAc756A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.689 [XNIO-1 task-1] FwTexyqNR9Op95koAc756A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.689 [XNIO-1 task-1] FwTexyqNR9Op95koAc756A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.689 [XNIO-1 task-1] FwTexyqNR9Op95koAc756A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.689 [XNIO-1 task-1] FwTexyqNR9Op95koAc756A DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.689 [XNIO-1 task-1] FwTexyqNR9Op95koAc756A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.693 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fe8a5c8b +17:00:45.702 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fe8a5c8b +17:00:45.703 [XNIO-1 task-1] VFBicJo2RlCPF87lBF66GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.704 [XNIO-1 task-1] VFBicJo2RlCPF87lBF66GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.704 [XNIO-1 task-1] VFBicJo2RlCPF87lBF66GA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.704 [XNIO-1 task-1] VFBicJo2RlCPF87lBF66GA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.724 [XNIO-1 task-1] g5WIl0xyTKaLtOsBRvHlcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.724 [XNIO-1 task-1] g5WIl0xyTKaLtOsBRvHlcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.724 [XNIO-1 task-1] g5WIl0xyTKaLtOsBRvHlcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.724 [XNIO-1 task-1] g5WIl0xyTKaLtOsBRvHlcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.725 [XNIO-1 task-1] g5WIl0xyTKaLtOsBRvHlcw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:45.728 [XNIO-1 task-1] g5WIl0xyTKaLtOsBRvHlcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:45.736 [XNIO-1 task-1] jv-kscFURnyisjP97o0Eog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.736 [XNIO-1 task-1] jv-kscFURnyisjP97o0Eog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.736 [XNIO-1 task-1] jv-kscFURnyisjP97o0Eog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.736 [XNIO-1 task-1] jv-kscFURnyisjP97o0Eog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.736 [XNIO-1 task-1] jv-kscFURnyisjP97o0Eog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.746 [XNIO-1 task-1] o2XNR17hRUyRmRWw6cNHJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.746 [XNIO-1 task-1] o2XNR17hRUyRmRWw6cNHJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.746 [XNIO-1 task-1] o2XNR17hRUyRmRWw6cNHJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.747 [XNIO-1 task-1] o2XNR17hRUyRmRWw6cNHJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.747 [XNIO-1 task-1] o2XNR17hRUyRmRWw6cNHJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.750 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:45.756 [XNIO-1 task-1] WTc3F3nQT_y8hW6npYqUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:45.757 [XNIO-1 task-1] WTc3F3nQT_y8hW6npYqUNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.757 [XNIO-1 task-1] WTc3F3nQT_y8hW6npYqUNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.758 [XNIO-1 task-1] WTc3F3nQT_y8hW6npYqUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:45.758 [XNIO-1 task-1] WTc3F3nQT_y8hW6npYqUNg DEBUG com.networknt.schema.TypeValidator debug - validate( "575f19bf-81b2-41cf-8330-f6f3741aec31", "575f19bf-81b2-41cf-8330-f6f3741aec31", refreshToken) +17:00:45.782 [XNIO-1 task-1] URJwver6TLeAa_WiAjNLvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:45.783 [XNIO-1 task-1] URJwver6TLeAa_WiAjNLvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.783 [XNIO-1 task-1] URJwver6TLeAa_WiAjNLvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.783 [XNIO-1 task-1] URJwver6TLeAa_WiAjNLvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:45.784 [XNIO-1 task-1] URJwver6TLeAa_WiAjNLvA DEBUG com.networknt.schema.TypeValidator debug - validate( "575f19bf-81b2-41cf-8330-f6f3741aec31", "575f19bf-81b2-41cf-8330-f6f3741aec31", refreshToken) +17:00:45.787 [XNIO-1 task-1] URJwver6TLeAa_WiAjNLvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 575f19bf-81b2-41cf-8330-f6f3741aec31 is not found.","severity":"ERROR"} +17:00:45.795 [XNIO-1 task-1] PLN9cG1tTq6BNyaRtePBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92ac24b9-47aa-4ccf-85f5-5d0876535275 +17:00:45.795 [XNIO-1 task-1] PLN9cG1tTq6BNyaRtePBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.795 [XNIO-1 task-1] PLN9cG1tTq6BNyaRtePBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.795 [XNIO-1 task-1] PLN9cG1tTq6BNyaRtePBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92ac24b9-47aa-4ccf-85f5-5d0876535275 +17:00:45.796 [XNIO-1 task-1] PLN9cG1tTq6BNyaRtePBlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 92ac24b9-47aa-4ccf-85f5-5d0876535275 +17:00:45.804 [XNIO-1 task-1] SIK7pdgFR6K1eBzn7XIR8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.804 [XNIO-1 task-1] SIK7pdgFR6K1eBzn7XIR8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.804 [XNIO-1 task-1] SIK7pdgFR6K1eBzn7XIR8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.804 [XNIO-1 task-1] SIK7pdgFR6K1eBzn7XIR8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.805 [XNIO-1 task-1] SIK7pdgFR6K1eBzn7XIR8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.808 [XNIO-1 task-1] oBewj3EXQSyj5cdoqVUlYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.808 [XNIO-1 task-1] oBewj3EXQSyj5cdoqVUlYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.808 [XNIO-1 task-1] oBewj3EXQSyj5cdoqVUlYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.808 [XNIO-1 task-1] oBewj3EXQSyj5cdoqVUlYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.809 [XNIO-1 task-1] oBewj3EXQSyj5cdoqVUlYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.813 [XNIO-1 task-1] A_97iX99SFSU0FskrsQ0gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.813 [XNIO-1 task-1] A_97iX99SFSU0FskrsQ0gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.813 [XNIO-1 task-1] A_97iX99SFSU0FskrsQ0gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.813 [XNIO-1 task-1] A_97iX99SFSU0FskrsQ0gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.814 [XNIO-1 task-1] A_97iX99SFSU0FskrsQ0gw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.815 [XNIO-1 task-1] A_97iX99SFSU0FskrsQ0gw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.818 [XNIO-1 task-1] rBOS9MrZQtyGsXH3G84H7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.818 [XNIO-1 task-1] rBOS9MrZQtyGsXH3G84H7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.818 [XNIO-1 task-1] rBOS9MrZQtyGsXH3G84H7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.818 [XNIO-1 task-1] rBOS9MrZQtyGsXH3G84H7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.819 [XNIO-1 task-1] rBOS9MrZQtyGsXH3G84H7g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.822 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4097aff0-3970-43fc-812c-8652faeb213e +17:00:45.824 [XNIO-1 task-1] fDEm5OsgTU-bVwSWF_qowg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.826 [XNIO-1 task-1] fDEm5OsgTU-bVwSWF_qowg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.827 [XNIO-1 task-1] fDEm5OsgTU-bVwSWF_qowg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.827 [XNIO-1 task-1] fDEm5OsgTU-bVwSWF_qowg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.827 [XNIO-1 task-1] fDEm5OsgTU-bVwSWF_qowg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.855 [XNIO-1 task-1] ofIQA09mQnWZ_cEYrrZdaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.855 [XNIO-1 task-1] ofIQA09mQnWZ_cEYrrZdaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.856 [XNIO-1 task-1] ofIQA09mQnWZ_cEYrrZdaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.856 [XNIO-1 task-1] ofIQA09mQnWZ_cEYrrZdaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.856 [XNIO-1 task-1] ofIQA09mQnWZ_cEYrrZdaw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.862 [XNIO-1 task-1] d8oGR8T8ScG4a9fQ7fPPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.862 [XNIO-1 task-1] d8oGR8T8ScG4a9fQ7fPPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.862 [XNIO-1 task-1] d8oGR8T8ScG4a9fQ7fPPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.862 [XNIO-1 task-1] d8oGR8T8ScG4a9fQ7fPPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:45.863 [XNIO-1 task-1] d8oGR8T8ScG4a9fQ7fPPVg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:45.869 [XNIO-1 task-1] qNkqfDNoQha3J_n81EvapA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.870 [XNIO-1 task-1] qNkqfDNoQha3J_n81EvapA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.870 [XNIO-1 task-1] qNkqfDNoQha3J_n81EvapA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.870 [XNIO-1 task-1] qNkqfDNoQha3J_n81EvapA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:45.870 [XNIO-1 task-1] qNkqfDNoQha3J_n81EvapA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:45.870 [XNIO-1 task-1] qNkqfDNoQha3J_n81EvapA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:45.873 [XNIO-1 task-1] ph6iyHdaRUWHJLjPfwdL5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.873 [XNIO-1 task-1] ph6iyHdaRUWHJLjPfwdL5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.873 [XNIO-1 task-1] ph6iyHdaRUWHJLjPfwdL5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.873 [XNIO-1 task-1] ph6iyHdaRUWHJLjPfwdL5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.874 [XNIO-1 task-1] ph6iyHdaRUWHJLjPfwdL5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.878 [XNIO-1 task-1] IlMMWPjdRzaOt6rKfrML_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.878 [XNIO-1 task-1] IlMMWPjdRzaOt6rKfrML_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.878 [XNIO-1 task-1] IlMMWPjdRzaOt6rKfrML_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.879 [XNIO-1 task-1] IlMMWPjdRzaOt6rKfrML_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.883 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3d3a2b94-4c83-4e23-8cd3-04afabe9108b +17:00:45.885 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3d3a2b94-4c83-4e23-8cd3-04afabe9108b +17:00:45.898 [XNIO-1 task-1] -gu9lX4UQRSQCqvdhstYqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.898 [XNIO-1 task-1] -gu9lX4UQRSQCqvdhstYqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.898 [XNIO-1 task-1] -gu9lX4UQRSQCqvdhstYqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.899 [XNIO-1 task-1] -gu9lX4UQRSQCqvdhstYqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.899 [XNIO-1 task-1] -gu9lX4UQRSQCqvdhstYqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.907 [XNIO-1 task-1] xmn4t35iR0KB6wUG7Wdosw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.907 [XNIO-1 task-1] xmn4t35iR0KB6wUG7Wdosw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.907 [XNIO-1 task-1] xmn4t35iR0KB6wUG7Wdosw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.908 [XNIO-1 task-1] xmn4t35iR0KB6wUG7Wdosw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.908 [XNIO-1 task-1] xmn4t35iR0KB6wUG7Wdosw DEBUG com.networknt.schema.TypeValidator debug - validate( "aedff129-d04b-4663-a7b0-c2727283a073", "aedff129-d04b-4663-a7b0-c2727283a073", refreshToken) +17:00:45.910 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3d3a2b94-4c83-4e23-8cd3-04afabe9108b +17:00:45.916 [XNIO-1 task-1] lA1WxQ3eTViwl1fztdb3FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.918 [XNIO-1 task-1] lA1WxQ3eTViwl1fztdb3FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.919 [XNIO-1 task-1] lA1WxQ3eTViwl1fztdb3FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.919 [XNIO-1 task-1] lA1WxQ3eTViwl1fztdb3FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.919 [XNIO-1 task-1] lA1WxQ3eTViwl1fztdb3FQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:45.926 [XNIO-1 task-1] 82X_Ln5-SOmM8Gv_KOhfvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.929 [XNIO-1 task-1] 82X_Ln5-SOmM8Gv_KOhfvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.929 [XNIO-1 task-1] 82X_Ln5-SOmM8Gv_KOhfvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.929 [XNIO-1 task-1] 82X_Ln5-SOmM8Gv_KOhfvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.931 [XNIO-1 task-1] 82X_Ln5-SOmM8Gv_KOhfvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.934 [XNIO-1 task-1] apzHNm7ZTHOd0oa8dV8_Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.934 [XNIO-1 task-1] apzHNm7ZTHOd0oa8dV8_Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.935 [XNIO-1 task-1] apzHNm7ZTHOd0oa8dV8_Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.935 [XNIO-1 task-1] apzHNm7ZTHOd0oa8dV8_Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.935 [XNIO-1 task-1] apzHNm7ZTHOd0oa8dV8_Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "aedff129-d04b-4663-a7b0-c2727283a073", "aedff129-d04b-4663-a7b0-c2727283a073", refreshToken) +17:00:45.936 [XNIO-1 task-1] apzHNm7ZTHOd0oa8dV8_Mw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aedff129-d04b-4663-a7b0-c2727283a073 is not found.","severity":"ERROR"} +17:00:45.940 [XNIO-1 task-1] c6y5VPoPQEWEV9qy4kcfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.940 [XNIO-1 task-1] c6y5VPoPQEWEV9qy4kcfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.940 [XNIO-1 task-1] c6y5VPoPQEWEV9qy4kcfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.942 [XNIO-1 task-1] c6y5VPoPQEWEV9qy4kcfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.942 [XNIO-1 task-1] c6y5VPoPQEWEV9qy4kcfLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.947 [XNIO-1 task-1] XPS6_RbrTEGwOZyEJIxXcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.947 [XNIO-1 task-1] XPS6_RbrTEGwOZyEJIxXcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.948 [XNIO-1 task-1] XPS6_RbrTEGwOZyEJIxXcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.948 [XNIO-1 task-1] XPS6_RbrTEGwOZyEJIxXcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.948 [XNIO-1 task-1] XPS6_RbrTEGwOZyEJIxXcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aedff129-d04b-4663-a7b0-c2727283a073", "aedff129-d04b-4663-a7b0-c2727283a073", refreshToken) +17:00:45.949 [XNIO-1 task-1] XPS6_RbrTEGwOZyEJIxXcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aedff129-d04b-4663-a7b0-c2727283a073 is not found.","severity":"ERROR"} +17:00:45.952 [XNIO-1 task-1] -v1q3uSBTDekkpCwdU5j-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.952 [XNIO-1 task-1] -v1q3uSBTDekkpCwdU5j-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.953 [XNIO-1 task-1] -v1q3uSBTDekkpCwdU5j-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.953 [XNIO-1 task-1] -v1q3uSBTDekkpCwdU5j-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.964 [XNIO-1 task-1] LWS-QYlkTVKyz7thjuZEXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.965 [XNIO-1 task-1] LWS-QYlkTVKyz7thjuZEXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.965 [XNIO-1 task-1] LWS-QYlkTVKyz7thjuZEXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:45.965 [XNIO-1 task-1] LWS-QYlkTVKyz7thjuZEXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073, base path is set to: null +17:00:45.966 [XNIO-1 task-1] LWS-QYlkTVKyz7thjuZEXw DEBUG com.networknt.schema.TypeValidator debug - validate( "aedff129-d04b-4663-a7b0-c2727283a073", "aedff129-d04b-4663-a7b0-c2727283a073", refreshToken) +17:00:45.966 [XNIO-1 task-1] LWS-QYlkTVKyz7thjuZEXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token aedff129-d04b-4663-a7b0-c2727283a073 is not found.","severity":"ERROR"} +17:00:45.977 [XNIO-1 task-1] E2FM4hGkRxaK8CL2XP8cYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.977 [XNIO-1 task-1] E2FM4hGkRxaK8CL2XP8cYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:45.977 [XNIO-1 task-1] E2FM4hGkRxaK8CL2XP8cYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:45.977 [XNIO-1 task-1] E2FM4hGkRxaK8CL2XP8cYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.978 [XNIO-1 task-1] E2FM4hGkRxaK8CL2XP8cYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.982 [XNIO-1 task-1] mZ-mPrJyRceuxPJ7swTIgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.982 [XNIO-1 task-1] mZ-mPrJyRceuxPJ7swTIgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:45.983 [XNIO-1 task-1] mZ-mPrJyRceuxPJ7swTIgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:45.983 [XNIO-1 task-1] mZ-mPrJyRceuxPJ7swTIgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.983 [XNIO-1 task-1] mZ-mPrJyRceuxPJ7swTIgw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.011 [XNIO-1 task-1] NpBPidrYSQWaOcaCaBpL6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.011 [XNIO-1 task-1] NpBPidrYSQWaOcaCaBpL6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.011 [XNIO-1 task-1] NpBPidrYSQWaOcaCaBpL6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.013 [XNIO-1 task-1] NpBPidrYSQWaOcaCaBpL6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.019 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0866bc0f +17:00:46.023 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0866bc0f +17:00:46.039 [XNIO-1 task-1] 8D55TZfaQCe2T98vjXOoeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.039 [XNIO-1 task-1] 8D55TZfaQCe2T98vjXOoeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.039 [XNIO-1 task-1] 8D55TZfaQCe2T98vjXOoeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.040 [XNIO-1 task-1] 8D55TZfaQCe2T98vjXOoeA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.046 [XNIO-1 task-1] 1r1Qol7sTiiSOxBgGThs-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.047 [XNIO-1 task-1] 1r1Qol7sTiiSOxBgGThs-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.047 [XNIO-1 task-1] 1r1Qol7sTiiSOxBgGThs-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.047 [XNIO-1 task-1] 1r1Qol7sTiiSOxBgGThs-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.047 [XNIO-1 task-1] 1r1Qol7sTiiSOxBgGThs-g DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.047 [XNIO-1 task-1] 1r1Qol7sTiiSOxBgGThs-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.050 [XNIO-1 task-1] _bOHqDdiRgGMPNw2W04SZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.050 [XNIO-1 task-1] _bOHqDdiRgGMPNw2W04SZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.050 [XNIO-1 task-1] _bOHqDdiRgGMPNw2W04SZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.051 [XNIO-1 task-1] _bOHqDdiRgGMPNw2W04SZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.051 [XNIO-1 task-1] _bOHqDdiRgGMPNw2W04SZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:46.051 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0866bc0f +17:00:46.055 [XNIO-1 task-1] UeV4xoY4TmKVxpEK3spmrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.055 [XNIO-1 task-1] UeV4xoY4TmKVxpEK3spmrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.056 [XNIO-1 task-1] UeV4xoY4TmKVxpEK3spmrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.056 [XNIO-1 task-1] UeV4xoY4TmKVxpEK3spmrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.056 [XNIO-1 task-1] UeV4xoY4TmKVxpEK3spmrA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.063 [XNIO-1 task-1] mX6eZG3JTRqEw_jfNSgdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.063 [XNIO-1 task-1] mX6eZG3JTRqEw_jfNSgdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.063 [XNIO-1 task-1] mX6eZG3JTRqEw_jfNSgdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.063 [XNIO-1 task-1] mX6eZG3JTRqEw_jfNSgdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.064 [XNIO-1 task-1] mX6eZG3JTRqEw_jfNSgdcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:46.068 [XNIO-1 task-1] DXR86OEYSM-lDDwyHWJX1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.069 [XNIO-1 task-1] DXR86OEYSM-lDDwyHWJX1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.070 [XNIO-1 task-1] DXR86OEYSM-lDDwyHWJX1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.071 [XNIO-1 task-1] DXR86OEYSM-lDDwyHWJX1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.072 [XNIO-1 task-1] DXR86OEYSM-lDDwyHWJX1A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.082 [XNIO-1 task-1] QWs19I7JTSassMxfHkAdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.082 [XNIO-1 task-1] QWs19I7JTSassMxfHkAdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.082 [XNIO-1 task-1] QWs19I7JTSassMxfHkAdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.083 [XNIO-1 task-1] QWs19I7JTSassMxfHkAdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.083 [XNIO-1 task-1] QWs19I7JTSassMxfHkAdmQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:46.087 [XNIO-1 task-1] fUu2ZxaRQkWtraFVhkk7aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:46.087 [XNIO-1 task-1] fUu2ZxaRQkWtraFVhkk7aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.087 [XNIO-1 task-1] fUu2ZxaRQkWtraFVhkk7aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.087 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0866bc0f +17:00:46.088 [XNIO-1 task-1] fUu2ZxaRQkWtraFVhkk7aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:46.088 [XNIO-1 task-1] fUu2ZxaRQkWtraFVhkk7aA DEBUG com.networknt.schema.TypeValidator debug - validate( "575f19bf-81b2-41cf-8330-f6f3741aec31", "575f19bf-81b2-41cf-8330-f6f3741aec31", refreshToken) +17:00:46.088 [XNIO-1 task-1] fUu2ZxaRQkWtraFVhkk7aA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 575f19bf-81b2-41cf-8330-f6f3741aec31 is not found.","severity":"ERROR"} +17:00:46.092 [XNIO-1 task-1] o2WiOCvlRrKVrwf26hmxkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.092 [XNIO-1 task-1] o2WiOCvlRrKVrwf26hmxkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.092 [XNIO-1 task-1] o2WiOCvlRrKVrwf26hmxkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.093 [XNIO-1 task-1] o2WiOCvlRrKVrwf26hmxkg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.111 [XNIO-1 task-1] BU2lY9A-Re6nW0HApefvgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.112 [XNIO-1 task-1] BU2lY9A-Re6nW0HApefvgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.112 [XNIO-1 task-1] BU2lY9A-Re6nW0HApefvgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.113 [XNIO-1 task-1] BU2lY9A-Re6nW0HApefvgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.113 [XNIO-1 task-1] BU2lY9A-Re6nW0HApefvgA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.113 [XNIO-1 task-1] BU2lY9A-Re6nW0HApefvgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.120 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c9d8076d +17:00:46.120 [XNIO-1 task-1] Sc0gsyaURe-yg3UWwz-mHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:46.120 [XNIO-1 task-1] Sc0gsyaURe-yg3UWwz-mHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.120 [XNIO-1 task-1] Sc0gsyaURe-yg3UWwz-mHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.121 [XNIO-1 task-1] Sc0gsyaURe-yg3UWwz-mHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:46.121 [XNIO-1 task-1] Sc0gsyaURe-yg3UWwz-mHA DEBUG com.networknt.schema.TypeValidator debug - validate( "575f19bf-81b2-41cf-8330-f6f3741aec31", "575f19bf-81b2-41cf-8330-f6f3741aec31", refreshToken) +17:00:46.121 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0866bc0f +17:00:46.126 [XNIO-1 task-1] YHKTAUBdTJGkMwMh-n_iZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.128 [XNIO-1 task-1] YHKTAUBdTJGkMwMh-n_iZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.128 [XNIO-1 task-1] YHKTAUBdTJGkMwMh-n_iZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.128 [XNIO-1 task-1] YHKTAUBdTJGkMwMh-n_iZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.128 [XNIO-1 task-1] YHKTAUBdTJGkMwMh-n_iZg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.129 [XNIO-1 task-1] YHKTAUBdTJGkMwMh-n_iZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.134 [XNIO-1 task-1] _p_-4nRWRwyaLnd2IlH2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31 +17:00:46.134 [XNIO-1 task-1] _p_-4nRWRwyaLnd2IlH2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.134 [XNIO-1 task-1] _p_-4nRWRwyaLnd2IlH2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.134 [XNIO-1 task-1] _p_-4nRWRwyaLnd2IlH2Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31 +17:00:46.135 [XNIO-1 task-1] _p_-4nRWRwyaLnd2IlH2Hg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 575f19bf-81b2-41cf-8330-f6f3741aec31 +17:00:46.139 [XNIO-1 task-1] 1cQscfTSQfqAfj1RhSNd_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.139 [XNIO-1 task-1] 1cQscfTSQfqAfj1RhSNd_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.139 [XNIO-1 task-1] 1cQscfTSQfqAfj1RhSNd_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.140 [XNIO-1 task-1] 1cQscfTSQfqAfj1RhSNd_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.140 [XNIO-1 task-1] 1cQscfTSQfqAfj1RhSNd_A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.155 [XNIO-1 task-1] 5wD2VcMHT62nClZfs67IDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.156 [XNIO-1 task-1] 5wD2VcMHT62nClZfs67IDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.156 [XNIO-1 task-1] 5wD2VcMHT62nClZfs67IDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.156 [XNIO-1 task-1] 5wD2VcMHT62nClZfs67IDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.167 [XNIO-1 task-1] mxjLy7bRSL6q2LniRv2K7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:46.168 [XNIO-1 task-1] mxjLy7bRSL6q2LniRv2K7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.168 [XNIO-1 task-1] mxjLy7bRSL6q2LniRv2K7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.168 [XNIO-1 task-1] mxjLy7bRSL6q2LniRv2K7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/575f19bf-81b2-41cf-8330-f6f3741aec31, base path is set to: null +17:00:46.168 [XNIO-1 task-1] mxjLy7bRSL6q2LniRv2K7g DEBUG com.networknt.schema.TypeValidator debug - validate( "575f19bf-81b2-41cf-8330-f6f3741aec31", "575f19bf-81b2-41cf-8330-f6f3741aec31", refreshToken) +17:00:46.168 [XNIO-1 task-1] mxjLy7bRSL6q2LniRv2K7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 575f19bf-81b2-41cf-8330-f6f3741aec31 is not found.","severity":"ERROR"} +17:00:46.173 [XNIO-1 task-1] Wt7gk_ejQ-OoqfiO97gg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.173 [XNIO-1 task-1] Wt7gk_ejQ-OoqfiO97gg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.173 [XNIO-1 task-1] Wt7gk_ejQ-OoqfiO97gg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.173 [XNIO-1 task-1] Wt7gk_ejQ-OoqfiO97gg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.174 [XNIO-1 task-1] Wt7gk_ejQ-OoqfiO97gg1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.178 [XNIO-1 task-1] Wt7gk_ejQ-OoqfiO97gg1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:46.185 [XNIO-1 task-1] JQxLC_08Ts6I_cJ7NU4zPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:46.185 [XNIO-1 task-1] JQxLC_08Ts6I_cJ7NU4zPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.185 [XNIO-1 task-1] JQxLC_08Ts6I_cJ7NU4zPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.187 [XNIO-1 task-1] JQxLC_08Ts6I_cJ7NU4zPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aedff129-d04b-4663-a7b0-c2727283a073 +17:00:46.187 [XNIO-1 task-1] JQxLC_08Ts6I_cJ7NU4zPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = aedff129-d04b-4663-a7b0-c2727283a073 +17:00:46.192 [XNIO-1 task-1] iH984TbVQ6ighk4CEf7aVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:46.192 [XNIO-1 task-1] iH984TbVQ6ighk4CEf7aVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.192 [XNIO-1 task-1] iH984TbVQ6ighk4CEf7aVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.192 [XNIO-1 task-1] iH984TbVQ6ighk4CEf7aVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:46.192 [XNIO-1 task-1] iH984TbVQ6ighk4CEf7aVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4245efda-7798-424b-9ecb-4913188fe5ee", "4245efda-7798-424b-9ecb-4913188fe5ee", refreshToken) +17:00:46.193 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.200 [XNIO-1 task-1] HQLZr-JOSMGCiZAOdyaAmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.200 [XNIO-1 task-1] HQLZr-JOSMGCiZAOdyaAmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.200 [XNIO-1 task-1] HQLZr-JOSMGCiZAOdyaAmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.201 [XNIO-1 task-1] HQLZr-JOSMGCiZAOdyaAmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.201 [XNIO-1 task-1] HQLZr-JOSMGCiZAOdyaAmg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.211 [XNIO-1 task-1] -Q8szWeYTAu5NZTtTlnyfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.211 [XNIO-1 task-1] -Q8szWeYTAu5NZTtTlnyfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.211 [XNIO-1 task-1] -Q8szWeYTAu5NZTtTlnyfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.211 [XNIO-1 task-1] -Q8szWeYTAu5NZTtTlnyfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.212 [XNIO-1 task-1] -Q8szWeYTAu5NZTtTlnyfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.213 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:87612c77 +17:00:46.220 [XNIO-1 task-1] jjQz4BcGQ5-oFWub-e9zlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.220 [XNIO-1 task-1] jjQz4BcGQ5-oFWub-e9zlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.220 [XNIO-1 task-1] jjQz4BcGQ5-oFWub-e9zlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.220 [XNIO-1 task-1] jjQz4BcGQ5-oFWub-e9zlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.220 [XNIO-1 task-1] jjQz4BcGQ5-oFWub-e9zlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.223 [XNIO-1 task-1] jjQz4BcGQ5-oFWub-e9zlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:46.228 [XNIO-1 task-1] hRWmgYXOSv6qLqh3FIHtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.228 [XNIO-1 task-1] hRWmgYXOSv6qLqh3FIHtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.228 [XNIO-1 task-1] hRWmgYXOSv6qLqh3FIHtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.229 [XNIO-1 task-1] hRWmgYXOSv6qLqh3FIHtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.229 [XNIO-1 task-1] hRWmgYXOSv6qLqh3FIHtTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.235 [XNIO-1 task-1] hRWmgYXOSv6qLqh3FIHtTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:46.245 [XNIO-1 task-1] NSG74t42RGSajlnRSWT3rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.246 [XNIO-1 task-1] NSG74t42RGSajlnRSWT3rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.246 [XNIO-1 task-1] NSG74t42RGSajlnRSWT3rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.246 [XNIO-1 task-1] NSG74t42RGSajlnRSWT3rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.246 [XNIO-1 task-1] NSG74t42RGSajlnRSWT3rQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.249 [XNIO-1 task-1] NSG74t42RGSajlnRSWT3rQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4245efda-7798-424b-9ecb-4913188fe5ee is not found.","severity":"ERROR"} +17:00:46.259 [XNIO-1 task-1] 4Zn_OfcST42ExllV-z4e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.259 [XNIO-1 task-1] 4Zn_OfcST42ExllV-z4e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.260 [XNIO-1 task-1] 4Zn_OfcST42ExllV-z4e4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.260 [XNIO-1 task-1] 4Zn_OfcST42ExllV-z4e4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.268 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c9d8076d +17:00:46.271 [XNIO-1 task-1] iqrMawIeTwOS3_-5hOXy6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:46.273 [XNIO-1 task-1] iqrMawIeTwOS3_-5hOXy6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.273 [XNIO-1 task-1] iqrMawIeTwOS3_-5hOXy6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.274 [XNIO-1 task-1] iqrMawIeTwOS3_-5hOXy6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4245efda-7798-424b-9ecb-4913188fe5ee, base path is set to: null +17:00:46.274 [XNIO-1 task-1] iqrMawIeTwOS3_-5hOXy6A DEBUG com.networknt.schema.TypeValidator debug - validate( "4245efda-7798-424b-9ecb-4913188fe5ee", "4245efda-7798-424b-9ecb-4913188fe5ee", refreshToken) +17:00:46.274 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4245efda-7798-424b-9ecb-4913188fe5ee +17:00:46.287 [XNIO-1 task-1] 6q_dWHQDRx-llgUNDOSDug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.287 [XNIO-1 task-1] 6q_dWHQDRx-llgUNDOSDug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.287 [XNIO-1 task-1] 6q_dWHQDRx-llgUNDOSDug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.287 [XNIO-1 task-1] 6q_dWHQDRx-llgUNDOSDug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.288 [XNIO-1 task-1] 6q_dWHQDRx-llgUNDOSDug DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.288 [XNIO-1 task-1] 6q_dWHQDRx-llgUNDOSDug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.297 [XNIO-1 task-1] iPKuEz1UQROQR6OgJntZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.297 [XNIO-1 task-1] iPKuEz1UQROQR6OgJntZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.297 [XNIO-1 task-1] iPKuEz1UQROQR6OgJntZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.297 [XNIO-1 task-1] iPKuEz1UQROQR6OgJntZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.301 [XNIO-1 task-1] iPKuEz1UQROQR6OgJntZvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.302 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.307 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9c276acf +17:00:46.347 [XNIO-1 task-1] sEg6ltkmQCq-WfXyWhK6RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92ac24b9-47aa-4ccf-85f5-5d0876535275 +17:00:46.348 [XNIO-1 task-1] sEg6ltkmQCq-WfXyWhK6RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.348 [XNIO-1 task-1] sEg6ltkmQCq-WfXyWhK6RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.349 [XNIO-1 task-1] sEg6ltkmQCq-WfXyWhK6RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/92ac24b9-47aa-4ccf-85f5-5d0876535275 +17:00:46.349 [XNIO-1 task-1] sEg6ltkmQCq-WfXyWhK6RA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 92ac24b9-47aa-4ccf-85f5-5d0876535275 +17:00:46.357 [XNIO-1 task-1] nSpqniBlRkKfQK4eKSKp2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.357 [XNIO-1 task-1] nSpqniBlRkKfQK4eKSKp2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.357 [XNIO-1 task-1] nSpqniBlRkKfQK4eKSKp2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.357 [XNIO-1 task-1] nSpqniBlRkKfQK4eKSKp2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.358 [XNIO-1 task-1] nSpqniBlRkKfQK4eKSKp2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.395 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:11a2fffd +17:00:46.407 [XNIO-1 task-1] 0y_TmsVMT7qeNk6aXH9zNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.407 [XNIO-1 task-1] 0y_TmsVMT7qeNk6aXH9zNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.407 [XNIO-1 task-1] 0y_TmsVMT7qeNk6aXH9zNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.407 [XNIO-1 task-1] 0y_TmsVMT7qeNk6aXH9zNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.408 [XNIO-1 task-1] 0y_TmsVMT7qeNk6aXH9zNA DEBUG com.networknt.schema.TypeValidator debug - validate( "15d1cf27-b34a-48bf-8c1a-087c282153e1", "15d1cf27-b34a-48bf-8c1a-087c282153e1", refreshToken) +17:00:46.410 [XNIO-1 task-1] 0y_TmsVMT7qeNk6aXH9zNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 15d1cf27-b34a-48bf-8c1a-087c282153e1 is not found.","severity":"ERROR"} +17:00:46.416 [XNIO-1 task-1] hgB4oTiqRG6FB0ZnEl16IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.416 [XNIO-1 task-1] hgB4oTiqRG6FB0ZnEl16IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.416 [XNIO-1 task-1] hgB4oTiqRG6FB0ZnEl16IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.417 [XNIO-1 task-1] hgB4oTiqRG6FB0ZnEl16IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.417 [XNIO-1 task-1] hgB4oTiqRG6FB0ZnEl16IA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.423 [XNIO-1 task-1] xGARmCI3Scm5SD-Oqk-AFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.423 [XNIO-1 task-1] xGARmCI3Scm5SD-Oqk-AFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.423 [XNIO-1 task-1] xGARmCI3Scm5SD-Oqk-AFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.423 [XNIO-1 task-1] xGARmCI3Scm5SD-Oqk-AFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.424 [XNIO-1 task-1] xGARmCI3Scm5SD-Oqk-AFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "15d1cf27-b34a-48bf-8c1a-087c282153e1", "15d1cf27-b34a-48bf-8c1a-087c282153e1", refreshToken) +17:00:46.424 [XNIO-1 task-1] xGARmCI3Scm5SD-Oqk-AFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 15d1cf27-b34a-48bf-8c1a-087c282153e1 is not found.","severity":"ERROR"} +17:00:46.428 [XNIO-1 task-1] fldg8ufkRlm1Z3KhTahwLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.428 [XNIO-1 task-1] fldg8ufkRlm1Z3KhTahwLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.428 [XNIO-1 task-1] fldg8ufkRlm1Z3KhTahwLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.428 [XNIO-1 task-1] fldg8ufkRlm1Z3KhTahwLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.428 [XNIO-1 task-1] fldg8ufkRlm1Z3KhTahwLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.431 [XNIO-1 task-1] 1Qxk_zlYSAahzUs_x7hERQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.431 [XNIO-1 task-1] 1Qxk_zlYSAahzUs_x7hERQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.431 [XNIO-1 task-1] 1Qxk_zlYSAahzUs_x7hERQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.431 [XNIO-1 task-1] 1Qxk_zlYSAahzUs_x7hERQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.432 [XNIO-1 task-1] 1Qxk_zlYSAahzUs_x7hERQ DEBUG com.networknt.schema.TypeValidator debug - validate( "15d1cf27-b34a-48bf-8c1a-087c282153e1", "15d1cf27-b34a-48bf-8c1a-087c282153e1", refreshToken) +17:00:46.433 [XNIO-1 task-1] 1Qxk_zlYSAahzUs_x7hERQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 15d1cf27-b34a-48bf-8c1a-087c282153e1 is not found.","severity":"ERROR"} +17:00:46.436 [XNIO-1 task-1] PXD7znLHQ16wMKWGD-z6Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.436 [XNIO-1 task-1] PXD7znLHQ16wMKWGD-z6Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.437 [XNIO-1 task-1] PXD7znLHQ16wMKWGD-z6Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.437 [XNIO-1 task-1] PXD7znLHQ16wMKWGD-z6Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.438 [XNIO-1 task-1] PXD7znLHQ16wMKWGD-z6Kg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.442 [XNIO-1 task-1] 0whcDz4qRiSrkxSKt7lHTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.443 [XNIO-1 task-1] 0whcDz4qRiSrkxSKt7lHTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.443 [XNIO-1 task-1] 0whcDz4qRiSrkxSKt7lHTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.443 [XNIO-1 task-1] 0whcDz4qRiSrkxSKt7lHTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.443 [XNIO-1 task-1] 0whcDz4qRiSrkxSKt7lHTw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.460 [XNIO-1 task-1] 5ttnVBIITMivoULgzUhs5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.460 [XNIO-1 task-1] 5ttnVBIITMivoULgzUhs5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.461 [XNIO-1 task-1] 5ttnVBIITMivoULgzUhs5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.461 [XNIO-1 task-1] 5ttnVBIITMivoULgzUhs5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.461 [XNIO-1 task-1] 5ttnVBIITMivoULgzUhs5w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.465 [XNIO-1 task-1] uD54ZtqySDeFcQUJs9wsjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.466 [XNIO-1 task-1] uD54ZtqySDeFcQUJs9wsjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.467 [XNIO-1 task-1] uD54ZtqySDeFcQUJs9wsjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.467 [XNIO-1 task-1] uD54ZtqySDeFcQUJs9wsjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.467 [XNIO-1 task-1] uD54ZtqySDeFcQUJs9wsjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.467 [XNIO-1 task-1] uD54ZtqySDeFcQUJs9wsjg DEBUG com.networknt.schema.TypeValidator debug - validate( "15d1cf27-b34a-48bf-8c1a-087c282153e1", "15d1cf27-b34a-48bf-8c1a-087c282153e1", refreshToken) +17:00:46.467 [XNIO-1 task-1] uD54ZtqySDeFcQUJs9wsjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 15d1cf27-b34a-48bf-8c1a-087c282153e1 is not found.","severity":"ERROR"} +17:00:46.473 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7d57a331 +17:00:46.475 [XNIO-1 task-1] KcE45okoSY2RVI6QmDY93g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.475 [XNIO-1 task-1] KcE45okoSY2RVI6QmDY93g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.475 [XNIO-1 task-1] KcE45okoSY2RVI6QmDY93g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.475 [XNIO-1 task-1] KcE45okoSY2RVI6QmDY93g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/15d1cf27-b34a-48bf-8c1a-087c282153e1, base path is set to: null +17:00:46.476 [XNIO-1 task-1] KcE45okoSY2RVI6QmDY93g DEBUG com.networknt.schema.TypeValidator debug - validate( "15d1cf27-b34a-48bf-8c1a-087c282153e1", "15d1cf27-b34a-48bf-8c1a-087c282153e1", refreshToken) +17:00:46.478 [XNIO-1 task-1] KcE45okoSY2RVI6QmDY93g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 15d1cf27-b34a-48bf-8c1a-087c282153e1 is not found.","severity":"ERROR"} +17:00:46.487 [XNIO-1 task-1] F80hjfcZTeaEYSH9bQ3eOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.487 [XNIO-1 task-1] F80hjfcZTeaEYSH9bQ3eOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.487 [XNIO-1 task-1] F80hjfcZTeaEYSH9bQ3eOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.489 [XNIO-1 task-1] F80hjfcZTeaEYSH9bQ3eOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.489 [XNIO-1 task-1] F80hjfcZTeaEYSH9bQ3eOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.505 [XNIO-1 task-1] WDuugwibTkipzm9L1gEjDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.506 [XNIO-1 task-1] WDuugwibTkipzm9L1gEjDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.506 [XNIO-1 task-1] WDuugwibTkipzm9L1gEjDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.506 [XNIO-1 task-1] WDuugwibTkipzm9L1gEjDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.506 [XNIO-1 task-1] WDuugwibTkipzm9L1gEjDw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.507 [XNIO-1 task-1] WDuugwibTkipzm9L1gEjDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.511 [XNIO-1 task-1] 1KV-ELHSSeWplbFV181HkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.511 [XNIO-1 task-1] 1KV-ELHSSeWplbFV181HkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.514 [XNIO-1 task-1] 1KV-ELHSSeWplbFV181HkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.517 [XNIO-1 task-1] 1KV-ELHSSeWplbFV181HkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.517 [XNIO-1 task-1] 1KV-ELHSSeWplbFV181HkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.518 [XNIO-1 task-1] 1KV-ELHSSeWplbFV181HkA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 35b0a03d-2227-4afc-9ffe-8ef6a08761c1 is not found.","severity":"ERROR"} +17:00:46.525 [XNIO-1 task-1] 2NSGFnypSA2r9qe-r_bm5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.526 [XNIO-1 task-1] 2NSGFnypSA2r9qe-r_bm5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.526 [XNIO-1 task-1] 2NSGFnypSA2r9qe-r_bm5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.526 [XNIO-1 task-1] 2NSGFnypSA2r9qe-r_bm5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.535 [XNIO-1 task-1] lvtSTLk9QxKU2NXL-njudA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.535 [XNIO-1 task-1] lvtSTLk9QxKU2NXL-njudA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.535 [XNIO-1 task-1] lvtSTLk9QxKU2NXL-njudA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.535 [XNIO-1 task-1] lvtSTLk9QxKU2NXL-njudA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.535 [XNIO-1 task-1] lvtSTLk9QxKU2NXL-njudA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.543 [XNIO-1 task-1] lWDs-1f_SIitc-zZIIq3TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.543 [XNIO-1 task-1] lWDs-1f_SIitc-zZIIq3TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.543 [XNIO-1 task-1] lWDs-1f_SIitc-zZIIq3TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.543 [XNIO-1 task-1] lWDs-1f_SIitc-zZIIq3TA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.545 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8fef196b +17:00:46.547 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8fef196b +17:00:46.554 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:11a2fffd +17:00:46.557 [XNIO-1 task-1] lzWKscDfToSLAHYMN5m1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.557 [XNIO-1 task-1] lzWKscDfToSLAHYMN5m1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.557 [XNIO-1 task-1] lzWKscDfToSLAHYMN5m1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.557 [XNIO-1 task-1] lzWKscDfToSLAHYMN5m1nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.558 [XNIO-1 task-1] lzWKscDfToSLAHYMN5m1nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:46.562 [XNIO-1 task-1] dS9FdmazQ9uMEge_N2SD9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.562 [XNIO-1 task-1] dS9FdmazQ9uMEge_N2SD9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.563 [XNIO-1 task-1] dS9FdmazQ9uMEge_N2SD9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.563 [XNIO-1 task-1] dS9FdmazQ9uMEge_N2SD9A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.563 [XNIO-1 task-1] dS9FdmazQ9uMEge_N2SD9A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.569 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8fef196b +17:00:46.576 [XNIO-1 task-1] dy7zoxkfR3SXZy2zrSC_4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/153a3ac1-0c33-4859-90ac-19dcad833883 +17:00:46.576 [XNIO-1 task-1] dy7zoxkfR3SXZy2zrSC_4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.576 [XNIO-1 task-1] dy7zoxkfR3SXZy2zrSC_4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.576 [XNIO-1 task-1] dy7zoxkfR3SXZy2zrSC_4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/153a3ac1-0c33-4859-90ac-19dcad833883 +17:00:46.577 [XNIO-1 task-1] dy7zoxkfR3SXZy2zrSC_4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 153a3ac1-0c33-4859-90ac-19dcad833883 +17:00:46.579 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ebfe2789-74fb-43d5-b02e-241466f65f2e +17:00:46.579 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4d486d7c +17:00:46.582 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4d486d7c +17:00:46.585 [XNIO-1 task-1] dy7zoxkfR3SXZy2zrSC_4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 153a3ac1-0c33-4859-90ac-19dcad833883 is not found.","severity":"ERROR"} +17:00:46.588 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:65993b0f +17:00:46.589 [XNIO-1 task-1] 8lKxH-JUTNGhTm6ATYwNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.590 [XNIO-1 task-1] 8lKxH-JUTNGhTm6ATYwNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.590 [XNIO-1 task-1] 8lKxH-JUTNGhTm6ATYwNIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.590 [XNIO-1 task-1] 8lKxH-JUTNGhTm6ATYwNIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.600 [XNIO-1 task-1] ap27sWr8Sfy8Gc4MnDWTVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b, base path is set to: null +17:00:46.601 [XNIO-1 task-1] ap27sWr8Sfy8Gc4MnDWTVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.601 [XNIO-1 task-1] ap27sWr8Sfy8Gc4MnDWTVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.601 [XNIO-1 task-1] ap27sWr8Sfy8Gc4MnDWTVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b, base path is set to: null +17:00:46.601 [XNIO-1 task-1] ap27sWr8Sfy8Gc4MnDWTVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "895e7450-4200-4a06-a149-5435d010918b", "895e7450-4200-4a06-a149-5435d010918b", refreshToken) +17:00:46.604 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4d486d7c +17:00:46.611 [XNIO-1 task-1] qQHCX80HSrikMhPhmRf3QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b, base path is set to: null +17:00:46.611 [XNIO-1 task-1] qQHCX80HSrikMhPhmRf3QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.611 [XNIO-1 task-1] qQHCX80HSrikMhPhmRf3QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.611 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:11a2fffd +17:00:46.612 [XNIO-1 task-1] qQHCX80HSrikMhPhmRf3QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b +17:00:46.612 [XNIO-1 task-1] qQHCX80HSrikMhPhmRf3QQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 895e7450-4200-4a06-a149-5435d010918b +17:00:46.620 [XNIO-1 task-1] -z4GdFopQd2S5fOzfqKiyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.621 [XNIO-1 task-1] -z4GdFopQd2S5fOzfqKiyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.621 [XNIO-1 task-1] -z4GdFopQd2S5fOzfqKiyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.621 [XNIO-1 task-1] -z4GdFopQd2S5fOzfqKiyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.621 [XNIO-1 task-1] -z4GdFopQd2S5fOzfqKiyA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.632 [XNIO-1 task-1] 51uB4r1MQcuZvOdv1NjmGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.632 [XNIO-1 task-1] 51uB4r1MQcuZvOdv1NjmGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.632 [XNIO-1 task-1] 51uB4r1MQcuZvOdv1NjmGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.633 [XNIO-1 task-1] 51uB4r1MQcuZvOdv1NjmGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.642 [XNIO-1 task-1] iTAZ8k7ITiqoBm0b9X7HkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.643 [XNIO-1 task-1] iTAZ8k7ITiqoBm0b9X7HkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.643 [XNIO-1 task-1] iTAZ8k7ITiqoBm0b9X7HkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.643 [XNIO-1 task-1] iTAZ8k7ITiqoBm0b9X7HkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.643 [XNIO-1 task-1] iTAZ8k7ITiqoBm0b9X7HkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.655 [XNIO-1 task-1] Ors77QQ2RlqN0lhY6WwZOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.655 [XNIO-1 task-1] Ors77QQ2RlqN0lhY6WwZOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.656 [XNIO-1 task-1] Ors77QQ2RlqN0lhY6WwZOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.656 [XNIO-1 task-1] Ors77QQ2RlqN0lhY6WwZOg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.670 [XNIO-1 task-1] _RSRB5V5RMSnwv6YZxl6qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b, base path is set to: null +17:00:46.670 [XNIO-1 task-1] _RSRB5V5RMSnwv6YZxl6qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.670 [XNIO-1 task-1] _RSRB5V5RMSnwv6YZxl6qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.670 [XNIO-1 task-1] _RSRB5V5RMSnwv6YZxl6qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b, base path is set to: null +17:00:46.671 [XNIO-1 task-1] _RSRB5V5RMSnwv6YZxl6qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "895e7450-4200-4a06-a149-5435d010918b", "895e7450-4200-4a06-a149-5435d010918b", refreshToken) +17:00:46.671 [XNIO-1 task-1] _RSRB5V5RMSnwv6YZxl6qQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 895e7450-4200-4a06-a149-5435d010918b is not found.","severity":"ERROR"} +17:00:46.675 [XNIO-1 task-1] sHsk74LdQgyzqwRFlwUfdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/610e2b86-8919-4a33-b9f9-8f631c48865f +17:00:46.675 [XNIO-1 task-1] sHsk74LdQgyzqwRFlwUfdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.675 [XNIO-1 task-1] sHsk74LdQgyzqwRFlwUfdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.675 [XNIO-1 task-1] sHsk74LdQgyzqwRFlwUfdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/610e2b86-8919-4a33-b9f9-8f631c48865f +17:00:46.676 [XNIO-1 task-1] sHsk74LdQgyzqwRFlwUfdQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 610e2b86-8919-4a33-b9f9-8f631c48865f +17:00:46.683 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:87612c77 +17:00:46.693 [XNIO-1 task-1] E4QAilFIRzqVjS2ct2XSUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b +17:00:46.693 [XNIO-1 task-1] E4QAilFIRzqVjS2ct2XSUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.693 [XNIO-1 task-1] E4QAilFIRzqVjS2ct2XSUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.693 [XNIO-1 task-1] E4QAilFIRzqVjS2ct2XSUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b +17:00:46.693 [XNIO-1 task-1] E4QAilFIRzqVjS2ct2XSUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 895e7450-4200-4a06-a149-5435d010918b +17:00:46.697 [XNIO-1 task-1] 7i249OWjSHmGRdlpEUlPNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/610e2b86-8919-4a33-b9f9-8f631c48865f, base path is set to: null +17:00:46.697 [XNIO-1 task-1] 7i249OWjSHmGRdlpEUlPNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.697 [XNIO-1 task-1] 7i249OWjSHmGRdlpEUlPNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.698 [XNIO-1 task-1] 7i249OWjSHmGRdlpEUlPNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/610e2b86-8919-4a33-b9f9-8f631c48865f, base path is set to: null +17:00:46.698 [XNIO-1 task-1] 7i249OWjSHmGRdlpEUlPNw DEBUG com.networknt.schema.TypeValidator debug - validate( "610e2b86-8919-4a33-b9f9-8f631c48865f", "610e2b86-8919-4a33-b9f9-8f631c48865f", refreshToken) +17:00:46.702 [XNIO-1 task-1] 7i249OWjSHmGRdlpEUlPNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 610e2b86-8919-4a33-b9f9-8f631c48865f is not found.","severity":"ERROR"} +17:00:46.708 [XNIO-1 task-1] HTn-3zc9QtmpFJUV5v8wow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.708 [XNIO-1 task-1] HTn-3zc9QtmpFJUV5v8wow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.708 [XNIO-1 task-1] HTn-3zc9QtmpFJUV5v8wow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.709 [XNIO-1 task-1] HTn-3zc9QtmpFJUV5v8wow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.718 [XNIO-1 task-1] SzlPftSPRbqGkzWvLKX1fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.718 [XNIO-1 task-1] SzlPftSPRbqGkzWvLKX1fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.719 [XNIO-1 task-1] SzlPftSPRbqGkzWvLKX1fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.719 [XNIO-1 task-1] SzlPftSPRbqGkzWvLKX1fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.719 [XNIO-1 task-1] SzlPftSPRbqGkzWvLKX1fw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.727 [XNIO-1 task-1] YLxGeXrHRAm5ouORP5JCNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b +17:00:46.727 [XNIO-1 task-1] YLxGeXrHRAm5ouORP5JCNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.728 [XNIO-1 task-1] YLxGeXrHRAm5ouORP5JCNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.728 [XNIO-1 task-1] YLxGeXrHRAm5ouORP5JCNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b +17:00:46.728 [XNIO-1 task-1] YLxGeXrHRAm5ouORP5JCNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 895e7450-4200-4a06-a149-5435d010918b +17:00:46.732 [XNIO-1 task-1] uzvnnqDYR8yWkhnu62lbvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/610e2b86-8919-4a33-b9f9-8f631c48865f, base path is set to: null +17:00:46.732 [XNIO-1 task-1] uzvnnqDYR8yWkhnu62lbvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.732 [XNIO-1 task-1] uzvnnqDYR8yWkhnu62lbvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.733 [XNIO-1 task-1] uzvnnqDYR8yWkhnu62lbvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/610e2b86-8919-4a33-b9f9-8f631c48865f, base path is set to: null +17:00:46.733 [XNIO-1 task-1] uzvnnqDYR8yWkhnu62lbvw DEBUG com.networknt.schema.TypeValidator debug - validate( "610e2b86-8919-4a33-b9f9-8f631c48865f", "610e2b86-8919-4a33-b9f9-8f631c48865f", refreshToken) +17:00:46.733 [XNIO-1 task-1] uzvnnqDYR8yWkhnu62lbvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 610e2b86-8919-4a33-b9f9-8f631c48865f is not found.","severity":"ERROR"} +17:00:46.737 [XNIO-1 task-1] zHlurZc9Ry2acV58y-x2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b +17:00:46.737 [XNIO-1 task-1] zHlurZc9Ry2acV58y-x2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.737 [XNIO-1 task-1] zHlurZc9Ry2acV58y-x2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.737 [XNIO-1 task-1] zHlurZc9Ry2acV58y-x2_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/895e7450-4200-4a06-a149-5435d010918b +17:00:46.737 [XNIO-1 task-1] zHlurZc9Ry2acV58y-x2_A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 895e7450-4200-4a06-a149-5435d010918b +17:00:46.743 [XNIO-1 task-1] 4BgtDqFqT2G9QXuV_sifXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.743 [XNIO-1 task-1] 4BgtDqFqT2G9QXuV_sifXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.743 [XNIO-1 task-1] 4BgtDqFqT2G9QXuV_sifXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.743 [XNIO-1 task-1] 4BgtDqFqT2G9QXuV_sifXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.743 [XNIO-1 task-1] 4BgtDqFqT2G9QXuV_sifXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.755 [XNIO-1 task-1] LlDDKO2gRmOYxBjehlWqyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.755 [XNIO-1 task-1] LlDDKO2gRmOYxBjehlWqyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.755 [XNIO-1 task-1] LlDDKO2gRmOYxBjehlWqyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.756 [XNIO-1 task-1] LlDDKO2gRmOYxBjehlWqyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.756 [XNIO-1 task-1] LlDDKO2gRmOYxBjehlWqyw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.766 [XNIO-1 task-1] 1iLvepnFTFasAoxDckXgew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.766 [XNIO-1 task-1] 1iLvepnFTFasAoxDckXgew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.766 [XNIO-1 task-1] 1iLvepnFTFasAoxDckXgew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.766 [XNIO-1 task-1] 1iLvepnFTFasAoxDckXgew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.766 [XNIO-1 task-1] 1iLvepnFTFasAoxDckXgew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:46.772 [XNIO-1 task-1] GW1dnQ8ITPSTZClUKuZBAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1, base path is set to: null +17:00:46.772 [XNIO-1 task-1] GW1dnQ8ITPSTZClUKuZBAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.772 [XNIO-1 task-1] GW1dnQ8ITPSTZClUKuZBAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.772 [XNIO-1 task-1] GW1dnQ8ITPSTZClUKuZBAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1, base path is set to: null +17:00:46.773 [XNIO-1 task-1] GW1dnQ8ITPSTZClUKuZBAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "35b0a03d-2227-4afc-9ffe-8ef6a08761c1", "35b0a03d-2227-4afc-9ffe-8ef6a08761c1", refreshToken) +17:00:46.773 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.780 [XNIO-1 task-1] GAMeFV_dQHGG8vNXk6wB0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.780 [XNIO-1 task-1] GAMeFV_dQHGG8vNXk6wB0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.780 [XNIO-1 task-1] GAMeFV_dQHGG8vNXk6wB0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.780 [XNIO-1 task-1] GAMeFV_dQHGG8vNXk6wB0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.781 [XNIO-1 task-1] GAMeFV_dQHGG8vNXk6wB0Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.789 [XNIO-1 task-1] y9XMgiRhSgmECgWCbg3zhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.789 [XNIO-1 task-1] y9XMgiRhSgmECgWCbg3zhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.789 [XNIO-1 task-1] y9XMgiRhSgmECgWCbg3zhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.789 [XNIO-1 task-1] y9XMgiRhSgmECgWCbg3zhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.798 [XNIO-1 task-1] 8pEQZ6QcRbSU5AoPwVHhNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.799 [XNIO-1 task-1] 8pEQZ6QcRbSU5AoPwVHhNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.799 [XNIO-1 task-1] 8pEQZ6QcRbSU5AoPwVHhNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.799 [XNIO-1 task-1] 8pEQZ6QcRbSU5AoPwVHhNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.799 [XNIO-1 task-1] 8pEQZ6QcRbSU5AoPwVHhNw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.799 [XNIO-1 task-1] 8pEQZ6QcRbSU5AoPwVHhNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.806 [XNIO-1 task-1] nsaSwXEJTa2AKS5rHKrIWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.806 [XNIO-1 task-1] nsaSwXEJTa2AKS5rHKrIWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.806 [XNIO-1 task-1] nsaSwXEJTa2AKS5rHKrIWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.807 [XNIO-1 task-1] nsaSwXEJTa2AKS5rHKrIWw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.814 [XNIO-1 task-1] KLjhCVrxQdGeZsxyddTlKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.815 [XNIO-1 task-1] KLjhCVrxQdGeZsxyddTlKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.815 [XNIO-1 task-1] KLjhCVrxQdGeZsxyddTlKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.815 [XNIO-1 task-1] KLjhCVrxQdGeZsxyddTlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.816 [XNIO-1 task-1] KLjhCVrxQdGeZsxyddTlKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.828 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b7dfe0be-8654-4117-b01f-7e2348e98c4b +17:00:46.830 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:12be2f2f-0c91-440b-b4a9-ce73d8bb4b69 +17:00:46.837 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9c276acf +17:00:46.840 [XNIO-1 task-1] O15MQ-wqRZ640OV4hJa34w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.840 [XNIO-1 task-1] O15MQ-wqRZ640OV4hJa34w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.840 [XNIO-1 task-1] O15MQ-wqRZ640OV4hJa34w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.841 [XNIO-1 task-1] O15MQ-wqRZ640OV4hJa34w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.847 [XNIO-1 task-1] qnKQxzG7R0yF0qt6fo2y5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.848 [XNIO-1 task-1] qnKQxzG7R0yF0qt6fo2y5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.848 [XNIO-1 task-1] qnKQxzG7R0yF0qt6fo2y5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.848 [XNIO-1 task-1] qnKQxzG7R0yF0qt6fo2y5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.848 [XNIO-1 task-1] qnKQxzG7R0yF0qt6fo2y5g DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.849 [XNIO-1 task-1] qnKQxzG7R0yF0qt6fo2y5g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.851 [XNIO-1 task-1] r2u58tPYQKWAFeU9avKg1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.851 [XNIO-1 task-1] r2u58tPYQKWAFeU9avKg1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.851 [XNIO-1 task-1] r2u58tPYQKWAFeU9avKg1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.852 [XNIO-1 task-1] r2u58tPYQKWAFeU9avKg1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.852 [XNIO-1 task-1] r2u58tPYQKWAFeU9avKg1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:46.855 [XNIO-1 task-1] wqmiiu-TTBuZFKpogD5QLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.855 [XNIO-1 task-1] wqmiiu-TTBuZFKpogD5QLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.855 [XNIO-1 task-1] wqmiiu-TTBuZFKpogD5QLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.855 [XNIO-1 task-1] wqmiiu-TTBuZFKpogD5QLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.856 [XNIO-1 task-1] wqmiiu-TTBuZFKpogD5QLA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.864 [XNIO-1 task-1] vtaq_2FVSaqKeZT_HLsFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.864 [XNIO-1 task-1] vtaq_2FVSaqKeZT_HLsFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.864 [XNIO-1 task-1] vtaq_2FVSaqKeZT_HLsFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.864 [XNIO-1 task-1] vtaq_2FVSaqKeZT_HLsFNg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.870 [XNIO-1 task-1] VJXyAfegSDaejjKXO4loJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.870 [XNIO-1 task-1] VJXyAfegSDaejjKXO4loJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.870 [XNIO-1 task-1] VJXyAfegSDaejjKXO4loJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.870 [XNIO-1 task-1] VJXyAfegSDaejjKXO4loJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.871 [XNIO-1 task-1] VJXyAfegSDaejjKXO4loJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.871 [XNIO-1 task-1] VJXyAfegSDaejjKXO4loJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.874 [XNIO-1 task-1] 02hJx-1DQXOtNIebXihr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.874 [XNIO-1 task-1] 02hJx-1DQXOtNIebXihr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.875 [XNIO-1 task-1] 02hJx-1DQXOtNIebXihr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.875 [XNIO-1 task-1] 02hJx-1DQXOtNIebXihr9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.885 [XNIO-1 task-1] u_fzPnZVSVqv_iPphuvoug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527, base path is set to: null +17:00:46.886 [XNIO-1 task-1] u_fzPnZVSVqv_iPphuvoug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.886 [XNIO-1 task-1] u_fzPnZVSVqv_iPphuvoug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.887 [XNIO-1 task-1] u_fzPnZVSVqv_iPphuvoug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527, base path is set to: null +17:00:46.887 [XNIO-1 task-1] u_fzPnZVSVqv_iPphuvoug DEBUG com.networknt.schema.TypeValidator debug - validate( "ee2a133e-5162-4375-b006-11ace3594527", "ee2a133e-5162-4375-b006-11ace3594527", refreshToken) +17:00:46.898 [XNIO-1 task-1] lexGC2rDRbeFMNnIvfU_VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.898 [XNIO-1 task-1] lexGC2rDRbeFMNnIvfU_VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.898 [XNIO-1 task-1] lexGC2rDRbeFMNnIvfU_VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.898 [XNIO-1 task-1] lexGC2rDRbeFMNnIvfU_VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.899 [XNIO-1 task-1] lexGC2rDRbeFMNnIvfU_VA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.899 [XNIO-1 task-1] lexGC2rDRbeFMNnIvfU_VA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.905 [XNIO-1 task-1] yzK8z4o1TQGJfI_bzOeGQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527 +17:00:46.905 [XNIO-1 task-1] yzK8z4o1TQGJfI_bzOeGQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.905 [XNIO-1 task-1] yzK8z4o1TQGJfI_bzOeGQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.906 [XNIO-1 task-1] yzK8z4o1TQGJfI_bzOeGQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527 +17:00:46.908 [XNIO-1 task-1] yzK8z4o1TQGJfI_bzOeGQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ee2a133e-5162-4375-b006-11ace3594527 +17:00:46.931 [XNIO-1 task-1] fW-MCm2AQ2uMYpXIQKXkUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.931 [XNIO-1 task-1] fW-MCm2AQ2uMYpXIQKXkUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.931 [XNIO-1 task-1] fW-MCm2AQ2uMYpXIQKXkUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.932 [XNIO-1 task-1] fW-MCm2AQ2uMYpXIQKXkUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:46.932 [XNIO-1 task-1] fW-MCm2AQ2uMYpXIQKXkUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:46.937 [XNIO-1 task-1] _B2wU0nrTYCC5NNk6W_aPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.937 [XNIO-1 task-1] _B2wU0nrTYCC5NNk6W_aPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.937 [XNIO-1 task-1] _B2wU0nrTYCC5NNk6W_aPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:46.938 [XNIO-1 task-1] _B2wU0nrTYCC5NNk6W_aPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.938 [XNIO-1 task-1] _B2wU0nrTYCC5NNk6W_aPA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:46.946 [XNIO-1 task-1] xaVukT4TQH-EuLYUB_L-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.946 [XNIO-1 task-1] xaVukT4TQH-EuLYUB_L-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.946 [XNIO-1 task-1] xaVukT4TQH-EuLYUB_L-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.946 [XNIO-1 task-1] xaVukT4TQH-EuLYUB_L-8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.957 [XNIO-1 task-1] a-9BV4i5S7uLE7fPks2SMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.958 [XNIO-1 task-1] a-9BV4i5S7uLE7fPks2SMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:46.958 [XNIO-1 task-1] a-9BV4i5S7uLE7fPks2SMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:46.960 [XNIO-1 task-1] a-9BV4i5S7uLE7fPks2SMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:46.960 [XNIO-1 task-1] a-9BV4i5S7uLE7fPks2SMA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:46.961 [XNIO-1 task-1] a-9BV4i5S7uLE7fPks2SMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:46.966 [XNIO-1 task-1] Bag-o-sJRbquxnz690_ezw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.966 [XNIO-1 task-1] Bag-o-sJRbquxnz690_ezw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.966 [XNIO-1 task-1] Bag-o-sJRbquxnz690_ezw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.966 [XNIO-1 task-1] Bag-o-sJRbquxnz690_ezw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.966 [XNIO-1 task-1] Bag-o-sJRbquxnz690_ezw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 35b0a03d-2227-4afc-9ffe-8ef6a08761c1 +17:00:46.969 [XNIO-1 task-1] Bag-o-sJRbquxnz690_ezw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 35b0a03d-2227-4afc-9ffe-8ef6a08761c1 is not found.","severity":"ERROR"} +17:00:46.973 [XNIO-1 task-1] 7090c9FTSFaE2Cwao5KZ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/96a5f40c-467a-4e8a-9164-bdb6b906dd28 +17:00:46.973 [XNIO-1 task-1] 7090c9FTSFaE2Cwao5KZ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.973 [XNIO-1 task-1] 7090c9FTSFaE2Cwao5KZ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.973 [XNIO-1 task-1] 7090c9FTSFaE2Cwao5KZ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/96a5f40c-467a-4e8a-9164-bdb6b906dd28 +17:00:46.974 [XNIO-1 task-1] 7090c9FTSFaE2Cwao5KZ6A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 96a5f40c-467a-4e8a-9164-bdb6b906dd28 +17:00:46.981 [XNIO-1 task-1] c228f8ojS-iAUpoq60w1eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.981 [XNIO-1 task-1] c228f8ojS-iAUpoq60w1eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.982 [XNIO-1 task-1] c228f8ojS-iAUpoq60w1eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.982 [XNIO-1 task-1] c228f8ojS-iAUpoq60w1eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.982 [XNIO-1 task-1] c228f8ojS-iAUpoq60w1eA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.993 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bb037687-4e89-43a0-8e2b-f3a0efd0da43 +17:00:46.996 [XNIO-1 task-1] VCdNJWwMT3uEpHAEbu3qOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.996 [XNIO-1 task-1] VCdNJWwMT3uEpHAEbu3qOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:46.996 [XNIO-1 task-1] VCdNJWwMT3uEpHAEbu3qOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:46.996 [XNIO-1 task-1] VCdNJWwMT3uEpHAEbu3qOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.996 [XNIO-1 task-1] VCdNJWwMT3uEpHAEbu3qOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:47.003 [XNIO-1 task-1] 0pjLJKxYTdeh0pzXRTkFOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.003 [XNIO-1 task-1] 0pjLJKxYTdeh0pzXRTkFOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.003 [XNIO-1 task-1] 0pjLJKxYTdeh0pzXRTkFOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.003 [XNIO-1 task-1] 0pjLJKxYTdeh0pzXRTkFOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.004 [XNIO-1 task-1] 0pjLJKxYTdeh0pzXRTkFOA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:47.004 [XNIO-1 task-1] 0pjLJKxYTdeh0pzXRTkFOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:47.007 [XNIO-1 task-1] EH9mq4tARwWvHNST6qdX0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.007 [XNIO-1 task-1] EH9mq4tARwWvHNST6qdX0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.007 [XNIO-1 task-1] EH9mq4tARwWvHNST6qdX0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.007 [XNIO-1 task-1] EH9mq4tARwWvHNST6qdX0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.008 [XNIO-1 task-1] EH9mq4tARwWvHNST6qdX0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.015 [XNIO-1 task-1] WRp2M5cuTS6f0TdHhD7JnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f, base path is set to: null +17:00:47.015 [XNIO-1 task-1] WRp2M5cuTS6f0TdHhD7JnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.015 [XNIO-1 task-1] WRp2M5cuTS6f0TdHhD7JnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.015 [XNIO-1 task-1] WRp2M5cuTS6f0TdHhD7JnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f, base path is set to: null +17:00:47.015 [XNIO-1 task-1] WRp2M5cuTS6f0TdHhD7JnA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a207300-6e7a-41a2-ac88-6832ca98560f", "4a207300-6e7a-41a2-ac88-6832ca98560f", refreshToken) +17:00:47.016 [XNIO-1 task-1] WRp2M5cuTS6f0TdHhD7JnA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4a207300-6e7a-41a2-ac88-6832ca98560f is not found.","severity":"ERROR"} +17:00:47.018 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:65993b0f +17:00:47.018 [XNIO-1 task-1] dysenebBSraX8F0geOSmFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.018 [XNIO-1 task-1] dysenebBSraX8F0geOSmFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.018 [XNIO-1 task-1] dysenebBSraX8F0geOSmFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.018 [XNIO-1 task-1] dysenebBSraX8F0geOSmFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.021 [XNIO-1 task-1] dysenebBSraX8F0geOSmFg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:47.026 [XNIO-1 task-1] p6p6UZvZSNmZrGtryx0RaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.026 [XNIO-1 task-1] p6p6UZvZSNmZrGtryx0RaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.026 [XNIO-1 task-1] p6p6UZvZSNmZrGtryx0RaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.027 [XNIO-1 task-1] p6p6UZvZSNmZrGtryx0RaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.027 [XNIO-1 task-1] p6p6UZvZSNmZrGtryx0RaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.038 [XNIO-1 task-1] 1OEu0F56RQOzvXx5WSWasw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.039 [XNIO-1 task-1] 1OEu0F56RQOzvXx5WSWasw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.039 [XNIO-1 task-1] 1OEu0F56RQOzvXx5WSWasw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.039 [XNIO-1 task-1] 1OEu0F56RQOzvXx5WSWasw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.039 [XNIO-1 task-1] 1OEu0F56RQOzvXx5WSWasw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ee2a133e-5162-4375-b006-11ace3594527 +17:00:47.047 [XNIO-1 task-1] x9rs5O5ER2eaHWy0Y5CYlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.047 [XNIO-1 task-1] x9rs5O5ER2eaHWy0Y5CYlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.047 [XNIO-1 task-1] x9rs5O5ER2eaHWy0Y5CYlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.047 [XNIO-1 task-1] x9rs5O5ER2eaHWy0Y5CYlA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.048 [XNIO-1 task-1] x9rs5O5ER2eaHWy0Y5CYlA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.054 [XNIO-1 task-1] O_O0ZJ_nS5e1AUOE6cAbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:47.054 [XNIO-1 task-1] O_O0ZJ_nS5e1AUOE6cAbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.054 [XNIO-1 task-1] O_O0ZJ_nS5e1AUOE6cAbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.054 [XNIO-1 task-1] O_O0ZJ_nS5e1AUOE6cAbEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:47.054 [XNIO-1 task-1] O_O0ZJ_nS5e1AUOE6cAbEA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:47.058 [XNIO-1 task-1] SHwutudpQOeTnRG_f0HI6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.059 [XNIO-1 task-1] SHwutudpQOeTnRG_f0HI6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.059 [XNIO-1 task-1] SHwutudpQOeTnRG_f0HI6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.059 [XNIO-1 task-1] SHwutudpQOeTnRG_f0HI6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.059 [XNIO-1 task-1] SHwutudpQOeTnRG_f0HI6g DEBUG com.networknt.schema.TypeValidator debug - validate( "08525df2-a8c2-4e5a-811d-52df583028d6", "08525df2-a8c2-4e5a-811d-52df583028d6", refreshToken) +17:00:47.068 [XNIO-1 task-1] jViSQAOVS8Gf4Vrai6RCww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.068 [XNIO-1 task-1] jViSQAOVS8Gf4Vrai6RCww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.068 [XNIO-1 task-1] jViSQAOVS8Gf4Vrai6RCww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.069 [XNIO-1 task-1] jViSQAOVS8Gf4Vrai6RCww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.069 [XNIO-1 task-1] jViSQAOVS8Gf4Vrai6RCww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.070 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:65993b0f +17:00:47.074 [XNIO-1 task-1] Z2n9Uu3QTKm5-yEXMJFl1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.075 [XNIO-1 task-1] Z2n9Uu3QTKm5-yEXMJFl1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.075 [XNIO-1 task-1] Z2n9Uu3QTKm5-yEXMJFl1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.075 [XNIO-1 task-1] Z2n9Uu3QTKm5-yEXMJFl1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.075 [XNIO-1 task-1] Z2n9Uu3QTKm5-yEXMJFl1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.084 [XNIO-1 task-1] mKZ7AKHyTO64Qig5ipjDSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.084 [XNIO-1 task-1] mKZ7AKHyTO64Qig5ipjDSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.085 [XNIO-1 task-1] mKZ7AKHyTO64Qig5ipjDSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.085 [XNIO-1 task-1] mKZ7AKHyTO64Qig5ipjDSQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.108 [XNIO-1 task-1] _LeVx357S9WxnZsDSBGDUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.109 [XNIO-1 task-1] _LeVx357S9WxnZsDSBGDUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.109 [XNIO-1 task-1] _LeVx357S9WxnZsDSBGDUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.109 [XNIO-1 task-1] _LeVx357S9WxnZsDSBGDUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.109 [XNIO-1 task-1] _LeVx357S9WxnZsDSBGDUA DEBUG com.networknt.schema.TypeValidator debug - validate( "08525df2-a8c2-4e5a-811d-52df583028d6", "08525df2-a8c2-4e5a-811d-52df583028d6", refreshToken) +17:00:47.110 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd119f76 +17:00:47.112 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd119f76 +17:00:47.119 [XNIO-1 task-1] G6V79U1iSgmNhw687_JFlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.119 [XNIO-1 task-1] G6V79U1iSgmNhw687_JFlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.119 [XNIO-1 task-1] G6V79U1iSgmNhw687_JFlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.119 [XNIO-1 task-1] G6V79U1iSgmNhw687_JFlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.120 [XNIO-1 task-1] G6V79U1iSgmNhw687_JFlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08525df2-a8c2-4e5a-811d-52df583028d6", "08525df2-a8c2-4e5a-811d-52df583028d6", refreshToken) +17:00:47.120 [XNIO-1 task-1] G6V79U1iSgmNhw687_JFlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 08525df2-a8c2-4e5a-811d-52df583028d6 is not found.","severity":"ERROR"} +17:00:47.126 [XNIO-1 task-1] gxSKP08VSGa-J1lIuJv8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.126 [XNIO-1 task-1] gxSKP08VSGa-J1lIuJv8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.126 [XNIO-1 task-1] gxSKP08VSGa-J1lIuJv8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.127 [XNIO-1 task-1] gxSKP08VSGa-J1lIuJv8cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.127 [XNIO-1 task-1] gxSKP08VSGa-J1lIuJv8cA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.135 [XNIO-1 task-1] xbllcsdPR8K5ELKd6cH-Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +17:00:47.149 [XNIO-1 task-1] PRSTiIqDTr-Tp1HsrDiBpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +17:00:47.149 [XNIO-1 task-1] PRSTiIqDTr-Tp1HsrDiBpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.152 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:fd119f76 +17:00:47.153 [XNIO-1 task-1] i_bVDsymQ8ilRRWMd8jGFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.153 [XNIO-1 task-1] i_bVDsymQ8ilRRWMd8jGFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:47.154 [XNIO-1 task-1] i_bVDsymQ8ilRRWMd8jGFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.154 [XNIO-1 task-1] i_bVDsymQ8ilRRWMd8jGFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.154 [XNIO-1 task-1] i_bVDsymQ8ilRRWMd8jGFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "08525df2-a8c2-4e5a-811d-52df583028d6", "08525df2-a8c2-4e5a-811d-52df583028d6", refreshToken) +17:00:47.155 [XNIO-1 task-1] i_bVDsymQ8ilRRWMd8jGFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 08525df2-a8c2-4e5a-811d-52df583028d6 is not found.","severity":"ERROR"} +17:00:47.163 [XNIO-1 task-1] 5LbU5rsQSY-0n9gHisK1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.163 [XNIO-1 task-1] 5LbU5rsQSY-0n9gHisK1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.163 [XNIO-1 task-1] 5LbU5rsQSY-0n9gHisK1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.163 [XNIO-1 task-1] 5LbU5rsQSY-0n9gHisK1Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.164 [XNIO-1 task-1] 5LbU5rsQSY-0n9gHisK1Xw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.167 [XNIO-1 task-1] aWh57ZN8RMafkuzO9yErzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.167 [XNIO-1 task-1] aWh57ZN8RMafkuzO9yErzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.167 [XNIO-1 task-1] aWh57ZN8RMafkuzO9yErzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.167 [XNIO-1 task-1] aWh57ZN8RMafkuzO9yErzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6, base path is set to: null +17:00:47.168 [XNIO-1 task-1] aWh57ZN8RMafkuzO9yErzw DEBUG com.networknt.schema.TypeValidator debug - validate( "08525df2-a8c2-4e5a-811d-52df583028d6", "08525df2-a8c2-4e5a-811d-52df583028d6", refreshToken) +17:00:47.168 [XNIO-1 task-1] aWh57ZN8RMafkuzO9yErzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 08525df2-a8c2-4e5a-811d-52df583028d6 is not found.","severity":"ERROR"} +17:00:47.173 [XNIO-1 task-1] 44qkfr2jQYq6KK2QhbZW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.174 [XNIO-1 task-1] 44qkfr2jQYq6KK2QhbZW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.174 [XNIO-1 task-1] 44qkfr2jQYq6KK2QhbZW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.174 [XNIO-1 task-1] 44qkfr2jQYq6KK2QhbZW3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.174 [XNIO-1 task-1] 44qkfr2jQYq6KK2QhbZW3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 08525df2-a8c2-4e5a-811d-52df583028d6 +17:00:47.177 [XNIO-1 task-1] g8mIt4mVRPerKYCVVfunig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.177 [XNIO-1 task-1] g8mIt4mVRPerKYCVVfunig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.177 [XNIO-1 task-1] g8mIt4mVRPerKYCVVfunig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.178 [XNIO-1 task-1] g8mIt4mVRPerKYCVVfunig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.178 [XNIO-1 task-1] g8mIt4mVRPerKYCVVfunig DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:47.178 [XNIO-1 task-1] g8mIt4mVRPerKYCVVfunig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:47.185 [XNIO-1 task-1] ZQNLqMOBQGCs5ND6CyFZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.186 [XNIO-1 task-1] ZQNLqMOBQGCs5ND6CyFZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.186 [XNIO-1 task-1] ZQNLqMOBQGCs5ND6CyFZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.186 [XNIO-1 task-1] ZQNLqMOBQGCs5ND6CyFZqg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.186 [XNIO-1 task-1] ZQNLqMOBQGCs5ND6CyFZqg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.188 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d285dae2 +17:00:47.196 [XNIO-1 task-1] _581LbY0RGKH0oAOAvziZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.196 [XNIO-1 task-1] _581LbY0RGKH0oAOAvziZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.196 [XNIO-1 task-1] _581LbY0RGKH0oAOAvziZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.197 [XNIO-1 task-1] _581LbY0RGKH0oAOAvziZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.197 [XNIO-1 task-1] _581LbY0RGKH0oAOAvziZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.211 [XNIO-1 task-1] -PJ_E_W4TZ6EBNSNauXU8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/96a5f40c-467a-4e8a-9164-bdb6b906dd28 +17:00:47.211 [XNIO-1 task-1] -PJ_E_W4TZ6EBNSNauXU8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.211 [XNIO-1 task-1] -PJ_E_W4TZ6EBNSNauXU8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.212 [XNIO-1 task-1] -PJ_E_W4TZ6EBNSNauXU8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/96a5f40c-467a-4e8a-9164-bdb6b906dd28 +17:00:47.212 [XNIO-1 task-1] -PJ_E_W4TZ6EBNSNauXU8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 96a5f40c-467a-4e8a-9164-bdb6b906dd28 +17:00:47.219 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0bb5493b-6d9d-4ae8-9c0c-9b843d0f85be +17:00:47.222 [XNIO-1 task-1] Dtq7bFzMRdWuknKLLr2QTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.223 [XNIO-1 task-1] Dtq7bFzMRdWuknKLLr2QTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.223 [XNIO-1 task-1] Dtq7bFzMRdWuknKLLr2QTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.223 [XNIO-1 task-1] Dtq7bFzMRdWuknKLLr2QTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.223 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d285dae2 +17:00:47.223 [XNIO-1 task-1] Dtq7bFzMRdWuknKLLr2QTg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.229 [XNIO-1 task-1] bsi8kObRSNK_hArxdFNjDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.229 [XNIO-1 task-1] bsi8kObRSNK_hArxdFNjDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.229 [XNIO-1 task-1] bsi8kObRSNK_hArxdFNjDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.229 [XNIO-1 task-1] bsi8kObRSNK_hArxdFNjDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.236 [XNIO-1 task-1] dauTEcG-RBut8Gr3LirKXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.236 [XNIO-1 task-1] dauTEcG-RBut8Gr3LirKXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.236 [XNIO-1 task-1] dauTEcG-RBut8Gr3LirKXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.237 [XNIO-1 task-1] dauTEcG-RBut8Gr3LirKXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.237 [XNIO-1 task-1] dauTEcG-RBut8Gr3LirKXg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.250 [XNIO-1 task-1] Ity_6sGeR1yINM85p3AkGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.250 [XNIO-1 task-1] Ity_6sGeR1yINM85p3AkGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.250 [XNIO-1 task-1] Ity_6sGeR1yINM85p3AkGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.250 [XNIO-1 task-1] Ity_6sGeR1yINM85p3AkGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.258 [XNIO-1 task-1] ibEsQ-rISfqcq_kUpB2dDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.258 [XNIO-1 task-1] ibEsQ-rISfqcq_kUpB2dDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.258 [XNIO-1 task-1] ibEsQ-rISfqcq_kUpB2dDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.259 [XNIO-1 task-1] ibEsQ-rISfqcq_kUpB2dDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.259 [XNIO-1 task-1] ibEsQ-rISfqcq_kUpB2dDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.266 [XNIO-1 task-1] lSePbdAnSl-UsJ3XvHpzAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.266 [XNIO-1 task-1] lSePbdAnSl-UsJ3XvHpzAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.267 [XNIO-1 task-1] lSePbdAnSl-UsJ3XvHpzAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.268 [XNIO-1 task-1] lSePbdAnSl-UsJ3XvHpzAA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.276 [XNIO-1 task-1] HcPRvMwzTFybTUL8kJzMug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f, base path is set to: null +17:00:47.276 [XNIO-1 task-1] HcPRvMwzTFybTUL8kJzMug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.278 [XNIO-1 task-1] HcPRvMwzTFybTUL8kJzMug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.278 [XNIO-1 task-1] HcPRvMwzTFybTUL8kJzMug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f, base path is set to: null +17:00:47.278 [XNIO-1 task-1] HcPRvMwzTFybTUL8kJzMug DEBUG com.networknt.schema.TypeValidator debug - validate( "4a207300-6e7a-41a2-ac88-6832ca98560f", "4a207300-6e7a-41a2-ac88-6832ca98560f", refreshToken) +17:00:47.280 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d285dae2 +17:00:47.283 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d285dae2 +17:00:47.286 [XNIO-1 task-1] wTlCyorbRRu0ReBUj4ARBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.286 [XNIO-1 task-1] wTlCyorbRRu0ReBUj4ARBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.286 [XNIO-1 task-1] wTlCyorbRRu0ReBUj4ARBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.287 [XNIO-1 task-1] wTlCyorbRRu0ReBUj4ARBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.294 [XNIO-1 task-1] GWXUBz4ySdicgnbvO3wEpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.295 [XNIO-1 task-1] GWXUBz4ySdicgnbvO3wEpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.295 [XNIO-1 task-1] GWXUBz4ySdicgnbvO3wEpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.295 [XNIO-1 task-1] GWXUBz4ySdicgnbvO3wEpg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.296 [XNIO-1 task-1] GWXUBz4ySdicgnbvO3wEpg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.305 [XNIO-1 task-1] JLj2L4ByS9676mOA_WKfBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.306 [XNIO-1 task-1] JLj2L4ByS9676mOA_WKfBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.306 [XNIO-1 task-1] JLj2L4ByS9676mOA_WKfBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.307 [XNIO-1 task-1] JLj2L4ByS9676mOA_WKfBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.307 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:47.335 [XNIO-1 task-1] baBf-8vXQBaC6mPYy3JnNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.335 [XNIO-1 task-1] baBf-8vXQBaC6mPYy3JnNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.335 [XNIO-1 task-1] baBf-8vXQBaC6mPYy3JnNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.336 [XNIO-1 task-1] baBf-8vXQBaC6mPYy3JnNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.336 [XNIO-1 task-1] baBf-8vXQBaC6mPYy3JnNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.344 [XNIO-1 task-1] ohFKLGNtQH6rK3w9Hri8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.344 [XNIO-1 task-1] ohFKLGNtQH6rK3w9Hri8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.344 [XNIO-1 task-1] ohFKLGNtQH6rK3w9Hri8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.345 [XNIO-1 task-1] ohFKLGNtQH6rK3w9Hri8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.345 [XNIO-1 task-1] ohFKLGNtQH6rK3w9Hri8yw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.354 [XNIO-1 task-1] L1o5eCXnTBiNDIH6tYJ8pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.354 [XNIO-1 task-1] L1o5eCXnTBiNDIH6tYJ8pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.354 [XNIO-1 task-1] L1o5eCXnTBiNDIH6tYJ8pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.354 [XNIO-1 task-1] L1o5eCXnTBiNDIH6tYJ8pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.354 [XNIO-1 task-1] L1o5eCXnTBiNDIH6tYJ8pQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.360 [XNIO-1 task-1] R2iJQkN4RaqBGOo9vusqPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f, base path is set to: null +17:00:47.360 [XNIO-1 task-1] R2iJQkN4RaqBGOo9vusqPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.360 [XNIO-1 task-1] R2iJQkN4RaqBGOo9vusqPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.360 [XNIO-1 task-1] R2iJQkN4RaqBGOo9vusqPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a207300-6e7a-41a2-ac88-6832ca98560f, base path is set to: null +17:00:47.361 [XNIO-1 task-1] R2iJQkN4RaqBGOo9vusqPA DEBUG com.networknt.schema.TypeValidator debug - validate( "4a207300-6e7a-41a2-ac88-6832ca98560f", "4a207300-6e7a-41a2-ac88-6832ca98560f", refreshToken) +17:00:47.361 [XNIO-1 task-1] R2iJQkN4RaqBGOo9vusqPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4a207300-6e7a-41a2-ac88-6832ca98560f is not found.","severity":"ERROR"} +17:00:47.364 [XNIO-1 task-1] XIiwmt5cSneEtNsZw9Lwdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.364 [XNIO-1 task-1] XIiwmt5cSneEtNsZw9Lwdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.364 [XNIO-1 task-1] XIiwmt5cSneEtNsZw9Lwdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.364 [XNIO-1 task-1] XIiwmt5cSneEtNsZw9Lwdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.364 [XNIO-1 task-1] XIiwmt5cSneEtNsZw9Lwdw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.375 [XNIO-1 task-1] RHQzRRUSRZSKfIlAItRzLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.375 [XNIO-1 task-1] RHQzRRUSRZSKfIlAItRzLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.375 [XNIO-1 task-1] RHQzRRUSRZSKfIlAItRzLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.376 [XNIO-1 task-1] RHQzRRUSRZSKfIlAItRzLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.377 [XNIO-1 task-1] RHQzRRUSRZSKfIlAItRzLg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.382 [XNIO-1 task-1] YMWp1O-KSTqBvk8d0du0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.382 [XNIO-1 task-1] YMWp1O-KSTqBvk8d0du0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.383 [XNIO-1 task-1] YMWp1O-KSTqBvk8d0du0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.383 [XNIO-1 task-1] YMWp1O-KSTqBvk8d0du0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.383 [XNIO-1 task-1] YMWp1O-KSTqBvk8d0du0bw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.401 [XNIO-1 task-1] U0gpgAFrQyiFrtiGr4sWMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.401 [XNIO-1 task-1] U0gpgAFrQyiFrtiGr4sWMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.401 [XNIO-1 task-1] U0gpgAFrQyiFrtiGr4sWMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.401 [XNIO-1 task-1] U0gpgAFrQyiFrtiGr4sWMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.401 [XNIO-1 task-1] U0gpgAFrQyiFrtiGr4sWMw DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:47.405 [XNIO-1 task-1] U0gpgAFrQyiFrtiGr4sWMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:47.410 [XNIO-1 task-1] 0V4bN5GyTN2U5c8xE20Hhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.410 [XNIO-1 task-1] 0V4bN5GyTN2U5c8xE20Hhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.410 [XNIO-1 task-1] 0V4bN5GyTN2U5c8xE20Hhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.410 [XNIO-1 task-1] 0V4bN5GyTN2U5c8xE20Hhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.421 [XNIO-1 task-1] 93hYqC57Qyq-BhsyQdq2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.421 [XNIO-1 task-1] 93hYqC57Qyq-BhsyQdq2mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.422 [XNIO-1 task-1] 93hYqC57Qyq-BhsyQdq2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.422 [XNIO-1 task-1] 93hYqC57Qyq-BhsyQdq2mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.423 [XNIO-1 task-1] 93hYqC57Qyq-BhsyQdq2mw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.433 [XNIO-1 task-1] Z92gQXBHRBSVUk0S6TuWaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.434 [XNIO-1 task-1] Z92gQXBHRBSVUk0S6TuWaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.434 [XNIO-1 task-1] Z92gQXBHRBSVUk0S6TuWaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.434 [XNIO-1 task-1] Z92gQXBHRBSVUk0S6TuWaQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.443 [XNIO-1 task-1] FlY6XH4oTkuf5M2D8fiHiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.444 [XNIO-1 task-1] FlY6XH4oTkuf5M2D8fiHiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.444 [XNIO-1 task-1] FlY6XH4oTkuf5M2D8fiHiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.444 [XNIO-1 task-1] FlY6XH4oTkuf5M2D8fiHiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.444 [XNIO-1 task-1] FlY6XH4oTkuf5M2D8fiHiw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:47.455 [XNIO-1 task-1] FlY6XH4oTkuf5M2D8fiHiw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:47.461 [XNIO-1 task-1] yK8k-jSlT-mSW3Pr155x1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.461 [XNIO-1 task-1] yK8k-jSlT-mSW3Pr155x1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.462 [XNIO-1 task-1] yK8k-jSlT-mSW3Pr155x1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.462 [XNIO-1 task-1] yK8k-jSlT-mSW3Pr155x1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.467 [XNIO-1 task-1] NAgECoJOSp2IA3MqHJyX3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3abdd97-063a-4c38-92c2-44bee0a07d38, base path is set to: null +17:00:47.468 [XNIO-1 task-1] NAgECoJOSp2IA3MqHJyX3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.468 [XNIO-1 task-1] NAgECoJOSp2IA3MqHJyX3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.468 [XNIO-1 task-1] NAgECoJOSp2IA3MqHJyX3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c3abdd97-063a-4c38-92c2-44bee0a07d38, base path is set to: null +17:00:47.468 [XNIO-1 task-1] NAgECoJOSp2IA3MqHJyX3w DEBUG com.networknt.schema.TypeValidator debug - validate( "c3abdd97-063a-4c38-92c2-44bee0a07d38", "c3abdd97-063a-4c38-92c2-44bee0a07d38", refreshToken) +17:00:47.481 [XNIO-1 task-1] KqGyiTsuTleidFUreKYIXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.481 [XNIO-1 task-1] KqGyiTsuTleidFUreKYIXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.481 [XNIO-1 task-1] KqGyiTsuTleidFUreKYIXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.482 [XNIO-1 task-1] KqGyiTsuTleidFUreKYIXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.483 [XNIO-1 task-1] KqGyiTsuTleidFUreKYIXg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.489 [XNIO-1 task-1] b9qeKsVjRqCy1PjRFynvrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.489 [XNIO-1 task-1] b9qeKsVjRqCy1PjRFynvrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.489 [XNIO-1 task-1] b9qeKsVjRqCy1PjRFynvrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.489 [XNIO-1 task-1] b9qeKsVjRqCy1PjRFynvrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.490 [XNIO-1 task-1] b9qeKsVjRqCy1PjRFynvrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.495 [XNIO-1 task-1] r57iTIgCQmCJobeiCwi3-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.495 [XNIO-1 task-1] r57iTIgCQmCJobeiCwi3-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.495 [XNIO-1 task-1] r57iTIgCQmCJobeiCwi3-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.495 [XNIO-1 task-1] r57iTIgCQmCJobeiCwi3-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.495 [XNIO-1 task-1] r57iTIgCQmCJobeiCwi3-g DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:47.496 [XNIO-1 task-1] r57iTIgCQmCJobeiCwi3-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:47.505 [XNIO-1 task-1] YMldEqByTGW6oZbzphWDyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.506 [XNIO-1 task-1] YMldEqByTGW6oZbzphWDyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.506 [XNIO-1 task-1] YMldEqByTGW6oZbzphWDyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.506 [XNIO-1 task-1] YMldEqByTGW6oZbzphWDyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.506 [XNIO-1 task-1] YMldEqByTGW6oZbzphWDyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:47.510 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0bb5493b-6d9d-4ae8-9c0c-9b843d0f85be +17:00:47.511 [XNIO-1 task-1] qW74cCRTSF-FIS5NEp4qoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.511 [XNIO-1 task-1] qW74cCRTSF-FIS5NEp4qoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.512 [XNIO-1 task-1] qW74cCRTSF-FIS5NEp4qoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.512 [XNIO-1 task-1] qW74cCRTSF-FIS5NEp4qoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.522 [XNIO-1 task-1] dsgm2JdgQZOB0mSmms4k_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598, base path is set to: null +17:00:47.522 [XNIO-1 task-1] dsgm2JdgQZOB0mSmms4k_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.522 [XNIO-1 task-1] dsgm2JdgQZOB0mSmms4k_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.523 [XNIO-1 task-1] dsgm2JdgQZOB0mSmms4k_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598, base path is set to: null +17:00:47.523 [XNIO-1 task-1] dsgm2JdgQZOB0mSmms4k_w DEBUG com.networknt.schema.TypeValidator debug - validate( "fd825c37-57ff-4783-a2e2-3004b4106598", "fd825c37-57ff-4783-a2e2-3004b4106598", refreshToken) +17:00:47.523 [XNIO-1 task-1] dsgm2JdgQZOB0mSmms4k_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fd825c37-57ff-4783-a2e2-3004b4106598 is not found.","severity":"ERROR"} +17:00:47.526 [XNIO-1 task-1] elC2IQqCR_e_0Uc2hvmmmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.526 [XNIO-1 task-1] elC2IQqCR_e_0Uc2hvmmmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.526 [XNIO-1 task-1] elC2IQqCR_e_0Uc2hvmmmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.526 [XNIO-1 task-1] elC2IQqCR_e_0Uc2hvmmmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.527 [XNIO-1 task-1] elC2IQqCR_e_0Uc2hvmmmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:47.529 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a5e61bed-a1b5-41cf-a094-3e3206016a2c +17:00:47.530 [XNIO-1 task-1] w8MGczDxRoSYzoXPDpfp7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598, base path is set to: null +17:00:47.530 [XNIO-1 task-1] w8MGczDxRoSYzoXPDpfp7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.530 [XNIO-1 task-1] w8MGczDxRoSYzoXPDpfp7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.530 [XNIO-1 task-1] w8MGczDxRoSYzoXPDpfp7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598, base path is set to: null +17:00:47.531 [XNIO-1 task-1] w8MGczDxRoSYzoXPDpfp7A DEBUG com.networknt.schema.TypeValidator debug - validate( "fd825c37-57ff-4783-a2e2-3004b4106598", "fd825c37-57ff-4783-a2e2-3004b4106598", refreshToken) +17:00:47.531 [XNIO-1 task-1] w8MGczDxRoSYzoXPDpfp7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fd825c37-57ff-4783-a2e2-3004b4106598 is not found.","severity":"ERROR"} +17:00:47.535 [XNIO-1 task-1] U-CvtndmQ--mUBViusoTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.535 [XNIO-1 task-1] U-CvtndmQ--mUBViusoTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.536 [XNIO-1 task-1] U-CvtndmQ--mUBViusoTjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.536 [XNIO-1 task-1] U-CvtndmQ--mUBViusoTjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.574 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a5e61bed-a1b5-41cf-a094-3e3206016a2c +17:00:47.577 [XNIO-1 task-1] xC4IIWbYQgu87dnJ2vfKRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.577 [XNIO-1 task-1] xC4IIWbYQgu87dnJ2vfKRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.577 [XNIO-1 task-1] xC4IIWbYQgu87dnJ2vfKRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.578 [XNIO-1 task-1] xC4IIWbYQgu87dnJ2vfKRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.584 [XNIO-1 task-1] O0TrGcUrSPmg8WttQiDqFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.584 [XNIO-1 task-1] O0TrGcUrSPmg8WttQiDqFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.584 [XNIO-1 task-1] O0TrGcUrSPmg8WttQiDqFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.584 [XNIO-1 task-1] O0TrGcUrSPmg8WttQiDqFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.585 [XNIO-1 task-1] O0TrGcUrSPmg8WttQiDqFA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.601 [XNIO-1 task-1] JCVdtdXVS_qiNV0b98kNbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.601 [XNIO-1 task-1] JCVdtdXVS_qiNV0b98kNbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.601 [XNIO-1 task-1] JCVdtdXVS_qiNV0b98kNbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.601 [XNIO-1 task-1] JCVdtdXVS_qiNV0b98kNbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.601 [XNIO-1 task-1] JCVdtdXVS_qiNV0b98kNbg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:47.605 [XNIO-1 task-1] QXNmGH5pTwG7vdwUldjbLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.605 [XNIO-1 task-1] QXNmGH5pTwG7vdwUldjbLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.606 [XNIO-1 task-1] QXNmGH5pTwG7vdwUldjbLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.606 [XNIO-1 task-1] QXNmGH5pTwG7vdwUldjbLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.607 [XNIO-1 task-1] QXNmGH5pTwG7vdwUldjbLA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.614 [XNIO-1 task-1] UVAtq6WSSYiY_1CUshcehg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.614 [XNIO-1 task-1] UVAtq6WSSYiY_1CUshcehg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.614 [XNIO-1 task-1] UVAtq6WSSYiY_1CUshcehg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.614 [XNIO-1 task-1] UVAtq6WSSYiY_1CUshcehg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.615 [XNIO-1 task-1] UVAtq6WSSYiY_1CUshcehg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:47.617 [XNIO-1 task-1] FAZ0PcB_RCap_5X2RoIcRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.617 [XNIO-1 task-1] FAZ0PcB_RCap_5X2RoIcRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.617 [XNIO-1 task-1] FAZ0PcB_RCap_5X2RoIcRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.618 [XNIO-1 task-1] FAZ0PcB_RCap_5X2RoIcRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.618 [XNIO-1 task-1] FAZ0PcB_RCap_5X2RoIcRg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.627 [XNIO-1 task-1] epRZxAR6QTKob7shIiCwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.627 [XNIO-1 task-1] epRZxAR6QTKob7shIiCwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.627 [XNIO-1 task-1] epRZxAR6QTKob7shIiCwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.627 [XNIO-1 task-1] epRZxAR6QTKob7shIiCwYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:47.627 [XNIO-1 task-1] epRZxAR6QTKob7shIiCwYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:47.631 [XNIO-1 task-1] HdeNmYlQQLiZwVKPS7jy6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.631 [XNIO-1 task-1] HdeNmYlQQLiZwVKPS7jy6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.632 [XNIO-1 task-1] HdeNmYlQQLiZwVKPS7jy6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.632 [XNIO-1 task-1] HdeNmYlQQLiZwVKPS7jy6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.632 [XNIO-1 task-1] HdeNmYlQQLiZwVKPS7jy6w DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:47.632 [XNIO-1 task-1] HdeNmYlQQLiZwVKPS7jy6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:47.635 [XNIO-1 task-1] fw65h7jqSeGeyasU_vh9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.635 [XNIO-1 task-1] fw65h7jqSeGeyasU_vh9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.635 [XNIO-1 task-1] fw65h7jqSeGeyasU_vh9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.637 [XNIO-1 task-1] fw65h7jqSeGeyasU_vh9tw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.645 [XNIO-1 task-1] LEsp2EOGTX2Cyjq0eiuGBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.645 [XNIO-1 task-1] LEsp2EOGTX2Cyjq0eiuGBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.645 [XNIO-1 task-1] LEsp2EOGTX2Cyjq0eiuGBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.645 [XNIO-1 task-1] LEsp2EOGTX2Cyjq0eiuGBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.645 [XNIO-1 task-1] LEsp2EOGTX2Cyjq0eiuGBg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:47.647 [XNIO-1 task-1] LEsp2EOGTX2Cyjq0eiuGBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:47.657 [XNIO-1 task-1] 4CAh2YkATX-pe6ooi5l88A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.657 [XNIO-1 task-1] 4CAh2YkATX-pe6ooi5l88A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.657 [XNIO-1 task-1] 4CAh2YkATX-pe6ooi5l88A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.658 [XNIO-1 task-1] 4CAh2YkATX-pe6ooi5l88A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.665 [XNIO-1 task-1] QKNHgaguSQyPTZoY3sZP4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.666 [XNIO-1 task-1] QKNHgaguSQyPTZoY3sZP4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.666 [XNIO-1 task-1] QKNHgaguSQyPTZoY3sZP4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.667 [XNIO-1 task-1] QKNHgaguSQyPTZoY3sZP4g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.668 [XNIO-1 task-1] QKNHgaguSQyPTZoY3sZP4g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.680 [XNIO-1 task-1] kwsC1WMjQCKwThxA87vYcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.680 [XNIO-1 task-1] kwsC1WMjQCKwThxA87vYcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.680 [XNIO-1 task-1] kwsC1WMjQCKwThxA87vYcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.681 [XNIO-1 task-1] kwsC1WMjQCKwThxA87vYcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.692 [XNIO-1 task-1] P4Ymfd-7QUubQrxV2WXmeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.693 [XNIO-1 task-1] P4Ymfd-7QUubQrxV2WXmeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.693 [XNIO-1 task-1] P4Ymfd-7QUubQrxV2WXmeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.693 [XNIO-1 task-1] P4Ymfd-7QUubQrxV2WXmeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.693 [XNIO-1 task-1] P4Ymfd-7QUubQrxV2WXmeA DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:47.693 [XNIO-1 task-1] P4Ymfd-7QUubQrxV2WXmeA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:47.698 [XNIO-1 task-1] wahZp3rDQvWJusaPifR5hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.698 [XNIO-1 task-1] wahZp3rDQvWJusaPifR5hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.698 [XNIO-1 task-1] wahZp3rDQvWJusaPifR5hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.698 [XNIO-1 task-1] wahZp3rDQvWJusaPifR5hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.699 [XNIO-1 task-1] wahZp3rDQvWJusaPifR5hw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.702 [XNIO-1 task-1] ZUAldmTYSnOMi_Sq-Lg3tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.702 [XNIO-1 task-1] ZUAldmTYSnOMi_Sq-Lg3tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.702 [XNIO-1 task-1] ZUAldmTYSnOMi_Sq-Lg3tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.702 [XNIO-1 task-1] ZUAldmTYSnOMi_Sq-Lg3tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.703 [XNIO-1 task-1] ZUAldmTYSnOMi_Sq-Lg3tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:47.703 [XNIO-1 task-1] ZUAldmTYSnOMi_Sq-Lg3tQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:47.706 [XNIO-1 task-1] I9HVcdxVTYe5BUzzawGmDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.706 [XNIO-1 task-1] I9HVcdxVTYe5BUzzawGmDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.706 [XNIO-1 task-1] I9HVcdxVTYe5BUzzawGmDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.707 [XNIO-1 task-1] I9HVcdxVTYe5BUzzawGmDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.719 [XNIO-1 task-1] IZxKE6OrRjOehaYeOhETOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.719 [XNIO-1 task-1] IZxKE6OrRjOehaYeOhETOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.719 [XNIO-1 task-1] IZxKE6OrRjOehaYeOhETOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.720 [XNIO-1 task-1] IZxKE6OrRjOehaYeOhETOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.720 [XNIO-1 task-1] IZxKE6OrRjOehaYeOhETOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:47.720 [XNIO-1 task-1] IZxKE6OrRjOehaYeOhETOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:47.726 [XNIO-1 task-1] VGS0juZdTwqvuH1A1cLPtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.726 [XNIO-1 task-1] VGS0juZdTwqvuH1A1cLPtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.726 [XNIO-1 task-1] VGS0juZdTwqvuH1A1cLPtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.726 [XNIO-1 task-1] VGS0juZdTwqvuH1A1cLPtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.737 [XNIO-1 task-1] tVQG1D32RGOhsscbvfQgNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.738 [XNIO-1 task-1] tVQG1D32RGOhsscbvfQgNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.738 [XNIO-1 task-1] tVQG1D32RGOhsscbvfQgNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.738 [XNIO-1 task-1] tVQG1D32RGOhsscbvfQgNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:47.738 [XNIO-1 task-1] tVQG1D32RGOhsscbvfQgNw DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:47.739 [XNIO-1 task-1] tVQG1D32RGOhsscbvfQgNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:47.741 [XNIO-1 task-1] 3Hj1YT0TSZO3DMkHewqu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.741 [XNIO-1 task-1] 3Hj1YT0TSZO3DMkHewqu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.742 [XNIO-1 task-1] 3Hj1YT0TSZO3DMkHewqu8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.742 [XNIO-1 task-1] 3Hj1YT0TSZO3DMkHewqu8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.755 [XNIO-1 task-1] rujJyYcSQD-RmRcrJZvGxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.756 [XNIO-1 task-1] rujJyYcSQD-RmRcrJZvGxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.756 [XNIO-1 task-1] rujJyYcSQD-RmRcrJZvGxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.756 [XNIO-1 task-1] rujJyYcSQD-RmRcrJZvGxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:47.756 [XNIO-1 task-1] rujJyYcSQD-RmRcrJZvGxA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:47.758 [XNIO-1 task-1] rujJyYcSQD-RmRcrJZvGxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:47.767 [XNIO-1 task-1] Ni2htyKWTuGe5JFiOYwkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.767 [XNIO-1 task-1] Ni2htyKWTuGe5JFiOYwkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.767 [XNIO-1 task-1] Ni2htyKWTuGe5JFiOYwkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.767 [XNIO-1 task-1] Ni2htyKWTuGe5JFiOYwkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.767 [XNIO-1 task-1] Ni2htyKWTuGe5JFiOYwkrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.773 [XNIO-1 task-1] B3Sfms_LS6W-BTTcRdVcAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.773 [XNIO-1 task-1] B3Sfms_LS6W-BTTcRdVcAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.773 [XNIO-1 task-1] B3Sfms_LS6W-BTTcRdVcAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.774 [XNIO-1 task-1] B3Sfms_LS6W-BTTcRdVcAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.775 [XNIO-1 task-1] B3Sfms_LS6W-BTTcRdVcAg DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.781 [XNIO-1 task-1] cs9UTJCgQgyaBR_QpuLv9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.781 [XNIO-1 task-1] cs9UTJCgQgyaBR_QpuLv9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.781 [XNIO-1 task-1] cs9UTJCgQgyaBR_QpuLv9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.781 [XNIO-1 task-1] cs9UTJCgQgyaBR_QpuLv9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.781 [XNIO-1 task-1] cs9UTJCgQgyaBR_QpuLv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.787 [XNIO-1 task-1] _364JVPBSDSaw9zEE8__Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.790 [XNIO-1 task-1] _364JVPBSDSaw9zEE8__Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.790 [XNIO-1 task-1] _364JVPBSDSaw9zEE8__Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.790 [XNIO-1 task-1] _364JVPBSDSaw9zEE8__Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.790 [XNIO-1 task-1] _364JVPBSDSaw9zEE8__Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.795 [XNIO-1 task-1] rBJxhsb3RUCtVnJA3A1OXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.796 [XNIO-1 task-1] rBJxhsb3RUCtVnJA3A1OXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.796 [XNIO-1 task-1] rBJxhsb3RUCtVnJA3A1OXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.796 [XNIO-1 task-1] rBJxhsb3RUCtVnJA3A1OXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.796 [XNIO-1 task-1] rBJxhsb3RUCtVnJA3A1OXA DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.817 [XNIO-1 task-1] vMfB5tYPTFGlm7CYsTgDzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.818 [XNIO-1 task-1] vMfB5tYPTFGlm7CYsTgDzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.818 [XNIO-1 task-1] vMfB5tYPTFGlm7CYsTgDzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.818 [XNIO-1 task-1] vMfB5tYPTFGlm7CYsTgDzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.818 [XNIO-1 task-1] vMfB5tYPTFGlm7CYsTgDzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.825 [XNIO-1 task-1] vMfB5tYPTFGlm7CYsTgDzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d is not found.","severity":"ERROR"} +17:00:47.832 [XNIO-1 task-1] b9yHkGxIQluJIyConRs4wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.832 [XNIO-1 task-1] b9yHkGxIQluJIyConRs4wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.832 [XNIO-1 task-1] b9yHkGxIQluJIyConRs4wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.832 [XNIO-1 task-1] b9yHkGxIQluJIyConRs4wA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.855 [XNIO-1 task-1] qLCU3xsUTvGn9ALDQc2WuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.856 [XNIO-1 task-1] qLCU3xsUTvGn9ALDQc2WuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.856 [XNIO-1 task-1] qLCU3xsUTvGn9ALDQc2WuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.856 [XNIO-1 task-1] qLCU3xsUTvGn9ALDQc2WuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.856 [XNIO-1 task-1] qLCU3xsUTvGn9ALDQc2WuA DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.856 [XNIO-1 task-1] qLCU3xsUTvGn9ALDQc2WuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d is not found.","severity":"ERROR"} +17:00:47.864 [XNIO-1 task-1] hSX1g6QmSTKn2BRut9PFsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.864 [XNIO-1 task-1] hSX1g6QmSTKn2BRut9PFsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.864 [XNIO-1 task-1] hSX1g6QmSTKn2BRut9PFsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.865 [XNIO-1 task-1] hSX1g6QmSTKn2BRut9PFsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.883 [XNIO-1 task-1] 3i3BsV_eRrCjiQC4FifC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.884 [XNIO-1 task-1] 3i3BsV_eRrCjiQC4FifC4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.884 [XNIO-1 task-1] 3i3BsV_eRrCjiQC4FifC4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.884 [XNIO-1 task-1] 3i3BsV_eRrCjiQC4FifC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.884 [XNIO-1 task-1] 3i3BsV_eRrCjiQC4FifC4w DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.884 [XNIO-1 task-1] 3i3BsV_eRrCjiQC4FifC4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d is not found.","severity":"ERROR"} +17:00:47.888 [XNIO-1 task-1] OQ5gPFw7RUGwqmMNmBJ28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.888 [XNIO-1 task-1] OQ5gPFw7RUGwqmMNmBJ28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.889 [XNIO-1 task-1] OQ5gPFw7RUGwqmMNmBJ28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.889 [XNIO-1 task-1] OQ5gPFw7RUGwqmMNmBJ28w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.895 [XNIO-1 task-1] POdKR9jHQjSxgNZCqnbbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.897 [XNIO-1 task-1] POdKR9jHQjSxgNZCqnbbMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.897 [XNIO-1 task-1] POdKR9jHQjSxgNZCqnbbMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.897 [XNIO-1 task-1] POdKR9jHQjSxgNZCqnbbMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.897 [XNIO-1 task-1] POdKR9jHQjSxgNZCqnbbMg DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.897 [XNIO-1 task-1] POdKR9jHQjSxgNZCqnbbMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d is not found.","severity":"ERROR"} +17:00:47.900 [XNIO-1 task-1] vp5FezMER3W6YpqXH4kBlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.901 [XNIO-1 task-1] vp5FezMER3W6YpqXH4kBlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.901 [XNIO-1 task-1] vp5FezMER3W6YpqXH4kBlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.901 [XNIO-1 task-1] vp5FezMER3W6YpqXH4kBlQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.912 [XNIO-1 task-1] BR3G2YvJS_qoC6bwTyauMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.912 [XNIO-1 task-1] BR3G2YvJS_qoC6bwTyauMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.912 [XNIO-1 task-1] BR3G2YvJS_qoC6bwTyauMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.912 [XNIO-1 task-1] BR3G2YvJS_qoC6bwTyauMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d, base path is set to: null +17:00:47.913 [XNIO-1 task-1] BR3G2YvJS_qoC6bwTyauMg DEBUG com.networknt.schema.TypeValidator debug - validate( "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", "7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d", refreshToken) +17:00:47.913 [XNIO-1 task-1] BR3G2YvJS_qoC6bwTyauMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d is not found.","severity":"ERROR"} +17:00:47.919 [XNIO-1 task-1] TfA4KBYGSMizQGSYol3prQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d +17:00:47.919 [XNIO-1 task-1] TfA4KBYGSMizQGSYol3prQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.919 [XNIO-1 task-1] TfA4KBYGSMizQGSYol3prQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.919 [XNIO-1 task-1] TfA4KBYGSMizQGSYol3prQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d +17:00:47.920 [XNIO-1 task-1] TfA4KBYGSMizQGSYol3prQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7eb9aacb-d9b1-4ee1-b005-e5dc4faaf55d +17:00:47.923 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71458f37 +17:00:47.923 [XNIO-1 task-1] MFwV7_V6RBy4GhyW_7rK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.923 [XNIO-1 task-1] MFwV7_V6RBy4GhyW_7rK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.923 [XNIO-1 task-1] MFwV7_V6RBy4GhyW_7rK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.926 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:71458f37 +17:00:47.928 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:71458f37 +17:00:47.939 [XNIO-1 task-1] Cpg85JhfQzqQggCcgx3jTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.939 [XNIO-1 task-1] Cpg85JhfQzqQggCcgx3jTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.939 [XNIO-1 task-1] Cpg85JhfQzqQggCcgx3jTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:47.939 [XNIO-1 task-1] Cpg85JhfQzqQggCcgx3jTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:47.939 [XNIO-1 task-1] Cpg85JhfQzqQggCcgx3jTw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:47.947 [XNIO-1 task-1] FUJIaLCKSBmOuGs7duj1XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.947 [XNIO-1 task-1] FUJIaLCKSBmOuGs7duj1XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.948 [XNIO-1 task-1] FUJIaLCKSBmOuGs7duj1XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.948 [XNIO-1 task-1] FUJIaLCKSBmOuGs7duj1XA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:47.965 [XNIO-1 task-1] s4C6-q9MThGbM4cwy0dGbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:47.965 [XNIO-1 task-1] s4C6-q9MThGbM4cwy0dGbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.966 [XNIO-1 task-1] s4C6-q9MThGbM4cwy0dGbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.966 [XNIO-1 task-1] s4C6-q9MThGbM4cwy0dGbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:47.966 [XNIO-1 task-1] s4C6-q9MThGbM4cwy0dGbA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:47.966 [XNIO-1 task-1] s4C6-q9MThGbM4cwy0dGbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:47.970 [XNIO-1 task-1] 2nsa99zwSdGaUHlXoDR47Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:47.971 [XNIO-1 task-1] 2nsa99zwSdGaUHlXoDR47Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.971 [XNIO-1 task-1] 2nsa99zwSdGaUHlXoDR47Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.971 [XNIO-1 task-1] 2nsa99zwSdGaUHlXoDR47Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:47.971 [XNIO-1 task-1] 2nsa99zwSdGaUHlXoDR47Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:47.973 [XNIO-1 task-1] 2nsa99zwSdGaUHlXoDR47Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:47.980 [XNIO-1 task-1] EAosahUKTIapERRrRIe4lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.980 [XNIO-1 task-1] EAosahUKTIapERRrRIe4lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.980 [XNIO-1 task-1] EAosahUKTIapERRrRIe4lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:47.980 [XNIO-1 task-1] EAosahUKTIapERRrRIe4lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.981 [XNIO-1 task-1] EAosahUKTIapERRrRIe4lQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:47.985 [XNIO-1 task-1] kpKzSB35SeWES0YgjUVMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:47.985 [XNIO-1 task-1] kpKzSB35SeWES0YgjUVMAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:47.985 [XNIO-1 task-1] kpKzSB35SeWES0YgjUVMAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:47.985 [XNIO-1 task-1] kpKzSB35SeWES0YgjUVMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:47.986 [XNIO-1 task-1] kpKzSB35SeWES0YgjUVMAw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:47.986 [XNIO-1 task-1] kpKzSB35SeWES0YgjUVMAw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:47.990 [XNIO-1 task-1] 89QjNr9qQZKY-UmXcF6QEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.990 [XNIO-1 task-1] 89QjNr9qQZKY-UmXcF6QEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.991 [XNIO-1 task-1] 89QjNr9qQZKY-UmXcF6QEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:47.991 [XNIO-1 task-1] 89QjNr9qQZKY-UmXcF6QEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.000 [XNIO-1 task-1] HMDGo5oOTsuwsSJxXsfcDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.000 [XNIO-1 task-1] HMDGo5oOTsuwsSJxXsfcDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.000 [XNIO-1 task-1] HMDGo5oOTsuwsSJxXsfcDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.000 [XNIO-1 task-1] HMDGo5oOTsuwsSJxXsfcDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.001 [XNIO-1 task-1] HMDGo5oOTsuwsSJxXsfcDA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:48.002 [XNIO-1 task-1] HMDGo5oOTsuwsSJxXsfcDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:48.006 [XNIO-1 task-1] roEj9e12TUSWrBlpsqp5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.006 [XNIO-1 task-1] roEj9e12TUSWrBlpsqp5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.006 [XNIO-1 task-1] roEj9e12TUSWrBlpsqp5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.007 [XNIO-1 task-1] roEj9e12TUSWrBlpsqp5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.007 [XNIO-1 task-1] roEj9e12TUSWrBlpsqp5JA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.010 [XNIO-1 task-1] Jr3kvvXNQ3GwRqQnKcSH6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.010 [XNIO-1 task-1] Jr3kvvXNQ3GwRqQnKcSH6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.010 [XNIO-1 task-1] Jr3kvvXNQ3GwRqQnKcSH6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.011 [XNIO-1 task-1] Jr3kvvXNQ3GwRqQnKcSH6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.011 [XNIO-1 task-1] Jr3kvvXNQ3GwRqQnKcSH6A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.022 [XNIO-1 task-1] efVYpp8xShO0sYIzCi_K1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.022 [XNIO-1 task-1] efVYpp8xShO0sYIzCi_K1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.022 [XNIO-1 task-1] efVYpp8xShO0sYIzCi_K1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.023 [XNIO-1 task-1] efVYpp8xShO0sYIzCi_K1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.034 [XNIO-1 task-1] tKsKH3xsSfezw1egpcmGrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.034 [XNIO-1 task-1] tKsKH3xsSfezw1egpcmGrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.034 [XNIO-1 task-1] tKsKH3xsSfezw1egpcmGrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.035 [XNIO-1 task-1] tKsKH3xsSfezw1egpcmGrw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.035 [XNIO-1 task-1] tKsKH3xsSfezw1egpcmGrw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.042 [XNIO-1 task-1] -GQK5Z6fRV2VmPopav42bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.043 [XNIO-1 task-1] -GQK5Z6fRV2VmPopav42bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.043 [XNIO-1 task-1] -GQK5Z6fRV2VmPopav42bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.043 [XNIO-1 task-1] -GQK5Z6fRV2VmPopav42bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.043 [XNIO-1 task-1] -GQK5Z6fRV2VmPopav42bg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.050 [XNIO-1 task-1] FuP_q1QSRBuFJfkBRodjkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.050 [XNIO-1 task-1] FuP_q1QSRBuFJfkBRodjkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.051 [XNIO-1 task-1] FuP_q1QSRBuFJfkBRodjkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.051 [XNIO-1 task-1] FuP_q1QSRBuFJfkBRodjkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.051 [XNIO-1 task-1] FuP_q1QSRBuFJfkBRodjkw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:48.051 [XNIO-1 task-1] FuP_q1QSRBuFJfkBRodjkw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:48.061 [XNIO-1 task-1] uoaFjcOuQgaKMMj77CGjIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.061 [XNIO-1 task-1] uoaFjcOuQgaKMMj77CGjIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.061 [XNIO-1 task-1] uoaFjcOuQgaKMMj77CGjIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.062 [XNIO-1 task-1] uoaFjcOuQgaKMMj77CGjIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.070 [XNIO-1 task-1] Fp_3PtjpQKm_803DLG9TfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.070 [XNIO-1 task-1] Fp_3PtjpQKm_803DLG9TfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.070 [XNIO-1 task-1] Fp_3PtjpQKm_803DLG9TfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.070 [XNIO-1 task-1] Fp_3PtjpQKm_803DLG9TfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.070 [XNIO-1 task-1] Fp_3PtjpQKm_803DLG9TfA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:48.070 [XNIO-1 task-1] Fp_3PtjpQKm_803DLG9TfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:48.076 [XNIO-1 task-1] wkd7QfYSRDiBuc05qTiAGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/50d07851-d9a9-4648-94be-b570d4fe34b5 +17:00:48.076 [XNIO-1 task-1] wkd7QfYSRDiBuc05qTiAGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.076 [XNIO-1 task-1] wkd7QfYSRDiBuc05qTiAGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.076 [XNIO-1 task-1] wkd7QfYSRDiBuc05qTiAGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/50d07851-d9a9-4648-94be-b570d4fe34b5 +17:00:48.076 [XNIO-1 task-1] wkd7QfYSRDiBuc05qTiAGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 50d07851-d9a9-4648-94be-b570d4fe34b5 +17:00:48.083 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c95b2fdf-7b44-44a5-b47f-b54bb9d7b09c +17:00:48.091 [XNIO-1 task-1] qH7LVH6IS5CJe0cLmhI1og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/50d07851-d9a9-4648-94be-b570d4fe34b5, base path is set to: null +17:00:48.094 [XNIO-1 task-1] qH7LVH6IS5CJe0cLmhI1og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.094 [XNIO-1 task-1] qH7LVH6IS5CJe0cLmhI1og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.094 [XNIO-1 task-1] qH7LVH6IS5CJe0cLmhI1og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/50d07851-d9a9-4648-94be-b570d4fe34b5, base path is set to: null +17:00:48.098 [XNIO-1 task-1] qH7LVH6IS5CJe0cLmhI1og DEBUG com.networknt.schema.TypeValidator debug - validate( "50d07851-d9a9-4648-94be-b570d4fe34b5", "50d07851-d9a9-4648-94be-b570d4fe34b5", refreshToken) +17:00:48.105 [XNIO-1 task-1] qH7LVH6IS5CJe0cLmhI1og ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 50d07851-d9a9-4648-94be-b570d4fe34b5 is not found.","severity":"ERROR"} +17:00:48.108 [XNIO-1 task-1] ex8Q64CcQHS6Rsozg2AfPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.110 [XNIO-1 task-1] ex8Q64CcQHS6Rsozg2AfPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.110 [XNIO-1 task-1] ex8Q64CcQHS6Rsozg2AfPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.111 [XNIO-1 task-1] ex8Q64CcQHS6Rsozg2AfPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.119 [XNIO-1 task-1] 8ICcXpxASaqam8DkCHUyjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.120 [XNIO-1 task-1] 8ICcXpxASaqam8DkCHUyjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.120 [XNIO-1 task-1] 8ICcXpxASaqam8DkCHUyjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.120 [XNIO-1 task-1] 8ICcXpxASaqam8DkCHUyjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.121 [XNIO-1 task-1] 8ICcXpxASaqam8DkCHUyjQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.137 [XNIO-1 task-1] cv4HdKxCR7mnTnoa5um8-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.137 [XNIO-1 task-1] cv4HdKxCR7mnTnoa5um8-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.137 [XNIO-1 task-1] cv4HdKxCR7mnTnoa5um8-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.138 [XNIO-1 task-1] cv4HdKxCR7mnTnoa5um8-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.152 [XNIO-1 task-1] FshyJxqFSReZ1h3Vt977sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.153 [XNIO-1 task-1] FshyJxqFSReZ1h3Vt977sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.153 [XNIO-1 task-1] FshyJxqFSReZ1h3Vt977sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.153 [XNIO-1 task-1] FshyJxqFSReZ1h3Vt977sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.157 [XNIO-1 task-1] FshyJxqFSReZ1h3Vt977sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "987c63d3-41b5-45b8-900a-a7c775b67a21", "987c63d3-41b5-45b8-900a-a7c775b67a21", refreshToken) +17:00:48.175 [XNIO-1 task-1] yAA7780dQ62K3tqqqmKPJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.175 [XNIO-1 task-1] yAA7780dQ62K3tqqqmKPJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.176 [XNIO-1 task-1] yAA7780dQ62K3tqqqmKPJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.176 [XNIO-1 task-1] yAA7780dQ62K3tqqqmKPJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.176 [XNIO-1 task-1] yAA7780dQ62K3tqqqmKPJw DEBUG com.networknt.schema.TypeValidator debug - validate( "987c63d3-41b5-45b8-900a-a7c775b67a21", "987c63d3-41b5-45b8-900a-a7c775b67a21", refreshToken) +17:00:48.178 [XNIO-1 task-1] yAA7780dQ62K3tqqqmKPJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 987c63d3-41b5-45b8-900a-a7c775b67a21 is not found.","severity":"ERROR"} +17:00:48.184 [XNIO-1 task-1] o5RfYyypR66gToCjQsbTcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.184 [XNIO-1 task-1] o5RfYyypR66gToCjQsbTcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.184 [XNIO-1 task-1] o5RfYyypR66gToCjQsbTcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.185 [XNIO-1 task-1] o5RfYyypR66gToCjQsbTcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.200 [XNIO-1 task-1] f3tQ9qOaQg-A0ElLrcBpfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.201 [XNIO-1 task-1] f3tQ9qOaQg-A0ElLrcBpfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.201 [XNIO-1 task-1] f3tQ9qOaQg-A0ElLrcBpfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.201 [XNIO-1 task-1] f3tQ9qOaQg-A0ElLrcBpfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.201 [XNIO-1 task-1] f3tQ9qOaQg-A0ElLrcBpfA DEBUG com.networknt.schema.TypeValidator debug - validate( "987c63d3-41b5-45b8-900a-a7c775b67a21", "987c63d3-41b5-45b8-900a-a7c775b67a21", refreshToken) +17:00:48.201 [XNIO-1 task-1] f3tQ9qOaQg-A0ElLrcBpfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 987c63d3-41b5-45b8-900a-a7c775b67a21 is not found.","severity":"ERROR"} +17:00:48.205 [XNIO-1 task-1] YKcvCN0hTqu-QLWGPQQ04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.205 [XNIO-1 task-1] YKcvCN0hTqu-QLWGPQQ04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.205 [XNIO-1 task-1] YKcvCN0hTqu-QLWGPQQ04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.205 [XNIO-1 task-1] YKcvCN0hTqu-QLWGPQQ04g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.212 [XNIO-1 task-1] z8beOeY6Sc6_hicg8Bd18w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:48.213 [XNIO-1 task-1] z8beOeY6Sc6_hicg8Bd18w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.213 [XNIO-1 task-1] z8beOeY6Sc6_hicg8Bd18w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.214 [XNIO-1 task-1] z8beOeY6Sc6_hicg8Bd18w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:48.214 [XNIO-1 task-1] z8beOeY6Sc6_hicg8Bd18w DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:48.214 [XNIO-1 task-1] z8beOeY6Sc6_hicg8Bd18w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:48.221 [XNIO-1 task-1] DR5SIo86Qe2gsLWViygwdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.221 [XNIO-1 task-1] DR5SIo86Qe2gsLWViygwdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.221 [XNIO-1 task-1] DR5SIo86Qe2gsLWViygwdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.222 [XNIO-1 task-1] DR5SIo86Qe2gsLWViygwdA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.226 [XNIO-1 task-1] THu-HewLRjyTkp0b16BAKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.227 [XNIO-1 task-1] THu-HewLRjyTkp0b16BAKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.227 [XNIO-1 task-1] THu-HewLRjyTkp0b16BAKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.227 [XNIO-1 task-1] THu-HewLRjyTkp0b16BAKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.227 [XNIO-1 task-1] THu-HewLRjyTkp0b16BAKg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.237 [XNIO-1 task-1] qaoJzW6ETfi8PhqDbnjyNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.238 [XNIO-1 task-1] qaoJzW6ETfi8PhqDbnjyNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.238 [XNIO-1 task-1] qaoJzW6ETfi8PhqDbnjyNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.239 [XNIO-1 task-1] qaoJzW6ETfi8PhqDbnjyNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.253 [XNIO-1 task-1] K67jqXLwSiSrGI6LQG5Ong DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.253 [XNIO-1 task-1] K67jqXLwSiSrGI6LQG5Ong DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.253 [XNIO-1 task-1] K67jqXLwSiSrGI6LQG5Ong DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.253 [XNIO-1 task-1] K67jqXLwSiSrGI6LQG5Ong DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21, base path is set to: null +17:00:48.254 [XNIO-1 task-1] K67jqXLwSiSrGI6LQG5Ong DEBUG com.networknt.schema.TypeValidator debug - validate( "987c63d3-41b5-45b8-900a-a7c775b67a21", "987c63d3-41b5-45b8-900a-a7c775b67a21", refreshToken) +17:00:48.254 [XNIO-1 task-1] K67jqXLwSiSrGI6LQG5Ong ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 987c63d3-41b5-45b8-900a-a7c775b67a21 is not found.","severity":"ERROR"} +17:00:48.258 [XNIO-1 task-1] brlLJBhvTv2QPFEokio8lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:48.259 [XNIO-1 task-1] brlLJBhvTv2QPFEokio8lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.259 [XNIO-1 task-1] brlLJBhvTv2QPFEokio8lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.259 [XNIO-1 task-1] brlLJBhvTv2QPFEokio8lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:48.259 [XNIO-1 task-1] brlLJBhvTv2QPFEokio8lA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:48.267 [XNIO-1 task-1] Mw22C2iRQayHkWbeS6WAnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.267 [XNIO-1 task-1] Mw22C2iRQayHkWbeS6WAnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.267 [XNIO-1 task-1] Mw22C2iRQayHkWbeS6WAnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.267 [XNIO-1 task-1] Mw22C2iRQayHkWbeS6WAnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.268 [XNIO-1 task-1] Mw22C2iRQayHkWbeS6WAnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.277 [XNIO-1 task-1] Uwm09Ff2TMuDdepHny6e2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.277 [XNIO-1 task-1] Uwm09Ff2TMuDdepHny6e2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.277 [XNIO-1 task-1] Uwm09Ff2TMuDdepHny6e2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.278 [XNIO-1 task-1] Uwm09Ff2TMuDdepHny6e2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.283 [XNIO-1 task-1] Uhb2Uuv-SmSP5teXghJOrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:48.284 [XNIO-1 task-1] Uhb2Uuv-SmSP5teXghJOrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.284 [XNIO-1 task-1] Uhb2Uuv-SmSP5teXghJOrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.284 [XNIO-1 task-1] Uhb2Uuv-SmSP5teXghJOrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:48.284 [XNIO-1 task-1] Uhb2Uuv-SmSP5teXghJOrg DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:48.284 [XNIO-1 task-1] Uhb2Uuv-SmSP5teXghJOrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:48.290 [XNIO-1 task-1] c7BcrrI2SWq2M6vjPaVapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:48.290 [XNIO-1 task-1] c7BcrrI2SWq2M6vjPaVapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.290 [XNIO-1 task-1] c7BcrrI2SWq2M6vjPaVapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.291 [XNIO-1 task-1] c7BcrrI2SWq2M6vjPaVapg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:48.292 [XNIO-1 task-1] c7BcrrI2SWq2M6vjPaVapg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:48.292 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:13b11f9e-bd8b-4bfd-ac0a-98ac6ccf9c52 +17:00:48.297 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:13b11f9e-bd8b-4bfd-ac0a-98ac6ccf9c52 +17:00:48.298 [XNIO-1 task-1] r4dFBUqVQJe8woE2JMnyeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21 +17:00:48.298 [XNIO-1 task-1] r4dFBUqVQJe8woE2JMnyeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.298 [XNIO-1 task-1] r4dFBUqVQJe8woE2JMnyeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.299 [XNIO-1 task-1] r4dFBUqVQJe8woE2JMnyeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/987c63d3-41b5-45b8-900a-a7c775b67a21 +17:00:48.300 [XNIO-1 task-1] r4dFBUqVQJe8woE2JMnyeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 987c63d3-41b5-45b8-900a-a7c775b67a21 +17:00:48.306 [XNIO-1 task-1] GlevYzD5SeKddKGRrq0xBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.306 [XNIO-1 task-1] GlevYzD5SeKddKGRrq0xBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.306 [XNIO-1 task-1] GlevYzD5SeKddKGRrq0xBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.307 [XNIO-1 task-1] GlevYzD5SeKddKGRrq0xBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.307 [XNIO-1 task-1] GlevYzD5SeKddKGRrq0xBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.312 [XNIO-1 task-1] OCwVz6-wRJuPQ9bk872SFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:48.313 [XNIO-1 task-1] OCwVz6-wRJuPQ9bk872SFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.313 [XNIO-1 task-1] OCwVz6-wRJuPQ9bk872SFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.313 [XNIO-1 task-1] OCwVz6-wRJuPQ9bk872SFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:48.313 [XNIO-1 task-1] OCwVz6-wRJuPQ9bk872SFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:48.322 [XNIO-1 task-1] BDuQjUl0SDSVPUQexzXlyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.322 [XNIO-1 task-1] BDuQjUl0SDSVPUQexzXlyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.325 [XNIO-1 task-1] BDuQjUl0SDSVPUQexzXlyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.325 [XNIO-1 task-1] BDuQjUl0SDSVPUQexzXlyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.326 [XNIO-1 task-1] BDuQjUl0SDSVPUQexzXlyg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.332 [XNIO-1 task-1] J02Lt8y_TDy1bb3u1fj4XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.334 [XNIO-1 task-1] J02Lt8y_TDy1bb3u1fj4XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.334 [XNIO-1 task-1] J02Lt8y_TDy1bb3u1fj4XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.334 [XNIO-1 task-1] J02Lt8y_TDy1bb3u1fj4XQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.344 [XNIO-1 task-1] 1sbYa3TVTs2Ep_sRkOcFhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:48.345 [XNIO-1 task-1] 1sbYa3TVTs2Ep_sRkOcFhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.345 [XNIO-1 task-1] 1sbYa3TVTs2Ep_sRkOcFhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.345 [XNIO-1 task-1] 1sbYa3TVTs2Ep_sRkOcFhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4babf7cd-8623-4972-b251-ca1114ca2010, base path is set to: null +17:00:48.345 [XNIO-1 task-1] 1sbYa3TVTs2Ep_sRkOcFhg DEBUG com.networknt.schema.TypeValidator debug - validate( "4babf7cd-8623-4972-b251-ca1114ca2010", "4babf7cd-8623-4972-b251-ca1114ca2010", refreshToken) +17:00:48.345 [XNIO-1 task-1] 1sbYa3TVTs2Ep_sRkOcFhg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4babf7cd-8623-4972-b251-ca1114ca2010 is not found.","severity":"ERROR"} +17:00:48.350 [XNIO-1 task-1] zkVsGWRlTKOMDW-ftg25Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.350 [XNIO-1 task-1] zkVsGWRlTKOMDW-ftg25Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.350 [XNIO-1 task-1] zkVsGWRlTKOMDW-ftg25Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.351 [XNIO-1 task-1] zkVsGWRlTKOMDW-ftg25Gg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.359 [XNIO-1 task-1] FzH8Lcq0R5GoOUPGOEBh8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598, base path is set to: null +17:00:48.359 [XNIO-1 task-1] FzH8Lcq0R5GoOUPGOEBh8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.359 [XNIO-1 task-1] FzH8Lcq0R5GoOUPGOEBh8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.360 [XNIO-1 task-1] FzH8Lcq0R5GoOUPGOEBh8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598, base path is set to: null +17:00:48.360 [XNIO-1 task-1] FzH8Lcq0R5GoOUPGOEBh8w DEBUG com.networknt.schema.TypeValidator debug - validate( "fd825c37-57ff-4783-a2e2-3004b4106598", "fd825c37-57ff-4783-a2e2-3004b4106598", refreshToken) +17:00:48.360 [XNIO-1 task-1] FzH8Lcq0R5GoOUPGOEBh8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fd825c37-57ff-4783-a2e2-3004b4106598 is not found.","severity":"ERROR"} +17:00:48.363 [XNIO-1 task-1] RGVCLFAXRLClt8h5ojgTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:48.363 [XNIO-1 task-1] RGVCLFAXRLClt8h5ojgTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.363 [XNIO-1 task-1] RGVCLFAXRLClt8h5ojgTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.363 [XNIO-1 task-1] RGVCLFAXRLClt8h5ojgTgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:48.364 [XNIO-1 task-1] RGVCLFAXRLClt8h5ojgTgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:48.366 [XNIO-1 task-1] hihFA1BzSf6Azip72wDv3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/41de78cf-9be6-4ac4-92a8-d4e0e9a34d12, base path is set to: null +17:00:48.367 [XNIO-1 task-1] hihFA1BzSf6Azip72wDv3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.367 [XNIO-1 task-1] hihFA1BzSf6Azip72wDv3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.367 [XNIO-1 task-1] hihFA1BzSf6Azip72wDv3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/41de78cf-9be6-4ac4-92a8-d4e0e9a34d12, base path is set to: null +17:00:48.367 [XNIO-1 task-1] hihFA1BzSf6Azip72wDv3A DEBUG com.networknt.schema.TypeValidator debug - validate( "41de78cf-9be6-4ac4-92a8-d4e0e9a34d12", "41de78cf-9be6-4ac4-92a8-d4e0e9a34d12", refreshToken) +17:00:48.375 [XNIO-1 task-1] xIKv0HaQQsGncjg6eA7PSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:48.375 [XNIO-1 task-1] xIKv0HaQQsGncjg6eA7PSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.375 [XNIO-1 task-1] xIKv0HaQQsGncjg6eA7PSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.375 [XNIO-1 task-1] xIKv0HaQQsGncjg6eA7PSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:48.375 [XNIO-1 task-1] xIKv0HaQQsGncjg6eA7PSA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:48.376 [XNIO-1 task-1] xIKv0HaQQsGncjg6eA7PSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:48.379 [XNIO-1 task-1] pJ4zpKbKS7CNdHYGmmZFMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41de78cf-9be6-4ac4-92a8-d4e0e9a34d12 +17:00:48.379 [XNIO-1 task-1] pJ4zpKbKS7CNdHYGmmZFMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.379 [XNIO-1 task-1] pJ4zpKbKS7CNdHYGmmZFMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.380 [XNIO-1 task-1] pJ4zpKbKS7CNdHYGmmZFMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41de78cf-9be6-4ac4-92a8-d4e0e9a34d12 +17:00:48.380 [XNIO-1 task-1] pJ4zpKbKS7CNdHYGmmZFMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 41de78cf-9be6-4ac4-92a8-d4e0e9a34d12 +17:00:48.383 [XNIO-1 task-1] x5DkiwRxRi-x1x3fPB6mWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.383 [XNIO-1 task-1] x5DkiwRxRi-x1x3fPB6mWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.383 [XNIO-1 task-1] x5DkiwRxRi-x1x3fPB6mWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.383 [XNIO-1 task-1] x5DkiwRxRi-x1x3fPB6mWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.389 [XNIO-1 task-1] 0bhUP5W0Qn2Kq6HyqPGC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:48.389 [XNIO-1 task-1] 0bhUP5W0Qn2Kq6HyqPGC0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.389 [XNIO-1 task-1] 0bhUP5W0Qn2Kq6HyqPGC0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.390 [XNIO-1 task-1] 0bhUP5W0Qn2Kq6HyqPGC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:48.390 [XNIO-1 task-1] 0bhUP5W0Qn2Kq6HyqPGC0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:48.390 [XNIO-1 task-1] 0bhUP5W0Qn2Kq6HyqPGC0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:48.398 [XNIO-1 task-1] bOr_1a2nRNGQKUtzUaS4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41de78cf-9be6-4ac4-92a8-d4e0e9a34d12 +17:00:48.398 [XNIO-1 task-1] bOr_1a2nRNGQKUtzUaS4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.398 [XNIO-1 task-1] bOr_1a2nRNGQKUtzUaS4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.398 [XNIO-1 task-1] bOr_1a2nRNGQKUtzUaS4OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/41de78cf-9be6-4ac4-92a8-d4e0e9a34d12 +17:00:48.399 [XNIO-1 task-1] bOr_1a2nRNGQKUtzUaS4OQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 41de78cf-9be6-4ac4-92a8-d4e0e9a34d12 +17:00:48.416 [XNIO-1 task-1] Xrm7Hlv0TnaOGweKzai0iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.416 [XNIO-1 task-1] Xrm7Hlv0TnaOGweKzai0iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.416 [XNIO-1 task-1] Xrm7Hlv0TnaOGweKzai0iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.416 [XNIO-1 task-1] Xrm7Hlv0TnaOGweKzai0iA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.426 [XNIO-1 task-1] Cxf8coQyTRi8DVTb4lVgnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:48.426 [XNIO-1 task-1] Cxf8coQyTRi8DVTb4lVgnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.426 [XNIO-1 task-1] Cxf8coQyTRi8DVTb4lVgnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.426 [XNIO-1 task-1] Cxf8coQyTRi8DVTb4lVgnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:48.427 [XNIO-1 task-1] Cxf8coQyTRi8DVTb4lVgnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:48.442 [XNIO-1 task-1] CJKkcgI3ThG4P6zoUrmJ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.443 [XNIO-1 task-1] CJKkcgI3ThG4P6zoUrmJ4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.443 [XNIO-1 task-1] CJKkcgI3ThG4P6zoUrmJ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.443 [XNIO-1 task-1] CJKkcgI3ThG4P6zoUrmJ4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.443 [XNIO-1 task-1] CJKkcgI3ThG4P6zoUrmJ4w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.449 [XNIO-1 task-1] IBvSU0PLTuaYAWrCqwutxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.449 [XNIO-1 task-1] IBvSU0PLTuaYAWrCqwutxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.449 [XNIO-1 task-1] IBvSU0PLTuaYAWrCqwutxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.450 [XNIO-1 task-1] IBvSU0PLTuaYAWrCqwutxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.450 [XNIO-1 task-1] IBvSU0PLTuaYAWrCqwutxg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.462 [XNIO-1 task-1] -LYApmYaT-S4E97Ax47IiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.462 [XNIO-1 task-1] -LYApmYaT-S4E97Ax47IiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.462 [XNIO-1 task-1] -LYApmYaT-S4E97Ax47IiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.462 [XNIO-1 task-1] -LYApmYaT-S4E97Ax47IiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.463 [XNIO-1 task-1] -LYApmYaT-S4E97Ax47IiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.470 [XNIO-1 task-1] lPXkc4kxQRKGgEMQJJxoUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.470 [XNIO-1 task-1] lPXkc4kxQRKGgEMQJJxoUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.470 [XNIO-1 task-1] lPXkc4kxQRKGgEMQJJxoUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.470 [XNIO-1 task-1] lPXkc4kxQRKGgEMQJJxoUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.471 [XNIO-1 task-1] lPXkc4kxQRKGgEMQJJxoUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.471 [XNIO-1 task-1] lPXkc4kxQRKGgEMQJJxoUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.476 [XNIO-1 task-1] OS3EmHMoT9mDSmRkN3Bn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.476 [XNIO-1 task-1] OS3EmHMoT9mDSmRkN3Bn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.476 [XNIO-1 task-1] OS3EmHMoT9mDSmRkN3Bn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.476 [XNIO-1 task-1] OS3EmHMoT9mDSmRkN3Bn4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.476 [XNIO-1 task-1] OS3EmHMoT9mDSmRkN3Bn4w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.480 [XNIO-1 task-1] 5CtaJgmARciORX6t8mw3Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.480 [XNIO-1 task-1] 5CtaJgmARciORX6t8mw3Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.480 [XNIO-1 task-1] 5CtaJgmARciORX6t8mw3Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.481 [XNIO-1 task-1] 5CtaJgmARciORX6t8mw3Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.481 [XNIO-1 task-1] 5CtaJgmARciORX6t8mw3Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.481 [XNIO-1 task-1] 5CtaJgmARciORX6t8mw3Kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.488 [XNIO-1 task-1] O7vVrRaPT8-Wq9RtRlUWmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.488 [XNIO-1 task-1] O7vVrRaPT8-Wq9RtRlUWmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.488 [XNIO-1 task-1] O7vVrRaPT8-Wq9RtRlUWmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.495 [XNIO-1 task-1] O7vVrRaPT8-Wq9RtRlUWmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.495 [XNIO-1 task-1] O7vVrRaPT8-Wq9RtRlUWmA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.495 [XNIO-1 task-1] O7vVrRaPT8-Wq9RtRlUWmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.496 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:35298164 +17:00:48.503 [XNIO-1 task-1] kGdD9XMUSOazPhjOYhoBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.503 [XNIO-1 task-1] kGdD9XMUSOazPhjOYhoBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.503 [XNIO-1 task-1] kGdD9XMUSOazPhjOYhoBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.503 [XNIO-1 task-1] kGdD9XMUSOazPhjOYhoBdw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.513 [XNIO-1 task-1] gvj4s5_hRAWSZmGHBoChHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.513 [XNIO-1 task-1] gvj4s5_hRAWSZmGHBoChHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.514 [XNIO-1 task-1] gvj4s5_hRAWSZmGHBoChHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.514 [XNIO-1 task-1] gvj4s5_hRAWSZmGHBoChHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.514 [XNIO-1 task-1] gvj4s5_hRAWSZmGHBoChHA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.514 [XNIO-1 task-1] gvj4s5_hRAWSZmGHBoChHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.519 [XNIO-1 task-1] P_4jH5vmRaGJazfv6av1sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.519 [XNIO-1 task-1] P_4jH5vmRaGJazfv6av1sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.520 [XNIO-1 task-1] P_4jH5vmRaGJazfv6av1sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.520 [XNIO-1 task-1] P_4jH5vmRaGJazfv6av1sA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.530 [XNIO-1 task-1] AD8q0bCuTQyXn2lZOEAKQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.530 [XNIO-1 task-1] AD8q0bCuTQyXn2lZOEAKQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.530 [XNIO-1 task-1] AD8q0bCuTQyXn2lZOEAKQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.530 [XNIO-1 task-1] AD8q0bCuTQyXn2lZOEAKQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.531 [XNIO-1 task-1] AD8q0bCuTQyXn2lZOEAKQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.531 [XNIO-1 task-1] AD8q0bCuTQyXn2lZOEAKQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.533 [XNIO-1 task-1] 5iyrahSgQfeAUQBOiwhZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.533 [XNIO-1 task-1] 5iyrahSgQfeAUQBOiwhZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.533 [XNIO-1 task-1] 5iyrahSgQfeAUQBOiwhZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.534 [XNIO-1 task-1] 5iyrahSgQfeAUQBOiwhZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.534 [XNIO-1 task-1] 5iyrahSgQfeAUQBOiwhZTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.536 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2ce3ba5a-172d-49bd-aab0-fc0631b20eca +17:00:48.538 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2ce3ba5a-172d-49bd-aab0-fc0631b20eca +17:00:48.539 [XNIO-1 task-1] 6oEPyhGqRaWNWxOjqym-Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.539 [XNIO-1 task-1] 6oEPyhGqRaWNWxOjqym-Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.539 [XNIO-1 task-1] 6oEPyhGqRaWNWxOjqym-Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.540 [XNIO-1 task-1] 6oEPyhGqRaWNWxOjqym-Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.549 [XNIO-1 task-1] do1KXSmMT4CLk9q6xoscDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.549 [XNIO-1 task-1] do1KXSmMT4CLk9q6xoscDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.549 [XNIO-1 task-1] do1KXSmMT4CLk9q6xoscDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.549 [XNIO-1 task-1] do1KXSmMT4CLk9q6xoscDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.549 [XNIO-1 task-1] do1KXSmMT4CLk9q6xoscDg DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:48.557 [XNIO-1 task-1] do1KXSmMT4CLk9q6xoscDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:48.561 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:812e7122-663a-445c-a902-6353fea7e68f +17:00:48.561 [XNIO-1 task-1] DMbVa7H2QryYJ78jUeZ-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.561 [XNIO-1 task-1] DMbVa7H2QryYJ78jUeZ-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.561 [XNIO-1 task-1] DMbVa7H2QryYJ78jUeZ-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.561 [XNIO-1 task-1] DMbVa7H2QryYJ78jUeZ-tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.562 [XNIO-1 task-1] DMbVa7H2QryYJ78jUeZ-tQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.565 [XNIO-1 task-1] S0-GPgjWRjymhjzx60E6SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.565 [XNIO-1 task-1] S0-GPgjWRjymhjzx60E6SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.566 [XNIO-1 task-1] S0-GPgjWRjymhjzx60E6SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.566 [XNIO-1 task-1] S0-GPgjWRjymhjzx60E6SA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.566 [XNIO-1 task-1] S0-GPgjWRjymhjzx60E6SA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.580 [XNIO-1 task-1] 4NR6trdDSCKdY2pmr_u7Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.580 [XNIO-1 task-1] 4NR6trdDSCKdY2pmr_u7Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.581 [XNIO-1 task-1] 4NR6trdDSCKdY2pmr_u7Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.581 [XNIO-1 task-1] 4NR6trdDSCKdY2pmr_u7Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.581 [XNIO-1 task-1] 4NR6trdDSCKdY2pmr_u7Yg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.585 [XNIO-1 task-1] Kvu-mcyjQYurFQZ4e3w4HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.585 [XNIO-1 task-1] Kvu-mcyjQYurFQZ4e3w4HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.585 [XNIO-1 task-1] Kvu-mcyjQYurFQZ4e3w4HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.585 [XNIO-1 task-1] Kvu-mcyjQYurFQZ4e3w4HA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.585 [XNIO-1 task-1] Kvu-mcyjQYurFQZ4e3w4HA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.592 [XNIO-1 task-1] 98unDZwqRDC7AtnX6Grmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.593 [XNIO-1 task-1] 98unDZwqRDC7AtnX6Grmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.593 [XNIO-1 task-1] 98unDZwqRDC7AtnX6Grmtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.593 [XNIO-1 task-1] 98unDZwqRDC7AtnX6Grmtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.596 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:35298164 +17:00:48.600 [XNIO-1 task-1] ftD6C4etSnixiJ1ZpMA9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.600 [XNIO-1 task-1] ftD6C4etSnixiJ1ZpMA9Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.600 [XNIO-1 task-1] ftD6C4etSnixiJ1ZpMA9Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.600 [XNIO-1 task-1] ftD6C4etSnixiJ1ZpMA9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.601 [XNIO-1 task-1] ftD6C4etSnixiJ1ZpMA9Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:48.601 [XNIO-1 task-1] ftD6C4etSnixiJ1ZpMA9Lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:48.604 [XNIO-1 task-1] ifHIuQfzRWOmFpajL-57nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.604 [XNIO-1 task-1] ifHIuQfzRWOmFpajL-57nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.604 [XNIO-1 task-1] ifHIuQfzRWOmFpajL-57nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.604 [XNIO-1 task-1] ifHIuQfzRWOmFpajL-57nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.604 [XNIO-1 task-1] ifHIuQfzRWOmFpajL-57nA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.607 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:35298164 +17:00:48.607 [XNIO-1 task-1] hHTzLK4kTIW04kZwtv4aJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.608 [XNIO-1 task-1] hHTzLK4kTIW04kZwtv4aJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.610 [XNIO-1 task-1] hHTzLK4kTIW04kZwtv4aJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.610 [XNIO-1 task-1] hHTzLK4kTIW04kZwtv4aJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.611 [XNIO-1 task-1] hHTzLK4kTIW04kZwtv4aJw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:48.611 [XNIO-1 task-1] hHTzLK4kTIW04kZwtv4aJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:48.621 [XNIO-1 task-1] 8P2QhTRtQLuenQjC_c_WUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.622 [XNIO-1 task-1] 8P2QhTRtQLuenQjC_c_WUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.623 [XNIO-1 task-1] 8P2QhTRtQLuenQjC_c_WUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.623 [XNIO-1 task-1] 8P2QhTRtQLuenQjC_c_WUA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.639 [XNIO-1 task-1] iyoBOuDrSGSmgfOShYM8GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.639 [XNIO-1 task-1] iyoBOuDrSGSmgfOShYM8GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.639 [XNIO-1 task-1] iyoBOuDrSGSmgfOShYM8GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.639 [XNIO-1 task-1] iyoBOuDrSGSmgfOShYM8GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:48.639 [XNIO-1 task-1] iyoBOuDrSGSmgfOShYM8GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:48.640 [XNIO-1 task-1] iyoBOuDrSGSmgfOShYM8GQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:48.647 [XNIO-1 task-1] cE5ysKAKRHmG0VW58Xuo_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.647 [XNIO-1 task-1] cE5ysKAKRHmG0VW58Xuo_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.647 [XNIO-1 task-1] cE5ysKAKRHmG0VW58Xuo_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.647 [XNIO-1 task-1] cE5ysKAKRHmG0VW58Xuo_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.648 [XNIO-1 task-1] cE5ysKAKRHmG0VW58Xuo_A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.651 [XNIO-1 task-1] EeIC-5V_TceQkjRVIM4_oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.651 [XNIO-1 task-1] EeIC-5V_TceQkjRVIM4_oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.651 [XNIO-1 task-1] EeIC-5V_TceQkjRVIM4_oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.651 [XNIO-1 task-1] EeIC-5V_TceQkjRVIM4_oA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.651 [XNIO-1 task-1] EeIC-5V_TceQkjRVIM4_oA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.660 [XNIO-1 task-1] KyJwfPvbQsSBGDPk-9IRFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.660 [XNIO-1 task-1] KyJwfPvbQsSBGDPk-9IRFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.661 [XNIO-1 task-1] KyJwfPvbQsSBGDPk-9IRFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.661 [XNIO-1 task-1] KyJwfPvbQsSBGDPk-9IRFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.661 [XNIO-1 task-1] KyJwfPvbQsSBGDPk-9IRFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:48.666 [XNIO-1 task-1] bWwVt_ALQkqKh7qW4Rqg3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.666 [XNIO-1 task-1] bWwVt_ALQkqKh7qW4Rqg3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.666 [XNIO-1 task-1] bWwVt_ALQkqKh7qW4Rqg3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.666 [XNIO-1 task-1] bWwVt_ALQkqKh7qW4Rqg3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.666 [XNIO-1 task-1] bWwVt_ALQkqKh7qW4Rqg3Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.673 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ae0b9904-76a6-4569-9ef3-9c1472c811dc +17:00:48.687 [XNIO-1 task-1] JaJeHWC8Qu-V8jP5eIRnOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.687 [XNIO-1 task-1] JaJeHWC8Qu-V8jP5eIRnOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.688 [XNIO-1 task-1] JaJeHWC8Qu-V8jP5eIRnOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.688 [XNIO-1 task-1] JaJeHWC8Qu-V8jP5eIRnOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.688 [XNIO-1 task-1] JaJeHWC8Qu-V8jP5eIRnOA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.694 [XNIO-1 task-1] W4NcXoGbTuKhIG7SPDe2DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f +17:00:48.694 [XNIO-1 task-1] W4NcXoGbTuKhIG7SPDe2DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.694 [XNIO-1 task-1] W4NcXoGbTuKhIG7SPDe2DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.695 [XNIO-1 task-1] W4NcXoGbTuKhIG7SPDe2DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f +17:00:48.695 [XNIO-1 task-1] W4NcXoGbTuKhIG7SPDe2DA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 812e7122-663a-445c-a902-6353fea7e68f +17:00:48.701 [XNIO-1 task-1] xNlURNkkQiiGfWhS-2PEdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f +17:00:48.701 [XNIO-1 task-1] xNlURNkkQiiGfWhS-2PEdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.701 [XNIO-1 task-1] xNlURNkkQiiGfWhS-2PEdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.702 [XNIO-1 task-1] xNlURNkkQiiGfWhS-2PEdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f +17:00:48.702 [XNIO-1 task-1] xNlURNkkQiiGfWhS-2PEdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 812e7122-663a-445c-a902-6353fea7e68f +17:00:48.715 [XNIO-1 task-1] GkL-ebtNQ1KP5V287A2UIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.715 [XNIO-1 task-1] GkL-ebtNQ1KP5V287A2UIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.715 [XNIO-1 task-1] GkL-ebtNQ1KP5V287A2UIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.715 [XNIO-1 task-1] GkL-ebtNQ1KP5V287A2UIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.715 [XNIO-1 task-1] GkL-ebtNQ1KP5V287A2UIA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.725 [XNIO-1 task-1] fLbay5GrQh-5sQetn5HTJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f +17:00:48.725 [XNIO-1 task-1] fLbay5GrQh-5sQetn5HTJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.726 [XNIO-1 task-1] fLbay5GrQh-5sQetn5HTJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.726 [XNIO-1 task-1] fLbay5GrQh-5sQetn5HTJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f +17:00:48.726 [XNIO-1 task-1] fLbay5GrQh-5sQetn5HTJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 812e7122-663a-445c-a902-6353fea7e68f +17:00:48.728 [XNIO-1 task-1] fLbay5GrQh-5sQetn5HTJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 812e7122-663a-445c-a902-6353fea7e68f is not found.","severity":"ERROR"} +17:00:48.732 [XNIO-1 task-1] 9f2xFmMcQdKNCwZptScHwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.732 [XNIO-1 task-1] 9f2xFmMcQdKNCwZptScHwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.736 [XNIO-1 task-1] 9f2xFmMcQdKNCwZptScHwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.737 [XNIO-1 task-1] 9f2xFmMcQdKNCwZptScHwA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.747 [XNIO-1 task-1] z6kNxKpzQ7-Q42qnDrgQog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.747 [XNIO-1 task-1] z6kNxKpzQ7-Q42qnDrgQog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.747 [XNIO-1 task-1] z6kNxKpzQ7-Q42qnDrgQog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.747 [XNIO-1 task-1] z6kNxKpzQ7-Q42qnDrgQog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.747 [XNIO-1 task-1] z6kNxKpzQ7-Q42qnDrgQog DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.755 [XNIO-1 task-1] 6dTWFm2oS2OMLtUMsT9yow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.757 [XNIO-1 task-1] 6dTWFm2oS2OMLtUMsT9yow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.757 [XNIO-1 task-1] 6dTWFm2oS2OMLtUMsT9yow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.757 [XNIO-1 task-1] 6dTWFm2oS2OMLtUMsT9yow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.757 [XNIO-1 task-1] 6dTWFm2oS2OMLtUMsT9yow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:48.763 [XNIO-1 task-1] rLce9G1hQwqkP8VPuF-YWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f, base path is set to: null +17:00:48.763 [XNIO-1 task-1] rLce9G1hQwqkP8VPuF-YWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.763 [XNIO-1 task-1] rLce9G1hQwqkP8VPuF-YWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.765 [XNIO-1 task-1] rLce9G1hQwqkP8VPuF-YWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/812e7122-663a-445c-a902-6353fea7e68f, base path is set to: null +17:00:48.765 [XNIO-1 task-1] rLce9G1hQwqkP8VPuF-YWA DEBUG com.networknt.schema.TypeValidator debug - validate( "812e7122-663a-445c-a902-6353fea7e68f", "812e7122-663a-445c-a902-6353fea7e68f", refreshToken) +17:00:48.765 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:812e7122-663a-445c-a902-6353fea7e68f +17:00:48.773 [XNIO-1 task-1] X1V6HvQmQiu4E9IIyqbidA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.773 [XNIO-1 task-1] X1V6HvQmQiu4E9IIyqbidA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.773 [XNIO-1 task-1] X1V6HvQmQiu4E9IIyqbidA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.773 [XNIO-1 task-1] X1V6HvQmQiu4E9IIyqbidA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.774 [XNIO-1 task-1] X1V6HvQmQiu4E9IIyqbidA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.783 [XNIO-1 task-1] B8rXLAuCT1i1JoCGW2kJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f8a2fb8c-940c-4909-a330-9645ce829cd4 +17:00:48.783 [XNIO-1 task-1] B8rXLAuCT1i1JoCGW2kJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.783 [XNIO-1 task-1] B8rXLAuCT1i1JoCGW2kJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.784 [XNIO-1 task-1] B8rXLAuCT1i1JoCGW2kJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f8a2fb8c-940c-4909-a330-9645ce829cd4 +17:00:48.784 [XNIO-1 task-1] B8rXLAuCT1i1JoCGW2kJ5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f8a2fb8c-940c-4909-a330-9645ce829cd4 +17:00:48.797 [XNIO-1 task-1] VL9o7qEfRlG32KH6ZZWaBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.797 [XNIO-1 task-1] VL9o7qEfRlG32KH6ZZWaBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.797 [XNIO-1 task-1] VL9o7qEfRlG32KH6ZZWaBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.798 [XNIO-1 task-1] VL9o7qEfRlG32KH6ZZWaBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.806 [XNIO-1 task-1] S1VWuIDUTeS1krTCkvD56w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.806 [XNIO-1 task-1] S1VWuIDUTeS1krTCkvD56w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.806 [XNIO-1 task-1] S1VWuIDUTeS1krTCkvD56w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.806 [XNIO-1 task-1] S1VWuIDUTeS1krTCkvD56w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.807 [XNIO-1 task-1] S1VWuIDUTeS1krTCkvD56w DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.809 [XNIO-1 task-1] S1VWuIDUTeS1krTCkvD56w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.816 [XNIO-1 task-1] OXzXL-L2S0y0sobbOMN-Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.816 [XNIO-1 task-1] OXzXL-L2S0y0sobbOMN-Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.816 [XNIO-1 task-1] OXzXL-L2S0y0sobbOMN-Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.816 [XNIO-1 task-1] OXzXL-L2S0y0sobbOMN-Hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.826 [XNIO-1 task-1] S3b8o0x-Saaj1vUdGWXkug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.826 [XNIO-1 task-1] S3b8o0x-Saaj1vUdGWXkug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.826 [XNIO-1 task-1] S3b8o0x-Saaj1vUdGWXkug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.826 [XNIO-1 task-1] S3b8o0x-Saaj1vUdGWXkug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.827 [XNIO-1 task-1] S3b8o0x-Saaj1vUdGWXkug DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.827 [XNIO-1 task-1] S3b8o0x-Saaj1vUdGWXkug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.833 [XNIO-1 task-1] hyuR8OqAR_KKkyc8_aHVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.835 [XNIO-1 task-1] hyuR8OqAR_KKkyc8_aHVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.835 [XNIO-1 task-1] hyuR8OqAR_KKkyc8_aHVpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.836 [XNIO-1 task-1] hyuR8OqAR_KKkyc8_aHVpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.843 [XNIO-1 task-1] h6EIdAJeTGqxzqY6fWJkXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.844 [XNIO-1 task-1] h6EIdAJeTGqxzqY6fWJkXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.844 [XNIO-1 task-1] h6EIdAJeTGqxzqY6fWJkXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.844 [XNIO-1 task-1] h6EIdAJeTGqxzqY6fWJkXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.845 [XNIO-1 task-1] h6EIdAJeTGqxzqY6fWJkXA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.870 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3968e65b-2ced-448e-80be-a28dc8aa4ec4 +17:00:48.871 [XNIO-1 task-1] 3rO5wXZJT9C8Re0Lg-d4dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.872 [XNIO-1 task-1] 3rO5wXZJT9C8Re0Lg-d4dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.872 [XNIO-1 task-1] 3rO5wXZJT9C8Re0Lg-d4dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.872 [XNIO-1 task-1] 3rO5wXZJT9C8Re0Lg-d4dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.872 [XNIO-1 task-1] 3rO5wXZJT9C8Re0Lg-d4dQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.873 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3968e65b-2ced-448e-80be-a28dc8aa4ec4 +17:00:48.878 [XNIO-1 task-1] FX0cPn6SQ32EPwZyUMNh9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fc509c3b-d403-4e2b-953c-fe3f72bd4cdc +17:00:48.878 [XNIO-1 task-1] FX0cPn6SQ32EPwZyUMNh9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.878 [XNIO-1 task-1] FX0cPn6SQ32EPwZyUMNh9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.878 [XNIO-1 task-1] FX0cPn6SQ32EPwZyUMNh9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fc509c3b-d403-4e2b-953c-fe3f72bd4cdc +17:00:48.879 [XNIO-1 task-1] FX0cPn6SQ32EPwZyUMNh9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fc509c3b-d403-4e2b-953c-fe3f72bd4cdc +17:00:48.892 [XNIO-1 task-1] eUwrD2oCToqlG3-Oz1crNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:48.892 [XNIO-1 task-1] eUwrD2oCToqlG3-Oz1crNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.892 [XNIO-1 task-1] eUwrD2oCToqlG3-Oz1crNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.893 [XNIO-1 task-1] eUwrD2oCToqlG3-Oz1crNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:48.893 [XNIO-1 task-1] eUwrD2oCToqlG3-Oz1crNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:48.893 [XNIO-1 task-1] eUwrD2oCToqlG3-Oz1crNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:48.900 [XNIO-1 task-1] dryPgES8SXeqi3HWPYsCDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.900 [XNIO-1 task-1] dryPgES8SXeqi3HWPYsCDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.900 [XNIO-1 task-1] dryPgES8SXeqi3HWPYsCDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.901 [XNIO-1 task-1] dryPgES8SXeqi3HWPYsCDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.916 [XNIO-1 task-1] xYkfI3AJRC2uUH8_Iwsc8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.916 [XNIO-1 task-1] xYkfI3AJRC2uUH8_Iwsc8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.916 [XNIO-1 task-1] xYkfI3AJRC2uUH8_Iwsc8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.917 [XNIO-1 task-1] xYkfI3AJRC2uUH8_Iwsc8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:48.917 [XNIO-1 task-1] xYkfI3AJRC2uUH8_Iwsc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:48.917 [XNIO-1 task-1] xYkfI3AJRC2uUH8_Iwsc8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:48.921 [XNIO-1 task-1] 5fSH1hObRueB-zALaC_pDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.921 [XNIO-1 task-1] 5fSH1hObRueB-zALaC_pDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.921 [XNIO-1 task-1] 5fSH1hObRueB-zALaC_pDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.921 [XNIO-1 task-1] 5fSH1hObRueB-zALaC_pDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.932 [XNIO-1 task-1] YiaLPbMNSSOxjj2Qmn627g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:48.933 [XNIO-1 task-1] YiaLPbMNSSOxjj2Qmn627g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.933 [XNIO-1 task-1] YiaLPbMNSSOxjj2Qmn627g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.933 [XNIO-1 task-1] YiaLPbMNSSOxjj2Qmn627g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:48.933 [XNIO-1 task-1] YiaLPbMNSSOxjj2Qmn627g DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:48.935 [XNIO-1 task-1] YiaLPbMNSSOxjj2Qmn627g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:48.944 [XNIO-1 task-1] 4Wtuu-WXR0iMPVCZZItKkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:48.945 [XNIO-1 task-1] 4Wtuu-WXR0iMPVCZZItKkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.945 [XNIO-1 task-1] 4Wtuu-WXR0iMPVCZZItKkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.945 [XNIO-1 task-1] 4Wtuu-WXR0iMPVCZZItKkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:48.946 [XNIO-1 task-1] 4Wtuu-WXR0iMPVCZZItKkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:48.957 [XNIO-1 task-1] oxXGqIu3Q4-Pv8uliypUIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.957 [XNIO-1 task-1] oxXGqIu3Q4-Pv8uliypUIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.957 [XNIO-1 task-1] oxXGqIu3Q4-Pv8uliypUIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:48.958 [XNIO-1 task-1] oxXGqIu3Q4-Pv8uliypUIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:48.958 [XNIO-1 task-1] oxXGqIu3Q4-Pv8uliypUIQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:48.968 [XNIO-1 task-1] kAK-pbo2SR2UihjxiZlSUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.968 [XNIO-1 task-1] kAK-pbo2SR2UihjxiZlSUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.968 [XNIO-1 task-1] kAK-pbo2SR2UihjxiZlSUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.968 [XNIO-1 task-1] kAK-pbo2SR2UihjxiZlSUg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.974 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b597bc06 +17:00:48.977 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b597bc06 +17:00:48.977 [XNIO-1 task-1] s5PgEkETTJST7TEC82zdDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.977 [XNIO-1 task-1] s5PgEkETTJST7TEC82zdDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.978 [XNIO-1 task-1] s5PgEkETTJST7TEC82zdDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.978 [XNIO-1 task-1] s5PgEkETTJST7TEC82zdDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:48.990 [XNIO-1 task-1] svOV_COmQainAOf049A-fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:48.990 [XNIO-1 task-1] svOV_COmQainAOf049A-fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:48.990 [XNIO-1 task-1] svOV_COmQainAOf049A-fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:48.990 [XNIO-1 task-1] svOV_COmQainAOf049A-fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:48.990 [XNIO-1 task-1] svOV_COmQainAOf049A-fA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:48.991 [XNIO-1 task-1] svOV_COmQainAOf049A-fA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:48.996 [XNIO-1 task-1] e_HoIvpQQuSMIhR_yyQswQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:48.996 [XNIO-1 task-1] e_HoIvpQQuSMIhR_yyQswQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:48.996 [XNIO-1 task-1] e_HoIvpQQuSMIhR_yyQswQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:48.996 [XNIO-1 task-1] e_HoIvpQQuSMIhR_yyQswQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:48.996 [XNIO-1 task-1] e_HoIvpQQuSMIhR_yyQswQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.003 [XNIO-1 task-1] tJ1AIfSaS52E1iNzyiaeyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.003 [XNIO-1 task-1] tJ1AIfSaS52E1iNzyiaeyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.003 [XNIO-1 task-1] tJ1AIfSaS52E1iNzyiaeyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.003 [XNIO-1 task-1] tJ1AIfSaS52E1iNzyiaeyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.003 [XNIO-1 task-1] tJ1AIfSaS52E1iNzyiaeyw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:49.004 [XNIO-1 task-1] tJ1AIfSaS52E1iNzyiaeyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:49.016 [XNIO-1 task-1] VOSFtBB-Rg-iYt90HPgq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.016 [XNIO-1 task-1] VOSFtBB-Rg-iYt90HPgq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.016 [XNIO-1 task-1] VOSFtBB-Rg-iYt90HPgq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.016 [XNIO-1 task-1] VOSFtBB-Rg-iYt90HPgq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.016 [XNIO-1 task-1] VOSFtBB-Rg-iYt90HPgq7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.022 [XNIO-1 task-1] 7H6leLV_SU-R9PbJp1uIsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.022 [XNIO-1 task-1] 7H6leLV_SU-R9PbJp1uIsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.022 [XNIO-1 task-1] 7H6leLV_SU-R9PbJp1uIsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.022 [XNIO-1 task-1] 7H6leLV_SU-R9PbJp1uIsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.023 [XNIO-1 task-1] 7H6leLV_SU-R9PbJp1uIsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:49.023 [XNIO-1 task-1] 7H6leLV_SU-R9PbJp1uIsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:49.026 [XNIO-1 task-1] 2TTu32fOSfiCCcC3mj5yGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.027 [XNIO-1 task-1] 2TTu32fOSfiCCcC3mj5yGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.027 [XNIO-1 task-1] 2TTu32fOSfiCCcC3mj5yGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.027 [XNIO-1 task-1] 2TTu32fOSfiCCcC3mj5yGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.027 [XNIO-1 task-1] 2TTu32fOSfiCCcC3mj5yGA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.040 [XNIO-1 task-1] F15AD7AzRfWi_Myfif0LNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.041 [XNIO-1 task-1] F15AD7AzRfWi_Myfif0LNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.041 [XNIO-1 task-1] F15AD7AzRfWi_Myfif0LNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.041 [XNIO-1 task-1] F15AD7AzRfWi_Myfif0LNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.047 [XNIO-1 task-1] 8cRPcG5WSBS318l0hz3uyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.047 [XNIO-1 task-1] 8cRPcG5WSBS318l0hz3uyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.047 [XNIO-1 task-1] 8cRPcG5WSBS318l0hz3uyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.047 [XNIO-1 task-1] 8cRPcG5WSBS318l0hz3uyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.048 [XNIO-1 task-1] 8cRPcG5WSBS318l0hz3uyg DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:49.048 [XNIO-1 task-1] 8cRPcG5WSBS318l0hz3uyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:49.052 [XNIO-1 task-1] LQ9sTtWXT1mcZ2wph7_Yxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.052 [XNIO-1 task-1] LQ9sTtWXT1mcZ2wph7_Yxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.052 [XNIO-1 task-1] LQ9sTtWXT1mcZ2wph7_Yxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.052 [XNIO-1 task-1] LQ9sTtWXT1mcZ2wph7_Yxg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.063 [XNIO-1 task-1] pUxeWB76RuWcZsgn79JuTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.063 [XNIO-1 task-1] pUxeWB76RuWcZsgn79JuTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.063 [XNIO-1 task-1] pUxeWB76RuWcZsgn79JuTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.063 [XNIO-1 task-1] pUxeWB76RuWcZsgn79JuTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.063 [XNIO-1 task-1] pUxeWB76RuWcZsgn79JuTw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:49.063 [XNIO-1 task-1] pUxeWB76RuWcZsgn79JuTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:49.064 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b597bc06 +17:00:49.067 [XNIO-1 task-1] w_kVIDwSQWKw3GUT7S_D1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.067 [XNIO-1 task-1] w_kVIDwSQWKw3GUT7S_D1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.067 [XNIO-1 task-1] w_kVIDwSQWKw3GUT7S_D1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.067 [XNIO-1 task-1] w_kVIDwSQWKw3GUT7S_D1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.068 [XNIO-1 task-1] w_kVIDwSQWKw3GUT7S_D1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.072 [XNIO-1 task-1] WDzGLk8_Sn2nlKN8la1OHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.072 [XNIO-1 task-1] WDzGLk8_Sn2nlKN8la1OHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.072 [XNIO-1 task-1] WDzGLk8_Sn2nlKN8la1OHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.072 [XNIO-1 task-1] WDzGLk8_Sn2nlKN8la1OHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.073 [XNIO-1 task-1] WDzGLk8_Sn2nlKN8la1OHA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.073 [XNIO-1 task-1] WDzGLk8_Sn2nlKN8la1OHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.076 [XNIO-1 task-1] RgSaNf9uQxabU6bYY3KZsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.077 [XNIO-1 task-1] RgSaNf9uQxabU6bYY3KZsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.077 [XNIO-1 task-1] RgSaNf9uQxabU6bYY3KZsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.077 [XNIO-1 task-1] RgSaNf9uQxabU6bYY3KZsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.077 [XNIO-1 task-1] RgSaNf9uQxabU6bYY3KZsA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.080 [XNIO-1 task-1] SI5dYYhwRwyog-MXHR2Ibg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.080 [XNIO-1 task-1] SI5dYYhwRwyog-MXHR2Ibg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.080 [XNIO-1 task-1] SI5dYYhwRwyog-MXHR2Ibg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.080 [XNIO-1 task-1] SI5dYYhwRwyog-MXHR2Ibg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.080 [XNIO-1 task-1] SI5dYYhwRwyog-MXHR2Ibg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.081 [XNIO-1 task-1] SI5dYYhwRwyog-MXHR2Ibg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.083 [XNIO-1 task-1] VwgaGgTaSAKQ9LR2Kk-AgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.083 [XNIO-1 task-1] VwgaGgTaSAKQ9LR2Kk-AgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.083 [XNIO-1 task-1] VwgaGgTaSAKQ9LR2Kk-AgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.083 [XNIO-1 task-1] VwgaGgTaSAKQ9LR2Kk-AgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.084 [XNIO-1 task-1] VwgaGgTaSAKQ9LR2Kk-AgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.088 [XNIO-1 task-1] LNPRlbNiQNqfDt75v4YohA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.088 [XNIO-1 task-1] LNPRlbNiQNqfDt75v4YohA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.088 [XNIO-1 task-1] LNPRlbNiQNqfDt75v4YohA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.088 [XNIO-1 task-1] LNPRlbNiQNqfDt75v4YohA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.088 [XNIO-1 task-1] LNPRlbNiQNqfDt75v4YohA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.090 [XNIO-1 task-1] LNPRlbNiQNqfDt75v4YohA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.093 [XNIO-1 task-1] UXOMIh4iRG-a5CJu3mYlOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.093 [XNIO-1 task-1] UXOMIh4iRG-a5CJu3mYlOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.093 [XNIO-1 task-1] UXOMIh4iRG-a5CJu3mYlOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.093 [XNIO-1 task-1] UXOMIh4iRG-a5CJu3mYlOg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.105 [XNIO-1 task-1] SJzhz4LhTqWKqne8utxhSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.105 [XNIO-1 task-1] SJzhz4LhTqWKqne8utxhSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.106 [XNIO-1 task-1] SJzhz4LhTqWKqne8utxhSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.106 [XNIO-1 task-1] SJzhz4LhTqWKqne8utxhSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.106 [XNIO-1 task-1] SJzhz4LhTqWKqne8utxhSg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.106 [XNIO-1 task-1] SJzhz4LhTqWKqne8utxhSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.109 [XNIO-1 task-1] ncX2wIwgRnOuQJR93K_8gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.109 [XNIO-1 task-1] ncX2wIwgRnOuQJR93K_8gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.109 [XNIO-1 task-1] ncX2wIwgRnOuQJR93K_8gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.109 [XNIO-1 task-1] ncX2wIwgRnOuQJR93K_8gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.109 [XNIO-1 task-1] ncX2wIwgRnOuQJR93K_8gg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.112 [XNIO-1 task-1] i8cygyldSfWs1qA33ZrYTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.112 [XNIO-1 task-1] i8cygyldSfWs1qA33ZrYTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.112 [XNIO-1 task-1] i8cygyldSfWs1qA33ZrYTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.112 [XNIO-1 task-1] i8cygyldSfWs1qA33ZrYTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.113 [XNIO-1 task-1] i8cygyldSfWs1qA33ZrYTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.118 [XNIO-1 task-1] HPZ_cIOsSsCql4FCO9W7pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.118 [XNIO-1 task-1] HPZ_cIOsSsCql4FCO9W7pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.118 [XNIO-1 task-1] HPZ_cIOsSsCql4FCO9W7pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.119 [XNIO-1 task-1] HPZ_cIOsSsCql4FCO9W7pQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.129 [XNIO-1 task-1] YsjleWoMRTWUXbvoOP-5gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.129 [XNIO-1 task-1] YsjleWoMRTWUXbvoOP-5gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.129 [XNIO-1 task-1] YsjleWoMRTWUXbvoOP-5gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.130 [XNIO-1 task-1] YsjleWoMRTWUXbvoOP-5gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.130 [XNIO-1 task-1] YsjleWoMRTWUXbvoOP-5gw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.130 [XNIO-1 task-1] YsjleWoMRTWUXbvoOP-5gw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.133 [XNIO-1 task-1] m7wteEcPQeemTqJbjglYsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.133 [XNIO-1 task-1] m7wteEcPQeemTqJbjglYsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.133 [XNIO-1 task-1] m7wteEcPQeemTqJbjglYsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.133 [XNIO-1 task-1] m7wteEcPQeemTqJbjglYsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.134 [XNIO-1 task-1] m7wteEcPQeemTqJbjglYsw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.136 [XNIO-1 task-1] DmZQaR4qQW-lZg8HXI0D6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.136 [XNIO-1 task-1] DmZQaR4qQW-lZg8HXI0D6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.136 [XNIO-1 task-1] DmZQaR4qQW-lZg8HXI0D6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.136 [XNIO-1 task-1] DmZQaR4qQW-lZg8HXI0D6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.136 [XNIO-1 task-1] DmZQaR4qQW-lZg8HXI0D6g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.146 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b597bc06 +17:00:49.151 [XNIO-1 task-1] kzhhg-n_S7y5U48mC06A5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.151 [XNIO-1 task-1] kzhhg-n_S7y5U48mC06A5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.152 [XNIO-1 task-1] kzhhg-n_S7y5U48mC06A5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.152 [XNIO-1 task-1] kzhhg-n_S7y5U48mC06A5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.153 [XNIO-1 task-1] kzhhg-n_S7y5U48mC06A5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.158 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b597bc06 +17:00:49.159 [XNIO-1 task-1] pvQsoQQ0Tb6HIzLmETF3Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.159 [XNIO-1 task-1] pvQsoQQ0Tb6HIzLmETF3Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.159 [XNIO-1 task-1] pvQsoQQ0Tb6HIzLmETF3Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.159 [XNIO-1 task-1] pvQsoQQ0Tb6HIzLmETF3Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.159 [XNIO-1 task-1] pvQsoQQ0Tb6HIzLmETF3Ag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.161 [XNIO-1 task-1] RcyW-Oc9Td-BM1Sz2PEBwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.162 [XNIO-1 task-1] RcyW-Oc9Td-BM1Sz2PEBwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.162 [XNIO-1 task-1] RcyW-Oc9Td-BM1Sz2PEBwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.162 [XNIO-1 task-1] RcyW-Oc9Td-BM1Sz2PEBwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.163 [XNIO-1 task-1] RcyW-Oc9Td-BM1Sz2PEBwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.177 [XNIO-1 task-1] 2ZBk4IjITR-zsX4EqJfOiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.177 [XNIO-1 task-1] 2ZBk4IjITR-zsX4EqJfOiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.177 [XNIO-1 task-1] 2ZBk4IjITR-zsX4EqJfOiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.178 [XNIO-1 task-1] 2ZBk4IjITR-zsX4EqJfOiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.178 [XNIO-1 task-1] 2ZBk4IjITR-zsX4EqJfOiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.182 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df57756c-48c1-4c77-bad2-638d0427e4c6 +17:00:49.183 [XNIO-1 task-1] WAdB7o51S82SSf5vmWDvhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.183 [XNIO-1 task-1] WAdB7o51S82SSf5vmWDvhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.183 [XNIO-1 task-1] WAdB7o51S82SSf5vmWDvhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.183 [XNIO-1 task-1] WAdB7o51S82SSf5vmWDvhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.183 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df57756c-48c1-4c77-bad2-638d0427e4c6 +17:00:49.184 [XNIO-1 task-1] WAdB7o51S82SSf5vmWDvhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.188 [XNIO-1 task-1] tC1wc8tKTI2-3FtTsGd_Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:49.188 [XNIO-1 task-1] tC1wc8tKTI2-3FtTsGd_Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.188 [XNIO-1 task-1] tC1wc8tKTI2-3FtTsGd_Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.188 [XNIO-1 task-1] tC1wc8tKTI2-3FtTsGd_Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:49.188 [XNIO-1 task-1] tC1wc8tKTI2-3FtTsGd_Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:49.189 [XNIO-1 task-1] tC1wc8tKTI2-3FtTsGd_Lg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:49.193 [XNIO-1 task-1] By7tcmn2TryrMk0LN_YbnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.193 [XNIO-1 task-1] By7tcmn2TryrMk0LN_YbnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.194 [XNIO-1 task-1] By7tcmn2TryrMk0LN_YbnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.194 [XNIO-1 task-1] By7tcmn2TryrMk0LN_YbnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.204 [XNIO-1 task-1] NTJyfwvVQSysK1ifq2-qAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.205 [XNIO-1 task-1] NTJyfwvVQSysK1ifq2-qAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.205 [XNIO-1 task-1] NTJyfwvVQSysK1ifq2-qAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.205 [XNIO-1 task-1] NTJyfwvVQSysK1ifq2-qAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.205 [XNIO-1 task-1] NTJyfwvVQSysK1ifq2-qAw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.214 [XNIO-1 task-1] C7UYa-Z4TjyFdXdknUlK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.215 [XNIO-1 task-1] C7UYa-Z4TjyFdXdknUlK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.215 [XNIO-1 task-1] C7UYa-Z4TjyFdXdknUlK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.215 [XNIO-1 task-1] C7UYa-Z4TjyFdXdknUlK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.215 [XNIO-1 task-1] C7UYa-Z4TjyFdXdknUlK8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.219 [XNIO-1 task-1] Ose6ujigSgK7ukYOkE7FRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:49.219 [XNIO-1 task-1] Ose6ujigSgK7ukYOkE7FRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.220 [XNIO-1 task-1] Ose6ujigSgK7ukYOkE7FRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.220 [XNIO-1 task-1] Ose6ujigSgK7ukYOkE7FRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:49.220 [XNIO-1 task-1] Ose6ujigSgK7ukYOkE7FRA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:49.220 [XNIO-1 task-1] Ose6ujigSgK7ukYOkE7FRA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:49.229 [XNIO-1 task-1] B2grzzKqRoWT2CSTTdvhuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.229 [XNIO-1 task-1] B2grzzKqRoWT2CSTTdvhuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.229 [XNIO-1 task-1] B2grzzKqRoWT2CSTTdvhuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.229 [XNIO-1 task-1] B2grzzKqRoWT2CSTTdvhuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.230 [XNIO-1 task-1] B2grzzKqRoWT2CSTTdvhuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.236 [XNIO-1 task-1] jKbI4TCjQD6ZvJYw6BaOYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.237 [XNIO-1 task-1] jKbI4TCjQD6ZvJYw6BaOYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.237 [XNIO-1 task-1] jKbI4TCjQD6ZvJYw6BaOYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.237 [XNIO-1 task-1] jKbI4TCjQD6ZvJYw6BaOYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.237 [XNIO-1 task-1] jKbI4TCjQD6ZvJYw6BaOYw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.245 [XNIO-1 task-1] cpgLuwWpSJSr370BHsaWtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.245 [XNIO-1 task-1] cpgLuwWpSJSr370BHsaWtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.245 [XNIO-1 task-1] cpgLuwWpSJSr370BHsaWtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.246 [XNIO-1 task-1] cpgLuwWpSJSr370BHsaWtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.246 [XNIO-1 task-1] cpgLuwWpSJSr370BHsaWtA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.248 [XNIO-1 task-1] _wX8xVwuTai2vd2DAOLDIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.248 [XNIO-1 task-1] _wX8xVwuTai2vd2DAOLDIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.249 [XNIO-1 task-1] _wX8xVwuTai2vd2DAOLDIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.249 [XNIO-1 task-1] _wX8xVwuTai2vd2DAOLDIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.250 [XNIO-1 task-1] _wX8xVwuTai2vd2DAOLDIg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.257 [XNIO-1 task-1] NJnbK74lQRutxCzNDFqmLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.257 [XNIO-1 task-1] NJnbK74lQRutxCzNDFqmLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.257 [XNIO-1 task-1] NJnbK74lQRutxCzNDFqmLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.258 [XNIO-1 task-1] NJnbK74lQRutxCzNDFqmLw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.268 [XNIO-1 task-1] hBjJ4qoNSreqH2AYi3AibA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.268 [XNIO-1 task-1] hBjJ4qoNSreqH2AYi3AibA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.268 [XNIO-1 task-1] hBjJ4qoNSreqH2AYi3AibA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.269 [XNIO-1 task-1] hBjJ4qoNSreqH2AYi3AibA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:49.269 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7feec124-d216-49b6-8d1a-7116f828f874 +17:00:49.269 [XNIO-1 task-1] hBjJ4qoNSreqH2AYi3AibA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:49.269 [XNIO-1 task-1] hBjJ4qoNSreqH2AYi3AibA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:49.273 [XNIO-1 task-1] 2Dpc8XhPSDaV0rUn-W6XiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.273 [XNIO-1 task-1] 2Dpc8XhPSDaV0rUn-W6XiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.273 [XNIO-1 task-1] 2Dpc8XhPSDaV0rUn-W6XiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.273 [XNIO-1 task-1] 2Dpc8XhPSDaV0rUn-W6XiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.273 [XNIO-1 task-1] 2Dpc8XhPSDaV0rUn-W6XiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.279 [XNIO-1 task-1] D5-bNEcVSnGgY_P7md0VWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611, base path is set to: null +17:00:49.279 [XNIO-1 task-1] D5-bNEcVSnGgY_P7md0VWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.279 [XNIO-1 task-1] D5-bNEcVSnGgY_P7md0VWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.279 [XNIO-1 task-1] D5-bNEcVSnGgY_P7md0VWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611, base path is set to: null +17:00:49.279 [XNIO-1 task-1] D5-bNEcVSnGgY_P7md0VWA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4efa7b-5d43-41dd-9df2-7766b3305611", "dd4efa7b-5d43-41dd-9df2-7766b3305611", refreshToken) +17:00:49.294 [XNIO-1 task-1] 63n81dqDQju4JN_hrJSfZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.294 [XNIO-1 task-1] 63n81dqDQju4JN_hrJSfZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.294 [XNIO-1 task-1] 63n81dqDQju4JN_hrJSfZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.295 [XNIO-1 task-1] 63n81dqDQju4JN_hrJSfZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.295 [XNIO-1 task-1] 63n81dqDQju4JN_hrJSfZA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.303 [XNIO-1 task-1] u7h2pSHaQa2H13zNIAzqkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.303 [XNIO-1 task-1] u7h2pSHaQa2H13zNIAzqkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.303 [XNIO-1 task-1] u7h2pSHaQa2H13zNIAzqkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.303 [XNIO-1 task-1] u7h2pSHaQa2H13zNIAzqkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.304 [XNIO-1 task-1] u7h2pSHaQa2H13zNIAzqkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.306 [XNIO-1 task-1] af97YS8oRoWX9vPn7Pycvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902, base path is set to: null +17:00:49.307 [XNIO-1 task-1] af97YS8oRoWX9vPn7Pycvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.307 [XNIO-1 task-1] af97YS8oRoWX9vPn7Pycvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.307 [XNIO-1 task-1] af97YS8oRoWX9vPn7Pycvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902, base path is set to: null +17:00:49.307 [XNIO-1 task-1] af97YS8oRoWX9vPn7Pycvw DEBUG com.networknt.schema.TypeValidator debug - validate( "d47cb801-0cae-4905-8632-d8d7e7373902", "d47cb801-0cae-4905-8632-d8d7e7373902", refreshToken) +17:00:49.311 [XNIO-1 task-1] 5YFM5zPmTzucCKe-uZXCAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611, base path is set to: null +17:00:49.311 [XNIO-1 task-1] 5YFM5zPmTzucCKe-uZXCAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.311 [XNIO-1 task-1] 5YFM5zPmTzucCKe-uZXCAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.312 [XNIO-1 task-1] 5YFM5zPmTzucCKe-uZXCAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611, base path is set to: null +17:00:49.312 [XNIO-1 task-1] 5YFM5zPmTzucCKe-uZXCAw DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4efa7b-5d43-41dd-9df2-7766b3305611", "dd4efa7b-5d43-41dd-9df2-7766b3305611", refreshToken) +17:00:49.314 [XNIO-1 task-1] 5YFM5zPmTzucCKe-uZXCAw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dd4efa7b-5d43-41dd-9df2-7766b3305611 is not found.","severity":"ERROR"} +17:00:49.319 [XNIO-1 task-1] 6yCtZI37SKaoNFJZRz8SbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.319 [XNIO-1 task-1] 6yCtZI37SKaoNFJZRz8SbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.320 [XNIO-1 task-1] 6yCtZI37SKaoNFJZRz8SbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.320 [XNIO-1 task-1] 6yCtZI37SKaoNFJZRz8SbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.320 [XNIO-1 task-1] 6yCtZI37SKaoNFJZRz8SbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.327 [XNIO-1 task-1] EAuCzGBMRhGkQFXp7arnjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.327 [XNIO-1 task-1] EAuCzGBMRhGkQFXp7arnjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.328 [XNIO-1 task-1] EAuCzGBMRhGkQFXp7arnjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.328 [XNIO-1 task-1] EAuCzGBMRhGkQFXp7arnjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.328 [XNIO-1 task-1] EAuCzGBMRhGkQFXp7arnjA DEBUG com.networknt.schema.TypeValidator debug - validate( "9598ba06-5199-4e8b-ba1e-e7a20266cc23", "9598ba06-5199-4e8b-ba1e-e7a20266cc23", refreshToken) +17:00:49.332 [XNIO-1 task-1] TBa2DUwOQfSelykqjA5qZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.333 [XNIO-1 task-1] TBa2DUwOQfSelykqjA5qZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.333 [XNIO-1 task-1] TBa2DUwOQfSelykqjA5qZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.333 [XNIO-1 task-1] TBa2DUwOQfSelykqjA5qZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.333 [XNIO-1 task-1] TBa2DUwOQfSelykqjA5qZg DEBUG com.networknt.schema.TypeValidator debug - validate( "9598ba06-5199-4e8b-ba1e-e7a20266cc23", "9598ba06-5199-4e8b-ba1e-e7a20266cc23", refreshToken) +17:00:49.354 [XNIO-1 task-1] qSWlNruDTBeqWPC3EdnknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.354 [XNIO-1 task-1] qSWlNruDTBeqWPC3EdnknA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.354 [XNIO-1 task-1] qSWlNruDTBeqWPC3EdnknA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.354 [XNIO-1 task-1] qSWlNruDTBeqWPC3EdnknA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.354 [XNIO-1 task-1] qSWlNruDTBeqWPC3EdnknA DEBUG com.networknt.schema.TypeValidator debug - validate( "9598ba06-5199-4e8b-ba1e-e7a20266cc23", "9598ba06-5199-4e8b-ba1e-e7a20266cc23", refreshToken) +17:00:49.366 [XNIO-1 task-1] qSWlNruDTBeqWPC3EdnknA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9598ba06-5199-4e8b-ba1e-e7a20266cc23 is not found.","severity":"ERROR"} +17:00:49.368 [XNIO-1 task-1] KMKTWFcMTC6npZB8H6oHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23 +17:00:49.368 [XNIO-1 task-1] KMKTWFcMTC6npZB8H6oHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.369 [XNIO-1 task-1] KMKTWFcMTC6npZB8H6oHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.369 [XNIO-1 task-1] KMKTWFcMTC6npZB8H6oHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23 +17:00:49.369 [XNIO-1 task-1] KMKTWFcMTC6npZB8H6oHFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9598ba06-5199-4e8b-ba1e-e7a20266cc23 +17:00:49.373 [XNIO-1 task-1] Nkm-9HpQQSq22xA1eFGFmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.373 [XNIO-1 task-1] Nkm-9HpQQSq22xA1eFGFmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.373 [XNIO-1 task-1] Nkm-9HpQQSq22xA1eFGFmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.373 [XNIO-1 task-1] Nkm-9HpQQSq22xA1eFGFmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.373 [XNIO-1 task-1] Nkm-9HpQQSq22xA1eFGFmw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:49.374 [XNIO-1 task-1] Nkm-9HpQQSq22xA1eFGFmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:49.377 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5a7ed865-01c9-4718-8b40-38ba6ad6cc0a +17:00:49.378 [XNIO-1 task-1] s2RKn3jZTp-IcOokeBdgQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.378 [XNIO-1 task-1] s2RKn3jZTp-IcOokeBdgQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.378 [XNIO-1 task-1] s2RKn3jZTp-IcOokeBdgQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.378 [XNIO-1 task-1] s2RKn3jZTp-IcOokeBdgQA DEBUG com.networknt.schema.TypeValidator debug - validate( "9598ba06-5199-4e8b-ba1e-e7a20266cc23", "9598ba06-5199-4e8b-ba1e-e7a20266cc23", refreshToken) +17:00:49.379 [XNIO-1 task-1] s2RKn3jZTp-IcOokeBdgQA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9598ba06-5199-4e8b-ba1e-e7a20266cc23 is not found.","severity":"ERROR"} +17:00:49.379 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5a7ed865-01c9-4718-8b40-38ba6ad6cc0a +17:00:49.381 [XNIO-1 task-1] dm067hC8Q-GYHlV6UzUAYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.384 [XNIO-1 task-1] dm067hC8Q-GYHlV6UzUAYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.384 [XNIO-1 task-1] dm067hC8Q-GYHlV6UzUAYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.384 [XNIO-1 task-1] dm067hC8Q-GYHlV6UzUAYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.384 [XNIO-1 task-1] dm067hC8Q-GYHlV6UzUAYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.390 [XNIO-1 task-1] CYJmCEZOR82nCsUfPYp5_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.390 [XNIO-1 task-1] CYJmCEZOR82nCsUfPYp5_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.390 [XNIO-1 task-1] CYJmCEZOR82nCsUfPYp5_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.391 [XNIO-1 task-1] CYJmCEZOR82nCsUfPYp5_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.391 [XNIO-1 task-1] CYJmCEZOR82nCsUfPYp5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "9598ba06-5199-4e8b-ba1e-e7a20266cc23", "9598ba06-5199-4e8b-ba1e-e7a20266cc23", refreshToken) +17:00:49.391 [XNIO-1 task-1] CYJmCEZOR82nCsUfPYp5_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9598ba06-5199-4e8b-ba1e-e7a20266cc23 is not found.","severity":"ERROR"} +17:00:49.396 [XNIO-1 task-1] BkMTCILwTnStl4ZYLJOvgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.396 [XNIO-1 task-1] BkMTCILwTnStl4ZYLJOvgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.396 [XNIO-1 task-1] BkMTCILwTnStl4ZYLJOvgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.397 [XNIO-1 task-1] BkMTCILwTnStl4ZYLJOvgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.397 [XNIO-1 task-1] BkMTCILwTnStl4ZYLJOvgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.403 [XNIO-1 task-1] ZgUYrZBORjW5PV0eAhPQ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.403 [XNIO-1 task-1] ZgUYrZBORjW5PV0eAhPQ8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.403 [XNIO-1 task-1] ZgUYrZBORjW5PV0eAhPQ8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.404 [XNIO-1 task-1] ZgUYrZBORjW5PV0eAhPQ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9598ba06-5199-4e8b-ba1e-e7a20266cc23, base path is set to: null +17:00:49.404 [XNIO-1 task-1] ZgUYrZBORjW5PV0eAhPQ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9598ba06-5199-4e8b-ba1e-e7a20266cc23", "9598ba06-5199-4e8b-ba1e-e7a20266cc23", refreshToken) +17:00:49.404 [XNIO-1 task-1] ZgUYrZBORjW5PV0eAhPQ8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9598ba06-5199-4e8b-ba1e-e7a20266cc23 is not found.","severity":"ERROR"} +17:00:49.411 [XNIO-1 task-1] CO7iXzA4Q1q3eSsqZVMK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.412 [XNIO-1 task-1] CO7iXzA4Q1q3eSsqZVMK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.412 [XNIO-1 task-1] CO7iXzA4Q1q3eSsqZVMK3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.412 [XNIO-1 task-1] CO7iXzA4Q1q3eSsqZVMK3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.412 [XNIO-1 task-1] CO7iXzA4Q1q3eSsqZVMK3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.425 [XNIO-1 task-1] v6MC1R2pSYi9P_A7h_Ntkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.425 [XNIO-1 task-1] v6MC1R2pSYi9P_A7h_Ntkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.425 [XNIO-1 task-1] v6MC1R2pSYi9P_A7h_Ntkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.425 [XNIO-1 task-1] v6MC1R2pSYi9P_A7h_Ntkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.425 [XNIO-1 task-1] v6MC1R2pSYi9P_A7h_Ntkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.429 [XNIO-1 task-1] bvbS0pgLQfunxz4m-eTJSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.429 [XNIO-1 task-1] bvbS0pgLQfunxz4m-eTJSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.429 [XNIO-1 task-1] bvbS0pgLQfunxz4m-eTJSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.429 [XNIO-1 task-1] bvbS0pgLQfunxz4m-eTJSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.429 [XNIO-1 task-1] bvbS0pgLQfunxz4m-eTJSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.437 [XNIO-1 task-1] WyZHU34XT8aqsaE60kxxcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669 +17:00:49.437 [XNIO-1 task-1] WyZHU34XT8aqsaE60kxxcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.437 [XNIO-1 task-1] WyZHU34XT8aqsaE60kxxcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.437 [XNIO-1 task-1] WyZHU34XT8aqsaE60kxxcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669 +17:00:49.437 [XNIO-1 task-1] WyZHU34XT8aqsaE60kxxcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9d8b1c74-c6f5-4b5d-8471-15e631e2c669 +17:00:49.453 [XNIO-1 task-1] NnN9fd2RQ66YcwxBWoVY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.453 [XNIO-1 task-1] NnN9fd2RQ66YcwxBWoVY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.453 [XNIO-1 task-1] NnN9fd2RQ66YcwxBWoVY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.453 [XNIO-1 task-1] NnN9fd2RQ66YcwxBWoVY3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.454 [XNIO-1 task-1] NnN9fd2RQ66YcwxBWoVY3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.457 [XNIO-1 task-1] 0YY-J1SLT-icPNBYl50tog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669, base path is set to: null +17:00:49.457 [XNIO-1 task-1] 0YY-J1SLT-icPNBYl50tog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.457 [XNIO-1 task-1] 0YY-J1SLT-icPNBYl50tog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.458 [XNIO-1 task-1] 0YY-J1SLT-icPNBYl50tog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669, base path is set to: null +17:00:49.458 [XNIO-1 task-1] 0YY-J1SLT-icPNBYl50tog DEBUG com.networknt.schema.TypeValidator debug - validate( "9d8b1c74-c6f5-4b5d-8471-15e631e2c669", "9d8b1c74-c6f5-4b5d-8471-15e631e2c669", refreshToken) +17:00:49.460 [XNIO-1 task-1] 0YY-J1SLT-icPNBYl50tog ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9d8b1c74-c6f5-4b5d-8471-15e631e2c669 is not found.","severity":"ERROR"} +17:00:49.463 [XNIO-1 task-1] Kz-D9_kzQce1gc2A3X-Hqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.464 [XNIO-1 task-1] Kz-D9_kzQce1gc2A3X-Hqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.464 [XNIO-1 task-1] Kz-D9_kzQce1gc2A3X-Hqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.464 [XNIO-1 task-1] Kz-D9_kzQce1gc2A3X-Hqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.474 [XNIO-1 task-1] GOi0ts6wQeqNsHeZ98djjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa, base path is set to: null +17:00:49.474 [XNIO-1 task-1] GOi0ts6wQeqNsHeZ98djjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.474 [XNIO-1 task-1] GOi0ts6wQeqNsHeZ98djjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.474 [XNIO-1 task-1] GOi0ts6wQeqNsHeZ98djjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa, base path is set to: null +17:00:49.475 [XNIO-1 task-1] GOi0ts6wQeqNsHeZ98djjg DEBUG com.networknt.schema.TypeValidator debug - validate( "461af982-6b97-4fad-a8e8-dd8a2396baaa", "461af982-6b97-4fad-a8e8-dd8a2396baaa", refreshToken) +17:00:49.483 [XNIO-1 task-1] Gw5sKdPFTbe-fW_vVCMk2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.483 [XNIO-1 task-1] Gw5sKdPFTbe-fW_vVCMk2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.483 [XNIO-1 task-1] Gw5sKdPFTbe-fW_vVCMk2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.483 [XNIO-1 task-1] Gw5sKdPFTbe-fW_vVCMk2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.483 [XNIO-1 task-1] Gw5sKdPFTbe-fW_vVCMk2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:49.484 [XNIO-1 task-1] Gw5sKdPFTbe-fW_vVCMk2Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:49.486 [XNIO-1 task-1] 2ymeYRWqTWeoOT0RoQBvjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669 +17:00:49.486 [XNIO-1 task-1] 2ymeYRWqTWeoOT0RoQBvjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.486 [XNIO-1 task-1] 2ymeYRWqTWeoOT0RoQBvjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.486 [XNIO-1 task-1] 2ymeYRWqTWeoOT0RoQBvjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669 +17:00:49.487 [XNIO-1 task-1] 2ymeYRWqTWeoOT0RoQBvjQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9d8b1c74-c6f5-4b5d-8471-15e631e2c669 +17:00:49.490 [XNIO-1 task-1] R8CbOwPWRt6BD1iCP2NJkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.492 [XNIO-1 task-1] R8CbOwPWRt6BD1iCP2NJkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.492 [XNIO-1 task-1] R8CbOwPWRt6BD1iCP2NJkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.492 [XNIO-1 task-1] R8CbOwPWRt6BD1iCP2NJkg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.492 [XNIO-1 task-1] R8CbOwPWRt6BD1iCP2NJkg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.499 [XNIO-1 task-1] NwheTYvVTDSaYlZuZ7eSDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.499 [XNIO-1 task-1] NwheTYvVTDSaYlZuZ7eSDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.499 [XNIO-1 task-1] NwheTYvVTDSaYlZuZ7eSDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.499 [XNIO-1 task-1] NwheTYvVTDSaYlZuZ7eSDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.500 [XNIO-1 task-1] NwheTYvVTDSaYlZuZ7eSDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.503 [XNIO-1 task-1] 6YdOuDLrSkS3Eqs_HVKbWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669, base path is set to: null +17:00:49.504 [XNIO-1 task-1] 6YdOuDLrSkS3Eqs_HVKbWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.504 [XNIO-1 task-1] 6YdOuDLrSkS3Eqs_HVKbWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.504 [XNIO-1 task-1] 6YdOuDLrSkS3Eqs_HVKbWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669, base path is set to: null +17:00:49.504 [XNIO-1 task-1] 6YdOuDLrSkS3Eqs_HVKbWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9d8b1c74-c6f5-4b5d-8471-15e631e2c669", "9d8b1c74-c6f5-4b5d-8471-15e631e2c669", refreshToken) +17:00:49.504 [XNIO-1 task-1] 6YdOuDLrSkS3Eqs_HVKbWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9d8b1c74-c6f5-4b5d-8471-15e631e2c669 is not found.","severity":"ERROR"} +17:00:49.515 [XNIO-1 task-1] IRlJnV4CRnWbBFwxg4CxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.515 [XNIO-1 task-1] IRlJnV4CRnWbBFwxg4CxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.515 [XNIO-1 task-1] IRlJnV4CRnWbBFwxg4CxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +Jun 28, 2024 5:00:49 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +17:00:49.515 [XNIO-1 task-1] IRlJnV4CRnWbBFwxg4CxhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.516 [XNIO-1 task-1] IRlJnV4CRnWbBFwxg4CxhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.520 [XNIO-1 task-1] 15eWiBp_TrO2cmyu5xb0XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +17:00:49.522 [XNIO-1 task-1] 15eWiBp_TrO2cmyu5xb0XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.522 [XNIO-1 task-1] 15eWiBp_TrO2cmyu5xb0XA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:49.522 [XNIO-1 task-1] 15eWiBp_TrO2cmyu5xb0XA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:49.522 [XNIO-1 task-1] 15eWiBp_TrO2cmyu5xb0XA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +17:00:49.527 [XNIO-1 task-1] 4VwIOXtJSKGxvi2WpOecbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.527 [XNIO-1 task-1] 4VwIOXtJSKGxvi2WpOecbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.528 [XNIO-1 task-1] 4VwIOXtJSKGxvi2WpOecbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.528 [XNIO-1 task-1] 4VwIOXtJSKGxvi2WpOecbw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.532 [XNIO-1 task-1] I8JKqX7DSneH-U1AOcknlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +17:00:49.532 [XNIO-1 task-1] I8JKqX7DSneH-U1AOcknlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.532 [XNIO-1 task-1] I8JKqX7DSneH-U1AOcknlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.533 [XNIO-1 task-1] I8JKqX7DSneH-U1AOcknlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9d8b1c74-c6f5-4b5d-8471-15e631e2c669 + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +17:00:49.534 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c4efb6d9-fd47-44f0-b57e-03a4702af67d +17:00:49.534 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c4efb6d9-fd47-44f0-b57e-03a4702af67d +17:00:49.535 [XNIO-1 task-1] aL7jasYTR5CTB2CJeOJPww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +17:00:49.535 [XNIO-1 task-1] aL7jasYTR5CTB2CJeOJPww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token + +17:00:49.535 [XNIO-1 task-1] aL7jasYTR5CTB2CJeOJPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.535 [XNIO-1 task-1] aL7jasYTR5CTB2CJeOJPww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +17:00:49.539 [XNIO-1 task-1] f-A3WQYNT7u0zUYhFSMzQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.539 [XNIO-1 task-1] f-A3WQYNT7u0zUYhFSMzQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +17:00:49.539 [XNIO-1 task-1] f-A3WQYNT7u0zUYhFSMzQw DEBUG com.networknt.schema.TypeValidator debug - validate( "d47cb801-0cae-4905-8632-d8d7e7373902", "d47cb801-0cae-4905-8632-d8d7e7373902", refreshToken) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:49.539 [XNIO-1 task-1] f-A3WQYNT7u0zUYhFSMzQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d47cb801-0cae-4905-8632-d8d7e7373902 + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +17:00:49.542 [XNIO-1 task-1] Qe7g5JtsTgO3FbQwaIQdSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:49.542 [XNIO-1 task-1] Qe7g5JtsTgO3FbQwaIQdSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.542 [XNIO-1 task-1] Qe7g5JtsTgO3FbQwaIQdSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.543 [XNIO-1 task-1] Qe7g5JtsTgO3FbQwaIQdSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.546 [XNIO-1 task-1] 4gTymrVHRuOop7g5tgSDIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.546 [XNIO-1 task-1] 4gTymrVHRuOop7g5tgSDIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.546 [XNIO-1 task-1] 4gTymrVHRuOop7g5tgSDIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.546 [XNIO-1 task-1] 4gTymrVHRuOop7g5tgSDIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.546 [XNIO-1 task-1] 4gTymrVHRuOop7g5tgSDIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.551 [XNIO-1 task-1] mGMMCGqxS4irxVnA1lHqlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.551 [XNIO-1 task-1] mGMMCGqxS4irxVnA1lHqlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.551 [XNIO-1 task-1] mGMMCGqxS4irxVnA1lHqlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.551 [XNIO-1 task-1] mGMMCGqxS4irxVnA1lHqlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.552 [XNIO-1 task-1] mGMMCGqxS4irxVnA1lHqlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.554 [XNIO-1 task-1] vKk5mvfRQ0ObobtYWrladA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.554 [XNIO-1 task-1] vKk5mvfRQ0ObobtYWrladA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.554 [XNIO-1 task-1] vKk5mvfRQ0ObobtYWrladA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.555 [XNIO-1 task-1] vKk5mvfRQ0ObobtYWrladA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.555 [XNIO-1 task-1] vKk5mvfRQ0ObobtYWrladA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.557 [XNIO-1 task-1] Yx1UH5JOQZ2_Y85CXfocYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902, base path is set to: null +17:00:49.557 [XNIO-1 task-1] Yx1UH5JOQZ2_Y85CXfocYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.557 [XNIO-1 task-1] Yx1UH5JOQZ2_Y85CXfocYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.557 [XNIO-1 task-1] Yx1UH5JOQZ2_Y85CXfocYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902, base path is set to: null +17:00:49.557 [XNIO-1 task-1] Yx1UH5JOQZ2_Y85CXfocYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d47cb801-0cae-4905-8632-d8d7e7373902", "d47cb801-0cae-4905-8632-d8d7e7373902", refreshToken) +17:00:49.563 [XNIO-1 task-1] pGKF6qtRTGCjvzi79M8y3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.563 [XNIO-1 task-1] pGKF6qtRTGCjvzi79M8y3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.563 [XNIO-1 task-1] pGKF6qtRTGCjvzi79M8y3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.563 [XNIO-1 task-1] pGKF6qtRTGCjvzi79M8y3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.564 [XNIO-1 task-1] pGKF6qtRTGCjvzi79M8y3w DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.564 [XNIO-1 task-1] pGKF6qtRTGCjvzi79M8y3w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.567 [XNIO-1 task-1] uGjoZ8kgSeKiEOeRHjjw5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.579 [XNIO-1 task-1] uGjoZ8kgSeKiEOeRHjjw5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.580 [XNIO-1 task-1] uGjoZ8kgSeKiEOeRHjjw5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.580 [XNIO-1 task-1] uGjoZ8kgSeKiEOeRHjjw5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.580 [XNIO-1 task-1] uGjoZ8kgSeKiEOeRHjjw5g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d47cb801-0cae-4905-8632-d8d7e7373902 +17:00:49.585 [XNIO-1 task-1] 4yrlY26RQ7qYYx-OpkFr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.585 [XNIO-1 task-1] 4yrlY26RQ7qYYx-OpkFr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.585 [XNIO-1 task-1] 4yrlY26RQ7qYYx-OpkFr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.585 [XNIO-1 task-1] 4yrlY26RQ7qYYx-OpkFr9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.585 [XNIO-1 task-1] 4yrlY26RQ7qYYx-OpkFr9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.589 [XNIO-1 task-1] 3v4O-yiRT_qhyJA-uhi_dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902, base path is set to: null +17:00:49.590 [XNIO-1 task-1] 3v4O-yiRT_qhyJA-uhi_dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.591 [XNIO-1 task-1] 3v4O-yiRT_qhyJA-uhi_dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.591 [XNIO-1 task-1] 3v4O-yiRT_qhyJA-uhi_dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d47cb801-0cae-4905-8632-d8d7e7373902, base path is set to: null +17:00:49.591 [XNIO-1 task-1] 3v4O-yiRT_qhyJA-uhi_dw DEBUG com.networknt.schema.TypeValidator debug - validate( "d47cb801-0cae-4905-8632-d8d7e7373902", "d47cb801-0cae-4905-8632-d8d7e7373902", refreshToken) +17:00:49.605 [XNIO-1 task-1] tg0flo5gTuWxe5AIsjbDAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.605 [XNIO-1 task-1] tg0flo5gTuWxe5AIsjbDAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.605 [XNIO-1 task-1] tg0flo5gTuWxe5AIsjbDAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.606 [XNIO-1 task-1] tg0flo5gTuWxe5AIsjbDAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.606 [XNIO-1 task-1] tg0flo5gTuWxe5AIsjbDAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.614 [XNIO-1 task-1] v95Z59yXRKiZDvVgW6tXDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.614 [XNIO-1 task-1] v95Z59yXRKiZDvVgW6tXDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.614 [XNIO-1 task-1] v95Z59yXRKiZDvVgW6tXDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.614 [XNIO-1 task-1] v95Z59yXRKiZDvVgW6tXDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.615 [XNIO-1 task-1] v95Z59yXRKiZDvVgW6tXDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.619 [XNIO-1 task-1] 1N-163ncRxS-rQEHb1zMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.620 [XNIO-1 task-1] 1N-163ncRxS-rQEHb1zMyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.620 [XNIO-1 task-1] 1N-163ncRxS-rQEHb1zMyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.620 [XNIO-1 task-1] 1N-163ncRxS-rQEHb1zMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.620 [XNIO-1 task-1] 1N-163ncRxS-rQEHb1zMyA DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.620 [XNIO-1 task-1] 1N-163ncRxS-rQEHb1zMyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.624 [XNIO-1 task-1] WW82rdkWTxWf7YRZvnjkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.625 [XNIO-1 task-1] WW82rdkWTxWf7YRZvnjkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.625 [XNIO-1 task-1] WW82rdkWTxWf7YRZvnjkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.625 [XNIO-1 task-1] WW82rdkWTxWf7YRZvnjkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.625 [XNIO-1 task-1] WW82rdkWTxWf7YRZvnjkLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e239e5a-68f1-4852-853c-6a01b52ec284 +17:00:49.628 [XNIO-1 task-1] fjQN6zplRQ-OFvpsovfJ0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.630 [XNIO-1 task-1] fjQN6zplRQ-OFvpsovfJ0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.630 [XNIO-1 task-1] fjQN6zplRQ-OFvpsovfJ0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.630 [XNIO-1 task-1] fjQN6zplRQ-OFvpsovfJ0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e239e5a-68f1-4852-853c-6a01b52ec284, base path is set to: null +17:00:49.631 [XNIO-1 task-1] fjQN6zplRQ-OFvpsovfJ0g DEBUG com.networknt.schema.TypeValidator debug - validate( "9e239e5a-68f1-4852-853c-6a01b52ec284", "9e239e5a-68f1-4852-853c-6a01b52ec284", refreshToken) +17:00:49.631 [XNIO-1 task-1] fjQN6zplRQ-OFvpsovfJ0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e239e5a-68f1-4852-853c-6a01b52ec284 is not found.","severity":"ERROR"} +17:00:49.634 [XNIO-1 task-1] 9wdZEDoDSXKRytrtnjSxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.634 [XNIO-1 task-1] 9wdZEDoDSXKRytrtnjSxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.634 [XNIO-1 task-1] 9wdZEDoDSXKRytrtnjSxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.636 [XNIO-1 task-1] 9wdZEDoDSXKRytrtnjSxdA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.639 [XNIO-1 task-1] CywjorpHQCqgV_GSMVMlMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.640 [XNIO-1 task-1] CywjorpHQCqgV_GSMVMlMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.640 [XNIO-1 task-1] CywjorpHQCqgV_GSMVMlMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.640 [XNIO-1 task-1] CywjorpHQCqgV_GSMVMlMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.642 [XNIO-1 task-1] CywjorpHQCqgV_GSMVMlMA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.662 [XNIO-1 task-1] dWU9KDZISYK_-1O9Lg3A8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.662 [XNIO-1 task-1] dWU9KDZISYK_-1O9Lg3A8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.662 [XNIO-1 task-1] dWU9KDZISYK_-1O9Lg3A8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.662 [XNIO-1 task-1] dWU9KDZISYK_-1O9Lg3A8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.663 [XNIO-1 task-1] dWU9KDZISYK_-1O9Lg3A8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.672 [XNIO-1 task-1] z7z5BBUzSE6eqG8iTKxnfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.672 [XNIO-1 task-1] z7z5BBUzSE6eqG8iTKxnfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.673 [XNIO-1 task-1] z7z5BBUzSE6eqG8iTKxnfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.673 [XNIO-1 task-1] z7z5BBUzSE6eqG8iTKxnfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.673 [XNIO-1 task-1] z7z5BBUzSE6eqG8iTKxnfw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.687 [XNIO-1 task-1] lDC2a4BkS-qmxewHPhaREg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.687 [XNIO-1 task-1] lDC2a4BkS-qmxewHPhaREg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.687 [XNIO-1 task-1] lDC2a4BkS-qmxewHPhaREg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.688 [XNIO-1 task-1] lDC2a4BkS-qmxewHPhaREg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.688 [XNIO-1 task-1] lDC2a4BkS-qmxewHPhaREg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.694 [XNIO-1 task-1] vSbPc9EeSp2789_sHPSqgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b685bd47-0491-48e5-a091-060b7d6e94a6, base path is set to: null +17:00:49.694 [XNIO-1 task-1] vSbPc9EeSp2789_sHPSqgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.694 [XNIO-1 task-1] vSbPc9EeSp2789_sHPSqgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.695 [XNIO-1 task-1] vSbPc9EeSp2789_sHPSqgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b685bd47-0491-48e5-a091-060b7d6e94a6, base path is set to: null +17:00:49.695 [XNIO-1 task-1] vSbPc9EeSp2789_sHPSqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "b685bd47-0491-48e5-a091-060b7d6e94a6", "b685bd47-0491-48e5-a091-060b7d6e94a6", refreshToken) +17:00:49.698 [XNIO-1 task-1] vSbPc9EeSp2789_sHPSqgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b685bd47-0491-48e5-a091-060b7d6e94a6 is not found.","severity":"ERROR"} +17:00:49.702 [XNIO-1 task-1] DujKZYBwRJ6iHa-V8c_JOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.702 [XNIO-1 task-1] DujKZYBwRJ6iHa-V8c_JOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.702 [XNIO-1 task-1] DujKZYBwRJ6iHa-V8c_JOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.703 [XNIO-1 task-1] DujKZYBwRJ6iHa-V8c_JOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.703 [XNIO-1 task-1] DujKZYBwRJ6iHa-V8c_JOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.708 [XNIO-1 task-1] LCZ8nqfbTgOylstQxmfmJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b685bd47-0491-48e5-a091-060b7d6e94a6, base path is set to: null +17:00:49.709 [XNIO-1 task-1] LCZ8nqfbTgOylstQxmfmJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.709 [XNIO-1 task-1] LCZ8nqfbTgOylstQxmfmJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.709 [XNIO-1 task-1] LCZ8nqfbTgOylstQxmfmJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b685bd47-0491-48e5-a091-060b7d6e94a6, base path is set to: null +17:00:49.710 [XNIO-1 task-1] LCZ8nqfbTgOylstQxmfmJA DEBUG com.networknt.schema.TypeValidator debug - validate( "b685bd47-0491-48e5-a091-060b7d6e94a6", "b685bd47-0491-48e5-a091-060b7d6e94a6", refreshToken) +17:00:49.710 [XNIO-1 task-1] LCZ8nqfbTgOylstQxmfmJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b685bd47-0491-48e5-a091-060b7d6e94a6 is not found.","severity":"ERROR"} +17:00:49.714 [XNIO-1 task-1] HgpEbm83REGkq4p4H3WbUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.714 [XNIO-1 task-1] HgpEbm83REGkq4p4H3WbUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.714 [XNIO-1 task-1] HgpEbm83REGkq4p4H3WbUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.714 [XNIO-1 task-1] HgpEbm83REGkq4p4H3WbUw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.725 [XNIO-1 task-1] qYhAd1KsS-ykPOgJM1p3UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:49.725 [XNIO-1 task-1] qYhAd1KsS-ykPOgJM1p3UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.725 [XNIO-1 task-1] qYhAd1KsS-ykPOgJM1p3UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.725 [XNIO-1 task-1] qYhAd1KsS-ykPOgJM1p3UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:49.725 [XNIO-1 task-1] qYhAd1KsS-ykPOgJM1p3UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:49.725 [XNIO-1 task-1] qYhAd1KsS-ykPOgJM1p3UQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:49.732 [XNIO-1 task-1] utb9LVa0QQqA7s2aZmntEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.732 [XNIO-1 task-1] utb9LVa0QQqA7s2aZmntEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.732 [XNIO-1 task-1] utb9LVa0QQqA7s2aZmntEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.732 [XNIO-1 task-1] utb9LVa0QQqA7s2aZmntEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.732 [XNIO-1 task-1] utb9LVa0QQqA7s2aZmntEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.733 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d9bed560-ea4c-47ae-b920-683e0fa594b0 +17:00:49.735 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d9bed560-ea4c-47ae-b920-683e0fa594b0 +17:00:49.736 [XNIO-1 task-1] 58GRFGzjS6O8nWoLEgJy2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.736 [XNIO-1 task-1] 58GRFGzjS6O8nWoLEgJy2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.736 [XNIO-1 task-1] 58GRFGzjS6O8nWoLEgJy2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.736 [XNIO-1 task-1] 58GRFGzjS6O8nWoLEgJy2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.736 [XNIO-1 task-1] 58GRFGzjS6O8nWoLEgJy2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:49.742 [XNIO-1 task-1] SI9mB4uyReGSrWUZnYgsgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611, base path is set to: null +17:00:49.742 [XNIO-1 task-1] SI9mB4uyReGSrWUZnYgsgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.742 [XNIO-1 task-1] SI9mB4uyReGSrWUZnYgsgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.742 [XNIO-1 task-1] SI9mB4uyReGSrWUZnYgsgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611, base path is set to: null +17:00:49.742 [XNIO-1 task-1] SI9mB4uyReGSrWUZnYgsgA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4efa7b-5d43-41dd-9df2-7766b3305611", "dd4efa7b-5d43-41dd-9df2-7766b3305611", refreshToken) +17:00:49.743 [XNIO-1 task-1] SI9mB4uyReGSrWUZnYgsgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dd4efa7b-5d43-41dd-9df2-7766b3305611 is not found.","severity":"ERROR"} +17:00:49.747 [XNIO-1 task-1] Aa65farjSsOeMPOqsXt2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.747 [XNIO-1 task-1] Aa65farjSsOeMPOqsXt2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.747 [XNIO-1 task-1] Aa65farjSsOeMPOqsXt2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.748 [XNIO-1 task-1] Aa65farjSsOeMPOqsXt2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.748 [XNIO-1 task-1] Aa65farjSsOeMPOqsXt2rg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.754 [hz._hzInstance_1_dev.partition-operation.thread-12] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:49.760 [XNIO-1 task-1] eqXejipsR5mI-a2unj48Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611 +17:00:49.760 [XNIO-1 task-1] eqXejipsR5mI-a2unj48Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.760 [XNIO-1 task-1] eqXejipsR5mI-a2unj48Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.761 [XNIO-1 task-1] eqXejipsR5mI-a2unj48Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dd4efa7b-5d43-41dd-9df2-7766b3305611 +17:00:49.761 [XNIO-1 task-1] eqXejipsR5mI-a2unj48Cg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dd4efa7b-5d43-41dd-9df2-7766b3305611 +17:00:49.765 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3968e65b-2ced-448e-80be-a28dc8aa4ec4 +17:00:49.767 [XNIO-1 task-1] AvlZDOV0QC-3WkHVM-j_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.767 [XNIO-1 task-1] AvlZDOV0QC-3WkHVM-j_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.768 [XNIO-1 task-1] AvlZDOV0QC-3WkHVM-j_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.768 [XNIO-1 task-1] AvlZDOV0QC-3WkHVM-j_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.768 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:49.783 [XNIO-1 task-1] xCFgDzpVQy-k1zF4iynRzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.783 [XNIO-1 task-1] xCFgDzpVQy-k1zF4iynRzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.783 [XNIO-1 task-1] xCFgDzpVQy-k1zF4iynRzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.783 [XNIO-1 task-1] xCFgDzpVQy-k1zF4iynRzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.784 [XNIO-1 task-1] xCFgDzpVQy-k1zF4iynRzA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.791 [XNIO-1 task-1] nDIO3Zg2QICxo2GhCvXexQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.791 [XNIO-1 task-1] nDIO3Zg2QICxo2GhCvXexQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.791 [XNIO-1 task-1] nDIO3Zg2QICxo2GhCvXexQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.791 [XNIO-1 task-1] nDIO3Zg2QICxo2GhCvXexQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.791 [XNIO-1 task-1] nDIO3Zg2QICxo2GhCvXexQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.799 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2d1475e8 +17:00:49.804 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2d1475e8 +17:00:49.809 [XNIO-1 task-1] 90mi68OsSeqhMSnCoAM0wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.809 [XNIO-1 task-1] 90mi68OsSeqhMSnCoAM0wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.809 [XNIO-1 task-1] 90mi68OsSeqhMSnCoAM0wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.810 [XNIO-1 task-1] 90mi68OsSeqhMSnCoAM0wg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.823 [XNIO-1 task-1] arFLOWClS7CgqFvx8iT1CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:49.823 [XNIO-1 task-1] arFLOWClS7CgqFvx8iT1CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.823 [XNIO-1 task-1] arFLOWClS7CgqFvx8iT1CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.823 [XNIO-1 task-1] arFLOWClS7CgqFvx8iT1CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:49.823 [XNIO-1 task-1] arFLOWClS7CgqFvx8iT1CA DEBUG com.networknt.schema.TypeValidator debug - validate( "01077ff8-2767-4267-9c14-82993af74aa4", "01077ff8-2767-4267-9c14-82993af74aa4", refreshToken) +17:00:49.824 [XNIO-1 task-1] arFLOWClS7CgqFvx8iT1CA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01077ff8-2767-4267-9c14-82993af74aa4 is not found.","severity":"ERROR"} +17:00:49.829 [XNIO-1 task-1] 2WLTIBpTTN-B9jzyhln8PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.829 [XNIO-1 task-1] 2WLTIBpTTN-B9jzyhln8PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.829 [XNIO-1 task-1] 2WLTIBpTTN-B9jzyhln8PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.829 [XNIO-1 task-1] 2WLTIBpTTN-B9jzyhln8PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.829 [XNIO-1 task-1] 2WLTIBpTTN-B9jzyhln8PQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.829 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bebd9d3-c02a-41c2-8733-6ca50fe3fd49 +17:00:49.831 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bebd9d3-c02a-41c2-8733-6ca50fe3fd49 +17:00:49.833 [XNIO-1 task-1] jj3BlujyS8inRLSkeA7rOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.833 [XNIO-1 task-1] jj3BlujyS8inRLSkeA7rOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.833 [XNIO-1 task-1] jj3BlujyS8inRLSkeA7rOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.834 [XNIO-1 task-1] jj3BlujyS8inRLSkeA7rOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.835 [XNIO-1 task-1] jj3BlujyS8inRLSkeA7rOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.839 [XNIO-1 task-1] 0rD3dICsQBiPJM0ymVJUtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.839 [XNIO-1 task-1] 0rD3dICsQBiPJM0ymVJUtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.839 [XNIO-1 task-1] 0rD3dICsQBiPJM0ymVJUtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.840 [XNIO-1 task-1] 0rD3dICsQBiPJM0ymVJUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.840 [XNIO-1 task-1] 0rD3dICsQBiPJM0ymVJUtw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.846 [XNIO-1 task-1] O-ZydtsATxuyi3Hufe9r3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.846 [XNIO-1 task-1] O-ZydtsATxuyi3Hufe9r3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.846 [XNIO-1 task-1] O-ZydtsATxuyi3Hufe9r3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.847 [XNIO-1 task-1] O-ZydtsATxuyi3Hufe9r3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.847 [XNIO-1 task-1] O-ZydtsATxuyi3Hufe9r3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 01077ff8-2767-4267-9c14-82993af74aa4 +17:00:49.851 [XNIO-1 task-1] 4XZBHyi1QKaokwQC6obvMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.851 [XNIO-1 task-1] 4XZBHyi1QKaokwQC6obvMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.851 [XNIO-1 task-1] 4XZBHyi1QKaokwQC6obvMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.851 [XNIO-1 task-1] 4XZBHyi1QKaokwQC6obvMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.851 [XNIO-1 task-1] 4XZBHyi1QKaokwQC6obvMg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:49.852 [XNIO-1 task-1] 4XZBHyi1QKaokwQC6obvMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:49.857 [XNIO-1 task-1] QPjvB10ZTg-5carRp6tKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.857 [XNIO-1 task-1] QPjvB10ZTg-5carRp6tKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.857 [XNIO-1 task-1] QPjvB10ZTg-5carRp6tKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.857 [XNIO-1 task-1] QPjvB10ZTg-5carRp6tKfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.858 [XNIO-1 task-1] QPjvB10ZTg-5carRp6tKfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.867 [XNIO-1 task-1] BjrrT7NhShi4k-paGtvOXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.868 [XNIO-1 task-1] BjrrT7NhShi4k-paGtvOXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.868 [XNIO-1 task-1] BjrrT7NhShi4k-paGtvOXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.868 [XNIO-1 task-1] BjrrT7NhShi4k-paGtvOXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.868 [XNIO-1 task-1] BjrrT7NhShi4k-paGtvOXA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:49.868 [XNIO-1 task-1] BjrrT7NhShi4k-paGtvOXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:49.873 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2d1475e8 +17:00:49.879 [XNIO-1 task-1] LhCJM-zzQhODsiFracji6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.879 [XNIO-1 task-1] LhCJM-zzQhODsiFracji6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.879 [XNIO-1 task-1] LhCJM-zzQhODsiFracji6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.879 [XNIO-1 task-1] LhCJM-zzQhODsiFracji6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.879 [XNIO-1 task-1] LhCJM-zzQhODsiFracji6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.893 [XNIO-1 task-1] R76yL-52TyeUEJ2YWI3Kmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.893 [XNIO-1 task-1] R76yL-52TyeUEJ2YWI3Kmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.893 [XNIO-1 task-1] R76yL-52TyeUEJ2YWI3Kmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.893 [XNIO-1 task-1] R76yL-52TyeUEJ2YWI3Kmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.894 [XNIO-1 task-1] R76yL-52TyeUEJ2YWI3Kmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.897 [XNIO-1 task-1] -s-bj0q7QkyhrMuG1DvIFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa, base path is set to: null +17:00:49.897 [XNIO-1 task-1] -s-bj0q7QkyhrMuG1DvIFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.897 [XNIO-1 task-1] -s-bj0q7QkyhrMuG1DvIFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.897 [XNIO-1 task-1] -s-bj0q7QkyhrMuG1DvIFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa, base path is set to: null +17:00:49.897 [XNIO-1 task-1] -s-bj0q7QkyhrMuG1DvIFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "461af982-6b97-4fad-a8e8-dd8a2396baaa", "461af982-6b97-4fad-a8e8-dd8a2396baaa", refreshToken) +17:00:49.905 [XNIO-1 task-1] -s-bj0q7QkyhrMuG1DvIFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 461af982-6b97-4fad-a8e8-dd8a2396baaa is not found.","severity":"ERROR"} +17:00:49.912 [XNIO-1 task-1] QgSs66rzSgi9ULpC1hLeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.912 [XNIO-1 task-1] QgSs66rzSgi9ULpC1hLeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.912 [XNIO-1 task-1] QgSs66rzSgi9ULpC1hLeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.912 [XNIO-1 task-1] QgSs66rzSgi9ULpC1hLeEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.913 [XNIO-1 task-1] QgSs66rzSgi9ULpC1hLeEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.916 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8bc80eea-3b1b-4553-9487-8ed32904f4f6 +17:00:49.917 [XNIO-1 task-1] 5v9g-j7UQjO3vIoGAgA_iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.917 [XNIO-1 task-1] 5v9g-j7UQjO3vIoGAgA_iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.917 [XNIO-1 task-1] 5v9g-j7UQjO3vIoGAgA_iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.917 [XNIO-1 task-1] 5v9g-j7UQjO3vIoGAgA_iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.917 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8bc80eea-3b1b-4553-9487-8ed32904f4f6 +17:00:49.917 [XNIO-1 task-1] 5v9g-j7UQjO3vIoGAgA_iQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.921 [XNIO-1 task-1] qKeBHXQnTcievzEICdQllg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.921 [XNIO-1 task-1] qKeBHXQnTcievzEICdQllg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.921 [XNIO-1 task-1] qKeBHXQnTcievzEICdQllg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.921 [XNIO-1 task-1] qKeBHXQnTcievzEICdQllg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.921 [XNIO-1 task-1] qKeBHXQnTcievzEICdQllg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:49.921 [XNIO-1 task-1] qKeBHXQnTcievzEICdQllg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +17:00:49.924 [XNIO-1 task-1] DFSva3SPTvCfFfIiNYJwqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.924 [XNIO-1 task-1] DFSva3SPTvCfFfIiNYJwqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.924 [XNIO-1 task-1] DFSva3SPTvCfFfIiNYJwqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.924 [XNIO-1 task-1] DFSva3SPTvCfFfIiNYJwqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:49.933 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8bc80eea-3b1b-4553-9487-8ed32904f4f6 +17:00:49.935 [XNIO-1 task-1] xkh1FpQCS9KOkR-LTNabuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.935 [XNIO-1 task-1] xkh1FpQCS9KOkR-LTNabuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.935 [XNIO-1 task-1] xkh1FpQCS9KOkR-LTNabuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.936 [XNIO-1 task-1] xkh1FpQCS9KOkR-LTNabuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.936 [XNIO-1 task-1] xkh1FpQCS9KOkR-LTNabuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 461af982-6b97-4fad-a8e8-dd8a2396baaa +17:00:49.938 [XNIO-1 task-1] 0Qen2J1EQJq9ZwzzwrLmJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.938 [XNIO-1 task-1] 0Qen2J1EQJq9ZwzzwrLmJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.938 [XNIO-1 task-1] 0Qen2J1EQJq9ZwzzwrLmJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:49.939 [XNIO-1 task-1] 0Qen2J1EQJq9ZwzzwrLmJg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.941 [XNIO-1 task-1] 0Qen2J1EQJq9ZwzzwrLmJg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.946 [XNIO-1 task-1] ydPjWFB7SzSE9Qrh7H4_dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.946 [XNIO-1 task-1] ydPjWFB7SzSE9Qrh7H4_dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.946 [XNIO-1 task-1] ydPjWFB7SzSE9Qrh7H4_dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.946 [XNIO-1 task-1] ydPjWFB7SzSE9Qrh7H4_dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.946 [XNIO-1 task-1] ydPjWFB7SzSE9Qrh7H4_dg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.951 [XNIO-1 task-1] lxtn-AmlSKe0Gh1HlCnMrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa, base path is set to: null +Jun 28, 2024 5:00:50 PM com.hazelcast.map.impl.operation.DeleteOperation +17:00:49.951 [XNIO-1 task-1] lxtn-AmlSKe0Gh1HlCnMrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.951 [XNIO-1 task-1] lxtn-AmlSKe0Gh1HlCnMrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.951 [XNIO-1 task-1] lxtn-AmlSKe0Gh1HlCnMrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +17:00:49.952 [XNIO-1 task-1] lxtn-AmlSKe0Gh1HlCnMrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/461af982-6b97-4fad-a8e8-dd8a2396baaa, base path is set to: null +17:00:49.952 [XNIO-1 task-1] lxtn-AmlSKe0Gh1HlCnMrw DEBUG com.networknt.schema.TypeValidator debug - validate( "461af982-6b97-4fad-a8e8-dd8a2396baaa", "461af982-6b97-4fad-a8e8-dd8a2396baaa", refreshToken) +17:00:49.952 [XNIO-1 task-1] lxtn-AmlSKe0Gh1HlCnMrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 461af982-6b97-4fad-a8e8-dd8a2396baaa is not found.","severity":"ERROR"} +17:00:49.954 [XNIO-1 task-1] Kl-8VXvxR4aCzMbiulH84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +17:00:49.954 [XNIO-1 task-1] Kl-8VXvxR4aCzMbiulH84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.955 [XNIO-1 task-1] Kl-8VXvxR4aCzMbiulH84w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:49.955 [XNIO-1 task-1] Kl-8VXvxR4aCzMbiulH84w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +17:00:49.955 [XNIO-1 task-1] Kl-8VXvxR4aCzMbiulH84w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:49.961 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null + +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:49.962 [XNIO-1 task-1] E_bSffUBSS6Hn4jATrTv2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:49.973 [XNIO-1 task-1] 8a5AL4yiQRS3vlHewma5TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c4efb6d9-fd47-44f0-b57e-03a4702af67d, base path is set to: null +17:00:49.973 [XNIO-1 task-1] 8a5AL4yiQRS3vlHewma5TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.973 [XNIO-1 task-1] 8a5AL4yiQRS3vlHewma5TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.973 [XNIO-1 task-1] 8a5AL4yiQRS3vlHewma5TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c4efb6d9-fd47-44f0-b57e-03a4702af67d, base path is set to: null +17:00:49.974 [XNIO-1 task-1] 8a5AL4yiQRS3vlHewma5TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c4efb6d9-fd47-44f0-b57e-03a4702af67d", "c4efb6d9-fd47-44f0-b57e-03a4702af67d", refreshToken) +17:00:49.974 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c4efb6d9-fd47-44f0-b57e-03a4702af67d +17:00:49.987 [XNIO-1 task-1] LYlclV-8SfWVj0729RkTeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d933140-dbda-4392-8631-feba9dd5a69c, base path is set to: null +17:00:49.987 [XNIO-1 task-1] LYlclV-8SfWVj0729RkTeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:49.987 [XNIO-1 task-1] LYlclV-8SfWVj0729RkTeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:49.987 [XNIO-1 task-1] LYlclV-8SfWVj0729RkTeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d933140-dbda-4392-8631-feba9dd5a69c, base path is set to: null +17:00:49.988 [XNIO-1 task-1] LYlclV-8SfWVj0729RkTeA DEBUG com.networknt.schema.TypeValidator debug - validate( "5d933140-dbda-4392-8631-feba9dd5a69c", "5d933140-dbda-4392-8631-feba9dd5a69c", refreshToken) +17:00:50.005 [XNIO-1 task-1] pFrjv204RDq5BDX-CXPIpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c4efb6d9-fd47-44f0-b57e-03a4702af67d, base path is set to: null +17:00:50.006 [XNIO-1 task-1] pFrjv204RDq5BDX-CXPIpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.006 [XNIO-1 task-1] pFrjv204RDq5BDX-CXPIpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.006 [XNIO-1 task-1] pFrjv204RDq5BDX-CXPIpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c4efb6d9-fd47-44f0-b57e-03a4702af67d, base path is set to: null +17:00:50.006 [XNIO-1 task-1] pFrjv204RDq5BDX-CXPIpw DEBUG com.networknt.schema.TypeValidator debug - validate( "c4efb6d9-fd47-44f0-b57e-03a4702af67d", "c4efb6d9-fd47-44f0-b57e-03a4702af67d", refreshToken) +17:00:50.007 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c4efb6d9-fd47-44f0-b57e-03a4702af67d +17:00:50.014 [XNIO-1 task-1] 43VTnU5uT26ks5Z4tVFjHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:50.014 [XNIO-1 task-1] 43VTnU5uT26ks5Z4tVFjHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.014 [XNIO-1 task-1] 43VTnU5uT26ks5Z4tVFjHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.014 [XNIO-1 task-1] 43VTnU5uT26ks5Z4tVFjHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:50.014 [XNIO-1 task-1] 43VTnU5uT26ks5Z4tVFjHA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:50.014 [XNIO-1 task-1] 43VTnU5uT26ks5Z4tVFjHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:50.018 [XNIO-1 task-1] CjlvUpDLSL616LIaFNxOTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.018 [XNIO-1 task-1] CjlvUpDLSL616LIaFNxOTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.018 [XNIO-1 task-1] CjlvUpDLSL616LIaFNxOTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.018 [XNIO-1 task-1] CjlvUpDLSL616LIaFNxOTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.018 [XNIO-1 task-1] CjlvUpDLSL616LIaFNxOTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.029 [XNIO-1 task-1] cSRBgxjTTD2F1m9EiXk2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5d933140-dbda-4392-8631-feba9dd5a69c +17:00:50.029 [XNIO-1 task-1] cSRBgxjTTD2F1m9EiXk2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.029 [XNIO-1 task-1] cSRBgxjTTD2F1m9EiXk2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.029 [XNIO-1 task-1] cSRBgxjTTD2F1m9EiXk2Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5d933140-dbda-4392-8631-feba9dd5a69c +17:00:50.030 [XNIO-1 task-1] cSRBgxjTTD2F1m9EiXk2Aw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5d933140-dbda-4392-8631-feba9dd5a69c +17:00:50.041 [XNIO-1 task-1] FJwS_wqaQL-KGebLNVEhaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c4efb6d9-fd47-44f0-b57e-03a4702af67d, base path is set to: null +17:00:50.042 [XNIO-1 task-1] FJwS_wqaQL-KGebLNVEhaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.042 [XNIO-1 task-1] FJwS_wqaQL-KGebLNVEhaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.042 [XNIO-1 task-1] FJwS_wqaQL-KGebLNVEhaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c4efb6d9-fd47-44f0-b57e-03a4702af67d, base path is set to: null +17:00:50.042 [XNIO-1 task-1] FJwS_wqaQL-KGebLNVEhaA DEBUG com.networknt.schema.TypeValidator debug - validate( "c4efb6d9-fd47-44f0-b57e-03a4702af67d", "c4efb6d9-fd47-44f0-b57e-03a4702af67d", refreshToken) +17:00:50.042 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c4efb6d9-fd47-44f0-b57e-03a4702af67d +17:00:50.046 [XNIO-1 task-1] IA_dHlC6QXWGGIH2gnUL8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:50.047 [XNIO-1 task-1] IA_dHlC6QXWGGIH2gnUL8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.047 [XNIO-1 task-1] IA_dHlC6QXWGGIH2gnUL8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.047 [XNIO-1 task-1] IA_dHlC6QXWGGIH2gnUL8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:50.047 [XNIO-1 task-1] IA_dHlC6QXWGGIH2gnUL8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:50.047 [XNIO-1 task-1] IA_dHlC6QXWGGIH2gnUL8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:50.051 [XNIO-1 task-1] vbcdr4PwQgmHdsnFrwq0EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.051 [XNIO-1 task-1] vbcdr4PwQgmHdsnFrwq0EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.051 [XNIO-1 task-1] vbcdr4PwQgmHdsnFrwq0EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.051 [XNIO-1 task-1] vbcdr4PwQgmHdsnFrwq0EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.051 [XNIO-1 task-1] vbcdr4PwQgmHdsnFrwq0EQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.057 [XNIO-1 task-1] QPDZ1x0MTuOHKgx0d0GqpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d933140-dbda-4392-8631-feba9dd5a69c, base path is set to: null +17:00:50.057 [XNIO-1 task-1] QPDZ1x0MTuOHKgx0d0GqpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.057 [XNIO-1 task-1] QPDZ1x0MTuOHKgx0d0GqpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.057 [XNIO-1 task-1] QPDZ1x0MTuOHKgx0d0GqpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d933140-dbda-4392-8631-feba9dd5a69c, base path is set to: null +17:00:50.057 [XNIO-1 task-1] QPDZ1x0MTuOHKgx0d0GqpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5d933140-dbda-4392-8631-feba9dd5a69c +17:00:50.057 [XNIO-1 task-1] QPDZ1x0MTuOHKgx0d0GqpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5d933140-dbda-4392-8631-feba9dd5a69c", "5d933140-dbda-4392-8631-feba9dd5a69c", refreshToken) +17:00:50.058 [XNIO-1 task-1] QPDZ1x0MTuOHKgx0d0GqpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5d933140-dbda-4392-8631-feba9dd5a69c +17:00:50.062 [XNIO-1 task-1] jbh0aMKzRZe_NKTVZrWdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.062 [XNIO-1 task-1] jbh0aMKzRZe_NKTVZrWdmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.062 [XNIO-1 task-1] jbh0aMKzRZe_NKTVZrWdmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.062 [XNIO-1 task-1] jbh0aMKzRZe_NKTVZrWdmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.062 [XNIO-1 task-1] jbh0aMKzRZe_NKTVZrWdmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.062 [XNIO-1 task-1] jbh0aMKzRZe_NKTVZrWdmg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +17:00:50.070 [XNIO-1 task-1] 0nN9z4qMS--4ivVOKglOPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +17:00:50.070 [XNIO-1 task-1] 0nN9z4qMS--4ivVOKglOPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.070 [XNIO-1 task-1] 0nN9z4qMS--4ivVOKglOPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.070 [XNIO-1 task-1] 0nN9z4qMS--4ivVOKglOPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.071 [XNIO-1 task-1] 0nN9z4qMS--4ivVOKglOPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:50.071 [XNIO-1 task-1] 0nN9z4qMS--4ivVOKglOPw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b, base path is set to: null +17:00:50.075 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b979207-4e62-4451-a2d1-aacb18944a3b +17:00:50.076 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b979207-4e62-4451-a2d1-aacb18944a3b", "4b979207-4e62-4451-a2d1-aacb18944a3b", refreshToken) +17:00:50.076 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4b979207-4e62-4451-a2d1-aacb18944a3b + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:50.076 [XNIO-1 task-1] EShbdeVwR36KJRz7p4JLvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b979207-4e62-4451-a2d1-aacb18944a3b is not found.","severity":"ERROR"} +17:00:50.080 [XNIO-1 task-1] 4JrK2g-HSaW6ZGoP2aJo3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.080 [XNIO-1 task-1] 4JrK2g-HSaW6ZGoP2aJo3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.080 [XNIO-1 task-1] 4JrK2g-HSaW6ZGoP2aJo3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.080 [XNIO-1 task-1] 4JrK2g-HSaW6ZGoP2aJo3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.080 [XNIO-1 task-1] 4JrK2g-HSaW6ZGoP2aJo3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 80d32fe4-b544-44c9-8371-2e4850fe3f9b +17:00:50.083 [XNIO-1 task-1] uAodT71jRMG7_goGNDCPpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.084 [XNIO-1 task-1] uAodT71jRMG7_goGNDCPpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.084 [XNIO-1 task-1] uAodT71jRMG7_goGNDCPpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.084 [XNIO-1 task-1] uAodT71jRMG7_goGNDCPpg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.084 [XNIO-1 task-1] uAodT71jRMG7_goGNDCPpg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.088 [XNIO-1 task-1] 8cTrSUSQRKKhAJRkomb1Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1647cc94-2ef3-4083-8630-42d246a0b09c, base path is set to: null +17:00:50.088 [XNIO-1 task-1] 8cTrSUSQRKKhAJRkomb1Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.088 [XNIO-1 task-1] 8cTrSUSQRKKhAJRkomb1Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.089 [XNIO-1 task-1] 8cTrSUSQRKKhAJRkomb1Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1647cc94-2ef3-4083-8630-42d246a0b09c, base path is set to: null +17:00:50.089 [XNIO-1 task-1] 8cTrSUSQRKKhAJRkomb1Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1647cc94-2ef3-4083-8630-42d246a0b09c", "1647cc94-2ef3-4083-8630-42d246a0b09c", refreshToken) +17:00:50.090 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:89f174b3-7415-4276-bcf2-6038a691e002 +17:00:50.091 [XNIO-1 task-1] 8cTrSUSQRKKhAJRkomb1Kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1647cc94-2ef3-4083-8630-42d246a0b09c is not found.","severity":"ERROR"} +17:00:50.098 [XNIO-1 task-1] gv8LBTkNQrmIaxsQRucmwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.098 [XNIO-1 task-1] gv8LBTkNQrmIaxsQRucmwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.098 [XNIO-1 task-1] gv8LBTkNQrmIaxsQRucmwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.098 [XNIO-1 task-1] gv8LBTkNQrmIaxsQRucmwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +Jun 28, 2024 5:00:50 PM com.hazelcast.map.impl.operation.DeleteOperation +17:00:50.099 [XNIO-1 task-1] gv8LBTkNQrmIaxsQRucmwQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:50.103 [XNIO-1 task-1] 0amoi5PHQ3OziGiRdgOETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:50.114 [XNIO-1 task-1] zeI0qRIcScGcu9Ep7IW1Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +17:00:50.114 [XNIO-1 task-1] zeI0qRIcScGcu9Ep7IW1Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.114 [XNIO-1 task-1] zeI0qRIcScGcu9Ep7IW1Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.114 [XNIO-1 task-1] zeI0qRIcScGcu9Ep7IW1Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:50.114 [XNIO-1 task-1] zeI0qRIcScGcu9Ep7IW1Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +17:00:50.114 [XNIO-1 task-1] zeI0qRIcScGcu9Ep7IW1Lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:50.122 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:50.122 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.123 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.123 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.123 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + +17:00:50.123 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.123 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.123 [XNIO-1 task-1] Q0bKvwMoQMCcEEqz1mT91A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.127 [XNIO-1 task-1] Hn3Ip5HiT2-2hCzjIedVAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.127 [XNIO-1 task-1] Hn3Ip5HiT2-2hCzjIedVAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.128 [XNIO-1 task-1] Hn3Ip5HiT2-2hCzjIedVAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.128 [XNIO-1 task-1] Hn3Ip5HiT2-2hCzjIedVAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.128 [XNIO-1 task-1] Hn3Ip5HiT2-2hCzjIedVAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.134 [XNIO-1 task-1] uAtgg0ltTe24YdZIXtB-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.135 [XNIO-1 task-1] uAtgg0ltTe24YdZIXtB-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.135 [XNIO-1 task-1] uAtgg0ltTe24YdZIXtB-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.135 [XNIO-1 task-1] uAtgg0ltTe24YdZIXtB-vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.135 [XNIO-1 task-1] uAtgg0ltTe24YdZIXtB-vA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.139 [XNIO-1 task-1] BqN68g3QRZu2MjVw96ia3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:50.139 [XNIO-1 task-1] BqN68g3QRZu2MjVw96ia3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.139 [XNIO-1 task-1] BqN68g3QRZu2MjVw96ia3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.139 [XNIO-1 task-1] BqN68g3QRZu2MjVw96ia3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3, base path is set to: null +17:00:50.140 [XNIO-1 task-1] BqN68g3QRZu2MjVw96ia3A DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", "e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3", refreshToken) +17:00:50.140 [XNIO-1 task-1] BqN68g3QRZu2MjVw96ia3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 is not found.","severity":"ERROR"} +17:00:50.143 [XNIO-1 task-1] C54qbqT2QtCT1CxDdOxkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.144 [XNIO-1 task-1] C54qbqT2QtCT1CxDdOxkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.144 [XNIO-1 task-1] C54qbqT2QtCT1CxDdOxkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.144 [XNIO-1 task-1] C54qbqT2QtCT1CxDdOxkXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.144 [XNIO-1 task-1] C54qbqT2QtCT1CxDdOxkXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.150 [XNIO-1 task-1] o-jFPeO1TIyR9dGHhv3pfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.151 [XNIO-1 task-1] o-jFPeO1TIyR9dGHhv3pfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.151 [XNIO-1 task-1] o-jFPeO1TIyR9dGHhv3pfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.151 [XNIO-1 task-1] o-jFPeO1TIyR9dGHhv3pfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.151 [XNIO-1 task-1] o-jFPeO1TIyR9dGHhv3pfg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.159 [XNIO-1 task-1] PRfPkNnqTvunPYhJoeVx7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.159 [XNIO-1 task-1] PRfPkNnqTvunPYhJoeVx7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.159 [XNIO-1 task-1] PRfPkNnqTvunPYhJoeVx7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.159 [XNIO-1 task-1] PRfPkNnqTvunPYhJoeVx7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.160 [XNIO-1 task-1] PRfPkNnqTvunPYhJoeVx7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.160 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2ce3ba5a-172d-49bd-aab0-fc0631b20eca +17:00:50.164 [XNIO-1 task-1] HpuiHTlcQj-MSW8fmTLyWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.164 [XNIO-1 task-1] HpuiHTlcQj-MSW8fmTLyWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.164 [XNIO-1 task-1] HpuiHTlcQj-MSW8fmTLyWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.164 [XNIO-1 task-1] HpuiHTlcQj-MSW8fmTLyWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.165 [XNIO-1 task-1] HpuiHTlcQj-MSW8fmTLyWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e1ed1dc5-52c6-4baa-ab7f-090d4372c8e3 +17:00:50.174 [XNIO-1 task-1] c20lGIm7RjuqQ6cRfiUbOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169, base path is set to: null +17:00:50.174 [XNIO-1 task-1] c20lGIm7RjuqQ6cRfiUbOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.174 [XNIO-1 task-1] c20lGIm7RjuqQ6cRfiUbOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.174 [XNIO-1 task-1] c20lGIm7RjuqQ6cRfiUbOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169, base path is set to: null +17:00:50.175 [XNIO-1 task-1] c20lGIm7RjuqQ6cRfiUbOw DEBUG com.networknt.schema.TypeValidator debug - validate( "4a4f75f5-48f2-436e-9a03-12abe9adb169", "4a4f75f5-48f2-436e-9a03-12abe9adb169", refreshToken) +17:00:50.191 [XNIO-1 task-1] es_kVtBrROKX0MR3l6kyaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.191 [XNIO-1 task-1] es_kVtBrROKX0MR3l6kyaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.191 [XNIO-1 task-1] es_kVtBrROKX0MR3l6kyaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.192 [XNIO-1 task-1] es_kVtBrROKX0MR3l6kyaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.192 [XNIO-1 task-1] es_kVtBrROKX0MR3l6kyaw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.200 [XNIO-1 task-1] izsFeF6QRIKH30D60ffy2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.200 [XNIO-1 task-1] izsFeF6QRIKH30D60ffy2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.200 [XNIO-1 task-1] izsFeF6QRIKH30D60ffy2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.200 [XNIO-1 task-1] izsFeF6QRIKH30D60ffy2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.200 [XNIO-1 task-1] izsFeF6QRIKH30D60ffy2Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.210 [XNIO-1 task-1] I77w0XdgQ0KUBoTDzPiVlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.210 [XNIO-1 task-1] I77w0XdgQ0KUBoTDzPiVlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.210 [XNIO-1 task-1] I77w0XdgQ0KUBoTDzPiVlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.211 [XNIO-1 task-1] I77w0XdgQ0KUBoTDzPiVlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.211 [XNIO-1 task-1] I77w0XdgQ0KUBoTDzPiVlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.224 [XNIO-1 task-1] S6NZNbvPQJyGYqnNtTVJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.224 [XNIO-1 task-1] S6NZNbvPQJyGYqnNtTVJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.224 [XNIO-1 task-1] S6NZNbvPQJyGYqnNtTVJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.224 [XNIO-1 task-1] S6NZNbvPQJyGYqnNtTVJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.224 [XNIO-1 task-1] S6NZNbvPQJyGYqnNtTVJ0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.232 [XNIO-1 task-1] yz1p9ErTSbSqrOOh0Vql6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.233 [XNIO-1 task-1] yz1p9ErTSbSqrOOh0Vql6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.233 [XNIO-1 task-1] yz1p9ErTSbSqrOOh0Vql6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.233 [XNIO-1 task-1] yz1p9ErTSbSqrOOh0Vql6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.233 [XNIO-1 task-1] yz1p9ErTSbSqrOOh0Vql6w DEBUG com.networknt.schema.TypeValidator debug - validate( "01077ff8-2767-4267-9c14-82993af74aa4", "01077ff8-2767-4267-9c14-82993af74aa4", refreshToken) +17:00:50.233 [XNIO-1 task-1] yz1p9ErTSbSqrOOh0Vql6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01077ff8-2767-4267-9c14-82993af74aa4 is not found.","severity":"ERROR"} +17:00:50.241 [XNIO-1 task-1] lT4ZEBVCT9SBUXQEmBU6JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.241 [XNIO-1 task-1] lT4ZEBVCT9SBUXQEmBU6JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.241 [XNIO-1 task-1] lT4ZEBVCT9SBUXQEmBU6JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.241 [XNIO-1 task-1] lT4ZEBVCT9SBUXQEmBU6JQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:50.254 [XNIO-1 task-1] PRJGQmb0TUGqEQShZ1zFKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.255 [XNIO-1 task-1] PRJGQmb0TUGqEQShZ1zFKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.255 [XNIO-1 task-1] PRJGQmb0TUGqEQShZ1zFKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.255 [XNIO-1 task-1] PRJGQmb0TUGqEQShZ1zFKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.255 [XNIO-1 task-1] PRJGQmb0TUGqEQShZ1zFKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.260 [XNIO-1 task-1] w5viwDIRRgeKva5lkc3gtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.260 [XNIO-1 task-1] w5viwDIRRgeKva5lkc3gtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.260 [XNIO-1 task-1] w5viwDIRRgeKva5lkc3gtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.261 [XNIO-1 task-1] w5viwDIRRgeKva5lkc3gtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.261 [XNIO-1 task-1] w5viwDIRRgeKva5lkc3gtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.263 [XNIO-1 task-1] GR1ZMVV4TFSwp1pkPSR8lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.264 [XNIO-1 task-1] GR1ZMVV4TFSwp1pkPSR8lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.264 [XNIO-1 task-1] GR1ZMVV4TFSwp1pkPSR8lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.264 [XNIO-1 task-1] GR1ZMVV4TFSwp1pkPSR8lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.264 [XNIO-1 task-1] GR1ZMVV4TFSwp1pkPSR8lw DEBUG com.networknt.schema.TypeValidator debug - validate( "01077ff8-2767-4267-9c14-82993af74aa4", "01077ff8-2767-4267-9c14-82993af74aa4", refreshToken) +17:00:50.264 [XNIO-1 task-1] GR1ZMVV4TFSwp1pkPSR8lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01077ff8-2767-4267-9c14-82993af74aa4 is not found.","severity":"ERROR"} +17:00:50.269 [XNIO-1 task-1] qLch0nLSSOSqTZmWubJQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.269 [XNIO-1 task-1] qLch0nLSSOSqTZmWubJQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.269 [XNIO-1 task-1] qLch0nLSSOSqTZmWubJQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.269 [XNIO-1 task-1] qLch0nLSSOSqTZmWubJQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.270 [XNIO-1 task-1] qLch0nLSSOSqTZmWubJQ4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4a4f75f5-48f2-436e-9a03-12abe9adb169 +17:00:50.275 [XNIO-1 task-1] mTE9395JQPa_brmYXpOZ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.275 [XNIO-1 task-1] mTE9395JQPa_brmYXpOZ8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.275 [XNIO-1 task-1] mTE9395JQPa_brmYXpOZ8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.276 [XNIO-1 task-1] mTE9395JQPa_brmYXpOZ8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.276 [XNIO-1 task-1] mTE9395JQPa_brmYXpOZ8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.284 [XNIO-1 task-1] WSom7G37R6-W0mq4m4Sf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.284 [XNIO-1 task-1] WSom7G37R6-W0mq4m4Sf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.284 [XNIO-1 task-1] WSom7G37R6-W0mq4m4Sf8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.285 [XNIO-1 task-1] WSom7G37R6-W0mq4m4Sf8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:50.292 [XNIO-1 task-1] v9PHtf3tR2umhJaP6CqrFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.292 [XNIO-1 task-1] v9PHtf3tR2umhJaP6CqrFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.293 [XNIO-1 task-1] v9PHtf3tR2umhJaP6CqrFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.293 [XNIO-1 task-1] v9PHtf3tR2umhJaP6CqrFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.293 [XNIO-1 task-1] v9PHtf3tR2umhJaP6CqrFA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.303 [XNIO-1 task-1] N6QY5l6kSpy61QFLSnBtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.303 [XNIO-1 task-1] N6QY5l6kSpy61QFLSnBtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.303 [XNIO-1 task-1] N6QY5l6kSpy61QFLSnBtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.304 [XNIO-1 task-1] N6QY5l6kSpy61QFLSnBtGg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:50.310 [XNIO-1 task-1] VKYQApDxT46AisYOSfuT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.311 [XNIO-1 task-1] VKYQApDxT46AisYOSfuT6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.311 [XNIO-1 task-1] VKYQApDxT46AisYOSfuT6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.311 [XNIO-1 task-1] VKYQApDxT46AisYOSfuT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.311 [XNIO-1 task-1] VKYQApDxT46AisYOSfuT6A DEBUG com.networknt.schema.TypeValidator debug - validate( "01077ff8-2767-4267-9c14-82993af74aa4", "01077ff8-2767-4267-9c14-82993af74aa4", refreshToken) +17:00:50.312 [XNIO-1 task-1] VKYQApDxT46AisYOSfuT6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01077ff8-2767-4267-9c14-82993af74aa4 is not found.","severity":"ERROR"} +17:00:50.314 [XNIO-1 task-1] nigMVbeTS36dfIheXRod3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:50.314 [XNIO-1 task-1] nigMVbeTS36dfIheXRod3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.314 [XNIO-1 task-1] nigMVbeTS36dfIheXRod3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.314 [XNIO-1 task-1] nigMVbeTS36dfIheXRod3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:50.316 [XNIO-1 task-1] nigMVbeTS36dfIheXRod3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01077ff8-2767-4267-9c14-82993af74aa4 +17:00:50.320 [XNIO-1 task-1] HBLZhVSrSNGVDVTdeb1pwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.321 [XNIO-1 task-1] HBLZhVSrSNGVDVTdeb1pwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.321 [XNIO-1 task-1] HBLZhVSrSNGVDVTdeb1pwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +17:00:50.322 [XNIO-1 task-1] HBLZhVSrSNGVDVTdeb1pwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:50.322 [XNIO-1 task-1] HBLZhVSrSNGVDVTdeb1pwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +17:00:50.328 [XNIO-1 task-1] doYIpkFFQHqYO8mp_u-SLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:50.328 [XNIO-1 task-1] doYIpkFFQHqYO8mp_u-SLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.328 [XNIO-1 task-1] doYIpkFFQHqYO8mp_u-SLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.328 [XNIO-1 task-1] doYIpkFFQHqYO8mp_u-SLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4 +17:00:50.328 [XNIO-1 task-1] doYIpkFFQHqYO8mp_u-SLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01077ff8-2767-4267-9c14-82993af74aa4 +17:00:50.332 [XNIO-1 task-1] aQv90YhHTdiiJWn4zKJg_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.333 [XNIO-1 task-1] aQv90YhHTdiiJWn4zKJg_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.333 [XNIO-1 task-1] aQv90YhHTdiiJWn4zKJg_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.334 [XNIO-1 task-1] aQv90YhHTdiiJWn4zKJg_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01077ff8-2767-4267-9c14-82993af74aa4, base path is set to: null +17:00:50.334 [XNIO-1 task-1] aQv90YhHTdiiJWn4zKJg_g DEBUG com.networknt.schema.TypeValidator debug - validate( "01077ff8-2767-4267-9c14-82993af74aa4", "01077ff8-2767-4267-9c14-82993af74aa4", refreshToken) +17:00:50.335 [XNIO-1 task-1] aQv90YhHTdiiJWn4zKJg_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01077ff8-2767-4267-9c14-82993af74aa4 is not found.","severity":"ERROR"} +17:00:50.339 [XNIO-1 task-1] Nk27K3NGTUKyrpCmA0rByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:50.339 [XNIO-1 task-1] Nk27K3NGTUKyrpCmA0rByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.339 [XNIO-1 task-1] Nk27K3NGTUKyrpCmA0rByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.339 [XNIO-1 task-1] Nk27K3NGTUKyrpCmA0rByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b +17:00:50.339 [XNIO-1 task-1] Nk27K3NGTUKyrpCmA0rByQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c6775f35-083d-44e8-8258-93c05609773b +17:00:50.340 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9b9c937b +17:00:50.342 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9b9c937b +17:00:50.343 [XNIO-1 task-1] UMYeV_WMTnyZf46lsq_WLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e97f4272-d7f0-4f0b-909c-a838d95289c5 +17:00:50.343 [XNIO-1 task-1] UMYeV_WMTnyZf46lsq_WLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +17:00:50.345 [XNIO-1 task-1] UMYeV_WMTnyZf46lsq_WLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +17:00:50.345 [XNIO-1 task-1] UMYeV_WMTnyZf46lsq_WLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e97f4272-d7f0-4f0b-909c-a838d95289c5 +17:00:50.345 [XNIO-1 task-1] UMYeV_WMTnyZf46lsq_WLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e97f4272-d7f0-4f0b-909c-a838d95289c5 +17:00:50.352 [XNIO-1 task-1] 7sJsMviBRVOH-M8h0qX-sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:50.353 [XNIO-1 task-1] 7sJsMviBRVOH-M8h0qX-sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +17:00:50.353 [XNIO-1 task-1] 7sJsMviBRVOH-M8h0qX-sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +17:00:50.353 [XNIO-1 task-1] 7sJsMviBRVOH-M8h0qX-sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c6775f35-083d-44e8-8258-93c05609773b, base path is set to: null +17:00:50.354 [XNIO-1 task-1] 7sJsMviBRVOH-M8h0qX-sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c6775f35-083d-44e8-8258-93c05609773b", "c6775f35-083d-44e8-8258-93c05609773b", refreshToken) +17:00:50.354 [XNIO-1 task-1] 7sJsMviBRVOH-M8h0qX-sQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c6775f35-083d-44e8-8258-93c05609773b is not found.","severity":"ERROR"} +Jun 28, 2024 5:00:50 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +17:00:50.357 [XNIO-1 task-1] kyRjVfaDTSqW-WJSxGjCow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +17:00:50.358 [XNIO-1 task-1] kyRjVfaDTSqW-WJSxGjCow DEBUG com.networknt.schema.TypeValidator debug - validate( "461af982-6b97-4fad-a8e8-dd8a2396baaa", "461af982-6b97-4fad-a8e8-dd8a2396baaa", refreshToken) +17:00:50.358 [XNIO-1 task-1] kyRjVfaDTSqW-WJSxGjCow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 461af982-6b97-4fad-a8e8-dd8a2396baaa + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +17:00:50.363 [XNIO-1 task-1] QjezG9X_TO23fYhtemSbGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) diff --git a/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-service-1.log b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..3169914 --- /dev/null +++ b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1754 @@ +17:00:38.452 [XNIO-1 task-2] zGNxy55HQSaZzXXTHhTbQg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:38.452 [XNIO-1 task-2] zGNxy55HQSaZzXXTHhTbQg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:38.452 [XNIO-1 task-2] zGNxy55HQSaZzXXTHhTbQg DEBUG com.networknt.schema.TypeValidator debug - validate( "0eec28c7-3a1e-498b-abc9-c8fd1e55", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:38.452 [XNIO-1 task-2] zGNxy55HQSaZzXXTHhTbQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.453 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c66a262e +17:00:38.464 [XNIO-1 task-2] 6270xLJ0RpqwhQBOha0maw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.464 [XNIO-1 task-2] 6270xLJ0RpqwhQBOha0maw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:38.465 [XNIO-1 task-2] 6270xLJ0RpqwhQBOha0maw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.465 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:35552864 +17:00:38.466 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:35552864 +17:00:38.483 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:38.483 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:38.484 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:38.485 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.485 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:38.485 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG com.networknt.schema.TypeValidator debug - validate( "4f914961-5073-4916-a8b0-f41c95f887f0", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:38.485 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG com.networknt.schema.TypeValidator debug - validate( "c66a262e", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:38.486 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:38.486 [XNIO-1 task-2] p-eyiJpFRdOGfPv_a22etg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.487 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c66a262e +17:00:38.499 [XNIO-1 task-2] v5zRd4chS5CUqURkyx8ZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9c97082d +17:00:38.499 [XNIO-1 task-2] v5zRd4chS5CUqURkyx8ZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:38.499 [XNIO-1 task-2] v5zRd4chS5CUqURkyx8ZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:38.499 [XNIO-1 task-2] v5zRd4chS5CUqURkyx8ZTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9c97082d +17:00:38.505 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.505 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:38.506 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.506 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.508 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.508 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:38.508 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:38.508 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG com.networknt.schema.TypeValidator debug - validate( "8042f944-18b6-4c3a-a590-17d1f379", {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:38.508 [XNIO-1 task-2] fD3XYcIUQXydk-mjBNfcWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35552864","serviceName":"8042f944-18b6-4c3a-a590-17d1f379","serviceDesc":"3388f5a5-9238-4feb-a404-13eaa337ff66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.509 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:35552864 +17:00:38.535 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.535 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:38.535 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.537 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.537 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.538 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:38.538 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:38.538 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG com.networknt.schema.TypeValidator debug - validate( "0eec28c7-3a1e-498b-abc9-c8fd1e55", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:38.538 [XNIO-1 task-2] Grh8TW-OQlmjGBAOMqA9ow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.539 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c66a262e +17:00:38.574 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.574 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:38.575 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.575 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.576 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.576 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:38.576 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:38.576 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG com.networknt.schema.TypeValidator debug - validate( "7b29d25b-1f0b-4fe5-8bd4-0aeae607", {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:38.576 [XNIO-1 task-2] --WaVPSYRIaAyMTjpjrsiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"121ae7c8","serviceName":"7b29d25b-1f0b-4fe5-8bd4-0aeae607","serviceDesc":"ce15e3b9-c1e7-4760-ab0c-9e1e2005e938","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:38.577 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:121ae7c8 +17:00:38.589 [XNIO-1 task-2] 3WAhzY5SR4SG9LUiB1Ilmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.590 [XNIO-1 task-2] 3WAhzY5SR4SG9LUiB1Ilmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:38.590 [XNIO-1 task-2] 3WAhzY5SR4SG9LUiB1Ilmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:38.591 [XNIO-1 task-2] 3WAhzY5SR4SG9LUiB1Ilmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.054 [XNIO-1 task-2] 5VafFY2QSwKZpPkNv-6YTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9c97082d, base path is set to: null +17:00:39.054 [XNIO-1 task-2] 5VafFY2QSwKZpPkNv-6YTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.054 [XNIO-1 task-2] 5VafFY2QSwKZpPkNv-6YTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:39.054 [XNIO-1 task-2] 5VafFY2QSwKZpPkNv-6YTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9c97082d, base path is set to: null +17:00:39.055 [XNIO-1 task-2] 5VafFY2QSwKZpPkNv-6YTw DEBUG com.networknt.schema.TypeValidator debug - validate( "9c97082d", "9c97082d", serviceId) +17:00:39.063 [XNIO-1 task-2] SVib71C9QHquwxWQlg7L4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c66a262e +17:00:39.063 [XNIO-1 task-2] SVib71C9QHquwxWQlg7L4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:39.063 [XNIO-1 task-2] SVib71C9QHquwxWQlg7L4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:39.063 [XNIO-1 task-2] SVib71C9QHquwxWQlg7L4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c66a262e +17:00:39.069 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.069 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.070 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.070 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.071 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.071 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:39.071 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.071 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG com.networknt.schema.TypeValidator debug - validate( "0eec28c7-3a1e-498b-abc9-c8fd1e55", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:39.071 [XNIO-1 task-2] YHS2jflQS4SfR_J0plxKkA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.072 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c66a262e +17:00:39.121 [XNIO-1 task-2] kfx_rUjPR8eOM4oJjM_M-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.121 [XNIO-1 task-2] kfx_rUjPR8eOM4oJjM_M-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.122 [XNIO-1 task-2] kfx_rUjPR8eOM4oJjM_M-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.295 [XNIO-1 task-2] eL7SkMEfTAuebpTZ-qX0-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/35552864, base path is set to: null +17:00:39.296 [XNIO-1 task-2] eL7SkMEfTAuebpTZ-qX0-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.296 [XNIO-1 task-2] eL7SkMEfTAuebpTZ-qX0-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:39.296 [XNIO-1 task-2] eL7SkMEfTAuebpTZ-qX0-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/35552864, base path is set to: null +17:00:39.296 [XNIO-1 task-2] eL7SkMEfTAuebpTZ-qX0-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "35552864", "35552864", serviceId) +17:00:39.472 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:35552864 +17:00:39.481 [XNIO-1 task-2] Mnis-p8hS--49d4a-2WtAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9c97082d +17:00:39.484 [XNIO-1 task-2] Mnis-p8hS--49d4a-2WtAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:39.484 [XNIO-1 task-2] Mnis-p8hS--49d4a-2WtAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:39.484 [XNIO-1 task-2] Mnis-p8hS--49d4a-2WtAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9c97082d +17:00:39.490 [XNIO-1 task-2] 4QymkwrSQaeJh4x6q1PwYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.490 [XNIO-1 task-2] 4QymkwrSQaeJh4x6q1PwYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.490 [XNIO-1 task-2] 4QymkwrSQaeJh4x6q1PwYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.491 [XNIO-1 task-2] 4QymkwrSQaeJh4x6q1PwYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.518 [XNIO-1 task-2] 6tFU47IzScicI_BRZZsx2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9c97082d, base path is set to: null +17:00:39.519 [XNIO-1 task-2] 6tFU47IzScicI_BRZZsx2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.519 [XNIO-1 task-2] 6tFU47IzScicI_BRZZsx2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:39.519 [XNIO-1 task-2] 6tFU47IzScicI_BRZZsx2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9c97082d, base path is set to: null +17:00:39.520 [XNIO-1 task-2] 6tFU47IzScicI_BRZZsx2g DEBUG com.networknt.schema.TypeValidator debug - validate( "9c97082d", "9c97082d", serviceId) +17:00:39.542 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9c97082d +17:00:39.553 [XNIO-1 task-2] hYsJKf-FT8y_2Gc3TAOfdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/121ae7c8 +17:00:39.553 [XNIO-1 task-2] hYsJKf-FT8y_2Gc3TAOfdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:39.553 [XNIO-1 task-2] hYsJKf-FT8y_2Gc3TAOfdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:39.553 [XNIO-1 task-2] hYsJKf-FT8y_2Gc3TAOfdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/121ae7c8 +17:00:39.554 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:121ae7c8 +17:00:39.569 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.569 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.570 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.571 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.573 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.573 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:39.573 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.573 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG com.networknt.schema.TypeValidator debug - validate( "7f0492f9-d048-4a92-a999-5d0e83c1", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:39.574 [XNIO-1 task-2] -3vBfK9GQL-UYcIPFkvjZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.610 [XNIO-1 task-2] QEIVo6NcRY-3yi48ALwcCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.610 [XNIO-1 task-2] QEIVo6NcRY-3yi48ALwcCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.610 [XNIO-1 task-2] QEIVo6NcRY-3yi48ALwcCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.611 [XNIO-1 task-2] QEIVo6NcRY-3yi48ALwcCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.676 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.676 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.677 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.678 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.678 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.678 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:39.678 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.678 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f0492f9-d048-4a92-a999-5d0e83c1", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:39.678 [XNIO-1 task-2] EEBURQSCRwmXERy-sQCcRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.689 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:185d4a23-2eb3-4efd-8c0b-c8802a66ef09 +17:00:39.691 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:185d4a23-2eb3-4efd-8c0b-c8802a66ef09 +17:00:39.745 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.745 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.746 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.746 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:58503681 +17:00:39.746 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.747 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.747 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:39.747 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.747 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7f0492f9-d048-4a92-a999-5d0e83c1", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:39.747 [XNIO-1 task-2] Z8G6eHcHSq2D1C3Nxd6deQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.775 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.775 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.776 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.788 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.788 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.788 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:39.788 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f914961-5073-4916-a8b0-f41c95f887f0", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:39.788 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c66a262e", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:39.788 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:39.789 [XNIO-1 task-2] IJSpV4ZzRTKta9GFJSCbOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.789 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c66a262e +17:00:39.790 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +17:00:39.858 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.858 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:39.858 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:39.861 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.861 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.861 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:39.861 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:39.861 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f0492f9-d048-4a92-a999-5d0e83c1", {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:39.861 [XNIO-1 task-2] shs1_LSkTbmuQ1DCBr_HEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"75115205","serviceName":"7f0492f9-d048-4a92-a999-5d0e83c1","serviceDesc":"a917eab6-a26c-4a65-8271-f508da95e868","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:39.945 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2a543086 +17:00:39.948 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2a543086 +17:00:40.018 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.018 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.018 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.019 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.019 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.019 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:40.019 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.020 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG com.networknt.schema.TypeValidator debug - validate( "0eec28c7-3a1e-498b-abc9-c8fd1e55", {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:40.020 [XNIO-1 task-2] 6ofYyz_RSCOMZ2JkiImEUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c66a262e","serviceName":"0eec28c7-3a1e-498b-abc9-c8fd1e55","serviceDesc":"4f914961-5073-4916-a8b0-f41c95f887f0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.021 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c66a262e +17:00:40.041 [XNIO-1 task-2] QZxFn1YWTXGZVwPFWQiHIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75115205, base path is set to: null +17:00:40.042 [XNIO-1 task-2] QZxFn1YWTXGZVwPFWQiHIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.042 [XNIO-1 task-2] QZxFn1YWTXGZVwPFWQiHIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:40.042 [XNIO-1 task-2] QZxFn1YWTXGZVwPFWQiHIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75115205, base path is set to: null +17:00:40.042 [XNIO-1 task-2] QZxFn1YWTXGZVwPFWQiHIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "75115205", "75115205", serviceId) +17:00:40.131 [XNIO-1 task-2] 0EWLEQDaQjeOx4QbvTidCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c66a262e +17:00:40.132 [XNIO-1 task-2] 0EWLEQDaQjeOx4QbvTidCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.132 [XNIO-1 task-2] 0EWLEQDaQjeOx4QbvTidCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:40.132 [XNIO-1 task-2] 0EWLEQDaQjeOx4QbvTidCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c66a262e +17:00:40.138 [XNIO-1 task-2] J64rjdKVQgmw6ifbULj3oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c66a262e, base path is set to: null +17:00:40.138 [XNIO-1 task-2] J64rjdKVQgmw6ifbULj3oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.138 [XNIO-1 task-2] J64rjdKVQgmw6ifbULj3oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:40.141 [XNIO-1 task-2] J64rjdKVQgmw6ifbULj3oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c66a262e, base path is set to: null +17:00:40.142 [XNIO-1 task-2] J64rjdKVQgmw6ifbULj3oA DEBUG com.networknt.schema.TypeValidator debug - validate( "c66a262e", "c66a262e", serviceId) +17:00:40.143 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c66a262e +17:00:40.153 [XNIO-1 task-2] eyQnoXyMTJiUQtNdXmd8MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.153 [XNIO-1 task-2] eyQnoXyMTJiUQtNdXmd8MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.153 [XNIO-1 task-2] eyQnoXyMTJiUQtNdXmd8MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.154 [XNIO-1 task-2] eyQnoXyMTJiUQtNdXmd8MA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.246 [XNIO-1 task-2] khMIiTZTQ42tPIBomDIaYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.246 [XNIO-1 task-2] khMIiTZTQ42tPIBomDIaYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.246 [XNIO-1 task-2] khMIiTZTQ42tPIBomDIaYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.256 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e658467 +17:00:40.269 [XNIO-1 task-2] 1DC3331OTVCzrjcKlyT_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e658467, base path is set to: null +17:00:40.270 [XNIO-1 task-2] 1DC3331OTVCzrjcKlyT_AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.270 [XNIO-1 task-2] 1DC3331OTVCzrjcKlyT_AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:40.270 [XNIO-1 task-2] 1DC3331OTVCzrjcKlyT_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e658467, base path is set to: null +17:00:40.271 [XNIO-1 task-2] 1DC3331OTVCzrjcKlyT_AA DEBUG com.networknt.schema.TypeValidator debug - validate( "8e658467", "8e658467", serviceId) +17:00:40.272 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8e658467 +17:00:40.281 [XNIO-1 task-2] BWZbEsYzQzKXzU3cQ-o78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.281 [XNIO-1 task-2] BWZbEsYzQzKXzU3cQ-o78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.281 [XNIO-1 task-2] BWZbEsYzQzKXzU3cQ-o78g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.282 [XNIO-1 task-2] BWZbEsYzQzKXzU3cQ-o78g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.351 [XNIO-1 task-2] vwKJaaVoT7-uh6RidMld-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.352 [XNIO-1 task-2] vwKJaaVoT7-uh6RidMld-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.352 [XNIO-1 task-2] vwKJaaVoT7-uh6RidMld-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.353 [XNIO-1 task-2] vwKJaaVoT7-uh6RidMld-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.395 [XNIO-1 task-2] nYqxsQbwSsO7ywyNV6io_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.395 [XNIO-1 task-2] nYqxsQbwSsO7ywyNV6io_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.395 [XNIO-1 task-2] nYqxsQbwSsO7ywyNV6io_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.396 [XNIO-1 task-2] nYqxsQbwSsO7ywyNV6io_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.431 [XNIO-1 task-2] 7bDuOU61TTi2WG22yCHCgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.432 [XNIO-1 task-2] 7bDuOU61TTi2WG22yCHCgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.432 [XNIO-1 task-2] 7bDuOU61TTi2WG22yCHCgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.494 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5577ddd-7b6e-4a63-af36-05c3bd8a1177 +17:00:40.496 [XNIO-1 task-2] QBdf6bKqQnmId-KTJWdgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ab783464 +17:00:40.496 [XNIO-1 task-2] QBdf6bKqQnmId-KTJWdgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.496 [XNIO-1 task-2] QBdf6bKqQnmId-KTJWdgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:40.496 [XNIO-1 task-2] QBdf6bKqQnmId-KTJWdgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ab783464 +17:00:40.525 [XNIO-1 task-2] W2esXuvOTv2cc30a7ETXPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.526 [XNIO-1 task-2] W2esXuvOTv2cc30a7ETXPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.526 [XNIO-1 task-2] W2esXuvOTv2cc30a7ETXPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.530 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35fbae9c +17:00:40.534 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35fbae9c +17:00:40.570 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35fbae9c +17:00:40.587 [XNIO-1 task-2] aA15ngF4Sna2VW7Pv1reNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8f7aa525 +17:00:40.587 [XNIO-1 task-2] aA15ngF4Sna2VW7Pv1reNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.587 [XNIO-1 task-2] aA15ngF4Sna2VW7Pv1reNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:40.587 [XNIO-1 task-2] aA15ngF4Sna2VW7Pv1reNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8f7aa525 +17:00:40.605 [XNIO-1 task-2] v5NrQYGyQSaiOBfdUEWGAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.605 [XNIO-1 task-2] v5NrQYGyQSaiOBfdUEWGAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.605 [XNIO-1 task-2] v5NrQYGyQSaiOBfdUEWGAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.606 [XNIO-1 task-2] v5NrQYGyQSaiOBfdUEWGAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.621 [XNIO-1 task-2] fMzN3ui9QuynzwlMVflx_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.622 [XNIO-1 task-2] fMzN3ui9QuynzwlMVflx_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.622 [XNIO-1 task-2] fMzN3ui9QuynzwlMVflx_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.630 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:46fbc3a0 +17:00:40.654 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.654 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.655 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.656 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:46fbc3a0 +17:00:40.656 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.657 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:40.657 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG com.networknt.schema.TypeValidator debug - validate( "7f27eec2-1067-4bff-b7b1-d004865836fe", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:40.657 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:40.657 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:40.657 [XNIO-1 task-2] ik67MbJJRjKY8I6et-ugPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.673 [XNIO-1 task-2] e316yvg3QK2AHNOQuANd7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:40.674 [XNIO-1 task-2] e316yvg3QK2AHNOQuANd7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.674 [XNIO-1 task-2] e316yvg3QK2AHNOQuANd7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:40.674 [XNIO-1 task-2] e316yvg3QK2AHNOQuANd7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:40.679 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.680 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.680 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.681 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.681 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.681 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:40.681 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.681 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG com.networknt.schema.TypeValidator debug - validate( "1aabe141-6bbc-452b-8b6f-b1b38271", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:40.681 [XNIO-1 task-2] COE05f8iQju6FLNqEb3Nng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.695 [XNIO-1 task-2] PNTdMoeuSUyLR92xgRSXgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.696 [XNIO-1 task-2] PNTdMoeuSUyLR92xgRSXgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.696 [XNIO-1 task-2] PNTdMoeuSUyLR92xgRSXgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.711 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:35fbae9c +17:00:40.747 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.747 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.748 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.749 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.749 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.749 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:40.749 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.749 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ee25eaa-bcf4-49c2-83a7-94ebf7ab", {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:40.749 [XNIO-1 task-2] oFcKizASRkyR4SeLQAoKXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.783 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.784 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.784 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.785 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.785 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.785 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:40.785 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:40.785 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7ee25eaa-bcf4-49c2-83a7-94ebf7ab", {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:40.785 [XNIO-1 task-2] IZZqnIVNTaKShD2HPxDrCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bfab1afb","serviceName":"7ee25eaa-bcf4-49c2-83a7-94ebf7ab","serviceDesc":"b6011681-18a5-4794-bf01-0b8845620f89","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:40.813 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:52fd30a8-baf5-4ad4-92b5-20a718284c6e +17:00:40.821 [XNIO-1 task-2] pNN0hHeyTy2RnH_zJSRhzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:40.822 [XNIO-1 task-2] pNN0hHeyTy2RnH_zJSRhzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.823 [XNIO-1 task-2] pNN0hHeyTy2RnH_zJSRhzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:40.823 [XNIO-1 task-2] pNN0hHeyTy2RnH_zJSRhzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:40.824 [XNIO-1 task-2] pNN0hHeyTy2RnH_zJSRhzw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", "0f32f05e", serviceId) +17:00:40.851 [XNIO-1 task-2] yRC7tPnoS4m4XaLUeQVIjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.851 [XNIO-1 task-2] yRC7tPnoS4m4XaLUeQVIjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.852 [XNIO-1 task-2] yRC7tPnoS4m4XaLUeQVIjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.852 [XNIO-1 task-2] yRC7tPnoS4m4XaLUeQVIjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.878 [XNIO-1 task-2] E_FyfBGVSgC9mKgKGhdpYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.879 [XNIO-1 task-2] E_FyfBGVSgC9mKgKGhdpYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.879 [XNIO-1 task-2] E_FyfBGVSgC9mKgKGhdpYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.899 [XNIO-1 task-2] 0RIIGuvsRd-96J1BDPufNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e8af901d +17:00:40.899 [XNIO-1 task-2] 0RIIGuvsRd-96J1BDPufNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:40.899 [XNIO-1 task-2] 0RIIGuvsRd-96J1BDPufNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:40.899 [XNIO-1 task-2] 0RIIGuvsRd-96J1BDPufNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e8af901d +17:00:40.921 [XNIO-1 task-2] 65PnI4W0QkmV7k8JoHx20w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.923 [XNIO-1 task-2] 65PnI4W0QkmV7k8JoHx20w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.923 [XNIO-1 task-2] 65PnI4W0QkmV7k8JoHx20w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.924 [XNIO-1 task-2] 65PnI4W0QkmV7k8JoHx20w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.980 [XNIO-1 task-2] 1Pd_Xt92Rk6oReB3rnTb6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.980 [XNIO-1 task-2] 1Pd_Xt92Rk6oReB3rnTb6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:40.980 [XNIO-1 task-2] 1Pd_Xt92Rk6oReB3rnTb6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:40.981 [XNIO-1 task-2] 1Pd_Xt92Rk6oReB3rnTb6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.005 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:46fbc3a0 +17:00:41.006 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.006 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.006 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.007 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.007 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.008 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG com.networknt.schema.TypeValidator debug - validate( "7f27eec2-1067-4bff-b7b1-d004865836fe", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:41.008 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:41.008 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:41.008 [XNIO-1 task-2] hANgn4jBR-6gNaSrU5XNwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.043 [XNIO-1 task-2] w8zlYYdARquaLPff3mJupw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.043 [XNIO-1 task-2] w8zlYYdARquaLPff3mJupw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.044 [XNIO-1 task-2] w8zlYYdARquaLPff3mJupw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.046 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fdf38ccf +17:00:41.057 [XNIO-1 task-2] otbwoIrUSSeym4wFswwnLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bfab1afb, base path is set to: null +17:00:41.058 [XNIO-1 task-2] otbwoIrUSSeym4wFswwnLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.058 [XNIO-1 task-2] otbwoIrUSSeym4wFswwnLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:41.058 [XNIO-1 task-2] otbwoIrUSSeym4wFswwnLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bfab1afb, base path is set to: null +17:00:41.059 [XNIO-1 task-2] otbwoIrUSSeym4wFswwnLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bfab1afb", "bfab1afb", serviceId) +17:00:41.073 [XNIO-1 task-2] 2DXk-WWiSpKeVMNr9c6Yvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.073 [XNIO-1 task-2] 2DXk-WWiSpKeVMNr9c6Yvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.074 [XNIO-1 task-2] 2DXk-WWiSpKeVMNr9c6Yvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.078 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f8e5de90-c8b6-410e-b23f-afc3e55f113d +17:00:41.161 [XNIO-1 task-2] oTu4HPG-TeiO5zT2CWlpbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fdf38ccf +17:00:41.161 [XNIO-1 task-2] oTu4HPG-TeiO5zT2CWlpbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.161 [XNIO-1 task-2] oTu4HPG-TeiO5zT2CWlpbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:41.161 [XNIO-1 task-2] oTu4HPG-TeiO5zT2CWlpbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fdf38ccf +17:00:41.162 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fdf38ccf +17:00:41.165 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fdf38ccf +17:00:41.177 [XNIO-1 task-2] m22mdqOkSGKjtdLyk5wKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.177 [XNIO-1 task-2] m22mdqOkSGKjtdLyk5wKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.178 [XNIO-1 task-2] m22mdqOkSGKjtdLyk5wKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.178 [XNIO-1 task-2] m22mdqOkSGKjtdLyk5wKWw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.226 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c19f8169 +17:00:41.237 [XNIO-1 task-2] uarCV5TBSiyaSu6z7q4Bhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/375ea7c0, base path is set to: null +17:00:41.237 [XNIO-1 task-2] uarCV5TBSiyaSu6z7q4Bhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.237 [XNIO-1 task-2] uarCV5TBSiyaSu6z7q4Bhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:41.237 [XNIO-1 task-2] uarCV5TBSiyaSu6z7q4Bhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/375ea7c0, base path is set to: null +17:00:41.238 [XNIO-1 task-2] uarCV5TBSiyaSu6z7q4Bhg DEBUG com.networknt.schema.TypeValidator debug - validate( "375ea7c0", "375ea7c0", serviceId) +17:00:41.273 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.273 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.274 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.274 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.274 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.274 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f27eec2-1067-4bff-b7b1-d004865836fe", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:41.275 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:41.275 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:41.275 [XNIO-1 task-2] c65Zn2bFQXWJWpsXaUsTLw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.289 [XNIO-1 task-2] idYAkwq9Q6iIhr5mwsot1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.289 [XNIO-1 task-2] idYAkwq9Q6iIhr5mwsot1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.289 [XNIO-1 task-2] idYAkwq9Q6iIhr5mwsot1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.370 [XNIO-1 task-2] Hxrl08LuRv2C4rPk53O1Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.370 [XNIO-1 task-2] Hxrl08LuRv2C4rPk53O1Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.371 [XNIO-1 task-2] Hxrl08LuRv2C4rPk53O1Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.389 [XNIO-1 task-2] bzOZfn03S8W9lahKKmc9ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/805ae8e6 +17:00:41.389 [XNIO-1 task-2] bzOZfn03S8W9lahKKmc9ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.389 [XNIO-1 task-2] bzOZfn03S8W9lahKKmc9ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:41.390 [XNIO-1 task-2] bzOZfn03S8W9lahKKmc9ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/805ae8e6 +17:00:41.400 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.401 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.401 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.402 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.402 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.402 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.403 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.403 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG com.networknt.schema.TypeValidator debug - validate( "50b65913-ad8a-48b4-8325-0db16780", {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:41.403 [XNIO-1 task-2] s9_mbeYXQfybGGvCwEJfJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.414 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c19f8169 +17:00:41.418 [XNIO-1 task-2] 5vYMfoiTTcmX-TYoqX2vpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe90241d +17:00:41.418 [XNIO-1 task-2] 5vYMfoiTTcmX-TYoqX2vpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.418 [XNIO-1 task-2] 5vYMfoiTTcmX-TYoqX2vpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:41.418 [XNIO-1 task-2] 5vYMfoiTTcmX-TYoqX2vpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe90241d +17:00:41.424 [XNIO-1 task-2] K3_kT-GdTY6qpm8jNTN2Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:41.424 [XNIO-1 task-2] K3_kT-GdTY6qpm8jNTN2Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.424 [XNIO-1 task-2] K3_kT-GdTY6qpm8jNTN2Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:41.424 [XNIO-1 task-2] K3_kT-GdTY6qpm8jNTN2Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:41.425 [XNIO-1 task-2] K3_kT-GdTY6qpm8jNTN2Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", "0f32f05e", serviceId) +17:00:41.430 [XNIO-1 task-2] uaZtlT9qRrG55czj_fOGcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.430 [XNIO-1 task-2] uaZtlT9qRrG55czj_fOGcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.430 [XNIO-1 task-2] uaZtlT9qRrG55czj_fOGcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.431 [XNIO-1 task-2] uaZtlT9qRrG55czj_fOGcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.465 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.465 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.466 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.466 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.466 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.466 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.466 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.467 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG com.networknt.schema.TypeValidator debug - validate( "50b65913-ad8a-48b4-8325-0db16780", {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:41.467 [XNIO-1 task-2] Li4ip7o3R9eU5e7KMiM4rw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805ae8e6","serviceName":"50b65913-ad8a-48b4-8325-0db16780","serviceDesc":"a6bf9ac3-c7a5-427e-8b4a-a3d6ebe06725","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.483 [XNIO-1 task-2] LBeV2hwXR0avV0eE1w6qIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/805ae8e6, base path is set to: null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:41.484 [XNIO-1 task-2] LBeV2hwXR0avV0eE1w6qIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/805ae8e6 +17:00:41.484 [XNIO-1 task-2] LBeV2hwXR0avV0eE1w6qIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.484 [XNIO-1 task-2] LBeV2hwXR0avV0eE1w6qIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + ... 14 more + +17:00:41.484 [XNIO-1 task-2] LBeV2hwXR0avV0eE1w6qIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/805ae8e6, base path is set to: null +17:00:41.485 [XNIO-1 task-2] LBeV2hwXR0avV0eE1w6qIA DEBUG com.networknt.schema.TypeValidator debug - validate( "805ae8e6", "805ae8e6", serviceId) +17:00:41.551 [XNIO-1 task-2] e4bq-R_sSISJiupWuu-XZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe90241d +17:00:41.551 [XNIO-1 task-2] e4bq-R_sSISJiupWuu-XZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.551 [XNIO-1 task-2] e4bq-R_sSISJiupWuu-XZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:41.552 [XNIO-1 task-2] e4bq-R_sSISJiupWuu-XZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe90241d +17:00:41.569 [XNIO-1 task-2] sqSg8R-SRyuBSovF4FcyFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.570 [XNIO-1 task-2] sqSg8R-SRyuBSovF4FcyFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.570 [XNIO-1 task-2] sqSg8R-SRyuBSovF4FcyFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.571 [XNIO-1 task-2] sqSg8R-SRyuBSovF4FcyFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.634 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.635 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.635 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.636 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.636 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.636 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.636 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.636 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1aabe141-6bbc-452b-8b6f-b1b38271", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:41.636 [XNIO-1 task-2] gefjkXZ4SKiLDfjnpTaH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.637 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a11091a-1b07-42ec-a43c-0bba472cea24 +17:00:41.638 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a11091a-1b07-42ec-a43c-0bba472cea24 +17:00:41.689 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.689 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.690 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.691 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.691 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.691 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.691 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.691 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1aabe141-6bbc-452b-8b6f-b1b38271", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:41.691 [XNIO-1 task-2] Ck5KtDLMQaWN_hql9JiZ_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.705 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a11091a-1b07-42ec-a43c-0bba472cea24 +17:00:41.708 [XNIO-1 task-2] kEiAb6WXT8aS22Iy2VvBaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:41.709 [XNIO-1 task-2] kEiAb6WXT8aS22Iy2VvBaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.709 [XNIO-1 task-2] kEiAb6WXT8aS22Iy2VvBaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:41.709 [XNIO-1 task-2] kEiAb6WXT8aS22Iy2VvBaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:41.716 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.716 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.717 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.717 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.718 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.718 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.718 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:41.718 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1aabe141-6bbc-452b-8b6f-b1b38271", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:41.718 [XNIO-1 task-2] 3seDzfVtTe621VLSSd_VhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.739 [XNIO-1 task-2] -i4ZmCA2ShCVOYzlcmjwcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:41.739 [XNIO-1 task-2] -i4ZmCA2ShCVOYzlcmjwcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.739 [XNIO-1 task-2] -i4ZmCA2ShCVOYzlcmjwcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:41.740 [XNIO-1 task-2] -i4ZmCA2ShCVOYzlcmjwcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:41.740 [XNIO-1 task-2] -i4ZmCA2ShCVOYzlcmjwcg DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", "0f32f05e", serviceId) +17:00:41.750 [XNIO-1 task-2] -k43ZmNEQ8qnDCRryi35hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:41.750 [XNIO-1 task-2] -k43ZmNEQ8qnDCRryi35hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.751 [XNIO-1 task-2] -k43ZmNEQ8qnDCRryi35hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:41.751 [XNIO-1 task-2] -k43ZmNEQ8qnDCRryi35hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:41.754 [XNIO-1 task-2] edcfkZsOQu6ui77EQQ5ZuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.755 [XNIO-1 task-2] edcfkZsOQu6ui77EQQ5ZuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.755 [XNIO-1 task-2] edcfkZsOQu6ui77EQQ5ZuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.755 [XNIO-1 task-2] edcfkZsOQu6ui77EQQ5ZuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.779 [XNIO-1 task-2] 8BZxeu5tTmed2vutWuH_MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:41.779 [XNIO-1 task-2] 8BZxeu5tTmed2vutWuH_MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.779 [XNIO-1 task-2] 8BZxeu5tTmed2vutWuH_MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:41.779 [XNIO-1 task-2] 8BZxeu5tTmed2vutWuH_MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f32f05e, base path is set to: null +17:00:41.780 [XNIO-1 task-2] 8BZxeu5tTmed2vutWuH_MA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", "0f32f05e", serviceId) +17:00:41.783 [XNIO-1 task-2] VcdPm_LwT2aZsCaKIZj7TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.783 [XNIO-1 task-2] VcdPm_LwT2aZsCaKIZj7TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.783 [XNIO-1 task-2] VcdPm_LwT2aZsCaKIZj7TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.784 [XNIO-1 task-2] VcdPm_LwT2aZsCaKIZj7TQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.802 [XNIO-1 task-2] Mo_8-Y2ZRs6bSaBoGvTYsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.802 [XNIO-1 task-2] Mo_8-Y2ZRs6bSaBoGvTYsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.802 [XNIO-1 task-2] Mo_8-Y2ZRs6bSaBoGvTYsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.803 [XNIO-1 task-2] Mo_8-Y2ZRs6bSaBoGvTYsQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.905 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.905 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.907 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.908 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.908 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:41.908 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7f27eec2-1067-4bff-b7b1-d004865836fe", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:41.908 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:41.908 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:41.909 [XNIO-1 task-2] Ps92A3mZRIGxeWMEGLBMYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:41.930 [XNIO-1 task-2] SUfMCjexQMqjGV7rvuxOBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:41.930 [XNIO-1 task-2] SUfMCjexQMqjGV7rvuxOBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.930 [XNIO-1 task-2] SUfMCjexQMqjGV7rvuxOBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:41.931 [XNIO-1 task-2] SUfMCjexQMqjGV7rvuxOBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:41.941 [XNIO-1 task-2] poZhDVlyTYKq5t41iLR_bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.942 [XNIO-1 task-2] poZhDVlyTYKq5t41iLR_bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.942 [XNIO-1 task-2] poZhDVlyTYKq5t41iLR_bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.965 [XNIO-1 task-2] dQdSU8mFTvW64MXpsBb2UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.966 [XNIO-1 task-2] dQdSU8mFTvW64MXpsBb2UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:41.966 [XNIO-1 task-2] dQdSU8mFTvW64MXpsBb2UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:41.966 [XNIO-1 task-2] dQdSU8mFTvW64MXpsBb2UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.971 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0cd9d17b +17:00:41.990 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fbf1ecbd-f7d2-4642-aea7-e8dc4454c18d +17:00:41.991 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0cd9d17b +17:00:41.998 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.999 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:41.999 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.000 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.001 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.001 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f27eec2-1067-4bff-b7b1-d004865836fe", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:42.001 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f32f05e", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:42.001 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.001 [XNIO-1 task-2] lAk7qIvxSDqEfZRRArlVYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.015 [XNIO-1 task-2] qj5hk_-wTXCS10ameKEEvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.016 [XNIO-1 task-2] qj5hk_-wTXCS10ameKEEvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.016 [XNIO-1 task-2] qj5hk_-wTXCS10ameKEEvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.017 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c0d2575a +17:00:42.028 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.028 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.029 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.029 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.030 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.030 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.030 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.031 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG com.networknt.schema.TypeValidator debug - validate( "1aabe141-6bbc-452b-8b6f-b1b38271", {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:42.031 [XNIO-1 task-2] Tgaxj_8jTXmWr6_0tlw35A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f32f05e","serviceName":"1aabe141-6bbc-452b-8b6f-b1b38271","serviceDesc":"7f27eec2-1067-4bff-b7b1-d004865836fe","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.037 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ca6020bc-4c33-4532-b6e3-d94c381b6b32 +17:00:42.052 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cdfd8707 +17:00:42.055 [XNIO-1 task-2] Mqs-LhvWSr-VfOK3h5dijA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:42.055 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cdfd8707 +17:00:42.056 [XNIO-1 task-2] Mqs-LhvWSr-VfOK3h5dijA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.056 [XNIO-1 task-2] Mqs-LhvWSr-VfOK3h5dijA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.056 [XNIO-1 task-2] Mqs-LhvWSr-VfOK3h5dijA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f32f05e +17:00:42.068 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cdfd8707 +17:00:42.091 [XNIO-1 task-2] aDgyHwnQT0qdxVDySkME8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0d2575a, base path is set to: null +17:00:42.091 [XNIO-1 task-2] aDgyHwnQT0qdxVDySkME8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.091 [XNIO-1 task-2] aDgyHwnQT0qdxVDySkME8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.091 [XNIO-1 task-2] aDgyHwnQT0qdxVDySkME8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0d2575a, base path is set to: null +17:00:42.092 [XNIO-1 task-2] aDgyHwnQT0qdxVDySkME8g DEBUG com.networknt.schema.TypeValidator debug - validate( "c0d2575a", "c0d2575a", serviceId) +17:00:42.097 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.097 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.097 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.098 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.098 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.098 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG com.networknt.schema.TypeValidator debug - validate( "6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48", {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:42.098 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG com.networknt.schema.TypeValidator debug - validate( "6d8b2b33", {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:42.098 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.098 [XNIO-1 task-2] gSwgEcWPT9u6j906fofdFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d8b2b33","serviceName":"fbc79387-aad6-4f44-baaa-3b45cfbd","serviceDesc":"6fe8bc16-d99c-42ae-a7a7-b4bd320a6f48","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.120 [XNIO-1 task-2] 1pZn3mZpRqqfXuBaccwy8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0d2575a, base path is set to: null +17:00:42.120 [XNIO-1 task-2] 1pZn3mZpRqqfXuBaccwy8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.120 [XNIO-1 task-2] 1pZn3mZpRqqfXuBaccwy8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.120 [XNIO-1 task-2] 1pZn3mZpRqqfXuBaccwy8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0d2575a, base path is set to: null +17:00:42.121 [XNIO-1 task-2] 1pZn3mZpRqqfXuBaccwy8w DEBUG com.networknt.schema.TypeValidator debug - validate( "c0d2575a", "c0d2575a", serviceId) +17:00:42.126 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c0d2575a +17:00:42.134 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0cd9d17b +17:00:42.144 [XNIO-1 task-2] 8pqcHZDMQoGjSzncN6f0ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.145 [XNIO-1 task-2] 8pqcHZDMQoGjSzncN6f0ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.145 [XNIO-1 task-2] 8pqcHZDMQoGjSzncN6f0ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.145 [XNIO-1 task-2] 8pqcHZDMQoGjSzncN6f0ww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.172 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0cd9d17b +17:00:42.172 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0cd9d17b +17:00:42.172 [XNIO-1 task-2] NGfWfsZhTuekb7jAHtInPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.172 [XNIO-1 task-2] NGfWfsZhTuekb7jAHtInPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.172 [XNIO-1 task-2] NGfWfsZhTuekb7jAHtInPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6d8b2b33 +17:00:42.196 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0cd9d17b +17:00:42.200 [XNIO-1 task-2] xQYvfeveQLiLJzoDvV8cig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.201 [XNIO-1 task-2] xQYvfeveQLiLJzoDvV8cig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.201 [XNIO-1 task-2] xQYvfeveQLiLJzoDvV8cig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.224 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0cd9d17b +17:00:42.239 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e34084bf-6a73-43cb-bcfa-d38b97b0d5b4 +17:00:42.243 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e34084bf-6a73-43cb-bcfa-d38b97b0d5b4 +17:00:42.248 [XNIO-1 task-2] hY9eJoeERvm9k8rID0eHrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8d7609b, base path is set to: null +17:00:42.249 [XNIO-1 task-2] hY9eJoeERvm9k8rID0eHrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.249 [XNIO-1 task-2] hY9eJoeERvm9k8rID0eHrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.249 [XNIO-1 task-2] hY9eJoeERvm9k8rID0eHrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8d7609b, base path is set to: null +17:00:42.250 [XNIO-1 task-2] hY9eJoeERvm9k8rID0eHrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a8d7609b", "a8d7609b", serviceId) +17:00:42.258 [XNIO-1 task-2] ExTczO6oR9CO5ZnsJ-k_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8d7609b +17:00:42.258 [XNIO-1 task-2] ExTczO6oR9CO5ZnsJ-k_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.258 [XNIO-1 task-2] ExTczO6oR9CO5ZnsJ-k_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.259 [XNIO-1 task-2] ExTczO6oR9CO5ZnsJ-k_kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8d7609b +17:00:42.265 [XNIO-1 task-2] xznLmiLSRaS37vHbtXatLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.266 [XNIO-1 task-2] xznLmiLSRaS37vHbtXatLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.266 [XNIO-1 task-2] xznLmiLSRaS37vHbtXatLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.286 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b103c535-f468-46db-a220-9c8cb9ac2554 +17:00:42.287 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b103c535-f468-46db-a220-9c8cb9ac2554 +17:00:42.308 [XNIO-1 task-2] BAazh9h4SXyPGmXOgkYEhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cfa1313c, base path is set to: null +17:00:42.308 [XNIO-1 task-2] BAazh9h4SXyPGmXOgkYEhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +17:00:42.308 [XNIO-1 task-2] BAazh9h4SXyPGmXOgkYEhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.308 [XNIO-1 task-2] BAazh9h4SXyPGmXOgkYEhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.308 [XNIO-1 task-2] BAazh9h4SXyPGmXOgkYEhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +Jun 28, 2024 5:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +17:00:42.309 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:42.334 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.334 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.335 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.335 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.335 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.336 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.336 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.336 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "64e989da-4fb3-4270-bb0d-f9ae432b", {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:42.336 [XNIO-1 task-2] q0qfLxDmQPegPFv1O9jICQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.338 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.339 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.354 [XNIO-1 task-2] 5kaZVtFjS36qmZNhfdONbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +17:00:42.354 [XNIO-1 task-2] 5kaZVtFjS36qmZNhfdONbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.354 [XNIO-1 task-2] 5kaZVtFjS36qmZNhfdONbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.355 [XNIO-1 task-2] 5kaZVtFjS36qmZNhfdONbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +17:00:42.359 [XNIO-1 task-2] B43xLpJER56IkBNSz7gSZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8d7609b, base path is set to: null +17:00:42.359 [XNIO-1 task-2] B43xLpJER56IkBNSz7gSZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.359 [XNIO-1 task-2] B43xLpJER56IkBNSz7gSZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.359 [XNIO-1 task-2] B43xLpJER56IkBNSz7gSZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a8d7609b, base path is set to: null +17:00:42.359 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.364 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.367 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5b3246dc +17:00:42.372 [XNIO-1 task-2] gIpHNoPnSzee43Xe18wNEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.373 [XNIO-1 task-2] gIpHNoPnSzee43Xe18wNEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.373 [XNIO-1 task-2] gIpHNoPnSzee43Xe18wNEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.374 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a425b468-17de-4d99-8bec-c1c987700b66 +17:00:42.421 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:42dc698d-0dfc-47fb-a55f-a78c6d11efe6 +17:00:42.422 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:42dc698d-0dfc-47fb-a55f-a78c6d11efe6 +17:00:42.423 [XNIO-1 task-1] sf8M3qIZQOCmXocoBVhuRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.423 [XNIO-1 task-1] sf8M3qIZQOCmXocoBVhuRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.423 [XNIO-1 task-1] sf8M3qIZQOCmXocoBVhuRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.424 [XNIO-1 task-1] sf8M3qIZQOCmXocoBVhuRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.442 [XNIO-1 task-1] IiPZALWhQHS2M0IEMYmdBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.442 [XNIO-1 task-1] IiPZALWhQHS2M0IEMYmdBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.443 [XNIO-1 task-1] IiPZALWhQHS2M0IEMYmdBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.444 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0748d632 +17:00:42.450 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:42dc698d-0dfc-47fb-a55f-a78c6d11efe6 +17:00:42.455 [XNIO-1 task-1] M28KOXjLRYa_mTEqdcOkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.455 [XNIO-1 task-1] M28KOXjLRYa_mTEqdcOkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.455 [XNIO-1 task-1] M28KOXjLRYa_mTEqdcOkOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +Jun 28, 2024 5:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:42.460 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:42.462 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:42dc698d-0dfc-47fb-a55f-a78c6d11efe6 +17:00:42.477 [XNIO-1 task-1] a3WU-AnDSg6ucTuT9wxeLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0748d632, base path is set to: null +17:00:42.477 [XNIO-1 task-1] a3WU-AnDSg6ucTuT9wxeLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0748d632 +17:00:42.477 [XNIO-1 task-1] a3WU-AnDSg6ucTuT9wxeLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.477 [XNIO-1 task-1] a3WU-AnDSg6ucTuT9wxeLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.477 [XNIO-1 task-1] a3WU-AnDSg6ucTuT9wxeLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0748d632, base path is set to: null +17:00:42.478 [XNIO-1 task-1] a3WU-AnDSg6ucTuT9wxeLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0748d632", "0748d632", serviceId) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +17:00:42.483 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + +17:00:42.483 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.483 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.484 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.484 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.484 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.484 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.484 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG com.networknt.schema.TypeValidator debug - validate( "64e989da-4fb3-4270-bb0d-f9ae432b", {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:42.484 [XNIO-1 task-1] JzoQf2w5TbypIAkBnGetaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cfa1313c","serviceName":"64e989da-4fb3-4270-bb0d-f9ae432b","serviceDesc":"3211d824-d328-49c7-8e2a-fa54ef96f7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.511 [XNIO-1 task-1] LZZ_JCcpQ_aZEryoLOFb6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd9c6b2f, base path is set to: null +17:00:42.511 [XNIO-1 task-1] LZZ_JCcpQ_aZEryoLOFb6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.511 [XNIO-1 task-1] LZZ_JCcpQ_aZEryoLOFb6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.511 [XNIO-1 task-1] LZZ_JCcpQ_aZEryoLOFb6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd9c6b2f, base path is set to: null +17:00:42.512 [XNIO-1 task-1] LZZ_JCcpQ_aZEryoLOFb6w DEBUG com.networknt.schema.TypeValidator debug - validate( "fd9c6b2f", "fd9c6b2f", serviceId) +17:00:42.552 [XNIO-1 task-1] 1FcZotOmSMKk1D_37l4qIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.552 [XNIO-1 task-1] 1FcZotOmSMKk1D_37l4qIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.554 [XNIO-1 task-1] 1FcZotOmSMKk1D_37l4qIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.607 [XNIO-1 task-1] 5QtoN0OBRciVu7Ix1ValEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +17:00:42.607 [XNIO-1 task-1] 5QtoN0OBRciVu7Ix1ValEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.607 [XNIO-1 task-1] 5QtoN0OBRciVu7Ix1ValEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.607 [XNIO-1 task-1] 5QtoN0OBRciVu7Ix1ValEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +17:00:42.618 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.618 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.619 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.619 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.619 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.619 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.621 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:42.621 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG com.networknt.schema.TypeValidator debug - validate( "f9563220-58b8-4845-8bdc-a560afdd", {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:42.621 [XNIO-1 task-1] AMN4w2LmQIaQMZiUMjR25g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0748d632","serviceName":"f9563220-58b8-4845-8bdc-a560afdd","serviceDesc":"e8b099e9-d63f-4772-ae60-c0c2f8abc4de","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.621 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0748d632 +17:00:42.633 [XNIO-1 task-1] 1DtlAu43Tr2wWck0K_W1Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b039337, base path is set to: null +17:00:42.633 [XNIO-1 task-1] 1DtlAu43Tr2wWck0K_W1Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.634 [XNIO-1 task-1] 1DtlAu43Tr2wWck0K_W1Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.635 [XNIO-1 task-1] 1DtlAu43Tr2wWck0K_W1Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b039337, base path is set to: null +17:00:42.636 [XNIO-1 task-1] 1DtlAu43Tr2wWck0K_W1Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "2b039337", "2b039337", serviceId) +17:00:42.646 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.646 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.646 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.648 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.648 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.648 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2dfe484-1de7-419f-89d6-7273645240c2", {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:42.648 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG com.networknt.schema.TypeValidator debug - validate( "2b039337", {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:42.648 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.648 [XNIO-1 task-1] wDXwv9osTre6UwLsSczTPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2b039337","serviceName":"fa6df37c-6e3c-4fcc-ba55-e6899fc9","serviceDesc":"f2dfe484-1de7-419f-89d6-7273645240c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.664 [XNIO-1 task-1] _j_OqQN0SdaiXtbW6oDN5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0748d632 +17:00:42.665 [XNIO-1 task-1] _j_OqQN0SdaiXtbW6oDN5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.665 [XNIO-1 task-1] _j_OqQN0SdaiXtbW6oDN5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.666 [XNIO-1 task-1] _j_OqQN0SdaiXtbW6oDN5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0748d632 +17:00:42.666 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0748d632 +17:00:42.680 [XNIO-1 task-1] PA30KUpCTUmdU0ahPWnLHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.680 [XNIO-1 task-1] PA30KUpCTUmdU0ahPWnLHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.680 [XNIO-1 task-1] PA30KUpCTUmdU0ahPWnLHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.704 [XNIO-1 task-1] ZvGPUwmuR6Sk3yfRkMyP1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.704 [XNIO-1 task-1] ZvGPUwmuR6Sk3yfRkMyP1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.705 [XNIO-1 task-1] ZvGPUwmuR6Sk3yfRkMyP1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.735 [XNIO-1 task-1] 4Huyiei4Tman29SKocRDqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.735 [XNIO-1 task-1] 4Huyiei4Tman29SKocRDqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.736 [XNIO-1 task-1] 4Huyiei4Tman29SKocRDqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.754 [XNIO-1 task-1] X8oSKFVQSyGYQcZGV2KNZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81614c54, base path is set to: null +17:00:42.754 [XNIO-1 task-1] X8oSKFVQSyGYQcZGV2KNZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.755 [XNIO-1 task-1] X8oSKFVQSyGYQcZGV2KNZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.755 [XNIO-1 task-1] X8oSKFVQSyGYQcZGV2KNZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81614c54, base path is set to: null +17:00:42.755 [XNIO-1 task-1] X8oSKFVQSyGYQcZGV2KNZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "81614c54", "81614c54", serviceId) +17:00:42.762 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.763 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.764 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.764 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.764 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.765 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG com.networknt.schema.TypeValidator debug - validate( "946555fc-8723-49c1-95cc-d1b0028ed2ed", {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:42.765 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1495f676", {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:42.765 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.765 [XNIO-1 task-1] w9xZsuRBRJWD-DywhkmHTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1495f676","serviceName":"e8f968b9-a1b9-4730-ba65-003091be","serviceDesc":"946555fc-8723-49c1-95cc-d1b0028ed2ed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.766 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a67c79dc-66f2-48e0-adfa-92d9b8b7c857 +17:00:42.781 [XNIO-1 task-1] 1T7VM3p0S6yGzG576Dot6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2b039337 +17:00:42.781 [XNIO-1 task-1] 1T7VM3p0S6yGzG576Dot6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.781 [XNIO-1 task-1] 1T7VM3p0S6yGzG576Dot6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.782 [XNIO-1 task-1] 1T7VM3p0S6yGzG576Dot6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2b039337 +17:00:42.788 [XNIO-1 task-1] xlkLwEXHS0uR5UYgwbTblw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.788 [XNIO-1 task-1] xlkLwEXHS0uR5UYgwbTblw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.789 [XNIO-1 task-1] xlkLwEXHS0uR5UYgwbTblw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.789 [XNIO-1 task-1] xlkLwEXHS0uR5UYgwbTblw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.812 [XNIO-1 task-1] 0mHeEF67Tl-1CUZELXwcNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b039337, base path is set to: null +17:00:42.812 [XNIO-1 task-1] 0mHeEF67Tl-1CUZELXwcNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.812 [XNIO-1 task-1] 0mHeEF67Tl-1CUZELXwcNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:42.812 [XNIO-1 task-1] 0mHeEF67Tl-1CUZELXwcNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2b039337, base path is set to: null +17:00:42.813 [XNIO-1 task-1] 0mHeEF67Tl-1CUZELXwcNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2b039337", "2b039337", serviceId) +17:00:42.830 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.831 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.831 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.832 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.838 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:42.838 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e3785b01-e796-4d09-9432-4d2bb2bffe88", {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:42.838 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "81614c54", {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:42.838 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:42.838 [XNIO-1 task-1] LdKyntMuQeeL3etDWQC-jQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"81614c54","serviceName":"e8918e26-8b22-4cb5-a5b2-82b05861","serviceDesc":"e3785b01-e796-4d09-9432-4d2bb2bffe88","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:42.856 [XNIO-1 task-1] wRyHnkKuR7CBrCrFdvEuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +17:00:42.856 [XNIO-1 task-1] wRyHnkKuR7CBrCrFdvEuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.856 [XNIO-1 task-1] wRyHnkKuR7CBrCrFdvEuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.856 [XNIO-1 task-1] wRyHnkKuR7CBrCrFdvEuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cfa1313c +17:00:42.868 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f3136645-5b15-410b-a911-12884ec18acd +17:00:42.897 [XNIO-1 task-1] WSFvcd7RRFydVPGHcQrdMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.897 [XNIO-1 task-1] WSFvcd7RRFydVPGHcQrdMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.897 [XNIO-1 task-1] WSFvcd7RRFydVPGHcQrdMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.898 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b3e95384 +17:00:42.903 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b3e95384 +17:00:42.921 [XNIO-1 task-1] lyhnjiHrSBaQO0_M0DYGjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b805463 +17:00:42.922 [XNIO-1 task-1] lyhnjiHrSBaQO0_M0DYGjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:42.922 [XNIO-1 task-1] lyhnjiHrSBaQO0_M0DYGjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:42.922 [XNIO-1 task-1] lyhnjiHrSBaQO0_M0DYGjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b805463 +17:00:42.955 [XNIO-1 task-1] h-IdXOu2S0-aZ2p8TBMIbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:42.957 [XNIO-1 task-1] h-IdXOu2S0-aZ2p8TBMIbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:42.958 [XNIO-1 task-1] h-IdXOu2S0-aZ2p8TBMIbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.007 [XNIO-1 task-1] bJ8riXgvQJSewoZ2k4U_vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.007 [XNIO-1 task-1] bJ8riXgvQJSewoZ2k4U_vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.007 [XNIO-1 task-1] bJ8riXgvQJSewoZ2k4U_vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.023 [XNIO-1 task-1] UfweLsFqQICT4aj6MLyEMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.024 [XNIO-1 task-1] UfweLsFqQICT4aj6MLyEMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.024 [XNIO-1 task-1] UfweLsFqQICT4aj6MLyEMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.024 [XNIO-1 task-1] UfweLsFqQICT4aj6MLyEMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.071 [XNIO-1 task-1] -X_R61QERPicWOqr7L1nYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.072 [XNIO-1 task-1] -X_R61QERPicWOqr7L1nYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.072 [XNIO-1 task-1] -X_R61QERPicWOqr7L1nYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.083 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5d2adb72-0fbe-4210-9445-6e63529c0533 +17:00:43.085 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5d2adb72-0fbe-4210-9445-6e63529c0533 +17:00:43.088 [XNIO-1 task-1] o7KCnaVrRjySdYzRMxOVkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.088 [XNIO-1 task-1] o7KCnaVrRjySdYzRMxOVkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.088 [XNIO-1 task-1] o7KCnaVrRjySdYzRMxOVkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.103 [XNIO-1 task-1] qEgUNravSdiCrdadtTYAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.103 [XNIO-1 task-1] qEgUNravSdiCrdadtTYAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.104 [XNIO-1 task-1] qEgUNravSdiCrdadtTYAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.152 [XNIO-1 task-1] fNWWvanZSNqKzBnam9jvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.152 [XNIO-1 task-1] fNWWvanZSNqKzBnam9jvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.152 [XNIO-1 task-1] fNWWvanZSNqKzBnam9jvwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.169 [XNIO-1 task-1] y7qNo2boTNWTqmR5rRfXxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.169 [XNIO-1 task-1] y7qNo2boTNWTqmR5rRfXxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.169 [XNIO-1 task-1] y7qNo2boTNWTqmR5rRfXxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.169 [XNIO-1 task-1] y7qNo2boTNWTqmR5rRfXxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.182 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.182 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.183 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.183 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.183 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.183 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG com.networknt.schema.TypeValidator debug - validate( "13a13520-2820-4c8b-acc4-b91766eb9b15", {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:43.183 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG com.networknt.schema.TypeValidator debug - validate( "b9b01a59", {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:43.184 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.184 [XNIO-1 task-1] Kja9K0BwR8moQTUa-CmjWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b9b01a59","serviceName":"9a2a6b26-d8b9-4bbc-a8c8-5dc88590","serviceDesc":"13a13520-2820-4c8b-acc4-b91766eb9b15","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.187 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a60ba421 +17:00:43.198 [XNIO-1 task-1] sUzZmyBqQ9-9g5ODRdQx7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1495f676, base path is set to: null +17:00:43.199 [XNIO-1 task-1] sUzZmyBqQ9-9g5ODRdQx7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.199 [XNIO-1 task-1] sUzZmyBqQ9-9g5ODRdQx7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:43.199 [XNIO-1 task-1] sUzZmyBqQ9-9g5ODRdQx7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1495f676, base path is set to: null +17:00:43.200 [XNIO-1 task-1] sUzZmyBqQ9-9g5ODRdQx7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1495f676", "1495f676", serviceId) +17:00:43.219 [XNIO-1 task-1] 7I4oZ8uNQY-mdhLbtYipwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.219 [XNIO-1 task-1] 7I4oZ8uNQY-mdhLbtYipwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.219 [XNIO-1 task-1] 7I4oZ8uNQY-mdhLbtYipwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.221 [XNIO-1 task-1] 7I4oZ8uNQY-mdhLbtYipwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.233 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.233 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.234 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.234 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.235 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.235 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.235 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.235 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "efb48ff6-d8cc-423d-aea5-9842e2ca", {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:43.235 [XNIO-1 task-1] ZbjNoZzOQ5mMSelDzE_WqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3e95384","serviceName":"efb48ff6-d8cc-423d-aea5-9842e2ca","serviceDesc":"d7fe1c03-6711-48cf-b161-ad6c2b16c947","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.237 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3e95384 +17:00:43.256 [XNIO-1 task-1] y-5pUn4OQ2OOM-bjvNC_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3ae04b06, base path is set to: null +17:00:43.257 [XNIO-1 task-1] y-5pUn4OQ2OOM-bjvNC_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.257 [XNIO-1 task-1] y-5pUn4OQ2OOM-bjvNC_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:43.257 [XNIO-1 task-1] y-5pUn4OQ2OOM-bjvNC_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3ae04b06, base path is set to: null +17:00:43.258 [XNIO-1 task-1] y-5pUn4OQ2OOM-bjvNC_iA DEBUG com.networknt.schema.TypeValidator debug - validate( "3ae04b06", "3ae04b06", serviceId) +17:00:43.277 [XNIO-1 task-1] fit9z1WVSBqBTvutG67MpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.277 [XNIO-1 task-1] fit9z1WVSBqBTvutG67MpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.278 [XNIO-1 task-1] fit9z1WVSBqBTvutG67MpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.356 [XNIO-1 task-1] iU6w1JnqRcmSswjc--87jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b9b01a59 +17:00:43.356 [XNIO-1 task-1] iU6w1JnqRcmSswjc--87jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.356 [XNIO-1 task-1] iU6w1JnqRcmSswjc--87jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:43.356 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e45b7dfd +17:00:43.357 [XNIO-1 task-1] iU6w1JnqRcmSswjc--87jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b9b01a59", "b9b01a59", serviceId) +17:00:43.362 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e45b7dfd +17:00:43.375 [XNIO-1 task-1] k6k2gMfDQRWQE65a26Aa3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.375 [XNIO-1 task-1] k6k2gMfDQRWQE65a26Aa3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.376 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f249f150-ddc3-40e3-9e90-ac54d6da5e8a +17:00:43.377 [XNIO-1 task-1] k6k2gMfDQRWQE65a26Aa3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.383 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ac49ece0-4562-4c74-b3a8-1a636f9c2c06 +17:00:43.396 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.396 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.396 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.397 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.397 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.397 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG com.networknt.schema.TypeValidator debug - validate( "8264979d-d3d9-4642-815f-081c314095b5", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:43.397 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG com.networknt.schema.TypeValidator debug - validate( "e6e26a59", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:43.397 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.397 [XNIO-1 task-1] pIOTHKrWTR2J4s8xVto2ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.412 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.412 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.413 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.413 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.413 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.413 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e45b7dfd +17:00:43.414 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.414 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.415 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "460aa75b-e449-4bc2-8cef-edc78fc5", {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:43.415 [XNIO-1 task-1] t0oscpGBTTmXYBF2BkkDYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e2b1ec8e","serviceName":"460aa75b-e449-4bc2-8cef-edc78fc5","serviceDesc":"bd8c0a0d-abff-4a72-9067-8b419fb3e337","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.428 [XNIO-1 task-1] EiqtipBIQwWJwBwDPzvCeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.428 [XNIO-1 task-1] EiqtipBIQwWJwBwDPzvCeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.428 [XNIO-1 task-1] EiqtipBIQwWJwBwDPzvCeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.429 [XNIO-1 task-1] EiqtipBIQwWJwBwDPzvCeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.455 [XNIO-1 task-1] prZfnS08TI6PTKuE3lKjXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2b1ec8e, base path is set to: null +17:00:43.455 [XNIO-1 task-1] prZfnS08TI6PTKuE3lKjXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.455 [XNIO-1 task-1] prZfnS08TI6PTKuE3lKjXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:43.455 [XNIO-1 task-1] prZfnS08TI6PTKuE3lKjXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2b1ec8e, base path is set to: null +17:00:43.455 [XNIO-1 task-1] prZfnS08TI6PTKuE3lKjXw DEBUG com.networknt.schema.TypeValidator debug - validate( "e2b1ec8e", "e2b1ec8e", serviceId) +17:00:43.456 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e45b7dfd +17:00:43.471 [XNIO-1 task-1] XjkH7aLxTAaSLj0mz5LvOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.471 [XNIO-1 task-1] XjkH7aLxTAaSLj0mz5LvOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.471 [XNIO-1 task-1] XjkH7aLxTAaSLj0mz5LvOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.473 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1b9741dd +17:00:43.480 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e45b7dfd +17:00:43.486 [XNIO-1 task-1] WEPZF9FsRYqlUg5Qw4OYYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.486 [XNIO-1 task-1] WEPZF9FsRYqlUg5Qw4OYYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.486 [XNIO-1 task-1] WEPZF9FsRYqlUg5Qw4OYYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.487 [XNIO-1 task-1] WEPZF9FsRYqlUg5Qw4OYYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.509 [XNIO-1 task-1] M4ZbcKIORquQoLG7nUQm7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e2b1ec8e +17:00:43.509 [XNIO-1 task-1] M4ZbcKIORquQoLG7nUQm7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.509 [XNIO-1 task-1] M4ZbcKIORquQoLG7nUQm7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:43.509 [XNIO-1 task-1] M4ZbcKIORquQoLG7nUQm7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e2b1ec8e +17:00:43.527 [XNIO-1 task-1] UfoFNWXhTO6fPcgKE0_B8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.527 [XNIO-1 task-1] UfoFNWXhTO6fPcgKE0_B8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.528 [XNIO-1 task-1] UfoFNWXhTO6fPcgKE0_B8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.544 [XNIO-1 task-1] S4Uv8SoESpq08ea4x_UqbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.545 [XNIO-1 task-1] S4Uv8SoESpq08ea4x_UqbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.545 [XNIO-1 task-1] S4Uv8SoESpq08ea4x_UqbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.546 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1ece00cd +17:00:43.549 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1ece00cd +17:00:43.560 [XNIO-1 task-1] mEkToNUYTFmHX41MII0Nwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.561 [XNIO-1 task-1] mEkToNUYTFmHX41MII0Nwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.561 [XNIO-1 task-1] mEkToNUYTFmHX41MII0Nwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.604 [XNIO-1 task-1] 3XJexcXJSbqvbCTIUdgW0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37f52310 +17:00:43.605 [XNIO-1 task-1] 3XJexcXJSbqvbCTIUdgW0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.605 [XNIO-1 task-1] 3XJexcXJSbqvbCTIUdgW0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:43.605 [XNIO-1 task-1] 3XJexcXJSbqvbCTIUdgW0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37f52310 +17:00:43.643 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:11280096-9bfb-4cb4-b0e3-4a58030684a8 +17:00:43.665 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25a49246 +17:00:43.667 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25a49246 +17:00:43.674 [XNIO-1 task-1] BPLRCaSnSKKEtAUrfblAHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.674 [XNIO-1 task-1] BPLRCaSnSKKEtAUrfblAHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.675 [XNIO-1 task-1] BPLRCaSnSKKEtAUrfblAHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.675 [XNIO-1 task-1] BPLRCaSnSKKEtAUrfblAHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.690 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25a49246 +17:00:43.706 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.706 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.707 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.707 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.708 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.708 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG com.networknt.schema.TypeValidator debug - validate( "8264979d-d3d9-4642-815f-081c314095b5", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:43.708 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG com.networknt.schema.TypeValidator debug - validate( "e6e26a59", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:43.708 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.708 [XNIO-1 task-1] 3i17sM1zQbu1oiDJXfb7xA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.728 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4c6af442-5c2d-4bbb-b88e-c57818f8420a +17:00:43.732 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bbd08bfa-4d9c-4f6b-88e5-082a937e47ef +17:00:43.739 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bbd08bfa-4d9c-4f6b-88e5-082a937e47ef +17:00:43.743 [XNIO-1 task-1] VFaHevgOTlap2QVU-31z8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37f52310 +17:00:43.743 [XNIO-1 task-1] VFaHevgOTlap2QVU-31z8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.743 [XNIO-1 task-1] VFaHevgOTlap2QVU-31z8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:43.743 [XNIO-1 task-1] VFaHevgOTlap2QVU-31z8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37f52310 +17:00:43.749 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b8c241e9-8509-4c8f-af99-20fb7984575d +17:00:43.750 [XNIO-1 task-1] XZgLR1sfSPu_nyBQAJZV4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37f52310 +17:00:43.750 [XNIO-1 task-1] XZgLR1sfSPu_nyBQAJZV4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.750 [XNIO-1 task-1] XZgLR1sfSPu_nyBQAJZV4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:43.752 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b8c241e9-8509-4c8f-af99-20fb7984575d +17:00:43.757 [XNIO-1 task-1] XZgLR1sfSPu_nyBQAJZV4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/37f52310 +17:00:43.770 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4c6af442-5c2d-4bbb-b88e-c57818f8420a +17:00:43.775 [XNIO-1 task-1] mi3S_kvHTDW4Cex1YHYJTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.777 [XNIO-1 task-1] mi3S_kvHTDW4Cex1YHYJTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.777 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:25a49246 +17:00:43.778 [XNIO-1 task-1] mi3S_kvHTDW4Cex1YHYJTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.779 [XNIO-1 task-1] mi3S_kvHTDW4Cex1YHYJTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.832 [XNIO-1 task-1] JuBQp0HcRiqpIZL6hKD_aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b3e95384, base path is set to: null +17:00:43.832 [XNIO-1 task-1] JuBQp0HcRiqpIZL6hKD_aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.833 [XNIO-1 task-1] JuBQp0HcRiqpIZL6hKD_aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:43.833 [XNIO-1 task-1] JuBQp0HcRiqpIZL6hKD_aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b3e95384, base path is set to: null +17:00:43.833 [XNIO-1 task-1] JuBQp0HcRiqpIZL6hKD_aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b3e95384", "b3e95384", serviceId) +17:00:43.837 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b3e95384 +17:00:43.857 [XNIO-1 task-1] sZNLFP_tSyWlptkI2rL7Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6e26a59 +17:00:43.857 [XNIO-1 task-1] sZNLFP_tSyWlptkI2rL7Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.858 [XNIO-1 task-1] sZNLFP_tSyWlptkI2rL7Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:43.858 [XNIO-1 task-1] sZNLFP_tSyWlptkI2rL7Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6e26a59 +17:00:43.873 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.874 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.875 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.875 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.875 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.875 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.876 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.876 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f954f17f-21a6-4bb2-9bf4-fcc3cd86", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:43.876 [XNIO-1 task-1] OZJGzksVSiia1ic1ocUhLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.899 [XNIO-1 task-1] sMXoviLiSXiIJLjmIg_Fng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81614c54, base path is set to: null +17:00:43.899 [XNIO-1 task-1] sMXoviLiSXiIJLjmIg_Fng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.899 [XNIO-1 task-1] sMXoviLiSXiIJLjmIg_Fng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:43.900 [XNIO-1 task-1] sMXoviLiSXiIJLjmIg_Fng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81614c54, base path is set to: null +17:00:43.900 [XNIO-1 task-1] sMXoviLiSXiIJLjmIg_Fng DEBUG com.networknt.schema.TypeValidator debug - validate( "81614c54", "81614c54", serviceId) +17:00:43.908 [XNIO-1 task-1] AeduCpJOSca01JL4yX1kAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d24b2297 +17:00:43.908 [XNIO-1 task-1] AeduCpJOSca01JL4yX1kAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.908 [XNIO-1 task-1] AeduCpJOSca01JL4yX1kAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:43.908 [XNIO-1 task-1] AeduCpJOSca01JL4yX1kAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d24b2297 +17:00:43.926 [XNIO-1 task-1] e_EMfqTVRnmC-qTEu6L1Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.926 [XNIO-1 task-1] e_EMfqTVRnmC-qTEu6L1Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.926 [XNIO-1 task-1] e_EMfqTVRnmC-qTEu6L1Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.927 [XNIO-1 task-1] e_EMfqTVRnmC-qTEu6L1Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.936 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.936 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.936 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:43.937 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.939 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.939 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.939 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:43.939 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG com.networknt.schema.TypeValidator debug - validate( "8d29d1a2-4872-4762-985f-43e372d0", {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:43.939 [XNIO-1 task-1] cmVCEn7xQSehI5KB8Is7ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.953 [XNIO-1 task-1] G1F7HA8HSwmVVmIS0Y2-cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81614c54, base path is set to: null +17:00:43.954 [XNIO-1 task-1] G1F7HA8HSwmVVmIS0Y2-cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:43.954 [XNIO-1 task-1] G1F7HA8HSwmVVmIS0Y2-cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:43.954 [XNIO-1 task-1] G1F7HA8HSwmVVmIS0Y2-cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81614c54, base path is set to: null +17:00:43.954 [XNIO-1 task-1] G1F7HA8HSwmVVmIS0Y2-cw DEBUG com.networknt.schema.TypeValidator debug - validate( "81614c54", "81614c54", serviceId) +17:00:43.978 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.978 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.978 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.979 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.979 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:43.979 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "943ab561-c4f8-4029-b741-550e6c00bcc5", {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:43.979 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c5c93bf1", {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:43.979 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:43.979 [XNIO-1 task-1] 01Q6YQXRSFav_Lr0EyexFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5c93bf1","serviceName":"ba16cb5f-5d47-49f4-a0f1-548bc9f2","serviceDesc":"943ab561-c4f8-4029-b741-550e6c00bcc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:43.998 [XNIO-1 task-1] hd0vhrXJRLOJXoiVdixs2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.998 [XNIO-1 task-1] hd0vhrXJRLOJXoiVdixs2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.999 [XNIO-1 task-1] hd0vhrXJRLOJXoiVdixs2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:43.999 [XNIO-1 task-1] hd0vhrXJRLOJXoiVdixs2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.012 [XNIO-1 task-1] mBQbw-r6RzyVZFhpMO49uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6e26a59 +17:00:44.012 [XNIO-1 task-1] mBQbw-r6RzyVZFhpMO49uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.012 [XNIO-1 task-1] mBQbw-r6RzyVZFhpMO49uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.013 [XNIO-1 task-1] mBQbw-r6RzyVZFhpMO49uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6e26a59 +17:00:44.020 [XNIO-1 task-1] 2O1d8jklRfi5TN-H3O32tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.021 [XNIO-1 task-1] 2O1d8jklRfi5TN-H3O32tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.021 [XNIO-1 task-1] 2O1d8jklRfi5TN-H3O32tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.021 [XNIO-1 task-1] 2O1d8jklRfi5TN-H3O32tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.050 [XNIO-1 task-1] TqjxcixkQkKfw9sC8cGHPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.050 [XNIO-1 task-1] TqjxcixkQkKfw9sC8cGHPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.050 [XNIO-1 task-1] TqjxcixkQkKfw9sC8cGHPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.051 [XNIO-1 task-1] TqjxcixkQkKfw9sC8cGHPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.071 [XNIO-1 task-1] 046jO5wzQRKJ6cXTb6L0ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.071 [XNIO-1 task-1] 046jO5wzQRKJ6cXTb6L0ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.071 [XNIO-1 task-1] 046jO5wzQRKJ6cXTb6L0ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.071 [XNIO-1 task-1] 046jO5wzQRKJ6cXTb6L0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.089 [XNIO-1 task-1] ZFdw9S7cSBSqVVb4MyTsVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8be92aa, base path is set to: null +17:00:44.090 [XNIO-1 task-1] ZFdw9S7cSBSqVVb4MyTsVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.090 [XNIO-1 task-1] ZFdw9S7cSBSqVVb4MyTsVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.090 [XNIO-1 task-1] ZFdw9S7cSBSqVVb4MyTsVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8be92aa, base path is set to: null +17:00:44.090 [XNIO-1 task-1] ZFdw9S7cSBSqVVb4MyTsVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b8be92aa", "b8be92aa", serviceId) +17:00:44.103 [XNIO-1 task-1] m7EoxoG_RaGxsiiaaJQ74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.103 [XNIO-1 task-1] m7EoxoG_RaGxsiiaaJQ74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.104 [XNIO-1 task-1] m7EoxoG_RaGxsiiaaJQ74w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.119 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.119 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.119 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.120 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.120 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.120 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "32a1b6ff-e10d-44cf-b68d-84c04e2e81c6", {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:44.120 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "b8be92aa", {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:44.120 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.120 [XNIO-1 task-1] vaeqBtoXSfaUex80z_x0Uw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8be92aa","serviceName":"3c5ba205-cff1-4d66-95af-e548fbc4","serviceDesc":"32a1b6ff-e10d-44cf-b68d-84c04e2e81c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.161 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.161 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.162 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.162 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.162 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.162 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG com.networknt.schema.TypeValidator debug - validate( "b9cfc283-0899-4a12-92dd-aed30b134f94", {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:44.163 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG com.networknt.schema.TypeValidator debug - validate( "15f0e259", {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:44.163 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.163 [XNIO-1 task-1] i1qd20ESS6iFQAikIJs7dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.177 [XNIO-1 task-1] BUWlDiWOSOioBcjnAS0W9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.177 [XNIO-1 task-1] BUWlDiWOSOioBcjnAS0W9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.177 [XNIO-1 task-1] BUWlDiWOSOioBcjnAS0W9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.178 [XNIO-1 task-1] BUWlDiWOSOioBcjnAS0W9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.224 [XNIO-1 task-1] 577LRXgBR8-rPiuyi888_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.224 [XNIO-1 task-1] 577LRXgBR8-rPiuyi888_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.224 [XNIO-1 task-1] 577LRXgBR8-rPiuyi888_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.225 [XNIO-1 task-1] 577LRXgBR8-rPiuyi888_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.266 [XNIO-1 task-1] e1F6rl3eRayQzsiE4CY_pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8be92aa +17:00:44.266 [XNIO-1 task-1] e1F6rl3eRayQzsiE4CY_pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.266 [XNIO-1 task-1] e1F6rl3eRayQzsiE4CY_pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.266 [XNIO-1 task-1] e1F6rl3eRayQzsiE4CY_pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8be92aa +17:00:44.272 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:254edee7-fd2a-4c06-a990-2bab24519d7e +17:00:44.277 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:254edee7-fd2a-4c06-a990-2bab24519d7e +17:00:44.285 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.285 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.286 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.286 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.286 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.286 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG com.networknt.schema.TypeValidator debug - validate( "21499f79-e6b3-47e9-ad8a-8f46581b5d54", {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:44.287 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1ece00cd", {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:44.287 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.287 [XNIO-1 task-1] DhOkuamYSgCEwB9IosrmWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1ece00cd","serviceName":"f89b2415-501f-4acc-83b3-dcfae76e","serviceDesc":"21499f79-e6b3-47e9-ad8a-8f46581b5d54","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.289 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1ece00cd +17:00:44.310 [XNIO-1 task-1] ZfZTpF9QSySr7uA77zjtXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece00cd +17:00:44.311 [XNIO-1 task-1] ZfZTpF9QSySr7uA77zjtXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.311 [XNIO-1 task-1] ZfZTpF9QSySr7uA77zjtXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.311 [XNIO-1 task-1] ZfZTpF9QSySr7uA77zjtXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece00cd +17:00:44.323 [XNIO-1 task-1] xnskYQ3DSyaoQjeia79tLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1b9741dd, base path is set to: null +17:00:44.324 [XNIO-1 task-1] xnskYQ3DSyaoQjeia79tLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.324 [XNIO-1 task-1] xnskYQ3DSyaoQjeia79tLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.324 [XNIO-1 task-1] xnskYQ3DSyaoQjeia79tLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1b9741dd, base path is set to: null +17:00:44.325 [XNIO-1 task-1] xnskYQ3DSyaoQjeia79tLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b9741dd", "1b9741dd", serviceId) +17:00:44.337 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1b9741dd +17:00:44.385 [XNIO-1 task-1] PNd7LGQaT-yRGjMxs0E6jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ada1a176 +17:00:44.385 [XNIO-1 task-1] PNd7LGQaT-yRGjMxs0E6jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.385 [XNIO-1 task-1] PNd7LGQaT-yRGjMxs0E6jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.386 [XNIO-1 task-1] PNd7LGQaT-yRGjMxs0E6jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ada1a176 +17:00:44.434 [XNIO-1 task-1] XGVd9ZgpQECnE6KEqoIxAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/15f0e259, base path is set to: null +17:00:44.435 [XNIO-1 task-1] XGVd9ZgpQECnE6KEqoIxAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.435 [XNIO-1 task-1] XGVd9ZgpQECnE6KEqoIxAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.435 [XNIO-1 task-1] XGVd9ZgpQECnE6KEqoIxAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/15f0e259, base path is set to: null +17:00:44.435 [XNIO-1 task-1] XGVd9ZgpQECnE6KEqoIxAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "15f0e259", "15f0e259", serviceId) +17:00:44.440 [XNIO-1 task-1] Wa3nYsuHR1CO5hJBTEKcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece00cd +17:00:44.440 [XNIO-1 task-1] Wa3nYsuHR1CO5hJBTEKcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.440 [XNIO-1 task-1] Wa3nYsuHR1CO5hJBTEKcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.440 [XNIO-1 task-1] Wa3nYsuHR1CO5hJBTEKcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece00cd +17:00:44.442 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1ece00cd +17:00:44.457 [XNIO-1 task-1] lBRxaLJ2StONSJbxUBaz1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.457 [XNIO-1 task-1] lBRxaLJ2StONSJbxUBaz1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.457 [XNIO-1 task-1] lBRxaLJ2StONSJbxUBaz1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.479 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.480 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.480 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.481 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.481 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.481 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.481 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.481 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG com.networknt.schema.TypeValidator debug - validate( "f954f17f-21a6-4bb2-9bf4-fcc3cd86", {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:44.481 [XNIO-1 task-1] CZvA0CoiTxaLuYcJ-I61tA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e6e26a59","serviceName":"f954f17f-21a6-4bb2-9bf4-fcc3cd86","serviceDesc":"8264979d-d3d9-4642-815f-081c314095b5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.500 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.501 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.501 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.502 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.502 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.502 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.502 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.502 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d3f00eb-fa85-45b3-bd94-eaed1035", {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:44.502 [XNIO-1 task-1] qAraNM_lQ2-clcKyiftlhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"15f0e259","serviceName":"8d3f00eb-fa85-45b3-bd94-eaed1035","serviceDesc":"b9cfc283-0899-4a12-92dd-aed30b134f94","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.515 [XNIO-1 task-1] QB8lf2vxSQiq13s807bknQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6e26a59, base path is set to: null +17:00:44.515 [XNIO-1 task-1] QB8lf2vxSQiq13s807bknQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.516 [XNIO-1 task-1] QB8lf2vxSQiq13s807bknQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.516 [XNIO-1 task-1] QB8lf2vxSQiq13s807bknQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e6e26a59, base path is set to: null +17:00:44.516 [XNIO-1 task-1] QB8lf2vxSQiq13s807bknQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e6e26a59", "e6e26a59", serviceId) +17:00:44.537 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.537 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.537 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.538 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.538 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.538 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG com.networknt.schema.TypeValidator debug - validate( "819c53db-8ce8-40cc-ae74-c87c107dede0", {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:44.538 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG com.networknt.schema.TypeValidator debug - validate( "a569299d", {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:44.538 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.538 [XNIO-1 task-1] 14HR0ZT6Roiy1YGKHcCCmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a569299d","serviceName":"8d29d1a2-4872-4762-985f-43e372d0","serviceDesc":"819c53db-8ce8-40cc-ae74-c87c107dede0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.559 [XNIO-1 task-1] iEjbESF2Szq9KwiyXb43cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5c93bf1 +17:00:44.559 [XNIO-1 task-1] iEjbESF2Szq9KwiyXb43cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.560 [XNIO-1 task-1] iEjbESF2Szq9KwiyXb43cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.560 [XNIO-1 task-1] iEjbESF2Szq9KwiyXb43cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5c93bf1 +17:00:44.579 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.579 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.580 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.581 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.582 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.582 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.582 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.582 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "966cea4b-8d0a-4373-a7ba-afcf4868", {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:44.582 [XNIO-1 task-1] a6YHm1x7QvuCHvesAY4ZCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.593 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:32f33edd-6c44-4a5e-9b81-b9c15e17c4e7 +Jun 28, 2024 5:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +17:00:44.595 [XNIO-1 task-1] zaakD0rWTCi6wbXyfipGLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/35f33600 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +17:00:44.596 [XNIO-1 task-1] zaakD0rWTCi6wbXyfipGLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.596 [XNIO-1 task-1] zaakD0rWTCi6wbXyfipGLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/35f33600, base path is set to: null +17:00:44.596 [XNIO-1 task-1] zaakD0rWTCi6wbXyfipGLw DEBUG com.networknt.schema.TypeValidator debug - validate( "35f33600", "35f33600", serviceId) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.601 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.601 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.601 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.602 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.602 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.602 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.602 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.602 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG com.networknt.schema.TypeValidator debug - validate( "966cea4b-8d0a-4373-a7ba-afcf4868", {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:44.602 [XNIO-1 task-1] xNgUUKqUR9abdTnzGca2rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"35f33600","serviceName":"966cea4b-8d0a-4373-a7ba-afcf4868","serviceDesc":"00473aa0-02f2-4a24-bb52-434a62108415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.610 [XNIO-1 task-1] UZ_GuSVoTMeYPm04ksrgRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/15f0e259, base path is set to: null +17:00:44.610 [XNIO-1 task-1] UZ_GuSVoTMeYPm04ksrgRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.610 [XNIO-1 task-1] UZ_GuSVoTMeYPm04ksrgRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.611 [XNIO-1 task-1] UZ_GuSVoTMeYPm04ksrgRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/15f0e259, base path is set to: null +17:00:44.611 [XNIO-1 task-1] UZ_GuSVoTMeYPm04ksrgRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "15f0e259", "15f0e259", serviceId) +17:00:44.650 [XNIO-1 task-1] kwA6ZPlOSfuJ-p1-bKUrgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a569299d +17:00:44.650 [XNIO-1 task-1] kwA6ZPlOSfuJ-p1-bKUrgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.651 [XNIO-1 task-1] kwA6ZPlOSfuJ-p1-bKUrgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.651 [XNIO-1 task-1] kwA6ZPlOSfuJ-p1-bKUrgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a569299d +17:00:44.655 [XNIO-1 task-1] 9F7doxfaTFWUcuZGqXXeYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.655 [XNIO-1 task-1] 9F7doxfaTFWUcuZGqXXeYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.656 [XNIO-1 task-1] 9F7doxfaTFWUcuZGqXXeYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.656 [XNIO-1 task-1] 9F7doxfaTFWUcuZGqXXeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.689 [XNIO-1 task-1] YTNx55GcS8icwD7m7y0uSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/35f33600, base path is set to: null +17:00:44.689 [XNIO-1 task-1] YTNx55GcS8icwD7m7y0uSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.689 [XNIO-1 task-1] YTNx55GcS8icwD7m7y0uSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.689 [XNIO-1 task-1] YTNx55GcS8icwD7m7y0uSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/35f33600, base path is set to: null +17:00:44.690 [XNIO-1 task-1] YTNx55GcS8icwD7m7y0uSg DEBUG com.networknt.schema.TypeValidator debug - validate( "35f33600", "35f33600", serviceId) +17:00:44.696 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25a49246 +17:00:44.719 [XNIO-1 task-1] U7x20V-jS6qs51_3mZFdMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.719 [XNIO-1 task-1] U7x20V-jS6qs51_3mZFdMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.719 [XNIO-1 task-1] U7x20V-jS6qs51_3mZFdMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.719 [XNIO-1 task-1] U7x20V-jS6qs51_3mZFdMA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.727 [XNIO-1 task-1] DNM13gLWQbmb9H4Ld3dNnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.727 [XNIO-1 task-1] DNM13gLWQbmb9H4Ld3dNnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.727 [XNIO-1 task-1] DNM13gLWQbmb9H4Ld3dNnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.728 [XNIO-1 task-1] DNM13gLWQbmb9H4Ld3dNnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.750 [XNIO-1 task-1] d70N1OkHTdCoYSu_lTW3zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a569299d +17:00:44.750 [XNIO-1 task-1] d70N1OkHTdCoYSu_lTW3zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.750 [XNIO-1 task-1] d70N1OkHTdCoYSu_lTW3zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.751 [XNIO-1 task-1] d70N1OkHTdCoYSu_lTW3zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a569299d +17:00:44.770 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:25a49246 +17:00:44.785 [XNIO-1 task-1] JePa33emRVilZWluJh6MvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.785 [XNIO-1 task-1] JePa33emRVilZWluJh6MvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.786 [XNIO-1 task-1] JePa33emRVilZWluJh6MvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.812 [XNIO-1 task-1] FbDZnxzhT7eRUsZEgNqmow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.813 [XNIO-1 task-1] FbDZnxzhT7eRUsZEgNqmow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.813 [XNIO-1 task-1] FbDZnxzhT7eRUsZEgNqmow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.834 [XNIO-1 task-1] qk3NRtkvRnCbFw0rrt4EHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.834 [XNIO-1 task-1] qk3NRtkvRnCbFw0rrt4EHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.835 [XNIO-1 task-1] qk3NRtkvRnCbFw0rrt4EHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.835 [XNIO-1 task-1] qk3NRtkvRnCbFw0rrt4EHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.849 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.850 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.850 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.851 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.851 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.851 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d515e332-b07d-4351-b568-326bbcf6a488", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:44.851 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0f921331", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:44.851 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.851 [XNIO-1 task-1] Qw5SCSvNRECPghyigmCAiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.885 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.885 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.886 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.886 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.886 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.887 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.887 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:44.887 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG com.networknt.schema.TypeValidator debug - validate( "8dbc8555-3203-4b14-8990-56341e1f", {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:44.887 [XNIO-1 task-1] 8M9OHtDjQW6lmkwkZ6AabA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"039ec612","serviceName":"8dbc8555-3203-4b14-8990-56341e1f","serviceDesc":"432d5c0e-45d5-4036-8285-25cdeb20dcf3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.900 [XNIO-1 task-1] VYWY9SKDSMuv2SYSwNYZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.900 [XNIO-1 task-1] VYWY9SKDSMuv2SYSwNYZ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.900 [XNIO-1 task-1] VYWY9SKDSMuv2SYSwNYZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:44.901 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a75f66ed +17:00:44.902 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a75f66ed +17:00:44.911 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.912 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.912 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.912 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.913 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.913 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG com.networknt.schema.TypeValidator debug - validate( "d515e332-b07d-4351-b568-326bbcf6a488", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:44.913 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f921331", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:44.913 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.913 [XNIO-1 task-1] VWpszmbmRvmVSJ14rw1qyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.925 [XNIO-1 task-1] _x1pSDEoSM6xTk5Uo6TcTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/039ec612 +17:00:44.926 [XNIO-1 task-1] _x1pSDEoSM6xTk5Uo6TcTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.926 [XNIO-1 task-1] _x1pSDEoSM6xTk5Uo6TcTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.926 [XNIO-1 task-1] _x1pSDEoSM6xTk5Uo6TcTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/039ec612 +17:00:44.934 [XNIO-1 task-1] TScKWBFPRuOaVUyGlgpEXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/039ec612, base path is set to: null +17:00:44.934 [XNIO-1 task-1] TScKWBFPRuOaVUyGlgpEXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.934 [XNIO-1 task-1] TScKWBFPRuOaVUyGlgpEXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.934 [XNIO-1 task-1] TScKWBFPRuOaVUyGlgpEXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/039ec612, base path is set to: null +17:00:44.934 [XNIO-1 task-1] TScKWBFPRuOaVUyGlgpEXw DEBUG com.networknt.schema.TypeValidator debug - validate( "039ec612", "039ec612", serviceId) +17:00:44.949 [XNIO-1 task-1] OswrvoI-QQiEMiG6KJDaIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a75f66ed +17:00:44.949 [XNIO-1 task-1] OswrvoI-QQiEMiG6KJDaIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.949 [XNIO-1 task-1] OswrvoI-QQiEMiG6KJDaIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.949 [XNIO-1 task-1] OswrvoI-QQiEMiG6KJDaIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a75f66ed +17:00:44.953 [XNIO-1 task-1] 3gSmyaI5T66dw97N5Z5Mnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a75f66ed, base path is set to: null +17:00:44.954 [XNIO-1 task-1] 3gSmyaI5T66dw97N5Z5Mnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.954 [XNIO-1 task-1] 3gSmyaI5T66dw97N5Z5Mnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.954 [XNIO-1 task-1] 3gSmyaI5T66dw97N5Z5Mnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a75f66ed, base path is set to: null +17:00:44.954 [XNIO-1 task-1] 3gSmyaI5T66dw97N5Z5Mnw DEBUG com.networknt.schema.TypeValidator debug - validate( "a75f66ed", "a75f66ed", serviceId) +17:00:44.955 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a75f66ed +17:00:44.965 [XNIO-1 task-1] LDdL15FoSduV8u3jdV7OLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f921331 +17:00:44.965 [XNIO-1 task-1] LDdL15FoSduV8u3jdV7OLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.965 [XNIO-1 task-1] LDdL15FoSduV8u3jdV7OLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:44.966 [XNIO-1 task-1] LDdL15FoSduV8u3jdV7OLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f921331 +17:00:44.970 [XNIO-1 task-1] wOw9ag3dTKy8z5wrYHe5pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f921331, base path is set to: null +17:00:44.970 [XNIO-1 task-1] wOw9ag3dTKy8z5wrYHe5pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:44.970 [XNIO-1 task-1] wOw9ag3dTKy8z5wrYHe5pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:44.970 [XNIO-1 task-1] wOw9ag3dTKy8z5wrYHe5pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f921331, base path is set to: null +17:00:44.971 [XNIO-1 task-1] wOw9ag3dTKy8z5wrYHe5pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0f921331", "0f921331", serviceId) +17:00:44.977 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.977 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.978 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:44.978 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.978 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:44.979 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG com.networknt.schema.TypeValidator debug - validate( "d515e332-b07d-4351-b568-326bbcf6a488", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:44.979 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f921331", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:44.979 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:44.979 [XNIO-1 task-1] DI9XUCGcQTaNENdLwN9yvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:44.996 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.002 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.002 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.002 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.003 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.003 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.003 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG com.networknt.schema.TypeValidator debug - validate( "d515e332-b07d-4351-b568-326bbcf6a488", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:45.003 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG com.networknt.schema.TypeValidator debug - validate( "0f921331", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:45.003 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:45.003 [XNIO-1 task-1] iQ-MH_0XRoOqtZ7nG2oA1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0f921331","serviceName":"c01f0e91-7416-443b-9784-eb394856","serviceDesc":"d515e332-b07d-4351-b568-326bbcf6a488","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.023 [XNIO-1 task-1] uxf6DPywTCmDEd52kYJZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f921331 +17:00:45.024 [XNIO-1 task-1] uxf6DPywTCmDEd52kYJZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.024 [XNIO-1 task-1] uxf6DPywTCmDEd52kYJZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.024 [XNIO-1 task-1] uxf6DPywTCmDEd52kYJZqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0f921331 +17:00:45.029 [XNIO-1 task-1] eImd82mOQAy8VzvRXqrr4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.029 [XNIO-1 task-1] eImd82mOQAy8VzvRXqrr4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.029 [XNIO-1 task-1] eImd82mOQAy8VzvRXqrr4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.043 [XNIO-1 task-1] 4NAH2MCTTi2BBvxalSjCeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f921331, base path is set to: null +17:00:45.044 [XNIO-1 task-1] 4NAH2MCTTi2BBvxalSjCeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.044 [XNIO-1 task-1] 4NAH2MCTTi2BBvxalSjCeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.044 [XNIO-1 task-1] 4NAH2MCTTi2BBvxalSjCeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0f921331, base path is set to: null +17:00:45.045 [XNIO-1 task-1] 4NAH2MCTTi2BBvxalSjCeA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f921331", "0f921331", serviceId) +17:00:45.057 [XNIO-1 task-1] xSTWydvaR-q43gSPYlMT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.057 [XNIO-1 task-1] xSTWydvaR-q43gSPYlMT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.057 [XNIO-1 task-1] xSTWydvaR-q43gSPYlMT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.059 [XNIO-1 task-1] xSTWydvaR-q43gSPYlMT1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.073 [XNIO-1 task-1] jlHecHxkSkyez7MqTUJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4dd6e64e +17:00:45.074 [XNIO-1 task-1] jlHecHxkSkyez7MqTUJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.074 [XNIO-1 task-1] jlHecHxkSkyez7MqTUJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.074 [XNIO-1 task-1] jlHecHxkSkyez7MqTUJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4dd6e64e +17:00:45.078 [XNIO-1 task-1] Ppsl6iooQ2KuYd-wtfJq3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4dd6e64e, base path is set to: null +17:00:45.079 [XNIO-1 task-1] Ppsl6iooQ2KuYd-wtfJq3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.079 [XNIO-1 task-1] Ppsl6iooQ2KuYd-wtfJq3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.079 [XNIO-1 task-1] Ppsl6iooQ2KuYd-wtfJq3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4dd6e64e, base path is set to: null +17:00:45.079 [XNIO-1 task-1] Ppsl6iooQ2KuYd-wtfJq3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4dd6e64e", "4dd6e64e", serviceId) +17:00:45.088 [XNIO-1 task-1] vqsOVx80RYGfptcwKWUNCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.088 [XNIO-1 task-1] vqsOVx80RYGfptcwKWUNCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.088 [XNIO-1 task-1] vqsOVx80RYGfptcwKWUNCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.101 [XNIO-1 task-1] s2DPlUpLR4uwbx_991m7zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c32a9499, base path is set to: null +17:00:45.101 [XNIO-1 task-1] s2DPlUpLR4uwbx_991m7zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.101 [XNIO-1 task-1] s2DPlUpLR4uwbx_991m7zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.101 [XNIO-1 task-1] s2DPlUpLR4uwbx_991m7zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c32a9499, base path is set to: null +17:00:45.102 [XNIO-1 task-1] s2DPlUpLR4uwbx_991m7zw DEBUG com.networknt.schema.TypeValidator debug - validate( "c32a9499", "c32a9499", serviceId) +17:00:45.105 [XNIO-1 task-1] IaQ3pZ6fTI6ddKE-lkqe3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c32a9499 +17:00:45.105 [XNIO-1 task-1] IaQ3pZ6fTI6ddKE-lkqe3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.105 [XNIO-1 task-1] IaQ3pZ6fTI6ddKE-lkqe3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.106 [XNIO-1 task-1] IaQ3pZ6fTI6ddKE-lkqe3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c32a9499 +17:00:45.106 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5732d314-0bd0-44f7-9875-44f0f0668a50 +17:00:45.122 [XNIO-1 task-1] qnU-NpF9Q_iWvh-HZriUDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.122 [XNIO-1 task-1] qnU-NpF9Q_iWvh-HZriUDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.122 [XNIO-1 task-1] qnU-NpF9Q_iWvh-HZriUDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.141 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.143 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.145 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.145 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.146 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.146 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.146 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.146 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG com.networknt.schema.TypeValidator debug - validate( "c44d6c7d-b61c-444f-ba2c-8307b82e", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:45.147 [XNIO-1 task-1] EgqW8xeuSgeW7BvX7jaKpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.166 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.166 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.166 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.167 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.167 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.167 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.167 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.167 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c44d6c7d-b61c-444f-ba2c-8307b82e", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:45.167 [XNIO-1 task-1] tYowg6p7RTKEHN7URb9P9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.197 [XNIO-1 task-1] Zn0jh_MzRUK3QZPVYltMZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.197 [XNIO-1 task-1] Zn0jh_MzRUK3QZPVYltMZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.197 [XNIO-1 task-1] Zn0jh_MzRUK3QZPVYltMZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.227 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.227 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.227 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.228 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.228 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.228 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.228 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.228 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "53e13b83-6dda-44f6-821e-4d309da6", {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:45.228 [XNIO-1 task-1] OYuPn_uRQxi4VmKJAfsDDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.252 [XNIO-1 task-1] 2SgAJiSWRHGhJikLR7JbAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7f8b95e, base path is set to: null +17:00:45.252 [XNIO-1 task-1] 2SgAJiSWRHGhJikLR7JbAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.258 [XNIO-1 task-1] 2SgAJiSWRHGhJikLR7JbAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.258 [XNIO-1 task-1] 2SgAJiSWRHGhJikLR7JbAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7f8b95e, base path is set to: null +17:00:45.259 [XNIO-1 task-1] 2SgAJiSWRHGhJikLR7JbAA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7f8b95e", "f7f8b95e", serviceId) +17:00:45.268 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.269 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.269 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.271 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.271 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.271 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f37adc3-ffda-4d5a-b68b-bcb19fd269c9", {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:45.271 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "620a5fff", {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:45.273 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:45.273 [XNIO-1 task-1] 74PlGZUISK2hJxjos6SijQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"620a5fff","serviceName":"53e13b83-6dda-44f6-821e-4d309da6","serviceDesc":"5f37adc3-ffda-4d5a-b68b-bcb19fd269c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.288 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.289 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.290 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.291 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.291 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.291 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG com.networknt.schema.TypeValidator debug - validate( "d8326fde-5ef5-4ab9-ac74-8c3dc43054a1", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:45.291 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7f8b95e", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:45.291 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:45.291 [XNIO-1 task-1] REHmEYobRmap0AueB7dDEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7f8b95e","serviceName":"c44d6c7d-b61c-444f-ba2c-8307b82e","serviceDesc":"d8326fde-5ef5-4ab9-ac74-8c3dc43054a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.306 [XNIO-1 task-1] z2PAJGbsTWGZc7h22OBr8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/620a5fff +17:00:45.306 [XNIO-1 task-1] z2PAJGbsTWGZc7h22OBr8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.306 [XNIO-1 task-1] z2PAJGbsTWGZc7h22OBr8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.306 [XNIO-1 task-1] z2PAJGbsTWGZc7h22OBr8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/620a5fff +17:00:45.312 [XNIO-1 task-1] AWKJwvcDQoG-YFK27PAVgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/620a5fff, base path is set to: null +17:00:45.312 [XNIO-1 task-1] AWKJwvcDQoG-YFK27PAVgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.312 [XNIO-1 task-1] AWKJwvcDQoG-YFK27PAVgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.312 [XNIO-1 task-1] AWKJwvcDQoG-YFK27PAVgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/620a5fff, base path is set to: null +17:00:45.313 [XNIO-1 task-1] AWKJwvcDQoG-YFK27PAVgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "620a5fff", "620a5fff", serviceId) +17:00:45.318 [XNIO-1 task-1] RoUyJG5PQIqfavr0V3-QUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/620a5fff +17:00:45.318 [XNIO-1 task-1] RoUyJG5PQIqfavr0V3-QUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.318 [XNIO-1 task-1] RoUyJG5PQIqfavr0V3-QUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.318 [XNIO-1 task-1] RoUyJG5PQIqfavr0V3-QUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/620a5fff +17:00:45.321 [XNIO-1 task-1] Q9jBEODgQ1OCwMT6dgwbHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/620a5fff, base path is set to: null +17:00:45.323 [XNIO-1 task-1] Q9jBEODgQ1OCwMT6dgwbHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.323 [XNIO-1 task-1] Q9jBEODgQ1OCwMT6dgwbHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.323 [XNIO-1 task-1] Q9jBEODgQ1OCwMT6dgwbHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/620a5fff, base path is set to: null +17:00:45.324 [XNIO-1 task-1] Q9jBEODgQ1OCwMT6dgwbHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "620a5fff", "620a5fff", serviceId) +17:00:45.343 [XNIO-1 task-1] FiJq1do6RO-5FbUZ4jVd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f7f8b95e +17:00:45.344 [XNIO-1 task-1] FiJq1do6RO-5FbUZ4jVd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.344 [XNIO-1 task-1] FiJq1do6RO-5FbUZ4jVd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.344 [XNIO-1 task-1] FiJq1do6RO-5FbUZ4jVd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f7f8b95e +17:00:45.369 [XNIO-1 task-1] fdx38RLTTZWJqiqkLegVeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.373 [XNIO-1 task-1] fdx38RLTTZWJqiqkLegVeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.373 [XNIO-1 task-1] fdx38RLTTZWJqiqkLegVeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.374 [XNIO-1 task-1] fdx38RLTTZWJqiqkLegVeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.375 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.420 [XNIO-1 task-1] oUWafmLXSxmyYb0hyVPH3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.421 [XNIO-1 task-1] oUWafmLXSxmyYb0hyVPH3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.421 [XNIO-1 task-1] oUWafmLXSxmyYb0hyVPH3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.438 [XNIO-1 task-1] Rjlw8cd4QySciMyxSA1BeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.438 [XNIO-1 task-1] Rjlw8cd4QySciMyxSA1BeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.439 [XNIO-1 task-1] Rjlw8cd4QySciMyxSA1BeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.441 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:dc94bc13 +17:00:45.468 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c09e7edd-ec88-4150-9ac3-1c45635f5eb2 +17:00:45.489 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b669f784-b3b2-413f-9121-74555d055e50 +17:00:45.494 [XNIO-1 task-1] 5EIm77gyTXeBFeORAfPe4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dc94bc13 +17:00:45.494 [XNIO-1 task-1] 5EIm77gyTXeBFeORAfPe4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.494 [XNIO-1 task-1] 5EIm77gyTXeBFeORAfPe4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.494 [XNIO-1 task-1] 5EIm77gyTXeBFeORAfPe4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dc94bc13 +17:00:45.496 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:dc94bc13 +17:00:45.509 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.509 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.509 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.510 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.510 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.510 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.510 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.510 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG com.networknt.schema.TypeValidator debug - validate( "878d079d-ae94-4464-be11-2cc81757", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:45.510 [XNIO-1 task-1] 62yFTK2fR2CqC0C5zJ03LA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.522 [XNIO-1 task-1] 6ZTjdolrSzqCSwehcm0x5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.522 [XNIO-1 task-1] 6ZTjdolrSzqCSwehcm0x5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.522 [XNIO-1 task-1] 6ZTjdolrSzqCSwehcm0x5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.538 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.538 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.538 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.539 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.539 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.539 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.539 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.539 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG com.networknt.schema.TypeValidator debug - validate( "02959bdd-4898-4e5e-aa12-666071e0", {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:45.539 [XNIO-1 task-1] t4nYBwK7RR-lKtA9-Ljf2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.553 [XNIO-1 task-1] drbY8hHKTJu_jksRGsl2Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.555 [XNIO-1 task-1] drbY8hHKTJu_jksRGsl2Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.555 [XNIO-1 task-1] drbY8hHKTJu_jksRGsl2Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.572 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.572 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.573 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.573 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.573 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.573 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.573 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.574 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG com.networknt.schema.TypeValidator debug - validate( "02959bdd-4898-4e5e-aa12-666071e0", {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:45.574 [XNIO-1 task-1] mjyW45B3QgCGuJJMigQlBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe8a5c8b","serviceName":"02959bdd-4898-4e5e-aa12-666071e0","serviceDesc":"af0041e3-7e8c-47c3-a390-4f2786cf38e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.577 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a660e1ad +17:00:45.582 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a660e1ad +17:00:45.597 [XNIO-1 task-1] VMoYCRoXRQOYJDJ0AafWRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.598 [XNIO-1 task-1] VMoYCRoXRQOYJDJ0AafWRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.598 [XNIO-1 task-1] VMoYCRoXRQOYJDJ0AafWRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.613 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7dcafedb +17:00:45.620 [XNIO-1 task-1] GnvTqxkzTqKFt7GGXzWgyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41052233, base path is set to: null +17:00:45.621 [XNIO-1 task-1] GnvTqxkzTqKFt7GGXzWgyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.621 [XNIO-1 task-1] GnvTqxkzTqKFt7GGXzWgyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.621 [XNIO-1 task-1] GnvTqxkzTqKFt7GGXzWgyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41052233, base path is set to: null +17:00:45.621 [XNIO-1 task-1] GnvTqxkzTqKFt7GGXzWgyg DEBUG com.networknt.schema.TypeValidator debug - validate( "41052233", "41052233", serviceId) +17:00:45.657 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:575f19bf-81b2-41cf-8330-f6f3741aec31 +17:00:45.664 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.664 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.667 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.668 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.668 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.668 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG com.networknt.schema.TypeValidator debug - validate( "ece694de-a7b2-4cf8-8cf9-8fed40942672", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:45.668 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG com.networknt.schema.TypeValidator debug - validate( "766a0852", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:45.668 [XNIO-1 task-1] d4zjdKTURt-e3I3gqqmvYw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:45.673 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a660e1ad +17:00:45.690 [XNIO-1 task-1] pzISZ5yxSkGq-n_6Zs4VCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe8a5c8b, base path is set to: null +17:00:45.690 [XNIO-1 task-1] pzISZ5yxSkGq-n_6Zs4VCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.691 [XNIO-1 task-1] pzISZ5yxSkGq-n_6Zs4VCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.691 [XNIO-1 task-1] pzISZ5yxSkGq-n_6Zs4VCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe8a5c8b, base path is set to: null +17:00:45.691 [XNIO-1 task-1] pzISZ5yxSkGq-n_6Zs4VCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe8a5c8b", "fe8a5c8b", serviceId) +17:00:45.717 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:10b9d1c1-8ec9-4b09-a6fe-1d310b7d3949 +17:00:45.718 [XNIO-1 task-1] etTIgsOnRHKnLWfKj1HInQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.718 [XNIO-1 task-1] etTIgsOnRHKnLWfKj1HInQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.718 [XNIO-1 task-1] etTIgsOnRHKnLWfKj1HInQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.718 [XNIO-1 task-1] etTIgsOnRHKnLWfKj1HInQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.734 [XNIO-1 task-1] MCefcapTSb-50nR6yTi6OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.735 [XNIO-1 task-1] MCefcapTSb-50nR6yTi6OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.735 [XNIO-1 task-1] MCefcapTSb-50nR6yTi6OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.755 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.755 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.755 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.756 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.756 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.756 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.756 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:45.756 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG com.networknt.schema.TypeValidator debug - validate( "48ce9ccf-44a6-44c8-8478-15617c27", {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:45.756 [XNIO-1 task-1] A4DJYW7UTt-FMQJedKIckg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7b57dada","serviceName":"48ce9ccf-44a6-44c8-8478-15617c27","serviceDesc":"29532b94-c5dd-42bd-965a-f56c29a30489","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.770 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:575f19bf-81b2-41cf-8330-f6f3741aec31 +17:00:45.773 [XNIO-1 task-1] CxSpYFojRg6GzJY4zpQCDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.773 [XNIO-1 task-1] CxSpYFojRg6GzJY4zpQCDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.773 [XNIO-1 task-1] CxSpYFojRg6GzJY4zpQCDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.774 [XNIO-1 task-1] CxSpYFojRg6GzJY4zpQCDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.849 [XNIO-1 task-1] m2h6cr4NT8udqJoPiv-giw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41052233, base path is set to: null +17:00:45.850 [XNIO-1 task-1] m2h6cr4NT8udqJoPiv-giw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.850 [XNIO-1 task-1] m2h6cr4NT8udqJoPiv-giw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.850 [XNIO-1 task-1] m2h6cr4NT8udqJoPiv-giw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41052233, base path is set to: null +17:00:45.850 [XNIO-1 task-1] m2h6cr4NT8udqJoPiv-giw DEBUG com.networknt.schema.TypeValidator debug - validate( "41052233", "41052233", serviceId) +17:00:45.868 [XNIO-1 task-1] DMkJ0dHfSUyGcCxBp9Rlaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7b57dada +17:00:45.868 [XNIO-1 task-1] DMkJ0dHfSUyGcCxBp9Rlaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.869 [XNIO-1 task-1] DMkJ0dHfSUyGcCxBp9Rlaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.869 [XNIO-1 task-1] DMkJ0dHfSUyGcCxBp9Rlaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7b57dada +17:00:45.870 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6f2fbd3b-70f5-4c79-87cf-bf734a8ec1e1 +17:00:45.876 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6f2fbd3b-70f5-4c79-87cf-bf734a8ec1e1 +17:00:45.882 [XNIO-1 task-1] oN7arCbpSB6vIxO1QjKtBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de87ae25 +17:00:45.882 [XNIO-1 task-1] oN7arCbpSB6vIxO1QjKtBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.882 [XNIO-1 task-1] oN7arCbpSB6vIxO1QjKtBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.882 [XNIO-1 task-1] oN7arCbpSB6vIxO1QjKtBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de87ae25 +17:00:45.890 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7dcafedb +17:00:45.906 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.906 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.907 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.908 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:45.908 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:45.908 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG com.networknt.schema.TypeValidator debug - validate( "ece694de-a7b2-4cf8-8cf9-8fed40942672", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +17:00:45.908 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG com.networknt.schema.TypeValidator debug - validate( "766a0852", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +17:00:45.908 [XNIO-1 task-1] _cSYLcqTRDigqZYJENjAeA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"766a0852","serviceName":"878d079d-ae94-4464-be11-2cc81757","serviceDesc":"ece694de-a7b2-4cf8-8cf9-8fed40942672","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +17:00:45.908 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:254edee7-fd2a-4c06-a990-2bab24519d7e +17:00:45.925 [XNIO-1 task-1] DdpZai8bQwSOa7zEPq2MXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/766a0852, base path is set to: null +17:00:45.925 [XNIO-1 task-1] DdpZai8bQwSOa7zEPq2MXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.925 [XNIO-1 task-1] DdpZai8bQwSOa7zEPq2MXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.925 [XNIO-1 task-1] DdpZai8bQwSOa7zEPq2MXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/766a0852, base path is set to: null +17:00:45.926 [XNIO-1 task-1] DdpZai8bQwSOa7zEPq2MXA DEBUG com.networknt.schema.TypeValidator debug - validate( "766a0852", "766a0852", serviceId) +17:00:45.931 [XNIO-1 task-1] P7yGLQ9gShS6JI3iyIHxOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/766a0852 +17:00:45.931 [XNIO-1 task-1] P7yGLQ9gShS6JI3iyIHxOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.931 [XNIO-1 task-1] P7yGLQ9gShS6JI3iyIHxOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:45.931 [XNIO-1 task-1] P7yGLQ9gShS6JI3iyIHxOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/766a0852 +17:00:45.936 [XNIO-1 task-1] vFvbbRTkSyqqopcdbtw3ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/766a0852, base path is set to: null +17:00:45.936 [XNIO-1 task-1] vFvbbRTkSyqqopcdbtw3ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.936 [XNIO-1 task-1] vFvbbRTkSyqqopcdbtw3ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:45.936 [XNIO-1 task-1] vFvbbRTkSyqqopcdbtw3ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/766a0852, base path is set to: null +17:00:45.937 [XNIO-1 task-1] vFvbbRTkSyqqopcdbtw3ag DEBUG com.networknt.schema.TypeValidator debug - validate( "766a0852", "766a0852", serviceId) +17:00:45.939 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:26211e92-ac32-43e8-ad56-0b52d7800f66 +17:00:45.954 [XNIO-1 task-1] DjnLs7nTTtuTi_6RvWdgBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.954 [XNIO-1 task-1] DjnLs7nTTtuTi_6RvWdgBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:45.954 [XNIO-1 task-1] DjnLs7nTTtuTi_6RvWdgBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:45.954 [XNIO-1 task-1] DjnLs7nTTtuTi_6RvWdgBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.961 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:26211e92-ac32-43e8-ad56-0b52d7800f66 +17:00:45.964 [XNIO-1 task-1] evLajNCdRx6yEuobmvZ70w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.965 [XNIO-1 task-1] evLajNCdRx6yEuobmvZ70w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.965 [XNIO-1 task-1] evLajNCdRx6yEuobmvZ70w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.978 [XNIO-1 task-1] hgp84Zv0QBy3HG-hNs6azw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:45.978 [XNIO-1 task-1] hgp84Zv0QBy3HG-hNs6azw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.001 [XNIO-1 task-1] hgp84Zv0QBy3HG-hNs6azw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.022 [XNIO-1 task-1] 8cLBHJjoSKOZtsFpai2GRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.022 [XNIO-1 task-1] 8cLBHJjoSKOZtsFpai2GRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.022 [XNIO-1 task-1] 8cLBHJjoSKOZtsFpai2GRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.022 [XNIO-1 task-1] 8cLBHJjoSKOZtsFpai2GRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.048 [XNIO-1 task-1] vtWfjPTmTTyf17hOyh6aNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd6692af +17:00:46.048 [XNIO-1 task-1] vtWfjPTmTTyf17hOyh6aNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.048 [XNIO-1 task-1] vtWfjPTmTTyf17hOyh6aNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.048 [XNIO-1 task-1] vtWfjPTmTTyf17hOyh6aNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd6692af +17:00:46.067 [XNIO-1 task-1] 4f-4-1P-RqKybjOM00RVKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.067 [XNIO-1 task-1] 4f-4-1P-RqKybjOM00RVKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.067 [XNIO-1 task-1] 4f-4-1P-RqKybjOM00RVKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.068 [XNIO-1 task-1] 4f-4-1P-RqKybjOM00RVKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.086 [XNIO-1 task-1] 2XNeyVyXSLeobJ_aL_mepw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788851d6, base path is set to: null +17:00:46.086 [XNIO-1 task-1] 2XNeyVyXSLeobJ_aL_mepw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.087 [XNIO-1 task-1] 2XNeyVyXSLeobJ_aL_mepw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:46.087 [XNIO-1 task-1] 2XNeyVyXSLeobJ_aL_mepw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788851d6, base path is set to: null +17:00:46.088 [XNIO-1 task-1] 2XNeyVyXSLeobJ_aL_mepw DEBUG com.networknt.schema.TypeValidator debug - validate( "788851d6", "788851d6", serviceId) +17:00:46.097 [XNIO-1 task-1] ShstGmdtTjWU9PbOn8tAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.097 [XNIO-1 task-1] ShstGmdtTjWU9PbOn8tAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.097 [XNIO-1 task-1] ShstGmdtTjWU9PbOn8tAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.097 [XNIO-1 task-1] ShstGmdtTjWU9PbOn8tAig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.113 [XNIO-1 task-1] XCfgGlN7TLymf8FmSmEv7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.113 [XNIO-1 task-1] XCfgGlN7TLymf8FmSmEv7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.114 [XNIO-1 task-1] XCfgGlN7TLymf8FmSmEv7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.119 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe8170e8-998e-4188-8630-4c02ffe4d6cd +17:00:46.136 [XNIO-1 task-1] dZR_U6vfRfKh0xq2WXCLRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.136 [XNIO-1 task-1] dZR_U6vfRfKh0xq2WXCLRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.136 [XNIO-1 task-1] dZR_U6vfRfKh0xq2WXCLRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.136 [XNIO-1 task-1] dZR_U6vfRfKh0xq2WXCLRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.138 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fe8170e8-998e-4188-8630-4c02ffe4d6cd +17:00:46.142 [XNIO-1 task-1] Un71USf2Sl6humu8aLgxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.142 [XNIO-1 task-1] Un71USf2Sl6humu8aLgxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.142 [XNIO-1 task-1] Un71USf2Sl6humu8aLgxtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.159 [XNIO-1 task-1] GOXztNKNS_CmlDeNqUndvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.159 [XNIO-1 task-1] GOXztNKNS_CmlDeNqUndvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.159 [XNIO-1 task-1] GOXztNKNS_CmlDeNqUndvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.160 [XNIO-1 task-1] GOXztNKNS_CmlDeNqUndvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.167 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.167 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.167 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.168 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:46.168 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:46.168 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:46.168 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:46.168 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG com.networknt.schema.TypeValidator debug - validate( "38c1ad38-9818-4986-85c2-5c9358e2", {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:46.168 [XNIO-1 task-1] FZzRr2RqSlC0C39Npz7UJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"788851d6","serviceName":"38c1ad38-9818-4986-85c2-5c9358e2","serviceDesc":"f4d951d0-b8e8-4d7a-92f6-15fb3cbf4b8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:46.184 [XNIO-1 task-1] A8ts7IejRfmkS8t0SFA2Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788851d6, base path is set to: null +17:00:46.185 [XNIO-1 task-1] A8ts7IejRfmkS8t0SFA2Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.185 [XNIO-1 task-1] A8ts7IejRfmkS8t0SFA2Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:46.185 [XNIO-1 task-1] A8ts7IejRfmkS8t0SFA2Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788851d6, base path is set to: null +17:00:46.185 [XNIO-1 task-1] A8ts7IejRfmkS8t0SFA2Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "788851d6", "788851d6", serviceId) +17:00:46.193 [XNIO-1 task-1] V9tIZ59DT8KYsuF9TJch4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.193 [XNIO-1 task-1] V9tIZ59DT8KYsuF9TJch4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.193 [XNIO-1 task-1] V9tIZ59DT8KYsuF9TJch4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.193 [XNIO-1 task-1] V9tIZ59DT8KYsuF9TJch4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.211 [XNIO-1 task-1] lo3HOM-qQb6X3eom2_Y4ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.211 [XNIO-1 task-1] lo3HOM-qQb6X3eom2_Y4ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.211 [XNIO-1 task-1] lo3HOM-qQb6X3eom2_Y4ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.231 [XNIO-1 task-1] tzvzl6RiRf6p3VtHipahgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.231 [XNIO-1 task-1] tzvzl6RiRf6p3VtHipahgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.231 [XNIO-1 task-1] tzvzl6RiRf6p3VtHipahgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.232 [XNIO-1 task-1] tzvzl6RiRf6p3VtHipahgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.244 [XNIO-1 task-1] jCfh98FPTAeLgckIVznyuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/619c7739 +17:00:46.245 [XNIO-1 task-1] jCfh98FPTAeLgckIVznyuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.245 [XNIO-1 task-1] jCfh98FPTAeLgckIVznyuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.245 [XNIO-1 task-1] jCfh98FPTAeLgckIVznyuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/619c7739 +17:00:46.264 [XNIO-1 task-1] TLsvEed3ST-RJ9YWrzQUdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c9d8076d, base path is set to: null +17:00:46.265 [XNIO-1 task-1] TLsvEed3ST-RJ9YWrzQUdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.265 [XNIO-1 task-1] TLsvEed3ST-RJ9YWrzQUdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:46.265 [XNIO-1 task-1] TLsvEed3ST-RJ9YWrzQUdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c9d8076d, base path is set to: null +17:00:46.265 [XNIO-1 task-1] TLsvEed3ST-RJ9YWrzQUdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c9d8076d", "c9d8076d", serviceId) +17:00:46.285 [XNIO-1 task-1] 8ixZR2CjRu-wWp9GJQw7vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.285 [XNIO-1 task-1] 8ixZR2CjRu-wWp9GJQw7vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.286 [XNIO-1 task-1] 8ixZR2CjRu-wWp9GJQw7vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.286 [XNIO-1 task-1] 8ixZR2CjRu-wWp9GJQw7vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.291 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.292 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.294 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.295 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:46.295 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:46.295 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +17:00:46.295 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +17:00:46.295 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG com.networknt.schema.TypeValidator debug - validate( "c19393c6-4739-4121-ada6-0496e3b8", {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +17:00:46.295 [XNIO-1 task-1] v96nvCo9T0K0yHdUYXCc1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4fd9aefe","serviceName":"c19393c6-4739-4121-ada6-0496e3b8","serviceDesc":"5a69117b-1710-458e-b0eb-0553ca325556","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +17:00:46.309 [XNIO-1 task-1] V-tAsPHIQJ6mjGkBKRhNJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788851d6, base path is set to: null +17:00:46.310 [XNIO-1 task-1] V-tAsPHIQJ6mjGkBKRhNJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.310 [XNIO-1 task-1] V-tAsPHIQJ6mjGkBKRhNJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:46.310 [XNIO-1 task-1] V-tAsPHIQJ6mjGkBKRhNJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/788851d6, base path is set to: null +17:00:46.311 [XNIO-1 task-1] V-tAsPHIQJ6mjGkBKRhNJg DEBUG com.networknt.schema.TypeValidator debug - validate( "788851d6", "788851d6", serviceId) +17:00:46.321 [XNIO-1 task-1] omy_vbRWSZmAvaqpttVyFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.321 [XNIO-1 task-1] omy_vbRWSZmAvaqpttVyFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.321 [XNIO-1 task-1] omy_vbRWSZmAvaqpttVyFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.321 [XNIO-1 task-1] omy_vbRWSZmAvaqpttVyFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/788851d6 +17:00:46.373 [XNIO-1 task-1] y8ylSND1QB6-uHwHk5DyJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.373 [XNIO-1 task-1] y8ylSND1QB6-uHwHk5DyJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.373 [XNIO-1 task-1] y8ylSND1QB6-uHwHk5DyJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.374 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6d3df35 +17:00:46.375 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6d3df35 +17:00:46.398 [XNIO-1 task-1] ehaDMHb0QoqiwzG4LDV38g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6d3df35 +17:00:46.400 [XNIO-1 task-1] ehaDMHb0QoqiwzG4LDV38g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.400 [XNIO-1 task-1] ehaDMHb0QoqiwzG4LDV38g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.400 [XNIO-1 task-1] ehaDMHb0QoqiwzG4LDV38g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e6d3df35 +17:00:46.401 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e6d3df35 +17:00:46.418 [XNIO-1 task-1] As0LIPL1RIq1fEwEMaKHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4fd9aefe, base path is set to: null +17:00:46.418 [XNIO-1 task-1] As0LIPL1RIq1fEwEMaKHvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.419 [XNIO-1 task-1] As0LIPL1RIq1fEwEMaKHvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +17:00:46.419 [XNIO-1 task-1] As0LIPL1RIq1fEwEMaKHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4fd9aefe, base path is set to: null +17:00:46.422 [XNIO-1 task-1] As0LIPL1RIq1fEwEMaKHvg DEBUG com.networknt.schema.TypeValidator debug - validate( "4fd9aefe", "4fd9aefe", serviceId) +17:00:46.468 [XNIO-1 task-1] JNCGzh7QTi6dLO05COoVIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.468 [XNIO-1 task-1] JNCGzh7QTi6dLO05COoVIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.468 [XNIO-1 task-1] JNCGzh7QTi6dLO05COoVIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.485 [XNIO-1 task-1] 7v9R8IJATOCdfpySNUUAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7d57a331 +17:00:46.485 [XNIO-1 task-1] 7v9R8IJATOCdfpySNUUAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +17:00:46.485 [XNIO-1 task-1] 7v9R8IJATOCdfpySNUUAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +17:00:46.486 [XNIO-1 task-1] 7v9R8IJATOCdfpySNUUAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7d57a331 +17:00:46.504 [XNIO-1 task-1] ihMtgx66R7Ke-hEe-K0Jpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.506 [XNIO-1 task-1] ihMtgx66R7Ke-hEe-K0Jpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.506 [XNIO-1 task-1] ihMtgx66R7Ke-hEe-K0Jpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.507 [XNIO-1 task-1] ihMtgx66R7Ke-hEe-K0Jpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.526 [XNIO-1 task-1] VWE4azVXSTiy94GBMcT55w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.526 [XNIO-1 task-1] VWE4azVXSTiy94GBMcT55w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.526 [XNIO-1 task-1] VWE4azVXSTiy94GBMcT55w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.527 [XNIO-1 task-1] VWE4azVXSTiy94GBMcT55w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.544 [XNIO-1 task-1] VdI7zJOMTimYx_NQnkLFdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.544 [XNIO-1 task-1] VdI7zJOMTimYx_NQnkLFdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.545 [XNIO-1 task-1] VdI7zJOMTimYx_NQnkLFdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +17:00:46.563 [XNIO-1 task-1] 8Nyx4KPuSQiuqWKTfowHuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fef196b, base path is set to: null +17:00:46.563 [XNIO-1 task-1] 8Nyx4KPuSQiuqWKTfowHuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +17:00:46.563 [XNIO-1 task-1] 8Nyx4KPuSQiuqWKTfowHuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} diff --git a/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-token-1.log b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..e4bcf15 --- /dev/null +++ b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3713 @@ +17:00:40.553 [XNIO-1 task-4] 6Z37GqVIREaum15fe8jkmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.553 [XNIO-1 task-4] 6Z37GqVIREaum15fe8jkmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.554 [XNIO-1 task-4] 6Z37GqVIREaum15fe8jkmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.560 [XNIO-1 task-4] 6Z37GqVIREaum15fe8jkmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.568 [XNIO-1 task-4] 6Z37GqVIREaum15fe8jkmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.582 [XNIO-1 task-4] xtwdvxYOSB6rMFg6LlsdDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.583 [XNIO-1 task-4] xtwdvxYOSB6rMFg6LlsdDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.584 [XNIO-1 task-4] xtwdvxYOSB6rMFg6LlsdDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.588 [XNIO-1 task-4] xtwdvxYOSB6rMFg6LlsdDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.589 [XNIO-1 task-2] PEaNWDErSpCh-F_h494wsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.589 [XNIO-1 task-2] PEaNWDErSpCh-F_h494wsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.590 [XNIO-1 task-2] PEaNWDErSpCh-F_h494wsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.591 [XNIO-1 task-2] PEaNWDErSpCh-F_h494wsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Gguiv9ysTmuR95QIhoN3bA redirectUri = http://localhost:8080/authorization +17:00:40.594 [XNIO-1 task-4] xtwdvxYOSB6rMFg6LlsdDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.602 [XNIO-1 task-2] PEaNWDErSpCh-F_h494wsg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.603 [XNIO-1 task-4] 4rYR2o2CR6C9P8ettAS-8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.603 [XNIO-1 task-4] 4rYR2o2CR6C9P8ettAS-8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.603 [XNIO-1 task-4] 4rYR2o2CR6C9P8ettAS-8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.604 [XNIO-1 task-4] 4rYR2o2CR6C9P8ettAS-8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:40.608 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:42a6fc2a-5616-4c59-9015-4a6a316c5a5f +17:00:40.613 [XNIO-1 task-4] 4rYR2o2CR6C9P8ettAS-8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.624 [XNIO-1 task-4] zznu45lPTG6le9eOk5cOIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.625 [XNIO-1 task-4] zznu45lPTG6le9eOk5cOIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.625 [XNIO-1 task-4] zznu45lPTG6le9eOk5cOIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.626 [XNIO-1 task-4] zznu45lPTG6le9eOk5cOIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:40.631 [XNIO-1 task-4] zznu45lPTG6le9eOk5cOIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.638 [XNIO-1 task-4] ut00wvfeTraiCo4RA-fRCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.640 [XNIO-1 task-4] ut00wvfeTraiCo4RA-fRCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.640 [XNIO-1 task-4] ut00wvfeTraiCo4RA-fRCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.641 [XNIO-1 task-4] ut00wvfeTraiCo4RA-fRCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:40.642 [XNIO-1 task-2] 9WMVYy44Si6nFNGJKCYvrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.642 [XNIO-1 task-2] 9WMVYy44Si6nFNGJKCYvrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.643 [XNIO-1 task-2] 9WMVYy44Si6nFNGJKCYvrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.643 [XNIO-1 task-2] 9WMVYy44Si6nFNGJKCYvrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:40.647 [XNIO-1 task-4] ut00wvfeTraiCo4RA-fRCg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.651 [XNIO-1 task-2] 9WMVYy44Si6nFNGJKCYvrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:40.653 [XNIO-1 task-2] 9WMVYy44Si6nFNGJKCYvrQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.677 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b8f1a5a1-75b4-439f-8896-42ad2cb4e032 +17:00:40.678 [XNIO-1 task-1] OV85neQoTGmq3BJFBZWYhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.678 [XNIO-1 task-1] OV85neQoTGmq3BJFBZWYhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.678 [XNIO-1 task-4] NimLuJhRSZ27uG61HCjeNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.678 [XNIO-1 task-4] NimLuJhRSZ27uG61HCjeNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.679 [XNIO-1 task-1] OV85neQoTGmq3BJFBZWYhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.679 [XNIO-1 task-1] OV85neQoTGmq3BJFBZWYhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.680 [XNIO-1 task-4] NimLuJhRSZ27uG61HCjeNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:40.688 [XNIO-1 task-1] OV85neQoTGmq3BJFBZWYhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:40.694 [XNIO-1 task-1] OV85neQoTGmq3BJFBZWYhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.699 [XNIO-1 task-4] NimLuJhRSZ27uG61HCjeNQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:40.699 [XNIO-1 task-4] NimLuJhRSZ27uG61HCjeNQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.701 [XNIO-1 task-1] u0nJGFnDTy2MYshyrhe0wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.701 [XNIO-1 task-1] u0nJGFnDTy2MYshyrhe0wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.702 [XNIO-1 task-1] u0nJGFnDTy2MYshyrhe0wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.703 [XNIO-1 task-1] u0nJGFnDTy2MYshyrhe0wQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.708 [XNIO-1 task-1] u0nJGFnDTy2MYshyrhe0wQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.715 [XNIO-1 task-1] HnfJBmaPRR6kiiu34ejluw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.715 [XNIO-1 task-1] HnfJBmaPRR6kiiu34ejluw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.716 [XNIO-1 task-1] HnfJBmaPRR6kiiu34ejluw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.717 [XNIO-1 task-1] HnfJBmaPRR6kiiu34ejluw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.724 [XNIO-1 task-1] HnfJBmaPRR6kiiu34ejluw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.734 [XNIO-1 task-1] 5zEYrlbcSqy61iU1OG7mEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.734 [XNIO-1 task-1] 5zEYrlbcSqy61iU1OG7mEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.737 [XNIO-1 task-1] 5zEYrlbcSqy61iU1OG7mEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.738 [XNIO-1 task-1] 5zEYrlbcSqy61iU1OG7mEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.743 [XNIO-1 task-1] 5zEYrlbcSqy61iU1OG7mEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.776 [XNIO-1 task-4] QNFF62nyT16mtO-uF_1vTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.776 [XNIO-1 task-4] QNFF62nyT16mtO-uF_1vTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.777 [XNIO-1 task-4] QNFF62nyT16mtO-uF_1vTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.780 [XNIO-1 task-4] QNFF62nyT16mtO-uF_1vTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:40.781 [XNIO-1 task-1] GVnJWyuxTzaoNLdrFcAZlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.781 [XNIO-1 task-4] QNFF62nyT16mtO-uF_1vTQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.781 [XNIO-1 task-1] GVnJWyuxTzaoNLdrFcAZlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.782 [XNIO-1 task-1] GVnJWyuxTzaoNLdrFcAZlw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XNBPYCIQTReRMs7LED_SxA redirectUri = http://localhost:8080/authorization +17:00:40.783 [XNIO-1 task-2] eap5iLYbRhy0sKiluZHlLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.783 [XNIO-1 task-2] eap5iLYbRhy0sKiluZHlLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.783 [XNIO-1 task-2] eap5iLYbRhy0sKiluZHlLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.787 [XNIO-1 task-4] QNFF62nyT16mtO-uF_1vTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.789 [XNIO-1 task-2] eap5iLYbRhy0sKiluZHlLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2502e5d3-35a9-4e35-ad69-57ca22458f18 scope = null +17:00:40.793 [XNIO-1 task-1] GVnJWyuxTzaoNLdrFcAZlw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.798 [XNIO-1 task-4] E3ASpayVS_q90WxQLSxw8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.799 [XNIO-1 task-4] E3ASpayVS_q90WxQLSxw8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.799 [XNIO-1 task-4] E3ASpayVS_q90WxQLSxw8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.800 [XNIO-1 task-4] E3ASpayVS_q90WxQLSxw8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:40.806 [XNIO-1 task-4] E3ASpayVS_q90WxQLSxw8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.807 [XNIO-1 task-2] eap5iLYbRhy0sKiluZHlLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.811 [XNIO-1 task-4] AtZoD86oQiqkRlaYFio0JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.812 [XNIO-1 task-4] AtZoD86oQiqkRlaYFio0JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.812 [XNIO-1 task-4] AtZoD86oQiqkRlaYFio0JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.812 [XNIO-1 task-4] AtZoD86oQiqkRlaYFio0JA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:40.818 [XNIO-1 task-4] AtZoD86oQiqkRlaYFio0JA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.825 [XNIO-1 task-4] U8jtHCdtQfiYdNv3jgl4Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.825 [XNIO-1 task-4] U8jtHCdtQfiYdNv3jgl4Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.826 [XNIO-1 task-4] U8jtHCdtQfiYdNv3jgl4Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.826 [XNIO-1 task-4] U8jtHCdtQfiYdNv3jgl4Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:40.832 [XNIO-1 task-4] U8jtHCdtQfiYdNv3jgl4Vw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.837 [XNIO-1 task-4] 9StPpKOdTHqFlnuY3Hko3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.837 [XNIO-1 task-4] 9StPpKOdTHqFlnuY3Hko3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.838 [XNIO-1 task-4] 9StPpKOdTHqFlnuY3Hko3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.838 [XNIO-1 task-4] 9StPpKOdTHqFlnuY3Hko3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:40.844 [XNIO-1 task-4] 9StPpKOdTHqFlnuY3Hko3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.851 [XNIO-1 task-4] _sWBjrbhRCi5A0_PMqjZug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.852 [XNIO-1 task-4] _sWBjrbhRCi5A0_PMqjZug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.853 [XNIO-1 task-4] _sWBjrbhRCi5A0_PMqjZug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.853 [XNIO-1 task-4] _sWBjrbhRCi5A0_PMqjZug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:40.860 [XNIO-1 task-4] _sWBjrbhRCi5A0_PMqjZug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.871 [XNIO-1 task-4] d_6qwuS4Q5y0bYgIGXN0TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.871 [XNIO-1 task-4] d_6qwuS4Q5y0bYgIGXN0TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.872 [XNIO-1 task-4] d_6qwuS4Q5y0bYgIGXN0TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.873 [XNIO-1 task-4] d_6qwuS4Q5y0bYgIGXN0TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:40.876 [XNIO-1 task-2] zorcGhjUQkWVxtqLCOiVxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.877 [XNIO-1 task-2] zorcGhjUQkWVxtqLCOiVxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.877 [XNIO-1 task-2] zorcGhjUQkWVxtqLCOiVxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.878 [XNIO-1 task-2] zorcGhjUQkWVxtqLCOiVxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:40.882 [XNIO-1 task-4] d_6qwuS4Q5y0bYgIGXN0TQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.894 [XNIO-1 task-4] UtWp4UiHSieadlLmLAn-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.894 [XNIO-1 task-4] UtWp4UiHSieadlLmLAn-Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:40.896 [XNIO-1 task-4] UtWp4UiHSieadlLmLAn-Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:40.898 [XNIO-1 task-4] UtWp4UiHSieadlLmLAn-Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:40.905 [XNIO-1 task-2] zorcGhjUQkWVxtqLCOiVxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:40.907 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d8f2f36c-f4b7-46e6-82d1-b7383a4a9b28 +17:00:40.909 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d8f2f36c-f4b7-46e6-82d1-b7383a4a9b28 +17:00:40.914 [XNIO-1 task-4] UtWp4UiHSieadlLmLAn-Tg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.924 [XNIO-1 task-4] bgMIs3SeTueaT_ErDc_6pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.924 [XNIO-1 task-4] bgMIs3SeTueaT_ErDc_6pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.925 [XNIO-1 task-4] bgMIs3SeTueaT_ErDc_6pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.926 [XNIO-1 task-4] bgMIs3SeTueaT_ErDc_6pw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.931 [XNIO-1 task-4] bgMIs3SeTueaT_ErDc_6pw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.938 [XNIO-1 task-4] r5cumpDxRh28C_fJXl1lxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.938 [XNIO-1 task-4] r5cumpDxRh28C_fJXl1lxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.939 [XNIO-1 task-4] r5cumpDxRh28C_fJXl1lxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.939 [XNIO-1 task-4] r5cumpDxRh28C_fJXl1lxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.945 [XNIO-1 task-4] r5cumpDxRh28C_fJXl1lxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.950 [XNIO-1 task-4] 9YTuPYKTR0G2jiwgZVcRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.950 [XNIO-1 task-4] 9YTuPYKTR0G2jiwgZVcRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.950 [XNIO-1 task-4] 9YTuPYKTR0G2jiwgZVcRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.951 [XNIO-1 task-4] 9YTuPYKTR0G2jiwgZVcRlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.961 [XNIO-1 task-4] 9YTuPYKTR0G2jiwgZVcRlQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.972 [XNIO-1 task-4] kD_EFZLgR12doWtBnHBoJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.972 [XNIO-1 task-4] kD_EFZLgR12doWtBnHBoJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.973 [XNIO-1 task-4] kD_EFZLgR12doWtBnHBoJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.973 [XNIO-1 task-4] kD_EFZLgR12doWtBnHBoJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.979 [XNIO-1 task-4] kD_EFZLgR12doWtBnHBoJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.986 [XNIO-1 task-4] Fc8H1ZE4SoqKCDau0-5IpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.986 [XNIO-1 task-4] Fc8H1ZE4SoqKCDau0-5IpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.987 [XNIO-1 task-4] Fc8H1ZE4SoqKCDau0-5IpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.987 [XNIO-1 task-4] Fc8H1ZE4SoqKCDau0-5IpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:40.993 [XNIO-1 task-4] Fc8H1ZE4SoqKCDau0-5IpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:40.996 [XNIO-1 task-2] 8JpZc9mZRdSU-vz8bgdtBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.996 [XNIO-1 task-2] 8JpZc9mZRdSU-vz8bgdtBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.997 [XNIO-1 task-2] 8JpZc9mZRdSU-vz8bgdtBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:40.997 [XNIO-1 task-2] 8JpZc9mZRdSU-vz8bgdtBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Zmkuf0SxQ4O6DNQ2sz2mrw redirectUri = http://localhost:8080/authorization +17:00:41.005 [XNIO-1 task-4] 9KWIb1nGTPy9hIvVGvFSnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.005 [XNIO-1 task-4] 9KWIb1nGTPy9hIvVGvFSnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.006 [XNIO-1 task-4] 9KWIb1nGTPy9hIvVGvFSnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.007 [XNIO-1 task-4] 9KWIb1nGTPy9hIvVGvFSnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:41.007 [XNIO-1 task-2] 8JpZc9mZRdSU-vz8bgdtBQ INFO com.networknt.config.Config loadJsonMapConfigWithSpecificConfigLoader - Trying to load status with extension yaml, yml or json by using default loading method. +17:00:41.007 [XNIO-1 task-2] 8JpZc9mZRdSU-vz8bgdtBQ INFO com.networknt.config.Config getConfigStream - Trying to load config from classpath directory for file status.yml +17:00:41.012 [XNIO-1 task-4] 9KWIb1nGTPy9hIvVGvFSnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.018 [XNIO-1 task-4] IJ3jcLdsRTO3h8taQCScMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.018 [XNIO-1 task-4] IJ3jcLdsRTO3h8taQCScMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.019 [XNIO-1 task-4] IJ3jcLdsRTO3h8taQCScMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.020 [XNIO-1 task-4] IJ3jcLdsRTO3h8taQCScMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:41.024 [XNIO-1 task-1] 9ZgSfoK9SwSbI9KcPe0QJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.025 [XNIO-1 task-1] 9ZgSfoK9SwSbI9KcPe0QJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.025 [XNIO-1 task-4] IJ3jcLdsRTO3h8taQCScMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.025 [XNIO-1 task-1] 9ZgSfoK9SwSbI9KcPe0QJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.026 [XNIO-1 task-1] 9ZgSfoK9SwSbI9KcPe0QJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:41.031 [XNIO-1 task-4] L-BxVItFQTGCjBZTvUuGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.032 [XNIO-1 task-4] L-BxVItFQTGCjBZTvUuGlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.032 [XNIO-1 task-4] L-BxVItFQTGCjBZTvUuGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.033 [XNIO-1 task-4] L-BxVItFQTGCjBZTvUuGlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:41.035 [XNIO-1 task-2] 8JpZc9mZRdSU-vz8bgdtBQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:41.039 [XNIO-1 task-4] L-BxVItFQTGCjBZTvUuGlg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.048 [XNIO-1 task-4] O46eQ-m6Roq55zPUV5-DXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.048 [XNIO-1 task-4] O46eQ-m6Roq55zPUV5-DXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.049 [XNIO-1 task-4] O46eQ-m6Roq55zPUV5-DXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.050 [XNIO-1 task-4] O46eQ-m6Roq55zPUV5-DXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.052 [XNIO-1 task-1] 9ZgSfoK9SwSbI9KcPe0QJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.054 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:eb1eee04-bb34-446d-94f0-757a32b71aa5 +17:00:41.057 [XNIO-1 task-4] O46eQ-m6Roq55zPUV5-DXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.063 [XNIO-1 task-4] xVZvytUMSxe-CkWN7A9_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.063 [XNIO-1 task-4] xVZvytUMSxe-CkWN7A9_8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.064 [XNIO-1 task-4] xVZvytUMSxe-CkWN7A9_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.064 [XNIO-1 task-4] xVZvytUMSxe-CkWN7A9_8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:41.067 [XNIO-1 task-2] eXXLHoZ1QGygmDXClu_i8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.067 [XNIO-1 task-2] eXXLHoZ1QGygmDXClu_i8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.068 [XNIO-1 task-2] eXXLHoZ1QGygmDXClu_i8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.068 [XNIO-1 task-2] eXXLHoZ1QGygmDXClu_i8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:41.074 [XNIO-1 task-4] xVZvytUMSxe-CkWN7A9_8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:41.075 [XNIO-1 task-4] xVZvytUMSxe-CkWN7A9_8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.086 [XNIO-1 task-2] eXXLHoZ1QGygmDXClu_i8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.096 [XNIO-1 task-2] leoAfBktTNK1KbeZMEq8Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.096 [XNIO-1 task-2] leoAfBktTNK1KbeZMEq8Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.097 [XNIO-1 task-2] leoAfBktTNK1KbeZMEq8Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.097 [XNIO-1 task-2] leoAfBktTNK1KbeZMEq8Ug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.104 [XNIO-1 task-2] leoAfBktTNK1KbeZMEq8Ug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.115 [XNIO-1 task-2] 8K8kCODVRU65Jq0fvYTuVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.115 [XNIO-1 task-2] 8K8kCODVRU65Jq0fvYTuVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.116 [XNIO-1 task-2] 8K8kCODVRU65Jq0fvYTuVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.117 [XNIO-1 task-2] 8K8kCODVRU65Jq0fvYTuVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.122 [XNIO-1 task-2] 8K8kCODVRU65Jq0fvYTuVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.132 [XNIO-1 task-2] RAKXPKlqTECyUAyujrlnuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.132 [XNIO-1 task-2] RAKXPKlqTECyUAyujrlnuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.132 [XNIO-1 task-2] RAKXPKlqTECyUAyujrlnuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.133 [XNIO-1 task-2] RAKXPKlqTECyUAyujrlnuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.138 [XNIO-1 task-2] RAKXPKlqTECyUAyujrlnuA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.145 [XNIO-1 task-2] xZHI2sX4Qo-rHHbnl2uq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.146 [XNIO-1 task-2] xZHI2sX4Qo-rHHbnl2uq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.146 [XNIO-1 task-2] xZHI2sX4Qo-rHHbnl2uq6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.147 [XNIO-1 task-2] xZHI2sX4Qo-rHHbnl2uq6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.155 [XNIO-1 task-2] xZHI2sX4Qo-rHHbnl2uq6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.168 [XNIO-1 task-2] dKjtURoASf64oraKn9RKeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.168 [XNIO-1 task-2] dKjtURoASf64oraKn9RKeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.169 [XNIO-1 task-4] oBBvEpwwTqaMs8Q-3HXGRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.169 [XNIO-1 task-4] oBBvEpwwTqaMs8Q-3HXGRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.169 [XNIO-1 task-2] dKjtURoASf64oraKn9RKeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.169 [XNIO-1 task-4] oBBvEpwwTqaMs8Q-3HXGRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.169 [XNIO-1 task-2] dKjtURoASf64oraKn9RKeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qLtSQPLOSX29D2wUUk8wug redirectUri = http://localhost:8080/authorization +17:00:41.170 [XNIO-1 task-4] oBBvEpwwTqaMs8Q-3HXGRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.176 [XNIO-1 task-4] oBBvEpwwTqaMs8Q-3HXGRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.184 [XNIO-1 task-4] T4sx3SVKRrOUdGJo1MA8Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.184 [XNIO-1 task-4] T4sx3SVKRrOUdGJo1MA8Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.185 [XNIO-1 task-4] T4sx3SVKRrOUdGJo1MA8Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.185 [XNIO-1 task-4] T4sx3SVKRrOUdGJo1MA8Cg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.191 [XNIO-1 task-2] dKjtURoASf64oraKn9RKeQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.193 [XNIO-1 task-4] T4sx3SVKRrOUdGJo1MA8Cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.200 [XNIO-1 task-4] vp5eP5ETQ_GO4SIriJL_rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.200 [XNIO-1 task-4] vp5eP5ETQ_GO4SIriJL_rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.200 [XNIO-1 task-4] vp5eP5ETQ_GO4SIriJL_rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.201 [XNIO-1 task-4] vp5eP5ETQ_GO4SIriJL_rA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:41.212 [XNIO-1 task-4] vp5eP5ETQ_GO4SIriJL_rA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.219 [XNIO-1 task-4] feTaGIeDRwuVhXhe3SHx5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.219 [XNIO-1 task-4] feTaGIeDRwuVhXhe3SHx5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.219 [XNIO-1 task-4] feTaGIeDRwuVhXhe3SHx5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.220 [XNIO-1 task-4] feTaGIeDRwuVhXhe3SHx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:41.225 [XNIO-1 task-4] feTaGIeDRwuVhXhe3SHx5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.230 [XNIO-1 task-4] ujxi8TbwR_eHNi1T3ZCcXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.232 [XNIO-1 task-4] ujxi8TbwR_eHNi1T3ZCcXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.232 [XNIO-1 task-4] ujxi8TbwR_eHNi1T3ZCcXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.233 [XNIO-1 task-4] ujxi8TbwR_eHNi1T3ZCcXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:41.238 [XNIO-1 task-4] ujxi8TbwR_eHNi1T3ZCcXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.248 [XNIO-1 task-4] QIFFIG-vRT2RADuMZ_aQPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.248 [XNIO-1 task-4] QIFFIG-vRT2RADuMZ_aQPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.249 [XNIO-1 task-4] QIFFIG-vRT2RADuMZ_aQPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.249 [XNIO-1 task-4] QIFFIG-vRT2RADuMZ_aQPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:41.258 [XNIO-1 task-4] QIFFIG-vRT2RADuMZ_aQPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.264 [XNIO-1 task-4] SfcvxfsWTDCevBOqNslHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.265 [XNIO-1 task-4] SfcvxfsWTDCevBOqNslHrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.266 [XNIO-1 task-4] SfcvxfsWTDCevBOqNslHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.268 [XNIO-1 task-4] SfcvxfsWTDCevBOqNslHrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:41.276 [XNIO-1 task-4] SfcvxfsWTDCevBOqNslHrA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.305 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7fd1aa27 +17:00:41.307 [XNIO-1 task-4] E2rxQ4KVSa-nd4b9O32pvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.307 [XNIO-1 task-4] E2rxQ4KVSa-nd4b9O32pvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.307 [XNIO-1 task-4] E2rxQ4KVSa-nd4b9O32pvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.308 [XNIO-1 task-4] E2rxQ4KVSa-nd4b9O32pvg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.308 [XNIO-1 task-1] c-ubZRpaQdmaIzUil7achA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.308 [XNIO-1 task-1] c-ubZRpaQdmaIzUil7achA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.308 [XNIO-1 task-1] c-ubZRpaQdmaIzUil7achA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.309 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7fd1aa27 +17:00:41.309 [XNIO-1 task-1] c-ubZRpaQdmaIzUil7achA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:41.334 [XNIO-1 task-4] E2rxQ4KVSa-nd4b9O32pvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.355 [XNIO-1 task-1] c-ubZRpaQdmaIzUil7achA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:41.357 [XNIO-1 task-1] c-ubZRpaQdmaIzUil7achA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.357 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:805ae8e6 +17:00:41.363 [XNIO-1 task-4] -yZ9I54ETBqNBujTUFYlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.363 [XNIO-1 task-4] -yZ9I54ETBqNBujTUFYlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.364 [XNIO-1 task-4] -yZ9I54ETBqNBujTUFYlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.364 [XNIO-1 task-4] -yZ9I54ETBqNBujTUFYlqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.371 [XNIO-1 task-4] -yZ9I54ETBqNBujTUFYlqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.376 [XNIO-1 task-4] S-V0fZz4Rmmn8O45O7hJng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.376 [XNIO-1 task-4] S-V0fZz4Rmmn8O45O7hJng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.377 [XNIO-1 task-4] S-V0fZz4Rmmn8O45O7hJng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.377 [XNIO-1 task-4] S-V0fZz4Rmmn8O45O7hJng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:41.379 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe90241d +17:00:41.382 [XNIO-1 task-4] S-V0fZz4Rmmn8O45O7hJng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.391 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7fd1aa27 +17:00:41.393 [XNIO-1 task-4] KKPj05YuTGySczzRWlpikA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.393 [XNIO-1 task-4] KKPj05YuTGySczzRWlpikA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.394 [XNIO-1 task-4] KKPj05YuTGySczzRWlpikA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.394 [XNIO-1 task-4] KKPj05YuTGySczzRWlpikA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:41.399 [XNIO-1 task-4] KKPj05YuTGySczzRWlpikA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.404 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:805ae8e6 +17:00:41.406 [XNIO-1 task-4] SSzw2ImBR_aTe6K0OyQ2uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.406 [XNIO-1 task-4] SSzw2ImBR_aTe6K0OyQ2uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.407 [XNIO-1 task-4] SSzw2ImBR_aTe6K0OyQ2uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.408 [XNIO-1 task-4] SSzw2ImBR_aTe6K0OyQ2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:41.411 [XNIO-1 task-1] 0nXtwYd8RFGRFml0_h4sMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.411 [XNIO-1 task-1] 0nXtwYd8RFGRFml0_h4sMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.412 [XNIO-1 task-1] 0nXtwYd8RFGRFml0_h4sMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.413 [XNIO-1 task-1] 0nXtwYd8RFGRFml0_h4sMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:41.413 [XNIO-1 task-4] SSzw2ImBR_aTe6K0OyQ2uw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.421 [XNIO-1 task-4] T7_M9YIySh-gNe4K96G5xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.421 [XNIO-1 task-4] T7_M9YIySh-gNe4K96G5xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.422 [XNIO-1 task-4] T7_M9YIySh-gNe4K96G5xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.422 [XNIO-1 task-4] T7_M9YIySh-gNe4K96G5xA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:41.430 [XNIO-1 task-4] T7_M9YIySh-gNe4K96G5xA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.434 [XNIO-1 task-1] 0nXtwYd8RFGRFml0_h4sMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:41.434 [XNIO-1 task-1] 0nXtwYd8RFGRFml0_h4sMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.437 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:08fcfae4-3ac6-45e7-b337-105a4924f1de +17:00:41.446 [XNIO-1 task-1] LiNZai8JSuCSPPpEA3HuBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.446 [XNIO-1 task-1] LiNZai8JSuCSPPpEA3HuBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.447 [XNIO-1 task-4] 6bVMO3ydTKaQFltVkcaflw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.447 [XNIO-1 task-1] LiNZai8JSuCSPPpEA3HuBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.447 [XNIO-1 task-1] LiNZai8JSuCSPPpEA3HuBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:41.447 [XNIO-1 task-4] 6bVMO3ydTKaQFltVkcaflw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.448 [XNIO-1 task-4] 6bVMO3ydTKaQFltVkcaflw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.448 [XNIO-1 task-4] 6bVMO3ydTKaQFltVkcaflw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.450 [XNIO-1 task-2] WxjREqSRSpGSCVvr_LXaMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.450 [XNIO-1 task-2] WxjREqSRSpGSCVvr_LXaMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.450 [XNIO-1 task-2] WxjREqSRSpGSCVvr_LXaMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.451 [XNIO-1 task-2] WxjREqSRSpGSCVvr_LXaMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 08fcfae4-3ac6-45e7-b337-105a4924f1de scope = null +17:00:41.455 [XNIO-1 task-4] 6bVMO3ydTKaQFltVkcaflw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.457 [XNIO-1 task-1] LiNZai8JSuCSPPpEA3HuBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.459 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:806c8fab-6404-4270-884d-8e28f8a3bd60 +17:00:41.462 [XNIO-1 task-4] 4TfmFX2ySiKdw9hzWQ1_Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.463 [XNIO-1 task-4] 4TfmFX2ySiKdw9hzWQ1_Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.463 [XNIO-1 task-4] 4TfmFX2ySiKdw9hzWQ1_Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.463 [XNIO-1 task-4] 4TfmFX2ySiKdw9hzWQ1_Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:41.467 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7fd1aa27 +17:00:41.469 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:805ae8e6 +17:00:41.469 [XNIO-1 task-4] 4TfmFX2ySiKdw9hzWQ1_Kg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.472 [XNIO-1 task-4] iJCXCzB-TZuOvxQzGKEJsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.473 [XNIO-1 task-4] iJCXCzB-TZuOvxQzGKEJsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.473 [XNIO-1 task-4] iJCXCzB-TZuOvxQzGKEJsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.474 [XNIO-1 task-1] DIZ4zjHsQTOpT0SoeV2mcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.474 [XNIO-1 task-1] DIZ4zjHsQTOpT0SoeV2mcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.474 [XNIO-1 task-4] iJCXCzB-TZuOvxQzGKEJsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:41.474 [XNIO-1 task-1] DIZ4zjHsQTOpT0SoeV2mcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.474 [XNIO-1 task-1] DIZ4zjHsQTOpT0SoeV2mcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:41.479 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:806c8fab-6404-4270-884d-8e28f8a3bd60 +17:00:41.480 [XNIO-1 task-2] WxjREqSRSpGSCVvr_LXaMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.480 [XNIO-1 task-2] WxjREqSRSpGSCVvr_LXaMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.486 [XNIO-1 task-4] iJCXCzB-TZuOvxQzGKEJsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.486 [XNIO-1 task-1] 7JMWbyvyTF6n1ycGhlp4ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.487 [XNIO-1 task-1] 7JMWbyvyTF6n1ycGhlp4ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.487 [XNIO-1 task-1] 7JMWbyvyTF6n1ycGhlp4ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.509 [XNIO-1 task-1] 7JMWbyvyTF6n1ycGhlp4ag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:41.513 [XNIO-1 task-2] 7M88qQYcRX2ZBR4Zcr22xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.514 [XNIO-1 task-2] 7M88qQYcRX2ZBR4Zcr22xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.515 [XNIO-1 task-1] 7JMWbyvyTF6n1ycGhlp4ag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.515 [XNIO-1 task-2] 7M88qQYcRX2ZBR4Zcr22xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.515 [XNIO-1 task-2] 7M88qQYcRX2ZBR4Zcr22xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:41.516 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb764e7f +17:00:41.520 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb764e7f +17:00:41.525 [XNIO-1 task-1] 8TgqvNhYS4SY_UpQIieKCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.528 [XNIO-1 task-1] 8TgqvNhYS4SY_UpQIieKCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.529 [XNIO-1 task-1] 8TgqvNhYS4SY_UpQIieKCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.529 [XNIO-1 task-1] 8TgqvNhYS4SY_UpQIieKCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:41.536 [XNIO-1 task-1] 8TgqvNhYS4SY_UpQIieKCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.537 [XNIO-1 task-2] 7M88qQYcRX2ZBR4Zcr22xw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.542 [XNIO-1 task-1] Yudw8DHdR9iM_pwK27JuAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.542 [XNIO-1 task-1] Yudw8DHdR9iM_pwK27JuAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.542 [XNIO-1 task-1] Yudw8DHdR9iM_pwK27JuAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.543 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb764e7f +17:00:41.551 [XNIO-1 task-1] Yudw8DHdR9iM_pwK27JuAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:41.553 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fe90241d +17:00:41.556 [XNIO-1 task-1] Yudw8DHdR9iM_pwK27JuAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.568 [XNIO-1 task-1] CPgNuaciTDKIT-RfKKhL1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.568 [XNIO-1 task-1] CPgNuaciTDKIT-RfKKhL1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.569 [XNIO-1 task-1] CPgNuaciTDKIT-RfKKhL1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.569 [XNIO-1 task-1] CPgNuaciTDKIT-RfKKhL1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:41.570 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb764e7f +17:00:41.574 [XNIO-1 task-2] WfREteUWRFSZjH1gDQwH5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.575 [XNIO-1 task-2] WfREteUWRFSZjH1gDQwH5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.575 [XNIO-1 task-2] WfREteUWRFSZjH1gDQwH5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.576 [XNIO-1 task-2] WfREteUWRFSZjH1gDQwH5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:41.576 [XNIO-1 task-1] CPgNuaciTDKIT-RfKKhL1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.584 [XNIO-1 task-1] cDlgSCMOTKC1aC7JtFsB7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.585 [XNIO-1 task-1] cDlgSCMOTKC1aC7JtFsB7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.585 [XNIO-1 task-1] cDlgSCMOTKC1aC7JtFsB7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.586 [XNIO-1 task-1] cDlgSCMOTKC1aC7JtFsB7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:41.591 [XNIO-1 task-1] cDlgSCMOTKC1aC7JtFsB7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.596 [XNIO-1 task-1] gRjztX-gRoqdcaCVBkcDog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.596 [XNIO-1 task-1] gRjztX-gRoqdcaCVBkcDog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.597 [XNIO-1 task-1] gRjztX-gRoqdcaCVBkcDog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.597 [XNIO-1 task-1] gRjztX-gRoqdcaCVBkcDog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:41.603 [XNIO-1 task-1] gRjztX-gRoqdcaCVBkcDog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.612 [XNIO-1 task-1] A_oFEdbDQSqjCrrFN9djUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.612 [XNIO-1 task-1] A_oFEdbDQSqjCrrFN9djUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.612 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb764e7f +17:00:41.612 [XNIO-1 task-1] A_oFEdbDQSqjCrrFN9djUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.613 [XNIO-1 task-1] A_oFEdbDQSqjCrrFN9djUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:41.618 [XNIO-1 task-1] A_oFEdbDQSqjCrrFN9djUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.626 [XNIO-1 task-1] 7F_tzTq5TKKzknWyo4wA5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.626 [XNIO-1 task-1] 7F_tzTq5TKKzknWyo4wA5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.626 [XNIO-1 task-1] 7F_tzTq5TKKzknWyo4wA5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.627 [XNIO-1 task-1] 7F_tzTq5TKKzknWyo4wA5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDA1OTY4OTAtZDk2OS00NjZmLWIyMzUtYjA1NmM4N2RkNGM1OnJSMklSb3VFUWotaWxsSF9lcFJpVkE=", "Basic NDA1OTY4OTAtZDk2OS00NjZmLWIyMzUtYjA1NmM4N2RkNGM1OnJSMklSb3VFUWotaWxsSF9lcFJpVkE=", authorization) +17:00:41.630 [XNIO-1 task-4] 4Psr6PPQROuqPfhTkN_faw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.631 [XNIO-1 task-4] 4Psr6PPQROuqPfhTkN_faw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.631 [XNIO-1 task-4] 4Psr6PPQROuqPfhTkN_faw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.632 [XNIO-1 task-4] 4Psr6PPQROuqPfhTkN_faw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:41.633 [XNIO-1 task-1] 7F_tzTq5TKKzknWyo4wA5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.634 [XNIO-1 task-2] WfREteUWRFSZjH1gDQwH5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.638 [XNIO-1 task-1] _8SJW_2lSCSkpHr_MqA8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.638 [XNIO-1 task-1] _8SJW_2lSCSkpHr_MqA8kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.639 [XNIO-1 task-1] _8SJW_2lSCSkpHr_MqA8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.639 [XNIO-1 task-1] _8SJW_2lSCSkpHr_MqA8kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDA1OTY4OTAtZDk2OS00NjZmLWIyMzUtYjA1NmM4N2RkNGM1OnJSMklSb3VFUWotaWxsSF9lcFJpVkE=", "Basic NDA1OTY4OTAtZDk2OS00NjZmLWIyMzUtYjA1NmM4N2RkNGM1OnJSMklSb3VFUWotaWxsSF9lcFJpVkE=", authorization) +17:00:41.640 [XNIO-1 task-4] 4Psr6PPQROuqPfhTkN_faw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:41.641 [XNIO-1 task-4] 4Psr6PPQROuqPfhTkN_faw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.645 [XNIO-1 task-1] _8SJW_2lSCSkpHr_MqA8kw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.658 [XNIO-1 task-1] 7mlxTa25R0u9BI_Aqv7PwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.658 [XNIO-1 task-1] 7mlxTa25R0u9BI_Aqv7PwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.658 [XNIO-1 task-1] 7mlxTa25R0u9BI_Aqv7PwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.658 [XNIO-1 task-1] 7mlxTa25R0u9BI_Aqv7PwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.658 [XNIO-1 task-2] IGkGBPvBR0SL8lu4LENeiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.658 [XNIO-1 task-1] 7mlxTa25R0u9BI_Aqv7PwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.659 [XNIO-1 task-2] IGkGBPvBR0SL8lu4LENeiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.659 [XNIO-1 task-1] 7mlxTa25R0u9BI_Aqv7PwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9a11091a-1b07-42ec-a43c-0bba472cea24 scope = null +17:00:41.665 [XNIO-1 task-2] IGkGBPvBR0SL8lu4LENeiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.673 [XNIO-1 task-1] 7mlxTa25R0u9BI_Aqv7PwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.677 [XNIO-1 task-2] jBh7sy0sQ1qNXXkVp66EvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.677 [XNIO-1 task-2] jBh7sy0sQ1qNXXkVp66EvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.678 [XNIO-1 task-4] oxfuh3X8SneAeiXaPG6sQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.678 [XNIO-1 task-4] oxfuh3X8SneAeiXaPG6sQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.678 [XNIO-1 task-4] oxfuh3X8SneAeiXaPG6sQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.678 [XNIO-1 task-2] jBh7sy0sQ1qNXXkVp66EvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.678 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:144f7992-f193-4178-a596-edd8c687f0d9 +17:00:41.678 [XNIO-1 task-2] jBh7sy0sQ1qNXXkVp66EvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:41.682 [XNIO-1 task-2] jBh7sy0sQ1qNXXkVp66EvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 33537ebf-3e3d-4593-8aba-58c13cf635cc scope = null +17:00:41.683 [XNIO-1 task-4] oxfuh3X8SneAeiXaPG6sQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.687 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:144f7992-f193-4178-a596-edd8c687f0d9 +17:00:41.688 [XNIO-1 task-4] oxfuh3X8SneAeiXaPG6sQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.696 [XNIO-1 task-4] VVk4MQ8fSzSB8oO_CQnpow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.696 [XNIO-1 task-4] VVk4MQ8fSzSB8oO_CQnpow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.696 [XNIO-1 task-4] VVk4MQ8fSzSB8oO_CQnpow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.698 [XNIO-1 task-2] jBh7sy0sQ1qNXXkVp66EvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.698 [XNIO-1 task-4] VVk4MQ8fSzSB8oO_CQnpow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:41.699 [XNIO-1 task-1] 1bZL5HiTTUiUbmiutxYRUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.699 [XNIO-1 task-4] VVk4MQ8fSzSB8oO_CQnpow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.700 [XNIO-1 task-1] 1bZL5HiTTUiUbmiutxYRUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.701 [XNIO-1 task-1] 1bZL5HiTTUiUbmiutxYRUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 144f7992-f193-4178-a596-edd8c687f0d9 scope = null +17:00:41.708 [XNIO-1 task-4] VVk4MQ8fSzSB8oO_CQnpow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +Jun 28, 2024 5:00:41 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:41.712 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:144f7992-f193-4178-a596-edd8c687f0d9 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:41.742 [XNIO-1 task-4] raXLPcsSRc2NHrxI5VczJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.742 [XNIO-1 task-4] raXLPcsSRc2NHrxI5VczJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.743 [XNIO-1 task-4] raXLPcsSRc2NHrxI5VczJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.743 [XNIO-1 task-4] raXLPcsSRc2NHrxI5VczJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:41.744 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:85ea495a +17:00:41.746 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:85ea495a +17:00:41.750 [XNIO-1 task-1] 1bZL5HiTTUiUbmiutxYRUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.751 [XNIO-1 task-4] raXLPcsSRc2NHrxI5VczJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.762 [XNIO-1 task-4] k8bIFb8jSo610A44y8GD4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.762 [XNIO-1 task-4] k8bIFb8jSo610A44y8GD4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.763 [XNIO-1 task-4] k8bIFb8jSo610A44y8GD4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.764 [XNIO-1 task-4] k8bIFb8jSo610A44y8GD4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.771 [XNIO-1 task-4] k8bIFb8jSo610A44y8GD4w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.778 [XNIO-1 task-4] nFrBX82rTc-n7ndR37FNcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.778 [XNIO-1 task-4] nFrBX82rTc-n7ndR37FNcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.779 [XNIO-1 task-4] nFrBX82rTc-n7ndR37FNcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.780 [XNIO-1 task-1] DAz8TouBQ0ysbTAagfHSVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.780 [XNIO-1 task-1] DAz8TouBQ0ysbTAagfHSVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.780 [XNIO-1 task-1] DAz8TouBQ0ysbTAagfHSVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.780 [XNIO-1 task-1] DAz8TouBQ0ysbTAagfHSVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.781 [XNIO-1 task-1] DAz8TouBQ0ysbTAagfHSVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.788 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.789 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.789 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.789 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.790 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:41.796 [XNIO-1 task-1] X5JClbRNQT2AAchNicyrWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.796 [XNIO-1 task-1] X5JClbRNQT2AAchNicyrWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.797 [XNIO-1 task-1] X5JClbRNQT2AAchNicyrWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.799 [XNIO-1 task-1] X5JClbRNQT2AAchNicyrWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:41.799 [XNIO-1 task-1] X5JClbRNQT2AAchNicyrWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.803 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb764e7f +17:00:41.803 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:41.806 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.806 [XNIO-1 task-2] VoYTd9yhTXmzu4bub9U-4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.813 [XNIO-1 task-1] 5zexKW0URSy1GoPL54qy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.813 [XNIO-1 task-1] 5zexKW0URSy1GoPL54qy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.813 [XNIO-1 task-1] 5zexKW0URSy1GoPL54qy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.814 [XNIO-1 task-1] 5zexKW0URSy1GoPL54qy6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.820 [XNIO-1 task-1] 5zexKW0URSy1GoPL54qy6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.821 [XNIO-1 task-2] uXDa64XuREuz87LcCVrhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.822 [XNIO-1 task-2] uXDa64XuREuz87LcCVrhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.822 [XNIO-1 task-2] uXDa64XuREuz87LcCVrhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.823 [XNIO-1 task-2] uXDa64XuREuz87LcCVrhqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 35113671-8822-4574-bd6c-1def940f0026 scope = null +17:00:41.828 [XNIO-1 task-1] vdYUaBf9RZqqEbju9Fw7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.828 [XNIO-1 task-1] vdYUaBf9RZqqEbju9Fw7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.831 [XNIO-1 task-1] vdYUaBf9RZqqEbju9Fw7mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.832 [XNIO-1 task-1] vdYUaBf9RZqqEbju9Fw7mA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.838 [XNIO-1 task-1] vdYUaBf9RZqqEbju9Fw7mA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.844 [XNIO-1 task-1] xIQX3lcUSDGXbhdM1-4wqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.844 [XNIO-1 task-1] xIQX3lcUSDGXbhdM1-4wqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.844 [XNIO-1 task-1] xIQX3lcUSDGXbhdM1-4wqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.845 [XNIO-1 task-1] xIQX3lcUSDGXbhdM1-4wqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.851 [XNIO-1 task-1] xIQX3lcUSDGXbhdM1-4wqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.856 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb764e7f +17:00:41.857 [XNIO-1 task-1] a0qoLYbOSU2vswz6Te26Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.857 [XNIO-1 task-1] a0qoLYbOSU2vswz6Te26Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.881 [XNIO-1 task-1] a0qoLYbOSU2vswz6Te26Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.883 [XNIO-1 task-2] uXDa64XuREuz87LcCVrhqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.883 [XNIO-1 task-2] uXDa64XuREuz87LcCVrhqg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.910 [XNIO-1 task-1] a0qoLYbOSU2vswz6Te26Sg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.912 [XNIO-1 task-2] yvwxk56qSueN3uFF0WMA7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.914 [XNIO-1 task-2] yvwxk56qSueN3uFF0WMA7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.914 [XNIO-1 task-2] yvwxk56qSueN3uFF0WMA7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.915 [XNIO-1 task-2] yvwxk56qSueN3uFF0WMA7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:41.916 [XNIO-1 task-4] ydG20a7aS1-qqSSGEVJgig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.918 [XNIO-1 task-4] ydG20a7aS1-qqSSGEVJgig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.918 [XNIO-1 task-4] ydG20a7aS1-qqSSGEVJgig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.919 [XNIO-1 task-4] ydG20a7aS1-qqSSGEVJgig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:41.922 [XNIO-1 task-1] S7OgPswkQsWNh20au-pEvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.923 [XNIO-1 task-1] S7OgPswkQsWNh20au-pEvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.923 [XNIO-1 task-1] S7OgPswkQsWNh20au-pEvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.924 [XNIO-1 task-1] S7OgPswkQsWNh20au-pEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:41.925 [XNIO-1 task-2] yvwxk56qSueN3uFF0WMA7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:41.926 [XNIO-1 task-2] yvwxk56qSueN3uFF0WMA7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.930 [XNIO-1 task-1] S7OgPswkQsWNh20au-pEvg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.939 [XNIO-1 task-1] 7EbnCHX9T7SODvsIQQktAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.939 [XNIO-1 task-1] 7EbnCHX9T7SODvsIQQktAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.940 [XNIO-1 task-1] 7EbnCHX9T7SODvsIQQktAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.940 [XNIO-1 task-1] 7EbnCHX9T7SODvsIQQktAA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:41.942 [XNIO-1 task-4] ydG20a7aS1-qqSSGEVJgig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.944 [XNIO-1 task-2] e6iKYjQyS-OI3quVVXYmRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.944 [XNIO-1 task-2] e6iKYjQyS-OI3quVVXYmRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.945 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6d8b2b33 +17:00:41.947 [XNIO-1 task-2] e6iKYjQyS-OI3quVVXYmRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.947 [XNIO-1 task-2] e6iKYjQyS-OI3quVVXYmRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.948 [XNIO-1 task-2] e6iKYjQyS-OI3quVVXYmRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:41.956 [XNIO-1 task-4] BixlFl0oQ8mINsM-DecWRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.957 [XNIO-1 task-4] BixlFl0oQ8mINsM-DecWRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:41.957 [XNIO-1 task-4] BixlFl0oQ8mINsM-DecWRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:41.958 [XNIO-1 task-4] BixlFl0oQ8mINsM-DecWRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:41.966 [XNIO-1 task-2] e6iKYjQyS-OI3quVVXYmRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:41.970 [XNIO-1 task-4] BixlFl0oQ8mINsM-DecWRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:41.977 [XNIO-1 task-4] BixlFl0oQ8mINsM-DecWRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:41.991 [XNIO-1 task-4] J9Isd72cR9K4Eao7z7O-0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.991 [XNIO-1 task-4] J9Isd72cR9K4Eao7z7O-0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:41.992 [XNIO-1 task-4] J9Isd72cR9K4Eao7z7O-0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.000 [XNIO-1 task-4] J9Isd72cR9K4Eao7z7O-0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.011 [XNIO-1 task-4] J9Isd72cR9K4Eao7z7O-0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.014 [XNIO-1 task-2] EAR18RKDQiu6kktldfdY_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.014 [XNIO-1 task-2] EAR18RKDQiu6kktldfdY_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.014 [XNIO-1 task-2] EAR18RKDQiu6kktldfdY_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.021 [XNIO-1 task-2] EAR18RKDQiu6kktldfdY_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = GEmZQe-7SumLK7AiCk_8mw redirectUri = http://localhost:8080/authorization +17:00:42.021 [XNIO-1 task-4] EqDpDy7PS-Ow5CtdxJ9GFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.021 [XNIO-1 task-4] EqDpDy7PS-Ow5CtdxJ9GFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.022 [XNIO-1 task-4] EqDpDy7PS-Ow5CtdxJ9GFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.023 [XNIO-1 task-4] EqDpDy7PS-Ow5CtdxJ9GFw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.028 [XNIO-1 task-1] mDOLDiDUREe27aYtviA7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.028 [XNIO-1 task-1] mDOLDiDUREe27aYtviA7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.028 [XNIO-1 task-1] mDOLDiDUREe27aYtviA7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.029 [XNIO-1 task-1] mDOLDiDUREe27aYtviA7ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:42.034 [XNIO-1 task-2] EAR18RKDQiu6kktldfdY_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.035 [XNIO-1 task-2] EAR18RKDQiu6kktldfdY_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.040 [XNIO-1 task-4] Rg0MV4m4Q0afT4js0eQ0lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.040 [XNIO-1 task-4] Rg0MV4m4Q0afT4js0eQ0lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.041 [XNIO-1 task-4] Rg0MV4m4Q0afT4js0eQ0lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.042 [XNIO-1 task-4] Rg0MV4m4Q0afT4js0eQ0lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:42.047 [XNIO-1 task-1] mDOLDiDUREe27aYtviA7ig ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:42.062 [XNIO-1 task-4] Rg0MV4m4Q0afT4js0eQ0lg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.074 [XNIO-1 task-4] ETZTv5pnSiqsDBRn4vtm9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.075 [XNIO-1 task-4] ETZTv5pnSiqsDBRn4vtm9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.075 [XNIO-1 task-4] ETZTv5pnSiqsDBRn4vtm9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.076 [XNIO-1 task-4] ETZTv5pnSiqsDBRn4vtm9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.081 [XNIO-1 task-4] ETZTv5pnSiqsDBRn4vtm9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.094 [XNIO-1 task-4] 8og9S_HQQkWpKB5DiFSXPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.094 [XNIO-1 task-4] 8og9S_HQQkWpKB5DiFSXPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.095 [XNIO-1 task-4] 8og9S_HQQkWpKB5DiFSXPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.096 [XNIO-1 task-4] 8og9S_HQQkWpKB5DiFSXPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.105 [XNIO-1 task-2] iGCqlGsrSvqSBx2cbJl6tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.105 [XNIO-1 task-2] iGCqlGsrSvqSBx2cbJl6tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.105 [XNIO-1 task-2] iGCqlGsrSvqSBx2cbJl6tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.106 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6d8b2b33 +17:00:42.106 [XNIO-1 task-2] iGCqlGsrSvqSBx2cbJl6tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = C67KSrQ6QM6SiuNsGsO1VA redirectUri = http://localhost:8080/authorization +17:00:42.112 [XNIO-1 task-4] 8og9S_HQQkWpKB5DiFSXPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.114 [XNIO-1 task-1] 7LdRgT-DQhivE6ybzvxn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.114 [XNIO-1 task-1] 7LdRgT-DQhivE6ybzvxn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.118 [XNIO-1 task-1] 7LdRgT-DQhivE6ybzvxn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.118 [XNIO-1 task-1] 7LdRgT-DQhivE6ybzvxn-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = RStyyGM5StSgto1xS4zo_g redirectUri = http://localhost:8080/authorization +17:00:42.124 [XNIO-1 task-4] 4LmgeZ22RISIwztLBny2qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.124 [XNIO-1 task-4] 4LmgeZ22RISIwztLBny2qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.125 [XNIO-1 task-4] 4LmgeZ22RISIwztLBny2qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.125 [XNIO-1 task-4] 4LmgeZ22RISIwztLBny2qA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.131 [XNIO-1 task-2] iGCqlGsrSvqSBx2cbJl6tQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.132 [XNIO-1 task-4] 4LmgeZ22RISIwztLBny2qA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.132 [XNIO-1 task-1] 7LdRgT-DQhivE6ybzvxn-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.133 [XNIO-1 task-1] 7LdRgT-DQhivE6ybzvxn-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.142 [XNIO-1 task-4] oTKpHKxrT-mvGHIHydi-6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.142 [XNIO-1 task-4] oTKpHKxrT-mvGHIHydi-6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.146 [XNIO-1 task-4] oTKpHKxrT-mvGHIHydi-6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.147 [XNIO-1 task-4] oTKpHKxrT-mvGHIHydi-6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.152 [XNIO-1 task-2] ToqwCHTYR7W1tLfIPd0nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.152 [XNIO-1 task-2] ToqwCHTYR7W1tLfIPd0nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.153 [XNIO-1 task-2] ToqwCHTYR7W1tLfIPd0nBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.154 [XNIO-1 task-2] ToqwCHTYR7W1tLfIPd0nBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6cb88ed3-dabe-438d-bbfc-3798b215f660 scope = null +17:00:42.155 [XNIO-1 task-4] oTKpHKxrT-mvGHIHydi-6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.170 [XNIO-1 task-4] X6IcIYR8Qqmzgmdyx-BF1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.171 [XNIO-1 task-4] X6IcIYR8Qqmzgmdyx-BF1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.171 [XNIO-1 task-4] X6IcIYR8Qqmzgmdyx-BF1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.171 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:42.172 [XNIO-1 task-2] ToqwCHTYR7W1tLfIPd0nBQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.176 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6d8b2b33 +17:00:42.180 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6d8b2b33 +17:00:42.178 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + ... 14 more + +17:00:42.195 [XNIO-1 task-2] _N64N6JgT8yGKdeQhs0B2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.195 [XNIO-1 task-2] _N64N6JgT8yGKdeQhs0B2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.196 [XNIO-1 task-2] _N64N6JgT8yGKdeQhs0B2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.196 [XNIO-1 task-2] _N64N6JgT8yGKdeQhs0B2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTFlNGQ5OTEtMWM5Ni00YzJiLTgyYTItYTMxZGE5NmQxY2U1Olk1RGRkMlBoUjdpUFcwQ3RCMFlnLXc=", "Basic OTFlNGQ5OTEtMWM5Ni00YzJiLTgyYTItYTMxZGE5NmQxY2U1Olk1RGRkMlBoUjdpUFcwQ3RCMFlnLXc=", authorization) +17:00:42.197 [XNIO-1 task-4] 8El10NuiRlGwr59nMSOa0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.198 [XNIO-1 task-4] 8El10NuiRlGwr59nMSOa0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.199 [XNIO-1 task-4] 8El10NuiRlGwr59nMSOa0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.199 [XNIO-1 task-4] 8El10NuiRlGwr59nMSOa0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:42.204 [XNIO-1 task-2] _N64N6JgT8yGKdeQhs0B2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.212 [XNIO-1 task-2] eC1xvW4KQzuASt3ahhLzPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.214 [XNIO-1 task-2] eC1xvW4KQzuASt3ahhLzPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.215 [XNIO-1 task-2] eC1xvW4KQzuASt3ahhLzPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.215 [XNIO-1 task-2] eC1xvW4KQzuASt3ahhLzPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:42.220 [XNIO-1 task-2] eC1xvW4KQzuASt3ahhLzPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.224 [XNIO-1 task-2] 2GT75HhxQzeU-BlW2aVzmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.225 [XNIO-1 task-2] 2GT75HhxQzeU-BlW2aVzmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.225 [XNIO-1 task-2] 2GT75HhxQzeU-BlW2aVzmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.226 [XNIO-1 task-2] 2GT75HhxQzeU-BlW2aVzmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:42.226 [XNIO-1 task-1] _DLtjvUoRlGeDC-pwDnerg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.226 [XNIO-1 task-1] _DLtjvUoRlGeDC-pwDnerg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.226 [XNIO-1 task-1] _DLtjvUoRlGeDC-pwDnerg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.227 [XNIO-1 task-1] _DLtjvUoRlGeDC-pwDnerg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:42.232 [XNIO-1 task-1] _DLtjvUoRlGeDC-pwDnerg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.231 [XNIO-1 task-4] 8El10NuiRlGwr59nMSOa0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.238 [XNIO-1 task-2] 2GT75HhxQzeU-BlW2aVzmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.240 [XNIO-1 task-2] 2GT75HhxQzeU-BlW2aVzmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.240 [XNIO-1 task-1] THxDHPgkRvGSlOFTVrke2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.240 [XNIO-1 task-1] THxDHPgkRvGSlOFTVrke2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.241 [XNIO-1 task-1] THxDHPgkRvGSlOFTVrke2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.242 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:53cb4b4a-ddce-4338-b6ad-62a5e82ca889 +17:00:42.242 [XNIO-1 task-1] THxDHPgkRvGSlOFTVrke2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.254 [XNIO-1 task-1] THxDHPgkRvGSlOFTVrke2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.264 [XNIO-1 task-1] pyoz-DIsRhWF52ToUMlXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.264 [XNIO-1 task-1] pyoz-DIsRhWF52ToUMlXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.264 [XNIO-1 task-2] slIn8TilR3OkeDLy0EAwxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.264 [XNIO-1 task-2] slIn8TilR3OkeDLy0EAwxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.264 [XNIO-1 task-1] pyoz-DIsRhWF52ToUMlXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.264 [XNIO-1 task-2] slIn8TilR3OkeDLy0EAwxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.265 [XNIO-1 task-2] slIn8TilR3OkeDLy0EAwxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:42.265 [XNIO-1 task-1] pyoz-DIsRhWF52ToUMlXpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 53cb4b4a-ddce-4338-b6ad-62a5e82ca889 scope = null +17:00:42.274 [XNIO-1 task-2] slIn8TilR3OkeDLy0EAwxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.279 [XNIO-1 task-4] gK0eU33MSuGIOTTJZqveQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.279 [XNIO-1 task-4] gK0eU33MSuGIOTTJZqveQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.280 [XNIO-1 task-4] gK0eU33MSuGIOTTJZqveQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.280 [XNIO-1 task-4] gK0eU33MSuGIOTTJZqveQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:42.281 [XNIO-1 task-1] pyoz-DIsRhWF52ToUMlXpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.285 [XNIO-1 task-4] gK0eU33MSuGIOTTJZqveQg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.293 [XNIO-1 task-4] PIRV0g92Qya-FGW_Go-mPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.293 [XNIO-1 task-4] PIRV0g92Qya-FGW_Go-mPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.294 [XNIO-1 task-4] PIRV0g92Qya-FGW_Go-mPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.294 [XNIO-1 task-4] PIRV0g92Qya-FGW_Go-mPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:42.297 [XNIO-1 task-1] mthUzRaFTD2YRFo4iR4UPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.298 [XNIO-1 task-1] mthUzRaFTD2YRFo4iR4UPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.298 [XNIO-1 task-1] mthUzRaFTD2YRFo4iR4UPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.298 [XNIO-1 task-2] 0QysDSliQCCkziCl9Q4o4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.298 [XNIO-1 task-2] 0QysDSliQCCkziCl9Q4o4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.299 [XNIO-1 task-1] mthUzRaFTD2YRFo4iR4UPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:42.299 [XNIO-1 task-2] 0QysDSliQCCkziCl9Q4o4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.302 [XNIO-1 task-2] 0QysDSliQCCkziCl9Q4o4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:42.306 [XNIO-1 task-4] PIRV0g92Qya-FGW_Go-mPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.311 [XNIO-1 task-2] 0QysDSliQCCkziCl9Q4o4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.312 [XNIO-1 task-2] 0QysDSliQCCkziCl9Q4o4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.314 [XNIO-1 task-4] CitWlkDOQHWOk5aYKc1WRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.314 [XNIO-1 task-4] CitWlkDOQHWOk5aYKc1WRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.320 [XNIO-1 task-4] CitWlkDOQHWOk5aYKc1WRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.321 [XNIO-1 task-4] CitWlkDOQHWOk5aYKc1WRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.328 [XNIO-1 task-4] CitWlkDOQHWOk5aYKc1WRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.336 [XNIO-1 task-1] mthUzRaFTD2YRFo4iR4UPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.340 [XNIO-1 task-4] qZsiXFM5SGaHFv5o0UjKBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.341 [XNIO-1 task-4] qZsiXFM5SGaHFv5o0UjKBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.342 [XNIO-1 task-4] qZsiXFM5SGaHFv5o0UjKBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.342 [XNIO-1 task-4] qZsiXFM5SGaHFv5o0UjKBg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.349 [XNIO-1 task-4] qZsiXFM5SGaHFv5o0UjKBg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.353 [XNIO-1 task-1] Gq8LbJLfSam56H1cFRoq8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.354 [XNIO-1 task-1] Gq8LbJLfSam56H1cFRoq8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.354 [XNIO-1 task-1] Gq8LbJLfSam56H1cFRoq8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.354 [XNIO-1 task-1] Gq8LbJLfSam56H1cFRoq8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a425b468-17de-4d99-8bec-c1c987700b66 scope = null +17:00:42.355 [XNIO-1 task-4] lTFLcykWTiGj4SOfh1Ou6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.355 [XNIO-1 task-4] lTFLcykWTiGj4SOfh1Ou6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.355 [XNIO-1 task-4] lTFLcykWTiGj4SOfh1Ou6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.356 [XNIO-1 task-4] lTFLcykWTiGj4SOfh1Ou6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.361 [XNIO-1 task-4] lTFLcykWTiGj4SOfh1Ou6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a425b468-17de-4d99-8bec-c1c987700b66 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:42.367 [XNIO-1 task-4] gI4j3YdBTl-V1F3Gm_465g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.367 [XNIO-1 task-4] gI4j3YdBTl-V1F3Gm_465g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.368 [XNIO-1 task-4] gI4j3YdBTl-V1F3Gm_465g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.368 [XNIO-1 task-4] gI4j3YdBTl-V1F3Gm_465g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:42.374 [XNIO-1 task-4] gI4j3YdBTl-V1F3Gm_465g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.382 [XNIO-1 task-1] luViQ4l1Q_a-Vf_j-81r9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.382 [XNIO-1 task-1] luViQ4l1Q_a-Vf_j-81r9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.382 [XNIO-1 task-1] luViQ4l1Q_a-Vf_j-81r9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.383 [XNIO-1 task-1] luViQ4l1Q_a-Vf_j-81r9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:42.383 [XNIO-1 task-4] Oq1Qw0m9T8WUEu9da9uH1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.383 [XNIO-1 task-4] Oq1Qw0m9T8WUEu9da9uH1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.384 [XNIO-1 task-4] Oq1Qw0m9T8WUEu9da9uH1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.384 [XNIO-1 task-4] Oq1Qw0m9T8WUEu9da9uH1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:42.389 [XNIO-1 task-1] luViQ4l1Q_a-Vf_j-81r9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.390 [XNIO-1 task-4] Oq1Qw0m9T8WUEu9da9uH1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.391 [XNIO-1 task-4] Oq1Qw0m9T8WUEu9da9uH1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.395 [XNIO-1 task-1] bHacpr41Sem-TRKmu07fFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.395 [XNIO-1 task-1] bHacpr41Sem-TRKmu07fFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.395 [XNIO-1 task-1] bHacpr41Sem-TRKmu07fFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.395 [XNIO-1 task-1] bHacpr41Sem-TRKmu07fFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.402 [XNIO-1 task-1] bHacpr41Sem-TRKmu07fFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.403 [XNIO-1 task-4] PS_as-vfQTK_opULTsfDuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.403 [XNIO-1 task-4] PS_as-vfQTK_opULTsfDuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.404 [XNIO-1 task-4] PS_as-vfQTK_opULTsfDuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.404 [XNIO-1 task-4] PS_as-vfQTK_opULTsfDuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 8b559492-0202-4158-80f7-24164cd443f3 scope = null +17:00:42.411 [XNIO-1 task-1] 1FMHWWsnTYOJy03J9LpZbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.411 [XNIO-1 task-1] 1FMHWWsnTYOJy03J9LpZbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.412 [XNIO-1 task-1] 1FMHWWsnTYOJy03J9LpZbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.413 [XNIO-1 task-1] 1FMHWWsnTYOJy03J9LpZbQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.418 [XNIO-1 task-4] PS_as-vfQTK_opULTsfDuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.419 [XNIO-1 task-1] 1FMHWWsnTYOJy03J9LpZbQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.429 [XNIO-1 task-1] FseCVFnTS-axzgZDAcv7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.431 [XNIO-1 task-1] FseCVFnTS-axzgZDAcv7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.431 [XNIO-1 task-1] FseCVFnTS-axzgZDAcv7Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.433 [XNIO-1 task-1] FseCVFnTS-axzgZDAcv7Rw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.437 [XNIO-1 task-4] DlidcGzTQOy0UcxPU3YD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.437 [XNIO-1 task-4] DlidcGzTQOy0UcxPU3YD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.438 [XNIO-1 task-4] DlidcGzTQOy0UcxPU3YD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.438 [XNIO-1 task-4] DlidcGzTQOy0UcxPU3YD1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 42dc698d-0dfc-47fb-a55f-a78c6d11efe6 scope = null +17:00:42.438 [XNIO-1 task-1] FseCVFnTS-axzgZDAcv7Rw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.444 [XNIO-1 task-1] AZl6m8cKSl6vk93SawicDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.444 [XNIO-1 task-1] AZl6m8cKSl6vk93SawicDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.444 [XNIO-1 task-1] AZl6m8cKSl6vk93SawicDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.446 [XNIO-1 task-1] AZl6m8cKSl6vk93SawicDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.454 [XNIO-1 task-2] AxjLJ2Y2RvSjoaXlL9bhEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.454 [XNIO-1 task-2] AxjLJ2Y2RvSjoaXlL9bhEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.455 [XNIO-1 task-1] AZl6m8cKSl6vk93SawicDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.458 [XNIO-1 task-2] AxjLJ2Y2RvSjoaXlL9bhEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.458 [XNIO-1 task-2] AxjLJ2Y2RvSjoaXlL9bhEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XFz8xIUWQf6Q0WWby5EzFA redirectUri = http://localhost:8080/authorization +17:00:42.462 [XNIO-1 task-4] DlidcGzTQOy0UcxPU3YD1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.464 [XNIO-1 task-1] oG26FOdMTN2QkEEfI0Lt1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.464 [XNIO-1 task-1] oG26FOdMTN2QkEEfI0Lt1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.465 [XNIO-1 task-1] oG26FOdMTN2QkEEfI0Lt1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.465 [XNIO-1 task-1] oG26FOdMTN2QkEEfI0Lt1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.469 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e6da76ec-0018-448f-931e-ea9ea5aaf450 +17:00:42.472 [XNIO-1 task-2] AxjLJ2Y2RvSjoaXlL9bhEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.472 [XNIO-1 task-1] oG26FOdMTN2QkEEfI0Lt1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.472 [XNIO-1 task-2] AxjLJ2Y2RvSjoaXlL9bhEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.479 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:42.479 [XNIO-1 task-1] sEX6mHSORgKiYBoaROOwnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.479 [XNIO-1 task-1] sEX6mHSORgKiYBoaROOwnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.480 [XNIO-1 task-1] sEX6mHSORgKiYBoaROOwnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.480 [XNIO-1 task-1] sEX6mHSORgKiYBoaROOwnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:42.485 [XNIO-1 task-1] sEX6mHSORgKiYBoaROOwnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.493 [XNIO-1 task-1] Tt92m6tnR220Px2KJiw2Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.493 [XNIO-1 task-1] Tt92m6tnR220Px2KJiw2Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.494 [XNIO-1 task-1] Tt92m6tnR220Px2KJiw2Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.494 [XNIO-1 task-1] Tt92m6tnR220Px2KJiw2Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:42.500 [XNIO-1 task-1] Tt92m6tnR220Px2KJiw2Eg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.511 [XNIO-1 task-1] h9-Fl-bwQOKKX0xiJYghFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.511 [XNIO-1 task-1] h9-Fl-bwQOKKX0xiJYghFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.512 [XNIO-1 task-1] h9-Fl-bwQOKKX0xiJYghFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.512 [XNIO-1 task-1] h9-Fl-bwQOKKX0xiJYghFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:42.520 [XNIO-1 task-1] h9-Fl-bwQOKKX0xiJYghFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.534 [XNIO-1 task-1] y2xlBcXFTKCYYelocbdrOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.535 [XNIO-1 task-1] y2xlBcXFTKCYYelocbdrOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.535 [XNIO-1 task-1] y2xlBcXFTKCYYelocbdrOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.536 [XNIO-1 task-1] y2xlBcXFTKCYYelocbdrOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:42.542 [XNIO-1 task-1] y2xlBcXFTKCYYelocbdrOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.555 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2b039337 +17:00:42.556 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2b039337 +17:00:42.561 [XNIO-1 task-1] ArycZ_8PT-SFTPG1YCdrIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.561 [XNIO-1 task-1] ArycZ_8PT-SFTPG1YCdrIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.562 [XNIO-1 task-1] ArycZ_8PT-SFTPG1YCdrIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.563 [XNIO-1 task-1] ArycZ_8PT-SFTPG1YCdrIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.569 [XNIO-1 task-1] ArycZ_8PT-SFTPG1YCdrIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.575 [XNIO-1 task-1] H6A4Xk6GSeStkCrlOM8Tzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.575 [XNIO-1 task-1] H6A4Xk6GSeStkCrlOM8Tzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.575 [XNIO-1 task-1] H6A4Xk6GSeStkCrlOM8Tzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.576 [XNIO-1 task-1] H6A4Xk6GSeStkCrlOM8Tzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.581 [XNIO-1 task-1] H6A4Xk6GSeStkCrlOM8Tzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.586 [XNIO-1 task-1] hVrgSK4WRRaKY-vneH9i1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.586 [XNIO-1 task-1] hVrgSK4WRRaKY-vneH9i1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.587 [XNIO-1 task-1] hVrgSK4WRRaKY-vneH9i1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.587 [XNIO-1 task-1] hVrgSK4WRRaKY-vneH9i1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.594 [XNIO-1 task-1] hVrgSK4WRRaKY-vneH9i1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.599 [XNIO-1 task-1] fUYiht_EQw6iT7XB98l1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.599 [XNIO-1 task-1] fUYiht_EQw6iT7XB98l1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.599 [XNIO-1 task-1] fUYiht_EQw6iT7XB98l1FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.600 [XNIO-1 task-1] fUYiht_EQw6iT7XB98l1FQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.605 [XNIO-1 task-1] fUYiht_EQw6iT7XB98l1FQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.615 [XNIO-1 task-1] 9648DiHeREWsFDOAcOxXeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.615 [XNIO-1 task-1] 9648DiHeREWsFDOAcOxXeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.616 [XNIO-1 task-1] 9648DiHeREWsFDOAcOxXeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.616 [XNIO-1 task-1] 9648DiHeREWsFDOAcOxXeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.618 [XNIO-1 task-2] kZKutKOwQli23H5FtXHkiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.618 [XNIO-1 task-2] kZKutKOwQli23H5FtXHkiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.619 [XNIO-1 task-2] kZKutKOwQli23H5FtXHkiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.619 [XNIO-1 task-2] kZKutKOwQli23H5FtXHkiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = a2zTAjGCQwScR6TWiQiriw redirectUri = http://localhost:8080/authorization +17:00:42.623 [XNIO-1 task-1] 9648DiHeREWsFDOAcOxXeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.628 [XNIO-1 task-2] kZKutKOwQli23H5FtXHkiA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.633 [XNIO-1 task-1] z56iCPokSgykMp0vIIEpLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.633 [XNIO-1 task-1] z56iCPokSgykMp0vIIEpLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.634 [XNIO-1 task-1] z56iCPokSgykMp0vIIEpLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.636 [XNIO-1 task-1] z56iCPokSgykMp0vIIEpLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmM0NjlmMGUtNmZjOC00OWU1LTg5MjUtZDM2YjVlMDEyZDE4OkFQdkpwUzM2VElxUXhDNGo0T29oU2c=", "Basic YmM0NjlmMGUtNmZjOC00OWU1LTg5MjUtZDM2YjVlMDEyZDE4OkFQdkpwUzM2VElxUXhDNGo0T29oU2c=", authorization) +17:00:42.640 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c5ede304 +17:00:42.641 [XNIO-1 task-1] z56iCPokSgykMp0vIIEpLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.643 [XNIO-1 task-1] z56iCPokSgykMp0vIIEpLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.644 [XNIO-1 task-2] If3nS2K_SvOVpJ5tp0U4MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.644 [XNIO-1 task-2] If3nS2K_SvOVpJ5tp0U4MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.646 [XNIO-1 task-2] If3nS2K_SvOVpJ5tp0U4MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.646 [XNIO-1 task-2] If3nS2K_SvOVpJ5tp0U4MA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3c7af9d0-423b-4867-a0bf-70f300d10809 scope = null +17:00:42.647 [XNIO-1 task-1] I0pPxwqpSKaWs4SHSZMGug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.647 [XNIO-1 task-1] I0pPxwqpSKaWs4SHSZMGug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.648 [XNIO-1 task-1] I0pPxwqpSKaWs4SHSZMGug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.648 [XNIO-1 task-1] I0pPxwqpSKaWs4SHSZMGug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.649 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2b039337 +17:00:42.653 [XNIO-1 task-1] I0pPxwqpSKaWs4SHSZMGug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.657 [XNIO-1 task-2] If3nS2K_SvOVpJ5tp0U4MA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.659 [XNIO-1 task-1] FDivHp8iT_yqBik3lCb_wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.659 [XNIO-1 task-1] FDivHp8iT_yqBik3lCb_wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.660 [XNIO-1 task-1] FDivHp8iT_yqBik3lCb_wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.661 [XNIO-1 task-1] FDivHp8iT_yqBik3lCb_wg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.666 [XNIO-1 task-1] FDivHp8iT_yqBik3lCb_wg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.668 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c5ede304 +17:00:42.674 [XNIO-1 task-1] SvTulOc_Sy-IYVF3VyrWjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.674 [XNIO-1 task-1] SvTulOc_Sy-IYVF3VyrWjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.674 [XNIO-1 task-1] SvTulOc_Sy-IYVF3VyrWjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.675 [XNIO-1 task-1] SvTulOc_Sy-IYVF3VyrWjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.680 [XNIO-1 task-1] SvTulOc_Sy-IYVF3VyrWjA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.686 [XNIO-1 task-1] G8aJMrciSouBho66ky43ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.687 [XNIO-1 task-1] G8aJMrciSouBho66ky43ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.687 [XNIO-1 task-1] G8aJMrciSouBho66ky43ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.687 [XNIO-1 task-1] G8aJMrciSouBho66ky43ag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:42.692 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:81614c54 +17:00:42.693 [XNIO-1 task-1] G8aJMrciSouBho66ky43ag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.693 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c5ede304 +17:00:42.702 [XNIO-1 task-1] OSMZhsc4QlOPp4TzpxMqLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.702 [XNIO-1 task-1] OSMZhsc4QlOPp4TzpxMqLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.703 [XNIO-1 task-1] OSMZhsc4QlOPp4TzpxMqLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.703 [XNIO-1 task-1] OSMZhsc4QlOPp4TzpxMqLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:42.710 [XNIO-1 task-1] OSMZhsc4QlOPp4TzpxMqLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.717 [XNIO-1 task-1] fUaDXSY9Q12haC7D4YtlyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.717 [XNIO-1 task-1] fUaDXSY9Q12haC7D4YtlyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.718 [XNIO-1 task-1] fUaDXSY9Q12haC7D4YtlyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.718 [XNIO-1 task-1] fUaDXSY9Q12haC7D4YtlyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:42.723 [XNIO-1 task-1] fUaDXSY9Q12haC7D4YtlyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.724 [XNIO-1 task-2] bRR5THNRTyCsxVcIbjbeTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.725 [XNIO-1 task-2] bRR5THNRTyCsxVcIbjbeTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.725 [XNIO-1 task-2] bRR5THNRTyCsxVcIbjbeTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.725 [XNIO-1 task-2] bRR5THNRTyCsxVcIbjbeTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:42.735 [XNIO-1 task-2] bRR5THNRTyCsxVcIbjbeTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.735 [XNIO-1 task-2] bRR5THNRTyCsxVcIbjbeTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.737 [XNIO-1 task-1] Qm-BvkhTTZ6p0NAXS5kFDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.737 [XNIO-1 task-1] Qm-BvkhTTZ6p0NAXS5kFDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.738 [XNIO-1 task-1] Qm-BvkhTTZ6p0NAXS5kFDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.738 [XNIO-1 task-1] Qm-BvkhTTZ6p0NAXS5kFDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmM0NjlmMGUtNmZjOC00OWU1LTg5MjUtZDM2YjVlMDEyZDE4OkFQdkpwUzM2VElxUXhDNGo0T29oU2c=", "Basic YmM0NjlmMGUtNmZjOC00OWU1LTg5MjUtZDM2YjVlMDEyZDE4OkFQdkpwUzM2VElxUXhDNGo0T29oU2c=", authorization) +17:00:42.739 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1495f676 +17:00:42.741 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c5ede304 +17:00:42.743 [XNIO-1 task-1] Qm-BvkhTTZ6p0NAXS5kFDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.749 [XNIO-1 task-1] e7PXlLIQSrm-BwptvvvSCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.749 [XNIO-1 task-1] e7PXlLIQSrm-BwptvvvSCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.749 [XNIO-1 task-1] e7PXlLIQSrm-BwptvvvSCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.750 [XNIO-1 task-1] e7PXlLIQSrm-BwptvvvSCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:42.751 [XNIO-1 task-2] dIC-d3H1QEGLGMZbqpNmvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.751 [XNIO-1 task-2] dIC-d3H1QEGLGMZbqpNmvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.752 [XNIO-1 task-2] dIC-d3H1QEGLGMZbqpNmvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.752 [XNIO-1 task-2] dIC-d3H1QEGLGMZbqpNmvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmM0NjlmMGUtNmZjOC00OWU1LTg5MjUtZDM2YjVlMDEyZDE4OkFQdkpwUzM2VElxUXhDNGo0T29oU2c=", "Basic YmM0NjlmMGUtNmZjOC00OWU1LTg5MjUtZDM2YjVlMDEyZDE4OkFQdkpwUzM2VElxUXhDNGo0T29oU2c=", authorization) +17:00:42.757 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c5ede304 +17:00:42.760 [XNIO-1 task-1] e7PXlLIQSrm-BwptvvvSCg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.762 [XNIO-1 task-2] dIC-d3H1QEGLGMZbqpNmvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.767 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1495f676 +17:00:42.769 [XNIO-1 task-2] zV6j9czRTCWRakZIIUsAYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.769 [XNIO-1 task-2] zV6j9czRTCWRakZIIUsAYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.770 [XNIO-1 task-2] zV6j9czRTCWRakZIIUsAYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.772 [XNIO-1 task-2] zV6j9czRTCWRakZIIUsAYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:42.773 [XNIO-1 task-4] _fL1N4s4S0W0hHyRFFSngw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.775 [XNIO-1 task-4] _fL1N4s4S0W0hHyRFFSngw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.775 [XNIO-1 task-4] _fL1N4s4S0W0hHyRFFSngw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.776 [XNIO-1 task-4] _fL1N4s4S0W0hHyRFFSngw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:42.779 [XNIO-1 task-2] zV6j9czRTCWRakZIIUsAYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.784 [XNIO-1 task-2] emSYUbCaSI-_exziSxK61Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.784 [XNIO-1 task-2] emSYUbCaSI-_exziSxK61Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.785 [XNIO-1 task-2] emSYUbCaSI-_exziSxK61Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.785 [XNIO-1 task-2] emSYUbCaSI-_exziSxK61Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:42.791 [XNIO-1 task-2] emSYUbCaSI-_exziSxK61Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.795 [XNIO-1 task-2] adgw1dNuQO6QCeOws0HOrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.795 [XNIO-1 task-2] adgw1dNuQO6QCeOws0HOrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.796 [XNIO-1 task-2] adgw1dNuQO6QCeOws0HOrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.796 [XNIO-1 task-2] adgw1dNuQO6QCeOws0HOrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:42.802 [XNIO-1 task-2] adgw1dNuQO6QCeOws0HOrA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.803 [XNIO-1 task-4] _fL1N4s4S0W0hHyRFFSngw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.803 [XNIO-1 task-4] _fL1N4s4S0W0hHyRFFSngw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.812 [XNIO-1 task-2] pUkslSNWT5eL-c5-csEYqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.812 [XNIO-1 task-2] pUkslSNWT5eL-c5-csEYqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.812 [XNIO-1 task-2] pUkslSNWT5eL-c5-csEYqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.813 [XNIO-1 task-2] pUkslSNWT5eL-c5-csEYqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.818 [XNIO-1 task-2] pUkslSNWT5eL-c5-csEYqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.819 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2b039337 +17:00:42.821 [XNIO-1 task-4] u6kiXDruQLqdC8o-ZE2M8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.821 [XNIO-1 task-4] u6kiXDruQLqdC8o-ZE2M8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.822 [XNIO-1 task-4] u6kiXDruQLqdC8o-ZE2M8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.822 [XNIO-1 task-4] u6kiXDruQLqdC8o-ZE2M8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 07ba867f-9cb7-40a7-95a7-69c2ae406784 scope = null +17:00:42.825 [XNIO-1 task-2] 5lG_p3McQLSkRTzgBJFy-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.825 [XNIO-1 task-2] 5lG_p3McQLSkRTzgBJFy-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.826 [XNIO-1 task-2] 5lG_p3McQLSkRTzgBJFy-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.826 [XNIO-1 task-2] 5lG_p3McQLSkRTzgBJFy-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.832 [XNIO-1 task-2] 5lG_p3McQLSkRTzgBJFy-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.838 [XNIO-1 task-2] gdfY1oznTpyejNP_02oh3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.838 [XNIO-1 task-2] gdfY1oznTpyejNP_02oh3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.838 [XNIO-1 task-2] gdfY1oznTpyejNP_02oh3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.839 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81614c54 +17:00:42.839 [XNIO-1 task-2] gdfY1oznTpyejNP_02oh3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.840 [XNIO-1 task-4] u6kiXDruQLqdC8o-ZE2M8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.846 [XNIO-1 task-2] gdfY1oznTpyejNP_02oh3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.852 [XNIO-1 task-2] Nvi1WSuTTFKYsFY_lhdpgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.852 [XNIO-1 task-2] Nvi1WSuTTFKYsFY_lhdpgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.852 [XNIO-1 task-2] Nvi1WSuTTFKYsFY_lhdpgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.853 [XNIO-1 task-2] Nvi1WSuTTFKYsFY_lhdpgA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.856 [XNIO-1 task-1] GBTUjiSxSEC_69e--jSv8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.856 [XNIO-1 task-1] GBTUjiSxSEC_69e--jSv8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.856 [XNIO-1 task-1] GBTUjiSxSEC_69e--jSv8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.857 [XNIO-1 task-1] GBTUjiSxSEC_69e--jSv8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Ja9r_8XrRHyL_gauGlZ6EA redirectUri = http://localhost:8080/authorization +17:00:42.866 [XNIO-1 task-1] GBTUjiSxSEC_69e--jSv8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.867 [XNIO-1 task-2] Nvi1WSuTTFKYsFY_lhdpgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.876 [XNIO-1 task-2] ZXFfVXo8R2udgcH2dd1ucA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.876 [XNIO-1 task-2] ZXFfVXo8R2udgcH2dd1ucA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.876 [XNIO-1 task-2] ZXFfVXo8R2udgcH2dd1ucA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.879 [XNIO-1 task-2] ZXFfVXo8R2udgcH2dd1ucA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:42.903 [XNIO-1 task-2] ZXFfVXo8R2udgcH2dd1ucA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.905 [XNIO-1 task-1] -4XmbybtTrWD3tAA6JcKlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.905 [XNIO-1 task-1] -4XmbybtTrWD3tAA6JcKlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.905 [XNIO-1 task-1] -4XmbybtTrWD3tAA6JcKlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.906 [XNIO-1 task-1] -4XmbybtTrWD3tAA6JcKlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:42.911 [XNIO-1 task-2] GMCwbNGGTDuNuMQs9DPhjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.912 [XNIO-1 task-2] GMCwbNGGTDuNuMQs9DPhjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.912 [XNIO-1 task-2] GMCwbNGGTDuNuMQs9DPhjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.913 [XNIO-1 task-2] GMCwbNGGTDuNuMQs9DPhjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:42.919 [XNIO-1 task-2] GMCwbNGGTDuNuMQs9DPhjw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.921 [XNIO-1 task-1] -4XmbybtTrWD3tAA6JcKlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.923 [XNIO-1 task-2] o7iiGv8hQNm_JQs4ePE4Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.923 [XNIO-1 task-2] o7iiGv8hQNm_JQs4ePE4Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.925 [XNIO-1 task-2] o7iiGv8hQNm_JQs4ePE4Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.925 [XNIO-1 task-2] o7iiGv8hQNm_JQs4ePE4Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:42.926 [XNIO-1 task-4] GU4PWpWjSY6qPEJ0itRClg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.926 [XNIO-1 task-4] GU4PWpWjSY6qPEJ0itRClg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.927 [XNIO-1 task-4] GU4PWpWjSY6qPEJ0itRClg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.927 [XNIO-1 task-4] GU4PWpWjSY6qPEJ0itRClg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:42.933 [XNIO-1 task-4] GU4PWpWjSY6qPEJ0itRClg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.935 [XNIO-1 task-2] o7iiGv8hQNm_JQs4ePE4Jg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:42.936 [XNIO-1 task-2] o7iiGv8hQNm_JQs4ePE4Jg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.938 [XNIO-1 task-4] M7DbHVQ8TqakT-k_eOFzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.938 [XNIO-1 task-4] M7DbHVQ8TqakT-k_eOFzZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.938 [XNIO-1 task-4] M7DbHVQ8TqakT-k_eOFzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.938 [XNIO-1 task-4] M7DbHVQ8TqakT-k_eOFzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.939 [XNIO-1 task-4] M7DbHVQ8TqakT-k_eOFzZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:42.942 [XNIO-1 task-1] 1hF4yZpuTVqZw4H2CI9DOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.942 [XNIO-1 task-1] 1hF4yZpuTVqZw4H2CI9DOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.942 [XNIO-1 task-1] 1hF4yZpuTVqZw4H2CI9DOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:42.943 [XNIO-1 task-1] 1hF4yZpuTVqZw4H2CI9DOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7e21ec75-587e-4b64-a5e7-09921ad589a5 scope = null +17:00:42.945 [XNIO-1 task-4] M7DbHVQ8TqakT-k_eOFzZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.946 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d6403a5 +17:00:42.947 [XNIO-1 task-2] PKlVREPyRwmViu9qdNEJRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.947 [XNIO-1 task-2] PKlVREPyRwmViu9qdNEJRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.947 [XNIO-1 task-2] PKlVREPyRwmViu9qdNEJRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.948 [XNIO-1 task-2] PKlVREPyRwmViu9qdNEJRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:42.952 [XNIO-1 task-4] 8yZZrS4ARXCJt3dhr9QOBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.952 [XNIO-1 task-4] 8yZZrS4ARXCJt3dhr9QOBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.952 [XNIO-1 task-4] 8yZZrS4ARXCJt3dhr9QOBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.953 [XNIO-1 task-4] 8yZZrS4ARXCJt3dhr9QOBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:42.954 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ada8eac0-d5ff-4a39-b5db-d9874d879857 +17:00:42.955 [XNIO-1 task-1] 1hF4yZpuTVqZw4H2CI9DOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.958 [XNIO-1 task-4] 8yZZrS4ARXCJt3dhr9QOBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:42.959 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6d6403a5 +17:00:42.960 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b9b01a59 +17:00:42.960 [XNIO-1 task-2] PKlVREPyRwmViu9qdNEJRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.967 [XNIO-1 task-4] yOP4L1WhS7KQDUJaaGHU5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.967 [XNIO-1 task-4] yOP4L1WhS7KQDUJaaGHU5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.968 [XNIO-1 task-4] yOP4L1WhS7KQDUJaaGHU5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.968 [XNIO-1 task-4] yOP4L1WhS7KQDUJaaGHU5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:42.973 [XNIO-1 task-1] rGP1_Md4SSKQAyJ0k_stEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.973 [XNIO-1 task-1] rGP1_Md4SSKQAyJ0k_stEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.973 [XNIO-1 task-1] rGP1_Md4SSKQAyJ0k_stEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.974 [XNIO-1 task-4] yOP4L1WhS7KQDUJaaGHU5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.974 [XNIO-1 task-1] rGP1_Md4SSKQAyJ0k_stEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:42.978 [XNIO-1 task-4] Bc9AY8VuR6Ov1pfLPHkQww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.978 [XNIO-1 task-4] Bc9AY8VuR6Ov1pfLPHkQww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.979 [XNIO-1 task-4] Bc9AY8VuR6Ov1pfLPHkQww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.979 [XNIO-1 task-4] Bc9AY8VuR6Ov1pfLPHkQww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:42.984 [XNIO-1 task-4] Bc9AY8VuR6Ov1pfLPHkQww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.991 [XNIO-1 task-4] K5zF3Nq8SUWnhIY_ZL8Q7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.991 [XNIO-1 task-4] K5zF3Nq8SUWnhIY_ZL8Q7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:42.991 [XNIO-1 task-4] K5zF3Nq8SUWnhIY_ZL8Q7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:42.992 [XNIO-1 task-4] K5zF3Nq8SUWnhIY_ZL8Q7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:42.995 [XNIO-1 task-1] rGP1_Md4SSKQAyJ0k_stEg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:42.998 [XNIO-1 task-4] K5zF3Nq8SUWnhIY_ZL8Q7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.013 [XNIO-1 task-1] eBUiNEFQTL2LEQ-zYWapiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.014 [XNIO-1 task-1] eBUiNEFQTL2LEQ-zYWapiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.014 [XNIO-1 task-1] eBUiNEFQTL2LEQ-zYWapiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.014 [XNIO-1 task-1] eBUiNEFQTL2LEQ-zYWapiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:43.015 [XNIO-1 task-4] 7LBm7YvVSzi58Wm2qzmhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.016 [XNIO-1 task-4] 7LBm7YvVSzi58Wm2qzmhtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.017 [XNIO-1 task-4] 7LBm7YvVSzi58Wm2qzmhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.018 [XNIO-1 task-4] 7LBm7YvVSzi58Wm2qzmhtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:43.019 [XNIO-1 task-1] eBUiNEFQTL2LEQ-zYWapiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.058 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6d6403a5 +17:00:43.059 [XNIO-1 task-2] WK7HzILjQmq-MLoHG8UKrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.060 [XNIO-1 task-2] WK7HzILjQmq-MLoHG8UKrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.061 [XNIO-1 task-2] WK7HzILjQmq-MLoHG8UKrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.063 [XNIO-1 task-2] WK7HzILjQmq-MLoHG8UKrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:43.068 [XNIO-1 task-4] 7LBm7YvVSzi58Wm2qzmhtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.090 [XNIO-1 task-1] o_fK7GS0QxOTUjQU2Wyrmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.092 [XNIO-1 task-1] o_fK7GS0QxOTUjQU2Wyrmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.092 [XNIO-1 task-1] o_fK7GS0QxOTUjQU2Wyrmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.092 [XNIO-1 task-1] o_fK7GS0QxOTUjQU2Wyrmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:43.091 [XNIO-1 task-2] WK7HzILjQmq-MLoHG8UKrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:43.095 [XNIO-1 task-2] WK7HzILjQmq-MLoHG8UKrQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.100 [XNIO-1 task-1] o_fK7GS0QxOTUjQU2Wyrmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.107 [XNIO-1 task-1] Vv8ai00HTNa28BdXBpxjtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.107 [XNIO-1 task-1] Vv8ai00HTNa28BdXBpxjtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.108 [XNIO-1 task-1] Vv8ai00HTNa28BdXBpxjtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.109 [XNIO-1 task-1] Vv8ai00HTNa28BdXBpxjtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.115 [XNIO-1 task-1] Vv8ai00HTNa28BdXBpxjtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.121 [XNIO-1 task-1] r2d4WmxbTTSlpd6mbXAhLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.121 [XNIO-1 task-1] r2d4WmxbTTSlpd6mbXAhLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.122 [XNIO-1 task-1] r2d4WmxbTTSlpd6mbXAhLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.122 [XNIO-1 task-1] r2d4WmxbTTSlpd6mbXAhLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.127 [XNIO-1 task-1] r2d4WmxbTTSlpd6mbXAhLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.132 [XNIO-1 task-1] KkFP77GrQ2-CjevOQs7N6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.132 [XNIO-1 task-1] KkFP77GrQ2-CjevOQs7N6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.133 [XNIO-1 task-1] KkFP77GrQ2-CjevOQs7N6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.133 [XNIO-1 task-1] KkFP77GrQ2-CjevOQs7N6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.138 [XNIO-1 task-1] KkFP77GrQ2-CjevOQs7N6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.146 [XNIO-1 task-1] 5DbG-o2CR7KfQCXoG0HCwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.146 [XNIO-1 task-1] 5DbG-o2CR7KfQCXoG0HCwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.146 [XNIO-1 task-1] 5DbG-o2CR7KfQCXoG0HCwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.147 [XNIO-1 task-1] 5DbG-o2CR7KfQCXoG0HCwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.153 [XNIO-1 task-1] 5DbG-o2CR7KfQCXoG0HCwg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.158 [XNIO-1 task-1] NubWX1jcRQy9Kcx23-T_pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.158 [XNIO-1 task-1] NubWX1jcRQy9Kcx23-T_pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.159 [XNIO-1 task-1] NubWX1jcRQy9Kcx23-T_pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.159 [XNIO-1 task-1] NubWX1jcRQy9Kcx23-T_pA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.164 [XNIO-1 task-1] NubWX1jcRQy9Kcx23-T_pA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.170 [XNIO-1 task-1] 1MSg9tt-TlieIDThylQ4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.170 [XNIO-1 task-1] 1MSg9tt-TlieIDThylQ4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.171 [XNIO-1 task-1] 1MSg9tt-TlieIDThylQ4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.172 [XNIO-1 task-1] 1MSg9tt-TlieIDThylQ4Dw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.179 [XNIO-1 task-1] 1MSg9tt-TlieIDThylQ4Dw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.186 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b9b01a59 +17:00:43.188 [XNIO-1 task-1] _gBoHQppSPGRxn897DTJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.188 [XNIO-1 task-1] _gBoHQppSPGRxn897DTJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.188 [XNIO-1 task-1] _gBoHQppSPGRxn897DTJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.189 [XNIO-1 task-1] _gBoHQppSPGRxn897DTJOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZuTeCwErQnGSERt07cnLPQ redirectUri = http://localhost:8080/authorization +17:00:43.192 [XNIO-1 task-2] Fw0H-JzVR2Wle2CC4507CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.192 [XNIO-1 task-2] Fw0H-JzVR2Wle2CC4507CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.193 [XNIO-1 task-2] Fw0H-JzVR2Wle2CC4507CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.193 [XNIO-1 task-2] Fw0H-JzVR2Wle2CC4507CA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.196 [XNIO-1 task-1] _gBoHQppSPGRxn897DTJOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.199 [XNIO-1 task-2] Fw0H-JzVR2Wle2CC4507CA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.203 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1495f676 +17:00:43.207 [XNIO-1 task-2] DixxZspOQc2FcDQqQllu3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.208 [XNIO-1 task-2] DixxZspOQc2FcDQqQllu3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.208 [XNIO-1 task-2] DixxZspOQc2FcDQqQllu3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.209 [XNIO-1 task-2] DixxZspOQc2FcDQqQllu3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:43.210 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d6403a5 +17:00:43.215 [XNIO-1 task-2] DixxZspOQc2FcDQqQllu3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.218 [XNIO-1 task-1] 7AD6FBToSemzNG0KmRoalA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.219 [XNIO-1 task-1] 7AD6FBToSemzNG0KmRoalA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.219 [XNIO-1 task-1] 7AD6FBToSemzNG0KmRoalA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.220 [XNIO-1 task-1] 7AD6FBToSemzNG0KmRoalA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:43.226 [XNIO-1 task-2] gEF4GfQ3RByZczclJxAIug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.226 [XNIO-1 task-2] gEF4GfQ3RByZczclJxAIug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.227 [XNIO-1 task-2] gEF4GfQ3RByZczclJxAIug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.227 [XNIO-1 task-2] gEF4GfQ3RByZczclJxAIug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:43.230 [XNIO-1 task-1] 7AD6FBToSemzNG0KmRoalA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:43.231 [XNIO-1 task-1] 7AD6FBToSemzNG0KmRoalA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.239 [XNIO-1 task-2] gEF4GfQ3RByZczclJxAIug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.247 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6d6403a5 +17:00:43.248 [XNIO-1 task-1] -B1_Dm7WSViLT_A0_4xobw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.248 [XNIO-1 task-1] -B1_Dm7WSViLT_A0_4xobw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.249 [XNIO-1 task-1] -B1_Dm7WSViLT_A0_4xobw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.249 [XNIO-1 task-1] -B1_Dm7WSViLT_A0_4xobw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.250 [XNIO-1 task-2] 79E2VhrXR7eSyfLMmg30EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.250 [XNIO-1 task-2] 79E2VhrXR7eSyfLMmg30EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.250 [XNIO-1 task-2] 79E2VhrXR7eSyfLMmg30EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.251 [XNIO-1 task-2] 79E2VhrXR7eSyfLMmg30EA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = acf82e8d-0e0f-40a5-a7f8-52c77ca744b4 scope = null +17:00:43.254 [XNIO-1 task-1] -B1_Dm7WSViLT_A0_4xobw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.258 [XNIO-1 task-1] gQDKXdXrTHiPIlzAG1gJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.259 [XNIO-1 task-1] gQDKXdXrTHiPIlzAG1gJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.259 [XNIO-1 task-1] gQDKXdXrTHiPIlzAG1gJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.259 [XNIO-1 task-1] gQDKXdXrTHiPIlzAG1gJgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = UfgW-CpYSxCkLBSas6_w4Q redirectUri = http://localhost:8080/authorization +17:00:43.264 [XNIO-1 task-4] 2WfI3tEaR62JiWEZqD-aRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.264 [XNIO-1 task-4] 2WfI3tEaR62JiWEZqD-aRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.264 [XNIO-1 task-4] 2WfI3tEaR62JiWEZqD-aRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.265 [XNIO-1 task-4] 2WfI3tEaR62JiWEZqD-aRQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.266 [XNIO-1 task-2] 79E2VhrXR7eSyfLMmg30EA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.269 [XNIO-1 task-1] gQDKXdXrTHiPIlzAG1gJgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.272 [XNIO-1 task-4] 2WfI3tEaR62JiWEZqD-aRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.273 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6d6403a5 +17:00:43.285 [XNIO-1 task-1] TKdsIU2kSVSYSjvTMJsZtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.285 [XNIO-1 task-1] TKdsIU2kSVSYSjvTMJsZtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.286 [XNIO-1 task-1] TKdsIU2kSVSYSjvTMJsZtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.286 [XNIO-1 task-1] TKdsIU2kSVSYSjvTMJsZtw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.300 [XNIO-1 task-1] TKdsIU2kSVSYSjvTMJsZtw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.306 [XNIO-1 task-1] vHQ7IWZoQNWsTkgETn-gng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.306 [XNIO-1 task-1] vHQ7IWZoQNWsTkgETn-gng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.306 [XNIO-1 task-1] vHQ7IWZoQNWsTkgETn-gng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.306 [XNIO-1 task-1] vHQ7IWZoQNWsTkgETn-gng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.311 [XNIO-1 task-1] vHQ7IWZoQNWsTkgETn-gng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.316 [XNIO-1 task-1] V0bBOy06T06UfEuWyVGW4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.317 [XNIO-1 task-1] V0bBOy06T06UfEuWyVGW4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.317 [XNIO-1 task-1] V0bBOy06T06UfEuWyVGW4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.317 [XNIO-1 task-1] V0bBOy06T06UfEuWyVGW4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.322 [XNIO-1 task-1] V0bBOy06T06UfEuWyVGW4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.328 [XNIO-1 task-1] XWatNdjORiKvXDPBhRtv6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.330 [XNIO-1 task-1] XWatNdjORiKvXDPBhRtv6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.330 [XNIO-1 task-1] XWatNdjORiKvXDPBhRtv6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.331 [XNIO-1 task-1] XWatNdjORiKvXDPBhRtv6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.336 [XNIO-1 task-1] XWatNdjORiKvXDPBhRtv6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.341 [XNIO-1 task-1] Ls91gikUT16OK9_rEClVdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.341 [XNIO-1 task-1] Ls91gikUT16OK9_rEClVdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.341 [XNIO-1 task-1] Ls91gikUT16OK9_rEClVdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.341 [XNIO-1 task-1] Ls91gikUT16OK9_rEClVdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.347 [XNIO-1 task-1] Ls91gikUT16OK9_rEClVdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.351 [XNIO-1 task-1] 1mGmFQ1cRLSo6JSo3CtJuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.351 [XNIO-1 task-1] 1mGmFQ1cRLSo6JSo3CtJuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.351 [XNIO-1 task-1] 1mGmFQ1cRLSo6JSo3CtJuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.352 [XNIO-1 task-1] 1mGmFQ1cRLSo6JSo3CtJuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.357 [XNIO-1 task-1] 1mGmFQ1cRLSo6JSo3CtJuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.358 [XNIO-1 task-4] 24fBuBpvSYO0l8iVLt8GQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.359 [XNIO-1 task-4] 24fBuBpvSYO0l8iVLt8GQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.359 [XNIO-1 task-4] 24fBuBpvSYO0l8iVLt8GQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.359 [XNIO-1 task-4] 24fBuBpvSYO0l8iVLt8GQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = r4g2lYpRSfSIhVD6ftWv2g redirectUri = http://localhost:8080/authorization +17:00:43.362 [XNIO-1 task-1] HYY27eClTOK8m8E7d8_vqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.363 [XNIO-1 task-1] HYY27eClTOK8m8E7d8_vqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.363 [XNIO-1 task-1] HYY27eClTOK8m8E7d8_vqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.363 [XNIO-1 task-1] HYY27eClTOK8m8E7d8_vqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:43.366 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b9b01a59 +17:00:43.369 [XNIO-1 task-2] A1WcrPGFQumC_Kv8xWqzAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.369 [XNIO-1 task-2] A1WcrPGFQumC_Kv8xWqzAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.370 [XNIO-1 task-1] HYY27eClTOK8m8E7d8_vqg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.370 [XNIO-1 task-2] A1WcrPGFQumC_Kv8xWqzAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.370 [XNIO-1 task-2] A1WcrPGFQumC_Kv8xWqzAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Bpce5uWCTV-crbSDMDILKQ redirectUri = http://localhost:8080/authorization +17:00:43.371 [XNIO-1 task-4] 24fBuBpvSYO0l8iVLt8GQg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.376 [XNIO-1 task-1] w7sxbIYpSci98yb2k6Nk_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.377 [XNIO-1 task-1] w7sxbIYpSci98yb2k6Nk_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.377 [XNIO-1 task-1] w7sxbIYpSci98yb2k6Nk_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.378 [XNIO-1 task-2] A1WcrPGFQumC_Kv8xWqzAw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.378 [XNIO-1 task-1] w7sxbIYpSci98yb2k6Nk_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.378 [XNIO-1 task-1] w7sxbIYpSci98yb2k6Nk_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.380 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6e26a59 +17:00:43.383 [XNIO-1 task-1] w7sxbIYpSci98yb2k6Nk_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.388 [XNIO-1 task-4] H6DCoV98RWmtZ0Iw-zvlEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.388 [XNIO-1 task-4] H6DCoV98RWmtZ0Iw-zvlEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.388 [XNIO-1 task-4] H6DCoV98RWmtZ0Iw-zvlEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.389 [XNIO-1 task-4] H6DCoV98RWmtZ0Iw-zvlEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:43.394 [XNIO-1 task-4] H6DCoV98RWmtZ0Iw-zvlEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.400 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6e26a59 +17:00:43.400 [XNIO-1 task-4] Z4WIhVVoQFePaWuVbEtoDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.401 [XNIO-1 task-4] Z4WIhVVoQFePaWuVbEtoDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.401 [XNIO-1 task-4] Z4WIhVVoQFePaWuVbEtoDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.401 [XNIO-1 task-2] rwosRpg-Ty-gfUL_OeNisg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.401 [XNIO-1 task-4] Z4WIhVVoQFePaWuVbEtoDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.401 [XNIO-1 task-2] rwosRpg-Ty-gfUL_OeNisg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.401 [XNIO-1 task-4] Z4WIhVVoQFePaWuVbEtoDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:43.401 [XNIO-1 task-4] Z4WIhVVoQFePaWuVbEtoDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.406 [XNIO-1 task-4] Z4WIhVVoQFePaWuVbEtoDw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.416 [XNIO-1 task-2] rwosRpg-Ty-gfUL_OeNisg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.417 [XNIO-1 task-4] t7zVYDYXRDe4JaM-u7dOZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.417 [XNIO-1 task-4] t7zVYDYXRDe4JaM-u7dOZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.417 [XNIO-1 task-4] t7zVYDYXRDe4JaM-u7dOZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.418 [XNIO-1 task-4] t7zVYDYXRDe4JaM-u7dOZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", authorization) +17:00:43.423 [XNIO-1 task-4] t7zVYDYXRDe4JaM-u7dOZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.433 [XNIO-1 task-2] qZ85Kk_8TT-8kHICKzC5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.433 [XNIO-1 task-2] qZ85Kk_8TT-8kHICKzC5ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.434 [XNIO-1 task-2] qZ85Kk_8TT-8kHICKzC5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.434 [XNIO-1 task-2] qZ85Kk_8TT-8kHICKzC5ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:43.439 [XNIO-1 task-2] qZ85Kk_8TT-8kHICKzC5ZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.452 [XNIO-1 task-2] 8FHeihNRQrK6_PZYvE-78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.452 [XNIO-1 task-2] 8FHeihNRQrK6_PZYvE-78Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.453 [XNIO-1 task-2] 8FHeihNRQrK6_PZYvE-78Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.453 [XNIO-1 task-2] 8FHeihNRQrK6_PZYvE-78Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:43.461 [XNIO-1 task-2] 8FHeihNRQrK6_PZYvE-78Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.479 [XNIO-1 task-2] VWkGMmk8SAaexusigI4mWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.479 [XNIO-1 task-2] VWkGMmk8SAaexusigI4mWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.480 [XNIO-1 task-2] VWkGMmk8SAaexusigI4mWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.480 [XNIO-1 task-2] VWkGMmk8SAaexusigI4mWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:43.486 [XNIO-1 task-2] VWkGMmk8SAaexusigI4mWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.489 [XNIO-1 task-2] vzHjJl_DTRGOGSyfl2LBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.490 [XNIO-1 task-2] vzHjJl_DTRGOGSyfl2LBbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.491 [XNIO-1 task-2] vzHjJl_DTRGOGSyfl2LBbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.491 [XNIO-1 task-2] vzHjJl_DTRGOGSyfl2LBbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", authorization) +17:00:43.498 [XNIO-1 task-4] doDyUqbrTc-Ot7tzdbj0Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.498 [XNIO-1 task-4] doDyUqbrTc-Ot7tzdbj0Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.498 [XNIO-1 task-4] doDyUqbrTc-Ot7tzdbj0Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.499 [XNIO-1 task-4] doDyUqbrTc-Ot7tzdbj0Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:43.499 [XNIO-1 task-2] vzHjJl_DTRGOGSyfl2LBbg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:43.500 [XNIO-1 task-2] vzHjJl_DTRGOGSyfl2LBbg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.504 [XNIO-1 task-4] doDyUqbrTc-Ot7tzdbj0Uw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.512 [XNIO-1 task-2] aeD4TOxoSCiQPrsW8TlBrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.512 [XNIO-1 task-2] aeD4TOxoSCiQPrsW8TlBrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.512 [XNIO-1 task-2] aeD4TOxoSCiQPrsW8TlBrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.513 [XNIO-1 task-2] aeD4TOxoSCiQPrsW8TlBrA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +17:00:43.520 [XNIO-1 task-2] aeD4TOxoSCiQPrsW8TlBrA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.520 [XNIO-1 task-2] aeD4TOxoSCiQPrsW8TlBrA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +17:00:43.527 [XNIO-1 task-2] 1aIG7ByGSpuL-iZpvO1m_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.528 [XNIO-1 task-2] 1aIG7ByGSpuL-iZpvO1m_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.528 [XNIO-1 task-2] 1aIG7ByGSpuL-iZpvO1m_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:43.529 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:37f52310 +17:00:43.530 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:43.532 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:37f52310 +17:00:43.532 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:37f52310 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +17:00:43.534 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:43.548 [XNIO-1 task-2] 1aIG7ByGSpuL-iZpvO1m_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.556 [XNIO-1 task-2] v9C9T3_sQA6qovObgymY_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.556 [XNIO-1 task-2] v9C9T3_sQA6qovObgymY_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.556 [XNIO-1 task-2] v9C9T3_sQA6qovObgymY_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.557 [XNIO-1 task-2] v9C9T3_sQA6qovObgymY_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.562 [XNIO-1 task-2] v9C9T3_sQA6qovObgymY_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.567 [XNIO-1 task-2] ysWfYkvOSXScbbbjt70SwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.567 [XNIO-1 task-2] ysWfYkvOSXScbbbjt70SwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.567 [XNIO-1 task-2] ysWfYkvOSXScbbbjt70SwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.568 [XNIO-1 task-2] ysWfYkvOSXScbbbjt70SwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.573 [XNIO-1 task-2] ysWfYkvOSXScbbbjt70SwA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.579 [XNIO-1 task-2] VKqcUrloSx-o3tm3hvxmdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.579 [XNIO-1 task-2] VKqcUrloSx-o3tm3hvxmdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.579 [XNIO-1 task-2] VKqcUrloSx-o3tm3hvxmdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.580 [XNIO-1 task-2] VKqcUrloSx-o3tm3hvxmdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.585 [XNIO-1 task-2] VKqcUrloSx-o3tm3hvxmdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.589 [XNIO-1 task-2] c2VeB9ayQLy4OC7VfxiXDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.589 [XNIO-1 task-2] c2VeB9ayQLy4OC7VfxiXDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.590 [XNIO-1 task-2] c2VeB9ayQLy4OC7VfxiXDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.591 [XNIO-1 task-2] c2VeB9ayQLy4OC7VfxiXDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.596 [XNIO-1 task-2] c2VeB9ayQLy4OC7VfxiXDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.605 [XNIO-1 task-2] 6HfG4g2DR5utn5YQjEnkIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.605 [XNIO-1 task-2] 6HfG4g2DR5utn5YQjEnkIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.605 [XNIO-1 task-2] 6HfG4g2DR5utn5YQjEnkIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.605 [XNIO-1 task-4] GJGgJf6BRGKlhyvmE3Rvaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.605 [XNIO-1 task-2] 6HfG4g2DR5utn5YQjEnkIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:43.606 [XNIO-1 task-2] 6HfG4g2DR5utn5YQjEnkIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BsOVwgxgQOa1MeJWvWiZZw redirectUri = http://localhost:8080/authorization +17:00:43.606 [XNIO-1 task-4] GJGgJf6BRGKlhyvmE3Rvaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.606 [XNIO-1 task-4] GJGgJf6BRGKlhyvmE3Rvaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.611 [XNIO-1 task-4] GJGgJf6BRGKlhyvmE3Rvaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.613 [XNIO-1 task-2] 6HfG4g2DR5utn5YQjEnkIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.618 [XNIO-1 task-4] Q8lxeeIiRqGpeegSfK3FcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.618 [XNIO-1 task-4] Q8lxeeIiRqGpeegSfK3FcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.618 [XNIO-1 task-4] Q8lxeeIiRqGpeegSfK3FcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.619 [XNIO-1 task-4] Q8lxeeIiRqGpeegSfK3FcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:43.663 [XNIO-1 task-4] Q8lxeeIiRqGpeegSfK3FcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.674 [XNIO-1 task-4] Y40_qIZMQsuFRJSHwlZxbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.676 [XNIO-1 task-4] Y40_qIZMQsuFRJSHwlZxbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.677 [XNIO-1 task-4] Y40_qIZMQsuFRJSHwlZxbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.677 [XNIO-1 task-4] Y40_qIZMQsuFRJSHwlZxbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:43.682 [XNIO-1 task-4] Y40_qIZMQsuFRJSHwlZxbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.690 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:873a9e00-78a0-4046-8d12-6e80d09ca8f0 +17:00:43.694 [XNIO-1 task-2] AO_uTh4OR8C2684mJ1tWhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 5:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +17:00:43.694 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.694 [XNIO-1 task-2] AO_uTh4OR8C2684mJ1tWhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.696 [XNIO-1 task-4] jcZSYOTYRgKV6zzd7E2Ziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.696 [XNIO-1 task-4] jcZSYOTYRgKV6zzd7E2Ziw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.696 [XNIO-1 task-4] jcZSYOTYRgKV6zzd7E2Ziw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.696 [XNIO-1 task-2] AO_uTh4OR8C2684mJ1tWhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:43.697 [XNIO-1 task-2] AO_uTh4OR8C2684mJ1tWhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 11280096-9bfb-4cb4-b0e3-4a58030684a8 scope = null +17:00:43.698 [XNIO-1 task-4] jcZSYOTYRgKV6zzd7E2Ziw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.703 [XNIO-1 task-1] WytL-QsqQtG_3U43KRKXXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.703 [XNIO-1 task-1] WytL-QsqQtG_3U43KRKXXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.703 [XNIO-1 task-1] WytL-QsqQtG_3U43KRKXXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.704 [XNIO-1 task-1] WytL-QsqQtG_3U43KRKXXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1NFlSeMuQMCw4Sy8Fl8zIA redirectUri = http://localhost:8080/authorization +17:00:43.706 [XNIO-1 task-4] jcZSYOTYRgKV6zzd7E2Ziw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.715 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6e26a59 +17:00:43.719 [XNIO-1 task-4] 0OdCH1fZTo26NcO7RqWxdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.719 [XNIO-1 task-4] 0OdCH1fZTo26NcO7RqWxdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.722 [XNIO-1 task-1] WytL-QsqQtG_3U43KRKXXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.725 [XNIO-1 task-2] AO_uTh4OR8C2684mJ1tWhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.724 [XNIO-1 task-4] 0OdCH1fZTo26NcO7RqWxdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.728 [XNIO-1 task-4] 0OdCH1fZTo26NcO7RqWxdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", authorization) +17:00:43.734 [XNIO-1 task-4] 0OdCH1fZTo26NcO7RqWxdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.743 [XNIO-1 task-1] JQbEL66rQwiNT-FnXfX_gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.744 [XNIO-1 task-1] JQbEL66rQwiNT-FnXfX_gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.744 [XNIO-1 task-1] JQbEL66rQwiNT-FnXfX_gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.744 [XNIO-1 task-1] JQbEL66rQwiNT-FnXfX_gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", authorization) +17:00:43.749 [XNIO-1 task-1] JQbEL66rQwiNT-FnXfX_gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.751 [XNIO-1 task-2] VQVaTdtAQiq1KZQyTr8ZwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.751 [XNIO-1 task-2] VQVaTdtAQiq1KZQyTr8ZwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.751 [XNIO-1 task-2] VQVaTdtAQiq1KZQyTr8ZwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.752 [XNIO-1 task-2] VQVaTdtAQiq1KZQyTr8ZwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", authorization) +17:00:43.759 [XNIO-1 task-1] lzh-A1e1SQenS0x183imzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.759 [XNIO-1 task-1] lzh-A1e1SQenS0x183imzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.759 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:37f52310 +17:00:43.760 [XNIO-1 task-1] lzh-A1e1SQenS0x183imzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.760 [XNIO-1 task-1] lzh-A1e1SQenS0x183imzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.770 [XNIO-1 task-1] lzh-A1e1SQenS0x183imzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.776 [XNIO-1 task-1] TZe1nQ98TFG1sHhU3Zycrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.776 [XNIO-1 task-1] TZe1nQ98TFG1sHhU3Zycrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.779 [XNIO-1 task-2] VQVaTdtAQiq1KZQyTr8ZwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.789 [XNIO-1 task-4] T1OYQzUaT2Ow8pz918PBJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.789 [XNIO-1 task-4] T1OYQzUaT2Ow8pz918PBJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.790 [XNIO-1 task-4] T1OYQzUaT2Ow8pz918PBJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.790 [XNIO-1 task-4] T1OYQzUaT2Ow8pz918PBJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:43.792 [XNIO-1 task-1] TZe1nQ98TFG1sHhU3Zycrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.793 [XNIO-1 task-1] TZe1nQ98TFG1sHhU3Zycrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", authorization) +17:00:43.802 [XNIO-1 task-1] TZe1nQ98TFG1sHhU3Zycrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.804 [XNIO-1 task-2] gIyni2U2SLKUzUx9KEJOVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.804 [XNIO-1 task-2] gIyni2U2SLKUzUx9KEJOVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.805 [XNIO-1 task-2] gIyni2U2SLKUzUx9KEJOVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.805 [XNIO-1 task-2] gIyni2U2SLKUzUx9KEJOVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", authorization) +17:00:43.807 [XNIO-1 task-1] xFM3-6y1RyqP0ECerOr8Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.807 [XNIO-1 task-1] xFM3-6y1RyqP0ECerOr8Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.807 [XNIO-1 task-1] xFM3-6y1RyqP0ECerOr8Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.808 [XNIO-1 task-1] xFM3-6y1RyqP0ECerOr8Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", authorization) +17:00:43.813 [XNIO-1 task-1] xFM3-6y1RyqP0ECerOr8Cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.819 [XNIO-1 task-2] gIyni2U2SLKUzUx9KEJOVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.823 [XNIO-1 task-1] kFftshfGTIqVymj1sDrzDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.824 [XNIO-1 task-1] kFftshfGTIqVymj1sDrzDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.824 [XNIO-1 task-4] T1OYQzUaT2Ow8pz918PBJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.824 [XNIO-1 task-4] T1OYQzUaT2Ow8pz918PBJw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.827 [XNIO-1 task-1] kFftshfGTIqVymj1sDrzDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.829 [XNIO-1 task-1] kFftshfGTIqVymj1sDrzDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.834 [XNIO-1 task-2] J40W-ZBtR1GAdjxHjPtmag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.835 [XNIO-1 task-2] J40W-ZBtR1GAdjxHjPtmag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.836 [XNIO-1 task-2] J40W-ZBtR1GAdjxHjPtmag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.836 [XNIO-1 task-2] J40W-ZBtR1GAdjxHjPtmag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", authorization) +17:00:43.836 [XNIO-1 task-2] J40W-ZBtR1GAdjxHjPtmag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 46f9cec8-5a24-4c66-ba40-f9e9e6eacfe6 scope = null +17:00:43.838 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:43.839 [XNIO-1 task-1] kFftshfGTIqVymj1sDrzDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.840 [XNIO-1 task-4] br0RQT_oREiiGStj3pTf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.848 [XNIO-1 task-4] br0RQT_oREiiGStj3pTf1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.848 [XNIO-1 task-2] J40W-ZBtR1GAdjxHjPtmag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.848 [XNIO-1 task-4] br0RQT_oREiiGStj3pTf1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.849 [XNIO-1 task-4] br0RQT_oREiiGStj3pTf1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:43.859 [XNIO-1 task-1] W3jXOKslRJWQ_99sgmEBcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.859 [XNIO-1 task-1] W3jXOKslRJWQ_99sgmEBcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.859 [XNIO-1 task-1] W3jXOKslRJWQ_99sgmEBcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.860 [XNIO-1 task-1] W3jXOKslRJWQ_99sgmEBcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:43.864 [XNIO-1 task-4] br0RQT_oREiiGStj3pTf1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:43.870 [XNIO-1 task-4] 441f3kapTc2ngv_tD0CsTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.870 [XNIO-1 task-4] 441f3kapTc2ngv_tD0CsTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.870 [XNIO-1 task-1] W3jXOKslRJWQ_99sgmEBcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.871 [XNIO-1 task-4] 441f3kapTc2ngv_tD0CsTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.871 [XNIO-1 task-4] 441f3kapTc2ngv_tD0CsTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:43.879 [XNIO-1 task-1] ogcj6I5iSOOh_FwxDPmoNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.880 [XNIO-1 task-1] ogcj6I5iSOOh_FwxDPmoNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.879 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6e26a59 +17:00:43.880 [XNIO-1 task-1] ogcj6I5iSOOh_FwxDPmoNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.881 [XNIO-1 task-1] ogcj6I5iSOOh_FwxDPmoNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", authorization) +17:00:43.883 [XNIO-1 task-4] 441f3kapTc2ngv_tD0CsTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.894 [XNIO-1 task-2] FVCb-pZqTnyAcIm76YTZeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.894 [XNIO-1 task-2] FVCb-pZqTnyAcIm76YTZeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.895 [XNIO-1 task-2] FVCb-pZqTnyAcIm76YTZeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.895 [XNIO-1 task-2] FVCb-pZqTnyAcIm76YTZeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:43.896 [XNIO-1 task-1] ogcj6I5iSOOh_FwxDPmoNA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.903 [XNIO-1 task-1] XZvfBtrWQaWb2Z-ks1Wo2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.903 [XNIO-1 task-1] XZvfBtrWQaWb2Z-ks1Wo2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.903 [XNIO-1 task-1] XZvfBtrWQaWb2Z-ks1Wo2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.904 [XNIO-1 task-1] XZvfBtrWQaWb2Z-ks1Wo2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", authorization) +17:00:43.905 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1828f5df-246e-4856-a417-13528ad81f94 +17:00:43.908 [XNIO-1 task-4] FSqDhsreRwiuSktcLki9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.908 [XNIO-1 task-4] FSqDhsreRwiuSktcLki9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.908 [XNIO-1 task-4] FSqDhsreRwiuSktcLki9tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.909 [XNIO-1 task-2] FVCb-pZqTnyAcIm76YTZeQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.909 [XNIO-1 task-4] FSqDhsreRwiuSktcLki9tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:43.910 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1828f5df-246e-4856-a417-13528ad81f94 +17:00:43.923 [XNIO-1 task-1] XZvfBtrWQaWb2Z-ks1Wo2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.929 [XNIO-1 task-1] _euX3r6fQRuPW2Q5NkhqSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.929 [XNIO-1 task-1] _euX3r6fQRuPW2Q5NkhqSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.929 [XNIO-1 task-1] _euX3r6fQRuPW2Q5NkhqSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.930 [XNIO-1 task-1] _euX3r6fQRuPW2Q5NkhqSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", authorization) +17:00:43.935 [XNIO-1 task-2] FSvOElo9S8miD-r71wmdMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.936 [XNIO-1 task-2] FSvOElo9S8miD-r71wmdMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.936 [XNIO-1 task-1] _euX3r6fQRuPW2Q5NkhqSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.936 [XNIO-1 task-2] FSvOElo9S8miD-r71wmdMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.936 [XNIO-1 task-2] FSvOElo9S8miD-r71wmdMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:43.945 [XNIO-1 task-1] O1En_xxCQ8q9PHKTyW8d1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.945 [XNIO-1 task-1] O1En_xxCQ8q9PHKTyW8d1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:43.946 [XNIO-1 task-1] O1En_xxCQ8q9PHKTyW8d1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:43.953 [XNIO-1 task-2] FSvOElo9S8miD-r71wmdMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:43.955 [XNIO-1 task-1] O1En_xxCQ8q9PHKTyW8d1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:43.959 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:81614c54 +17:00:43.960 [XNIO-1 task-1] O1En_xxCQ8q9PHKTyW8d1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.964 [XNIO-1 task-4] FSqDhsreRwiuSktcLki9tQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:43.974 [XNIO-1 task-2] AaBdRxovQp6cp51nIViyTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.975 [XNIO-1 task-2] AaBdRxovQp6cp51nIViyTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.975 [XNIO-1 task-2] AaBdRxovQp6cp51nIViyTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.976 [XNIO-1 task-2] AaBdRxovQp6cp51nIViyTA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:43.986 [XNIO-1 task-2] AaBdRxovQp6cp51nIViyTA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:43.999 [XNIO-1 task-2] j2W--EahQxuXwx-xFxcGcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.999 [XNIO-1 task-2] j2W--EahQxuXwx-xFxcGcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:43.999 [XNIO-1 task-2] j2W--EahQxuXwx-xFxcGcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.000 [XNIO-1 task-2] j2W--EahQxuXwx-xFxcGcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.007 [XNIO-1 task-2] j2W--EahQxuXwx-xFxcGcg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.013 [XNIO-1 task-4] KNzpVpljRLes3fHJ7bQW5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.014 [XNIO-1 task-4] KNzpVpljRLes3fHJ7bQW5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.014 [XNIO-1 task-4] KNzpVpljRLes3fHJ7bQW5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.014 [XNIO-1 task-4] KNzpVpljRLes3fHJ7bQW5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.021 [XNIO-1 task-4] KNzpVpljRLes3fHJ7bQW5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.028 [XNIO-1 task-4] dtkt0GP1Sv2mk8eIrY1f9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.030 [XNIO-1 task-4] dtkt0GP1Sv2mk8eIrY1f9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.030 [XNIO-1 task-4] dtkt0GP1Sv2mk8eIrY1f9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.031 [XNIO-1 task-4] dtkt0GP1Sv2mk8eIrY1f9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.039 [XNIO-1 task-4] dtkt0GP1Sv2mk8eIrY1f9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.044 [XNIO-1 task-4] oCMfKlhjTsKcdB5Wp_wypw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.044 [XNIO-1 task-4] oCMfKlhjTsKcdB5Wp_wypw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.045 [XNIO-1 task-4] oCMfKlhjTsKcdB5Wp_wypw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.046 [XNIO-1 task-4] oCMfKlhjTsKcdB5Wp_wypw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.054 [XNIO-1 task-4] oCMfKlhjTsKcdB5Wp_wypw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.066 [XNIO-1 task-4] t5ca8aDnRtqyJY23Lg42Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.066 [XNIO-1 task-4] t5ca8aDnRtqyJY23Lg42Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.066 [XNIO-1 task-4] t5ca8aDnRtqyJY23Lg42Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.067 [XNIO-1 task-4] t5ca8aDnRtqyJY23Lg42Qg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.073 [XNIO-1 task-4] t5ca8aDnRtqyJY23Lg42Qg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.079 [XNIO-1 task-4] ywnBOmMTTt6didgNnZA3wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.079 [XNIO-1 task-4] ywnBOmMTTt6didgNnZA3wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.080 [XNIO-1 task-4] ywnBOmMTTt6didgNnZA3wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.080 [XNIO-1 task-4] ywnBOmMTTt6didgNnZA3wg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.087 [XNIO-1 task-2] MBAcScNdTlCtKcMYTl6OGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.087 [XNIO-1 task-2] MBAcScNdTlCtKcMYTl6OGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.087 [XNIO-1 task-4] ywnBOmMTTt6didgNnZA3wg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.088 [XNIO-1 task-2] MBAcScNdTlCtKcMYTl6OGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.089 [XNIO-1 task-2] MBAcScNdTlCtKcMYTl6OGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MKw0hlCIRaSPPWJmK9dDWA redirectUri = http://localhost:8080/authorization +17:00:44.097 [XNIO-1 task-4] fNRpIkP3QRGw0frAUYyBFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.098 [XNIO-1 task-4] fNRpIkP3QRGw0frAUYyBFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.100 [XNIO-1 task-4] fNRpIkP3QRGw0frAUYyBFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.103 [XNIO-1 task-4] fNRpIkP3QRGw0frAUYyBFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.111 [XNIO-1 task-4] fNRpIkP3QRGw0frAUYyBFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.140 [XNIO-1 task-4] 1ddzDXmxS2yiLMK5y4uUyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.140 [XNIO-1 task-4] 1ddzDXmxS2yiLMK5y4uUyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.141 [XNIO-1 task-4] 1ddzDXmxS2yiLMK5y4uUyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.141 [XNIO-1 task-2] MBAcScNdTlCtKcMYTl6OGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.141 [XNIO-1 task-2] MBAcScNdTlCtKcMYTl6OGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.146 [XNIO-1 task-4] 1ddzDXmxS2yiLMK5y4uUyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.153 [XNIO-1 task-4] 8vLbzLAwQti8I0LeZUuqrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.153 [XNIO-1 task-4] 8vLbzLAwQti8I0LeZUuqrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.154 [XNIO-1 task-4] 8vLbzLAwQti8I0LeZUuqrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.154 [XNIO-1 task-4] 8vLbzLAwQti8I0LeZUuqrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:44.156 [XNIO-1 task-2] vHtaOdj7SoetJR_VXeHq-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.156 [XNIO-1 task-2] vHtaOdj7SoetJR_VXeHq-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.157 [XNIO-1 task-2] vHtaOdj7SoetJR_VXeHq-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.157 [XNIO-1 task-2] vHtaOdj7SoetJR_VXeHq-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", authorization) +17:00:44.166 [XNIO-1 task-2] vHtaOdj7SoetJR_VXeHq-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.173 [XNIO-1 task-4] 8vLbzLAwQti8I0LeZUuqrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:44.174 [XNIO-1 task-4] 8vLbzLAwQti8I0LeZUuqrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.177 [XNIO-1 task-2] Lj1ApRoLRUyb3nezRAaJHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.177 [XNIO-1 task-2] Lj1ApRoLRUyb3nezRAaJHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.178 [XNIO-1 task-2] Lj1ApRoLRUyb3nezRAaJHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.180 [XNIO-1 task-2] Lj1ApRoLRUyb3nezRAaJHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.192 [XNIO-1 task-2] Lj1ApRoLRUyb3nezRAaJHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.205 [XNIO-1 task-2] YP8y10KwT5ifoUMHBwXizw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.205 [XNIO-1 task-2] YP8y10KwT5ifoUMHBwXizw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.206 [XNIO-1 task-2] YP8y10KwT5ifoUMHBwXizw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.206 [XNIO-1 task-2] YP8y10KwT5ifoUMHBwXizw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.212 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8d12722c +17:00:44.217 [XNIO-1 task-2] YP8y10KwT5ifoUMHBwXizw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.218 [XNIO-1 task-4] z1Z8VatkQGqa7IVigsHoYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.218 [XNIO-1 task-4] z1Z8VatkQGqa7IVigsHoYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.219 [XNIO-1 task-4] z1Z8VatkQGqa7IVigsHoYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.219 [XNIO-1 task-4] z1Z8VatkQGqa7IVigsHoYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", "Basic NjBhNmYwOWQtNjk5Yi00MDBlLTg1YjgtMDA1ZWYwMTA4MTk1OkxOMUduMUVNUTFLQmJScmRMdmtHa3c=", authorization) +17:00:44.223 [XNIO-1 task-2] 9vXMOLuvTCGM7Jvc5umhCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.226 [XNIO-1 task-2] 9vXMOLuvTCGM7Jvc5umhCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.226 [XNIO-1 task-2] 9vXMOLuvTCGM7Jvc5umhCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.227 [XNIO-1 task-2] 9vXMOLuvTCGM7Jvc5umhCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", authorization) +17:00:44.232 [XNIO-1 task-4] z1Z8VatkQGqa7IVigsHoYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:44.234 [XNIO-1 task-4] z1Z8VatkQGqa7IVigsHoYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.238 [XNIO-1 task-2] 9vXMOLuvTCGM7Jvc5umhCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.245 [XNIO-1 task-4] HEawgEQxRC2DF5bBKKYrnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.245 [XNIO-1 task-4] HEawgEQxRC2DF5bBKKYrnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.245 [XNIO-1 task-4] HEawgEQxRC2DF5bBKKYrnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.246 [XNIO-1 task-4] HEawgEQxRC2DF5bBKKYrnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.252 [XNIO-1 task-4] HEawgEQxRC2DF5bBKKYrnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.264 [XNIO-1 task-4] yfDa2vmdS-CNrVbMxqPoXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.264 [XNIO-1 task-4] yfDa2vmdS-CNrVbMxqPoXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.264 [XNIO-1 task-4] yfDa2vmdS-CNrVbMxqPoXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.265 [XNIO-1 task-4] yfDa2vmdS-CNrVbMxqPoXA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.271 [XNIO-1 task-4] yfDa2vmdS-CNrVbMxqPoXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.274 [XNIO-1 task-4] YlZ4-PU2SZquO00qnjLAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.275 [XNIO-1 task-4] YlZ4-PU2SZquO00qnjLAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.276 [XNIO-1 task-4] YlZ4-PU2SZquO00qnjLAOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.276 [XNIO-1 task-4] YlZ4-PU2SZquO00qnjLAOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Q3MDJGy6TWynb4MYZvcgNg redirectUri = http://localhost:8080/authorization +17:00:44.277 [XNIO-1 task-2] OdxMyHC8Rsi8j3A6E3nXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.277 [XNIO-1 task-2] OdxMyHC8Rsi8j3A6E3nXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.284 [XNIO-1 task-2] OdxMyHC8Rsi8j3A6E3nXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.285 [XNIO-1 task-2] OdxMyHC8Rsi8j3A6E3nXAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.289 [XNIO-1 task-4] YlZ4-PU2SZquO00qnjLAOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.291 [XNIO-1 task-2] OdxMyHC8Rsi8j3A6E3nXAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.310 [XNIO-1 task-2] lUgZQHerT72sK3Y30r6oXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.310 [XNIO-1 task-2] lUgZQHerT72sK3Y30r6oXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.311 [XNIO-1 task-2] lUgZQHerT72sK3Y30r6oXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.311 [XNIO-1 task-2] lUgZQHerT72sK3Y30r6oXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", "Basic YjhjMjQxZTktODUwOS00YzhmLWFmOTktMjBmYjc5ODQ1NzVkOlZsM2d4NkphUXllQ2xYeHh3Y05rWWc=", authorization) +17:00:44.315 [XNIO-1 task-4] unMNzuXSTCGCn_QJEyPlUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.316 [XNIO-1 task-4] unMNzuXSTCGCn_QJEyPlUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.316 [XNIO-1 task-4] unMNzuXSTCGCn_QJEyPlUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.316 [XNIO-1 task-4] unMNzuXSTCGCn_QJEyPlUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", "Basic YWE2ZWY1MTctYWI1MS00NWIzLWFmZDQtMzYxMzYxZjk1YzU4OmZiTEFHbTkwUXEteFpDOG45RGFkakE=", authorization) +17:00:44.324 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8d12722c +17:00:44.325 [XNIO-1 task-2] lUgZQHerT72sK3Y30r6oXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.330 [XNIO-1 task-4] unMNzuXSTCGCn_QJEyPlUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.331 [XNIO-1 task-2] lUgZQHerT72sK3Y30r6oXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.336 [XNIO-1 task-2] xxkIRkeiQBCpgp18rRloGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.336 [XNIO-1 task-2] xxkIRkeiQBCpgp18rRloGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.337 [XNIO-1 task-2] xxkIRkeiQBCpgp18rRloGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 5:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:44.337 [XNIO-1 task-2] xxkIRkeiQBCpgp18rRloGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.343 [XNIO-1 task-2] xxkIRkeiQBCpgp18rRloGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +17:00:44.349 [XNIO-1 task-2] wm1z41qOTxyo4iq2HRwRGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.349 [XNIO-1 task-2] wm1z41qOTxyo4iq2HRwRGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.350 [XNIO-1 task-2] wm1z41qOTxyo4iq2HRwRGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.350 [XNIO-1 task-2] wm1z41qOTxyo4iq2HRwRGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:44.356 [XNIO-1 task-2] wm1z41qOTxyo4iq2HRwRGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.362 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a7c05b64-9e9c-4406-ab18-60830106eb1d +17:00:44.363 [XNIO-1 task-2] M7dP8lLGRIu6iuepPVzkdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.364 [XNIO-1 task-2] M7dP8lLGRIu6iuepPVzkdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.364 [XNIO-1 task-2] M7dP8lLGRIu6iuepPVzkdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.365 [XNIO-1 task-2] M7dP8lLGRIu6iuepPVzkdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.370 [XNIO-1 task-2] M7dP8lLGRIu6iuepPVzkdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.375 [XNIO-1 task-2] TuFaVHOuSA-ce-BclPrLbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.376 [XNIO-1 task-2] TuFaVHOuSA-ce-BclPrLbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.376 [XNIO-1 task-2] TuFaVHOuSA-ce-BclPrLbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.376 [XNIO-1 task-2] TuFaVHOuSA-ce-BclPrLbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:44.382 [XNIO-1 task-2] TuFaVHOuSA-ce-BclPrLbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.387 [XNIO-1 task-2] eDqY0P1WRSaJ7z7NNqGZDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.387 [XNIO-1 task-2] eDqY0P1WRSaJ7z7NNqGZDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.423 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:8d12722c +17:00:44.423 [XNIO-1 task-2] eDqY0P1WRSaJ7z7NNqGZDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.424 [XNIO-1 task-2] eDqY0P1WRSaJ7z7NNqGZDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.430 [XNIO-1 task-2] eDqY0P1WRSaJ7z7NNqGZDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.436 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:44.441 [XNIO-1 task-2] SmAnjinkSh6qh1ds_SviWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.441 [XNIO-1 task-2] SmAnjinkSh6qh1ds_SviWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.442 [XNIO-1 task-2] SmAnjinkSh6qh1ds_SviWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.442 [XNIO-1 task-2] SmAnjinkSh6qh1ds_SviWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:44.448 [XNIO-1 task-2] SmAnjinkSh6qh1ds_SviWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.462 [XNIO-1 task-2] wwdeNvLgR2GxGkD9Il6hGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.462 [XNIO-1 task-2] wwdeNvLgR2GxGkD9Il6hGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.462 [XNIO-1 task-2] wwdeNvLgR2GxGkD9Il6hGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.463 [XNIO-1 task-2] wwdeNvLgR2GxGkD9Il6hGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:44.468 [XNIO-1 task-2] wwdeNvLgR2GxGkD9Il6hGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.473 [XNIO-1 task-2] whveS2bDSVOFoAC4m1z5ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.473 [XNIO-1 task-2] whveS2bDSVOFoAC4m1z5ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.477 [XNIO-1 task-2] whveS2bDSVOFoAC4m1z5ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.478 [XNIO-1 task-2] whveS2bDSVOFoAC4m1z5ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:44.483 [XNIO-1 task-2] whveS2bDSVOFoAC4m1z5ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.486 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6e26a59 +17:00:44.491 [XNIO-1 task-2] -5eckD6QQDmr2Ay0kDuoow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.492 [XNIO-1 task-2] -5eckD6QQDmr2Ay0kDuoow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.492 [XNIO-1 task-2] -5eckD6QQDmr2Ay0kDuoow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.493 [XNIO-1 task-2] -5eckD6QQDmr2Ay0kDuoow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:44.502 [XNIO-1 task-2] -5eckD6QQDmr2Ay0kDuoow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.516 [XNIO-1 task-2] u-StcbspQwyQDdyVacTnKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.516 [XNIO-1 task-2] u-StcbspQwyQDdyVacTnKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.516 [XNIO-1 task-2] u-StcbspQwyQDdyVacTnKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.517 [XNIO-1 task-2] u-StcbspQwyQDdyVacTnKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:44.522 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e6e26a59 +17:00:44.523 [XNIO-1 task-2] u-StcbspQwyQDdyVacTnKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.529 [XNIO-1 task-2] BcZOg8g9QnKjtO8iSAOtAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.529 [XNIO-1 task-2] BcZOg8g9QnKjtO8iSAOtAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.529 [XNIO-1 task-2] BcZOg8g9QnKjtO8iSAOtAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.530 [XNIO-1 task-2] BcZOg8g9QnKjtO8iSAOtAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:44.531 [XNIO-1 task-4] lYIfQc6_TPyOQ4zLTZ3o0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.531 [XNIO-1 task-4] lYIfQc6_TPyOQ4zLTZ3o0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.531 [XNIO-1 task-4] lYIfQc6_TPyOQ4zLTZ3o0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.531 [XNIO-1 task-4] lYIfQc6_TPyOQ4zLTZ3o0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:44.542 [XNIO-1 task-2] BcZOg8g9QnKjtO8iSAOtAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:44.542 [XNIO-1 task-2] BcZOg8g9QnKjtO8iSAOtAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.545 [XNIO-1 task-4] lYIfQc6_TPyOQ4zLTZ3o0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.553 [XNIO-1 task-1] PJ4c314FSeeevHWHVvEPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.554 [XNIO-1 task-1] PJ4c314FSeeevHWHVvEPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.551 [XNIO-1 task-4] JMeHX71oS5i1-cwo72b9fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.554 [XNIO-1 task-4] JMeHX71oS5i1-cwo72b9fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.554 [XNIO-1 task-4] JMeHX71oS5i1-cwo72b9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.554 [XNIO-1 task-4] JMeHX71oS5i1-cwo72b9fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.554 [XNIO-1 task-4] JMeHX71oS5i1-cwo72b9fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.555 [XNIO-1 task-4] JMeHX71oS5i1-cwo72b9fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", authorization) +17:00:44.556 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4c5d7b5f +17:00:44.564 [XNIO-1 task-4] JMeHX71oS5i1-cwo72b9fA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.571 [XNIO-1 task-4] TxRU8imrRYKcxPVW4FAkyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.571 [XNIO-1 task-4] TxRU8imrRYKcxPVW4FAkyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.572 [XNIO-1 task-4] TxRU8imrRYKcxPVW4FAkyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.572 [XNIO-1 task-4] TxRU8imrRYKcxPVW4FAkyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgyOGY1ZGYtMjQ2ZS00ODU2LWE0MTctMTM1MjhhZDgxZjk0OkhaSDd5cGVRVFBPbWpKd080MVh0S0E=", "Basic MTgyOGY1ZGYtMjQ2ZS00ODU2LWE0MTctMTM1MjhhZDgxZjk0OkhaSDd5cGVRVFBPbWpKd080MVh0S0E=", authorization) +17:00:44.573 [XNIO-1 task-1] PJ4c314FSeeevHWHVvEPmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:44.574 [XNIO-1 task-1] PJ4c314FSeeevHWHVvEPmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.583 [XNIO-1 task-4] TxRU8imrRYKcxPVW4FAkyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.595 [XNIO-1 task-1] NCprn8h0Td2iKVbc0gd2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.594 [XNIO-1 task-4] 5AgvxeDRTIKF5NLR4TwNoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.595 [XNIO-1 task-4] 5AgvxeDRTIKF5NLR4TwNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.595 [XNIO-1 task-4] 5AgvxeDRTIKF5NLR4TwNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.595 [XNIO-1 task-1] NCprn8h0Td2iKVbc0gd2Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.596 [XNIO-1 task-4] 5AgvxeDRTIKF5NLR4TwNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.598 [XNIO-1 task-1] NCprn8h0Td2iKVbc0gd2Pg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = phCdzde7SpGP5eRFAz3QEw redirectUri = http://localhost:8080/authorization +17:00:44.606 [XNIO-1 task-4] 5AgvxeDRTIKF5NLR4TwNoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.609 [XNIO-1 task-1] NCprn8h0Td2iKVbc0gd2Pg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.613 [XNIO-1 task-2] dcf1QcTOQsaCtoNWhxlQJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.613 [XNIO-1 task-2] dcf1QcTOQsaCtoNWhxlQJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.614 [XNIO-1 task-2] dcf1QcTOQsaCtoNWhxlQJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.614 [XNIO-1 task-2] dcf1QcTOQsaCtoNWhxlQJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:44.615 [XNIO-1 task-4] 5AgvxeDRTIKF5NLR4TwNoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.623 [XNIO-1 task-1] NS4o1CrHRoqllRP8VeVtIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.624 [XNIO-1 task-1] NS4o1CrHRoqllRP8VeVtIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.624 [XNIO-1 task-1] NS4o1CrHRoqllRP8VeVtIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.624 [XNIO-1 task-1] NS4o1CrHRoqllRP8VeVtIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDFiYmVjY2MtNDgyNC00MzQxLTk1NDctOTgxMTRlYTA2NTY0Ok9ESlVFSENOVGhhaTl0TndTcjFoY3c=", "Basic NDFiYmVjY2MtNDgyNC00MzQxLTk1NDctOTgxMTRlYTA2NTY0Ok9ESlVFSENOVGhhaTl0TndTcjFoY3c=", authorization) +17:00:44.629 [XNIO-1 task-1] NS4o1CrHRoqllRP8VeVtIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.644 [XNIO-1 task-1] 6s7VgRTWTdGSm52NXUwKIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.644 [XNIO-1 task-1] 6s7VgRTWTdGSm52NXUwKIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.646 [XNIO-1 task-1] 6s7VgRTWTdGSm52NXUwKIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.647 [XNIO-1 task-1] 6s7VgRTWTdGSm52NXUwKIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:44.650 [XNIO-1 task-2] dcf1QcTOQsaCtoNWhxlQJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:44.650 [XNIO-1 task-2] dcf1QcTOQsaCtoNWhxlQJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.656 [XNIO-1 task-1] 6s7VgRTWTdGSm52NXUwKIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.667 [XNIO-1 task-1] YPwO0zisR-CV9cYYoPn93g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.667 [XNIO-1 task-1] YPwO0zisR-CV9cYYoPn93g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.668 [XNIO-1 task-1] YPwO0zisR-CV9cYYoPn93g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.668 [XNIO-1 task-1] YPwO0zisR-CV9cYYoPn93g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.673 [XNIO-1 task-1] YPwO0zisR-CV9cYYoPn93g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.689 [XNIO-1 task-1] jnX9vS6sT3Ctdn97HxA4kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.689 [XNIO-1 task-1] jnX9vS6sT3Ctdn97HxA4kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.689 [XNIO-1 task-1] jnX9vS6sT3Ctdn97HxA4kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.690 [XNIO-1 task-1] jnX9vS6sT3Ctdn97HxA4kQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.697 [XNIO-1 task-1] jnX9vS6sT3Ctdn97HxA4kQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.729 [XNIO-1 task-1] afeJYPznTfqAkjKncBE8cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.730 [XNIO-1 task-1] afeJYPznTfqAkjKncBE8cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.730 [XNIO-1 task-1] afeJYPznTfqAkjKncBE8cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.730 [XNIO-1 task-1] afeJYPznTfqAkjKncBE8cQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.738 [XNIO-1 task-1] afeJYPznTfqAkjKncBE8cQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.752 [XNIO-1 task-1] eVhIhGutTdus1nFIta0vVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.752 [XNIO-1 task-1] eVhIhGutTdus1nFIta0vVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.752 [XNIO-1 task-1] eVhIhGutTdus1nFIta0vVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.753 [XNIO-1 task-1] eVhIhGutTdus1nFIta0vVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjU0ZWRlZTctZmQyYS00YzA2LWE5OTAtMmJhYjI0NTE5ZDdlOkRBTTZnRmptU0FTQzhiWUpYemRlMkE=", "Basic MjU0ZWRlZTctZmQyYS00YzA2LWE5OTAtMmJhYjI0NTE5ZDdlOkRBTTZnRmptU0FTQzhiWUpYemRlMkE=", authorization) +17:00:44.753 [XNIO-1 task-1] eVhIhGutTdus1nFIta0vVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.764 [XNIO-1 task-1] eVhIhGutTdus1nFIta0vVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.764 [XNIO-1 task-2] V-Gj7LZjTMyiLBwsh_LEIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.764 [XNIO-1 task-2] V-Gj7LZjTMyiLBwsh_LEIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.765 [XNIO-1 task-2] V-Gj7LZjTMyiLBwsh_LEIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.765 [XNIO-1 task-2] V-Gj7LZjTMyiLBwsh_LEIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = u2QI1epISD-ENoTyXC0BdQ redirectUri = http://localhost:8080/authorization +17:00:44.766 [XNIO-1 task-1] ef18qxQ9Sk6kekK9ozVdtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.766 [XNIO-1 task-1] ef18qxQ9Sk6kekK9ozVdtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.767 [XNIO-1 task-1] ef18qxQ9Sk6kekK9ozVdtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.767 [XNIO-1 task-1] ef18qxQ9Sk6kekK9ozVdtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = wgKIn7AyQL-oXlV-VyhbJA redirectUri = http://localhost:8080/authorization +17:00:44.777 [XNIO-1 task-4] HPIYAegYRBGnkSm9_gotBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.777 [XNIO-1 task-4] HPIYAegYRBGnkSm9_gotBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.779 [XNIO-1 task-4] HPIYAegYRBGnkSm9_gotBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.780 [XNIO-1 task-2] V-Gj7LZjTMyiLBwsh_LEIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:44.780 [XNIO-1 task-2] V-Gj7LZjTMyiLBwsh_LEIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.785 [XNIO-1 task-4] HPIYAegYRBGnkSm9_gotBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.791 [XNIO-1 task-4] BXL_MN0YRpaL8gJLzEeXzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.792 [XNIO-1 task-4] BXL_MN0YRpaL8gJLzEeXzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.805 [XNIO-1 task-4] BXL_MN0YRpaL8gJLzEeXzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.805 [XNIO-1 task-4] BXL_MN0YRpaL8gJLzEeXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjU0ZWRlZTctZmQyYS00YzA2LWE5OTAtMmJhYjI0NTE5ZDdlOkRBTTZnRmptU0FTQzhiWUpYemRlMkE=", "Basic MjU0ZWRlZTctZmQyYS00YzA2LWE5OTAtMmJhYjI0NTE5ZDdlOkRBTTZnRmptU0FTQzhiWUpYemRlMkE=", authorization) +17:00:44.792 [XNIO-1 task-1] ef18qxQ9Sk6kekK9ozVdtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:44.818 [XNIO-1 task-4] BXL_MN0YRpaL8gJLzEeXzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.820 [XNIO-1 task-1] ef18qxQ9Sk6kekK9ozVdtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.822 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4c5d7b5f +17:00:44.825 [XNIO-1 task-4] ugqlJgomQQm_rgd5JwgUQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.826 [XNIO-1 task-4] ugqlJgomQQm_rgd5JwgUQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.826 [XNIO-1 task-4] ugqlJgomQQm_rgd5JwgUQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.826 [XNIO-1 task-4] ugqlJgomQQm_rgd5JwgUQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.846 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4c5d7b5f +17:00:44.847 [XNIO-1 task-4] ugqlJgomQQm_rgd5JwgUQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.854 [XNIO-1 task-1] rHJt1D_HRLyC8wv3rg3SlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.854 [XNIO-1 task-1] rHJt1D_HRLyC8wv3rg3SlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.855 [XNIO-1 task-1] rHJt1D_HRLyC8wv3rg3SlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.855 [XNIO-1 task-2] 5nucLcetQieA_yGgGzSkcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.855 [XNIO-1 task-1] rHJt1D_HRLyC8wv3rg3SlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.855 [XNIO-1 task-2] 5nucLcetQieA_yGgGzSkcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.856 [XNIO-1 task-2] 5nucLcetQieA_yGgGzSkcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.856 [XNIO-1 task-2] 5nucLcetQieA_yGgGzSkcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2cff8cb6-e661-4d15-a894-ca59578e27e2 scope = null +17:00:44.860 [XNIO-1 task-1] rHJt1D_HRLyC8wv3rg3SlQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.862 [XNIO-1 task-4] bZjg0GO7QTeHeG5MIsXh4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.863 [XNIO-1 task-4] bZjg0GO7QTeHeG5MIsXh4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.863 [XNIO-1 task-4] bZjg0GO7QTeHeG5MIsXh4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.864 [XNIO-1 task-4] bZjg0GO7QTeHeG5MIsXh4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = bG5W95AeT_GP_QzkbGWsCA redirectUri = http://localhost:8080/authorization +17:00:44.872 [XNIO-1 task-2] 5nucLcetQieA_yGgGzSkcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.872 [XNIO-1 task-4] bZjg0GO7QTeHeG5MIsXh4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.876 [XNIO-1 task-1] 5NaDc3R1TIWCs8aew4aPmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.876 [XNIO-1 task-1] 5NaDc3R1TIWCs8aew4aPmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.876 [XNIO-1 task-1] 5NaDc3R1TIWCs8aew4aPmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.877 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ca5e06e3-5cfa-4313-b5f6-d356648ce4e6 +17:00:44.877 [XNIO-1 task-1] 5NaDc3R1TIWCs8aew4aPmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:44.883 [XNIO-1 task-1] 5NaDc3R1TIWCs8aew4aPmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.894 [XNIO-1 task-2] jUh4TTVVS5S6wKpUa5W-Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.895 [XNIO-1 task-1] r4V8909UQ-iA4Vpra3-mkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.895 [XNIO-1 task-2] jUh4TTVVS5S6wKpUa5W-Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.896 [XNIO-1 task-2] jUh4TTVVS5S6wKpUa5W-Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.896 [XNIO-1 task-2] jUh4TTVVS5S6wKpUa5W-Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:44.895 [XNIO-1 task-1] r4V8909UQ-iA4Vpra3-mkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.899 [XNIO-1 task-1] r4V8909UQ-iA4Vpra3-mkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.899 [XNIO-1 task-1] r4V8909UQ-iA4Vpra3-mkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", authorization) +17:00:44.906 [XNIO-1 task-2] jUh4TTVVS5S6wKpUa5W-Ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.910 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ca5e06e3-5cfa-4313-b5f6-d356648ce4e6 +17:00:44.918 [XNIO-1 task-2] H_KVVYHZTS6bFX_tAP8Isw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.918 [XNIO-1 task-2] H_KVVYHZTS6bFX_tAP8Isw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.919 [XNIO-1 task-2] H_KVVYHZTS6bFX_tAP8Isw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.919 [XNIO-1 task-2] H_KVVYHZTS6bFX_tAP8Isw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.919 [XNIO-1 task-2] H_KVVYHZTS6bFX_tAP8Isw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.924 [XNIO-1 task-2] H_KVVYHZTS6bFX_tAP8Isw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.926 [XNIO-1 task-4] qcRv3reiTaOx_TMoXS3VOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.926 [XNIO-1 task-4] qcRv3reiTaOx_TMoXS3VOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.926 [XNIO-1 task-4] qcRv3reiTaOx_TMoXS3VOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.926 [XNIO-1 task-4] qcRv3reiTaOx_TMoXS3VOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = w4FQlt2sSN26F8lU7ocQPQ redirectUri = http://localhost:8080/authorization +17:00:44.935 [XNIO-1 task-2] m-qDMxmaSYuDLYInbbVZ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.935 [XNIO-1 task-2] m-qDMxmaSYuDLYInbbVZ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.935 [XNIO-1 task-2] m-qDMxmaSYuDLYInbbVZ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.936 [XNIO-1 task-2] m-qDMxmaSYuDLYInbbVZ3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:44.937 [XNIO-1 task-4] qcRv3reiTaOx_TMoXS3VOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.941 [XNIO-1 task-2] m-qDMxmaSYuDLYInbbVZ3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.948 [XNIO-1 task-2] 6G2FWEfxQ9SPIOzluf_Gqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.949 [XNIO-1 task-2] 6G2FWEfxQ9SPIOzluf_Gqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.949 [XNIO-1 task-2] 6G2FWEfxQ9SPIOzluf_Gqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.949 [XNIO-1 task-2] 6G2FWEfxQ9SPIOzluf_Gqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:44.955 [XNIO-1 task-2] 6G2FWEfxQ9SPIOzluf_Gqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.966 [XNIO-1 task-2] kQKv0cScQJ2vD4_lQ0P5sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.966 [XNIO-1 task-2] kQKv0cScQJ2vD4_lQ0P5sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:44.968 [XNIO-1 task-2] kQKv0cScQJ2vD4_lQ0P5sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:44.968 [XNIO-1 task-2] kQKv0cScQJ2vD4_lQ0P5sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:44.978 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1828f5df-246e-4856-a417-13528ad81f94 +17:00:44.981 [XNIO-1 task-4] -sYs-nReQQeeuIIQFUDCOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.981 [XNIO-1 task-4] -sYs-nReQQeeuIIQFUDCOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:44.981 [XNIO-1 task-4] -sYs-nReQQeeuIIQFUDCOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.981 [XNIO-1 task-4] -sYs-nReQQeeuIIQFUDCOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:44.989 [XNIO-1 task-2] kQKv0cScQJ2vD4_lQ0P5sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:44.991 [XNIO-1 task-4] -sYs-nReQQeeuIIQFUDCOA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:44.992 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8fb931c1-e213-4a10-858b-7be565c645fd +17:00:44.997 [XNIO-1 task-2] UU-JUwaXRD-rBhOEq84e8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +17:00:44.998 [XNIO-1 task-2] UU-JUwaXRD-rBhOEq84e8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.998 [XNIO-1 task-2] UU-JUwaXRD-rBhOEq84e8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:44.999 [XNIO-1 task-2] UU-JUwaXRD-rBhOEq84e8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:44.999 [XNIO-1 task-2] UU-JUwaXRD-rBhOEq84e8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:45.002 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8fb931c1-e213-4a10-858b-7be565c645fd +17:00:45.004 [XNIO-1 task-2] UU-JUwaXRD-rBhOEq84e8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.024 [XNIO-1 task-2] sNF4DhBhSfWG21axhHi2tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.024 [XNIO-1 task-2] sNF4DhBhSfWG21axhHi2tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.024 [XNIO-1 task-2] sNF4DhBhSfWG21axhHi2tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.025 [XNIO-1 task-2] sNF4DhBhSfWG21axhHi2tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.032 [XNIO-1 task-2] sNF4DhBhSfWG21axhHi2tQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.034 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4dd6e64e +17:00:45.036 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:275db66a-6373-4b79-bb33-cb0c283040d1 +17:00:45.039 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:275db66a-6373-4b79-bb33-cb0c283040d1 +17:00:45.042 [XNIO-1 task-4] iRsK6tC1QPu5jOS6M_Gqrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.042 [XNIO-1 task-4] iRsK6tC1QPu5jOS6M_Gqrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.042 [XNIO-1 task-2] MZuIXxTOTeOPUQ0LX9oqPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.042 [XNIO-1 task-4] iRsK6tC1QPu5jOS6M_Gqrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.042 [XNIO-1 task-4] iRsK6tC1QPu5jOS6M_Gqrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.043 [XNIO-1 task-4] iRsK6tC1QPu5jOS6M_Gqrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:45.043 [XNIO-1 task-4] iRsK6tC1QPu5jOS6M_Gqrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b3f39da7-9cc0-4929-9a74-2802ff8659f0 scope = null +17:00:45.044 [XNIO-1 task-2] MZuIXxTOTeOPUQ0LX9oqPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjRiN2I4ZGQtOTc1My00ODBhLWI2MWItNjNhZjk4OGJhODI2Om5RTDRTTVpqVGwyb1BoTEhSeHhHYVE=", "Basic NjRiN2I4ZGQtOTc1My00ODBhLWI2MWItNjNhZjk4OGJhODI2Om5RTDRTTVpqVGwyb1BoTEhSeHhHYVE=", authorization) +17:00:45.051 [XNIO-1 task-4] iRsK6tC1QPu5jOS6M_Gqrw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:45.053 [XNIO-1 task-2] MZuIXxTOTeOPUQ0LX9oqPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.070 [XNIO-1 task-4] ds-5uA72Tuqzv8Msa3abUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.070 [XNIO-1 task-4] ds-5uA72Tuqzv8Msa3abUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.071 [XNIO-1 task-4] ds-5uA72Tuqzv8Msa3abUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.071 [XNIO-1 task-4] ds-5uA72Tuqzv8Msa3abUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0LteLfUWSzCNSff6ilnm0Q redirectUri = http://localhost:8080/authorization +17:00:45.073 [XNIO-1 task-2] D3iuQtXZSf-STOYoWExjQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.073 [XNIO-1 task-2] D3iuQtXZSf-STOYoWExjQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.074 [XNIO-1 task-2] D3iuQtXZSf-STOYoWExjQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.074 [XNIO-1 task-2] D3iuQtXZSf-STOYoWExjQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.080 [XNIO-1 task-2] D3iuQtXZSf-STOYoWExjQA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.080 [XNIO-1 task-4] ds-5uA72Tuqzv8Msa3abUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.081 [XNIO-1 task-4] ds-5uA72Tuqzv8Msa3abUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.083 [XNIO-1 task-2] 8YVR1p-ZRlWZ-TVSp2GyxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.083 [XNIO-1 task-2] 8YVR1p-ZRlWZ-TVSp2GyxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.083 [XNIO-1 task-2] 8YVR1p-ZRlWZ-TVSp2GyxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.084 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0e04f12d-9893-4a50-8193-3dee6ef05990 +17:00:45.085 [XNIO-1 task-2] 8YVR1p-ZRlWZ-TVSp2GyxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:45.085 [XNIO-1 task-1] d2jAhceXQTGa4sut1mKtSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.085 [XNIO-1 task-1] d2jAhceXQTGa4sut1mKtSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.085 [XNIO-1 task-1] d2jAhceXQTGa4sut1mKtSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.086 [XNIO-1 task-1] d2jAhceXQTGa4sut1mKtSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.091 [XNIO-1 task-4] VpxBAxYrT8qynIr6wQreNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.091 [XNIO-1 task-4] VpxBAxYrT8qynIr6wQreNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.092 [XNIO-1 task-4] VpxBAxYrT8qynIr6wQreNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.093 [XNIO-1 task-4] VpxBAxYrT8qynIr6wQreNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGZiOTMxYzEtZTIxMy00YTEwLTg1OGItN2JlNTY1YzY0NWZkOnJZRWhxck1tU2lxNkJzWDF5ZF9UNnc=", "Basic OGZiOTMxYzEtZTIxMy00YTEwLTg1OGItN2JlNTY1YzY0NWZkOnJZRWhxck1tU2lxNkJzWDF5ZF9UNnc=", authorization) +17:00:45.094 [XNIO-1 task-1] d2jAhceXQTGa4sut1mKtSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.099 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0e04f12d-9893-4a50-8193-3dee6ef05990 +17:00:45.103 [XNIO-1 task-2] 8YVR1p-ZRlWZ-TVSp2GyxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.107 [XNIO-1 task-1] f_Ac9X9yT5qOXFIREjQVdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.107 [XNIO-1 task-1] f_Ac9X9yT5qOXFIREjQVdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.108 [XNIO-1 task-4] VpxBAxYrT8qynIr6wQreNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.108 [XNIO-1 task-4] VpxBAxYrT8qynIr6wQreNQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.109 [XNIO-1 task-1] f_Ac9X9yT5qOXFIREjQVdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.115 [XNIO-1 task-1] f_Ac9X9yT5qOXFIREjQVdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.126 [XNIO-1 task-4] duwBSwrFQyaDQcOl4nn2pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.126 [XNIO-1 task-4] duwBSwrFQyaDQcOl4nn2pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.126 [XNIO-1 task-4] duwBSwrFQyaDQcOl4nn2pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.127 [XNIO-1 task-4] duwBSwrFQyaDQcOl4nn2pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:45.131 [XNIO-1 task-1] 8KujPbDEQROis39SJjhaLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.131 [XNIO-1 task-1] 8KujPbDEQROis39SJjhaLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.132 [XNIO-1 task-4] duwBSwrFQyaDQcOl4nn2pg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.132 [XNIO-1 task-1] 8KujPbDEQROis39SJjhaLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.132 [XNIO-1 task-1] 8KujPbDEQROis39SJjhaLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:45.139 [XNIO-1 task-4] pDgtfqbrSpq00SYWGQgLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.139 [XNIO-1 task-4] pDgtfqbrSpq00SYWGQgLsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.140 [XNIO-1 task-4] pDgtfqbrSpq00SYWGQgLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.140 [XNIO-1 task-4] pDgtfqbrSpq00SYWGQgLsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:45.141 [XNIO-1 task-1] 8KujPbDEQROis39SJjhaLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.142 [XNIO-1 task-1] 8KujPbDEQROis39SJjhaLA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.154 [XNIO-1 task-4] pDgtfqbrSpq00SYWGQgLsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.161 [XNIO-1 task-4] fflU7tq7RqWv5_TdcISmcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.161 [XNIO-1 task-4] fflU7tq7RqWv5_TdcISmcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.161 [XNIO-1 task-4] fflU7tq7RqWv5_TdcISmcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.161 [XNIO-1 task-4] fflU7tq7RqWv5_TdcISmcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.172 [XNIO-1 task-4] fflU7tq7RqWv5_TdcISmcg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.182 [XNIO-1 task-4] QH3QuxipSFCT6SaRXobcPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.182 [XNIO-1 task-4] QH3QuxipSFCT6SaRXobcPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.182 [XNIO-1 task-4] QH3QuxipSFCT6SaRXobcPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.182 [XNIO-1 task-1] vdQJuubiQmSp14GzJsaNIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.182 [XNIO-1 task-1] vdQJuubiQmSp14GzJsaNIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.182 [XNIO-1 task-4] QH3QuxipSFCT6SaRXobcPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.183 [XNIO-1 task-1] vdQJuubiQmSp14GzJsaNIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.183 [XNIO-1 task-1] vdQJuubiQmSp14GzJsaNIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qBPhdjSJTGyyZHpjdqak2g redirectUri = http://localhost:8080/authorization +17:00:45.188 [XNIO-1 task-4] QH3QuxipSFCT6SaRXobcPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.193 [XNIO-1 task-1] vdQJuubiQmSp14GzJsaNIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.196 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:92ac24b9-47aa-4ccf-85f5-5d0876535275 +17:00:45.196 [XNIO-1 task-4] uBzDA7h3R0KF4_GAjknqSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.197 [XNIO-1 task-4] uBzDA7h3R0KF4_GAjknqSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.197 [XNIO-1 task-4] uBzDA7h3R0KF4_GAjknqSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.197 [XNIO-1 task-4] uBzDA7h3R0KF4_GAjknqSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjU0ZWRlZTctZmQyYS00YzA2LWE5OTAtMmJhYjI0NTE5ZDdlOkRBTTZnRmptU0FTQzhiWUpYemRlMkE=", "Basic MjU0ZWRlZTctZmQyYS00YzA2LWE5OTAtMmJhYjI0NTE5ZDdlOkRBTTZnRmptU0FTQzhiWUpYemRlMkE=", authorization) +17:00:45.198 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:620a5fff +17:00:45.202 [XNIO-1 task-4] uBzDA7h3R0KF4_GAjknqSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.204 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:620a5fff +17:00:45.210 [XNIO-1 task-4] TMyT95jSS_ydlmCrIUB15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.210 [XNIO-1 task-4] TMyT95jSS_ydlmCrIUB15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.210 [XNIO-1 task-4] TMyT95jSS_ydlmCrIUB15g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.211 [XNIO-1 task-4] TMyT95jSS_ydlmCrIUB15g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.220 [XNIO-1 task-4] TMyT95jSS_ydlmCrIUB15g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.225 [XNIO-1 task-4] Fp5DhFlkRe6iRirSSCgp0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.225 [XNIO-1 task-4] Fp5DhFlkRe6iRirSSCgp0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.225 [XNIO-1 task-4] Fp5DhFlkRe6iRirSSCgp0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.226 [XNIO-1 task-4] Fp5DhFlkRe6iRirSSCgp0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.230 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:620a5fff +17:00:45.231 [XNIO-1 task-4] Fp5DhFlkRe6iRirSSCgp0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.240 [XNIO-1 task-4] IOrjR7KjRQ6d46cNNQjy6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.241 [XNIO-1 task-4] IOrjR7KjRQ6d46cNNQjy6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.241 [XNIO-1 task-4] IOrjR7KjRQ6d46cNNQjy6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.241 [XNIO-1 task-4] IOrjR7KjRQ6d46cNNQjy6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.247 [XNIO-1 task-4] IOrjR7KjRQ6d46cNNQjy6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.248 [XNIO-1 task-1] 6QtpL1dZR12T2tSxFHLIqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.248 [XNIO-1 task-1] 6QtpL1dZR12T2tSxFHLIqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.248 [XNIO-1 task-1] 6QtpL1dZR12T2tSxFHLIqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.249 [XNIO-1 task-1] 6QtpL1dZR12T2tSxFHLIqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2RuN2-a6RM6CMiGbV_20ig redirectUri = http://localhost:8080/authorization +17:00:45.251 [XNIO-1 task-4] Xxn-xBHBQ1WQUqt1SyM5IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.251 [XNIO-1 task-4] Xxn-xBHBQ1WQUqt1SyM5IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.252 [XNIO-1 task-4] Xxn-xBHBQ1WQUqt1SyM5IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.253 [XNIO-1 task-4] Xxn-xBHBQ1WQUqt1SyM5IA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.256 [XNIO-1 task-1] 6QtpL1dZR12T2tSxFHLIqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.257 [XNIO-1 task-4] Xxn-xBHBQ1WQUqt1SyM5IA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.264 [XNIO-1 task-4] RXlVuFfHQhOH3hOkAsnS-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.264 [XNIO-1 task-4] RXlVuFfHQhOH3hOkAsnS-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.264 [XNIO-1 task-4] RXlVuFfHQhOH3hOkAsnS-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.265 [XNIO-1 task-4] RXlVuFfHQhOH3hOkAsnS-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJhNTgzNTgtMzRhMC00YWIxLWJkMWMtNGZmYzc3NjYyZGEzOlByY3RxXzcyUWRLZl9veFlrNldoamc=", "Basic MzJhNTgzNTgtMzRhMC00YWIxLWJkMWMtNGZmYzc3NjYyZGEzOlByY3RxXzcyUWRLZl9veFlrNldoamc=", authorization) +17:00:45.268 [XNIO-1 task-1] KWuBqb2iTOyBsaHLKrD51Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.269 [XNIO-1 task-1] KWuBqb2iTOyBsaHLKrD51Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.269 [XNIO-1 task-1] KWuBqb2iTOyBsaHLKrD51Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.269 [XNIO-1 task-1] KWuBqb2iTOyBsaHLKrD51Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.270 [XNIO-1 task-4] RXlVuFfHQhOH3hOkAsnS-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.274 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:620a5fff +17:00:45.275 [XNIO-1 task-4] VDUf2CD-S7-msczrp_1oAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.276 [XNIO-1 task-4] VDUf2CD-S7-msczrp_1oAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.276 [XNIO-1 task-4] VDUf2CD-S7-msczrp_1oAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.277 [XNIO-1 task-4] VDUf2CD-S7-msczrp_1oAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJhNTgzNTgtMzRhMC00YWIxLWJkMWMtNGZmYzc3NjYyZGEzOlByY3RxXzcyUWRLZl9veFlrNldoamc=", "Basic MzJhNTgzNTgtMzRhMC00YWIxLWJkMWMtNGZmYzc3NjYyZGEzOlByY3RxXzcyUWRLZl9veFlrNldoamc=", authorization) +17:00:45.281 [XNIO-1 task-1] KWuBqb2iTOyBsaHLKrD51Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.282 [XNIO-1 task-4] VDUf2CD-S7-msczrp_1oAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.290 [XNIO-1 task-4] 49W4O_GpQKK9byIknCovXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.291 [XNIO-1 task-4] 49W4O_GpQKK9byIknCovXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.291 [XNIO-1 task-4] 49W4O_GpQKK9byIknCovXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.291 [XNIO-1 task-4] 49W4O_GpQKK9byIknCovXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJhNTgzNTgtMzRhMC00YWIxLWJkMWMtNGZmYzc3NjYyZGEzOlByY3RxXzcyUWRLZl9veFlrNldoamc=", "Basic MzJhNTgzNTgtMzRhMC00YWIxLWJkMWMtNGZmYzc3NjYyZGEzOlByY3RxXzcyUWRLZl9veFlrNldoamc=", authorization) +17:00:45.299 [XNIO-1 task-4] 49W4O_GpQKK9byIknCovXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.306 [XNIO-1 task-4] XiguclIVR2WYbar9QxZjqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.306 [XNIO-1 task-4] XiguclIVR2WYbar9QxZjqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.307 [XNIO-1 task-4] XiguclIVR2WYbar9QxZjqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.307 [XNIO-1 task-4] XiguclIVR2WYbar9QxZjqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.309 [XNIO-1 task-1] -m9lcG33RsWPtvS1xMJl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.309 [XNIO-1 task-1] -m9lcG33RsWPtvS1xMJl0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.310 [XNIO-1 task-1] -m9lcG33RsWPtvS1xMJl0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.310 [XNIO-1 task-1] -m9lcG33RsWPtvS1xMJl0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", authorization) +17:00:45.314 [XNIO-1 task-2] dNxDcXp4S4KVOlNi82hmFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.314 [XNIO-1 task-2] dNxDcXp4S4KVOlNi82hmFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.315 [XNIO-1 task-1] -m9lcG33RsWPtvS1xMJl0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.318 [XNIO-1 task-2] dNxDcXp4S4KVOlNi82hmFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.319 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:32558dc8 +17:00:45.319 [XNIO-1 task-2] dNxDcXp4S4KVOlNi82hmFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", authorization) +17:00:45.320 [XNIO-1 task-2] dNxDcXp4S4KVOlNi82hmFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uWEXOiiPTr6NFpiIZBxaOQ redirectUri = http://localhost:8080/authorization +17:00:45.325 [XNIO-1 task-1] jx_6GwcnTHKtOiihCzP4sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.325 [XNIO-1 task-1] jx_6GwcnTHKtOiihCzP4sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.325 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:32558dc8 +17:00:45.326 [XNIO-1 task-2] dNxDcXp4S4KVOlNi82hmFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.326 [XNIO-1 task-2] dNxDcXp4S4KVOlNi82hmFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.328 [XNIO-1 task-1] jx_6GwcnTHKtOiihCzP4sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.328 [XNIO-1 task-1] jx_6GwcnTHKtOiihCzP4sQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.334 [XNIO-1 task-1] jx_6GwcnTHKtOiihCzP4sQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.336 [XNIO-1 task-4] kPbQPdu5TrqksurrEAthJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.337 [XNIO-1 task-4] kPbQPdu5TrqksurrEAthJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.337 [XNIO-1 task-4] kPbQPdu5TrqksurrEAthJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.338 [XNIO-1 task-4] kPbQPdu5TrqksurrEAthJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.340 [XNIO-1 task-1] LhWQbP3UToGI07-yiMlvzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.340 [XNIO-1 task-1] LhWQbP3UToGI07-yiMlvzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.340 [XNIO-1 task-1] LhWQbP3UToGI07-yiMlvzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.341 [XNIO-1 task-1] LhWQbP3UToGI07-yiMlvzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", authorization) +17:00:45.346 [XNIO-1 task-1] LhWQbP3UToGI07-yiMlvzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.352 [XNIO-1 task-1] -fkQJBHiRba1NwJV-6OhzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.353 [XNIO-1 task-1] -fkQJBHiRba1NwJV-6OhzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.353 [XNIO-1 task-4] kPbQPdu5TrqksurrEAthJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.353 [XNIO-1 task-1] -fkQJBHiRba1NwJV-6OhzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.354 [XNIO-1 task-1] -fkQJBHiRba1NwJV-6OhzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", authorization) +17:00:45.367 [XNIO-1 task-1] -fkQJBHiRba1NwJV-6OhzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.376 [XNIO-1 task-1] YQFSSedTQAuXrAGZ3xKj8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.376 [XNIO-1 task-1] YQFSSedTQAuXrAGZ3xKj8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.377 [XNIO-1 task-1] YQFSSedTQAuXrAGZ3xKj8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.377 [XNIO-1 task-2] PDYWWm0BRHmwK2erX_0H_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.377 [XNIO-1 task-2] PDYWWm0BRHmwK2erX_0H_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.377 [XNIO-1 task-2] PDYWWm0BRHmwK2erX_0H_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.378 [XNIO-1 task-2] PDYWWm0BRHmwK2erX_0H_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", authorization) +17:00:45.383 [XNIO-1 task-1] YQFSSedTQAuXrAGZ3xKj8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", "Basic ODk5MWEyZGYtOTUzNi00YjYyLWFhNmYtZjg2N2Q2NjM5Yzg5OmdPRHpKNExMU1NDd0ZzYWx1WFlLemc=", authorization) +17:00:45.386 [XNIO-1 task-2] PDYWWm0BRHmwK2erX_0H_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.387 [XNIO-1 task-2] PDYWWm0BRHmwK2erX_0H_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.392 [XNIO-1 task-1] YQFSSedTQAuXrAGZ3xKj8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.397 [XNIO-1 task-1] 8PgYRYl9SzOj7zq6m5icnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.397 [XNIO-1 task-1] 8PgYRYl9SzOj7zq6m5icnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.398 [XNIO-1 task-1] 8PgYRYl9SzOj7zq6m5icnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.400 [XNIO-1 task-1] 8PgYRYl9SzOj7zq6m5icnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.405 [XNIO-1 task-1] 8PgYRYl9SzOj7zq6m5icnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.412 [XNIO-1 task-1] F5LKMtU-TuqNkBub7t6EMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.412 [XNIO-1 task-1] F5LKMtU-TuqNkBub7t6EMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.412 [XNIO-1 task-1] F5LKMtU-TuqNkBub7t6EMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.413 [XNIO-1 task-1] F5LKMtU-TuqNkBub7t6EMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.418 [XNIO-1 task-1] F5LKMtU-TuqNkBub7t6EMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.422 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:32558dc8 +17:00:45.423 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:766a0852 +17:00:45.425 [XNIO-1 task-1] BElVg4PtT9e7YX4EcFQNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.426 [XNIO-1 task-1] BElVg4PtT9e7YX4EcFQNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.427 [XNIO-1 task-1] BElVg4PtT9e7YX4EcFQNWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.428 [XNIO-1 task-1] BElVg4PtT9e7YX4EcFQNWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.437 [XNIO-1 task-1] BElVg4PtT9e7YX4EcFQNWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.444 [XNIO-1 task-2] e37SgtVITeeFVOIDPvnEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.444 [XNIO-1 task-2] e37SgtVITeeFVOIDPvnEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.444 [XNIO-1 task-2] e37SgtVITeeFVOIDPvnEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.445 [XNIO-1 task-2] e37SgtVITeeFVOIDPvnEVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 84caab1b-5e89-44bd-99ad-62c41e39352b scope = null +17:00:45.448 [XNIO-1 task-4] slpajOsNRCyQqZ0KoKA16Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.449 [XNIO-1 task-4] slpajOsNRCyQqZ0KoKA16Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.449 [XNIO-1 task-1] SHpw_SSiQ-q3nN1j1pKfFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.449 [XNIO-1 task-1] SHpw_SSiQ-q3nN1j1pKfFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.449 [XNIO-1 task-4] slpajOsNRCyQqZ0KoKA16Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.449 [XNIO-1 task-1] SHpw_SSiQ-q3nN1j1pKfFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.450 [XNIO-1 task-1] SHpw_SSiQ-q3nN1j1pKfFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.451 [XNIO-1 task-4] slpajOsNRCyQqZ0KoKA16Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.457 [XNIO-1 task-2] e37SgtVITeeFVOIDPvnEVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.461 [XNIO-1 task-4] slpajOsNRCyQqZ0KoKA16Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.463 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:977f2f3c-5fa3-42ad-badb-9306e11f9a83 +17:00:45.466 [XNIO-1 task-1] SHpw_SSiQ-q3nN1j1pKfFw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.466 [XNIO-1 task-1] SHpw_SSiQ-q3nN1j1pKfFw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.467 [XNIO-1 task-4] 2FCA48geTfmPk8Z37_xQKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.467 [XNIO-1 task-4] 2FCA48geTfmPk8Z37_xQKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.467 [XNIO-1 task-4] 2FCA48geTfmPk8Z37_xQKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.468 [XNIO-1 task-4] 2FCA48geTfmPk8Z37_xQKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.474 [XNIO-1 task-4] 2FCA48geTfmPk8Z37_xQKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.478 [XNIO-1 task-2] f-ipPffbREaxDCB2Tv0a4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.478 [XNIO-1 task-2] f-ipPffbREaxDCB2Tv0a4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.483 [XNIO-1 task-2] f-ipPffbREaxDCB2Tv0a4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.483 [XNIO-1 task-2] f-ipPffbREaxDCB2Tv0a4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b669f784-b3b2-413f-9121-74555d055e50 scope = null +17:00:45.486 [XNIO-1 task-4] Gb4gJWHCSqy5hnt-MrxN1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.486 [XNIO-1 task-4] Gb4gJWHCSqy5hnt-MrxN1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.487 [XNIO-1 task-4] Gb4gJWHCSqy5hnt-MrxN1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.489 [XNIO-1 task-4] Gb4gJWHCSqy5hnt-MrxN1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.508 [XNIO-1 task-2] f-ipPffbREaxDCB2Tv0a4w ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:45.508 [XNIO-1 task-4] Gb4gJWHCSqy5hnt-MrxN1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.512 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:766a0852 +17:00:45.514 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:42b7a8b8-b62f-4981-883e-9bceb320c7d4 +17:00:45.522 [XNIO-1 task-4] xJD6MZiPSbuVaLnh8IMBlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.522 [XNIO-1 task-4] xJD6MZiPSbuVaLnh8IMBlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.523 [XNIO-1 task-4] xJD6MZiPSbuVaLnh8IMBlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.523 [XNIO-1 task-4] xJD6MZiPSbuVaLnh8IMBlw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.529 [XNIO-1 task-4] xJD6MZiPSbuVaLnh8IMBlw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.544 [XNIO-1 task-4] BbnMDjTZT1OEtjkFJbtnPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.544 [XNIO-1 task-4] BbnMDjTZT1OEtjkFJbtnPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.545 [XNIO-1 task-4] BbnMDjTZT1OEtjkFJbtnPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.545 [XNIO-1 task-4] BbnMDjTZT1OEtjkFJbtnPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9OhHAk5PQSeZNUap9nV7HA redirectUri = http://localhost:8080/authorization +17:00:45.550 [XNIO-1 task-2] IyD-NT0aQkuyWi5QmLVpig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.550 [XNIO-1 task-2] IyD-NT0aQkuyWi5QmLVpig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.551 [XNIO-1 task-2] IyD-NT0aQkuyWi5QmLVpig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.551 [XNIO-1 task-2] IyD-NT0aQkuyWi5QmLVpig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.553 [XNIO-1 task-4] BbnMDjTZT1OEtjkFJbtnPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.559 [XNIO-1 task-2] IyD-NT0aQkuyWi5QmLVpig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.568 [XNIO-1 task-1] Zz1MDuOySci4cfnwMOWJTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.568 [XNIO-1 task-1] Zz1MDuOySci4cfnwMOWJTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.568 [XNIO-1 task-1] Zz1MDuOySci4cfnwMOWJTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.569 [XNIO-1 task-1] Zz1MDuOySci4cfnwMOWJTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:45.570 [XNIO-1 task-2] yWc9yjldQJ2G8LbEMcFvFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.570 [XNIO-1 task-2] yWc9yjldQJ2G8LbEMcFvFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.570 [XNIO-1 task-2] yWc9yjldQJ2G8LbEMcFvFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.571 [XNIO-1 task-2] yWc9yjldQJ2G8LbEMcFvFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:45.574 [XNIO-1 task-4] iHPnzIFrTqmepsKoVmrfXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.574 [XNIO-1 task-4] iHPnzIFrTqmepsKoVmrfXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.575 [XNIO-1 task-4] iHPnzIFrTqmepsKoVmrfXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.575 [XNIO-1 task-4] iHPnzIFrTqmepsKoVmrfXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:45.575 [XNIO-1 task-1] Zz1MDuOySci4cfnwMOWJTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.580 [XNIO-1 task-1] OysuTPvyT2ygvRnnUIf57A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.580 [XNIO-1 task-1] OysuTPvyT2ygvRnnUIf57A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.580 [XNIO-1 task-2] yWc9yjldQJ2G8LbEMcFvFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.581 [XNIO-1 task-2] yWc9yjldQJ2G8LbEMcFvFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.581 [XNIO-1 task-1] OysuTPvyT2ygvRnnUIf57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.582 [XNIO-1 task-1] OysuTPvyT2ygvRnnUIf57A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.589 [XNIO-1 task-1] OysuTPvyT2ygvRnnUIf57A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.598 [XNIO-1 task-4] iHPnzIFrTqmepsKoVmrfXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.600 [XNIO-1 task-1] MOi1bQueT0e3aGHaOI2JYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.600 [XNIO-1 task-1] MOi1bQueT0e3aGHaOI2JYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.600 [XNIO-1 task-1] MOi1bQueT0e3aGHaOI2JYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.601 [XNIO-1 task-1] MOi1bQueT0e3aGHaOI2JYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWM2NGMzNzUtZDBkMS00NzM3LTk2NGMtYzYyNzRmMjU0MTMxOkVIRDUxSGEyUVkydThIdW9jRk5aV1E=", "Basic MWM2NGMzNzUtZDBkMS00NzM3LTk2NGMtYzYyNzRmMjU0MTMxOkVIRDUxSGEyUVkydThIdW9jRk5aV1E=", authorization) +17:00:45.603 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:41052233 +17:00:45.603 [XNIO-1 task-2] mdXoWLMxRC2swh-RmheK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.603 [XNIO-1 task-2] mdXoWLMxRC2swh-RmheK5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.603 [XNIO-1 task-2] mdXoWLMxRC2swh-RmheK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.604 [XNIO-1 task-2] mdXoWLMxRC2swh-RmheK5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:45.607 [XNIO-1 task-1] MOi1bQueT0e3aGHaOI2JYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.617 [XNIO-1 task-1] BYcid2MrS82-r7N7U1Ggdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.617 [XNIO-1 task-1] BYcid2MrS82-r7N7U1Ggdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.617 [XNIO-1 task-1] BYcid2MrS82-r7N7U1Ggdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.618 [XNIO-1 task-1] BYcid2MrS82-r7N7U1Ggdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:45.623 [XNIO-1 task-1] BYcid2MrS82-r7N7U1Ggdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.625 [XNIO-1 task-2] mdXoWLMxRC2swh-RmheK5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.628 [XNIO-1 task-1] _4A5i5z8QFKA-IMFq09Xcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.629 [XNIO-1 task-1] _4A5i5z8QFKA-IMFq09Xcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.629 [XNIO-1 task-1] _4A5i5z8QFKA-IMFq09Xcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.629 [XNIO-1 task-1] _4A5i5z8QFKA-IMFq09Xcw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:45.630 [XNIO-1 task-4] PCAGfDywRI2VJ_WFOWF7RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.630 [XNIO-1 task-4] PCAGfDywRI2VJ_WFOWF7RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.630 [XNIO-1 task-4] PCAGfDywRI2VJ_WFOWF7RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.635 [XNIO-1 task-4] PCAGfDywRI2VJ_WFOWF7RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTE0NjVjZjYtZWVkNi00YjBjLTgxMDQtNTcxNDNmNzI3MzZjOk1sTUZlTW44Um91a2RyWTFuMzY0Qmc=", "Basic YTE0NjVjZjYtZWVkNi00YjBjLTgxMDQtNTcxNDNmNzI3MzZjOk1sTUZlTW44Um91a2RyWTFuMzY0Qmc=", authorization) +17:00:45.643 [XNIO-1 task-4] PCAGfDywRI2VJ_WFOWF7RQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.643 [XNIO-1 task-4] PCAGfDywRI2VJ_WFOWF7RQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.648 [XNIO-1 task-1] _4A5i5z8QFKA-IMFq09Xcw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.653 [XNIO-1 task-1] 48AZ_JF8TVKT8WOB-cnhcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.653 [XNIO-1 task-1] 48AZ_JF8TVKT8WOB-cnhcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.654 [XNIO-1 task-1] 48AZ_JF8TVKT8WOB-cnhcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.654 [XNIO-1 task-1] 48AZ_JF8TVKT8WOB-cnhcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.665 [XNIO-1 task-1] 48AZ_JF8TVKT8WOB-cnhcQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.677 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:766a0852 +17:00:45.679 [XNIO-1 task-1] lRYyQOUtSeGv4rqUprXHrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.679 [XNIO-1 task-1] lRYyQOUtSeGv4rqUprXHrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.679 [XNIO-1 task-1] lRYyQOUtSeGv4rqUprXHrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.680 [XNIO-1 task-1] lRYyQOUtSeGv4rqUprXHrA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.687 [XNIO-1 task-1] lRYyQOUtSeGv4rqUprXHrA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.695 [XNIO-1 task-1] gRnoAL1GSfKLqmy3cek6dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.695 [XNIO-1 task-1] gRnoAL1GSfKLqmy3cek6dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.698 [XNIO-1 task-4] MClXgJrJRLS6A3OXw9mYXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.700 [XNIO-1 task-4] MClXgJrJRLS6A3OXw9mYXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.701 [XNIO-1 task-4] MClXgJrJRLS6A3OXw9mYXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.701 [XNIO-1 task-4] MClXgJrJRLS6A3OXw9mYXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:45.696 [XNIO-1 task-1] gRnoAL1GSfKLqmy3cek6dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.709 [XNIO-1 task-4] MClXgJrJRLS6A3OXw9mYXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.711 [XNIO-1 task-1] gRnoAL1GSfKLqmy3cek6dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.713 [XNIO-1 task-2] uqkomFDAS3qI8_Xbt2KGRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.718 [XNIO-1 task-2] uqkomFDAS3qI8_Xbt2KGRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.718 [XNIO-1 task-2] uqkomFDAS3qI8_Xbt2KGRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.719 [XNIO-1 task-2] uqkomFDAS3qI8_Xbt2KGRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjRiN2I4ZGQtOTc1My00ODBhLWI2MWItNjNhZjk4OGJhODI2Om5RTDRTTVpqVGwyb1BoTEhSeHhHYVE=", "Basic NjRiN2I4ZGQtOTc1My00ODBhLWI2MWItNjNhZjk4OGJhODI2Om5RTDRTTVpqVGwyb1BoTEhSeHhHYVE=", authorization) +17:00:45.719 [XNIO-1 task-1] gRnoAL1GSfKLqmy3cek6dw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.736 [XNIO-1 task-2] uqkomFDAS3qI8_Xbt2KGRQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.736 [XNIO-1 task-2] uqkomFDAS3qI8_Xbt2KGRQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.738 [XNIO-1 task-1] tkG6GvrLQ6SqSnA9PhChqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.739 [XNIO-1 task-1] tkG6GvrLQ6SqSnA9PhChqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.742 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:364cd72e-cda3-4e0f-aaf4-ec3c518a0d2b +17:00:45.749 [XNIO-1 task-1] tkG6GvrLQ6SqSnA9PhChqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.758 [XNIO-1 task-1] tkG6GvrLQ6SqSnA9PhChqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.775 [XNIO-1 task-1] tkG6GvrLQ6SqSnA9PhChqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.788 [XNIO-1 task-1] 9PVwU646S8udEWJrzam1rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.789 [XNIO-1 task-1] 9PVwU646S8udEWJrzam1rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.790 [XNIO-1 task-1] 9PVwU646S8udEWJrzam1rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.791 [XNIO-1 task-1] 9PVwU646S8udEWJrzam1rw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.798 [XNIO-1 task-1] 9PVwU646S8udEWJrzam1rw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.805 [XNIO-1 task-1] lKaEhm9HR0-NlHeD1Uzg4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.805 [XNIO-1 task-1] lKaEhm9HR0-NlHeD1Uzg4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.806 [XNIO-1 task-1] lKaEhm9HR0-NlHeD1Uzg4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.806 [XNIO-1 task-1] lKaEhm9HR0-NlHeD1Uzg4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:45.808 [XNIO-1 task-2] hnFD2TkpQ-mMo_VrDKWQJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.809 [XNIO-1 task-2] hnFD2TkpQ-mMo_VrDKWQJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.809 [XNIO-1 task-2] hnFD2TkpQ-mMo_VrDKWQJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.810 [XNIO-1 task-2] hnFD2TkpQ-mMo_VrDKWQJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:45.818 [XNIO-1 task-1] lKaEhm9HR0-NlHeD1Uzg4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:45.819 [XNIO-1 task-1] lKaEhm9HR0-NlHeD1Uzg4w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.824 [XNIO-1 task-2] hnFD2TkpQ-mMo_VrDKWQJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.832 [XNIO-1 task-2] L-oo6IyUQ3GA5kwRzWA7ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.832 [XNIO-1 task-2] L-oo6IyUQ3GA5kwRzWA7ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.832 [XNIO-1 task-2] L-oo6IyUQ3GA5kwRzWA7ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.833 [XNIO-1 task-2] L-oo6IyUQ3GA5kwRzWA7ZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.839 [XNIO-1 task-2] L-oo6IyUQ3GA5kwRzWA7ZA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.842 [XNIO-1 task-1] Kf7Z34_bQoGAClr5Zw8y6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.842 [XNIO-1 task-1] Kf7Z34_bQoGAClr5Zw8y6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.842 [XNIO-1 task-1] Kf7Z34_bQoGAClr5Zw8y6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.842 [XNIO-1 task-1] Kf7Z34_bQoGAClr5Zw8y6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4097aff0-3970-43fc-812c-8652faeb213e scope = null +17:00:45.845 [XNIO-1 task-2] gQr1J2LdQD-uzzvsM2r6vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.845 [XNIO-1 task-2] gQr1J2LdQD-uzzvsM2r6vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.845 [XNIO-1 task-2] gQr1J2LdQD-uzzvsM2r6vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.845 [XNIO-1 task-2] gQr1J2LdQD-uzzvsM2r6vQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.853 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:41052233 +17:00:45.857 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:41052233 +17:00:45.859 [XNIO-1 task-1] Kf7Z34_bQoGAClr5Zw8y6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.859 [XNIO-1 task-2] aAoIs9xdSCCHDP2qnV5hmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.859 [XNIO-1 task-2] aAoIs9xdSCCHDP2qnV5hmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.860 [XNIO-1 task-2] aAoIs9xdSCCHDP2qnV5hmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.861 [XNIO-1 task-2] aAoIs9xdSCCHDP2qnV5hmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.866 [XNIO-1 task-2] aAoIs9xdSCCHDP2qnV5hmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.869 [XNIO-1 task-4] gQ9buoKMR_upuisIyl64SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.869 [XNIO-1 task-4] gQ9buoKMR_upuisIyl64SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.870 [XNIO-1 task-4] gQ9buoKMR_upuisIyl64SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.870 [XNIO-1 task-4] gQ9buoKMR_upuisIyl64SA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _-qM2iRoRoyqhPL66U4Rcw redirectUri = http://localhost:8080/authorization +17:00:45.877 [XNIO-1 task-2] DRZ30oMgSj6w1AOckzah6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.877 [XNIO-1 task-2] DRZ30oMgSj6w1AOckzah6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.878 [XNIO-1 task-2] DRZ30oMgSj6w1AOckzah6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.884 [XNIO-1 task-2] DRZ30oMgSj6w1AOckzah6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.885 [XNIO-1 task-4] gQ9buoKMR_upuisIyl64SA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.889 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a1e27d6b-fe4b-48c9-a8c3-79efa289c43d +17:00:45.890 [XNIO-1 task-2] DRZ30oMgSj6w1AOckzah6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.897 [XNIO-1 task-2] O74rItvxRC210ZlG8PW0Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.897 [XNIO-1 task-2] O74rItvxRC210ZlG8PW0Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.898 [XNIO-1 task-2] O74rItvxRC210ZlG8PW0Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.898 [XNIO-1 task-2] O74rItvxRC210ZlG8PW0Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:45.903 [XNIO-1 task-1] N1x4IUtPRvygmHu2psOG5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.903 [XNIO-1 task-1] N1x4IUtPRvygmHu2psOG5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.904 [XNIO-1 task-1] N1x4IUtPRvygmHu2psOG5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.904 [XNIO-1 task-1] N1x4IUtPRvygmHu2psOG5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWNmYjE2M2UtNWQ1Zi00NzA2LWFjMTQtNTFhZTRiOTIwYjM5OjE4T1h0VkxIVGRDejhkdTBHYXptSFE=", "Basic MWNmYjE2M2UtNWQ1Zi00NzA2LWFjMTQtNTFhZTRiOTIwYjM5OjE4T1h0VkxIVGRDejhkdTBHYXptSFE=", authorization) +17:00:45.905 [XNIO-1 task-4] GPwzuL7lRmucDWXccmK95g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.906 [XNIO-1 task-4] GPwzuL7lRmucDWXccmK95g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.906 [XNIO-1 task-4] GPwzuL7lRmucDWXccmK95g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.908 [XNIO-1 task-4] GPwzuL7lRmucDWXccmK95g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", authorization) +17:00:45.910 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:766a0852 +17:00:45.914 [XNIO-1 task-1] N1x4IUtPRvygmHu2psOG5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.919 [XNIO-1 task-2] O74rItvxRC210ZlG8PW0Iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.919 [XNIO-1 task-1] P7lJG1Y4SquEur73B2VKVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.925 [XNIO-1 task-1] P7lJG1Y4SquEur73B2VKVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.925 [XNIO-1 task-1] P7lJG1Y4SquEur73B2VKVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.926 [XNIO-1 task-1] P7lJG1Y4SquEur73B2VKVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.926 [XNIO-1 task-1] P7lJG1Y4SquEur73B2VKVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjYyNGQzNDQtOWEzNy00ZTAwLWEyNTYtNTlhMjYxYTU0ZWNhOmREUlRnUzRZVDYteWUyZml5dnIzdUE=", "Basic NjYyNGQzNDQtOWEzNy00ZTAwLWEyNTYtNTlhMjYxYTU0ZWNhOmREUlRnUzRZVDYteWUyZml5dnIzdUE=", authorization) +17:00:45.934 [XNIO-1 task-4] GPwzuL7lRmucDWXccmK95g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.935 [XNIO-1 task-1] P7lJG1Y4SquEur73B2VKVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:45.938 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:766a0852 +17:00:45.944 [XNIO-1 task-1] XUzpA_7ZQHOBm1OcHchIxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.951 [XNIO-1 task-1] XUzpA_7ZQHOBm1OcHchIxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:45.952 [XNIO-1 task-4] Iv03-vZPTEOGZ_vpjEiwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.952 [XNIO-1 task-4] Iv03-vZPTEOGZ_vpjEiwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.952 [XNIO-1 task-4] Iv03-vZPTEOGZ_vpjEiwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.953 [XNIO-1 task-4] Iv03-vZPTEOGZ_vpjEiwHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 26211e92-ac32-43e8-ad56-0b52d7800f66 scope = null +17:00:45.956 [XNIO-1 task-1] XUzpA_7ZQHOBm1OcHchIxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.956 [XNIO-1 task-1] XUzpA_7ZQHOBm1OcHchIxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", authorization) +17:00:45.966 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:364cd72e-cda3-4e0f-aaf4-ec3c518a0d2b +17:00:45.969 [XNIO-1 task-4] Iv03-vZPTEOGZ_vpjEiwHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.977 [XNIO-1 task-1] XUzpA_7ZQHOBm1OcHchIxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.984 [XNIO-1 task-1] Dj3AxW-YSPyuinjrl1C1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.984 [XNIO-1 task-4] ZjaD3xr1SUykGlTTthT5Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.984 [XNIO-1 task-1] Dj3AxW-YSPyuinjrl1C1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.984 [XNIO-1 task-4] ZjaD3xr1SUykGlTTthT5Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.984 [XNIO-1 task-4] ZjaD3xr1SUykGlTTthT5Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:45.984 [XNIO-1 task-4] ZjaD3xr1SUykGlTTthT5Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.985 [XNIO-1 task-1] Dj3AxW-YSPyuinjrl1C1TA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ff26e1cf-58f4-4673-9847-9757531e396f scope = null +17:00:45.986 [XNIO-1 task-4] ZjaD3xr1SUykGlTTthT5Jw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:45.993 [XNIO-1 task-4] ZjaD3xr1SUykGlTTthT5Jw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.995 [XNIO-1 task-1] Dj3AxW-YSPyuinjrl1C1TA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:45.999 [XNIO-1 task-4] FgJbsY1bSsi_vb-TZRp7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.999 [XNIO-1 task-4] FgJbsY1bSsi_vb-TZRp7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:45.999 [XNIO-1 task-4] FgJbsY1bSsi_vb-TZRp7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.000 [XNIO-1 task-4] FgJbsY1bSsi_vb-TZRp7ug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.007 [XNIO-1 task-4] FgJbsY1bSsi_vb-TZRp7ug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.017 [XNIO-1 task-4] ymNvknr1SZ6rgnwhVyXttQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.017 [XNIO-1 task-4] ymNvknr1SZ6rgnwhVyXttQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.017 [XNIO-1 task-4] ymNvknr1SZ6rgnwhVyXttQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.017 [XNIO-1 task-4] ymNvknr1SZ6rgnwhVyXttQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.022 [XNIO-1 task-4] ymNvknr1SZ6rgnwhVyXttQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.030 [XNIO-1 task-4] iPlDgjT-QwqYi5cObQpHmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.030 [XNIO-1 task-4] iPlDgjT-QwqYi5cObQpHmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.030 [XNIO-1 task-4] iPlDgjT-QwqYi5cObQpHmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.031 [XNIO-1 task-4] iPlDgjT-QwqYi5cObQpHmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.038 [XNIO-1 task-4] iPlDgjT-QwqYi5cObQpHmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.050 [XNIO-1 task-4] gyVAxSO5TwyW04tMfyqgSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.050 [XNIO-1 task-4] gyVAxSO5TwyW04tMfyqgSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.050 [XNIO-1 task-4] gyVAxSO5TwyW04tMfyqgSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.051 [XNIO-1 task-4] gyVAxSO5TwyW04tMfyqgSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.055 [XNIO-1 task-1] Qe5hVTcFToaFSwm7EvlrbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.055 [XNIO-1 task-1] Qe5hVTcFToaFSwm7EvlrbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.056 [XNIO-1 task-1] Qe5hVTcFToaFSwm7EvlrbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.056 [XNIO-1 task-1] Qe5hVTcFToaFSwm7EvlrbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cnKX6_MJQk2UqKdKXH99zw redirectUri = http://localhost:8080/authorization +17:00:46.057 [XNIO-1 task-4] gyVAxSO5TwyW04tMfyqgSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.059 [XNIO-1 task-2] UbC_MmehSu27eghCdTAQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.060 [XNIO-1 task-2] UbC_MmehSu27eghCdTAQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.060 [XNIO-1 task-2] UbC_MmehSu27eghCdTAQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.060 [XNIO-1 task-2] UbC_MmehSu27eghCdTAQBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QwP1wNtaR3CTA6yt4L7_Hg redirectUri = http://localhost:8080/authorization +17:00:46.063 [XNIO-1 task-1] Qe5hVTcFToaFSwm7EvlrbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.066 [XNIO-1 task-4] TuoMutcwRZWD5nH2N4rI4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.066 [XNIO-1 task-4] TuoMutcwRZWD5nH2N4rI4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.066 [XNIO-1 task-4] TuoMutcwRZWD5nH2N4rI4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.066 [XNIO-1 task-4] TuoMutcwRZWD5nH2N4rI4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", authorization) +17:00:46.067 [XNIO-1 task-2] UbC_MmehSu27eghCdTAQBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:46.069 [XNIO-1 task-2] UbC_MmehSu27eghCdTAQBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.073 [XNIO-1 task-4] TuoMutcwRZWD5nH2N4rI4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.082 [XNIO-1 task-2] yDnkosemRA-UlXIQueSrHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.082 [XNIO-1 task-2] yDnkosemRA-UlXIQueSrHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.082 [XNIO-1 task-2] yDnkosemRA-UlXIQueSrHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.083 [XNIO-1 task-2] yDnkosemRA-UlXIQueSrHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.088 [XNIO-1 task-2] yDnkosemRA-UlXIQueSrHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.101 [XNIO-1 task-4] qPCpccMjRQaguFAR68QEDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.101 [XNIO-1 task-4] qPCpccMjRQaguFAR68QEDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.102 [XNIO-1 task-4] qPCpccMjRQaguFAR68QEDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.102 [XNIO-1 task-2] upzGmQ4bTBGCc-CevSWfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.102 [XNIO-1 task-2] upzGmQ4bTBGCc-CevSWfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.102 [XNIO-1 task-4] qPCpccMjRQaguFAR68QEDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.103 [XNIO-1 task-2] upzGmQ4bTBGCc-CevSWfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.104 [XNIO-1 task-1] yhoCLnUjRe-beOFS03IYYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.105 [XNIO-1 task-1] yhoCLnUjRe-beOFS03IYYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.105 [XNIO-1 task-1] yhoCLnUjRe-beOFS03IYYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.105 [XNIO-1 task-1] yhoCLnUjRe-beOFS03IYYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PQcUpUc3TsWqmWm9SOT1QQ redirectUri = http://localhost:8080/authorization +17:00:46.107 [XNIO-1 task-4] qPCpccMjRQaguFAR68QEDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.109 [XNIO-1 task-2] upzGmQ4bTBGCc-CevSWfYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gYQaaSarTYqCguSmTIWXaA redirectUri = http://localhost:8080/authorization +17:00:46.114 [XNIO-1 task-1] yhoCLnUjRe-beOFS03IYYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.115 [XNIO-1 task-4] 5_muG6TJRrCm00Vrfue2RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.115 [XNIO-1 task-4] 5_muG6TJRrCm00Vrfue2RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.115 [XNIO-1 task-4] 5_muG6TJRrCm00Vrfue2RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.115 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:95b80ea6-5ae8-4972-8adc-138fdfbbeb2b +17:00:46.115 [XNIO-1 task-4] 5_muG6TJRrCm00Vrfue2RQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.121 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:95b80ea6-5ae8-4972-8adc-138fdfbbeb2b +17:00:46.122 [XNIO-1 task-2] upzGmQ4bTBGCc-CevSWfYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.122 [XNIO-1 task-4] 5_muG6TJRrCm00Vrfue2RQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.128 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9e1eda2b-1eda-42d9-abdd-3891acd4a683 +17:00:46.129 [XNIO-1 task-4] 3rTG5H_RQc-oCIpKEV7Brw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.129 [XNIO-1 task-4] 3rTG5H_RQc-oCIpKEV7Brw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.130 [XNIO-1 task-4] 3rTG5H_RQc-oCIpKEV7Brw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.131 [XNIO-1 task-4] 3rTG5H_RQc-oCIpKEV7Brw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", authorization) +17:00:46.131 [XNIO-1 task-1] kp52SSMyRg6QTSpHXulJnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.131 [XNIO-1 task-1] kp52SSMyRg6QTSpHXulJnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.131 [XNIO-1 task-1] kp52SSMyRg6QTSpHXulJnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.132 [XNIO-1 task-1] kp52SSMyRg6QTSpHXulJnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTBiOWQxYzEtOGVjOS00YjA5LWE2ZmUtMWQzMTBiN2QzOTQ5OklnMURFUC05U1ctZThsUUtLMm9Zemc=", "Basic MTBiOWQxYzEtOGVjOS00YjA5LWE2ZmUtMWQzMTBiN2QzOTQ5OklnMURFUC05U1ctZThsUUtLMm9Zemc=", authorization) +17:00:46.137 [XNIO-1 task-4] 3rTG5H_RQc-oCIpKEV7Brw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.144 [XNIO-1 task-1] kp52SSMyRg6QTSpHXulJnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.149 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddec963e-b668-498d-a52d-fb625845f90a +17:00:46.149 [XNIO-1 task-4] xlc-RyD9TaiyY714lG8YMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.149 [XNIO-1 task-4] xlc-RyD9TaiyY714lG8YMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.150 [XNIO-1 task-4] xlc-RyD9TaiyY714lG8YMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.150 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ddec963e-b668-498d-a52d-fb625845f90a +17:00:46.150 [XNIO-1 task-4] xlc-RyD9TaiyY714lG8YMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.156 [XNIO-1 task-4] xlc-RyD9TaiyY714lG8YMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.171 [XNIO-1 task-4] rHpCQv9VSie-_xaZCfNt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.172 [XNIO-1 task-4] rHpCQv9VSie-_xaZCfNt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.172 [XNIO-1 task-4] rHpCQv9VSie-_xaZCfNt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.173 [XNIO-1 task-4] rHpCQv9VSie-_xaZCfNt-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.183 [XNIO-1 task-4] rHpCQv9VSie-_xaZCfNt-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.191 [XNIO-1 task-4] zWH-q-4kTMSuL2q8M9wgPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.191 [XNIO-1 task-4] zWH-q-4kTMSuL2q8M9wgPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.191 [XNIO-1 task-4] zWH-q-4kTMSuL2q8M9wgPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.191 [XNIO-1 task-4] zWH-q-4kTMSuL2q8M9wgPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.200 [XNIO-1 task-4] zWH-q-4kTMSuL2q8M9wgPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.210 [XNIO-1 task-4] ZJU88L9nSt6abKLBvIYn3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.210 [XNIO-1 task-4] ZJU88L9nSt6abKLBvIYn3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.211 [XNIO-1 task-4] ZJU88L9nSt6abKLBvIYn3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.211 [XNIO-1 task-4] ZJU88L9nSt6abKLBvIYn3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.217 [XNIO-1 task-4] ZJU88L9nSt6abKLBvIYn3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.228 [XNIO-1 task-4] ZmnjkEZ_QB2rB_GQk1XXgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.228 [XNIO-1 task-4] ZmnjkEZ_QB2rB_GQk1XXgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.235 [XNIO-1 task-4] ZmnjkEZ_QB2rB_GQk1XXgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.236 [XNIO-1 task-4] ZmnjkEZ_QB2rB_GQk1XXgA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.239 [XNIO-1 task-1] Q9B55uGFSO-CDaSFnBC99A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.239 [XNIO-1 task-1] Q9B55uGFSO-CDaSFnBC99A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.240 [XNIO-1 task-1] Q9B55uGFSO-CDaSFnBC99A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.240 [XNIO-1 task-1] Q9B55uGFSO-CDaSFnBC99A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = oLtTRSa-RR6svA29Ygnhsg redirectUri = http://localhost:8080/authorization +17:00:46.245 [XNIO-1 task-4] ZmnjkEZ_QB2rB_GQk1XXgA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.251 [XNIO-1 task-4] 7AdUKOmXQHaeEziONO_WzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.251 [XNIO-1 task-4] 7AdUKOmXQHaeEziONO_WzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.251 [XNIO-1 task-4] 7AdUKOmXQHaeEziONO_WzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.251 [XNIO-1 task-1] Q9B55uGFSO-CDaSFnBC99A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:46.252 [XNIO-1 task-1] Q9B55uGFSO-CDaSFnBC99A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.258 [XNIO-1 task-2] ozZZMjyHRYeTaLylJ6Q1hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.259 [XNIO-1 task-2] ozZZMjyHRYeTaLylJ6Q1hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.260 [XNIO-1 task-2] ozZZMjyHRYeTaLylJ6Q1hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.261 [XNIO-1 task-2] ozZZMjyHRYeTaLylJ6Q1hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", "Basic YjQyZmZmOGMtNzM5OS00MjM4LTgwMmQtZWQ1NDY5ZmFkNjEzOnBXeVI2S3JXU08tLUpyVGVvbWFkLVE=", authorization) +17:00:46.268 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:95b80ea6-5ae8-4972-8adc-138fdfbbeb2b +17:00:46.270 [XNIO-1 task-2] ozZZMjyHRYeTaLylJ6Q1hQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.272 [XNIO-1 task-4] 7AdUKOmXQHaeEziONO_WzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.280 [XNIO-1 task-4] XcP5i_J6RburSOfUJ9TC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.280 [XNIO-1 task-4] XcP5i_J6RburSOfUJ9TC4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.280 [XNIO-1 task-4] XcP5i_J6RburSOfUJ9TC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.280 [XNIO-1 task-4] XcP5i_J6RburSOfUJ9TC4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:46.286 [XNIO-1 task-4] XcP5i_J6RburSOfUJ9TC4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.296 [XNIO-1 task-4] I5JALjMHSeCPu2buVSrMEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.296 [XNIO-1 task-4] I5JALjMHSeCPu2buVSrMEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.296 [XNIO-1 task-4] I5JALjMHSeCPu2buVSrMEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.296 [XNIO-1 task-4] I5JALjMHSeCPu2buVSrMEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", "Basic ODczYTllMDAtNzhhMC00MDQ2LThkMTItNmU4MGQwOWNhOGYwOmhVeVRUQzFxUzNDNkd1ZUZfeXpQQXc=", authorization) +17:00:46.307 [XNIO-1 task-4] I5JALjMHSeCPu2buVSrMEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.318 [XNIO-1 task-4] BLWBR3yQR3qH6R8aDaI6-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.318 [XNIO-1 task-4] BLWBR3yQR3qH6R8aDaI6-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.318 [XNIO-1 task-4] BLWBR3yQR3qH6R8aDaI6-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.318 [XNIO-1 task-4] BLWBR3yQR3qH6R8aDaI6-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTE0NjVjZjYtZWVkNi00YjBjLTgxMDQtNTcxNDNmNzI3MzZjOk1sTUZlTW44Um91a2RyWTFuMzY0Qmc=", "Basic YTE0NjVjZjYtZWVkNi00YjBjLTgxMDQtNTcxNDNmNzI3MzZjOk1sTUZlTW44Um91a2RyWTFuMzY0Qmc=", authorization) +17:00:46.323 [XNIO-1 task-2] LhO4E_DTRzmq_iiNQUguFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.323 [XNIO-1 task-2] LhO4E_DTRzmq_iiNQUguFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.323 [XNIO-1 task-2] LhO4E_DTRzmq_iiNQUguFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.324 [XNIO-1 task-2] LhO4E_DTRzmq_iiNQUguFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGZiOTMxYzEtZTIxMy00YTEwLTg1OGItN2JlNTY1YzY0NWZkOnJZRWhxck1tU2lxNkJzWDF5ZF9UNnc=", "Basic OGZiOTMxYzEtZTIxMy00YTEwLTg1OGItN2JlNTY1YzY0NWZkOnJZRWhxck1tU2lxNkJzWDF5ZF9UNnc=", authorization) +17:00:46.327 [XNIO-1 task-4] BLWBR3yQR3qH6R8aDaI6-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:46.330 [XNIO-1 task-2] LhO4E_DTRzmq_iiNQUguFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.340 [XNIO-1 task-2] VJgwpHMYRg-HAzqTXKNw9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.340 [XNIO-1 task-2] VJgwpHMYRg-HAzqTXKNw9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.340 [XNIO-1 task-2] VJgwpHMYRg-HAzqTXKNw9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.341 [XNIO-1 task-2] VJgwpHMYRg-HAzqTXKNw9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", "Basic NmU4ZTgwYjctZjJiYy00ZjJhLTgyOTMtMDYwYzNjODExMjdlOm5MSzl3TnZlUlhPZEd5eUJDM2s3TFE=", authorization) +17:00:46.346 [XNIO-1 task-2] VJgwpHMYRg-HAzqTXKNw9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.356 [XNIO-1 task-2] g4DEMwpKSWebDe9udip1kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.359 [XNIO-1 task-2] g4DEMwpKSWebDe9udip1kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.360 [XNIO-1 task-2] g4DEMwpKSWebDe9udip1kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.360 [XNIO-1 task-2] g4DEMwpKSWebDe9udip1kA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:46.367 [XNIO-1 task-2] g4DEMwpKSWebDe9udip1kA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.374 [XNIO-1 task-2] LFsJndU6Tpi-wU_PFMFBbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.374 [XNIO-1 task-2] LFsJndU6Tpi-wU_PFMFBbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.374 [XNIO-1 task-2] LFsJndU6Tpi-wU_PFMFBbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.375 [XNIO-1 task-2] LFsJndU6Tpi-wU_PFMFBbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", "Basic M2U0ZGUzMDQtZDMwYS00NmFlLTk1NjgtZjkwYzUwZTljZDM0OjFSdC0ydjF4VDRxemxzVmk5RGZnVXc=", authorization) +17:00:46.380 [XNIO-1 task-2] LFsJndU6Tpi-wU_PFMFBbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.388 [XNIO-1 task-2] fQmi_us2QW-tfZJd1wuHlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.388 [XNIO-1 task-2] fQmi_us2QW-tfZJd1wuHlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.388 [XNIO-1 task-2] fQmi_us2QW-tfZJd1wuHlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.389 [XNIO-1 task-2] fQmi_us2QW-tfZJd1wuHlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", authorization) +17:00:46.396 [XNIO-1 task-2] fQmi_us2QW-tfZJd1wuHlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.402 [XNIO-1 task-2] nvVbibcVSPaxFXAJr8zTYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.402 [XNIO-1 task-2] nvVbibcVSPaxFXAJr8zTYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.402 [XNIO-1 task-2] nvVbibcVSPaxFXAJr8zTYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.403 [XNIO-1 task-2] nvVbibcVSPaxFXAJr8zTYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", authorization) +17:00:46.408 [XNIO-1 task-2] nvVbibcVSPaxFXAJr8zTYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.419 [XNIO-1 task-2] I4Lfvm34QCSCkZNIxOlr1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.419 [XNIO-1 task-2] I4Lfvm34QCSCkZNIxOlr1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.419 [XNIO-1 task-2] I4Lfvm34QCSCkZNIxOlr1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.420 [XNIO-1 task-2] I4Lfvm34QCSCkZNIxOlr1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjEwNWZmNmQtZDVkOC00YTJmLTljZjktZTgwMTMyZDYxMWU0OnpDaXZZQ01SU1pDb0NialBET090UUE=", "Basic ZjEwNWZmNmQtZDVkOC00YTJmLTljZjktZTgwMTMyZDYxMWU0OnpDaXZZQ01SU1pDb0NialBET090UUE=", authorization) +17:00:46.426 [XNIO-1 task-2] I4Lfvm34QCSCkZNIxOlr1Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.439 [XNIO-1 task-2] 1_punFI3THuA2BuZWxkbmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.440 [XNIO-1 task-2] 1_punFI3THuA2BuZWxkbmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.440 [XNIO-1 task-2] 1_punFI3THuA2BuZWxkbmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.440 [XNIO-1 task-2] 1_punFI3THuA2BuZWxkbmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:46.447 [XNIO-1 task-2] 1_punFI3THuA2BuZWxkbmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.457 [XNIO-1 task-2] q1c9hClATMWP4oIyt7NPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.457 [XNIO-1 task-2] q1c9hClATMWP4oIyt7NPag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.458 [XNIO-1 task-2] q1c9hClATMWP4oIyt7NPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.458 [XNIO-1 task-2] q1c9hClATMWP4oIyt7NPag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:46.462 [XNIO-1 task-4] ByWmw0ozQRWPCdrdGlLh1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.463 [XNIO-1 task-4] ByWmw0ozQRWPCdrdGlLh1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.463 [XNIO-1 task-4] ByWmw0ozQRWPCdrdGlLh1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.463 [XNIO-1 task-4] ByWmw0ozQRWPCdrdGlLh1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:46.470 [XNIO-1 task-4] ByWmw0ozQRWPCdrdGlLh1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.481 [XNIO-1 task-4] dAVY6CP1RsOp6qp7WpDT5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.481 [XNIO-1 task-4] dAVY6CP1RsOp6qp7WpDT5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.481 [XNIO-1 task-4] dAVY6CP1RsOp6qp7WpDT5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.481 [XNIO-1 task-4] dAVY6CP1RsOp6qp7WpDT5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", authorization) +17:00:46.485 [XNIO-1 task-2] q1c9hClATMWP4oIyt7NPag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:46.485 [XNIO-1 task-2] q1c9hClATMWP4oIyt7NPag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.491 [XNIO-1 task-4] dAVY6CP1RsOp6qp7WpDT5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.499 [XNIO-1 task-2] _iNVxjfiQlirT4HN8pKCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.500 [XNIO-1 task-2] _iNVxjfiQlirT4HN8pKCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.500 [XNIO-1 task-2] _iNVxjfiQlirT4HN8pKCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.500 [XNIO-1 task-2] _iNVxjfiQlirT4HN8pKCTQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.506 [XNIO-1 task-4] JdUy8RbeSTOtOZFl8sm40A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.506 [XNIO-1 task-4] JdUy8RbeSTOtOZFl8sm40A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.507 [XNIO-1 task-4] JdUy8RbeSTOtOZFl8sm40A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.510 [XNIO-1 task-4] JdUy8RbeSTOtOZFl8sm40A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = FaB5AUCMSKykiCPR7NJVQw redirectUri = http://localhost:8080/authorization +17:00:46.511 [XNIO-1 task-2] _iNVxjfiQlirT4HN8pKCTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.522 [XNIO-1 task-2] X7dL8BdZRp6pDfHq5G8ySg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.522 [XNIO-1 task-2] X7dL8BdZRp6pDfHq5G8ySg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.523 [XNIO-1 task-2] X7dL8BdZRp6pDfHq5G8ySg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.523 [XNIO-1 task-2] X7dL8BdZRp6pDfHq5G8ySg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.527 [XNIO-1 task-4] JdUy8RbeSTOtOZFl8sm40A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.528 [XNIO-1 task-2] X7dL8BdZRp6pDfHq5G8ySg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.531 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:153a3ac1-0c33-4859-90ac-19dcad833883 +17:00:46.538 [XNIO-1 task-2] XWbIlyJ9S324-ZLcB7H8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.538 [XNIO-1 task-2] XWbIlyJ9S324-ZLcB7H8zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.539 [XNIO-1 task-2] XWbIlyJ9S324-ZLcB7H8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.539 [XNIO-1 task-2] XWbIlyJ9S324-ZLcB7H8zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", authorization) +17:00:46.540 [XNIO-1 task-1] QiOEnwGnStSMu71DCdRjeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.540 [XNIO-1 task-1] QiOEnwGnStSMu71DCdRjeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.540 [XNIO-1 task-1] QiOEnwGnStSMu71DCdRjeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.541 [XNIO-1 task-1] QiOEnwGnStSMu71DCdRjeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:46.544 [XNIO-1 task-2] XWbIlyJ9S324-ZLcB7H8zQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.552 [XNIO-1 task-2] c2g-ROlxTMqMvN5kNb3oqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.553 [XNIO-1 task-2] c2g-ROlxTMqMvN5kNb3oqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.553 [XNIO-1 task-4] CdElKVJ_Q06cUS_PH12bVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.553 [XNIO-1 task-4] CdElKVJ_Q06cUS_PH12bVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.553 [XNIO-1 task-4] CdElKVJ_Q06cUS_PH12bVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.554 [XNIO-1 task-2] c2g-ROlxTMqMvN5kNb3oqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.554 [XNIO-1 task-2] c2g-ROlxTMqMvN5kNb3oqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", authorization) +17:00:46.553 [XNIO-1 task-4] CdElKVJ_Q06cUS_PH12bVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:46.562 [XNIO-1 task-1] QiOEnwGnStSMu71DCdRjeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:46.562 [XNIO-1 task-1] QiOEnwGnStSMu71DCdRjeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.565 [XNIO-1 task-2] c2g-ROlxTMqMvN5kNb3oqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.574 [XNIO-1 task-2] 1Se_-ckURFmXByAwBP0yKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.574 [XNIO-1 task-2] 1Se_-ckURFmXByAwBP0yKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.574 [XNIO-1 task-2] 1Se_-ckURFmXByAwBP0yKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.575 [XNIO-1 task-4] CdElKVJ_Q06cUS_PH12bVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.575 [XNIO-1 task-2] 1Se_-ckURFmXByAwBP0yKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.579 [XNIO-1 task-2] 1Se_-ckURFmXByAwBP0yKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.580 [XNIO-1 task-2] 1Se_-ckURFmXByAwBP0yKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:46.583 [XNIO-1 task-2] 1YcFeSd3QCG8EPkj_D0JEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.584 [XNIO-1 task-2] 1YcFeSd3QCG8EPkj_D0JEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.584 [XNIO-1 task-2] 1YcFeSd3QCG8EPkj_D0JEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.584 [XNIO-1 task-2] 1YcFeSd3QCG8EPkj_D0JEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", authorization) +17:00:46.590 [XNIO-1 task-2] 1YcFeSd3QCG8EPkj_D0JEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.601 [XNIO-1 task-2] qnvbEN6nS3GDMtF9ilqVGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.601 [XNIO-1 task-2] qnvbEN6nS3GDMtF9ilqVGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.601 [XNIO-1 task-2] qnvbEN6nS3GDMtF9ilqVGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.602 [XNIO-1 task-2] qnvbEN6nS3GDMtF9ilqVGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", authorization) +17:00:46.608 [XNIO-1 task-4] rDwgh065QvapZC9OQyumTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.608 [XNIO-1 task-4] rDwgh065QvapZC9OQyumTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.608 [XNIO-1 task-1] 9hJPBFx4Sher0K8OWZ3Jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.609 [XNIO-1 task-1] 9hJPBFx4Sher0K8OWZ3Jsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.608 [XNIO-1 task-2] qnvbEN6nS3GDMtF9ilqVGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.609 [XNIO-1 task-1] 9hJPBFx4Sher0K8OWZ3Jsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.610 [XNIO-1 task-4] rDwgh065QvapZC9OQyumTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.610 [XNIO-1 task-1] 9hJPBFx4Sher0K8OWZ3Jsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:46.610 [XNIO-1 task-1] 9hJPBFx4Sher0K8OWZ3Jsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IREda0YxRCibYW8pf5madA redirectUri = http://localhost:8080/authorization +17:00:46.615 [XNIO-1 task-2] kAZwKOORSYagKLnATkk01Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.615 [XNIO-1 task-2] kAZwKOORSYagKLnATkk01Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.615 [XNIO-1 task-2] kAZwKOORSYagKLnATkk01Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.615 [XNIO-1 task-2] kAZwKOORSYagKLnATkk01Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmJmMzlkMWQtNmU5YS00OWI4LTg5M2QtYjQ2MjkzM2FkMzk4Onk4X1ZETUhIUzJXSzNWZGNHU0R1NHc=", "Basic NmJmMzlkMWQtNmU5YS00OWI4LTg5M2QtYjQ2MjkzM2FkMzk4Onk4X1ZETUhIUzJXSzNWZGNHU0R1NHc=", authorization) +17:00:46.618 [XNIO-1 task-1] 9hJPBFx4Sher0K8OWZ3Jsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.handler.Handler.next(Handler.java:212) + + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:46.618 [XNIO-1 task-1] 9hJPBFx4Sher0K8OWZ3Jsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.623 [XNIO-1 task-2] kAZwKOORSYagKLnATkk01Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.630 [XNIO-1 task-2] E96MsyVHTXuMNLLrQg2sAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.630 [XNIO-1 task-2] E96MsyVHTXuMNLLrQg2sAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.631 [XNIO-1 task-2] E96MsyVHTXuMNLLrQg2sAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.631 [XNIO-1 task-2] E96MsyVHTXuMNLLrQg2sAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmJmMzlkMWQtNmU5YS00OWI4LTg5M2QtYjQ2MjkzM2FkMzk4Onk4X1ZETUhIUzJXSzNWZGNHU0R1NHc=", "Basic NmJmMzlkMWQtNmU5YS00OWI4LTg5M2QtYjQ2MjkzM2FkMzk4Onk4X1ZETUhIUzJXSzNWZGNHU0R1NHc=", authorization) +17:00:46.637 [XNIO-1 task-2] E96MsyVHTXuMNLLrQg2sAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.639 [XNIO-1 task-1] Qlj2QnkYTSqz_mvyN8Sscg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.639 [XNIO-1 task-1] Qlj2QnkYTSqz_mvyN8Sscg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.640 [XNIO-1 task-1] Qlj2QnkYTSqz_mvyN8Sscg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.640 [XNIO-1 task-1] Qlj2QnkYTSqz_mvyN8Sscg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:46.647 [XNIO-1 task-2] 6fdtYH8LSY68LX6K4tEdOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.647 [XNIO-1 task-2] 6fdtYH8LSY68LX6K4tEdOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.647 [XNIO-1 task-2] 6fdtYH8LSY68LX6K4tEdOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.648 [XNIO-1 task-2] 6fdtYH8LSY68LX6K4tEdOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", "Basic YTQ5YTAxYzctMWU0NC00Zjg5LTliMzMtMjdhMTk2MDczNjFkOjdlek5WU3ZPU0ktbkwzRk15LTB0NGc=", authorization) +17:00:46.649 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a01ebdcd +17:00:46.650 [XNIO-1 task-1] Qlj2QnkYTSqz_mvyN8Sscg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.651 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a01ebdcd +17:00:46.655 [XNIO-1 task-2] 6fdtYH8LSY68LX6K4tEdOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.663 [XNIO-1 task-1] rrlCPcFGQjOXk_Y4UHQE6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.664 [XNIO-1 task-1] rrlCPcFGQjOXk_Y4UHQE6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.665 [XNIO-1 task-1] rrlCPcFGQjOXk_Y4UHQE6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.665 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:46.665 [XNIO-1 task-1] rrlCPcFGQjOXk_Y4UHQE6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.669 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a01ebdcd +17:00:46.671 [XNIO-1 task-1] rrlCPcFGQjOXk_Y4UHQE6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.678 [XNIO-1 task-1] eY_WXsk_Txym1iKTH7bu3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.678 [XNIO-1 task-1] eY_WXsk_Txym1iKTH7bu3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.678 [XNIO-1 task-1] eY_WXsk_Txym1iKTH7bu3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.679 [XNIO-1 task-1] eY_WXsk_Txym1iKTH7bu3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.685 [XNIO-1 task-1] eY_WXsk_Txym1iKTH7bu3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.690 [XNIO-1 task-1] rZRC8kWrQXS8znHMLhdYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.690 [XNIO-1 task-1] rZRC8kWrQXS8znHMLhdYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.690 [XNIO-1 task-1] rZRC8kWrQXS8znHMLhdYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.692 [XNIO-1 task-1] rZRC8kWrQXS8znHMLhdYDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.697 [XNIO-1 task-1] rZRC8kWrQXS8znHMLhdYDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.705 [XNIO-1 task-2] KS-HKMumR26l0BLxaaculg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.705 [XNIO-1 task-2] KS-HKMumR26l0BLxaaculg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.706 [XNIO-1 task-2] KS-HKMumR26l0BLxaaculg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.706 [XNIO-1 task-2] KS-HKMumR26l0BLxaaculg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.706 [XNIO-1 task-1] iPX7UXKSQ6Sn6ZggdKrWQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.706 [XNIO-1 task-1] iPX7UXKSQ6Sn6ZggdKrWQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.712 [XNIO-1 task-2] KS-HKMumR26l0BLxaaculg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.715 [XNIO-1 task-1] iPX7UXKSQ6Sn6ZggdKrWQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.715 [XNIO-1 task-1] iPX7UXKSQ6Sn6ZggdKrWQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 65tzJmsMSzifqQlBIToVNQ redirectUri = http://localhost:8080/authorization +17:00:46.716 [XNIO-1 task-2] RWJjOM9OTz6jc5ILgbdk9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.716 [XNIO-1 task-2] RWJjOM9OTz6jc5ILgbdk9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.717 [XNIO-1 task-2] RWJjOM9OTz6jc5ILgbdk9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.717 [XNIO-1 task-2] RWJjOM9OTz6jc5ILgbdk9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.724 [XNIO-1 task-2] RWJjOM9OTz6jc5ILgbdk9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.729 [XNIO-1 task-2] SWUhEHiNSPCr_7Fw5JsO2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.729 [XNIO-1 task-2] SWUhEHiNSPCr_7Fw5JsO2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.730 [XNIO-1 task-2] SWUhEHiNSPCr_7Fw5JsO2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.730 [XNIO-1 task-2] SWUhEHiNSPCr_7Fw5JsO2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.736 [XNIO-1 task-1] iPX7UXKSQ6Sn6ZggdKrWQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.738 [XNIO-1 task-2] SWUhEHiNSPCr_7Fw5JsO2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.748 [XNIO-1 task-2] DWQPfXdZRtWHhSz0OaMstA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.753 [XNIO-1 task-2] DWQPfXdZRtWHhSz0OaMstA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.753 [XNIO-1 task-2] DWQPfXdZRtWHhSz0OaMstA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.754 [XNIO-1 task-2] DWQPfXdZRtWHhSz0OaMstA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:46.764 [XNIO-1 task-2] DWQPfXdZRtWHhSz0OaMstA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.773 [XNIO-1 task-2] 9p6dTP2dQv-nyMGMjAms-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.774 [XNIO-1 task-2] 9p6dTP2dQv-nyMGMjAms-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.774 [XNIO-1 task-2] 9p6dTP2dQv-nyMGMjAms-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.774 [XNIO-1 task-2] 9p6dTP2dQv-nyMGMjAms-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", authorization) +17:00:46.775 [XNIO-1 task-2] 9p6dTP2dQv-nyMGMjAms-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.780 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c3fdeb1d +17:00:46.780 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6ebcd65d-a29e-417a-84ad-976ae7421ee9 +17:00:46.781 [XNIO-1 task-2] 9p6dTP2dQv-nyMGMjAms-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.786 [XNIO-1 task-2] mXlKbtr9SwaTvg4JWxMj2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.786 [XNIO-1 task-2] mXlKbtr9SwaTvg4JWxMj2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.787 [XNIO-1 task-2] mXlKbtr9SwaTvg4JWxMj2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.787 [XNIO-1 task-2] mXlKbtr9SwaTvg4JWxMj2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", "Basic NmYyZmJkM2ItNzBmNS00Yzc5LTg3Y2YtYmY3MzRhOGVjMWUxOmFPdWlfZ0RSUlZHOEN5TGdpQ2EtQ1E=", authorization) +17:00:46.792 [XNIO-1 task-2] mXlKbtr9SwaTvg4JWxMj2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.805 [XNIO-1 task-2] R06RE19ZTS-AgU2P0W65Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.805 [XNIO-1 task-2] R06RE19ZTS-AgU2P0W65Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.805 [XNIO-1 task-2] R06RE19ZTS-AgU2P0W65Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.806 [XNIO-1 task-2] R06RE19ZTS-AgU2P0W65Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGE1MzQ4ZDUtZTM3Yi00YjVmLThmNDgtMDA3MmQxMWFiZjY1OkFfaG1QVWk2UVRLX05pYkJnNWFVMHc=", "Basic OGE1MzQ4ZDUtZTM3Yi00YjVmLThmNDgtMDA3MmQxMWFiZjY1OkFfaG1QVWk2UVRLX05pYkJnNWFVMHc=", authorization) +17:00:46.812 [XNIO-1 task-2] R06RE19ZTS-AgU2P0W65Mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.814 [XNIO-1 task-1] q7NrZcRATROGpH-441TInw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.814 [XNIO-1 task-1] q7NrZcRATROGpH-441TInw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.815 [XNIO-1 task-1] q7NrZcRATROGpH-441TInw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.816 [XNIO-1 task-1] q7NrZcRATROGpH-441TInw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjYyNGQzNDQtOWEzNy00ZTAwLWEyNTYtNTlhMjYxYTU0ZWNhOmREUlRnUzRZVDYteWUyZml5dnIzdUE=", "Basic NjYyNGQzNDQtOWEzNy00ZTAwLWEyNTYtNTlhMjYxYTU0ZWNhOmREUlRnUzRZVDYteWUyZml5dnIzdUE=", authorization) +17:00:46.818 [XNIO-1 task-2] xGPaWTB6QTOeQNSlrJsIJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.818 [XNIO-1 task-2] xGPaWTB6QTOeQNSlrJsIJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.818 [XNIO-1 task-2] xGPaWTB6QTOeQNSlrJsIJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.819 [XNIO-1 task-2] xGPaWTB6QTOeQNSlrJsIJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", "Basic NWQyYWRiNzItMGZiZS00MjEwLTk0NDUtNmU2MzUyOWMwNTMzOmV4Zms1U2RLU2t1RVQ5SjZpSFpfcVE=", authorization) +17:00:46.819 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c3fdeb1d +17:00:46.826 [XNIO-1 task-2] xGPaWTB6QTOeQNSlrJsIJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.828 [XNIO-1 task-1] q7NrZcRATROGpH-441TInw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:46.829 [XNIO-1 task-1] q7NrZcRATROGpH-441TInw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.831 [XNIO-1 task-2] qngOD3YPR9GXrd7Llx-Mww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.832 [XNIO-1 task-2] qngOD3YPR9GXrd7Llx-Mww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.832 [XNIO-1 task-2] qngOD3YPR9GXrd7Llx-Mww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.832 [XNIO-1 task-2] qngOD3YPR9GXrd7Llx-Mww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.837 [XNIO-1 task-4] FvMmMlTMTWOD30oMM4Zvkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.837 [XNIO-1 task-4] FvMmMlTMTWOD30oMM4Zvkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.837 [XNIO-1 task-4] FvMmMlTMTWOD30oMM4Zvkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.838 [XNIO-1 task-4] FvMmMlTMTWOD30oMM4Zvkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = DNouoK2cR2KrUW2Iry3tMQ redirectUri = http://localhost:8080/authorization +17:00:46.838 [XNIO-1 task-2] qngOD3YPR9GXrd7Llx-Mww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.844 [XNIO-1 task-2] EZCWfuyISkSBEwNWM_LkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.844 [XNIO-1 task-2] EZCWfuyISkSBEwNWM_LkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.845 [XNIO-1 task-2] EZCWfuyISkSBEwNWM_LkLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.845 [XNIO-1 task-2] EZCWfuyISkSBEwNWM_LkLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.851 [XNIO-1 task-2] EZCWfuyISkSBEwNWM_LkLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.856 [XNIO-1 task-4] FvMmMlTMTWOD30oMM4Zvkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.864 [XNIO-1 task-2] ekNCCP1TSl-s_Uj8Kg6XpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.864 [XNIO-1 task-2] ekNCCP1TSl-s_Uj8Kg6XpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.864 [XNIO-1 task-2] ekNCCP1TSl-s_Uj8Kg6XpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.865 [XNIO-1 task-2] ekNCCP1TSl-s_Uj8Kg6XpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:46.868 [XNIO-1 task-4] oqCVLTjDQWOXZPJCpziT6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.868 [XNIO-1 task-4] oqCVLTjDQWOXZPJCpziT6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.868 [XNIO-1 task-4] oqCVLTjDQWOXZPJCpziT6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.868 [XNIO-1 task-4] oqCVLTjDQWOXZPJCpziT6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", "Basic ZjU1ODhjZTItNDEzNS00MDg5LWE0N2YtYTlkNGU3Y2JmZmI0Ok50S283a0pjUi1xTGxCaGFvUWR4MVE=", authorization) +17:00:46.870 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b641f0da +17:00:46.871 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b641f0da +17:00:46.872 [XNIO-1 task-2] ekNCCP1TSl-s_Uj8Kg6XpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.875 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c3fdeb1d +17:00:46.878 [XNIO-1 task-2] Q9MD7zOsTmmcC_VgWX7rpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.879 [XNIO-1 task-2] Q9MD7zOsTmmcC_VgWX7rpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.879 [XNIO-1 task-2] Q9MD7zOsTmmcC_VgWX7rpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.880 [XNIO-1 task-2] Q9MD7zOsTmmcC_VgWX7rpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.880 [XNIO-1 task-2] Q9MD7zOsTmmcC_VgWX7rpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:46.884 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d17810e6-693e-4413-b6bf-54f87bea3476 +17:00:46.886 [XNIO-1 task-2] Q9MD7zOsTmmcC_VgWX7rpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.888 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d17810e6-693e-4413-b6bf-54f87bea3476 +17:00:46.894 [XNIO-1 task-4] y_rhwef0SyCAYeMbJw56oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.894 [XNIO-1 task-4] y_rhwef0SyCAYeMbJw56oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.894 [XNIO-1 task-4] y_rhwef0SyCAYeMbJw56oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.895 [XNIO-1 task-4] y_rhwef0SyCAYeMbJw56oQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.899 [XNIO-1 task-2] rnw0J4qsRTSSnp52HwIyUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.899 [XNIO-1 task-2] rnw0J4qsRTSSnp52HwIyUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.900 [XNIO-1 task-4] y_rhwef0SyCAYeMbJw56oQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.900 [XNIO-1 task-2] rnw0J4qsRTSSnp52HwIyUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.900 [XNIO-1 task-2] rnw0J4qsRTSSnp52HwIyUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9a813824-ebdc-4e7a-96df-484036d03927 scope = null +17:00:46.903 [XNIO-1 task-4] 8Ce2nbhrR8uTXQNf6DutRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.904 [XNIO-1 task-4] 8Ce2nbhrR8uTXQNf6DutRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.904 [XNIO-1 task-4] 8Ce2nbhrR8uTXQNf6DutRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.906 [XNIO-1 task-4] 8Ce2nbhrR8uTXQNf6DutRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.906 [XNIO-1 task-1] bHRQlaZyQ-CT8GfMhpgNyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.906 [XNIO-1 task-4] 8Ce2nbhrR8uTXQNf6DutRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = JYIyUQ7bQmKgqxn8qz7deQ redirectUri = http://localhost:8080/authorization +17:00:46.908 [XNIO-1 task-1] bHRQlaZyQ-CT8GfMhpgNyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.908 [XNIO-1 task-1] bHRQlaZyQ-CT8GfMhpgNyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.909 [XNIO-1 task-1] bHRQlaZyQ-CT8GfMhpgNyA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.916 [XNIO-1 task-2] rnw0J4qsRTSSnp52HwIyUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.916 [XNIO-1 task-1] bHRQlaZyQ-CT8GfMhpgNyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.918 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.918 [XNIO-1 task-4] 8Ce2nbhrR8uTXQNf6DutRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.919 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.920 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a01ebdcd +17:00:46.925 [XNIO-1 task-1] sbVYuBPwTK2CuMVv28tvEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.925 [XNIO-1 task-1] sbVYuBPwTK2CuMVv28tvEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.925 [XNIO-1 task-1] sbVYuBPwTK2CuMVv28tvEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.927 [XNIO-1 task-1] sbVYuBPwTK2CuMVv28tvEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.934 [XNIO-1 task-1] sbVYuBPwTK2CuMVv28tvEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.941 [XNIO-1 task-1] plLbDCnsT9ebG5X3sUfUmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.941 [XNIO-1 task-1] plLbDCnsT9ebG5X3sUfUmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.942 [XNIO-1 task-1] plLbDCnsT9ebG5X3sUfUmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.942 [XNIO-1 task-1] plLbDCnsT9ebG5X3sUfUmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.948 [XNIO-1 task-1] plLbDCnsT9ebG5X3sUfUmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.957 [XNIO-1 task-1] K0011wpTTeC-93r39ixGWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.957 [XNIO-1 task-1] K0011wpTTeC-93r39ixGWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.958 [XNIO-1 task-1] K0011wpTTeC-93r39ixGWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.962 [XNIO-1 task-1] K0011wpTTeC-93r39ixGWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.963 [XNIO-1 task-4] DaD6NcPCQlGosc03g5nOGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.963 [XNIO-1 task-4] DaD6NcPCQlGosc03g5nOGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.964 [XNIO-1 task-4] DaD6NcPCQlGosc03g5nOGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.965 [XNIO-1 task-4] DaD6NcPCQlGosc03g5nOGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6Kr-1dDBRm2_LJD4PTxcpg redirectUri = http://localhost:8080/authorization +17:00:46.967 [XNIO-1 task-1] K0011wpTTeC-93r39ixGWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.978 [XNIO-1 task-1] wPPl8uZ3SjmwOalWHfLQXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.978 [XNIO-1 task-1] wPPl8uZ3SjmwOalWHfLQXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.981 [XNIO-1 task-1] wPPl8uZ3SjmwOalWHfLQXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.981 [XNIO-1 task-1] wPPl8uZ3SjmwOalWHfLQXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:46.982 [XNIO-1 task-2] XSTYOdRuTByrgiRU_MhQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.982 [XNIO-1 task-2] XSTYOdRuTByrgiRU_MhQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.982 [XNIO-1 task-2] XSTYOdRuTByrgiRU_MhQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.982 [XNIO-1 task-2] XSTYOdRuTByrgiRU_MhQMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = H8kIvJZ2SxW4Fc5IxCOwJg redirectUri = http://localhost:8080/authorization +17:00:46.986 [XNIO-1 task-1] wPPl8uZ3SjmwOalWHfLQXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.987 [XNIO-1 task-4] DaD6NcPCQlGosc03g5nOGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:46.988 [XNIO-1 task-4] DaD6NcPCQlGosc03g5nOGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:46.989 [XNIO-1 task-2] XSTYOdRuTByrgiRU_MhQMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:46.994 [XNIO-1 task-1] r7rHNslSRgKrpDXuFq0HXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.994 [XNIO-1 task-1] r7rHNslSRgKrpDXuFq0HXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:46.997 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:46.997 [XNIO-1 task-1] r7rHNslSRgKrpDXuFq0HXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.999 [XNIO-1 task-4] mUmTSnSeRPu6g8qHYxjXnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.999 [XNIO-1 task-4] mUmTSnSeRPu6g8qHYxjXnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:46.999 [XNIO-1 task-4] mUmTSnSeRPu6g8qHYxjXnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:46.999 [XNIO-1 task-4] mUmTSnSeRPu6g8qHYxjXnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjdkZmUwYmUtODY1NC00MTE3LWIwMWYtN2UyMzQ4ZTk4YzRiOm1ya3hhbnhnVGlxTndDWmpjQkJPS0E=", "Basic YjdkZmUwYmUtODY1NC00MTE3LWIwMWYtN2UyMzQ4ZTk4YzRiOm1ya3hhbnhnVGlxTndDWmpjQkJPS0E=", authorization) +17:00:46.999 [XNIO-1 task-1] r7rHNslSRgKrpDXuFq0HXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.011 [XNIO-1 task-1] r7rHNslSRgKrpDXuFq0HXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.011 [XNIO-1 task-1] r7rHNslSRgKrpDXuFq0HXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.023 [XNIO-1 task-4] aZqOnJdHTEe71Oy3UeZSXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.024 [XNIO-1 task-4] aZqOnJdHTEe71Oy3UeZSXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.024 [XNIO-1 task-1] UTgoLNgyRt-iyvfZqeRmdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.024 [XNIO-1 task-4] aZqOnJdHTEe71Oy3UeZSXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.025 [XNIO-1 task-4] aZqOnJdHTEe71Oy3UeZSXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.025 [XNIO-1 task-4] aZqOnJdHTEe71Oy3UeZSXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6NVYgaQWSd-emYsTZzab0w redirectUri = http://localhost:8080/authorization +17:00:47.025 [XNIO-1 task-1] UTgoLNgyRt-iyvfZqeRmdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.025 [XNIO-1 task-1] UTgoLNgyRt-iyvfZqeRmdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.031 [XNIO-1 task-2] g6rSq-TvRlOoB54sueRFNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.031 [XNIO-1 task-2] g6rSq-TvRlOoB54sueRFNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.033 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a01ebdcd +17:00:47.034 [XNIO-1 task-1] UTgoLNgyRt-iyvfZqeRmdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.035 [XNIO-1 task-2] g6rSq-TvRlOoB54sueRFNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.035 [XNIO-1 task-2] g6rSq-TvRlOoB54sueRFNQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QrzJH5ogTZyP427HmUf_Xw redirectUri = http://localhost:8080/authorization +17:00:47.036 [XNIO-1 task-4] aZqOnJdHTEe71Oy3UeZSXQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:47.045 [XNIO-1 task-4] LQqgNJySQIyQu7FxWYzhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.045 [XNIO-1 task-4] LQqgNJySQIyQu7FxWYzhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.046 [XNIO-1 task-4] LQqgNJySQIyQu7FxWYzhbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.046 [XNIO-1 task-4] LQqgNJySQIyQu7FxWYzhbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.049 [XNIO-1 task-2] g6rSq-TvRlOoB54sueRFNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.053 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.054 [XNIO-1 task-4] LQqgNJySQIyQu7FxWYzhbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.065 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:349ade47 +17:00:47.066 [XNIO-1 task-2] RS8m8-ZoQdq-_eA-zH5vPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.066 [XNIO-1 task-2] RS8m8-ZoQdq-_eA-zH5vPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.067 [XNIO-1 task-2] RS8m8-ZoQdq-_eA-zH5vPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.067 [XNIO-1 task-2] RS8m8-ZoQdq-_eA-zH5vPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", authorization) +17:00:47.067 [XNIO-1 task-2] RS8m8-ZoQdq-_eA-zH5vPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.074 [XNIO-1 task-2] RS8m8-ZoQdq-_eA-zH5vPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.080 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:349ade47 +17:00:47.083 [XNIO-1 task-2] eiBKrgKUS6mcU9jzdZkb_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.083 [XNIO-1 task-2] eiBKrgKUS6mcU9jzdZkb_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.083 [XNIO-1 task-2] eiBKrgKUS6mcU9jzdZkb_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.084 [XNIO-1 task-2] eiBKrgKUS6mcU9jzdZkb_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.089 [XNIO-1 task-2] eiBKrgKUS6mcU9jzdZkb_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.094 [XNIO-1 task-2] RWKv-qXXRiefb6CfwSMHiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.094 [XNIO-1 task-2] RWKv-qXXRiefb6CfwSMHiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.094 [XNIO-1 task-2] RWKv-qXXRiefb6CfwSMHiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.095 [XNIO-1 task-2] RWKv-qXXRiefb6CfwSMHiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.102 [XNIO-1 task-2] RWKv-qXXRiefb6CfwSMHiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.113 [XNIO-1 task-2] l7C8Ak1qRra-oGKPdmy_kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.114 [XNIO-1 task-2] l7C8Ak1qRra-oGKPdmy_kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.115 [XNIO-1 task-2] l7C8Ak1qRra-oGKPdmy_kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.116 [XNIO-1 task-2] l7C8Ak1qRra-oGKPdmy_kA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.123 [XNIO-1 task-2] l7C8Ak1qRra-oGKPdmy_kA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.130 [XNIO-1 task-2] eZFI13saTbCNB1ebietJ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.131 [XNIO-1 task-2] eZFI13saTbCNB1ebietJ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.131 [XNIO-1 task-2] eZFI13saTbCNB1ebietJ3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.131 [XNIO-1 task-2] eZFI13saTbCNB1ebietJ3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.137 [XNIO-1 task-2] eZFI13saTbCNB1ebietJ3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.142 [XNIO-1 task-2] 8s9F4oZbRY-Pe_WSoFtviA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.142 [XNIO-1 task-2] 8s9F4oZbRY-Pe_WSoFtviA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.143 [XNIO-1 task-2] 8s9F4oZbRY-Pe_WSoFtviA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.143 [XNIO-1 task-2] 8s9F4oZbRY-Pe_WSoFtviA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.149 [XNIO-1 task-2] 8s9F4oZbRY-Pe_WSoFtviA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.155 [XNIO-1 task-2] _a0uGqC6Sq6FEsnQVXhllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.156 [XNIO-1 task-2] _a0uGqC6Sq6FEsnQVXhllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.156 [XNIO-1 task-2] _a0uGqC6Sq6FEsnQVXhllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.156 [XNIO-1 task-2] _a0uGqC6Sq6FEsnQVXhllw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.165 [XNIO-1 task-2] _a0uGqC6Sq6FEsnQVXhllw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.167 [XNIO-1 task-4] f4LZdR1ETn2Jo9TyYIDKaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.168 [XNIO-1 task-4] f4LZdR1ETn2Jo9TyYIDKaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.168 [XNIO-1 task-4] f4LZdR1ETn2Jo9TyYIDKaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.168 [XNIO-1 task-4] f4LZdR1ETn2Jo9TyYIDKaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tXrGgIiTST-oBwKXxxAA0g redirectUri = http://localhost:8080/authorization +17:00:47.170 [XNIO-1 task-2] X-zdIo4-QnexMHNt4B7hBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.170 [XNIO-1 task-2] X-zdIo4-QnexMHNt4B7hBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.170 [XNIO-1 task-2] X-zdIo4-QnexMHNt4B7hBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.170 [XNIO-1 task-2] X-zdIo4-QnexMHNt4B7hBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTgyOGY1ZGYtMjQ2ZS00ODU2LWE0MTctMTM1MjhhZDgxZjk0OkhaSDd5cGVRVFBPbWpKd080MVh0S0E=", "Basic MTgyOGY1ZGYtMjQ2ZS00ODU2LWE0MTctMTM1MjhhZDgxZjk0OkhaSDd5cGVRVFBPbWpKd080MVh0S0E=", authorization) +17:00:47.171 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4e98d2a9 +17:00:47.175 [XNIO-1 task-2] X-zdIo4-QnexMHNt4B7hBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.177 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c3fdeb1d +17:00:47.182 [XNIO-1 task-4] f4LZdR1ETn2Jo9TyYIDKaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.182 [XNIO-1 task-4] f4LZdR1ETn2Jo9TyYIDKaQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.182 [XNIO-1 task-2] u1K7Hp1vR5WtNP2zCSJLqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.182 [XNIO-1 task-2] u1K7Hp1vR5WtNP2zCSJLqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.183 [XNIO-1 task-2] u1K7Hp1vR5WtNP2zCSJLqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.183 [XNIO-1 task-2] u1K7Hp1vR5WtNP2zCSJLqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.186 [XNIO-1 task-1] 9tfuTkt0TDygrfb76h3lFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.186 [XNIO-1 task-1] 9tfuTkt0TDygrfb76h3lFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.186 [XNIO-1 task-1] 9tfuTkt0TDygrfb76h3lFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.188 [XNIO-1 task-1] 9tfuTkt0TDygrfb76h3lFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = SHLbmSJ7T3O5c_PnZ0xEHg redirectUri = http://localhost:8080/authorization +17:00:47.188 [XNIO-1 task-2] u1K7Hp1vR5WtNP2zCSJLqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.196 [XNIO-1 task-2] LL2nHvDYTY2Esil9t6yOOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.196 [XNIO-1 task-2] LL2nHvDYTY2Esil9t6yOOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.197 [XNIO-1 task-2] LL2nHvDYTY2Esil9t6yOOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.197 [XNIO-1 task-2] LL2nHvDYTY2Esil9t6yOOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:47.197 [XNIO-1 task-2] LL2nHvDYTY2Esil9t6yOOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PMe_g5_TTRSFaH6zq7gKDg redirectUri = http://localhost:8080/authorization +17:00:47.199 [XNIO-1 task-4] bpDjfXbjTpOvqHamafSYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.199 [XNIO-1 task-4] bpDjfXbjTpOvqHamafSYcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.199 [XNIO-1 task-4] bpDjfXbjTpOvqHamafSYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.199 [XNIO-1 task-4] bpDjfXbjTpOvqHamafSYcw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NThhNTRjYjEtYjQzNy00MWE1LTgwMDYtMzM0MWNhYzIxMWM1OkNqWHhVOXkxUmJXeGV2RDl3QTIwd0E=", "Basic NThhNTRjYjEtYjQzNy00MWE1LTgwMDYtMzM0MWNhYzIxMWM1OkNqWHhVOXkxUmJXeGV2RDl3QTIwd0E=", authorization) +17:00:47.200 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.207 [XNIO-1 task-2] LL2nHvDYTY2Esil9t6yOOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.207 [XNIO-1 task-4] bpDjfXbjTpOvqHamafSYcw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.207 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c3fdeb1d +17:00:47.216 [XNIO-1 task-1] zi2m8MPBS3iW2GDcNtYVig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.216 [XNIO-1 task-1] zi2m8MPBS3iW2GDcNtYVig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.217 [XNIO-1 task-1] zi2m8MPBS3iW2GDcNtYVig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.217 [XNIO-1 task-1] zi2m8MPBS3iW2GDcNtYVig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", "Basic MTg1ZDRhMjMtMmViMy00ZWZkLThjMGItYzg4MDJhNjZlZjA5OktKMWlpd2lZUWJ1dEthcERhS1l4TVE=", authorization) +17:00:47.220 [XNIO-1 task-2] o4YDroe7RCGToRo_bzCnbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.220 [XNIO-1 task-2] o4YDroe7RCGToRo_bzCnbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.221 [XNIO-1 task-2] o4YDroe7RCGToRo_bzCnbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.221 [XNIO-1 task-2] o4YDroe7RCGToRo_bzCnbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", authorization) +17:00:47.224 [XNIO-1 task-1] zi2m8MPBS3iW2GDcNtYVig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.229 [XNIO-1 task-2] o4YDroe7RCGToRo_bzCnbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.229 [XNIO-1 task-2] o4YDroe7RCGToRo_bzCnbA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.238 [XNIO-1 task-1] 0GMxGuEuQ_qNqeRP2rIuOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.238 [XNIO-1 task-1] 0GMxGuEuQ_qNqeRP2rIuOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.239 [XNIO-1 task-1] 0GMxGuEuQ_qNqeRP2rIuOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.239 [XNIO-1 task-4] X9NGcybOTFusf8eorq1SDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.239 [XNIO-1 task-4] X9NGcybOTFusf8eorq1SDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.239 [XNIO-1 task-4] X9NGcybOTFusf8eorq1SDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.239 [XNIO-1 task-4] X9NGcybOTFusf8eorq1SDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.239 [XNIO-1 task-4] X9NGcybOTFusf8eorq1SDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.245 [XNIO-1 task-4] X9NGcybOTFusf8eorq1SDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.251 [XNIO-1 task-1] 0GMxGuEuQ_qNqeRP2rIuOQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:47.253 [XNIO-1 task-4] _NVaRWKAT2KP411B9DeGCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.253 [XNIO-1 task-4] _NVaRWKAT2KP411B9DeGCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.253 [XNIO-1 task-4] _NVaRWKAT2KP411B9DeGCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.254 [XNIO-1 task-4] _NVaRWKAT2KP411B9DeGCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.259 [XNIO-1 task-4] _NVaRWKAT2KP411B9DeGCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.269 [XNIO-1 task-4] 7DUZGjIuSZSv1F0xAZX8OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.269 [XNIO-1 task-4] 7DUZGjIuSZSv1F0xAZX8OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.269 [XNIO-1 task-4] 7DUZGjIuSZSv1F0xAZX8OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.270 [XNIO-1 task-4] 7DUZGjIuSZSv1F0xAZX8OA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.270 [XNIO-1 task-1] kgFFZj5bTuGdvdW14urVzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.270 [XNIO-1 task-1] kgFFZj5bTuGdvdW14urVzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.271 [XNIO-1 task-1] kgFFZj5bTuGdvdW14urVzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.271 [XNIO-1 task-1] kgFFZj5bTuGdvdW14urVzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", "Basic NTNkNzUyMmQtYmNjNy00MWMwLTlmNWEtZmM2ZDc4YTgzMzE3OkZnUTdZVklnVExhMGZ3MDRHRHpBWnc=", authorization) +17:00:47.275 [XNIO-1 task-4] 7DUZGjIuSZSv1F0xAZX8OA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.279 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4a207300-6e7a-41a2-ac88-6832ca98560f +17:00:47.279 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:af109e2b-0c21-4409-a8d4-4be1ca434be8 +17:00:47.281 [XNIO-1 task-4] 5rTcS_-LT8KT1lng01KFtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.281 [XNIO-1 task-1] kgFFZj5bTuGdvdW14urVzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.285 [XNIO-1 task-1] kgFFZj5bTuGdvdW14urVzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.285 [XNIO-1 task-4] 5rTcS_-LT8KT1lng01KFtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.286 [XNIO-1 task-4] 5rTcS_-LT8KT1lng01KFtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:47.291 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.291 [XNIO-1 task-4] 5rTcS_-LT8KT1lng01KFtQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.302 [XNIO-1 task-1] aKHLgAzVTa6ba5qell6RXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.303 [XNIO-1 task-1] aKHLgAzVTa6ba5qell6RXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.303 [XNIO-1 task-1] aKHLgAzVTa6ba5qell6RXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.303 [XNIO-1 task-1] aKHLgAzVTa6ba5qell6RXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", "Basic YTdjMDViNjQtOWU5Yy00NDA2LWFiMTgtNjA4MzAxMDZlYjFkOnlsYk1MSEV2UlN1c25ib2llRmdFR2c=", authorization) +17:00:47.306 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4e98d2a9 +17:00:47.308 [XNIO-1 task-4] SzceTc6HTM2Qi6E3MsXv-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.318 [XNIO-1 task-1] aKHLgAzVTa6ba5qell6RXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.319 [XNIO-1 task-4] SzceTc6HTM2Qi6E3MsXv-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.320 [XNIO-1 task-4] SzceTc6HTM2Qi6E3MsXv-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.320 [XNIO-1 task-4] SzceTc6HTM2Qi6E3MsXv-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:47.324 [XNIO-1 task-1] IjZpTgfBQUivNry9ZeWsvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.324 [XNIO-1 task-1] IjZpTgfBQUivNry9ZeWsvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.325 [XNIO-1 task-1] IjZpTgfBQUivNry9ZeWsvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.325 [XNIO-1 task-1] IjZpTgfBQUivNry9ZeWsvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjdkZmUwYmUtODY1NC00MTE3LWIwMWYtN2UyMzQ4ZTk4YzRiOm1ya3hhbnhnVGlxTndDWmpjQkJPS0E=", "Basic YjdkZmUwYmUtODY1NC00MTE3LWIwMWYtN2UyMzQ4ZTk4YzRiOm1ya3hhbnhnVGlxTndDWmpjQkJPS0E=", authorization) +17:00:47.328 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4e98d2a9 +17:00:47.335 [XNIO-1 task-1] IjZpTgfBQUivNry9ZeWsvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.335 [XNIO-1 task-4] SzceTc6HTM2Qi6E3MsXv-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.336 [XNIO-1 task-4] SzceTc6HTM2Qi6E3MsXv-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.342 [XNIO-1 task-1] crXjLpfRQj6M1GUoN0iFeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.342 [XNIO-1 task-1] crXjLpfRQj6M1GUoN0iFeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.342 [XNIO-1 task-1] crXjLpfRQj6M1GUoN0iFeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.343 [XNIO-1 task-1] crXjLpfRQj6M1GUoN0iFeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fd825c37-57ff-4783-a2e2-3004b4106598 scope = null +17:00:47.348 [XNIO-1 task-4] kXsVUjYCRZ-NqBoWHyn1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.349 [XNIO-1 task-2] AZcd9Q-CQ1eW38UfYMV4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.349 [XNIO-1 task-2] AZcd9Q-CQ1eW38UfYMV4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.349 [XNIO-1 task-2] AZcd9Q-CQ1eW38UfYMV4cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.350 [XNIO-1 task-2] AZcd9Q-CQ1eW38UfYMV4cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:47.349 [XNIO-1 task-4] kXsVUjYCRZ-NqBoWHyn1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.351 [XNIO-1 task-4] kXsVUjYCRZ-NqBoWHyn1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.353 [XNIO-1 task-4] kXsVUjYCRZ-NqBoWHyn1hA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.356 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fd825c37-57ff-4783-a2e2-3004b4106598 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fd825c37-57ff-4783-a2e2-3004b4106598 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:47.357 [XNIO-1 task-4] kXsVUjYCRZ-NqBoWHyn1hA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.362 [XNIO-1 task-4] ouioD6Y5SOGfOCiQQ8UyVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.363 [XNIO-1 task-4] ouioD6Y5SOGfOCiQQ8UyVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.363 [XNIO-1 task-1] il38uYARRnaljDqb0QqpRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.363 [XNIO-1 task-4] ouioD6Y5SOGfOCiQQ8UyVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.363 [XNIO-1 task-4] ouioD6Y5SOGfOCiQQ8UyVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.363 [XNIO-1 task-4] ouioD6Y5SOGfOCiQQ8UyVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.364 [XNIO-1 task-4] ouioD6Y5SOGfOCiQQ8UyVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:47.365 [XNIO-1 task-2] AZcd9Q-CQ1eW38UfYMV4cQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.366 [XNIO-1 task-1] il38uYARRnaljDqb0QqpRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWM2NGMzNzUtZDBkMS00NzM3LTk2NGMtYzYyNzRmMjU0MTMxOkVIRDUxSGEyUVkydThIdW9jRk5aV1E=", "Basic MWM2NGMzNzUtZDBkMS00NzM3LTk2NGMtYzYyNzRmMjU0MTMxOkVIRDUxSGEyUVkydThIdW9jRk5aV1E=", authorization) +17:00:47.372 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fd825c37-57ff-4783-a2e2-3004b4106598 +17:00:47.373 [XNIO-1 task-4] ouioD6Y5SOGfOCiQQ8UyVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fd825c37-57ff-4783-a2e2-3004b4106598 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +17:00:47.380 [XNIO-1 task-4] vF-1ROegTdioMEwPn8BRyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.380 [XNIO-1 task-4] vF-1ROegTdioMEwPn8BRyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.380 [XNIO-1 task-4] vF-1ROegTdioMEwPn8BRyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.380 [XNIO-1 task-1] 1TGpwHINQpKxh_Icyh5mvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.381 [XNIO-1 task-1] 1TGpwHINQpKxh_Icyh5mvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.381 [XNIO-1 task-1] 1TGpwHINQpKxh_Icyh5mvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.381 [XNIO-1 task-4] vF-1ROegTdioMEwPn8BRyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:47.381 [XNIO-1 task-1] 1TGpwHINQpKxh_Icyh5mvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWM2NGMzNzUtZDBkMS00NzM3LTk2NGMtYzYyNzRmMjU0MTMxOkVIRDUxSGEyUVkydThIdW9jRk5aV1E=", "Basic MWM2NGMzNzUtZDBkMS00NzM3LTk2NGMtYzYyNzRmMjU0MTMxOkVIRDUxSGEyUVkydThIdW9jRk5aV1E=", authorization) +17:00:47.384 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4babf7cd-8623-4972-b251-ca1114ca2010 +17:00:47.390 [XNIO-1 task-4] vF-1ROegTdioMEwPn8BRyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.393 [XNIO-1 task-1] 1TGpwHINQpKxh_Icyh5mvA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +17:00:47.405 [XNIO-1 task-4] vUxntU3fSxiZRMBQDvX-NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.406 [XNIO-1 task-4] vUxntU3fSxiZRMBQDvX-NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.407 [XNIO-1 task-4] vUxntU3fSxiZRMBQDvX-NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.407 [XNIO-1 task-4] vUxntU3fSxiZRMBQDvX-NA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", authorization) +17:00:47.411 [XNIO-1 task-1] aUn5kJ3eRzyqpCEnTz2NkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.411 [XNIO-1 task-1] aUn5kJ3eRzyqpCEnTz2NkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.411 [XNIO-1 task-1] aUn5kJ3eRzyqpCEnTz2NkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.412 [XNIO-1 task-1] aUn5kJ3eRzyqpCEnTz2NkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", authorization) +17:00:47.412 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:29a16a0f-99d3-48e7-8e64-da208ef9b92e +17:00:47.413 [XNIO-1 task-4] vUxntU3fSxiZRMBQDvX-NA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.418 [XNIO-1 task-4] MFVf8ziDQ0qT8ekrwpsnXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.418 [XNIO-1 task-4] MFVf8ziDQ0qT8ekrwpsnXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.418 [XNIO-1 task-4] MFVf8ziDQ0qT8ekrwpsnXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.418 [XNIO-1 task-4] MFVf8ziDQ0qT8ekrwpsnXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.419 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:29a16a0f-99d3-48e7-8e64-da208ef9b92e +17:00:47.419 [XNIO-1 task-4] MFVf8ziDQ0qT8ekrwpsnXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", authorization) +17:00:47.425 [XNIO-1 task-4] MFVf8ziDQ0qT8ekrwpsnXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.430 [XNIO-1 task-4] jWD5SJOxS8CGYvNRPM1Jjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.430 [XNIO-1 task-4] jWD5SJOxS8CGYvNRPM1Jjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.430 [XNIO-1 task-4] jWD5SJOxS8CGYvNRPM1Jjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.430 [XNIO-1 task-4] jWD5SJOxS8CGYvNRPM1Jjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGM2MTEwYmQtNjc2MS00OTI2LTg2YTEtZmY0ZjhhMzhhNjhjOlM5LUk4aFl3UXVPMU9GbnJjRERxLUE=", "Basic MGM2MTEwYmQtNjc2MS00OTI2LTg2YTEtZmY0ZjhhMzhhNjhjOlM5LUk4aFl3UXVPMU9GbnJjRERxLUE=", authorization) +17:00:47.439 [XNIO-1 task-4] jWD5SJOxS8CGYvNRPM1Jjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.452 [XNIO-1 task-4] -z0hm5dKRHq2ofEfJxMylw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.452 [XNIO-1 task-4] -z0hm5dKRHq2ofEfJxMylw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.452 [XNIO-1 task-4] -z0hm5dKRHq2ofEfJxMylw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.452 [XNIO-1 task-4] -z0hm5dKRHq2ofEfJxMylw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjEwNWZmNmQtZDVkOC00YTJmLTljZjktZTgwMTMyZDYxMWU0OnpDaXZZQ01SU1pDb0NialBET090UUE=", "Basic ZjEwNWZmNmQtZDVkOC00YTJmLTljZjktZTgwMTMyZDYxMWU0OnpDaXZZQ01SU1pDb0NialBET090UUE=", authorization) +17:00:47.459 [XNIO-1 task-4] -z0hm5dKRHq2ofEfJxMylw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.466 [XNIO-1 task-4] W7t0qpZtTniqRvsrcNXdug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.466 [XNIO-1 task-4] W7t0qpZtTniqRvsrcNXdug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.466 [XNIO-1 task-4] W7t0qpZtTniqRvsrcNXdug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.467 [XNIO-1 task-4] W7t0qpZtTniqRvsrcNXdug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:47.473 [XNIO-1 task-4] W7t0qpZtTniqRvsrcNXdug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.482 [XNIO-1 task-4] rMWoFPvZRm-8IBHhbRF6ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.482 [XNIO-1 task-4] rMWoFPvZRm-8IBHhbRF6ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.482 [XNIO-1 task-4] rMWoFPvZRm-8IBHhbRF6ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.483 [XNIO-1 task-4] rMWoFPvZRm-8IBHhbRF6ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", "Basic MWE2MDY2NjQtNTc3Ni00OTUyLWI3MTMtYTk4MmRjYjU0ZGRkOmlrM3RxR1paVGpDRGQwSTBOa3VQUmc=", authorization) +17:00:47.491 [XNIO-1 task-4] rMWoFPvZRm-8IBHhbRF6ZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.503 [XNIO-1 task-4] SCo_ja0dRT6gxdPBXMQNow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.503 [XNIO-1 task-4] SCo_ja0dRT6gxdPBXMQNow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.503 [XNIO-1 task-4] SCo_ja0dRT6gxdPBXMQNow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.504 [XNIO-1 task-4] SCo_ja0dRT6gxdPBXMQNow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTE0NjVjZjYtZWVkNi00YjBjLTgxMDQtNTcxNDNmNzI3MzZjOk1sTUZlTW44Um91a2RyWTFuMzY0Qmc=", "Basic YTE0NjVjZjYtZWVkNi00YjBjLTgxMDQtNTcxNDNmNzI3MzZjOk1sTUZlTW44Um91a2RyWTFuMzY0Qmc=", authorization) +17:00:47.511 [XNIO-1 task-4] SCo_ja0dRT6gxdPBXMQNow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.512 [XNIO-1 task-1] tPo0FHZBTWWPBlLF4lgczw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.512 [XNIO-1 task-1] tPo0FHZBTWWPBlLF4lgczw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.512 [XNIO-1 task-1] tPo0FHZBTWWPBlLF4lgczw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.513 [XNIO-1 task-1] tPo0FHZBTWWPBlLF4lgczw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", authorization) +17:00:47.520 [XNIO-1 task-4] LJ8jfh4QR1utUSFo1WJcLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.520 [XNIO-1 task-4] LJ8jfh4QR1utUSFo1WJcLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.521 [XNIO-1 task-4] LJ8jfh4QR1utUSFo1WJcLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.521 [XNIO-1 task-4] LJ8jfh4QR1utUSFo1WJcLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:47.524 [XNIO-1 task-2] JSERZ4eLR2mGfJ5kcqru7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.526 [XNIO-1 task-2] JSERZ4eLR2mGfJ5kcqru7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.526 [XNIO-1 task-2] JSERZ4eLR2mGfJ5kcqru7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.522 [XNIO-1 task-1] tPo0FHZBTWWPBlLF4lgczw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.526 [XNIO-1 task-2] JSERZ4eLR2mGfJ5kcqru7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGE1MzQ4ZDUtZTM3Yi00YjVmLThmNDgtMDA3MmQxMWFiZjY1OkFfaG1QVWk2UVRLX05pYkJnNWFVMHc=", "Basic OGE1MzQ4ZDUtZTM3Yi00YjVmLThmNDgtMDA3MmQxMWFiZjY1OkFfaG1QVWk2UVRLX05pYkJnNWFVMHc=", authorization) +17:00:47.527 [XNIO-1 task-2] JSERZ4eLR2mGfJ5kcqru7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LGyh_0dbRD6STYMj-ekBrg redirectUri = http://localhost:8080/authorization +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +17:00:47.534 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c3fdeb1d +17:00:47.546 [XNIO-1 task-2] JSERZ4eLR2mGfJ5kcqru7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.546 [XNIO-1 task-2] JSERZ4eLR2mGfJ5kcqru7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +17:00:47.550 [XNIO-1 task-1] N2WF7M1RQd2NyMsQCQPV0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.551 [XNIO-1 task-1] N2WF7M1RQd2NyMsQCQPV0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:47.551 [XNIO-1 task-4] UFS1eUDVQResApmhc5F6Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", "Basic MzJmMzNlZGQtNmM0NC00YTVlLTliODEtYjljMTVlMTdjNGU3OkJoeFRIemJMUmlHZUdxMjF4Qlp0RlE=", authorization) +17:00:47.552 [XNIO-1 task-1] N2WF7M1RQd2NyMsQCQPV0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a5e61bed-a1b5-41cf-a094-3e3206016a2c scope = null +17:00:47.551 [XNIO-1 task-4] UFS1eUDVQResApmhc5F6Qg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.558 [XNIO-1 task-4] UFS1eUDVQResApmhc5F6Qg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +17:00:47.563 [XNIO-1 task-4] 7h-nIfpNTbuA-xeMMsLxKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.563 [XNIO-1 task-4] 7h-nIfpNTbuA-xeMMsLxKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.564 [XNIO-1 task-4] 7h-nIfpNTbuA-xeMMsLxKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.564 [XNIO-1 task-4] 7h-nIfpNTbuA-xeMMsLxKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0a5a0f27-87a8-444f-8f2b-4eaaa0c205d9 scope = null +17:00:47.566 [XNIO-1 task-2] _aruvhC_TK2x8KvAbMmC6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.566 [XNIO-1 task-2] _aruvhC_TK2x8KvAbMmC6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.566 [XNIO-1 task-2] _aruvhC_TK2x8KvAbMmC6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.567 [XNIO-1 task-2] _aruvhC_TK2x8KvAbMmC6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +Jun 28, 2024 5:00:47 PM com.hazelcast.map.impl.operation.DeleteOperation +17:00:47.574 [XNIO-1 task-2] _aruvhC_TK2x8KvAbMmC6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.580 [XNIO-1 task-2] jAAi8Ab4Q5ipem2cUGbAtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +17:00:47.580 [XNIO-1 task-2] jAAi8Ab4Q5ipem2cUGbAtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.581 [XNIO-1 task-2] jAAi8Ab4Q5ipem2cUGbAtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.581 [XNIO-1 task-2] jAAi8Ab4Q5ipem2cUGbAtw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.584 [XNIO-1 task-1] N2WF7M1RQd2NyMsQCQPV0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.584 [XNIO-1 task-4] 7h-nIfpNTbuA-xeMMsLxKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.591 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:df02623e +17:00:47.593 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:df02623e +17:00:47.593 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:df02623e +17:00:47.606 [XNIO-1 task-2] mZeQ-CywQCSzIOEDgf-7Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.606 [XNIO-1 task-2] mZeQ-CywQCSzIOEDgf-7Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.606 [XNIO-1 task-2] mZeQ-CywQCSzIOEDgf-7Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.607 [XNIO-1 task-2] mZeQ-CywQCSzIOEDgf-7Yw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.614 [XNIO-1 task-2] mZeQ-CywQCSzIOEDgf-7Yw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +17:00:47.625 [XNIO-1 task-2] HFcaBnWHTe-KxiZTDvrS8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.625 [XNIO-1 task-2] HFcaBnWHTe-KxiZTDvrS8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +17:00:47.625 [XNIO-1 task-2] HFcaBnWHTe-KxiZTDvrS8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", authorization) +17:00:47.626 [XNIO-1 task-4] UF2U-SDFTm2QJ64iNA-9tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +17:00:47.627 [XNIO-1 task-4] UF2U-SDFTm2QJ64iNA-9tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +17:00:47.627 [XNIO-1 task-4] UF2U-SDFTm2QJ64iNA-9tw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +17:00:47.638 [XNIO-1 task-2] HFcaBnWHTe-KxiZTDvrS8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +17:00:47.642 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:df02623e +17:00:47.643 [XNIO-1 task-4] gAMNxETtTKuTjE434s0SWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.643 [XNIO-1 task-4] gAMNxETtTKuTjE434s0SWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.644 [XNIO-1 task-4] gAMNxETtTKuTjE434s0SWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + +17:00:47.644 [XNIO-1 task-4] gAMNxETtTKuTjE434s0SWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.645 [XNIO-1 task-4] gAMNxETtTKuTjE434s0SWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.646 [XNIO-1 task-1] mo4VGgwZRaGg1lEL2xjkZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.646 [XNIO-1 task-1] mo4VGgwZRaGg1lEL2xjkZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.647 [XNIO-1 task-1] mo4VGgwZRaGg1lEL2xjkZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.647 [XNIO-1 task-1] mo4VGgwZRaGg1lEL2xjkZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3iJS_WfkQm-k_cczAozrSw redirectUri = http://localhost:8080/authorization +17:00:47.655 [XNIO-1 task-4] gAMNxETtTKuTjE434s0SWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.662 [XNIO-1 task-4] 9Lp87WdnTO6I6gC8-ja0xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.662 [XNIO-1 task-4] 9Lp87WdnTO6I6gC8-ja0xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.663 [XNIO-1 task-4] 9Lp87WdnTO6I6gC8-ja0xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.663 [XNIO-1 task-4] 9Lp87WdnTO6I6gC8-ja0xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", "Basic Mjc1ZGI2NmEtNjM3My00Yjc5LWJiMzMtY2IwYzI4MzA0MGQxOlpNT0RVUGtDUzNLb0JzWTdBc3EwNUE=", authorization) +17:00:47.663 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:df02623e +17:00:47.667 [XNIO-1 task-1] mo4VGgwZRaGg1lEL2xjkZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.670 [XNIO-1 task-4] 9Lp87WdnTO6I6gC8-ja0xQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.678 [XNIO-1 task-4] IUgOnYTwSlOdyKjeVAIVlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.678 [XNIO-1 task-4] IUgOnYTwSlOdyKjeVAIVlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.678 [XNIO-1 task-4] IUgOnYTwSlOdyKjeVAIVlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.679 [XNIO-1 task-4] IUgOnYTwSlOdyKjeVAIVlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", "Basic ZjNhMTkwYzMtMTk2OS00MTYwLWIzMDYtNWNhOTMwMzllNjc3Onh2WHJzSlFTVFZTQWx6bU9uRWxFT3c=", authorization) +17:00:47.688 [XNIO-1 task-4] IUgOnYTwSlOdyKjeVAIVlw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.695 [XNIO-1 task-4] Ry00Ro00Q-SI_MXT95SmFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.695 [XNIO-1 task-4] Ry00Ro00Q-SI_MXT95SmFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.695 [XNIO-1 task-4] Ry00Ro00Q-SI_MXT95SmFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.696 [XNIO-1 task-4] Ry00Ro00Q-SI_MXT95SmFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyZGFiMDctMmZhZS00ZGIxLTgyYjAtZTY2OTg1NTJjY2YzOmthRTNLTERqU09PT1ZsUVRTN1dZdnc=", "Basic NjIyZGFiMDctMmZhZS00ZGIxLTgyYjAtZTY2OTg1NTJjY2YzOmthRTNLTERqU09PT1ZsUVRTN1dZdnc=", authorization) +17:00:47.705 [XNIO-1 task-4] Ry00Ro00Q-SI_MXT95SmFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.710 [XNIO-1 task-4] -GpvreB8QNOGmIjZkA6vxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.710 [XNIO-1 task-4] -GpvreB8QNOGmIjZkA6vxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.710 [XNIO-1 task-4] -GpvreB8QNOGmIjZkA6vxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.711 [XNIO-1 task-4] -GpvreB8QNOGmIjZkA6vxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyZGFiMDctMmZhZS00ZGIxLTgyYjAtZTY2OTg1NTJjY2YzOmthRTNLTERqU09PT1ZsUVRTN1dZdnc=", "Basic NjIyZGFiMDctMmZhZS00ZGIxLTgyYjAtZTY2OTg1NTJjY2YzOmthRTNLTERqU09PT1ZsUVRTN1dZdnc=", authorization) +17:00:47.716 [XNIO-1 task-4] -GpvreB8QNOGmIjZkA6vxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.716 [XNIO-1 task-4] -GpvreB8QNOGmIjZkA6vxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.722 [XNIO-1 task-4] 2p3E2KTiTZ2g_eZjL22VLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +17:00:47.722 [XNIO-1 task-4] 2p3E2KTiTZ2g_eZjL22VLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.722 [XNIO-1 task-4] 2p3E2KTiTZ2g_eZjL22VLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.722 [XNIO-1 task-4] 2p3E2KTiTZ2g_eZjL22VLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWYxMDllMmItMGMyMS00NDA5LWE4ZDQtNGJlMWNhNDM0YmU4OndlN2w3T3V5Uy1tRFd4ODA1RHk0WlE=", "Basic YWYxMDllMmItMGMyMS00NDA5LWE4ZDQtNGJlMWNhNDM0YmU4OndlN2w3T3V5Uy1tRFd4ODA1RHk0WlE=", authorization) +17:00:47.722 [XNIO-1 task-4] 2p3E2KTiTZ2g_eZjL22VLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.729 [XNIO-1 task-4] 2p3E2KTiTZ2g_eZjL22VLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:47.730 [XNIO-1 task-4] 2p3E2KTiTZ2g_eZjL22VLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.739 [XNIO-1 task-4] ameuCJdfTSSf7YfJFQp82g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.739 [XNIO-1 task-4] ameuCJdfTSSf7YfJFQp82g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.740 [XNIO-1 task-4] ameuCJdfTSSf7YfJFQp82g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.740 [XNIO-1 task-4] ameuCJdfTSSf7YfJFQp82g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.742 [XNIO-1 task-1] JtSqblUKTQi1Z0CPgdH0Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.743 [XNIO-1 task-1] JtSqblUKTQi1Z0CPgdH0Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.743 [XNIO-1 task-1] JtSqblUKTQi1Z0CPgdH0Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.743 [XNIO-1 task-1] JtSqblUKTQi1Z0CPgdH0Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:47.745 [XNIO-1 task-4] ameuCJdfTSSf7YfJFQp82g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.747 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d1d9b5ab-4d4a-42bb-9461-6b231b431048 +Jun 28, 2024 5:00:48 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +17:00:47.750 [XNIO-1 task-1] JtSqblUKTQi1Z0CPgdH0Pw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.750 [XNIO-1 task-1] JtSqblUKTQi1Z0CPgdH0Pw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.752 [XNIO-1 task-4] li8x8XKGSJ6FzQKVy09Ysg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +17:00:47.753 [XNIO-1 task-4] li8x8XKGSJ6FzQKVy09Ysg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.753 [XNIO-1 task-4] li8x8XKGSJ6FzQKVy09Ysg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.753 [XNIO-1 task-4] li8x8XKGSJ6FzQKVy09Ysg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWYxMDllMmItMGMyMS00NDA5LWE4ZDQtNGJlMWNhNDM0YmU4OndlN2w3T3V5Uy1tRFd4ODA1RHk0WlE=", "Basic YWYxMDllMmItMGMyMS00NDA5LWE4ZDQtNGJlMWNhNDM0YmU4OndlN2w3T3V5Uy1tRFd4ODA1RHk0WlE=", authorization) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +17:00:47.758 [XNIO-1 task-4] li8x8XKGSJ6FzQKVy09Ysg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +17:00:47.766 [XNIO-1 task-4] lqc8-JCkQ1a5570PrZo87g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.766 [XNIO-1 task-4] lqc8-JCkQ1a5570PrZo87g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + +17:00:47.766 [XNIO-1 task-4] lqc8-JCkQ1a5570PrZo87g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.767 [XNIO-1 task-4] lqc8-JCkQ1a5570PrZo87g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.767 [XNIO-1 task-4] lqc8-JCkQ1a5570PrZo87g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWYxMDllMmItMGMyMS00NDA5LWE4ZDQtNGJlMWNhNDM0YmU4OndlN2w3T3V5Uy1tRFd4ODA1RHk0WlE=", "Basic YWYxMDllMmItMGMyMS00NDA5LWE4ZDQtNGJlMWNhNDM0YmU4OndlN2w3T3V5Uy1tRFd4ODA1RHk0WlE=", authorization) +17:00:47.770 [XNIO-1 task-1] bP5r9b8LSeur7IXFHjrUlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.770 [XNIO-1 task-1] bP5r9b8LSeur7IXFHjrUlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.770 [XNIO-1 task-1] bP5r9b8LSeur7IXFHjrUlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.771 [XNIO-1 task-1] bP5r9b8LSeur7IXFHjrUlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:47.772 [XNIO-1 task-4] lqc8-JCkQ1a5570PrZo87g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.777 [XNIO-1 task-4] qhPNR9LZRhCZx_iv9NNYwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.777 [XNIO-1 task-4] qhPNR9LZRhCZx_iv9NNYwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.779 [XNIO-1 task-4] qhPNR9LZRhCZx_iv9NNYwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.780 [XNIO-1 task-4] qhPNR9LZRhCZx_iv9NNYwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:47.782 [XNIO-1 task-1] bP5r9b8LSeur7IXFHjrUlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.789 [XNIO-1 task-4] qhPNR9LZRhCZx_iv9NNYwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.793 [XNIO-1 task-4] iRTIoL7oQeOQpt7HKNx6xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.793 [XNIO-1 task-4] iRTIoL7oQeOQpt7HKNx6xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.794 [XNIO-1 task-4] iRTIoL7oQeOQpt7HKNx6xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.794 [XNIO-1 task-4] iRTIoL7oQeOQpt7HKNx6xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:47.799 [XNIO-1 task-4] iRTIoL7oQeOQpt7HKNx6xw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.803 [XNIO-1 task-4] 4jBfI6SoRsO2SjdFQ6ANTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.804 [XNIO-1 task-4] 4jBfI6SoRsO2SjdFQ6ANTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.804 [XNIO-1 task-4] 4jBfI6SoRsO2SjdFQ6ANTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.805 [XNIO-1 task-4] 4jBfI6SoRsO2SjdFQ6ANTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", "Basic YThiNzIyYjktMTZlMC00OWI2LWE4NmEtY2Q5Y2RjN2FmODY5OmdxYmx6c0RVUnZPcm4xRGhCRnM0a3c=", authorization) +17:00:47.809 [XNIO-1 task-4] 4jBfI6SoRsO2SjdFQ6ANTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.822 [XNIO-1 task-4] ugHX96lSRGe3ZA8PlupWwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.822 [XNIO-1 task-4] ugHX96lSRGe3ZA8PlupWwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.822 [XNIO-1 task-4] ugHX96lSRGe3ZA8PlupWwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.822 [XNIO-1 task-4] ugHX96lSRGe3ZA8PlupWwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjlhMTZhMGYtOTlkMy00OGU3LThlNjQtZGEyMDhlZjliOTJlOnJVMkFMTlNKUVJlaTl2OXRtNTBqYUE=", "Basic MjlhMTZhMGYtOTlkMy00OGU3LThlNjQtZGEyMDhlZjliOTJlOnJVMkFMTlNKUVJlaTl2OXRtNTBqYUE=", authorization) +17:00:47.827 [XNIO-1 task-4] ugHX96lSRGe3ZA8PlupWwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.828 [XNIO-1 task-1] xtIqtbTZTzaxJzR07aPJKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.828 [XNIO-1 task-1] xtIqtbTZTzaxJzR07aPJKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.828 [XNIO-1 task-1] xtIqtbTZTzaxJzR07aPJKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.828 [XNIO-1 task-1] xtIqtbTZTzaxJzR07aPJKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", authorization) +17:00:47.836 [XNIO-1 task-4] C3hQjsO4SX6lcpauLO11UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.836 [XNIO-1 task-4] C3hQjsO4SX6lcpauLO11UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.836 [XNIO-1 task-4] C3hQjsO4SX6lcpauLO11UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.837 [XNIO-1 task-4] C3hQjsO4SX6lcpauLO11UA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjlhMTZhMGYtOTlkMy00OGU3LThlNjQtZGEyMDhlZjliOTJlOnJVMkFMTlNKUVJlaTl2OXRtNTBqYUE=", "Basic MjlhMTZhMGYtOTlkMy00OGU3LThlNjQtZGEyMDhlZjliOTJlOnJVMkFMTlNKUVJlaTl2OXRtNTBqYUE=", authorization) +17:00:47.838 [XNIO-1 task-1] xtIqtbTZTzaxJzR07aPJKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.838 [XNIO-1 task-1] xtIqtbTZTzaxJzR07aPJKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.842 [XNIO-1 task-4] C3hQjsO4SX6lcpauLO11UA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.846 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:69878cbe-ade4-4c00-b00e-5384b2e7f44b +17:00:47.846 [XNIO-1 task-4] TwWUGGKZRDOUaSnuWuVcZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.846 [XNIO-1 task-4] TwWUGGKZRDOUaSnuWuVcZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.847 [XNIO-1 task-4] TwWUGGKZRDOUaSnuWuVcZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.847 [XNIO-1 task-4] TwWUGGKZRDOUaSnuWuVcZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGM2MTEwYmQtNjc2MS00OTI2LTg2YTEtZmY0ZjhhMzhhNjhjOlM5LUk4aFl3UXVPMU9GbnJjRERxLUE=", "Basic MGM2MTEwYmQtNjc2MS00OTI2LTg2YTEtZmY0ZjhhMzhhNjhjOlM5LUk4aFl3UXVPMU9GbnJjRERxLUE=", authorization) +17:00:47.850 [XNIO-1 task-1] R3SkeHSzTV-E7iLKUiah0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.851 [XNIO-1 task-1] R3SkeHSzTV-E7iLKUiah0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.851 [XNIO-1 task-1] R3SkeHSzTV-E7iLKUiah0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.851 [XNIO-1 task-1] R3SkeHSzTV-E7iLKUiah0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", "Basic NWUxYzY5OGItM2NhZS00Mjg2LTkwYTctYWM5ZTk0MjJiYjlkOnV2Y2JPelBoUjcyQnRBMmRsN0xhZFE=", authorization) +17:00:47.857 [XNIO-1 task-4] TwWUGGKZRDOUaSnuWuVcZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.862 [XNIO-1 task-1] R3SkeHSzTV-E7iLKUiah0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.863 [XNIO-1 task-4] zwaxzqMeT7m5DTXHvvkOkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.863 [XNIO-1 task-1] R3SkeHSzTV-E7iLKUiah0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.863 [XNIO-1 task-4] zwaxzqMeT7m5DTXHvvkOkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.863 [XNIO-1 task-4] zwaxzqMeT7m5DTXHvvkOkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:47.869 [XNIO-1 task-4] zwaxzqMeT7m5DTXHvvkOkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.876 [XNIO-1 task-1] jnUeqMYuQrmxOjHUEbrKHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.876 [XNIO-1 task-1] jnUeqMYuQrmxOjHUEbrKHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.876 [XNIO-1 task-1] jnUeqMYuQrmxOjHUEbrKHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.877 [XNIO-1 task-1] jnUeqMYuQrmxOjHUEbrKHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", "Basic NWYxNDNhMjMtZTNjMS00MGNhLWFhMDUtMjQ5MDBiM2U2M2E1Om9rMnhCeHR5UXNXV0JhMGlFaEtPRkE=", authorization) +17:00:47.881 [XNIO-1 task-4] T07bWfYfSp29Jw8wRAu2-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.881 [XNIO-1 task-4] T07bWfYfSp29Jw8wRAu2-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.881 [XNIO-1 task-4] T07bWfYfSp29Jw8wRAu2-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.882 [XNIO-1 task-4] T07bWfYfSp29Jw8wRAu2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:47.883 [XNIO-1 task-1] jnUeqMYuQrmxOjHUEbrKHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.890 [XNIO-1 task-4] T07bWfYfSp29Jw8wRAu2-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.894 [XNIO-1 task-4] T07bWfYfSp29Jw8wRAu2-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.898 [XNIO-1 task-4] 7wF1mz8oRWiEKhuzP5p1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.898 [XNIO-1 task-4] 7wF1mz8oRWiEKhuzP5p1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.898 [XNIO-1 task-4] 7wF1mz8oRWiEKhuzP5p1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.899 [XNIO-1 task-4] 7wF1mz8oRWiEKhuzP5p1EQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:47.905 [XNIO-1 task-1] mwmY9x6EQ0aD5w-A-JMSCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.905 [XNIO-1 task-1] mwmY9x6EQ0aD5w-A-JMSCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.907 [XNIO-1 task-1] mwmY9x6EQ0aD5w-A-JMSCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:47.907 [XNIO-1 task-1] mwmY9x6EQ0aD5w-A-JMSCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = uPDTj-n6Tu2Y4ahSOftfaA redirectUri = http://localhost:8080/authorization +17:00:47.908 [XNIO-1 task-4] 7wF1mz8oRWiEKhuzP5p1EQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.914 [XNIO-1 task-1] mwmY9x6EQ0aD5w-A-JMSCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.915 [XNIO-1 task-4] 1u0ufdt7RJue2TOZuAo4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.915 [XNIO-1 task-4] 1u0ufdt7RJue2TOZuAo4jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.916 [XNIO-1 task-4] 1u0ufdt7RJue2TOZuAo4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.916 [XNIO-1 task-4] 1u0ufdt7RJue2TOZuAo4jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", "Basic NmI1Yzc2M2UtNGY0NS00Zjg5LWI2Y2MtMTRkNjQ0YzU3ZjliOnQ0N2xxLXRaUVVhXzN6YXRUcG1CTVE=", authorization) +17:00:47.927 [XNIO-1 task-4] 1u0ufdt7RJue2TOZuAo4jg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.941 [XNIO-1 task-4] 8pfB5IdgS3eyaNCm7IWgjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.941 [XNIO-1 task-4] 8pfB5IdgS3eyaNCm7IWgjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.942 [XNIO-1 task-4] 8pfB5IdgS3eyaNCm7IWgjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.942 [XNIO-1 task-4] 8pfB5IdgS3eyaNCm7IWgjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:47.943 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1828f5df-246e-4856-a417-13528ad81f94 +17:00:47.951 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +17:00:47.955 [XNIO-1 task-4] KeGYga1jQGW7bOLf9Gax4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.955 [XNIO-1 task-4] KeGYga1jQGW7bOLf9Gax4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.955 [XNIO-1 task-4] KeGYga1jQGW7bOLf9Gax4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.956 [XNIO-1 task-4] KeGYga1jQGW7bOLf9Gax4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmViY2Q2NWQtYTI5ZS00MTdhLTg0YWQtOTc2YWU3NDIxZWU5OldOMjhzZzZYUWlHdnl1MGphNHdBT2c=", "Basic NmViY2Q2NWQtYTI5ZS00MTdhLTg0YWQtOTc2YWU3NDIxZWU5OldOMjhzZzZYUWlHdnl1MGphNHdBT2c=", authorization) +17:00:47.961 [XNIO-1 task-1] Aod5GvRQQsmKSAKEV5ZAyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.961 [XNIO-1 task-1] Aod5GvRQQsmKSAKEV5ZAyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.962 [XNIO-1 task-1] Aod5GvRQQsmKSAKEV5ZAyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.962 [XNIO-1 task-1] Aod5GvRQQsmKSAKEV5ZAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:47.963 [XNIO-1 task-2] kTZdJXHAS46MMB6undRUdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.963 [XNIO-1 task-2] kTZdJXHAS46MMB6undRUdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.963 [XNIO-1 task-2] kTZdJXHAS46MMB6undRUdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.963 [XNIO-1 task-2] kTZdJXHAS46MMB6undRUdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", "Basic YWU2NDkzNjctYTY2Zi00NWQwLWE3OGItMjExYWEwNjkwZDY4OkM4RE1KTm9DU2RlLW44d2dSWDZiYmc=", authorization) +17:00:47.966 [XNIO-1 task-4] KeGYga1jQGW7bOLf9Gax4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:47.966 [XNIO-1 task-4] KeGYga1jQGW7bOLf9Gax4w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.969 [XNIO-1 task-1] Aod5GvRQQsmKSAKEV5ZAyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:47.972 [XNIO-1 task-2] kTZdJXHAS46MMB6undRUdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.981 [XNIO-1 task-1] 2cNNNGmORr-8wlVbnzDvNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.982 [XNIO-1 task-1] 2cNNNGmORr-8wlVbnzDvNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:47.982 [XNIO-1 task-1] 2cNNNGmORr-8wlVbnzDvNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.982 [XNIO-1 task-1] 2cNNNGmORr-8wlVbnzDvNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", "Basic OWFhZDQzMzItYjk5Yi00NDgzLTg3ZDMtOThmZDFkYWYzNzc4OnlDMmFCdlVrVFdxM0dDOWFLVHlWZHc=", authorization) +17:00:47.988 [XNIO-1 task-1] 2cNNNGmORr-8wlVbnzDvNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:47.993 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:873a9e00-78a0-4046-8d12-6e80d09ca8f0 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +17:00:47.999 [XNIO-1 task-1] -D6yqR_LT1KvDeeo0L9MNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:47.999 [XNIO-1 task-1] -D6yqR_LT1KvDeeo0L9MNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.000 [XNIO-1 task-1] -D6yqR_LT1KvDeeo0L9MNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.000 [XNIO-1 task-1] -D6yqR_LT1KvDeeo0L9MNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", authorization) +17:00:48.010 [XNIO-1 task-1] -D6yqR_LT1KvDeeo0L9MNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.021 [XNIO-1 task-1] SLnbnQnSS0GPxp0QszFv0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.022 [XNIO-1 task-1] SLnbnQnSS0GPxp0QszFv0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.022 [XNIO-1 task-1] SLnbnQnSS0GPxp0QszFv0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.022 [XNIO-1 task-1] SLnbnQnSS0GPxp0QszFv0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", authorization) +17:00:48.027 [XNIO-1 task-1] SLnbnQnSS0GPxp0QszFv0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.034 [XNIO-1 task-1] 9lrFCC5lQz6KuPZ6Mp0kWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.034 [XNIO-1 task-1] 9lrFCC5lQz6KuPZ6Mp0kWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.034 [XNIO-1 task-1] 9lrFCC5lQz6KuPZ6Mp0kWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.035 [XNIO-1 task-1] 9lrFCC5lQz6KuPZ6Mp0kWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", authorization) +17:00:48.036 [XNIO-1 task-2] XIY8bCvcRjih1PIKtBR1cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.037 [XNIO-1 task-2] XIY8bCvcRjih1PIKtBR1cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.037 [XNIO-1 task-2] XIY8bCvcRjih1PIKtBR1cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.037 [XNIO-1 task-2] XIY8bCvcRjih1PIKtBR1cA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmViY2Q2NWQtYTI5ZS00MTdhLTg0YWQtOTc2YWU3NDIxZWU5OldOMjhzZzZYUWlHdnl1MGphNHdBT2c=", "Basic NmViY2Q2NWQtYTI5ZS00MTdhLTg0YWQtOTc2YWU3NDIxZWU5OldOMjhzZzZYUWlHdnl1MGphNHdBT2c=", authorization) +17:00:48.040 [XNIO-1 task-1] 9lrFCC5lQz6KuPZ6Mp0kWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.045 [XNIO-1 task-2] XIY8bCvcRjih1PIKtBR1cA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +17:00:48.046 [XNIO-1 task-2] XIY8bCvcRjih1PIKtBR1cA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:48.048 [XNIO-1 task-1] Tq2fqnMzRrO_q1i3AVpbqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.048 [XNIO-1 task-1] Tq2fqnMzRrO_q1i3AVpbqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.048 [XNIO-1 task-1] Tq2fqnMzRrO_q1i3AVpbqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.049 [XNIO-1 task-1] Tq2fqnMzRrO_q1i3AVpbqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:48.054 [XNIO-1 task-1] Tq2fqnMzRrO_q1i3AVpbqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:48.061 [XNIO-1 task-1] _z2ciiPFTWGIoBDMv9W3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.061 [XNIO-1 task-1] _z2ciiPFTWGIoBDMv9W3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.061 [XNIO-1 task-1] _z2ciiPFTWGIoBDMv9W3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.062 [XNIO-1 task-1] _z2ciiPFTWGIoBDMv9W3MA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:48.064 [XNIO-1 task-2] DLVpuSS5QviawQOXBE4-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.064 [XNIO-1 task-2] DLVpuSS5QviawQOXBE4-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.064 [XNIO-1 task-2] DLVpuSS5QviawQOXBE4-4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.065 [XNIO-1 task-2] DLVpuSS5QviawQOXBE4-4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bd32a221-ffba-4178-93ba-38e07e4c2cbd scope = null +17:00:48.066 [XNIO-1 task-4] AFkt1oSMTb-h-z4pusXHVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.066 [XNIO-1 task-4] AFkt1oSMTb-h-z4pusXHVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.066 [XNIO-1 task-4] AFkt1oSMTb-h-z4pusXHVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.067 [XNIO-1 task-4] AFkt1oSMTb-h-z4pusXHVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = knTfcvMyTweMFka36LohuA redirectUri = http://localhost:8080/authorization +17:00:48.067 [XNIO-1 task-1] _z2ciiPFTWGIoBDMv9W3MA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:48.072 [XNIO-1 task-1] sz40PjBvRUWe0ljjOSRctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.073 [XNIO-1 task-1] sz40PjBvRUWe0ljjOSRctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.073 [XNIO-1 task-1] sz40PjBvRUWe0ljjOSRctw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.073 [XNIO-1 task-1] sz40PjBvRUWe0ljjOSRctw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:48.076 [XNIO-1 task-4] AFkt1oSMTb-h-z4pusXHVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.078 [XNIO-1 task-2] DLVpuSS5QviawQOXBE4-4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.085 [XNIO-1 task-1] sz40PjBvRUWe0ljjOSRctw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.095 [XNIO-1 task-4] -RIjBdXJTs2OOVqZWZS9DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.095 [XNIO-1 task-4] -RIjBdXJTs2OOVqZWZS9DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.095 [XNIO-1 task-4] -RIjBdXJTs2OOVqZWZS9DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.095 [XNIO-1 task-4] -RIjBdXJTs2OOVqZWZS9DA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", authorization) +17:00:48.103 [XNIO-1 task-4] -RIjBdXJTs2OOVqZWZS9DA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.112 [XNIO-1 task-4] GV2DMPIuSO2C9Hd2bvHd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.112 [XNIO-1 task-4] GV2DMPIuSO2C9Hd2bvHd6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.113 [XNIO-1 task-4] GV2DMPIuSO2C9Hd2bvHd6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.113 [XNIO-1 task-4] GV2DMPIuSO2C9Hd2bvHd6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", "Basic ZjdmN2VhN2UtMzdiNS00ZDRkLTlmZTYtZDVjZTJlZDk1ODlhOnBCY0c2MmNNVGJTUUJ5d0JkNExORnc=", authorization) +17:00:48.121 [XNIO-1 task-4] GV2DMPIuSO2C9Hd2bvHd6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +17:00:48.131 [XNIO-1 task-4] Ay4kN4m9Ti22ZGdVC4fjaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.132 [XNIO-1 task-4] Ay4kN4m9Ti22ZGdVC4fjaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.132 [XNIO-1 task-4] Ay4kN4m9Ti22ZGdVC4fjaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.132 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d17810e6-693e-4413-b6bf-54f87bea3476 +17:00:48.132 [XNIO-1 task-4] Ay4kN4m9Ti22ZGdVC4fjaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +17:00:48.139 [XNIO-1 task-4] Ay4kN4m9Ti22ZGdVC4fjaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:48.147 [XNIO-1 task-4] eErXiZZPQRaZDxvfVuwMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.147 [XNIO-1 task-4] eErXiZZPQRaZDxvfVuwMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +17:00:48.148 [XNIO-1 task-4] eErXiZZPQRaZDxvfVuwMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +17:00:48.148 [XNIO-1 task-4] eErXiZZPQRaZDxvfVuwMcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmViY2Q2NWQtYTI5ZS00MTdhLTg0YWQtOTc2YWU3NDIxZWU5OldOMjhzZzZYUWlHdnl1MGphNHdBT2c=", "Basic NmViY2Q2NWQtYTI5ZS00MTdhLTg0YWQtOTc2YWU3NDIxZWU5OldOMjhzZzZYUWlHdnl1MGphNHdBT2c=", authorization) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +17:00:48.154 [XNIO-1 task-2] LWJX4RbzSLWosfq_RSb9ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +17:00:48.160 [XNIO-1 task-2] LWJX4RbzSLWosfq_RSb9ew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +17:00:48.160 [XNIO-1 task-1] eEGmOIXdTCyZIZ49DpzK8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +17:00:48.160 [XNIO-1 task-1] eEGmOIXdTCyZIZ49DpzK8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +17:00:48.160 [XNIO-1 task-1] eEGmOIXdTCyZIZ49DpzK8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + +17:00:48.161 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) diff --git a/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-user-1.log b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..862a5e7 --- /dev/null +++ b/log_data/LO2/Labeled/correct_2/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1413 @@ +17:00:39.530 [XNIO-1 task-1] 3hlNntToQtOm73AOXr4kRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1d79fe08-ee9f-4141-b856-5c00f4cf7319","newPassword":"1df58163-41bc-4d70-893a-29d3b5c59b62","newPasswordConfirm":"1df58163-41bc-4d70-893a-29d3b5c59b62"}, {"password":"1d79fe08-ee9f-4141-b856-5c00f4cf7319","newPassword":"1df58163-41bc-4d70-893a-29d3b5c59b62","newPasswordConfirm":"1df58163-41bc-4d70-893a-29d3b5c59b62"}, requestBody) +17:00:39.531 [XNIO-1 task-1] 3hlNntToQtOm73AOXr4kRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1d79fe08-ee9f-4141-b856-5c00f4cf7319","newPassword":"1df58163-41bc-4d70-893a-29d3b5c59b62","newPasswordConfirm":"1df58163-41bc-4d70-893a-29d3b5c59b62"}, {"password":"1d79fe08-ee9f-4141-b856-5c00f4cf7319","newPassword":"1df58163-41bc-4d70-893a-29d3b5c59b62","newPasswordConfirm":"1df58163-41bc-4d70-893a-29d3b5c59b62"}, requestBody) +17:00:39.531 [XNIO-1 task-1] 3hlNntToQtOm73AOXr4kRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1df58163-41bc-4d70-893a-29d3b5c59b62", {"password":"1d79fe08-ee9f-4141-b856-5c00f4cf7319","newPassword":"1df58163-41bc-4d70-893a-29d3b5c59b62","newPasswordConfirm":"1df58163-41bc-4d70-893a-29d3b5c59b62"}, requestBody.newPasswordConfirm) +17:00:39.531 [XNIO-1 task-1] 3hlNntToQtOm73AOXr4kRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1d79fe08-ee9f-4141-b856-5c00f4cf7319", {"password":"1d79fe08-ee9f-4141-b856-5c00f4cf7319","newPassword":"1df58163-41bc-4d70-893a-29d3b5c59b62","newPasswordConfirm":"1df58163-41bc-4d70-893a-29d3b5c59b62"}, requestBody.password) +17:00:39.532 [XNIO-1 task-1] 3hlNntToQtOm73AOXr4kRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1df58163-41bc-4d70-893a-29d3b5c59b62", {"password":"1d79fe08-ee9f-4141-b856-5c00f4cf7319","newPassword":"1df58163-41bc-4d70-893a-29d3b5c59b62","newPasswordConfirm":"1df58163-41bc-4d70-893a-29d3b5c59b62"}, requestBody.newPassword) +17:00:39.559 [XNIO-1 task-1] b-gkOr7vSEueG4prmJhIsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/91cbd1ea +17:00:39.559 [XNIO-1 task-1] b-gkOr7vSEueG4prmJhIsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.559 [XNIO-1 task-1] b-gkOr7vSEueG4prmJhIsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:39.559 [XNIO-1 task-1] b-gkOr7vSEueG4prmJhIsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/91cbd1ea +17:00:39.564 [XNIO-1 task-1] Lz4r8SW2RsSP5JcUYBKWKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/91cbd1ea, base path is set to: null +17:00:39.564 [XNIO-1 task-1] Lz4r8SW2RsSP5JcUYBKWKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:39.564 [XNIO-1 task-1] Lz4r8SW2RsSP5JcUYBKWKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:39.565 [XNIO-1 task-1] Lz4r8SW2RsSP5JcUYBKWKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/91cbd1ea, base path is set to: null +17:00:39.567 [XNIO-1 task-1] Lz4r8SW2RsSP5JcUYBKWKw DEBUG com.networknt.schema.TypeValidator debug - validate( "91cbd1ea", "91cbd1ea", userId) +17:00:39.607 [XNIO-1 task-2] EG3G3JQaRz2w7j5y3UpeKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.607 [XNIO-1 task-2] EG3G3JQaRz2w7j5y3UpeKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.607 [XNIO-1 task-2] EG3G3JQaRz2w7j5y3UpeKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.608 [XNIO-1 task-2] EG3G3JQaRz2w7j5y3UpeKA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:39.672 [XNIO-1 task-2] 8Nt9Eth7TdSeo2TV0SVvWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.672 [XNIO-1 task-2] 8Nt9Eth7TdSeo2TV0SVvWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:39.673 [XNIO-1 task-2] 8Nt9Eth7TdSeo2TV0SVvWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.774 [XNIO-1 task-2] SMSnPV_-Tmezwk1W2MrZQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.774 [XNIO-1 task-2] SMSnPV_-Tmezwk1W2MrZQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:39.774 [XNIO-1 task-2] SMSnPV_-Tmezwk1W2MrZQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.775 [XNIO-1 task-2] SMSnPV_-Tmezwk1W2MrZQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.826 [XNIO-1 task-2] 8wdH8GhVRBaYEYmLn1p_Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58503681, base path is set to: null +17:00:39.826 [XNIO-1 task-2] 8wdH8GhVRBaYEYmLn1p_Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:39.826 [XNIO-1 task-2] 8wdH8GhVRBaYEYmLn1p_Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:39.826 [XNIO-1 task-2] 8wdH8GhVRBaYEYmLn1p_Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/58503681, base path is set to: null +17:00:39.827 [XNIO-1 task-2] 8wdH8GhVRBaYEYmLn1p_Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "58503681", "58503681", userId) +17:00:39.863 [XNIO-1 task-2] bT40yl92QaSyDywaaScqzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.863 [XNIO-1 task-2] bT40yl92QaSyDywaaScqzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.864 [XNIO-1 task-2] bT40yl92QaSyDywaaScqzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.864 [XNIO-1 task-2] bT40yl92QaSyDywaaScqzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:39.880 [XNIO-1 task-2] BbegZCzaTFCbM9A83FlR5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.880 [XNIO-1 task-2] BbegZCzaTFCbM9A83FlR5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.880 [XNIO-1 task-2] BbegZCzaTFCbM9A83FlR5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.958 [XNIO-1 task-2] tKbQLRUvT7qLPr1RKOiH4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a543086 +17:00:39.958 [XNIO-1 task-2] tKbQLRUvT7qLPr1RKOiH4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:39.958 [XNIO-1 task-2] tKbQLRUvT7qLPr1RKOiH4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:39.958 [XNIO-1 task-2] tKbQLRUvT7qLPr1RKOiH4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2a543086 +17:00:39.967 [XNIO-1 task-2] k_m1Bk1iTzGUrlloYEpclQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.968 [XNIO-1 task-2] k_m1Bk1iTzGUrlloYEpclQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:39.968 [XNIO-1 task-2] k_m1Bk1iTzGUrlloYEpclQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.969 [XNIO-1 task-2] k_m1Bk1iTzGUrlloYEpclQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:39.976 [XNIO-1 task-2] ytCqVHcBSjqD-ewX7XTKNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.976 [XNIO-1 task-2] ytCqVHcBSjqD-ewX7XTKNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:39.977 [XNIO-1 task-2] ytCqVHcBSjqD-ewX7XTKNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:39.977 [XNIO-1 task-2] ytCqVHcBSjqD-ewX7XTKNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.021 [XNIO-1 task-2] BnyhTGjhQdyPwqTuGm2kLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.022 [XNIO-1 task-2] BnyhTGjhQdyPwqTuGm2kLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.022 [XNIO-1 task-2] BnyhTGjhQdyPwqTuGm2kLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.047 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f18f948c +17:00:40.049 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f18f948c +17:00:40.061 [XNIO-1 task-2] 5c1MF8N5TBCZniZuYDaCmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.061 [XNIO-1 task-2] 5c1MF8N5TBCZniZuYDaCmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.061 [XNIO-1 task-2] 5c1MF8N5TBCZniZuYDaCmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.062 [XNIO-1 task-2] 5c1MF8N5TBCZniZuYDaCmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.098 [XNIO-1 task-2] kmdJE96RSBGhrmYjzjx6_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f18f948c +17:00:40.099 [XNIO-1 task-2] kmdJE96RSBGhrmYjzjx6_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.099 [XNIO-1 task-2] kmdJE96RSBGhrmYjzjx6_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:40.099 [XNIO-1 task-2] kmdJE96RSBGhrmYjzjx6_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f18f948c +17:00:40.100 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f18f948c +17:00:40.108 [XNIO-1 task-2] k3pclo67SLK_4LAvU3gmcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.108 [XNIO-1 task-2] k3pclo67SLK_4LAvU3gmcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.109 [XNIO-1 task-2] k3pclo67SLK_4LAvU3gmcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.246 [XNIO-1 task-2] dDqCOrXSTTWiuRqn3lO11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f0c69d83 +17:00:40.246 [XNIO-1 task-2] dDqCOrXSTTWiuRqn3lO11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.246 [XNIO-1 task-2] dDqCOrXSTTWiuRqn3lO11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:40.246 [XNIO-1 task-2] dDqCOrXSTTWiuRqn3lO11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f0c69d83 +17:00:40.259 [XNIO-1 task-2] FpUqL2vCRSuEK1GWcnci4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.259 [XNIO-1 task-2] FpUqL2vCRSuEK1GWcnci4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.260 [XNIO-1 task-2] FpUqL2vCRSuEK1GWcnci4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.380 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bf30325b, base path is set to: null +17:00:40.380 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.380 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:40.380 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:40.381 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bf30325b, base path is set to: null +17:00:40.381 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG com.networknt.schema.TypeValidator debug - validate( "bf30325b", "bf30325b", userId) +17:00:40.382 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"01c462c2-57aa-4d40-8f8b-88a7cfe8aa16","newPassword":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPasswordConfirm":"74f111d0-71a7-4126-a4f0-b58d4a54914a"}, {"password":"01c462c2-57aa-4d40-8f8b-88a7cfe8aa16","newPassword":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPasswordConfirm":"74f111d0-71a7-4126-a4f0-b58d4a54914a"}, requestBody) +17:00:40.382 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG com.networknt.schema.TypeValidator debug - validate( "74f111d0-71a7-4126-a4f0-b58d4a54914a", {"password":"01c462c2-57aa-4d40-8f8b-88a7cfe8aa16","newPassword":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPasswordConfirm":"74f111d0-71a7-4126-a4f0-b58d4a54914a"}, requestBody.newPasswordConfirm) +17:00:40.382 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG com.networknt.schema.TypeValidator debug - validate( "01c462c2-57aa-4d40-8f8b-88a7cfe8aa16", {"password":"01c462c2-57aa-4d40-8f8b-88a7cfe8aa16","newPassword":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPasswordConfirm":"74f111d0-71a7-4126-a4f0-b58d4a54914a"}, requestBody.password) +17:00:40.382 [XNIO-1 task-2] Jtwz7EfeQEa4A59E23LUew DEBUG com.networknt.schema.TypeValidator debug - validate( "74f111d0-71a7-4126-a4f0-b58d4a54914a", {"password":"01c462c2-57aa-4d40-8f8b-88a7cfe8aa16","newPassword":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPasswordConfirm":"74f111d0-71a7-4126-a4f0-b58d4a54914a"}, requestBody.newPassword) +17:00:40.405 [XNIO-1 task-2] -y2f-WhBQ1WSuG40_DzvuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f0c69d83, base path is set to: null +17:00:40.405 [XNIO-1 task-2] -y2f-WhBQ1WSuG40_DzvuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.405 [XNIO-1 task-2] -y2f-WhBQ1WSuG40_DzvuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:40.405 [XNIO-1 task-2] -y2f-WhBQ1WSuG40_DzvuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f0c69d83, base path is set to: null +17:00:40.406 [XNIO-1 task-2] -y2f-WhBQ1WSuG40_DzvuA DEBUG com.networknt.schema.TypeValidator debug - validate( "f0c69d83", "f0c69d83", userId) +17:00:40.437 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ab783464 +17:00:40.499 [XNIO-1 task-2] CfuTcjNvRxK0CqHOKRPTLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.499 [XNIO-1 task-2] CfuTcjNvRxK0CqHOKRPTLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.499 [XNIO-1 task-2] CfuTcjNvRxK0CqHOKRPTLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.500 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ab783464 +17:00:40.548 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/35fbae9c, base path is set to: null +17:00:40.548 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.548 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:40.549 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:40.550 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/35fbae9c, base path is set to: null +17:00:40.551 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG com.networknt.schema.TypeValidator debug - validate( "35fbae9c", "35fbae9c", userId) +17:00:40.551 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6b2658cb-c3af-4177-a657-e6b3cbe9d059","newPassword":"c59056ec-2cec-46b2-b401-587ab00278b7","newPasswordConfirm":"c59056ec-2cec-46b2-b401-587ab00278b7"}, {"password":"6b2658cb-c3af-4177-a657-e6b3cbe9d059","newPassword":"c59056ec-2cec-46b2-b401-587ab00278b7","newPasswordConfirm":"c59056ec-2cec-46b2-b401-587ab00278b7"}, requestBody) +17:00:40.552 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG com.networknt.schema.TypeValidator debug - validate( "c59056ec-2cec-46b2-b401-587ab00278b7", {"password":"6b2658cb-c3af-4177-a657-e6b3cbe9d059","newPassword":"c59056ec-2cec-46b2-b401-587ab00278b7","newPasswordConfirm":"c59056ec-2cec-46b2-b401-587ab00278b7"}, requestBody.newPasswordConfirm) +17:00:40.552 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b2658cb-c3af-4177-a657-e6b3cbe9d059", {"password":"6b2658cb-c3af-4177-a657-e6b3cbe9d059","newPassword":"c59056ec-2cec-46b2-b401-587ab00278b7","newPasswordConfirm":"c59056ec-2cec-46b2-b401-587ab00278b7"}, requestBody.password) +17:00:40.552 [XNIO-1 task-2] s7HWB0zpQ9yq9AOyK_uGHA DEBUG com.networknt.schema.TypeValidator debug - validate( "c59056ec-2cec-46b2-b401-587ab00278b7", {"password":"6b2658cb-c3af-4177-a657-e6b3cbe9d059","newPassword":"c59056ec-2cec-46b2-b401-587ab00278b7","newPasswordConfirm":"c59056ec-2cec-46b2-b401-587ab00278b7"}, requestBody.newPassword) +17:00:40.589 [XNIO-1 task-2] UQpEc8PETgmSk1WvQkRKVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/35fbae9c, base path is set to: null +17:00:40.590 [XNIO-1 task-2] UQpEc8PETgmSk1WvQkRKVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.590 [XNIO-1 task-2] UQpEc8PETgmSk1WvQkRKVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:40.590 [XNIO-1 task-2] UQpEc8PETgmSk1WvQkRKVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/35fbae9c, base path is set to: null +17:00:40.591 [XNIO-1 task-2] UQpEc8PETgmSk1WvQkRKVw DEBUG com.networknt.schema.TypeValidator debug - validate( "35fbae9c", "35fbae9c", userId) +17:00:40.596 [XNIO-1 task-2] 3Gp2OMl_QvWq7BtBWPHCCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf30325b +17:00:40.596 [XNIO-1 task-2] 3Gp2OMl_QvWq7BtBWPHCCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.597 [XNIO-1 task-2] 3Gp2OMl_QvWq7BtBWPHCCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:40.598 [XNIO-1 task-2] 3Gp2OMl_QvWq7BtBWPHCCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf30325b +17:00:40.616 [XNIO-1 task-2] G4e_MV9ZSwKAv3S5X6bOIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.616 [XNIO-1 task-2] G4e_MV9ZSwKAv3S5X6bOIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.617 [XNIO-1 task-2] G4e_MV9ZSwKAv3S5X6bOIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.667 [XNIO-1 task-2] 11lA0WM9QoeZzen376tfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.668 [XNIO-1 task-2] 11lA0WM9QoeZzen376tfeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.668 [XNIO-1 task-2] 11lA0WM9QoeZzen376tfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.669 [XNIO-1 task-2] 11lA0WM9QoeZzen376tfeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.684 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/35fbae9c, base path is set to: null +17:00:40.688 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.688 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:40.688 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:40.689 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/35fbae9c, base path is set to: null +17:00:40.689 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG com.networknt.schema.TypeValidator debug - validate( "35fbae9c", "35fbae9c", userId) +17:00:40.690 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c59056ec-2cec-46b2-b401-587ab00278b7","newPassword":"adcd0927-9288-4e28-b2f2-9f1cf816b58a","newPasswordConfirm":"adcd0927-9288-4e28-b2f2-9f1cf816b58a"}, {"password":"c59056ec-2cec-46b2-b401-587ab00278b7","newPassword":"adcd0927-9288-4e28-b2f2-9f1cf816b58a","newPasswordConfirm":"adcd0927-9288-4e28-b2f2-9f1cf816b58a"}, requestBody) +17:00:40.690 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG com.networknt.schema.TypeValidator debug - validate( "adcd0927-9288-4e28-b2f2-9f1cf816b58a", {"password":"c59056ec-2cec-46b2-b401-587ab00278b7","newPassword":"adcd0927-9288-4e28-b2f2-9f1cf816b58a","newPasswordConfirm":"adcd0927-9288-4e28-b2f2-9f1cf816b58a"}, requestBody.newPasswordConfirm) +17:00:40.691 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG com.networknt.schema.TypeValidator debug - validate( "c59056ec-2cec-46b2-b401-587ab00278b7", {"password":"c59056ec-2cec-46b2-b401-587ab00278b7","newPassword":"adcd0927-9288-4e28-b2f2-9f1cf816b58a","newPasswordConfirm":"adcd0927-9288-4e28-b2f2-9f1cf816b58a"}, requestBody.password) +17:00:40.691 [XNIO-1 task-2] Jxy_TOJ9TZ6Yn8V_lTAp3A DEBUG com.networknt.schema.TypeValidator debug - validate( "adcd0927-9288-4e28-b2f2-9f1cf816b58a", {"password":"c59056ec-2cec-46b2-b401-587ab00278b7","newPassword":"adcd0927-9288-4e28-b2f2-9f1cf816b58a","newPasswordConfirm":"adcd0927-9288-4e28-b2f2-9f1cf816b58a"}, requestBody.newPassword) +17:00:40.721 [XNIO-1 task-2] mosNvF-OQe-abNukNasa6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.721 [XNIO-1 task-2] mosNvF-OQe-abNukNasa6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.722 [XNIO-1 task-2] mosNvF-OQe-abNukNasa6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.781 [XNIO-1 task-2] T69rUE46SfarNRNIKqePmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.781 [XNIO-1 task-2] T69rUE46SfarNRNIKqePmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.782 [XNIO-1 task-2] T69rUE46SfarNRNIKqePmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.815 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bf30325b, base path is set to: null +17:00:40.816 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.816 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:40.816 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:40.816 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bf30325b, base path is set to: null +17:00:40.817 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG com.networknt.schema.TypeValidator debug - validate( "bf30325b", "bf30325b", userId) +17:00:40.817 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPassword":"da644ca8-924d-4054-a459-3509e62fed3c","newPasswordConfirm":"da644ca8-924d-4054-a459-3509e62fed3c"}, {"password":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPassword":"da644ca8-924d-4054-a459-3509e62fed3c","newPasswordConfirm":"da644ca8-924d-4054-a459-3509e62fed3c"}, requestBody) +17:00:40.817 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG com.networknt.schema.TypeValidator debug - validate( "da644ca8-924d-4054-a459-3509e62fed3c", {"password":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPassword":"da644ca8-924d-4054-a459-3509e62fed3c","newPasswordConfirm":"da644ca8-924d-4054-a459-3509e62fed3c"}, requestBody.newPasswordConfirm) +17:00:40.818 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG com.networknt.schema.TypeValidator debug - validate( "74f111d0-71a7-4126-a4f0-b58d4a54914a", {"password":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPassword":"da644ca8-924d-4054-a459-3509e62fed3c","newPasswordConfirm":"da644ca8-924d-4054-a459-3509e62fed3c"}, requestBody.password) +17:00:40.818 [XNIO-1 task-2] pr2TVXyITgijGC0pEIQE3g DEBUG com.networknt.schema.TypeValidator debug - validate( "da644ca8-924d-4054-a459-3509e62fed3c", {"password":"74f111d0-71a7-4126-a4f0-b58d4a54914a","newPassword":"da644ca8-924d-4054-a459-3509e62fed3c","newPasswordConfirm":"da644ca8-924d-4054-a459-3509e62fed3c"}, requestBody.newPassword) +17:00:40.870 [XNIO-1 task-2] yVHX8XtXTjSDbkXnACO7lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.871 [XNIO-1 task-2] yVHX8XtXTjSDbkXnACO7lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.871 [XNIO-1 task-2] yVHX8XtXTjSDbkXnACO7lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:40.872 [XNIO-1 task-2] yVHX8XtXTjSDbkXnACO7lg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:40.880 [XNIO-1 task-2] o76fe8cvRTOf1WHi4PPN5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bf30325b, base path is set to: null +17:00:40.881 [XNIO-1 task-2] o76fe8cvRTOf1WHi4PPN5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:40.881 [XNIO-1 task-2] o76fe8cvRTOf1WHi4PPN5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:40.881 [XNIO-1 task-2] o76fe8cvRTOf1WHi4PPN5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bf30325b, base path is set to: null +17:00:40.882 [XNIO-1 task-2] o76fe8cvRTOf1WHi4PPN5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bf30325b", "bf30325b", userId) +17:00:40.890 [XNIO-1 task-2] 8dBW4e6PRyG6VQKxj-mnHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.890 [XNIO-1 task-2] 8dBW4e6PRyG6VQKxj-mnHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.890 [XNIO-1 task-2] 8dBW4e6PRyG6VQKxj-mnHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.891 [XNIO-1 task-2] 8dBW4e6PRyG6VQKxj-mnHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:40.904 [XNIO-1 task-2] p9MjoAdNRs6kvfk9rF2nOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.904 [XNIO-1 task-2] p9MjoAdNRs6kvfk9rF2nOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.904 [XNIO-1 task-2] p9MjoAdNRs6kvfk9rF2nOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.984 [XNIO-1 task-2] -sIXuAK3RJeRQBysAEPtkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.984 [XNIO-1 task-2] -sIXuAK3RJeRQBysAEPtkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.984 [XNIO-1 task-2] -sIXuAK3RJeRQBysAEPtkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:40.985 [XNIO-1 task-2] -sIXuAK3RJeRQBysAEPtkw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.001 [XNIO-1 task-2] D9sckM6eRQyx0Q1d507mGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/46fbc3a0 +17:00:41.001 [XNIO-1 task-2] D9sckM6eRQyx0Q1d507mGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.001 [XNIO-1 task-2] D9sckM6eRQyx0Q1d507mGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:41.001 [XNIO-1 task-2] D9sckM6eRQyx0Q1d507mGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/46fbc3a0 +17:00:41.015 [XNIO-1 task-2] OjWlFHW9TBmyymwhpl2Tpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.016 [XNIO-1 task-2] OjWlFHW9TBmyymwhpl2Tpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.016 [XNIO-1 task-2] OjWlFHW9TBmyymwhpl2Tpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.016 [XNIO-1 task-2] OjWlFHW9TBmyymwhpl2Tpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.046 [XNIO-1 task-2] 6ks5kO_mS86pb7TCKoTA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/35fbae9c, base path is set to: null +17:00:41.046 [XNIO-1 task-2] 6ks5kO_mS86pb7TCKoTA4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.046 [XNIO-1 task-2] 6ks5kO_mS86pb7TCKoTA4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.046 [XNIO-1 task-2] 6ks5kO_mS86pb7TCKoTA4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/35fbae9c, base path is set to: null +17:00:41.047 [XNIO-1 task-2] 6ks5kO_mS86pb7TCKoTA4A DEBUG com.networknt.schema.TypeValidator debug - validate( "35fbae9c", "35fbae9c", userId) +17:00:41.053 [XNIO-1 task-2] HYEUkw4QQGqD-VRjqmJ5sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.053 [XNIO-1 task-2] HYEUkw4QQGqD-VRjqmJ5sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.053 [XNIO-1 task-2] HYEUkw4QQGqD-VRjqmJ5sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.054 [XNIO-1 task-2] HYEUkw4QQGqD-VRjqmJ5sQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.063 [XNIO-1 task-2] C47dbD22Rriecv_JjJOTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.063 [XNIO-1 task-2] C47dbD22Rriecv_JjJOTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.063 [XNIO-1 task-2] C47dbD22Rriecv_JjJOTeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.103 [XNIO-1 task-2] DIc7st91T92BHkyXkJ5U7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf30325b +17:00:41.103 [XNIO-1 task-2] DIc7st91T92BHkyXkJ5U7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.103 [XNIO-1 task-2] DIc7st91T92BHkyXkJ5U7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:41.103 [XNIO-1 task-2] DIc7st91T92BHkyXkJ5U7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bf30325b +17:00:41.117 [XNIO-1 task-2] gblOYPA2SbGjrBRJWW2MaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ba0bce4, base path is set to: null +17:00:41.117 [XNIO-1 task-2] gblOYPA2SbGjrBRJWW2MaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.117 [XNIO-1 task-2] gblOYPA2SbGjrBRJWW2MaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.117 [XNIO-1 task-2] gblOYPA2SbGjrBRJWW2MaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ba0bce4, base path is set to: null +17:00:41.118 [XNIO-1 task-2] gblOYPA2SbGjrBRJWW2MaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4ba0bce4", "4ba0bce4", userId) +17:00:41.159 [XNIO-1 task-2] 04t8Z8rbQwmuPgmKCnKv6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/35fbae9c +17:00:41.159 [XNIO-1 task-2] 04t8Z8rbQwmuPgmKCnKv6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.159 [XNIO-1 task-2] 04t8Z8rbQwmuPgmKCnKv6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:41.160 [XNIO-1 task-2] 04t8Z8rbQwmuPgmKCnKv6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/35fbae9c +17:00:41.176 [XNIO-1 task-2] TzgPmdwCRHag-segZCK02g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.176 [XNIO-1 task-2] TzgPmdwCRHag-segZCK02g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.176 [XNIO-1 task-2] TzgPmdwCRHag-segZCK02g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.177 [XNIO-1 task-2] TzgPmdwCRHag-segZCK02g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.194 [XNIO-1 task-2] 7xopbhYaRT65-EBkw2y_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.194 [XNIO-1 task-2] 7xopbhYaRT65-EBkw2y_AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.197 [XNIO-1 task-2] 7xopbhYaRT65-EBkw2y_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.239 [XNIO-1 task-2] ugoZ6O7uTgeZy9X5SRrGPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.239 [XNIO-1 task-2] ugoZ6O7uTgeZy9X5SRrGPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.240 [XNIO-1 task-2] ugoZ6O7uTgeZy9X5SRrGPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.366 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7fd1aa27, base path is set to: null +17:00:41.367 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.367 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.367 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:41.368 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7fd1aa27, base path is set to: null +17:00:41.368 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG com.networknt.schema.TypeValidator debug - validate( "7fd1aa27", "7fd1aa27", userId) +17:00:41.369 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ff32c504-705c-47fb-863d-e99c1ddcf8e8","newPassword":"004ba19b-5082-489a-a5ef-0836bb69524e","newPasswordConfirm":"004ba19b-5082-489a-a5ef-0836bb69524e"}, {"password":"ff32c504-705c-47fb-863d-e99c1ddcf8e8","newPassword":"004ba19b-5082-489a-a5ef-0836bb69524e","newPasswordConfirm":"004ba19b-5082-489a-a5ef-0836bb69524e"}, requestBody) +17:00:41.369 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG com.networknt.schema.TypeValidator debug - validate( "004ba19b-5082-489a-a5ef-0836bb69524e", {"password":"ff32c504-705c-47fb-863d-e99c1ddcf8e8","newPassword":"004ba19b-5082-489a-a5ef-0836bb69524e","newPasswordConfirm":"004ba19b-5082-489a-a5ef-0836bb69524e"}, requestBody.newPasswordConfirm) +17:00:41.369 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff32c504-705c-47fb-863d-e99c1ddcf8e8", {"password":"ff32c504-705c-47fb-863d-e99c1ddcf8e8","newPassword":"004ba19b-5082-489a-a5ef-0836bb69524e","newPasswordConfirm":"004ba19b-5082-489a-a5ef-0836bb69524e"}, requestBody.password) +17:00:41.369 [XNIO-1 task-2] Tdl_IARZQbO7FMLXVSL6hw DEBUG com.networknt.schema.TypeValidator debug - validate( "004ba19b-5082-489a-a5ef-0836bb69524e", {"password":"ff32c504-705c-47fb-863d-e99c1ddcf8e8","newPassword":"004ba19b-5082-489a-a5ef-0836bb69524e","newPasswordConfirm":"004ba19b-5082-489a-a5ef-0836bb69524e"}, requestBody.newPassword) +17:00:41.409 [XNIO-1 task-2] udK2k4YORsy8nXr1Et0UmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c19f8169, base path is set to: null +17:00:41.409 [XNIO-1 task-2] udK2k4YORsy8nXr1Et0UmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.409 [XNIO-1 task-2] udK2k4YORsy8nXr1Et0UmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.410 [XNIO-1 task-2] udK2k4YORsy8nXr1Et0UmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c19f8169, base path is set to: null +17:00:41.410 [XNIO-1 task-2] udK2k4YORsy8nXr1Et0UmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c19f8169", "c19f8169", userId) +17:00:41.424 [XNIO-1 task-2] RaLpB3ngRF-nVT4q906JYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.424 [XNIO-1 task-2] RaLpB3ngRF-nVT4q906JYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.425 [XNIO-1 task-2] RaLpB3ngRF-nVT4q906JYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.425 [XNIO-1 task-2] RaLpB3ngRF-nVT4q906JYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.450 [XNIO-1 task-2] l21WlgQkRsai9qJP9lShZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7fd1aa27 +17:00:41.450 [XNIO-1 task-2] l21WlgQkRsai9qJP9lShZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.450 [XNIO-1 task-2] l21WlgQkRsai9qJP9lShZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:41.450 [XNIO-1 task-2] l21WlgQkRsai9qJP9lShZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7fd1aa27 +17:00:41.463 [XNIO-1 task-2] s2kf0TiCTDiXGyrSU0MzeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7fd1aa27, base path is set to: null +17:00:41.463 [XNIO-1 task-2] s2kf0TiCTDiXGyrSU0MzeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.465 [XNIO-1 task-2] s2kf0TiCTDiXGyrSU0MzeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.465 [XNIO-1 task-2] s2kf0TiCTDiXGyrSU0MzeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7fd1aa27, base path is set to: null +17:00:41.466 [XNIO-1 task-2] s2kf0TiCTDiXGyrSU0MzeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7fd1aa27", "7fd1aa27", userId) +17:00:41.477 [XNIO-1 task-2] HPJu6P_ZS7W1-E7Br6zTdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.477 [XNIO-1 task-2] HPJu6P_ZS7W1-E7Br6zTdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.477 [XNIO-1 task-2] HPJu6P_ZS7W1-E7Br6zTdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.478 [XNIO-1 task-2] HPJu6P_ZS7W1-E7Br6zTdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.487 [XNIO-1 task-2] wDYWbJPwQPi-j9WNk9Cz0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.488 [XNIO-1 task-2] wDYWbJPwQPi-j9WNk9Cz0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.488 [XNIO-1 task-2] wDYWbJPwQPi-j9WNk9Cz0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.489 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7f5e120b-44ed-4fd4-9aba-7f1d82192cff +17:00:41.526 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7f5e120b-44ed-4fd4-9aba-7f1d82192cff +17:00:41.529 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb764e7f +17:00:41.529 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.529 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:41.529 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:41.530 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb764e7f +17:00:41.531 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"812a570b-dfd1-47e0-ac18-a1f16d20fb1c","newPassword":"05ebfa7a-143a-4089-96c0-cbb17766822a","newPasswordConfirm":"05ebfa7a-143a-4089-96c0-cbb17766822a"}, {"password":"812a570b-dfd1-47e0-ac18-a1f16d20fb1c","newPassword":"05ebfa7a-143a-4089-96c0-cbb17766822a","newPasswordConfirm":"05ebfa7a-143a-4089-96c0-cbb17766822a"}, requestBody) +17:00:41.531 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"812a570b-dfd1-47e0-ac18-a1f16d20fb1c","newPassword":"05ebfa7a-143a-4089-96c0-cbb17766822a","newPasswordConfirm":"05ebfa7a-143a-4089-96c0-cbb17766822a"}, {"password":"812a570b-dfd1-47e0-ac18-a1f16d20fb1c","newPassword":"05ebfa7a-143a-4089-96c0-cbb17766822a","newPasswordConfirm":"05ebfa7a-143a-4089-96c0-cbb17766822a"}, requestBody) +17:00:41.531 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG com.networknt.schema.FormatValidator debug - validate( "05ebfa7a-143a-4089-96c0-cbb17766822a", {"password":"812a570b-dfd1-47e0-ac18-a1f16d20fb1c","newPassword":"05ebfa7a-143a-4089-96c0-cbb17766822a","newPasswordConfirm":"05ebfa7a-143a-4089-96c0-cbb17766822a"}, requestBody.newPasswordConfirm) +17:00:41.532 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG com.networknt.schema.FormatValidator debug - validate( "812a570b-dfd1-47e0-ac18-a1f16d20fb1c", {"password":"812a570b-dfd1-47e0-ac18-a1f16d20fb1c","newPassword":"05ebfa7a-143a-4089-96c0-cbb17766822a","newPasswordConfirm":"05ebfa7a-143a-4089-96c0-cbb17766822a"}, requestBody.password) +17:00:41.532 [XNIO-1 task-2] _z2V2AgBTD-b1QXomq60OQ DEBUG com.networknt.schema.FormatValidator debug - validate( "05ebfa7a-143a-4089-96c0-cbb17766822a", {"password":"812a570b-dfd1-47e0-ac18-a1f16d20fb1c","newPassword":"05ebfa7a-143a-4089-96c0-cbb17766822a","newPasswordConfirm":"05ebfa7a-143a-4089-96c0-cbb17766822a"}, requestBody.newPassword) +17:00:41.545 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a7a9dded-b3bf-45df-b6aa-9b1018ebfe77 +17:00:41.559 [XNIO-1 task-2] liXPevQMQRmMFRQ0PqAwSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb764e7f, base path is set to: null +17:00:41.560 [XNIO-1 task-2] liXPevQMQRmMFRQ0PqAwSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.560 [XNIO-1 task-2] liXPevQMQRmMFRQ0PqAwSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.560 [XNIO-1 task-2] liXPevQMQRmMFRQ0PqAwSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb764e7f, base path is set to: null +17:00:41.560 [XNIO-1 task-2] liXPevQMQRmMFRQ0PqAwSg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb764e7f", "cb764e7f", userId) +17:00:41.567 [XNIO-1 task-2] _FalS-FPSSOaCWHL32_H3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.567 [XNIO-1 task-2] _FalS-FPSSOaCWHL32_H3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.567 [XNIO-1 task-2] _FalS-FPSSOaCWHL32_H3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.608 [XNIO-1 task-2] mnHYPGQ_TZGWMVN6CI5KqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.608 [XNIO-1 task-2] mnHYPGQ_TZGWMVN6CI5KqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.608 [XNIO-1 task-2] mnHYPGQ_TZGWMVN6CI5KqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.624 [XNIO-1 task-2] -nsfHRToRGCnXvdrZW2Uiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.624 [XNIO-1 task-2] -nsfHRToRGCnXvdrZW2Uiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.625 [XNIO-1 task-2] -nsfHRToRGCnXvdrZW2Uiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.661 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:33537ebf-3e3d-4593-8aba-58c13cf635cc +17:00:41.676 [XNIO-1 task-2] L7ECrQKdShezwn04d1Nahg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.676 [XNIO-1 task-2] L7ECrQKdShezwn04d1Nahg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.677 [XNIO-1 task-2] L7ECrQKdShezwn04d1Nahg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.699 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1976a749, base path is set to: null +17:00:41.699 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.699 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.699 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:41.700 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1976a749, base path is set to: null +17:00:41.700 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1976a749", "1976a749", userId) +17:00:41.701 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"09a4fa19-9182-4300-9e75-faf1e08247a4","newPassword":"ff226846-bff6-4b04-b2c8-b4e5c438ccee","newPasswordConfirm":"ff226846-bff6-4b04-b2c8-b4e5c438ccee"}, {"password":"09a4fa19-9182-4300-9e75-faf1e08247a4","newPassword":"ff226846-bff6-4b04-b2c8-b4e5c438ccee","newPasswordConfirm":"ff226846-bff6-4b04-b2c8-b4e5c438ccee"}, requestBody) +17:00:41.701 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG com.networknt.schema.TypeValidator debug - validate( "ff226846-bff6-4b04-b2c8-b4e5c438ccee", {"password":"09a4fa19-9182-4300-9e75-faf1e08247a4","newPassword":"ff226846-bff6-4b04-b2c8-b4e5c438ccee","newPasswordConfirm":"ff226846-bff6-4b04-b2c8-b4e5c438ccee"}, requestBody.newPasswordConfirm) +17:00:41.703 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG com.networknt.schema.TypeValidator debug - validate( "09a4fa19-9182-4300-9e75-faf1e08247a4", {"password":"09a4fa19-9182-4300-9e75-faf1e08247a4","newPassword":"ff226846-bff6-4b04-b2c8-b4e5c438ccee","newPasswordConfirm":"ff226846-bff6-4b04-b2c8-b4e5c438ccee"}, requestBody.password) +17:00:41.703 [XNIO-1 task-2] culB4f-oS86FmzzZdHTFdg DEBUG com.networknt.schema.TypeValidator debug - validate( "ff226846-bff6-4b04-b2c8-b4e5c438ccee", {"password":"09a4fa19-9182-4300-9e75-faf1e08247a4","newPassword":"ff226846-bff6-4b04-b2c8-b4e5c438ccee","newPasswordConfirm":"ff226846-bff6-4b04-b2c8-b4e5c438ccee"}, requestBody.newPassword) +17:00:41.725 [XNIO-1 task-2] 8x_14rk0Q6OyCMmaDxBzoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1976a749, base path is set to: null +17:00:41.725 [XNIO-1 task-2] 8x_14rk0Q6OyCMmaDxBzoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.725 [XNIO-1 task-2] 8x_14rk0Q6OyCMmaDxBzoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.725 [XNIO-1 task-2] 8x_14rk0Q6OyCMmaDxBzoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1976a749, base path is set to: null +17:00:41.726 [XNIO-1 task-2] 8x_14rk0Q6OyCMmaDxBzoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1976a749", "1976a749", userId) +17:00:41.730 [XNIO-1 task-2] XbA4Jnh6TSCApoQ-Zluf9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.730 [XNIO-1 task-2] XbA4Jnh6TSCApoQ-Zluf9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.730 [XNIO-1 task-2] XbA4Jnh6TSCApoQ-Zluf9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.755 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0045a034-9c7f-4826-8762-79477df74e12 +17:00:41.759 [XNIO-1 task-2] tACkMMtBS_GYoQynVwZeJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.760 [XNIO-1 task-2] tACkMMtBS_GYoQynVwZeJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.760 [XNIO-1 task-2] tACkMMtBS_GYoQynVwZeJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.777 [XNIO-1 task-2] WYDOYhcRTVekRnZOKcvcjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/85ea495a, base path is set to: null +17:00:41.778 [XNIO-1 task-2] WYDOYhcRTVekRnZOKcvcjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.778 [XNIO-1 task-2] WYDOYhcRTVekRnZOKcvcjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.778 [XNIO-1 task-2] WYDOYhcRTVekRnZOKcvcjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/85ea495a, base path is set to: null +17:00:41.778 [XNIO-1 task-2] WYDOYhcRTVekRnZOKcvcjA DEBUG com.networknt.schema.TypeValidator debug - validate( "85ea495a", "85ea495a", userId) +17:00:41.797 [XNIO-1 task-2] Dq019zlpTkukd8ROwP3G4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.798 [XNIO-1 task-2] Dq019zlpTkukd8ROwP3G4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.798 [XNIO-1 task-2] Dq019zlpTkukd8ROwP3G4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.808 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:35113671-8822-4574-bd6c-1def940f0026 +17:00:41.814 [XNIO-1 task-2] VKnPgy_2SIaDzx1lpYT47Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.814 [XNIO-1 task-2] VKnPgy_2SIaDzx1lpYT47Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.815 [XNIO-1 task-2] VKnPgy_2SIaDzx1lpYT47Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.815 [XNIO-1 task-2] VKnPgy_2SIaDzx1lpYT47Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:41.823 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a7a9dded-b3bf-45df-b6aa-9b1018ebfe77 +17:00:41.826 [XNIO-1 task-2] 8-0989uoRQ6foV4JHvncKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.826 [XNIO-1 task-2] 8-0989uoRQ6foV4JHvncKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.826 [XNIO-1 task-2] 8-0989uoRQ6foV4JHvncKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.890 [XNIO-1 task-2] 8g6Dq40PQHqFoYKtT5FTng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.890 [XNIO-1 task-2] 8g6Dq40PQHqFoYKtT5FTng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.891 [XNIO-1 task-2] 8g6Dq40PQHqFoYKtT5FTng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.906 [XNIO-1 task-2] s7QHaWcASHC31OaSVujmqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb764e7f, base path is set to: null +17:00:41.906 [XNIO-1 task-2] s7QHaWcASHC31OaSVujmqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.906 [XNIO-1 task-2] s7QHaWcASHC31OaSVujmqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:41.906 [XNIO-1 task-2] s7QHaWcASHC31OaSVujmqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb764e7f, base path is set to: null +17:00:41.907 [XNIO-1 task-2] s7QHaWcASHC31OaSVujmqw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb764e7f", "cb764e7f", userId) +17:00:41.935 [XNIO-1 task-2] 81-N4aGiRIGNNyY6Eg7M5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.935 [XNIO-1 task-2] 81-N4aGiRIGNNyY6Eg7M5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.935 [XNIO-1 task-2] 81-N4aGiRIGNNyY6Eg7M5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.936 [XNIO-1 task-2] 81-N4aGiRIGNNyY6Eg7M5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:41.945 [XNIO-1 task-2] kOUpqp1QRgGK5tsEEYyxMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1976a749 +17:00:41.945 [XNIO-1 task-2] kOUpqp1QRgGK5tsEEYyxMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:41.945 [XNIO-1 task-2] kOUpqp1QRgGK5tsEEYyxMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:41.945 [XNIO-1 task-2] kOUpqp1QRgGK5tsEEYyxMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1976a749 +17:00:41.962 [XNIO-1 task-2] qO-to6U9QF2wAYsk8q0wuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:41.962 [XNIO-1 task-2] qO-to6U9QF2wAYsk8q0wuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:41.963 [XNIO-1 task-2] qO-to6U9QF2wAYsk8q0wuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.009 [XNIO-1 task-2] b11QzNIdTC60DStsgpiWSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.010 [XNIO-1 task-2] b11QzNIdTC60DStsgpiWSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.010 [XNIO-1 task-2] b11QzNIdTC60DStsgpiWSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.010 [XNIO-1 task-2] b11QzNIdTC60DStsgpiWSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.020 [XNIO-1 task-2] I1aq26lcRMuRiypmpV26RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.020 [XNIO-1 task-2] I1aq26lcRMuRiypmpV26RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.021 [XNIO-1 task-2] I1aq26lcRMuRiypmpV26RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.066 [XNIO-1 task-2] -hXn-8EVSBC3h7uJ6n4JRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cdfd8707, base path is set to: null +17:00:42.067 [XNIO-1 task-2] -hXn-8EVSBC3h7uJ6n4JRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.067 [XNIO-1 task-2] -hXn-8EVSBC3h7uJ6n4JRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:42.067 [XNIO-1 task-2] -hXn-8EVSBC3h7uJ6n4JRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cdfd8707, base path is set to: null +17:00:42.067 [XNIO-1 task-2] -hXn-8EVSBC3h7uJ6n4JRg DEBUG com.networknt.schema.TypeValidator debug - validate( "cdfd8707", "cdfd8707", userId) +17:00:42.096 [XNIO-1 task-2] p_HsGl02QS6VBAORBfjSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.097 [XNIO-1 task-2] p_HsGl02QS6VBAORBfjSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.097 [XNIO-1 task-2] p_HsGl02QS6VBAORBfjSEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.097 [XNIO-1 task-2] p_HsGl02QS6VBAORBfjSEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.106 [XNIO-1 task-2] bzQlrKXrRw22O7UUZTbFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.106 [XNIO-1 task-2] bzQlrKXrRw22O7UUZTbFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.107 [XNIO-1 task-2] bzQlrKXrRw22O7UUZTbFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.108 [XNIO-1 task-2] bzQlrKXrRw22O7UUZTbFtA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.116 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0cd9d17b +17:00:42.116 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.116 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.116 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:42.116 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0cd9d17b +17:00:42.117 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2f5c7bf4-7ebc-453a-a901-3e358e87493b","newPassword":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPasswordConfirm":"333f96df-2eb8-4d63-98ac-ce9de08dce31"}, {"password":"2f5c7bf4-7ebc-453a-a901-3e358e87493b","newPassword":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPasswordConfirm":"333f96df-2eb8-4d63-98ac-ce9de08dce31"}, requestBody) +17:00:42.119 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2f5c7bf4-7ebc-453a-a901-3e358e87493b","newPassword":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPasswordConfirm":"333f96df-2eb8-4d63-98ac-ce9de08dce31"}, {"password":"2f5c7bf4-7ebc-453a-a901-3e358e87493b","newPassword":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPasswordConfirm":"333f96df-2eb8-4d63-98ac-ce9de08dce31"}, requestBody) +17:00:42.119 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG com.networknt.schema.FormatValidator debug - validate( "333f96df-2eb8-4d63-98ac-ce9de08dce31", {"password":"2f5c7bf4-7ebc-453a-a901-3e358e87493b","newPassword":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPasswordConfirm":"333f96df-2eb8-4d63-98ac-ce9de08dce31"}, requestBody.newPasswordConfirm) +17:00:42.119 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG com.networknt.schema.FormatValidator debug - validate( "2f5c7bf4-7ebc-453a-a901-3e358e87493b", {"password":"2f5c7bf4-7ebc-453a-a901-3e358e87493b","newPassword":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPasswordConfirm":"333f96df-2eb8-4d63-98ac-ce9de08dce31"}, requestBody.password) +17:00:42.119 [XNIO-1 task-2] 4SK3X66VT0GtXy3XfHDSYw DEBUG com.networknt.schema.FormatValidator debug - validate( "333f96df-2eb8-4d63-98ac-ce9de08dce31", {"password":"2f5c7bf4-7ebc-453a-a901-3e358e87493b","newPassword":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPasswordConfirm":"333f96df-2eb8-4d63-98ac-ce9de08dce31"}, requestBody.newPassword) +17:00:42.146 [XNIO-1 task-2] uav4boh3QIOXHkTNWLPm0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.146 [XNIO-1 task-2] uav4boh3QIOXHkTNWLPm0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.146 [XNIO-1 task-2] uav4boh3QIOXHkTNWLPm0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.147 [XNIO-1 task-2] uav4boh3QIOXHkTNWLPm0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.157 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0cd9d17b +17:00:42.157 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.157 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.157 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:42.158 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0cd9d17b +17:00:42.158 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPassword":"4eb6dbe5-d354-431b-8457-74555f6eb247","newPasswordConfirm":"4eb6dbe5-d354-431b-8457-74555f6eb247"}, {"password":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPassword":"4eb6dbe5-d354-431b-8457-74555f6eb247","newPasswordConfirm":"4eb6dbe5-d354-431b-8457-74555f6eb247"}, requestBody) +17:00:42.158 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPassword":"4eb6dbe5-d354-431b-8457-74555f6eb247","newPasswordConfirm":"4eb6dbe5-d354-431b-8457-74555f6eb247"}, {"password":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPassword":"4eb6dbe5-d354-431b-8457-74555f6eb247","newPasswordConfirm":"4eb6dbe5-d354-431b-8457-74555f6eb247"}, requestBody) +17:00:42.158 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG com.networknt.schema.FormatValidator debug - validate( "4eb6dbe5-d354-431b-8457-74555f6eb247", {"password":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPassword":"4eb6dbe5-d354-431b-8457-74555f6eb247","newPasswordConfirm":"4eb6dbe5-d354-431b-8457-74555f6eb247"}, requestBody.newPasswordConfirm) +17:00:42.159 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG com.networknt.schema.FormatValidator debug - validate( "333f96df-2eb8-4d63-98ac-ce9de08dce31", {"password":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPassword":"4eb6dbe5-d354-431b-8457-74555f6eb247","newPasswordConfirm":"4eb6dbe5-d354-431b-8457-74555f6eb247"}, requestBody.password) +17:00:42.159 [XNIO-1 task-2] jUHneONAQ_6xP86XNy9V1A DEBUG com.networknt.schema.FormatValidator debug - validate( "4eb6dbe5-d354-431b-8457-74555f6eb247", {"password":"333f96df-2eb8-4d63-98ac-ce9de08dce31","newPassword":"4eb6dbe5-d354-431b-8457-74555f6eb247","newPasswordConfirm":"4eb6dbe5-d354-431b-8457-74555f6eb247"}, requestBody.newPassword) +17:00:42.193 [XNIO-1 task-2] NSO9DJcRSQ28_885ALgikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.194 [XNIO-1 task-2] NSO9DJcRSQ28_885ALgikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.194 [XNIO-1 task-2] NSO9DJcRSQ28_885ALgikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.209 [XNIO-1 task-2] HQb3N4i5TsOmur02oZ7UyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0cd9d17b +17:00:42.209 [XNIO-1 task-2] HQb3N4i5TsOmur02oZ7UyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.210 [XNIO-1 task-2] HQb3N4i5TsOmur02oZ7UyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.210 [XNIO-1 task-2] HQb3N4i5TsOmur02oZ7UyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0cd9d17b +17:00:42.223 [XNIO-1 task-2] 40p9l-6kTWabsA4Q0xrHvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.223 [XNIO-1 task-2] 40p9l-6kTWabsA4Q0xrHvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.223 [XNIO-1 task-2] 40p9l-6kTWabsA4Q0xrHvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.237 [XNIO-1 task-2] NUnUf55VRkyUwaPESAvqXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0cd9d17b, base path is set to: null +17:00:42.237 [XNIO-1 task-2] NUnUf55VRkyUwaPESAvqXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.237 [XNIO-1 task-2] NUnUf55VRkyUwaPESAvqXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:42.238 [XNIO-1 task-2] NUnUf55VRkyUwaPESAvqXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0cd9d17b, base path is set to: null +17:00:42.238 [XNIO-1 task-2] NUnUf55VRkyUwaPESAvqXw DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd9d17b", "0cd9d17b", userId) +17:00:42.258 [XNIO-1 task-2] dirPxfLnQKOPj9C0CHomJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.258 [XNIO-1 task-2] dirPxfLnQKOPj9C0CHomJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.258 [XNIO-1 task-2] dirPxfLnQKOPj9C0CHomJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.305 [XNIO-1 task-2] 8lFQX1A2R4i1r8sh4f6CFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.306 [XNIO-1 task-2] 8lFQX1A2R4i1r8sh4f6CFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.306 [XNIO-1 task-2] 8lFQX1A2R4i1r8sh4f6CFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.319 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb3f3a76 +17:00:42.338 [XNIO-1 task-2] rT02cnRkTDi-ypLGPWWy9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.338 [XNIO-1 task-2] rT02cnRkTDi-ypLGPWWy9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.338 [XNIO-1 task-2] rT02cnRkTDi-ypLGPWWy9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.339 [XNIO-1 task-2] rT02cnRkTDi-ypLGPWWy9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.350 [XNIO-1 task-2] fThvr_LXTq6BkMJnk6jxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.351 [XNIO-1 task-2] fThvr_LXTq6BkMJnk6jxRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.351 [XNIO-1 task-2] fThvr_LXTq6BkMJnk6jxRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.376 [XNIO-1 task-2] aGsY4rhJQ82fmWS7vjBHdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5b3246dc, base path is set to: null +17:00:42.376 [XNIO-1 task-2] aGsY4rhJQ82fmWS7vjBHdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.376 [XNIO-1 task-2] aGsY4rhJQ82fmWS7vjBHdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:42.376 [XNIO-1 task-2] aGsY4rhJQ82fmWS7vjBHdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5b3246dc, base path is set to: null +17:00:42.377 [XNIO-1 task-2] aGsY4rhJQ82fmWS7vjBHdg DEBUG com.networknt.schema.TypeValidator debug - validate( "5b3246dc", "5b3246dc", userId) +17:00:42.389 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb3f3a76 +17:00:42.389 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.389 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.389 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:42.389 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb3f3a76 +17:00:42.390 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a2a5822e-bb5a-4d84-bd36-45b86ccd31ad","newPassword":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPasswordConfirm":"bed6dc77-ef77-4191-91b6-43ea2dd7d153"}, {"password":"a2a5822e-bb5a-4d84-bd36-45b86ccd31ad","newPassword":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPasswordConfirm":"bed6dc77-ef77-4191-91b6-43ea2dd7d153"}, requestBody) +17:00:42.390 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a2a5822e-bb5a-4d84-bd36-45b86ccd31ad","newPassword":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPasswordConfirm":"bed6dc77-ef77-4191-91b6-43ea2dd7d153"}, {"password":"a2a5822e-bb5a-4d84-bd36-45b86ccd31ad","newPassword":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPasswordConfirm":"bed6dc77-ef77-4191-91b6-43ea2dd7d153"}, requestBody) +17:00:42.390 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG com.networknt.schema.FormatValidator debug - validate( "bed6dc77-ef77-4191-91b6-43ea2dd7d153", {"password":"a2a5822e-bb5a-4d84-bd36-45b86ccd31ad","newPassword":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPasswordConfirm":"bed6dc77-ef77-4191-91b6-43ea2dd7d153"}, requestBody.newPasswordConfirm) +17:00:42.390 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG com.networknt.schema.FormatValidator debug - validate( "a2a5822e-bb5a-4d84-bd36-45b86ccd31ad", {"password":"a2a5822e-bb5a-4d84-bd36-45b86ccd31ad","newPassword":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPasswordConfirm":"bed6dc77-ef77-4191-91b6-43ea2dd7d153"}, requestBody.password) +17:00:42.391 [XNIO-1 task-2] 9sPVkOPaRZmaOSHgLvUf4A DEBUG com.networknt.schema.FormatValidator debug - validate( "bed6dc77-ef77-4191-91b6-43ea2dd7d153", {"password":"a2a5822e-bb5a-4d84-bd36-45b86ccd31ad","newPassword":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPasswordConfirm":"bed6dc77-ef77-4191-91b6-43ea2dd7d153"}, requestBody.newPassword) +17:00:42.401 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb3f3a76 +17:00:42.412 [XNIO-1 task-2] RFqrQf_eRJmllHHx8Y7JPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.413 [XNIO-1 task-2] RFqrQf_eRJmllHHx8Y7JPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.414 [XNIO-1 task-2] RFqrQf_eRJmllHHx8Y7JPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.415 [XNIO-1 task-2] RFqrQf_eRJmllHHx8Y7JPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.422 [XNIO-1 task-2] MU15OLUZQjid2FWnVlVcJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5ef8c432 +17:00:42.423 [XNIO-1 task-2] MU15OLUZQjid2FWnVlVcJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.423 [XNIO-1 task-2] MU15OLUZQjid2FWnVlVcJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.423 [XNIO-1 task-2] MU15OLUZQjid2FWnVlVcJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5ef8c432 +17:00:42.434 [XNIO-1 task-2] iBzgXNO8RrKE8zNp1mrGFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3f3a76, base path is set to: null +17:00:42.435 [XNIO-1 task-2] iBzgXNO8RrKE8zNp1mrGFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.435 [XNIO-1 task-2] iBzgXNO8RrKE8zNp1mrGFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:42.435 [XNIO-1 task-2] iBzgXNO8RrKE8zNp1mrGFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3f3a76, base path is set to: null +17:00:42.435 [XNIO-1 task-2] iBzgXNO8RrKE8zNp1mrGFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cb3f3a76", "cb3f3a76", userId) +17:00:42.439 [XNIO-1 task-2] YnuJa9eFTEGI547atCczgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.439 [XNIO-1 task-2] YnuJa9eFTEGI547atCczgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.440 [XNIO-1 task-2] YnuJa9eFTEGI547atCczgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.440 [XNIO-1 task-2] YnuJa9eFTEGI547atCczgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.448 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb3f3a76 +17:00:42.448 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.448 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.448 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:42.449 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cb3f3a76 +17:00:42.450 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPassword":"101c9243-6efc-4419-bc65-62da2eb2b2cd","newPasswordConfirm":"101c9243-6efc-4419-bc65-62da2eb2b2cd"}, {"password":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPassword":"101c9243-6efc-4419-bc65-62da2eb2b2cd","newPasswordConfirm":"101c9243-6efc-4419-bc65-62da2eb2b2cd"}, requestBody) +17:00:42.450 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPassword":"101c9243-6efc-4419-bc65-62da2eb2b2cd","newPasswordConfirm":"101c9243-6efc-4419-bc65-62da2eb2b2cd"}, {"password":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPassword":"101c9243-6efc-4419-bc65-62da2eb2b2cd","newPasswordConfirm":"101c9243-6efc-4419-bc65-62da2eb2b2cd"}, requestBody) +17:00:42.450 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG com.networknt.schema.FormatValidator debug - validate( "101c9243-6efc-4419-bc65-62da2eb2b2cd", {"password":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPassword":"101c9243-6efc-4419-bc65-62da2eb2b2cd","newPasswordConfirm":"101c9243-6efc-4419-bc65-62da2eb2b2cd"}, requestBody.newPasswordConfirm) +17:00:42.450 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG com.networknt.schema.FormatValidator debug - validate( "bed6dc77-ef77-4191-91b6-43ea2dd7d153", {"password":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPassword":"101c9243-6efc-4419-bc65-62da2eb2b2cd","newPasswordConfirm":"101c9243-6efc-4419-bc65-62da2eb2b2cd"}, requestBody.password) +17:00:42.450 [XNIO-1 task-2] ETJ7Bek2QIuOOtiRMkDA7w DEBUG com.networknt.schema.FormatValidator debug - validate( "101c9243-6efc-4419-bc65-62da2eb2b2cd", {"password":"bed6dc77-ef77-4191-91b6-43ea2dd7d153","newPassword":"101c9243-6efc-4419-bc65-62da2eb2b2cd","newPasswordConfirm":"101c9243-6efc-4419-bc65-62da2eb2b2cd"}, requestBody.newPassword) +17:00:42.462 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb3f3a76 +17:00:42.477 [XNIO-1 task-2] mQUWNFcXTgiHmnWGpAntsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb3f3a76 +17:00:42.477 [XNIO-1 task-2] mQUWNFcXTgiHmnWGpAntsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.477 [XNIO-1 task-2] mQUWNFcXTgiHmnWGpAntsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.478 [XNIO-1 task-2] mQUWNFcXTgiHmnWGpAntsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb3f3a76 +17:00:42.486 [XNIO-1 task-2] 5REwzBQfTPKJatXtz3wC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.486 [XNIO-1 task-2] 5REwzBQfTPKJatXtz3wC0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.486 [XNIO-1 task-2] 5REwzBQfTPKJatXtz3wC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.487 [XNIO-1 task-2] 5REwzBQfTPKJatXtz3wC0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.504 [XNIO-1 task-2] MRhbVohORJmOhVSgZcyWHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.504 [XNIO-1 task-2] MRhbVohORJmOhVSgZcyWHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.504 [XNIO-1 task-2] MRhbVohORJmOhVSgZcyWHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.505 [XNIO-1 task-2] MRhbVohORJmOhVSgZcyWHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.513 [XNIO-1 task-2] YoF5tTdBTSuaNO7wqYcd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.513 [XNIO-1 task-2] YoF5tTdBTSuaNO7wqYcd4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.513 [XNIO-1 task-2] YoF5tTdBTSuaNO7wqYcd4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.514 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb3f3a76 +17:00:42.526 [XNIO-1 task-2] _9lNC0sSS1GY-LSjI-Pt9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3f3a76, base path is set to: null +17:00:42.526 [XNIO-1 task-2] _9lNC0sSS1GY-LSjI-Pt9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.526 [XNIO-1 task-2] _9lNC0sSS1GY-LSjI-Pt9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:42.527 [XNIO-1 task-2] _9lNC0sSS1GY-LSjI-Pt9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3f3a76, base path is set to: null +17:00:42.527 [XNIO-1 task-2] _9lNC0sSS1GY-LSjI-Pt9A DEBUG com.networknt.schema.TypeValidator debug - validate( "cb3f3a76", "cb3f3a76", userId) +17:00:42.540 [XNIO-1 task-2] 7n5I3VwBTZWB1fLSc1_awQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.541 [XNIO-1 task-2] 7n5I3VwBTZWB1fLSc1_awQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.541 [XNIO-1 task-2] 7n5I3VwBTZWB1fLSc1_awQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.542 [XNIO-1 task-2] 7n5I3VwBTZWB1fLSc1_awQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.560 [XNIO-1 task-2] SKAx1eCBRzmO5By5YUPR9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.560 [XNIO-1 task-2] SKAx1eCBRzmO5By5YUPR9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.561 [XNIO-1 task-2] SKAx1eCBRzmO5By5YUPR9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.561 [XNIO-1 task-2] SKAx1eCBRzmO5By5YUPR9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.612 [XNIO-1 task-2] mM7PITJCSH6aqv82Nkv2Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.612 [XNIO-1 task-2] mM7PITJCSH6aqv82Nkv2Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.612 [XNIO-1 task-2] mM7PITJCSH6aqv82Nkv2Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.613 [XNIO-1 task-2] mM7PITJCSH6aqv82Nkv2Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.623 [XNIO-1 task-2] PLW_04KaSgemyQu8S-WGYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.623 [XNIO-1 task-2] PLW_04KaSgemyQu8S-WGYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.623 [XNIO-1 task-2] PLW_04KaSgemyQu8S-WGYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.624 [XNIO-1 task-2] PLW_04KaSgemyQu8S-WGYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.630 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3c7af9d0-423b-4867-a0bf-70f300d10809 +17:00:42.632 [XNIO-1 task-2] G48HboxTQiCSDkPW6W6N0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.632 [XNIO-1 task-2] G48HboxTQiCSDkPW6W6N0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.632 [XNIO-1 task-2] G48HboxTQiCSDkPW6W6N0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.651 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3c7af9d0-423b-4867-a0bf-70f300d10809 +17:00:42.653 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c5ede304 +17:00:42.653 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.653 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.653 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:42.655 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c5ede304 +17:00:42.656 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5bb5a900-18dd-429d-b495-c3daf01f2806","newPassword":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPasswordConfirm":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b"}, {"password":"5bb5a900-18dd-429d-b495-c3daf01f2806","newPassword":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPasswordConfirm":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b"}, requestBody) +17:00:42.656 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5bb5a900-18dd-429d-b495-c3daf01f2806","newPassword":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPasswordConfirm":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b"}, {"password":"5bb5a900-18dd-429d-b495-c3daf01f2806","newPassword":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPasswordConfirm":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b"}, requestBody) +17:00:42.656 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG com.networknt.schema.FormatValidator debug - validate( "2e3a9524-d13b-4524-960c-f0cf2bf7e33b", {"password":"5bb5a900-18dd-429d-b495-c3daf01f2806","newPassword":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPasswordConfirm":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b"}, requestBody.newPasswordConfirm) +17:00:42.656 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG com.networknt.schema.FormatValidator debug - validate( "5bb5a900-18dd-429d-b495-c3daf01f2806", {"password":"5bb5a900-18dd-429d-b495-c3daf01f2806","newPassword":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPasswordConfirm":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b"}, requestBody.password) +17:00:42.656 [XNIO-1 task-2] E3UZrWdxRcyJz4bN6Q3tIA DEBUG com.networknt.schema.FormatValidator debug - validate( "2e3a9524-d13b-4524-960c-f0cf2bf7e33b", {"password":"5bb5a900-18dd-429d-b495-c3daf01f2806","newPassword":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPasswordConfirm":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b"}, requestBody.newPassword) +17:00:42.682 [XNIO-1 task-2] 70U5crqoT_igqDd0i2Bolw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.682 [XNIO-1 task-2] 70U5crqoT_igqDd0i2Bolw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.682 [XNIO-1 task-2] 70U5crqoT_igqDd0i2Bolw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.705 [XNIO-1 task-2] k0ev9OHVReK0C2Q47nOQ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.705 [XNIO-1 task-2] k0ev9OHVReK0C2Q47nOQ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.706 [XNIO-1 task-2] k0ev9OHVReK0C2Q47nOQ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.706 [XNIO-1 task-2] k0ev9OHVReK0C2Q47nOQ7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:42.726 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c5ede304 +17:00:42.726 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.727 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.727 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:42.727 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c5ede304 +17:00:42.729 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPassword":"d99f197c-c3db-472c-9368-fbfc7dea7761","newPasswordConfirm":"d99f197c-c3db-472c-9368-fbfc7dea7761"}, {"password":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPassword":"d99f197c-c3db-472c-9368-fbfc7dea7761","newPasswordConfirm":"d99f197c-c3db-472c-9368-fbfc7dea7761"}, requestBody) +17:00:42.729 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPassword":"d99f197c-c3db-472c-9368-fbfc7dea7761","newPasswordConfirm":"d99f197c-c3db-472c-9368-fbfc7dea7761"}, {"password":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPassword":"d99f197c-c3db-472c-9368-fbfc7dea7761","newPasswordConfirm":"d99f197c-c3db-472c-9368-fbfc7dea7761"}, requestBody) +17:00:42.729 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d99f197c-c3db-472c-9368-fbfc7dea7761", {"password":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPassword":"d99f197c-c3db-472c-9368-fbfc7dea7761","newPasswordConfirm":"d99f197c-c3db-472c-9368-fbfc7dea7761"}, requestBody.newPasswordConfirm) +17:00:42.729 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "2e3a9524-d13b-4524-960c-f0cf2bf7e33b", {"password":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPassword":"d99f197c-c3db-472c-9368-fbfc7dea7761","newPasswordConfirm":"d99f197c-c3db-472c-9368-fbfc7dea7761"}, requestBody.password) +17:00:42.729 [XNIO-1 task-2] W6YbR3GkRnSDkcOwguHWIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d99f197c-c3db-472c-9368-fbfc7dea7761", {"password":"2e3a9524-d13b-4524-960c-f0cf2bf7e33b","newPassword":"d99f197c-c3db-472c-9368-fbfc7dea7761","newPasswordConfirm":"d99f197c-c3db-472c-9368-fbfc7dea7761"}, requestBody.newPassword) +17:00:42.753 [XNIO-1 task-2] st2JBwW5RTSqlT6Y8mRdJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c5ede304 +17:00:42.753 [XNIO-1 task-2] st2JBwW5RTSqlT6Y8mRdJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.753 [XNIO-1 task-2] st2JBwW5RTSqlT6Y8mRdJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.754 [XNIO-1 task-2] st2JBwW5RTSqlT6Y8mRdJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c5ede304 +17:00:42.771 [XNIO-1 task-2] tkX3nIHMRMOBPHY4oZCRqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.772 [XNIO-1 task-2] tkX3nIHMRMOBPHY4oZCRqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.772 [XNIO-1 task-2] tkX3nIHMRMOBPHY4oZCRqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.772 [XNIO-1 task-2] tkX3nIHMRMOBPHY4oZCRqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.782 [XNIO-1 task-2] 3Ib02WOCQfahZePTkGkebw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.783 [XNIO-1 task-2] 3Ib02WOCQfahZePTkGkebw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.783 [XNIO-1 task-2] 3Ib02WOCQfahZePTkGkebw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.783 [XNIO-1 task-2] 3Ib02WOCQfahZePTkGkebw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.805 [XNIO-1 task-2] TxKD-qNeRZyrfCDJpKmszw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.806 [XNIO-1 task-2] TxKD-qNeRZyrfCDJpKmszw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.806 [XNIO-1 task-2] TxKD-qNeRZyrfCDJpKmszw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.806 [XNIO-1 task-2] TxKD-qNeRZyrfCDJpKmszw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.813 [XNIO-1 task-2] qS-Kg7D7QmS3eRq6jcdtJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.813 [XNIO-1 task-2] qS-Kg7D7QmS3eRq6jcdtJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.815 [XNIO-1 task-2] qS-Kg7D7QmS3eRq6jcdtJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.844 [XNIO-1 task-2] NDMd9iHgSTCoImB8XAqXCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.844 [XNIO-1 task-2] NDMd9iHgSTCoImB8XAqXCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.845 [XNIO-1 task-2] NDMd9iHgSTCoImB8XAqXCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.845 [XNIO-1 task-2] NDMd9iHgSTCoImB8XAqXCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.883 [XNIO-1 task-2] gytDJLuPSdS-3F53p1Sk5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.884 [XNIO-1 task-2] gytDJLuPSdS-3F53p1Sk5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.885 [XNIO-1 task-2] gytDJLuPSdS-3F53p1Sk5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.907 [XNIO-1 task-2] HEIlE1mHTbCuOfRvscraVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.907 [XNIO-1 task-2] HEIlE1mHTbCuOfRvscraVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.907 [XNIO-1 task-2] HEIlE1mHTbCuOfRvscraVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.908 [XNIO-1 task-2] HEIlE1mHTbCuOfRvscraVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:42.919 [XNIO-1 task-2] XviruIjWT_CSvE5yH16Fmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/956b9f84, base path is set to: null +17:00:42.919 [XNIO-1 task-2] XviruIjWT_CSvE5yH16Fmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.919 [XNIO-1 task-2] XviruIjWT_CSvE5yH16Fmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:42.920 [XNIO-1 task-2] XviruIjWT_CSvE5yH16Fmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/956b9f84, base path is set to: null +17:00:42.920 [XNIO-1 task-2] XviruIjWT_CSvE5yH16Fmw DEBUG com.networknt.schema.TypeValidator debug - validate( "956b9f84", "956b9f84", userId) +17:00:42.926 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7e21ec75-587e-4b64-a5e7-09921ad589a5 +17:00:42.929 [XNIO-1 task-2] mxgbafHaQU2lrGSabU_mMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.930 [XNIO-1 task-2] mxgbafHaQU2lrGSabU_mMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:42.930 [XNIO-1 task-2] mxgbafHaQU2lrGSabU_mMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:42.948 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7e21ec75-587e-4b64-a5e7-09921ad589a5 +17:00:42.957 [XNIO-1 task-2] s6Y5Uw4NShyuTFsLydI_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.957 [XNIO-1 task-2] s6Y5Uw4NShyuTFsLydI_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.958 [XNIO-1 task-2] s6Y5Uw4NShyuTFsLydI_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.973 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6d6403a5 +17:00:42.974 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:42.974 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:42.974 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:42.974 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6d6403a5 +17:00:42.977 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"eb208510-de62-40c5-a0fd-efdd28562838","newPassword":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPasswordConfirm":"78f6225a-a11b-4dba-9092-6a817ec2febf"}, {"password":"eb208510-de62-40c5-a0fd-efdd28562838","newPassword":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPasswordConfirm":"78f6225a-a11b-4dba-9092-6a817ec2febf"}, requestBody) +17:00:42.977 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"eb208510-de62-40c5-a0fd-efdd28562838","newPassword":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPasswordConfirm":"78f6225a-a11b-4dba-9092-6a817ec2febf"}, {"password":"eb208510-de62-40c5-a0fd-efdd28562838","newPassword":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPasswordConfirm":"78f6225a-a11b-4dba-9092-6a817ec2febf"}, requestBody) +17:00:42.977 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "78f6225a-a11b-4dba-9092-6a817ec2febf", {"password":"eb208510-de62-40c5-a0fd-efdd28562838","newPassword":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPasswordConfirm":"78f6225a-a11b-4dba-9092-6a817ec2febf"}, requestBody.newPasswordConfirm) +17:00:42.977 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "eb208510-de62-40c5-a0fd-efdd28562838", {"password":"eb208510-de62-40c5-a0fd-efdd28562838","newPassword":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPasswordConfirm":"78f6225a-a11b-4dba-9092-6a817ec2febf"}, requestBody.password) +17:00:42.977 [XNIO-1 task-2] 889y_KndRnmKHi2dpJyAUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "78f6225a-a11b-4dba-9092-6a817ec2febf", {"password":"eb208510-de62-40c5-a0fd-efdd28562838","newPassword":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPasswordConfirm":"78f6225a-a11b-4dba-9092-6a817ec2febf"}, requestBody.newPassword) +17:00:43.072 [XNIO-1 task-2] UC30b5CcRzqIaHsUj9Nj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.072 [XNIO-1 task-2] UC30b5CcRzqIaHsUj9Nj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.072 [XNIO-1 task-2] UC30b5CcRzqIaHsUj9Nj-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.112 [XNIO-1 task-2] VwIoZ1doQqaJRlZmZvcVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/05ebf10e +17:00:43.112 [XNIO-1 task-2] VwIoZ1doQqaJRlZmZvcVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.112 [XNIO-1 task-2] VwIoZ1doQqaJRlZmZvcVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.112 [XNIO-1 task-2] VwIoZ1doQqaJRlZmZvcVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/05ebf10e +17:00:43.152 [XNIO-1 task-2] eXLWNxR-SpOwoBTyG7N-LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.153 [XNIO-1 task-2] eXLWNxR-SpOwoBTyG7N-LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.153 [XNIO-1 task-2] eXLWNxR-SpOwoBTyG7N-LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.153 [XNIO-1 task-2] eXLWNxR-SpOwoBTyG7N-LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.177 [XNIO-1 task-2] 8p729PBzQ3aMm6CqdV3U2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.177 [XNIO-1 task-2] 8p729PBzQ3aMm6CqdV3U2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.177 [XNIO-1 task-2] 8p729PBzQ3aMm6CqdV3U2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.205 [XNIO-1 task-2] oe0IpabmQ7euSzhBM41Nbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.205 [XNIO-1 task-2] oe0IpabmQ7euSzhBM41Nbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.206 [XNIO-1 task-2] oe0IpabmQ7euSzhBM41Nbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.220 [XNIO-1 task-2] agITuftSSJKNbO4aIV8gNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a60ba421, base path is set to: null +17:00:43.221 [XNIO-1 task-2] agITuftSSJKNbO4aIV8gNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.221 [XNIO-1 task-2] agITuftSSJKNbO4aIV8gNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:43.221 [XNIO-1 task-2] agITuftSSJKNbO4aIV8gNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a60ba421, base path is set to: null +17:00:43.222 [XNIO-1 task-2] agITuftSSJKNbO4aIV8gNg DEBUG com.networknt.schema.TypeValidator debug - validate( "a60ba421", "a60ba421", userId) +17:00:43.233 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6d6403a5 +17:00:43.234 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.234 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.234 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:43.234 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6d6403a5 +17:00:43.235 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPassword":"46717129-40f9-44b2-b0eb-7ba03ab2ca03","newPasswordConfirm":"46717129-40f9-44b2-b0eb-7ba03ab2ca03"}, {"password":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPassword":"46717129-40f9-44b2-b0eb-7ba03ab2ca03","newPasswordConfirm":"46717129-40f9-44b2-b0eb-7ba03ab2ca03"}, requestBody) +17:00:43.235 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPassword":"46717129-40f9-44b2-b0eb-7ba03ab2ca03","newPasswordConfirm":"46717129-40f9-44b2-b0eb-7ba03ab2ca03"}, {"password":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPassword":"46717129-40f9-44b2-b0eb-7ba03ab2ca03","newPasswordConfirm":"46717129-40f9-44b2-b0eb-7ba03ab2ca03"}, requestBody) +17:00:43.235 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG com.networknt.schema.FormatValidator debug - validate( "46717129-40f9-44b2-b0eb-7ba03ab2ca03", {"password":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPassword":"46717129-40f9-44b2-b0eb-7ba03ab2ca03","newPasswordConfirm":"46717129-40f9-44b2-b0eb-7ba03ab2ca03"}, requestBody.newPasswordConfirm) +17:00:43.235 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG com.networknt.schema.FormatValidator debug - validate( "78f6225a-a11b-4dba-9092-6a817ec2febf", {"password":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPassword":"46717129-40f9-44b2-b0eb-7ba03ab2ca03","newPasswordConfirm":"46717129-40f9-44b2-b0eb-7ba03ab2ca03"}, requestBody.password) +17:00:43.235 [XNIO-1 task-2] 7wjLLnVuQ2SA_OGk1v7OCg DEBUG com.networknt.schema.FormatValidator debug - validate( "46717129-40f9-44b2-b0eb-7ba03ab2ca03", {"password":"78f6225a-a11b-4dba-9092-6a817ec2febf","newPassword":"46717129-40f9-44b2-b0eb-7ba03ab2ca03","newPasswordConfirm":"46717129-40f9-44b2-b0eb-7ba03ab2ca03"}, requestBody.newPassword) +17:00:43.263 [XNIO-1 task-2] Ua-dCfENQqOy-spyyZ-r8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6d6403a5 +17:00:43.263 [XNIO-1 task-2] Ua-dCfENQqOy-spyyZ-r8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.263 [XNIO-1 task-2] Ua-dCfENQqOy-spyyZ-r8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.263 [XNIO-1 task-2] Ua-dCfENQqOy-spyyZ-r8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6d6403a5 +17:00:43.268 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a104ba5a-1b78-4fe8-a267-f165a07767f5 +17:00:43.269 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a104ba5a-1b78-4fe8-a267-f165a07767f5 +17:00:43.271 [XNIO-1 task-2] zNFuHoKcRTO4qf0WnjdIhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6d6403a5 +17:00:43.271 [XNIO-1 task-2] zNFuHoKcRTO4qf0WnjdIhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.271 [XNIO-1 task-2] zNFuHoKcRTO4qf0WnjdIhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.271 [XNIO-1 task-2] zNFuHoKcRTO4qf0WnjdIhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6d6403a5 +17:00:43.284 [XNIO-1 task-2] 704L_E_mTXWkEKnSW9qKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.285 [XNIO-1 task-2] 704L_E_mTXWkEKnSW9qKCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.285 [XNIO-1 task-2] 704L_E_mTXWkEKnSW9qKCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.286 [XNIO-1 task-2] 704L_E_mTXWkEKnSW9qKCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.296 [XNIO-1 task-2] D-lc0MKcTLWi4yw4Y61Ozw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.296 [XNIO-1 task-2] D-lc0MKcTLWi4yw4Y61Ozw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.297 [XNIO-1 task-2] D-lc0MKcTLWi4yw4Y61Ozw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.297 [XNIO-1 task-2] D-lc0MKcTLWi4yw4Y61Ozw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.348 [XNIO-1 task-2] 4YSNMaB2Q-SuY6Yh5gGSmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.348 [XNIO-1 task-2] 4YSNMaB2Q-SuY6Yh5gGSmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.348 [XNIO-1 task-2] 4YSNMaB2Q-SuY6Yh5gGSmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.371 [XNIO-1 task-2] mGzlHzbFQqG-mhTeezPuUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.371 [XNIO-1 task-2] mGzlHzbFQqG-mhTeezPuUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.372 [XNIO-1 task-2] mGzlHzbFQqG-mhTeezPuUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.372 [XNIO-1 task-2] mGzlHzbFQqG-mhTeezPuUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.379 [XNIO-1 task-2] 8EooTzi_RwKhHGtzjZhwmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e45b7dfd, base path is set to: null +17:00:43.379 [XNIO-1 task-2] 8EooTzi_RwKhHGtzjZhwmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.379 [XNIO-1 task-2] 8EooTzi_RwKhHGtzjZhwmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:43.382 [XNIO-1 task-2] 8EooTzi_RwKhHGtzjZhwmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e45b7dfd, base path is set to: null +17:00:43.382 [XNIO-1 task-2] 8EooTzi_RwKhHGtzjZhwmg DEBUG com.networknt.schema.TypeValidator debug - validate( "e45b7dfd", "e45b7dfd", userId) +17:00:43.393 [XNIO-1 task-2] oQx_YJjwThuPYxOkZwZxPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.408 [XNIO-1 task-2] oQx_YJjwThuPYxOkZwZxPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.409 [XNIO-1 task-2] oQx_YJjwThuPYxOkZwZxPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.425 [XNIO-1 task-2] FtKxNl9bTG2l9PrvOFC88w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.425 [XNIO-1 task-2] FtKxNl9bTG2l9PrvOFC88w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.425 [XNIO-1 task-2] FtKxNl9bTG2l9PrvOFC88w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.426 [XNIO-1 task-2] FtKxNl9bTG2l9PrvOFC88w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.438 [XNIO-1 task-2] IfvpPah1T7e99lpYmabNyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e45b7dfd +17:00:43.438 [XNIO-1 task-2] IfvpPah1T7e99lpYmabNyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.438 [XNIO-1 task-2] IfvpPah1T7e99lpYmabNyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.439 [XNIO-1 task-2] IfvpPah1T7e99lpYmabNyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e45b7dfd +17:00:43.449 [XNIO-1 task-2] CdRpW_e7SI2mIK-0kgBZcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.449 [XNIO-1 task-2] CdRpW_e7SI2mIK-0kgBZcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.450 [XNIO-1 task-2] CdRpW_e7SI2mIK-0kgBZcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.475 [XNIO-1 task-2] X15yIa2eR8Cg9TO9Up-xZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e45b7dfd, base path is set to: null +17:00:43.476 [XNIO-1 task-2] X15yIa2eR8Cg9TO9Up-xZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.476 [XNIO-1 task-2] X15yIa2eR8Cg9TO9Up-xZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:43.476 [XNIO-1 task-2] X15yIa2eR8Cg9TO9Up-xZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e45b7dfd, base path is set to: null +17:00:43.477 [XNIO-1 task-2] X15yIa2eR8Cg9TO9Up-xZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e45b7dfd", "e45b7dfd", userId) +17:00:43.493 [XNIO-1 task-2] 5CSb1PY9ROa69QOTcZoZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.493 [XNIO-1 task-2] 5CSb1PY9ROa69QOTcZoZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.494 [XNIO-1 task-2] 5CSb1PY9ROa69QOTcZoZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.494 [XNIO-1 task-2] 5CSb1PY9ROa69QOTcZoZng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.502 [XNIO-1 task-2] pD3dBUZqT7azpnK3w5luJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.502 [XNIO-1 task-2] pD3dBUZqT7azpnK3w5luJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.503 [XNIO-1 task-2] pD3dBUZqT7azpnK3w5luJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.541 [XNIO-1 task-2] jlDH9hwmQjq4AkYlb7zM7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2987f09c +17:00:43.541 [XNIO-1 task-2] jlDH9hwmQjq4AkYlb7zM7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.541 [XNIO-1 task-2] jlDH9hwmQjq4AkYlb7zM7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.541 [XNIO-1 task-2] jlDH9hwmQjq4AkYlb7zM7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2987f09c +17:00:43.569 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6b5c763e-4f45-4f89-b6cc-14d644c57f9b +17:00:43.588 [XNIO-1 task-2] 70Si4IDBRFG13tbeRV-B4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.588 [XNIO-1 task-2] 70Si4IDBRFG13tbeRV-B4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.589 [XNIO-1 task-2] 70Si4IDBRFG13tbeRV-B4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.589 [XNIO-1 task-2] 70Si4IDBRFG13tbeRV-B4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.590 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6b5c763e-4f45-4f89-b6cc-14d644c57f9b +17:00:43.590 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6b5c763e-4f45-4f89-b6cc-14d644c57f9b +17:00:43.597 [XNIO-1 task-2] A53UMLYWSmidoK7Efz5Xww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.597 [XNIO-1 task-2] A53UMLYWSmidoK7Efz5Xww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.600 [XNIO-1 task-2] A53UMLYWSmidoK7Efz5Xww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.600 [XNIO-1 task-2] A53UMLYWSmidoK7Efz5Xww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:43.607 [XNIO-1 task-2] pMBiYZE3S76IoHKK8I1X1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.608 [XNIO-1 task-2] pMBiYZE3S76IoHKK8I1X1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.608 [XNIO-1 task-2] pMBiYZE3S76IoHKK8I1X1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.674 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/25a49246, base path is set to: null +17:00:43.674 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.675 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:43.675 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:43.675 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/25a49246, base path is set to: null +17:00:43.676 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG com.networknt.schema.TypeValidator debug - validate( "25a49246", "25a49246", userId) +17:00:43.676 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6232cd37-8c59-4f6d-9f7c-8475a565a340","newPassword":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPasswordConfirm":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7"}, {"password":"6232cd37-8c59-4f6d-9f7c-8475a565a340","newPassword":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPasswordConfirm":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7"}, requestBody) +17:00:43.676 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG com.networknt.schema.TypeValidator debug - validate( "2416caa9-3101-4d1c-b0d5-0a98bf0661c7", {"password":"6232cd37-8c59-4f6d-9f7c-8475a565a340","newPassword":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPasswordConfirm":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7"}, requestBody.newPasswordConfirm) +17:00:43.676 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG com.networknt.schema.TypeValidator debug - validate( "6232cd37-8c59-4f6d-9f7c-8475a565a340", {"password":"6232cd37-8c59-4f6d-9f7c-8475a565a340","newPassword":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPasswordConfirm":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7"}, requestBody.password) +17:00:43.676 [XNIO-1 task-2] -OYF3NVORd2ZIFqOQR0Onw DEBUG com.networknt.schema.TypeValidator debug - validate( "2416caa9-3101-4d1c-b0d5-0a98bf0661c7", {"password":"6232cd37-8c59-4f6d-9f7c-8475a565a340","newPassword":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPasswordConfirm":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7"}, requestBody.newPassword) +17:00:43.711 [XNIO-1 task-2] v3cC-eNTQm2aQG2FmWvKwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.712 [XNIO-1 task-2] v3cC-eNTQm2aQG2FmWvKwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.712 [XNIO-1 task-2] v3cC-eNTQm2aQG2FmWvKwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.727 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b89fcc0b +17:00:43.732 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b89fcc0b +17:00:43.754 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25a49246 +17:00:43.755 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.755 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.755 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:43.755 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25a49246 +17:00:43.756 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPassword":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPasswordConfirm":"d3432682-79c9-43ac-88d5-8aa1449d9824"}, {"password":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPassword":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPasswordConfirm":"d3432682-79c9-43ac-88d5-8aa1449d9824"}, requestBody) +17:00:43.756 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPassword":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPasswordConfirm":"d3432682-79c9-43ac-88d5-8aa1449d9824"}, {"password":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPassword":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPasswordConfirm":"d3432682-79c9-43ac-88d5-8aa1449d9824"}, requestBody) +17:00:43.756 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG com.networknt.schema.FormatValidator debug - validate( "d3432682-79c9-43ac-88d5-8aa1449d9824", {"password":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPassword":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPasswordConfirm":"d3432682-79c9-43ac-88d5-8aa1449d9824"}, requestBody.newPasswordConfirm) +17:00:43.756 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG com.networknt.schema.FormatValidator debug - validate( "2416caa9-3101-4d1c-b0d5-0a98bf0661c7", {"password":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPassword":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPasswordConfirm":"d3432682-79c9-43ac-88d5-8aa1449d9824"}, requestBody.password) +17:00:43.756 [XNIO-1 task-2] QUUNP2vfSKquEELAQQdk1w DEBUG com.networknt.schema.FormatValidator debug - validate( "d3432682-79c9-43ac-88d5-8aa1449d9824", {"password":"2416caa9-3101-4d1c-b0d5-0a98bf0661c7","newPassword":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPasswordConfirm":"d3432682-79c9-43ac-88d5-8aa1449d9824"}, requestBody.newPassword) +17:00:43.811 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b89fcc0b +17:00:43.811 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.811 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.811 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:43.812 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b89fcc0b +17:00:43.812 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"268401d8-aab3-4d52-98cf-55794f031e33","newPassword":"4e78528c-0e41-4594-aa3b-213617089b45","newPasswordConfirm":"4e78528c-0e41-4594-aa3b-213617089b45"}, {"password":"268401d8-aab3-4d52-98cf-55794f031e33","newPassword":"4e78528c-0e41-4594-aa3b-213617089b45","newPasswordConfirm":"4e78528c-0e41-4594-aa3b-213617089b45"}, requestBody) +17:00:43.812 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"268401d8-aab3-4d52-98cf-55794f031e33","newPassword":"4e78528c-0e41-4594-aa3b-213617089b45","newPasswordConfirm":"4e78528c-0e41-4594-aa3b-213617089b45"}, {"password":"268401d8-aab3-4d52-98cf-55794f031e33","newPassword":"4e78528c-0e41-4594-aa3b-213617089b45","newPasswordConfirm":"4e78528c-0e41-4594-aa3b-213617089b45"}, requestBody) +17:00:43.812 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "4e78528c-0e41-4594-aa3b-213617089b45", {"password":"268401d8-aab3-4d52-98cf-55794f031e33","newPassword":"4e78528c-0e41-4594-aa3b-213617089b45","newPasswordConfirm":"4e78528c-0e41-4594-aa3b-213617089b45"}, requestBody.newPasswordConfirm) +17:00:43.813 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "268401d8-aab3-4d52-98cf-55794f031e33", {"password":"268401d8-aab3-4d52-98cf-55794f031e33","newPassword":"4e78528c-0e41-4594-aa3b-213617089b45","newPasswordConfirm":"4e78528c-0e41-4594-aa3b-213617089b45"}, requestBody.password) +17:00:43.813 [XNIO-1 task-2] aXVbDr8bR6KUNGTNtNen9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "4e78528c-0e41-4594-aa3b-213617089b45", {"password":"268401d8-aab3-4d52-98cf-55794f031e33","newPassword":"4e78528c-0e41-4594-aa3b-213617089b45","newPasswordConfirm":"4e78528c-0e41-4594-aa3b-213617089b45"}, requestBody.newPassword) +17:00:43.829 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b89fcc0b +17:00:43.844 [XNIO-1 task-2] qXDGi03QTYmKe2dMLQvgfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.844 [XNIO-1 task-2] qXDGi03QTYmKe2dMLQvgfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.845 [XNIO-1 task-2] qXDGi03QTYmKe2dMLQvgfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.872 [XNIO-1 task-2] 4yi3e7-GT0-sdF0kwCBuJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.872 [XNIO-1 task-2] 4yi3e7-GT0-sdF0kwCBuJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.872 [XNIO-1 task-2] 4yi3e7-GT0-sdF0kwCBuJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.873 [XNIO-1 task-2] 4yi3e7-GT0-sdF0kwCBuJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:43.887 [XNIO-1 task-2] mVzytTSsR6iWO5qujPrnMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.887 [XNIO-1 task-2] mVzytTSsR6iWO5qujPrnMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.887 [XNIO-1 task-2] mVzytTSsR6iWO5qujPrnMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.890 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2040b941-18d0-4c27-8760-c5fcd7e166ac +17:00:43.915 [XNIO-1 task-2] -3yYgRzEQJmnuqna0UyoDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.916 [XNIO-1 task-2] -3yYgRzEQJmnuqna0UyoDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:43.916 [XNIO-1 task-2] -3yYgRzEQJmnuqna0UyoDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:43.923 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2040b941-18d0-4c27-8760-c5fcd7e166ac +17:00:43.961 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2040b941-18d0-4c27-8760-c5fcd7e166ac +17:00:43.969 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5312473d +17:00:43.969 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:43.970 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:43.970 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:43.971 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5312473d +17:00:43.973 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"46935ce0-ca88-4bd0-82e4-aaba891f8963","newPassword":"11bbc361-a824-4020-b400-7568d5645f84","newPasswordConfirm":"11bbc361-a824-4020-b400-7568d5645f84"}, {"password":"46935ce0-ca88-4bd0-82e4-aaba891f8963","newPassword":"11bbc361-a824-4020-b400-7568d5645f84","newPasswordConfirm":"11bbc361-a824-4020-b400-7568d5645f84"}, requestBody) +17:00:43.973 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"46935ce0-ca88-4bd0-82e4-aaba891f8963","newPassword":"11bbc361-a824-4020-b400-7568d5645f84","newPasswordConfirm":"11bbc361-a824-4020-b400-7568d5645f84"}, {"password":"46935ce0-ca88-4bd0-82e4-aaba891f8963","newPassword":"11bbc361-a824-4020-b400-7568d5645f84","newPasswordConfirm":"11bbc361-a824-4020-b400-7568d5645f84"}, requestBody) +17:00:43.973 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG com.networknt.schema.FormatValidator debug - validate( "11bbc361-a824-4020-b400-7568d5645f84", {"password":"46935ce0-ca88-4bd0-82e4-aaba891f8963","newPassword":"11bbc361-a824-4020-b400-7568d5645f84","newPasswordConfirm":"11bbc361-a824-4020-b400-7568d5645f84"}, requestBody.newPasswordConfirm) +17:00:43.973 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG com.networknt.schema.FormatValidator debug - validate( "46935ce0-ca88-4bd0-82e4-aaba891f8963", {"password":"46935ce0-ca88-4bd0-82e4-aaba891f8963","newPassword":"11bbc361-a824-4020-b400-7568d5645f84","newPasswordConfirm":"11bbc361-a824-4020-b400-7568d5645f84"}, requestBody.password) +17:00:43.973 [XNIO-1 task-2] GsmWIdyHQiKHP3qzjx7k4A DEBUG com.networknt.schema.FormatValidator debug - validate( "11bbc361-a824-4020-b400-7568d5645f84", {"password":"46935ce0-ca88-4bd0-82e4-aaba891f8963","newPassword":"11bbc361-a824-4020-b400-7568d5645f84","newPasswordConfirm":"11bbc361-a824-4020-b400-7568d5645f84"}, requestBody.newPassword) +17:00:44.005 [XNIO-1 task-2] 9D5aW2XKRlau2o8w9YCNJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.005 [XNIO-1 task-2] 9D5aW2XKRlau2o8w9YCNJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.009 [XNIO-1 task-2] 9D5aW2XKRlau2o8w9YCNJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.021 [XNIO-1 task-2] lbqhBMLeQGSme7Ec6v46lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.021 [XNIO-1 task-2] lbqhBMLeQGSme7Ec6v46lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.021 [XNIO-1 task-2] lbqhBMLeQGSme7Ec6v46lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.022 [XNIO-1 task-2] lbqhBMLeQGSme7Ec6v46lQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.034 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5312473d +17:00:44.034 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.034 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.034 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.034 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5312473d +17:00:44.035 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"11bbc361-a824-4020-b400-7568d5645f84","newPassword":"ca95f17c-734e-4dad-948b-b07f04e3aa3d","newPasswordConfirm":"ca95f17c-734e-4dad-948b-b07f04e3aa3d"}, {"password":"11bbc361-a824-4020-b400-7568d5645f84","newPassword":"ca95f17c-734e-4dad-948b-b07f04e3aa3d","newPasswordConfirm":"ca95f17c-734e-4dad-948b-b07f04e3aa3d"}, requestBody) +17:00:44.035 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"11bbc361-a824-4020-b400-7568d5645f84","newPassword":"ca95f17c-734e-4dad-948b-b07f04e3aa3d","newPasswordConfirm":"ca95f17c-734e-4dad-948b-b07f04e3aa3d"}, {"password":"11bbc361-a824-4020-b400-7568d5645f84","newPassword":"ca95f17c-734e-4dad-948b-b07f04e3aa3d","newPasswordConfirm":"ca95f17c-734e-4dad-948b-b07f04e3aa3d"}, requestBody) +17:00:44.035 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ca95f17c-734e-4dad-948b-b07f04e3aa3d", {"password":"11bbc361-a824-4020-b400-7568d5645f84","newPassword":"ca95f17c-734e-4dad-948b-b07f04e3aa3d","newPasswordConfirm":"ca95f17c-734e-4dad-948b-b07f04e3aa3d"}, requestBody.newPasswordConfirm) +17:00:44.035 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "11bbc361-a824-4020-b400-7568d5645f84", {"password":"11bbc361-a824-4020-b400-7568d5645f84","newPassword":"ca95f17c-734e-4dad-948b-b07f04e3aa3d","newPasswordConfirm":"ca95f17c-734e-4dad-948b-b07f04e3aa3d"}, requestBody.password) +17:00:44.035 [XNIO-1 task-2] jytv7LtTSbyZdKqy6ueEJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ca95f17c-734e-4dad-948b-b07f04e3aa3d", {"password":"11bbc361-a824-4020-b400-7568d5645f84","newPassword":"ca95f17c-734e-4dad-948b-b07f04e3aa3d","newPasswordConfirm":"ca95f17c-734e-4dad-948b-b07f04e3aa3d"}, requestBody.newPassword) +17:00:44.066 [XNIO-1 task-2] wx0OMKg6RPS5xDYaoHFBKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5312473d +17:00:44.066 [XNIO-1 task-2] wx0OMKg6RPS5xDYaoHFBKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.066 [XNIO-1 task-2] wx0OMKg6RPS5xDYaoHFBKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.066 [XNIO-1 task-2] wx0OMKg6RPS5xDYaoHFBKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5312473d +17:00:44.076 [XNIO-1 task-2] mPkznb1wQ-qFL3nw_OY7FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c5e28be1, base path is set to: null +17:00:44.077 [XNIO-1 task-2] mPkznb1wQ-qFL3nw_OY7FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.077 [XNIO-1 task-2] mPkznb1wQ-qFL3nw_OY7FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.077 [XNIO-1 task-2] mPkznb1wQ-qFL3nw_OY7FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c5e28be1, base path is set to: null +17:00:44.081 [XNIO-1 task-2] mPkznb1wQ-qFL3nw_OY7FA DEBUG com.networknt.schema.TypeValidator debug - validate( "c5e28be1", "c5e28be1", userId) +17:00:44.101 [XNIO-1 task-2] RBPJCSPgRmenxsNnnBLW_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/25a49246 +17:00:44.101 [XNIO-1 task-2] RBPJCSPgRmenxsNnnBLW_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.101 [XNIO-1 task-2] RBPJCSPgRmenxsNnnBLW_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.102 [XNIO-1 task-2] RBPJCSPgRmenxsNnnBLW_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/25a49246 +17:00:44.112 [XNIO-1 task-2] 6aoTYVHqR36ozCPgCmvLAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.112 [XNIO-1 task-2] 6aoTYVHqR36ozCPgCmvLAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.112 [XNIO-1 task-2] 6aoTYVHqR36ozCPgCmvLAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.113 [XNIO-1 task-2] 6aoTYVHqR36ozCPgCmvLAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.122 [XNIO-1 task-2] SpDgddW8TkKZKJEb4RRNzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b89fcc0b, base path is set to: null +17:00:44.122 [XNIO-1 task-2] SpDgddW8TkKZKJEb4RRNzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.122 [XNIO-1 task-2] SpDgddW8TkKZKJEb4RRNzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.122 [XNIO-1 task-2] SpDgddW8TkKZKJEb4RRNzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b89fcc0b, base path is set to: null +17:00:44.122 [XNIO-1 task-2] SpDgddW8TkKZKJEb4RRNzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b89fcc0b", "b89fcc0b", userId) +17:00:44.125 [XNIO-1 task-2] 9Qp7_dQhRIKMnqUrK0fllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/60fc213e +17:00:44.125 [XNIO-1 task-2] 9Qp7_dQhRIKMnqUrK0fllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.125 [XNIO-1 task-2] 9Qp7_dQhRIKMnqUrK0fllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.125 [XNIO-1 task-2] 9Qp7_dQhRIKMnqUrK0fllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/60fc213e +17:00:44.130 [XNIO-1 task-2] D3DsI1zmTtS4TXXlpuDqlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.130 [XNIO-1 task-2] D3DsI1zmTtS4TXXlpuDqlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.131 [XNIO-1 task-2] D3DsI1zmTtS4TXXlpuDqlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.131 [XNIO-1 task-2] D3DsI1zmTtS4TXXlpuDqlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.152 [XNIO-1 task-2] aMAgzaxaTO2Hyc-j3vgP0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.152 [XNIO-1 task-2] aMAgzaxaTO2Hyc-j3vgP0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.153 [XNIO-1 task-2] aMAgzaxaTO2Hyc-j3vgP0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.155 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b89fcc0b +17:00:44.165 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:15f0e259 +17:00:44.167 [XNIO-1 task-2] xmOScPgGSm6e8S7q0Mq6og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.172 [XNIO-1 task-2] xmOScPgGSm6e8S7q0Mq6og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.173 [XNIO-1 task-2] xmOScPgGSm6e8S7q0Mq6og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.203 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6624d344-9a37-4e00-a256-59a261a54eca +17:00:44.221 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6624d344-9a37-4e00-a256-59a261a54eca +17:00:44.231 [XNIO-1 task-2] zpPfN679QkiAyvg8HHTeaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/60fc213e +17:00:44.231 [XNIO-1 task-2] zpPfN679QkiAyvg8HHTeaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.231 [XNIO-1 task-2] zpPfN679QkiAyvg8HHTeaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.232 [XNIO-1 task-2] zpPfN679QkiAyvg8HHTeaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/60fc213e +17:00:44.237 [XNIO-1 task-2] CO7bUicGQFy-U0yfPIB_5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.237 [XNIO-1 task-2] CO7bUicGQFy-U0yfPIB_5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.237 [XNIO-1 task-2] CO7bUicGQFy-U0yfPIB_5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.238 [XNIO-1 task-2] CO7bUicGQFy-U0yfPIB_5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.260 [XNIO-1 task-2] S2nAhavMQQGmlGR6v49xVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.260 [XNIO-1 task-2] S2nAhavMQQGmlGR6v49xVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.261 [XNIO-1 task-2] S2nAhavMQQGmlGR6v49xVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.261 [XNIO-1 task-2] S2nAhavMQQGmlGR6v49xVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.271 [XNIO-1 task-2] dVJ5AOTmQKKuWwwLf7gVyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60fc213e, base path is set to: null +17:00:44.272 [XNIO-1 task-2] dVJ5AOTmQKKuWwwLf7gVyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.272 [XNIO-1 task-2] dVJ5AOTmQKKuWwwLf7gVyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.272 [XNIO-1 task-2] dVJ5AOTmQKKuWwwLf7gVyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60fc213e, base path is set to: null +17:00:44.272 [XNIO-1 task-2] dVJ5AOTmQKKuWwwLf7gVyA DEBUG com.networknt.schema.TypeValidator debug - validate( "60fc213e", "60fc213e", userId) +17:00:44.280 [XNIO-1 task-2] BisL0qbOQP6w9FG75CYX8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.280 [XNIO-1 task-2] BisL0qbOQP6w9FG75CYX8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.281 [XNIO-1 task-2] BisL0qbOQP6w9FG75CYX8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.291 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:25ec7d9a +17:00:44.306 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d12722c, base path is set to: null +17:00:44.306 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.307 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.307 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:44.307 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d12722c, base path is set to: null +17:00:44.308 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG com.networknt.schema.TypeValidator debug - validate( "8d12722c", "8d12722c", userId) +17:00:44.308 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5faf80e9-a380-4911-a0ad-1cdf9c53a0c4","newPassword":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPasswordConfirm":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41"}, {"password":"5faf80e9-a380-4911-a0ad-1cdf9c53a0c4","newPassword":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPasswordConfirm":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41"}, requestBody) +17:00:44.308 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG com.networknt.schema.TypeValidator debug - validate( "ead586ed-4e4a-47bf-a9b8-6bb4217c8c41", {"password":"5faf80e9-a380-4911-a0ad-1cdf9c53a0c4","newPassword":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPasswordConfirm":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41"}, requestBody.newPasswordConfirm) +17:00:44.308 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG com.networknt.schema.TypeValidator debug - validate( "5faf80e9-a380-4911-a0ad-1cdf9c53a0c4", {"password":"5faf80e9-a380-4911-a0ad-1cdf9c53a0c4","newPassword":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPasswordConfirm":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41"}, requestBody.password) +17:00:44.309 [XNIO-1 task-2] HxCktKu9R4aTVwrb7oUJqg DEBUG com.networknt.schema.TypeValidator debug - validate( "ead586ed-4e4a-47bf-a9b8-6bb4217c8c41", {"password":"5faf80e9-a380-4911-a0ad-1cdf9c53a0c4","newPassword":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPasswordConfirm":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41"}, requestBody.newPassword) +17:00:44.343 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d12722c, base path is set to: null +17:00:44.344 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.344 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.344 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:44.344 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d12722c, base path is set to: null +17:00:44.345 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG com.networknt.schema.TypeValidator debug - validate( "8d12722c", "8d12722c", userId) +17:00:44.345 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPassword":"ba3d2b00-8794-4d26-85f5-728bc717085f","newPasswordConfirm":"ba3d2b00-8794-4d26-85f5-728bc717085f"}, {"password":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPassword":"ba3d2b00-8794-4d26-85f5-728bc717085f","newPasswordConfirm":"ba3d2b00-8794-4d26-85f5-728bc717085f"}, requestBody) +17:00:44.345 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG com.networknt.schema.TypeValidator debug - validate( "ba3d2b00-8794-4d26-85f5-728bc717085f", {"password":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPassword":"ba3d2b00-8794-4d26-85f5-728bc717085f","newPasswordConfirm":"ba3d2b00-8794-4d26-85f5-728bc717085f"}, requestBody.newPasswordConfirm) +17:00:44.345 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG com.networknt.schema.TypeValidator debug - validate( "ead586ed-4e4a-47bf-a9b8-6bb4217c8c41", {"password":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPassword":"ba3d2b00-8794-4d26-85f5-728bc717085f","newPasswordConfirm":"ba3d2b00-8794-4d26-85f5-728bc717085f"}, requestBody.password) +17:00:44.345 [XNIO-1 task-2] ALhnKtuzTvWNGBQLwO2kXg DEBUG com.networknt.schema.TypeValidator debug - validate( "ba3d2b00-8794-4d26-85f5-728bc717085f", {"password":"ead586ed-4e4a-47bf-a9b8-6bb4217c8c41","newPassword":"ba3d2b00-8794-4d26-85f5-728bc717085f","newPasswordConfirm":"ba3d2b00-8794-4d26-85f5-728bc717085f"}, requestBody.newPassword) +17:00:44.385 [XNIO-1 task-2] xmp6MBVZTbSI9Llm0zL6Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8d12722c, base path is set to: null +17:00:44.386 [XNIO-1 task-2] xmp6MBVZTbSI9Llm0zL6Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.386 [XNIO-1 task-2] xmp6MBVZTbSI9Llm0zL6Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.386 [XNIO-1 task-2] xmp6MBVZTbSI9Llm0zL6Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8d12722c, base path is set to: null +17:00:44.386 [XNIO-1 task-2] xmp6MBVZTbSI9Llm0zL6Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "8d12722c", "8d12722c", userId) +17:00:44.436 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.437 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.437 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.437 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.437 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.438 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a9bb2946-228d-464f-ad11-a194dd96e787","newPassword":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPasswordConfirm":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda"}, {"password":"a9bb2946-228d-464f-ad11-a194dd96e787","newPassword":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPasswordConfirm":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda"}, requestBody) +17:00:44.438 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a9bb2946-228d-464f-ad11-a194dd96e787","newPassword":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPasswordConfirm":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda"}, {"password":"a9bb2946-228d-464f-ad11-a194dd96e787","newPassword":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPasswordConfirm":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda"}, requestBody) +17:00:44.438 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG com.networknt.schema.FormatValidator debug - validate( "2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda", {"password":"a9bb2946-228d-464f-ad11-a194dd96e787","newPassword":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPasswordConfirm":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda"}, requestBody.newPasswordConfirm) +17:00:44.438 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG com.networknt.schema.FormatValidator debug - validate( "a9bb2946-228d-464f-ad11-a194dd96e787", {"password":"a9bb2946-228d-464f-ad11-a194dd96e787","newPassword":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPasswordConfirm":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda"}, requestBody.password) +17:00:44.438 [XNIO-1 task-2] Rm7Bc9wyRKCppK9fIj4Mhg DEBUG com.networknt.schema.FormatValidator debug - validate( "2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda", {"password":"a9bb2946-228d-464f-ad11-a194dd96e787","newPassword":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPasswordConfirm":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda"}, requestBody.newPassword) +17:00:44.453 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25ec7d9a +17:00:44.465 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.465 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.465 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.465 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.466 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.466 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPassword":"487b71bc-da8e-4ede-b882-4714b7b91726","newPasswordConfirm":"487b71bc-da8e-4ede-b882-4714b7b91726"}, {"password":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPassword":"487b71bc-da8e-4ede-b882-4714b7b91726","newPasswordConfirm":"487b71bc-da8e-4ede-b882-4714b7b91726"}, requestBody) +17:00:44.479 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPassword":"487b71bc-da8e-4ede-b882-4714b7b91726","newPasswordConfirm":"487b71bc-da8e-4ede-b882-4714b7b91726"}, {"password":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPassword":"487b71bc-da8e-4ede-b882-4714b7b91726","newPasswordConfirm":"487b71bc-da8e-4ede-b882-4714b7b91726"}, requestBody) +17:00:44.479 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "487b71bc-da8e-4ede-b882-4714b7b91726", {"password":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPassword":"487b71bc-da8e-4ede-b882-4714b7b91726","newPasswordConfirm":"487b71bc-da8e-4ede-b882-4714b7b91726"}, requestBody.newPasswordConfirm) +17:00:44.479 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda", {"password":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPassword":"487b71bc-da8e-4ede-b882-4714b7b91726","newPasswordConfirm":"487b71bc-da8e-4ede-b882-4714b7b91726"}, requestBody.password) +17:00:44.479 [XNIO-1 task-2] KOJLz_yGSeeRWj1HVX3mRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "487b71bc-da8e-4ede-b882-4714b7b91726", {"password":"2a6d80c1-48f0-4d2d-8efc-d8d8adff1eda","newPassword":"487b71bc-da8e-4ede-b882-4714b7b91726","newPasswordConfirm":"487b71bc-da8e-4ede-b882-4714b7b91726"}, requestBody.newPassword) +17:00:44.494 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25ec7d9a +17:00:44.503 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:15f0e259 +17:00:44.511 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.512 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.512 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.512 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.512 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.513 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"487b71bc-da8e-4ede-b882-4714b7b91726","newPassword":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPasswordConfirm":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48"}, {"password":"487b71bc-da8e-4ede-b882-4714b7b91726","newPassword":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPasswordConfirm":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48"}, requestBody) +17:00:44.513 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"487b71bc-da8e-4ede-b882-4714b7b91726","newPassword":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPasswordConfirm":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48"}, {"password":"487b71bc-da8e-4ede-b882-4714b7b91726","newPassword":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPasswordConfirm":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48"}, requestBody) +17:00:44.513 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d12cc2d5-ef0a-4590-ab28-b3750b14fb48", {"password":"487b71bc-da8e-4ede-b882-4714b7b91726","newPassword":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPasswordConfirm":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48"}, requestBody.newPasswordConfirm) +17:00:44.513 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "487b71bc-da8e-4ede-b882-4714b7b91726", {"password":"487b71bc-da8e-4ede-b882-4714b7b91726","newPassword":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPasswordConfirm":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48"}, requestBody.password) +17:00:44.513 [XNIO-1 task-2] w20qkAvJTNeqP_1I8FKmQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d12cc2d5-ef0a-4590-ab28-b3750b14fb48", {"password":"487b71bc-da8e-4ede-b882-4714b7b91726","newPassword":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPasswordConfirm":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48"}, requestBody.newPassword) +17:00:44.527 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25ec7d9a +17:00:44.539 [XNIO-1 task-2] m8QK1v1jQFqLogi2BdrirQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.539 [XNIO-1 task-2] m8QK1v1jQFqLogi2BdrirQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.539 [XNIO-1 task-2] m8QK1v1jQFqLogi2BdrirQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.578 [XNIO-1 task-2] LEnUCHEfSiicEvFOtCK1HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.578 [XNIO-1 task-2] LEnUCHEfSiicEvFOtCK1HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.578 [XNIO-1 task-2] LEnUCHEfSiicEvFOtCK1HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.588 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f6673cfd +17:00:44.598 [XNIO-1 task-2] fU-TkBG8QduUWll4FT2vbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25ec7d9a, base path is set to: null +17:00:44.599 [XNIO-1 task-2] fU-TkBG8QduUWll4FT2vbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.599 [XNIO-1 task-2] fU-TkBG8QduUWll4FT2vbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.599 [XNIO-1 task-2] fU-TkBG8QduUWll4FT2vbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25ec7d9a, base path is set to: null +17:00:44.599 [XNIO-1 task-2] fU-TkBG8QduUWll4FT2vbg DEBUG com.networknt.schema.TypeValidator debug - validate( "25ec7d9a", "25ec7d9a", userId) +17:00:44.606 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.606 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.606 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.606 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.607 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25ec7d9a +17:00:44.607 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPassword":"2c952b1d-f6f6-4019-8a97-147409797090","newPasswordConfirm":"2c952b1d-f6f6-4019-8a97-147409797090"}, {"password":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPassword":"2c952b1d-f6f6-4019-8a97-147409797090","newPasswordConfirm":"2c952b1d-f6f6-4019-8a97-147409797090"}, requestBody) +17:00:44.608 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPassword":"2c952b1d-f6f6-4019-8a97-147409797090","newPasswordConfirm":"2c952b1d-f6f6-4019-8a97-147409797090"}, {"password":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPassword":"2c952b1d-f6f6-4019-8a97-147409797090","newPasswordConfirm":"2c952b1d-f6f6-4019-8a97-147409797090"}, requestBody) +17:00:44.608 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG com.networknt.schema.FormatValidator debug - validate( "2c952b1d-f6f6-4019-8a97-147409797090", {"password":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPassword":"2c952b1d-f6f6-4019-8a97-147409797090","newPasswordConfirm":"2c952b1d-f6f6-4019-8a97-147409797090"}, requestBody.newPasswordConfirm) +17:00:44.608 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG com.networknt.schema.FormatValidator debug - validate( "d12cc2d5-ef0a-4590-ab28-b3750b14fb48", {"password":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPassword":"2c952b1d-f6f6-4019-8a97-147409797090","newPasswordConfirm":"2c952b1d-f6f6-4019-8a97-147409797090"}, requestBody.password) +17:00:44.608 [XNIO-1 task-2] nfNA9c27TWqZH4FiOO3XcA DEBUG com.networknt.schema.FormatValidator debug - validate( "2c952b1d-f6f6-4019-8a97-147409797090", {"password":"d12cc2d5-ef0a-4590-ab28-b3750b14fb48","newPassword":"2c952b1d-f6f6-4019-8a97-147409797090","newPasswordConfirm":"2c952b1d-f6f6-4019-8a97-147409797090"}, requestBody.newPassword) +17:00:44.635 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:15f0e259 +17:00:44.639 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:25ec7d9a +17:00:44.651 [XNIO-1 task-2] aWtNLn9TQNeekmZBvw1etQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.651 [XNIO-1 task-2] aWtNLn9TQNeekmZBvw1etQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.651 [XNIO-1 task-2] aWtNLn9TQNeekmZBvw1etQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.652 [XNIO-1 task-2] aWtNLn9TQNeekmZBvw1etQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:44.654 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.664 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25a49246 +17:00:44.664 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.664 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.664 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.665 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/25a49246 +17:00:44.666 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPassword":"d7839781-8da3-4402-a722-db8ea4e9f881","newPasswordConfirm":"d7839781-8da3-4402-a722-db8ea4e9f881"}, {"password":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPassword":"d7839781-8da3-4402-a722-db8ea4e9f881","newPasswordConfirm":"d7839781-8da3-4402-a722-db8ea4e9f881"}, requestBody) +17:00:44.666 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPassword":"d7839781-8da3-4402-a722-db8ea4e9f881","newPasswordConfirm":"d7839781-8da3-4402-a722-db8ea4e9f881"}, {"password":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPassword":"d7839781-8da3-4402-a722-db8ea4e9f881","newPasswordConfirm":"d7839781-8da3-4402-a722-db8ea4e9f881"}, requestBody) +17:00:44.666 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d7839781-8da3-4402-a722-db8ea4e9f881", {"password":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPassword":"d7839781-8da3-4402-a722-db8ea4e9f881","newPasswordConfirm":"d7839781-8da3-4402-a722-db8ea4e9f881"}, requestBody.newPasswordConfirm) +17:00:44.666 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d3432682-79c9-43ac-88d5-8aa1449d9824", {"password":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPassword":"d7839781-8da3-4402-a722-db8ea4e9f881","newPasswordConfirm":"d7839781-8da3-4402-a722-db8ea4e9f881"}, requestBody.password) +17:00:44.667 [XNIO-1 task-2] E7BXJ-htTWWu0U1uCqUylQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d7839781-8da3-4402-a722-db8ea4e9f881", {"password":"d3432682-79c9-43ac-88d5-8aa1449d9824","newPassword":"d7839781-8da3-4402-a722-db8ea4e9f881","newPasswordConfirm":"d7839781-8da3-4402-a722-db8ea4e9f881"}, requestBody.newPassword) +17:00:44.712 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:64b7b8dd-9753-480a-b61b-63af988ba826 +17:00:44.723 [XNIO-1 task-2] ExJjndlHSKWfMOLGbfd5HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25ec7d9a, base path is set to: null +17:00:44.724 [XNIO-1 task-2] ExJjndlHSKWfMOLGbfd5HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.724 [XNIO-1 task-2] ExJjndlHSKWfMOLGbfd5HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.724 [XNIO-1 task-2] ExJjndlHSKWfMOLGbfd5HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25ec7d9a, base path is set to: null +17:00:44.724 [XNIO-1 task-2] ExJjndlHSKWfMOLGbfd5HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25ec7d9a", "25ec7d9a", userId) +17:00:44.729 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c5d7b5f +17:00:44.729 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.730 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.730 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.730 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c5d7b5f +17:00:44.734 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c33fce46-e302-489d-800c-60170d5a422b","newPassword":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPasswordConfirm":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6"}, {"password":"c33fce46-e302-489d-800c-60170d5a422b","newPassword":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPasswordConfirm":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6"}, requestBody) +17:00:44.735 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c33fce46-e302-489d-800c-60170d5a422b","newPassword":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPasswordConfirm":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6"}, {"password":"c33fce46-e302-489d-800c-60170d5a422b","newPassword":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPasswordConfirm":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6"}, requestBody) +17:00:44.735 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG com.networknt.schema.FormatValidator debug - validate( "87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6", {"password":"c33fce46-e302-489d-800c-60170d5a422b","newPassword":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPasswordConfirm":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6"}, requestBody.newPasswordConfirm) +17:00:44.735 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG com.networknt.schema.FormatValidator debug - validate( "c33fce46-e302-489d-800c-60170d5a422b", {"password":"c33fce46-e302-489d-800c-60170d5a422b","newPassword":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPasswordConfirm":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6"}, requestBody.password) +17:00:44.735 [XNIO-1 task-2] h_ivVAipTQacj3gFe2NV_w DEBUG com.networknt.schema.FormatValidator debug - validate( "87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6", {"password":"c33fce46-e302-489d-800c-60170d5a422b","newPassword":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPasswordConfirm":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6"}, requestBody.newPassword) +17:00:44.765 [XNIO-1 task-2] vqYvKelkRnupEUjmDYDLlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/25a49246 +17:00:44.766 [XNIO-1 task-2] vqYvKelkRnupEUjmDYDLlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.766 [XNIO-1 task-2] vqYvKelkRnupEUjmDYDLlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.766 [XNIO-1 task-2] vqYvKelkRnupEUjmDYDLlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/25a49246 +17:00:44.784 [XNIO-1 task-2] ahXAgcNKSwmZlqUsnNtRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25ec7d9a, base path is set to: null +17:00:44.785 [XNIO-1 task-2] ahXAgcNKSwmZlqUsnNtRHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.785 [XNIO-1 task-2] ahXAgcNKSwmZlqUsnNtRHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:44.785 [XNIO-1 task-2] ahXAgcNKSwmZlqUsnNtRHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/25ec7d9a, base path is set to: null +17:00:44.785 [XNIO-1 task-2] ahXAgcNKSwmZlqUsnNtRHA DEBUG com.networknt.schema.TypeValidator debug - validate( "25ec7d9a", "25ec7d9a", userId) +17:00:44.790 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:44.805 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c5d7b5f +17:00:44.805 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.805 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.806 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.806 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c5d7b5f +17:00:44.807 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPassword":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2","newPasswordConfirm":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2"}, {"password":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPassword":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2","newPasswordConfirm":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2"}, requestBody) +17:00:44.807 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPassword":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2","newPasswordConfirm":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2"}, {"password":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPassword":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2","newPasswordConfirm":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2"}, requestBody) +17:00:44.807 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "f24eb79a-06c6-407e-bc4f-72e10e89f1a2", {"password":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPassword":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2","newPasswordConfirm":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2"}, requestBody.newPasswordConfirm) +17:00:44.807 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6", {"password":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPassword":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2","newPasswordConfirm":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2"}, requestBody.password) +17:00:44.807 [XNIO-1 task-2] 6gqgF_nGQW2375Ow82m9Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "f24eb79a-06c6-407e-bc4f-72e10e89f1a2", {"password":"87ce7af6-bab6-4a5a-b0f7-22a739c5a0e6","newPassword":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2","newPasswordConfirm":"f24eb79a-06c6-407e-bc4f-72e10e89f1a2"}, requestBody.newPassword) +17:00:44.840 [XNIO-1 task-2] Nifk0XXlT3yO8baIhwLbLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.840 [XNIO-1 task-2] Nifk0XXlT3yO8baIhwLbLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.840 [XNIO-1 task-2] Nifk0XXlT3yO8baIhwLbLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.859 [XNIO-1 task-2] _hHIQR9CTuqRLqHPrrRPLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.859 [XNIO-1 task-2] _hHIQR9CTuqRLqHPrrRPLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.860 [XNIO-1 task-2] _hHIQR9CTuqRLqHPrrRPLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.902 [XNIO-1 task-2] QVsVlqdqTROBEx8IccMIXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.902 [XNIO-1 task-2] QVsVlqdqTROBEx8IccMIXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:44.902 [XNIO-1 task-2] QVsVlqdqTROBEx8IccMIXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:44.903 [XNIO-1 task-2] QVsVlqdqTROBEx8IccMIXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:44.910 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:caeea7f7-551a-44b9-911e-af7f3af25f41 +17:00:44.914 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:caeea7f7-551a-44b9-911e-af7f3af25f41 +17:00:44.963 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6673cfd +17:00:44.963 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:44.963 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:44.963 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:44.964 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6673cfd +17:00:44.964 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e61449ab-5426-4629-9646-4b4cf9ca2b23","newPassword":"748d1e58-533e-4c49-8b24-4d83e2b63651","newPasswordConfirm":"748d1e58-533e-4c49-8b24-4d83e2b63651"}, {"password":"e61449ab-5426-4629-9646-4b4cf9ca2b23","newPassword":"748d1e58-533e-4c49-8b24-4d83e2b63651","newPasswordConfirm":"748d1e58-533e-4c49-8b24-4d83e2b63651"}, requestBody) +17:00:44.965 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e61449ab-5426-4629-9646-4b4cf9ca2b23","newPassword":"748d1e58-533e-4c49-8b24-4d83e2b63651","newPasswordConfirm":"748d1e58-533e-4c49-8b24-4d83e2b63651"}, {"password":"e61449ab-5426-4629-9646-4b4cf9ca2b23","newPassword":"748d1e58-533e-4c49-8b24-4d83e2b63651","newPasswordConfirm":"748d1e58-533e-4c49-8b24-4d83e2b63651"}, requestBody) +17:00:44.965 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "748d1e58-533e-4c49-8b24-4d83e2b63651", {"password":"e61449ab-5426-4629-9646-4b4cf9ca2b23","newPassword":"748d1e58-533e-4c49-8b24-4d83e2b63651","newPasswordConfirm":"748d1e58-533e-4c49-8b24-4d83e2b63651"}, requestBody.newPasswordConfirm) +17:00:44.965 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "e61449ab-5426-4629-9646-4b4cf9ca2b23", {"password":"e61449ab-5426-4629-9646-4b4cf9ca2b23","newPassword":"748d1e58-533e-4c49-8b24-4d83e2b63651","newPasswordConfirm":"748d1e58-533e-4c49-8b24-4d83e2b63651"}, requestBody.password) +17:00:44.965 [XNIO-1 task-2] r2XKjQzeQcSsIP4C_8YJ-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "748d1e58-533e-4c49-8b24-4d83e2b63651", {"password":"e61449ab-5426-4629-9646-4b4cf9ca2b23","newPassword":"748d1e58-533e-4c49-8b24-4d83e2b63651","newPasswordConfirm":"748d1e58-533e-4c49-8b24-4d83e2b63651"}, requestBody.newPassword) +17:00:44.987 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6673cfd +17:00:45.005 [XNIO-1 task-2] 2w9NY9JKT6imac5V2i_FFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.005 [XNIO-1 task-2] 2w9NY9JKT6imac5V2i_FFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.005 [XNIO-1 task-2] 2w9NY9JKT6imac5V2i_FFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.006 [XNIO-1 task-2] 2w9NY9JKT6imac5V2i_FFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.014 [XNIO-1 task-2] 2TYZqgaLQ72JkIeIBWicrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6673cfd +17:00:45.015 [XNIO-1 task-2] 2TYZqgaLQ72JkIeIBWicrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.015 [XNIO-1 task-2] 2TYZqgaLQ72JkIeIBWicrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.015 [XNIO-1 task-2] 2TYZqgaLQ72JkIeIBWicrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6673cfd +17:00:45.016 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f6673cfd +17:00:45.027 [XNIO-1 task-2] vEP3X5oASpuIW8LFJnr9Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.027 [XNIO-1 task-2] vEP3X5oASpuIW8LFJnr9Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.027 [XNIO-1 task-2] vEP3X5oASpuIW8LFJnr9Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.027 [XNIO-1 task-2] vEP3X5oASpuIW8LFJnr9Xg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.036 [XNIO-1 task-2] 3_aRp3RUSpWVawtiGe-d-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4c5d7b5f +17:00:45.036 [XNIO-1 task-2] 3_aRp3RUSpWVawtiGe-d-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.036 [XNIO-1 task-2] 3_aRp3RUSpWVawtiGe-d-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.037 [XNIO-1 task-2] 3_aRp3RUSpWVawtiGe-d-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4c5d7b5f +17:00:45.049 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b3f39da7-9cc0-4929-9a74-2802ff8659f0 +17:00:45.052 [XNIO-1 task-2] DAcfhHbKS-a0NsMfene-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b89fcc0b +17:00:45.053 [XNIO-1 task-2] DAcfhHbKS-a0NsMfene-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.053 [XNIO-1 task-2] DAcfhHbKS-a0NsMfene-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.053 [XNIO-1 task-2] DAcfhHbKS-a0NsMfene-EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b89fcc0b +17:00:45.054 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b89fcc0b +17:00:45.061 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.061 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.061 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.061 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:45.062 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.063 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ec329038-4c18-4cd1-a871-87febe9d3ea9","newPassword":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPasswordConfirm":"34c520f8-7ca9-4c97-8ffb-feda82889f0f"}, {"password":"ec329038-4c18-4cd1-a871-87febe9d3ea9","newPassword":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPasswordConfirm":"34c520f8-7ca9-4c97-8ffb-feda82889f0f"}, requestBody) +17:00:45.063 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ec329038-4c18-4cd1-a871-87febe9d3ea9","newPassword":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPasswordConfirm":"34c520f8-7ca9-4c97-8ffb-feda82889f0f"}, {"password":"ec329038-4c18-4cd1-a871-87febe9d3ea9","newPassword":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPasswordConfirm":"34c520f8-7ca9-4c97-8ffb-feda82889f0f"}, requestBody) +17:00:45.063 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG com.networknt.schema.FormatValidator debug - validate( "34c520f8-7ca9-4c97-8ffb-feda82889f0f", {"password":"ec329038-4c18-4cd1-a871-87febe9d3ea9","newPassword":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPasswordConfirm":"34c520f8-7ca9-4c97-8ffb-feda82889f0f"}, requestBody.newPasswordConfirm) +17:00:45.064 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG com.networknt.schema.FormatValidator debug - validate( "ec329038-4c18-4cd1-a871-87febe9d3ea9", {"password":"ec329038-4c18-4cd1-a871-87febe9d3ea9","newPassword":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPasswordConfirm":"34c520f8-7ca9-4c97-8ffb-feda82889f0f"}, requestBody.password) +17:00:45.064 [XNIO-1 task-2] 9-h484rMTfSFkXqCmZqe-g DEBUG com.networknt.schema.FormatValidator debug - validate( "34c520f8-7ca9-4c97-8ffb-feda82889f0f", {"password":"ec329038-4c18-4cd1-a871-87febe9d3ea9","newPassword":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPasswordConfirm":"34c520f8-7ca9-4c97-8ffb-feda82889f0f"}, requestBody.newPassword) +17:00:45.096 [XNIO-1 task-2] xz1tOpcBR2GO6dymZyr3DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.096 [XNIO-1 task-2] xz1tOpcBR2GO6dymZyr3DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.097 [XNIO-1 task-2] xz1tOpcBR2GO6dymZyr3DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.110 [XNIO-1 task-2] 8M7HclHeSFOtTbAbmyFbdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.110 [XNIO-1 task-2] 8M7HclHeSFOtTbAbmyFbdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.110 [XNIO-1 task-2] 8M7HclHeSFOtTbAbmyFbdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.111 [XNIO-1 task-2] 8M7HclHeSFOtTbAbmyFbdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.119 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.119 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.119 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.119 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:45.120 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.120 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPassword":"87aa1497-13d1-412d-889e-b8cf67254753","newPasswordConfirm":"87aa1497-13d1-412d-889e-b8cf67254753"}, {"password":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPassword":"87aa1497-13d1-412d-889e-b8cf67254753","newPasswordConfirm":"87aa1497-13d1-412d-889e-b8cf67254753"}, requestBody) +17:00:45.120 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPassword":"87aa1497-13d1-412d-889e-b8cf67254753","newPasswordConfirm":"87aa1497-13d1-412d-889e-b8cf67254753"}, {"password":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPassword":"87aa1497-13d1-412d-889e-b8cf67254753","newPasswordConfirm":"87aa1497-13d1-412d-889e-b8cf67254753"}, requestBody) +17:00:45.120 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "87aa1497-13d1-412d-889e-b8cf67254753", {"password":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPassword":"87aa1497-13d1-412d-889e-b8cf67254753","newPasswordConfirm":"87aa1497-13d1-412d-889e-b8cf67254753"}, requestBody.newPasswordConfirm) +17:00:45.120 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "34c520f8-7ca9-4c97-8ffb-feda82889f0f", {"password":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPassword":"87aa1497-13d1-412d-889e-b8cf67254753","newPasswordConfirm":"87aa1497-13d1-412d-889e-b8cf67254753"}, requestBody.password) +17:00:45.121 [XNIO-1 task-2] _YFmTADcSBibzr_3ffs0Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "87aa1497-13d1-412d-889e-b8cf67254753", {"password":"34c520f8-7ca9-4c97-8ffb-feda82889f0f","newPassword":"87aa1497-13d1-412d-889e-b8cf67254753","newPasswordConfirm":"87aa1497-13d1-412d-889e-b8cf67254753"}, requestBody.newPassword) +17:00:45.159 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.159 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.159 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.159 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:45.160 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.160 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"87aa1497-13d1-412d-889e-b8cf67254753","newPassword":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPasswordConfirm":"fad40dfd-3edc-4ed0-abf1-d10d177401a5"}, {"password":"87aa1497-13d1-412d-889e-b8cf67254753","newPassword":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPasswordConfirm":"fad40dfd-3edc-4ed0-abf1-d10d177401a5"}, requestBody) +17:00:45.160 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"87aa1497-13d1-412d-889e-b8cf67254753","newPassword":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPasswordConfirm":"fad40dfd-3edc-4ed0-abf1-d10d177401a5"}, {"password":"87aa1497-13d1-412d-889e-b8cf67254753","newPassword":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPasswordConfirm":"fad40dfd-3edc-4ed0-abf1-d10d177401a5"}, requestBody) +17:00:45.161 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG com.networknt.schema.FormatValidator debug - validate( "fad40dfd-3edc-4ed0-abf1-d10d177401a5", {"password":"87aa1497-13d1-412d-889e-b8cf67254753","newPassword":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPasswordConfirm":"fad40dfd-3edc-4ed0-abf1-d10d177401a5"}, requestBody.newPasswordConfirm) +17:00:45.161 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG com.networknt.schema.FormatValidator debug - validate( "87aa1497-13d1-412d-889e-b8cf67254753", {"password":"87aa1497-13d1-412d-889e-b8cf67254753","newPassword":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPasswordConfirm":"fad40dfd-3edc-4ed0-abf1-d10d177401a5"}, requestBody.password) +17:00:45.161 [XNIO-1 task-2] idUb0PQ_RK6yywAl1xReiw DEBUG com.networknt.schema.FormatValidator debug - validate( "fad40dfd-3edc-4ed0-abf1-d10d177401a5", {"password":"87aa1497-13d1-412d-889e-b8cf67254753","newPassword":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPasswordConfirm":"fad40dfd-3edc-4ed0-abf1-d10d177401a5"}, requestBody.newPassword) +17:00:45.184 [XNIO-1 task-2] JdC1RcEpR6KXjzlxiCeSdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60fc213e, base path is set to: null +17:00:45.184 [XNIO-1 task-2] JdC1RcEpR6KXjzlxiCeSdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.184 [XNIO-1 task-2] JdC1RcEpR6KXjzlxiCeSdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.184 [XNIO-1 task-2] JdC1RcEpR6KXjzlxiCeSdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60fc213e, base path is set to: null +17:00:45.185 [XNIO-1 task-2] JdC1RcEpR6KXjzlxiCeSdg DEBUG com.networknt.schema.TypeValidator debug - validate( "60fc213e", "60fc213e", userId) +17:00:45.190 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1cfb163e-5d5f-4706-ac14-51ae4b920b39 +17:00:45.191 [XNIO-1 task-2] qUcliyUqSgyK2skrZbeHqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.191 [XNIO-1 task-2] qUcliyUqSgyK2skrZbeHqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.191 [XNIO-1 task-2] qUcliyUqSgyK2skrZbeHqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.192 [XNIO-1 task-2] qUcliyUqSgyK2skrZbeHqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.201 [XNIO-1 task-2] pslCxBS2SjygI9NK7NMujA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.201 [XNIO-1 task-2] pslCxBS2SjygI9NK7NMujA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.202 [XNIO-1 task-2] pslCxBS2SjygI9NK7NMujA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.216 [XNIO-1 task-2] x9d4O4rXQE2BcYXxhlrg-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb8e9ae7 +17:00:45.216 [XNIO-1 task-2] x9d4O4rXQE2BcYXxhlrg-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.216 [XNIO-1 task-2] x9d4O4rXQE2BcYXxhlrg-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.216 [XNIO-1 task-2] x9d4O4rXQE2BcYXxhlrg-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cb8e9ae7 +17:00:45.226 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb8e9ae7, base path is set to: null +17:00:45.226 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.226 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.226 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:45.227 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb8e9ae7, base path is set to: null +17:00:45.227 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb8e9ae7", "cb8e9ae7", userId) +17:00:45.227 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"170dcf16-8b33-466c-9637-368f19657b1d","newPassword":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f","newPasswordConfirm":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f"}, {"password":"170dcf16-8b33-466c-9637-368f19657b1d","newPassword":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f","newPasswordConfirm":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f"}, requestBody) +17:00:45.227 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG com.networknt.schema.TypeValidator debug - validate( "b871e6d1-c7b6-4bbe-9835-fe0d696f627f", {"password":"170dcf16-8b33-466c-9637-368f19657b1d","newPassword":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f","newPasswordConfirm":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f"}, requestBody.newPasswordConfirm) +17:00:45.227 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG com.networknt.schema.TypeValidator debug - validate( "170dcf16-8b33-466c-9637-368f19657b1d", {"password":"170dcf16-8b33-466c-9637-368f19657b1d","newPassword":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f","newPasswordConfirm":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f"}, requestBody.password) +17:00:45.228 [XNIO-1 task-2] vUlDJzOpRg-A4zM08rvMwg DEBUG com.networknt.schema.TypeValidator debug - validate( "b871e6d1-c7b6-4bbe-9835-fe0d696f627f", {"password":"170dcf16-8b33-466c-9637-368f19657b1d","newPassword":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f","newPasswordConfirm":"b871e6d1-c7b6-4bbe-9835-fe0d696f627f"}, requestBody.newPassword) +17:00:45.262 [XNIO-1 task-2] g1iGfthWRBeDouw0hRWOkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb8e9ae7, base path is set to: null +17:00:45.263 [XNIO-1 task-2] g1iGfthWRBeDouw0hRWOkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.263 [XNIO-1 task-2] g1iGfthWRBeDouw0hRWOkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.263 [XNIO-1 task-2] g1iGfthWRBeDouw0hRWOkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb8e9ae7, base path is set to: null +17:00:45.263 [XNIO-1 task-2] g1iGfthWRBeDouw0hRWOkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cb8e9ae7", "cb8e9ae7", userId) +17:00:45.285 [XNIO-1 task-2] dC3vurhKSKmmSEr9b_-Nvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.285 [XNIO-1 task-2] dC3vurhKSKmmSEr9b_-Nvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.286 [XNIO-1 task-2] dC3vurhKSKmmSEr9b_-Nvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.286 [XNIO-1 task-2] dC3vurhKSKmmSEr9b_-Nvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.302 [XNIO-1 task-2] qn7etCO8QNmTZlcuMmb0Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.302 [XNIO-1 task-2] qn7etCO8QNmTZlcuMmb0Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.303 [XNIO-1 task-2] qn7etCO8QNmTZlcuMmb0Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.344 [XNIO-1 task-2] 3awsE7J0Qymk5SC-8XUh_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/32558dc8 +17:00:45.344 [XNIO-1 task-2] 3awsE7J0Qymk5SC-8XUh_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.344 [XNIO-1 task-2] 3awsE7J0Qymk5SC-8XUh_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.345 [XNIO-1 task-2] 3awsE7J0Qymk5SC-8XUh_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/32558dc8 +17:00:45.351 [XNIO-1 task-2] wiw8ui0GQaWoEswWIcI_Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.351 [XNIO-1 task-2] wiw8ui0GQaWoEswWIcI_Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.351 [XNIO-1 task-2] wiw8ui0GQaWoEswWIcI_Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.389 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:caeea7f7-551a-44b9-911e-af7f3af25f41 +17:00:45.416 [XNIO-1 task-2] 58wXbQvaQ5-O9BEPuzlxHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/32558dc8 +17:00:45.417 [XNIO-1 task-2] 58wXbQvaQ5-O9BEPuzlxHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.417 [XNIO-1 task-2] 58wXbQvaQ5-O9BEPuzlxHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.417 [XNIO-1 task-2] 58wXbQvaQ5-O9BEPuzlxHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/32558dc8 +17:00:45.433 [XNIO-1 task-2] pNOHy7C_QN2ihAO-BFc1sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.433 [XNIO-1 task-2] pNOHy7C_QN2ihAO-BFc1sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.433 [XNIO-1 task-2] pNOHy7C_QN2ihAO-BFc1sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.433 [XNIO-1 task-2] pNOHy7C_QN2ihAO-BFc1sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.446 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/60fc213e, base path is set to: null +17:00:45.447 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.447 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.447 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:45.447 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/60fc213e, base path is set to: null +17:00:45.447 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "60fc213e", "60fc213e", userId) +17:00:45.448 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPassword":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPasswordConfirm":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d"}, {"password":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPassword":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPasswordConfirm":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d"}, requestBody) +17:00:45.448 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "35cdbc36-3f45-4fe4-9869-c14e75e5f19d", {"password":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPassword":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPasswordConfirm":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d"}, requestBody.newPasswordConfirm) +17:00:45.448 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fad40dfd-3edc-4ed0-abf1-d10d177401a5", {"password":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPassword":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPasswordConfirm":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d"}, requestBody.password) +17:00:45.448 [XNIO-1 task-2] 7AJV9ST8SDyIkXPdgrcW1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "35cdbc36-3f45-4fe4-9869-c14e75e5f19d", {"password":"fad40dfd-3edc-4ed0-abf1-d10d177401a5","newPassword":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPasswordConfirm":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d"}, requestBody.newPassword) +17:00:45.495 [XNIO-1 task-2] LCUpPMjPSvCJUjzT16oQxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d24e5110, base path is set to: null +17:00:45.496 [XNIO-1 task-2] LCUpPMjPSvCJUjzT16oQxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.496 [XNIO-1 task-2] LCUpPMjPSvCJUjzT16oQxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.496 [XNIO-1 task-2] LCUpPMjPSvCJUjzT16oQxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d24e5110, base path is set to: null +17:00:45.496 [XNIO-1 task-2] LCUpPMjPSvCJUjzT16oQxw DEBUG com.networknt.schema.TypeValidator debug - validate( "d24e5110", "d24e5110", userId) +17:00:45.502 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.503 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.503 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.503 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:45.503 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.504 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPassword":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPasswordConfirm":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e"}, {"password":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPassword":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPasswordConfirm":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e"}, requestBody) +17:00:45.504 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPassword":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPasswordConfirm":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e"}, {"password":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPassword":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPasswordConfirm":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e"}, requestBody) +17:00:45.504 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG com.networknt.schema.FormatValidator debug - validate( "74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e", {"password":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPassword":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPasswordConfirm":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e"}, requestBody.newPasswordConfirm) +17:00:45.504 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG com.networknt.schema.FormatValidator debug - validate( "35cdbc36-3f45-4fe4-9869-c14e75e5f19d", {"password":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPassword":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPasswordConfirm":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e"}, requestBody.password) +17:00:45.505 [XNIO-1 task-2] FM_hkifnRYufLD5a20V4aw DEBUG com.networknt.schema.FormatValidator debug - validate( "74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e", {"password":"35cdbc36-3f45-4fe4-9869-c14e75e5f19d","newPassword":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPasswordConfirm":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e"}, requestBody.newPassword) +17:00:45.534 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.534 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.534 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.534 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:45.535 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60fc213e +17:00:45.535 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPassword":"ea26c44b-4584-468a-b1ff-b02e57cb17f9","newPasswordConfirm":"ea26c44b-4584-468a-b1ff-b02e57cb17f9"}, {"password":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPassword":"ea26c44b-4584-468a-b1ff-b02e57cb17f9","newPasswordConfirm":"ea26c44b-4584-468a-b1ff-b02e57cb17f9"}, requestBody) +17:00:45.535 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPassword":"ea26c44b-4584-468a-b1ff-b02e57cb17f9","newPasswordConfirm":"ea26c44b-4584-468a-b1ff-b02e57cb17f9"}, {"password":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPassword":"ea26c44b-4584-468a-b1ff-b02e57cb17f9","newPasswordConfirm":"ea26c44b-4584-468a-b1ff-b02e57cb17f9"}, requestBody) +17:00:45.535 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ea26c44b-4584-468a-b1ff-b02e57cb17f9", {"password":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPassword":"ea26c44b-4584-468a-b1ff-b02e57cb17f9","newPasswordConfirm":"ea26c44b-4584-468a-b1ff-b02e57cb17f9"}, requestBody.newPasswordConfirm) +17:00:45.535 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e", {"password":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPassword":"ea26c44b-4584-468a-b1ff-b02e57cb17f9","newPasswordConfirm":"ea26c44b-4584-468a-b1ff-b02e57cb17f9"}, requestBody.password) +17:00:45.535 [XNIO-1 task-2] 3dyJpg-yQaaSTQGM7J2hhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ea26c44b-4584-468a-b1ff-b02e57cb17f9", {"password":"74d91fb8-68b0-47ce-b0c2-6f9d06ddd06e","newPassword":"ea26c44b-4584-468a-b1ff-b02e57cb17f9","newPasswordConfirm":"ea26c44b-4584-468a-b1ff-b02e57cb17f9"}, requestBody.newPassword) +17:00:45.556 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7b57dada +17:00:45.556 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ddf8cee8-bd77-4970-9c85-640c97e83c75 +17:00:45.557 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7b57dada +17:00:45.563 [XNIO-1 task-2] iUCm-j2MRR6QDS5_NN7qlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.563 [XNIO-1 task-2] iUCm-j2MRR6QDS5_NN7qlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.564 [XNIO-1 task-2] iUCm-j2MRR6QDS5_NN7qlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.597 [XNIO-1 task-2] eljjl4WkTlS3bDvHVPY7Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.597 [XNIO-1 task-2] eljjl4WkTlS3bDvHVPY7Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.598 [XNIO-1 task-2] eljjl4WkTlS3bDvHVPY7Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.601 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.602 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.622 [XNIO-1 task-2] GmtADrokSvyzCJ5Jzgp0tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.622 [XNIO-1 task-2] GmtADrokSvyzCJ5Jzgp0tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.622 [XNIO-1 task-2] GmtADrokSvyzCJ5Jzgp0tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.654 [XNIO-1 task-2] 2H6ligycQtKaMYRX6GpzKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.654 [XNIO-1 task-2] 2H6ligycQtKaMYRX6GpzKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.654 [XNIO-1 task-2] 2H6ligycQtKaMYRX6GpzKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.668 [XNIO-1 task-2] qbfo-AQxQEqpVwD9T_yuSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a660e1ad +17:00:45.668 [XNIO-1 task-2] qbfo-AQxQEqpVwD9T_yuSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.669 [XNIO-1 task-2] qbfo-AQxQEqpVwD9T_yuSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.669 [XNIO-1 task-2] qbfo-AQxQEqpVwD9T_yuSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a660e1ad +17:00:45.681 [XNIO-1 task-2] HP18-FK8SWSaa9Ls0OI3mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.681 [XNIO-1 task-2] HP18-FK8SWSaa9Ls0OI3mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.681 [XNIO-1 task-2] HP18-FK8SWSaa9Ls0OI3mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.701 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d24e5110, base path is set to: null +17:00:45.701 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.701 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.701 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:45.702 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d24e5110, base path is set to: null +17:00:45.702 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d24e5110", "d24e5110", userId) +17:00:45.702 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"834060b2-03f8-4012-aa53-ef3d6bda603e","newPassword":"44f6c8af-f04c-4c47-9915-cd8c61029dbf","newPasswordConfirm":"44f6c8af-f04c-4c47-9915-cd8c61029dbf"}, {"password":"834060b2-03f8-4012-aa53-ef3d6bda603e","newPassword":"44f6c8af-f04c-4c47-9915-cd8c61029dbf","newPasswordConfirm":"44f6c8af-f04c-4c47-9915-cd8c61029dbf"}, requestBody) +17:00:45.703 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG com.networknt.schema.TypeValidator debug - validate( "44f6c8af-f04c-4c47-9915-cd8c61029dbf", {"password":"834060b2-03f8-4012-aa53-ef3d6bda603e","newPassword":"44f6c8af-f04c-4c47-9915-cd8c61029dbf","newPasswordConfirm":"44f6c8af-f04c-4c47-9915-cd8c61029dbf"}, requestBody.newPasswordConfirm) +17:00:45.703 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG com.networknt.schema.TypeValidator debug - validate( "834060b2-03f8-4012-aa53-ef3d6bda603e", {"password":"834060b2-03f8-4012-aa53-ef3d6bda603e","newPassword":"44f6c8af-f04c-4c47-9915-cd8c61029dbf","newPasswordConfirm":"44f6c8af-f04c-4c47-9915-cd8c61029dbf"}, requestBody.password) +17:00:45.703 [XNIO-1 task-2] 7O95qILASjWK9xFA3Gp08Q DEBUG com.networknt.schema.TypeValidator debug - validate( "44f6c8af-f04c-4c47-9915-cd8c61029dbf", {"password":"834060b2-03f8-4012-aa53-ef3d6bda603e","newPassword":"44f6c8af-f04c-4c47-9915-cd8c61029dbf","newPasswordConfirm":"44f6c8af-f04c-4c47-9915-cd8c61029dbf"}, requestBody.newPassword) +17:00:45.713 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6a8b9ccd-b637-4acc-ac25-9aa4c1d57606 +17:00:45.737 [XNIO-1 task-2] 2xYxoBBSTw-XOzXjpaeZvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d24e5110, base path is set to: null +17:00:45.737 [XNIO-1 task-2] 2xYxoBBSTw-XOzXjpaeZvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.737 [XNIO-1 task-2] 2xYxoBBSTw-XOzXjpaeZvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.737 [XNIO-1 task-2] 2xYxoBBSTw-XOzXjpaeZvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d24e5110, base path is set to: null +17:00:45.738 [XNIO-1 task-2] 2xYxoBBSTw-XOzXjpaeZvw DEBUG com.networknt.schema.TypeValidator debug - validate( "d24e5110", "d24e5110", userId) +17:00:45.750 [XNIO-1 task-2] j-ohbyhWRTic6AAprsz2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.750 [XNIO-1 task-2] j-ohbyhWRTic6AAprsz2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.750 [XNIO-1 task-2] j-ohbyhWRTic6AAprsz2rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.750 [XNIO-1 task-2] j-ohbyhWRTic6AAprsz2rg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.756 [XNIO-1 task-2] HJdxNImyS2CCFbAvXr5HSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.756 [XNIO-1 task-2] HJdxNImyS2CCFbAvXr5HSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.756 [XNIO-1 task-2] HJdxNImyS2CCFbAvXr5HSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.757 [XNIO-1 task-2] HJdxNImyS2CCFbAvXr5HSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.760 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7b57dada +17:00:45.764 [XNIO-1 task-2] 5hISl1vzRL6Ujv5OiktxgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.764 [XNIO-1 task-2] 5hISl1vzRL6Ujv5OiktxgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.765 [XNIO-1 task-2] 5hISl1vzRL6Ujv5OiktxgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.782 [hz._hzInstance_1_dev.partition-operation.thread-13] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +17:00:45.810 [XNIO-1 task-2] tBHZw_X5TyCD2QJnfDP0Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/acd04b95, base path is set to: null +17:00:45.810 [XNIO-1 task-2] tBHZw_X5TyCD2QJnfDP0Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.811 [XNIO-1 task-2] tBHZw_X5TyCD2QJnfDP0Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.811 [XNIO-1 task-2] tBHZw_X5TyCD2QJnfDP0Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/acd04b95, base path is set to: null +17:00:45.811 [XNIO-1 task-2] tBHZw_X5TyCD2QJnfDP0Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "acd04b95", "acd04b95", userId) +17:00:45.860 [XNIO-1 task-2] 5lJOu7SmTye06cQVZs8s0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7dcafedb +17:00:45.860 [XNIO-1 task-2] 5lJOu7SmTye06cQVZs8s0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.860 [XNIO-1 task-2] 5lJOu7SmTye06cQVZs8s0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.860 [XNIO-1 task-2] 5lJOu7SmTye06cQVZs8s0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7dcafedb +17:00:45.870 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7b57dada +17:00:45.877 [XNIO-1 task-2] ECvsvM98RB-8l1QkvBGx5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.877 [XNIO-1 task-2] ECvsvM98RB-8l1QkvBGx5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.877 [XNIO-1 task-2] ECvsvM98RB-8l1QkvBGx5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:45.877 [XNIO-1 task-2] ECvsvM98RB-8l1QkvBGx5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:45.884 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:aedff129-d04b-4663-a7b0-c2727283a073 +17:00:45.888 [XNIO-1 task-2] qRq7Z_w_Si2gPms1QnEWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7dcafedb +17:00:45.888 [XNIO-1 task-2] qRq7Z_w_Si2gPms1QnEWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.888 [XNIO-1 task-2] qRq7Z_w_Si2gPms1QnEWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:45.888 [XNIO-1 task-2] qRq7Z_w_Si2gPms1QnEWvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7dcafedb +17:00:45.903 [XNIO-1 task-2] 5WFSx0b4Q2OY1y-Ph6qvsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60fc213e, base path is set to: null +17:00:45.903 [XNIO-1 task-2] 5WFSx0b4Q2OY1y-Ph6qvsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.903 [XNIO-1 task-2] 5WFSx0b4Q2OY1y-Ph6qvsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.903 [XNIO-1 task-2] 5WFSx0b4Q2OY1y-Ph6qvsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/60fc213e, base path is set to: null +17:00:45.903 [XNIO-1 task-2] 5WFSx0b4Q2OY1y-Ph6qvsg DEBUG com.networknt.schema.TypeValidator debug - validate( "60fc213e", "60fc213e", userId) +17:00:45.911 [XNIO-1 task-2] ET8_nNrJQNmDx8Rj3SbiEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd7b24e1, base path is set to: null +17:00:45.912 [XNIO-1 task-2] ET8_nNrJQNmDx8Rj3SbiEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:45.912 [XNIO-1 task-2] ET8_nNrJQNmDx8Rj3SbiEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:45.912 [XNIO-1 task-2] ET8_nNrJQNmDx8Rj3SbiEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dd7b24e1, base path is set to: null +17:00:45.912 [XNIO-1 task-2] ET8_nNrJQNmDx8Rj3SbiEA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd7b24e1", "dd7b24e1", userId) +17:00:45.928 [XNIO-1 task-2] k0VenmtZQGKNn2pU54QGUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.928 [XNIO-1 task-2] k0VenmtZQGKNn2pU54QGUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.928 [XNIO-1 task-2] k0VenmtZQGKNn2pU54QGUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.929 [XNIO-1 task-2] k0VenmtZQGKNn2pU54QGUg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.948 [XNIO-1 task-2] OzX0s1eiTxyuCpia6yN7TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.948 [XNIO-1 task-2] OzX0s1eiTxyuCpia6yN7TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.949 [XNIO-1 task-2] OzX0s1eiTxyuCpia6yN7TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.949 [XNIO-1 task-2] OzX0s1eiTxyuCpia6yN7TQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.959 [XNIO-1 task-2] 9P7Tkvr_RtiUKdm33I3EAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.959 [XNIO-1 task-2] 9P7Tkvr_RtiUKdm33I3EAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.959 [XNIO-1 task-2] 9P7Tkvr_RtiUKdm33I3EAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.960 [XNIO-1 task-2] 9P7Tkvr_RtiUKdm33I3EAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.967 [XNIO-1 task-2] fMbNmdq4RUSAZb2swToxRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.969 [XNIO-1 task-2] fMbNmdq4RUSAZb2swToxRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.969 [XNIO-1 task-2] fMbNmdq4RUSAZb2swToxRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.969 [XNIO-1 task-2] fMbNmdq4RUSAZb2swToxRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:45.982 [XNIO-1 task-2] JHRw0G2zRiOe0MLSlPAAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.982 [XNIO-1 task-2] JHRw0G2zRiOe0MLSlPAAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.982 [XNIO-1 task-2] JHRw0G2zRiOe0MLSlPAAig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:45.982 [XNIO-1 task-2] JHRw0G2zRiOe0MLSlPAAig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.008 [XNIO-1 task-2] qtBe2h1kTIuIOTb2EM_rWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.008 [XNIO-1 task-2] qtBe2h1kTIuIOTb2EM_rWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.008 [XNIO-1 task-2] qtBe2h1kTIuIOTb2EM_rWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.037 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0866bc0f +17:00:46.037 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.037 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:46.037 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:46.037 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0866bc0f +17:00:46.038 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f9b0d000-b667-4210-a691-1ede917cad92","newPassword":"ee6f4f94-049d-4f16-ad58-5081963da933","newPasswordConfirm":"ee6f4f94-049d-4f16-ad58-5081963da933"}, {"password":"f9b0d000-b667-4210-a691-1ede917cad92","newPassword":"ee6f4f94-049d-4f16-ad58-5081963da933","newPasswordConfirm":"ee6f4f94-049d-4f16-ad58-5081963da933"}, requestBody) +17:00:46.038 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f9b0d000-b667-4210-a691-1ede917cad92","newPassword":"ee6f4f94-049d-4f16-ad58-5081963da933","newPasswordConfirm":"ee6f4f94-049d-4f16-ad58-5081963da933"}, {"password":"f9b0d000-b667-4210-a691-1ede917cad92","newPassword":"ee6f4f94-049d-4f16-ad58-5081963da933","newPasswordConfirm":"ee6f4f94-049d-4f16-ad58-5081963da933"}, requestBody) +17:00:46.038 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG com.networknt.schema.FormatValidator debug - validate( "ee6f4f94-049d-4f16-ad58-5081963da933", {"password":"f9b0d000-b667-4210-a691-1ede917cad92","newPassword":"ee6f4f94-049d-4f16-ad58-5081963da933","newPasswordConfirm":"ee6f4f94-049d-4f16-ad58-5081963da933"}, requestBody.newPasswordConfirm) +17:00:46.038 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG com.networknt.schema.FormatValidator debug - validate( "f9b0d000-b667-4210-a691-1ede917cad92", {"password":"f9b0d000-b667-4210-a691-1ede917cad92","newPassword":"ee6f4f94-049d-4f16-ad58-5081963da933","newPasswordConfirm":"ee6f4f94-049d-4f16-ad58-5081963da933"}, requestBody.password) +17:00:46.038 [XNIO-1 task-2] Gnv07VzgQlqqVDmUnTBImA DEBUG com.networknt.schema.FormatValidator debug - validate( "ee6f4f94-049d-4f16-ad58-5081963da933", {"password":"f9b0d000-b667-4210-a691-1ede917cad92","newPassword":"ee6f4f94-049d-4f16-ad58-5081963da933","newPasswordConfirm":"ee6f4f94-049d-4f16-ad58-5081963da933"}, requestBody.newPassword) +17:00:46.064 [XNIO-1 task-2] UDmvOjjXRwC_wAyHBcSR7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.064 [XNIO-1 task-2] UDmvOjjXRwC_wAyHBcSR7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.064 [XNIO-1 task-2] UDmvOjjXRwC_wAyHBcSR7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.065 [XNIO-1 task-2] UDmvOjjXRwC_wAyHBcSR7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.071 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85cd03e4-7fc5-4b0a-92f2-5a399f3fa354 +17:00:46.072 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0866bc0f +17:00:46.072 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.072 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:46.073 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +17:00:46.073 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0866bc0f +17:00:46.074 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ee6f4f94-049d-4f16-ad58-5081963da933","newPassword":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f","newPasswordConfirm":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f"}, {"password":"ee6f4f94-049d-4f16-ad58-5081963da933","newPassword":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f","newPasswordConfirm":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f"}, requestBody) +17:00:46.074 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ee6f4f94-049d-4f16-ad58-5081963da933","newPassword":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f","newPasswordConfirm":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f"}, {"password":"ee6f4f94-049d-4f16-ad58-5081963da933","newPassword":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f","newPasswordConfirm":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f"}, requestBody) +17:00:46.074 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG com.networknt.schema.FormatValidator debug - validate( "da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f", {"password":"ee6f4f94-049d-4f16-ad58-5081963da933","newPassword":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f","newPasswordConfirm":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f"}, requestBody.newPasswordConfirm) +17:00:46.074 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG com.networknt.schema.FormatValidator debug - validate( "ee6f4f94-049d-4f16-ad58-5081963da933", {"password":"ee6f4f94-049d-4f16-ad58-5081963da933","newPassword":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f","newPasswordConfirm":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f"}, requestBody.password) +17:00:46.074 [XNIO-1 task-2] LWn6UXtcT0i2fahPhyL91Q DEBUG com.networknt.schema.FormatValidator debug - validate( "da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f", {"password":"ee6f4f94-049d-4f16-ad58-5081963da933","newPassword":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f","newPasswordConfirm":"da9816bb-8c5d-48a3-95c1-c1d2f5e2ac2f"}, requestBody.newPassword) +17:00:46.105 [XNIO-1 task-2] jqavnsovTe6AmWKcd7biHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.105 [XNIO-1 task-2] jqavnsovTe6AmWKcd7biHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.106 [XNIO-1 task-2] jqavnsovTe6AmWKcd7biHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.106 [XNIO-1 task-2] jqavnsovTe6AmWKcd7biHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +17:00:46.119 [XNIO-1 task-2] lw6V8UXSTUOPDBjUQ8tl4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0866bc0f +17:00:46.119 [XNIO-1 task-2] lw6V8UXSTUOPDBjUQ8tl4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.119 [XNIO-1 task-2] lw6V8UXSTUOPDBjUQ8tl4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:46.119 [XNIO-1 task-2] lw6V8UXSTUOPDBjUQ8tl4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0866bc0f +17:00:46.136 [XNIO-1 task-2] SkyKyHA7QHGbqUcsuynbFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.136 [XNIO-1 task-2] SkyKyHA7QHGbqUcsuynbFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.136 [XNIO-1 task-2] SkyKyHA7QHGbqUcsuynbFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.136 [XNIO-1 task-2] SkyKyHA7QHGbqUcsuynbFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.146 [XNIO-1 task-2] AMcdmoKiRC-t6ePrVJwFoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.146 [XNIO-1 task-2] AMcdmoKiRC-t6ePrVJwFoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.146 [XNIO-1 task-2] AMcdmoKiRC-t6ePrVJwFoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.146 [XNIO-1 task-2] AMcdmoKiRC-t6ePrVJwFoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.156 [XNIO-1 task-2] 5pjw8-LFTryKSk--kfCYqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.157 [XNIO-1 task-2] 5pjw8-LFTryKSk--kfCYqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.157 [XNIO-1 task-2] 5pjw8-LFTryKSk--kfCYqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.157 [XNIO-1 task-2] 5pjw8-LFTryKSk--kfCYqg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.169 [XNIO-1 task-2] newYjcLNRcCZisF1HUw0Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.169 [XNIO-1 task-2] newYjcLNRcCZisF1HUw0Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.170 [XNIO-1 task-2] newYjcLNRcCZisF1HUw0Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.195 [XNIO-1 task-2] TDkpIRzzQ26rM1qS7rNLCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/446034d9, base path is set to: null +17:00:46.195 [XNIO-1 task-2] TDkpIRzzQ26rM1qS7rNLCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.195 [XNIO-1 task-2] TDkpIRzzQ26rM1qS7rNLCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:46.195 [XNIO-1 task-2] TDkpIRzzQ26rM1qS7rNLCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/446034d9, base path is set to: null +17:00:46.195 [XNIO-1 task-2] TDkpIRzzQ26rM1qS7rNLCA DEBUG com.networknt.schema.TypeValidator debug - validate( "446034d9", "446034d9", userId) +17:00:46.202 [XNIO-1 task-2] 6houljW2Q9yaZqNTE7lV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.202 [XNIO-1 task-2] 6houljW2Q9yaZqNTE7lV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.202 [XNIO-1 task-2] 6houljW2Q9yaZqNTE7lV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.222 [XNIO-1 task-2] blytWCdKSX-7QwbrY51GaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.222 [XNIO-1 task-2] blytWCdKSX-7QwbrY51GaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.222 [XNIO-1 task-2] blytWCdKSX-7QwbrY51GaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.239 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e26c6a10 +17:00:46.256 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/446034d9, base path is set to: null +17:00:46.257 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.257 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:46.257 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:46.257 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/446034d9, base path is set to: null +17:00:46.258 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "446034d9", "446034d9", userId) +17:00:46.259 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"276db237-da0e-48d0-8ae4-4e68c918b8bd","newPassword":"6805d2cf-587d-46ee-baed-ad1515351b4e","newPasswordConfirm":"6805d2cf-587d-46ee-baed-ad1515351b4e"}, {"password":"276db237-da0e-48d0-8ae4-4e68c918b8bd","newPassword":"6805d2cf-587d-46ee-baed-ad1515351b4e","newPasswordConfirm":"6805d2cf-587d-46ee-baed-ad1515351b4e"}, requestBody) +17:00:46.259 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "6805d2cf-587d-46ee-baed-ad1515351b4e", {"password":"276db237-da0e-48d0-8ae4-4e68c918b8bd","newPassword":"6805d2cf-587d-46ee-baed-ad1515351b4e","newPasswordConfirm":"6805d2cf-587d-46ee-baed-ad1515351b4e"}, requestBody.newPasswordConfirm) +17:00:46.259 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "276db237-da0e-48d0-8ae4-4e68c918b8bd", {"password":"276db237-da0e-48d0-8ae4-4e68c918b8bd","newPassword":"6805d2cf-587d-46ee-baed-ad1515351b4e","newPasswordConfirm":"6805d2cf-587d-46ee-baed-ad1515351b4e"}, requestBody.password) +17:00:46.259 [XNIO-1 task-2] xOKeZKAuQlywS7DhTwk-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "6805d2cf-587d-46ee-baed-ad1515351b4e", {"password":"276db237-da0e-48d0-8ae4-4e68c918b8bd","newPassword":"6805d2cf-587d-46ee-baed-ad1515351b4e","newPasswordConfirm":"6805d2cf-587d-46ee-baed-ad1515351b4e"}, requestBody.newPassword) +17:00:46.269 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b3d24fbc-1ea4-4643-91b6-f64160e72a4e +17:00:46.278 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.293 [XNIO-1 task-2] YYvUYPEXTGO3JzFvIOdUVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.293 [XNIO-1 task-2] YYvUYPEXTGO3JzFvIOdUVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.293 [XNIO-1 task-2] YYvUYPEXTGO3JzFvIOdUVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.323 [XNIO-1 task-2] VkbeLWF0S3K0St9s0dhQmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.323 [XNIO-1 task-2] VkbeLWF0S3K0St9s0dhQmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.323 [XNIO-1 task-2] VkbeLWF0S3K0St9s0dhQmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.394 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:15d1cf27-b34a-48bf-8c1a-087c282153e1 +17:00:46.412 [XNIO-1 task-2] caQzWTyhQmirAh9dlgoEfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.412 [XNIO-1 task-2] caQzWTyhQmirAh9dlgoEfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.413 [XNIO-1 task-2] caQzWTyhQmirAh9dlgoEfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.430 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1cfb163e-5d5f-4706-ac14-51ae4b920b39 +17:00:46.462 [XNIO-1 task-2] kSRxhN-SRCGIFaaZqiyCzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.462 [XNIO-1 task-2] kSRxhN-SRCGIFaaZqiyCzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.463 [XNIO-1 task-2] kSRxhN-SRCGIFaaZqiyCzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.482 [XNIO-1 task-2] pWVM3LD8Rre6Sa4ayNZsnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.482 [XNIO-1 task-2] pWVM3LD8Rre6Sa4ayNZsnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.483 [XNIO-1 task-2] pWVM3LD8Rre6Sa4ayNZsnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.505 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6bf39d1d-6e9a-49b8-893d-b462933ad398 +17:00:46.514 [XNIO-1 task-2] ZYF36Wd8Rk6UHL5uxth3Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.516 [XNIO-1 task-2] ZYF36Wd8Rk6UHL5uxth3Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.516 [XNIO-1 task-2] ZYF36Wd8Rk6UHL5uxth3Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.518 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e26c6a10 +17:00:46.530 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/11a2fffd, base path is set to: null +17:00:46.530 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.530 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:46.530 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:46.531 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/11a2fffd, base path is set to: null +17:00:46.531 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG com.networknt.schema.TypeValidator debug - validate( "11a2fffd", "11a2fffd", userId) +17:00:46.532 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"1d080d4c-1eb9-432b-9cfe-09592726fe27","newPassword":"77f7aeb8-8def-4cae-975d-392a845b63a2","newPasswordConfirm":"77f7aeb8-8def-4cae-975d-392a845b63a2"}, {"password":"1d080d4c-1eb9-432b-9cfe-09592726fe27","newPassword":"77f7aeb8-8def-4cae-975d-392a845b63a2","newPasswordConfirm":"77f7aeb8-8def-4cae-975d-392a845b63a2"}, requestBody) +17:00:46.532 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG com.networknt.schema.TypeValidator debug - validate( "77f7aeb8-8def-4cae-975d-392a845b63a2", {"password":"1d080d4c-1eb9-432b-9cfe-09592726fe27","newPassword":"77f7aeb8-8def-4cae-975d-392a845b63a2","newPasswordConfirm":"77f7aeb8-8def-4cae-975d-392a845b63a2"}, requestBody.newPasswordConfirm) +17:00:46.532 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1d080d4c-1eb9-432b-9cfe-09592726fe27", {"password":"1d080d4c-1eb9-432b-9cfe-09592726fe27","newPassword":"77f7aeb8-8def-4cae-975d-392a845b63a2","newPasswordConfirm":"77f7aeb8-8def-4cae-975d-392a845b63a2"}, requestBody.password) +17:00:46.532 [XNIO-1 task-2] gxwHwGTPQE6EfSmsePJc4A DEBUG com.networknt.schema.TypeValidator debug - validate( "77f7aeb8-8def-4cae-975d-392a845b63a2", {"password":"1d080d4c-1eb9-432b-9cfe-09592726fe27","newPassword":"77f7aeb8-8def-4cae-975d-392a845b63a2","newPasswordConfirm":"77f7aeb8-8def-4cae-975d-392a845b63a2"}, requestBody.newPassword) +17:00:46.570 [XNIO-1 task-2] KdkZcOMLTZWA445Whjjkdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.570 [XNIO-1 task-2] KdkZcOMLTZWA445Whjjkdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.573 [XNIO-1 task-2] KdkZcOMLTZWA445Whjjkdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.584 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:58a54cb1-b437-41a5-8006-3341cac211c5 +17:00:46.586 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:58a54cb1-b437-41a5-8006-3341cac211c5 +17:00:46.598 [XNIO-1 task-2] xJD1ZsRgQDKWW4a43FoMog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/11a2fffd +17:00:46.598 [XNIO-1 task-2] xJD1ZsRgQDKWW4a43FoMog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.598 [XNIO-1 task-2] xJD1ZsRgQDKWW4a43FoMog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:46.598 [XNIO-1 task-2] xJD1ZsRgQDKWW4a43FoMog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/11a2fffd +17:00:46.603 [XNIO-1 task-2] PJA1wtlWRX-z6ZkISfoRHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/11a2fffd, base path is set to: null +17:00:46.603 [XNIO-1 task-2] PJA1wtlWRX-z6ZkISfoRHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.603 [XNIO-1 task-2] PJA1wtlWRX-z6ZkISfoRHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:46.603 [XNIO-1 task-2] PJA1wtlWRX-z6ZkISfoRHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/11a2fffd, base path is set to: null +17:00:46.606 [XNIO-1 task-2] PJA1wtlWRX-z6ZkISfoRHg DEBUG com.networknt.schema.TypeValidator debug - validate( "11a2fffd", "11a2fffd", userId) +17:00:46.621 [XNIO-1 task-2] XPpu3mVZR6O7LxLdrolAMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.621 [XNIO-1 task-2] XPpu3mVZR6O7LxLdrolAMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.621 [XNIO-1 task-2] XPpu3mVZR6O7LxLdrolAMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.622 [XNIO-1 task-2] XPpu3mVZR6O7LxLdrolAMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +17:00:46.629 [XNIO-1 task-2] ZPeDSE92RUagALYY8Z-72g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.630 [XNIO-1 task-2] ZPeDSE92RUagALYY8Z-72g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.630 [XNIO-1 task-2] ZPeDSE92RUagALYY8Z-72g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.654 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:610e2b86-8919-4a33-b9f9-8f631c48865f +17:00:46.655 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:610e2b86-8919-4a33-b9f9-8f631c48865f +17:00:46.655 [XNIO-1 task-2] LpKj-yuzTNWDImv3-5WN3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/87612c77 +17:00:46.656 [XNIO-1 task-2] LpKj-yuzTNWDImv3-5WN3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.656 [XNIO-1 task-2] LpKj-yuzTNWDImv3-5WN3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:46.656 [XNIO-1 task-2] LpKj-yuzTNWDImv3-5WN3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/87612c77 +17:00:46.666 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/87612c77, base path is set to: null +17:00:46.666 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.666 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +17:00:46.666 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +17:00:46.667 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/87612c77, base path is set to: null +17:00:46.667 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG com.networknt.schema.TypeValidator debug - validate( "87612c77", "87612c77", userId) +17:00:46.667 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f83b72e5-1851-4ea8-b2ed-8c08d2948419","newPassword":"63d98d7b-2396-4773-9117-2a300aeb5585","newPasswordConfirm":"63d98d7b-2396-4773-9117-2a300aeb5585"}, {"password":"f83b72e5-1851-4ea8-b2ed-8c08d2948419","newPassword":"63d98d7b-2396-4773-9117-2a300aeb5585","newPasswordConfirm":"63d98d7b-2396-4773-9117-2a300aeb5585"}, requestBody) +17:00:46.667 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG com.networknt.schema.TypeValidator debug - validate( "63d98d7b-2396-4773-9117-2a300aeb5585", {"password":"f83b72e5-1851-4ea8-b2ed-8c08d2948419","newPassword":"63d98d7b-2396-4773-9117-2a300aeb5585","newPasswordConfirm":"63d98d7b-2396-4773-9117-2a300aeb5585"}, requestBody.newPasswordConfirm) +17:00:46.668 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG com.networknt.schema.TypeValidator debug - validate( "f83b72e5-1851-4ea8-b2ed-8c08d2948419", {"password":"f83b72e5-1851-4ea8-b2ed-8c08d2948419","newPassword":"63d98d7b-2396-4773-9117-2a300aeb5585","newPasswordConfirm":"63d98d7b-2396-4773-9117-2a300aeb5585"}, requestBody.password) +17:00:46.668 [XNIO-1 task-2] T8_DR9yCTNu0BcAeWpTtTA DEBUG com.networknt.schema.TypeValidator debug - validate( "63d98d7b-2396-4773-9117-2a300aeb5585", {"password":"f83b72e5-1851-4ea8-b2ed-8c08d2948419","newPassword":"63d98d7b-2396-4773-9117-2a300aeb5585","newPasswordConfirm":"63d98d7b-2396-4773-9117-2a300aeb5585"}, requestBody.newPassword) +17:00:46.681 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:610e2b86-8919-4a33-b9f9-8f631c48865f +17:00:46.694 [XNIO-1 task-2] vTRgd73RQqWkQ6PYPK-9pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.695 [XNIO-1 task-2] vTRgd73RQqWkQ6PYPK-9pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.695 [XNIO-1 task-2] vTRgd73RQqWkQ6PYPK-9pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.718 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd7d8ab5 +17:00:46.719 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd7d8ab5 +17:00:46.738 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5860a72c-729c-4218-91ba-184598dca379 +17:00:46.743 [XNIO-1 task-2] FIDP71rQTcatV7XzGr2suQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/87612c77 +17:00:46.743 [XNIO-1 task-2] FIDP71rQTcatV7XzGr2suQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +17:00:46.743 [XNIO-1 task-2] FIDP71rQTcatV7XzGr2suQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +17:00:46.743 [XNIO-1 task-2] FIDP71rQTcatV7XzGr2suQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/87612c77 +17:00:46.764 [XNIO-1 task-2] CBKNA8ZSSMKyx9UieOxMDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +17:00:46.764 [XNIO-1 task-2] CBKNA8ZSSMKyx9UieOxMDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +17:00:46.765 [XNIO-1 task-2] CBKNA8ZSSMKyx9UieOxMDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null diff --git a/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-client-1.log b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..12dd5b2 --- /dev/null +++ b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4614 @@ +18:00:38.319 [XNIO-1 task-2] lNtlhvvtToqfsGy4Boi76w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:38.321 [XNIO-1 task-2] lNtlhvvtToqfsGy4Boi76w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:38.322 [XNIO-1 task-2] lNtlhvvtToqfsGy4Boi76w DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +18:00:38.344 [XNIO-1 task-2] MqGMp594Q4K8aUAFS5wRmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.344 [XNIO-1 task-2] MqGMp594Q4K8aUAFS5wRmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.345 [XNIO-1 task-2] MqGMp594Q4K8aUAFS5wRmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.346 [XNIO-1 task-2] MqGMp594Q4K8aUAFS5wRmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:38.361 [XNIO-1 task-2] J8BIfkncRf6VgxSUi0jUnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.362 [XNIO-1 task-2] J8BIfkncRf6VgxSUi0jUnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.362 [XNIO-1 task-2] J8BIfkncRf6VgxSUi0jUnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.364 [XNIO-1 task-2] J8BIfkncRf6VgxSUi0jUnw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:38.394 [XNIO-1 task-2] Fsyh4EfhRRutjsJ3v1tl0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.394 [XNIO-1 task-2] Fsyh4EfhRRutjsJ3v1tl0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.395 [XNIO-1 task-2] Fsyh4EfhRRutjsJ3v1tl0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.453 [XNIO-1 task-2] UXiZzDMhSiK9E0bhtv4I-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.454 [XNIO-1 task-2] UXiZzDMhSiK9E0bhtv4I-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.454 [XNIO-1 task-2] UXiZzDMhSiK9E0bhtv4I-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.532 [XNIO-1 task-2] JHbPtHdKSSWHSBabH-JcUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.532 [XNIO-1 task-2] JHbPtHdKSSWHSBabH-JcUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:38.532 [XNIO-1 task-2] JHbPtHdKSSWHSBabH-JcUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.034 [XNIO-1 task-2] LtOJzavoQ9OICM89fR18rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04f1888f-49d9-45dc-9eeb-526c2f85a8eb +18:00:39.034 [XNIO-1 task-2] LtOJzavoQ9OICM89fR18rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.034 [XNIO-1 task-2] LtOJzavoQ9OICM89fR18rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:39.035 [XNIO-1 task-2] LtOJzavoQ9OICM89fR18rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04f1888f-49d9-45dc-9eeb-526c2f85a8eb +18:00:39.075 [XNIO-1 task-2] UpmuXUDGRC-SA_Iug_ONDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.075 [XNIO-1 task-2] UpmuXUDGRC-SA_Iug_ONDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.076 [XNIO-1 task-2] UpmuXUDGRC-SA_Iug_ONDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.116 [XNIO-1 task-2] bneWIPlCSNeffjw-5rBXFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.117 [XNIO-1 task-2] bneWIPlCSNeffjw-5rBXFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.117 [XNIO-1 task-2] bneWIPlCSNeffjw-5rBXFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.117 [XNIO-1 task-2] bneWIPlCSNeffjw-5rBXFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:39.190 [XNIO-1 task-2] 9CuF9eq1Q-uyRjXwhIfNcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.191 [XNIO-1 task-2] 9CuF9eq1Q-uyRjXwhIfNcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.191 [XNIO-1 task-2] 9CuF9eq1Q-uyRjXwhIfNcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.192 [XNIO-1 task-2] 9CuF9eq1Q-uyRjXwhIfNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:39.229 [XNIO-1 task-2] -fmsKGlkRketPD3ImaGWDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.229 [XNIO-1 task-2] -fmsKGlkRketPD3ImaGWDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.229 [XNIO-1 task-2] -fmsKGlkRketPD3ImaGWDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.230 [XNIO-1 task-2] -fmsKGlkRketPD3ImaGWDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:39.267 [XNIO-1 task-2] rfmcrtvJTnG1CZnZCTBfaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6aa3142-7d8a-4d68-8676-8b0961237155, base path is set to: null +18:00:39.267 [XNIO-1 task-2] rfmcrtvJTnG1CZnZCTBfaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.267 [XNIO-1 task-2] rfmcrtvJTnG1CZnZCTBfaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:39.268 [XNIO-1 task-2] rfmcrtvJTnG1CZnZCTBfaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a6aa3142-7d8a-4d68-8676-8b0961237155, base path is set to: null +18:00:39.268 [XNIO-1 task-2] rfmcrtvJTnG1CZnZCTBfaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a6aa3142-7d8a-4d68-8676-8b0961237155", "a6aa3142-7d8a-4d68-8676-8b0961237155", clientId) +18:00:39.285 [XNIO-1 task-2] bL1crrkyRSKMOZjXH6SyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1ca1765f-9544-48cc-9193-7ff5ed145070 +18:00:39.285 [XNIO-1 task-2] bL1crrkyRSKMOZjXH6SyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.286 [XNIO-1 task-2] bL1crrkyRSKMOZjXH6SyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:39.286 [XNIO-1 task-2] bL1crrkyRSKMOZjXH6SyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1ca1765f-9544-48cc-9193-7ff5ed145070 +18:00:39.307 [XNIO-1 task-2] vXzDqwrzTeyZkgqvhGzVIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.307 [XNIO-1 task-2] vXzDqwrzTeyZkgqvhGzVIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.307 [XNIO-1 task-2] vXzDqwrzTeyZkgqvhGzVIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.358 [XNIO-1 task-2] Hlom6KxcS1WXqVVZ5YhSKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06a27ce6-3238-456a-a0b7-a36a379b2650, base path is set to: null +18:00:39.358 [XNIO-1 task-2] Hlom6KxcS1WXqVVZ5YhSKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.358 [XNIO-1 task-2] Hlom6KxcS1WXqVVZ5YhSKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:39.358 [XNIO-1 task-2] Hlom6KxcS1WXqVVZ5YhSKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06a27ce6-3238-456a-a0b7-a36a379b2650, base path is set to: null +18:00:39.359 [XNIO-1 task-2] Hlom6KxcS1WXqVVZ5YhSKA DEBUG com.networknt.schema.TypeValidator debug - validate( "06a27ce6-3238-456a-a0b7-a36a379b2650", "06a27ce6-3238-456a-a0b7-a36a379b2650", clientId) +18:00:39.371 [XNIO-1 task-2] g9tmjc-TRA2tNO5Q1YWwUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.372 [XNIO-1 task-2] g9tmjc-TRA2tNO5Q1YWwUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.372 [XNIO-1 task-2] g9tmjc-TRA2tNO5Q1YWwUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.471 [XNIO-1 task-2] 1McemKL4RQOoILZ5Anm_gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/961c514d-81f3-437c-8602-215f1d79ff0e +18:00:39.471 [XNIO-1 task-2] 1McemKL4RQOoILZ5Anm_gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.471 [XNIO-1 task-2] 1McemKL4RQOoILZ5Anm_gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:39.471 [XNIO-1 task-2] 1McemKL4RQOoILZ5Anm_gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/961c514d-81f3-437c-8602-215f1d79ff0e +18:00:39.480 [XNIO-1 task-2] lnOWAEd4SPC5Wn-v_gXcQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.481 [XNIO-1 task-2] lnOWAEd4SPC5Wn-v_gXcQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.481 [XNIO-1 task-2] lnOWAEd4SPC5Wn-v_gXcQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.534 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.534 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.535 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.536 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.536 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.536 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.537 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.537 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:39.537 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:39.537 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.537 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.538 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e92b5dd-11df-40d7-a12d-a3c90579","clientDesc":"cd912c74-b215-490c-9a58-cd2ec4336f49","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:39.538 [XNIO-1 task-2] 8EpEf1jSR8uTg98dQZ7HgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:39.541 [XNIO-1 task-2] -cOtqNI2Ru2rMPFWu-5nlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5f4ca21-2ba7-494a-8a19-eaff7974ae39 +18:00:39.542 [XNIO-1 task-2] -cOtqNI2Ru2rMPFWu-5nlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.542 [XNIO-1 task-2] -cOtqNI2Ru2rMPFWu-5nlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:39.544 [XNIO-1 task-2] -cOtqNI2Ru2rMPFWu-5nlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c5f4ca21-2ba7-494a-8a19-eaff7974ae39 +18:00:39.554 [XNIO-1 task-2] gE8eGrjlQ9m9TsDpdprKMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c5f4ca21-2ba7-494a-8a19-eaff7974ae39, base path is set to: null +18:00:39.555 [XNIO-1 task-2] gE8eGrjlQ9m9TsDpdprKMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.555 [XNIO-1 task-2] gE8eGrjlQ9m9TsDpdprKMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:39.555 [XNIO-1 task-2] gE8eGrjlQ9m9TsDpdprKMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c5f4ca21-2ba7-494a-8a19-eaff7974ae39, base path is set to: null +18:00:39.555 [XNIO-1 task-2] gE8eGrjlQ9m9TsDpdprKMg DEBUG com.networknt.schema.TypeValidator debug - validate( "c5f4ca21-2ba7-494a-8a19-eaff7974ae39", "c5f4ca21-2ba7-494a-8a19-eaff7974ae39", clientId) +18:00:39.568 [XNIO-1 task-2] AYBGnFV6Rh-5YcSRhaFxdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.568 [XNIO-1 task-2] AYBGnFV6Rh-5YcSRhaFxdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.569 [XNIO-1 task-2] AYBGnFV6Rh-5YcSRhaFxdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.595 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - HikariPool-1 - configuration: +18:00:39.626 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - autoCommit......................true +18:00:39.626 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - connectionInitSql...............none +18:00:39.626 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - connectionTimeout...............30000 +18:00:39.626 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSourceClassName.............none +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSourceProperties............{password=} +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - healthCheckProperties...........{} +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - idleTimeout.....................600000 +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - isolateInternalQueries..........false +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - leakDetectionThreshold..........0 +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - maximumPoolSize.................2 +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - metricsTrackerFactory...........none +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - password........................ +18:00:39.627 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - readOnly........................false +18:00:39.628 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - scheduledExecutor...............none +18:00:39.628 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - threadFactory...................internal +18:00:39.628 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - username........................"mysqluser" +18:00:39.628 [hz._hzInstance_1_dev.partition-operation.thread-9] INFO com.zaxxer.hikari.HikariDataSource getConnection - HikariPool-1 - Starting... +18:00:39.634 [XNIO-1 task-2] kVffYMlXSfG9L-bZUqeEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cd6d46a6-1129-48d9-8209-3fb146c5134f +18:00:39.635 [XNIO-1 task-2] kVffYMlXSfG9L-bZUqeEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:39.635 [XNIO-1 task-2] kVffYMlXSfG9L-bZUqeEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:39.635 [XNIO-1 task-2] kVffYMlXSfG9L-bZUqeEBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cd6d46a6-1129-48d9-8209-3fb146c5134f +18:00:39.656 [XNIO-1 task-2] qHBC9H48R02U2bh2WiQbKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.657 [XNIO-1 task-2] qHBC9H48R02U2bh2WiQbKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.657 [XNIO-1 task-2] qHBC9H48R02U2bh2WiQbKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.737 [XNIO-1 task-2] wktTiDAxS2OTCeMGxCGR7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.737 [XNIO-1 task-2] wktTiDAxS2OTCeMGxCGR7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.738 [XNIO-1 task-2] wktTiDAxS2OTCeMGxCGR7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.781 [XNIO-1 task-2] M_veKIajSRewDqzVAh4rng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.782 [XNIO-1 task-2] M_veKIajSRewDqzVAh4rng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:39.782 [XNIO-1 task-2] M_veKIajSRewDqzVAh4rng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:39.789 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ad15226b-a8ae-46f2-b3e2-adab392f5c46 +18:00:39.973 [hz._hzInstance_1_dev.partition-operation.thread-9] INFO com.zaxxer.hikari.HikariDataSource getConnection - HikariPool-1 - Start completed. +18:00:40.076 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - Pool stats (total=2, active=2, idle=0, waiting=0) +18:00:40.213 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:990c2981 +18:00:40.216 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ad15226b-a8ae-46f2-b3e2-adab392f5c46 +18:00:40.230 [XNIO-1 task-2] 2NUUW9WfT9KAUIxgSrcf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ad15226b-a8ae-46f2-b3e2-adab392f5c46 +18:00:40.230 [XNIO-1 task-2] 2NUUW9WfT9KAUIxgSrcf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.230 [XNIO-1 task-2] 2NUUW9WfT9KAUIxgSrcf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:40.231 [XNIO-1 task-2] 2NUUW9WfT9KAUIxgSrcf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ad15226b-a8ae-46f2-b3e2-adab392f5c46 +18:00:40.237 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ad15226b-a8ae-46f2-b3e2-adab392f5c46 +18:00:40.246 [XNIO-1 task-2] zcXWkxUdQe27kULHPWqGvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.246 [XNIO-1 task-2] zcXWkxUdQe27kULHPWqGvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.247 [XNIO-1 task-2] zcXWkxUdQe27kULHPWqGvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.277 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c74bee0b-da2d-4c5e-a190-4084e9061a47 +18:00:40.288 [XNIO-1 task-2] 1uLScF2WSL6tQOqT_1VpVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c74bee0b-da2d-4c5e-a190-4084e9061a47, base path is set to: null +18:00:40.289 [XNIO-1 task-2] 1uLScF2WSL6tQOqT_1VpVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.289 [XNIO-1 task-2] 1uLScF2WSL6tQOqT_1VpVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:40.289 [XNIO-1 task-2] 1uLScF2WSL6tQOqT_1VpVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c74bee0b-da2d-4c5e-a190-4084e9061a47, base path is set to: null +18:00:40.289 [XNIO-1 task-2] 1uLScF2WSL6tQOqT_1VpVg DEBUG com.networknt.schema.TypeValidator debug - validate( "c74bee0b-da2d-4c5e-a190-4084e9061a47", "c74bee0b-da2d-4c5e-a190-4084e9061a47", clientId) +18:00:40.294 [XNIO-1 task-2] rQWuuRQ5QJmnefQDDy4R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.295 [XNIO-1 task-2] rQWuuRQ5QJmnefQDDy4R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.295 [XNIO-1 task-2] rQWuuRQ5QJmnefQDDy4R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.329 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.329 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.330 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.331 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.331 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:40.331 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba524c71-4cd6-48cc-b284-a8cbe8c12926", {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:40.331 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:40.331 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:40.331 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG com.networknt.schema.TypeValidator debug - validate( "be841b89-2377-415c-b9e6-af7fdcf1", {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:40.332 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:40.332 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"be841b89-2377-415c-b9e6-af7fdcf1","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:40.332 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:40.332 [XNIO-1 task-2] 3qGSMIIbS-SYrxi3R8URRw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:40.345 [XNIO-1 task-2] w2M78ktJT3qxVPorkqa6Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.346 [XNIO-1 task-2] w2M78ktJT3qxVPorkqa6Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.346 [XNIO-1 task-2] w2M78ktJT3qxVPorkqa6Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.518 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.519 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.519 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.520 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.520 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.521 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.521 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.521 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:40.521 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:40.521 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.522 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.522 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f23350c-be90-41cb-a9b9-303c5c39","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:40.523 [XNIO-1 task-2] rgNbAp59Sg-q4MFgh879pw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:40.533 [XNIO-1 task-2] wXdboaDHTw2mt6IpfpE6lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.533 [XNIO-1 task-2] wXdboaDHTw2mt6IpfpE6lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.534 [XNIO-1 task-2] wXdboaDHTw2mt6IpfpE6lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.534 [XNIO-1 task-2] wXdboaDHTw2mt6IpfpE6lA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:40.569 [XNIO-1 task-2] 7EmrRQNMSWiwxRhFsSQi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c74bee0b-da2d-4c5e-a190-4084e9061a47 +18:00:40.569 [XNIO-1 task-2] 7EmrRQNMSWiwxRhFsSQi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.570 [XNIO-1 task-2] 7EmrRQNMSWiwxRhFsSQi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:40.570 [XNIO-1 task-2] 7EmrRQNMSWiwxRhFsSQi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c74bee0b-da2d-4c5e-a190-4084e9061a47 +18:00:40.574 [XNIO-1 task-2] Ts3tJkOPQNWK9eyktVyzig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.574 [XNIO-1 task-2] Ts3tJkOPQNWK9eyktVyzig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.574 [XNIO-1 task-2] Ts3tJkOPQNWK9eyktVyzig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.592 [XNIO-1 task-2] BVHiizIRRaGmPadrhuSQ1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.592 [XNIO-1 task-2] BVHiizIRRaGmPadrhuSQ1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.593 [XNIO-1 task-2] BVHiizIRRaGmPadrhuSQ1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.593 [XNIO-1 task-2] BVHiizIRRaGmPadrhuSQ1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:40.648 [XNIO-1 task-2] E5UL36N-S0-4yAkTKKJLUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/be12fd39-cdea-404c-87cf-bef5b59bad05, base path is set to: null +18:00:40.648 [XNIO-1 task-2] E5UL36N-S0-4yAkTKKJLUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.648 [XNIO-1 task-2] E5UL36N-S0-4yAkTKKJLUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:40.648 [XNIO-1 task-2] E5UL36N-S0-4yAkTKKJLUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/be12fd39-cdea-404c-87cf-bef5b59bad05, base path is set to: null +18:00:40.649 [XNIO-1 task-2] E5UL36N-S0-4yAkTKKJLUA DEBUG com.networknt.schema.TypeValidator debug - validate( "be12fd39-cdea-404c-87cf-bef5b59bad05", "be12fd39-cdea-404c-87cf-bef5b59bad05", clientId) +18:00:40.727 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.727 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.727 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.728 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.728 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.729 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.729 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.729 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:40.729 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:40.729 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.729 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.730 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"59c9c263-d568-4c43-9dd4-c5b2959e","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.733 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:40.734 [XNIO-1 task-2] xKy0GhbsQFajxXM9YdDtMg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:40.742 [XNIO-1 task-2] mu9Jtgx9QPiy_c1osmlG2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d0a56ff-a488-4037-8922-0dac76d559f8, base path is set to: null +18:00:40.743 [XNIO-1 task-2] mu9Jtgx9QPiy_c1osmlG2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.746 [XNIO-1 task-2] mu9Jtgx9QPiy_c1osmlG2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:40.747 [XNIO-1 task-2] mu9Jtgx9QPiy_c1osmlG2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3d0a56ff-a488-4037-8922-0dac76d559f8, base path is set to: null +18:00:40.750 [XNIO-1 task-2] mu9Jtgx9QPiy_c1osmlG2w DEBUG com.networknt.schema.TypeValidator debug - validate( "3d0a56ff-a488-4037-8922-0dac76d559f8", "3d0a56ff-a488-4037-8922-0dac76d559f8", clientId) +18:00:40.776 [XNIO-1 task-2] qRfP4-vsQBifUIRo9r1h3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.776 [XNIO-1 task-2] qRfP4-vsQBifUIRo9r1h3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.776 [XNIO-1 task-2] qRfP4-vsQBifUIRo9r1h3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.826 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9b413f26-4474-4bd3-9366-89bb8628f291 +18:00:40.837 [XNIO-1 task-2] laFTSWQfSYKksRVuh84ogQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.837 [XNIO-1 task-2] laFTSWQfSYKksRVuh84ogQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.837 [XNIO-1 task-2] laFTSWQfSYKksRVuh84ogQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.838 [XNIO-1 task-2] laFTSWQfSYKksRVuh84ogQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:40.862 [XNIO-1 task-2] BNeXBL8WQcWCC711gDEGCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9b413f26-4474-4bd3-9366-89bb8628f291, base path is set to: null +18:00:40.862 [XNIO-1 task-2] BNeXBL8WQcWCC711gDEGCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.862 [XNIO-1 task-2] BNeXBL8WQcWCC711gDEGCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:40.862 [XNIO-1 task-2] BNeXBL8WQcWCC711gDEGCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9b413f26-4474-4bd3-9366-89bb8628f291, base path is set to: null +18:00:40.863 [XNIO-1 task-2] BNeXBL8WQcWCC711gDEGCg DEBUG com.networknt.schema.TypeValidator debug - validate( "9b413f26-4474-4bd3-9366-89bb8628f291", "9b413f26-4474-4bd3-9366-89bb8628f291", clientId) +18:00:40.882 [XNIO-1 task-2] q_g6USV7TYWIA2mXDp87KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5, base path is set to: null +18:00:40.882 [XNIO-1 task-2] q_g6USV7TYWIA2mXDp87KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.882 [XNIO-1 task-2] q_g6USV7TYWIA2mXDp87KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:40.882 [XNIO-1 task-2] q_g6USV7TYWIA2mXDp87KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5, base path is set to: null +18:00:40.883 [XNIO-1 task-2] q_g6USV7TYWIA2mXDp87KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ad95f05-8711-4540-ab4a-e1d72d5471f5", "2ad95f05-8711-4540-ab4a-e1d72d5471f5", clientId) +18:00:40.887 [XNIO-1 task-2] szyFBDB3T4uojUdvMGoykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:40.887 [XNIO-1 task-2] szyFBDB3T4uojUdvMGoykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.887 [XNIO-1 task-2] szyFBDB3T4uojUdvMGoykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:40.888 [XNIO-1 task-2] szyFBDB3T4uojUdvMGoykQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:40.893 [XNIO-1 task-2] cAlbPdQBTRqp3-IQL_xSsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c74bee0b-da2d-4c5e-a190-4084e9061a47, base path is set to: null +18:00:40.893 [XNIO-1 task-2] cAlbPdQBTRqp3-IQL_xSsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.894 [XNIO-1 task-2] cAlbPdQBTRqp3-IQL_xSsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:40.894 [XNIO-1 task-2] cAlbPdQBTRqp3-IQL_xSsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c74bee0b-da2d-4c5e-a190-4084e9061a47, base path is set to: null +18:00:40.894 [XNIO-1 task-2] cAlbPdQBTRqp3-IQL_xSsg DEBUG com.networknt.schema.TypeValidator debug - validate( "c74bee0b-da2d-4c5e-a190-4084e9061a47", "c74bee0b-da2d-4c5e-a190-4084e9061a47", clientId) +18:00:40.911 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.912 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:40.913 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:40.913 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.914 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1b74fc3-7ccc-48ad-b4da-bea5cb86","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:40.917 [XNIO-1 task-2] J4V584CHQZiG61Q7vSxj9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:40.920 [XNIO-1 task-2] gvdVj_fUSF69wcuiHhpeog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.920 [XNIO-1 task-2] gvdVj_fUSF69wcuiHhpeog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.921 [XNIO-1 task-2] gvdVj_fUSF69wcuiHhpeog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.921 [XNIO-1 task-2] gvdVj_fUSF69wcuiHhpeog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:40.989 [XNIO-1 task-2] olqEKCsSToOVz_mmGRfF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.989 [XNIO-1 task-2] olqEKCsSToOVz_mmGRfF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.989 [XNIO-1 task-2] olqEKCsSToOVz_mmGRfF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:40.991 [XNIO-1 task-2] olqEKCsSToOVz_mmGRfF7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.022 [XNIO-1 task-2] AOg-elzVSHS3IM_7fqeazw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.022 [XNIO-1 task-2] AOg-elzVSHS3IM_7fqeazw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.023 [XNIO-1 task-2] AOg-elzVSHS3IM_7fqeazw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.070 [XNIO-1 task-2] adZXtOX_RGuTd4zQa0BkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.070 [XNIO-1 task-2] adZXtOX_RGuTd4zQa0BkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.071 [XNIO-1 task-2] adZXtOX_RGuTd4zQa0BkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.071 [XNIO-1 task-2] adZXtOX_RGuTd4zQa0BkCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.104 [XNIO-1 task-2] krEmn74FRAOfHuaw7iaU6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.104 [XNIO-1 task-2] krEmn74FRAOfHuaw7iaU6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.104 [XNIO-1 task-2] krEmn74FRAOfHuaw7iaU6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.105 [XNIO-1 task-2] krEmn74FRAOfHuaw7iaU6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.136 [XNIO-1 task-2] G_JimyttSU21MGY24LzezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:41.136 [XNIO-1 task-2] G_JimyttSU21MGY24LzezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.136 [XNIO-1 task-2] G_JimyttSU21MGY24LzezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.137 [XNIO-1 task-2] G_JimyttSU21MGY24LzezQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:41.138 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:598c6e7e +18:00:41.141 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.141 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.141 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.142 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.142 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:41.142 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ba524c71-4cd6-48cc-b284-a8cbe8c12926", {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:41.142 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:598c6e7e +18:00:41.143 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:41.143 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:41.143 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d72d8a81-e1f2-448e-9417-9de50fe9", {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:41.144 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.144 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d72d8a81-e1f2-448e-9417-9de50fe9","clientDesc":"ba524c71-4cd6-48cc-b284-a8cbe8c12926","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:41.144 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:41.147 [XNIO-1 task-2] mWc0Njw5T4OmUHNiCIiIbQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:41.151 [XNIO-1 task-2] hbfrDAFxTtelmnHix3e8dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5, base path is set to: null +18:00:41.151 [XNIO-1 task-2] hbfrDAFxTtelmnHix3e8dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.151 [XNIO-1 task-2] hbfrDAFxTtelmnHix3e8dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:41.151 [XNIO-1 task-2] hbfrDAFxTtelmnHix3e8dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5, base path is set to: null +18:00:41.152 [XNIO-1 task-2] hbfrDAFxTtelmnHix3e8dA DEBUG com.networknt.schema.TypeValidator debug - validate( "2ad95f05-8711-4540-ab4a-e1d72d5471f5", "2ad95f05-8711-4540-ab4a-e1d72d5471f5", clientId) +18:00:41.155 [XNIO-1 task-2] hmJmComtSf6TZu2rWXmg7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:41.155 [XNIO-1 task-2] hmJmComtSf6TZu2rWXmg7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.155 [XNIO-1 task-2] hmJmComtSf6TZu2rWXmg7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.155 [XNIO-1 task-2] hmJmComtSf6TZu2rWXmg7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:41.159 [XNIO-1 task-2] Bk4iLzFYSqi-v8LxR4jXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5, base path is set to: null +18:00:41.159 [XNIO-1 task-2] Bk4iLzFYSqi-v8LxR4jXUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.159 [XNIO-1 task-2] Bk4iLzFYSqi-v8LxR4jXUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:41.160 [XNIO-1 task-2] Bk4iLzFYSqi-v8LxR4jXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5, base path is set to: null +18:00:41.160 [XNIO-1 task-2] Bk4iLzFYSqi-v8LxR4jXUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ad95f05-8711-4540-ab4a-e1d72d5471f5", "2ad95f05-8711-4540-ab4a-e1d72d5471f5", clientId) +18:00:41.168 [XNIO-1 task-2] y6uMcyO-QlKJWZZfbKZr3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:41.168 [XNIO-1 task-2] y6uMcyO-QlKJWZZfbKZr3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.168 [XNIO-1 task-2] y6uMcyO-QlKJWZZfbKZr3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.168 [XNIO-1 task-2] y6uMcyO-QlKJWZZfbKZr3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2ad95f05-8711-4540-ab4a-e1d72d5471f5 +18:00:41.206 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88faabc6 +18:00:41.208 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88faabc6 +18:00:41.208 [XNIO-1 task-2] Bj0Ol4TWRqG3GrQwT4nD4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b04fec5-e240-45a1-9d5b-78bfb35f4739 +18:00:41.208 [XNIO-1 task-2] Bj0Ol4TWRqG3GrQwT4nD4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.209 [XNIO-1 task-2] Bj0Ol4TWRqG3GrQwT4nD4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.209 [XNIO-1 task-2] Bj0Ol4TWRqG3GrQwT4nD4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b04fec5-e240-45a1-9d5b-78bfb35f4739 +18:00:41.213 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.214 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.214 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.215 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.215 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.215 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.215 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.215 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:41.216 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:41.216 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.216 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.216 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e436d01-dcdf-4dae-b9af-d1d3de35","clientDesc":"2f0ff0af-1d1d-4e4b-b2ba-9cf750b447e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:41.216 [XNIO-1 task-2] GEwJZrBZQnqiStKfgCzqrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:41.246 [XNIO-1 task-2] KylwzrkGRS--4FF9w6G8nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.247 [XNIO-1 task-2] KylwzrkGRS--4FF9w6G8nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.247 [XNIO-1 task-2] KylwzrkGRS--4FF9w6G8nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.247 [XNIO-1 task-2] KylwzrkGRS--4FF9w6G8nQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.329 [XNIO-1 task-2] zX9TgG94QqeMEUgZkEuQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b04fec5-e240-45a1-9d5b-78bfb35f4739 +18:00:41.329 [XNIO-1 task-2] zX9TgG94QqeMEUgZkEuQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.329 [XNIO-1 task-2] zX9TgG94QqeMEUgZkEuQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.330 [XNIO-1 task-2] zX9TgG94QqeMEUgZkEuQ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1b04fec5-e240-45a1-9d5b-78bfb35f4739 +18:00:41.390 [XNIO-1 task-2] FvulVEL-QRGwXAtFa9LVCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.390 [XNIO-1 task-2] FvulVEL-QRGwXAtFa9LVCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.390 [XNIO-1 task-2] FvulVEL-QRGwXAtFa9LVCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.391 [XNIO-1 task-2] FvulVEL-QRGwXAtFa9LVCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:41.475 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.476 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.476 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.494 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e63db85 +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG com.networknt.schema.TypeValidator debug - validate( "daee6950-153b-4eee-8e06-129c71559953", {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG com.networknt.schema.TypeValidator debug - validate( "c443fa46-6737-45ff-982a-be8142ce", {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.496 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c443fa46-6737-45ff-982a-be8142ce","clientDesc":"daee6950-153b-4eee-8e06-129c71559953","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:41.497 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:41.497 [XNIO-1 task-2] wQH_TMFxRFiCLRnqMG2tHg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:41.498 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e63db85 +18:00:41.500 [XNIO-1 task-2] fb4kLhBYSgS_x5JMnSRPxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.501 [XNIO-1 task-2] fb4kLhBYSgS_x5JMnSRPxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.502 [XNIO-1 task-2] fb4kLhBYSgS_x5JMnSRPxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.542 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:598c6e7e +18:00:41.567 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:88faabc6 +18:00:41.567 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e63db85 +18:00:41.593 [XNIO-1 task-2] QdDbPQ73S2yPv6Uq6i8n7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.593 [XNIO-1 task-2] QdDbPQ73S2yPv6Uq6i8n7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.594 [XNIO-1 task-2] QdDbPQ73S2yPv6Uq6i8n7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.664 [XNIO-1 task-2] ddSTPDxGSJG-9YD7SEP89A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.665 [XNIO-1 task-2] ddSTPDxGSJG-9YD7SEP89A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.665 [XNIO-1 task-2] ddSTPDxGSJG-9YD7SEP89A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.665 [XNIO-1 task-2] ddSTPDxGSJG-9YD7SEP89A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.681 [XNIO-1 task-2] K-vYEKmRTceczxYkDpdfUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2e03231-0ae8-464e-8ec0-440819552959 +18:00:41.681 [XNIO-1 task-2] K-vYEKmRTceczxYkDpdfUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.683 [XNIO-1 task-2] K-vYEKmRTceczxYkDpdfUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.683 [XNIO-1 task-2] K-vYEKmRTceczxYkDpdfUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2e03231-0ae8-464e-8ec0-440819552959 +18:00:41.690 [XNIO-1 task-2] aiFVX5MVR0WMd10BayfWDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.690 [XNIO-1 task-2] aiFVX5MVR0WMd10BayfWDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.691 [XNIO-1 task-2] aiFVX5MVR0WMd10BayfWDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.697 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6cf0d048-0941-46b3-a2a5-4aca8d55e31a +18:00:41.699 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6cf0d048-0941-46b3-a2a5-4aca8d55e31a +18:00:41.729 [XNIO-1 task-2] Ah5GIblKTYSd0o-lg5ORFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2e03231-0ae8-464e-8ec0-440819552959 +18:00:41.729 [XNIO-1 task-2] Ah5GIblKTYSd0o-lg5ORFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.729 [XNIO-1 task-2] Ah5GIblKTYSd0o-lg5ORFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.730 [XNIO-1 task-2] Ah5GIblKTYSd0o-lg5ORFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c2e03231-0ae8-464e-8ec0-440819552959 +18:00:41.763 [XNIO-1 task-2] hZLPQ1QGSxGo0NH-BDE8Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cf0d048-0941-46b3-a2a5-4aca8d55e31a, base path is set to: null +18:00:41.763 [XNIO-1 task-2] hZLPQ1QGSxGo0NH-BDE8Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.763 [XNIO-1 task-2] hZLPQ1QGSxGo0NH-BDE8Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:41.763 [XNIO-1 task-2] hZLPQ1QGSxGo0NH-BDE8Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cf0d048-0941-46b3-a2a5-4aca8d55e31a, base path is set to: null +18:00:41.764 [XNIO-1 task-2] hZLPQ1QGSxGo0NH-BDE8Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "6cf0d048-0941-46b3-a2a5-4aca8d55e31a", "6cf0d048-0941-46b3-a2a5-4aca8d55e31a", clientId) +18:00:41.774 [XNIO-1 task-2] c2922S0bTsSV7k7JoGcG_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4d1733a9-07b6-4215-824a-c310eb4b9c85 +18:00:41.775 [XNIO-1 task-2] c2922S0bTsSV7k7JoGcG_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.775 [XNIO-1 task-2] c2922S0bTsSV7k7JoGcG_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.776 [XNIO-1 task-2] c2922S0bTsSV7k7JoGcG_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4d1733a9-07b6-4215-824a-c310eb4b9c85 +18:00:41.793 [XNIO-1 task-2] 7pg_FoLSRDm4nzPHaq-zsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cf0d048-0941-46b3-a2a5-4aca8d55e31a, base path is set to: null +18:00:41.793 [XNIO-1 task-2] 7pg_FoLSRDm4nzPHaq-zsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.793 [XNIO-1 task-2] 7pg_FoLSRDm4nzPHaq-zsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:41.794 [XNIO-1 task-2] 7pg_FoLSRDm4nzPHaq-zsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cf0d048-0941-46b3-a2a5-4aca8d55e31a, base path is set to: null +18:00:41.794 [XNIO-1 task-2] 7pg_FoLSRDm4nzPHaq-zsw DEBUG com.networknt.schema.TypeValidator debug - validate( "6cf0d048-0941-46b3-a2a5-4aca8d55e31a", "6cf0d048-0941-46b3-a2a5-4aca8d55e31a", clientId) +18:00:41.800 [XNIO-1 task-2] gSLbKEEJQ1utLJot32MCCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab5e74c9-7fb4-44ac-9035-1ddfaa12b63e +18:00:41.800 [XNIO-1 task-2] gSLbKEEJQ1utLJot32MCCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.800 [XNIO-1 task-2] gSLbKEEJQ1utLJot32MCCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:41.800 [XNIO-1 task-2] gSLbKEEJQ1utLJot32MCCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ab5e74c9-7fb4-44ac-9035-1ddfaa12b63e +18:00:41.826 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9b62e69 +18:00:41.828 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9b62e69 +18:00:41.844 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.844 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.844 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:41.845 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.845 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:41.845 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0e6f82c6-2f68-4b6f-9b90-bff858763493", {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:41.845 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:41.846 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:41.846 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9fe4337f-195b-41a2-966f-83bc4071", {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:41.846 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.846 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9fe4337f-195b-41a2-966f-83bc4071","clientDesc":"0e6f82c6-2f68-4b6f-9b90-bff858763493","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:41.846 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:41.848 [XNIO-1 task-2] Pe2BoWaAQwut4Q3YAR2tOQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:41.861 [XNIO-1 task-2] ABbdU7a8SXe3YgA_C3AFLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cf0d048-0941-46b3-a2a5-4aca8d55e31a, base path is set to: null +18:00:41.861 [XNIO-1 task-2] ABbdU7a8SXe3YgA_C3AFLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.861 [XNIO-1 task-2] ABbdU7a8SXe3YgA_C3AFLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:41.861 [XNIO-1 task-2] ABbdU7a8SXe3YgA_C3AFLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6cf0d048-0941-46b3-a2a5-4aca8d55e31a, base path is set to: null +18:00:41.862 [XNIO-1 task-2] ABbdU7a8SXe3YgA_C3AFLg DEBUG com.networknt.schema.TypeValidator debug - validate( "6cf0d048-0941-46b3-a2a5-4aca8d55e31a", "6cf0d048-0941-46b3-a2a5-4aca8d55e31a", clientId) +18:00:41.873 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e63db85 +18:00:41.892 [XNIO-1 task-2] 9nEu51tAS5OX1fG_UKasOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.893 [XNIO-1 task-2] 9nEu51tAS5OX1fG_UKasOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.893 [XNIO-1 task-2] 9nEu51tAS5OX1fG_UKasOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.893 [XNIO-1 task-2] 9nEu51tAS5OX1fG_UKasOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:41.935 [XNIO-1 task-2] M1rt2G6XQSOocLA-ehDzPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.936 [XNIO-1 task-2] M1rt2G6XQSOocLA-ehDzPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.936 [XNIO-1 task-2] M1rt2G6XQSOocLA-ehDzPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.936 [XNIO-1 task-2] M1rt2G6XQSOocLA-ehDzPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:41.938 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b9b62e69 +18:00:41.982 [XNIO-1 task-2] HsjVuDtZQAydmKJEUNWRVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.982 [XNIO-1 task-2] HsjVuDtZQAydmKJEUNWRVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:41.983 [XNIO-1 task-2] HsjVuDtZQAydmKJEUNWRVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:41.983 [XNIO-1 task-2] HsjVuDtZQAydmKJEUNWRVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:41.994 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8c4d6adc +18:00:42.004 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8c4d6adc +18:00:42.007 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e63db85 +18:00:42.007 [XNIO-1 task-2] JpAfJOlOQWmgT69keWYshQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.008 [XNIO-1 task-2] JpAfJOlOQWmgT69keWYshQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.011 [XNIO-1 task-2] JpAfJOlOQWmgT69keWYshQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.035 [XNIO-1 task-2] kRndvqsrSGmUIhhU_bXwhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3ae6a496-03e7-43a7-8511-5c6899d602f7 +18:00:42.035 [XNIO-1 task-2] kRndvqsrSGmUIhhU_bXwhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.035 [XNIO-1 task-2] kRndvqsrSGmUIhhU_bXwhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.039 [XNIO-1 task-2] kRndvqsrSGmUIhhU_bXwhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3ae6a496-03e7-43a7-8511-5c6899d602f7 +18:00:42.045 [XNIO-1 task-2] -9VJ2_L8SvSL29MznfxOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.045 [XNIO-1 task-2] -9VJ2_L8SvSL29MznfxOog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.046 [XNIO-1 task-2] -9VJ2_L8SvSL29MznfxOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.066 [XNIO-1 task-2] 3vF0rvwMSVeA3ZjVRinL5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.067 [XNIO-1 task-2] 3vF0rvwMSVeA3ZjVRinL5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.067 [XNIO-1 task-2] 3vF0rvwMSVeA3ZjVRinL5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.067 [XNIO-1 task-2] 3vF0rvwMSVeA3ZjVRinL5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.069 [XNIO-1 task-2] 3vF0rvwMSVeA3ZjVRinL5A DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:42.137 [XNIO-1 task-2] 3vF0rvwMSVeA3ZjVRinL5A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:42.142 [XNIO-1 task-2] PKkoxaxNTWu8IOuOs4LhsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ae6a496-03e7-43a7-8511-5c6899d602f7, base path is set to: null +18:00:42.143 [XNIO-1 task-2] PKkoxaxNTWu8IOuOs4LhsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.143 [XNIO-1 task-2] PKkoxaxNTWu8IOuOs4LhsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.143 [XNIO-1 task-2] PKkoxaxNTWu8IOuOs4LhsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ae6a496-03e7-43a7-8511-5c6899d602f7, base path is set to: null +18:00:42.143 [XNIO-1 task-2] PKkoxaxNTWu8IOuOs4LhsA DEBUG com.networknt.schema.TypeValidator debug - validate( "3ae6a496-03e7-43a7-8511-5c6899d602f7", "3ae6a496-03e7-43a7-8511-5c6899d602f7", clientId) +18:00:42.155 [XNIO-1 task-2] xyUBAWHnQ1ylph6g4VY1xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:42.155 [XNIO-1 task-2] xyUBAWHnQ1ylph6g4VY1xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.155 [XNIO-1 task-2] xyUBAWHnQ1ylph6g4VY1xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.156 [XNIO-1 task-2] xyUBAWHnQ1ylph6g4VY1xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:42.160 [XNIO-1 task-2] Z-KPqHoeSgGSbqIS3fuQnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.160 [XNIO-1 task-2] Z-KPqHoeSgGSbqIS3fuQnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.160 [XNIO-1 task-2] Z-KPqHoeSgGSbqIS3fuQnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.160 [XNIO-1 task-2] Z-KPqHoeSgGSbqIS3fuQnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.161 [XNIO-1 task-2] Z-KPqHoeSgGSbqIS3fuQnw DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +18:00:42.164 [XNIO-1 task-2] nTvYxD7LQQG2aXowdX_iHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.164 [XNIO-1 task-2] nTvYxD7LQQG2aXowdX_iHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.164 [XNIO-1 task-2] nTvYxD7LQQG2aXowdX_iHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.164 [XNIO-1 task-2] nTvYxD7LQQG2aXowdX_iHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.194 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.194 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.195 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.196 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "40625c34-6164-424d-92ea-f73982114ba8", {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "25c560fb-648e-4962-b2e6-5b60c5eb", {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"25c560fb-648e-4962-b2e6-5b60c5eb","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:42.197 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.198 [XNIO-1 task-2] qWJQ0EbzT9W9wIwjQ4M-Ew DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:42.202 [XNIO-1 task-2] qeA6wCvyR2aomMrvtgVzxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:42.203 [XNIO-1 task-2] qeA6wCvyR2aomMrvtgVzxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.203 [XNIO-1 task-2] qeA6wCvyR2aomMrvtgVzxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.204 [XNIO-1 task-2] qeA6wCvyR2aomMrvtgVzxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:42.204 [XNIO-1 task-2] qeA6wCvyR2aomMrvtgVzxA DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", clientId) +18:00:42.225 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9b62e69 +18:00:42.248 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e63db85 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:42.250 [XNIO-1 task-2] qeA6wCvyR2aomMrvtgVzxA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:42.254 [XNIO-1 task-2] cHQccN3fRx65XUsdwT8zYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.255 [XNIO-1 task-2] cHQccN3fRx65XUsdwT8zYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.255 [XNIO-1 task-2] cHQccN3fRx65XUsdwT8zYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.255 [XNIO-1 task-2] cHQccN3fRx65XUsdwT8zYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.313 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.313 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.315 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.315 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.316 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"42b0fb15-2237-4311-901b-8fa1c63d","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.316 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b9b62e69 +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.317 [XNIO-1 task-2] K3ltrMm_QVGNKLk-M_LHrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.322 [XNIO-1 task-2] Po5yln3GRcOPqvr614ORGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.322 [XNIO-1 task-2] Po5yln3GRcOPqvr614ORGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.323 [XNIO-1 task-2] Po5yln3GRcOPqvr614ORGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.323 [XNIO-1 task-2] Po5yln3GRcOPqvr614ORGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.340 [XNIO-1 task-2] fxBzhx83SJiV2qjxGQ6e-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.340 [XNIO-1 task-2] fxBzhx83SJiV2qjxGQ6e-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.340 [XNIO-1 task-2] fxBzhx83SJiV2qjxGQ6e-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.347 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c89d8f62-2f08-4431-b4ff-51e0feea9943 +18:00:42.362 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8c4d6adc +18:00:42.373 [XNIO-1 task-2] kYuJUJgwSNShDNwF6tdKZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +18:00:42.373 [XNIO-1 task-2] kYuJUJgwSNShDNwF6tdKZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.374 [XNIO-1 task-2] kYuJUJgwSNShDNwF6tdKZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.374 [XNIO-1 task-2] kYuJUJgwSNShDNwF6tdKZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +18:00:42.374 [XNIO-1 task-2] kYuJUJgwSNShDNwF6tdKZg DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:42.414 [XNIO-1 task-2] kYuJUJgwSNShDNwF6tdKZg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:42.417 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.418 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.418 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.419 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.419 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.419 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.419 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.419 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:42.419 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:42.420 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.420 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.420 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f77397f4-04a6-4b27-ac5c-2d0ef774","clientDesc":"efc5afa5-02f2-46ec-b86d-9ac85826a9ad","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.440 [XNIO-1 task-2] BCeahIl6Q1uKVAd55_iB8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.451 [XNIO-1 task-2] rgh-0C7aT1q33wdhprljRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.451 [XNIO-1 task-2] rgh-0C7aT1q33wdhprljRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.451 [XNIO-1 task-2] rgh-0C7aT1q33wdhprljRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.452 [XNIO-1 task-2] rgh-0C7aT1q33wdhprljRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.473 [XNIO-1 task-2] fhdx9M6dQwml_Efwyh-4Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:42.473 [XNIO-1 task-2] fhdx9M6dQwml_Efwyh-4Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.473 [XNIO-1 task-2] fhdx9M6dQwml_Efwyh-4Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.473 [XNIO-1 task-2] fhdx9M6dQwml_Efwyh-4Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:42.480 [XNIO-1 task-2] fhdx9M6dQwml_Efwyh-4Jg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.481 [XNIO-1 task-2] fhdx9M6dQwml_Efwyh-4Jg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.491 [XNIO-1 task-2] g0wGf90aQCORA6ZGyqDS_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:42.491 [XNIO-1 task-2] g0wGf90aQCORA6ZGyqDS_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.491 [XNIO-1 task-2] g0wGf90aQCORA6ZGyqDS_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.491 [XNIO-1 task-2] g0wGf90aQCORA6ZGyqDS_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:42.503 [XNIO-1 task-2] g0wGf90aQCORA6ZGyqDS_A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.503 [XNIO-1 task-2] g0wGf90aQCORA6ZGyqDS_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.507 [XNIO-1 task-2] 8Tf1-aV2RKWWRyb25gt0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:42.507 [XNIO-1 task-2] 8Tf1-aV2RKWWRyb25gt0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.507 [XNIO-1 task-2] 8Tf1-aV2RKWWRyb25gt0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.508 [XNIO-1 task-2] 8Tf1-aV2RKWWRyb25gt0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:42.512 [XNIO-1 task-2] rhIKNk_1TAWM7Rt-gOO_Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.513 [XNIO-1 task-2] rhIKNk_1TAWM7Rt-gOO_Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.513 [XNIO-1 task-2] rhIKNk_1TAWM7Rt-gOO_Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.543 [XNIO-1 task-2] 7VrInqwpSziQiaCWpXeEBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.543 [XNIO-1 task-2] 7VrInqwpSziQiaCWpXeEBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.544 [XNIO-1 task-2] 7VrInqwpSziQiaCWpXeEBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.584 [XNIO-1 task-2] ky_b0YyyTzKOSekac2hzqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.585 [XNIO-1 task-2] ky_b0YyyTzKOSekac2hzqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.585 [XNIO-1 task-2] ky_b0YyyTzKOSekac2hzqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.585 [XNIO-1 task-2] ky_b0YyyTzKOSekac2hzqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.617 [XNIO-1 task-2] 5s1NrCwfQPC_aoQGEwyMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c89d8f62-2f08-4431-b4ff-51e0feea9943, base path is set to: null +18:00:42.618 [XNIO-1 task-2] 5s1NrCwfQPC_aoQGEwyMQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.618 [XNIO-1 task-2] 5s1NrCwfQPC_aoQGEwyMQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.618 [XNIO-1 task-2] 5s1NrCwfQPC_aoQGEwyMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c89d8f62-2f08-4431-b4ff-51e0feea9943, base path is set to: null +18:00:42.618 [XNIO-1 task-2] 5s1NrCwfQPC_aoQGEwyMQg DEBUG com.networknt.schema.TypeValidator debug - validate( "c89d8f62-2f08-4431-b4ff-51e0feea9943", "c89d8f62-2f08-4431-b4ff-51e0feea9943", clientId) +18:00:42.627 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.628 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.628 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.629 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbd2acc3-73ff-4761-ad6e-584f9115","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.630 [XNIO-1 task-2] DL-OfdVCR-WaUxbNpuQoSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.633 [XNIO-1 task-2] gqS1QFSGSmSCLFQL1HNHcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.634 [XNIO-1 task-2] gqS1QFSGSmSCLFQL1HNHcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.634 [XNIO-1 task-2] gqS1QFSGSmSCLFQL1HNHcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.634 [XNIO-1 task-2] gqS1QFSGSmSCLFQL1HNHcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.657 [XNIO-1 task-2] LGC-wzHZQFaTQRW7hERiZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.657 [XNIO-1 task-2] LGC-wzHZQFaTQRW7hERiZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.657 [XNIO-1 task-2] LGC-wzHZQFaTQRW7hERiZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.657 [XNIO-1 task-2] LGC-wzHZQFaTQRW7hERiZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.678 [XNIO-1 task-2] EtGcZ9t-T4KEGK5dU-0d6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.678 [XNIO-1 task-2] EtGcZ9t-T4KEGK5dU-0d6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.678 [XNIO-1 task-2] EtGcZ9t-T4KEGK5dU-0d6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.678 [XNIO-1 task-2] EtGcZ9t-T4KEGK5dU-0d6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.690 [XNIO-1 task-2] IH1Jte9DQauWXaOu7zzFSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:42.690 [XNIO-1 task-2] IH1Jte9DQauWXaOu7zzFSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.690 [XNIO-1 task-2] IH1Jte9DQauWXaOu7zzFSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.691 [XNIO-1 task-2] IH1Jte9DQauWXaOu7zzFSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:42.702 [XNIO-1 task-2] P_Rn6EJlTo2quGuv9u9buA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.702 [XNIO-1 task-2] P_Rn6EJlTo2quGuv9u9buA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.702 [XNIO-1 task-2] P_Rn6EJlTo2quGuv9u9buA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.738 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.739 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.739 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.740 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.741 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5933788-3cbd-4fdb-94e1-65e84a47","clientDesc":"eaed367e-503d-4972-9eb6-ee128ed8549d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.742 [XNIO-1 task-2] QkqjW6JLRrW9KvM0GngmXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.747 [XNIO-1 task-2] 3qTQosP6TBqUPzLB904lTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5f1e9d66-a749-4de7-8e01-6b73f5f0d330 +18:00:42.747 [XNIO-1 task-2] 3qTQosP6TBqUPzLB904lTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.747 [XNIO-1 task-2] 3qTQosP6TBqUPzLB904lTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.747 [XNIO-1 task-2] 3qTQosP6TBqUPzLB904lTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5f1e9d66-a749-4de7-8e01-6b73f5f0d330 +18:00:42.767 [XNIO-1 task-2] veTaTSmgSUSBiEhuTlhA1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.767 [XNIO-1 task-2] veTaTSmgSUSBiEhuTlhA1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.767 [XNIO-1 task-2] veTaTSmgSUSBiEhuTlhA1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.768 [XNIO-1 task-2] veTaTSmgSUSBiEhuTlhA1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.790 [XNIO-1 task-2] yJcLpGyZReuI4spemFMrVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.790 [XNIO-1 task-2] yJcLpGyZReuI4spemFMrVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.790 [XNIO-1 task-2] yJcLpGyZReuI4spemFMrVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.790 [XNIO-1 task-2] yJcLpGyZReuI4spemFMrVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.812 [XNIO-1 task-2] 82x1aQnvRxyA-UiYK4xp2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5f1e9d66-a749-4de7-8e01-6b73f5f0d330, base path is set to: null +18:00:42.813 [XNIO-1 task-2] 82x1aQnvRxyA-UiYK4xp2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.813 [XNIO-1 task-2] 82x1aQnvRxyA-UiYK4xp2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.813 [XNIO-1 task-2] 82x1aQnvRxyA-UiYK4xp2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5f1e9d66-a749-4de7-8e01-6b73f5f0d330, base path is set to: null +18:00:42.813 [XNIO-1 task-2] 82x1aQnvRxyA-UiYK4xp2w DEBUG com.networknt.schema.TypeValidator debug - validate( "5f1e9d66-a749-4de7-8e01-6b73f5f0d330", "5f1e9d66-a749-4de7-8e01-6b73f5f0d330", clientId) +18:00:42.816 [XNIO-1 task-2] t9htA7rBQzSQvGBtdRa2oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5f1e9d66-a749-4de7-8e01-6b73f5f0d330 +18:00:42.817 [XNIO-1 task-2] t9htA7rBQzSQvGBtdRa2oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.817 [XNIO-1 task-2] t9htA7rBQzSQvGBtdRa2oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.817 [XNIO-1 task-2] t9htA7rBQzSQvGBtdRa2oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5f1e9d66-a749-4de7-8e01-6b73f5f0d330 +18:00:42.829 [XNIO-1 task-2] zpQDx3hVRdObQ_Mudp69HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.830 [XNIO-1 task-2] zpQDx3hVRdObQ_Mudp69HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.831 [XNIO-1 task-2] zpQDx3hVRdObQ_Mudp69HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.837 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:651b3be2-94ad-43d8-9e9e-3a8b81826b1a +18:00:42.838 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:651b3be2-94ad-43d8-9e9e-3a8b81826b1a +18:00:42.848 [XNIO-1 task-2] tWGwldHTSAGsm1yQVNasdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/76b65bba-d6f2-436f-8eae-8aad2611f4e1 +18:00:42.848 [XNIO-1 task-2] tWGwldHTSAGsm1yQVNasdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.849 [XNIO-1 task-2] tWGwldHTSAGsm1yQVNasdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.849 [XNIO-1 task-2] tWGwldHTSAGsm1yQVNasdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/76b65bba-d6f2-436f-8eae-8aad2611f4e1 +18:00:42.853 [XNIO-1 task-2] AK2UwBMCS3aEE5A2PYO7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.853 [XNIO-1 task-2] AK2UwBMCS3aEE5A2PYO7Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.853 [XNIO-1 task-2] AK2UwBMCS3aEE5A2PYO7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.854 [XNIO-1 task-2] AK2UwBMCS3aEE5A2PYO7Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.867 [XNIO-1 task-2] Sv6hO27hSAeN4jghcGyciQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.867 [XNIO-1 task-2] Sv6hO27hSAeN4jghcGyciQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.867 [XNIO-1 task-2] Sv6hO27hSAeN4jghcGyciQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.868 [XNIO-1 task-2] Sv6hO27hSAeN4jghcGyciQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.868 [XNIO-1 task-2] Sv6hO27hSAeN4jghcGyciQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:42.875 [XNIO-1 task-2] Sv6hO27hSAeN4jghcGyciQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:42.878 [XNIO-1 task-2] XGqen3_tSGKjrFHKel-nSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.879 [XNIO-1 task-2] XGqen3_tSGKjrFHKel-nSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.879 [XNIO-1 task-2] XGqen3_tSGKjrFHKel-nSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.879 [XNIO-1 task-2] XGqen3_tSGKjrFHKel-nSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.879 [XNIO-1 task-2] XGqen3_tSGKjrFHKel-nSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +18:00:42.883 [XNIO-1 task-2] AC1VPdSoScC9K11YH2k-Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.883 [XNIO-1 task-2] AC1VPdSoScC9K11YH2k-Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.883 [XNIO-1 task-2] AC1VPdSoScC9K11YH2k-Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.900 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0e63db85 +18:00:42.901 [XNIO-1 task-2] bFR5cgFHQZKrrZh-1JS2Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.901 [XNIO-1 task-2] bFR5cgFHQZKrrZh-1JS2Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:42.901 [XNIO-1 task-2] bFR5cgFHQZKrrZh-1JS2Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:42.902 [XNIO-1 task-2] bFR5cgFHQZKrrZh-1JS2Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +18:00:42.912 [XNIO-1 task-2] bFR5cgFHQZKrrZh-1JS2Iw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.912 [XNIO-1 task-2] bFR5cgFHQZKrrZh-1JS2Iw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.916 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.916 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.919 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.919 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG com.networknt.schema.TypeValidator debug - validate( "4508d6b7-3f93-4c94-ad89-b78188bdea7a", {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG com.networknt.schema.TypeValidator debug - validate( "ac3ebb05-41fc-4e31-91ee-54c0608f", {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ac3ebb05-41fc-4e31-91ee-54c0608f","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:42.920 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.921 [XNIO-1 task-2] 6NAycFq7RjG8WhiMWQNzfw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:42.924 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.925 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.925 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.926 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.926 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.926 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.927 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.927 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:42.927 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:42.927 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.927 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.927 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e625335d-17e9-447f-be16-5ee84e81","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.928 [XNIO-1 task-2] wduLgHMnQW-85j-Z0TSdLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.934 [XNIO-1 task-2] CUjbelgxQyGk01PNfN2RFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:42.934 [XNIO-1 task-2] CUjbelgxQyGk01PNfN2RFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.934 [XNIO-1 task-2] CUjbelgxQyGk01PNfN2RFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:42.934 [XNIO-1 task-2] CUjbelgxQyGk01PNfN2RFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:42.944 [XNIO-1 task-2] CUjbelgxQyGk01PNfN2RFg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:42.945 [XNIO-1 task-2] CUjbelgxQyGk01PNfN2RFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:42.949 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.950 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.950 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +18:00:42.950 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.950 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.950 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:42.951 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.951 [XNIO-1 task-2] tyJ9wj3OSIGZoDbibUjHng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:00:42.992 [XNIO-1 task-2] PrtvrGuBSBq9fbVp9VLFkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.992 [XNIO-1 task-2] PrtvrGuBSBq9fbVp9VLFkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + +18:00:42.996 [XNIO-1 task-2] HYWOjs3BSaeZmPAjeIbvPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.996 [XNIO-1 task-2] HYWOjs3BSaeZmPAjeIbvPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:42.996 [XNIO-1 task-2] HYWOjs3BSaeZmPAjeIbvPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:42.996 [XNIO-1 task-2] HYWOjs3BSaeZmPAjeIbvPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.014 [XNIO-1 task-2] 4jNdKcdjS7CWbQyDv4lY6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.015 [XNIO-1 task-2] 4jNdKcdjS7CWbQyDv4lY6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.015 [XNIO-1 task-2] 4jNdKcdjS7CWbQyDv4lY6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.021 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:80167848-390e-48f4-b1ff-b3236a337c89 +18:00:43.023 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:80167848-390e-48f4-b1ff-b3236a337c89 +18:00:43.034 [XNIO-1 task-2] RJ_Vff6fTNmuANaOZr1Pmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:43.034 [XNIO-1 task-2] RJ_Vff6fTNmuANaOZr1Pmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.034 [XNIO-1 task-2] RJ_Vff6fTNmuANaOZr1Pmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.035 [XNIO-1 task-2] RJ_Vff6fTNmuANaOZr1Pmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:43.041 [XNIO-1 task-2] RJ_Vff6fTNmuANaOZr1Pmg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.042 [XNIO-1 task-2] RJ_Vff6fTNmuANaOZr1Pmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.045 [XNIO-1 task-2] orCWqgscSXWX4Dt6CF_mnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:43.045 [XNIO-1 task-2] orCWqgscSXWX4Dt6CF_mnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.045 [XNIO-1 task-2] orCWqgscSXWX4Dt6CF_mnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.045 [XNIO-1 task-2] orCWqgscSXWX4Dt6CF_mnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:43.051 [XNIO-1 task-2] LX_gXm_OQBmyU5MY9O0qlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.052 [XNIO-1 task-2] LX_gXm_OQBmyU5MY9O0qlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.052 [XNIO-1 task-2] LX_gXm_OQBmyU5MY9O0qlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.052 [XNIO-1 task-2] LX_gXm_OQBmyU5MY9O0qlA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.073 [XNIO-1 task-2] _A7hLKmFTVOMks94VDooiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/76b65bba-d6f2-436f-8eae-8aad2611f4e1, base path is set to: null +18:00:43.073 [XNIO-1 task-2] _A7hLKmFTVOMks94VDooiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.073 [XNIO-1 task-2] _A7hLKmFTVOMks94VDooiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.073 [XNIO-1 task-2] _A7hLKmFTVOMks94VDooiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/76b65bba-d6f2-436f-8eae-8aad2611f4e1, base path is set to: null +18:00:43.074 [XNIO-1 task-2] _A7hLKmFTVOMks94VDooiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "76b65bba-d6f2-436f-8eae-8aad2611f4e1", "76b65bba-d6f2-436f-8eae-8aad2611f4e1", clientId) +18:00:43.089 [XNIO-1 task-2] 2kRcH9_GSEKZQy_m41LBCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.089 [XNIO-1 task-2] 2kRcH9_GSEKZQy_m41LBCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.089 [XNIO-1 task-2] 2kRcH9_GSEKZQy_m41LBCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.107 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:565e50fc-9945-4112-ac79-8dd69c361413 +18:00:43.107 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.108 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.108 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.109 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.109 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.109 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.110 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.110 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:43.110 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:43.110 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.110 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.110 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d30941be-d3f5-46ee-beea-9eae7993","clientDesc":"2c8543e3-ef76-4b2e-a31e-7c2c024cc858","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.111 [XNIO-1 task-2] 5XCFsEYXQJC4vfblhhwAUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.116 [XNIO-1 task-2] 6RfMB-S6TgichpSdU_L0DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f +18:00:43.116 [XNIO-1 task-2] 6RfMB-S6TgichpSdU_L0DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.116 [XNIO-1 task-2] 6RfMB-S6TgichpSdU_L0DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.116 [XNIO-1 task-2] 6RfMB-S6TgichpSdU_L0DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f +18:00:43.121 [XNIO-1 task-2] DtyUPs4hSVGFqORUM3X6ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.121 [XNIO-1 task-2] DtyUPs4hSVGFqORUM3X6ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.121 [XNIO-1 task-2] DtyUPs4hSVGFqORUM3X6ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.122 [XNIO-1 task-2] DtyUPs4hSVGFqORUM3X6ug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.153 [XNIO-1 task-2] LRXXRilOSWuanK1xwN8uAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.153 [XNIO-1 task-2] LRXXRilOSWuanK1xwN8uAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.153 [XNIO-1 task-2] LRXXRilOSWuanK1xwN8uAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.172 [XNIO-1 task-2] 2dh1MtM8S_mGqwl-Q1xCHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:43.172 [XNIO-1 task-2] 2dh1MtM8S_mGqwl-Q1xCHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.172 [XNIO-1 task-2] 2dh1MtM8S_mGqwl-Q1xCHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.172 [XNIO-1 task-2] 2dh1MtM8S_mGqwl-Q1xCHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:43.173 [XNIO-1 task-2] 2dh1MtM8S_mGqwl-Q1xCHw DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", clientId) +18:00:43.176 [XNIO-1 task-2] qKgZcOgJRj6eEFlIGke0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/344abcb4-9699-4257-8f31-6528e7e3ad59 +18:00:43.176 [XNIO-1 task-2] qKgZcOgJRj6eEFlIGke0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.176 [XNIO-1 task-2] qKgZcOgJRj6eEFlIGke0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.177 [XNIO-1 task-2] qKgZcOgJRj6eEFlIGke0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/344abcb4-9699-4257-8f31-6528e7e3ad59 +18:00:43.188 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.188 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.190 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.191 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.191 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.191 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.192 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.192 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:43.192 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:43.192 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.192 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.192 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d127e2d-fb52-433b-9ead-56c80176","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.221 [XNIO-1 task-2] OcsU1nAJTIiKrIj00MchSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.227 [XNIO-1 task-2] layxIWpGTgOzjfUFcLaoag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.227 [XNIO-1 task-2] layxIWpGTgOzjfUFcLaoag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.228 [XNIO-1 task-2] layxIWpGTgOzjfUFcLaoag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.252 [XNIO-1 task-2] sufoNsW1Q1KjJkVTEHH_Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:43.252 [XNIO-1 task-2] sufoNsW1Q1KjJkVTEHH_Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.252 [XNIO-1 task-2] sufoNsW1Q1KjJkVTEHH_Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.253 [XNIO-1 task-2] sufoNsW1Q1KjJkVTEHH_Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:43.261 [XNIO-1 task-2] sufoNsW1Q1KjJkVTEHH_Lg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.284 [XNIO-1 task-2] sufoNsW1Q1KjJkVTEHH_Lg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.288 [XNIO-1 task-2] MXn3A0nXQwS4_Lm61URWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:43.288 [XNIO-1 task-2] MXn3A0nXQwS4_Lm61URWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.288 [XNIO-1 task-2] MXn3A0nXQwS4_Lm61URWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.288 [XNIO-1 task-2] MXn3A0nXQwS4_Lm61URWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:43.294 [XNIO-1 task-2] mZQKT9RCT7iwuUJlXMxnug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:43.295 [XNIO-1 task-2] mZQKT9RCT7iwuUJlXMxnug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.295 [XNIO-1 task-2] mZQKT9RCT7iwuUJlXMxnug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.295 [XNIO-1 task-2] mZQKT9RCT7iwuUJlXMxnug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:43.296 [XNIO-1 task-2] mZQKT9RCT7iwuUJlXMxnug DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", clientId) +18:00:43.301 [XNIO-1 task-2] sIdrQeqrR6uEs-Pvq2W-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:43.301 [XNIO-1 task-2] sIdrQeqrR6uEs-Pvq2W-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.301 [XNIO-1 task-2] sIdrQeqrR6uEs-Pvq2W-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.301 [XNIO-1 task-2] sIdrQeqrR6uEs-Pvq2W-wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:43.305 [XNIO-1 task-2] cpDDeOK7SLumT9unccDCOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.305 [XNIO-1 task-2] cpDDeOK7SLumT9unccDCOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.305 [XNIO-1 task-2] cpDDeOK7SLumT9unccDCOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.305 [XNIO-1 task-2] cpDDeOK7SLumT9unccDCOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.324 [XNIO-1 task-2] uk8lS8UKRXu9zjoId0i40A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:43.324 [XNIO-1 task-2] uk8lS8UKRXu9zjoId0i40A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.324 [XNIO-1 task-2] uk8lS8UKRXu9zjoId0i40A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.324 [XNIO-1 task-2] uk8lS8UKRXu9zjoId0i40A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:43.325 [XNIO-1 task-2] uk8lS8UKRXu9zjoId0i40A DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", clientId) +18:00:43.340 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +18:00:43.341 [XNIO-1 task-2] uk8lS8UKRXu9zjoId0i40A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.341 [XNIO-1 task-2] uk8lS8UKRXu9zjoId0i40A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.350 [XNIO-1 task-2] huj2tE4wQDC2MsnPB2jtiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ccc841fa-6925-4171-a377-c3c8074d5ebd +18:00:43.350 [XNIO-1 task-2] huj2tE4wQDC2MsnPB2jtiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.350 [XNIO-1 task-2] huj2tE4wQDC2MsnPB2jtiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.351 [XNIO-1 task-2] huj2tE4wQDC2MsnPB2jtiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ccc841fa-6925-4171-a377-c3c8074d5ebd +18:00:43.361 [XNIO-1 task-2] X8R7ir1OTp-Wyd7iEhFzhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469, base path is set to: null +18:00:43.362 [XNIO-1 task-2] X8R7ir1OTp-Wyd7iEhFzhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.362 [XNIO-1 task-2] X8R7ir1OTp-Wyd7iEhFzhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.362 [XNIO-1 task-2] X8R7ir1OTp-Wyd7iEhFzhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469, base path is set to: null +18:00:43.362 [XNIO-1 task-2] X8R7ir1OTp-Wyd7iEhFzhA DEBUG com.networknt.schema.TypeValidator debug - validate( "3fd10486-1efc-45c0-bcd5-b0c8287e1469", "3fd10486-1efc-45c0-bcd5-b0c8287e1469", clientId) +18:00:43.464 [XNIO-1 task-2] X8R7ir1OTp-Wyd7iEhFzhA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:43.465 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fa223f96-7fdc-49ff-aee7-3634611320cb +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.465 [XNIO-1 task-2] X8R7ir1OTp-Wyd7iEhFzhA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.469 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.469 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.469 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.470 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.470 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:43.470 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "cca4e049-54ea-4148-ac00-4795b1c380e6", {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:43.470 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:43.470 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:43.470 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "c19f5744-9009-4b73-b648-616c375a", {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:43.471 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.471 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c19f5744-9009-4b73-b648-616c375a","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.471 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.471 [XNIO-1 task-2] pqLBnMwSRn-DQtOk28JEvg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.476 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.477 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.477 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.478 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.478 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.478 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.478 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.478 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:43.478 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:43.478 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.479 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.479 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2398ee9-8cfc-49f0-9655-841334e5","clientDesc":"cca4e049-54ea-4148-ac00-4795b1c380e6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.480 [XNIO-1 task-2] McnP_M0uRWi41vIFUYpFrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.487 [XNIO-1 task-2] m1MbZ9dzTrK_FuTPt20a5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:43.487 [XNIO-1 task-2] m1MbZ9dzTrK_FuTPt20a5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.487 [XNIO-1 task-2] m1MbZ9dzTrK_FuTPt20a5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.487 [XNIO-1 task-2] m1MbZ9dzTrK_FuTPt20a5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:43.496 [XNIO-1 task-2] 2zc-DwkjQh-khGVHaoj-jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +18:00:43.496 [XNIO-1 task-2] 2zc-DwkjQh-khGVHaoj-jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.496 [XNIO-1 task-2] 2zc-DwkjQh-khGVHaoj-jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.496 [XNIO-1 task-2] 2zc-DwkjQh-khGVHaoj-jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +18:00:43.497 [XNIO-1 task-2] 2zc-DwkjQh-khGVHaoj-jg DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", clientId) +18:00:43.502 [XNIO-1 task-2] VDaUmD1nRK64zSwnEe7EfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.502 [XNIO-1 task-2] VDaUmD1nRK64zSwnEe7EfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.502 [XNIO-1 task-2] VDaUmD1nRK64zSwnEe7EfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.502 [XNIO-1 task-2] VDaUmD1nRK64zSwnEe7EfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.517 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.517 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.518 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.518 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG com.networknt.schema.TypeValidator debug - validate( "91414d29-c711-4925-b432-33cfc8d28a0d", {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG com.networknt.schema.TypeValidator debug - validate( "e63750f8-84b6-418b-8817-a6682ff6", {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e63750f8-84b6-418b-8817-a6682ff6","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.519 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.520 [XNIO-1 task-2] tb0UN208Q-m95QEvxOgajA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.527 [XNIO-1 task-2] LgLjJye1R4upNCe4llH9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.528 [XNIO-1 task-2] LgLjJye1R4upNCe4llH9tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.528 [XNIO-1 task-2] LgLjJye1R4upNCe4llH9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.528 [XNIO-1 task-2] LgLjJye1R4upNCe4llH9tA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.549 [XNIO-1 task-2] 9XuitDcVQcefzxSpkDJn-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.550 [XNIO-1 task-2] 9XuitDcVQcefzxSpkDJn-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.550 [XNIO-1 task-2] 9XuitDcVQcefzxSpkDJn-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.592 [XNIO-1 task-2] 5942X8k_Sge2QJu9vWQODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:43.592 [XNIO-1 task-2] 5942X8k_Sge2QJu9vWQODA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.592 [XNIO-1 task-2] 5942X8k_Sge2QJu9vWQODA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.593 [XNIO-1 task-2] 5942X8k_Sge2QJu9vWQODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:43.593 [XNIO-1 task-2] 5942X8k_Sge2QJu9vWQODA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", clientId) +18:00:43.597 [XNIO-1 task-2] XceZnrXKT-qadrI1Pn1CwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.597 [XNIO-1 task-2] XceZnrXKT-qadrI1Pn1CwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.597 [XNIO-1 task-2] XceZnrXKT-qadrI1Pn1CwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.598 [XNIO-1 task-2] XceZnrXKT-qadrI1Pn1CwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.644 [XNIO-1 task-2] u5vbHoY2SFW0BHBLPOW3dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8903811d-2438-492a-a778-1059c123a31d +18:00:43.644 [XNIO-1 task-2] u5vbHoY2SFW0BHBLPOW3dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.644 [XNIO-1 task-2] u5vbHoY2SFW0BHBLPOW3dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.644 [XNIO-1 task-2] u5vbHoY2SFW0BHBLPOW3dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8903811d-2438-492a-a778-1059c123a31d +18:00:43.662 [XNIO-1 task-2] Icmt4B5yQnyrM1K8wyuTxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97, base path is set to: null +18:00:43.663 [XNIO-1 task-2] Icmt4B5yQnyrM1K8wyuTxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.663 [XNIO-1 task-2] Icmt4B5yQnyrM1K8wyuTxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.663 [XNIO-1 task-2] Icmt4B5yQnyrM1K8wyuTxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97, base path is set to: null +18:00:43.663 [XNIO-1 task-2] Icmt4B5yQnyrM1K8wyuTxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:43.675 [XNIO-1 task-2] Icmt4B5yQnyrM1K8wyuTxQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.676 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ec9fcd6 +18:00:43.678 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ec9fcd6 +18:00:43.679 [XNIO-1 task-2] 4q_QIL6sSe63ObXQ9ZhsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:43.679 [XNIO-1 task-2] 4q_QIL6sSe63ObXQ9ZhsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.679 [XNIO-1 task-2] 4q_QIL6sSe63ObXQ9ZhsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.679 [XNIO-1 task-2] 4q_QIL6sSe63ObXQ9ZhsdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:43.686 [XNIO-1 task-2] 43WCT1N_RrWS0pcGmWRiWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:43.687 [XNIO-1 task-2] 43WCT1N_RrWS0pcGmWRiWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.687 [XNIO-1 task-2] 43WCT1N_RrWS0pcGmWRiWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.687 [XNIO-1 task-2] 43WCT1N_RrWS0pcGmWRiWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:43.688 [XNIO-1 task-2] 43WCT1N_RrWS0pcGmWRiWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", clientId) +18:00:43.692 [XNIO-1 task-2] u3QF2AHdTfSRY-fO2IxjWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.692 [XNIO-1 task-2] u3QF2AHdTfSRY-fO2IxjWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.693 [XNIO-1 task-2] u3QF2AHdTfSRY-fO2IxjWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.704 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ec9fcd6 +18:00:43.742 [XNIO-1 task-2] NqzvjyvhRcG_Q817k2iYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf18d252-9f27-424e-b8d0-c9a043bfe248 +18:00:43.742 [XNIO-1 task-2] NqzvjyvhRcG_Q817k2iYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.742 [XNIO-1 task-2] NqzvjyvhRcG_Q817k2iYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.742 [XNIO-1 task-2] NqzvjyvhRcG_Q817k2iYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf18d252-9f27-424e-b8d0-c9a043bfe248 +18:00:43.769 [XNIO-1 task-2] NZIpsA1bQNK9VKmg-Z-6Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.769 [XNIO-1 task-2] NZIpsA1bQNK9VKmg-Z-6Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.769 [XNIO-1 task-2] NZIpsA1bQNK9VKmg-Z-6Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.770 [XNIO-1 task-2] NZIpsA1bQNK9VKmg-Z-6Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.794 [XNIO-1 task-2] cZ62gHubQpOx8ZJcWRuGHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/80167848-390e-48f4-b1ff-b3236a337c89, base path is set to: null +18:00:43.794 [XNIO-1 task-2] cZ62gHubQpOx8ZJcWRuGHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.794 [XNIO-1 task-2] cZ62gHubQpOx8ZJcWRuGHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.794 [XNIO-1 task-2] cZ62gHubQpOx8ZJcWRuGHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/80167848-390e-48f4-b1ff-b3236a337c89, base path is set to: null +18:00:43.794 [XNIO-1 task-2] cZ62gHubQpOx8ZJcWRuGHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "80167848-390e-48f4-b1ff-b3236a337c89", "80167848-390e-48f4-b1ff-b3236a337c89", clientId) +18:00:43.802 [XNIO-1 task-2] o27cfmA9Tme5Tt5iX9Lc2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:43.802 [XNIO-1 task-2] o27cfmA9Tme5Tt5iX9Lc2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.802 [XNIO-1 task-2] o27cfmA9Tme5Tt5iX9Lc2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.803 [XNIO-1 task-2] o27cfmA9Tme5Tt5iX9Lc2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:43.803 [XNIO-1 task-2] o27cfmA9Tme5Tt5iX9Lc2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:43.847 [XNIO-1 task-2] o27cfmA9Tme5Tt5iX9Lc2Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.852 [XNIO-1 task-2] dKPnGjHmTtKmkpllOr8RMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:43.852 [XNIO-1 task-2] dKPnGjHmTtKmkpllOr8RMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.852 [XNIO-1 task-2] dKPnGjHmTtKmkpllOr8RMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.852 [XNIO-1 task-2] dKPnGjHmTtKmkpllOr8RMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:43.853 [XNIO-1 task-2] dKPnGjHmTtKmkpllOr8RMA DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", clientId) +18:00:43.857 [XNIO-1 task-2] izgYmB7dSQulg0Y1h8YAQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.857 [XNIO-1 task-2] izgYmB7dSQulg0Y1h8YAQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.857 [XNIO-1 task-2] izgYmB7dSQulg0Y1h8YAQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.885 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.885 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.886 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.886 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.886 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:43.887 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "91414d29-c711-4925-b432-33cfc8d28a0d", {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:43.887 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:43.887 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:43.887 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2e47e43b-267d-4d1c-bbd5-91205f36", {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:43.887 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.887 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2e47e43b-267d-4d1c-bbd5-91205f36","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.887 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.888 [XNIO-1 task-2] gSaErIaoQdiNmfaYft2nWQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.891 [XNIO-1 task-2] Y2AOo_luSxSb3AdNZqfkOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/344abcb4-9699-4257-8f31-6528e7e3ad59, base path is set to: null +18:00:43.892 [XNIO-1 task-2] Y2AOo_luSxSb3AdNZqfkOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.892 [XNIO-1 task-2] Y2AOo_luSxSb3AdNZqfkOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.892 [XNIO-1 task-2] Y2AOo_luSxSb3AdNZqfkOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/344abcb4-9699-4257-8f31-6528e7e3ad59, base path is set to: null +18:00:43.893 [XNIO-1 task-2] Y2AOo_luSxSb3AdNZqfkOg DEBUG com.networknt.schema.TypeValidator debug - validate( "344abcb4-9699-4257-8f31-6528e7e3ad59", "344abcb4-9699-4257-8f31-6528e7e3ad59", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:43.907 [XNIO-1 task-2] Y2AOo_luSxSb3AdNZqfkOg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/344abcb4-9699-4257-8f31-6528e7e3ad59} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.910 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.910 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.911 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.912 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.912 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.912 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.912 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.913 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:43.913 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:43.913 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.914 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.915 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb8eb1cd-572b-4830-b015-a3e5d63e","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:43.916 [XNIO-1 task-2] jzBJgrvQTviNrmkoivyecQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:43.922 [XNIO-1 task-2] 4dx_Zrp0Suim4kd30mqCrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.922 [XNIO-1 task-2] 4dx_Zrp0Suim4kd30mqCrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.922 [XNIO-1 task-2] 4dx_Zrp0Suim4kd30mqCrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.923 [XNIO-1 task-2] 4dx_Zrp0Suim4kd30mqCrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.944 [XNIO-1 task-2] B43GLKJuS82ZH5-aWy9tJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:43.944 [XNIO-1 task-2] B43GLKJuS82ZH5-aWy9tJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:43.944 [XNIO-1 task-2] B43GLKJuS82ZH5-aWy9tJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:43.944 [XNIO-1 task-2] B43GLKJuS82ZH5-aWy9tJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:43.948 [XNIO-1 task-2] iOF5qM3ZTnqXrgcX48BdoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:43.948 [XNIO-1 task-2] iOF5qM3ZTnqXrgcX48BdoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.948 [XNIO-1 task-2] iOF5qM3ZTnqXrgcX48BdoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:43.949 [XNIO-1 task-2] iOF5qM3ZTnqXrgcX48BdoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:43.949 [XNIO-1 task-2] iOF5qM3ZTnqXrgcX48BdoA DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:43.963 [XNIO-1 task-2] iOF5qM3ZTnqXrgcX48BdoA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.968 [XNIO-1 task-2] 7BQd3LRUREuH-HtLfbcX_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.968 [XNIO-1 task-2] 7BQd3LRUREuH-HtLfbcX_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:43.968 [XNIO-1 task-2] 7BQd3LRUREuH-HtLfbcX_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:43.969 [XNIO-1 task-2] 7BQd3LRUREuH-HtLfbcX_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.972 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:abaafb82 +18:00:43.975 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:abaafb82 +18:00:44.032 [XNIO-1 task-2] uf1fkZoETWW-8Vv-PQcEFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f +18:00:44.032 [XNIO-1 task-2] uf1fkZoETWW-8Vv-PQcEFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.032 [XNIO-1 task-2] uf1fkZoETWW-8Vv-PQcEFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.032 [XNIO-1 task-2] uf1fkZoETWW-8Vv-PQcEFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f +18:00:44.040 [XNIO-1 task-2] zdBtdZJNT6-2Dnbnd_z3gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:44.041 [XNIO-1 task-2] zdBtdZJNT6-2Dnbnd_z3gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.041 [XNIO-1 task-2] zdBtdZJNT6-2Dnbnd_z3gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.041 [XNIO-1 task-2] zdBtdZJNT6-2Dnbnd_z3gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:44.042 [XNIO-1 task-2] zdBtdZJNT6-2Dnbnd_z3gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", clientId) +18:00:44.060 [XNIO-1 task-2] Ai9_BhgZQ9C5bAxBe3r7qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.061 [XNIO-1 task-2] Ai9_BhgZQ9C5bAxBe3r7qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.061 [XNIO-1 task-2] Ai9_BhgZQ9C5bAxBe3r7qQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.075 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ec9fcd6 +18:00:44.078 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0f714a9f-bf41-4eed-a993-0442cd2e0901 +18:00:44.083 [XNIO-1 task-2] RRXkF4isS7iyno1N3krTKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.083 [XNIO-1 task-2] RRXkF4isS7iyno1N3krTKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.088 [XNIO-1 task-2] RRXkF4isS7iyno1N3krTKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.114 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.115 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.115 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4508d6b7-3f93-4c94-ad89-b78188bdea7a", {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1e24567-5bb9-4a29-875f-06c059fe", {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a1e24567-5bb9-4a29-875f-06c059fe","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.118 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.119 [XNIO-1 task-2] JnGCXhj2R-iITGX7fBA1pQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.125 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.125 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.126 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.126 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.127 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f154e6f-f7b7-40ce-83f7-2ab67bd6","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.128 [XNIO-1 task-2] 6ShfKEATQgys4-dZq0-Pjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.131 [XNIO-1 task-2] 7UUuxrzGQMq3DIS8_iPyMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:44.132 [XNIO-1 task-2] 7UUuxrzGQMq3DIS8_iPyMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.132 [XNIO-1 task-2] 7UUuxrzGQMq3DIS8_iPyMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.132 [XNIO-1 task-2] 7UUuxrzGQMq3DIS8_iPyMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:44.142 [XNIO-1 task-2] 7UUuxrzGQMq3DIS8_iPyMA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.143 [XNIO-1 task-2] 7UUuxrzGQMq3DIS8_iPyMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.148 [XNIO-1 task-2] l2yqc1CbSpucpxw1_VbRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97 +18:00:44.148 [XNIO-1 task-2] l2yqc1CbSpucpxw1_VbRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.148 [XNIO-1 task-2] l2yqc1CbSpucpxw1_VbRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.149 [XNIO-1 task-2] l2yqc1CbSpucpxw1_VbRQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97 +18:00:44.188 [XNIO-1 task-2] l2yqc1CbSpucpxw1_VbRQg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.189 [XNIO-1 task-2] l2yqc1CbSpucpxw1_VbRQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.196 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.197 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.200 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.200 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.200 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:44.200 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "84530e70-7d32-48ec-91af-d3c8a9e44686", {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:44.200 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.201 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.201 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "d61a7682-b1c4-4c48-b370-58e7fa8d", {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:44.201 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.201 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d61a7682-b1c4-4c48-b370-58e7fa8d","clientDesc":"84530e70-7d32-48ec-91af-d3c8a9e44686","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.201 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.201 [XNIO-1 task-2] 0rE8NMF2T_KJ7Fuyo_T8bw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.206 [XNIO-1 task-2] umGC1zwxRCuP9PkUHc3qRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +18:00:44.207 [XNIO-1 task-2] umGC1zwxRCuP9PkUHc3qRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.207 [XNIO-1 task-2] umGC1zwxRCuP9PkUHc3qRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.207 [XNIO-1 task-2] umGC1zwxRCuP9PkUHc3qRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +18:00:44.208 [XNIO-1 task-2] umGC1zwxRCuP9PkUHc3qRw DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", clientId) +18:00:44.213 [XNIO-1 task-2] JoysMc-ZQzC8dNVxhCipdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:44.213 [XNIO-1 task-2] JoysMc-ZQzC8dNVxhCipdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.213 [XNIO-1 task-2] JoysMc-ZQzC8dNVxhCipdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.213 [XNIO-1 task-2] JoysMc-ZQzC8dNVxhCipdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:44.225 [XNIO-1 task-2] JoysMc-ZQzC8dNVxhCipdg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.226 [XNIO-1 task-2] JoysMc-ZQzC8dNVxhCipdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.230 [XNIO-1 task-2] K9VD8JrFRimMpe1p87aItA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:44.230 [XNIO-1 task-2] K9VD8JrFRimMpe1p87aItA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.230 [XNIO-1 task-2] K9VD8JrFRimMpe1p87aItA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.231 [XNIO-1 task-2] K9VD8JrFRimMpe1p87aItA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:44.238 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.238 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.239 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.239 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a781b4c-71f1-4bba-83a2-764fa07ff9e2 +18:00:44.241 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.241 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.242 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.242 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.248 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.254 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.254 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.254 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.254 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"799f32b6-c517-4c90-a284-84fecee8","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.255 [XNIO-1 task-2] pIuZiPTTT4KULXfAaDa_lA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.260 [XNIO-1 task-2] aeTa5Z7NSgWtuRhWzFfEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20656d22-a732-4d81-a22e-04f279de9108 +18:00:44.260 [XNIO-1 task-2] aeTa5Z7NSgWtuRhWzFfEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.260 [XNIO-1 task-2] aeTa5Z7NSgWtuRhWzFfEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.261 [XNIO-1 task-2] aeTa5Z7NSgWtuRhWzFfEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20656d22-a732-4d81-a22e-04f279de9108 +18:00:44.279 [XNIO-1 task-2] DsXvfeGUR06CqkfHK1km7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:44.279 [XNIO-1 task-2] DsXvfeGUR06CqkfHK1km7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.279 [XNIO-1 task-2] DsXvfeGUR06CqkfHK1km7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.279 [XNIO-1 task-2] DsXvfeGUR06CqkfHK1km7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f, base path is set to: null +18:00:44.280 [XNIO-1 task-2] DsXvfeGUR06CqkfHK1km7A DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:44.318 [XNIO-1 task-2] DsXvfeGUR06CqkfHK1km7A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/5ac17726-6afe-4db0-a435-3c130f92623f} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.325 [XNIO-1 task-2] irk2S2uIR4CAO0pZk9SbNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.325 [XNIO-1 task-2] irk2S2uIR4CAO0pZk9SbNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.326 [XNIO-1 task-2] irk2S2uIR4CAO0pZk9SbNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.328 [XNIO-1 task-2] irk2S2uIR4CAO0pZk9SbNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.338 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:abaafb82 +18:00:44.349 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.349 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.350 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.350 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.350 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.351 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.351 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.351 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.351 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.351 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.351 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.351 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23532dab-0664-4685-87f0-0122d771","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.352 [XNIO-1 task-2] MH2iabFrSLyur_U9Ze979w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.356 [XNIO-1 task-2] m0Svely0QdO28-31_OizRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.356 [XNIO-1 task-2] m0Svely0QdO28-31_OizRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.356 [XNIO-1 task-2] m0Svely0QdO28-31_OizRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.356 [XNIO-1 task-2] m0Svely0QdO28-31_OizRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.370 [XNIO-1 task-2] IBYrBv-XSDaR3q_5TVlK-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0e7da42-8226-4df5-9ea1-d029fb4b13f9, base path is set to: null +18:00:44.370 [XNIO-1 task-2] IBYrBv-XSDaR3q_5TVlK-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.370 [XNIO-1 task-2] IBYrBv-XSDaR3q_5TVlK-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.370 [XNIO-1 task-2] IBYrBv-XSDaR3q_5TVlK-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0e7da42-8226-4df5-9ea1-d029fb4b13f9, base path is set to: null +18:00:44.370 [XNIO-1 task-2] IBYrBv-XSDaR3q_5TVlK-g DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:44.389 [XNIO-1 task-2] IBYrBv-XSDaR3q_5TVlK-g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/a0e7da42-8226-4df5-9ea1-d029fb4b13f9} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.397 [XNIO-1 task-2] me91UO6QT0yLasI3bJC8iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0e7da42-8226-4df5-9ea1-d029fb4b13f9, base path is set to: null +18:00:44.397 [XNIO-1 task-2] me91UO6QT0yLasI3bJC8iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.397 [XNIO-1 task-2] me91UO6QT0yLasI3bJC8iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.397 [XNIO-1 task-2] me91UO6QT0yLasI3bJC8iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0e7da42-8226-4df5-9ea1-d029fb4b13f9, base path is set to: null +18:00:44.398 [XNIO-1 task-2] me91UO6QT0yLasI3bJC8iw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:44.409 [XNIO-1 task-2] me91UO6QT0yLasI3bJC8iw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/a0e7da42-8226-4df5-9ea1-d029fb4b13f9} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.414 [XNIO-1 task-2] KTmZ_c9xSU-6sNP8VkFoyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:44.414 [XNIO-1 task-2] KTmZ_c9xSU-6sNP8VkFoyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.414 [XNIO-1 task-2] KTmZ_c9xSU-6sNP8VkFoyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.414 [XNIO-1 task-2] KTmZ_c9xSU-6sNP8VkFoyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:44.414 [XNIO-1 task-2] KTmZ_c9xSU-6sNP8VkFoyA DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", clientId) +18:00:44.418 [XNIO-1 task-2] 20yqRPOJRp-LF4GINim5_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.419 [XNIO-1 task-2] 20yqRPOJRp-LF4GINim5_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.419 [XNIO-1 task-2] 20yqRPOJRp-LF4GINim5_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.438 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.438 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.438 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.439 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.439 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:44.439 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "bd42f865-9dc3-4c85-9b89-a4c61482ed4b", {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:44.439 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.439 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.439 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "9a1639b0-d850-4ce3-9a76-b115062b", {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:44.440 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.440 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9a1639b0-d850-4ce3-9a76-b115062b","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.440 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.440 [XNIO-1 task-2] v9BlypzYTOah9_m2w1EaFw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.444 [XNIO-1 task-2] b8CYqN0ySoyGxYFtOCiOtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.444 [XNIO-1 task-2] b8CYqN0ySoyGxYFtOCiOtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.444 [XNIO-1 task-2] b8CYqN0ySoyGxYFtOCiOtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.467 [XNIO-1 task-2] 4pw9PExeToOX-L5POwJ23w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.467 [XNIO-1 task-2] 4pw9PExeToOX-L5POwJ23w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.468 [XNIO-1 task-2] 4pw9PExeToOX-L5POwJ23w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.489 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:abaafb82 +18:00:44.500 [XNIO-1 task-2] TYveKXpJRE2XXLj2lKDfLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.500 [XNIO-1 task-2] TYveKXpJRE2XXLj2lKDfLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.501 [XNIO-1 task-2] TYveKXpJRE2XXLj2lKDfLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.507 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:abaafb82 +18:00:44.566 [XNIO-1 task-2] d78Y8fy-Szm3lw_MV3fixQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.567 [XNIO-1 task-2] d78Y8fy-Szm3lw_MV3fixQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.567 [XNIO-1 task-2] d78Y8fy-Szm3lw_MV3fixQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.574 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7075e8d2-ef43-4472-9937-370a0e18191e +18:00:44.587 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.588 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.588 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.590 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.590 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1037ed9-82ca-4410-84f3-14ac37ea","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.591 [XNIO-1 task-2] YT5rW38MTiCYAADLba_jPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.596 [XNIO-1 task-2] T3QJBMeLQm6N5qYZyZn3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97 +18:00:44.597 [XNIO-1 task-2] T3QJBMeLQm6N5qYZyZn3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.597 [XNIO-1 task-2] T3QJBMeLQm6N5qYZyZn3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.597 [XNIO-1 task-2] T3QJBMeLQm6N5qYZyZn3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97 +18:00:44.605 [XNIO-1 task-2] T3QJBMeLQm6N5qYZyZn3Ww ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.606 [XNIO-1 task-2] T3QJBMeLQm6N5qYZyZn3Ww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.609 [XNIO-1 task-2] GvX1EvPrQ1mZw8-V5Tv6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/134183ba-d2f8-496d-86c2-d2436a0753a8 +18:00:44.609 [XNIO-1 task-2] GvX1EvPrQ1mZw8-V5Tv6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.609 [XNIO-1 task-2] GvX1EvPrQ1mZw8-V5Tv6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.609 [XNIO-1 task-2] GvX1EvPrQ1mZw8-V5Tv6Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/134183ba-d2f8-496d-86c2-d2436a0753a8 +18:00:44.619 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:44.624 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:44.629 [XNIO-1 task-2] QDJdR_hNQReZokJaijfy-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.629 [XNIO-1 task-2] QDJdR_hNQReZokJaijfy-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.630 [XNIO-1 task-2] QDJdR_hNQReZokJaijfy-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.646 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.646 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.647 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.647 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.647 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "40625c34-6164-424d-92ea-f73982114ba8", {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "2f808244-fbe9-4af3-bfc3-8fe35623", {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2f808244-fbe9-4af3-bfc3-8fe35623","clientDesc":"40625c34-6164-424d-92ea-f73982114ba8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.648 [XNIO-1 task-2] 7uxLEMIQQF-iE5i7YUTaIg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.654 [XNIO-1 task-2] aFiNgT0MQDqypdQSu0yvIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.658 [XNIO-1 task-2] aFiNgT0MQDqypdQSu0yvIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.658 [XNIO-1 task-2] aFiNgT0MQDqypdQSu0yvIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.675 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:63929890-ec89-4041-839e-2d1c9d828349 +18:00:44.676 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fd4bfb06 +18:00:44.679 [XNIO-1 task-2] grcWNJeXQSGpU27L5xL0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.680 [XNIO-1 task-2] grcWNJeXQSGpU27L5xL0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.680 [XNIO-1 task-2] grcWNJeXQSGpU27L5xL0ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.698 [XNIO-1 task-2] JR15aqbFTdizW10GpciF1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f277df85-5c39-4ffc-966e-5de7f2cfd5ce, base path is set to: null +18:00:44.698 [XNIO-1 task-2] JR15aqbFTdizW10GpciF1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.698 [XNIO-1 task-2] JR15aqbFTdizW10GpciF1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.698 [XNIO-1 task-2] JR15aqbFTdizW10GpciF1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f277df85-5c39-4ffc-966e-5de7f2cfd5ce, base path is set to: null +18:00:44.698 [XNIO-1 task-2] JR15aqbFTdizW10GpciF1A DEBUG com.networknt.schema.TypeValidator debug - validate( "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", clientId) +18:00:44.700 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:44.706 [XNIO-1 task-2] yMeOE7f8R8qkdcR2zMefXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.706 [XNIO-1 task-2] yMeOE7f8R8qkdcR2zMefXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.706 [XNIO-1 task-2] yMeOE7f8R8qkdcR2zMefXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.707 [XNIO-1 task-2] yMeOE7f8R8qkdcR2zMefXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.713 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0d6b752b-9beb-459f-9651-a0599d7c59da +18:00:44.717 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fd4bfb06 +18:00:44.719 [XNIO-1 task-2] ACTqCBZ6Qcq6Mjjoisj8fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:44.719 [XNIO-1 task-2] ACTqCBZ6Qcq6Mjjoisj8fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.719 [XNIO-1 task-2] ACTqCBZ6Qcq6Mjjoisj8fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.719 [XNIO-1 task-2] ACTqCBZ6Qcq6Mjjoisj8fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:44.719 [XNIO-1 task-2] ACTqCBZ6Qcq6Mjjoisj8fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) +Jun 28, 2024 6:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.735 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.735 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.736 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.737 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"95b5b5c5-d371-4d50-8c3a-eccb8ab2","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.738 [XNIO-1 task-2] A3B_FO5ORb-pKoVbz3xv7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.741 [XNIO-1 task-2] H0kqtN98RCenKTHYt9twUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:44.742 [XNIO-1 task-2] H0kqtN98RCenKTHYt9twUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.742 [XNIO-1 task-2] H0kqtN98RCenKTHYt9twUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.743 [XNIO-1 task-2] H0kqtN98RCenKTHYt9twUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:44.751 [XNIO-1 task-2] rSuR0THLRKmrNiE_JQR8hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.751 [XNIO-1 task-2] rSuR0THLRKmrNiE_JQR8hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.752 [XNIO-1 task-2] rSuR0THLRKmrNiE_JQR8hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.772 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.772 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.772 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"af4ac2f1-1c07-4ed9-97fb-094bfa25","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.774 [XNIO-1 task-2] 2jTFQjNwTPy9GGVf8OFAZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.775 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:99ea11a2-0e7b-495e-a933-6ee92b573ee7 +18:00:44.779 [XNIO-1 task-2] MYDj6WKVQ4Khrhq6UWS5WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97, base path is set to: null +18:00:44.779 [XNIO-1 task-2] MYDj6WKVQ4Khrhq6UWS5WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.779 [XNIO-1 task-2] MYDj6WKVQ4Khrhq6UWS5WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.780 [XNIO-1 task-2] MYDj6WKVQ4Khrhq6UWS5WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4de552fb-a4a5-45ad-9c11-fc421f288a97, base path is set to: null +18:00:44.780 [XNIO-1 task-2] MYDj6WKVQ4Khrhq6UWS5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", clientId) +18:00:44.784 [XNIO-1 task-2] y8jhPUdaQrOTd1dh_Q8lgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.784 [XNIO-1 task-2] y8jhPUdaQrOTd1dh_Q8lgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.784 [XNIO-1 task-2] y8jhPUdaQrOTd1dh_Q8lgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.785 [XNIO-1 task-2] y8jhPUdaQrOTd1dh_Q8lgQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.801 [XNIO-1 task-2] MvN-mcWRTRuBe-TZDC2Byg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.802 [XNIO-1 task-2] MvN-mcWRTRuBe-TZDC2Byg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.802 [XNIO-1 task-2] MvN-mcWRTRuBe-TZDC2Byg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.802 [XNIO-1 task-2] MvN-mcWRTRuBe-TZDC2Byg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.819 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.820 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.820 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "4508d6b7-3f93-4c94-ad89-b78188bdea7a", {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "6cee6551-31a1-4dbf-ad0e-367b7fc9", {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6cee6551-31a1-4dbf-ad0e-367b7fc9","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.821 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.822 [XNIO-1 task-2] EljCbo5VSMyAZx4Swucqzw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.828 [XNIO-1 task-2] ngSM5LKASkevmsJ7Ck_0zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/82f115dc-8276-4831-acc8-1dcb4e819925, base path is set to: null +18:00:44.828 [XNIO-1 task-2] ngSM5LKASkevmsJ7Ck_0zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.828 [XNIO-1 task-2] ngSM5LKASkevmsJ7Ck_0zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.828 [XNIO-1 task-2] ngSM5LKASkevmsJ7Ck_0zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/82f115dc-8276-4831-acc8-1dcb4e819925, base path is set to: null +18:00:44.828 [XNIO-1 task-2] ngSM5LKASkevmsJ7Ck_0zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82f115dc-8276-4831-acc8-1dcb4e819925", "82f115dc-8276-4831-acc8-1dcb4e819925", clientId) +18:00:44.845 [XNIO-1 task-2] n9yxRXG9Sg-dIUUxmzNftw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.845 [XNIO-1 task-2] n9yxRXG9Sg-dIUUxmzNftw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.846 [XNIO-1 task-2] n9yxRXG9Sg-dIUUxmzNftw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.855 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6fd56d98-f348-4838-8c35-49aff5af338e +18:00:44.863 [XNIO-1 task-2] ruc0LDfZRgO-Qg0msP4WvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.863 [XNIO-1 task-2] ruc0LDfZRgO-Qg0msP4WvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.863 [XNIO-1 task-2] ruc0LDfZRgO-Qg0msP4WvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.872 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3230337b-374a-41a7-8f71-00df7a6bbbd7 +18:00:44.876 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a9a13500 +18:00:44.883 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a9a13500 +18:00:44.884 [XNIO-1 task-2] 7Eyo4CqHS8uGAaNvy-M31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5cc9ac71-24de-492a-8df9-cd610c425ab3 +18:00:44.884 [XNIO-1 task-2] 7Eyo4CqHS8uGAaNvy-M31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.885 [XNIO-1 task-2] 7Eyo4CqHS8uGAaNvy-M31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.885 [XNIO-1 task-2] 7Eyo4CqHS8uGAaNvy-M31g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5cc9ac71-24de-492a-8df9-cd610c425ab3 +18:00:44.892 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.892 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.892 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.893 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"47085a99-90e9-4835-826e-9c75a227","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.895 [XNIO-1 task-2] tiK8qgsQQ560ViKLD6JKow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.900 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a9a13500 +18:00:44.900 [XNIO-1 task-2] ZRuJMIzWQeCJPPMmvNz9RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:44.900 [XNIO-1 task-2] ZRuJMIzWQeCJPPMmvNz9RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:44.900 [XNIO-1 task-2] ZRuJMIzWQeCJPPMmvNz9RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c14ad954-c1cf-41e8-8152-026449406592, base path is set to: null +18:00:44.901 [XNIO-1 task-2] ZRuJMIzWQeCJPPMmvNz9RA DEBUG com.networknt.schema.TypeValidator debug - validate( "c14ad954-c1cf-41e8-8152-026449406592", "c14ad954-c1cf-41e8-8152-026449406592", clientId) +18:00:44.918 [XNIO-1 task-2] G_oC86YNQpi14lAI2_Bh4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.918 [XNIO-1 task-2] G_oC86YNQpi14lAI2_Bh4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.919 [XNIO-1 task-2] G_oC86YNQpi14lAI2_Bh4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.920 [XNIO-1 task-2] G_oC86YNQpi14lAI2_Bh4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.939 [XNIO-1 task-2] KDqSFqJzTxa12CYw7FlfRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.939 [XNIO-1 task-2] KDqSFqJzTxa12CYw7FlfRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.939 [XNIO-1 task-2] KDqSFqJzTxa12CYw7FlfRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.940 [XNIO-1 task-2] KDqSFqJzTxa12CYw7FlfRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.959 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.959 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.960 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.960 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.960 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:44.960 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.962 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.962 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:44.962 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:44.962 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.962 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"063f3638-9240-4313-b51a-d17baaf7","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.962 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cfcae745-9fe6-47de-97c4-efe3fc7c833b +18:00:44.962 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cfcae745-9fe6-47de-97c4-efe3fc7c833b +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) +Jun 28, 2024 6:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:44.962 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.963 [XNIO-1 task-2] Leup1vpaSGSH-MicPagUJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:44.966 [XNIO-1 task-2] ZcqCUZcPQA2DH5gX04FzOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.966 [XNIO-1 task-2] ZcqCUZcPQA2DH5gX04FzOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.968 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fd4bfb06 +18:00:44.969 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:44.970 [XNIO-1 task-2] ZcqCUZcPQA2DH5gX04FzOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.989 [XNIO-1 task-2] 3NV-jti6Q4ms2goEZpDTBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:44.989 [XNIO-1 task-2] 3NV-jti6Q4ms2goEZpDTBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:44.989 [XNIO-1 task-2] 3NV-jti6Q4ms2goEZpDTBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:44.990 [XNIO-1 task-2] 3NV-jti6Q4ms2goEZpDTBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:45.002 [XNIO-1 task-2] Sw2V30VJR4CdLeIrYqo5EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e, base path is set to: null +18:00:45.002 [XNIO-1 task-2] Sw2V30VJR4CdLeIrYqo5EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.002 [XNIO-1 task-2] Sw2V30VJR4CdLeIrYqo5EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.002 [XNIO-1 task-2] Sw2V30VJR4CdLeIrYqo5EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e, base path is set to: null +18:00:45.002 [XNIO-1 task-2] Sw2V30VJR4CdLeIrYqo5EA DEBUG com.networknt.schema.TypeValidator debug - validate( "7075e8d2-ef43-4472-9937-370a0e18191e", "7075e8d2-ef43-4472-9937-370a0e18191e", clientId) +18:00:45.006 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:45.010 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.010 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.010 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.012 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.012 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.012 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG com.networknt.schema.TypeValidator debug - validate( "bd42f865-9dc3-4c85-9b89-a4c61482ed4b", {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.013 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.013 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.013 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG com.networknt.schema.TypeValidator debug - validate( "a7c45988-a87d-4c10-9a3b-4a324fbf", {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.013 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.013 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a7c45988-a87d-4c10-9a3b-4a324fbf","clientDesc":"bd42f865-9dc3-4c85-9b89-a4c61482ed4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.013 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.013 [XNIO-1 task-2] 8-taBMyMTECCQtqC9FMr2g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.041 [XNIO-1 task-2] 1Ag5jlRORf2f-xpK8DW0cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e, base path is set to: null +18:00:45.041 [XNIO-1 task-2] 1Ag5jlRORf2f-xpK8DW0cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.041 [XNIO-1 task-2] 1Ag5jlRORf2f-xpK8DW0cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.041 [XNIO-1 task-2] 1Ag5jlRORf2f-xpK8DW0cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e, base path is set to: null +18:00:45.041 [XNIO-1 task-2] 1Ag5jlRORf2f-xpK8DW0cA DEBUG com.networknt.schema.TypeValidator debug - validate( "7075e8d2-ef43-4472-9937-370a0e18191e", "7075e8d2-ef43-4472-9937-370a0e18191e", clientId) +18:00:45.049 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.049 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.050 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.050 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.050 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.051 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6f97d3a-705e-415b-a92b-cd0108622b4a", {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.051 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.051 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.051 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b399975-a1c5-4084-bb59-9e8c6681", {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.051 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.051 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6b399975-a1c5-4084-bb59-9e8c6681","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.051 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.076 [XNIO-1 task-2] VvYUj2gGQRuVEGVVssktSA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.080 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.080 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.080 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.081 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.081 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.082 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.082 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.082 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.083 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.083 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.083 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.083 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f4605e57-4631-4807-a0fa-7c516c01","clientDesc":"36ba1ec2-2e61-4d5b-8b8d-36aaf2a10f7c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.084 [XNIO-1 task-2] l99QLUHoQ0amkMUirUoOsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.086 [XNIO-1 task-2] KI3AEaIvTVWiMXPQoNvVTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.087 [XNIO-1 task-2] KI3AEaIvTVWiMXPQoNvVTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.087 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fd4bfb06 +18:00:45.088 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:45.088 [XNIO-1 task-2] KI3AEaIvTVWiMXPQoNvVTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.101 [XNIO-1 task-2] CuUbx0FeT1-9YLr51t_N9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:45.102 [XNIO-1 task-2] CuUbx0FeT1-9YLr51t_N9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.102 [XNIO-1 task-2] CuUbx0FeT1-9YLr51t_N9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.102 [XNIO-1 task-2] CuUbx0FeT1-9YLr51t_N9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218 +18:00:45.106 [XNIO-1 task-2] k-OAXuSBQimZWPpikvV9ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:45.106 [XNIO-1 task-2] k-OAXuSBQimZWPpikvV9ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.106 [XNIO-1 task-2] k-OAXuSBQimZWPpikvV9ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.106 [XNIO-1 task-2] k-OAXuSBQimZWPpikvV9ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93918b0a-406f-4732-9071-3123fc8c8218, base path is set to: null +18:00:45.107 [XNIO-1 task-2] k-OAXuSBQimZWPpikvV9ow DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", clientId) +18:00:45.111 [XNIO-1 task-2] 3p3Zk9uPTzSviHyVlW0DlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.111 [XNIO-1 task-2] 3p3Zk9uPTzSviHyVlW0DlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.111 [XNIO-1 task-2] 3p3Zk9uPTzSviHyVlW0DlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.112 [XNIO-1 task-2] 3p3Zk9uPTzSviHyVlW0DlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.141 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.141 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.142 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.143 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.143 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.143 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a2b9f37-8eaf-446b-9507-9fbb4a6e4182", {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.143 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.144 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.144 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4d21080-de47-430b-8d61-07fff6e2", {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.144 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.144 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b4d21080-de47-430b-8d61-07fff6e2","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.144 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.144 [XNIO-1 task-2] pFhzeQFqSTeDo6t1tic7AQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.149 [XNIO-1 task-2] z-gI_s3sQBKUe7iJ2bAnzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.149 [XNIO-1 task-2] z-gI_s3sQBKUe7iJ2bAnzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.149 [XNIO-1 task-2] z-gI_s3sQBKUe7iJ2bAnzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.201 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.202 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.202 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.203 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6d53e6f-be00-4cef-9f8d-65154ce9","clientDesc":"05861bf8-32fe-4829-ba03-96d87b73c0a5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.204 [XNIO-1 task-2] KtVCe6JXR2m-CEcNlItK0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.209 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3931a09b +18:00:45.209 [XNIO-1 task-2] OcTTyqr1TrqDn7bJ-u-yYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.209 [XNIO-1 task-2] OcTTyqr1TrqDn7bJ-u-yYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.209 [XNIO-1 task-2] OcTTyqr1TrqDn7bJ-u-yYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.231 [XNIO-1 task-2] mNRMUamnTA-N-2M0fZRGUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +18:00:45.231 [XNIO-1 task-2] mNRMUamnTA-N-2M0fZRGUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.231 [XNIO-1 task-2] mNRMUamnTA-N-2M0fZRGUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.231 [XNIO-1 task-2] mNRMUamnTA-N-2M0fZRGUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d, base path is set to: null +Jun 28, 2024 6:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at ------ submitted from ------.(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:212) + + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:45.238 [XNIO-1 task-2] mNRMUamnTA-N-2M0fZRGUQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.242 [XNIO-1 task-2] 6oeQ5F5lTkS2WCUeZexG5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.242 [XNIO-1 task-2] 6oeQ5F5lTkS2WCUeZexG5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.242 [XNIO-1 task-2] 6oeQ5F5lTkS2WCUeZexG5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.242 [XNIO-1 task-2] 6oeQ5F5lTkS2WCUeZexG5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.267 [XNIO-1 task-2] G5_iaLCQSbm2wYCPGJtXmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.267 [XNIO-1 task-2] G5_iaLCQSbm2wYCPGJtXmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.268 [XNIO-1 task-2] G5_iaLCQSbm2wYCPGJtXmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.307 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.307 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.307 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.308 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.308 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.308 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.308 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.309 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.309 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.309 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.309 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.309 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"23ddb265-d4de-460d-b2fe-2b3be991","clientDesc":"ab0812af-c40c-4d6d-b047-f5985fd0bdc2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.310 [XNIO-1 task-2] vtPyDdmvQOu-6ZWNe4Cb4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.315 [XNIO-1 task-2] qK3t7pZBTWqPAy0XobOs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e +18:00:45.315 [XNIO-1 task-2] qK3t7pZBTWqPAy0XobOs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.315 [XNIO-1 task-2] qK3t7pZBTWqPAy0XobOs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.315 [XNIO-1 task-2] qK3t7pZBTWqPAy0XobOs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e +18:00:45.321 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.322 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.322 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.323 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.324 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"023ccc8e-4d4c-4f51-a892-6cbca867","clientDesc":"f6f97d3a-705e-415b-a92b-cd0108622b4a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.324 [XNIO-1 task-2] D2lmz1W1TAGy6FFizLcoIg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.327 [XNIO-1 task-2] keLyUvx8Sumlx9mfjOindg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e +18:00:45.327 [XNIO-1 task-2] keLyUvx8Sumlx9mfjOindg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.327 [XNIO-1 task-2] keLyUvx8Sumlx9mfjOindg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.327 [XNIO-1 task-2] keLyUvx8Sumlx9mfjOindg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7075e8d2-ef43-4472-9937-370a0e18191e +18:00:45.330 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7075e8d2-ef43-4472-9937-370a0e18191e +18:00:45.339 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9f413872-c82c-4b29-911b-021783d009bc +18:00:45.340 [XNIO-1 task-2] OtfBN6peQ9606KUx7U--wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.341 [XNIO-1 task-2] OtfBN6peQ9606KUx7U--wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.341 [XNIO-1 task-2] OtfBN6peQ9606KUx7U--wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.341 [XNIO-1 task-2] OtfBN6peQ9606KUx7U--wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.361 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9f413872-c82c-4b29-911b-021783d009bc +18:00:45.368 [XNIO-1 task-2] fgKCBP2gSgG0e08dikWhEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.368 [XNIO-1 task-2] fgKCBP2gSgG0e08dikWhEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.368 [XNIO-1 task-2] fgKCBP2gSgG0e08dikWhEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.369 [XNIO-1 task-2] fgKCBP2gSgG0e08dikWhEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.382 [XNIO-1 task-2] Pa8KaJXvSDmiAefaXVxOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:45.382 [XNIO-1 task-2] Pa8KaJXvSDmiAefaXVxOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.383 [XNIO-1 task-2] Pa8KaJXvSDmiAefaXVxOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.383 [XNIO-1 task-2] Pa8KaJXvSDmiAefaXVxOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/93f377f9-b91d-4100-86f5-cb1d04acc93d +18:00:45.390 [XNIO-1 task-2] BoG3xCOrRgiMDy5HxqGW4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.390 [XNIO-1 task-2] BoG3xCOrRgiMDy5HxqGW4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.390 [XNIO-1 task-2] BoG3xCOrRgiMDy5HxqGW4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.414 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.414 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.414 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.415 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.415 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.415 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.415 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.415 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.415 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.415 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.416 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.416 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bc3139a-a2be-4cbe-88f1-785b0aa5","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.416 [XNIO-1 task-2] YyUJ5PoYR-O-2jNA7FEC1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.423 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.423 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.424 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe3a5aa7-5e70-4d02-b158-4a637078de3f", {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG com.networknt.schema.TypeValidator debug - validate( "56287d2c-5360-423b-b9b8-611e9017", {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"56287d2c-5360-423b-b9b8-611e9017","clientDesc":"fe3a5aa7-5e70-4d02-b158-4a637078de3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.425 [XNIO-1 task-2] ZSVegIR5Tw6eBwz4rO4uXA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.428 [XNIO-1 task-2] 4rG0_wvlS8aEdA8wiQICqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a9fadb5-142d-43fa-90e5-e7eb306f1c57, base path is set to: null +18:00:45.428 [XNIO-1 task-2] 4rG0_wvlS8aEdA8wiQICqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.429 [XNIO-1 task-2] 4rG0_wvlS8aEdA8wiQICqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.429 [XNIO-1 task-2] 4rG0_wvlS8aEdA8wiQICqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a9fadb5-142d-43fa-90e5-e7eb306f1c57, base path is set to: null +18:00:45.429 [XNIO-1 task-2] 4rG0_wvlS8aEdA8wiQICqA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9fadb5-142d-43fa-90e5-e7eb306f1c57", "7a9fadb5-142d-43fa-90e5-e7eb306f1c57", clientId) +18:00:45.434 [XNIO-1 task-2] ccx4AwCpSECj4GwT0lhKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.434 [XNIO-1 task-2] ccx4AwCpSECj4GwT0lhKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.435 [XNIO-1 task-2] ccx4AwCpSECj4GwT0lhKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.435 [XNIO-1 task-2] ccx4AwCpSECj4GwT0lhKlQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.485 [XNIO-1 task-2] AyE6LuLfTZ6dMKf8yWCitw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.486 [XNIO-1 task-2] AyE6LuLfTZ6dMKf8yWCitw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.486 [XNIO-1 task-2] AyE6LuLfTZ6dMKf8yWCitw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.486 [XNIO-1 task-2] AyE6LuLfTZ6dMKf8yWCitw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.491 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +Jun 28, 2024 6:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:00:45.504 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +18:00:45.504 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + +18:00:45.506 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.506 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.506 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.506 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG com.networknt.schema.TypeValidator debug - validate( "4508d6b7-3f93-4c94-ad89-b78188bdea7a", {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.506 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.506 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.507 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG com.networknt.schema.TypeValidator debug - validate( "617169fc-f6b1-4ab7-894a-1c079ec1", {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.507 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.507 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"617169fc-f6b1-4ab7-894a-1c079ec1","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.507 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.507 [XNIO-1 task-2] V4_tTyJVRpufLYGOf-AWww DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.513 [XNIO-1 task-2] fEXjPVR7Q5mZgEN33ZLCBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5cc9ac71-24de-492a-8df9-cd610c425ab3, base path is set to: null +18:00:45.513 [XNIO-1 task-2] fEXjPVR7Q5mZgEN33ZLCBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.513 [XNIO-1 task-2] fEXjPVR7Q5mZgEN33ZLCBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.513 [XNIO-1 task-2] fEXjPVR7Q5mZgEN33ZLCBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5cc9ac71-24de-492a-8df9-cd610c425ab3, base path is set to: null +18:00:45.514 [XNIO-1 task-2] fEXjPVR7Q5mZgEN33ZLCBg DEBUG com.networknt.schema.TypeValidator debug - validate( "5cc9ac71-24de-492a-8df9-cd610c425ab3", "5cc9ac71-24de-492a-8df9-cd610c425ab3", clientId) +18:00:45.548 [XNIO-1 task-2] fEXjPVR7Q5mZgEN33ZLCBg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:45.551 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3181b666-eb2c-48f5-9a96-4f5a6b9c7001 +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.552 [XNIO-1 task-2] fEXjPVR7Q5mZgEN33ZLCBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.562 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.563 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.563 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4508d6b7-3f93-4c94-ad89-b78188bdea7a", {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0cdda9ad-be48-4a77-8724-825f5332", {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.564 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0cdda9ad-be48-4a77-8724-825f5332","clientDesc":"4508d6b7-3f93-4c94-ad89-b78188bdea7a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.565 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.565 [XNIO-1 task-2] SbsZRovBQMWT1TdILqS5nQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.569 [XNIO-1 task-2] GKvblaUHQPeBgqoKq1PvMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.570 [XNIO-1 task-2] GKvblaUHQPeBgqoKq1PvMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.570 [XNIO-1 task-2] GKvblaUHQPeBgqoKq1PvMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.575 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3181b666-eb2c-48f5-9a96-4f5a6b9c7001 +18:00:45.587 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3931a09b +18:00:45.593 [XNIO-1 task-2] 4hzxFlkITViB6pHsEFx8PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.593 [XNIO-1 task-2] 4hzxFlkITViB6pHsEFx8PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.594 [XNIO-1 task-2] 4hzxFlkITViB6pHsEFx8PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.594 [XNIO-1 task-2] 4hzxFlkITViB6pHsEFx8PQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.614 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:45.622 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.622 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.623 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.623 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.623 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.624 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a2b9f37-8eaf-446b-9507-9fbb4a6e4182", {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.624 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.624 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.624 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d40d7a9-6c07-4034-b7f5-ff43b099", {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.624 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.624 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8d40d7a9-6c07-4034-b7f5-ff43b099","clientDesc":"7a2b9f37-8eaf-446b-9507-9fbb4a6e4182","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.625 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.625 [XNIO-1 task-2] N2NE90pGQvin2pUlgLUGNA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.631 [XNIO-1 task-2] QedJjPB2TRehlu8K72_dOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.631 [XNIO-1 task-2] QedJjPB2TRehlu8K72_dOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.632 [XNIO-1 task-2] QedJjPB2TRehlu8K72_dOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.655 [XNIO-1 task-2] Luz2qkIuTLyQVyj1JF0Big DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7dba570c-8bfc-420a-8bcf-5f00a3923eb6, base path is set to: null +18:00:45.655 [XNIO-1 task-2] Luz2qkIuTLyQVyj1JF0Big DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.655 [XNIO-1 task-2] Luz2qkIuTLyQVyj1JF0Big DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.655 [XNIO-1 task-2] Luz2qkIuTLyQVyj1JF0Big DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7dba570c-8bfc-420a-8bcf-5f00a3923eb6, base path is set to: null +18:00:45.656 [XNIO-1 task-2] Luz2qkIuTLyQVyj1JF0Big DEBUG com.networknt.schema.TypeValidator debug - validate( "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:45.664 [XNIO-1 task-2] Luz2qkIuTLyQVyj1JF0Big DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/7dba570c-8bfc-420a-8bcf-5f00a3923eb6} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.670 [XNIO-1 task-2] cJbjm0wFTBq1Dvt6KMT4Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.671 [XNIO-1 task-2] cJbjm0wFTBq1Dvt6KMT4Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.671 [XNIO-1 task-2] cJbjm0wFTBq1Dvt6KMT4Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.692 [XNIO-1 task-2] vXSg25wqTKqKMf_NNukOlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:45.692 [XNIO-1 task-2] vXSg25wqTKqKMf_NNukOlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.692 [XNIO-1 task-2] vXSg25wqTKqKMf_NNukOlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.692 [XNIO-1 task-2] vXSg25wqTKqKMf_NNukOlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:45.693 [XNIO-1 task-2] vXSg25wqTKqKMf_NNukOlg DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", clientId) +18:00:45.697 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +18:00:45.698 [XNIO-1 task-2] vXSg25wqTKqKMf_NNukOlg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.698 [XNIO-1 task-2] vXSg25wqTKqKMf_NNukOlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:45.704 [XNIO-1 task-2] Mpqvusu8R_a8VlqWlwvqEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +18:00:45.712 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6cf4c23a-7b2f-4c7e-94de-2eba25f7e801 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +18:00:45.722 [XNIO-1 task-2] giEUygDORZKLs8x5Z0ZLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.723 [XNIO-1 task-2] giEUygDORZKLs8x5Z0ZLgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.723 [XNIO-1 task-2] giEUygDORZKLs8x5Z0ZLgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +18:00:45.723 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3931a09b +18:00:45.729 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 13 more + +18:00:45.730 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.730 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.730 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.730 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "91414d29-c711-4925-b432-33cfc8d28a0d", {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.731 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.731 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.731 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed97933c-452e-466f-becd-4a5b0e53", {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.731 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.731 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ed97933c-452e-466f-becd-4a5b0e53","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.731 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.731 [XNIO-1 task-2] 1PhmJCXVQVm2bDBiED7JQQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.737 [XNIO-1 task-2] WFOVpB9uSIKsj-44xhpPCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:45.737 [XNIO-1 task-2] WFOVpB9uSIKsj-44xhpPCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.737 [XNIO-1 task-2] WFOVpB9uSIKsj-44xhpPCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.738 [XNIO-1 task-2] WFOVpB9uSIKsj-44xhpPCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/651b3be2-94ad-43d8-9e9e-3a8b81826b1a, base path is set to: null +18:00:45.738 [XNIO-1 task-2] WFOVpB9uSIKsj-44xhpPCw DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", clientId) +18:00:45.747 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.747 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.747 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "91414d29-c711-4925-b432-33cfc8d28a0d", {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "bbb3aa7c-b6d4-4052-be4f-9d273a4d", {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bbb3aa7c-b6d4-4052-be4f-9d273a4d","clientDesc":"91414d29-c711-4925-b432-33cfc8d28a0d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.748 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.749 [XNIO-1 task-2] AcYZ_k7CRYm_jBTstGG9yA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:45.754 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fd4bfb06 +18:00:45.754 [XNIO-1 task-2] 1NVqSG6jStuJA1zip1Wx5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.755 [XNIO-1 task-2] 1NVqSG6jStuJA1zip1Wx5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.755 [XNIO-1 task-2] 1NVqSG6jStuJA1zip1Wx5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.755 [XNIO-1 task-2] 1NVqSG6jStuJA1zip1Wx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.770 [XNIO-1 task-2] bl0Iot0kSli8E1mRXPuXcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.770 [XNIO-1 task-2] bl0Iot0kSli8E1mRXPuXcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.770 [XNIO-1 task-2] bl0Iot0kSli8E1mRXPuXcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.792 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.792 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.792 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fd4bfb06 +18:00:45.793 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.794 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.794 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.794 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.795 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.795 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.795 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.795 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.795 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.795 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ceabced5-cbb0-468e-9f23-6d433ddf","clientDesc":"4f25c6ec-b083-4e94-9b23-f6a6662e0b6c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.796 [XNIO-1 task-2] HcbNoHNERkSmcGrin6Hh5g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.799 [XNIO-1 task-2] 8De9Qm4ySESiwJYcnFLoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a4ccd9f6-1fba-4305-9f3b-9e4b633331d2 +18:00:45.799 [XNIO-1 task-2] 8De9Qm4ySESiwJYcnFLoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.799 [XNIO-1 task-2] 8De9Qm4ySESiwJYcnFLoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.799 [XNIO-1 task-2] 8De9Qm4ySESiwJYcnFLoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a4ccd9f6-1fba-4305-9f3b-9e4b633331d2 +18:00:45.808 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:285c6a47-bc3f-44f4-adde-657fe194051e +18:00:45.809 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:285c6a47-bc3f-44f4-adde-657fe194051e +18:00:45.814 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:45.818 [XNIO-1 task-2] ICiapabTQ8SvGJkjzNTomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2b742a98-9d31-4546-88e2-dfbae0af1e1f +18:00:45.818 [XNIO-1 task-2] ICiapabTQ8SvGJkjzNTomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.818 [XNIO-1 task-2] ICiapabTQ8SvGJkjzNTomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.818 [XNIO-1 task-2] ICiapabTQ8SvGJkjzNTomw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2b742a98-9d31-4546-88e2-dfbae0af1e1f +18:00:45.826 [XNIO-1 task-2] tqOP1UqLSxyez26cwmisAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.826 [XNIO-1 task-2] tqOP1UqLSxyez26cwmisAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.827 [XNIO-1 task-2] tqOP1UqLSxyez26cwmisAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.827 [XNIO-1 task-2] tqOP1UqLSxyez26cwmisAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.852 [XNIO-1 task-2] E96TKwa4QkOHsgH9Vped-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.853 [XNIO-1 task-2] E96TKwa4QkOHsgH9Vped-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.854 [XNIO-1 task-2] E96TKwa4QkOHsgH9Vped-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.859 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:819b8d90-eab8-47ae-8d98-cd5a06b24625 +18:00:45.861 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:819b8d90-eab8-47ae-8d98-cd5a06b24625 +18:00:45.868 [XNIO-1 task-2] 6xrhvrcLRT-agqsVufs_DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:45.868 [XNIO-1 task-2] 6xrhvrcLRT-agqsVufs_DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.868 [XNIO-1 task-2] 6xrhvrcLRT-agqsVufs_DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.868 [XNIO-1 task-2] 6xrhvrcLRT-agqsVufs_DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:45.869 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3931a09b +18:00:45.878 [XNIO-1 task-2] 6xrhvrcLRT-agqsVufs_DQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.878 [XNIO-1 task-2] 6xrhvrcLRT-agqsVufs_DQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.884 [XNIO-1 task-2] nAeYi-vHS9GI6Iki2uIF0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.884 [XNIO-1 task-2] nAeYi-vHS9GI6Iki2uIF0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.884 [XNIO-1 task-2] nAeYi-vHS9GI6Iki2uIF0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.884 [XNIO-1 task-2] nAeYi-vHS9GI6Iki2uIF0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.919 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.919 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.919 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.920 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.921 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"874d8b63-7dee-4fe2-969d-cd429d52","clientDesc":"1186bea1-36b8-4ac3-a570-ee9c52de8d84","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.922 [XNIO-1 task-2] zlSDohLkQcW_Zepuy11P2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.925 [XNIO-1 task-2] NFY8fHZTTgS5O1yDlJJlSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fd2919cf-0020-4a98-8a13-cab758404e48 +18:00:45.925 [XNIO-1 task-2] NFY8fHZTTgS5O1yDlJJlSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.925 [XNIO-1 task-2] NFY8fHZTTgS5O1yDlJJlSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.925 [XNIO-1 task-2] NFY8fHZTTgS5O1yDlJJlSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fd2919cf-0020-4a98-8a13-cab758404e48 +18:00:45.937 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.938 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.938 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.938 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.938 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"82dd256e-b2b6-4722-80a4-6066d0cf","clientDesc":"e9f32ad9-21ae-4cb7-a4b5-ea114ce088ce","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:45.939 [XNIO-1 task-2] 8aTj1kv7RSSdBw0TlZi-pw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:45.944 [XNIO-1 task-2] f6RroYDSRIOznrKtMK3W0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56c4b3dc-6975-4b35-a8cd-7ba4c1248baa +18:00:45.944 [XNIO-1 task-2] f6RroYDSRIOznrKtMK3W0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:45.944 [XNIO-1 task-2] f6RroYDSRIOznrKtMK3W0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:45.944 [XNIO-1 task-2] f6RroYDSRIOznrKtMK3W0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/56c4b3dc-6975-4b35-a8cd-7ba4c1248baa, base path is set to: null +18:00:45.944 [XNIO-1 task-2] f6RroYDSRIOznrKtMK3W0w DEBUG com.networknt.schema.TypeValidator debug - validate( "56c4b3dc-6975-4b35-a8cd-7ba4c1248baa", "56c4b3dc-6975-4b35-a8cd-7ba4c1248baa", clientId) +18:00:45.950 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:77cb209e +18:00:45.962 [XNIO-1 task-2] DNRn3hYWQJCWiowxbNC0Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.962 [XNIO-1 task-2] DNRn3hYWQJCWiowxbNC0Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.963 [XNIO-1 task-2] DNRn3hYWQJCWiowxbNC0Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.972 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fd4bfb06 +18:00:45.986 [XNIO-1 task-2] GPqNMegbTqCh8RhRJB1vhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:45.986 [XNIO-1 task-2] GPqNMegbTqCh8RhRJB1vhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.986 [XNIO-1 task-2] GPqNMegbTqCh8RhRJB1vhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.986 [XNIO-1 task-2] GPqNMegbTqCh8RhRJB1vhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.987 [XNIO-1 task-2] GPqNMegbTqCh8RhRJB1vhA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.999 [XNIO-1 task-2] VnDjMzjlQ7mDvdUBHH-YLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:45.999 [XNIO-1 task-2] VnDjMzjlQ7mDvdUBHH-YLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:45.999 [XNIO-1 task-2] VnDjMzjlQ7mDvdUBHH-YLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:45.999 [XNIO-1 task-2] VnDjMzjlQ7mDvdUBHH-YLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:46.005 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:01b84788 +18:00:46.006 [XNIO-1 task-2] veGXhZ2iRcOD7SVGf5pGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2b13b74f-123f-4595-905f-5b920b2c31ed, base path is set to: null +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:46.006 [XNIO-1 task-2] veGXhZ2iRcOD7SVGf5pGlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:00:46.006 [XNIO-1 task-2] veGXhZ2iRcOD7SVGf5pGlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:46.006 [XNIO-1 task-2] veGXhZ2iRcOD7SVGf5pGlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:46.006 [XNIO-1 task-2] veGXhZ2iRcOD7SVGf5pGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2b13b74f-123f-4595-905f-5b920b2c31ed, base path is set to: null +18:00:46.006 [XNIO-1 task-2] veGXhZ2iRcOD7SVGf5pGlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2b13b74f-123f-4595-905f-5b920b2c31ed +18:00:46.007 [XNIO-1 task-2] veGXhZ2iRcOD7SVGf5pGlg DEBUG com.networknt.schema.TypeValidator debug - validate( "2b13b74f-123f-4595-905f-5b920b2c31ed", "2b13b74f-123f-4595-905f-5b920b2c31ed", clientId) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:46.009 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:01b84788 +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:46.023 [XNIO-1 task-2] fz8PZxVyRuau9O-kcKjDYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:46.024 [XNIO-1 task-2] fz8PZxVyRuau9O-kcKjDYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:46.046 [XNIO-1 task-2] 64DRNhEdRKe_JWkeJ-dQ8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a9fadb5-142d-43fa-90e5-e7eb306f1c57, base path is set to: null +18:00:46.046 [XNIO-1 task-2] 64DRNhEdRKe_JWkeJ-dQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7a9fadb5-142d-43fa-90e5-e7eb306f1c57 + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +18:00:46.046 [XNIO-1 task-2] 64DRNhEdRKe_JWkeJ-dQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7a9fadb5-142d-43fa-90e5-e7eb306f1c57 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +18:00:46.046 [XNIO-1 task-2] 64DRNhEdRKe_JWkeJ-dQ8w DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9fadb5-142d-43fa-90e5-e7eb306f1c57", "7a9fadb5-142d-43fa-90e5-e7eb306f1c57", clientId) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +18:00:46.051 [XNIO-1 task-2] _kqmqIZ0RE6ngVbinWmBzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:46.051 [XNIO-1 task-2] _kqmqIZ0RE6ngVbinWmBzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:46.052 [XNIO-1 task-2] _kqmqIZ0RE6ngVbinWmBzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:46.052 [XNIO-1 task-2] _kqmqIZ0RE6ngVbinWmBzw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + +18:00:46.052 [XNIO-1 task-2] _kqmqIZ0RE6ngVbinWmBzw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.072 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fd4bfb06 +18:00:46.073 [XNIO-1 task-2] qylke7hIT8G2Ur6Z2TUGkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:46.073 [XNIO-1 task-2] qylke7hIT8G2Ur6Z2TUGkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:46.073 [XNIO-1 task-2] qylke7hIT8G2Ur6Z2TUGkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +18:00:46.074 [XNIO-1 task-2] qylke7hIT8G2Ur6Z2TUGkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.094 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:77cb209e +18:00:46.095 [XNIO-1 task-2] Y-NOKZt6S4qDKAM-PTXEfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fd56d98-f348-4838-8c35-49aff5af338e +18:00:46.095 [XNIO-1 task-2] Y-NOKZt6S4qDKAM-PTXEfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:46.095 [XNIO-1 task-2] Y-NOKZt6S4qDKAM-PTXEfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:46.095 [XNIO-1 task-2] Y-NOKZt6S4qDKAM-PTXEfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6fd56d98-f348-4838-8c35-49aff5af338e +18:00:46.096 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:77cb209e +18:00:46.107 [hz._hzInstance_1_dev.partition-operation.thread-13] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +18:00:46.107 [XNIO-1 task-2] Y-NOKZt6S4qDKAM-PTXEfg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:46.108 [XNIO-1 task-2] Y-NOKZt6S4qDKAM-PTXEfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +18:00:46.120 [XNIO-1 task-2] b_pDUlMpRHWklPQdqzqVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a54115e8-4f99-42ca-9a34-bd1a941e7c8c +18:00:46.120 [XNIO-1 task-2] b_pDUlMpRHWklPQdqzqVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +18:00:46.120 [XNIO-1 task-2] b_pDUlMpRHWklPQdqzqVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +18:00:46.120 [XNIO-1 task-2] b_pDUlMpRHWklPQdqzqVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a54115e8-4f99-42ca-9a34-bd1a941e7c8c +18:00:46.124 [XNIO-1 task-2] lRgW19IFQBOnW9jYVUsncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:46.125 [XNIO-1 task-2] lRgW19IFQBOnW9jYVUsncA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +18:00:46.125 [XNIO-1 task-2] lRgW19IFQBOnW9jYVUsncA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +18:00:46.126 [XNIO-1 task-2] lRgW19IFQBOnW9jYVUsncA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/06ce6bc9-9d53-486a-a50e-960a4d168f0d, base path is set to: null +18:00:46.126 [XNIO-1 task-2] lRgW19IFQBOnW9jYVUsncA DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", clientId) +18:00:46.132 [XNIO-1 task-2] lRgW19IFQBOnW9jYVUsncA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) diff --git a/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-code-1.log b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..272be81 --- /dev/null +++ b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-code-1.log @@ -0,0 +1,3073 @@ +18:00:40.287 [XNIO-1 task-1] FwR53MnwQwqZbvSUx3HKCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:40.288 [XNIO-1 task-2] PBlxMQYiSDOguBGDN_X4zg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:40.293 [XNIO-1 task-2] PBlxMQYiSDOguBGDN_X4zg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rU_PEVuqTsuL6M9pxNVmAg +18:00:40.300 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:40.301 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:40.301 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:40.303 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:40.303 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:40.303 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:40.304 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", client_id) +18:00:40.305 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:40.305 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:40.305 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:40.305 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:40.305 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:40.306 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:40.306 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:40.306 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:40.306 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:40.310 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:40.310 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:40.322 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:40.322 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:40.325 [XNIO-1 task-1] L0dAPf86SRa9kUPctu4K3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KxBJaURWT5utuRVHyV0wHw +18:00:40.329 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:40.329 [XNIO-1 task-2] 6ufHDUGARM-LDgQkKx6uaQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:40.334 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:40.335 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:40.335 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:40.338 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", client_id) +18:00:40.339 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:40.339 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:40.340 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:40.340 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:40.340 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:40.344 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:40.344 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:40.344 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:40.345 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:40.346 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:40.346 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:40.347 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:40.347 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:40.347 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:40.370 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:40.370 [XNIO-1 task-2] gzVszPQdR32i4VkFkvvHwg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:40.371 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:40.371 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:40.376 [XNIO-1 task-1] WQL11wPmSG-EPll1yiL7Bg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OSWJP4bWS-WpdSa_stbC6w +18:00:40.567 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ad37901c +18:00:40.569 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ad37901c +18:00:40.584 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3d0a56ff-a488-4037-8922-0dac76d559f8 +18:00:40.752 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3d0a56ff-a488-4037-8922-0dac76d559f8 +18:00:40.836 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:36e5168a +18:00:40.926 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ad37901c +18:00:40.984 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ad37901c +18:00:41.006 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:36e5168a +18:00:41.008 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ad37901c +18:00:41.245 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ad37901c +18:00:41.607 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ad37901c +18:00:41.772 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:41.772 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:41.772 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:41.772 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:41.772 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:41.773 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:41.773 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "hhD48gomiimrqmCkbOumpgJfAJidXFg-lJhkOzPKF_4", "hhD48gomiimrqmCkbOumpgJfAJidXFg-lJhkOzPKF_4", code_challenge) +18:00:41.775 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:41.775 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:41.776 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:41.776 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:41.776 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:41.777 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:41.777 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:41.777 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:41.777 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:41.777 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:41.777 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:41.830 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:41.831 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:41.836 [XNIO-1 task-1] H4mw1cnPSVCAp_894ufmIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Wu2e-TEVTZCZ5nf1_TCzNA +18:00:41.847 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:41.847 [XNIO-1 task-2] af3KJB7OT6yt-VlunEC3Sw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:41.921 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:41.921 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:41.921 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:41.922 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", client_id) +18:00:41.923 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:41.924 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:41.924 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:41.924 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:41.924 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:41.943 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:41.943 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:41.962 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:41.962 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:41.962 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:41.963 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:41.964 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:41.964 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:41.965 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:41.965 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:41.965 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:41.972 [XNIO-1 task-2] i02rdfCBQlqSu23knVVZBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pwsjPl_PS_O-Bfg37quvpg +18:00:41.978 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:41.978 [XNIO-1 task-1] L7DXKRG8T0O67pSZDak9bQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:41.984 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:41.985 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:41.986 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:41.987 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8bxxjUbeXovuX3QFeodDl4EmUvFZoxSN6LZxB16M3gw", "8bxxjUbeXovuX3QFeodDl4EmUvFZoxSN6LZxB16M3gw", code_challenge) +18:00:41.988 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:41.989 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:41.990 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:41.990 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:41.991 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:41.991 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.001 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.001 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.002 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.002 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.003 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.004 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.004 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.004 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.004 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.005 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.005 [XNIO-1 task-1] eriT3UbtQauSNQr4R4UngQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yy2jXd8KQfaCWgu7FyCiWA +18:00:42.022 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.022 [XNIO-1 task-2] -xrGp5UhSCqGM1BHykhKfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.030 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.030 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.030 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.031 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", client_id) +18:00:42.032 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.032 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.033 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.033 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.033 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ad37901c +18:00:42.041 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.042 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.045 [XNIO-1 task-2] 7jkntSD4QueGtQm_37TxKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AVNK-Zm9RH-cXVgRq-Lxig +18:00:42.049 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.049 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.049 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.050 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.051 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.051 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.051 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.052 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.061 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.061 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.068 [XNIO-1 task-2] Rwi5jnHCQWKVBT4NgaszCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hu_ES_cmQ3GTnuY0IYonPA +18:00:42.072 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.073 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.073 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.074 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.075 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.075 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.075 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.080 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.087 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.087 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.090 [XNIO-1 task-2] D0xLJp_-Tcu9N9jgnIIXaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CG_9ol83QNuit-QJjCLrww +18:00:42.128 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bba29b7c-058d-4376-8e61-2fbe2c8d0df3 +18:00:42.158 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bba29b7c-058d-4376-8e61-2fbe2c8d0df3 +18:00:42.169 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.169 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.169 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.170 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.171 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.171 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.171 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.171 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.180 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.181 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.182 [XNIO-1 task-2] zD9mOjEHS7-8Twi5AVrQOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xO4q_14jTM-Id_5gtFjlrg +18:00:42.195 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.195 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.195 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.196 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:42.196 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.197 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.197 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.199 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.202 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.212 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.212 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.219 [XNIO-1 task-2] cdrAFL2HSdSUY-rW3TCcZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=D4eC67bAS8O0tVgb1pV6PA +18:00:42.228 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.228 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.229 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.229 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.230 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.230 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.230 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.230 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.259 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.260 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.262 [XNIO-1 task-2] KLQ30KMMTj6-JE4lr1aV6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yS6pt1lVQSqG_aO0hOQ7JA +18:00:42.368 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.368 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.368 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.370 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG com.networknt.schema.TypeValidator debug - validate( "344abcb4-9699-4257-8f31-6528e7e3ad59", "344abcb4-9699-4257-8f31-6528e7e3ad59", client_id) +18:00:42.370 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.371 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.371 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.371 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.371 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.384 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.385 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.392 [XNIO-1 task-2] is4C7PxjQValcxiq1QwQcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6MbLO9nQRxe3ijb6sv9_vQ +18:00:42.403 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c6b5a535 +18:00:42.428 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d74bed87-7d14-4700-948f-033ad3f3c087 +18:00:42.444 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.445 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.445 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.445 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG com.networknt.schema.TypeValidator debug - validate( "wWpylsCGi7oBk5elRuug8usfv80DEefA7pfQebgBL00", "wWpylsCGi7oBk5elRuug8usfv80DEefA7pfQebgBL00", code_challenge) +18:00:42.446 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.446 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.447 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.447 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.447 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.447 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.455 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.455 [XNIO-1 task-2] 6-4WM6xjQp2Hw_ImORCDlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.464 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.465 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.465 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.465 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:42.466 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.466 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.467 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.467 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.467 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.469 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.469 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.469 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.470 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c89d8f62-2f08-4431-b4ff-51e0feea9943", "c89d8f62-2f08-4431-b4ff-51e0feea9943", client_id) +18:00:42.470 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.471 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.471 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.471 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.473 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.478 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.478 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.481 [XNIO-1 task-2] iLNRUVfBS_upHQFOaaxc2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_-aiqJQdTMiDa7JVjyTlhw +18:00:42.481 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.481 [XNIO-1 task-1] YafUddO7SOiwy6-Y6g5f2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.487 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.487 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.487 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.488 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG com.networknt.schema.TypeValidator debug - validate( "344abcb4-9699-4257-8f31-6528e7e3ad59", "344abcb4-9699-4257-8f31-6528e7e3ad59", client_id) +18:00:42.488 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.489 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.489 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.489 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.490 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.491 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.491 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.492 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.492 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:42.492 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.493 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.493 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.493 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.493 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.502 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.503 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.505 [XNIO-1 task-1] D3-Xm5WHS3O1xgxjPcDgww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9a9H2aeJQmK1RfzloO_z8w +18:00:42.508 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.509 [XNIO-1 task-2] 7YF_xp71Sxu_uaMCcUk64g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.550 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.550 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.550 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.551 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG com.networknt.schema.TypeValidator debug - validate( "A02NLcxmyMgjO5yNTAorNu-EDZVBvjwQVtnG91W_gbA", "A02NLcxmyMgjO5yNTAorNu-EDZVBvjwQVtnG91W_gbA", code_challenge) +18:00:42.551 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.551 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.552 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.552 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.552 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.552 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.570 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c6b5a535 +18:00:42.577 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.577 [XNIO-1 task-2] uIlDAUDqTp641eEO4iYZgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.582 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.583 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.583 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.583 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG com.networknt.schema.TypeValidator debug - validate( "akmKBAp710ho4PRq6WXu8vMJAxcpurOwwLKvc9WEoB0", "akmKBAp710ho4PRq6WXu8vMJAxcpurOwwLKvc9WEoB0", code_challenge) +18:00:42.584 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.585 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.585 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.585 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.585 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.586 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.609 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.609 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.609 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.610 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.611 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.611 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.611 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.611 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.613 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.613 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.617 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.617 [XNIO-1 task-1] 2eJY5rcGQs6SidEOuXQ4mw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.618 [XNIO-1 task-2] RPmmD_OYR0WQUeioW4aBKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MPf-D5o-Si611fVpRDo-qQ +18:00:42.624 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.624 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.624 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.625 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.626 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.626 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG com.networknt.schema.TypeValidator debug - validate( "w0jZK-lt0cbbawE7ZD2s2BRzLcusbMu7Udq564KWHK0", "w0jZK-lt0cbbawE7ZD2s2BRzLcusbMu7Udq564KWHK0", code_challenge) +18:00:42.626 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.626 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:42.626 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.627 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.627 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.627 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.627 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.627 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.627 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.627 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.627 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.628 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.638 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.638 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.640 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.641 [XNIO-1 task-1] fZQpstYcRVqm2oHUuBtkhw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.642 [XNIO-1 task-2] i4DnbbEHQwKdub9o3R5eJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=z-pA9nRFTouOApNsQDvb7g +18:00:42.651 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.651 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.651 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.652 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.652 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.652 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.652 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:42.653 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "vCErR9ftMEqOx9PvScvgrF6LwERiXisDwGYTDxxAzM0", "vCErR9ftMEqOx9PvScvgrF6LwERiXisDwGYTDxxAzM0", code_challenge) +18:00:42.653 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:42.653 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.654 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.654 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.654 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.654 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.654 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.654 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.655 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.657 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.664 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.665 [XNIO-1 task-1] EDhr4TrNTGWVGwo2EEMDbQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.666 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.666 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.668 [XNIO-1 task-2] -G9Aq6O_RZmhZhSueL3nlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1goVDw7KS0eH_MlJHj3DKg +18:00:42.673 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.673 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.674 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.674 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:42.675 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.675 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.675 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.675 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.676 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.683 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.683 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.683 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.683 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.684 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.685 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:42.686 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.687 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.687 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.688 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.688 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.692 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c6b5a535 +18:00:42.697 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.697 [XNIO-1 task-1] PwgR3rtOSrCMwIWeV3pvvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.723 [XNIO-1 task-2] PUn3QjQwTuSgzyL2awqNeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IPI8pQzJRtmORj2VL41iUQ +18:00:42.731 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.733 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.733 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.733 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG com.networknt.schema.TypeValidator debug - validate( "DQH51UayKX7G5HbHU25GHgO0e2Z6gRVeQS3_gBL0Lg0", "DQH51UayKX7G5HbHU25GHgO0e2Z6gRVeQS3_gBL0Lg0", code_challenge) +18:00:42.734 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.734 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.734 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.735 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.735 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.735 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.745 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.745 [XNIO-1 task-1] 4jHaJ9okQXSatgH7m3r0bA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.753 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.753 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.753 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.754 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1E3k6RTiqqT36hLpCiRsVF0GvWV_fRldhND_eOD1U-s", "1E3k6RTiqqT36hLpCiRsVF0GvWV_fRldhND_eOD1U-s", code_challenge) +18:00:42.754 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.755 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.755 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.755 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.755 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.756 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.780 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.780 [XNIO-1 task-1] 5L1DpG90RtyWzHbuL5JZHg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.795 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.795 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.795 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.796 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "KJ5omPfMQIzV3anI16a6uIJAhs6LVS1ObE8ozNyMEso", "KJ5omPfMQIzV3anI16a6uIJAhs6LVS1ObE8ozNyMEso", code_challenge) +18:00:42.796 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.796 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.797 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.797 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.797 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.797 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.802 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.802 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.802 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.853 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.853 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.860 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.860 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.860 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.862 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.862 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.867 [XNIO-1 task-1] NNHRPs18S3uWyCDq-EqpnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MjHFYZLLQt2YwTOHOcsLWQ +18:00:42.873 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.873 [XNIO-1 task-2] aGBnkMqeRPOXekaXQ7X4uw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.919 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.920 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.920 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.920 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", client_id) +18:00:42.921 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.922 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.922 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.922 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.922 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.939 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.939 [XNIO-1 task-2] HdZYpwlETB62vm-cVpzaSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.949 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.950 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.950 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.950 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:42.951 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.951 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.951 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.951 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.953 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.960 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.960 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.961 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:42.961 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:42.962 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:42.962 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:42.962 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:42.963 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:42.963 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:42.963 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:42.964 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:42.969 [XNIO-1 task-2] bhef5z5-RzKbIBA5gemx6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2-QslTM6TquSM8Jxkj6GYA +18:00:42.972 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.972 [XNIO-1 task-1] 8MxI7QwUTvWFRc3J_T_j_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:42.981 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.982 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:42.982 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:42.982 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "snx5ddCSjTSFCXSoik2CJEYB5t2fejrbYjXlcojC9WU", "snx5ddCSjTSFCXSoik2CJEYB5t2fejrbYjXlcojC9WU", code_challenge) +18:00:42.984 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:42.985 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:42.985 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:42.985 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:42.985 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:42.986 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:42.995 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:42.995 [XNIO-1 task-1] nUWpcuA2QFqBDpXQ94TZeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.009 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.010 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.010 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.010 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.010 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.010 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.011 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:43.011 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.011 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.011 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.011 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.011 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.011 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.011 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.012 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.012 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.012 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.012 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.023 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.023 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.024 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.024 [XNIO-1 task-1] qpxUna6wSU2mGxTIkiEZMw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.027 [XNIO-1 task-2] 2YaLlH89QuO8PGNQe814Pw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZCQWVH26TO-3rNZ5a9te3A +18:00:43.058 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:85e5a15e-994c-47d7-b1e8-072711607811 +18:00:43.092 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:85e5a15e-994c-47d7-b1e8-072711607811 +18:00:43.098 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5ac17726-6afe-4db0-a435-3c130f92623f +18:00:43.117 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.118 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.118 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.119 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:43.119 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.119 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.119 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.119 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.120 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.120 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG com.networknt.schema.TypeValidator debug - validate( "4EAiewsU-3REKAdWNGkLoo04UQX0j41bpCnAvbzbI88", "4EAiewsU-3REKAdWNGkLoo04UQX0j41bpCnAvbzbI88", code_challenge) +18:00:43.120 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.120 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.120 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG com.networknt.schema.TypeValidator debug - validate( "3fd10486-1efc-45c0-bcd5-b0c8287e1469", "3fd10486-1efc-45c0-bcd5-b0c8287e1469", client_id) +18:00:43.121 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.121 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.121 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.121 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.122 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.129 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.130 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.130 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.130 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.134 [XNIO-1 task-2] 66BhKDo4QSukti_J-YwxaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KazwWJ0ZTnqjpMoKFHV-2A +18:00:43.139 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.139 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.140 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.140 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG com.networknt.schema.TypeValidator debug - validate( "80167848-390e-48f4-b1ff-b3236a337c89", "80167848-390e-48f4-b1ff-b3236a337c89", client_id) +18:00:43.141 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.141 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.141 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.141 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.142 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.145 [XNIO-1 task-1] nB8AAGYjSpKo-_nDCGtKRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SJ2a9cyAR7eJGq0KI5puJg +18:00:43.151 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.151 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.152 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.152 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.152 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.153 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.154 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.154 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.154 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.154 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.155 [XNIO-1 task-2] RC-C9l4PRmuMIt8gywzK-A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CRQrqQOERh-wt0W4S_yQnw +18:00:43.162 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.163 [XNIO-1 task-1] 1kj77DZ2TouR6XWpP6h9Sg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.164 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.164 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.164 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.165 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:43.165 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.166 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.167 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.167 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.168 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.168 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.176 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.176 [XNIO-1 task-2] u8uwS5NDSh62Oy7kObUvFg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.184 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.184 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.185 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.186 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6M5Fjpp5kAKmb836TAOT8Y96vaTMzDY4P5tFbGjWKfw", "6M5Fjpp5kAKmb836TAOT8Y96vaTMzDY4P5tFbGjWKfw", code_challenge) +18:00:43.186 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:43.187 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.187 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.189 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.190 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.193 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.209 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.209 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.215 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.215 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.215 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.216 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.216 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.216 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.216 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.217 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.219 [XNIO-1 task-2] ZNKgCVxhTbKwuMW1yiPGkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9_br2HZPTliW2Lwzj8Spvg +18:00:43.230 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.230 [XNIO-1 task-1] yRWvc5u8TKGEzCoS15xcAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.244 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.244 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.244 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.245 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:43.246 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.246 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.246 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.247 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.247 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.254 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.254 [XNIO-1 task-1] BAdJnBxGR4a-N6QujfkM5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.257 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c9fa53f9-f1e0-4a55-8b5a-6c0b2f3403d3 +18:00:43.262 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.262 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.263 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.263 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:43.263 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.264 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.264 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.264 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.265 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.273 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.273 [XNIO-1 task-1] ORLS508xRlKadZg9ZooJnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.283 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c9fa53f9-f1e0-4a55-8b5a-6c0b2f3403d3 +18:00:43.304 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.304 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.304 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.305 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", client_id) +18:00:43.305 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.306 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.306 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.306 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.306 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.312 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.312 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.314 [XNIO-1 task-1] FBKWogXiRVKVjmmsfNkWYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vUneANj-RSeArLjsPygBIw +18:00:43.325 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.326 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.326 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.327 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.327 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.328 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.328 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.328 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.335 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.336 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.342 [XNIO-1 task-1] r9UVk3hBRhGdseqMisMZXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9z_b0XmKTNayE9UnofhvKw +18:00:43.343 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.343 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.344 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.344 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", client_id) +18:00:43.344 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.345 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.345 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.345 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.346 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.347 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.347 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.347 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.348 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:43.348 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.348 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.349 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.349 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.349 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.359 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.359 [XNIO-1 task-2] -UcKfuRNRNKCnpxKCXFjig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.360 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.360 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.364 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.365 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.365 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.365 [XNIO-1 task-1] dpgYCqVyQLKMz4bPOo1GPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=P2bVeLHWTU6lhBqJ42gKgA +18:00:43.365 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.366 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.366 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.366 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.366 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.374 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.374 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.377 [XNIO-1 task-2] Qz1hFImtQtmNQkcGDEmjig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1YFKETzlSymG-UmV2sNcig +18:00:43.379 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a6a2d7f9 +18:00:43.380 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.380 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.381 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.381 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:43.382 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.382 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.382 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.382 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.382 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.392 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.392 [XNIO-1 task-2] 39KWpcaQTcaubU_4C3Rtgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.458 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.459 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.459 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.459 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:43.460 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.460 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.460 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.460 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.460 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.469 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.469 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.470 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8354347b +18:00:43.474 [XNIO-1 task-2] 4MON_FozQlq8KD2A1z8wOg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3JX8lc6gQ2uCIraKWX0e4A +18:00:43.475 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.475 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.475 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.476 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", client_id) +18:00:43.476 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.476 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.477 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.477 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.477 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.479 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.479 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.480 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.480 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG com.networknt.schema.TypeValidator debug - validate( "80167848-390e-48f4-b1ff-b3236a337c89", "80167848-390e-48f4-b1ff-b3236a337c89", client_id) +18:00:43.480 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.480 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.481 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.481 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.481 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.487 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.487 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.497 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.497 [XNIO-1 task-1] 2tlkM7jUQTus5TCVjYywhw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.501 [XNIO-1 task-2] B87nW-xASaC-5jwwxPQ9MA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6GWcWMrSStWJAp_ZQ3XiKg +18:00:43.506 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.506 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.506 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.507 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.507 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.508 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.508 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.508 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.522 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.522 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.524 [XNIO-1 task-1] zcLHZC_fTAuwYxp2pKyj2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=umjdDs9KQ-Sm3FNsc0NSuA +18:00:43.530 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.531 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.531 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.533 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.535 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.535 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.536 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.536 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8354347b +18:00:43.536 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.546 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.547 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.550 [XNIO-1 task-1] 35ZB4XUNRUmYhb5jd9Ewmw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=f-0TKFpkQj2jIz7acP6wdw +18:00:43.558 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.559 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.559 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.560 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.561 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.561 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.561 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.561 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.566 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a6a2d7f9 +18:00:43.579 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a6a2d7f9 +18:00:43.598 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.598 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.600 [XNIO-1 task-1] eV8DsKMuTPW3KQpRyiZYCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1ebDubXKT3q1MwnCdc1-Cw +18:00:43.616 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.616 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.616 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.617 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.617 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.617 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.617 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.617 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.628 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.629 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.632 [XNIO-1 task-1] HUJ2VcrIQHOvCeDPXIqLeA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jD8oJvV5Qm-q-p17hvM0NA +18:00:43.642 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.642 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.643 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.643 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG com.networknt.schema.TypeValidator debug - validate( "RNnYbFKKmUr4R4Ep4S5KF-rJtyz02XPIf-lw7S6bz78", "RNnYbFKKmUr4R4Ep4S5KF-rJtyz02XPIf-lw7S6bz78", code_challenge) +18:00:43.643 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:43.643 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.644 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.644 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.644 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.644 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.646 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c27a319c +18:00:43.656 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.656 [XNIO-1 task-1] 1Kdc-6EURuO2s7hPJfKZaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.665 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ac8a399e +18:00:43.668 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.668 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.668 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.669 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ac8a399e +18:00:43.669 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ac8a399e +18:00:43.669 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.669 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.693 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.693 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.693 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.705 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.705 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.711 [XNIO-1 task-1] ayzdNO5QTa2mo4IKFNOmOg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HS9L3OxETWyYTCWiLq0UIA +18:00:43.716 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.716 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.716 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.716 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.717 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.717 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.717 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:43.717 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:43.717 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.717 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.717 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.718 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.718 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.718 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.718 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.720 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.720 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.720 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.724 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.724 [XNIO-1 task-2] XmYVNyTtQ6iLftyQA7uoZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.729 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.729 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.729 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.730 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4iClgrzHzifv-dNmtlqE0ClFVgqT6LbvZ7D7-UpAIaI", "4iClgrzHzifv-dNmtlqE0ClFVgqT6LbvZ7D7-UpAIaI", code_challenge) +18:00:43.731 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:43.731 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.731 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.731 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.731 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.732 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.733 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.733 [XNIO-1 task-1] KZ-zIjtjQj-pCX6wYztrSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.744 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ac8a399e +18:00:43.744 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ac8a399e +18:00:43.744 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.744 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.745 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG com.networknt.schema.TypeValidator debug - validate( "344abcb4-9699-4257-8f31-6528e7e3ad59", "344abcb4-9699-4257-8f31-6528e7e3ad59", client_id) +18:00:43.745 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.745 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.746 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.746 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.746 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.748 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.748 [XNIO-1 task-2] 4-f_LuPqSVSo8QDPSRAG1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.759 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.760 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.760 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.761 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG com.networknt.schema.TypeValidator debug - validate( "b7BbRIciHOYkEKLXoz_vW9IxiFMirDnBaOLotPZHcQU", "b7BbRIciHOYkEKLXoz_vW9IxiFMirDnBaOLotPZHcQU", code_challenge) +18:00:43.762 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:43.762 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.763 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.763 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.763 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.763 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.764 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.764 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.766 [XNIO-1 task-1] 86bxgee5QNuv2sayDpMMTA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Yd-FFJrASTWgJaQzKA_PWA +18:00:43.773 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.773 [XNIO-1 task-2] 68BdYUsPS5OK2lAIdlLGHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.774 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.775 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.775 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.775 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.775 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +18:00:43.776 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +18:00:43.777 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +18:00:43.782 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:00:43.784 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.784 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.785 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.785 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.785 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.790 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.790 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.794 [XNIO-1 task-1] 2Uz4oyj5Spmst5Wm10a_2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Z4_TFGbJTyOpd485ISy6ZA +18:00:43.805 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.805 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.811 [XNIO-1 task-2] 4XlfCitXTFOfljHvcBatcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qFwN59RXTjilRGyFTkj7gg +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:43.867 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.868 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.868 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.868 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG com.networknt.schema.TypeValidator debug - validate( "jDBh1uj5ZtNcR1JMbT9k-iwc-4QfHbLUs0DP1DNDuW0", "jDBh1uj5ZtNcR1JMbT9k-iwc-4QfHbLUs0DP1DNDuW0", code_challenge) +18:00:43.868 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:43.869 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.869 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.869 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.869 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.869 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.885 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.885 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.889 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.889 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.890 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.890 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.890 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.891 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.891 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.891 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.895 [XNIO-1 task-2] YgzbxSYgRxy9bqHLE98yYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rm98ahUSTFCCj0xkEVycyA +18:00:43.905 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.905 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.906 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.906 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.906 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.907 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3fd10486-1efc-45c0-bcd5-b0c8287e1469", "3fd10486-1efc-45c0-bcd5-b0c8287e1469", client_id) +18:00:43.907 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.907 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.907 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.907 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.907 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.911 [XNIO-1 task-1] x9jMXwEEToyb2-Gc-v2vPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ayGe4r4eRRu9TWNWt64z6g +18:00:43.912 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ac8a399e +18:00:43.916 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.916 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.917 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.917 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.917 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.918 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.918 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.918 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.924 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.925 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.925 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.926 [XNIO-1 task-1] bi4e6mM4TB271PzicAm08g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.927 [XNIO-1 task-2] id5UdWy7TZ2e9YDulzz18Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XiU-4zsJT2-J7TOPE0dyew +18:00:43.935 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.936 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.937 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.937 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG com.networknt.schema.TypeValidator debug - validate( "OLpH2d8rkUvsWEAdYagMFXWoWKZ3VCwdrHlkomZ5Dec", "OLpH2d8rkUvsWEAdYagMFXWoWKZ3VCwdrHlkomZ5Dec", code_challenge) +18:00:43.937 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:43.937 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:43.937 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.938 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.938 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.938 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.952 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.952 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.955 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.955 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.955 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.956 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.956 [XNIO-1 task-2] UJODCP1WS3ivbp99pY0qPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qS-dPWKPSNmgUb9HzoEXrw +18:00:43.956 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.957 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.957 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.957 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.962 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.962 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.962 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.963 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:43.963 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.963 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.964 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.964 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.964 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.967 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.967 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.969 [XNIO-1 task-1] kngNkdq7TiyMq2kJ0U1EyA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NfhabAe2RKacr4RmixulpQ +18:00:43.973 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:43.973 [XNIO-1 task-2] Jo3o7K1LQp-QgcGaKhjjSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.973 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.973 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.974 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.974 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.974 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.975 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:43.977 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:43.977 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:43.977 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:43.980 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.980 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.980 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:43.980 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:43.981 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:43.981 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:43.981 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:43.981 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:43.981 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:43.987 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.987 [XNIO-1 task-1] -Yqk-PDpTcuV8GDb5_xkgA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.988 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:43.988 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:43.988 [XNIO-1 task-2] b3MnhtNuQO-5bsFz0k1pbA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:43.999 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:43.999 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:43.999 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.000 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG com.networknt.schema.TypeValidator debug - validate( "pCFd6zJMR32Emye91NZ1SGvvSQcsrczuu43lALXkiEo", "pCFd6zJMR32Emye91NZ1SGvvSQcsrczuu43lALXkiEo", code_challenge) +18:00:44.001 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:44.001 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.002 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.002 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.002 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.005 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.025 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.025 [XNIO-1 task-2] FcxmRScDQoyQ7hJwK_3-8g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.026 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c27a319c +18:00:44.027 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.028 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.028 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.029 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", client_id) +18:00:44.030 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.030 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.030 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.030 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.030 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.042 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.042 [XNIO-1 task-1] S6MELyJRR3aBccYaMLboCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.089 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.090 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.090 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.090 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG com.networknt.schema.TypeValidator debug - validate( "f4n-aUUaKls4-wOkXeqaaW4U_6Sd3f4yZvqalDcNsAo", "f4n-aUUaKls4-wOkXeqaaW4U_6Sd3f4yZvqalDcNsAo", code_challenge) +18:00:44.091 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:44.091 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.091 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.091 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.091 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.091 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.102 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.102 [XNIO-1 task-1] zRLHoBKMTzuAavcyFlk8RA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.125 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.125 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.125 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.126 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", client_id) +18:00:44.126 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.126 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.126 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.126 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.127 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.135 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ac8a399e +18:00:44.136 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.136 [XNIO-1 task-1] 4ieL3RKbQOmPaMsXpJ_QFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.143 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.143 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.143 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.144 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", "a0e7da42-8226-4df5-9ea1-d029fb4b13f9", client_id) +18:00:44.145 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.145 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.146 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.146 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.146 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.158 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.158 [XNIO-1 task-1] gB7D4boeTOCjhegItTMIxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.192 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.192 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.192 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.193 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG com.networknt.schema.TypeValidator debug - validate( "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", client_id) +18:00:44.193 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.193 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.194 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.194 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.195 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.195 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.196 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.196 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6192e6df-a0e5-4420-84f6-9b57a9045ef4", "6192e6df-a0e5-4420-84f6-9b57a9045ef4", client_id) +18:00:44.196 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.196 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.196 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.197 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.197 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.199 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.210 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.210 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.212 [XNIO-1 task-2] IJTaxqMdT5qiYqfkmSjNpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fWyb9c7NTlyf9uPFmQQv-w +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:44.217 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:44.217 [XNIO-1 task-1] rhrxhrn1S32ZloAI_ZHSAw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:00:44.247 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +18:00:44.248 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.248 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG com.networknt.schema.TypeValidator debug - validate( "lrmAuZZv2lkoM6fOsvS83bq47xgU54ebRl3twxxnXJQ", "lrmAuZZv2lkoM6fOsvS83bq47xgU54ebRl3twxxnXJQ", code_challenge) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:00:44.248 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG com.networknt.schema.TypeValidator debug - validate( "6192e6df-a0e5-4420-84f6-9b57a9045ef4", "6192e6df-a0e5-4420-84f6-9b57a9045ef4", client_id) +18:00:44.248 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:44.249 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.249 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.249 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.249 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.249 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:00:44.249 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.249 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.249 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", client_id) +18:00:44.250 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.250 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.250 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.250 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.250 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.254 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:07199127 +18:00:44.259 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.260 [XNIO-1 task-1] bO4smiPGTJmSEUXq8UXfDA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.260 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.260 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.266 [XNIO-1 task-2] 9pCB6aRuRYynQ3TsabYnHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7mUKtWskQICZMEIwEhGuCw +18:00:44.275 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.276 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.276 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.276 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG com.networknt.schema.TypeValidator debug - validate( "S6HWSRkZsxL6MCEajQ0OfcnPh_1Efqz8ien0wngIjLQ", "S6HWSRkZsxL6MCEajQ0OfcnPh_1Efqz8ien0wngIjLQ", code_challenge) +18:00:44.277 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:44.278 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.278 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.278 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.278 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.279 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.290 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:44.292 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.292 [XNIO-1 task-1] NpyAUWwiQ8WRUszng0ngSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.302 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.302 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.302 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.302 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Q8y4T7mSbaq19HPeZ-zhGN1tT59s-fz4WbHo-fkyM-o", "Q8y4T7mSbaq19HPeZ-zhGN1tT59s-fz4WbHo-fkyM-o", code_challenge) +18:00:44.303 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:44.303 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.303 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.303 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.304 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.304 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.318 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.318 [XNIO-1 task-1] 4HpQLndASAmsCFvgJ-R-cw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.334 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.335 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.335 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.335 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", client_id) +18:00:44.336 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.336 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.337 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.337 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.337 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.338 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.338 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.338 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.338 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "344abcb4-9699-4257-8f31-6528e7e3ad59", "344abcb4-9699-4257-8f31-6528e7e3ad59", client_id) +18:00:44.338 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.338 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.339 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.340 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.340 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.349 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.349 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.349 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.350 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.353 [XNIO-1 task-1] K22G1DU1Q5qnJSp3kZTAQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jaDlEypoQMaMy4BOEtbZAw +18:00:44.360 [XNIO-1 task-2] IqM8ieF4TMeF7-8y1UgcQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_tP3fXs0RYSoQ08dTAPkGQ +18:00:44.361 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.361 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.361 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:44.362 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.362 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.362 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.362 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.363 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.370 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.370 [XNIO-1 task-1] -fd1wC4bReanH8EPiN4vSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.396 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e680f042 +18:00:44.400 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e680f042 +18:00:44.400 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.400 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.400 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.402 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG com.networknt.schema.TypeValidator debug - validate( "6192e6df-a0e5-4420-84f6-9b57a9045ef4", "6192e6df-a0e5-4420-84f6-9b57a9045ef4", client_id) +18:00:44.402 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.402 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.403 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.403 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.403 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.413 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.414 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.415 [XNIO-1 task-1] 9-8ihvi8Ri6V-ivjT86ptA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Fx_tgdFeSQqlyOZ77OksZg +18:00:44.421 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.421 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.421 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.422 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG com.networknt.schema.TypeValidator debug - validate( "6192e6df-a0e5-4420-84f6-9b57a9045ef4", "6192e6df-a0e5-4420-84f6-9b57a9045ef4", client_id) +18:00:44.422 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.422 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.423 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.423 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.423 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.428 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:07199127 +18:00:44.429 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:07199127 +18:00:44.429 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.434 [XNIO-1 task-1] 85a54l6-QgqCYtbp4GV3MA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WiH_Q_WNQkKcL6ZPv5PcPw +18:00:44.447 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.448 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.448 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.448 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.448 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.449 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.449 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.449 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.457 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.458 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.462 [XNIO-1 task-1] uF1sPfiqS56vF4yyEXdWWA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rGdm7IW6ShW9l42kewUHeA +18:00:44.470 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.471 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.471 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.471 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.471 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.472 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.472 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.472 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.486 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.487 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.490 [XNIO-1 task-1] -ltwCgJJRcyCfvaTREtVPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=NBs-PQFCR7i9ZkN-OVeC7Q +18:00:44.497 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.497 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.497 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.498 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.498 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.498 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.498 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.499 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.513 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.514 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.519 [XNIO-1 task-1] RRZtTmRPRTuKMcMZRnOkEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=N6FiT2EYRJ-z6nlhU1Rc6w +18:00:44.524 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.524 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.524 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.525 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.525 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.525 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.526 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.526 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.532 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.533 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.561 [XNIO-1 task-1] LdaJMvsbSfGxjISNlk2d0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vVPReHqVThGsbp-ZuGywLA +18:00:44.574 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.575 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.575 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.575 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.575 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.576 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.576 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.576 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.591 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.591 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.595 [XNIO-1 task-1] fM9ZvUvPQYO9KcSOZ-CF7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KePCv6OKTsWsrU_-N6QKEg +18:00:44.602 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.602 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.602 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.602 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG com.networknt.schema.TypeValidator debug - validate( "4dd47481-548a-4df7-b45b-17571efd5064", "4dd47481-548a-4df7-b45b-17571efd5064", client_id) +18:00:44.603 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.603 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.603 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.604 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.605 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.610 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.611 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.611 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.611 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "344abcb4-9699-4257-8f31-6528e7e3ad59", "344abcb4-9699-4257-8f31-6528e7e3ad59", client_id) +18:00:44.611 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.614 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.615 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.615 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.615 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.624 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.624 [XNIO-1 task-1] 7kw90ds4RTOEFV7D1pP0GQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.632 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.632 [XNIO-1 task-2] ZH4WrZPDR3asZHuel2kKvw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.632 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.633 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.633 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.635 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:44.635 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.636 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.637 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.637 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.637 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:82f115dc-8276-4831-acc8-1dcb4e819925 +18:00:44.637 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:82f115dc-8276-4831-acc8-1dcb4e819925 +18:00:44.637 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.645 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.645 [XNIO-1 task-1] ZZUkFzazRMaQIP0DW5TF-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.686 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:58467c67 +18:00:44.689 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:58467c67 +18:00:44.695 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.695 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.695 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.696 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.696 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.696 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.697 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.697 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.707 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.707 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.709 [XNIO-1 task-1] g19mFURCRxGsHuHby9PfnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JnertGIJT2uYctaSc1Tdtw +18:00:44.725 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:58467c67 +18:00:44.730 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.730 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.731 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.731 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6192e6df-a0e5-4420-84f6-9b57a9045ef4", "6192e6df-a0e5-4420-84f6-9b57a9045ef4", client_id) +18:00:44.731 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.731 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.732 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.732 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.732 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.743 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.743 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.745 [XNIO-1 task-1] wk-XYLUDQ1Ce4fupAob_JQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k4PJ6KIRSye3AZCrEbu6ow +18:00:44.749 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e680f042 +18:00:44.762 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b680dde5-8a9f-4912-9ecd-2e73e2b194e3 +18:00:44.778 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e680f042 +18:00:44.785 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b680dde5-8a9f-4912-9ecd-2e73e2b194e3 +18:00:44.788 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.788 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.789 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.789 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG com.networknt.schema.TypeValidator debug - validate( "3fd10486-1efc-45c0-bcd5-b0c8287e1469", "3fd10486-1efc-45c0-bcd5-b0c8287e1469", client_id) +18:00:44.789 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.789 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.790 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.790 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.790 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.815 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.816 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.816 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.816 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:44.817 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.817 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.821 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.821 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.821 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.827 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.827 [XNIO-1 task-1] qPLBJrHXSKWACHuJ40DNRA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.832 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:82f115dc-8276-4831-acc8-1dcb4e819925 +18:00:44.873 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b8b6e0fb-820b-44a8-b1e3-c9051361f686 +18:00:44.873 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.873 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.878 [XNIO-1 task-2] xzZ6uDw6SdSMN6ibEqG4nA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rVmGZONzQfmOu8PA0dKXlg +18:00:44.883 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.883 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.883 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.885 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG com.networknt.schema.TypeValidator debug - validate( "3fd10486-1efc-45c0-bcd5-b0c8287e1469", "3fd10486-1efc-45c0-bcd5-b0c8287e1469", client_id) +18:00:44.885 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.885 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.886 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.886 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.886 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.888 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e680f042 +18:00:44.907 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.908 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.911 [XNIO-1 task-1] DaRgCwoLS0as5BtI3_lM8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SN1jmr9qSfWvGU-OxnYkgQ +18:00:44.915 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.915 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.915 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.916 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3fd10486-1efc-45c0-bcd5-b0c8287e1469", "3fd10486-1efc-45c0-bcd5-b0c8287e1469", client_id) +18:00:44.916 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.916 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.916 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.916 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.917 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.927 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.927 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.929 [XNIO-1 task-1] qZY6VwSkT3y2h9cbmh20eQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DR-6zGiDTxClzDbtCTW1hA +18:00:44.935 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.935 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.935 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.937 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:44.937 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.937 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.938 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.938 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.939 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.948 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.949 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.950 [XNIO-1 task-1] 1GOtEe8uTdeRr_LcZndNiw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4gk-tWcURF2GuO4XLUq8lA +18:00:44.955 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.955 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.956 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.956 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:44.956 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.956 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.957 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.957 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.957 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.970 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:44.970 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.974 [XNIO-1 task-1] 4qWLR95hRoi7Rp0zWyLihA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tzkmTLe1SByVtb5u3L-sCw +18:00:44.976 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.976 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.976 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:44.977 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:44.977 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.977 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:44.977 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:44.977 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:44.980 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.980 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.980 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.980 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "CXotqreykIUARdYEJT2hVTTN5w8k7WDovHtSt8JHtiY", "CXotqreykIUARdYEJT2hVTTN5w8k7WDovHtSt8JHtiY", code_challenge) +18:00:44.981 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:44.981 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.981 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:44.981 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.981 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.982 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:44.989 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:44.989 [XNIO-1 task-1] CqxwGhvnSJejGdXW8_lhzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.995 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.995 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:44.997 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:44.997 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:44.997 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:44.997 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:44.997 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:44.997 [XNIO-1 task-2] 07BLFBNfSPqhTHY54aeoMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:44.997 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:44.998 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:44.998 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.028 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.030 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.037 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:595a3eab-075a-414a-bae0-2f0455dae2d3 +18:00:45.036 [XNIO-1 task-1] D0ZO-eGjQzyb1RHRy0o9bw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=EcB6cQ-PTTqEa4xDI8Aa5w +18:00:45.057 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.057 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.057 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.057 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:45.058 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.058 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.058 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.058 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.058 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.070 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.070 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.072 [XNIO-1 task-1] fBi6kGCNRke0iSdnFAWckg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qIdBZZbQQdyYH0CZ1Ha-7w +18:00:45.077 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.077 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.077 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.078 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG com.networknt.schema.TypeValidator debug - validate( "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", client_id) +18:00:45.078 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.078 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.078 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.078 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.081 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.124 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.124 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.127 [XNIO-1 task-1] FrcXwgEdSlCQi-uF-xQKlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ErXWr_IvQDONJdoCSyPT5g +18:00:45.134 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.134 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.134 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.134 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.135 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.135 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.135 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.135 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.148 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.148 [XNIO-1 task-1] aEJqxN81QOKUwyxC-F6tsA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.154 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:784df903-f315-43ac-be17-3a63e9874287 +18:00:45.156 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc +18:00:45.157 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc +18:00:45.177 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.177 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.177 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.178 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG com.networknt.schema.TypeValidator debug - validate( "QqSMNF_ApHHA80KKhOx5sh5kR8yAcck--cWJ9fN_iQg", "QqSMNF_ApHHA80KKhOx5sh5kR8yAcck--cWJ9fN_iQg", code_challenge) +18:00:45.178 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.178 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.178 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.178 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.178 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.178 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.178 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:45.179 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.179 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.179 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.179 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.179 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.179 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.202 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.208 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.208 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.210 [XNIO-1 task-2] QrX-I14eRkKGilMRt5OL1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p73fvfOsRpebDONwBbIf8g +18:00:45.213 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.213 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.213 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.214 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.214 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.214 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.214 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.214 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.216 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7dae48a6-521e-48ba-a6a0-c2ac6aa27d50 +18:00:45.218 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7dae48a6-521e-48ba-a6a0-c2ac6aa27d50 +18:00:45.219 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.219 [XNIO-1 task-1] uz0tL-kqSQeoVz912MR9Og DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.225 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.225 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.232 [XNIO-1 task-2] iQYduIChTN-8NJFvo9-p9A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BBMqjvgwQHaL7O8cAFhi6w +18:00:45.297 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.297 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.297 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.297 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:45.298 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.298 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.298 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.298 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.298 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.346 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.346 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.348 [XNIO-1 task-2] wAeX3JP1TuK0Jg7ee_LISw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=A2GZNycsQf6yK65Eu1u3mA +18:00:45.388 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.388 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.389 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.389 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.389 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.390 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.390 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.393 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.399 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.399 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.402 [XNIO-1 task-2] oF-t5XSiQY6Owumb9FMTrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vkozP6S8Sze-SosZgS61WA +18:00:45.407 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.407 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.408 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.408 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.409 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.410 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.410 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.410 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.419 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.419 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.421 [XNIO-1 task-2] tkD4CwV4Rl6MMtQ4EM2NZw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=R28erNd_SkGNNa1QVgWf3w +18:00:45.441 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f390ebd9-3093-44cf-a8c3-d069238a7f76 +18:00:45.459 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.460 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.460 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.460 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG com.networknt.schema.TypeValidator debug - validate( "5cc9ac71-24de-492a-8df9-cd610c425ab3", "5cc9ac71-24de-492a-8df9-cd610c425ab3", client_id) +18:00:45.460 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.461 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.461 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.461 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.461 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.463 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.463 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.463 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.463 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93918b0a-406f-4732-9071-3123fc8c8218", "93918b0a-406f-4732-9071-3123fc8c8218", client_id) +18:00:45.464 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.464 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.464 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.464 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.464 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.467 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.468 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.469 [XNIO-1 task-2] Awmp17ljS6SdKobM5W7V0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=D_-85NnPSzCHhpTHC76TcQ +18:00:45.470 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.470 [XNIO-1 task-1] 8lB-wUNSRCOo81QEKmnhKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.474 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.474 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.474 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.474 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG com.networknt.schema.TypeValidator debug - validate( "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", client_id) +18:00:45.475 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.481 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.484 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.484 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.485 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.498 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.498 [XNIO-1 task-2] b1B8G85cRQajs5aOLsrbpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.585 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.586 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.586 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.586 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG com.networknt.schema.TypeValidator debug - validate( "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", client_id) +18:00:45.587 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.587 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.588 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.588 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.588 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.600 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.600 [XNIO-1 task-2] jLfmPRrCS9O6hp4u__8S3g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.608 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.608 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.608 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.609 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:45.609 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.609 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.609 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.609 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.609 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.611 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.611 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.611 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.612 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:45.612 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.612 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.612 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.612 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.613 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.618 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.618 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.623 [XNIO-1 task-2] IVstOJnRSWu-Mu06k96d-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1U2YAqSRRwWDWU9XxtB0sg +18:00:45.623 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.623 [XNIO-1 task-1] 72T6IDRUSAOUncUDysw12A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.635 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.635 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.636 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.636 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Nvud9G6DzFNvFZtq8uc-VitKqn_LyPHgrApoJHzeE1I", "Nvud9G6DzFNvFZtq8uc-VitKqn_LyPHgrApoJHzeE1I", code_challenge) +18:00:45.636 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.636 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.636 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.637 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.637 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.637 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.651 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.651 [XNIO-1 task-1] lu40iK8JQq6CoNVaFIwPFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.664 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.664 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.664 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.665 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b9qnWtKWACUTYECGMe_ExgO2mXUbe-iilPEGI5OWmPs", "b9qnWtKWACUTYECGMe_ExgO2mXUbe-iilPEGI5OWmPs", code_challenge) +18:00:45.665 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.665 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.665 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c7cf0e70 +18:00:45.665 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.666 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.666 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.667 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c7cf0e70 +18:00:45.675 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.676 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.680 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:85d08c6b-5472-43f3-a351-333784af044e +18:00:45.682 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.682 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.682 [XNIO-1 task-1] nDOvzs_BRG-OpjsGjv4sIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HuN9jHfNTYSkVi8-DgDaBQ +18:00:45.682 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:45.683 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.683 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.683 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:85d08c6b-5472-43f3-a351-333784af044e +18:00:45.683 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.683 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.683 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.687 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.688 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.688 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.689 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:45.689 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.689 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.689 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.689 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.689 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.699 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.699 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.702 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.702 [XNIO-1 task-1] lEZsRuDPQhGbaFaYZlgUag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.704 [XNIO-1 task-2] tP5e3eD4SACe1phvlvmK1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9vBydY4qTQihXziRKgn9KA +18:00:45.712 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.712 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.712 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.712 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:45.712 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.713 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.713 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.713 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.713 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.724 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.724 [XNIO-1 task-1] AgMkUd3iQwSJpFvsa5WYlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.731 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.732 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.732 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.732 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:45.732 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.733 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.733 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.733 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.733 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.743 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.743 [XNIO-1 task-1] sIwCCcs3QieioG-1kVxBwQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.749 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.749 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.750 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.750 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:45.751 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.752 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.752 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.752 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.752 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.760 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.760 [XNIO-1 task-1] 7xVAAVeuRNSkzar0a8Af7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.763 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.763 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.763 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.763 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG com.networknt.schema.TypeValidator debug - validate( "xVJx5Ka-rrt-ZOyLUfy5zmrg0EVZFsqodtNO9F6rM_E", "xVJx5Ka-rrt-ZOyLUfy5zmrg0EVZFsqodtNO9F6rM_E", code_challenge) +18:00:45.764 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.764 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.764 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.764 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.765 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.765 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.774 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.774 [XNIO-1 task-1] mhkKrd4wSQGH6zlUwaqe0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.782 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.782 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.782 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.783 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG com.networknt.schema.TypeValidator debug - validate( "DcMnCPH4MSYIIvto7rOz9xhScVgWLukepwOVEHUJX0s", "DcMnCPH4MSYIIvto7rOz9xhScVgWLukepwOVEHUJX0s", code_challenge) +18:00:45.783 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.783 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.783 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.783 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.784 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.784 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.790 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.790 [XNIO-1 task-1] amqsMz-bSu-545ACD9RMSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.796 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.797 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.797 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.797 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "www9Fl_DHcuxts3X4gH7LQbipu6CsFTxaxDEXTH9eTs", "www9Fl_DHcuxts3X4gH7LQbipu6CsFTxaxDEXTH9eTs", code_challenge) +18:00:45.797 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.797 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.798 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.798 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.798 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.798 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.808 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.808 [XNIO-1 task-1] yvNbTNRSRtK2co-7c1P5IQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.815 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.815 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.815 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.816 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "SaT5QQx394WmaynzCM0DjAqiuTGrKuPF65FWlJgsyCE", "SaT5QQx394WmaynzCM0DjAqiuTGrKuPF65FWlJgsyCE", code_challenge) +18:00:45.816 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.816 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.816 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.817 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.817 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.818 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.820 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.820 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.820 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.820 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.820 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.821 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.821 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.821 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.826 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.826 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.828 [XNIO-1 task-1] NjRpFClfSiyXWk8q5sCdFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=osNEvcG5S1eeKVepxGGJJQ +18:00:45.830 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.830 [XNIO-1 task-2] 8rWdIBGPS9KadgHtaRPljw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.841 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.841 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.842 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.842 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:45.842 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.842 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.843 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.843 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.843 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.851 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.851 [XNIO-1 task-2] seqQfnGYThycXk14ZDdiMA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.871 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:73041716-9e53-4de4-bc94-fc150353b907 +18:00:45.888 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.888 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:45.888 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:45.889 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG com.networknt.schema.TypeValidator debug - validate( "6eV6PUyhzC3ZZ8L8jNdTEvDnsVre6enhHxDzzIoLznA", "6eV6PUyhzC3ZZ8L8jNdTEvDnsVre6enhHxDzzIoLznA", code_challenge) +18:00:45.889 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.889 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:45.889 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.889 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.890 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:45.890 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.900 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.901 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.909 [XNIO-1 task-2] WgMYl4ZCRfCC_wWTovI95g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=spRS4mgITdG33rhewpHGwQ +18:00:45.926 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:89e30051-47b4-4a8c-b106-a01e72d79bf8 +18:00:45.939 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.939 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.939 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.939 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.940 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.940 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.940 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ULciobbeZNQ0nswWwuuZhb6pT5CbiP7u0ExJDqYgp-A", "ULciobbeZNQ0nswWwuuZhb6pT5CbiP7u0ExJDqYgp-A", code_challenge) +18:00:45.940 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.940 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:45.940 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.940 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.940 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.940 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:45.940 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.940 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:45.940 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.941 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.941 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:45.949 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:45.949 [XNIO-1 task-2] RD-L5BqVRpKe7wIiByOJiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:45.952 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.953 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.962 [XNIO-1 task-1] uwI6r7cUS6S8vs07fOMLoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=q9naaiFMRgy1S_sY12M0ow +18:00:45.966 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.966 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.967 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.967 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG com.networknt.schema.TypeValidator debug - validate( "7dae48a6-521e-48ba-a6a0-c2ac6aa27d50", "7dae48a6-521e-48ba-a6a0-c2ac6aa27d50", client_id) +18:00:45.968 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.968 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.968 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.968 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.969 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.977 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.977 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.981 [XNIO-1 task-1] GofUcdNOTEeW5q_r9kAsdA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p3P9OwzkQma7gbOPUxSKvg +18:00:45.985 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.985 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.985 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:45.986 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:45.986 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:45.986 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:45.986 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:45.986 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:45.994 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:45.995 [XNIO-1 task-1] F8Nj1JljR3y_T-6GVcIB6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:45.997 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c7cf0e70 +18:00:45.999 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c7cf0e70 +18:00:46.023 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b2e13d0c-79fd-4fce-b9d1-cedbb90fadd0 +18:00:46.024 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.024 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.024 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.024 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG com.networknt.schema.TypeValidator debug - validate( "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", client_id) +18:00:46.025 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.025 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.025 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.025 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.025 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.031 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.032 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.033 [XNIO-1 task-1] KhjcHDEdT7Gqb95eZBgWxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Z911vy0iQaaUixUNAZLAMQ +18:00:46.035 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.035 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.035 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.036 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.036 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.036 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.036 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.036 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.044 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.045 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.046 [XNIO-1 task-1] YgUbWMNnSpyZHz-PuNBK4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AuC9LsFnQAOgptDawYKgCg +18:00:46.052 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.052 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.052 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.052 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.053 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.053 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.053 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.053 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.054 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a1d40ede-8fb6-4b44-b8f8-146ca915e1f6 +18:00:46.066 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.066 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.072 [XNIO-1 task-1] xPROZ3M1S_ymGAAPY7234w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M6sRxeECQq24nxt56J0trw +18:00:46.087 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.095 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.095 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.096 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.096 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG com.networknt.schema.TypeValidator debug - validate( "ElQLwQKoeGXmMooFI3HSM7rVlibIKnc62oZtrfZhVtE", "ElQLwQKoeGXmMooFI3HSM7rVlibIKnc62oZtrfZhVtE", code_challenge) +18:00:46.096 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.096 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.096 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.097 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.097 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.097 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.104 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.104 [XNIO-1 task-1] 8ixGQzp0T2qFfAoVRTy90A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.119 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.119 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.120 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.120 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.120 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.120 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG com.networknt.schema.TypeValidator debug - validate( "iqp1uFPpwW3E7faq-4yHL1_PCfuzlJvHygutUNDhq6s", "iqp1uFPpwW3E7faq-4yHL1_PCfuzlJvHygutUNDhq6s", code_challenge) +18:00:46.121 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.121 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.121 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.121 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.121 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.122 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.122 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.122 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.122 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.123 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.123 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.123 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.129 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.129 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.131 [XNIO-1 task-2] fLu9uXQ6R1eC-eO9v4gGHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_888A_alRgO0SE9Ww2Ajog +18:00:46.135 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.135 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.135 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.135 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:46.136 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.136 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.136 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.136 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.136 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.136 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.137 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.139 [XNIO-1 task-1] 1YCL5gQ-S3uqwr7aH0nCbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GlmTtSQqSCGhjvEhrIzzhw +18:00:46.142 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.142 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.142 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.143 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.143 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.144 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.144 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.144 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.170 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0595a4d1 +18:00:46.171 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.172 [XNIO-1 task-2] UeTnB1CyR1av2_ys1nVQTg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.173 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.173 [XNIO-1 task-1] K4H50EmMSFCYEQRA6RcyEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.198 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0595a4d1 +18:00:46.217 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0a43c70 +18:00:46.220 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0a43c70 +18:00:46.220 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.221 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.221 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.221 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:46.221 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.221 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.222 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.222 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.222 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.230 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.230 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.231 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.231 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG com.networknt.schema.TypeValidator debug - validate( "vF3XwANicOXaZjqvALLNMaqFP__52YQ-OMLvjpLiHfU", "vF3XwANicOXaZjqvALLNMaqFP__52YQ-OMLvjpLiHfU", code_challenge) +18:00:46.231 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.231 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.231 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.231 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.232 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.232 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.232 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.232 [XNIO-1 task-1] dqKIPswyQK2HZbu9tBHL4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.244 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.244 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.245 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.246 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.246 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.247 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:46.247 [XNIO-1 task-2] p6QedVweSU6mm_oUE2VSOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=RtZ7MMEcRE6qkkoYDK4GmQ +18:00:46.247 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.247 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.247 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.247 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.251 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.256 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.256 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.256 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.256 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:46.257 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.257 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.257 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.257 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.257 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.264 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.264 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.266 [XNIO-1 task-1] To7jK2XMSiCHw2gzx2ic3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Q_ZH7Be_SFqZXOGx5KgQ_Q +18:00:46.270 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.270 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.273 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.273 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.273 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.273 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.273 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.274 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.274 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.274 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.274 [XNIO-1 task-2] K0BrJIPBTBO8eMdRqD-wyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fCYozoGTR6KyhoeryeZvOQ +18:00:46.278 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.278 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.278 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.279 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:46.279 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.279 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.279 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.280 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.280 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.295 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.296 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.296 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.296 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.297 [XNIO-1 task-2] uc9S8ZFiSeSWDaDDMOz3DA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lsn6mohzT3aXZJeKM3IhuQ +18:00:46.300 [XNIO-1 task-1] fAXxhTvVQeiE_Ymmr5XJ6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YqfJCbqSRgiPeP88Jv4rPA +18:00:46.305 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eef38271 +18:00:46.305 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eef38271 +18:00:46.305 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.306 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.306 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.306 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.306 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.307 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.307 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.315 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.315 [XNIO-1 task-1] UBYutFzXQOOHnjZ6zWr0cQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.315 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:eef38271 +18:00:46.349 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.350 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.351 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.351 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "WzaHacfWwplMQIuOn7wU30ZcA3MLs4XYZcFAmx6zZi8", "WzaHacfWwplMQIuOn7wU30ZcA3MLs4XYZcFAmx6zZi8", code_challenge) +18:00:46.351 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.351 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.351 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.352 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.352 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.352 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.358 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.358 [XNIO-1 task-1] xPBNuuZgTo6ZqQP1Zw7PkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.371 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.371 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.372 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.372 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Jpd7OWqQyO-rRjIP9RGh02cxWeytpaymPSzT0zlDCW0", "Jpd7OWqQyO-rRjIP9RGh02cxWeytpaymPSzT0zlDCW0", code_challenge) +18:00:46.372 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.372 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.372 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.373 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.373 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.373 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.384 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:21ccbc41 +18:00:46.384 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.384 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.386 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:21ccbc41 +18:00:46.388 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:196d5033-e003-454d-8df8-3d085087d93b +18:00:46.392 [XNIO-1 task-1] qsOlhxj_T8GT4uHamseBuw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1dfXfqdyQ96OFVxViapOGg +18:00:46.402 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0a43c70 +18:00:46.402 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.402 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.402 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.403 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.403 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.403 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.404 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.404 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0595a4d1 +18:00:46.405 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.405 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.405 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.407 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.408 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG com.networknt.schema.TypeValidator debug - validate( "6fd56d98-f348-4838-8c35-49aff5af338e", "6fd56d98-f348-4838-8c35-49aff5af338e", client_id) +18:00:46.408 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.408 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.408 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.408 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.409 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.420 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.421 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.423 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.423 [XNIO-1 task-1] O0YutSlvRsWOlXHSMWyp_g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.424 [XNIO-1 task-2] sQcIvbg6TCu2jf3MqIndog DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bhCLKu9CROelYDx1d43Ngw +18:00:46.432 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:59ad75b6 +18:00:46.434 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:59ad75b6 +18:00:46.437 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.438 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.438 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.438 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:46.438 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.439 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.439 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.439 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.440 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.440 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.440 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.440 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.440 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:46.441 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.441 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.441 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.441 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.441 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.451 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.451 [XNIO-1 task-1] WkUiKc3wTHSm2Xr7vZ8B3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.453 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.454 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.456 [XNIO-1 task-2] OToCUPJKSOig5X5LfIYtvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=5JieTjjBQtG5dBAHt3tacA +18:00:46.460 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c2362683 +18:00:46.465 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.465 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.466 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.466 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4O9PevKFev5vJfXnVZcM-VIEsKAKItf52NJFlThz-P0", "4O9PevKFev5vJfXnVZcM-VIEsKAKItf52NJFlThz-P0", code_challenge) +18:00:46.466 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.466 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:196d5033-e003-454d-8df8-3d085087d93b +18:00:46.466 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.467 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.467 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.469 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.470 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.470 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.470 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.470 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:46.470 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.471 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.471 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.471 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.471 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.476 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.476 [XNIO-1 task-1] N2baEf_VSsiOLB-zmJDGfQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.480 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.481 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.483 [XNIO-1 task-2] DRPiHVJmTS-D5RBZ005grQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HDoklPYoSh-s5MsR72dSqw +18:00:46.496 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3beb7361-e732-44ce-90ab-9c5123bf2e51 +18:00:46.521 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3beb7361-e732-44ce-90ab-9c5123bf2e51 +18:00:46.547 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3beb7361-e732-44ce-90ab-9c5123bf2e51 +18:00:46.557 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.557 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.557 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.557 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG com.networknt.schema.TypeValidator debug - validate( "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", client_id) +18:00:46.558 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.558 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.558 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.558 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.558 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.568 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.569 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.569 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.569 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", "f277df85-5c39-4ffc-966e-5de7f2cfd5ce", client_id) +18:00:46.570 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.570 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.570 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.570 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.570 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.571 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.571 [XNIO-1 task-2] iqnGaLlbSKOtBXPB3ovmag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.578 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.578 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.578 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.579 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG com.networknt.schema.TypeValidator debug - validate( "fJtLSQJY9tpy1npSPGdGi5NEL8wrNxzrj39VQz3-mA4", "fJtLSQJY9tpy1npSPGdGi5NEL8wrNxzrj39VQz3-mA4", code_challenge) +18:00:46.579 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.579 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.579 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.579 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.580 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.580 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.582 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.582 [XNIO-1 task-1] 6_oq8MyiTcSouiP9vMEGnQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.588 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.588 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.589 [XNIO-1 task-2] uVSF3Y4-SNmltvtUYILvpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XqEWglxvTeaJkqmmAKFRiQ +18:00:46.593 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.594 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.594 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.594 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.594 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.595 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.595 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.595 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.596 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.597 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.597 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.597 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "rjz9evcDRJZA0Fnuv3LM5RhmB16C-8d9pS644hGlYTY", "rjz9evcDRJZA0Fnuv3LM5RhmB16C-8d9pS644hGlYTY", code_challenge) +18:00:46.597 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.597 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.597 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.598 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.598 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.598 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.610 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.610 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.610 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.610 [XNIO-1 task-1] IAwFWxvXRyORoK1eDz43UQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.627 [XNIO-1 task-2] opEPUClETxSKhLxQJ1PtPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cNV6V-oIQ6yN-d-dA0iHeQ +18:00:46.634 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.635 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.635 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.636 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.636 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.637 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.637 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.639 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.673 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.673 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.674 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.674 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.674 [XNIO-1 task-2] KZB-OhSVS5--yB_XMHCzXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.675 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG com.networknt.schema.TypeValidator debug - validate( "3I9CZtFDXUyFYqihBZIJ98mqwmxPAdu4gJrE4YxYW80", "3I9CZtFDXUyFYqihBZIJ98mqwmxPAdu4gJrE4YxYW80", code_challenge) +18:00:46.676 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.676 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.676 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.676 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.676 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.676 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.696 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.696 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.700 [XNIO-1 task-1] P3ts8nlRSTqyV1R78d3Z_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZftnrbeLQOij9YYBwgzyUw +18:00:46.705 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d0a43c70 +18:00:46.750 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.751 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.751 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.751 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.751 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.752 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.752 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.752 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.758 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d0a43c70 +18:00:46.783 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.784 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.786 [XNIO-1 task-1] 7f61Z_1MSieQLmRyB58TFw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3hBF7DWET0eULtGJsxeD_A +18:00:46.800 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +Jun 28, 2024 6:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:46.801 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.801 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.801 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "sRT6ZVMYF3NNpAQvN66JT30QXf8NjGtW1xD44X1U60c", "sRT6ZVMYF3NNpAQvN66JT30QXf8NjGtW1xD44X1U60c", code_challenge) +18:00:46.801 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:46.801 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.801 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.802 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.802 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.802 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.813 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.813 [XNIO-1 task-1] AhsTaKdPQlC_ALRMj4RGoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.818 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.818 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.818 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.819 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:46.819 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.819 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.819 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.819 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.819 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.826 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:46.826 [XNIO-1 task-1] iwatk2EYQYmzn9miBeO8Vw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:46.835 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:46.861 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.861 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:46.861 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:46.862 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:46.862 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:46.862 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:46.862 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:46.862 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:46.862 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:46.867 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:50582e54-6c37-4439-9fb6-7bb2628b0954 +18:00:46.873 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.873 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.877 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d0a43c70 +18:00:46.900 [XNIO-1 task-1] yAf6pAuPQTeQRr8xfaoDQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cLWp53KxRGidcjFpjg4_mg +18:00:46.903 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.903 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.906 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.906 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.907 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.907 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.907 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.907 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.916 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.916 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.918 [XNIO-1 task-1] 1z1uF-QdQY2VfOoEE53E2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YYf9QahhSSe92ks9vbdoBw +18:00:46.954 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.954 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.954 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.955 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.955 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.955 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.955 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.955 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.967 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.967 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.969 [XNIO-1 task-1] e4bAzXVnRuydnkpU3OPgJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2bNelQSJSZKQ3JxKgIDHlw +18:00:46.978 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.978 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.979 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:46.979 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "abaf122e-5c54-433b-8886-9a4d63bf256d", "abaf122e-5c54-433b-8886-9a4d63bf256d", client_id) +18:00:46.979 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:46.979 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:46.979 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:46.979 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:46.980 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:46.994 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:46.995 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:46.996 [XNIO-1 task-1] PB-WK5-WSiW7Qj7UtG8JxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Bg-JD5nQRKupLnmqKqX3eQ +18:00:47.003 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.003 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.003 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.004 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG com.networknt.schema.TypeValidator debug - validate( "abaf122e-5c54-433b-8886-9a4d63bf256d", "abaf122e-5c54-433b-8886-9a4d63bf256d", client_id) +18:00:47.004 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.004 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.004 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.004 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.004 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.004 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.005 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.005 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.005 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:47.005 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.005 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.005 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.005 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.006 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.012 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.012 [XNIO-1 task-2] yoBHdBIiTNG5Cy0r1kVS6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.014 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.014 [XNIO-1 task-1] GlqvyiMwRiKGlOgdtJ2RdA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.042 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.043 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.043 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.043 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "sDx7xSXB0VL-h_nyhetVoBWw0yZD3Y_moZf9_F7eKDc", "sDx7xSXB0VL-h_nyhetVoBWw0yZD3Y_moZf9_F7eKDc", code_challenge) +18:00:47.043 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.044 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.044 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.044 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.044 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.044 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.051 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.052 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.054 [XNIO-1 task-1] 1_BeQks9TH6aa4JvY8H0EQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=i-hUKJTXSJmrLvHht-3_5Q +18:00:47.056 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.056 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.056 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.056 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.057 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.057 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.057 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.057 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.062 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.063 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.063 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.063 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG com.networknt.schema.TypeValidator debug - validate( "4fM4juG88Qq0SO4dcTd9qJ2BShqeqblBUyFtrJiUkEM", "4fM4juG88Qq0SO4dcTd9qJ2BShqeqblBUyFtrJiUkEM", code_challenge) +18:00:47.063 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.064 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.064 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.064 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.064 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.064 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.086 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.086 [XNIO-1 task-1] d9AZbcyFQ0u1gX0dp5eRqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.086 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.086 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.094 [XNIO-1 task-2] 8gFGD-UfRxikVnEvhfmWBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nxLzYOcDSly4-RKbmKv-9Q +18:00:47.100 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.100 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.100 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.100 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:47.100 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.101 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.101 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.101 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.101 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.118 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.118 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.120 [XNIO-1 task-2] HupK99oLTe-m_wdjWNI_dQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aSdfMv1LQM-1Ntwlhpd1Sw +18:00:47.125 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.125 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.125 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.126 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:47.126 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.126 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.128 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.128 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.129 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.136 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.136 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.138 [XNIO-1 task-2] 9GsC4VksQxumIjL0JN0aYg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nZo6iYkuTPioxEINrUzpig +18:00:47.143 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.143 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.143 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.143 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:47.144 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.144 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.144 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.144 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.144 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.151 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.151 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.151 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.152 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG com.networknt.schema.TypeValidator debug - validate( "abaf122e-5c54-433b-8886-9a4d63bf256d", "abaf122e-5c54-433b-8886-9a4d63bf256d", client_id) +18:00:47.152 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.152 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.152 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.152 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.152 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.157 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.157 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.158 [XNIO-1 task-2] jluLmPlZRWihSljpxRkpzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sRl7LQU1QCWy65Dg70ZcbQ +18:00:47.159 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.159 [XNIO-1 task-1] BfhmMD99RM6RqCpsqvBkFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.168 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.169 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.169 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.169 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG com.networknt.schema.TypeValidator debug - validate( "abaf122e-5c54-433b-8886-9a4d63bf256d", "abaf122e-5c54-433b-8886-9a4d63bf256d", client_id) +18:00:47.169 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.170 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.170 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.170 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.170 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.180 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.180 [XNIO-1 task-1] uZY-0M2gQ8K1ijzuA1JHYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.188 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.188 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.188 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.189 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG com.networknt.schema.TypeValidator debug - validate( "4sK1lNv_lBcdTy-WWJ1p7KXBFJ9IojNcYQUj4vvkBaQ", "4sK1lNv_lBcdTy-WWJ1p7KXBFJ9IojNcYQUj4vvkBaQ", code_challenge) +18:00:47.189 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.189 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.189 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.189 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.189 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.189 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.194 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.194 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.195 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.195 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.195 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.195 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.195 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.196 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.198 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.198 [XNIO-1 task-1] KP0tiIcaS7-GsKpvW_CUCg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.200 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d29d5af2-c1f2-4300-b1e3-77c4cdc886c5 +18:00:47.202 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d29d5af2-c1f2-4300-b1e3-77c4cdc886c5 +18:00:47.203 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.204 [XNIO-1 task-2] jbY9NYWQRvyF4yB57TVR3g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.205 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.205 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.205 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.206 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "SOcwNDE-VQSxrCPprwFyz65KMgawMOVxyC0y_ZKpODg", "SOcwNDE-VQSxrCPprwFyz65KMgawMOVxyC0y_ZKpODg", code_challenge) +18:00:47.207 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:47.207 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.207 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.208 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.208 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.208 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.212 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.212 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.212 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.213 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:47.213 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.213 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.214 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.214 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.214 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.217 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.217 [XNIO-1 task-1] S6uSai49RvadA9XetGVj1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.221 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.221 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.225 [XNIO-1 task-2] R7XaUs9DRhe1F1KqsZyxsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1ywqyVeeT42LPIwCXhUmtQ +18:00:47.258 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.258 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.258 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.258 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:47.259 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.259 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.259 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.259 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.265 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.277 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.277 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.282 [XNIO-1 task-2] ahK9g0NZQ5C0vBdhWDUWAA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eAzdv6t7T76ZYyMESZAxfg +18:00:47.287 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.287 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.288 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.288 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG com.networknt.schema.TypeValidator debug - validate( "5ac17726-6afe-4db0-a435-3c130f92623f", "5ac17726-6afe-4db0-a435-3c130f92623f", client_id) +18:00:47.288 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.289 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.289 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.289 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.289 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.290 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.290 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.290 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.291 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b8b6e0fb-820b-44a8-b1e3-c9051361f686", "b8b6e0fb-820b-44a8-b1e3-c9051361f686", client_id) +18:00:47.291 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.291 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.291 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.291 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.291 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.298 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.298 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.303 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.303 [XNIO-1 task-1] iIp3dUKaSt24eOUOy1AJrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.306 [XNIO-1 task-2] OcnzV4IbShGALE8d44ZNBA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ptT19GboQ6i-3uXcxP6zFg +18:00:47.313 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.313 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.313 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.314 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG com.networknt.schema.TypeValidator debug - validate( "wI1kyO1zF78_3Y2hXwPK__LnzAHDrmD7X6rx_0rx8Q8", "wI1kyO1zF78_3Y2hXwPK__LnzAHDrmD7X6rx_0rx8Q8", code_challenge) +18:00:47.314 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.314 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.314 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.315 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.315 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.315 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.316 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bb24a9f2 +18:00:47.326 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.326 [XNIO-1 task-2] 2DbopYqgR-CNw0u-3ZIxiw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.341 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:bb24a9f2 +18:00:47.385 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.385 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.385 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.386 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG com.networknt.schema.TypeValidator debug - validate( "fd5bbfea-d82d-459d-bed5-4e41830ca55f", "fd5bbfea-d82d-459d-bed5-4e41830ca55f", client_id) +18:00:47.386 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.386 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.386 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.386 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.388 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.410 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.410 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.413 [XNIO-1 task-2] vqBCzWnwQ_2_qJQl0mcHJw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-IPCz4nRQm2jiwHOgen6lA +18:00:47.422 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.422 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.422 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.422 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.422 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.423 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.423 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.423 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.437 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.437 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.441 [XNIO-1 task-2] AZmDfbizScW7t_RI1cyKCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TT81eK4wSASmKiGGveTP5A +18:00:47.446 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.446 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.446 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.446 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG com.networknt.schema.TypeValidator debug - validate( "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", "ab5fa0e0-a766-4466-a8c4-0c0ab8ce88fc", client_id) +18:00:47.446 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.447 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.447 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.447 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.448 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.450 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.450 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.450 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.450 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a9fadb5-142d-43fa-90e5-e7eb306f1c57", "7a9fadb5-142d-43fa-90e5-e7eb306f1c57", client_id) +18:00:47.451 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.451 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.451 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.451 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.452 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c2362683 +18:00:47.455 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.455 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.457 [XNIO-1 task-2] rRNwc8RCQ0qKn1BWbg6TPg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fie6VDVjRm--gaIKAynBgA +18:00:47.465 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.465 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.465 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.465 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8a531db-0ef5-4ea4-addd-3cc82604f61b", "a8a531db-0ef5-4ea4-addd-3cc82604f61b", client_id) +18:00:47.466 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.466 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.466 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.466 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.466 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.466 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.469 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.475 [XNIO-1 task-1] 9CkybumKSmqFyazNZGHHwQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mbQbKfQIQBOPJnIVaqwY9A +18:00:47.480 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.480 [XNIO-1 task-2] 4_sn5IX3RGiwV0qriiHMCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.502 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.502 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.502 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.503 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG com.networknt.schema.TypeValidator debug - validate( "d29d5af2-c1f2-4300-b1e3-77c4cdc886c5", "d29d5af2-c1f2-4300-b1e3-77c4cdc886c5", client_id) +18:00:47.503 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.503 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.503 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.503 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.504 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.516 [XNIO-1 task-2] WejRp1qTRTSoQYCJporHwA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.516 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3a2e10f1-fac7-46b5-acfc-6e3f99003bb8 +18:00:47.517 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3a2e10f1-fac7-46b5-acfc-6e3f99003bb8 +18:00:47.529 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.530 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.530 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ec20b306-6658-4445-8389-7cd35733839c +18:00:47.530 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.530 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.531 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.531 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.531 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.531 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ec20b306-6658-4445-8389-7cd35733839c +18:00:47.532 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.543 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3a2e10f1-fac7-46b5-acfc-6e3f99003bb8 +18:00:47.546 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.546 [XNIO-1 task-2] DjwbMKBKQduV4r5EswtssA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.555 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.555 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.555 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.555 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93f377f9-b91d-4100-86f5-cb1d04acc93d", "93f377f9-b91d-4100-86f5-cb1d04acc93d", client_id) +18:00:47.556 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.556 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.556 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.556 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.556 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.566 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.566 [XNIO-1 task-2] 2l0Tm-DfQ2-hMtqohYpPFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.575 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.575 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.576 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.576 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "wTCQkdrxsOb0TLTrlrZLsupqFJKaS-ET1686yL95KYs", "wTCQkdrxsOb0TLTrlrZLsupqFJKaS-ET1686yL95KYs", code_challenge) +18:00:47.576 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.576 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.576 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.577 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.577 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.577 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.578 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.578 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.578 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.579 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.579 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.579 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.579 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.583 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.585 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.585 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.586 [XNIO-1 task-2] S_MYuP8OSG2oyp4KAyoDzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sGhEPUhLSseYaKoT4Cwjcw +18:00:47.591 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.591 [XNIO-1 task-1] DDnGtT3eTbKZASbP48xpnw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.598 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.600 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.600 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.600 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG com.networknt.schema.TypeValidator debug - validate( "6daed7a0-a34c-4ab0-9802-e138e1984e96", "6daed7a0-a34c-4ab0-9802-e138e1984e96", client_id) +18:00:47.601 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.601 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.601 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.601 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.602 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.609 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.609 [XNIO-1 task-1] sIlnC4CiTYuoh9jWppwgmg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.610 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.610 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.611 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.612 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.613 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG com.networknt.schema.TypeValidator debug - validate( "6192e6df-a0e5-4420-84f6-9b57a9045ef4", "6192e6df-a0e5-4420-84f6-9b57a9045ef4", client_id) +18:00:47.613 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.613 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.613 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.613 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.613 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.615 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.615 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.615 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.616 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG com.networknt.schema.TypeValidator debug - validate( "6daed7a0-a34c-4ab0-9802-e138e1984e96", "6daed7a0-a34c-4ab0-9802-e138e1984e96", client_id) +18:00:47.616 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.616 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.616 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.616 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.616 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.620 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.621 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.624 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.624 [XNIO-1 task-1] 1FtdVQHpTcCMrhTXHmT4yg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.626 [XNIO-1 task-2] nCuUOhbKTPKAbpjYRmmQiw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YtJO8dTyS8SxXP8obZZrbA +18:00:47.631 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.631 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.632 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.632 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Z8LqBg_HoQznvsH-VhXK7QNatdhU8vosmWEaCLW-alE", "Z8LqBg_HoQznvsH-VhXK7QNatdhU8vosmWEaCLW-alE", code_challenge) +18:00:47.633 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.633 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.633 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.633 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.634 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.634 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.649 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.649 [XNIO-1 task-1] 9OS5_XObQnuxSwLQ_zKH5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.672 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.672 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.673 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.673 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG com.networknt.schema.TypeValidator debug - validate( "6daed7a0-a34c-4ab0-9802-e138e1984e96", "6daed7a0-a34c-4ab0-9802-e138e1984e96", client_id) +18:00:47.674 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.674 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.675 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.675 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.675 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.683 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.683 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.684 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.684 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.684 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.685 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:47.685 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.685 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.685 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.685 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.685 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.686 [XNIO-1 task-1] Lsr7e7cRRz68PYasqOHpXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LExpH8AVSniu9EeRRNT0XA +18:00:47.691 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.691 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.692 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.692 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.692 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.692 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.692 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.693 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.694 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.694 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.695 [XNIO-1 task-2] d1DnSTG7RKOdZoEQXVdkRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LCRvgbghRTC6-lEacCHgMg +18:00:47.702 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.702 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.702 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.703 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG com.networknt.schema.TypeValidator debug - validate( "nsvs7ILggoQAofPUKQ2ytQ3dEaj3sFxnwps3uuAah4k", "nsvs7ILggoQAofPUKQ2ytQ3dEaj3sFxnwps3uuAah4k", code_challenge) +18:00:47.703 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.703 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.703 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.704 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.704 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.704 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.705 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.708 [XNIO-1 task-1] 6xXjwMSxRy2uLsffWRepWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Bf41ZDz3Q2GrHYquXAtcOA +18:00:47.711 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.712 [XNIO-1 task-2] 0JLYZnekSxWfSiff6yIt8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.716 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.716 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.717 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.718 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec20b306-6658-4445-8389-7cd35733839c", "ec20b306-6658-4445-8389-7cd35733839c", client_id) +18:00:47.718 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.718 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.719 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.719 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.719 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.722 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.722 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.722 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.723 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:47.723 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.723 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.723 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.723 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.723 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.729 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.729 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.730 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.730 [XNIO-1 task-2] pK3iT-r7SECl0CeHK-Tadw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.731 [XNIO-1 task-1] JJaKFosERc-R37G19CoEYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nJJ8YoVVSXeei85yezJ17g +18:00:47.735 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.735 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.735 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.735 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG com.networknt.schema.TypeValidator debug - validate( "9082c788-f943-4aee-8586-76110a480868", "9082c788-f943-4aee-8586-76110a480868", client_id) +18:00:47.736 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.736 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.737 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.737 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.737 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.739 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.739 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.739 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.739 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG com.networknt.schema.TypeValidator debug - validate( "06ce6bc9-9d53-486a-a50e-960a4d168f0d", "06ce6bc9-9d53-486a-a50e-960a4d168f0d", client_id) +18:00:47.740 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.740 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.740 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.740 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.740 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.746 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.747 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.752 [XNIO-1 task-2] vuoL9CQ6Tp-Dyag7cRBXMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cp9aInfOTNWdoxk6zHIAZQ +18:00:47.757 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.758 [XNIO-1 task-1] kmp-SCC1RhCwuFg6dwYbFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.783 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.784 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.785 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.785 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9082c788-f943-4aee-8586-76110a480868", "9082c788-f943-4aee-8586-76110a480868", client_id) +18:00:47.785 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.785 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.786 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.786 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.787 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.796 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.796 [XNIO-1 task-1] xWqdB_fUQh-V66NiQhhN7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.801 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.801 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.801 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.801 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG com.networknt.schema.TypeValidator debug - validate( "d29d5af2-c1f2-4300-b1e3-77c4cdc886c5", "d29d5af2-c1f2-4300-b1e3-77c4cdc886c5", client_id) +18:00:47.802 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.802 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.802 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.802 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.802 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.813 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.813 [XNIO-1 task-1] RpjuRQOUTSi8TZWidzwR6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.827 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.827 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.828 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.828 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "osYG3xkqlpAnC-H1Fn67c-rhsFKCe1XSUcC47fL0jqE", "osYG3xkqlpAnC-H1Fn67c-rhsFKCe1XSUcC47fL0jqE", code_challenge) +18:00:47.828 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.828 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.828 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.828 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.829 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.829 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.835 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.835 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.835 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.836 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.836 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.837 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.837 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.837 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.842 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.843 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.846 [XNIO-1 task-1] szOA8f-eS4Kp6b1gWU06Fg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SuxjLapwRWWJqWmyJfndxA +18:00:47.848 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.848 [XNIO-1 task-2] EiqwRMcYTtauXjriinMV2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.856 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.856 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.857 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.857 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "zgg2PhJ4ceKl8HzkjRZbfrVbwVSgq-xGcpObvCqUsKo", "zgg2PhJ4ceKl8HzkjRZbfrVbwVSgq-xGcpObvCqUsKo", code_challenge) +18:00:47.857 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.857 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.858 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.858 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.858 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.858 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.859 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.859 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.859 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.859 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.859 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.859 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.859 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.860 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.867 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.868 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.870 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.870 [XNIO-1 task-2] ZJP1tBfwRTG6419XabmMKQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.871 [XNIO-1 task-1] sdqW3aTZQfCtkGwYVeqAGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gKRy2vFkTe-LamvsFIrvFQ +18:00:47.874 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.874 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.875 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.875 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG com.networknt.schema.TypeValidator debug - validate( "4de552fb-a4a5-45ad-9c11-fc421f288a97", "4de552fb-a4a5-45ad-9c11-fc421f288a97", client_id) +18:00:47.876 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.876 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.876 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.876 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.876 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.879 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.880 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.880 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.880 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "a8a531db-0ef5-4ea4-addd-3cc82604f61b", "a8a531db-0ef5-4ea4-addd-3cc82604f61b", client_id) +18:00:47.880 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.881 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.881 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.881 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.881 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.884 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.885 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.886 [XNIO-1 task-2] Q7z8lvWrQ-S_LlHtptU-5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vS6Fk3ACRxG0BPLBFMsA8Q +18:00:47.891 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.891 [XNIO-1 task-1] FQI2IIA7Q5WcpIE3w4X8Vg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.930 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.930 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.930 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.931 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG com.networknt.schema.TypeValidator debug - validate( "CtZZkkAC23yiXFVBgqpa9uBvGZ-afckjkpOjHMut4DI", "CtZZkkAC23yiXFVBgqpa9uBvGZ-afckjkpOjHMut4DI", code_challenge) +18:00:47.931 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.931 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.931 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.931 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.932 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.932 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.934 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.934 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.935 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.935 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.936 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.936 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.936 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.936 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:47.944 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.944 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.942 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.945 [XNIO-1 task-1] 42o9OcZnR-SmXhLBcOHoeg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.947 [XNIO-1 task-2] x_RhMz6_RTyp-M6Xrh81tg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mJ6dGWJ6RQ2izBSzTc78Zw +18:00:47.957 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.957 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:47.957 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:47.957 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG com.networknt.schema.TypeValidator debug - validate( "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", "7dba570c-8bfc-420a-8bcf-5f00a3923eb6", client_id) +18:00:47.958 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.958 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.958 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.958 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.958 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.960 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.960 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.961 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c571df82 +18:00:47.962 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG com.networknt.schema.TypeValidator debug - validate( "lE8YJ30VWB-8woH_QW1G0fchMshPlYQQhWVASTACjK0", "lE8YJ30VWB-8woH_QW1G0fchMshPlYQQhWVASTACjK0", code_challenge) +18:00:47.962 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:47.962 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:47.962 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:47.962 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:47.962 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:47.962 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:47.966 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c571df82 +18:00:47.968 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:47.968 [XNIO-1 task-1] XxzttvW4QzuR5ADrvsFQew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:47.974 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:47.974 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:47.980 [XNIO-1 task-2] 3_t5APTiS7KvDSRsRaqqkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=o3lCagIgRGqE4R4a-1qruA +18:00:47.997 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.997 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.997 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:47.997 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:47.998 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:47.998 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:47.998 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:47.998 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:48.011 [XNIO-1 task-2] D1dpiFUsRFuh8nfNKWOV2Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:48.012 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.012 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.012 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:48.012 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.013 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG com.networknt.schema.TypeValidator debug - validate( "5mL1emkdorX_gia_Q1pPNdlalRZksAZapni8ahDNvfU", "5mL1emkdorX_gia_Q1pPNdlalRZksAZapni8ahDNvfU", code_challenge) +18:00:48.013 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:48.013 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:48.013 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:48.014 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:48.015 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:48.015 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:48.026 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:48.026 [XNIO-1 task-1] VY0gMA_nR8a91URzI_glEw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:48.030 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.030 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:48.030 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.030 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd9ee7b2-c209-46be-b93a-d159af0b0922", "dd9ee7b2-c209-46be-b93a-d159af0b0922", client_id) +18:00:48.031 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:48.031 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:48.031 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:48.031 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:48.031 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:48.033 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:34e931a1-f98a-4f3f-9a43-40722930bdfc +18:00:48.038 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:34e931a1-f98a-4f3f-9a43-40722930bdfc +18:00:48.039 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:48.039 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:48.040 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.040 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.040 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.040 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG com.networknt.schema.TypeValidator debug - validate( "a8a531db-0ef5-4ea4-addd-3cc82604f61b", "a8a531db-0ef5-4ea4-addd-3cc82604f61b", client_id) +18:00:48.040 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:48.041 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:48.041 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:48.041 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:48.041 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:48.042 [XNIO-1 task-2] G4t8PxNHQqWchLuXC-eZuA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TRWq_teZRcyy3LCfPY19pw +18:00:48.050 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.050 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.050 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.051 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:48.051 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:48.051 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:48.051 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:48.051 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:48.061 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:48.061 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:48.065 [XNIO-1 task-1] ZO66Hr3CQduH7ViARIAdRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4i9YW5GQRxGa7cB6SNoPSA +18:00:48.067 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:48.067 [XNIO-1 task-2] jsLeifO3Rc2fKQ2hFBs61A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:48.071 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.072 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:48.072 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.073 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG com.networknt.schema.TypeValidator debug - validate( "iBGSFwCkGoV4QtmYGKLvf518QQWqImrTS49JICaDXmU", "iBGSFwCkGoV4QtmYGKLvf518QQWqImrTS49JICaDXmU", code_challenge) +18:00:48.075 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:48.076 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:48.076 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:48.076 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:48.076 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:48.076 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:48.080 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.080 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.080 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.081 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:48.081 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:48.081 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:48.082 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:48.082 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:48.087 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:48.087 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:48.088 [XNIO-1 task-1] uIz5DzAKR7uWuSEAPcLsaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vxViN5QDQmO0DEihznYKeg +18:00:48.111 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:48.111 [XNIO-1 task-2] NzvPmAEASS6Ip2BWa1_oqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:48.128 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.128 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:48.128 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.129 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "RocGN1Yo1A7UBYzVXjw7nOr1miQVGWp_2ktaZVSyywI", "RocGN1Yo1A7UBYzVXjw7nOr1miQVGWp_2ktaZVSyywI", code_challenge) +18:00:48.129 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:48.129 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:48.129 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:48.129 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:48.129 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:48.130 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:48.137 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:48.137 [XNIO-1 task-2] vjTqQH9JQXuozD21Uem4bQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:48.168 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.169 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:48.170 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.170 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG com.networknt.schema.TypeValidator debug - validate( "kmNGfm4OzJSpNWjzPup4GHwpezkWUMs-NvJIDv-wQ54", "kmNGfm4OzJSpNWjzPup4GHwpezkWUMs-NvJIDv-wQ54", code_challenge) +18:00:48.170 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:48.170 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:48.170 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:48.171 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:48.171 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:48.171 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:48.178 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e8e1978e-9768-4bd7-afc2-00c5bf0e3de2 +18:00:48.182 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +18:00:48.182 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +18:00:48.184 [XNIO-1 task-2] v5FNuabcQz6zM56Hjq2fUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BD55AusUTvCH_4JSo3RfVw +18:00:48.192 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.193 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.193 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.193 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG com.networknt.schema.TypeValidator debug - validate( "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", "651b3be2-94ad-43d8-9e9e-3a8b81826b1a", client_id) +18:00:48.193 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:48.193 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:48.194 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:48.194 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:48.194 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:48.199 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e8e1978e-9768-4bd7-afc2-00c5bf0e3de2 +18:00:48.204 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:48.204 [XNIO-1 task-2] M939uOdEQJqJOK0_2l0cmg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:48.210 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.211 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +18:00:48.211 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +18:00:48.211 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG com.networknt.schema.TypeValidator debug - validate( "dV5z6fV6F6PeYi0qr6VE9nufIGVQZpiWuT9GA2MkmLU", "dV5z6fV6F6PeYi0qr6VE9nufIGVQZpiWuT9GA2MkmLU", code_challenge) +18:00:48.212 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +18:00:48.212 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +18:00:48.213 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +18:00:48.214 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +18:00:48.214 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +18:00:48.214 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +18:00:48.244 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:48.246 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:48.251 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.251 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.251 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.251 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +18:00:48.252 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +18:00:48.252 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +18:00:48.252 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@1b306c09 for /oauth2/code +18:00:48.252 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +18:00:48.257 [XNIO-1 task-2] OxVKRT29RK-TgO21MkkGZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w_BNlof2R4WQiSNgkY3MKA +18:00:48.261 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@1da6e51f for /oauth2/code +18:00:48.261 [XNIO-1 task-1] Wbh7QVTZSGqSLaulqlDfWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +18:00:48.261 [XNIO-1 task-2] sxiKLnyASx6I4FkyKIQZvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +18:00:48.261 [XNIO-1 task-2] sxiKLnyASx6I4FkyKIQZvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code diff --git a/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-key-1.log b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..f1de52f --- /dev/null +++ b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-key-1.log @@ -0,0 +1,356 @@ + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:42.517 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:feafce7d + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +18:00:42.537 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fdd40c27-c63c-43b4-a450-25b0f897ee4f +18:00:42.587 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cd618a0 +18:00:42.601 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:feafce7d +18:00:42.742 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cd618a0 +18:00:42.942 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +Jun 28, 2024 6:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:42.984 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1844b181 +18:00:42.986 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1844b181 +18:00:43.017 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4cd618a0 +18:00:43.038 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4cd618a0 +18:00:43.045 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a94e25f5 +18:00:43.163 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a0e7da42-8226-4df5-9ea1-d029fb4b13f9 +18:00:43.323 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:428b566c +18:00:43.324 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:428b566c +18:00:43.419 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4988442f-9825-4963-a0a5-259546db9dcf +18:00:43.420 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4988442f-9825-4963-a0a5-259546db9dcf +18:00:43.531 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7adf34ec-139e-496d-b7c8-45c17e6bda8a +18:00:43.549 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7adf34ec-139e-496d-b7c8-45c17e6bda8a +18:00:43.635 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:428b566c +18:00:43.787 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a94e25f5 +18:00:43.806 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f2b57b97 +18:00:43.811 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f3dafd79 +18:00:43.815 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f3dafd79 +18:00:43.819 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a94e25f5 +18:00:44.073 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7dba570c-8bfc-420a-8bcf-5f00a3923eb6 +18:00:44.077 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f3dafd79 +18:00:44.121 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:428b566c +18:00:44.138 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:428b566c +18:00:44.151 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a94e25f5 +18:00:44.162 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:428b566c +18:00:44.222 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:44.376 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:428b566c +Jun 28, 2024 6:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:44.399 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a0e7da42-8226-4df5-9ea1-d029fb4b13f9 +18:00:44.407 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + ... 14 more + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:44.425 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4dd47481-548a-4df7-b45b-17571efd5064 + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:44.452 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9fa61bbb-debd-4538-89e9-283570f2271d +18:00:44.506 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:803f8aaa-97c8-4c00-89a6-e51878c7f33c +18:00:44.507 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:803f8aaa-97c8-4c00-89a6-e51878c7f33c +18:00:44.588 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f2b57b97 +18:00:44.702 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:245b303b +18:00:44.709 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:245b303b +18:00:44.730 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cc2ec14f-46f3-4082-8f25-98e34faf9d25 +18:00:44.852 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:28246658 +18:00:44.855 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:28246658 +18:00:44.907 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:245b303b +18:00:44.963 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:245b303b +18:00:45.060 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f0ed2836-cec0-44bd-9476-d6ee974fe40a +18:00:45.079 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f0ed2836-cec0-44bd-9476-d6ee974fe40a +18:00:45.101 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7f719d84 +18:00:45.136 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:805a4cfd +18:00:45.138 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:805a4cfd +18:00:45.141 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1361aa6f +18:00:45.162 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1361aa6f +18:00:45.222 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1361aa6f +18:00:45.232 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93f377f9-b91d-4100-86f5-cb1d04acc93d +Jun 28, 2024 6:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +18:00:45.307 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:245b303b +18:00:45.428 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:28246658 +18:00:45.508 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7f719d84 +18:00:45.556 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:805a4cfd +18:00:45.584 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:805a4cfd +18:00:45.639 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4e25be5b-1e92-4c3c-a6cf-2d432e8b484e +18:00:45.643 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a4ccd9f6-1fba-4305-9f3b-9e4b633331d2 +18:00:45.657 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7dba570c-8bfc-420a-8bcf-5f00a3923eb6 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Jun 28, 2024 6:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:45.681 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1361aa6f +18:00:45.698 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:805a4cfd +18:00:45.786 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ee250e27 +18:00:45.805 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a4ccd9f6-1fba-4305-9f3b-9e4b633331d2 +18:00:45.868 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:805a4cfd +18:00:45.890 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ee250e27 +18:00:45.916 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ff29e1c7 +18:00:45.925 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5ce46b46-e488-48e8-ab2d-a12e89df416b +18:00:45.926 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5ce46b46-e488-48e8-ab2d-a12e89df416b +18:00:45.971 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7eba2046-1d13-4f0c-8715-a35619af30fe +18:00:45.975 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4f715f57-f652-49bc-bca5-804db393d081 +18:00:46.031 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a54115e8-4f99-42ca-9a34-bd1a941e7c8c +18:00:46.037 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a54115e8-4f99-42ca-9a34-bd1a941e7c8c +18:00:46.039 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:34456e39 +18:00:46.132 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29fae9f5 +18:00:46.136 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29fae9f5 +18:00:46.243 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:34456e39 +18:00:46.285 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:805a4cfd +18:00:46.305 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ff29e1c7 +18:00:46.461 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ff29e1c7 +18:00:46.564 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ff29e1c7 +18:00:46.586 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:018316b8 +18:00:46.589 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:018316b8 +18:00:46.633 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a8a531db-0ef5-4ea4-addd-3cc82604f61b +18:00:46.651 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:434b18f1-e1dd-4e47-a478-74291f6e4d8d +18:00:46.651 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:434b18f1-e1dd-4e47-a478-74291f6e4d8d +18:00:46.730 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d1acaceb-6876-41ae-a621-efb31d31b9af +18:00:46.735 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d1acaceb-6876-41ae-a621-efb31d31b9af +18:00:46.814 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:018316b8 +18:00:46.827 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29fae9f5 +18:00:46.901 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d1acaceb-6876-41ae-a621-efb31d31b9af +18:00:46.909 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0df3c303 +18:00:46.939 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:12fdced8-c7c4-4a47-bd3b-b7585217e885 +18:00:46.963 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:29fae9f5 +18:00:46.981 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:018316b8 +18:00:47.054 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35905b05 +18:00:47.058 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35905b05 +18:00:47.113 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:018316b8 +18:00:47.174 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35905b05 +18:00:47.181 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8b94b9e3-a03d-42d3-bbc8-1c5b3dad9724 +18:00:47.228 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:018316b8 +18:00:47.251 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dd9ee7b2-c209-46be-b93a-d159af0b0922 +18:00:47.253 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:018316b8 +18:00:47.254 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dd9ee7b2-c209-46be-b93a-d159af0b0922 +18:00:47.281 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a28ca63 +18:00:47.316 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8b94b9e3-a03d-42d3-bbc8-1c5b3dad9724 +18:00:47.339 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a28ca63 +18:00:47.353 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ceaedf3b-7d87-4d3e-bc8a-02bba654fb01 +18:00:47.377 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f28da851-473a-49a3-ac63-1b5c0b14653b +18:00:47.379 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f28da851-473a-49a3-ac63-1b5c0b14653b +18:00:47.554 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:04a4b934-71dd-43a0-8768-f3d2b584ce95 +18:00:47.556 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:04a4b934-71dd-43a0-8768-f3d2b584ce95 +18:00:47.558 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0d6f2620 +18:00:47.643 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a28ca63 +18:00:47.661 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:04a4b934-71dd-43a0-8768-f3d2b584ce95 +18:00:47.677 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bafffd2a-394c-47ac-a909-1cb2c81aca52 +18:00:47.679 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bafffd2a-394c-47ac-a909-1cb2c81aca52 +18:00:47.707 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:35905b05 +18:00:47.731 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:220e64fc-22fa-498a-af9f-0bbabd4e47aa +18:00:47.744 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:220e64fc-22fa-498a-af9f-0bbabd4e47aa +18:00:47.745 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0d6f2620 +18:00:47.770 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d3d5026d-03c4-4c4d-a71e-cbecaafa0d1f +18:00:47.855 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ed787000-9bac-4821-9be9-856a753e7b31 +18:00:47.859 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ed787000-9bac-4821-9be9-856a753e7b31 +18:00:47.890 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35905b05 +18:00:47.968 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) diff --git a/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..9819693 --- /dev/null +++ b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,4015 @@ + ... 14 more + +18:00:42.339 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d35c58de +18:00:42.426 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d35c58de +18:00:42.454 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3f2a1acb-084b-4811-b295-665e1a37463b +18:00:42.474 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93918b0a-406f-4732-9071-3123fc8c8218 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:42.619 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:56eaaf7f +18:00:42.662 [XNIO-1 task-1] xWUfersCRO-rjWW2Fe8ePQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868, base path is set to: null +18:00:42.662 [XNIO-1 task-1] xWUfersCRO-rjWW2Fe8ePQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:42.662 [XNIO-1 task-1] xWUfersCRO-rjWW2Fe8ePQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:42.664 [XNIO-1 task-1] xWUfersCRO-rjWW2Fe8ePQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868, base path is set to: null +18:00:42.666 [XNIO-1 task-1] xWUfersCRO-rjWW2Fe8ePQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48852b63-e925-45bd-8697-28f075bf8868", "48852b63-e925-45bd-8697-28f075bf8868", refreshToken) +18:00:42.684 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868, base path is set to: null +18:00:42.684 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:42.684 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:42.684 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868, base path is set to: null +18:00:42.685 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48852b63-e925-45bd-8697-28f075bf8868", "48852b63-e925-45bd-8697-28f075bf8868", refreshToken) +18:00:42.689 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ INFO com.networknt.config.Config loadJsonMapConfigWithSpecificConfigLoader - Trying to load status with extension yaml, yml or json by using default loading method. +18:00:42.690 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ INFO com.networknt.config.Config getConfigStream - Trying to load config from classpath directory for file status.yml +18:00:42.708 [XNIO-1 task-1] gltRDJuKT-2uF7GjSlH8OQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48852b63-e925-45bd-8697-28f075bf8868 is not found.","severity":"ERROR"} +18:00:42.715 [XNIO-1 task-1] zU34S6pPSAiv7LS3T6hhAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868 +18:00:42.715 [XNIO-1 task-1] zU34S6pPSAiv7LS3T6hhAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:42.715 [XNIO-1 task-1] zU34S6pPSAiv7LS3T6hhAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:42.715 [XNIO-1 task-1] zU34S6pPSAiv7LS3T6hhAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868 +18:00:42.718 [XNIO-1 task-1] zU34S6pPSAiv7LS3T6hhAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 48852b63-e925-45bd-8697-28f075bf8868 +18:00:42.724 [XNIO-1 task-1] jnjGzYk_Sf-b-PVT8RA3Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:42.724 [XNIO-1 task-1] jnjGzYk_Sf-b-PVT8RA3Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:42.726 [XNIO-1 task-1] jnjGzYk_Sf-b-PVT8RA3Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:42.727 [XNIO-1 task-1] jnjGzYk_Sf-b-PVT8RA3Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.727 [XNIO-1 task-1] jnjGzYk_Sf-b-PVT8RA3Eg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:42.766 [XNIO-1 task-1] yDtJajUZSDysTLzvmOFkBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:42.766 [XNIO-1 task-1] yDtJajUZSDysTLzvmOFkBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:42.767 [XNIO-1 task-1] yDtJajUZSDysTLzvmOFkBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:42.778 [XNIO-1 task-1] yDtJajUZSDysTLzvmOFkBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.794 [XNIO-1 task-1] L2YfTjWUQ8WRZ_rnkuNxIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868, base path is set to: null +18:00:42.795 [XNIO-1 task-1] L2YfTjWUQ8WRZ_rnkuNxIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:42.795 [XNIO-1 task-1] L2YfTjWUQ8WRZ_rnkuNxIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:42.796 [XNIO-1 task-1] L2YfTjWUQ8WRZ_rnkuNxIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48852b63-e925-45bd-8697-28f075bf8868, base path is set to: null +18:00:42.796 [XNIO-1 task-1] L2YfTjWUQ8WRZ_rnkuNxIw DEBUG com.networknt.schema.TypeValidator debug - validate( "48852b63-e925-45bd-8697-28f075bf8868", "48852b63-e925-45bd-8697-28f075bf8868", refreshToken) +18:00:42.805 [XNIO-1 task-1] L2YfTjWUQ8WRZ_rnkuNxIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48852b63-e925-45bd-8697-28f075bf8868 is not found.","severity":"ERROR"} +18:00:42.815 [XNIO-1 task-1] W-69HPcYS4OL3r--nf-jDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:42.820 [XNIO-1 task-1] W-69HPcYS4OL3r--nf-jDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:42.824 [XNIO-1 task-1] W-69HPcYS4OL3r--nf-jDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:42.826 [XNIO-1 task-1] W-69HPcYS4OL3r--nf-jDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.869 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93918b0a-406f-4732-9071-3123fc8c8218 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +Jun 28, 2024 6:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +Jun 28, 2024 6:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:42.932 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:56eaaf7f + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:42.941 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3b29ea6b-7a4d-436f-bfc3-6867f3071f98 +18:00:42.944 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3b29ea6b-7a4d-436f-bfc3-6867f3071f98 +18:00:42.976 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d4c92166 +18:00:42.992 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2221b73e-54dc-4c85-8a53-07527055604f +18:00:43.036 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93918b0a-406f-4732-9071-3123fc8c8218 +18:00:43.039 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:43.051 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d4c92166 +18:00:43.155 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d4c92166 +18:00:43.170 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d4c92166 +18:00:43.188 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a17379a5 +18:00:43.195 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:819d4002 +18:00:43.202 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:819d4002 +18:00:43.236 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:819d4002 +18:00:43.292 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9f78601a-1c98-4f68-a720-90430defdf99 +18:00:43.295 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:819d4002 +18:00:43.326 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:819d4002 +18:00:43.384 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8c599317-702c-49da-935b-66145530873f +18:00:43.413 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8c599317-702c-49da-935b-66145530873f +18:00:43.611 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a17379a5 +18:00:43.624 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b883c5a3-f64a-48e1-a073-8a7a41ba4098 +18:00:43.863 [XNIO-1 task-1] y6CNSOdgTbi4GZ4puGXmUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b303847b-cf37-4313-802c-648aec6dfbed, base path is set to: null +18:00:43.863 [XNIO-1 task-1] y6CNSOdgTbi4GZ4puGXmUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:43.863 [XNIO-1 task-1] y6CNSOdgTbi4GZ4puGXmUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:43.863 [XNIO-1 task-1] y6CNSOdgTbi4GZ4puGXmUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b303847b-cf37-4313-802c-648aec6dfbed, base path is set to: null +18:00:43.864 [XNIO-1 task-1] y6CNSOdgTbi4GZ4puGXmUw DEBUG com.networknt.schema.TypeValidator debug - validate( "b303847b-cf37-4313-802c-648aec6dfbed", "b303847b-cf37-4313-802c-648aec6dfbed", refreshToken) +18:00:43.870 [XNIO-1 task-1] y6CNSOdgTbi4GZ4puGXmUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b303847b-cf37-4313-802c-648aec6dfbed is not found.","severity":"ERROR"} +18:00:43.884 [XNIO-1 task-1] jWIR96FkS0Sp9vUWoN1eYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:43.884 [XNIO-1 task-1] jWIR96FkS0Sp9vUWoN1eYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:43.884 [XNIO-1 task-1] jWIR96FkS0Sp9vUWoN1eYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:43.885 [XNIO-1 task-1] jWIR96FkS0Sp9vUWoN1eYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.898 [XNIO-1 task-1] WZIxIa1PTJi5TaKPp31XZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:43.899 [XNIO-1 task-1] WZIxIa1PTJi5TaKPp31XZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:43.899 [XNIO-1 task-1] WZIxIa1PTJi5TaKPp31XZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:43.899 [XNIO-1 task-1] WZIxIa1PTJi5TaKPp31XZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:43.901 [XNIO-1 task-1] WZIxIa1PTJi5TaKPp31XZA DEBUG com.networknt.schema.TypeValidator debug - validate( "26762992-b9f4-4092-8d22-48d71bf7c301", "26762992-b9f4-4092-8d22-48d71bf7c301", refreshToken) +18:00:43.911 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a17379a5 +18:00:43.916 [XNIO-1 task-1] F0CbsRmVQXux9BH-Yl8gMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.916 [XNIO-1 task-1] F0CbsRmVQXux9BH-Yl8gMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:43.916 [XNIO-1 task-1] F0CbsRmVQXux9BH-Yl8gMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:43.916 [XNIO-1 task-1] F0CbsRmVQXux9BH-Yl8gMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.917 [XNIO-1 task-1] F0CbsRmVQXux9BH-Yl8gMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.930 [XNIO-1 task-1] bf0qgcEUTHqohJupUpuCow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:43.930 [XNIO-1 task-1] bf0qgcEUTHqohJupUpuCow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:43.930 [XNIO-1 task-1] bf0qgcEUTHqohJupUpuCow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:43.931 [XNIO-1 task-1] bf0qgcEUTHqohJupUpuCow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.931 [XNIO-1 task-1] bf0qgcEUTHqohJupUpuCow DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:43.945 [XNIO-1 task-1] _QtVZSwzT4eO_ESrLgsyfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.945 [XNIO-1 task-1] _QtVZSwzT4eO_ESrLgsyfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:43.945 [XNIO-1 task-1] _QtVZSwzT4eO_ESrLgsyfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:43.945 [XNIO-1 task-1] _QtVZSwzT4eO_ESrLgsyfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +Jun 28, 2024 6:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +18:00:43.946 [XNIO-1 task-1] _QtVZSwzT4eO_ESrLgsyfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.951 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93918b0a-406f-4732-9071-3123fc8c8218 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +18:00:43.956 [XNIO-1 task-1] TRoKP5pJSq-7RZS-jMsLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:43.956 [XNIO-1 task-1] TRoKP5pJSq-7RZS-jMsLNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:43.956 [XNIO-1 task-1] TRoKP5pJSq-7RZS-jMsLNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:43.956 [XNIO-1 task-1] TRoKP5pJSq-7RZS-jMsLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:43.957 [XNIO-1 task-1] TRoKP5pJSq-7RZS-jMsLNA DEBUG com.networknt.schema.TypeValidator debug - validate( "26762992-b9f4-4092-8d22-48d71bf7c301", "26762992-b9f4-4092-8d22-48d71bf7c301", refreshToken) +18:00:43.957 [XNIO-1 task-1] TRoKP5pJSq-7RZS-jMsLNA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 26762992-b9f4-4092-8d22-48d71bf7c301 is not found.","severity":"ERROR"} +18:00:43.964 [XNIO-1 task-1] xcw8SkIPTWiI3S7WAsVDOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:43.964 [XNIO-1 task-1] xcw8SkIPTWiI3S7WAsVDOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:43.964 [XNIO-1 task-1] xcw8SkIPTWiI3S7WAsVDOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:43.964 [XNIO-1 task-1] xcw8SkIPTWiI3S7WAsVDOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:43.964 [XNIO-1 task-1] xcw8SkIPTWiI3S7WAsVDOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token + +18:00:43.965 [XNIO-1 task-1] xcw8SkIPTWiI3S7WAsVDOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.966 [XNIO-1 task-1] xcw8SkIPTWiI3S7WAsVDOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:44.014 [XNIO-1 task-1] TnU6Tv5XQDSoGFTrLCvXZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.015 [XNIO-1 task-1] TnU6Tv5XQDSoGFTrLCvXZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.015 [XNIO-1 task-1] TnU6Tv5XQDSoGFTrLCvXZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:44.015 [XNIO-1 task-1] TnU6Tv5XQDSoGFTrLCvXZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.016 [XNIO-1 task-1] TnU6Tv5XQDSoGFTrLCvXZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.023 [XNIO-1 task-1] T_F9_cNvSfCGBk6msawciQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:44.024 [XNIO-1 task-1] T_F9_cNvSfCGBk6msawciQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:44.024 [XNIO-1 task-1] T_F9_cNvSfCGBk6msawciQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:44.024 [XNIO-1 task-1] T_F9_cNvSfCGBk6msawciQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:44.026 [XNIO-1 task-1] T_F9_cNvSfCGBk6msawciQ DEBUG com.networknt.schema.TypeValidator debug - validate( "26762992-b9f4-4092-8d22-48d71bf7c301", "26762992-b9f4-4092-8d22-48d71bf7c301", refreshToken) +18:00:44.028 [XNIO-1 task-1] T_F9_cNvSfCGBk6msawciQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 26762992-b9f4-4092-8d22-48d71bf7c301 is not found.","severity":"ERROR"} +18:00:44.038 [XNIO-1 task-1] FObLHvhdQqqonTi7DeRVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.038 [XNIO-1 task-1] FObLHvhdQqqonTi7DeRVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.038 [XNIO-1 task-1] FObLHvhdQqqonTi7DeRVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:44.038 [XNIO-1 task-1] FObLHvhdQqqonTi7DeRVhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.039 [XNIO-1 task-1] FObLHvhdQqqonTi7DeRVhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.046 [XNIO-1 task-1] gWTO1we2R6aML8OC75EdxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:44.046 [XNIO-1 task-1] gWTO1we2R6aML8OC75EdxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:44.046 [XNIO-1 task-1] gWTO1we2R6aML8OC75EdxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:44.046 [XNIO-1 task-1] gWTO1we2R6aML8OC75EdxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301, base path is set to: null +18:00:44.047 [XNIO-1 task-1] gWTO1we2R6aML8OC75EdxA DEBUG com.networknt.schema.TypeValidator debug - validate( "26762992-b9f4-4092-8d22-48d71bf7c301", "26762992-b9f4-4092-8d22-48d71bf7c301", refreshToken) +18:00:44.047 [XNIO-1 task-1] gWTO1we2R6aML8OC75EdxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 26762992-b9f4-4092-8d22-48d71bf7c301 is not found.","severity":"ERROR"} +18:00:44.053 [XNIO-1 task-1] PLet9uh4Qxap8yD59H3dEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.053 [XNIO-1 task-1] PLet9uh4Qxap8yD59H3dEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.053 [XNIO-1 task-1] PLet9uh4Qxap8yD59H3dEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:44.053 [XNIO-1 task-1] PLet9uh4Qxap8yD59H3dEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.054 [XNIO-1 task-1] PLet9uh4Qxap8yD59H3dEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.065 [XNIO-1 task-1] fT1N1K8CTSevafumab_3ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:44.066 [XNIO-1 task-1] fT1N1K8CTSevafumab_3ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:44.066 [XNIO-1 task-1] fT1N1K8CTSevafumab_3ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:44.068 [XNIO-1 task-1] fT1N1K8CTSevafumab_3ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.068 [XNIO-1 task-1] fT1N1K8CTSevafumab_3ww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:44.080 [XNIO-1 task-1] x63FdRjJSKGK3vZfSYvd_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.080 [XNIO-1 task-1] x63FdRjJSKGK3vZfSYvd_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.080 [XNIO-1 task-1] x63FdRjJSKGK3vZfSYvd_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.081 [XNIO-1 task-1] x63FdRjJSKGK3vZfSYvd_g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.098 [XNIO-1 task-1] rqVig1jiQMCmqIJGcSKzPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:44.098 [XNIO-1 task-1] rqVig1jiQMCmqIJGcSKzPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:44.099 [XNIO-1 task-1] rqVig1jiQMCmqIJGcSKzPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:44.102 [XNIO-1 task-1] rqVig1jiQMCmqIJGcSKzPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.102 [XNIO-1 task-1] rqVig1jiQMCmqIJGcSKzPA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:44.119 [XNIO-1 task-1] Z526En8QQEys-sihR9pfSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.119 [XNIO-1 task-1] Z526En8QQEys-sihR9pfSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.119 [XNIO-1 task-1] Z526En8QQEys-sihR9pfSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:44.120 [XNIO-1 task-1] Z526En8QQEys-sihR9pfSA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.149 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b25b5819 +18:00:44.154 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b25b5819 +18:00:44.218 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b25b5819 +18:00:44.235 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:832b879b +18:00:44.409 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:832b879b +18:00:44.511 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:134183ba-d2f8-496d-86c2-d2436a0753a8 +18:00:44.584 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:35d977c2-d525-4603-93d2-97aac5e1e1b9 +18:00:44.612 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:134183ba-d2f8-496d-86c2-d2436a0753a8 +18:00:44.761 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2b742a98-9d31-4546-88e2-dfbae0af1e1f +18:00:44.763 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:35d977c2-d525-4603-93d2-97aac5e1e1b9 +18:00:44.800 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9664048e-b9c5-447a-ac75-d833f25f609f +18:00:45.245 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a938a7b3-69fb-4e0d-8fab-c6cf461127e0 +18:00:45.266 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a1843b86-322d-437f-a967-22aacc8c1728 +18:00:45.272 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a938a7b3-69fb-4e0d-8fab-c6cf461127e0 +18:00:45.373 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f34aced0-14d7-4e74-9d92-7f8c39238e15 +18:00:45.390 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b52f220c-26ca-4ce2-b9e8-d142e81ec210 +18:00:45.421 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b52f220c-26ca-4ce2-b9e8-d142e81ec210 +18:00:45.501 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6dce957d-cf81-45a3-8379-1c6d63caa67c +18:00:45.670 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07584a75-2303-47cc-bd5f-11e1f1ad076c +18:00:45.671 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07584a75-2303-47cc-bd5f-11e1f1ad076c +18:00:45.785 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:73ea0909-72b5-4d10-bf60-958661a447d2 +18:00:45.819 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2b742a98-9d31-4546-88e2-dfbae0af1e1f +18:00:46.084 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2aa574db-b696-4e3e-923b-4a39918795df +18:00:46.155 [XNIO-1 task-1] uY9AwXWzQh-2VUzmfhVJOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1, base path is set to: null +18:00:46.156 [XNIO-1 task-1] uY9AwXWzQh-2VUzmfhVJOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.156 [XNIO-1 task-1] uY9AwXWzQh-2VUzmfhVJOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.156 [XNIO-1 task-1] uY9AwXWzQh-2VUzmfhVJOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1, base path is set to: null +18:00:46.156 [XNIO-1 task-1] uY9AwXWzQh-2VUzmfhVJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "59432bda-b234-41d2-8684-7e84db4c9ba1", "59432bda-b234-41d2-8684-7e84db4c9ba1", refreshToken) +18:00:46.178 [XNIO-1 task-1] rEGAYr1GSo24Bk5eGOBW9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1, base path is set to: null +18:00:46.178 [XNIO-1 task-1] rEGAYr1GSo24Bk5eGOBW9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.178 [XNIO-1 task-1] rEGAYr1GSo24Bk5eGOBW9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.178 [XNIO-1 task-1] rEGAYr1GSo24Bk5eGOBW9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1, base path is set to: null +18:00:46.179 [XNIO-1 task-1] rEGAYr1GSo24Bk5eGOBW9w DEBUG com.networknt.schema.TypeValidator debug - validate( "59432bda-b234-41d2-8684-7e84db4c9ba1", "59432bda-b234-41d2-8684-7e84db4c9ba1", refreshToken) +18:00:46.238 [XNIO-1 task-1] ksX-49JwQpaKaEpPg_0_QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.238 [XNIO-1 task-1] ksX-49JwQpaKaEpPg_0_QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.239 [XNIO-1 task-1] ksX-49JwQpaKaEpPg_0_QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.239 [XNIO-1 task-1] ksX-49JwQpaKaEpPg_0_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.240 [XNIO-1 task-1] ksX-49JwQpaKaEpPg_0_QQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.249 [XNIO-1 task-1] -UPCw7fURVO1680lFhkEMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.249 [XNIO-1 task-1] -UPCw7fURVO1680lFhkEMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.249 [XNIO-1 task-1] -UPCw7fURVO1680lFhkEMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.249 [XNIO-1 task-1] -UPCw7fURVO1680lFhkEMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.250 [XNIO-1 task-1] -UPCw7fURVO1680lFhkEMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.258 [XNIO-1 task-1] 8KRot_N1QHu6M4Yli2ScKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.258 [XNIO-1 task-1] 8KRot_N1QHu6M4Yli2ScKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.258 [XNIO-1 task-1] 8KRot_N1QHu6M4Yli2ScKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.259 [XNIO-1 task-1] 8KRot_N1QHu6M4Yli2ScKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.259 [XNIO-1 task-1] 8KRot_N1QHu6M4Yli2ScKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.269 [XNIO-1 task-1] 1Hf6QspGReCmJHzXdX3g8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.269 [XNIO-1 task-1] 1Hf6QspGReCmJHzXdX3g8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.269 [XNIO-1 task-1] 1Hf6QspGReCmJHzXdX3g8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.270 [XNIO-1 task-1] 1Hf6QspGReCmJHzXdX3g8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.270 [XNIO-1 task-1] 1Hf6QspGReCmJHzXdX3g8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.274 [XNIO-1 task-1] YgW1bLrVQXur-MS-Gx_rMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.274 [XNIO-1 task-1] YgW1bLrVQXur-MS-Gx_rMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.274 [XNIO-1 task-1] YgW1bLrVQXur-MS-Gx_rMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.275 [XNIO-1 task-1] YgW1bLrVQXur-MS-Gx_rMw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.275 [XNIO-1 task-1] YgW1bLrVQXur-MS-Gx_rMw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.295 [XNIO-1 task-1] q_C5W6qYRLGebliFStkxwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.296 [XNIO-1 task-1] q_C5W6qYRLGebliFStkxwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.296 [XNIO-1 task-1] q_C5W6qYRLGebliFStkxwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.297 [XNIO-1 task-1] q_C5W6qYRLGebliFStkxwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.314 [XNIO-1 task-1] vVsXnTT3Sh-J1NfleSNYNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1, base path is set to: null +18:00:46.314 [XNIO-1 task-1] vVsXnTT3Sh-J1NfleSNYNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.314 [XNIO-1 task-1] vVsXnTT3Sh-J1NfleSNYNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.314 [XNIO-1 task-1] vVsXnTT3Sh-J1NfleSNYNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1, base path is set to: null +18:00:46.315 [XNIO-1 task-1] vVsXnTT3Sh-J1NfleSNYNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "59432bda-b234-41d2-8684-7e84db4c9ba1", "59432bda-b234-41d2-8684-7e84db4c9ba1", refreshToken) +18:00:46.315 [XNIO-1 task-1] vVsXnTT3Sh-J1NfleSNYNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 59432bda-b234-41d2-8684-7e84db4c9ba1 is not found.","severity":"ERROR"} +18:00:46.318 [XNIO-1 task-1] 0pog1qTLTz-w14iWkNrfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.318 [XNIO-1 task-1] 0pog1qTLTz-w14iWkNrfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.318 [XNIO-1 task-1] 0pog1qTLTz-w14iWkNrfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.319 [XNIO-1 task-1] 0pog1qTLTz-w14iWkNrfLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.319 [XNIO-1 task-1] 0pog1qTLTz-w14iWkNrfLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 59432bda-b234-41d2-8684-7e84db4c9ba1 +18:00:46.324 [XNIO-1 task-1] pzFzrk4MRgGhroh4N5Es_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.325 [XNIO-1 task-1] pzFzrk4MRgGhroh4N5Es_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.325 [XNIO-1 task-1] pzFzrk4MRgGhroh4N5Es_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.326 [XNIO-1 task-1] pzFzrk4MRgGhroh4N5Es_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.326 [XNIO-1 task-1] pzFzrk4MRgGhroh4N5Es_A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.329 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.339 [XNIO-1 task-1] VnokN76fQ22iQLByDo4dXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.339 [XNIO-1 task-1] VnokN76fQ22iQLByDo4dXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.340 [XNIO-1 task-1] VnokN76fQ22iQLByDo4dXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.340 [XNIO-1 task-1] VnokN76fQ22iQLByDo4dXg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.347 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aa25b998-aa08-4f98-80c0-d57b43fde5c5 +18:00:46.350 [XNIO-1 task-1] uIzUpg0HTSatu5x9CTFuuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.351 [XNIO-1 task-1] uIzUpg0HTSatu5x9CTFuuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.351 [XNIO-1 task-1] uIzUpg0HTSatu5x9CTFuuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.351 [XNIO-1 task-1] uIzUpg0HTSatu5x9CTFuuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.351 [XNIO-1 task-1] uIzUpg0HTSatu5x9CTFuuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9499723-138c-4741-a7fe-6de134b8dce1", "f9499723-138c-4741-a7fe-6de134b8dce1", refreshToken) +18:00:46.359 [XNIO-1 task-1] PlP_TmvPQCi98YBvECWw4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.359 [XNIO-1 task-1] PlP_TmvPQCi98YBvECWw4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.359 [XNIO-1 task-1] PlP_TmvPQCi98YBvECWw4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.359 [XNIO-1 task-1] PlP_TmvPQCi98YBvECWw4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.360 [XNIO-1 task-1] PlP_TmvPQCi98YBvECWw4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f9499723-138c-4741-a7fe-6de134b8dce1", "f9499723-138c-4741-a7fe-6de134b8dce1", refreshToken) +18:00:46.367 [XNIO-1 task-1] g3Ud1UOGQuSY0V3UFibEtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.368 [XNIO-1 task-1] g3Ud1UOGQuSY0V3UFibEtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.372 [XNIO-1 task-1] g3Ud1UOGQuSY0V3UFibEtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.372 [XNIO-1 task-1] g3Ud1UOGQuSY0V3UFibEtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.373 [XNIO-1 task-1] g3Ud1UOGQuSY0V3UFibEtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.384 [XNIO-1 task-1] He-DYu7QRW2Qz-cVRoBw9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.384 [XNIO-1 task-1] He-DYu7QRW2Qz-cVRoBw9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.384 [XNIO-1 task-1] He-DYu7QRW2Qz-cVRoBw9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.384 [XNIO-1 task-1] He-DYu7QRW2Qz-cVRoBw9A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.389 [XNIO-1 task-1] He-DYu7QRW2Qz-cVRoBw9A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.412 [XNIO-1 task-1] C1Vz0HgiSk-Kmq6Gcmf_8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.412 [XNIO-1 task-1] C1Vz0HgiSk-Kmq6Gcmf_8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.412 [XNIO-1 task-1] C1Vz0HgiSk-Kmq6Gcmf_8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.412 [XNIO-1 task-1] C1Vz0HgiSk-Kmq6Gcmf_8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.413 [XNIO-1 task-1] C1Vz0HgiSk-Kmq6Gcmf_8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.424 [XNIO-1 task-1] EsMpVWzoQG-F7DOFUggR5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.424 [XNIO-1 task-1] EsMpVWzoQG-F7DOFUggR5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.424 [XNIO-1 task-1] EsMpVWzoQG-F7DOFUggR5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.424 [XNIO-1 task-1] EsMpVWzoQG-F7DOFUggR5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.425 [XNIO-1 task-1] EsMpVWzoQG-F7DOFUggR5A DEBUG com.networknt.schema.TypeValidator debug - validate( "f9499723-138c-4741-a7fe-6de134b8dce1", "f9499723-138c-4741-a7fe-6de134b8dce1", refreshToken) +18:00:46.425 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.436 [XNIO-1 task-1] RUBdOzn6Q8-mxAv41GcDgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.437 [XNIO-1 task-1] RUBdOzn6Q8-mxAv41GcDgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.437 [XNIO-1 task-1] RUBdOzn6Q8-mxAv41GcDgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.437 [XNIO-1 task-1] RUBdOzn6Q8-mxAv41GcDgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.438 [XNIO-1 task-1] RUBdOzn6Q8-mxAv41GcDgA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.448 [XNIO-1 task-1] tX1vK07yQteGGLwbt-Fwog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.448 [XNIO-1 task-1] tX1vK07yQteGGLwbt-Fwog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.448 [XNIO-1 task-1] tX1vK07yQteGGLwbt-Fwog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.448 [XNIO-1 task-1] tX1vK07yQteGGLwbt-Fwog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.449 [XNIO-1 task-1] tX1vK07yQteGGLwbt-Fwog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.450 [XNIO-1 task-1] tX1vK07yQteGGLwbt-Fwog ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9499723-138c-4741-a7fe-6de134b8dce1 is not found.","severity":"ERROR"} +18:00:46.458 [XNIO-1 task-1] NuBG3aoxTX2Vo0lhDlAZZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.458 [XNIO-1 task-1] NuBG3aoxTX2Vo0lhDlAZZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.458 [XNIO-1 task-1] NuBG3aoxTX2Vo0lhDlAZZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.458 [XNIO-1 task-1] NuBG3aoxTX2Vo0lhDlAZZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.459 [XNIO-1 task-1] NuBG3aoxTX2Vo0lhDlAZZA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.460 [XNIO-1 task-1] NuBG3aoxTX2Vo0lhDlAZZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9499723-138c-4741-a7fe-6de134b8dce1 is not found.","severity":"ERROR"} +18:00:46.463 [XNIO-1 task-1] -4m6pOOzQ7uQyLwLPoaCDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/196d5033-e003-454d-8df8-3d085087d93b +18:00:46.463 [XNIO-1 task-1] -4m6pOOzQ7uQyLwLPoaCDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.463 [XNIO-1 task-1] -4m6pOOzQ7uQyLwLPoaCDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.463 [XNIO-1 task-1] -4m6pOOzQ7uQyLwLPoaCDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/196d5033-e003-454d-8df8-3d085087d93b +18:00:46.464 [XNIO-1 task-1] -4m6pOOzQ7uQyLwLPoaCDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 196d5033-e003-454d-8df8-3d085087d93b +18:00:46.474 [XNIO-1 task-1] vI1SKuaUSuuf-csab99fFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.475 [XNIO-1 task-1] vI1SKuaUSuuf-csab99fFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.475 [XNIO-1 task-1] vI1SKuaUSuuf-csab99fFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.476 [XNIO-1 task-1] vI1SKuaUSuuf-csab99fFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.487 [XNIO-1 task-1] 54Po4s26Rweaf02gLB8NcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/196d5033-e003-454d-8df8-3d085087d93b, base path is set to: null +18:00:46.487 [XNIO-1 task-1] 54Po4s26Rweaf02gLB8NcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.488 [XNIO-1 task-1] 54Po4s26Rweaf02gLB8NcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.488 [XNIO-1 task-1] 54Po4s26Rweaf02gLB8NcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/196d5033-e003-454d-8df8-3d085087d93b, base path is set to: null +18:00:46.488 [XNIO-1 task-1] 54Po4s26Rweaf02gLB8NcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "196d5033-e003-454d-8df8-3d085087d93b", "196d5033-e003-454d-8df8-3d085087d93b", refreshToken) +18:00:46.491 [XNIO-1 task-1] 54Po4s26Rweaf02gLB8NcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 196d5033-e003-454d-8df8-3d085087d93b is not found.","severity":"ERROR"} +18:00:46.495 [XNIO-1 task-1] zUM2iD2uQ36RSEZrV-9Vtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.495 [XNIO-1 task-1] zUM2iD2uQ36RSEZrV-9Vtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.496 [XNIO-1 task-1] zUM2iD2uQ36RSEZrV-9Vtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.496 [XNIO-1 task-1] zUM2iD2uQ36RSEZrV-9Vtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.513 [XNIO-1 task-1] AuHEkGnfSeOMrvOLJrqHLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.513 [XNIO-1 task-1] AuHEkGnfSeOMrvOLJrqHLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.513 [XNIO-1 task-1] AuHEkGnfSeOMrvOLJrqHLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.513 [XNIO-1 task-1] AuHEkGnfSeOMrvOLJrqHLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1, base path is set to: null +18:00:46.514 [XNIO-1 task-1] AuHEkGnfSeOMrvOLJrqHLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9499723-138c-4741-a7fe-6de134b8dce1", "f9499723-138c-4741-a7fe-6de134b8dce1", refreshToken) +18:00:46.516 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.522 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.524 [XNIO-1 task-1] 7vDarVFJR5K17PH-U8-bWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.524 [XNIO-1 task-1] 7vDarVFJR5K17PH-U8-bWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.524 [XNIO-1 task-1] 7vDarVFJR5K17PH-U8-bWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.525 [XNIO-1 task-1] 7vDarVFJR5K17PH-U8-bWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.525 [XNIO-1 task-1] 7vDarVFJR5K17PH-U8-bWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.527 [XNIO-1 task-1] 7vDarVFJR5K17PH-U8-bWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9499723-138c-4741-a7fe-6de134b8dce1 is not found.","severity":"ERROR"} +18:00:46.532 [XNIO-1 task-1] M4WNMDa-S4CANTDUOTonPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.533 [XNIO-1 task-1] M4WNMDa-S4CANTDUOTonPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.533 [XNIO-1 task-1] M4WNMDa-S4CANTDUOTonPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.533 [XNIO-1 task-1] M4WNMDa-S4CANTDUOTonPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.535 [XNIO-1 task-1] M4WNMDa-S4CANTDUOTonPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9499723-138c-4741-a7fe-6de134b8dce1 +18:00:46.539 [XNIO-1 task-1] M4WNMDa-S4CANTDUOTonPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9499723-138c-4741-a7fe-6de134b8dce1 is not found.","severity":"ERROR"} +18:00:46.543 [XNIO-1 task-1] 5uGm6emTSWGJM0mGj9J6pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3beb7361-e732-44ce-90ab-9c5123bf2e51, base path is set to: null +18:00:46.543 [XNIO-1 task-1] 5uGm6emTSWGJM0mGj9J6pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.544 [XNIO-1 task-1] 5uGm6emTSWGJM0mGj9J6pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.544 [XNIO-1 task-1] 5uGm6emTSWGJM0mGj9J6pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3beb7361-e732-44ce-90ab-9c5123bf2e51, base path is set to: null +18:00:46.545 [XNIO-1 task-1] 5uGm6emTSWGJM0mGj9J6pg DEBUG com.networknt.schema.TypeValidator debug - validate( "3beb7361-e732-44ce-90ab-9c5123bf2e51", "3beb7361-e732-44ce-90ab-9c5123bf2e51", refreshToken) +18:00:46.549 [XNIO-1 task-1] 5uGm6emTSWGJM0mGj9J6pg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3beb7361-e732-44ce-90ab-9c5123bf2e51 is not found.","severity":"ERROR"} +18:00:46.560 [XNIO-1 task-1] n1gUbfIMQm-DRY-gF-Wy2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2, base path is set to: null +18:00:46.562 [XNIO-1 task-1] n1gUbfIMQm-DRY-gF-Wy2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.562 [XNIO-1 task-1] n1gUbfIMQm-DRY-gF-Wy2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.562 [XNIO-1 task-1] n1gUbfIMQm-DRY-gF-Wy2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2, base path is set to: null +18:00:46.563 [XNIO-1 task-1] n1gUbfIMQm-DRY-gF-Wy2w DEBUG com.networknt.schema.TypeValidator debug - validate( "6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2", "6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2", refreshToken) +18:00:46.573 [XNIO-1 task-1] 2WpUmADoQ12uzQS7kHMQ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:46.573 [XNIO-1 task-1] 2WpUmADoQ12uzQS7kHMQ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.573 [XNIO-1 task-1] 2WpUmADoQ12uzQS7kHMQ4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.574 [XNIO-1 task-1] 2WpUmADoQ12uzQS7kHMQ4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:46.574 [XNIO-1 task-1] 2WpUmADoQ12uzQS7kHMQ4A DEBUG com.networknt.schema.TypeValidator debug - validate( "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", refreshToken) +18:00:46.587 [XNIO-1 task-1] 0jYIttZXQ-WoG5mir3ZLFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.588 [XNIO-1 task-1] 0jYIttZXQ-WoG5mir3ZLFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.588 [XNIO-1 task-1] 0jYIttZXQ-WoG5mir3ZLFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.588 [XNIO-1 task-1] 0jYIttZXQ-WoG5mir3ZLFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.589 [XNIO-1 task-1] 0jYIttZXQ-WoG5mir3ZLFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.602 [XNIO-1 task-1] Na_F-MVZQqCzw1QCJe8wQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.602 [XNIO-1 task-1] Na_F-MVZQqCzw1QCJe8wQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.602 [XNIO-1 task-1] Na_F-MVZQqCzw1QCJe8wQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.603 [XNIO-1 task-1] Na_F-MVZQqCzw1QCJe8wQw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.613 [XNIO-1 task-1] G90TGLxWTsSyaADUth2cGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.613 [XNIO-1 task-1] G90TGLxWTsSyaADUth2cGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.613 [XNIO-1 task-1] G90TGLxWTsSyaADUth2cGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.614 [XNIO-1 task-1] G90TGLxWTsSyaADUth2cGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.614 [XNIO-1 task-1] G90TGLxWTsSyaADUth2cGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.635 [XNIO-1 task-1] _NYcUB7nRseeq0MhFVpggA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 +18:00:46.635 [XNIO-1 task-1] _NYcUB7nRseeq0MhFVpggA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.635 [XNIO-1 task-1] _NYcUB7nRseeq0MhFVpggA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.635 [XNIO-1 task-1] _NYcUB7nRseeq0MhFVpggA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 +18:00:46.637 [XNIO-1 task-1] _NYcUB7nRseeq0MhFVpggA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 +18:00:46.660 [XNIO-1 task-1] Zg17sDt4QqWyM8-DFuuatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:46.663 [XNIO-1 task-1] Zg17sDt4QqWyM8-DFuuatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.663 [XNIO-1 task-1] Zg17sDt4QqWyM8-DFuuatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.663 [XNIO-1 task-1] Zg17sDt4QqWyM8-DFuuatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:46.663 [XNIO-1 task-1] Zg17sDt4QqWyM8-DFuuatA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:46.676 [XNIO-1 task-1] 5AfvBKz1Sn-o3PoZvYt7-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.676 [XNIO-1 task-1] 5AfvBKz1Sn-o3PoZvYt7-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.676 [XNIO-1 task-1] 5AfvBKz1Sn-o3PoZvYt7-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.677 [XNIO-1 task-1] 5AfvBKz1Sn-o3PoZvYt7-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.688 [XNIO-1 task-1] 5ZJot9tQSnGXF_eR4hiqgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2, base path is set to: null +18:00:46.689 [XNIO-1 task-1] 5ZJot9tQSnGXF_eR4hiqgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.689 [XNIO-1 task-1] 5ZJot9tQSnGXF_eR4hiqgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.689 [XNIO-1 task-1] 5ZJot9tQSnGXF_eR4hiqgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2, base path is set to: null +18:00:46.690 [XNIO-1 task-1] 5ZJot9tQSnGXF_eR4hiqgw DEBUG com.networknt.schema.TypeValidator debug - validate( "6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2", "6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2", refreshToken) +18:00:46.698 [XNIO-1 task-1] 5ZJot9tQSnGXF_eR4hiqgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 is not found.","severity":"ERROR"} +18:00:46.711 [XNIO-1 task-1] gUkKY0McSN-PjtxG_VxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:46.711 [XNIO-1 task-1] gUkKY0McSN-PjtxG_VxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.711 [XNIO-1 task-1] gUkKY0McSN-PjtxG_VxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.712 [XNIO-1 task-1] gUkKY0McSN-PjtxG_VxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:46.712 [XNIO-1 task-1] gUkKY0McSN-PjtxG_VxPUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:46.724 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4f9e0af9 +18:00:46.725 [XNIO-1 task-1] ozNehZ4tT9GqalfaYB9SKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.725 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4f9e0af9 +18:00:46.726 [XNIO-1 task-1] ozNehZ4tT9GqalfaYB9SKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.728 [XNIO-1 task-1] ozNehZ4tT9GqalfaYB9SKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.734 [XNIO-1 task-1] ozNehZ4tT9GqalfaYB9SKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.736 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:65564652 +18:00:46.744 [XNIO-1 task-1] qupNPnRWQG6LZ_19UXd5xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.744 [XNIO-1 task-1] qupNPnRWQG6LZ_19UXd5xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.744 [XNIO-1 task-1] qupNPnRWQG6LZ_19UXd5xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.745 [XNIO-1 task-1] qupNPnRWQG6LZ_19UXd5xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.746 [XNIO-1 task-1] qupNPnRWQG6LZ_19UXd5xQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.762 [XNIO-1 task-1] cjO5WX9VTWSPsBUZn-YBwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.762 [XNIO-1 task-1] cjO5WX9VTWSPsBUZn-YBwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.762 [XNIO-1 task-1] cjO5WX9VTWSPsBUZn-YBwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.763 [XNIO-1 task-1] cjO5WX9VTWSPsBUZn-YBwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.774 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:65564652 +18:00:46.784 [XNIO-1 task-1] FiqiP0J3TFi2TbuqO9hGrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.784 [XNIO-1 task-1] FiqiP0J3TFi2TbuqO9hGrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.784 [XNIO-1 task-1] FiqiP0J3TFi2TbuqO9hGrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.785 [XNIO-1 task-1] FiqiP0J3TFi2TbuqO9hGrg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.785 [XNIO-1 task-1] FiqiP0J3TFi2TbuqO9hGrg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.797 [XNIO-1 task-1] Y3ttwsN-R5Oyy7pB6vKt7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.797 [XNIO-1 task-1] Y3ttwsN-R5Oyy7pB6vKt7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.798 [XNIO-1 task-1] Y3ttwsN-R5Oyy7pB6vKt7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.806 [XNIO-1 task-1] Y3ttwsN-R5Oyy7pB6vKt7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.818 [XNIO-1 task-1] w90fRSfFRsKradXrrdZ_Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.820 [XNIO-1 task-1] w90fRSfFRsKradXrrdZ_Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.820 [XNIO-1 task-1] w90fRSfFRsKradXrrdZ_Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.821 [XNIO-1 task-1] w90fRSfFRsKradXrrdZ_Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.821 [XNIO-1 task-1] w90fRSfFRsKradXrrdZ_Pg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.845 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c9e67591 +18:00:46.848 [XNIO-1 task-1] 5Qve-w1rT06eeM0nOFEOiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d1acaceb-6876-41ae-a621-efb31d31b9af, base path is set to: null +18:00:46.856 [XNIO-1 task-1] 5Qve-w1rT06eeM0nOFEOiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.862 [XNIO-1 task-1] 5Qve-w1rT06eeM0nOFEOiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.862 [XNIO-1 task-1] 5Qve-w1rT06eeM0nOFEOiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d1acaceb-6876-41ae-a621-efb31d31b9af, base path is set to: null +18:00:46.899 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d79dc847-e09b-4e5a-bbe9-6a27181b7e4c +18:00:46.900 [XNIO-1 task-1] 5Qve-w1rT06eeM0nOFEOiw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d1acaceb-6876-41ae-a621-efb31d31b9af +18:00:46.903 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d79dc847-e09b-4e5a-bbe9-6a27181b7e4c +18:00:46.909 [XNIO-1 task-1] FRQAqlPrRcCMx6FZ0pqu-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.909 [XNIO-1 task-1] FRQAqlPrRcCMx6FZ0pqu-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.909 [XNIO-1 task-1] FRQAqlPrRcCMx6FZ0pqu-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.910 [XNIO-1 task-1] FRQAqlPrRcCMx6FZ0pqu-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.910 [XNIO-1 task-1] FRQAqlPrRcCMx6FZ0pqu-A DEBUG com.networknt.schema.TypeValidator debug - validate( "b259aea0-dadb-42fb-a780-c057fa836564", "b259aea0-dadb-42fb-a780-c057fa836564", refreshToken) +18:00:46.925 [XNIO-1 task-1] AO7Yoym4TuGhehpGVdLCKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.925 [XNIO-1 task-1] AO7Yoym4TuGhehpGVdLCKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.926 [XNIO-1 task-1] AO7Yoym4TuGhehpGVdLCKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.926 [XNIO-1 task-1] AO7Yoym4TuGhehpGVdLCKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.926 [XNIO-1 task-1] AO7Yoym4TuGhehpGVdLCKw DEBUG com.networknt.schema.TypeValidator debug - validate( "b259aea0-dadb-42fb-a780-c057fa836564", "b259aea0-dadb-42fb-a780-c057fa836564", refreshToken) +18:00:46.929 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d79dc847-e09b-4e5a-bbe9-6a27181b7e4c +18:00:46.938 [XNIO-1 task-1] RC3ecUNeSJq5MfAAAOrBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.938 [XNIO-1 task-1] RC3ecUNeSJq5MfAAAOrBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.938 [XNIO-1 task-1] RC3ecUNeSJq5MfAAAOrBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.939 [XNIO-1 task-1] RC3ecUNeSJq5MfAAAOrBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.939 [XNIO-1 task-1] RC3ecUNeSJq5MfAAAOrBWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.950 [XNIO-1 task-1] qYr6_HjvTAif3m66MdrBlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.950 [XNIO-1 task-1] qYr6_HjvTAif3m66MdrBlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.950 [XNIO-1 task-1] qYr6_HjvTAif3m66MdrBlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.951 [XNIO-1 task-1] qYr6_HjvTAif3m66MdrBlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.951 [XNIO-1 task-1] qYr6_HjvTAif3m66MdrBlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b259aea0-dadb-42fb-a780-c057fa836564", "b259aea0-dadb-42fb-a780-c057fa836564", refreshToken) +18:00:46.951 [XNIO-1 task-1] qYr6_HjvTAif3m66MdrBlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b259aea0-dadb-42fb-a780-c057fa836564 is not found.","severity":"ERROR"} +18:00:46.958 [XNIO-1 task-1] iVOjeYq0SASkw8rJ4z1xJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.958 [XNIO-1 task-1] iVOjeYq0SASkw8rJ4z1xJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.958 [XNIO-1 task-1] iVOjeYq0SASkw8rJ4z1xJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:46.958 [XNIO-1 task-1] iVOjeYq0SASkw8rJ4z1xJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.959 [XNIO-1 task-1] iVOjeYq0SASkw8rJ4z1xJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.964 [XNIO-1 task-1] Tfws9DolTbSEUTiBFqIcrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.964 [XNIO-1 task-1] Tfws9DolTbSEUTiBFqIcrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.964 [XNIO-1 task-1] Tfws9DolTbSEUTiBFqIcrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:46.965 [XNIO-1 task-1] Tfws9DolTbSEUTiBFqIcrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.965 [XNIO-1 task-1] Tfws9DolTbSEUTiBFqIcrA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:46.973 [XNIO-1 task-1] 769jkLYtT5C2f1FzrTvPCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.973 [XNIO-1 task-1] 769jkLYtT5C2f1FzrTvPCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.974 [XNIO-1 task-1] 769jkLYtT5C2f1FzrTvPCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:46.975 [XNIO-1 task-1] 769jkLYtT5C2f1FzrTvPCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.984 [XNIO-1 task-1] rtr6CxB2TWKnunYy3HfBcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.985 [XNIO-1 task-1] rtr6CxB2TWKnunYy3HfBcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:46.985 [XNIO-1 task-1] rtr6CxB2TWKnunYy3HfBcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:46.985 [XNIO-1 task-1] rtr6CxB2TWKnunYy3HfBcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:46.986 [XNIO-1 task-1] rtr6CxB2TWKnunYy3HfBcA DEBUG com.networknt.schema.TypeValidator debug - validate( "b259aea0-dadb-42fb-a780-c057fa836564", "b259aea0-dadb-42fb-a780-c057fa836564", refreshToken) +18:00:46.987 [XNIO-1 task-1] rtr6CxB2TWKnunYy3HfBcA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b259aea0-dadb-42fb-a780-c057fa836564 is not found.","severity":"ERROR"} +18:00:47.050 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c9e67591 +18:00:47.054 [XNIO-1 task-1] Qzw3Q9DrTfqbf_lxpm_eeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 +18:00:47.055 [XNIO-1 task-1] Qzw3Q9DrTfqbf_lxpm_eeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.055 [XNIO-1 task-1] Qzw3Q9DrTfqbf_lxpm_eeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.058 [XNIO-1 task-1] Qzw3Q9DrTfqbf_lxpm_eeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 +18:00:47.059 [XNIO-1 task-1] Qzw3Q9DrTfqbf_lxpm_eeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 +18:00:47.068 [XNIO-1 task-1] Ps3Xy-BYQPiakpKtrQGFBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.068 [XNIO-1 task-1] Ps3Xy-BYQPiakpKtrQGFBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.068 [XNIO-1 task-1] Ps3Xy-BYQPiakpKtrQGFBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.069 [XNIO-1 task-1] Ps3Xy-BYQPiakpKtrQGFBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.069 [XNIO-1 task-1] Ps3Xy-BYQPiakpKtrQGFBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.089 [XNIO-1 task-1] vvPXgw5nQMG0mgVabfzXBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.089 [XNIO-1 task-1] vvPXgw5nQMG0mgVabfzXBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.089 [XNIO-1 task-1] vvPXgw5nQMG0mgVabfzXBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.089 [XNIO-1 task-1] vvPXgw5nQMG0mgVabfzXBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.090 [XNIO-1 task-1] vvPXgw5nQMG0mgVabfzXBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.105 [XNIO-1 task-1] HLRnkC_hSk2UCHWEZeWycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.105 [XNIO-1 task-1] HLRnkC_hSk2UCHWEZeWycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.105 [XNIO-1 task-1] HLRnkC_hSk2UCHWEZeWycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.106 [XNIO-1 task-1] HLRnkC_hSk2UCHWEZeWycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.106 [XNIO-1 task-1] HLRnkC_hSk2UCHWEZeWycg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.108 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4f9e0af9 +18:00:47.112 [XNIO-1 task-1] kHm6yIYxTMOGdYNgox-7ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.112 [XNIO-1 task-1] kHm6yIYxTMOGdYNgox-7ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.112 [XNIO-1 task-1] kHm6yIYxTMOGdYNgox-7ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.113 [XNIO-1 task-1] kHm6yIYxTMOGdYNgox-7ow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.113 [XNIO-1 task-1] kHm6yIYxTMOGdYNgox-7ow DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.130 [XNIO-1 task-1] 3rH6S7X4QqWPOtxDI7K9lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.130 [XNIO-1 task-1] 3rH6S7X4QqWPOtxDI7K9lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.130 [XNIO-1 task-1] 3rH6S7X4QqWPOtxDI7K9lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.131 [XNIO-1 task-1] 3rH6S7X4QqWPOtxDI7K9lg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.149 [XNIO-1 task-1] QrtF8JllQtiW3-DaQnpHTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:47.149 [XNIO-1 task-1] QrtF8JllQtiW3-DaQnpHTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.149 [XNIO-1 task-1] QrtF8JllQtiW3-DaQnpHTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.150 [XNIO-1 task-1] QrtF8JllQtiW3-DaQnpHTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:47.150 [XNIO-1 task-1] QrtF8JllQtiW3-DaQnpHTg DEBUG com.networknt.schema.TypeValidator debug - validate( "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", refreshToken) +18:00:47.151 [XNIO-1 task-1] QrtF8JllQtiW3-DaQnpHTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e is not found.","severity":"ERROR"} +18:00:47.156 [XNIO-1 task-1] dLhkNousQrudHzJEQdQVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.156 [XNIO-1 task-1] dLhkNousQrudHzJEQdQVvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.157 [XNIO-1 task-1] dLhkNousQrudHzJEQdQVvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.157 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:05138669 +18:00:47.158 [XNIO-1 task-1] dLhkNousQrudHzJEQdQVvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.158 [XNIO-1 task-1] dLhkNousQrudHzJEQdQVvw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.173 [XNIO-1 task-1] VlWOwkRvTs6opH-KjoZWWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.173 [XNIO-1 task-1] VlWOwkRvTs6opH-KjoZWWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.174 [XNIO-1 task-1] VlWOwkRvTs6opH-KjoZWWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.174 [XNIO-1 task-1] VlWOwkRvTs6opH-KjoZWWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.174 [XNIO-1 task-1] VlWOwkRvTs6opH-KjoZWWg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.175 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:05138669 +18:00:47.181 [XNIO-1 task-1] _hCVgZPYSIatTyHQssjIeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.181 [XNIO-1 task-1] _hCVgZPYSIatTyHQssjIeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.184 [XNIO-1 task-1] _hCVgZPYSIatTyHQssjIeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.185 [XNIO-1 task-1] _hCVgZPYSIatTyHQssjIeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.197 [XNIO-1 task-1] RLKJKvYUQc6yoH2NgeVmGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:47.197 [XNIO-1 task-1] RLKJKvYUQc6yoH2NgeVmGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.197 [XNIO-1 task-1] RLKJKvYUQc6yoH2NgeVmGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.197 [XNIO-1 task-1] RLKJKvYUQc6yoH2NgeVmGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:47.198 [XNIO-1 task-1] RLKJKvYUQc6yoH2NgeVmGw DEBUG com.networknt.schema.TypeValidator debug - validate( "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", refreshToken) +18:00:47.198 [XNIO-1 task-1] RLKJKvYUQc6yoH2NgeVmGw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e is not found.","severity":"ERROR"} +18:00:47.201 [XNIO-1 task-1] JLr4fozvRWqKNqQCxktQ1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.201 [XNIO-1 task-1] JLr4fozvRWqKNqQCxktQ1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.201 [XNIO-1 task-1] JLr4fozvRWqKNqQCxktQ1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.201 [XNIO-1 task-1] JLr4fozvRWqKNqQCxktQ1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.202 [XNIO-1 task-1] JLr4fozvRWqKNqQCxktQ1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.207 [XNIO-1 task-1] y2xGGdkJTRGIavrjddtbqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564 +18:00:47.207 [XNIO-1 task-1] y2xGGdkJTRGIavrjddtbqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.207 [XNIO-1 task-1] y2xGGdkJTRGIavrjddtbqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.207 [XNIO-1 task-1] y2xGGdkJTRGIavrjddtbqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564 +18:00:47.208 [XNIO-1 task-1] y2xGGdkJTRGIavrjddtbqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b259aea0-dadb-42fb-a780-c057fa836564 +18:00:47.218 [XNIO-1 task-1] gYSEQZwqRhyBcRL46UE0GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.218 [XNIO-1 task-1] gYSEQZwqRhyBcRL46UE0GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.218 [XNIO-1 task-1] gYSEQZwqRhyBcRL46UE0GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.220 [XNIO-1 task-1] gYSEQZwqRhyBcRL46UE0GA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.220 [XNIO-1 task-1] gYSEQZwqRhyBcRL46UE0GA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.226 [XNIO-1 task-1] WmrhmY5xRPeckmwSX5_gAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.226 [XNIO-1 task-1] WmrhmY5xRPeckmwSX5_gAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.226 [XNIO-1 task-1] WmrhmY5xRPeckmwSX5_gAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.227 [XNIO-1 task-1] WmrhmY5xRPeckmwSX5_gAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.227 [XNIO-1 task-1] WmrhmY5xRPeckmwSX5_gAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e +18:00:47.234 [XNIO-1 task-1] rCnNu9JoQqGHf8RGYm6HIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.234 [XNIO-1 task-1] rCnNu9JoQqGHf8RGYm6HIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.235 [XNIO-1 task-1] rCnNu9JoQqGHf8RGYm6HIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.235 [XNIO-1 task-1] rCnNu9JoQqGHf8RGYm6HIw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.235 [XNIO-1 task-1] rCnNu9JoQqGHf8RGYm6HIw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.251 [XNIO-1 task-1] 1qvdNZ5MRU-u-esIdVqvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.251 [XNIO-1 task-1] 1qvdNZ5MRU-u-esIdVqvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.251 [XNIO-1 task-1] 1qvdNZ5MRU-u-esIdVqvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.251 [XNIO-1 task-1] 1qvdNZ5MRU-u-esIdVqvYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.252 [XNIO-1 task-1] 1qvdNZ5MRU-u-esIdVqvYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.260 [XNIO-1 task-1] 2QOLquglSRK71x6SqFnTEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9e8cada-50b3-43cb-9290-1d69c4907509 +18:00:47.261 [XNIO-1 task-1] 2QOLquglSRK71x6SqFnTEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.261 [XNIO-1 task-1] 2QOLquglSRK71x6SqFnTEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.261 [XNIO-1 task-1] 2QOLquglSRK71x6SqFnTEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9e8cada-50b3-43cb-9290-1d69c4907509 +18:00:47.262 [XNIO-1 task-1] 2QOLquglSRK71x6SqFnTEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9e8cada-50b3-43cb-9290-1d69c4907509 +18:00:47.277 [XNIO-1 task-1] wuRDbM8HQXKzmNEw8jP2MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.277 [XNIO-1 task-1] wuRDbM8HQXKzmNEw8jP2MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.277 [XNIO-1 task-1] wuRDbM8HQXKzmNEw8jP2MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.278 [XNIO-1 task-1] wuRDbM8HQXKzmNEw8jP2MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.278 [XNIO-1 task-1] wuRDbM8HQXKzmNEw8jP2MQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.284 [XNIO-1 task-1] 5bVeXLyQS1G_SrQ2ifm10w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9e8cada-50b3-43cb-9290-1d69c4907509 +18:00:47.284 [XNIO-1 task-1] 5bVeXLyQS1G_SrQ2ifm10w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.285 [XNIO-1 task-1] 5bVeXLyQS1G_SrQ2ifm10w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.288 [XNIO-1 task-1] 5bVeXLyQS1G_SrQ2ifm10w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9e8cada-50b3-43cb-9290-1d69c4907509 +18:00:47.289 [XNIO-1 task-1] 5bVeXLyQS1G_SrQ2ifm10w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9e8cada-50b3-43cb-9290-1d69c4907509 +18:00:47.297 [XNIO-1 task-1] CmBhsp2gRXq7NOJrPnT84Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:47.302 [XNIO-1 task-1] CmBhsp2gRXq7NOJrPnT84Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.302 [XNIO-1 task-1] CmBhsp2gRXq7NOJrPnT84Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.302 [XNIO-1 task-1] CmBhsp2gRXq7NOJrPnT84Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/323fba00-8fbc-4a1c-b98d-ca1248c2fc8e, base path is set to: null +18:00:47.302 [XNIO-1 task-1] CmBhsp2gRXq7NOJrPnT84Q DEBUG com.networknt.schema.TypeValidator debug - validate( "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", "323fba00-8fbc-4a1c-b98d-ca1248c2fc8e", refreshToken) +18:00:47.303 [XNIO-1 task-1] CmBhsp2gRXq7NOJrPnT84Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 323fba00-8fbc-4a1c-b98d-ca1248c2fc8e is not found.","severity":"ERROR"} +18:00:47.317 [XNIO-1 task-1] VsDafH2fQ96iDTgFZcoJiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.317 [XNIO-1 task-1] VsDafH2fQ96iDTgFZcoJiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.317 [XNIO-1 task-1] VsDafH2fQ96iDTgFZcoJiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.318 [XNIO-1 task-1] VsDafH2fQ96iDTgFZcoJiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.321 [XNIO-1 task-1] VsDafH2fQ96iDTgFZcoJiw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.325 [XNIO-1 task-1] y7kHVwdkQUGBRHsQOSJzgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.325 [XNIO-1 task-1] y7kHVwdkQUGBRHsQOSJzgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.325 [XNIO-1 task-1] y7kHVwdkQUGBRHsQOSJzgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.325 [XNIO-1 task-1] y7kHVwdkQUGBRHsQOSJzgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.326 [XNIO-1 task-1] y7kHVwdkQUGBRHsQOSJzgg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.330 [XNIO-1 task-1] 78gezpS6QCKGDNA1zY6LvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.330 [XNIO-1 task-1] 78gezpS6QCKGDNA1zY6LvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.330 [XNIO-1 task-1] 78gezpS6QCKGDNA1zY6LvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.331 [XNIO-1 task-1] 78gezpS6QCKGDNA1zY6LvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.351 [XNIO-1 task-1] Lp6nzVXpQ5CKZyGY4_SYuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da, base path is set to: null +18:00:47.353 [XNIO-1 task-1] Lp6nzVXpQ5CKZyGY4_SYuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.353 [XNIO-1 task-1] Lp6nzVXpQ5CKZyGY4_SYuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.353 [XNIO-1 task-1] Lp6nzVXpQ5CKZyGY4_SYuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da, base path is set to: null +18:00:47.354 [XNIO-1 task-1] Lp6nzVXpQ5CKZyGY4_SYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ae7d17f-7190-49a2-88c6-ff1dcabae0da", "0ae7d17f-7190-49a2-88c6-ff1dcabae0da", refreshToken) +18:00:47.360 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:65564652 +18:00:47.360 [XNIO-1 task-1] _cA2SQJxTM64pTOMY50HfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.360 [XNIO-1 task-1] _cA2SQJxTM64pTOMY50HfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.360 [XNIO-1 task-1] _cA2SQJxTM64pTOMY50HfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.361 [XNIO-1 task-1] _cA2SQJxTM64pTOMY50HfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.361 [XNIO-1 task-1] _cA2SQJxTM64pTOMY50HfA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0ae7d17f-7190-49a2-88c6-ff1dcabae0da +18:00:47.367 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.381 [XNIO-1 task-1] h2SPJd-FRhKEmm20zjSSww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564, base path is set to: null +18:00:47.382 [XNIO-1 task-1] h2SPJd-FRhKEmm20zjSSww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.382 [XNIO-1 task-1] h2SPJd-FRhKEmm20zjSSww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +18:00:47.382 [XNIO-1 task-1] h2SPJd-FRhKEmm20zjSSww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.382 [XNIO-1 task-1] h2SPJd-FRhKEmm20zjSSww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b259aea0-dadb-42fb-a780-c057fa836564 +18:00:47.385 [XNIO-1 task-1] h2SPJd-FRhKEmm20zjSSww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b259aea0-dadb-42fb-a780-c057fa836564 +18:00:47.392 [XNIO-1 task-1] CEqWhMsIRASlOK9J6ldaXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da, base path is set to: null +18:00:47.392 [XNIO-1 task-1] CEqWhMsIRASlOK9J6ldaXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.392 [XNIO-1 task-1] CEqWhMsIRASlOK9J6ldaXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +18:00:47.392 [XNIO-1 task-1] CEqWhMsIRASlOK9J6ldaXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0ae7d17f-7190-49a2-88c6-ff1dcabae0da, base path is set to: null +18:00:47.392 [XNIO-1 task-1] CEqWhMsIRASlOK9J6ldaXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0ae7d17f-7190-49a2-88c6-ff1dcabae0da", "0ae7d17f-7190-49a2-88c6-ff1dcabae0da", refreshToken) +18:00:47.401 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:93918b0a-406f-4732-9071-3123fc8c8218 +18:00:47.406 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:47.408 [XNIO-1 task-1] T87UVSJYQBeR4_TjJUrHlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.408 [XNIO-1 task-1] T87UVSJYQBeR4_TjJUrHlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.408 [XNIO-1 task-1] T87UVSJYQBeR4_TjJUrHlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.409 [XNIO-1 task-1] T87UVSJYQBeR4_TjJUrHlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.409 [XNIO-1 task-1] T87UVSJYQBeR4_TjJUrHlw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.417 [XNIO-1 task-1] 174KMwA2Qee6kS2Zzm347Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.418 [XNIO-1 task-1] 174KMwA2Qee6kS2Zzm347Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.418 [XNIO-1 task-1] 174KMwA2Qee6kS2Zzm347Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.418 [XNIO-1 task-1] 174KMwA2Qee6kS2Zzm347Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.419 [XNIO-1 task-1] 174KMwA2Qee6kS2Zzm347Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.426 [XNIO-1 task-1] badB3UFtSWOQMkto-_Rskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.426 [XNIO-1 task-1] badB3UFtSWOQMkto-_Rskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.426 [XNIO-1 task-1] badB3UFtSWOQMkto-_Rskw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.427 [XNIO-1 task-1] badB3UFtSWOQMkto-_Rskw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.441 [XNIO-1 task-1] FC3XZJRGSBKVJCBdIBAePw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.449 [XNIO-1 task-1] FC3XZJRGSBKVJCBdIBAePw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.449 [XNIO-1 task-1] FC3XZJRGSBKVJCBdIBAePw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.449 [XNIO-1 task-1] FC3XZJRGSBKVJCBdIBAePw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.449 [XNIO-1 task-1] FC3XZJRGSBKVJCBdIBAePw DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.454 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.461 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:05138669 +18:00:47.474 [XNIO-1 task-1] vBI9QzcPSb6-waXW0CJIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.474 [XNIO-1 task-1] vBI9QzcPSb6-waXW0CJIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.474 [XNIO-1 task-1] vBI9QzcPSb6-waXW0CJIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.475 [XNIO-1 task-1] vBI9QzcPSb6-waXW0CJIlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.487 [XNIO-1 task-1] n0s2kaMZRPOXfRBf3ubdhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.488 [XNIO-1 task-1] n0s2kaMZRPOXfRBf3ubdhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.488 [XNIO-1 task-1] n0s2kaMZRPOXfRBf3ubdhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.488 [XNIO-1 task-1] n0s2kaMZRPOXfRBf3ubdhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.490 [XNIO-1 task-1] n0s2kaMZRPOXfRBf3ubdhA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.500 [XNIO-1 task-1] VciMUq0tT32Ul6dXwkbeew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.500 [XNIO-1 task-1] VciMUq0tT32Ul6dXwkbeew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.500 [XNIO-1 task-1] VciMUq0tT32Ul6dXwkbeew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.501 [XNIO-1 task-1] VciMUq0tT32Ul6dXwkbeew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.501 [XNIO-1 task-1] VciMUq0tT32Ul6dXwkbeew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.503 [XNIO-1 task-1] VciMUq0tT32Ul6dXwkbeew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.511 [XNIO-1 task-1] nHMDmb1aTUSEPUZ2biZ_cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.511 [XNIO-1 task-1] nHMDmb1aTUSEPUZ2biZ_cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.511 [XNIO-1 task-1] nHMDmb1aTUSEPUZ2biZ_cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.511 [XNIO-1 task-1] nHMDmb1aTUSEPUZ2biZ_cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.512 [XNIO-1 task-1] nHMDmb1aTUSEPUZ2biZ_cg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.513 [XNIO-1 task-1] nHMDmb1aTUSEPUZ2biZ_cg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.525 [XNIO-1 task-1] ZZmPYA0HQLmYLtJH2Ia47g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.525 [XNIO-1 task-1] ZZmPYA0HQLmYLtJH2Ia47g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.525 [XNIO-1 task-1] ZZmPYA0HQLmYLtJH2Ia47g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.525 [XNIO-1 task-1] ZZmPYA0HQLmYLtJH2Ia47g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.526 [XNIO-1 task-1] ZZmPYA0HQLmYLtJH2Ia47g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.527 [XNIO-1 task-1] ZZmPYA0HQLmYLtJH2Ia47g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.535 [XNIO-1 task-1] AAPBUiReSHWOfTjFUZaodw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.535 [XNIO-1 task-1] AAPBUiReSHWOfTjFUZaodw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.535 [XNIO-1 task-1] AAPBUiReSHWOfTjFUZaodw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.536 [XNIO-1 task-1] AAPBUiReSHWOfTjFUZaodw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.536 [XNIO-1 task-1] AAPBUiReSHWOfTjFUZaodw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.537 [XNIO-1 task-1] AAPBUiReSHWOfTjFUZaodw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.543 [XNIO-1 task-1] 53Hl7fCtSpm5KKdN1NUg1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.543 [XNIO-1 task-1] 53Hl7fCtSpm5KKdN1NUg1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.543 [XNIO-1 task-1] 53Hl7fCtSpm5KKdN1NUg1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.544 [XNIO-1 task-1] 53Hl7fCtSpm5KKdN1NUg1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.544 [XNIO-1 task-1] 53Hl7fCtSpm5KKdN1NUg1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.547 [XNIO-1 task-1] 53Hl7fCtSpm5KKdN1NUg1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.552 [XNIO-1 task-1] VYGQly72Qg-iB7uRjhZmlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.552 [XNIO-1 task-1] VYGQly72Qg-iB7uRjhZmlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.552 [XNIO-1 task-1] VYGQly72Qg-iB7uRjhZmlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.552 [XNIO-1 task-1] VYGQly72Qg-iB7uRjhZmlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.553 [XNIO-1 task-1] VYGQly72Qg-iB7uRjhZmlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.575 [XNIO-1 task-1] W0QY-WfORIO1HQVFyWTBgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.576 [XNIO-1 task-1] W0QY-WfORIO1HQVFyWTBgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.576 [XNIO-1 task-1] W0QY-WfORIO1HQVFyWTBgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.576 [XNIO-1 task-1] W0QY-WfORIO1HQVFyWTBgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.576 [XNIO-1 task-1] W0QY-WfORIO1HQVFyWTBgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.578 [XNIO-1 task-1] W0QY-WfORIO1HQVFyWTBgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.582 [XNIO-1 task-1] op10_aJ3TT-jgDfLFcB0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.582 [XNIO-1 task-1] op10_aJ3TT-jgDfLFcB0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.582 [XNIO-1 task-1] op10_aJ3TT-jgDfLFcB0cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.583 [XNIO-1 task-1] op10_aJ3TT-jgDfLFcB0cQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.594 [XNIO-1 task-1] 5yMLcpGTQZyc8qimFHAJog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.596 [XNIO-1 task-1] 5yMLcpGTQZyc8qimFHAJog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.596 [XNIO-1 task-1] 5yMLcpGTQZyc8qimFHAJog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.596 [XNIO-1 task-1] 5yMLcpGTQZyc8qimFHAJog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.596 [XNIO-1 task-1] 5yMLcpGTQZyc8qimFHAJog DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.599 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.608 [XNIO-1 task-1] JGCWixPiQK6Xd21UkDqFGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.608 [XNIO-1 task-1] JGCWixPiQK6Xd21UkDqFGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.608 [XNIO-1 task-1] JGCWixPiQK6Xd21UkDqFGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.610 [XNIO-1 task-1] JGCWixPiQK6Xd21UkDqFGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.610 [XNIO-1 task-1] JGCWixPiQK6Xd21UkDqFGw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.625 [XNIO-1 task-1] 6VRsS3N-TtS_tVlSWEYfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.625 [XNIO-1 task-1] 6VRsS3N-TtS_tVlSWEYfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.625 [XNIO-1 task-1] 6VRsS3N-TtS_tVlSWEYfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.625 [XNIO-1 task-1] 6VRsS3N-TtS_tVlSWEYfaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.626 [XNIO-1 task-1] 6VRsS3N-TtS_tVlSWEYfaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.627 [XNIO-1 task-1] 6VRsS3N-TtS_tVlSWEYfaw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.638 [XNIO-1 task-1] W9z93tmGSxue_n9NX7_ekQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.639 [XNIO-1 task-1] W9z93tmGSxue_n9NX7_ekQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.639 [XNIO-1 task-1] W9z93tmGSxue_n9NX7_ekQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.639 [XNIO-1 task-1] W9z93tmGSxue_n9NX7_ekQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.639 [XNIO-1 task-1] W9z93tmGSxue_n9NX7_ekQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.652 [XNIO-1 task-1] xzzqhRqtSbSG6tog7ZmtVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04a4b934-71dd-43a0-8768-f3d2b584ce95, base path is set to: null +18:00:47.652 [XNIO-1 task-1] xzzqhRqtSbSG6tog7ZmtVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.652 [XNIO-1 task-1] xzzqhRqtSbSG6tog7ZmtVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.653 [XNIO-1 task-1] xzzqhRqtSbSG6tog7ZmtVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/04a4b934-71dd-43a0-8768-f3d2b584ce95, base path is set to: null +18:00:47.653 [XNIO-1 task-1] xzzqhRqtSbSG6tog7ZmtVw DEBUG com.networknt.schema.TypeValidator debug - validate( "04a4b934-71dd-43a0-8768-f3d2b584ce95", "04a4b934-71dd-43a0-8768-f3d2b584ce95", refreshToken) +18:00:47.679 [XNIO-1 task-1] 1nfb-VcbQLSF0d_vSWdqXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.681 [XNIO-1 task-1] 1nfb-VcbQLSF0d_vSWdqXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.681 [XNIO-1 task-1] 1nfb-VcbQLSF0d_vSWdqXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.682 [XNIO-1 task-1] 1nfb-VcbQLSF0d_vSWdqXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.685 [XNIO-1 task-1] 1nfb-VcbQLSF0d_vSWdqXg DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.687 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.695 [XNIO-1 task-1] yMYCeSCITGSVFvpwLx0SaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.696 [XNIO-1 task-1] yMYCeSCITGSVFvpwLx0SaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.696 [XNIO-1 task-1] yMYCeSCITGSVFvpwLx0SaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.697 [XNIO-1 task-1] yMYCeSCITGSVFvpwLx0SaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.706 [XNIO-1 task-1] yMYCeSCITGSVFvpwLx0SaA DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.707 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.719 [XNIO-1 task-1] Pg2zodAwR3a9OMs_p3pPmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.719 [XNIO-1 task-1] Pg2zodAwR3a9OMs_p3pPmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.720 [XNIO-1 task-1] Pg2zodAwR3a9OMs_p3pPmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.720 [XNIO-1 task-1] Pg2zodAwR3a9OMs_p3pPmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.720 [XNIO-1 task-1] Pg2zodAwR3a9OMs_p3pPmg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.730 [XNIO-1 task-1] pxztU5muS-CfeTyFMAcYzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.730 [XNIO-1 task-1] pxztU5muS-CfeTyFMAcYzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.730 [XNIO-1 task-1] pxztU5muS-CfeTyFMAcYzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.731 [XNIO-1 task-1] pxztU5muS-CfeTyFMAcYzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.731 [XNIO-1 task-1] pxztU5muS-CfeTyFMAcYzw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.732 [XNIO-1 task-1] pxztU5muS-CfeTyFMAcYzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.737 [XNIO-1 task-1] X_0-bY5tRcmTHYv6gZsikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.737 [XNIO-1 task-1] X_0-bY5tRcmTHYv6gZsikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.737 [XNIO-1 task-1] X_0-bY5tRcmTHYv6gZsikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.737 [XNIO-1 task-1] X_0-bY5tRcmTHYv6gZsikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.738 [XNIO-1 task-1] X_0-bY5tRcmTHYv6gZsikg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.743 [XNIO-1 task-1] X_0-bY5tRcmTHYv6gZsikg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.751 [XNIO-1 task-1] oc1kNegdRcOXSUwtoPC_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.751 [XNIO-1 task-1] oc1kNegdRcOXSUwtoPC_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.751 [XNIO-1 task-1] oc1kNegdRcOXSUwtoPC_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.751 [XNIO-1 task-1] oc1kNegdRcOXSUwtoPC_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.752 [XNIO-1 task-1] oc1kNegdRcOXSUwtoPC_QQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.768 [XNIO-1 task-1] 3BksLCMGTmGrxamSy2PhGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.769 [XNIO-1 task-1] 3BksLCMGTmGrxamSy2PhGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.769 [XNIO-1 task-1] 3BksLCMGTmGrxamSy2PhGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.770 [XNIO-1 task-1] 3BksLCMGTmGrxamSy2PhGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.770 [XNIO-1 task-1] 3BksLCMGTmGrxamSy2PhGw DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.771 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +Jun 28, 2024 6:00:47 PM com.hazelcast.map.impl.operation.DeleteOperation +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:47.780 [XNIO-1 task-1] qIJS4o4MQB6uaDUcMxtMEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:47.781 [XNIO-1 task-1] qIJS4o4MQB6uaDUcMxtMEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +Jun 28, 2024 6:00:47 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +18:00:47.781 [XNIO-1 task-1] qIJS4o4MQB6uaDUcMxtMEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.781 [XNIO-1 task-1] qIJS4o4MQB6uaDUcMxtMEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.781 [XNIO-1 task-1] qIJS4o4MQB6uaDUcMxtMEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.787 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:47.798 [XNIO-1 task-1] -P_JJUOoQySgi_Jri3-MAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.798 [XNIO-1 task-1] -P_JJUOoQySgi_Jri3-MAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.798 [XNIO-1 task-1] -P_JJUOoQySgi_Jri3-MAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.798 [XNIO-1 task-1] -P_JJUOoQySgi_Jri3-MAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.799 [XNIO-1 task-1] -P_JJUOoQySgi_Jri3-MAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.799 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.810 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fabedb76-75d0-46ed-a47e-08ca6ca30c48 +18:00:47.812 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fabedb76-75d0-46ed-a47e-08ca6ca30c48 +18:00:47.812 [XNIO-1 task-1] IHc1YhyQQUaK6Z4mIeYJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.812 [XNIO-1 task-1] IHc1YhyQQUaK6Z4mIeYJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.812 [XNIO-1 task-1] IHc1YhyQQUaK6Z4mIeYJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.812 [XNIO-1 task-1] IHc1YhyQQUaK6Z4mIeYJgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.813 [XNIO-1 task-1] IHc1YhyQQUaK6Z4mIeYJgg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.820 [XNIO-1 task-1] pmblYaDGSNG7tk-pEsiuYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.820 [XNIO-1 task-1] pmblYaDGSNG7tk-pEsiuYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.820 [XNIO-1 task-1] pmblYaDGSNG7tk-pEsiuYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.821 [XNIO-1 task-1] pmblYaDGSNG7tk-pEsiuYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.821 [XNIO-1 task-1] pmblYaDGSNG7tk-pEsiuYw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.831 [XNIO-1 task-1] c0RKPrbmTbCzpTv0xth67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.832 [XNIO-1 task-1] c0RKPrbmTbCzpTv0xth67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.832 [XNIO-1 task-1] c0RKPrbmTbCzpTv0xth67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.832 [XNIO-1 task-1] c0RKPrbmTbCzpTv0xth67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.832 [XNIO-1 task-1] c0RKPrbmTbCzpTv0xth67w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.836 [XNIO-1 task-1] c0RKPrbmTbCzpTv0xth67w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} +18:00:47.842 [XNIO-1 task-1] xvpmNzieRNiwcT5rUqV3Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.842 [XNIO-1 task-1] xvpmNzieRNiwcT5rUqV3Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.842 [XNIO-1 task-1] xvpmNzieRNiwcT5rUqV3Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.843 [XNIO-1 task-1] xvpmNzieRNiwcT5rUqV3Tw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.856 [XNIO-1 task-1] HXvVBtZuQxe7OHZsAAkX_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.856 [XNIO-1 task-1] HXvVBtZuQxe7OHZsAAkX_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.856 [XNIO-1 task-1] HXvVBtZuQxe7OHZsAAkX_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.857 [XNIO-1 task-1] HXvVBtZuQxe7OHZsAAkX_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.857 [XNIO-1 task-1] HXvVBtZuQxe7OHZsAAkX_A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.866 [XNIO-1 task-1] LAdfkvejTmik4ZUlRVfTXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.866 [XNIO-1 task-1] LAdfkvejTmik4ZUlRVfTXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.866 [XNIO-1 task-1] LAdfkvejTmik4ZUlRVfTXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.866 [XNIO-1 task-1] LAdfkvejTmik4ZUlRVfTXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.867 [XNIO-1 task-1] LAdfkvejTmik4ZUlRVfTXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.872 [XNIO-1 task-1] sXNaD-KkTWKGletdN_hVYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:47.872 [XNIO-1 task-1] sXNaD-KkTWKGletdN_hVYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.872 [XNIO-1 task-1] sXNaD-KkTWKGletdN_hVYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.872 [XNIO-1 task-1] sXNaD-KkTWKGletdN_hVYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:47.873 [XNIO-1 task-1] sXNaD-KkTWKGletdN_hVYw DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:47.873 [XNIO-1 task-1] sXNaD-KkTWKGletdN_hVYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:47.879 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d5b8dcda +18:00:47.879 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d5b8dcda +18:00:47.880 [XNIO-1 task-1] UdA1LIB-SNGsv4pY3Hp2KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.880 [XNIO-1 task-1] UdA1LIB-SNGsv4pY3Hp2KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.880 [XNIO-1 task-1] UdA1LIB-SNGsv4pY3Hp2KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:47.880 [XNIO-1 task-1] UdA1LIB-SNGsv4pY3Hp2KA DEBUG com.networknt.schema.TypeValidator debug - validate( "6eea08eb-51a1-4717-9445-db1fc145b439", "6eea08eb-51a1-4717-9445-db1fc145b439", refreshToken) +18:00:47.881 [XNIO-1 task-1] UdA1LIB-SNGsv4pY3Hp2KA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eea08eb-51a1-4717-9445-db1fc145b439 is not found.","severity":"ERROR"} +18:00:47.885 [XNIO-1 task-1] moSOj-ZwTqGX2dmjQ9ag3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.885 [XNIO-1 task-1] moSOj-ZwTqGX2dmjQ9ag3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.885 [XNIO-1 task-1] moSOj-ZwTqGX2dmjQ9ag3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.886 [XNIO-1 task-1] moSOj-ZwTqGX2dmjQ9ag3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.913 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4f1bbaef-08f5-43af-9972-978093cdf4dc +18:00:47.921 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:091e2921-2d4b-4a5d-b805-a7845e0069e6 +18:00:47.922 [XNIO-1 task-1] F6dzOnzgQHupTxhLHoGqTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.922 [XNIO-1 task-1] F6dzOnzgQHupTxhLHoGqTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.923 [XNIO-1 task-1] F6dzOnzgQHupTxhLHoGqTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.923 [XNIO-1 task-1] F6dzOnzgQHupTxhLHoGqTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.923 [XNIO-1 task-1] F6dzOnzgQHupTxhLHoGqTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.939 [XNIO-1 task-1] c0_Ll_0FQzmnnP1XrnL9KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.939 [XNIO-1 task-1] c0_Ll_0FQzmnnP1XrnL9KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.940 [XNIO-1 task-1] c0_Ll_0FQzmnnP1XrnL9KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.940 [XNIO-1 task-1] c0_Ll_0FQzmnnP1XrnL9KQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.952 [XNIO-1 task-1] b7LamP_9TZaze9uFxfJt_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.952 [XNIO-1 task-1] b7LamP_9TZaze9uFxfJt_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.953 [XNIO-1 task-1] b7LamP_9TZaze9uFxfJt_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.953 [XNIO-1 task-1] b7LamP_9TZaze9uFxfJt_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.953 [XNIO-1 task-1] b7LamP_9TZaze9uFxfJt_g DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.954 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.961 [XNIO-1 task-1] lO2phWaoTMOJjT0WBCxpIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.962 [XNIO-1 task-1] lO2phWaoTMOJjT0WBCxpIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.962 [XNIO-1 task-1] lO2phWaoTMOJjT0WBCxpIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.962 [XNIO-1 task-1] lO2phWaoTMOJjT0WBCxpIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.962 [XNIO-1 task-1] lO2phWaoTMOJjT0WBCxpIg DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.963 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.974 [XNIO-1 task-1] o1mSAcwoQsqCVG8ND7OnBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.974 [XNIO-1 task-1] o1mSAcwoQsqCVG8ND7OnBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.975 [XNIO-1 task-1] o1mSAcwoQsqCVG8ND7OnBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:47.975 [XNIO-1 task-1] o1mSAcwoQsqCVG8ND7OnBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:47.975 [XNIO-1 task-1] o1mSAcwoQsqCVG8ND7OnBw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:47.983 [XNIO-1 task-1] wtqae1aWRd-BkPwpVk5mqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.983 [XNIO-1 task-1] wtqae1aWRd-BkPwpVk5mqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.983 [XNIO-1 task-1] wtqae1aWRd-BkPwpVk5mqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.983 [XNIO-1 task-1] wtqae1aWRd-BkPwpVk5mqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:47.990 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:47.990 [XNIO-1 task-1] QICM22fYRu-M54iebw8DHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.990 [XNIO-1 task-1] QICM22fYRu-M54iebw8DHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:47.990 [XNIO-1 task-1] QICM22fYRu-M54iebw8DHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:47.991 [XNIO-1 task-1] QICM22fYRu-M54iebw8DHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.991 [XNIO-1 task-1] QICM22fYRu-M54iebw8DHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:47.994 [XNIO-1 task-1] X6P5kmKgSWmWpGil90kGhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.994 [XNIO-1 task-1] X6P5kmKgSWmWpGil90kGhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:47.994 [XNIO-1 task-1] X6P5kmKgSWmWpGil90kGhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:47.995 [XNIO-1 task-1] X6P5kmKgSWmWpGil90kGhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/85404e0f-d991-4525-891a-91ca53e47c40, base path is set to: null +18:00:47.995 [XNIO-1 task-1] X6P5kmKgSWmWpGil90kGhA DEBUG com.networknt.schema.TypeValidator debug - validate( "85404e0f-d991-4525-891a-91ca53e47c40", "85404e0f-d991-4525-891a-91ca53e47c40", refreshToken) +18:00:47.995 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85404e0f-d991-4525-891a-91ca53e47c40 +18:00:48.000 [XNIO-1 task-1] _CcbQHNDSN2B97G32Dk0rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:48.001 [XNIO-1 task-1] _CcbQHNDSN2B97G32Dk0rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.001 [XNIO-1 task-1] _CcbQHNDSN2B97G32Dk0rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.001 [XNIO-1 task-1] _CcbQHNDSN2B97G32Dk0rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:48.002 [XNIO-1 task-1] _CcbQHNDSN2B97G32Dk0rw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eea08eb-51a1-4717-9445-db1fc145b439", "6eea08eb-51a1-4717-9445-db1fc145b439", refreshToken) +18:00:48.002 [XNIO-1 task-1] _CcbQHNDSN2B97G32Dk0rw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eea08eb-51a1-4717-9445-db1fc145b439 is not found.","severity":"ERROR"} +18:00:48.006 [XNIO-1 task-1] eO41j08jTCaNehFYI4PW-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.006 [XNIO-1 task-1] eO41j08jTCaNehFYI4PW-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.007 [XNIO-1 task-1] eO41j08jTCaNehFYI4PW-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.007 [XNIO-1 task-1] eO41j08jTCaNehFYI4PW-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.016 [XNIO-1 task-1] LGi57a_3TBas-eKp6dvaVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.017 [XNIO-1 task-1] LGi57a_3TBas-eKp6dvaVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.017 [XNIO-1 task-1] LGi57a_3TBas-eKp6dvaVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.017 [XNIO-1 task-1] LGi57a_3TBas-eKp6dvaVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.018 [XNIO-1 task-1] LGi57a_3TBas-eKp6dvaVg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.031 [XNIO-1 task-1] ahWiNaSGRdGB-Q9piNGngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:48.031 [XNIO-1 task-1] ahWiNaSGRdGB-Q9piNGngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.032 [XNIO-1 task-1] ahWiNaSGRdGB-Q9piNGngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.032 [XNIO-1 task-1] ahWiNaSGRdGB-Q9piNGngA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:48.032 [XNIO-1 task-1] ahWiNaSGRdGB-Q9piNGngA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:48.037 [XNIO-1 task-1] sj2iIWNhTVOJhS9-kBuOpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.037 [XNIO-1 task-1] sj2iIWNhTVOJhS9-kBuOpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.037 [XNIO-1 task-1] sj2iIWNhTVOJhS9-kBuOpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.038 [XNIO-1 task-1] sj2iIWNhTVOJhS9-kBuOpA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.039 [XNIO-1 task-1] sj2iIWNhTVOJhS9-kBuOpA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.049 [XNIO-1 task-1] tYYUvlKLS0KuOULzEYAxMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.050 [XNIO-1 task-1] tYYUvlKLS0KuOULzEYAxMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.050 [XNIO-1 task-1] tYYUvlKLS0KuOULzEYAxMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.050 [XNIO-1 task-1] tYYUvlKLS0KuOULzEYAxMA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.059 [XNIO-1 task-1] gh7kDDlxT2CYDkQ2zoZsXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.059 [XNIO-1 task-1] gh7kDDlxT2CYDkQ2zoZsXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.059 [XNIO-1 task-1] gh7kDDlxT2CYDkQ2zoZsXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.060 [XNIO-1 task-1] gh7kDDlxT2CYDkQ2zoZsXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.060 [XNIO-1 task-1] gh7kDDlxT2CYDkQ2zoZsXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.073 [XNIO-1 task-1] IfPPdrw9QPWUOrcI-5KCUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:48.074 [XNIO-1 task-1] IfPPdrw9QPWUOrcI-5KCUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.074 [XNIO-1 task-1] IfPPdrw9QPWUOrcI-5KCUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.074 [XNIO-1 task-1] IfPPdrw9QPWUOrcI-5KCUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:48.074 [XNIO-1 task-1] IfPPdrw9QPWUOrcI-5KCUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eea08eb-51a1-4717-9445-db1fc145b439 +18:00:48.081 [XNIO-1 task-1] YA2awCxkRuGlhQGzlRafOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.082 [XNIO-1 task-1] YA2awCxkRuGlhQGzlRafOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.082 [XNIO-1 task-1] YA2awCxkRuGlhQGzlRafOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.083 [XNIO-1 task-1] YA2awCxkRuGlhQGzlRafOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.083 [XNIO-1 task-1] YA2awCxkRuGlhQGzlRafOw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.110 [XNIO-1 task-1] p-mRrTynSeuebic8-F1MEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.110 [XNIO-1 task-1] p-mRrTynSeuebic8-F1MEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.110 [XNIO-1 task-1] p-mRrTynSeuebic8-F1MEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.110 [XNIO-1 task-1] p-mRrTynSeuebic8-F1MEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.111 [XNIO-1 task-1] p-mRrTynSeuebic8-F1MEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.114 [XNIO-1 task-1] DufLBTL1RA-B4pdzhcqZSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:48.114 [XNIO-1 task-1] DufLBTL1RA-B4pdzhcqZSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.114 [XNIO-1 task-1] DufLBTL1RA-B4pdzhcqZSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.114 [XNIO-1 task-1] DufLBTL1RA-B4pdzhcqZSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:48.115 [XNIO-1 task-1] DufLBTL1RA-B4pdzhcqZSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6eea08eb-51a1-4717-9445-db1fc145b439", "6eea08eb-51a1-4717-9445-db1fc145b439", refreshToken) +18:00:48.115 [XNIO-1 task-1] DufLBTL1RA-B4pdzhcqZSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eea08eb-51a1-4717-9445-db1fc145b439 is not found.","severity":"ERROR"} +18:00:48.120 [XNIO-1 task-1] it_y4GndTQGFKsGbMiXlJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.120 [XNIO-1 task-1] it_y4GndTQGFKsGbMiXlJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.120 [XNIO-1 task-1] it_y4GndTQGFKsGbMiXlJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.121 [XNIO-1 task-1] it_y4GndTQGFKsGbMiXlJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.130 [XNIO-1 task-1] RvTnKqj-QmGSQYTPJSCzpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:48.131 [XNIO-1 task-1] RvTnKqj-QmGSQYTPJSCzpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.132 [XNIO-1 task-1] RvTnKqj-QmGSQYTPJSCzpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.132 [XNIO-1 task-1] RvTnKqj-QmGSQYTPJSCzpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eea08eb-51a1-4717-9445-db1fc145b439, base path is set to: null +18:00:48.132 [XNIO-1 task-1] RvTnKqj-QmGSQYTPJSCzpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6eea08eb-51a1-4717-9445-db1fc145b439", "6eea08eb-51a1-4717-9445-db1fc145b439", refreshToken) +18:00:48.132 [XNIO-1 task-1] RvTnKqj-QmGSQYTPJSCzpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eea08eb-51a1-4717-9445-db1fc145b439 is not found.","severity":"ERROR"} +18:00:48.140 [XNIO-1 task-1] h55h-_OpRgWdD7UDrV-TIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.140 [XNIO-1 task-1] h55h-_OpRgWdD7UDrV-TIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.140 [XNIO-1 task-1] h55h-_OpRgWdD7UDrV-TIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.141 [XNIO-1 task-1] h55h-_OpRgWdD7UDrV-TIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.154 [XNIO-1 task-1] g6In_5QxTtWnf39Y5Itzbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.154 [XNIO-1 task-1] g6In_5QxTtWnf39Y5Itzbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.155 [XNIO-1 task-1] g6In_5QxTtWnf39Y5Itzbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.155 [XNIO-1 task-1] g6In_5QxTtWnf39Y5Itzbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.155 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9afcb147-6e17-471c-b4ea-950fb2798168 +18:00:48.155 [XNIO-1 task-1] g6In_5QxTtWnf39Y5Itzbg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.169 [XNIO-1 task-1] o4ZmUY-ETKmIrVUt7MhzYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/97b9d0c7-4e48-49dd-9e46-93a678c2d093, base path is set to: null +18:00:48.169 [XNIO-1 task-1] o4ZmUY-ETKmIrVUt7MhzYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.169 [XNIO-1 task-1] o4ZmUY-ETKmIrVUt7MhzYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.169 [XNIO-1 task-1] o4ZmUY-ETKmIrVUt7MhzYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/97b9d0c7-4e48-49dd-9e46-93a678c2d093, base path is set to: null +18:00:48.170 [XNIO-1 task-1] o4ZmUY-ETKmIrVUt7MhzYw DEBUG com.networknt.schema.TypeValidator debug - validate( "97b9d0c7-4e48-49dd-9e46-93a678c2d093", "97b9d0c7-4e48-49dd-9e46-93a678c2d093", refreshToken) +18:00:48.177 [XNIO-1 task-1] x3UIkT9mT4616Hf0VbjPcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.179 [XNIO-1 task-1] x3UIkT9mT4616Hf0VbjPcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.179 [XNIO-1 task-1] x3UIkT9mT4616Hf0VbjPcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.180 [XNIO-1 task-1] x3UIkT9mT4616Hf0VbjPcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.180 [XNIO-1 task-1] x3UIkT9mT4616Hf0VbjPcw DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:48.181 [XNIO-1 task-1] x3UIkT9mT4616Hf0VbjPcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:48.193 [XNIO-1 task-1] pqLbee2cQI2yS4aBcM7sbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.193 [XNIO-1 task-1] pqLbee2cQI2yS4aBcM7sbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.194 [XNIO-1 task-1] pqLbee2cQI2yS4aBcM7sbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.194 [XNIO-1 task-1] pqLbee2cQI2yS4aBcM7sbg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.201 [XNIO-1 task-1] V89Wlrv5QziAwS-mLNiI4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.202 [XNIO-1 task-1] V89Wlrv5QziAwS-mLNiI4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.202 [XNIO-1 task-1] V89Wlrv5QziAwS-mLNiI4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.202 [XNIO-1 task-1] V89Wlrv5QziAwS-mLNiI4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.202 [XNIO-1 task-1] V89Wlrv5QziAwS-mLNiI4w DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:48.202 [XNIO-1 task-1] V89Wlrv5QziAwS-mLNiI4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:48.211 [XNIO-1 task-1] bgyl8MtIQlKn1WaQ5ujcNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.211 [XNIO-1 task-1] bgyl8MtIQlKn1WaQ5ujcNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.211 [XNIO-1 task-1] bgyl8MtIQlKn1WaQ5ujcNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.212 [XNIO-1 task-1] bgyl8MtIQlKn1WaQ5ujcNg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.223 [XNIO-1 task-1] R7JnZt8hQq6LGTaBobQ68w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b740429-3a34-4535-9c82-d3e9aeecfb6a, base path is set to: null +18:00:48.223 [XNIO-1 task-1] R7JnZt8hQq6LGTaBobQ68w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.223 [XNIO-1 task-1] R7JnZt8hQq6LGTaBobQ68w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.223 [XNIO-1 task-1] R7JnZt8hQq6LGTaBobQ68w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1b740429-3a34-4535-9c82-d3e9aeecfb6a, base path is set to: null +18:00:48.223 [XNIO-1 task-1] R7JnZt8hQq6LGTaBobQ68w DEBUG com.networknt.schema.TypeValidator debug - validate( "1b740429-3a34-4535-9c82-d3e9aeecfb6a", "1b740429-3a34-4535-9c82-d3e9aeecfb6a", refreshToken) +18:00:48.228 [XNIO-1 task-1] oyo_ftSoQgiXFRg4BLngog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.228 [XNIO-1 task-1] oyo_ftSoQgiXFRg4BLngog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.228 [XNIO-1 task-1] oyo_ftSoQgiXFRg4BLngog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.228 [XNIO-1 task-1] oyo_ftSoQgiXFRg4BLngog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.229 [XNIO-1 task-1] oyo_ftSoQgiXFRg4BLngog DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:48.229 [XNIO-1 task-1] oyo_ftSoQgiXFRg4BLngog ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:48.232 [XNIO-1 task-1] Y8PnXStKQ-ufekX11hlSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.232 [XNIO-1 task-1] Y8PnXStKQ-ufekX11hlSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.232 [XNIO-1 task-1] Y8PnXStKQ-ufekX11hlSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.232 [XNIO-1 task-1] Y8PnXStKQ-ufekX11hlSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.233 [XNIO-1 task-1] Y8PnXStKQ-ufekX11hlSFg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.242 [XNIO-1 task-1] N5ghJTMZQIWcWEJl1w5--g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.242 [XNIO-1 task-1] N5ghJTMZQIWcWEJl1w5--g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.242 [XNIO-1 task-1] N5ghJTMZQIWcWEJl1w5--g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.242 [XNIO-1 task-1] N5ghJTMZQIWcWEJl1w5--g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.242 [XNIO-1 task-1] N5ghJTMZQIWcWEJl1w5--g DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.245 [XNIO-1 task-1] N5ghJTMZQIWcWEJl1w5--g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.250 [XNIO-1 task-1] pWg3OTTJTq2nNkON5KiUAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.250 [XNIO-1 task-1] pWg3OTTJTq2nNkON5KiUAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.250 [XNIO-1 task-1] pWg3OTTJTq2nNkON5KiUAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.251 [XNIO-1 task-1] pWg3OTTJTq2nNkON5KiUAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.251 [XNIO-1 task-1] pWg3OTTJTq2nNkON5KiUAw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.257 [XNIO-1 task-1] 7H5d9qkuTu-k49J6MYTyhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.257 [XNIO-1 task-1] 7H5d9qkuTu-k49J6MYTyhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.257 [XNIO-1 task-1] 7H5d9qkuTu-k49J6MYTyhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.257 [XNIO-1 task-1] 7H5d9qkuTu-k49J6MYTyhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.258 [XNIO-1 task-1] 7H5d9qkuTu-k49J6MYTyhw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.258 [XNIO-1 task-1] 7H5d9qkuTu-k49J6MYTyhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.265 [XNIO-1 task-1] RvFUvDFZS8-ETtxIE91H4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.266 [XNIO-1 task-1] RvFUvDFZS8-ETtxIE91H4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.266 [XNIO-1 task-1] RvFUvDFZS8-ETtxIE91H4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.266 [XNIO-1 task-1] RvFUvDFZS8-ETtxIE91H4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.266 [XNIO-1 task-1] RvFUvDFZS8-ETtxIE91H4w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.270 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7af26e98 +18:00:48.271 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5de29430-9b2c-43b3-b50a-b37e77009c96 +18:00:48.273 [XNIO-1 task-1] stRldLfxTPCdyJy5QMJC7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/97b9d0c7-4e48-49dd-9e46-93a678c2d093, base path is set to: null +18:00:48.273 [XNIO-1 task-1] stRldLfxTPCdyJy5QMJC7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.273 [XNIO-1 task-1] stRldLfxTPCdyJy5QMJC7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.274 [XNIO-1 task-1] stRldLfxTPCdyJy5QMJC7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/97b9d0c7-4e48-49dd-9e46-93a678c2d093, base path is set to: null +18:00:48.274 [XNIO-1 task-1] stRldLfxTPCdyJy5QMJC7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "97b9d0c7-4e48-49dd-9e46-93a678c2d093", "97b9d0c7-4e48-49dd-9e46-93a678c2d093", refreshToken) +18:00:48.278 [XNIO-1 task-1] k3b7jupsTG2NHWmBU7fzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.278 [XNIO-1 task-1] k3b7jupsTG2NHWmBU7fzHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.278 [XNIO-1 task-1] k3b7jupsTG2NHWmBU7fzHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.278 [XNIO-1 task-1] k3b7jupsTG2NHWmBU7fzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.279 [XNIO-1 task-1] k3b7jupsTG2NHWmBU7fzHg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.279 [XNIO-1 task-1] k3b7jupsTG2NHWmBU7fzHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.282 [XNIO-1 task-1] ZwfyFHnNSkqHJ8NRxuWvFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.282 [XNIO-1 task-1] ZwfyFHnNSkqHJ8NRxuWvFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.283 [XNIO-1 task-1] ZwfyFHnNSkqHJ8NRxuWvFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.283 [XNIO-1 task-1] ZwfyFHnNSkqHJ8NRxuWvFw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.294 [XNIO-1 task-1] _fQWdZ-6TaeV2chWhhndsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.294 [XNIO-1 task-1] _fQWdZ-6TaeV2chWhhndsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.294 [XNIO-1 task-1] _fQWdZ-6TaeV2chWhhndsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.294 [XNIO-1 task-1] _fQWdZ-6TaeV2chWhhndsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.295 [XNIO-1 task-1] _fQWdZ-6TaeV2chWhhndsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.295 [XNIO-1 task-1] _fQWdZ-6TaeV2chWhhndsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.306 [XNIO-1 task-1] exgwKZ3hRcuXI1TsbRW7VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.308 [XNIO-1 task-1] exgwKZ3hRcuXI1TsbRW7VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.308 [XNIO-1 task-1] exgwKZ3hRcuXI1TsbRW7VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.309 [XNIO-1 task-1] exgwKZ3hRcuXI1TsbRW7VA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.319 [XNIO-1 task-1] yUjrPD_ARlqwgEyjururEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.319 [XNIO-1 task-1] yUjrPD_ARlqwgEyjururEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.319 [XNIO-1 task-1] yUjrPD_ARlqwgEyjururEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.320 [XNIO-1 task-1] yUjrPD_ARlqwgEyjururEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.320 [XNIO-1 task-1] yUjrPD_ARlqwgEyjururEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.320 [XNIO-1 task-1] yUjrPD_ARlqwgEyjururEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.323 [XNIO-1 task-1] EhRyMC0WSdKcQ73yaqqelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.323 [XNIO-1 task-1] EhRyMC0WSdKcQ73yaqqelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.323 [XNIO-1 task-1] EhRyMC0WSdKcQ73yaqqelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.324 [XNIO-1 task-1] EhRyMC0WSdKcQ73yaqqelA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.324 [XNIO-1 task-1] EhRyMC0WSdKcQ73yaqqelA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.331 [XNIO-1 task-1] F0XxOtsfT1u38cm2cj3FnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.331 [XNIO-1 task-1] F0XxOtsfT1u38cm2cj3FnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.331 [XNIO-1 task-1] F0XxOtsfT1u38cm2cj3FnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.331 [XNIO-1 task-1] F0XxOtsfT1u38cm2cj3FnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.332 [XNIO-1 task-1] F0XxOtsfT1u38cm2cj3FnA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.341 [XNIO-1 task-1] kTGJgi8jRoWGCXXl_rFuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.341 [XNIO-1 task-1] kTGJgi8jRoWGCXXl_rFuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.341 [XNIO-1 task-1] kTGJgi8jRoWGCXXl_rFuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.341 [XNIO-1 task-1] kTGJgi8jRoWGCXXl_rFuGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.341 [XNIO-1 task-1] kTGJgi8jRoWGCXXl_rFuGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.345 [XNIO-1 task-1] n5MN6ftHSSORMZ8LBNF9Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.345 [XNIO-1 task-1] n5MN6ftHSSORMZ8LBNF9Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.345 [XNIO-1 task-1] n5MN6ftHSSORMZ8LBNF9Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.345 [XNIO-1 task-1] n5MN6ftHSSORMZ8LBNF9Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.345 [XNIO-1 task-1] n5MN6ftHSSORMZ8LBNF9Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.346 [XNIO-1 task-1] n5MN6ftHSSORMZ8LBNF9Bw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.348 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c2552b86-db35-49ba-b6b5-f846105c3ef5 +18:00:48.348 [XNIO-1 task-1] MNjOUVvVQoery4Wi_4jxOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.348 [XNIO-1 task-1] MNjOUVvVQoery4Wi_4jxOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.349 [XNIO-1 task-1] MNjOUVvVQoery4Wi_4jxOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.371 [XNIO-1 task-1] MNjOUVvVQoery4Wi_4jxOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.386 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c2552b86-db35-49ba-b6b5-f846105c3ef5 +18:00:48.387 [XNIO-1 task-1] icPo7MzITuWJ1UxSHA-J_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.387 [XNIO-1 task-1] icPo7MzITuWJ1UxSHA-J_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.387 [XNIO-1 task-1] icPo7MzITuWJ1UxSHA-J_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.388 [XNIO-1 task-1] icPo7MzITuWJ1UxSHA-J_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.388 [XNIO-1 task-1] icPo7MzITuWJ1UxSHA-J_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.394 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1876fb97-05bd-466c-8c56-f9aecefdd60f +18:00:48.397 [XNIO-1 task-1] u5XFZ3uVRVGzHJpJox8aMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.397 [XNIO-1 task-1] u5XFZ3uVRVGzHJpJox8aMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.397 [XNIO-1 task-1] u5XFZ3uVRVGzHJpJox8aMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.397 [XNIO-1 task-1] u5XFZ3uVRVGzHJpJox8aMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.397 [XNIO-1 task-1] u5XFZ3uVRVGzHJpJox8aMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.401 [XNIO-1 task-1] ARKiMmppTRas_m6oFPCJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.401 [XNIO-1 task-1] ARKiMmppTRas_m6oFPCJkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.402 [XNIO-1 task-1] ARKiMmppTRas_m6oFPCJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.402 [XNIO-1 task-1] ARKiMmppTRas_m6oFPCJkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.402 [XNIO-1 task-1] ARKiMmppTRas_m6oFPCJkw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.403 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1876fb97-05bd-466c-8c56-f9aecefdd60f +18:00:48.411 [XNIO-1 task-1] ARTeM2odSYuc6aQcT1p4tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.411 [XNIO-1 task-1] ARTeM2odSYuc6aQcT1p4tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.411 [XNIO-1 task-1] ARTeM2odSYuc6aQcT1p4tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.412 [XNIO-1 task-1] ARTeM2odSYuc6aQcT1p4tw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.421 [XNIO-1 task-1] fj-Nf4bQTYqazrhCT_d2rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.421 [XNIO-1 task-1] fj-Nf4bQTYqazrhCT_d2rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.422 [XNIO-1 task-1] fj-Nf4bQTYqazrhCT_d2rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.422 [XNIO-1 task-1] fj-Nf4bQTYqazrhCT_d2rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.422 [XNIO-1 task-1] fj-Nf4bQTYqazrhCT_d2rg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.422 [XNIO-1 task-1] fj-Nf4bQTYqazrhCT_d2rg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.428 [XNIO-1 task-1] h2CvYodSRy2hGqB-_hlgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.428 [XNIO-1 task-1] h2CvYodSRy2hGqB-_hlgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.429 [XNIO-1 task-1] h2CvYodSRy2hGqB-_hlgDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.429 [XNIO-1 task-1] h2CvYodSRy2hGqB-_hlgDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.435 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7af26e98 +18:00:48.442 [XNIO-1 task-1] 9PuOhM5xS2WNjulEp7pcMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.442 [XNIO-1 task-1] 9PuOhM5xS2WNjulEp7pcMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.442 [XNIO-1 task-1] 9PuOhM5xS2WNjulEp7pcMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.443 [XNIO-1 task-1] 9PuOhM5xS2WNjulEp7pcMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.443 [XNIO-1 task-1] 9PuOhM5xS2WNjulEp7pcMg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.443 [XNIO-1 task-1] 9PuOhM5xS2WNjulEp7pcMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.449 [XNIO-1 task-1] 15QKzLY1Smm77ooKWA5v9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.449 [XNIO-1 task-1] 15QKzLY1Smm77ooKWA5v9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.449 [XNIO-1 task-1] 15QKzLY1Smm77ooKWA5v9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.449 [XNIO-1 task-1] 15QKzLY1Smm77ooKWA5v9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.450 [XNIO-1 task-1] 15QKzLY1Smm77ooKWA5v9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.456 [XNIO-1 task-1] 0dOommSvSkCPl5NIIsCpGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.456 [XNIO-1 task-1] 0dOommSvSkCPl5NIIsCpGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.456 [XNIO-1 task-1] 0dOommSvSkCPl5NIIsCpGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.457 [XNIO-1 task-1] 0dOommSvSkCPl5NIIsCpGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.457 [XNIO-1 task-1] 0dOommSvSkCPl5NIIsCpGw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.457 [XNIO-1 task-1] 0dOommSvSkCPl5NIIsCpGw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.460 [XNIO-1 task-1] u5OzqEN9Ruq0rOzvFRY2Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.460 [XNIO-1 task-1] u5OzqEN9Ruq0rOzvFRY2Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.461 [XNIO-1 task-1] u5OzqEN9Ruq0rOzvFRY2Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.461 [XNIO-1 task-1] u5OzqEN9Ruq0rOzvFRY2Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.461 [XNIO-1 task-1] u5OzqEN9Ruq0rOzvFRY2Mg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.464 [XNIO-1 task-1] IyPmUIjpSfWkGaHghOzdTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.466 [XNIO-1 task-1] IyPmUIjpSfWkGaHghOzdTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.466 [XNIO-1 task-1] IyPmUIjpSfWkGaHghOzdTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.466 [XNIO-1 task-1] IyPmUIjpSfWkGaHghOzdTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.466 [XNIO-1 task-1] IyPmUIjpSfWkGaHghOzdTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.483 [XNIO-1 task-1] c9l0r-jmS3aPmrxmmWFAbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.483 [XNIO-1 task-1] c9l0r-jmS3aPmrxmmWFAbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.483 [XNIO-1 task-1] c9l0r-jmS3aPmrxmmWFAbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.483 [XNIO-1 task-1] c9l0r-jmS3aPmrxmmWFAbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.484 [XNIO-1 task-1] c9l0r-jmS3aPmrxmmWFAbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.488 [XNIO-1 task-1] 4UTmsUBkRnmF0YCiID2mTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.489 [XNIO-1 task-1] 4UTmsUBkRnmF0YCiID2mTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.489 [XNIO-1 task-1] 4UTmsUBkRnmF0YCiID2mTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.489 [XNIO-1 task-1] 4UTmsUBkRnmF0YCiID2mTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.490 [XNIO-1 task-1] 4UTmsUBkRnmF0YCiID2mTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.500 [XNIO-1 task-1] Qn1F0GcWStCUKDX29vU1ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.500 [XNIO-1 task-1] Qn1F0GcWStCUKDX29vU1ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.500 [XNIO-1 task-1] Qn1F0GcWStCUKDX29vU1ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.501 [XNIO-1 task-1] Qn1F0GcWStCUKDX29vU1ig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.511 [XNIO-1 task-1] rUNW72iiQB2MC5qz7f-Hog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.511 [XNIO-1 task-1] rUNW72iiQB2MC5qz7f-Hog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.511 [XNIO-1 task-1] rUNW72iiQB2MC5qz7f-Hog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.511 [XNIO-1 task-1] rUNW72iiQB2MC5qz7f-Hog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.511 [XNIO-1 task-1] rUNW72iiQB2MC5qz7f-Hog DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.514 [XNIO-1 task-1] rUNW72iiQB2MC5qz7f-Hog ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.518 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7af26e98 +18:00:48.518 [XNIO-1 task-1] rv2kXrMeTluJlnKS3U_05Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.518 [XNIO-1 task-1] rv2kXrMeTluJlnKS3U_05Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.518 [XNIO-1 task-1] rv2kXrMeTluJlnKS3U_05Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.519 [XNIO-1 task-1] rv2kXrMeTluJlnKS3U_05Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.519 [XNIO-1 task-1] rv2kXrMeTluJlnKS3U_05Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.524 [XNIO-1 task-1] P7ERGQC2Rkyd3W6E1ojncg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.524 [XNIO-1 task-1] P7ERGQC2Rkyd3W6E1ojncg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.524 [XNIO-1 task-1] P7ERGQC2Rkyd3W6E1ojncg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.525 [XNIO-1 task-1] P7ERGQC2Rkyd3W6E1ojncg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.525 [XNIO-1 task-1] P7ERGQC2Rkyd3W6E1ojncg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.525 [XNIO-1 task-1] P7ERGQC2Rkyd3W6E1ojncg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.530 [XNIO-1 task-1] 0xDgBlFHTTOFLA30JhVHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.530 [XNIO-1 task-1] 0xDgBlFHTTOFLA30JhVHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.531 [XNIO-1 task-1] 0xDgBlFHTTOFLA30JhVHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.531 [XNIO-1 task-1] 0xDgBlFHTTOFLA30JhVHZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.531 [XNIO-1 task-1] 0xDgBlFHTTOFLA30JhVHZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.542 [XNIO-1 task-1] Cb4ezyLYQrOAPHDNAQfVKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16, base path is set to: null +18:00:48.542 [XNIO-1 task-1] Cb4ezyLYQrOAPHDNAQfVKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.542 [XNIO-1 task-1] Cb4ezyLYQrOAPHDNAQfVKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.542 [XNIO-1 task-1] Cb4ezyLYQrOAPHDNAQfVKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16, base path is set to: null +18:00:48.543 [XNIO-1 task-1] Cb4ezyLYQrOAPHDNAQfVKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "223fd7d2-ae59-4a8c-bdf0-3362ad122d16", "223fd7d2-ae59-4a8c-bdf0-3362ad122d16", refreshToken) +18:00:48.545 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7af26e98 +18:00:48.557 [XNIO-1 task-1] _mSlrZT3T6aSY4GkEjY0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.557 [XNIO-1 task-1] _mSlrZT3T6aSY4GkEjY0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.557 [XNIO-1 task-1] _mSlrZT3T6aSY4GkEjY0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.557 [XNIO-1 task-1] _mSlrZT3T6aSY4GkEjY0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.557 [XNIO-1 task-1] _mSlrZT3T6aSY4GkEjY0lQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.571 [XNIO-1 task-1] QZILJAxsRCeVXjDPds5Oig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.571 [XNIO-1 task-1] QZILJAxsRCeVXjDPds5Oig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.571 [XNIO-1 task-1] QZILJAxsRCeVXjDPds5Oig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.571 [XNIO-1 task-1] QZILJAxsRCeVXjDPds5Oig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.572 [XNIO-1 task-1] QZILJAxsRCeVXjDPds5Oig DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.577 [XNIO-1 task-1] QZILJAxsRCeVXjDPds5Oig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.580 [XNIO-1 task-1] ZENuyzNhTKiLw1hoVTEc1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.580 [XNIO-1 task-1] ZENuyzNhTKiLw1hoVTEc1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.580 [XNIO-1 task-1] ZENuyzNhTKiLw1hoVTEc1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.581 [XNIO-1 task-1] ZENuyzNhTKiLw1hoVTEc1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.594 [XNIO-1 task-1] Njnxk1WiSJiWN9SPmPLKXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.594 [XNIO-1 task-1] Njnxk1WiSJiWN9SPmPLKXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.594 [XNIO-1 task-1] Njnxk1WiSJiWN9SPmPLKXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.594 [XNIO-1 task-1] Njnxk1WiSJiWN9SPmPLKXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.595 [XNIO-1 task-1] Njnxk1WiSJiWN9SPmPLKXw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.595 [XNIO-1 task-1] Njnxk1WiSJiWN9SPmPLKXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.598 [XNIO-1 task-1] vUmWaj06Rbas0uUCwg-mAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.598 [XNIO-1 task-1] vUmWaj06Rbas0uUCwg-mAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.598 [XNIO-1 task-1] vUmWaj06Rbas0uUCwg-mAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.598 [XNIO-1 task-1] vUmWaj06Rbas0uUCwg-mAg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.602 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a659445 +18:00:48.607 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a659445 +18:00:48.610 [XNIO-1 task-1] iA1y7HtmSva2LKsyy2xJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.610 [XNIO-1 task-1] iA1y7HtmSva2LKsyy2xJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.610 [XNIO-1 task-1] iA1y7HtmSva2LKsyy2xJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.610 [XNIO-1 task-1] iA1y7HtmSva2LKsyy2xJNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.611 [XNIO-1 task-1] iA1y7HtmSva2LKsyy2xJNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.616 [XNIO-1 task-1] a77Z2RPjSsCNIqnWpIUWuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.616 [XNIO-1 task-1] a77Z2RPjSsCNIqnWpIUWuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.616 [XNIO-1 task-1] a77Z2RPjSsCNIqnWpIUWuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.617 [XNIO-1 task-1] a77Z2RPjSsCNIqnWpIUWuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.617 [XNIO-1 task-1] a77Z2RPjSsCNIqnWpIUWuw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.621 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d5b8dcda +18:00:48.627 [XNIO-1 task-1] BxpMr4ItRbKC5bk5UnkMkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.627 [XNIO-1 task-1] BxpMr4ItRbKC5bk5UnkMkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.627 [XNIO-1 task-1] BxpMr4ItRbKC5bk5UnkMkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.627 [XNIO-1 task-1] BxpMr4ItRbKC5bk5UnkMkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.628 [XNIO-1 task-1] BxpMr4ItRbKC5bk5UnkMkg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 +18:00:48.633 [XNIO-1 task-1] ruSBC0fUTYW3dsq57tNeWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.633 [XNIO-1 task-1] ruSBC0fUTYW3dsq57tNeWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.634 [XNIO-1 task-1] ruSBC0fUTYW3dsq57tNeWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.634 [XNIO-1 task-1] ruSBC0fUTYW3dsq57tNeWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.635 [XNIO-1 task-1] ruSBC0fUTYW3dsq57tNeWg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.644 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:698ebec7-e96f-4594-89af-71c68e51e609 +18:00:48.644 [XNIO-1 task-1] hTfM08wVTEyLUs4krBPFtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.644 [XNIO-1 task-1] hTfM08wVTEyLUs4krBPFtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.644 [XNIO-1 task-1] hTfM08wVTEyLUs4krBPFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6b9b7e38-d6a3-431a-9e8a-218bd112eb06, base path is set to: null +18:00:48.645 [XNIO-1 task-1] hTfM08wVTEyLUs4krBPFtA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", "6b9b7e38-d6a3-431a-9e8a-218bd112eb06", refreshToken) +18:00:48.645 [XNIO-1 task-1] hTfM08wVTEyLUs4krBPFtA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6b9b7e38-d6a3-431a-9e8a-218bd112eb06 is not found.","severity":"ERROR"} +18:00:48.649 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:698ebec7-e96f-4594-89af-71c68e51e609 +18:00:48.649 [XNIO-1 task-1] lnx_gEtQQ_adicYjrNMO3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.650 [XNIO-1 task-1] lnx_gEtQQ_adicYjrNMO3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.650 [XNIO-1 task-1] lnx_gEtQQ_adicYjrNMO3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.651 [XNIO-1 task-1] lnx_gEtQQ_adicYjrNMO3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.651 [XNIO-1 task-1] lnx_gEtQQ_adicYjrNMO3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.664 [XNIO-1 task-1] DULEwTbUSHSX4EiJDNnGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.664 [XNIO-1 task-1] DULEwTbUSHSX4EiJDNnGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.664 [XNIO-1 task-1] DULEwTbUSHSX4EiJDNnGvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.665 [XNIO-1 task-1] DULEwTbUSHSX4EiJDNnGvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.678 [XNIO-1 task-1] XeNRDxtFSV6Ko5sATj7vnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.678 [XNIO-1 task-1] XeNRDxtFSV6Ko5sATj7vnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.679 [XNIO-1 task-1] XeNRDxtFSV6Ko5sATj7vnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.679 [XNIO-1 task-1] XeNRDxtFSV6Ko5sATj7vnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.679 [XNIO-1 task-1] XeNRDxtFSV6Ko5sATj7vnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.698 [XNIO-1 task-1] 3n6YxcfKRMidIds527k7KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.699 [XNIO-1 task-1] 3n6YxcfKRMidIds527k7KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.699 [XNIO-1 task-1] 3n6YxcfKRMidIds527k7KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.699 [XNIO-1 task-1] 3n6YxcfKRMidIds527k7KA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.705 [XNIO-1 task-1] dulolcPmQIm3UhrLxHAyOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.705 [XNIO-1 task-1] dulolcPmQIm3UhrLxHAyOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.706 [XNIO-1 task-1] dulolcPmQIm3UhrLxHAyOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.706 [XNIO-1 task-1] dulolcPmQIm3UhrLxHAyOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.706 [XNIO-1 task-1] dulolcPmQIm3UhrLxHAyOw DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:48.709 [XNIO-1 task-1] rJh-cPrtTYitsYJvzbvVHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16, base path is set to: null +18:00:48.709 [XNIO-1 task-1] rJh-cPrtTYitsYJvzbvVHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.710 [XNIO-1 task-1] rJh-cPrtTYitsYJvzbvVHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.710 [XNIO-1 task-1] rJh-cPrtTYitsYJvzbvVHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16, base path is set to: null +18:00:48.710 [XNIO-1 task-1] rJh-cPrtTYitsYJvzbvVHw DEBUG com.networknt.schema.TypeValidator debug - validate( "223fd7d2-ae59-4a8c-bdf0-3362ad122d16", "223fd7d2-ae59-4a8c-bdf0-3362ad122d16", refreshToken) +18:00:48.715 [XNIO-1 task-1] I4DqkKOGSm2n2A_wwKmMug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.716 [XNIO-1 task-1] I4DqkKOGSm2n2A_wwKmMug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.716 [XNIO-1 task-1] I4DqkKOGSm2n2A_wwKmMug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.716 [XNIO-1 task-1] I4DqkKOGSm2n2A_wwKmMug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.716 [XNIO-1 task-1] I4DqkKOGSm2n2A_wwKmMug DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:48.720 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e137f55e +18:00:48.722 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e137f55e +18:00:48.737 [XNIO-1 task-1] FoRuIvtnSsKoV9Pt7xviGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16 +18:00:48.737 [XNIO-1 task-1] FoRuIvtnSsKoV9Pt7xviGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.737 [XNIO-1 task-1] FoRuIvtnSsKoV9Pt7xviGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.737 [XNIO-1 task-1] FoRuIvtnSsKoV9Pt7xviGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16 +18:00:48.742 [XNIO-1 task-1] FoRuIvtnSsKoV9Pt7xviGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 223fd7d2-ae59-4a8c-bdf0-3362ad122d16 +18:00:48.747 [XNIO-1 task-1] LJ2NHiM_Tt6Plds9yph9sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.747 [XNIO-1 task-1] LJ2NHiM_Tt6Plds9yph9sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.747 [XNIO-1 task-1] LJ2NHiM_Tt6Plds9yph9sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.748 [XNIO-1 task-1] LJ2NHiM_Tt6Plds9yph9sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.748 [XNIO-1 task-1] LJ2NHiM_Tt6Plds9yph9sA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.762 [XNIO-1 task-1] 27fQVj48R0CIsFWqv0mt4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.762 [XNIO-1 task-1] 27fQVj48R0CIsFWqv0mt4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.762 [XNIO-1 task-1] 27fQVj48R0CIsFWqv0mt4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.763 [XNIO-1 task-1] 27fQVj48R0CIsFWqv0mt4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.763 [XNIO-1 task-1] 27fQVj48R0CIsFWqv0mt4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.771 [XNIO-1 task-1] FwQ2W1dvSSudyzvVqMDXFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16, base path is set to: null +18:00:48.771 [XNIO-1 task-1] FwQ2W1dvSSudyzvVqMDXFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.771 [XNIO-1 task-1] FwQ2W1dvSSudyzvVqMDXFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.772 [XNIO-1 task-1] FwQ2W1dvSSudyzvVqMDXFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16, base path is set to: null +18:00:48.772 [XNIO-1 task-1] FwQ2W1dvSSudyzvVqMDXFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "223fd7d2-ae59-4a8c-bdf0-3362ad122d16", "223fd7d2-ae59-4a8c-bdf0-3362ad122d16", refreshToken) +18:00:48.791 [XNIO-1 task-1] ikORPAmsSEiLztZXLPCukg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.792 [XNIO-1 task-1] ikORPAmsSEiLztZXLPCukg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.792 [XNIO-1 task-1] ikORPAmsSEiLztZXLPCukg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.793 [XNIO-1 task-1] ikORPAmsSEiLztZXLPCukg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.793 [XNIO-1 task-1] ikORPAmsSEiLztZXLPCukg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.800 [XNIO-1 task-1] KVO-Y5RiSjiAT11jxYaI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.800 [XNIO-1 task-1] KVO-Y5RiSjiAT11jxYaI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.800 [XNIO-1 task-1] KVO-Y5RiSjiAT11jxYaI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.800 [XNIO-1 task-1] KVO-Y5RiSjiAT11jxYaI2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.801 [XNIO-1 task-1] KVO-Y5RiSjiAT11jxYaI2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.809 [XNIO-1 task-1] hC_dGT_bSO2He5x-0GGrBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.809 [XNIO-1 task-1] hC_dGT_bSO2He5x-0GGrBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.809 [XNIO-1 task-1] hC_dGT_bSO2He5x-0GGrBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.810 [XNIO-1 task-1] hC_dGT_bSO2He5x-0GGrBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.810 [XNIO-1 task-1] hC_dGT_bSO2He5x-0GGrBg DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:48.810 [XNIO-1 task-1] hC_dGT_bSO2He5x-0GGrBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:48.814 [XNIO-1 task-1] MVABNzy_SBmYICPvz8rgfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16 +18:00:48.814 [XNIO-1 task-1] MVABNzy_SBmYICPvz8rgfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.814 [XNIO-1 task-1] MVABNzy_SBmYICPvz8rgfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.814 [XNIO-1 task-1] MVABNzy_SBmYICPvz8rgfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/223fd7d2-ae59-4a8c-bdf0-3362ad122d16 +18:00:48.815 [XNIO-1 task-1] MVABNzy_SBmYICPvz8rgfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 223fd7d2-ae59-4a8c-bdf0-3362ad122d16 +18:00:48.824 [XNIO-1 task-1] zOnyr99nR3CeXjmqVWa7_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.824 [XNIO-1 task-1] zOnyr99nR3CeXjmqVWa7_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.824 [XNIO-1 task-1] zOnyr99nR3CeXjmqVWa7_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.825 [XNIO-1 task-1] zOnyr99nR3CeXjmqVWa7_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:48.826 [XNIO-1 task-1] zOnyr99nR3CeXjmqVWa7_w DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:48.827 [XNIO-1 task-1] zOnyr99nR3CeXjmqVWa7_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:48.830 [XNIO-1 task-1] Doc9tqL5Tk2Muv8HCQxMhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.830 [XNIO-1 task-1] Doc9tqL5Tk2Muv8HCQxMhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.830 [XNIO-1 task-1] Doc9tqL5Tk2Muv8HCQxMhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.831 [XNIO-1 task-1] Doc9tqL5Tk2Muv8HCQxMhw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:48.849 [XNIO-1 task-1] i9Oky1yYT0yKIqlnk543TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:48.849 [XNIO-1 task-1] i9Oky1yYT0yKIqlnk543TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.849 [XNIO-1 task-1] i9Oky1yYT0yKIqlnk543TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.850 [XNIO-1 task-1] i9Oky1yYT0yKIqlnk543TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:48.850 [XNIO-1 task-1] i9Oky1yYT0yKIqlnk543TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:48.859 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:30570bd0 +18:00:48.861 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:30570bd0 +18:00:48.862 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a659445 +18:00:48.866 [XNIO-1 task-1] XityOQQ7TGKXRdGc35g-Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.866 [XNIO-1 task-1] XityOQQ7TGKXRdGc35g-Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.866 [XNIO-1 task-1] XityOQQ7TGKXRdGc35g-Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.866 [XNIO-1 task-1] XityOQQ7TGKXRdGc35g-Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.867 [XNIO-1 task-1] XityOQQ7TGKXRdGc35g-Cw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.876 [XNIO-1 task-1] TDEmaCBoRliccZl3CnK0ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc, base path is set to: null +18:00:48.876 [XNIO-1 task-1] TDEmaCBoRliccZl3CnK0ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.876 [XNIO-1 task-1] TDEmaCBoRliccZl3CnK0ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.876 [XNIO-1 task-1] TDEmaCBoRliccZl3CnK0ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc, base path is set to: null +18:00:48.877 [XNIO-1 task-1] TDEmaCBoRliccZl3CnK0ng DEBUG com.networknt.schema.TypeValidator debug - validate( "a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc", "a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc", refreshToken) +18:00:48.878 [XNIO-1 task-1] TDEmaCBoRliccZl3CnK0ng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc is not found.","severity":"ERROR"} +18:00:48.885 [XNIO-1 task-1] uUYr5wRMQ3iUShOZD8fVEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.885 [XNIO-1 task-1] uUYr5wRMQ3iUShOZD8fVEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.885 [XNIO-1 task-1] uUYr5wRMQ3iUShOZD8fVEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.886 [XNIO-1 task-1] uUYr5wRMQ3iUShOZD8fVEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.886 [XNIO-1 task-1] uUYr5wRMQ3iUShOZD8fVEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.890 [XNIO-1 task-1] fv585eDxQA2jmziyklJtAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.890 [XNIO-1 task-1] fv585eDxQA2jmziyklJtAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.891 [XNIO-1 task-1] fv585eDxQA2jmziyklJtAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.891 [XNIO-1 task-1] fv585eDxQA2jmziyklJtAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.891 [XNIO-1 task-1] fv585eDxQA2jmziyklJtAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.899 [XNIO-1 task-1] hXFj9d1JTsSgkkhCLnKmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.899 [XNIO-1 task-1] hXFj9d1JTsSgkkhCLnKmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.900 [XNIO-1 task-1] hXFj9d1JTsSgkkhCLnKmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.900 [XNIO-1 task-1] hXFj9d1JTsSgkkhCLnKmJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.900 [XNIO-1 task-1] hXFj9d1JTsSgkkhCLnKmJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.906 [XNIO-1 task-1] 9NX1pk98Q2e4Fu4LBlJ0qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:48.906 [XNIO-1 task-1] 9NX1pk98Q2e4Fu4LBlJ0qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.906 [XNIO-1 task-1] 9NX1pk98Q2e4Fu4LBlJ0qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.906 [XNIO-1 task-1] 9NX1pk98Q2e4Fu4LBlJ0qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:48.907 [XNIO-1 task-1] 9NX1pk98Q2e4Fu4LBlJ0qw DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:48.907 [XNIO-1 task-1] 9NX1pk98Q2e4Fu4LBlJ0qw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:48.912 [XNIO-1 task-1] ui4V87mkQa6KoQQ25NdEUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.912 [XNIO-1 task-1] ui4V87mkQa6KoQQ25NdEUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.912 [XNIO-1 task-1] ui4V87mkQa6KoQQ25NdEUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.912 [XNIO-1 task-1] ui4V87mkQa6KoQQ25NdEUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.915 [XNIO-1 task-1] ui4V87mkQa6KoQQ25NdEUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a5e728ae-21e0-41a1-8e58-4d5daf6aa1dc +18:00:48.922 [XNIO-1 task-1] eQz6cptrRVOqGrL3hqhUig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.922 [XNIO-1 task-1] eQz6cptrRVOqGrL3hqhUig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.922 [XNIO-1 task-1] eQz6cptrRVOqGrL3hqhUig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.922 [XNIO-1 task-1] eQz6cptrRVOqGrL3hqhUig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.923 [XNIO-1 task-1] eQz6cptrRVOqGrL3hqhUig DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:48.923 [XNIO-1 task-1] eQz6cptrRVOqGrL3hqhUig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:48.926 [XNIO-1 task-1] dBNAinJ5QDuDxrXzMmbxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.926 [XNIO-1 task-1] dBNAinJ5QDuDxrXzMmbxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.926 [XNIO-1 task-1] dBNAinJ5QDuDxrXzMmbxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.927 [XNIO-1 task-1] dBNAinJ5QDuDxrXzMmbxnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.927 [XNIO-1 task-1] dBNAinJ5QDuDxrXzMmbxnw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.931 [XNIO-1 task-1] sMqfnYxATiiWHyALLPdQ8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.932 [XNIO-1 task-1] sMqfnYxATiiWHyALLPdQ8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.932 [XNIO-1 task-1] sMqfnYxATiiWHyALLPdQ8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.932 [XNIO-1 task-1] sMqfnYxATiiWHyALLPdQ8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:48.932 [XNIO-1 task-1] sMqfnYxATiiWHyALLPdQ8g DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:48.932 [XNIO-1 task-1] sMqfnYxATiiWHyALLPdQ8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:48.941 [XNIO-1 task-1] cWvN_jdpRyOWnxlmYx4-yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.941 [XNIO-1 task-1] cWvN_jdpRyOWnxlmYx4-yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.941 [XNIO-1 task-1] cWvN_jdpRyOWnxlmYx4-yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.941 [XNIO-1 task-1] cWvN_jdpRyOWnxlmYx4-yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.941 [XNIO-1 task-1] cWvN_jdpRyOWnxlmYx4-yA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.949 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:30570bd0 +18:00:48.950 [XNIO-1 task-1] iqb8wOOQT1iOM4PhOYp3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.950 [XNIO-1 task-1] iqb8wOOQT1iOM4PhOYp3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.950 [XNIO-1 task-1] iqb8wOOQT1iOM4PhOYp3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.950 [XNIO-1 task-1] iqb8wOOQT1iOM4PhOYp3SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.951 [XNIO-1 task-1] iqb8wOOQT1iOM4PhOYp3SQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.958 [XNIO-1 task-1] 8JSYqwOoSemkDsEtTPxWAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.958 [XNIO-1 task-1] 8JSYqwOoSemkDsEtTPxWAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.958 [XNIO-1 task-1] 8JSYqwOoSemkDsEtTPxWAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.958 [XNIO-1 task-1] 8JSYqwOoSemkDsEtTPxWAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.958 [XNIO-1 task-1] 8JSYqwOoSemkDsEtTPxWAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 93578d62-1d86-45ca-967b-58b55c5cc8a4 +18:00:48.963 [XNIO-1 task-1] UuLWjByMS1KEpyI9Xav18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.963 [XNIO-1 task-1] UuLWjByMS1KEpyI9Xav18g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.964 [XNIO-1 task-1] UuLWjByMS1KEpyI9Xav18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:48.964 [XNIO-1 task-1] UuLWjByMS1KEpyI9Xav18g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:48.964 [XNIO-1 task-1] UuLWjByMS1KEpyI9Xav18g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:48.970 [XNIO-1 task-1] EvrsFQwdT4-9lgUZiFzDEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.971 [XNIO-1 task-1] EvrsFQwdT4-9lgUZiFzDEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.971 [XNIO-1 task-1] EvrsFQwdT4-9lgUZiFzDEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.971 [XNIO-1 task-1] EvrsFQwdT4-9lgUZiFzDEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.971 [XNIO-1 task-1] EvrsFQwdT4-9lgUZiFzDEA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.975 [XNIO-1 task-1] 1Ui-6WlvQIm2Age90tiGZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4, base path is set to: null +18:00:48.976 [XNIO-1 task-1] 1Ui-6WlvQIm2Age90tiGZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.976 [XNIO-1 task-1] 1Ui-6WlvQIm2Age90tiGZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.976 [XNIO-1 task-1] 1Ui-6WlvQIm2Age90tiGZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4, base path is set to: null +18:00:48.976 [XNIO-1 task-1] 1Ui-6WlvQIm2Age90tiGZA DEBUG com.networknt.schema.TypeValidator debug - validate( "93578d62-1d86-45ca-967b-58b55c5cc8a4", "93578d62-1d86-45ca-967b-58b55c5cc8a4", refreshToken) +18:00:48.976 [XNIO-1 task-1] 1Ui-6WlvQIm2Age90tiGZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 93578d62-1d86-45ca-967b-58b55c5cc8a4 is not found.","severity":"ERROR"} +18:00:48.980 [XNIO-1 task-1] _e44Az-6RpiRXIvluK9rtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.980 [XNIO-1 task-1] _e44Az-6RpiRXIvluK9rtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.980 [XNIO-1 task-1] _e44Az-6RpiRXIvluK9rtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.981 [XNIO-1 task-1] _e44Az-6RpiRXIvluK9rtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.981 [XNIO-1 task-1] _e44Az-6RpiRXIvluK9rtA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:48.990 [XNIO-1 task-1] s3UC6422TxCBjsnzBMSp1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4, base path is set to: null +18:00:48.990 [XNIO-1 task-1] s3UC6422TxCBjsnzBMSp1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:48.990 [XNIO-1 task-1] s3UC6422TxCBjsnzBMSp1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:48.990 [XNIO-1 task-1] s3UC6422TxCBjsnzBMSp1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/93578d62-1d86-45ca-967b-58b55c5cc8a4, base path is set to: null +18:00:48.990 [XNIO-1 task-1] s3UC6422TxCBjsnzBMSp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "93578d62-1d86-45ca-967b-58b55c5cc8a4", "93578d62-1d86-45ca-967b-58b55c5cc8a4", refreshToken) +18:00:48.991 [XNIO-1 task-1] s3UC6422TxCBjsnzBMSp1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 93578d62-1d86-45ca-967b-58b55c5cc8a4 is not found.","severity":"ERROR"} +18:00:48.997 [XNIO-1 task-1] 4EKfRMARQ7uVJfWt772hOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a014058f-ebf9-48a9-ba25-36be1b11c9cb +18:00:48.997 [XNIO-1 task-1] 4EKfRMARQ7uVJfWt772hOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:48.998 [XNIO-1 task-1] 4EKfRMARQ7uVJfWt772hOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:48.998 [XNIO-1 task-1] 4EKfRMARQ7uVJfWt772hOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a014058f-ebf9-48a9-ba25-36be1b11c9cb +18:00:48.998 [XNIO-1 task-1] 4EKfRMARQ7uVJfWt772hOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a014058f-ebf9-48a9-ba25-36be1b11c9cb +18:00:49.003 [XNIO-1 task-1] 7UUaJ2C8QGWyfh0z-33hPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.003 [XNIO-1 task-1] 7UUaJ2C8QGWyfh0z-33hPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.003 [XNIO-1 task-1] 7UUaJ2C8QGWyfh0z-33hPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.003 [XNIO-1 task-1] 7UUaJ2C8QGWyfh0z-33hPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.004 [XNIO-1 task-1] 7UUaJ2C8QGWyfh0z-33hPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.009 [XNIO-1 task-1] oCJWDUOoTWChENGmEA4E7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.009 [XNIO-1 task-1] oCJWDUOoTWChENGmEA4E7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.011 [XNIO-1 task-1] oCJWDUOoTWChENGmEA4E7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.012 [XNIO-1 task-1] oCJWDUOoTWChENGmEA4E7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.013 [XNIO-1 task-1] oCJWDUOoTWChENGmEA4E7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.023 [XNIO-1 task-1] 3I1bZGFCRfiarRgnRyvGvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.023 [XNIO-1 task-1] 3I1bZGFCRfiarRgnRyvGvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.023 [XNIO-1 task-1] 3I1bZGFCRfiarRgnRyvGvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.023 [XNIO-1 task-1] 3I1bZGFCRfiarRgnRyvGvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.024 [XNIO-1 task-1] 3I1bZGFCRfiarRgnRyvGvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.027 [XNIO-1 task-1] BqIaj2FOSK-2WLkVdoQK2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.027 [XNIO-1 task-1] BqIaj2FOSK-2WLkVdoQK2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.027 [XNIO-1 task-1] BqIaj2FOSK-2WLkVdoQK2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.027 [XNIO-1 task-1] BqIaj2FOSK-2WLkVdoQK2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.028 [XNIO-1 task-1] BqIaj2FOSK-2WLkVdoQK2g DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:49.029 [XNIO-1 task-1] BqIaj2FOSK-2WLkVdoQK2g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:49.032 [XNIO-1 task-1] _tuldPqrQG66Amy48VSy5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.032 [XNIO-1 task-1] _tuldPqrQG66Amy48VSy5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.032 [XNIO-1 task-1] _tuldPqrQG66Amy48VSy5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.032 [XNIO-1 task-1] _tuldPqrQG66Amy48VSy5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.038 [XNIO-1 task-1] Vg6a8eKiRhSIVMziUHlLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.038 [XNIO-1 task-1] Vg6a8eKiRhSIVMziUHlLhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.038 [XNIO-1 task-1] Vg6a8eKiRhSIVMziUHlLhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.038 [XNIO-1 task-1] Vg6a8eKiRhSIVMziUHlLhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.039 [XNIO-1 task-1] Vg6a8eKiRhSIVMziUHlLhw DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:49.039 [XNIO-1 task-1] Vg6a8eKiRhSIVMziUHlLhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:49.044 [XNIO-1 task-1] _VkiO-gzTi-xac091g2Ajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.044 [XNIO-1 task-1] _VkiO-gzTi-xac091g2Ajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.044 [XNIO-1 task-1] _VkiO-gzTi-xac091g2Ajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.044 [XNIO-1 task-1] _VkiO-gzTi-xac091g2Ajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.045 [XNIO-1 task-1] _VkiO-gzTi-xac091g2Ajg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.050 [XNIO-1 task-1] JJ381clcQQi4JPXkLzkmBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.050 [XNIO-1 task-1] JJ381clcQQi4JPXkLzkmBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.050 [XNIO-1 task-1] JJ381clcQQi4JPXkLzkmBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.050 [XNIO-1 task-1] JJ381clcQQi4JPXkLzkmBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.051 [XNIO-1 task-1] JJ381clcQQi4JPXkLzkmBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.060 [XNIO-1 task-1] ItNeynKHTqyFHF0ctd2WOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.060 [XNIO-1 task-1] ItNeynKHTqyFHF0ctd2WOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.060 [XNIO-1 task-1] ItNeynKHTqyFHF0ctd2WOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.061 [XNIO-1 task-1] ItNeynKHTqyFHF0ctd2WOg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.072 [XNIO-1 task-1] rlzILQFkQPC5o18itZvp2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.072 [XNIO-1 task-1] rlzILQFkQPC5o18itZvp2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.073 [XNIO-1 task-1] rlzILQFkQPC5o18itZvp2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.073 [XNIO-1 task-1] rlzILQFkQPC5o18itZvp2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.073 [XNIO-1 task-1] rlzILQFkQPC5o18itZvp2w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.078 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b30a47ed +18:00:49.080 [XNIO-1 task-1] dQmVPeGST2yKPY_VeSNFyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.080 [XNIO-1 task-1] dQmVPeGST2yKPY_VeSNFyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.080 [XNIO-1 task-1] dQmVPeGST2yKPY_VeSNFyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.080 [XNIO-1 task-1] dQmVPeGST2yKPY_VeSNFyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.081 [XNIO-1 task-1] dQmVPeGST2yKPY_VeSNFyg DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:49.081 [XNIO-1 task-1] dQmVPeGST2yKPY_VeSNFyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:49.084 [XNIO-1 task-1] LsRYp1SxReyFPlDYIw8rRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.084 [XNIO-1 task-1] LsRYp1SxReyFPlDYIw8rRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.085 [XNIO-1 task-1] LsRYp1SxReyFPlDYIw8rRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.085 [XNIO-1 task-1] LsRYp1SxReyFPlDYIw8rRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.085 [XNIO-1 task-1] LsRYp1SxReyFPlDYIw8rRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.089 [XNIO-1 task-1] HQPKf5T8T3yDPB8ABecDWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.089 [XNIO-1 task-1] HQPKf5T8T3yDPB8ABecDWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.089 [XNIO-1 task-1] HQPKf5T8T3yDPB8ABecDWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.089 [XNIO-1 task-1] HQPKf5T8T3yDPB8ABecDWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.089 [XNIO-1 task-1] HQPKf5T8T3yDPB8ABecDWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:49.090 [XNIO-1 task-1] HQPKf5T8T3yDPB8ABecDWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:49.098 [XNIO-1 task-1] yKE1krzTTdO3a10jRupxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.098 [XNIO-1 task-1] yKE1krzTTdO3a10jRupxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.098 [XNIO-1 task-1] yKE1krzTTdO3a10jRupxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.098 [XNIO-1 task-1] yKE1krzTTdO3a10jRupxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.099 [XNIO-1 task-1] yKE1krzTTdO3a10jRupxSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.106 [XNIO-1 task-1] FEb-CEaoTC-cArQt7nOMZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.107 [XNIO-1 task-1] FEb-CEaoTC-cArQt7nOMZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.107 [XNIO-1 task-1] FEb-CEaoTC-cArQt7nOMZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.107 [XNIO-1 task-1] FEb-CEaoTC-cArQt7nOMZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.107 [XNIO-1 task-1] FEb-CEaoTC-cArQt7nOMZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:49.107 [XNIO-1 task-1] FEb-CEaoTC-cArQt7nOMZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:49.113 [XNIO-1 task-1] OplZeNxAShe7ppZ7E1IwTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.113 [XNIO-1 task-1] OplZeNxAShe7ppZ7E1IwTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.113 [XNIO-1 task-1] OplZeNxAShe7ppZ7E1IwTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.114 [XNIO-1 task-1] OplZeNxAShe7ppZ7E1IwTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.114 [XNIO-1 task-1] OplZeNxAShe7ppZ7E1IwTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.124 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1876fb97-05bd-466c-8c56-f9aecefdd60f +18:00:49.126 [XNIO-1 task-1] y0H0uQzQQkiy9VhakuSaRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.126 [XNIO-1 task-1] y0H0uQzQQkiy9VhakuSaRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.126 [XNIO-1 task-1] y0H0uQzQQkiy9VhakuSaRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.127 [XNIO-1 task-1] y0H0uQzQQkiy9VhakuSaRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.128 [XNIO-1 task-1] y0H0uQzQQkiy9VhakuSaRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.147 [XNIO-1 task-1] O53_zUmAT7-2fL2hvuw5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.147 [XNIO-1 task-1] O53_zUmAT7-2fL2hvuw5ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.147 [XNIO-1 task-1] O53_zUmAT7-2fL2hvuw5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.148 [XNIO-1 task-1] O53_zUmAT7-2fL2hvuw5ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.148 [XNIO-1 task-1] O53_zUmAT7-2fL2hvuw5ZA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.155 [XNIO-1 task-1] N6xFrIy6RmKXQyRp9wb1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.155 [XNIO-1 task-1] N6xFrIy6RmKXQyRp9wb1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.155 [XNIO-1 task-1] N6xFrIy6RmKXQyRp9wb1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.156 [XNIO-1 task-1] N6xFrIy6RmKXQyRp9wb1tA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.166 [XNIO-1 task-1] y2KFMpkMSZSgEE9rpH8zew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.166 [XNIO-1 task-1] y2KFMpkMSZSgEE9rpH8zew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.166 [XNIO-1 task-1] y2KFMpkMSZSgEE9rpH8zew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.167 [XNIO-1 task-1] y2KFMpkMSZSgEE9rpH8zew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.167 [XNIO-1 task-1] y2KFMpkMSZSgEE9rpH8zew DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:49.167 [XNIO-1 task-1] y2KFMpkMSZSgEE9rpH8zew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:49.179 [XNIO-1 task-1] CA6323kXTiKO_SNwR1hdBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.179 [XNIO-1 task-1] CA6323kXTiKO_SNwR1hdBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.179 [XNIO-1 task-1] CA6323kXTiKO_SNwR1hdBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.180 [XNIO-1 task-1] CA6323kXTiKO_SNwR1hdBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.186 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.189 [XNIO-1 task-1] CA6323kXTiKO_SNwR1hdBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.193 [XNIO-1 task-1] InnIwgJ0SEqdVFjgkk8GzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.194 [XNIO-1 task-1] InnIwgJ0SEqdVFjgkk8GzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.194 [XNIO-1 task-1] InnIwgJ0SEqdVFjgkk8GzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.194 [XNIO-1 task-1] InnIwgJ0SEqdVFjgkk8GzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.195 [XNIO-1 task-1] InnIwgJ0SEqdVFjgkk8GzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:49.195 [XNIO-1 task-1] InnIwgJ0SEqdVFjgkk8GzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:49.198 [XNIO-1 task-1] rJ-8zkv8TFmL3u5zS29tdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.198 [XNIO-1 task-1] rJ-8zkv8TFmL3u5zS29tdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.198 [XNIO-1 task-1] rJ-8zkv8TFmL3u5zS29tdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.198 [XNIO-1 task-1] rJ-8zkv8TFmL3u5zS29tdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.199 [XNIO-1 task-1] rJ-8zkv8TFmL3u5zS29tdQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.206 [XNIO-1 task-1] XoFI8Z3_SiKWsJRRCM80iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.206 [XNIO-1 task-1] XoFI8Z3_SiKWsJRRCM80iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.206 [XNIO-1 task-1] XoFI8Z3_SiKWsJRRCM80iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.207 [XNIO-1 task-1] XoFI8Z3_SiKWsJRRCM80iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.207 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0edc559b +18:00:49.211 [XNIO-1 task-1] XoFI8Z3_SiKWsJRRCM80iQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.214 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0edc559b +18:00:49.216 [XNIO-1 task-1] BlZ9u5EJRHiFriNKk1R_uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.218 [XNIO-1 task-1] BlZ9u5EJRHiFriNKk1R_uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.218 [XNIO-1 task-1] BlZ9u5EJRHiFriNKk1R_uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.218 [XNIO-1 task-1] BlZ9u5EJRHiFriNKk1R_uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.219 [XNIO-1 task-1] BlZ9u5EJRHiFriNKk1R_uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:49.219 [XNIO-1 task-1] BlZ9u5EJRHiFriNKk1R_uQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:49.222 [XNIO-1 task-1] 6QWabLelQMaLkwMR3pqKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.222 [XNIO-1 task-1] 6QWabLelQMaLkwMR3pqKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.222 [XNIO-1 task-1] 6QWabLelQMaLkwMR3pqKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.222 [XNIO-1 task-1] 6QWabLelQMaLkwMR3pqKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.223 [XNIO-1 task-1] 6QWabLelQMaLkwMR3pqKUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.225 [XNIO-1 task-1] 9sB_ovRWSeKh0Z-1p5NnzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.225 [XNIO-1 task-1] 9sB_ovRWSeKh0Z-1p5NnzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.225 [XNIO-1 task-1] 9sB_ovRWSeKh0Z-1p5NnzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.226 [XNIO-1 task-1] 9sB_ovRWSeKh0Z-1p5NnzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.226 [XNIO-1 task-1] 9sB_ovRWSeKh0Z-1p5NnzA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.240 [XNIO-1 task-1] GZS5VMg0TGK4vFyTFwbuyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.240 [XNIO-1 task-1] GZS5VMg0TGK4vFyTFwbuyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.241 [XNIO-1 task-1] GZS5VMg0TGK4vFyTFwbuyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.241 [XNIO-1 task-1] GZS5VMg0TGK4vFyTFwbuyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.249 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0edc559b +18:00:49.284 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d5b8dcda +18:00:49.287 [XNIO-1 task-1] BfWgEjgES26gT3UDb0_vdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.287 [XNIO-1 task-1] BfWgEjgES26gT3UDb0_vdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.287 [XNIO-1 task-1] BfWgEjgES26gT3UDb0_vdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.287 [XNIO-1 task-1] BfWgEjgES26gT3UDb0_vdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.288 [XNIO-1 task-1] BfWgEjgES26gT3UDb0_vdg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.297 [XNIO-1 task-1] FxY99UCxRR2ChQKGJfIx8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.297 [XNIO-1 task-1] FxY99UCxRR2ChQKGJfIx8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.297 [XNIO-1 task-1] FxY99UCxRR2ChQKGJfIx8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.298 [XNIO-1 task-1] FxY99UCxRR2ChQKGJfIx8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.298 [XNIO-1 task-1] FxY99UCxRR2ChQKGJfIx8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:49.298 [XNIO-1 task-1] FxY99UCxRR2ChQKGJfIx8Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:49.306 [XNIO-1 task-1] r75CJjIgQIe46uBZUi9FLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.307 [XNIO-1 task-1] r75CJjIgQIe46uBZUi9FLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.307 [XNIO-1 task-1] r75CJjIgQIe46uBZUi9FLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.307 [XNIO-1 task-1] r75CJjIgQIe46uBZUi9FLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.307 [XNIO-1 task-1] r75CJjIgQIe46uBZUi9FLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.311 [XNIO-1 task-1] n3LGI8aaSCq7nAmEuKkl7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.311 [XNIO-1 task-1] n3LGI8aaSCq7nAmEuKkl7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.312 [XNIO-1 task-1] n3LGI8aaSCq7nAmEuKkl7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.312 [XNIO-1 task-1] n3LGI8aaSCq7nAmEuKkl7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.312 [XNIO-1 task-1] n3LGI8aaSCq7nAmEuKkl7w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.327 [XNIO-1 task-1] SgFP9eqQTJilodGGXX5JwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.327 [XNIO-1 task-1] SgFP9eqQTJilodGGXX5JwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.327 [XNIO-1 task-1] SgFP9eqQTJilodGGXX5JwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.327 [XNIO-1 task-1] SgFP9eqQTJilodGGXX5JwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.327 [XNIO-1 task-1] SgFP9eqQTJilodGGXX5JwA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.333 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:92a84cfc-9cd4-43af-a570-7ce757a23b2b +18:00:49.334 [XNIO-1 task-1] EEmdhUxfScibHAHb-StdHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1e18dfcb-8f54-4316-a2b7-fd950e5cc41b +18:00:49.334 [XNIO-1 task-1] EEmdhUxfScibHAHb-StdHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.334 [XNIO-1 task-1] EEmdhUxfScibHAHb-StdHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.334 [XNIO-1 task-1] EEmdhUxfScibHAHb-StdHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1e18dfcb-8f54-4316-a2b7-fd950e5cc41b +18:00:49.335 [XNIO-1 task-1] EEmdhUxfScibHAHb-StdHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1e18dfcb-8f54-4316-a2b7-fd950e5cc41b +18:00:49.347 [XNIO-1 task-1] e_vEBzZoRtikoOIiuYugzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.347 [XNIO-1 task-1] e_vEBzZoRtikoOIiuYugzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.348 [XNIO-1 task-1] e_vEBzZoRtikoOIiuYugzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.348 [XNIO-1 task-1] e_vEBzZoRtikoOIiuYugzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.348 [XNIO-1 task-1] e_vEBzZoRtikoOIiuYugzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.357 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a659445 +18:00:49.359 [XNIO-1 task-1] WRMqJT59QCatM-TwobAYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.359 [XNIO-1 task-1] WRMqJT59QCatM-TwobAYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.360 [XNIO-1 task-1] WRMqJT59QCatM-TwobAYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.360 [XNIO-1 task-1] WRMqJT59QCatM-TwobAYJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.368 [XNIO-1 task-1] rsPX9FNrQjOV33yiXvEf2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.368 [XNIO-1 task-1] rsPX9FNrQjOV33yiXvEf2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.368 [XNIO-1 task-1] rsPX9FNrQjOV33yiXvEf2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.368 [XNIO-1 task-1] rsPX9FNrQjOV33yiXvEf2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.369 [XNIO-1 task-1] rsPX9FNrQjOV33yiXvEf2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", refreshToken) +18:00:49.374 [XNIO-1 task-1] rsPX9FNrQjOV33yiXvEf2Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84b25b30-b709-4fc5-95dd-ef1d2a4d461b is not found.","severity":"ERROR"} +18:00:49.379 [XNIO-1 task-1] S5nyydEoTPeh1jYp9LIgew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.379 [XNIO-1 task-1] S5nyydEoTPeh1jYp9LIgew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.380 [XNIO-1 task-1] S5nyydEoTPeh1jYp9LIgew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.380 [XNIO-1 task-1] S5nyydEoTPeh1jYp9LIgew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.382 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2fac1eb4-59ec-4129-841c-0caf4b805948 +18:00:49.384 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2fac1eb4-59ec-4129-841c-0caf4b805948 +18:00:49.385 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a659445 +18:00:49.385 [XNIO-1 task-1] pOOgeM-5Tl6kpidKH2Zu2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.385 [XNIO-1 task-1] pOOgeM-5Tl6kpidKH2Zu2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.385 [XNIO-1 task-1] pOOgeM-5Tl6kpidKH2Zu2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.386 [XNIO-1 task-1] pOOgeM-5Tl6kpidKH2Zu2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.386 [XNIO-1 task-1] pOOgeM-5Tl6kpidKH2Zu2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.394 [XNIO-1 task-1] K-KpY6G6ST-kVkmrf1ukwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.394 [XNIO-1 task-1] K-KpY6G6ST-kVkmrf1ukwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.394 [XNIO-1 task-1] K-KpY6G6ST-kVkmrf1ukwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.395 [XNIO-1 task-1] K-KpY6G6ST-kVkmrf1ukwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.395 [XNIO-1 task-1] K-KpY6G6ST-kVkmrf1ukwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.406 [XNIO-1 task-1] RjlSjBHzQduHPrldk_97Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.406 [XNIO-1 task-1] RjlSjBHzQduHPrldk_97Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.406 [XNIO-1 task-1] RjlSjBHzQduHPrldk_97Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.406 [XNIO-1 task-1] RjlSjBHzQduHPrldk_97Iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.416 [XNIO-1 task-1] pa7hovcTQ8eJdXG1H9hLLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.417 [XNIO-1 task-1] pa7hovcTQ8eJdXG1H9hLLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.417 [XNIO-1 task-1] pa7hovcTQ8eJdXG1H9hLLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.418 [XNIO-1 task-1] pa7hovcTQ8eJdXG1H9hLLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.418 [XNIO-1 task-1] pa7hovcTQ8eJdXG1H9hLLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", refreshToken) +18:00:49.418 [XNIO-1 task-1] pa7hovcTQ8eJdXG1H9hLLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84b25b30-b709-4fc5-95dd-ef1d2a4d461b is not found.","severity":"ERROR"} +18:00:49.419 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5a659445 +18:00:49.421 [XNIO-1 task-1] E4J9n3hmTwmRA9FRlrxKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.421 [XNIO-1 task-1] E4J9n3hmTwmRA9FRlrxKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.421 [XNIO-1 task-1] E4J9n3hmTwmRA9FRlrxKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.421 [XNIO-1 task-1] E4J9n3hmTwmRA9FRlrxKGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.423 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0edc559b +18:00:49.424 [XNIO-1 task-1] E4J9n3hmTwmRA9FRlrxKGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84b25b30-b709-4fc5-95dd-ef1d2a4d461b is not found.","severity":"ERROR"} +18:00:49.427 [XNIO-1 task-1] QIG5Ag0mTpmoePWKO7DGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.427 [XNIO-1 task-1] QIG5Ag0mTpmoePWKO7DGZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.427 [XNIO-1 task-1] QIG5Ag0mTpmoePWKO7DGZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.427 [XNIO-1 task-1] QIG5Ag0mTpmoePWKO7DGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.428 [XNIO-1 task-1] QIG5Ag0mTpmoePWKO7DGZw DEBUG com.networknt.schema.TypeValidator debug - validate( "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", refreshToken) +18:00:49.428 [XNIO-1 task-1] QIG5Ag0mTpmoePWKO7DGZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84b25b30-b709-4fc5-95dd-ef1d2a4d461b is not found.","severity":"ERROR"} +18:00:49.436 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1625fcb7-f479-44f9-9c83-ba020d8bedf0 +18:00:49.436 [XNIO-1 task-1] HbIqa1PkTPqfnp--GRTGCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.436 [XNIO-1 task-1] HbIqa1PkTPqfnp--GRTGCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.436 [XNIO-1 task-1] HbIqa1PkTPqfnp--GRTGCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.436 [XNIO-1 task-1] HbIqa1PkTPqfnp--GRTGCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b, base path is set to: null +18:00:49.437 [XNIO-1 task-1] HbIqa1PkTPqfnp--GRTGCw DEBUG com.networknt.schema.TypeValidator debug - validate( "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", "84b25b30-b709-4fc5-95dd-ef1d2a4d461b", refreshToken) +18:00:49.439 [XNIO-1 task-1] HbIqa1PkTPqfnp--GRTGCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 84b25b30-b709-4fc5-95dd-ef1d2a4d461b is not found.","severity":"ERROR"} +18:00:49.443 [XNIO-1 task-1] _cNd4b5JRweWBy-ljlhOpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.443 [XNIO-1 task-1] _cNd4b5JRweWBy-ljlhOpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.443 [XNIO-1 task-1] _cNd4b5JRweWBy-ljlhOpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.444 [XNIO-1 task-1] _cNd4b5JRweWBy-ljlhOpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.445 [XNIO-1 task-1] _cNd4b5JRweWBy-ljlhOpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.449 [XNIO-1 task-1] XqJ-g2_QQdW8dq7I5bcT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.449 [XNIO-1 task-1] XqJ-g2_QQdW8dq7I5bcT6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.449 [XNIO-1 task-1] XqJ-g2_QQdW8dq7I5bcT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.450 [XNIO-1 task-1] XqJ-g2_QQdW8dq7I5bcT6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.451 [XNIO-1 task-1] XqJ-g2_QQdW8dq7I5bcT6A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.462 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e137f55e +18:00:49.468 [XNIO-1 task-1] sfON4jI6TySAou0_yuMg9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.468 [XNIO-1 task-1] sfON4jI6TySAou0_yuMg9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.469 [XNIO-1 task-1] sfON4jI6TySAou0_yuMg9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.469 [XNIO-1 task-1] sfON4jI6TySAou0_yuMg9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.469 [XNIO-1 task-1] sfON4jI6TySAou0_yuMg9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 84b25b30-b709-4fc5-95dd-ef1d2a4d461b +18:00:49.472 [XNIO-1 task-1] EFsrAoCmTFWuqSB-BDBbgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941, base path is set to: null +18:00:49.472 [XNIO-1 task-1] EFsrAoCmTFWuqSB-BDBbgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.472 [XNIO-1 task-1] EFsrAoCmTFWuqSB-BDBbgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.472 [XNIO-1 task-1] EFsrAoCmTFWuqSB-BDBbgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941, base path is set to: null +18:00:49.473 [XNIO-1 task-1] EFsrAoCmTFWuqSB-BDBbgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2234fab3-b10e-4685-91f3-f54e0378a941", "2234fab3-b10e-4685-91f3-f54e0378a941", refreshToken) +18:00:49.480 [XNIO-1 task-1] h6qu9lGuRSe6LQq9M4arjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941, base path is set to: null +18:00:49.480 [XNIO-1 task-1] h6qu9lGuRSe6LQq9M4arjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.480 [XNIO-1 task-1] h6qu9lGuRSe6LQq9M4arjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.481 [XNIO-1 task-1] h6qu9lGuRSe6LQq9M4arjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941, base path is set to: null +18:00:49.481 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e137f55e +18:00:49.481 [XNIO-1 task-1] h6qu9lGuRSe6LQq9M4arjA DEBUG com.networknt.schema.TypeValidator debug - validate( "2234fab3-b10e-4685-91f3-f54e0378a941", "2234fab3-b10e-4685-91f3-f54e0378a941", refreshToken) +18:00:49.483 [XNIO-1 task-1] h6qu9lGuRSe6LQq9M4arjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2234fab3-b10e-4685-91f3-f54e0378a941 is not found.","severity":"ERROR"} +18:00:49.488 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:49.489 [XNIO-1 task-1] 6aj56JNrSfCJcQ2ngCFU0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.489 [XNIO-1 task-1] 6aj56JNrSfCJcQ2ngCFU0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.490 [XNIO-1 task-1] 6aj56JNrSfCJcQ2ngCFU0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.490 [XNIO-1 task-1] 6aj56JNrSfCJcQ2ngCFU0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.490 [XNIO-1 task-1] 6aj56JNrSfCJcQ2ngCFU0A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.497 [XNIO-1 task-1] RE4VpvEQRk6wuDbdeW7JIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.497 [XNIO-1 task-1] RE4VpvEQRk6wuDbdeW7JIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.498 [XNIO-1 task-1] RE4VpvEQRk6wuDbdeW7JIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.498 [XNIO-1 task-1] RE4VpvEQRk6wuDbdeW7JIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.498 [XNIO-1 task-1] RE4VpvEQRk6wuDbdeW7JIg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.500 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d048de8 +18:00:49.506 [XNIO-1 task-1] IbExbOfmSDuFkbnhpgBHJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.506 [XNIO-1 task-1] IbExbOfmSDuFkbnhpgBHJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.506 [XNIO-1 task-1] IbExbOfmSDuFkbnhpgBHJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.507 [XNIO-1 task-1] IbExbOfmSDuFkbnhpgBHJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.513 [XNIO-1 task-1] StODnE39StyJ_sexuPkwYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.513 [XNIO-1 task-1] StODnE39StyJ_sexuPkwYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.513 [XNIO-1 task-1] StODnE39StyJ_sexuPkwYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.513 [XNIO-1 task-1] StODnE39StyJ_sexuPkwYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.513 [XNIO-1 task-1] StODnE39StyJ_sexuPkwYA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.520 [XNIO-1 task-1] hHUChT_dSLiCS-nEKNouCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.520 [XNIO-1 task-1] hHUChT_dSLiCS-nEKNouCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.521 [XNIO-1 task-1] hHUChT_dSLiCS-nEKNouCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.521 [XNIO-1 task-1] hHUChT_dSLiCS-nEKNouCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.522 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e137f55e +18:00:49.528 [XNIO-1 task-1] 1eoY6HojQvyvQaMlr6VMPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941, base path is set to: null +18:00:49.528 [XNIO-1 task-1] 1eoY6HojQvyvQaMlr6VMPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.528 [XNIO-1 task-1] 1eoY6HojQvyvQaMlr6VMPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.528 [XNIO-1 task-1] 1eoY6HojQvyvQaMlr6VMPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941, base path is set to: null +18:00:49.528 [XNIO-1 task-1] 1eoY6HojQvyvQaMlr6VMPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2234fab3-b10e-4685-91f3-f54e0378a941", "2234fab3-b10e-4685-91f3-f54e0378a941", refreshToken) +18:00:49.528 [XNIO-1 task-1] 1eoY6HojQvyvQaMlr6VMPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2234fab3-b10e-4685-91f3-f54e0378a941 is not found.","severity":"ERROR"} +18:00:49.532 [XNIO-1 task-1] KmeQA_dsQ3Kt8B1XXWNCug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.532 [XNIO-1 task-1] KmeQA_dsQ3Kt8B1XXWNCug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.532 [XNIO-1 task-1] KmeQA_dsQ3Kt8B1XXWNCug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.532 [XNIO-1 task-1] KmeQA_dsQ3Kt8B1XXWNCug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.541 [XNIO-1 task-1] x0YCYld6RPu-CPOGLZLryw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.541 [XNIO-1 task-1] x0YCYld6RPu-CPOGLZLryw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.541 [XNIO-1 task-1] x0YCYld6RPu-CPOGLZLryw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.542 [XNIO-1 task-1] x0YCYld6RPu-CPOGLZLryw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.542 [XNIO-1 task-1] x0YCYld6RPu-CPOGLZLryw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.551 [XNIO-1 task-1] Xm-aPRnsTi-zfWz1sLYMdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941 +18:00:49.551 [XNIO-1 task-1] Xm-aPRnsTi-zfWz1sLYMdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.551 [XNIO-1 task-1] Xm-aPRnsTi-zfWz1sLYMdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.551 [XNIO-1 task-1] Xm-aPRnsTi-zfWz1sLYMdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2234fab3-b10e-4685-91f3-f54e0378a941 +18:00:49.553 [XNIO-1 task-1] Xm-aPRnsTi-zfWz1sLYMdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2234fab3-b10e-4685-91f3-f54e0378a941 +18:00:49.561 [XNIO-1 task-1] NLBs-oNXRbOkgNUkYK_cZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a014058f-ebf9-48a9-ba25-36be1b11c9cb, base path is set to: null +18:00:49.562 [XNIO-1 task-1] NLBs-oNXRbOkgNUkYK_cZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.562 [XNIO-1 task-1] NLBs-oNXRbOkgNUkYK_cZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.562 [XNIO-1 task-1] NLBs-oNXRbOkgNUkYK_cZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a014058f-ebf9-48a9-ba25-36be1b11c9cb, base path is set to: null +18:00:49.562 [XNIO-1 task-1] NLBs-oNXRbOkgNUkYK_cZA DEBUG com.networknt.schema.TypeValidator debug - validate( "a014058f-ebf9-48a9-ba25-36be1b11c9cb", "a014058f-ebf9-48a9-ba25-36be1b11c9cb", refreshToken) +18:00:49.572 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:54b08a9d-7377-4809-8635-459d646448f5 +18:00:49.573 [XNIO-1 task-1] 2wz7qU5MRwKaFeGdJwwJjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.573 [XNIO-1 task-1] 2wz7qU5MRwKaFeGdJwwJjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.573 [XNIO-1 task-1] 2wz7qU5MRwKaFeGdJwwJjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.574 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:54b08a9d-7377-4809-8635-459d646448f5 +18:00:49.574 [XNIO-1 task-1] 2wz7qU5MRwKaFeGdJwwJjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.587 [XNIO-1 task-1] LlML-T60RQyMieULqPm_dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1e835343-191d-4f92-9a0e-6fbd2bcd4ee1, base path is set to: null +18:00:49.587 [XNIO-1 task-1] LlML-T60RQyMieULqPm_dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.587 [XNIO-1 task-1] LlML-T60RQyMieULqPm_dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.588 [XNIO-1 task-1] LlML-T60RQyMieULqPm_dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1e835343-191d-4f92-9a0e-6fbd2bcd4ee1, base path is set to: null +18:00:49.588 [XNIO-1 task-1] LlML-T60RQyMieULqPm_dA DEBUG com.networknt.schema.TypeValidator debug - validate( "1e835343-191d-4f92-9a0e-6fbd2bcd4ee1", "1e835343-191d-4f92-9a0e-6fbd2bcd4ee1", refreshToken) +18:00:49.597 [XNIO-1 task-1] FAsoxFJDQNq-xBuCAjkHCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.597 [XNIO-1 task-1] FAsoxFJDQNq-xBuCAjkHCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.597 [XNIO-1 task-1] FAsoxFJDQNq-xBuCAjkHCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.597 [XNIO-1 task-1] FAsoxFJDQNq-xBuCAjkHCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.598 [XNIO-1 task-1] FAsoxFJDQNq-xBuCAjkHCg DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:49.598 [XNIO-1 task-1] FAsoxFJDQNq-xBuCAjkHCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:49.601 [XNIO-1 task-1] XHUqabraTamWDG6r2HBDdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.601 [XNIO-1 task-1] XHUqabraTamWDG6r2HBDdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.601 [XNIO-1 task-1] XHUqabraTamWDG6r2HBDdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.602 [XNIO-1 task-1] XHUqabraTamWDG6r2HBDdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.602 [XNIO-1 task-1] XHUqabraTamWDG6r2HBDdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.603 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5a5e309d-3597-405e-9d5e-f6cb5bcb1eb4 +18:00:49.609 [XNIO-1 task-1] WP1-l8XHSFK84hjYZ2MTLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.609 [XNIO-1 task-1] WP1-l8XHSFK84hjYZ2MTLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.609 [XNIO-1 task-1] WP1-l8XHSFK84hjYZ2MTLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.610 [XNIO-1 task-1] WP1-l8XHSFK84hjYZ2MTLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.610 [XNIO-1 task-1] WP1-l8XHSFK84hjYZ2MTLg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.660 [XNIO-1 task-1] SUub2Ui2R-mJFbMGZ4T3DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.660 [XNIO-1 task-1] SUub2Ui2R-mJFbMGZ4T3DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.660 [XNIO-1 task-1] SUub2Ui2R-mJFbMGZ4T3DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.663 [XNIO-1 task-1] SUub2Ui2R-mJFbMGZ4T3DQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.663 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5a5e309d-3597-405e-9d5e-f6cb5bcb1eb4 +18:00:49.672 [XNIO-1 task-1] JpHhrHwHQNWJhSEurVEfEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.673 [XNIO-1 task-1] JpHhrHwHQNWJhSEurVEfEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.674 [XNIO-1 task-1] JpHhrHwHQNWJhSEurVEfEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.674 [XNIO-1 task-1] JpHhrHwHQNWJhSEurVEfEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.675 [XNIO-1 task-1] JpHhrHwHQNWJhSEurVEfEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.681 [XNIO-1 task-1] 4SyOe0r6RKSbgb6NzQ_NBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.682 [XNIO-1 task-1] 4SyOe0r6RKSbgb6NzQ_NBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.682 [XNIO-1 task-1] 4SyOe0r6RKSbgb6NzQ_NBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.682 [XNIO-1 task-1] 4SyOe0r6RKSbgb6NzQ_NBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:49.683 [XNIO-1 task-1] 4SyOe0r6RKSbgb6NzQ_NBw DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:49.684 [XNIO-1 task-1] 4SyOe0r6RKSbgb6NzQ_NBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:49.688 [XNIO-1 task-1] Dg8-Kx6CQJq1-5yZCYjdSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.688 [XNIO-1 task-1] Dg8-Kx6CQJq1-5yZCYjdSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.688 [XNIO-1 task-1] Dg8-Kx6CQJq1-5yZCYjdSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.688 [XNIO-1 task-1] Dg8-Kx6CQJq1-5yZCYjdSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.689 [XNIO-1 task-1] Dg8-Kx6CQJq1-5yZCYjdSw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.698 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f472191f-66c5-44f8-a745-71762b3e514b +18:00:49.699 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f472191f-66c5-44f8-a745-71762b3e514b +18:00:49.700 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8d048de8 +18:00:49.706 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3993ef55-ad26-489d-b331-1a045fc2a1d5 +18:00:49.708 [XNIO-1 task-1] wL67uc-OTWKX47cNXJM2KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.709 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c9dda7c5-1973-43ff-8993-d7a289e6708c +18:00:49.709 [XNIO-1 task-1] wL67uc-OTWKX47cNXJM2KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.709 [XNIO-1 task-1] wL67uc-OTWKX47cNXJM2KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.709 [XNIO-1 task-1] wL67uc-OTWKX47cNXJM2KA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.710 [XNIO-1 task-1] wL67uc-OTWKX47cNXJM2KA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.718 [XNIO-1 task-1] iBpuRpBjT4eAsxc_q7jPvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.718 [XNIO-1 task-1] iBpuRpBjT4eAsxc_q7jPvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.718 [XNIO-1 task-1] iBpuRpBjT4eAsxc_q7jPvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.719 [XNIO-1 task-1] iBpuRpBjT4eAsxc_q7jPvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.719 [XNIO-1 task-1] iBpuRpBjT4eAsxc_q7jPvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.724 [XNIO-1 task-1] Ml0yqdRcR2CwWTMv6wgmaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:49.724 [XNIO-1 task-1] Ml0yqdRcR2CwWTMv6wgmaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.724 [XNIO-1 task-1] Ml0yqdRcR2CwWTMv6wgmaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.724 [XNIO-1 task-1] Ml0yqdRcR2CwWTMv6wgmaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:49.725 [XNIO-1 task-1] Ml0yqdRcR2CwWTMv6wgmaA DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:49.725 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.732 [XNIO-1 task-1] Wi1HxkxOTNWWU9vSJoIC2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.733 [XNIO-1 task-1] Wi1HxkxOTNWWU9vSJoIC2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.733 [XNIO-1 task-1] Wi1HxkxOTNWWU9vSJoIC2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.734 [XNIO-1 task-1] Wi1HxkxOTNWWU9vSJoIC2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.734 [XNIO-1 task-1] Wi1HxkxOTNWWU9vSJoIC2g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.744 [XNIO-1 task-1] e2cN4XAIS_SQzXmA7ZERag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.744 [XNIO-1 task-1] e2cN4XAIS_SQzXmA7ZERag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.744 [XNIO-1 task-1] e2cN4XAIS_SQzXmA7ZERag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.744 [XNIO-1 task-1] e2cN4XAIS_SQzXmA7ZERag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.745 [XNIO-1 task-1] e2cN4XAIS_SQzXmA7ZERag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:49.753 [XNIO-1 task-1] gPVjjkToSc-kvYKGFZ841g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.753 [XNIO-1 task-1] gPVjjkToSc-kvYKGFZ841g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.753 [XNIO-1 task-1] gPVjjkToSc-kvYKGFZ841g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.754 [XNIO-1 task-1] gPVjjkToSc-kvYKGFZ841g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.754 [XNIO-1 task-1] gPVjjkToSc-kvYKGFZ841g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.765 [XNIO-1 task-1] c0FC0YvsS76wRx7b_w1d-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.765 [XNIO-1 task-1] c0FC0YvsS76wRx7b_w1d-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.765 [XNIO-1 task-1] c0FC0YvsS76wRx7b_w1d-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.765 [XNIO-1 task-1] c0FC0YvsS76wRx7b_w1d-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.766 [XNIO-1 task-1] c0FC0YvsS76wRx7b_w1d-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.771 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8d048de8 +18:00:49.775 [XNIO-1 task-1] 5t5nnBPnTEaaeAvu-ymhsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.775 [XNIO-1 task-1] 5t5nnBPnTEaaeAvu-ymhsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.775 [XNIO-1 task-1] 5t5nnBPnTEaaeAvu-ymhsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.775 [XNIO-1 task-1] 5t5nnBPnTEaaeAvu-ymhsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.776 [XNIO-1 task-1] 5t5nnBPnTEaaeAvu-ymhsw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.778 [XNIO-1 task-1] 5t5nnBPnTEaaeAvu-ymhsw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:49.784 [XNIO-1 task-1] M_4cMsZxRCW0zwdl7SOHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.784 [XNIO-1 task-1] M_4cMsZxRCW0zwdl7SOHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.784 [XNIO-1 task-1] M_4cMsZxRCW0zwdl7SOHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.784 [XNIO-1 task-1] M_4cMsZxRCW0zwdl7SOHog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.785 [XNIO-1 task-1] M_4cMsZxRCW0zwdl7SOHog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.792 [XNIO-1 task-1] LF2CvS41T_eCu6LoRYJYjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:49.793 [XNIO-1 task-1] LF2CvS41T_eCu6LoRYJYjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.793 [XNIO-1 task-1] LF2CvS41T_eCu6LoRYJYjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.793 [XNIO-1 task-1] LF2CvS41T_eCu6LoRYJYjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:49.793 [XNIO-1 task-1] LF2CvS41T_eCu6LoRYJYjw DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:49.793 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:49.794 [XNIO-1 task-1] LF2CvS41T_eCu6LoRYJYjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:49.795 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:aa741424 +18:00:49.798 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1db197e +18:00:49.798 [XNIO-1 task-1] bWqswcmGTfmv5T2XEY3mBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.798 [XNIO-1 task-1] bWqswcmGTfmv5T2XEY3mBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.798 [XNIO-1 task-1] bWqswcmGTfmv5T2XEY3mBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:49.799 [XNIO-1 task-1] bWqswcmGTfmv5T2XEY3mBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:49.799 [XNIO-1 task-1] bWqswcmGTfmv5T2XEY3mBQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:49.801 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1db197e +18:00:49.807 [XNIO-1 task-1] 4gRd9igSS-Ojv39UZDKleA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/467d626f-ff6b-4003-9e7d-5b047a3623b9 +18:00:49.807 [XNIO-1 task-1] 4gRd9igSS-Ojv39UZDKleA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.807 [XNIO-1 task-1] 4gRd9igSS-Ojv39UZDKleA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.808 [XNIO-1 task-1] 4gRd9igSS-Ojv39UZDKleA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/467d626f-ff6b-4003-9e7d-5b047a3623b9 +18:00:49.808 [XNIO-1 task-1] 4gRd9igSS-Ojv39UZDKleA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 467d626f-ff6b-4003-9e7d-5b047a3623b9 +18:00:49.814 [XNIO-1 task-1] VwoqhEqHShWBvSeS3hwqDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.814 [XNIO-1 task-1] VwoqhEqHShWBvSeS3hwqDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.814 [XNIO-1 task-1] VwoqhEqHShWBvSeS3hwqDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.814 [XNIO-1 task-1] VwoqhEqHShWBvSeS3hwqDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.827 [XNIO-1 task-1] 6o2zvK6ySw6sBiAQLxWhhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/76414ad0-33c8-46c6-b9ae-e8398a24813d, base path is set to: null +18:00:49.828 [XNIO-1 task-1] 6o2zvK6ySw6sBiAQLxWhhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.828 [XNIO-1 task-1] 6o2zvK6ySw6sBiAQLxWhhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.828 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:41e8387b +18:00:49.829 [XNIO-1 task-1] 6o2zvK6ySw6sBiAQLxWhhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.830 [XNIO-1 task-1] 6o2zvK6ySw6sBiAQLxWhhA DEBUG com.networknt.schema.TypeValidator debug - validate( "76414ad0-33c8-46c6-b9ae-e8398a24813d", "76414ad0-33c8-46c6-b9ae-e8398a24813d", refreshToken) +18:00:49.830 [XNIO-1 task-1] 6o2zvK6ySw6sBiAQLxWhhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 76414ad0-33c8-46c6-b9ae-e8398a24813d +18:00:49.838 [XNIO-1 task-1] dQmSfdSGTImbBnS-5q954g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:49.839 [XNIO-1 task-1] dQmSfdSGTImbBnS-5q954g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.839 [XNIO-1 task-1] dQmSfdSGTImbBnS-5q954g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.846 [XNIO-1 task-1] dQmSfdSGTImbBnS-5q954g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:49.846 [XNIO-1 task-1] dQmSfdSGTImbBnS-5q954g DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:49.847 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:49.856 [XNIO-1 task-1] 3zfgZgS6RWOsUYE0t4QtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.856 [XNIO-1 task-1] 3zfgZgS6RWOsUYE0t4QtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.856 [XNIO-1 task-1] 3zfgZgS6RWOsUYE0t4QtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.856 [XNIO-1 task-1] 3zfgZgS6RWOsUYE0t4QtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.857 [XNIO-1 task-1] 3zfgZgS6RWOsUYE0t4QtBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:49.861 [XNIO-1 task-1] EiQCJkUNTN6w95IprfA3Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/467d626f-ff6b-4003-9e7d-5b047a3623b9, base path is set to: null +18:00:49.862 [XNIO-1 task-1] EiQCJkUNTN6w95IprfA3Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.862 [XNIO-1 task-1] EiQCJkUNTN6w95IprfA3Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.863 [XNIO-1 task-1] EiQCJkUNTN6w95IprfA3Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/467d626f-ff6b-4003-9e7d-5b047a3623b9, base path is set to: null +18:00:49.863 [XNIO-1 task-1] EiQCJkUNTN6w95IprfA3Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "467d626f-ff6b-4003-9e7d-5b047a3623b9", "467d626f-ff6b-4003-9e7d-5b047a3623b9", refreshToken) +18:00:49.863 [XNIO-1 task-1] EiQCJkUNTN6w95IprfA3Tw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 467d626f-ff6b-4003-9e7d-5b047a3623b9 +18:00:49.873 [XNIO-1 task-1] 4xy5w3xwTCa54czUqwGfrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:49.873 [XNIO-1 task-1] 4xy5w3xwTCa54czUqwGfrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.873 [XNIO-1 task-1] 4xy5w3xwTCa54czUqwGfrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.873 [XNIO-1 task-1] 4xy5w3xwTCa54czUqwGfrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:49.874 [XNIO-1 task-1] 4xy5w3xwTCa54czUqwGfrw DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:49.874 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:49.882 [XNIO-1 task-1] sofe6BLfSAeaOUogoMo7Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.882 [XNIO-1 task-1] sofe6BLfSAeaOUogoMo7Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.882 [XNIO-1 task-1] sofe6BLfSAeaOUogoMo7Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:49.883 [XNIO-1 task-1] sofe6BLfSAeaOUogoMo7Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:49.883 [XNIO-1 task-1] sofe6BLfSAeaOUogoMo7Dw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:49.891 [XNIO-1 task-1] zJowz-KHT5uny_cUPJLUEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.891 [XNIO-1 task-1] zJowz-KHT5uny_cUPJLUEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.891 [XNIO-1 task-1] zJowz-KHT5uny_cUPJLUEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.891 [XNIO-1 task-1] zJowz-KHT5uny_cUPJLUEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.891 [XNIO-1 task-1] zJowz-KHT5uny_cUPJLUEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.900 [XNIO-1 task-1] R0364jZTTnGs5fdWJsVR1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.900 [XNIO-1 task-1] R0364jZTTnGs5fdWJsVR1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.901 [XNIO-1 task-1] R0364jZTTnGs5fdWJsVR1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.901 [XNIO-1 task-1] R0364jZTTnGs5fdWJsVR1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.901 [XNIO-1 task-1] R0364jZTTnGs5fdWJsVR1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:49.901 [XNIO-1 task-1] R0364jZTTnGs5fdWJsVR1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:49.906 [XNIO-1 task-1] UW6Jp5XCRg2E0TfS8kPdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.906 [XNIO-1 task-1] UW6Jp5XCRg2E0TfS8kPdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.906 [XNIO-1 task-1] UW6Jp5XCRg2E0TfS8kPdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.907 [XNIO-1 task-1] UW6Jp5XCRg2E0TfS8kPdcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.907 [XNIO-1 task-1] UW6Jp5XCRg2E0TfS8kPdcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.910 [XNIO-1 task-1] Ng1C8RoyQI-fpydIw7yQrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.911 [XNIO-1 task-1] Ng1C8RoyQI-fpydIw7yQrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.911 [XNIO-1 task-1] Ng1C8RoyQI-fpydIw7yQrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.911 [XNIO-1 task-1] Ng1C8RoyQI-fpydIw7yQrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.911 [XNIO-1 task-1] Ng1C8RoyQI-fpydIw7yQrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:49.912 [XNIO-1 task-1] Ng1C8RoyQI-fpydIw7yQrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:49.912 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e137f55e +18:00:49.914 [XNIO-1 task-1] _1itqg8MRLK4E0fzV-ZfJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.915 [XNIO-1 task-1] _1itqg8MRLK4E0fzV-ZfJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.915 [XNIO-1 task-1] _1itqg8MRLK4E0fzV-ZfJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.915 [XNIO-1 task-1] _1itqg8MRLK4E0fzV-ZfJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.915 [XNIO-1 task-1] _1itqg8MRLK4E0fzV-ZfJA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.929 [XNIO-1 task-1] U574NSuXR5Kxc5xjm3hAww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.929 [XNIO-1 task-1] U574NSuXR5Kxc5xjm3hAww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.929 [XNIO-1 task-1] U574NSuXR5Kxc5xjm3hAww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.929 [XNIO-1 task-1] U574NSuXR5Kxc5xjm3hAww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.930 [XNIO-1 task-1] U574NSuXR5Kxc5xjm3hAww DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:49.930 [XNIO-1 task-1] U574NSuXR5Kxc5xjm3hAww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:49.940 [XNIO-1 task-1] Tc8KsPppQOuO2LotwKnV8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.940 [XNIO-1 task-1] Tc8KsPppQOuO2LotwKnV8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.940 [XNIO-1 task-1] Tc8KsPppQOuO2LotwKnV8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.940 [XNIO-1 task-1] Tc8KsPppQOuO2LotwKnV8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:49.944 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e137f55e +18:00:49.946 [XNIO-1 task-1] 0SPUFn-4RO-Ew1A8T_Dlmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.947 [XNIO-1 task-1] 0SPUFn-4RO-Ew1A8T_Dlmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.947 [XNIO-1 task-1] 0SPUFn-4RO-Ew1A8T_Dlmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.947 [XNIO-1 task-1] 0SPUFn-4RO-Ew1A8T_Dlmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.947 [XNIO-1 task-1] 0SPUFn-4RO-Ew1A8T_Dlmw DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:49.948 [XNIO-1 task-1] 0SPUFn-4RO-Ew1A8T_Dlmw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:49.955 [XNIO-1 task-1] z1QJgbffSTi9lM-Vcy1DBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.955 [XNIO-1 task-1] z1QJgbffSTi9lM-Vcy1DBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.955 [XNIO-1 task-1] z1QJgbffSTi9lM-Vcy1DBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.955 [XNIO-1 task-1] z1QJgbffSTi9lM-Vcy1DBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.956 [XNIO-1 task-1] z1QJgbffSTi9lM-Vcy1DBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.964 [XNIO-1 task-1] TWYdzInHS0CU-OLN8VbFvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.965 [XNIO-1 task-1] TWYdzInHS0CU-OLN8VbFvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.965 [XNIO-1 task-1] TWYdzInHS0CU-OLN8VbFvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.965 [XNIO-1 task-1] TWYdzInHS0CU-OLN8VbFvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.965 [XNIO-1 task-1] TWYdzInHS0CU-OLN8VbFvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:49.965 [XNIO-1 task-1] TWYdzInHS0CU-OLN8VbFvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:49.970 [XNIO-1 task-1] gCBDEydwTzK3nk5VcKu1RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.970 [XNIO-1 task-1] gCBDEydwTzK3nk5VcKu1RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.970 [XNIO-1 task-1] gCBDEydwTzK3nk5VcKu1RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:49.970 [XNIO-1 task-1] gCBDEydwTzK3nk5VcKu1RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.971 [XNIO-1 task-1] gCBDEydwTzK3nk5VcKu1RA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:49.983 [XNIO-1 task-1] 92XVfSSxRYS_ORhOgdAa_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.983 [XNIO-1 task-1] 92XVfSSxRYS_ORhOgdAa_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:49.984 [XNIO-1 task-1] 92XVfSSxRYS_ORhOgdAa_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:49.984 [XNIO-1 task-1] 92XVfSSxRYS_ORhOgdAa_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:49.985 [XNIO-1 task-1] 92XVfSSxRYS_ORhOgdAa_g DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:49.985 [XNIO-1 task-1] 92XVfSSxRYS_ORhOgdAa_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:49.999 [XNIO-1 task-1] TKDYR-K_QNGstSUTOt7lqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.999 [XNIO-1 task-1] TKDYR-K_QNGstSUTOt7lqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.999 [XNIO-1 task-1] TKDYR-K_QNGstSUTOt7lqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:49.999 [XNIO-1 task-1] TKDYR-K_QNGstSUTOt7lqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.003 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e137f55e +18:00:50.007 [XNIO-1 task-1] fW4uFZbSQ7GfyBKWUiIizw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.007 [XNIO-1 task-1] fW4uFZbSQ7GfyBKWUiIizw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.007 [XNIO-1 task-1] fW4uFZbSQ7GfyBKWUiIizw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.007 [XNIO-1 task-1] fW4uFZbSQ7GfyBKWUiIizw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.008 [XNIO-1 task-1] fW4uFZbSQ7GfyBKWUiIizw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.016 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9877020e +18:00:50.019 [XNIO-1 task-1] 6SrSw3SRRpmDPZLzzTEfjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.019 [XNIO-1 task-1] 6SrSw3SRRpmDPZLzzTEfjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.019 [XNIO-1 task-1] 6SrSw3SRRpmDPZLzzTEfjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.019 [XNIO-1 task-1] 6SrSw3SRRpmDPZLzzTEfjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.020 [XNIO-1 task-1] 6SrSw3SRRpmDPZLzzTEfjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:50.020 [XNIO-1 task-1] 6SrSw3SRRpmDPZLzzTEfjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:50.026 [XNIO-1 task-1] xLPMr2b-QLeVleWDW_ADjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.026 [XNIO-1 task-1] xLPMr2b-QLeVleWDW_ADjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.026 [XNIO-1 task-1] xLPMr2b-QLeVleWDW_ADjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.027 [XNIO-1 task-1] xLPMr2b-QLeVleWDW_ADjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.027 [XNIO-1 task-1] xLPMr2b-QLeVleWDW_ADjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.033 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9877020e +18:00:50.034 [XNIO-1 task-1] fMldRBomT_yEia_t00ot-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.035 [XNIO-1 task-1] fMldRBomT_yEia_t00ot-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.035 [XNIO-1 task-1] fMldRBomT_yEia_t00ot-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.035 [XNIO-1 task-1] fMldRBomT_yEia_t00ot-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.035 [XNIO-1 task-1] fMldRBomT_yEia_t00ot-w DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:50.036 [XNIO-1 task-1] fMldRBomT_yEia_t00ot-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:50.040 [XNIO-1 task-1] 7YC2wwz7RzKews8YhGyMlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.040 [XNIO-1 task-1] 7YC2wwz7RzKews8YhGyMlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.040 [XNIO-1 task-1] 7YC2wwz7RzKews8YhGyMlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.040 [XNIO-1 task-1] 7YC2wwz7RzKews8YhGyMlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.041 [XNIO-1 task-1] 7YC2wwz7RzKews8YhGyMlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.049 [XNIO-1 task-1] o3qWUcpgS2ado31Ug9yClQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.050 [XNIO-1 task-1] o3qWUcpgS2ado31Ug9yClQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.051 [XNIO-1 task-1] o3qWUcpgS2ado31Ug9yClQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.051 [XNIO-1 task-1] o3qWUcpgS2ado31Ug9yClQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.051 [XNIO-1 task-1] o3qWUcpgS2ado31Ug9yClQ DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:50.051 [XNIO-1 task-1] o3qWUcpgS2ado31Ug9yClQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:50.057 [XNIO-1 task-1] zUi6fHgvQi2v3QqdZS1kEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.057 [XNIO-1 task-1] zUi6fHgvQi2v3QqdZS1kEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.057 [XNIO-1 task-1] zUi6fHgvQi2v3QqdZS1kEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.057 [XNIO-1 task-1] zUi6fHgvQi2v3QqdZS1kEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.058 [XNIO-1 task-1] zUi6fHgvQi2v3QqdZS1kEw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.059 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9877020e +18:00:50.067 [XNIO-1 task-1] OxBSzSzTQsCKA7fZqUeaOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.068 [XNIO-1 task-1] OxBSzSzTQsCKA7fZqUeaOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.068 [XNIO-1 task-1] OxBSzSzTQsCKA7fZqUeaOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.068 [XNIO-1 task-1] OxBSzSzTQsCKA7fZqUeaOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.068 [XNIO-1 task-1] OxBSzSzTQsCKA7fZqUeaOg DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:50.069 [XNIO-1 task-1] OxBSzSzTQsCKA7fZqUeaOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:50.081 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f5c3ac85 +18:00:50.081 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:41e8387b +18:00:50.082 [XNIO-1 task-1] iDKyPrLZRIa9KaX8xxAYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.082 [XNIO-1 task-1] iDKyPrLZRIa9KaX8xxAYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.082 [XNIO-1 task-1] iDKyPrLZRIa9KaX8xxAYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.082 [XNIO-1 task-1] iDKyPrLZRIa9KaX8xxAYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.083 [XNIO-1 task-1] iDKyPrLZRIa9KaX8xxAYUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.091 [XNIO-1 task-1] 74v6oKcvRtOwODLt3O2vDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.092 [XNIO-1 task-1] 74v6oKcvRtOwODLt3O2vDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.092 [XNIO-1 task-1] 74v6oKcvRtOwODLt3O2vDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.092 [XNIO-1 task-1] 74v6oKcvRtOwODLt3O2vDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:50.093 [XNIO-1 task-1] 74v6oKcvRtOwODLt3O2vDw DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:50.093 [XNIO-1 task-1] 74v6oKcvRtOwODLt3O2vDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:50.102 [XNIO-1 task-1] lmH5CrFcSRe9jUQ6LKDSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.102 [XNIO-1 task-1] lmH5CrFcSRe9jUQ6LKDSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.102 [XNIO-1 task-1] lmH5CrFcSRe9jUQ6LKDSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.102 [XNIO-1 task-1] lmH5CrFcSRe9jUQ6LKDSew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.103 [XNIO-1 task-1] lmH5CrFcSRe9jUQ6LKDSew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.108 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f5c3ac85 +18:00:50.110 [XNIO-1 task-1] -4N6FugYTyCrsQ6Rla9fdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/525ebb7f-ae93-4a02-b3f7-68d659c8451c, base path is set to: null +18:00:50.111 [XNIO-1 task-1] -4N6FugYTyCrsQ6Rla9fdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.111 [XNIO-1 task-1] -4N6FugYTyCrsQ6Rla9fdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.111 [XNIO-1 task-1] -4N6FugYTyCrsQ6Rla9fdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/525ebb7f-ae93-4a02-b3f7-68d659c8451c, base path is set to: null +18:00:50.111 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5a659445 +18:00:50.111 [XNIO-1 task-1] -4N6FugYTyCrsQ6Rla9fdQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 525ebb7f-ae93-4a02-b3f7-68d659c8451c +18:00:50.120 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f5c3ac85 +18:00:50.137 [XNIO-1 task-1] TxE31ZxsRnuzsTa_qlekog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1e835343-191d-4f92-9a0e-6fbd2bcd4ee1, base path is set to: null +18:00:50.138 [XNIO-1 task-1] TxE31ZxsRnuzsTa_qlekog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.138 [XNIO-1 task-1] TxE31ZxsRnuzsTa_qlekog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.138 [XNIO-1 task-1] TxE31ZxsRnuzsTa_qlekog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1e835343-191d-4f92-9a0e-6fbd2bcd4ee1, base path is set to: null +18:00:50.138 [XNIO-1 task-1] TxE31ZxsRnuzsTa_qlekog DEBUG com.networknt.schema.TypeValidator debug - validate( "1e835343-191d-4f92-9a0e-6fbd2bcd4ee1", "1e835343-191d-4f92-9a0e-6fbd2bcd4ee1", refreshToken) +18:00:50.144 [XNIO-1 task-1] TxE31ZxsRnuzsTa_qlekog ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1e835343-191d-4f92-9a0e-6fbd2bcd4ee1 is not found.","severity":"ERROR"} +18:00:50.153 [XNIO-1 task-1] VFjLFf3gTAmkHgiHWPcP6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.153 [XNIO-1 task-1] VFjLFf3gTAmkHgiHWPcP6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.153 [XNIO-1 task-1] VFjLFf3gTAmkHgiHWPcP6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.154 [XNIO-1 task-1] VFjLFf3gTAmkHgiHWPcP6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.161 [XNIO-1 task-1] ojQSWiEbR-uDQjpBH-nXaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.161 [XNIO-1 task-1] ojQSWiEbR-uDQjpBH-nXaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.161 [XNIO-1 task-1] ojQSWiEbR-uDQjpBH-nXaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.161 [XNIO-1 task-1] ojQSWiEbR-uDQjpBH-nXaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.162 [XNIO-1 task-1] ojQSWiEbR-uDQjpBH-nXaA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.174 [XNIO-1 task-1] zdrG7LcISJOdOf2xPXCELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.175 [XNIO-1 task-1] zdrG7LcISJOdOf2xPXCELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.175 [XNIO-1 task-1] zdrG7LcISJOdOf2xPXCELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.176 [XNIO-1 task-1] zdrG7LcISJOdOf2xPXCELg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.184 [XNIO-1 task-1] Xm9XdbB5Sgur3YE4XmSGSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:50.185 [XNIO-1 task-1] Xm9XdbB5Sgur3YE4XmSGSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.185 [XNIO-1 task-1] Xm9XdbB5Sgur3YE4XmSGSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.185 [XNIO-1 task-1] Xm9XdbB5Sgur3YE4XmSGSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:50.186 [XNIO-1 task-1] Xm9XdbB5Sgur3YE4XmSGSA DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:50.186 [XNIO-1 task-1] Xm9XdbB5Sgur3YE4XmSGSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:50.189 [XNIO-1 task-1] -MZdWJb7Qt-ybp-U_td04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.189 [XNIO-1 task-1] -MZdWJb7Qt-ybp-U_td04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.189 [XNIO-1 task-1] -MZdWJb7Qt-ybp-U_td04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.189 [XNIO-1 task-1] -MZdWJb7Qt-ybp-U_td04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.190 [XNIO-1 task-1] -MZdWJb7Qt-ybp-U_td04g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.197 [XNIO-1 task-1] FgR-2c5bRqSTpf1mJcKtcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:50.198 [XNIO-1 task-1] FgR-2c5bRqSTpf1mJcKtcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.198 [XNIO-1 task-1] FgR-2c5bRqSTpf1mJcKtcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.198 [XNIO-1 task-1] FgR-2c5bRqSTpf1mJcKtcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:50.198 [XNIO-1 task-1] FgR-2c5bRqSTpf1mJcKtcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:50.199 [XNIO-1 task-1] FgR-2c5bRqSTpf1mJcKtcQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:50.203 [XNIO-1 task-1] SAKK9mnlQimSZoJ5idrx6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.204 [XNIO-1 task-1] SAKK9mnlQimSZoJ5idrx6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.204 [XNIO-1 task-1] SAKK9mnlQimSZoJ5idrx6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.211 [XNIO-1 task-1] SAKK9mnlQimSZoJ5idrx6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.219 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7591d214 +18:00:50.224 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7591d214 +18:00:50.237 [XNIO-1 task-1] WiWIq7MXQEmdUbqTY4gaWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.237 [XNIO-1 task-1] WiWIq7MXQEmdUbqTY4gaWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.237 [XNIO-1 task-1] WiWIq7MXQEmdUbqTY4gaWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.238 [XNIO-1 task-1] WiWIq7MXQEmdUbqTY4gaWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.238 [XNIO-1 task-1] WiWIq7MXQEmdUbqTY4gaWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.248 [XNIO-1 task-1] FZDjKPTPRguHqFrZ3T9jOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:50.248 [XNIO-1 task-1] FZDjKPTPRguHqFrZ3T9jOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.248 [XNIO-1 task-1] FZDjKPTPRguHqFrZ3T9jOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.248 [XNIO-1 task-1] FZDjKPTPRguHqFrZ3T9jOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7, base path is set to: null +18:00:50.249 [XNIO-1 task-1] FZDjKPTPRguHqFrZ3T9jOA DEBUG com.networknt.schema.TypeValidator debug - validate( "66ba1a61-00f2-40c5-b778-9d40517156c7", "66ba1a61-00f2-40c5-b778-9d40517156c7", refreshToken) +18:00:50.249 [XNIO-1 task-1] FZDjKPTPRguHqFrZ3T9jOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 66ba1a61-00f2-40c5-b778-9d40517156c7 is not found.","severity":"ERROR"} +18:00:50.256 [XNIO-1 task-1] Aaldf8esRZ2rW_xBC3xOjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.256 [XNIO-1 task-1] Aaldf8esRZ2rW_xBC3xOjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.256 [XNIO-1 task-1] Aaldf8esRZ2rW_xBC3xOjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.256 [XNIO-1 task-1] Aaldf8esRZ2rW_xBC3xOjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.257 [XNIO-1 task-1] Aaldf8esRZ2rW_xBC3xOjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.258 [XNIO-1 task-1] Aaldf8esRZ2rW_xBC3xOjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:50.268 [XNIO-1 task-1] RmUOpXNORU6MFGieSpf_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.269 [XNIO-1 task-1] RmUOpXNORU6MFGieSpf_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.269 [XNIO-1 task-1] RmUOpXNORU6MFGieSpf_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.269 [XNIO-1 task-1] RmUOpXNORU6MFGieSpf_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.269 [XNIO-1 task-1] RmUOpXNORU6MFGieSpf_yA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.284 [XNIO-1 task-1] ewc6LwfpSKqEG1y3AYqA5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.284 [XNIO-1 task-1] ewc6LwfpSKqEG1y3AYqA5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.284 [XNIO-1 task-1] ewc6LwfpSKqEG1y3AYqA5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.285 [XNIO-1 task-1] ewc6LwfpSKqEG1y3AYqA5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.285 [XNIO-1 task-1] ewc6LwfpSKqEG1y3AYqA5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:50.286 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.294 [XNIO-1 task-1] l6UEOP4xTXaBcM7-QcJrXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.294 [XNIO-1 task-1] l6UEOP4xTXaBcM7-QcJrXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.294 [XNIO-1 task-1] l6UEOP4xTXaBcM7-QcJrXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.295 [XNIO-1 task-1] l6UEOP4xTXaBcM7-QcJrXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.295 [XNIO-1 task-1] l6UEOP4xTXaBcM7-QcJrXg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.307 [XNIO-1 task-1] ECVWqElERsO1wsKW9r_jkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.307 [XNIO-1 task-1] ECVWqElERsO1wsKW9r_jkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.307 [XNIO-1 task-1] ECVWqElERsO1wsKW9r_jkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.307 [XNIO-1 task-1] ECVWqElERsO1wsKW9r_jkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.308 [XNIO-1 task-1] ECVWqElERsO1wsKW9r_jkg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:50.317 [XNIO-1 task-1] InE1ulZNR2SxbpjxRKNx9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.318 [XNIO-1 task-1] InE1ulZNR2SxbpjxRKNx9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.318 [XNIO-1 task-1] InE1ulZNR2SxbpjxRKNx9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.318 [XNIO-1 task-1] InE1ulZNR2SxbpjxRKNx9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.318 [XNIO-1 task-1] InE1ulZNR2SxbpjxRKNx9A DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:50.319 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.322 [XNIO-1 task-1] InE1ulZNR2SxbpjxRKNx9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:50.330 [XNIO-1 task-1] O6_du2g_SFy2jjnNwcfEEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.331 [XNIO-1 task-1] O6_du2g_SFy2jjnNwcfEEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.334 [XNIO-1 task-1] O6_du2g_SFy2jjnNwcfEEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.334 [XNIO-1 task-1] O6_du2g_SFy2jjnNwcfEEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.334 [XNIO-1 task-1] O6_du2g_SFy2jjnNwcfEEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:50.335 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.340 [XNIO-1 task-1] kqby8fv0R-mTZXFqP9tJLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.340 [XNIO-1 task-1] kqby8fv0R-mTZXFqP9tJLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.341 [XNIO-1 task-1] kqby8fv0R-mTZXFqP9tJLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.341 [XNIO-1 task-1] kqby8fv0R-mTZXFqP9tJLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.341 [XNIO-1 task-1] kqby8fv0R-mTZXFqP9tJLw DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:50.341 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.342 [XNIO-1 task-1] kqby8fv0R-mTZXFqP9tJLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:50.347 [XNIO-1 task-1] x7Ja3BxqT3e9Eekt-hqllQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.347 [XNIO-1 task-1] x7Ja3BxqT3e9Eekt-hqllQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.348 [XNIO-1 task-1] x7Ja3BxqT3e9Eekt-hqllQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.348 [XNIO-1 task-1] x7Ja3BxqT3e9Eekt-hqllQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.348 [XNIO-1 task-1] x7Ja3BxqT3e9Eekt-hqllQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.359 [XNIO-1 task-1] RPeVP4AERtS7fnHLzK8wxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.359 [XNIO-1 task-1] RPeVP4AERtS7fnHLzK8wxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.359 [XNIO-1 task-1] RPeVP4AERtS7fnHLzK8wxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.359 [XNIO-1 task-1] RPeVP4AERtS7fnHLzK8wxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.359 [XNIO-1 task-1] RPeVP4AERtS7fnHLzK8wxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.370 [XNIO-1 task-1] 6fCKDzS1Si2yVmycoM-lOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.370 [XNIO-1 task-1] 6fCKDzS1Si2yVmycoM-lOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.371 [XNIO-1 task-1] 6fCKDzS1Si2yVmycoM-lOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.371 [XNIO-1 task-1] 6fCKDzS1Si2yVmycoM-lOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.381 [XNIO-1 task-1] D6pE77WNTCaH858oTVQNKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.381 [XNIO-1 task-1] D6pE77WNTCaH858oTVQNKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.381 [XNIO-1 task-1] D6pE77WNTCaH858oTVQNKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.382 [XNIO-1 task-1] D6pE77WNTCaH858oTVQNKw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.382 [XNIO-1 task-1] D6pE77WNTCaH858oTVQNKw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.389 [XNIO-1 task-1] 2CVLka8DSsGFYwGBO73fTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.389 [XNIO-1 task-1] 2CVLka8DSsGFYwGBO73fTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.389 [XNIO-1 task-1] 2CVLka8DSsGFYwGBO73fTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.390 [XNIO-1 task-1] 2CVLka8DSsGFYwGBO73fTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.399 [XNIO-1 task-1] fOohuGegQe2crGaQ2zz5eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:50.399 [XNIO-1 task-1] fOohuGegQe2crGaQ2zz5eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.400 [XNIO-1 task-1] fOohuGegQe2crGaQ2zz5eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.400 [XNIO-1 task-1] fOohuGegQe2crGaQ2zz5eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:50.400 [XNIO-1 task-1] fOohuGegQe2crGaQ2zz5eA DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:50.400 [XNIO-1 task-1] fOohuGegQe2crGaQ2zz5eA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:50.405 [XNIO-1 task-1] n6xc3NUyQJ-JO9tCPE4G7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.406 [XNIO-1 task-1] n6xc3NUyQJ-JO9tCPE4G7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.406 [XNIO-1 task-1] n6xc3NUyQJ-JO9tCPE4G7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.406 [XNIO-1 task-1] n6xc3NUyQJ-JO9tCPE4G7w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.412 [XNIO-1 task-1] 0uAXwOeIRuWiLIqU8YfLiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:50.412 [XNIO-1 task-1] 0uAXwOeIRuWiLIqU8YfLiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.412 [XNIO-1 task-1] 0uAXwOeIRuWiLIqU8YfLiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.412 [XNIO-1 task-1] 0uAXwOeIRuWiLIqU8YfLiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:50.413 [XNIO-1 task-1] 0uAXwOeIRuWiLIqU8YfLiw DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:50.415 [XNIO-1 task-1] 0uAXwOeIRuWiLIqU8YfLiw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:50.419 [XNIO-1 task-1] Eg3dNavyRHKYecv2wbS7mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:50.419 [XNIO-1 task-1] Eg3dNavyRHKYecv2wbS7mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.419 [XNIO-1 task-1] Eg3dNavyRHKYecv2wbS7mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.420 [XNIO-1 task-1] Eg3dNavyRHKYecv2wbS7mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:50.421 [XNIO-1 task-1] Eg3dNavyRHKYecv2wbS7mg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:50.422 [XNIO-1 task-1] Eg3dNavyRHKYecv2wbS7mg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9d090ab-1e45-4b41-91d8-3807d22fa50c is not found.","severity":"ERROR"} +18:00:50.429 [XNIO-1 task-1] AHWLGAKSTJiiaRsrBtmtlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:50.429 [XNIO-1 task-1] AHWLGAKSTJiiaRsrBtmtlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.431 [XNIO-1 task-1] AHWLGAKSTJiiaRsrBtmtlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.431 [XNIO-1 task-1] AHWLGAKSTJiiaRsrBtmtlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:50.432 [XNIO-1 task-1] AHWLGAKSTJiiaRsrBtmtlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:50.438 [XNIO-1 task-1] nZAl6h_lRo2xJCe4jXuWJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:50.438 [XNIO-1 task-1] nZAl6h_lRo2xJCe4jXuWJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.438 [XNIO-1 task-1] nZAl6h_lRo2xJCe4jXuWJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.439 [XNIO-1 task-1] nZAl6h_lRo2xJCe4jXuWJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:50.439 [XNIO-1 task-1] nZAl6h_lRo2xJCe4jXuWJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:50.439 [XNIO-1 task-1] nZAl6h_lRo2xJCe4jXuWJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:50.444 [XNIO-1 task-1] QdjPMJvuSGKVTXU3NrDx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:50.444 [XNIO-1 task-1] QdjPMJvuSGKVTXU3NrDx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.444 [XNIO-1 task-1] QdjPMJvuSGKVTXU3NrDx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.444 [XNIO-1 task-1] QdjPMJvuSGKVTXU3NrDx5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:50.444 [XNIO-1 task-1] QdjPMJvuSGKVTXU3NrDx5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:50.446 [XNIO-1 task-1] QdjPMJvuSGKVTXU3NrDx5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9d090ab-1e45-4b41-91d8-3807d22fa50c is not found.","severity":"ERROR"} +18:00:50.449 [XNIO-1 task-1] 30HVkWMyS0mD0-BGRwDWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:50.450 [XNIO-1 task-1] 30HVkWMyS0mD0-BGRwDWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.450 [XNIO-1 task-1] 30HVkWMyS0mD0-BGRwDWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.450 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dd63e0c9 +18:00:50.450 [XNIO-1 task-1] 30HVkWMyS0mD0-BGRwDWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:50.450 [XNIO-1 task-1] 30HVkWMyS0mD0-BGRwDWEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:50.453 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dd63e0c9 +18:00:50.458 [XNIO-1 task-1] 2mKzZVRZRvOs56Ri4gHnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a732a86b-a94a-4fb6-948c-e41414584daa +18:00:50.459 [XNIO-1 task-1] 2mKzZVRZRvOs56Ri4gHnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.459 [XNIO-1 task-1] 2mKzZVRZRvOs56Ri4gHnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.459 [XNIO-1 task-1] 2mKzZVRZRvOs56Ri4gHnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a732a86b-a94a-4fb6-948c-e41414584daa +18:00:50.459 [XNIO-1 task-1] 2mKzZVRZRvOs56Ri4gHnZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a732a86b-a94a-4fb6-948c-e41414584daa +18:00:50.470 [XNIO-1 task-1] Q6CjDbxNQU-NL4PWPhB5Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.470 [XNIO-1 task-1] Q6CjDbxNQU-NL4PWPhB5Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.470 [XNIO-1 task-1] Q6CjDbxNQU-NL4PWPhB5Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.470 [XNIO-1 task-1] Q6CjDbxNQU-NL4PWPhB5Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.471 [XNIO-1 task-1] Q6CjDbxNQU-NL4PWPhB5Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "99b55075-65c7-4390-a972-180cbfab8d2c", "99b55075-65c7-4390-a972-180cbfab8d2c", refreshToken) +18:00:50.479 [XNIO-1 task-1] awcSJZtJRJ2ZsFyUdG5Xkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.480 [XNIO-1 task-1] awcSJZtJRJ2ZsFyUdG5Xkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.480 [XNIO-1 task-1] awcSJZtJRJ2ZsFyUdG5Xkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.480 [XNIO-1 task-1] awcSJZtJRJ2ZsFyUdG5Xkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.481 [XNIO-1 task-1] awcSJZtJRJ2ZsFyUdG5Xkw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.499 [XNIO-1 task-1] HuO2Un1ZTnuTdJLSlBCgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.499 [XNIO-1 task-1] HuO2Un1ZTnuTdJLSlBCgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.499 [XNIO-1 task-1] HuO2Un1ZTnuTdJLSlBCgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.500 [XNIO-1 task-1] HuO2Un1ZTnuTdJLSlBCgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.500 [XNIO-1 task-1] HuO2Un1ZTnuTdJLSlBCgIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.506 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:dd63e0c9 +18:00:50.514 [XNIO-1 task-1] iFK4KgQrRbePunN11ir8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.514 [XNIO-1 task-1] iFK4KgQrRbePunN11ir8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.514 [XNIO-1 task-1] iFK4KgQrRbePunN11ir8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.514 [XNIO-1 task-1] iFK4KgQrRbePunN11ir8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.514 [XNIO-1 task-1] iFK4KgQrRbePunN11ir8-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.519 [XNIO-1 task-1] C0AYBAi2SkuVYa4g7YULwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.519 [XNIO-1 task-1] C0AYBAi2SkuVYa4g7YULwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.519 [XNIO-1 task-1] C0AYBAi2SkuVYa4g7YULwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.519 [XNIO-1 task-1] C0AYBAi2SkuVYa4g7YULwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.519 [XNIO-1 task-1] C0AYBAi2SkuVYa4g7YULwA DEBUG com.networknt.schema.TypeValidator debug - validate( "99b55075-65c7-4390-a972-180cbfab8d2c", "99b55075-65c7-4390-a972-180cbfab8d2c", refreshToken) +18:00:50.520 [XNIO-1 task-1] C0AYBAi2SkuVYa4g7YULwA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 99b55075-65c7-4390-a972-180cbfab8d2c is not found.","severity":"ERROR"} +18:00:50.523 [XNIO-1 task-1] s4PqVpejTI6SB5WDEPsF1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.523 [XNIO-1 task-1] s4PqVpejTI6SB5WDEPsF1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.523 [XNIO-1 task-1] s4PqVpejTI6SB5WDEPsF1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.523 [XNIO-1 task-1] s4PqVpejTI6SB5WDEPsF1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.524 [XNIO-1 task-1] s4PqVpejTI6SB5WDEPsF1Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.529 [XNIO-1 task-1] _uK2igfcTsyxFOObv8AI8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.529 [XNIO-1 task-1] _uK2igfcTsyxFOObv8AI8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.530 [XNIO-1 task-1] _uK2igfcTsyxFOObv8AI8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.530 [XNIO-1 task-1] _uK2igfcTsyxFOObv8AI8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.530 [XNIO-1 task-1] _uK2igfcTsyxFOObv8AI8g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.536 [XNIO-1 task-1] gbZBuwsRQbOIysd0hNRzag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.536 [XNIO-1 task-1] gbZBuwsRQbOIysd0hNRzag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.536 [XNIO-1 task-1] gbZBuwsRQbOIysd0hNRzag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.536 [XNIO-1 task-1] gbZBuwsRQbOIysd0hNRzag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.537 [XNIO-1 task-1] gbZBuwsRQbOIysd0hNRzag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.543 [XNIO-1 task-1] BsUNQzytQ0SandSM58VeIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.543 [XNIO-1 task-1] BsUNQzytQ0SandSM58VeIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.543 [XNIO-1 task-1] BsUNQzytQ0SandSM58VeIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.543 [XNIO-1 task-1] BsUNQzytQ0SandSM58VeIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.544 [XNIO-1 task-1] BsUNQzytQ0SandSM58VeIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 99b55075-65c7-4390-a972-180cbfab8d2c +18:00:50.551 [XNIO-1 task-1] sM8Tkm1_RW2fG6b4YbBSOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.551 [XNIO-1 task-1] sM8Tkm1_RW2fG6b4YbBSOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.551 [XNIO-1 task-1] sM8Tkm1_RW2fG6b4YbBSOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.551 [XNIO-1 task-1] sM8Tkm1_RW2fG6b4YbBSOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.552 [XNIO-1 task-1] sM8Tkm1_RW2fG6b4YbBSOw DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:50.560 [XNIO-1 task-1] Xe39Dh8PSPGveOj9rILKlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.560 [XNIO-1 task-1] Xe39Dh8PSPGveOj9rILKlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.561 [XNIO-1 task-1] Xe39Dh8PSPGveOj9rILKlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.561 [XNIO-1 task-1] Xe39Dh8PSPGveOj9rILKlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.562 [XNIO-1 task-1] Xe39Dh8PSPGveOj9rILKlg DEBUG com.networknt.schema.TypeValidator debug - validate( "99b55075-65c7-4390-a972-180cbfab8d2c", "99b55075-65c7-4390-a972-180cbfab8d2c", refreshToken) +18:00:50.562 [XNIO-1 task-1] Xe39Dh8PSPGveOj9rILKlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 99b55075-65c7-4390-a972-180cbfab8d2c is not found.","severity":"ERROR"} +18:00:50.568 [XNIO-1 task-1] _hqaDvmeQB6x0uPhifIS1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.568 [XNIO-1 task-1] _hqaDvmeQB6x0uPhifIS1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.569 [XNIO-1 task-1] _hqaDvmeQB6x0uPhifIS1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.569 [XNIO-1 task-1] _hqaDvmeQB6x0uPhifIS1Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.579 [XNIO-1 task-1] NtHwj1SFQCukAK2XE5AuBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.581 [XNIO-1 task-1] NtHwj1SFQCukAK2XE5AuBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.583 [XNIO-1 task-1] NtHwj1SFQCukAK2XE5AuBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.583 [XNIO-1 task-1] NtHwj1SFQCukAK2XE5AuBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.584 [XNIO-1 task-1] NtHwj1SFQCukAK2XE5AuBA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.589 [XNIO-1 task-1] nlzD0ch-T0ao_a5Kln5lUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.593 [XNIO-1 task-1] nlzD0ch-T0ao_a5Kln5lUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.593 [XNIO-1 task-1] nlzD0ch-T0ao_a5Kln5lUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.593 [XNIO-1 task-1] nlzD0ch-T0ao_a5Kln5lUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.594 [XNIO-1 task-1] nlzD0ch-T0ao_a5Kln5lUw DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:50.596 [XNIO-1 task-1] nlzD0ch-T0ao_a5Kln5lUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:50.602 [XNIO-1 task-1] tk2-5L2oQbGL6f1H4mA6yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.602 [XNIO-1 task-1] tk2-5L2oQbGL6f1H4mA6yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.602 [XNIO-1 task-1] tk2-5L2oQbGL6f1H4mA6yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.603 [XNIO-1 task-1] tk2-5L2oQbGL6f1H4mA6yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.603 [XNIO-1 task-1] tk2-5L2oQbGL6f1H4mA6yA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.606 [XNIO-1 task-1] mydJdfVIRgGEqDI0EDrI4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.606 [XNIO-1 task-1] mydJdfVIRgGEqDI0EDrI4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.606 [XNIO-1 task-1] mydJdfVIRgGEqDI0EDrI4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.606 [XNIO-1 task-1] mydJdfVIRgGEqDI0EDrI4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.606 [XNIO-1 task-1] mydJdfVIRgGEqDI0EDrI4A DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:50.606 [XNIO-1 task-1] mydJdfVIRgGEqDI0EDrI4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:50.611 [XNIO-1 task-1] 5eKaVPNATt-otkpKu062Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.611 [XNIO-1 task-1] 5eKaVPNATt-otkpKu062Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.611 [XNIO-1 task-1] 5eKaVPNATt-otkpKu062Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.611 [XNIO-1 task-1] 5eKaVPNATt-otkpKu062Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.612 [XNIO-1 task-1] 5eKaVPNATt-otkpKu062Dw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.619 [XNIO-1 task-1] cvTFw-emRG2AegTKhrU5Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.619 [XNIO-1 task-1] cvTFw-emRG2AegTKhrU5Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.619 [XNIO-1 task-1] cvTFw-emRG2AegTKhrU5Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.620 [XNIO-1 task-1] cvTFw-emRG2AegTKhrU5Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:50.620 [XNIO-1 task-1] cvTFw-emRG2AegTKhrU5Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:50.620 [XNIO-1 task-1] cvTFw-emRG2AegTKhrU5Cg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:50.632 [XNIO-1 task-1] fGfstehYRI-Z6PCTSMYiKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:50.632 [XNIO-1 task-1] fGfstehYRI-Z6PCTSMYiKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.632 [XNIO-1 task-1] fGfstehYRI-Z6PCTSMYiKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.632 [XNIO-1 task-1] fGfstehYRI-Z6PCTSMYiKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:50.633 [XNIO-1 task-1] fGfstehYRI-Z6PCTSMYiKA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:50.645 [XNIO-1 task-1] LnrVl0OcSuauKq4PfxRHew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.645 [XNIO-1 task-1] LnrVl0OcSuauKq4PfxRHew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.645 [XNIO-1 task-1] LnrVl0OcSuauKq4PfxRHew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.645 [XNIO-1 task-1] LnrVl0OcSuauKq4PfxRHew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.646 [XNIO-1 task-1] LnrVl0OcSuauKq4PfxRHew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.646 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:98ed5f8a +18:00:50.648 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:98ed5f8a +18:00:50.650 [XNIO-1 task-1] vmxI7c-ZTJ-qntM4ZR5S3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.650 [XNIO-1 task-1] vmxI7c-ZTJ-qntM4ZR5S3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.650 [XNIO-1 task-1] vmxI7c-ZTJ-qntM4ZR5S3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.651 [XNIO-1 task-1] vmxI7c-ZTJ-qntM4ZR5S3A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.651 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f0d51463-661e-4b3a-a653-19b7fb3bbec7 +18:00:50.652 [XNIO-1 task-1] vmxI7c-ZTJ-qntM4ZR5S3A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.662 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:98ed5f8a +18:00:50.671 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:98ed5f8a +18:00:50.677 [XNIO-1 task-1] 3yVRdzCySXe8wNvmXCUXSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:50.677 [XNIO-1 task-1] 3yVRdzCySXe8wNvmXCUXSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.677 [XNIO-1 task-1] 3yVRdzCySXe8wNvmXCUXSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.678 [XNIO-1 task-1] 3yVRdzCySXe8wNvmXCUXSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:50.678 [XNIO-1 task-1] 3yVRdzCySXe8wNvmXCUXSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:50.683 [XNIO-1 task-1] DDZdqfzmTtOhpkE8YBGSDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.683 [XNIO-1 task-1] DDZdqfzmTtOhpkE8YBGSDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.683 [XNIO-1 task-1] DDZdqfzmTtOhpkE8YBGSDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.683 [XNIO-1 task-1] DDZdqfzmTtOhpkE8YBGSDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99b55075-65c7-4390-a972-180cbfab8d2c, base path is set to: null +18:00:50.684 [XNIO-1 task-1] DDZdqfzmTtOhpkE8YBGSDg DEBUG com.networknt.schema.TypeValidator debug - validate( "99b55075-65c7-4390-a972-180cbfab8d2c", "99b55075-65c7-4390-a972-180cbfab8d2c", refreshToken) +18:00:50.685 [XNIO-1 task-1] DDZdqfzmTtOhpkE8YBGSDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 99b55075-65c7-4390-a972-180cbfab8d2c is not found.","severity":"ERROR"} +18:00:50.687 [XNIO-1 task-1] 73EDieAPTme9zXX2Q6W4Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.687 [XNIO-1 task-1] 73EDieAPTme9zXX2Q6W4Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.687 [XNIO-1 task-1] 73EDieAPTme9zXX2Q6W4Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.688 [XNIO-1 task-1] 73EDieAPTme9zXX2Q6W4Iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.691 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:98ed5f8a +18:00:50.708 [XNIO-1 task-1] 9N4qx9nGRiWpj-82gj3sNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.709 [XNIO-1 task-1] 9N4qx9nGRiWpj-82gj3sNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.709 [XNIO-1 task-1] 9N4qx9nGRiWpj-82gj3sNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.709 [XNIO-1 task-1] 9N4qx9nGRiWpj-82gj3sNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.709 [XNIO-1 task-1] 9N4qx9nGRiWpj-82gj3sNg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.716 [XNIO-1 task-1] ht8EHTsGRgaOR77uolw5-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.716 [XNIO-1 task-1] ht8EHTsGRgaOR77uolw5-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.716 [XNIO-1 task-1] ht8EHTsGRgaOR77uolw5-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.716 [XNIO-1 task-1] ht8EHTsGRgaOR77uolw5-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.718 [XNIO-1 task-1] ht8EHTsGRgaOR77uolw5-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:50.720 [XNIO-1 task-1] HEVRZc6QQIy_mqnnEfsKDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:50.721 [XNIO-1 task-1] HEVRZc6QQIy_mqnnEfsKDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.721 [XNIO-1 task-1] HEVRZc6QQIy_mqnnEfsKDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.721 [XNIO-1 task-1] HEVRZc6QQIy_mqnnEfsKDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:50.722 [XNIO-1 task-1] HEVRZc6QQIy_mqnnEfsKDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1ad4d04a-fd5d-45c6-9499-8d06beaed669", "1ad4d04a-fd5d-45c6-9499-8d06beaed669", refreshToken) +18:00:50.722 [XNIO-1 task-1] HEVRZc6QQIy_mqnnEfsKDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ad4d04a-fd5d-45c6-9499-8d06beaed669 is not found.","severity":"ERROR"} +18:00:50.726 [XNIO-1 task-1] IeZOyICaQRCFYb4dG-pJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.726 [XNIO-1 task-1] IeZOyICaQRCFYb4dG-pJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.726 [XNIO-1 task-1] IeZOyICaQRCFYb4dG-pJyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.726 [XNIO-1 task-1] IeZOyICaQRCFYb4dG-pJyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.732 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a2ab74e7-0a32-4b94-a855-72b9025b3a05 +18:00:50.733 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a2ab74e7-0a32-4b94-a855-72b9025b3a05 +18:00:50.734 [XNIO-1 task-1] oRKcpNpHRfqDbcFZD7TOWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:50.734 [XNIO-1 task-1] oRKcpNpHRfqDbcFZD7TOWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.734 [XNIO-1 task-1] oRKcpNpHRfqDbcFZD7TOWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.735 [XNIO-1 task-1] oRKcpNpHRfqDbcFZD7TOWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:50.736 [XNIO-1 task-1] oRKcpNpHRfqDbcFZD7TOWg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:50.747 [XNIO-1 task-1] gqZb9TZVSzK1N2i1cxlGUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.747 [XNIO-1 task-1] gqZb9TZVSzK1N2i1cxlGUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.747 [XNIO-1 task-1] gqZb9TZVSzK1N2i1cxlGUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.747 [XNIO-1 task-1] gqZb9TZVSzK1N2i1cxlGUg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.756 [XNIO-1 task-1] q-zGTYgTQ3eBXOCXflyxVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.756 [XNIO-1 task-1] q-zGTYgTQ3eBXOCXflyxVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.756 [XNIO-1 task-1] q-zGTYgTQ3eBXOCXflyxVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.757 [XNIO-1 task-1] q-zGTYgTQ3eBXOCXflyxVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.757 [XNIO-1 task-1] q-zGTYgTQ3eBXOCXflyxVA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.765 [XNIO-1 task-1] cQOV1rl1TKeu121HZFfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:50.766 [XNIO-1 task-1] cQOV1rl1TKeu121HZFfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.766 [XNIO-1 task-1] cQOV1rl1TKeu121HZFfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.766 [XNIO-1 task-1] cQOV1rl1TKeu121HZFfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:50.766 [XNIO-1 task-1] cQOV1rl1TKeu121HZFfYDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:50.775 [XNIO-1 task-1] v1Pi5iMhTxql-9rIH3p-Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.775 [XNIO-1 task-1] v1Pi5iMhTxql-9rIH3p-Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.775 [XNIO-1 task-1] v1Pi5iMhTxql-9rIH3p-Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.775 [XNIO-1 task-1] v1Pi5iMhTxql-9rIH3p-Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.776 [XNIO-1 task-1] v1Pi5iMhTxql-9rIH3p-Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:50.776 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.783 [XNIO-1 task-1] DiRvkQbBSSWd7UUHwu1mBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:50.783 [XNIO-1 task-1] DiRvkQbBSSWd7UUHwu1mBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.783 [XNIO-1 task-1] DiRvkQbBSSWd7UUHwu1mBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.784 [XNIO-1 task-1] DiRvkQbBSSWd7UUHwu1mBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:50.784 [XNIO-1 task-1] DiRvkQbBSSWd7UUHwu1mBA DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:50.784 [XNIO-1 task-1] DiRvkQbBSSWd7UUHwu1mBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:50.787 [XNIO-1 task-1] 1TLkO4Q2RBibdKc2j-s4dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.787 [XNIO-1 task-1] 1TLkO4Q2RBibdKc2j-s4dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.788 [XNIO-1 task-1] 1TLkO4Q2RBibdKc2j-s4dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.788 [XNIO-1 task-1] 1TLkO4Q2RBibdKc2j-s4dw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.794 [XNIO-1 task-1] 5rxWPvBQQ8iw8Hae_Vu8bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:50.794 [XNIO-1 task-1] 5rxWPvBQQ8iw8Hae_Vu8bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.794 [XNIO-1 task-1] 5rxWPvBQQ8iw8Hae_Vu8bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.794 [XNIO-1 task-1] 5rxWPvBQQ8iw8Hae_Vu8bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:50.794 [XNIO-1 task-1] 5rxWPvBQQ8iw8Hae_Vu8bg DEBUG com.networknt.schema.TypeValidator debug - validate( "508e2e11-3a94-4489-9775-a0e0a63a7dd1", "508e2e11-3a94-4489-9775-a0e0a63a7dd1", refreshToken) +18:00:50.800 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:39795b37-2387-4204-b2d3-9611f8c7f643 +18:00:50.801 [XNIO-1 task-1] v77Cu-SlRvCIpI5ZosO11Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.801 [XNIO-1 task-1] v77Cu-SlRvCIpI5ZosO11Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.801 [XNIO-1 task-1] v77Cu-SlRvCIpI5ZosO11Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.802 [XNIO-1 task-1] v77Cu-SlRvCIpI5ZosO11Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.802 [XNIO-1 task-1] v77Cu-SlRvCIpI5ZosO11Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.803 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:39795b37-2387-4204-b2d3-9611f8c7f643 +18:00:50.803 [XNIO-1 task-1] v77Cu-SlRvCIpI5ZosO11Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:50.806 [XNIO-1 task-1] psYXq6VASEuAiXZ4RMT6uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.806 [XNIO-1 task-1] psYXq6VASEuAiXZ4RMT6uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.806 [XNIO-1 task-1] psYXq6VASEuAiXZ4RMT6uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.808 [XNIO-1 task-1] psYXq6VASEuAiXZ4RMT6uQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.814 [XNIO-1 task-1] TSOrhoD_RVSVAWbcTK-5mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:50.814 [XNIO-1 task-1] TSOrhoD_RVSVAWbcTK-5mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.814 [XNIO-1 task-1] TSOrhoD_RVSVAWbcTK-5mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.815 [XNIO-1 task-1] TSOrhoD_RVSVAWbcTK-5mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:50.815 [XNIO-1 task-1] TSOrhoD_RVSVAWbcTK-5mA DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:50.816 [XNIO-1 task-1] TSOrhoD_RVSVAWbcTK-5mA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:50.823 [XNIO-1 task-1] MHZmzAJ1SS6ScN4eiI8T-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1 +18:00:50.823 [XNIO-1 task-1] MHZmzAJ1SS6ScN4eiI8T-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.823 [XNIO-1 task-1] MHZmzAJ1SS6ScN4eiI8T-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.823 [XNIO-1 task-1] MHZmzAJ1SS6ScN4eiI8T-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1 +18:00:50.824 [XNIO-1 task-1] MHZmzAJ1SS6ScN4eiI8T-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 508e2e11-3a94-4489-9775-a0e0a63a7dd1 +18:00:50.826 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eb0ca001 +18:00:50.828 [XNIO-1 task-1] RcXN1JrKRQixKvL64xrK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.828 [XNIO-1 task-1] RcXN1JrKRQixKvL64xrK5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.829 [XNIO-1 task-1] RcXN1JrKRQixKvL64xrK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.829 [XNIO-1 task-1] RcXN1JrKRQixKvL64xrK5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.829 [XNIO-1 task-1] RcXN1JrKRQixKvL64xrK5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.840 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:98ed5f8a +18:00:50.843 [XNIO-1 task-1] geWM0GzWQOG-XTeEi0VT0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.843 [XNIO-1 task-1] geWM0GzWQOG-XTeEi0VT0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.844 [XNIO-1 task-1] geWM0GzWQOG-XTeEi0VT0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.844 [XNIO-1 task-1] geWM0GzWQOG-XTeEi0VT0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.854 [XNIO-1 task-1] E-P0a03_S6SIVG9j2CPQKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.854 [XNIO-1 task-1] E-P0a03_S6SIVG9j2CPQKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.854 [XNIO-1 task-1] E-P0a03_S6SIVG9j2CPQKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.854 [XNIO-1 task-1] E-P0a03_S6SIVG9j2CPQKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:50.856 [XNIO-1 task-1] E-P0a03_S6SIVG9j2CPQKA DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:50.856 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:50.866 [XNIO-1 task-1] wGlwXEEsQFO-NtDQJ7i6ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.866 [XNIO-1 task-1] wGlwXEEsQFO-NtDQJ7i6ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.866 [XNIO-1 task-1] wGlwXEEsQFO-NtDQJ7i6ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.866 [XNIO-1 task-1] wGlwXEEsQFO-NtDQJ7i6ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.867 [XNIO-1 task-1] wGlwXEEsQFO-NtDQJ7i6ww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.878 [XNIO-1 task-1] ev3eR_KKRjuXcItC49-CgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.878 [XNIO-1 task-1] ev3eR_KKRjuXcItC49-CgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.878 [XNIO-1 task-1] ev3eR_KKRjuXcItC49-CgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.878 [XNIO-1 task-1] ev3eR_KKRjuXcItC49-CgQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.893 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2fac1eb4-59ec-4129-841c-0caf4b805948 +18:00:50.894 [XNIO-1 task-1] 6jGhZM6NSNqqMOO30_l-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.894 [XNIO-1 task-1] 6jGhZM6NSNqqMOO30_l-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.895 [XNIO-1 task-1] 6jGhZM6NSNqqMOO30_l-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.895 [XNIO-1 task-1] 6jGhZM6NSNqqMOO30_l-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.895 [XNIO-1 task-1] 6jGhZM6NSNqqMOO30_l-Ig DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.899 [XNIO-1 task-1] xYs_XGPVSVWYyov_KEq5lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:50.899 [XNIO-1 task-1] xYs_XGPVSVWYyov_KEq5lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.899 [XNIO-1 task-1] xYs_XGPVSVWYyov_KEq5lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.900 [XNIO-1 task-1] xYs_XGPVSVWYyov_KEq5lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf, base path is set to: null +18:00:50.900 [XNIO-1 task-1] xYs_XGPVSVWYyov_KEq5lw DEBUG com.networknt.schema.TypeValidator debug - validate( "1139db63-47cb-4f96-a519-737ce3c900bf", "1139db63-47cb-4f96-a519-737ce3c900bf", refreshToken) +18:00:50.900 [XNIO-1 task-1] xYs_XGPVSVWYyov_KEq5lw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1139db63-47cb-4f96-a519-737ce3c900bf is not found.","severity":"ERROR"} +18:00:50.906 [XNIO-1 task-1] lWQxG509QliB5N90TF9g2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1 +18:00:50.907 [XNIO-1 task-1] lWQxG509QliB5N90TF9g2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.907 [XNIO-1 task-1] lWQxG509QliB5N90TF9g2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.907 [XNIO-1 task-1] lWQxG509QliB5N90TF9g2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1 +18:00:50.907 [XNIO-1 task-1] lWQxG509QliB5N90TF9g2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 508e2e11-3a94-4489-9775-a0e0a63a7dd1 +18:00:50.924 [XNIO-1 task-1] wtIJ2ye9TN-gPxEWUAOR7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.924 [XNIO-1 task-1] wtIJ2ye9TN-gPxEWUAOR7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.924 [XNIO-1 task-1] wtIJ2ye9TN-gPxEWUAOR7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.925 [XNIO-1 task-1] wtIJ2ye9TN-gPxEWUAOR7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:50.935 [XNIO-1 task-1] HmgUkiFATb6CB5FiLcu9ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.935 [XNIO-1 task-1] HmgUkiFATb6CB5FiLcu9ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.935 [XNIO-1 task-1] HmgUkiFATb6CB5FiLcu9ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.935 [XNIO-1 task-1] HmgUkiFATb6CB5FiLcu9ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.936 [XNIO-1 task-1] HmgUkiFATb6CB5FiLcu9ww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.939 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:50.943 [XNIO-1 task-1] tl7Lb6d1SZquzPpE8KEl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.944 [XNIO-1 task-1] tl7Lb6d1SZquzPpE8KEl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:50.944 [XNIO-1 task-1] tl7Lb6d1SZquzPpE8KEl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:50.944 [XNIO-1 task-1] tl7Lb6d1SZquzPpE8KEl3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.944 [XNIO-1 task-1] tl7Lb6d1SZquzPpE8KEl3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:50.950 [XNIO-1 task-1] Xl-c-bWYQBaHCrISHw649g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:50.951 [XNIO-1 task-1] Xl-c-bWYQBaHCrISHw649g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.951 [XNIO-1 task-1] Xl-c-bWYQBaHCrISHw649g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.951 [XNIO-1 task-1] Xl-c-bWYQBaHCrISHw649g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:50.951 [XNIO-1 task-1] Xl-c-bWYQBaHCrISHw649g DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:50.952 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:50.962 [XNIO-1 task-1] XsuCrykZSxeM_Who_rKl6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.962 [XNIO-1 task-1] XsuCrykZSxeM_Who_rKl6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.963 [XNIO-1 task-1] XsuCrykZSxeM_Who_rKl6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.963 [XNIO-1 task-1] XsuCrykZSxeM_Who_rKl6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.963 [XNIO-1 task-1] XsuCrykZSxeM_Who_rKl6A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:50.979 [XNIO-1 task-1] FOqvO8KFRLW6NIylc3g9uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4aeea35a-c5d1-47d8-a9cf-124b158e8cc1, base path is set to: null +18:00:50.979 [XNIO-1 task-1] FOqvO8KFRLW6NIylc3g9uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.979 [XNIO-1 task-1] FOqvO8KFRLW6NIylc3g9uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:50.979 [XNIO-1 task-1] FOqvO8KFRLW6NIylc3g9uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4aeea35a-c5d1-47d8-a9cf-124b158e8cc1, base path is set to: null +18:00:50.979 [XNIO-1 task-1] FOqvO8KFRLW6NIylc3g9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4aeea35a-c5d1-47d8-a9cf-124b158e8cc1", "4aeea35a-c5d1-47d8-a9cf-124b158e8cc1", refreshToken) +18:00:50.981 [XNIO-1 task-1] FOqvO8KFRLW6NIylc3g9uQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4aeea35a-c5d1-47d8-a9cf-124b158e8cc1 is not found.","severity":"ERROR"} +18:00:50.983 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:72ac2e5d +18:00:50.985 [XNIO-1 task-1] pOZ2XW56SC6WI1fPCk_7Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.987 [XNIO-1 task-1] pOZ2XW56SC6WI1fPCk_7Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:50.987 [XNIO-1 task-1] pOZ2XW56SC6WI1fPCk_7Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:50.987 [XNIO-1 task-1] pOZ2XW56SC6WI1fPCk_7Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:50.988 [XNIO-1 task-1] pOZ2XW56SC6WI1fPCk_7Pw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.006 [XNIO-1 task-1] L3qgqHtNSJKT9qtZIA52PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:51.006 [XNIO-1 task-1] L3qgqHtNSJKT9qtZIA52PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.006 [XNIO-1 task-1] L3qgqHtNSJKT9qtZIA52PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.006 [XNIO-1 task-1] L3qgqHtNSJKT9qtZIA52PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1139db63-47cb-4f96-a519-737ce3c900bf +18:00:51.006 [XNIO-1 task-1] L3qgqHtNSJKT9qtZIA52PA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1139db63-47cb-4f96-a519-737ce3c900bf +18:00:51.014 [XNIO-1 task-1] LUfvbJ8LTJCipoqWPItWKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:51.014 [XNIO-1 task-1] LUfvbJ8LTJCipoqWPItWKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.014 [XNIO-1 task-1] LUfvbJ8LTJCipoqWPItWKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.014 [XNIO-1 task-1] LUfvbJ8LTJCipoqWPItWKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:51.015 [XNIO-1 task-1] LUfvbJ8LTJCipoqWPItWKw DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:51.015 [XNIO-1 task-1] LUfvbJ8LTJCipoqWPItWKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:51.019 [XNIO-1 task-1] 7juKwajMQcGpZBRTFcfEHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.019 [XNIO-1 task-1] 7juKwajMQcGpZBRTFcfEHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.019 [XNIO-1 task-1] 7juKwajMQcGpZBRTFcfEHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.020 [XNIO-1 task-1] 7juKwajMQcGpZBRTFcfEHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.025 [XNIO-1 task-1] PajzUWYYTdy4GnxdYwa9mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.025 [XNIO-1 task-1] PajzUWYYTdy4GnxdYwa9mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.026 [XNIO-1 task-1] PajzUWYYTdy4GnxdYwa9mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.026 [XNIO-1 task-1] PajzUWYYTdy4GnxdYwa9mA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.026 [XNIO-1 task-1] PajzUWYYTdy4GnxdYwa9mA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.040 [XNIO-1 task-1] vZpvBp4FTbeJWJY8g8YLnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:51.040 [XNIO-1 task-1] vZpvBp4FTbeJWJY8g8YLnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.040 [XNIO-1 task-1] vZpvBp4FTbeJWJY8g8YLnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.040 [XNIO-1 task-1] vZpvBp4FTbeJWJY8g8YLnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:51.040 [XNIO-1 task-1] vZpvBp4FTbeJWJY8g8YLnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:51.047 [XNIO-1 task-1] RTPVgiGdRPy1sMpstbJugA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.047 [XNIO-1 task-1] RTPVgiGdRPy1sMpstbJugA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.047 [XNIO-1 task-1] RTPVgiGdRPy1sMpstbJugA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.048 [XNIO-1 task-1] RTPVgiGdRPy1sMpstbJugA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.048 [XNIO-1 task-1] RTPVgiGdRPy1sMpstbJugA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.057 [XNIO-1 task-1] SjMGDDsXTZ-MNpjA7HfE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:51.058 [XNIO-1 task-1] SjMGDDsXTZ-MNpjA7HfE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.058 [XNIO-1 task-1] SjMGDDsXTZ-MNpjA7HfE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.058 [XNIO-1 task-1] SjMGDDsXTZ-MNpjA7HfE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:51.058 [XNIO-1 task-1] SjMGDDsXTZ-MNpjA7HfE2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:51.062 [XNIO-1 task-1] 3VPwWarNTUeJ0OiVcAcShA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1 +18:00:51.062 [XNIO-1 task-1] 3VPwWarNTUeJ0OiVcAcShA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.063 [XNIO-1 task-1] 3VPwWarNTUeJ0OiVcAcShA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.063 [XNIO-1 task-1] 3VPwWarNTUeJ0OiVcAcShA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1 +18:00:51.063 [XNIO-1 task-1] 3VPwWarNTUeJ0OiVcAcShA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 083c91b1-18a6-41eb-8a51-e28634a08ee1 +18:00:51.073 [XNIO-1 task-1] w5v16XT4Qoi28zD5chTIkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.073 [XNIO-1 task-1] w5v16XT4Qoi28zD5chTIkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.074 [XNIO-1 task-1] w5v16XT4Qoi28zD5chTIkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.074 [XNIO-1 task-1] w5v16XT4Qoi28zD5chTIkg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.083 [XNIO-1 task-1] QMoT1YLYRPuTigKo9z-YZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.083 [XNIO-1 task-1] QMoT1YLYRPuTigKo9z-YZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.083 [XNIO-1 task-1] QMoT1YLYRPuTigKo9z-YZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.083 [XNIO-1 task-1] QMoT1YLYRPuTigKo9z-YZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.084 [XNIO-1 task-1] QMoT1YLYRPuTigKo9z-YZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:51.084 [XNIO-1 task-1] QMoT1YLYRPuTigKo9z-YZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:51.085 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7d07a4ec-5fcd-4dc1-85e2-e75e88ff4b50 +18:00:51.091 [XNIO-1 task-1] Yr5BOmeRQxSKg8LvQ2AEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.091 [XNIO-1 task-1] Yr5BOmeRQxSKg8LvQ2AEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.091 [XNIO-1 task-1] Yr5BOmeRQxSKg8LvQ2AEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.092 [XNIO-1 task-1] Yr5BOmeRQxSKg8LvQ2AEBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.092 [XNIO-1 task-1] Yr5BOmeRQxSKg8LvQ2AEBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.098 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6c18cce9-6603-4119-aa2c-15487388c0f8 +18:00:51.104 [XNIO-1 task-1] TIbHk-8wTSyNOtyTCEyW1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.104 [XNIO-1 task-1] TIbHk-8wTSyNOtyTCEyW1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.104 [XNIO-1 task-1] TIbHk-8wTSyNOtyTCEyW1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.104 [XNIO-1 task-1] TIbHk-8wTSyNOtyTCEyW1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.105 [XNIO-1 task-1] TIbHk-8wTSyNOtyTCEyW1g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.106 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c2b52af5 +18:00:51.117 [XNIO-1 task-1] ZekpYB5xTaOa4ij-hlVmMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.117 [XNIO-1 task-1] ZekpYB5xTaOa4ij-hlVmMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.117 [XNIO-1 task-1] ZekpYB5xTaOa4ij-hlVmMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.118 [XNIO-1 task-1] ZekpYB5xTaOa4ij-hlVmMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.118 [XNIO-1 task-1] ZekpYB5xTaOa4ij-hlVmMA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.126 [XNIO-1 task-1] 5uHxyvpBRuaMCmwNt1ak-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.126 [XNIO-1 task-1] 5uHxyvpBRuaMCmwNt1ak-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.126 [XNIO-1 task-1] 5uHxyvpBRuaMCmwNt1ak-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.126 [XNIO-1 task-1] 5uHxyvpBRuaMCmwNt1ak-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.126 [XNIO-1 task-1] 5uHxyvpBRuaMCmwNt1ak-w DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:51.127 [XNIO-1 task-1] 5uHxyvpBRuaMCmwNt1ak-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:51.130 [XNIO-1 task-1] X3R3Zw4IRu6M1mSuEwf7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.130 [XNIO-1 task-1] X3R3Zw4IRu6M1mSuEwf7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.130 [XNIO-1 task-1] X3R3Zw4IRu6M1mSuEwf7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.130 [XNIO-1 task-1] X3R3Zw4IRu6M1mSuEwf7Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.131 [XNIO-1 task-1] X3R3Zw4IRu6M1mSuEwf7Gw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.138 [XNIO-1 task-1] -7o8S4FmS-OdDWLstHrMUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.139 [XNIO-1 task-1] -7o8S4FmS-OdDWLstHrMUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.140 [XNIO-1 task-1] -7o8S4FmS-OdDWLstHrMUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.140 [XNIO-1 task-1] -7o8S4FmS-OdDWLstHrMUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.140 [XNIO-1 task-1] -7o8S4FmS-OdDWLstHrMUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.152 [XNIO-1 task-1] TOfMIELkTFy9K3Fqh0sDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.152 [XNIO-1 task-1] TOfMIELkTFy9K3Fqh0sDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.153 [XNIO-1 task-1] TOfMIELkTFy9K3Fqh0sDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.153 [XNIO-1 task-1] TOfMIELkTFy9K3Fqh0sDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.153 [XNIO-1 task-1] TOfMIELkTFy9K3Fqh0sDpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.166 [XNIO-1 task-1] cu4Uf7MBRx-aPcG34Jm8Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.166 [XNIO-1 task-1] cu4Uf7MBRx-aPcG34Jm8Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.166 [XNIO-1 task-1] cu4Uf7MBRx-aPcG34Jm8Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.166 [XNIO-1 task-1] cu4Uf7MBRx-aPcG34Jm8Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.167 [XNIO-1 task-1] cu4Uf7MBRx-aPcG34Jm8Eg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.176 [XNIO-1 task-1] EoWf1fwrT3etXgV1pOPIMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.177 [XNIO-1 task-1] EoWf1fwrT3etXgV1pOPIMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.177 [XNIO-1 task-1] EoWf1fwrT3etXgV1pOPIMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.177 [XNIO-1 task-1] EoWf1fwrT3etXgV1pOPIMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.177 [XNIO-1 task-1] EoWf1fwrT3etXgV1pOPIMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.183 [XNIO-1 task-1] IztrPfrRTbe2l26-2L54NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.183 [XNIO-1 task-1] IztrPfrRTbe2l26-2L54NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.184 [XNIO-1 task-1] IztrPfrRTbe2l26-2L54NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.184 [XNIO-1 task-1] IztrPfrRTbe2l26-2L54NA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.184 [XNIO-1 task-1] IztrPfrRTbe2l26-2L54NA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.190 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:72ac2e5d +18:00:51.191 [XNIO-1 task-1] ysyZm3nhRGS_EIEbsZwM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.191 [XNIO-1 task-1] ysyZm3nhRGS_EIEbsZwM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.193 [XNIO-1 task-1] ysyZm3nhRGS_EIEbsZwM0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.193 [XNIO-1 task-1] ysyZm3nhRGS_EIEbsZwM0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.207 [XNIO-1 task-1] qd5YjRSPR3e0Sltvet9fCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.207 [XNIO-1 task-1] qd5YjRSPR3e0Sltvet9fCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.207 [XNIO-1 task-1] qd5YjRSPR3e0Sltvet9fCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.207 [XNIO-1 task-1] qd5YjRSPR3e0Sltvet9fCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.208 [XNIO-1 task-1] qd5YjRSPR3e0Sltvet9fCw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.215 [XNIO-1 task-1] TDwkTL7qSaanF-oXGHX5nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.215 [XNIO-1 task-1] TDwkTL7qSaanF-oXGHX5nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.216 [XNIO-1 task-1] TDwkTL7qSaanF-oXGHX5nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.216 [XNIO-1 task-1] TDwkTL7qSaanF-oXGHX5nw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.222 [XNIO-1 task-1] r4E5d9gOSsuyraYc5ifQdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.222 [XNIO-1 task-1] r4E5d9gOSsuyraYc5ifQdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.222 [XNIO-1 task-1] r4E5d9gOSsuyraYc5ifQdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.223 [XNIO-1 task-1] r4E5d9gOSsuyraYc5ifQdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.223 [XNIO-1 task-1] r4E5d9gOSsuyraYc5ifQdQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.233 [XNIO-1 task-1] dQStGfyISrmrEctNn67TZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.233 [XNIO-1 task-1] dQStGfyISrmrEctNn67TZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.233 [XNIO-1 task-1] dQStGfyISrmrEctNn67TZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.233 [XNIO-1 task-1] dQStGfyISrmrEctNn67TZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.234 [XNIO-1 task-1] dQStGfyISrmrEctNn67TZw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.236 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f9bd9f5f-e37c-4f0d-a8e8-bb0d38055e84 +18:00:51.237 [XNIO-1 task-1] 9dHuxORxS8C8o3JtrU06QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711, base path is set to: null +18:00:51.237 [XNIO-1 task-1] 9dHuxORxS8C8o3JtrU06QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.237 [XNIO-1 task-1] 9dHuxORxS8C8o3JtrU06QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.237 [XNIO-1 task-1] 9dHuxORxS8C8o3JtrU06QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711, base path is set to: null +18:00:51.238 [XNIO-1 task-1] 9dHuxORxS8C8o3JtrU06QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1f76fd3-13d9-4e71-9c96-36a5bd8c8711", "a1f76fd3-13d9-4e71-9c96-36a5bd8c8711", refreshToken) +18:00:51.238 [XNIO-1 task-1] 9dHuxORxS8C8o3JtrU06QQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 is not found.","severity":"ERROR"} +18:00:51.245 [XNIO-1 task-1] B6ecxyfjSKG1LOVlHSmU8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5 +18:00:51.245 [XNIO-1 task-1] B6ecxyfjSKG1LOVlHSmU8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.245 [XNIO-1 task-1] B6ecxyfjSKG1LOVlHSmU8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.245 [XNIO-1 task-1] B6ecxyfjSKG1LOVlHSmU8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5 +18:00:51.245 [XNIO-1 task-1] B6ecxyfjSKG1LOVlHSmU8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a7a876f0-29c4-4232-af37-3645d5e223f5 +18:00:51.255 [XNIO-1 task-1] UNf5yYKMQnm0D0v0uCeJJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.256 [XNIO-1 task-1] UNf5yYKMQnm0D0v0uCeJJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.256 [XNIO-1 task-1] UNf5yYKMQnm0D0v0uCeJJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.256 [XNIO-1 task-1] UNf5yYKMQnm0D0v0uCeJJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.256 [XNIO-1 task-1] UNf5yYKMQnm0D0v0uCeJJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:51.259 [XNIO-1 task-1] eiLV0lE_RT6REvdAcqa7_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711, base path is set to: null +18:00:51.259 [XNIO-1 task-1] eiLV0lE_RT6REvdAcqa7_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.259 [XNIO-1 task-1] eiLV0lE_RT6REvdAcqa7_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.259 [XNIO-1 task-1] eiLV0lE_RT6REvdAcqa7_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711, base path is set to: null +18:00:51.260 [XNIO-1 task-1] eiLV0lE_RT6REvdAcqa7_w DEBUG com.networknt.schema.TypeValidator debug - validate( "a1f76fd3-13d9-4e71-9c96-36a5bd8c8711", "a1f76fd3-13d9-4e71-9c96-36a5bd8c8711", refreshToken) +18:00:51.260 [XNIO-1 task-1] eiLV0lE_RT6REvdAcqa7_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 is not found.","severity":"ERROR"} +18:00:51.265 [XNIO-1 task-1] n69GuCOkTmWEU-KORTJftQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:51.265 [XNIO-1 task-1] n69GuCOkTmWEU-KORTJftQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.265 [XNIO-1 task-1] n69GuCOkTmWEU-KORTJftQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.266 [XNIO-1 task-1] n69GuCOkTmWEU-KORTJftQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:51.266 [XNIO-1 task-1] n69GuCOkTmWEU-KORTJftQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:51.275 [XNIO-1 task-1] 0WgmFWuCSEWBHzTLm-6sQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c62f8783-681a-486f-9788-6a7e5a530542, base path is set to: null +18:00:51.275 [XNIO-1 task-1] 0WgmFWuCSEWBHzTLm-6sQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.275 [XNIO-1 task-1] 0WgmFWuCSEWBHzTLm-6sQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.275 [XNIO-1 task-1] 0WgmFWuCSEWBHzTLm-6sQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c62f8783-681a-486f-9788-6a7e5a530542, base path is set to: null +18:00:51.275 [XNIO-1 task-1] 0WgmFWuCSEWBHzTLm-6sQg DEBUG com.networknt.schema.TypeValidator debug - validate( "c62f8783-681a-486f-9788-6a7e5a530542", "c62f8783-681a-486f-9788-6a7e5a530542", refreshToken) +18:00:51.278 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eb0ca001 +18:00:51.283 [XNIO-1 task-1] zyq1H5zHTz2jGABxP3W8dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.283 [XNIO-1 task-1] zyq1H5zHTz2jGABxP3W8dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.283 [XNIO-1 task-1] zyq1H5zHTz2jGABxP3W8dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.283 [XNIO-1 task-1] zyq1H5zHTz2jGABxP3W8dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.284 [XNIO-1 task-1] zyq1H5zHTz2jGABxP3W8dg DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:51.284 [XNIO-1 task-1] zyq1H5zHTz2jGABxP3W8dg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:51.289 [XNIO-1 task-1] skgKc-7VT7yCXBpBo8Iogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.289 [XNIO-1 task-1] skgKc-7VT7yCXBpBo8Iogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.289 [XNIO-1 task-1] skgKc-7VT7yCXBpBo8Iogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.290 [XNIO-1 task-1] skgKc-7VT7yCXBpBo8Iogg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.308 [XNIO-1 task-1] M2uQE9K0T7C90TBZk7UJcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.308 [XNIO-1 task-1] M2uQE9K0T7C90TBZk7UJcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.308 [XNIO-1 task-1] M2uQE9K0T7C90TBZk7UJcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.308 [XNIO-1 task-1] M2uQE9K0T7C90TBZk7UJcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.309 [XNIO-1 task-1] M2uQE9K0T7C90TBZk7UJcg DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:51.309 [XNIO-1 task-1] M2uQE9K0T7C90TBZk7UJcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:51.312 [XNIO-1 task-1] Ea2MnehhStOBUaAS3Qmg6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.312 [XNIO-1 task-1] Ea2MnehhStOBUaAS3Qmg6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.312 [XNIO-1 task-1] Ea2MnehhStOBUaAS3Qmg6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.313 [XNIO-1 task-1] Ea2MnehhStOBUaAS3Qmg6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.313 [XNIO-1 task-1] Ea2MnehhStOBUaAS3Qmg6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.316 [XNIO-1 task-1] -FE_h2yBTMOh2VI3TN6gww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.316 [XNIO-1 task-1] -FE_h2yBTMOh2VI3TN6gww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.316 [XNIO-1 task-1] -FE_h2yBTMOh2VI3TN6gww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.316 [XNIO-1 task-1] -FE_h2yBTMOh2VI3TN6gww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.316 [XNIO-1 task-1] -FE_h2yBTMOh2VI3TN6gww DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:51.317 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.321 [XNIO-1 task-1] O5Ca6Mf0QN6s_Y1V_WxyZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.321 [XNIO-1 task-1] O5Ca6Mf0QN6s_Y1V_WxyZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.321 [XNIO-1 task-1] O5Ca6Mf0QN6s_Y1V_WxyZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.321 [XNIO-1 task-1] O5Ca6Mf0QN6s_Y1V_WxyZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.321 [XNIO-1 task-1] O5Ca6Mf0QN6s_Y1V_WxyZw DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:51.321 [XNIO-1 task-1] O5Ca6Mf0QN6s_Y1V_WxyZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:51.329 [XNIO-1 task-1] ScFShI4hSe2K2voBX5BLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.329 [XNIO-1 task-1] ScFShI4hSe2K2voBX5BLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.329 [XNIO-1 task-1] ScFShI4hSe2K2voBX5BLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.329 [XNIO-1 task-1] ScFShI4hSe2K2voBX5BLcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.332 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:72ac2e5d +18:00:51.338 [XNIO-1 task-1] G3o1m487QbW2Aa6SxXelzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:51.338 [XNIO-1 task-1] G3o1m487QbW2Aa6SxXelzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.338 [XNIO-1 task-1] G3o1m487QbW2Aa6SxXelzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.338 [XNIO-1 task-1] G3o1m487QbW2Aa6SxXelzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:51.338 [XNIO-1 task-1] G3o1m487QbW2Aa6SxXelzw DEBUG com.networknt.schema.TypeValidator debug - validate( "508e2e11-3a94-4489-9775-a0e0a63a7dd1", "508e2e11-3a94-4489-9775-a0e0a63a7dd1", refreshToken) +18:00:51.345 [XNIO-1 task-1] G3o1m487QbW2Aa6SxXelzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 508e2e11-3a94-4489-9775-a0e0a63a7dd1 is not found.","severity":"ERROR"} +18:00:51.348 [XNIO-1 task-1] zYywSaGbSP-QCors8ZdQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.348 [XNIO-1 task-1] zYywSaGbSP-QCors8ZdQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.348 [XNIO-1 task-1] zYywSaGbSP-QCors8ZdQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.348 [XNIO-1 task-1] zYywSaGbSP-QCors8ZdQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.349 [XNIO-1 task-1] zYywSaGbSP-QCors8ZdQxg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.350 [XNIO-1 task-1] zYywSaGbSP-QCors8ZdQxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:51.354 [XNIO-1 task-1] QFx_dZc-RrqQLj3BZAiyTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.354 [XNIO-1 task-1] QFx_dZc-RrqQLj3BZAiyTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.354 [XNIO-1 task-1] QFx_dZc-RrqQLj3BZAiyTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.355 [XNIO-1 task-1] QFx_dZc-RrqQLj3BZAiyTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.367 [XNIO-1 task-1] H3AaoquMQaWjTnr77AAgJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.367 [XNIO-1 task-1] H3AaoquMQaWjTnr77AAgJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.367 [XNIO-1 task-1] H3AaoquMQaWjTnr77AAgJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.368 [XNIO-1 task-1] H3AaoquMQaWjTnr77AAgJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.369 [XNIO-1 task-1] H3AaoquMQaWjTnr77AAgJw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.377 [XNIO-1 task-1] _x55K1mZRZy9E98aWIEkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.377 [XNIO-1 task-1] _x55K1mZRZy9E98aWIEkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.377 [XNIO-1 task-1] _x55K1mZRZy9E98aWIEkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.377 [XNIO-1 task-1] _x55K1mZRZy9E98aWIEkrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.377 [XNIO-1 task-1] _x55K1mZRZy9E98aWIEkrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.382 [XNIO-1 task-1] rn9_Sat3SY6_gsWBEC6pKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.383 [XNIO-1 task-1] rn9_Sat3SY6_gsWBEC6pKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.383 [XNIO-1 task-1] rn9_Sat3SY6_gsWBEC6pKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.383 [XNIO-1 task-1] rn9_Sat3SY6_gsWBEC6pKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.383 [XNIO-1 task-1] rn9_Sat3SY6_gsWBEC6pKA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.390 [XNIO-1 task-1] CNgFqYJaS0uDEWHIqCsg8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.390 [XNIO-1 task-1] CNgFqYJaS0uDEWHIqCsg8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.391 [XNIO-1 task-1] CNgFqYJaS0uDEWHIqCsg8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.391 [XNIO-1 task-1] CNgFqYJaS0uDEWHIqCsg8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.399 [XNIO-1 task-1] trBRIViUT3WdXwPnO_0IyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:51.399 [XNIO-1 task-1] trBRIViUT3WdXwPnO_0IyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.399 [XNIO-1 task-1] trBRIViUT3WdXwPnO_0IyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.399 [XNIO-1 task-1] trBRIViUT3WdXwPnO_0IyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:51.400 [XNIO-1 task-1] trBRIViUT3WdXwPnO_0IyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "508e2e11-3a94-4489-9775-a0e0a63a7dd1", "508e2e11-3a94-4489-9775-a0e0a63a7dd1", refreshToken) +18:00:51.401 [XNIO-1 task-1] trBRIViUT3WdXwPnO_0IyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 508e2e11-3a94-4489-9775-a0e0a63a7dd1 is not found.","severity":"ERROR"} +18:00:51.402 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4eef41dc-1d05-4de2-9de0-ae044fcf9c31 +18:00:51.404 [XNIO-1 task-1] ahSQNAx-Td-riwW5Un4atg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.404 [XNIO-1 task-1] ahSQNAx-Td-riwW5Un4atg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.406 [XNIO-1 task-1] ahSQNAx-Td-riwW5Un4atg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.406 [XNIO-1 task-1] ahSQNAx-Td-riwW5Un4atg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.406 [XNIO-1 task-1] ahSQNAx-Td-riwW5Un4atg DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:51.407 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.416 [XNIO-1 task-1] oSbLrH5IRcuUk3vw67Gn_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:51.416 [XNIO-1 task-1] oSbLrH5IRcuUk3vw67Gn_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.416 [XNIO-1 task-1] oSbLrH5IRcuUk3vw67Gn_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.416 [XNIO-1 task-1] oSbLrH5IRcuUk3vw67Gn_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:51.417 [XNIO-1 task-1] oSbLrH5IRcuUk3vw67Gn_g DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:51.417 [XNIO-1 task-1] oSbLrH5IRcuUk3vw67Gn_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:51.420 [XNIO-1 task-1] mIim_JerTHiwhpQj7MtJWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.420 [XNIO-1 task-1] mIim_JerTHiwhpQj7MtJWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.420 [XNIO-1 task-1] mIim_JerTHiwhpQj7MtJWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.420 [XNIO-1 task-1] mIim_JerTHiwhpQj7MtJWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.429 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eb0ca001 +18:00:51.430 [XNIO-1 task-1] OBeDurb5SK6WGdtGtccECA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:51.430 [XNIO-1 task-1] OBeDurb5SK6WGdtGtccECA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.430 [XNIO-1 task-1] OBeDurb5SK6WGdtGtccECA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.430 [XNIO-1 task-1] OBeDurb5SK6WGdtGtccECA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/508e2e11-3a94-4489-9775-a0e0a63a7dd1, base path is set to: null +18:00:51.430 [XNIO-1 task-1] OBeDurb5SK6WGdtGtccECA DEBUG com.networknt.schema.TypeValidator debug - validate( "508e2e11-3a94-4489-9775-a0e0a63a7dd1", "508e2e11-3a94-4489-9775-a0e0a63a7dd1", refreshToken) +18:00:51.431 [XNIO-1 task-1] OBeDurb5SK6WGdtGtccECA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 508e2e11-3a94-4489-9775-a0e0a63a7dd1 is not found.","severity":"ERROR"} +18:00:51.437 [XNIO-1 task-1] Y0BYrdb2TVi-TDUSai4qUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.437 [XNIO-1 task-1] Y0BYrdb2TVi-TDUSai4qUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.437 [XNIO-1 task-1] Y0BYrdb2TVi-TDUSai4qUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.437 [XNIO-1 task-1] Y0BYrdb2TVi-TDUSai4qUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.438 [XNIO-1 task-1] Y0BYrdb2TVi-TDUSai4qUg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.443 [XNIO-1 task-1] Y0BYrdb2TVi-TDUSai4qUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:51.449 [XNIO-1 task-1] njgKd6xXQ5G6BvG-CsiZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7d07a4ec-5fcd-4dc1-85e2-e75e88ff4b50 +18:00:51.449 [XNIO-1 task-1] njgKd6xXQ5G6BvG-CsiZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.462 [XNIO-1 task-1] njgKd6xXQ5G6BvG-CsiZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.462 [XNIO-1 task-1] njgKd6xXQ5G6BvG-CsiZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7d07a4ec-5fcd-4dc1-85e2-e75e88ff4b50 +18:00:51.462 [XNIO-1 task-1] njgKd6xXQ5G6BvG-CsiZuA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7d07a4ec-5fcd-4dc1-85e2-e75e88ff4b50 +18:00:51.471 [XNIO-1 task-1] K_6wZAk6RUm5jB43jBvXbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.471 [XNIO-1 task-1] K_6wZAk6RUm5jB43jBvXbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.471 [XNIO-1 task-1] K_6wZAk6RUm5jB43jBvXbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.472 [XNIO-1 task-1] K_6wZAk6RUm5jB43jBvXbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.478 [XNIO-1 task-1] mPrA27koRMKDLlfmkkLlvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.479 [XNIO-1 task-1] mPrA27koRMKDLlfmkkLlvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.479 [XNIO-1 task-1] mPrA27koRMKDLlfmkkLlvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.480 [XNIO-1 task-1] mPrA27koRMKDLlfmkkLlvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.480 [XNIO-1 task-1] mPrA27koRMKDLlfmkkLlvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.492 [XNIO-1 task-1] J1dvIas9RZuZnkz_J7jacw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.492 [XNIO-1 task-1] J1dvIas9RZuZnkz_J7jacw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.492 [XNIO-1 task-1] J1dvIas9RZuZnkz_J7jacw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.492 [XNIO-1 task-1] J1dvIas9RZuZnkz_J7jacw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.493 [XNIO-1 task-1] J1dvIas9RZuZnkz_J7jacw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.494 [XNIO-1 task-1] J1dvIas9RZuZnkz_J7jacw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9d090ab-1e45-4b41-91d8-3807d22fa50c is not found.","severity":"ERROR"} +18:00:51.500 [XNIO-1 task-1] JdLodbDqRxaQ45JPLTiZ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.501 [XNIO-1 task-1] JdLodbDqRxaQ45JPLTiZ4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.501 [XNIO-1 task-1] JdLodbDqRxaQ45JPLTiZ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.501 [XNIO-1 task-1] JdLodbDqRxaQ45JPLTiZ4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.502 [XNIO-1 task-1] JdLodbDqRxaQ45JPLTiZ4w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.515 [XNIO-1 task-1] xlV0xtdlQvCZib5Gqut4dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:51.515 [XNIO-1 task-1] xlV0xtdlQvCZib5Gqut4dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.516 [XNIO-1 task-1] xlV0xtdlQvCZib5Gqut4dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.516 [XNIO-1 task-1] xlV0xtdlQvCZib5Gqut4dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:51.517 [XNIO-1 task-1] xlV0xtdlQvCZib5Gqut4dA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:51.520 [XNIO-1 task-1] CxekAcCASXCH9oQkAb5HSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.520 [XNIO-1 task-1] CxekAcCASXCH9oQkAb5HSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.520 [XNIO-1 task-1] CxekAcCASXCH9oQkAb5HSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.521 [XNIO-1 task-1] CxekAcCASXCH9oQkAb5HSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.521 [XNIO-1 task-1] CxekAcCASXCH9oQkAb5HSA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.531 [XNIO-1 task-1] 7G4t2ffeT06tWAwb-x7jOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.531 [XNIO-1 task-1] 7G4t2ffeT06tWAwb-x7jOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.531 [XNIO-1 task-1] 7G4t2ffeT06tWAwb-x7jOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.532 [XNIO-1 task-1] 7G4t2ffeT06tWAwb-x7jOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.532 [XNIO-1 task-1] 7G4t2ffeT06tWAwb-x7jOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.534 [XNIO-1 task-1] 7G4t2ffeT06tWAwb-x7jOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9d090ab-1e45-4b41-91d8-3807d22fa50c is not found.","severity":"ERROR"} +18:00:51.544 [XNIO-1 task-1] fFgZpvHYSJidS9DoA-p-Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.546 [XNIO-1 task-1] fFgZpvHYSJidS9DoA-p-Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.546 [XNIO-1 task-1] fFgZpvHYSJidS9DoA-p-Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.546 [XNIO-1 task-1] fFgZpvHYSJidS9DoA-p-Cg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.561 [XNIO-1 task-1] gikL80XvQjG6G0BTyaBptw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.561 [XNIO-1 task-1] gikL80XvQjG6G0BTyaBptw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.562 [XNIO-1 task-1] gikL80XvQjG6G0BTyaBptw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.562 [XNIO-1 task-1] gikL80XvQjG6G0BTyaBptw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.562 [XNIO-1 task-1] gikL80XvQjG6G0BTyaBptw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.569 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6ebd0343-c9b7-49b7-b4f3-a7c7429a36db +18:00:51.570 [XNIO-1 task-1] 5_HfAMe7QCa53Br3mnGcNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:51.570 [XNIO-1 task-1] 5_HfAMe7QCa53Br3mnGcNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.570 [XNIO-1 task-1] 5_HfAMe7QCa53Br3mnGcNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.570 [XNIO-1 task-1] 5_HfAMe7QCa53Br3mnGcNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:51.570 [XNIO-1 task-1] 5_HfAMe7QCa53Br3mnGcNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:51.570 [XNIO-1 task-1] 5_HfAMe7QCa53Br3mnGcNQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:51.571 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9741439c-f6b1-46ff-a5ff-cc56125e947e +18:00:51.573 [XNIO-1 task-1] 7ont0LXKSVqpUBf3gAZ1eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.573 [XNIO-1 task-1] 7ont0LXKSVqpUBf3gAZ1eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.573 [XNIO-1 task-1] 7ont0LXKSVqpUBf3gAZ1eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.574 [XNIO-1 task-1] 7ont0LXKSVqpUBf3gAZ1eA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.583 [XNIO-1 task-1] 1V7qPDKLQZmMmTV5bCxA7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:51.583 [XNIO-1 task-1] 1V7qPDKLQZmMmTV5bCxA7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.583 [XNIO-1 task-1] 1V7qPDKLQZmMmTV5bCxA7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.583 [XNIO-1 task-1] 1V7qPDKLQZmMmTV5bCxA7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:51.583 [XNIO-1 task-1] 1V7qPDKLQZmMmTV5bCxA7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:51.584 [XNIO-1 task-1] 1V7qPDKLQZmMmTV5bCxA7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:51.592 [XNIO-1 task-1] _sPty1q7QICd9wTUdFrQYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:51.592 [XNIO-1 task-1] _sPty1q7QICd9wTUdFrQYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.592 [XNIO-1 task-1] _sPty1q7QICd9wTUdFrQYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.592 [XNIO-1 task-1] _sPty1q7QICd9wTUdFrQYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:51.592 [XNIO-1 task-1] _sPty1q7QICd9wTUdFrQYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:51.595 [XNIO-1 task-1] sZKQSZ_HQaK8Odu14vrFhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.595 [XNIO-1 task-1] sZKQSZ_HQaK8Odu14vrFhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.595 [XNIO-1 task-1] sZKQSZ_HQaK8Odu14vrFhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.596 [XNIO-1 task-1] sZKQSZ_HQaK8Odu14vrFhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.608 [XNIO-1 task-1] uBCeqV7lRVa1E1mMUAZdLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:51.608 [XNIO-1 task-1] uBCeqV7lRVa1E1mMUAZdLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.608 [XNIO-1 task-1] uBCeqV7lRVa1E1mMUAZdLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.609 [XNIO-1 task-1] uBCeqV7lRVa1E1mMUAZdLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:51.609 [XNIO-1 task-1] uBCeqV7lRVa1E1mMUAZdLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "083c91b1-18a6-41eb-8a51-e28634a08ee1", "083c91b1-18a6-41eb-8a51-e28634a08ee1", refreshToken) +18:00:51.628 [XNIO-1 task-1] 973_QexMQa-suMvwFfVMmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.628 [XNIO-1 task-1] 973_QexMQa-suMvwFfVMmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.629 [XNIO-1 task-1] 973_QexMQa-suMvwFfVMmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.629 [XNIO-1 task-1] 973_QexMQa-suMvwFfVMmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.629 [XNIO-1 task-1] 973_QexMQa-suMvwFfVMmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:51.629 [XNIO-1 task-1] 973_QexMQa-suMvwFfVMmQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:51.636 [XNIO-1 task-1] DTqhJBfgSwm5c6O42_vlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.636 [XNIO-1 task-1] DTqhJBfgSwm5c6O42_vlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.636 [XNIO-1 task-1] DTqhJBfgSwm5c6O42_vlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.636 [XNIO-1 task-1] DTqhJBfgSwm5c6O42_vlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.636 [XNIO-1 task-1] DTqhJBfgSwm5c6O42_vlpw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.643 [XNIO-1 task-1] AnQRf2nTTlOHOLN-uODOCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5, base path is set to: null +18:00:51.643 [XNIO-1 task-1] AnQRf2nTTlOHOLN-uODOCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.643 [XNIO-1 task-1] AnQRf2nTTlOHOLN-uODOCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.643 [XNIO-1 task-1] AnQRf2nTTlOHOLN-uODOCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5, base path is set to: null +18:00:51.643 [XNIO-1 task-1] AnQRf2nTTlOHOLN-uODOCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a7a876f0-29c4-4232-af37-3645d5e223f5", "a7a876f0-29c4-4232-af37-3645d5e223f5", refreshToken) +18:00:51.647 [XNIO-1 task-1] KcCiv4UxTEyr8cD1_MMEJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.647 [XNIO-1 task-1] KcCiv4UxTEyr8cD1_MMEJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.647 [XNIO-1 task-1] KcCiv4UxTEyr8cD1_MMEJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.647 [XNIO-1 task-1] KcCiv4UxTEyr8cD1_MMEJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.647 [XNIO-1 task-1] KcCiv4UxTEyr8cD1_MMEJA DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:51.647 [XNIO-1 task-1] KcCiv4UxTEyr8cD1_MMEJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:51.659 [XNIO-1 task-1] woyEpoddThuV538z4A8IeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.659 [XNIO-1 task-1] woyEpoddThuV538z4A8IeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.659 [XNIO-1 task-1] woyEpoddThuV538z4A8IeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.659 [XNIO-1 task-1] woyEpoddThuV538z4A8IeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.660 [XNIO-1 task-1] woyEpoddThuV538z4A8IeA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.666 [XNIO-1 task-1] _elgU6iORbiTPwjL68tkrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5, base path is set to: null +18:00:51.666 [XNIO-1 task-1] _elgU6iORbiTPwjL68tkrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.666 [XNIO-1 task-1] _elgU6iORbiTPwjL68tkrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.666 [XNIO-1 task-1] _elgU6iORbiTPwjL68tkrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5, base path is set to: null +18:00:51.666 [XNIO-1 task-1] _elgU6iORbiTPwjL68tkrg DEBUG com.networknt.schema.TypeValidator debug - validate( "a7a876f0-29c4-4232-af37-3645d5e223f5", "a7a876f0-29c4-4232-af37-3645d5e223f5", refreshToken) +18:00:51.677 [XNIO-1 task-1] mzJfDsDdT6qFoyyuMFQSoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.677 [XNIO-1 task-1] mzJfDsDdT6qFoyyuMFQSoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.677 [XNIO-1 task-1] mzJfDsDdT6qFoyyuMFQSoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.677 [XNIO-1 task-1] mzJfDsDdT6qFoyyuMFQSoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.677 [XNIO-1 task-1] mzJfDsDdT6qFoyyuMFQSoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:51.678 [XNIO-1 task-1] mzJfDsDdT6qFoyyuMFQSoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:51.680 [XNIO-1 task-1] BLZ0NJe4Th65kjABilVY3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.680 [XNIO-1 task-1] BLZ0NJe4Th65kjABilVY3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.680 [XNIO-1 task-1] BLZ0NJe4Th65kjABilVY3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.681 [XNIO-1 task-1] BLZ0NJe4Th65kjABilVY3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.681 [XNIO-1 task-1] BLZ0NJe4Th65kjABilVY3g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.683 [XNIO-1 task-1] UQapsgvOTK6L3GduKT6NkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:51.683 [XNIO-1 task-1] UQapsgvOTK6L3GduKT6NkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.684 [XNIO-1 task-1] UQapsgvOTK6L3GduKT6NkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.684 [XNIO-1 task-1] UQapsgvOTK6L3GduKT6NkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:51.684 [XNIO-1 task-1] UQapsgvOTK6L3GduKT6NkA DEBUG com.networknt.schema.TypeValidator debug - validate( "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", refreshToken) +18:00:51.693 [XNIO-1 task-1] oyPCLHf_QnCcQEH2o7y5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5, base path is set to: null +18:00:51.694 [XNIO-1 task-1] oyPCLHf_QnCcQEH2o7y5Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.694 [XNIO-1 task-1] oyPCLHf_QnCcQEH2o7y5Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.694 [XNIO-1 task-1] oyPCLHf_QnCcQEH2o7y5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5, base path is set to: null +18:00:51.694 [XNIO-1 task-1] oyPCLHf_QnCcQEH2o7y5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7a876f0-29c4-4232-af37-3645d5e223f5", "a7a876f0-29c4-4232-af37-3645d5e223f5", refreshToken) +18:00:51.697 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6ebd0343-c9b7-49b7-b4f3-a7c7429a36db +18:00:51.708 [XNIO-1 task-1] haPhCdcuR2Ck5gySogOwtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.708 [XNIO-1 task-1] haPhCdcuR2Ck5gySogOwtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.708 [XNIO-1 task-1] haPhCdcuR2Ck5gySogOwtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.709 [XNIO-1 task-1] haPhCdcuR2Ck5gySogOwtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.710 [XNIO-1 task-1] haPhCdcuR2Ck5gySogOwtA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a1f76fd3-13d9-4e71-9c96-36a5bd8c8711 +18:00:51.712 [XNIO-1 task-1] Y8EmbwIYQD2JLNbK0OyDyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:51.713 [XNIO-1 task-1] Y8EmbwIYQD2JLNbK0OyDyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.713 [XNIO-1 task-1] Y8EmbwIYQD2JLNbK0OyDyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.713 [XNIO-1 task-1] Y8EmbwIYQD2JLNbK0OyDyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:51.713 [XNIO-1 task-1] Y8EmbwIYQD2JLNbK0OyDyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1ad4d04a-fd5d-45c6-9499-8d06beaed669", "1ad4d04a-fd5d-45c6-9499-8d06beaed669", refreshToken) +18:00:51.713 [XNIO-1 task-1] Y8EmbwIYQD2JLNbK0OyDyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ad4d04a-fd5d-45c6-9499-8d06beaed669 is not found.","severity":"ERROR"} +18:00:51.716 [XNIO-1 task-1] MkhsOXGhS9awUS0W-jXM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c62f8783-681a-486f-9788-6a7e5a530542 +18:00:51.716 [XNIO-1 task-1] MkhsOXGhS9awUS0W-jXM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.716 [XNIO-1 task-1] MkhsOXGhS9awUS0W-jXM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.716 [XNIO-1 task-1] MkhsOXGhS9awUS0W-jXM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c62f8783-681a-486f-9788-6a7e5a530542 +18:00:51.716 [XNIO-1 task-1] MkhsOXGhS9awUS0W-jXM-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c62f8783-681a-486f-9788-6a7e5a530542 +18:00:51.720 [XNIO-1 task-1] Ssuvs97FRJmOJmPgj2UA_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.720 [XNIO-1 task-1] Ssuvs97FRJmOJmPgj2UA_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.720 [XNIO-1 task-1] Ssuvs97FRJmOJmPgj2UA_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.721 [XNIO-1 task-1] Ssuvs97FRJmOJmPgj2UA_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:51.721 [XNIO-1 task-1] Ssuvs97FRJmOJmPgj2UA_w DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:51.721 [XNIO-1 task-1] Ssuvs97FRJmOJmPgj2UA_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:51.723 [XNIO-1 task-1] JE_Y7A3wTJaz21bJrvAIqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:51.723 [XNIO-1 task-1] JE_Y7A3wTJaz21bJrvAIqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.723 [XNIO-1 task-1] JE_Y7A3wTJaz21bJrvAIqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.723 [XNIO-1 task-1] JE_Y7A3wTJaz21bJrvAIqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:51.723 [XNIO-1 task-1] JE_Y7A3wTJaz21bJrvAIqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:51.725 [XNIO-1 task-1] c9HI8pEeSSyAhzvow8XAHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5 +18:00:51.725 [XNIO-1 task-1] c9HI8pEeSSyAhzvow8XAHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.726 [XNIO-1 task-1] c9HI8pEeSSyAhzvow8XAHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.726 [XNIO-1 task-1] c9HI8pEeSSyAhzvow8XAHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a7a876f0-29c4-4232-af37-3645d5e223f5 +18:00:51.726 [XNIO-1 task-1] c9HI8pEeSSyAhzvow8XAHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a7a876f0-29c4-4232-af37-3645d5e223f5 +18:00:51.734 [XNIO-1 task-1] CECaZ0osRuCs-ULdjX2AUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c22b7b9-c360-4c75-b3f0-72fd2640fba2, base path is set to: null +18:00:51.734 [XNIO-1 task-1] CECaZ0osRuCs-ULdjX2AUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.734 [XNIO-1 task-1] CECaZ0osRuCs-ULdjX2AUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.734 [XNIO-1 task-1] CECaZ0osRuCs-ULdjX2AUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c22b7b9-c360-4c75-b3f0-72fd2640fba2, base path is set to: null +18:00:51.734 [XNIO-1 task-1] CECaZ0osRuCs-ULdjX2AUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1c22b7b9-c360-4c75-b3f0-72fd2640fba2", "1c22b7b9-c360-4c75-b3f0-72fd2640fba2", refreshToken) +18:00:51.739 [XNIO-1 task-1] CECaZ0osRuCs-ULdjX2AUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1c22b7b9-c360-4c75-b3f0-72fd2640fba2 is not found.","severity":"ERROR"} +18:00:51.742 [XNIO-1 task-1] rbGCMKV9SBi3KhGGOPHiUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:51.742 [XNIO-1 task-1] rbGCMKV9SBi3KhGGOPHiUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.742 [XNIO-1 task-1] rbGCMKV9SBi3KhGGOPHiUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.743 [XNIO-1 task-1] rbGCMKV9SBi3KhGGOPHiUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:51.744 [XNIO-1 task-1] rbGCMKV9SBi3KhGGOPHiUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:51.750 [XNIO-1 task-1] J4syUsq-Ry-BSW6guGeyvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.750 [XNIO-1 task-1] J4syUsq-Ry-BSW6guGeyvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.751 [XNIO-1 task-1] J4syUsq-Ry-BSW6guGeyvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.751 [XNIO-1 task-1] J4syUsq-Ry-BSW6guGeyvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.751 [XNIO-1 task-1] J4syUsq-Ry-BSW6guGeyvA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.758 [XNIO-1 task-1] ArFUtBt-S0WTQ1OsxX3DVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.758 [XNIO-1 task-1] ArFUtBt-S0WTQ1OsxX3DVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.758 [XNIO-1 task-1] ArFUtBt-S0WTQ1OsxX3DVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.758 [XNIO-1 task-1] ArFUtBt-S0WTQ1OsxX3DVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.766 [XNIO-1 task-1] Gu5qEABHRMC-wsM7HERrBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.766 [XNIO-1 task-1] Gu5qEABHRMC-wsM7HERrBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.767 [XNIO-1 task-1] Gu5qEABHRMC-wsM7HERrBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.767 [XNIO-1 task-1] Gu5qEABHRMC-wsM7HERrBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.767 [XNIO-1 task-1] Gu5qEABHRMC-wsM7HERrBg DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:51.767 [XNIO-1 task-1] Gu5qEABHRMC-wsM7HERrBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:51.775 [XNIO-1 task-1] 1J-OUrVLRaydlFrYdI7i9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.775 [XNIO-1 task-1] 1J-OUrVLRaydlFrYdI7i9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.775 [XNIO-1 task-1] 1J-OUrVLRaydlFrYdI7i9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.775 [XNIO-1 task-1] 1J-OUrVLRaydlFrYdI7i9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.776 [XNIO-1 task-1] 1J-OUrVLRaydlFrYdI7i9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.783 [XNIO-1 task-1] jopNuHeITvipaAft6-Uzhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.783 [XNIO-1 task-1] jopNuHeITvipaAft6-Uzhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.784 [XNIO-1 task-1] jopNuHeITvipaAft6-Uzhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.784 [XNIO-1 task-1] jopNuHeITvipaAft6-Uzhw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.784 [XNIO-1 task-1] jopNuHeITvipaAft6-Uzhw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.793 [XNIO-1 task-1] 2bRvmEcFQlqXuyIQsEUBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.793 [XNIO-1 task-1] 2bRvmEcFQlqXuyIQsEUBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.793 [XNIO-1 task-1] 2bRvmEcFQlqXuyIQsEUBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.793 [XNIO-1 task-1] 2bRvmEcFQlqXuyIQsEUBWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.793 [XNIO-1 task-1] 2bRvmEcFQlqXuyIQsEUBWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.795 [XNIO-1 task-1] 2bRvmEcFQlqXuyIQsEUBWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:51.799 [XNIO-1 task-1] BU1ceYNQS5eV67vHQlL7HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.799 [XNIO-1 task-1] BU1ceYNQS5eV67vHQlL7HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.799 [XNIO-1 task-1] BU1ceYNQS5eV67vHQlL7HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.800 [XNIO-1 task-1] BU1ceYNQS5eV67vHQlL7HA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.802 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:73b018b3-4fbb-481a-ab47-08686a46dc3e +18:00:51.814 [XNIO-1 task-1] 1F6tUYceQ2-CaqaJhsdF3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.814 [XNIO-1 task-1] 1F6tUYceQ2-CaqaJhsdF3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.814 [XNIO-1 task-1] 1F6tUYceQ2-CaqaJhsdF3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.815 [XNIO-1 task-1] 1F6tUYceQ2-CaqaJhsdF3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.815 [XNIO-1 task-1] 1F6tUYceQ2-CaqaJhsdF3g DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:51.815 [XNIO-1 task-1] 1F6tUYceQ2-CaqaJhsdF3g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:51.820 [XNIO-1 task-1] O_H8_NRlRDupKM4D15bBuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.820 [XNIO-1 task-1] O_H8_NRlRDupKM4D15bBuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.820 [XNIO-1 task-1] O_H8_NRlRDupKM4D15bBuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.820 [XNIO-1 task-1] O_H8_NRlRDupKM4D15bBuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.820 [XNIO-1 task-1] O_H8_NRlRDupKM4D15bBuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.822 [XNIO-1 task-1] O_H8_NRlRDupKM4D15bBuw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:51.825 [XNIO-1 task-1] OWT7PNm_QFS_gly3eRpKtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.826 [XNIO-1 task-1] OWT7PNm_QFS_gly3eRpKtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.826 [XNIO-1 task-1] OWT7PNm_QFS_gly3eRpKtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.826 [XNIO-1 task-1] OWT7PNm_QFS_gly3eRpKtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.836 [XNIO-1 task-1] oDa7JIf4RX-m7MTQyvX5yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.836 [XNIO-1 task-1] oDa7JIf4RX-m7MTQyvX5yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.836 [XNIO-1 task-1] oDa7JIf4RX-m7MTQyvX5yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.837 [XNIO-1 task-1] oDa7JIf4RX-m7MTQyvX5yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.837 [XNIO-1 task-1] oDa7JIf4RX-m7MTQyvX5yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:51.837 [XNIO-1 task-1] oDa7JIf4RX-m7MTQyvX5yQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:51.839 [XNIO-1 task-1] Lsyh5ueASdyg4SUE3OGHsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.840 [XNIO-1 task-1] Lsyh5ueASdyg4SUE3OGHsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.840 [XNIO-1 task-1] Lsyh5ueASdyg4SUE3OGHsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.840 [XNIO-1 task-1] Lsyh5ueASdyg4SUE3OGHsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.841 [XNIO-1 task-1] Lsyh5ueASdyg4SUE3OGHsg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.842 [XNIO-1 task-1] Lsyh5ueASdyg4SUE3OGHsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:51.851 [XNIO-1 task-1] OwTx7GWgRHGmxQhavXPvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.851 [XNIO-1 task-1] OwTx7GWgRHGmxQhavXPvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.851 [XNIO-1 task-1] OwTx7GWgRHGmxQhavXPvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.851 [XNIO-1 task-1] OwTx7GWgRHGmxQhavXPvxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.859 [XNIO-1 task-1] YIcXlEbWQI6x6mcXR1HmUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.860 [XNIO-1 task-1] YIcXlEbWQI6x6mcXR1HmUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.860 [XNIO-1 task-1] YIcXlEbWQI6x6mcXR1HmUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.860 [XNIO-1 task-1] YIcXlEbWQI6x6mcXR1HmUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:51.861 [XNIO-1 task-1] YIcXlEbWQI6x6mcXR1HmUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:51.861 [XNIO-1 task-1] YIcXlEbWQI6x6mcXR1HmUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:51.868 [XNIO-1 task-1] i586VGOQRWqvmkJrKZeL4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.868 [XNIO-1 task-1] i586VGOQRWqvmkJrKZeL4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.868 [XNIO-1 task-1] i586VGOQRWqvmkJrKZeL4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.869 [XNIO-1 task-1] i586VGOQRWqvmkJrKZeL4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.870 [XNIO-1 task-1] i586VGOQRWqvmkJrKZeL4A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.883 [XNIO-1 task-1] ASSKPxQZRiuBjSS-OtfYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.883 [XNIO-1 task-1] ASSKPxQZRiuBjSS-OtfYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.883 [XNIO-1 task-1] ASSKPxQZRiuBjSS-OtfYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.884 [XNIO-1 task-1] ASSKPxQZRiuBjSS-OtfYGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:51.894 [XNIO-1 task-1] 5h8r7b59QkaUYjS9uIpbvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.895 [XNIO-1 task-1] 5h8r7b59QkaUYjS9uIpbvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.895 [XNIO-1 task-1] 5h8r7b59QkaUYjS9uIpbvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.895 [XNIO-1 task-1] 5h8r7b59QkaUYjS9uIpbvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.895 [XNIO-1 task-1] 5h8r7b59QkaUYjS9uIpbvw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.914 [XNIO-1 task-1] qk1ny7VoTZiJF969mENnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.914 [XNIO-1 task-1] qk1ny7VoTZiJF969mENnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.914 [XNIO-1 task-1] qk1ny7VoTZiJF969mENnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.914 [XNIO-1 task-1] qk1ny7VoTZiJF969mENnrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.914 [XNIO-1 task-1] qk1ny7VoTZiJF969mENnrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.915 [XNIO-1 task-1] qk1ny7VoTZiJF969mENnrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48e99d78-e069-426f-89d0-5532a7fad6f0 is not found.","severity":"ERROR"} +18:00:51.920 [XNIO-1 task-1] 39cSht_9R86QKDzpsFR3LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.920 [XNIO-1 task-1] 39cSht_9R86QKDzpsFR3LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.920 [XNIO-1 task-1] 39cSht_9R86QKDzpsFR3LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.920 [XNIO-1 task-1] 39cSht_9R86QKDzpsFR3LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.920 [XNIO-1 task-1] 39cSht_9R86QKDzpsFR3LA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.924 [XNIO-1 task-1] MZAs9D9kRnmpWw4oupmbEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.924 [XNIO-1 task-1] MZAs9D9kRnmpWw4oupmbEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.924 [XNIO-1 task-1] MZAs9D9kRnmpWw4oupmbEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.924 [XNIO-1 task-1] MZAs9D9kRnmpWw4oupmbEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.925 [XNIO-1 task-1] MZAs9D9kRnmpWw4oupmbEA DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:51.925 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.930 [XNIO-1 task-1] Si3IMQFsTs28Zl9l2rBE_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.930 [XNIO-1 task-1] Si3IMQFsTs28Zl9l2rBE_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.930 [XNIO-1 task-1] Si3IMQFsTs28Zl9l2rBE_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.930 [XNIO-1 task-1] Si3IMQFsTs28Zl9l2rBE_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:51.930 [XNIO-1 task-1] Si3IMQFsTs28Zl9l2rBE_A DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:51.931 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:51.943 [XNIO-1 task-1] GXLrXpVsQqK6GhEVqI7oXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:51.943 [XNIO-1 task-1] GXLrXpVsQqK6GhEVqI7oXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.943 [XNIO-1 task-1] GXLrXpVsQqK6GhEVqI7oXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.943 [XNIO-1 task-1] GXLrXpVsQqK6GhEVqI7oXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:51.944 [XNIO-1 task-1] GXLrXpVsQqK6GhEVqI7oXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:51.944 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.947 [XNIO-1 task-1] 2UUljuEORSS1SqYJiSq4Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:51.948 [XNIO-1 task-1] 2UUljuEORSS1SqYJiSq4Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.948 [XNIO-1 task-1] 2UUljuEORSS1SqYJiSq4Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.948 [XNIO-1 task-1] 2UUljuEORSS1SqYJiSq4Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:51.948 [XNIO-1 task-1] 2UUljuEORSS1SqYJiSq4Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:51.948 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.958 [XNIO-1 task-1] MokEr4YyRpi1GjrI5agkAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.958 [XNIO-1 task-1] MokEr4YyRpi1GjrI5agkAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.959 [XNIO-1 task-1] MokEr4YyRpi1GjrI5agkAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:51.959 [XNIO-1 task-1] MokEr4YyRpi1GjrI5agkAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:51.959 [XNIO-1 task-1] MokEr4YyRpi1GjrI5agkAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:51.964 [XNIO-1 task-1] o6kaLAJxTPWRxo6sJk3H1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.964 [XNIO-1 task-1] o6kaLAJxTPWRxo6sJk3H1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.964 [XNIO-1 task-1] o6kaLAJxTPWRxo6sJk3H1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.964 [XNIO-1 task-1] o6kaLAJxTPWRxo6sJk3H1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.964 [XNIO-1 task-1] o6kaLAJxTPWRxo6sJk3H1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.965 [XNIO-1 task-1] o6kaLAJxTPWRxo6sJk3H1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9d090ab-1e45-4b41-91d8-3807d22fa50c is not found.","severity":"ERROR"} +18:00:51.970 [XNIO-1 task-1] vJPo8bWDTF-0EcGEzeRjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.970 [XNIO-1 task-1] vJPo8bWDTF-0EcGEzeRjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.970 [XNIO-1 task-1] vJPo8bWDTF-0EcGEzeRjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.970 [XNIO-1 task-1] vJPo8bWDTF-0EcGEzeRjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.970 [XNIO-1 task-1] vJPo8bWDTF-0EcGEzeRjww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.972 [XNIO-1 task-1] vJPo8bWDTF-0EcGEzeRjww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9d090ab-1e45-4b41-91d8-3807d22fa50c is not found.","severity":"ERROR"} +18:00:51.974 [XNIO-1 task-1] KmkWaR0LS0WXeZg7mUOBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:51.975 [XNIO-1 task-1] KmkWaR0LS0WXeZg7mUOBsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.975 [XNIO-1 task-1] KmkWaR0LS0WXeZg7mUOBsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.975 [XNIO-1 task-1] KmkWaR0LS0WXeZg7mUOBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:51.975 [XNIO-1 task-1] KmkWaR0LS0WXeZg7mUOBsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:51.975 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:51.981 [XNIO-1 task-1] RdjUbTQMSP68MIp8EhqTfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:51.981 [XNIO-1 task-1] RdjUbTQMSP68MIp8EhqTfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.981 [XNIO-1 task-1] RdjUbTQMSP68MIp8EhqTfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.981 [XNIO-1 task-1] RdjUbTQMSP68MIp8EhqTfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:51.982 [XNIO-1 task-1] RdjUbTQMSP68MIp8EhqTfA DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:51.982 [XNIO-1 task-1] RdjUbTQMSP68MIp8EhqTfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:51.993 [XNIO-1 task-1] Xa4lbNLgQraOqmESCfq5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.993 [XNIO-1 task-1] Xa4lbNLgQraOqmESCfq5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:51.993 [XNIO-1 task-1] Xa4lbNLgQraOqmESCfq5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:51.993 [XNIO-1 task-1] Xa4lbNLgQraOqmESCfq5Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.994 [XNIO-1 task-1] Xa4lbNLgQraOqmESCfq5Eg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:51.998 [XNIO-1 task-1] kiCv_3sMSHa1VLUNB__94A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:51.998 [XNIO-1 task-1] kiCv_3sMSHa1VLUNB__94A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:51.998 [XNIO-1 task-1] kiCv_3sMSHa1VLUNB__94A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:51.999 [XNIO-1 task-1] kiCv_3sMSHa1VLUNB__94A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:52.000 [XNIO-1 task-1] kiCv_3sMSHa1VLUNB__94A DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:52.000 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:52.005 [XNIO-1 task-1] gcLSjCqqSjGFcFX3CAqXTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:52.006 [XNIO-1 task-1] gcLSjCqqSjGFcFX3CAqXTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.006 [XNIO-1 task-1] gcLSjCqqSjGFcFX3CAqXTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.006 [XNIO-1 task-1] gcLSjCqqSjGFcFX3CAqXTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c, base path is set to: null +18:00:52.006 [XNIO-1 task-1] gcLSjCqqSjGFcFX3CAqXTA DEBUG com.networknt.schema.TypeValidator debug - validate( "55a1d357-88d9-4e54-9e96-a9e03290205c", "55a1d357-88d9-4e54-9e96-a9e03290205c", refreshToken) +18:00:52.007 [XNIO-1 task-1] gcLSjCqqSjGFcFX3CAqXTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 55a1d357-88d9-4e54-9e96-a9e03290205c is not found.","severity":"ERROR"} +18:00:52.010 [XNIO-1 task-1] Iw2FGAyuQmiQ7VmVSnro8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:52.010 [XNIO-1 task-1] Iw2FGAyuQmiQ7VmVSnro8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.010 [XNIO-1 task-1] Iw2FGAyuQmiQ7VmVSnro8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.011 [XNIO-1 task-1] Iw2FGAyuQmiQ7VmVSnro8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:52.011 [XNIO-1 task-1] Iw2FGAyuQmiQ7VmVSnro8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:52.014 [XNIO-1 task-1] 1408AKxQQ32OZvn1_QP4Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:52.014 [XNIO-1 task-1] 1408AKxQQ32OZvn1_QP4Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.014 [XNIO-1 task-1] 1408AKxQQ32OZvn1_QP4Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.014 [XNIO-1 task-1] 1408AKxQQ32OZvn1_QP4Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c, base path is set to: null +18:00:52.014 [XNIO-1 task-1] 1408AKxQQ32OZvn1_QP4Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "f9d090ab-1e45-4b41-91d8-3807d22fa50c", "f9d090ab-1e45-4b41-91d8-3807d22fa50c", refreshToken) +18:00:52.015 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:52.021 [XNIO-1 task-1] jXa4tn0UTL6JPNuuRhNtxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.022 [XNIO-1 task-1] jXa4tn0UTL6JPNuuRhNtxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.022 [XNIO-1 task-1] jXa4tn0UTL6JPNuuRhNtxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.022 [XNIO-1 task-1] jXa4tn0UTL6JPNuuRhNtxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.022 [XNIO-1 task-1] jXa4tn0UTL6JPNuuRhNtxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.028 [XNIO-1 task-1] SYktK-RfRuuzAQaYooXpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c +18:00:52.028 [XNIO-1 task-1] SYktK-RfRuuzAQaYooXpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.028 [XNIO-1 task-1] SYktK-RfRuuzAQaYooXpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.028 [XNIO-1 task-1] SYktK-RfRuuzAQaYooXpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c +18:00:52.028 [XNIO-1 task-1] SYktK-RfRuuzAQaYooXpXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2120610f-2b15-424e-8ba7-83ebb85a131c +18:00:52.036 [XNIO-1 task-1] z4CPAqxPQ62TVXqjL0WtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:52.036 [XNIO-1 task-1] z4CPAqxPQ62TVXqjL0WtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.036 [XNIO-1 task-1] z4CPAqxPQ62TVXqjL0WtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.036 [XNIO-1 task-1] z4CPAqxPQ62TVXqjL0WtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:52.036 [XNIO-1 task-1] z4CPAqxPQ62TVXqjL0WtBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 55a1d357-88d9-4e54-9e96-a9e03290205c +18:00:52.043 [XNIO-1 task-1] eB4qv5dIQNmgcVX8eEhOdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:52.043 [XNIO-1 task-1] eB4qv5dIQNmgcVX8eEhOdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.043 [XNIO-1 task-1] eB4qv5dIQNmgcVX8eEhOdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.043 [XNIO-1 task-1] eB4qv5dIQNmgcVX8eEhOdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:52.043 [XNIO-1 task-1] eB4qv5dIQNmgcVX8eEhOdg DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:52.044 [XNIO-1 task-1] eB4qv5dIQNmgcVX8eEhOdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:52.051 [XNIO-1 task-1] t9I72qMGQg62CYMM3mUu-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:52.051 [XNIO-1 task-1] t9I72qMGQg62CYMM3mUu-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.051 [XNIO-1 task-1] t9I72qMGQg62CYMM3mUu-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.051 [XNIO-1 task-1] t9I72qMGQg62CYMM3mUu-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:52.051 [XNIO-1 task-1] t9I72qMGQg62CYMM3mUu-g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9d090ab-1e45-4b41-91d8-3807d22fa50c +18:00:52.052 [XNIO-1 task-1] t9I72qMGQg62CYMM3mUu-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9d090ab-1e45-4b41-91d8-3807d22fa50c is not found.","severity":"ERROR"} +18:00:52.055 [XNIO-1 task-1] _Ku2K8JwQuKGrpuEw9vH5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.055 [XNIO-1 task-1] _Ku2K8JwQuKGrpuEw9vH5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.056 [XNIO-1 task-1] _Ku2K8JwQuKGrpuEw9vH5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.056 [XNIO-1 task-1] _Ku2K8JwQuKGrpuEw9vH5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.067 [XNIO-1 task-1] pHH9m-DMTdePZgJV_tEL-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.067 [XNIO-1 task-1] pHH9m-DMTdePZgJV_tEL-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.067 [XNIO-1 task-1] pHH9m-DMTdePZgJV_tEL-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.067 [XNIO-1 task-1] pHH9m-DMTdePZgJV_tEL-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.067 [XNIO-1 task-1] pHH9m-DMTdePZgJV_tEL-w DEBUG com.networknt.schema.TypeValidator debug - validate( "2120610f-2b15-424e-8ba7-83ebb85a131c", "2120610f-2b15-424e-8ba7-83ebb85a131c", refreshToken) +18:00:52.070 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35925e41 +18:00:52.071 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:18dfc108-6352-44f4-b842-f09a1194a476 +18:00:52.072 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35925e41 +18:00:52.078 [XNIO-1 task-1] vd7pTwBLQGmrbtIHyTPOng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.078 [XNIO-1 task-1] vd7pTwBLQGmrbtIHyTPOng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.078 [XNIO-1 task-1] vd7pTwBLQGmrbtIHyTPOng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.078 [XNIO-1 task-1] vd7pTwBLQGmrbtIHyTPOng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.086 [XNIO-1 task-1] TxoA7Ke6SqK-uwNKf-zaJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.086 [XNIO-1 task-1] TxoA7Ke6SqK-uwNKf-zaJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.087 [XNIO-1 task-1] TxoA7Ke6SqK-uwNKf-zaJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.087 [XNIO-1 task-1] TxoA7Ke6SqK-uwNKf-zaJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.087 [XNIO-1 task-1] TxoA7Ke6SqK-uwNKf-zaJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2120610f-2b15-424e-8ba7-83ebb85a131c", "2120610f-2b15-424e-8ba7-83ebb85a131c", refreshToken) +18:00:52.095 [XNIO-1 task-1] TxoA7Ke6SqK-uwNKf-zaJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2120610f-2b15-424e-8ba7-83ebb85a131c is not found.","severity":"ERROR"} +18:00:52.097 [XNIO-1 task-1] Y0jzfyD5T4eHV-vWE5JmbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.097 [XNIO-1 task-1] Y0jzfyD5T4eHV-vWE5JmbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.097 [XNIO-1 task-1] Y0jzfyD5T4eHV-vWE5JmbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.098 [XNIO-1 task-1] Y0jzfyD5T4eHV-vWE5JmbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.098 [XNIO-1 task-1] Y0jzfyD5T4eHV-vWE5JmbA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.115 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c2c13bea-6240-41c8-bf2a-0132375e9b68 +18:00:52.126 [XNIO-1 task-1] H9pDL0XSSLKjTnvv1shqag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.126 [XNIO-1 task-1] H9pDL0XSSLKjTnvv1shqag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.127 [XNIO-1 task-1] H9pDL0XSSLKjTnvv1shqag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.127 [XNIO-1 task-1] H9pDL0XSSLKjTnvv1shqag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.127 [XNIO-1 task-1] H9pDL0XSSLKjTnvv1shqag DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.135 [XNIO-1 task-1] tJBARkIgRte7bbRlc5banQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.135 [XNIO-1 task-1] tJBARkIgRte7bbRlc5banQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.135 [XNIO-1 task-1] tJBARkIgRte7bbRlc5banQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.136 [XNIO-1 task-1] tJBARkIgRte7bbRlc5banQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.143 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c2c13bea-6240-41c8-bf2a-0132375e9b68 +18:00:52.143 [XNIO-1 task-1] ANY6BmGCQZCzW-gjbyERvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.143 [XNIO-1 task-1] ANY6BmGCQZCzW-gjbyERvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.143 [XNIO-1 task-1] ANY6BmGCQZCzW-gjbyERvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.144 [XNIO-1 task-1] ANY6BmGCQZCzW-gjbyERvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.151 [XNIO-1 task-1] vkeotobcT3yrfYpQwHVeZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.151 [XNIO-1 task-1] vkeotobcT3yrfYpQwHVeZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.151 [XNIO-1 task-1] vkeotobcT3yrfYpQwHVeZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.151 [XNIO-1 task-1] vkeotobcT3yrfYpQwHVeZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.151 [XNIO-1 task-1] vkeotobcT3yrfYpQwHVeZA DEBUG com.networknt.schema.TypeValidator debug - validate( "083c91b1-18a6-41eb-8a51-e28634a08ee1", "083c91b1-18a6-41eb-8a51-e28634a08ee1", refreshToken) +18:00:52.158 [XNIO-1 task-1] vkeotobcT3yrfYpQwHVeZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 083c91b1-18a6-41eb-8a51-e28634a08ee1 is not found.","severity":"ERROR"} +18:00:52.168 [XNIO-1 task-1] 7uOnkPtMTd-izxQjgKTu9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.168 [XNIO-1 task-1] 7uOnkPtMTd-izxQjgKTu9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.168 [XNIO-1 task-1] 7uOnkPtMTd-izxQjgKTu9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.168 [XNIO-1 task-1] 7uOnkPtMTd-izxQjgKTu9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.182 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6c12f7a4-c90f-42c2-b168-2e7cc0125cab +18:00:52.183 [XNIO-1 task-1] H8xy71-tS2qvOIzgxdHEWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.183 [XNIO-1 task-1] H8xy71-tS2qvOIzgxdHEWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.184 [XNIO-1 task-1] H8xy71-tS2qvOIzgxdHEWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.184 [XNIO-1 task-1] H8xy71-tS2qvOIzgxdHEWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.184 [XNIO-1 task-1] H8xy71-tS2qvOIzgxdHEWA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.194 [XNIO-1 task-1] ugBFbjlaSKeqlVOBVWgigg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.194 [XNIO-1 task-1] ugBFbjlaSKeqlVOBVWgigg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.195 [XNIO-1 task-1] ugBFbjlaSKeqlVOBVWgigg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.195 [XNIO-1 task-1] ugBFbjlaSKeqlVOBVWgigg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.195 [XNIO-1 task-1] ugBFbjlaSKeqlVOBVWgigg DEBUG com.networknt.schema.TypeValidator debug - validate( "2120610f-2b15-424e-8ba7-83ebb85a131c", "2120610f-2b15-424e-8ba7-83ebb85a131c", refreshToken) +18:00:52.195 [XNIO-1 task-1] ugBFbjlaSKeqlVOBVWgigg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2120610f-2b15-424e-8ba7-83ebb85a131c is not found.","severity":"ERROR"} +18:00:52.200 [XNIO-1 task-1] xIsOAMY8SNWGOrZB1jMDzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.200 [XNIO-1 task-1] xIsOAMY8SNWGOrZB1jMDzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.200 [XNIO-1 task-1] xIsOAMY8SNWGOrZB1jMDzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.200 [XNIO-1 task-1] xIsOAMY8SNWGOrZB1jMDzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.201 [XNIO-1 task-1] xIsOAMY8SNWGOrZB1jMDzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.202 [XNIO-1 task-1] xIsOAMY8SNWGOrZB1jMDzg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8f411d7f-20ea-43a0-a2e9-24e2671fca1e is not found.","severity":"ERROR"} +18:00:52.206 [XNIO-1 task-1] E2kp3QnwShu8sFEJ1n23rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.206 [XNIO-1 task-1] E2kp3QnwShu8sFEJ1n23rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.206 [XNIO-1 task-1] E2kp3QnwShu8sFEJ1n23rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.206 [XNIO-1 task-1] E2kp3QnwShu8sFEJ1n23rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.206 [XNIO-1 task-1] E2kp3QnwShu8sFEJ1n23rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1 +18:00:52.206 [XNIO-1 task-1] E2kp3QnwShu8sFEJ1n23rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "083c91b1-18a6-41eb-8a51-e28634a08ee1", "083c91b1-18a6-41eb-8a51-e28634a08ee1", refreshToken) +18:00:52.206 [XNIO-1 task-1] E2kp3QnwShu8sFEJ1n23rQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 083c91b1-18a6-41eb-8a51-e28634a08ee1 is not found.","severity":"ERROR"} +18:00:52.212 [XNIO-1 task-1] sXcDXyjySBGFzOcH9E9rBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.212 [XNIO-1 task-1] sXcDXyjySBGFzOcH9E9rBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.212 [XNIO-1 task-1] sXcDXyjySBGFzOcH9E9rBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.212 [XNIO-1 task-1] sXcDXyjySBGFzOcH9E9rBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.219 [XNIO-1 task-1] WNrbqvOfSdGseVyI9qP8Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.219 [XNIO-1 task-1] WNrbqvOfSdGseVyI9qP8Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.219 [XNIO-1 task-1] WNrbqvOfSdGseVyI9qP8Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.219 [XNIO-1 task-1] WNrbqvOfSdGseVyI9qP8Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.220 [XNIO-1 task-1] WNrbqvOfSdGseVyI9qP8Pg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.228 [XNIO-1 task-1] 19nwTQazQJiCEUfutW8e2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.228 [XNIO-1 task-1] 19nwTQazQJiCEUfutW8e2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.228 [XNIO-1 task-1] 19nwTQazQJiCEUfutW8e2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.228 [XNIO-1 task-1] 19nwTQazQJiCEUfutW8e2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.228 [XNIO-1 task-1] 19nwTQazQJiCEUfutW8e2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.231 [XNIO-1 task-1] 19nwTQazQJiCEUfutW8e2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8f411d7f-20ea-43a0-a2e9-24e2671fca1e is not found.","severity":"ERROR"} +18:00:52.238 [XNIO-1 task-1] 9dHgXQFDQOq4qraaLvf5Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.238 [XNIO-1 task-1] 9dHgXQFDQOq4qraaLvf5Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.238 [XNIO-1 task-1] 9dHgXQFDQOq4qraaLvf5Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.238 [XNIO-1 task-1] 9dHgXQFDQOq4qraaLvf5Ew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.250 [XNIO-1 task-1] N9x5ZTmsSSKbQV9YWHVLfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.250 [XNIO-1 task-1] N9x5ZTmsSSKbQV9YWHVLfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.250 [XNIO-1 task-1] N9x5ZTmsSSKbQV9YWHVLfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.250 [XNIO-1 task-1] N9x5ZTmsSSKbQV9YWHVLfA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.250 [XNIO-1 task-1] N9x5ZTmsSSKbQV9YWHVLfA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.255 [XNIO-1 task-1] 8D_Efz2gSBOp4cUAbO5I9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1 +18:00:52.256 [XNIO-1 task-1] 8D_Efz2gSBOp4cUAbO5I9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.256 [XNIO-1 task-1] 8D_Efz2gSBOp4cUAbO5I9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.256 [XNIO-1 task-1] 8D_Efz2gSBOp4cUAbO5I9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1 +18:00:52.256 [XNIO-1 task-1] 8D_Efz2gSBOp4cUAbO5I9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 083c91b1-18a6-41eb-8a51-e28634a08ee1 +18:00:52.260 [XNIO-1 task-1] n9iUQA6EQ72NGYNSEYX8wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e, base path is set to: null +18:00:52.260 [XNIO-1 task-1] n9iUQA6EQ72NGYNSEYX8wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.260 [XNIO-1 task-1] n9iUQA6EQ72NGYNSEYX8wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.260 [XNIO-1 task-1] n9iUQA6EQ72NGYNSEYX8wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e, base path is set to: null +18:00:52.260 [XNIO-1 task-1] n9iUQA6EQ72NGYNSEYX8wg DEBUG com.networknt.schema.TypeValidator debug - validate( "8f411d7f-20ea-43a0-a2e9-24e2671fca1e", "8f411d7f-20ea-43a0-a2e9-24e2671fca1e", refreshToken) +18:00:52.260 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.269 [XNIO-1 task-1] gKbvWjMBQ42Wr0srcCmsag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.270 [XNIO-1 task-1] gKbvWjMBQ42Wr0srcCmsag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.270 [XNIO-1 task-1] gKbvWjMBQ42Wr0srcCmsag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.270 [XNIO-1 task-1] gKbvWjMBQ42Wr0srcCmsag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.270 [XNIO-1 task-1] gKbvWjMBQ42Wr0srcCmsag DEBUG com.networknt.schema.TypeValidator debug - validate( "083c91b1-18a6-41eb-8a51-e28634a08ee1", "083c91b1-18a6-41eb-8a51-e28634a08ee1", refreshToken) +18:00:52.270 [XNIO-1 task-1] gKbvWjMBQ42Wr0srcCmsag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 083c91b1-18a6-41eb-8a51-e28634a08ee1 is not found.","severity":"ERROR"} +18:00:52.273 [XNIO-1 task-1] H8s4hQ33RCG5Z8uYydCZMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.274 [XNIO-1 task-1] H8s4hQ33RCG5Z8uYydCZMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.274 [XNIO-1 task-1] H8s4hQ33RCG5Z8uYydCZMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.274 [XNIO-1 task-1] H8s4hQ33RCG5Z8uYydCZMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.274 [XNIO-1 task-1] H8s4hQ33RCG5Z8uYydCZMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.278 [XNIO-1 task-1] -5uUvrOWRrC31NInFMTYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.278 [XNIO-1 task-1] -5uUvrOWRrC31NInFMTYcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.278 [XNIO-1 task-1] -5uUvrOWRrC31NInFMTYcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.278 [XNIO-1 task-1] -5uUvrOWRrC31NInFMTYcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.278 [XNIO-1 task-1] -5uUvrOWRrC31NInFMTYcw DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:52.278 [XNIO-1 task-1] -5uUvrOWRrC31NInFMTYcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:52.283 [XNIO-1 task-1] wk30T6qkS1q9-1tvgPsEsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.283 [XNIO-1 task-1] wk30T6qkS1q9-1tvgPsEsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.283 [XNIO-1 task-1] wk30T6qkS1q9-1tvgPsEsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.283 [XNIO-1 task-1] wk30T6qkS1q9-1tvgPsEsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.292 [XNIO-1 task-1] XxjWUx1ASW6sNZ--WCBPHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.292 [XNIO-1 task-1] XxjWUx1ASW6sNZ--WCBPHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.292 [XNIO-1 task-1] XxjWUx1ASW6sNZ--WCBPHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.292 [XNIO-1 task-1] XxjWUx1ASW6sNZ--WCBPHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.293 [XNIO-1 task-1] XxjWUx1ASW6sNZ--WCBPHg DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:52.293 [XNIO-1 task-1] XxjWUx1ASW6sNZ--WCBPHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:52.295 [XNIO-1 task-1] IVADjZxXRcymaH_XqefLPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.296 [XNIO-1 task-1] IVADjZxXRcymaH_XqefLPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.296 [XNIO-1 task-1] IVADjZxXRcymaH_XqefLPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.297 [XNIO-1 task-1] IVADjZxXRcymaH_XqefLPA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.303 [XNIO-1 task-1] N-uzjPFNS1-trJSBmENxNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.303 [XNIO-1 task-1] N-uzjPFNS1-trJSBmENxNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.304 [XNIO-1 task-1] N-uzjPFNS1-trJSBmENxNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.304 [XNIO-1 task-1] N-uzjPFNS1-trJSBmENxNA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.304 [XNIO-1 task-1] N-uzjPFNS1-trJSBmENxNA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.335 [XNIO-1 task-1] J4naFt83RGuddRMS3-_Vlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.335 [XNIO-1 task-1] J4naFt83RGuddRMS3-_Vlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.335 [XNIO-1 task-1] J4naFt83RGuddRMS3-_Vlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.335 [XNIO-1 task-1] J4naFt83RGuddRMS3-_Vlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.339 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:35925e41 +18:00:52.340 [XNIO-1 task-1] jiUygDD-QiWpazuxEFeNEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.340 [XNIO-1 task-1] jiUygDD-QiWpazuxEFeNEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.340 [XNIO-1 task-1] jiUygDD-QiWpazuxEFeNEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.340 [XNIO-1 task-1] jiUygDD-QiWpazuxEFeNEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.341 [XNIO-1 task-1] jiUygDD-QiWpazuxEFeNEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.347 [XNIO-1 task-1] iJa9dK5MTCmeSiuvaV_kTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.347 [XNIO-1 task-1] iJa9dK5MTCmeSiuvaV_kTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.347 [XNIO-1 task-1] iJa9dK5MTCmeSiuvaV_kTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.347 [XNIO-1 task-1] iJa9dK5MTCmeSiuvaV_kTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.347 [XNIO-1 task-1] iJa9dK5MTCmeSiuvaV_kTg DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:52.348 [XNIO-1 task-1] iJa9dK5MTCmeSiuvaV_kTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 is not found.","severity":"ERROR"} +18:00:52.354 [XNIO-1 task-1] xFIQemhNQOqydhxkC24T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.354 [XNIO-1 task-1] xFIQemhNQOqydhxkC24T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.355 [XNIO-1 task-1] xFIQemhNQOqydhxkC24T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.355 [XNIO-1 task-1] xFIQemhNQOqydhxkC24T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.355 [XNIO-1 task-1] xFIQemhNQOqydhxkC24T6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.359 [XNIO-1 task-1] 7Kosau12RBCcMA5pAIZ5gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.360 [XNIO-1 task-1] 7Kosau12RBCcMA5pAIZ5gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.360 [XNIO-1 task-1] 7Kosau12RBCcMA5pAIZ5gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.360 [XNIO-1 task-1] 7Kosau12RBCcMA5pAIZ5gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.360 [XNIO-1 task-1] 7Kosau12RBCcMA5pAIZ5gg DEBUG com.networknt.schema.TypeValidator debug - validate( "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", refreshToken) +18:00:52.367 [XNIO-1 task-1] ywkvJgCKTUmGmLi2rC-f_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.367 [XNIO-1 task-1] ywkvJgCKTUmGmLi2rC-f_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.367 [XNIO-1 task-1] ywkvJgCKTUmGmLi2rC-f_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.367 [XNIO-1 task-1] ywkvJgCKTUmGmLi2rC-f_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.368 [XNIO-1 task-1] ywkvJgCKTUmGmLi2rC-f_A DEBUG com.networknt.schema.TypeValidator debug - validate( "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", refreshToken) +18:00:52.371 [XNIO-1 task-1] rXSeLNnJQjqkN6Sjw6A9Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.371 [XNIO-1 task-1] rXSeLNnJQjqkN6Sjw6A9Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.371 [XNIO-1 task-1] rXSeLNnJQjqkN6Sjw6A9Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.371 [XNIO-1 task-1] rXSeLNnJQjqkN6Sjw6A9Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.371 [XNIO-1 task-1] rXSeLNnJQjqkN6Sjw6A9Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", refreshToken) +18:00:52.374 [XNIO-1 task-1] X2-glYr_QACJsg7oDo9Ofw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:52.374 [XNIO-1 task-1] X2-glYr_QACJsg7oDo9Ofw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.374 [XNIO-1 task-1] X2-glYr_QACJsg7oDo9Ofw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.374 [XNIO-1 task-1] X2-glYr_QACJsg7oDo9Ofw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:52.374 [XNIO-1 task-1] X2-glYr_QACJsg7oDo9Ofw DEBUG com.networknt.schema.TypeValidator debug - validate( "1ad4d04a-fd5d-45c6-9499-8d06beaed669", "1ad4d04a-fd5d-45c6-9499-8d06beaed669", refreshToken) +18:00:52.374 [XNIO-1 task-1] X2-glYr_QACJsg7oDo9Ofw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ad4d04a-fd5d-45c6-9499-8d06beaed669 is not found.","severity":"ERROR"} +18:00:52.377 [XNIO-1 task-1] kJAZI3OoSdOSZamROWgM3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.377 [XNIO-1 task-1] kJAZI3OoSdOSZamROWgM3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.377 [XNIO-1 task-1] kJAZI3OoSdOSZamROWgM3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.377 [XNIO-1 task-1] kJAZI3OoSdOSZamROWgM3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.381 [XNIO-1 task-1] kJAZI3OoSdOSZamROWgM3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.396 [XNIO-1 task-1] ohhx25JdTp-InsOv4RyZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.396 [XNIO-1 task-1] ohhx25JdTp-InsOv4RyZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.396 [XNIO-1 task-1] ohhx25JdTp-InsOv4RyZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.397 [XNIO-1 task-1] ohhx25JdTp-InsOv4RyZhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.397 [XNIO-1 task-1] ohhx25JdTp-InsOv4RyZhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.399 [XNIO-1 task-1] bi80SEbJSWy1bWAZFakJOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/526eab13-864f-43c8-ba89-54707eeb75f5, base path is set to: null +18:00:52.399 [XNIO-1 task-1] bi80SEbJSWy1bWAZFakJOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.399 [XNIO-1 task-1] bi80SEbJSWy1bWAZFakJOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.400 [XNIO-1 task-1] bi80SEbJSWy1bWAZFakJOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/526eab13-864f-43c8-ba89-54707eeb75f5, base path is set to: null +18:00:52.400 [XNIO-1 task-1] bi80SEbJSWy1bWAZFakJOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "526eab13-864f-43c8-ba89-54707eeb75f5", "526eab13-864f-43c8-ba89-54707eeb75f5", refreshToken) +18:00:52.402 [XNIO-1 task-1] Lsdu7r4fTY--OV425CGTew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.403 [XNIO-1 task-1] Lsdu7r4fTY--OV425CGTew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.403 [XNIO-1 task-1] Lsdu7r4fTY--OV425CGTew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.403 [XNIO-1 task-1] Lsdu7r4fTY--OV425CGTew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.403 [XNIO-1 task-1] Lsdu7r4fTY--OV425CGTew DEBUG com.networknt.schema.TypeValidator debug - validate( "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", refreshToken) +18:00:52.405 [XNIO-1 task-1] Lsdu7r4fTY--OV425CGTew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 is not found.","severity":"ERROR"} +18:00:52.409 [XNIO-1 task-1] 4Dw2dTtuR66nsCw_wb681A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.409 [XNIO-1 task-1] 4Dw2dTtuR66nsCw_wb681A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.409 [XNIO-1 task-1] 4Dw2dTtuR66nsCw_wb681A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.409 [XNIO-1 task-1] 4Dw2dTtuR66nsCw_wb681A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.409 [XNIO-1 task-1] 4Dw2dTtuR66nsCw_wb681A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.412 [XNIO-1 task-1] uwyD1YaeT3ypdChxGCm2Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/526eab13-864f-43c8-ba89-54707eeb75f5, base path is set to: null +18:00:52.412 [XNIO-1 task-1] uwyD1YaeT3ypdChxGCm2Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.412 [XNIO-1 task-1] uwyD1YaeT3ypdChxGCm2Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.412 [XNIO-1 task-1] uwyD1YaeT3ypdChxGCm2Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/526eab13-864f-43c8-ba89-54707eeb75f5, base path is set to: null +18:00:52.412 [XNIO-1 task-1] uwyD1YaeT3ypdChxGCm2Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "526eab13-864f-43c8-ba89-54707eeb75f5", "526eab13-864f-43c8-ba89-54707eeb75f5", refreshToken) +18:00:52.415 [XNIO-1 task-1] WmYLIQEnRrOAqYPzQvQeXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.415 [XNIO-1 task-1] WmYLIQEnRrOAqYPzQvQeXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.416 [XNIO-1 task-1] WmYLIQEnRrOAqYPzQvQeXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.416 [XNIO-1 task-1] WmYLIQEnRrOAqYPzQvQeXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.417 [XNIO-1 task-1] WmYLIQEnRrOAqYPzQvQeXg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.430 [XNIO-1 task-1] yzLUoV-bT6ymFUJqT7ASGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.430 [XNIO-1 task-1] yzLUoV-bT6ymFUJqT7ASGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.430 [XNIO-1 task-1] yzLUoV-bT6ymFUJqT7ASGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.431 [XNIO-1 task-1] yzLUoV-bT6ymFUJqT7ASGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.437 [XNIO-1 task-1] hNvB86fYQFmw_oLgcrnVDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.437 [XNIO-1 task-1] hNvB86fYQFmw_oLgcrnVDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.438 [XNIO-1 task-1] hNvB86fYQFmw_oLgcrnVDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.438 [XNIO-1 task-1] hNvB86fYQFmw_oLgcrnVDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.438 [XNIO-1 task-1] hNvB86fYQFmw_oLgcrnVDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.456 [XNIO-1 task-1] BL29spWcRdGez4ACYFDAIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.456 [XNIO-1 task-1] BL29spWcRdGez4ACYFDAIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.457 [XNIO-1 task-1] BL29spWcRdGez4ACYFDAIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.458 [XNIO-1 task-1] BL29spWcRdGez4ACYFDAIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.465 [XNIO-1 task-1] C53dMIO9Rr-itJ09LtWp_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.465 [XNIO-1 task-1] C53dMIO9Rr-itJ09LtWp_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.466 [XNIO-1 task-1] C53dMIO9Rr-itJ09LtWp_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.466 [XNIO-1 task-1] C53dMIO9Rr-itJ09LtWp_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.466 [XNIO-1 task-1] C53dMIO9Rr-itJ09LtWp_g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.473 [XNIO-1 task-1] b0A66iPpS0O6yJ0djYDKXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.473 [XNIO-1 task-1] b0A66iPpS0O6yJ0djYDKXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.473 [XNIO-1 task-1] b0A66iPpS0O6yJ0djYDKXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.473 [XNIO-1 task-1] b0A66iPpS0O6yJ0djYDKXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.474 [XNIO-1 task-1] b0A66iPpS0O6yJ0djYDKXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.481 [XNIO-1 task-1] -czjXJORQ0WBq4VhDO4-9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:52.481 [XNIO-1 task-1] -czjXJORQ0WBq4VhDO4-9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.481 [XNIO-1 task-1] -czjXJORQ0WBq4VhDO4-9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.482 [XNIO-1 task-1] -czjXJORQ0WBq4VhDO4-9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:52.482 [XNIO-1 task-1] -czjXJORQ0WBq4VhDO4-9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1ad4d04a-fd5d-45c6-9499-8d06beaed669", "1ad4d04a-fd5d-45c6-9499-8d06beaed669", refreshToken) +18:00:52.482 [XNIO-1 task-1] -czjXJORQ0WBq4VhDO4-9w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ad4d04a-fd5d-45c6-9499-8d06beaed669 is not found.","severity":"ERROR"} +18:00:52.489 [XNIO-1 task-1] A6FwcUU9TLOtPUCzYeN5gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.489 [XNIO-1 task-1] A6FwcUU9TLOtPUCzYeN5gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.489 [XNIO-1 task-1] A6FwcUU9TLOtPUCzYeN5gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.490 [XNIO-1 task-1] A6FwcUU9TLOtPUCzYeN5gg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.496 [XNIO-1 task-1] w2MCVaxlT92k7VpoL8dVoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:52.496 [XNIO-1 task-1] w2MCVaxlT92k7VpoL8dVoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.496 [XNIO-1 task-1] w2MCVaxlT92k7VpoL8dVoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.496 [XNIO-1 task-1] w2MCVaxlT92k7VpoL8dVoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:52.496 [XNIO-1 task-1] w2MCVaxlT92k7VpoL8dVoA DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:52.496 [XNIO-1 task-1] w2MCVaxlT92k7VpoL8dVoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:52.499 [XNIO-1 task-1] A_DmfQwQRLmecuWHKWI6kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.499 [XNIO-1 task-1] A_DmfQwQRLmecuWHKWI6kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.500 [XNIO-1 task-1] A_DmfQwQRLmecuWHKWI6kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.500 [XNIO-1 task-1] A_DmfQwQRLmecuWHKWI6kw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.508 [XNIO-1 task-1] S0xLI1sjTGy2DtNu4MBPWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fc1ff8db-b63e-4e1f-a299-08f1c90ad765, base path is set to: null +18:00:52.508 [XNIO-1 task-1] S0xLI1sjTGy2DtNu4MBPWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.508 [XNIO-1 task-1] S0xLI1sjTGy2DtNu4MBPWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.509 [XNIO-1 task-1] S0xLI1sjTGy2DtNu4MBPWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fc1ff8db-b63e-4e1f-a299-08f1c90ad765, base path is set to: null +18:00:52.509 [XNIO-1 task-1] S0xLI1sjTGy2DtNu4MBPWA DEBUG com.networknt.schema.TypeValidator debug - validate( "fc1ff8db-b63e-4e1f-a299-08f1c90ad765", "fc1ff8db-b63e-4e1f-a299-08f1c90ad765", refreshToken) +18:00:52.512 [XNIO-1 task-1] ZLgA-BwdR2ef6TC7L1gcsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:52.512 [XNIO-1 task-1] ZLgA-BwdR2ef6TC7L1gcsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.512 [XNIO-1 task-1] ZLgA-BwdR2ef6TC7L1gcsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.512 [XNIO-1 task-1] ZLgA-BwdR2ef6TC7L1gcsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:52.513 [XNIO-1 task-1] ZLgA-BwdR2ef6TC7L1gcsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:52.513 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:52.518 [XNIO-1 task-1] 9_wLmw_1S--ePSAxDczmrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.518 [XNIO-1 task-1] 9_wLmw_1S--ePSAxDczmrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.519 [XNIO-1 task-1] 9_wLmw_1S--ePSAxDczmrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.519 [XNIO-1 task-1] 9_wLmw_1S--ePSAxDczmrg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.519 [XNIO-1 task-1] 9_wLmw_1S--ePSAxDczmrg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.525 [XNIO-1 task-1] 4EeyjugMQZem4BifVT5-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:52.525 [XNIO-1 task-1] 4EeyjugMQZem4BifVT5-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.525 [XNIO-1 task-1] 4EeyjugMQZem4BifVT5-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.525 [XNIO-1 task-1] 4EeyjugMQZem4BifVT5-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:52.526 [XNIO-1 task-1] 4EeyjugMQZem4BifVT5-jQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a4ec9d8b-d313-4e97-912a-5c2f12e69eca +18:00:52.529 [XNIO-1 task-1] YaEIfJBiTYq2OfskHwi5zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.531 [XNIO-1 task-1] YaEIfJBiTYq2OfskHwi5zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.531 [XNIO-1 task-1] YaEIfJBiTYq2OfskHwi5zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.532 [XNIO-1 task-1] YaEIfJBiTYq2OfskHwi5zw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.532 [XNIO-1 task-1] YaEIfJBiTYq2OfskHwi5zw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.540 [XNIO-1 task-1] RLmCxq4QTsSsXVxPEiRC0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fc1ff8db-b63e-4e1f-a299-08f1c90ad765 +18:00:52.540 [XNIO-1 task-1] RLmCxq4QTsSsXVxPEiRC0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.540 [XNIO-1 task-1] RLmCxq4QTsSsXVxPEiRC0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.540 [XNIO-1 task-1] RLmCxq4QTsSsXVxPEiRC0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fc1ff8db-b63e-4e1f-a299-08f1c90ad765 +18:00:52.540 [XNIO-1 task-1] RLmCxq4QTsSsXVxPEiRC0w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fc1ff8db-b63e-4e1f-a299-08f1c90ad765 +18:00:52.544 [XNIO-1 task-1] zTwU-ZtgSiG87UjrFYeAXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.544 [XNIO-1 task-1] zTwU-ZtgSiG87UjrFYeAXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.544 [XNIO-1 task-1] zTwU-ZtgSiG87UjrFYeAXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.545 [XNIO-1 task-1] zTwU-ZtgSiG87UjrFYeAXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.557 [XNIO-1 task-1] zFXO0EJrRoGzms-6-F-HoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:52.557 [XNIO-1 task-1] zFXO0EJrRoGzms-6-F-HoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.557 [XNIO-1 task-1] zFXO0EJrRoGzms-6-F-HoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.557 [XNIO-1 task-1] zFXO0EJrRoGzms-6-F-HoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/48e99d78-e069-426f-89d0-5532a7fad6f0, base path is set to: null +18:00:52.557 [XNIO-1 task-1] zFXO0EJrRoGzms-6-F-HoA DEBUG com.networknt.schema.TypeValidator debug - validate( "48e99d78-e069-426f-89d0-5532a7fad6f0", "48e99d78-e069-426f-89d0-5532a7fad6f0", refreshToken) +18:00:52.558 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48e99d78-e069-426f-89d0-5532a7fad6f0 +18:00:52.566 [XNIO-1 task-1] cFvgymkpTFOIaQDNQSBULQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:52.567 [XNIO-1 task-1] cFvgymkpTFOIaQDNQSBULQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.567 [XNIO-1 task-1] cFvgymkpTFOIaQDNQSBULQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.572 [XNIO-1 task-1] cFvgymkpTFOIaQDNQSBULQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a4ec9d8b-d313-4e97-912a-5c2f12e69eca, base path is set to: null +18:00:52.575 [XNIO-1 task-1] cFvgymkpTFOIaQDNQSBULQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", "a4ec9d8b-d313-4e97-912a-5c2f12e69eca", refreshToken) +18:00:52.575 [XNIO-1 task-1] cFvgymkpTFOIaQDNQSBULQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a4ec9d8b-d313-4e97-912a-5c2f12e69eca is not found.","severity":"ERROR"} +18:00:52.578 [XNIO-1 task-1] ac2VQ31mSdCGMnBgXxpabg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fc1ff8db-b63e-4e1f-a299-08f1c90ad765 +18:00:52.578 [XNIO-1 task-1] ac2VQ31mSdCGMnBgXxpabg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.578 [XNIO-1 task-1] ac2VQ31mSdCGMnBgXxpabg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.578 [XNIO-1 task-1] ac2VQ31mSdCGMnBgXxpabg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fc1ff8db-b63e-4e1f-a299-08f1c90ad765 +18:00:52.579 [XNIO-1 task-1] ac2VQ31mSdCGMnBgXxpabg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fc1ff8db-b63e-4e1f-a299-08f1c90ad765 +18:00:52.582 [XNIO-1 task-1] 0pZ3D7TLRZ6zejJvED5K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.582 [XNIO-1 task-1] 0pZ3D7TLRZ6zejJvED5K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.582 [XNIO-1 task-1] 0pZ3D7TLRZ6zejJvED5K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.582 [XNIO-1 task-1] 0pZ3D7TLRZ6zejJvED5K8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.583 [XNIO-1 task-1] 0pZ3D7TLRZ6zejJvED5K8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.587 [XNIO-1 task-1] Mt-5EvqcQ7yrL2e9QVWk4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.587 [XNIO-1 task-1] Mt-5EvqcQ7yrL2e9QVWk4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.587 [XNIO-1 task-1] Mt-5EvqcQ7yrL2e9QVWk4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.588 [XNIO-1 task-1] Mt-5EvqcQ7yrL2e9QVWk4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.588 [XNIO-1 task-1] Mt-5EvqcQ7yrL2e9QVWk4g DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:52.588 [XNIO-1 task-1] Mt-5EvqcQ7yrL2e9QVWk4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:52.591 [XNIO-1 task-1] ovu6fcC-SwCxkHLiDvc0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.591 [XNIO-1 task-1] ovu6fcC-SwCxkHLiDvc0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.591 [XNIO-1 task-1] ovu6fcC-SwCxkHLiDvc0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.591 [XNIO-1 task-1] ovu6fcC-SwCxkHLiDvc0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.591 [XNIO-1 task-1] ovu6fcC-SwCxkHLiDvc0AA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.594 [XNIO-1 task-1] ARd8Wp2cSoC_BMYGkCt1-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.595 [XNIO-1 task-1] ARd8Wp2cSoC_BMYGkCt1-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.595 [XNIO-1 task-1] ARd8Wp2cSoC_BMYGkCt1-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.595 [XNIO-1 task-1] ARd8Wp2cSoC_BMYGkCt1-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.595 [XNIO-1 task-1] ARd8Wp2cSoC_BMYGkCt1-g DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:52.596 [XNIO-1 task-1] ARd8Wp2cSoC_BMYGkCt1-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:52.598 [XNIO-1 task-1] AwCuzrjvTf2K4UQGpTwoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.598 [XNIO-1 task-1] AwCuzrjvTf2K4UQGpTwoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.598 [XNIO-1 task-1] AwCuzrjvTf2K4UQGpTwoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.599 [XNIO-1 task-1] AwCuzrjvTf2K4UQGpTwoNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.599 [XNIO-1 task-1] AwCuzrjvTf2K4UQGpTwoNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.606 [XNIO-1 task-1] sBOUrWPOSWmSVoMohrPl2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.607 [XNIO-1 task-1] sBOUrWPOSWmSVoMohrPl2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.607 [XNIO-1 task-1] sBOUrWPOSWmSVoMohrPl2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.607 [XNIO-1 task-1] sBOUrWPOSWmSVoMohrPl2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.607 [XNIO-1 task-1] sBOUrWPOSWmSVoMohrPl2w DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:52.607 [XNIO-1 task-1] sBOUrWPOSWmSVoMohrPl2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:52.611 [XNIO-1 task-1] voj00n8qSCWAmZd4jbNLjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.611 [XNIO-1 task-1] voj00n8qSCWAmZd4jbNLjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.611 [XNIO-1 task-1] voj00n8qSCWAmZd4jbNLjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.611 [XNIO-1 task-1] voj00n8qSCWAmZd4jbNLjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.611 [XNIO-1 task-1] voj00n8qSCWAmZd4jbNLjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.616 [XNIO-1 task-1] 6RTTNDZGRmiNcZqL0zY7ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.617 [XNIO-1 task-1] 6RTTNDZGRmiNcZqL0zY7ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.617 [XNIO-1 task-1] 6RTTNDZGRmiNcZqL0zY7ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.617 [XNIO-1 task-1] 6RTTNDZGRmiNcZqL0zY7ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.617 [XNIO-1 task-1] 6RTTNDZGRmiNcZqL0zY7ew DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:52.618 [XNIO-1 task-1] 6RTTNDZGRmiNcZqL0zY7ew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:52.621 [XNIO-1 task-1] CSpGiTFeSTyABAqll3tksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.621 [XNIO-1 task-1] CSpGiTFeSTyABAqll3tksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.621 [XNIO-1 task-1] CSpGiTFeSTyABAqll3tksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.622 [XNIO-1 task-1] CSpGiTFeSTyABAqll3tksQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.629 [XNIO-1 task-1] cyE8ZqcZSmGDJRSS-SXarA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.629 [XNIO-1 task-1] cyE8ZqcZSmGDJRSS-SXarA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.630 [XNIO-1 task-1] cyE8ZqcZSmGDJRSS-SXarA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.630 [XNIO-1 task-1] cyE8ZqcZSmGDJRSS-SXarA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f, base path is set to: null +18:00:52.630 [XNIO-1 task-1] cyE8ZqcZSmGDJRSS-SXarA DEBUG com.networknt.schema.TypeValidator debug - validate( "be9775b5-0fc1-4682-9b3b-292b8a19226f", "be9775b5-0fc1-4682-9b3b-292b8a19226f", refreshToken) +18:00:52.630 [XNIO-1 task-1] cyE8ZqcZSmGDJRSS-SXarA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token be9775b5-0fc1-4682-9b3b-292b8a19226f is not found.","severity":"ERROR"} +18:00:52.637 [XNIO-1 task-1] VSD5a1HFR4mLTgc1bcrNMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.637 [XNIO-1 task-1] VSD5a1HFR4mLTgc1bcrNMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.637 [XNIO-1 task-1] VSD5a1HFR4mLTgc1bcrNMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.637 [XNIO-1 task-1] VSD5a1HFR4mLTgc1bcrNMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.638 [XNIO-1 task-1] VSD5a1HFR4mLTgc1bcrNMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.642 [XNIO-1 task-1] Span3An0R9CVt6B6CknGcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.642 [XNIO-1 task-1] Span3An0R9CVt6B6CknGcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.643 [XNIO-1 task-1] Span3An0R9CVt6B6CknGcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.643 [XNIO-1 task-1] Span3An0R9CVt6B6CknGcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.643 [XNIO-1 task-1] Span3An0R9CVt6B6CknGcA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.650 [XNIO-1 task-1] rEZC26GQRHWd-DVpECEkkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.650 [XNIO-1 task-1] rEZC26GQRHWd-DVpECEkkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.650 [XNIO-1 task-1] rEZC26GQRHWd-DVpECEkkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.650 [XNIO-1 task-1] rEZC26GQRHWd-DVpECEkkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.650 [XNIO-1 task-1] rEZC26GQRHWd-DVpECEkkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = be9775b5-0fc1-4682-9b3b-292b8a19226f +18:00:52.653 [XNIO-1 task-1] DzgoGbq4Rne4efqrfKQJQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.653 [XNIO-1 task-1] DzgoGbq4Rne4efqrfKQJQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.653 [XNIO-1 task-1] DzgoGbq4Rne4efqrfKQJQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.653 [XNIO-1 task-1] DzgoGbq4Rne4efqrfKQJQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.653 [XNIO-1 task-1] DzgoGbq4Rne4efqrfKQJQg DEBUG com.networknt.schema.TypeValidator debug - validate( "43659415-f650-49e1-86ec-462dbb0d4e74", "43659415-f650-49e1-86ec-462dbb0d4e74", refreshToken) +18:00:52.665 [XNIO-1 task-1] Yd__TgesSHuvDj-DQsKcyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.666 [XNIO-1 task-1] Yd__TgesSHuvDj-DQsKcyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.666 [XNIO-1 task-1] Yd__TgesSHuvDj-DQsKcyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.666 [XNIO-1 task-1] Yd__TgesSHuvDj-DQsKcyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.666 [XNIO-1 task-1] Yd__TgesSHuvDj-DQsKcyA DEBUG com.networknt.schema.TypeValidator debug - validate( "43659415-f650-49e1-86ec-462dbb0d4e74", "43659415-f650-49e1-86ec-462dbb0d4e74", refreshToken) +18:00:52.667 [XNIO-1 task-1] Yd__TgesSHuvDj-DQsKcyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 43659415-f650-49e1-86ec-462dbb0d4e74 is not found.","severity":"ERROR"} +18:00:52.675 [XNIO-1 task-1] NDN2QXOFQaeNN5vfU_MHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.675 [XNIO-1 task-1] NDN2QXOFQaeNN5vfU_MHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.675 [XNIO-1 task-1] NDN2QXOFQaeNN5vfU_MHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.675 [XNIO-1 task-1] NDN2QXOFQaeNN5vfU_MHPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.676 [XNIO-1 task-1] NDN2QXOFQaeNN5vfU_MHPg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.682 [XNIO-1 task-1] 3Nldsx5xTrSpoGptSzAXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.682 [XNIO-1 task-1] 3Nldsx5xTrSpoGptSzAXUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.682 [XNIO-1 task-1] 3Nldsx5xTrSpoGptSzAXUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.682 [XNIO-1 task-1] 3Nldsx5xTrSpoGptSzAXUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2120610f-2b15-424e-8ba7-83ebb85a131c, base path is set to: null +18:00:52.682 [XNIO-1 task-1] 3Nldsx5xTrSpoGptSzAXUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2120610f-2b15-424e-8ba7-83ebb85a131c", "2120610f-2b15-424e-8ba7-83ebb85a131c", refreshToken) +18:00:52.683 [XNIO-1 task-1] 3Nldsx5xTrSpoGptSzAXUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2120610f-2b15-424e-8ba7-83ebb85a131c is not found.","severity":"ERROR"} +18:00:52.686 [XNIO-1 task-1] UUyU-IiWSpGVOZCmIUNnXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.686 [XNIO-1 task-1] UUyU-IiWSpGVOZCmIUNnXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.686 [XNIO-1 task-1] UUyU-IiWSpGVOZCmIUNnXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.686 [XNIO-1 task-1] UUyU-IiWSpGVOZCmIUNnXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.687 [XNIO-1 task-1] UUyU-IiWSpGVOZCmIUNnXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.692 [XNIO-1 task-1] 1Cs65PA1Sgy1G-j7OWit5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.692 [XNIO-1 task-1] 1Cs65PA1Sgy1G-j7OWit5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.692 [XNIO-1 task-1] 1Cs65PA1Sgy1G-j7OWit5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.692 [XNIO-1 task-1] 1Cs65PA1Sgy1G-j7OWit5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.692 [XNIO-1 task-1] 1Cs65PA1Sgy1G-j7OWit5A DEBUG com.networknt.schema.TypeValidator debug - validate( "43659415-f650-49e1-86ec-462dbb0d4e74", "43659415-f650-49e1-86ec-462dbb0d4e74", refreshToken) +18:00:52.693 [XNIO-1 task-1] 1Cs65PA1Sgy1G-j7OWit5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 43659415-f650-49e1-86ec-462dbb0d4e74 is not found.","severity":"ERROR"} +18:00:52.697 [XNIO-1 task-1] 2uSG9RIkSBSoumN4JdfMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.697 [XNIO-1 task-1] 2uSG9RIkSBSoumN4JdfMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.697 [XNIO-1 task-1] 2uSG9RIkSBSoumN4JdfMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.697 [XNIO-1 task-1] 2uSG9RIkSBSoumN4JdfMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.698 [XNIO-1 task-1] 2uSG9RIkSBSoumN4JdfMqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.702 [XNIO-1 task-1] cZY5bsFRTpSx73e6Z30cyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.702 [XNIO-1 task-1] cZY5bsFRTpSx73e6Z30cyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.702 [XNIO-1 task-1] cZY5bsFRTpSx73e6Z30cyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.702 [XNIO-1 task-1] cZY5bsFRTpSx73e6Z30cyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74, base path is set to: null +18:00:52.703 [XNIO-1 task-1] cZY5bsFRTpSx73e6Z30cyg DEBUG com.networknt.schema.TypeValidator debug - validate( "43659415-f650-49e1-86ec-462dbb0d4e74", "43659415-f650-49e1-86ec-462dbb0d4e74", refreshToken) +18:00:52.703 [XNIO-1 task-1] cZY5bsFRTpSx73e6Z30cyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 43659415-f650-49e1-86ec-462dbb0d4e74 is not found.","severity":"ERROR"} +18:00:52.712 [XNIO-1 task-1] DgcexcNpT1iLFghHJSDqkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.712 [XNIO-1 task-1] DgcexcNpT1iLFghHJSDqkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.712 [XNIO-1 task-1] DgcexcNpT1iLFghHJSDqkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.712 [XNIO-1 task-1] DgcexcNpT1iLFghHJSDqkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.713 [XNIO-1 task-1] DgcexcNpT1iLFghHJSDqkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 43659415-f650-49e1-86ec-462dbb0d4e74 +18:00:52.719 [XNIO-1 task-1] Ynyeb1RVQWGsAwtlrmHVrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e, base path is set to: null +18:00:52.719 [XNIO-1 task-1] Ynyeb1RVQWGsAwtlrmHVrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.719 [XNIO-1 task-1] Ynyeb1RVQWGsAwtlrmHVrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.719 [XNIO-1 task-1] Ynyeb1RVQWGsAwtlrmHVrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8f411d7f-20ea-43a0-a2e9-24e2671fca1e, base path is set to: null +18:00:52.720 [XNIO-1 task-1] Ynyeb1RVQWGsAwtlrmHVrA DEBUG com.networknt.schema.TypeValidator debug - validate( "8f411d7f-20ea-43a0-a2e9-24e2671fca1e", "8f411d7f-20ea-43a0-a2e9-24e2671fca1e", refreshToken) +18:00:52.720 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8f411d7f-20ea-43a0-a2e9-24e2671fca1e +18:00:52.726 [XNIO-1 task-1] NvH0V180QRmqTrLP281elA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.727 [XNIO-1 task-1] NvH0V180QRmqTrLP281elA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.727 [XNIO-1 task-1] NvH0V180QRmqTrLP281elA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.727 [XNIO-1 task-1] NvH0V180QRmqTrLP281elA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/083c91b1-18a6-41eb-8a51-e28634a08ee1, base path is set to: null +18:00:52.728 [XNIO-1 task-1] NvH0V180QRmqTrLP281elA DEBUG com.networknt.schema.TypeValidator debug - validate( "083c91b1-18a6-41eb-8a51-e28634a08ee1", "083c91b1-18a6-41eb-8a51-e28634a08ee1", refreshToken) +18:00:52.728 [XNIO-1 task-1] NvH0V180QRmqTrLP281elA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 083c91b1-18a6-41eb-8a51-e28634a08ee1 is not found.","severity":"ERROR"} +18:00:52.732 [XNIO-1 task-1] WLAgLNAPS26vBWiu_RSVbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.732 [XNIO-1 task-1] WLAgLNAPS26vBWiu_RSVbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.732 [XNIO-1 task-1] WLAgLNAPS26vBWiu_RSVbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.732 [XNIO-1 task-1] WLAgLNAPS26vBWiu_RSVbg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.741 [XNIO-1 task-1] 8TigbxnXRYKb27PYjyvZhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.742 [XNIO-1 task-1] 8TigbxnXRYKb27PYjyvZhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.742 [XNIO-1 task-1] 8TigbxnXRYKb27PYjyvZhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.742 [XNIO-1 task-1] 8TigbxnXRYKb27PYjyvZhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.742 [XNIO-1 task-1] 8TigbxnXRYKb27PYjyvZhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6c1ca85e-33a2-4d7b-9526-45c2851f6680", "6c1ca85e-33a2-4d7b-9526-45c2851f6680", refreshToken) +18:00:52.749 [XNIO-1 task-1] 0cbnFrf0ST6YLS5k9n-Pjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.750 [XNIO-1 task-1] 0cbnFrf0ST6YLS5k9n-Pjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.750 [XNIO-1 task-1] 0cbnFrf0ST6YLS5k9n-Pjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.750 [XNIO-1 task-1] 0cbnFrf0ST6YLS5k9n-Pjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.750 [XNIO-1 task-1] 0cbnFrf0ST6YLS5k9n-Pjg DEBUG com.networknt.schema.TypeValidator debug - validate( "6c1ca85e-33a2-4d7b-9526-45c2851f6680", "6c1ca85e-33a2-4d7b-9526-45c2851f6680", refreshToken) +18:00:52.751 [XNIO-1 task-1] 0cbnFrf0ST6YLS5k9n-Pjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6c1ca85e-33a2-4d7b-9526-45c2851f6680 is not found.","severity":"ERROR"} +18:00:52.760 [XNIO-1 task-1] 6a9NdmhCSUmPHm1s65NXRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.760 [XNIO-1 task-1] 6a9NdmhCSUmPHm1s65NXRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.760 [XNIO-1 task-1] 6a9NdmhCSUmPHm1s65NXRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.760 [XNIO-1 task-1] 6a9NdmhCSUmPHm1s65NXRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.761 [XNIO-1 task-1] 6a9NdmhCSUmPHm1s65NXRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.765 [XNIO-1 task-1] dXZrNKZeRlGbyVCHorzJvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.766 [XNIO-1 task-1] dXZrNKZeRlGbyVCHorzJvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.766 [XNIO-1 task-1] dXZrNKZeRlGbyVCHorzJvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.766 [XNIO-1 task-1] dXZrNKZeRlGbyVCHorzJvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.766 [XNIO-1 task-1] dXZrNKZeRlGbyVCHorzJvg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.770 [XNIO-1 task-1] 4x5nsW2dS8uKLurO1QWB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680 +18:00:52.771 [XNIO-1 task-1] 4x5nsW2dS8uKLurO1QWB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.771 [XNIO-1 task-1] 4x5nsW2dS8uKLurO1QWB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.771 [XNIO-1 task-1] 4x5nsW2dS8uKLurO1QWB-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680 +18:00:52.771 [XNIO-1 task-1] 4x5nsW2dS8uKLurO1QWB-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6c1ca85e-33a2-4d7b-9526-45c2851f6680 +18:00:52.773 [XNIO-1 task-1] Aci3W07mTx6uaBdIhYQKCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.773 [XNIO-1 task-1] Aci3W07mTx6uaBdIhYQKCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.773 [XNIO-1 task-1] Aci3W07mTx6uaBdIhYQKCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.774 [XNIO-1 task-1] Aci3W07mTx6uaBdIhYQKCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3, base path is set to: null +18:00:52.774 [XNIO-1 task-1] Aci3W07mTx6uaBdIhYQKCg DEBUG com.networknt.schema.TypeValidator debug - validate( "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", "8294bea5-7b83-43f0-93c2-c0c4c05fe1b3", refreshToken) +18:00:52.775 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f6241e96-55d8-482c-82f0-03f1613620a7 +18:00:52.775 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f6241e96-55d8-482c-82f0-03f1613620a7 +18:00:52.779 [XNIO-1 task-1] 1MS96IaDRfq-b8tFgbjF9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680 +18:00:52.779 [XNIO-1 task-1] 1MS96IaDRfq-b8tFgbjF9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.779 [XNIO-1 task-1] 1MS96IaDRfq-b8tFgbjF9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.779 [XNIO-1 task-1] 1MS96IaDRfq-b8tFgbjF9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680 +18:00:52.780 [XNIO-1 task-1] 1MS96IaDRfq-b8tFgbjF9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6c1ca85e-33a2-4d7b-9526-45c2851f6680 +18:00:52.784 [XNIO-1 task-1] mZiKgRoHQ6ub8BWcIE7sTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.784 [XNIO-1 task-1] mZiKgRoHQ6ub8BWcIE7sTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.784 [XNIO-1 task-1] mZiKgRoHQ6ub8BWcIE7sTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.784 [XNIO-1 task-1] mZiKgRoHQ6ub8BWcIE7sTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.785 [XNIO-1 task-1] mZiKgRoHQ6ub8BWcIE7sTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.791 [XNIO-1 task-1] 59wMF1esQPS1Bcvgutkb9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.791 [XNIO-1 task-1] 59wMF1esQPS1Bcvgutkb9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.791 [XNIO-1 task-1] 59wMF1esQPS1Bcvgutkb9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.792 [XNIO-1 task-1] 59wMF1esQPS1Bcvgutkb9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:52.801 [XNIO-1 task-1] J9HxRSjcQZq4AZe4OwzLVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.801 [XNIO-1 task-1] J9HxRSjcQZq4AZe4OwzLVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.801 [XNIO-1 task-1] J9HxRSjcQZq4AZe4OwzLVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.801 [XNIO-1 task-1] J9HxRSjcQZq4AZe4OwzLVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.801 [XNIO-1 task-1] J9HxRSjcQZq4AZe4OwzLVA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.806 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e75ec45a +18:00:52.808 [XNIO-1 task-1] xRBbAmjxThuAufixlnhZaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.808 [XNIO-1 task-1] xRBbAmjxThuAufixlnhZaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.808 [XNIO-1 task-1] xRBbAmjxThuAufixlnhZaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.808 [XNIO-1 task-1] xRBbAmjxThuAufixlnhZaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.808 [XNIO-1 task-1] xRBbAmjxThuAufixlnhZaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.816 [XNIO-1 task-1] 47D7TK8bSMSBQoyBnme_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.816 [XNIO-1 task-1] 47D7TK8bSMSBQoyBnme_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.816 [XNIO-1 task-1] 47D7TK8bSMSBQoyBnme_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.817 [XNIO-1 task-1] 47D7TK8bSMSBQoyBnme_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.817 [XNIO-1 task-1] 47D7TK8bSMSBQoyBnme_vQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.824 [XNIO-1 task-1] 1EVhxizfSyGV1kxKOv-IZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.824 [XNIO-1 task-1] 1EVhxizfSyGV1kxKOv-IZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.824 [XNIO-1 task-1] 1EVhxizfSyGV1kxKOv-IZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.825 [XNIO-1 task-1] 1EVhxizfSyGV1kxKOv-IZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.825 [XNIO-1 task-1] 1EVhxizfSyGV1kxKOv-IZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6c1ca85e-33a2-4d7b-9526-45c2851f6680", "6c1ca85e-33a2-4d7b-9526-45c2851f6680", refreshToken) +18:00:52.825 [XNIO-1 task-1] 1EVhxizfSyGV1kxKOv-IZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6c1ca85e-33a2-4d7b-9526-45c2851f6680 is not found.","severity":"ERROR"} +18:00:52.833 [XNIO-1 task-1] NZqDQPkGTrGr9-nIVpbm0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.833 [XNIO-1 task-1] NZqDQPkGTrGr9-nIVpbm0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.833 [XNIO-1 task-1] NZqDQPkGTrGr9-nIVpbm0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.834 [XNIO-1 task-1] NZqDQPkGTrGr9-nIVpbm0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.834 [XNIO-1 task-1] NZqDQPkGTrGr9-nIVpbm0Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.838 [XNIO-1 task-1] 3Hy_5Le2TOOY2qhwMWbsjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.838 [XNIO-1 task-1] 3Hy_5Le2TOOY2qhwMWbsjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.838 [XNIO-1 task-1] 3Hy_5Le2TOOY2qhwMWbsjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.838 [XNIO-1 task-1] 3Hy_5Le2TOOY2qhwMWbsjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.838 [XNIO-1 task-1] 3Hy_5Le2TOOY2qhwMWbsjA DEBUG com.networknt.schema.TypeValidator debug - validate( "6c1ca85e-33a2-4d7b-9526-45c2851f6680", "6c1ca85e-33a2-4d7b-9526-45c2851f6680", refreshToken) +18:00:52.839 [XNIO-1 task-1] 3Hy_5Le2TOOY2qhwMWbsjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6c1ca85e-33a2-4d7b-9526-45c2851f6680 is not found.","severity":"ERROR"} +18:00:52.842 [XNIO-1 task-1] 5zqmX9pMQsqfAl58AQm7iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.842 [XNIO-1 task-1] 5zqmX9pMQsqfAl58AQm7iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.842 [XNIO-1 task-1] 5zqmX9pMQsqfAl58AQm7iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.842 [XNIO-1 task-1] 5zqmX9pMQsqfAl58AQm7iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.843 [XNIO-1 task-1] 5zqmX9pMQsqfAl58AQm7iQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.846 [XNIO-1 task-1] RLCzoVJnRCSsbZcSaOHFpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.846 [XNIO-1 task-1] RLCzoVJnRCSsbZcSaOHFpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.846 [XNIO-1 task-1] RLCzoVJnRCSsbZcSaOHFpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.846 [XNIO-1 task-1] RLCzoVJnRCSsbZcSaOHFpg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.847 [XNIO-1 task-1] RLCzoVJnRCSsbZcSaOHFpg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.854 [XNIO-1 task-1] Wx7zB7JBRP6Lxf2gLxd_kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.854 [XNIO-1 task-1] Wx7zB7JBRP6Lxf2gLxd_kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.854 [XNIO-1 task-1] Wx7zB7JBRP6Lxf2gLxd_kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.854 [XNIO-1 task-1] Wx7zB7JBRP6Lxf2gLxd_kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.855 [XNIO-1 task-1] Wx7zB7JBRP6Lxf2gLxd_kw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.857 [XNIO-1 task-1] IJ6pSM9bSV6nUeSScji75A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.857 [XNIO-1 task-1] IJ6pSM9bSV6nUeSScji75A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.857 [XNIO-1 task-1] IJ6pSM9bSV6nUeSScji75A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.857 [XNIO-1 task-1] IJ6pSM9bSV6nUeSScji75A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6, base path is set to: null +18:00:52.858 [XNIO-1 task-1] IJ6pSM9bSV6nUeSScji75A DEBUG com.networknt.schema.TypeValidator debug - validate( "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", "2ba02ff9-0fa8-4b53-893f-d36f88ed31e6", refreshToken) +18:00:52.859 [XNIO-1 task-1] IJ6pSM9bSV6nUeSScji75A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 is not found.","severity":"ERROR"} +18:00:52.861 [XNIO-1 task-1] huFYe416S1-lgZRetee7rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.861 [XNIO-1 task-1] huFYe416S1-lgZRetee7rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.861 [XNIO-1 task-1] huFYe416S1-lgZRetee7rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.862 [XNIO-1 task-1] huFYe416S1-lgZRetee7rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.862 [XNIO-1 task-1] huFYe416S1-lgZRetee7rA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1ad4d04a-fd5d-45c6-9499-8d06beaed669 +18:00:52.865 [XNIO-1 task-1] Jkn3hZYYTiSQ_AStgC4E-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.865 [XNIO-1 task-1] Jkn3hZYYTiSQ_AStgC4E-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.865 [XNIO-1 task-1] Jkn3hZYYTiSQ_AStgC4E-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +18:00:52.865 [XNIO-1 task-1] Jkn3hZYYTiSQ_AStgC4E-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:52.866 [XNIO-1 task-1] Jkn3hZYYTiSQ_AStgC4E-w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +18:00:52.873 [XNIO-1 task-1] PHlIoDb2RIqsBAF5MguMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.873 [XNIO-1 task-1] PHlIoDb2RIqsBAF5MguMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.873 [XNIO-1 task-1] PHlIoDb2RIqsBAF5MguMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.873 [XNIO-1 task-1] PHlIoDb2RIqsBAF5MguMxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.874 [XNIO-1 task-1] PHlIoDb2RIqsBAF5MguMxA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8294bea5-7b83-43f0-93c2-c0c4c05fe1b3 +18:00:52.879 [XNIO-1 task-1] 8kUSATBbT--lAl1Fd2ZQnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.879 [XNIO-1 task-1] 8kUSATBbT--lAl1Fd2ZQnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.879 [XNIO-1 task-1] 8kUSATBbT--lAl1Fd2ZQnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.879 [XNIO-1 task-1] 8kUSATBbT--lAl1Fd2ZQnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6c1ca85e-33a2-4d7b-9526-45c2851f6680, base path is set to: null +18:00:52.879 [XNIO-1 task-1] 8kUSATBbT--lAl1Fd2ZQnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6c1ca85e-33a2-4d7b-9526-45c2851f6680", "6c1ca85e-33a2-4d7b-9526-45c2851f6680", refreshToken) +18:00:52.880 [XNIO-1 task-1] 8kUSATBbT--lAl1Fd2ZQnQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6c1ca85e-33a2-4d7b-9526-45c2851f6680 is not found.","severity":"ERROR"} +18:00:52.890 [XNIO-1 task-1] BMHFMAV4TNuh7Ya-bG0XDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.890 [XNIO-1 task-1] BMHFMAV4TNuh7Ya-bG0XDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.890 [XNIO-1 task-1] BMHFMAV4TNuh7Ya-bG0XDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.891 [XNIO-1 task-1] BMHFMAV4TNuh7Ya-bG0XDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.891 [XNIO-1 task-1] BMHFMAV4TNuh7Ya-bG0XDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2ba02ff9-0fa8-4b53-893f-d36f88ed31e6 +18:00:52.893 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e75ec45a +18:00:52.903 [XNIO-1 task-1] f5yEIJRPSlyoAo17oW4edg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:52.904 [XNIO-1 task-1] f5yEIJRPSlyoAo17oW4edg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +18:00:52.904 [XNIO-1 task-1] f5yEIJRPSlyoAo17oW4edg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +18:00:52.904 [XNIO-1 task-1] f5yEIJRPSlyoAo17oW4edg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ad4d04a-fd5d-45c6-9499-8d06beaed669, base path is set to: null +18:00:52.904 [XNIO-1 task-1] f5yEIJRPSlyoAo17oW4edg DEBUG com.networknt.schema.TypeValidator debug - validate( "1ad4d04a-fd5d-45c6-9499-8d06beaed669", "1ad4d04a-fd5d-45c6-9499-8d06beaed669", refreshToken) +18:00:52.904 [XNIO-1 task-1] f5yEIJRPSlyoAo17oW4edg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ad4d04a-fd5d-45c6-9499-8d06beaed669 is not found.","severity":"ERROR"} +18:00:52.913 [XNIO-1 task-1] KI59ULucR0yYNZ3ZA2uyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.913 [XNIO-1 task-1] KI59ULucR0yYNZ3ZA2uyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.913 [XNIO-1 task-1] KI59ULucR0yYNZ3ZA2uyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.913 [XNIO-1 task-1] KI59ULucR0yYNZ3ZA2uyFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.913 [XNIO-1 task-1] KI59ULucR0yYNZ3ZA2uyFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.936 [XNIO-1 task-1] 0A5M7CbUR-G5y-vzRPE9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.936 [XNIO-1 task-1] 0A5M7CbUR-G5y-vzRPE9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.936 [XNIO-1 task-1] 0A5M7CbUR-G5y-vzRPE9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.936 [XNIO-1 task-1] 0A5M7CbUR-G5y-vzRPE9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.936 [XNIO-1 task-1] 0A5M7CbUR-G5y-vzRPE9SQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.944 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1f8e0991-113b-4a43-b801-5c174be8ec6b +18:00:52.945 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1f8e0991-113b-4a43-b801-5c174be8ec6b +18:00:52.948 [XNIO-1 task-1] cUAFCE8YQkaHtMKBTcUlQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.948 [XNIO-1 task-1] cUAFCE8YQkaHtMKBTcUlQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.948 [XNIO-1 task-1] cUAFCE8YQkaHtMKBTcUlQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.948 [XNIO-1 task-1] cUAFCE8YQkaHtMKBTcUlQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.948 [XNIO-1 task-1] cUAFCE8YQkaHtMKBTcUlQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.951 [XNIO-1 task-1] THClAjCJRLW-l69Cdi8Sbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30, base path is set to: null +18:00:52.951 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:29a9329f-3aee-4ec3-b589-45880ec3f4f1 +18:00:52.952 [XNIO-1 task-1] THClAjCJRLW-l69Cdi8Sbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +18:00:52.952 [XNIO-1 task-1] THClAjCJRLW-l69Cdi8Sbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +18:00:52.952 [XNIO-1 task-1] THClAjCJRLW-l69Cdi8Sbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/993bc133-277c-4ba1-ac29-3be8d1814e30 +18:00:52.952 [XNIO-1 task-1] THClAjCJRLW-l69Cdi8Sbw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 993bc133-277c-4ba1-ac29-3be8d1814e30 diff --git a/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-service-1.log b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..43fa7f3 --- /dev/null +++ b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1839 @@ +18:00:38.549 [XNIO-1 task-2] Xju5PVsCSYGsViEFE9-1tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ff0c1ede, base path is set to: null +18:00:38.549 [XNIO-1 task-2] Xju5PVsCSYGsViEFE9-1tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:38.549 [XNIO-1 task-2] Xju5PVsCSYGsViEFE9-1tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:38.550 [XNIO-1 task-2] Xju5PVsCSYGsViEFE9-1tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ff0c1ede, base path is set to: null +18:00:38.550 [XNIO-1 task-2] Xju5PVsCSYGsViEFE9-1tg DEBUG com.networknt.schema.TypeValidator debug - validate( "ff0c1ede", "ff0c1ede", serviceId) +18:00:38.555 [XNIO-1 task-2] QUedk-blS5uB-Lm8Y_7HoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1880ac0 +18:00:38.556 [XNIO-1 task-2] QUedk-blS5uB-Lm8Y_7HoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:38.556 [XNIO-1 task-2] QUedk-blS5uB-Lm8Y_7HoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:38.556 [XNIO-1 task-2] QUedk-blS5uB-Lm8Y_7HoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c1880ac0 +18:00:38.560 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:38.560 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:38.561 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:38.562 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:38.562 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:38.562 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:38.562 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:38.562 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG com.networknt.schema.TypeValidator debug - validate( "2b8cc171-9448-4251-9641-9283181f", {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:38.563 [XNIO-1 task-2] 2FepefzORtixJmh8B4PHWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:38.606 [XNIO-1 task-2] pCjGkOI2SsaOnshlry94pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:38.606 [XNIO-1 task-2] pCjGkOI2SsaOnshlry94pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:38.607 [XNIO-1 task-2] pCjGkOI2SsaOnshlry94pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:38.607 [XNIO-1 task-2] pCjGkOI2SsaOnshlry94pA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:39.033 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.034 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.035 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.035 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.036 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.036 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:39.036 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:39.041 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:04f1888f-49d9-45dc-9eeb-526c2f85a8eb +18:00:39.063 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:39.063 [XNIO-1 task-2] YPPnxjqdQK6bRDli-t54sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1eed6db2","serviceName":"2b8cc171-9448-4251-9641-9283181f","serviceDesc":"c92048b6-aee1-4b7f-91df-5bc8730f72a4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.080 [XNIO-1 task-2] YFCImIZpSWuxE5lLRa-zYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1eed6db2 +18:00:39.081 [XNIO-1 task-2] YFCImIZpSWuxE5lLRa-zYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.081 [XNIO-1 task-2] YFCImIZpSWuxE5lLRa-zYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:39.081 [XNIO-1 task-2] YFCImIZpSWuxE5lLRa-zYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1eed6db2 +18:00:39.097 [XNIO-1 task-2] sFzdEDFmTCGk3_cVgoVrDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.097 [XNIO-1 task-2] sFzdEDFmTCGk3_cVgoVrDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.097 [XNIO-1 task-2] sFzdEDFmTCGk3_cVgoVrDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.120 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:92d990a9 +18:00:39.125 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:92d990a9 +18:00:39.136 [XNIO-1 task-2] hSDwqGqPTY2jfDnOfOJfZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff0c1ede +18:00:39.136 [XNIO-1 task-2] hSDwqGqPTY2jfDnOfOJfZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.137 [XNIO-1 task-2] hSDwqGqPTY2jfDnOfOJfZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:39.137 [XNIO-1 task-2] hSDwqGqPTY2jfDnOfOJfZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff0c1ede +18:00:39.138 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ff0c1ede +18:00:39.194 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.194 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.195 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.196 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.196 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.196 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:39.196 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:39.196 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG com.networknt.schema.TypeValidator debug - validate( "b7ad6813-aca6-49e6-a303-2758be72", {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:39.196 [XNIO-1 task-2] ABIUJiy3QjGxdq-GPs5tmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c1880ac0","serviceName":"b7ad6813-aca6-49e6-a303-2758be72","serviceDesc":"37c984dc-3543-4103-9424-f2963a12d70a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.230 [XNIO-1 task-2] wLOp1v_TRsuJJBRjzf_w8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.231 [XNIO-1 task-2] wLOp1v_TRsuJJBRjzf_w8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.231 [XNIO-1 task-2] wLOp1v_TRsuJJBRjzf_w8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.251 [XNIO-1 task-2] QRC2SFB5Rzy8lvVxqC0_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.251 [XNIO-1 task-2] QRC2SFB5Rzy8lvVxqC0_8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.251 [XNIO-1 task-2] QRC2SFB5Rzy8lvVxqC0_8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.338 [XNIO-1 task-2] oLIy0BMZS-SKxKURklMuvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92d990a9, base path is set to: null +18:00:39.338 [XNIO-1 task-2] oLIy0BMZS-SKxKURklMuvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.338 [XNIO-1 task-2] oLIy0BMZS-SKxKURklMuvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:39.338 [XNIO-1 task-2] oLIy0BMZS-SKxKURklMuvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92d990a9, base path is set to: null +18:00:39.339 [XNIO-1 task-2] oLIy0BMZS-SKxKURklMuvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "92d990a9", "92d990a9", serviceId) +18:00:39.344 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.344 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.345 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.346 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.346 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:39.346 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG com.networknt.schema.TypeValidator debug - validate( "a47f928e-89eb-40f5-83da-2df8da88aa07", {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:39.346 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG com.networknt.schema.TypeValidator debug - validate( "92d990a9", {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:39.346 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:39.346 [XNIO-1 task-2] Q0-Ly-vKQ8eflu9CzVumuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92d990a9","serviceName":"5ecf6c93-31d6-47b3-9ed5-17c3e4a8","serviceDesc":"a47f928e-89eb-40f5-83da-2df8da88aa07","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.347 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:92d990a9 +18:00:39.359 [XNIO-1 task-2] 72bDFskWSRWbaehjapZvOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92d990a9 +18:00:39.359 [XNIO-1 task-2] 72bDFskWSRWbaehjapZvOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.359 [XNIO-1 task-2] 72bDFskWSRWbaehjapZvOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:39.360 [XNIO-1 task-2] 72bDFskWSRWbaehjapZvOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92d990a9 +18:00:39.363 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.364 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.364 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.365 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.366 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.366 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:39.366 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:39.366 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG com.networknt.schema.TypeValidator debug - validate( "43fb747c-9b15-4518-87e0-e0b10935", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:39.367 [XNIO-1 task-2] sJyDX9L_RD27nRthq_hzXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.379 [XNIO-1 task-2] 0MaZFz4pTTauI-3e9hCiVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.379 [XNIO-1 task-2] 0MaZFz4pTTauI-3e9hCiVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.381 [XNIO-1 task-2] 0MaZFz4pTTauI-3e9hCiVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:39.468 [XNIO-1 task-2] FkP0gGvYRTupWODE-PRBqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92d990a9, base path is set to: null +18:00:39.469 [XNIO-1 task-2] FkP0gGvYRTupWODE-PRBqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.469 [XNIO-1 task-2] FkP0gGvYRTupWODE-PRBqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:39.469 [XNIO-1 task-2] FkP0gGvYRTupWODE-PRBqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92d990a9, base path is set to: null +18:00:39.470 [XNIO-1 task-2] FkP0gGvYRTupWODE-PRBqA DEBUG com.networknt.schema.TypeValidator debug - validate( "92d990a9", "92d990a9", serviceId) +18:00:39.493 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:92d990a9 +18:00:39.502 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.502 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.503 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.506 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.506 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:39.510 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c87118f3-2d1e-4fc1-904e-4f9cb53e5889", {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:39.510 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "92a63d91", {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:39.510 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:39.510 [XNIO-1 task-2] tA5apSA9Q26j2P63Dj-ZHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:39.519 [XNIO-1 task-2] xEERKmsJQ36G06vauzO-GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63faab8a +18:00:39.519 [XNIO-1 task-2] xEERKmsJQ36G06vauzO-GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.519 [XNIO-1 task-2] xEERKmsJQ36G06vauzO-GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:39.519 [XNIO-1 task-2] xEERKmsJQ36G06vauzO-GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63faab8a +18:00:39.525 [XNIO-1 task-2] 5zH4uwzUSkSd7KnNiW3Wow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1880ac0, base path is set to: null +18:00:39.525 [XNIO-1 task-2] 5zH4uwzUSkSd7KnNiW3Wow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:39.525 [XNIO-1 task-2] 5zH4uwzUSkSd7KnNiW3Wow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:39.526 [XNIO-1 task-2] 5zH4uwzUSkSd7KnNiW3Wow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c1880ac0, base path is set to: null +18:00:39.526 [XNIO-1 task-2] 5zH4uwzUSkSd7KnNiW3Wow DEBUG com.networknt.schema.TypeValidator debug - validate( "c1880ac0", "c1880ac0", serviceId) +18:00:39.550 [XNIO-1 task-2] WoTotaZ_Tt-5CkeQjvJ2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.551 [XNIO-1 task-2] WoTotaZ_Tt-5CkeQjvJ2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.551 [XNIO-1 task-2] WoTotaZ_Tt-5CkeQjvJ2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.592 [XNIO-1 task-2] tBWTJPXrQiOHULarGRcu1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.592 [XNIO-1 task-2] tBWTJPXrQiOHULarGRcu1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:39.593 [XNIO-1 task-2] tBWTJPXrQiOHULarGRcu1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.227 [XNIO-1 task-2] WJGOU0G4QXyahSnlpwdk3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.227 [XNIO-1 task-2] WJGOU0G4QXyahSnlpwdk3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.227 [XNIO-1 task-2] WJGOU0G4QXyahSnlpwdk3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.228 [XNIO-1 task-2] WJGOU0G4QXyahSnlpwdk3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:40.281 [XNIO-1 task-2] Av3yBufUQoa6fuWMC7UTeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.282 [XNIO-1 task-2] Av3yBufUQoa6fuWMC7UTeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.282 [XNIO-1 task-2] Av3yBufUQoa6fuWMC7UTeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.302 [XNIO-1 task-2] wrYaRnfRTxK-NKVqPhGN2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63faab8a +18:00:40.302 [XNIO-1 task-2] wrYaRnfRTxK-NKVqPhGN2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.302 [XNIO-1 task-2] wrYaRnfRTxK-NKVqPhGN2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:40.302 [XNIO-1 task-2] wrYaRnfRTxK-NKVqPhGN2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63faab8a +18:00:40.329 [XNIO-1 task-2] GeLJxpyNQWe0h2e5kV06EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.329 [XNIO-1 task-2] GeLJxpyNQWe0h2e5kV06EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.329 [XNIO-1 task-2] GeLJxpyNQWe0h2e5kV06EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.330 [XNIO-1 task-2] GeLJxpyNQWe0h2e5kV06EA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:40.344 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.345 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.345 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.346 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.346 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.347 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:40.347 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:40.347 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG com.networknt.schema.TypeValidator debug - validate( "93d547cd-0bf3-40b2-a0e9-af967555", {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:40.347 [XNIO-1 task-2] PQeXYMYtT-GkeumGUizqNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92a63d91","serviceName":"93d547cd-0bf3-40b2-a0e9-af967555","serviceDesc":"c87118f3-2d1e-4fc1-904e-4f9cb53e5889","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.358 [XNIO-1 task-2] SuEzUytaQqCLskyBDAhDqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.358 [XNIO-1 task-2] SuEzUytaQqCLskyBDAhDqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.359 [XNIO-1 task-2] SuEzUytaQqCLskyBDAhDqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.405 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:331614f7 +18:00:40.407 [XNIO-1 task-2] pIooAra9RMOLaV7zfyAlvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.408 [XNIO-1 task-2] pIooAra9RMOLaV7zfyAlvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.408 [XNIO-1 task-2] pIooAra9RMOLaV7zfyAlvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.409 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:331614f7 +18:00:40.467 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0adfcbf6 +18:00:40.477 [XNIO-1 task-2] pxX8YYcoTMS6o71w3rupmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92a63d91, base path is set to: null +18:00:40.477 [XNIO-1 task-2] pxX8YYcoTMS6o71w3rupmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.477 [XNIO-1 task-2] pxX8YYcoTMS6o71w3rupmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:40.477 [XNIO-1 task-2] pxX8YYcoTMS6o71w3rupmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92a63d91, base path is set to: null +18:00:40.478 [XNIO-1 task-2] pxX8YYcoTMS6o71w3rupmw DEBUG com.networknt.schema.TypeValidator debug - validate( "92a63d91", "92a63d91", serviceId) +18:00:40.487 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.487 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.487 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.488 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.488 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:40.489 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG com.networknt.schema.TypeValidator debug - validate( "b59bebad-5b56-46a0-b9d1-95b4e9c49940", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:40.489 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1fad6b54", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:40.489 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:40.489 [XNIO-1 task-2] XO2lV4JWRsSoZBK45djLLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.504 [XNIO-1 task-2] hIUbpeAdRh6b4xKxiCYNTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.504 [XNIO-1 task-2] hIUbpeAdRh6b4xKxiCYNTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.505 [XNIO-1 task-2] hIUbpeAdRh6b4xKxiCYNTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.506 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:303fe205 +18:00:40.515 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.515 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.516 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.516 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.517 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.517 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:40.517 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:40.517 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG com.networknt.schema.TypeValidator debug - validate( "ab904a61-d39d-4152-b767-18fe2f52", {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:40.517 [XNIO-1 task-2] N7W5pkbpSxexRhbxjL-pJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4d9e5853","serviceName":"ab904a61-d39d-4152-b767-18fe2f52","serviceDesc":"b96f4d76-4629-4dd6-b571-e3d8f4fc9150","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:40.544 [XNIO-1 task-2] fmeiQImLQrO1U3ySBIGKyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e4335f21, base path is set to: null +18:00:40.544 [XNIO-1 task-2] fmeiQImLQrO1U3ySBIGKyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.544 [XNIO-1 task-2] fmeiQImLQrO1U3ySBIGKyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:40.545 [XNIO-1 task-2] fmeiQImLQrO1U3ySBIGKyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e4335f21, base path is set to: null +18:00:40.545 [XNIO-1 task-2] fmeiQImLQrO1U3ySBIGKyw DEBUG com.networknt.schema.TypeValidator debug - validate( "e4335f21", "e4335f21", serviceId) +18:00:40.647 [XNIO-1 task-2] G33vLil1TmW2dpUjtgusmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.647 [XNIO-1 task-2] G33vLil1TmW2dpUjtgusmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.647 [XNIO-1 task-2] G33vLil1TmW2dpUjtgusmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.648 [XNIO-1 task-2] G33vLil1TmW2dpUjtgusmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:40.726 [XNIO-1 task-2] F7AnHjeaRdOQyuQyJm3bZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/990c2981 +18:00:40.726 [XNIO-1 task-2] F7AnHjeaRdOQyuQyJm3bZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:40.726 [XNIO-1 task-2] F7AnHjeaRdOQyuQyJm3bZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:40.726 [XNIO-1 task-2] F7AnHjeaRdOQyuQyJm3bZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/990c2981 +18:00:40.739 [XNIO-1 task-2] 661sBGLtSDCVAEupDu3-hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.740 [XNIO-1 task-2] 661sBGLtSDCVAEupDu3-hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.740 [XNIO-1 task-2] 661sBGLtSDCVAEupDu3-hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.741 [XNIO-1 task-2] 661sBGLtSDCVAEupDu3-hw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:40.752 [XNIO-1 task-2] nmalOTvGSo-bKL50TCl6xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.752 [XNIO-1 task-2] nmalOTvGSo-bKL50TCl6xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.754 [XNIO-1 task-2] nmalOTvGSo-bKL50TCl6xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.764 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:331614f7 +18:00:40.844 [XNIO-1 task-2] 7GS8uWgjStKk8CJGRwOYeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.844 [XNIO-1 task-2] 7GS8uWgjStKk8CJGRwOYeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.845 [XNIO-1 task-2] 7GS8uWgjStKk8CJGRwOYeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.845 [XNIO-1 task-2] 7GS8uWgjStKk8CJGRwOYeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:40.860 [XNIO-1 task-2] 0HAJ3jwRS-W_tTsjOtrNBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.860 [XNIO-1 task-2] 0HAJ3jwRS-W_tTsjOtrNBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.860 [XNIO-1 task-2] 0HAJ3jwRS-W_tTsjOtrNBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:40.881 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:331614f7 +18:00:40.989 [XNIO-1 task-2] xJ7w_jqXTRKSRuZlWexvjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36e5168a, base path is set to: null +18:00:40.989 [XNIO-1 task-2] xJ7w_jqXTRKSRuZlWexvjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:40.989 [XNIO-1 task-2] xJ7w_jqXTRKSRuZlWexvjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:40.989 [XNIO-1 task-2] xJ7w_jqXTRKSRuZlWexvjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/36e5168a, base path is set to: null +18:00:40.990 [XNIO-1 task-2] xJ7w_jqXTRKSRuZlWexvjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "36e5168a", "36e5168a", serviceId) +18:00:41.015 [XNIO-1 task-2] hLyu7KB9RAy4sqso-ic93Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b344b5ca +18:00:41.015 [XNIO-1 task-2] hLyu7KB9RAy4sqso-ic93Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.015 [XNIO-1 task-2] hLyu7KB9RAy4sqso-ic93Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.015 [XNIO-1 task-2] hLyu7KB9RAy4sqso-ic93Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b344b5ca +18:00:41.053 [XNIO-1 task-2] agRHkNetSMijO9HuQz0PBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.054 [XNIO-1 task-2] agRHkNetSMijO9HuQz0PBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.054 [XNIO-1 task-2] agRHkNetSMijO9HuQz0PBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.094 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:331614f7 +18:00:41.102 [XNIO-1 task-2] utJPqdjKTaqhR9Cdx_XwwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0adfcbf6, base path is set to: null +18:00:41.102 [XNIO-1 task-2] utJPqdjKTaqhR9Cdx_XwwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.103 [XNIO-1 task-2] utJPqdjKTaqhR9Cdx_XwwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:41.103 [XNIO-1 task-2] utJPqdjKTaqhR9Cdx_XwwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0adfcbf6, base path is set to: null +18:00:41.103 [XNIO-1 task-2] utJPqdjKTaqhR9Cdx_XwwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0adfcbf6", "0adfcbf6", serviceId) +18:00:41.106 [XNIO-1 task-2] oa0brwrGQ_OUntzA4zeZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0adfcbf6 +18:00:41.106 [XNIO-1 task-2] oa0brwrGQ_OUntzA4zeZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.106 [XNIO-1 task-2] oa0brwrGQ_OUntzA4zeZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.106 [XNIO-1 task-2] oa0brwrGQ_OUntzA4zeZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0adfcbf6 +18:00:41.112 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.112 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.112 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.113 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.113 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.113 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:41.113 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.113 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2f0ba9b3-9974-4e98-94f6-86c4a76d", {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:41.113 [XNIO-1 task-2] DaLJnosoQc6pcSirDncAQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0adfcbf6","serviceName":"2f0ba9b3-9974-4e98-94f6-86c4a76d","serviceDesc":"96c469d6-f85f-4a7a-8643-2bd3a8a01305","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.114 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0adfcbf6 +18:00:41.122 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.123 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.123 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.124 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.124 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.124 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:41.124 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.124 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce3d4c42-96b0-4d02-88b0-ec5e5708", {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:41.124 [XNIO-1 task-2] DLEjrwreQn23nrfA5Y1qlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.140 [XNIO-1 task-2] NSqkVp4xQtq2W9vKgQTf7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/303fe205, base path is set to: null +18:00:41.141 [XNIO-1 task-2] NSqkVp4xQtq2W9vKgQTf7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.141 [XNIO-1 task-2] NSqkVp4xQtq2W9vKgQTf7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:41.141 [XNIO-1 task-2] NSqkVp4xQtq2W9vKgQTf7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/303fe205, base path is set to: null +18:00:41.142 [XNIO-1 task-2] NSqkVp4xQtq2W9vKgQTf7g DEBUG com.networknt.schema.TypeValidator debug - validate( "303fe205", "303fe205", serviceId) +18:00:41.146 [XNIO-1 task-2] vWWr9WnvSCmId7afrfW8rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.146 [XNIO-1 task-2] vWWr9WnvSCmId7afrfW8rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.147 [XNIO-1 task-2] vWWr9WnvSCmId7afrfW8rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.147 [XNIO-1 task-2] vWWr9WnvSCmId7afrfW8rQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.166 [XNIO-1 task-2] uW4UngmFQUWowQesyG53Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4d9e5853 +18:00:41.166 [XNIO-1 task-2] uW4UngmFQUWowQesyG53Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.166 [XNIO-1 task-2] uW4UngmFQUWowQesyG53Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.167 [XNIO-1 task-2] uW4UngmFQUWowQesyG53Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4d9e5853 +18:00:41.177 [XNIO-1 task-2] TNFKD4O6T4OyonXicjubSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/303fe205, base path is set to: null +18:00:41.178 [XNIO-1 task-2] TNFKD4O6T4OyonXicjubSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.178 [XNIO-1 task-2] TNFKD4O6T4OyonXicjubSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:41.178 [XNIO-1 task-2] TNFKD4O6T4OyonXicjubSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/303fe205, base path is set to: null +18:00:41.178 [XNIO-1 task-2] TNFKD4O6T4OyonXicjubSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "303fe205", "303fe205", serviceId) +18:00:41.180 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:303fe205 +18:00:41.187 [XNIO-1 task-2] VWR4PX75Tq20XSAp-c29Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.187 [XNIO-1 task-2] VWR4PX75Tq20XSAp-c29Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.188 [XNIO-1 task-2] VWR4PX75Tq20XSAp-c29Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.216 [XNIO-1 task-2] 779W4GZGQ2uzPQ1qStpb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a3665036 +18:00:41.216 [XNIO-1 task-2] 779W4GZGQ2uzPQ1qStpb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.216 [XNIO-1 task-2] 779W4GZGQ2uzPQ1qStpb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.216 [XNIO-1 task-2] 779W4GZGQ2uzPQ1qStpb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a3665036 +18:00:41.221 [XNIO-1 task-2] eYmvG8MVSi-c64qSyFn-cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.221 [XNIO-1 task-2] eYmvG8MVSi-c64qSyFn-cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.221 [XNIO-1 task-2] eYmvG8MVSi-c64qSyFn-cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.248 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.249 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.249 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.250 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.250 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.250 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:41.250 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.250 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG com.networknt.schema.TypeValidator debug - validate( "43fb747c-9b15-4518-87e0-e0b10935", {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:41.250 [XNIO-1 task-2] dQE_gMP3Q0CUPcTD0jmJfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fad6b54","serviceName":"43fb747c-9b15-4518-87e0-e0b10935","serviceDesc":"b59bebad-5b56-46a0-b9d1-95b4e9c49940","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.261 [XNIO-1 task-2] NQGGPWVsQAitOfHELZMeYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0adfcbf6, base path is set to: null +18:00:41.262 [XNIO-1 task-2] NQGGPWVsQAitOfHELZMeYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.262 [XNIO-1 task-2] NQGGPWVsQAitOfHELZMeYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:41.262 [XNIO-1 task-2] NQGGPWVsQAitOfHELZMeYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0adfcbf6, base path is set to: null +18:00:41.262 [XNIO-1 task-2] NQGGPWVsQAitOfHELZMeYw DEBUG com.networknt.schema.TypeValidator debug - validate( "0adfcbf6", "0adfcbf6", serviceId) +18:00:41.265 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0adfcbf6 +18:00:41.271 [XNIO-1 task-2] LOCDW7AkQPCwCXCicVZpUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1fad6b54 +18:00:41.271 [XNIO-1 task-2] LOCDW7AkQPCwCXCicVZpUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.272 [XNIO-1 task-2] LOCDW7AkQPCwCXCicVZpUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.272 [XNIO-1 task-2] LOCDW7AkQPCwCXCicVZpUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1fad6b54 +18:00:41.276 [XNIO-1 task-2] _dSsgZdnQ7KoyevAM-4RNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.276 [XNIO-1 task-2] _dSsgZdnQ7KoyevAM-4RNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.277 [XNIO-1 task-2] _dSsgZdnQ7KoyevAM-4RNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.377 [XNIO-1 task-2] e9zqJpY2QhqeNQ4JlMsr_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.377 [XNIO-1 task-2] e9zqJpY2QhqeNQ4JlMsr_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.377 [XNIO-1 task-2] e9zqJpY2QhqeNQ4JlMsr_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.378 [XNIO-1 task-2] e9zqJpY2QhqeNQ4JlMsr_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:41.509 [XNIO-1 task-2] BMXZWTYuRfOFCfNrPhocwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88faabc6, base path is set to: null +18:00:41.509 [XNIO-1 task-2] BMXZWTYuRfOFCfNrPhocwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.509 [XNIO-1 task-2] BMXZWTYuRfOFCfNrPhocwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:41.509 [XNIO-1 task-2] BMXZWTYuRfOFCfNrPhocwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88faabc6, base path is set to: null +18:00:41.529 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4d1733a9-07b6-4215-824a-c310eb4b9c85 +18:00:41.547 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4d1733a9-07b6-4215-824a-c310eb4b9c85 +18:00:41.590 [XNIO-1 task-2] VBOSQPg6RmyetEvafdbJwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.590 [XNIO-1 task-2] VBOSQPg6RmyetEvafdbJwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.591 [XNIO-1 task-2] VBOSQPg6RmyetEvafdbJwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.591 [XNIO-1 task-2] VBOSQPg6RmyetEvafdbJwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:41.609 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.609 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.609 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.612 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.613 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.613 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:41.613 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.613 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG com.networknt.schema.TypeValidator debug - validate( "032043f6-8f90-485f-80dc-9e0463e0", {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:41.613 [XNIO-1 task-2] UkQxVN-kTFaSzMA5ublKBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4f7673c2","serviceName":"032043f6-8f90-485f-80dc-9e0463e0","serviceDesc":"03163440-6e5a-4091-9319-00c6f7bcdf35","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.631 [XNIO-1 task-2] y1_0GLXgQPKcUbn0Vkbt1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.632 [XNIO-1 task-2] y1_0GLXgQPKcUbn0Vkbt1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.632 [XNIO-1 task-2] y1_0GLXgQPKcUbn0Vkbt1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.670 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:331614f7 +18:00:41.670 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.671 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.671 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.672 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.672 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.673 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:41.673 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.673 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG com.networknt.schema.TypeValidator debug - validate( "ce3d4c42-96b0-4d02-88b0-ec5e5708", {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:41.673 [XNIO-1 task-2] nD4CouyeQQaxP0OAw1Vp_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ef17309","serviceName":"ce3d4c42-96b0-4d02-88b0-ec5e5708","serviceDesc":"12e12ffe-9aac-428a-a4e3-3a55e201242f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.681 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3e411420-a599-4f19-9ad8-f37c412fcd82 +18:00:41.696 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.696 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.696 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.697 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.697 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.697 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:41.697 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:41.697 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "47998222-9c3a-4e84-a7db-575be712", {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:41.698 [XNIO-1 task-2] Fk4BpkiDTWqy1TnpnKEqKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a3665036","serviceName":"47998222-9c3a-4e84-a7db-575be712","serviceDesc":"e6f74e9c-9b16-46f6-b7b0-db5e0275743a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:41.729 [XNIO-1 task-2] IyQ6He9WS9WHw7BqIM108A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.729 [XNIO-1 task-2] IyQ6He9WS9WHw7BqIM108A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.729 [XNIO-1 task-2] IyQ6He9WS9WHw7BqIM108A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:41.782 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4d1733a9-07b6-4215-824a-c310eb4b9c85 +18:00:41.800 [XNIO-1 task-2] OXw0QhzyQ6eQmGAkBcOcFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.800 [XNIO-1 task-2] OXw0QhzyQ6eQmGAkBcOcFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.800 [XNIO-1 task-2] OXw0QhzyQ6eQmGAkBcOcFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.801 [XNIO-1 task-2] OXw0QhzyQ6eQmGAkBcOcFw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.844 [XNIO-1 task-2] j8y3XJ9KTEqRUCC2uMCDPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4f7673c2 +18:00:41.844 [XNIO-1 task-2] j8y3XJ9KTEqRUCC2uMCDPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.844 [XNIO-1 task-2] j8y3XJ9KTEqRUCC2uMCDPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.845 [XNIO-1 task-2] j8y3XJ9KTEqRUCC2uMCDPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4f7673c2 +18:00:41.864 [XNIO-1 task-2] 7b5BJlbiRSuGMs5T28iNlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/14c987d8, base path is set to: null +18:00:41.864 [XNIO-1 task-2] 7b5BJlbiRSuGMs5T28iNlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.864 [XNIO-1 task-2] 7b5BJlbiRSuGMs5T28iNlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:41.864 [XNIO-1 task-2] 7b5BJlbiRSuGMs5T28iNlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/14c987d8, base path is set to: null +18:00:41.865 [XNIO-1 task-2] 7b5BJlbiRSuGMs5T28iNlg DEBUG com.networknt.schema.TypeValidator debug - validate( "14c987d8", "14c987d8", serviceId) +18:00:41.893 [XNIO-1 task-2] oWbCVeZBSmm1yh9-tX4iHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.894 [XNIO-1 task-2] oWbCVeZBSmm1yh9-tX4iHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.894 [XNIO-1 task-2] oWbCVeZBSmm1yh9-tX4iHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.914 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:331614f7 +18:00:41.931 [XNIO-1 task-2] QC1dUtxZRXS7f99W6Z_5-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cff0afb1 +18:00:41.931 [XNIO-1 task-2] QC1dUtxZRXS7f99W6Z_5-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.931 [XNIO-1 task-2] QC1dUtxZRXS7f99W6Z_5-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.931 [XNIO-1 task-2] QC1dUtxZRXS7f99W6Z_5-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cff0afb1 +18:00:41.953 [XNIO-1 task-2] 6Jx4tVeUQ7i5QR_v6oxjhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/74433970, base path is set to: null +18:00:41.953 [XNIO-1 task-2] 6Jx4tVeUQ7i5QR_v6oxjhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:41.953 [XNIO-1 task-2] 6Jx4tVeUQ7i5QR_v6oxjhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:41.953 [XNIO-1 task-2] 6Jx4tVeUQ7i5QR_v6oxjhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/74433970, base path is set to: null +18:00:41.953 [XNIO-1 task-2] 6Jx4tVeUQ7i5QR_v6oxjhA DEBUG com.networknt.schema.TypeValidator debug - validate( "74433970", "74433970", serviceId) +18:00:41.963 [XNIO-1 task-2] InCjZ_txQXeyvjqrwTcsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74433970 +18:00:41.963 [XNIO-1 task-2] InCjZ_txQXeyvjqrwTcsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.963 [XNIO-1 task-2] InCjZ_txQXeyvjqrwTcsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:41.963 [XNIO-1 task-2] InCjZ_txQXeyvjqrwTcsFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74433970 +18:00:41.982 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e8d7045 +18:00:41.984 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e8d7045 +18:00:41.993 [XNIO-1 task-2] e0o1zofSTmSuAllE34b5Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.993 [XNIO-1 task-2] e0o1zofSTmSuAllE34b5Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:41.994 [XNIO-1 task-2] e0o1zofSTmSuAllE34b5Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.014 [XNIO-1 task-2] oYsFYs_tSOerkXE-XN9FFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1fad6b54 +18:00:42.015 [XNIO-1 task-2] oYsFYs_tSOerkXE-XN9FFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.015 [XNIO-1 task-2] oYsFYs_tSOerkXE-XN9FFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.016 [XNIO-1 task-2] oYsFYs_tSOerkXE-XN9FFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1fad6b54 +18:00:42.027 [XNIO-1 task-2] KWdpFgKFRfGhxU0RPfWUAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/372977ab, base path is set to: null +18:00:42.027 [XNIO-1 task-2] KWdpFgKFRfGhxU0RPfWUAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.027 [XNIO-1 task-2] KWdpFgKFRfGhxU0RPfWUAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.028 [XNIO-1 task-2] KWdpFgKFRfGhxU0RPfWUAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/372977ab, base path is set to: null +18:00:42.028 [XNIO-1 task-2] KWdpFgKFRfGhxU0RPfWUAw DEBUG com.networknt.schema.TypeValidator debug - validate( "372977ab", "372977ab", serviceId) +18:00:42.046 [XNIO-1 task-2] MWm6-8MzScCxUNgQ2zKuqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.046 [XNIO-1 task-2] MWm6-8MzScCxUNgQ2zKuqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.046 [XNIO-1 task-2] MWm6-8MzScCxUNgQ2zKuqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.063 [XNIO-1 task-2] y8g7CtKvQdqelC9TANr1HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c4d6adc +18:00:42.063 [XNIO-1 task-2] y8g7CtKvQdqelC9TANr1HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.063 [XNIO-1 task-2] y8g7CtKvQdqelC9TANr1HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.063 [XNIO-1 task-2] y8g7CtKvQdqelC9TANr1HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c4d6adc +18:00:42.068 [XNIO-1 task-2] 4QGz2anfRHCeymIbdikNRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ef17309, base path is set to: null +18:00:42.069 [XNIO-1 task-2] 4QGz2anfRHCeymIbdikNRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.069 [XNIO-1 task-2] 4QGz2anfRHCeymIbdikNRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.069 [XNIO-1 task-2] 4QGz2anfRHCeymIbdikNRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ef17309, base path is set to: null +18:00:42.070 [XNIO-1 task-2] 4QGz2anfRHCeymIbdikNRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9ef17309", "9ef17309", serviceId) +18:00:42.086 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:331614f7 +18:00:42.086 [XNIO-1 task-2] uU3qQ_iIRFuhRVbzzS4peQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.086 [XNIO-1 task-2] uU3qQ_iIRFuhRVbzzS4peQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.087 [XNIO-1 task-2] uU3qQ_iIRFuhRVbzzS4peQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.087 [XNIO-1 task-2] uU3qQ_iIRFuhRVbzzS4peQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.124 [XNIO-1 task-2] StIISzR0RTa1BT3waLrhOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.125 [XNIO-1 task-2] StIISzR0RTa1BT3waLrhOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.125 [XNIO-1 task-2] StIISzR0RTa1BT3waLrhOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.125 [XNIO-1 task-2] StIISzR0RTa1BT3waLrhOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.156 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b8ff0e26-6091-415c-a524-09e526a6c98c +18:00:42.162 [XNIO-1 task-2] ZDKT9vsKQ8GhbbWGYdwCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a3665036 +18:00:42.163 [XNIO-1 task-2] ZDKT9vsKQ8GhbbWGYdwCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.163 [XNIO-1 task-2] ZDKT9vsKQ8GhbbWGYdwCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.163 [XNIO-1 task-2] ZDKT9vsKQ8GhbbWGYdwCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a3665036 +18:00:42.168 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:08a0d9bd-f9e2-41ea-8cb9-9158c927fa4c +18:00:42.168 [XNIO-1 task-2] HupsBQIKQya45gK2sv-FIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.168 [XNIO-1 task-2] HupsBQIKQya45gK2sv-FIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.169 [XNIO-1 task-2] HupsBQIKQya45gK2sv-FIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.169 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:08a0d9bd-f9e2-41ea-8cb9-9158c927fa4c +18:00:42.169 [XNIO-1 task-2] HupsBQIKQya45gK2sv-FIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.170 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:331614f7 +18:00:42.186 [XNIO-1 task-2] PtQUbebtRk68WVHdYSTvNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a3665036 +18:00:42.186 [XNIO-1 task-2] PtQUbebtRk68WVHdYSTvNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.186 [XNIO-1 task-2] PtQUbebtRk68WVHdYSTvNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.187 [XNIO-1 task-2] PtQUbebtRk68WVHdYSTvNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a3665036 +18:00:42.198 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:331614f7 +18:00:42.208 [XNIO-1 task-2] F9YxMq-rQE-bXoF7Hx3qDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d35c58de, base path is set to: null +18:00:42.208 [XNIO-1 task-2] F9YxMq-rQE-bXoF7Hx3qDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.209 [XNIO-1 task-2] F9YxMq-rQE-bXoF7Hx3qDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.209 [XNIO-1 task-2] F9YxMq-rQE-bXoF7Hx3qDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d35c58de, base path is set to: null +18:00:42.209 [XNIO-1 task-2] F9YxMq-rQE-bXoF7Hx3qDw DEBUG com.networknt.schema.TypeValidator debug - validate( "d35c58de", "d35c58de", serviceId) +18:00:42.215 [XNIO-1 task-2] H7Zyo62dSB2CnwGNb13YVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.215 [XNIO-1 task-2] H7Zyo62dSB2CnwGNb13YVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.216 [XNIO-1 task-2] H7Zyo62dSB2CnwGNb13YVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.216 [XNIO-1 task-2] H7Zyo62dSB2CnwGNb13YVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.249 [XNIO-1 task-2] 7fPF9RD2STmn3JKHfI8ifA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.249 [XNIO-1 task-2] 7fPF9RD2STmn3JKHfI8ifA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.249 [XNIO-1 task-2] 7fPF9RD2STmn3JKHfI8ifA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.250 [XNIO-1 task-2] 7fPF9RD2STmn3JKHfI8ifA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.284 [XNIO-1 task-2] 7Wf2E4opQ0uZpm95xNcHWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d35c58de +18:00:42.284 [XNIO-1 task-2] 7Wf2E4opQ0uZpm95xNcHWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.285 [XNIO-1 task-2] 7Wf2E4opQ0uZpm95xNcHWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.285 [XNIO-1 task-2] 7Wf2E4opQ0uZpm95xNcHWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d35c58de +18:00:42.288 [XNIO-1 task-2] NYcDAWbVSGWevIZ1PVf9Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.288 [XNIO-1 task-2] NYcDAWbVSGWevIZ1PVf9Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.288 [XNIO-1 task-2] NYcDAWbVSGWevIZ1PVf9Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.288 [XNIO-1 task-2] NYcDAWbVSGWevIZ1PVf9Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.318 [XNIO-1 task-2] 0WAZPx6yRw-Ag4Fq9ueewg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.318 [XNIO-1 task-2] 0WAZPx6yRw-Ag4Fq9ueewg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.319 [XNIO-1 task-2] 0WAZPx6yRw-Ag4Fq9ueewg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.322 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:08a0d9bd-f9e2-41ea-8cb9-9158c927fa4c +18:00:42.336 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.336 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.337 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.338 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.338 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:42.338 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed6ff980-7887-4ccd-8d76-3994a19b9d1b", {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:42.338 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG com.networknt.schema.TypeValidator debug - validate( "d35c58de", {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:42.338 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:42.338 [XNIO-1 task-2] JA-PTiBpQ9KfybK9L96LPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d35c58de","serviceName":"7fd0ee4a-f7cd-410c-9d58-e9fd4830","serviceDesc":"ed6ff980-7887-4ccd-8d76-3994a19b9d1b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.343 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6e8d7045 +18:00:42.347 [XNIO-1 task-2] -CHsbQJ1TFS4Sd4fSEPldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/daeb62cb +18:00:42.348 [XNIO-1 task-2] -CHsbQJ1TFS4Sd4fSEPldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.348 [XNIO-1 task-2] -CHsbQJ1TFS4Sd4fSEPldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.348 [XNIO-1 task-2] -CHsbQJ1TFS4Sd4fSEPldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/daeb62cb +18:00:42.361 [XNIO-1 task-2] Vz74YtZJSJSm2PafpXFt5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c4d6adc, base path is set to: null +18:00:42.361 [XNIO-1 task-2] Vz74YtZJSJSm2PafpXFt5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.361 [XNIO-1 task-2] Vz74YtZJSJSm2PafpXFt5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.361 [XNIO-1 task-2] Vz74YtZJSJSm2PafpXFt5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c4d6adc, base path is set to: null +18:00:42.362 [XNIO-1 task-2] Vz74YtZJSJSm2PafpXFt5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8c4d6adc", "8c4d6adc", serviceId) +18:00:42.378 [XNIO-1 task-2] yM-OSyxyT4-GMABHm5ogbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d35c58de +18:00:42.378 [XNIO-1 task-2] yM-OSyxyT4-GMABHm5ogbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.378 [XNIO-1 task-2] yM-OSyxyT4-GMABHm5ogbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.379 [XNIO-1 task-2] yM-OSyxyT4-GMABHm5ogbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d35c58de +18:00:42.383 [XNIO-1 task-2] Mb2BYIu3RGWAuqzK9B0R0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d35c58de, base path is set to: null +18:00:42.383 [XNIO-1 task-2] Mb2BYIu3RGWAuqzK9B0R0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.383 [XNIO-1 task-2] Mb2BYIu3RGWAuqzK9B0R0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.383 [XNIO-1 task-2] Mb2BYIu3RGWAuqzK9B0R0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d35c58de, base path is set to: null +18:00:42.384 [XNIO-1 task-2] Mb2BYIu3RGWAuqzK9B0R0A DEBUG com.networknt.schema.TypeValidator debug - validate( "d35c58de", "d35c58de", serviceId) +18:00:42.388 [XNIO-1 task-2] Ea08Ifh5RQaWJz2NedjITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.388 [XNIO-1 task-2] Ea08Ifh5RQaWJz2NedjITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.388 [XNIO-1 task-2] Ea08Ifh5RQaWJz2NedjITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.390 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5a582eef +18:00:42.401 [XNIO-1 task-2] WUDTRdwWT86e8Kb1kaZsAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.401 [XNIO-1 task-2] WUDTRdwWT86e8Kb1kaZsAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.401 [XNIO-1 task-2] WUDTRdwWT86e8Kb1kaZsAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.412 [XNIO-1 task-2] aKVix9TITqybJlbGFEGsMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d35c58de, base path is set to: null +18:00:42.412 [XNIO-1 task-2] aKVix9TITqybJlbGFEGsMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.412 [XNIO-1 task-2] aKVix9TITqybJlbGFEGsMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.412 [XNIO-1 task-2] aKVix9TITqybJlbGFEGsMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d35c58de, base path is set to: null +18:00:42.413 [XNIO-1 task-2] aKVix9TITqybJlbGFEGsMA DEBUG com.networknt.schema.TypeValidator debug - validate( "d35c58de", "d35c58de", serviceId) +18:00:42.417 [XNIO-1 task-2] N5JPDsXRQwOBEnMr3ESnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d35c58de +18:00:42.417 [XNIO-1 task-2] N5JPDsXRQwOBEnMr3ESnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.417 [XNIO-1 task-2] N5JPDsXRQwOBEnMr3ESnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.418 [XNIO-1 task-2] N5JPDsXRQwOBEnMr3ESnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d35c58de +18:00:42.436 [XNIO-1 task-2] teln_sXPQuqpPioS2EEkqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5a582eef, base path is set to: null +18:00:42.436 [XNIO-1 task-2] teln_sXPQuqpPioS2EEkqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.437 [XNIO-1 task-2] teln_sXPQuqpPioS2EEkqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.437 [XNIO-1 task-2] teln_sXPQuqpPioS2EEkqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5a582eef, base path is set to: null +18:00:42.437 [XNIO-1 task-2] teln_sXPQuqpPioS2EEkqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a582eef", "5a582eef", serviceId) +18:00:42.442 [XNIO-1 task-2] 0UnoRUtHRjCjOtlDYSiXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5a582eef +18:00:42.442 [XNIO-1 task-2] 0UnoRUtHRjCjOtlDYSiXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.442 [XNIO-1 task-2] 0UnoRUtHRjCjOtlDYSiXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.442 [XNIO-1 task-2] 0UnoRUtHRjCjOtlDYSiXrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5a582eef +18:00:42.443 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5a582eef +18:00:42.461 [XNIO-1 task-2] EuSNOnWEThCaJDzNwuKKEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6b5a535, base path is set to: null +18:00:42.461 [XNIO-1 task-2] EuSNOnWEThCaJDzNwuKKEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.461 [XNIO-1 task-2] EuSNOnWEThCaJDzNwuKKEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.461 [XNIO-1 task-2] EuSNOnWEThCaJDzNwuKKEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6b5a535, base path is set to: null +18:00:42.462 [XNIO-1 task-2] EuSNOnWEThCaJDzNwuKKEw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6b5a535", "c6b5a535", serviceId) +18:00:42.466 [XNIO-1 task-2] O2iDCZ3tR9m1NMa85h503A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.467 [XNIO-1 task-2] O2iDCZ3tR9m1NMa85h503A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.467 [XNIO-1 task-2] O2iDCZ3tR9m1NMa85h503A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.497 [XNIO-1 task-2] 2QjdV9kaSO2yxVsw4tnjbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.497 [XNIO-1 task-2] 2QjdV9kaSO2yxVsw4tnjbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.497 [XNIO-1 task-2] 2QjdV9kaSO2yxVsw4tnjbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.498 [XNIO-1 task-2] 2QjdV9kaSO2yxVsw4tnjbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.511 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:607cb481 +18:00:42.512 [XNIO-1 task-2] ijkuqju_TvSGmOKUJeX92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.512 [XNIO-1 task-2] ijkuqju_TvSGmOKUJeX92Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.512 [XNIO-1 task-2] ijkuqju_TvSGmOKUJeX92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.525 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6e8d7045 +18:00:42.526 [XNIO-1 task-2] mEMIbBMKRnuTLlgi1Hr96g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.526 [XNIO-1 task-2] mEMIbBMKRnuTLlgi1Hr96g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.526 [XNIO-1 task-2] mEMIbBMKRnuTLlgi1Hr96g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.527 [XNIO-1 task-2] mEMIbBMKRnuTLlgi1Hr96g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.541 [XNIO-1 task-2] iLOwpgTAT-67ivdG6vsWAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6b5a535, base path is set to: null +18:00:42.541 [XNIO-1 task-2] iLOwpgTAT-67ivdG6vsWAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.541 [XNIO-1 task-2] iLOwpgTAT-67ivdG6vsWAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.541 [XNIO-1 task-2] iLOwpgTAT-67ivdG6vsWAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6b5a535, base path is set to: null +18:00:42.542 [XNIO-1 task-2] iLOwpgTAT-67ivdG6vsWAw DEBUG com.networknt.schema.TypeValidator debug - validate( "c6b5a535", "c6b5a535", serviceId) +18:00:42.549 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.550 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:5d540b51 +18:00:42.550 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5d540b51 +18:00:42.550 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.569 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.569 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.569 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:42.569 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:42.569 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "140cba59-37a8-409a-a812-71ca5acb", {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:42.570 [XNIO-1 task-2] DbccQVZNQQmhpFSD_3c4Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c6b5a535","serviceName":"140cba59-37a8-409a-a812-71ca5acb","serviceDesc":"1de9c3df-6f01-4dca-99dc-0064a771ff11","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.578 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.578 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.579 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.580 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.581 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.582 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:42.582 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48852b63-e925-45bd-8697-28f075bf8868 +18:00:42.585 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7606842-1ebc-45c4-a177-52fcbff76821", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:42.585 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd618a0", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:42.585 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:42.585 [XNIO-1 task-2] VAT4BcM6TieCVMtOpDrAAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.598 [XNIO-1 task-2] HQUZz61kR-25cYOvXZp0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feafce7d +18:00:42.598 [XNIO-1 task-2] HQUZz61kR-25cYOvXZp0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.598 [XNIO-1 task-2] HQUZz61kR-25cYOvXZp0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.598 [XNIO-1 task-2] HQUZz61kR-25cYOvXZp0bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/feafce7d +18:00:42.614 [XNIO-1 task-2] rcWQD5yXTVWzjQEC0eMjlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.614 [XNIO-1 task-2] rcWQD5yXTVWzjQEC0eMjlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.615 [XNIO-1 task-2] rcWQD5yXTVWzjQEC0eMjlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.639 [XNIO-1 task-2] Oku8YjbIS3i2Uo5UWm1JsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.639 [XNIO-1 task-2] Oku8YjbIS3i2Uo5UWm1JsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.639 [XNIO-1 task-2] Oku8YjbIS3i2Uo5UWm1JsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.658 [XNIO-1 task-2] 53GGC-XVSneVP0o4Ag5zIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.658 [XNIO-1 task-2] 53GGC-XVSneVP0o4Ag5zIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.658 [XNIO-1 task-2] 53GGC-XVSneVP0o4Ag5zIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.658 [XNIO-1 task-2] 53GGC-XVSneVP0o4Ag5zIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.669 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6e8d7045 +18:00:42.678 [XNIO-1 task-2] tnv7w-yBS3q5U7M8rmNnEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6b5a535, base path is set to: null +18:00:42.678 [XNIO-1 task-2] tnv7w-yBS3q5U7M8rmNnEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.678 [XNIO-1 task-2] tnv7w-yBS3q5U7M8rmNnEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.678 [XNIO-1 task-2] tnv7w-yBS3q5U7M8rmNnEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6b5a535, base path is set to: null +18:00:42.679 [XNIO-1 task-2] tnv7w-yBS3q5U7M8rmNnEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c6b5a535", "c6b5a535", serviceId) +18:00:42.686 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48852b63-e925-45bd-8697-28f075bf8868 +18:00:42.690 [XNIO-1 task-2] b9uf9EzpSsGMAzXxOTLYmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c6b5a535 +18:00:42.690 [XNIO-1 task-2] b9uf9EzpSsGMAzXxOTLYmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.690 [XNIO-1 task-2] b9uf9EzpSsGMAzXxOTLYmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.691 [XNIO-1 task-2] b9uf9EzpSsGMAzXxOTLYmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c6b5a535 +18:00:42.716 [XNIO-1 task-2] 4MxddJZxTKWmqfJfSaneng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.717 [XNIO-1 task-2] 4MxddJZxTKWmqfJfSaneng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.718 [XNIO-1 task-2] 4MxddJZxTKWmqfJfSaneng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.720 [XNIO-1 task-2] 4MxddJZxTKWmqfJfSaneng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.736 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.736 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.736 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:48852b63-e925-45bd-8697-28f075bf8868 +18:00:42.737 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.739 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.739 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:42.739 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG com.networknt.schema.TypeValidator debug - validate( "c7606842-1ebc-45c4-a177-52fcbff76821", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:42.739 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd618a0", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:42.739 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:42.739 [XNIO-1 task-2] i_DQUCqrRb2L6QSVSiAsjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.751 [XNIO-1 task-2] vB8j5LSgQ6Ot7UKHIwrQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.751 [XNIO-1 task-2] vB8j5LSgQ6Ot7UKHIwrQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.752 [XNIO-1 task-2] vB8j5LSgQ6Ot7UKHIwrQ5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.778 [XNIO-1 task-2] jAydgA16QJC3bUaGJpR8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/00fae749 +18:00:42.778 [XNIO-1 task-2] jAydgA16QJC3bUaGJpR8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.778 [XNIO-1 task-2] jAydgA16QJC3bUaGJpR8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.779 [XNIO-1 task-2] jAydgA16QJC3bUaGJpR8yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/00fae749 +18:00:42.797 [XNIO-1 task-2] YZIuy87FSBWHEv8tEQDVZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.797 [XNIO-1 task-2] YZIuy87FSBWHEv8tEQDVZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.797 [XNIO-1 task-2] YZIuy87FSBWHEv8tEQDVZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.798 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:331614f7 +18:00:42.798 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:331614f7 +18:00:42.860 [XNIO-1 task-2] R4EM_o0sRkuAWWu5HRl4iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.860 [XNIO-1 task-2] R4EM_o0sRkuAWWu5HRl4iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.860 [XNIO-1 task-2] R4EM_o0sRkuAWWu5HRl4iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:42.861 [XNIO-1 task-2] R4EM_o0sRkuAWWu5HRl4iA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.861 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:93f8f80d +18:00:42.867 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:93f8f80d +18:00:42.874 [XNIO-1 task-2] KCue04w3SheoH-sg3tlvwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.874 [XNIO-1 task-2] KCue04w3SheoH-sg3tlvwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.874 [XNIO-1 task-2] KCue04w3SheoH-sg3tlvwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.874 [XNIO-1 task-2] KCue04w3SheoH-sg3tlvwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.879 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:93f8f80d +18:00:42.890 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3fd10486-1efc-45c0-bcd5-b0c8287e1469 +18:00:42.893 [XNIO-1 task-2] lPMZKyo5S7mAusEzwagzZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/56eaaf7f, base path is set to: null +18:00:42.894 [XNIO-1 task-2] lPMZKyo5S7mAusEzwagzZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.894 [XNIO-1 task-2] lPMZKyo5S7mAusEzwagzZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.894 [XNIO-1 task-2] lPMZKyo5S7mAusEzwagzZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/56eaaf7f, base path is set to: null +18:00:42.894 [XNIO-1 task-2] lPMZKyo5S7mAusEzwagzZg DEBUG com.networknt.schema.TypeValidator debug - validate( "56eaaf7f", "56eaaf7f", serviceId) +18:00:42.899 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.899 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.899 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.900 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.900 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:42.900 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG com.networknt.schema.TypeValidator debug - validate( "9786875a-5e76-4ce2-8fc7-a0a456825459", {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:42.900 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG com.networknt.schema.TypeValidator debug - validate( "281d4e9d", {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:42.900 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:42.900 [XNIO-1 task-2] th4iodECTt6Yk-2MvCDMZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"281d4e9d","serviceName":"441336f0-3a1d-4d54-92df-55b1abf0","serviceDesc":"9786875a-5e76-4ce2-8fc7-a0a456825459","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:42.903 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d1df7b89-9421-4aed-a4a3-092dcb36c563 +18:00:42.914 [XNIO-1 task-2] J8iliDnORg6XHXVbVcSq7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.914 [XNIO-1 task-2] J8iliDnORg6XHXVbVcSq7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.915 [XNIO-1 task-2] J8iliDnORg6XHXVbVcSq7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.915 [XNIO-1 task-2] J8iliDnORg6XHXVbVcSq7w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.929 [XNIO-1 task-2] bqNYHJN7Qqa38nyfFL_IpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/56eaaf7f +18:00:42.929 [XNIO-1 task-2] bqNYHJN7Qqa38nyfFL_IpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.929 [XNIO-1 task-2] bqNYHJN7Qqa38nyfFL_IpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.929 [XNIO-1 task-2] bqNYHJN7Qqa38nyfFL_IpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/56eaaf7f +18:00:42.942 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:607cb481 +18:00:42.944 [XNIO-1 task-2] Ai3vTKE5QGG0TIppCuVk1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cd618a0, base path is set to: null +18:00:42.944 [XNIO-1 task-2] Ai3vTKE5QGG0TIppCuVk1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:42.945 [XNIO-1 task-2] Ai3vTKE5QGG0TIppCuVk1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:42.945 [XNIO-1 task-2] Ai3vTKE5QGG0TIppCuVk1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4cd618a0, base path is set to: null +18:00:42.945 [XNIO-1 task-2] Ai3vTKE5QGG0TIppCuVk1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4cd618a0", "4cd618a0", serviceId) +18:00:42.952 [XNIO-1 task-2] Lsk-UNZ4Rs-Aa6iq0q4Wqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.952 [XNIO-1 task-2] Lsk-UNZ4Rs-Aa6iq0q4Wqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.953 [XNIO-1 task-2] Lsk-UNZ4Rs-Aa6iq0q4Wqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.992 [XNIO-1 task-2] 4nRc6bDdR3Sv-C8kCNbgVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/281d4e9d +18:00:42.993 [XNIO-1 task-2] 4nRc6bDdR3Sv-C8kCNbgVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:42.993 [XNIO-1 task-2] 4nRc6bDdR3Sv-C8kCNbgVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:42.993 [XNIO-1 task-2] 4nRc6bDdR3Sv-C8kCNbgVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/281d4e9d +18:00:43.014 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.014 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.014 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.015 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.015 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.015 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.015 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.015 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG com.networknt.schema.TypeValidator debug - validate( "8ea9d358-c1f5-4776-8a39-e65e975d", {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.016 [XNIO-1 task-2] sK_3aEfkQ8eEHT2-6uTqrg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4cd618a0","serviceName":"8ea9d358-c1f5-4776-8a39-e65e975d","serviceDesc":"c7606842-1ebc-45c4-a177-52fcbff76821","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.027 [XNIO-1 task-2] 8SwLlBbvR22wUqmldmKNOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d4c92166, base path is set to: null +18:00:43.027 [XNIO-1 task-2] 8SwLlBbvR22wUqmldmKNOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.027 [XNIO-1 task-2] 8SwLlBbvR22wUqmldmKNOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:43.028 [XNIO-1 task-2] 8SwLlBbvR22wUqmldmKNOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d4c92166, base path is set to: null +18:00:43.028 [XNIO-1 task-2] 8SwLlBbvR22wUqmldmKNOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d4c92166", "d4c92166", serviceId) +18:00:43.035 [XNIO-1 task-2] LQgl4f3oRhOdNw8FJUwIMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4cd618a0 +18:00:43.035 [XNIO-1 task-2] LQgl4f3oRhOdNw8FJUwIMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.035 [XNIO-1 task-2] LQgl4f3oRhOdNw8FJUwIMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.035 [XNIO-1 task-2] LQgl4f3oRhOdNw8FJUwIMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4cd618a0 +18:00:43.047 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.047 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.047 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.048 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.048 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.048 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.048 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.048 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG com.networknt.schema.TypeValidator debug - validate( "51779a5a-3129-4616-8c45-8368992d", {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.048 [XNIO-1 task-2] oCKSQylMQF6Hv-DwKFUFng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.065 [XNIO-1 task-2] URYWCiG-RyakgeILohLyhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.065 [XNIO-1 task-2] URYWCiG-RyakgeILohLyhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.065 [XNIO-1 task-2] URYWCiG-RyakgeILohLyhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.066 [XNIO-1 task-2] URYWCiG-RyakgeILohLyhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.074 [XNIO-1 task-2] bTqUk6OoTpqvav9y4Vxnsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.075 [XNIO-1 task-2] bTqUk6OoTpqvav9y4Vxnsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.075 [XNIO-1 task-2] bTqUk6OoTpqvav9y4Vxnsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.075 [XNIO-1 task-2] bTqUk6OoTpqvav9y4Vxnsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.106 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e5978a89-7e12-42a3-81c8-693a36e0d1eb +18:00:43.107 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e5978a89-7e12-42a3-81c8-693a36e0d1eb +18:00:43.151 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.151 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.151 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.152 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.152 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.152 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88e61e9c-566b-49f2-9a84-41fd172eba02", {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:43.152 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d4c92166", {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:43.152 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.152 [XNIO-1 task-2] fDPk9f-CSoqiBoC459dIHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d4c92166","serviceName":"51779a5a-3129-4616-8c45-8368992d","serviceDesc":"88e61e9c-566b-49f2-9a84-41fd172eba02","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.167 [XNIO-1 task-2] BeF6Rkk_Q52BEpZUfr7U8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d4c92166 +18:00:43.167 [XNIO-1 task-2] BeF6Rkk_Q52BEpZUfr7U8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.167 [XNIO-1 task-2] BeF6Rkk_Q52BEpZUfr7U8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.167 [XNIO-1 task-2] BeF6Rkk_Q52BEpZUfr7U8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d4c92166 +18:00:43.181 [XNIO-1 task-2] GTtpsLueSTmyDJH2tN3lKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.181 [XNIO-1 task-2] GTtpsLueSTmyDJH2tN3lKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.181 [XNIO-1 task-2] GTtpsLueSTmyDJH2tN3lKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.182 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:99de258e +18:00:43.185 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:99de258e +18:00:43.194 [XNIO-1 task-2] YYJ9Vu10QZKiavNnYQS_1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.194 [XNIO-1 task-2] YYJ9Vu10QZKiavNnYQS_1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.194 [XNIO-1 task-2] YYJ9Vu10QZKiavNnYQS_1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.210 [XNIO-1 task-2] bgwWs09SQEWULViSgqPA9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/99de258e +18:00:43.210 [XNIO-1 task-2] bgwWs09SQEWULViSgqPA9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.210 [XNIO-1 task-2] bgwWs09SQEWULViSgqPA9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.210 [XNIO-1 task-2] bgwWs09SQEWULViSgqPA9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/99de258e +18:00:43.211 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:99de258e +18:00:43.220 [XNIO-1 task-2] TZA9K1KNT3a_hkZOd87zGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/819d4002, base path is set to: null +18:00:43.220 [XNIO-1 task-2] TZA9K1KNT3a_hkZOd87zGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.220 [XNIO-1 task-2] TZA9K1KNT3a_hkZOd87zGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:43.220 [XNIO-1 task-2] TZA9K1KNT3a_hkZOd87zGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/819d4002, base path is set to: null +18:00:43.221 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:607cb481 +18:00:43.221 [XNIO-1 task-2] TZA9K1KNT3a_hkZOd87zGw DEBUG com.networknt.schema.TypeValidator debug - validate( "819d4002", "819d4002", serviceId) +18:00:43.231 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.231 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.232 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.233 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:607cb481 +18:00:43.234 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.234 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.234 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8c72d59a-637a-479a-85e3-0d1f8b26bf3a", {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:43.234 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "819d4002", {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:43.234 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.235 [XNIO-1 task-2] 6fSIO7-ZSi-1iEYyGH4u2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.244 [XNIO-1 task-2] EmFf6LoJQ56A6PWGAEZbZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.245 [XNIO-1 task-2] EmFf6LoJQ56A6PWGAEZbZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.245 [XNIO-1 task-2] EmFf6LoJQ56A6PWGAEZbZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.246 [XNIO-1 task-2] EmFf6LoJQ56A6PWGAEZbZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.259 [XNIO-1 task-2] A6tXTSIJTgOpncA_X0Zvcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.259 [XNIO-1 task-2] A6tXTSIJTgOpncA_X0Zvcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.259 [XNIO-1 task-2] A6tXTSIJTgOpncA_X0Zvcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.261 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:232863bf +18:00:43.291 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.291 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.292 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.292 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.292 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.293 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.293 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.293 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d663c49b-e55d-4769-b068-f0a96f01", {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.293 [XNIO-1 task-2] MbZOgAP5Ti2ukY1B2saAzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"819d4002","serviceName":"d663c49b-e55d-4769-b068-f0a96f01","serviceDesc":"8c72d59a-637a-479a-85e3-0d1f8b26bf3a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.321 [XNIO-1 task-2] 2XsMgPhkTJGxzYQMNUgQ6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/819d4002, base path is set to: null +18:00:43.322 [XNIO-1 task-2] 2XsMgPhkTJGxzYQMNUgQ6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.322 [XNIO-1 task-2] 2XsMgPhkTJGxzYQMNUgQ6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:43.322 [XNIO-1 task-2] 2XsMgPhkTJGxzYQMNUgQ6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/819d4002, base path is set to: null +18:00:43.322 [XNIO-1 task-2] 2XsMgPhkTJGxzYQMNUgQ6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "819d4002", "819d4002", serviceId) +18:00:43.346 [XNIO-1 task-2] 1yIOwPA-SROUNyI1gdB4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.346 [XNIO-1 task-2] 1yIOwPA-SROUNyI1gdB4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.346 [XNIO-1 task-2] 1yIOwPA-SROUNyI1gdB4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.347 [XNIO-1 task-2] 1yIOwPA-SROUNyI1gdB4Cw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.361 [XNIO-1 task-2] 3zUrk9abTBi0bjJgPqkAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/232863bf +18:00:43.361 [XNIO-1 task-2] 3zUrk9abTBi0bjJgPqkAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.362 [XNIO-1 task-2] 3zUrk9abTBi0bjJgPqkAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.362 [XNIO-1 task-2] 3zUrk9abTBi0bjJgPqkAUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/232863bf +18:00:43.365 [XNIO-1 task-2] ddUq8JslRcOh4ujA7JAiBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/232863bf, base path is set to: null +18:00:43.365 [XNIO-1 task-2] ddUq8JslRcOh4ujA7JAiBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.365 [XNIO-1 task-2] ddUq8JslRcOh4ujA7JAiBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:43.366 [XNIO-1 task-2] ddUq8JslRcOh4ujA7JAiBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/232863bf, base path is set to: null +18:00:43.366 [XNIO-1 task-2] ddUq8JslRcOh4ujA7JAiBw DEBUG com.networknt.schema.TypeValidator debug - validate( "232863bf", "232863bf", serviceId) +18:00:43.367 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:232863bf +18:00:43.376 [XNIO-1 task-2] 33zWo_7qRGiRAzrs1mseoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.376 [XNIO-1 task-2] 33zWo_7qRGiRAzrs1mseoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.377 [XNIO-1 task-2] 33zWo_7qRGiRAzrs1mseoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.386 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:43.452 [XNIO-1 task-2] 5WIj0nqSToOla24ytezzvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.452 [XNIO-1 task-2] 5WIj0nqSToOla24ytezzvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:43.452 [XNIO-1 task-2] 5WIj0nqSToOla24ytezzvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a6a2d7f9, base path is set to: null +18:00:43.452 [XNIO-1 task-2] 5WIj0nqSToOla24ytezzvA DEBUG com.networknt.schema.TypeValidator debug - validate( "a6a2d7f9", "a6a2d7f9", serviceId) +18:00:43.464 [XNIO-1 task-2] dARVJk8FRg6pH31k1Al2EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.464 [XNIO-1 task-2] dARVJk8FRg6pH31k1Al2EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.465 [XNIO-1 task-2] dARVJk8FRg6pH31k1Al2EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.489 [XNIO-1 task-2] HQKTW-9JRFiC1jPztO0mZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.489 [XNIO-1 task-2] HQKTW-9JRFiC1jPztO0mZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.492 [XNIO-1 task-2] HQKTW-9JRFiC1jPztO0mZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.493 [XNIO-1 task-2] HQKTW-9JRFiC1jPztO0mZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.493 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc830065 +18:00:43.496 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc830065 +18:00:43.511 [XNIO-1 task-2] XIkFhaW3R264Yf3o5rgyFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.512 [XNIO-1 task-2] XIkFhaW3R264Yf3o5rgyFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.512 [XNIO-1 task-2] XIkFhaW3R264Yf3o5rgyFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.512 [XNIO-1 task-2] XIkFhaW3R264Yf3o5rgyFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.530 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:607cb481 +18:00:43.532 [XNIO-1 task-2] uRerffuIRaGvlkOorDU5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8354347b +18:00:43.532 [XNIO-1 task-2] uRerffuIRaGvlkOorDU5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.533 [XNIO-1 task-2] uRerffuIRaGvlkOorDU5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.533 [XNIO-1 task-2] uRerffuIRaGvlkOorDU5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8354347b +18:00:43.550 [XNIO-1 task-2] Kzem3f08SomjysQj2sdpVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.550 [XNIO-1 task-2] Kzem3f08SomjysQj2sdpVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.550 [XNIO-1 task-2] Kzem3f08SomjysQj2sdpVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.551 [XNIO-1 task-2] Kzem3f08SomjysQj2sdpVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.561 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8903811d-2438-492a-a778-1059c123a31d +18:00:43.563 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.563 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.563 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8903811d-2438-492a-a778-1059c123a31d +18:00:43.564 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.565 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.565 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.565 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG com.networknt.schema.TypeValidator debug - validate( "0cf32965-c511-49ef-8d73-f5b97e7534a1", {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:43.565 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6a2d7f9", {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:43.565 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.566 [XNIO-1 task-2] dbUIIubVRlKDo2hzg8mTTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6a2d7f9","serviceName":"282705c4-8cd8-4545-b1f6-32f94f5d","serviceDesc":"0cf32965-c511-49ef-8d73-f5b97e7534a1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.574 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc830065 +18:00:43.576 [XNIO-1 task-2] 987LQG_EQs2Upw9rSAEZHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a6a2d7f9 +18:00:43.576 [XNIO-1 task-2] 987LQG_EQs2Upw9rSAEZHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.576 [XNIO-1 task-2] 987LQG_EQs2Upw9rSAEZHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.577 [XNIO-1 task-2] 987LQG_EQs2Upw9rSAEZHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a6a2d7f9 +18:00:43.597 [XNIO-1 task-2] qQOhOilZTfuV4ZAz3tZWYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.598 [XNIO-1 task-2] qQOhOilZTfuV4ZAz3tZWYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.598 [XNIO-1 task-2] qQOhOilZTfuV4ZAz3tZWYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.598 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec768fa5 +18:00:43.601 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec768fa5 +18:00:43.622 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.622 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.623 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.623 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.624 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.624 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e4981b18-a4a5-4187-90b1-5c6dbf7567e4", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:43.624 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ec768fa5", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:43.624 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.624 [XNIO-1 task-2] n-LfzSr2QMGZiKugm7OxIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.624 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec768fa5 +18:00:43.639 [XNIO-1 task-2] JVNXnCmxSz-JMZzE6OZyhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.639 [XNIO-1 task-2] JVNXnCmxSz-JMZzE6OZyhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.640 [XNIO-1 task-2] JVNXnCmxSz-JMZzE6OZyhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.647 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:93f8f80d +18:00:43.659 [XNIO-1 task-2] -YS2ejY1TBKxHc5gpRbWhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec768fa5 +18:00:43.659 [XNIO-1 task-2] -YS2ejY1TBKxHc5gpRbWhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.659 [XNIO-1 task-2] -YS2ejY1TBKxHc5gpRbWhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.659 [XNIO-1 task-2] -YS2ejY1TBKxHc5gpRbWhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec768fa5 +18:00:43.662 [XNIO-1 task-2] cxEMrMpSREmfTESH5DjTQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.662 [XNIO-1 task-2] cxEMrMpSREmfTESH5DjTQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.663 [XNIO-1 task-2] cxEMrMpSREmfTESH5DjTQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.704 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4db7a8b0-d328-46a4-820a-8b40580d9711 +18:00:43.705 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4db7a8b0-d328-46a4-820a-8b40580d9711 +18:00:43.705 [XNIO-1 task-2] VPXA8v6JSIGlUqfyX-nmtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec768fa5 +18:00:43.705 [XNIO-1 task-2] VPXA8v6JSIGlUqfyX-nmtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.705 [XNIO-1 task-2] VPXA8v6JSIGlUqfyX-nmtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.706 [XNIO-1 task-2] VPXA8v6JSIGlUqfyX-nmtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec768fa5 +18:00:43.710 [XNIO-1 task-2] IP8lvI2PQ0mgx1iOD9lxSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.710 [XNIO-1 task-2] IP8lvI2PQ0mgx1iOD9lxSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.711 [XNIO-1 task-2] IP8lvI2PQ0mgx1iOD9lxSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.711 [XNIO-1 task-2] IP8lvI2PQ0mgx1iOD9lxSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.741 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.741 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.742 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.742 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.742 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.742 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.742 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.743 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "c8220a4e-8f3e-4adc-a9cf-f3ad96f5", {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.743 [XNIO-1 task-2] J7rMoTCQR-u75tCWHejvKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.752 [XNIO-1 task-2] MtzeyovOTVaw9blWKGPiCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.752 [XNIO-1 task-2] MtzeyovOTVaw9blWKGPiCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.752 [XNIO-1 task-2] MtzeyovOTVaw9blWKGPiCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.765 [XNIO-1 task-2] jJvUIQNaRZWUwZrykKo2rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.766 [XNIO-1 task-2] jJvUIQNaRZWUwZrykKo2rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.766 [XNIO-1 task-2] jJvUIQNaRZWUwZrykKo2rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.766 [XNIO-1 task-2] jJvUIQNaRZWUwZrykKo2rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.776 [XNIO-1 task-2] Di-HwiMPQ-io3YaaNC6ThA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.776 [XNIO-1 task-2] Di-HwiMPQ-io3YaaNC6ThA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.776 [XNIO-1 task-2] Di-HwiMPQ-io3YaaNC6ThA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.777 [XNIO-1 task-2] Di-HwiMPQ-io3YaaNC6ThA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.791 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.792 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.792 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.793 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.793 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.793 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.793 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.793 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1b955cbf-69ab-4843-ba58-3eac9d9c", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.793 [XNIO-1 task-2] NKBxSQSsTSq-dVELUmJR_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.795 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ec768fa5 +18:00:43.808 [XNIO-1 task-2] gXpXzXFzTMeecuJY0N2X4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.809 [XNIO-1 task-2] gXpXzXFzTMeecuJY0N2X4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.810 [XNIO-1 task-2] gXpXzXFzTMeecuJY0N2X4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.821 [XNIO-1 task-2] 5aOLQx-0Q6CRm3GND6fI6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.822 [XNIO-1 task-2] 5aOLQx-0Q6CRm3GND6fI6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.822 [XNIO-1 task-2] 5aOLQx-0Q6CRm3GND6fI6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.823 [XNIO-1 task-2] 5aOLQx-0Q6CRm3GND6fI6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.831 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:607cb481 +18:00:43.884 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.888 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.889 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.889 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.889 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.889 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.889 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.890 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "714d6843-8aea-4a76-bd84-14a7c9dd", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.890 [XNIO-1 task-2] ezzUkpOtRjem1tHaSwUgIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.907 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.907 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.907 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.908 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.908 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.908 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.908 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.908 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "c8220a4e-8f3e-4adc-a9cf-f3ad96f5", {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.908 [XNIO-1 task-2] KbE-B2CUSHG_HGcEJsE2Sw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac8a399e","serviceName":"c8220a4e-8f3e-4adc-a9cf-f3ad96f5","serviceDesc":"e113c1ec-a5c1-40bf-9a85-3817f901168f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.921 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.922 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.922 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:43.923 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.923 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.923 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.923 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:43.924 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b955cbf-69ab-4843-ba58-3eac9d9c", {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:43.924 [XNIO-1 task-2] J02F6CSyShyaVlrcD9hoPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ec768fa5","serviceName":"1b955cbf-69ab-4843-ba58-3eac9d9c","serviceDesc":"e4981b18-a4a5-4187-90b1-5c6dbf7567e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.924 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cc830065 +18:00:43.924 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ec768fa5 +18:00:43.941 [XNIO-1 task-2] QzPMHCrATuiFmuyTmPPYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec768fa5 +18:00:43.941 [XNIO-1 task-2] QzPMHCrATuiFmuyTmPPYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.941 [XNIO-1 task-2] QzPMHCrATuiFmuyTmPPYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.941 [XNIO-1 task-2] QzPMHCrATuiFmuyTmPPYGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec768fa5 +18:00:43.957 [XNIO-1 task-2] 5Q8RRqeCRRiKtuLahBX2Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ec768fa5, base path is set to: null +18:00:43.958 [XNIO-1 task-2] 5Q8RRqeCRRiKtuLahBX2Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:43.958 [XNIO-1 task-2] 5Q8RRqeCRRiKtuLahBX2Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:43.958 [XNIO-1 task-2] 5Q8RRqeCRRiKtuLahBX2Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ec768fa5, base path is set to: null +18:00:43.958 [XNIO-1 task-2] 5Q8RRqeCRRiKtuLahBX2Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec768fa5", "ec768fa5", serviceId) +18:00:43.959 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ec768fa5 +18:00:43.972 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.972 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.974 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.974 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.974 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:43.975 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG com.networknt.schema.TypeValidator debug - validate( "517384c1-0161-4fae-badf-4f0fa09792da", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:43.975 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:43.975 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:43.975 [XNIO-1 task-2] DocdN2tWS2Gk9g7N_ikMJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:43.991 [XNIO-1 task-2] muZNjU87TwefkUN23fkzgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c27a319c +18:00:43.991 [XNIO-1 task-2] muZNjU87TwefkUN23fkzgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:43.991 [XNIO-1 task-2] muZNjU87TwefkUN23fkzgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:43.991 [XNIO-1 task-2] muZNjU87TwefkUN23fkzgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c27a319c +18:00:44.000 [XNIO-1 task-2] Zfzx_SIETimgsFs-M6ljYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.000 [XNIO-1 task-2] Zfzx_SIETimgsFs-M6ljYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.001 [XNIO-1 task-2] Zfzx_SIETimgsFs-M6ljYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.017 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f987253 +18:00:44.019 [XNIO-1 task-2] 4LBfbgSwQ2as-dgFzoETPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c27a319c +18:00:44.020 [XNIO-1 task-2] 4LBfbgSwQ2as-dgFzoETPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.020 [XNIO-1 task-2] 4LBfbgSwQ2as-dgFzoETPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.020 [XNIO-1 task-2] 4LBfbgSwQ2as-dgFzoETPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c27a319c +18:00:44.021 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4f987253 +18:00:44.044 [XNIO-1 task-2] wm11PlYCRIWT3yxVrZXOeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f3dafd79, base path is set to: null +18:00:44.045 [XNIO-1 task-2] wm11PlYCRIWT3yxVrZXOeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.045 [XNIO-1 task-2] wm11PlYCRIWT3yxVrZXOeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.045 [XNIO-1 task-2] wm11PlYCRIWT3yxVrZXOeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f3dafd79, base path is set to: null +18:00:44.045 [XNIO-1 task-2] wm11PlYCRIWT3yxVrZXOeg DEBUG com.networknt.schema.TypeValidator debug - validate( "f3dafd79", "f3dafd79", serviceId) +18:00:44.058 [XNIO-1 task-2] _sQrS864RwaGYBT5KHpUbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.058 [XNIO-1 task-2] _sQrS864RwaGYBT5KHpUbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.059 [XNIO-1 task-2] _sQrS864RwaGYBT5KHpUbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.067 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:23b98790 +18:00:44.075 [XNIO-1 task-2] fuiPkueASqGXudZQAXzEig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f3dafd79, base path is set to: null +18:00:44.075 [XNIO-1 task-2] fuiPkueASqGXudZQAXzEig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f3dafd79 +18:00:44.076 [XNIO-1 task-2] fuiPkueASqGXudZQAXzEig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.076 [XNIO-1 task-2] fuiPkueASqGXudZQAXzEig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.076 [XNIO-1 task-2] fuiPkueASqGXudZQAXzEig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f3dafd79, base path is set to: null +18:00:44.077 [XNIO-1 task-2] fuiPkueASqGXudZQAXzEig DEBUG com.networknt.schema.TypeValidator debug - validate( "f3dafd79", "f3dafd79", serviceId) +18:00:44.097 [XNIO-1 task-2] 5A2l0YdxRaWnr2KBPuJrFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.097 [XNIO-1 task-2] 5A2l0YdxRaWnr2KBPuJrFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.098 [XNIO-1 task-2] 5A2l0YdxRaWnr2KBPuJrFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.102 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a7034f3 +18:00:44.123 [XNIO-1 task-2] jDTPk4uhRMSsaplr0WY5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac8a399e, base path is set to: null +18:00:44.123 [XNIO-1 task-2] jDTPk4uhRMSsaplr0WY5Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.123 [XNIO-1 task-2] jDTPk4uhRMSsaplr0WY5Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.124 [XNIO-1 task-2] jDTPk4uhRMSsaplr0WY5Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac8a399e, base path is set to: null +18:00:44.124 [XNIO-1 task-2] jDTPk4uhRMSsaplr0WY5Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "ac8a399e", "ac8a399e", serviceId) +18:00:44.137 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:44.145 [XNIO-1 task-2] N0M7Ml1BTfersJOpJrw7tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.145 [XNIO-1 task-2] N0M7Ml1BTfersJOpJrw7tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.145 [XNIO-1 task-2] N0M7Ml1BTfersJOpJrw7tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:00:44.161 [XNIO-1 task-2] xU5JoE0vRJeCKViSQoPHUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b25b5819, base path is set to: null +18:00:44.161 [XNIO-1 task-2] xU5JoE0vRJeCKViSQoPHUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b25b5819 +18:00:44.161 [XNIO-1 task-2] xU5JoE0vRJeCKViSQoPHUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:00:44.162 [XNIO-1 task-2] xU5JoE0vRJeCKViSQoPHUg DEBUG com.networknt.schema.TypeValidator debug - validate( "b25b5819", "b25b5819", serviceId) +18:00:44.166 [XNIO-1 task-2] 6kcJ55A9RsGj4iGbgHNxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.167 [XNIO-1 task-2] 6kcJ55A9RsGj4iGbgHNxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.167 [XNIO-1 task-2] 6kcJ55A9RsGj4iGbgHNxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.167 [XNIO-1 task-2] 6kcJ55A9RsGj4iGbgHNxSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.199 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.199 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.200 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.200 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.201 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.201 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "bdd6da02-4162-4512-85f2-a45e965cadc4", {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:44.201 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "23b98790", {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:44.201 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.201 [XNIO-1 task-2] Xj5JGyjeQIK-wLd_rtgOzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"23b98790","serviceName":"e06fbc00-a347-4d12-a8b6-8a4ad454","serviceDesc":"bdd6da02-4162-4512-85f2-a45e965cadc4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.204 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:23b98790 +18:00:44.209 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:607cb481 +18:00:44.215 [XNIO-1 task-2] 3waj92NBRn2wujOd0ED3Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b25b5819 +18:00:44.215 [XNIO-1 task-2] 3waj92NBRn2wujOd0ED3Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.215 [XNIO-1 task-2] 3waj92NBRn2wujOd0ED3Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.215 [XNIO-1 task-2] 3waj92NBRn2wujOd0ED3Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b25b5819 +18:00:44.230 [XNIO-1 task-2] Y11lTJx5RZ6GFBPkIsjhww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:44.230 [XNIO-1 task-2] Y11lTJx5RZ6GFBPkIsjhww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.230 [XNIO-1 task-2] Y11lTJx5RZ6GFBPkIsjhww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.231 [XNIO-1 task-2] Y11lTJx5RZ6GFBPkIsjhww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:44.231 [XNIO-1 task-2] Y11lTJx5RZ6GFBPkIsjhww DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", "fe63e39d", serviceId) +18:00:44.237 [XNIO-1 task-2] 5I_nmkvwR0KARaOQCzEpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.237 [XNIO-1 task-2] 5I_nmkvwR0KARaOQCzEpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.237 [XNIO-1 task-2] 5I_nmkvwR0KARaOQCzEpXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.238 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:91f71e91 +18:00:44.252 [XNIO-1 task-2] HUb1zuL0RAa1azts_5D0Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.252 [XNIO-1 task-2] HUb1zuL0RAa1azts_5D0Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.252 [XNIO-1 task-2] HUb1zuL0RAa1azts_5D0Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.268 [XNIO-1 task-2] m1D1VxNdSxmM0jUImzhjJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.268 [XNIO-1 task-2] m1D1VxNdSxmM0jUImzhjJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.268 [XNIO-1 task-2] m1D1VxNdSxmM0jUImzhjJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.269 [XNIO-1 task-2] m1D1VxNdSxmM0jUImzhjJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.285 [XNIO-1 task-2] k3oOV8XwRGKsNf-5T_in9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54e80bd1, base path is set to: null +18:00:44.285 [XNIO-1 task-2] k3oOV8XwRGKsNf-5T_in9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.285 [XNIO-1 task-2] k3oOV8XwRGKsNf-5T_in9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.286 [XNIO-1 task-2] k3oOV8XwRGKsNf-5T_in9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54e80bd1, base path is set to: null +18:00:44.286 [XNIO-1 task-2] k3oOV8XwRGKsNf-5T_in9w DEBUG com.networknt.schema.TypeValidator debug - validate( "54e80bd1", "54e80bd1", serviceId) +18:00:44.302 [XNIO-1 task-2] dkDWPzDhQIC9wIBtiPOfVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23b98790 +18:00:44.303 [XNIO-1 task-2] dkDWPzDhQIC9wIBtiPOfVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.303 [XNIO-1 task-2] dkDWPzDhQIC9wIBtiPOfVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.303 [XNIO-1 task-2] dkDWPzDhQIC9wIBtiPOfVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23b98790 +18:00:44.304 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:23b98790 +18:00:44.313 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.313 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.313 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.314 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.314 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.314 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.314 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.314 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG com.networknt.schema.TypeValidator debug - validate( "8f61015c-fec9-4f93-8de5-bbdf4b0d", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:44.314 [XNIO-1 task-2] 8uvMPyuHRZGHLRt95Z8v4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.315 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a7034f3 +18:00:44.330 [XNIO-1 task-2] 1Lqe0U_hSDSw7_sRTkbg2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91f71e91, base path is set to: null +18:00:44.332 [XNIO-1 task-2] 1Lqe0U_hSDSw7_sRTkbg2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.332 [XNIO-1 task-2] 1Lqe0U_hSDSw7_sRTkbg2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.333 [XNIO-1 task-2] 1Lqe0U_hSDSw7_sRTkbg2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91f71e91, base path is set to: null +18:00:44.333 [XNIO-1 task-2] 1Lqe0U_hSDSw7_sRTkbg2g DEBUG com.networknt.schema.TypeValidator debug - validate( "91f71e91", "91f71e91", serviceId) +18:00:44.340 [XNIO-1 task-2] oBlb5MUZTi25KiMOmitEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/91f71e91 +18:00:44.340 [XNIO-1 task-2] oBlb5MUZTi25KiMOmitEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.340 [XNIO-1 task-2] oBlb5MUZTi25KiMOmitEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.341 [XNIO-1 task-2] oBlb5MUZTi25KiMOmitEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/91f71e91 +18:00:44.344 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.344 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.345 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.346 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.346 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.346 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.346 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.346 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2da4aff7-3b78-449d-bdc7-3b096b8e", {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:44.346 [XNIO-1 task-2] Dt_RBLmoTHy-Oqe8ZdamTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"91f71e91","serviceName":"2da4aff7-3b78-449d-bdc7-3b096b8e","serviceDesc":"5a5aaf7f-90bc-4f17-8163-617dc1e2cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.348 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:91f71e91 +18:00:44.361 [XNIO-1 task-2] qVRFWogjS8mLO6AX_-P2HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.361 [XNIO-1 task-2] qVRFWogjS8mLO6AX_-P2HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.361 [XNIO-1 task-2] qVRFWogjS8mLO6AX_-P2HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.362 [XNIO-1 task-2] qVRFWogjS8mLO6AX_-P2HA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.378 [XNIO-1 task-2] UXiXeKnVRGGjYy2NCMu8vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.379 [XNIO-1 task-2] UXiXeKnVRGGjYy2NCMu8vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.379 [XNIO-1 task-2] UXiXeKnVRGGjYy2NCMu8vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.384 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ae763003-7b00-4ad7-9e91-0a8fc457063b +18:00:44.394 [XNIO-1 task-2] LJS4QA0zQIiIbcnd7qUx2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.394 [XNIO-1 task-2] LJS4QA0zQIiIbcnd7qUx2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.394 [XNIO-1 task-2] LJS4QA0zQIiIbcnd7qUx2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.397 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:447dfe45-f72b-4e85-b05e-31ebdbdb5fd6 +18:00:44.414 [XNIO-1 task-2] 7zjVYA9mTouFRhdNjwzf_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91f71e91, base path is set to: null +18:00:44.414 [XNIO-1 task-2] 7zjVYA9mTouFRhdNjwzf_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.414 [XNIO-1 task-2] 7zjVYA9mTouFRhdNjwzf_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.414 [XNIO-1 task-2] 7zjVYA9mTouFRhdNjwzf_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/91f71e91, base path is set to: null +18:00:44.415 [XNIO-1 task-2] 7zjVYA9mTouFRhdNjwzf_A DEBUG com.networknt.schema.TypeValidator debug - validate( "91f71e91", "91f71e91", serviceId) +18:00:44.426 [XNIO-1 task-2] DBL1UcPgQQudtZrs5EEF6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07199127, base path is set to: null +18:00:44.427 [XNIO-1 task-2] DBL1UcPgQQudtZrs5EEF6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.427 [XNIO-1 task-2] DBL1UcPgQQudtZrs5EEF6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.427 [XNIO-1 task-2] DBL1UcPgQQudtZrs5EEF6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07199127, base path is set to: null +18:00:44.427 [XNIO-1 task-2] DBL1UcPgQQudtZrs5EEF6w DEBUG com.networknt.schema.TypeValidator debug - validate( "07199127", "07199127", serviceId) +18:00:44.430 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:607cb481 +18:00:44.447 [XNIO-1 task-2] 8kbuTnfQSdyQLtu9NsLoHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/91f71e91 +18:00:44.447 [XNIO-1 task-2] 8kbuTnfQSdyQLtu9NsLoHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.447 [XNIO-1 task-2] 8kbuTnfQSdyQLtu9NsLoHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.448 [XNIO-1 task-2] 8kbuTnfQSdyQLtu9NsLoHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/91f71e91 +18:00:44.448 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:91f71e91 +18:00:44.451 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c14ad954-c1cf-41e8-8152-026449406592 +18:00:44.453 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c14ad954-c1cf-41e8-8152-026449406592 +18:00:44.460 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.460 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.460 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f987253 +18:00:44.460 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.461 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.461 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.461 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG com.networknt.schema.TypeValidator debug - validate( "d2593006-2a90-4106-b7ee-e2be216d0291", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:44.461 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG com.networknt.schema.TypeValidator debug - validate( "7a7034f3", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:44.461 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.461 [XNIO-1 task-2] OBoQ9m85Q8azv5MzTt6huw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.461 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a7034f3 +18:00:44.501 [XNIO-1 task-2] E-SC61jSQYWEjJmlg-7SGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/78acba97 +18:00:44.501 [XNIO-1 task-2] E-SC61jSQYWEjJmlg-7SGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.501 [XNIO-1 task-2] E-SC61jSQYWEjJmlg-7SGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.501 [XNIO-1 task-2] E-SC61jSQYWEjJmlg-7SGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/78acba97 +18:00:44.518 [XNIO-1 task-2] bbKi4ScuR5WYw5kTQIlIAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.519 [XNIO-1 task-2] bbKi4ScuR5WYw5kTQIlIAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.519 [XNIO-1 task-2] bbKi4ScuR5WYw5kTQIlIAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.520 [XNIO-1 task-2] bbKi4ScuR5WYw5kTQIlIAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.561 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:607cb481 +18:00:44.571 [XNIO-1 task-2] vxWn3nkPScyVJp9b_DrQAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/78acba97, base path is set to: null +18:00:44.572 [XNIO-1 task-2] vxWn3nkPScyVJp9b_DrQAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.572 [XNIO-1 task-2] vxWn3nkPScyVJp9b_DrQAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.572 [XNIO-1 task-2] vxWn3nkPScyVJp9b_DrQAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/78acba97, base path is set to: null +18:00:44.572 [XNIO-1 task-2] vxWn3nkPScyVJp9b_DrQAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78acba97", "78acba97", serviceId) +18:00:44.589 [XNIO-1 task-2] 3HzYznl-TrqPLevPpCHeWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe63e39d +18:00:44.590 [XNIO-1 task-2] 3HzYznl-TrqPLevPpCHeWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.590 [XNIO-1 task-2] 3HzYznl-TrqPLevPpCHeWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.590 [XNIO-1 task-2] 3HzYznl-TrqPLevPpCHeWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fe63e39d +18:00:44.593 [XNIO-1 task-2] YxTz4Uo3TNisQUcfeZfTTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:44.593 [XNIO-1 task-2] YxTz4Uo3TNisQUcfeZfTTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.593 [XNIO-1 task-2] YxTz4Uo3TNisQUcfeZfTTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.594 [XNIO-1 task-2] YxTz4Uo3TNisQUcfeZfTTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:44.594 [XNIO-1 task-2] YxTz4Uo3TNisQUcfeZfTTg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", "fe63e39d", serviceId) +18:00:44.598 [XNIO-1 task-2] YaHSIcR1TXi0-ftYRknYIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.598 [XNIO-1 task-2] YaHSIcR1TXi0-ftYRknYIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.598 [XNIO-1 task-2] YaHSIcR1TXi0-ftYRknYIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.598 [XNIO-1 task-2] YaHSIcR1TXi0-ftYRknYIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.614 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.614 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.614 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.615 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.615 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.615 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "517384c1-0161-4fae-badf-4f0fa09792da", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:44.615 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:44.615 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.615 [XNIO-1 task-2] Or6KDtWiSui84BjuRw0wEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.636 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.637 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.637 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.637 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.638 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.638 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG com.networknt.schema.TypeValidator debug - validate( "517384c1-0161-4fae-badf-4f0fa09792da", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:44.638 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:44.638 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.638 [XNIO-1 task-2] 6tP70PRyTRG9G5UBWqvK_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.652 [XNIO-1 task-2] Zk-NffdXTr-xDTx0N4PloA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.652 [XNIO-1 task-2] Zk-NffdXTr-xDTx0N4PloA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.652 [XNIO-1 task-2] Zk-NffdXTr-xDTx0N4PloA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.653 [XNIO-1 task-2] Zk-NffdXTr-xDTx0N4PloA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.675 [XNIO-1 task-2] M6e7h4CcT_-lgDOei0QWqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a7034f3, base path is set to: null +18:00:44.675 [XNIO-1 task-2] M6e7h4CcT_-lgDOei0QWqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.675 [XNIO-1 task-2] M6e7h4CcT_-lgDOei0QWqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.675 [XNIO-1 task-2] M6e7h4CcT_-lgDOei0QWqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a7034f3, base path is set to: null +18:00:44.676 [XNIO-1 task-2] M6e7h4CcT_-lgDOei0QWqA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a7034f3", "7a7034f3", serviceId) +18:00:44.683 [XNIO-1 task-2] 3OXmrYGdSIGetph9hkIFGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.683 [XNIO-1 task-2] 3OXmrYGdSIGetph9hkIFGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.683 [XNIO-1 task-2] 3OXmrYGdSIGetph9hkIFGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.685 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ac0f73e3-cc2e-4a6f-95c9-f5107ba9f445 +18:00:44.701 [XNIO-1 task-2] IPogjvyBTKu0jmoh_xwcGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.701 [XNIO-1 task-2] IPogjvyBTKu0jmoh_xwcGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.702 [XNIO-1 task-2] IPogjvyBTKu0jmoh_xwcGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.721 [XNIO-1 task-2] rI4buy07SeKaYJI_6rKXvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58467c67 +18:00:44.721 [XNIO-1 task-2] rI4buy07SeKaYJI_6rKXvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.722 [XNIO-1 task-2] rI4buy07SeKaYJI_6rKXvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.722 [XNIO-1 task-2] rI4buy07SeKaYJI_6rKXvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/58467c67 +18:00:44.737 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:90eee918 +18:00:44.742 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:90eee918 +18:00:44.743 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.743 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.743 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.744 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.744 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.744 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG com.networknt.schema.TypeValidator debug - validate( "e35eeab6-8d0d-4c9a-969e-e98239641c6e", {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:44.744 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG com.networknt.schema.TypeValidator debug - validate( "e680f042", {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:44.745 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.746 [XNIO-1 task-2] hjoNBJlLTHyjNoYRIjHSRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.764 [XNIO-1 task-2] -HkHct0RSTC0yTxxGkMcEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:44.764 [XNIO-1 task-2] -HkHct0RSTC0yTxxGkMcEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.764 [XNIO-1 task-2] -HkHct0RSTC0yTxxGkMcEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.764 [XNIO-1 task-2] -HkHct0RSTC0yTxxGkMcEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:44.772 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.772 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.772 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.773 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.773 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.773 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.773 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e7537391-6104-4f7b-b65d-ef5bac21", {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:44.773 [XNIO-1 task-2] e4Ux7TscTgCDfrp0aTpxqQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e680f042","serviceName":"e7537391-6104-4f7b-b65d-ef5bac21","serviceDesc":"e35eeab6-8d0d-4c9a-969e-e98239641c6e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.796 [XNIO-1 task-2] Szku3z1EQ6KYJ8yfMcASGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.796 [XNIO-1 task-2] Szku3z1EQ6KYJ8yfMcASGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.796 [XNIO-1 task-2] Szku3z1EQ6KYJ8yfMcASGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.796 [XNIO-1 task-2] Szku3z1EQ6KYJ8yfMcASGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.812 [XNIO-1 task-2] I9d59rr_Sriclr4MbjFuCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.812 [XNIO-1 task-2] I9d59rr_Sriclr4MbjFuCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.813 [XNIO-1 task-2] I9d59rr_Sriclr4MbjFuCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.813 [XNIO-1 task-2] I9d59rr_Sriclr4MbjFuCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.827 [XNIO-1 task-2] aRhtWQvMQb6rXV7FwAqkRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.827 [XNIO-1 task-2] aRhtWQvMQb6rXV7FwAqkRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.828 [XNIO-1 task-2] aRhtWQvMQb6rXV7FwAqkRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.828 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:98fe52b2 +18:00:44.830 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:98fe52b2 +18:00:44.836 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:607cb481 +18:00:44.840 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.840 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.840 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.841 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.841 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.841 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG com.networknt.schema.TypeValidator debug - validate( "d2593006-2a90-4106-b7ee-e2be216d0291", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:44.841 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG com.networknt.schema.TypeValidator debug - validate( "7a7034f3", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:44.841 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:44.841 [XNIO-1 task-2] n-JnAh7ARkCJt5_jeuq3zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.842 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a7034f3 +18:00:44.851 [XNIO-1 task-2] eftzzkXNSeGxem8MMwj6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.851 [XNIO-1 task-2] eftzzkXNSeGxem8MMwj6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.851 [XNIO-1 task-2] eftzzkXNSeGxem8MMwj6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.867 [XNIO-1 task-2] sL8pcDZ5Stu2faqgA9dgpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e680f042 +18:00:44.867 [XNIO-1 task-2] sL8pcDZ5Stu2faqgA9dgpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.867 [XNIO-1 task-2] sL8pcDZ5Stu2faqgA9dgpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.867 [XNIO-1 task-2] sL8pcDZ5Stu2faqgA9dgpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e680f042 +18:00:44.873 [XNIO-1 task-2] dDB3mIS4QI-KNNEmiGYQkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.873 [XNIO-1 task-2] dDB3mIS4QI-KNNEmiGYQkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.874 [XNIO-1 task-2] dDB3mIS4QI-KNNEmiGYQkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.875 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:461bb52c +18:00:44.877 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:461bb52c +18:00:44.887 [XNIO-1 task-2] Yt7D8wDUQCeSgdplM07RQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e680f042 +18:00:44.887 [XNIO-1 task-2] Yt7D8wDUQCeSgdplM07RQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.887 [XNIO-1 task-2] Yt7D8wDUQCeSgdplM07RQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.888 [XNIO-1 task-2] Yt7D8wDUQCeSgdplM07RQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e680f042 +18:00:44.896 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bd48f9c3-e542-40f6-a7ae-a614a5ca3d0c +18:00:44.904 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.904 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.905 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.906 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.906 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.906 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.906 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.906 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9b9be8cb-b417-4d05-825a-2e21dddd", {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:44.906 [XNIO-1 task-2] a4NI3heZTR21yaUgJCiudQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.907 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c14ad954-c1cf-41e8-8152-026449406592 +18:00:44.919 [XNIO-1 task-2] 3xThF10rQyKrB2YTdu6l9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/461bb52c, base path is set to: null +18:00:44.920 [XNIO-1 task-2] 3xThF10rQyKrB2YTdu6l9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.920 [XNIO-1 task-2] 3xThF10rQyKrB2YTdu6l9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.920 [XNIO-1 task-2] 3xThF10rQyKrB2YTdu6l9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/461bb52c, base path is set to: null +18:00:44.921 [XNIO-1 task-2] 3xThF10rQyKrB2YTdu6l9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "461bb52c", "461bb52c", serviceId) +18:00:44.922 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:461bb52c +18:00:44.937 [XNIO-1 task-2] cJg7FPH3RkK_68UEJX_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:44.937 [XNIO-1 task-2] cJg7FPH3RkK_68UEJX_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:44.937 [XNIO-1 task-2] cJg7FPH3RkK_68UEJX_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:44.938 [XNIO-1 task-2] cJg7FPH3RkK_68UEJX_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:44.944 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:90eee918 +18:00:44.945 [XNIO-1 task-2] I-pA57fMT1SW5TmbVouO9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.945 [XNIO-1 task-2] I-pA57fMT1SW5TmbVouO9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.945 [XNIO-1 task-2] I-pA57fMT1SW5TmbVouO9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.946 [XNIO-1 task-2] I-pA57fMT1SW5TmbVouO9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.961 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.961 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.961 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.962 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.962 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.962 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.962 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.962 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "9b9be8cb-b417-4d05-825a-2e21dddd", {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:44.962 [XNIO-1 task-2] GVwxBFQIRXmYOYs1X3mjKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"245b303b","serviceName":"9b9be8cb-b417-4d05-825a-2e21dddd","serviceDesc":"46699407-a981-4970-a851-af7506e10ea4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.977 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.977 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.978 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:44.978 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.978 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.979 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:44.979 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:44.979 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG com.networknt.schema.TypeValidator debug - validate( "714d6843-8aea-4a76-bd84-14a7c9dd", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:44.979 [XNIO-1 task-2] WF1NkwGATkmlfSl1DJ61uA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:44.992 [XNIO-1 task-2] kw1IREiXQQmW1OzRyQGdhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/98fe52b2, base path is set to: null +18:00:44.992 [XNIO-1 task-2] kw1IREiXQQmW1OzRyQGdhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:44.992 [XNIO-1 task-2] kw1IREiXQQmW1OzRyQGdhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:44.992 [XNIO-1 task-2] kw1IREiXQQmW1OzRyQGdhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/98fe52b2, base path is set to: null +18:00:44.992 [XNIO-1 task-2] kw1IREiXQQmW1OzRyQGdhA DEBUG com.networknt.schema.TypeValidator debug - validate( "98fe52b2", "98fe52b2", serviceId) +18:00:45.002 [XNIO-1 task-2] tG-GVZQmT1iOVRgpHL-Bzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.002 [XNIO-1 task-2] tG-GVZQmT1iOVRgpHL-Bzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.002 [XNIO-1 task-2] tG-GVZQmT1iOVRgpHL-Bzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.003 [XNIO-1 task-2] tG-GVZQmT1iOVRgpHL-Bzg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.026 [XNIO-1 task-2] Te79Z9jBT82o7dpfjeqdoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.027 [XNIO-1 task-2] Te79Z9jBT82o7dpfjeqdoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.027 [XNIO-1 task-2] Te79Z9jBT82o7dpfjeqdoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.046 [XNIO-1 task-2] 3XWpXlXiROyxApBehLzZow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.046 [XNIO-1 task-2] 3XWpXlXiROyxApBehLzZow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.046 [XNIO-1 task-2] 3XWpXlXiROyxApBehLzZow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.047 [XNIO-1 task-2] 3XWpXlXiROyxApBehLzZow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.082 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.083 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.083 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.084 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.084 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.084 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e898360b-88ef-44f1-9def-46b0dc6d3b1f", {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:45.086 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "98fe52b2", {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:45.086 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.086 [XNIO-1 task-2] y3GAajx7RGmIEDjZ3jg_fQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.087 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:98fe52b2 +18:00:45.097 [XNIO-1 task-2] RbfP4KjDS_6lpsFGxSzUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.097 [XNIO-1 task-2] RbfP4KjDS_6lpsFGxSzUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.098 [XNIO-1 task-2] RbfP4KjDS_6lpsFGxSzUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.112 [XNIO-1 task-2] gu8U9RH6TTyAEjUzFIcN3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7f719d84, base path is set to: null +18:00:45.112 [XNIO-1 task-2] gu8U9RH6TTyAEjUzFIcN3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.112 [XNIO-1 task-2] gu8U9RH6TTyAEjUzFIcN3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:45.113 [XNIO-1 task-2] gu8U9RH6TTyAEjUzFIcN3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7f719d84, base path is set to: null +18:00:45.113 [XNIO-1 task-2] gu8U9RH6TTyAEjUzFIcN3g DEBUG com.networknt.schema.TypeValidator debug - validate( "7f719d84", "7f719d84", serviceId) +18:00:45.116 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.116 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.117 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.117 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.117 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.117 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d2593006-2a90-4106-b7ee-e2be216d0291", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:45.118 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a7034f3", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:45.118 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.118 [XNIO-1 task-2] ckjb0zS5TE2Ay83asw2nXQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.122 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a7034f3 +18:00:45.134 [XNIO-1 task-2] Q62jRY6-QfOhkutp0_klhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.134 [XNIO-1 task-2] Q62jRY6-QfOhkutp0_klhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.135 [XNIO-1 task-2] Q62jRY6-QfOhkutp0_klhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.149 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.149 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.150 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.150 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.150 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.150 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG com.networknt.schema.TypeValidator debug - validate( "517384c1-0161-4fae-badf-4f0fa09792da", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:45.150 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:45.150 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.150 [XNIO-1 task-2] 3R4CidPRTbOm1BfW6OzPww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.168 [XNIO-1 task-2] tetrGfgVRg6JV-5e-_nlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:45.168 [XNIO-1 task-2] tetrGfgVRg6JV-5e-_nlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.168 [XNIO-1 task-2] tetrGfgVRg6JV-5e-_nlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.168 [XNIO-1 task-2] tetrGfgVRg6JV-5e-_nlqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:45.200 [XNIO-1 task-2] IgnwHtaaT4WtTudqCUanNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d1c82ff3, base path is set to: null +18:00:45.200 [XNIO-1 task-2] IgnwHtaaT4WtTudqCUanNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.200 [XNIO-1 task-2] IgnwHtaaT4WtTudqCUanNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:45.200 [XNIO-1 task-2] IgnwHtaaT4WtTudqCUanNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d1c82ff3, base path is set to: null +18:00:45.200 [XNIO-1 task-2] IgnwHtaaT4WtTudqCUanNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c82ff3", "d1c82ff3", serviceId) +18:00:45.205 [XNIO-1 task-2] tY22_D81Spen2NDofshPmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:45.205 [XNIO-1 task-2] tY22_D81Spen2NDofshPmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.205 [XNIO-1 task-2] tY22_D81Spen2NDofshPmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.205 [XNIO-1 task-2] tY22_D81Spen2NDofshPmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:45.209 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.209 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.210 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.210 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.210 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.210 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.210 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.210 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG com.networknt.schema.TypeValidator debug - validate( "d99a00f5-8f9e-4bf7-8e90-fa7bc0d8", {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:45.211 [XNIO-1 task-2] z3oS71U4Rr-uiaVI2PbK4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"98fe52b2","serviceName":"d99a00f5-8f9e-4bf7-8e90-fa7bc0d8","serviceDesc":"e898360b-88ef-44f1-9def-46b0dc6d3b1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.212 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:98fe52b2 +18:00:45.223 [XNIO-1 task-2] Pk4qOShYTxihBMEgel_zeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d1c82ff3, base path is set to: null +18:00:45.223 [XNIO-1 task-2] Pk4qOShYTxihBMEgel_zeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.223 [XNIO-1 task-2] Pk4qOShYTxihBMEgel_zeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:45.223 [XNIO-1 task-2] Pk4qOShYTxihBMEgel_zeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d1c82ff3, base path is set to: null +18:00:45.224 [XNIO-1 task-2] Pk4qOShYTxihBMEgel_zeA DEBUG com.networknt.schema.TypeValidator debug - validate( "d1c82ff3", "d1c82ff3", serviceId) +18:00:45.270 [XNIO-1 task-2] 8_XDtt47RcinSmJVdgbjbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.271 [XNIO-1 task-2] 8_XDtt47RcinSmJVdgbjbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.271 [XNIO-1 task-2] 8_XDtt47RcinSmJVdgbjbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.274 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7a9fadb5-142d-43fa-90e5-e7eb306f1c57 +18:00:45.288 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:90eee918 +18:00:45.301 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1aa88a94-4a2c-4fb8-b89b-1f526db44b40 +18:00:45.302 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1aa88a94-4a2c-4fb8-b89b-1f526db44b40 +18:00:45.303 [XNIO-1 task-2] ZkHXIWpSTQy991baL_oWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:45.303 [XNIO-1 task-2] ZkHXIWpSTQy991baL_oWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.303 [XNIO-1 task-2] ZkHXIWpSTQy991baL_oWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.303 [XNIO-1 task-2] ZkHXIWpSTQy991baL_oWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/245b303b +18:00:45.317 [XNIO-1 task-2] gM7Zf6gYRtGNUOSBwS2YGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.317 [XNIO-1 task-2] gM7Zf6gYRtGNUOSBwS2YGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.318 [XNIO-1 task-2] gM7Zf6gYRtGNUOSBwS2YGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.318 [XNIO-1 task-2] gM7Zf6gYRtGNUOSBwS2YGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.323 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1aa88a94-4a2c-4fb8-b89b-1f526db44b40 +18:00:45.329 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:90eee918 +18:00:45.365 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.365 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.365 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.366 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.366 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.366 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6d26e895-2196-4c17-89e1-0598deec84d6", {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:45.366 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f1a2a34", {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:45.366 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.366 [XNIO-1 task-2] WmlhrVHuQvael2UnI3qstQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3f1a2a34","serviceName":"a2228607-8133-447c-91a1-c1471ded","serviceDesc":"6d26e895-2196-4c17-89e1-0598deec84d6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.378 [XNIO-1 task-2] x449F-K0RFy6wkkmJqTfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/98fe52b2 +18:00:45.378 [XNIO-1 task-2] x449F-K0RFy6wkkmJqTfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.378 [XNIO-1 task-2] x449F-K0RFy6wkkmJqTfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.378 [XNIO-1 task-2] x449F-K0RFy6wkkmJqTfbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/98fe52b2 +18:00:45.379 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:98fe52b2 +18:00:45.388 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:90eee918 +18:00:45.400 [XNIO-1 task-2] vktiKfRKRnC_lqFBRfKXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.400 [XNIO-1 task-2] vktiKfRKRnC_lqFBRfKXLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.400 [XNIO-1 task-2] vktiKfRKRnC_lqFBRfKXLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.401 [XNIO-1 task-2] vktiKfRKRnC_lqFBRfKXLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.424 [XNIO-1 task-2] m0f_ItfFSfujsHukv9uSDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28246658, base path is set to: null +18:00:45.424 [XNIO-1 task-2] m0f_ItfFSfujsHukv9uSDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.424 [XNIO-1 task-2] m0f_ItfFSfujsHukv9uSDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:45.424 [XNIO-1 task-2] m0f_ItfFSfujsHukv9uSDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/28246658, base path is set to: null +18:00:45.425 [XNIO-1 task-2] m0f_ItfFSfujsHukv9uSDA DEBUG com.networknt.schema.TypeValidator debug - validate( "28246658", "28246658", serviceId) +18:00:45.442 [XNIO-1 task-2] EjV4Dgy4ROyQ4gj9j2O97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.442 [XNIO-1 task-2] EjV4Dgy4ROyQ4gj9j2O97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.442 [XNIO-1 task-2] EjV4Dgy4ROyQ4gj9j2O97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.443 [XNIO-1 task-2] EjV4Dgy4ROyQ4gj9j2O97g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.505 [XNIO-1 task-2] bQVc0SN7QOaxdwoHCliPag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f719d84 +18:00:45.505 [XNIO-1 task-2] bQVc0SN7QOaxdwoHCliPag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.505 [XNIO-1 task-2] bQVc0SN7QOaxdwoHCliPag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.506 [XNIO-1 task-2] bQVc0SN7QOaxdwoHCliPag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7f719d84 +18:00:45.518 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.519 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.519 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.520 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.521 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.521 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.521 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.521 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG com.networknt.schema.TypeValidator debug - validate( "8f61015c-fec9-4f93-8de5-bbdf4b0d", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:45.521 [XNIO-1 task-2] 25Z2FFJ-Rs-Y21GSFE3MUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.522 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a7034f3 +18:00:45.532 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.532 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.533 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.533 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.533 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.533 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.533 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.536 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG com.networknt.schema.TypeValidator debug - validate( "714d6843-8aea-4a76-bd84-14a7c9dd", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:45.536 [XNIO-1 task-2] rejrIbwFTfuUCEp4R54HCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.544 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:90eee918 +18:00:45.552 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.552 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.552 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.553 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.553 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.553 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.553 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.553 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG com.networknt.schema.TypeValidator debug - validate( "ecab8cc8-f770-4150-bff8-167a7017", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:45.553 [XNIO-1 task-2] ja4crT6gSoesGOqgokVKbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.565 [XNIO-1 task-2] OENlNf8aSMyo_8OwGlfwIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f1a2a34, base path is set to: null +18:00:45.565 [XNIO-1 task-2] OENlNf8aSMyo_8OwGlfwIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.565 [XNIO-1 task-2] OENlNf8aSMyo_8OwGlfwIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:45.566 [XNIO-1 task-2] OENlNf8aSMyo_8OwGlfwIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3f1a2a34, base path is set to: null +18:00:45.566 [XNIO-1 task-2] OENlNf8aSMyo_8OwGlfwIw DEBUG com.networknt.schema.TypeValidator debug - validate( "3f1a2a34", "3f1a2a34", serviceId) +18:00:45.571 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.571 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.572 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.572 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.572 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.572 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG com.networknt.schema.TypeValidator debug - validate( "d2593006-2a90-4106-b7ee-e2be216d0291", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:45.572 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a7034f3", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:45.572 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.572 [XNIO-1 task-2] hlcKNN2pTLOkIhQLbxmNjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a7034f3","serviceName":"8f61015c-fec9-4f93-8de5-bbdf4b0d","serviceDesc":"d2593006-2a90-4106-b7ee-e2be216d0291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.573 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a7034f3 +18:00:45.582 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.582 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.582 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.583 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.583 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.583 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG com.networknt.schema.TypeValidator debug - validate( "e77f31d7-4b9c-4c6e-8884-19b5044fd935", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:45.583 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG com.networknt.schema.TypeValidator debug - validate( "805a4cfd", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:45.583 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.583 [XNIO-1 task-2] -ekehHxFQdK6NFHrEhxokA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.617 [XNIO-1 task-2] j75LebN8TPmv8-1-9mVAaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.617 [XNIO-1 task-2] j75LebN8TPmv8-1-9mVAaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.617 [XNIO-1 task-2] j75LebN8TPmv8-1-9mVAaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.618 [XNIO-1 task-2] j75LebN8TPmv8-1-9mVAaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.635 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:90eee918 +18:00:45.635 [XNIO-1 task-2] OQK535gGSY65mK1b4_AA5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.635 [XNIO-1 task-2] OQK535gGSY65mK1b4_AA5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.636 [XNIO-1 task-2] OQK535gGSY65mK1b4_AA5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.637 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:06ed557a +18:00:45.648 [XNIO-1 task-2] qmvy0B9xSzih8iRgJSGofw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:45.648 [XNIO-1 task-2] qmvy0B9xSzih8iRgJSGofw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.648 [XNIO-1 task-2] qmvy0B9xSzih8iRgJSGofw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:45.648 [XNIO-1 task-2] qmvy0B9xSzih8iRgJSGofw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:45.648 [XNIO-1 task-2] qmvy0B9xSzih8iRgJSGofw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", "fe63e39d", serviceId) +18:00:45.652 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.652 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.653 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.653 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.653 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.653 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG com.networknt.schema.TypeValidator debug - validate( "517384c1-0161-4fae-badf-4f0fa09792da", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:45.653 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:45.653 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:45.653 [XNIO-1 task-2] 3vfym0vtRjaDjTRXsr5Vbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.664 [XNIO-1 task-2] oR4WKOcNQ720FZZ7NWLdTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.664 [XNIO-1 task-2] oR4WKOcNQ720FZZ7NWLdTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.664 [XNIO-1 task-2] oR4WKOcNQ720FZZ7NWLdTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.682 [XNIO-1 task-2] Et1hWy4ITyurii2kNFtyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f1a2a34 +18:00:45.682 [XNIO-1 task-2] Et1hWy4ITyurii2kNFtyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.682 [XNIO-1 task-2] Et1hWy4ITyurii2kNFtyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.683 [XNIO-1 task-2] Et1hWy4ITyurii2kNFtyJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3f1a2a34 +18:00:45.694 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.694 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.694 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.696 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.696 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.696 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.696 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.696 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG com.networknt.schema.TypeValidator debug - validate( "ecab8cc8-f770-4150-bff8-167a7017", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:45.696 [XNIO-1 task-2] fdS2amLESC-xO0hVAb8mgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.712 [XNIO-1 task-2] HN6ZG1RjSoGNUaR88DvupA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.716 [XNIO-1 task-2] HN6ZG1RjSoGNUaR88DvupA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.716 [XNIO-1 task-2] HN6ZG1RjSoGNUaR88DvupA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.716 [XNIO-1 task-2] HN6ZG1RjSoGNUaR88DvupA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.722 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:204976f0-4079-4f18-a187-09d668b4cf6e +18:00:45.732 [XNIO-1 task-2] 2hB-PfC4Tr2WS-KPdcMxHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.732 [XNIO-1 task-2] 2hB-PfC4Tr2WS-KPdcMxHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.733 [XNIO-1 task-2] 2hB-PfC4Tr2WS-KPdcMxHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.741 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:204976f0-4079-4f18-a187-09d668b4cf6e +18:00:45.748 [XNIO-1 task-2] EhTl83YpSHiUAePteV_PIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.748 [XNIO-1 task-2] EhTl83YpSHiUAePteV_PIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.748 [XNIO-1 task-2] EhTl83YpSHiUAePteV_PIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.751 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e9516620-2e12-4af4-9125-f5058c04fc8b +18:00:45.766 [XNIO-1 task-2] N8aoc6yGRKSFaUvgChgtWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.766 [XNIO-1 task-2] N8aoc6yGRKSFaUvgChgtWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.766 [XNIO-1 task-2] N8aoc6yGRKSFaUvgChgtWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.767 [XNIO-1 task-2] N8aoc6yGRKSFaUvgChgtWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.781 [XNIO-1 task-2] u5JGPyRbT_aN_Jzm32hLKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.781 [XNIO-1 task-2] u5JGPyRbT_aN_Jzm32hLKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.781 [XNIO-1 task-2] u5JGPyRbT_aN_Jzm32hLKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.795 [XNIO-1 task-2] HxFJjah9T2iUR9_flP_TwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.795 [XNIO-1 task-2] HxFJjah9T2iUR9_flP_TwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.795 [XNIO-1 task-2] HxFJjah9T2iUR9_flP_TwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.796 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:564e3b37 +18:00:45.802 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:564e3b37 +18:00:45.810 [XNIO-1 task-2] mLL4ieudRcCqXuK0NYbE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a7034f3 +18:00:45.810 [XNIO-1 task-2] mLL4ieudRcCqXuK0NYbE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.810 [XNIO-1 task-2] mLL4ieudRcCqXuK0NYbE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.810 [XNIO-1 task-2] mLL4ieudRcCqXuK0NYbE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a7034f3 +18:00:45.811 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7a7034f3 +18:00:45.821 [XNIO-1 task-2] AxPZi0RyTo-HKeKNpohZwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.821 [XNIO-1 task-2] AxPZi0RyTo-HKeKNpohZwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.821 [XNIO-1 task-2] AxPZi0RyTo-HKeKNpohZwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.822 [XNIO-1 task-2] AxPZi0RyTo-HKeKNpohZwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.827 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:90eee918 +18:00:45.840 [XNIO-1 task-2] IxJ6LogUSXuDLNeKraifpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:45.840 [XNIO-1 task-2] IxJ6LogUSXuDLNeKraifpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.840 [XNIO-1 task-2] IxJ6LogUSXuDLNeKraifpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:45.840 [XNIO-1 task-2] IxJ6LogUSXuDLNeKraifpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fe63e39d, base path is set to: null +18:00:45.841 [XNIO-1 task-2] IxJ6LogUSXuDLNeKraifpw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", "fe63e39d", serviceId) +18:00:45.845 [XNIO-1 task-2] CH-8jX3oT7-iubgHx16cpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06ed557a +18:00:45.845 [XNIO-1 task-2] CH-8jX3oT7-iubgHx16cpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.845 [XNIO-1 task-2] CH-8jX3oT7-iubgHx16cpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.845 [XNIO-1 task-2] CH-8jX3oT7-iubgHx16cpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06ed557a +18:00:45.846 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:06ed557a +18:00:45.850 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2980cca3-24dd-4a69-a1bd-0b716386af79 +18:00:45.857 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.857 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.865 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.865 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.865 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:45.866 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:45.866 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:45.866 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG com.networknt.schema.TypeValidator debug - validate( "ecab8cc8-f770-4150-bff8-167a7017", {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:45.866 [XNIO-1 task-2] YnosCoNdTBG8OEJ0qQVQTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"805a4cfd","serviceName":"ecab8cc8-f770-4150-bff8-167a7017","serviceDesc":"e77f31d7-4b9c-4c6e-8884-19b5044fd935","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 28, 2024 6:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +18:00:45.870 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2980cca3-24dd-4a69-a1bd-0b716386af79 +18:00:45.875 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4da50188-62d4-4e04-b285-09f53d6ac8f3 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +18:00:45.875 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:45.877 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4da50188-62d4-4e04-b285-09f53d6ac8f3 +18:00:45.884 [XNIO-1 task-2] XHHbxdCFTaKOoMY7kmxO-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ee250e27 +18:00:45.884 [XNIO-1 task-2] XHHbxdCFTaKOoMY7kmxO-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.884 [XNIO-1 task-2] XHHbxdCFTaKOoMY7kmxO-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.884 [XNIO-1 task-2] XHHbxdCFTaKOoMY7kmxO-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ee250e27 +18:00:45.898 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:723d4f1b-bf42-4463-992d-cb9556fd2a73 +18:00:45.899 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:723d4f1b-bf42-4463-992d-cb9556fd2a73 +18:00:45.904 [XNIO-1 task-2] pfBjLybxQo6loy85CX74NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.904 [XNIO-1 task-2] pfBjLybxQo6loy85CX74NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.904 [XNIO-1 task-2] pfBjLybxQo6loy85CX74NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.926 [XNIO-1 task-2] QLbp4OziRQ6RsNDMlX14tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.926 [XNIO-1 task-2] QLbp4OziRQ6RsNDMlX14tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:45.926 [XNIO-1 task-2] QLbp4OziRQ6RsNDMlX14tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:45.927 [XNIO-1 task-2] QLbp4OziRQ6RsNDMlX14tw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.934 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:90eee918 +18:00:45.943 [XNIO-1 task-2] P8u6rDW2QhedjiGmkjr_RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.943 [XNIO-1 task-2] P8u6rDW2QhedjiGmkjr_RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.943 [XNIO-1 task-2] P8u6rDW2QhedjiGmkjr_RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.960 [XNIO-1 task-2] Yh84EpDRRs-gMS-t-PceEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.960 [XNIO-1 task-2] Yh84EpDRRs-gMS-t-PceEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.960 [XNIO-1 task-2] Yh84EpDRRs-gMS-t-PceEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.960 [XNIO-1 task-2] Yh84EpDRRs-gMS-t-PceEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.974 [XNIO-1 task-2] xp6bdhuGTqO8Sz7Oh3mhoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.974 [XNIO-1 task-2] xp6bdhuGTqO8Sz7Oh3mhoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.974 [XNIO-1 task-2] xp6bdhuGTqO8Sz7Oh3mhoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.978 [XNIO-1 task-2] xp6bdhuGTqO8Sz7Oh3mhoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.995 [XNIO-1 task-2] P9wKE_zDQ0WD3hCoCNGNxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c7cf0e70 +18:00:45.995 [XNIO-1 task-2] P9wKE_zDQ0WD3hCoCNGNxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:45.995 [XNIO-1 task-2] P9wKE_zDQ0WD3hCoCNGNxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:45.995 [XNIO-1 task-2] P9wKE_zDQ0WD3hCoCNGNxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c7cf0e70 +18:00:46.011 [XNIO-1 task-2] m8_4cFlRTuSCGXwpDSqzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.012 [XNIO-1 task-2] m8_4cFlRTuSCGXwpDSqzHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.012 [XNIO-1 task-2] m8_4cFlRTuSCGXwpDSqzHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.013 [XNIO-1 task-2] m8_4cFlRTuSCGXwpDSqzHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.037 [XNIO-1 task-2] 6N-yd37JSIKK7vmFZf3YWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.037 [XNIO-1 task-2] 6N-yd37JSIKK7vmFZf3YWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.037 [XNIO-1 task-2] 6N-yd37JSIKK7vmFZf3YWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.051 [XNIO-1 task-2] 8rh4L05BRIeEz7g3J6cwlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.051 [XNIO-1 task-2] 8rh4L05BRIeEz7g3J6cwlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.052 [XNIO-1 task-2] 8rh4L05BRIeEz7g3J6cwlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.068 [XNIO-1 task-2] DbZNEKk9RH-OPkOsSQasaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.068 [XNIO-1 task-2] DbZNEKk9RH-OPkOsSQasaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.069 [XNIO-1 task-2] DbZNEKk9RH-OPkOsSQasaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.072 [XNIO-1 task-2] DbZNEKk9RH-OPkOsSQasaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.090 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9dd5049 +18:00:46.092 [XNIO-1 task-2] hRWFijuxRz21CJ7trbTnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/77cb209e +18:00:46.092 [XNIO-1 task-2] hRWFijuxRz21CJ7trbTnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.093 [XNIO-1 task-2] hRWFijuxRz21CJ7trbTnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.093 [XNIO-1 task-2] hRWFijuxRz21CJ7trbTnpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/77cb209e +18:00:46.100 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c9dd5049 +18:00:46.112 [XNIO-1 task-2] Bd1Qd6VuSNu5l5edx4ZumQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/12bafe33, base path is set to: null +18:00:46.112 [XNIO-1 task-2] Bd1Qd6VuSNu5l5edx4ZumQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.112 [XNIO-1 task-2] Bd1Qd6VuSNu5l5edx4ZumQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.113 [XNIO-1 task-2] Bd1Qd6VuSNu5l5edx4ZumQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/12bafe33, base path is set to: null +18:00:46.113 [XNIO-1 task-2] Bd1Qd6VuSNu5l5edx4ZumQ DEBUG com.networknt.schema.TypeValidator debug - validate( "12bafe33", "12bafe33", serviceId) +18:00:46.121 [XNIO-1 task-2] iotVks2GThCC8VNGbTP7rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12bafe33 +18:00:46.121 [XNIO-1 task-2] iotVks2GThCC8VNGbTP7rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.121 [XNIO-1 task-2] iotVks2GThCC8VNGbTP7rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.121 [XNIO-1 task-2] iotVks2GThCC8VNGbTP7rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12bafe33 +18:00:46.130 [XNIO-1 task-2] TUzxOao0QJy_5T7xfY6m7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.130 [XNIO-1 task-2] TUzxOao0QJy_5T7xfY6m7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.131 [XNIO-1 task-2] TUzxOao0QJy_5T7xfY6m7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.150 [XNIO-1 task-2] X0iiJ_FNQHCLqFPwyduY1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.151 [XNIO-1 task-2] X0iiJ_FNQHCLqFPwyduY1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.151 [XNIO-1 task-2] X0iiJ_FNQHCLqFPwyduY1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.235 [XNIO-1 task-2] iem07RnTQtSedur3B0fO4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34456e39, base path is set to: null +18:00:46.235 [XNIO-1 task-2] iem07RnTQtSedur3B0fO4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.235 [XNIO-1 task-2] iem07RnTQtSedur3B0fO4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.235 [XNIO-1 task-2] iem07RnTQtSedur3B0fO4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34456e39, base path is set to: null +18:00:46.236 [XNIO-1 task-2] iem07RnTQtSedur3B0fO4w DEBUG com.networknt.schema.TypeValidator debug - validate( "34456e39", "34456e39", serviceId) +18:00:46.252 [XNIO-1 task-2] Db1mtwtKQLSJ55JVtzh07Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fef5dbc9 +18:00:46.252 [XNIO-1 task-2] Db1mtwtKQLSJ55JVtzh07Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.252 [XNIO-1 task-2] Db1mtwtKQLSJ55JVtzh07Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.253 [XNIO-1 task-2] Db1mtwtKQLSJ55JVtzh07Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fef5dbc9 +18:00:46.264 [XNIO-1 task-2] PHvC_HE9RwqGORQDmxPhrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a26190f7, base path is set to: null +18:00:46.264 [XNIO-1 task-2] PHvC_HE9RwqGORQDmxPhrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.265 [XNIO-1 task-2] PHvC_HE9RwqGORQDmxPhrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.265 [XNIO-1 task-2] PHvC_HE9RwqGORQDmxPhrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a26190f7, base path is set to: null +18:00:46.265 [XNIO-1 task-2] PHvC_HE9RwqGORQDmxPhrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a26190f7", "a26190f7", serviceId) +18:00:46.276 [XNIO-1 task-2] CQBquaJOQrmBGXTgSIyIJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/805a4cfd +18:00:46.277 [XNIO-1 task-2] CQBquaJOQrmBGXTgSIyIJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.277 [XNIO-1 task-2] CQBquaJOQrmBGXTgSIyIJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.277 [XNIO-1 task-2] CQBquaJOQrmBGXTgSIyIJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/805a4cfd +18:00:46.282 [XNIO-1 task-2] MBxS72JoTea9OIkDtRkSFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/805a4cfd, base path is set to: null +18:00:46.282 [XNIO-1 task-2] MBxS72JoTea9OIkDtRkSFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.282 [XNIO-1 task-2] MBxS72JoTea9OIkDtRkSFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.283 [XNIO-1 task-2] MBxS72JoTea9OIkDtRkSFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/805a4cfd, base path is set to: null +18:00:46.283 [XNIO-1 task-2] MBxS72JoTea9OIkDtRkSFA DEBUG com.networknt.schema.TypeValidator debug - validate( "805a4cfd", "805a4cfd", serviceId) +18:00:46.292 [XNIO-1 task-2] G7jka3Y4Qd61NJ3KHqI0tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29fae9f5 +18:00:46.292 [XNIO-1 task-2] G7jka3Y4Qd61NJ3KHqI0tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.292 [XNIO-1 task-2] G7jka3Y4Qd61NJ3KHqI0tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.292 [XNIO-1 task-2] G7jka3Y4Qd61NJ3KHqI0tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29fae9f5 +18:00:46.297 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.298 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.298 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.299 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.299 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.299 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:46.300 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:46.300 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb1b947e-2d9f-4e4c-bd46-aae70db8", {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:46.300 [XNIO-1 task-2] ZC2I0qJsTeSqynUnBlkQXQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.315 [XNIO-1 task-2] xe_2_b_yRBiB-KUgNGWPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.315 [XNIO-1 task-2] xe_2_b_yRBiB-KUgNGWPUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.315 [XNIO-1 task-2] xe_2_b_yRBiB-KUgNGWPUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.316 [XNIO-1 task-2] xe_2_b_yRBiB-KUgNGWPUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.331 [XNIO-1 task-2] Cbg0bmVGQ5m-nDgtyiqCyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.331 [XNIO-1 task-2] Cbg0bmVGQ5m-nDgtyiqCyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.331 [XNIO-1 task-2] Cbg0bmVGQ5m-nDgtyiqCyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.331 [XNIO-1 task-2] Cbg0bmVGQ5m-nDgtyiqCyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.344 [XNIO-1 task-2] LQlBMZ9XR6WkLGkaXv-Bqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.344 [XNIO-1 task-2] LQlBMZ9XR6WkLGkaXv-Bqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.344 [XNIO-1 task-2] LQlBMZ9XR6WkLGkaXv-Bqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.345 [XNIO-1 task-2] LQlBMZ9XR6WkLGkaXv-Bqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.361 [XNIO-1 task-2] DVVMGQy1RS2ojKefN1Wj2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.361 [XNIO-1 task-2] DVVMGQy1RS2ojKefN1Wj2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.362 [XNIO-1 task-2] DVVMGQy1RS2ojKefN1Wj2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.362 [XNIO-1 task-2] DVVMGQy1RS2ojKefN1Wj2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.366 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c9dd5049 +18:00:46.375 [XNIO-1 task-2] _PuUYqRwQkegc4_JWkd2GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0595a4d1, base path is set to: null +18:00:46.375 [XNIO-1 task-2] _PuUYqRwQkegc4_JWkd2GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.375 [XNIO-1 task-2] _PuUYqRwQkegc4_JWkd2GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.376 [XNIO-1 task-2] _PuUYqRwQkegc4_JWkd2GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0595a4d1, base path is set to: null +18:00:46.376 [XNIO-1 task-2] _PuUYqRwQkegc4_JWkd2GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0595a4d1", "0595a4d1", serviceId) +18:00:46.412 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.412 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.413 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.413 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.413 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:46.414 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG com.networknt.schema.TypeValidator debug - validate( "517384c1-0161-4fae-badf-4f0fa09792da", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:46.414 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe63e39d", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:46.414 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:46.414 [XNIO-1 task-2] upP5jt4uSdqWSRNXg4lRzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fe63e39d","serviceName":"714d6843-8aea-4a76-bd84-14a7c9dd","serviceDesc":"517384c1-0161-4fae-badf-4f0fa09792da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.428 [XNIO-1 task-2] MyUHXBjoRxup2eRs_0zn_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.428 [XNIO-1 task-2] MyUHXBjoRxup2eRs_0zn_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.429 [XNIO-1 task-2] MyUHXBjoRxup2eRs_0zn_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.429 [XNIO-1 task-2] MyUHXBjoRxup2eRs_0zn_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.447 [XNIO-1 task-2] KfhMb3-6RmW9IuIDXdF_iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/564e3b37 +18:00:46.447 [XNIO-1 task-2] KfhMb3-6RmW9IuIDXdF_iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.447 [XNIO-1 task-2] KfhMb3-6RmW9IuIDXdF_iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.447 [XNIO-1 task-2] KfhMb3-6RmW9IuIDXdF_iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/564e3b37 +18:00:46.458 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.458 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.459 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.459 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.459 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.460 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:46.460 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +18:00:46.460 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb1b947e-2d9f-4e4c-bd46-aae70db8", {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +18:00:46.460 [XNIO-1 task-2] BkUl0N7QRJ-53-s1E2bRDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ff29e1c7","serviceName":"fb1b947e-2d9f-4e4c-bd46-aae70db8","serviceDesc":"2f1524f2-cf29-4ae5-8e61-fb4fcdfd9b90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.473 [XNIO-1 task-2] I04NSf7XROqWa9oOfF5r3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.473 [XNIO-1 task-2] I04NSf7XROqWa9oOfF5r3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.473 [XNIO-1 task-2] I04NSf7XROqWa9oOfF5r3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.474 [XNIO-1 task-2] I04NSf7XROqWa9oOfF5r3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.492 [XNIO-1 task-2] hrtW_eg1RWyaBUD3bvEV8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.492 [XNIO-1 task-2] hrtW_eg1RWyaBUD3bvEV8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.493 [XNIO-1 task-2] hrtW_eg1RWyaBUD3bvEV8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.510 [XNIO-1 task-2] 5ky8JfUiSM20YcJ02WoN-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.511 [XNIO-1 task-2] 5ky8JfUiSM20YcJ02WoN-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.511 [XNIO-1 task-2] 5ky8JfUiSM20YcJ02WoN-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +18:00:46.511 [XNIO-1 task-2] 5ky8JfUiSM20YcJ02WoN-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.526 [XNIO-1 task-2] NmTJSqtTRpuftJEcG0GSWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/564e3b37, base path is set to: null +18:00:46.526 [XNIO-1 task-2] NmTJSqtTRpuftJEcG0GSWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.526 [XNIO-1 task-2] NmTJSqtTRpuftJEcG0GSWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.526 [XNIO-1 task-2] NmTJSqtTRpuftJEcG0GSWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/564e3b37, base path is set to: null +18:00:46.527 [XNIO-1 task-2] NmTJSqtTRpuftJEcG0GSWA DEBUG com.networknt.schema.TypeValidator debug - validate( "564e3b37", "564e3b37", serviceId) +18:00:46.530 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.530 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.530 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.531 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.531 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +18:00:46.531 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "ebac2b47-a637-49e3-9f9f-c4833dcc4c3d", {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +18:00:46.531 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "786cb64c", {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +18:00:46.531 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +18:00:46.531 [XNIO-1 task-2] FNlSM9QaQ3-8adTd7Hd3Kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"786cb64c","serviceName":"730dc3f1-476d-4465-bf63-d0028278","serviceDesc":"ebac2b47-a637-49e3-9f9f-c4833dcc4c3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +18:00:46.541 [XNIO-1 task-2] rnsxAfWBSJiCPwpb3Bwemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/564e3b37 +18:00:46.541 [XNIO-1 task-2] rnsxAfWBSJiCPwpb3Bwemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.541 [XNIO-1 task-2] rnsxAfWBSJiCPwpb3Bwemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.542 [XNIO-1 task-2] rnsxAfWBSJiCPwpb3Bwemg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/564e3b37 +18:00:46.546 [XNIO-1 task-2] BJzObHoiQfijK94h_bQhYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/564e3b37, base path is set to: null +18:00:46.546 [XNIO-1 task-2] BJzObHoiQfijK94h_bQhYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.546 [XNIO-1 task-2] BJzObHoiQfijK94h_bQhYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.546 [XNIO-1 task-2] BJzObHoiQfijK94h_bQhYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/564e3b37, base path is set to: null +18:00:46.547 [XNIO-1 task-2] BJzObHoiQfijK94h_bQhYw DEBUG com.networknt.schema.TypeValidator debug - validate( "564e3b37", "564e3b37", serviceId) +18:00:46.551 [XNIO-1 task-2] fZTZ-eA5QwOqkpFuA4VEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff29e1c7 +18:00:46.551 [XNIO-1 task-2] fZTZ-eA5QwOqkpFuA4VEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +18:00:46.551 [XNIO-1 task-2] fZTZ-eA5QwOqkpFuA4VEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +18:00:46.551 [XNIO-1 task-2] fZTZ-eA5QwOqkpFuA4VEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff29e1c7 +18:00:46.560 [XNIO-1 task-2] ftYavyqSSX2Eypz7vVSmDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/29fae9f5, base path is set to: null +18:00:46.560 [XNIO-1 task-2] ftYavyqSSX2Eypz7vVSmDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +18:00:46.560 [XNIO-1 task-2] ftYavyqSSX2Eypz7vVSmDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +18:00:46.560 [XNIO-1 task-2] ftYavyqSSX2Eypz7vVSmDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/29fae9f5, base path is set to: null diff --git a/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-token-1.log b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..1b05892 --- /dev/null +++ b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3841 @@ +18:00:41.677 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ef17309 +18:00:41.819 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ab5e74c9-7fb4-44ac-9035-1ddfaa12b63e +18:00:41.836 [XNIO-1 task-4] m60z3CiLQl6JYcYLKG2y0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:41.864 [XNIO-1 task-4] m60z3CiLQl6JYcYLKG2y0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:41.864 [XNIO-1 task-5] mgwA3j7yTEu0Tt50AS2R5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:41.865 [XNIO-1 task-5] mgwA3j7yTEu0Tt50AS2R5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.866 [XNIO-1 task-5] mgwA3j7yTEu0Tt50AS2R5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:41.864 [XNIO-1 task-4] m60z3CiLQl6JYcYLKG2y0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:41.868 [XNIO-1 task-4] m60z3CiLQl6JYcYLKG2y0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:41.869 [XNIO-1 task-3] Ttv9VkAARxmtz8WA7PjpeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:41.869 [XNIO-1 task-4] m60z3CiLQl6JYcYLKG2y0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:41.869 [XNIO-1 task-4] m60z3CiLQl6JYcYLKG2y0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:41.870 [XNIO-1 task-3] Ttv9VkAARxmtz8WA7PjpeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:41.871 [XNIO-1 task-3] Ttv9VkAARxmtz8WA7PjpeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mnY52EvLT7-Bcnc5_CLX5A redirectUri = http://localhost:8080/authorization +18:00:41.874 [XNIO-1 task-5] mgwA3j7yTEu0Tt50AS2R5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:41.875 [XNIO-1 task-4] m60z3CiLQl6JYcYLKG2y0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:41.896 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cff0afb1 +18:00:41.917 [XNIO-1 task-4] dbmXQ2bQQ7C3x5KRFncRUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.917 [XNIO-1 task-4] dbmXQ2bQQ7C3x5KRFncRUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:41.917 [XNIO-1 task-3] Ttv9VkAARxmtz8WA7PjpeA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:41.919 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cff0afb1 +18:00:41.918 [XNIO-1 task-4] dbmXQ2bQQ7C3x5KRFncRUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.921 [XNIO-1 task-4] dbmXQ2bQQ7C3x5KRFncRUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:41.931 [XNIO-1 task-4] dbmXQ2bQQ7C3x5KRFncRUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:41.939 [XNIO-1 task-4] HbomtcnrRL2m0KLnITaYvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.939 [XNIO-1 task-4] HbomtcnrRL2m0KLnITaYvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:41.940 [XNIO-1 task-4] HbomtcnrRL2m0KLnITaYvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.941 [XNIO-1 task-4] HbomtcnrRL2m0KLnITaYvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:41.942 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:cff0afb1 +18:00:41.946 [XNIO-1 task-4] HbomtcnrRL2m0KLnITaYvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:41.954 [XNIO-1 task-4] kO4NjDD5S9-mFS98-YEG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.956 [XNIO-1 task-4] kO4NjDD5S9-mFS98-YEG8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:41.957 [XNIO-1 task-4] kO4NjDD5S9-mFS98-YEG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.958 [XNIO-1 task-4] kO4NjDD5S9-mFS98-YEG8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:41.965 [XNIO-1 task-4] kO4NjDD5S9-mFS98-YEG8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:41.972 [XNIO-1 task-4] ISfiZGPbRduuIeZhEo6Nbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.972 [XNIO-1 task-4] ISfiZGPbRduuIeZhEo6Nbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:41.975 [XNIO-1 task-3] OdMZErbNTFaAcyBfqrX1qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.976 [XNIO-1 task-3] OdMZErbNTFaAcyBfqrX1qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:41.976 [XNIO-1 task-4] ISfiZGPbRduuIeZhEo6Nbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.976 [XNIO-1 task-3] OdMZErbNTFaAcyBfqrX1qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:41.977 [XNIO-1 task-3] OdMZErbNTFaAcyBfqrX1qA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:41.977 [XNIO-1 task-3] OdMZErbNTFaAcyBfqrX1qA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pwsjPl_PS_O-Bfg37quvpg redirectUri = http://localhost:8080/authorization +18:00:41.985 [XNIO-1 task-3] OdMZErbNTFaAcyBfqrX1qA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:41.986 [XNIO-1 task-3] OdMZErbNTFaAcyBfqrX1qA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:41.987 [XNIO-1 task-4] ISfiZGPbRduuIeZhEo6Nbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:41.999 [XNIO-1 task-3] jcibV3OiRQ-O5WjAmcjMZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:41.999 [XNIO-1 task-3] jcibV3OiRQ-O5WjAmcjMZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.000 [XNIO-1 task-3] jcibV3OiRQ-O5WjAmcjMZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.001 [XNIO-1 task-3] jcibV3OiRQ-O5WjAmcjMZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.009 [XNIO-1 task-3] jcibV3OiRQ-O5WjAmcjMZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.010 [XNIO-1 task-4] g23H_0JiSsK4bHEoKSAgFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.010 [XNIO-1 task-4] g23H_0JiSsK4bHEoKSAgFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.013 [XNIO-1 task-4] g23H_0JiSsK4bHEoKSAgFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.014 [XNIO-1 task-4] g23H_0JiSsK4bHEoKSAgFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = yy2jXd8KQfaCWgu7FyCiWA redirectUri = http://localhost:8080/authorization +18:00:42.021 [XNIO-1 task-3] pUjLI3PTT-mhIWmeB3pOcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.021 [XNIO-1 task-3] pUjLI3PTT-mhIWmeB3pOcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.022 [XNIO-1 task-3] pUjLI3PTT-mhIWmeB3pOcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.024 [XNIO-1 task-4] g23H_0JiSsK4bHEoKSAgFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:42.025 [XNIO-1 task-3] pUjLI3PTT-mhIWmeB3pOcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.030 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:372977ab +18:00:42.030 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0e988c35-7c81-4cd1-ad62-fd829d8cf6cf +18:00:42.033 [XNIO-1 task-3] pUjLI3PTT-mhIWmeB3pOcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.042 [XNIO-1 task-3] u89i3Fg-QaOHx1C5heO_Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.042 [XNIO-1 task-3] u89i3Fg-QaOHx1C5heO_Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.042 [XNIO-1 task-4] UT9ImJVuSR-sRz62GLgBow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.043 [XNIO-1 task-4] UT9ImJVuSR-sRz62GLgBow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.043 [XNIO-1 task-4] UT9ImJVuSR-sRz62GLgBow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.043 [XNIO-1 task-3] u89i3Fg-QaOHx1C5heO_Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.044 [XNIO-1 task-4] UT9ImJVuSR-sRz62GLgBow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.045 [XNIO-1 task-4] UT9ImJVuSR-sRz62GLgBow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:42.050 [XNIO-1 task-3] u89i3Fg-QaOHx1C5heO_Uw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.051 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0e988c35-7c81-4cd1-ad62-fd829d8cf6cf +18:00:42.053 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1719322 +18:00:42.055 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:344abcb4-9699-4257-8f31-6528e7e3ad59 +18:00:42.055 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1719322 +18:00:42.058 [XNIO-1 task-3] dB5gsB9bS3GCR8_7zBMwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.058 [XNIO-1 task-3] dB5gsB9bS3GCR8_7zBMwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.059 [XNIO-1 task-3] dB5gsB9bS3GCR8_7zBMwNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.060 [XNIO-1 task-3] dB5gsB9bS3GCR8_7zBMwNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.060 [XNIO-1 task-4] UT9ImJVuSR-sRz62GLgBow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.070 [XNIO-1 task-3] dB5gsB9bS3GCR8_7zBMwNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.074 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9ef17309 +18:00:42.081 [XNIO-1 task-4] 3-SCrYObSFOB23cua4MBKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.082 [XNIO-1 task-4] 3-SCrYObSFOB23cua4MBKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.082 [XNIO-1 task-4] 3-SCrYObSFOB23cua4MBKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.082 [XNIO-1 task-4] 3-SCrYObSFOB23cua4MBKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.082 [XNIO-1 task-3] BwwiZcmuSiCtje41BeFc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.083 [XNIO-1 task-4] 3-SCrYObSFOB23cua4MBKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.083 [XNIO-1 task-3] BwwiZcmuSiCtje41BeFc_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 029dbd2b-373e-4a4e-9767-023d99640334 scope = null +18:00:42.083 [XNIO-1 task-4] 3-SCrYObSFOB23cua4MBKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.095 [XNIO-1 task-4] 3-SCrYObSFOB23cua4MBKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.102 [XNIO-1 task-4] JV9CbZZESKmEeKjU3dLcLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.102 [XNIO-1 task-4] JV9CbZZESKmEeKjU3dLcLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.102 [XNIO-1 task-4] JV9CbZZESKmEeKjU3dLcLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.103 [XNIO-1 task-4] JV9CbZZESKmEeKjU3dLcLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.106 [XNIO-1 task-5] kv8dscxDRumbeFb9SnUpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.106 [XNIO-1 task-5] kv8dscxDRumbeFb9SnUpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.106 [XNIO-1 task-5] kv8dscxDRumbeFb9SnUpyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.109 [XNIO-1 task-4] JV9CbZZESKmEeKjU3dLcLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.111 [XNIO-1 task-5] kv8dscxDRumbeFb9SnUpyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CG_9ol83QNuit-QJjCLrww redirectUri = http://localhost:8080/authorization +18:00:42.117 [XNIO-1 task-4] EHP0j2OTT26iwXygGsDy6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.117 [XNIO-1 task-4] EHP0j2OTT26iwXygGsDy6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.118 [XNIO-1 task-4] EHP0j2OTT26iwXygGsDy6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.120 [XNIO-1 task-4] EHP0j2OTT26iwXygGsDy6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.122 [XNIO-1 task-3] BwwiZcmuSiCtje41BeFc_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.125 [XNIO-1 task-4] EHP0j2OTT26iwXygGsDy6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.132 [XNIO-1 task-4] rWPLiwRYR6WH02vUZ12kPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.132 [XNIO-1 task-4] rWPLiwRYR6WH02vUZ12kPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.132 [XNIO-1 task-4] rWPLiwRYR6WH02vUZ12kPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.133 [XNIO-1 task-4] rWPLiwRYR6WH02vUZ12kPg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.135 [XNIO-1 task-5] kv8dscxDRumbeFb9SnUpyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.143 [XNIO-1 task-4] rWPLiwRYR6WH02vUZ12kPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.150 [XNIO-1 task-4] -_0xAQCZRgCxpRFqJ_8eAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.150 [XNIO-1 task-4] -_0xAQCZRgCxpRFqJ_8eAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.151 [XNIO-1 task-4] -_0xAQCZRgCxpRFqJ_8eAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.151 [XNIO-1 task-4] -_0xAQCZRgCxpRFqJ_8eAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:42.155 [XNIO-1 task-3] 4Dx2wvG6RnWhTrMCbWpxAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.155 [XNIO-1 task-3] 4Dx2wvG6RnWhTrMCbWpxAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.156 [XNIO-1 task-3] 4Dx2wvG6RnWhTrMCbWpxAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.156 [XNIO-1 task-3] 4Dx2wvG6RnWhTrMCbWpxAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.162 [XNIO-1 task-4] -_0xAQCZRgCxpRFqJ_8eAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.163 [XNIO-1 task-4] -_0xAQCZRgCxpRFqJ_8eAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.171 [XNIO-1 task-3] VOyIxoGCQ3uITdyiRU0k1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.171 [XNIO-1 task-3] VOyIxoGCQ3uITdyiRU0k1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.172 [XNIO-1 task-3] VOyIxoGCQ3uITdyiRU0k1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.173 [XNIO-1 task-3] VOyIxoGCQ3uITdyiRU0k1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.179 [XNIO-1 task-3] VOyIxoGCQ3uITdyiRU0k1A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.197 [XNIO-1 task-3] w4KlO2DvR3et_UDde5uRYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.197 [XNIO-1 task-3] w4KlO2DvR3et_UDde5uRYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.197 [XNIO-1 task-3] w4KlO2DvR3et_UDde5uRYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.198 [XNIO-1 task-3] w4KlO2DvR3et_UDde5uRYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.199 [XNIO-1 task-4] eZY13ZdvS6mKBb0QaiSkqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.199 [XNIO-1 task-4] eZY13ZdvS6mKBb0QaiSkqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.200 [XNIO-1 task-4] eZY13ZdvS6mKBb0QaiSkqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.201 [XNIO-1 task-4] eZY13ZdvS6mKBb0QaiSkqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:42.206 [XNIO-1 task-3] w4KlO2DvR3et_UDde5uRYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.207 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:42.210 [XNIO-1 task-4] eZY13ZdvS6mKBb0QaiSkqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.220 [XNIO-1 task-3] Q467F40rS7-A8ehUQF7xgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.220 [XNIO-1 task-3] Q467F40rS7-A8ehUQF7xgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.221 [XNIO-1 task-3] Q467F40rS7-A8ehUQF7xgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.221 [XNIO-1 task-3] Q467F40rS7-A8ehUQF7xgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.222 [XNIO-1 task-5] SSBPNHd5QkSswvHRMY9uXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.222 [XNIO-1 task-3] Q467F40rS7-A8ehUQF7xgA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.223 [XNIO-1 task-5] SSBPNHd5QkSswvHRMY9uXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.223 [XNIO-1 task-5] SSBPNHd5QkSswvHRMY9uXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.223 [XNIO-1 task-5] SSBPNHd5QkSswvHRMY9uXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:42.224 [XNIO-1 task-5] SSBPNHd5QkSswvHRMY9uXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.247 [XNIO-1 task-3] Q467F40rS7-A8ehUQF7xgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.253 [XNIO-1 task-3] bIqXUJusQuybTQ-QZzpqYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.254 [XNIO-1 task-3] bIqXUJusQuybTQ-QZzpqYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.254 [XNIO-1 task-3] bIqXUJusQuybTQ-QZzpqYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.255 [XNIO-1 task-5] SSBPNHd5QkSswvHRMY9uXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:42.255 [XNIO-1 task-5] SSBPNHd5QkSswvHRMY9uXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.255 [XNIO-1 task-3] bIqXUJusQuybTQ-QZzpqYA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.262 [XNIO-1 task-3] bIqXUJusQuybTQ-QZzpqYA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.310 [XNIO-1 task-4] -A5UQ-xqT76902ioensfEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.310 [XNIO-1 task-4] -A5UQ-xqT76902ioensfEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.311 [XNIO-1 task-3] Rj0yyyTjTUysnYWr-HVjlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.311 [XNIO-1 task-3] Rj0yyyTjTUysnYWr-HVjlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.312 [XNIO-1 task-3] Rj0yyyTjTUysnYWr-HVjlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.313 [XNIO-1 task-3] Rj0yyyTjTUysnYWr-HVjlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.314 [XNIO-1 task-4] -A5UQ-xqT76902ioensfEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.315 [XNIO-1 task-4] -A5UQ-xqT76902ioensfEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 08a0d9bd-f9e2-41ea-8cb9-9158c927fa4c scope = null +18:00:42.318 [XNIO-1 task-5] tR-3pWXWRkyXenxMmyTMOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.318 [XNIO-1 task-5] tR-3pWXWRkyXenxMmyTMOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.319 [XNIO-1 task-5] tR-3pWXWRkyXenxMmyTMOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.319 [XNIO-1 task-5] tR-3pWXWRkyXenxMmyTMOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.322 [XNIO-1 task-5] tR-3pWXWRkyXenxMmyTMOg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e642a662-5a78-410f-a1be-03452432f435 scope = null +18:00:42.333 [XNIO-1 task-4] -A5UQ-xqT76902ioensfEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.353 [XNIO-1 task-3] ceqKv-o0RVS_eCfXUAkqmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.353 [XNIO-1 task-3] ceqKv-o0RVS_eCfXUAkqmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.354 [XNIO-1 task-3] ceqKv-o0RVS_eCfXUAkqmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.355 [XNIO-1 task-5] tR-3pWXWRkyXenxMmyTMOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.355 [XNIO-1 task-3] ceqKv-o0RVS_eCfXUAkqmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.361 [XNIO-1 task-3] ceqKv-o0RVS_eCfXUAkqmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.370 [XNIO-1 task-3] qOUKkrzqSgGq8ZGBfwdX_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.370 [XNIO-1 task-3] qOUKkrzqSgGq8ZGBfwdX_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.371 [XNIO-1 task-3] qOUKkrzqSgGq8ZGBfwdX_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.371 [XNIO-1 task-3] qOUKkrzqSgGq8ZGBfwdX_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.377 [XNIO-1 task-3] qOUKkrzqSgGq8ZGBfwdX_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.388 [XNIO-1 task-3] UfaFFnn3ROOKQvwM-86U3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.388 [XNIO-1 task-3] UfaFFnn3ROOKQvwM-86U3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.389 [XNIO-1 task-3] UfaFFnn3ROOKQvwM-86U3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.389 [XNIO-1 task-3] UfaFFnn3ROOKQvwM-86U3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.395 [XNIO-1 task-3] UfaFFnn3ROOKQvwM-86U3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.396 [XNIO-1 task-5] aUG9HRG7ToiaDmqLCMbPfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.396 [XNIO-1 task-5] aUG9HRG7ToiaDmqLCMbPfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.396 [XNIO-1 task-5] aUG9HRG7ToiaDmqLCMbPfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.397 [XNIO-1 task-5] aUG9HRG7ToiaDmqLCMbPfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6MbLO9nQRxe3ijb6sv9_vQ redirectUri = http://localhost:8080/authorization +18:00:42.399 [XNIO-1 task-3] 5P88MuCyTIOw6k1h9mlwcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.399 [XNIO-1 task-3] 5P88MuCyTIOw6k1h9mlwcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.400 [XNIO-1 task-3] 5P88MuCyTIOw6k1h9mlwcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.401 [XNIO-1 task-3] 5P88MuCyTIOw6k1h9mlwcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 50f78e55-7b4c-44d9-8640-616cce711f44 scope = null +18:00:42.404 [XNIO-1 task-5] aUG9HRG7ToiaDmqLCMbPfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.407 [XNIO-1 task-4] m07P-7OyQMSdmuMDcgrP8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.407 [XNIO-1 task-4] m07P-7OyQMSdmuMDcgrP8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.408 [XNIO-1 task-4] m07P-7OyQMSdmuMDcgrP8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.409 [XNIO-1 task-4] m07P-7OyQMSdmuMDcgrP8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.414 [XNIO-1 task-4] m07P-7OyQMSdmuMDcgrP8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.421 [XNIO-1 task-4] UvxZcT1PQVisA2v1VxOkgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.421 [XNIO-1 task-4] UvxZcT1PQVisA2v1VxOkgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.422 [XNIO-1 task-4] UvxZcT1PQVisA2v1VxOkgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.422 [XNIO-1 task-4] UvxZcT1PQVisA2v1VxOkgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.429 [XNIO-1 task-4] UvxZcT1PQVisA2v1VxOkgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.432 [XNIO-1 task-3] 5P88MuCyTIOw6k1h9mlwcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.434 [XNIO-1 task-4] THrdehmgSAy0WBM8HheuWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.435 [XNIO-1 task-4] THrdehmgSAy0WBM8HheuWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.436 [XNIO-1 task-4] THrdehmgSAy0WBM8HheuWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.437 [XNIO-1 task-4] THrdehmgSAy0WBM8HheuWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.442 [XNIO-1 task-4] THrdehmgSAy0WBM8HheuWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.449 [XNIO-1 task-4] Elcy5XLsT1qFagHVcKW0JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.450 [XNIO-1 task-4] Elcy5XLsT1qFagHVcKW0JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.450 [XNIO-1 task-4] Elcy5XLsT1qFagHVcKW0JQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.451 [XNIO-1 task-4] Elcy5XLsT1qFagHVcKW0JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.461 [XNIO-1 task-4] Elcy5XLsT1qFagHVcKW0JQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.470 [XNIO-1 task-4] lU8L_ywYS02mbuUFGv-VEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.470 [XNIO-1 task-4] lU8L_ywYS02mbuUFGv-VEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.470 [XNIO-1 task-4] lU8L_ywYS02mbuUFGv-VEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.471 [XNIO-1 task-4] lU8L_ywYS02mbuUFGv-VEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.480 [XNIO-1 task-4] lU8L_ywYS02mbuUFGv-VEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.493 [XNIO-1 task-4] VS2OkMnKT1CtdfQkQTmt2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.493 [XNIO-1 task-4] VS2OkMnKT1CtdfQkQTmt2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.494 [XNIO-1 task-4] VS2OkMnKT1CtdfQkQTmt2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.494 [XNIO-1 task-4] VS2OkMnKT1CtdfQkQTmt2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.499 [XNIO-1 task-4] VS2OkMnKT1CtdfQkQTmt2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.509 [XNIO-1 task-4] wXNAx0x3QXCqpsKPjQ3YPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.511 [XNIO-1 task-4] wXNAx0x3QXCqpsKPjQ3YPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.509 [XNIO-1 task-3] KXO7xFm2QpKZKUIFLaZ21g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.511 [XNIO-1 task-3] KXO7xFm2QpKZKUIFLaZ21g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.512 [XNIO-1 task-4] wXNAx0x3QXCqpsKPjQ3YPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.515 [XNIO-1 task-5] jdaF1D3ASCCFsSqcZdxyVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.519 [XNIO-1 task-5] jdaF1D3ASCCFsSqcZdxyVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.513 [XNIO-1 task-3] KXO7xFm2QpKZKUIFLaZ21g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.520 [XNIO-1 task-5] jdaF1D3ASCCFsSqcZdxyVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.520 [XNIO-1 task-5] jdaF1D3ASCCFsSqcZdxyVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.521 [XNIO-1 task-5] jdaF1D3ASCCFsSqcZdxyVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:42.522 [XNIO-1 task-5] jdaF1D3ASCCFsSqcZdxyVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PCFVqhwKShyJw_g3_Dtd8g redirectUri = http://localhost:8080/authorization +18:00:42.524 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4de552fb-a4a5-45ad-9c11-fc421f288a97 +18:00:42.527 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4de552fb-a4a5-45ad-9c11-fc421f288a97 +18:00:42.530 [XNIO-1 task-4] wXNAx0x3QXCqpsKPjQ3YPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.533 [XNIO-1 task-3] KXO7xFm2QpKZKUIFLaZ21g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.533 [XNIO-1 task-3] KXO7xFm2QpKZKUIFLaZ21g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.534 [XNIO-1 task-5] jdaF1D3ASCCFsSqcZdxyVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.536 [XNIO-1 task-4] edmOuNw0R6W4SAYrinhpMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.536 [XNIO-1 task-4] edmOuNw0R6W4SAYrinhpMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.537 [XNIO-1 task-4] edmOuNw0R6W4SAYrinhpMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.542 [XNIO-1 task-4] edmOuNw0R6W4SAYrinhpMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.547 [XNIO-1 task-5] r3fs6ViITli5fKXMi7ZaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.547 [XNIO-1 task-5] r3fs6ViITli5fKXMi7ZaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.548 [XNIO-1 task-5] r3fs6ViITli5fKXMi7ZaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.548 [XNIO-1 task-5] r3fs6ViITli5fKXMi7ZaBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:42.548 [XNIO-1 task-5] r3fs6ViITli5fKXMi7ZaBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f6f238af-30d4-451d-9b43-5771e416f0ba scope = null +18:00:42.570 [XNIO-1 task-4] RgWV8APnSumEFIvYpAeGqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.570 [XNIO-1 task-4] RgWV8APnSumEFIvYpAeGqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.571 [XNIO-1 task-4] RgWV8APnSumEFIvYpAeGqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.571 [XNIO-1 task-4] RgWV8APnSumEFIvYpAeGqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.572 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:76b65bba-d6f2-436f-8eae-8aad2611f4e1 +18:00:42.577 [XNIO-1 task-4] RgWV8APnSumEFIvYpAeGqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.578 [XNIO-1 task-4] RgWV8APnSumEFIvYpAeGqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.585 [XNIO-1 task-4] os4seGB-Ti6Uq-7YWeM_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.585 [XNIO-1 task-4] os4seGB-Ti6Uq-7YWeM_Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.586 [XNIO-1 task-4] os4seGB-Ti6Uq-7YWeM_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.587 [XNIO-1 task-4] os4seGB-Ti6Uq-7YWeM_Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.592 [XNIO-1 task-4] os4seGB-Ti6Uq-7YWeM_Ww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.599 [XNIO-1 task-4] E41S488GTIKEOCgUdes-lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.606 [XNIO-1 task-4] E41S488GTIKEOCgUdes-lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.606 [XNIO-1 task-4] E41S488GTIKEOCgUdes-lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.607 [XNIO-1 task-4] E41S488GTIKEOCgUdes-lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.613 [XNIO-1 task-4] E41S488GTIKEOCgUdes-lg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.614 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b79c68a8 +18:00:42.619 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b79c68a8 +18:00:42.619 [XNIO-1 task-4] wkeInqI4RBC1JmBK5G7COg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.619 [XNIO-1 task-4] wkeInqI4RBC1JmBK5G7COg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.620 [XNIO-1 task-4] wkeInqI4RBC1JmBK5G7COg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.620 [XNIO-1 task-4] wkeInqI4RBC1JmBK5G7COg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.626 [XNIO-1 task-4] wkeInqI4RBC1JmBK5G7COg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.633 [XNIO-1 task-4] VpbFBYClT2C1UVAELoiBGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.634 [XNIO-1 task-4] VpbFBYClT2C1UVAELoiBGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.634 [XNIO-1 task-4] VpbFBYClT2C1UVAELoiBGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.635 [XNIO-1 task-4] VpbFBYClT2C1UVAELoiBGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.640 [XNIO-1 task-4] VpbFBYClT2C1UVAELoiBGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.652 [XNIO-1 task-4] GXIhQsq_TGuMTbs8s65SQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.653 [XNIO-1 task-4] GXIhQsq_TGuMTbs8s65SQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.653 [XNIO-1 task-4] GXIhQsq_TGuMTbs8s65SQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.654 [XNIO-1 task-4] GXIhQsq_TGuMTbs8s65SQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.669 [XNIO-1 task-4] GXIhQsq_TGuMTbs8s65SQA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.683 [XNIO-1 task-4] Tzgky9ceSw6kN0XEqhnkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.683 [XNIO-1 task-4] Tzgky9ceSw6kN0XEqhnkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.684 [XNIO-1 task-4] Tzgky9ceSw6kN0XEqhnkYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.684 [XNIO-1 task-4] Tzgky9ceSw6kN0XEqhnkYA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.726 [XNIO-1 task-4] Tzgky9ceSw6kN0XEqhnkYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.729 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5f1e9d66-a749-4de7-8e01-6b73f5f0d330 +18:00:42.729 [XNIO-1 task-5] 4HPetwHjTaCydu6wi9ZSpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.729 [XNIO-1 task-5] 4HPetwHjTaCydu6wi9ZSpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.730 [XNIO-1 task-5] 4HPetwHjTaCydu6wi9ZSpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.730 [XNIO-1 task-5] 4HPetwHjTaCydu6wi9ZSpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:42.737 [XNIO-1 task-4] 6liqaTgXT16XVGd6AvWl_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.737 [XNIO-1 task-4] 6liqaTgXT16XVGd6AvWl_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.738 [XNIO-1 task-4] 6liqaTgXT16XVGd6AvWl_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.738 [XNIO-1 task-4] 6liqaTgXT16XVGd6AvWl_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.739 [XNIO-1 task-5] 4HPetwHjTaCydu6wi9ZSpQ INFO com.networknt.config.Config loadJsonMapConfigWithSpecificConfigLoader - Trying to load status with extension yaml, yml or json by using default loading method. +18:00:42.739 [XNIO-1 task-5] 4HPetwHjTaCydu6wi9ZSpQ INFO com.networknt.config.Config getConfigStream - Trying to load config from classpath directory for file status.yml +18:00:42.760 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:281d4e9d +18:00:42.763 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:281d4e9d +18:00:42.768 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b79c68a8 +18:00:42.781 [XNIO-1 task-4] 6liqaTgXT16XVGd6AvWl_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 48852b63-e925-45bd-8697-28f075bf8868 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:42.798 [XNIO-1 task-4] YqC-g1nCSO-43YXuF_n1sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.801 [XNIO-1 task-4] YqC-g1nCSO-43YXuF_n1sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:42.802 [XNIO-1 task-4] YqC-g1nCSO-43YXuF_n1sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.802 [XNIO-1 task-4] YqC-g1nCSO-43YXuF_n1sA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:42.818 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5f1e9d66-a749-4de7-8e01-6b73f5f0d330 +18:00:42.828 [XNIO-1 task-4] YqC-g1nCSO-43YXuF_n1sA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.841 [XNIO-1 task-4] dkjMyf_tSZCFVyDlfs1bBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.841 [XNIO-1 task-4] dkjMyf_tSZCFVyDlfs1bBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.842 [XNIO-1 task-4] dkjMyf_tSZCFVyDlfs1bBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.842 [XNIO-1 task-4] dkjMyf_tSZCFVyDlfs1bBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.850 [XNIO-1 task-4] dkjMyf_tSZCFVyDlfs1bBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.858 [XNIO-1 task-4] 3OLqWEBpR7mWGR0hTh-qqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.859 [XNIO-1 task-4] 3OLqWEBpR7mWGR0hTh-qqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.860 [XNIO-1 task-4] 3OLqWEBpR7mWGR0hTh-qqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.861 [XNIO-1 task-4] 3OLqWEBpR7mWGR0hTh-qqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.870 [XNIO-1 task-4] 3OLqWEBpR7mWGR0hTh-qqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.876 [XNIO-1 task-4] 4u5QMNj0QMCKAZ_jtrpXRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.877 [XNIO-1 task-4] 4u5QMNj0QMCKAZ_jtrpXRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.877 [XNIO-1 task-4] 4u5QMNj0QMCKAZ_jtrpXRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.878 [XNIO-1 task-5] bApzqvgFTdqItiZWgH8w7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.878 [XNIO-1 task-5] bApzqvgFTdqItiZWgH8w7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.880 [XNIO-1 task-5] bApzqvgFTdqItiZWgH8w7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.881 [XNIO-1 task-3] URo8ILv7TtC7VaLdP12kPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.881 [XNIO-1 task-3] URo8ILv7TtC7VaLdP12kPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.884 [XNIO-1 task-3] URo8ILv7TtC7VaLdP12kPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.884 [XNIO-1 task-3] URo8ILv7TtC7VaLdP12kPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OlRnqku1S1WDP-r2sFNaMg redirectUri = http://localhost:8080/authorization +18:00:42.883 [XNIO-1 task-4] 4u5QMNj0QMCKAZ_jtrpXRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:42.885 [XNIO-1 task-4] 4u5QMNj0QMCKAZ_jtrpXRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.896 [XNIO-1 task-4] 4u5QMNj0QMCKAZ_jtrpXRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.897 [XNIO-1 task-5] bApzqvgFTdqItiZWgH8w7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.894 [XNIO-1 task-3] URo8ILv7TtC7VaLdP12kPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:42.900 [XNIO-1 task-3] URo8ILv7TtC7VaLdP12kPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.901 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:281d4e9d +18:00:42.904 [XNIO-1 task-4] vFuqYaQdQyibyFdXtKKq6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.905 [XNIO-1 task-4] vFuqYaQdQyibyFdXtKKq6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.906 [XNIO-1 task-4] vFuqYaQdQyibyFdXtKKq6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.907 [XNIO-1 task-4] vFuqYaQdQyibyFdXtKKq6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.920 [XNIO-1 task-5] RXI69qAcScK5hMuK70tCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.921 [XNIO-1 task-4] vFuqYaQdQyibyFdXtKKq6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.921 [XNIO-1 task-5] RXI69qAcScK5hMuK70tCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.924 [XNIO-1 task-5] RXI69qAcScK5hMuK70tCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.924 [XNIO-1 task-5] RXI69qAcScK5hMuK70tCFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 791bc6aa-116d-40d9-9940-66c1f2b95b24 scope = null +18:00:42.927 [XNIO-1 task-4] uz2G4qiCTCSrlhYEea_7mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.927 [XNIO-1 task-4] uz2G4qiCTCSrlhYEea_7mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.935 [XNIO-1 task-4] uz2G4qiCTCSrlhYEea_7mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.938 [XNIO-1 task-4] uz2G4qiCTCSrlhYEea_7mQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.939 [XNIO-1 task-5] RXI69qAcScK5hMuK70tCFg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.946 [XNIO-1 task-4] uz2G4qiCTCSrlhYEea_7mQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.959 [XNIO-1 task-4] 7yKOpDUxRhOdTbNRYh1vXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.959 [XNIO-1 task-4] 7yKOpDUxRhOdTbNRYh1vXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.960 [XNIO-1 task-4] 7yKOpDUxRhOdTbNRYh1vXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.961 [XNIO-1 task-4] 7yKOpDUxRhOdTbNRYh1vXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:42.969 [XNIO-1 task-4] 7yKOpDUxRhOdTbNRYh1vXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:42.976 [XNIO-1 task-5] IVC3TXPiQWS3gwvzwS1ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.976 [XNIO-1 task-5] IVC3TXPiQWS3gwvzwS1ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.977 [XNIO-1 task-5] IVC3TXPiQWS3gwvzwS1ldg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.978 [XNIO-1 task-5] IVC3TXPiQWS3gwvzwS1ldg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2-QslTM6TquSM8Jxkj6GYA redirectUri = http://localhost:8080/authorization +18:00:42.987 [XNIO-1 task-4] qm6bR2oUSH-3dod6u7ghtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.987 [XNIO-1 task-4] qm6bR2oUSH-3dod6u7ghtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:42.989 [XNIO-1 task-5] IVC3TXPiQWS3gwvzwS1ldg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:42.988 [XNIO-1 task-4] qm6bR2oUSH-3dod6u7ghtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:42.996 [XNIO-1 task-4] qm6bR2oUSH-3dod6u7ghtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:42.999 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:281d4e9d +18:00:43.002 [XNIO-1 task-4] qm6bR2oUSH-3dod6u7ghtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.015 [XNIO-1 task-4] lGx74EW5QBWC24yoyVTAmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.015 [XNIO-1 task-4] lGx74EW5QBWC24yoyVTAmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.015 [XNIO-1 task-4] lGx74EW5QBWC24yoyVTAmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.016 [XNIO-1 task-4] lGx74EW5QBWC24yoyVTAmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:43.017 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c1719322 +18:00:43.028 [XNIO-1 task-4] lGx74EW5QBWC24yoyVTAmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.033 [XNIO-1 task-5] I6K2wauqR2yul8RanK8DEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.033 [XNIO-1 task-5] I6K2wauqR2yul8RanK8DEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.034 [XNIO-1 task-5] I6K2wauqR2yul8RanK8DEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.035 [XNIO-1 task-5] I6K2wauqR2yul8RanK8DEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZCQWVH26TO-3rNZ5a9te3A redirectUri = http://localhost:8080/authorization +18:00:43.045 [XNIO-1 task-3] 9GN6gJSjSmO2k68qVb0ljg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.045 [XNIO-1 task-3] 9GN6gJSjSmO2k68qVb0ljg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.046 [XNIO-1 task-3] 9GN6gJSjSmO2k68qVb0ljg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.047 [XNIO-1 task-3] 9GN6gJSjSmO2k68qVb0ljg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = a7eze9DxTAivLYyh-zaoiQ redirectUri = http://localhost:8080/authorization +18:00:43.047 [XNIO-1 task-4] FN2ZI_0VQ5-V_rJICkGOAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.047 [XNIO-1 task-4] FN2ZI_0VQ5-V_rJICkGOAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.048 [XNIO-1 task-4] FN2ZI_0VQ5-V_rJICkGOAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.048 [XNIO-1 task-4] FN2ZI_0VQ5-V_rJICkGOAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.049 [XNIO-1 task-5] I6K2wauqR2yul8RanK8DEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.054 [XNIO-1 task-3] 9GN6gJSjSmO2k68qVb0ljg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:43.054 [XNIO-1 task-3] 9GN6gJSjSmO2k68qVb0ljg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.055 [XNIO-1 task-4] FN2ZI_0VQ5-V_rJICkGOAw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.062 [XNIO-1 task-4] sIuxPzmuQ3Gcf79KxcXoKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.062 [XNIO-1 task-4] sIuxPzmuQ3Gcf79KxcXoKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.063 [XNIO-1 task-4] sIuxPzmuQ3Gcf79KxcXoKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.064 [XNIO-1 task-4] sIuxPzmuQ3Gcf79KxcXoKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.070 [XNIO-1 task-5] aKT4v3iTQXya3N3siVsTPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.070 [XNIO-1 task-5] aKT4v3iTQXya3N3siVsTPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.071 [XNIO-1 task-5] aKT4v3iTQXya3N3siVsTPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.072 [XNIO-1 task-5] aKT4v3iTQXya3N3siVsTPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 06ab7a41-f73f-4d4b-a0b6-a3743a9762a6 scope = null +18:00:43.073 [XNIO-1 task-3] Q0y4O9ZdS6293mEQwTYnKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.073 [XNIO-1 task-3] Q0y4O9ZdS6293mEQwTYnKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.075 [XNIO-1 task-3] Q0y4O9ZdS6293mEQwTYnKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.075 [XNIO-1 task-3] Q0y4O9ZdS6293mEQwTYnKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", authorization) +18:00:43.076 [XNIO-1 task-4] sIuxPzmuQ3Gcf79KxcXoKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.087 [XNIO-1 task-4] y-tPSTPMTsKj8oPbmAqdmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.088 [XNIO-1 task-4] y-tPSTPMTsKj8oPbmAqdmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.093 [XNIO-1 task-4] y-tPSTPMTsKj8oPbmAqdmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.093 [XNIO-1 task-4] y-tPSTPMTsKj8oPbmAqdmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:43.099 [XNIO-1 task-3] Q0y4O9ZdS6293mEQwTYnKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.102 [XNIO-1 task-5] aKT4v3iTQXya3N3siVsTPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.109 [XNIO-1 task-4] y-tPSTPMTsKj8oPbmAqdmA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.117 [XNIO-1 task-5] k3zYKIVEQ2e8SF48Mk-8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.118 [XNIO-1 task-5] k3zYKIVEQ2e8SF48Mk-8kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.118 [XNIO-1 task-5] k3zYKIVEQ2e8SF48Mk-8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.120 [XNIO-1 task-5] k3zYKIVEQ2e8SF48Mk-8kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.128 [XNIO-1 task-5] k3zYKIVEQ2e8SF48Mk-8kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.133 [XNIO-1 task-5] v3gSgbKOSc6MFi1RETcvSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.133 [XNIO-1 task-5] v3gSgbKOSc6MFi1RETcvSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.134 [XNIO-1 task-5] v3gSgbKOSc6MFi1RETcvSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.134 [XNIO-1 task-5] v3gSgbKOSc6MFi1RETcvSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.139 [XNIO-1 task-5] v3gSgbKOSc6MFi1RETcvSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.148 [XNIO-1 task-5] wpw1KzNoQ-aLlDvRXXfaAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.148 [XNIO-1 task-5] wpw1KzNoQ-aLlDvRXXfaAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.149 [XNIO-1 task-5] wpw1KzNoQ-aLlDvRXXfaAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.149 [XNIO-1 task-5] wpw1KzNoQ-aLlDvRXXfaAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.156 [XNIO-1 task-5] wpw1KzNoQ-aLlDvRXXfaAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.170 [XNIO-1 task-5] dCKmZ7_cQUOsLDo4WIVjMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.170 [XNIO-1 task-5] dCKmZ7_cQUOsLDo4WIVjMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.171 [XNIO-1 task-5] dCKmZ7_cQUOsLDo4WIVjMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.171 [XNIO-1 task-3] j3OrZrX4Q-KPNd74UYxXvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.171 [XNIO-1 task-3] j3OrZrX4Q-KPNd74UYxXvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.171 [XNIO-1 task-3] j3OrZrX4Q-KPNd74UYxXvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.173 [XNIO-1 task-3] j3OrZrX4Q-KPNd74UYxXvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", authorization) +18:00:43.172 [XNIO-1 task-5] dCKmZ7_cQUOsLDo4WIVjMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.180 [XNIO-1 task-5] dCKmZ7_cQUOsLDo4WIVjMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.189 [XNIO-1 task-3] j3OrZrX4Q-KPNd74UYxXvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:43.190 [XNIO-1 task-3] j3OrZrX4Q-KPNd74UYxXvw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.193 [XNIO-1 task-5] XeVibHJbTrS6ddBMgIWq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.193 [XNIO-1 task-5] XeVibHJbTrS6ddBMgIWq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.197 [XNIO-1 task-5] XeVibHJbTrS6ddBMgIWq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.197 [XNIO-1 task-5] XeVibHJbTrS6ddBMgIWq0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.206 [XNIO-1 task-5] XeVibHJbTrS6ddBMgIWq0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.214 [XNIO-1 task-5] AoWxW5TZQiK52kbhgOa72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.215 [XNIO-1 task-5] AoWxW5TZQiK52kbhgOa72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.216 [XNIO-1 task-5] AoWxW5TZQiK52kbhgOa72w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.216 [XNIO-1 task-5] AoWxW5TZQiK52kbhgOa72w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.225 [XNIO-1 task-5] AoWxW5TZQiK52kbhgOa72w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.227 [XNIO-1 task-3] 1Rp_7F3gR9upLaQGd9FZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.227 [XNIO-1 task-3] 1Rp_7F3gR9upLaQGd9FZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.227 [XNIO-1 task-3] 1Rp_7F3gR9upLaQGd9FZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.228 [XNIO-1 task-3] 1Rp_7F3gR9upLaQGd9FZCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9_br2HZPTliW2Lwzj8Spvg redirectUri = http://localhost:8080/authorization +18:00:43.235 [XNIO-1 task-5] 7E49UdklTuqAixUwPJeQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.236 [XNIO-1 task-5] 7E49UdklTuqAixUwPJeQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.236 [XNIO-1 task-5] 7E49UdklTuqAixUwPJeQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.237 [XNIO-1 task-5] 7E49UdklTuqAixUwPJeQeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.244 [XNIO-1 task-5] 7E49UdklTuqAixUwPJeQeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.253 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:06ce6bc9-9d53-486a-a50e-960a4d168f0d +18:00:43.254 [XNIO-1 task-3] 1Rp_7F3gR9upLaQGd9FZCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +Jun 28, 2024 6:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:43.261 [XNIO-1 task-5] vnjFZT6NT1KbPJ3F-Uz9_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.261 [XNIO-1 task-5] vnjFZT6NT1KbPJ3F-Uz9_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.261 [XNIO-1 task-5] vnjFZT6NT1KbPJ3F-Uz9_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.262 [XNIO-1 task-5] vnjFZT6NT1KbPJ3F-Uz9_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.265 [XNIO-1 task-5] vnjFZT6NT1KbPJ3F-Uz9_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:43.270 [XNIO-1 task-5] vnjFZT6NT1KbPJ3F-Uz9_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.275 [XNIO-1 task-5] MocAxdC9TJWAjkwJr2Eq0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.275 [XNIO-1 task-5] MocAxdC9TJWAjkwJr2Eq0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.275 [XNIO-1 task-5] MocAxdC9TJWAjkwJr2Eq0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.276 [XNIO-1 task-5] MocAxdC9TJWAjkwJr2Eq0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.280 [XNIO-1 task-3] 7ytcbdX-QsS3T9X-_rUymQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.280 [XNIO-1 task-3] 7ytcbdX-QsS3T9X-_rUymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.280 [XNIO-1 task-3] 7ytcbdX-QsS3T9X-_rUymQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.280 [XNIO-1 task-3] 7ytcbdX-QsS3T9X-_rUymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.281 [XNIO-1 task-4] 20_RzYCoTtiVioCfGDdvKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.281 [XNIO-1 task-4] 20_RzYCoTtiVioCfGDdvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.281 [XNIO-1 task-3] 7ytcbdX-QsS3T9X-_rUymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.282 [XNIO-1 task-3] 7ytcbdX-QsS3T9X-_rUymQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", authorization) +18:00:43.288 [XNIO-1 task-4] 20_RzYCoTtiVioCfGDdvKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.288 [XNIO-1 task-5] MocAxdC9TJWAjkwJr2Eq0g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.289 [XNIO-1 task-3] 7ytcbdX-QsS3T9X-_rUymQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.288 [XNIO-1 task-4] 20_RzYCoTtiVioCfGDdvKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.307 [XNIO-1 task-4] cJfst1PeSVqW0eNqi4cfEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.308 [XNIO-1 task-4] cJfst1PeSVqW0eNqi4cfEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.308 [XNIO-1 task-4] cJfst1PeSVqW0eNqi4cfEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.309 [XNIO-1 task-4] cJfst1PeSVqW0eNqi4cfEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.315 [XNIO-1 task-4] cJfst1PeSVqW0eNqi4cfEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.318 [XNIO-1 task-5] fvbBj0ssQLK0adjEj4JSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.318 [XNIO-1 task-5] fvbBj0ssQLK0adjEj4JSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.318 [XNIO-1 task-5] fvbBj0ssQLK0adjEj4JSwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.319 [XNIO-1 task-5] fvbBj0ssQLK0adjEj4JSwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vUneANj-RSeArLjsPygBIw redirectUri = http://localhost:8080/authorization +18:00:43.322 [XNIO-1 task-4] xbkfROQsSNOrrR1LiuF1AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.322 [XNIO-1 task-4] xbkfROQsSNOrrR1LiuF1AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.323 [XNIO-1 task-4] xbkfROQsSNOrrR1LiuF1AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.323 [XNIO-1 task-4] xbkfROQsSNOrrR1LiuF1AA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.327 [XNIO-1 task-5] fvbBj0ssQLK0adjEj4JSwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.329 [XNIO-1 task-4] xbkfROQsSNOrrR1LiuF1AA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.339 [XNIO-1 task-5] _CdT4YTyQoaR2IgqbaBCGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.340 [XNIO-1 task-5] _CdT4YTyQoaR2IgqbaBCGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.340 [XNIO-1 task-5] _CdT4YTyQoaR2IgqbaBCGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.340 [XNIO-1 task-5] _CdT4YTyQoaR2IgqbaBCGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:43.346 [XNIO-1 task-5] _CdT4YTyQoaR2IgqbaBCGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.353 [XNIO-1 task-5] wWV_RpJWTLu-iTLxGdX7Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.353 [XNIO-1 task-5] wWV_RpJWTLu-iTLxGdX7Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.355 [XNIO-1 task-5] wWV_RpJWTLu-iTLxGdX7Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.355 [XNIO-1 task-5] wWV_RpJWTLu-iTLxGdX7Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAxNjc4NDgtMzkwZS00OGY0LWIxZmYtYjMyMzZhMzM3Yzg5OkZla0M1eDJOVEZpZUtRblNFYzBjTUE=", "Basic ODAxNjc4NDgtMzkwZS00OGY0LWIxZmYtYjMyMzZhMzM3Yzg5OkZla0M1eDJOVEZpZUtRblNFYzBjTUE=", authorization) +18:00:43.359 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:af873866 +18:00:43.363 [XNIO-1 task-5] wWV_RpJWTLu-iTLxGdX7Yg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.370 [XNIO-1 task-5] b0em0gkTTZSC1RZ4xfFlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.370 [XNIO-1 task-5] b0em0gkTTZSC1RZ4xfFlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.370 [XNIO-1 task-4] Wi2fXq9SSHSZmXxKWNrfeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.371 [XNIO-1 task-4] Wi2fXq9SSHSZmXxKWNrfeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.371 [XNIO-1 task-4] Wi2fXq9SSHSZmXxKWNrfeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.372 [XNIO-1 task-4] Wi2fXq9SSHSZmXxKWNrfeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.372 [XNIO-1 task-5] b0em0gkTTZSC1RZ4xfFlNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.373 [XNIO-1 task-4] Wi2fXq9SSHSZmXxKWNrfeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = P2bVeLHWTU6lhBqJ42gKgA redirectUri = http://localhost:8080/authorization +18:00:43.378 [XNIO-1 task-5] b0em0gkTTZSC1RZ4xfFlNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.382 [XNIO-1 task-4] Wi2fXq9SSHSZmXxKWNrfeA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.382 [XNIO-1 task-5] ASCJFRaPRbq4bxbQQsGWpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.382 [XNIO-1 task-5] ASCJFRaPRbq4bxbQQsGWpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.383 [XNIO-1 task-5] ASCJFRaPRbq4bxbQQsGWpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.383 [XNIO-1 task-5] ASCJFRaPRbq4bxbQQsGWpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODAxNjc4NDgtMzkwZS00OGY0LWIxZmYtYjMyMzZhMzM3Yzg5OkZla0M1eDJOVEZpZUtRblNFYzBjTUE=", "Basic ODAxNjc4NDgtMzkwZS00OGY0LWIxZmYtYjMyMzZhMzM3Yzg5OkZla0M1eDJOVEZpZUtRblNFYzBjTUE=", authorization) +18:00:43.388 [XNIO-1 task-5] ASCJFRaPRbq4bxbQQsGWpg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.396 [XNIO-1 task-5] GVhnRyQAQQ-ijs8jWDbUTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.394 [XNIO-1 task-4] ME1-5mLGQBajoqXWZTSQkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.401 [XNIO-1 task-5] GVhnRyQAQQ-ijs8jWDbUTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.405 [XNIO-1 task-5] GVhnRyQAQQ-ijs8jWDbUTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.406 [XNIO-1 task-5] GVhnRyQAQQ-ijs8jWDbUTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.407 [XNIO-1 task-5] GVhnRyQAQQ-ijs8jWDbUTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.407 [XNIO-1 task-4] ME1-5mLGQBajoqXWZTSQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.407 [XNIO-1 task-4] ME1-5mLGQBajoqXWZTSQkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.416 [XNIO-1 task-4] ME1-5mLGQBajoqXWZTSQkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.417 [XNIO-1 task-5] GVhnRyQAQQ-ijs8jWDbUTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.422 [XNIO-1 task-4] 0HMAqUH4ScaVvJuEDWB1FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.423 [XNIO-1 task-4] 0HMAqUH4ScaVvJuEDWB1FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.423 [XNIO-1 task-4] 0HMAqUH4ScaVvJuEDWB1FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.424 [XNIO-1 task-4] 0HMAqUH4ScaVvJuEDWB1FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:43.430 [XNIO-1 task-5] YoMFzon-QmOoaoCoFNfIKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.430 [XNIO-1 task-5] YoMFzon-QmOoaoCoFNfIKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.430 [XNIO-1 task-5] YoMFzon-QmOoaoCoFNfIKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.431 [XNIO-1 task-5] YoMFzon-QmOoaoCoFNfIKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.431 [XNIO-1 task-4] 0HMAqUH4ScaVvJuEDWB1FQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.434 [XNIO-1 task-3] 3cxDDMcVSr-VTzIBLRjH7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.434 [XNIO-1 task-3] 3cxDDMcVSr-VTzIBLRjH7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.434 [XNIO-1 task-3] 3cxDDMcVSr-VTzIBLRjH7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.435 [XNIO-1 task-3] 3cxDDMcVSr-VTzIBLRjH7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:43.438 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b79c68a8 +18:00:43.439 [XNIO-1 task-4] GN3zS6KPSHehWgKd_bTuhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.439 [XNIO-1 task-4] GN3zS6KPSHehWgKd_bTuhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.440 [XNIO-1 task-4] GN3zS6KPSHehWgKd_bTuhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.440 [XNIO-1 task-4] GN3zS6KPSHehWgKd_bTuhQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.441 [XNIO-1 task-5] YoMFzon-QmOoaoCoFNfIKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.447 [XNIO-1 task-4] GN3zS6KPSHehWgKd_bTuhQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.449 [XNIO-1 task-3] 3cxDDMcVSr-VTzIBLRjH7A ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.453 [XNIO-1 task-4] l7FHvErOTNya71-FV8nfkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.453 [XNIO-1 task-4] l7FHvErOTNya71-FV8nfkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.453 [XNIO-1 task-4] l7FHvErOTNya71-FV8nfkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.454 [XNIO-1 task-4] l7FHvErOTNya71-FV8nfkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.459 [XNIO-1 task-4] l7FHvErOTNya71-FV8nfkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.465 [XNIO-1 task-4] vvU9B4UnQbKf4O0Un3Jt3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.465 [XNIO-1 task-4] vvU9B4UnQbKf4O0Un3Jt3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.465 [XNIO-1 task-4] vvU9B4UnQbKf4O0Un3Jt3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.466 [XNIO-1 task-4] vvU9B4UnQbKf4O0Un3Jt3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.471 [XNIO-1 task-4] vvU9B4UnQbKf4O0Un3Jt3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.479 [XNIO-1 task-4] 6jQ8u44nRI6qcgABN2PoHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.479 [XNIO-1 task-4] 6jQ8u44nRI6qcgABN2PoHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.480 [XNIO-1 task-4] 6jQ8u44nRI6qcgABN2PoHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.481 [XNIO-1 task-4] 6jQ8u44nRI6qcgABN2PoHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.486 [XNIO-1 task-4] 6jQ8u44nRI6qcgABN2PoHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.499 [XNIO-1 task-4] CC3Ok3iPSNquD3jqeLm30A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.499 [XNIO-1 task-4] CC3Ok3iPSNquD3jqeLm30A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.501 [XNIO-1 task-4] CC3Ok3iPSNquD3jqeLm30A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.502 [XNIO-1 task-4] CC3Ok3iPSNquD3jqeLm30A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.508 [XNIO-1 task-4] CC3Ok3iPSNquD3jqeLm30A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.513 [XNIO-1 task-4] MWcoyvATRnqd0uvxtaIQ6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.514 [XNIO-1 task-5] ZLxGcMvYTcy2Aev8gDWyEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.514 [XNIO-1 task-4] MWcoyvATRnqd0uvxtaIQ6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.514 [XNIO-1 task-5] ZLxGcMvYTcy2Aev8gDWyEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.515 [XNIO-1 task-4] MWcoyvATRnqd0uvxtaIQ6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.515 [XNIO-1 task-4] MWcoyvATRnqd0uvxtaIQ6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.515 [XNIO-1 task-5] ZLxGcMvYTcy2Aev8gDWyEA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:43.515 [XNIO-1 task-5] ZLxGcMvYTcy2Aev8gDWyEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.521 [XNIO-1 task-5] ZLxGcMvYTcy2Aev8gDWyEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.527 [XNIO-1 task-4] MWcoyvATRnqd0uvxtaIQ6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.527 [XNIO-1 task-5] Jyjcr6sVS66xa1K2Ui-Ifg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.528 [XNIO-1 task-5] Jyjcr6sVS66xa1K2Ui-Ifg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.528 [XNIO-1 task-5] Jyjcr6sVS66xa1K2Ui-Ifg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.534 [XNIO-1 task-5] Jyjcr6sVS66xa1K2Ui-Ifg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:43.541 [XNIO-1 task-5] Jyjcr6sVS66xa1K2Ui-Ifg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.543 [XNIO-1 task-4] qbAe_jTyQVuW884mLUNnwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.543 [XNIO-1 task-4] qbAe_jTyQVuW884mLUNnwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.543 [XNIO-1 task-4] qbAe_jTyQVuW884mLUNnwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.544 [XNIO-1 task-4] qbAe_jTyQVuW884mLUNnwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.548 [XNIO-1 task-5] Q1YnejRfTtej7Nr6Q-U-DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.548 [XNIO-1 task-5] Q1YnejRfTtej7Nr6Q-U-DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.549 [XNIO-1 task-5] Q1YnejRfTtej7Nr6Q-U-DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.550 [XNIO-1 task-5] Q1YnejRfTtej7Nr6Q-U-DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:43.557 [XNIO-1 task-4] qbAe_jTyQVuW884mLUNnwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.560 [XNIO-1 task-5] Q1YnejRfTtej7Nr6Q-U-DQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.587 [XNIO-1 task-5] YQN4OFOISGGGtZdJbqOQfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.587 [XNIO-1 task-5] YQN4OFOISGGGtZdJbqOQfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.587 [XNIO-1 task-5] YQN4OFOISGGGtZdJbqOQfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.588 [XNIO-1 task-5] YQN4OFOISGGGtZdJbqOQfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:43.590 [XNIO-1 task-4] jAXGZXokQ92ydDXw_tev3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.590 [XNIO-1 task-4] jAXGZXokQ92ydDXw_tev3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.590 [XNIO-1 task-4] jAXGZXokQ92ydDXw_tev3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.591 [XNIO-1 task-4] jAXGZXokQ92ydDXw_tev3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.593 [XNIO-1 task-5] YQN4OFOISGGGtZdJbqOQfQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.599 [XNIO-1 task-5] rL33YwCpRyiAiLGSWWquTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.600 [XNIO-1 task-5] rL33YwCpRyiAiLGSWWquTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.601 [XNIO-1 task-5] rL33YwCpRyiAiLGSWWquTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.601 [XNIO-1 task-5] rL33YwCpRyiAiLGSWWquTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", authorization) +18:00:43.607 [XNIO-1 task-5] rL33YwCpRyiAiLGSWWquTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.615 [XNIO-1 task-5] OEF_ojroSKiUBXvu3t_kWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.616 [XNIO-1 task-5] OEF_ojroSKiUBXvu3t_kWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.616 [XNIO-1 task-5] OEF_ojroSKiUBXvu3t_kWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.617 [XNIO-1 task-4] jAXGZXokQ92ydDXw_tev3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.617 [XNIO-1 task-5] OEF_ojroSKiUBXvu3t_kWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.622 [XNIO-1 task-5] OEF_ojroSKiUBXvu3t_kWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.629 [XNIO-1 task-5] 6S8x8VdqSiOS0A1BqNPV8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.629 [XNIO-1 task-5] 6S8x8VdqSiOS0A1BqNPV8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.630 [XNIO-1 task-5] 6S8x8VdqSiOS0A1BqNPV8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.630 [XNIO-1 task-5] 6S8x8VdqSiOS0A1BqNPV8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.635 [XNIO-1 task-3] 9PXcG4SkRkW_zyzzumD9gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.635 [XNIO-1 task-3] 9PXcG4SkRkW_zyzzumD9gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.636 [XNIO-1 task-3] 9PXcG4SkRkW_zyzzumD9gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.636 [XNIO-1 task-3] 9PXcG4SkRkW_zyzzumD9gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:43.642 [XNIO-1 task-5] 6S8x8VdqSiOS0A1BqNPV8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.646 [XNIO-1 task-3] 9PXcG4SkRkW_zyzzumD9gg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:43.647 [XNIO-1 task-3] 9PXcG4SkRkW_zyzzumD9gg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.651 [XNIO-1 task-5] As3w2FsEQi6Stoz5TrS9tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.651 [XNIO-1 task-5] As3w2FsEQi6Stoz5TrS9tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.651 [XNIO-1 task-5] As3w2FsEQi6Stoz5TrS9tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.656 [XNIO-1 task-5] As3w2FsEQi6Stoz5TrS9tg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.662 [XNIO-1 task-5] As3w2FsEQi6Stoz5TrS9tg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.667 [XNIO-1 task-5] rzKBuD07Rfao8_qPEBtrhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.668 [XNIO-1 task-5] rzKBuD07Rfao8_qPEBtrhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.668 [XNIO-1 task-5] rzKBuD07Rfao8_qPEBtrhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.668 [XNIO-1 task-5] rzKBuD07Rfao8_qPEBtrhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:43.670 [XNIO-1 task-3] 9HuNQthuSYyU2XhjWTMhRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +Jun 28, 2024 6:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +18:00:43.671 [XNIO-1 task-3] 9HuNQthuSYyU2XhjWTMhRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.671 [XNIO-1 task-3] 9HuNQthuSYyU2XhjWTMhRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +18:00:43.672 [XNIO-1 task-3] 9HuNQthuSYyU2XhjWTMhRQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.672 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:43.677 [XNIO-1 task-3] 9HuNQthuSYyU2XhjWTMhRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.686 [XNIO-1 task-3] 4nNcH7HCTRWho7NfB9fHpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.686 [XNIO-1 task-3] 4nNcH7HCTRWho7NfB9fHpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.686 [XNIO-1 task-3] 4nNcH7HCTRWho7NfB9fHpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.687 [XNIO-1 task-3] 4nNcH7HCTRWho7NfB9fHpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:43.692 [XNIO-1 task-3] 4nNcH7HCTRWho7NfB9fHpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.697 [XNIO-1 task-3] mpGECil5Ta-hdo18z_DUxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.698 [XNIO-1 task-3] mpGECil5Ta-hdo18z_DUxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.699 [XNIO-1 task-3] mpGECil5Ta-hdo18z_DUxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.699 [XNIO-1 task-3] mpGECil5Ta-hdo18z_DUxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.701 [XNIO-1 task-5] rzKBuD07Rfao8_qPEBtrhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.705 [XNIO-1 task-3] mpGECil5Ta-hdo18z_DUxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.712 [XNIO-1 task-3] GAZERiBvQh-cQQTlG5yMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.712 [XNIO-1 task-3] GAZERiBvQh-cQQTlG5yMiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.713 [XNIO-1 task-3] GAZERiBvQh-cQQTlG5yMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.713 [XNIO-1 task-3] GAZERiBvQh-cQQTlG5yMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.718 [XNIO-1 task-3] GAZERiBvQh-cQQTlG5yMiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.722 [XNIO-1 task-3] QYzPva47RjCzsIWr53kTkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.723 [XNIO-1 task-3] QYzPva47RjCzsIWr53kTkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.723 [XNIO-1 task-3] QYzPva47RjCzsIWr53kTkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.723 [XNIO-1 task-3] QYzPva47RjCzsIWr53kTkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:43.731 [XNIO-1 task-3] QYzPva47RjCzsIWr53kTkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.738 [XNIO-1 task-3] 4NZH1yovRsWkRwD9_WtKoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.739 [XNIO-1 task-3] 4NZH1yovRsWkRwD9_WtKoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.739 [XNIO-1 task-3] 4NZH1yovRsWkRwD9_WtKoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.739 [XNIO-1 task-3] 4NZH1yovRsWkRwD9_WtKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:43.747 [XNIO-1 task-3] 4NZH1yovRsWkRwD9_WtKoA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.758 [XNIO-1 task-3] kYgYoH6yTOyN9J-yHhaqcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.758 [XNIO-1 task-3] kYgYoH6yTOyN9J-yHhaqcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.758 [XNIO-1 task-3] kYgYoH6yTOyN9J-yHhaqcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.759 [XNIO-1 task-3] kYgYoH6yTOyN9J-yHhaqcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:43.764 [XNIO-1 task-3] kYgYoH6yTOyN9J-yHhaqcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.773 [XNIO-1 task-3] ROaZQeyfQduz3dwSM_KH2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.773 [XNIO-1 task-3] ROaZQeyfQduz3dwSM_KH2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.774 [XNIO-1 task-3] ROaZQeyfQduz3dwSM_KH2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.774 [XNIO-1 task-3] ROaZQeyfQduz3dwSM_KH2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:43.784 [XNIO-1 task-3] ROaZQeyfQduz3dwSM_KH2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.790 [XNIO-1 task-3] t2qfRs4qT4CCjjMLoo7mug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.790 [XNIO-1 task-3] t2qfRs4qT4CCjjMLoo7mug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.790 [XNIO-1 task-3] t2qfRs4qT4CCjjMLoo7mug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.791 [XNIO-1 task-3] t2qfRs4qT4CCjjMLoo7mug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:43.797 [XNIO-1 task-3] t2qfRs4qT4CCjjMLoo7mug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.798 [XNIO-1 task-5] -EVw0WEpRjq9k8am1oo_ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.799 [XNIO-1 task-5] -EVw0WEpRjq9k8am1oo_ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.800 [XNIO-1 task-5] -EVw0WEpRjq9k8am1oo_ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.800 [XNIO-1 task-5] -EVw0WEpRjq9k8am1oo_ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", authorization) +18:00:43.804 [XNIO-1 task-3] Y-lGyWBnS1Sk1Rr6tkVi-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.804 [XNIO-1 task-3] Y-lGyWBnS1Sk1Rr6tkVi-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.805 [XNIO-1 task-3] Y-lGyWBnS1Sk1Rr6tkVi-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.806 [XNIO-1 task-3] Y-lGyWBnS1Sk1Rr6tkVi-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:43.810 [XNIO-1 task-5] -EVw0WEpRjq9k8am1oo_ow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:43.810 [XNIO-1 task-5] -EVw0WEpRjq9k8am1oo_ow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.813 [XNIO-1 task-3] Y-lGyWBnS1Sk1Rr6tkVi-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.839 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b303847b-cf37-4313-802c-648aec6dfbed +18:00:43.840 [XNIO-1 task-4] 2QTKKiu3RYCk_BeA7NCzjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.840 [XNIO-1 task-4] 2QTKKiu3RYCk_BeA7NCzjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.840 [XNIO-1 task-4] 2QTKKiu3RYCk_BeA7NCzjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.842 [XNIO-1 task-4] 2QTKKiu3RYCk_BeA7NCzjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qFwN59RXTjilRGyFTkj7gg redirectUri = http://localhost:8080/authorization +18:00:43.849 [XNIO-1 task-5] YVSKSGTaQ-yn1zA1XFqWJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.849 [XNIO-1 task-5] YVSKSGTaQ-yn1zA1XFqWJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.850 [XNIO-1 task-5] YVSKSGTaQ-yn1zA1XFqWJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.850 [XNIO-1 task-5] YVSKSGTaQ-yn1zA1XFqWJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.854 [XNIO-1 task-3] vhwxmg8uRTST7zaR-GnuIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.854 [XNIO-1 task-3] vhwxmg8uRTST7zaR-GnuIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.854 [XNIO-1 task-4] 2QTKKiu3RYCk_BeA7NCzjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.854 [XNIO-1 task-3] vhwxmg8uRTST7zaR-GnuIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.855 [XNIO-1 task-3] vhwxmg8uRTST7zaR-GnuIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", authorization) +18:00:43.855 [XNIO-1 task-5] YVSKSGTaQ-yn1zA1XFqWJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.856 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.862 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b303847b-cf37-4313-802c-648aec6dfbed +18:00:43.863 [XNIO-1 task-4] PXOAa7lxR22ZELwiJJn8Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.863 [XNIO-1 task-4] PXOAa7lxR22ZELwiJJn8Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.863 [XNIO-1 task-4] PXOAa7lxR22ZELwiJJn8Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.867 [XNIO-1 task-4] PXOAa7lxR22ZELwiJJn8Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:43.868 [XNIO-1 task-4] PXOAa7lxR22ZELwiJJn8Ow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.868 [XNIO-1 task-3] vhwxmg8uRTST7zaR-GnuIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:43.868 [XNIO-1 task-3] vhwxmg8uRTST7zaR-GnuIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +18:00:43.871 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad20523e-8372-43e5-905b-64b104ded90c + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +18:00:43.871 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6192e6df-a0e5-4420-84f6-9b57a9045ef4 +18:00:43.871 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad20523e-8372-43e5-905b-64b104ded90c +18:00:43.873 [XNIO-1 task-4] PXOAa7lxR22ZELwiJJn8Ow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.879 [XNIO-1 task-4] 8jd70nHXQAG48er4oHrNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.880 [XNIO-1 task-4] 8jd70nHXQAG48er4oHrNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.880 [XNIO-1 task-4] 8jd70nHXQAG48er4oHrNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.880 [XNIO-1 task-4] 8jd70nHXQAG48er4oHrNdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.887 [XNIO-1 task-4] 8jd70nHXQAG48er4oHrNdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.894 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:344abcb4-9699-4257-8f31-6528e7e3ad59 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:43.895 [XNIO-1 task-4] ynYevZZZQfO5r-42PuwP5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:43.895 [XNIO-1 task-4] ynYevZZZQfO5r-42PuwP5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:43.896 [XNIO-1 task-4] ynYevZZZQfO5r-42PuwP5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:43.898 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:43.908 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.917 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:43.919 [XNIO-1 task-4] DHqWoQRuSIam9gubFTlE1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.920 [XNIO-1 task-4] DHqWoQRuSIam9gubFTlE1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.920 [XNIO-1 task-4] DHqWoQRuSIam9gubFTlE1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.920 [XNIO-1 task-4] DHqWoQRuSIam9gubFTlE1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.927 [XNIO-1 task-4] DHqWoQRuSIam9gubFTlE1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.935 [XNIO-1 task-4] emSnJsijS0mA3IwUbKI4BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.935 [XNIO-1 task-4] emSnJsijS0mA3IwUbKI4BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.935 [XNIO-1 task-4] emSnJsijS0mA3IwUbKI4BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.936 [XNIO-1 task-4] emSnJsijS0mA3IwUbKI4BQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.940 [XNIO-1 task-3] sreS6esIQSKRhCpuQjWQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.940 [XNIO-1 task-3] sreS6esIQSKRhCpuQjWQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.941 [XNIO-1 task-3] sreS6esIQSKRhCpuQjWQBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.941 [XNIO-1 task-3] sreS6esIQSKRhCpuQjWQBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XiU-4zsJT2-J7TOPE0dyew redirectUri = http://localhost:8080/authorization +18:00:43.942 [XNIO-1 task-4] emSnJsijS0mA3IwUbKI4BQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.948 [XNIO-1 task-3] sreS6esIQSKRhCpuQjWQBQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:43.952 [XNIO-1 task-3] 6rLx9WJoTtun_CnRX3rKpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.952 [XNIO-1 task-3] 6rLx9WJoTtun_CnRX3rKpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.954 [XNIO-1 task-3] 6rLx9WJoTtun_CnRX3rKpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.955 [XNIO-1 task-3] 6rLx9WJoTtun_CnRX3rKpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.960 [XNIO-1 task-3] 6rLx9WJoTtun_CnRX3rKpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.968 [XNIO-1 task-3] XxQACoVyR7SmXorIhuiNtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.968 [XNIO-1 task-3] XxQACoVyR7SmXorIhuiNtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.969 [XNIO-1 task-3] XxQACoVyR7SmXorIhuiNtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.970 [XNIO-1 task-3] XxQACoVyR7SmXorIhuiNtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.976 [XNIO-1 task-3] XxQACoVyR7SmXorIhuiNtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.982 [XNIO-1 task-3] qpFblcnMQ_mYIy88sbm9Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.982 [XNIO-1 task-3] qpFblcnMQ_mYIy88sbm9Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.983 [XNIO-1 task-3] qpFblcnMQ_mYIy88sbm9Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.983 [XNIO-1 task-3] qpFblcnMQ_mYIy88sbm9Aw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:43.989 [XNIO-1 task-3] qpFblcnMQ_mYIy88sbm9Aw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:43.999 [XNIO-1 task-3] HXeJsF-6T02Vij2zM0MQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.999 [XNIO-1 task-3] HXeJsF-6T02Vij2zM0MQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.999 [XNIO-1 task-3] HXeJsF-6T02Vij2zM0MQ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:43.999 [XNIO-1 task-4] uLa0rnRPT5apgbQCTqavRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.000 [XNIO-1 task-4] uLa0rnRPT5apgbQCTqavRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.000 [XNIO-1 task-3] HXeJsF-6T02Vij2zM0MQ5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 26762992-b9f4-4092-8d22-48d71bf7c301 scope = null +18:00:44.000 [XNIO-1 task-4] uLa0rnRPT5apgbQCTqavRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.000 [XNIO-1 task-4] uLa0rnRPT5apgbQCTqavRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.004 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:54e80bd1 +18:00:44.005 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:26762992-b9f4-4092-8d22-48d71bf7c301 +18:00:44.005 [XNIO-1 task-4] uLa0rnRPT5apgbQCTqavRw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 26762992-b9f4-4092-8d22-48d71bf7c301 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.011 [XNIO-1 task-3] BKNDkuh_TbS5Dl0swKcgbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.011 [XNIO-1 task-3] BKNDkuh_TbS5Dl0swKcgbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.012 [XNIO-1 task-3] BKNDkuh_TbS5Dl0swKcgbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.012 [XNIO-1 task-3] BKNDkuh_TbS5Dl0swKcgbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:44.014 [XNIO-1 task-4] YNNToSCgSX2xEMq0SfwRWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.014 [XNIO-1 task-4] YNNToSCgSX2xEMq0SfwRWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.014 [XNIO-1 task-4] YNNToSCgSX2xEMq0SfwRWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.015 [XNIO-1 task-4] YNNToSCgSX2xEMq0SfwRWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:44.017 [XNIO-1 task-3] BKNDkuh_TbS5Dl0swKcgbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.020 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:26762992-b9f4-4092-8d22-48d71bf7c301 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 26762992-b9f4-4092-8d22-48d71bf7c301 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.025 [XNIO-1 task-4] 3weRh0p7SluUlxNu2iM9zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.025 [XNIO-1 task-4] 3weRh0p7SluUlxNu2iM9zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:00:44.025 [XNIO-1 task-4] 3weRh0p7SluUlxNu2iM9zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.027 [XNIO-1 task-4] 3weRh0p7SluUlxNu2iM9zA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +18:00:44.045 [XNIO-1 task-4] m8erhUtrQfCtsQZBbkCKZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:00:44.046 [XNIO-1 task-4] m8erhUtrQfCtsQZBbkCKZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:44.049 [XNIO-1 task-4] m8erhUtrQfCtsQZBbkCKZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.049 [XNIO-1 task-4] m8erhUtrQfCtsQZBbkCKZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +18:00:44.050 [XNIO-1 task-4] m8erhUtrQfCtsQZBbkCKZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.057 [XNIO-1 task-5] 6M_t1aIESK2gvCAtkrqfBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.057 [XNIO-1 task-5] 6M_t1aIESK2gvCAtkrqfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +18:00:44.058 [XNIO-1 task-5] 6M_t1aIESK2gvCAtkrqfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.058 [XNIO-1 task-4] m8erhUtrQfCtsQZBbkCKZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.058 [XNIO-1 task-5] 6M_t1aIESK2gvCAtkrqfBg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -RDtg4uyRc2PF7_yEteOKA redirectUri = http://localhost:8080/authorization +18:00:44.060 [XNIO-1 task-3] XdfOjRtgQziF7Vg3OsKznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.060 [XNIO-1 task-3] XdfOjRtgQziF7Vg3OsKznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.060 [XNIO-1 task-3] XdfOjRtgQziF7Vg3OsKznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.061 [XNIO-1 task-3] XdfOjRtgQziF7Vg3OsKznw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = UyicSC93Ta2EYnLlGnoHFw redirectUri = http://localhost:8080/authorization +18:00:44.070 [XNIO-1 task-3] XdfOjRtgQziF7Vg3OsKznw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.070 [XNIO-1 task-3] XdfOjRtgQziF7Vg3OsKznw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.071 [XNIO-1 task-4] S3MdjbRVQk6_OP6I3r5i1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.071 [XNIO-1 task-4] S3MdjbRVQk6_OP6I3r5i1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.072 [XNIO-1 task-4] S3MdjbRVQk6_OP6I3r5i1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:44.073 [XNIO-1 task-5] 6M_t1aIESK2gvCAtkrqfBg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:44.073 [XNIO-1 task-5] 6M_t1aIESK2gvCAtkrqfBg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.082 [XNIO-1 task-4] S3MdjbRVQk6_OP6I3r5i1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.092 [XNIO-1 task-4] cXqkfI9qTiGvXAdULZHGKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.093 [XNIO-1 task-4] cXqkfI9qTiGvXAdULZHGKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.093 [XNIO-1 task-4] cXqkfI9qTiGvXAdULZHGKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.094 [XNIO-1 task-4] cXqkfI9qTiGvXAdULZHGKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.097 [XNIO-1 task-5] Sv6Yyal7TtC9rrf1OrGuyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.097 [XNIO-1 task-5] Sv6Yyal7TtC9rrf1OrGuyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.098 [XNIO-1 task-5] Sv6Yyal7TtC9rrf1OrGuyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.098 [XNIO-1 task-5] Sv6Yyal7TtC9rrf1OrGuyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", authorization) +18:00:44.100 [XNIO-1 task-4] cXqkfI9qTiGvXAdULZHGKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.101 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:20656d22-a732-4d81-a22e-04f279de9108 +18:00:44.111 [XNIO-1 task-4] NxZglrNXRgK1nb5xXgcqLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.111 [XNIO-1 task-4] NxZglrNXRgK1nb5xXgcqLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.111 [XNIO-1 task-4] NxZglrNXRgK1nb5xXgcqLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.112 [XNIO-1 task-4] NxZglrNXRgK1nb5xXgcqLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:44.119 [XNIO-1 task-5] Sv6Yyal7TtC9rrf1OrGuyA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:44.120 [XNIO-1 task-3] SXSjBG-1RtK0KRuNNZJZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.120 [XNIO-1 task-3] SXSjBG-1RtK0KRuNNZJZ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.121 [XNIO-1 task-3] SXSjBG-1RtK0KRuNNZJZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.121 [XNIO-1 task-3] SXSjBG-1RtK0KRuNNZJZ7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", authorization) +18:00:44.126 [XNIO-1 task-4] NxZglrNXRgK1nb5xXgcqLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.135 [XNIO-1 task-4] dNZpodrXTQy0tDZwxMMMIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.135 [XNIO-1 task-4] dNZpodrXTQy0tDZwxMMMIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.136 [XNIO-1 task-4] dNZpodrXTQy0tDZwxMMMIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.136 [XNIO-1 task-4] dNZpodrXTQy0tDZwxMMMIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:44.142 [XNIO-1 task-4] dNZpodrXTQy0tDZwxMMMIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.150 [XNIO-1 task-4] JFwA5A_XTza-Pmgijjhp4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.150 [XNIO-1 task-4] JFwA5A_XTza-Pmgijjhp4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.151 [XNIO-1 task-4] JFwA5A_XTza-Pmgijjhp4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.151 [XNIO-1 task-4] JFwA5A_XTza-Pmgijjhp4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:44.153 [XNIO-1 task-3] SXSjBG-1RtK0KRuNNZJZ7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:44.154 [XNIO-1 task-3] SXSjBG-1RtK0KRuNNZJZ7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.183 [XNIO-1 task-4] JFwA5A_XTza-Pmgijjhp4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.184 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:44.184 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e7c89cf2-134c-4112-8168-a973c8ffd06a +18:00:44.193 [XNIO-1 task-3] xhXSIVyRTv-AC1S3qHU9yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.194 [XNIO-1 task-3] xhXSIVyRTv-AC1S3qHU9yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.194 [XNIO-1 task-3] xhXSIVyRTv-AC1S3qHU9yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.197 [XNIO-1 task-3] xhXSIVyRTv-AC1S3qHU9yg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.205 [XNIO-1 task-3] xhXSIVyRTv-AC1S3qHU9yg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.214 [XNIO-1 task-3] Qvub4RvsQSSNqMJxAefQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.214 [XNIO-1 task-3] Qvub4RvsQSSNqMJxAefQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.214 [XNIO-1 task-3] Qvub4RvsQSSNqMJxAefQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.216 [XNIO-1 task-3] Qvub4RvsQSSNqMJxAefQNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.217 [XNIO-1 task-4] 8lH3DZCpQ4S1arlVE-LmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.217 [XNIO-1 task-4] 8lH3DZCpQ4S1arlVE-LmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.218 [XNIO-1 task-4] 8lH3DZCpQ4S1arlVE-LmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.218 [XNIO-1 task-4] 8lH3DZCpQ4S1arlVE-LmMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = fWyb9c7NTlyf9uPFmQQv-w redirectUri = http://localhost:8080/authorization +18:00:44.221 [XNIO-1 task-3] Qvub4RvsQSSNqMJxAefQNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.224 [XNIO-1 task-3] 8-gFLzJYSC-nUFVXHy0l2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.225 [XNIO-1 task-3] 8-gFLzJYSC-nUFVXHy0l2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.226 [XNIO-1 task-4] 8lH3DZCpQ4S1arlVE-LmMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.226 [XNIO-1 task-3] 8-gFLzJYSC-nUFVXHy0l2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.226 [XNIO-1 task-3] 8-gFLzJYSC-nUFVXHy0l2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", authorization) +18:00:44.227 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:40302644-2862-43a1-a9ff-c78d315faf53 +18:00:44.228 [XNIO-1 task-5] 99w9k7YFTtmoCwIWwHL0bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.228 [XNIO-1 task-5] 99w9k7YFTtmoCwIWwHL0bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.229 [XNIO-1 task-5] 99w9k7YFTtmoCwIWwHL0bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.229 [XNIO-1 task-5] 99w9k7YFTtmoCwIWwHL0bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:44.236 [XNIO-1 task-3] 8-gFLzJYSC-nUFVXHy0l2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:44.236 [XNIO-1 task-3] 8-gFLzJYSC-nUFVXHy0l2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.237 [XNIO-1 task-5] 99w9k7YFTtmoCwIWwHL0bQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.246 [XNIO-1 task-3] 60hoX23kReqPdk3JYdOAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.246 [XNIO-1 task-3] 60hoX23kReqPdk3JYdOAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.246 [XNIO-1 task-3] 60hoX23kReqPdk3JYdOAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.248 [XNIO-1 task-3] 60hoX23kReqPdk3JYdOAZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.261 [XNIO-1 task-3] 60hoX23kReqPdk3JYdOAZA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.268 [XNIO-1 task-3] CEzH0xGURzWPqCT41rmISQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.268 [XNIO-1 task-3] CEzH0xGURzWPqCT41rmISQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.268 [XNIO-1 task-3] CEzH0xGURzWPqCT41rmISQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.269 [XNIO-1 task-3] CEzH0xGURzWPqCT41rmISQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:44.273 [XNIO-1 task-5] I1o_xg9_SgKeJmjcziPwpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.273 [XNIO-1 task-5] I1o_xg9_SgKeJmjcziPwpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.273 [XNIO-1 task-5] I1o_xg9_SgKeJmjcziPwpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.274 [XNIO-1 task-5] I1o_xg9_SgKeJmjcziPwpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", authorization) +18:00:44.274 [XNIO-1 task-3] CEzH0xGURzWPqCT41rmISQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.279 [XNIO-1 task-3] usC_O7o_Rt-krTMHjGFtQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.280 [XNIO-1 task-3] usC_O7o_Rt-krTMHjGFtQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.280 [XNIO-1 task-3] usC_O7o_Rt-krTMHjGFtQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.280 [XNIO-1 task-3] usC_O7o_Rt-krTMHjGFtQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:44.285 [XNIO-1 task-5] I1o_xg9_SgKeJmjcziPwpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:44.285 [XNIO-1 task-5] I1o_xg9_SgKeJmjcziPwpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.286 [XNIO-1 task-3] usC_O7o_Rt-krTMHjGFtQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.289 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:54e80bd1 +18:00:44.292 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:54e80bd1 +18:00:44.298 [XNIO-1 task-3] TRd438BHRHetX7922U3KaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.298 [XNIO-1 task-3] TRd438BHRHetX7922U3KaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.298 [XNIO-1 task-3] TRd438BHRHetX7922U3KaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.299 [XNIO-1 task-3] TRd438BHRHetX7922U3KaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.305 [XNIO-1 task-3] TRd438BHRHetX7922U3KaA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.311 [XNIO-1 task-3] zbDLL4AMSzWScmtuiKg2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.311 [XNIO-1 task-3] zbDLL4AMSzWScmtuiKg2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.311 [XNIO-1 task-3] zbDLL4AMSzWScmtuiKg2YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.312 [XNIO-1 task-3] zbDLL4AMSzWScmtuiKg2YA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.318 [XNIO-1 task-3] zbDLL4AMSzWScmtuiKg2YA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.324 [XNIO-1 task-3] 7xwByCkaSsW5LnMyey-2Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.324 [XNIO-1 task-3] 7xwByCkaSsW5LnMyey-2Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.324 [XNIO-1 task-3] 7xwByCkaSsW5LnMyey-2Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.325 [XNIO-1 task-3] 7xwByCkaSsW5LnMyey-2Vw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.330 [XNIO-1 task-3] 7xwByCkaSsW5LnMyey-2Vw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.341 [XNIO-1 task-3] 32tWkZfkSLG4iis8qwSd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.341 [XNIO-1 task-3] 32tWkZfkSLG4iis8qwSd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.342 [XNIO-1 task-3] 32tWkZfkSLG4iis8qwSd3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.342 [XNIO-1 task-3] 32tWkZfkSLG4iis8qwSd3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.352 [XNIO-1 task-3] 32tWkZfkSLG4iis8qwSd3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.361 [XNIO-1 task-3] tKu17nvZRaq99JYiZzf11g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.361 [XNIO-1 task-3] tKu17nvZRaq99JYiZzf11g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.361 [XNIO-1 task-3] tKu17nvZRaq99JYiZzf11g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.362 [XNIO-1 task-3] tKu17nvZRaq99JYiZzf11g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.367 [XNIO-1 task-3] tKu17nvZRaq99JYiZzf11g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.371 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.371 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.371 [XNIO-1 task-3] ph-G9tkoScqrhIqWyl1wNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.371 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.372 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.372 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.372 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:44.372 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.377 [XNIO-1 task-5] Jc3j_rv4SHufcIamrnajtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.382 [XNIO-1 task-5] y4f1kD-9Tx-LmXgMlbE16g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.382 [XNIO-1 task-5] y4f1kD-9Tx-LmXgMlbE16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.382 [XNIO-1 task-5] y4f1kD-9Tx-LmXgMlbE16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.382 [XNIO-1 task-3] ph-G9tkoScqrhIqWyl1wNQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.383 [XNIO-1 task-5] y4f1kD-9Tx-LmXgMlbE16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.383 [XNIO-1 task-5] y4f1kD-9Tx-LmXgMlbE16g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:44.384 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:78acba97 +18:00:44.384 [XNIO-1 task-5] y4f1kD-9Tx-LmXgMlbE16g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.384 [XNIO-1 task-4] jDhclmk6QXiq2urnVviQZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.385 [XNIO-1 task-4] jDhclmk6QXiq2urnVviQZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.386 [XNIO-1 task-4] jDhclmk6QXiq2urnVviQZA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QdOWTDPMQui-NjREQQ9umw redirectUri = http://localhost:8080/authorization +18:00:44.392 [XNIO-1 task-5] y4f1kD-9Tx-LmXgMlbE16g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.395 [XNIO-1 task-4] jDhclmk6QXiq2urnVviQZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.397 [XNIO-1 task-5] ZDmx_BnqSoqbRJ3CO07B8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.397 [XNIO-1 task-5] ZDmx_BnqSoqbRJ3CO07B8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.397 [XNIO-1 task-5] ZDmx_BnqSoqbRJ3CO07B8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.398 [XNIO-1 task-5] ZDmx_BnqSoqbRJ3CO07B8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:44.404 [XNIO-1 task-5] ZDmx_BnqSoqbRJ3CO07B8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.409 [XNIO-1 task-5] c5QIGVhwS0eX1IdE78ksZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.409 [XNIO-1 task-5] c5QIGVhwS0eX1IdE78ksZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.409 [XNIO-1 task-5] c5QIGVhwS0eX1IdE78ksZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.410 [XNIO-1 task-5] c5QIGVhwS0eX1IdE78ksZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:44.410 [XNIO-1 task-4] riaO1IuZRDiw3uzbgdQ_3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.411 [XNIO-1 task-4] riaO1IuZRDiw3uzbgdQ_3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.411 [XNIO-1 task-4] riaO1IuZRDiw3uzbgdQ_3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.412 [XNIO-1 task-4] riaO1IuZRDiw3uzbgdQ_3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", authorization) +18:00:44.416 [XNIO-1 task-5] c5QIGVhwS0eX1IdE78ksZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.424 [XNIO-1 task-5] HUR7DjjqQhGuUlt6ERMWOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.424 [XNIO-1 task-5] HUR7DjjqQhGuUlt6ERMWOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.424 [XNIO-1 task-5] HUR7DjjqQhGuUlt6ERMWOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.425 [XNIO-1 task-5] HUR7DjjqQhGuUlt6ERMWOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:44.426 [XNIO-1 task-4] riaO1IuZRDiw3uzbgdQ_3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.431 [XNIO-1 task-5] HUR7DjjqQhGuUlt6ERMWOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.441 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.441 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.441 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.441 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.442 [XNIO-1 task-5] frAJukiIRECpTbPvGCbb0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.442 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.442 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", authorization) +18:00:44.442 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WiH_Q_WNQkKcL6ZPv5PcPw redirectUri = http://localhost:8080/authorization +18:00:44.448 [XNIO-1 task-5] frAJukiIRECpTbPvGCbb0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.449 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:44.450 [XNIO-1 task-3] hV3-IzYQRFGfvJVVsbjiZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.460 [XNIO-1 task-3] Lv7OU-xCQpW7ZmYnwNXb_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.460 [XNIO-1 task-3] Lv7OU-xCQpW7ZmYnwNXb_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.461 [XNIO-1 task-3] Lv7OU-xCQpW7ZmYnwNXb_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.462 [XNIO-1 task-3] Lv7OU-xCQpW7ZmYnwNXb_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.468 [XNIO-1 task-5] TKvy_cooQDupjrU29S9jlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.468 [XNIO-1 task-5] TKvy_cooQDupjrU29S9jlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.469 [XNIO-1 task-5] TKvy_cooQDupjrU29S9jlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.469 [XNIO-1 task-5] TKvy_cooQDupjrU29S9jlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jaDlEypoQMaMy4BOEtbZAw redirectUri = http://localhost:8080/authorization +18:00:44.476 [XNIO-1 task-3] Lv7OU-xCQpW7ZmYnwNXb_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.477 [XNIO-1 task-5] TKvy_cooQDupjrU29S9jlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.478 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d446ab4f-c943-48ff-81ab-80ed89573142 +18:00:44.481 [XNIO-1 task-3] JNDnkQ2dTL2nCdmof-Bgyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.482 [XNIO-1 task-3] JNDnkQ2dTL2nCdmof-Bgyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.482 [XNIO-1 task-3] JNDnkQ2dTL2nCdmof-Bgyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.482 [XNIO-1 task-3] JNDnkQ2dTL2nCdmof-Bgyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRkNDc0ODEtNTQ4YS00ZGY3LWI0NWItMTc1NzFlZmQ1MDY0OnNpM1daZ195U3NPUXZpNHVQSEFRN3c=", "Basic NGRkNDc0ODEtNTQ4YS00ZGY3LWI0NWItMTc1NzFlZmQ1MDY0OnNpM1daZ195U3NPUXZpNHVQSEFRN3c=", authorization) +18:00:44.491 [XNIO-1 task-3] JNDnkQ2dTL2nCdmof-Bgyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.491 [XNIO-1 task-5] 2g0clI-sQqqvA2TbLjrMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.491 [XNIO-1 task-5] 2g0clI-sQqqvA2TbLjrMAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.492 [XNIO-1 task-5] 2g0clI-sQqqvA2TbLjrMAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.493 [XNIO-1 task-5] 2g0clI-sQqqvA2TbLjrMAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", authorization) +18:00:44.498 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d446ab4f-c943-48ff-81ab-80ed89573142 +18:00:44.503 [XNIO-1 task-5] 2g0clI-sQqqvA2TbLjrMAw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.505 [XNIO-1 task-3] 6ntM36dHQcuDa18gZqIDDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.506 [XNIO-1 task-3] 6ntM36dHQcuDa18gZqIDDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.511 [XNIO-1 task-3] 6ntM36dHQcuDa18gZqIDDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.511 [XNIO-1 task-3] 6ntM36dHQcuDa18gZqIDDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.520 [XNIO-1 task-3] 6ntM36dHQcuDa18gZqIDDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.526 [XNIO-1 task-3] 6COKZihfQMSZ0Y78WhardA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.526 [XNIO-1 task-3] 6COKZihfQMSZ0Y78WhardA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.527 [XNIO-1 task-3] 6COKZihfQMSZ0Y78WhardA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.527 [XNIO-1 task-3] 6COKZihfQMSZ0Y78WhardA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.532 [XNIO-1 task-3] 6COKZihfQMSZ0Y78WhardA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.540 [XNIO-1 task-3] k1ozQlBPQB2__7boksEEYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.540 [XNIO-1 task-3] k1ozQlBPQB2__7boksEEYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.542 [XNIO-1 task-3] k1ozQlBPQB2__7boksEEYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.543 [XNIO-1 task-3] k1ozQlBPQB2__7boksEEYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.548 [XNIO-1 task-3] k1ozQlBPQB2__7boksEEYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.554 [XNIO-1 task-3] xgwJXpcySmeAkT55Lu7bYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.554 [XNIO-1 task-3] xgwJXpcySmeAkT55Lu7bYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.554 [XNIO-1 task-3] xgwJXpcySmeAkT55Lu7bYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.555 [XNIO-1 task-3] xgwJXpcySmeAkT55Lu7bYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.561 [XNIO-1 task-3] xgwJXpcySmeAkT55Lu7bYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.568 [XNIO-1 task-3] cwf2MupFR7qJIael6vG_ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.568 [XNIO-1 task-3] cwf2MupFR7qJIael6vG_ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.569 [XNIO-1 task-3] cwf2MupFR7qJIael6vG_ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.569 [XNIO-1 task-3] cwf2MupFR7qJIael6vG_ew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = NfhabAe2RKacr4RmixulpQ redirectUri = http://localhost:8080/authorization +18:00:44.571 [XNIO-1 task-5] s14mS7lYRmqTHXTXaUwsgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.571 [XNIO-1 task-5] s14mS7lYRmqTHXTXaUwsgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.572 [XNIO-1 task-5] s14mS7lYRmqTHXTXaUwsgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.572 [XNIO-1 task-5] s14mS7lYRmqTHXTXaUwsgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.576 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:78acba97 +18:00:44.581 [XNIO-1 task-5] s14mS7lYRmqTHXTXaUwsgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.582 [XNIO-1 task-3] cwf2MupFR7qJIael6vG_ew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.588 [XNIO-1 task-5] 3eyBstSnR0SreJv4HyMGtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.589 [XNIO-1 task-5] 3eyBstSnR0SreJv4HyMGtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.589 [XNIO-1 task-5] 3eyBstSnR0SreJv4HyMGtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.589 [XNIO-1 task-5] 3eyBstSnR0SreJv4HyMGtw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzE0YWQ5NTQtYzFjZi00MWU4LTgxNTItMDI2NDQ5NDA2NTkyOnlOMzhHWFl0U3F5Vk1Qb0s3R1o2TXc=", "Basic YzE0YWQ5NTQtYzFjZi00MWU4LTgxNTItMDI2NDQ5NDA2NTkyOnlOMzhHWFl0U3F5Vk1Qb0s3R1o2TXc=", authorization) +18:00:44.595 [XNIO-1 task-5] 3eyBstSnR0SreJv4HyMGtw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.598 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4de552fb-a4a5-45ad-9c11-fc421f288a97 +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:44.604 [XNIO-1 task-5] 0-6EDy4QStKj71zIL9N1_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.604 [XNIO-1 task-5] 0-6EDy4QStKj71zIL9N1_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.604 [XNIO-1 task-5] 0-6EDy4QStKj71zIL9N1_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.604 [XNIO-1 task-5] 0-6EDy4QStKj71zIL9N1_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + +18:00:44.604 [XNIO-1 task-5] 0-6EDy4QStKj71zIL9N1_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.605 [XNIO-1 task-5] 0-6EDy4QStKj71zIL9N1_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.619 [XNIO-1 task-5] 0-6EDy4QStKj71zIL9N1_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.626 [XNIO-1 task-5] My2-nvgxRoyHvbDe7iSyjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.627 [XNIO-1 task-5] My2-nvgxRoyHvbDe7iSyjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.627 [XNIO-1 task-5] My2-nvgxRoyHvbDe7iSyjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.627 [XNIO-1 task-5] My2-nvgxRoyHvbDe7iSyjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.632 [XNIO-1 task-5] My2-nvgxRoyHvbDe7iSyjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.638 [XNIO-1 task-5] TF6KN9mTT-egxRXo2xf0zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.638 [XNIO-1 task-5] TF6KN9mTT-egxRXo2xf0zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.638 [XNIO-1 task-5] TF6KN9mTT-egxRXo2xf0zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.639 [XNIO-1 task-5] TF6KN9mTT-egxRXo2xf0zg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.641 [XNIO-1 task-3] hpK33IapT72pTqMQx-Q5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.641 [XNIO-1 task-3] hpK33IapT72pTqMQx-Q5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.641 [XNIO-1 task-3] hpK33IapT72pTqMQx-Q5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.642 [XNIO-1 task-3] hpK33IapT72pTqMQx-Q5nA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = P3QCw3eTTn-c1C2jqVciGg redirectUri = http://localhost:8080/authorization +18:00:44.644 [XNIO-1 task-5] TF6KN9mTT-egxRXo2xf0zg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.668 [XNIO-1 task-5] N7QXQyFdSv-G4ZlfTGMcyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.668 [XNIO-1 task-5] N7QXQyFdSv-G4ZlfTGMcyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.668 [XNIO-1 task-4] zmX2bLl4SJivkzxef83n3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.668 [XNIO-1 task-5] N7QXQyFdSv-G4ZlfTGMcyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.669 [XNIO-1 task-5] N7QXQyFdSv-G4ZlfTGMcyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.669 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5cc9ac71-24de-492a-8df9-cd610c425ab3 +18:00:44.669 [XNIO-1 task-3] hpK33IapT72pTqMQx-Q5nA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:44.670 [XNIO-1 task-5] N7QXQyFdSv-G4ZlfTGMcyQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.670 [XNIO-1 task-4] zmX2bLl4SJivkzxef83n3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.671 [XNIO-1 task-3] hpK33IapT72pTqMQx-Q5nA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.671 [XNIO-1 task-4] zmX2bLl4SJivkzxef83n3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gRw4VJlkR8GdzP5BO6NNkg redirectUri = http://localhost:8080/authorization +18:00:44.676 [XNIO-1 task-5] N7QXQyFdSv-G4ZlfTGMcyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.682 [XNIO-1 task-5] OqE_89YvQmiOVswoZL2PvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.683 [XNIO-1 task-4] zmX2bLl4SJivkzxef83n3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.683 [XNIO-1 task-5] OqE_89YvQmiOVswoZL2PvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.684 [XNIO-1 task-5] OqE_89YvQmiOVswoZL2PvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.685 [XNIO-1 task-5] OqE_89YvQmiOVswoZL2PvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:44.686 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fd2919cf-0020-4a98-8a13-cab758404e48 +18:00:44.688 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fd2919cf-0020-4a98-8a13-cab758404e48 +18:00:44.691 [XNIO-1 task-5] OqE_89YvQmiOVswoZL2PvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.692 [XNIO-1 task-4] Zccp9vYvSHq1RfnTxUr37w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.692 [XNIO-1 task-4] Zccp9vYvSHq1RfnTxUr37w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.693 [XNIO-1 task-4] Zccp9vYvSHq1RfnTxUr37w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.694 [XNIO-1 task-4] Zccp9vYvSHq1RfnTxUr37w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9fa61bbb-debd-4538-89e9-283570f2271d scope = null +18:00:44.699 [XNIO-1 task-5] GRhkXgxLQyyg3QUbassTrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.699 [XNIO-1 task-5] GRhkXgxLQyyg3QUbassTrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.699 [XNIO-1 task-5] GRhkXgxLQyyg3QUbassTrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.700 [XNIO-1 task-5] GRhkXgxLQyyg3QUbassTrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.706 [XNIO-1 task-5] GRhkXgxLQyyg3QUbassTrQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.710 [XNIO-1 task-4] Zccp9vYvSHq1RfnTxUr37w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.713 [XNIO-1 task-3] AtykXoH7Rr-m8AWZ7xP0DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.713 [XNIO-1 task-3] AtykXoH7Rr-m8AWZ7xP0DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.718 [XNIO-1 task-3] AtykXoH7Rr-m8AWZ7xP0DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.719 [XNIO-1 task-3] AtykXoH7Rr-m8AWZ7xP0DQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = JnertGIJT2uYctaSc1Tdtw redirectUri = http://localhost:8080/authorization +18:00:44.723 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +18:00:44.726 [XNIO-1 task-5] fQrb8MbRQUGlcai6yn8l1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.726 [XNIO-1 task-5] fQrb8MbRQUGlcai6yn8l1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +18:00:44.732 [XNIO-1 task-5] fQrb8MbRQUGlcai6yn8l1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.740 [XNIO-1 task-3] Lj9gBgmjQqeiCVa0ajg49w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.740 [XNIO-1 task-3] Lj9gBgmjQqeiCVa0ajg49w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.741 [XNIO-1 task-3] Lj9gBgmjQqeiCVa0ajg49w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.741 [XNIO-1 task-3] Lj9gBgmjQqeiCVa0ajg49w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.745 [XNIO-1 task-5] T_b-UJDfSQKqazfZCDmamw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.745 [XNIO-1 task-5] T_b-UJDfSQKqazfZCDmamw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +18:00:44.746 [XNIO-1 task-5] T_b-UJDfSQKqazfZCDmamw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:44.746 [XNIO-1 task-5] T_b-UJDfSQKqazfZCDmamw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = cc2ec14f-46f3-4082-8f25-98e34faf9d25 scope = null +18:00:44.747 [XNIO-1 task-3] Lj9gBgmjQqeiCVa0ajg49w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:00:44.749 [XNIO-1 task-4] d2ZZjfJ1TRS2Z2OIjmkjpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.749 [XNIO-1 task-4] d2ZZjfJ1TRS2Z2OIjmkjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + +18:00:44.749 [XNIO-1 task-4] d2ZZjfJ1TRS2Z2OIjmkjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.750 [XNIO-1 task-4] d2ZZjfJ1TRS2Z2OIjmkjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.750 [XNIO-1 task-4] d2ZZjfJ1TRS2Z2OIjmkjpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 35d977c2-d525-4603-93d2-97aac5e1e1b9 scope = null +18:00:44.758 [XNIO-1 task-5] T_b-UJDfSQKqazfZCDmamw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.762 [XNIO-1 task-3] al3HEeUMS8uUn4TJCx0zNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.763 [XNIO-1 task-3] al3HEeUMS8uUn4TJCx0zNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.763 [XNIO-1 task-3] al3HEeUMS8uUn4TJCx0zNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.763 [XNIO-1 task-3] al3HEeUMS8uUn4TJCx0zNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.769 [XNIO-1 task-3] al3HEeUMS8uUn4TJCx0zNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.772 [XNIO-1 task-4] d2ZZjfJ1TRS2Z2OIjmkjpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.775 [XNIO-1 task-5] f-cXQQ1xTx2eDRLku4Njjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.775 [XNIO-1 task-5] f-cXQQ1xTx2eDRLku4Njjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.775 [XNIO-1 task-5] f-cXQQ1xTx2eDRLku4Njjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.776 [XNIO-1 task-5] f-cXQQ1xTx2eDRLku4Njjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.777 [XNIO-1 task-3] uZpKSAztT7KVqqP8Pfs1Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.777 [XNIO-1 task-3] uZpKSAztT7KVqqP8Pfs1Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.778 [XNIO-1 task-3] uZpKSAztT7KVqqP8Pfs1Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.779 [XNIO-1 task-3] uZpKSAztT7KVqqP8Pfs1Sw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b680dde5-8a9f-4912-9ecd-2e73e2b194e3 scope = null +18:00:44.781 [XNIO-1 task-5] f-cXQQ1xTx2eDRLku4Njjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.788 [XNIO-1 task-5] Fm98JkudSfWnv0QWul_8RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.788 [XNIO-1 task-5] Fm98JkudSfWnv0QWul_8RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.790 [XNIO-1 task-5] Fm98JkudSfWnv0QWul_8RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.791 [XNIO-1 task-5] Fm98JkudSfWnv0QWul_8RQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.796 [XNIO-1 task-3] uZpKSAztT7KVqqP8Pfs1Sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.797 [XNIO-1 task-5] Fm98JkudSfWnv0QWul_8RQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.809 [XNIO-1 task-5] pll779B-SJ-lCBkYgEiwew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.809 [XNIO-1 task-5] pll779B-SJ-lCBkYgEiwew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.810 [XNIO-1 task-5] pll779B-SJ-lCBkYgEiwew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.810 [XNIO-1 task-5] pll779B-SJ-lCBkYgEiwew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.816 [XNIO-1 task-5] pll779B-SJ-lCBkYgEiwew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.826 [XNIO-1 task-5] G_PWSMEkSGmK85g2jt6Wow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.826 [XNIO-1 task-5] G_PWSMEkSGmK85g2jt6Wow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.826 [XNIO-1 task-5] G_PWSMEkSGmK85g2jt6Wow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.827 [XNIO-1 task-5] G_PWSMEkSGmK85g2jt6Wow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.835 [XNIO-1 task-5] G_PWSMEkSGmK85g2jt6Wow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.837 [XNIO-1 task-3] cOgoQpwUSM6m185JGtnTjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.838 [XNIO-1 task-3] cOgoQpwUSM6m185JGtnTjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.838 [XNIO-1 task-3] cOgoQpwUSM6m185JGtnTjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.838 [XNIO-1 task-3] cOgoQpwUSM6m185JGtnTjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qJCH3r07T42xvNIf8jbzjQ redirectUri = http://localhost:8080/authorization +18:00:44.842 [XNIO-1 task-5] rORqxGIORF6gU-vz7MM_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.842 [XNIO-1 task-5] rORqxGIORF6gU-vz7MM_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.842 [XNIO-1 task-5] rORqxGIORF6gU-vz7MM_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.843 [XNIO-1 task-5] rORqxGIORF6gU-vz7MM_uQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.854 [XNIO-1 task-5] rORqxGIORF6gU-vz7MM_uQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.859 [XNIO-1 task-4] U7WsjC8JRMWqzS1zUjpAQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.859 [XNIO-1 task-4] U7WsjC8JRMWqzS1zUjpAQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.859 [XNIO-1 task-4] U7WsjC8JRMWqzS1zUjpAQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.860 [XNIO-1 task-4] U7WsjC8JRMWqzS1zUjpAQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.865 [XNIO-1 task-4] U7WsjC8JRMWqzS1zUjpAQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.869 [XNIO-1 task-3] cOgoQpwUSM6m185JGtnTjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.875 [XNIO-1 task-4] NmmZb5OAQ6moRLsNG50SFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.875 [XNIO-1 task-4] NmmZb5OAQ6moRLsNG50SFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.876 [XNIO-1 task-4] NmmZb5OAQ6moRLsNG50SFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.876 [XNIO-1 task-4] NmmZb5OAQ6moRLsNG50SFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", authorization) +18:00:44.883 [XNIO-1 task-4] NmmZb5OAQ6moRLsNG50SFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:44.884 [XNIO-1 task-3] VyGJHlXSRuqbdX-uTjsc9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.884 [XNIO-1 task-3] VyGJHlXSRuqbdX-uTjsc9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.885 [XNIO-1 task-3] VyGJHlXSRuqbdX-uTjsc9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.885 [XNIO-1 task-3] VyGJHlXSRuqbdX-uTjsc9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:44.890 [XNIO-1 task-4] A7FJsizAS3ieukjE_Tl_LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.891 [XNIO-1 task-4] A7FJsizAS3ieukjE_Tl_LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:44.891 [XNIO-1 task-4] A7FJsizAS3ieukjE_Tl_LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:44.892 [XNIO-1 task-4] A7FJsizAS3ieukjE_Tl_LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", authorization) +18:00:44.894 [XNIO-1 task-3] VyGJHlXSRuqbdX-uTjsc9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:44.894 [XNIO-1 task-3] VyGJHlXSRuqbdX-uTjsc9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.902 [XNIO-1 task-4] A7FJsizAS3ieukjE_Tl_LQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.908 [XNIO-1 task-4] HRTgLCKjSu6itWqOj9jf0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.909 [XNIO-1 task-4] HRTgLCKjSu6itWqOj9jf0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.909 [XNIO-1 task-4] HRTgLCKjSu6itWqOj9jf0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.909 [XNIO-1 task-3] oOwxKz5KTeW6eQl-qgWIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.909 [XNIO-1 task-4] HRTgLCKjSu6itWqOj9jf0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", authorization) +18:00:44.910 [XNIO-1 task-4] HRTgLCKjSu6itWqOj9jf0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.910 [XNIO-1 task-3] oOwxKz5KTeW6eQl-qgWIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.910 [XNIO-1 task-3] oOwxKz5KTeW6eQl-qgWIbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bd48f9c3-e542-40f6-a7ae-a614a5ca3d0c scope = null +18:00:44.917 [XNIO-1 task-4] HRTgLCKjSu6itWqOj9jf0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.924 [XNIO-1 task-4] w4hzSUDVQNK9Z7GW_n3eGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.924 [XNIO-1 task-4] w4hzSUDVQNK9Z7GW_n3eGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.925 [XNIO-1 task-3] oOwxKz5KTeW6eQl-qgWIbA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.927 [XNIO-1 task-4] w4hzSUDVQNK9Z7GW_n3eGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.927 [XNIO-1 task-4] w4hzSUDVQNK9Z7GW_n3eGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.933 [XNIO-1 task-4] w4hzSUDVQNK9Z7GW_n3eGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.940 [XNIO-1 task-3] KVyGVS08T_SVeD5IlQjB3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.940 [XNIO-1 task-3] KVyGVS08T_SVeD5IlQjB3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.941 [XNIO-1 task-3] KVyGVS08T_SVeD5IlQjB3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.942 [XNIO-1 task-3] KVyGVS08T_SVeD5IlQjB3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c20433b0-10fc-4d72-bd33-ef13d5b0ae7f scope = null +18:00:44.950 [XNIO-1 task-4] KXA752BQQ8SWbxKolY0jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.952 [XNIO-1 task-4] KXA752BQQ8SWbxKolY0jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.952 [XNIO-1 task-4] KXA752BQQ8SWbxKolY0jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.955 [XNIO-1 task-4] KXA752BQQ8SWbxKolY0jpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.956 [XNIO-1 task-3] KVyGVS08T_SVeD5IlQjB3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.966 [XNIO-1 task-4] KXA752BQQ8SWbxKolY0jpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.975 [XNIO-1 task-3] ErP58XMiRD6jW7OurdorrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.975 [XNIO-1 task-3] ErP58XMiRD6jW7OurdorrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.976 [XNIO-1 task-3] ErP58XMiRD6jW7OurdorrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.976 [XNIO-1 task-3] ErP58XMiRD6jW7OurdorrA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.982 [XNIO-1 task-3] ErP58XMiRD6jW7OurdorrA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:44.990 [XNIO-1 task-3] Wkj7skC1RIKQV012ZXjrXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.990 [XNIO-1 task-3] Wkj7skC1RIKQV012ZXjrXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.991 [XNIO-1 task-3] Wkj7skC1RIKQV012ZXjrXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:44.991 [XNIO-1 task-3] Wkj7skC1RIKQV012ZXjrXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:44.997 [XNIO-1 task-3] Wkj7skC1RIKQV012ZXjrXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.004 [XNIO-1 task-3] rex_10G9Tcm2IkQW3Rw1Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.004 [XNIO-1 task-3] rex_10G9Tcm2IkQW3Rw1Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.004 [XNIO-1 task-3] rex_10G9Tcm2IkQW3Rw1Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.005 [XNIO-1 task-3] rex_10G9Tcm2IkQW3Rw1Fw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.012 [XNIO-1 task-3] rex_10G9Tcm2IkQW3Rw1Fw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.014 [XNIO-1 task-4] hTA0tBpaRNe5bzZ52D4I2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.014 [XNIO-1 task-4] hTA0tBpaRNe5bzZ52D4I2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.015 [XNIO-1 task-4] hTA0tBpaRNe5bzZ52D4I2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.019 [XNIO-1 task-4] hTA0tBpaRNe5bzZ52D4I2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VPIW5cPuR6O-8QsyRk89yw redirectUri = http://localhost:8080/authorization +18:00:45.022 [XNIO-1 task-3] b-RRCQRvSzWN8FcYRbB9FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.023 [XNIO-1 task-3] b-RRCQRvSzWN8FcYRbB9FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.023 [XNIO-1 task-3] b-RRCQRvSzWN8FcYRbB9FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.024 [XNIO-1 task-3] b-RRCQRvSzWN8FcYRbB9FA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.031 [XNIO-1 task-3] b-RRCQRvSzWN8FcYRbB9FA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.033 [XNIO-1 task-4] hTA0tBpaRNe5bzZ52D4I2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.042 [XNIO-1 task-3] bsPG39duRMmUerSzEEExqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.043 [XNIO-1 task-3] bsPG39duRMmUerSzEEExqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.043 [XNIO-1 task-3] bsPG39duRMmUerSzEEExqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.044 [XNIO-1 task-5] PCGqA8sdR-KQLNTY0Tdfmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.045 [XNIO-1 task-5] PCGqA8sdR-KQLNTY0Tdfmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.045 [XNIO-1 task-3] bsPG39duRMmUerSzEEExqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:45.045 [XNIO-1 task-5] PCGqA8sdR-KQLNTY0Tdfmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.046 [XNIO-1 task-5] PCGqA8sdR-KQLNTY0Tdfmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:45.054 [XNIO-1 task-3] bsPG39duRMmUerSzEEExqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.056 [XNIO-1 task-5] PCGqA8sdR-KQLNTY0Tdfmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.058 [XNIO-1 task-5] PCGqA8sdR-KQLNTY0Tdfmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.061 [XNIO-1 task-3] Da_oJ2DiSKOBOM_8szL7cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.061 [XNIO-1 task-3] Da_oJ2DiSKOBOM_8szL7cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.062 [XNIO-1 task-3] Da_oJ2DiSKOBOM_8szL7cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.063 [XNIO-1 task-3] Da_oJ2DiSKOBOM_8szL7cA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.069 [XNIO-1 task-3] Da_oJ2DiSKOBOM_8szL7cA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.072 [XNIO-1 task-3] RtEBU3UuT2OznagFXDSK5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.072 [XNIO-1 task-3] RtEBU3UuT2OznagFXDSK5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.072 [XNIO-1 task-3] RtEBU3UuT2OznagFXDSK5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.073 [XNIO-1 task-3] RtEBU3UuT2OznagFXDSK5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f0ed2836-cec0-44bd-9476-d6ee974fe40a scope = null +18:00:45.079 [XNIO-1 task-5] h-EXX1aaTLuA9rMryVzQuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.079 [XNIO-1 task-5] h-EXX1aaTLuA9rMryVzQuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.079 [XNIO-1 task-5] h-EXX1aaTLuA9rMryVzQuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.081 [XNIO-1 task-5] h-EXX1aaTLuA9rMryVzQuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.084 [XNIO-1 task-3] RtEBU3UuT2OznagFXDSK5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.088 [XNIO-1 task-5] h-EXX1aaTLuA9rMryVzQuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.096 [XNIO-1 task-5] XeplxGEwSsW6fWEs-roR3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.096 [XNIO-1 task-5] XeplxGEwSsW6fWEs-roR3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.097 [XNIO-1 task-5] XeplxGEwSsW6fWEs-roR3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.097 [XNIO-1 task-5] XeplxGEwSsW6fWEs-roR3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.102 [XNIO-1 task-5] XeplxGEwSsW6fWEs-roR3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.110 [XNIO-1 task-5] Pxs2EpMIS0WdWdfEeS3omA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.110 [XNIO-1 task-5] Pxs2EpMIS0WdWdfEeS3omA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.110 [XNIO-1 task-5] Pxs2EpMIS0WdWdfEeS3omA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.111 [XNIO-1 task-5] Pxs2EpMIS0WdWdfEeS3omA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.116 [XNIO-1 task-5] Pxs2EpMIS0WdWdfEeS3omA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.121 [XNIO-1 task-5] WT6lmxo9Q7W8TUMoel2HfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.122 [XNIO-1 task-5] WT6lmxo9Q7W8TUMoel2HfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.122 [XNIO-1 task-5] WT6lmxo9Q7W8TUMoel2HfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.122 [XNIO-1 task-5] WT6lmxo9Q7W8TUMoel2HfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.131 [XNIO-1 task-5] WT6lmxo9Q7W8TUMoel2HfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.133 [XNIO-1 task-3] Qlps06kcQyGAuOcixDYLrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.134 [XNIO-1 task-3] Qlps06kcQyGAuOcixDYLrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.134 [XNIO-1 task-3] Qlps06kcQyGAuOcixDYLrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.134 [XNIO-1 task-3] Qlps06kcQyGAuOcixDYLrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ErXWr_IvQDONJdoCSyPT5g redirectUri = http://localhost:8080/authorization +18:00:45.140 [XNIO-1 task-5] YHC-ns5ATyidBSC_oGrEAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.140 [XNIO-1 task-5] YHC-ns5ATyidBSC_oGrEAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.140 [XNIO-1 task-5] YHC-ns5ATyidBSC_oGrEAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.141 [XNIO-1 task-5] YHC-ns5ATyidBSC_oGrEAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.146 [XNIO-1 task-3] Qlps06kcQyGAuOcixDYLrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.151 [XNIO-1 task-5] YHC-ns5ATyidBSC_oGrEAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.157 [XNIO-1 task-5] PbgE428tTy-Ob6zoAxk3Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.158 [XNIO-1 task-5] PbgE428tTy-Ob6zoAxk3Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.159 [XNIO-1 task-5] PbgE428tTy-Ob6zoAxk3Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.159 [XNIO-1 task-5] PbgE428tTy-Ob6zoAxk3Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", authorization) +18:00:45.164 [XNIO-1 task-5] PbgE428tTy-Ob6zoAxk3Vg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.194 [XNIO-1 task-5] UiQk93L6SWuW4uZG5Xuceg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.194 [XNIO-1 task-5] UiQk93L6SWuW4uZG5Xuceg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.194 [XNIO-1 task-5] UiQk93L6SWuW4uZG5Xuceg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.195 [XNIO-1 task-5] UiQk93L6SWuW4uZG5Xuceg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", authorization) +18:00:45.200 [XNIO-1 task-5] UiQk93L6SWuW4uZG5Xuceg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.207 [XNIO-1 task-5] Sy0UR1_6R-aEGeBjzoqfCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.207 [XNIO-1 task-5] Sy0UR1_6R-aEGeBjzoqfCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.207 [XNIO-1 task-5] Sy0UR1_6R-aEGeBjzoqfCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.207 [XNIO-1 task-5] Sy0UR1_6R-aEGeBjzoqfCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:45.219 [XNIO-1 task-5] Sy0UR1_6R-aEGeBjzoqfCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.228 [XNIO-1 task-5] sKC-lMqGSqe7SOmQJ42Rxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.228 [XNIO-1 task-5] sKC-lMqGSqe7SOmQJ42Rxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.230 [XNIO-1 task-3] UQv2ZV_DQaCM2ukLHPG2PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.230 [XNIO-1 task-3] UQv2ZV_DQaCM2ukLHPG2PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.230 [XNIO-1 task-3] UQv2ZV_DQaCM2ukLHPG2PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.231 [XNIO-1 task-3] UQv2ZV_DQaCM2ukLHPG2PA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", authorization) +18:00:45.232 [XNIO-1 task-5] sKC-lMqGSqe7SOmQJ42Rxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.232 [XNIO-1 task-5] sKC-lMqGSqe7SOmQJ42Rxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", authorization) +18:00:45.235 [XNIO-1 task-4] Y1S7D0-tStyqUUUyDm8YFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.236 [XNIO-1 task-4] Y1S7D0-tStyqUUUyDm8YFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.236 [XNIO-1 task-4] Y1S7D0-tStyqUUUyDm8YFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.236 [XNIO-1 task-4] Y1S7D0-tStyqUUUyDm8YFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.237 [XNIO-1 task-4] Y1S7D0-tStyqUUUyDm8YFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:45.242 [XNIO-1 task-3] zoMQrC2lRgOgofmw0i0QBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.242 [XNIO-1 task-3] zoMQrC2lRgOgofmw0i0QBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.242 [XNIO-1 task-4] Y1S7D0-tStyqUUUyDm8YFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.243 [XNIO-1 task-4] Y1S7D0-tStyqUUUyDm8YFg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.243 [XNIO-1 task-3] zoMQrC2lRgOgofmw0i0QBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.244 [XNIO-1 task-3] zoMQrC2lRgOgofmw0i0QBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.249 [XNIO-1 task-3] zoMQrC2lRgOgofmw0i0QBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.256 [XNIO-1 task-3] d5fNJy__RxuAQFZUx_3DCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.256 [XNIO-1 task-3] d5fNJy__RxuAQFZUx_3DCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.256 [XNIO-1 task-3] d5fNJy__RxuAQFZUx_3DCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.257 [XNIO-1 task-3] d5fNJy__RxuAQFZUx_3DCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.259 [XNIO-1 task-5] sKC-lMqGSqe7SOmQJ42Rxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.259 [XNIO-1 task-4] whoGUxwMSkmI5qhgCqe6zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.259 [XNIO-1 task-4] whoGUxwMSkmI5qhgCqe6zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.259 [XNIO-1 task-4] whoGUxwMSkmI5qhgCqe6zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.260 [XNIO-1 task-4] whoGUxwMSkmI5qhgCqe6zA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:45.264 [XNIO-1 task-3] d5fNJy__RxuAQFZUx_3DCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.272 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f1a2a34 +18:00:45.293 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f1a2a34 +18:00:45.294 [XNIO-1 task-3] U1CEzxHATWC0f98AsnBb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.294 [XNIO-1 task-3] U1CEzxHATWC0f98AsnBb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.295 [XNIO-1 task-3] U1CEzxHATWC0f98AsnBb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.295 [XNIO-1 task-3] U1CEzxHATWC0f98AsnBb3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.299 [XNIO-1 task-4] whoGUxwMSkmI5qhgCqe6zA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.301 [XNIO-1 task-3] U1CEzxHATWC0f98AsnBb3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.315 [XNIO-1 task-4] fdNwaRQtTnOg_zGvtGFQYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.315 [XNIO-1 task-4] fdNwaRQtTnOg_zGvtGFQYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.316 [XNIO-1 task-4] fdNwaRQtTnOg_zGvtGFQYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.316 [XNIO-1 task-4] fdNwaRQtTnOg_zGvtGFQYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.317 [XNIO-1 task-3] V9MApFKOSpmFflMGnKR8_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.317 [XNIO-1 task-3] V9MApFKOSpmFflMGnKR8_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.317 [XNIO-1 task-3] V9MApFKOSpmFflMGnKR8_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.317 [XNIO-1 task-3] V9MApFKOSpmFflMGnKR8_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1aa88a94-4a2c-4fb8-b89b-1f526db44b40 scope = null +18:00:45.324 [XNIO-1 task-4] fdNwaRQtTnOg_zGvtGFQYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.330 [XNIO-1 task-3] V9MApFKOSpmFflMGnKR8_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.338 [XNIO-1 task-4] nvNLBGPfQi-QHhD1etxTUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.338 [XNIO-1 task-4] nvNLBGPfQi-QHhD1etxTUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.338 [XNIO-1 task-4] nvNLBGPfQi-QHhD1etxTUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.339 [XNIO-1 task-4] nvNLBGPfQi-QHhD1etxTUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.349 [XNIO-1 task-3] 1cNqHj_pTc28ws3d4_E0PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.349 [XNIO-1 task-3] 1cNqHj_pTc28ws3d4_E0PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.354 [XNIO-1 task-3] 1cNqHj_pTc28ws3d4_E0PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.354 [XNIO-1 task-3] 1cNqHj_pTc28ws3d4_E0PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.355 [XNIO-1 task-3] 1cNqHj_pTc28ws3d4_E0PQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9f413872-c82c-4b29-911b-021783d009bc scope = null +18:00:45.368 [XNIO-1 task-3] 1cNqHj_pTc28ws3d4_E0PQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.368 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f1a2a34 +18:00:45.370 [XNIO-1 task-4] OQhf8gxETE6WnPviyNkNkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.370 [XNIO-1 task-4] OQhf8gxETE6WnPviyNkNkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.371 [XNIO-1 task-4] OQhf8gxETE6WnPviyNkNkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.373 [XNIO-1 task-5] wg1T9mf5SJuO3mBGy-cYSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.373 [XNIO-1 task-5] wg1T9mf5SJuO3mBGy-cYSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.374 [XNIO-1 task-4] OQhf8gxETE6WnPviyNkNkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.375 [XNIO-1 task-5] wg1T9mf5SJuO3mBGy-cYSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.376 [XNIO-1 task-5] wg1T9mf5SJuO3mBGy-cYSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = A2GZNycsQf6yK65Eu1u3mA redirectUri = http://localhost:8080/authorization +18:00:45.387 [XNIO-1 task-5] wg1T9mf5SJuO3mBGy-cYSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.388 [XNIO-1 task-4] OQhf8gxETE6WnPviyNkNkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.396 [XNIO-1 task-4] 5FpbfNqtT2iRp2q0HH_ZMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.396 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2b13b74f-123f-4595-905f-5b920b2c31ed +18:00:45.401 [XNIO-1 task-4] 5FpbfNqtT2iRp2q0HH_ZMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.402 [XNIO-1 task-4] 5FpbfNqtT2iRp2q0HH_ZMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.403 [XNIO-1 task-4] 5FpbfNqtT2iRp2q0HH_ZMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.406 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2b13b74f-123f-4595-905f-5b920b2c31ed +18:00:45.409 [XNIO-1 task-5] l_udjTi2SDO0TKshic54Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.410 [XNIO-1 task-5] l_udjTi2SDO0TKshic54Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.410 [XNIO-1 task-5] l_udjTi2SDO0TKshic54Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.411 [XNIO-1 task-4] 5FpbfNqtT2iRp2q0HH_ZMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.412 [XNIO-1 task-5] l_udjTi2SDO0TKshic54Gg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b52f220c-26ca-4ce2-b9e8-d142e81ec210 scope = null +18:00:45.420 [XNIO-1 task-4] S-Ls5PEsTzmmzoP0kKdynA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.420 [XNIO-1 task-4] S-Ls5PEsTzmmzoP0kKdynA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.421 [XNIO-1 task-4] S-Ls5PEsTzmmzoP0kKdynA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.421 [XNIO-1 task-4] S-Ls5PEsTzmmzoP0kKdynA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.424 [XNIO-1 task-3] 5J1KPaX5QfCYL6VZJhufvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.424 [XNIO-1 task-3] 5J1KPaX5QfCYL6VZJhufvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.425 [XNIO-1 task-3] 5J1KPaX5QfCYL6VZJhufvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.425 [XNIO-1 task-3] 5J1KPaX5QfCYL6VZJhufvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = R28erNd_SkGNNa1QVgWf3w redirectUri = http://localhost:8080/authorization +18:00:45.428 [XNIO-1 task-4] S-Ls5PEsTzmmzoP0kKdynA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.432 [XNIO-1 task-3] 5J1KPaX5QfCYL6VZJhufvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.432 [XNIO-1 task-3] 5J1KPaX5QfCYL6VZJhufvw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.460 [XNIO-1 task-4] KsnZrcQ-S7auvXXl9LJslA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.463 [XNIO-1 task-4] KsnZrcQ-S7auvXXl9LJslA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.463 [XNIO-1 task-4] KsnZrcQ-S7auvXXl9LJslA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.464 [XNIO-1 task-4] KsnZrcQ-S7auvXXl9LJslA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmIxM2I3NGYtMTIzZi00NTk1LTkwNWYtNWI5MjBiMmMzMWVkOmcwN09kMHlqVGFxR2RJRXJ3eE1ZWGc=", "Basic MmIxM2I3NGYtMTIzZi00NTk1LTkwNWYtNWI5MjBiMmMzMWVkOmcwN09kMHlqVGFxR2RJRXJ3eE1ZWGc=", authorization) +18:00:45.469 [XNIO-1 task-4] KsnZrcQ-S7auvXXl9LJslA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.481 [XNIO-1 task-3] onS4OchXS4eSd5RjT1e86g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.481 [XNIO-1 task-3] onS4OchXS4eSd5RjT1e86g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.481 [XNIO-1 task-4] apte2PcfTQ6oQMv1mv8tmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.482 [XNIO-1 task-4] apte2PcfTQ6oQMv1mv8tmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.482 [XNIO-1 task-4] apte2PcfTQ6oQMv1mv8tmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmIxM2I3NGYtMTIzZi00NTk1LTkwNWYtNWI5MjBiMmMzMWVkOmcwN09kMHlqVGFxR2RJRXJ3eE1ZWGc=", "Basic MmIxM2I3NGYtMTIzZi00NTk1LTkwNWYtNWI5MjBiMmMzMWVkOmcwN09kMHlqVGFxR2RJRXJ3eE1ZWGc=", authorization) +18:00:45.483 [XNIO-1 task-3] onS4OchXS4eSd5RjT1e86g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.484 [XNIO-1 task-3] onS4OchXS4eSd5RjT1e86g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.484 [XNIO-1 task-3] onS4OchXS4eSd5RjT1e86g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:45.489 [XNIO-1 task-4] apte2PcfTQ6oQMv1mv8tmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.494 [XNIO-1 task-4] ZQiIlnxsSVerIBSijaduvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.494 [XNIO-1 task-4] ZQiIlnxsSVerIBSijaduvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.494 [XNIO-1 task-4] ZQiIlnxsSVerIBSijaduvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.496 [XNIO-1 task-4] ZQiIlnxsSVerIBSijaduvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:45.497 [XNIO-1 task-3] onS4OchXS4eSd5RjT1e86g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.498 [XNIO-1 task-3] onS4OchXS4eSd5RjT1e86g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.503 [XNIO-1 task-4] ZQiIlnxsSVerIBSijaduvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.510 [XNIO-1 task-5] Gb-UUaFNR5C44tZ9-_0pvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.510 [XNIO-1 task-5] Gb-UUaFNR5C44tZ9-_0pvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.511 [XNIO-1 task-5] Gb-UUaFNR5C44tZ9-_0pvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.512 [XNIO-1 task-4] mVmWhyYWRH-7CN1jLfjHFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.512 [XNIO-1 task-5] Gb-UUaFNR5C44tZ9-_0pvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.512 [XNIO-1 task-4] mVmWhyYWRH-7CN1jLfjHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.512 [XNIO-1 task-4] mVmWhyYWRH-7CN1jLfjHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:45.513 [XNIO-1 task-4] mVmWhyYWRH-7CN1jLfjHFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", authorization) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:45.519 [XNIO-1 task-3] BoN5-51pRmOnA0o_4Jnsiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.523 [XNIO-1 task-5] mqTPOHl0SaWHSOTvBTsakw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.523 [XNIO-1 task-5] mqTPOHl0SaWHSOTvBTsakw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.523 [XNIO-1 task-3] BoN5-51pRmOnA0o_4Jnsiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:45.523 [XNIO-1 task-5] mqTPOHl0SaWHSOTvBTsakw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.523 [XNIO-1 task-5] mqTPOHl0SaWHSOTvBTsakw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", "Basic MzQ0YWJjYjQtOTY5OS00MjU3LThmMzEtNjUyOGU3ZTNhZDU5OndMQTh5MmN0U3ZxVUp1eVlVY3drOGc=", authorization) +18:00:45.529 [XNIO-1 task-5] mqTPOHl0SaWHSOTvBTsakw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.531 [XNIO-1 task-4] mVmWhyYWRH-7CN1jLfjHFw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.533 [XNIO-1 task-4] mVmWhyYWRH-7CN1jLfjHFw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.536 [XNIO-1 task-5] TkCFyv9NT86kNQL5X85PqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.536 [XNIO-1 task-5] TkCFyv9NT86kNQL5X85PqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.537 [XNIO-1 task-5] TkCFyv9NT86kNQL5X85PqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.537 [XNIO-1 task-5] TkCFyv9NT86kNQL5X85PqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.539 [XNIO-1 task-3] BoN5-51pRmOnA0o_4Jnsiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.542 [XNIO-1 task-5] TkCFyv9NT86kNQL5X85PqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.549 [XNIO-1 task-4] Y7pnOIp6Sim9u7jWr5Eb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.549 [XNIO-1 task-4] Y7pnOIp6Sim9u7jWr5Eb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.549 [XNIO-1 task-5] Tr5dJDCEQoybR8nvcHvwTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.549 [XNIO-1 task-5] Tr5dJDCEQoybR8nvcHvwTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.549 [XNIO-1 task-5] Tr5dJDCEQoybR8nvcHvwTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.550 [XNIO-1 task-4] Y7pnOIp6Sim9u7jWr5Eb2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.550 [XNIO-1 task-5] Tr5dJDCEQoybR8nvcHvwTQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5fa6a6f5-8541-49f0-86a8-259525091cf9 scope = null +18:00:45.550 [XNIO-1 task-4] Y7pnOIp6Sim9u7jWr5Eb2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.558 [XNIO-1 task-4] Y7pnOIp6Sim9u7jWr5Eb2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.562 [XNIO-1 task-4] jyrPaEObSZSpcdbENdnYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.562 [XNIO-1 task-4] jyrPaEObSZSpcdbENdnYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.563 [XNIO-1 task-4] jyrPaEObSZSpcdbENdnYWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.563 [XNIO-1 task-4] jyrPaEObSZSpcdbENdnYWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3181b666-eb2c-48f5-9a96-4f5a6b9c7001 scope = null +18:00:45.563 [XNIO-1 task-3] N6PySBbeQb2Er9RAAUh1RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.563 [XNIO-1 task-3] N6PySBbeQb2Er9RAAUh1RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.564 [XNIO-1 task-3] N6PySBbeQb2Er9RAAUh1RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.564 [XNIO-1 task-3] N6PySBbeQb2Er9RAAUh1RA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.565 [XNIO-1 task-5] Tr5dJDCEQoybR8nvcHvwTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.578 [XNIO-1 task-3] N6PySBbeQb2Er9RAAUh1RA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.580 [XNIO-1 task-4] jyrPaEObSZSpcdbENdnYWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.581 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:56c4b3dc-6975-4b35-a8cd-7ba4c1248baa +18:00:45.588 [XNIO-1 task-3] 3LweID9vT7yW_urpiT533Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.588 [XNIO-1 task-3] 3LweID9vT7yW_urpiT533Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.588 [XNIO-1 task-3] 3LweID9vT7yW_urpiT533Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.590 [XNIO-1 task-3] 3LweID9vT7yW_urpiT533Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", authorization) +18:00:45.600 [XNIO-1 task-3] 3LweID9vT7yW_urpiT533Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.609 [XNIO-1 task-4] 2wRVtEL2SSuihFywVmHU6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.609 [XNIO-1 task-4] 2wRVtEL2SSuihFywVmHU6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.609 [XNIO-1 task-4] 2wRVtEL2SSuihFywVmHU6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.610 [XNIO-1 task-4] 2wRVtEL2SSuihFywVmHU6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", authorization) +18:00:45.616 [XNIO-1 task-4] 2wRVtEL2SSuihFywVmHU6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.622 [XNIO-1 task-4] GOly95rzT_-ltFgtQVYhcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.622 [XNIO-1 task-4] GOly95rzT_-ltFgtQVYhcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.623 [XNIO-1 task-4] GOly95rzT_-ltFgtQVYhcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.623 [XNIO-1 task-4] GOly95rzT_-ltFgtQVYhcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", authorization) +18:00:45.627 [XNIO-1 task-3] daE9X7rgSLWdNbV-I8y_6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.627 [XNIO-1 task-3] daE9X7rgSLWdNbV-I8y_6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.628 [XNIO-1 task-3] daE9X7rgSLWdNbV-I8y_6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.628 [XNIO-1 task-3] daE9X7rgSLWdNbV-I8y_6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:45.629 [XNIO-1 task-4] GOly95rzT_-ltFgtQVYhcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.636 [XNIO-1 task-3] daE9X7rgSLWdNbV-I8y_6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.637 [XNIO-1 task-3] daE9X7rgSLWdNbV-I8y_6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.645 [XNIO-1 task-4] 0K9n2AleQw6RWjjJB1sAtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.646 [XNIO-1 task-4] 0K9n2AleQw6RWjjJB1sAtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.646 [XNIO-1 task-4] 0K9n2AleQw6RWjjJB1sAtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.647 [XNIO-1 task-4] 0K9n2AleQw6RWjjJB1sAtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.650 [XNIO-1 task-3] r4YnKA8sT4KRiNgg9DmCpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.650 [XNIO-1 task-3] r4YnKA8sT4KRiNgg9DmCpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.651 [XNIO-1 task-3] r4YnKA8sT4KRiNgg9DmCpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.653 [XNIO-1 task-3] r4YnKA8sT4KRiNgg9DmCpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4e25be5b-1e92-4c3c-a6cf-2d432e8b484e scope = null +18:00:45.654 [XNIO-1 task-4] 0K9n2AleQw6RWjjJB1sAtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.666 [XNIO-1 task-4] yUOlSdlvTu6Re2bhz487EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.667 [XNIO-1 task-3] r4YnKA8sT4KRiNgg9DmCpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.667 [XNIO-1 task-4] yUOlSdlvTu6Re2bhz487EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.670 [XNIO-1 task-4] yUOlSdlvTu6Re2bhz487EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.670 [XNIO-1 task-4] yUOlSdlvTu6Re2bhz487EA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.681 [XNIO-1 task-4] yUOlSdlvTu6Re2bhz487EA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.686 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3f1a2a34 +18:00:45.692 [XNIO-1 task-4] WOIM4mubTOyRGgDbOSNq-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.692 [XNIO-1 task-4] WOIM4mubTOyRGgDbOSNq-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.692 [XNIO-1 task-4] WOIM4mubTOyRGgDbOSNq-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.693 [XNIO-1 task-4] WOIM4mubTOyRGgDbOSNq-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.704 [XNIO-1 task-4] WOIM4mubTOyRGgDbOSNq-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.712 [XNIO-1 task-3] F_mCwo9wQdKyLdbDLbw8Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.712 [XNIO-1 task-3] F_mCwo9wQdKyLdbDLbw8Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.712 [XNIO-1 task-4] Uyhtks5LTtebjRwIhjqvdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.712 [XNIO-1 task-4] Uyhtks5LTtebjRwIhjqvdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.712 [XNIO-1 task-3] F_mCwo9wQdKyLdbDLbw8Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.713 [XNIO-1 task-4] Uyhtks5LTtebjRwIhjqvdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.713 [XNIO-1 task-3] F_mCwo9wQdKyLdbDLbw8Bg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = HxfOCPjaSDSE3yNjkRPMIQ redirectUri = http://localhost:8080/authorization +18:00:45.713 [XNIO-1 task-4] Uyhtks5LTtebjRwIhjqvdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.719 [XNIO-1 task-3] F_mCwo9wQdKyLdbDLbw8Bg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.720 [XNIO-1 task-3] F_mCwo9wQdKyLdbDLbw8Bg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.725 [XNIO-1 task-4] o1lVYBIZT5mUA_Z8zFPaOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.725 [XNIO-1 task-4] o1lVYBIZT5mUA_Z8zFPaOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.725 [XNIO-1 task-4] o1lVYBIZT5mUA_Z8zFPaOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.726 [XNIO-1 task-4] o1lVYBIZT5mUA_Z8zFPaOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTRjY2Q5ZjYtMWZiYS00MzA1LTlmM2ItOWU0YjYzMzMzMWQyOk1ZczF2dGJxUzV5cFEwQ1RBQU5nZ3c=", "Basic YTRjY2Q5ZjYtMWZiYS00MzA1LTlmM2ItOWU0YjYzMzMzMWQyOk1ZczF2dGJxUzV5cFEwQ1RBQU5nZ3c=", authorization) +18:00:45.734 [XNIO-1 task-3] 9nnpSgpzQTqkpEQzHmNyTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.735 [XNIO-1 task-3] 9nnpSgpzQTqkpEQzHmNyTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.735 [XNIO-1 task-3] 9nnpSgpzQTqkpEQzHmNyTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.735 [XNIO-1 task-3] 9nnpSgpzQTqkpEQzHmNyTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:45.736 [XNIO-1 task-4] o1lVYBIZT5mUA_Z8zFPaOA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.744 [XNIO-1 task-4] AqOH9FIPQMeWCOZE3xd8cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.744 [XNIO-1 task-4] AqOH9FIPQMeWCOZE3xd8cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.744 [XNIO-1 task-4] AqOH9FIPQMeWCOZE3xd8cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.744 [XNIO-1 task-4] AqOH9FIPQMeWCOZE3xd8cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTRjY2Q5ZjYtMWZiYS00MzA1LTlmM2ItOWU0YjYzMzMzMWQyOk1ZczF2dGJxUzV5cFEwQ1RBQU5nZ3c=", "Basic YTRjY2Q5ZjYtMWZiYS00MzA1LTlmM2ItOWU0YjYzMzMzMWQyOk1ZczF2dGJxUzV5cFEwQ1RBQU5nZ3c=", authorization) +18:00:45.747 [XNIO-1 task-3] 9nnpSgpzQTqkpEQzHmNyTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.749 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:12bafe33 +18:00:45.750 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:12bafe33 +18:00:45.751 [XNIO-1 task-4] AqOH9FIPQMeWCOZE3xd8cg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.760 [XNIO-1 task-3] uRBqpdFVSzavICJfb9ufxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.761 [XNIO-1 task-3] uRBqpdFVSzavICJfb9ufxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.761 [XNIO-1 task-3] uRBqpdFVSzavICJfb9ufxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.762 [XNIO-1 task-3] uRBqpdFVSzavICJfb9ufxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.768 [XNIO-1 task-4] _z1Xo9c8TeCgIKEWZVwsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.768 [XNIO-1 task-4] _z1Xo9c8TeCgIKEWZVwsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.768 [XNIO-1 task-4] _z1Xo9c8TeCgIKEWZVwsWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.769 [XNIO-1 task-4] _z1Xo9c8TeCgIKEWZVwsWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:45.768 [XNIO-1 task-3] uRBqpdFVSzavICJfb9ufxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.777 [XNIO-1 task-3] ZTRH5oijRkWdAhjCZy70ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.778 [XNIO-1 task-3] ZTRH5oijRkWdAhjCZy70ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.778 [XNIO-1 task-3] ZTRH5oijRkWdAhjCZy70ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.778 [XNIO-1 task-3] ZTRH5oijRkWdAhjCZy70ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", "Basic MmI3NDJhOTgtOWQzMS00NTQ2LTg4ZTItZGZiYWUwYWYxZTFmOklkd3B1MGJsU182WFl5SmtGazRHQVE=", authorization) +18:00:45.783 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7a3381c9-116d-4982-b55f-8b14bfea4548 +18:00:45.783 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7a3381c9-116d-4982-b55f-8b14bfea4548 +18:00:45.783 [XNIO-1 task-4] _z1Xo9c8TeCgIKEWZVwsWQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.784 [XNIO-1 task-3] ZTRH5oijRkWdAhjCZy70ig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.788 [XNIO-1 task-3] OxScSirXSdWL09QwTQnG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.788 [XNIO-1 task-3] OxScSirXSdWL09QwTQnG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.789 [XNIO-1 task-3] OxScSirXSdWL09QwTQnG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.789 [XNIO-1 task-3] OxScSirXSdWL09QwTQnG7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.794 [XNIO-1 task-4] QTvEKQOTQdOZ3_RbOpk6TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.794 [XNIO-1 task-4] QTvEKQOTQdOZ3_RbOpk6TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.794 [XNIO-1 task-4] QTvEKQOTQdOZ3_RbOpk6TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.795 [XNIO-1 task-4] QTvEKQOTQdOZ3_RbOpk6TA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 73ea0909-72b5-4d10-bf60-958661a447d2 scope = null +18:00:45.796 [XNIO-1 task-3] OxScSirXSdWL09QwTQnG7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.803 [XNIO-1 task-3] LR_ojYqHS_qNDNjPgXfz6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.803 [XNIO-1 task-3] LR_ojYqHS_qNDNjPgXfz6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.803 [XNIO-1 task-3] LR_ojYqHS_qNDNjPgXfz6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.804 [XNIO-1 task-3] LR_ojYqHS_qNDNjPgXfz6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.805 [XNIO-1 task-4] QTvEKQOTQdOZ3_RbOpk6TA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.809 [XNIO-1 task-3] LR_ojYqHS_qNDNjPgXfz6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.818 [XNIO-1 task-4] i5YnSyBCTyeeyeCsNnPQWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.818 [XNIO-1 task-4] i5YnSyBCTyeeyeCsNnPQWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.818 [XNIO-1 task-4] i5YnSyBCTyeeyeCsNnPQWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.819 [XNIO-1 task-4] i5YnSyBCTyeeyeCsNnPQWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.825 [XNIO-1 task-4] i5YnSyBCTyeeyeCsNnPQWQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.833 [XNIO-1 task-4] sVShgcriSU2y6ijd_JW_sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.833 [XNIO-1 task-4] sVShgcriSU2y6ijd_JW_sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.834 [XNIO-1 task-4] sVShgcriSU2y6ijd_JW_sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.834 [XNIO-1 task-4] sVShgcriSU2y6ijd_JW_sw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = osNEvcG5S1eeKVepxGGJJQ redirectUri = http://localhost:8080/authorization +18:00:45.837 [XNIO-1 task-3] fkG4xfZoTlSCcor7wvtq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.838 [XNIO-1 task-3] fkG4xfZoTlSCcor7wvtq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.838 [XNIO-1 task-3] fkG4xfZoTlSCcor7wvtq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.838 [XNIO-1 task-3] fkG4xfZoTlSCcor7wvtq7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.844 [XNIO-1 task-3] fkG4xfZoTlSCcor7wvtq7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.848 [XNIO-1 task-4] sVShgcriSU2y6ijd_JW_sw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.849 [XNIO-1 task-3] YK6WhO4WRYuKHKHc5URs0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.849 [XNIO-1 task-3] YK6WhO4WRYuKHKHc5URs0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.850 [XNIO-1 task-3] YK6WhO4WRYuKHKHc5URs0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.850 [XNIO-1 task-3] YK6WhO4WRYuKHKHc5URs0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", authorization) +18:00:45.855 [XNIO-1 task-3] YK6WhO4WRYuKHKHc5URs0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.860 [XNIO-1 task-3] azUO30glREC53eWmDO5BVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.860 [XNIO-1 task-3] azUO30glREC53eWmDO5BVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.860 [XNIO-1 task-3] azUO30glREC53eWmDO5BVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.861 [XNIO-1 task-3] azUO30glREC53eWmDO5BVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:45.861 [XNIO-1 task-4] dzw_UOt-RgO_-JcnxZePKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.861 [XNIO-1 task-4] dzw_UOt-RgO_-JcnxZePKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.861 [XNIO-1 task-4] dzw_UOt-RgO_-JcnxZePKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.862 [XNIO-1 task-4] dzw_UOt-RgO_-JcnxZePKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", authorization) +18:00:45.863 [XNIO-1 task-5] 8oXg5Cg7R5CEWTKrjFxHIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.863 [XNIO-1 task-5] 8oXg5Cg7R5CEWTKrjFxHIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.863 [XNIO-1 task-5] 8oXg5Cg7R5CEWTKrjFxHIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.863 [XNIO-1 task-5] 8oXg5Cg7R5CEWTKrjFxHIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RhZTQ4YTYtNTIxZS00OGJhLWE2YTAtYzJhYzZhYTI3ZDUwOnB3dDZ3NXN1VExxV1pvSUduOXpnTFE=", "Basic N2RhZTQ4YTYtNTIxZS00OGJhLWE2YTAtYzJhYzZhYTI3ZDUwOnB3dDZ3NXN1VExxV1pvSUduOXpnTFE=", authorization) +18:00:45.868 [XNIO-1 task-4] dzw_UOt-RgO_-JcnxZePKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.869 [XNIO-1 task-3] azUO30glREC53eWmDO5BVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.869 [XNIO-1 task-4] dzw_UOt-RgO_-JcnxZePKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.873 [XNIO-1 task-5] 8oXg5Cg7R5CEWTKrjFxHIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.873 [XNIO-1 task-4] SEAxjbk_R_ma8WPmaRUAqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.873 [XNIO-1 task-4] SEAxjbk_R_ma8WPmaRUAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.874 [XNIO-1 task-4] SEAxjbk_R_ma8WPmaRUAqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.875 [XNIO-1 task-4] SEAxjbk_R_ma8WPmaRUAqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.882 [XNIO-1 task-4] SEAxjbk_R_ma8WPmaRUAqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.886 [XNIO-1 task-4] IfStpY9_Qyu1rLpVoQ3wcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.886 [XNIO-1 task-4] IfStpY9_Qyu1rLpVoQ3wcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.887 [XNIO-1 task-4] IfStpY9_Qyu1rLpVoQ3wcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.887 [XNIO-1 task-3] vCuUWPZmTL6nQ4ThmZiQEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.887 [XNIO-1 task-4] IfStpY9_Qyu1rLpVoQ3wcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 73041716-9e53-4de4-bc94-fc150353b907 scope = null +18:00:45.888 [XNIO-1 task-3] vCuUWPZmTL6nQ4ThmZiQEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.888 [XNIO-1 task-3] vCuUWPZmTL6nQ4ThmZiQEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.888 [XNIO-1 task-3] vCuUWPZmTL6nQ4ThmZiQEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.893 [XNIO-1 task-3] vCuUWPZmTL6nQ4ThmZiQEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.896 [XNIO-1 task-4] IfStpY9_Qyu1rLpVoQ3wcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.902 [XNIO-1 task-3] lQc26LybQwKczgpUakzbEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.902 [XNIO-1 task-3] lQc26LybQwKczgpUakzbEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.902 [XNIO-1 task-3] lQc26LybQwKczgpUakzbEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.903 [XNIO-1 task-3] lQc26LybQwKczgpUakzbEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.909 [XNIO-1 task-3] lQc26LybQwKczgpUakzbEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.912 [XNIO-1 task-3] GTsum2_6RsqZWsmBkMWjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.912 [XNIO-1 task-3] GTsum2_6RsqZWsmBkMWjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.912 [XNIO-1 task-3] GTsum2_6RsqZWsmBkMWjzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.913 [XNIO-1 task-3] GTsum2_6RsqZWsmBkMWjzA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 723d4f1b-bf42-4463-992d-cb9556fd2a73 scope = null +18:00:45.915 [XNIO-1 task-4] jrFUiqxcRW-Wj03SCk98Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.915 [XNIO-1 task-4] jrFUiqxcRW-Wj03SCk98Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.915 [XNIO-1 task-4] jrFUiqxcRW-Wj03SCk98Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.916 [XNIO-1 task-4] jrFUiqxcRW-Wj03SCk98Ww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = spRS4mgITdG33rhewpHGwQ redirectUri = http://localhost:8080/authorization +18:00:45.920 [XNIO-1 task-5] l-7pgLsPRFGXixnpW1QwjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.920 [XNIO-1 task-5] l-7pgLsPRFGXixnpW1QwjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.921 [XNIO-1 task-5] l-7pgLsPRFGXixnpW1QwjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.921 [XNIO-1 task-5] l-7pgLsPRFGXixnpW1QwjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.923 [XNIO-1 task-4] jrFUiqxcRW-Wj03SCk98Ww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.923 [XNIO-1 task-4] jrFUiqxcRW-Wj03SCk98Ww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.927 [XNIO-1 task-5] l-7pgLsPRFGXixnpW1QwjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.928 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fd2919cf-0020-4a98-8a13-cab758404e48 +18:00:45.934 [XNIO-1 task-3] tRI3hGJvSmyM3T2gA96MXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.935 [XNIO-1 task-3] tRI3hGJvSmyM3T2gA96MXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.936 [XNIO-1 task-3] tRI3hGJvSmyM3T2gA96MXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.937 [XNIO-1 task-3] tRI3hGJvSmyM3T2gA96MXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.943 [XNIO-1 task-3] tRI3hGJvSmyM3T2gA96MXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.948 [XNIO-1 task-3] BNfho-eVRFCUJ-nKdJDV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.948 [XNIO-1 task-3] BNfho-eVRFCUJ-nKdJDV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.948 [XNIO-1 task-3] BNfho-eVRFCUJ-nKdJDV_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.949 [XNIO-1 task-3] BNfho-eVRFCUJ-nKdJDV_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.954 [XNIO-1 task-3] BNfho-eVRFCUJ-nKdJDV_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:45.955 [XNIO-1 task-4] sTQH8jvATlyuwVUcxPzBAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.955 [XNIO-1 task-4] sTQH8jvATlyuwVUcxPzBAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.955 [XNIO-1 task-4] sTQH8jvATlyuwVUcxPzBAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.958 [XNIO-1 task-4] sTQH8jvATlyuwVUcxPzBAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:45.964 [XNIO-1 task-3] I8_YCmEmRiSc6G5a6avZrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.965 [XNIO-1 task-3] I8_YCmEmRiSc6G5a6avZrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:45.965 [XNIO-1 task-3] I8_YCmEmRiSc6G5a6avZrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:45.965 [XNIO-1 task-3] I8_YCmEmRiSc6G5a6avZrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:45.967 [XNIO-1 task-4] sTQH8jvATlyuwVUcxPzBAA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:45.968 [XNIO-1 task-4] sTQH8jvATlyuwVUcxPzBAA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.972 [XNIO-1 task-3] I8_YCmEmRiSc6G5a6avZrg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.977 [XNIO-1 task-3] onhJgRbCTgWdZqONQZsm5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.977 [XNIO-1 task-3] onhJgRbCTgWdZqONQZsm5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.977 [XNIO-1 task-3] onhJgRbCTgWdZqONQZsm5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.978 [XNIO-1 task-3] onhJgRbCTgWdZqONQZsm5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.983 [XNIO-1 task-3] onhJgRbCTgWdZqONQZsm5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:45.988 [XNIO-1 task-3] f56WyzXoQc6grfVnWMmiRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.988 [XNIO-1 task-3] f56WyzXoQc6grfVnWMmiRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.989 [XNIO-1 task-3] f56WyzXoQc6grfVnWMmiRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.990 [XNIO-1 task-3] f56WyzXoQc6grfVnWMmiRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = p3P9OwzkQma7gbOPUxSKvg redirectUri = http://localhost:8080/authorization +18:00:45.991 [XNIO-1 task-4] n1lvFz-LRtOw3qY84FiHcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.991 [XNIO-1 task-4] n1lvFz-LRtOw3qY84FiHcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.991 [XNIO-1 task-4] n1lvFz-LRtOw3qY84FiHcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:45.992 [XNIO-1 task-4] n1lvFz-LRtOw3qY84FiHcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:45.997 [XNIO-1 task-4] n1lvFz-LRtOw3qY84FiHcQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.004 [XNIO-1 task-4] mVtDuW_bRsSKzq_4TvafSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.004 [XNIO-1 task-3] f56WyzXoQc6grfVnWMmiRg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.004 [XNIO-1 task-4] mVtDuW_bRsSKzq_4TvafSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.004 [XNIO-1 task-4] mVtDuW_bRsSKzq_4TvafSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.005 [XNIO-1 task-4] mVtDuW_bRsSKzq_4TvafSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:46.008 [XNIO-1 task-5] M2Wk2smEScGqb6RgL8pQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.008 [XNIO-1 task-5] M2Wk2smEScGqb6RgL8pQZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.009 [XNIO-1 task-5] M2Wk2smEScGqb6RgL8pQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.013 [XNIO-1 task-5] M2Wk2smEScGqb6RgL8pQZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.013 [XNIO-1 task-5] M2Wk2smEScGqb6RgL8pQZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ebWg4yyNTfm34lHu5UAieg redirectUri = http://localhost:8080/authorization +18:00:46.014 [XNIO-1 task-4] mVtDuW_bRsSKzq_4TvafSg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.019 [XNIO-1 task-5] M2Wk2smEScGqb6RgL8pQZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.024 [XNIO-1 task-3] 91fmLMUIQ8mdiUSToCCTpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.024 [XNIO-1 task-3] 91fmLMUIQ8mdiUSToCCTpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.025 [XNIO-1 task-3] 91fmLMUIQ8mdiUSToCCTpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.025 [XNIO-1 task-3] 91fmLMUIQ8mdiUSToCCTpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:46.031 [XNIO-1 task-3] 91fmLMUIQ8mdiUSToCCTpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.040 [XNIO-1 task-5] Iu9JgdlZS1OFsu7dnrL2tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.041 [XNIO-1 task-5] Iu9JgdlZS1OFsu7dnrL2tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.041 [XNIO-1 task-5] Iu9JgdlZS1OFsu7dnrL2tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.041 [XNIO-1 task-5] Iu9JgdlZS1OFsu7dnrL2tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", authorization) +18:00:46.041 [XNIO-1 task-3] UR5kumwsRv2gizFmd7Oayw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.042 [XNIO-1 task-3] UR5kumwsRv2gizFmd7Oayw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.042 [XNIO-1 task-3] UR5kumwsRv2gizFmd7Oayw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.042 [XNIO-1 task-3] UR5kumwsRv2gizFmd7Oayw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", authorization) +18:00:46.051 [XNIO-1 task-3] UR5kumwsRv2gizFmd7Oayw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:46.052 [XNIO-1 task-3] UR5kumwsRv2gizFmd7Oayw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.055 [XNIO-1 task-5] Iu9JgdlZS1OFsu7dnrL2tw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.063 [XNIO-1 task-5] MyiL-x68TK2fn1CYIV5hYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.064 [XNIO-1 task-5] MyiL-x68TK2fn1CYIV5hYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.064 [XNIO-1 task-5] MyiL-x68TK2fn1CYIV5hYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.065 [XNIO-1 task-5] MyiL-x68TK2fn1CYIV5hYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.067 [XNIO-1 task-3] IYJrJTGDTs2VLK2mUkqnpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.067 [XNIO-1 task-3] IYJrJTGDTs2VLK2mUkqnpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.067 [XNIO-1 task-3] IYJrJTGDTs2VLK2mUkqnpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.068 [XNIO-1 task-3] IYJrJTGDTs2VLK2mUkqnpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a1d40ede-8fb6-4b44-b8f8-146ca915e1f6 scope = null +18:00:46.072 [XNIO-1 task-5] MyiL-x68TK2fn1CYIV5hYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.076 [XNIO-1 task-5] 71HC0yaxRgWReK8ymI-_Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.076 [XNIO-1 task-5] 71HC0yaxRgWReK8ymI-_Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.077 [XNIO-1 task-5] 71HC0yaxRgWReK8ymI-_Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.077 [XNIO-1 task-5] 71HC0yaxRgWReK8ymI-_Pg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = D_-85NnPSzCHhpTHC76TcQ redirectUri = http://localhost:8080/authorization +18:00:46.079 [XNIO-1 task-4] jdDBRFNjTJqR2X1LLK03XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.079 [XNIO-1 task-4] jdDBRFNjTJqR2X1LLK03XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.079 [XNIO-1 task-4] jdDBRFNjTJqR2X1LLK03XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.079 [XNIO-1 task-4] jdDBRFNjTJqR2X1LLK03XQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.080 [XNIO-1 task-3] IYJrJTGDTs2VLK2mUkqnpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.085 [XNIO-1 task-5] 71HC0yaxRgWReK8ymI-_Pg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.087 [XNIO-1 task-4] jdDBRFNjTJqR2X1LLK03XQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.098 [XNIO-1 task-5] 6EMEIiecSFamRNlMfxLbqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.099 [XNIO-1 task-5] 6EMEIiecSFamRNlMfxLbqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.099 [XNIO-1 task-5] 6EMEIiecSFamRNlMfxLbqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.099 [XNIO-1 task-3] gCSPGPzySF2U34SJDG70Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.100 [XNIO-1 task-5] 6EMEIiecSFamRNlMfxLbqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", "Basic N2RiYTU3MGMtOGJmYy00MjBhLThiY2YtNWYwMGEzOTIzZWI2Ok5QNkJkb3QyUXBpYzUwWDNFQTlONlE=", authorization) +18:00:46.100 [XNIO-1 task-3] gCSPGPzySF2U34SJDG70Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.100 [XNIO-1 task-3] gCSPGPzySF2U34SJDG70Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.100 [XNIO-1 task-3] gCSPGPzySF2U34SJDG70Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:46.105 [XNIO-1 task-5] 6EMEIiecSFamRNlMfxLbqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.109 [XNIO-1 task-3] gCSPGPzySF2U34SJDG70Rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) +Jun 28, 2024 6:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + ... 14 more + + at java.base/java.lang.Thread.run(Unknown Source) +18:00:46.112 [XNIO-1 task-3] 3wVtcs2GTuejPjxox1Pz1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.112 [XNIO-1 task-3] 3wVtcs2GTuejPjxox1Pz1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.113 [XNIO-1 task-3] 3wVtcs2GTuejPjxox1Pz1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.113 [XNIO-1 task-3] 3wVtcs2GTuejPjxox1Pz1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.119 [XNIO-1 task-3] 3wVtcs2GTuejPjxox1Pz1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.123 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:12bafe33 +18:00:46.123 [XNIO-1 task-3] 77bJFvksSaS2KWtcOfqnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.124 [XNIO-1 task-3] 77bJFvksSaS2KWtcOfqnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.124 [XNIO-1 task-3] 77bJFvksSaS2KWtcOfqnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.124 [XNIO-1 task-3] 77bJFvksSaS2KWtcOfqnjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.130 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:46.132 [XNIO-1 task-3] 77bJFvksSaS2KWtcOfqnjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.139 [XNIO-1 task-3] kHc2HYd0Q1yoxNrO6lyoUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.139 [XNIO-1 task-3] kHc2HYd0Q1yoxNrO6lyoUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.139 [XNIO-1 task-3] kHc2HYd0Q1yoxNrO6lyoUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.140 [XNIO-1 task-3] kHc2HYd0Q1yoxNrO6lyoUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.149 [XNIO-1 task-3] kHc2HYd0Q1yoxNrO6lyoUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.156 [XNIO-1 task-3] bM_WaPVVSka5w0_HSN-SAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.156 [XNIO-1 task-3] bM_WaPVVSka5w0_HSN-SAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.156 [XNIO-1 task-3] bM_WaPVVSka5w0_HSN-SAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.157 [XNIO-1 task-3] bM_WaPVVSka5w0_HSN-SAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.162 [XNIO-1 task-3] bM_WaPVVSka5w0_HSN-SAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.167 [XNIO-1 task-3] -4NBqnEgS8qOIUNyUVy4cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.167 [XNIO-1 task-3] -4NBqnEgS8qOIUNyUVy4cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.167 [XNIO-1 task-3] -4NBqnEgS8qOIUNyUVy4cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.168 [XNIO-1 task-3] -4NBqnEgS8qOIUNyUVy4cg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.174 [XNIO-1 task-3] -4NBqnEgS8qOIUNyUVy4cg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.179 [XNIO-1 task-3] YUccojx_Tletm34mBR0TVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.179 [XNIO-1 task-3] YUccojx_Tletm34mBR0TVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.180 [XNIO-1 task-3] YUccojx_Tletm34mBR0TVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.180 [XNIO-1 task-3] YUccojx_Tletm34mBR0TVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.185 [XNIO-1 task-3] YUccojx_Tletm34mBR0TVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.191 [XNIO-1 task-3] vlHmuUldSaiC8RyxMW0P5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.191 [XNIO-1 task-3] vlHmuUldSaiC8RyxMW0P5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.191 [XNIO-1 task-3] vlHmuUldSaiC8RyxMW0P5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.191 [XNIO-1 task-3] vlHmuUldSaiC8RyxMW0P5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.196 [XNIO-1 task-3] vlHmuUldSaiC8RyxMW0P5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.203 [XNIO-1 task-3] vILO9nEzRT2hTldEFUTKHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.203 [XNIO-1 task-3] vILO9nEzRT2hTldEFUTKHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.203 [XNIO-1 task-3] vILO9nEzRT2hTldEFUTKHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.204 [XNIO-1 task-3] vILO9nEzRT2hTldEFUTKHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.209 [XNIO-1 task-3] vILO9nEzRT2hTldEFUTKHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.213 [XNIO-1 task-3] XdFgKNTqT8KTY-D5ZycWWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.213 [XNIO-1 task-3] XdFgKNTqT8KTY-D5ZycWWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.213 [XNIO-1 task-3] XdFgKNTqT8KTY-D5ZycWWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.214 [XNIO-1 task-3] XdFgKNTqT8KTY-D5ZycWWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.218 [XNIO-1 task-3] XdFgKNTqT8KTY-D5ZycWWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.225 [XNIO-1 task-3] 75QZVyVGRHaXlkIrRVqZ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.225 [XNIO-1 task-3] 75QZVyVGRHaXlkIrRVqZ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.226 [XNIO-1 task-3] 75QZVyVGRHaXlkIrRVqZ7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.226 [XNIO-1 task-3] 75QZVyVGRHaXlkIrRVqZ7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.231 [XNIO-1 task-3] 75QZVyVGRHaXlkIrRVqZ7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.247 [XNIO-1 task-3] hy7k5ePATMSoaECTGt026A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.247 [XNIO-1 task-3] hy7k5ePATMSoaECTGt026A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.252 [XNIO-1 task-3] hy7k5ePATMSoaECTGt026A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.253 [XNIO-1 task-3] hy7k5ePATMSoaECTGt026A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.260 [XNIO-1 task-3] hy7k5ePATMSoaECTGt026A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.267 [XNIO-1 task-3] 5_OcsROlRquwN6RHmyda0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.267 [XNIO-1 task-3] 5_OcsROlRquwN6RHmyda0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.267 [XNIO-1 task-3] 5_OcsROlRquwN6RHmyda0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.287 [XNIO-1 task-3] 5_OcsROlRquwN6RHmyda0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.293 [XNIO-1 task-3] 5_OcsROlRquwN6RHmyda0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.307 [XNIO-1 task-3] YmptBAJTS3mwpGFy-IJSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.307 [XNIO-1 task-3] YmptBAJTS3mwpGFy-IJSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.308 [XNIO-1 task-3] YmptBAJTS3mwpGFy-IJSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.308 [XNIO-1 task-3] YmptBAJTS3mwpGFy-IJSRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QbC1X8J8TzKbw6KuxsDz9A redirectUri = http://localhost:8080/authorization +18:00:46.314 [XNIO-1 task-5] ydKgPQ3LQYeM_zBtqvo59g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.314 [XNIO-1 task-5] ydKgPQ3LQYeM_zBtqvo59g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.314 [XNIO-1 task-5] ydKgPQ3LQYeM_zBtqvo59g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.315 [XNIO-1 task-5] ydKgPQ3LQYeM_zBtqvo59g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.323 [XNIO-1 task-5] ydKgPQ3LQYeM_zBtqvo59g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.327 [XNIO-1 task-3] YmptBAJTS3mwpGFy-IJSRA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.335 [XNIO-1 task-5] -A7MCNRDSvOnD07zPLnUxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.335 [XNIO-1 task-5] -A7MCNRDSvOnD07zPLnUxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.335 [XNIO-1 task-4] C4WOhZFXTYGnPv5HyyYXMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.335 [XNIO-1 task-4] C4WOhZFXTYGnPv5HyyYXMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.335 [XNIO-1 task-5] -A7MCNRDSvOnD07zPLnUxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.336 [XNIO-1 task-4] C4WOhZFXTYGnPv5HyyYXMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.336 [XNIO-1 task-5] -A7MCNRDSvOnD07zPLnUxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:46.336 [XNIO-1 task-4] C4WOhZFXTYGnPv5HyyYXMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:46.342 [XNIO-1 task-5] -A7MCNRDSvOnD07zPLnUxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.343 [XNIO-1 task-4] C4WOhZFXTYGnPv5HyyYXMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:46.343 [XNIO-1 task-4] C4WOhZFXTYGnPv5HyyYXMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.351 [XNIO-1 task-5] OB3BV_vuRheVYcpNG9DsVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.351 [XNIO-1 task-5] OB3BV_vuRheVYcpNG9DsVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.351 [XNIO-1 task-5] OB3BV_vuRheVYcpNG9DsVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.352 [XNIO-1 task-5] OB3BV_vuRheVYcpNG9DsVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.357 [XNIO-1 task-5] OB3BV_vuRheVYcpNG9DsVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.364 [XNIO-1 task-4] qFMg-x4aQ7Cb5RMqu9mmTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.364 [XNIO-1 task-4] qFMg-x4aQ7Cb5RMqu9mmTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.364 [XNIO-1 task-4] qFMg-x4aQ7Cb5RMqu9mmTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.365 [XNIO-1 task-4] qFMg-x4aQ7Cb5RMqu9mmTA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.374 [XNIO-1 task-5] 09UNWWI4RteGuFcZ8uZDWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.374 [XNIO-1 task-5] 09UNWWI4RteGuFcZ8uZDWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.374 [XNIO-1 task-4] qFMg-x4aQ7Cb5RMqu9mmTA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.374 [XNIO-1 task-5] 09UNWWI4RteGuFcZ8uZDWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.375 [XNIO-1 task-5] 09UNWWI4RteGuFcZ8uZDWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = aa25b998-aa08-4f98-80c0-d57b43fde5c5 scope = null +18:00:46.381 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:38fc8e02-0605-4f37-ae90-54e7f5ae8b7b +18:00:46.384 [XNIO-1 task-4] -5xfQwzRTQyVcKDNKNOCWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.384 [XNIO-1 task-4] -5xfQwzRTQyVcKDNKNOCWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.385 [XNIO-1 task-4] -5xfQwzRTQyVcKDNKNOCWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.385 [XNIO-1 task-4] -5xfQwzRTQyVcKDNKNOCWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.386 [XNIO-1 task-4] -5xfQwzRTQyVcKDNKNOCWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", authorization) +18:00:46.391 [XNIO-1 task-4] -5xfQwzRTQyVcKDNKNOCWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.398 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:abaf122e-5c54-433b-8886-9a4d63bf256d +18:00:46.399 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:abaf122e-5c54-433b-8886-9a4d63bf256d +18:00:46.400 [XNIO-1 task-5] 9NG8M-DoS3u4BtKFWAR1KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.400 [XNIO-1 task-5] 9NG8M-DoS3u4BtKFWAR1KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.401 [XNIO-1 task-5] 9NG8M-DoS3u4BtKFWAR1KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.402 [XNIO-1 task-5] 9NG8M-DoS3u4BtKFWAR1KQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.408 [XNIO-1 task-5] 9NG8M-DoS3u4BtKFWAR1KQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.421 [XNIO-1 task-5] E4zUiQ7PSgyQHJQHCGCtqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.421 [XNIO-1 task-5] E4zUiQ7PSgyQHJQHCGCtqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.421 [XNIO-1 task-5] E4zUiQ7PSgyQHJQHCGCtqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.424 [XNIO-1 task-5] E4zUiQ7PSgyQHJQHCGCtqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.433 [XNIO-1 task-5] E4zUiQ7PSgyQHJQHCGCtqg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.439 [XNIO-1 task-5] GuSnJeIARbiK7Dvj7plI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.439 [XNIO-1 task-5] GuSnJeIARbiK7Dvj7plI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.439 [XNIO-1 task-5] GuSnJeIARbiK7Dvj7plI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.442 [XNIO-1 task-5] GuSnJeIARbiK7Dvj7plI3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.447 [XNIO-1 task-5] GuSnJeIARbiK7Dvj7plI3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.455 [XNIO-1 task-5] EkeNCpj3QRWGJfP7sKwQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.455 [XNIO-1 task-5] EkeNCpj3QRWGJfP7sKwQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.455 [XNIO-1 task-5] EkeNCpj3QRWGJfP7sKwQ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.456 [XNIO-1 task-5] EkeNCpj3QRWGJfP7sKwQ_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.461 [XNIO-1 task-5] EkeNCpj3QRWGJfP7sKwQ_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.469 [XNIO-1 task-5] sGCi002HRi6lyvlyliITLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.469 [XNIO-1 task-5] sGCi002HRi6lyvlyliITLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.470 [XNIO-1 task-5] sGCi002HRi6lyvlyliITLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.470 [XNIO-1 task-5] sGCi002HRi6lyvlyliITLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.482 [XNIO-1 task-5] sGCi002HRi6lyvlyliITLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.482 [XNIO-1 task-4] mIaf9nltR6WHbxjfbaUfdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.482 [XNIO-1 task-4] mIaf9nltR6WHbxjfbaUfdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.483 [XNIO-1 task-4] mIaf9nltR6WHbxjfbaUfdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.483 [XNIO-1 task-4] mIaf9nltR6WHbxjfbaUfdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8WyFsFqWShiZZKNfGFiWAg redirectUri = http://localhost:8080/authorization +18:00:46.489 [XNIO-1 task-4] mIaf9nltR6WHbxjfbaUfdQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.491 [XNIO-1 task-5] rBNwgBXSSYe7HglMOT39cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.492 [XNIO-1 task-3] UsSUD28UTKOi1KsJODNY8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.492 [XNIO-1 task-3] UsSUD28UTKOi1KsJODNY8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.492 [XNIO-1 task-3] UsSUD28UTKOi1KsJODNY8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.493 [XNIO-1 task-5] rBNwgBXSSYe7HglMOT39cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.493 [XNIO-1 task-5] rBNwgBXSSYe7HglMOT39cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.493 [XNIO-1 task-5] rBNwgBXSSYe7HglMOT39cA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:46.493 [XNIO-1 task-5] rBNwgBXSSYe7HglMOT39cA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = HDoklPYoSh-s5MsR72dSqw redirectUri = http://localhost:8080/authorization +18:00:46.493 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:786cb64c +18:00:46.498 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:786cb64c +18:00:46.500 [XNIO-1 task-3] UsSUD28UTKOi1KsJODNY8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.503 [XNIO-1 task-5] rBNwgBXSSYe7HglMOT39cA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.505 [XNIO-1 task-4] -7JOOWhdTRSyoCZQ1efS3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.505 [XNIO-1 task-4] -7JOOWhdTRSyoCZQ1efS3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.505 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6d5a2eb2-4ad3-4d0f-b54b-87917d6951e2 +18:00:46.505 [XNIO-1 task-4] -7JOOWhdTRSyoCZQ1efS3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.506 [XNIO-1 task-4] -7JOOWhdTRSyoCZQ1efS3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:46.511 [XNIO-1 task-4] -7JOOWhdTRSyoCZQ1efS3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.512 [XNIO-1 task-3] jSzkOEnwQFeu2gKlnSD_OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.513 [XNIO-1 task-3] jSzkOEnwQFeu2gKlnSD_OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.513 [XNIO-1 task-3] jSzkOEnwQFeu2gKlnSD_OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.513 [XNIO-1 task-3] jSzkOEnwQFeu2gKlnSD_OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", authorization) +18:00:46.515 [XNIO-1 task-5] m__1ICqBQ4WnYTmDdKqNVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.515 [XNIO-1 task-5] m__1ICqBQ4WnYTmDdKqNVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.515 [XNIO-1 task-5] m__1ICqBQ4WnYTmDdKqNVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.515 [XNIO-1 task-5] m__1ICqBQ4WnYTmDdKqNVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", authorization) +18:00:46.520 [XNIO-1 task-4] QgTrIG72S7yifWcHn1iWZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.520 [XNIO-1 task-4] QgTrIG72S7yifWcHn1iWZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.520 [XNIO-1 task-4] QgTrIG72S7yifWcHn1iWZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.521 [XNIO-1 task-4] QgTrIG72S7yifWcHn1iWZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:46.524 [XNIO-1 task-5] m__1ICqBQ4WnYTmDdKqNVQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:46.527 [XNIO-1 task-4] QgTrIG72S7yifWcHn1iWZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.527 [XNIO-1 task-5] u9UuhJ-7Sji8-cupWhAdhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.528 [XNIO-1 task-5] u9UuhJ-7Sji8-cupWhAdhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.529 [XNIO-1 task-5] u9UuhJ-7Sji8-cupWhAdhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.529 [XNIO-1 task-5] u9UuhJ-7Sji8-cupWhAdhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f9499723-138c-4741-a7fe-6de134b8dce1 scope = null +18:00:46.532 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:786cb64c +18:00:46.532 [XNIO-1 task-3] jSzkOEnwQFeu2gKlnSD_OQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.536 [XNIO-1 task-4] OgEgQXRITqS2qqxcmE4vdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.537 [XNIO-1 task-4] OgEgQXRITqS2qqxcmE4vdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.537 [XNIO-1 task-4] OgEgQXRITqS2qqxcmE4vdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.540 [XNIO-1 task-4] OgEgQXRITqS2qqxcmE4vdA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.545 [XNIO-1 task-5] u9UuhJ-7Sji8-cupWhAdhg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:46.548 [XNIO-1 task-5] HeC0_7tzRhS2lff1RJdyEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.548 [XNIO-1 task-5] HeC0_7tzRhS2lff1RJdyEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.549 [XNIO-1 task-5] HeC0_7tzRhS2lff1RJdyEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.549 [XNIO-1 task-5] HeC0_7tzRhS2lff1RJdyEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", authorization) +18:00:46.556 [XNIO-1 task-4] JdzfeADZRMGl2rF4qrM3YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.556 [XNIO-1 task-4] JdzfeADZRMGl2rF4qrM3YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.557 [XNIO-1 task-4] JdzfeADZRMGl2rF4qrM3YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.557 [XNIO-1 task-4] JdzfeADZRMGl2rF4qrM3YA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:46.564 [XNIO-1 task-4] JdzfeADZRMGl2rF4qrM3YA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f9499723-138c-4741-a7fe-6de134b8dce1 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:46.564 [XNIO-1 task-4] JdzfeADZRMGl2rF4qrM3YA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.571 [XNIO-1 task-4] 2v_JPvt9ShS7HMUmZT0aZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.571 [XNIO-1 task-4] 2v_JPvt9ShS7HMUmZT0aZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.571 [XNIO-1 task-4] 2v_JPvt9ShS7HMUmZT0aZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.572 [XNIO-1 task-4] 2v_JPvt9ShS7HMUmZT0aZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.581 [XNIO-1 task-4] 2v_JPvt9ShS7HMUmZT0aZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.591 [XNIO-1 task-4] rgvRy_68SGC8yqCHn2k81g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.591 [XNIO-1 task-4] rgvRy_68SGC8yqCHn2k81g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.593 [XNIO-1 task-4] rgvRy_68SGC8yqCHn2k81g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.594 [XNIO-1 task-4] rgvRy_68SGC8yqCHn2k81g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.599 [XNIO-1 task-4] rgvRy_68SGC8yqCHn2k81g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.610 [XNIO-1 task-4] DD674QSzQs6V785l5f9CQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.611 [XNIO-1 task-4] DD674QSzQs6V785l5f9CQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.611 [XNIO-1 task-4] DD674QSzQs6V785l5f9CQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.611 [XNIO-1 task-4] DD674QSzQs6V785l5f9CQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.632 [XNIO-1 task-4] DD674QSzQs6V785l5f9CQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.633 [XNIO-1 task-5] Oj0ZSIr5SyaEGXpMrT6vTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.633 [XNIO-1 task-5] Oj0ZSIr5SyaEGXpMrT6vTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.633 [XNIO-1 task-5] Oj0ZSIr5SyaEGXpMrT6vTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.634 [XNIO-1 task-5] Oj0ZSIr5SyaEGXpMrT6vTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0FUbOb2KQ0atgsP0L5w4cA redirectUri = http://localhost:8080/authorization +18:00:46.637 [XNIO-1 task-4] 1466f7itSKuP4Nnor4BwBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.637 [XNIO-1 task-4] 1466f7itSKuP4Nnor4BwBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.637 [XNIO-1 task-4] 1466f7itSKuP4Nnor4BwBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.638 [XNIO-1 task-4] 1466f7itSKuP4Nnor4BwBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.641 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:786cb64c +18:00:46.645 [XNIO-1 task-4] 1466f7itSKuP4Nnor4BwBA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.645 [XNIO-1 task-5] Oj0ZSIr5SyaEGXpMrT6vTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:46.648 [XNIO-1 task-5] Oj0ZSIr5SyaEGXpMrT6vTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.660 [XNIO-1 task-4] 1A-_atGcQwKtKgDCXAfRfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.660 [XNIO-1 task-4] 1A-_atGcQwKtKgDCXAfRfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.661 [XNIO-1 task-4] 1A-_atGcQwKtKgDCXAfRfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.661 [XNIO-1 task-4] 1A-_atGcQwKtKgDCXAfRfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.666 [XNIO-1 task-4] 1A-_atGcQwKtKgDCXAfRfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.672 [XNIO-1 task-4] ReIg8tX3Tfmo-mbE1lu3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.672 [XNIO-1 task-4] ReIg8tX3Tfmo-mbE1lu3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.672 [XNIO-1 task-4] ReIg8tX3Tfmo-mbE1lu3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.673 [XNIO-1 task-4] ReIg8tX3Tfmo-mbE1lu3lQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.683 [XNIO-1 task-5] AFTBJE_OQumEdCMMuOfY5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.683 [XNIO-1 task-5] AFTBJE_OQumEdCMMuOfY5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.684 [XNIO-1 task-5] AFTBJE_OQumEdCMMuOfY5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.684 [XNIO-1 task-5] AFTBJE_OQumEdCMMuOfY5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CrInvPr9TYGN6tVHjM83sg redirectUri = http://localhost:8080/authorization +18:00:46.689 [XNIO-1 task-4] ReIg8tX3Tfmo-mbE1lu3lQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.697 [XNIO-1 task-5] AFTBJE_OQumEdCMMuOfY5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:46.697 [XNIO-1 task-5] AFTBJE_OQumEdCMMuOfY5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.704 [XNIO-1 task-3] h2q2K--LTeadLZqmBGo7aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.704 [XNIO-1 task-3] h2q2K--LTeadLZqmBGo7aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.704 [XNIO-1 task-3] h2q2K--LTeadLZqmBGo7aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.705 [XNIO-1 task-3] h2q2K--LTeadLZqmBGo7aA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +Jun 28, 2024 6:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:46.706 [XNIO-1 task-4] KhvE1ValRIKXzjjypywnoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.706 [XNIO-1 task-4] KhvE1ValRIKXzjjypywnoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.706 [XNIO-1 task-4] KhvE1ValRIKXzjjypywnoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.706 [XNIO-1 task-4] KhvE1ValRIKXzjjypywnoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRkNDc0ODEtNTQ4YS00ZGY3LWI0NWItMTc1NzFlZmQ1MDY0OnNpM1daZ195U3NPUXZpNHVQSEFRN3c=", "Basic NGRkNDc0ODEtNTQ4YS00ZGY3LWI0NWItMTc1NzFlZmQ1MDY0OnNpM1daZ195U3NPUXZpNHVQSEFRN3c=", authorization) +18:00:46.710 [XNIO-1 task-3] h2q2K--LTeadLZqmBGo7aA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.712 [XNIO-1 task-5] 6UuQijKRQH-P5Qws5Q70gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +18:00:46.713 [XNIO-1 task-5] 6UuQijKRQH-P5Qws5Q70gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +18:00:46.725 [XNIO-1 task-3] saf8HB-mRgCQBl-q6ECpuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.727 [XNIO-1 task-3] saf8HB-mRgCQBl-q6ECpuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.727 [XNIO-1 task-3] saf8HB-mRgCQBl-q6ECpuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.728 [XNIO-1 task-3] saf8HB-mRgCQBl-q6ECpuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:00:46.734 [XNIO-1 task-3] saf8HB-mRgCQBl-q6ECpuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:46.736 [XNIO-1 task-4] BpRXi2afQnC6FZ1dO071YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.736 [XNIO-1 task-4] BpRXi2afQnC6FZ1dO071YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.737 [XNIO-1 task-4] BpRXi2afQnC6FZ1dO071YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.737 [XNIO-1 task-4] BpRXi2afQnC6FZ1dO071YQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 47ca83bb-3fad-49d8-9e3d-27c9539cba36 scope = null +18:00:46.740 [XNIO-1 task-3] saf8HB-mRgCQBl-q6ECpuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.775 [XNIO-1 task-4] BpRXi2afQnC6FZ1dO071YQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.776 [XNIO-1 task-3] M7PELD66QwCwL3VrvTFuqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.776 [XNIO-1 task-3] M7PELD66QwCwL3VrvTFuqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.777 [XNIO-1 task-3] M7PELD66QwCwL3VrvTFuqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.777 [XNIO-1 task-3] M7PELD66QwCwL3VrvTFuqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:46.780 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:46.783 [XNIO-1 task-3] M7PELD66QwCwL3VrvTFuqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.789 [XNIO-1 task-3] KV8Y8DpVSOOWxqWoj8ACNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.789 [XNIO-1 task-3] KV8Y8DpVSOOWxqWoj8ACNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.790 [XNIO-1 task-3] KV8Y8DpVSOOWxqWoj8ACNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.790 [XNIO-1 task-3] KV8Y8DpVSOOWxqWoj8ACNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.792 [XNIO-1 task-5] 81m_62B6SLSjx6DA0Etcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.792 [XNIO-1 task-5] 81m_62B6SLSjx6DA0Etcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.793 [XNIO-1 task-5] 81m_62B6SLSjx6DA0Etcmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.793 [XNIO-1 task-5] 81m_62B6SLSjx6DA0Etcmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3hBF7DWET0eULtGJsxeD_A redirectUri = http://localhost:8080/authorization +18:00:46.800 [XNIO-1 task-3] KV8Y8DpVSOOWxqWoj8ACNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.805 [XNIO-1 task-5] 81m_62B6SLSjx6DA0Etcmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.811 [XNIO-1 task-3] wNGbr5RIRfOmSpsE9JgeuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.811 [XNIO-1 task-3] wNGbr5RIRfOmSpsE9JgeuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.812 [XNIO-1 task-3] wNGbr5RIRfOmSpsE9JgeuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.812 [XNIO-1 task-3] wNGbr5RIRfOmSpsE9JgeuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:46.819 [XNIO-1 task-3] wNGbr5RIRfOmSpsE9JgeuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.821 [XNIO-1 task-5] aGLCjMx-Qius3dFcCVrc5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.822 [XNIO-1 task-5] aGLCjMx-Qius3dFcCVrc5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.822 [XNIO-1 task-5] aGLCjMx-Qius3dFcCVrc5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.822 [XNIO-1 task-5] aGLCjMx-Qius3dFcCVrc5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", authorization) +18:00:46.828 [XNIO-1 task-3] H9qOCVbGQvqyr_RZqfmKBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.829 [XNIO-1 task-3] H9qOCVbGQvqyr_RZqfmKBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.830 [XNIO-1 task-5] aGLCjMx-Qius3dFcCVrc5A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:46.830 [XNIO-1 task-3] H9qOCVbGQvqyr_RZqfmKBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.832 [XNIO-1 task-5] aGLCjMx-Qius3dFcCVrc5A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.833 [XNIO-1 task-3] H9qOCVbGQvqyr_RZqfmKBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.833 [XNIO-1 task-4] tZhNCl6TQTWsqW9zLJU9hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.833 [XNIO-1 task-4] tZhNCl6TQTWsqW9zLJU9hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.833 [XNIO-1 task-4] tZhNCl6TQTWsqW9zLJU9hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.833 [XNIO-1 task-4] tZhNCl6TQTWsqW9zLJU9hg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9fOBb0r7QSmFt46-QrKM0w redirectUri = http://localhost:8080/authorization +18:00:46.839 [XNIO-1 task-3] H9qOCVbGQvqyr_RZqfmKBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.841 [XNIO-1 task-4] tZhNCl6TQTWsqW9zLJU9hg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.849 [XNIO-1 task-3] SvtWvjJLSn6Gq8LiQc0nQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.850 [XNIO-1 task-3] SvtWvjJLSn6Gq8LiQc0nQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.850 [XNIO-1 task-3] SvtWvjJLSn6Gq8LiQc0nQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.850 [XNIO-1 task-3] SvtWvjJLSn6Gq8LiQc0nQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", authorization) +18:00:46.855 [XNIO-1 task-5] 5CS-YWE_RmCa-thm0BnWfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.856 [XNIO-1 task-5] 5CS-YWE_RmCa-thm0BnWfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.863 [XNIO-1 task-5] 5CS-YWE_RmCa-thm0BnWfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.863 [XNIO-1 task-3] SvtWvjJLSn6Gq8LiQc0nQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.864 [XNIO-1 task-5] 5CS-YWE_RmCa-thm0BnWfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", authorization) +18:00:46.870 [XNIO-1 task-5] 5CS-YWE_RmCa-thm0BnWfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.876 [XNIO-1 task-5] yDmbUU7lRzuNzkBPYYsrkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.876 [XNIO-1 task-5] yDmbUU7lRzuNzkBPYYsrkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.876 [XNIO-1 task-5] yDmbUU7lRzuNzkBPYYsrkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.879 [XNIO-1 task-5] yDmbUU7lRzuNzkBPYYsrkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.881 [XNIO-1 task-3] jO99FbQgRFade3zn8LkmzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.881 [XNIO-1 task-3] jO99FbQgRFade3zn8LkmzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.881 [XNIO-1 task-5] yDmbUU7lRzuNzkBPYYsrkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", authorization) +18:00:46.881 [XNIO-1 task-3] jO99FbQgRFade3zn8LkmzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmNmNGMyM2EtN2IyZi00YzdlLTk0ZGUtMmViYTI1ZjdlODAxOjlManBnNzhZU2s2TTB5UW5tLURjalE=", "Basic NmNmNGMyM2EtN2IyZi00YzdlLTk0ZGUtMmViYTI1ZjdlODAxOjlManBnNzhZU2s2TTB5UW5tLURjalE=", authorization) +18:00:46.892 [XNIO-1 task-3] jO99FbQgRFade3zn8LkmzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.897 [XNIO-1 task-3] 9j5NEKyCR6-adhrl6cZQJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.897 [XNIO-1 task-3] 9j5NEKyCR6-adhrl6cZQJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.897 [XNIO-1 task-3] 9j5NEKyCR6-adhrl6cZQJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.897 [XNIO-1 task-3] 9j5NEKyCR6-adhrl6cZQJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.898 [XNIO-1 task-3] 9j5NEKyCR6-adhrl6cZQJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmNmNGMyM2EtN2IyZi00YzdlLTk0ZGUtMmViYTI1ZjdlODAxOjlManBnNzhZU2s2TTB5UW5tLURjalE=", "Basic NmNmNGMyM2EtN2IyZi00YzdlLTk0ZGUtMmViYTI1ZjdlODAxOjlManBnNzhZU2s2TTB5UW5tLURjalE=", authorization) +18:00:46.906 [XNIO-1 task-3] 9j5NEKyCR6-adhrl6cZQJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.915 [XNIO-1 task-3] -OlEcwG1TJe60VRc3KaT7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.915 [XNIO-1 task-3] -OlEcwG1TJe60VRc3KaT7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.916 [XNIO-1 task-3] -OlEcwG1TJe60VRc3KaT7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.916 [XNIO-1 task-3] -OlEcwG1TJe60VRc3KaT7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:46.920 [XNIO-1 task-5] q0ZofLRtTXGyjhjthMugcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.920 [XNIO-1 task-5] q0ZofLRtTXGyjhjthMugcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.921 [XNIO-1 task-5] q0ZofLRtTXGyjhjthMugcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.921 [XNIO-1 task-5] q0ZofLRtTXGyjhjthMugcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.921 [XNIO-1 task-5] q0ZofLRtTXGyjhjthMugcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", authorization) +18:00:46.923 [XNIO-1 task-4] crsAj7G-TkmvW-GAs42qlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.923 [XNIO-1 task-4] crsAj7G-TkmvW-GAs42qlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.923 [XNIO-1 task-4] crsAj7G-TkmvW-GAs42qlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.923 [XNIO-1 task-4] crsAj7G-TkmvW-GAs42qlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:46.929 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:563c8c31 +18:00:46.930 [XNIO-1 task-3] QFWTyQx9Snu5f0bNIxDNPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.930 [XNIO-1 task-3] QFWTyQx9Snu5f0bNIxDNPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.930 [XNIO-1 task-3] QFWTyQx9Snu5f0bNIxDNPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.931 [XNIO-1 task-3] QFWTyQx9Snu5f0bNIxDNPw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.932 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:563c8c31 +18:00:46.935 [XNIO-1 task-5] q0ZofLRtTXGyjhjthMugcg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.937 [XNIO-1 task-4] crsAj7G-TkmvW-GAs42qlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.939 [XNIO-1 task-3] QFWTyQx9Snu5f0bNIxDNPw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.950 [XNIO-1 task-4] yPPN8W5VQVCNDoWGTBZvgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.950 [XNIO-1 task-4] yPPN8W5VQVCNDoWGTBZvgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.950 [XNIO-1 task-4] yPPN8W5VQVCNDoWGTBZvgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.951 [XNIO-1 task-4] yPPN8W5VQVCNDoWGTBZvgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", authorization) +18:00:46.964 [XNIO-1 task-4] yPPN8W5VQVCNDoWGTBZvgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.964 [XNIO-1 task-4] yPPN8W5VQVCNDoWGTBZvgA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.967 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7e90824a-dbd7-46ea-9645-3f4efa55ecdd +18:00:46.968 [XNIO-1 task-3] fSsmoMNwRlavV0KasyCelA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.968 [XNIO-1 task-3] fSsmoMNwRlavV0KasyCelA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.973 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d99b47a8-a6e6-47d6-8ccb-c8a8f1900468 +18:00:46.973 [XNIO-1 task-3] fSsmoMNwRlavV0KasyCelA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.974 [XNIO-1 task-5] f-FZf57XROWCl8vANNwPMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:46.974 [XNIO-1 task-5] f-FZf57XROWCl8vANNwPMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:46.974 [XNIO-1 task-3] fSsmoMNwRlavV0KasyCelA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:46.974 [XNIO-1 task-3] fSsmoMNwRlavV0KasyCelA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.975 [XNIO-1 task-5] f-FZf57XROWCl8vANNwPMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:46.979 [XNIO-1 task-3] fSsmoMNwRlavV0KasyCelA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:46.983 [XNIO-1 task-5] f-FZf57XROWCl8vANNwPMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:46.986 [XNIO-1 task-5] f-FZf57XROWCl8vANNwPMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:46.988 [XNIO-1 task-3] odkTBNM5RH-EJC-4IXkPwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.988 [XNIO-1 task-3] odkTBNM5RH-EJC-4IXkPwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.989 [XNIO-1 task-3] odkTBNM5RH-EJC-4IXkPwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:46.989 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df713c77-0e8e-42a4-aeae-539dc9b80e87 +18:00:46.989 [XNIO-1 task-3] odkTBNM5RH-EJC-4IXkPwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:46.994 [XNIO-1 task-3] odkTBNM5RH-EJC-4IXkPwQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.004 [XNIO-1 task-3] u0BRhzjcTZypLNspSxi6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.004 [XNIO-1 task-3] u0BRhzjcTZypLNspSxi6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.005 [XNIO-1 task-3] u0BRhzjcTZypLNspSxi6jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.005 [XNIO-1 task-3] u0BRhzjcTZypLNspSxi6jA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.010 [XNIO-1 task-3] u0BRhzjcTZypLNspSxi6jA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.014 [XNIO-1 task-3] jcwTYZ_5Tw-YllTjbMQ27g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.014 [XNIO-1 task-3] jcwTYZ_5Tw-YllTjbMQ27g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.015 [XNIO-1 task-3] jcwTYZ_5Tw-YllTjbMQ27g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.015 [XNIO-1 task-3] jcwTYZ_5Tw-YllTjbMQ27g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.021 [XNIO-1 task-3] jcwTYZ_5Tw-YllTjbMQ27g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.022 [XNIO-1 task-5] 1PnDdnxSSIix2BzpDR8r9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.022 [XNIO-1 task-5] 1PnDdnxSSIix2BzpDR8r9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.022 [XNIO-1 task-5] 1PnDdnxSSIix2BzpDR8r9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.022 [XNIO-1 task-5] 1PnDdnxSSIix2BzpDR8r9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Kg40eOxnQHqdLMX4j1vdzA redirectUri = http://localhost:8080/authorization +18:00:47.030 [XNIO-1 task-5] 1PnDdnxSSIix2BzpDR8r9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.032 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4cdfb3c2-c6bc-4899-b376-aa7f08a7aa55 +18:00:47.033 [XNIO-1 task-3] XeScKuOHRbWwIYWFClMqFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.033 [XNIO-1 task-3] XeScKuOHRbWwIYWFClMqFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.034 [XNIO-1 task-3] XeScKuOHRbWwIYWFClMqFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.034 [XNIO-1 task-3] XeScKuOHRbWwIYWFClMqFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:47.040 [XNIO-1 task-3] XeScKuOHRbWwIYWFClMqFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.045 [XNIO-1 task-3] DlwlwAMhRm-l2y4jSKHCNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.045 [XNIO-1 task-3] DlwlwAMhRm-l2y4jSKHCNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.046 [XNIO-1 task-3] DlwlwAMhRm-l2y4jSKHCNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.046 [XNIO-1 task-3] DlwlwAMhRm-l2y4jSKHCNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", "Basic N2E5ZmFkYjUtMTQyZC00M2ZhLTkwZTUtZTdlYjMwNmYxYzU3Om5YTmhKaVNTU1JtZmFQZ2l6bXFLTlE=", authorization) +18:00:47.052 [XNIO-1 task-3] DlwlwAMhRm-l2y4jSKHCNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.080 [XNIO-1 task-3] pLJ0kWlvR5-9QwMJep0flg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.080 [XNIO-1 task-3] pLJ0kWlvR5-9QwMJep0flg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.081 [XNIO-1 task-3] pLJ0kWlvR5-9QwMJep0flg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.081 [XNIO-1 task-3] pLJ0kWlvR5-9QwMJep0flg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmQ1YmJmZWEtZDgyZC00NTlkLWJlZDUtNGU0MTgzMGNhNTVmOktiOFo1ZDAxUm1XOTlVaWVtSlFhQmc=", "Basic ZmQ1YmJmZWEtZDgyZC00NTlkLWJlZDUtNGU0MTgzMGNhNTVmOktiOFo1ZDAxUm1XOTlVaWVtSlFhQmc=", authorization) +18:00:47.088 [XNIO-1 task-3] pLJ0kWlvR5-9QwMJep0flg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.095 [XNIO-1 task-3] 8YghQsDSTRC86WQO1zxzxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.096 [XNIO-1 task-5] 14XCd4LiQuiVEexHHHgonQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.096 [XNIO-1 task-5] 14XCd4LiQuiVEexHHHgonQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.096 [XNIO-1 task-5] 14XCd4LiQuiVEexHHHgonQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.097 [XNIO-1 task-5] 14XCd4LiQuiVEexHHHgonQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmQ1YmJmZWEtZDgyZC00NTlkLWJlZDUtNGU0MTgzMGNhNTVmOktiOFo1ZDAxUm1XOTlVaWVtSlFhQmc=", "Basic ZmQ1YmJmZWEtZDgyZC00NTlkLWJlZDUtNGU0MTgzMGNhNTVmOktiOFo1ZDAxUm1XOTlVaWVtSlFhQmc=", authorization) +18:00:47.102 [XNIO-1 task-5] 14XCd4LiQuiVEexHHHgonQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.095 [XNIO-1 task-3] 8YghQsDSTRC86WQO1zxzxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.105 [XNIO-1 task-3] 8YghQsDSTRC86WQO1zxzxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.105 [XNIO-1 task-3] 8YghQsDSTRC86WQO1zxzxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", authorization) +18:00:47.107 [XNIO-1 task-5] 4o-6gwLoTtOjLDW0eNsvTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.107 [XNIO-1 task-5] 4o-6gwLoTtOjLDW0eNsvTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.108 [XNIO-1 task-5] 4o-6gwLoTtOjLDW0eNsvTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.108 [XNIO-1 task-5] 4o-6gwLoTtOjLDW0eNsvTA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", authorization) +18:00:47.114 [XNIO-1 task-5] 4o-6gwLoTtOjLDW0eNsvTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.119 [XNIO-1 task-5] r6lF0fxwTNG4NJA07kKo1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.120 [XNIO-1 task-5] r6lF0fxwTNG4NJA07kKo1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.120 [XNIO-1 task-5] r6lF0fxwTNG4NJA07kKo1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.121 [XNIO-1 task-5] r6lF0fxwTNG4NJA07kKo1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", authorization) +18:00:47.126 [XNIO-1 task-3] 8YghQsDSTRC86WQO1zxzxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:47.129 [XNIO-1 task-5] r6lF0fxwTNG4NJA07kKo1A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.134 [XNIO-1 task-3] Tx9vnokdT7y5ytolBqvsRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.134 [XNIO-1 task-3] Tx9vnokdT7y5ytolBqvsRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.134 [XNIO-1 task-3] Tx9vnokdT7y5ytolBqvsRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.135 [XNIO-1 task-3] Tx9vnokdT7y5ytolBqvsRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b259aea0-dadb-42fb-a780-c057fa836564 scope = null +18:00:47.145 [XNIO-1 task-5] ew6qeFI-SkGtFlo5XUWwNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.145 [XNIO-1 task-5] ew6qeFI-SkGtFlo5XUWwNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.145 [XNIO-1 task-5] ew6qeFI-SkGtFlo5XUWwNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b259aea0-dadb-42fb-a780-c057fa836564 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:47.146 [XNIO-1 task-5] ew6qeFI-SkGtFlo5XUWwNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.146 [XNIO-1 task-5] ew6qeFI-SkGtFlo5XUWwNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.152 [XNIO-1 task-5] ew6qeFI-SkGtFlo5XUWwNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.157 [XNIO-1 task-5] 0IB0ksg2S_211B4H8IaAuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.158 [XNIO-1 task-5] 0IB0ksg2S_211B4H8IaAuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.158 [XNIO-1 task-5] 0IB0ksg2S_211B4H8IaAuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.159 [XNIO-1 task-5] 0IB0ksg2S_211B4H8IaAuw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.165 [XNIO-1 task-3] qKRar8oJSx65mJ5C2rRRZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.166 [XNIO-1 task-3] qKRar8oJSx65mJ5C2rRRZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.166 [XNIO-1 task-5] 0IB0ksg2S_211B4H8IaAuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.166 [XNIO-1 task-3] qKRar8oJSx65mJ5C2rRRZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.166 [XNIO-1 task-3] qKRar8oJSx65mJ5C2rRRZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = rrzE-ksDQUOtin5Yr4smPQ redirectUri = http://localhost:8080/authorization +18:00:47.173 [XNIO-1 task-3] qKRar8oJSx65mJ5C2rRRZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.174 [XNIO-1 task-5] zlioIQzoQqmDQGpryliLGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.174 [XNIO-1 task-5] zlioIQzoQqmDQGpryliLGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.174 [XNIO-1 task-5] zlioIQzoQqmDQGpryliLGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.175 [XNIO-1 task-5] zlioIQzoQqmDQGpryliLGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:47.181 [XNIO-1 task-5] zlioIQzoQqmDQGpryliLGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.192 [XNIO-1 task-5] 1iWaHVPSTwCefHyzK-Cdiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.192 [XNIO-1 task-5] 1iWaHVPSTwCefHyzK-Cdiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.192 [XNIO-1 task-5] 1iWaHVPSTwCefHyzK-Cdiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.193 [XNIO-1 task-5] 1iWaHVPSTwCefHyzK-Cdiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:47.200 [XNIO-1 task-5] 1iWaHVPSTwCefHyzK-Cdiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.217 [XNIO-1 task-5] HRuLxmA7SiGdn6CxJgIbVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.217 [XNIO-1 task-5] HRuLxmA7SiGdn6CxJgIbVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.217 [XNIO-1 task-5] HRuLxmA7SiGdn6CxJgIbVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.218 [XNIO-1 task-5] HRuLxmA7SiGdn6CxJgIbVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RhZTQ4YTYtNTIxZS00OGJhLWE2YTAtYzJhYzZhYTI3ZDUwOnB3dDZ3NXN1VExxV1pvSUduOXpnTFE=", "Basic N2RhZTQ4YTYtNTIxZS00OGJhLWE2YTAtYzJhYzZhYTI3ZDUwOnB3dDZ3NXN1VExxV1pvSUduOXpnTFE=", authorization) +18:00:47.222 [XNIO-1 task-3] GdNupCr0SuSnJEumlTQVeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.222 [XNIO-1 task-3] GdNupCr0SuSnJEumlTQVeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.223 [XNIO-1 task-3] GdNupCr0SuSnJEumlTQVeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.223 [XNIO-1 task-3] GdNupCr0SuSnJEumlTQVeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", authorization) +18:00:47.223 [XNIO-1 task-5] HRuLxmA7SiGdn6CxJgIbVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.228 [XNIO-1 task-5] oAXZkOWUS5eO05U8_y6JMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.228 [XNIO-1 task-5] oAXZkOWUS5eO05U8_y6JMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.229 [XNIO-1 task-5] oAXZkOWUS5eO05U8_y6JMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.229 [XNIO-1 task-5] oAXZkOWUS5eO05U8_y6JMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:47.234 [XNIO-1 task-4] y0rR30OgTsyfxThwCAhU4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.234 [XNIO-1 task-4] y0rR30OgTsyfxThwCAhU4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.235 [XNIO-1 task-4] y0rR30OgTsyfxThwCAhU4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.235 [XNIO-1 task-4] y0rR30OgTsyfxThwCAhU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:47.238 [XNIO-1 task-5] oAXZkOWUS5eO05U8_y6JMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:47.238 [XNIO-1 task-5] oAXZkOWUS5eO05U8_y6JMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.241 [XNIO-1 task-3] GdNupCr0SuSnJEumlTQVeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:47.241 [XNIO-1 task-3] GdNupCr0SuSnJEumlTQVeg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.250 [XNIO-1 task-5] P0rjshlZStC7DoSQDQAvxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.251 [XNIO-1 task-5] P0rjshlZStC7DoSQDQAvxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.251 [XNIO-1 task-5] P0rjshlZStC7DoSQDQAvxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.251 [XNIO-1 task-3] nVtup2RvSfKH3S_wZ6xW7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.251 [XNIO-1 task-3] nVtup2RvSfKH3S_wZ6xW7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.252 [XNIO-1 task-3] nVtup2RvSfKH3S_wZ6xW7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.252 [XNIO-1 task-3] nVtup2RvSfKH3S_wZ6xW7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:47.256 [XNIO-1 task-5] P0rjshlZStC7DoSQDQAvxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", "Basic NmZkNTZkOTgtZjM0OC00ODM4LThjMzUtNDlhZmY1YWYzMzhlOmpEZklSdnQ3UzJhVHRyZE8tQnhGQlE=", authorization) +18:00:47.265 [XNIO-1 task-5] P0rjshlZStC7DoSQDQAvxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.273 [XNIO-1 task-3] nVtup2RvSfKH3S_wZ6xW7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.275 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6229c0ce-3353-4ab4-8361-1fcffb863dd7 +18:00:47.276 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6229c0ce-3353-4ab4-8361-1fcffb863dd7 +18:00:47.277 [XNIO-1 task-5] 0Oq8ZHo-QAC58ZD7jeQQPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.278 [XNIO-1 task-5] 0Oq8ZHo-QAC58ZD7jeQQPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.279 [XNIO-1 task-5] 0Oq8ZHo-QAC58ZD7jeQQPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.280 [XNIO-1 task-5] 0Oq8ZHo-QAC58ZD7jeQQPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.288 [XNIO-1 task-5] 0Oq8ZHo-QAC58ZD7jeQQPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.298 [XNIO-1 task-5] 94O36lR5RFmkkQKM8yspYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.298 [XNIO-1 task-5] 94O36lR5RFmkkQKM8yspYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.299 [XNIO-1 task-5] 94O36lR5RFmkkQKM8yspYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.299 [XNIO-1 task-5] 94O36lR5RFmkkQKM8yspYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.306 [XNIO-1 task-5] 94O36lR5RFmkkQKM8yspYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.310 [XNIO-1 task-3] xP6_fkVTRf2bcf5j2S9UAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.310 [XNIO-1 task-3] xP6_fkVTRf2bcf5j2S9UAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.310 [XNIO-1 task-3] xP6_fkVTRf2bcf5j2S9UAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.311 [XNIO-1 task-3] xP6_fkVTRf2bcf5j2S9UAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YhsGSR6jSdGHkBqr101L7Q redirectUri = http://localhost:8080/authorization +18:00:47.316 [XNIO-1 task-5] CQhzZb7WRlquVPgdtHB9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.316 [XNIO-1 task-5] CQhzZb7WRlquVPgdtHB9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.317 [XNIO-1 task-5] CQhzZb7WRlquVPgdtHB9ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:47.318 [XNIO-1 task-5] CQhzZb7WRlquVPgdtHB9ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", authorization) +18:00:47.320 [XNIO-1 task-3] xP6_fkVTRf2bcf5j2S9UAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:47.321 [XNIO-1 task-3] xP6_fkVTRf2bcf5j2S9UAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:47.325 [XNIO-1 task-5] CQhzZb7WRlquVPgdtHB9ZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:00:47.329 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:06ce6bc9-9d53-486a-a50e-960a4d168f0d + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +18:00:47.333 [XNIO-1 task-5] LSdakQuyQry5LWAMpCeDsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.338 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:47.338 [XNIO-1 task-5] LSdakQuyQry5LWAMpCeDsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.335 [XNIO-1 task-4] tMppxpbXS1KDQAsXobGV9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.339 [XNIO-1 task-5] LSdakQuyQry5LWAMpCeDsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.339 [XNIO-1 task-4] tMppxpbXS1KDQAsXobGV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.339 [XNIO-1 task-4] tMppxpbXS1KDQAsXobGV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.340 [XNIO-1 task-4] tMppxpbXS1KDQAsXobGV9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.340 [XNIO-1 task-5] LSdakQuyQry5LWAMpCeDsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.340 [XNIO-1 task-4] tMppxpbXS1KDQAsXobGV9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = yB_EaFIRRieHSXA-pzivOg redirectUri = http://localhost:8080/authorization +18:00:47.347 [XNIO-1 task-5] LSdakQuyQry5LWAMpCeDsw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.347 [XNIO-1 task-3] y1JZTmafRpaZQD1Lc_lsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.348 [XNIO-1 task-3] y1JZTmafRpaZQD1Lc_lsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.348 [XNIO-1 task-3] y1JZTmafRpaZQD1Lc_lsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.348 [XNIO-1 task-3] y1JZTmafRpaZQD1Lc_lsIQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 33f1f1e8-55e1-4721-baa9-e1b652a84bb5 scope = null +18:00:47.350 [XNIO-1 task-4] tMppxpbXS1KDQAsXobGV9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.355 [XNIO-1 task-5] b1reS2TcTQmzmTiA_WZi2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.356 [XNIO-1 task-5] b1reS2TcTQmzmTiA_WZi2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.356 [XNIO-1 task-5] b1reS2TcTQmzmTiA_WZi2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.357 [XNIO-1 task-5] b1reS2TcTQmzmTiA_WZi2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:47.361 [XNIO-1 task-4] PKDvJLHPRE2gu7819aBcQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.362 [XNIO-1 task-4] PKDvJLHPRE2gu7819aBcQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.362 [XNIO-1 task-4] PKDvJLHPRE2gu7819aBcQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.362 [XNIO-1 task-4] PKDvJLHPRE2gu7819aBcQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", authorization) +18:00:47.362 [XNIO-1 task-3] y1JZTmafRpaZQD1Lc_lsIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.364 [XNIO-1 task-5] b1reS2TcTQmzmTiA_WZi2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.375 [XNIO-1 task-5] cDSyCyNDTaWzRJhSo0dTfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.375 [XNIO-1 task-5] cDSyCyNDTaWzRJhSo0dTfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.375 [XNIO-1 task-5] cDSyCyNDTaWzRJhSo0dTfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.376 [XNIO-1 task-5] cDSyCyNDTaWzRJhSo0dTfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.376 [XNIO-1 task-5] cDSyCyNDTaWzRJhSo0dTfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:47.383 [XNIO-1 task-5] cDSyCyNDTaWzRJhSo0dTfQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.392 [XNIO-1 task-5] b87s42wxQ_OFxwchsV1GGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.393 [XNIO-1 task-5] b87s42wxQ_OFxwchsV1GGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.393 [XNIO-1 task-5] b87s42wxQ_OFxwchsV1GGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.393 [XNIO-1 task-5] b87s42wxQ_OFxwchsV1GGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:47.399 [XNIO-1 task-5] b87s42wxQ_OFxwchsV1GGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.404 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:563c8c31 +18:00:47.404 [XNIO-1 task-5] BOVScDQtQbqbmSq3DP2ltQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.404 [XNIO-1 task-4] 2AJ5KbmKRqG9jXxYQbAnBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.404 [XNIO-1 task-5] BOVScDQtQbqbmSq3DP2ltQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.405 [XNIO-1 task-5] BOVScDQtQbqbmSq3DP2ltQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.405 [XNIO-1 task-5] BOVScDQtQbqbmSq3DP2ltQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.405 [XNIO-1 task-4] 2AJ5KbmKRqG9jXxYQbAnBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.406 [XNIO-1 task-4] 2AJ5KbmKRqG9jXxYQbAnBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", "Basic NWFjMTc3MjYtNmFmZS00ZGIwLWE0MzUtM2MxMzBmOTI2MjNmOkREWHl6UjVFVG5ha0N4d2VfdVlQVnc=", authorization) +18:00:47.406 [XNIO-1 task-5] BOVScDQtQbqbmSq3DP2ltQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:47.413 [XNIO-1 task-5] BOVScDQtQbqbmSq3DP2ltQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.422 [XNIO-1 task-4] 2AJ5KbmKRqG9jXxYQbAnBA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.423 [XNIO-1 task-5] dO3tN1GjSoy39o9y0NTZTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.424 [XNIO-1 task-5] dO3tN1GjSoy39o9y0NTZTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.424 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.425 [XNIO-1 task-5] dO3tN1GjSoy39o9y0NTZTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.425 [XNIO-1 task-5] dO3tN1GjSoy39o9y0NTZTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.426 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.436 [XNIO-1 task-5] dO3tN1GjSoy39o9y0NTZTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.451 [XNIO-1 task-4] IeYOODHHTP-T3IySIc9aSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.452 [XNIO-1 task-4] IeYOODHHTP-T3IySIc9aSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.452 [XNIO-1 task-4] IeYOODHHTP-T3IySIc9aSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.452 [XNIO-1 task-4] IeYOODHHTP-T3IySIc9aSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDI5ZDVhZjItYzFmMi00MzAwLWIxZTMtNzdjNGNkYzg4NmM1OjNrUVQ4WUZKUjRHUDcwRktkSjdhOEE=", "Basic ZDI5ZDVhZjItYzFmMi00MzAwLWIxZTMtNzdjNGNkYzg4NmM1OjNrUVQ4WUZKUjRHUDcwRktkSjdhOEE=", authorization) +18:00:47.470 [XNIO-1 task-4] IeYOODHHTP-T3IySIc9aSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.481 [XNIO-1 task-4] 5rxdTmOLTr6JQ6yk8f7XRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.481 [XNIO-1 task-4] 5rxdTmOLTr6JQ6yk8f7XRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.482 [XNIO-1 task-4] 5rxdTmOLTr6JQ6yk8f7XRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.482 [XNIO-1 task-4] 5rxdTmOLTr6JQ6yk8f7XRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", authorization) +18:00:47.484 [XNIO-1 task-5] NFhSuSaRQiyJY8sh15-k0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.484 [XNIO-1 task-5] NFhSuSaRQiyJY8sh15-k0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.484 [XNIO-1 task-5] NFhSuSaRQiyJY8sh15-k0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.485 [XNIO-1 task-5] NFhSuSaRQiyJY8sh15-k0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", authorization) +18:00:47.490 [XNIO-1 task-5] NFhSuSaRQiyJY8sh15-k0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.494 [XNIO-1 task-5] jc1LhEgcQheSMHIWRorpvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.494 [XNIO-1 task-5] jc1LhEgcQheSMHIWRorpvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.495 [XNIO-1 task-5] jc1LhEgcQheSMHIWRorpvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.495 [XNIO-1 task-5] jc1LhEgcQheSMHIWRorpvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThhNTMxZGItMGVmNS00ZWE0LWFkZGQtM2NjODI2MDRmNjFiOlZvZ1RvWmhaUU1xb3YxblNQeFFZVkE=", "Basic YThhNTMxZGItMGVmNS00ZWE0LWFkZGQtM2NjODI2MDRmNjFiOlZvZ1RvWmhaUU1xb3YxblNQeFFZVkE=", authorization) +18:00:47.497 [XNIO-1 task-4] 5rxdTmOLTr6JQ6yk8f7XRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:47.498 [XNIO-1 task-4] rpV6Lx4NQHy1BmTc6GfNMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.499 [XNIO-1 task-4] rpV6Lx4NQHy1BmTc6GfNMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.499 [XNIO-1 task-4] rpV6Lx4NQHy1BmTc6GfNMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.499 [XNIO-1 task-4] rpV6Lx4NQHy1BmTc6GfNMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", "Basic NGRlNTUyZmItYTRhNS00NWFkLTljMTEtZmM0MjFmMjg4YTk3Okt5SHZQVWx0VG11aVRzMGtSVDEtNEE=", authorization) +18:00:47.511 [XNIO-1 task-4] rpV6Lx4NQHy1BmTc6GfNMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:47.510 [XNIO-1 task-5] jc1LhEgcQheSMHIWRorpvg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +18:00:47.521 [XNIO-1 task-4] LjtjsB8eQmKDzIm5dPgY_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +18:00:47.521 [XNIO-1 task-4] LjtjsB8eQmKDzIm5dPgY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.521 [XNIO-1 task-4] LjtjsB8eQmKDzIm5dPgY_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.Operation.call(Operation.java:170) +18:00:47.523 [XNIO-1 task-4] LjtjsB8eQmKDzIm5dPgY_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:00:47.529 [XNIO-1 task-4] LjtjsB8eQmKDzIm5dPgY_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.529 [XNIO-1 task-4] LjtjsB8eQmKDzIm5dPgY_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.537 [XNIO-1 task-4] 6dY5e_NkR-eCnXRwoz09Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.537 [XNIO-1 task-4] 6dY5e_NkR-eCnXRwoz09Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:47.537 [XNIO-1 task-4] 6dY5e_NkR-eCnXRwoz09Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.537 [XNIO-1 task-5] werfMfaaRLGGsop1HIuYNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.537 [XNIO-1 task-5] werfMfaaRLGGsop1HIuYNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +18:00:47.538 [XNIO-1 task-5] werfMfaaRLGGsop1HIuYNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.538 [XNIO-1 task-5] werfMfaaRLGGsop1HIuYNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +18:00:47.543 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:abaf122e-5c54-433b-8886-9a4d63bf256d +18:00:47.545 [XNIO-1 task-5] werfMfaaRLGGsop1HIuYNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.550 [XNIO-1 task-5] 0VistcfdQ8GCXmcKyzpbKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.550 [XNIO-1 task-5] 0VistcfdQ8GCXmcKyzpbKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.550 [XNIO-1 task-5] 0VistcfdQ8GCXmcKyzpbKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.551 [XNIO-1 task-5] 0VistcfdQ8GCXmcKyzpbKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.551 [XNIO-1 task-5] 0VistcfdQ8GCXmcKyzpbKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.551 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:47.551 [XNIO-1 task-5] 0VistcfdQ8GCXmcKyzpbKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:47.552 [XNIO-1 task-4] 6dY5e_NkR-eCnXRwoz09Hw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.556 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.561 [XNIO-1 task-5] 0VistcfdQ8GCXmcKyzpbKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.571 [XNIO-1 task-4] bNGF6HkhTxOvCrTf-MujUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.571 [XNIO-1 task-4] bNGF6HkhTxOvCrTf-MujUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.572 [XNIO-1 task-4] bNGF6HkhTxOvCrTf-MujUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.572 [XNIO-1 task-4] bNGF6HkhTxOvCrTf-MujUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.578 [XNIO-1 task-4] bNGF6HkhTxOvCrTf-MujUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.583 [XNIO-1 task-4] y7xxi6MRSQalLbJ74Y0fjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.583 [XNIO-1 task-4] y7xxi6MRSQalLbJ74Y0fjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.583 [XNIO-1 task-4] y7xxi6MRSQalLbJ74Y0fjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.583 [XNIO-1 task-4] y7xxi6MRSQalLbJ74Y0fjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.591 [XNIO-1 task-4] y7xxi6MRSQalLbJ74Y0fjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.594 [XNIO-1 task-4] 8CXoSpTKRNmVe6d0UsKy8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.594 [XNIO-1 task-4] 8CXoSpTKRNmVe6d0UsKy8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.594 [XNIO-1 task-4] 8CXoSpTKRNmVe6d0UsKy8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.595 [XNIO-1 task-4] 8CXoSpTKRNmVe6d0UsKy8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0ae7d17f-7190-49a2-88c6-ff1dcabae0da scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0ae7d17f-7190-49a2-88c6-ff1dcabae0da is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:47.604 [XNIO-1 task-5] _veZool3RkuMZ3gt8fyfYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.604 [XNIO-1 task-5] _veZool3RkuMZ3gt8fyfYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.604 [XNIO-1 task-5] _veZool3RkuMZ3gt8fyfYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.604 [XNIO-1 task-5] _veZool3RkuMZ3gt8fyfYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:47.611 [XNIO-1 task-5] _veZool3RkuMZ3gt8fyfYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.626 [XNIO-1 task-5] xph7ZvqMS72JsOl77D2KVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.626 [XNIO-1 task-5] xph7ZvqMS72JsOl77D2KVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.626 [XNIO-1 task-5] xph7ZvqMS72JsOl77D2KVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.626 [XNIO-1 task-5] xph7ZvqMS72JsOl77D2KVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:47.632 [XNIO-1 task-5] xph7ZvqMS72JsOl77D2KVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.635 [XNIO-1 task-4] vAP34GmfSZeNc2yAyiTHiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.635 [XNIO-1 task-4] vAP34GmfSZeNc2yAyiTHiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.635 [XNIO-1 task-4] vAP34GmfSZeNc2yAyiTHiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.636 [XNIO-1 task-4] vAP34GmfSZeNc2yAyiTHiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", authorization) +18:00:47.637 [XNIO-1 task-5] fnuK3wapR8CaTkeK7Mdoug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.637 [XNIO-1 task-5] fnuK3wapR8CaTkeK7Mdoug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.637 [XNIO-1 task-5] fnuK3wapR8CaTkeK7Mdoug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.638 [XNIO-1 task-5] fnuK3wapR8CaTkeK7Mdoug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", "Basic ZjI3N2RmODUtNWMzOS00ZmZjLTk2NmUtNWRlN2YyY2ZkNWNlOm00dmN4bmhFUzlpdTZTcHppRnFUTkE=", authorization) +18:00:47.643 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:47.645 [XNIO-1 task-5] fnuK3wapR8CaTkeK7Mdoug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.656 [XNIO-1 task-5] blDRFzqOTF-JznRK93lQ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.656 [XNIO-1 task-5] blDRFzqOTF-JznRK93lQ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.657 [XNIO-1 task-5] blDRFzqOTF-JznRK93lQ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.657 [XNIO-1 task-5] blDRFzqOTF-JznRK93lQ3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = r6Ty79YpRECrauuBElWbSQ redirectUri = http://localhost:8080/authorization +18:00:47.658 [XNIO-1 task-4] vAP34GmfSZeNc2yAyiTHiA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.658 [XNIO-1 task-3] RB-mwYzdTIiLNoZfB_V9gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.658 [XNIO-1 task-3] RB-mwYzdTIiLNoZfB_V9gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.658 [XNIO-1 task-3] RB-mwYzdTIiLNoZfB_V9gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.661 [XNIO-1 task-3] RB-mwYzdTIiLNoZfB_V9gA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) +18:00:47.667 [XNIO-1 task-5] blDRFzqOTF-JznRK93lQ3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:47.667 [XNIO-1 task-5] blDRFzqOTF-JznRK93lQ3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.669 [XNIO-1 task-3] RB-mwYzdTIiLNoZfB_V9gA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.677 [XNIO-1 task-5] nSSOkmqMRXame9FayJqw3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.677 [XNIO-1 task-5] nSSOkmqMRXame9FayJqw3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.678 [XNIO-1 task-5] nSSOkmqMRXame9FayJqw3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.678 [XNIO-1 task-5] nSSOkmqMRXame9FayJqw3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.687 [XNIO-1 task-5] nSSOkmqMRXame9FayJqw3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.702 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9082c788-f943-4aee-8586-76110a480868 +18:00:47.704 [XNIO-1 task-5] hyqIf2WAS5iVuDhfTk05SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.704 [XNIO-1 task-5] hyqIf2WAS5iVuDhfTk05SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.705 [XNIO-1 task-5] hyqIf2WAS5iVuDhfTk05SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.705 [XNIO-1 task-5] hyqIf2WAS5iVuDhfTk05SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", authorization) +18:00:47.714 [XNIO-1 task-5] hyqIf2WAS5iVuDhfTk05SQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.721 [XNIO-1 task-5] I2MEPnBkRGy2cNZz97YWuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.722 [XNIO-1 task-5] I2MEPnBkRGy2cNZz97YWuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.722 [XNIO-1 task-5] I2MEPnBkRGy2cNZz97YWuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.722 [XNIO-1 task-5] I2MEPnBkRGy2cNZz97YWuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", authorization) +18:00:47.733 [XNIO-1 task-5] I2MEPnBkRGy2cNZz97YWuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.743 [XNIO-1 task-5] Ck_vq6TETNenUcmO_7WHEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.743 [XNIO-1 task-5] Ck_vq6TETNenUcmO_7WHEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.744 [XNIO-1 task-5] Ck_vq6TETNenUcmO_7WHEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.744 [XNIO-1 task-5] Ck_vq6TETNenUcmO_7WHEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", authorization) +18:00:47.752 [XNIO-1 task-5] Ck_vq6TETNenUcmO_7WHEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.756 [XNIO-1 task-3] N69oDVwCT262dZ0ywyGfzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.757 [XNIO-1 task-3] N69oDVwCT262dZ0ywyGfzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.757 [XNIO-1 task-3] N69oDVwCT262dZ0ywyGfzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.757 [XNIO-1 task-3] N69oDVwCT262dZ0ywyGfzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTA4MmM3ODgtZjk0My00YWVlLTg1ODYtNzYxMTBhNDgwODY4Onh1enhjejhGU1FDZk9MblJDWlF1cmc=", "Basic OTA4MmM3ODgtZjk0My00YWVlLTg1ODYtNzYxMTBhNDgwODY4Onh1enhjejhGU1FDZk9MblJDWlF1cmc=", authorization) +18:00:47.762 [XNIO-1 task-5] WmL-VUZ1QeW2a9tdM0WlUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.763 [XNIO-1 task-5] WmL-VUZ1QeW2a9tdM0WlUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.763 [XNIO-1 task-5] WmL-VUZ1QeW2a9tdM0WlUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.764 [XNIO-1 task-5] WmL-VUZ1QeW2a9tdM0WlUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", authorization) +18:00:47.765 [XNIO-1 task-4] 7Zac0dYOSGuIig6iOQrgqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.766 [XNIO-1 task-4] 7Zac0dYOSGuIig6iOQrgqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.766 [XNIO-1 task-4] 7Zac0dYOSGuIig6iOQrgqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.767 [XNIO-1 task-3] N69oDVwCT262dZ0ywyGfzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.768 [XNIO-1 task-4] 7Zac0dYOSGuIig6iOQrgqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.768 [XNIO-1 task-4] 7Zac0dYOSGuIig6iOQrgqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = fBiuXmPWRmip93P6tl6ClQ redirectUri = http://localhost:8080/authorization +18:00:47.771 [XNIO-1 task-5] WmL-VUZ1QeW2a9tdM0WlUw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.778 [XNIO-1 task-4] 7Zac0dYOSGuIig6iOQrgqw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.783 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.783 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.783 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.783 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.783 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.784 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", "Basic YWI1ZmEwZTAtYTc2Ni00NDY2LWE4YzQtMGMwYWI4Y2U4OGZjOk5GM182cFcxUVRhSUd0Q1ZrTm5vMnc=", authorization) +18:00:47.785 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.789 [XNIO-1 task-4] yxUZdfdhT3C7XJ01CGW1HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.789 [XNIO-1 task-4] yxUZdfdhT3C7XJ01CGW1HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.789 [XNIO-1 task-4] yxUZdfdhT3C7XJ01CGW1HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.790 [XNIO-1 task-4] yxUZdfdhT3C7XJ01CGW1HA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", "Basic MDZjZTZiYzktOWQ1My00ODZhLWE1MGUtOTYwYTRkMTY4ZjBkOkZYUUgxS2tmU3lHR3R5aTR6bUZ3bHc=", authorization) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +18:00:47.790 [XNIO-1 task-3] Ko9VohLjT26kEJ2UaxE7Cw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.797 [XNIO-1 task-3] 6otLaMsNROKxnKWenXV2Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +18:00:47.797 [XNIO-1 task-3] 6otLaMsNROKxnKWenXV2Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +18:00:47.802 [XNIO-1 task-3] 6otLaMsNROKxnKWenXV2Ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.802 [XNIO-1 task-3] 6otLaMsNROKxnKWenXV2Ug INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.807 [XNIO-1 task-4] yxUZdfdhT3C7XJ01CGW1HA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +18:00:47.808 [XNIO-1 task-3] qgw1Ik44Q6S3xNWOSaF46Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.808 [XNIO-1 task-3] qgw1Ik44Q6S3xNWOSaF46Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + ... 14 more + +18:00:47.809 [XNIO-1 task-3] qgw1Ik44Q6S3xNWOSaF46Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.814 [XNIO-1 task-3] qgw1Ik44Q6S3xNWOSaF46Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:47.814 [XNIO-1 task-3] qgw1Ik44Q6S3xNWOSaF46Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.828 [XNIO-1 task-4] -xhPpd0FRdWqQQBvRmZwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.829 [XNIO-1 task-4] -xhPpd0FRdWqQQBvRmZwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.829 [XNIO-1 task-4] -xhPpd0FRdWqQQBvRmZwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.830 [XNIO-1 task-4] -xhPpd0FRdWqQQBvRmZwvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.840 [XNIO-1 task-4] -xhPpd0FRdWqQQBvRmZwvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.855 [XNIO-1 task-4] k9WjpeIoQcqC-s89uNy7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.855 [XNIO-1 task-4] k9WjpeIoQcqC-s89uNy7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.856 [XNIO-1 task-4] k9WjpeIoQcqC-s89uNy7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.856 [XNIO-1 task-4] k9WjpeIoQcqC-s89uNy7gQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.862 [XNIO-1 task-4] k9WjpeIoQcqC-s89uNy7gQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.869 [XNIO-1 task-4] 6OvluzYMS-O7k7CLa4BlCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.869 [XNIO-1 task-4] 6OvluzYMS-O7k7CLa4BlCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.870 [XNIO-1 task-4] 6OvluzYMS-O7k7CLa4BlCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.870 [XNIO-1 task-4] 6OvluzYMS-O7k7CLa4BlCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.878 [XNIO-1 task-4] 6OvluzYMS-O7k7CLa4BlCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.886 [XNIO-1 task-4] 5PZuFlFdQUGO4IjM-iSASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.886 [XNIO-1 task-4] 5PZuFlFdQUGO4IjM-iSASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.886 [XNIO-1 task-4] 5PZuFlFdQUGO4IjM-iSASw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.887 [XNIO-1 task-4] 5PZuFlFdQUGO4IjM-iSASw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.890 [XNIO-1 task-3] B6lbCF58RgOwVCSnJBZ1vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.890 [XNIO-1 task-3] B6lbCF58RgOwVCSnJBZ1vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.890 [XNIO-1 task-3] B6lbCF58RgOwVCSnJBZ1vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.891 [XNIO-1 task-3] B6lbCF58RgOwVCSnJBZ1vA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vS6Fk3ACRxG0BPLBFMsA8Q redirectUri = http://localhost:8080/authorization +18:00:47.894 [XNIO-1 task-4] 5PZuFlFdQUGO4IjM-iSASw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.899 [XNIO-1 task-4] VIvdaBT0QLaOqJP_LzBrlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.899 [XNIO-1 task-4] VIvdaBT0QLaOqJP_LzBrlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.900 [XNIO-1 task-4] VIvdaBT0QLaOqJP_LzBrlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.900 [XNIO-1 task-4] VIvdaBT0QLaOqJP_LzBrlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = v8HYBJw0Qri1ymApWW2H3A redirectUri = http://localhost:8080/authorization +18:00:47.908 [XNIO-1 task-5] _V3z_AytQVq3YjRuLOwcSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.908 [XNIO-1 task-5] _V3z_AytQVq3YjRuLOwcSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.908 [XNIO-1 task-5] _V3z_AytQVq3YjRuLOwcSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.909 [XNIO-1 task-5] _V3z_AytQVq3YjRuLOwcSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.910 [XNIO-1 task-4] VIvdaBT0QLaOqJP_LzBrlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.914 [XNIO-1 task-5] _V3z_AytQVq3YjRuLOwcSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.917 [XNIO-1 task-3] B6lbCF58RgOwVCSnJBZ1vA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:47.917 [XNIO-1 task-3] B6lbCF58RgOwVCSnJBZ1vA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.919 [XNIO-1 task-5] 2KWIqIVYSXis6MkHAqWIXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.919 [XNIO-1 task-5] 2KWIqIVYSXis6MkHAqWIXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.919 [XNIO-1 task-5] 2KWIqIVYSXis6MkHAqWIXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.921 [XNIO-1 task-5] 2KWIqIVYSXis6MkHAqWIXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.928 [XNIO-1 task-5] 2KWIqIVYSXis6MkHAqWIXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.944 [XNIO-1 task-5] vFOx8OdoTDKm9IdHyB8wLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.944 [XNIO-1 task-5] vFOx8OdoTDKm9IdHyB8wLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.944 [XNIO-1 task-5] vFOx8OdoTDKm9IdHyB8wLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 6:00:47 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +18:00:47.950 [XNIO-1 task-5] vFOx8OdoTDKm9IdHyB8wLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.950 [XNIO-1 task-5] vFOx8OdoTDKm9IdHyB8wLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.961 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.961 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.Operation.call(Operation.java:170) +18:00:47.961 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.962 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.962 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.962 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", authorization) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:47.962 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:47.967 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.967 [XNIO-1 task-5] WduiUtOASQqOOKOKGCvRMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:47.973 [XNIO-1 task-5] 5HbdgvYrQXCMkngXTKv0fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.973 [XNIO-1 task-5] 5HbdgvYrQXCMkngXTKv0fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.973 [XNIO-1 task-5] 5HbdgvYrQXCMkngXTKv0fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.973 [XNIO-1 task-5] 5HbdgvYrQXCMkngXTKv0fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.973 [XNIO-1 task-5] 5HbdgvYrQXCMkngXTKv0fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.974 [XNIO-1 task-5] 5HbdgvYrQXCMkngXTKv0fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:47.979 [XNIO-1 task-5] 5HbdgvYrQXCMkngXTKv0fA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.979 [XNIO-1 task-3] DcHySni7QVO4fXRl5JUh4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.980 [XNIO-1 task-3] DcHySni7QVO4fXRl5JUh4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.980 [XNIO-1 task-3] DcHySni7QVO4fXRl5JUh4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:00:47.986 [XNIO-1 task-5] kf4IQWX_R9OFSu50YH7VJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:47.986 [XNIO-1 task-4] yuZqlPsRTumIh7f5SZQCZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.986 [XNIO-1 task-5] kf4IQWX_R9OFSu50YH7VJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.986 [XNIO-1 task-4] yuZqlPsRTumIh7f5SZQCZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.986 [XNIO-1 task-5] kf4IQWX_R9OFSu50YH7VJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.987 [XNIO-1 task-4] yuZqlPsRTumIh7f5SZQCZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThhNTMxZGItMGVmNS00ZWE0LWFkZGQtM2NjODI2MDRmNjFiOlZvZ1RvWmhaUU1xb3YxblNQeFFZVkE=", "Basic YThhNTMxZGItMGVmNS00ZWE0LWFkZGQtM2NjODI2MDRmNjFiOlZvZ1RvWmhaUU1xb3YxblNQeFFZVkE=", authorization) +18:00:47.987 [XNIO-1 task-5] kf4IQWX_R9OFSu50YH7VJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:47.990 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:abaf122e-5c54-433b-8886-9a4d63bf256d +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 85404e0f-d991-4525-891a-91ca53e47c40 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +18:00:47.992 [XNIO-1 task-5] kf4IQWX_R9OFSu50YH7VJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.995 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:47.997 [XNIO-1 task-4] yuZqlPsRTumIh7f5SZQCZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:47.998 [XNIO-1 task-5] hUooYDUwT02rJjS_doGSMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.998 [XNIO-1 task-5] hUooYDUwT02rJjS_doGSMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:47.998 [XNIO-1 task-5] hUooYDUwT02rJjS_doGSMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:47.999 [XNIO-1 task-5] hUooYDUwT02rJjS_doGSMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:48.004 [XNIO-1 task-5] hUooYDUwT02rJjS_doGSMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.010 [XNIO-1 task-4] fFI-P36OQxaycbra5PnVxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.010 [XNIO-1 task-4] fFI-P36OQxaycbra5PnVxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.010 [XNIO-1 task-4] fFI-P36OQxaycbra5PnVxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.011 [XNIO-1 task-4] fFI-P36OQxaycbra5PnVxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:48.012 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7225d54e +18:00:48.015 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7225d54e +18:00:48.017 [XNIO-1 task-4] fFI-P36OQxaycbra5PnVxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.032 [XNIO-1 task-4] oH48-K91RDiCaaz42bDM7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.032 [XNIO-1 task-4] oH48-K91RDiCaaz42bDM7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.033 [XNIO-1 task-4] oH48-K91RDiCaaz42bDM7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.037 [XNIO-1 task-4] oH48-K91RDiCaaz42bDM7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.048 [XNIO-1 task-4] oH48-K91RDiCaaz42bDM7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.060 [XNIO-1 task-4] IHzdY65kShqlaDhZdD5wkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.060 [XNIO-1 task-4] IHzdY65kShqlaDhZdD5wkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.063 [XNIO-1 task-4] IHzdY65kShqlaDhZdD5wkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.063 [XNIO-1 task-4] IHzdY65kShqlaDhZdD5wkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.070 [XNIO-1 task-4] IHzdY65kShqlaDhZdD5wkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.080 [XNIO-1 task-4] KvIf55vhQCe4ZQ4fgdVbUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.080 [XNIO-1 task-4] KvIf55vhQCe4ZQ4fgdVbUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.104 [XNIO-1 task-4] KvIf55vhQCe4ZQ4fgdVbUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.104 [XNIO-1 task-4] KvIf55vhQCe4ZQ4fgdVbUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.105 [XNIO-1 task-5] eQW5QNzjSs6IhvI9JptouQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.105 [XNIO-1 task-5] eQW5QNzjSs6IhvI9JptouQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.105 [XNIO-1 task-5] eQW5QNzjSs6IhvI9JptouQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.105 [XNIO-1 task-5] eQW5QNzjSs6IhvI9JptouQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vxViN5QDQmO0DEihznYKeg redirectUri = http://localhost:8080/authorization +18:00:48.110 [XNIO-1 task-4] KvIf55vhQCe4ZQ4fgdVbUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.115 [XNIO-1 task-5] eQW5QNzjSs6IhvI9JptouQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.116 [XNIO-1 task-4] KknRX7DcQjK4NCCVlDbUjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.116 [XNIO-1 task-4] KknRX7DcQjK4NCCVlDbUjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.117 [XNIO-1 task-4] KknRX7DcQjK4NCCVlDbUjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.117 [XNIO-1 task-4] KknRX7DcQjK4NCCVlDbUjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGQ5ZWU3YjItYzIwOS00NmJlLWI5M2EtZDE1OWFmMGIwOTIyOmdSQ2NISmU1VEhTbTg0d0ktbjlVR3c=", "Basic ZGQ5ZWU3YjItYzIwOS00NmJlLWI5M2EtZDE1OWFmMGIwOTIyOmdSQ2NISmU1VEhTbTg0d0ktbjlVR3c=", authorization) +18:00:48.117 [XNIO-1 task-4] KknRX7DcQjK4NCCVlDbUjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _OArspfFQeiof4tiljDyDQ redirectUri = http://localhost:8080/authorization +18:00:48.117 [XNIO-1 task-3] fmRJTTxhQR-lfYWEE-hkJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.117 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:97b9d0c7-4e48-49dd-9e46-93a678c2d093 +18:00:48.117 [XNIO-1 task-3] fmRJTTxhQR-lfYWEE-hkJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.118 [XNIO-1 task-3] fmRJTTxhQR-lfYWEE-hkJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjgzOTM1ZDctM2M1Ny00YTY3LWIwMDUtYjA1MzgxODViYWZiOnlZZWFkYUlSU2p1czlsWnVDSjdtR2c=", "Basic ZjgzOTM1ZDctM2M1Ny00YTY3LWIwMDUtYjA1MzgxODViYWZiOnlZZWFkYUlSU2p1czlsWnVDSjdtR2c=", authorization) +18:00:48.123 [XNIO-1 task-3] fmRJTTxhQR-lfYWEE-hkJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.126 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fb19a950-33a0-4c02-a8ab-172f5c0651c2 +18:00:48.128 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fb19a950-33a0-4c02-a8ab-172f5c0651c2 +18:00:48.131 [XNIO-1 task-4] KknRX7DcQjK4NCCVlDbUjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.135 [XNIO-1 task-3] mS1ZTK49SlKcgbKQdxBxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.137 [XNIO-1 task-3] mS1ZTK49SlKcgbKQdxBxTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.137 [XNIO-1 task-3] mS1ZTK49SlKcgbKQdxBxTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.137 [XNIO-1 task-3] mS1ZTK49SlKcgbKQdxBxTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", "Basic NjE5MmU2ZGYtYTBlNS00NDIwLTg0ZjYtOWI1N2E5MDQ1ZWY0OlVtZ1B2bmU2UnJxX0N0T1k0UjBVbEE=", authorization) +18:00:48.142 [XNIO-1 task-3] mS1ZTK49SlKcgbKQdxBxTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.143 [XNIO-1 task-4] Z5HR-1lWTm-G2njA4Fy4sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.143 [XNIO-1 task-4] Z5HR-1lWTm-G2njA4Fy4sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.144 [XNIO-1 task-4] Z5HR-1lWTm-G2njA4Fy4sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.144 [XNIO-1 task-4] Z5HR-1lWTm-G2njA4Fy4sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", authorization) +18:00:48.144 [XNIO-1 task-5] ZbT08xqwSESYo38UdTb2lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.145 [XNIO-1 task-5] ZbT08xqwSESYo38UdTb2lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.145 [XNIO-1 task-5] ZbT08xqwSESYo38UdTb2lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.145 [XNIO-1 task-5] ZbT08xqwSESYo38UdTb2lA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:48.149 [XNIO-1 task-3] 1osNISabQ0eu4fRzexHIeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.150 [XNIO-1 task-3] 1osNISabQ0eu4fRzexHIeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.150 [XNIO-1 task-4] Z5HR-1lWTm-G2njA4Fy4sw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:48.151 [XNIO-1 task-3] 1osNISabQ0eu4fRzexHIeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.152 [XNIO-1 task-3] 1osNISabQ0eu4fRzexHIeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", "Basic YWJhZjEyMmUtNWM1NC00MzNiLTg4ODYtOWE0ZDYzYmYyNTZkOmhzbEZUcmpTUjRTMnVoR2pJcl9BU0E=", authorization) +18:00:48.152 [XNIO-1 task-4] Z5HR-1lWTm-G2njA4Fy4sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.152 [XNIO-1 task-5] ZbT08xqwSESYo38UdTb2lA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.154 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d9b5b3fc-ea84-494f-a796-5b8f1524d3e1 +18:00:48.159 [XNIO-1 task-3] 1osNISabQ0eu4fRzexHIeg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.161 [XNIO-1 task-4] slAsRFcMTx-HcOyxL6DQzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.162 [XNIO-1 task-4] slAsRFcMTx-HcOyxL6DQzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.162 [XNIO-1 task-4] slAsRFcMTx-HcOyxL6DQzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.162 [XNIO-1 task-4] slAsRFcMTx-HcOyxL6DQzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", authorization) +Jun 28, 2024 6:00:48 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:48.170 [XNIO-1 task-3] uwjCaz13SxO5Cmz8VZfpUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +18:00:48.170 [XNIO-1 task-3] uwjCaz13SxO5Cmz8VZfpUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.170 [XNIO-1 task-3] uwjCaz13SxO5Cmz8VZfpUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.171 [XNIO-1 task-3] uwjCaz13SxO5Cmz8VZfpUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:48.177 [XNIO-1 task-3] uwjCaz13SxO5Cmz8VZfpUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +18:00:48.187 [XNIO-1 task-4] NkzuDyvkSXeAouhTjAjcGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +Jun 28, 2024 6:00:48 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +18:00:48.187 [XNIO-1 task-4] NkzuDyvkSXeAouhTjAjcGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +18:00:48.188 [XNIO-1 task-4] NkzuDyvkSXeAouhTjAjcGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:48.188 [XNIO-1 task-4] NkzuDyvkSXeAouhTjAjcGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.191 [XNIO-1 task-3] RV4ZjZEYR7SNgjIb2qqm6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:48.192 [XNIO-1 task-3] RV4ZjZEYR7SNgjIb2qqm6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.192 [XNIO-1 task-3] RV4ZjZEYR7SNgjIb2qqm6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:48.193 [XNIO-1 task-3] RV4ZjZEYR7SNgjIb2qqm6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e8e1978e-9768-4bd7-afc2-00c5bf0e3de2 scope = null +18:00:48.194 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2cb70ba2-853e-42ef-886c-e87b7f094c9e +18:00:48.195 [XNIO-1 task-4] NkzuDyvkSXeAouhTjAjcGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.195 [XNIO-1 task-4] NkzuDyvkSXeAouhTjAjcGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.201 [XNIO-1 task-4] R3-lPR6jQqO2zil3H9SLfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.201 [XNIO-1 task-4] R3-lPR6jQqO2zil3H9SLfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +18:00:48.201 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c75d1244 +18:00:48.201 [XNIO-1 task-4] R3-lPR6jQqO2zil3H9SLfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.201 [XNIO-1 task-4] R3-lPR6jQqO2zil3H9SLfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +18:00:48.214 [XNIO-1 task-4] zT7E9NeVSN28rJlb5P8AQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:00:48.215 [XNIO-1 task-4] zT7E9NeVSN28rJlb5P8AQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.216 [XNIO-1 task-4] zT7E9NeVSN28rJlb5P8AQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.216 [XNIO-1 task-4] zT7E9NeVSN28rJlb5P8AQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", "Basic OTNmMzc3ZjktYjkxZC00MTAwLTg2ZjUtY2IxZDA0YWNjOTNkOjJIMk9SamxQU3l1TEdLOFA3UlpuV0E=", authorization) +18:00:48.217 [XNIO-1 task-4] zT7E9NeVSN28rJlb5P8AQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +18:00:48.221 [XNIO-1 task-3] -5HJSZSXQKW4XsDAtLJOEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.222 [XNIO-1 task-3] -5HJSZSXQKW4XsDAtLJOEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1b740429-3a34-4535-9c82-d3e9aeecfb6a scope = null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +18:00:48.232 [XNIO-1 task-4] Is3SFOtFQmeDBfRF13b5Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:48.233 [XNIO-1 task-3] -5HJSZSXQKW4XsDAtLJOEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.242 [XNIO-1 task-4] Is3SFOtFQmeDBfRF13b5Pg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +18:00:48.255 [XNIO-1 task-4] 8t0m0dz0QmaE4mHtwpi2ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.256 [XNIO-1 task-4] 8t0m0dz0QmaE4mHtwpi2ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.256 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c75d1244 +18:00:48.256 [XNIO-1 task-4] 8t0m0dz0QmaE4mHtwpi2ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:48.263 [XNIO-1 task-4] 8t0m0dz0QmaE4mHtwpi2ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.273 [XNIO-1 task-4] UKjLT02vRIOqKnSJc_754Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.273 [XNIO-1 task-4] UKjLT02vRIOqKnSJc_754Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.273 [XNIO-1 task-3] 9Ll2vFWjQW-qmCoFxPLlhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.273 [XNIO-1 task-3] 9Ll2vFWjQW-qmCoFxPLlhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.273 [XNIO-1 task-4] UKjLT02vRIOqKnSJc_754Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.274 [XNIO-1 task-3] 9Ll2vFWjQW-qmCoFxPLlhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.274 [XNIO-1 task-4] UKjLT02vRIOqKnSJc_754Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:48.274 [XNIO-1 task-3] 9Ll2vFWjQW-qmCoFxPLlhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", authorization) +18:00:48.281 [XNIO-1 task-4] UKjLT02vRIOqKnSJc_754Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.286 [XNIO-1 task-4] XPgiUMOGQtmotStzsGT0uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.286 [XNIO-1 task-4] XPgiUMOGQtmotStzsGT0uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.287 [XNIO-1 task-4] XPgiUMOGQtmotStzsGT0uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.288 [XNIO-1 task-4] XPgiUMOGQtmotStzsGT0uA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YThhNTMxZGItMGVmNS00ZWE0LWFkZGQtM2NjODI2MDRmNjFiOlZvZ1RvWmhaUU1xb3YxblNQeFFZVkE=", "Basic YThhNTMxZGItMGVmNS00ZWE0LWFkZGQtM2NjODI2MDRmNjFiOlZvZ1RvWmhaUU1xb3YxblNQeFFZVkE=", authorization) +18:00:48.289 [XNIO-1 task-3] 9Ll2vFWjQW-qmCoFxPLlhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:48.289 [XNIO-1 task-3] 9Ll2vFWjQW-qmCoFxPLlhw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.294 [XNIO-1 task-4] XPgiUMOGQtmotStzsGT0uA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.304 [XNIO-1 task-4] A0Z4uSRaQPqtRU94SUrqiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.304 [XNIO-1 task-4] A0Z4uSRaQPqtRU94SUrqiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.305 [XNIO-1 task-4] A0Z4uSRaQPqtRU94SUrqiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.305 [XNIO-1 task-4] A0Z4uSRaQPqtRU94SUrqiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.311 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:48.316 [XNIO-1 task-4] A0Z4uSRaQPqtRU94SUrqiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.327 [XNIO-1 task-4] ocbZpRJ8RI68uyGV3xKtoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.328 [XNIO-1 task-4] ocbZpRJ8RI68uyGV3xKtoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.328 [XNIO-1 task-4] ocbZpRJ8RI68uyGV3xKtoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.328 [XNIO-1 task-4] ocbZpRJ8RI68uyGV3xKtoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RhZTQ4YTYtNTIxZS00OGJhLWE2YTAtYzJhYzZhYTI3ZDUwOnB3dDZ3NXN1VExxV1pvSUduOXpnTFE=", "Basic N2RhZTQ4YTYtNTIxZS00OGJhLWE2YTAtYzJhYzZhYTI3ZDUwOnB3dDZ3NXN1VExxV1pvSUduOXpnTFE=", authorization) +18:00:48.331 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:48.332 [XNIO-1 task-3] bD9BdyMDSAegc7k_l9Yd3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.333 [XNIO-1 task-3] bD9BdyMDSAegc7k_l9Yd3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.333 [XNIO-1 task-3] bD9BdyMDSAegc7k_l9Yd3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.333 [XNIO-1 task-3] bD9BdyMDSAegc7k_l9Yd3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = kcJ7ZEYRSxuFntrRgPMAUA redirectUri = http://localhost:8080/authorization +18:00:48.334 [XNIO-1 task-4] ocbZpRJ8RI68uyGV3xKtoA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.340 [XNIO-1 task-4] XXYb39SiRESOBlkZFgyT3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.340 [XNIO-1 task-4] XXYb39SiRESOBlkZFgyT3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.340 [XNIO-1 task-4] XXYb39SiRESOBlkZFgyT3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.341 [XNIO-1 task-4] XXYb39SiRESOBlkZFgyT3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.343 [XNIO-1 task-3] bD9BdyMDSAegc7k_l9Yd3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.345 [XNIO-1 task-4] XXYb39SiRESOBlkZFgyT3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.350 [XNIO-1 task-4] eOxmGJ96Qa28fahuoW9Kdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.350 [XNIO-1 task-4] eOxmGJ96Qa28fahuoW9Kdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.350 [XNIO-1 task-4] eOxmGJ96Qa28fahuoW9Kdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.351 [XNIO-1 task-4] eOxmGJ96Qa28fahuoW9Kdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", "Basic YTBlN2RhNDItODIyNi00ZGY1LTllYTEtZDAyOWZiNGIxM2Y5OmF4aWV0VmxDUTJxNEwzVTllbG4zQ1E=", authorization) +18:00:48.356 [XNIO-1 task-4] eOxmGJ96Qa28fahuoW9Kdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.358 [XNIO-1 task-5] Tlld_d1hTaqN_h7LOjzq_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.358 [XNIO-1 task-5] Tlld_d1hTaqN_h7LOjzq_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.358 [XNIO-1 task-5] Tlld_d1hTaqN_h7LOjzq_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.359 [XNIO-1 task-5] Tlld_d1hTaqN_h7LOjzq_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:48.360 [XNIO-1 task-4] 9e4Fur8wSLiKjblEUa5xXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.360 [XNIO-1 task-4] 9e4Fur8wSLiKjblEUa5xXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.361 [XNIO-1 task-4] 9e4Fur8wSLiKjblEUa5xXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.361 [XNIO-1 task-4] 9e4Fur8wSLiKjblEUa5xXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:48.366 [XNIO-1 task-4] 9e4Fur8wSLiKjblEUa5xXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.363 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6192e6df-a0e5-4420-84f6-9b57a9045ef4 +18:00:48.368 [XNIO-1 task-5] Tlld_d1hTaqN_h7LOjzq_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.376 [XNIO-1 task-4] ZFhFP9c3Tz2XizUJAI0h9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.376 [XNIO-1 task-4] ZFhFP9c3Tz2XizUJAI0h9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.376 [XNIO-1 task-4] ZFhFP9c3Tz2XizUJAI0h9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.376 [XNIO-1 task-4] ZFhFP9c3Tz2XizUJAI0h9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:48.377 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +18:00:48.379 [XNIO-1 task-3] 8I1-Pks0RmyRB6c3UA7o0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.379 [XNIO-1 task-3] 8I1-Pks0RmyRB6c3UA7o0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.379 [XNIO-1 task-3] 8I1-Pks0RmyRB6c3UA7o0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.380 [XNIO-1 task-3] 8I1-Pks0RmyRB6c3UA7o0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c2552b86-db35-49ba-b6b5-f846105c3ef5 scope = null +18:00:48.382 [XNIO-1 task-4] ZFhFP9c3Tz2XizUJAI0h9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.389 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:66ba1a61-00f2-40c5-b778-9d40517156c7 +18:00:48.392 [XNIO-1 task-5] RHNBtzyuRIqrvnPr8H2f7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.392 [XNIO-1 task-4] zLi3SQnlSGmgquc6UrvvPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.392 [XNIO-1 task-5] RHNBtzyuRIqrvnPr8H2f7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.392 [XNIO-1 task-5] RHNBtzyuRIqrvnPr8H2f7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", "Basic MzhmYzhlMDItMDYwNS00ZjM3LWFlOTAtNTRlN2Y1YWU4YjdiOmFPVVprVk9fUkdXMFRpdXZCUkNrQlE=", authorization) +18:00:48.392 [XNIO-1 task-4] zLi3SQnlSGmgquc6UrvvPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.393 [XNIO-1 task-4] zLi3SQnlSGmgquc6UrvvPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.394 [XNIO-1 task-4] zLi3SQnlSGmgquc6UrvvPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.394 [XNIO-1 task-4] zLi3SQnlSGmgquc6UrvvPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", "Basic NmRhZWQ3YTAtYTM0Yy00YWIwLTk4MDItZTEzOGUxOTg0ZTk2OlJzbXVhbFRFVE5hNjRpd29pZzZnb1E=", authorization) +18:00:48.397 [XNIO-1 task-3] 8I1-Pks0RmyRB6c3UA7o0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.399 [XNIO-1 task-4] zLi3SQnlSGmgquc6UrvvPw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.407 [XNIO-1 task-4] 8E4YsqkdSUKoVHGXhvPeDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.411 [XNIO-1 task-4] 8E4YsqkdSUKoVHGXhvPeDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.411 [XNIO-1 task-4] 8E4YsqkdSUKoVHGXhvPeDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.412 [XNIO-1 task-4] 8E4YsqkdSUKoVHGXhvPeDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:48.417 [XNIO-1 task-4] 8E4YsqkdSUKoVHGXhvPeDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.422 [XNIO-1 task-5] RHNBtzyuRIqrvnPr8H2f7Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.427 [XNIO-1 task-4] j56XIFXaQauM7aU5DGp0KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.427 [XNIO-1 task-4] j56XIFXaQauM7aU5DGp0KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.427 [XNIO-1 task-4] j56XIFXaQauM7aU5DGp0KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.427 [XNIO-1 task-4] j56XIFXaQauM7aU5DGp0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:48.433 [XNIO-1 task-4] j56XIFXaQauM7aU5DGp0KA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.443 [XNIO-1 task-4] EBctXelhR9aOYc44AhX_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.443 [XNIO-1 task-4] EBctXelhR9aOYc44AhX_qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.443 [XNIO-1 task-4] EBctXelhR9aOYc44AhX_qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.444 [XNIO-1 task-4] EBctXelhR9aOYc44AhX_qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:48.446 [XNIO-1 task-3] 9FvmadckQ6KWUsitWDkksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.446 [XNIO-1 task-3] 9FvmadckQ6KWUsitWDkksg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.446 [XNIO-1 task-3] 9FvmadckQ6KWUsitWDkksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.447 [XNIO-1 task-3] 9FvmadckQ6KWUsitWDkksg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", "Basic M2ZkMTA0ODYtMWVmYy00NWMwLWJjZDUtYjBjODI4N2UxNDY5OkdNQ2dVeHpEUXpTQXN1WkJMZlBEcnc=", authorization) +18:00:48.450 [XNIO-1 task-4] EBctXelhR9aOYc44AhX_qw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:48.453 [XNIO-1 task-3] 9FvmadckQ6KWUsitWDkksg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.463 [XNIO-1 task-4] EBctXelhR9aOYc44AhX_qw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.471 [XNIO-1 task-3] cWLx_QAYSXmd2Zz8A-iE1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.471 [XNIO-1 task-3] cWLx_QAYSXmd2Zz8A-iE1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.473 [XNIO-1 task-3] cWLx_QAYSXmd2Zz8A-iE1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.473 [XNIO-1 task-3] cWLx_QAYSXmd2Zz8A-iE1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.480 [XNIO-1 task-4] 63UWhK8KSPeRiIPQpuqLpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.480 [XNIO-1 task-4] 63UWhK8KSPeRiIPQpuqLpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.480 [XNIO-1 task-4] 63UWhK8KSPeRiIPQpuqLpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.481 [XNIO-1 task-4] 63UWhK8KSPeRiIPQpuqLpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = SuxjLapwRWWJqWmyJfndxA redirectUri = http://localhost:8080/authorization +18:00:48.487 [XNIO-1 task-3] cWLx_QAYSXmd2Zz8A-iE1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.492 [XNIO-1 task-4] 63UWhK8KSPeRiIPQpuqLpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.495 [XNIO-1 task-3] uKi9JYlzSBSMvn491OpyGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.496 [XNIO-1 task-3] uKi9JYlzSBSMvn491OpyGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.496 [XNIO-1 task-3] uKi9JYlzSBSMvn491OpyGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.496 [XNIO-1 task-3] uKi9JYlzSBSMvn491OpyGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmI5YzlhZWEtYzAzMC00MzU3LWIwNTYtYzkyNTU1YTVmMGFhOmVyVkFDalU5VDJLdm1TRm9FbkxfZFE=", "Basic YmI5YzlhZWEtYzAzMC00MzU3LWIwNTYtYzkyNTU1YTVmMGFhOmVyVkFDalU5VDJLdm1TRm9FbkxfZFE=", authorization) +18:00:48.501 [XNIO-1 task-4] jsfYGHG1TxGJMriJ_OtfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.502 [XNIO-1 task-4] jsfYGHG1TxGJMriJ_OtfeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.502 [XNIO-1 task-4] jsfYGHG1TxGJMriJ_OtfeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.502 [XNIO-1 task-4] jsfYGHG1TxGJMriJ_OtfeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", authorization) +18:00:48.507 [XNIO-1 task-3] uKi9JYlzSBSMvn491OpyGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.511 [XNIO-1 task-4] jsfYGHG1TxGJMriJ_OtfeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:48.511 [XNIO-1 task-4] jsfYGHG1TxGJMriJ_OtfeQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.520 [XNIO-1 task-3] KXLhVTa6R3ugMe38HjsSng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.520 [XNIO-1 task-3] KXLhVTa6R3ugMe38HjsSng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.520 [XNIO-1 task-3] KXLhVTa6R3ugMe38HjsSng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.521 [XNIO-1 task-3] KXLhVTa6R3ugMe38HjsSng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.522 [XNIO-1 task-4] 3aWKNgUMTw-KkNeBsIoYMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.522 [XNIO-1 task-4] 3aWKNgUMTw-KkNeBsIoYMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.522 [XNIO-1 task-4] 3aWKNgUMTw-KkNeBsIoYMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.523 [XNIO-1 task-4] 3aWKNgUMTw-KkNeBsIoYMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 530f2147-d72f-4430-9224-d6cbf449fd14 scope = null +18:00:48.527 [XNIO-1 task-5] NtxZBn6KQ1WNjOLT7M4Ebw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.527 [XNIO-1 task-5] NtxZBn6KQ1WNjOLT7M4Ebw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.528 [XNIO-1 task-5] NtxZBn6KQ1WNjOLT7M4Ebw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.528 [XNIO-1 task-3] KXLhVTa6R3ugMe38HjsSng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.528 [XNIO-1 task-5] NtxZBn6KQ1WNjOLT7M4Ebw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = FVKRlZggTmqw9rfcVnWDwQ redirectUri = http://localhost:8080/authorization +18:00:48.534 [XNIO-1 task-3] Ravouh8TTqyxty5E9XXTkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.534 [XNIO-1 task-3] Ravouh8TTqyxty5E9XXTkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.534 [XNIO-1 task-3] Ravouh8TTqyxty5E9XXTkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.535 [XNIO-1 task-3] Ravouh8TTqyxty5E9XXTkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.537 [XNIO-1 task-4] 3aWKNgUMTw-KkNeBsIoYMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.538 [XNIO-1 task-5] NtxZBn6KQ1WNjOLT7M4Ebw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.545 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7225d54e +18:00:48.547 [XNIO-1 task-3] Ravouh8TTqyxty5E9XXTkg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.559 [XNIO-1 task-5] 8xwD33SUTkOG5n3cLfr0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.560 [XNIO-1 task-5] 8xwD33SUTkOG5n3cLfr0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.560 [XNIO-1 task-5] 8xwD33SUTkOG5n3cLfr0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.561 [XNIO-1 task-5] 8xwD33SUTkOG5n3cLfr0RA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4590bc12-505c-4079-af83-091edeeadbc4 scope = null +18:00:48.566 [XNIO-1 task-3] J9HCsLaSShqg-65Cjj37KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.566 [XNIO-1 task-3] J9HCsLaSShqg-65Cjj37KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.566 [XNIO-1 task-3] J9HCsLaSShqg-65Cjj37KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.567 [XNIO-1 task-3] J9HCsLaSShqg-65Cjj37KA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.574 [XNIO-1 task-5] 8xwD33SUTkOG5n3cLfr0RA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.578 [XNIO-1 task-3] J9HCsLaSShqg-65Cjj37KA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.589 [XNIO-1 task-5] btrMqHjSRwKcMHsaLh1vFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.589 [XNIO-1 task-5] btrMqHjSRwKcMHsaLh1vFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.590 [XNIO-1 task-5] btrMqHjSRwKcMHsaLh1vFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.590 [XNIO-1 task-5] btrMqHjSRwKcMHsaLh1vFw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.597 [XNIO-1 task-5] btrMqHjSRwKcMHsaLh1vFw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.602 [XNIO-1 task-5] a1bbHyJXSqCKGnvBVwSiBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.602 [XNIO-1 task-5] a1bbHyJXSqCKGnvBVwSiBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.602 [XNIO-1 task-5] a1bbHyJXSqCKGnvBVwSiBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.602 [XNIO-1 task-5] a1bbHyJXSqCKGnvBVwSiBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.607 [XNIO-1 task-3] Te2yBMq6TZKBHDQlXVgO9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.607 [XNIO-1 task-3] Te2yBMq6TZKBHDQlXVgO9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.607 [XNIO-1 task-3] Te2yBMq6TZKBHDQlXVgO9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.607 [XNIO-1 task-3] Te2yBMq6TZKBHDQlXVgO9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XdJ1Va6qRVGh05CXrUQhng redirectUri = http://localhost:8080/authorization +18:00:48.608 [XNIO-1 task-5] a1bbHyJXSqCKGnvBVwSiBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.610 [XNIO-1 task-4] DbVTt9-hReyQcSEDqJi1yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.610 [XNIO-1 task-4] DbVTt9-hReyQcSEDqJi1yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.610 [XNIO-1 task-4] DbVTt9-hReyQcSEDqJi1yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.611 [XNIO-1 task-4] DbVTt9-hReyQcSEDqJi1yQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = tLoa9DSFSZmjTriKkZIrCQ redirectUri = http://localhost:8080/authorization +18:00:48.614 [XNIO-1 task-5] 9oPOPGDUTp6fpOGTV9SECg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.614 [XNIO-1 task-5] 9oPOPGDUTp6fpOGTV9SECg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.614 [XNIO-1 task-5] 9oPOPGDUTp6fpOGTV9SECg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.615 [XNIO-1 task-5] 9oPOPGDUTp6fpOGTV9SECg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.620 [XNIO-1 task-4] DbVTt9-hReyQcSEDqJi1yQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:48.621 [XNIO-1 task-3] Te2yBMq6TZKBHDQlXVgO9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.621 [XNIO-1 task-4] DbVTt9-hReyQcSEDqJi1yQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.623 [XNIO-1 task-5] 9oPOPGDUTp6fpOGTV9SECg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.630 [XNIO-1 task-5] 0a9iNbpoQiS4rgyobgIoGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.630 [XNIO-1 task-5] 0a9iNbpoQiS4rgyobgIoGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.631 [XNIO-1 task-5] 0a9iNbpoQiS4rgyobgIoGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.632 [XNIO-1 task-5] 0a9iNbpoQiS4rgyobgIoGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.640 [XNIO-1 task-3] VYx0e7WZQsGqNlz8YRwN4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.640 [XNIO-1 task-3] VYx0e7WZQsGqNlz8YRwN4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.640 [XNIO-1 task-3] VYx0e7WZQsGqNlz8YRwN4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.641 [XNIO-1 task-3] VYx0e7WZQsGqNlz8YRwN4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bb11e1ea-6e08-44c3-a317-a64c9f1f22ed scope = null +18:00:48.642 [XNIO-1 task-5] 0a9iNbpoQiS4rgyobgIoGg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.649 [XNIO-1 task-5] 5UKjPZkaSauhPNztG46wzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.649 [XNIO-1 task-5] 5UKjPZkaSauhPNztG46wzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.653 [XNIO-1 task-5] 5UKjPZkaSauhPNztG46wzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.654 [XNIO-1 task-5] 5UKjPZkaSauhPNztG46wzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.656 [XNIO-1 task-3] VYx0e7WZQsGqNlz8YRwN4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.659 [XNIO-1 task-4] F_bK7ijeTDuZ8_p-x5NYNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.659 [XNIO-1 task-4] F_bK7ijeTDuZ8_p-x5NYNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.659 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.659 [XNIO-1 task-4] F_bK7ijeTDuZ8_p-x5NYNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.659 [XNIO-1 task-5] 5UKjPZkaSauhPNztG46wzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.659 [XNIO-1 task-4] F_bK7ijeTDuZ8_p-x5NYNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", "Basic N2EzMzgxYzktMTE2ZC00OTgyLWI1NWYtOGIxNGJmZWE0NTQ4OjB6SkZ3aDdEUU1hNURNcE42SG1mbmc=", authorization) +18:00:48.667 [XNIO-1 task-4] F_bK7ijeTDuZ8_p-x5NYNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:48.667 [XNIO-1 task-4] F_bK7ijeTDuZ8_p-x5NYNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.667 [XNIO-1 task-5] e8JuOyDESzeED1W_5Upq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.667 [XNIO-1 task-5] e8JuOyDESzeED1W_5Upq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.668 [XNIO-1 task-5] e8JuOyDESzeED1W_5Upq5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.668 [XNIO-1 task-5] e8JuOyDESzeED1W_5Upq5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.673 [XNIO-1 task-5] e8JuOyDESzeED1W_5Upq5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.679 [XNIO-1 task-5] 0LFEjXM9S96MnqVkVRJjVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.679 [XNIO-1 task-5] 0LFEjXM9S96MnqVkVRJjVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.680 [XNIO-1 task-5] 0LFEjXM9S96MnqVkVRJjVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.681 [XNIO-1 task-5] 0LFEjXM9S96MnqVkVRJjVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.686 [XNIO-1 task-5] 0LFEjXM9S96MnqVkVRJjVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.696 [XNIO-1 task-5] 7NK00ljxSauHPaOgr7D3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.696 [XNIO-1 task-5] 7NK00ljxSauHPaOgr7D3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.696 [XNIO-1 task-5] 7NK00ljxSauHPaOgr7D3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.697 [XNIO-1 task-5] 7NK00ljxSauHPaOgr7D3dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.697 [XNIO-1 task-4] 6vYg3HLuTsGhztwwYawLkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.697 [XNIO-1 task-4] 6vYg3HLuTsGhztwwYawLkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.697 [XNIO-1 task-4] 6vYg3HLuTsGhztwwYawLkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.698 [XNIO-1 task-4] 6vYg3HLuTsGhztwwYawLkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MQr0DHDKTeaXlzupExrh5A redirectUri = http://localhost:8080/authorization +18:00:48.707 [XNIO-1 task-4] 6vYg3HLuTsGhztwwYawLkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.712 [XNIO-1 task-5] 7NK00ljxSauHPaOgr7D3dg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.718 [XNIO-1 task-5] AEStRmYBSvm4btTegajFWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.718 [XNIO-1 task-5] AEStRmYBSvm4btTegajFWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.718 [XNIO-1 task-4] 1hXRgoR_TWyfSi3mJ_3TbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.718 [XNIO-1 task-5] AEStRmYBSvm4btTegajFWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.719 [XNIO-1 task-5] AEStRmYBSvm4btTegajFWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = aClqvPRkTxiULX_6ixzaLw redirectUri = http://localhost:8080/authorization +18:00:48.720 [XNIO-1 task-4] 1hXRgoR_TWyfSi3mJ_3TbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.720 [XNIO-1 task-4] 1hXRgoR_TWyfSi3mJ_3TbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.720 [XNIO-1 task-4] 1hXRgoR_TWyfSi3mJ_3TbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGQ5ZWU3YjItYzIwOS00NmJlLWI5M2EtZDE1OWFmMGIwOTIyOmdSQ2NISmU1VEhTbTg0d0ktbjlVR3c=", "Basic ZGQ5ZWU3YjItYzIwOS00NmJlLWI5M2EtZDE1OWFmMGIwOTIyOmdSQ2NISmU1VEhTbTg0d0ktbjlVR3c=", authorization) +18:00:48.727 [XNIO-1 task-4] 1hXRgoR_TWyfSi3mJ_3TbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.728 [XNIO-1 task-5] AEStRmYBSvm4btTegajFWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:48.728 [XNIO-1 task-5] AEStRmYBSvm4btTegajFWQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.735 [XNIO-1 task-4] tJJ8lSE2T02VKo5YUebdYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.735 [XNIO-1 task-4] tJJ8lSE2T02VKo5YUebdYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.735 [XNIO-1 task-4] tJJ8lSE2T02VKo5YUebdYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.735 [XNIO-1 task-4] tJJ8lSE2T02VKo5YUebdYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.740 [XNIO-1 task-5] 0lI7whYNSYCEVLgYa-DOVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.741 [XNIO-1 task-4] tJJ8lSE2T02VKo5YUebdYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.741 [XNIO-1 task-5] 0lI7whYNSYCEVLgYa-DOVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.742 [XNIO-1 task-5] 0lI7whYNSYCEVLgYa-DOVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +Jun 28, 2024 6:00:48 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +18:00:48.746 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:98bf7871-7a16-4c39-a833-5c63700a9121 +18:00:48.747 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:98bf7871-7a16-4c39-a833-5c63700a9121 +18:00:48.748 [XNIO-1 task-4] AIMJ1t6dQN-ca9hO3vyPzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +18:00:48.749 [XNIO-1 task-4] AIMJ1t6dQN-ca9hO3vyPzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.749 [XNIO-1 task-4] AIMJ1t6dQN-ca9hO3vyPzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGQ5ZWU3YjItYzIwOS00NmJlLWI5M2EtZDE1OWFmMGIwOTIyOmdSQ2NISmU1VEhTbTg0d0ktbjlVR3c=", "Basic ZGQ5ZWU3YjItYzIwOS00NmJlLWI5M2EtZDE1OWFmMGIwOTIyOmdSQ2NISmU1VEhTbTg0d0ktbjlVR3c=", authorization) +18:00:48.749 [XNIO-1 task-4] AIMJ1t6dQN-ca9hO3vyPzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.756 [XNIO-1 task-5] 0lI7whYNSYCEVLgYa-DOVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.756 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c4479f5a +18:00:48.756 [XNIO-1 task-5] 0lI7whYNSYCEVLgYa-DOVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +18:00:48.788 [XNIO-1 task-4] SV__LvTBSNWJjzNsDc1epw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.788 [XNIO-1 task-4] SV__LvTBSNWJjzNsDc1epw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.788 [XNIO-1 task-4] SV__LvTBSNWJjzNsDc1epw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +18:00:48.788 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c4479f5a +18:00:48.788 [XNIO-1 task-4] SV__LvTBSNWJjzNsDc1epw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", "Basic YjhiNmUwZmItODIwYi00NGE4LWIxZTMtYzkwNTEzNjFmNjg2OlgtbHZwMVZJUTdTVkt3UkdEU1Jpc0E=", authorization) +18:00:48.799 [XNIO-1 task-4] SV__LvTBSNWJjzNsDc1epw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.802 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:270c35cf + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +18:00:48.841 [XNIO-1 task-5] UvsoX1GtRDu1PfOqW3EZgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +18:00:48.841 [XNIO-1 task-3] 0T0jhdySSMihaTE0jMo1Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +18:00:48.842 [XNIO-1 task-3] 0T0jhdySSMihaTE0jMo1Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.842 [XNIO-1 task-3] 0T0jhdySSMihaTE0jMo1Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.842 [XNIO-1 task-3] 0T0jhdySSMihaTE0jMo1Ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jQ-QXN5eSKeN0Qp9WTaT8g redirectUri = http://localhost:8080/authorization +18:00:48.842 [XNIO-1 task-5] UvsoX1GtRDu1PfOqW3EZgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 7w5XTcmBRr62cULRGP64xA redirectUri = http://localhost:8080/authorization +18:00:48.849 [XNIO-1 task-3] 0T0jhdySSMihaTE0jMo1Ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.850 [XNIO-1 task-4] I-_exOKBRm6xq1O5qvxkbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.850 [XNIO-1 task-4] I-_exOKBRm6xq1O5qvxkbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.850 [XNIO-1 task-4] I-_exOKBRm6xq1O5qvxkbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.852 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.852 [XNIO-1 task-4] I-_exOKBRm6xq1O5qvxkbQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.858 [XNIO-1 task-5] UvsoX1GtRDu1PfOqW3EZgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.859 [XNIO-1 task-5] UvsoX1GtRDu1PfOqW3EZgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.867 [XNIO-1 task-4] HQrnyb-iTDWPzJ64mlYbNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.868 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1139db63-47cb-4f96-a519-737ce3c900bf +18:00:48.869 [XNIO-1 task-4] HQrnyb-iTDWPzJ64mlYbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.869 [XNIO-1 task-4] HQrnyb-iTDWPzJ64mlYbNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.870 [XNIO-1 task-4] HQrnyb-iTDWPzJ64mlYbNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.877 [XNIO-1 task-4] HQrnyb-iTDWPzJ64mlYbNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.891 [XNIO-1 task-4] 59ywVmfOQDqFrA_tkAWITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.891 [XNIO-1 task-4] 59ywVmfOQDqFrA_tkAWITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.892 [XNIO-1 task-4] 59ywVmfOQDqFrA_tkAWITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.892 [XNIO-1 task-4] 59ywVmfOQDqFrA_tkAWITw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.897 [XNIO-1 task-4] 59ywVmfOQDqFrA_tkAWITw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.897 [XNIO-1 task-5] wjnIx3lWTriY2wSPDpaCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.898 [XNIO-1 task-5] wjnIx3lWTriY2wSPDpaCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.898 [XNIO-1 task-5] wjnIx3lWTriY2wSPDpaCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.898 [XNIO-1 task-5] wjnIx3lWTriY2wSPDpaCSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = EBmxja2GQuKEUZ9qvdOn9g redirectUri = http://localhost:8080/authorization +18:00:48.903 [XNIO-1 task-4] RGQWWbuzSRiafHb-WOn62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.903 [XNIO-1 task-4] RGQWWbuzSRiafHb-WOn62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.903 [XNIO-1 task-4] RGQWWbuzSRiafHb-WOn62A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.903 [XNIO-1 task-4] RGQWWbuzSRiafHb-WOn62A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.904 [XNIO-1 task-5] wjnIx3lWTriY2wSPDpaCSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.911 [XNIO-1 task-4] RGQWWbuzSRiafHb-WOn62A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.915 [XNIO-1 task-4] bif8S3OuQAKDdSFZCIv9VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.916 [XNIO-1 task-4] bif8S3OuQAKDdSFZCIv9VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.916 [XNIO-1 task-4] bif8S3OuQAKDdSFZCIv9VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.916 [XNIO-1 task-4] bif8S3OuQAKDdSFZCIv9VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", "Basic OTM5MThiMGEtNDA2Zi00NzMyLTkwNzEtMzEyM2ZjOGM4MjE4OlRIcDBPbHhHU0dpRXk3SVFxQW94VVE=", authorization) +18:00:48.919 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:344abcb4-9699-4257-8f31-6528e7e3ad59 +18:00:48.922 [XNIO-1 task-4] bif8S3OuQAKDdSFZCIv9VQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +18:00:48.931 [XNIO-1 task-4] esp6RTgvQFCn_BLniN0hwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.931 [XNIO-1 task-4] esp6RTgvQFCn_BLniN0hwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.931 [XNIO-1 task-4] esp6RTgvQFCn_BLniN0hwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.932 [XNIO-1 task-4] esp6RTgvQFCn_BLniN0hwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", authorization) +18:00:48.937 [XNIO-1 task-5] WWrHGyGiTVeG59VNI0w7WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.937 [XNIO-1 task-5] WWrHGyGiTVeG59VNI0w7WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.937 [XNIO-1 task-5] WWrHGyGiTVeG59VNI0w7WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.937 [XNIO-1 task-5] WWrHGyGiTVeG59VNI0w7WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.938 [XNIO-1 task-5] WWrHGyGiTVeG59VNI0w7WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmYwNGI3ZTMtN2E5My00Y2RlLWIwMDAtZTVhY2Y5YjI3ZTIyOnJITVhESy1PVE5leFNNXzYxVlNMb3c=", "Basic MmYwNGI3ZTMtN2E5My00Y2RlLWIwMDAtZTVhY2Y5YjI3ZTIyOnJITVhESy1PVE5leFNNXzYxVlNMb3c=", authorization) +18:00:48.942 [XNIO-1 task-4] eDeaB7BTScOF5ZBOedV5Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.942 [XNIO-1 task-4] eDeaB7BTScOF5ZBOedV5Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.943 [XNIO-1 task-4] eDeaB7BTScOF5ZBOedV5Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.943 [XNIO-1 task-4] eDeaB7BTScOF5ZBOedV5Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:48.945 [XNIO-1 task-3] 1bcwhsEYRaOPJwmiv-KilQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.945 [XNIO-1 task-3] 1bcwhsEYRaOPJwmiv-KilQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.945 [XNIO-1 task-3] 1bcwhsEYRaOPJwmiv-KilQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.946 [XNIO-1 task-3] 1bcwhsEYRaOPJwmiv-KilQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", authorization) +18:00:48.948 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5c1f9b2d-f5ca-4e85-b264-22b46c992e24 +18:00:48.948 [XNIO-1 task-5] WWrHGyGiTVeG59VNI0w7WQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.950 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4c34f6b7-9201-48e8-b0ed-6af397edd663 +18:00:48.951 [XNIO-1 task-4] eDeaB7BTScOF5ZBOedV5Uw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +18:00:48.953 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5c1f9b2d-f5ca-4e85-b264-22b46c992e24 +18:00:48.954 [XNIO-1 task-3] 1bcwhsEYRaOPJwmiv-KilQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.960 [XNIO-1 task-3] 3rGR3GjjR4aGXxTedAc3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.960 [XNIO-1 task-3] 3rGR3GjjR4aGXxTedAc3lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.960 [XNIO-1 task-3] 3rGR3GjjR4aGXxTedAc3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.960 [XNIO-1 task-5] dhjfzSeDTr-SfqyVYr8YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.961 [XNIO-1 task-3] 3rGR3GjjR4aGXxTedAc3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.961 [XNIO-1 task-5] dhjfzSeDTr-SfqyVYr8YOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.961 [XNIO-1 task-3] 3rGR3GjjR4aGXxTedAc3lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", authorization) +18:00:48.961 [XNIO-1 task-5] dhjfzSeDTr-SfqyVYr8YOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4c34f6b7-9201-48e8-b0ed-6af397edd663 scope = null +18:00:48.966 [XNIO-1 task-3] 3rGR3GjjR4aGXxTedAc3lQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:48.970 [XNIO-1 task-5] dhjfzSeDTr-SfqyVYr8YOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.973 [XNIO-1 task-4] ofVlxHX7SUGVtb5NG5AHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.973 [XNIO-1 task-4] ofVlxHX7SUGVtb5NG5AHvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.973 [XNIO-1 task-4] ofVlxHX7SUGVtb5NG5AHvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.973 [XNIO-1 task-4] ofVlxHX7SUGVtb5NG5AHvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", "Basic NjUxYjNiZTItOTRhZC00M2Q4LTllOWUtM2E4YjgxODI2YjFhOks3SV9hMFFYUmhTcDNQUzc5YXRsbUE=", authorization) +18:00:48.974 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ea81e111-cf08-43a1-a006-6bf39a7fb13b +18:00:48.975 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ea81e111-cf08-43a1-a006-6bf39a7fb13b +18:00:48.978 [XNIO-1 task-3] IoN8uBGNR966IKf9IW4PKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.978 [XNIO-1 task-3] IoN8uBGNR966IKf9IW4PKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.979 [XNIO-1 task-3] IoN8uBGNR966IKf9IW4PKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.979 [XNIO-1 task-3] IoN8uBGNR966IKf9IW4PKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:48.980 [XNIO-1 task-4] ofVlxHX7SUGVtb5NG5AHvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.986 [XNIO-1 task-3] IoN8uBGNR966IKf9IW4PKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:48.988 [XNIO-1 task-5] udm9oUkuTtub_DfmIsRY-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.989 [XNIO-1 task-5] udm9oUkuTtub_DfmIsRY-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.989 [XNIO-1 task-5] udm9oUkuTtub_DfmIsRY-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.990 [XNIO-1 task-3] uTdRoMZmT6OLR1OMJxkDxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.990 [XNIO-1 task-3] uTdRoMZmT6OLR1OMJxkDxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.990 [XNIO-1 task-5] udm9oUkuTtub_DfmIsRY-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmYwNGI3ZTMtN2E5My00Y2RlLWIwMDAtZTVhY2Y5YjI3ZTIyOnJITVhESy1PVE5leFNNXzYxVlNMb3c=", "Basic MmYwNGI3ZTMtN2E5My00Y2RlLWIwMDAtZTVhY2Y5YjI3ZTIyOnJITVhESy1PVE5leFNNXzYxVlNMb3c=", authorization) +18:00:48.991 [XNIO-1 task-3] uTdRoMZmT6OLR1OMJxkDxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.991 [XNIO-1 task-3] uTdRoMZmT6OLR1OMJxkDxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", authorization) +18:00:48.995 [XNIO-1 task-4] ShunY6P_ROGdIPHaCKnNXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:48.996 [XNIO-1 task-4] ShunY6P_ROGdIPHaCKnNXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:48.996 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ea81e111-cf08-43a1-a006-6bf39a7fb13b +18:00:48.996 [XNIO-1 task-4] ShunY6P_ROGdIPHaCKnNXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:48.996 [XNIO-1 task-4] ShunY6P_ROGdIPHaCKnNXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fc218345-ee89-477d-897a-9fadd87a5aa6 scope = null +18:00:49.005 [XNIO-1 task-3] uTdRoMZmT6OLR1OMJxkDxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.007 [XNIO-1 task-5] udm9oUkuTtub_DfmIsRY-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.011 [XNIO-1 task-4] ShunY6P_ROGdIPHaCKnNXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.013 [XNIO-1 task-3] dSgjPOBnTgyRObLOwbE6Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.013 [XNIO-1 task-3] dSgjPOBnTgyRObLOwbE6Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.013 [XNIO-1 task-3] dSgjPOBnTgyRObLOwbE6Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.014 [XNIO-1 task-3] dSgjPOBnTgyRObLOwbE6Og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:49.019 [XNIO-1 task-5] ic_eXi6zTwKv_PWG2hMCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.019 [XNIO-1 task-5] ic_eXi6zTwKv_PWG2hMCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.019 [XNIO-1 task-3] dSgjPOBnTgyRObLOwbE6Og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.019 [XNIO-1 task-5] ic_eXi6zTwKv_PWG2hMCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.019 [XNIO-1 task-5] ic_eXi6zTwKv_PWG2hMCdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 23f9c932-7769-48c1-b212-9d7945b86070 scope = null +18:00:49.024 [XNIO-1 task-3] 433Ssq4BSkSj8PpnEZjpEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.024 [XNIO-1 task-3] 433Ssq4BSkSj8PpnEZjpEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.025 [XNIO-1 task-4] X6c-4UxiQTy87-Hrm4r6iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.025 [XNIO-1 task-4] X6c-4UxiQTy87-Hrm4r6iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:49.026 [XNIO-1 task-4] X6c-4UxiQTy87-Hrm4r6iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.026 [XNIO-1 task-4] X6c-4UxiQTy87-Hrm4r6iA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", "Basic MmNiNzBiYTItODUzZS00MmVmLTg4NmMtZTg3YjdmMDk0YzllOk9GU3NhcGNCVEtxX0U4OWNoUkF5UkE=", authorization) +18:00:49.024 [XNIO-1 task-3] 433Ssq4BSkSj8PpnEZjpEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.030 [XNIO-1 task-3] 433Ssq4BSkSj8PpnEZjpEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 524b4408-9324-44b0-96f7-19f305f06abd scope = null +18:00:49.030 [XNIO-1 task-5] ic_eXi6zTwKv_PWG2hMCdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.031 [XNIO-1 task-4] X6c-4UxiQTy87-Hrm4r6iA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.033 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:270c35cf +18:00:49.036 [XNIO-1 task-4] QPJEp7RcRsWd_Flj_1ZDMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.037 [XNIO-1 task-4] QPJEp7RcRsWd_Flj_1ZDMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.037 [XNIO-1 task-4] QPJEp7RcRsWd_Flj_1ZDMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.037 [XNIO-1 task-4] QPJEp7RcRsWd_Flj_1ZDMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:49.043 [XNIO-1 task-4] QPJEp7RcRsWd_Flj_1ZDMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.045 [XNIO-1 task-3] 433Ssq4BSkSj8PpnEZjpEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.048 [XNIO-1 task-4] Gd72o4s4SXqNTbhWESDA3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.048 [XNIO-1 task-4] Gd72o4s4SXqNTbhWESDA3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.049 [XNIO-1 task-4] Gd72o4s4SXqNTbhWESDA3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.049 [XNIO-1 task-4] Gd72o4s4SXqNTbhWESDA3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:49.056 [XNIO-1 task-4] Gd72o4s4SXqNTbhWESDA3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.065 [XNIO-1 task-3] Fiui-NyFQLStK3qsBjgPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.065 [XNIO-1 task-3] Fiui-NyFQLStK3qsBjgPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.066 [XNIO-1 task-3] Fiui-NyFQLStK3qsBjgPmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.066 [XNIO-1 task-3] Fiui-NyFQLStK3qsBjgPmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:49.071 [XNIO-1 task-3] Fiui-NyFQLStK3qsBjgPmg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.079 [XNIO-1 task-3] 5pkBKwmCR1WX-k9zUx85oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.079 [XNIO-1 task-3] 5pkBKwmCR1WX-k9zUx85oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.079 [XNIO-1 task-3] 5pkBKwmCR1WX-k9zUx85oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.080 [XNIO-1 task-3] 5pkBKwmCR1WX-k9zUx85oQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:49.086 [XNIO-1 task-3] 5pkBKwmCR1WX-k9zUx85oQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.093 [XNIO-1 task-3] KY6Ri0I8TDGK16CGKZsisQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.094 [XNIO-1 task-3] KY6Ri0I8TDGK16CGKZsisQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.094 [XNIO-1 task-3] KY6Ri0I8TDGK16CGKZsisQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.094 [XNIO-1 task-3] KY6Ri0I8TDGK16CGKZsisQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vb0IiJTLSTCrAKYBCNRl6Q redirectUri = http://localhost:8080/authorization +18:00:49.097 [XNIO-1 task-4] Kp4XwlRPSWaa8nTighTQgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.097 [XNIO-1 task-4] Kp4XwlRPSWaa8nTighTQgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.098 [XNIO-1 task-4] Kp4XwlRPSWaa8nTighTQgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.098 [XNIO-1 task-4] Kp4XwlRPSWaa8nTighTQgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +18:00:49.104 [XNIO-1 task-4] Kp4XwlRPSWaa8nTighTQgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.109 [XNIO-1 task-3] KY6Ri0I8TDGK16CGKZsisQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:49.109 [XNIO-1 task-4] r743M6TZSSOjVn0S1IkO_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.109 [XNIO-1 task-4] r743M6TZSSOjVn0S1IkO_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:49.110 [XNIO-1 task-4] r743M6TZSSOjVn0S1IkO_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.110 [XNIO-1 task-4] r743M6TZSSOjVn0S1IkO_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", authorization) +18:00:49.116 [XNIO-1 task-4] r743M6TZSSOjVn0S1IkO_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:49.124 [XNIO-1 task-4] v40hf_QIRaqVK9iFAmZcMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.124 [XNIO-1 task-4] v40hf_QIRaqVK9iFAmZcMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:49.124 [XNIO-1 task-4] v40hf_QIRaqVK9iFAmZcMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.125 [XNIO-1 task-4] v40hf_QIRaqVK9iFAmZcMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", authorization) +18:00:49.129 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:270c35cf +18:00:49.129 [XNIO-1 task-4] v40hf_QIRaqVK9iFAmZcMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.147 [XNIO-1 task-4] ReTo_plDR9260kxvUQMdNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.147 [XNIO-1 task-4] ReTo_plDR9260kxvUQMdNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:49.147 [XNIO-1 task-4] ReTo_plDR9260kxvUQMdNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.147 [XNIO-1 task-4] ReTo_plDR9260kxvUQMdNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", authorization) +18:00:49.153 [XNIO-1 task-4] ReTo_plDR9260kxvUQMdNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:49.163 [XNIO-1 task-4] NVsA-KLyQcKZyNc0fkFlMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.163 [XNIO-1 task-4] NVsA-KLyQcKZyNc0fkFlMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:49.163 [XNIO-1 task-4] NVsA-KLyQcKZyNc0fkFlMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.164 [XNIO-1 task-4] NVsA-KLyQcKZyNc0fkFlMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", "Basic MjVhYTMxYWMtZjA2NC00MjAwLWE4MmUtMjc0NDEyMWI1YTVkOkdTQzlVbmlzUTRLYjd2TVZFVUNMVmc=", authorization) +18:00:49.164 [XNIO-1 task-3] jPf9hcQ6QWqXRQQPup2IWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.164 [XNIO-1 task-3] jPf9hcQ6QWqXRQQPup2IWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:49.165 [XNIO-1 task-3] jPf9hcQ6QWqXRQQPup2IWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.165 [XNIO-1 task-3] jPf9hcQ6QWqXRQQPup2IWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", "Basic YmFmZmZkMmEtMzk0Yy00N2FjLWE5MDktMWNiMmM4MWFjYTUyOkUwYnRmcXZYUklHaGo1OVFnQkFnN3c=", authorization) +18:00:49.167 [XNIO-1 task-5] dzk6DmiwSIm5pn40Y-d76A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.168 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:96b6c2c8-34e9-48ca-911e-331d557ea693 +18:00:49.168 [XNIO-1 task-5] dzk6DmiwSIm5pn40Y-d76A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.168 [XNIO-1 task-5] dzk6DmiwSIm5pn40Y-d76A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +18:00:49.169 [XNIO-1 task-5] dzk6DmiwSIm5pn40Y-d76A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = HXkk64NqR2ejsYykwfh3Hw redirectUri = http://localhost:8080/authorization +18:00:49.171 [XNIO-1 task-4] NVsA-KLyQcKZyNc0fkFlMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.174 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:96b6c2c8-34e9-48ca-911e-331d557ea693 +18:00:49.174 [XNIO-1 task-5] dzk6DmiwSIm5pn40Y-d76A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +18:00:49.176 [XNIO-1 task-4] yKR5S54pTIKiJauy3pEnKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.176 [XNIO-1 task-4] yKR5S54pTIKiJauy3pEnKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +18:00:49.177 [XNIO-1 task-4] yKR5S54pTIKiJauy3pEnKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +18:00:49.177 [XNIO-1 task-4] yKR5S54pTIKiJauy3pEnKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", "Basic NWNjOWFjNzEtMjRkZS00OTJhLThkZjktY2Q2MTBjNDI1YWIzOjc5eGNYcDc1U01TbFZmMFg4LWZDanc=", authorization) +18:00:49.177 [XNIO-1 task-3] jPf9hcQ6QWqXRQQPup2IWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +18:00:49.177 [XNIO-1 task-3] jPf9hcQ6QWqXRQQPup2IWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +18:00:49.183 [XNIO-1 task-4] yKR5S54pTIKiJauy3pEnKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config diff --git a/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-user-1.log b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..49dad4a --- /dev/null +++ b/log_data/LO2/Labeled/correct_3/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1595 @@ +18:00:39.120 [XNIO-1 task-1] -1Uc2lwuTU22Urz_BEBF1g DEBUG com.networknt.schema.TypeValidator debug - validate( "b625893d", "b625893d", userId) +18:00:39.131 [XNIO-1 task-1] oCYJWM_9QG6PCdKNYrDUqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.131 [XNIO-1 task-1] oCYJWM_9QG6PCdKNYrDUqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.131 [XNIO-1 task-1] oCYJWM_9QG6PCdKNYrDUqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.132 [XNIO-1 task-1] oCYJWM_9QG6PCdKNYrDUqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.189 [XNIO-1 task-1] 4crH975tRVCwA82FgICXxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.190 [XNIO-1 task-1] 4crH975tRVCwA82FgICXxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.190 [XNIO-1 task-1] 4crH975tRVCwA82FgICXxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.193 [XNIO-1 task-1] 4crH975tRVCwA82FgICXxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.203 [XNIO-1 task-1] IYRUdK5zQOyfPQDiD1XazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.203 [XNIO-1 task-1] IYRUdK5zQOyfPQDiD1XazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.203 [XNIO-1 task-1] IYRUdK5zQOyfPQDiD1XazQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.204 [XNIO-1 task-1] IYRUdK5zQOyfPQDiD1XazQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.224 [XNIO-1 task-1] 8Or3rFjcSgCHsaPTjrOlEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b625893d +18:00:39.224 [XNIO-1 task-1] 8Or3rFjcSgCHsaPTjrOlEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.224 [XNIO-1 task-1] 8Or3rFjcSgCHsaPTjrOlEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.224 [XNIO-1 task-1] 8Or3rFjcSgCHsaPTjrOlEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b625893d +18:00:39.235 [XNIO-1 task-1] 4iOuEb0ES1y6Gk0HUBtxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.235 [XNIO-1 task-1] 4iOuEb0ES1y6Gk0HUBtxnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.236 [XNIO-1 task-1] 4iOuEb0ES1y6Gk0HUBtxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.253 [XNIO-1 task-1] TmfCLrPEQJa6oT6kMnRetQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.254 [XNIO-1 task-1] TmfCLrPEQJa6oT6kMnRetQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.254 [XNIO-1 task-1] TmfCLrPEQJa6oT6kMnRetQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.334 [XNIO-1 task-1] nwltAa_jRvCdnbgGyrcLoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b625893d, base path is set to: null +18:00:39.334 [XNIO-1 task-1] nwltAa_jRvCdnbgGyrcLoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.334 [XNIO-1 task-1] nwltAa_jRvCdnbgGyrcLoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:39.334 [XNIO-1 task-1] nwltAa_jRvCdnbgGyrcLoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b625893d, base path is set to: null +18:00:39.335 [XNIO-1 task-1] nwltAa_jRvCdnbgGyrcLoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b625893d", "b625893d", userId) +18:00:39.343 [XNIO-1 task-1] EEosYcfMQtCA76xQaouWsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b625893d +18:00:39.343 [XNIO-1 task-1] EEosYcfMQtCA76xQaouWsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.343 [XNIO-1 task-1] EEosYcfMQtCA76xQaouWsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.343 [XNIO-1 task-1] EEosYcfMQtCA76xQaouWsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b625893d +18:00:39.371 [XNIO-1 task-1] R0NjfbLWRHqC8AzPnz2etw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.372 [XNIO-1 task-1] R0NjfbLWRHqC8AzPnz2etw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.372 [XNIO-1 task-1] R0NjfbLWRHqC8AzPnz2etw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.372 [XNIO-1 task-1] R0NjfbLWRHqC8AzPnz2etw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:39.379 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:961c514d-81f3-437c-8602-215f1d79ff0e +18:00:39.399 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:961c514d-81f3-437c-8602-215f1d79ff0e +18:00:39.399 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:63faab8a +18:00:39.465 [XNIO-1 task-1] AhSTTEJfQkSyi2asVdmK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.472 [XNIO-1 task-1] AhSTTEJfQkSyi2asVdmK8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.473 [XNIO-1 task-1] AhSTTEJfQkSyi2asVdmK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.473 [XNIO-1 task-1] AhSTTEJfQkSyi2asVdmK8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.477 [XNIO-1 task-1] AhSTTEJfQkSyi2asVdmK8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.504 [XNIO-1 task-1] CtpfMgJaTXivV8pLEALZcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.504 [XNIO-1 task-1] CtpfMgJaTXivV8pLEALZcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.504 [XNIO-1 task-1] CtpfMgJaTXivV8pLEALZcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.539 [XNIO-1 task-1] 7TCSI4B2RKyPSIudmQdVWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0b9ff68e +18:00:39.539 [XNIO-1 task-1] 7TCSI4B2RKyPSIudmQdVWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.539 [XNIO-1 task-1] 7TCSI4B2RKyPSIudmQdVWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.540 [XNIO-1 task-1] 7TCSI4B2RKyPSIudmQdVWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0b9ff68e +18:00:39.553 [XNIO-1 task-1] JzJ6Vb89TU6jfiNXFMFmUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.553 [XNIO-1 task-1] JzJ6Vb89TU6jfiNXFMFmUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.553 [XNIO-1 task-1] JzJ6Vb89TU6jfiNXFMFmUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.619 [XNIO-1 task-1] MS5Ds1gvQNGBRZaMhkgp1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f5684ee, base path is set to: null +18:00:39.620 [XNIO-1 task-1] MS5Ds1gvQNGBRZaMhkgp1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.620 [XNIO-1 task-1] MS5Ds1gvQNGBRZaMhkgp1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:39.620 [XNIO-1 task-1] MS5Ds1gvQNGBRZaMhkgp1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f5684ee, base path is set to: null +18:00:39.621 [XNIO-1 task-1] MS5Ds1gvQNGBRZaMhkgp1A DEBUG com.networknt.schema.TypeValidator debug - validate( "7f5684ee", "7f5684ee", userId) +18:00:39.637 [XNIO-1 task-1] O80FTxJ7SYyrVWgUULEHtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.637 [XNIO-1 task-1] O80FTxJ7SYyrVWgUULEHtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.637 [XNIO-1 task-1] O80FTxJ7SYyrVWgUULEHtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.638 [XNIO-1 task-1] O80FTxJ7SYyrVWgUULEHtA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.651 [XNIO-1 task-1] 7SsRthENTt-G-50ihwBN9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.652 [XNIO-1 task-1] 7SsRthENTt-G-50ihwBN9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.652 [XNIO-1 task-1] 7SsRthENTt-G-50ihwBN9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.653 [XNIO-1 task-1] 7SsRthENTt-G-50ihwBN9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.686 [XNIO-1 task-1] Vk2eaX1hQ32M3cHZAE2ceA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.686 [XNIO-1 task-1] Vk2eaX1hQ32M3cHZAE2ceA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.686 [XNIO-1 task-1] Vk2eaX1hQ32M3cHZAE2ceA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.687 [XNIO-1 task-1] Vk2eaX1hQ32M3cHZAE2ceA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.738 [XNIO-1 task-1] 3YJhyebWQLyjMC5VyDgIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.738 [XNIO-1 task-1] 3YJhyebWQLyjMC5VyDgIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.739 [XNIO-1 task-1] 3YJhyebWQLyjMC5VyDgIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.739 [XNIO-1 task-1] 3YJhyebWQLyjMC5VyDgIVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:39.752 [XNIO-1 task-1] Fpm_sFzFSjeHVcpleKA1ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.752 [XNIO-1 task-1] Fpm_sFzFSjeHVcpleKA1ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.753 [XNIO-1 task-1] Fpm_sFzFSjeHVcpleKA1ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.790 [XNIO-1 task-1] gEVPUqsuS6uDNNtu3bN4vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/50365e56 +18:00:39.790 [XNIO-1 task-1] gEVPUqsuS6uDNNtu3bN4vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.790 [XNIO-1 task-1] gEVPUqsuS6uDNNtu3bN4vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.791 [XNIO-1 task-1] gEVPUqsuS6uDNNtu3bN4vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/50365e56 +18:00:39.797 [XNIO-1 task-1] JaRK1iYRRGuqkwae4fSYUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50365e56, base path is set to: null +18:00:39.798 [XNIO-1 task-1] JaRK1iYRRGuqkwae4fSYUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.798 [XNIO-1 task-1] JaRK1iYRRGuqkwae4fSYUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:39.798 [XNIO-1 task-1] JaRK1iYRRGuqkwae4fSYUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50365e56, base path is set to: null +18:00:39.799 [XNIO-1 task-1] JaRK1iYRRGuqkwae4fSYUA DEBUG com.networknt.schema.TypeValidator debug - validate( "50365e56", "50365e56", userId) +18:00:39.803 [XNIO-1 task-1] gljlydRYT0u65CZkLn34nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.803 [XNIO-1 task-1] gljlydRYT0u65CZkLn34nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.804 [XNIO-1 task-1] gljlydRYT0u65CZkLn34nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.849 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c70d796d +18:00:39.858 [XNIO-1 task-1] y540wWzzSPS7hAEQYmAdHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50365e56, base path is set to: null +18:00:39.858 [XNIO-1 task-1] y540wWzzSPS7hAEQYmAdHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.858 [XNIO-1 task-1] y540wWzzSPS7hAEQYmAdHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:39.858 [XNIO-1 task-1] y540wWzzSPS7hAEQYmAdHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50365e56, base path is set to: null +18:00:39.859 [XNIO-1 task-1] y540wWzzSPS7hAEQYmAdHA DEBUG com.networknt.schema.TypeValidator debug - validate( "50365e56", "50365e56", userId) +18:00:39.863 [XNIO-1 task-1] gM-QuCj5SKmHbrciknZOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c70d796d +18:00:39.863 [XNIO-1 task-1] gM-QuCj5SKmHbrciknZOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.865 [XNIO-1 task-1] gM-QuCj5SKmHbrciknZOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.865 [XNIO-1 task-1] gM-QuCj5SKmHbrciknZOZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c70d796d +18:00:39.866 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c70d796d +18:00:39.875 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/50365e56 +18:00:39.875 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.875 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.875 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:39.876 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/50365e56 +18:00:39.877 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1d3b9146-d2e4-447c-a1a6-27a241ab2ed4","newPassword":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPasswordConfirm":"98ee8924-5402-4874-9c91-27b7cb44b4e2"}, {"password":"1d3b9146-d2e4-447c-a1a6-27a241ab2ed4","newPassword":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPasswordConfirm":"98ee8924-5402-4874-9c91-27b7cb44b4e2"}, requestBody) +18:00:39.877 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1d3b9146-d2e4-447c-a1a6-27a241ab2ed4","newPassword":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPasswordConfirm":"98ee8924-5402-4874-9c91-27b7cb44b4e2"}, {"password":"1d3b9146-d2e4-447c-a1a6-27a241ab2ed4","newPassword":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPasswordConfirm":"98ee8924-5402-4874-9c91-27b7cb44b4e2"}, requestBody) +18:00:39.877 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG com.networknt.schema.FormatValidator debug - validate( "98ee8924-5402-4874-9c91-27b7cb44b4e2", {"password":"1d3b9146-d2e4-447c-a1a6-27a241ab2ed4","newPassword":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPasswordConfirm":"98ee8924-5402-4874-9c91-27b7cb44b4e2"}, requestBody.newPasswordConfirm) +18:00:39.877 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG com.networknt.schema.FormatValidator debug - validate( "1d3b9146-d2e4-447c-a1a6-27a241ab2ed4", {"password":"1d3b9146-d2e4-447c-a1a6-27a241ab2ed4","newPassword":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPasswordConfirm":"98ee8924-5402-4874-9c91-27b7cb44b4e2"}, requestBody.password) +18:00:39.877 [XNIO-1 task-1] mFNyOkHvQgmscx2JWWi6OA DEBUG com.networknt.schema.FormatValidator debug - validate( "98ee8924-5402-4874-9c91-27b7cb44b4e2", {"password":"1d3b9146-d2e4-447c-a1a6-27a241ab2ed4","newPassword":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPasswordConfirm":"98ee8924-5402-4874-9c91-27b7cb44b4e2"}, requestBody.newPassword) +18:00:39.915 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/50365e56 +18:00:39.915 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.916 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.916 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:39.916 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/50365e56 +18:00:39.917 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPassword":"d6f0d3e7-1159-4042-93e7-ae9a47b93145","newPasswordConfirm":"d6f0d3e7-1159-4042-93e7-ae9a47b93145"}, {"password":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPassword":"d6f0d3e7-1159-4042-93e7-ae9a47b93145","newPasswordConfirm":"d6f0d3e7-1159-4042-93e7-ae9a47b93145"}, requestBody) +18:00:39.918 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPassword":"d6f0d3e7-1159-4042-93e7-ae9a47b93145","newPasswordConfirm":"d6f0d3e7-1159-4042-93e7-ae9a47b93145"}, {"password":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPassword":"d6f0d3e7-1159-4042-93e7-ae9a47b93145","newPasswordConfirm":"d6f0d3e7-1159-4042-93e7-ae9a47b93145"}, requestBody) +18:00:39.918 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG com.networknt.schema.FormatValidator debug - validate( "d6f0d3e7-1159-4042-93e7-ae9a47b93145", {"password":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPassword":"d6f0d3e7-1159-4042-93e7-ae9a47b93145","newPasswordConfirm":"d6f0d3e7-1159-4042-93e7-ae9a47b93145"}, requestBody.newPasswordConfirm) +18:00:39.918 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG com.networknt.schema.FormatValidator debug - validate( "98ee8924-5402-4874-9c91-27b7cb44b4e2", {"password":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPassword":"d6f0d3e7-1159-4042-93e7-ae9a47b93145","newPasswordConfirm":"d6f0d3e7-1159-4042-93e7-ae9a47b93145"}, requestBody.password) +18:00:39.918 [XNIO-1 task-1] 9hH5Vs_bS4e6IzRmaXzs-g DEBUG com.networknt.schema.FormatValidator debug - validate( "d6f0d3e7-1159-4042-93e7-ae9a47b93145", {"password":"98ee8924-5402-4874-9c91-27b7cb44b4e2","newPassword":"d6f0d3e7-1159-4042-93e7-ae9a47b93145","newPasswordConfirm":"d6f0d3e7-1159-4042-93e7-ae9a47b93145"}, requestBody.newPassword) +18:00:39.940 [XNIO-1 task-1] eq-8Q3aEQNGq7FNQBa6XMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/50365e56 +18:00:39.940 [XNIO-1 task-1] eq-8Q3aEQNGq7FNQBa6XMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:39.941 [XNIO-1 task-1] eq-8Q3aEQNGq7FNQBa6XMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:39.941 [XNIO-1 task-1] eq-8Q3aEQNGq7FNQBa6XMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/50365e56 +18:00:39.955 [XNIO-1 task-1] Y_MNysj3QlCwHGcGZGn2hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.956 [XNIO-1 task-1] Y_MNysj3QlCwHGcGZGn2hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.956 [XNIO-1 task-1] Y_MNysj3QlCwHGcGZGn2hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.957 [XNIO-1 task-1] Y_MNysj3QlCwHGcGZGn2hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:39.980 [XNIO-1 task-1] 96Ogg8mqSICTsMi0RtGHdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:39.980 [XNIO-1 task-1] 96Ogg8mqSICTsMi0RtGHdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:39.981 [XNIO-1 task-1] 96Ogg8mqSICTsMi0RtGHdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:40.070 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/94e92193, base path is set to: null +18:00:40.071 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.072 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.072 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:40.072 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/94e92193, base path is set to: null +18:00:40.073 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG com.networknt.schema.TypeValidator debug - validate( "94e92193", "94e92193", userId) +18:00:40.073 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0e23d668-fb64-4325-875c-27089d1d5304","newPassword":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPasswordConfirm":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41"}, {"password":"0e23d668-fb64-4325-875c-27089d1d5304","newPassword":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPasswordConfirm":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41"}, requestBody) +18:00:40.073 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG com.networknt.schema.TypeValidator debug - validate( "9eba52db-37d0-4f65-91b3-bf6f8c2e5e41", {"password":"0e23d668-fb64-4325-875c-27089d1d5304","newPassword":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPasswordConfirm":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41"}, requestBody.newPasswordConfirm) +18:00:40.073 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG com.networknt.schema.TypeValidator debug - validate( "0e23d668-fb64-4325-875c-27089d1d5304", {"password":"0e23d668-fb64-4325-875c-27089d1d5304","newPassword":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPasswordConfirm":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41"}, requestBody.password) +18:00:40.073 [XNIO-1 task-1] Nraye6v3TDGqfCagO56Blw DEBUG com.networknt.schema.TypeValidator debug - validate( "9eba52db-37d0-4f65-91b3-bf6f8c2e5e41", {"password":"0e23d668-fb64-4325-875c-27089d1d5304","newPassword":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPasswordConfirm":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41"}, requestBody.newPassword) +18:00:40.112 [XNIO-1 task-1] 6QwVkt4ZQ_6omna4Q4rksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94e92193, base path is set to: null +18:00:40.112 [XNIO-1 task-1] 6QwVkt4ZQ_6omna4Q4rksg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.112 [XNIO-1 task-1] 6QwVkt4ZQ_6omna4Q4rksg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.113 [XNIO-1 task-1] 6QwVkt4ZQ_6omna4Q4rksg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94e92193, base path is set to: null +18:00:40.113 [XNIO-1 task-1] 6QwVkt4ZQ_6omna4Q4rksg DEBUG com.networknt.schema.TypeValidator debug - validate( "94e92193", "94e92193", userId) +18:00:40.118 [XNIO-1 task-1] RScHi24ITD6Pnq69hPlXJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.118 [XNIO-1 task-1] RScHi24ITD6Pnq69hPlXJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.119 [XNIO-1 task-1] RScHi24ITD6Pnq69hPlXJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.156 [XNIO-1 task-1] dEj2sehcTnevL36eN0Heow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.156 [XNIO-1 task-1] dEj2sehcTnevL36eN0Heow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.157 [XNIO-1 task-1] dEj2sehcTnevL36eN0Heow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.210 [XNIO-1 task-1] XK1CmX1HQH61aIFLRQAxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/94e92193 +18:00:40.210 [XNIO-1 task-1] XK1CmX1HQH61aIFLRQAxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.210 [XNIO-1 task-1] XK1CmX1HQH61aIFLRQAxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:40.211 [XNIO-1 task-1] XK1CmX1HQH61aIFLRQAxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/94e92193 +18:00:40.215 [XNIO-1 task-1] Kbu53GwcTDycsdKjKnRMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94e92193, base path is set to: null +18:00:40.215 [XNIO-1 task-1] Kbu53GwcTDycsdKjKnRMIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.215 [XNIO-1 task-1] Kbu53GwcTDycsdKjKnRMIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.215 [XNIO-1 task-1] Kbu53GwcTDycsdKjKnRMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94e92193, base path is set to: null +18:00:40.216 [XNIO-1 task-1] Kbu53GwcTDycsdKjKnRMIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "94e92193", "94e92193", userId) +18:00:40.221 [XNIO-1 task-1] BoQOq9r_StGQejOzWoVa-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.221 [XNIO-1 task-1] BoQOq9r_StGQejOzWoVa-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.222 [XNIO-1 task-1] BoQOq9r_StGQejOzWoVa-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.240 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/94e92193 +18:00:40.241 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.241 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:40.241 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:40.241 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/94e92193 +18:00:40.242 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPassword":"0a6c6004-6de0-4421-8d28-87a1a85172f9","newPasswordConfirm":"0a6c6004-6de0-4421-8d28-87a1a85172f9"}, {"password":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPassword":"0a6c6004-6de0-4421-8d28-87a1a85172f9","newPasswordConfirm":"0a6c6004-6de0-4421-8d28-87a1a85172f9"}, requestBody) +18:00:40.242 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPassword":"0a6c6004-6de0-4421-8d28-87a1a85172f9","newPasswordConfirm":"0a6c6004-6de0-4421-8d28-87a1a85172f9"}, {"password":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPassword":"0a6c6004-6de0-4421-8d28-87a1a85172f9","newPasswordConfirm":"0a6c6004-6de0-4421-8d28-87a1a85172f9"}, requestBody) +18:00:40.243 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG com.networknt.schema.FormatValidator debug - validate( "0a6c6004-6de0-4421-8d28-87a1a85172f9", {"password":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPassword":"0a6c6004-6de0-4421-8d28-87a1a85172f9","newPasswordConfirm":"0a6c6004-6de0-4421-8d28-87a1a85172f9"}, requestBody.newPasswordConfirm) +18:00:40.243 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG com.networknt.schema.FormatValidator debug - validate( "9eba52db-37d0-4f65-91b3-bf6f8c2e5e41", {"password":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPassword":"0a6c6004-6de0-4421-8d28-87a1a85172f9","newPasswordConfirm":"0a6c6004-6de0-4421-8d28-87a1a85172f9"}, requestBody.password) +18:00:40.243 [XNIO-1 task-1] ha7luQ-dT-erF7QHGM5Sgg DEBUG com.networknt.schema.FormatValidator debug - validate( "0a6c6004-6de0-4421-8d28-87a1a85172f9", {"password":"9eba52db-37d0-4f65-91b3-bf6f8c2e5e41","newPassword":"0a6c6004-6de0-4421-8d28-87a1a85172f9","newPasswordConfirm":"0a6c6004-6de0-4421-8d28-87a1a85172f9"}, requestBody.newPassword) +18:00:40.279 [XNIO-1 task-1] g1KmKCxvSUOeYIUa4yeZ0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.279 [XNIO-1 task-1] g1KmKCxvSUOeYIUa4yeZ0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.280 [XNIO-1 task-1] g1KmKCxvSUOeYIUa4yeZ0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.288 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4d9e5853 +18:00:40.296 [XNIO-1 task-1] 2YENvmwjTiu0wGeceOcQhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:40.296 [XNIO-1 task-1] 2YENvmwjTiu0wGeceOcQhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.301 [XNIO-1 task-1] 2YENvmwjTiu0wGeceOcQhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:40.319 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:63faab8a +18:00:40.334 [XNIO-1 task-1] vkvTvsBeQhqeXI1H1mDFDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94e92193, base path is set to: null +18:00:40.335 [XNIO-1 task-1] vkvTvsBeQhqeXI1H1mDFDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.335 [XNIO-1 task-1] vkvTvsBeQhqeXI1H1mDFDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.335 [XNIO-1 task-1] vkvTvsBeQhqeXI1H1mDFDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/94e92193, base path is set to: null +18:00:40.335 [XNIO-1 task-1] vkvTvsBeQhqeXI1H1mDFDg DEBUG com.networknt.schema.TypeValidator debug - validate( "94e92193", "94e92193", userId) +18:00:40.360 [XNIO-1 task-1] Q194DZlTQYmG9lavg7J4lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.360 [XNIO-1 task-1] Q194DZlTQYmG9lavg7J4lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.360 [XNIO-1 task-1] Q194DZlTQYmG9lavg7J4lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.486 [XNIO-1 task-1] umTsEjQxTuiX8nlok9cOZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.486 [XNIO-1 task-1] umTsEjQxTuiX8nlok9cOZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.486 [XNIO-1 task-1] umTsEjQxTuiX8nlok9cOZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.521 [XNIO-1 task-1] eOXAGPPPSf6axzxoPgrZuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4912ce82 +18:00:40.521 [XNIO-1 task-1] eOXAGPPPSf6axzxoPgrZuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.521 [XNIO-1 task-1] eOXAGPPPSf6axzxoPgrZuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:40.521 [XNIO-1 task-1] eOXAGPPPSf6axzxoPgrZuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4912ce82 +18:00:40.522 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4d9e5853 +18:00:40.530 [XNIO-1 task-1] 4MV2T47yTWuJ1JZd4su7vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4912ce82, base path is set to: null +18:00:40.530 [XNIO-1 task-1] 4MV2T47yTWuJ1JZd4su7vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.530 [XNIO-1 task-1] 4MV2T47yTWuJ1JZd4su7vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.530 [XNIO-1 task-1] 4MV2T47yTWuJ1JZd4su7vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4912ce82, base path is set to: null +18:00:40.531 [XNIO-1 task-1] 4MV2T47yTWuJ1JZd4su7vg DEBUG com.networknt.schema.TypeValidator debug - validate( "4912ce82", "4912ce82", userId) +18:00:40.542 [XNIO-1 task-1] cxrXtMmpT6O9_3wdVgG3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.542 [XNIO-1 task-1] cxrXtMmpT6O9_3wdVgG3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.542 [XNIO-1 task-1] cxrXtMmpT6O9_3wdVgG3_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.584 [XNIO-1 task-1] YWfhmswWTTaE08s0SEcjyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.584 [XNIO-1 task-1] YWfhmswWTTaE08s0SEcjyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.585 [XNIO-1 task-1] YWfhmswWTTaE08s0SEcjyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.585 [XNIO-1 task-1] YWfhmswWTTaE08s0SEcjyw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:40.606 [XNIO-1 task-1] j6q7_EdOTd-1_YxjfrvAZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.606 [XNIO-1 task-1] j6q7_EdOTd-1_YxjfrvAZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.606 [XNIO-1 task-1] j6q7_EdOTd-1_YxjfrvAZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.723 [XNIO-1 task-1] LuGnae0xSk24T7fUnAhRnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.723 [XNIO-1 task-1] LuGnae0xSk24T7fUnAhRnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.725 [XNIO-1 task-1] LuGnae0xSk24T7fUnAhRnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.727 [XNIO-1 task-1] LuGnae0xSk24T7fUnAhRnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:40.748 [XNIO-1 task-1] 63hTHnkpRmif00UfwySbfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.749 [XNIO-1 task-1] 63hTHnkpRmif00UfwySbfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.749 [XNIO-1 task-1] 63hTHnkpRmif00UfwySbfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.751 [XNIO-1 task-1] 63hTHnkpRmif00UfwySbfQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:40.757 [XNIO-1 task-1] HUhCUH26RW2EPZoDSqMWtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:40.757 [XNIO-1 task-1] HUhCUH26RW2EPZoDSqMWtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:40.757 [XNIO-1 task-1] HUhCUH26RW2EPZoDSqMWtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:40.757 [XNIO-1 task-1] HUhCUH26RW2EPZoDSqMWtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:40.762 [XNIO-1 task-1] t5a67_05Sxusme1-cHrAEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:40.762 [XNIO-1 task-1] t5a67_05Sxusme1-cHrAEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.763 [XNIO-1 task-1] t5a67_05Sxusme1-cHrAEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:40.775 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5f653c7c, base path is set to: null +18:00:40.775 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.776 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.776 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:40.776 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/5f653c7c, base path is set to: null +18:00:40.777 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG com.networknt.schema.TypeValidator debug - validate( "5f653c7c", "5f653c7c", userId) +18:00:40.777 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7f16cacd-f0cc-4221-94e5-6a01bcbaeb85","newPassword":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPasswordConfirm":"4ef1ce68-dbcf-4cc0-af0b-54562639165d"}, {"password":"7f16cacd-f0cc-4221-94e5-6a01bcbaeb85","newPassword":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPasswordConfirm":"4ef1ce68-dbcf-4cc0-af0b-54562639165d"}, requestBody) +18:00:40.777 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG com.networknt.schema.TypeValidator debug - validate( "4ef1ce68-dbcf-4cc0-af0b-54562639165d", {"password":"7f16cacd-f0cc-4221-94e5-6a01bcbaeb85","newPassword":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPasswordConfirm":"4ef1ce68-dbcf-4cc0-af0b-54562639165d"}, requestBody.newPasswordConfirm) +18:00:40.778 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG com.networknt.schema.TypeValidator debug - validate( "7f16cacd-f0cc-4221-94e5-6a01bcbaeb85", {"password":"7f16cacd-f0cc-4221-94e5-6a01bcbaeb85","newPassword":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPasswordConfirm":"4ef1ce68-dbcf-4cc0-af0b-54562639165d"}, requestBody.password) +18:00:40.778 [XNIO-1 task-1] _VGVGn6nRRyEl7TtIpERDg DEBUG com.networknt.schema.TypeValidator debug - validate( "4ef1ce68-dbcf-4cc0-af0b-54562639165d", {"password":"7f16cacd-f0cc-4221-94e5-6a01bcbaeb85","newPassword":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPasswordConfirm":"4ef1ce68-dbcf-4cc0-af0b-54562639165d"}, requestBody.newPassword) +18:00:40.864 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/331614f7, base path is set to: null +18:00:40.864 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.866 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.866 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:40.867 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/331614f7, base path is set to: null +18:00:40.869 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:40.870 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"24816878-8a85-490e-9299-0952ada72616","newPassword":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPasswordConfirm":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35"}, {"password":"24816878-8a85-490e-9299-0952ada72616","newPassword":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPasswordConfirm":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35"}, requestBody) +18:00:40.870 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG com.networknt.schema.TypeValidator debug - validate( "bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35", {"password":"24816878-8a85-490e-9299-0952ada72616","newPassword":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPasswordConfirm":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35"}, requestBody.newPasswordConfirm) +18:00:40.870 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG com.networknt.schema.TypeValidator debug - validate( "24816878-8a85-490e-9299-0952ada72616", {"password":"24816878-8a85-490e-9299-0952ada72616","newPassword":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPasswordConfirm":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35"}, requestBody.password) +18:00:40.870 [XNIO-1 task-1] pZI4c2_nTIG5CWPqk17yJw DEBUG com.networknt.schema.TypeValidator debug - validate( "bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35", {"password":"24816878-8a85-490e-9299-0952ada72616","newPassword":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPasswordConfirm":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35"}, requestBody.newPassword) +18:00:40.890 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ad37901c, base path is set to: null +18:00:40.890 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.890 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.890 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:40.891 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ad37901c, base path is set to: null +18:00:40.891 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG com.networknt.schema.TypeValidator debug - validate( "ad37901c", "ad37901c", userId) +18:00:40.894 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"991801be-5937-4dc5-bfff-4fe20909fbd8","newPassword":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPasswordConfirm":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a"}, {"password":"991801be-5937-4dc5-bfff-4fe20909fbd8","newPassword":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPasswordConfirm":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a"}, requestBody) +18:00:40.894 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG com.networknt.schema.TypeValidator debug - validate( "8ba6aedb-be59-4fe4-b2f5-689215fa0c1a", {"password":"991801be-5937-4dc5-bfff-4fe20909fbd8","newPassword":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPasswordConfirm":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a"}, requestBody.newPasswordConfirm) +18:00:40.896 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG com.networknt.schema.TypeValidator debug - validate( "991801be-5937-4dc5-bfff-4fe20909fbd8", {"password":"991801be-5937-4dc5-bfff-4fe20909fbd8","newPassword":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPasswordConfirm":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a"}, requestBody.password) +18:00:40.896 [XNIO-1 task-1] zb1kWvexRzy9UPZYQ_ELKw DEBUG com.networknt.schema.TypeValidator debug - validate( "8ba6aedb-be59-4fe4-b2f5-689215fa0c1a", {"password":"991801be-5937-4dc5-bfff-4fe20909fbd8","newPassword":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPasswordConfirm":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a"}, requestBody.newPassword) +18:00:40.937 [XNIO-1 task-1] MYyPDruVTWCw08j-Pqt4FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:40.937 [XNIO-1 task-1] MYyPDruVTWCw08j-Pqt4FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.938 [XNIO-1 task-1] MYyPDruVTWCw08j-Pqt4FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:40.938 [XNIO-1 task-1] MYyPDruVTWCw08j-Pqt4FA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:40.967 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ad37901c, base path is set to: null +18:00:40.967 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:40.967 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:40.967 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:40.968 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ad37901c, base path is set to: null +18:00:40.968 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ad37901c", "ad37901c", userId) +18:00:40.969 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPassword":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPasswordConfirm":"4fbc96aa-21fa-4d6e-a919-0359fa125acf"}, {"password":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPassword":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPasswordConfirm":"4fbc96aa-21fa-4d6e-a919-0359fa125acf"}, requestBody) +18:00:40.972 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4fbc96aa-21fa-4d6e-a919-0359fa125acf", {"password":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPassword":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPasswordConfirm":"4fbc96aa-21fa-4d6e-a919-0359fa125acf"}, requestBody.newPasswordConfirm) +18:00:40.972 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ba6aedb-be59-4fe4-b2f5-689215fa0c1a", {"password":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPassword":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPasswordConfirm":"4fbc96aa-21fa-4d6e-a919-0359fa125acf"}, requestBody.password) +18:00:40.972 [XNIO-1 task-1] fxT0kNK8SWiIqd4UrEyyTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4fbc96aa-21fa-4d6e-a919-0359fa125acf", {"password":"8ba6aedb-be59-4fe4-b2f5-689215fa0c1a","newPassword":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPasswordConfirm":"4fbc96aa-21fa-4d6e-a919-0359fa125acf"}, requestBody.newPassword) +18:00:40.996 [XNIO-1 task-1] oaOwLg3oQS2GSl51L77mHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.000 [XNIO-1 task-1] oaOwLg3oQS2GSl51L77mHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.001 [XNIO-1 task-1] oaOwLg3oQS2GSl51L77mHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.017 [XNIO-1 task-1] tLpCPPCFRQucazYAuM8YKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:41.017 [XNIO-1 task-1] tLpCPPCFRQucazYAuM8YKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.018 [XNIO-1 task-1] tLpCPPCFRQucazYAuM8YKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.018 [XNIO-1 task-1] tLpCPPCFRQucazYAuM8YKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:41.019 [XNIO-1 task-1] tLpCPPCFRQucazYAuM8YKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:41.044 [XNIO-1 task-1] 4nGmlrAaTH6iNEiwUDRffw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.045 [XNIO-1 task-1] 4nGmlrAaTH6iNEiwUDRffw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.062 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1b04fec5-e240-45a1-9d5b-78bfb35f4739 +18:00:41.062 [XNIO-1 task-1] 4nGmlrAaTH6iNEiwUDRffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.063 [XNIO-1 task-1] 4nGmlrAaTH6iNEiwUDRffw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.063 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a3665036 +18:00:41.064 [XNIO-1 task-1] 4nGmlrAaTH6iNEiwUDRffw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.078 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/331614f7 +18:00:41.078 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.079 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.079 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:41.079 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/331614f7 +18:00:41.080 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPassword":"23ff6117-809d-44ce-896d-63cf983beffb","newPasswordConfirm":"23ff6117-809d-44ce-896d-63cf983beffb"}, {"password":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPassword":"23ff6117-809d-44ce-896d-63cf983beffb","newPasswordConfirm":"23ff6117-809d-44ce-896d-63cf983beffb"}, requestBody) +18:00:41.080 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPassword":"23ff6117-809d-44ce-896d-63cf983beffb","newPasswordConfirm":"23ff6117-809d-44ce-896d-63cf983beffb"}, {"password":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPassword":"23ff6117-809d-44ce-896d-63cf983beffb","newPasswordConfirm":"23ff6117-809d-44ce-896d-63cf983beffb"}, requestBody) +18:00:41.080 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG com.networknt.schema.FormatValidator debug - validate( "23ff6117-809d-44ce-896d-63cf983beffb", {"password":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPassword":"23ff6117-809d-44ce-896d-63cf983beffb","newPasswordConfirm":"23ff6117-809d-44ce-896d-63cf983beffb"}, requestBody.newPasswordConfirm) +18:00:41.080 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG com.networknt.schema.FormatValidator debug - validate( "bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35", {"password":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPassword":"23ff6117-809d-44ce-896d-63cf983beffb","newPasswordConfirm":"23ff6117-809d-44ce-896d-63cf983beffb"}, requestBody.password) +18:00:41.080 [XNIO-1 task-1] ezA9EapdRGyWwIELj6DwTw DEBUG com.networknt.schema.FormatValidator debug - validate( "23ff6117-809d-44ce-896d-63cf983beffb", {"password":"bfb2727f-7a39-4d3f-b4b5-eb4c2a686a35","newPassword":"23ff6117-809d-44ce-896d-63cf983beffb","newPasswordConfirm":"23ff6117-809d-44ce-896d-63cf983beffb"}, requestBody.newPassword) +18:00:41.108 [XNIO-1 task-1] Sq745isUTGO84g5aN5LJxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.108 [XNIO-1 task-1] Sq745isUTGO84g5aN5LJxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.108 [XNIO-1 task-1] Sq745isUTGO84g5aN5LJxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.164 [XNIO-1 task-1] XYv6MchPSM2FjsHZ1R8jWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.165 [XNIO-1 task-1] XYv6MchPSM2FjsHZ1R8jWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.165 [XNIO-1 task-1] XYv6MchPSM2FjsHZ1R8jWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.170 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4d9e5853 +18:00:41.189 [XNIO-1 task-1] S14rjzz0Q6eAFeZiqpLyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.189 [XNIO-1 task-1] S14rjzz0Q6eAFeZiqpLyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.189 [XNIO-1 task-1] S14rjzz0Q6eAFeZiqpLyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.190 [XNIO-1 task-1] S14rjzz0Q6eAFeZiqpLyyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:41.211 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ad37901c +18:00:41.211 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.211 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.211 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:41.212 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ad37901c +18:00:41.213 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPassword":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b","newPasswordConfirm":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b"}, {"password":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPassword":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b","newPasswordConfirm":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b"}, requestBody) +18:00:41.213 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPassword":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b","newPasswordConfirm":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b"}, {"password":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPassword":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b","newPasswordConfirm":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b"}, requestBody) +18:00:41.213 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG com.networknt.schema.FormatValidator debug - validate( "125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b", {"password":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPassword":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b","newPasswordConfirm":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b"}, requestBody.newPasswordConfirm) +18:00:41.217 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG com.networknt.schema.FormatValidator debug - validate( "4fbc96aa-21fa-4d6e-a919-0359fa125acf", {"password":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPassword":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b","newPasswordConfirm":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b"}, requestBody.password) +18:00:41.217 [XNIO-1 task-1] 0wJVFwQARLeGujJdFGcUqg DEBUG com.networknt.schema.FormatValidator debug - validate( "125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b", {"password":"4fbc96aa-21fa-4d6e-a919-0359fa125acf","newPassword":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b","newPasswordConfirm":"125e0b6f-e2b3-4cb1-a28a-d94ea9f0cd3b"}, requestBody.newPassword) +18:00:41.269 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5f653c7c +18:00:41.270 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.270 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.270 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:41.271 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/5f653c7c +18:00:41.272 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPassword":"d99768c1-6636-449c-bb60-7c46445c31ca","newPasswordConfirm":"d99768c1-6636-449c-bb60-7c46445c31ca"}, {"password":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPassword":"d99768c1-6636-449c-bb60-7c46445c31ca","newPasswordConfirm":"d99768c1-6636-449c-bb60-7c46445c31ca"}, requestBody) +18:00:41.272 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPassword":"d99768c1-6636-449c-bb60-7c46445c31ca","newPasswordConfirm":"d99768c1-6636-449c-bb60-7c46445c31ca"}, {"password":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPassword":"d99768c1-6636-449c-bb60-7c46445c31ca","newPasswordConfirm":"d99768c1-6636-449c-bb60-7c46445c31ca"}, requestBody) +18:00:41.272 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG com.networknt.schema.FormatValidator debug - validate( "d99768c1-6636-449c-bb60-7c46445c31ca", {"password":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPassword":"d99768c1-6636-449c-bb60-7c46445c31ca","newPasswordConfirm":"d99768c1-6636-449c-bb60-7c46445c31ca"}, requestBody.newPasswordConfirm) +18:00:41.272 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG com.networknt.schema.FormatValidator debug - validate( "4ef1ce68-dbcf-4cc0-af0b-54562639165d", {"password":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPassword":"d99768c1-6636-449c-bb60-7c46445c31ca","newPasswordConfirm":"d99768c1-6636-449c-bb60-7c46445c31ca"}, requestBody.password) +18:00:41.272 [XNIO-1 task-1] d9ZeAADJSCqsSNC2HW9uow DEBUG com.networknt.schema.FormatValidator debug - validate( "d99768c1-6636-449c-bb60-7c46445c31ca", {"password":"4ef1ce68-dbcf-4cc0-af0b-54562639165d","newPassword":"d99768c1-6636-449c-bb60-7c46445c31ca","newPasswordConfirm":"d99768c1-6636-449c-bb60-7c46445c31ca"}, requestBody.newPassword) +18:00:41.355 [XNIO-1 task-1] d3RMtT6RQj-eOSgs9-uI1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:41.355 [XNIO-1 task-1] d3RMtT6RQj-eOSgs9-uI1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.356 [XNIO-1 task-1] d3RMtT6RQj-eOSgs9-uI1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.356 [XNIO-1 task-1] d3RMtT6RQj-eOSgs9-uI1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:41.356 [XNIO-1 task-1] d3RMtT6RQj-eOSgs9-uI1g DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:41.380 [XNIO-1 task-1] BFbsONCdQkKnHNJ3nkUeIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fc710211 +18:00:41.380 [XNIO-1 task-1] BFbsONCdQkKnHNJ3nkUeIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.381 [XNIO-1 task-1] BFbsONCdQkKnHNJ3nkUeIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.381 [XNIO-1 task-1] BFbsONCdQkKnHNJ3nkUeIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fc710211 +18:00:41.458 [XNIO-1 task-1] 7J49-Mk3QL2S5qUfgE7wmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.458 [XNIO-1 task-1] 7J49-Mk3QL2S5qUfgE7wmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.458 [XNIO-1 task-1] 7J49-Mk3QL2S5qUfgE7wmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.510 [XNIO-1 task-1] 10hjRY4HRdStJgscONbCnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e63db85, base path is set to: null +18:00:41.511 [XNIO-1 task-1] 10hjRY4HRdStJgscONbCnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.511 [XNIO-1 task-1] 10hjRY4HRdStJgscONbCnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.511 [XNIO-1 task-1] 10hjRY4HRdStJgscONbCnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e63db85, base path is set to: null +18:00:41.512 [XNIO-1 task-1] 10hjRY4HRdStJgscONbCnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0e63db85", "0e63db85", userId) +18:00:41.516 [XNIO-1 task-1] CValpP76T_O-KtFcDpnb9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f653c7c +18:00:41.516 [XNIO-1 task-1] CValpP76T_O-KtFcDpnb9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.516 [XNIO-1 task-1] CValpP76T_O-KtFcDpnb9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.516 [XNIO-1 task-1] CValpP76T_O-KtFcDpnb9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5f653c7c +18:00:41.540 [XNIO-1 task-1] 71JB-igJSsywusrdUk6iIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/598c6e7e, base path is set to: null +18:00:41.540 [XNIO-1 task-1] 71JB-igJSsywusrdUk6iIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.540 [XNIO-1 task-1] 71JB-igJSsywusrdUk6iIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.540 [XNIO-1 task-1] 71JB-igJSsywusrdUk6iIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/598c6e7e, base path is set to: null +18:00:41.541 [XNIO-1 task-1] 71JB-igJSsywusrdUk6iIA DEBUG com.networknt.schema.TypeValidator debug - validate( "598c6e7e", "598c6e7e", userId) +18:00:41.553 [XNIO-1 task-1] P5FjYVvTQHmt2ISBUmh8Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.553 [XNIO-1 task-1] P5FjYVvTQHmt2ISBUmh8Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.553 [XNIO-1 task-1] P5FjYVvTQHmt2ISBUmh8Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.601 [XNIO-1 task-1] 8yC7uVZIQlahJvKQTKBmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ad37901c +18:00:41.601 [XNIO-1 task-1] 8yC7uVZIQlahJvKQTKBmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.601 [XNIO-1 task-1] 8yC7uVZIQlahJvKQTKBmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.601 [XNIO-1 task-1] 8yC7uVZIQlahJvKQTKBmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ad37901c +18:00:41.605 [XNIO-1 task-1] NKgFEewrT4aUwZrKNT0w9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.606 [XNIO-1 task-1] NKgFEewrT4aUwZrKNT0w9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.606 [XNIO-1 task-1] NKgFEewrT4aUwZrKNT0w9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.621 [XNIO-1 task-1] KqOABDjkQ3Cz6qLe7YwBaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.621 [XNIO-1 task-1] KqOABDjkQ3Cz6qLe7YwBaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.621 [XNIO-1 task-1] KqOABDjkQ3Cz6qLe7YwBaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.622 [XNIO-1 task-1] KqOABDjkQ3Cz6qLe7YwBaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:41.637 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/331614f7, base path is set to: null +18:00:41.638 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.638 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.638 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:41.638 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/331614f7, base path is set to: null +18:00:41.639 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:41.639 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"23ff6117-809d-44ce-896d-63cf983beffb","newPassword":"518d1a7b-4fea-4056-bda4-281e890db245","newPasswordConfirm":"518d1a7b-4fea-4056-bda4-281e890db245"}, {"password":"23ff6117-809d-44ce-896d-63cf983beffb","newPassword":"518d1a7b-4fea-4056-bda4-281e890db245","newPasswordConfirm":"518d1a7b-4fea-4056-bda4-281e890db245"}, requestBody) +18:00:41.640 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG com.networknt.schema.TypeValidator debug - validate( "518d1a7b-4fea-4056-bda4-281e890db245", {"password":"23ff6117-809d-44ce-896d-63cf983beffb","newPassword":"518d1a7b-4fea-4056-bda4-281e890db245","newPasswordConfirm":"518d1a7b-4fea-4056-bda4-281e890db245"}, requestBody.newPasswordConfirm) +18:00:41.640 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG com.networknt.schema.TypeValidator debug - validate( "23ff6117-809d-44ce-896d-63cf983beffb", {"password":"23ff6117-809d-44ce-896d-63cf983beffb","newPassword":"518d1a7b-4fea-4056-bda4-281e890db245","newPasswordConfirm":"518d1a7b-4fea-4056-bda4-281e890db245"}, requestBody.password) +18:00:41.640 [XNIO-1 task-1] _SXbDzcERrOJtr3GAbGfZA DEBUG com.networknt.schema.TypeValidator debug - validate( "518d1a7b-4fea-4056-bda4-281e890db245", {"password":"23ff6117-809d-44ce-896d-63cf983beffb","newPassword":"518d1a7b-4fea-4056-bda4-281e890db245","newPasswordConfirm":"518d1a7b-4fea-4056-bda4-281e890db245"}, requestBody.newPassword) +18:00:41.678 [XNIO-1 task-1] MPPfM3s7Qzell0jSnVxEGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.679 [XNIO-1 task-1] MPPfM3s7Qzell0jSnVxEGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.679 [XNIO-1 task-1] MPPfM3s7Qzell0jSnVxEGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.699 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a3665036 +18:00:41.708 [XNIO-1 task-1] oqaWQMJZQfKPlk2XUSjSTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:41.708 [XNIO-1 task-1] oqaWQMJZQfKPlk2XUSjSTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.708 [XNIO-1 task-1] oqaWQMJZQfKPlk2XUSjSTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.708 [XNIO-1 task-1] oqaWQMJZQfKPlk2XUSjSTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:41.709 [XNIO-1 task-1] oqaWQMJZQfKPlk2XUSjSTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:41.713 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3ab83f3d +18:00:41.713 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.713 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.713 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:41.714 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3ab83f3d +18:00:41.715 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ffccfa64-7fc1-4fe1-bd0c-fc03591c376e","newPassword":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPasswordConfirm":"8a564a00-4be7-4f3f-a550-0177bd5935e1"}, {"password":"ffccfa64-7fc1-4fe1-bd0c-fc03591c376e","newPassword":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPasswordConfirm":"8a564a00-4be7-4f3f-a550-0177bd5935e1"}, requestBody) +18:00:41.715 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ffccfa64-7fc1-4fe1-bd0c-fc03591c376e","newPassword":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPasswordConfirm":"8a564a00-4be7-4f3f-a550-0177bd5935e1"}, {"password":"ffccfa64-7fc1-4fe1-bd0c-fc03591c376e","newPassword":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPasswordConfirm":"8a564a00-4be7-4f3f-a550-0177bd5935e1"}, requestBody) +18:00:41.715 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG com.networknt.schema.FormatValidator debug - validate( "8a564a00-4be7-4f3f-a550-0177bd5935e1", {"password":"ffccfa64-7fc1-4fe1-bd0c-fc03591c376e","newPassword":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPasswordConfirm":"8a564a00-4be7-4f3f-a550-0177bd5935e1"}, requestBody.newPasswordConfirm) +18:00:41.715 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG com.networknt.schema.FormatValidator debug - validate( "ffccfa64-7fc1-4fe1-bd0c-fc03591c376e", {"password":"ffccfa64-7fc1-4fe1-bd0c-fc03591c376e","newPassword":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPasswordConfirm":"8a564a00-4be7-4f3f-a550-0177bd5935e1"}, requestBody.password) +18:00:41.715 [XNIO-1 task-1] Ramj466zReuel4TAy1ua1w DEBUG com.networknt.schema.FormatValidator debug - validate( "8a564a00-4be7-4f3f-a550-0177bd5935e1", {"password":"ffccfa64-7fc1-4fe1-bd0c-fc03591c376e","newPassword":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPasswordConfirm":"8a564a00-4be7-4f3f-a550-0177bd5935e1"}, requestBody.newPassword) +18:00:41.777 [XNIO-1 task-1] NaX4K0ubRo2Lue60uqR7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:41.777 [XNIO-1 task-1] NaX4K0ubRo2Lue60uqR7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.777 [XNIO-1 task-1] NaX4K0ubRo2Lue60uqR7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.777 [XNIO-1 task-1] NaX4K0ubRo2Lue60uqR7VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:41.789 [XNIO-1 task-1] h1MKZEm6QlCHVwY3H17hiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.790 [XNIO-1 task-1] h1MKZEm6QlCHVwY3H17hiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.790 [XNIO-1 task-1] h1MKZEm6QlCHVwY3H17hiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.839 [XNIO-1 task-1] M-YrvfgKTJmNWK24i0Diww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.839 [XNIO-1 task-1] M-YrvfgKTJmNWK24i0Diww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.839 [XNIO-1 task-1] M-YrvfgKTJmNWK24i0Diww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.850 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:20146430 +18:00:41.852 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:20146430 +18:00:41.863 [XNIO-1 task-1] AQIFKX_wSHu_4lDC1z6luQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3ab83f3d +18:00:41.863 [XNIO-1 task-1] AQIFKX_wSHu_4lDC1z6luQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:41.863 [XNIO-1 task-1] AQIFKX_wSHu_4lDC1z6luQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:41.863 [XNIO-1 task-1] AQIFKX_wSHu_4lDC1z6luQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3ab83f3d +18:00:41.870 [XNIO-1 task-1] pH0t5ri2QVyr2_710P9TQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.870 [XNIO-1 task-1] pH0t5ri2QVyr2_710P9TQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.871 [XNIO-1 task-1] pH0t5ri2QVyr2_710P9TQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.895 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4ca88a6a-f37c-44a6-a8b1-e42905139029 +18:00:41.902 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/331614f7, base path is set to: null +18:00:41.902 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.902 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.902 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:41.902 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/331614f7, base path is set to: null +18:00:41.903 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:41.903 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"518d1a7b-4fea-4056-bda4-281e890db245","newPassword":"aa989466-7036-4f03-9a77-e3d9233632f9","newPasswordConfirm":"aa989466-7036-4f03-9a77-e3d9233632f9"}, {"password":"518d1a7b-4fea-4056-bda4-281e890db245","newPassword":"aa989466-7036-4f03-9a77-e3d9233632f9","newPasswordConfirm":"aa989466-7036-4f03-9a77-e3d9233632f9"}, requestBody) +18:00:41.903 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG com.networknt.schema.TypeValidator debug - validate( "aa989466-7036-4f03-9a77-e3d9233632f9", {"password":"518d1a7b-4fea-4056-bda4-281e890db245","newPassword":"aa989466-7036-4f03-9a77-e3d9233632f9","newPasswordConfirm":"aa989466-7036-4f03-9a77-e3d9233632f9"}, requestBody.newPasswordConfirm) +18:00:41.903 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG com.networknt.schema.TypeValidator debug - validate( "518d1a7b-4fea-4056-bda4-281e890db245", {"password":"518d1a7b-4fea-4056-bda4-281e890db245","newPassword":"aa989466-7036-4f03-9a77-e3d9233632f9","newPasswordConfirm":"aa989466-7036-4f03-9a77-e3d9233632f9"}, requestBody.password) +18:00:41.903 [XNIO-1 task-1] pKzQ-oV1RhKqYgRzhgCmZA DEBUG com.networknt.schema.TypeValidator debug - validate( "aa989466-7036-4f03-9a77-e3d9233632f9", {"password":"518d1a7b-4fea-4056-bda4-281e890db245","newPassword":"aa989466-7036-4f03-9a77-e3d9233632f9","newPasswordConfirm":"aa989466-7036-4f03-9a77-e3d9233632f9"}, requestBody.newPassword) +18:00:41.924 [XNIO-1 task-1] FASrssCVSRye351nlADkBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/20146430, base path is set to: null +18:00:41.925 [XNIO-1 task-1] FASrssCVSRye351nlADkBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.925 [XNIO-1 task-1] FASrssCVSRye351nlADkBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:41.925 [XNIO-1 task-1] FASrssCVSRye351nlADkBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/20146430, base path is set to: null +18:00:41.925 [XNIO-1 task-1] FASrssCVSRye351nlADkBw DEBUG com.networknt.schema.TypeValidator debug - validate( "20146430", "20146430", userId) +18:00:41.936 [XNIO-1 task-1] sDpx_tWEQ2CMwwSgDflKCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.936 [XNIO-1 task-1] sDpx_tWEQ2CMwwSgDflKCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.936 [XNIO-1 task-1] sDpx_tWEQ2CMwwSgDflKCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.946 [XNIO-1 task-1] JrcCOibtREK4jMQJoeT0yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:41.946 [XNIO-1 task-1] JrcCOibtREK4jMQJoeT0yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:41.946 [XNIO-1 task-1] JrcCOibtREK4jMQJoeT0yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.005 [XNIO-1 task-1] FgosVXgeTA-d7EWxNCVTjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.005 [XNIO-1 task-1] FgosVXgeTA-d7EWxNCVTjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.006 [XNIO-1 task-1] FgosVXgeTA-d7EWxNCVTjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.019 [XNIO-1 task-1] Bhw6kkzaTDmQtQ9Y14yy2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b9b62e69, base path is set to: null +18:00:42.020 [XNIO-1 task-1] Bhw6kkzaTDmQtQ9Y14yy2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.020 [XNIO-1 task-1] Bhw6kkzaTDmQtQ9Y14yy2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.020 [XNIO-1 task-1] Bhw6kkzaTDmQtQ9Y14yy2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b9b62e69, base path is set to: null +18:00:42.022 [XNIO-1 task-1] Bhw6kkzaTDmQtQ9Y14yy2g DEBUG com.networknt.schema.TypeValidator debug - validate( "b9b62e69", "b9b62e69", userId) +18:00:42.030 [XNIO-1 task-1] P6svbYS9S7WZT7XxEoeQjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ad37901c +18:00:42.030 [XNIO-1 task-1] P6svbYS9S7WZT7XxEoeQjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.030 [XNIO-1 task-1] P6svbYS9S7WZT7XxEoeQjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.030 [XNIO-1 task-1] P6svbYS9S7WZT7XxEoeQjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ad37901c +18:00:42.043 [XNIO-1 task-1] 3aeJ_5JyTTiTaMCb2IlDfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.044 [XNIO-1 task-1] 3aeJ_5JyTTiTaMCb2IlDfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.044 [XNIO-1 task-1] 3aeJ_5JyTTiTaMCb2IlDfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.067 [XNIO-1 task-1] XOk_Gb4aSZ2kWOL69IkK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.067 [XNIO-1 task-1] XOk_Gb4aSZ2kWOL69IkK5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.067 [XNIO-1 task-1] XOk_Gb4aSZ2kWOL69IkK5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.068 [XNIO-1 task-1] XOk_Gb4aSZ2kWOL69IkK5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.081 [XNIO-1 task-1] pG4AgrdzS6S6Sfk6HRZeJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.081 [XNIO-1 task-1] pG4AgrdzS6S6Sfk6HRZeJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.081 [XNIO-1 task-1] pG4AgrdzS6S6Sfk6HRZeJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.096 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3ab83f3d, base path is set to: null +18:00:42.096 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.096 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.096 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:42.097 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3ab83f3d, base path is set to: null +18:00:42.097 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG com.networknt.schema.TypeValidator debug - validate( "3ab83f3d", "3ab83f3d", userId) +18:00:42.098 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPassword":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b","newPasswordConfirm":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b"}, {"password":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPassword":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b","newPasswordConfirm":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b"}, requestBody) +18:00:42.098 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG com.networknt.schema.TypeValidator debug - validate( "b1dfb777-fa27-4da2-bbac-ec4861e9cf3b", {"password":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPassword":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b","newPasswordConfirm":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b"}, requestBody.newPasswordConfirm) +18:00:42.098 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG com.networknt.schema.TypeValidator debug - validate( "8a564a00-4be7-4f3f-a550-0177bd5935e1", {"password":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPassword":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b","newPasswordConfirm":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b"}, requestBody.password) +18:00:42.098 [XNIO-1 task-1] YU5dgXSVTn23khNB3nqCxg DEBUG com.networknt.schema.TypeValidator debug - validate( "b1dfb777-fa27-4da2-bbac-ec4861e9cf3b", {"password":"8a564a00-4be7-4f3f-a550-0177bd5935e1","newPassword":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b","newPasswordConfirm":"b1dfb777-fa27-4da2-bbac-ec4861e9cf3b"}, requestBody.newPassword) +18:00:42.126 [XNIO-1 task-1] 58Qd9JOoRlu_GzFpMw6MnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3ab83f3d, base path is set to: null +18:00:42.126 [XNIO-1 task-1] 58Qd9JOoRlu_GzFpMw6MnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.126 [XNIO-1 task-1] 58Qd9JOoRlu_GzFpMw6MnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.126 [XNIO-1 task-1] 58Qd9JOoRlu_GzFpMw6MnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3ab83f3d, base path is set to: null +18:00:42.126 [XNIO-1 task-1] 58Qd9JOoRlu_GzFpMw6MnA DEBUG com.networknt.schema.TypeValidator debug - validate( "3ab83f3d", "3ab83f3d", userId) +18:00:42.136 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/331614f7 +18:00:42.136 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.136 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.136 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:42.137 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/331614f7 +18:00:42.137 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"aa989466-7036-4f03-9a77-e3d9233632f9","newPassword":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPasswordConfirm":"320c5c59-2764-401a-bee2-7bf47ea3f8d3"}, {"password":"aa989466-7036-4f03-9a77-e3d9233632f9","newPassword":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPasswordConfirm":"320c5c59-2764-401a-bee2-7bf47ea3f8d3"}, requestBody) +18:00:42.138 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"aa989466-7036-4f03-9a77-e3d9233632f9","newPassword":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPasswordConfirm":"320c5c59-2764-401a-bee2-7bf47ea3f8d3"}, {"password":"aa989466-7036-4f03-9a77-e3d9233632f9","newPassword":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPasswordConfirm":"320c5c59-2764-401a-bee2-7bf47ea3f8d3"}, requestBody) +18:00:42.138 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG com.networknt.schema.FormatValidator debug - validate( "320c5c59-2764-401a-bee2-7bf47ea3f8d3", {"password":"aa989466-7036-4f03-9a77-e3d9233632f9","newPassword":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPasswordConfirm":"320c5c59-2764-401a-bee2-7bf47ea3f8d3"}, requestBody.newPasswordConfirm) +18:00:42.138 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG com.networknt.schema.FormatValidator debug - validate( "aa989466-7036-4f03-9a77-e3d9233632f9", {"password":"aa989466-7036-4f03-9a77-e3d9233632f9","newPassword":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPasswordConfirm":"320c5c59-2764-401a-bee2-7bf47ea3f8d3"}, requestBody.password) +18:00:42.138 [XNIO-1 task-1] fclMUlq3QTiF1__5QTPrNg DEBUG com.networknt.schema.FormatValidator debug - validate( "320c5c59-2764-401a-bee2-7bf47ea3f8d3", {"password":"aa989466-7036-4f03-9a77-e3d9233632f9","newPassword":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPasswordConfirm":"320c5c59-2764-401a-bee2-7bf47ea3f8d3"}, requestBody.newPassword) +18:00:42.196 [XNIO-1 task-1] cxMVhMiwSi2Sf5eIfpO3Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.196 [XNIO-1 task-1] cxMVhMiwSi2Sf5eIfpO3Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.197 [XNIO-1 task-1] cxMVhMiwSi2Sf5eIfpO3Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.198 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:a3665036 +18:00:42.209 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b9b62e69 +18:00:42.209 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.209 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.209 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:42.210 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b9b62e69 +18:00:42.210 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d855149b-f0e1-41e0-b1ab-c9d78db0aaad","newPassword":"e373252e-c316-4ab2-924f-d617072cfc2e","newPasswordConfirm":"e373252e-c316-4ab2-924f-d617072cfc2e"}, {"password":"d855149b-f0e1-41e0-b1ab-c9d78db0aaad","newPassword":"e373252e-c316-4ab2-924f-d617072cfc2e","newPasswordConfirm":"e373252e-c316-4ab2-924f-d617072cfc2e"}, requestBody) +18:00:42.210 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d855149b-f0e1-41e0-b1ab-c9d78db0aaad","newPassword":"e373252e-c316-4ab2-924f-d617072cfc2e","newPasswordConfirm":"e373252e-c316-4ab2-924f-d617072cfc2e"}, {"password":"d855149b-f0e1-41e0-b1ab-c9d78db0aaad","newPassword":"e373252e-c316-4ab2-924f-d617072cfc2e","newPasswordConfirm":"e373252e-c316-4ab2-924f-d617072cfc2e"}, requestBody) +18:00:42.210 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG com.networknt.schema.FormatValidator debug - validate( "e373252e-c316-4ab2-924f-d617072cfc2e", {"password":"d855149b-f0e1-41e0-b1ab-c9d78db0aaad","newPassword":"e373252e-c316-4ab2-924f-d617072cfc2e","newPasswordConfirm":"e373252e-c316-4ab2-924f-d617072cfc2e"}, requestBody.newPasswordConfirm) +18:00:42.211 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG com.networknt.schema.FormatValidator debug - validate( "d855149b-f0e1-41e0-b1ab-c9d78db0aaad", {"password":"d855149b-f0e1-41e0-b1ab-c9d78db0aaad","newPassword":"e373252e-c316-4ab2-924f-d617072cfc2e","newPasswordConfirm":"e373252e-c316-4ab2-924f-d617072cfc2e"}, requestBody.password) +18:00:42.211 [XNIO-1 task-1] aBGWk_qFSeSL9qf5POOTHw DEBUG com.networknt.schema.FormatValidator debug - validate( "e373252e-c316-4ab2-924f-d617072cfc2e", {"password":"d855149b-f0e1-41e0-b1ab-c9d78db0aaad","newPassword":"e373252e-c316-4ab2-924f-d617072cfc2e","newPasswordConfirm":"e373252e-c316-4ab2-924f-d617072cfc2e"}, requestBody.newPassword) +18:00:42.235 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0e63db85 +18:00:42.235 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.235 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.235 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:42.236 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0e63db85 +18:00:42.236 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"727164e0-29b8-48c2-8d7b-da05b74e6934","newPassword":"9b1b0aad-7d89-403c-8632-6b0c30ef542b","newPasswordConfirm":"9b1b0aad-7d89-403c-8632-6b0c30ef542b"}, {"password":"727164e0-29b8-48c2-8d7b-da05b74e6934","newPassword":"9b1b0aad-7d89-403c-8632-6b0c30ef542b","newPasswordConfirm":"9b1b0aad-7d89-403c-8632-6b0c30ef542b"}, requestBody) +18:00:42.236 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"727164e0-29b8-48c2-8d7b-da05b74e6934","newPassword":"9b1b0aad-7d89-403c-8632-6b0c30ef542b","newPasswordConfirm":"9b1b0aad-7d89-403c-8632-6b0c30ef542b"}, {"password":"727164e0-29b8-48c2-8d7b-da05b74e6934","newPassword":"9b1b0aad-7d89-403c-8632-6b0c30ef542b","newPasswordConfirm":"9b1b0aad-7d89-403c-8632-6b0c30ef542b"}, requestBody) +18:00:42.236 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "9b1b0aad-7d89-403c-8632-6b0c30ef542b", {"password":"727164e0-29b8-48c2-8d7b-da05b74e6934","newPassword":"9b1b0aad-7d89-403c-8632-6b0c30ef542b","newPasswordConfirm":"9b1b0aad-7d89-403c-8632-6b0c30ef542b"}, requestBody.newPasswordConfirm) +18:00:42.236 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "727164e0-29b8-48c2-8d7b-da05b74e6934", {"password":"727164e0-29b8-48c2-8d7b-da05b74e6934","newPassword":"9b1b0aad-7d89-403c-8632-6b0c30ef542b","newPasswordConfirm":"9b1b0aad-7d89-403c-8632-6b0c30ef542b"}, requestBody.password) +18:00:42.237 [XNIO-1 task-1] nyj5_5wfQ5ewL-m_DtEG7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "9b1b0aad-7d89-403c-8632-6b0c30ef542b", {"password":"727164e0-29b8-48c2-8d7b-da05b74e6934","newPassword":"9b1b0aad-7d89-403c-8632-6b0c30ef542b","newPasswordConfirm":"9b1b0aad-7d89-403c-8632-6b0c30ef542b"}, requestBody.newPassword) +18:00:42.259 [XNIO-1 task-1] nxhGkFpvSUap2itbSECP_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.259 [XNIO-1 task-1] nxhGkFpvSUap2itbSECP_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.259 [XNIO-1 task-1] nxhGkFpvSUap2itbSECP_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.260 [XNIO-1 task-1] nxhGkFpvSUap2itbSECP_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.284 [XNIO-1 task-1] SIhwxXo9TX-v5vFzTsSSRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.284 [XNIO-1 task-1] SIhwxXo9TX-v5vFzTsSSRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.284 [XNIO-1 task-1] SIhwxXo9TX-v5vFzTsSSRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.303 [XNIO-1 task-1] SIhwxXo9TX-v5vFzTsSSRw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.314 [XNIO-1 task-1] bm0KxJykSQWm4TZCpG6H9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.314 [XNIO-1 task-1] bm0KxJykSQWm4TZCpG6H9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.315 [XNIO-1 task-1] bm0KxJykSQWm4TZCpG6H9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.331 [XNIO-1 task-1] laO873d5SDGlpbZkSG0U9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1719322 +18:00:42.332 [XNIO-1 task-1] laO873d5SDGlpbZkSG0U9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.332 [XNIO-1 task-1] laO873d5SDGlpbZkSG0U9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.332 [XNIO-1 task-1] laO873d5SDGlpbZkSG0U9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1719322 +18:00:42.340 [XNIO-1 task-1] _iIOKXeKRXu6s5Fc_htO1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.340 [XNIO-1 task-1] _iIOKXeKRXu6s5Fc_htO1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.341 [XNIO-1 task-1] _iIOKXeKRXu6s5Fc_htO1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.350 [XNIO-1 task-1] YYkiUduzTPKpvp8TBZvmEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:42.353 [XNIO-1 task-1] YYkiUduzTPKpvp8TBZvmEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.353 [XNIO-1 task-1] YYkiUduzTPKpvp8TBZvmEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.353 [XNIO-1 task-1] YYkiUduzTPKpvp8TBZvmEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:42.353 [XNIO-1 task-1] YYkiUduzTPKpvp8TBZvmEA DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:42.385 [XNIO-1 task-1] HWrghxIqQ-u2f6yqRtve1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.385 [XNIO-1 task-1] HWrghxIqQ-u2f6yqRtve1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.386 [XNIO-1 task-1] HWrghxIqQ-u2f6yqRtve1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.387 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:50f78e55-7b4c-44d9-8640-616cce711f44 +18:00:42.397 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5696d250 +18:00:42.398 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5696d250 +18:00:42.407 [XNIO-1 task-1] SrwCV1XqSZmKnxIH3A8pLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.407 [XNIO-1 task-1] SrwCV1XqSZmKnxIH3A8pLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.407 [XNIO-1 task-1] SrwCV1XqSZmKnxIH3A8pLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.408 [XNIO-1 task-1] SrwCV1XqSZmKnxIH3A8pLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:42.422 [XNIO-1 task-1] HZvEwDQWQLelWeyjrrG1NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6e8d7045, base path is set to: null +18:00:42.422 [XNIO-1 task-1] HZvEwDQWQLelWeyjrrG1NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.423 [XNIO-1 task-1] HZvEwDQWQLelWeyjrrG1NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.423 [XNIO-1 task-1] HZvEwDQWQLelWeyjrrG1NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6e8d7045, base path is set to: null +18:00:42.423 [XNIO-1 task-1] HZvEwDQWQLelWeyjrrG1NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e8d7045", "6e8d7045", userId) +18:00:42.432 [XNIO-1 task-1] fmno8tztREKBUc9UgDTofA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.432 [XNIO-1 task-1] fmno8tztREKBUc9UgDTofA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.432 [XNIO-1 task-1] fmno8tztREKBUc9UgDTofA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.433 [XNIO-1 task-1] fmno8tztREKBUc9UgDTofA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.447 [XNIO-1 task-1] n5awrynfQku-vjCdSG40eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.447 [XNIO-1 task-1] n5awrynfQku-vjCdSG40eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.447 [XNIO-1 task-1] n5awrynfQku-vjCdSG40eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.492 [XNIO-1 task-1] V5SmChWOTESiDeBtdYAA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:42.492 [XNIO-1 task-1] V5SmChWOTESiDeBtdYAA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.492 [XNIO-1 task-1] V5SmChWOTESiDeBtdYAA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.493 [XNIO-1 task-1] V5SmChWOTESiDeBtdYAA6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:42.498 [XNIO-1 task-1] W1b-KEgXQc-O0LzsO5BiAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.499 [XNIO-1 task-1] W1b-KEgXQc-O0LzsO5BiAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.500 [XNIO-1 task-1] W1b-KEgXQc-O0LzsO5BiAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.524 [XNIO-1 task-1] tjPQqdCcSYGKkBq_Ld_UAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.524 [XNIO-1 task-1] tjPQqdCcSYGKkBq_Ld_UAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.524 [XNIO-1 task-1] tjPQqdCcSYGKkBq_Ld_UAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.537 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f6f238af-30d4-451d-9b43-5771e416f0ba +18:00:42.538 [XNIO-1 task-1] 7uBm-xv9QLiUbq700peVxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.538 [XNIO-1 task-1] 7uBm-xv9QLiUbq700peVxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.539 [XNIO-1 task-1] 7uBm-xv9QLiUbq700peVxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.571 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f6f238af-30d4-451d-9b43-5771e416f0ba +18:00:42.577 [XNIO-1 task-1] nJekLEprSzymxNjPy1YJzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5696d250 +18:00:42.577 [XNIO-1 task-1] nJekLEprSzymxNjPy1YJzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.577 [XNIO-1 task-1] nJekLEprSzymxNjPy1YJzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.577 [XNIO-1 task-1] nJekLEprSzymxNjPy1YJzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5696d250 +18:00:42.578 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:5696d250 +18:00:42.589 [XNIO-1 task-1] RmrOdcXATgi9IefmZaX-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.589 [XNIO-1 task-1] RmrOdcXATgi9IefmZaX-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.590 [XNIO-1 task-1] RmrOdcXATgi9IefmZaX-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.631 [XNIO-1 task-1] vHJc6-4YRZ6cwJeN5M4DVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:42.631 [XNIO-1 task-1] vHJc6-4YRZ6cwJeN5M4DVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.631 [XNIO-1 task-1] vHJc6-4YRZ6cwJeN5M4DVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.632 [XNIO-1 task-1] vHJc6-4YRZ6cwJeN5M4DVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/331614f7 +18:00:42.641 [XNIO-1 task-1] p8FQSrUKSWekswlWbIDLQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.641 [XNIO-1 task-1] p8FQSrUKSWekswlWbIDLQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.642 [XNIO-1 task-1] p8FQSrUKSWekswlWbIDLQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.642 [XNIO-1 task-1] p8FQSrUKSWekswlWbIDLQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.643 [XNIO-1 task-1] p8FQSrUKSWekswlWbIDLQw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.644 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:00fae749 +18:00:42.654 [XNIO-1 task-1] V_uiakWMTTWslPHDeKvHKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.654 [XNIO-1 task-1] V_uiakWMTTWslPHDeKvHKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.655 [XNIO-1 task-1] V_uiakWMTTWslPHDeKvHKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.655 [XNIO-1 task-1] V_uiakWMTTWslPHDeKvHKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:42.665 [XNIO-1 task-1] 7uesvdiDQMy5Q4BgCHOUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e8d7045 +18:00:42.666 [XNIO-1 task-1] 7uesvdiDQMy5Q4BgCHOUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.666 [XNIO-1 task-1] 7uesvdiDQMy5Q4BgCHOUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.667 [XNIO-1 task-1] 7uesvdiDQMy5Q4BgCHOUYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6e8d7045 +18:00:42.682 [XNIO-1 task-1] REekq_U3RIWOiFfRUTBW7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5d540b51, base path is set to: null +18:00:42.682 [XNIO-1 task-1] REekq_U3RIWOiFfRUTBW7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.682 [XNIO-1 task-1] REekq_U3RIWOiFfRUTBW7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.682 [XNIO-1 task-1] REekq_U3RIWOiFfRUTBW7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5d540b51, base path is set to: null +18:00:42.683 [XNIO-1 task-1] REekq_U3RIWOiFfRUTBW7g DEBUG com.networknt.schema.TypeValidator debug - validate( "5d540b51", "5d540b51", userId) +18:00:42.693 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b79c68a8 +18:00:42.693 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.693 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.693 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:42.694 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b79c68a8 +18:00:42.696 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"506a84b6-efea-4965-a553-33dec2ebbc6f","newPassword":"b123f5fa-0d02-42dd-8174-3284ceb35aaa","newPasswordConfirm":"b123f5fa-0d02-42dd-8174-3284ceb35aaa"}, {"password":"506a84b6-efea-4965-a553-33dec2ebbc6f","newPassword":"b123f5fa-0d02-42dd-8174-3284ceb35aaa","newPasswordConfirm":"b123f5fa-0d02-42dd-8174-3284ceb35aaa"}, requestBody) +18:00:42.696 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"506a84b6-efea-4965-a553-33dec2ebbc6f","newPassword":"b123f5fa-0d02-42dd-8174-3284ceb35aaa","newPasswordConfirm":"b123f5fa-0d02-42dd-8174-3284ceb35aaa"}, {"password":"506a84b6-efea-4965-a553-33dec2ebbc6f","newPassword":"b123f5fa-0d02-42dd-8174-3284ceb35aaa","newPasswordConfirm":"b123f5fa-0d02-42dd-8174-3284ceb35aaa"}, requestBody) +18:00:42.696 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG com.networknt.schema.FormatValidator debug - validate( "b123f5fa-0d02-42dd-8174-3284ceb35aaa", {"password":"506a84b6-efea-4965-a553-33dec2ebbc6f","newPassword":"b123f5fa-0d02-42dd-8174-3284ceb35aaa","newPasswordConfirm":"b123f5fa-0d02-42dd-8174-3284ceb35aaa"}, requestBody.newPasswordConfirm) +18:00:42.696 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG com.networknt.schema.FormatValidator debug - validate( "506a84b6-efea-4965-a553-33dec2ebbc6f", {"password":"506a84b6-efea-4965-a553-33dec2ebbc6f","newPassword":"b123f5fa-0d02-42dd-8174-3284ceb35aaa","newPasswordConfirm":"b123f5fa-0d02-42dd-8174-3284ceb35aaa"}, requestBody.password) +18:00:42.696 [XNIO-1 task-1] rcJU0csQS06ATvp2Xr8E4A DEBUG com.networknt.schema.FormatValidator debug - validate( "b123f5fa-0d02-42dd-8174-3284ceb35aaa", {"password":"506a84b6-efea-4965-a553-33dec2ebbc6f","newPassword":"b123f5fa-0d02-42dd-8174-3284ceb35aaa","newPasswordConfirm":"b123f5fa-0d02-42dd-8174-3284ceb35aaa"}, requestBody.newPassword) +18:00:42.778 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/331614f7 +18:00:42.778 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.778 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.778 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:42.779 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/331614f7 +18:00:42.779 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPassword":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed","newPasswordConfirm":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed"}, {"password":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPassword":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed","newPasswordConfirm":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed"}, requestBody) +18:00:42.779 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPassword":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed","newPasswordConfirm":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed"}, {"password":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPassword":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed","newPasswordConfirm":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed"}, requestBody) +18:00:42.779 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG com.networknt.schema.FormatValidator debug - validate( "d0ce1c49-7307-46ff-ba37-6c914b2b58ed", {"password":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPassword":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed","newPasswordConfirm":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed"}, requestBody.newPasswordConfirm) +18:00:42.780 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG com.networknt.schema.FormatValidator debug - validate( "320c5c59-2764-401a-bee2-7bf47ea3f8d3", {"password":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPassword":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed","newPasswordConfirm":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed"}, requestBody.password) +18:00:42.780 [XNIO-1 task-1] tTiebAjuRgKr8ZdgkGOOMw DEBUG com.networknt.schema.FormatValidator debug - validate( "d0ce1c49-7307-46ff-ba37-6c914b2b58ed", {"password":"320c5c59-2764-401a-bee2-7bf47ea3f8d3","newPassword":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed","newPasswordConfirm":"d0ce1c49-7307-46ff-ba37-6c914b2b58ed"}, requestBody.newPassword) +18:00:42.785 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:00fae749 +18:00:42.809 [XNIO-1 task-1] 5P6xSH2rQ8q-0eXvz3omtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:42.809 [XNIO-1 task-1] 5P6xSH2rQ8q-0eXvz3omtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.809 [XNIO-1 task-1] 5P6xSH2rQ8q-0eXvz3omtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.809 [XNIO-1 task-1] 5P6xSH2rQ8q-0eXvz3omtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:42.819 [XNIO-1 task-1] Xlak2ZygRaOUf3zN6KBu4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.820 [XNIO-1 task-1] Xlak2ZygRaOUf3zN6KBu4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.821 [XNIO-1 task-1] Xlak2ZygRaOUf3zN6KBu4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.876 [XNIO-1 task-1] 0ZSQ_tY-S7iTR4_ItCVJMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.876 [XNIO-1 task-1] 0ZSQ_tY-S7iTR4_ItCVJMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.877 [XNIO-1 task-1] 0ZSQ_tY-S7iTR4_ItCVJMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.896 [XNIO-1 task-1] mhUA9iNoQo6BGeT4s-ILkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e63db85, base path is set to: null +18:00:42.896 [XNIO-1 task-1] mhUA9iNoQo6BGeT4s-ILkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.896 [XNIO-1 task-1] mhUA9iNoQo6BGeT4s-ILkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.897 [XNIO-1 task-1] mhUA9iNoQo6BGeT4s-ILkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0e63db85, base path is set to: null +18:00:42.897 [XNIO-1 task-1] mhUA9iNoQo6BGeT4s-ILkA DEBUG com.networknt.schema.TypeValidator debug - validate( "0e63db85", "0e63db85", userId) +18:00:42.904 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:791bc6aa-116d-40d9-9940-66c1f2b95b24 +18:00:42.908 [XNIO-1 task-1] fXHMshY7Rn-lrlKtf0zU-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9b62e69 +18:00:42.909 [XNIO-1 task-1] fXHMshY7Rn-lrlKtf0zU-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.909 [XNIO-1 task-1] fXHMshY7Rn-lrlKtf0zU-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.909 [XNIO-1 task-1] fXHMshY7Rn-lrlKtf0zU-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9b62e69 +18:00:42.923 [XNIO-1 task-1] mjl5eocNRmyQoOHhS03qdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1719322, base path is set to: null +18:00:42.923 [XNIO-1 task-1] mjl5eocNRmyQoOHhS03qdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.923 [XNIO-1 task-1] mjl5eocNRmyQoOHhS03qdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.924 [XNIO-1 task-1] mjl5eocNRmyQoOHhS03qdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1719322, base path is set to: null +18:00:42.924 [XNIO-1 task-1] mjl5eocNRmyQoOHhS03qdw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1719322", "c1719322", userId) +18:00:42.932 [XNIO-1 task-1] Bs2NRkn0QD68sniTvusWPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.940 [XNIO-1 task-1] Bs2NRkn0QD68sniTvusWPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.940 [XNIO-1 task-1] Bs2NRkn0QD68sniTvusWPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:42.951 [XNIO-1 task-1] -JOzDukqTHWlIPqsV6773Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1719322, base path is set to: null +18:00:42.951 [XNIO-1 task-1] -JOzDukqTHWlIPqsV6773Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:42.951 [XNIO-1 task-1] -JOzDukqTHWlIPqsV6773Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:42.952 [XNIO-1 task-1] -JOzDukqTHWlIPqsV6773Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1719322, base path is set to: null +18:00:42.952 [XNIO-1 task-1] -JOzDukqTHWlIPqsV6773Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c1719322", "c1719322", userId) +18:00:42.959 [XNIO-1 task-1] 7r4LtWm8TNm-WVGtxp_bZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.959 [XNIO-1 task-1] 7r4LtWm8TNm-WVGtxp_bZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.959 [XNIO-1 task-1] 7r4LtWm8TNm-WVGtxp_bZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.997 [XNIO-1 task-1] 95m_JI1jROSAr13hBzQ7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1719322 +18:00:42.997 [XNIO-1 task-1] 95m_JI1jROSAr13hBzQ7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:42.997 [XNIO-1 task-1] 95m_JI1jROSAr13hBzQ7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:42.997 [XNIO-1 task-1] 95m_JI1jROSAr13hBzQ7aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1719322 +18:00:43.003 [XNIO-1 task-1] MfF2miA4Rs6yNztozgX4mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1719322, base path is set to: null +18:00:43.004 [XNIO-1 task-1] MfF2miA4Rs6yNztozgX4mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.004 [XNIO-1 task-1] MfF2miA4Rs6yNztozgX4mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.004 [XNIO-1 task-1] MfF2miA4Rs6yNztozgX4mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1719322, base path is set to: null +18:00:43.005 [XNIO-1 task-1] MfF2miA4Rs6yNztozgX4mw DEBUG com.networknt.schema.TypeValidator debug - validate( "c1719322", "c1719322", userId) +18:00:43.014 [XNIO-1 task-1] 5O5rThOwQGijmiBtx4LtjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1719322 +18:00:43.014 [XNIO-1 task-1] 5O5rThOwQGijmiBtx4LtjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.014 [XNIO-1 task-1] 5O5rThOwQGijmiBtx4LtjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.014 [XNIO-1 task-1] 5O5rThOwQGijmiBtx4LtjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1719322 +18:00:43.029 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a94e25f5, base path is set to: null +18:00:43.029 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.029 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.029 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:43.029 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a94e25f5, base path is set to: null +18:00:43.030 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a94e25f5", "a94e25f5", userId) +18:00:43.030 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b2688ced-a417-4033-bdb2-68934681851d","newPassword":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPasswordConfirm":"f908ca91-3299-4a74-a3b2-79ecdc8623d3"}, {"password":"b2688ced-a417-4033-bdb2-68934681851d","newPassword":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPasswordConfirm":"f908ca91-3299-4a74-a3b2-79ecdc8623d3"}, requestBody) +18:00:43.030 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f908ca91-3299-4a74-a3b2-79ecdc8623d3", {"password":"b2688ced-a417-4033-bdb2-68934681851d","newPassword":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPasswordConfirm":"f908ca91-3299-4a74-a3b2-79ecdc8623d3"}, requestBody.newPasswordConfirm) +18:00:43.030 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b2688ced-a417-4033-bdb2-68934681851d", {"password":"b2688ced-a417-4033-bdb2-68934681851d","newPassword":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPasswordConfirm":"f908ca91-3299-4a74-a3b2-79ecdc8623d3"}, requestBody.password) +18:00:43.031 [XNIO-1 task-1] TXyVgnXWSMCZzJevn_wvhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f908ca91-3299-4a74-a3b2-79ecdc8623d3", {"password":"b2688ced-a417-4033-bdb2-68934681851d","newPassword":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPasswordConfirm":"f908ca91-3299-4a74-a3b2-79ecdc8623d3"}, requestBody.newPassword) +18:00:43.053 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:06ab7a41-f73f-4d4b-a0b6-a3743a9762a6 +18:00:43.056 [XNIO-1 task-1] tKaREz14QkW5MD1eHAQorA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.057 [XNIO-1 task-1] tKaREz14QkW5MD1eHAQorA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.057 [XNIO-1 task-1] tKaREz14QkW5MD1eHAQorA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.061 [XNIO-1 task-1] tKaREz14QkW5MD1eHAQorA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.073 [XNIO-1 task-1] gOM37LveR7K_iuUNsr_1AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:43.074 [XNIO-1 task-1] gOM37LveR7K_iuUNsr_1AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.074 [XNIO-1 task-1] gOM37LveR7K_iuUNsr_1AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.074 [XNIO-1 task-1] gOM37LveR7K_iuUNsr_1AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:43.075 [XNIO-1 task-1] gOM37LveR7K_iuUNsr_1AA DEBUG com.networknt.schema.TypeValidator debug - validate( "a94e25f5", "a94e25f5", userId) +18:00:43.079 [XNIO-1 task-1] ViCNlUKxRQa8IUGuu-emOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.079 [XNIO-1 task-1] ViCNlUKxRQa8IUGuu-emOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.080 [XNIO-1 task-1] ViCNlUKxRQa8IUGuu-emOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.195 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5fe15f5d-74ff-4d1e-933e-c44a0f53fc10 +18:00:43.196 [XNIO-1 task-1] ltaVBNc7SBajTZ4JInM16w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:43.196 [XNIO-1 task-1] ltaVBNc7SBajTZ4JInM16w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.197 [XNIO-1 task-1] ltaVBNc7SBajTZ4JInM16w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.197 [XNIO-1 task-1] ltaVBNc7SBajTZ4JInM16w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:43.197 [XNIO-1 task-1] ltaVBNc7SBajTZ4JInM16w DEBUG com.networknt.schema.TypeValidator debug - validate( "a94e25f5", "a94e25f5", userId) +18:00:43.202 [XNIO-1 task-1] gBwCIaqeRW69lthg3ipjEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:43.202 [XNIO-1 task-1] gBwCIaqeRW69lthg3ipjEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.202 [XNIO-1 task-1] gBwCIaqeRW69lthg3ipjEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.202 [XNIO-1 task-1] gBwCIaqeRW69lthg3ipjEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:43.208 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/607cb481, base path is set to: null +18:00:43.208 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.208 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.208 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:43.208 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/607cb481, base path is set to: null +18:00:43.209 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "607cb481", "607cb481", userId) +18:00:43.209 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"94ff179a-52c1-46fc-92ef-f2a263b95179","newPassword":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPasswordConfirm":"bdf30cc3-b61a-45cb-98d2-c57751dee394"}, {"password":"94ff179a-52c1-46fc-92ef-f2a263b95179","newPassword":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPasswordConfirm":"bdf30cc3-b61a-45cb-98d2-c57751dee394"}, requestBody) +18:00:43.209 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bdf30cc3-b61a-45cb-98d2-c57751dee394", {"password":"94ff179a-52c1-46fc-92ef-f2a263b95179","newPassword":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPasswordConfirm":"bdf30cc3-b61a-45cb-98d2-c57751dee394"}, requestBody.newPasswordConfirm) +18:00:43.209 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "94ff179a-52c1-46fc-92ef-f2a263b95179", {"password":"94ff179a-52c1-46fc-92ef-f2a263b95179","newPassword":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPasswordConfirm":"bdf30cc3-b61a-45cb-98d2-c57751dee394"}, requestBody.password) +18:00:43.209 [XNIO-1 task-1] 81jaltjQSy-9E_93B2nVZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bdf30cc3-b61a-45cb-98d2-c57751dee394", {"password":"94ff179a-52c1-46fc-92ef-f2a263b95179","newPassword":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPasswordConfirm":"bdf30cc3-b61a-45cb-98d2-c57751dee394"}, requestBody.newPassword) +18:00:43.231 [XNIO-1 task-1] _BVKP_M9SyWThG_NyHD3CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.231 [XNIO-1 task-1] _BVKP_M9SyWThG_NyHD3CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.232 [XNIO-1 task-1] _BVKP_M9SyWThG_NyHD3CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.235 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ccc841fa-6925-4171-a377-c3c8074d5ebd +18:00:43.242 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ccc841fa-6925-4171-a377-c3c8074d5ebd +18:00:43.243 [XNIO-1 task-1] WJk0Pd8rToqilnC3I9e6Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.243 [XNIO-1 task-1] WJk0Pd8rToqilnC3I9e6Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.244 [XNIO-1 task-1] WJk0Pd8rToqilnC3I9e6Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.290 [XNIO-1 task-1] m5ZhqS9FRCakWVzuCaGDZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.290 [XNIO-1 task-1] m5ZhqS9FRCakWVzuCaGDZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.291 [XNIO-1 task-1] m5ZhqS9FRCakWVzuCaGDZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.291 [XNIO-1 task-1] m5ZhqS9FRCakWVzuCaGDZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.295 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ecfdde74-fe85-4fda-83d5-ea8fee822d5e +18:00:43.315 [XNIO-1 task-1] QEo9oDzZSeGeEcYW59Wl5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.315 [XNIO-1 task-1] QEo9oDzZSeGeEcYW59Wl5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.315 [XNIO-1 task-1] QEo9oDzZSeGeEcYW59Wl5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.330 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6b37e54e-0458-44b5-82dc-9c0e8c4e9c73 +18:00:43.332 [XNIO-1 task-1] K1-vl4_1TvaqcH8ce4WJ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b79c68a8 +18:00:43.332 [XNIO-1 task-1] K1-vl4_1TvaqcH8ce4WJ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.332 [XNIO-1 task-1] K1-vl4_1TvaqcH8ce4WJ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.333 [XNIO-1 task-1] K1-vl4_1TvaqcH8ce4WJ_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b79c68a8 +18:00:43.344 [XNIO-1 task-1] By-6Qk5BQ8SdEqaxOWbRCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:43.344 [XNIO-1 task-1] By-6Qk5BQ8SdEqaxOWbRCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.344 [XNIO-1 task-1] By-6Qk5BQ8SdEqaxOWbRCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.345 [XNIO-1 task-1] By-6Qk5BQ8SdEqaxOWbRCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:43.345 [XNIO-1 task-1] By-6Qk5BQ8SdEqaxOWbRCA DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:43.351 [XNIO-1 task-1] L24qLdb3TsatOWnOhVCYuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:43.351 [XNIO-1 task-1] L24qLdb3TsatOWnOhVCYuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.351 [XNIO-1 task-1] L24qLdb3TsatOWnOhVCYuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.352 [XNIO-1 task-1] L24qLdb3TsatOWnOhVCYuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:43.352 [XNIO-1 task-1] L24qLdb3TsatOWnOhVCYuA DEBUG com.networknt.schema.TypeValidator debug - validate( "607cb481", "607cb481", userId) +18:00:43.356 [XNIO-1 task-1] pd6CnVYySpSpO7mPGOVktQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/af873866 +18:00:43.357 [XNIO-1 task-1] pd6CnVYySpSpO7mPGOVktQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.357 [XNIO-1 task-1] pd6CnVYySpSpO7mPGOVktQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.357 [XNIO-1 task-1] pd6CnVYySpSpO7mPGOVktQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/af873866 +18:00:43.369 [XNIO-1 task-1] TyC13peWSrWsUoiXCy5C7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.369 [XNIO-1 task-1] TyC13peWSrWsUoiXCy5C7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.370 [XNIO-1 task-1] TyC13peWSrWsUoiXCy5C7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.370 [XNIO-1 task-1] TyC13peWSrWsUoiXCy5C7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.376 [XNIO-1 task-1] YTB4c5tySEOAzQ2_v1vYKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1844b181, base path is set to: null +18:00:43.376 [XNIO-1 task-1] YTB4c5tySEOAzQ2_v1vYKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.376 [XNIO-1 task-1] YTB4c5tySEOAzQ2_v1vYKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.377 [XNIO-1 task-1] YTB4c5tySEOAzQ2_v1vYKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1844b181, base path is set to: null +18:00:43.377 [XNIO-1 task-1] YTB4c5tySEOAzQ2_v1vYKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1844b181", "1844b181", userId) +18:00:43.389 [XNIO-1 task-1] 2JhjMz7NR0SngyCHgbmjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.389 [XNIO-1 task-1] 2JhjMz7NR0SngyCHgbmjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.389 [XNIO-1 task-1] 2JhjMz7NR0SngyCHgbmjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.389 [XNIO-1 task-1] 2JhjMz7NR0SngyCHgbmjpA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.434 [XNIO-1 task-1] WxuSRazSTXy0ZwEpZPh-XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b79c68a8 +18:00:43.434 [XNIO-1 task-1] WxuSRazSTXy0ZwEpZPh-XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.434 [XNIO-1 task-1] WxuSRazSTXy0ZwEpZPh-XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.434 [XNIO-1 task-1] WxuSRazSTXy0ZwEpZPh-XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b79c68a8 +18:00:43.445 [XNIO-1 task-1] ACdAk65tSYCagI1U_wGrRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:43.445 [XNIO-1 task-1] ACdAk65tSYCagI1U_wGrRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.445 [XNIO-1 task-1] ACdAk65tSYCagI1U_wGrRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.446 [XNIO-1 task-1] ACdAk65tSYCagI1U_wGrRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/331614f7, base path is set to: null +18:00:43.446 [XNIO-1 task-1] ACdAk65tSYCagI1U_wGrRA DEBUG com.networknt.schema.TypeValidator debug - validate( "331614f7", "331614f7", userId) +18:00:43.467 [XNIO-1 task-1] 0nfZsz1PSeWivG_CD67Zmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.468 [XNIO-1 task-1] 0nfZsz1PSeWivG_CD67Zmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.468 [XNIO-1 task-1] 0nfZsz1PSeWivG_CD67Zmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.468 [XNIO-1 task-1] 0nfZsz1PSeWivG_CD67Zmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.477 [XNIO-1 task-1] fntc8k5-Qfez5givrR-Dnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.477 [XNIO-1 task-1] fntc8k5-Qfez5givrR-Dnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.477 [XNIO-1 task-1] fntc8k5-Qfez5givrR-Dnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.508 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/607cb481 +18:00:43.508 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.508 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.508 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:43.509 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/607cb481 +18:00:43.509 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPassword":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPasswordConfirm":"3778ccef-178f-49d0-b279-8e0c5f3c9c94"}, {"password":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPassword":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPasswordConfirm":"3778ccef-178f-49d0-b279-8e0c5f3c9c94"}, requestBody) +18:00:43.509 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPassword":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPasswordConfirm":"3778ccef-178f-49d0-b279-8e0c5f3c9c94"}, {"password":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPassword":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPasswordConfirm":"3778ccef-178f-49d0-b279-8e0c5f3c9c94"}, requestBody) +18:00:43.510 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG com.networknt.schema.FormatValidator debug - validate( "3778ccef-178f-49d0-b279-8e0c5f3c9c94", {"password":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPassword":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPasswordConfirm":"3778ccef-178f-49d0-b279-8e0c5f3c9c94"}, requestBody.newPasswordConfirm) +18:00:43.510 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG com.networknt.schema.FormatValidator debug - validate( "bdf30cc3-b61a-45cb-98d2-c57751dee394", {"password":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPassword":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPasswordConfirm":"3778ccef-178f-49d0-b279-8e0c5f3c9c94"}, requestBody.password) +18:00:43.510 [XNIO-1 task-1] 0I_6k_mmSu638ym66OPP2w DEBUG com.networknt.schema.FormatValidator debug - validate( "3778ccef-178f-49d0-b279-8e0c5f3c9c94", {"password":"bdf30cc3-b61a-45cb-98d2-c57751dee394","newPassword":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPasswordConfirm":"3778ccef-178f-49d0-b279-8e0c5f3c9c94"}, requestBody.newPassword) +18:00:43.541 [XNIO-1 task-1] bk9x2iP0Q8uTTFMIUsZqhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cc830065 +18:00:43.541 [XNIO-1 task-1] bk9x2iP0Q8uTTFMIUsZqhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.541 [XNIO-1 task-1] bk9x2iP0Q8uTTFMIUsZqhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.541 [XNIO-1 task-1] bk9x2iP0Q8uTTFMIUsZqhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cc830065 +18:00:43.548 [XNIO-1 task-1] _9o0KhCCQa2QDXhN-k6Pow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.548 [XNIO-1 task-1] _9o0KhCCQa2QDXhN-k6Pow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.548 [XNIO-1 task-1] _9o0KhCCQa2QDXhN-k6Pow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.549 [XNIO-1 task-1] _9o0KhCCQa2QDXhN-k6Pow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:43.560 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0a374199-e964-4e76-8a13-775473e7d4be +18:00:43.561 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc830065 +18:00:43.561 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.561 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.561 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.561 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:43.562 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc830065 +18:00:43.562 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7e944992-17b8-4798-bf3c-e793b9bc85ec","newPassword":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867","newPasswordConfirm":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867"}, {"password":"7e944992-17b8-4798-bf3c-e793b9bc85ec","newPassword":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867","newPasswordConfirm":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867"}, requestBody) +18:00:43.563 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7e944992-17b8-4798-bf3c-e793b9bc85ec","newPassword":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867","newPasswordConfirm":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867"}, {"password":"7e944992-17b8-4798-bf3c-e793b9bc85ec","newPassword":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867","newPasswordConfirm":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867"}, requestBody) +18:00:43.563 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG com.networknt.schema.FormatValidator debug - validate( "ef4956d3-84e3-4c1e-8cac-5500ebcb5867", {"password":"7e944992-17b8-4798-bf3c-e793b9bc85ec","newPassword":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867","newPasswordConfirm":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867"}, requestBody.newPasswordConfirm) +18:00:43.563 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG com.networknt.schema.FormatValidator debug - validate( "7e944992-17b8-4798-bf3c-e793b9bc85ec", {"password":"7e944992-17b8-4798-bf3c-e793b9bc85ec","newPassword":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867","newPasswordConfirm":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867"}, requestBody.password) +18:00:43.563 [XNIO-1 task-1] ajIf9CXFRLyhO9tmpKz04g DEBUG com.networknt.schema.FormatValidator debug - validate( "ef4956d3-84e3-4c1e-8cac-5500ebcb5867", {"password":"7e944992-17b8-4798-bf3c-e793b9bc85ec","newPassword":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867","newPasswordConfirm":"ef4956d3-84e3-4c1e-8cac-5500ebcb5867"}, requestBody.newPassword) +18:00:43.583 [XNIO-1 task-1] h6ZB6GO4SaeUFwEBGPtLVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.583 [XNIO-1 task-1] h6ZB6GO4SaeUFwEBGPtLVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.584 [XNIO-1 task-1] h6ZB6GO4SaeUFwEBGPtLVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.595 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:564791cd +18:00:43.597 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0a374199-e964-4e76-8a13-775473e7d4be +18:00:43.610 [XNIO-1 task-1] PqVLUMZLTbq-4T65RQf2JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.610 [XNIO-1 task-1] PqVLUMZLTbq-4T65RQf2JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.610 [XNIO-1 task-1] PqVLUMZLTbq-4T65RQf2JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.630 [XNIO-1 task-1] ak1V5ajRSGmlziCiWsNohg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.631 [XNIO-1 task-1] ak1V5ajRSGmlziCiWsNohg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.631 [XNIO-1 task-1] ak1V5ajRSGmlziCiWsNohg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.645 [XNIO-1 task-1] UvPNsi4SQJO9PIka8T1l_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93f8f80d +18:00:43.645 [XNIO-1 task-1] UvPNsi4SQJO9PIka8T1l_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.645 [XNIO-1 task-1] UvPNsi4SQJO9PIka8T1l_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.645 [XNIO-1 task-1] UvPNsi4SQJO9PIka8T1l_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93f8f80d +18:00:43.650 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:40d98f3d-111d-4fc1-9fe6-a7be4be4c586 +18:00:43.665 [XNIO-1 task-1] 95mF6fZKQ_iUgM-9LucUQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.665 [XNIO-1 task-1] 95mF6fZKQ_iUgM-9LucUQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.665 [XNIO-1 task-1] 95mF6fZKQ_iUgM-9LucUQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.688 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0ec9fcd6, base path is set to: null +18:00:43.688 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.688 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.688 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:43.689 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0ec9fcd6, base path is set to: null +18:00:43.689 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ec9fcd6", "0ec9fcd6", userId) +18:00:43.690 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"39b08bb7-52c2-4eb3-ab3e-f417c9afd679","newPassword":"b13a7108-121d-4436-821f-21699bb4f28e","newPasswordConfirm":"b13a7108-121d-4436-821f-21699bb4f28e"}, {"password":"39b08bb7-52c2-4eb3-ab3e-f417c9afd679","newPassword":"b13a7108-121d-4436-821f-21699bb4f28e","newPasswordConfirm":"b13a7108-121d-4436-821f-21699bb4f28e"}, requestBody) +18:00:43.690 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG com.networknt.schema.TypeValidator debug - validate( "b13a7108-121d-4436-821f-21699bb4f28e", {"password":"39b08bb7-52c2-4eb3-ab3e-f417c9afd679","newPassword":"b13a7108-121d-4436-821f-21699bb4f28e","newPasswordConfirm":"b13a7108-121d-4436-821f-21699bb4f28e"}, requestBody.newPasswordConfirm) +18:00:43.690 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG com.networknt.schema.TypeValidator debug - validate( "39b08bb7-52c2-4eb3-ab3e-f417c9afd679", {"password":"39b08bb7-52c2-4eb3-ab3e-f417c9afd679","newPassword":"b13a7108-121d-4436-821f-21699bb4f28e","newPasswordConfirm":"b13a7108-121d-4436-821f-21699bb4f28e"}, requestBody.password) +18:00:43.690 [XNIO-1 task-1] MeF-NTnaRkCvTffCu3OGuw DEBUG com.networknt.schema.TypeValidator debug - validate( "b13a7108-121d-4436-821f-21699bb4f28e", {"password":"39b08bb7-52c2-4eb3-ab3e-f417c9afd679","newPassword":"b13a7108-121d-4436-821f-21699bb4f28e","newPasswordConfirm":"b13a7108-121d-4436-821f-21699bb4f28e"}, requestBody.newPassword) +18:00:43.693 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:40d98f3d-111d-4fc1-9fe6-a7be4be4c586 +18:00:43.704 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bf18d252-9f27-424e-b8d0-c9a043bfe248 +18:00:43.744 [XNIO-1 task-1] xU4JvtfKQ_qHwZUshO_8Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.744 [XNIO-1 task-1] xU4JvtfKQ_qHwZUshO_8Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.744 [XNIO-1 task-1] xU4JvtfKQ_qHwZUshO_8Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.746 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:564791cd +18:00:43.753 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe63e39d +18:00:43.755 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe63e39d +18:00:43.757 [XNIO-1 task-1] fspkG-tnR5yugPgPihBmPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:43.758 [XNIO-1 task-1] fspkG-tnR5yugPgPihBmPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.758 [XNIO-1 task-1] fspkG-tnR5yugPgPihBmPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.758 [XNIO-1 task-1] fspkG-tnR5yugPgPihBmPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:43.758 [XNIO-1 task-1] fspkG-tnR5yugPgPihBmPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a94e25f5", "a94e25f5", userId) +18:00:43.767 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a94e25f5 +18:00:43.767 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.768 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.768 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:43.768 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a94e25f5 +18:00:43.769 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPassword":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855","newPasswordConfirm":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855"}, {"password":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPassword":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855","newPasswordConfirm":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855"}, requestBody) +18:00:43.769 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPassword":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855","newPasswordConfirm":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855"}, {"password":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPassword":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855","newPasswordConfirm":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855"}, requestBody) +18:00:43.769 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG com.networknt.schema.FormatValidator debug - validate( "2e4ffbe3-1dd0-4984-ac5f-e9523e160855", {"password":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPassword":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855","newPasswordConfirm":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855"}, requestBody.newPasswordConfirm) +18:00:43.769 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG com.networknt.schema.FormatValidator debug - validate( "f908ca91-3299-4a74-a3b2-79ecdc8623d3", {"password":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPassword":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855","newPasswordConfirm":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855"}, requestBody.password) +18:00:43.769 [XNIO-1 task-1] IXVJLCI-SkCR6F1H1AuG_A DEBUG com.networknt.schema.FormatValidator debug - validate( "2e4ffbe3-1dd0-4984-ac5f-e9523e160855", {"password":"f908ca91-3299-4a74-a3b2-79ecdc8623d3","newPassword":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855","newPasswordConfirm":"2e4ffbe3-1dd0-4984-ac5f-e9523e160855"}, requestBody.newPassword) +18:00:43.796 [XNIO-1 task-1] yeOUz5vcSEe8s8-GhaflVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.796 [XNIO-1 task-1] yeOUz5vcSEe8s8-GhaflVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.797 [XNIO-1 task-1] yeOUz5vcSEe8s8-GhaflVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.817 [XNIO-1 task-1] 1XBgTxKUTpypfZ7tiM3xMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.818 [XNIO-1 task-1] 1XBgTxKUTpypfZ7tiM3xMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.818 [XNIO-1 task-1] 1XBgTxKUTpypfZ7tiM3xMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.827 [XNIO-1 task-1] Lydn79JVSPyzgRz73nWAAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.827 [XNIO-1 task-1] Lydn79JVSPyzgRz73nWAAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.827 [XNIO-1 task-1] Lydn79JVSPyzgRz73nWAAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.846 [XNIO-1 task-1] 6A9IGeW_SHy_1RHyVgqUqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.846 [XNIO-1 task-1] 6A9IGeW_SHy_1RHyVgqUqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.846 [XNIO-1 task-1] 6A9IGeW_SHy_1RHyVgqUqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.846 [XNIO-1 task-1] 6A9IGeW_SHy_1RHyVgqUqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:43.853 [XNIO-1 task-1] BcqXBNLWTqyS3ZCr3EypDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.853 [XNIO-1 task-1] BcqXBNLWTqyS3ZCr3EypDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.854 [XNIO-1 task-1] BcqXBNLWTqyS3ZCr3EypDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.888 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3cac78d7 +18:00:43.896 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe63e39d +18:00:43.908 [XNIO-1 task-1] ssiJvRnITGq9GWaWIwdaxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a17379a5, base path is set to: null +18:00:43.908 [XNIO-1 task-1] ssiJvRnITGq9GWaWIwdaxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.908 [XNIO-1 task-1] ssiJvRnITGq9GWaWIwdaxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.908 [XNIO-1 task-1] ssiJvRnITGq9GWaWIwdaxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a17379a5, base path is set to: null +18:00:43.909 [XNIO-1 task-1] ssiJvRnITGq9GWaWIwdaxA DEBUG com.networknt.schema.TypeValidator debug - validate( "a17379a5", "a17379a5", userId) +18:00:43.920 [XNIO-1 task-1] 4MdTNWllTwKQY2WXEx3lNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cc830065 +18:00:43.920 [XNIO-1 task-1] 4MdTNWllTwKQY2WXEx3lNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.920 [XNIO-1 task-1] 4MdTNWllTwKQY2WXEx3lNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.920 [XNIO-1 task-1] 4MdTNWllTwKQY2WXEx3lNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cc830065 +18:00:43.942 [XNIO-1 task-1] 0ul8oT6iSnKXdrM5aPSTvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f2b57b97, base path is set to: null +18:00:43.942 [XNIO-1 task-1] 0ul8oT6iSnKXdrM5aPSTvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.942 [XNIO-1 task-1] 0ul8oT6iSnKXdrM5aPSTvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.943 [XNIO-1 task-1] 0ul8oT6iSnKXdrM5aPSTvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f2b57b97, base path is set to: null +18:00:43.943 [XNIO-1 task-1] 0ul8oT6iSnKXdrM5aPSTvg DEBUG com.networknt.schema.TypeValidator debug - validate( "f2b57b97", "f2b57b97", userId) +18:00:43.952 [XNIO-1 task-1] 1HNTM3fdQnWIO3LwIRlNGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ec9fcd6 +18:00:43.952 [XNIO-1 task-1] 1HNTM3fdQnWIO3LwIRlNGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:43.952 [XNIO-1 task-1] 1HNTM3fdQnWIO3LwIRlNGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:43.952 [XNIO-1 task-1] 1HNTM3fdQnWIO3LwIRlNGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ec9fcd6 +18:00:43.960 [XNIO-1 task-1] zbUMa3hnTJCP6ytTCh2zsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.960 [XNIO-1 task-1] zbUMa3hnTJCP6ytTCh2zsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.961 [XNIO-1 task-1] zbUMa3hnTJCP6ytTCh2zsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.980 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe63e39d +18:00:43.985 [XNIO-1 task-1] tJDF_kDmRICXwbkBp7GvJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/564791cd, base path is set to: null +18:00:43.985 [XNIO-1 task-1] tJDF_kDmRICXwbkBp7GvJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.986 [XNIO-1 task-1] tJDF_kDmRICXwbkBp7GvJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:43.986 [XNIO-1 task-1] tJDF_kDmRICXwbkBp7GvJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/564791cd, base path is set to: null +18:00:43.986 [XNIO-1 task-1] tJDF_kDmRICXwbkBp7GvJA DEBUG com.networknt.schema.TypeValidator debug - validate( "564791cd", "564791cd", userId) +18:00:43.998 [XNIO-1 task-1] nzXTjxS3T6uj9ni3WHBsYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:43.998 [XNIO-1 task-1] nzXTjxS3T6uj9ni3WHBsYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:43.999 [XNIO-1 task-1] nzXTjxS3T6uj9ni3WHBsYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.035 [XNIO-1 task-1] J1s0SPSjTdeNrF16CMc4uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.035 [XNIO-1 task-1] J1s0SPSjTdeNrF16CMc4uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.036 [XNIO-1 task-1] J1s0SPSjTdeNrF16CMc4uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.036 [XNIO-1 task-1] J1s0SPSjTdeNrF16CMc4uw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.070 [XNIO-1 task-1] 1XvOBOT4Tai77gNkBl-u7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.071 [XNIO-1 task-1] 1XvOBOT4Tai77gNkBl-u7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.071 [XNIO-1 task-1] 1XvOBOT4Tai77gNkBl-u7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.099 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/428b566c, base path is set to: null +18:00:44.100 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.100 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.100 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:44.100 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/428b566c, base path is set to: null +18:00:44.101 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG com.networknt.schema.TypeValidator debug - validate( "428b566c", "428b566c", userId) +18:00:44.101 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d35ddb9e-e1b5-4401-bc2a-195f34d6944b","newPassword":"4525390c-6760-47a7-a2bb-445d1df674dc","newPasswordConfirm":"4525390c-6760-47a7-a2bb-445d1df674dc"}, {"password":"d35ddb9e-e1b5-4401-bc2a-195f34d6944b","newPassword":"4525390c-6760-47a7-a2bb-445d1df674dc","newPasswordConfirm":"4525390c-6760-47a7-a2bb-445d1df674dc"}, requestBody) +18:00:44.101 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG com.networknt.schema.TypeValidator debug - validate( "4525390c-6760-47a7-a2bb-445d1df674dc", {"password":"d35ddb9e-e1b5-4401-bc2a-195f34d6944b","newPassword":"4525390c-6760-47a7-a2bb-445d1df674dc","newPasswordConfirm":"4525390c-6760-47a7-a2bb-445d1df674dc"}, requestBody.newPasswordConfirm) +18:00:44.101 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG com.networknt.schema.TypeValidator debug - validate( "d35ddb9e-e1b5-4401-bc2a-195f34d6944b", {"password":"d35ddb9e-e1b5-4401-bc2a-195f34d6944b","newPassword":"4525390c-6760-47a7-a2bb-445d1df674dc","newPasswordConfirm":"4525390c-6760-47a7-a2bb-445d1df674dc"}, requestBody.password) +18:00:44.101 [XNIO-1 task-1] Q_Kk7NMOTpigZsoMUKlztg DEBUG com.networknt.schema.TypeValidator debug - validate( "4525390c-6760-47a7-a2bb-445d1df674dc", {"password":"d35ddb9e-e1b5-4401-bc2a-195f34d6944b","newPassword":"4525390c-6760-47a7-a2bb-445d1df674dc","newPasswordConfirm":"4525390c-6760-47a7-a2bb-445d1df674dc"}, requestBody.newPassword) +18:00:44.134 [XNIO-1 task-1] 9wmYjFesRnezq9X9AzpH5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.136 [XNIO-1 task-1] 9wmYjFesRnezq9X9AzpH5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.136 [XNIO-1 task-1] 9wmYjFesRnezq9X9AzpH5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.149 [XNIO-1 task-1] 5NoWHBT3Q26q9pIWfSNwLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:44.149 [XNIO-1 task-1] 5NoWHBT3Q26q9pIWfSNwLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.149 [XNIO-1 task-1] 5NoWHBT3Q26q9pIWfSNwLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.149 [XNIO-1 task-1] 5NoWHBT3Q26q9pIWfSNwLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94e25f5, base path is set to: null +18:00:44.150 [XNIO-1 task-1] 5NoWHBT3Q26q9pIWfSNwLA DEBUG com.networknt.schema.TypeValidator debug - validate( "a94e25f5", "a94e25f5", userId) +18:00:44.160 [XNIO-1 task-1] tdnCLRV-S7-ePd406bh6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.160 [XNIO-1 task-1] tdnCLRV-S7-ePd406bh6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.160 [XNIO-1 task-1] tdnCLRV-S7-ePd406bh6Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.169 [XNIO-1 task-1] LHPFy3LMRCCcbnLm2zINuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.170 [XNIO-1 task-1] LHPFy3LMRCCcbnLm2zINuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.170 [XNIO-1 task-1] LHPFy3LMRCCcbnLm2zINuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.170 [XNIO-1 task-1] LHPFy3LMRCCcbnLm2zINuA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.189 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/607cb481 +18:00:44.189 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.189 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.189 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:44.190 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/607cb481 +18:00:44.191 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPassword":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPasswordConfirm":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6"}, {"password":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPassword":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPasswordConfirm":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6"}, requestBody) +18:00:44.191 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPassword":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPasswordConfirm":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6"}, {"password":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPassword":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPasswordConfirm":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6"}, requestBody) +18:00:44.191 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "d5c13b68-5b6f-414d-99ad-ac11fd4a88d6", {"password":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPassword":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPasswordConfirm":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6"}, requestBody.newPasswordConfirm) +18:00:44.191 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "3778ccef-178f-49d0-b279-8e0c5f3c9c94", {"password":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPassword":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPasswordConfirm":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6"}, requestBody.password) +18:00:44.191 [XNIO-1 task-1] FMSknMnOQue34Sal22ZN0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "d5c13b68-5b6f-414d-99ad-ac11fd4a88d6", {"password":"3778ccef-178f-49d0-b279-8e0c5f3c9c94","newPassword":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPasswordConfirm":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6"}, requestBody.newPassword) +18:00:44.221 [XNIO-1 task-1] Dk5BomFZRBmsdR4lG7XdrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f2b57b97 +18:00:44.221 [XNIO-1 task-1] Dk5BomFZRBmsdR4lG7XdrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.221 [XNIO-1 task-1] Dk5BomFZRBmsdR4lG7XdrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.221 [XNIO-1 task-1] Dk5BomFZRBmsdR4lG7XdrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f2b57b97 +18:00:44.226 [XNIO-1 task-1] dG2aCHYtSxeY40EmiH7Aug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.226 [XNIO-1 task-1] dG2aCHYtSxeY40EmiH7Aug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.227 [XNIO-1 task-1] dG2aCHYtSxeY40EmiH7Aug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.248 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3cac78d7, base path is set to: null +18:00:44.248 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.248 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.248 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:44.248 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3cac78d7, base path is set to: null +18:00:44.249 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3cac78d7", "3cac78d7", userId) +18:00:44.249 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e7677527-0050-4642-8831-aff63a8dd6c8","newPassword":"85a68f05-02eb-4b75-8c35-a7357f346833","newPasswordConfirm":"85a68f05-02eb-4b75-8c35-a7357f346833"}, {"password":"e7677527-0050-4642-8831-aff63a8dd6c8","newPassword":"85a68f05-02eb-4b75-8c35-a7357f346833","newPasswordConfirm":"85a68f05-02eb-4b75-8c35-a7357f346833"}, requestBody) +18:00:44.249 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "85a68f05-02eb-4b75-8c35-a7357f346833", {"password":"e7677527-0050-4642-8831-aff63a8dd6c8","newPassword":"85a68f05-02eb-4b75-8c35-a7357f346833","newPasswordConfirm":"85a68f05-02eb-4b75-8c35-a7357f346833"}, requestBody.newPasswordConfirm) +18:00:44.249 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e7677527-0050-4642-8831-aff63a8dd6c8", {"password":"e7677527-0050-4642-8831-aff63a8dd6c8","newPassword":"85a68f05-02eb-4b75-8c35-a7357f346833","newPasswordConfirm":"85a68f05-02eb-4b75-8c35-a7357f346833"}, requestBody.password) +18:00:44.249 [XNIO-1 task-1] V1Ys3HpwShOIH933TWINQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "85a68f05-02eb-4b75-8c35-a7357f346833", {"password":"e7677527-0050-4642-8831-aff63a8dd6c8","newPassword":"85a68f05-02eb-4b75-8c35-a7357f346833","newPasswordConfirm":"85a68f05-02eb-4b75-8c35-a7357f346833"}, requestBody.newPassword) +18:00:44.262 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3cac78d7 +18:00:44.270 [XNIO-1 task-1] DpcO7k_IQBazc5iLQdW7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3cac78d7, base path is set to: null +18:00:44.271 [XNIO-1 task-1] DpcO7k_IQBazc5iLQdW7sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.271 [XNIO-1 task-1] DpcO7k_IQBazc5iLQdW7sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.271 [XNIO-1 task-1] DpcO7k_IQBazc5iLQdW7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3cac78d7, base path is set to: null +18:00:44.271 [XNIO-1 task-1] DpcO7k_IQBazc5iLQdW7sw DEBUG com.networknt.schema.TypeValidator debug - validate( "3cac78d7", "3cac78d7", userId) +18:00:44.286 [XNIO-1 task-1] KNila9cwToaNDfvjbovpoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.286 [XNIO-1 task-1] KNila9cwToaNDfvjbovpoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.286 [XNIO-1 task-1] KNila9cwToaNDfvjbovpoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.287 [XNIO-1 task-1] KNila9cwToaNDfvjbovpoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.293 [XNIO-1 task-1] 7cHUTep5RbeeaOnR05PEAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f987253, base path is set to: null +18:00:44.293 [XNIO-1 task-1] 7cHUTep5RbeeaOnR05PEAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.293 [XNIO-1 task-1] 7cHUTep5RbeeaOnR05PEAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.294 [XNIO-1 task-1] 7cHUTep5RbeeaOnR05PEAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f987253, base path is set to: null +18:00:44.294 [XNIO-1 task-1] 7cHUTep5RbeeaOnR05PEAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f987253", "4f987253", userId) +18:00:44.300 [XNIO-1 task-1] rwiOVuv4Q_Saohem_Pir8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.300 [XNIO-1 task-1] rwiOVuv4Q_Saohem_Pir8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.300 [XNIO-1 task-1] rwiOVuv4Q_Saohem_Pir8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.347 [XNIO-1 task-1] 4DSII5bSQRGPi9_U-di6-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.347 [XNIO-1 task-1] 4DSII5bSQRGPi9_U-di6-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.347 [XNIO-1 task-1] 4DSII5bSQRGPi9_U-di6-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.348 [XNIO-1 task-1] 4DSII5bSQRGPi9_U-di6-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.354 [XNIO-1 task-1] ntdW3yRWTu6XVXJZgaGtRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ec9fcd6 +18:00:44.354 [XNIO-1 task-1] ntdW3yRWTu6XVXJZgaGtRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.354 [XNIO-1 task-1] ntdW3yRWTu6XVXJZgaGtRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.355 [XNIO-1 task-1] ntdW3yRWTu6XVXJZgaGtRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ec9fcd6 +18:00:44.370 [XNIO-1 task-1] qJlOPzC5QLeIaFkggb6P3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/428b566c, base path is set to: null +18:00:44.371 [XNIO-1 task-1] qJlOPzC5QLeIaFkggb6P3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.371 [XNIO-1 task-1] qJlOPzC5QLeIaFkggb6P3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.371 [XNIO-1 task-1] qJlOPzC5QLeIaFkggb6P3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/428b566c, base path is set to: null +18:00:44.371 [XNIO-1 task-1] qJlOPzC5QLeIaFkggb6P3g DEBUG com.networknt.schema.TypeValidator debug - validate( "428b566c", "428b566c", userId) +18:00:44.384 [XNIO-1 task-1] mRVLXy5-Sw-zx6w_BXuNXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.384 [XNIO-1 task-1] mRVLXy5-Sw-zx6w_BXuNXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.385 [XNIO-1 task-1] mRVLXy5-Sw-zx6w_BXuNXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.385 [XNIO-1 task-1] mRVLXy5-Sw-zx6w_BXuNXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.390 [XNIO-1 task-1] IEiFU3W0QrCxvQNXVNd21g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.392 [XNIO-1 task-1] IEiFU3W0QrCxvQNXVNd21g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.392 [XNIO-1 task-1] IEiFU3W0QrCxvQNXVNd21g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.393 [XNIO-1 task-1] IEiFU3W0QrCxvQNXVNd21g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.402 [XNIO-1 task-1] cOgvA1TZSjC2WSt1fpNBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/832b879b +18:00:44.402 [XNIO-1 task-1] cOgvA1TZSjC2WSt1fpNBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.402 [XNIO-1 task-1] cOgvA1TZSjC2WSt1fpNBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.402 [XNIO-1 task-1] cOgvA1TZSjC2WSt1fpNBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/832b879b +18:00:44.406 [XNIO-1 task-1] XM0w0MmSTxSRBrmydak2WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/832b879b, base path is set to: null +18:00:44.407 [XNIO-1 task-1] XM0w0MmSTxSRBrmydak2WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.407 [XNIO-1 task-1] XM0w0MmSTxSRBrmydak2WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.407 [XNIO-1 task-1] XM0w0MmSTxSRBrmydak2WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/832b879b, base path is set to: null +18:00:44.407 [XNIO-1 task-1] XM0w0MmSTxSRBrmydak2WA DEBUG com.networknt.schema.TypeValidator debug - validate( "832b879b", "832b879b", userId) +18:00:44.417 [XNIO-1 task-1] NcNuC8AaTNqr25CcugJUmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.417 [XNIO-1 task-1] NcNuC8AaTNqr25CcugJUmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.418 [XNIO-1 task-1] NcNuC8AaTNqr25CcugJUmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.418 [XNIO-1 task-1] NcNuC8AaTNqr25CcugJUmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:44.429 [XNIO-1 task-1] TIYQjbVhSnitCl_jauHjnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.429 [XNIO-1 task-1] TIYQjbVhSnitCl_jauHjnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.429 [XNIO-1 task-1] TIYQjbVhSnitCl_jauHjnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.431 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5338b55a-7ce6-4d85-8171-1c55bc82cb7a +18:00:44.447 [XNIO-1 task-1] 9Mcehhw2SYSmPtB3gNPV1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f2b57b97, base path is set to: null +18:00:44.447 [XNIO-1 task-1] 9Mcehhw2SYSmPtB3gNPV1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.447 [XNIO-1 task-1] 9Mcehhw2SYSmPtB3gNPV1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.447 [XNIO-1 task-1] 9Mcehhw2SYSmPtB3gNPV1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f2b57b97, base path is set to: null +18:00:44.448 [XNIO-1 task-1] 9Mcehhw2SYSmPtB3gNPV1g DEBUG com.networknt.schema.TypeValidator debug - validate( "f2b57b97", "f2b57b97", userId) +18:00:44.455 [XNIO-1 task-1] GDJgVBNVTJ2GVxCv5qp6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.455 [XNIO-1 task-1] GDJgVBNVTJ2GVxCv5qp6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.455 [XNIO-1 task-1] GDJgVBNVTJ2GVxCv5qp6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.471 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/abaafb82 +18:00:44.471 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.471 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.471 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:44.472 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/abaafb82 +18:00:44.472 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f3052641-6cd1-4aa0-89eb-6417a20ebb6a","newPassword":"51abc819-2f82-4fc7-98c3-bf9d142ea026","newPasswordConfirm":"51abc819-2f82-4fc7-98c3-bf9d142ea026"}, {"password":"f3052641-6cd1-4aa0-89eb-6417a20ebb6a","newPassword":"51abc819-2f82-4fc7-98c3-bf9d142ea026","newPasswordConfirm":"51abc819-2f82-4fc7-98c3-bf9d142ea026"}, requestBody) +18:00:44.472 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f3052641-6cd1-4aa0-89eb-6417a20ebb6a","newPassword":"51abc819-2f82-4fc7-98c3-bf9d142ea026","newPasswordConfirm":"51abc819-2f82-4fc7-98c3-bf9d142ea026"}, {"password":"f3052641-6cd1-4aa0-89eb-6417a20ebb6a","newPassword":"51abc819-2f82-4fc7-98c3-bf9d142ea026","newPasswordConfirm":"51abc819-2f82-4fc7-98c3-bf9d142ea026"}, requestBody) +18:00:44.472 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG com.networknt.schema.FormatValidator debug - validate( "51abc819-2f82-4fc7-98c3-bf9d142ea026", {"password":"f3052641-6cd1-4aa0-89eb-6417a20ebb6a","newPassword":"51abc819-2f82-4fc7-98c3-bf9d142ea026","newPasswordConfirm":"51abc819-2f82-4fc7-98c3-bf9d142ea026"}, requestBody.newPasswordConfirm) +18:00:44.472 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG com.networknt.schema.FormatValidator debug - validate( "f3052641-6cd1-4aa0-89eb-6417a20ebb6a", {"password":"f3052641-6cd1-4aa0-89eb-6417a20ebb6a","newPassword":"51abc819-2f82-4fc7-98c3-bf9d142ea026","newPasswordConfirm":"51abc819-2f82-4fc7-98c3-bf9d142ea026"}, requestBody.password) +18:00:44.473 [XNIO-1 task-1] ghtt73xaRuOPB2A5vmVMcA DEBUG com.networknt.schema.FormatValidator debug - validate( "51abc819-2f82-4fc7-98c3-bf9d142ea026", {"password":"f3052641-6cd1-4aa0-89eb-6417a20ebb6a","newPassword":"51abc819-2f82-4fc7-98c3-bf9d142ea026","newPasswordConfirm":"51abc819-2f82-4fc7-98c3-bf9d142ea026"}, requestBody.newPassword) +18:00:44.484 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f277df85-5c39-4ffc-966e-5de7f2cfd5ce +18:00:44.500 [XNIO-1 task-1] VWoffdJyQFqbE3pqy2gLaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/abaafb82, base path is set to: null +18:00:44.501 [XNIO-1 task-1] VWoffdJyQFqbE3pqy2gLaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.501 [XNIO-1 task-1] VWoffdJyQFqbE3pqy2gLaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.501 [XNIO-1 task-1] VWoffdJyQFqbE3pqy2gLaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/abaafb82, base path is set to: null +18:00:44.501 [XNIO-1 task-1] VWoffdJyQFqbE3pqy2gLaw DEBUG com.networknt.schema.TypeValidator debug - validate( "abaafb82", "abaafb82", userId) +18:00:44.558 [XNIO-1 task-1] lXaIvPQITk2UdPYsJ2gMug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.558 [XNIO-1 task-1] lXaIvPQITk2UdPYsJ2gMug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.559 [XNIO-1 task-1] lXaIvPQITk2UdPYsJ2gMug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.583 [XNIO-1 task-1] fQMiw0KfSGSR9p8VwQwWqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.584 [XNIO-1 task-1] fQMiw0KfSGSR9p8VwQwWqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.584 [XNIO-1 task-1] fQMiw0KfSGSR9p8VwQwWqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.607 [XNIO-1 task-1] Z2Aq_uDZTt2fSBDS9WvKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.607 [XNIO-1 task-1] Z2Aq_uDZTt2fSBDS9WvKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.608 [XNIO-1 task-1] Z2Aq_uDZTt2fSBDS9WvKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.618 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe63e39d +18:00:44.636 [XNIO-1 task-1] 5fXOMDxYTeCwy_gguYQUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4f987253 +18:00:44.636 [XNIO-1 task-1] 5fXOMDxYTeCwy_gguYQUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.637 [XNIO-1 task-1] 5fXOMDxYTeCwy_gguYQUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.637 [XNIO-1 task-1] 5fXOMDxYTeCwy_gguYQUug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4f987253 +18:00:44.639 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe63e39d +18:00:44.649 [XNIO-1 task-1] K1c9Wb7DTc-OkDd2MNOpjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.649 [XNIO-1 task-1] K1c9Wb7DTc-OkDd2MNOpjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.650 [XNIO-1 task-1] K1c9Wb7DTc-OkDd2MNOpjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.650 [XNIO-1 task-1] K1c9Wb7DTc-OkDd2MNOpjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.671 [XNIO-1 task-1] sycmhMZeRxqHfB3JLTMnsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.672 [XNIO-1 task-1] sycmhMZeRxqHfB3JLTMnsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.672 [XNIO-1 task-1] sycmhMZeRxqHfB3JLTMnsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.685 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:44.685 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.685 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.685 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:44.685 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:44.686 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fd4bfb06", "fd4bfb06", userId) +18:00:44.686 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c0b29c38-3ea4-4347-ba60-9ccc9422c743","newPassword":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPasswordConfirm":"c7a5de6c-6049-41d5-80e1-4aa6381f6109"}, {"password":"c0b29c38-3ea4-4347-ba60-9ccc9422c743","newPassword":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPasswordConfirm":"c7a5de6c-6049-41d5-80e1-4aa6381f6109"}, requestBody) +18:00:44.686 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7a5de6c-6049-41d5-80e1-4aa6381f6109", {"password":"c0b29c38-3ea4-4347-ba60-9ccc9422c743","newPassword":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPasswordConfirm":"c7a5de6c-6049-41d5-80e1-4aa6381f6109"}, requestBody.newPasswordConfirm) +18:00:44.686 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0b29c38-3ea4-4347-ba60-9ccc9422c743", {"password":"c0b29c38-3ea4-4347-ba60-9ccc9422c743","newPassword":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPasswordConfirm":"c7a5de6c-6049-41d5-80e1-4aa6381f6109"}, requestBody.password) +18:00:44.686 [XNIO-1 task-1] 7cCOIfQgQWqIi5AP6zFVtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c7a5de6c-6049-41d5-80e1-4aa6381f6109", {"password":"c0b29c38-3ea4-4347-ba60-9ccc9422c743","newPassword":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPasswordConfirm":"c7a5de6c-6049-41d5-80e1-4aa6381f6109"}, requestBody.newPassword) +18:00:44.715 [XNIO-1 task-1] 1sXRyrfHQp-QYxS1BOhNzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.715 [XNIO-1 task-1] 1sXRyrfHQp-QYxS1BOhNzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.716 [XNIO-1 task-1] 1sXRyrfHQp-QYxS1BOhNzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.728 [XNIO-1 task-1] 7T6-SJ4QRKS72jGUBC0lHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.729 [XNIO-1 task-1] 7T6-SJ4QRKS72jGUBC0lHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.729 [XNIO-1 task-1] 7T6-SJ4QRKS72jGUBC0lHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.754 [XNIO-1 task-1] K5KCDG8rSe-l2YYVn8yF1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.755 [XNIO-1 task-1] K5KCDG8rSe-l2YYVn8yF1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.755 [XNIO-1 task-1] K5KCDG8rSe-l2YYVn8yF1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.755 [XNIO-1 task-1] K5KCDG8rSe-l2YYVn8yF1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.764 [XNIO-1 task-1] 57J9medPRm-nmsi45IfPAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.764 [XNIO-1 task-1] 57J9medPRm-nmsi45IfPAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.764 [XNIO-1 task-1] 57J9medPRm-nmsi45IfPAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.765 [XNIO-1 task-1] 57J9medPRm-nmsi45IfPAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.779 [XNIO-1 task-1] 4xVorZspQ9i3kpqe1mf7vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.779 [XNIO-1 task-1] 4xVorZspQ9i3kpqe1mf7vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.779 [XNIO-1 task-1] 4xVorZspQ9i3kpqe1mf7vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.780 [XNIO-1 task-1] 4xVorZspQ9i3kpqe1mf7vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.787 [XNIO-1 task-1] _8XJOMZSRzWFj4oc-NJ-qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.787 [XNIO-1 task-1] _8XJOMZSRzWFj4oc-NJ-qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.787 [XNIO-1 task-1] _8XJOMZSRzWFj4oc-NJ-qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.790 [XNIO-1 task-1] _8XJOMZSRzWFj4oc-NJ-qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:44.806 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/607cb481, base path is set to: null +18:00:44.806 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.806 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.807 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:44.813 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/607cb481, base path is set to: null +18:00:44.814 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "607cb481", "607cb481", userId) +18:00:44.814 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPassword":"d51c2267-5905-4f2e-a5ee-7137683ce1e8","newPasswordConfirm":"d51c2267-5905-4f2e-a5ee-7137683ce1e8"}, {"password":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPassword":"d51c2267-5905-4f2e-a5ee-7137683ce1e8","newPasswordConfirm":"d51c2267-5905-4f2e-a5ee-7137683ce1e8"}, requestBody) +18:00:44.814 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d51c2267-5905-4f2e-a5ee-7137683ce1e8", {"password":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPassword":"d51c2267-5905-4f2e-a5ee-7137683ce1e8","newPasswordConfirm":"d51c2267-5905-4f2e-a5ee-7137683ce1e8"}, requestBody.newPasswordConfirm) +18:00:44.814 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d5c13b68-5b6f-414d-99ad-ac11fd4a88d6", {"password":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPassword":"d51c2267-5905-4f2e-a5ee-7137683ce1e8","newPasswordConfirm":"d51c2267-5905-4f2e-a5ee-7137683ce1e8"}, requestBody.password) +18:00:44.814 [XNIO-1 task-1] viC0i8TIR5a7OXgfW1NjQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d51c2267-5905-4f2e-a5ee-7137683ce1e8", {"password":"d5c13b68-5b6f-414d-99ad-ac11fd4a88d6","newPassword":"d51c2267-5905-4f2e-a5ee-7137683ce1e8","newPasswordConfirm":"d51c2267-5905-4f2e-a5ee-7137683ce1e8"}, requestBody.newPassword) +18:00:44.845 [XNIO-1 task-1] DzblY57jQCOTZM6NbkTMBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.845 [XNIO-1 task-1] DzblY57jQCOTZM6NbkTMBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.845 [XNIO-1 task-1] DzblY57jQCOTZM6NbkTMBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:44.893 [XNIO-1 task-1] JeSHb12eSR2dXC6nZBw6Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a9a13500, base path is set to: null +18:00:44.894 [XNIO-1 task-1] JeSHb12eSR2dXC6nZBw6Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.894 [XNIO-1 task-1] JeSHb12eSR2dXC6nZBw6Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.894 [XNIO-1 task-1] JeSHb12eSR2dXC6nZBw6Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a9a13500, base path is set to: null +18:00:44.894 [XNIO-1 task-1] JeSHb12eSR2dXC6nZBw6Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "a9a13500", "a9a13500", userId) +18:00:44.911 [XNIO-1 task-1] wTJ1BW_4R-a7iJGiYLQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f2b57b97 +18:00:44.911 [XNIO-1 task-1] wTJ1BW_4R-a7iJGiYLQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.911 [XNIO-1 task-1] wTJ1BW_4R-a7iJGiYLQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.912 [XNIO-1 task-1] wTJ1BW_4R-a7iJGiYLQ0mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f2b57b97 +18:00:44.924 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/90eee918, base path is set to: null +18:00:44.924 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.924 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.924 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:44.925 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/90eee918, base path is set to: null +18:00:44.925 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG com.networknt.schema.TypeValidator debug - validate( "90eee918", "90eee918", userId) +18:00:44.925 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"89505e93-92b3-428f-9f5c-73c8369d671c","newPassword":"2d9b809f-0438-47ef-b580-928f6103c90c","newPasswordConfirm":"2d9b809f-0438-47ef-b580-928f6103c90c"}, {"password":"89505e93-92b3-428f-9f5c-73c8369d671c","newPassword":"2d9b809f-0438-47ef-b580-928f6103c90c","newPasswordConfirm":"2d9b809f-0438-47ef-b580-928f6103c90c"}, requestBody) +18:00:44.926 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d9b809f-0438-47ef-b580-928f6103c90c", {"password":"89505e93-92b3-428f-9f5c-73c8369d671c","newPassword":"2d9b809f-0438-47ef-b580-928f6103c90c","newPasswordConfirm":"2d9b809f-0438-47ef-b580-928f6103c90c"}, requestBody.newPasswordConfirm) +18:00:44.926 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG com.networknt.schema.TypeValidator debug - validate( "89505e93-92b3-428f-9f5c-73c8369d671c", {"password":"89505e93-92b3-428f-9f5c-73c8369d671c","newPassword":"2d9b809f-0438-47ef-b580-928f6103c90c","newPasswordConfirm":"2d9b809f-0438-47ef-b580-928f6103c90c"}, requestBody.password) +18:00:44.926 [XNIO-1 task-1] K7wEoFlcRH2dv1KJvjHARw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d9b809f-0438-47ef-b580-928f6103c90c", {"password":"89505e93-92b3-428f-9f5c-73c8369d671c","newPassword":"2d9b809f-0438-47ef-b580-928f6103c90c","newPasswordConfirm":"2d9b809f-0438-47ef-b580-928f6103c90c"}, requestBody.newPassword) +18:00:44.927 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c20433b0-10fc-4d72-bd33-ef13d5b0ae7f +18:00:44.929 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c20433b0-10fc-4d72-bd33-ef13d5b0ae7f +18:00:44.958 [XNIO-1 task-1] qJ9KPrxLRMGZjRjexmyagQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/607cb481, base path is set to: null +18:00:44.958 [XNIO-1 task-1] qJ9KPrxLRMGZjRjexmyagQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.958 [XNIO-1 task-1] qJ9KPrxLRMGZjRjexmyagQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.958 [XNIO-1 task-1] qJ9KPrxLRMGZjRjexmyagQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/607cb481, base path is set to: null +18:00:44.958 [XNIO-1 task-1] qJ9KPrxLRMGZjRjexmyagQ DEBUG com.networknt.schema.TypeValidator debug - validate( "607cb481", "607cb481", userId) +18:00:44.962 [XNIO-1 task-1] ENZHK_YKTouSvgb56KsPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.963 [XNIO-1 task-1] ENZHK_YKTouSvgb56KsPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.963 [XNIO-1 task-1] ENZHK_YKTouSvgb56KsPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.980 [XNIO-1 task-1] Xmm51J-OQqOhFw0Rw3_d0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd4bfb06 +18:00:44.980 [XNIO-1 task-1] Xmm51J-OQqOhFw0Rw3_d0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:44.980 [XNIO-1 task-1] Xmm51J-OQqOhFw0Rw3_d0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:44.980 [XNIO-1 task-1] Xmm51J-OQqOhFw0Rw3_d0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fd4bfb06, base path is set to: null +18:00:44.980 [XNIO-1 task-1] Xmm51J-OQqOhFw0Rw3_d0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd4bfb06 +18:00:44.993 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:44.993 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:44.993 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:44.993 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:44.994 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:44.994 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG com.networknt.schema.TypeValidator debug - validate( "fd4bfb06", "fd4bfb06", userId) +18:00:44.994 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPassword":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPasswordConfirm":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf"}, {"password":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPassword":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPasswordConfirm":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf"}, requestBody) +18:00:44.994 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG com.networknt.schema.TypeValidator debug - validate( "f7b0a2a0-a6af-40b9-b31e-327141ecbfbf", {"password":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPassword":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPasswordConfirm":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf"}, requestBody.newPasswordConfirm) +18:00:44.995 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG com.networknt.schema.TypeValidator debug - validate( "c7a5de6c-6049-41d5-80e1-4aa6381f6109", {"password":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPassword":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPasswordConfirm":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf"}, requestBody.password) +18:00:44.995 [XNIO-1 task-1] ahoKwB9cRLmFe2ZaVU8l4A DEBUG com.networknt.schema.TypeValidator debug - validate( "f7b0a2a0-a6af-40b9-b31e-327141ecbfbf", {"password":"c7a5de6c-6049-41d5-80e1-4aa6381f6109","newPassword":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPasswordConfirm":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf"}, requestBody.newPassword) +18:00:45.019 [XNIO-1 task-1] QeW80ZU5RWqmF6t7eD5T0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.019 [XNIO-1 task-1] QeW80ZU5RWqmF6t7eD5T0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.020 [XNIO-1 task-1] QeW80ZU5RWqmF6t7eD5T0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.027 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d1c82ff3 +18:00:45.029 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d1c82ff3 +18:00:45.052 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:52b1193d +18:00:45.062 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:45.063 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.063 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.063 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:45.063 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:45.064 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fd4bfb06", "fd4bfb06", userId) +18:00:45.065 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPassword":"3ab993e2-9e18-471d-8590-70adeea26248","newPasswordConfirm":"3ab993e2-9e18-471d-8590-70adeea26248"}, {"password":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPassword":"3ab993e2-9e18-471d-8590-70adeea26248","newPasswordConfirm":"3ab993e2-9e18-471d-8590-70adeea26248"}, requestBody) +18:00:45.065 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3ab993e2-9e18-471d-8590-70adeea26248", {"password":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPassword":"3ab993e2-9e18-471d-8590-70adeea26248","newPasswordConfirm":"3ab993e2-9e18-471d-8590-70adeea26248"}, requestBody.newPasswordConfirm) +18:00:45.065 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f7b0a2a0-a6af-40b9-b31e-327141ecbfbf", {"password":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPassword":"3ab993e2-9e18-471d-8590-70adeea26248","newPasswordConfirm":"3ab993e2-9e18-471d-8590-70adeea26248"}, requestBody.password) +18:00:45.065 [XNIO-1 task-1] oA13qsy9Td-vqz3-QoIK7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3ab993e2-9e18-471d-8590-70adeea26248", {"password":"f7b0a2a0-a6af-40b9-b31e-327141ecbfbf","newPassword":"3ab993e2-9e18-471d-8590-70adeea26248","newPasswordConfirm":"3ab993e2-9e18-471d-8590-70adeea26248"}, requestBody.newPassword) +18:00:45.086 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:740eb2d2-0d0e-40c5-8651-aee563cd02d6 +18:00:45.087 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:740eb2d2-0d0e-40c5-8651-aee563cd02d6 +18:00:45.099 [XNIO-1 task-1] 9HrdVdI3QFezs_hFqp97mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:45.099 [XNIO-1 task-1] 9HrdVdI3QFezs_hFqp97mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.099 [XNIO-1 task-1] 9HrdVdI3QFezs_hFqp97mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.099 [XNIO-1 task-1] 9HrdVdI3QFezs_hFqp97mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/607cb481 +18:00:45.126 [XNIO-1 task-1] rZS1mj7TQW6BJ-smDJosxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.126 [XNIO-1 task-1] rZS1mj7TQW6BJ-smDJosxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.127 [XNIO-1 task-1] rZS1mj7TQW6BJ-smDJosxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.154 [XNIO-1 task-1] DqDCC2E5S6Kyca5uvps2kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1361aa6f, base path is set to: null +18:00:45.154 [XNIO-1 task-1] DqDCC2E5S6Kyca5uvps2kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.154 [XNIO-1 task-1] DqDCC2E5S6Kyca5uvps2kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.155 [XNIO-1 task-1] DqDCC2E5S6Kyca5uvps2kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1361aa6f, base path is set to: null +18:00:45.155 [XNIO-1 task-1] DqDCC2E5S6Kyca5uvps2kA DEBUG com.networknt.schema.TypeValidator debug - validate( "1361aa6f", "1361aa6f", userId) +18:00:45.157 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe63e39d +18:00:45.161 [XNIO-1 task-1] Awhi6L5YSgqGd6oJwypjQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.161 [XNIO-1 task-1] Awhi6L5YSgqGd6oJwypjQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.161 [XNIO-1 task-1] Awhi6L5YSgqGd6oJwypjQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.197 [XNIO-1 task-1] -Nio5GztSzSSg0T7ESOBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.197 [XNIO-1 task-1] -Nio5GztSzSSg0T7ESOBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.198 [XNIO-1 task-1] -Nio5GztSzSSg0T7ESOBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.220 [XNIO-1 task-1] CoDpmNWbT-WvAVM9-OlMPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.221 [XNIO-1 task-1] CoDpmNWbT-WvAVM9-OlMPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.221 [XNIO-1 task-1] CoDpmNWbT-WvAVM9-OlMPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.257 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d1c82ff3 +18:00:45.258 [XNIO-1 task-1] Y2TJVAl-QBKNuslFZdInvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/90eee918 +18:00:45.258 [XNIO-1 task-1] Y2TJVAl-QBKNuslFZdInvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.258 [XNIO-1 task-1] Y2TJVAl-QBKNuslFZdInvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.258 [XNIO-1 task-1] Y2TJVAl-QBKNuslFZdInvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/90eee918 +18:00:45.267 [XNIO-1 task-1] Il96qWcKQleCrXR08PDyHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/90eee918, base path is set to: null +18:00:45.267 [XNIO-1 task-1] Il96qWcKQleCrXR08PDyHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.267 [XNIO-1 task-1] Il96qWcKQleCrXR08PDyHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.268 [XNIO-1 task-1] Il96qWcKQleCrXR08PDyHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/90eee918, base path is set to: null +18:00:45.269 [XNIO-1 task-1] Il96qWcKQleCrXR08PDyHw DEBUG com.networknt.schema.TypeValidator debug - validate( "90eee918", "90eee918", userId) +18:00:45.273 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.273 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.273 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.273 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:45.276 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.277 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2d9b809f-0438-47ef-b580-928f6103c90c","newPassword":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPasswordConfirm":"82ef52dd-df6c-4ad3-850e-e989236aee7a"}, {"password":"2d9b809f-0438-47ef-b580-928f6103c90c","newPassword":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPasswordConfirm":"82ef52dd-df6c-4ad3-850e-e989236aee7a"}, requestBody) +18:00:45.278 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2d9b809f-0438-47ef-b580-928f6103c90c","newPassword":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPasswordConfirm":"82ef52dd-df6c-4ad3-850e-e989236aee7a"}, {"password":"2d9b809f-0438-47ef-b580-928f6103c90c","newPassword":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPasswordConfirm":"82ef52dd-df6c-4ad3-850e-e989236aee7a"}, requestBody) +18:00:45.278 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG com.networknt.schema.FormatValidator debug - validate( "82ef52dd-df6c-4ad3-850e-e989236aee7a", {"password":"2d9b809f-0438-47ef-b580-928f6103c90c","newPassword":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPasswordConfirm":"82ef52dd-df6c-4ad3-850e-e989236aee7a"}, requestBody.newPasswordConfirm) +18:00:45.278 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG com.networknt.schema.FormatValidator debug - validate( "2d9b809f-0438-47ef-b580-928f6103c90c", {"password":"2d9b809f-0438-47ef-b580-928f6103c90c","newPassword":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPasswordConfirm":"82ef52dd-df6c-4ad3-850e-e989236aee7a"}, requestBody.password) +18:00:45.278 [XNIO-1 task-1] MMLWgtbHS0i3ajzNGKKK-w DEBUG com.networknt.schema.FormatValidator debug - validate( "82ef52dd-df6c-4ad3-850e-e989236aee7a", {"password":"2d9b809f-0438-47ef-b580-928f6103c90c","newPassword":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPasswordConfirm":"82ef52dd-df6c-4ad3-850e-e989236aee7a"}, requestBody.newPassword) +18:00:45.302 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.302 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.302 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.302 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:45.303 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.303 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPassword":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPasswordConfirm":"424f772b-7e42-4dd8-a878-480314c1d6ef"}, {"password":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPassword":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPasswordConfirm":"424f772b-7e42-4dd8-a878-480314c1d6ef"}, requestBody) +18:00:45.303 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPassword":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPasswordConfirm":"424f772b-7e42-4dd8-a878-480314c1d6ef"}, {"password":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPassword":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPasswordConfirm":"424f772b-7e42-4dd8-a878-480314c1d6ef"}, requestBody) +18:00:45.304 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG com.networknt.schema.FormatValidator debug - validate( "424f772b-7e42-4dd8-a878-480314c1d6ef", {"password":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPassword":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPasswordConfirm":"424f772b-7e42-4dd8-a878-480314c1d6ef"}, requestBody.newPasswordConfirm) +18:00:45.304 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG com.networknt.schema.FormatValidator debug - validate( "82ef52dd-df6c-4ad3-850e-e989236aee7a", {"password":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPassword":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPasswordConfirm":"424f772b-7e42-4dd8-a878-480314c1d6ef"}, requestBody.password) +18:00:45.304 [XNIO-1 task-1] F6W6yk2HRkCaOFncEp3VCw DEBUG com.networknt.schema.FormatValidator debug - validate( "424f772b-7e42-4dd8-a878-480314c1d6ef", {"password":"82ef52dd-df6c-4ad3-850e-e989236aee7a","newPassword":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPasswordConfirm":"424f772b-7e42-4dd8-a878-480314c1d6ef"}, requestBody.newPassword) +18:00:45.342 [XNIO-1 task-1] IVxUYlxZSM6A0aaNPhbmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.342 [XNIO-1 task-1] IVxUYlxZSM6A0aaNPhbmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.342 [XNIO-1 task-1] IVxUYlxZSM6A0aaNPhbmeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.342 [XNIO-1 task-1] IVxUYlxZSM6A0aaNPhbmeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.369 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.369 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.369 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.369 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:45.370 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.371 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPassword":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPasswordConfirm":"944b9d15-4852-4ad1-ab3c-5725bf74de16"}, {"password":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPassword":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPasswordConfirm":"944b9d15-4852-4ad1-ab3c-5725bf74de16"}, requestBody) +18:00:45.371 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPassword":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPasswordConfirm":"944b9d15-4852-4ad1-ab3c-5725bf74de16"}, {"password":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPassword":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPasswordConfirm":"944b9d15-4852-4ad1-ab3c-5725bf74de16"}, requestBody) +18:00:45.371 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG com.networknt.schema.FormatValidator debug - validate( "944b9d15-4852-4ad1-ab3c-5725bf74de16", {"password":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPassword":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPasswordConfirm":"944b9d15-4852-4ad1-ab3c-5725bf74de16"}, requestBody.newPasswordConfirm) +18:00:45.371 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG com.networknt.schema.FormatValidator debug - validate( "424f772b-7e42-4dd8-a878-480314c1d6ef", {"password":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPassword":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPasswordConfirm":"944b9d15-4852-4ad1-ab3c-5725bf74de16"}, requestBody.password) +18:00:45.371 [XNIO-1 task-1] 5yxx6XsgTo2Hj6Tljj2JXw DEBUG com.networknt.schema.FormatValidator debug - validate( "944b9d15-4852-4ad1-ab3c-5725bf74de16", {"password":"424f772b-7e42-4dd8-a878-480314c1d6ef","newPassword":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPasswordConfirm":"944b9d15-4852-4ad1-ab3c-5725bf74de16"}, requestBody.newPassword) +18:00:45.403 [XNIO-1 task-1] 95TbY4fuSUy3B377zhUb7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.403 [XNIO-1 task-1] 95TbY4fuSUy3B377zhUb7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.403 [XNIO-1 task-1] 95TbY4fuSUy3B377zhUb7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.403 [XNIO-1 task-1] 95TbY4fuSUy3B377zhUb7w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.413 [XNIO-1 task-1] 2XcENtDeRjW1m-8AOK7D1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.413 [XNIO-1 task-1] 2XcENtDeRjW1m-8AOK7D1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.414 [XNIO-1 task-1] 2XcENtDeRjW1m-8AOK7D1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.414 [XNIO-1 task-1] 2XcENtDeRjW1m-8AOK7D1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.431 [XNIO-1 task-1] ZMw10_6MTFq-SIFcXBvTkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1361aa6f +18:00:45.431 [XNIO-1 task-1] ZMw10_6MTFq-SIFcXBvTkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.431 [XNIO-1 task-1] ZMw10_6MTFq-SIFcXBvTkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.431 [XNIO-1 task-1] ZMw10_6MTFq-SIFcXBvTkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1361aa6f +18:00:45.434 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3121e9b3-ba5e-4568-adc6-86bb696c0d58 +18:00:45.440 [XNIO-1 task-1] XxL-276mSyqCy_7rFOVOMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.440 [XNIO-1 task-1] XxL-276mSyqCy_7rFOVOMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.441 [XNIO-1 task-1] XxL-276mSyqCy_7rFOVOMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.443 [XNIO-1 task-1] XxL-276mSyqCy_7rFOVOMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.487 [XNIO-1 task-1] 95nZzX4cRyqegSRZSSP4LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.488 [XNIO-1 task-1] 95nZzX4cRyqegSRZSSP4LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.488 [XNIO-1 task-1] 95nZzX4cRyqegSRZSSP4LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.501 [XNIO-1 task-1] _D2Ymq0WRj-CnyXi6PGaHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/52b1193d, base path is set to: null +18:00:45.501 [XNIO-1 task-1] _D2Ymq0WRj-CnyXi6PGaHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.501 [XNIO-1 task-1] _D2Ymq0WRj-CnyXi6PGaHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.501 [XNIO-1 task-1] _D2Ymq0WRj-CnyXi6PGaHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/52b1193d, base path is set to: null +18:00:45.502 [XNIO-1 task-1] _D2Ymq0WRj-CnyXi6PGaHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "52b1193d", "52b1193d", userId) +18:00:45.513 [XNIO-1 task-1] 3e49Ahe-ToGkYat-t1GguQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/90eee918, base path is set to: null +18:00:45.514 [XNIO-1 task-1] 3e49Ahe-ToGkYat-t1GguQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.514 [XNIO-1 task-1] 3e49Ahe-ToGkYat-t1GguQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.514 [XNIO-1 task-1] 3e49Ahe-ToGkYat-t1GguQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/90eee918, base path is set to: null +18:00:45.514 [XNIO-1 task-1] 3e49Ahe-ToGkYat-t1GguQ DEBUG com.networknt.schema.TypeValidator debug - validate( "90eee918", "90eee918", userId) +18:00:45.527 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.527 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.527 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.527 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:45.528 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/90eee918 +18:00:45.528 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPassword":"dd0ae04e-70b8-47db-8021-e40c03e599fc","newPasswordConfirm":"dd0ae04e-70b8-47db-8021-e40c03e599fc"}, {"password":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPassword":"dd0ae04e-70b8-47db-8021-e40c03e599fc","newPasswordConfirm":"dd0ae04e-70b8-47db-8021-e40c03e599fc"}, requestBody) +18:00:45.528 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPassword":"dd0ae04e-70b8-47db-8021-e40c03e599fc","newPasswordConfirm":"dd0ae04e-70b8-47db-8021-e40c03e599fc"}, {"password":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPassword":"dd0ae04e-70b8-47db-8021-e40c03e599fc","newPasswordConfirm":"dd0ae04e-70b8-47db-8021-e40c03e599fc"}, requestBody) +18:00:45.529 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG com.networknt.schema.FormatValidator debug - validate( "dd0ae04e-70b8-47db-8021-e40c03e599fc", {"password":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPassword":"dd0ae04e-70b8-47db-8021-e40c03e599fc","newPasswordConfirm":"dd0ae04e-70b8-47db-8021-e40c03e599fc"}, requestBody.newPasswordConfirm) +18:00:45.529 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG com.networknt.schema.FormatValidator debug - validate( "944b9d15-4852-4ad1-ab3c-5725bf74de16", {"password":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPassword":"dd0ae04e-70b8-47db-8021-e40c03e599fc","newPasswordConfirm":"dd0ae04e-70b8-47db-8021-e40c03e599fc"}, requestBody.password) +18:00:45.529 [XNIO-1 task-1] nnIdGaiBQPSIElu3MmSGUA DEBUG com.networknt.schema.FormatValidator debug - validate( "dd0ae04e-70b8-47db-8021-e40c03e599fc", {"password":"944b9d15-4852-4ad1-ab3c-5725bf74de16","newPassword":"dd0ae04e-70b8-47db-8021-e40c03e599fc","newPasswordConfirm":"dd0ae04e-70b8-47db-8021-e40c03e599fc"}, requestBody.newPassword) +18:00:45.538 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5fa6a6f5-8541-49f0-86a8-259525091cf9 +18:00:45.538 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe63e39d +18:00:45.565 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3931a09b, base path is set to: null +18:00:45.566 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.566 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.566 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:45.566 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3931a09b, base path is set to: null +18:00:45.568 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG com.networknt.schema.TypeValidator debug - validate( "3931a09b", "3931a09b", userId) +18:00:45.568 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5aa64566-d299-4a0a-bf2e-8e74311cf291","newPassword":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPasswordConfirm":"b4515fef-1df9-4ccc-952c-d9428938d55c"}, {"password":"5aa64566-d299-4a0a-bf2e-8e74311cf291","newPassword":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPasswordConfirm":"b4515fef-1df9-4ccc-952c-d9428938d55c"}, requestBody) +18:00:45.569 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4515fef-1df9-4ccc-952c-d9428938d55c", {"password":"5aa64566-d299-4a0a-bf2e-8e74311cf291","newPassword":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPasswordConfirm":"b4515fef-1df9-4ccc-952c-d9428938d55c"}, requestBody.newPasswordConfirm) +18:00:45.569 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG com.networknt.schema.TypeValidator debug - validate( "5aa64566-d299-4a0a-bf2e-8e74311cf291", {"password":"5aa64566-d299-4a0a-bf2e-8e74311cf291","newPassword":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPasswordConfirm":"b4515fef-1df9-4ccc-952c-d9428938d55c"}, requestBody.password) +18:00:45.569 [XNIO-1 task-1] Vig9hiKETXO1hczZIzEqnw DEBUG com.networknt.schema.TypeValidator debug - validate( "b4515fef-1df9-4ccc-952c-d9428938d55c", {"password":"5aa64566-d299-4a0a-bf2e-8e74311cf291","newPassword":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPasswordConfirm":"b4515fef-1df9-4ccc-952c-d9428938d55c"}, requestBody.newPassword) +18:00:45.567 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee464fea-975e-46d4-813e-eac9359f7789 +18:00:45.575 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ee464fea-975e-46d4-813e-eac9359f7789 +18:00:45.587 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b2b8c1c6-1b10-40a5-96ab-34d1c9229ae7 +18:00:45.611 [XNIO-1 task-1] 8Z8rFJecTcqgR_jr4IzSxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.611 [XNIO-1 task-1] 8Z8rFJecTcqgR_jr4IzSxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.611 [XNIO-1 task-1] 8Z8rFJecTcqgR_jr4IzSxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.627 [XNIO-1 task-1] RKe-4BUxQJSPbRpLS5pwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.627 [XNIO-1 task-1] RKe-4BUxQJSPbRpLS5pwHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.631 [XNIO-1 task-1] RKe-4BUxQJSPbRpLS5pwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.646 [XNIO-1 task-1] Wx7rmAxeQC-xkvQufsTnLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.647 [XNIO-1 task-1] Wx7rmAxeQC-xkvQufsTnLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.647 [XNIO-1 task-1] Wx7rmAxeQC-xkvQufsTnLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.648 [XNIO-1 task-1] Wx7rmAxeQC-xkvQufsTnLw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.654 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe63e39d +18:00:45.659 [XNIO-1 task-1] jt8eGp5wRDCRsECs9r8LSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1361aa6f, base path is set to: null +18:00:45.659 [XNIO-1 task-1] jt8eGp5wRDCRsECs9r8LSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.661 [XNIO-1 task-1] jt8eGp5wRDCRsECs9r8LSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.661 [XNIO-1 task-1] jt8eGp5wRDCRsECs9r8LSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1361aa6f, base path is set to: null +18:00:45.666 [XNIO-1 task-1] jt8eGp5wRDCRsECs9r8LSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1361aa6f", "1361aa6f", userId) +18:00:45.675 [XNIO-1 task-1] jorfd0VrShCsIbRGYS8dyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1361aa6f +18:00:45.675 [XNIO-1 task-1] jorfd0VrShCsIbRGYS8dyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.675 [XNIO-1 task-1] jorfd0VrShCsIbRGYS8dyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.675 [XNIO-1 task-1] jorfd0VrShCsIbRGYS8dyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1361aa6f +18:00:45.691 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3931a09b, base path is set to: null +18:00:45.692 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.692 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.692 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:45.693 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3931a09b, base path is set to: null +18:00:45.693 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3931a09b", "3931a09b", userId) +18:00:45.694 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPassword":"50d62798-ea53-4238-ae60-afcc747a67bf","newPasswordConfirm":"50d62798-ea53-4238-ae60-afcc747a67bf"}, {"password":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPassword":"50d62798-ea53-4238-ae60-afcc747a67bf","newPasswordConfirm":"50d62798-ea53-4238-ae60-afcc747a67bf"}, requestBody) +18:00:45.694 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50d62798-ea53-4238-ae60-afcc747a67bf", {"password":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPassword":"50d62798-ea53-4238-ae60-afcc747a67bf","newPasswordConfirm":"50d62798-ea53-4238-ae60-afcc747a67bf"}, requestBody.newPasswordConfirm) +18:00:45.694 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4515fef-1df9-4ccc-952c-d9428938d55c", {"password":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPassword":"50d62798-ea53-4238-ae60-afcc747a67bf","newPasswordConfirm":"50d62798-ea53-4238-ae60-afcc747a67bf"}, requestBody.password) +18:00:45.694 [XNIO-1 task-1] R6h33qdqQj-1DR45SnMKnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50d62798-ea53-4238-ae60-afcc747a67bf", {"password":"b4515fef-1df9-4ccc-952c-d9428938d55c","newPassword":"50d62798-ea53-4238-ae60-afcc747a67bf","newPasswordConfirm":"50d62798-ea53-4238-ae60-afcc747a67bf"}, requestBody.newPassword) +18:00:45.733 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fef5dbc9 +18:00:45.735 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fef5dbc9 +18:00:45.738 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fd4bfb06 +18:00:45.738 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.738 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.738 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:45.738 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fd4bfb06 +18:00:45.739 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3ab993e2-9e18-471d-8590-70adeea26248","newPassword":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPasswordConfirm":"20bd3a2c-8c05-4a57-9206-e1d716900c18"}, {"password":"3ab993e2-9e18-471d-8590-70adeea26248","newPassword":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPasswordConfirm":"20bd3a2c-8c05-4a57-9206-e1d716900c18"}, requestBody) +18:00:45.739 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3ab993e2-9e18-471d-8590-70adeea26248","newPassword":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPasswordConfirm":"20bd3a2c-8c05-4a57-9206-e1d716900c18"}, {"password":"3ab993e2-9e18-471d-8590-70adeea26248","newPassword":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPasswordConfirm":"20bd3a2c-8c05-4a57-9206-e1d716900c18"}, requestBody) +18:00:45.739 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "20bd3a2c-8c05-4a57-9206-e1d716900c18", {"password":"3ab993e2-9e18-471d-8590-70adeea26248","newPassword":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPasswordConfirm":"20bd3a2c-8c05-4a57-9206-e1d716900c18"}, requestBody.newPasswordConfirm) +18:00:45.739 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "3ab993e2-9e18-471d-8590-70adeea26248", {"password":"3ab993e2-9e18-471d-8590-70adeea26248","newPassword":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPasswordConfirm":"20bd3a2c-8c05-4a57-9206-e1d716900c18"}, requestBody.password) +18:00:45.739 [XNIO-1 task-1] FSYCPPPgQgmwJ6u5sbOC-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "20bd3a2c-8c05-4a57-9206-e1d716900c18", {"password":"3ab993e2-9e18-471d-8590-70adeea26248","newPassword":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPasswordConfirm":"20bd3a2c-8c05-4a57-9206-e1d716900c18"}, requestBody.newPassword) +18:00:45.767 [XNIO-1 task-1] 6VLcz07oRkmvR1WoJX2LjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd4bfb06 +18:00:45.767 [XNIO-1 task-1] 6VLcz07oRkmvR1WoJX2LjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.767 [XNIO-1 task-1] 6VLcz07oRkmvR1WoJX2LjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.767 [XNIO-1 task-1] 6VLcz07oRkmvR1WoJX2LjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd4bfb06 +18:00:45.778 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:45.778 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.778 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.779 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:45.779 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:45.779 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "fd4bfb06", "fd4bfb06", userId) +18:00:45.780 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPassword":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPasswordConfirm":"00856756-56da-434b-8fbd-323d3d4c3ff2"}, {"password":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPassword":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPasswordConfirm":"00856756-56da-434b-8fbd-323d3d4c3ff2"}, requestBody) +18:00:45.780 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "00856756-56da-434b-8fbd-323d3d4c3ff2", {"password":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPassword":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPasswordConfirm":"00856756-56da-434b-8fbd-323d3d4c3ff2"}, requestBody.newPasswordConfirm) +18:00:45.780 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "20bd3a2c-8c05-4a57-9206-e1d716900c18", {"password":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPassword":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPasswordConfirm":"00856756-56da-434b-8fbd-323d3d4c3ff2"}, requestBody.password) +18:00:45.780 [XNIO-1 task-1] f5ol0BDXTq2L9rJiFvm_Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "00856756-56da-434b-8fbd-323d3d4c3ff2", {"password":"20bd3a2c-8c05-4a57-9206-e1d716900c18","newPassword":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPasswordConfirm":"00856756-56da-434b-8fbd-323d3d4c3ff2"}, requestBody.newPassword) +18:00:45.806 [XNIO-1 task-1] BdSBv5EFTDaxtgVWJ_mGiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.806 [XNIO-1 task-1] BdSBv5EFTDaxtgVWJ_mGiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.807 [XNIO-1 task-1] BdSBv5EFTDaxtgVWJ_mGiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.826 [XNIO-1 task-1] 1mVTjhwrQM-9qSEx-uXELg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.826 [XNIO-1 task-1] 1mVTjhwrQM-9qSEx-uXELg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.826 [XNIO-1 task-1] 1mVTjhwrQM-9qSEx-uXELg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.839 [XNIO-1 task-1] 7sqXJ3W9Q6COTBMtKLRyug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.840 [XNIO-1 task-1] 7sqXJ3W9Q6COTBMtKLRyug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.840 [XNIO-1 task-1] 7sqXJ3W9Q6COTBMtKLRyug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:45.840 [XNIO-1 task-1] 7sqXJ3W9Q6COTBMtKLRyug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:45.845 [XNIO-1 task-1] SBdvKouZRayBEgvGYWs9gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3931a09b, base path is set to: null +18:00:45.846 [XNIO-1 task-1] SBdvKouZRayBEgvGYWs9gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.846 [XNIO-1 task-1] SBdvKouZRayBEgvGYWs9gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.846 [XNIO-1 task-1] SBdvKouZRayBEgvGYWs9gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3931a09b, base path is set to: null +18:00:45.846 [XNIO-1 task-1] SBdvKouZRayBEgvGYWs9gw DEBUG com.networknt.schema.TypeValidator debug - validate( "3931a09b", "3931a09b", userId) +18:00:45.851 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3931a09b +18:00:45.851 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.851 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.851 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:45.852 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3931a09b +18:00:45.853 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"50d62798-ea53-4238-ae60-afcc747a67bf","newPassword":"09104a46-2399-4737-ae70-5acf32c284cc","newPasswordConfirm":"09104a46-2399-4737-ae70-5acf32c284cc"}, {"password":"50d62798-ea53-4238-ae60-afcc747a67bf","newPassword":"09104a46-2399-4737-ae70-5acf32c284cc","newPasswordConfirm":"09104a46-2399-4737-ae70-5acf32c284cc"}, requestBody) +18:00:45.853 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"50d62798-ea53-4238-ae60-afcc747a67bf","newPassword":"09104a46-2399-4737-ae70-5acf32c284cc","newPasswordConfirm":"09104a46-2399-4737-ae70-5acf32c284cc"}, {"password":"50d62798-ea53-4238-ae60-afcc747a67bf","newPassword":"09104a46-2399-4737-ae70-5acf32c284cc","newPasswordConfirm":"09104a46-2399-4737-ae70-5acf32c284cc"}, requestBody) +18:00:45.854 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG com.networknt.schema.FormatValidator debug - validate( "09104a46-2399-4737-ae70-5acf32c284cc", {"password":"50d62798-ea53-4238-ae60-afcc747a67bf","newPassword":"09104a46-2399-4737-ae70-5acf32c284cc","newPasswordConfirm":"09104a46-2399-4737-ae70-5acf32c284cc"}, requestBody.newPasswordConfirm) +18:00:45.854 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG com.networknt.schema.FormatValidator debug - validate( "50d62798-ea53-4238-ae60-afcc747a67bf", {"password":"50d62798-ea53-4238-ae60-afcc747a67bf","newPassword":"09104a46-2399-4737-ae70-5acf32c284cc","newPasswordConfirm":"09104a46-2399-4737-ae70-5acf32c284cc"}, requestBody.password) +18:00:45.854 [XNIO-1 task-1] omSVcS-8RVuRl_nWcLPxUA DEBUG com.networknt.schema.FormatValidator debug - validate( "09104a46-2399-4737-ae70-5acf32c284cc", {"password":"50d62798-ea53-4238-ae60-afcc747a67bf","newPassword":"09104a46-2399-4737-ae70-5acf32c284cc","newPasswordConfirm":"09104a46-2399-4737-ae70-5acf32c284cc"}, requestBody.newPassword) +18:00:45.885 [XNIO-1 task-1] bYMvLOsKSFO3gVVUPTHSPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.885 [XNIO-1 task-1] bYMvLOsKSFO3gVVUPTHSPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.886 [XNIO-1 task-1] bYMvLOsKSFO3gVVUPTHSPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.886 [XNIO-1 task-1] bYMvLOsKSFO3gVVUPTHSPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.905 [XNIO-1 task-1] lM7aFa93R-W9nZhQkQrrgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.905 [XNIO-1 task-1] lM7aFa93R-W9nZhQkQrrgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.905 [XNIO-1 task-1] lM7aFa93R-W9nZhQkQrrgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.906 [XNIO-1 task-1] lM7aFa93R-W9nZhQkQrrgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.915 [XNIO-1 task-1] KyAAZhxeSGSG4zbu-4-mZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3931a09b +18:00:45.915 [XNIO-1 task-1] KyAAZhxeSGSG4zbu-4-mZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.915 [XNIO-1 task-1] KyAAZhxeSGSG4zbu-4-mZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:45.915 [XNIO-1 task-1] KyAAZhxeSGSG4zbu-4-mZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3931a09b +18:00:45.931 [XNIO-1 task-1] 3uKoyLfHTfqOdkdJpuFbbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/90eee918, base path is set to: null +18:00:45.931 [XNIO-1 task-1] 3uKoyLfHTfqOdkdJpuFbbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:45.931 [XNIO-1 task-1] 3uKoyLfHTfqOdkdJpuFbbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:45.931 [XNIO-1 task-1] 3uKoyLfHTfqOdkdJpuFbbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/90eee918, base path is set to: null +18:00:45.931 [XNIO-1 task-1] 3uKoyLfHTfqOdkdJpuFbbw DEBUG com.networknt.schema.TypeValidator debug - validate( "90eee918", "90eee918", userId) +18:00:45.942 [XNIO-1 task-1] Y1egf96jQoavdYGM93G22A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.943 [XNIO-1 task-1] Y1egf96jQoavdYGM93G22A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.943 [XNIO-1 task-1] Y1egf96jQoavdYGM93G22A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.943 [XNIO-1 task-1] Y1egf96jQoavdYGM93G22A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.952 [XNIO-1 task-1] euPa9lCdSfCmYuxq2E0PcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.952 [XNIO-1 task-1] euPa9lCdSfCmYuxq2E0PcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.952 [XNIO-1 task-1] euPa9lCdSfCmYuxq2E0PcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.953 [XNIO-1 task-1] euPa9lCdSfCmYuxq2E0PcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:45.970 [XNIO-1 task-1] wdAZ8OWSRNOl30gXMkrC6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.970 [XNIO-1 task-1] wdAZ8OWSRNOl30gXMkrC6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.971 [XNIO-1 task-1] wdAZ8OWSRNOl30gXMkrC6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.984 [XNIO-1 task-1] d2QF3c6pSeGY3PR-5Ee4Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.984 [XNIO-1 task-1] d2QF3c6pSeGY3PR-5Ee4Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.985 [XNIO-1 task-1] d2QF3c6pSeGY3PR-5Ee4Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.996 [XNIO-1 task-1] ICBhmQ5jR-qRqCiarNXamg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.997 [XNIO-1 task-1] ICBhmQ5jR-qRqCiarNXamg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:45.997 [XNIO-1 task-1] ICBhmQ5jR-qRqCiarNXamg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.006 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d64dd977-6837-44cb-addb-a98cbc419453 +18:00:46.020 [XNIO-1 task-1] QOpW7z9uSf2qLlrdHSA7Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/01b84788 +18:00:46.020 [XNIO-1 task-1] QOpW7z9uSf2qLlrdHSA7Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.021 [XNIO-1 task-1] QOpW7z9uSf2qLlrdHSA7Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.021 [XNIO-1 task-1] QOpW7z9uSf2qLlrdHSA7Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/01b84788 +18:00:46.029 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:46.029 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.029 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.029 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:46.030 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fd4bfb06, base path is set to: null +18:00:46.030 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG com.networknt.schema.TypeValidator debug - validate( "fd4bfb06", "fd4bfb06", userId) +18:00:46.030 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPassword":"a1056b3a-1169-42b4-bc45-45f378d5d933","newPasswordConfirm":"a1056b3a-1169-42b4-bc45-45f378d5d933"}, {"password":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPassword":"a1056b3a-1169-42b4-bc45-45f378d5d933","newPasswordConfirm":"a1056b3a-1169-42b4-bc45-45f378d5d933"}, requestBody) +18:00:46.031 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG com.networknt.schema.TypeValidator debug - validate( "a1056b3a-1169-42b4-bc45-45f378d5d933", {"password":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPassword":"a1056b3a-1169-42b4-bc45-45f378d5d933","newPasswordConfirm":"a1056b3a-1169-42b4-bc45-45f378d5d933"}, requestBody.newPasswordConfirm) +18:00:46.031 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG com.networknt.schema.TypeValidator debug - validate( "00856756-56da-434b-8fbd-323d3d4c3ff2", {"password":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPassword":"a1056b3a-1169-42b4-bc45-45f378d5d933","newPasswordConfirm":"a1056b3a-1169-42b4-bc45-45f378d5d933"}, requestBody.password) +18:00:46.031 [XNIO-1 task-1] KmJEFyGnSqyz7m2gOsaGyw DEBUG com.networknt.schema.TypeValidator debug - validate( "a1056b3a-1169-42b4-bc45-45f378d5d933", {"password":"00856756-56da-434b-8fbd-323d3d4c3ff2","newPassword":"a1056b3a-1169-42b4-bc45-45f378d5d933","newPasswordConfirm":"a1056b3a-1169-42b4-bc45-45f378d5d933"}, requestBody.newPassword) +18:00:46.052 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a26190f7 +18:00:46.054 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a26190f7 +18:00:46.059 [XNIO-1 task-1] vIhDwBY5RMmtFczCMfsb4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/01b84788 +18:00:46.059 [XNIO-1 task-1] vIhDwBY5RMmtFczCMfsb4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.059 [XNIO-1 task-1] vIhDwBY5RMmtFczCMfsb4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.059 [XNIO-1 task-1] vIhDwBY5RMmtFczCMfsb4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/01b84788 +18:00:46.067 [XNIO-1 task-1] Eqhf0pQ2SCmwjRXRdLY7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.067 [XNIO-1 task-1] Eqhf0pQ2SCmwjRXRdLY7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.067 [XNIO-1 task-1] Eqhf0pQ2SCmwjRXRdLY7ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.081 [XNIO-1 task-1] 7gvqw-SSSI6wsVYagm9Nhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.081 [XNIO-1 task-1] 7gvqw-SSSI6wsVYagm9Nhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.081 [XNIO-1 task-1] 7gvqw-SSSI6wsVYagm9Nhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.119 [XNIO-1 task-1] bIo327OiSWK_b9NPKp2BjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fd4bfb06, base path is set to: null +18:00:46.119 [XNIO-1 task-1] bIo327OiSWK_b9NPKp2BjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.120 [XNIO-1 task-1] bIo327OiSWK_b9NPKp2BjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.120 [XNIO-1 task-1] bIo327OiSWK_b9NPKp2BjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fd4bfb06, base path is set to: null +18:00:46.120 [XNIO-1 task-1] bIo327OiSWK_b9NPKp2BjA DEBUG com.networknt.schema.TypeValidator debug - validate( "fd4bfb06", "fd4bfb06", userId) +18:00:46.127 [XNIO-1 task-1] cHFjh3PHTJCqhB0dnZTDQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd4bfb06 +18:00:46.127 [XNIO-1 task-1] cHFjh3PHTJCqhB0dnZTDQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.127 [XNIO-1 task-1] cHFjh3PHTJCqhB0dnZTDQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.127 [XNIO-1 task-1] cHFjh3PHTJCqhB0dnZTDQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fd4bfb06 +18:00:46.149 [XNIO-1 task-1] IzJ7REqfTX6Whs21WdxyMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.149 [XNIO-1 task-1] IzJ7REqfTX6Whs21WdxyMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.150 [XNIO-1 task-1] IzJ7REqfTX6Whs21WdxyMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.233 [XNIO-1 task-1] PMoy5nfLR6ONhtv4zkSM7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.233 [XNIO-1 task-1] PMoy5nfLR6ONhtv4zkSM7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.234 [XNIO-1 task-1] PMoy5nfLR6ONhtv4zkSM7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.256 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fef5dbc9 +18:00:46.262 [XNIO-1 task-1] GbCuQOSxSE-hZRjYqtEDnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.262 [XNIO-1 task-1] GbCuQOSxSE-hZRjYqtEDnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.262 [XNIO-1 task-1] GbCuQOSxSE-hZRjYqtEDnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.266 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a26190f7 +18:00:46.283 [XNIO-1 task-1] -glkvt9oSeeORQMIDhYRog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.284 [XNIO-1 task-1] -glkvt9oSeeORQMIDhYRog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.284 [XNIO-1 task-1] -glkvt9oSeeORQMIDhYRog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.312 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:81d3ef19-6f66-43e3-abe0-af5dcf1b7143 +18:00:46.313 [XNIO-1 task-1] 9d5zfCgpQRaya59n59a0fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eef38271 +18:00:46.313 [XNIO-1 task-1] 9d5zfCgpQRaya59n59a0fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.314 [XNIO-1 task-1] 9d5zfCgpQRaya59n59a0fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.314 [XNIO-1 task-1] 9d5zfCgpQRaya59n59a0fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/eef38271 +18:00:46.315 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:81d3ef19-6f66-43e3-abe0-af5dcf1b7143 +18:00:46.328 [XNIO-1 task-1] aRMU6mmDTB6oZxv_lh3aEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.328 [XNIO-1 task-1] aRMU6mmDTB6oZxv_lh3aEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.328 [XNIO-1 task-1] aRMU6mmDTB6oZxv_lh3aEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.329 [XNIO-1 task-1] aRMU6mmDTB6oZxv_lh3aEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.339 [XNIO-1 task-1] IZbHydgxR0KBTd_TNNKnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.339 [XNIO-1 task-1] IZbHydgxR0KBTd_TNNKnew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.340 [XNIO-1 task-1] IZbHydgxR0KBTd_TNNKnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.364 [XNIO-1 task-1] OhsST4JAQDOwc3gMsUXIGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.364 [XNIO-1 task-1] OhsST4JAQDOwc3gMsUXIGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.365 [XNIO-1 task-1] OhsST4JAQDOwc3gMsUXIGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.374 [XNIO-1 task-1] hI6GllOBRxOPdzGuIYI5zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.374 [XNIO-1 task-1] hI6GllOBRxOPdzGuIYI5zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.375 [XNIO-1 task-1] hI6GllOBRxOPdzGuIYI5zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.396 [XNIO-1 task-1] 9dtzFfuFTIiUqenrFKeyzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.396 [XNIO-1 task-1] 9dtzFfuFTIiUqenrFKeyzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.397 [XNIO-1 task-1] 9dtzFfuFTIiUqenrFKeyzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.411 [XNIO-1 task-1] zZQ_F36TR6imHbkQ1AKeuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21ccbc41, base path is set to: null +18:00:46.411 [XNIO-1 task-1] zZQ_F36TR6imHbkQ1AKeuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.411 [XNIO-1 task-1] zZQ_F36TR6imHbkQ1AKeuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.411 [XNIO-1 task-1] zZQ_F36TR6imHbkQ1AKeuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21ccbc41, base path is set to: null +18:00:46.411 [XNIO-1 task-1] zZQ_F36TR6imHbkQ1AKeuw DEBUG com.networknt.schema.TypeValidator debug - validate( "21ccbc41", "21ccbc41", userId) +18:00:46.415 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe63e39d +18:00:46.421 [XNIO-1 task-1] vYdeRJEdSW2qu4ItG2dXYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.421 [XNIO-1 task-1] vYdeRJEdSW2qu4ItG2dXYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.422 [XNIO-1 task-1] vYdeRJEdSW2qu4ItG2dXYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.445 [XNIO-1 task-1] FECnxOGHS6GX1yP3pmCa0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/18bd7903 +18:00:46.445 [XNIO-1 task-1] FECnxOGHS6GX1yP3pmCa0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.445 [XNIO-1 task-1] FECnxOGHS6GX1yP3pmCa0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.446 [XNIO-1 task-1] FECnxOGHS6GX1yP3pmCa0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/18bd7903 +18:00:46.450 [XNIO-1 task-1] Nkrh18_uSXeA-Z35ieER6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.450 [XNIO-1 task-1] Nkrh18_uSXeA-Z35ieER6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.450 [XNIO-1 task-1] Nkrh18_uSXeA-Z35ieER6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.472 [XNIO-1 task-1] hIWLbvXwScayseJMA5mQKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.472 [XNIO-1 task-1] hIWLbvXwScayseJMA5mQKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.472 [XNIO-1 task-1] hIWLbvXwScayseJMA5mQKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.476 [XNIO-1 task-1] hIWLbvXwScayseJMA5mQKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.484 [XNIO-1 task-1] umYyAAQZTOKpxxzsTJMaKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21ccbc41, base path is set to: null +18:00:46.484 [XNIO-1 task-1] umYyAAQZTOKpxxzsTJMaKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.484 [XNIO-1 task-1] umYyAAQZTOKpxxzsTJMaKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.484 [XNIO-1 task-1] umYyAAQZTOKpxxzsTJMaKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21ccbc41, base path is set to: null +18:00:46.484 [XNIO-1 task-1] umYyAAQZTOKpxxzsTJMaKg DEBUG com.networknt.schema.TypeValidator debug - validate( "21ccbc41", "21ccbc41", userId) +18:00:46.494 [XNIO-1 task-1] Md8Y7r9zSHGOF9OopS8ppA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.494 [XNIO-1 task-1] Md8Y7r9zSHGOF9OopS8ppA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.494 [XNIO-1 task-1] Md8Y7r9zSHGOF9OopS8ppA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.515 [XNIO-1 task-1] HiMtiM8PSu6-nZoelN7jww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21ccbc41, base path is set to: null +18:00:46.515 [XNIO-1 task-1] HiMtiM8PSu6-nZoelN7jww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.515 [XNIO-1 task-1] HiMtiM8PSu6-nZoelN7jww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.515 [XNIO-1 task-1] HiMtiM8PSu6-nZoelN7jww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21ccbc41, base path is set to: null +18:00:46.515 [XNIO-1 task-1] HiMtiM8PSu6-nZoelN7jww DEBUG com.networknt.schema.TypeValidator debug - validate( "21ccbc41", "21ccbc41", userId) +18:00:46.522 [XNIO-1 task-1] 3Znpnf2UTBST6ETPE1KNdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/21ccbc41 +18:00:46.523 [XNIO-1 task-1] 3Znpnf2UTBST6ETPE1KNdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.523 [XNIO-1 task-1] 3Znpnf2UTBST6ETPE1KNdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.523 [XNIO-1 task-1] 3Znpnf2UTBST6ETPE1KNdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/21ccbc41 +18:00:46.537 [XNIO-1 task-1] lPv4EhnoT2SWdmeyJF05Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/337511df, base path is set to: null +18:00:46.537 [XNIO-1 task-1] lPv4EhnoT2SWdmeyJF05Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.537 [XNIO-1 task-1] lPv4EhnoT2SWdmeyJF05Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.538 [XNIO-1 task-1] lPv4EhnoT2SWdmeyJF05Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/337511df, base path is set to: null +18:00:46.539 [XNIO-1 task-1] lPv4EhnoT2SWdmeyJF05Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "337511df", "337511df", userId) +18:00:46.548 [XNIO-1 task-1] Lj8wxhqiQyOAyvWhVUwyXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.548 [XNIO-1 task-1] Lj8wxhqiQyOAyvWhVUwyXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.549 [XNIO-1 task-1] Lj8wxhqiQyOAyvWhVUwyXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.549 [XNIO-1 task-1] Lj8wxhqiQyOAyvWhVUwyXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +18:00:46.561 [XNIO-1 task-1] uAK0PrWNTzuC7da6MRmGzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/337511df +18:00:46.561 [XNIO-1 task-1] uAK0PrWNTzuC7da6MRmGzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.561 [XNIO-1 task-1] uAK0PrWNTzuC7da6MRmGzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.561 [XNIO-1 task-1] uAK0PrWNTzuC7da6MRmGzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/337511df +18:00:46.570 [XNIO-1 task-1] 5TJgZMqmRWeakMrO3kiExw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.571 [XNIO-1 task-1] 5TJgZMqmRWeakMrO3kiExw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.572 [XNIO-1 task-1] 5TJgZMqmRWeakMrO3kiExw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.601 [XNIO-1 task-1] 5MuBD8HeTVu-TAG2y-CoFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.602 [XNIO-1 task-1] 5MuBD8HeTVu-TAG2y-CoFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.602 [XNIO-1 task-1] 5MuBD8HeTVu-TAG2y-CoFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.602 [XNIO-1 task-1] 5MuBD8HeTVu-TAG2y-CoFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.614 [XNIO-1 task-1] Ndn93XdeQN6ytsxJBQCrLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.614 [XNIO-1 task-1] Ndn93XdeQN6ytsxJBQCrLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.615 [XNIO-1 task-1] Ndn93XdeQN6ytsxJBQCrLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.615 [XNIO-1 task-1] Ndn93XdeQN6ytsxJBQCrLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +18:00:46.634 [XNIO-1 task-1] vzxNluTtSOW17Jf-LdkQiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.634 [XNIO-1 task-1] vzxNluTtSOW17Jf-LdkQiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.635 [XNIO-1 task-1] vzxNluTtSOW17Jf-LdkQiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.646 [XNIO-1 task-1] TqPgWZmeTQm_nhrUGZ65ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.646 [XNIO-1 task-1] TqPgWZmeTQm_nhrUGZ65ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.646 [XNIO-1 task-1] TqPgWZmeTQm_nhrUGZ65ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.671 [XNIO-1 task-1] hNXPBuTDQC6ksxMl4ihPSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/59ad75b6, base path is set to: null +18:00:46.671 [XNIO-1 task-1] hNXPBuTDQC6ksxMl4ihPSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.671 [XNIO-1 task-1] hNXPBuTDQC6ksxMl4ihPSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.671 [XNIO-1 task-1] hNXPBuTDQC6ksxMl4ihPSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/59ad75b6, base path is set to: null +18:00:46.672 [XNIO-1 task-1] hNXPBuTDQC6ksxMl4ihPSA DEBUG com.networknt.schema.TypeValidator debug - validate( "59ad75b6", "59ad75b6", userId) +18:00:46.677 [XNIO-1 task-1] MA3WOx_RS-yAWC7AiArXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b726a0d6 +18:00:46.678 [XNIO-1 task-1] MA3WOx_RS-yAWC7AiArXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.678 [XNIO-1 task-1] MA3WOx_RS-yAWC7AiArXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.678 [XNIO-1 task-1] MA3WOx_RS-yAWC7AiArXFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b726a0d6 +18:00:46.689 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d0a43c70, base path is set to: null +18:00:46.689 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.689 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +18:00:46.689 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +18:00:46.689 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/d0a43c70, base path is set to: null +18:00:46.690 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG com.networknt.schema.TypeValidator debug - validate( "d0a43c70", "d0a43c70", userId) +18:00:46.690 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e029fdc2-4d55-4434-ad29-0e41401b38df","newPassword":"66748fd6-37f0-454d-852a-97114321992b","newPasswordConfirm":"66748fd6-37f0-454d-852a-97114321992b"}, {"password":"e029fdc2-4d55-4434-ad29-0e41401b38df","newPassword":"66748fd6-37f0-454d-852a-97114321992b","newPasswordConfirm":"66748fd6-37f0-454d-852a-97114321992b"}, requestBody) +18:00:46.690 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG com.networknt.schema.TypeValidator debug - validate( "66748fd6-37f0-454d-852a-97114321992b", {"password":"e029fdc2-4d55-4434-ad29-0e41401b38df","newPassword":"66748fd6-37f0-454d-852a-97114321992b","newPasswordConfirm":"66748fd6-37f0-454d-852a-97114321992b"}, requestBody.newPasswordConfirm) +18:00:46.690 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG com.networknt.schema.TypeValidator debug - validate( "e029fdc2-4d55-4434-ad29-0e41401b38df", {"password":"e029fdc2-4d55-4434-ad29-0e41401b38df","newPassword":"66748fd6-37f0-454d-852a-97114321992b","newPasswordConfirm":"66748fd6-37f0-454d-852a-97114321992b"}, requestBody.password) +18:00:46.690 [XNIO-1 task-1] I2ZZDfpRSeik7IVzL0-YYA DEBUG com.networknt.schema.TypeValidator debug - validate( "66748fd6-37f0-454d-852a-97114321992b", {"password":"e029fdc2-4d55-4434-ad29-0e41401b38df","newPassword":"66748fd6-37f0-454d-852a-97114321992b","newPasswordConfirm":"66748fd6-37f0-454d-852a-97114321992b"}, requestBody.newPassword) +18:00:46.697 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fe63e39d +18:00:46.719 [XNIO-1 task-1] Zhe3X_xkS3iehw-qER_3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.719 [XNIO-1 task-1] Zhe3X_xkS3iehw-qER_3sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.719 [XNIO-1 task-1] Zhe3X_xkS3iehw-qER_3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.722 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:47ca83bb-3fad-49d8-9e3d-27c9539cba36 +18:00:46.743 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:47ca83bb-3fad-49d8-9e3d-27c9539cba36 +18:00:46.753 [XNIO-1 task-1] 7M3xoBjUTUiOuX4AsT6vRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d0a43c70 +18:00:46.753 [XNIO-1 task-1] 7M3xoBjUTUiOuX4AsT6vRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.753 [XNIO-1 task-1] 7M3xoBjUTUiOuX4AsT6vRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.754 [XNIO-1 task-1] 7M3xoBjUTUiOuX4AsT6vRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d0a43c70 +18:00:46.757 [XNIO-1 task-1] k0ByJLv5SBGUmoHfe9HZqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.757 [XNIO-1 task-1] k0ByJLv5SBGUmoHfe9HZqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.758 [XNIO-1 task-1] k0ByJLv5SBGUmoHfe9HZqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.773 [XNIO-1 task-1] xgXbAm7iTlaJHQeqZd_ttg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.773 [XNIO-1 task-1] xgXbAm7iTlaJHQeqZd_ttg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +18:00:46.773 [XNIO-1 task-1] xgXbAm7iTlaJHQeqZd_ttg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +18:00:46.784 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.788 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b259aea0-dadb-42fb-a780-c057fa836564 +18:00:46.795 [XNIO-1 task-1] qLQxegdgRTmhpbJ0wupAMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/018316b8 +18:00:46.796 [XNIO-1 task-1] qLQxegdgRTmhpbJ0wupAMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +18:00:46.796 [XNIO-1 task-1] qLQxegdgRTmhpbJ0wupAMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +18:00:46.796 [XNIO-1 task-1] qLQxegdgRTmhpbJ0wupAMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +18:00:46.797 [XNIO-1 task-1] qLQxegdgRTmhpbJ0wupAMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/018316b8 +18:00:46.797 [XNIO-1 task-1] qLQxegdgRTmhpbJ0wupAMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"26309979-1fa6-4207-9ba5-069dfd208b2d","newPassword":"785e2cdf-db70-4754-b14a-49a2f1788e0d","newPasswordConfirm":"785e2cdf-db70-4754-b14a-49a2f1788e0d"}, {"password":"26309979-1fa6-4207-9ba5-069dfd208b2d","newPassword":"785e2cdf-db70-4754-b14a-49a2f1788e0d","newPasswordConfirm":"785e2cdf-db70-4754-b14a-49a2f1788e0d"}, requestBody) +18:00:46.798 [XNIO-1 task-1] qLQxegdgRTmhpbJ0wupAMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"26309979-1fa6-4207-9ba5-069dfd208b2d","newPassword":"785e2cdf-db70-4754-b14a-49a2f1788e0d","newPasswordConfirm":"785e2cdf-db70-4754-b14a-49a2f1788e0d"}, {"password":"26309979-1fa6-4207-9ba5-069dfd208b2d","newPassword":"785e2cdf-db70-4754-b14a-49a2f1788e0d","newPasswordConfirm":"785e2cdf-db70-4754-b14a-49a2f1788e0d"}, requestBody) diff --git a/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-client-1.log b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..41c3016 --- /dev/null +++ b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4757 @@ + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:38.421 [XNIO-1 task-2] qvMvF2bHR9OkC9yarWDN1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:38.425 [XNIO-1 task-2] bQNdFXfLT3eKXrQMvOz_jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:38.425 [XNIO-1 task-2] bQNdFXfLT3eKXrQMvOz_jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:38.425 [XNIO-1 task-2] bQNdFXfLT3eKXrQMvOz_jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:38.426 [XNIO-1 task-2] bQNdFXfLT3eKXrQMvOz_jw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:38.458 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:38.458 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:38.459 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:38.461 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:38.461 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:38.462 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG com.networknt.schema.TypeValidator debug - validate( "456a3be8-02a8-41ed-95a3-a840ac8465a6", {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:38.462 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:38.463 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:38.463 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG com.networknt.schema.TypeValidator debug - validate( "55598f1e-ad0c-418c-b542-3181ab6e", {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:38.464 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:38.464 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"55598f1e-ad0c-418c-b542-3181ab6e","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:38.465 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:38.465 [XNIO-1 task-2] cjQN-cSaR1SHUywYdZ6nkg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:38.475 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:38.475 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:38.476 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:38.477 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:38.477 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:38.478 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:38.478 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:38.478 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:38.478 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:38.478 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:38.479 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:38.479 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e70daba2-edd6-4e28-9d00-c4b9641f","clientDesc":"456a3be8-02a8-41ed-95a3-a840ac8465a6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:38.480 [XNIO-1 task-2] nmWNWcETRRCCCs1tXaJJIg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:38.486 [XNIO-1 task-2] jkI_uVCNTgCpVy_geMevCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72bf9481-4fa3-437b-99ad-f036fa8dba8e +19:00:38.487 [XNIO-1 task-2] jkI_uVCNTgCpVy_geMevCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:38.487 [XNIO-1 task-2] jkI_uVCNTgCpVy_geMevCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:38.487 [XNIO-1 task-2] jkI_uVCNTgCpVy_geMevCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72bf9481-4fa3-437b-99ad-f036fa8dba8e +19:00:38.516 [XNIO-1 task-2] l9lbjoCdSBSRomALxU86HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:38.516 [XNIO-1 task-2] l9lbjoCdSBSRomALxU86HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:38.516 [XNIO-1 task-2] l9lbjoCdSBSRomALxU86HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:38.517 [XNIO-1 task-2] l9lbjoCdSBSRomALxU86HA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:38.544 [XNIO-1 task-2] FuAPGhj2RyybBGWBCM-1zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:38.545 [XNIO-1 task-2] FuAPGhj2RyybBGWBCM-1zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:38.545 [XNIO-1 task-2] FuAPGhj2RyybBGWBCM-1zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:38.569 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1a180b9b-d96c-4da4-8722-4b49d94d9145 +19:00:38.600 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - allowPoolSuspension.............false +19:00:38.600 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - catalog.........................none +19:00:38.601 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - connectionTestQuery.............none +19:00:38.601 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSource......................none +19:00:38.601 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSourceJNDI..................none +19:00:38.601 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - driverClassName.................none +19:00:38.601 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - healthCheckRegistry.............none +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - initializationFailTimeout.......1 +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - jdbcUrl.........................jdbc:mysql://mysqldb:3306/oauth2?useSSL=false&disableMariaDbDriver +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - maxLifetime.....................1800000 +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - metricRegistry..................none +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - minimumIdle.....................2 +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - poolName........................"HikariPool-1" +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - registerMbeans..................false +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - schema..........................none +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - transactionIsolation............default +19:00:38.602 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - validationTimeout...............5000 +19:00:38.950 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG com.zaxxer.hikari.pool.HikariPool checkFailFast - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@463fbef2 +19:00:39.043 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1a180b9b-d96c-4da4-8722-4b49d94d9145 +19:00:39.054 [XNIO-1 task-2] LYXiLh4fQu-9xWf7LYjqjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1a180b9b-d96c-4da4-8722-4b49d94d9145, base path is set to: null +19:00:39.055 [XNIO-1 task-2] LYXiLh4fQu-9xWf7LYjqjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.055 [XNIO-1 task-2] LYXiLh4fQu-9xWf7LYjqjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:39.055 [XNIO-1 task-2] LYXiLh4fQu-9xWf7LYjqjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1a180b9b-d96c-4da4-8722-4b49d94d9145, base path is set to: null +19:00:39.056 [XNIO-1 task-2] LYXiLh4fQu-9xWf7LYjqjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1a180b9b-d96c-4da4-8722-4b49d94d9145", "1a180b9b-d96c-4da4-8722-4b49d94d9145", clientId) +19:00:39.079 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool call - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@382125ce +19:00:39.079 [XNIO-1 task-2] w15TdzFsRIOGt7cI9F7eNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.079 [XNIO-1 task-2] w15TdzFsRIOGt7cI9F7eNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.080 [XNIO-1 task-2] w15TdzFsRIOGt7cI9F7eNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.100 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.146 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.179 [XNIO-1 task-2] I4AwpdI3T9KvHJkbol6A0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a180b9b-d96c-4da4-8722-4b49d94d9145 +19:00:39.179 [XNIO-1 task-2] I4AwpdI3T9KvHJkbol6A0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.179 [XNIO-1 task-2] I4AwpdI3T9KvHJkbol6A0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:39.180 [XNIO-1 task-2] I4AwpdI3T9KvHJkbol6A0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a180b9b-d96c-4da4-8722-4b49d94d9145 +19:00:39.181 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1a180b9b-d96c-4da4-8722-4b49d94d9145 +19:00:39.224 [XNIO-1 task-2] Vy7zbLroQUC3se0Wf1NXoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.225 [XNIO-1 task-2] Vy7zbLroQUC3se0Wf1NXoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.225 [XNIO-1 task-2] Vy7zbLroQUC3se0Wf1NXoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:39.226 [XNIO-1 task-2] Vy7zbLroQUC3se0Wf1NXoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.236 [XNIO-1 task-2] yz-jZPJTRYyqKHyk7rwBBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.237 [XNIO-1 task-2] yz-jZPJTRYyqKHyk7rwBBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.238 [XNIO-1 task-2] yz-jZPJTRYyqKHyk7rwBBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.245 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ca2f5c74-4a12-44e0-b6fd-3ae87e0d332b +19:00:39.247 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ca2f5c74-4a12-44e0-b6fd-3ae87e0d332b +19:00:39.260 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.260 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.261 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.262 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.262 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:39.262 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc841f6-8242-49a4-ad00-2a33d8976573", {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:39.262 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:39.263 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:39.263 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "24889e23-36a8-4fc6-a272-0566d939", {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:39.263 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:39.263 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"24889e23-36a8-4fc6-a272-0566d939","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.263 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:39.263 [XNIO-1 task-2] 0Z6NTe73T1ejgoM5DKM_ag DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:39.267 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.267 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.268 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.269 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.269 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.269 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.269 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.269 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:39.269 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:39.269 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.270 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.270 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fcbf5532-0e8a-4078-9e66-f113780a","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:39.270 [XNIO-1 task-2] IcAZ1cqKRSiuoIBVbyP5bA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:39.277 [XNIO-1 task-2] Te_qVFFGSqaOUZaeQyL1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.277 [XNIO-1 task-2] Te_qVFFGSqaOUZaeQyL1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.277 [XNIO-1 task-2] Te_qVFFGSqaOUZaeQyL1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:39.277 [XNIO-1 task-2] Te_qVFFGSqaOUZaeQyL1hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.282 [XNIO-1 task-2] IW8yUkX3T3SxE4-R7SdX7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.283 [XNIO-1 task-2] IW8yUkX3T3SxE4-R7SdX7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.283 [XNIO-1 task-2] IW8yUkX3T3SxE4-R7SdX7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.313 [XNIO-1 task-2] XEu5rvGZSSuX7n_KqPvpEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.313 [XNIO-1 task-2] XEu5rvGZSSuX7n_KqPvpEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.314 [XNIO-1 task-2] XEu5rvGZSSuX7n_KqPvpEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.416 [XNIO-1 task-2] aWuT8ZulTme0iOqhs1-j1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.417 [XNIO-1 task-2] aWuT8ZulTme0iOqhs1-j1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.417 [XNIO-1 task-2] aWuT8ZulTme0iOqhs1-j1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.417 [XNIO-1 task-2] aWuT8ZulTme0iOqhs1-j1A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.440 [XNIO-1 task-2] ABTFm20eT72m8qCnyshJiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca2f5c74-4a12-44e0-b6fd-3ae87e0d332b, base path is set to: null +19:00:39.441 [XNIO-1 task-2] ABTFm20eT72m8qCnyshJiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.441 [XNIO-1 task-2] ABTFm20eT72m8qCnyshJiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:39.442 [XNIO-1 task-2] ABTFm20eT72m8qCnyshJiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ca2f5c74-4a12-44e0-b6fd-3ae87e0d332b, base path is set to: null +19:00:39.442 [XNIO-1 task-2] ABTFm20eT72m8qCnyshJiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca2f5c74-4a12-44e0-b6fd-3ae87e0d332b", "ca2f5c74-4a12-44e0-b6fd-3ae87e0d332b", clientId) +19:00:39.450 [XNIO-1 task-2] 18pAOyg-QUywWA7A11NAfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c575bedc-e82c-4b34-8b6e-5b1566e55997, base path is set to: null +19:00:39.450 [XNIO-1 task-2] 18pAOyg-QUywWA7A11NAfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.450 [XNIO-1 task-2] 18pAOyg-QUywWA7A11NAfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:39.450 [XNIO-1 task-2] 18pAOyg-QUywWA7A11NAfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c575bedc-e82c-4b34-8b6e-5b1566e55997, base path is set to: null +19:00:39.451 [XNIO-1 task-2] 18pAOyg-QUywWA7A11NAfA DEBUG com.networknt.schema.TypeValidator debug - validate( "c575bedc-e82c-4b34-8b6e-5b1566e55997", "c575bedc-e82c-4b34-8b6e-5b1566e55997", clientId) +19:00:39.455 [XNIO-1 task-2] KnfBjFfHTI-_sFZma1whbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.455 [XNIO-1 task-2] KnfBjFfHTI-_sFZma1whbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.456 [XNIO-1 task-2] KnfBjFfHTI-_sFZma1whbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.456 [XNIO-1 task-2] KnfBjFfHTI-_sFZma1whbw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.468 [XNIO-1 task-2] 45zqA9tdROSPsfB6DJAR7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c575bedc-e82c-4b34-8b6e-5b1566e55997 +19:00:39.469 [XNIO-1 task-2] 45zqA9tdROSPsfB6DJAR7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.469 [XNIO-1 task-2] 45zqA9tdROSPsfB6DJAR7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:39.469 [XNIO-1 task-2] 45zqA9tdROSPsfB6DJAR7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c575bedc-e82c-4b34-8b6e-5b1566e55997 +19:00:39.481 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:679c318c +19:00:39.485 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:679c318c +19:00:39.518 [XNIO-1 task-2] ZsDy6PrBRLGzGNVinnJFRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.518 [XNIO-1 task-2] ZsDy6PrBRLGzGNVinnJFRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.518 [XNIO-1 task-2] ZsDy6PrBRLGzGNVinnJFRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:39.518 [XNIO-1 task-2] ZsDy6PrBRLGzGNVinnJFRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd +19:00:39.527 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.527 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.529 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.530 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.531 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.531 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.531 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.531 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:39.531 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:39.531 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.532 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.532 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a463d46-6372-4023-abdb-a7505bd7","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:39.533 [XNIO-1 task-2] NypZ4uH4S1eKI1wJFUuH2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:39.537 [XNIO-1 task-2] DQmHr5X5ScyLADbBcy0SPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.537 [XNIO-1 task-2] DQmHr5X5ScyLADbBcy0SPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.537 [XNIO-1 task-2] DQmHr5X5ScyLADbBcy0SPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.545 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2403bcb8-3ba8-429e-8e64-baddfdafbed6 +19:00:39.558 [XNIO-1 task-2] 4pnz2ilDSPC38XrVFxvvAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd, base path is set to: null +19:00:39.558 [XNIO-1 task-2] 4pnz2ilDSPC38XrVFxvvAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.558 [XNIO-1 task-2] 4pnz2ilDSPC38XrVFxvvAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:39.558 [XNIO-1 task-2] 4pnz2ilDSPC38XrVFxvvAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd, base path is set to: null +19:00:39.559 [XNIO-1 task-2] 4pnz2ilDSPC38XrVFxvvAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a15296a1-5238-46f8-971c-c1b431e4dbbd", "a15296a1-5238-46f8-971c-c1b431e4dbbd", clientId) +19:00:39.562 [XNIO-1 task-2] gRtxXNd3RyKxcFiOdNTD8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.562 [XNIO-1 task-2] gRtxXNd3RyKxcFiOdNTD8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.562 [XNIO-1 task-2] gRtxXNd3RyKxcFiOdNTD8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.563 [XNIO-1 task-2] gRtxXNd3RyKxcFiOdNTD8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.638 [XNIO-1 task-2] 1W5vcJcXQeadmlJ06fEhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2403bcb8-3ba8-429e-8e64-baddfdafbed6 +19:00:39.638 [XNIO-1 task-2] 1W5vcJcXQeadmlJ06fEhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.638 [XNIO-1 task-2] 1W5vcJcXQeadmlJ06fEhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:39.638 [XNIO-1 task-2] 1W5vcJcXQeadmlJ06fEhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2403bcb8-3ba8-429e-8e64-baddfdafbed6 +19:00:39.639 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2403bcb8-3ba8-429e-8e64-baddfdafbed6 +19:00:39.647 [XNIO-1 task-2] NuPJBwsRTk2LpYpGJdD0qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.647 [XNIO-1 task-2] NuPJBwsRTk2LpYpGJdD0qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.647 [XNIO-1 task-2] NuPJBwsRTk2LpYpGJdD0qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.686 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.686 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.688 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.688 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.691 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:39.691 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc841f6-8242-49a4-ad00-2a33d8976573", {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:39.693 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.694 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:39.697 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:39.697 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1897587b-9bdb-4e70-b702-0e283f9c", {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:39.697 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:39.697 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1897587b-9bdb-4e70-b702-0e283f9c","clientDesc":"8bc841f6-8242-49a4-ad00-2a33d8976573","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.702 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:39.702 [XNIO-1 task-2] BUL5WOVxSTmxVkgVwBOLtA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:39.706 [XNIO-1 task-2] kPD594rDQ2SWLmzOqK0CrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd, base path is set to: null +19:00:39.706 [XNIO-1 task-2] kPD594rDQ2SWLmzOqK0CrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.706 [XNIO-1 task-2] kPD594rDQ2SWLmzOqK0CrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:39.706 [XNIO-1 task-2] kPD594rDQ2SWLmzOqK0CrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a15296a1-5238-46f8-971c-c1b431e4dbbd, base path is set to: null +19:00:39.707 [XNIO-1 task-2] kPD594rDQ2SWLmzOqK0CrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a15296a1-5238-46f8-971c-c1b431e4dbbd", "a15296a1-5238-46f8-971c-c1b431e4dbbd", clientId) +19:00:39.720 [XNIO-1 task-2] 6p6uY8iASLaXSFISeeIfKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.720 [XNIO-1 task-2] 6p6uY8iASLaXSFISeeIfKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.721 [XNIO-1 task-2] 6p6uY8iASLaXSFISeeIfKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.721 [XNIO-1 task-2] 6p6uY8iASLaXSFISeeIfKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.770 [XNIO-1 task-2] Dra-1x1BQY6YnDJgu_Nclw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.770 [XNIO-1 task-2] Dra-1x1BQY6YnDJgu_Nclw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.771 [XNIO-1 task-2] Dra-1x1BQY6YnDJgu_Nclw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.771 [XNIO-1 task-2] Dra-1x1BQY6YnDJgu_Nclw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.798 [XNIO-1 task-2] hzZjibJORx6mAu9tXvdkfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.799 [XNIO-1 task-2] hzZjibJORx6mAu9tXvdkfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.799 [XNIO-1 task-2] hzZjibJORx6mAu9tXvdkfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.861 [XNIO-1 task-2] UI2b_ttwTs-Iw4gvgG3Gsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.862 [XNIO-1 task-2] UI2b_ttwTs-Iw4gvgG3Gsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.862 [XNIO-1 task-2] UI2b_ttwTs-Iw4gvgG3Gsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.862 [XNIO-1 task-2] UI2b_ttwTs-Iw4gvgG3Gsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.889 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:53634790 +19:00:39.893 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:53634790 +19:00:39.923 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.924 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.924 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.925 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.925 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:39.925 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG com.networknt.schema.TypeValidator debug - validate( "0c8b1caf-dfaa-49f4-bb98-4fa6569c660a", {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:39.925 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:39.925 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:39.925 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG com.networknt.schema.TypeValidator debug - validate( "5d61a13c-bfe3-47d7-965c-25a34473", {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:39.926 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:39.926 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5d61a13c-bfe3-47d7-965c-25a34473","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.926 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:39.926 [XNIO-1 task-2] ToKqJ8_lQla_FLlnLQiajg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:39.931 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.931 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.932 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.933 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.933 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.933 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.933 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.933 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:39.933 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:39.934 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.934 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.934 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9bdd2cd-bcb9-491e-b8b8-19aa655b","clientDesc":"0c8b1caf-dfaa-49f4-bb98-4fa6569c660a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:39.935 [XNIO-1 task-2] L5Rn7WjIReSieac7u_YEFw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:39.937 [XNIO-1 task-2] PbgVWyOATledXLjdjpxHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35c0b929-f6a7-4492-a37c-1b1b41355990 +19:00:39.937 [XNIO-1 task-2] PbgVWyOATledXLjdjpxHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:39.937 [XNIO-1 task-2] PbgVWyOATledXLjdjpxHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:39.939 [XNIO-1 task-2] PbgVWyOATledXLjdjpxHtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35c0b929-f6a7-4492-a37c-1b1b41355990 +19:00:39.946 [XNIO-1 task-2] sJe7hmSEQ5ihV_0o3MMVpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.946 [XNIO-1 task-2] sJe7hmSEQ5ihV_0o3MMVpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.947 [XNIO-1 task-2] sJe7hmSEQ5ihV_0o3MMVpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.947 [XNIO-1 task-2] sJe7hmSEQ5ihV_0o3MMVpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.972 [XNIO-1 task-2] Ict3-1DfTl6YD37F9GiufQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.972 [XNIO-1 task-2] Ict3-1DfTl6YD37F9GiufQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:39.973 [XNIO-1 task-2] Ict3-1DfTl6YD37F9GiufQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:39.973 [XNIO-1 task-2] Ict3-1DfTl6YD37F9GiufQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.016 [XNIO-1 task-2] PcgR_HyrSRemEL2RdyZa3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.016 [XNIO-1 task-2] PcgR_HyrSRemEL2RdyZa3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.017 [XNIO-1 task-2] PcgR_HyrSRemEL2RdyZa3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.039 [XNIO-1 task-2] Ht88t2UyTkGVFVQD6MNSyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35c0b929-f6a7-4492-a37c-1b1b41355990, base path is set to: null +19:00:40.039 [XNIO-1 task-2] Ht88t2UyTkGVFVQD6MNSyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.039 [XNIO-1 task-2] Ht88t2UyTkGVFVQD6MNSyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:40.039 [XNIO-1 task-2] Ht88t2UyTkGVFVQD6MNSyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35c0b929-f6a7-4492-a37c-1b1b41355990, base path is set to: null +19:00:40.040 [XNIO-1 task-2] Ht88t2UyTkGVFVQD6MNSyg DEBUG com.networknt.schema.TypeValidator debug - validate( "35c0b929-f6a7-4492-a37c-1b1b41355990", "35c0b929-f6a7-4492-a37c-1b1b41355990", clientId) +19:00:40.058 [XNIO-1 task-2] M689pUl_T5u55VE3GgFjig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.059 [XNIO-1 task-2] M689pUl_T5u55VE3GgFjig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.059 [XNIO-1 task-2] M689pUl_T5u55VE3GgFjig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.114 [XNIO-1 task-2] Ax2BGr5URjuc8OUjAg5JwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e0f14f94-b017-4bfb-a79d-8dd83d9e92fe +19:00:40.114 [XNIO-1 task-2] Ax2BGr5URjuc8OUjAg5JwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.114 [XNIO-1 task-2] Ax2BGr5URjuc8OUjAg5JwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:40.115 [XNIO-1 task-2] Ax2BGr5URjuc8OUjAg5JwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e0f14f94-b017-4bfb-a79d-8dd83d9e92fe +19:00:40.130 [XNIO-1 task-2] et-lQFJTSKeLES3BiM17cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c909c22a-4507-4627-b115-8948aef7a507, base path is set to: null +19:00:40.131 [XNIO-1 task-2] et-lQFJTSKeLES3BiM17cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.131 [XNIO-1 task-2] et-lQFJTSKeLES3BiM17cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:40.131 [XNIO-1 task-2] et-lQFJTSKeLES3BiM17cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c909c22a-4507-4627-b115-8948aef7a507, base path is set to: null +19:00:40.131 [XNIO-1 task-2] et-lQFJTSKeLES3BiM17cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c909c22a-4507-4627-b115-8948aef7a507", "c909c22a-4507-4627-b115-8948aef7a507", clientId) +19:00:40.136 [XNIO-1 task-2] bYVemHlZRUu1gtO89G6q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.136 [XNIO-1 task-2] bYVemHlZRUu1gtO89G6q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.136 [XNIO-1 task-2] bYVemHlZRUu1gtO89G6q8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.136 [XNIO-1 task-2] bYVemHlZRUu1gtO89G6q8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.203 [XNIO-1 task-2] l_eGDz08SEGLn0yNn2qKUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.203 [XNIO-1 task-2] l_eGDz08SEGLn0yNn2qKUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.203 [XNIO-1 task-2] l_eGDz08SEGLn0yNn2qKUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.235 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.235 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.235 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.237 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.239 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:40.240 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dffafbe9-a5c4-4b92-bcea-91a9cef58d05", {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:40.240 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:40.240 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:40.240 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a1ecd0e-1c2e-4d47-86a8-a939e818", {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:40.240 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:40.240 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5a1ecd0e-1c2e-4d47-86a8-a939e818","clientDesc":"dffafbe9-a5c4-4b92-bcea-91a9cef58d05","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:40.240 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:40.241 [XNIO-1 task-2] oEDZMAHoSuSSFtrPdaxmNQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:40.245 [XNIO-1 task-2] 2oDi-ZMUSSSwjyf_thRCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.245 [XNIO-1 task-2] 2oDi-ZMUSSSwjyf_thRCsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.245 [XNIO-1 task-2] 2oDi-ZMUSSSwjyf_thRCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.262 [XNIO-1 task-2] gka-9wamTZGpCjWfWYQ5gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.262 [XNIO-1 task-2] gka-9wamTZGpCjWfWYQ5gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.262 [XNIO-1 task-2] gka-9wamTZGpCjWfWYQ5gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.285 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:367411fb-779b-40cf-93ac-21408c27a5ca +19:00:40.287 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:367411fb-779b-40cf-93ac-21408c27a5ca +19:00:40.298 [XNIO-1 task-2] 8ogko61RRYuODPCcLl7QXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f40100a9-a5c5-415f-86a4-f5b13a9e2413 +19:00:40.298 [XNIO-1 task-2] 8ogko61RRYuODPCcLl7QXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.298 [XNIO-1 task-2] 8ogko61RRYuODPCcLl7QXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:40.299 [XNIO-1 task-2] 8ogko61RRYuODPCcLl7QXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f40100a9-a5c5-415f-86a4-f5b13a9e2413 +19:00:40.303 [XNIO-1 task-2] Dx2sedd5R1m9ya-pB9oo9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.303 [XNIO-1 task-2] Dx2sedd5R1m9ya-pB9oo9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.304 [XNIO-1 task-2] Dx2sedd5R1m9ya-pB9oo9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.352 [XNIO-1 task-2] fIWm_jenT-e5eGleh61xhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.353 [XNIO-1 task-2] fIWm_jenT-e5eGleh61xhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.353 [XNIO-1 task-2] fIWm_jenT-e5eGleh61xhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.354 [XNIO-1 task-2] fIWm_jenT-e5eGleh61xhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.378 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:53634790 +19:00:40.411 [XNIO-1 task-2] u7d6nPOoQVOwDArFN1ooGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f40100a9-a5c5-415f-86a4-f5b13a9e2413, base path is set to: null +19:00:40.411 [XNIO-1 task-2] u7d6nPOoQVOwDArFN1ooGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.411 [XNIO-1 task-2] u7d6nPOoQVOwDArFN1ooGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:40.411 [XNIO-1 task-2] u7d6nPOoQVOwDArFN1ooGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f40100a9-a5c5-415f-86a4-f5b13a9e2413, base path is set to: null +19:00:40.412 [XNIO-1 task-2] u7d6nPOoQVOwDArFN1ooGw DEBUG com.networknt.schema.TypeValidator debug - validate( "f40100a9-a5c5-415f-86a4-f5b13a9e2413", "f40100a9-a5c5-415f-86a4-f5b13a9e2413", clientId) +19:00:40.416 [XNIO-1 task-2] 0FV947EeQr6uWnt8nPqaxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.416 [XNIO-1 task-2] 0FV947EeQr6uWnt8nPqaxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.417 [XNIO-1 task-2] 0FV947EeQr6uWnt8nPqaxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.444 [XNIO-1 task-2] 9P9Z7ehwQ4GZLPsqx0ywrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.444 [XNIO-1 task-2] 9P9Z7ehwQ4GZLPsqx0ywrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.445 [XNIO-1 task-2] 9P9Z7ehwQ4GZLPsqx0ywrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.445 [XNIO-1 task-2] 9P9Z7ehwQ4GZLPsqx0ywrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.526 [XNIO-1 task-2] CXs-N7U_RkencOx1e_RKZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c909c22a-4507-4627-b115-8948aef7a507 +19:00:40.526 [XNIO-1 task-2] CXs-N7U_RkencOx1e_RKZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.526 [XNIO-1 task-2] CXs-N7U_RkencOx1e_RKZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:40.527 [XNIO-1 task-2] CXs-N7U_RkencOx1e_RKZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c909c22a-4507-4627-b115-8948aef7a507 +19:00:40.545 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.545 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.545 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.546 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.546 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.546 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.546 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.546 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:40.546 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:40.547 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.547 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.547 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff62a1bf-427b-4745-8dd4-d6efc6e2","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:40.547 [XNIO-1 task-2] TnHXrhCySc-txf93UmrtlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:40.550 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.551 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.551 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG com.networknt.schema.TypeValidator debug - validate( "124a9f26-052c-4c27-a4a8-cd1e3032a43d", {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG com.networknt.schema.TypeValidator debug - validate( "3269698c-cdcd-4752-8257-e0aad542", {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:40.552 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3269698c-cdcd-4752-8257-e0aad542","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:40.553 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:40.553 [XNIO-1 task-2] 2K_FOLbHSFGjM4eQJFUzZw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:40.556 [XNIO-1 task-2] _Xvd7UVlRsCohT8ww-7PZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f40100a9-a5c5-415f-86a4-f5b13a9e2413, base path is set to: null +19:00:40.557 [XNIO-1 task-2] _Xvd7UVlRsCohT8ww-7PZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.557 [XNIO-1 task-2] _Xvd7UVlRsCohT8ww-7PZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:40.557 [XNIO-1 task-2] _Xvd7UVlRsCohT8ww-7PZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f40100a9-a5c5-415f-86a4-f5b13a9e2413, base path is set to: null +19:00:40.557 [XNIO-1 task-2] _Xvd7UVlRsCohT8ww-7PZw DEBUG com.networknt.schema.TypeValidator debug - validate( "f40100a9-a5c5-415f-86a4-f5b13a9e2413", "f40100a9-a5c5-415f-86a4-f5b13a9e2413", clientId) +19:00:40.589 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.589 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.590 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.591 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.591 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:40.591 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG com.networknt.schema.TypeValidator debug - validate( "245f9f66-d065-4369-8fde-876c74dbb014", {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:40.591 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:40.591 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:40.591 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG com.networknt.schema.TypeValidator debug - validate( "6ddd16c7-7a54-4062-81c2-176f7d75", {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:40.591 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:40.592 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6ddd16c7-7a54-4062-81c2-176f7d75","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:40.592 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:40.592 [XNIO-1 task-2] og1BnNo3T56Lr-SrtXK2ag DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:40.595 [XNIO-1 task-2] Vxg9WEz1T6ienWOc-BDO4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.595 [XNIO-1 task-2] Vxg9WEz1T6ienWOc-BDO4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.596 [XNIO-1 task-2] Vxg9WEz1T6ienWOc-BDO4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.658 [XNIO-1 task-2] 0OyhLgSWS3u2Sp4fOpJDTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.658 [XNIO-1 task-2] 0OyhLgSWS3u2Sp4fOpJDTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.659 [XNIO-1 task-2] 0OyhLgSWS3u2Sp4fOpJDTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.678 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1bb6e413 +19:00:40.681 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1bb6e413 +19:00:40.710 [XNIO-1 task-2] 7WWJyMOmTh6ZH7SWoW2pJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:40.710 [XNIO-1 task-2] 7WWJyMOmTh6ZH7SWoW2pJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.711 [XNIO-1 task-2] 7WWJyMOmTh6ZH7SWoW2pJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:40.727 [XNIO-1 task-2] 7WWJyMOmTh6ZH7SWoW2pJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca, base path is set to: null +19:00:40.727 [XNIO-1 task-2] 7WWJyMOmTh6ZH7SWoW2pJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:40.746 [XNIO-1 task-2] qpRaEI16TRqLvGP-j1aTYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7462bf03-4c7b-432a-ae75-dea19dff3a09, base path is set to: null +19:00:40.746 [XNIO-1 task-2] qpRaEI16TRqLvGP-j1aTYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.746 [XNIO-1 task-2] qpRaEI16TRqLvGP-j1aTYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:40.746 [XNIO-1 task-2] qpRaEI16TRqLvGP-j1aTYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7462bf03-4c7b-432a-ae75-dea19dff3a09, base path is set to: null +19:00:40.747 [XNIO-1 task-2] qpRaEI16TRqLvGP-j1aTYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7462bf03-4c7b-432a-ae75-dea19dff3a09", "7462bf03-4c7b-432a-ae75-dea19dff3a09", clientId) +19:00:40.793 [XNIO-1 task-2] _RVU9YfdRYKmCeXr2HKsEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.793 [XNIO-1 task-2] _RVU9YfdRYKmCeXr2HKsEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.793 [XNIO-1 task-2] _RVU9YfdRYKmCeXr2HKsEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.800 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:670c78bc-c731-49c3-a18a-5b9862c41c0c +19:00:40.811 [XNIO-1 task-2] -LY2mI5YS96lj0SF99U8uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca, base path is set to: null +19:00:40.812 [XNIO-1 task-2] -LY2mI5YS96lj0SF99U8uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.812 [XNIO-1 task-2] -LY2mI5YS96lj0SF99U8uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:40.812 [XNIO-1 task-2] -LY2mI5YS96lj0SF99U8uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca, base path is set to: null +19:00:40.812 [XNIO-1 task-2] -LY2mI5YS96lj0SF99U8uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "367411fb-779b-40cf-93ac-21408c27a5ca", "367411fb-779b-40cf-93ac-21408c27a5ca", clientId) +19:00:40.816 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.816 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.816 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:40.817 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.817 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.817 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.817 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.818 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:40.818 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:40.818 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.818 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.818 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"895abef3-6fc2-4089-afc7-37625e68","clientDesc":"e82ed898-73ec-48e3-ab93-eeeb91b9ecfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:40.819 [XNIO-1 task-2] ws8DmwsoShu64axRXGFPfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:40.822 [XNIO-1 task-2] W7qKQoHXQwChXi4-tvjrOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.822 [XNIO-1 task-2] W7qKQoHXQwChXi4-tvjrOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.822 [XNIO-1 task-2] W7qKQoHXQwChXi4-tvjrOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.823 [XNIO-1 task-2] W7qKQoHXQwChXi4-tvjrOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.936 [XNIO-1 task-2] sR2xLHiOTdaqLClxqdcSyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.936 [XNIO-1 task-2] sR2xLHiOTdaqLClxqdcSyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.937 [XNIO-1 task-2] sR2xLHiOTdaqLClxqdcSyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.964 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2cf2e679-6f70-44cc-aeb7-5822c4a0f781 +19:00:40.972 [XNIO-1 task-2] LmBYSitBR3upKdaB8Yt1cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84581480-e727-41e1-be71-46c454a1e792, base path is set to: null +19:00:40.973 [XNIO-1 task-2] LmBYSitBR3upKdaB8Yt1cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:40.973 [XNIO-1 task-2] LmBYSitBR3upKdaB8Yt1cA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:40.973 [XNIO-1 task-2] LmBYSitBR3upKdaB8Yt1cA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/84581480-e727-41e1-be71-46c454a1e792, base path is set to: null +19:00:40.973 [XNIO-1 task-2] LmBYSitBR3upKdaB8Yt1cA DEBUG com.networknt.schema.TypeValidator debug - validate( "84581480-e727-41e1-be71-46c454a1e792", "84581480-e727-41e1-be71-46c454a1e792", clientId) +19:00:40.982 [XNIO-1 task-2] aTo01zlvQoWVoL6iSe-Dpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.982 [XNIO-1 task-2] aTo01zlvQoWVoL6iSe-Dpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.982 [XNIO-1 task-2] aTo01zlvQoWVoL6iSe-Dpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:40.982 [XNIO-1 task-2] aTo01zlvQoWVoL6iSe-Dpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.077 [XNIO-1 task-2] qX2SuheBSRSGD-R_dBuzkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/670c78bc-c731-49c3-a18a-5b9862c41c0c +19:00:41.077 [XNIO-1 task-2] qX2SuheBSRSGD-R_dBuzkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.077 [XNIO-1 task-2] qX2SuheBSRSGD-R_dBuzkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.078 [XNIO-1 task-2] qX2SuheBSRSGD-R_dBuzkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/670c78bc-c731-49c3-a18a-5b9862c41c0c +19:00:41.080 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:670c78bc-c731-49c3-a18a-5b9862c41c0c +19:00:41.091 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.091 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.092 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.093 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.093 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:41.093 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG com.networknt.schema.TypeValidator debug - validate( "e30b2500-b808-4608-b7f5-8106a0e71bb0", {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:41.093 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:41.094 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:41.094 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG com.networknt.schema.TypeValidator debug - validate( "19bc733d-d5f3-4a07-99a1-154c6bed", {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:41.094 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:41.094 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"19bc733d-d5f3-4a07-99a1-154c6bed","clientDesc":"e30b2500-b808-4608-b7f5-8106a0e71bb0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:41.094 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:41.094 [XNIO-1 task-2] yW0_sSuKTgekL1Npde7Arw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:41.098 [XNIO-1 task-2] SHkPOpXRRLGaVha_5cF6rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c20a5e5f-1c6a-4b55-a352-3fdf8ff6a55f, base path is set to: null +19:00:41.098 [XNIO-1 task-2] SHkPOpXRRLGaVha_5cF6rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.098 [XNIO-1 task-2] SHkPOpXRRLGaVha_5cF6rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:41.098 [XNIO-1 task-2] SHkPOpXRRLGaVha_5cF6rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c20a5e5f-1c6a-4b55-a352-3fdf8ff6a55f, base path is set to: null +19:00:41.098 [XNIO-1 task-2] SHkPOpXRRLGaVha_5cF6rw DEBUG com.networknt.schema.TypeValidator debug - validate( "c20a5e5f-1c6a-4b55-a352-3fdf8ff6a55f", "c20a5e5f-1c6a-4b55-a352-3fdf8ff6a55f", clientId) +19:00:41.110 [XNIO-1 task-2] OKi8WseKQiK9CAewuasbJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e0fb1fc-bd39-4369-a600-ab74dc417462 +19:00:41.111 [XNIO-1 task-2] OKi8WseKQiK9CAewuasbJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.111 [XNIO-1 task-2] OKi8WseKQiK9CAewuasbJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.111 [XNIO-1 task-2] OKi8WseKQiK9CAewuasbJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e0fb1fc-bd39-4369-a600-ab74dc417462 +19:00:41.162 [XNIO-1 task-2] HagWikuoQderCYN7q32u9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1a32188e-c33a-401f-8fb6-695cb6e0bbf3, base path is set to: null +19:00:41.162 [XNIO-1 task-2] HagWikuoQderCYN7q32u9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.162 [XNIO-1 task-2] HagWikuoQderCYN7q32u9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:41.163 [XNIO-1 task-2] HagWikuoQderCYN7q32u9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1a32188e-c33a-401f-8fb6-695cb6e0bbf3, base path is set to: null +19:00:41.163 [XNIO-1 task-2] HagWikuoQderCYN7q32u9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1a32188e-c33a-401f-8fb6-695cb6e0bbf3", "1a32188e-c33a-401f-8fb6-695cb6e0bbf3", clientId) +19:00:41.171 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.171 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.172 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.173 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.173 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:41.173 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eea794d-7d13-457f-9ed0-a422ed3a3df2", {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:41.173 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:41.173 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:41.173 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "6316151e-580f-4d78-93ac-8c4ba850", {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:41.173 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:41.174 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6316151e-580f-4d78-93ac-8c4ba850","clientDesc":"6eea794d-7d13-457f-9ed0-a422ed3a3df2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:41.174 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:41.174 [XNIO-1 task-2] zAOIJc_OTkCAQT9srjRHBw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:41.180 [XNIO-1 task-2] b2NK-JVdQJOO0sx-2bNDTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2cf2e679-6f70-44cc-aeb7-5822c4a0f781, base path is set to: null +19:00:41.181 [XNIO-1 task-2] b2NK-JVdQJOO0sx-2bNDTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.181 [XNIO-1 task-2] b2NK-JVdQJOO0sx-2bNDTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:41.181 [XNIO-1 task-2] b2NK-JVdQJOO0sx-2bNDTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2cf2e679-6f70-44cc-aeb7-5822c4a0f781, base path is set to: null +19:00:41.182 [XNIO-1 task-2] b2NK-JVdQJOO0sx-2bNDTg DEBUG com.networknt.schema.TypeValidator debug - validate( "2cf2e679-6f70-44cc-aeb7-5822c4a0f781", "2cf2e679-6f70-44cc-aeb7-5822c4a0f781", clientId) +19:00:41.192 [XNIO-1 task-2] paauRabcQNq0S5J8KoyGTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.193 [XNIO-1 task-2] paauRabcQNq0S5J8KoyGTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.193 [XNIO-1 task-2] paauRabcQNq0S5J8KoyGTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.193 [XNIO-1 task-2] paauRabcQNq0S5J8KoyGTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:41.206 [XNIO-1 task-2] 6TQgYyHZRBCcy63rIJjg3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.206 [XNIO-1 task-2] 6TQgYyHZRBCcy63rIJjg3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.207 [XNIO-1 task-2] 6TQgYyHZRBCcy63rIJjg3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.238 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7ee66665 +19:00:41.241 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7ee66665 +19:00:41.246 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:db782c52 +19:00:41.248 [XNIO-1 task-2] TDY-GnfxQNK423WZMw3A0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.248 [XNIO-1 task-2] TDY-GnfxQNK423WZMw3A0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.248 [XNIO-1 task-2] TDY-GnfxQNK423WZMw3A0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.252 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7ee66665 +19:00:41.264 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7ee66665 +19:00:41.278 [XNIO-1 task-2] ThJz5qFgReCM1gHTQcDI2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.278 [XNIO-1 task-2] ThJz5qFgReCM1gHTQcDI2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.279 [XNIO-1 task-2] ThJz5qFgReCM1gHTQcDI2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.305 [XNIO-1 task-2] Vi_xiu5UTwuNG-U7GRzztA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.305 [XNIO-1 task-2] Vi_xiu5UTwuNG-U7GRzztA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.305 [XNIO-1 task-2] Vi_xiu5UTwuNG-U7GRzztA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.306 [XNIO-1 task-2] Vi_xiu5UTwuNG-U7GRzztA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.353 [XNIO-1 task-2] itkqQQ1UQvOaOO0uZowViA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b260c84-a818-40a1-a14e-fbe862535660 +19:00:41.353 [XNIO-1 task-2] itkqQQ1UQvOaOO0uZowViA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.353 [XNIO-1 task-2] itkqQQ1UQvOaOO0uZowViA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.354 [XNIO-1 task-2] itkqQQ1UQvOaOO0uZowViA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b260c84-a818-40a1-a14e-fbe862535660 +19:00:41.374 [XNIO-1 task-2] 98jXYAK0QlyNbKINoWgL7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.375 [XNIO-1 task-2] 98jXYAK0QlyNbKINoWgL7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.375 [XNIO-1 task-2] 98jXYAK0QlyNbKINoWgL7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.380 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:41.382 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:41.392 [XNIO-1 task-2] F-jUAk3FQ_GGVMGFAFIsBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b260c84-a818-40a1-a14e-fbe862535660 +19:00:41.392 [XNIO-1 task-2] F-jUAk3FQ_GGVMGFAFIsBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.392 [XNIO-1 task-2] F-jUAk3FQ_GGVMGFAFIsBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.393 [XNIO-1 task-2] F-jUAk3FQ_GGVMGFAFIsBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5b260c84-a818-40a1-a14e-fbe862535660 +19:00:41.402 [XNIO-1 task-2] cSHY8YDcSQKCv7hxPlTFXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a, base path is set to: null +19:00:41.402 [XNIO-1 task-2] cSHY8YDcSQKCv7hxPlTFXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.402 [XNIO-1 task-2] cSHY8YDcSQKCv7hxPlTFXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:41.402 [XNIO-1 task-2] cSHY8YDcSQKCv7hxPlTFXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a, base path is set to: null +19:00:41.402 [XNIO-1 task-2] cSHY8YDcSQKCv7hxPlTFXA DEBUG com.networknt.schema.TypeValidator debug - validate( "4793c05b-7171-4518-977e-1ddcc037560a", "4793c05b-7171-4518-977e-1ddcc037560a", clientId) +19:00:41.410 [XNIO-1 task-2] 4octwwmpRni9mGlRTuTJFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.410 [XNIO-1 task-2] 4octwwmpRni9mGlRTuTJFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.410 [XNIO-1 task-2] 4octwwmpRni9mGlRTuTJFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.411 [XNIO-1 task-2] 4octwwmpRni9mGlRTuTJFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.457 [XNIO-1 task-2] GxIakSzISEOqTMS1xUoNYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35442bc4-ca5c-475a-be56-73888e848628 +19:00:41.457 [XNIO-1 task-2] GxIakSzISEOqTMS1xUoNYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.458 [XNIO-1 task-2] GxIakSzISEOqTMS1xUoNYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.458 [XNIO-1 task-2] GxIakSzISEOqTMS1xUoNYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35442bc4-ca5c-475a-be56-73888e848628 +19:00:41.540 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.541 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.541 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.542 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.543 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"73f4e8bc-23b8-4104-923a-61618326","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:41.544 [XNIO-1 task-2] xjpOipe4Sy-_fK1YmeHUxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:41.552 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.553 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.553 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.561 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.561 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:41.561 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG com.networknt.schema.TypeValidator debug - validate( "bcef336c-a779-4466-9613-84bef63acac9", {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:41.562 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:41.562 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:41.562 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG com.networknt.schema.TypeValidator debug - validate( "5308e3f1-51ad-4172-9863-5b16c57b", {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:41.562 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:41.562 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5308e3f1-51ad-4172-9863-5b16c57b","clientDesc":"bcef336c-a779-4466-9613-84bef63acac9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:41.562 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:41.562 [XNIO-1 task-2] IdwjbClKSJ-40SG8L0Y1MA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:41.566 [XNIO-1 task-2] zztCxYivRfut1Gs9Np_3Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.567 [XNIO-1 task-2] zztCxYivRfut1Gs9Np_3Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.567 [XNIO-1 task-2] zztCxYivRfut1Gs9Np_3Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.569 [XNIO-1 task-2] zztCxYivRfut1Gs9Np_3Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:41.619 [XNIO-1 task-2] B_OFlv8-Tcefemhr0AF1pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c, base path is set to: null +19:00:41.619 [XNIO-1 task-2] B_OFlv8-Tcefemhr0AF1pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.621 [XNIO-1 task-2] B_OFlv8-Tcefemhr0AF1pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:41.622 [XNIO-1 task-2] B_OFlv8-Tcefemhr0AF1pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c, base path is set to: null +19:00:41.622 [XNIO-1 task-2] B_OFlv8-Tcefemhr0AF1pg DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", clientId) +19:00:41.628 [XNIO-1 task-2] 8JrHaGE_TrSEA7bv3Eu6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.628 [XNIO-1 task-2] 8JrHaGE_TrSEA7bv3Eu6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.629 [XNIO-1 task-2] 8JrHaGE_TrSEA7bv3Eu6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.629 [XNIO-1 task-2] 8JrHaGE_TrSEA7bv3Eu6bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.685 [XNIO-1 task-2] WbuXjssVRSCDSfB0Cm1zdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.685 [XNIO-1 task-2] WbuXjssVRSCDSfB0Cm1zdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.685 [XNIO-1 task-2] WbuXjssVRSCDSfB0Cm1zdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.686 [XNIO-1 task-2] WbuXjssVRSCDSfB0Cm1zdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.754 [XNIO-1 task-2] bilchsZpTm24Vg3H3_Xr6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a +19:00:41.755 [XNIO-1 task-2] bilchsZpTm24Vg3H3_Xr6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.755 [XNIO-1 task-2] bilchsZpTm24Vg3H3_Xr6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.755 [XNIO-1 task-2] bilchsZpTm24Vg3H3_Xr6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a +19:00:41.760 [XNIO-1 task-2] WZ-HXWoGR7--_eg9MxyJfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.760 [XNIO-1 task-2] WZ-HXWoGR7--_eg9MxyJfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.760 [XNIO-1 task-2] WZ-HXWoGR7--_eg9MxyJfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.761 [XNIO-1 task-2] WZ-HXWoGR7--_eg9MxyJfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:41.799 [XNIO-1 task-2] VYKX0TGcT0CXOpgn6E48Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.800 [XNIO-1 task-2] VYKX0TGcT0CXOpgn6E48Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.800 [XNIO-1 task-2] VYKX0TGcT0CXOpgn6E48Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.800 [XNIO-1 task-2] VYKX0TGcT0CXOpgn6E48Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:41.846 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.846 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.847 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.847 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.847 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.848 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.848 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.848 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:41.848 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:41.848 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.848 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.848 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75bfce7c-ed19-4986-a581-f031b381","clientDesc":"c44be4e0-a833-4d34-9c7c-8dd494db21d0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:41.885 [XNIO-1 task-2] E1IBvVzjTDG1u7iO0vFzSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:41.890 [XNIO-1 task-2] dEKlIo4iQb6IGIP0inp5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a +19:00:41.890 [XNIO-1 task-2] dEKlIo4iQb6IGIP0inp5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.890 [XNIO-1 task-2] dEKlIo4iQb6IGIP0inp5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.890 [XNIO-1 task-2] dEKlIo4iQb6IGIP0inp5bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a +19:00:41.901 [XNIO-1 task-2] Z6g_3cY6TRCIbyWdxfbuMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a, base path is set to: null +19:00:41.902 [XNIO-1 task-2] Z6g_3cY6TRCIbyWdxfbuMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.902 [XNIO-1 task-2] Z6g_3cY6TRCIbyWdxfbuMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:41.902 [XNIO-1 task-2] Z6g_3cY6TRCIbyWdxfbuMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4793c05b-7171-4518-977e-1ddcc037560a, base path is set to: null +19:00:41.902 [XNIO-1 task-2] Z6g_3cY6TRCIbyWdxfbuMw DEBUG com.networknt.schema.TypeValidator debug - validate( "4793c05b-7171-4518-977e-1ddcc037560a", "4793c05b-7171-4518-977e-1ddcc037560a", clientId) +19:00:41.913 [XNIO-1 task-2] Jq0ERTwkQR6P0Lx9eCrQlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:41.913 [XNIO-1 task-2] Jq0ERTwkQR6P0Lx9eCrQlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:41.914 [XNIO-1 task-2] Jq0ERTwkQR6P0Lx9eCrQlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:41.914 [XNIO-1 task-2] Jq0ERTwkQR6P0Lx9eCrQlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:41.915 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:367411fb-779b-40cf-93ac-21408c27a5ca +19:00:41.948 [hz._hzInstance_1_dev.partition-operation.thread-7] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:41.954 [XNIO-1 task-2] Jq0ERTwkQR6P0Lx9eCrQlA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:41.958 [XNIO-1 task-2] zdcfR1eVR1akACgjI-LUBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.958 [XNIO-1 task-2] zdcfR1eVR1akACgjI-LUBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.959 [XNIO-1 task-2] zdcfR1eVR1akACgjI-LUBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.990 [XNIO-1 task-2] dVhMAfskSL-GxJ4ymP0-bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.991 [XNIO-1 task-2] dVhMAfskSL-GxJ4ymP0-bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:41.991 [XNIO-1 task-2] dVhMAfskSL-GxJ4ymP0-bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:41.992 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a4c323c4 +19:00:41.997 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a4c323c4 +19:00:42.010 [XNIO-1 task-2] z2sscTYwT-CrmCKYXWsZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f9278bab-c53e-4993-95ef-98ee97047fb9 +19:00:42.011 [XNIO-1 task-2] z2sscTYwT-CrmCKYXWsZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.011 [XNIO-1 task-2] z2sscTYwT-CrmCKYXWsZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.011 [XNIO-1 task-2] z2sscTYwT-CrmCKYXWsZfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f9278bab-c53e-4993-95ef-98ee97047fb9 +19:00:42.018 [XNIO-1 task-2] mE93MfJ9Tmaew6_xd7sUDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9278bab-c53e-4993-95ef-98ee97047fb9, base path is set to: null +19:00:42.018 [XNIO-1 task-2] mE93MfJ9Tmaew6_xd7sUDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.018 [XNIO-1 task-2] mE93MfJ9Tmaew6_xd7sUDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.018 [XNIO-1 task-2] mE93MfJ9Tmaew6_xd7sUDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f9278bab-c53e-4993-95ef-98ee97047fb9, base path is set to: null +19:00:42.019 [XNIO-1 task-2] mE93MfJ9Tmaew6_xd7sUDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9278bab-c53e-4993-95ef-98ee97047fb9", "f9278bab-c53e-4993-95ef-98ee97047fb9", clientId) +19:00:42.026 [XNIO-1 task-2] DUNAKoHgSAmcgcGkUSytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/52d4bb47-f80f-4b90-a38a-dcba7aec08de +19:00:42.027 [XNIO-1 task-2] DUNAKoHgSAmcgcGkUSytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.027 [XNIO-1 task-2] DUNAKoHgSAmcgcGkUSytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.027 [XNIO-1 task-2] DUNAKoHgSAmcgcGkUSytlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/52d4bb47-f80f-4b90-a38a-dcba7aec08de +19:00:42.032 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.033 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.033 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.034 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.034 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.034 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.034 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.034 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.034 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.034 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.036 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.036 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4009ee6a-2521-4eaa-bde3-cd789339","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.036 [XNIO-1 task-2] Xfgm1FoESV6IDBjPiDttXw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.044 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.044 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.044 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.045 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.045 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.045 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "70200e54-babe-4e4a-8c98-a5d94bef8f82", {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.045 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.045 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.046 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "a94de403-b966-4c31-ac5b-52d07b0a", {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.046 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.046 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a94de403-b966-4c31-ac5b-52d07b0a","clientDesc":"70200e54-babe-4e4a-8c98-a5d94bef8f82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.046 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.047 [XNIO-1 task-2] ADz0YB6GQXSWzU7UdSxuyw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.051 [XNIO-1 task-2] rXrmsg8KSQeDtyfZE2QTiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/52d4bb47-f80f-4b90-a38a-dcba7aec08de, base path is set to: null +19:00:42.051 [XNIO-1 task-2] rXrmsg8KSQeDtyfZE2QTiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.051 [XNIO-1 task-2] rXrmsg8KSQeDtyfZE2QTiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.051 [XNIO-1 task-2] rXrmsg8KSQeDtyfZE2QTiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/52d4bb47-f80f-4b90-a38a-dcba7aec08de, base path is set to: null +19:00:42.052 [XNIO-1 task-2] rXrmsg8KSQeDtyfZE2QTiw DEBUG com.networknt.schema.TypeValidator debug - validate( "52d4bb47-f80f-4b90-a38a-dcba7aec08de", "52d4bb47-f80f-4b90-a38a-dcba7aec08de", clientId) +19:00:42.073 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.073 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.074 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.074 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "124a9f26-052c-4c27-a4a8-cd1e3032a43d", {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ced55fad-1358-4a74-9698-7f4feb0b", {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ced55fad-1358-4a74-9698-7f4feb0b","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.075 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.076 [XNIO-1 task-2] B7Rf-aS7SquYzdu785nMiQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.082 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a9a0f392-40ed-40cc-8702-a3c62eb60860 +19:00:42.083 [XNIO-1 task-2] sWGUh3FCRzeU_jqJ9mThEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:42.083 [XNIO-1 task-2] sWGUh3FCRzeU_jqJ9mThEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.083 [XNIO-1 task-2] sWGUh3FCRzeU_jqJ9mThEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.083 [XNIO-1 task-2] sWGUh3FCRzeU_jqJ9mThEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:42.085 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a9a0f392-40ed-40cc-8702-a3c62eb60860 +19:00:42.090 [XNIO-1 task-2] kvgEla-oQXuF62hh4XWLMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.090 [XNIO-1 task-2] kvgEla-oQXuF62hh4XWLMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.091 [XNIO-1 task-2] kvgEla-oQXuF62hh4XWLMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.104 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:740ed4b8 +19:00:42.107 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:740ed4b8 +19:00:42.183 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a4c323c4 +19:00:42.184 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.184 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.185 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.186 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.186 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.186 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.186 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.186 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.186 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.186 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.187 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.187 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e487e41-31fb-4544-8692-6ee50b3d","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.187 [XNIO-1 task-2] 0a0jX8VnT4OvsKLk3vwVhQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.191 [XNIO-1 task-2] b7mwRMyYQ-a1RSTnGZxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:42.191 [XNIO-1 task-2] b7mwRMyYQ-a1RSTnGZxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.191 [XNIO-1 task-2] b7mwRMyYQ-a1RSTnGZxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.192 [XNIO-1 task-2] b7mwRMyYQ-a1RSTnGZxPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:42.196 [XNIO-1 task-2] 732J628RQqW7JUdnudA4ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.196 [XNIO-1 task-2] 732J628RQqW7JUdnudA4ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.196 [XNIO-1 task-2] 732J628RQqW7JUdnudA4ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.197 [XNIO-1 task-2] 732J628RQqW7JUdnudA4ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.220 [XNIO-1 task-2] t1-D7DHIQnuzSVUI28shZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.220 [XNIO-1 task-2] t1-D7DHIQnuzSVUI28shZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.220 [XNIO-1 task-2] t1-D7DHIQnuzSVUI28shZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.220 [XNIO-1 task-2] t1-D7DHIQnuzSVUI28shZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.262 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.263 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.263 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.264 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb49c1e7-4e18-4f17-b4ff-2352c278","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.265 [XNIO-1 task-2] C2bDi6iJQZO5lkg79tdQOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.273 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:db782c52 +19:00:42.274 [XNIO-1 task-2] fotyGiG-RMe2Oc3uJ1f5PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.274 [XNIO-1 task-2] fotyGiG-RMe2Oc3uJ1f5PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.274 [XNIO-1 task-2] fotyGiG-RMe2Oc3uJ1f5PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/366825f3-9f2d-4e9e-8b4e-35efbd34304c, base path is set to: null +19:00:42.274 [XNIO-1 task-2] fotyGiG-RMe2Oc3uJ1f5PA DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", clientId) +19:00:42.282 [XNIO-1 task-2] g7_KA69uSZSrvlw4lHDT8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/366825f3-9f2d-4e9e-8b4e-35efbd34304c, base path is set to: null +19:00:42.282 [XNIO-1 task-2] g7_KA69uSZSrvlw4lHDT8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.283 [XNIO-1 task-2] g7_KA69uSZSrvlw4lHDT8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.283 [XNIO-1 task-2] g7_KA69uSZSrvlw4lHDT8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/366825f3-9f2d-4e9e-8b4e-35efbd34304c, base path is set to: null +19:00:42.283 [XNIO-1 task-2] g7_KA69uSZSrvlw4lHDT8g DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", clientId) +19:00:42.287 [XNIO-1 task-2] AMRfB5DaRZa5iy88RUpuAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.287 [XNIO-1 task-2] AMRfB5DaRZa5iy88RUpuAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.288 [XNIO-1 task-2] AMRfB5DaRZa5iy88RUpuAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.317 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:332bab43-8967-4a8f-ae82-540c46c8afb6 +19:00:42.341 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.341 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.341 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.343 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.343 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.343 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.343 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.343 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.343 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.343 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.344 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.344 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f93be98-908b-4682-91e5-7eef8b45","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.344 [XNIO-1 task-2] -EQu1f-fQl6asm5-nzOt-w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.353 [XNIO-1 task-2] lzjeLCx8R1a_LeWdgVP8vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:42.353 [XNIO-1 task-2] lzjeLCx8R1a_LeWdgVP8vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.353 [XNIO-1 task-2] lzjeLCx8R1a_LeWdgVP8vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.353 [XNIO-1 task-2] lzjeLCx8R1a_LeWdgVP8vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:42.353 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a4c323c4 +19:00:42.356 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.356 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.357 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.357 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.358 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.358 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.358 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.358 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.359 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.359 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.359 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.359 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2292708-a827-41c2-ae70-54daca09","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.359 [XNIO-1 task-2] O4ZytNKLRm6GdJQL5GisiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.364 [XNIO-1 task-2] 3y7zLIR7QLOsOVQEOs_ZXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.364 [XNIO-1 task-2] 3y7zLIR7QLOsOVQEOs_ZXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.364 [XNIO-1 task-2] 3y7zLIR7QLOsOVQEOs_ZXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.364 [XNIO-1 task-2] 3y7zLIR7QLOsOVQEOs_ZXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.377 [XNIO-1 task-2] _keGfQlqTOuNbzRm059kNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.377 [XNIO-1 task-2] _keGfQlqTOuNbzRm059kNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.378 [XNIO-1 task-2] _keGfQlqTOuNbzRm059kNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.409 [XNIO-1 task-2] BUWItWnKRPCs5kUp3aQItg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2736cd94-3f12-4487-9735-3f6881568106, base path is set to: null +19:00:42.409 [XNIO-1 task-2] BUWItWnKRPCs5kUp3aQItg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.409 [XNIO-1 task-2] BUWItWnKRPCs5kUp3aQItg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.409 [XNIO-1 task-2] BUWItWnKRPCs5kUp3aQItg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2736cd94-3f12-4487-9735-3f6881568106, base path is set to: null +19:00:42.409 [XNIO-1 task-2] BUWItWnKRPCs5kUp3aQItg DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", clientId) +19:00:42.417 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:740ed4b8 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:42.477 [XNIO-1 task-2] BUWItWnKRPCs5kUp3aQItg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/2736cd94-3f12-4487-9735-3f6881568106} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.480 [XNIO-1 task-2] avIj_8tASP2g8dC93H2n5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:42.480 [XNIO-1 task-2] avIj_8tASP2g8dC93H2n5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.480 [XNIO-1 task-2] avIj_8tASP2g8dC93H2n5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.480 [XNIO-1 task-2] avIj_8tASP2g8dC93H2n5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:42.481 [XNIO-1 task-2] avIj_8tASP2g8dC93H2n5g DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", clientId) +19:00:42.491 [XNIO-1 task-2] v0fBfULSQsGxkCBKFBdYiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.492 [XNIO-1 task-2] v0fBfULSQsGxkCBKFBdYiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.492 [XNIO-1 task-2] v0fBfULSQsGxkCBKFBdYiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.492 [XNIO-1 task-2] v0fBfULSQsGxkCBKFBdYiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.495 [XNIO-1 task-2] sWvzY0GmTma7CnoW_iRBDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.496 [XNIO-1 task-2] sWvzY0GmTma7CnoW_iRBDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.496 [XNIO-1 task-2] sWvzY0GmTma7CnoW_iRBDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.507 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:50b9e989-ef60-40bb-891c-abe26c314c69 +19:00:42.509 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:50b9e989-ef60-40bb-891c-abe26c314c69 +19:00:42.547 [XNIO-1 task-2] n4kl8Pi-SeqPn7SqvKiekw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.547 [XNIO-1 task-2] n4kl8Pi-SeqPn7SqvKiekw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.547 [XNIO-1 task-2] n4kl8Pi-SeqPn7SqvKiekw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.574 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.574 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.575 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.575 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.576 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.576 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0a61a171-c6fe-4166-b433-5f5d5c01760f", {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.576 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.576 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.576 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "871806e0-5478-4e5e-b3d2-22ef01a3", {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.577 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.577 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"871806e0-5478-4e5e-b3d2-22ef01a3","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.577 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.577 [XNIO-1 task-2] ejbeZN-zR0i_Jl3oKDyrxQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.584 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.585 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.585 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.586 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.586 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.586 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.586 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.586 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.586 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.587 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.587 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.587 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"34a78382-539c-4d11-9287-db183199","clientDesc":"9e4be9c0-d214-4881-b239-3fa6973947ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.587 [XNIO-1 task-2] Ad8_bmXBTkum8AyuN3pHmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.591 [XNIO-1 task-2] 2qAl1LANTUOtYN2Zmdv4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cff5a905-3e65-4fda-b7ef-5e59fd571679 +19:00:42.591 [XNIO-1 task-2] 2qAl1LANTUOtYN2Zmdv4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.591 [XNIO-1 task-2] 2qAl1LANTUOtYN2Zmdv4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.591 [XNIO-1 task-2] 2qAl1LANTUOtYN2Zmdv4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cff5a905-3e65-4fda-b7ef-5e59fd571679 +19:00:42.597 [XNIO-1 task-2] cRa5YjvnRsi4t6XSZMgxtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cff5a905-3e65-4fda-b7ef-5e59fd571679, base path is set to: null +19:00:42.597 [XNIO-1 task-2] cRa5YjvnRsi4t6XSZMgxtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.597 [XNIO-1 task-2] cRa5YjvnRsi4t6XSZMgxtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.597 [XNIO-1 task-2] cRa5YjvnRsi4t6XSZMgxtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cff5a905-3e65-4fda-b7ef-5e59fd571679, base path is set to: null +19:00:42.597 [XNIO-1 task-2] cRa5YjvnRsi4t6XSZMgxtw DEBUG com.networknt.schema.TypeValidator debug - validate( "cff5a905-3e65-4fda-b7ef-5e59fd571679", "cff5a905-3e65-4fda-b7ef-5e59fd571679", clientId) +19:00:42.609 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.609 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.610 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.610 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.610 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.611 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG com.networknt.schema.TypeValidator debug - validate( "56dd9479-d884-4676-a8de-67c3790bfcd5", {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.611 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.611 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.611 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1a56605-8486-41e2-862c-53248e56", {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.612 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.612 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a1a56605-8486-41e2-862c-53248e56","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.612 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.612 [XNIO-1 task-2] -QSDVIRrRnqWUMWRIOHnNg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.615 [XNIO-1 task-2] holYZgqbTHSpspY4HJtC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:42.616 [XNIO-1 task-2] holYZgqbTHSpspY4HJtC0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.616 [XNIO-1 task-2] holYZgqbTHSpspY4HJtC0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.616 [XNIO-1 task-2] holYZgqbTHSpspY4HJtC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:42.616 [XNIO-1 task-2] holYZgqbTHSpspY4HJtC0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", clientId) +19:00:42.622 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.622 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.623 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "56dd9479-d884-4676-a8de-67c3790bfcd5", {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "5818fdcc-49b4-4ada-91ff-30fde031", {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5818fdcc-49b4-4ada-91ff-30fde031","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.625 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.626 [XNIO-1 task-2] 13jPX2ifSxmtzgv-Lqeq9A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.629 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.629 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.630 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.630 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.630 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.630 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.630 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.630 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.631 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.631 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.631 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.631 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8fb96c6-c8b6-4bd9-9bf2-ae84582a","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.632 [XNIO-1 task-2] S1AoWQE9TYSliwZs9AZ8mw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.637 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.638 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.638 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.639 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.639 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.639 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "56dd9479-d884-4676-a8de-67c3790bfcd5", {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.639 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.639 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.639 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c60d209f-92f0-4c68-9d4a-23378648", {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.639 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.640 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c60d209f-92f0-4c68-9d4a-23378648","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.640 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.640 [XNIO-1 task-2] NT_eG9cNQCCAowOapxCpEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.643 [XNIO-1 task-2] S6DAgkcgSiCuUyjSGXx4Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/332bab43-8967-4a8f-ae82-540c46c8afb6, base path is set to: null +19:00:42.643 [XNIO-1 task-2] S6DAgkcgSiCuUyjSGXx4Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.644 [XNIO-1 task-2] S6DAgkcgSiCuUyjSGXx4Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.645 [XNIO-1 task-2] S6DAgkcgSiCuUyjSGXx4Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/332bab43-8967-4a8f-ae82-540c46c8afb6, base path is set to: null +19:00:42.646 [XNIO-1 task-2] S6DAgkcgSiCuUyjSGXx4Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", clientId) +19:00:42.654 [hz._hzInstance_1_dev.partition-operation.thread-2] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:42.655 [XNIO-1 task-2] S6DAgkcgSiCuUyjSGXx4Kw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.656 [XNIO-1 task-2] S6DAgkcgSiCuUyjSGXx4Kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.659 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.659 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.660 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.661 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.661 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.661 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG com.networknt.schema.TypeValidator debug - validate( "ab286667-5e05-4c44-ba87-3b4ba94eba20", {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.661 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.663 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.663 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG com.networknt.schema.TypeValidator debug - validate( "18f04bdf-60ff-434d-a847-1facd47c", {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.663 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.663 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"18f04bdf-60ff-434d-a847-1facd47c","clientDesc":"ab286667-5e05-4c44-ba87-3b4ba94eba20","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.663 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.663 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.685 [XNIO-1 task-2] wOXZiDjRRC6inWO9PtGA3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.687 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:92f6a50a +19:00:42.689 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.690 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.691 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.691 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.692 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:42.692 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG com.networknt.schema.TypeValidator debug - validate( "41078a7d-9984-4c9f-87d7-c3f582e79af3", {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:42.692 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.692 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.692 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1e95af0e-2b20-4601-a361-19d3b4f2", {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:42.692 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.692 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1e95af0e-2b20-4601-a361-19d3b4f2","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.693 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.694 [XNIO-1 task-2] 0ItSRoYHSVeDnnaQOHadgw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:42.700 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.700 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.700 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.701 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.701 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.701 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.701 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.701 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.702 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.702 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.702 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.702 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f989c1c2-21e7-4b04-8ed8-a6f64080","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.702 [XNIO-1 task-2] K5UHJaSuQjWaLv2ihlNE-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.713 [XNIO-1 task-2] 7S2PDtMOSZ2-dxxS3ptrbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.713 [XNIO-1 task-2] 7S2PDtMOSZ2-dxxS3ptrbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.713 [XNIO-1 task-2] 7S2PDtMOSZ2-dxxS3ptrbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.713 [XNIO-1 task-2] 7S2PDtMOSZ2-dxxS3ptrbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.733 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7104ba6 +19:00:42.750 [XNIO-1 task-2] mMmvWTErRHq3tH3b8uvQew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.750 [XNIO-1 task-2] mMmvWTErRHq3tH3b8uvQew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.750 [XNIO-1 task-2] mMmvWTErRHq3tH3b8uvQew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.751 [XNIO-1 task-2] mMmvWTErRHq3tH3b8uvQew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.766 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a7104ba6 +19:00:42.771 [XNIO-1 task-2] sCvObceiS1SxKQkJL6TNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.771 [XNIO-1 task-2] sCvObceiS1SxKQkJL6TNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.771 [XNIO-1 task-2] sCvObceiS1SxKQkJL6TNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.771 [XNIO-1 task-2] sCvObceiS1SxKQkJL6TNzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.777 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.778 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.778 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.779 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a64b2c6-0bf9-4a9b-be3a-ef2cde66","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.780 [XNIO-1 task-2] Dy23_gV8T3KfPfLHOCpXFg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.787 [XNIO-1 task-2] sbAY5qmLSl2oRejnrr1lBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.787 [XNIO-1 task-2] sbAY5qmLSl2oRejnrr1lBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.788 [XNIO-1 task-2] sbAY5qmLSl2oRejnrr1lBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.797 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f7653a5c-444d-4578-a371-9bd38130c0fd +19:00:42.812 [XNIO-1 task-2] snSrLz-NQZ-Wo1E5nmquiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22024862-b467-4746-8657-a778533e064a, base path is set to: null +19:00:42.812 [XNIO-1 task-2] snSrLz-NQZ-Wo1E5nmquiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.812 [XNIO-1 task-2] snSrLz-NQZ-Wo1E5nmquiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:42.813 [XNIO-1 task-2] snSrLz-NQZ-Wo1E5nmquiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22024862-b467-4746-8657-a778533e064a, base path is set to: null +19:00:42.813 [XNIO-1 task-2] snSrLz-NQZ-Wo1E5nmquiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "22024862-b467-4746-8657-a778533e064a", "22024862-b467-4746-8657-a778533e064a", clientId) +19:00:42.818 [XNIO-1 task-2] EKwGutWeQeilGYSro1XXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.818 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:92f6a50a +19:00:42.818 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:92f6a50a +19:00:42.819 [XNIO-1 task-2] EKwGutWeQeilGYSro1XXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.868 [XNIO-1 task-2] klU3hYkpT8--sewZjOpSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.868 [XNIO-1 task-2] klU3hYkpT8--sewZjOpSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.868 [XNIO-1 task-2] klU3hYkpT8--sewZjOpSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.870 [XNIO-1 task-2] klU3hYkpT8--sewZjOpSzA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.874 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:92f6a50a +19:00:42.894 [XNIO-1 task-2] dO55OC8uTZOUTa910CsLVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.895 [XNIO-1 task-2] dO55OC8uTZOUTa910CsLVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.895 [XNIO-1 task-2] dO55OC8uTZOUTa910CsLVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.895 [XNIO-1 task-2] dO55OC8uTZOUTa910CsLVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.935 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d0bd89ac-7250-44de-bea0-373d6e210a0c +19:00:42.936 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:92f6a50a +19:00:42.941 [XNIO-1 task-2] dO55OC8uTZOUTa910CsLVQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.942 [XNIO-1 task-2] dO55OC8uTZOUTa910CsLVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.950 [XNIO-1 task-2] zPU2bS0vT_SkBPhKxGMuEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/22024862-b467-4746-8657-a778533e064a +19:00:42.950 [XNIO-1 task-2] zPU2bS0vT_SkBPhKxGMuEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.950 [XNIO-1 task-2] zPU2bS0vT_SkBPhKxGMuEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:42.951 [XNIO-1 task-2] zPU2bS0vT_SkBPhKxGMuEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/22024862-b467-4746-8657-a778533e064a +19:00:42.961 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.961 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:42.962 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.963 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.965 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0de1d8df-f13a-4b2c-98f8-93b23983","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:42.966 [XNIO-1 task-2] fvAoAl1eRLGKI-_MlTJEKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:42.972 [XNIO-1 task-2] utom-BrsQXWg31vZlQERgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.972 [XNIO-1 task-2] utom-BrsQXWg31vZlQERgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.973 [XNIO-1 task-2] utom-BrsQXWg31vZlQERgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.997 [XNIO-1 task-2] t4ICvtSHTlWxFC1E3wKzjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.997 [XNIO-1 task-2] t4ICvtSHTlWxFC1E3wKzjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.997 [XNIO-1 task-2] t4ICvtSHTlWxFC1E3wKzjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:42.998 [XNIO-1 task-2] t4ICvtSHTlWxFC1E3wKzjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.013 [XNIO-1 task-2] 7PLNHUFAQZqNU9dQ6gcKJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:43.013 [XNIO-1 task-2] 7PLNHUFAQZqNU9dQ6gcKJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.013 [XNIO-1 task-2] 7PLNHUFAQZqNU9dQ6gcKJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.013 [XNIO-1 task-2] 7PLNHUFAQZqNU9dQ6gcKJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:43.024 [XNIO-1 task-2] 7PLNHUFAQZqNU9dQ6gcKJQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.025 [XNIO-1 task-2] 7PLNHUFAQZqNU9dQ6gcKJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.031 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.031 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.032 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.032 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG com.networknt.schema.TypeValidator debug - validate( "124a9f26-052c-4c27-a4a8-cd1e3032a43d", {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG com.networknt.schema.TypeValidator debug - validate( "8848b818-f862-4357-b776-f47ec6b6", {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8848b818-f862-4357-b776-f47ec6b6","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.033 [XNIO-1 task-2] GGxeHufWSO-7DHJtHO1kuA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:43.042 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.042 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.043 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.044 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.044 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.044 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.044 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.044 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.045 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.045 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.045 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.045 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ffad4110-7881-4c38-90a6-40fbab9e","clientDesc":"124a9f26-052c-4c27-a4a8-cd1e3032a43d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.045 [XNIO-1 task-2] XEe81oCLTWuqZzRvJmq5Nw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.080 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d839913c-e9d9-480f-9e2b-01e694e5e1d8 +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.080 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d839913c-e9d9-480f-9e2b-01e694e5e1d8 +19:00:43.083 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:79878ffa +19:00:43.085 [XNIO-1 task-2] mKop02FZRS2-V0oeMdpNNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:43.085 [XNIO-1 task-2] mKop02FZRS2-V0oeMdpNNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.085 [XNIO-1 task-2] mKop02FZRS2-V0oeMdpNNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.085 [XNIO-1 task-2] mKop02FZRS2-V0oeMdpNNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:43.086 [XNIO-1 task-2] mKop02FZRS2-V0oeMdpNNg DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", clientId) +19:00:43.098 [XNIO-1 task-2] JMEddqEcTEKOaMt9Npiufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7653a5c-444d-4578-a371-9bd38130c0fd +19:00:43.101 [XNIO-1 task-2] JMEddqEcTEKOaMt9Npiufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.101 [XNIO-1 task-2] JMEddqEcTEKOaMt9Npiufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.101 [XNIO-1 task-2] JMEddqEcTEKOaMt9Npiufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7653a5c-444d-4578-a371-9bd38130c0fd +19:00:43.107 [XNIO-1 task-2] 18X0QHUJSRuiAyFOTs6Qog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.107 [XNIO-1 task-2] 18X0QHUJSRuiAyFOTs6Qog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.107 [XNIO-1 task-2] 18X0QHUJSRuiAyFOTs6Qog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.108 [XNIO-1 task-2] 18X0QHUJSRuiAyFOTs6Qog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.126 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.127 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.128 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.128 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.128 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.128 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.128 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.128 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.128 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.129 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.129 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.129 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f510f259-97c6-492e-9afd-7c2ae937","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.129 [XNIO-1 task-2] VdUbwyDjQRmZ3sSfuAcM0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.132 [XNIO-1 task-2] vPGnno4eS3ubny2neKgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7653a5c-444d-4578-a371-9bd38130c0fd +19:00:43.132 [XNIO-1 task-2] vPGnno4eS3ubny2neKgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.132 [XNIO-1 task-2] vPGnno4eS3ubny2neKgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.132 [XNIO-1 task-2] vPGnno4eS3ubny2neKgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f7653a5c-444d-4578-a371-9bd38130c0fd +19:00:43.133 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f7653a5c-444d-4578-a371-9bd38130c0fd +19:00:43.151 [XNIO-1 task-2] Bnf8mloYTG2eH3vVtBqxUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.152 [XNIO-1 task-2] Bnf8mloYTG2eH3vVtBqxUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.153 [XNIO-1 task-2] Bnf8mloYTG2eH3vVtBqxUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.153 [XNIO-1 task-2] Bnf8mloYTG2eH3vVtBqxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.175 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:998f5a37-502c-46a0-8791-570505de69da +19:00:43.205 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.205 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.205 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.206 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.206 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.206 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.206 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.206 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.207 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.207 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.207 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.207 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fdb4485c-25c4-4003-ac42-7bbba6d1","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.208 [XNIO-1 task-2] Ts2Hp3DbQku6LiSxYthHpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.213 [XNIO-1 task-2] dyWKjc1eQkeqfJzH0HJbHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:43.214 [XNIO-1 task-2] dyWKjc1eQkeqfJzH0HJbHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.214 [XNIO-1 task-2] dyWKjc1eQkeqfJzH0HJbHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.214 [XNIO-1 task-2] dyWKjc1eQkeqfJzH0HJbHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:43.223 [XNIO-1 task-2] dyWKjc1eQkeqfJzH0HJbHg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.223 [XNIO-1 task-2] dyWKjc1eQkeqfJzH0HJbHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.229 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.229 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.230 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.230 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.230 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:43.230 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG com.networknt.schema.TypeValidator debug - validate( "30f68754-f8d9-440f-a6b0-85528f2a614d", {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:43.231 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.231 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.231 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG com.networknt.schema.TypeValidator debug - validate( "5f1b964e-f85f-4211-9184-a4a73721", {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:43.231 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.231 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5f1b964e-f85f-4211-9184-a4a73721","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.231 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.232 [XNIO-1 task-2] QUTFBJNsTN2UJsrD0cFoug DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:43.237 [XNIO-1 task-2] tlArkdU_RtSr8e0dLv-3Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.237 [XNIO-1 task-2] tlArkdU_RtSr8e0dLv-3Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.237 [XNIO-1 task-2] tlArkdU_RtSr8e0dLv-3Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.238 [XNIO-1 task-2] tlArkdU_RtSr8e0dLv-3Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.254 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.255 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.255 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.256 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.256 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.256 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.256 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.256 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.257 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.257 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.257 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.257 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fe9f88bd-2f15-4ed8-96af-efa258c5","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.257 [XNIO-1 task-2] clSHqa2gQOWi82y-xadFtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.266 [XNIO-1 task-2] ts2SvdGeR9ebC_DfwwX0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.266 [XNIO-1 task-2] ts2SvdGeR9ebC_DfwwX0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.267 [XNIO-1 task-2] ts2SvdGeR9ebC_DfwwX0zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.285 [XNIO-1 task-2] m0Yi8E07TK-NgHhgOMGCMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.285 [XNIO-1 task-2] m0Yi8E07TK-NgHhgOMGCMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.285 [XNIO-1 task-2] m0Yi8E07TK-NgHhgOMGCMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.310 [XNIO-1 task-2] l3XRCvkUTgGUYMu7lqJBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.310 [XNIO-1 task-2] l3XRCvkUTgGUYMu7lqJBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.311 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:06f55896 +19:00:43.313 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:06f55896 +19:00:43.330 [XNIO-1 task-2] 4kMEFE-hSzOwH6yhqgcS5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1e8db87d-18da-4342-8b0b-f55bcd4df736, base path is set to: null +19:00:43.330 [XNIO-1 task-2] 4kMEFE-hSzOwH6yhqgcS5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.330 [XNIO-1 task-2] 4kMEFE-hSzOwH6yhqgcS5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.330 [XNIO-1 task-2] 4kMEFE-hSzOwH6yhqgcS5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1e8db87d-18da-4342-8b0b-f55bcd4df736, base path is set to: null +19:00:43.331 [XNIO-1 task-2] 4kMEFE-hSzOwH6yhqgcS5A DEBUG com.networknt.schema.TypeValidator debug - validate( "1e8db87d-18da-4342-8b0b-f55bcd4df736", "1e8db87d-18da-4342-8b0b-f55bcd4df736", clientId) +19:00:43.343 [XNIO-1 task-2] URgYop81RjG4_Bc3zZJsuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/332bab43-8967-4a8f-ae82-540c46c8afb6 +19:00:43.343 [XNIO-1 task-2] URgYop81RjG4_Bc3zZJsuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.343 [XNIO-1 task-2] URgYop81RjG4_Bc3zZJsuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.343 [XNIO-1 task-2] URgYop81RjG4_Bc3zZJsuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/332bab43-8967-4a8f-ae82-540c46c8afb6 +19:00:43.346 [XNIO-1 task-2] KdJXW_DVQxulMLxmnGHJEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.346 [XNIO-1 task-2] KdJXW_DVQxulMLxmnGHJEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.347 [XNIO-1 task-2] KdJXW_DVQxulMLxmnGHJEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.366 [XNIO-1 task-2] KYlMEfAyTkeCQGPibeZL0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c, base path is set to: null +19:00:43.367 [XNIO-1 task-2] KYlMEfAyTkeCQGPibeZL0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.367 [XNIO-1 task-2] KYlMEfAyTkeCQGPibeZL0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.367 [XNIO-1 task-2] KYlMEfAyTkeCQGPibeZL0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c, base path is set to: null +19:00:43.367 [XNIO-1 task-2] KYlMEfAyTkeCQGPibeZL0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5a2f6dc5-403c-4ba2-9812-3e9a5efa382c", "5a2f6dc5-403c-4ba2-9812-3e9a5efa382c", clientId) +19:00:43.373 [XNIO-1 task-2] aTmwAEKuSHCpFwEws3n0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:43.373 [XNIO-1 task-2] aTmwAEKuSHCpFwEws3n0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.373 [XNIO-1 task-2] aTmwAEKuSHCpFwEws3n0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.373 [XNIO-1 task-2] aTmwAEKuSHCpFwEws3n0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:43.378 [XNIO-1 task-2] 4d8brreCTjeluOhHKsyKeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca, base path is set to: null +19:00:43.378 [XNIO-1 task-2] 4d8brreCTjeluOhHKsyKeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.378 [XNIO-1 task-2] 4d8brreCTjeluOhHKsyKeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.378 [XNIO-1 task-2] 4d8brreCTjeluOhHKsyKeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca, base path is set to: null +19:00:43.379 [XNIO-1 task-2] 4d8brreCTjeluOhHKsyKeA DEBUG com.networknt.schema.TypeValidator debug - validate( "367411fb-779b-40cf-93ac-21408c27a5ca", "367411fb-779b-40cf-93ac-21408c27a5ca", clientId) +19:00:43.383 [XNIO-1 task-2] m_k-eQGqRwmPspiYmBBOxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.383 [XNIO-1 task-2] m_k-eQGqRwmPspiYmBBOxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.383 [XNIO-1 task-2] m_k-eQGqRwmPspiYmBBOxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.413 [XNIO-1 task-2] TaPWUR7_SdS9fRWUKfSrHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2736cd94-3f12-4487-9735-3f6881568106 +Jun 28, 2024 7:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +19:00:43.420 [XNIO-1 task-2] pqXSR1LzRD2w-MrWrEXYyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.420 [XNIO-1 task-2] pqXSR1LzRD2w-MrWrEXYyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +19:00:43.421 [XNIO-1 task-2] pqXSR1LzRD2w-MrWrEXYyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2736cd94-3f12-4487-9735-3f6881568106, base path is set to: null +19:00:43.421 [XNIO-1 task-2] pqXSR1LzRD2w-MrWrEXYyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2736cd94-3f12-4487-9735-3f6881568106 +19:00:43.421 [XNIO-1 task-2] pqXSR1LzRD2w-MrWrEXYyg DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", clientId) +19:00:43.425 [XNIO-1 task-2] h72NWxhvQxybpn9lk_dHmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +19:00:43.467 [XNIO-1 task-2] wck2RbAwRMaWscHe3mGqTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9e11f999-f56c-4385-aba4-6d9ca8ef6d2c + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +19:00:43.467 [XNIO-1 task-2] wck2RbAwRMaWscHe3mGqTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.467 [XNIO-1 task-2] wck2RbAwRMaWscHe3mGqTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9e11f999-f56c-4385-aba4-6d9ca8ef6d2c, base path is set to: null +19:00:43.468 [XNIO-1 task-2] wck2RbAwRMaWscHe3mGqTw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e11f999-f56c-4385-aba4-6d9ca8ef6d2c", "9e11f999-f56c-4385-aba4-6d9ca8ef6d2c", clientId) +19:00:43.483 [XNIO-1 task-2] EdbFLLd4TTCuDWYUS9BXUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +19:00:43.485 [XNIO-1 task-2] EdbFLLd4TTCuDWYUS9BXUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.531 [XNIO-1 task-2] BJ5Bd62mTX6txtljfJhVVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.532 [XNIO-1 task-2] BJ5Bd62mTX6txtljfJhVVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.532 [XNIO-1 task-2] BJ5Bd62mTX6txtljfJhVVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.532 [XNIO-1 task-2] BJ5Bd62mTX6txtljfJhVVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.549 [XNIO-1 task-2] RKV1ow9hTreG8z5d00WDeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.549 [XNIO-1 task-2] RKV1ow9hTreG8z5d00WDeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.549 [XNIO-1 task-2] RKV1ow9hTreG8z5d00WDeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.549 [XNIO-1 task-2] RKV1ow9hTreG8z5d00WDeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.564 [XNIO-1 task-2] 8M8QlJe1TruRy8o3WDLl1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aedb009a-0e95-438d-89f5-5d0925b83657, base path is set to: null +19:00:43.564 [XNIO-1 task-2] 8M8QlJe1TruRy8o3WDLl1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.564 [XNIO-1 task-2] 8M8QlJe1TruRy8o3WDLl1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.564 [XNIO-1 task-2] 8M8QlJe1TruRy8o3WDLl1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aedb009a-0e95-438d-89f5-5d0925b83657, base path is set to: null +19:00:43.565 [XNIO-1 task-2] 8M8QlJe1TruRy8o3WDLl1g DEBUG com.networknt.schema.TypeValidator debug - validate( "aedb009a-0e95-438d-89f5-5d0925b83657", "aedb009a-0e95-438d-89f5-5d0925b83657", clientId) +19:00:43.595 [XNIO-1 task-2] Ph1Y9IWdSf2qTMNiqqyR9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/22024862-b467-4746-8657-a778533e064a +19:00:43.595 [XNIO-1 task-2] Ph1Y9IWdSf2qTMNiqqyR9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.595 [XNIO-1 task-2] Ph1Y9IWdSf2qTMNiqqyR9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.596 [XNIO-1 task-2] Ph1Y9IWdSf2qTMNiqqyR9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/22024862-b467-4746-8657-a778533e064a +19:00:43.607 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:92f6a50a +19:00:43.633 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b55689de +19:00:43.635 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b55689de +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) +Jun 28, 2024 7:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + ... 13 more + + at com.hazelcast.spi.Operation.call(Operation.java:170) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +java.lang.RuntimeException: null + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.642 [XNIO-1 task-2] Ph1Y9IWdSf2qTMNiqqyR9g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +19:00:43.652 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +19:00:43.652 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.652 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.652 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +19:00:43.652 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.652 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.653 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.653 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.653 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.653 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.653 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d4c18db5-d721-4945-956c-c0553d03","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.654 [XNIO-1 task-2] __mhKpdLR6Ssyr5IikQHTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.655 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cf17b7bd-7e27-421c-a31b-a05a567fd484 +19:00:43.657 [XNIO-1 task-2] lTYuyAi9R9yxqBBnHX9JGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/332bab43-8967-4a8f-ae82-540c46c8afb6, base path is set to: null +19:00:43.658 [XNIO-1 task-2] lTYuyAi9R9yxqBBnHX9JGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.658 [XNIO-1 task-2] lTYuyAi9R9yxqBBnHX9JGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.658 [XNIO-1 task-2] lTYuyAi9R9yxqBBnHX9JGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/332bab43-8967-4a8f-ae82-540c46c8afb6, base path is set to: null +19:00:43.659 [XNIO-1 task-2] lTYuyAi9R9yxqBBnHX9JGw DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", clientId) +19:00:43.663 [XNIO-1 task-2] 7mjofSK_RpWIRqAN4GO9aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.663 [XNIO-1 task-2] 7mjofSK_RpWIRqAN4GO9aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.664 [XNIO-1 task-2] 7mjofSK_RpWIRqAN4GO9aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.664 [XNIO-1 task-2] 7mjofSK_RpWIRqAN4GO9aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.688 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f30de2a8-2210-423e-a71d-26622a0ce2e7 +19:00:43.690 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f30de2a8-2210-423e-a71d-26622a0ce2e7 +19:00:43.770 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.771 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.771 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.772 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.772 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.772 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.772 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.773 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.773 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.773 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.773 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.773 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"198444a2-1fe9-4073-b570-4a058dfc","clientDesc":"32e163f5-0c80-4d12-bd3b-9052b069960e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.774 [XNIO-1 task-2] l--YSJk2RZ-VpNuXP8HCsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.778 [XNIO-1 task-2] o8MUfoY3RsO0xMfSrsULCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/37314aa3-56f5-4ddd-8303-a22fc53e65ac +19:00:43.778 [XNIO-1 task-2] o8MUfoY3RsO0xMfSrsULCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.778 [XNIO-1 task-2] o8MUfoY3RsO0xMfSrsULCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.779 [XNIO-1 task-2] o8MUfoY3RsO0xMfSrsULCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/37314aa3-56f5-4ddd-8303-a22fc53e65ac, base path is set to: null +19:00:43.779 [XNIO-1 task-2] o8MUfoY3RsO0xMfSrsULCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "37314aa3-56f5-4ddd-8303-a22fc53e65ac", "37314aa3-56f5-4ddd-8303-a22fc53e65ac", clientId) +19:00:43.782 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:55ae6311 +19:00:43.788 [XNIO-1 task-2] zj1qtLd6QJWj-uIz_K4W0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.788 [XNIO-1 task-2] zj1qtLd6QJWj-uIz_K4W0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.789 [XNIO-1 task-2] zj1qtLd6QJWj-uIz_K4W0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.812 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5d263a0e +19:00:43.816 [XNIO-1 task-2] CfafhFRxRj6VhJt8IUKKjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.816 [XNIO-1 task-2] CfafhFRxRj6VhJt8IUKKjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.817 [XNIO-1 task-2] CfafhFRxRj6VhJt8IUKKjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.827 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:92f6a50a +19:00:43.834 [XNIO-1 task-2] xMtlnfgNTZK9Kbgmyth7oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:43.834 [XNIO-1 task-2] xMtlnfgNTZK9Kbgmyth7oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.834 [XNIO-1 task-2] xMtlnfgNTZK9Kbgmyth7oA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.834 [XNIO-1 task-2] xMtlnfgNTZK9Kbgmyth7oA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:43.835 [XNIO-1 task-2] xMtlnfgNTZK9Kbgmyth7oA DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", clientId) +19:00:43.838 [XNIO-1 task-2] to6WOoxkTdKjyqF3FcY_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.838 [XNIO-1 task-2] to6WOoxkTdKjyqF3FcY_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.838 [XNIO-1 task-2] to6WOoxkTdKjyqF3FcY_AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.856 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.856 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.857 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.857 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.857 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:43.857 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "30f68754-f8d9-440f-a6b0-85528f2a614d", {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:43.857 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.857 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.857 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c3c6f5d-13b2-4184-8323-0ec0c290", {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:43.858 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.858 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4c3c6f5d-13b2-4184-8323-0ec0c290","clientDesc":"30f68754-f8d9-440f-a6b0-85528f2a614d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.858 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.858 [XNIO-1 task-2] dUdm_6QfREu5mAQypvHDsg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:43.864 [XNIO-1 task-2] wOH4kjURTD-4vI5zPJEaeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.865 [XNIO-1 task-2] wOH4kjURTD-4vI5zPJEaeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.865 [XNIO-1 task-2] wOH4kjURTD-4vI5zPJEaeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.884 [XNIO-1 task-2] 0EDwkziwRqOyNQqxQp_iyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a5af52bc-ee88-4184-bc90-8165f1d8b6a7, base path is set to: null +19:00:43.884 [XNIO-1 task-2] 0EDwkziwRqOyNQqxQp_iyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.884 [XNIO-1 task-2] 0EDwkziwRqOyNQqxQp_iyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.885 [XNIO-1 task-2] 0EDwkziwRqOyNQqxQp_iyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a5af52bc-ee88-4184-bc90-8165f1d8b6a7, base path is set to: null +19:00:43.885 [XNIO-1 task-2] 0EDwkziwRqOyNQqxQp_iyA DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", clientId) +19:00:43.894 [XNIO-1 task-2] UGyIHfJjRpiIfLrIB0hegQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:43.894 [XNIO-1 task-2] UGyIHfJjRpiIfLrIB0hegQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.894 [XNIO-1 task-2] UGyIHfJjRpiIfLrIB0hegQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.895 [XNIO-1 task-2] UGyIHfJjRpiIfLrIB0hegQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:43.895 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:367411fb-779b-40cf-93ac-21408c27a5ca +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:43.902 [XNIO-1 task-2] UGyIHfJjRpiIfLrIB0hegQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:43.907 [XNIO-1 task-2] EsUjkkRDQPCK3xlRTCX80g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22024862-b467-4746-8657-a778533e064a, base path is set to: null +19:00:43.907 [XNIO-1 task-2] EsUjkkRDQPCK3xlRTCX80g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.907 [XNIO-1 task-2] EsUjkkRDQPCK3xlRTCX80g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:43.908 [XNIO-1 task-2] EsUjkkRDQPCK3xlRTCX80g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22024862-b467-4746-8657-a778533e064a, base path is set to: null +19:00:43.908 [XNIO-1 task-2] EsUjkkRDQPCK3xlRTCX80g DEBUG com.networknt.schema.TypeValidator debug - validate( "22024862-b467-4746-8657-a778533e064a", "22024862-b467-4746-8657-a778533e064a", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +Jun 28, 2024 7:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:43.917 [XNIO-1 task-2] EsUjkkRDQPCK3xlRTCX80g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.920 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.920 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.920 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.920 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + +19:00:43.921 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.921 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.921 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.921 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.921 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.921 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.922 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.922 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.922 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.922 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"28dd1e4b-0a9c-402b-b711-5c441469","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.922 [XNIO-1 task-2] PHdX7-xLS2ul0oM98dDS9g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.925 [XNIO-1 task-2] rdLK5cVxTvekJa6OA7d7zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:43.925 [XNIO-1 task-2] rdLK5cVxTvekJa6OA7d7zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.925 [XNIO-1 task-2] rdLK5cVxTvekJa6OA7d7zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.925 [XNIO-1 task-2] rdLK5cVxTvekJa6OA7d7zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/367411fb-779b-40cf-93ac-21408c27a5ca +19:00:43.935 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.935 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:43.935 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:43.937 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.938 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cbd4f8dc-e963-4eee-b852-d2a6da24","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:43.939 [XNIO-1 task-2] x0FjON4FSQS46vmKGR9vIg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:43.946 [XNIO-1 task-2] Awmbw6ObTJm5Pkbr3wN2SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.946 [XNIO-1 task-2] Awmbw6ObTJm5Pkbr3wN2SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.947 [XNIO-1 task-2] Awmbw6ObTJm5Pkbr3wN2SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.970 [XNIO-1 task-2] RRibkIWIQuOhib60bRdttg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.970 [XNIO-1 task-2] RRibkIWIQuOhib60bRdttg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.971 [XNIO-1 task-2] RRibkIWIQuOhib60bRdttg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.971 [XNIO-1 task-2] RRibkIWIQuOhib60bRdttg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.991 [XNIO-1 task-2] buST80l7Q0aek2u1CVZLiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:43.991 [XNIO-1 task-2] buST80l7Q0aek2u1CVZLiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:43.992 [XNIO-1 task-2] buST80l7Q0aek2u1CVZLiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:43.992 [XNIO-1 task-2] buST80l7Q0aek2u1CVZLiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:43.992 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e17f039c-8502-4eae-8bc0-923def0f5a7c +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:44.001 [XNIO-1 task-2] buST80l7Q0aek2u1CVZLiQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.005 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.006 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.006 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.007 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0cc5deca-c85f-45f1-82e1-2e5eebff","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.008 [XNIO-1 task-2] MfYZP4_WT4ymXXXGX1s4Qg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.013 [XNIO-1 task-2] 1RNk8BgATMuyTiZvzivb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:44.013 [XNIO-1 task-2] 1RNk8BgATMuyTiZvzivb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.013 [XNIO-1 task-2] 1RNk8BgATMuyTiZvzivb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.013 [XNIO-1 task-2] 1RNk8BgATMuyTiZvzivb1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:44.015 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e17f039c-8502-4eae-8bc0-923def0f5a7c +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:44.019 [XNIO-1 task-2] 1RNk8BgATMuyTiZvzivb1Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.024 [XNIO-1 task-2] Kcb-8HZVSBuamdqIrfbdAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/366825f3-9f2d-4e9e-8b4e-35efbd34304c, base path is set to: null +19:00:44.025 [XNIO-1 task-2] Kcb-8HZVSBuamdqIrfbdAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.025 [XNIO-1 task-2] Kcb-8HZVSBuamdqIrfbdAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:44.025 [XNIO-1 task-2] Kcb-8HZVSBuamdqIrfbdAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/366825f3-9f2d-4e9e-8b4e-35efbd34304c, base path is set to: null +19:00:44.025 [XNIO-1 task-2] Kcb-8HZVSBuamdqIrfbdAA DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", clientId) +19:00:44.035 [XNIO-1 task-2] 6sQ9m0wgTv6MBO7jctaM1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.035 [XNIO-1 task-2] 6sQ9m0wgTv6MBO7jctaM1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.036 [XNIO-1 task-2] 6sQ9m0wgTv6MBO7jctaM1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.036 [XNIO-1 task-2] 6sQ9m0wgTv6MBO7jctaM1g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.043 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:79878ffa +19:00:44.054 [XNIO-1 task-2] gYYPdXPQRQ-99IQnp8hzBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:44.054 [XNIO-1 task-2] gYYPdXPQRQ-99IQnp8hzBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.054 [XNIO-1 task-2] gYYPdXPQRQ-99IQnp8hzBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.054 [XNIO-1 task-2] gYYPdXPQRQ-99IQnp8hzBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:44.062 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.062 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.062 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.063 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.063 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.063 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.063 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.063 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.064 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.064 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.064 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.064 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77d23845-0da4-4fe0-bec2-24d3b156","clientDesc":"cda2bdec-0714-4e79-9e4d-6add6032540f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.064 [XNIO-1 task-2] bim-rWytTVG652FsJ1zaxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.072 [XNIO-1 task-2] 8_NM8qtlTeaiYyfyVtIwCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/366825f3-9f2d-4e9e-8b4e-35efbd34304c +19:00:44.073 [XNIO-1 task-2] 8_NM8qtlTeaiYyfyVtIwCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.073 [XNIO-1 task-2] 8_NM8qtlTeaiYyfyVtIwCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.073 [XNIO-1 task-2] 8_NM8qtlTeaiYyfyVtIwCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/366825f3-9f2d-4e9e-8b4e-35efbd34304c +19:00:44.166 [XNIO-1 task-2] 8_NM8qtlTeaiYyfyVtIwCg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.168 [XNIO-1 task-2] 8_NM8qtlTeaiYyfyVtIwCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.172 [XNIO-1 task-2] GeUhgYJ4T0GeeQhkoxGRYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.172 [XNIO-1 task-2] GeUhgYJ4T0GeeQhkoxGRYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.172 [XNIO-1 task-2] GeUhgYJ4T0GeeQhkoxGRYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.173 [XNIO-1 task-2] GeUhgYJ4T0GeeQhkoxGRYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.186 [XNIO-1 task-2] oUpRj90oSGiHluhPKF3zbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d2e84b93-3b22-4707-b209-8db6df2c804b +19:00:44.186 [XNIO-1 task-2] oUpRj90oSGiHluhPKF3zbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.186 [XNIO-1 task-2] oUpRj90oSGiHluhPKF3zbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.186 [XNIO-1 task-2] oUpRj90oSGiHluhPKF3zbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d2e84b93-3b22-4707-b209-8db6df2c804b +19:00:44.192 [XNIO-1 task-2] uq-2RBCATrWWdlPMPdJNsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.194 [XNIO-1 task-2] uq-2RBCATrWWdlPMPdJNsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.194 [XNIO-1 task-2] uq-2RBCATrWWdlPMPdJNsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.195 [XNIO-1 task-2] uq-2RBCATrWWdlPMPdJNsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.242 [XNIO-1 task-2] 4QEdVk02T1WYcqXhebqpUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.274 [XNIO-1 task-2] 4QEdVk02T1WYcqXhebqpUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.274 [XNIO-1 task-2] 4QEdVk02T1WYcqXhebqpUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.274 [XNIO-1 task-2] 4QEdVk02T1WYcqXhebqpUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.344 [XNIO-1 task-2] Z5XQxztdQAeCh7a7oGK1xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.344 [XNIO-1 task-2] Z5XQxztdQAeCh7a7oGK1xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.344 [XNIO-1 task-2] Z5XQxztdQAeCh7a7oGK1xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.345 [XNIO-1 task-2] Z5XQxztdQAeCh7a7oGK1xg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.377 [XNIO-1 task-2] 6PfZIXWASAGQyZgc0BISyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/50b9e989-ef60-40bb-891c-abe26c314c69, base path is set to: null +19:00:44.378 [XNIO-1 task-2] 6PfZIXWASAGQyZgc0BISyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.378 [XNIO-1 task-2] 6PfZIXWASAGQyZgc0BISyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:44.378 [XNIO-1 task-2] 6PfZIXWASAGQyZgc0BISyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/50b9e989-ef60-40bb-891c-abe26c314c69, base path is set to: null +19:00:44.378 [XNIO-1 task-2] 6PfZIXWASAGQyZgc0BISyg DEBUG com.networknt.schema.TypeValidator debug - validate( "50b9e989-ef60-40bb-891c-abe26c314c69", "50b9e989-ef60-40bb-891c-abe26c314c69", clientId) +19:00:44.382 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:44.383 [XNIO-1 task-2] 6PfZIXWASAGQyZgc0BISyg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.384 [XNIO-1 task-2] 6PfZIXWASAGQyZgc0BISyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.386 [XNIO-1 task-2] m33PjDIfQeGYTmMi0IgMog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.386 [XNIO-1 task-2] m33PjDIfQeGYTmMi0IgMog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.387 [XNIO-1 task-2] m33PjDIfQeGYTmMi0IgMog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.387 [XNIO-1 task-2] m33PjDIfQeGYTmMi0IgMog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.428 [XNIO-1 task-2] wuKYbif5TiKBP5v_0Oya8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.428 [XNIO-1 task-2] wuKYbif5TiKBP5v_0Oya8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.429 [XNIO-1 task-2] wuKYbif5TiKBP5v_0Oya8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.429 [XNIO-1 task-2] wuKYbif5TiKBP5v_0Oya8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.488 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.489 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.489 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "06b2211c-7cb3-423d-a6f2-aba70e504576", {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "40718a80-b5ed-465c-a9a3-7bf629d6", {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"40718a80-b5ed-465c-a9a3-7bf629d6","clientDesc":"06b2211c-7cb3-423d-a6f2-aba70e504576","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:44.490 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.491 [XNIO-1 task-2] SBEuejnfQK-77e098RhGiA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.497 [XNIO-1 task-2] 95mP4WkyQkmc5yfAWIcJzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.497 [XNIO-1 task-2] 95mP4WkyQkmc5yfAWIcJzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.497 [XNIO-1 task-2] 95mP4WkyQkmc5yfAWIcJzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.498 [XNIO-1 task-2] 95mP4WkyQkmc5yfAWIcJzw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.550 [XNIO-1 task-2] dlEfeQ9sRgejsJQT3YTJFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/204a2df5-db3e-466d-8d41-60419656013d, base path is set to: null +19:00:44.550 [XNIO-1 task-2] dlEfeQ9sRgejsJQT3YTJFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.550 [XNIO-1 task-2] dlEfeQ9sRgejsJQT3YTJFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:44.550 [XNIO-1 task-2] dlEfeQ9sRgejsJQT3YTJFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/204a2df5-db3e-466d-8d41-60419656013d, base path is set to: null +19:00:44.551 [XNIO-1 task-2] dlEfeQ9sRgejsJQT3YTJFg DEBUG com.networknt.schema.TypeValidator debug - validate( "204a2df5-db3e-466d-8d41-60419656013d", "204a2df5-db3e-466d-8d41-60419656013d", clientId) +19:00:44.568 [XNIO-1 task-2] MlbNuMVKRvK1-XpvY-8Jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.569 [XNIO-1 task-2] MlbNuMVKRvK1-XpvY-8Jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.569 [XNIO-1 task-2] MlbNuMVKRvK1-XpvY-8Jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.581 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aaf7b558-f85c-4541-a782-7391a894fc41 +19:00:44.604 [XNIO-1 task-2] HPKkZqBvRS6YV-STnQfMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.604 [XNIO-1 task-2] HPKkZqBvRS6YV-STnQfMIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.605 [XNIO-1 task-2] HPKkZqBvRS6YV-STnQfMIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.630 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.630 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.631 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.631 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.631 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.632 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.632 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.632 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.632 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.632 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.632 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.632 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b6943ede-8aa8-4e1e-89a3-ef683940","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.633 [XNIO-1 task-2] 4mLTc7Z-SgGmY0UbMTFGGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.638 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.638 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.639 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG com.networknt.schema.TypeValidator debug - validate( "95245f73-3f84-43ef-a3f4-6f5b2daa24d2", {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc42a99a-7bf2-4e97-9ccb-e796582c", {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dc42a99a-7bf2-4e97-9ccb-e796582c","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:44.640 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.641 [XNIO-1 task-2] fcQe7T2pRqWQXvNntX3EjA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.645 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.645 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.646 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.646 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.646 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.646 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.647 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.647 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.647 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.647 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.647 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.647 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c0bf4dc-5f61-49fa-81f3-d8c6a936","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.647 [XNIO-1 task-2] T_h9cCZoRFGqLI0kYfQwwA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.653 [XNIO-1 task-2] qiELB2hhR1essO2s2QPaPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.653 [XNIO-1 task-2] qiELB2hhR1essO2s2QPaPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.653 [XNIO-1 task-2] qiELB2hhR1essO2s2QPaPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.654 [XNIO-1 task-2] qiELB2hhR1essO2s2QPaPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.733 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:55860a17-1538-45e0-b7fc-688f0f3a5d11 +19:00:44.739 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:084f666a +19:00:44.747 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.749 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.749 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.754 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.754 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.754 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.754 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.754 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.755 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.755 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.755 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.755 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1dac6d59-caa7-44cd-ae37-a38626e0","clientDesc":"ed00f6d6-a43d-4caf-b4ae-5b562315d99a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.755 [XNIO-1 task-2] LYu6KFCwQ76_BCV-Bd3B8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.767 [XNIO-1 task-2] __Kqi2wYTGmGDHXRkfTltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a0d8afc8-5521-4a8f-9291-f42693a51155 +19:00:44.767 [XNIO-1 task-2] __Kqi2wYTGmGDHXRkfTltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.767 [XNIO-1 task-2] __Kqi2wYTGmGDHXRkfTltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.767 [XNIO-1 task-2] __Kqi2wYTGmGDHXRkfTltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a0d8afc8-5521-4a8f-9291-f42693a51155 +19:00:44.771 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:751978ae +19:00:44.776 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:751978ae +19:00:44.778 [XNIO-1 task-2] Poxi60oFSf-G_lEKpMEXxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/50b9e989-ef60-40bb-891c-abe26c314c69 +19:00:44.778 [XNIO-1 task-2] Poxi60oFSf-G_lEKpMEXxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.778 [XNIO-1 task-2] Poxi60oFSf-G_lEKpMEXxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.778 [XNIO-1 task-2] Poxi60oFSf-G_lEKpMEXxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/50b9e989-ef60-40bb-891c-abe26c314c69 +19:00:44.784 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7f6b084f-0ae0-4d12-9bd8-1b3a16fc0485 +19:00:44.788 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.789 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.789 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.789 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.790 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d954b270-c850-4243-aa43-4b2b4a99","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.791 [XNIO-1 task-2] 3bIukCObTBeYVVlxlkyQ4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.791 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e9c1bb9d-79a5-49cf-a9ad-b29c2209629e +19:00:44.795 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.795 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.795 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "56dd9479-d884-4676-a8de-67c3790bfcd5", {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "bfd0dd0e-2e6a-4708-9ea5-d33c46a6", {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bfd0dd0e-2e6a-4708-9ea5-d33c46a6","clientDesc":"56dd9479-d884-4676-a8de-67c3790bfcd5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:44.796 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.798 [XNIO-1 task-2] sA5Zo4UQQMK2NNiUH6Wd9A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.804 [XNIO-1 task-2] sULH01R9S0meFY_cW1EnSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:44.804 [XNIO-1 task-2] sULH01R9S0meFY_cW1EnSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.804 [XNIO-1 task-2] sULH01R9S0meFY_cW1EnSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:44.804 [XNIO-1 task-2] sULH01R9S0meFY_cW1EnSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229, base path is set to: null +19:00:44.805 [XNIO-1 task-2] sULH01R9S0meFY_cW1EnSA DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", clientId) +19:00:44.809 [XNIO-1 task-2] n43PaUoUSA2fxsg2k0LerA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.809 [XNIO-1 task-2] n43PaUoUSA2fxsg2k0LerA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.809 [XNIO-1 task-2] n43PaUoUSA2fxsg2k0LerA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.842 [XNIO-1 task-2] r1c6vjOWRxqZbDcDgg-bjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c, base path is set to: null +19:00:44.843 [XNIO-1 task-2] r1c6vjOWRxqZbDcDgg-bjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.843 [XNIO-1 task-2] r1c6vjOWRxqZbDcDgg-bjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:44.844 [XNIO-1 task-2] r1c6vjOWRxqZbDcDgg-bjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c, base path is set to: null +19:00:44.844 [XNIO-1 task-2] r1c6vjOWRxqZbDcDgg-bjg DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", clientId) +19:00:44.848 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:78d63263 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Jun 28, 2024 7:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:44.850 [XNIO-1 task-2] r1c6vjOWRxqZbDcDgg-bjg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.851 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:78d63263 +19:00:44.857 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.857 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.857 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.858 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aabec487-b2d1-4193-99cb-fec3d35f","clientDesc":"b8da7fc1-3ca9-4ae1-9968-b2ba98fe9a4f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.859 [XNIO-1 task-2] wNO_n9NCT4OxFuwGmlV1AQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.862 [XNIO-1 task-2] RqjQttSeTnStuKA8fLuKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/22024862-b467-4746-8657-a778533e064a +19:00:44.862 [XNIO-1 task-2] RqjQttSeTnStuKA8fLuKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.862 [XNIO-1 task-2] RqjQttSeTnStuKA8fLuKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.862 [XNIO-1 task-2] RqjQttSeTnStuKA8fLuKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/22024862-b467-4746-8657-a778533e064a +19:00:44.863 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e0352aa3-2bb7-4db0-b7b1-1f65e14db011 +19:00:44.865 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e0352aa3-2bb7-4db0-b7b1-1f65e14db011 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Jun 28, 2024 7:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +19:00:44.871 [XNIO-1 task-2] RqjQttSeTnStuKA8fLuKTw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/22024862-b467-4746-8657-a778533e064a} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.879 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.880 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.880 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.881 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"36809f77-30a8-4a1d-abc5-eba41a3f","clientDesc":"317fa572-d245-40e5-ba3e-a8bac4814d78","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.882 [XNIO-1 task-2] V51oI8CPTgCnL-VpPUsLqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:44.890 [XNIO-1 task-1] h9aEEuxRRPedHxasf68fiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b1cf3c85-f4c5-43aa-8921-5df19773b7ab, base path is set to: null +19:00:44.891 [XNIO-1 task-1] h9aEEuxRRPedHxasf68fiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.891 [XNIO-1 task-1] h9aEEuxRRPedHxasf68fiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:44.891 [XNIO-1 task-1] h9aEEuxRRPedHxasf68fiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b1cf3c85-f4c5-43aa-8921-5df19773b7ab, base path is set to: null +19:00:44.891 [XNIO-1 task-1] h9aEEuxRRPedHxasf68fiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b1cf3c85-f4c5-43aa-8921-5df19773b7ab", "b1cf3c85-f4c5-43aa-8921-5df19773b7ab", clientId) +19:00:44.896 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d62e0b6e-70f7-4dc1-99f7-2d748e11b988 +19:00:44.907 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:06f55896 +19:00:44.907 [XNIO-1 task-1] xEqM4n-RQ9SLzgqjKORsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aaf7b558-f85c-4541-a782-7391a894fc41 +19:00:44.907 [XNIO-1 task-1] xEqM4n-RQ9SLzgqjKORsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.908 [XNIO-1 task-1] xEqM4n-RQ9SLzgqjKORsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.908 [XNIO-1 task-1] xEqM4n-RQ9SLzgqjKORsLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aaf7b558-f85c-4541-a782-7391a894fc41 +19:00:44.915 [XNIO-1 task-1] XPf8Nt0RSZe_K-V89HMIwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aaf7b558-f85c-4541-a782-7391a894fc41, base path is set to: null +19:00:44.915 [XNIO-1 task-1] XPf8Nt0RSZe_K-V89HMIwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.915 [XNIO-1 task-1] XPf8Nt0RSZe_K-V89HMIwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:44.915 [XNIO-1 task-1] XPf8Nt0RSZe_K-V89HMIwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aaf7b558-f85c-4541-a782-7391a894fc41, base path is set to: null +19:00:44.916 [XNIO-1 task-1] XPf8Nt0RSZe_K-V89HMIwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aaf7b558-f85c-4541-a782-7391a894fc41", "aaf7b558-f85c-4541-a782-7391a894fc41", clientId) +19:00:44.919 [XNIO-1 task-1] eOnNekKIQx6wMj1zUBg_OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aaf7b558-f85c-4541-a782-7391a894fc41 +19:00:44.919 [XNIO-1 task-1] eOnNekKIQx6wMj1zUBg_OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.919 [XNIO-1 task-1] eOnNekKIQx6wMj1zUBg_OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:44.919 [XNIO-1 task-1] eOnNekKIQx6wMj1zUBg_OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/aaf7b558-f85c-4541-a782-7391a894fc41 +19:00:44.920 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d62e0b6e-70f7-4dc1-99f7-2d748e11b988 +19:00:44.922 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:78d63263 +19:00:44.926 [XNIO-1 task-1] E4Be5gb8TTmStuV5kQOD9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.926 [XNIO-1 task-1] E4Be5gb8TTmStuV5kQOD9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.926 [XNIO-1 task-1] E4Be5gb8TTmStuV5kQOD9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.926 [XNIO-1 task-1] E4Be5gb8TTmStuV5kQOD9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.953 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b55689de +19:00:44.956 [XNIO-1 task-1] JpgNAgpjSeCuW-FsfYuKlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.957 [XNIO-1 task-1] JpgNAgpjSeCuW-FsfYuKlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.957 [XNIO-1 task-1] JpgNAgpjSeCuW-FsfYuKlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.957 [XNIO-1 task-1] JpgNAgpjSeCuW-FsfYuKlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.982 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.982 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.983 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:44.983 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.983 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:44.984 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "277b533d-2316-4b8a-868b-28e73c6e59eb", {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:44.984 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:44.984 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:44.984 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "0bc5d9f2-a621-49cb-9ed2-750c04e9", {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:44.984 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.984 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0bc5d9f2-a621-49cb-9ed2-750c04e9","clientDesc":"277b533d-2316-4b8a-868b-28e73c6e59eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:44.989 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.989 [XNIO-1 task-1] incuomJzSO-HYwHBLqZhiw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.993 [XNIO-1 task-1] caWa3UAoS8ipY5BN9NSwnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:44.993 [XNIO-1 task-1] caWa3UAoS8ipY5BN9NSwnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:44.994 [XNIO-1 task-1] caWa3UAoS8ipY5BN9NSwnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.002 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b55689de +19:00:45.019 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.020 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.020 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.021 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.023 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"abff1809-3d41-4c42-8c8d-83131e28","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.024 [XNIO-1 task-1] KHy-v-vFQia1SIeIzuJbww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:45.033 [XNIO-1 task-1] 1yfWTdlESPWTMPfBfhA2dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:45.033 [XNIO-1 task-1] 1yfWTdlESPWTMPfBfhA2dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.033 [XNIO-1 task-1] 1yfWTdlESPWTMPfBfhA2dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.033 [XNIO-1 task-1] 1yfWTdlESPWTMPfBfhA2dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:45.041 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.041 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.042 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.042 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.042 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.043 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.046 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.047 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.047 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.047 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.047 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.049 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ac6c257-33de-47bc-a5c5-2da1926e","clientDesc":"95245f73-3f84-43ef-a3f4-6f5b2daa24d2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.049 [XNIO-1 task-1] 7csTTSLTTemSVQ9G884MrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:45.052 [XNIO-1 task-1] BiB_t4MVQDe4X6-BDiRz7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:45.052 [XNIO-1 task-1] BiB_t4MVQDe4X6-BDiRz7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.053 [XNIO-1 task-1] BiB_t4MVQDe4X6-BDiRz7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.053 [XNIO-1 task-1] BiB_t4MVQDe4X6-BDiRz7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:45.057 [XNIO-1 task-1] Go8y51nwQiyqJdeV9ERklA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd, base path is set to: null +19:00:45.057 [XNIO-1 task-1] Go8y51nwQiyqJdeV9ERklA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.057 [XNIO-1 task-1] Go8y51nwQiyqJdeV9ERklA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.057 [XNIO-1 task-1] Go8y51nwQiyqJdeV9ERklA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd, base path is set to: null +19:00:45.058 [XNIO-1 task-1] Go8y51nwQiyqJdeV9ERklA DEBUG com.networknt.schema.TypeValidator debug - validate( "09e716a7-9809-43b0-9b1f-2c3c6af3fcfd", "09e716a7-9809-43b0-9b1f-2c3c6af3fcfd", clientId) +19:00:45.061 [XNIO-1 task-1] WOdkuV8VQDSTD1ahBLtDsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:45.061 [XNIO-1 task-1] WOdkuV8VQDSTD1ahBLtDsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.061 [XNIO-1 task-1] WOdkuV8VQDSTD1ahBLtDsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.062 [XNIO-1 task-1] WOdkuV8VQDSTD1ahBLtDsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:45.080 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.081 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.081 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.082 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a43bbc00-3fd3-42f1-bef9-d88245f2","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.083 [XNIO-1 task-1] Fw-BJLvxSW64L1Bd29YGJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:45.088 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.088 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.089 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.089 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.089 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:45.089 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0a61a171-c6fe-4166-b433-5f5d5c01760f", {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:45.091 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.091 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.091 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3254984b-4f2b-45e5-8a90-415dd116", {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:45.091 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:45.091 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3254984b-4f2b-45e5-8a90-415dd116","clientDesc":"0a61a171-c6fe-4166-b433-5f5d5c01760f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.092 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.092 [XNIO-1 task-1] G1kEq80VRLGm2sOfiaveIQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.104 [XNIO-1 task-1] ZrAFUjz4T6CYNd9V14zL1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0d8afc8-5521-4a8f-9291-f42693a51155, base path is set to: null +19:00:45.105 [XNIO-1 task-1] ZrAFUjz4T6CYNd9V14zL1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.105 [XNIO-1 task-1] ZrAFUjz4T6CYNd9V14zL1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.105 [XNIO-1 task-1] ZrAFUjz4T6CYNd9V14zL1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0d8afc8-5521-4a8f-9291-f42693a51155, base path is set to: null +19:00:45.105 [XNIO-1 task-1] ZrAFUjz4T6CYNd9V14zL1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d8afc8-5521-4a8f-9291-f42693a51155", "a0d8afc8-5521-4a8f-9291-f42693a51155", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:45.123 [XNIO-1 task-1] ZrAFUjz4T6CYNd9V14zL1Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/a0d8afc8-5521-4a8f-9291-f42693a51155} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.130 [XNIO-1 task-1] gkp8XFooTCqslmcT2utm8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0d8afc8-5521-4a8f-9291-f42693a51155, base path is set to: null +19:00:45.130 [XNIO-1 task-1] gkp8XFooTCqslmcT2utm8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.130 [XNIO-1 task-1] gkp8XFooTCqslmcT2utm8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.130 [XNIO-1 task-1] gkp8XFooTCqslmcT2utm8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a0d8afc8-5521-4a8f-9291-f42693a51155, base path is set to: null +19:00:45.130 [XNIO-1 task-1] gkp8XFooTCqslmcT2utm8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d8afc8-5521-4a8f-9291-f42693a51155", "a0d8afc8-5521-4a8f-9291-f42693a51155", clientId) +19:00:45.151 [XNIO-1 task-1] IIA3f8XTT-ygSwFv2LRQjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.151 [XNIO-1 task-1] IIA3f8XTT-ygSwFv2LRQjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.152 [XNIO-1 task-1] IIA3f8XTT-ygSwFv2LRQjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.181 [XNIO-1 task-1] aj3BEGhmTtCWZjBLqbhHRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:45.182 [XNIO-1 task-1] aj3BEGhmTtCWZjBLqbhHRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.182 [XNIO-1 task-1] aj3BEGhmTtCWZjBLqbhHRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.182 [XNIO-1 task-1] aj3BEGhmTtCWZjBLqbhHRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:45.194 [XNIO-1 task-1] aj3BEGhmTtCWZjBLqbhHRw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) +Jun 28, 2024 7:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.194 [XNIO-1 task-1] aj3BEGhmTtCWZjBLqbhHRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:45.199 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.199 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.199 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.199 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.199 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + +19:00:45.199 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "245f9f66-d065-4369-8fde-876c74dbb014", {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "a6c7e218-59e2-4c5e-b5ba-693a9ed6", {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:45.200 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a6c7e218-59e2-4c5e-b5ba-693a9ed6","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.201 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.201 [XNIO-1 task-1] CwPCjRHeRuiHJ8HIApp1ug DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.202 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:78d63263 +19:00:45.207 [XNIO-1 task-1] 2n2F_VLxTDqlzF9bqroHhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.207 [XNIO-1 task-1] 2n2F_VLxTDqlzF9bqroHhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.207 [XNIO-1 task-1] 2n2F_VLxTDqlzF9bqroHhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.208 [XNIO-1 task-1] 2n2F_VLxTDqlzF9bqroHhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.268 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.268 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.268 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.269 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3986127f-418a-4839-837b-7ddacab7","clientDesc":"245f9f66-d065-4369-8fde-876c74dbb014","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.270 [XNIO-1 task-1] E7vq6HRVQ9iXPsbpRlNK7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:45.278 [XNIO-1 task-1] uiv02MnzQSyX_Pxa3t1JGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.278 [XNIO-1 task-1] uiv02MnzQSyX_Pxa3t1JGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.278 [XNIO-1 task-1] uiv02MnzQSyX_Pxa3t1JGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.287 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2db09fa3-1353-4cd2-8fbc-82fe9a3f643c +19:00:45.299 [XNIO-1 task-1] UZX29MkpRUaBO2rMbA23AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.299 [XNIO-1 task-1] UZX29MkpRUaBO2rMbA23AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.299 [XNIO-1 task-1] UZX29MkpRUaBO2rMbA23AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.300 [XNIO-1 task-1] UZX29MkpRUaBO2rMbA23AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.321 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b55689de +19:00:45.323 [XNIO-1 task-1] UXcL1XOdTnG_8xcg7aQ8UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.323 [XNIO-1 task-1] UXcL1XOdTnG_8xcg7aQ8UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.323 [XNIO-1 task-1] UXcL1XOdTnG_8xcg7aQ8UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.323 [XNIO-1 task-1] UXcL1XOdTnG_8xcg7aQ8UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.339 [XNIO-1 task-1] 9b5VAMtoTUqVgklehBnU8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.339 [XNIO-1 task-1] 9b5VAMtoTUqVgklehBnU8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.339 [XNIO-1 task-1] 9b5VAMtoTUqVgklehBnU8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.340 [XNIO-1 task-1] 9b5VAMtoTUqVgklehBnU8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.354 [XNIO-1 task-1] BNFIOBxyRvOledlkhqr77A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d2e84b93-3b22-4707-b209-8db6df2c804b, base path is set to: null +19:00:45.355 [XNIO-1 task-1] BNFIOBxyRvOledlkhqr77A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.355 [XNIO-1 task-1] BNFIOBxyRvOledlkhqr77A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.355 [XNIO-1 task-1] BNFIOBxyRvOledlkhqr77A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d2e84b93-3b22-4707-b209-8db6df2c804b, base path is set to: null +19:00:45.356 [XNIO-1 task-1] BNFIOBxyRvOledlkhqr77A DEBUG com.networknt.schema.TypeValidator debug - validate( "d2e84b93-3b22-4707-b209-8db6df2c804b", "d2e84b93-3b22-4707-b209-8db6df2c804b", clientId) +19:00:45.375 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.375 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.375 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "14f5a70d-b161-47d4-87e5-9a19bdb667a0", {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "1c7bfec5-055e-4f6f-b9a7-c57fc30a", {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:45.376 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1c7bfec5-055e-4f6f-b9a7-c57fc30a","clientDesc":"14f5a70d-b161-47d4-87e5-9a19bdb667a0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.377 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.377 [XNIO-1 task-1] 07ARbby3Qjiqw7TUY_t7rg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.381 [XNIO-1 task-1] Z6eKJDhfQDelJ6ZqE9-zSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.381 [XNIO-1 task-1] Z6eKJDhfQDelJ6ZqE9-zSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.382 [XNIO-1 task-1] Z6eKJDhfQDelJ6ZqE9-zSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.413 [XNIO-1 task-1] YbSz8UxmQjKTz4GzwsPpxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6b3e1a35-d000-4ff8-baf7-400c0d5dde7d, base path is set to: null +19:00:45.414 [XNIO-1 task-1] YbSz8UxmQjKTz4GzwsPpxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.414 [XNIO-1 task-1] YbSz8UxmQjKTz4GzwsPpxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.414 [XNIO-1 task-1] YbSz8UxmQjKTz4GzwsPpxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6b3e1a35-d000-4ff8-baf7-400c0d5dde7d, base path is set to: null +19:00:45.414 [XNIO-1 task-1] YbSz8UxmQjKTz4GzwsPpxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6b3e1a35-d000-4ff8-baf7-400c0d5dde7d", "6b3e1a35-d000-4ff8-baf7-400c0d5dde7d", clientId) +19:00:45.430 [XNIO-1 task-1] vUIPR0-wTLewrxFFREctVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7fbcebd1-0c74-4ce4-944b-da1f968bc288 +19:00:45.430 [XNIO-1 task-1] vUIPR0-wTLewrxFFREctVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.430 [XNIO-1 task-1] vUIPR0-wTLewrxFFREctVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.430 [XNIO-1 task-1] vUIPR0-wTLewrxFFREctVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7fbcebd1-0c74-4ce4-944b-da1f968bc288 +19:00:45.438 [XNIO-1 task-1] 4e0RPzP5QuCvQ89K2J4owQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7fbcebd1-0c74-4ce4-944b-da1f968bc288, base path is set to: null +19:00:45.438 [XNIO-1 task-1] 4e0RPzP5QuCvQ89K2J4owQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.438 [XNIO-1 task-1] 4e0RPzP5QuCvQ89K2J4owQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.438 [XNIO-1 task-1] 4e0RPzP5QuCvQ89K2J4owQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7fbcebd1-0c74-4ce4-944b-da1f968bc288, base path is set to: null +19:00:45.438 [XNIO-1 task-1] 4e0RPzP5QuCvQ89K2J4owQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7fbcebd1-0c74-4ce4-944b-da1f968bc288", "7fbcebd1-0c74-4ce4-944b-da1f968bc288", clientId) +19:00:45.444 [XNIO-1 task-1] Qly0JsnKTIeqo6w8T9ctEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.444 [XNIO-1 task-1] Qly0JsnKTIeqo6w8T9ctEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.444 [XNIO-1 task-1] Qly0JsnKTIeqo6w8T9ctEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.480 [XNIO-1 task-1] BC7VXcbmRMWOH8jQQ3AQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/50b9e989-ef60-40bb-891c-abe26c314c69 +19:00:45.480 [XNIO-1 task-1] BC7VXcbmRMWOH8jQQ3AQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.480 [XNIO-1 task-1] BC7VXcbmRMWOH8jQQ3AQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.481 [XNIO-1 task-1] BC7VXcbmRMWOH8jQQ3AQxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/50b9e989-ef60-40bb-891c-abe26c314c69 +19:00:45.483 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:50b9e989-ef60-40bb-891c-abe26c314c69 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:45.491 [XNIO-1 task-1] BC7VXcbmRMWOH8jQQ3AQxg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/50b9e989-ef60-40bb-891c-abe26c314c69} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.494 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.494 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.494 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.495 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.495 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.495 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.495 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.495 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.495 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.496 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.496 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.496 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"80c8e58f-72c2-4792-b5f4-4f0b7247","clientDesc":"8cfb0851-0b85-4d82-b758-2a2fa1a117a4","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.497 [XNIO-1 task-1] MpWXcTxeTuOkuUDciF_1IQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +19:00:45.500 [XNIO-1 task-1] a4Dg_HuWR8qxgloXda502A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:45.500 [XNIO-1 task-1] a4Dg_HuWR8qxgloXda502A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1315077f-031c-4d59-8615-97ee00d6","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +19:00:45.501 [XNIO-1 task-1] a4Dg_HuWR8qxgloXda502A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1315077f-031c-4d59-8615-97ee00d6","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1315077f-031c-4d59-8615-97ee00d6","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + +19:00:45.501 [XNIO-1 task-1] a4Dg_HuWR8qxgloXda502A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1315077f-031c-4d59-8615-97ee00d6","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:45.501 [XNIO-1 task-1] a4Dg_HuWR8qxgloXda502A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1315077f-031c-4d59-8615-97ee00d6","clientDesc":"2fb90423-14ee-4b75-9dae-0431158e16c9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.501 [XNIO-1 task-1] a4Dg_HuWR8qxgloXda502A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.501 [XNIO-1 task-1] a4Dg_HuWR8qxgloXda502A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.513 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.513 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.514 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.514 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.514 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.514 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.514 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.515 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +19:00:45.515 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +19:00:45.515 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.515 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.515 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e2552c5a-f632-405f-b385-e926583a","clientDesc":"41078a7d-9984-4c9f-87d7-c3f582e79af3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.515 [XNIO-1 task-1] bIroDdBbRUeoqEWjYm0lWw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:45.522 [XNIO-1 task-1] U0R1AkrCRxCVxKxw9ncHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7fbcebd1-0c74-4ce4-944b-da1f968bc288 +19:00:45.522 [XNIO-1 task-1] U0R1AkrCRxCVxKxw9ncHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.522 [XNIO-1 task-1] U0R1AkrCRxCVxKxw9ncHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.523 [XNIO-1 task-1] U0R1AkrCRxCVxKxw9ncHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7fbcebd1-0c74-4ce4-944b-da1f968bc288 +19:00:45.539 [XNIO-1 task-1] BOH53fkpRpySKWWgq90zBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.539 [XNIO-1 task-1] BOH53fkpRpySKWWgq90zBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.539 [XNIO-1 task-1] BOH53fkpRpySKWWgq90zBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.561 [XNIO-1 task-1] qsCo7b7eQ1Gs1jLIrzAdHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.561 [XNIO-1 task-1] qsCo7b7eQ1Gs1jLIrzAdHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.563 [XNIO-1 task-1] qsCo7b7eQ1Gs1jLIrzAdHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.563 [XNIO-1 task-1] qsCo7b7eQ1Gs1jLIrzAdHA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:45.584 [XNIO-1 task-1] bPpVdQe0T-y8QOaUat767g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +19:00:45.584 [XNIO-1 task-1] bPpVdQe0T-y8QOaUat767g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +19:00:45.591 [XNIO-1 task-1] b4FShFe6Q5CcPe2p6fMRzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null + +19:00:45.591 [XNIO-1 task-1] b4FShFe6Q5CcPe2p6fMRzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.592 [XNIO-1 task-1] b4FShFe6Q5CcPe2p6fMRzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.592 [XNIO-1 task-1] b4FShFe6Q5CcPe2p6fMRzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.612 [XNIO-1 task-1] 4KUUtO6gQo6_nXih9h6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:45.612 [XNIO-1 task-1] 4KUUtO6gQo6_nXih9h6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.612 [XNIO-1 task-1] 4KUUtO6gQo6_nXih9h6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.612 [XNIO-1 task-1] 4KUUtO6gQo6_nXih9h6nVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c +19:00:45.613 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e17f039c-8502-4eae-8bc0-923def0f5a7c +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:45.619 [XNIO-1 task-1] 4KUUtO6gQo6_nXih9h6nVA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.622 [XNIO-1 task-1] gSeL98uuQKuqCHk6fhpr-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c, base path is set to: null +19:00:45.623 [XNIO-1 task-1] gSeL98uuQKuqCHk6fhpr-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.623 [XNIO-1 task-1] gSeL98uuQKuqCHk6fhpr-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.623 [XNIO-1 task-1] gSeL98uuQKuqCHk6fhpr-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e17f039c-8502-4eae-8bc0-923def0f5a7c, base path is set to: null +19:00:45.623 [XNIO-1 task-1] gSeL98uuQKuqCHk6fhpr-A DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", clientId) +19:00:45.629 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +19:00:45.657 [XNIO-1 task-1] gSeL98uuQKuqCHk6fhpr-A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:45.658 [XNIO-1 task-1] gSeL98uuQKuqCHk6fhpr-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +19:00:45.663 [XNIO-1 task-1] oLBD8UgtSFaOQdaAWzKJVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1abc283-fb67-46c2-959b-b1b11e996401 +19:00:45.663 [XNIO-1 task-1] oLBD8UgtSFaOQdaAWzKJVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.664 [XNIO-1 task-1] oLBD8UgtSFaOQdaAWzKJVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +19:00:45.664 [XNIO-1 task-1] oLBD8UgtSFaOQdaAWzKJVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1abc283-fb67-46c2-959b-b1b11e996401 +19:00:45.667 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:084f666a +19:00:45.675 [XNIO-1 task-1] YBmXwlzzTRucNpDc_09a-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.675 [XNIO-1 task-1] YBmXwlzzTRucNpDc_09a-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.675 [XNIO-1 task-1] YBmXwlzzTRucNpDc_09a-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +19:00:45.696 [XNIO-1 task-1] QYwA-Ic5To6jTBKHRpMiMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22024862-b467-4746-8657-a778533e064a, base path is set to: null +19:00:45.696 [XNIO-1 task-1] QYwA-Ic5To6jTBKHRpMiMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +19:00:45.696 [XNIO-1 task-1] QYwA-Ic5To6jTBKHRpMiMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +19:00:45.696 [XNIO-1 task-1] QYwA-Ic5To6jTBKHRpMiMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/22024862-b467-4746-8657-a778533e064a, base path is set to: null +19:00:45.696 [XNIO-1 task-1] QYwA-Ic5To6jTBKHRpMiMg DEBUG com.networknt.schema.TypeValidator debug - validate( "22024862-b467-4746-8657-a778533e064a", "22024862-b467-4746-8657-a778533e064a", clientId) +19:00:45.714 [XNIO-1 task-1] 9NIFWO6TSfaGqEmwWde7cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/22024862-b467-4746-8657-a778533e064a +19:00:45.714 [XNIO-1 task-1] 9NIFWO6TSfaGqEmwWde7cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +19:00:45.715 [XNIO-1 task-1] 9NIFWO6TSfaGqEmwWde7cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} diff --git a/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-code-1.log b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..879ec58 --- /dev/null +++ b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-code-1.log @@ -0,0 +1,3100 @@ +19:00:41.635 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a7d5b86 +19:00:41.662 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51f3b622 +19:00:41.663 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:51f3b622 +19:00:41.834 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:41.834 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:41.834 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:41.835 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG com.networknt.schema.TypeValidator debug - validate( "VQ3mhIFXN7mCIPW-2_uC7RcDJGIfE8-d_iR0CJCodg4", "VQ3mhIFXN7mCIPW-2_uC7RcDJGIfE8-d_iR0CJCodg4", code_challenge) +19:00:41.835 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:41.836 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:41.836 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:41.837 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:41.837 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:41.841 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:41.850 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.850 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.850 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.851 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:41.851 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:41.852 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:41.852 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:41.851 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:41.862 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:41.862 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:41.871 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f3ec3dbe +19:00:41.881 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:41.881 [XNIO-1 task-1] QARYX2v5S2utCioytf_91w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:41.891 [XNIO-1 task-2] Pt1a78lrQkqcCt7uhcrasw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9vvRXr4SScaKJ06isS4IWw +19:00:41.893 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88d06e6d +19:00:41.898 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88d06e6d +19:00:41.900 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.900 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.902 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.903 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.903 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.903 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.903 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:41.904 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:41.904 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:41.905 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:41.905 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:41.905 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:41.905 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:41.906 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:41.906 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:41.907 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:41.907 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:41.907 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:41.926 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:41.926 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:41.931 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:41.931 [XNIO-1 task-1] UtQg-KEISjeFy4_jyfWT3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:41.935 [XNIO-1 task-2] BRJJwatuRjKYDh9GY4EKjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gX1TUxfbRByC2XuAzcCjnA +19:00:41.944 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.944 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.944 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:41.945 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:41.945 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:41.946 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:41.948 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:41.948 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:41.971 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:41.971 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:41.978 [XNIO-1 task-2] v06u4kHnThKdsYiW8t6wwg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=N5fyH3xZQzG9Y24r00yY7A +19:00:42.001 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1fa30ae4 +19:00:42.029 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6e057d1b +19:00:42.083 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.084 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.084 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.085 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:42.085 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.087 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.088 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.088 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.088 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.101 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.101 [XNIO-1 task-2] 3vvoXWnMQquzO2yr8E3E5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.160 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.161 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.161 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.162 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:42.166 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.177 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.178 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.178 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.178 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.186 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.186 [XNIO-1 task-2] aZDdBW0MSG2SDlYmRWSxWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.202 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.202 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.202 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.203 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", client_id) +19:00:42.203 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.204 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.204 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.204 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.205 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.212 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.213 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.213 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.216 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:42.217 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.217 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.218 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.218 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.219 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.223 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:88d06e6d +19:00:42.223 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.223 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.233 [XNIO-1 task-2] IOVxdr0AS9-6zOMqSgi3Sw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BS1nEudZSBeDHQuCbbNCpg +19:00:42.234 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.235 [XNIO-1 task-1] -LkEEW4zS6KLBb2barF-hg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.245 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.245 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.245 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.246 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG com.networknt.schema.TypeValidator debug - validate( "6hhWB-3TBYd3s82SrcaQHQnBeT_m7S2gdXczd-EE0qY", "6hhWB-3TBYd3s82SrcaQHQnBeT_m7S2gdXczd-EE0qY", code_challenge) +19:00:42.244 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.246 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.246 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.246 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.246 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.247 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG com.networknt.schema.TypeValidator debug - validate( "367411fb-779b-40cf-93ac-21408c27a5ca", "367411fb-779b-40cf-93ac-21408c27a5ca", client_id) +19:00:42.247 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.247 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.247 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.247 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.247 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.248 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.248 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.248 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.259 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.259 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.263 [XNIO-1 task-2] 1uLkszIDSsuYtdgy77zsaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=znzyzsQFRcisJ6Op5YylYw +19:00:42.265 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.265 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.268 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.268 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.268 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.269 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", client_id) +19:00:42.269 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.270 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.270 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.270 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.270 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.272 [XNIO-1 task-1] JWpZ_kJ1QJKMMpee33tPBg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OTuGFScuR06xqtgvkcvKxA +19:00:42.278 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.279 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.279 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.280 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.280 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.281 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.281 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.281 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.286 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.286 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.291 [XNIO-1 task-2] ZLhSDkBKTdSxRviUDEjZbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SfaQnO8_R-O97QR6AOgr8w +19:00:42.297 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1fa30ae4 +19:00:42.300 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.300 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.302 [XNIO-1 task-1] CMWbfG9nQ_u1d06PD0-vDg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0cRGL0vjT9egFK9-2UUqkA +19:00:42.334 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0a69866c-00af-463d-954c-1e9c602a955e +19:00:42.360 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d21b7953-9a9e-44fd-80dc-a3edac8e76e6 +19:00:42.360 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.361 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.361 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.362 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.362 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.365 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.366 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.366 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.373 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.373 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.373 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.374 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG com.networknt.schema.TypeValidator debug - validate( "l2hZEecHd6IBo8njPjACMgeITSD2RlwhGOKzSVJhMjI", "l2hZEecHd6IBo8njPjACMgeITSD2RlwhGOKzSVJhMjI", code_challenge) +19:00:42.376 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.376 [XNIO-1 task-1] XT7k29nHQwit1wrxHZ6aqg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.376 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.377 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.377 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.377 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.377 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.378 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.390 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.392 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.392 [XNIO-1 task-2] yHKxVGjqSOeb-fdkMfXTEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.395 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:42.403 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.404 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.404 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.405 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG com.networknt.schema.TypeValidator debug - validate( "FqacPPotm-FGpMBbN8ulZZyyt7IXNIIkwtYJxbV3-2A", "FqacPPotm-FGpMBbN8ulZZyyt7IXNIIkwtYJxbV3-2A", code_challenge) +19:00:42.405 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.405 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.406 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.406 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.406 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.407 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.412 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:172ee2b4-624d-4ce5-af5c-253363d8b202 +19:00:42.418 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.418 [XNIO-1 task-2] r6HodQtwQu6a_T1RkfncIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.422 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.423 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.423 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.424 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:42.424 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.425 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.425 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.425 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.430 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.438 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:017fc70a +19:00:42.443 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.443 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.447 [XNIO-1 task-1] 8cFis_ZATPOyqhAfvLDDDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1Hfc7cq5SBKBF9m0ibY31w +19:00:42.504 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.504 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.504 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.505 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:42.505 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.506 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.506 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.506 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.506 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.519 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.519 [XNIO-1 task-1] s7xbVnxzSM-wZ_b92wJUig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.522 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.522 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.522 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.523 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG com.networknt.schema.TypeValidator debug - validate( "W_n46L3iw-6nEzw7i8mVV8SWAWl5SkBucqupTT9SKI0", "W_n46L3iw-6nEzw7i8mVV8SWAWl5SkBucqupTT9SKI0", code_challenge) +19:00:42.523 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.524 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.524 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.525 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.525 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.525 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.537 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.538 [XNIO-1 task-2] s26X4VbmQ_-UEQgdU5BcQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.555 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.556 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.556 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.557 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG com.networknt.schema.TypeValidator debug - validate( "wapWfyRGiatrLSEZO7C2jRLlo4kxrvwj82NZP_H7Uvk", "wapWfyRGiatrLSEZO7C2jRLlo4kxrvwj82NZP_H7Uvk", code_challenge) +19:00:42.557 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.557 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.558 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.558 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.558 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.560 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.578 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.578 [XNIO-1 task-2] 2mN8ILInRFa49hNtFzqv2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.583 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.583 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.583 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.584 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc8e8bb5 +19:00:42.584 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.585 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.585 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.585 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.585 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.592 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.592 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.593 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.593 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG com.networknt.schema.TypeValidator debug - validate( "cjoCE6y_aMy8NbEks7bEDhcRSUvMZbu-5ovnokXFrV0", "cjoCE6y_aMy8NbEks7bEDhcRSUvMZbu-5ovnokXFrV0", code_challenge) +19:00:42.597 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.597 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.598 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.598 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.598 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.598 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.598 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.598 [XNIO-1 task-1] M7hgkRHPS1Cx0dN4LPcwig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.644 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc8e8bb5 +19:00:42.657 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.657 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.657 [XNIO-1 task-2] ZS69wvpuRTmtn8XubwDGiw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.657 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.657 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.658 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG com.networknt.schema.TypeValidator debug - validate( "367411fb-779b-40cf-93ac-21408c27a5ca", "367411fb-779b-40cf-93ac-21408c27a5ca", client_id) +19:00:42.659 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.660 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.660 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.660 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.660 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.661 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cc8e8bb5 +19:00:42.668 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.668 [XNIO-1 task-1] RgH1TFpsSQ-QMt9XOHBsNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.669 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.669 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.670 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.670 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:42.671 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.671 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.671 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.672 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.672 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.678 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.678 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.683 [XNIO-1 task-2] Bw8Vk7YoSAumiIJw0yDkrg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=btas-hb9TQKY1Fj6wfpCUQ +19:00:42.690 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.690 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.690 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.691 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG com.networknt.schema.TypeValidator debug - validate( "TizpdHTzIzxvQQgop1lsiKUvKu32K1s0RF5e5Kyhfzo", "TizpdHTzIzxvQQgop1lsiKUvKu32K1s0RF5e5Kyhfzo", code_challenge) +19:00:42.691 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.694 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.694 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.695 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.695 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.695 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.697 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.697 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.697 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.698 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.698 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.699 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.699 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.699 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.705 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.706 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.706 [XNIO-1 task-1] hOsCliQtSGeJx4U1SeQx2g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.706 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.709 [XNIO-1 task-2] H85T7mRzR4avEWgZGfcE9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sNJPYkKdRWGz4Zo_ucmfgQ +19:00:42.719 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.719 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.719 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.720 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3xmytZlm5Fut3L3VBmGEVgZU7Ki8zXw34um5jnVVhuI", "3xmytZlm5Fut3L3VBmGEVgZU7Ki8zXw34um5jnVVhuI", code_challenge) +19:00:42.728 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.729 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.729 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.730 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.731 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.732 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.737 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c833788b-c442-4255-8187-d112d7646d4f +19:00:42.764 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.765 [XNIO-1 task-1] XMsyxiCCR-a1fHrRZmAcbQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.788 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1fa30ae4 +19:00:42.790 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.791 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.791 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.795 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.795 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.795 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.796 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.796 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.796 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.797 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.797 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.797 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG com.networknt.schema.TypeValidator debug - validate( "-XBieOG8asOEFHwmHm090VbyS38BdLQE1MsQCJtGceA", "-XBieOG8asOEFHwmHm090VbyS38BdLQE1MsQCJtGceA", code_challenge) +19:00:42.798 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:42.798 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.798 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.799 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.799 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.799 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:42.810 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.810 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.812 [XNIO-1 task-1] uGd2GmYuSQqa5XpnVPuJEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0sdd29w5QAGWgrFCPlTJTA +19:00:42.815 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.815 [XNIO-1 task-2] N2WcbSFnTHWrb84a1tUqCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.829 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5b3d5ca4-6160-4592-9795-fa9548302704 +19:00:42.847 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5b3d5ca4-6160-4592-9795-fa9548302704 +19:00:42.853 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.853 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.853 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.854 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:42.855 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.855 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.855 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.858 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.858 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.865 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.866 [XNIO-1 task-2] Ac-g8FdKQbehvkPcWWMH3w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.875 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.875 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:42.875 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:42.876 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a2f6dc5-403c-4ba2-9812-3e9a5efa382c", "5a2f6dc5-403c-4ba2-9812-3e9a5efa382c", client_id) +19:00:42.876 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:42.876 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:42.876 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:42.877 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:42.879 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.888 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a0ff82b7 +19:00:42.889 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:42.889 [XNIO-1 task-1] fLlHz2jRSBae916U0IJUPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:42.890 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a0ff82b7 +19:00:42.896 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:504123b4-6fc7-4ff4-b499-ded9f056c229 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Jun 28, 2024 7:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +19:00:42.930 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:132ffc33-8335-481c-826a-c47c8108e50c + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +19:00:42.947 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.947 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.948 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.948 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.949 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.949 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.949 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.949 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:42.959 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a0ff82b7 +19:00:42.960 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:42.960 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:42.971 [XNIO-1 task-1] SIczvbVxSF6Rp1e17y0_nw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6voQrz9HSJyAtWxFEsF5NQ +19:00:42.972 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a7d5b86 +19:00:42.982 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.982 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.982 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:42.983 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:42.983 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:42.984 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:42.984 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:42.984 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:42.985 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.004 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.004 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.010 [XNIO-1 task-1] Rg_wf8YaSYKNalz2CdeS6A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MSxyJKtCRGK6THOOY91pCw +19:00:43.018 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6e057d1b +19:00:43.019 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.019 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.020 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.021 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.023 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.023 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.023 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.026 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.049 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.049 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.080 [XNIO-1 task-1] 8UMmfALZTbOmTEe-_zz02w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nZc0KG7SQRSp1p4tIYr7Hw +19:00:43.088 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.088 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.088 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.089 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.089 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.090 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.090 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.090 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.094 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.095 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.095 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.095 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( "DwnATXeheMLTOU2qr03B4LB_4GzhccY-aoUGqXW98cA", "DwnATXeheMLTOU2qr03B4LB_4GzhccY-aoUGqXW98cA", code_challenge) +19:00:43.096 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:43.096 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.097 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.097 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.097 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.097 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.110 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.110 [XNIO-1 task-1] AhdLAMZxT5uEWv6NrJxnZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.120 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.121 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.121 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.121 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG com.networknt.schema.TypeValidator debug - validate( "22024862-b467-4746-8657-a778533e064a", "22024862-b467-4746-8657-a778533e064a", client_id) +19:00:43.122 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.122 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.122 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.122 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.122 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.125 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.125 [XNIO-1 task-2] bTvJzu4oTBmP8iWwt4oZ6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.142 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.142 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.156 [XNIO-1 task-1] dPUDQ0IWRDu6wuLIX17TmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rSr8M-nwThub_o3wMlARfw +19:00:43.159 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88d06e6d +19:00:43.186 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.186 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.187 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.187 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.188 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.188 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.188 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.188 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.192 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.192 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.193 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.193 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "-MFF8P0R-c1-p3eZ1vUlzyW7T1W4URvBNNiH3GruRn4", "-MFF8P0R-c1-p3eZ1vUlzyW7T1W4URvBNNiH3GruRn4", code_challenge) +19:00:43.193 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:43.194 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.194 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.194 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.194 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.194 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.199 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.199 [XNIO-1 task-1] Ao9byI48SVO-3saWLc4uqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.208 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.208 [XNIO-1 task-2] Ph48cUEWRHub-eAnna6CXQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.209 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.209 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.211 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.211 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG com.networknt.schema.TypeValidator debug - validate( "22024862-b467-4746-8657-a778533e064a", "22024862-b467-4746-8657-a778533e064a", client_id) +19:00:43.212 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.213 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.214 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.219 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.219 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.225 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.225 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.225 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.226 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG com.networknt.schema.TypeValidator debug - validate( "jsj9-Ns_j7FsI2Y8HDBYg1bqfHnKQgxhZwy7G2WtUqU", "jsj9-Ns_j7FsI2Y8HDBYg1bqfHnKQgxhZwy7G2WtUqU", code_challenge) +19:00:43.226 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:43.226 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.227 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.227 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.227 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.227 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.240 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.240 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.250 [XNIO-1 task-1] uMWel_J-THCw6ja3qJNvGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pA-SBSq4Q-ecFdNDggVz_w +19:00:43.251 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.256 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.256 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.256 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.257 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG com.networknt.schema.TypeValidator debug - validate( "22024862-b467-4746-8657-a778533e064a", "22024862-b467-4746-8657-a778533e064a", client_id) +19:00:43.257 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.258 [XNIO-1 task-2] cXQqXQ7RSnCJDrdOCcKMLA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4C4PPv05Qc-NvRZQr1vJyw +19:00:43.258 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.258 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.259 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.268 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.268 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.272 [XNIO-1 task-1] wH2aqGl0REW7WH20C_SiVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OdVTW-85SledK1b2WcnqNg +19:00:43.303 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:de084ff0-62f5-4b6f-b629-597683e9d2ce +19:00:43.306 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.306 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.306 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.307 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG com.networknt.schema.TypeValidator debug - validate( "22024862-b467-4746-8657-a778533e064a", "22024862-b467-4746-8657-a778533e064a", client_id) +19:00:43.307 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.308 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.308 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.308 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.308 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.327 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.327 [XNIO-1 task-1] 07AZB4dWSRKAZ5md6r6yEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.341 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.341 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.341 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.342 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:43.343 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.343 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.344 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.344 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.344 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.357 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:37314aa3-56f5-4ddd-8303-a22fc53e65ac +19:00:43.361 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.362 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.398 [XNIO-1 task-1] 9QqBx7vjQTejpvVB6FGW5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4GDTbvSXSeanM368FDc8GQ +19:00:43.410 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.410 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.410 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.411 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG com.networknt.schema.TypeValidator debug - validate( "50b9e989-ef60-40bb-891c-abe26c314c69", "50b9e989-ef60-40bb-891c-abe26c314c69", client_id) +19:00:43.411 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.411 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.411 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.411 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.412 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.424 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.424 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.431 [XNIO-1 task-1] FWGnAHyZTAaOuf2QKbLapA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dC1a3Qr_Qr6X6CaKL_JP-Q +19:00:43.475 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:09d63fb7-f241-44eb-897e-a884d714c85c +19:00:43.482 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.482 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.483 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.486 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.486 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.487 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.487 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.489 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.496 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.496 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.499 [XNIO-1 task-1] sYWXgrwCQySpMvKZmc1QyA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JLjT4zwSSaWGi4fX_P03gA +19:00:43.504 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.504 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.504 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.505 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG com.networknt.schema.TypeValidator debug - validate( "de084ff0-62f5-4b6f-b629-597683e9d2ce", "de084ff0-62f5-4b6f-b629-597683e9d2ce", client_id) +19:00:43.505 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.505 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.505 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.505 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.506 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.518 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.518 [XNIO-1 task-1] VKlkJHZbRjGPOSVxObCBXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.528 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.528 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.529 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.529 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:43.529 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.530 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.530 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.530 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.530 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.543 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.543 [XNIO-1 task-1] K9zR7chLTGaxcuqgOXR75Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.551 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.552 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.552 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.552 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:43.553 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.553 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.553 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.553 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.553 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.562 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.562 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.564 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.564 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.564 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.565 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:43.565 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.565 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.565 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.566 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.566 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.567 [XNIO-1 task-1] IpQpDI93RJ-iGjo6f-z9WQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PI65RfNzQLe_3nhr3B9ohQ +19:00:43.574 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.574 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.574 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.575 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.576 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.576 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.576 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.576 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.576 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.577 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.580 [XNIO-1 task-2] dBbcZ2IPQECQyrTmz2iMfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oMfWuSQBRXGMVSnfxHmOIw +19:00:43.585 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.585 [XNIO-1 task-1] SRdLJXE6TZiNsP9m-MwjyA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.586 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.587 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.587 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.587 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG com.networknt.schema.TypeValidator debug - validate( "S115FPQ3hgVpt-pki-7Xwy37329Db7toM0h9zMA388U", "S115FPQ3hgVpt-pki-7Xwy37329Db7toM0h9zMA388U", code_challenge) +19:00:43.589 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:43.589 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.590 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.590 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.590 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.590 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.605 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.605 [XNIO-1 task-2] NAtM2oOGS5yRcaaHxBsGzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.613 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.614 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.614 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.615 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG com.networknt.schema.TypeValidator debug - validate( "9EwkV8op9IRPJGqZVs9yM2ktWX6v7jmV6uDeaDX93bs", "9EwkV8op9IRPJGqZVs9yM2ktWX6v7jmV6uDeaDX93bs", code_challenge) +19:00:43.615 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:43.616 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.616 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.617 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.620 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.621 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.627 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.627 [XNIO-1 task-2] N_xlDaYGT4W9IICSXvrL6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.636 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.639 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.639 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.640 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG com.networknt.schema.TypeValidator debug - validate( "hzxyM0Fk4wVFZGE7r-meAVWk7BXz62yiRwYdZu4TX-A", "hzxyM0Fk4wVFZGE7r-meAVWk7BXz62yiRwYdZu4TX-A", code_challenge) +19:00:43.642 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:43.642 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.643 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.643 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.643 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.643 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.651 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.651 [XNIO-1 task-2] n2Xt6RHbS72FzTiz6_qTBA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.673 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3af21d7e +19:00:43.675 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3af21d7e +19:00:43.730 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.730 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.731 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.732 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.732 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.732 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.733 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.733 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.739 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.740 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.742 [XNIO-1 task-2] sGzCrPGnQ66C8SkuiT5GfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zvW8zXskSrG0mP7WDInP5g +19:00:43.746 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.746 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.746 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.747 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.747 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.747 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.747 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.748 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.756 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.756 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.759 [XNIO-1 task-2] Y5YCCeU9SjGH47ZaUUqkDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uMW6tceKSgWV70RlKU1vVQ +19:00:43.766 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.766 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.766 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.766 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.767 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.767 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.767 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.767 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.782 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:37314aa3-56f5-4ddd-8303-a22fc53e65ac +19:00:43.782 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.783 [XNIO-1 task-2] r3FFRBGfQwGNN-pyTMk10Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.792 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9600a29d +19:00:43.794 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9600a29d +19:00:43.803 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.803 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.803 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.804 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.804 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.804 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.804 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.804 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.818 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.818 [XNIO-1 task-2] duj6KXrsTuu1UR3TAdRhog DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.823 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.823 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.824 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.824 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.824 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG com.networknt.schema.TypeValidator debug - validate( "50b9e989-ef60-40bb-891c-abe26c314c69", "50b9e989-ef60-40bb-891c-abe26c314c69", client_id) +19:00:43.825 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.825 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.825 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.825 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.825 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.837 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.837 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.842 [XNIO-1 task-1] 7wz4AfUdQKuGHnRn24krFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jKiJIWmlSgaPit7wYWQCDQ +19:00:43.847 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:204a2df5-db3e-466d-8d41-60419656013d +19:00:43.848 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.849 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.849 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.850 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG com.networknt.schema.TypeValidator debug - validate( "h8hTy-o0z3O2HYQVXQU-9dx-Dtp05L7G8bwD6dG_Oew", "h8hTy-o0z3O2HYQVXQU-9dx-Dtp05L7G8bwD6dG_Oew", code_challenge) +19:00:43.850 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:43.851 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.851 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.851 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.851 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.853 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.860 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.860 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.863 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.864 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.864 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.864 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.864 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.865 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3af21d7e +19:00:43.865 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3af21d7e +19:00:43.865 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.866 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.874 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.874 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.885 [XNIO-1 task-1] 4071aSsgQ1GETVPtPYcq8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pFj_adBlQTi6ETzppNUnEw +19:00:43.886 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3af21d7e +19:00:43.890 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.890 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.890 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.891 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:43.891 [XNIO-1 task-2] cSj7F0NIR1iVxa5w_ow9GQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yNzH1KikT_uB-eqsko2zyA +19:00:43.891 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.892 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.892 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.892 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.893 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.896 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.896 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.896 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.897 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.897 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.897 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.898 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.898 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.901 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.901 [XNIO-1 task-1] Wr7yBugRQQ-PmgBvs6piOA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.903 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3af21d7e +19:00:43.904 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.904 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.909 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.909 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.909 [XNIO-1 task-2] pxsMWZ8nSFSTLAhwO4gHcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9X_yVLHmQqitBRrbMySblg +19:00:43.910 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.911 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:43.911 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.911 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.911 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.911 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.912 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.913 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.913 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:43.914 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:43.914 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", client_id) +19:00:43.914 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:43.914 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:43.915 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:43.915 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:43.915 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:43.918 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:43.918 [XNIO-1 task-1] x6u5X9ZtS7KaYsrlrlfk1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:43.924 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.924 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.925 [XNIO-1 task-2] BfUag4uuTpagsOkk7uHXpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mTS7bPmRSQisdDUaOvVhYg +19:00:43.931 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.931 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.931 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.932 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.932 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.932 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.933 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.933 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:43.940 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a7d5b86 +19:00:43.952 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:43.952 [XNIO-1 task-2] tcwc9JCtSbCGMT9bElXJjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:43.953 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7fbcebd1-0c74-4ce4-944b-da1f968bc288 +19:00:43.957 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7fbcebd1-0c74-4ce4-944b-da1f968bc288 +19:00:43.958 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5d4ba40a-996a-4c3b-9599-11978db0d4a3 +19:00:43.960 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5d4ba40a-996a-4c3b-9599-11978db0d4a3 +19:00:43.972 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.974 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.974 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:43.975 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:43.975 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:43.975 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:43.976 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:43.976 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:43.976 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.001 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.001 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.024 [XNIO-1 task-2] KJ43OE-MRv2rmlO9ICJC_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xzvwmHOJSjmFPDGVEE4H1A +19:00:44.032 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.032 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.032 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.033 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:44.033 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.033 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.034 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.034 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.035 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.040 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.040 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.040 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.041 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG com.networknt.schema.TypeValidator debug - validate( "6b3e1a35-d000-4ff8-baf7-400c0d5dde7d", "6b3e1a35-d000-4ff8-baf7-400c0d5dde7d", client_id) +19:00:44.041 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.042 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.042 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.042 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.044 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.050 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.050 [XNIO-1 task-2] pdc5Bc9dTQans3PNiwlNHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.063 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.063 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.068 [XNIO-1 task-1] KoSg-QcAQe-xNDiimrfNCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=E0tjF6XCQ7SdGpm5DJTamw +19:00:44.078 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.078 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.079 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.079 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.079 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.080 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.080 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.080 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.095 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.095 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.101 [XNIO-1 task-1] EOBzpGEYScqqRjDnn4dEQg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jDx-VJbiSKC8N2qhLRITSQ +19:00:44.106 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.106 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.107 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.107 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.108 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.108 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.108 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.108 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.121 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.122 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.132 [XNIO-1 task-1] bvxqdzWfSZK9O1-FstFy6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CzHBbWmBTDCTuYRy7XSBhg +19:00:44.136 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.137 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.137 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.137 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.137 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.138 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.138 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.138 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.157 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.157 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.159 [XNIO-1 task-1] dIYKVMdoThaaJ4ZZyStXxg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cZm0FteyRImY3EOiP-sjrg +19:00:44.167 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.168 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.171 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.184 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.184 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.189 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.189 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "de084ff0-62f5-4b6f-b629-597683e9d2ce", "de084ff0-62f5-4b6f-b629-597683e9d2ce", client_id) +19:00:44.190 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.190 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.190 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.190 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.190 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.180 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", client_id) +19:00:44.191 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.191 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.191 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.191 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.192 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.216 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.216 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.220 [XNIO-1 task-2] MdMs_HQXRdKdsUBBxf79Hg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=PXgSqPvkQyGi5mr6yuQClA +19:00:44.225 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.229 [XNIO-1 task-1] ubxIr1E4Tyy_DHD30uXQww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zLtkL4ULSEe7i-hExEC3Aw +19:00:44.237 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.238 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.238 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.238 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG com.networknt.schema.TypeValidator debug - validate( "vHkpcLNtGCLaUEs5vzB6gjYl2O3bAEqeHSIyfMwHAN4", "vHkpcLNtGCLaUEs5vzB6gjYl2O3bAEqeHSIyfMwHAN4", code_challenge) +19:00:44.239 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:44.239 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.240 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.240 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.240 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.240 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.246 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.246 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.246 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:44.246 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.247 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.247 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.247 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.247 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.255 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.255 [XNIO-1 task-2] sCiUQsJ1QiaOD7MPFT5AVg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.258 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.258 [XNIO-1 task-1] Ei8AVJwrSw-Q66wOMnKj8w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.305 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0120be67 +19:00:44.312 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0120be67 +19:00:44.312 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.313 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.313 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.314 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG com.networknt.schema.TypeValidator debug - validate( "367411fb-779b-40cf-93ac-21408c27a5ca", "367411fb-779b-40cf-93ac-21408c27a5ca", client_id) +19:00:44.315 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.315 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.316 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.316 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.316 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.344 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c337dd6 +19:00:44.366 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.366 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.369 [XNIO-1 task-1] cuuQQfNrSG2IfxT5DgcG7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=p6hyN8sbTsWCvXGAqiG4gg +19:00:44.386 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2754789a +19:00:44.390 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5757eb7c +19:00:44.393 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5757eb7c +19:00:44.412 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2754789a +19:00:44.445 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.446 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.446 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.446 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.446 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.447 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.447 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.447 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.460 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.460 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.464 [XNIO-1 task-1] qJZdPZcITkGwIVXm7S4L2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rP93ZbWqTgSxM4gM1o1buQ +19:00:44.469 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.469 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.469 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.470 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.470 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.470 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.470 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.470 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.472 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.472 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.472 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.473 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "L1rYWbtyBjDXTGmFf2sa61GeI5AU3NpQaRDUACmyb18", "L1rYWbtyBjDXTGmFf2sa61GeI5AU3NpQaRDUACmyb18", code_challenge) +19:00:44.473 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:44.473 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.473 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.473 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.474 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.480 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.486 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.486 [XNIO-1 task-1] QGbE1OKPSs-VWA4CMzQu0A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.488 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.488 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.489 [XNIO-1 task-2] r5PJcwF3TBSLqaWjbclQZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZqOdli22SyODKUHUxJNdgg +19:00:44.494 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.495 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.495 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.495 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.496 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.496 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.496 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.496 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.497 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a7d5b86 +19:00:44.507 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.507 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.510 [XNIO-1 task-2] Bm7trqJyRay2yDxm9RmYUg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jhfGLQprSmObTzigoFK12g +19:00:44.515 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.515 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.515 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.515 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.516 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.516 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.516 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.516 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.524 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.524 [XNIO-1 task-2] AuTRxUcSR8-ozLnbGXyyXw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.532 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c337dd6 +19:00:44.532 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.532 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.533 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.533 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG com.networknt.schema.TypeValidator debug - validate( "x489UdAtgMh0OopcUF8b2Fn7mAyGIIY9U918GqHk4us", "x489UdAtgMh0OopcUF8b2Fn7mAyGIIY9U918GqHk4us", code_challenge) +19:00:44.533 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:44.533 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.534 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.534 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.534 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.536 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.556 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.557 [XNIO-1 task-1] fc6Bs5DaTkCE0QFmBmcFGA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.557 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:204a2df5-db3e-466d-8d41-60419656013d +19:00:44.557 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5757eb7c +19:00:44.565 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d834e0f5-882f-44e1-abba-95a096fda5b7 +19:00:44.566 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.566 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.566 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.566 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG com.networknt.schema.TypeValidator debug - validate( "N2FTjnSDHHjK6B3gz28aNIglGrsT9Vb87fL2lBiDFyc", "N2FTjnSDHHjK6B3gz28aNIglGrsT9Vb87fL2lBiDFyc", code_challenge) +19:00:44.567 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:44.567 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.567 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.567 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.567 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.568 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.573 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.573 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.573 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.574 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.574 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.574 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.575 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.575 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.585 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.586 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.588 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.588 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.588 [XNIO-1 task-1] PJcnlvZnS8OqKTQIoclYLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qE2854Y8QgWhKqfaBg5Ljw +19:00:44.595 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.595 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.596 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.596 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aedb009a-0e95-438d-89f5-5d0925b83657", "aedb009a-0e95-438d-89f5-5d0925b83657", client_id) +19:00:44.597 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.597 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.598 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.598 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.598 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.599 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2c337dd6 +19:00:44.605 [XNIO-1 task-2] _6NlvNGKQcqDJQ0LupetIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hKwY33lqRl-4GBm8PgjUlQ +19:00:44.608 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.613 [XNIO-1 task-1] tKewYQYESSeAAblASuCHiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.612 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.615 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.616 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.616 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:44.616 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.618 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2c337dd6 +19:00:44.622 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.622 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.622 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.634 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.634 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.638 [XNIO-1 task-2] F22EU6esST2P67yh-f2hqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=poSQu-aAS5axoUQRIT9NiQ +19:00:44.745 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.745 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.745 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.746 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG com.networknt.schema.TypeValidator debug - validate( "aedb009a-0e95-438d-89f5-5d0925b83657", "aedb009a-0e95-438d-89f5-5d0925b83657", client_id) +19:00:44.746 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.746 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.746 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.746 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.747 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.750 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.750 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:44.750 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:44.750 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG com.networknt.schema.TypeValidator debug - validate( "367411fb-779b-40cf-93ac-21408c27a5ca", "367411fb-779b-40cf-93ac-21408c27a5ca", client_id) +19:00:44.751 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:44.751 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:44.751 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:44.751 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:44.751 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:44.757 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.757 [XNIO-1 task-2] _UmYWeFOTRC7ToiIZqBdTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.762 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:44.762 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:44.765 [XNIO-1 task-1] uou2BRdfS_20qOnxEwK00g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4Mt4OyQ0SUy8gjjeBWQqBg +19:00:44.802 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.802 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.802 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.803 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "aedb009a-0e95-438d-89f5-5d0925b83657", "aedb009a-0e95-438d-89f5-5d0925b83657", client_id) +19:00:44.803 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.803 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.803 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.803 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.804 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.813 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.814 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.815 [XNIO-1 task-1] F77wSIScTrao2kNg8GLY7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=H3vZ9pv1R1Wp4i1agB8ZGA +19:00:44.853 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.853 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.853 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.854 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:44.854 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.854 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.855 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.855 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.855 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.866 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.866 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.872 [XNIO-1 task-1] suhGcjC0T3-KNEyx6xBIlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UGblw44QRiOppqy5-W-eog +19:00:44.914 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.914 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.915 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.915 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.915 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.916 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.916 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.916 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:44.928 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:44.929 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:44.932 [XNIO-1 task-1] bme4Vpi1RSiavoJLw8GGsg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QvHhxAK9RPqnIb4-ZcEoGw +19:00:44.986 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.986 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.986 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:44.987 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:44.987 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:44.987 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:44.987 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:44.987 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.000 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.000 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.004 [XNIO-1 task-1] f4_YVsLmScC3oZcahuAmLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UCaXDlrETBiiLAXS6ceg9Q +19:00:45.038 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.038 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.039 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.039 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.039 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.040 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.040 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.040 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.057 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.058 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.066 [XNIO-1 task-1] 29Ia4-ppRrejMsUJcYgx4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2owhd72-Smy9px9iJBK3uA +19:00:45.070 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.071 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.071 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.071 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:45.071 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.072 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.072 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.072 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.072 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.073 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.073 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.074 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.074 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG com.networknt.schema.TypeValidator debug - validate( "aedb009a-0e95-438d-89f5-5d0925b83657", "aedb009a-0e95-438d-89f5-5d0925b83657", client_id) +19:00:45.074 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.074 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.075 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.075 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.079 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.087 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.087 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.087 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.087 [XNIO-1 task-1] JquCj3g3SbyTuSwquqjsfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.091 [XNIO-1 task-2] Y4pDUeMhQNC42n9pcy9_NA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aG_F90f-S7aguC3imAWwsA +19:00:45.102 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.102 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.102 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.103 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.103 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.106 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.106 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.106 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.115 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:252a3d2b-d354-4e27-aa5b-35bdf8868dbd +19:00:45.117 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.118 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.131 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.131 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.131 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.131 [XNIO-1 task-1] A4156UHPR4GqpVNog4aPYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Q8nkW9m9Tdaq4BkM-he8cA +19:00:45.132 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:45.133 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.133 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.133 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.134 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.134 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.156 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.156 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.166 [XNIO-1 task-2] QqZfD1-WSOmeNfupVNCKww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rTkevO7ZT-qJ4tKK-DT8XQ +19:00:45.172 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.172 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.172 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.173 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:45.175 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.175 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.176 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.176 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.176 [XNIO-1 task-2] cfFFQK4hTGao_8Trw0exqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.183 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:504123b4-6fc7-4ff4-b499-ded9f056c229 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +19:00:45.195 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d8afc8-5521-4a8f-9291-f42693a51155", "a0d8afc8-5521-4a8f-9291-f42693a51155", client_id) +19:00:45.195 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.196 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.196 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.196 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.196 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.220 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.220 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.220 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.221 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:45.221 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.221 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.222 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.222 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.222 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.232 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.232 [XNIO-1 task-1] g-Ns04DzQnOTKcr05cbg0w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.232 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.232 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.236 [XNIO-1 task-2] kWGR1VE3QEKFaaLvwHel7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QsZCweMvQbiPekIjuoQXzw +19:00:45.269 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.269 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.269 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.270 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", client_id) +19:00:45.270 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.272 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.272 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.272 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.272 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.282 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.282 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.282 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.283 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", "a5af52bc-ee88-4184-bc90-8165f1d8b6a7", client_id) +19:00:45.283 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.283 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.284 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.284 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.286 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.288 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.288 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.290 [XNIO-1 task-1] Ltwmb46KQ6anNA4p1VuGPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-R-KEV-YTMOs686CtceWDA +19:00:45.295 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.295 [XNIO-1 task-2] 7Dnd3IZYTTyduIL5kTdZJg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.323 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.324 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.324 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.324 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3Jwh86sk4DrfxjaeUKG_nA1vu6I9P3cKyYCKUbienF8", "3Jwh86sk4DrfxjaeUKG_nA1vu6I9P3cKyYCKUbienF8", code_challenge) +19:00:45.324 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.325 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.325 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.325 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.325 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.325 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.332 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.332 [XNIO-1 task-2] 4h4oYdlEQ4q0K7zxrliVAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.341 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.342 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.343 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.343 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG com.networknt.schema.TypeValidator debug - validate( "BPGJc9MBv2KHaZB6TFhwUsmIk_Y-2Qdjctcq-RRQwc0", "BPGJc9MBv2KHaZB6TFhwUsmIk_Y-2Qdjctcq-RRQwc0", code_challenge) +19:00:45.343 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.344 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.344 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.344 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.344 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.344 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.353 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a0ff82b7 +19:00:45.355 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.355 [XNIO-1 task-2] 2qC8dDNMSDScWc83aVckXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.372 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.372 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.373 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.373 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "wqxtIWI5dp2Ky02yUNdcix8pzgufxl2PxWFgye0QtyU", "wqxtIWI5dp2Ky02yUNdcix8pzgufxl2PxWFgye0QtyU", code_challenge) +19:00:45.373 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.373 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.373 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.373 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.373 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.374 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.374 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG com.networknt.schema.TypeValidator debug - validate( "aaa7028b-b8dc-42ab-a47d-f8256e873745", "aaa7028b-b8dc-42ab-a47d-f8256e873745", client_id) +19:00:45.374 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.374 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.374 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.374 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.374 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.378 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.378 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.387 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.387 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.388 [XNIO-1 task-2] eKeuBoHZSiKWICFqoixTpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OsczUDJjTAmEZX77gaY6Eg +19:00:45.389 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.389 [XNIO-1 task-1] fpvvvmEnTdiw5Fp-Td7B9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.406 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.406 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.407 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.407 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG com.networknt.schema.TypeValidator debug - validate( "S7fSH58einH0B0HLGW75L_O_BzAmYsXt60JWCJeqMBc", "S7fSH58einH0B0HLGW75L_O_BzAmYsXt60JWCJeqMBc", code_challenge) +19:00:45.407 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.407 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.407 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.408 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.408 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.408 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.419 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.420 [XNIO-1 task-1] 3KrYIutxSvqk6p1VTY6G-g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.427 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.427 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.428 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.428 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG com.networknt.schema.TypeValidator debug - validate( "TXReiGz-gQ3xmYQx9a9hUIgMpFk7Qvd6Oc3xnRnmKQg", "TXReiGz-gQ3xmYQx9a9hUIgMpFk7Qvd6Oc3xnRnmKQg", code_challenge) +19:00:45.429 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.430 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.430 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.430 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.430 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.430 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.445 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.445 [XNIO-1 task-1] AayjiTjwTGyfhOsYDwOPQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.491 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:88d06e6d +19:00:45.523 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7fbcebd1-0c74-4ce4-944b-da1f968bc288 +19:00:45.530 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.530 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.530 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.531 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.531 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.531 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.531 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.532 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.535 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0f679de-05c3-4545-8287-7b5890faa779 +19:00:45.537 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c0f679de-05c3-4545-8287-7b5890faa779 +19:00:45.542 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5237c8f2 +19:00:45.546 [XNIO-1 task-1] uAwXXI_-S8ef-yO54ZP4JQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.546 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5237c8f2 +19:00:45.550 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.551 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.552 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.552 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.552 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG com.networknt.schema.TypeValidator debug - validate( "2db09fa3-1353-4cd2-8fbc-82fe9a3f643c", "2db09fa3-1353-4cd2-8fbc-82fe9a3f643c", client_id) +19:00:45.553 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.553 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.554 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.555 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.555 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.566 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.566 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.569 [XNIO-1 task-2] ulJSP73BRFqWu6uKg8X9dw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=id6N2Za0QwG-QCFibz6bag +19:00:45.574 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.574 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.574 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.575 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", client_id) +19:00:45.575 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.575 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.575 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.575 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.575 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.594 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.594 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.594 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.594 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:45.595 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.595 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.595 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.595 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.595 [XNIO-1 task-2] -FEe4IWsTbazYeVBKujrRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.595 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.595 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.602 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.604 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.605 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.606 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG com.networknt.schema.TypeValidator debug - validate( "iTDXWKx1SltEH0s82-WeHB1gjY6X4sD_864GyaHQFG8", "iTDXWKx1SltEH0s82-WeHB1gjY6X4sD_864GyaHQFG8", code_challenge) +19:00:45.606 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.606 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.607 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.607 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.607 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.607 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.608 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.608 [XNIO-1 task-1] eYb-dexhRrunmxrSHnD1nQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.618 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.618 [XNIO-1 task-2] MBR5yLuJSfm2Dyxzx7DWcA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.620 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.620 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.620 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.620 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.621 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.621 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.621 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.621 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.621 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.637 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.638 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.640 [XNIO-1 task-1] up5OubOaSyyE9xlBywDX7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JYeli-jbSPiAekizHAsZlw +19:00:45.647 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.647 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.647 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.648 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.648 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.648 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.648 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.648 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.652 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.653 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.653 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.654 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG com.networknt.schema.TypeValidator debug - validate( "A7zxsoOpllhzRmjAOS-BIVJmYv9V5efm6XQjxNTpgWA", "A7zxsoOpllhzRmjAOS-BIVJmYv9V5efm6XQjxNTpgWA", code_challenge) +19:00:45.654 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.654 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.655 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.655 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.655 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.655 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.666 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.668 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.668 [XNIO-1 task-2] SFoRmcG1R3eOm8_XB2tjKA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.668 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.675 [XNIO-1 task-1] -8S8mgrHRaWTem1ISV0knA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=093hD5_JRn66EqZDxfI2aQ +19:00:45.697 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d11d56c2-948f-4918-bbf4-45095d509c85 +19:00:45.712 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.712 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.712 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.713 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.713 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.714 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.714 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.714 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.725 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.728 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.730 [XNIO-1 task-1] eAjjtAKOShuygj-NOcbN8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=txM2g4d1SPu12pebF616sw +19:00:45.734 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.734 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.734 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.735 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", client_id) +19:00:45.735 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.735 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.735 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.735 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.736 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.741 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.742 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.757 [XNIO-1 task-1] Jn-0Bv4cQ9GewYmeMh5_Og DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KmkC3BADQ9CJu7FY0ZYeOA +19:00:45.763 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.763 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.763 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3d548a5a-43b4-42e4-a606-61a7764d02c6 +19:00:45.763 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.763 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", client_id) +19:00:45.763 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.764 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.766 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.766 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.766 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.775 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.776 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.778 [XNIO-1 task-1] O-s7jvyCR2yGxktCT9_fAg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qUWcAY4iQ8yeFFN4-yHtrA +19:00:45.778 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.778 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.778 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.779 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.779 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.779 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.779 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.780 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.781 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.781 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.782 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.782 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG com.networknt.schema.TypeValidator debug - validate( "ZCRD4AmhoeFIqoDgWSXMuUVo9jBDqlaLZSTKtQFcqVg", "ZCRD4AmhoeFIqoDgWSXMuUVo9jBDqlaLZSTKtQFcqVg", code_challenge) +19:00:45.782 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.782 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.782 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.784 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.784 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.784 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.791 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.791 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.796 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.797 [XNIO-1 task-1] hIB4NZGvTiWJH-SUtqU9uA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.798 [XNIO-1 task-2] AzP6zo0CSn-zKNGVQLN6VQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sh4RJ9YuQy6OWMcRykK1ag +19:00:45.804 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.804 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.804 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.805 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", client_id) +19:00:45.805 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.805 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.805 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.805 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.805 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.823 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.823 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.840 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.846 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.828 [XNIO-1 task-2] CNQz8etOTdGq1d07hLkjuA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IufIG5FoQWugLP_6UICJxw +19:00:45.846 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.847 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.847 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.847 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.847 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.847 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.851 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.851 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.851 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.852 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "pWV8zLXeh4ISfcHT_pjZdN10YaugagEKcUzM9NctsIs", "pWV8zLXeh4ISfcHT_pjZdN10YaugagEKcUzM9NctsIs", code_challenge) +19:00:45.853 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.853 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.854 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.854 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.854 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.854 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.861 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e6fae2d7 +19:00:45.862 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.865 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e6fae2d7 +19:00:45.865 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.865 [XNIO-1 task-2] ypL-SxerTWCTBMrvK4idxQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.866 [XNIO-1 task-1] BnsvZJmTRtmOSMMKyIlSpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=L-v73u8qR4-k0FpEiZ89AA +19:00:45.875 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.875 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.875 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.875 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d8afc8-5521-4a8f-9291-f42693a51155", "a0d8afc8-5521-4a8f-9291-f42693a51155", client_id) +19:00:45.876 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.876 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.876 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.876 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.876 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.878 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.878 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.878 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.878 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", client_id) +19:00:45.878 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.879 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.879 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.879 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.879 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.889 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.889 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.894 [XNIO-1 task-2] YGHlrKUDQY6_MmWKFJwunQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eNq0lhtTQ6qsCrPuMvURKw +19:00:45.899 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.899 [XNIO-1 task-1] _nDFDgaHSYu7UjVwflecDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.914 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.914 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.915 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.915 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG com.networknt.schema.TypeValidator debug - validate( "bm3Sl7cAZauNlkngXFq-ktSpCw-Ss8jfki6KeZsyn3c", "bm3Sl7cAZauNlkngXFq-ktSpCw-Ss8jfki6KeZsyn3c", code_challenge) +19:00:45.915 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.915 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.915 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.916 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.916 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.916 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:45.923 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:45.923 [XNIO-1 task-1] oa8jHB6QQ6yvpe4ao4wVNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:45.937 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.937 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:45.938 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:45.938 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ihzYwYoUziy2P7jwulRjSdFEF4wmQK9u1RzX21tv3Ls", "ihzYwYoUziy2P7jwulRjSdFEF4wmQK9u1RzX21tv3Ls", code_challenge) +19:00:45.938 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:45.938 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:45.938 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:45.939 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:45.939 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:45.941 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.941 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.941 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.942 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.942 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.942 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.942 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.942 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.948 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.955 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.955 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.955 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.955 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.970 [XNIO-1 task-2] c5_X0TnKQlWkW5SYAAnAHg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FYs_mjNvRcajyWKtt7qIEg +19:00:45.975 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.975 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.975 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:45.975 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:45.976 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:45.976 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:45.976 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:45.976 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:45.989 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:45.989 [XNIO-1 task-2] MTTIgUmeT7-K3vXQ8dJ1aA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:45.991 [XNIO-1 task-1] rSQZHI39SQevRFTNJP6FqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MuLVJJa_Ssivk6LPQasWtg +19:00:46.006 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.007 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.007 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.007 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:46.007 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.007 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.008 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.008 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.008 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.020 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.020 [XNIO-1 task-2] mcwZninYRu6G55tVqWGccA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.033 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.033 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.033 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.033 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:46.034 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.034 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.034 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.034 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.034 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.043 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.043 [XNIO-1 task-2] LLtEnMEOSQ2QtjWeRRpV2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.056 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.056 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.056 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.056 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:46.057 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.057 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.057 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.057 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.057 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.067 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.067 [XNIO-1 task-2] HAutmILpTIe91fchGtUHcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.078 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5757eb7c +19:00:46.119 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a71ee49a-6329-49c4-bf71-9d8e05da9e51 +19:00:46.121 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a71ee49a-6329-49c4-bf71-9d8e05da9e51 +19:00:46.124 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7fde29e5-a69d-4c15-875b-4e67ef1d96f5 +19:00:46.145 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3b5f4359 +19:00:46.148 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3b5f4359 +19:00:46.150 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.150 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.150 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.150 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:46.151 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.151 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.151 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.151 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.151 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.162 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.162 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.165 [XNIO-1 task-2] KtwT6oImTqe0eMqYM-0UzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=biFy8hGoTRemnbR3VUZ6oQ +19:00:46.168 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.168 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.168 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.169 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:46.170 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.170 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.170 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d57405e0-abb4-4211-86c3-bbd7417c1876 +19:00:46.170 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.170 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.171 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.174 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.174 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.174 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.174 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.174 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.175 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.175 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.175 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.175 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.183 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.183 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.185 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3b5f4359 +19:00:46.186 [XNIO-1 task-1] cre6VYTFS2uucud-bi216g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=g7RSLCVSQeCeolYM3Rswew +19:00:46.191 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.191 [XNIO-1 task-2] kDfZ2N7PQcOhKhT193zddQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.206 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.207 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.207 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.207 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Kfy09j4ZAdiuZCBg-IsdDTyLtUQteTVaIt2Rbnl9-mc", "Kfy09j4ZAdiuZCBg-IsdDTyLtUQteTVaIt2Rbnl9-mc", code_challenge) +19:00:46.208 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.208 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.208 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.208 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.208 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.208 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.219 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.220 [XNIO-1 task-2] QxOVN6dZQrmNfCcE6nXqUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.246 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.247 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.248 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.249 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:46.249 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.249 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.249 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.249 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.250 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.267 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.267 [XNIO-1 task-2] Dh4IxtXCS06jDhymQHyHxg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.275 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.275 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.276 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.276 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "zUOeKvaRPZq3kTzHAm_KLTdrk10TPJvwphe3sShPF0o", "zUOeKvaRPZq3kTzHAm_KLTdrk10TPJvwphe3sShPF0o", code_challenge) +19:00:46.277 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.277 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.276 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.277 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.278 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:46.278 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.278 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.278 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.278 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.278 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.278 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.278 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.278 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.278 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.289 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.289 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.289 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.290 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.292 [XNIO-1 task-2] 17OworGmTJWMsioAItOwQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BY_k5b63Sq2bXT5wVCsLWQ +19:00:46.301 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.301 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.301 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.302 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:46.303 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.303 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.304 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.304 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.304 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.307 [XNIO-1 task-1] R5SM19klRAmd5LGP1CF9yQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fQzaCBk-SlWUacanpV39zQ +19:00:46.311 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.312 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.313 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.313 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.313 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.314 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.314 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.314 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.314 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.314 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.316 [XNIO-1 task-2] 9ZnFFy4ATtCfJzKMUp0Pgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=t4-yM89yT5aLKo8LSXfyug +19:00:46.325 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.325 [XNIO-1 task-1] NzSrOk-IQ_S9aEIY08HvEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.344 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.345 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.345 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.346 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "bfmvKn0nsR6OPlocvDZZ9o9i_miyVWeKu0ZIxxh97ro", "bfmvKn0nsR6OPlocvDZZ9o9i_miyVWeKu0ZIxxh97ro", code_challenge) +19:00:46.346 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.346 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.346 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.347 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.347 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.347 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.359 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.359 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.359 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.359 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.359 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.360 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.360 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.360 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.368 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.368 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.370 [XNIO-1 task-1] ib0s24NpSTyFV-_ByS_Rag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SAcJS70KQBO42c94CD1zLQ +19:00:46.375 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.375 [XNIO-1 task-2] kdT_OSRuT7qx8IaNWNO0WA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.382 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.383 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.383 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.383 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d8afc8-5521-4a8f-9291-f42693a51155", "a0d8afc8-5521-4a8f-9291-f42693a51155", client_id) +19:00:46.383 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.384 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.384 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.384 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.384 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.391 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.391 [XNIO-1 task-2] xA97aFMjSrW81qw8YWcHag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.406 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.406 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.406 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.407 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG com.networknt.schema.TypeValidator debug - validate( "lC1khMr7JaofqCmhugKz1jXFRm56Kbme_OVS7YmEOSc", "lC1khMr7JaofqCmhugKz1jXFRm56Kbme_OVS7YmEOSc", code_challenge) +19:00:46.407 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.407 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.407 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.407 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.408 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.408 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.423 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.425 [XNIO-1 task-2] KA0vcjulRvqjH6DX07JclA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.440 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.440 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.441 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.441 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:46.442 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.442 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.442 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.442 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.442 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.453 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.453 [XNIO-1 task-2] js08jVdeSSOnYHmLs8CXoA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.461 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.461 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.462 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.462 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG com.networknt.schema.TypeValidator debug - validate( "s7WvzwVp0wUtAyDOY0z-9D2ARtoCGyIPUdVL37v67WM", "s7WvzwVp0wUtAyDOY0z-9D2ARtoCGyIPUdVL37v67WM", code_challenge) +19:00:46.463 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.463 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.463 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.463 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.463 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.465 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.466 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.466 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.467 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.467 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.467 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.467 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.467 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.468 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.471 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.472 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.474 [XNIO-1 task-2] JSBg2ec_Rsq_vsf8xVpLsw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=sgAD1JTUTAqemUZPvJcJiw +19:00:46.476 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.476 [XNIO-1 task-1] 5Bl0FSOcQDiPxHILnAgxEw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.483 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.484 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.485 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.485 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8m7IRVB6nLTyxtXthnkBBBm3zmLmkr6pqpT3OTnDWuk", "8m7IRVB6nLTyxtXthnkBBBm3zmLmkr6pqpT3OTnDWuk", code_challenge) +19:00:46.485 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.485 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.485 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.486 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.486 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.486 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.487 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.487 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.488 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.488 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.488 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.488 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.488 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.489 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.491 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5237c8f2 +19:00:46.493 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e3a1e993-7f44-4dbb-b949-4a51414bc019 +19:00:46.495 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.495 [XNIO-1 task-1] Z7IWBlcvQ-yAhFLf0PtdrQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.498 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e3a1e993-7f44-4dbb-b949-4a51414bc019 +19:00:46.500 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.500 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.502 [XNIO-1 task-2] V6MHEb8_QUG0mFhSoXUwEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=A9j0TKvBRAOpSDBzT3SDJg +19:00:46.533 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.533 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.533 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.533 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.534 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.534 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.534 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.534 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.548 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.548 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.551 [XNIO-1 task-2] ZzaqN_ISSEaSNMSXw9Gjww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=STcwoerbScmdhuHQ8c_JXg +19:00:46.556 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.556 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.556 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.556 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.556 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.557 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.557 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.557 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.567 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.567 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.567 [XNIO-1 task-2] UH00RkQVQlCLLU_DGZUBaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.567 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.567 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.568 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "jPCljgqz6SIc1AzsnavNYMTCgIdMo-83D6vG2SoWVo8", "jPCljgqz6SIc1AzsnavNYMTCgIdMo-83D6vG2SoWVo8", code_challenge) +19:00:46.568 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.568 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.568 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.569 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.569 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.569 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.580 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.580 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.585 [XNIO-1 task-1] MJs1u-DcQJaLUMP-mrgzPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hswoJQVuTKu1v3hsTxR3Dw +19:00:46.627 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.627 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.627 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.628 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.628 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.628 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.628 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.632 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.642 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.643 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.643 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a0ff82b7 +19:00:46.644 [XNIO-1 task-1] RtZc1eGYQ3SIdu2ElZKK7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ubxti1ENRJ2UIfFB9KkEXA +19:00:46.652 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.652 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.653 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.653 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG com.networknt.schema.TypeValidator debug - validate( "E2oLr-DLBj5Oqk6v3I81CWNhQIyvgd76d6775cBaoS4", "E2oLr-DLBj5Oqk6v3I81CWNhQIyvgd76d6775cBaoS4", code_challenge) +19:00:46.653 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.653 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.653 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.654 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.654 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.657 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.668 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.668 [XNIO-1 task-1] IEsb9ypJQOOH9nRTwNHmwg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.676 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.676 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.676 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.677 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG com.networknt.schema.TypeValidator debug - validate( "_WuZQr4Cgg8N2nfcYhBcNWlEo9CHjihLlZAKy3qIDWw", "_WuZQr4Cgg8N2nfcYhBcNWlEo9CHjihLlZAKy3qIDWw", code_challenge) +19:00:46.677 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.677 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.677 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.677 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.677 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.678 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.678 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.678 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.679 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.679 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.679 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.679 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.679 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.679 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.685 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.685 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.687 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.688 [XNIO-1 task-2] 9delkWM8QTGKGgMzBoZyTg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.690 [XNIO-1 task-1] HLQ0v65ZRLK2ObFw1-LTjg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cXmKaPVxRCG9UpsggKnCog +19:00:46.691 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3b5f4359 +19:00:46.695 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.695 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.696 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.696 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "97qU37RIKPmFPKKV1jlka-vgEwmLdpivH9bzISXgzm0", "97qU37RIKPmFPKKV1jlka-vgEwmLdpivH9bzISXgzm0", code_challenge) +19:00:46.697 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.697 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.697 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.697 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.697 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.698 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.699 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.699 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.699 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.700 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.700 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.700 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.700 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.700 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.710 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.711 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.710 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.711 [XNIO-1 task-1] jnVa9i-tRl-yJIIAaohGpA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.713 [XNIO-1 task-2] N7r8yKvaQuyVvzKIVlSYaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bU38B_hTTDWksdRR3B71dg +19:00:46.735 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:350456c3-11d1-4aa2-bac8-93039bf129b5 +19:00:46.748 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.748 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.749 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.750 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "4GXq4qf2cEnFHBxjwu3IJU4qtbmI3lOBpvXPibmpZqc", "4GXq4qf2cEnFHBxjwu3IJU4qtbmI3lOBpvXPibmpZqc", code_challenge) +19:00:46.750 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.750 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.750 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.751 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.751 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.751 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.751 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.751 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.751 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.752 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.752 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.752 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.752 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.752 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.760 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.761 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.761 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.761 [XNIO-1 task-2] F7bcvT5FSS-S-JceUBWKGA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.762 [XNIO-1 task-1] tTXgjw73RxqrKCQe95VPYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VymJzhugR96vtmfqNKrZEQ +19:00:46.770 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.770 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.770 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.770 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG com.networknt.schema.TypeValidator debug - validate( "413d6ed8-936d-4e39-af17-88ce9f55792a", "413d6ed8-936d-4e39-af17-88ce9f55792a", client_id) +19:00:46.771 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.771 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.771 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.771 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.771 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.783 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.783 [XNIO-1 task-2] 8Huwu5KWShSv7LyWqG2Pfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.795 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.796 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.796 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.796 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG com.networknt.schema.TypeValidator debug - validate( "b894e676-ee0e-439f-8060-cbd440c966e0", "b894e676-ee0e-439f-8060-cbd440c966e0", client_id) +19:00:46.796 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.797 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.797 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.797 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.798 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.807 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.807 [XNIO-1 task-2] toR-4nLDTyegHktlo1731A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.813 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.813 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.813 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.814 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG com.networknt.schema.TypeValidator debug - validate( "b894e676-ee0e-439f-8060-cbd440c966e0", "b894e676-ee0e-439f-8060-cbd440c966e0", client_id) +19:00:46.814 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.814 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.814 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.814 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.815 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.822 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.822 [XNIO-1 task-2] _SA33q7ESOyhnbO_cA4OLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.824 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.824 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.825 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.825 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aNUG_7IrMUjlERjQ3i3oRsUxcRmr6ozQnHN6-xPcSoo", "aNUG_7IrMUjlERjQ3i3oRsUxcRmr6ozQnHN6-xPcSoo", code_challenge) +19:00:46.825 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.825 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.826 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.826 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.826 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.826 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.826 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:99a4efa0 +19:00:46.834 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.834 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.835 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.835 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG com.networknt.schema.TypeValidator debug - validate( "b894e676-ee0e-439f-8060-cbd440c966e0", "b894e676-ee0e-439f-8060-cbd440c966e0", client_id) +19:00:46.836 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.836 [XNIO-1 task-1] jnrvXdLNT_S5DPfbhavUjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.837 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.838 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.838 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.838 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.838 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.847 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.847 [XNIO-1 task-2] VUnCrQlZS7aafTu0IH05ow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.848 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d60a29c4-0388-4744-8006-18fc9b9aa774 +19:00:46.849 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d60a29c4-0388-4744-8006-18fc9b9aa774 +19:00:46.868 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.872 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.873 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.873 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG com.networknt.schema.TypeValidator debug - validate( "b894e676-ee0e-439f-8060-cbd440c966e0", "b894e676-ee0e-439f-8060-cbd440c966e0", client_id) +19:00:46.873 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.874 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.874 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.874 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.874 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.885 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.885 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.886 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.886 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.887 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.887 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG com.networknt.schema.TypeValidator debug - validate( "a0d8afc8-5521-4a8f-9291-f42693a51155", "a0d8afc8-5521-4a8f-9291-f42693a51155", client_id) +19:00:46.887 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.887 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.888 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.888 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.888 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.895 [XNIO-1 task-2] uYkAz8trTrKhegz5FkYBng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=M0Rl43xmRP6aaxlM8MHOVg +19:00:46.899 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.899 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.899 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.899 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.899 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.900 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.900 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.900 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.902 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.902 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.906 [XNIO-1 task-1] QRaj_i23RiyKrMNEQt4lwg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=94_SlLxjQ060cRuown-Z7A +19:00:46.908 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.908 [XNIO-1 task-2] t7nO352DRNKIphzXBtsY7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.914 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3b5f4359 +19:00:46.937 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0bed77b0-157d-4c33-b536-fbba8f0d4c87 +19:00:46.950 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.950 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.950 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.951 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.951 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.951 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.951 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.951 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.952 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.952 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:46.952 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:46.953 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "ReYGJ01U8rHKlIaK8y_EdhkRsi7mOysqmzpH9g5mMaY", "ReYGJ01U8rHKlIaK8y_EdhkRsi7mOysqmzpH9g5mMaY", code_challenge) +19:00:46.953 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:46.953 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:46.953 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:46.953 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:46.953 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:46.953 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:46.959 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.959 [XNIO-1 task-2] McdMQBHCSzOnZP2wNaNPCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.961 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:46.961 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:46.964 [XNIO-1 task-1] 4OZFM_MASaa4NVecrgGGNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=y18506fJTNeCji2d-IqIAg +19:00:46.970 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.970 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.970 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.971 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG com.networknt.schema.TypeValidator debug - validate( "366825f3-9f2d-4e9e-8b4e-35efbd34304c", "366825f3-9f2d-4e9e-8b4e-35efbd34304c", client_id) +19:00:46.971 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.971 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.971 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.971 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.972 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.974 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:99a4efa0 +19:00:46.980 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.980 [XNIO-1 task-1] 7sjyIXmLRPWdlHvg4hizXA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.981 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e6fae2d7 +19:00:46.982 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e6fae2d7 +19:00:46.986 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.986 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.987 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:46.987 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG com.networknt.schema.TypeValidator debug - validate( "64e8e7cb-c44b-447f-9dfc-f72c8de24ba6", "64e8e7cb-c44b-447f-9dfc-f72c8de24ba6", client_id) +19:00:46.987 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:46.987 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:46.987 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:46.988 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:46.990 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:46.996 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:46.996 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:46.998 [XNIO-1 task-1] dL43G75sQGaT7UGCZiUDXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8r6pozQ-Q8OFfb5mSpNQeA +19:00:47.005 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.005 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.005 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.006 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e17f039c-8502-4eae-8bc0-923def0f5a7c", "e17f039c-8502-4eae-8bc0-923def0f5a7c", client_id) +19:00:47.006 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.006 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.006 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.006 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.007 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.018 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.018 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.021 [XNIO-1 task-1] Kv6z9G8pSV-EieqIaOtDYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MBKdsAW1QmatHBbdqcQQIQ +19:00:47.027 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.027 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.027 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.027 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "nLlsUIjiDUNPZHayat_A4otXJjnGs2h9TE8xc2hOLnk", "nLlsUIjiDUNPZHayat_A4otXJjnGs2h9TE8xc2hOLnk", code_challenge) +19:00:47.029 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.029 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.029 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.029 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.029 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.029 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.040 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.040 [XNIO-1 task-1] eW_H6xCsQsqE1PdF-WiCiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.051 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.052 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.052 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.052 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aWf79dIhf8fCcCPK_a46-dQhABargtG8snBrV8KtLps", "aWf79dIhf8fCcCPK_a46-dQhABargtG8snBrV8KtLps", code_challenge) +19:00:47.053 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.053 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.053 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.053 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.053 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.053 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.060 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.060 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.061 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.061 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.062 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.062 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.062 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.062 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.067 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.069 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.073 [XNIO-1 task-1] AcaJI19ISiKmbicp1ffdsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dza4uMGWTpKfAGH_ub7hLQ +19:00:47.074 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.074 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.077 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.078 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.078 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.078 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG com.networknt.schema.TypeValidator debug - validate( "dec165f3-04fd-4531-8054-8e11932fe149", "dec165f3-04fd-4531-8054-8e11932fe149", client_id) +19:00:47.078 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.078 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.079 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.079 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.078 [XNIO-1 task-2] 0xh3kSuKSOOwZrFpCESlEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bXJ5OUjLROOModhhtgjPmg +19:00:47.079 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.083 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.083 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.083 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.084 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.084 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.086 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.086 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.087 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.089 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.089 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.093 [XNIO-1 task-1] 78TDW3quSUC-TQQkRXkYSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1ql0p-cGQfWyqapA3z6r-w +19:00:47.095 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.095 [XNIO-1 task-2] wWfaXotFRY2S4EBFafoJnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.113 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.114 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.114 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.114 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG com.networknt.schema.TypeValidator debug - validate( "2db09fa3-1353-4cd2-8fbc-82fe9a3f643c", "2db09fa3-1353-4cd2-8fbc-82fe9a3f643c", client_id) +19:00:47.114 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.114 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.115 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.115 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.115 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.118 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.118 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.118 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.119 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG com.networknt.schema.TypeValidator debug - validate( "367411fb-779b-40cf-93ac-21408c27a5ca", "367411fb-779b-40cf-93ac-21408c27a5ca", client_id) +19:00:47.119 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.119 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.119 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.119 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.119 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.123 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.123 [XNIO-1 task-2] VlWDlxHlS1W3XgirjifCKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +Jun 28, 2024 7:00:47 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +19:00:47.126 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.126 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.134 [XNIO-1 task-1] ThkcCV6WRl-5f3YyrvDgmw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QoDdzGZ6RWGHi8AWY6LAWg +19:00:47.143 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.143 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.143 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +19:00:47.144 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.144 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.144 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +19:00:47.145 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.145 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.147 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.153 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:01857082-0508-46ee-a733-20986b81a349 +19:00:47.158 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +19:00:47.159 [XNIO-1 task-1] YeQ8EpApT0eLS0iPEuPIXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.168 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.169 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.169 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + +19:00:47.169 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.169 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.169 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG com.networknt.schema.TypeValidator debug - validate( "2736cd94-3f12-4487-9735-3f6881568106", "2736cd94-3f12-4487-9735-3f6881568106", client_id) +19:00:47.170 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.171 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.171 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.172 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.172 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.176 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:504123b4-6fc7-4ff4-b499-ded9f056c229 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:47.186 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.186 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.192 [XNIO-1 task-1] MVlgOZG2TkyUb-8I02Nvcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VKmYIMLwTt-DBYFKR6qYLw +19:00:47.200 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.200 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.200 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.201 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.201 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.201 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.201 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.201 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.205 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.205 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.205 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.206 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG com.networknt.schema.TypeValidator debug - validate( "f7nzOT01Kb-JSMyY3U7nsxttC83Ee6gxLYZ084GyjDw", "f7nzOT01Kb-JSMyY3U7nsxttC83Ee6gxLYZ084GyjDw", code_challenge) +19:00:47.206 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.206 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.206 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.206 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.206 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.207 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.211 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.211 [XNIO-1 task-1] lWvQUHxjSFmG43OlnhGq0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.215 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.215 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.217 [XNIO-1 task-2] dNPxCMsBS1645IamRd1jvg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0nWLQn_dRaeUODh11bJrwQ +19:00:47.223 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.223 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.223 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.223 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.223 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.224 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.224 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.224 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.230 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.230 [XNIO-1 task-2] k_w7WwpJQIytIa28PqAKDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.232 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.232 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.232 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.232 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "BfeVRZHN4kxZHN3N8nSj5oSdVNgSnzUrsRMB9EyNqQs", "BfeVRZHN4kxZHN3N8nSj5oSdVNgSnzUrsRMB9EyNqQs", code_challenge) +19:00:47.232 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.233 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.233 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.233 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.233 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.233 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.241 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.241 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.244 [XNIO-1 task-1] 30gQIUd3SES_6VIDr2ce8Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=we1qV3O3T1-exFQc6NB3qQ +19:00:47.260 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.260 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.260 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.261 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c1270440-b91b-492e-ac26-0e5e2f611bf0", "c1270440-b91b-492e-ac26-0e5e2f611bf0", client_id) +19:00:47.261 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.261 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.261 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.261 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.262 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.270 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.270 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.271 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.271 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG com.networknt.schema.TypeValidator debug - validate( "50b9e989-ef60-40bb-891c-abe26c314c69", "50b9e989-ef60-40bb-891c-abe26c314c69", client_id) +19:00:47.271 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.271 [XNIO-1 task-1] 498NuJpXTQy0YVVCd-K7eQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.271 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.272 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.272 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.272 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.272 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.279 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.279 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.281 [XNIO-1 task-2] 8YYLROf2SnSXnP5dXy01rA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Jy2ryZR7SbyWYMnBiW0Bjg +19:00:47.288 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.288 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.288 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.288 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG com.networknt.schema.TypeValidator debug - validate( "e8d62715-eb9e-4544-8414-ed0e1f3f7001", "e8d62715-eb9e-4544-8414-ed0e1f3f7001", client_id) +19:00:47.288 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.288 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.289 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.289 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.290 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.299 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.300 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.301 [XNIO-1 task-2] K8E2VZyASMuCJr-4eGjHEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nNULdeeMQumD79ieVGaIOA +19:00:47.312 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.312 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.313 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.314 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG com.networknt.schema.TypeValidator debug - validate( "e8d62715-eb9e-4544-8414-ed0e1f3f7001", "e8d62715-eb9e-4544-8414-ed0e1f3f7001", client_id) +19:00:47.314 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.314 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.314 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.317 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.317 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.317 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.317 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.317 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.318 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.318 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.318 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.315 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.319 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.319 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.324 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.324 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.327 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.327 [XNIO-1 task-2] IwvxwJ1vSXOXmIndiTa-hA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.334 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9600a29d +19:00:47.335 [XNIO-1 task-1] WbkjQYj5Rw2YoC1tAyXlKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vYlwHlgvRLSqaa0tPXN-wA +19:00:47.336 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.336 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.337 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.337 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG com.networknt.schema.TypeValidator debug - validate( "e8d62715-eb9e-4544-8414-ed0e1f3f7001", "e8d62715-eb9e-4544-8414-ed0e1f3f7001", client_id) +19:00:47.337 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.337 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.337 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.338 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.338 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.341 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.341 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.341 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.342 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1a07aef6-b7a6-4841-a5a5-6e1ff185f6de", "1a07aef6-b7a6-4841-a5a5-6e1ff185f6de", client_id) +19:00:47.342 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.342 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.343 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.343 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.343 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.351 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.351 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.357 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.357 [XNIO-1 task-2] w0jqfMPMTCWJx0NbzMpZJw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.356 [XNIO-1 task-1] spxkiSxFQAiK-1tOSDgoMA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vNAZllKGRl6rB-VrPSA_xA +19:00:47.375 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:01857082-0508-46ee-a733-20986b81a349 +19:00:47.377 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5fc4eb6 +19:00:47.402 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.402 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.402 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.402 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "ca38f119-c232-4668-9585-1386e3d67ab3", "ca38f119-c232-4668-9585-1386e3d67ab3", client_id) +19:00:47.403 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.403 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.403 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.403 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.409 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.419 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.420 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.421 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.421 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.421 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.422 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aaa7028b-b8dc-42ab-a47d-f8256e873745", "aaa7028b-b8dc-42ab-a47d-f8256e873745", client_id) +19:00:47.422 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.422 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.422 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.422 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.423 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.423 [XNIO-1 task-2] T8c2VFoqQzW6qLJubNAwEg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8SKxKkFzR7WphliSijknYA +19:00:47.429 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.429 [XNIO-1 task-1] of5oQtR4S8yjB4H4EQIUcQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.459 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.460 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.460 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.460 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG com.networknt.schema.TypeValidator debug - validate( "t8YxAohLC4KLXjVt2_im7YSHozQTdH1HClNtKTfZE9c", "t8YxAohLC4KLXjVt2_im7YSHozQTdH1HClNtKTfZE9c", code_challenge) +19:00:47.460 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.461 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.461 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.461 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.461 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.461 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.475 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.475 [XNIO-1 task-1] EaJgCVH_TACyUu2fJNoKew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.484 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.484 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.484 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.484 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +19:00:47.485 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +19:00:47.485 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.485 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.486 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.486 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.492 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.492 [XNIO-1 task-1] Znds8rhIRwiXGjrem6zlXQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:47.507 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +19:00:47.507 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.507 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.508 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.508 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.508 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.514 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.514 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.521 [XNIO-1 task-1] uaDcOdajQ2KYmtVEvAmCjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oNV5VKzfTL29clU9tTxtMg +19:00:47.532 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.533 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.533 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.533 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.533 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.534 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.534 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.534 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.547 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a7d5b86 +19:00:47.547 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.548 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.550 [XNIO-1 task-1] wL8j_VzaTWOLc0i3UPUxPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9zVOrMNDQxe7jaisNJ5mPg +19:00:47.555 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.556 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.556 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.556 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.556 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.556 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.556 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.557 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.558 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.571 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.571 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.571 [XNIO-1 task-1] 2jOjd16ERv-3vz5BqB0qsg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.571 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.571 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.571 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "-kUOezJGvzXGs6ZeoIPk2vjWvUSZziddrdKNrOty1t8", "-kUOezJGvzXGs6ZeoIPk2vjWvUSZziddrdKNrOty1t8", code_challenge) +19:00:47.572 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.572 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.572 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.572 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.576 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.577 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.580 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:504123b4-6fc7-4ff4-b499-ded9f056c229 +19:00:47.585 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.586 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:47.589 [XNIO-1 task-2] 5hvayfcUQDKo4yiJQJaCNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XhjJrS04TV6ay3VgibN_DA +19:00:47.602 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.602 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.602 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.603 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG com.networknt.schema.TypeValidator debug - validate( "64e8e7cb-c44b-447f-9dfc-f72c8de24ba6", "64e8e7cb-c44b-447f-9dfc-f72c8de24ba6", client_id) +19:00:47.603 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.603 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.603 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.603 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.603 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.610 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8ae1b908-3ea5-4529-8e10-a56d898f5c7f +19:00:47.613 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8ae1b908-3ea5-4529-8e10-a56d898f5c7f +19:00:47.614 [XNIO-1 task-2] eb7HszcjRy2dYkaGPg8Owg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.614 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8ae1b908-3ea5-4529-8e10-a56d898f5c7f +19:00:47.623 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.623 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.624 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.624 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG com.networknt.schema.TypeValidator debug - validate( "vBHfFCnsNe2rAHe30aWl6z3Vvwb5BprDYj-Y3Zkfo5M", "vBHfFCnsNe2rAHe30aWl6z3Vvwb5BprDYj-Y3Zkfo5M", code_challenge) +19:00:47.624 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.624 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.624 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.625 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.625 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.625 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.635 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.636 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.636 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.636 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.636 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.636 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.637 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.637 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.637 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.637 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.647 [XNIO-1 task-2] WrBH-gUoT_y1LWrkR9nzFA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7BklKkTDR8erkqUV5ToZrw +19:00:47.652 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.652 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.654 [XNIO-1 task-1] Pplc_qVQRp2pglgyo-i1lw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kyuZQHg2RTqk4iwa4-E5XA +19:00:47.677 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e86164fb-64ab-47e6-a711-70f5894d3178 +19:00:47.695 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e86164fb-64ab-47e6-a711-70f5894d3178 +19:00:47.716 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.716 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.717 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.717 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7b87eccb-8564-46b4-9c25-bfa6c350d96b", "7b87eccb-8564-46b4-9c25-bfa6c350d96b", client_id) +19:00:47.717 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.717 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.718 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.718 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.719 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.723 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5757eb7c +19:00:47.728 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.728 [XNIO-1 task-1] 1MaiLnLoSCWItoPhfVgxYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.739 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.739 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.739 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.740 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG com.networknt.schema.TypeValidator debug - validate( "7b87eccb-8564-46b4-9c25-bfa6c350d96b", "7b87eccb-8564-46b4-9c25-bfa6c350d96b", client_id) +19:00:47.740 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.740 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.740 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.740 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.740 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.745 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5237c8f2 +19:00:47.747 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.747 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.748 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.748 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG com.networknt.schema.TypeValidator debug - validate( "64e8e7cb-c44b-447f-9dfc-f72c8de24ba6", "64e8e7cb-c44b-447f-9dfc-f72c8de24ba6", client_id) +19:00:47.748 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.748 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.749 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.749 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.749 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.755 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.755 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.758 [XNIO-1 task-1] VCJ4qoCVTMaXsyY3xF1j5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Bw3wzRhcT-WBIc8pstnvEA +19:00:47.758 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.758 [XNIO-1 task-2] QkaxPqr5Ry-Frc0IKQpzcg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.764 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.765 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.765 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.765 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG com.networknt.schema.TypeValidator debug - validate( "7b87eccb-8564-46b4-9c25-bfa6c350d96b", "7b87eccb-8564-46b4-9c25-bfa6c350d96b", client_id) +19:00:47.765 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.765 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.766 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.766 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.766 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.774 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.774 [XNIO-1 task-1] 73bCo0HLTVGHRqpvIq7Aww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.795 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.796 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.796 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.796 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG com.networknt.schema.TypeValidator debug - validate( "pwV4wPPJZBCcrolcxg5Xil491kMXstRpuGMin4n44TQ", "pwV4wPPJZBCcrolcxg5Xil491kMXstRpuGMin4n44TQ", code_challenge) +19:00:47.796 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.797 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.797 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.797 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.797 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.797 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.804 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.804 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.805 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.805 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.805 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.806 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.806 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.806 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.806 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.806 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.807 [XNIO-1 task-1] 50CWhs92S02Xh6D3FZhRiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qn7bB39WS8GO2WMPEkRuiA +19:00:47.814 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.814 [XNIO-1 task-2] q-Zs0-kuSBiHsA_gl49N-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.822 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.823 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.823 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.823 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "91c86df7-391d-414d-8fbf-d222d369d40a", "91c86df7-391d-414d-8fbf-d222d369d40a", client_id) +19:00:47.823 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.823 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.824 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.824 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.825 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.834 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.834 [XNIO-1 task-2] -H-tGyjiTV-9_hjk7MW7Cw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.843 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.843 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.845 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.845 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG com.networknt.schema.TypeValidator debug - validate( "91c86df7-391d-414d-8fbf-d222d369d40a", "91c86df7-391d-414d-8fbf-d222d369d40a", client_id) +19:00:47.845 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.845 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.845 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.846 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.846 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.856 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.856 [XNIO-1 task-2] 5KZrimBESqiRGgihu8D_4A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.896 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.896 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.896 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.898 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG com.networknt.schema.TypeValidator debug - validate( "91c86df7-391d-414d-8fbf-d222d369d40a", "91c86df7-391d-414d-8fbf-d222d369d40a", client_id) +19:00:47.898 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.898 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.898 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.898 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.899 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.913 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5757eb7c +19:00:47.914 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.915 [XNIO-1 task-2] bOJiCvyGSOWMjtmFyb2YlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.925 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.925 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.925 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.925 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG com.networknt.schema.TypeValidator debug - validate( "91c86df7-391d-414d-8fbf-d222d369d40a", "91c86df7-391d-414d-8fbf-d222d369d40a", client_id) +19:00:47.926 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.926 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.926 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.926 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.926 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.935 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.935 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.935 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.936 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG com.networknt.schema.TypeValidator debug - validate( "af102124-3f90-4cd3-bd22-310e61b340a3", "af102124-3f90-4cd3-bd22-310e61b340a3", client_id) +19:00:47.936 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.936 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.936 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.936 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.937 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.941 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.942 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.943 [XNIO-1 task-2] cK9y5YwHRXqEYNIZtl9zdA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vdF9HbobQ8-iHaVRMrqOqQ +19:00:47.947 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.947 [XNIO-1 task-1] 5dkGyAUPRX2jM2ij2JZvxg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.948 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.948 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.948 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.948 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.948 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.949 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.949 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.949 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.949 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.953 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.953 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.953 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.954 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG com.networknt.schema.TypeValidator debug - validate( "af102124-3f90-4cd3-bd22-310e61b340a3", "af102124-3f90-4cd3-bd22-310e61b340a3", client_id) +19:00:47.954 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.954 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.954 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.955 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.955 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:47.956 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:47.956 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:47.957 [XNIO-1 task-2] bmA0IweiREK578Wh5JMY6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pfzg8eMTQ0mxUJpK3UAyAQ +19:00:47.967 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.967 [XNIO-1 task-1] 65lvznk-TiyNJqtgvrejLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.974 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.974 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:47.974 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:47.975 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "EbZXvRP_yaCf1wPhN2PjvEs4o4UN6dezV9783QryNuY", "EbZXvRP_yaCf1wPhN2PjvEs4o4UN6dezV9783QryNuY", code_challenge) +19:00:47.975 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:47.975 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:47.975 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:47.977 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:47.977 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:47.977 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:47.984 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:47.985 [XNIO-1 task-1] K_e13tXxSaWPVOKOuM0VeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:47.993 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7083325a +19:00:47.995 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7083325a +19:00:47.997 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.997 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.997 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:47.998 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:47.998 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:47.998 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:47.998 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:47.998 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.009 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.009 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.010 [XNIO-1 task-1] tMlxPVb8Sdie3u72jcIwzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=L7uwSmlOTpSKw4i7xGt3HQ +19:00:48.020 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.020 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.020 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.020 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.020 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.021 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.021 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.021 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.033 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.033 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.037 [XNIO-1 task-1] PALAOimBQ8y-3clE0dKg1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lJLd4kxsRXmWWoBVZycCrw +19:00:48.042 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.042 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.042 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.043 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0eadc90-ca38-4686-b28f-f52d98ba4ef9", "a0eadc90-ca38-4686-b28f-f52d98ba4ef9", client_id) +19:00:48.043 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.043 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.043 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.044 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.044 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.047 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.047 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.048 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.048 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG com.networknt.schema.TypeValidator debug - validate( "b5d7c20f-1038-42ac-9d7a-e0240a7f78d4", "b5d7c20f-1038-42ac-9d7a-e0240a7f78d4", client_id) +19:00:48.048 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.048 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.049 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.049 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.049 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.060 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.060 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.063 [XNIO-1 task-1] RHKP1ayrQ1-eh5sxXiWXcA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3psidbdfTreaOgzBGboUQA +19:00:48.067 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.067 [XNIO-1 task-2] 47c0goimRDuIgG_15aS6vw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.070 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.072 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.072 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.072 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG com.networknt.schema.TypeValidator debug - validate( "a0eadc90-ca38-4686-b28f-f52d98ba4ef9", "a0eadc90-ca38-4686-b28f-f52d98ba4ef9", client_id) +19:00:48.072 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.073 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.073 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.073 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.073 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.073 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.073 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.073 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.074 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG com.networknt.schema.TypeValidator debug - validate( "b5d7c20f-1038-42ac-9d7a-e0240a7f78d4", "b5d7c20f-1038-42ac-9d7a-e0240a7f78d4", client_id) +19:00:48.074 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.074 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.074 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.074 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.074 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.084 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.085 [XNIO-1 task-2] AFqIiA7AQB2W0MNW1Zgp_A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.087 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.087 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.087 [XNIO-1 task-1] CWYWQWjMT3K0dZvYxmQwaw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.094 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.094 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.094 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.095 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG com.networknt.schema.TypeValidator debug - validate( "504123b4-6fc7-4ff4-b499-ded9f056c229", "504123b4-6fc7-4ff4-b499-ded9f056c229", client_id) +19:00:48.095 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.095 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.095 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.095 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.095 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.102 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.102 [XNIO-1 task-1] b3Hij9AXSXOFrRZ2PDSkLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.128 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.128 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.128 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.128 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.128 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.128 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.129 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG com.networknt.schema.TypeValidator debug - validate( "b42d9817-3d3d-483c-b11f-a35d04628892", "b42d9817-3d3d-483c-b11f-a35d04628892", client_id) +19:00:48.129 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.129 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.129 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.129 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.129 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.129 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.129 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.130 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.130 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.130 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.130 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.140 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.140 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.141 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.141 [XNIO-1 task-2] pEXBfZ9gS66YsoDklABGmw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.142 [XNIO-1 task-1] 1Kwi2fxeT-qt03Yc7Upznw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aefiSLXUR26ePuhpp_ZYvA +19:00:48.151 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.152 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.152 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.152 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e8d62715-eb9e-4544-8414-ed0e1f3f7001", "e8d62715-eb9e-4544-8414-ed0e1f3f7001", client_id) +19:00:48.152 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.152 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.153 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.153 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.153 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.163 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6a234cd0-d66e-4877-b2a8-1db15ea1e8ac +19:00:48.168 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.168 [XNIO-1 task-2] irmpIlJ6R3mqWHeccljrCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.176 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.176 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.176 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.176 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG com.networknt.schema.TypeValidator debug - validate( "7b87eccb-8564-46b4-9c25-bfa6c350d96b", "7b87eccb-8564-46b4-9c25-bfa6c350d96b", client_id) +19:00:48.177 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.177 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.177 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.177 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.177 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.178 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.178 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.178 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.178 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG com.networknt.schema.TypeValidator debug - validate( "50b9e989-ef60-40bb-891c-abe26c314c69", "50b9e989-ef60-40bb-891c-abe26c314c69", client_id) +19:00:48.178 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.179 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.179 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.179 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.179 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.185 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.185 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.185 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.186 [XNIO-1 task-1] Y2tOCt-wTE6xpMO7oQUjog DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.187 [XNIO-1 task-2] DeBqc3fPRTS8B32qZG5wqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zJgceAO2SViSWu7CILooew +19:00:48.226 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.235 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.223 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.238 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.250 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.250 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.251 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG com.networknt.schema.TypeValidator debug - validate( "7b87eccb-8564-46b4-9c25-bfa6c350d96b", "7b87eccb-8564-46b4-9c25-bfa6c350d96b", client_id) +19:00:48.251 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.251 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:48.251 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.251 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.251 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.251 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.251 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.252 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.252 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.252 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.253 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.261 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.261 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.261 [XNIO-1 task-2] L54sthY7SUuuKfz6uOvvag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.261 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.265 [XNIO-1 task-1] Cmg-TjmUQSuwq90f0Idgeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UKDueswHTya4OhHHx_uXoA +19:00:48.275 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.276 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.277 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.278 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG com.networknt.schema.TypeValidator debug - validate( "ZwtGyB_KOLiLinSCDFmcv5Yq5J9UyMlutHpBMMpKj0U", "ZwtGyB_KOLiLinSCDFmcv5Yq5J9UyMlutHpBMMpKj0U", code_challenge) +19:00:48.278 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.278 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.279 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.279 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.279 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.279 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.290 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.290 [XNIO-1 task-2] ZeIEYzzyQ-i4hQ1TRsZGNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.304 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.304 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.304 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.304 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Oo_HSK4IwjD1OaoCkPzJ3B31TDTbwctHczaWFTGF1oQ", "Oo_HSK4IwjD1OaoCkPzJ3B31TDTbwctHczaWFTGF1oQ", code_challenge) +19:00:48.305 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.305 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.305 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.305 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.305 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.306 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.315 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.317 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.317 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.318 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.318 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.322 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.323 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.323 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.322 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.324 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.327 [XNIO-1 task-2] QcQeViR8T-W_wwQk9yZWWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0DIOFKzYTJSgs0LCdI8ZHA +19:00:48.335 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.336 [XNIO-1 task-1] tKfWjAQLSGq6lM1wA28Ofw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.341 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.342 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.342 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.342 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.342 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.343 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.343 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG com.networknt.schema.TypeValidator debug - validate( "7b87eccb-8564-46b4-9c25-bfa6c350d96b", "7b87eccb-8564-46b4-9c25-bfa6c350d96b", client_id) +19:00:48.343 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG com.networknt.schema.TypeValidator debug - validate( "332bab43-8967-4a8f-ae82-540c46c8afb6", "332bab43-8967-4a8f-ae82-540c46c8afb6", client_id) +19:00:48.343 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.343 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.343 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.343 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.343 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.343 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.343 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.344 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.344 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.349 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.360 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.361 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.364 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.364 [XNIO-1 task-2] s6IxqM_bSAuLVFQsz-XOsA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.365 [XNIO-1 task-1] SAA6GBPCQhabYBAv8zUzEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=j26OGQBCRJOzvoqzwGDiog +19:00:48.372 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.373 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.373 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.373 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG com.networknt.schema.TypeValidator debug - validate( "kAkm78_xvhit69w5t4Xn2mxbnExYnCYLAWUIIasaC4U", "kAkm78_xvhit69w5t4Xn2mxbnExYnCYLAWUIIasaC4U", code_challenge) +19:00:48.373 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.373 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.374 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.374 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.374 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.378 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.378 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.378 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.378 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.378 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.379 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.379 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.379 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.379 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.385 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f9bd0d08-a926-4f9f-baab-5eb637f3642d +19:00:48.388 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f9bd0d08-a926-4f9f-baab-5eb637f3642d +19:00:48.392 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.392 [XNIO-1 task-1] ysA6--XfQeqaRQ1hiFitQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.393 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.394 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.403 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.403 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.404 [XNIO-1 task-2] kk01UkByT7aB0epocIKVMA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k4knGFb0SHiBAcOOht4jXw +19:00:48.404 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.405 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.405 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.405 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.405 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.405 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.415 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.415 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.425 [XNIO-1 task-1] KI6U973STmaPpvYHKjfpYA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MUSodtkNQ12Nd24MRhSleQ +19:00:48.439 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.439 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.439 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.439 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG com.networknt.schema.TypeValidator debug - validate( "9BaZ2XyMGrbYmmjUwAFGJKt0qJmirr2scE6ty4lN9Cc", "9BaZ2XyMGrbYmmjUwAFGJKt0qJmirr2scE6ty4lN9Cc", code_challenge) +19:00:48.440 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.440 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.440 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.441 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.441 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.444 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.444 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bdc344f8 +19:00:48.451 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.452 [XNIO-1 task-1] 8HZyFhgvSjG6ZSka8bZlsg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.468 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.468 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.468 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.468 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG com.networknt.schema.TypeValidator debug - validate( "F0wLR0ks6A9JVtJg4stjWcdZB8moIg9g4-a5k8EGeZE", "F0wLR0ks6A9JVtJg4stjWcdZB8moIg9g4-a5k8EGeZE", code_challenge) +19:00:48.469 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.469 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.469 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.469 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.469 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.469 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.482 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.482 [XNIO-1 task-1] ooNUHjSeQLy_uuyeghyovg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.494 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.494 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.494 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.495 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG com.networknt.schema.TypeValidator debug - validate( "UjyFAc1zp2j8OH1Q_trwSNN9QknWfhEq9LD6I2_NO6M", "UjyFAc1zp2j8OH1Q_trwSNN9QknWfhEq9LD6I2_NO6M", code_challenge) +19:00:48.495 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.495 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.495 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.495 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.496 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.496 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.509 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.514 [XNIO-1 task-1] isxb7Cv0RheW8LKDr6Wbfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.519 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:bdc344f8 +19:00:48.522 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.524 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.524 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.524 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "-iEN3caed1UDn8788kgqC99GE9o2Icn2Mk3wp0h-bQI", "-iEN3caed1UDn8788kgqC99GE9o2Icn2Mk3wp0h-bQI", code_challenge) +19:00:48.525 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.525 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.525 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.526 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.526 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.526 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.540 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.540 [XNIO-1 task-1] ZmKrA3SgS9O6hCD1Z0yFiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +19:00:48.545 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.546 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.546 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.549 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG com.networknt.schema.TypeValidator debug - validate( "d57405e0-abb4-4211-86c3-bbd7417c1876", "d57405e0-abb4-4211-86c3-bbd7417c1876", client_id) +19:00:48.549 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.549 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.549 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.549 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.549 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +19:00:48.554 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.554 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.554 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +19:00:48.555 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a2f6dc5-403c-4ba2-9812-3e9a5efa382c", "5a2f6dc5-403c-4ba2-9812-3e9a5efa382c", client_id) +19:00:48.555 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +19:00:48.555 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +19:00:48.555 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +19:00:48.556 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@23ea9e5 for /oauth2/code +19:00:48.556 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +19:00:48.564 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +19:00:48.564 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.566 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c5fc4eb6 +19:00:48.568 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@7899d204 for /oauth2/code +19:00:48.568 [XNIO-1 task-1] hLCxfkGyTgCUPZeam5rWKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +19:00:48.569 [XNIO-1 task-2] 1phIKZ1oQ0SoSrqgBUcbIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kEwnla47RIieqP6uH0PMyA +19:00:48.582 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.582 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +19:00:48.582 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +19:00:48.582 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG com.networknt.schema.TypeValidator debug - validate( "bUi-xjxTpoRGNN3LjoYsMLAJi86b30p8YvntaT6wC_s", "bUi-xjxTpoRGNN3LjoYsMLAJi86b30p8YvntaT6wC_s", code_challenge) +19:00:48.583 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +19:00:48.583 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +19:00:48.583 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +19:00:48.583 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +19:00:48.583 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +19:00:48.586 [XNIO-1 task-1] R0XloPbYR_29L0uPY-MshA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth diff --git a/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-key-1.log b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..dabd67d --- /dev/null +++ b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-key-1.log @@ -0,0 +1,212 @@ +19:00:44.983 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:165d296d +19:00:45.052 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fae5eab6-2f47-4fbb-9f8c-751f2240b19e +19:00:45.053 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fae5eab6-2f47-4fbb-9f8c-751f2240b19e +19:00:45.282 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7bebc6e8 +19:00:45.293 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:165d296d +19:00:45.304 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:49022a1e-71f4-4683-a22f-d81f2120bc2a +19:00:45.341 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:49022a1e-71f4-4683-a22f-d81f2120bc2a +19:00:45.381 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1f7a1fd3 +19:00:45.415 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bce471e8-8b7e-4b9f-9282-ac3750932b2a +19:00:45.467 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bce471e8-8b7e-4b9f-9282-ac3750932b2a +19:00:45.516 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c300f962-0b15-4f32-a154-148063a1a136 +19:00:45.518 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c300f962-0b15-4f32-a154-148063a1a136 +19:00:45.582 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c300f962-0b15-4f32-a154-148063a1a136 +19:00:45.600 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:be0245ca +19:00:45.641 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:76cd5087-c57f-4f82-96d9-1685439b1d78 +19:00:45.667 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:427a3000 +19:00:45.681 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b894e676-ee0e-439f-8060-cbd440c966e0 +19:00:45.683 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b894e676-ee0e-439f-8060-cbd440c966e0 +19:00:46.094 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:be0245ca +19:00:46.215 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9958e846-af72-4b73-ba1e-0251f1e7186d +19:00:46.217 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9958e846-af72-4b73-ba1e-0251f1e7186d +19:00:46.237 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ca38f119-c232-4668-9585-1386e3d67ab3 +19:00:46.245 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8cfdf35 +19:00:46.252 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8cfdf35 +19:00:46.364 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8cfdf35 +19:00:46.450 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8cfdf35 +19:00:46.451 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b7ff8269-e0f0-437c-bd39-35bf56763571 +19:00:46.470 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b73c9cab +19:00:46.480 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93b8d389 +19:00:46.482 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93b8d389 +19:00:46.662 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:165d296d +19:00:46.914 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6e45aaf4-3d32-4825-8603-e9f3af5d49cd +19:00:46.917 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6e45aaf4-3d32-4825-8603-e9f3af5d49cd +19:00:46.940 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1f7a1fd3 +19:00:47.033 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:04367ffd-1290-4ad5-8185-303a2ddebfc7 +19:00:47.074 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a0eadc90-ca38-4686-b28f-f52d98ba4ef9 +19:00:47.077 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a0eadc90-ca38-4686-b28f-f52d98ba4ef9 +19:00:47.085 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:87c6a61c +19:00:47.143 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b73c9cab +19:00:47.156 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:63d0cee0-b55f-48d8-a47f-6c97defeb37f +19:00:47.157 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:63d0cee0-b55f-48d8-a47f-6c97defeb37f +19:00:47.196 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7b87eccb-8564-46b4-9c25-bfa6c350d96b +19:00:47.260 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f16b3bf1 +19:00:47.407 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b7cb533d-607d-4ba2-902b-743cb251c42f +19:00:47.408 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b7cb533d-607d-4ba2-902b-743cb251c42f +19:00:47.450 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:93b8d389 +19:00:47.472 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.519 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.625 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:44f9ffa2-6ba8-4d9f-8f38-691dd7039cd5 +19:00:47.627 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:44f9ffa2-6ba8-4d9f-8f38-691dd7039cd5 +19:00:47.706 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:721b6640 +19:00:47.709 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:721b6640 +19:00:47.791 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:11ba4d82-1ea6-40ee-a469-0f3cb45abfda +19:00:47.826 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:11ba4d82-1ea6-40ee-a469-0f3cb45abfda +19:00:48.423 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c0d7df33-72a8-45e7-a4af-b8108cf0b9bc +19:00:48.426 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:48.427 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:48.470 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:87c6a61c +19:00:48.533 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5faa5268-aac7-4b20-b09f-ed1b4628aa4a +19:00:48.605 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:93656b80-42a3-4433-a3d6-98bbc6ab1536 +19:00:48.778 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:708ff612-36a6-40ba-a155-77cf6508bfde +19:00:48.779 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:708ff612-36a6-40ba-a155-77cf6508bfde +19:00:48.817 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:48.907 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7d9211f5 +19:00:48.909 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7d9211f5 +19:00:48.922 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:eedb5ef7-37f6-47de-9492-f49bfc8d4078 +19:00:48.967 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b80608bc +19:00:48.969 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b80608bc +19:00:49.001 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b80608bc +19:00:49.019 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b80608bc +19:00:49.037 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b80608bc +19:00:49.076 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b80608bc +19:00:49.115 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7d9211f5 +19:00:49.288 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:87b06420 +19:00:49.291 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:87b06420 +19:00:49.413 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:87c6a61c +19:00:49.417 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bcbb36de-6d88-400e-b737-be784fce047b +19:00:49.467 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.580 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:de19364a +19:00:49.643 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.646 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:87b06420 +19:00:49.686 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.702 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bcbb36de-6d88-400e-b737-be784fce047b +19:00:49.792 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.856 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:87b06420 +19:00:49.864 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.868 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c9c5b02f +19:00:49.872 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.999 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7d9211f5 +19:00:50.061 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.061 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d2bfb91d-96b9-446c-86ed-619c7af51789 +19:00:50.379 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9c5b02f +19:00:50.453 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:05406b29 +19:00:50.569 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c9c5b02f +19:00:50.573 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ba6a57c1-de17-474a-a692-bf4e367406e7 +19:00:50.623 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:df2a9f4d +19:00:50.625 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:df2a9f4d +Jun 28, 2024 7:00:50 PM com.hazelcast.map.impl.operation.DeleteOperation +19:00:50.742 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:50.769 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:05406b29 +19:00:50.869 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:536b386d-eaa1-451f-a4a3-5ddb600eb3ef +19:00:50.902 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:536b386d-eaa1-451f-a4a3-5ddb600eb3ef +19:00:50.920 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7d9211f5 +19:00:51.094 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:124a8e7e-3620-4851-9ed8-2eb87cd9a7dc +19:00:51.099 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:124a8e7e-3620-4851-9ed8-2eb87cd9a7dc +19:00:51.109 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0b076996-a4da-4565-af32-b17900ffa0c4 +19:00:51.124 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:124a8e7e-3620-4851-9ed8-2eb87cd9a7dc +19:00:51.233 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2af3aa3a-2884-4763-841e-5a63afb12fca +19:00:51.248 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:742a6621 +19:00:51.375 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:34d55c85-c09b-46a1-b4c9-0b30c24d0fb8 +19:00:51.377 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:34d55c85-c09b-46a1-b4c9-0b30c24d0fb8 +19:00:51.383 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:17caab12 +19:00:51.403 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7d9211f5 +19:00:51.447 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:df2a9f4d +19:00:51.480 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:df2a9f4d +19:00:51.524 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0b076996-a4da-4565-af32-b17900ffa0c4 +19:00:51.535 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b110cfa8 +19:00:51.557 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0b076996-a4da-4565-af32-b17900ffa0c4 +19:00:51.615 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9c118259 +19:00:51.626 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:df2a9f4d +19:00:51.641 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:17caab12 +19:00:51.687 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0c7f84e3-e482-49ca-8bd2-b825c0b3efba +19:00:51.728 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9c118259 +19:00:51.810 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6e45aaf4-3d32-4825-8603-e9f3af5d49cd +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +19:00:51.849 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ca38f119-c232-4668-9585-1386e3d67ab3 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more diff --git a/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..dd98319 --- /dev/null +++ b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,3594 @@ +19:00:44.120 [XNIO-1 task-1] dX-88nHvR2-8sRYCJCLQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.121 [XNIO-1 task-1] dX-88nHvR2-8sRYCJCLQRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +Jun 28, 2024 7:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +19:00:44.122 [XNIO-1 task-1] dX-88nHvR2-8sRYCJCLQRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.122 [XNIO-1 task-1] dX-88nHvR2-8sRYCJCLQRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.122 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:44.169 [XNIO-1 task-1] QvVnPYijSRWq9NC-O_Tn6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b800f27-2234-437e-8ded-ecd7f2eb0dc0, base path is set to: null +19:00:44.169 [XNIO-1 task-1] QvVnPYijSRWq9NC-O_Tn6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.169 [XNIO-1 task-1] QvVnPYijSRWq9NC-O_Tn6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.169 [XNIO-1 task-1] QvVnPYijSRWq9NC-O_Tn6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b800f27-2234-437e-8ded-ecd7f2eb0dc0, base path is set to: null +19:00:44.172 [XNIO-1 task-1] QvVnPYijSRWq9NC-O_Tn6g DEBUG com.networknt.schema.TypeValidator debug - validate( "4b800f27-2234-437e-8ded-ecd7f2eb0dc0", "4b800f27-2234-437e-8ded-ecd7f2eb0dc0", refreshToken) +19:00:44.177 [XNIO-1 task-1] QvVnPYijSRWq9NC-O_Tn6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b800f27-2234-437e-8ded-ecd7f2eb0dc0 is not found.","severity":"ERROR"} +19:00:44.181 [XNIO-1 task-1] NsD0J8YXQVWk371PHmD27w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b800f27-2234-437e-8ded-ecd7f2eb0dc0 +19:00:44.182 [XNIO-1 task-1] NsD0J8YXQVWk371PHmD27w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.182 [XNIO-1 task-1] NsD0J8YXQVWk371PHmD27w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.182 [XNIO-1 task-1] NsD0J8YXQVWk371PHmD27w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4b800f27-2234-437e-8ded-ecd7f2eb0dc0 +19:00:44.183 [XNIO-1 task-1] NsD0J8YXQVWk371PHmD27w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4b800f27-2234-437e-8ded-ecd7f2eb0dc0 +19:00:44.193 [XNIO-1 task-1] AZBK_bynR9ilohyvDnaTbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2, base path is set to: null +19:00:44.195 [XNIO-1 task-1] AZBK_bynR9ilohyvDnaTbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.196 [XNIO-1 task-1] AZBK_bynR9ilohyvDnaTbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.196 [XNIO-1 task-1] AZBK_bynR9ilohyvDnaTbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2, base path is set to: null +19:00:44.197 [XNIO-1 task-1] AZBK_bynR9ilohyvDnaTbw DEBUG com.networknt.schema.TypeValidator debug - validate( "8cab302b-d87b-4bd9-a374-dd77be9528c2", "8cab302b-d87b-4bd9-a374-dd77be9528c2", refreshToken) +19:00:44.211 [XNIO-1 task-1] pIlemdiYSlmuYktS_WzzRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.212 [XNIO-1 task-1] pIlemdiYSlmuYktS_WzzRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.213 [XNIO-1 task-1] pIlemdiYSlmuYktS_WzzRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.214 [XNIO-1 task-1] pIlemdiYSlmuYktS_WzzRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.214 [XNIO-1 task-1] pIlemdiYSlmuYktS_WzzRg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.230 [XNIO-1 task-1] lL4ECdKoRwSF3mGfPBP3nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.230 [XNIO-1 task-1] lL4ECdKoRwSF3mGfPBP3nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.231 [XNIO-1 task-1] lL4ECdKoRwSF3mGfPBP3nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.231 [XNIO-1 task-1] lL4ECdKoRwSF3mGfPBP3nA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.247 [XNIO-1 task-1] SqwRW42ATwyXJZu5_MRNbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.248 [XNIO-1 task-1] SqwRW42ATwyXJZu5_MRNbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.248 [XNIO-1 task-1] SqwRW42ATwyXJZu5_MRNbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.249 [XNIO-1 task-1] SqwRW42ATwyXJZu5_MRNbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.249 [XNIO-1 task-1] SqwRW42ATwyXJZu5_MRNbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.273 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.280 [XNIO-1 task-1] I2Wi6SelShCKoZmvbZaMKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.280 [XNIO-1 task-1] I2Wi6SelShCKoZmvbZaMKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.280 [XNIO-1 task-1] I2Wi6SelShCKoZmvbZaMKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.280 [XNIO-1 task-1] I2Wi6SelShCKoZmvbZaMKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.281 [XNIO-1 task-1] I2Wi6SelShCKoZmvbZaMKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.304 [XNIO-1 task-1] iBXZFYByTXacMNsXh_VAZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2, base path is set to: null +19:00:44.304 [XNIO-1 task-1] iBXZFYByTXacMNsXh_VAZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.304 [XNIO-1 task-1] iBXZFYByTXacMNsXh_VAZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.304 [XNIO-1 task-1] iBXZFYByTXacMNsXh_VAZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2, base path is set to: null +19:00:44.305 [XNIO-1 task-1] iBXZFYByTXacMNsXh_VAZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8cab302b-d87b-4bd9-a374-dd77be9528c2", "8cab302b-d87b-4bd9-a374-dd77be9528c2", refreshToken) +19:00:44.306 [XNIO-1 task-1] iBXZFYByTXacMNsXh_VAZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8cab302b-d87b-4bd9-a374-dd77be9528c2 is not found.","severity":"ERROR"} +19:00:44.313 [XNIO-1 task-1] XXNKw_P3SsuZSr1DvgCkSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.313 [XNIO-1 task-1] XXNKw_P3SsuZSr1DvgCkSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.313 [XNIO-1 task-1] XXNKw_P3SsuZSr1DvgCkSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.313 [XNIO-1 task-1] XXNKw_P3SsuZSr1DvgCkSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.315 [XNIO-1 task-1] XXNKw_P3SsuZSr1DvgCkSg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.334 [XNIO-1 task-1] MiPwRMA_T1y9FDyCo2Z2uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.334 [XNIO-1 task-1] MiPwRMA_T1y9FDyCo2Z2uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.334 [XNIO-1 task-1] MiPwRMA_T1y9FDyCo2Z2uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.334 [XNIO-1 task-1] MiPwRMA_T1y9FDyCo2Z2uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.335 [XNIO-1 task-1] MiPwRMA_T1y9FDyCo2Z2uw DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.336 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.342 [XNIO-1 task-1] OTfsZAVESqCc6zxaGMNyYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.348 [XNIO-1 task-1] OTfsZAVESqCc6zxaGMNyYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.348 [XNIO-1 task-1] OTfsZAVESqCc6zxaGMNyYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.348 [XNIO-1 task-1] OTfsZAVESqCc6zxaGMNyYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.349 [XNIO-1 task-1] OTfsZAVESqCc6zxaGMNyYg DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.349 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.354 [XNIO-1 task-1] 2rOO50oSQOqherlqrTHCDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.354 [XNIO-1 task-1] 2rOO50oSQOqherlqrTHCDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.355 [XNIO-1 task-1] 2rOO50oSQOqherlqrTHCDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.355 [XNIO-1 task-1] 2rOO50oSQOqherlqrTHCDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.355 [XNIO-1 task-1] 2rOO50oSQOqherlqrTHCDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.356 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.361 [XNIO-1 task-1] 5UTYB2AVSFaPHI0QWz7Zew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.361 [XNIO-1 task-1] 5UTYB2AVSFaPHI0QWz7Zew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.361 [XNIO-1 task-1] 5UTYB2AVSFaPHI0QWz7Zew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.361 [XNIO-1 task-1] 5UTYB2AVSFaPHI0QWz7Zew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.362 [XNIO-1 task-1] 5UTYB2AVSFaPHI0QWz7Zew DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.363 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.366 [XNIO-1 task-1] 5UTYB2AVSFaPHI0QWz7Zew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.373 [XNIO-1 task-1] BVTVNrJBQWGqPg8spBqIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.373 [XNIO-1 task-1] BVTVNrJBQWGqPg8spBqIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.374 [XNIO-1 task-1] BVTVNrJBQWGqPg8spBqIQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.374 [XNIO-1 task-1] BVTVNrJBQWGqPg8spBqIQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.387 [XNIO-1 task-1] xWIxNHrFSw2TmAq0aPYggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.389 [XNIO-1 task-1] xWIxNHrFSw2TmAq0aPYggA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.390 [XNIO-1 task-1] xWIxNHrFSw2TmAq0aPYggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.391 [XNIO-1 task-1] xWIxNHrFSw2TmAq0aPYggA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.391 [XNIO-1 task-1] xWIxNHrFSw2TmAq0aPYggA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.433 [XNIO-1 task-1] 6hQU0Us4TmKGV1qzYEjU9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.433 [XNIO-1 task-1] 6hQU0Us4TmKGV1qzYEjU9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.434 [XNIO-1 task-1] 6hQU0Us4TmKGV1qzYEjU9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.434 [XNIO-1 task-1] 6hQU0Us4TmKGV1qzYEjU9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.434 [XNIO-1 task-1] 6hQU0Us4TmKGV1qzYEjU9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.440 [XNIO-1 task-1] 6hQU0Us4TmKGV1qzYEjU9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.447 [XNIO-1 task-1] D5oHCEEQQj-D0Za5TFccQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.447 [XNIO-1 task-1] D5oHCEEQQj-D0Za5TFccQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.447 [XNIO-1 task-1] D5oHCEEQQj-D0Za5TFccQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.448 [XNIO-1 task-1] D5oHCEEQQj-D0Za5TFccQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.458 [XNIO-1 task-1] W0OZadrIRXus8BR0aUVgww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2, base path is set to: null +19:00:44.464 [XNIO-1 task-1] W0OZadrIRXus8BR0aUVgww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.464 [XNIO-1 task-1] W0OZadrIRXus8BR0aUVgww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.464 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.464 [XNIO-1 task-1] W0OZadrIRXus8BR0aUVgww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.465 [XNIO-1 task-1] W0OZadrIRXus8BR0aUVgww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.470 [XNIO-1 task-1] 9-rlck5-SGap7aClwfGS7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.470 [XNIO-1 task-1] 9-rlck5-SGap7aClwfGS7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.470 [XNIO-1 task-1] 9-rlck5-SGap7aClwfGS7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.471 [XNIO-1 task-1] 9-rlck5-SGap7aClwfGS7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.471 [XNIO-1 task-1] 9-rlck5-SGap7aClwfGS7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.492 [XNIO-1 task-1] 7thM8nXJRgCzFJ7X64MCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.492 [XNIO-1 task-1] 7thM8nXJRgCzFJ7X64MCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.493 [XNIO-1 task-1] 7thM8nXJRgCzFJ7X64MCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.493 [XNIO-1 task-1] 7thM8nXJRgCzFJ7X64MCfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.517 [XNIO-1 task-1] IOhf8Hf2Taavj4GH3WH3Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.518 [XNIO-1 task-1] IOhf8Hf2Taavj4GH3WH3Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.518 [XNIO-1 task-1] IOhf8Hf2Taavj4GH3WH3Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.518 [XNIO-1 task-1] IOhf8Hf2Taavj4GH3WH3Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.518 [XNIO-1 task-1] IOhf8Hf2Taavj4GH3WH3Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.519 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.530 [XNIO-1 task-1] rNBnjdC1Tnu9hbLMM3iumA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.531 [XNIO-1 task-1] rNBnjdC1Tnu9hbLMM3iumA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.531 [XNIO-1 task-1] rNBnjdC1Tnu9hbLMM3iumA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.531 [XNIO-1 task-1] rNBnjdC1Tnu9hbLMM3iumA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.532 [XNIO-1 task-1] rNBnjdC1Tnu9hbLMM3iumA DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.534 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.546 [XNIO-1 task-1] p-vBEACtQoSKEXtdaUNXwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.546 [XNIO-1 task-1] p-vBEACtQoSKEXtdaUNXwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.546 [XNIO-1 task-1] p-vBEACtQoSKEXtdaUNXwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.547 [XNIO-1 task-1] p-vBEACtQoSKEXtdaUNXwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.547 [XNIO-1 task-1] p-vBEACtQoSKEXtdaUNXwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.548 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.554 [XNIO-1 task-1] C2_fBh41T-WQxpmgK-0xdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.554 [XNIO-1 task-1] C2_fBh41T-WQxpmgK-0xdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.554 [XNIO-1 task-1] C2_fBh41T-WQxpmgK-0xdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.555 [XNIO-1 task-1] C2_fBh41T-WQxpmgK-0xdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.555 [XNIO-1 task-1] C2_fBh41T-WQxpmgK-0xdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.556 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.569 [XNIO-1 task-1] P53XllCcToyOMwAHHyRijA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2, base path is set to: null +19:00:44.573 [XNIO-1 task-1] P53XllCcToyOMwAHHyRijA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.573 [XNIO-1 task-1] P53XllCcToyOMwAHHyRijA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.573 [XNIO-1 task-1] P53XllCcToyOMwAHHyRijA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2, base path is set to: null +19:00:44.574 [XNIO-1 task-1] P53XllCcToyOMwAHHyRijA DEBUG com.networknt.schema.TypeValidator debug - validate( "8cab302b-d87b-4bd9-a374-dd77be9528c2", "8cab302b-d87b-4bd9-a374-dd77be9528c2", refreshToken) +19:00:44.574 [XNIO-1 task-1] P53XllCcToyOMwAHHyRijA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8cab302b-d87b-4bd9-a374-dd77be9528c2 is not found.","severity":"ERROR"} +19:00:44.580 [XNIO-1 task-1] k08j502ZSk-ZnunlBQP_BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.580 [XNIO-1 task-1] k08j502ZSk-ZnunlBQP_BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.580 [XNIO-1 task-1] k08j502ZSk-ZnunlBQP_BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.581 [XNIO-1 task-1] k08j502ZSk-ZnunlBQP_BA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.596 [XNIO-1 task-1] 5Okjeb45QeSrC6d5YF9Q7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.596 [XNIO-1 task-1] 5Okjeb45QeSrC6d5YF9Q7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.596 [XNIO-1 task-1] 5Okjeb45QeSrC6d5YF9Q7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.596 [XNIO-1 task-1] 5Okjeb45QeSrC6d5YF9Q7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e, base path is set to: null +19:00:44.597 [XNIO-1 task-1] 5Okjeb45QeSrC6d5YF9Q7g DEBUG com.networknt.schema.TypeValidator debug - validate( "4d838b69-526f-4022-9094-a395693afb9e", "4d838b69-526f-4022-9094-a395693afb9e", refreshToken) +19:00:44.597 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4d838b69-526f-4022-9094-a395693afb9e +19:00:44.605 [XNIO-1 task-1] IRNCFVr7QXG9atiJhWba_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.609 [XNIO-1 task-1] IRNCFVr7QXG9atiJhWba_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.610 [XNIO-1 task-1] IRNCFVr7QXG9atiJhWba_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.611 [XNIO-1 task-1] IRNCFVr7QXG9atiJhWba_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.611 [XNIO-1 task-1] IRNCFVr7QXG9atiJhWba_w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.627 [XNIO-1 task-1] sa0fN_NxQcmzBQsKpiqd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.627 [XNIO-1 task-1] sa0fN_NxQcmzBQsKpiqd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.627 [XNIO-1 task-1] sa0fN_NxQcmzBQsKpiqd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.628 [XNIO-1 task-1] sa0fN_NxQcmzBQsKpiqd6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.631 [XNIO-1 task-1] sa0fN_NxQcmzBQsKpiqd6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.637 [XNIO-1 task-1] sa0fN_NxQcmzBQsKpiqd6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.641 [XNIO-1 task-1] udfF2hlQTNSnPo-cgn1Yqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.641 [XNIO-1 task-1] udfF2hlQTNSnPo-cgn1Yqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.641 [XNIO-1 task-1] udfF2hlQTNSnPo-cgn1Yqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.642 [XNIO-1 task-1] udfF2hlQTNSnPo-cgn1Yqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.644 [XNIO-1 task-1] udfF2hlQTNSnPo-cgn1Yqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.645 [XNIO-1 task-1] udfF2hlQTNSnPo-cgn1Yqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.651 [XNIO-1 task-1] cclxzoouR8e6SDyHvcQ5Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.652 [XNIO-1 task-1] cclxzoouR8e6SDyHvcQ5Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.652 [XNIO-1 task-1] cclxzoouR8e6SDyHvcQ5Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.652 [XNIO-1 task-1] cclxzoouR8e6SDyHvcQ5Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.653 [XNIO-1 task-1] cclxzoouR8e6SDyHvcQ5Tg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.656 [XNIO-1 task-1] cclxzoouR8e6SDyHvcQ5Tg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.664 [XNIO-1 task-1] olupiqkBSbGZI6j-8JTDVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.665 [XNIO-1 task-1] olupiqkBSbGZI6j-8JTDVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.665 [XNIO-1 task-1] olupiqkBSbGZI6j-8JTDVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.666 [XNIO-1 task-1] olupiqkBSbGZI6j-8JTDVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.741 [XNIO-1 task-1] Fexl2iGSQy6OBtEHaTk7wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.741 [XNIO-1 task-1] Fexl2iGSQy6OBtEHaTk7wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.741 [XNIO-1 task-1] Fexl2iGSQy6OBtEHaTk7wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.742 [XNIO-1 task-1] Fexl2iGSQy6OBtEHaTk7wg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.742 [XNIO-1 task-1] Fexl2iGSQy6OBtEHaTk7wg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.757 [XNIO-1 task-1] ry3P4-neTd-ohhcoIxoDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.758 [XNIO-1 task-1] ry3P4-neTd-ohhcoIxoDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.759 [XNIO-1 task-1] ry3P4-neTd-ohhcoIxoDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.759 [XNIO-1 task-1] ry3P4-neTd-ohhcoIxoDrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.760 [XNIO-1 task-1] ry3P4-neTd-ohhcoIxoDrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.773 [XNIO-1 task-1] BagSq3KGTDK6helGzj1XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.773 [XNIO-1 task-1] BagSq3KGTDK6helGzj1XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.774 [XNIO-1 task-1] BagSq3KGTDK6helGzj1XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.774 [XNIO-1 task-1] BagSq3KGTDK6helGzj1XLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.775 [XNIO-1 task-1] BagSq3KGTDK6helGzj1XLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.784 [XNIO-1 task-1] ib63QsIBRVmmO9QJcP_Xhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.785 [XNIO-1 task-1] ib63QsIBRVmmO9QJcP_Xhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.785 [XNIO-1 task-1] ib63QsIBRVmmO9QJcP_Xhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.785 [XNIO-1 task-1] ib63QsIBRVmmO9QJcP_Xhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.786 [XNIO-1 task-1] ib63QsIBRVmmO9QJcP_Xhw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c0e2a1b-910c-4bcb-b635-97545ad19f07", "5c0e2a1b-910c-4bcb-b635-97545ad19f07", refreshToken) +19:00:44.786 [XNIO-1 task-1] ib63QsIBRVmmO9QJcP_Xhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c0e2a1b-910c-4bcb-b635-97545ad19f07 is not found.","severity":"ERROR"} +19:00:44.792 [XNIO-1 task-1] LfnEzHAOQK6DpyKW6K8lCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.792 [XNIO-1 task-1] LfnEzHAOQK6DpyKW6K8lCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.792 [XNIO-1 task-1] LfnEzHAOQK6DpyKW6K8lCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.792 [XNIO-1 task-1] LfnEzHAOQK6DpyKW6K8lCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.793 [XNIO-1 task-1] LfnEzHAOQK6DpyKW6K8lCA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.798 [XNIO-1 task-1] 6sp8ZsqXR9WmL3jhv_-_zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.798 [XNIO-1 task-1] 6sp8ZsqXR9WmL3jhv_-_zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.798 [XNIO-1 task-1] 6sp8ZsqXR9WmL3jhv_-_zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.799 [XNIO-1 task-1] 6sp8ZsqXR9WmL3jhv_-_zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.799 [XNIO-1 task-1] 6sp8ZsqXR9WmL3jhv_-_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c0e2a1b-910c-4bcb-b635-97545ad19f07", "5c0e2a1b-910c-4bcb-b635-97545ad19f07", refreshToken) +19:00:44.799 [XNIO-1 task-1] 6sp8ZsqXR9WmL3jhv_-_zA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c0e2a1b-910c-4bcb-b635-97545ad19f07 is not found.","severity":"ERROR"} +19:00:44.806 [XNIO-1 task-1] WKbovEOTTX6fIWG8ZpAGOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.807 [XNIO-1 task-1] WKbovEOTTX6fIWG8ZpAGOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.807 [XNIO-1 task-1] WKbovEOTTX6fIWG8ZpAGOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.807 [XNIO-1 task-1] WKbovEOTTX6fIWG8ZpAGOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.808 [XNIO-1 task-1] WKbovEOTTX6fIWG8ZpAGOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.811 [XNIO-1 task-1] WKbovEOTTX6fIWG8ZpAGOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.815 [XNIO-1 task-1] Ne9zQWl-R_aj0-CsH-NzZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.815 [XNIO-1 task-1] Ne9zQWl-R_aj0-CsH-NzZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.816 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:703a7bd2-3a38-4a42-97e5-44f64361a8fe +19:00:44.816 [XNIO-1 task-1] Ne9zQWl-R_aj0-CsH-NzZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.817 [XNIO-1 task-1] Ne9zQWl-R_aj0-CsH-NzZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.826 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:703a7bd2-3a38-4a42-97e5-44f64361a8fe +19:00:44.832 [XNIO-1 task-1] v9SHau2CQ_qlbksZxc2T9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.832 [XNIO-1 task-1] v9SHau2CQ_qlbksZxc2T9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.836 [XNIO-1 task-1] v9SHau2CQ_qlbksZxc2T9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.836 [XNIO-1 task-1] v9SHau2CQ_qlbksZxc2T9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.837 [XNIO-1 task-1] v9SHau2CQ_qlbksZxc2T9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.838 [XNIO-1 task-1] v9SHau2CQ_qlbksZxc2T9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.848 [XNIO-1 task-1] qCTtTcWNQUOqk9rbw63A9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.848 [XNIO-1 task-1] qCTtTcWNQUOqk9rbw63A9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.848 [XNIO-1 task-1] qCTtTcWNQUOqk9rbw63A9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.849 [XNIO-1 task-1] qCTtTcWNQUOqk9rbw63A9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4d838b69-526f-4022-9094-a395693afb9e +19:00:44.851 [XNIO-1 task-1] qCTtTcWNQUOqk9rbw63A9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4d838b69-526f-4022-9094-a395693afb9e +19:00:44.854 [XNIO-1 task-1] qCTtTcWNQUOqk9rbw63A9g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} +19:00:44.867 [XNIO-1 task-1] nJTWa3FwQnSBvycYCHGFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.867 [XNIO-1 task-1] nJTWa3FwQnSBvycYCHGFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.867 [XNIO-1 task-1] nJTWa3FwQnSBvycYCHGFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.870 [XNIO-1 task-1] nJTWa3FwQnSBvycYCHGFTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.872 [XNIO-1 task-1] nJTWa3FwQnSBvycYCHGFTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.885 [XNIO-1 task-1] fyroozO5Tda_pZFIRvoAEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.885 [XNIO-1 task-1] fyroozO5Tda_pZFIRvoAEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.885 [XNIO-1 task-1] fyroozO5Tda_pZFIRvoAEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.886 [XNIO-1 task-1] fyroozO5Tda_pZFIRvoAEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.886 [XNIO-1 task-1] fyroozO5Tda_pZFIRvoAEA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.898 [XNIO-1 task-1] DhGvRD-GQ9O-vF-7yQ7J8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b778e71a-e7e8-4284-886e-b4f8fcc5005d +19:00:44.899 [XNIO-1 task-1] DhGvRD-GQ9O-vF-7yQ7J8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.899 [XNIO-1 task-1] DhGvRD-GQ9O-vF-7yQ7J8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.899 [XNIO-1 task-1] DhGvRD-GQ9O-vF-7yQ7J8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b778e71a-e7e8-4284-886e-b4f8fcc5005d +19:00:44.901 [XNIO-1 task-1] DhGvRD-GQ9O-vF-7yQ7J8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b778e71a-e7e8-4284-886e-b4f8fcc5005d +19:00:44.910 [XNIO-1 task-1] vgQaCkCpTcSQB0kw-hQICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.910 [XNIO-1 task-1] vgQaCkCpTcSQB0kw-hQICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.910 [XNIO-1 task-1] vgQaCkCpTcSQB0kw-hQICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.911 [XNIO-1 task-1] vgQaCkCpTcSQB0kw-hQICQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.922 [XNIO-1 task-1] 7sbhvTRZRimx3BsVQQpAmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.923 [XNIO-1 task-1] 7sbhvTRZRimx3BsVQQpAmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.923 [XNIO-1 task-1] 7sbhvTRZRimx3BsVQQpAmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.923 [XNIO-1 task-1] 7sbhvTRZRimx3BsVQQpAmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.923 [XNIO-1 task-1] 7sbhvTRZRimx3BsVQQpAmA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c0e2a1b-910c-4bcb-b635-97545ad19f07", "5c0e2a1b-910c-4bcb-b635-97545ad19f07", refreshToken) +19:00:44.924 [XNIO-1 task-1] 7sbhvTRZRimx3BsVQQpAmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c0e2a1b-910c-4bcb-b635-97545ad19f07 is not found.","severity":"ERROR"} +19:00:44.928 [XNIO-1 task-1] XrK07o6mSxaQSupFszFN0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b778e71a-e7e8-4284-886e-b4f8fcc5005d +19:00:44.928 [XNIO-1 task-1] XrK07o6mSxaQSupFszFN0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.928 [XNIO-1 task-1] XrK07o6mSxaQSupFszFN0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.928 [XNIO-1 task-1] XrK07o6mSxaQSupFszFN0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b778e71a-e7e8-4284-886e-b4f8fcc5005d +19:00:44.929 [XNIO-1 task-1] XrK07o6mSxaQSupFszFN0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b778e71a-e7e8-4284-886e-b4f8fcc5005d +19:00:44.931 [XNIO-1 task-1] zThfD55uQ9S-zwsrrSsEqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.932 [XNIO-1 task-1] zThfD55uQ9S-zwsrrSsEqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.932 [XNIO-1 task-1] zThfD55uQ9S-zwsrrSsEqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.932 [XNIO-1 task-1] zThfD55uQ9S-zwsrrSsEqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.932 [XNIO-1 task-1] zThfD55uQ9S-zwsrrSsEqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.939 [XNIO-1 task-1] Xl1yRCIyTGm8rur1fG2f4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b778e71a-e7e8-4284-886e-b4f8fcc5005d, base path is set to: null +19:00:44.939 [XNIO-1 task-1] Xl1yRCIyTGm8rur1fG2f4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.939 [XNIO-1 task-1] Xl1yRCIyTGm8rur1fG2f4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.939 [XNIO-1 task-1] Xl1yRCIyTGm8rur1fG2f4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b778e71a-e7e8-4284-886e-b4f8fcc5005d, base path is set to: null +19:00:44.940 [XNIO-1 task-1] Xl1yRCIyTGm8rur1fG2f4g DEBUG com.networknt.schema.TypeValidator debug - validate( "b778e71a-e7e8-4284-886e-b4f8fcc5005d", "b778e71a-e7e8-4284-886e-b4f8fcc5005d", refreshToken) +19:00:44.959 [XNIO-1 task-1] 1fqKtevtQWm_r_9s00wl2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.960 [XNIO-1 task-1] 1fqKtevtQWm_r_9s00wl2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.960 [XNIO-1 task-1] 1fqKtevtQWm_r_9s00wl2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:44.961 [XNIO-1 task-1] 1fqKtevtQWm_r_9s00wl2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.961 [XNIO-1 task-1] 1fqKtevtQWm_r_9s00wl2g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:44.968 [XNIO-1 task-1] Q7ujLVL5Q22jruwfQjbdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.968 [XNIO-1 task-1] Q7ujLVL5Q22jruwfQjbdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.968 [XNIO-1 task-1] Q7ujLVL5Q22jruwfQjbdJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.969 [XNIO-1 task-1] Q7ujLVL5Q22jruwfQjbdJQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.987 [XNIO-1 task-1] fMpop1AZS1K3SwK7CjrYhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.989 [XNIO-1 task-1] fMpop1AZS1K3SwK7CjrYhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:44.989 [XNIO-1 task-1] fMpop1AZS1K3SwK7CjrYhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:44.989 [XNIO-1 task-1] fMpop1AZS1K3SwK7CjrYhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:44.989 [XNIO-1 task-1] fMpop1AZS1K3SwK7CjrYhw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c0e2a1b-910c-4bcb-b635-97545ad19f07", "5c0e2a1b-910c-4bcb-b635-97545ad19f07", refreshToken) +19:00:44.990 [XNIO-1 task-1] fMpop1AZS1K3SwK7CjrYhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c0e2a1b-910c-4bcb-b635-97545ad19f07 is not found.","severity":"ERROR"} +19:00:44.997 [XNIO-1 task-1] hNX53VI7R3GeK8M35Lvc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.997 [XNIO-1 task-1] hNX53VI7R3GeK8M35Lvc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:44.997 [XNIO-1 task-1] hNX53VI7R3GeK8M35Lvc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:44.997 [XNIO-1 task-1] hNX53VI7R3GeK8M35Lvc5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.998 [XNIO-1 task-1] hNX53VI7R3GeK8M35Lvc5w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:45.001 [XNIO-1 task-1] RzMZQGZLTB684NASMOIszg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:45.002 [XNIO-1 task-1] RzMZQGZLTB684NASMOIszg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.002 [XNIO-1 task-1] RzMZQGZLTB684NASMOIszg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.002 [XNIO-1 task-1] RzMZQGZLTB684NASMOIszg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:45.002 [XNIO-1 task-1] RzMZQGZLTB684NASMOIszg DEBUG com.networknt.schema.TypeValidator debug - validate( "5c0e2a1b-910c-4bcb-b635-97545ad19f07", "5c0e2a1b-910c-4bcb-b635-97545ad19f07", refreshToken) +19:00:45.003 [XNIO-1 task-1] RzMZQGZLTB684NASMOIszg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c0e2a1b-910c-4bcb-b635-97545ad19f07 is not found.","severity":"ERROR"} +19:00:45.007 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:89a3beef-aa71-4a96-b968-6570a84ef3b1 +19:00:45.008 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aaa7028b-b8dc-42ab-a47d-f8256e873745 +19:00:45.009 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:aaa7028b-b8dc-42ab-a47d-f8256e873745 +19:00:45.012 [XNIO-1 task-1] 5FaqBclORli257Wao1_EnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.012 [XNIO-1 task-1] 5FaqBclORli257Wao1_EnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.014 [XNIO-1 task-1] 5FaqBclORli257Wao1_EnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.014 [XNIO-1 task-1] 5FaqBclORli257Wao1_EnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.014 [XNIO-1 task-1] 5FaqBclORli257Wao1_EnA DEBUG com.networknt.schema.TypeValidator debug - validate( "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", refreshToken) +19:00:45.018 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e4dd25bf +19:00:45.025 [XNIO-1 task-1] L_--ruo7RhumEni21MM-yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98c61c06-66d5-4812-a484-aeb99125a276, base path is set to: null +19:00:45.025 [XNIO-1 task-1] L_--ruo7RhumEni21MM-yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.026 [XNIO-1 task-1] L_--ruo7RhumEni21MM-yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.026 [XNIO-1 task-1] L_--ruo7RhumEni21MM-yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/98c61c06-66d5-4812-a484-aeb99125a276, base path is set to: null +19:00:45.026 [XNIO-1 task-1] L_--ruo7RhumEni21MM-yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "98c61c06-66d5-4812-a484-aeb99125a276", "98c61c06-66d5-4812-a484-aeb99125a276", refreshToken) +19:00:45.037 [XNIO-1 task-1] L_--ruo7RhumEni21MM-yQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 98c61c06-66d5-4812-a484-aeb99125a276 is not found.","severity":"ERROR"} +19:00:45.043 [XNIO-1 task-1] _PsXbBR8T0yr4gP5_1ErAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:45.043 [XNIO-1 task-1] _PsXbBR8T0yr4gP5_1ErAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.043 [XNIO-1 task-1] _PsXbBR8T0yr4gP5_1ErAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.044 [XNIO-1 task-1] _PsXbBR8T0yr4gP5_1ErAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07, base path is set to: null +19:00:45.046 [XNIO-1 task-1] _PsXbBR8T0yr4gP5_1ErAA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c0e2a1b-910c-4bcb-b635-97545ad19f07", "5c0e2a1b-910c-4bcb-b635-97545ad19f07", refreshToken) +19:00:45.046 [XNIO-1 task-1] _PsXbBR8T0yr4gP5_1ErAA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5c0e2a1b-910c-4bcb-b635-97545ad19f07 is not found.","severity":"ERROR"} +19:00:45.051 [XNIO-1 task-1] iwhpk6-DRWKIIyYRo1WUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.051 [XNIO-1 task-1] iwhpk6-DRWKIIyYRo1WUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.051 [XNIO-1 task-1] iwhpk6-DRWKIIyYRo1WUdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.053 [XNIO-1 task-1] iwhpk6-DRWKIIyYRo1WUdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.063 [XNIO-1 task-1] FIYbJPIUQxmPcrQMO9PTfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.063 [XNIO-1 task-1] FIYbJPIUQxmPcrQMO9PTfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.063 [XNIO-1 task-1] FIYbJPIUQxmPcrQMO9PTfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.063 [XNIO-1 task-1] FIYbJPIUQxmPcrQMO9PTfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.064 [XNIO-1 task-1] FIYbJPIUQxmPcrQMO9PTfw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", refreshToken) +19:00:45.068 [XNIO-1 task-1] FIYbJPIUQxmPcrQMO9PTfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 is not found.","severity":"ERROR"} +19:00:45.077 [XNIO-1 task-1] B0rfrp2kSgShGlS6uVmYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.077 [XNIO-1 task-1] B0rfrp2kSgShGlS6uVmYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.077 [XNIO-1 task-1] B0rfrp2kSgShGlS6uVmYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.077 [XNIO-1 task-1] B0rfrp2kSgShGlS6uVmYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.078 [XNIO-1 task-1] B0rfrp2kSgShGlS6uVmYQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.082 [XNIO-1 task-1] ZN1jJe2JTOKe0WDSQHT5qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.083 [XNIO-1 task-1] ZN1jJe2JTOKe0WDSQHT5qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.083 [XNIO-1 task-1] ZN1jJe2JTOKe0WDSQHT5qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.083 [XNIO-1 task-1] ZN1jJe2JTOKe0WDSQHT5qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.084 [XNIO-1 task-1] ZN1jJe2JTOKe0WDSQHT5qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", refreshToken) +19:00:45.084 [XNIO-1 task-1] ZN1jJe2JTOKe0WDSQHT5qQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 is not found.","severity":"ERROR"} +19:00:45.088 [XNIO-1 task-1] ntes8dJ9Qo-RlhornPzbYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:45.088 [XNIO-1 task-1] ntes8dJ9Qo-RlhornPzbYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.089 [XNIO-1 task-1] ntes8dJ9Qo-RlhornPzbYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.089 [XNIO-1 task-1] ntes8dJ9Qo-RlhornPzbYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:45.091 [XNIO-1 task-1] ntes8dJ9Qo-RlhornPzbYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:45.101 [XNIO-1 task-1] ikGkcGrYSgSclFzGiIanQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.106 [XNIO-1 task-1] ikGkcGrYSgSclFzGiIanQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.106 [XNIO-1 task-1] ikGkcGrYSgSclFzGiIanQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.107 [XNIO-1 task-1] ikGkcGrYSgSclFzGiIanQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.107 [XNIO-1 task-1] ikGkcGrYSgSclFzGiIanQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.192 [XNIO-1 task-1] ioGdDsaqRly8fWxlpIEYrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.192 [XNIO-1 task-1] ioGdDsaqRly8fWxlpIEYrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.192 [XNIO-1 task-1] ioGdDsaqRly8fWxlpIEYrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.193 [XNIO-1 task-1] ioGdDsaqRly8fWxlpIEYrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.193 [XNIO-1 task-1] ioGdDsaqRly8fWxlpIEYrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.202 [XNIO-1 task-1] S_R6vkJdRkeFeEuH3OkYKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.203 [XNIO-1 task-1] S_R6vkJdRkeFeEuH3OkYKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.203 [XNIO-1 task-1] S_R6vkJdRkeFeEuH3OkYKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.203 [XNIO-1 task-1] S_R6vkJdRkeFeEuH3OkYKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.204 [XNIO-1 task-1] S_R6vkJdRkeFeEuH3OkYKg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.219 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e4dd25bf +19:00:45.243 [XNIO-1 task-1] 6LvvN5EXTqCH24IxkvySJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.243 [XNIO-1 task-1] 6LvvN5EXTqCH24IxkvySJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.243 [XNIO-1 task-1] 6LvvN5EXTqCH24IxkvySJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.243 [XNIO-1 task-1] 6LvvN5EXTqCH24IxkvySJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.244 [XNIO-1 task-1] 6LvvN5EXTqCH24IxkvySJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.252 [XNIO-1 task-1] JTByTm_zQ2OIS-OHvXQELw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.252 [XNIO-1 task-1] JTByTm_zQ2OIS-OHvXQELw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.252 [XNIO-1 task-1] JTByTm_zQ2OIS-OHvXQELw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.253 [XNIO-1 task-1] JTByTm_zQ2OIS-OHvXQELw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.253 [XNIO-1 task-1] JTByTm_zQ2OIS-OHvXQELw DEBUG com.networknt.schema.TypeValidator debug - validate( "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", refreshToken) +19:00:45.253 [XNIO-1 task-1] JTByTm_zQ2OIS-OHvXQELw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 is not found.","severity":"ERROR"} +19:00:45.257 [XNIO-1 task-1] Di2HC8dLQXGTJBmZUud4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.257 [XNIO-1 task-1] Di2HC8dLQXGTJBmZUud4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.257 [XNIO-1 task-1] Di2HC8dLQXGTJBmZUud4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.258 [XNIO-1 task-1] Di2HC8dLQXGTJBmZUud4jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.259 [XNIO-1 task-1] Di2HC8dLQXGTJBmZUud4jA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.262 [XNIO-1 task-1] Yo2w-nwBTMarvsIAfhZoww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.262 [XNIO-1 task-1] Yo2w-nwBTMarvsIAfhZoww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.262 [XNIO-1 task-1] Yo2w-nwBTMarvsIAfhZoww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.263 [XNIO-1 task-1] Yo2w-nwBTMarvsIAfhZoww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.263 [XNIO-1 task-1] Yo2w-nwBTMarvsIAfhZoww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.278 [XNIO-1 task-1] woeorHdXRq2AMRB_EZGE1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.279 [XNIO-1 task-1] woeorHdXRq2AMRB_EZGE1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.279 [XNIO-1 task-1] woeorHdXRq2AMRB_EZGE1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.279 [XNIO-1 task-1] woeorHdXRq2AMRB_EZGE1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.279 [XNIO-1 task-1] woeorHdXRq2AMRB_EZGE1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.284 [XNIO-1 task-1] p4WEVLjwQGyya0q7lzkNYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.286 [XNIO-1 task-1] p4WEVLjwQGyya0q7lzkNYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.286 [XNIO-1 task-1] p4WEVLjwQGyya0q7lzkNYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.286 [XNIO-1 task-1] p4WEVLjwQGyya0q7lzkNYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5, base path is set to: null +19:00:45.286 [XNIO-1 task-1] p4WEVLjwQGyya0q7lzkNYg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", "6e9af3eb-89a8-45ef-8e1a-b4c6793581f5", refreshToken) +19:00:45.287 [XNIO-1 task-1] p4WEVLjwQGyya0q7lzkNYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 is not found.","severity":"ERROR"} +19:00:45.291 [XNIO-1 task-1] UyszJC0ZSaOSGWESW-eI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.291 [XNIO-1 task-1] UyszJC0ZSaOSGWESW-eI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.292 [XNIO-1 task-1] UyszJC0ZSaOSGWESW-eI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.292 [XNIO-1 task-1] UyszJC0ZSaOSGWESW-eI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.292 [XNIO-1 task-1] UyszJC0ZSaOSGWESW-eI8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.297 [XNIO-1 task-1] 1s5LgOsSTSyX5VBr_mws9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.297 [XNIO-1 task-1] 1s5LgOsSTSyX5VBr_mws9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.297 [XNIO-1 task-1] 1s5LgOsSTSyX5VBr_mws9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.298 [XNIO-1 task-1] 1s5LgOsSTSyX5VBr_mws9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.298 [XNIO-1 task-1] 1s5LgOsSTSyX5VBr_mws9A DEBUG com.networknt.schema.TypeValidator debug - validate( "208166d2-ffee-4acd-9670-6b792578ba9d", "208166d2-ffee-4acd-9670-6b792578ba9d", refreshToken) +19:00:45.323 [XNIO-1 task-1] BVjzdGAnQHSAkWRH7DcWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.324 [XNIO-1 task-1] BVjzdGAnQHSAkWRH7DcWtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.324 [XNIO-1 task-1] BVjzdGAnQHSAkWRH7DcWtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.324 [XNIO-1 task-1] BVjzdGAnQHSAkWRH7DcWtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.325 [XNIO-1 task-1] BVjzdGAnQHSAkWRH7DcWtg DEBUG com.networknt.schema.TypeValidator debug - validate( "208166d2-ffee-4acd-9670-6b792578ba9d", "208166d2-ffee-4acd-9670-6b792578ba9d", refreshToken) +19:00:45.327 [XNIO-1 task-1] BVjzdGAnQHSAkWRH7DcWtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 208166d2-ffee-4acd-9670-6b792578ba9d is not found.","severity":"ERROR"} +19:00:45.331 [XNIO-1 task-1] Mbkv83DxQwCz3bCdEFuGPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.331 [XNIO-1 task-1] Mbkv83DxQwCz3bCdEFuGPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.331 [XNIO-1 task-1] Mbkv83DxQwCz3bCdEFuGPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.331 [XNIO-1 task-1] Mbkv83DxQwCz3bCdEFuGPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.332 [XNIO-1 task-1] Mbkv83DxQwCz3bCdEFuGPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.334 [XNIO-1 task-1] zkLiFFeMRlm3Y2la6xGi4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49022a1e-71f4-4683-a22f-d81f2120bc2a, base path is set to: null +19:00:45.335 [XNIO-1 task-1] zkLiFFeMRlm3Y2la6xGi4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.335 [XNIO-1 task-1] zkLiFFeMRlm3Y2la6xGi4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.335 [XNIO-1 task-1] zkLiFFeMRlm3Y2la6xGi4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49022a1e-71f4-4683-a22f-d81f2120bc2a, base path is set to: null +19:00:45.335 [XNIO-1 task-1] zkLiFFeMRlm3Y2la6xGi4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "49022a1e-71f4-4683-a22f-d81f2120bc2a", "49022a1e-71f4-4683-a22f-d81f2120bc2a", refreshToken) +19:00:45.342 [XNIO-1 task-1] zkLiFFeMRlm3Y2la6xGi4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 49022a1e-71f4-4683-a22f-d81f2120bc2a is not found.","severity":"ERROR"} +19:00:45.347 [XNIO-1 task-1] 9SUG4GzURX-bLpGk5xgHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.348 [XNIO-1 task-1] 9SUG4GzURX-bLpGk5xgHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.348 [XNIO-1 task-1] 9SUG4GzURX-bLpGk5xgHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.355 [XNIO-1 task-1] 9SUG4GzURX-bLpGk5xgHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.356 [XNIO-1 task-1] 9SUG4GzURX-bLpGk5xgHgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.372 [XNIO-1 task-1] hvd9VriORXuH8UKInSR1Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.372 [XNIO-1 task-1] hvd9VriORXuH8UKInSR1Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.372 [XNIO-1 task-1] hvd9VriORXuH8UKInSR1Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.373 [XNIO-1 task-1] hvd9VriORXuH8UKInSR1Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.373 [XNIO-1 task-1] hvd9VriORXuH8UKInSR1Og DEBUG com.networknt.schema.TypeValidator debug - validate( "208166d2-ffee-4acd-9670-6b792578ba9d", "208166d2-ffee-4acd-9670-6b792578ba9d", refreshToken) +19:00:45.374 [XNIO-1 task-1] hvd9VriORXuH8UKInSR1Og ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 208166d2-ffee-4acd-9670-6b792578ba9d is not found.","severity":"ERROR"} +19:00:45.380 [XNIO-1 task-1] IYe7f0HdRfu8o2n2ZYYYbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.380 [XNIO-1 task-1] IYe7f0HdRfu8o2n2ZYYYbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.380 [XNIO-1 task-1] IYe7f0HdRfu8o2n2ZYYYbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.380 [XNIO-1 task-1] IYe7f0HdRfu8o2n2ZYYYbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.381 [XNIO-1 task-1] IYe7f0HdRfu8o2n2ZYYYbg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.387 [XNIO-1 task-1] NLXa_BdhRBimKiKg-GmB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.388 [XNIO-1 task-1] NLXa_BdhRBimKiKg-GmB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.388 [XNIO-1 task-1] NLXa_BdhRBimKiKg-GmB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.388 [XNIO-1 task-1] NLXa_BdhRBimKiKg-GmB0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.388 [XNIO-1 task-1] NLXa_BdhRBimKiKg-GmB0g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.392 [XNIO-1 task-1] QVDj07GNQEapV1yiOBQLGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.392 [XNIO-1 task-1] QVDj07GNQEapV1yiOBQLGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.393 [XNIO-1 task-1] QVDj07GNQEapV1yiOBQLGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.393 [XNIO-1 task-1] QVDj07GNQEapV1yiOBQLGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.393 [XNIO-1 task-1] QVDj07GNQEapV1yiOBQLGA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.405 [XNIO-1 task-1] 4uGy8CzFQ8GcmYf4thbe7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.405 [XNIO-1 task-1] 4uGy8CzFQ8GcmYf4thbe7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.405 [XNIO-1 task-1] 4uGy8CzFQ8GcmYf4thbe7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.406 [XNIO-1 task-1] 4uGy8CzFQ8GcmYf4thbe7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.406 [XNIO-1 task-1] 4uGy8CzFQ8GcmYf4thbe7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6e9af3eb-89a8-45ef-8e1a-b4c6793581f5 +19:00:45.410 [XNIO-1 task-1] oVBii2QyT3KPmjsugDghig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.410 [XNIO-1 task-1] oVBii2QyT3KPmjsugDghig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.410 [XNIO-1 task-1] oVBii2QyT3KPmjsugDghig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.411 [XNIO-1 task-1] oVBii2QyT3KPmjsugDghig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.411 [XNIO-1 task-1] oVBii2QyT3KPmjsugDghig DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.425 [XNIO-1 task-1] HMqJE6ytT3SkQQza85sXTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.425 [XNIO-1 task-1] HMqJE6ytT3SkQQza85sXTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.426 [XNIO-1 task-1] HMqJE6ytT3SkQQza85sXTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.426 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:da0bd7af +19:00:45.426 [XNIO-1 task-1] HMqJE6ytT3SkQQza85sXTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.426 [XNIO-1 task-1] HMqJE6ytT3SkQQza85sXTg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.437 [XNIO-1 task-1] p9tOmWppTGGvqq6a5iCwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a +19:00:45.437 [XNIO-1 task-1] p9tOmWppTGGvqq6a5iCwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.437 [XNIO-1 task-1] p9tOmWppTGGvqq6a5iCwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.437 [XNIO-1 task-1] p9tOmWppTGGvqq6a5iCwFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a +19:00:45.438 [XNIO-1 task-1] p9tOmWppTGGvqq6a5iCwFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bce471e8-8b7e-4b9f-9282-ac3750932b2a +19:00:45.444 [XNIO-1 task-1] hj0rmwp3RWO2Mmqgo8TfQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.444 [XNIO-1 task-1] hj0rmwp3RWO2Mmqgo8TfQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.444 [XNIO-1 task-1] hj0rmwp3RWO2Mmqgo8TfQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.445 [XNIO-1 task-1] hj0rmwp3RWO2Mmqgo8TfQg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.452 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e4dd25bf +19:00:45.460 [XNIO-1 task-1] oyN0sdCqTzOkIR2kQtvTWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a, base path is set to: null +19:00:45.461 [XNIO-1 task-1] oyN0sdCqTzOkIR2kQtvTWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.461 [XNIO-1 task-1] oyN0sdCqTzOkIR2kQtvTWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.461 [XNIO-1 task-1] oyN0sdCqTzOkIR2kQtvTWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a, base path is set to: null +19:00:45.462 [XNIO-1 task-1] oyN0sdCqTzOkIR2kQtvTWg DEBUG com.networknt.schema.TypeValidator debug - validate( "bce471e8-8b7e-4b9f-9282-ac3750932b2a", "bce471e8-8b7e-4b9f-9282-ac3750932b2a", refreshToken) +19:00:45.466 [XNIO-1 task-1] m2NxCCtqQ3mdsXII9QudSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a, base path is set to: null +19:00:45.466 [XNIO-1 task-1] m2NxCCtqQ3mdsXII9QudSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.466 [XNIO-1 task-1] m2NxCCtqQ3mdsXII9QudSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.466 [XNIO-1 task-1] m2NxCCtqQ3mdsXII9QudSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a, base path is set to: null +19:00:45.467 [XNIO-1 task-1] m2NxCCtqQ3mdsXII9QudSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bce471e8-8b7e-4b9f-9282-ac3750932b2a", "bce471e8-8b7e-4b9f-9282-ac3750932b2a", refreshToken) +19:00:45.470 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e4dd25bf +19:00:45.473 [XNIO-1 task-1] rHAlodAdS3iATsjg1be0pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a, base path is set to: null +19:00:45.476 [XNIO-1 task-1] rHAlodAdS3iATsjg1be0pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.476 [XNIO-1 task-1] rHAlodAdS3iATsjg1be0pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.476 [XNIO-1 task-1] rHAlodAdS3iATsjg1be0pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bce471e8-8b7e-4b9f-9282-ac3750932b2a, base path is set to: null +19:00:45.477 [XNIO-1 task-1] rHAlodAdS3iATsjg1be0pw DEBUG com.networknt.schema.TypeValidator debug - validate( "bce471e8-8b7e-4b9f-9282-ac3750932b2a", "bce471e8-8b7e-4b9f-9282-ac3750932b2a", refreshToken) +19:00:45.479 [XNIO-1 task-1] rHAlodAdS3iATsjg1be0pw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bce471e8-8b7e-4b9f-9282-ac3750932b2a is not found.","severity":"ERROR"} +19:00:45.484 [XNIO-1 task-1] fmzqHOZnQq6KdDBKZx6vcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.484 [XNIO-1 task-1] fmzqHOZnQq6KdDBKZx6vcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.485 [XNIO-1 task-1] fmzqHOZnQq6KdDBKZx6vcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.485 [XNIO-1 task-1] fmzqHOZnQq6KdDBKZx6vcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.522 [XNIO-1 task-1] GUOf-nZTSf62hweigCIUDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.523 [XNIO-1 task-1] GUOf-nZTSf62hweigCIUDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.523 [XNIO-1 task-1] GUOf-nZTSf62hweigCIUDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.523 [XNIO-1 task-1] GUOf-nZTSf62hweigCIUDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.524 [XNIO-1 task-1] GUOf-nZTSf62hweigCIUDA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.535 [XNIO-1 task-1] 66-r43f9TbiEjphG5ySmHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.535 [XNIO-1 task-1] 66-r43f9TbiEjphG5ySmHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.535 [XNIO-1 task-1] 66-r43f9TbiEjphG5ySmHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.536 [XNIO-1 task-1] 66-r43f9TbiEjphG5ySmHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.536 [XNIO-1 task-1] 66-r43f9TbiEjphG5ySmHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.540 [XNIO-1 task-1] i0YqTFUXRhCTGnZMF8hk0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.540 [XNIO-1 task-1] i0YqTFUXRhCTGnZMF8hk0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.541 [XNIO-1 task-1] i0YqTFUXRhCTGnZMF8hk0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.541 [XNIO-1 task-1] i0YqTFUXRhCTGnZMF8hk0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.541 [XNIO-1 task-1] i0YqTFUXRhCTGnZMF8hk0w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.554 [XNIO-1 task-1] p35heeWLTpeqwupHJTrHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.554 [XNIO-1 task-1] p35heeWLTpeqwupHJTrHqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.554 [XNIO-1 task-1] p35heeWLTpeqwupHJTrHqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.555 [XNIO-1 task-1] p35heeWLTpeqwupHJTrHqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.555 [XNIO-1 task-1] p35heeWLTpeqwupHJTrHqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c300f962-0b15-4f32-a154-148063a1a136", "c300f962-0b15-4f32-a154-148063a1a136", refreshToken) +19:00:45.557 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a614529c +19:00:45.576 [XNIO-1 task-1] KjKQUjCxQjmkBA1lIRy52A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.576 [XNIO-1 task-1] KjKQUjCxQjmkBA1lIRy52A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.576 [XNIO-1 task-1] KjKQUjCxQjmkBA1lIRy52A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.576 [XNIO-1 task-1] KjKQUjCxQjmkBA1lIRy52A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d, base path is set to: null +19:00:45.577 [XNIO-1 task-1] KjKQUjCxQjmkBA1lIRy52A DEBUG com.networknt.schema.TypeValidator debug - validate( "208166d2-ffee-4acd-9670-6b792578ba9d", "208166d2-ffee-4acd-9670-6b792578ba9d", refreshToken) +19:00:45.577 [XNIO-1 task-1] KjKQUjCxQjmkBA1lIRy52A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 208166d2-ffee-4acd-9670-6b792578ba9d is not found.","severity":"ERROR"} +19:00:45.579 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.580 [XNIO-1 task-1] jQqyJ0qzTF-BLVoBzk8r4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.580 [XNIO-1 task-1] jQqyJ0qzTF-BLVoBzk8r4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.581 [XNIO-1 task-1] jQqyJ0qzTF-BLVoBzk8r4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.581 [XNIO-1 task-1] jQqyJ0qzTF-BLVoBzk8r4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.581 [XNIO-1 task-1] jQqyJ0qzTF-BLVoBzk8r4A DEBUG com.networknt.schema.TypeValidator debug - validate( "c300f962-0b15-4f32-a154-148063a1a136", "c300f962-0b15-4f32-a154-148063a1a136", refreshToken) +19:00:45.583 [XNIO-1 task-1] jQqyJ0qzTF-BLVoBzk8r4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c300f962-0b15-4f32-a154-148063a1a136 is not found.","severity":"ERROR"} +19:00:45.588 [XNIO-1 task-1] FLFXPNQBQWeUAkKQvb9aKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.589 [XNIO-1 task-1] FLFXPNQBQWeUAkKQvb9aKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.589 [XNIO-1 task-1] FLFXPNQBQWeUAkKQvb9aKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.589 [XNIO-1 task-1] FLFXPNQBQWeUAkKQvb9aKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.596 [XNIO-1 task-1] o6uX4eh7T7aNXLTyEhzJ3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.596 [XNIO-1 task-1] o6uX4eh7T7aNXLTyEhzJ3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.596 [XNIO-1 task-1] o6uX4eh7T7aNXLTyEhzJ3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.597 [XNIO-1 task-1] o6uX4eh7T7aNXLTyEhzJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.597 [XNIO-1 task-1] o6uX4eh7T7aNXLTyEhzJ3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.609 [XNIO-1 task-1] WOYLcXjeQACdmz2Xvp0ybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.609 [XNIO-1 task-1] WOYLcXjeQACdmz2Xvp0ybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.609 [XNIO-1 task-1] WOYLcXjeQACdmz2Xvp0ybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.609 [XNIO-1 task-1] WOYLcXjeQACdmz2Xvp0ybQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.610 [XNIO-1 task-1] WOYLcXjeQACdmz2Xvp0ybQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.621 [XNIO-1 task-1] WPzTjk20Rg6lu29c1l9pkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.622 [XNIO-1 task-1] WPzTjk20Rg6lu29c1l9pkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.622 [XNIO-1 task-1] WPzTjk20Rg6lu29c1l9pkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.622 [XNIO-1 task-1] WPzTjk20Rg6lu29c1l9pkA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.622 [XNIO-1 task-1] WPzTjk20Rg6lu29c1l9pkA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.631 [XNIO-1 task-1] KVhRAKd6SOKC9Wy6iv_PXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.631 [XNIO-1 task-1] KVhRAKd6SOKC9Wy6iv_PXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.631 [XNIO-1 task-1] KVhRAKd6SOKC9Wy6iv_PXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.631 [XNIO-1 task-1] KVhRAKd6SOKC9Wy6iv_PXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.632 [XNIO-1 task-1] KVhRAKd6SOKC9Wy6iv_PXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.636 [XNIO-1 task-1] ShcnKI1kShe3BksxT1ZCjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.636 [XNIO-1 task-1] ShcnKI1kShe3BksxT1ZCjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.636 [XNIO-1 task-1] ShcnKI1kShe3BksxT1ZCjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.636 [XNIO-1 task-1] ShcnKI1kShe3BksxT1ZCjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.637 [XNIO-1 task-1] ShcnKI1kShe3BksxT1ZCjA DEBUG com.networknt.schema.TypeValidator debug - validate( "c300f962-0b15-4f32-a154-148063a1a136", "c300f962-0b15-4f32-a154-148063a1a136", refreshToken) +19:00:45.637 [XNIO-1 task-1] ShcnKI1kShe3BksxT1ZCjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c300f962-0b15-4f32-a154-148063a1a136 is not found.","severity":"ERROR"} +19:00:45.643 [XNIO-1 task-1] 73XkDF5OQzmxOGTV-y5rmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136 +19:00:45.643 [XNIO-1 task-1] 73XkDF5OQzmxOGTV-y5rmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.643 [XNIO-1 task-1] 73XkDF5OQzmxOGTV-y5rmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.644 [XNIO-1 task-1] 73XkDF5OQzmxOGTV-y5rmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136 +19:00:45.645 [XNIO-1 task-1] 73XkDF5OQzmxOGTV-y5rmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c300f962-0b15-4f32-a154-148063a1a136 +19:00:45.648 [XNIO-1 task-1] ohqhHz3zST2KnT9z_EdyCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.648 [XNIO-1 task-1] ohqhHz3zST2KnT9z_EdyCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.648 [XNIO-1 task-1] ohqhHz3zST2KnT9z_EdyCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.649 [XNIO-1 task-1] ohqhHz3zST2KnT9z_EdyCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.649 [XNIO-1 task-1] ohqhHz3zST2KnT9z_EdyCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.664 [XNIO-1 task-1] EBTHV-0ESkyXTkvJgY8uUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.664 [XNIO-1 task-1] EBTHV-0ESkyXTkvJgY8uUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.664 [XNIO-1 task-1] EBTHV-0ESkyXTkvJgY8uUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.664 [XNIO-1 task-1] EBTHV-0ESkyXTkvJgY8uUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.665 [XNIO-1 task-1] EBTHV-0ESkyXTkvJgY8uUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.667 [XNIO-1 task-1] pzTRzwdjQQq7grZE_G-j0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:45.667 [XNIO-1 task-1] pzTRzwdjQQq7grZE_G-j0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.667 [XNIO-1 task-1] pzTRzwdjQQq7grZE_G-j0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.668 [XNIO-1 task-1] pzTRzwdjQQq7grZE_G-j0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:45.668 [XNIO-1 task-1] pzTRzwdjQQq7grZE_G-j0w DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:45.670 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.675 [XNIO-1 task-1] ZMBkqtpxRdyoqeoIniHcCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.675 [XNIO-1 task-1] ZMBkqtpxRdyoqeoIniHcCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.675 [XNIO-1 task-1] ZMBkqtpxRdyoqeoIniHcCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.676 [XNIO-1 task-1] ZMBkqtpxRdyoqeoIniHcCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.676 [XNIO-1 task-1] ZMBkqtpxRdyoqeoIniHcCQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.708 [XNIO-1 task-1] cEIs2AgPQw2771O26Vo0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.708 [XNIO-1 task-1] cEIs2AgPQw2771O26Vo0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.708 [XNIO-1 task-1] cEIs2AgPQw2771O26Vo0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.708 [XNIO-1 task-1] cEIs2AgPQw2771O26Vo0Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.709 [XNIO-1 task-1] cEIs2AgPQw2771O26Vo0Ag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.712 [XNIO-1 task-1] Th1vsBEjR8yK2QU2HAqwTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.713 [XNIO-1 task-1] Th1vsBEjR8yK2QU2HAqwTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.713 [XNIO-1 task-1] Th1vsBEjR8yK2QU2HAqwTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.713 [XNIO-1 task-1] Th1vsBEjR8yK2QU2HAqwTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.713 [XNIO-1 task-1] Th1vsBEjR8yK2QU2HAqwTA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:45.749 [XNIO-1 task-1] SmivsX4XSWSkqCNDWrC0ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.750 [XNIO-1 task-1] SmivsX4XSWSkqCNDWrC0ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.750 [XNIO-1 task-1] SmivsX4XSWSkqCNDWrC0ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.750 [XNIO-1 task-1] SmivsX4XSWSkqCNDWrC0ZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.781 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a614529c +19:00:45.806 [XNIO-1 task-1] ZPzWq0fSQ4Gq7fFW2xN5Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.808 [XNIO-1 task-1] ZPzWq0fSQ4Gq7fFW2xN5Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.808 [XNIO-1 task-1] ZPzWq0fSQ4Gq7fFW2xN5Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.808 [XNIO-1 task-1] ZPzWq0fSQ4Gq7fFW2xN5Qw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.825 [XNIO-1 task-1] swP1V9J-Q2i7aLICR4x6dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.825 [XNIO-1 task-1] swP1V9J-Q2i7aLICR4x6dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.825 [XNIO-1 task-1] swP1V9J-Q2i7aLICR4x6dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.826 [XNIO-1 task-1] swP1V9J-Q2i7aLICR4x6dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.826 [XNIO-1 task-1] swP1V9J-Q2i7aLICR4x6dw DEBUG com.networknt.schema.TypeValidator debug - validate( "c300f962-0b15-4f32-a154-148063a1a136", "c300f962-0b15-4f32-a154-148063a1a136", refreshToken) +19:00:45.826 [XNIO-1 task-1] swP1V9J-Q2i7aLICR4x6dw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c300f962-0b15-4f32-a154-148063a1a136 is not found.","severity":"ERROR"} +19:00:45.833 [XNIO-1 task-1] 3--e1wXERvqaWL__z7CRQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.833 [XNIO-1 task-1] 3--e1wXERvqaWL__z7CRQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.833 [XNIO-1 task-1] 3--e1wXERvqaWL__z7CRQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.833 [XNIO-1 task-1] 3--e1wXERvqaWL__z7CRQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.834 [XNIO-1 task-1] 3--e1wXERvqaWL__z7CRQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.844 [XNIO-1 task-1] 3--e1wXERvqaWL__z7CRQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:45.848 [XNIO-1 task-1] WAWkAsNWSAu_asZUql3c8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.848 [XNIO-1 task-1] WAWkAsNWSAu_asZUql3c8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.848 [XNIO-1 task-1] WAWkAsNWSAu_asZUql3c8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.848 [XNIO-1 task-1] WAWkAsNWSAu_asZUql3c8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.849 [XNIO-1 task-1] WAWkAsNWSAu_asZUql3c8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.856 [XNIO-1 task-1] BpQ8-T-KQA-Ct3NEmxBxtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:45.856 [XNIO-1 task-1] BpQ8-T-KQA-Ct3NEmxBxtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.857 [XNIO-1 task-1] BpQ8-T-KQA-Ct3NEmxBxtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.857 [XNIO-1 task-1] BpQ8-T-KQA-Ct3NEmxBxtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:45.857 [XNIO-1 task-1] BpQ8-T-KQA-Ct3NEmxBxtA DEBUG com.networknt.schema.TypeValidator debug - validate( "19347f97-3a8b-49cc-923a-1329b70a8dac", "19347f97-3a8b-49cc-923a-1329b70a8dac", refreshToken) +19:00:45.872 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:18b1f18f-bd14-4d64-8ac1-ba354fd7c483 +19:00:45.876 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:18b1f18f-bd14-4d64-8ac1-ba354fd7c483 +19:00:45.876 [XNIO-1 task-1] Hphm1YOmQHa8mFTl89ExhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.877 [XNIO-1 task-1] Hphm1YOmQHa8mFTl89ExhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.877 [XNIO-1 task-1] Hphm1YOmQHa8mFTl89ExhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.877 [XNIO-1 task-1] Hphm1YOmQHa8mFTl89ExhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.895 [XNIO-1 task-1] 5SHRWYVyQBWsr2s0WUMJyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.895 [XNIO-1 task-1] 5SHRWYVyQBWsr2s0WUMJyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.895 [XNIO-1 task-1] 5SHRWYVyQBWsr2s0WUMJyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.895 [XNIO-1 task-1] 5SHRWYVyQBWsr2s0WUMJyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136, base path is set to: null +19:00:45.896 [XNIO-1 task-1] 5SHRWYVyQBWsr2s0WUMJyg DEBUG com.networknt.schema.TypeValidator debug - validate( "c300f962-0b15-4f32-a154-148063a1a136", "c300f962-0b15-4f32-a154-148063a1a136", refreshToken) +19:00:45.896 [XNIO-1 task-1] 5SHRWYVyQBWsr2s0WUMJyg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c300f962-0b15-4f32-a154-148063a1a136 is not found.","severity":"ERROR"} +19:00:45.903 [XNIO-1 task-1] XTmPyDRcSrayRDgDaqTxiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac +19:00:45.903 [XNIO-1 task-1] XTmPyDRcSrayRDgDaqTxiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.903 [XNIO-1 task-1] XTmPyDRcSrayRDgDaqTxiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.904 [XNIO-1 task-1] XTmPyDRcSrayRDgDaqTxiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac +19:00:45.904 [XNIO-1 task-1] XTmPyDRcSrayRDgDaqTxiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 19347f97-3a8b-49cc-923a-1329b70a8dac +19:00:45.918 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.921 [XNIO-1 task-1] hyTrwWvgRsmKYHLUcUAZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.922 [XNIO-1 task-1] hyTrwWvgRsmKYHLUcUAZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.922 [XNIO-1 task-1] hyTrwWvgRsmKYHLUcUAZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.922 [XNIO-1 task-1] hyTrwWvgRsmKYHLUcUAZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.924 [XNIO-1 task-1] hyTrwWvgRsmKYHLUcUAZGA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.928 [XNIO-1 task-1] hyTrwWvgRsmKYHLUcUAZGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:45.932 [XNIO-1 task-1] 0qM6P2kBRLOVdJt2ZzWW9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.932 [XNIO-1 task-1] 0qM6P2kBRLOVdJt2ZzWW9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.932 [XNIO-1 task-1] 0qM6P2kBRLOVdJt2ZzWW9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:45.932 [XNIO-1 task-1] 0qM6P2kBRLOVdJt2ZzWW9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.933 [XNIO-1 task-1] 0qM6P2kBRLOVdJt2ZzWW9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.936 [XNIO-1 task-1] 0qM6P2kBRLOVdJt2ZzWW9w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:45.945 [XNIO-1 task-1] KgwMrIp5SpCmonz67yZa3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.945 [XNIO-1 task-1] KgwMrIp5SpCmonz67yZa3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.946 [XNIO-1 task-1] KgwMrIp5SpCmonz67yZa3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:45.946 [XNIO-1 task-1] KgwMrIp5SpCmonz67yZa3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.987 [XNIO-1 task-1] tLCVAgU3R9W_-QsKv-v9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:45.987 [XNIO-1 task-1] tLCVAgU3R9W_-QsKv-v9Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.987 [XNIO-1 task-1] tLCVAgU3R9W_-QsKv-v9Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:45.987 [XNIO-1 task-1] tLCVAgU3R9W_-QsKv-v9Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:45.988 [XNIO-1 task-1] tLCVAgU3R9W_-QsKv-v9Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:45.988 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:45.998 [XNIO-1 task-1] zJPqdOhTTR6N3bJaBmwpMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:45.999 [XNIO-1 task-1] zJPqdOhTTR6N3bJaBmwpMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:45.999 [XNIO-1 task-1] zJPqdOhTTR6N3bJaBmwpMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.000 [XNIO-1 task-1] zJPqdOhTTR6N3bJaBmwpMw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.000 [XNIO-1 task-1] zJPqdOhTTR6N3bJaBmwpMw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.013 [XNIO-1 task-1] gEeU1BR_Q2q9D1Vg83z05A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.013 [XNIO-1 task-1] gEeU1BR_Q2q9D1Vg83z05A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.013 [XNIO-1 task-1] gEeU1BR_Q2q9D1Vg83z05A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.015 [XNIO-1 task-1] gEeU1BR_Q2q9D1Vg83z05A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.028 [XNIO-1 task-1] elqurPYITGK1uL2lbM_k2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.028 [XNIO-1 task-1] elqurPYITGK1uL2lbM_k2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.028 [XNIO-1 task-1] elqurPYITGK1uL2lbM_k2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.029 [XNIO-1 task-1] elqurPYITGK1uL2lbM_k2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.033 [XNIO-1 task-1] elqurPYITGK1uL2lbM_k2g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.044 [XNIO-1 task-1] Hs2x5dm1QYGW0HMPJclJEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.044 [XNIO-1 task-1] Hs2x5dm1QYGW0HMPJclJEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.044 [XNIO-1 task-1] Hs2x5dm1QYGW0HMPJclJEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.044 [XNIO-1 task-1] Hs2x5dm1QYGW0HMPJclJEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.045 [XNIO-1 task-1] Hs2x5dm1QYGW0HMPJclJEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.045 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.047 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e047dc8 +19:00:46.052 [XNIO-1 task-1] PPffhrl_QGKNQ-CDza0qIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:46.053 [XNIO-1 task-1] PPffhrl_QGKNQ-CDza0qIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.053 [XNIO-1 task-1] PPffhrl_QGKNQ-CDza0qIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.053 [XNIO-1 task-1] PPffhrl_QGKNQ-CDza0qIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:46.053 [XNIO-1 task-1] PPffhrl_QGKNQ-CDza0qIA DEBUG com.networknt.schema.TypeValidator debug - validate( "19347f97-3a8b-49cc-923a-1329b70a8dac", "19347f97-3a8b-49cc-923a-1329b70a8dac", refreshToken) +19:00:46.056 [XNIO-1 task-1] PPffhrl_QGKNQ-CDza0qIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19347f97-3a8b-49cc-923a-1329b70a8dac is not found.","severity":"ERROR"} +19:00:46.060 [XNIO-1 task-1] Cc9c2gtUQBGDMNli9Lvadg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136 +19:00:46.060 [XNIO-1 task-1] Cc9c2gtUQBGDMNli9Lvadg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.060 [XNIO-1 task-1] Cc9c2gtUQBGDMNli9Lvadg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.061 [XNIO-1 task-1] Cc9c2gtUQBGDMNli9Lvadg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136 +19:00:46.061 [XNIO-1 task-1] Cc9c2gtUQBGDMNli9Lvadg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c300f962-0b15-4f32-a154-148063a1a136 +19:00:46.070 [XNIO-1 task-1] n2vbIyxsQHWwAzQ1iu728w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.071 [XNIO-1 task-1] n2vbIyxsQHWwAzQ1iu728w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.071 [XNIO-1 task-1] n2vbIyxsQHWwAzQ1iu728w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.071 [XNIO-1 task-1] n2vbIyxsQHWwAzQ1iu728w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.071 [XNIO-1 task-1] n2vbIyxsQHWwAzQ1iu728w DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.072 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.078 [XNIO-1 task-1] 51Om0gOgQMGP7RaXmspRkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:46.078 [XNIO-1 task-1] 51Om0gOgQMGP7RaXmspRkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.078 [XNIO-1 task-1] 51Om0gOgQMGP7RaXmspRkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.079 [XNIO-1 task-1] 51Om0gOgQMGP7RaXmspRkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:46.079 [XNIO-1 task-1] 51Om0gOgQMGP7RaXmspRkg DEBUG com.networknt.schema.TypeValidator debug - validate( "19347f97-3a8b-49cc-923a-1329b70a8dac", "19347f97-3a8b-49cc-923a-1329b70a8dac", refreshToken) +19:00:46.079 [XNIO-1 task-1] 51Om0gOgQMGP7RaXmspRkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19347f97-3a8b-49cc-923a-1329b70a8dac is not found.","severity":"ERROR"} +19:00:46.084 [XNIO-1 task-1] Sf-g2vvgQ_aFqYxvpYL5uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136 +19:00:46.113 [XNIO-1 task-1] Sf-g2vvgQ_aFqYxvpYL5uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.114 [XNIO-1 task-1] Sf-g2vvgQ_aFqYxvpYL5uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.114 [XNIO-1 task-1] Sf-g2vvgQ_aFqYxvpYL5uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c300f962-0b15-4f32-a154-148063a1a136 +19:00:46.115 [XNIO-1 task-1] Sf-g2vvgQ_aFqYxvpYL5uA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c300f962-0b15-4f32-a154-148063a1a136 +19:00:46.118 [XNIO-1 task-1] VDCzonFBSV66CPbp6HRA6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.118 [XNIO-1 task-1] VDCzonFBSV66CPbp6HRA6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.118 [XNIO-1 task-1] VDCzonFBSV66CPbp6HRA6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.119 [XNIO-1 task-1] VDCzonFBSV66CPbp6HRA6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.119 [XNIO-1 task-1] VDCzonFBSV66CPbp6HRA6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.124 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.138 [XNIO-1 task-1] BvnMT1OdQlmqSAS5RSikrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:46.138 [XNIO-1 task-1] BvnMT1OdQlmqSAS5RSikrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.138 [XNIO-1 task-1] BvnMT1OdQlmqSAS5RSikrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.138 [XNIO-1 task-1] BvnMT1OdQlmqSAS5RSikrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19347f97-3a8b-49cc-923a-1329b70a8dac, base path is set to: null +19:00:46.139 [XNIO-1 task-1] BvnMT1OdQlmqSAS5RSikrw DEBUG com.networknt.schema.TypeValidator debug - validate( "19347f97-3a8b-49cc-923a-1329b70a8dac", "19347f97-3a8b-49cc-923a-1329b70a8dac", refreshToken) +19:00:46.139 [XNIO-1 task-1] BvnMT1OdQlmqSAS5RSikrw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19347f97-3a8b-49cc-923a-1329b70a8dac is not found.","severity":"ERROR"} +19:00:46.149 [XNIO-1 task-1] gYmOWVrfRvi4oQH3FIY11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a71ee49a-6329-49c4-bf71-9d8e05da9e51 +19:00:46.150 [XNIO-1 task-1] gYmOWVrfRvi4oQH3FIY11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.150 [XNIO-1 task-1] gYmOWVrfRvi4oQH3FIY11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.150 [XNIO-1 task-1] gYmOWVrfRvi4oQH3FIY11A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a71ee49a-6329-49c4-bf71-9d8e05da9e51 +19:00:46.151 [XNIO-1 task-1] gYmOWVrfRvi4oQH3FIY11A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a71ee49a-6329-49c4-bf71-9d8e05da9e51 +19:00:46.162 [XNIO-1 task-1] Yo5BUVbuSBWf2skZ5AHv-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.162 [XNIO-1 task-1] Yo5BUVbuSBWf2skZ5AHv-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.162 [XNIO-1 task-1] Yo5BUVbuSBWf2skZ5AHv-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.163 [XNIO-1 task-1] Yo5BUVbuSBWf2skZ5AHv-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.163 [XNIO-1 task-1] Yo5BUVbuSBWf2skZ5AHv-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.174 [XNIO-1 task-1] 8UoW8cfsQZ-jfL3YojzB0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.175 [XNIO-1 task-1] 8UoW8cfsQZ-jfL3YojzB0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.175 [XNIO-1 task-1] 8UoW8cfsQZ-jfL3YojzB0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.176 [XNIO-1 task-1] 8UoW8cfsQZ-jfL3YojzB0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.176 [XNIO-1 task-1] 8UoW8cfsQZ-jfL3YojzB0Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.191 [XNIO-1 task-1] 1ZC7XmZ0T4KLgPOh_ag3nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.191 [XNIO-1 task-1] 1ZC7XmZ0T4KLgPOh_ag3nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.191 [XNIO-1 task-1] 1ZC7XmZ0T4KLgPOh_ag3nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.191 [XNIO-1 task-1] 1ZC7XmZ0T4KLgPOh_ag3nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.192 [XNIO-1 task-1] 1ZC7XmZ0T4KLgPOh_ag3nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.207 [XNIO-1 task-1] JRLWJxYsSlGVucM0uW17Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.208 [XNIO-1 task-1] JRLWJxYsSlGVucM0uW17Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.208 [XNIO-1 task-1] JRLWJxYsSlGVucM0uW17Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.209 [XNIO-1 task-1] JRLWJxYsSlGVucM0uW17Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.209 [XNIO-1 task-1] JRLWJxYsSlGVucM0uW17Uw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.215 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6ad3fd18-2854-4ffe-84df-01796b05ef68 +19:00:46.237 [XNIO-1 task-1] AyLGVBKaSHy7EEoS5RGXQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.237 [XNIO-1 task-1] AyLGVBKaSHy7EEoS5RGXQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.237 [XNIO-1 task-1] AyLGVBKaSHy7EEoS5RGXQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.237 [XNIO-1 task-1] AyLGVBKaSHy7EEoS5RGXQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.238 [XNIO-1 task-1] AyLGVBKaSHy7EEoS5RGXQg DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.238 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9cbafb00 +19:00:46.245 [XNIO-1 task-1] EGazVuLhRCi0foaPpI5nHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.245 [XNIO-1 task-1] EGazVuLhRCi0foaPpI5nHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.245 [XNIO-1 task-1] EGazVuLhRCi0foaPpI5nHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.246 [XNIO-1 task-1] EGazVuLhRCi0foaPpI5nHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.246 [XNIO-1 task-1] EGazVuLhRCi0foaPpI5nHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.256 [XNIO-1 task-1] Hxa6iuASQuWaU25fJhlQ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.256 [XNIO-1 task-1] Hxa6iuASQuWaU25fJhlQ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.256 [XNIO-1 task-1] Hxa6iuASQuWaU25fJhlQ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.256 [XNIO-1 task-1] Hxa6iuASQuWaU25fJhlQ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.257 [XNIO-1 task-1] Hxa6iuASQuWaU25fJhlQ9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.261 [XNIO-1 task-1] kd_KU6Q9SfW3rZmHp_lmdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.261 [XNIO-1 task-1] kd_KU6Q9SfW3rZmHp_lmdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.262 [XNIO-1 task-1] kd_KU6Q9SfW3rZmHp_lmdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.262 [XNIO-1 task-1] kd_KU6Q9SfW3rZmHp_lmdA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.262 [XNIO-1 task-1] kd_KU6Q9SfW3rZmHp_lmdA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.274 [XNIO-1 task-1] D3JW9LatQ0-qml64cmO15w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.275 [XNIO-1 task-1] D3JW9LatQ0-qml64cmO15w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.275 [XNIO-1 task-1] D3JW9LatQ0-qml64cmO15w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.275 [XNIO-1 task-1] D3JW9LatQ0-qml64cmO15w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.276 [XNIO-1 task-1] D3JW9LatQ0-qml64cmO15w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.283 [XNIO-1 task-1] ETYaAEn1So6S_Nle2ci_kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.285 [XNIO-1 task-1] ETYaAEn1So6S_Nle2ci_kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.285 [XNIO-1 task-1] ETYaAEn1So6S_Nle2ci_kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.285 [XNIO-1 task-1] ETYaAEn1So6S_Nle2ci_kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.286 [XNIO-1 task-1] ETYaAEn1So6S_Nle2ci_kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.286 [XNIO-1 task-1] ETYaAEn1So6S_Nle2ci_kQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 is not found.","severity":"ERROR"} +19:00:46.290 [XNIO-1 task-1] rVmxUIL2QamFA3i7S_uFVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.290 [XNIO-1 task-1] rVmxUIL2QamFA3i7S_uFVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.290 [XNIO-1 task-1] rVmxUIL2QamFA3i7S_uFVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.290 [XNIO-1 task-1] rVmxUIL2QamFA3i7S_uFVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.291 [XNIO-1 task-1] rVmxUIL2QamFA3i7S_uFVQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.296 [XNIO-1 task-1] xQnXNi9JR1KWI2A35SofOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.296 [XNIO-1 task-1] xQnXNi9JR1KWI2A35SofOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.297 [XNIO-1 task-1] xQnXNi9JR1KWI2A35SofOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.297 [XNIO-1 task-1] xQnXNi9JR1KWI2A35SofOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.297 [XNIO-1 task-1] xQnXNi9JR1KWI2A35SofOw DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.298 [XNIO-1 task-1] xQnXNi9JR1KWI2A35SofOw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 is not found.","severity":"ERROR"} +19:00:46.300 [XNIO-1 task-1] 79MAOsteQXmvjC8e3GtyMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.301 [XNIO-1 task-1] 79MAOsteQXmvjC8e3GtyMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.301 [XNIO-1 task-1] 79MAOsteQXmvjC8e3GtyMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.301 [XNIO-1 task-1] 79MAOsteQXmvjC8e3GtyMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.317 [XNIO-1 task-1] 6VekactUTQKi4fIqu_Nhjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.318 [XNIO-1 task-1] 6VekactUTQKi4fIqu_Nhjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.319 [XNIO-1 task-1] 6VekactUTQKi4fIqu_Nhjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.319 [XNIO-1 task-1] 6VekactUTQKi4fIqu_Nhjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.319 [XNIO-1 task-1] 6VekactUTQKi4fIqu_Nhjg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.327 [XNIO-1 task-1] rqGSsAAYTniuC_5keszJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.327 [XNIO-1 task-1] rqGSsAAYTniuC_5keszJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.327 [XNIO-1 task-1] rqGSsAAYTniuC_5keszJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.327 [XNIO-1 task-1] rqGSsAAYTniuC_5keszJBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.328 [XNIO-1 task-1] rqGSsAAYTniuC_5keszJBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.332 [XNIO-1 task-1] h2nkNrltQiyoTz9Rp0PfCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.332 [XNIO-1 task-1] h2nkNrltQiyoTz9Rp0PfCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.332 [XNIO-1 task-1] h2nkNrltQiyoTz9Rp0PfCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.333 [XNIO-1 task-1] h2nkNrltQiyoTz9Rp0PfCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.333 [XNIO-1 task-1] h2nkNrltQiyoTz9Rp0PfCw DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.333 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.340 [XNIO-1 task-1] dkTSk-FRRC6l5-le1FL2jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.341 [XNIO-1 task-1] dkTSk-FRRC6l5-le1FL2jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.341 [XNIO-1 task-1] dkTSk-FRRC6l5-le1FL2jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.341 [XNIO-1 task-1] dkTSk-FRRC6l5-le1FL2jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.341 [XNIO-1 task-1] dkTSk-FRRC6l5-le1FL2jw DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.342 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.346 [XNIO-1 task-1] 9Xik0_8ARzaxQV-T0y28zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.346 [XNIO-1 task-1] 9Xik0_8ARzaxQV-T0y28zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.346 [XNIO-1 task-1] 9Xik0_8ARzaxQV-T0y28zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.347 [XNIO-1 task-1] 9Xik0_8ARzaxQV-T0y28zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.347 [XNIO-1 task-1] 9Xik0_8ARzaxQV-T0y28zg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.360 [XNIO-1 task-1] jiLsqM_IQ6Sfa3imEQT__A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.361 [XNIO-1 task-1] jiLsqM_IQ6Sfa3imEQT__A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.361 [XNIO-1 task-1] jiLsqM_IQ6Sfa3imEQT__A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.361 [XNIO-1 task-1] jiLsqM_IQ6Sfa3imEQT__A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.362 [XNIO-1 task-1] jiLsqM_IQ6Sfa3imEQT__A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.367 [XNIO-1 task-1] 696LPlgMQSe_gBzozMSyQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.367 [XNIO-1 task-1] 696LPlgMQSe_gBzozMSyQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.367 [XNIO-1 task-1] 696LPlgMQSe_gBzozMSyQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.368 [XNIO-1 task-1] 696LPlgMQSe_gBzozMSyQw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.368 [XNIO-1 task-1] 696LPlgMQSe_gBzozMSyQw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.376 [XNIO-1 task-1] Yu-amqXDRRGfzlhKLNAFsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.376 [XNIO-1 task-1] Yu-amqXDRRGfzlhKLNAFsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.377 [XNIO-1 task-1] Yu-amqXDRRGfzlhKLNAFsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.377 [XNIO-1 task-1] Yu-amqXDRRGfzlhKLNAFsQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.412 [XNIO-1 task-1] sSb6tU_ZSu-7xS837p4m8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.412 [XNIO-1 task-1] sSb6tU_ZSu-7xS837p4m8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.413 [XNIO-1 task-1] sSb6tU_ZSu-7xS837p4m8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.413 [XNIO-1 task-1] sSb6tU_ZSu-7xS837p4m8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.413 [XNIO-1 task-1] sSb6tU_ZSu-7xS837p4m8w DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.414 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.416 [XNIO-1 task-1] sSb6tU_ZSu-7xS837p4m8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.418 [XNIO-1 task-1] HkQyXyzbR4O6dbAPODwfdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.418 [XNIO-1 task-1] HkQyXyzbR4O6dbAPODwfdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.420 [XNIO-1 task-1] HkQyXyzbR4O6dbAPODwfdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.420 [XNIO-1 task-1] HkQyXyzbR4O6dbAPODwfdA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.421 [XNIO-1 task-1] HkQyXyzbR4O6dbAPODwfdA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.426 [XNIO-1 task-1] IBT7ZI-bSReLjhfCNTFGdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.426 [XNIO-1 task-1] IBT7ZI-bSReLjhfCNTFGdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.426 [XNIO-1 task-1] IBT7ZI-bSReLjhfCNTFGdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.426 [XNIO-1 task-1] IBT7ZI-bSReLjhfCNTFGdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.427 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fd125cb6-ce50-4d02-a1ff-56a389af7ebd +19:00:46.427 [XNIO-1 task-1] IBT7ZI-bSReLjhfCNTFGdg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.438 [XNIO-1 task-1] yqyNCYwWRyG4uL4SoHcpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.438 [XNIO-1 task-1] yqyNCYwWRyG4uL4SoHcpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.439 [XNIO-1 task-1] yqyNCYwWRyG4uL4SoHcpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.439 [XNIO-1 task-1] yqyNCYwWRyG4uL4SoHcpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.439 [XNIO-1 task-1] yqyNCYwWRyG4uL4SoHcpRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.440 [XNIO-1 task-1] yqyNCYwWRyG4uL4SoHcpRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.446 [XNIO-1 task-1] mlQhEifQRT24lPaBUscpcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.446 [XNIO-1 task-1] mlQhEifQRT24lPaBUscpcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.446 [XNIO-1 task-1] mlQhEifQRT24lPaBUscpcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.447 [XNIO-1 task-1] mlQhEifQRT24lPaBUscpcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.447 [XNIO-1 task-1] mlQhEifQRT24lPaBUscpcg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.448 [XNIO-1 task-1] mlQhEifQRT24lPaBUscpcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.451 [XNIO-1 task-1] T5zJM8dZQVa1Yil-mOC0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.451 [XNIO-1 task-1] T5zJM8dZQVa1Yil-mOC0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.451 [XNIO-1 task-1] T5zJM8dZQVa1Yil-mOC0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.451 [XNIO-1 task-1] T5zJM8dZQVa1Yil-mOC0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.451 [XNIO-1 task-1] T5zJM8dZQVa1Yil-mOC0xA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.452 [XNIO-1 task-1] T5zJM8dZQVa1Yil-mOC0xA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.459 [XNIO-1 task-1] smj3TbBWQpObyzA9LJCt2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.459 [XNIO-1 task-1] smj3TbBWQpObyzA9LJCt2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.460 [XNIO-1 task-1] smj3TbBWQpObyzA9LJCt2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.460 [XNIO-1 task-1] smj3TbBWQpObyzA9LJCt2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.460 [XNIO-1 task-1] smj3TbBWQpObyzA9LJCt2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.463 [XNIO-1 task-1] smj3TbBWQpObyzA9LJCt2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.474 [XNIO-1 task-1] KdHCZK0KQRijsYcsljywqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.474 [XNIO-1 task-1] KdHCZK0KQRijsYcsljywqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.474 [XNIO-1 task-1] KdHCZK0KQRijsYcsljywqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.474 [XNIO-1 task-1] KdHCZK0KQRijsYcsljywqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.474 [XNIO-1 task-1] KdHCZK0KQRijsYcsljywqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.476 [XNIO-1 task-1] KdHCZK0KQRijsYcsljywqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.483 [XNIO-1 task-1] SYwjKfTGQAKpN2Lt6uQydg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.483 [XNIO-1 task-1] SYwjKfTGQAKpN2Lt6uQydg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.484 [XNIO-1 task-1] SYwjKfTGQAKpN2Lt6uQydg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.484 [XNIO-1 task-1] SYwjKfTGQAKpN2Lt6uQydg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.485 [XNIO-1 task-1] SYwjKfTGQAKpN2Lt6uQydg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.486 [XNIO-1 task-1] SYwjKfTGQAKpN2Lt6uQydg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.493 [XNIO-1 task-1] 3-I-SuR1R6-fuqDHE8aiaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.493 [XNIO-1 task-1] 3-I-SuR1R6-fuqDHE8aiaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.494 [XNIO-1 task-1] 3-I-SuR1R6-fuqDHE8aiaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.494 [XNIO-1 task-1] 3-I-SuR1R6-fuqDHE8aiaQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.502 [XNIO-1 task-1] W1Wmdf-PS6aPV575nReqvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.503 [XNIO-1 task-1] W1Wmdf-PS6aPV575nReqvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.503 [XNIO-1 task-1] W1Wmdf-PS6aPV575nReqvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.503 [XNIO-1 task-1] W1Wmdf-PS6aPV575nReqvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.503 [XNIO-1 task-1] W1Wmdf-PS6aPV575nReqvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.504 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.508 [XNIO-1 task-1] 8-5n2yIAQZy-f_lmVKVeig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7ff8269-e0f0-437c-bd39-35bf56763571, base path is set to: null +19:00:46.508 [XNIO-1 task-1] 8-5n2yIAQZy-f_lmVKVeig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.508 [XNIO-1 task-1] 8-5n2yIAQZy-f_lmVKVeig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.508 [XNIO-1 task-1] 8-5n2yIAQZy-f_lmVKVeig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7ff8269-e0f0-437c-bd39-35bf56763571, base path is set to: null +19:00:46.508 [XNIO-1 task-1] 8-5n2yIAQZy-f_lmVKVeig DEBUG com.networknt.schema.TypeValidator debug - validate( "b7ff8269-e0f0-437c-bd39-35bf56763571", "b7ff8269-e0f0-437c-bd39-35bf56763571", refreshToken) +19:00:46.511 [XNIO-1 task-1] H9UqEhsATiS2U5hxc_izFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.512 [XNIO-1 task-1] H9UqEhsATiS2U5hxc_izFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.512 [XNIO-1 task-1] H9UqEhsATiS2U5hxc_izFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.513 [XNIO-1 task-1] H9UqEhsATiS2U5hxc_izFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.513 [XNIO-1 task-1] H9UqEhsATiS2U5hxc_izFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.523 [XNIO-1 task-1] 1LRpT3znQoiQ-j8PBWugcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.523 [XNIO-1 task-1] 1LRpT3znQoiQ-j8PBWugcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.523 [XNIO-1 task-1] 1LRpT3znQoiQ-j8PBWugcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.524 [XNIO-1 task-1] 1LRpT3znQoiQ-j8PBWugcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.525 [XNIO-1 task-1] 1LRpT3znQoiQ-j8PBWugcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.527 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d33bdc48 +19:00:46.528 [XNIO-1 task-1] xRYWGDWdRRCntDxz2NBLTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.529 [XNIO-1 task-1] xRYWGDWdRRCntDxz2NBLTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.529 [XNIO-1 task-1] xRYWGDWdRRCntDxz2NBLTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.529 [XNIO-1 task-1] xRYWGDWdRRCntDxz2NBLTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.529 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d33bdc48 +19:00:46.540 [XNIO-1 task-1] Q8DNkSQ0TM-fSVdr5oxKkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.540 [XNIO-1 task-1] Q8DNkSQ0TM-fSVdr5oxKkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.540 [XNIO-1 task-1] Q8DNkSQ0TM-fSVdr5oxKkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.541 [XNIO-1 task-1] Q8DNkSQ0TM-fSVdr5oxKkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.541 [XNIO-1 task-1] Q8DNkSQ0TM-fSVdr5oxKkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.542 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.551 [XNIO-1 task-1] Nn7xP6nKSvaMEltg7e4PLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.551 [XNIO-1 task-1] Nn7xP6nKSvaMEltg7e4PLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.551 [XNIO-1 task-1] Nn7xP6nKSvaMEltg7e4PLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.551 [XNIO-1 task-1] Nn7xP6nKSvaMEltg7e4PLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.552 [XNIO-1 task-1] Nn7xP6nKSvaMEltg7e4PLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.552 [XNIO-1 task-1] Nn7xP6nKSvaMEltg7e4PLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.552 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a2927807-729b-4785-9377-8a9a899be397 +19:00:46.561 [XNIO-1 task-1] Nn7xP6nKSvaMEltg7e4PLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.567 [XNIO-1 task-1] ENHyu8p-Qra3Ty3zEMdCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.568 [XNIO-1 task-1] ENHyu8p-Qra3Ty3zEMdCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.568 [XNIO-1 task-1] ENHyu8p-Qra3Ty3zEMdCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.568 [XNIO-1 task-1] ENHyu8p-Qra3Ty3zEMdCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.569 [XNIO-1 task-1] ENHyu8p-Qra3Ty3zEMdCNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.571 [XNIO-1 task-1] ENHyu8p-Qra3Ty3zEMdCNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.583 [XNIO-1 task-1] 5vJz4KO6ToqrhsN108rSAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.583 [XNIO-1 task-1] 5vJz4KO6ToqrhsN108rSAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.583 [XNIO-1 task-1] 5vJz4KO6ToqrhsN108rSAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.583 [XNIO-1 task-1] 5vJz4KO6ToqrhsN108rSAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.586 [XNIO-1 task-1] 5vJz4KO6ToqrhsN108rSAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.590 [XNIO-1 task-1] 5vJz4KO6ToqrhsN108rSAQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.595 [XNIO-1 task-1] m3oAkPRyRHiqlnvG25X2mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.595 [XNIO-1 task-1] m3oAkPRyRHiqlnvG25X2mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.595 [XNIO-1 task-1] m3oAkPRyRHiqlnvG25X2mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.595 [XNIO-1 task-1] m3oAkPRyRHiqlnvG25X2mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.596 [XNIO-1 task-1] m3oAkPRyRHiqlnvG25X2mQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.597 [XNIO-1 task-1] m3oAkPRyRHiqlnvG25X2mQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.602 [XNIO-1 task-1] HBXegLYQR2GZOmG04LMjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.602 [XNIO-1 task-1] HBXegLYQR2GZOmG04LMjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.602 [XNIO-1 task-1] HBXegLYQR2GZOmG04LMjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.603 [XNIO-1 task-1] HBXegLYQR2GZOmG04LMjww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.604 [XNIO-1 task-1] HBXegLYQR2GZOmG04LMjww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.605 [XNIO-1 task-1] HBXegLYQR2GZOmG04LMjww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.609 [XNIO-1 task-1] uHpgVIecRRuAP7DmPWiZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.609 [XNIO-1 task-1] uHpgVIecRRuAP7DmPWiZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.609 [XNIO-1 task-1] uHpgVIecRRuAP7DmPWiZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.609 [XNIO-1 task-1] uHpgVIecRRuAP7DmPWiZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.610 [XNIO-1 task-1] uHpgVIecRRuAP7DmPWiZWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.611 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:386180e7-1d6a-4d17-8f51-e802a802336a +19:00:46.612 [XNIO-1 task-1] uHpgVIecRRuAP7DmPWiZWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.617 [XNIO-1 task-1] ZZONzcR3RJevvj6DsIFRjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.618 [XNIO-1 task-1] ZZONzcR3RJevvj6DsIFRjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.618 [XNIO-1 task-1] ZZONzcR3RJevvj6DsIFRjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.618 [XNIO-1 task-1] ZZONzcR3RJevvj6DsIFRjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.629 [XNIO-1 task-1] CsmYCxOdRfaCNGXtuB7JEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.629 [XNIO-1 task-1] CsmYCxOdRfaCNGXtuB7JEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.629 [XNIO-1 task-1] CsmYCxOdRfaCNGXtuB7JEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.630 [XNIO-1 task-1] CsmYCxOdRfaCNGXtuB7JEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.630 [XNIO-1 task-1] CsmYCxOdRfaCNGXtuB7JEA DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.631 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.641 [XNIO-1 task-1] 5nxRGfYZTOWBTQhspBY8zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1e3d35ea-c05d-411c-bab6-1f2a933609f1, base path is set to: null +19:00:46.641 [XNIO-1 task-1] 5nxRGfYZTOWBTQhspBY8zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.641 [XNIO-1 task-1] 5nxRGfYZTOWBTQhspBY8zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.641 [XNIO-1 task-1] 5nxRGfYZTOWBTQhspBY8zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1e3d35ea-c05d-411c-bab6-1f2a933609f1, base path is set to: null +19:00:46.641 [XNIO-1 task-1] 5nxRGfYZTOWBTQhspBY8zg DEBUG com.networknt.schema.TypeValidator debug - validate( "1e3d35ea-c05d-411c-bab6-1f2a933609f1", "1e3d35ea-c05d-411c-bab6-1f2a933609f1", refreshToken) +19:00:46.644 [XNIO-1 task-1] 5nxRGfYZTOWBTQhspBY8zg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1e3d35ea-c05d-411c-bab6-1f2a933609f1 is not found.","severity":"ERROR"} +19:00:46.652 [XNIO-1 task-1] iCPraYplQ26XKOerpgeJVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.652 [XNIO-1 task-1] iCPraYplQ26XKOerpgeJVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.652 [XNIO-1 task-1] iCPraYplQ26XKOerpgeJVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.653 [XNIO-1 task-1] iCPraYplQ26XKOerpgeJVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.662 [XNIO-1 task-1] Ykryn55XRoaPVp10rkB1Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.663 [XNIO-1 task-1] Ykryn55XRoaPVp10rkB1Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.663 [XNIO-1 task-1] Ykryn55XRoaPVp10rkB1Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.663 [XNIO-1 task-1] Ykryn55XRoaPVp10rkB1Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.664 [XNIO-1 task-1] Ykryn55XRoaPVp10rkB1Iw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.665 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:cb3a0fe4-8adf-467b-9f82-34caf43f73bc +19:00:46.672 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:af102124-3f90-4cd3-bd22-310e61b340a3 +19:00:46.674 [XNIO-1 task-1] LY-Ig4eQSyKokDAkGidyBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.674 [XNIO-1 task-1] LY-Ig4eQSyKokDAkGidyBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.674 [XNIO-1 task-1] LY-Ig4eQSyKokDAkGidyBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.674 [XNIO-1 task-1] LY-Ig4eQSyKokDAkGidyBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.675 [XNIO-1 task-1] LY-Ig4eQSyKokDAkGidyBA DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.675 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.686 [XNIO-1 task-1] B-t7KitOSriUOO_MLW-nZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/386180e7-1d6a-4d17-8f51-e802a802336a, base path is set to: null +19:00:46.687 [XNIO-1 task-1] B-t7KitOSriUOO_MLW-nZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.687 [XNIO-1 task-1] B-t7KitOSriUOO_MLW-nZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.687 [XNIO-1 task-1] B-t7KitOSriUOO_MLW-nZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/386180e7-1d6a-4d17-8f51-e802a802336a, base path is set to: null +19:00:46.687 [XNIO-1 task-1] B-t7KitOSriUOO_MLW-nZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "386180e7-1d6a-4d17-8f51-e802a802336a", "386180e7-1d6a-4d17-8f51-e802a802336a", refreshToken) +19:00:46.688 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:386180e7-1d6a-4d17-8f51-e802a802336a +19:00:46.702 [XNIO-1 task-1] AuOo1NjYQoiKrjCJMBr9fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.702 [XNIO-1 task-1] AuOo1NjYQoiKrjCJMBr9fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.702 [XNIO-1 task-1] AuOo1NjYQoiKrjCJMBr9fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.703 [XNIO-1 task-1] AuOo1NjYQoiKrjCJMBr9fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.704 [XNIO-1 task-1] AuOo1NjYQoiKrjCJMBr9fQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.707 [XNIO-1 task-1] KZCAwlghSoWhYIPtQh1LZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.708 [XNIO-1 task-1] KZCAwlghSoWhYIPtQh1LZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.708 [XNIO-1 task-1] KZCAwlghSoWhYIPtQh1LZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.709 [XNIO-1 task-1] KZCAwlghSoWhYIPtQh1LZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.709 [XNIO-1 task-1] KZCAwlghSoWhYIPtQh1LZg DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.709 [XNIO-1 task-1] KZCAwlghSoWhYIPtQh1LZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 is not found.","severity":"ERROR"} +19:00:46.717 [XNIO-1 task-1] TqpXf95TRl6edNVnJEcCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.717 [XNIO-1 task-1] TqpXf95TRl6edNVnJEcCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.717 [XNIO-1 task-1] TqpXf95TRl6edNVnJEcCVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.718 [XNIO-1 task-1] TqpXf95TRl6edNVnJEcCVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.726 [XNIO-1 task-1] 8SLXnx4fSrW11iA88NmnGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.727 [XNIO-1 task-1] 8SLXnx4fSrW11iA88NmnGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.728 [XNIO-1 task-1] 8SLXnx4fSrW11iA88NmnGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.728 [XNIO-1 task-1] 8SLXnx4fSrW11iA88NmnGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.729 [XNIO-1 task-1] 8SLXnx4fSrW11iA88NmnGA DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.729 [XNIO-1 task-1] 8SLXnx4fSrW11iA88NmnGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 is not found.","severity":"ERROR"} +19:00:46.733 [XNIO-1 task-1] J4RQcXONT4ilbmfCq6SKpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.734 [XNIO-1 task-1] J4RQcXONT4ilbmfCq6SKpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.734 [XNIO-1 task-1] J4RQcXONT4ilbmfCq6SKpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.734 [XNIO-1 task-1] J4RQcXONT4ilbmfCq6SKpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.734 [XNIO-1 task-1] J4RQcXONT4ilbmfCq6SKpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.735 [XNIO-1 task-1] J4RQcXONT4ilbmfCq6SKpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 is not found.","severity":"ERROR"} +19:00:46.739 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:75eba60a-bf17-4652-8fc7-1ec4a632fc3b +19:00:46.739 [XNIO-1 task-1] AB3OiyVbRNq34EBsIzcWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.739 [XNIO-1 task-1] AB3OiyVbRNq34EBsIzcWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.740 [XNIO-1 task-1] AB3OiyVbRNq34EBsIzcWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.740 [XNIO-1 task-1] AB3OiyVbRNq34EBsIzcWUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.751 [XNIO-1 task-1] c50oksfOTzqC6Myb0kSkRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.751 [XNIO-1 task-1] c50oksfOTzqC6Myb0kSkRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.752 [XNIO-1 task-1] c50oksfOTzqC6Myb0kSkRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.752 [XNIO-1 task-1] c50oksfOTzqC6Myb0kSkRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.752 [XNIO-1 task-1] c50oksfOTzqC6Myb0kSkRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.768 [XNIO-1 task-1] BcXJtFXKQsK81s3dosijag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.768 [XNIO-1 task-1] BcXJtFXKQsK81s3dosijag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.768 [XNIO-1 task-1] BcXJtFXKQsK81s3dosijag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.771 [XNIO-1 task-1] BcXJtFXKQsK81s3dosijag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.780 [XNIO-1 task-1] DIeCE6h6SNmNI493VAG3Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.781 [XNIO-1 task-1] DIeCE6h6SNmNI493VAG3Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.781 [XNIO-1 task-1] DIeCE6h6SNmNI493VAG3Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.781 [XNIO-1 task-1] DIeCE6h6SNmNI493VAG3Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.782 [XNIO-1 task-1] DIeCE6h6SNmNI493VAG3Fw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.796 [XNIO-1 task-1] F7kHcqtaTmu4wwTJ9O-hng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.797 [XNIO-1 task-1] F7kHcqtaTmu4wwTJ9O-hng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.797 [XNIO-1 task-1] F7kHcqtaTmu4wwTJ9O-hng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.797 [XNIO-1 task-1] F7kHcqtaTmu4wwTJ9O-hng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.797 [XNIO-1 task-1] F7kHcqtaTmu4wwTJ9O-hng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.803 [XNIO-1 task-1] q_f0Yz6VTMihhIHk7xqcXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259, base path is set to: null +19:00:46.803 [XNIO-1 task-1] q_f0Yz6VTMihhIHk7xqcXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.803 [XNIO-1 task-1] q_f0Yz6VTMihhIHk7xqcXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.804 [XNIO-1 task-1] q_f0Yz6VTMihhIHk7xqcXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259, base path is set to: null +19:00:46.804 [XNIO-1 task-1] q_f0Yz6VTMihhIHk7xqcXA DEBUG com.networknt.schema.TypeValidator debug - validate( "858bbb85-daa4-4c15-9afc-110754070259", "858bbb85-daa4-4c15-9afc-110754070259", refreshToken) +19:00:46.811 [XNIO-1 task-1] c5QtsviDRMmLJvunWKygEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.811 [XNIO-1 task-1] c5QtsviDRMmLJvunWKygEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.811 [XNIO-1 task-1] c5QtsviDRMmLJvunWKygEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.812 [XNIO-1 task-1] c5QtsviDRMmLJvunWKygEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232, base path is set to: null +19:00:46.812 [XNIO-1 task-1] c5QtsviDRMmLJvunWKygEw DEBUG com.networknt.schema.TypeValidator debug - validate( "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", "f15ffc3b-bb1b-42f7-9b4a-c85d178a1232", refreshToken) +19:00:46.812 [XNIO-1 task-1] c5QtsviDRMmLJvunWKygEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 is not found.","severity":"ERROR"} +19:00:46.816 [XNIO-1 task-1] B_YNCpJ0QbSkhcAMcqEtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259 +19:00:46.816 [XNIO-1 task-1] B_YNCpJ0QbSkhcAMcqEtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.817 [XNIO-1 task-1] B_YNCpJ0QbSkhcAMcqEtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.817 [XNIO-1 task-1] B_YNCpJ0QbSkhcAMcqEtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259 +19:00:46.817 [XNIO-1 task-1] B_YNCpJ0QbSkhcAMcqEtxw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 858bbb85-daa4-4c15-9afc-110754070259 +19:00:46.823 [XNIO-1 task-1] DQTUgdjSTnK_0rnCSX68CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.824 [XNIO-1 task-1] DQTUgdjSTnK_0rnCSX68CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.824 [XNIO-1 task-1] DQTUgdjSTnK_0rnCSX68CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.824 [XNIO-1 task-1] DQTUgdjSTnK_0rnCSX68CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.824 [XNIO-1 task-1] DQTUgdjSTnK_0rnCSX68CQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.825 [XNIO-1 task-1] DQTUgdjSTnK_0rnCSX68CQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:46.830 [XNIO-1 task-1] YNqrbvAgRzen4qqghC-wdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.830 [XNIO-1 task-1] YNqrbvAgRzen4qqghC-wdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.830 [XNIO-1 task-1] YNqrbvAgRzen4qqghC-wdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.830 [XNIO-1 task-1] YNqrbvAgRzen4qqghC-wdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.831 [XNIO-1 task-1] YNqrbvAgRzen4qqghC-wdg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.836 [XNIO-1 task-1] 9K8TKh1UR5a9gMmjKihRCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.837 [XNIO-1 task-1] 9K8TKh1UR5a9gMmjKihRCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.837 [XNIO-1 task-1] 9K8TKh1UR5a9gMmjKihRCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.838 [XNIO-1 task-1] 9K8TKh1UR5a9gMmjKihRCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.839 [XNIO-1 task-1] 9K8TKh1UR5a9gMmjKihRCg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.848 [XNIO-1 task-1] NYQawSwVSFCwafH0zmgDrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.848 [XNIO-1 task-1] NYQawSwVSFCwafH0zmgDrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.849 [XNIO-1 task-1] NYQawSwVSFCwafH0zmgDrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.849 [XNIO-1 task-1] NYQawSwVSFCwafH0zmgDrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.853 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a11cbdb +19:00:46.854 [XNIO-1 task-1] tWrPtSgrShGfvuA4T6lAhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.854 [XNIO-1 task-1] tWrPtSgrShGfvuA4T6lAhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.854 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a11cbdb +19:00:46.854 [XNIO-1 task-1] tWrPtSgrShGfvuA4T6lAhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.855 [XNIO-1 task-1] tWrPtSgrShGfvuA4T6lAhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.866 [XNIO-1 task-1] V-Kk8snWR4St43x2MLqmQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/386180e7-1d6a-4d17-8f51-e802a802336a, base path is set to: null +19:00:46.866 [XNIO-1 task-1] V-Kk8snWR4St43x2MLqmQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.867 [XNIO-1 task-1] V-Kk8snWR4St43x2MLqmQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.867 [XNIO-1 task-1] V-Kk8snWR4St43x2MLqmQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/386180e7-1d6a-4d17-8f51-e802a802336a, base path is set to: null +19:00:46.868 [XNIO-1 task-1] V-Kk8snWR4St43x2MLqmQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "386180e7-1d6a-4d17-8f51-e802a802336a", "386180e7-1d6a-4d17-8f51-e802a802336a", refreshToken) +19:00:46.869 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:386180e7-1d6a-4d17-8f51-e802a802336a +19:00:46.874 [XNIO-1 task-1] kPd7Rb7pT-iMJMvJNEi8jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.875 [XNIO-1 task-1] kPd7Rb7pT-iMJMvJNEi8jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.875 [XNIO-1 task-1] kPd7Rb7pT-iMJMvJNEi8jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.875 [XNIO-1 task-1] kPd7Rb7pT-iMJMvJNEi8jA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.875 [XNIO-1 task-1] kPd7Rb7pT-iMJMvJNEi8jA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.888 [XNIO-1 task-1] 8jfClO2VTR-oAWt2g4mq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.888 [XNIO-1 task-1] 8jfClO2VTR-oAWt2g4mq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.888 [XNIO-1 task-1] 8jfClO2VTR-oAWt2g4mq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.888 [XNIO-1 task-1] 8jfClO2VTR-oAWt2g4mq7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.889 [XNIO-1 task-1] 8jfClO2VTR-oAWt2g4mq7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.892 [XNIO-1 task-1] VIu1xKKNR6qrSvKXgZht8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.893 [XNIO-1 task-1] VIu1xKKNR6qrSvKXgZht8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.893 [XNIO-1 task-1] VIu1xKKNR6qrSvKXgZht8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.893 [XNIO-1 task-1] VIu1xKKNR6qrSvKXgZht8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.893 [XNIO-1 task-1] VIu1xKKNR6qrSvKXgZht8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:46.903 [XNIO-1 task-1] 560GShm7RBikSaDrW0sADQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.904 [XNIO-1 task-1] 560GShm7RBikSaDrW0sADQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.904 [XNIO-1 task-1] 560GShm7RBikSaDrW0sADQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.904 [XNIO-1 task-1] 560GShm7RBikSaDrW0sADQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.904 [XNIO-1 task-1] 560GShm7RBikSaDrW0sADQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.912 [XNIO-1 task-1] f5mDXGRMQKGiGhJCs4gL6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.912 [XNIO-1 task-1] f5mDXGRMQKGiGhJCs4gL6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.912 [XNIO-1 task-1] f5mDXGRMQKGiGhJCs4gL6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:46.912 [XNIO-1 task-1] f5mDXGRMQKGiGhJCs4gL6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.913 [XNIO-1 task-1] f5mDXGRMQKGiGhJCs4gL6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.916 [XNIO-1 task-1] 29Bq7TyCSmC86956NwJ-rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.917 [XNIO-1 task-1] 29Bq7TyCSmC86956NwJ-rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.917 [XNIO-1 task-1] 29Bq7TyCSmC86956NwJ-rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.917 [XNIO-1 task-1] 29Bq7TyCSmC86956NwJ-rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.917 [XNIO-1 task-1] 29Bq7TyCSmC86956NwJ-rw DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:46.928 [XNIO-1 task-1] skQLTkGtRwKy-tMArGQyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.929 [XNIO-1 task-1] skQLTkGtRwKy-tMArGQyTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.929 [XNIO-1 task-1] skQLTkGtRwKy-tMArGQyTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.929 [XNIO-1 task-1] skQLTkGtRwKy-tMArGQyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.929 [XNIO-1 task-1] skQLTkGtRwKy-tMArGQyTg DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:46.935 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:703a7bd2-3a38-4a42-97e5-44f64361a8fe +19:00:46.940 [XNIO-1 task-1] q2rvx7J4SoaaWVutfKdC1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.940 [XNIO-1 task-1] q2rvx7J4SoaaWVutfKdC1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.940 [XNIO-1 task-1] q2rvx7J4SoaaWVutfKdC1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:46.941 [XNIO-1 task-1] q2rvx7J4SoaaWVutfKdC1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.941 [XNIO-1 task-1] q2rvx7J4SoaaWVutfKdC1g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:46.952 [XNIO-1 task-1] uWiOdaeMSq20wS8miJneTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.952 [XNIO-1 task-1] uWiOdaeMSq20wS8miJneTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.952 [XNIO-1 task-1] uWiOdaeMSq20wS8miJneTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.953 [XNIO-1 task-1] uWiOdaeMSq20wS8miJneTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.964 [XNIO-1 task-1] fHI0KwsjQF68yWTiF1dTqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259, base path is set to: null +19:00:46.965 [XNIO-1 task-1] fHI0KwsjQF68yWTiF1dTqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.965 [XNIO-1 task-1] fHI0KwsjQF68yWTiF1dTqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.965 [XNIO-1 task-1] fHI0KwsjQF68yWTiF1dTqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259, base path is set to: null +19:00:46.965 [XNIO-1 task-1] fHI0KwsjQF68yWTiF1dTqg DEBUG com.networknt.schema.TypeValidator debug - validate( "858bbb85-daa4-4c15-9afc-110754070259", "858bbb85-daa4-4c15-9afc-110754070259", refreshToken) +19:00:46.974 [XNIO-1 task-1] PwPyHobPTJSQpYdFVsdueg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.975 [XNIO-1 task-1] PwPyHobPTJSQpYdFVsdueg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.975 [XNIO-1 task-1] PwPyHobPTJSQpYdFVsdueg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.975 [XNIO-1 task-1] PwPyHobPTJSQpYdFVsdueg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:46.975 [XNIO-1 task-1] PwPyHobPTJSQpYdFVsdueg DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:46.975 [XNIO-1 task-1] PwPyHobPTJSQpYdFVsdueg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 is not found.","severity":"ERROR"} +19:00:46.978 [XNIO-1 task-1] 5uE2q_IcQzqyUONbwDjJrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.979 [XNIO-1 task-1] 5uE2q_IcQzqyUONbwDjJrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.979 [XNIO-1 task-1] 5uE2q_IcQzqyUONbwDjJrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:46.979 [XNIO-1 task-1] 5uE2q_IcQzqyUONbwDjJrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.988 [XNIO-1 task-1] TGNSuL7FSQWIrC76KyJmtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259, base path is set to: null +19:00:46.988 [XNIO-1 task-1] TGNSuL7FSQWIrC76KyJmtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.988 [XNIO-1 task-1] TGNSuL7FSQWIrC76KyJmtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.989 [XNIO-1 task-1] TGNSuL7FSQWIrC76KyJmtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/858bbb85-daa4-4c15-9afc-110754070259, base path is set to: null +19:00:46.989 [XNIO-1 task-1] TGNSuL7FSQWIrC76KyJmtw DEBUG com.networknt.schema.TypeValidator debug - validate( "858bbb85-daa4-4c15-9afc-110754070259", "858bbb85-daa4-4c15-9afc-110754070259", refreshToken) +19:00:46.993 [XNIO-1 task-1] LFB-tURkS92lv7ArbLgv-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.993 [XNIO-1 task-1] LFB-tURkS92lv7ArbLgv-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:46.993 [XNIO-1 task-1] LFB-tURkS92lv7ArbLgv-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:46.993 [XNIO-1 task-1] LFB-tURkS92lv7ArbLgv-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1, base path is set to: null +19:00:46.993 [XNIO-1 task-1] LFB-tURkS92lv7ArbLgv-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "88b46a58-3f68-45c3-8a7e-cb88c859edf1", "88b46a58-3f68-45c3-8a7e-cb88c859edf1", refreshToken) +19:00:46.994 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:46.997 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e047dc8 +19:00:47.001 [XNIO-1 task-1] Pc4XOmx7QwONE7B5nK769g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.001 [XNIO-1 task-1] Pc4XOmx7QwONE7B5nK769g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.001 [XNIO-1 task-1] Pc4XOmx7QwONE7B5nK769g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.001 [XNIO-1 task-1] Pc4XOmx7QwONE7B5nK769g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.002 [XNIO-1 task-1] Pc4XOmx7QwONE7B5nK769g DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:47.003 [XNIO-1 task-1] Pc4XOmx7QwONE7B5nK769g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 is not found.","severity":"ERROR"} +19:00:47.008 [XNIO-1 task-1] qjxNUO4ES5KcFZDm-IMYvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.008 [XNIO-1 task-1] qjxNUO4ES5KcFZDm-IMYvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.009 [XNIO-1 task-1] qjxNUO4ES5KcFZDm-IMYvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.009 [XNIO-1 task-1] qjxNUO4ES5KcFZDm-IMYvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.017 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e047dc8 +19:00:47.024 [XNIO-1 task-1] leO6qyBxQRu7gI6HTfVXTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87, base path is set to: null +19:00:47.025 [XNIO-1 task-1] leO6qyBxQRu7gI6HTfVXTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.025 [XNIO-1 task-1] leO6qyBxQRu7gI6HTfVXTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.025 [XNIO-1 task-1] leO6qyBxQRu7gI6HTfVXTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87, base path is set to: null +19:00:47.025 [XNIO-1 task-1] leO6qyBxQRu7gI6HTfVXTw DEBUG com.networknt.schema.TypeValidator debug - validate( "0bed77b0-157d-4c33-b536-fbba8f0d4c87", "0bed77b0-157d-4c33-b536-fbba8f0d4c87", refreshToken) +19:00:47.030 [XNIO-1 task-1] 5J_n0YKkRDqZQO_pvxDifw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8, base path is set to: null +19:00:47.030 [XNIO-1 task-1] 5J_n0YKkRDqZQO_pvxDifw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.030 [XNIO-1 task-1] 5J_n0YKkRDqZQO_pvxDifw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.030 [XNIO-1 task-1] 5J_n0YKkRDqZQO_pvxDifw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8, base path is set to: null +19:00:47.031 [XNIO-1 task-1] 5J_n0YKkRDqZQO_pvxDifw DEBUG com.networknt.schema.TypeValidator debug - validate( "fea1d360-d5dd-4d47-bd54-fef63a8d47f8", "fea1d360-d5dd-4d47-bd54-fef63a8d47f8", refreshToken) +19:00:47.042 [XNIO-1 task-1] A8K1PdZ4Sa-CD7G4Stk29Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.042 [XNIO-1 task-1] A8K1PdZ4Sa-CD7G4Stk29Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.042 [XNIO-1 task-1] A8K1PdZ4Sa-CD7G4Stk29Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.043 [XNIO-1 task-1] A8K1PdZ4Sa-CD7G4Stk29Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.043 [XNIO-1 task-1] A8K1PdZ4Sa-CD7G4Stk29Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.051 [XNIO-1 task-1] ZxdlBaRCRZaNtCGDZ9ZXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87 +19:00:47.051 [XNIO-1 task-1] ZxdlBaRCRZaNtCGDZ9ZXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.051 [XNIO-1 task-1] ZxdlBaRCRZaNtCGDZ9ZXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.052 [XNIO-1 task-1] ZxdlBaRCRZaNtCGDZ9ZXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87 +19:00:47.052 [XNIO-1 task-1] ZxdlBaRCRZaNtCGDZ9ZXQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0bed77b0-157d-4c33-b536-fbba8f0d4c87 +19:00:47.061 [XNIO-1 task-1] Mp8EuZwrTLSeXRxijQlpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8 +19:00:47.061 [XNIO-1 task-1] Mp8EuZwrTLSeXRxijQlpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.061 [XNIO-1 task-1] Mp8EuZwrTLSeXRxijQlpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.061 [XNIO-1 task-1] Mp8EuZwrTLSeXRxijQlpRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8 +19:00:47.062 [XNIO-1 task-1] Mp8EuZwrTLSeXRxijQlpRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fea1d360-d5dd-4d47-bd54-fef63a8d47f8 +19:00:47.068 [XNIO-1 task-1] y7oS7XRLQousyhw6xRymsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.068 [XNIO-1 task-1] y7oS7XRLQousyhw6xRymsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.068 [XNIO-1 task-1] y7oS7XRLQousyhw6xRymsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.070 [XNIO-1 task-1] y7oS7XRLQousyhw6xRymsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.071 [XNIO-1 task-1] y7oS7XRLQousyhw6xRymsg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.079 [XNIO-1 task-1] fh37kY1EQxyLrR0Bh0brcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87 +19:00:47.079 [XNIO-1 task-1] fh37kY1EQxyLrR0Bh0brcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.079 [XNIO-1 task-1] fh37kY1EQxyLrR0Bh0brcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.079 [XNIO-1 task-1] fh37kY1EQxyLrR0Bh0brcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87 +19:00:47.080 [XNIO-1 task-1] fh37kY1EQxyLrR0Bh0brcg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0bed77b0-157d-4c33-b536-fbba8f0d4c87 +19:00:47.084 [XNIO-1 task-1] h3gLAefiRM-tY5_0YVNF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.084 [XNIO-1 task-1] h3gLAefiRM-tY5_0YVNF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.084 [XNIO-1 task-1] h3gLAefiRM-tY5_0YVNF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.085 [XNIO-1 task-1] h3gLAefiRM-tY5_0YVNF4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.092 [XNIO-1 task-1] 3Y4B5DtgS3Wz31cwBos1Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8, base path is set to: null +19:00:47.092 [XNIO-1 task-1] 3Y4B5DtgS3Wz31cwBos1Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.092 [XNIO-1 task-1] 3Y4B5DtgS3Wz31cwBos1Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.092 [XNIO-1 task-1] 3Y4B5DtgS3Wz31cwBos1Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8, base path is set to: null +19:00:47.093 [XNIO-1 task-1] 3Y4B5DtgS3Wz31cwBos1Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "fea1d360-d5dd-4d47-bd54-fef63a8d47f8", "fea1d360-d5dd-4d47-bd54-fef63a8d47f8", refreshToken) +19:00:47.093 [XNIO-1 task-1] 3Y4B5DtgS3Wz31cwBos1Mw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fea1d360-d5dd-4d47-bd54-fef63a8d47f8 is not found.","severity":"ERROR"} +19:00:47.097 [XNIO-1 task-1] oDDDFoY7SOShykqCOshAoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.097 [XNIO-1 task-1] oDDDFoY7SOShykqCOshAoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:47.097 [XNIO-1 task-1] oDDDFoY7SOShykqCOshAoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.097 [XNIO-1 task-1] oDDDFoY7SOShykqCOshAoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +19:00:47.098 [XNIO-1 task-1] oDDDFoY7SOShykqCOshAoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.109 [XNIO-1 task-1] f8SnRfqgSwa0IeMU4He7zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:47.110 [XNIO-1 task-1] f8SnRfqgSwa0IeMU4He7zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.110 [XNIO-1 task-1] f8SnRfqgSwa0IeMU4He7zQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.110 [XNIO-1 task-1] f8SnRfqgSwa0IeMU4He7zQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.114 [hz._hzInstance_1_dev.partition-operation.thread-15] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:47.119 [XNIO-1 task-1] -tEgu3w0RSyp-qX-WH9jyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87, base path is set to: null +19:00:47.121 [XNIO-1 task-1] -tEgu3w0RSyp-qX-WH9jyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.123 [XNIO-1 task-1] -tEgu3w0RSyp-qX-WH9jyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.123 [XNIO-1 task-1] -tEgu3w0RSyp-qX-WH9jyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0bed77b0-157d-4c33-b536-fbba8f0d4c87, base path is set to: null +19:00:47.124 [XNIO-1 task-1] -tEgu3w0RSyp-qX-WH9jyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0bed77b0-157d-4c33-b536-fbba8f0d4c87", "0bed77b0-157d-4c33-b536-fbba8f0d4c87", refreshToken) +19:00:47.128 [XNIO-1 task-1] c5Y5qEvpSeqrhVGcwKXWXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8, base path is set to: null +19:00:47.129 [XNIO-1 task-1] c5Y5qEvpSeqrhVGcwKXWXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.133 [XNIO-1 task-1] c5Y5qEvpSeqrhVGcwKXWXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.133 [XNIO-1 task-1] c5Y5qEvpSeqrhVGcwKXWXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8, base path is set to: null +19:00:47.134 [XNIO-1 task-1] c5Y5qEvpSeqrhVGcwKXWXg DEBUG com.networknt.schema.TypeValidator debug - validate( "fea1d360-d5dd-4d47-bd54-fef63a8d47f8", "fea1d360-d5dd-4d47-bd54-fef63a8d47f8", refreshToken) +19:00:47.134 [XNIO-1 task-1] c5Y5qEvpSeqrhVGcwKXWXg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fea1d360-d5dd-4d47-bd54-fef63a8d47f8 is not found.","severity":"ERROR"} +19:00:47.138 [XNIO-1 task-1] zEgXq73xQj2gE24Vk1IW2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8 +19:00:47.139 [XNIO-1 task-1] zEgXq73xQj2gE24Vk1IW2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.139 [XNIO-1 task-1] zEgXq73xQj2gE24Vk1IW2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.139 [XNIO-1 task-1] zEgXq73xQj2gE24Vk1IW2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fea1d360-d5dd-4d47-bd54-fef63a8d47f8 +19:00:47.139 [XNIO-1 task-1] zEgXq73xQj2gE24Vk1IW2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fea1d360-d5dd-4d47-bd54-fef63a8d47f8 +19:00:47.145 [XNIO-1 task-1] JBXlXCftRISlpGzr4ezXHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.145 [XNIO-1 task-1] JBXlXCftRISlpGzr4ezXHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.145 [XNIO-1 task-1] JBXlXCftRISlpGzr4ezXHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.145 [XNIO-1 task-1] JBXlXCftRISlpGzr4ezXHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.146 [XNIO-1 task-1] JBXlXCftRISlpGzr4ezXHA DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:47.146 [XNIO-1 task-1] JBXlXCftRISlpGzr4ezXHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 is not found.","severity":"ERROR"} +19:00:47.171 [XNIO-1 task-1] fhYCJJB8SoqdP08lbAUcbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.171 [XNIO-1 task-1] fhYCJJB8SoqdP08lbAUcbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.171 [XNIO-1 task-1] fhYCJJB8SoqdP08lbAUcbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.172 [XNIO-1 task-1] fhYCJJB8SoqdP08lbAUcbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.181 [XNIO-1 task-1] xZtonm0cTeKgmp3HwuQQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.181 [XNIO-1 task-1] xZtonm0cTeKgmp3HwuQQZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.181 [XNIO-1 task-1] xZtonm0cTeKgmp3HwuQQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.183 [XNIO-1 task-1] xZtonm0cTeKgmp3HwuQQZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.183 [XNIO-1 task-1] xZtonm0cTeKgmp3HwuQQZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.192 [XNIO-1 task-1] mA_aODwOSsKoOhJz2NiJRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.192 [XNIO-1 task-1] mA_aODwOSsKoOhJz2NiJRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.192 [XNIO-1 task-1] mA_aODwOSsKoOhJz2NiJRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.192 [XNIO-1 task-1] mA_aODwOSsKoOhJz2NiJRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.193 [XNIO-1 task-1] mA_aODwOSsKoOhJz2NiJRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.204 [XNIO-1 task-1] 3HXZh02XRBW7gB4EGqbyOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.205 [XNIO-1 task-1] 3HXZh02XRBW7gB4EGqbyOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.205 [XNIO-1 task-1] 3HXZh02XRBW7gB4EGqbyOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.205 [XNIO-1 task-1] 3HXZh02XRBW7gB4EGqbyOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.205 [XNIO-1 task-1] 3HXZh02XRBW7gB4EGqbyOg DEBUG com.networknt.schema.TypeValidator debug - validate( "01857082-0508-46ee-a733-20986b81a349", "01857082-0508-46ee-a733-20986b81a349", refreshToken) +19:00:47.213 [XNIO-1 task-1] dq7OUTtCQr652SldpCHOkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.214 [XNIO-1 task-1] dq7OUTtCQr652SldpCHOkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.214 [XNIO-1 task-1] dq7OUTtCQr652SldpCHOkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.214 [XNIO-1 task-1] dq7OUTtCQr652SldpCHOkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.215 [XNIO-1 task-1] dq7OUTtCQr652SldpCHOkw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.229 [XNIO-1 task-1] yqvseixqTr2uXCAe9Qp13w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:47.230 [XNIO-1 task-1] yqvseixqTr2uXCAe9Qp13w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.230 [XNIO-1 task-1] yqvseixqTr2uXCAe9Qp13w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.230 [XNIO-1 task-1] yqvseixqTr2uXCAe9Qp13w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:47.230 [XNIO-1 task-1] yqvseixqTr2uXCAe9Qp13w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:47.237 [XNIO-1 task-1] yqvseixqTr2uXCAe9Qp13w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} +19:00:47.253 [XNIO-1 task-1] 0JH8hzg_QvKudUPBzA6wUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:47.253 [XNIO-1 task-1] 0JH8hzg_QvKudUPBzA6wUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.253 [XNIO-1 task-1] 0JH8hzg_QvKudUPBzA6wUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.254 [XNIO-1 task-1] 0JH8hzg_QvKudUPBzA6wUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:47.254 [XNIO-1 task-1] 0JH8hzg_QvKudUPBzA6wUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:47.255 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:88b46a58-3f68-45c3-8a7e-cb88c859edf1 +19:00:47.264 [XNIO-1 task-1] _4gBIRyUTf6CemXllzJD6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.265 [XNIO-1 task-1] _4gBIRyUTf6CemXllzJD6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.265 [XNIO-1 task-1] _4gBIRyUTf6CemXllzJD6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.266 [XNIO-1 task-1] _4gBIRyUTf6CemXllzJD6w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.266 [XNIO-1 task-1] _4gBIRyUTf6CemXllzJD6w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.274 [XNIO-1 task-1] RteuHmX6SryhD4wpBQmZ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.274 [XNIO-1 task-1] RteuHmX6SryhD4wpBQmZ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.275 [XNIO-1 task-1] RteuHmX6SryhD4wpBQmZ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.275 [XNIO-1 task-1] RteuHmX6SryhD4wpBQmZ-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.291 [XNIO-1 task-1] tG6Q0sT2TMaf_K54L6peJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.292 [XNIO-1 task-1] tG6Q0sT2TMaf_K54L6peJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.292 [XNIO-1 task-1] tG6Q0sT2TMaf_K54L6peJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.293 [XNIO-1 task-1] tG6Q0sT2TMaf_K54L6peJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.293 [XNIO-1 task-1] tG6Q0sT2TMaf_K54L6peJg DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:47.293 [XNIO-1 task-1] tG6Q0sT2TMaf_K54L6peJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 is not found.","severity":"ERROR"} +19:00:47.300 [XNIO-1 task-1] 3Byy-1nYTUe2hNON83EWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.300 [XNIO-1 task-1] 3Byy-1nYTUe2hNON83EWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.300 [XNIO-1 task-1] 3Byy-1nYTUe2hNON83EWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.300 [XNIO-1 task-1] 3Byy-1nYTUe2hNON83EWDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.301 [XNIO-1 task-1] 3Byy-1nYTUe2hNON83EWDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.306 [XNIO-1 task-1] pq823dPEQJy6fF8xsl5Pfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.307 [XNIO-1 task-1] pq823dPEQJy6fF8xsl5Pfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.307 [XNIO-1 task-1] pq823dPEQJy6fF8xsl5Pfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.307 [XNIO-1 task-1] pq823dPEQJy6fF8xsl5Pfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.307 [XNIO-1 task-1] pq823dPEQJy6fF8xsl5Pfw DEBUG com.networknt.schema.TypeValidator debug - validate( "01857082-0508-46ee-a733-20986b81a349", "01857082-0508-46ee-a733-20986b81a349", refreshToken) +19:00:47.313 [XNIO-1 task-1] Jzv6_T2tSd2kvY3zhxfeTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.313 [XNIO-1 task-1] Jzv6_T2tSd2kvY3zhxfeTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.314 [XNIO-1 task-1] Jzv6_T2tSd2kvY3zhxfeTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.314 [XNIO-1 task-1] Jzv6_T2tSd2kvY3zhxfeTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.314 [XNIO-1 task-1] Jzv6_T2tSd2kvY3zhxfeTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.341 [XNIO-1 task-1] YvdnEoi4Q8OxlbwX1mohoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.341 [XNIO-1 task-1] YvdnEoi4Q8OxlbwX1mohoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.341 [XNIO-1 task-1] YvdnEoi4Q8OxlbwX1mohoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.341 [XNIO-1 task-1] YvdnEoi4Q8OxlbwX1mohoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +19:00:47.342 [XNIO-1 task-1] YvdnEoi4Q8OxlbwX1mohoA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 +19:00:47.353 [XNIO-1 task-1] BAmzUdLLSsSovkC5vkdVVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +19:00:47.353 [XNIO-1 task-1] BAmzUdLLSsSovkC5vkdVVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.353 [XNIO-1 task-1] BAmzUdLLSsSovkC5vkdVVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.353 [XNIO-1 task-1] BAmzUdLLSsSovkC5vkdVVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:47.359 [XNIO-1 task-1] cbUmm4LLRvO8KA3HIqTfnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +19:00:47.359 [XNIO-1 task-1] cbUmm4LLRvO8KA3HIqTfnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.359 [XNIO-1 task-1] cbUmm4LLRvO8KA3HIqTfnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.359 [XNIO-1 task-1] cbUmm4LLRvO8KA3HIqTfnw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.367 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:366825f3-9f2d-4e9e-8b4e-35efbd34304c +19:00:47.369 [XNIO-1 task-1] 22kVbiGcQ224nVPgVHn8ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.369 [XNIO-1 task-1] 22kVbiGcQ224nVPgVHn8ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +19:00:47.369 [XNIO-1 task-1] 22kVbiGcQ224nVPgVHn8ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.369 [XNIO-1 task-1] 22kVbiGcQ224nVPgVHn8ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26, base path is set to: null +19:00:47.370 [XNIO-1 task-1] 22kVbiGcQ224nVPgVHn8ig DEBUG com.networknt.schema.TypeValidator debug - validate( "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", "9cb6ed81-03fa-4b9c-8e05-4870d16a1b26", refreshToken) +19:00:47.370 [XNIO-1 task-1] 22kVbiGcQ224nVPgVHn8ig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 is not found.","severity":"ERROR"} +19:00:47.374 [XNIO-1 task-1] 0H97Pvc3SomK2Zv4gZboBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.374 [XNIO-1 task-1] 0H97Pvc3SomK2Zv4gZboBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.374 [XNIO-1 task-1] 0H97Pvc3SomK2Zv4gZboBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.374 [XNIO-1 task-1] 0H97Pvc3SomK2Zv4gZboBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.375 [XNIO-1 task-1] 0H97Pvc3SomK2Zv4gZboBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:47.377 [XNIO-1 task-1] 0H97Pvc3SomK2Zv4gZboBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01857082-0508-46ee-a733-20986b81a349 is not found.","severity":"ERROR"} +19:00:47.380 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9439c00e-1e9e-406c-bd73-08f5610c0d4d +19:00:47.381 [XNIO-1 task-1] O5c1pfyXRNGxzL-L37BTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.381 [XNIO-1 task-1] O5c1pfyXRNGxzL-L37BTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.381 [XNIO-1 task-1] O5c1pfyXRNGxzL-L37BTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.381 [XNIO-1 task-1] O5c1pfyXRNGxzL-L37BTSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.381 [XNIO-1 task-1] O5c1pfyXRNGxzL-L37BTSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.401 [XNIO-1 task-1] 8F3uhzLrSym54WZsqSbN2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.402 [XNIO-1 task-1] 8F3uhzLrSym54WZsqSbN2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.402 [XNIO-1 task-1] 8F3uhzLrSym54WZsqSbN2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.403 [XNIO-1 task-1] 8F3uhzLrSym54WZsqSbN2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.403 [XNIO-1 task-1] 8F3uhzLrSym54WZsqSbN2w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.415 [XNIO-1 task-1] EK2A1WO_SbqSKdEMUl4igQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.415 [XNIO-1 task-1] EK2A1WO_SbqSKdEMUl4igQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.415 [XNIO-1 task-1] EK2A1WO_SbqSKdEMUl4igQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.415 [XNIO-1 task-1] EK2A1WO_SbqSKdEMUl4igQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.415 [XNIO-1 task-1] EK2A1WO_SbqSKdEMUl4igQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 +19:00:47.419 [XNIO-1 task-1] xUDc9QPIRemfkWDR0VV0sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.419 [XNIO-1 task-1] xUDc9QPIRemfkWDR0VV0sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.419 [XNIO-1 task-1] xUDc9QPIRemfkWDR0VV0sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.420 [XNIO-1 task-1] xUDc9QPIRemfkWDR0VV0sg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.420 [XNIO-1 task-1] xUDc9QPIRemfkWDR0VV0sg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.424 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d33bdc48 +19:00:47.430 [XNIO-1 task-1] idR6kDiFQSisszadhrneBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.430 [XNIO-1 task-1] idR6kDiFQSisszadhrneBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.430 [XNIO-1 task-1] idR6kDiFQSisszadhrneBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.430 [XNIO-1 task-1] idR6kDiFQSisszadhrneBw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.442 [XNIO-1 task-1] h02Gtb7xQ6CEGhFiqFdxtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.442 [XNIO-1 task-1] h02Gtb7xQ6CEGhFiqFdxtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.442 [XNIO-1 task-1] h02Gtb7xQ6CEGhFiqFdxtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.442 [XNIO-1 task-1] h02Gtb7xQ6CEGhFiqFdxtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.443 [XNIO-1 task-1] h02Gtb7xQ6CEGhFiqFdxtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.446 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.449 [XNIO-1 task-1] c_l73nH2QlSnLwR45PEZ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7295c7ef-4e3c-4e8f-996b-ca61aac3a478 +19:00:47.449 [XNIO-1 task-1] c_l73nH2QlSnLwR45PEZ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.449 [XNIO-1 task-1] c_l73nH2QlSnLwR45PEZ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.449 [XNIO-1 task-1] c_l73nH2QlSnLwR45PEZ8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7295c7ef-4e3c-4e8f-996b-ca61aac3a478 +19:00:47.449 [XNIO-1 task-1] c_l73nH2QlSnLwR45PEZ8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7295c7ef-4e3c-4e8f-996b-ca61aac3a478 +19:00:47.454 [XNIO-1 task-1] 17GaLq6rQB66ydoYFYxaNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7295c7ef-4e3c-4e8f-996b-ca61aac3a478 +19:00:47.454 [XNIO-1 task-1] 17GaLq6rQB66ydoYFYxaNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.454 [XNIO-1 task-1] 17GaLq6rQB66ydoYFYxaNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.456 [XNIO-1 task-1] 17GaLq6rQB66ydoYFYxaNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7295c7ef-4e3c-4e8f-996b-ca61aac3a478 +19:00:47.456 [XNIO-1 task-1] 17GaLq6rQB66ydoYFYxaNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7295c7ef-4e3c-4e8f-996b-ca61aac3a478 +19:00:47.462 [XNIO-1 task-1] dQ4tcZQ9RS-qS7ALp4BFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.462 [XNIO-1 task-1] dQ4tcZQ9RS-qS7ALp4BFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.462 [XNIO-1 task-1] dQ4tcZQ9RS-qS7ALp4BFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.462 [XNIO-1 task-1] dQ4tcZQ9RS-qS7ALp4BFYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.463 [XNIO-1 task-1] dQ4tcZQ9RS-qS7ALp4BFYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.467 [XNIO-1 task-1] IwRMHXp3SFCBqRvrkYh2gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.467 [XNIO-1 task-1] IwRMHXp3SFCBqRvrkYh2gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.467 [XNIO-1 task-1] IwRMHXp3SFCBqRvrkYh2gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.468 [XNIO-1 task-1] IwRMHXp3SFCBqRvrkYh2gg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.469 [XNIO-1 task-1] IwRMHXp3SFCBqRvrkYh2gg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.501 [XNIO-1 task-1] mKTlUjOwRlCZmJmf-Lbz-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.501 [XNIO-1 task-1] mKTlUjOwRlCZmJmf-Lbz-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.501 [XNIO-1 task-1] mKTlUjOwRlCZmJmf-Lbz-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.502 [XNIO-1 task-1] mKTlUjOwRlCZmJmf-Lbz-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.502 [XNIO-1 task-1] mKTlUjOwRlCZmJmf-Lbz-A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:47.506 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:76cdb8dd +19:00:47.507 [XNIO-1 task-1] cW3xWUoiQhqU1zOT2yMolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.507 [XNIO-1 task-1] cW3xWUoiQhqU1zOT2yMolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.507 [XNIO-1 task-1] cW3xWUoiQhqU1zOT2yMolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.508 [XNIO-1 task-1] cW3xWUoiQhqU1zOT2yMolg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.509 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:76cdb8dd +19:00:47.516 [XNIO-1 task-1] z7EpTJvgSOmXl3xVIKHyGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609, base path is set to: null +19:00:47.516 [XNIO-1 task-1] z7EpTJvgSOmXl3xVIKHyGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.516 [XNIO-1 task-1] z7EpTJvgSOmXl3xVIKHyGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.516 [XNIO-1 task-1] z7EpTJvgSOmXl3xVIKHyGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609, base path is set to: null +19:00:47.516 [XNIO-1 task-1] z7EpTJvgSOmXl3xVIKHyGg DEBUG com.networknt.schema.TypeValidator debug - validate( "70eeedc2-a709-4194-8033-50cba8838609", "70eeedc2-a709-4194-8033-50cba8838609", refreshToken) +19:00:47.531 [XNIO-1 task-1] SU8LpX_eQCqZWZy0vPj5SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7cb533d-607d-4ba2-902b-743cb251c42f, base path is set to: null +19:00:47.533 [XNIO-1 task-1] SU8LpX_eQCqZWZy0vPj5SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.533 [XNIO-1 task-1] SU8LpX_eQCqZWZy0vPj5SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.533 [XNIO-1 task-1] SU8LpX_eQCqZWZy0vPj5SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7cb533d-607d-4ba2-902b-743cb251c42f, base path is set to: null +19:00:47.533 [XNIO-1 task-1] SU8LpX_eQCqZWZy0vPj5SA DEBUG com.networknt.schema.TypeValidator debug - validate( "b7cb533d-607d-4ba2-902b-743cb251c42f", "b7cb533d-607d-4ba2-902b-743cb251c42f", refreshToken) +19:00:47.543 [XNIO-1 task-1] HLxqHEfuRoy2hcAdaokwtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609, base path is set to: null +19:00:47.543 [XNIO-1 task-1] HLxqHEfuRoy2hcAdaokwtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.543 [XNIO-1 task-1] HLxqHEfuRoy2hcAdaokwtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.543 [XNIO-1 task-1] HLxqHEfuRoy2hcAdaokwtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609, base path is set to: null +19:00:47.544 [XNIO-1 task-1] HLxqHEfuRoy2hcAdaokwtA DEBUG com.networknt.schema.TypeValidator debug - validate( "70eeedc2-a709-4194-8033-50cba8838609", "70eeedc2-a709-4194-8033-50cba8838609", refreshToken) +19:00:47.547 [XNIO-1 task-1] HLxqHEfuRoy2hcAdaokwtA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 70eeedc2-a709-4194-8033-50cba8838609 is not found.","severity":"ERROR"} +19:00:47.551 [XNIO-1 task-1] 8JTXmzlEQ6SsmgpZL7w9iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.551 [XNIO-1 task-1] 8JTXmzlEQ6SsmgpZL7w9iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.551 [XNIO-1 task-1] 8JTXmzlEQ6SsmgpZL7w9iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.552 [XNIO-1 task-1] 8JTXmzlEQ6SsmgpZL7w9iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.564 [XNIO-1 task-1] 9B7GbocTSlOwwqYr47gd4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7cb533d-607d-4ba2-902b-743cb251c42f, base path is set to: null +19:00:47.564 [XNIO-1 task-1] 9B7GbocTSlOwwqYr47gd4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.564 [XNIO-1 task-1] 9B7GbocTSlOwwqYr47gd4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.564 [XNIO-1 task-1] 9B7GbocTSlOwwqYr47gd4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b7cb533d-607d-4ba2-902b-743cb251c42f, base path is set to: null +19:00:47.564 [XNIO-1 task-1] 9B7GbocTSlOwwqYr47gd4A DEBUG com.networknt.schema.TypeValidator debug - validate( "b7cb533d-607d-4ba2-902b-743cb251c42f", "b7cb533d-607d-4ba2-902b-743cb251c42f", refreshToken) +19:00:47.574 [XNIO-1 task-1] MJFRh3djRfSQUTEZOur8kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.574 [XNIO-1 task-1] MJFRh3djRfSQUTEZOur8kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.574 [XNIO-1 task-1] MJFRh3djRfSQUTEZOur8kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.574 [XNIO-1 task-1] MJFRh3djRfSQUTEZOur8kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.575 [XNIO-1 task-1] MJFRh3djRfSQUTEZOur8kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "01857082-0508-46ee-a733-20986b81a349", "01857082-0508-46ee-a733-20986b81a349", refreshToken) +19:00:47.575 [XNIO-1 task-1] MJFRh3djRfSQUTEZOur8kQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01857082-0508-46ee-a733-20986b81a349 is not found.","severity":"ERROR"} +19:00:47.582 [XNIO-1 task-1] OWFp-fkuRD-h53AyNaN1zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:47.582 [XNIO-1 task-1] OWFp-fkuRD-h53AyNaN1zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.582 [XNIO-1 task-1] OWFp-fkuRD-h53AyNaN1zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.582 [XNIO-1 task-1] OWFp-fkuRD-h53AyNaN1zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:47.583 [XNIO-1 task-1] OWFp-fkuRD-h53AyNaN1zA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:47.588 [XNIO-1 task-1] zYyIdLj9Txe4TcxolnMorw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.588 [XNIO-1 task-1] zYyIdLj9Txe4TcxolnMorw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.588 [XNIO-1 task-1] zYyIdLj9Txe4TcxolnMorw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.590 [XNIO-1 task-1] zYyIdLj9Txe4TcxolnMorw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.591 [XNIO-1 task-1] zYyIdLj9Txe4TcxolnMorw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.602 [XNIO-1 task-1] mnFFXch9TO6l8v8_p2oZWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca, base path is set to: null +19:00:47.602 [XNIO-1 task-1] mnFFXch9TO6l8v8_p2oZWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.602 [XNIO-1 task-1] mnFFXch9TO6l8v8_p2oZWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.602 [XNIO-1 task-1] mnFFXch9TO6l8v8_p2oZWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca, base path is set to: null +19:00:47.602 [XNIO-1 task-1] mnFFXch9TO6l8v8_p2oZWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e3ab80a6-cffd-41bb-8beb-a454bd56c7ca", "e3ab80a6-cffd-41bb-8beb-a454bd56c7ca", refreshToken) +19:00:47.612 [XNIO-1 task-1] ENYne43PSciD4XMqFtYSjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.612 [XNIO-1 task-1] ENYne43PSciD4XMqFtYSjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.612 [XNIO-1 task-1] ENYne43PSciD4XMqFtYSjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.613 [XNIO-1 task-1] ENYne43PSciD4XMqFtYSjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.613 [XNIO-1 task-1] ENYne43PSciD4XMqFtYSjg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.620 [XNIO-1 task-1] JZ90Nz5VSw2__hmYAxCvmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.621 [XNIO-1 task-1] JZ90Nz5VSw2__hmYAxCvmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.621 [XNIO-1 task-1] JZ90Nz5VSw2__hmYAxCvmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.621 [XNIO-1 task-1] JZ90Nz5VSw2__hmYAxCvmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.629 [XNIO-1 task-1] 07MVxmhYRIiUKkk7H5mcdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.630 [XNIO-1 task-1] 07MVxmhYRIiUKkk7H5mcdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.630 [XNIO-1 task-1] 07MVxmhYRIiUKkk7H5mcdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.631 [XNIO-1 task-1] 07MVxmhYRIiUKkk7H5mcdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.631 [XNIO-1 task-1] 07MVxmhYRIiUKkk7H5mcdg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.643 [XNIO-1 task-1] 0YCGeCnxRPebXjFvsA8f-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca, base path is set to: null +19:00:47.643 [XNIO-1 task-1] 0YCGeCnxRPebXjFvsA8f-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.643 [XNIO-1 task-1] 0YCGeCnxRPebXjFvsA8f-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.644 [XNIO-1 task-1] 0YCGeCnxRPebXjFvsA8f-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca, base path is set to: null +19:00:47.644 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e881786 +19:00:47.644 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8e881786 +19:00:47.647 [XNIO-1 task-1] R2xnLLYdSxKNUbci096n5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca, base path is set to: null +19:00:47.647 [XNIO-1 task-1] R2xnLLYdSxKNUbci096n5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.647 [XNIO-1 task-1] R2xnLLYdSxKNUbci096n5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.648 [XNIO-1 task-1] R2xnLLYdSxKNUbci096n5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca, base path is set to: null +19:00:47.648 [XNIO-1 task-1] R2xnLLYdSxKNUbci096n5w DEBUG com.networknt.schema.TypeValidator debug - validate( "e3ab80a6-cffd-41bb-8beb-a454bd56c7ca", "e3ab80a6-cffd-41bb-8beb-a454bd56c7ca", refreshToken) +19:00:47.652 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:75eba60a-bf17-4652-8fc7-1ec4a632fc3b +19:00:47.665 [XNIO-1 task-1] zQtWzVk-T5GKc6ZJwhY3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.665 [XNIO-1 task-1] zQtWzVk-T5GKc6ZJwhY3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.666 [XNIO-1 task-1] zQtWzVk-T5GKc6ZJwhY3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.667 [XNIO-1 task-1] zQtWzVk-T5GKc6ZJwhY3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.667 [XNIO-1 task-1] zQtWzVk-T5GKc6ZJwhY3zg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.675 [XNIO-1 task-1] c6Gam3L1R4e_ONcPU6HMOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.675 [XNIO-1 task-1] c6Gam3L1R4e_ONcPU6HMOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.675 [XNIO-1 task-1] c6Gam3L1R4e_ONcPU6HMOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.675 [XNIO-1 task-1] c6Gam3L1R4e_ONcPU6HMOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.676 [XNIO-1 task-1] c6Gam3L1R4e_ONcPU6HMOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.703 [XNIO-1 task-1] SbN0z3-dTye0hzSsDb4CIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.703 [XNIO-1 task-1] SbN0z3-dTye0hzSsDb4CIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.703 [XNIO-1 task-1] SbN0z3-dTye0hzSsDb4CIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.703 [XNIO-1 task-1] SbN0z3-dTye0hzSsDb4CIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.703 [XNIO-1 task-1] SbN0z3-dTye0hzSsDb4CIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.707 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d33bdc48 +19:00:47.707 [XNIO-1 task-1] EaMjxY3hRxSl9oV9VCRJTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e86164fb-64ab-47e6-a711-70f5894d3178, base path is set to: null +19:00:47.709 [XNIO-1 task-1] EaMjxY3hRxSl9oV9VCRJTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.709 [XNIO-1 task-1] EaMjxY3hRxSl9oV9VCRJTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.709 [XNIO-1 task-1] EaMjxY3hRxSl9oV9VCRJTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e86164fb-64ab-47e6-a711-70f5894d3178, base path is set to: null +19:00:47.709 [XNIO-1 task-1] EaMjxY3hRxSl9oV9VCRJTw DEBUG com.networknt.schema.TypeValidator debug - validate( "e86164fb-64ab-47e6-a711-70f5894d3178", "e86164fb-64ab-47e6-a711-70f5894d3178", refreshToken) +19:00:47.711 [XNIO-1 task-1] EaMjxY3hRxSl9oV9VCRJTw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e86164fb-64ab-47e6-a711-70f5894d3178 is not found.","severity":"ERROR"} +19:00:47.718 [XNIO-1 task-1] TcG2BZJ4QC67lHgw1rTxUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.718 [XNIO-1 task-1] TcG2BZJ4QC67lHgw1rTxUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.718 [XNIO-1 task-1] TcG2BZJ4QC67lHgw1rTxUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.718 [XNIO-1 task-1] TcG2BZJ4QC67lHgw1rTxUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.719 [XNIO-1 task-1] TcG2BZJ4QC67lHgw1rTxUQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.723 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:18b1f18f-bd14-4d64-8ac1-ba354fd7c483 +19:00:47.724 [XNIO-1 task-1] wGoZhMtKRcuqJAWn5nyFcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.725 [XNIO-1 task-1] wGoZhMtKRcuqJAWn5nyFcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +SEVERE: [172.24.0.8]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +19:00:47.725 [XNIO-1 task-1] wGoZhMtKRcuqJAWn5nyFcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.725 [XNIO-1 task-1] wGoZhMtKRcuqJAWn5nyFcg DEBUG com.networknt.schema.TypeValidator debug - validate( "e3ab80a6-cffd-41bb-8beb-a454bd56c7ca", "e3ab80a6-cffd-41bb-8beb-a454bd56c7ca", refreshToken) +19:00:47.725 [XNIO-1 task-1] wGoZhMtKRcuqJAWn5nyFcg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:47.725 [XNIO-1 task-1] wGoZhMtKRcuqJAWn5nyFcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e3ab80a6-cffd-41bb-8beb-a454bd56c7ca is not found.","severity":"ERROR"} + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +19:00:47.728 [XNIO-1 task-1] er8AGGRJRW6JvGSE5FueWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +19:00:47.737 [XNIO-1 task-1] 2MJ3O0HcQPe49fDY-zsVHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.737 [XNIO-1 task-1] 2MJ3O0HcQPe49fDY-zsVHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.737 [XNIO-1 task-1] 2MJ3O0HcQPe49fDY-zsVHw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.745 [XNIO-1 task-1] KPs5USKFQjykPyiMhk9Dxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.745 [XNIO-1 task-1] KPs5USKFQjykPyiMhk9Dxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.745 [XNIO-1 task-1] KPs5USKFQjykPyiMhk9Dxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.746 [XNIO-1 task-1] KPs5USKFQjykPyiMhk9Dxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.746 [XNIO-1 task-1] KPs5USKFQjykPyiMhk9Dxw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 +19:00:47.749 [XNIO-1 task-1] 3ZBXexAWQUe_xz6CxdighA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.750 [XNIO-1 task-1] 3ZBXexAWQUe_xz6CxdighA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.750 [XNIO-1 task-1] 3ZBXexAWQUe_xz6CxdighA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.750 [XNIO-1 task-1] 3ZBXexAWQUe_xz6CxdighA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.750 [XNIO-1 task-1] 3ZBXexAWQUe_xz6CxdighA DEBUG com.networknt.schema.TypeValidator debug - validate( "01857082-0508-46ee-a733-20986b81a349", "01857082-0508-46ee-a733-20986b81a349", refreshToken) +19:00:47.751 [XNIO-1 task-1] 3ZBXexAWQUe_xz6CxdighA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01857082-0508-46ee-a733-20986b81a349 is not found.","severity":"ERROR"} +19:00:47.759 [XNIO-1 task-1] q09Adnv_QBiPCNAPopx4aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.759 [XNIO-1 task-1] q09Adnv_QBiPCNAPopx4aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.759 [XNIO-1 task-1] q09Adnv_QBiPCNAPopx4aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.759 [XNIO-1 task-1] q09Adnv_QBiPCNAPopx4aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.760 [XNIO-1 task-1] q09Adnv_QBiPCNAPopx4aA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 +19:00:47.762 [XNIO-1 task-1] wXPuFf97RA2kz8uzWaYOaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.763 [XNIO-1 task-1] wXPuFf97RA2kz8uzWaYOaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.763 [XNIO-1 task-1] wXPuFf97RA2kz8uzWaYOaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.763 [XNIO-1 task-1] wXPuFf97RA2kz8uzWaYOaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.763 [XNIO-1 task-1] wXPuFf97RA2kz8uzWaYOaA DEBUG com.networknt.schema.TypeValidator debug - validate( "01857082-0508-46ee-a733-20986b81a349", "01857082-0508-46ee-a733-20986b81a349", refreshToken) +19:00:47.763 [XNIO-1 task-1] wXPuFf97RA2kz8uzWaYOaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01857082-0508-46ee-a733-20986b81a349 is not found.","severity":"ERROR"} +19:00:47.769 [XNIO-1 task-1] hvDqWYwNS_yG9amopFws5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.769 [XNIO-1 task-1] hvDqWYwNS_yG9amopFws5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.769 [XNIO-1 task-1] hvDqWYwNS_yG9amopFws5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.769 [XNIO-1 task-1] hvDqWYwNS_yG9amopFws5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.769 [XNIO-1 task-1] hvDqWYwNS_yG9amopFws5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 +19:00:47.772 [XNIO-1 task-1] FGO_7FROTU6YtLnkSF2Obw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.772 [XNIO-1 task-1] FGO_7FROTU6YtLnkSF2Obw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.772 [XNIO-1 task-1] FGO_7FROTU6YtLnkSF2Obw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.772 [XNIO-1 task-1] FGO_7FROTU6YtLnkSF2Obw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.773 [XNIO-1 task-1] FGO_7FROTU6YtLnkSF2Obw DEBUG com.networknt.schema.TypeValidator debug - validate( "01857082-0508-46ee-a733-20986b81a349", "01857082-0508-46ee-a733-20986b81a349", refreshToken) +19:00:47.773 [XNIO-1 task-1] FGO_7FROTU6YtLnkSF2Obw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01857082-0508-46ee-a733-20986b81a349 is not found.","severity":"ERROR"} +19:00:47.779 [XNIO-1 task-1] Dbb_8eCgSfWdX_jrsqIu-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.779 [XNIO-1 task-1] Dbb_8eCgSfWdX_jrsqIu-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.779 [XNIO-1 task-1] Dbb_8eCgSfWdX_jrsqIu-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.779 [XNIO-1 task-1] Dbb_8eCgSfWdX_jrsqIu-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349 +19:00:47.780 [XNIO-1 task-1] Dbb_8eCgSfWdX_jrsqIu-A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 01857082-0508-46ee-a733-20986b81a349 +19:00:47.785 [XNIO-1 task-1] IrBXJ69ASvCyRd7BG3yRWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.786 [XNIO-1 task-1] IrBXJ69ASvCyRd7BG3yRWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.786 [XNIO-1 task-1] IrBXJ69ASvCyRd7BG3yRWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.786 [XNIO-1 task-1] IrBXJ69ASvCyRd7BG3yRWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/01857082-0508-46ee-a733-20986b81a349, base path is set to: null +19:00:47.786 [XNIO-1 task-1] IrBXJ69ASvCyRd7BG3yRWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "01857082-0508-46ee-a733-20986b81a349", "01857082-0508-46ee-a733-20986b81a349", refreshToken) +19:00:47.786 [XNIO-1 task-1] IrBXJ69ASvCyRd7BG3yRWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 01857082-0508-46ee-a733-20986b81a349 is not found.","severity":"ERROR"} +19:00:47.790 [XNIO-1 task-1] -ENnJUYEQmGut1Ydwu0RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.790 [XNIO-1 task-1] -ENnJUYEQmGut1Ydwu0RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.790 [XNIO-1 task-1] -ENnJUYEQmGut1Ydwu0RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.790 [XNIO-1 task-1] -ENnJUYEQmGut1Ydwu0RQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.791 [XNIO-1 task-1] -ENnJUYEQmGut1Ydwu0RQw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d5f00b03-eb58-4d0a-99c7-83948577c10f +19:00:47.797 [XNIO-1 task-1] DAKcIQuOSg6pfSZzExCGPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f, base path is set to: null +19:00:47.798 [XNIO-1 task-1] DAKcIQuOSg6pfSZzExCGPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.798 [XNIO-1 task-1] DAKcIQuOSg6pfSZzExCGPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.798 [XNIO-1 task-1] DAKcIQuOSg6pfSZzExCGPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f, base path is set to: null +19:00:47.798 [XNIO-1 task-1] DAKcIQuOSg6pfSZzExCGPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d5f00b03-eb58-4d0a-99c7-83948577c10f", "d5f00b03-eb58-4d0a-99c7-83948577c10f", refreshToken) +19:00:47.798 [XNIO-1 task-1] DAKcIQuOSg6pfSZzExCGPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d5f00b03-eb58-4d0a-99c7-83948577c10f is not found.","severity":"ERROR"} +19:00:47.805 [XNIO-1 task-1] XAtwv0xlTeuDGTSHgtnVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6d10dbd-b9f0-42a8-a5e3-1face2be8c0b +19:00:47.805 [XNIO-1 task-1] XAtwv0xlTeuDGTSHgtnVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.805 [XNIO-1 task-1] XAtwv0xlTeuDGTSHgtnVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.806 [XNIO-1 task-1] XAtwv0xlTeuDGTSHgtnVfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e6d10dbd-b9f0-42a8-a5e3-1face2be8c0b +19:00:47.806 [XNIO-1 task-1] XAtwv0xlTeuDGTSHgtnVfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e6d10dbd-b9f0-42a8-a5e3-1face2be8c0b +19:00:47.816 [XNIO-1 task-1] VLvPp0mjSM2LwVfwTD5FOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.816 [XNIO-1 task-1] VLvPp0mjSM2LwVfwTD5FOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.816 [XNIO-1 task-1] VLvPp0mjSM2LwVfwTD5FOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.816 [XNIO-1 task-1] VLvPp0mjSM2LwVfwTD5FOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.816 [XNIO-1 task-1] VLvPp0mjSM2LwVfwTD5FOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 70eeedc2-a709-4194-8033-50cba8838609 +19:00:47.819 [XNIO-1 task-1] lpObkZPiTjOCgWQpQDYc9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f, base path is set to: null +19:00:47.820 [XNIO-1 task-1] lpObkZPiTjOCgWQpQDYc9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.820 [XNIO-1 task-1] lpObkZPiTjOCgWQpQDYc9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.820 [XNIO-1 task-1] lpObkZPiTjOCgWQpQDYc9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d5f00b03-eb58-4d0a-99c7-83948577c10f, base path is set to: null +19:00:47.820 [XNIO-1 task-1] lpObkZPiTjOCgWQpQDYc9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d5f00b03-eb58-4d0a-99c7-83948577c10f", "d5f00b03-eb58-4d0a-99c7-83948577c10f", refreshToken) +19:00:47.820 [XNIO-1 task-1] lpObkZPiTjOCgWQpQDYc9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d5f00b03-eb58-4d0a-99c7-83948577c10f is not found.","severity":"ERROR"} +19:00:47.824 [XNIO-1 task-1] Dwi24-PsRC-TAocDZe5RBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/11ba4d82-1ea6-40ee-a469-0f3cb45abfda +19:00:47.824 [XNIO-1 task-1] Dwi24-PsRC-TAocDZe5RBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.824 [XNIO-1 task-1] Dwi24-PsRC-TAocDZe5RBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.825 [XNIO-1 task-1] Dwi24-PsRC-TAocDZe5RBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/11ba4d82-1ea6-40ee-a469-0f3cb45abfda +19:00:47.825 [XNIO-1 task-1] Dwi24-PsRC-TAocDZe5RBw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 11ba4d82-1ea6-40ee-a469-0f3cb45abfda +19:00:47.844 [XNIO-1 task-1] oqRLz73QRwuQ-sL4Oxt2gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.845 [XNIO-1 task-1] oqRLz73QRwuQ-sL4Oxt2gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.845 [XNIO-1 task-1] oqRLz73QRwuQ-sL4Oxt2gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.845 [XNIO-1 task-1] oqRLz73QRwuQ-sL4Oxt2gQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.855 [XNIO-1 task-1] 5CFQ9BaqSfqM4xJ3P0YDpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.855 [XNIO-1 task-1] 5CFQ9BaqSfqM4xJ3P0YDpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.855 [XNIO-1 task-1] 5CFQ9BaqSfqM4xJ3P0YDpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.856 [XNIO-1 task-1] 5CFQ9BaqSfqM4xJ3P0YDpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.856 [XNIO-1 task-1] 5CFQ9BaqSfqM4xJ3P0YDpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.866 [XNIO-1 task-1] xAopPVVEReOp5SNz1QdD3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.867 [XNIO-1 task-1] xAopPVVEReOp5SNz1QdD3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.867 [XNIO-1 task-1] xAopPVVEReOp5SNz1QdD3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.867 [XNIO-1 task-1] xAopPVVEReOp5SNz1QdD3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.873 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:aaa7028b-b8dc-42ab-a47d-f8256e873745 +19:00:47.878 [XNIO-1 task-1] sJdzo6bGSsW3t38g0Lbw6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.878 [XNIO-1 task-1] sJdzo6bGSsW3t38g0Lbw6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.878 [XNIO-1 task-1] sJdzo6bGSsW3t38g0Lbw6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.878 [XNIO-1 task-1] sJdzo6bGSsW3t38g0Lbw6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.879 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +19:00:47.880 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.894 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8e047dc8 +19:00:47.894 [XNIO-1 task-1] MBMnPpmsQWubKvOVCTKAVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:47.894 [XNIO-1 task-1] MBMnPpmsQWubKvOVCTKAVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.894 [XNIO-1 task-1] MBMnPpmsQWubKvOVCTKAVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.895 [XNIO-1 task-1] MBMnPpmsQWubKvOVCTKAVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:47.895 [XNIO-1 task-1] MBMnPpmsQWubKvOVCTKAVQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:47.901 [XNIO-1 task-1] m7C83iXLR8OfEqQdLCUXtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.901 [XNIO-1 task-1] m7C83iXLR8OfEqQdLCUXtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.901 [XNIO-1 task-1] m7C83iXLR8OfEqQdLCUXtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.901 [XNIO-1 task-1] m7C83iXLR8OfEqQdLCUXtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.901 [XNIO-1 task-1] m7C83iXLR8OfEqQdLCUXtg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.902 [XNIO-1 task-1] m7C83iXLR8OfEqQdLCUXtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 770c6642-3c8e-47b6-a91c-de2e182b82e2 is not found.","severity":"ERROR"} +19:00:47.907 [XNIO-1 task-1] GwhCZ7fFRfuHqxCfknuyGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.907 [XNIO-1 task-1] GwhCZ7fFRfuHqxCfknuyGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.907 [XNIO-1 task-1] GwhCZ7fFRfuHqxCfknuyGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.908 [XNIO-1 task-1] GwhCZ7fFRfuHqxCfknuyGg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:47.919 [XNIO-1 task-1] 2Z3iKwzTRf6cjsvEF_gTYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:47.920 [XNIO-1 task-1] 2Z3iKwzTRf6cjsvEF_gTYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.920 [XNIO-1 task-1] 2Z3iKwzTRf6cjsvEF_gTYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.921 [XNIO-1 task-1] 2Z3iKwzTRf6cjsvEF_gTYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:47.921 [XNIO-1 task-1] 2Z3iKwzTRf6cjsvEF_gTYw DEBUG com.networknt.schema.TypeValidator debug - validate( "595971f9-67a4-4c04-b123-6af39a1f435f", "595971f9-67a4-4c04-b123-6af39a1f435f", refreshToken) +19:00:47.928 [XNIO-1 task-1] 6u68fUTrSpW6Ti7pvIoSfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:47.928 [XNIO-1 task-1] 6u68fUTrSpW6Ti7pvIoSfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.928 [XNIO-1 task-1] 6u68fUTrSpW6Ti7pvIoSfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.929 [XNIO-1 task-1] 6u68fUTrSpW6Ti7pvIoSfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:47.929 [XNIO-1 task-1] 6u68fUTrSpW6Ti7pvIoSfA DEBUG com.networknt.schema.TypeValidator debug - validate( "770c6642-3c8e-47b6-a91c-de2e182b82e2", "770c6642-3c8e-47b6-a91c-de2e182b82e2", refreshToken) +19:00:47.929 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.937 [XNIO-1 task-1] B7Zzj444THmsqj_aY41fdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:47.937 [XNIO-1 task-1] B7Zzj444THmsqj_aY41fdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.937 [XNIO-1 task-1] B7Zzj444THmsqj_aY41fdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.938 [XNIO-1 task-1] B7Zzj444THmsqj_aY41fdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:47.939 [XNIO-1 task-1] B7Zzj444THmsqj_aY41fdg DEBUG com.networknt.schema.TypeValidator debug - validate( "595971f9-67a4-4c04-b123-6af39a1f435f", "595971f9-67a4-4c04-b123-6af39a1f435f", refreshToken) +19:00:47.948 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7dd16a18-5d30-474a-a195-e6e477f5e342 +19:00:47.950 [XNIO-1 task-1] IhRBUAJNREe8_ompottpJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.950 [XNIO-1 task-1] IhRBUAJNREe8_ompottpJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.950 [XNIO-1 task-1] IhRBUAJNREe8_ompottpJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.950 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7dd16a18-5d30-474a-a195-e6e477f5e342 +19:00:47.950 [XNIO-1 task-1] IhRBUAJNREe8_ompottpJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.953 [XNIO-1 task-1] IhRBUAJNREe8_ompottpJg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.955 [XNIO-1 task-1] IhRBUAJNREe8_ompottpJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 770c6642-3c8e-47b6-a91c-de2e182b82e2 is not found.","severity":"ERROR"} +19:00:47.959 [XNIO-1 task-1] _KFhewvVSyeqJv33neyEdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:47.966 [XNIO-1 task-1] _KFhewvVSyeqJv33neyEdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.966 [XNIO-1 task-1] _KFhewvVSyeqJv33neyEdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.967 [XNIO-1 task-1] _KFhewvVSyeqJv33neyEdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:47.967 [XNIO-1 task-1] _KFhewvVSyeqJv33neyEdg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:47.975 [XNIO-1 task-1] mE4TJBvXSsmBSW8xu0JjuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/83ce3dae-93c3-44ff-b65d-53a874a465c5, base path is set to: null +19:00:47.975 [XNIO-1 task-1] mE4TJBvXSsmBSW8xu0JjuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.977 [XNIO-1 task-1] mE4TJBvXSsmBSW8xu0JjuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:47.977 [XNIO-1 task-1] mE4TJBvXSsmBSW8xu0JjuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/83ce3dae-93c3-44ff-b65d-53a874a465c5, base path is set to: null +19:00:47.978 [XNIO-1 task-1] mE4TJBvXSsmBSW8xu0JjuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "83ce3dae-93c3-44ff-b65d-53a874a465c5", "83ce3dae-93c3-44ff-b65d-53a874a465c5", refreshToken) +19:00:47.979 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:47.985 [XNIO-1 task-1] tFZEcKuNSG6I33DWmWizyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.985 [XNIO-1 task-1] tFZEcKuNSG6I33DWmWizyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:47.986 [XNIO-1 task-1] tFZEcKuNSG6I33DWmWizyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:47.986 [XNIO-1 task-1] tFZEcKuNSG6I33DWmWizyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:47.986 [XNIO-1 task-1] tFZEcKuNSG6I33DWmWizyQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:47.997 [XNIO-1 task-1] E4qMSLCiRimH2MzVw8iVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.997 [XNIO-1 task-1] E4qMSLCiRimH2MzVw8iVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:47.997 [XNIO-1 task-1] E4qMSLCiRimH2MzVw8iVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:47.998 [XNIO-1 task-1] E4qMSLCiRimH2MzVw8iVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.998 [XNIO-1 task-1] E4qMSLCiRimH2MzVw8iVOA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:47.999 [XNIO-1 task-1] E4qMSLCiRimH2MzVw8iVOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 770c6642-3c8e-47b6-a91c-de2e182b82e2 is not found.","severity":"ERROR"} +19:00:48.006 [XNIO-1 task-1] UJWH0RNRTYWJtgVBzu-t4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/83ce3dae-93c3-44ff-b65d-53a874a465c5 +19:00:48.006 [XNIO-1 task-1] UJWH0RNRTYWJtgVBzu-t4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.006 [XNIO-1 task-1] UJWH0RNRTYWJtgVBzu-t4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.006 [XNIO-1 task-1] UJWH0RNRTYWJtgVBzu-t4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/83ce3dae-93c3-44ff-b65d-53a874a465c5 +19:00:48.007 [XNIO-1 task-1] UJWH0RNRTYWJtgVBzu-t4A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 83ce3dae-93c3-44ff-b65d-53a874a465c5 +19:00:48.014 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e3a70b45-a92a-43ef-ab60-06777e1f5d19 +19:00:48.022 [XNIO-1 task-1] F9Crxav1T2udeJ_3ltSvXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.022 [XNIO-1 task-1] F9Crxav1T2udeJ_3ltSvXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.023 [XNIO-1 task-1] F9Crxav1T2udeJ_3ltSvXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.023 [XNIO-1 task-1] F9Crxav1T2udeJ_3ltSvXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.023 [XNIO-1 task-1] F9Crxav1T2udeJ_3ltSvXg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.031 [XNIO-1 task-1] QaWPLL56SSi5asUq5NY-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.031 [XNIO-1 task-1] QaWPLL56SSi5asUq5NY-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.031 [XNIO-1 task-1] QaWPLL56SSi5asUq5NY-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.032 [XNIO-1 task-1] QaWPLL56SSi5asUq5NY-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.032 [XNIO-1 task-1] QaWPLL56SSi5asUq5NY-kA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.037 [XNIO-1 task-1] AoyKzMozQB-tf1CAprMPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.037 [XNIO-1 task-1] AoyKzMozQB-tf1CAprMPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.037 [XNIO-1 task-1] AoyKzMozQB-tf1CAprMPiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.038 [XNIO-1 task-1] AoyKzMozQB-tf1CAprMPiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.050 [XNIO-1 task-1] ZcLTD3v4QbOKOAIkWoBJVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:48.050 [XNIO-1 task-1] ZcLTD3v4QbOKOAIkWoBJVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.050 [XNIO-1 task-1] ZcLTD3v4QbOKOAIkWoBJVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.050 [XNIO-1 task-1] ZcLTD3v4QbOKOAIkWoBJVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:48.050 [XNIO-1 task-1] ZcLTD3v4QbOKOAIkWoBJVg DEBUG com.networknt.schema.TypeValidator debug - validate( "595971f9-67a4-4c04-b123-6af39a1f435f", "595971f9-67a4-4c04-b123-6af39a1f435f", refreshToken) +19:00:48.051 [XNIO-1 task-1] ZcLTD3v4QbOKOAIkWoBJVg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 595971f9-67a4-4c04-b123-6af39a1f435f is not found.","severity":"ERROR"} +19:00:48.055 [XNIO-1 task-1] KVbfU6rORqugAwnhgLUbyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.055 [XNIO-1 task-1] KVbfU6rORqugAwnhgLUbyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.055 [XNIO-1 task-1] KVbfU6rORqugAwnhgLUbyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.056 [XNIO-1 task-1] KVbfU6rORqugAwnhgLUbyQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.064 [XNIO-1 task-1] WMnGlUcmTO281zfiAcFyNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:48.064 [XNIO-1 task-1] WMnGlUcmTO281zfiAcFyNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.065 [XNIO-1 task-1] WMnGlUcmTO281zfiAcFyNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.065 [XNIO-1 task-1] WMnGlUcmTO281zfiAcFyNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:48.065 [XNIO-1 task-1] WMnGlUcmTO281zfiAcFyNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c56de993-87b8-4030-a289-78d67e6f30fd", "c56de993-87b8-4030-a289-78d67e6f30fd", refreshToken) +19:00:48.071 [XNIO-1 task-1] pvxokoZATPSV1x2kdY70mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:48.072 [XNIO-1 task-1] pvxokoZATPSV1x2kdY70mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.072 [XNIO-1 task-1] pvxokoZATPSV1x2kdY70mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.072 [XNIO-1 task-1] pvxokoZATPSV1x2kdY70mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:48.072 [XNIO-1 task-1] pvxokoZATPSV1x2kdY70mQ DEBUG com.networknt.schema.TypeValidator debug - validate( "19cf0787-2015-49a1-9eb9-20bd1c3d472e", "19cf0787-2015-49a1-9eb9-20bd1c3d472e", refreshToken) +19:00:48.076 [XNIO-1 task-1] hzW-UXjETAmyNm-pdvMAtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.076 [XNIO-1 task-1] hzW-UXjETAmyNm-pdvMAtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.076 [XNIO-1 task-1] hzW-UXjETAmyNm-pdvMAtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.076 [XNIO-1 task-1] hzW-UXjETAmyNm-pdvMAtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.077 [XNIO-1 task-1] hzW-UXjETAmyNm-pdvMAtA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.084 [XNIO-1 task-1] -DFxp1RHTeOXQx1Ok1_1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.084 [XNIO-1 task-1] -DFxp1RHTeOXQx1Ok1_1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.084 [XNIO-1 task-1] -DFxp1RHTeOXQx1Ok1_1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.084 [XNIO-1 task-1] -DFxp1RHTeOXQx1Ok1_1TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.085 [XNIO-1 task-1] -DFxp1RHTeOXQx1Ok1_1TA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.087 [XNIO-1 task-1] amTmpMV8RyOwiTszMl00AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:48.087 [XNIO-1 task-1] amTmpMV8RyOwiTszMl00AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.088 [XNIO-1 task-1] amTmpMV8RyOwiTszMl00AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.088 [XNIO-1 task-1] amTmpMV8RyOwiTszMl00AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:48.088 [XNIO-1 task-1] amTmpMV8RyOwiTszMl00AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c56de993-87b8-4030-a289-78d67e6f30fd", "c56de993-87b8-4030-a289-78d67e6f30fd", refreshToken) +19:00:48.097 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:110978ae-172f-4d93-bf27-d063c840f549 +19:00:48.101 [XNIO-1 task-1] rpS-FgjuQ369tdllrkjjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.101 [XNIO-1 task-1] rpS-FgjuQ369tdllrkjjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.101 [XNIO-1 task-1] rpS-FgjuQ369tdllrkjjag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.101 [XNIO-1 task-1] rpS-FgjuQ369tdllrkjjag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.102 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:110978ae-172f-4d93-bf27-d063c840f549 +19:00:48.129 [XNIO-1 task-1] q6ntUxzKRZ66-yAHt4-S7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.129 [XNIO-1 task-1] q6ntUxzKRZ66-yAHt4-S7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.129 [XNIO-1 task-1] q6ntUxzKRZ66-yAHt4-S7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.129 [XNIO-1 task-1] q6ntUxzKRZ66-yAHt4-S7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.130 [XNIO-1 task-1] q6ntUxzKRZ66-yAHt4-S7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.138 [XNIO-1 task-1] 15QjXv6gR9GdJRm1MtCJEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:48.138 [XNIO-1 task-1] 15QjXv6gR9GdJRm1MtCJEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.138 [XNIO-1 task-1] 15QjXv6gR9GdJRm1MtCJEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.139 [XNIO-1 task-1] 15QjXv6gR9GdJRm1MtCJEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:48.139 [XNIO-1 task-1] 15QjXv6gR9GdJRm1MtCJEw DEBUG com.networknt.schema.TypeValidator debug - validate( "19cf0787-2015-49a1-9eb9-20bd1c3d472e", "19cf0787-2015-49a1-9eb9-20bd1c3d472e", refreshToken) +19:00:48.141 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9414837 +19:00:48.155 [XNIO-1 task-1] oAg3ZOwUSYiwQLlmTdCG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.155 [XNIO-1 task-1] oAg3ZOwUSYiwQLlmTdCG-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.156 [XNIO-1 task-1] oAg3ZOwUSYiwQLlmTdCG-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.156 [XNIO-1 task-1] oAg3ZOwUSYiwQLlmTdCG-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.156 [XNIO-1 task-1] oAg3ZOwUSYiwQLlmTdCG-A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.161 [XNIO-1 task-1] mW1ym36sQtGz69JB8-Htgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.161 [XNIO-1 task-1] mW1ym36sQtGz69JB8-Htgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.161 [XNIO-1 task-1] mW1ym36sQtGz69JB8-Htgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.162 [XNIO-1 task-1] mW1ym36sQtGz69JB8-Htgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.169 [XNIO-1 task-1] bmjnXhD9T3ivSGPFD72Cjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.170 [XNIO-1 task-1] bmjnXhD9T3ivSGPFD72Cjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.171 [XNIO-1 task-1] bmjnXhD9T3ivSGPFD72Cjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.171 [XNIO-1 task-1] bmjnXhD9T3ivSGPFD72Cjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.171 [XNIO-1 task-1] bmjnXhD9T3ivSGPFD72Cjg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.182 [XNIO-1 task-1] BU_TtEd6QWG93Imq3aPXkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.182 [XNIO-1 task-1] BU_TtEd6QWG93Imq3aPXkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.182 [XNIO-1 task-1] BU_TtEd6QWG93Imq3aPXkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.182 [XNIO-1 task-1] BU_TtEd6QWG93Imq3aPXkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.182 [XNIO-1 task-1] BU_TtEd6QWG93Imq3aPXkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.187 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e881786 +19:00:48.188 [XNIO-1 task-1] qJKqlZmeSna0_Qa7ZJjowQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.188 [XNIO-1 task-1] qJKqlZmeSna0_Qa7ZJjowQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.188 [XNIO-1 task-1] qJKqlZmeSna0_Qa7ZJjowQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.189 [XNIO-1 task-1] qJKqlZmeSna0_Qa7ZJjowQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.189 [XNIO-1 task-1] qJKqlZmeSna0_Qa7ZJjowQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.200 [XNIO-1 task-1] bF9tfY5XTOa_OgZCBQ9O6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.200 [XNIO-1 task-1] bF9tfY5XTOa_OgZCBQ9O6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.200 [XNIO-1 task-1] bF9tfY5XTOa_OgZCBQ9O6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.200 [XNIO-1 task-1] bF9tfY5XTOa_OgZCBQ9O6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.201 [XNIO-1 task-1] bF9tfY5XTOa_OgZCBQ9O6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.203 [XNIO-1 task-1] bF9tfY5XTOa_OgZCBQ9O6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c56de993-87b8-4030-a289-78d67e6f30fd is not found.","severity":"ERROR"} +19:00:48.208 [XNIO-1 task-1] hluYDI5xQl6qw6ukXhWuXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.208 [XNIO-1 task-1] hluYDI5xQl6qw6ukXhWuXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.208 [XNIO-1 task-1] hluYDI5xQl6qw6ukXhWuXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.209 [XNIO-1 task-1] hluYDI5xQl6qw6ukXhWuXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.217 [XNIO-1 task-1] 7vsj5qpbSQ-eV61WVxprAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.218 [XNIO-1 task-1] 7vsj5qpbSQ-eV61WVxprAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.219 [XNIO-1 task-1] 7vsj5qpbSQ-eV61WVxprAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.219 [XNIO-1 task-1] 7vsj5qpbSQ-eV61WVxprAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.219 [XNIO-1 task-1] 7vsj5qpbSQ-eV61WVxprAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.228 [XNIO-1 task-1] GUjSKF9vSwuOIYWht3krNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.228 [XNIO-1 task-1] GUjSKF9vSwuOIYWht3krNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.229 [XNIO-1 task-1] GUjSKF9vSwuOIYWht3krNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.229 [XNIO-1 task-1] GUjSKF9vSwuOIYWht3krNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.230 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fe82f4bd +19:00:48.234 [XNIO-1 task-1] j6P83lLyTrGFhjrKvWs8BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.234 [XNIO-1 task-1] j6P83lLyTrGFhjrKvWs8BQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.234 [XNIO-1 task-1] j6P83lLyTrGFhjrKvWs8BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.234 [XNIO-1 task-1] j6P83lLyTrGFhjrKvWs8BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.234 [XNIO-1 task-1] j6P83lLyTrGFhjrKvWs8BQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.245 [XNIO-1 task-1] FIOeshUbQLGA-mCekSaDfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.245 [XNIO-1 task-1] FIOeshUbQLGA-mCekSaDfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.245 [XNIO-1 task-1] FIOeshUbQLGA-mCekSaDfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.245 [XNIO-1 task-1] FIOeshUbQLGA-mCekSaDfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.246 [XNIO-1 task-1] FIOeshUbQLGA-mCekSaDfg DEBUG com.networknt.schema.TypeValidator debug - validate( "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", refreshToken) +19:00:48.246 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:48.256 [XNIO-1 task-1] 0ZQR7L6zQKuOWwfT5JK9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:48.256 [XNIO-1 task-1] 0ZQR7L6zQKuOWwfT5JK9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.256 [XNIO-1 task-1] 0ZQR7L6zQKuOWwfT5JK9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.256 [XNIO-1 task-1] 0ZQR7L6zQKuOWwfT5JK9lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:48.256 [XNIO-1 task-1] 0ZQR7L6zQKuOWwfT5JK9lw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:48.259 [XNIO-1 task-1] yc-anLf2S4qmTblZRVRptg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.259 [XNIO-1 task-1] yc-anLf2S4qmTblZRVRptg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.259 [XNIO-1 task-1] yc-anLf2S4qmTblZRVRptg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.259 [XNIO-1 task-1] yc-anLf2S4qmTblZRVRptg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.260 [XNIO-1 task-1] yc-anLf2S4qmTblZRVRptg DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:48.280 [XNIO-1 task-1] zeCTpBgCSSS2w6uBSPSaZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.281 [XNIO-1 task-1] zeCTpBgCSSS2w6uBSPSaZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.283 [XNIO-1 task-1] zeCTpBgCSSS2w6uBSPSaZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.284 [XNIO-1 task-1] zeCTpBgCSSS2w6uBSPSaZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.284 [XNIO-1 task-1] zeCTpBgCSSS2w6uBSPSaZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.294 [XNIO-1 task-1] kGMppqTSSmKpagU-b9srPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.294 [XNIO-1 task-1] kGMppqTSSmKpagU-b9srPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.294 [XNIO-1 task-1] kGMppqTSSmKpagU-b9srPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.295 [XNIO-1 task-1] kGMppqTSSmKpagU-b9srPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.311 [XNIO-1 task-1] YDD6hwcRRJC4CeHV-i8mXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.311 [XNIO-1 task-1] YDD6hwcRRJC4CeHV-i8mXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.312 [XNIO-1 task-1] YDD6hwcRRJC4CeHV-i8mXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.312 [XNIO-1 task-1] YDD6hwcRRJC4CeHV-i8mXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.312 [XNIO-1 task-1] YDD6hwcRRJC4CeHV-i8mXA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.325 [XNIO-1 task-1] QyPzE1daRLKWnnWxEVZhZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:48.325 [XNIO-1 task-1] QyPzE1daRLKWnnWxEVZhZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.325 [XNIO-1 task-1] QyPzE1daRLKWnnWxEVZhZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.330 [XNIO-1 task-1] QyPzE1daRLKWnnWxEVZhZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:48.330 [XNIO-1 task-1] QyPzE1daRLKWnnWxEVZhZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:48.331 [XNIO-1 task-1] QyPzE1daRLKWnnWxEVZhZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 is not found.","severity":"ERROR"} +19:00:48.342 [XNIO-1 task-1] kNW2_CpBR1CGD1hzF-pSgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:48.342 [XNIO-1 task-1] kNW2_CpBR1CGD1hzF-pSgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.342 [XNIO-1 task-1] kNW2_CpBR1CGD1hzF-pSgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.342 [XNIO-1 task-1] kNW2_CpBR1CGD1hzF-pSgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:48.342 [XNIO-1 task-1] kNW2_CpBR1CGD1hzF-pSgw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e3ab80a6-cffd-41bb-8beb-a454bd56c7ca +19:00:48.348 [XNIO-1 task-1] Zd-dOyczTReims_R_vE3yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.349 [XNIO-1 task-1] Zd-dOyczTReims_R_vE3yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.349 [XNIO-1 task-1] Zd-dOyczTReims_R_vE3yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.349 [XNIO-1 task-1] Zd-dOyczTReims_R_vE3yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.349 [XNIO-1 task-1] Zd-dOyczTReims_R_vE3yg DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:48.368 [XNIO-1 task-1] 4iju_aYlSfy-0KjCcHwwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.369 [XNIO-1 task-1] 4iju_aYlSfy-0KjCcHwwlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.369 [XNIO-1 task-1] 4iju_aYlSfy-0KjCcHwwlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.369 [XNIO-1 task-1] 4iju_aYlSfy-0KjCcHwwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.369 [XNIO-1 task-1] 4iju_aYlSfy-0KjCcHwwlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", refreshToken) +19:00:48.373 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:48.380 [XNIO-1 task-1] Zln4r9fzSlqa1LLELH7KDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.380 [XNIO-1 task-1] Zln4r9fzSlqa1LLELH7KDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.380 [XNIO-1 task-1] Zln4r9fzSlqa1LLELH7KDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.381 [XNIO-1 task-1] Zln4r9fzSlqa1LLELH7KDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.381 [XNIO-1 task-1] Zln4r9fzSlqa1LLELH7KDg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.387 [XNIO-1 task-1] q6UQTYK_SqeFUKLncw0dRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.387 [XNIO-1 task-1] q6UQTYK_SqeFUKLncw0dRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.387 [XNIO-1 task-1] q6UQTYK_SqeFUKLncw0dRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.388 [XNIO-1 task-1] q6UQTYK_SqeFUKLncw0dRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.388 [XNIO-1 task-1] q6UQTYK_SqeFUKLncw0dRw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.398 [XNIO-1 task-1] QK1bIFINRuGINgzLbL5qFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.398 [XNIO-1 task-1] QK1bIFINRuGINgzLbL5qFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.399 [XNIO-1 task-1] QK1bIFINRuGINgzLbL5qFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.399 [XNIO-1 task-1] QK1bIFINRuGINgzLbL5qFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.399 [XNIO-1 task-1] QK1bIFINRuGINgzLbL5qFA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.406 [XNIO-1 task-1] s0R5L7fATvaBpLfHZKTdBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.406 [XNIO-1 task-1] s0R5L7fATvaBpLfHZKTdBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.406 [XNIO-1 task-1] s0R5L7fATvaBpLfHZKTdBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.406 [XNIO-1 task-1] s0R5L7fATvaBpLfHZKTdBw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.428 [XNIO-1 task-1] Pyip6kPPSgKH-fRv9wwNEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.429 [XNIO-1 task-1] Pyip6kPPSgKH-fRv9wwNEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.429 [XNIO-1 task-1] Pyip6kPPSgKH-fRv9wwNEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.429 [XNIO-1 task-1] Pyip6kPPSgKH-fRv9wwNEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.430 [XNIO-1 task-1] Pyip6kPPSgKH-fRv9wwNEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", refreshToken) +19:00:48.430 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:48.435 [XNIO-1 task-1] IHpFnfheSFKW7oBQjh62PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.435 [XNIO-1 task-1] IHpFnfheSFKW7oBQjh62PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.436 [XNIO-1 task-1] IHpFnfheSFKW7oBQjh62PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.436 [XNIO-1 task-1] IHpFnfheSFKW7oBQjh62PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.436 [XNIO-1 task-1] IHpFnfheSFKW7oBQjh62PA DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:48.436 [XNIO-1 task-1] IHpFnfheSFKW7oBQjh62PA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 68563aee-5ccc-42c2-b55d-bad91dd9b0ca is not found.","severity":"ERROR"} +19:00:48.439 [XNIO-1 task-1] ZtjXmQfcTnePLiNp8cAhBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.439 [XNIO-1 task-1] ZtjXmQfcTnePLiNp8cAhBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.439 [XNIO-1 task-1] ZtjXmQfcTnePLiNp8cAhBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.440 [XNIO-1 task-1] ZtjXmQfcTnePLiNp8cAhBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.451 [XNIO-1 task-1] x0aQZNHGTSWTQRfEMn2WXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.452 [XNIO-1 task-1] x0aQZNHGTSWTQRfEMn2WXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.452 [XNIO-1 task-1] x0aQZNHGTSWTQRfEMn2WXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.453 [XNIO-1 task-1] x0aQZNHGTSWTQRfEMn2WXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.453 [XNIO-1 task-1] x0aQZNHGTSWTQRfEMn2WXA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.464 [XNIO-1 task-1] Nui2BBzPQTKPhHYN_4hn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.464 [XNIO-1 task-1] Nui2BBzPQTKPhHYN_4hn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.464 [XNIO-1 task-1] Nui2BBzPQTKPhHYN_4hn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.465 [XNIO-1 task-1] Nui2BBzPQTKPhHYN_4hn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.466 [XNIO-1 task-1] Nui2BBzPQTKPhHYN_4hn-A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.469 [XNIO-1 task-1] BhLklAlIQDGFrpzuC7drZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.470 [XNIO-1 task-1] BhLklAlIQDGFrpzuC7drZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.470 [XNIO-1 task-1] BhLklAlIQDGFrpzuC7drZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.470 [XNIO-1 task-1] BhLklAlIQDGFrpzuC7drZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.473 [XNIO-1 task-1] BhLklAlIQDGFrpzuC7drZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "966cd83e-d8e5-404b-9ea5-23057245b0f5", "966cd83e-d8e5-404b-9ea5-23057245b0f5", refreshToken) +19:00:48.483 [XNIO-1 task-1] lKibBj37Ql6YWWGfBTVnug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.484 [XNIO-1 task-1] lKibBj37Ql6YWWGfBTVnug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.484 [XNIO-1 task-1] lKibBj37Ql6YWWGfBTVnug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.484 [XNIO-1 task-1] lKibBj37Ql6YWWGfBTVnug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.485 [XNIO-1 task-1] lKibBj37Ql6YWWGfBTVnug DEBUG com.networknt.schema.TypeValidator debug - validate( "966cd83e-d8e5-404b-9ea5-23057245b0f5", "966cd83e-d8e5-404b-9ea5-23057245b0f5", refreshToken) +19:00:48.488 [XNIO-1 task-1] lKibBj37Ql6YWWGfBTVnug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 966cd83e-d8e5-404b-9ea5-23057245b0f5 is not found.","severity":"ERROR"} +19:00:48.494 [XNIO-1 task-1] oo5ZvQjPTHKEx8mvgPuo1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.494 [XNIO-1 task-1] oo5ZvQjPTHKEx8mvgPuo1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.494 [XNIO-1 task-1] oo5ZvQjPTHKEx8mvgPuo1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.495 [XNIO-1 task-1] oo5ZvQjPTHKEx8mvgPuo1g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.507 [XNIO-1 task-1] wPyZWCmQTp62tFrZPPmTtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.507 [XNIO-1 task-1] wPyZWCmQTp62tFrZPPmTtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.507 [XNIO-1 task-1] wPyZWCmQTp62tFrZPPmTtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.507 [XNIO-1 task-1] wPyZWCmQTp62tFrZPPmTtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.508 [XNIO-1 task-1] wPyZWCmQTp62tFrZPPmTtA DEBUG com.networknt.schema.TypeValidator debug - validate( "966cd83e-d8e5-404b-9ea5-23057245b0f5", "966cd83e-d8e5-404b-9ea5-23057245b0f5", refreshToken) +19:00:48.508 [XNIO-1 task-1] wPyZWCmQTp62tFrZPPmTtA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 966cd83e-d8e5-404b-9ea5-23057245b0f5 is not found.","severity":"ERROR"} +19:00:48.511 [XNIO-1 task-1] rRJghSQqQuCW5QRwwEw-6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.511 [XNIO-1 task-1] rRJghSQqQuCW5QRwwEw-6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.511 [XNIO-1 task-1] rRJghSQqQuCW5QRwwEw-6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.511 [XNIO-1 task-1] rRJghSQqQuCW5QRwwEw-6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.511 [XNIO-1 task-1] rRJghSQqQuCW5QRwwEw-6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.514 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3ab3d0c2-9cc4-4116-9323-b123da045cf3 +19:00:48.519 [XNIO-1 task-1] HqoFDZ0USGGEf8CBjgevuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.519 [XNIO-1 task-1] HqoFDZ0USGGEf8CBjgevuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.519 [XNIO-1 task-1] HqoFDZ0USGGEf8CBjgevuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.519 [XNIO-1 task-1] HqoFDZ0USGGEf8CBjgevuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/966cd83e-d8e5-404b-9ea5-23057245b0f5, base path is set to: null +19:00:48.519 [XNIO-1 task-1] HqoFDZ0USGGEf8CBjgevuA DEBUG com.networknt.schema.TypeValidator debug - validate( "966cd83e-d8e5-404b-9ea5-23057245b0f5", "966cd83e-d8e5-404b-9ea5-23057245b0f5", refreshToken) +19:00:48.520 [XNIO-1 task-1] HqoFDZ0USGGEf8CBjgevuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 966cd83e-d8e5-404b-9ea5-23057245b0f5 is not found.","severity":"ERROR"} +19:00:48.526 [XNIO-1 task-1] pV860aV_SJ-bz-EDijE8Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.526 [XNIO-1 task-1] pV860aV_SJ-bz-EDijE8Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.526 [XNIO-1 task-1] pV860aV_SJ-bz-EDijE8Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.526 [XNIO-1 task-1] pV860aV_SJ-bz-EDijE8Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.527 [XNIO-1 task-1] pV860aV_SJ-bz-EDijE8Zg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.529 [XNIO-1 task-1] wZrFj9pPSd6o-aSzctoqtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.529 [XNIO-1 task-1] wZrFj9pPSd6o-aSzctoqtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.529 [XNIO-1 task-1] wZrFj9pPSd6o-aSzctoqtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.529 [XNIO-1 task-1] wZrFj9pPSd6o-aSzctoqtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.529 [XNIO-1 task-1] wZrFj9pPSd6o-aSzctoqtA DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:48.532 [XNIO-1 task-1] pO8yRxUlSaudGVDjIOceqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.533 [XNIO-1 task-1] pO8yRxUlSaudGVDjIOceqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.533 [XNIO-1 task-1] pO8yRxUlSaudGVDjIOceqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.533 [XNIO-1 task-1] pO8yRxUlSaudGVDjIOceqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013, base path is set to: null +19:00:48.533 [XNIO-1 task-1] pO8yRxUlSaudGVDjIOceqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", "8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013", refreshToken) +19:00:48.533 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8ecb23f6-b4b8-4efd-8dce-34cbfd8fa013 +19:00:48.545 [XNIO-1 task-1] Y04gP1MKQoO4lehme7lmrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.546 [XNIO-1 task-1] Y04gP1MKQoO4lehme7lmrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.546 [XNIO-1 task-1] Y04gP1MKQoO4lehme7lmrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.546 [XNIO-1 task-1] Y04gP1MKQoO4lehme7lmrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.546 [XNIO-1 task-1] Y04gP1MKQoO4lehme7lmrw DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:48.563 [XNIO-1 task-1] Xhz_VklkTwOFT4lSD-kDgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.563 [XNIO-1 task-1] Xhz_VklkTwOFT4lSD-kDgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.563 [XNIO-1 task-1] Xhz_VklkTwOFT4lSD-kDgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.563 [XNIO-1 task-1] Xhz_VklkTwOFT4lSD-kDgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.563 [XNIO-1 task-1] Xhz_VklkTwOFT4lSD-kDgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:48.566 [XNIO-1 task-1] Xhz_VklkTwOFT4lSD-kDgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:48.573 [XNIO-1 task-1] JzQdtSAYSI-RKe6MFjfjRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.574 [XNIO-1 task-1] JzQdtSAYSI-RKe6MFjfjRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.574 [XNIO-1 task-1] JzQdtSAYSI-RKe6MFjfjRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.574 [XNIO-1 task-1] JzQdtSAYSI-RKe6MFjfjRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.586 [XNIO-1 task-1] s7J0lovBRiuPwcVC_RTWHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.586 [XNIO-1 task-1] s7J0lovBRiuPwcVC_RTWHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.586 [XNIO-1 task-1] s7J0lovBRiuPwcVC_RTWHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.587 [XNIO-1 task-1] s7J0lovBRiuPwcVC_RTWHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.587 [XNIO-1 task-1] s7J0lovBRiuPwcVC_RTWHw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.594 [XNIO-1 task-1] m5PWdhPCToiZcppxtwrCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.594 [XNIO-1 task-1] m5PWdhPCToiZcppxtwrCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.595 [XNIO-1 task-1] m5PWdhPCToiZcppxtwrCTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.595 [XNIO-1 task-1] m5PWdhPCToiZcppxtwrCTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.604 [XNIO-1 task-1] 4F8uVYrPR6-AbAnwNYXAjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.604 [XNIO-1 task-1] 4F8uVYrPR6-AbAnwNYXAjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.604 [XNIO-1 task-1] 4F8uVYrPR6-AbAnwNYXAjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.604 [XNIO-1 task-1] 4F8uVYrPR6-AbAnwNYXAjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.605 [XNIO-1 task-1] 4F8uVYrPR6-AbAnwNYXAjg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.614 [XNIO-1 task-1] Ewwqo-9fQMmhMijExLBxRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.614 [XNIO-1 task-1] Ewwqo-9fQMmhMijExLBxRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.614 [XNIO-1 task-1] Ewwqo-9fQMmhMijExLBxRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.615 [XNIO-1 task-1] Ewwqo-9fQMmhMijExLBxRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.615 [XNIO-1 task-1] Ewwqo-9fQMmhMijExLBxRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.622 [XNIO-1 task-1] dkvQBRVRQeGf92ZpTDQN8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.622 [XNIO-1 task-1] dkvQBRVRQeGf92ZpTDQN8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.622 [XNIO-1 task-1] dkvQBRVRQeGf92ZpTDQN8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.623 [XNIO-1 task-1] dkvQBRVRQeGf92ZpTDQN8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.623 [XNIO-1 task-1] dkvQBRVRQeGf92ZpTDQN8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.634 [XNIO-1 task-1] uW-FZ-DuTIK6nCmTrBbHLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:48.634 [XNIO-1 task-1] uW-FZ-DuTIK6nCmTrBbHLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.634 [XNIO-1 task-1] uW-FZ-DuTIK6nCmTrBbHLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.635 [XNIO-1 task-1] uW-FZ-DuTIK6nCmTrBbHLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:48.635 [XNIO-1 task-1] uW-FZ-DuTIK6nCmTrBbHLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:48.649 [XNIO-1 task-1] F0WeMlIdR7qnrPe0jc6pYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.649 [XNIO-1 task-1] F0WeMlIdR7qnrPe0jc6pYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.649 [XNIO-1 task-1] F0WeMlIdR7qnrPe0jc6pYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.650 [XNIO-1 task-1] F0WeMlIdR7qnrPe0jc6pYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.650 [XNIO-1 task-1] F0WeMlIdR7qnrPe0jc6pYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.655 [XNIO-1 task-1] 9EepZAvVQ5mD6v8uKpfM2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:48.655 [XNIO-1 task-1] 9EepZAvVQ5mD6v8uKpfM2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.655 [XNIO-1 task-1] 9EepZAvVQ5mD6v8uKpfM2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.655 [XNIO-1 task-1] 9EepZAvVQ5mD6v8uKpfM2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:48.656 [XNIO-1 task-1] 9EepZAvVQ5mD6v8uKpfM2A DEBUG com.networknt.schema.TypeValidator debug - validate( "770c6642-3c8e-47b6-a91c-de2e182b82e2", "770c6642-3c8e-47b6-a91c-de2e182b82e2", refreshToken) +19:00:48.656 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:48.662 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fe82f4bd +19:00:48.664 [XNIO-1 task-1] XE7aGOxSSaeiHX7yaCSeag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.664 [XNIO-1 task-1] XE7aGOxSSaeiHX7yaCSeag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.664 [XNIO-1 task-1] XE7aGOxSSaeiHX7yaCSeag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.664 [XNIO-1 task-1] XE7aGOxSSaeiHX7yaCSeag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.665 [XNIO-1 task-1] XE7aGOxSSaeiHX7yaCSeag DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.665 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fe82f4bd +19:00:48.670 [XNIO-1 task-1] BOi-Q_jeQGCpqSvz6QhIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.670 [XNIO-1 task-1] BOi-Q_jeQGCpqSvz6QhIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.671 [XNIO-1 task-1] BOi-Q_jeQGCpqSvz6QhIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.671 [XNIO-1 task-1] BOi-Q_jeQGCpqSvz6QhIhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.671 [XNIO-1 task-1] BOi-Q_jeQGCpqSvz6QhIhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.678 [XNIO-1 task-1] 86LVpWFySmKkpnoI7M6WwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:48.678 [XNIO-1 task-1] 86LVpWFySmKkpnoI7M6WwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.678 [XNIO-1 task-1] 86LVpWFySmKkpnoI7M6WwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.678 [XNIO-1 task-1] 86LVpWFySmKkpnoI7M6WwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:48.679 [XNIO-1 task-1] 86LVpWFySmKkpnoI7M6WwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "770c6642-3c8e-47b6-a91c-de2e182b82e2", "770c6642-3c8e-47b6-a91c-de2e182b82e2", refreshToken) +19:00:48.679 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:48.686 [XNIO-1 task-1] 2_gDeg4xRUWPp41qCgB99Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.688 [XNIO-1 task-1] 2_gDeg4xRUWPp41qCgB99Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.688 [XNIO-1 task-1] 2_gDeg4xRUWPp41qCgB99Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.688 [XNIO-1 task-1] 2_gDeg4xRUWPp41qCgB99Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.688 [XNIO-1 task-1] 2_gDeg4xRUWPp41qCgB99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:48.690 [XNIO-1 task-1] 2_gDeg4xRUWPp41qCgB99Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 68563aee-5ccc-42c2-b55d-bad91dd9b0ca is not found.","severity":"ERROR"} +19:00:48.694 [XNIO-1 task-1] yxwipSG6T4S2d0WzW4lJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.694 [XNIO-1 task-1] yxwipSG6T4S2d0WzW4lJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.694 [XNIO-1 task-1] yxwipSG6T4S2d0WzW4lJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.695 [XNIO-1 task-1] yxwipSG6T4S2d0WzW4lJ0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.695 [XNIO-1 task-1] yxwipSG6T4S2d0WzW4lJ0A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:48.706 [XNIO-1 task-1] MMg0QwCPQLm1wFmAJi7BWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:48.707 [XNIO-1 task-1] MMg0QwCPQLm1wFmAJi7BWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.707 [XNIO-1 task-1] MMg0QwCPQLm1wFmAJi7BWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.707 [XNIO-1 task-1] MMg0QwCPQLm1wFmAJi7BWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:48.707 [XNIO-1 task-1] MMg0QwCPQLm1wFmAJi7BWA DEBUG com.networknt.schema.TypeValidator debug - validate( "770c6642-3c8e-47b6-a91c-de2e182b82e2", "770c6642-3c8e-47b6-a91c-de2e182b82e2", refreshToken) +19:00:48.707 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:48.716 [XNIO-1 task-1] mL7pOxl6S0Kl-ysIkRacnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.716 [XNIO-1 task-1] mL7pOxl6S0Kl-ysIkRacnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.716 [XNIO-1 task-1] mL7pOxl6S0Kl-ysIkRacnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.716 [XNIO-1 task-1] mL7pOxl6S0Kl-ysIkRacnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.717 [XNIO-1 task-1] mL7pOxl6S0Kl-ysIkRacnA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.740 [XNIO-1 task-1] WUPliNSuTVmuRz3xk6VRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.740 [XNIO-1 task-1] WUPliNSuTVmuRz3xk6VRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.740 [XNIO-1 task-1] WUPliNSuTVmuRz3xk6VRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.740 [XNIO-1 task-1] WUPliNSuTVmuRz3xk6VRKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.741 [XNIO-1 task-1] WUPliNSuTVmuRz3xk6VRKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.745 [XNIO-1 task-1] vd2pg7q9RsuPxeb9hYnDvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:48.745 [XNIO-1 task-1] vd2pg7q9RsuPxeb9hYnDvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.745 [XNIO-1 task-1] vd2pg7q9RsuPxeb9hYnDvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.745 [XNIO-1 task-1] vd2pg7q9RsuPxeb9hYnDvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:48.746 [XNIO-1 task-1] vd2pg7q9RsuPxeb9hYnDvg DEBUG com.networknt.schema.TypeValidator debug - validate( "595971f9-67a4-4c04-b123-6af39a1f435f", "595971f9-67a4-4c04-b123-6af39a1f435f", refreshToken) +19:00:48.746 [XNIO-1 task-1] vd2pg7q9RsuPxeb9hYnDvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 595971f9-67a4-4c04-b123-6af39a1f435f is not found.","severity":"ERROR"} +19:00:48.750 [XNIO-1 task-1] mcxuakMvSPGU4uI4A6Dotg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.750 [XNIO-1 task-1] mcxuakMvSPGU4uI4A6Dotg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.750 [XNIO-1 task-1] mcxuakMvSPGU4uI4A6Dotg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.750 [XNIO-1 task-1] mcxuakMvSPGU4uI4A6Dotg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.750 [XNIO-1 task-1] mcxuakMvSPGU4uI4A6Dotg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.766 [XNIO-1 task-1] akpHt04EQgufiGW34kbkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.766 [XNIO-1 task-1] akpHt04EQgufiGW34kbkjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.766 [XNIO-1 task-1] akpHt04EQgufiGW34kbkjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.766 [XNIO-1 task-1] akpHt04EQgufiGW34kbkjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.767 [XNIO-1 task-1] akpHt04EQgufiGW34kbkjQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.773 [XNIO-1 task-1] XYe-8tUqQEGaWw81zMHrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.773 [XNIO-1 task-1] XYe-8tUqQEGaWw81zMHrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.773 [XNIO-1 task-1] XYe-8tUqQEGaWw81zMHrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.773 [XNIO-1 task-1] XYe-8tUqQEGaWw81zMHrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.775 [XNIO-1 task-1] XYe-8tUqQEGaWw81zMHrJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.777 [XNIO-1 task-1] MxiQpiETTCOK_J-Pa-OvaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.778 [XNIO-1 task-1] MxiQpiETTCOK_J-Pa-OvaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.778 [XNIO-1 task-1] MxiQpiETTCOK_J-Pa-OvaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.779 [XNIO-1 task-1] MxiQpiETTCOK_J-Pa-OvaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.779 [XNIO-1 task-1] MxiQpiETTCOK_J-Pa-OvaA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.780 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a11cbdb +19:00:48.785 [XNIO-1 task-1] DbBfi4AlRo6KrMqMZZaQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.786 [XNIO-1 task-1] DbBfi4AlRo6KrMqMZZaQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.786 [XNIO-1 task-1] DbBfi4AlRo6KrMqMZZaQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.786 [XNIO-1 task-1] DbBfi4AlRo6KrMqMZZaQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.786 [XNIO-1 task-1] DbBfi4AlRo6KrMqMZZaQVw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.790 [XNIO-1 task-1] NoxV8rUzRJm5LC2txEuEPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:48.790 [XNIO-1 task-1] NoxV8rUzRJm5LC2txEuEPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.790 [XNIO-1 task-1] NoxV8rUzRJm5LC2txEuEPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.791 [XNIO-1 task-1] NoxV8rUzRJm5LC2txEuEPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:48.791 [XNIO-1 task-1] NoxV8rUzRJm5LC2txEuEPA DEBUG com.networknt.schema.TypeValidator debug - validate( "c56de993-87b8-4030-a289-78d67e6f30fd", "c56de993-87b8-4030-a289-78d67e6f30fd", refreshToken) +19:00:48.791 [XNIO-1 task-1] NoxV8rUzRJm5LC2txEuEPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c56de993-87b8-4030-a289-78d67e6f30fd is not found.","severity":"ERROR"} +19:00:48.798 [XNIO-1 task-1] a20r-wGSSfyvT7Foa1MFKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.798 [XNIO-1 task-1] a20r-wGSSfyvT7Foa1MFKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.798 [XNIO-1 task-1] a20r-wGSSfyvT7Foa1MFKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.798 [XNIO-1 task-1] a20r-wGSSfyvT7Foa1MFKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.798 [XNIO-1 task-1] a20r-wGSSfyvT7Foa1MFKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.801 [XNIO-1 task-1] PaQlNkX8Ry6sz08Fiq34ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7e64b6d-ac15-4e7a-b029-e570e6729c04, base path is set to: null +19:00:48.801 [XNIO-1 task-1] PaQlNkX8Ry6sz08Fiq34ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.801 [XNIO-1 task-1] PaQlNkX8Ry6sz08Fiq34ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.801 [XNIO-1 task-1] PaQlNkX8Ry6sz08Fiq34ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c7e64b6d-ac15-4e7a-b029-e570e6729c04, base path is set to: null +19:00:48.802 [XNIO-1 task-1] PaQlNkX8Ry6sz08Fiq34ww DEBUG com.networknt.schema.TypeValidator debug - validate( "c7e64b6d-ac15-4e7a-b029-e570e6729c04", "c7e64b6d-ac15-4e7a-b029-e570e6729c04", refreshToken) +19:00:48.804 [XNIO-1 task-1] PaQlNkX8Ry6sz08Fiq34ww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c7e64b6d-ac15-4e7a-b029-e570e6729c04 is not found.","severity":"ERROR"} +19:00:48.806 [XNIO-1 task-1] Ea209Z7TT4GEIbs_c72Nrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.806 [XNIO-1 task-1] Ea209Z7TT4GEIbs_c72Nrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.806 [XNIO-1 task-1] Ea209Z7TT4GEIbs_c72Nrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.806 [XNIO-1 task-1] Ea209Z7TT4GEIbs_c72Nrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.807 [XNIO-1 task-1] Ea209Z7TT4GEIbs_c72Nrg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c56de993-87b8-4030-a289-78d67e6f30fd +19:00:48.809 [XNIO-1 task-1] nnWjd9BfS9aQSX-I4oLS0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:48.810 [XNIO-1 task-1] nnWjd9BfS9aQSX-I4oLS0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.810 [XNIO-1 task-1] nnWjd9BfS9aQSX-I4oLS0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.810 [XNIO-1 task-1] nnWjd9BfS9aQSX-I4oLS0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:48.810 [XNIO-1 task-1] nnWjd9BfS9aQSX-I4oLS0g DEBUG com.networknt.schema.TypeValidator debug - validate( "19cf0787-2015-49a1-9eb9-20bd1c3d472e", "19cf0787-2015-49a1-9eb9-20bd1c3d472e", refreshToken) +19:00:48.810 [XNIO-1 task-1] nnWjd9BfS9aQSX-I4oLS0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19cf0787-2015-49a1-9eb9-20bd1c3d472e is not found.","severity":"ERROR"} +19:00:48.812 [XNIO-1 task-1] rx-2e5f2TBqAFNwTjDNOyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7e64b6d-ac15-4e7a-b029-e570e6729c04 +19:00:48.813 [XNIO-1 task-1] rx-2e5f2TBqAFNwTjDNOyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.813 [XNIO-1 task-1] rx-2e5f2TBqAFNwTjDNOyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.813 [XNIO-1 task-1] rx-2e5f2TBqAFNwTjDNOyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c7e64b6d-ac15-4e7a-b029-e570e6729c04 +19:00:48.813 [XNIO-1 task-1] rx-2e5f2TBqAFNwTjDNOyA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c7e64b6d-ac15-4e7a-b029-e570e6729c04 +19:00:48.816 [XNIO-1 task-1] UB6tG5_NRpWAZM20SUnREA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.816 [XNIO-1 task-1] UB6tG5_NRpWAZM20SUnREA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.816 [XNIO-1 task-1] UB6tG5_NRpWAZM20SUnREA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.816 [XNIO-1 task-1] UB6tG5_NRpWAZM20SUnREA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.816 [XNIO-1 task-1] UB6tG5_NRpWAZM20SUnREA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:48.828 [XNIO-1 task-1] Gb2SsJz-SiKTkQNLA7Kivg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.828 [XNIO-1 task-1] Gb2SsJz-SiKTkQNLA7Kivg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.828 [XNIO-1 task-1] Gb2SsJz-SiKTkQNLA7Kivg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.828 [XNIO-1 task-1] Gb2SsJz-SiKTkQNLA7Kivg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.828 [XNIO-1 task-1] Gb2SsJz-SiKTkQNLA7Kivg DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:48.830 [XNIO-1 task-1] Gb2SsJz-SiKTkQNLA7Kivg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:48.835 [XNIO-1 task-1] R7O0a85YSRmmlI67ND7SHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.835 [XNIO-1 task-1] R7O0a85YSRmmlI67ND7SHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.835 [XNIO-1 task-1] R7O0a85YSRmmlI67ND7SHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.835 [XNIO-1 task-1] R7O0a85YSRmmlI67ND7SHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.836 [XNIO-1 task-1] R7O0a85YSRmmlI67ND7SHA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.838 [XNIO-1 task-1] GliD6Eu8QlyND-JBpBRZHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.838 [XNIO-1 task-1] GliD6Eu8QlyND-JBpBRZHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.838 [XNIO-1 task-1] GliD6Eu8QlyND-JBpBRZHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.839 [XNIO-1 task-1] GliD6Eu8QlyND-JBpBRZHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.839 [XNIO-1 task-1] GliD6Eu8QlyND-JBpBRZHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:48.839 [XNIO-1 task-1] GliD6Eu8QlyND-JBpBRZHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:48.848 [XNIO-1 task-1] hvg7QkYGSZeDMVE0gTQXkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.848 [XNIO-1 task-1] hvg7QkYGSZeDMVE0gTQXkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.848 [XNIO-1 task-1] hvg7QkYGSZeDMVE0gTQXkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.849 [XNIO-1 task-1] hvg7QkYGSZeDMVE0gTQXkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.849 [XNIO-1 task-1] hvg7QkYGSZeDMVE0gTQXkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.855 [XNIO-1 task-1] z7axNi4QQ9-hwtGQoKFvlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.855 [XNIO-1 task-1] z7axNi4QQ9-hwtGQoKFvlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.855 [XNIO-1 task-1] z7axNi4QQ9-hwtGQoKFvlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.856 [XNIO-1 task-1] z7axNi4QQ9-hwtGQoKFvlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.856 [XNIO-1 task-1] z7axNi4QQ9-hwtGQoKFvlw DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:48.856 [XNIO-1 task-1] z7axNi4QQ9-hwtGQoKFvlw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:48.858 [XNIO-1 task-1] fR85AMb9R2OIklYj8PsPew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.859 [XNIO-1 task-1] fR85AMb9R2OIklYj8PsPew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.859 [XNIO-1 task-1] fR85AMb9R2OIklYj8PsPew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.859 [XNIO-1 task-1] fR85AMb9R2OIklYj8PsPew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.859 [XNIO-1 task-1] fR85AMb9R2OIklYj8PsPew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.866 [XNIO-1 task-1] Eb5YpeFVQ0-wgG9GWlJXkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.866 [XNIO-1 task-1] Eb5YpeFVQ0-wgG9GWlJXkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.866 [XNIO-1 task-1] Eb5YpeFVQ0-wgG9GWlJXkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.866 [XNIO-1 task-1] Eb5YpeFVQ0-wgG9GWlJXkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:48.867 [XNIO-1 task-1] Eb5YpeFVQ0-wgG9GWlJXkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:48.867 [XNIO-1 task-1] Eb5YpeFVQ0-wgG9GWlJXkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:48.873 [XNIO-1 task-1] PqRrCZ9BRSqfxbUWwzcGZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.873 [XNIO-1 task-1] PqRrCZ9BRSqfxbUWwzcGZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.873 [XNIO-1 task-1] PqRrCZ9BRSqfxbUWwzcGZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.874 [XNIO-1 task-1] PqRrCZ9BRSqfxbUWwzcGZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.874 [XNIO-1 task-1] PqRrCZ9BRSqfxbUWwzcGZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.880 [XNIO-1 task-1] jGNQeELTQjuwmmtobFNe5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.880 [XNIO-1 task-1] jGNQeELTQjuwmmtobFNe5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.880 [XNIO-1 task-1] jGNQeELTQjuwmmtobFNe5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.881 [XNIO-1 task-1] jGNQeELTQjuwmmtobFNe5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:48.881 [XNIO-1 task-1] jGNQeELTQjuwmmtobFNe5w DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:48.881 [XNIO-1 task-1] jGNQeELTQjuwmmtobFNe5w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 68563aee-5ccc-42c2-b55d-bad91dd9b0ca is not found.","severity":"ERROR"} +19:00:48.893 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:008673a8-7445-4361-9878-8e5bea7d14d8 +19:00:48.905 [XNIO-1 task-1] N2XV2-OUR16rT67A26QWuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.905 [XNIO-1 task-1] N2XV2-OUR16rT67A26QWuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.905 [XNIO-1 task-1] N2XV2-OUR16rT67A26QWuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.905 [XNIO-1 task-1] N2XV2-OUR16rT67A26QWuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.905 [XNIO-1 task-1] N2XV2-OUR16rT67A26QWuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.915 [XNIO-1 task-1] PKwc_xFeQEGYherLtuDUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.915 [XNIO-1 task-1] PKwc_xFeQEGYherLtuDUeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.915 [XNIO-1 task-1] PKwc_xFeQEGYherLtuDUeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.915 [XNIO-1 task-1] PKwc_xFeQEGYherLtuDUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.915 [XNIO-1 task-1] PKwc_xFeQEGYherLtuDUeg DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:48.916 [XNIO-1 task-1] PKwc_xFeQEGYherLtuDUeg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:48.919 [XNIO-1 task-1] L9xI8dbmSgquhLMRoZvAEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.919 [XNIO-1 task-1] L9xI8dbmSgquhLMRoZvAEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.919 [XNIO-1 task-1] L9xI8dbmSgquhLMRoZvAEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.919 [XNIO-1 task-1] L9xI8dbmSgquhLMRoZvAEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.919 [XNIO-1 task-1] L9xI8dbmSgquhLMRoZvAEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.923 [XNIO-1 task-1] TZu0ckkPTPKBKX9--doSjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.923 [XNIO-1 task-1] TZu0ckkPTPKBKX9--doSjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.923 [XNIO-1 task-1] TZu0ckkPTPKBKX9--doSjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.923 [XNIO-1 task-1] TZu0ckkPTPKBKX9--doSjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.923 [XNIO-1 task-1] TZu0ckkPTPKBKX9--doSjA DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:48.923 [XNIO-1 task-1] TZu0ckkPTPKBKX9--doSjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:48.927 [XNIO-1 task-1] c29fYONjQBSgc7wuhqXlNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0, base path is set to: null +19:00:48.927 [XNIO-1 task-1] c29fYONjQBSgc7wuhqXlNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.927 [XNIO-1 task-1] c29fYONjQBSgc7wuhqXlNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.927 [XNIO-1 task-1] c29fYONjQBSgc7wuhqXlNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0, base path is set to: null +19:00:48.927 [XNIO-1 task-1] c29fYONjQBSgc7wuhqXlNg DEBUG com.networknt.schema.TypeValidator debug - validate( "324c181d-b92f-4c06-9854-38e9f0a354e0", "324c181d-b92f-4c06-9854-38e9f0a354e0", refreshToken) +19:00:48.939 [XNIO-1 task-1] 4_mnlrPrQe24qj_SogxGOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.939 [XNIO-1 task-1] 4_mnlrPrQe24qj_SogxGOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.940 [XNIO-1 task-1] 4_mnlrPrQe24qj_SogxGOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:48.940 [XNIO-1 task-1] 4_mnlrPrQe24qj_SogxGOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:48.940 [XNIO-1 task-1] 4_mnlrPrQe24qj_SogxGOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:48.948 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d33bdc48 +19:00:48.950 [XNIO-1 task-1] _Oxm3-QpQw2rtl9zydqgug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.950 [XNIO-1 task-1] _Oxm3-QpQw2rtl9zydqgug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.950 [XNIO-1 task-1] _Oxm3-QpQw2rtl9zydqgug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.951 [XNIO-1 task-1] _Oxm3-QpQw2rtl9zydqgug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:48.969 [XNIO-1 task-1] 9N0wMPP5Q-W-UO3sPLmAfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.969 [XNIO-1 task-1] 9N0wMPP5Q-W-UO3sPLmAfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.969 [XNIO-1 task-1] 9N0wMPP5Q-W-UO3sPLmAfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.970 [XNIO-1 task-1] 9N0wMPP5Q-W-UO3sPLmAfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:48.970 [XNIO-1 task-1] 9N0wMPP5Q-W-UO3sPLmAfg DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:48.970 [XNIO-1 task-1] 9N0wMPP5Q-W-UO3sPLmAfg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:48.974 [XNIO-1 task-1] vhefg7iwTTCo0nfAUFNQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:48.974 [XNIO-1 task-1] vhefg7iwTTCo0nfAUFNQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.974 [XNIO-1 task-1] vhefg7iwTTCo0nfAUFNQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.974 [XNIO-1 task-1] vhefg7iwTTCo0nfAUFNQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:48.974 [XNIO-1 task-1] vhefg7iwTTCo0nfAUFNQcg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:48.977 [XNIO-1 task-1] zH2ZMHFwRFCBZGSPbs0JBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.977 [XNIO-1 task-1] zH2ZMHFwRFCBZGSPbs0JBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:48.977 [XNIO-1 task-1] zH2ZMHFwRFCBZGSPbs0JBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:48.977 [XNIO-1 task-1] zH2ZMHFwRFCBZGSPbs0JBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.978 [XNIO-1 task-1] zH2ZMHFwRFCBZGSPbs0JBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.983 [XNIO-1 task-1] gBA5YUvLRG6g5mjVHxPf0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0, base path is set to: null +19:00:48.984 [XNIO-1 task-1] gBA5YUvLRG6g5mjVHxPf0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:48.988 [XNIO-1 task-1] gBA5YUvLRG6g5mjVHxPf0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:48.988 [XNIO-1 task-1] gBA5YUvLRG6g5mjVHxPf0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0, base path is set to: null +19:00:48.988 [XNIO-1 task-1] gBA5YUvLRG6g5mjVHxPf0A DEBUG com.networknt.schema.TypeValidator debug - validate( "324c181d-b92f-4c06-9854-38e9f0a354e0", "324c181d-b92f-4c06-9854-38e9f0a354e0", refreshToken) +19:00:49.004 [XNIO-1 task-1] 2G1KOH5RROKgMTVFmEd2pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.005 [XNIO-1 task-1] 2G1KOH5RROKgMTVFmEd2pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.005 [XNIO-1 task-1] 2G1KOH5RROKgMTVFmEd2pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.005 [XNIO-1 task-1] 2G1KOH5RROKgMTVFmEd2pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.005 [XNIO-1 task-1] 2G1KOH5RROKgMTVFmEd2pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.007 [XNIO-1 task-1] 2G1KOH5RROKgMTVFmEd2pA DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.007 [XNIO-1 task-1] 2G1KOH5RROKgMTVFmEd2pA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.012 [XNIO-1 task-1] YwuVoEpZTISUnNTF7E4vsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:49.012 [XNIO-1 task-1] YwuVoEpZTISUnNTF7E4vsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.012 [XNIO-1 task-1] YwuVoEpZTISUnNTF7E4vsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.012 [XNIO-1 task-1] YwuVoEpZTISUnNTF7E4vsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f +19:00:49.012 [XNIO-1 task-1] YwuVoEpZTISUnNTF7E4vsg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 595971f9-67a4-4c04-b123-6af39a1f435f +19:00:49.015 [XNIO-1 task-1] A1mzigO7RXedMux_EJ0azQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:49.016 [XNIO-1 task-1] A1mzigO7RXedMux_EJ0azQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.016 [XNIO-1 task-1] A1mzigO7RXedMux_EJ0azQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.016 [XNIO-1 task-1] A1mzigO7RXedMux_EJ0azQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2, base path is set to: null +19:00:49.016 [XNIO-1 task-1] A1mzigO7RXedMux_EJ0azQ DEBUG com.networknt.schema.TypeValidator debug - validate( "770c6642-3c8e-47b6-a91c-de2e182b82e2", "770c6642-3c8e-47b6-a91c-de2e182b82e2", refreshToken) +19:00:49.018 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:49.027 [XNIO-1 task-1] dHv6wh5HT1Wqf8Wb9WOMYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:49.027 [XNIO-1 task-1] dHv6wh5HT1Wqf8Wb9WOMYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.027 [XNIO-1 task-1] dHv6wh5HT1Wqf8Wb9WOMYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.028 [XNIO-1 task-1] dHv6wh5HT1Wqf8Wb9WOMYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/595971f9-67a4-4c04-b123-6af39a1f435f, base path is set to: null +19:00:49.029 [XNIO-1 task-1] dHv6wh5HT1Wqf8Wb9WOMYw DEBUG com.networknt.schema.TypeValidator debug - validate( "595971f9-67a4-4c04-b123-6af39a1f435f", "595971f9-67a4-4c04-b123-6af39a1f435f", refreshToken) +19:00:49.029 [XNIO-1 task-1] dHv6wh5HT1Wqf8Wb9WOMYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 595971f9-67a4-4c04-b123-6af39a1f435f is not found.","severity":"ERROR"} +19:00:49.034 [XNIO-1 task-1] KNi55wYoTHicZrAK5Km1fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:49.034 [XNIO-1 task-1] KNi55wYoTHicZrAK5Km1fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.034 [XNIO-1 task-1] KNi55wYoTHicZrAK5Km1fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.035 [XNIO-1 task-1] KNi55wYoTHicZrAK5Km1fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:49.035 [XNIO-1 task-1] KNi55wYoTHicZrAK5Km1fA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:49.036 [XNIO-1 task-1] KNi55wYoTHicZrAK5Km1fA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 770c6642-3c8e-47b6-a91c-de2e182b82e2 is not found.","severity":"ERROR"} +19:00:49.039 [XNIO-1 task-1] 5463w5Z2QxS1l7QXRTLWOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.039 [XNIO-1 task-1] 5463w5Z2QxS1l7QXRTLWOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.039 [XNIO-1 task-1] 5463w5Z2QxS1l7QXRTLWOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.039 [XNIO-1 task-1] 5463w5Z2QxS1l7QXRTLWOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.041 [XNIO-1 task-1] 5463w5Z2QxS1l7QXRTLWOg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.056 [XNIO-1 task-1] lNcqOLnjT5eQgTqsYjUI6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.056 [XNIO-1 task-1] lNcqOLnjT5eQgTqsYjUI6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.056 [XNIO-1 task-1] lNcqOLnjT5eQgTqsYjUI6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.056 [XNIO-1 task-1] lNcqOLnjT5eQgTqsYjUI6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.057 [XNIO-1 task-1] lNcqOLnjT5eQgTqsYjUI6A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.075 [XNIO-1 task-1] vAXa_JsFS9Wgvehsc-OUSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.076 [XNIO-1 task-1] vAXa_JsFS9Wgvehsc-OUSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.076 [XNIO-1 task-1] vAXa_JsFS9Wgvehsc-OUSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.076 [XNIO-1 task-1] vAXa_JsFS9Wgvehsc-OUSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.077 [XNIO-1 task-1] vAXa_JsFS9Wgvehsc-OUSQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.084 [XNIO-1 task-1] R7X6zrBET_GGvStmbkRGhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.085 [XNIO-1 task-1] R7X6zrBET_GGvStmbkRGhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.085 [XNIO-1 task-1] R7X6zrBET_GGvStmbkRGhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.085 [XNIO-1 task-1] R7X6zrBET_GGvStmbkRGhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.085 [XNIO-1 task-1] R7X6zrBET_GGvStmbkRGhg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.091 [XNIO-1 task-1] eHmUuTNdQ9ODomUbmacK7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:49.091 [XNIO-1 task-1] eHmUuTNdQ9ODomUbmacK7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.091 [XNIO-1 task-1] eHmUuTNdQ9ODomUbmacK7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.091 [XNIO-1 task-1] eHmUuTNdQ9ODomUbmacK7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e, base path is set to: null +19:00:49.092 [XNIO-1 task-1] eHmUuTNdQ9ODomUbmacK7g DEBUG com.networknt.schema.TypeValidator debug - validate( "19cf0787-2015-49a1-9eb9-20bd1c3d472e", "19cf0787-2015-49a1-9eb9-20bd1c3d472e", refreshToken) +19:00:49.092 [XNIO-1 task-1] eHmUuTNdQ9ODomUbmacK7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19cf0787-2015-49a1-9eb9-20bd1c3d472e is not found.","severity":"ERROR"} +19:00:49.104 [XNIO-1 task-1] 8LFQjeE3TdaBHIJgDTdeHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.104 [XNIO-1 task-1] 8LFQjeE3TdaBHIJgDTdeHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.104 [XNIO-1 task-1] 8LFQjeE3TdaBHIJgDTdeHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.104 [XNIO-1 task-1] 8LFQjeE3TdaBHIJgDTdeHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.105 [XNIO-1 task-1] 8LFQjeE3TdaBHIJgDTdeHw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.106 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:770c6642-3c8e-47b6-a91c-de2e182b82e2 +19:00:49.108 [XNIO-1 task-1] ZAP2vSzkTMe7QTfTAo1muA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.108 [XNIO-1 task-1] ZAP2vSzkTMe7QTfTAo1muA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.108 [XNIO-1 task-1] ZAP2vSzkTMe7QTfTAo1muA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.108 [XNIO-1 task-1] ZAP2vSzkTMe7QTfTAo1muA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.115 [XNIO-1 task-1] zfHUUfhDTTGb1jSIo9XHjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.115 [XNIO-1 task-1] zfHUUfhDTTGb1jSIo9XHjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.115 [XNIO-1 task-1] zfHUUfhDTTGb1jSIo9XHjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.116 [XNIO-1 task-1] zfHUUfhDTTGb1jSIo9XHjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.117 [XNIO-1 task-1] zfHUUfhDTTGb1jSIo9XHjg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.126 [XNIO-1 task-1] CBCmOhMPSU2DhsAUNSbIPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.126 [XNIO-1 task-1] CBCmOhMPSU2DhsAUNSbIPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.126 [XNIO-1 task-1] CBCmOhMPSU2DhsAUNSbIPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.126 [XNIO-1 task-1] CBCmOhMPSU2DhsAUNSbIPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.127 [XNIO-1 task-1] CBCmOhMPSU2DhsAUNSbIPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.132 [XNIO-1 task-1] LtODVczGQmGGyXE4Uvcmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:49.133 [XNIO-1 task-1] LtODVczGQmGGyXE4Uvcmtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.133 [XNIO-1 task-1] LtODVczGQmGGyXE4Uvcmtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.133 [XNIO-1 task-1] LtODVczGQmGGyXE4Uvcmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:49.133 [XNIO-1 task-1] LtODVczGQmGGyXE4Uvcmtg DEBUG com.networknt.schema.TypeValidator debug - validate( "c56de993-87b8-4030-a289-78d67e6f30fd", "c56de993-87b8-4030-a289-78d67e6f30fd", refreshToken) +19:00:49.133 [XNIO-1 task-1] LtODVczGQmGGyXE4Uvcmtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c56de993-87b8-4030-a289-78d67e6f30fd is not found.","severity":"ERROR"} +19:00:49.136 [XNIO-1 task-1] GQhTSnAvTEeX0o_7Q84I4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.136 [XNIO-1 task-1] GQhTSnAvTEeX0o_7Q84I4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.136 [XNIO-1 task-1] GQhTSnAvTEeX0o_7Q84I4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.136 [XNIO-1 task-1] GQhTSnAvTEeX0o_7Q84I4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.138 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a9161fe6 +19:00:49.142 [XNIO-1 task-1] IDS7fqICQQWyKdEFKxvikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.142 [XNIO-1 task-1] IDS7fqICQQWyKdEFKxvikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.142 [XNIO-1 task-1] IDS7fqICQQWyKdEFKxvikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.143 [XNIO-1 task-1] IDS7fqICQQWyKdEFKxvikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.143 [XNIO-1 task-1] IDS7fqICQQWyKdEFKxvikQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.143 [XNIO-1 task-1] IDS7fqICQQWyKdEFKxvikQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 19cf0787-2015-49a1-9eb9-20bd1c3d472e is not found.","severity":"ERROR"} +19:00:49.146 [XNIO-1 task-1] dzREDLIoQ9Cd2koUEkwDfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:49.146 [XNIO-1 task-1] dzREDLIoQ9Cd2koUEkwDfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.146 [XNIO-1 task-1] dzREDLIoQ9Cd2koUEkwDfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.146 [XNIO-1 task-1] dzREDLIoQ9Cd2koUEkwDfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:49.147 [XNIO-1 task-1] dzREDLIoQ9Cd2koUEkwDfA DEBUG com.networknt.schema.TypeValidator debug - validate( "c56de993-87b8-4030-a289-78d67e6f30fd", "c56de993-87b8-4030-a289-78d67e6f30fd", refreshToken) +19:00:49.147 [XNIO-1 task-1] dzREDLIoQ9Cd2koUEkwDfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c56de993-87b8-4030-a289-78d67e6f30fd is not found.","severity":"ERROR"} +19:00:49.150 [XNIO-1 task-1] nJvTCvNETmCDp7Bq9Yu-6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.150 [XNIO-1 task-1] nJvTCvNETmCDp7Bq9Yu-6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.151 [XNIO-1 task-1] nJvTCvNETmCDp7Bq9Yu-6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.151 [XNIO-1 task-1] nJvTCvNETmCDp7Bq9Yu-6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.151 [XNIO-1 task-1] nJvTCvNETmCDp7Bq9Yu-6A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:49.155 [XNIO-1 task-1] xvLfBEZ0RcuE3nAsPCWnng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:49.156 [XNIO-1 task-1] xvLfBEZ0RcuE3nAsPCWnng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.156 [XNIO-1 task-1] xvLfBEZ0RcuE3nAsPCWnng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.156 [XNIO-1 task-1] xvLfBEZ0RcuE3nAsPCWnng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd, base path is set to: null +19:00:49.156 [XNIO-1 task-1] xvLfBEZ0RcuE3nAsPCWnng DEBUG com.networknt.schema.TypeValidator debug - validate( "c56de993-87b8-4030-a289-78d67e6f30fd", "c56de993-87b8-4030-a289-78d67e6f30fd", refreshToken) +19:00:49.156 [XNIO-1 task-1] xvLfBEZ0RcuE3nAsPCWnng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c56de993-87b8-4030-a289-78d67e6f30fd is not found.","severity":"ERROR"} +19:00:49.160 [XNIO-1 task-1] f4akZTz8TKWWgetCTjh8ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.163 [XNIO-1 task-1] f4akZTz8TKWWgetCTjh8ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.163 [XNIO-1 task-1] f4akZTz8TKWWgetCTjh8ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.163 [XNIO-1 task-1] f4akZTz8TKWWgetCTjh8ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.164 [XNIO-1 task-1] f4akZTz8TKWWgetCTjh8ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.164 [XNIO-1 task-1] f4akZTz8TKWWgetCTjh8ww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.172 [XNIO-1 task-1] Yr6onwAaRwmaVmRd0tH6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.172 [XNIO-1 task-1] Yr6onwAaRwmaVmRd0tH6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.172 [XNIO-1 task-1] Yr6onwAaRwmaVmRd0tH6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.172 [XNIO-1 task-1] Yr6onwAaRwmaVmRd0tH6FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.173 [XNIO-1 task-1] Yr6onwAaRwmaVmRd0tH6FA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c56de993-87b8-4030-a289-78d67e6f30fd +19:00:49.174 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1628468d +19:00:49.179 [XNIO-1 task-1] q82pf82iR7GLsq9BYF8mTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.179 [XNIO-1 task-1] q82pf82iR7GLsq9BYF8mTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.179 [XNIO-1 task-1] q82pf82iR7GLsq9BYF8mTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.179 [XNIO-1 task-1] q82pf82iR7GLsq9BYF8mTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.179 [XNIO-1 task-1] q82pf82iR7GLsq9BYF8mTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:49.180 [XNIO-1 task-1] q82pf82iR7GLsq9BYF8mTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:49.183 [XNIO-1 task-1] qAs0ZEdDTwaDNJKLblNBzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.184 [XNIO-1 task-1] qAs0ZEdDTwaDNJKLblNBzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.184 [XNIO-1 task-1] qAs0ZEdDTwaDNJKLblNBzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.185 [XNIO-1 task-1] qAs0ZEdDTwaDNJKLblNBzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.203 [XNIO-1 task-1] qAs0ZEdDTwaDNJKLblNBzw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.206 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a9161fe6 +19:00:49.210 [XNIO-1 task-1] 5mIArL8SR2GYnARAtzq_jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.210 [XNIO-1 task-1] 5mIArL8SR2GYnARAtzq_jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.212 [XNIO-1 task-1] 5mIArL8SR2GYnARAtzq_jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.212 [XNIO-1 task-1] 5mIArL8SR2GYnARAtzq_jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:49.213 [XNIO-1 task-1] 5mIArL8SR2GYnARAtzq_jg DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:49.213 [XNIO-1 task-1] 5mIArL8SR2GYnARAtzq_jg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 68563aee-5ccc-42c2-b55d-bad91dd9b0ca is not found.","severity":"ERROR"} +19:00:49.217 [XNIO-1 task-1] IgorENDVRq-7ikjGOEI4mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.218 [XNIO-1 task-1] IgorENDVRq-7ikjGOEI4mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.218 [XNIO-1 task-1] IgorENDVRq-7ikjGOEI4mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.218 [XNIO-1 task-1] IgorENDVRq-7ikjGOEI4mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.218 [XNIO-1 task-1] IgorENDVRq-7ikjGOEI4mw DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:49.220 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:44a74070 +19:00:49.222 [XNIO-1 task-1] IgorENDVRq-7ikjGOEI4mw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:49.226 [XNIO-1 task-1] uyJ8KoYmR7O3Rqj5OA_O-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.226 [XNIO-1 task-1] uyJ8KoYmR7O3Rqj5OA_O-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.226 [XNIO-1 task-1] uyJ8KoYmR7O3Rqj5OA_O-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.226 [XNIO-1 task-1] uyJ8KoYmR7O3Rqj5OA_O-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.227 [XNIO-1 task-1] uyJ8KoYmR7O3Rqj5OA_O-A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.230 [XNIO-1 task-1] QoEo63SeTFSNkqOvvJHviw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.230 [XNIO-1 task-1] QoEo63SeTFSNkqOvvJHviw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.231 [XNIO-1 task-1] QoEo63SeTFSNkqOvvJHviw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.231 [XNIO-1 task-1] QoEo63SeTFSNkqOvvJHviw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.231 [XNIO-1 task-1] QoEo63SeTFSNkqOvvJHviw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.242 [XNIO-1 task-1] zmoYJHymT6arGB-Xaf1kJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.242 [XNIO-1 task-1] zmoYJHymT6arGB-Xaf1kJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.242 [XNIO-1 task-1] zmoYJHymT6arGB-Xaf1kJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.242 [XNIO-1 task-1] zmoYJHymT6arGB-Xaf1kJw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.243 [XNIO-1 task-1] zmoYJHymT6arGB-Xaf1kJw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.251 [XNIO-1 task-1] 2_L5oNf3QnKT2nHI8gfdIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.251 [XNIO-1 task-1] 2_L5oNf3QnKT2nHI8gfdIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.252 [XNIO-1 task-1] 2_L5oNf3QnKT2nHI8gfdIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.252 [XNIO-1 task-1] 2_L5oNf3QnKT2nHI8gfdIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.252 [XNIO-1 task-1] 2_L5oNf3QnKT2nHI8gfdIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:49.252 [XNIO-1 task-1] 2_L5oNf3QnKT2nHI8gfdIQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:49.261 [XNIO-1 task-1] GxnexPM-TTKn6uXPvSCY9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.261 [XNIO-1 task-1] GxnexPM-TTKn6uXPvSCY9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.261 [XNIO-1 task-1] GxnexPM-TTKn6uXPvSCY9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.261 [XNIO-1 task-1] GxnexPM-TTKn6uXPvSCY9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.261 [XNIO-1 task-1] GxnexPM-TTKn6uXPvSCY9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.269 [XNIO-1 task-1] aMnfx6gORY6eR2FT2iCt-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.269 [XNIO-1 task-1] aMnfx6gORY6eR2FT2iCt-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.269 [XNIO-1 task-1] aMnfx6gORY6eR2FT2iCt-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.269 [XNIO-1 task-1] aMnfx6gORY6eR2FT2iCt-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.269 [XNIO-1 task-1] aMnfx6gORY6eR2FT2iCt-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:49.270 [XNIO-1 task-1] aMnfx6gORY6eR2FT2iCt-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:49.275 [XNIO-1 task-1] WdYQpByHQi--Il81mzNiBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.275 [XNIO-1 task-1] WdYQpByHQi--Il81mzNiBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.275 [XNIO-1 task-1] WdYQpByHQi--Il81mzNiBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.275 [XNIO-1 task-1] WdYQpByHQi--Il81mzNiBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.276 [XNIO-1 task-1] WdYQpByHQi--Il81mzNiBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:49.278 [XNIO-1 task-1] _6UXGMv1QBCwtGvfr27XrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:49.278 [XNIO-1 task-1] _6UXGMv1QBCwtGvfr27XrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.278 [XNIO-1 task-1] _6UXGMv1QBCwtGvfr27XrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.278 [XNIO-1 task-1] _6UXGMv1QBCwtGvfr27XrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:49.279 [XNIO-1 task-1] _6UXGMv1QBCwtGvfr27XrA DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:49.279 [XNIO-1 task-1] _6UXGMv1QBCwtGvfr27XrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 68563aee-5ccc-42c2-b55d-bad91dd9b0ca is not found.","severity":"ERROR"} +19:00:49.282 [XNIO-1 task-1] e6Wr_6w7TPybOI1-EpB0-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.283 [XNIO-1 task-1] e6Wr_6w7TPybOI1-EpB0-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.283 [XNIO-1 task-1] e6Wr_6w7TPybOI1-EpB0-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.283 [XNIO-1 task-1] e6Wr_6w7TPybOI1-EpB0-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.283 [XNIO-1 task-1] e6Wr_6w7TPybOI1-EpB0-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.284 [XNIO-1 task-1] e6Wr_6w7TPybOI1-EpB0-g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.292 [XNIO-1 task-1] nJDvJe4AQgSRf6IGdbhxwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.292 [XNIO-1 task-1] nJDvJe4AQgSRf6IGdbhxwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.292 [XNIO-1 task-1] nJDvJe4AQgSRf6IGdbhxwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.293 [XNIO-1 task-1] nJDvJe4AQgSRf6IGdbhxwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.293 [XNIO-1 task-1] nJDvJe4AQgSRf6IGdbhxwQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.310 [XNIO-1 task-1] TpJDHfAISHekI5n7NsyFqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.310 [XNIO-1 task-1] TpJDHfAISHekI5n7NsyFqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.311 [XNIO-1 task-1] TpJDHfAISHekI5n7NsyFqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.311 [XNIO-1 task-1] TpJDHfAISHekI5n7NsyFqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.311 [XNIO-1 task-1] TpJDHfAISHekI5n7NsyFqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.332 [XNIO-1 task-1] knyxm2mtSdKT6NHtKWnmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.332 [XNIO-1 task-1] knyxm2mtSdKT6NHtKWnmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.332 [XNIO-1 task-1] knyxm2mtSdKT6NHtKWnmMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.333 [XNIO-1 task-1] knyxm2mtSdKT6NHtKWnmMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.340 [XNIO-1 task-1] JJalihbLSxSUZW1BnB739A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.341 [XNIO-1 task-1] JJalihbLSxSUZW1BnB739A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.341 [XNIO-1 task-1] JJalihbLSxSUZW1BnB739A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.341 [XNIO-1 task-1] JJalihbLSxSUZW1BnB739A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.341 [XNIO-1 task-1] JJalihbLSxSUZW1BnB739A DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.341 [XNIO-1 task-1] JJalihbLSxSUZW1BnB739A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.345 [XNIO-1 task-1] vliLiC8MQX23W24lfOC6eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.345 [XNIO-1 task-1] vliLiC8MQX23W24lfOC6eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.345 [XNIO-1 task-1] vliLiC8MQX23W24lfOC6eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.346 [XNIO-1 task-1] vliLiC8MQX23W24lfOC6eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.346 [XNIO-1 task-1] vliLiC8MQX23W24lfOC6eA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.352 [XNIO-1 task-1] t-x9ffyhQBq7Esqie-2Qdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.353 [XNIO-1 task-1] t-x9ffyhQBq7Esqie-2Qdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.353 [XNIO-1 task-1] t-x9ffyhQBq7Esqie-2Qdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.353 [XNIO-1 task-1] t-x9ffyhQBq7Esqie-2Qdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.353 [XNIO-1 task-1] t-x9ffyhQBq7Esqie-2Qdg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.364 [XNIO-1 task-1] QciB95LiTm6YQbbRW3jgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.364 [XNIO-1 task-1] QciB95LiTm6YQbbRW3jgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.364 [XNIO-1 task-1] QciB95LiTm6YQbbRW3jgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.364 [XNIO-1 task-1] QciB95LiTm6YQbbRW3jgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.364 [XNIO-1 task-1] QciB95LiTm6YQbbRW3jgZA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.369 [XNIO-1 task-1] Dp9YmbmRSsCvFpRzwmwV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.369 [XNIO-1 task-1] Dp9YmbmRSsCvFpRzwmwV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.369 [XNIO-1 task-1] Dp9YmbmRSsCvFpRzwmwV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.369 [XNIO-1 task-1] Dp9YmbmRSsCvFpRzwmwV9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.370 [XNIO-1 task-1] Dp9YmbmRSsCvFpRzwmwV9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.373 [XNIO-1 task-1] s5fvgDxmQXSblGKbaUQavA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0, base path is set to: null +19:00:49.373 [XNIO-1 task-1] s5fvgDxmQXSblGKbaUQavA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.373 [XNIO-1 task-1] s5fvgDxmQXSblGKbaUQavA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.373 [XNIO-1 task-1] s5fvgDxmQXSblGKbaUQavA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0, base path is set to: null +19:00:49.373 [XNIO-1 task-1] s5fvgDxmQXSblGKbaUQavA DEBUG com.networknt.schema.TypeValidator debug - validate( "324c181d-b92f-4c06-9854-38e9f0a354e0", "324c181d-b92f-4c06-9854-38e9f0a354e0", refreshToken) +19:00:49.375 [XNIO-1 task-1] s5fvgDxmQXSblGKbaUQavA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 324c181d-b92f-4c06-9854-38e9f0a354e0 is not found.","severity":"ERROR"} +19:00:49.379 [XNIO-1 task-1] aKX56fdhTUmIschJfGfatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.379 [XNIO-1 task-1] aKX56fdhTUmIschJfGfatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.379 [XNIO-1 task-1] aKX56fdhTUmIschJfGfatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.379 [XNIO-1 task-1] aKX56fdhTUmIschJfGfatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.379 [XNIO-1 task-1] aKX56fdhTUmIschJfGfatA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.388 [XNIO-1 task-1] jp5ZIpvqRrKmqD_Tn-Vh5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.388 [XNIO-1 task-1] jp5ZIpvqRrKmqD_Tn-Vh5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.388 [XNIO-1 task-1] jp5ZIpvqRrKmqD_Tn-Vh5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.388 [XNIO-1 task-1] jp5ZIpvqRrKmqD_Tn-Vh5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.389 [XNIO-1 task-1] jp5ZIpvqRrKmqD_Tn-Vh5Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.418 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9183f617-6409-49eb-8227-058d59d46a95 +19:00:49.418 [XNIO-1 task-1] Pebf2NafSP6Z55jNv4wGQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:49.423 [XNIO-1 task-1] Pebf2NafSP6Z55jNv4wGQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.423 [XNIO-1 task-1] Pebf2NafSP6Z55jNv4wGQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.423 [XNIO-1 task-1] Pebf2NafSP6Z55jNv4wGQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:49.423 [XNIO-1 task-1] Pebf2NafSP6Z55jNv4wGQg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:49.429 [XNIO-1 task-1] 4xJtH1faSSaE-i8eHiwG8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.429 [XNIO-1 task-1] 4xJtH1faSSaE-i8eHiwG8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.429 [XNIO-1 task-1] 4xJtH1faSSaE-i8eHiwG8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.430 [XNIO-1 task-1] 4xJtH1faSSaE-i8eHiwG8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.430 [XNIO-1 task-1] 4xJtH1faSSaE-i8eHiwG8A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.457 [XNIO-1 task-1] lKsrarmiRSyJznZmuP4fDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.457 [XNIO-1 task-1] lKsrarmiRSyJznZmuP4fDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.457 [XNIO-1 task-1] lKsrarmiRSyJznZmuP4fDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.457 [XNIO-1 task-1] lKsrarmiRSyJznZmuP4fDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.458 [XNIO-1 task-1] lKsrarmiRSyJznZmuP4fDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.464 [XNIO-1 task-1] SM-E8dqaSBGORcwdv90jWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.464 [XNIO-1 task-1] SM-E8dqaSBGORcwdv90jWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.464 [XNIO-1 task-1] SM-E8dqaSBGORcwdv90jWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.464 [XNIO-1 task-1] SM-E8dqaSBGORcwdv90jWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.465 [XNIO-1 task-1] SM-E8dqaSBGORcwdv90jWg DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.465 [XNIO-1 task-1] SM-E8dqaSBGORcwdv90jWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.468 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9a11cbdb +19:00:49.468 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:13c79e93 +19:00:49.470 [XNIO-1 task-1] -qD-2xcwSKmj4E9eMPbKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.470 [XNIO-1 task-1] -qD-2xcwSKmj4E9eMPbKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.470 [XNIO-1 task-1] -qD-2xcwSKmj4E9eMPbKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.470 [XNIO-1 task-1] -qD-2xcwSKmj4E9eMPbKTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.470 [XNIO-1 task-1] -qD-2xcwSKmj4E9eMPbKTw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.473 [XNIO-1 task-1] PC68oIzARaC5uDOt8mnFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.473 [XNIO-1 task-1] PC68oIzARaC5uDOt8mnFtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.473 [XNIO-1 task-1] PC68oIzARaC5uDOt8mnFtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.473 [XNIO-1 task-1] PC68oIzARaC5uDOt8mnFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.473 [XNIO-1 task-1] PC68oIzARaC5uDOt8mnFtA DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.474 [XNIO-1 task-1] PC68oIzARaC5uDOt8mnFtA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.484 [XNIO-1 task-1] FbYkbBG6TZexXXUrcHcKvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.484 [XNIO-1 task-1] FbYkbBG6TZexXXUrcHcKvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.484 [XNIO-1 task-1] FbYkbBG6TZexXXUrcHcKvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.484 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:612f1ce5 +19:00:49.484 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:612f1ce5 +19:00:49.485 [XNIO-1 task-1] FbYkbBG6TZexXXUrcHcKvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.485 [XNIO-1 task-1] FbYkbBG6TZexXXUrcHcKvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.489 [XNIO-1 task-1] FAtw_EGhTRqfKSV6GS2ViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.489 [XNIO-1 task-1] FAtw_EGhTRqfKSV6GS2ViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.489 [XNIO-1 task-1] FAtw_EGhTRqfKSV6GS2ViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.489 [XNIO-1 task-1] FAtw_EGhTRqfKSV6GS2ViQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.489 [XNIO-1 task-1] FAtw_EGhTRqfKSV6GS2ViQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.495 [XNIO-1 task-1] wQn3dkHpTVSnAGQAXcUuyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.495 [XNIO-1 task-1] wQn3dkHpTVSnAGQAXcUuyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.496 [XNIO-1 task-1] wQn3dkHpTVSnAGQAXcUuyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.496 [XNIO-1 task-1] wQn3dkHpTVSnAGQAXcUuyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.496 [XNIO-1 task-1] wQn3dkHpTVSnAGQAXcUuyA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:49.496 [XNIO-1 task-1] wQn3dkHpTVSnAGQAXcUuyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:49.500 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8e881786 +19:00:49.501 [XNIO-1 task-1] CXCYoUPLRjuBZ2XqD1AQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.501 [XNIO-1 task-1] CXCYoUPLRjuBZ2XqD1AQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.501 [XNIO-1 task-1] CXCYoUPLRjuBZ2XqD1AQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.501 [XNIO-1 task-1] CXCYoUPLRjuBZ2XqD1AQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.501 [XNIO-1 task-1] CXCYoUPLRjuBZ2XqD1AQTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.504 [XNIO-1 task-1] 3YMNP9ZoRgCrmcdCe_qmew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:49.504 [XNIO-1 task-1] 3YMNP9ZoRgCrmcdCe_qmew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.504 [XNIO-1 task-1] 3YMNP9ZoRgCrmcdCe_qmew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.505 [XNIO-1 task-1] 3YMNP9ZoRgCrmcdCe_qmew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:49.505 [XNIO-1 task-1] 3YMNP9ZoRgCrmcdCe_qmew DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:49.505 [XNIO-1 task-1] 3YMNP9ZoRgCrmcdCe_qmew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 68563aee-5ccc-42c2-b55d-bad91dd9b0ca is not found.","severity":"ERROR"} +19:00:49.509 [XNIO-1 task-1] jbpzOODtSqiQ8JT2a7jL7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.509 [XNIO-1 task-1] jbpzOODtSqiQ8JT2a7jL7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.509 [XNIO-1 task-1] jbpzOODtSqiQ8JT2a7jL7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.509 [XNIO-1 task-1] jbpzOODtSqiQ8JT2a7jL7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.510 [XNIO-1 task-1] jbpzOODtSqiQ8JT2a7jL7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.510 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:63103f52-4ea4-4a6f-9377-6e154389f164 +19:00:49.512 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:63103f52-4ea4-4a6f-9377-6e154389f164 +19:00:49.512 [XNIO-1 task-1] mqypEIHATJuuUGygqEz2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.512 [XNIO-1 task-1] mqypEIHATJuuUGygqEz2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.512 [XNIO-1 task-1] mqypEIHATJuuUGygqEz2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.512 [XNIO-1 task-1] mqypEIHATJuuUGygqEz2-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.519 [XNIO-1 task-1] JIpss9myRd6fT0DAnSS3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd, base path is set to: null +19:00:49.519 [XNIO-1 task-1] JIpss9myRd6fT0DAnSS3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.519 [XNIO-1 task-1] JIpss9myRd6fT0DAnSS3Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.519 [XNIO-1 task-1] JIpss9myRd6fT0DAnSS3Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd, base path is set to: null +19:00:49.520 [XNIO-1 task-1] JIpss9myRd6fT0DAnSS3Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "2e90a01e-c7c6-4c99-acca-a17b6b18edfd", "2e90a01e-c7c6-4c99-acca-a17b6b18edfd", refreshToken) +19:00:49.524 [XNIO-1 task-1] xpQprOUTReaXrA7muju7FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.524 [XNIO-1 task-1] xpQprOUTReaXrA7muju7FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.524 [XNIO-1 task-1] xpQprOUTReaXrA7muju7FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.526 [XNIO-1 task-1] xpQprOUTReaXrA7muju7FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.526 [XNIO-1 task-1] xpQprOUTReaXrA7muju7FQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.531 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2e444580-d732-4999-9638-fe326fcbc58b +19:00:49.532 [XNIO-1 task-1] P5SuVHU9Qmusr9ZZ-i1BZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:49.532 [XNIO-1 task-1] P5SuVHU9Qmusr9ZZ-i1BZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.533 [XNIO-1 task-1] P5SuVHU9Qmusr9ZZ-i1BZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.533 [XNIO-1 task-1] P5SuVHU9Qmusr9ZZ-i1BZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68563aee-5ccc-42c2-b55d-bad91dd9b0ca, base path is set to: null +19:00:49.533 [XNIO-1 task-1] P5SuVHU9Qmusr9ZZ-i1BZA DEBUG com.networknt.schema.TypeValidator debug - validate( "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", "68563aee-5ccc-42c2-b55d-bad91dd9b0ca", refreshToken) +19:00:49.534 [XNIO-1 task-1] P5SuVHU9Qmusr9ZZ-i1BZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 68563aee-5ccc-42c2-b55d-bad91dd9b0ca is not found.","severity":"ERROR"} +19:00:49.543 [XNIO-1 task-1] 3Hjk2iJ0S4Ocf2Avg-JUxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.543 [XNIO-1 task-1] 3Hjk2iJ0S4Ocf2Avg-JUxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.543 [XNIO-1 task-1] 3Hjk2iJ0S4Ocf2Avg-JUxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.544 [XNIO-1 task-1] 3Hjk2iJ0S4Ocf2Avg-JUxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.553 [XNIO-1 task-1] 8TLlcAGHSrGT0twx77IReg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.554 [XNIO-1 task-1] 8TLlcAGHSrGT0twx77IReg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.554 [XNIO-1 task-1] 8TLlcAGHSrGT0twx77IReg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.554 [XNIO-1 task-1] 8TLlcAGHSrGT0twx77IReg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.554 [XNIO-1 task-1] 8TLlcAGHSrGT0twx77IReg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.565 [XNIO-1 task-1] 26uyD-04SW6AeR9pPvlHOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.565 [XNIO-1 task-1] 26uyD-04SW6AeR9pPvlHOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.565 [XNIO-1 task-1] 26uyD-04SW6AeR9pPvlHOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.565 [XNIO-1 task-1] 26uyD-04SW6AeR9pPvlHOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.577 [XNIO-1 task-1] AXKp4WCRTfWjlTDCbk4WEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.577 [XNIO-1 task-1] AXKp4WCRTfWjlTDCbk4WEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.577 [XNIO-1 task-1] AXKp4WCRTfWjlTDCbk4WEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.577 [XNIO-1 task-1] AXKp4WCRTfWjlTDCbk4WEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.577 [XNIO-1 task-1] AXKp4WCRTfWjlTDCbk4WEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.588 [XNIO-1 task-1] t5kh1GFsRP6_bbqAS8--Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.588 [XNIO-1 task-1] t5kh1GFsRP6_bbqAS8--Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.588 [XNIO-1 task-1] t5kh1GFsRP6_bbqAS8--Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.588 [XNIO-1 task-1] t5kh1GFsRP6_bbqAS8--Jg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.597 [XNIO-1 task-1] IaBDk7s5Q3-UqBitWbRsTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.597 [XNIO-1 task-1] IaBDk7s5Q3-UqBitWbRsTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.597 [XNIO-1 task-1] IaBDk7s5Q3-UqBitWbRsTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.597 [XNIO-1 task-1] IaBDk7s5Q3-UqBitWbRsTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:49.598 [XNIO-1 task-1] IaBDk7s5Q3-UqBitWbRsTg DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:49.598 [XNIO-1 task-1] IaBDk7s5Q3-UqBitWbRsTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:49.601 [XNIO-1 task-1] O4LZKRuLR0uxFwKircDY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.601 [XNIO-1 task-1] O4LZKRuLR0uxFwKircDY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.601 [XNIO-1 task-1] O4LZKRuLR0uxFwKircDY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.601 [XNIO-1 task-1] O4LZKRuLR0uxFwKircDY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.602 [XNIO-1 task-1] O4LZKRuLR0uxFwKircDY8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.606 [XNIO-1 task-1] W18z5tMwS1uhK3voYOedfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.606 [XNIO-1 task-1] W18z5tMwS1uhK3voYOedfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.607 [XNIO-1 task-1] W18z5tMwS1uhK3voYOedfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.607 [XNIO-1 task-1] W18z5tMwS1uhK3voYOedfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.617 [XNIO-1 task-1] 44WUAzTFSc6FjxUNySBgWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd, base path is set to: null +19:00:49.617 [XNIO-1 task-1] 44WUAzTFSc6FjxUNySBgWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.617 [XNIO-1 task-1] 44WUAzTFSc6FjxUNySBgWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.617 [XNIO-1 task-1] 44WUAzTFSc6FjxUNySBgWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd, base path is set to: null +19:00:49.618 [XNIO-1 task-1] 44WUAzTFSc6FjxUNySBgWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2e90a01e-c7c6-4c99-acca-a17b6b18edfd", "2e90a01e-c7c6-4c99-acca-a17b6b18edfd", refreshToken) +19:00:49.624 [XNIO-1 task-1] fpGptBNCSXW0sUaej00yYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd, base path is set to: null +19:00:49.624 [XNIO-1 task-1] fpGptBNCSXW0sUaej00yYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.624 [XNIO-1 task-1] fpGptBNCSXW0sUaej00yYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.624 [XNIO-1 task-1] fpGptBNCSXW0sUaej00yYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd, base path is set to: null +19:00:49.624 [XNIO-1 task-1] fpGptBNCSXW0sUaej00yYA DEBUG com.networknt.schema.TypeValidator debug - validate( "2e90a01e-c7c6-4c99-acca-a17b6b18edfd", "2e90a01e-c7c6-4c99-acca-a17b6b18edfd", refreshToken) +19:00:49.638 [XNIO-1 task-1] BNjZ1VrCRPm4ktOXCH-rTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.638 [XNIO-1 task-1] BNjZ1VrCRPm4ktOXCH-rTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.638 [XNIO-1 task-1] BNjZ1VrCRPm4ktOXCH-rTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.638 [XNIO-1 task-1] BNjZ1VrCRPm4ktOXCH-rTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.639 [XNIO-1 task-1] BNjZ1VrCRPm4ktOXCH-rTg DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:49.653 [XNIO-1 task-1] bdM4JQrmTTa92zDI0O8gzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.653 [XNIO-1 task-1] bdM4JQrmTTa92zDI0O8gzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.654 [XNIO-1 task-1] bdM4JQrmTTa92zDI0O8gzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.654 [XNIO-1 task-1] bdM4JQrmTTa92zDI0O8gzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.655 [XNIO-1 task-1] bdM4JQrmTTa92zDI0O8gzg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.661 [XNIO-1 task-1] NlJM7C6KTVOgf-EPBNGKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.662 [XNIO-1 task-1] NlJM7C6KTVOgf-EPBNGKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.662 [XNIO-1 task-1] NlJM7C6KTVOgf-EPBNGKZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.662 [XNIO-1 task-1] NlJM7C6KTVOgf-EPBNGKZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.676 [XNIO-1 task-1] 4DseOC4dQ9S1sN6JA59Z0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bcbb36de-6d88-400e-b737-be784fce047b, base path is set to: null +19:00:49.676 [XNIO-1 task-1] 4DseOC4dQ9S1sN6JA59Z0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.676 [XNIO-1 task-1] 4DseOC4dQ9S1sN6JA59Z0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.677 [XNIO-1 task-1] 4DseOC4dQ9S1sN6JA59Z0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bcbb36de-6d88-400e-b737-be784fce047b, base path is set to: null +19:00:49.677 [XNIO-1 task-1] 4DseOC4dQ9S1sN6JA59Z0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bcbb36de-6d88-400e-b737-be784fce047b", "bcbb36de-6d88-400e-b737-be784fce047b", refreshToken) +19:00:49.680 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:13c79e93 +19:00:49.682 [XNIO-1 task-1] QRBI8hHKQFGS2Lyfe1KPvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.682 [XNIO-1 task-1] QRBI8hHKQFGS2Lyfe1KPvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.683 [XNIO-1 task-1] QRBI8hHKQFGS2Lyfe1KPvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.683 [XNIO-1 task-1] QRBI8hHKQFGS2Lyfe1KPvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.683 [XNIO-1 task-1] QRBI8hHKQFGS2Lyfe1KPvw DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:49.694 [XNIO-1 task-1] QRBI8hHKQFGS2Lyfe1KPvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:49.701 [XNIO-1 task-1] Imya3xfcR5y7da1mROgx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bcbb36de-6d88-400e-b737-be784fce047b +19:00:49.701 [XNIO-1 task-1] Imya3xfcR5y7da1mROgx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.701 [XNIO-1 task-1] Imya3xfcR5y7da1mROgx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.701 [XNIO-1 task-1] Imya3xfcR5y7da1mROgx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bcbb36de-6d88-400e-b737-be784fce047b +19:00:49.702 [XNIO-1 task-1] Imya3xfcR5y7da1mROgx4w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bcbb36de-6d88-400e-b737-be784fce047b +19:00:49.706 [XNIO-1 task-1] 3aOR8gffQi6HVV0anh2BYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.706 [XNIO-1 task-1] 3aOR8gffQi6HVV0anh2BYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.707 [XNIO-1 task-1] 3aOR8gffQi6HVV0anh2BYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.707 [XNIO-1 task-1] 3aOR8gffQi6HVV0anh2BYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.707 [XNIO-1 task-1] 3aOR8gffQi6HVV0anh2BYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.709 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:44a74070 +19:00:49.710 [XNIO-1 task-1] lqb1bV46RxyTnVLTKDUqgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.710 [XNIO-1 task-1] lqb1bV46RxyTnVLTKDUqgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.710 [XNIO-1 task-1] lqb1bV46RxyTnVLTKDUqgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.711 [XNIO-1 task-1] lqb1bV46RxyTnVLTKDUqgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.712 [XNIO-1 task-1] lqb1bV46RxyTnVLTKDUqgA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.722 [XNIO-1 task-1] OJAGpcawSTm9B5hNPeS7yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96 +19:00:49.722 [XNIO-1 task-1] OJAGpcawSTm9B5hNPeS7yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.722 [XNIO-1 task-1] OJAGpcawSTm9B5hNPeS7yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.722 [XNIO-1 task-1] OJAGpcawSTm9B5hNPeS7yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96 +19:00:49.723 [XNIO-1 task-1] OJAGpcawSTm9B5hNPeS7yA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5382b354-900e-457e-80fc-8faa94681f96 +19:00:49.730 [XNIO-1 task-1] htBfp3pgQ5iU4hC2E7serg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.730 [XNIO-1 task-1] htBfp3pgQ5iU4hC2E7serg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.730 [XNIO-1 task-1] htBfp3pgQ5iU4hC2E7serg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.730 [XNIO-1 task-1] htBfp3pgQ5iU4hC2E7serg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.731 [XNIO-1 task-1] htBfp3pgQ5iU4hC2E7serg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.738 [XNIO-1 task-1] lUq1neNsTOe49JtWPwqpLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.739 [XNIO-1 task-1] lUq1neNsTOe49JtWPwqpLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.739 [XNIO-1 task-1] lUq1neNsTOe49JtWPwqpLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.739 [XNIO-1 task-1] lUq1neNsTOe49JtWPwqpLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.739 [XNIO-1 task-1] lUq1neNsTOe49JtWPwqpLw DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:49.739 [XNIO-1 task-1] lUq1neNsTOe49JtWPwqpLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:49.742 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1628468d +19:00:49.744 [XNIO-1 task-1] NeT8rJuEQyiXkW5RpeADOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.744 [XNIO-1 task-1] NeT8rJuEQyiXkW5RpeADOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.744 [XNIO-1 task-1] NeT8rJuEQyiXkW5RpeADOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.749 [XNIO-1 task-1] NeT8rJuEQyiXkW5RpeADOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.755 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:612f1ce5 +19:00:49.759 [XNIO-1 task-1] E1IwrBE7QW6IOOxrNp8ifA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.759 [XNIO-1 task-1] E1IwrBE7QW6IOOxrNp8ifA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.759 [XNIO-1 task-1] E1IwrBE7QW6IOOxrNp8ifA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.759 [XNIO-1 task-1] E1IwrBE7QW6IOOxrNp8ifA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.760 [XNIO-1 task-1] E1IwrBE7QW6IOOxrNp8ifA DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.760 [XNIO-1 task-1] E1IwrBE7QW6IOOxrNp8ifA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.767 [XNIO-1 task-1] C9YUcFyGRtaX__cYBsVw3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.767 [XNIO-1 task-1] C9YUcFyGRtaX__cYBsVw3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.767 [XNIO-1 task-1] C9YUcFyGRtaX__cYBsVw3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.768 [XNIO-1 task-1] C9YUcFyGRtaX__cYBsVw3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.768 [XNIO-1 task-1] C9YUcFyGRtaX__cYBsVw3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.773 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1628468d +19:00:49.779 [XNIO-1 task-1] XMFPtcCJTmCk3kg8X6CGtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.779 [XNIO-1 task-1] XMFPtcCJTmCk3kg8X6CGtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.779 [XNIO-1 task-1] XMFPtcCJTmCk3kg8X6CGtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.780 [XNIO-1 task-1] XMFPtcCJTmCk3kg8X6CGtA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.786 [XNIO-1 task-1] M4hlYiULQNucexQX-el2BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.786 [XNIO-1 task-1] M4hlYiULQNucexQX-el2BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.787 [XNIO-1 task-1] M4hlYiULQNucexQX-el2BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.787 [XNIO-1 task-1] M4hlYiULQNucexQX-el2BA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.787 [XNIO-1 task-1] M4hlYiULQNucexQX-el2BA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.793 [XNIO-1 task-1] 9G641ECARw-bT9EP_bJ3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.793 [XNIO-1 task-1] 9G641ECARw-bT9EP_bJ3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.793 [XNIO-1 task-1] 9G641ECARw-bT9EP_bJ3sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.794 [XNIO-1 task-1] 9G641ECARw-bT9EP_bJ3sw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.798 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:392c586a +19:00:49.802 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:392c586a +19:00:49.803 [XNIO-1 task-1] qnWrlG1bTh27D_w84lTz1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.803 [XNIO-1 task-1] qnWrlG1bTh27D_w84lTz1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.803 [XNIO-1 task-1] qnWrlG1bTh27D_w84lTz1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.804 [XNIO-1 task-1] qnWrlG1bTh27D_w84lTz1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.804 [XNIO-1 task-1] qnWrlG1bTh27D_w84lTz1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 2e90a01e-c7c6-4c99-acca-a17b6b18edfd +19:00:49.808 [XNIO-1 task-1] 4c6aB8wSTG2d0pVHqkk6mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.808 [XNIO-1 task-1] 4c6aB8wSTG2d0pVHqkk6mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.808 [XNIO-1 task-1] 4c6aB8wSTG2d0pVHqkk6mQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.809 [XNIO-1 task-1] 4c6aB8wSTG2d0pVHqkk6mQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.809 [XNIO-1 task-1] 4c6aB8wSTG2d0pVHqkk6mQ DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.809 [XNIO-1 task-1] 4c6aB8wSTG2d0pVHqkk6mQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.812 [XNIO-1 task-1] D0D5WMO6QyypE0vchiJ2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.812 [XNIO-1 task-1] D0D5WMO6QyypE0vchiJ2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.812 [XNIO-1 task-1] D0D5WMO6QyypE0vchiJ2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.812 [XNIO-1 task-1] D0D5WMO6QyypE0vchiJ2Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.812 [XNIO-1 task-1] D0D5WMO6QyypE0vchiJ2Ww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.815 [XNIO-1 task-1] MGCRqTW_RkSVhItv6iYcGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.816 [XNIO-1 task-1] MGCRqTW_RkSVhItv6iYcGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.816 [XNIO-1 task-1] MGCRqTW_RkSVhItv6iYcGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.816 [XNIO-1 task-1] MGCRqTW_RkSVhItv6iYcGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.816 [XNIO-1 task-1] MGCRqTW_RkSVhItv6iYcGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.816 [XNIO-1 task-1] MGCRqTW_RkSVhItv6iYcGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.822 [XNIO-1 task-1] 7v0Ll4H0S0--jzkeLy-QCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.822 [XNIO-1 task-1] 7v0Ll4H0S0--jzkeLy-QCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.822 [XNIO-1 task-1] 7v0Ll4H0S0--jzkeLy-QCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.822 [XNIO-1 task-1] 7v0Ll4H0S0--jzkeLy-QCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.823 [XNIO-1 task-1] 7v0Ll4H0S0--jzkeLy-QCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:49.827 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:13c79e93 +19:00:49.828 [XNIO-1 task-1] mcG8zqNLQ-a1EFsQsgKM_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.828 [XNIO-1 task-1] mcG8zqNLQ-a1EFsQsgKM_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.828 [XNIO-1 task-1] mcG8zqNLQ-a1EFsQsgKM_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.828 [XNIO-1 task-1] mcG8zqNLQ-a1EFsQsgKM_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.829 [XNIO-1 task-1] mcG8zqNLQ-a1EFsQsgKM_A DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.829 [XNIO-1 task-1] mcG8zqNLQ-a1EFsQsgKM_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.831 [XNIO-1 task-1] LUx4A49nSEysscliePp3RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.831 [XNIO-1 task-1] LUx4A49nSEysscliePp3RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.831 [XNIO-1 task-1] LUx4A49nSEysscliePp3RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.831 [XNIO-1 task-1] LUx4A49nSEysscliePp3RQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.848 [XNIO-1 task-1] cnZFnkXwRC2hq7lWZ-M7zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.848 [XNIO-1 task-1] cnZFnkXwRC2hq7lWZ-M7zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.848 [XNIO-1 task-1] cnZFnkXwRC2hq7lWZ-M7zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.848 [XNIO-1 task-1] cnZFnkXwRC2hq7lWZ-M7zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:49.849 [XNIO-1 task-1] cnZFnkXwRC2hq7lWZ-M7zg DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:49.849 [XNIO-1 task-1] cnZFnkXwRC2hq7lWZ-M7zg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:49.852 [XNIO-1 task-1] b3jYDg0jRreAi_lJ8c6K3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.852 [XNIO-1 task-1] b3jYDg0jRreAi_lJ8c6K3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.852 [XNIO-1 task-1] b3jYDg0jRreAi_lJ8c6K3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.853 [XNIO-1 task-1] b3jYDg0jRreAi_lJ8c6K3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.853 [XNIO-1 task-1] b3jYDg0jRreAi_lJ8c6K3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:49.856 [XNIO-1 task-1] n-_aGCC9QuWf7ojYeDXxIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.856 [XNIO-1 task-1] n-_aGCC9QuWf7ojYeDXxIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.856 [XNIO-1 task-1] n-_aGCC9QuWf7ojYeDXxIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.856 [XNIO-1 task-1] n-_aGCC9QuWf7ojYeDXxIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.856 [XNIO-1 task-1] n-_aGCC9QuWf7ojYeDXxIg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.862 [XNIO-1 task-1] eGdSpb6RTkCa_G_QRnv31Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.862 [XNIO-1 task-1] eGdSpb6RTkCa_G_QRnv31Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.862 [XNIO-1 task-1] eGdSpb6RTkCa_G_QRnv31Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.862 [XNIO-1 task-1] eGdSpb6RTkCa_G_QRnv31Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.862 [XNIO-1 task-1] eGdSpb6RTkCa_G_QRnv31Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.871 [XNIO-1 task-1] k4eG2OQvR7mJMuZBK11k1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.871 [XNIO-1 task-1] k4eG2OQvR7mJMuZBK11k1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.872 [XNIO-1 task-1] k4eG2OQvR7mJMuZBK11k1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.872 [XNIO-1 task-1] k4eG2OQvR7mJMuZBK11k1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.872 [XNIO-1 task-1] k4eG2OQvR7mJMuZBK11k1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.879 [XNIO-1 task-1] 7EpD5FX-SdOXltuvDG3RKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:49.879 [XNIO-1 task-1] 7EpD5FX-SdOXltuvDG3RKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.879 [XNIO-1 task-1] 7EpD5FX-SdOXltuvDG3RKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.879 [XNIO-1 task-1] 7EpD5FX-SdOXltuvDG3RKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:49.879 [XNIO-1 task-1] 7EpD5FX-SdOXltuvDG3RKw DEBUG com.networknt.schema.TypeValidator debug - validate( "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", refreshToken) +19:00:49.879 [XNIO-1 task-1] 7EpD5FX-SdOXltuvDG3RKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 is not found.","severity":"ERROR"} +19:00:49.885 [XNIO-1 task-1] EDnHb9klSh2Rfnclf6y1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.885 [XNIO-1 task-1] EDnHb9klSh2Rfnclf6y1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.885 [XNIO-1 task-1] EDnHb9klSh2Rfnclf6y1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.885 [XNIO-1 task-1] EDnHb9klSh2Rfnclf6y1bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.885 [XNIO-1 task-1] EDnHb9klSh2Rfnclf6y1bg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.888 [XNIO-1 task-1] oaZooQyaSWegaQ79Nu8peQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:49.888 [XNIO-1 task-1] oaZooQyaSWegaQ79Nu8peQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.888 [XNIO-1 task-1] oaZooQyaSWegaQ79Nu8peQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.888 [XNIO-1 task-1] oaZooQyaSWegaQ79Nu8peQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:49.888 [XNIO-1 task-1] oaZooQyaSWegaQ79Nu8peQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", refreshToken) +19:00:49.888 [XNIO-1 task-1] oaZooQyaSWegaQ79Nu8peQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 is not found.","severity":"ERROR"} +19:00:49.893 [XNIO-1 task-1] 8xC6AO4GQR6UIKf52mPUwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.893 [XNIO-1 task-1] 8xC6AO4GQR6UIKf52mPUwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.893 [XNIO-1 task-1] 8xC6AO4GQR6UIKf52mPUwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.893 [XNIO-1 task-1] 8xC6AO4GQR6UIKf52mPUwQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.896 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ccd4675d-a144-4d5b-9093-8a3fa9f45855 +19:00:49.897 [XNIO-1 task-1] IqBXfiSCR1q2z3SfxJz9tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +Jun 28, 2024 7:00:50 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:49.898 [XNIO-1 task-1] IqBXfiSCR1q2z3SfxJz9tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.898 [XNIO-1 task-1] IqBXfiSCR1q2z3SfxJz9tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.898 [XNIO-1 task-1] IqBXfiSCR1q2z3SfxJz9tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +19:00:49.898 [XNIO-1 task-1] IqBXfiSCR1q2z3SfxJz9tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.898 [XNIO-1 task-1] IqBXfiSCR1q2z3SfxJz9tg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.899 [XNIO-1 task-1] IqBXfiSCR1q2z3SfxJz9tg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:49.909 [XNIO-1 task-1] 64TQI0sPQnaaM4ZejB4J0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0794a178-fc42-4e8b-ac3c-b4dbed68381a +19:00:49.909 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:44a74070 +19:00:49.909 [XNIO-1 task-1] 64TQI0sPQnaaM4ZejB4J0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.909 [XNIO-1 task-1] 64TQI0sPQnaaM4ZejB4J0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.909 [XNIO-1 task-1] 64TQI0sPQnaaM4ZejB4J0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.909 [XNIO-1 task-1] 64TQI0sPQnaaM4ZejB4J0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.909 [XNIO-1 task-1] 64TQI0sPQnaaM4ZejB4J0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794a178-fc42-4e8b-ac3c-b4dbed68381a, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +19:00:49.909 [XNIO-1 task-1] 64TQI0sPQnaaM4ZejB4J0g DEBUG com.networknt.schema.TypeValidator debug - validate( "0794a178-fc42-4e8b-ac3c-b4dbed68381a", "0794a178-fc42-4e8b-ac3c-b4dbed68381a", refreshToken) +19:00:49.913 [XNIO-1 task-1] KMEG21IhTyOboAIJrb-Fjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:49.914 [XNIO-1 task-1] KMEG21IhTyOboAIJrb-Fjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.914 [XNIO-1 task-1] KMEG21IhTyOboAIJrb-Fjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.914 [XNIO-1 task-1] KMEG21IhTyOboAIJrb-Fjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:49.914 [XNIO-1 task-1] KMEG21IhTyOboAIJrb-Fjw DEBUG com.networknt.schema.TypeValidator debug - validate( "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", refreshToken) +19:00:49.914 [XNIO-1 task-1] KMEG21IhTyOboAIJrb-Fjw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 is not found.","severity":"ERROR"} +19:00:49.924 [XNIO-1 task-1] gIm1-OdlQ-mAzurQjvPeXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794a178-fc42-4e8b-ac3c-b4dbed68381a, base path is set to: null +19:00:49.924 [XNIO-1 task-1] gIm1-OdlQ-mAzurQjvPeXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.924 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:53055a46-6f83-4939-9d0f-5d34b28ff559 +19:00:49.924 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:53055a46-6f83-4939-9d0f-5d34b28ff559 +19:00:49.924 [XNIO-1 task-1] gIm1-OdlQ-mAzurQjvPeXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0794a178-fc42-4e8b-ac3c-b4dbed68381a, base path is set to: null +19:00:49.924 [XNIO-1 task-1] gIm1-OdlQ-mAzurQjvPeXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0794a178-fc42-4e8b-ac3c-b4dbed68381a", "0794a178-fc42-4e8b-ac3c-b4dbed68381a", refreshToken) +19:00:49.940 [XNIO-1 task-1] 92rdyu-0TbaVbY9aWsbjqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.941 [XNIO-1 task-1] 92rdyu-0TbaVbY9aWsbjqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.941 [XNIO-1 task-1] 92rdyu-0TbaVbY9aWsbjqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.941 [XNIO-1 task-1] 92rdyu-0TbaVbY9aWsbjqg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.942 [XNIO-1 task-1] 92rdyu-0TbaVbY9aWsbjqg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.949 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:13c79e93 +19:00:49.952 [XNIO-1 task-1] qopNIEqPSOiGfwc2wATs7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.952 [XNIO-1 task-1] qopNIEqPSOiGfwc2wATs7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.952 [XNIO-1 task-1] qopNIEqPSOiGfwc2wATs7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.953 [XNIO-1 task-1] qopNIEqPSOiGfwc2wATs7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.953 [XNIO-1 task-1] qopNIEqPSOiGfwc2wATs7w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:49.961 [XNIO-1 task-1] G2Q_QOw7SfONO_0Su50Lmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.962 [XNIO-1 task-1] G2Q_QOw7SfONO_0Su50Lmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.962 [XNIO-1 task-1] G2Q_QOw7SfONO_0Su50Lmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.962 [XNIO-1 task-1] G2Q_QOw7SfONO_0Su50Lmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.962 [XNIO-1 task-1] G2Q_QOw7SfONO_0Su50Lmg DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:49.963 [XNIO-1 task-1] G2Q_QOw7SfONO_0Su50Lmg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:49.966 [XNIO-1 task-1] mdKpF5h-R9upMqgFq0CUpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.966 [XNIO-1 task-1] mdKpF5h-R9upMqgFq0CUpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.966 [XNIO-1 task-1] mdKpF5h-R9upMqgFq0CUpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:49.966 [XNIO-1 task-1] mdKpF5h-R9upMqgFq0CUpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.967 [XNIO-1 task-1] mdKpF5h-R9upMqgFq0CUpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:49.969 [XNIO-1 task-1] HvBs9ZAcTH2Q_qutJJu9yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.969 [XNIO-1 task-1] HvBs9ZAcTH2Q_qutJJu9yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.969 [XNIO-1 task-1] HvBs9ZAcTH2Q_qutJJu9yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.970 [XNIO-1 task-1] HvBs9ZAcTH2Q_qutJJu9yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.970 [XNIO-1 task-1] HvBs9ZAcTH2Q_qutJJu9yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:49.970 [XNIO-1 task-1] HvBs9ZAcTH2Q_qutJJu9yQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:49.974 [XNIO-1 task-1] kMeH49rnSy-hObhNJZuJFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.974 [XNIO-1 task-1] kMeH49rnSy-hObhNJZuJFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.974 [XNIO-1 task-1] kMeH49rnSy-hObhNJZuJFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.975 [XNIO-1 task-1] kMeH49rnSy-hObhNJZuJFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.982 [XNIO-1 task-1] IkncQrjtQBuyZc-DA3ZR-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.982 [XNIO-1 task-1] IkncQrjtQBuyZc-DA3ZR-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.982 [XNIO-1 task-1] IkncQrjtQBuyZc-DA3ZR-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:49.982 [XNIO-1 task-1] IkncQrjtQBuyZc-DA3ZR-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:49.982 [XNIO-1 task-1] IkncQrjtQBuyZc-DA3ZR-w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:49.989 [XNIO-1 task-1] 2Pbloe7rQMmXM3ckNLQBsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.989 [XNIO-1 task-1] 2Pbloe7rQMmXM3ckNLQBsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.989 [XNIO-1 task-1] 2Pbloe7rQMmXM3ckNLQBsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:49.991 [XNIO-1 task-1] 2Pbloe7rQMmXM3ckNLQBsQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:49.999 [XNIO-1 task-1] RxM4klv2T6GNmsBZG7vv1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.999 [XNIO-1 task-1] RxM4klv2T6GNmsBZG7vv1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:49.999 [XNIO-1 task-1] RxM4klv2T6GNmsBZG7vv1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:49.999 [XNIO-1 task-1] RxM4klv2T6GNmsBZG7vv1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:49.999 [XNIO-1 task-1] RxM4klv2T6GNmsBZG7vv1w DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:49.999 [XNIO-1 task-1] RxM4klv2T6GNmsBZG7vv1w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:50.011 [XNIO-1 task-1] 5KL6GymNQieM-K-7TMiEtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.011 [XNIO-1 task-1] 5KL6GymNQieM-K-7TMiEtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.011 [XNIO-1 task-1] 5KL6GymNQieM-K-7TMiEtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.011 [XNIO-1 task-1] 5KL6GymNQieM-K-7TMiEtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.012 [XNIO-1 task-1] 5KL6GymNQieM-K-7TMiEtg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.016 [XNIO-1 task-1] GX058lnqS0yO5419LYyvQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.016 [XNIO-1 task-1] GX058lnqS0yO5419LYyvQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.016 [XNIO-1 task-1] GX058lnqS0yO5419LYyvQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.017 [XNIO-1 task-1] GX058lnqS0yO5419LYyvQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.017 [XNIO-1 task-1] GX058lnqS0yO5419LYyvQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:50.017 [XNIO-1 task-1] GX058lnqS0yO5419LYyvQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:50.019 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:13c79e93 +19:00:50.021 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:13c79e93 +19:00:50.021 [XNIO-1 task-1] RYrcOEopRB-xmko01Rl5vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.021 [XNIO-1 task-1] RYrcOEopRB-xmko01Rl5vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.021 [XNIO-1 task-1] RYrcOEopRB-xmko01Rl5vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96 +19:00:50.021 [XNIO-1 task-1] RYrcOEopRB-xmko01Rl5vQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5382b354-900e-457e-80fc-8faa94681f96 +19:00:50.026 [XNIO-1 task-1] 1Vre2YweQtS6ITz0Sx0JGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.026 [XNIO-1 task-1] 1Vre2YweQtS6ITz0Sx0JGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.026 [XNIO-1 task-1] 1Vre2YweQtS6ITz0Sx0JGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.026 [XNIO-1 task-1] 1Vre2YweQtS6ITz0Sx0JGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.027 [XNIO-1 task-1] 1Vre2YweQtS6ITz0Sx0JGQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.033 [XNIO-1 task-1] TT__YilpRqmkkUroBBrN-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.033 [XNIO-1 task-1] TT__YilpRqmkkUroBBrN-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.033 [XNIO-1 task-1] TT__YilpRqmkkUroBBrN-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.033 [XNIO-1 task-1] TT__YilpRqmkkUroBBrN-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.034 [XNIO-1 task-1] TT__YilpRqmkkUroBBrN-g DEBUG com.networknt.schema.TypeValidator debug - validate( "5382b354-900e-457e-80fc-8faa94681f96", "5382b354-900e-457e-80fc-8faa94681f96", refreshToken) +19:00:50.044 [XNIO-1 task-1] azCA6x34QFeuLT3Rx8MDJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.044 [XNIO-1 task-1] azCA6x34QFeuLT3Rx8MDJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.044 [XNIO-1 task-1] azCA6x34QFeuLT3Rx8MDJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.044 [XNIO-1 task-1] azCA6x34QFeuLT3Rx8MDJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.044 [XNIO-1 task-1] azCA6x34QFeuLT3Rx8MDJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.056 [XNIO-1 task-1] 3xAEZX8-TfyTP2xwLlEJFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:50.056 [XNIO-1 task-1] 3xAEZX8-TfyTP2xwLlEJFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.056 [XNIO-1 task-1] 3xAEZX8-TfyTP2xwLlEJFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.056 [XNIO-1 task-1] 3xAEZX8-TfyTP2xwLlEJFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:50.057 [XNIO-1 task-1] 3xAEZX8-TfyTP2xwLlEJFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:50.060 [XNIO-1 task-1] TLNor_tCRC6xz6f_USXTbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.060 [XNIO-1 task-1] TLNor_tCRC6xz6f_USXTbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.060 [XNIO-1 task-1] TLNor_tCRC6xz6f_USXTbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.060 [XNIO-1 task-1] TLNor_tCRC6xz6f_USXTbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.060 [XNIO-1 task-1] TLNor_tCRC6xz6f_USXTbA DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:50.060 [XNIO-1 task-1] TLNor_tCRC6xz6f_USXTbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:50.062 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8e881786 +19:00:50.063 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:44a74070 +19:00:50.063 [XNIO-1 task-1] mkC88GsOSiKf7WQVG4bG1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.064 [XNIO-1 task-1] mkC88GsOSiKf7WQVG4bG1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.064 [XNIO-1 task-1] mkC88GsOSiKf7WQVG4bG1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.064 [XNIO-1 task-1] mkC88GsOSiKf7WQVG4bG1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.073 [XNIO-1 task-1] -SNdNJ5FTnKm8NnHikowcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.073 [XNIO-1 task-1] -SNdNJ5FTnKm8NnHikowcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.073 [XNIO-1 task-1] -SNdNJ5FTnKm8NnHikowcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.073 [XNIO-1 task-1] -SNdNJ5FTnKm8NnHikowcw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.074 [XNIO-1 task-1] -SNdNJ5FTnKm8NnHikowcw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.082 [XNIO-1 task-1] SSKJVN4EQZqLrBxaE0xO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.082 [XNIO-1 task-1] SSKJVN4EQZqLrBxaE0xO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.082 [XNIO-1 task-1] SSKJVN4EQZqLrBxaE0xO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.083 [XNIO-1 task-1] SSKJVN4EQZqLrBxaE0xO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.084 [XNIO-1 task-1] SSKJVN4EQZqLrBxaE0xO7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.090 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e1663cfe +19:00:50.100 [XNIO-1 task-1] o3rHhfE6RB-Eija2zC82uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:50.100 [XNIO-1 task-1] o3rHhfE6RB-Eija2zC82uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.100 [XNIO-1 task-1] o3rHhfE6RB-Eija2zC82uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.100 [XNIO-1 task-1] o3rHhfE6RB-Eija2zC82uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6, base path is set to: null +19:00:50.100 [XNIO-1 task-1] o3rHhfE6RB-Eija2zC82uA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", "0d2c6e82-39d1-44b7-afa6-4b59de2197c6", refreshToken) +19:00:50.101 [XNIO-1 task-1] o3rHhfE6RB-Eija2zC82uA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 is not found.","severity":"ERROR"} +19:00:50.107 [XNIO-1 task-1] idNHgMQ9R0mpn4dOSrFMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:50.107 [XNIO-1 task-1] idNHgMQ9R0mpn4dOSrFMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.107 [XNIO-1 task-1] idNHgMQ9R0mpn4dOSrFMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.107 [XNIO-1 task-1] idNHgMQ9R0mpn4dOSrFMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:50.107 [XNIO-1 task-1] idNHgMQ9R0mpn4dOSrFMmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:50.116 [XNIO-1 task-1] RHvqJcOVTlGqNZA4dn7BAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.116 [XNIO-1 task-1] RHvqJcOVTlGqNZA4dn7BAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.117 [XNIO-1 task-1] RHvqJcOVTlGqNZA4dn7BAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.117 [XNIO-1 task-1] RHvqJcOVTlGqNZA4dn7BAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.117 [XNIO-1 task-1] RHvqJcOVTlGqNZA4dn7BAw DEBUG com.networknt.schema.TypeValidator debug - validate( "d75d285f-cb56-47c3-9350-f90c35ef7922", "d75d285f-cb56-47c3-9350-f90c35ef7922", refreshToken) +19:00:50.132 [XNIO-1 task-1] X_PFE87ZSGKZCjbsalNfQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.132 [XNIO-1 task-1] X_PFE87ZSGKZCjbsalNfQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.132 [XNIO-1 task-1] X_PFE87ZSGKZCjbsalNfQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.132 [XNIO-1 task-1] X_PFE87ZSGKZCjbsalNfQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.132 [XNIO-1 task-1] X_PFE87ZSGKZCjbsalNfQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8397e67d-e91b-455c-95c8-b1099ff7f565", "8397e67d-e91b-455c-95c8-b1099ff7f565", refreshToken) +19:00:50.137 [XNIO-1 task-1] X_PFE87ZSGKZCjbsalNfQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8397e67d-e91b-455c-95c8-b1099ff7f565 is not found.","severity":"ERROR"} +19:00:50.141 [XNIO-1 task-1] ZENA2MUuQj2LMbCuv2d-UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:50.142 [XNIO-1 task-1] ZENA2MUuQj2LMbCuv2d-UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.142 [XNIO-1 task-1] ZENA2MUuQj2LMbCuv2d-UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.142 [XNIO-1 task-1] ZENA2MUuQj2LMbCuv2d-UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:50.142 [XNIO-1 task-1] ZENA2MUuQj2LMbCuv2d-UA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 +19:00:50.147 [XNIO-1 task-1] LlsQam4RSWKQ79GQYZfHpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.148 [XNIO-1 task-1] LlsQam4RSWKQ79GQYZfHpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.148 [XNIO-1 task-1] LlsQam4RSWKQ79GQYZfHpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.148 [XNIO-1 task-1] LlsQam4RSWKQ79GQYZfHpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.148 [XNIO-1 task-1] LlsQam4RSWKQ79GQYZfHpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.156 [XNIO-1 task-1] 2r_2ZVa1Q9ymEgjr7e8Omw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.156 [XNIO-1 task-1] 2r_2ZVa1Q9ymEgjr7e8Omw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.156 [XNIO-1 task-1] 2r_2ZVa1Q9ymEgjr7e8Omw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.156 [XNIO-1 task-1] 2r_2ZVa1Q9ymEgjr7e8Omw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.156 [XNIO-1 task-1] 2r_2ZVa1Q9ymEgjr7e8Omw DEBUG com.networknt.schema.TypeValidator debug - validate( "d75d285f-cb56-47c3-9350-f90c35ef7922", "d75d285f-cb56-47c3-9350-f90c35ef7922", refreshToken) +19:00:50.158 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cfb8836a +19:00:50.160 [XNIO-1 task-1] 2r_2ZVa1Q9ymEgjr7e8Omw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d75d285f-cb56-47c3-9350-f90c35ef7922 is not found.","severity":"ERROR"} +19:00:50.169 [XNIO-1 task-1] BCdhDbRpSbClTnPLMM3OJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0794a178-fc42-4e8b-ac3c-b4dbed68381a +19:00:50.169 [XNIO-1 task-1] BCdhDbRpSbClTnPLMM3OJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.169 [XNIO-1 task-1] BCdhDbRpSbClTnPLMM3OJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.169 [XNIO-1 task-1] BCdhDbRpSbClTnPLMM3OJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0794a178-fc42-4e8b-ac3c-b4dbed68381a +19:00:50.169 [XNIO-1 task-1] BCdhDbRpSbClTnPLMM3OJg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0794a178-fc42-4e8b-ac3c-b4dbed68381a +19:00:50.178 [XNIO-1 task-1] rTltHV_cQQ-nV3mx7poJ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.178 [XNIO-1 task-1] rTltHV_cQQ-nV3mx7poJ7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.179 [XNIO-1 task-1] rTltHV_cQQ-nV3mx7poJ7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.179 [XNIO-1 task-1] rTltHV_cQQ-nV3mx7poJ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.179 [XNIO-1 task-1] rTltHV_cQQ-nV3mx7poJ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "8397e67d-e91b-455c-95c8-b1099ff7f565", "8397e67d-e91b-455c-95c8-b1099ff7f565", refreshToken) +19:00:50.179 [XNIO-1 task-1] rTltHV_cQQ-nV3mx7poJ7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8397e67d-e91b-455c-95c8-b1099ff7f565 is not found.","severity":"ERROR"} +19:00:50.182 [XNIO-1 task-1] ACCTLIUNSQa0Qk82oECQvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.182 [XNIO-1 task-1] ACCTLIUNSQa0Qk82oECQvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.182 [XNIO-1 task-1] ACCTLIUNSQa0Qk82oECQvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.182 [XNIO-1 task-1] ACCTLIUNSQa0Qk82oECQvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.188 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7ed0b2e9 +19:00:50.190 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7ed0b2e9 +19:00:50.195 [XNIO-1 task-1] K5ouQZBhRqiyK2b7ZDNmPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.195 [XNIO-1 task-1] K5ouQZBhRqiyK2b7ZDNmPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.195 [XNIO-1 task-1] K5ouQZBhRqiyK2b7ZDNmPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.196 [XNIO-1 task-1] K5ouQZBhRqiyK2b7ZDNmPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.199 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e881786 +19:00:50.199 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:13c79e93 +19:00:50.200 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:520391b2-b773-445a-9fcb-cadf66e98690 +19:00:50.200 [XNIO-1 task-1] iIe7IyyjQWy3Pes7UenkHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.200 [XNIO-1 task-1] iIe7IyyjQWy3Pes7UenkHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.200 [XNIO-1 task-1] iIe7IyyjQWy3Pes7UenkHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.201 [XNIO-1 task-1] iIe7IyyjQWy3Pes7UenkHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.209 [XNIO-1 task-1] VRlFRqZOQr-LgYEvUYB6Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:50.209 [XNIO-1 task-1] VRlFRqZOQr-LgYEvUYB6Ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.209 [XNIO-1 task-1] VRlFRqZOQr-LgYEvUYB6Ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.209 [XNIO-1 task-1] VRlFRqZOQr-LgYEvUYB6Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16, base path is set to: null +19:00:50.209 [XNIO-1 task-1] VRlFRqZOQr-LgYEvUYB6Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", "5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16", refreshToken) +19:00:50.209 [XNIO-1 task-1] VRlFRqZOQr-LgYEvUYB6Ew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5efbc7b3-0f10-4e8e-aa2d-4e3ad08d2a16 is not found.","severity":"ERROR"} +19:00:50.215 [XNIO-1 task-1] r4LDVKIWRnCcf4bsQrgn8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.215 [XNIO-1 task-1] r4LDVKIWRnCcf4bsQrgn8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.215 [XNIO-1 task-1] r4LDVKIWRnCcf4bsQrgn8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.215 [XNIO-1 task-1] r4LDVKIWRnCcf4bsQrgn8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.215 [XNIO-1 task-1] r4LDVKIWRnCcf4bsQrgn8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.219 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e1663cfe +19:00:50.219 [XNIO-1 task-1] eU14iYODR6mCmWPkwpz76w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.219 [XNIO-1 task-1] eU14iYODR6mCmWPkwpz76w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.220 [XNIO-1 task-1] eU14iYODR6mCmWPkwpz76w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.220 [XNIO-1 task-1] eU14iYODR6mCmWPkwpz76w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.225 [XNIO-1 task-1] OXX2yFaVS5itzXbbdrVuSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.225 [XNIO-1 task-1] OXX2yFaVS5itzXbbdrVuSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.225 [XNIO-1 task-1] OXX2yFaVS5itzXbbdrVuSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.226 [XNIO-1 task-1] OXX2yFaVS5itzXbbdrVuSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.226 [XNIO-1 task-1] OXX2yFaVS5itzXbbdrVuSg DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:50.226 [XNIO-1 task-1] OXX2yFaVS5itzXbbdrVuSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:50.232 [XNIO-1 task-1] FUQWHUOFTK2bk7rJh4e0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.232 [XNIO-1 task-1] FUQWHUOFTK2bk7rJh4e0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.233 [XNIO-1 task-1] FUQWHUOFTK2bk7rJh4e0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.233 [XNIO-1 task-1] FUQWHUOFTK2bk7rJh4e0AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.233 [XNIO-1 task-1] FUQWHUOFTK2bk7rJh4e0AA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.239 [XNIO-1 task-1] sz8tpM_LT9qwD4slspCUWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.239 [XNIO-1 task-1] sz8tpM_LT9qwD4slspCUWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.239 [XNIO-1 task-1] sz8tpM_LT9qwD4slspCUWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.239 [XNIO-1 task-1] sz8tpM_LT9qwD4slspCUWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.240 [XNIO-1 task-1] sz8tpM_LT9qwD4slspCUWg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.251 [XNIO-1 task-1] _7OLfQn4TkGtvtnO0eB3Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.251 [XNIO-1 task-1] _7OLfQn4TkGtvtnO0eB3Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.251 [XNIO-1 task-1] _7OLfQn4TkGtvtnO0eB3Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.251 [XNIO-1 task-1] _7OLfQn4TkGtvtnO0eB3Xg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.255 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5e610f5a +19:00:50.257 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5e610f5a +19:00:50.261 [XNIO-1 task-1] 2yjm5dWfSPe_PyX_7Ax6BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.261 [XNIO-1 task-1] 2yjm5dWfSPe_PyX_7Ax6BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.261 [XNIO-1 task-1] 2yjm5dWfSPe_PyX_7Ax6BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.261 [XNIO-1 task-1] 2yjm5dWfSPe_PyX_7Ax6BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.262 [XNIO-1 task-1] 2yjm5dWfSPe_PyX_7Ax6BA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.267 [XNIO-1 task-1] _v0H5YqGSJChs1dSc-l5MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.267 [XNIO-1 task-1] _v0H5YqGSJChs1dSc-l5MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.267 [XNIO-1 task-1] _v0H5YqGSJChs1dSc-l5MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.267 [XNIO-1 task-1] _v0H5YqGSJChs1dSc-l5MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.267 [XNIO-1 task-1] _v0H5YqGSJChs1dSc-l5MA DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:50.268 [XNIO-1 task-1] _v0H5YqGSJChs1dSc-l5MA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:50.276 [XNIO-1 task-1] qfZHxjbsTGue_bBaEtD8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.276 [XNIO-1 task-1] qfZHxjbsTGue_bBaEtD8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.277 [XNIO-1 task-1] qfZHxjbsTGue_bBaEtD8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.277 [XNIO-1 task-1] qfZHxjbsTGue_bBaEtD8tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.277 [XNIO-1 task-1] qfZHxjbsTGue_bBaEtD8tA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.280 [XNIO-1 task-1] 0AMxDJbsSuS34kcelHRZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.280 [XNIO-1 task-1] 0AMxDJbsSuS34kcelHRZNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.280 [XNIO-1 task-1] 0AMxDJbsSuS34kcelHRZNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.280 [XNIO-1 task-1] 0AMxDJbsSuS34kcelHRZNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.280 [XNIO-1 task-1] 0AMxDJbsSuS34kcelHRZNg DEBUG com.networknt.schema.TypeValidator debug - validate( "5382b354-900e-457e-80fc-8faa94681f96", "5382b354-900e-457e-80fc-8faa94681f96", refreshToken) +19:00:50.285 [XNIO-1 task-1] 0AMxDJbsSuS34kcelHRZNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5382b354-900e-457e-80fc-8faa94681f96 is not found.","severity":"ERROR"} +19:00:50.288 [XNIO-1 task-1] ClcEz01SSIeTahWNvbcxnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.288 [XNIO-1 task-1] ClcEz01SSIeTahWNvbcxnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.288 [XNIO-1 task-1] ClcEz01SSIeTahWNvbcxnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.288 [XNIO-1 task-1] ClcEz01SSIeTahWNvbcxnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.289 [XNIO-1 task-1] ClcEz01SSIeTahWNvbcxnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.291 [XNIO-1 task-1] uFN3aDBgRyCF69xvZoeIuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.291 [XNIO-1 task-1] uFN3aDBgRyCF69xvZoeIuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.291 [XNIO-1 task-1] uFN3aDBgRyCF69xvZoeIuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.291 [XNIO-1 task-1] uFN3aDBgRyCF69xvZoeIuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.292 [XNIO-1 task-1] uFN3aDBgRyCF69xvZoeIuA DEBUG com.networknt.schema.TypeValidator debug - validate( "5382b354-900e-457e-80fc-8faa94681f96", "5382b354-900e-457e-80fc-8faa94681f96", refreshToken) +19:00:50.292 [XNIO-1 task-1] uFN3aDBgRyCF69xvZoeIuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5382b354-900e-457e-80fc-8faa94681f96 is not found.","severity":"ERROR"} +19:00:50.296 [XNIO-1 task-1] 0jIN4bnnRFGiVo9KwWVsPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.296 [XNIO-1 task-1] 0jIN4bnnRFGiVo9KwWVsPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.296 [XNIO-1 task-1] 0jIN4bnnRFGiVo9KwWVsPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.296 [XNIO-1 task-1] 0jIN4bnnRFGiVo9KwWVsPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.304 [XNIO-1 task-1] 8d84-jdMTrmvEN9IU28l0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.304 [XNIO-1 task-1] 8d84-jdMTrmvEN9IU28l0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.304 [XNIO-1 task-1] 8d84-jdMTrmvEN9IU28l0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.304 [XNIO-1 task-1] 8d84-jdMTrmvEN9IU28l0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.304 [XNIO-1 task-1] 8d84-jdMTrmvEN9IU28l0w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.314 [XNIO-1 task-1] j4uvPUbQRRqs6VhT1dT7xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.314 [XNIO-1 task-1] j4uvPUbQRRqs6VhT1dT7xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.314 [XNIO-1 task-1] j4uvPUbQRRqs6VhT1dT7xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.314 [XNIO-1 task-1] j4uvPUbQRRqs6VhT1dT7xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.314 [XNIO-1 task-1] j4uvPUbQRRqs6VhT1dT7xw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.318 [XNIO-1 task-1] i_KWcxhmT2qQho2dWrfRIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.318 [XNIO-1 task-1] i_KWcxhmT2qQho2dWrfRIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.318 [XNIO-1 task-1] i_KWcxhmT2qQho2dWrfRIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.318 [XNIO-1 task-1] i_KWcxhmT2qQho2dWrfRIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5382b354-900e-457e-80fc-8faa94681f96, base path is set to: null +19:00:50.318 [XNIO-1 task-1] i_KWcxhmT2qQho2dWrfRIA DEBUG com.networknt.schema.TypeValidator debug - validate( "5382b354-900e-457e-80fc-8faa94681f96", "5382b354-900e-457e-80fc-8faa94681f96", refreshToken) +19:00:50.318 [XNIO-1 task-1] i_KWcxhmT2qQho2dWrfRIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5382b354-900e-457e-80fc-8faa94681f96 is not found.","severity":"ERROR"} +19:00:50.327 [XNIO-1 task-1] mlz0QkJVQeyhRRfLLTSPVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.327 [XNIO-1 task-1] mlz0QkJVQeyhRRfLLTSPVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.327 [XNIO-1 task-1] mlz0QkJVQeyhRRfLLTSPVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.327 [XNIO-1 task-1] mlz0QkJVQeyhRRfLLTSPVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.335 [XNIO-1 task-1] 6yWpZlFfS7iePijR-YYWhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.335 [XNIO-1 task-1] 6yWpZlFfS7iePijR-YYWhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.335 [XNIO-1 task-1] 6yWpZlFfS7iePijR-YYWhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.336 [XNIO-1 task-1] 6yWpZlFfS7iePijR-YYWhw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.336 [XNIO-1 task-1] 6yWpZlFfS7iePijR-YYWhw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.344 [XNIO-1 task-1] btC68FQMRPCAFLlf2iLmpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.344 [XNIO-1 task-1] btC68FQMRPCAFLlf2iLmpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.344 [XNIO-1 task-1] btC68FQMRPCAFLlf2iLmpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.345 [XNIO-1 task-1] btC68FQMRPCAFLlf2iLmpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.345 [XNIO-1 task-1] btC68FQMRPCAFLlf2iLmpw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.346 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:366825f3-9f2d-4e9e-8b4e-35efbd34304c +19:00:50.349 [XNIO-1 task-1] ccCjQCN4RTS0fI1ix2cn3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.349 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +19:00:50.350 [XNIO-1 task-1] ccCjQCN4RTS0fI1ix2cn3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.350 [XNIO-1 task-1] ccCjQCN4RTS0fI1ix2cn3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.351 [XNIO-1 task-1] ccCjQCN4RTS0fI1ix2cn3w DEBUG com.networknt.schema.TypeValidator debug - validate( "8397e67d-e91b-455c-95c8-b1099ff7f565", "8397e67d-e91b-455c-95c8-b1099ff7f565", refreshToken) +19:00:50.351 [XNIO-1 task-1] ccCjQCN4RTS0fI1ix2cn3w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8397e67d-e91b-455c-95c8-b1099ff7f565 is not found.","severity":"ERROR"} +19:00:50.362 [XNIO-1 task-1] XjONpWwtSaeQtlV1z9gQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.362 [XNIO-1 task-1] XjONpWwtSaeQtlV1z9gQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.363 [XNIO-1 task-1] XjONpWwtSaeQtlV1z9gQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.363 [XNIO-1 task-1] XjONpWwtSaeQtlV1z9gQ8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.370 [XNIO-1 task-1] GFytWE2DQTWgKiPsdbNPuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.370 [XNIO-1 task-1] GFytWE2DQTWgKiPsdbNPuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.370 [XNIO-1 task-1] GFytWE2DQTWgKiPsdbNPuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.370 [XNIO-1 task-1] GFytWE2DQTWgKiPsdbNPuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.370 [XNIO-1 task-1] GFytWE2DQTWgKiPsdbNPuw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.379 [XNIO-1 task-1] 6tg6LGEBS2KA5zF8Bmla9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.379 [XNIO-1 task-1] 6tg6LGEBS2KA5zF8Bmla9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.379 [XNIO-1 task-1] 6tg6LGEBS2KA5zF8Bmla9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.379 [XNIO-1 task-1] 6tg6LGEBS2KA5zF8Bmla9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.379 [XNIO-1 task-1] 6tg6LGEBS2KA5zF8Bmla9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.385 [XNIO-1 task-1] -WTaZ91-Q1ei9HAwpXh2Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.385 [XNIO-1 task-1] -WTaZ91-Q1ei9HAwpXh2Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.385 [XNIO-1 task-1] -WTaZ91-Q1ei9HAwpXh2Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.386 [XNIO-1 task-1] -WTaZ91-Q1ei9HAwpXh2Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.386 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:cfb8836a +19:00:50.387 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cfb8836a +19:00:50.394 [XNIO-1 task-1] h8-SkUm6SVGkAeEbwEoFEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.394 [XNIO-1 task-1] h8-SkUm6SVGkAeEbwEoFEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.394 [XNIO-1 task-1] h8-SkUm6SVGkAeEbwEoFEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.395 [XNIO-1 task-1] h8-SkUm6SVGkAeEbwEoFEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.395 [XNIO-1 task-1] h8-SkUm6SVGkAeEbwEoFEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.402 [XNIO-1 task-1] tJOYL5F_SO28ftKtJX61iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.402 [XNIO-1 task-1] tJOYL5F_SO28ftKtJX61iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.402 [XNIO-1 task-1] tJOYL5F_SO28ftKtJX61iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.402 [XNIO-1 task-1] tJOYL5F_SO28ftKtJX61iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.402 [XNIO-1 task-1] tJOYL5F_SO28ftKtJX61iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8397e67d-e91b-455c-95c8-b1099ff7f565", "8397e67d-e91b-455c-95c8-b1099ff7f565", refreshToken) +19:00:50.402 [XNIO-1 task-1] tJOYL5F_SO28ftKtJX61iQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8397e67d-e91b-455c-95c8-b1099ff7f565 is not found.","severity":"ERROR"} +19:00:50.405 [XNIO-1 task-1] Kn2R-tcwRIWzKyAGjR0lXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.405 [XNIO-1 task-1] Kn2R-tcwRIWzKyAGjR0lXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.405 [XNIO-1 task-1] Kn2R-tcwRIWzKyAGjR0lXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.405 [XNIO-1 task-1] Kn2R-tcwRIWzKyAGjR0lXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.405 [XNIO-1 task-1] Kn2R-tcwRIWzKyAGjR0lXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8397e67d-e91b-455c-95c8-b1099ff7f565 +19:00:50.410 [XNIO-1 task-1] EL5q8PONSq6ZUkfrgJh3xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.410 [XNIO-1 task-1] EL5q8PONSq6ZUkfrgJh3xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.410 [XNIO-1 task-1] EL5q8PONSq6ZUkfrgJh3xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.410 [XNIO-1 task-1] EL5q8PONSq6ZUkfrgJh3xA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.410 [XNIO-1 task-1] EL5q8PONSq6ZUkfrgJh3xA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.420 [XNIO-1 task-1] IDnEXAlPT6S8zEy_upcNXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.420 [XNIO-1 task-1] IDnEXAlPT6S8zEy_upcNXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.420 [XNIO-1 task-1] IDnEXAlPT6S8zEy_upcNXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.421 [XNIO-1 task-1] IDnEXAlPT6S8zEy_upcNXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.451 [XNIO-1 task-1] WwR3ic7aTsOCBMUBTgCSXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.451 [XNIO-1 task-1] WwR3ic7aTsOCBMUBTgCSXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.451 [XNIO-1 task-1] WwR3ic7aTsOCBMUBTgCSXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.452 [XNIO-1 task-1] WwR3ic7aTsOCBMUBTgCSXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.452 [XNIO-1 task-1] WwR3ic7aTsOCBMUBTgCSXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.482 [XNIO-1 task-1] 7seey36UQrepbCRDmzcwzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.482 [XNIO-1 task-1] 7seey36UQrepbCRDmzcwzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.482 [XNIO-1 task-1] 7seey36UQrepbCRDmzcwzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.482 [XNIO-1 task-1] 7seey36UQrepbCRDmzcwzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.484 [XNIO-1 task-1] 7seey36UQrepbCRDmzcwzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.487 [XNIO-1 task-1] TMEIULx2RBaDMuhYdvQKEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.488 [XNIO-1 task-1] TMEIULx2RBaDMuhYdvQKEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.488 [XNIO-1 task-1] TMEIULx2RBaDMuhYdvQKEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.488 [XNIO-1 task-1] TMEIULx2RBaDMuhYdvQKEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.488 [XNIO-1 task-1] TMEIULx2RBaDMuhYdvQKEw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.496 [XNIO-1 task-1] aBX1K5WkSWCNDultjhu5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.496 [XNIO-1 task-1] aBX1K5WkSWCNDultjhu5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.496 [XNIO-1 task-1] aBX1K5WkSWCNDultjhu5wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.497 [XNIO-1 task-1] aBX1K5WkSWCNDultjhu5wA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.497 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8e881786 +19:00:50.506 [XNIO-1 task-1] mBn5hl2nQnyoqQJxj2h0rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.506 [XNIO-1 task-1] mBn5hl2nQnyoqQJxj2h0rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.506 [XNIO-1 task-1] mBn5hl2nQnyoqQJxj2h0rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.506 [XNIO-1 task-1] mBn5hl2nQnyoqQJxj2h0rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8397e67d-e91b-455c-95c8-b1099ff7f565, base path is set to: null +19:00:50.507 [XNIO-1 task-1] mBn5hl2nQnyoqQJxj2h0rw DEBUG com.networknt.schema.TypeValidator debug - validate( "8397e67d-e91b-455c-95c8-b1099ff7f565", "8397e67d-e91b-455c-95c8-b1099ff7f565", refreshToken) +19:00:50.507 [XNIO-1 task-1] mBn5hl2nQnyoqQJxj2h0rw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 8397e67d-e91b-455c-95c8-b1099ff7f565 is not found.","severity":"ERROR"} +19:00:50.511 [XNIO-1 task-1] Z1vCDBDyQg-JZimF41J_aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.511 [XNIO-1 task-1] Z1vCDBDyQg-JZimF41J_aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.511 [XNIO-1 task-1] Z1vCDBDyQg-JZimF41J_aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.512 [XNIO-1 task-1] Z1vCDBDyQg-JZimF41J_aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.512 [XNIO-1 task-1] Z1vCDBDyQg-JZimF41J_aA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.519 [XNIO-1 task-1] FqOhmiJKRw2EIMUt8Losbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.519 [XNIO-1 task-1] FqOhmiJKRw2EIMUt8Losbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.520 [XNIO-1 task-1] FqOhmiJKRw2EIMUt8Losbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.520 [XNIO-1 task-1] FqOhmiJKRw2EIMUt8Losbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.520 [XNIO-1 task-1] FqOhmiJKRw2EIMUt8Losbg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.528 [XNIO-1 task-1] x47E5EblTO2B3fjTI6BoPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.529 [XNIO-1 task-1] x47E5EblTO2B3fjTI6BoPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.529 [XNIO-1 task-1] x47E5EblTO2B3fjTI6BoPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.529 [XNIO-1 task-1] x47E5EblTO2B3fjTI6BoPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.529 [XNIO-1 task-1] x47E5EblTO2B3fjTI6BoPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0d2c6e82-39d1-44b7-afa6-4b59de2197c6 +19:00:50.537 [XNIO-1 task-1] TfPM_89GQpKoTYPbCO8vmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6cf1725c-e865-4eea-9642-873d1e40f966, base path is set to: null +19:00:50.537 [XNIO-1 task-1] TfPM_89GQpKoTYPbCO8vmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.537 [XNIO-1 task-1] TfPM_89GQpKoTYPbCO8vmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.537 [XNIO-1 task-1] TfPM_89GQpKoTYPbCO8vmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6cf1725c-e865-4eea-9642-873d1e40f966, base path is set to: null +19:00:50.537 [XNIO-1 task-1] TfPM_89GQpKoTYPbCO8vmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6cf1725c-e865-4eea-9642-873d1e40f966", "6cf1725c-e865-4eea-9642-873d1e40f966", refreshToken) +19:00:50.541 [XNIO-1 task-1] pWR-x3OfToSGBcziDUZTaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.541 [XNIO-1 task-1] pWR-x3OfToSGBcziDUZTaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.541 [XNIO-1 task-1] pWR-x3OfToSGBcziDUZTaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.541 [XNIO-1 task-1] pWR-x3OfToSGBcziDUZTaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.541 [XNIO-1 task-1] pWR-x3OfToSGBcziDUZTaw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.547 [XNIO-1 task-1] fIV1x0o-RbiNBoQIC7lsbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.547 [XNIO-1 task-1] fIV1x0o-RbiNBoQIC7lsbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.547 [XNIO-1 task-1] fIV1x0o-RbiNBoQIC7lsbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.547 [XNIO-1 task-1] fIV1x0o-RbiNBoQIC7lsbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.548 [XNIO-1 task-1] fIV1x0o-RbiNBoQIC7lsbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.557 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:392c586a +19:00:50.565 [XNIO-1 task-1] IDnric1bToWsNl4nqV46fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.565 [XNIO-1 task-1] IDnric1bToWsNl4nqV46fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.565 [XNIO-1 task-1] IDnric1bToWsNl4nqV46fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.566 [XNIO-1 task-1] IDnric1bToWsNl4nqV46fQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.570 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a57e1651-2ced-48d3-8cc7-888cd5e7b48d +19:00:50.573 [XNIO-1 task-1] xIEPwpYoSqaNn0y3Zp9fmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.573 [XNIO-1 task-1] xIEPwpYoSqaNn0y3Zp9fmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.573 [XNIO-1 task-1] xIEPwpYoSqaNn0y3Zp9fmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.573 [XNIO-1 task-1] xIEPwpYoSqaNn0y3Zp9fmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.573 [XNIO-1 task-1] xIEPwpYoSqaNn0y3Zp9fmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.580 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5e610f5a +19:00:50.583 [XNIO-1 task-1] aWqxt9OFQS-_krLKBVYcfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.584 [XNIO-1 task-1] aWqxt9OFQS-_krLKBVYcfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.584 [XNIO-1 task-1] aWqxt9OFQS-_krLKBVYcfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.584 [XNIO-1 task-1] aWqxt9OFQS-_krLKBVYcfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.584 [XNIO-1 task-1] aWqxt9OFQS-_krLKBVYcfA DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:50.584 [XNIO-1 task-1] aWqxt9OFQS-_krLKBVYcfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:50.589 [XNIO-1 task-1] 5DlvsccFReyMdOKemz-1vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6cf1725c-e865-4eea-9642-873d1e40f966 +19:00:50.589 [XNIO-1 task-1] 5DlvsccFReyMdOKemz-1vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.589 [XNIO-1 task-1] 5DlvsccFReyMdOKemz-1vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.589 [XNIO-1 task-1] 5DlvsccFReyMdOKemz-1vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6cf1725c-e865-4eea-9642-873d1e40f966 +19:00:50.589 [XNIO-1 task-1] 5DlvsccFReyMdOKemz-1vA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6cf1725c-e865-4eea-9642-873d1e40f966 +19:00:50.591 [XNIO-1 task-1] oUDzNQLITs2o-iRKfad3MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.591 [XNIO-1 task-1] oUDzNQLITs2o-iRKfad3MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.591 [XNIO-1 task-1] oUDzNQLITs2o-iRKfad3MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.591 [XNIO-1 task-1] oUDzNQLITs2o-iRKfad3MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.591 [XNIO-1 task-1] oUDzNQLITs2o-iRKfad3MQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.597 [XNIO-1 task-1] 5P12nMf3RNiddR26UG-9sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.598 [XNIO-1 task-1] 5P12nMf3RNiddR26UG-9sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.598 [XNIO-1 task-1] 5P12nMf3RNiddR26UG-9sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.598 [XNIO-1 task-1] 5P12nMf3RNiddR26UG-9sw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.598 [XNIO-1 task-1] 5P12nMf3RNiddR26UG-9sw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.602 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c1c49ccb-7729-4139-beed-242943e02e2c +19:00:50.604 [XNIO-1 task-1] CDVLPs-xRx2TNBE67mM4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.605 [XNIO-1 task-1] CDVLPs-xRx2TNBE67mM4jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.605 [XNIO-1 task-1] CDVLPs-xRx2TNBE67mM4jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.605 [XNIO-1 task-1] CDVLPs-xRx2TNBE67mM4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.607 [XNIO-1 task-1] CDVLPs-xRx2TNBE67mM4jg DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:50.607 [XNIO-1 task-1] CDVLPs-xRx2TNBE67mM4jg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:50.613 [XNIO-1 task-1] PsQiADXoQT21vpx5DEd-eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6cf1725c-e865-4eea-9642-873d1e40f966 +19:00:50.614 [XNIO-1 task-1] PsQiADXoQT21vpx5DEd-eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.614 [XNIO-1 task-1] PsQiADXoQT21vpx5DEd-eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.614 [XNIO-1 task-1] PsQiADXoQT21vpx5DEd-eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6cf1725c-e865-4eea-9642-873d1e40f966 +19:00:50.614 [XNIO-1 task-1] PsQiADXoQT21vpx5DEd-eg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6cf1725c-e865-4eea-9642-873d1e40f966 +19:00:50.627 [XNIO-1 task-1] 7qvBl7NWQYWlz9uBOwv1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.627 [XNIO-1 task-1] 7qvBl7NWQYWlz9uBOwv1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.627 [XNIO-1 task-1] 7qvBl7NWQYWlz9uBOwv1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.627 [XNIO-1 task-1] 7qvBl7NWQYWlz9uBOwv1cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.628 [XNIO-1 task-1] 7qvBl7NWQYWlz9uBOwv1cQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.636 [XNIO-1 task-1] 6eOjnaOoSTKydwWk3Aooqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f1bd22e2-a599-40eb-8fd6-ae249f0f5224, base path is set to: null +19:00:50.636 [XNIO-1 task-1] 6eOjnaOoSTKydwWk3Aooqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.636 [XNIO-1 task-1] 6eOjnaOoSTKydwWk3Aooqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.636 [XNIO-1 task-1] 6eOjnaOoSTKydwWk3Aooqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f1bd22e2-a599-40eb-8fd6-ae249f0f5224, base path is set to: null +19:00:50.636 [XNIO-1 task-1] 6eOjnaOoSTKydwWk3Aooqw DEBUG com.networknt.schema.TypeValidator debug - validate( "f1bd22e2-a599-40eb-8fd6-ae249f0f5224", "f1bd22e2-a599-40eb-8fd6-ae249f0f5224", refreshToken) +19:00:50.640 [XNIO-1 task-1] cc2ZMLEqR_WD-iG27QVP6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.640 [XNIO-1 task-1] cc2ZMLEqR_WD-iG27QVP6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.640 [XNIO-1 task-1] cc2ZMLEqR_WD-iG27QVP6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.641 [XNIO-1 task-1] cc2ZMLEqR_WD-iG27QVP6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.641 [XNIO-1 task-1] cc2ZMLEqR_WD-iG27QVP6A DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:50.641 [XNIO-1 task-1] cc2ZMLEqR_WD-iG27QVP6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:50.645 [XNIO-1 task-1] ojURMMUkSD6vFMCcGXfEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.645 [XNIO-1 task-1] ojURMMUkSD6vFMCcGXfEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.646 [XNIO-1 task-1] ojURMMUkSD6vFMCcGXfEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.646 [XNIO-1 task-1] ojURMMUkSD6vFMCcGXfEYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.646 [XNIO-1 task-1] ojURMMUkSD6vFMCcGXfEYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f9bbcf17-d3df-48dd-9f32-0c115b8ec85c +19:00:50.650 [XNIO-1 task-1] yHp6iKznRP6a-qrQLqa_yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.650 [XNIO-1 task-1] yHp6iKznRP6a-qrQLqa_yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.650 [XNIO-1 task-1] yHp6iKznRP6a-qrQLqa_yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.651 [XNIO-1 task-1] yHp6iKznRP6a-qrQLqa_yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/362dae62-cddb-4e74-b2fd-ba04e27e5eaf, base path is set to: null +19:00:50.651 [XNIO-1 task-1] yHp6iKznRP6a-qrQLqa_yg DEBUG com.networknt.schema.TypeValidator debug - validate( "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", "362dae62-cddb-4e74-b2fd-ba04e27e5eaf", refreshToken) +19:00:50.652 [XNIO-1 task-1] yHp6iKznRP6a-qrQLqa_yg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 362dae62-cddb-4e74-b2fd-ba04e27e5eaf is not found.","severity":"ERROR"} +19:00:50.662 [XNIO-1 task-1] 7jmZE_GvSM2eD06rxJg0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.662 [XNIO-1 task-1] 7jmZE_GvSM2eD06rxJg0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.662 [XNIO-1 task-1] 7jmZE_GvSM2eD06rxJg0MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.663 [XNIO-1 task-1] 7jmZE_GvSM2eD06rxJg0MQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.672 [XNIO-1 task-1] N0QERFyjQYSUSquXLXkkZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.672 [XNIO-1 task-1] N0QERFyjQYSUSquXLXkkZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.673 [XNIO-1 task-1] N0QERFyjQYSUSquXLXkkZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.673 [XNIO-1 task-1] N0QERFyjQYSUSquXLXkkZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.673 [XNIO-1 task-1] N0QERFyjQYSUSquXLXkkZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.683 [XNIO-1 task-1] bSoZJZt4TnGA506XYJ20Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.684 [XNIO-1 task-1] bSoZJZt4TnGA506XYJ20Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.684 [XNIO-1 task-1] bSoZJZt4TnGA506XYJ20Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.684 [XNIO-1 task-1] bSoZJZt4TnGA506XYJ20Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.684 [XNIO-1 task-1] bSoZJZt4TnGA506XYJ20Aw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.692 [XNIO-1 task-1] A0SB9sxsQOSeG8tq-lpRqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68f97d79-8347-48b5-864d-3f9cf6cb61a8, base path is set to: null +19:00:50.692 [XNIO-1 task-1] A0SB9sxsQOSeG8tq-lpRqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.692 [XNIO-1 task-1] A0SB9sxsQOSeG8tq-lpRqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.693 [XNIO-1 task-1] A0SB9sxsQOSeG8tq-lpRqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68f97d79-8347-48b5-864d-3f9cf6cb61a8, base path is set to: null +19:00:50.693 [XNIO-1 task-1] A0SB9sxsQOSeG8tq-lpRqA DEBUG com.networknt.schema.TypeValidator debug - validate( "68f97d79-8347-48b5-864d-3f9cf6cb61a8", "68f97d79-8347-48b5-864d-3f9cf6cb61a8", refreshToken) +19:00:50.706 [XNIO-1 task-1] 3SuIBtbQTWOE1MAOZbjEAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.707 [XNIO-1 task-1] 3SuIBtbQTWOE1MAOZbjEAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.707 [XNIO-1 task-1] 3SuIBtbQTWOE1MAOZbjEAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.707 [XNIO-1 task-1] 3SuIBtbQTWOE1MAOZbjEAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.707 [XNIO-1 task-1] 3SuIBtbQTWOE1MAOZbjEAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.715 [XNIO-1 task-1] y8QD8svcRLenal4kTCCCPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.715 [XNIO-1 task-1] y8QD8svcRLenal4kTCCCPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.715 [XNIO-1 task-1] y8QD8svcRLenal4kTCCCPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.715 [XNIO-1 task-1] y8QD8svcRLenal4kTCCCPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.715 [XNIO-1 task-1] y8QD8svcRLenal4kTCCCPg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.718 [XNIO-1 task-1] BDqXVo2KRNKTBdkZTGfbOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68f97d79-8347-48b5-864d-3f9cf6cb61a8, base path is set to: null +19:00:50.718 [XNIO-1 task-1] BDqXVo2KRNKTBdkZTGfbOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.718 [XNIO-1 task-1] BDqXVo2KRNKTBdkZTGfbOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.718 [XNIO-1 task-1] BDqXVo2KRNKTBdkZTGfbOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/68f97d79-8347-48b5-864d-3f9cf6cb61a8, base path is set to: null +19:00:50.718 [XNIO-1 task-1] BDqXVo2KRNKTBdkZTGfbOw DEBUG com.networknt.schema.TypeValidator debug - validate( "68f97d79-8347-48b5-864d-3f9cf6cb61a8", "68f97d79-8347-48b5-864d-3f9cf6cb61a8", refreshToken) +19:00:50.721 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:44a74070 +19:00:50.742 [XNIO-1 task-1] cMXSV2riSs2sucIMXwedDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.742 [XNIO-1 task-1] cMXSV2riSs2sucIMXwedDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.743 [XNIO-1 task-1] cMXSV2riSs2sucIMXwedDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.743 [XNIO-1 task-1] cMXSV2riSs2sucIMXwedDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.752 [XNIO-1 task-1] foyYdd3HQAimvkBI-APaIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.752 [XNIO-1 task-1] foyYdd3HQAimvkBI-APaIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.752 [XNIO-1 task-1] foyYdd3HQAimvkBI-APaIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.752 [XNIO-1 task-1] foyYdd3HQAimvkBI-APaIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.752 [XNIO-1 task-1] foyYdd3HQAimvkBI-APaIA DEBUG com.networknt.schema.TypeValidator debug - validate( "d75d285f-cb56-47c3-9350-f90c35ef7922", "d75d285f-cb56-47c3-9350-f90c35ef7922", refreshToken) +19:00:50.752 [XNIO-1 task-1] foyYdd3HQAimvkBI-APaIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d75d285f-cb56-47c3-9350-f90c35ef7922 is not found.","severity":"ERROR"} +19:00:50.757 [XNIO-1 task-1] LYwqa-xBSwOsH8qvY2YwiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.757 [XNIO-1 task-1] LYwqa-xBSwOsH8qvY2YwiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.757 [XNIO-1 task-1] LYwqa-xBSwOsH8qvY2YwiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.757 [XNIO-1 task-1] LYwqa-xBSwOsH8qvY2YwiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.758 [XNIO-1 task-1] LYwqa-xBSwOsH8qvY2YwiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.760 [XNIO-1 task-1] B6r7cXALTNOeucAk5tzpuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.760 [XNIO-1 task-1] B6r7cXALTNOeucAk5tzpuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.760 [XNIO-1 task-1] B6r7cXALTNOeucAk5tzpuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.760 [XNIO-1 task-1] B6r7cXALTNOeucAk5tzpuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.762 [XNIO-1 task-1] B6r7cXALTNOeucAk5tzpuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d75d285f-cb56-47c3-9350-f90c35ef7922", "d75d285f-cb56-47c3-9350-f90c35ef7922", refreshToken) +19:00:50.762 [XNIO-1 task-1] B6r7cXALTNOeucAk5tzpuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d75d285f-cb56-47c3-9350-f90c35ef7922 is not found.","severity":"ERROR"} +19:00:50.765 [XNIO-1 task-1] vTeXjOJES5qGG_Nu9jUVEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.765 [XNIO-1 task-1] vTeXjOJES5qGG_Nu9jUVEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.765 [XNIO-1 task-1] vTeXjOJES5qGG_Nu9jUVEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.765 [XNIO-1 task-1] vTeXjOJES5qGG_Nu9jUVEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.765 [XNIO-1 task-1] vTeXjOJES5qGG_Nu9jUVEA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.770 [XNIO-1 task-1] Fv2cLmaPTsmcN-18mKZ8AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.770 [XNIO-1 task-1] Fv2cLmaPTsmcN-18mKZ8AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.770 [XNIO-1 task-1] Fv2cLmaPTsmcN-18mKZ8AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.770 [XNIO-1 task-1] Fv2cLmaPTsmcN-18mKZ8AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d75d285f-cb56-47c3-9350-f90c35ef7922, base path is set to: null +19:00:50.770 [XNIO-1 task-1] Fv2cLmaPTsmcN-18mKZ8AA DEBUG com.networknt.schema.TypeValidator debug - validate( "d75d285f-cb56-47c3-9350-f90c35ef7922", "d75d285f-cb56-47c3-9350-f90c35ef7922", refreshToken) +19:00:50.771 [XNIO-1 task-1] Fv2cLmaPTsmcN-18mKZ8AA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d75d285f-cb56-47c3-9350-f90c35ef7922 is not found.","severity":"ERROR"} +19:00:50.780 [XNIO-1 task-1] vsxqAvwDSHmdokimEHa2_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.780 [XNIO-1 task-1] vsxqAvwDSHmdokimEHa2_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.780 [XNIO-1 task-1] vsxqAvwDSHmdokimEHa2_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.781 [XNIO-1 task-1] vsxqAvwDSHmdokimEHa2_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.795 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7ed0b2e9 +19:00:50.798 [XNIO-1 task-1] 9SMFVGa8R5GuHBXDCltcrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.799 [XNIO-1 task-1] 9SMFVGa8R5GuHBXDCltcrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.799 [XNIO-1 task-1] 9SMFVGa8R5GuHBXDCltcrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.799 [XNIO-1 task-1] 9SMFVGa8R5GuHBXDCltcrg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.799 [XNIO-1 task-1] 9SMFVGa8R5GuHBXDCltcrg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.805 [XNIO-1 task-1] 7OSFdnNyTLW0kvX6WCqn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.805 [XNIO-1 task-1] 7OSFdnNyTLW0kvX6WCqn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.805 [XNIO-1 task-1] 7OSFdnNyTLW0kvX6WCqn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.805 [XNIO-1 task-1] 7OSFdnNyTLW0kvX6WCqn6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.805 [XNIO-1 task-1] 7OSFdnNyTLW0kvX6WCqn6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.811 [XNIO-1 task-1] 4RylcTJyTpqxxLg5Vc3MlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.811 [XNIO-1 task-1] 4RylcTJyTpqxxLg5Vc3MlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.811 [XNIO-1 task-1] 4RylcTJyTpqxxLg5Vc3MlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.811 [XNIO-1 task-1] 4RylcTJyTpqxxLg5Vc3MlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.811 [XNIO-1 task-1] 4RylcTJyTpqxxLg5Vc3MlA DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:50.811 [XNIO-1 task-1] 4RylcTJyTpqxxLg5Vc3MlA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:50.822 [XNIO-1 task-1] sw8iBLmHRHawaGKcLkx6_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.822 [XNIO-1 task-1] sw8iBLmHRHawaGKcLkx6_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.822 [XNIO-1 task-1] sw8iBLmHRHawaGKcLkx6_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.822 [XNIO-1 task-1] sw8iBLmHRHawaGKcLkx6_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.822 [XNIO-1 task-1] sw8iBLmHRHawaGKcLkx6_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.825 [XNIO-1 task-1] J16P2_IsTH-SNMWgvofMdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.825 [XNIO-1 task-1] J16P2_IsTH-SNMWgvofMdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.825 [XNIO-1 task-1] J16P2_IsTH-SNMWgvofMdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.826 [XNIO-1 task-1] J16P2_IsTH-SNMWgvofMdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.826 [XNIO-1 task-1] J16P2_IsTH-SNMWgvofMdA DEBUG com.networknt.schema.TypeValidator debug - validate( "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", "ad63d8c6-3384-4b4d-ab54-0180ad46ea22", refreshToken) +19:00:50.827 [XNIO-1 task-1] J16P2_IsTH-SNMWgvofMdA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ad63d8c6-3384-4b4d-ab54-0180ad46ea22 is not found.","severity":"ERROR"} +19:00:50.828 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dd354670-c8f7-4008-b76b-3793cf0a7b21 +19:00:50.835 [XNIO-1 task-1] gp5ymmY_Tl6IMBMBN-2ZJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.835 [XNIO-1 task-1] gp5ymmY_Tl6IMBMBN-2ZJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.835 [XNIO-1 task-1] gp5ymmY_Tl6IMBMBN-2ZJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.835 [XNIO-1 task-1] gp5ymmY_Tl6IMBMBN-2ZJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.842 [XNIO-1 task-1] nhd3dznoTzi8QTz41TVzhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.842 [XNIO-1 task-1] nhd3dznoTzi8QTz41TVzhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.842 [XNIO-1 task-1] nhd3dznoTzi8QTz41TVzhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.843 [XNIO-1 task-1] nhd3dznoTzi8QTz41TVzhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.844 [XNIO-1 task-1] nhd3dznoTzi8QTz41TVzhg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.844 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:392c586a +19:00:50.855 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:dd354670-c8f7-4008-b76b-3793cf0a7b21 +19:00:50.857 [XNIO-1 task-1] rAEAHXmJTY6QDa1C-snAaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.857 [XNIO-1 task-1] rAEAHXmJTY6QDa1C-snAaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.857 [XNIO-1 task-1] rAEAHXmJTY6QDa1C-snAaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.857 [XNIO-1 task-1] rAEAHXmJTY6QDa1C-snAaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.868 [XNIO-1 task-1] mdO2TxO5TNq_hOaC6HfOJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.868 [XNIO-1 task-1] mdO2TxO5TNq_hOaC6HfOJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.868 [XNIO-1 task-1] mdO2TxO5TNq_hOaC6HfOJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.868 [XNIO-1 task-1] mdO2TxO5TNq_hOaC6HfOJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.868 [XNIO-1 task-1] mdO2TxO5TNq_hOaC6HfOJA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.881 [XNIO-1 task-1] IaD-Jgg7QhKqOZmHa7_a2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.881 [XNIO-1 task-1] IaD-Jgg7QhKqOZmHa7_a2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.881 [XNIO-1 task-1] IaD-Jgg7QhKqOZmHa7_a2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.881 [XNIO-1 task-1] IaD-Jgg7QhKqOZmHa7_a2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.895 [XNIO-1 task-1] s6vd3eYBRZKy2r8IsRzk1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.895 [XNIO-1 task-1] s6vd3eYBRZKy2r8IsRzk1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.895 [XNIO-1 task-1] s6vd3eYBRZKy2r8IsRzk1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +19:00:50.895 [XNIO-1 task-1] s6vd3eYBRZKy2r8IsRzk1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:50.895 [XNIO-1 task-1] s6vd3eYBRZKy2r8IsRzk1w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +19:00:50.901 [XNIO-1 task-1] 6hdVuh3hTOa_bHqwQKFrDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.901 [XNIO-1 task-1] 6hdVuh3hTOa_bHqwQKFrDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.901 [XNIO-1 task-1] 6hdVuh3hTOa_bHqwQKFrDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.902 [XNIO-1 task-1] 6hdVuh3hTOa_bHqwQKFrDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:50.907 [XNIO-1 task-1] M3ofzxfgSWCWbQ_duvWQVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22, base path is set to: null +19:00:50.907 [XNIO-1 task-1] M3ofzxfgSWCWbQ_duvWQVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.908 [XNIO-1 task-1] M3ofzxfgSWCWbQ_duvWQVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.909 [XNIO-1 task-1] M3ofzxfgSWCWbQ_duvWQVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.909 [XNIO-1 task-1] M3ofzxfgSWCWbQ_duvWQVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.909 [XNIO-1 task-1] M3ofzxfgSWCWbQ_duvWQVA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.911 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:857c8e2f +19:00:50.913 [XNIO-1 task-1] tOzBhhBSRqCU6nbcRHIb6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/536b386d-eaa1-451f-a4a3-5ddb600eb3ef, base path is set to: null +19:00:50.913 [XNIO-1 task-1] tOzBhhBSRqCU6nbcRHIb6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +19:00:50.913 [XNIO-1 task-1] tOzBhhBSRqCU6nbcRHIb6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +19:00:50.914 [XNIO-1 task-1] tOzBhhBSRqCU6nbcRHIb6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/536b386d-eaa1-451f-a4a3-5ddb600eb3ef, base path is set to: null +19:00:50.915 [XNIO-1 task-1] tOzBhhBSRqCU6nbcRHIb6g DEBUG com.networknt.schema.TypeValidator debug - validate( "536b386d-eaa1-451f-a4a3-5ddb600eb3ef", "536b386d-eaa1-451f-a4a3-5ddb600eb3ef", refreshToken) +19:00:50.917 [XNIO-1 task-1] tOzBhhBSRqCU6nbcRHIb6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 536b386d-eaa1-451f-a4a3-5ddb600eb3ef is not found.","severity":"ERROR"} +19:00:50.920 [XNIO-1 task-1] oBSAmsoXSKqHJoWY-onByA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.921 [XNIO-1 task-1] oBSAmsoXSKqHJoWY-onByA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +19:00:50.921 [XNIO-1 task-1] oBSAmsoXSKqHJoWY-onByA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +19:00:50.921 [XNIO-1 task-1] oBSAmsoXSKqHJoWY-onByA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.921 [XNIO-1 task-1] oBSAmsoXSKqHJoWY-onByA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ad63d8c6-3384-4b4d-ab54-0180ad46ea22 +19:00:50.922 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2a4556c0-0839-4d9b-b6fa-9cf36e90dc52 diff --git a/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-service-1.log b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..3d7990f --- /dev/null +++ b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1874 @@ +19:00:39.206 [XNIO-1 task-2] rssHjriVTymn6vj0WdeRPw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cfb3d160","serviceName":"872841bc-be09-4dec-9dfa-ff0ab118","serviceDesc":"1386dddd-9e38-4cb1-9d50-8d43849752b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.206 [XNIO-1 task-2] rssHjriVTymn6vj0WdeRPw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cfb3d160","serviceName":"872841bc-be09-4dec-9dfa-ff0ab118","serviceDesc":"1386dddd-9e38-4cb1-9d50-8d43849752b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:39.206 [XNIO-1 task-2] rssHjriVTymn6vj0WdeRPw DEBUG com.networknt.schema.TypeValidator debug - validate( "872841bc-be09-4dec-9dfa-ff0ab118", {"serviceType":"swagger","serviceId":"cfb3d160","serviceName":"872841bc-be09-4dec-9dfa-ff0ab118","serviceDesc":"1386dddd-9e38-4cb1-9d50-8d43849752b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:39.207 [XNIO-1 task-2] rssHjriVTymn6vj0WdeRPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cfb3d160","serviceName":"872841bc-be09-4dec-9dfa-ff0ab118","serviceDesc":"1386dddd-9e38-4cb1-9d50-8d43849752b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cfb3d160","serviceName":"872841bc-be09-4dec-9dfa-ff0ab118","serviceDesc":"1386dddd-9e38-4cb1-9d50-8d43849752b9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.207 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cfb3d160 +19:00:39.216 [XNIO-1 task-2] 4SaaaMZHSlifFzrqxKMFCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cfb3d160, base path is set to: null +19:00:39.216 [XNIO-1 task-2] 4SaaaMZHSlifFzrqxKMFCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.216 [XNIO-1 task-2] 4SaaaMZHSlifFzrqxKMFCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:39.217 [XNIO-1 task-2] 4SaaaMZHSlifFzrqxKMFCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cfb3d160, base path is set to: null +19:00:39.217 [XNIO-1 task-2] 4SaaaMZHSlifFzrqxKMFCg DEBUG com.networknt.schema.TypeValidator debug - validate( "cfb3d160", "cfb3d160", serviceId) +19:00:39.227 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cfb3d160 +19:00:39.239 [XNIO-1 task-2] KiCy5JjaT2S47a8_xpvC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.239 [XNIO-1 task-2] KiCy5JjaT2S47a8_xpvC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.239 [XNIO-1 task-2] KiCy5JjaT2S47a8_xpvC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.240 [XNIO-1 task-2] KiCy5JjaT2S47a8_xpvC1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.256 [XNIO-1 task-2] C-WeS7c3RKSCYZUIyfwuaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.257 [XNIO-1 task-2] C-WeS7c3RKSCYZUIyfwuaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.257 [XNIO-1 task-2] C-WeS7c3RKSCYZUIyfwuaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.277 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.278 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.278 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.279 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.279 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.279 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac149f2-1a3c-404d-8d18-6b65f8b6aef8", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:39.279 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:39.280 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.280 [XNIO-1 task-2] qez_F-QFQCWBCGbgRFzfLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.291 [XNIO-1 task-2] Hdkw3z2eQvCCOi3cMYYD4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.291 [XNIO-1 task-2] Hdkw3z2eQvCCOi3cMYYD4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.291 [XNIO-1 task-2] Hdkw3z2eQvCCOi3cMYYD4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.292 [XNIO-1 task-2] Hdkw3z2eQvCCOi3cMYYD4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.315 [XNIO-1 task-2] Vc3x8-GHSQ2em1ENmpsVXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.315 [XNIO-1 task-2] Vc3x8-GHSQ2em1ENmpsVXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.316 [XNIO-1 task-2] Vc3x8-GHSQ2em1ENmpsVXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.343 [XNIO-1 task-2] yk0JLNbdTKSUxDX1T1k65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c0bc7c71 +19:00:39.343 [XNIO-1 task-2] yk0JLNbdTKSUxDX1T1k65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.343 [XNIO-1 task-2] yk0JLNbdTKSUxDX1T1k65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:39.344 [XNIO-1 task-2] yk0JLNbdTKSUxDX1T1k65A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c0bc7c71 +19:00:39.348 [XNIO-1 task-2] xAOS05W6SbCGi7jHrUDp2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a9ca1cc8, base path is set to: null +19:00:39.348 [XNIO-1 task-2] xAOS05W6SbCGi7jHrUDp2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.348 [XNIO-1 task-2] xAOS05W6SbCGi7jHrUDp2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:39.348 [XNIO-1 task-2] xAOS05W6SbCGi7jHrUDp2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a9ca1cc8, base path is set to: null +19:00:39.349 [XNIO-1 task-2] xAOS05W6SbCGi7jHrUDp2g DEBUG com.networknt.schema.TypeValidator debug - validate( "a9ca1cc8", "a9ca1cc8", serviceId) +19:00:39.355 [XNIO-1 task-2] 47gWyjuaSdqBnmK_W4mmnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.355 [XNIO-1 task-2] 47gWyjuaSdqBnmK_W4mmnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.355 [XNIO-1 task-2] 47gWyjuaSdqBnmK_W4mmnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.356 [XNIO-1 task-2] 47gWyjuaSdqBnmK_W4mmnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.428 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.428 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.428 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.429 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.430 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.430 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG com.networknt.schema.TypeValidator debug - validate( "104f5346-e573-4c2c-912c-c19a63c2a51f", {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:39.430 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG com.networknt.schema.TypeValidator debug - validate( "a9ca1cc8", {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:39.430 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.430 [XNIO-1 task-2] h8Y0_69UQR-wWwzTc4EBdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a9ca1cc8","serviceName":"ea07c32c-3ec6-4766-a873-996cbf1f","serviceDesc":"104f5346-e573-4c2c-912c-c19a63c2a51f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.440 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.440 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.440 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.441 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.441 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.441 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac149f2-1a3c-404d-8d18-6b65f8b6aef8", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:39.441 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:39.442 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.442 [XNIO-1 task-2] ezJdhdK9TCCwyw2lmBjd8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.453 [XNIO-1 task-2] 7M-PNebuSVKnu4T12unwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.453 [XNIO-1 task-2] 7M-PNebuSVKnu4T12unwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.454 [XNIO-1 task-2] 7M-PNebuSVKnu4T12unwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.472 [XNIO-1 task-2] Xb6x7-NERAudrRtjQNN_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a9ca1cc8 +19:00:39.472 [XNIO-1 task-2] Xb6x7-NERAudrRtjQNN_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.472 [XNIO-1 task-2] Xb6x7-NERAudrRtjQNN_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:39.473 [XNIO-1 task-2] Xb6x7-NERAudrRtjQNN_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a9ca1cc8 +19:00:39.479 [XNIO-1 task-2] zm0L7jZ_QeeCUdWPJ957wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.479 [XNIO-1 task-2] zm0L7jZ_QeeCUdWPJ957wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.479 [XNIO-1 task-2] zm0L7jZ_QeeCUdWPJ957wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.493 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.494 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.494 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.495 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.495 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.495 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.495 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:39.496 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG com.networknt.schema.TypeValidator debug - validate( "a33780d5-f724-4762-b011-dd755113", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:39.496 [XNIO-1 task-2] hCL7OUDeQ6-q-uIZhtIPdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.530 [XNIO-1 task-2] -troq8FgTjq_xrVIJJE6bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0bc7c71, base path is set to: null +19:00:39.530 [XNIO-1 task-2] -troq8FgTjq_xrVIJJE6bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.530 [XNIO-1 task-2] -troq8FgTjq_xrVIJJE6bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:39.530 [XNIO-1 task-2] -troq8FgTjq_xrVIJJE6bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0bc7c71, base path is set to: null +19:00:39.531 [XNIO-1 task-2] -troq8FgTjq_xrVIJJE6bA DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", "c0bc7c71", serviceId) +19:00:39.538 [XNIO-1 task-2] wYpQPsAQRcSJwGHPSQnApg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.538 [XNIO-1 task-2] wYpQPsAQRcSJwGHPSQnApg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.539 [XNIO-1 task-2] wYpQPsAQRcSJwGHPSQnApg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.539 [XNIO-1 task-2] wYpQPsAQRcSJwGHPSQnApg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.565 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.565 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.565 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.566 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.567 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.567 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac149f2-1a3c-404d-8d18-6b65f8b6aef8", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:39.567 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:39.567 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.567 [XNIO-1 task-2] W8Rl7p5qTTiMqR9OOz0hMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.640 [XNIO-1 task-2] KZjBXQ3yT8ulcdUjJqUVEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a9ca1cc8 +19:00:39.640 [XNIO-1 task-2] KZjBXQ3yT8ulcdUjJqUVEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.640 [XNIO-1 task-2] KZjBXQ3yT8ulcdUjJqUVEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:39.640 [XNIO-1 task-2] KZjBXQ3yT8ulcdUjJqUVEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a9ca1cc8 +19:00:39.666 [XNIO-1 task-2] zmQl5PF1ThClygN5-yc7gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.666 [XNIO-1 task-2] zmQl5PF1ThClygN5-yc7gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.667 [XNIO-1 task-2] zmQl5PF1ThClygN5-yc7gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.691 [XNIO-1 task-2] eesruogaSSOLyMwZMPr7DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/679c318c, base path is set to: null +19:00:39.691 [XNIO-1 task-2] eesruogaSSOLyMwZMPr7DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.691 [XNIO-1 task-2] eesruogaSSOLyMwZMPr7DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:39.691 [XNIO-1 task-2] eesruogaSSOLyMwZMPr7DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/679c318c, base path is set to: null +19:00:39.692 [XNIO-1 task-2] eesruogaSSOLyMwZMPr7DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "679c318c", "679c318c", serviceId) +19:00:39.706 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.706 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.707 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.707 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.707 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.708 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac149f2-1a3c-404d-8d18-6b65f8b6aef8", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:39.708 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:39.708 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.708 [XNIO-1 task-2] 2iWhMsmuQnOlJ9pm2BxqHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.748 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2eca9ddc +19:00:39.769 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.770 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.770 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.771 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.771 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.771 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.771 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:39.771 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG com.networknt.schema.TypeValidator debug - validate( "a33780d5-f724-4762-b011-dd755113", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:39.771 [XNIO-1 task-2] tUDES7mFTU2ziEThEQnEMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.784 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.785 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.786 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.786 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.787 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.787 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.787 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:39.787 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1180714f-9a7d-4bea-9614-0bbfa568", {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:39.787 [XNIO-1 task-2] HbW42pd6S_K13dAsWtaj-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a34813d0","serviceName":"1180714f-9a7d-4bea-9614-0bbfa568","serviceDesc":"e2edef19-1837-4563-8a1c-9c2a9e45e33b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.806 [XNIO-1 task-2] EQxr27VCSWig4BrZOeX1sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a34813d0, base path is set to: null +19:00:39.806 [XNIO-1 task-2] EQxr27VCSWig4BrZOeX1sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.806 [XNIO-1 task-2] EQxr27VCSWig4BrZOeX1sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:39.806 [XNIO-1 task-2] EQxr27VCSWig4BrZOeX1sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a34813d0, base path is set to: null +19:00:39.807 [XNIO-1 task-2] EQxr27VCSWig4BrZOeX1sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a34813d0", "a34813d0", serviceId) +19:00:39.811 [XNIO-1 task-2] 1jQPffuyRBuPhmxiC6JxCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a34813d0 +19:00:39.811 [XNIO-1 task-2] 1jQPffuyRBuPhmxiC6JxCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.812 [XNIO-1 task-2] 1jQPffuyRBuPhmxiC6JxCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:39.812 [XNIO-1 task-2] 1jQPffuyRBuPhmxiC6JxCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a34813d0 +19:00:39.839 [XNIO-1 task-2] 5wEyhKB9RBukL_1YTqUkJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.839 [XNIO-1 task-2] 5wEyhKB9RBukL_1YTqUkJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.839 [XNIO-1 task-2] 5wEyhKB9RBukL_1YTqUkJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.840 [XNIO-1 task-2] 5wEyhKB9RBukL_1YTqUkJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.869 [XNIO-1 task-2] dPFcMyd3Rr6LK9HGHSYzjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.869 [XNIO-1 task-2] dPFcMyd3Rr6LK9HGHSYzjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:39.874 [XNIO-1 task-2] dPFcMyd3Rr6LK9HGHSYzjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:39.884 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2eca9ddc +19:00:39.904 [XNIO-1 task-2] hpbWys_0Q7O_HQ-POQHtSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.905 [XNIO-1 task-2] hpbWys_0Q7O_HQ-POQHtSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.905 [XNIO-1 task-2] hpbWys_0Q7O_HQ-POQHtSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.918 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.918 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.919 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.919 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.921 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.921 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "45ec5ac1-22b6-43c2-9dbc-1d02a369198a", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:39.921 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a033045", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:39.921 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.921 [XNIO-1 task-2] XtBeuD4PSgC8lBmA1ILCtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.935 [XNIO-1 task-2] yIaG65uxQ8KXbC71_Rkqaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.936 [XNIO-1 task-2] yIaG65uxQ8KXbC71_Rkqaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.936 [XNIO-1 task-2] yIaG65uxQ8KXbC71_Rkqaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.936 [XNIO-1 task-2] yIaG65uxQ8KXbC71_Rkqaw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.962 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.962 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.963 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.963 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.964 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:39.964 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac149f2-1a3c-404d-8d18-6b65f8b6aef8", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:39.964 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:39.964 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:39.964 [XNIO-1 task-2] jPcuzfZRS_GZT80nBo0_bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:39.974 [XNIO-1 task-2] y7bA4O-SShGAoYqNLM9YpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.975 [XNIO-1 task-2] y7bA4O-SShGAoYqNLM9YpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.975 [XNIO-1 task-2] y7bA4O-SShGAoYqNLM9YpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.975 [XNIO-1 task-2] y7bA4O-SShGAoYqNLM9YpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.989 [XNIO-1 task-2] PXnwakELTQO0KUGV5ou0lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.989 [XNIO-1 task-2] PXnwakELTQO0KUGV5ou0lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.989 [XNIO-1 task-2] PXnwakELTQO0KUGV5ou0lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:39.990 [XNIO-1 task-2] PXnwakELTQO0KUGV5ou0lg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.023 [XNIO-1 task-2] kZ_ZeqScTtiWV1LDcgtnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:40.023 [XNIO-1 task-2] kZ_ZeqScTtiWV1LDcgtnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.023 [XNIO-1 task-2] kZ_ZeqScTtiWV1LDcgtnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:40.024 [XNIO-1 task-2] kZ_ZeqScTtiWV1LDcgtnZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:40.028 [XNIO-1 task-2] A9WrzO3fTpaWT4EjM1-pjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.031 [XNIO-1 task-2] A9WrzO3fTpaWT4EjM1-pjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.031 [XNIO-1 task-2] A9WrzO3fTpaWT4EjM1-pjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.031 [XNIO-1 task-2] A9WrzO3fTpaWT4EjM1-pjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.058 [XNIO-1 task-2] y2sF4HQjQtqNrwM5dy7VWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.058 [XNIO-1 task-2] y2sF4HQjQtqNrwM5dy7VWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.058 [XNIO-1 task-2] y2sF4HQjQtqNrwM5dy7VWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.059 [XNIO-1 task-2] y2sF4HQjQtqNrwM5dy7VWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.092 [XNIO-1 task-2] gKbNzQgVTnyYEbAJ9qc9Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.092 [XNIO-1 task-2] gKbNzQgVTnyYEbAJ9qc9Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.093 [XNIO-1 task-2] gKbNzQgVTnyYEbAJ9qc9Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.094 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4eea5280 +19:00:40.110 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4eea5280 +19:00:40.126 [XNIO-1 task-2] XmjZtM-cQS69fBZ1QGPc5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.126 [XNIO-1 task-2] XmjZtM-cQS69fBZ1QGPc5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.126 [XNIO-1 task-2] XmjZtM-cQS69fBZ1QGPc5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.127 [XNIO-1 task-2] XmjZtM-cQS69fBZ1QGPc5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.183 [XNIO-1 task-2] F5fTB0IlQDawLjSSR9StuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8fc95d40 +19:00:40.183 [XNIO-1 task-2] F5fTB0IlQDawLjSSR9StuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.183 [XNIO-1 task-2] F5fTB0IlQDawLjSSR9StuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:40.183 [XNIO-1 task-2] F5fTB0IlQDawLjSSR9StuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8fc95d40 +19:00:40.188 [XNIO-1 task-2] 2D2zfBbdSzqaEb9eJOTahQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.188 [XNIO-1 task-2] 2D2zfBbdSzqaEb9eJOTahQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.188 [XNIO-1 task-2] 2D2zfBbdSzqaEb9eJOTahQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.188 [XNIO-1 task-2] 2D2zfBbdSzqaEb9eJOTahQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.209 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f40100a9-a5c5-415f-86a4-f5b13a9e2413 +19:00:40.216 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f40100a9-a5c5-415f-86a4-f5b13a9e2413 +19:00:40.246 [XNIO-1 task-2] n5i0qV4sTR-xs6GpgLs-yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.246 [XNIO-1 task-2] n5i0qV4sTR-xs6GpgLs-yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.246 [XNIO-1 task-2] n5i0qV4sTR-xs6GpgLs-yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.247 [XNIO-1 task-2] n5i0qV4sTR-xs6GpgLs-yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.276 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.276 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.276 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.277 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.277 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:40.277 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac149f2-1a3c-404d-8d18-6b65f8b6aef8", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:40.277 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:40.277 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:40.278 [XNIO-1 task-2] fFA-2BC-QtWj8DiknS4pHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c0bc7c71","serviceName":"3345011d-05db-4fc4-98f3-27f658b4","serviceDesc":"7ac149f2-1a3c-404d-8d18-6b65f8b6aef8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.293 [XNIO-1 task-2] q_LDl-9fRBSTszHMUBcyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.293 [XNIO-1 task-2] q_LDl-9fRBSTszHMUBcyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.294 [XNIO-1 task-2] q_LDl-9fRBSTszHMUBcyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.325 [XNIO-1 task-2] FXj3PlmERK-Wvz2Xh_OYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.325 [XNIO-1 task-2] FXj3PlmERK-Wvz2Xh_OYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.325 [XNIO-1 task-2] FXj3PlmERK-Wvz2Xh_OYJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.325 [XNIO-1 task-2] FXj3PlmERK-Wvz2Xh_OYJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.356 [XNIO-1 task-2] QP7xZ7YlS0WOaTexVgDkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/53634790 +19:00:40.356 [XNIO-1 task-2] QP7xZ7YlS0WOaTexVgDkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.356 [XNIO-1 task-2] QP7xZ7YlS0WOaTexVgDkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:40.357 [XNIO-1 task-2] QP7xZ7YlS0WOaTexVgDkKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/53634790 +19:00:40.393 [XNIO-1 task-2] cb7ILsK1RNykjWP0MwRzBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.394 [XNIO-1 task-2] cb7ILsK1RNykjWP0MwRzBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.394 [XNIO-1 task-2] cb7ILsK1RNykjWP0MwRzBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.405 [XNIO-1 task-2] PkTy4kf3SKeCdZFg4Pie7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.405 [XNIO-1 task-2] PkTy4kf3SKeCdZFg4Pie7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.405 [XNIO-1 task-2] PkTy4kf3SKeCdZFg4Pie7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.406 [XNIO-1 task-2] PkTy4kf3SKeCdZFg4Pie7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.465 [XNIO-1 task-2] 3vFbyBB7R_6Z5f4jYcO4Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0bc7c71, base path is set to: null +19:00:40.465 [XNIO-1 task-2] 3vFbyBB7R_6Z5f4jYcO4Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.465 [XNIO-1 task-2] 3vFbyBB7R_6Z5f4jYcO4Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:40.466 [XNIO-1 task-2] 3vFbyBB7R_6Z5f4jYcO4Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c0bc7c71, base path is set to: null +19:00:40.466 [XNIO-1 task-2] 3vFbyBB7R_6Z5f4jYcO4Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0bc7c71", "c0bc7c71", serviceId) +19:00:40.476 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.476 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.477 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.478 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.478 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:40.478 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG com.networknt.schema.TypeValidator debug - validate( "2c4a656f-7a79-4763-aeec-671d60cdeb81", {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:40.478 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG com.networknt.schema.TypeValidator debug - validate( "321a9590", {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:40.478 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:40.478 [XNIO-1 task-2] mWg_BZ1IRBKOlblxqMeD1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"321a9590","serviceName":"cc78741f-1d2c-4ebb-b324-80423ed3","serviceDesc":"2c4a656f-7a79-4763-aeec-671d60cdeb81","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:40.494 [XNIO-1 task-2] Jzqi0plyQQCG_gep2vgT0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.495 [XNIO-1 task-2] Jzqi0plyQQCG_gep2vgT0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.496 [XNIO-1 task-2] Jzqi0plyQQCG_gep2vgT0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.651 [XNIO-1 task-2] Ye8l417rQnSeGJJnx9rpNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4eea5280, base path is set to: null +19:00:40.651 [XNIO-1 task-2] Ye8l417rQnSeGJJnx9rpNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.651 [XNIO-1 task-2] Ye8l417rQnSeGJJnx9rpNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:40.651 [XNIO-1 task-2] Ye8l417rQnSeGJJnx9rpNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4eea5280, base path is set to: null +19:00:40.652 [XNIO-1 task-2] Ye8l417rQnSeGJJnx9rpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "4eea5280", "4eea5280", serviceId) +19:00:40.672 [XNIO-1 task-2] r6V7lJxFQmK6O7n0Ku8Y_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4eea5280 +19:00:40.673 [XNIO-1 task-2] r6V7lJxFQmK6O7n0Ku8Y_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.673 [XNIO-1 task-2] r6V7lJxFQmK6O7n0Ku8Y_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:40.673 [XNIO-1 task-2] r6V7lJxFQmK6O7n0Ku8Y_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4eea5280 +19:00:40.693 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4eea5280 +19:00:40.703 [XNIO-1 task-2] jvkSm6XVRxyQSBYdeMv2cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8088f04a, base path is set to: null +19:00:40.703 [XNIO-1 task-2] jvkSm6XVRxyQSBYdeMv2cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.703 [XNIO-1 task-2] jvkSm6XVRxyQSBYdeMv2cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:40.704 [XNIO-1 task-2] jvkSm6XVRxyQSBYdeMv2cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8088f04a, base path is set to: null +19:00:40.704 [XNIO-1 task-2] jvkSm6XVRxyQSBYdeMv2cg DEBUG com.networknt.schema.TypeValidator debug - validate( "8088f04a", "8088f04a", serviceId) +19:00:40.751 [XNIO-1 task-2] 3ZLdGDJTTiyBeNHYXFj1Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.752 [XNIO-1 task-2] 3ZLdGDJTTiyBeNHYXFj1Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.753 [XNIO-1 task-2] 3ZLdGDJTTiyBeNHYXFj1Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.757 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5990afa +19:00:40.782 [XNIO-1 task-2] 9L7Le-t2SZiBC0CLPzUlPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.782 [XNIO-1 task-2] 9L7Le-t2SZiBC0CLPzUlPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:40.783 [XNIO-1 task-2] 9L7Le-t2SZiBC0CLPzUlPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:40.783 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c2ba1367 +19:00:40.785 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c2ba1367 +19:00:40.805 [XNIO-1 task-2] DLl75fx1QRu1R5QxIozW9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.805 [XNIO-1 task-2] DLl75fx1QRu1R5QxIozW9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.805 [XNIO-1 task-2] DLl75fx1QRu1R5QxIozW9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.806 [XNIO-1 task-2] DLl75fx1QRu1R5QxIozW9w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.913 [XNIO-1 task-2] WMHAS73lQUeIXqzNU0chSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.913 [XNIO-1 task-2] WMHAS73lQUeIXqzNU0chSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.913 [XNIO-1 task-2] WMHAS73lQUeIXqzNU0chSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.914 [XNIO-1 task-2] WMHAS73lQUeIXqzNU0chSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.937 [XNIO-1 task-2] pgB6gpAEQd22_S2czDG36Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.937 [XNIO-1 task-2] pgB6gpAEQd22_S2czDG36Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:40.937 [XNIO-1 task-2] pgB6gpAEQd22_S2czDG36Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.083 [XNIO-1 task-2] c-LFVZ9kRty_KNZRFxLgAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.084 [XNIO-1 task-2] c-LFVZ9kRty_KNZRFxLgAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.084 [XNIO-1 task-2] c-LFVZ9kRty_KNZRFxLgAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.084 [XNIO-1 task-2] c-LFVZ9kRty_KNZRFxLgAg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.116 [XNIO-1 task-2] -1hYVcTcT8eND1cH1ritIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.116 [XNIO-1 task-2] -1hYVcTcT8eND1cH1ritIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.116 [XNIO-1 task-2] -1hYVcTcT8eND1cH1ritIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.116 [XNIO-1 task-2] -1hYVcTcT8eND1cH1ritIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.201 [XNIO-1 task-2] XfjXml-gTXGAMSn5TlLzNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:41.201 [XNIO-1 task-2] XfjXml-gTXGAMSn5TlLzNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.203 [XNIO-1 task-2] XfjXml-gTXGAMSn5TlLzNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:41.203 [XNIO-1 task-2] XfjXml-gTXGAMSn5TlLzNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:41.229 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5b260c84-a818-40a1-a14e-fbe862535660 +19:00:41.230 [XNIO-1 task-2] DQcfZEIgScKbXrm7fluoPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.230 [XNIO-1 task-2] DQcfZEIgScKbXrm7fluoPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.231 [XNIO-1 task-2] DQcfZEIgScKbXrm7fluoPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.239 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5b260c84-a818-40a1-a14e-fbe862535660 +19:00:41.255 [XNIO-1 task-2] B9kE0QugQe6L58mFjVxGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.255 [XNIO-1 task-2] B9kE0QugQe6L58mFjVxGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.256 [XNIO-1 task-2] B9kE0QugQe6L58mFjVxGjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.371 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3e8ae7f5 +19:00:41.371 [XNIO-1 task-2] vOQ4Bf9rTD-cmby61R8zSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:41.371 [XNIO-1 task-2] vOQ4Bf9rTD-cmby61R8zSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:41.371 [XNIO-1 task-2] vOQ4Bf9rTD-cmby61R8zSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fc95d40, base path is set to: null +19:00:41.372 [XNIO-1 task-2] vOQ4Bf9rTD-cmby61R8zSw DEBUG com.networknt.schema.TypeValidator debug - validate( "8fc95d40", "8fc95d40", serviceId) +19:00:41.376 [XNIO-1 task-2] NWkgCtCgQMC5E57RjGItaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.376 [XNIO-1 task-2] NWkgCtCgQMC5E57RjGItaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.377 [XNIO-1 task-2] NWkgCtCgQMC5E57RjGItaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.380 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3e8ae7f5 +19:00:41.404 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3e8ae7f5 +19:00:41.439 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3e8ae7f5 +19:00:41.451 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.451 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.453 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.454 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.454 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:41.454 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ea10ade7-fd6e-41a0-8352-a5e022686816", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:41.454 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1fa30ae4", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:41.454 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:41.455 [XNIO-1 task-2] -Lxch9pERPS6JFmz6NC0lQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.536 [XNIO-1 task-2] a7KhqmRAQ9unR6fYPZPWbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:41.537 [XNIO-1 task-2] a7KhqmRAQ9unR6fYPZPWbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.537 [XNIO-1 task-2] a7KhqmRAQ9unR6fYPZPWbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:41.537 [XNIO-1 task-2] a7KhqmRAQ9unR6fYPZPWbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:41.563 [XNIO-1 task-2] YcRycAmuTAKy6fpky9Nw2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c2ba1367, base path is set to: null +19:00:41.564 [XNIO-1 task-2] YcRycAmuTAKy6fpky9Nw2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:41.564 [XNIO-1 task-2] YcRycAmuTAKy6fpky9Nw2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:41.564 [XNIO-1 task-2] YcRycAmuTAKy6fpky9Nw2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c2ba1367, base path is set to: null +19:00:41.564 [XNIO-1 task-2] YcRycAmuTAKy6fpky9Nw2g DEBUG com.networknt.schema.TypeValidator debug - validate( "c2ba1367", "c2ba1367", serviceId) +19:00:41.566 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c2ba1367 +19:00:41.575 [XNIO-1 task-2] HpC4BZaeSKuisdcie3eiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c79f7bc +19:00:41.575 [XNIO-1 task-2] HpC4BZaeSKuisdcie3eiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.575 [XNIO-1 task-2] HpC4BZaeSKuisdcie3eiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:41.575 [XNIO-1 task-2] HpC4BZaeSKuisdcie3eiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c79f7bc +19:00:41.580 [XNIO-1 task-2] vTWkm8rsQ9idwpHvaNwdkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/321a9590, base path is set to: null +19:00:41.581 [XNIO-1 task-2] vTWkm8rsQ9idwpHvaNwdkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:41.581 [XNIO-1 task-2] vTWkm8rsQ9idwpHvaNwdkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:41.581 [XNIO-1 task-2] vTWkm8rsQ9idwpHvaNwdkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/321a9590, base path is set to: null +19:00:41.581 [XNIO-1 task-2] vTWkm8rsQ9idwpHvaNwdkA DEBUG com.networknt.schema.TypeValidator debug - validate( "321a9590", "321a9590", serviceId) +19:00:41.632 [XNIO-1 task-2] tVfHxQ0PSNmj3m6G1lIlYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.632 [XNIO-1 task-2] tVfHxQ0PSNmj3m6G1lIlYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.633 [XNIO-1 task-2] tVfHxQ0PSNmj3m6G1lIlYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.680 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.680 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.681 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.682 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.683 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:41.683 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG com.networknt.schema.TypeValidator debug - validate( "99d2ef48-d43b-415f-952f-0f1b7a96bd3d", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:41.740 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce4e3c0", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:41.740 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:41.740 [XNIO-1 task-2] kWiOnz6nTKqUtJJD6KdEDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.798 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:41.798 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:41.799 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:41.799 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.799 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.800 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:41.800 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:41.800 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b1a937a9 +19:00:41.800 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "27302d73-91d5-4a23-b51a-48799c0a", {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:41.801 [XNIO-1 task-2] jcwtRp52RLiEgkncsPJ_Vw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.801 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c7b00185-619a-4bbc-b224-5895ab011c1f +19:00:41.842 [XNIO-1 task-2] _6ZivR7LSdSlqcl-9K8cDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c79f7bc, base path is set to: null +19:00:41.843 [XNIO-1 task-2] _6ZivR7LSdSlqcl-9K8cDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:41.843 [XNIO-1 task-2] _6ZivR7LSdSlqcl-9K8cDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:41.843 [XNIO-1 task-2] _6ZivR7LSdSlqcl-9K8cDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8c79f7bc, base path is set to: null +19:00:41.844 [XNIO-1 task-2] _6ZivR7LSdSlqcl-9K8cDw DEBUG com.networknt.schema.TypeValidator debug - validate( "8c79f7bc", "8c79f7bc", serviceId) +19:00:41.851 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.851 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.852 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.852 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.852 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:41.852 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG com.networknt.schema.TypeValidator debug - validate( "74a0e15b-16e2-4534-8706-3c40f246c572", {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:41.852 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG com.networknt.schema.TypeValidator debug - validate( "8c79f7bc", {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:41.853 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:41.853 [XNIO-1 task-2] rrlaWHUlQb2DS2AH4uDYWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8c79f7bc","serviceName":"27302d73-91d5-4a23-b51a-48799c0a","serviceDesc":"74a0e15b-16e2-4534-8706-3c40f246c572","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.866 [XNIO-1 task-2] v3o7DykHROiDFe-F93HrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.866 [XNIO-1 task-2] v3o7DykHROiDFe-F93HrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.867 [XNIO-1 task-2] v3o7DykHROiDFe-F93HrCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.890 [XNIO-1 task-2] Jfn-KyRGRvySrGq0Bw67WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.890 [XNIO-1 task-2] Jfn-KyRGRvySrGq0Bw67WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.891 [XNIO-1 task-2] Jfn-KyRGRvySrGq0Bw67WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.923 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b1a937a9 +19:00:41.925 [XNIO-1 task-2] VRnfncZ4TpCCTBS3cnubgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c79f7bc +19:00:41.925 [XNIO-1 task-2] VRnfncZ4TpCCTBS3cnubgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.925 [XNIO-1 task-2] VRnfncZ4TpCCTBS3cnubgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:41.925 [XNIO-1 task-2] VRnfncZ4TpCCTBS3cnubgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8c79f7bc +19:00:41.945 [XNIO-1 task-2] GPGQ3o9vT8ODy1G_O7rjpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5990afa, base path is set to: null +19:00:41.945 [XNIO-1 task-2] GPGQ3o9vT8ODy1G_O7rjpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:41.945 [XNIO-1 task-2] GPGQ3o9vT8ODy1G_O7rjpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:41.945 [XNIO-1 task-2] GPGQ3o9vT8ODy1G_O7rjpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5990afa, base path is set to: null +19:00:41.946 [XNIO-1 task-2] GPGQ3o9vT8ODy1G_O7rjpA DEBUG com.networknt.schema.TypeValidator debug - validate( "c5990afa", "c5990afa", serviceId) +19:00:41.953 [XNIO-1 task-2] evOjC909Qqq_byjsdejQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.953 [XNIO-1 task-2] evOjC909Qqq_byjsdejQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.954 [XNIO-1 task-2] evOjC909Qqq_byjsdejQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.958 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f8bdb500 +19:00:41.959 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b1a937a9 +19:00:41.966 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:52d4bb47-f80f-4b90-a38a-dcba7aec08de +19:00:41.967 [XNIO-1 task-1] _-ozstGUTzmc0-UOPjAwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5990afa +19:00:41.968 [XNIO-1 task-1] _-ozstGUTzmc0-UOPjAwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.968 [XNIO-1 task-1] _-ozstGUTzmc0-UOPjAwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:41.968 [XNIO-1 task-1] _-ozstGUTzmc0-UOPjAwbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5990afa +19:00:41.968 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c5990afa +19:00:41.969 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c5990afa +19:00:41.992 [XNIO-1 task-1] Ij2MHzocQoyYFqWj8P-s7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88d06e6d, base path is set to: null +19:00:41.993 [XNIO-1 task-1] Ij2MHzocQoyYFqWj8P-s7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:41.993 [XNIO-1 task-1] Ij2MHzocQoyYFqWj8P-s7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:41.993 [XNIO-1 task-1] Ij2MHzocQoyYFqWj8P-s7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88d06e6d, base path is set to: null +19:00:41.993 [XNIO-1 task-1] Ij2MHzocQoyYFqWj8P-s7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "88d06e6d", "88d06e6d", serviceId) +19:00:41.998 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.998 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.998 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:41.999 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:41.999 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:41.999 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ea10ade7-fd6e-41a0-8352-a5e022686816", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:41.999 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1fa30ae4", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:41.999 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:41.999 [XNIO-1 task-1] 22Pq29pZSmuuwii8Bnz5WQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.017 [XNIO-1 task-1] HoyRAttUSO-aCDjG4OBx2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88d06e6d +19:00:42.018 [XNIO-1 task-1] HoyRAttUSO-aCDjG4OBx2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.018 [XNIO-1 task-1] HoyRAttUSO-aCDjG4OBx2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.018 [XNIO-1 task-1] HoyRAttUSO-aCDjG4OBx2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88d06e6d +19:00:42.023 [XNIO-1 task-1] mIEoueUSTXODn3Tns0Mg3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.024 [XNIO-1 task-1] mIEoueUSTXODn3Tns0Mg3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.024 [XNIO-1 task-1] mIEoueUSTXODn3Tns0Mg3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.038 [XNIO-1 task-1] CO3XotlaRyKAWGgGKOiB1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.039 [XNIO-1 task-1] CO3XotlaRyKAWGgGKOiB1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.039 [XNIO-1 task-1] CO3XotlaRyKAWGgGKOiB1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.039 [XNIO-1 task-1] CO3XotlaRyKAWGgGKOiB1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.063 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:211a94d9-0e53-4799-925a-31b735e8abb6 +19:00:42.064 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:52d4bb47-f80f-4b90-a38a-dcba7aec08de +19:00:42.068 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b1a937a9 +19:00:42.071 [XNIO-1 task-1] U1WBrxqaSICr8uEZFEx9jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:42.071 [XNIO-1 task-1] U1WBrxqaSICr8uEZFEx9jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.071 [XNIO-1 task-1] U1WBrxqaSICr8uEZFEx9jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.071 [XNIO-1 task-1] U1WBrxqaSICr8uEZFEx9jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:42.076 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.076 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.076 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.077 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.077 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.077 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.077 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.077 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a33780d5-f724-4762-b011-dd755113", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:42.077 [XNIO-1 task-1] VEYDprSJTlKqPpXGS8HmmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.088 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:b1a937a9 +19:00:42.094 [XNIO-1 task-1] Yo0-eyDqR7a3FgsssyQqmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88d06e6d +19:00:42.094 [XNIO-1 task-1] Yo0-eyDqR7a3FgsssyQqmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.094 [XNIO-1 task-1] Yo0-eyDqR7a3FgsssyQqmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.098 [XNIO-1 task-1] Yo0-eyDqR7a3FgsssyQqmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/88d06e6d, base path is set to: null +19:00:42.098 [XNIO-1 task-1] Yo0-eyDqR7a3FgsssyQqmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88d06e6d", "88d06e6d", serviceId) +19:00:42.103 [XNIO-1 task-1] INPfhFXrTuqdLATxjIdvmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.103 [XNIO-1 task-1] INPfhFXrTuqdLATxjIdvmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.104 [XNIO-1 task-1] INPfhFXrTuqdLATxjIdvmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.107 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2736cd94-3f12-4487-9735-3f6881568106 +19:00:42.188 [XNIO-1 task-1] wgSjDbWWQCWn4YnXqrE-NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.188 [XNIO-1 task-1] wgSjDbWWQCWn4YnXqrE-NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.189 [XNIO-1 task-1] wgSjDbWWQCWn4YnXqrE-NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.192 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6b1b6e4e +19:00:42.213 [XNIO-1 task-1] lSUqPMOTTFall9ClgiT4yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a033045, base path is set to: null +19:00:42.214 [XNIO-1 task-1] lSUqPMOTTFall9ClgiT4yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.214 [XNIO-1 task-1] lSUqPMOTTFall9ClgiT4yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.214 [XNIO-1 task-1] lSUqPMOTTFall9ClgiT4yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a033045, base path is set to: null +19:00:42.215 [XNIO-1 task-1] lSUqPMOTTFall9ClgiT4yA DEBUG com.networknt.schema.TypeValidator debug - validate( "7a033045", "7a033045", serviceId) +19:00:42.218 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.218 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.219 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.219 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.220 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.220 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae7d24b8-440a-458d-96b0-33299a0b4302", {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:42.220 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG com.networknt.schema.TypeValidator debug - validate( "88d06e6d", {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:42.220 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.220 [XNIO-1 task-1] ZuPUBHWeQ_uKnND6m5pMsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.234 [XNIO-1 task-1] BdhZmKplQYe4wOtEgreNdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:42.234 [XNIO-1 task-1] BdhZmKplQYe4wOtEgreNdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.234 [XNIO-1 task-1] BdhZmKplQYe4wOtEgreNdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.235 [XNIO-1 task-1] BdhZmKplQYe4wOtEgreNdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:42.239 [XNIO-1 task-1] tFIy0n6IR6-mk6pCK8koaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.239 [XNIO-1 task-1] tFIy0n6IR6-mk6pCK8koaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.240 [XNIO-1 task-1] tFIy0n6IR6-mk6pCK8koaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.240 [XNIO-1 task-1] tFIy0n6IR6-mk6pCK8koaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.264 [XNIO-1 task-1] GNTqVD3pTA6RUxFLTrljKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fc95d40, base path is set to: null +19:00:42.264 [XNIO-1 task-1] GNTqVD3pTA6RUxFLTrljKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.264 [XNIO-1 task-1] GNTqVD3pTA6RUxFLTrljKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.265 [XNIO-1 task-1] GNTqVD3pTA6RUxFLTrljKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fc95d40, base path is set to: null +19:00:42.265 [XNIO-1 task-1] GNTqVD3pTA6RUxFLTrljKw DEBUG com.networknt.schema.TypeValidator debug - validate( "8fc95d40", "8fc95d40", serviceId) +19:00:42.271 [XNIO-1 task-1] BTE-mEk9R4KtSO6okvmw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db782c52 +19:00:42.272 [XNIO-1 task-1] BTE-mEk9R4KtSO6okvmw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.272 [XNIO-1 task-1] BTE-mEk9R4KtSO6okvmw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.272 [XNIO-1 task-1] BTE-mEk9R4KtSO6okvmw6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db782c52 +19:00:42.292 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.292 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.293 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.293 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.293 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.294 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.294 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.294 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG com.networknt.schema.TypeValidator debug - validate( "758a6595-5b5c-4fdd-ba85-0b839982", {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:42.294 [XNIO-1 task-1] 33JSrn-7ToO7JO62UCQTDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1fa30ae4","serviceName":"758a6595-5b5c-4fdd-ba85-0b839982","serviceDesc":"ea10ade7-fd6e-41a0-8352-a5e022686816","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.309 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.309 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.310 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.310 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.310 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.311 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.311 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.311 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d9890f05-6db0-4fd2-ad8b-1c0dd372", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:42.311 [XNIO-1 task-1] JEC_e_BYQpiqS2LiQwUEWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.323 [XNIO-1 task-1] tkcvGZ37QWWhWiwuFcIFig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:42.324 [XNIO-1 task-1] tkcvGZ37QWWhWiwuFcIFig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.324 [XNIO-1 task-1] tkcvGZ37QWWhWiwuFcIFig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.324 [XNIO-1 task-1] tkcvGZ37QWWhWiwuFcIFig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:42.324 [XNIO-1 task-1] tkcvGZ37QWWhWiwuFcIFig DEBUG com.networknt.schema.TypeValidator debug - validate( "053d3b38", "053d3b38", serviceId) +19:00:42.332 [XNIO-1 task-1] cIq-vIvGS1egyigVk_CeXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.332 [XNIO-1 task-1] cIq-vIvGS1egyigVk_CeXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.332 [XNIO-1 task-1] cIq-vIvGS1egyigVk_CeXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.332 [XNIO-1 task-1] cIq-vIvGS1egyigVk_CeXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.344 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.344 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.345 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.345 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.345 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.345 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG com.networknt.schema.TypeValidator debug - validate( "c287df1f-48d7-4d8c-85d5-a3a1e2ec839e", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:42.345 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG com.networknt.schema.TypeValidator debug - validate( "053d3b38", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:42.346 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.346 [XNIO-1 task-1] 5oNGJPVsSOORrJEomw-liA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.367 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.367 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.368 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.369 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.369 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.369 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG com.networknt.schema.TypeValidator debug - validate( "c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:42.369 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8bdb500", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:42.369 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.370 [XNIO-1 task-1] A17BbDR0QE2JzqeltMIurg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.371 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f8bdb500 +19:00:42.380 [XNIO-1 task-1] sxsoS67XTcKomlH3bv7zXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.380 [XNIO-1 task-1] sxsoS67XTcKomlH3bv7zXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.380 [XNIO-1 task-1] sxsoS67XTcKomlH3bv7zXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.381 [XNIO-1 task-1] sxsoS67XTcKomlH3bv7zXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.394 [XNIO-1 task-1] akwVLPeGToyUk-GnorCEbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.395 [XNIO-1 task-1] akwVLPeGToyUk-GnorCEbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.395 [XNIO-1 task-1] akwVLPeGToyUk-GnorCEbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.412 [XNIO-1 task-1] uCWYGMWzRg-Rag5PQ9vo_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/740ed4b8, base path is set to: null +19:00:42.413 [XNIO-1 task-1] uCWYGMWzRg-Rag5PQ9vo_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.413 [XNIO-1 task-1] uCWYGMWzRg-Rag5PQ9vo_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +Jun 28, 2024 7:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +19:00:42.430 [XNIO-1 task-1] dMuQS_FaRgyHVRQL-6TNAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:42.430 [XNIO-1 task-1] dMuQS_FaRgyHVRQL-6TNAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.430 [XNIO-1 task-1] dMuQS_FaRgyHVRQL-6TNAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.430 [XNIO-1 task-1] dMuQS_FaRgyHVRQL-6TNAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.431 [XNIO-1 task-1] dMuQS_FaRgyHVRQL-6TNAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:42.431 [XNIO-1 task-1] dMuQS_FaRgyHVRQL-6TNAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/053d3b38 +19:00:42.431 [XNIO-1 task-1] dMuQS_FaRgyHVRQL-6TNAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "053d3b38", "053d3b38", serviceId) +19:00:42.431 [hz._hzInstance_1_dev.partition-operation.thread-3] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:42.455 [XNIO-1 task-1] LtwSNGaGRJWwq9YUnuq4IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.455 [XNIO-1 task-1] LtwSNGaGRJWwq9YUnuq4IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.455 [XNIO-1 task-1] LtwSNGaGRJWwq9YUnuq4IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.465 [XNIO-1 task-1] z8FoNklgQfKC9eNxmA5aHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.466 [XNIO-1 task-1] z8FoNklgQfKC9eNxmA5aHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.466 [XNIO-1 task-1] z8FoNklgQfKC9eNxmA5aHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.466 [XNIO-1 task-1] z8FoNklgQfKC9eNxmA5aHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.494 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.494 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.495 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.496 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.496 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.496 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.496 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.496 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f484ca44-77c6-42bd-95bb-d6153fe6", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:42.496 [XNIO-1 task-1] t3H_wALoSi670Tg12jA3TQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.507 [XNIO-1 task-1] L5sdteTfRO--vxVHt2oxIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/faa7db1c, base path is set to: null +19:00:42.507 [XNIO-1 task-1] L5sdteTfRO--vxVHt2oxIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.507 [XNIO-1 task-1] L5sdteTfRO--vxVHt2oxIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.507 [XNIO-1 task-1] L5sdteTfRO--vxVHt2oxIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/faa7db1c, base path is set to: null +19:00:42.509 [XNIO-1 task-1] L5sdteTfRO--vxVHt2oxIA DEBUG com.networknt.schema.TypeValidator debug - validate( "faa7db1c", "faa7db1c", serviceId) +19:00:42.534 [XNIO-1 task-1] 8OD6HN4hTiy_a0iU5ErCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.534 [XNIO-1 task-1] 8OD6HN4hTiy_a0iU5ErCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.535 [XNIO-1 task-1] 8OD6HN4hTiy_a0iU5ErCSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.582 [XNIO-1 task-1] AfOIscIOS4qgft1H0-y5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.582 [XNIO-1 task-1] AfOIscIOS4qgft1H0-y5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.583 [XNIO-1 task-1] AfOIscIOS4qgft1H0-y5nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.614 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.615 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.615 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.616 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.616 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.616 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG com.networknt.schema.TypeValidator debug - validate( "c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:42.616 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG com.networknt.schema.TypeValidator debug - validate( "f8bdb500", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:42.616 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.616 [XNIO-1 task-1] BBwFX75uSOaqQaHTnLdq5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.617 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f8bdb500 +19:00:42.627 [XNIO-1 task-1] jtdK_K6OSPa4RiPonHl4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c24350f4 +19:00:42.627 [XNIO-1 task-1] jtdK_K6OSPa4RiPonHl4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.627 [XNIO-1 task-1] jtdK_K6OSPa4RiPonHl4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.627 [XNIO-1 task-1] jtdK_K6OSPa4RiPonHl4gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c24350f4 +19:00:42.632 [XNIO-1 task-1] r7gAKrlLQgeRcfBzUBqbmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c24350f4, base path is set to: null +19:00:42.632 [XNIO-1 task-1] r7gAKrlLQgeRcfBzUBqbmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.632 [XNIO-1 task-1] r7gAKrlLQgeRcfBzUBqbmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.632 [XNIO-1 task-1] r7gAKrlLQgeRcfBzUBqbmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c24350f4, base path is set to: null +19:00:42.632 [XNIO-1 task-1] r7gAKrlLQgeRcfBzUBqbmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c24350f4", "c24350f4", serviceId) +19:00:42.649 [XNIO-1 task-1] hIL7n_P_SNyolsglsgJjgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.649 [XNIO-1 task-1] hIL7n_P_SNyolsglsgJjgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.650 [XNIO-1 task-1] hIL7n_P_SNyolsglsgJjgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.668 [XNIO-1 task-1] pXvyroTwRB2OsFzmcIRM3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.668 [XNIO-1 task-1] pXvyroTwRB2OsFzmcIRM3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.669 [XNIO-1 task-1] pXvyroTwRB2OsFzmcIRM3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.700 [XNIO-1 task-1] H1okXa88SV-PKdtPUu4x_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.700 [XNIO-1 task-1] H1okXa88SV-PKdtPUu4x_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.700 [XNIO-1 task-1] H1okXa88SV-PKdtPUu4x_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.720 [XNIO-1 task-1] ZqxLWGwsSgqK1rI1jf9FdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92f6a50a +19:00:42.720 [XNIO-1 task-1] ZqxLWGwsSgqK1rI1jf9FdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.720 [XNIO-1 task-1] ZqxLWGwsSgqK1rI1jf9FdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.720 [XNIO-1 task-1] ZqxLWGwsSgqK1rI1jf9FdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/92f6a50a +19:00:42.750 [XNIO-1 task-1] i0tWL6VvQZ2GzrCZ-YuUUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.750 [XNIO-1 task-1] i0tWL6VvQZ2GzrCZ-YuUUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.750 [XNIO-1 task-1] i0tWL6VvQZ2GzrCZ-YuUUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.751 [XNIO-1 task-1] i0tWL6VvQZ2GzrCZ-YuUUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.767 [XNIO-1 task-1] OgdGMSkfTLWYNWt6Mn0xIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1fa30ae4, base path is set to: null +19:00:42.768 [XNIO-1 task-1] OgdGMSkfTLWYNWt6Mn0xIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.768 [XNIO-1 task-1] OgdGMSkfTLWYNWt6Mn0xIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.768 [XNIO-1 task-1] OgdGMSkfTLWYNWt6Mn0xIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1fa30ae4, base path is set to: null +19:00:42.768 [XNIO-1 task-1] OgdGMSkfTLWYNWt6Mn0xIw DEBUG com.networknt.schema.TypeValidator debug - validate( "1fa30ae4", "1fa30ae4", serviceId) +19:00:42.786 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bc972e85-bd97-48de-ab23-e2205e46abef +19:00:42.815 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.815 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.817 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.817 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.817 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.817 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "3516e757-4edf-4476-8768-040a9eee0085", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:42.818 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "92f6a50a", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:42.818 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.818 [XNIO-1 task-1] XiCJOBJXToKPLbG2niCL2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.827 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:42.864 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.864 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.867 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.867 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.869 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.869 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.869 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.869 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG com.networknt.schema.TypeValidator debug - validate( "615ebca6-d31d-4b82-bda0-24938fd0", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:42.869 [XNIO-1 task-1] W37Ve7mHQz6JFzxTruHgXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.885 [XNIO-1 task-1] XIGvHOp8SYW9pqt5YJCRHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.885 [XNIO-1 task-1] XIGvHOp8SYW9pqt5YJCRHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.885 [XNIO-1 task-1] XIGvHOp8SYW9pqt5YJCRHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.898 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.898 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.899 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.899 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.900 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.900 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.900 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.900 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d951314-cd2d-43e3-b5cc-80e55746", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:42.900 [XNIO-1 task-1] gyJnKddGR56fzlbBZzLLNA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.911 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.911 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.912 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:42.912 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.912 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.912 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.912 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:42.912 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "615ebca6-d31d-4b82-bda0-24938fd0", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:42.913 [XNIO-1 task-1] 4pzJAw7iSYGYbwIoB8Fo9Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.944 [XNIO-1 task-1] X3FEqUniTqyIjs1ZTPrsaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a7d5b86, base path is set to: null +19:00:42.944 [XNIO-1 task-1] X3FEqUniTqyIjs1ZTPrsaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:42.944 [XNIO-1 task-1] X3FEqUniTqyIjs1ZTPrsaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:42.944 [XNIO-1 task-1] X3FEqUniTqyIjs1ZTPrsaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a7d5b86, base path is set to: null +19:00:42.945 [XNIO-1 task-1] X3FEqUniTqyIjs1ZTPrsaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0a7d5b86", "0a7d5b86", serviceId) +19:00:42.956 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.956 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.957 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.958 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.958 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.958 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a0b1796-6476-40d2-bc18-d026e8390291", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:42.958 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG com.networknt.schema.TypeValidator debug - validate( "a0ff82b7", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:42.958 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.958 [XNIO-1 task-1] gwY0ErqYS02cTX1BFSYwBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.970 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.970 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.971 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.971 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.971 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:42.971 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG com.networknt.schema.TypeValidator debug - validate( "7de5b0d8-1cd3-4186-9feb-d6ae0a41505a", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:42.971 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a7d5b86", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:42.972 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:42.972 [XNIO-1 task-1] X2MVNqUrQ0y238km5n9CWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:42.990 [XNIO-1 task-1] NLi8e3UsTieVba2pXO9GuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b1b6e4e +19:00:42.991 [XNIO-1 task-1] NLi8e3UsTieVba2pXO9GuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:42.991 [XNIO-1 task-1] NLi8e3UsTieVba2pXO9GuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:42.991 [XNIO-1 task-1] NLi8e3UsTieVba2pXO9GuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b1b6e4e +19:00:42.992 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6b1b6e4e +19:00:43.004 [XNIO-1 task-1] 4ZpYCYFqRbeFL39hWehkdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50bbf43e, base path is set to: null +19:00:43.004 [XNIO-1 task-1] 4ZpYCYFqRbeFL39hWehkdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.004 [XNIO-1 task-1] 4ZpYCYFqRbeFL39hWehkdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:43.004 [XNIO-1 task-1] 4ZpYCYFqRbeFL39hWehkdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50bbf43e, base path is set to: null +19:00:43.004 [XNIO-1 task-1] 4ZpYCYFqRbeFL39hWehkdA DEBUG com.networknt.schema.TypeValidator debug - validate( "50bbf43e", "50bbf43e", serviceId) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +19:00:43.014 [XNIO-1 task-1] 7iXKpuvFTsODXof4bgr3Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e057d1b +19:00:43.014 [XNIO-1 task-1] 7iXKpuvFTsODXof4bgr3Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +19:00:43.014 [XNIO-1 task-1] 7iXKpuvFTsODXof4bgr3Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6e057d1b, base path is set to: null +19:00:43.015 [XNIO-1 task-1] 7iXKpuvFTsODXof4bgr3Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "6e057d1b", "6e057d1b", serviceId) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + ... 14 more + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +19:00:43.033 [XNIO-1 task-1] LmX-IoadS2KSi5JNEuY1Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.033 [XNIO-1 task-1] LmX-IoadS2KSi5JNEuY1Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.034 [XNIO-1 task-1] LmX-IoadS2KSi5JNEuY1Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.034 [XNIO-1 task-1] LmX-IoadS2KSi5JNEuY1Ww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.057 [XNIO-1 task-1] Ki3k412GRu-7llsQqK_-cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.057 [XNIO-1 task-1] Ki3k412GRu-7llsQqK_-cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.057 [XNIO-1 task-1] Ki3k412GRu-7llsQqK_-cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.097 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.097 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.099 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.099 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.099 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.099 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG com.networknt.schema.TypeValidator debug - validate( "5d613a39-a837-4217-b862-48247bd95acb", {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:43.100 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG com.networknt.schema.TypeValidator debug - validate( "50bbf43e", {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:43.100 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.100 [XNIO-1 task-1] jiU3VoWhTceQt-CJEh7S3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"50bbf43e","serviceName":"73584134-6394-4499-82dd-5eb5f56e","serviceDesc":"5d613a39-a837-4217-b862-48247bd95acb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.109 [XNIO-1 task-1] kTUofmJLQhCDB17jqx0-8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.109 [XNIO-1 task-1] kTUofmJLQhCDB17jqx0-8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.109 [XNIO-1 task-1] kTUofmJLQhCDB17jqx0-8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.110 [XNIO-1 task-1] kTUofmJLQhCDB17jqx0-8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.129 [XNIO-1 task-1] Z0B0mL8FREC8LhpUXQqUJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/336f367c +19:00:43.129 [XNIO-1 task-1] Z0B0mL8FREC8LhpUXQqUJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.129 [XNIO-1 task-1] Z0B0mL8FREC8LhpUXQqUJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:43.129 [XNIO-1 task-1] Z0B0mL8FREC8LhpUXQqUJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/336f367c +19:00:43.153 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.153 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.154 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.154 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.154 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.154 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.155 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.155 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG com.networknt.schema.TypeValidator debug - validate( "3f7d436d-c4f9-4153-9218-a751f7bd", {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:43.155 [XNIO-1 task-1] 4QdqZGHaQz-NmA0-eAvvDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88d06e6d","serviceName":"3f7d436d-c4f9-4153-9218-a751f7bd","serviceDesc":"ae7d24b8-440a-458d-96b0-33299a0b4302","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.204 [XNIO-1 task-1] 8yp-93iqQACxbCS_omYSOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.204 [XNIO-1 task-1] 8yp-93iqQACxbCS_omYSOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.205 [XNIO-1 task-1] 8yp-93iqQACxbCS_omYSOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.218 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5a2f6dc5-403c-4ba2-9812-3e9a5efa382c +19:00:43.220 [XNIO-1 task-1] n7MKhYU3TsaJmwIGD2rCbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b5d2a1b +19:00:43.220 [XNIO-1 task-1] n7MKhYU3TsaJmwIGD2rCbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +19:00:43.220 [XNIO-1 task-1] n7MKhYU3TsaJmwIGD2rCbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:43.220 [XNIO-1 task-1] n7MKhYU3TsaJmwIGD2rCbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b5d2a1b, base path is set to: null +19:00:43.220 [XNIO-1 task-1] n7MKhYU3TsaJmwIGD2rCbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8b5d2a1b +19:00:43.221 [XNIO-1 task-1] n7MKhYU3TsaJmwIGD2rCbA DEBUG com.networknt.schema.TypeValidator debug - validate( "8b5d2a1b", "8b5d2a1b", serviceId) +19:00:43.221 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + ... 14 more + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:43.233 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ba48c47f +19:00:43.238 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ba48c47f +19:00:43.244 [XNIO-1 task-1] daJewxrwR8GZKkgVQmW6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/50bbf43e +19:00:43.244 [XNIO-1 task-1] daJewxrwR8GZKkgVQmW6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.244 [XNIO-1 task-1] daJewxrwR8GZKkgVQmW6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:43.244 [XNIO-1 task-1] daJewxrwR8GZKkgVQmW6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/50bbf43e +19:00:43.251 [XNIO-1 task-1] L44oPWuHT3CkJmkMxErdRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50bbf43e, base path is set to: null +19:00:43.251 [XNIO-1 task-1] L44oPWuHT3CkJmkMxErdRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.252 [XNIO-1 task-1] L44oPWuHT3CkJmkMxErdRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:43.252 [XNIO-1 task-1] L44oPWuHT3CkJmkMxErdRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/50bbf43e, base path is set to: null +19:00:43.252 [XNIO-1 task-1] L44oPWuHT3CkJmkMxErdRw DEBUG com.networknt.schema.TypeValidator debug - validate( "50bbf43e", "50bbf43e", serviceId) +19:00:43.266 [XNIO-1 task-1] M0niC25ETzi_RQXmeYQ5CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.266 [XNIO-1 task-1] M0niC25ETzi_RQXmeYQ5CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.266 [XNIO-1 task-1] M0niC25ETzi_RQXmeYQ5CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.268 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0f44c3b +19:00:43.307 [XNIO-1 task-1] Hi9gteLdTV-4lCTPghlf-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.310 [XNIO-1 task-1] Hi9gteLdTV-4lCTPghlf-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.310 [XNIO-1 task-1] Hi9gteLdTV-4lCTPghlf-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.325 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.325 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.326 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.327 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.327 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.327 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.327 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.327 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG com.networknt.schema.TypeValidator debug - validate( "0b26a4b3-61cd-4185-bf76-b1e84cc2", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:43.327 [XNIO-1 task-1] -gADSiHJTVGI3db1kEjTig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.353 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.353 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.354 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.355 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.355 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.355 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.355 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.355 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG com.networknt.schema.TypeValidator debug - validate( "9122dfb7-4c06-4fdd-8a51-aa81a978", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:43.355 [XNIO-1 task-1] ruxGymjISLeB3SIRp18whg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.356 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0f44c3b +19:00:43.365 [XNIO-1 task-1] Rrh6jMYhS9-Kh2W0pCvYvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8bdb500, base path is set to: null +19:00:43.366 [XNIO-1 task-1] Rrh6jMYhS9-Kh2W0pCvYvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.366 [XNIO-1 task-1] Rrh6jMYhS9-Kh2W0pCvYvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:43.366 [XNIO-1 task-1] Rrh6jMYhS9-Kh2W0pCvYvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8bdb500, base path is set to: null +19:00:43.366 [XNIO-1 task-1] Rrh6jMYhS9-Kh2W0pCvYvg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8bdb500", "f8bdb500", serviceId) +19:00:43.371 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.371 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.371 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.372 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.372 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.372 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG com.networknt.schema.TypeValidator debug - validate( "c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:43.372 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8bdb500", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:43.372 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.372 [XNIO-1 task-1] 2OUYdBx2RoComiwZ1pXKzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.373 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f8bdb500 +19:00:43.380 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ba48c47f +19:00:43.382 [XNIO-1 task-1] CBChm8tcQby-ilFrmuwU7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.382 [XNIO-1 task-1] CBChm8tcQby-ilFrmuwU7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.382 [XNIO-1 task-1] CBChm8tcQby-ilFrmuwU7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.384 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:66ab89df +19:00:43.409 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.411 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.411 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.412 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.412 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.412 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.412 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.412 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG com.networknt.schema.TypeValidator debug - validate( "393955ac-7c68-47aa-9a6b-17120854", {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:43.412 [XNIO-1 task-1] BI4_55WnRTmt7m3v2Gp9KA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.413 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:66ab89df +19:00:43.423 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.426 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.426 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.427 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.427 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.427 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.427 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.427 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG com.networknt.schema.TypeValidator debug - validate( "a33780d5-f724-4762-b011-dd755113", {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:43.427 [XNIO-1 task-1] lPqSqUCFQnK9XoXumiCMtg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8fc95d40","serviceName":"a33780d5-f724-4762-b011-dd755113","serviceDesc":"cd4dd530-01c1-42de-b66c-95b9756c1f9a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.472 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.472 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.472 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.473 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.473 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.473 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.473 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.473 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "d9890f05-6db0-4fd2-ad8b-1c0dd372", {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:43.473 [XNIO-1 task-1] 5rsdNmM0TuOkuJVhUzjZ-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a033045","serviceName":"d9890f05-6db0-4fd2-ad8b-1c0dd372","serviceDesc":"45ec5ac1-22b6-43c2-9dbc-1d02a369198a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.496 [XNIO-1 task-1] DGq_DAQCT2-2eC0NPad-zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.497 [XNIO-1 task-1] DGq_DAQCT2-2eC0NPad-zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.497 [XNIO-1 task-1] DGq_DAQCT2-2eC0NPad-zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.505 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ba48c47f +19:00:43.512 [XNIO-1 task-1] JvFOtu_xQXqNTMRM3TiECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.513 [XNIO-1 task-1] JvFOtu_xQXqNTMRM3TiECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.513 [XNIO-1 task-1] JvFOtu_xQXqNTMRM3TiECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.532 [XNIO-1 task-1] fTMJD-45TPOSzSQqpOyKNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:43.532 [XNIO-1 task-1] fTMJD-45TPOSzSQqpOyKNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.532 [XNIO-1 task-1] fTMJD-45TPOSzSQqpOyKNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:43.533 [XNIO-1 task-1] fTMJD-45TPOSzSQqpOyKNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7a033045 +19:00:43.559 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.559 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.562 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.562 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.563 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.563 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.563 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:43.563 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG com.networknt.schema.TypeValidator debug - validate( "de6abad8-4231-4998-8fa3-b9ce5c1c", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:43.563 [XNIO-1 task-1] uXQXGfk6TX68bWC1kaMXaw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.580 [XNIO-1 task-1] LXtMLgoRRtm4OFgWTyg7KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.580 [XNIO-1 task-1] LXtMLgoRRtm4OFgWTyg7KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.581 [XNIO-1 task-1] LXtMLgoRRtm4OFgWTyg7KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.594 [XNIO-1 task-1] MnN1b_R2Rku71-F5q09cCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06f55896, base path is set to: null +19:00:43.594 [XNIO-1 task-1] MnN1b_R2Rku71-F5q09cCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.594 [XNIO-1 task-1] MnN1b_R2Rku71-F5q09cCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:43.595 [XNIO-1 task-1] MnN1b_R2Rku71-F5q09cCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06f55896, base path is set to: null +19:00:43.595 [XNIO-1 task-1] MnN1b_R2Rku71-F5q09cCg DEBUG com.networknt.schema.TypeValidator debug - validate( "06f55896", "06f55896", serviceId) +19:00:43.602 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.603 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.603 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.603 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.604 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.604 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG com.networknt.schema.TypeValidator debug - validate( "3516e757-4edf-4476-8768-040a9eee0085", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:43.605 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df6b2462-c347-4c1a-bbe0-444acc13bbca +19:00:43.605 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG com.networknt.schema.TypeValidator debug - validate( "92f6a50a", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:43.606 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.606 [XNIO-1 task-1] lcq6s7U8T2in3xd7bG3AHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"92f6a50a","serviceName":"615ebca6-d31d-4b82-bda0-24938fd0","serviceDesc":"3516e757-4edf-4476-8768-040a9eee0085","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.618 [XNIO-1 task-1] Z5fmmzSeRGyjwQ6L1rzESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:43.618 [XNIO-1 task-1] Z5fmmzSeRGyjwQ6L1rzESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.618 [XNIO-1 task-1] Z5fmmzSeRGyjwQ6L1rzESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:43.618 [XNIO-1 task-1] Z5fmmzSeRGyjwQ6L1rzESg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:43.624 [XNIO-1 task-1] a_WMpJfHTRWhDgMFlK5k5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ce4e3c0, base path is set to: null +19:00:43.624 [XNIO-1 task-1] a_WMpJfHTRWhDgMFlK5k5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.624 [XNIO-1 task-1] a_WMpJfHTRWhDgMFlK5k5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:43.625 [XNIO-1 task-1] a_WMpJfHTRWhDgMFlK5k5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ce4e3c0, base path is set to: null +19:00:43.625 [XNIO-1 task-1] a_WMpJfHTRWhDgMFlK5k5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0ce4e3c0", "0ce4e3c0", serviceId) +19:00:43.627 [XNIO-1 task-1] 7S2wcjHSRliynquicbOmgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:43.627 [XNIO-1 task-1] 7S2wcjHSRliynquicbOmgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.628 [XNIO-1 task-1] 7S2wcjHSRliynquicbOmgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:43.628 [XNIO-1 task-1] 7S2wcjHSRliynquicbOmgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:43.631 [XNIO-1 task-1] 9AGk27XSQSWs2uwTXQhKgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.632 [XNIO-1 task-1] 9AGk27XSQSWs2uwTXQhKgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.632 [XNIO-1 task-1] 9AGk27XSQSWs2uwTXQhKgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.638 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:df6b2462-c347-4c1a-bbe0-444acc13bbca +19:00:43.645 [XNIO-1 task-1] 85JnGMCaTFWBeSX5FBU_eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.645 [XNIO-1 task-1] 85JnGMCaTFWBeSX5FBU_eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.645 [XNIO-1 task-1] 85JnGMCaTFWBeSX5FBU_eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.646 [XNIO-1 task-1] 85JnGMCaTFWBeSX5FBU_eQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.663 [XNIO-1 task-1] TIpf9hwyS0u_S4FEf6FiGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.663 [XNIO-1 task-1] TIpf9hwyS0u_S4FEf6FiGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.663 [XNIO-1 task-1] TIpf9hwyS0u_S4FEf6FiGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.718 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ea7094e4-ab52-44c2-993a-a526c131af7f +19:00:43.777 [XNIO-1 task-1] X3t7mAxSQCuTDulPM9pIWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.778 [XNIO-1 task-1] X3t7mAxSQCuTDulPM9pIWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.778 [XNIO-1 task-1] X3t7mAxSQCuTDulPM9pIWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.791 [XNIO-1 task-1] 3OuqLnCqSVqEMvJHwHLj1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.791 [XNIO-1 task-1] 3OuqLnCqSVqEMvJHwHLj1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.791 [XNIO-1 task-1] 3OuqLnCqSVqEMvJHwHLj1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.804 [XNIO-1 task-1] KmUizxO2S8yH4d_vgxZDQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.804 [XNIO-1 task-1] KmUizxO2S8yH4d_vgxZDQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.805 [XNIO-1 task-1] KmUizxO2S8yH4d_vgxZDQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:43.825 [XNIO-1 task-1] 1qlXio3DQa2QAkHZS9xI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92f6a50a, base path is set to: null +19:00:43.825 [XNIO-1 task-1] 1qlXio3DQa2QAkHZS9xI1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:43.825 [XNIO-1 task-1] 1qlXio3DQa2QAkHZS9xI1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:43.825 [XNIO-1 task-1] 1qlXio3DQa2QAkHZS9xI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/92f6a50a, base path is set to: null +19:00:43.826 [XNIO-1 task-1] 1qlXio3DQa2QAkHZS9xI1w DEBUG com.networknt.schema.TypeValidator debug - validate( "92f6a50a", "92f6a50a", serviceId) +19:00:43.842 [XNIO-1 task-1] aG-kaF9ZSHawBS0dg7x0Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.842 [XNIO-1 task-1] aG-kaF9ZSHawBS0dg7x0Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.842 [XNIO-1 task-1] aG-kaF9ZSHawBS0dg7x0Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.842 [XNIO-1 task-1] aG-kaF9ZSHawBS0dg7x0Lg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.855 [XNIO-1 task-1] _w2KXjFLTl2n_bGSIow5rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.855 [XNIO-1 task-1] _w2KXjFLTl2n_bGSIow5rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.856 [XNIO-1 task-1] _w2KXjFLTl2n_bGSIow5rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.932 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.932 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.932 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.933 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.933 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.933 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7de5b0d8-1cd3-4186-9feb-d6ae0a41505a", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:43.933 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0a7d5b86", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:43.933 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.933 [XNIO-1 task-1] xnblC4LqQ6KXWDn2Ba7OpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.956 [XNIO-1 task-1] Rsu0QdIqT767dgYqTqExiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.956 [XNIO-1 task-1] Rsu0QdIqT767dgYqTqExiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.956 [XNIO-1 task-1] Rsu0QdIqT767dgYqTqExiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.968 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.968 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.968 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.969 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.969 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:43.969 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG com.networknt.schema.TypeValidator debug - validate( "3e00fa99-39cf-44b2-bb92-6d0cb1000507", {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:43.969 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG com.networknt.schema.TypeValidator debug - validate( "66ab89df", {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:43.969 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:43.969 [XNIO-1 task-1] 6ZPi-oPYRruSCUGv-byoJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"66ab89df","serviceName":"393955ac-7c68-47aa-9a6b-17120854","serviceDesc":"3e00fa99-39cf-44b2-bb92-6d0cb1000507","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:43.970 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:66ab89df +19:00:43.990 [XNIO-1 task-1] FbwupR9lQZiZwgEQb19CqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.990 [XNIO-1 task-1] FbwupR9lQZiZwgEQb19CqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.990 [XNIO-1 task-1] FbwupR9lQZiZwgEQb19CqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:43.991 [XNIO-1 task-1] FbwupR9lQZiZwgEQb19CqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.024 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fcdf4768-926a-4430-ad78-861a7732c09c +19:00:44.032 [XNIO-1 task-1] zzHtKAaYQWSr6QjtSzekUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2689db0e +19:00:44.032 [XNIO-1 task-1] zzHtKAaYQWSr6QjtSzekUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.032 [XNIO-1 task-1] zzHtKAaYQWSr6QjtSzekUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.032 [XNIO-1 task-1] zzHtKAaYQWSr6QjtSzekUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2689db0e +19:00:44.039 [XNIO-1 task-1] Tn5hrSmeTcCZfrKRaAvv3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79878ffa, base path is set to: null +19:00:44.039 [XNIO-1 task-1] Tn5hrSmeTcCZfrKRaAvv3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.039 [XNIO-1 task-1] Tn5hrSmeTcCZfrKRaAvv3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:44.040 [XNIO-1 task-1] Tn5hrSmeTcCZfrKRaAvv3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79878ffa, base path is set to: null +19:00:44.040 [XNIO-1 task-1] Tn5hrSmeTcCZfrKRaAvv3w DEBUG com.networknt.schema.TypeValidator debug - validate( "79878ffa", "79878ffa", serviceId) +19:00:44.058 [XNIO-1 task-1] J-kWB-mHSSiBURwilpc60A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.058 [XNIO-1 task-1] J-kWB-mHSSiBURwilpc60A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.059 [XNIO-1 task-1] J-kWB-mHSSiBURwilpc60A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.059 [XNIO-1 task-1] J-kWB-mHSSiBURwilpc60A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.078 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.078 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.079 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.080 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.080 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.080 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.080 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.080 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3386b882-7420-4082-97fc-6c82fcfa9912 +19:00:44.081 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG com.networknt.schema.TypeValidator debug - validate( "701ff371-fab6-44a2-a246-963f7b59", {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:44.081 [XNIO-1 task-1] -AUGlmHBQDqBUmcOkBlvAg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8bdb500","serviceName":"701ff371-fab6-44a2-a246-963f7b59","serviceDesc":"c593a4eb-c1c6-494e-8ae5-0dd66bbe5caf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.081 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f8bdb500 +19:00:44.095 [XNIO-1 task-1] ZYFJkd4iTG-fHuLHlAb7xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.095 [XNIO-1 task-1] ZYFJkd4iTG-fHuLHlAb7xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.095 [XNIO-1 task-1] ZYFJkd4iTG-fHuLHlAb7xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.096 [XNIO-1 task-1] ZYFJkd4iTG-fHuLHlAb7xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.101 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3386b882-7420-4082-97fc-6c82fcfa9912 +19:00:44.171 [XNIO-1 task-1] yi0Rc0lJSV2NuYJ5624w0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a7d5b86 +19:00:44.171 [XNIO-1 task-1] yi0Rc0lJSV2NuYJ5624w0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.171 [XNIO-1 task-1] yi0Rc0lJSV2NuYJ5624w0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.171 [XNIO-1 task-1] yi0Rc0lJSV2NuYJ5624w0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a7d5b86 +19:00:44.178 [XNIO-1 task-1] EiD4WLucQtqlEM_Ykif3_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.179 [XNIO-1 task-1] EiD4WLucQtqlEM_Ykif3_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.179 [XNIO-1 task-1] EiD4WLucQtqlEM_Ykif3_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.179 [XNIO-1 task-1] EiD4WLucQtqlEM_Ykif3_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.194 [XNIO-1 task-1] R7xtCORRRxWT9Qcd39_n9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2689db0e, base path is set to: null +19:00:44.195 [XNIO-1 task-1] R7xtCORRRxWT9Qcd39_n9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.195 [XNIO-1 task-1] R7xtCORRRxWT9Qcd39_n9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:44.195 [XNIO-1 task-1] R7xtCORRRxWT9Qcd39_n9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2689db0e, base path is set to: null +19:00:44.195 [XNIO-1 task-1] R7xtCORRRxWT9Qcd39_n9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2689db0e", "2689db0e", serviceId) +19:00:44.199 [XNIO-1 task-1] ZS2NjIM7TDeW4U-RYXmWEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.200 [XNIO-1 task-1] ZS2NjIM7TDeW4U-RYXmWEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.200 [XNIO-1 task-1] ZS2NjIM7TDeW4U-RYXmWEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.201 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1612e091 +19:00:44.212 [XNIO-1 task-1] _bkNydg0TjG9fRF0qFVNTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.213 [XNIO-1 task-1] _bkNydg0TjG9fRF0qFVNTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.213 [XNIO-1 task-1] _bkNydg0TjG9fRF0qFVNTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.245 [XNIO-1 task-1] ocrMRM6GQZWEtuzQ7NnD5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a7d5b86, base path is set to: null +19:00:44.246 [XNIO-1 task-1] ocrMRM6GQZWEtuzQ7NnD5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.246 [XNIO-1 task-1] ocrMRM6GQZWEtuzQ7NnD5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:44.246 [XNIO-1 task-1] ocrMRM6GQZWEtuzQ7NnD5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a7d5b86, base path is set to: null +19:00:44.246 [XNIO-1 task-1] ocrMRM6GQZWEtuzQ7NnD5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0a7d5b86", "0a7d5b86", serviceId) +19:00:44.249 [XNIO-1 task-1] kizn6o_nQ3CSZvtKhojCJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.249 [XNIO-1 task-1] kizn6o_nQ3CSZvtKhojCJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.249 [XNIO-1 task-1] kizn6o_nQ3CSZvtKhojCJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.269 [XNIO-1 task-1] swgoxvL2RnW20hB-tFkOcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.269 [XNIO-1 task-1] swgoxvL2RnW20hB-tFkOcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.269 [XNIO-1 task-1] swgoxvL2RnW20hB-tFkOcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.270 [XNIO-1 task-1] swgoxvL2RnW20hB-tFkOcg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.375 [XNIO-1 task-1] qy3oInNoQ1q12i_FujWY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2689db0e +19:00:44.375 [XNIO-1 task-1] qy3oInNoQ1q12i_FujWY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.375 [XNIO-1 task-1] qy3oInNoQ1q12i_FujWY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.375 [XNIO-1 task-1] qy3oInNoQ1q12i_FujWY8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2689db0e +19:00:44.389 [XNIO-1 task-1] dj0HyYLBQ52m47iMOYEYTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.389 [XNIO-1 task-1] dj0HyYLBQ52m47iMOYEYTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.390 [XNIO-1 task-1] dj0HyYLBQ52m47iMOYEYTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.408 [XNIO-1 task-1] VNpBuYvvTImWHxnBZolr0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.408 [XNIO-1 task-1] VNpBuYvvTImWHxnBZolr0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.408 [XNIO-1 task-1] VNpBuYvvTImWHxnBZolr0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.409 [XNIO-1 task-1] VNpBuYvvTImWHxnBZolr0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.457 [XNIO-1 task-1] gi2Nvuw3RNSFbWUmDzclrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01b6cf09, base path is set to: null +19:00:44.457 [XNIO-1 task-1] gi2Nvuw3RNSFbWUmDzclrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.457 [XNIO-1 task-1] gi2Nvuw3RNSFbWUmDzclrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:44.457 [XNIO-1 task-1] gi2Nvuw3RNSFbWUmDzclrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01b6cf09, base path is set to: null +19:00:44.458 [XNIO-1 task-1] gi2Nvuw3RNSFbWUmDzclrg DEBUG com.networknt.schema.TypeValidator debug - validate( "01b6cf09", "01b6cf09", serviceId) +19:00:44.492 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.492 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.493 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.493 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.493 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.493 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG com.networknt.schema.TypeValidator debug - validate( "7de5b0d8-1cd3-4186-9feb-d6ae0a41505a", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:44.494 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a7d5b86", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:44.494 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:44.494 [XNIO-1 task-1] 3zogHdWPRi6U32NJbBAFUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a7d5b86","serviceName":"a29f8ccb-2677-48e2-a693-899589b3","serviceDesc":"7de5b0d8-1cd3-4186-9feb-d6ae0a41505a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.509 [XNIO-1 task-1] FDLHxBdiQ16KJhlSuIm_Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.509 [XNIO-1 task-1] FDLHxBdiQ16KJhlSuIm_Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.510 [XNIO-1 task-1] FDLHxBdiQ16KJhlSuIm_Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.510 [XNIO-1 task-1] FDLHxBdiQ16KJhlSuIm_Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.522 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:06103792-7939-4f69-aa3a-e7dc37cdf678 +19:00:44.547 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.547 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.548 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.548 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.549 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.549 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "532a900d-8e59-4ddc-a181-2c1fd8c20924", {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:44.549 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "5757eb7c", {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:44.549 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:44.549 [XNIO-1 task-1] bNJmDxaPQRqBydtDh_JW8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.571 [XNIO-1 task-1] jOYAWbPWTqyql05zHmrvdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb128129 +19:00:44.571 [XNIO-1 task-1] jOYAWbPWTqyql05zHmrvdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.571 [XNIO-1 task-1] jOYAWbPWTqyql05zHmrvdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.571 [XNIO-1 task-1] jOYAWbPWTqyql05zHmrvdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb128129 +19:00:44.582 [XNIO-1 task-1] AguwRiLiRDqJma3GhpcAAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.582 [XNIO-1 task-1] AguwRiLiRDqJma3GhpcAAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.583 [XNIO-1 task-1] AguwRiLiRDqJma3GhpcAAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.583 [XNIO-1 task-1] AguwRiLiRDqJma3GhpcAAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.600 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.601 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.601 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.601 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.602 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.602 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.602 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.602 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9122dfb7-4c06-4fdd-8a51-aa81a978", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:44.603 [XNIO-1 task-1] gHhqmmAvTQS6GIZNyK-ZrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.607 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0f44c3b +19:00:44.613 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b1cf3c85-f4c5-43aa-8921-5df19773b7ab +19:00:44.618 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b1cf3c85-f4c5-43aa-8921-5df19773b7ab +19:00:44.620 [XNIO-1 task-1] Wn_htby-ReK9HZlvhl-acQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/66ab89df +19:00:44.628 [XNIO-1 task-1] Wn_htby-ReK9HZlvhl-acQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.628 [XNIO-1 task-1] Wn_htby-ReK9HZlvhl-acQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.628 [XNIO-1 task-1] Wn_htby-ReK9HZlvhl-acQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/66ab89df +19:00:44.630 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:66ab89df +19:00:44.656 [XNIO-1 task-1] OhsQ2RjVS0O2hgyREDKpgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.661 [XNIO-1 task-1] OhsQ2RjVS0O2hgyREDKpgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.661 [XNIO-1 task-1] OhsQ2RjVS0O2hgyREDKpgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.703 [XNIO-1 task-1] TPk9dgT4QqmrUDhSI3ac3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fc95d40, base path is set to: null +19:00:44.703 [XNIO-1 task-1] TPk9dgT4QqmrUDhSI3ac3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.703 [XNIO-1 task-1] TPk9dgT4QqmrUDhSI3ac3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:44.703 [XNIO-1 task-1] TPk9dgT4QqmrUDhSI3ac3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fc95d40, base path is set to: null +19:00:44.703 [XNIO-1 task-1] TPk9dgT4QqmrUDhSI3ac3A DEBUG com.networknt.schema.TypeValidator debug - validate( "8fc95d40", "8fc95d40", serviceId) +19:00:44.712 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.712 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.713 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.713 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.713 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.714 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG com.networknt.schema.TypeValidator debug - validate( "48cf8329-d31d-4eec-9fd6-6be1a08c05dd", {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:44.714 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG com.networknt.schema.TypeValidator debug - validate( "fb128129", {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:44.714 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:44.714 [XNIO-1 task-1] vYshvw8wQhitJBSMRwxgIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb128129","serviceName":"3494d8ba-5fe6-463b-b218-25953c3a","serviceDesc":"48cf8329-d31d-4eec-9fd6-6be1a08c05dd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.724 [XNIO-1 task-1] UFOtSU5-R3qgWHH1MzUl_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.724 [XNIO-1 task-1] UFOtSU5-R3qgWHH1MzUl_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.724 [XNIO-1 task-1] UFOtSU5-R3qgWHH1MzUl_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.743 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:eda0dca6 +19:00:44.751 [XNIO-1 task-1] -4K3j2ptRHys_c___PyOFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fc95d40, base path is set to: null +19:00:44.751 [XNIO-1 task-1] -4K3j2ptRHys_c___PyOFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.751 [XNIO-1 task-1] -4K3j2ptRHys_c___PyOFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:44.752 [XNIO-1 task-1] -4K3j2ptRHys_c___PyOFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8fc95d40, base path is set to: null +19:00:44.752 [XNIO-1 task-1] -4K3j2ptRHys_c___PyOFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8fc95d40", "8fc95d40", serviceId) +19:00:44.760 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:eda0dca6 +19:00:44.765 [XNIO-1 task-1] tCVCdx7OTtqKYJkct9MotQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.765 [XNIO-1 task-1] tCVCdx7OTtqKYJkct9MotQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.766 [XNIO-1 task-1] tCVCdx7OTtqKYJkct9MotQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.791 [XNIO-1 task-1] LHanU0vuSfOMLRJz4fT55g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/51d2edd6, base path is set to: null +19:00:44.792 [XNIO-1 task-1] LHanU0vuSfOMLRJz4fT55g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.792 [XNIO-1 task-1] LHanU0vuSfOMLRJz4fT55g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:44.792 [XNIO-1 task-1] LHanU0vuSfOMLRJz4fT55g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/51d2edd6, base path is set to: null +19:00:44.792 [XNIO-1 task-1] LHanU0vuSfOMLRJz4fT55g DEBUG com.networknt.schema.TypeValidator debug - validate( "51d2edd6", "51d2edd6", serviceId) +19:00:44.807 [XNIO-1 task-1] IVv2zi1BTYu_40NrU9llwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/949e2b5a +19:00:44.807 [XNIO-1 task-1] IVv2zi1BTYu_40NrU9llwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.807 [XNIO-1 task-1] IVv2zi1BTYu_40NrU9llwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.807 [XNIO-1 task-1] IVv2zi1BTYu_40NrU9llwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/949e2b5a +19:00:44.826 [XNIO-1 task-1] oNg9258HSTCbR5as2zKrDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.826 [XNIO-1 task-1] oNg9258HSTCbR5as2zKrDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.826 [XNIO-1 task-1] oNg9258HSTCbR5as2zKrDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.832 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12109ed7-0657-4e46-8741-b5d1b4147182 +19:00:44.833 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12109ed7-0657-4e46-8741-b5d1b4147182 +19:00:44.843 [XNIO-1 task-1] -rC5zdjJTii_UMUReTuZTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1f7a1fd3 +19:00:44.843 [XNIO-1 task-1] -rC5zdjJTii_UMUReTuZTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.843 [XNIO-1 task-1] -rC5zdjJTii_UMUReTuZTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.843 [XNIO-1 task-1] -rC5zdjJTii_UMUReTuZTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1f7a1fd3 +19:00:44.849 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.849 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.849 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.850 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.850 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.850 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.850 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.850 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0b26a4b3-61cd-4185-bf76-b1e84cc2", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:44.850 [XNIO-1 task-1] BV30fcW7Tv2WF6drB-8VVQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.852 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:12109ed7-0657-4e46-8741-b5d1b4147182 +19:00:44.865 [XNIO-1 task-1] xvgNqmFZRDS0eblcl7PYzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1612e091 +19:00:44.865 [XNIO-1 task-1] xvgNqmFZRDS0eblcl7PYzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.865 [XNIO-1 task-1] xvgNqmFZRDS0eblcl7PYzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.865 [XNIO-1 task-1] xvgNqmFZRDS0eblcl7PYzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1612e091 +19:00:44.866 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1612e091 +19:00:44.885 [XNIO-1 task-1] bcmaKmDQR9SNQoWcvE15eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.885 [XNIO-1 task-1] bcmaKmDQR9SNQoWcvE15eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.886 [XNIO-1 task-1] bcmaKmDQR9SNQoWcvE15eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.886 [XNIO-1 task-1] bcmaKmDQR9SNQoWcvE15eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.896 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b1cf3c85-f4c5-43aa-8921-5df19773b7ab +19:00:44.901 [XNIO-1 task-1] PLGDecIZTxitFaQ5BNCwIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06f55896 +19:00:44.902 [XNIO-1 task-1] PLGDecIZTxitFaQ5BNCwIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:44.902 [XNIO-1 task-1] PLGDecIZTxitFaQ5BNCwIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:44.902 [XNIO-1 task-1] PLGDecIZTxitFaQ5BNCwIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06f55896 +19:00:44.916 [XNIO-1 task-1] z6txKapxQE6hR8fMQ7itCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.917 [XNIO-1 task-1] z6txKapxQE6hR8fMQ7itCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.917 [XNIO-1 task-1] z6txKapxQE6hR8fMQ7itCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.917 [XNIO-1 task-1] z6txKapxQE6hR8fMQ7itCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.943 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.943 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.944 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.944 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.944 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.945 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.945 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.945 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG com.networknt.schema.TypeValidator debug - validate( "09d9a598-13ff-4149-9944-885d99a7", {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:44.945 [XNIO-1 task-1] Pp2N2Di-QFmBP98O-fs1vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.966 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.966 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.966 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.967 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.967 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.967 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.967 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.967 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d951314-cd2d-43e3-b5cc-80e55746", {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:44.967 [XNIO-1 task-1] Ylgp-EwQR2KFiRNfLS_rZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ce4e3c0","serviceName":"2d951314-cd2d-43e3-b5cc-80e55746","serviceDesc":"99d2ef48-d43b-415f-952f-0f1b7a96bd3d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.980 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.980 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.980 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.981 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.981 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.981 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.981 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.981 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de6abad8-4231-4998-8fa3-b9ce5c1c", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:44.981 [XNIO-1 task-1] 14h8jvVqQL-dYxgkqQ3kkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.997 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.997 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:44.998 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:44.998 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.998 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:44.998 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:44.999 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:44.999 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG com.networknt.schema.TypeValidator debug - validate( "09d9a598-13ff-4149-9944-885d99a7", {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:44.999 [XNIO-1 task-1] ykInWNC7RMCOAd7O_N2fWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b55689de","serviceName":"09d9a598-13ff-4149-9944-885d99a7","serviceDesc":"7701b71c-4300-45a9-9d07-1f2ee9b291cd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.015 [XNIO-1 task-1] rVtTxEimRZeQ0N6_D8v9eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:45.016 [XNIO-1 task-1] rVtTxEimRZeQ0N6_D8v9eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.016 [XNIO-1 task-1] rVtTxEimRZeQ0N6_D8v9eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.016 [XNIO-1 task-1] rVtTxEimRZeQ0N6_D8v9eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:45.017 [XNIO-1 task-1] rVtTxEimRZeQ0N6_D8v9eA DEBUG com.networknt.schema.TypeValidator debug - validate( "053d3b38", "053d3b38", serviceId) +19:00:45.021 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.023 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.023 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.024 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.024 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.024 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG com.networknt.schema.TypeValidator debug - validate( "c287df1f-48d7-4d8c-85d5-a3a1e2ec839e", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:45.024 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG com.networknt.schema.TypeValidator debug - validate( "053d3b38", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:45.024 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.024 [XNIO-1 task-1] bOEjC6OfQ3Swo8ZalZWIMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"053d3b38","serviceName":"f484ca44-77c6-42bd-95bb-d6153fe6","serviceDesc":"c287df1f-48d7-4d8c-85d5-a3a1e2ec839e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.039 [XNIO-1 task-1] cahG0WcRT-aVOkaGaL69pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.039 [XNIO-1 task-1] cahG0WcRT-aVOkaGaL69pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.039 [XNIO-1 task-1] cahG0WcRT-aVOkaGaL69pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.056 [XNIO-1 task-1] oWW8wFc2Tj61zWm26_9Ong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.057 [XNIO-1 task-1] oWW8wFc2Tj61zWm26_9Ong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.057 [XNIO-1 task-1] oWW8wFc2Tj61zWm26_9Ong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.057 [XNIO-1 task-1] oWW8wFc2Tj61zWm26_9Ong DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.073 [XNIO-1 task-1] XymRA-PFQ7WL-k0p_FPyyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9463e28b +19:00:45.073 [XNIO-1 task-1] XymRA-PFQ7WL-k0p_FPyyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.073 [XNIO-1 task-1] XymRA-PFQ7WL-k0p_FPyyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.074 [XNIO-1 task-1] XymRA-PFQ7WL-k0p_FPyyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9463e28b +19:00:45.081 [XNIO-1 task-1] k45_VC3HROqBh3NERT8zIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.081 [XNIO-1 task-1] k45_VC3HROqBh3NERT8zIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.082 [XNIO-1 task-1] k45_VC3HROqBh3NERT8zIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.082 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d17c60d8 +19:00:45.083 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d17c60d8 +19:00:45.103 [XNIO-1 task-1] UHttGJbLR6-O0HUCgdHW6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.103 [XNIO-1 task-1] UHttGJbLR6-O0HUCgdHW6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.104 [XNIO-1 task-1] UHttGJbLR6-O0HUCgdHW6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.123 [XNIO-1 task-1] LLM-U4JkS2WWthZnmIzvnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9463e28b +19:00:45.123 [XNIO-1 task-1] LLM-U4JkS2WWthZnmIzvnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.123 [XNIO-1 task-1] LLM-U4JkS2WWthZnmIzvnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.124 [XNIO-1 task-1] LLM-U4JkS2WWthZnmIzvnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9463e28b +19:00:45.187 [XNIO-1 task-1] F4DDE4t6RoONm9a1n49bhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.187 [XNIO-1 task-1] F4DDE4t6RoONm9a1n49bhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.188 [XNIO-1 task-1] F4DDE4t6RoONm9a1n49bhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.188 [XNIO-1 task-1] F4DDE4t6RoONm9a1n49bhA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.200 [XNIO-1 task-1] lAya5joDTI-35PrGI4kCHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.200 [XNIO-1 task-1] lAya5joDTI-35PrGI4kCHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.201 [XNIO-1 task-1] lAya5joDTI-35PrGI4kCHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.246 [XNIO-1 task-1] ka39OZhtSOmKdbLM8HeKHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.247 [XNIO-1 task-1] ka39OZhtSOmKdbLM8HeKHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.247 [XNIO-1 task-1] ka39OZhtSOmKdbLM8HeKHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.247 [XNIO-1 task-1] ka39OZhtSOmKdbLM8HeKHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.268 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.278 [XNIO-1 task-1] 6WSNxCLxRhqjCYRmSbddsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/165d296d, base path is set to: null +19:00:45.279 [XNIO-1 task-1] 6WSNxCLxRhqjCYRmSbddsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.279 [XNIO-1 task-1] 6WSNxCLxRhqjCYRmSbddsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.279 [XNIO-1 task-1] 6WSNxCLxRhqjCYRmSbddsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/165d296d, base path is set to: null +19:00:45.279 [XNIO-1 task-1] 6WSNxCLxRhqjCYRmSbddsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "165d296d", "165d296d", serviceId) +19:00:45.285 [XNIO-1 task-1] 1Vc2rCHVRmmk84-rOdoXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0ff82b7 +19:00:45.285 [XNIO-1 task-1] 1Vc2rCHVRmmk84-rOdoXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.285 [XNIO-1 task-1] 1Vc2rCHVRmmk84-rOdoXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.286 [XNIO-1 task-1] 1Vc2rCHVRmmk84-rOdoXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0ff82b7 +19:00:45.291 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.291 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.291 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.292 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.292 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.292 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.292 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:45.292 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de6abad8-4231-4998-8fa3-b9ce5c1c", {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:45.292 [XNIO-1 task-1] _xMvWz0eS7WYWodpcW0BwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165d296d","serviceName":"de6abad8-4231-4998-8fa3-b9ce5c1c","serviceDesc":"e9cc2834-48f1-400c-9f2b-a794782e3aed","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.304 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.319 [XNIO-1 task-1] gZzm2HaQSwCVTxcbe8qg4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b55689de +19:00:45.319 [XNIO-1 task-1] gZzm2HaQSwCVTxcbe8qg4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.319 [XNIO-1 task-1] gZzm2HaQSwCVTxcbe8qg4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.319 [XNIO-1 task-1] gZzm2HaQSwCVTxcbe8qg4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b55689de +19:00:45.325 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:208166d2-ffee-4acd-9670-6b792578ba9d +19:00:45.332 [XNIO-1 task-1] _VugEi8zQGikVlNKALpgzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/85fca654 +19:00:45.332 [XNIO-1 task-1] _VugEi8zQGikVlNKALpgzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.332 [XNIO-1 task-1] _VugEi8zQGikVlNKALpgzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.332 [XNIO-1 task-1] _VugEi8zQGikVlNKALpgzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/85fca654 +19:00:45.349 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.349 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.349 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.350 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.350 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:65fe5fbc-1d4e-4830-a0d2-54847ed5ff06 +19:00:45.350 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.350 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.351 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a0b1796-6476-40d2-bc18-d026e8390291", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:45.351 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a0ff82b7", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:45.351 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.351 [XNIO-1 task-1] VLyO2Y7UQciVIiP-LPraaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a0ff82b7","serviceName":"e52a8222-fa2a-4b43-b8fe-3182414b","serviceDesc":"5a0b1796-6476-40d2-bc18-d026e8390291","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.376 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.376 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.377 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.377 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.377 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.378 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50cf293f-26f8-40ca-ad1c-f19b96f654c2", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:45.378 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f7a1fd3", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:45.378 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.378 [XNIO-1 task-1] ZmnCLV1zRNCXd87tSquKPQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1f7a1fd3","serviceName":"0b26a4b3-61cd-4185-bf76-b1e84cc2","serviceDesc":"50cf293f-26f8-40ca-ad1c-f19b96f654c2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.395 [XNIO-1 task-1] tixB4t5xR-mHX53J568B4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/da0bd7af +19:00:45.395 [XNIO-1 task-1] tixB4t5xR-mHX53J568B4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.396 [XNIO-1 task-1] tixB4t5xR-mHX53J568B4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.396 [XNIO-1 task-1] tixB4t5xR-mHX53J568B4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/da0bd7af +19:00:45.409 [XNIO-1 task-1] 31sScc4aQTiTXFK_CdcXdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/da0bd7af, base path is set to: null +19:00:45.410 [XNIO-1 task-1] 31sScc4aQTiTXFK_CdcXdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.411 [XNIO-1 task-1] 31sScc4aQTiTXFK_CdcXdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.411 [XNIO-1 task-1] 31sScc4aQTiTXFK_CdcXdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/da0bd7af, base path is set to: null +19:00:45.412 [XNIO-1 task-1] 31sScc4aQTiTXFK_CdcXdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da0bd7af", "da0bd7af", serviceId) +19:00:45.419 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.419 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.420 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.424 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.424 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.425 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG com.networknt.schema.TypeValidator debug - validate( "55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74", {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:45.425 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG com.networknt.schema.TypeValidator debug - validate( "da0bd7af", {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:45.425 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.425 [XNIO-1 task-1] jLgoXHJCSSy9ZjZasm2_-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"da0bd7af","serviceName":"cf77b006-361e-4f9a-a28c-b21161b9","serviceDesc":"55e7d73f-a2d3-4763-a4c1-fddc3b8c4f74","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.447 [XNIO-1 task-1] 1OAu1JdbRNqQQqYQPQRV4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f16b3bf1 +19:00:45.447 [XNIO-1 task-1] 1OAu1JdbRNqQQqYQPQRV4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.447 [XNIO-1 task-1] 1OAu1JdbRNqQQqYQPQRV4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.448 [XNIO-1 task-1] 1OAu1JdbRNqQQqYQPQRV4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f16b3bf1 +19:00:45.463 [XNIO-1 task-1] CvwKcSETS4CUuDod__tqSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.463 [XNIO-1 task-1] CvwKcSETS4CUuDod__tqSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.463 [XNIO-1 task-1] CvwKcSETS4CUuDod__tqSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.464 [XNIO-1 task-1] CvwKcSETS4CUuDod__tqSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.483 [XNIO-1 task-1] pjMmZMUwT3Wi-XhO9HX79g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f16b3bf1, base path is set to: null +19:00:45.483 [XNIO-1 task-1] pjMmZMUwT3Wi-XhO9HX79g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.485 [XNIO-1 task-1] pjMmZMUwT3Wi-XhO9HX79g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.485 [XNIO-1 task-1] pjMmZMUwT3Wi-XhO9HX79g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f16b3bf1, base path is set to: null +19:00:45.486 [XNIO-1 task-1] pjMmZMUwT3Wi-XhO9HX79g DEBUG com.networknt.schema.TypeValidator debug - validate( "f16b3bf1", "f16b3bf1", serviceId) +19:00:45.490 [XNIO-1 task-1] HOYYtbRBRiK8GK-1LrGzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88d06e6d +19:00:45.490 [XNIO-1 task-1] HOYYtbRBRiK8GK-1LrGzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.490 [XNIO-1 task-1] HOYYtbRBRiK8GK-1LrGzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.490 [XNIO-1 task-1] HOYYtbRBRiK8GK-1LrGzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88d06e6d +19:00:45.501 [XNIO-1 task-1] XkwtoYAtSNyn9aZeBkpw8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/be0245ca, base path is set to: null +19:00:45.502 [XNIO-1 task-1] XkwtoYAtSNyn9aZeBkpw8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.502 [XNIO-1 task-1] XkwtoYAtSNyn9aZeBkpw8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.502 [XNIO-1 task-1] XkwtoYAtSNyn9aZeBkpw8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/be0245ca, base path is set to: null +19:00:45.502 [XNIO-1 task-1] XkwtoYAtSNyn9aZeBkpw8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "be0245ca", "be0245ca", serviceId) +19:00:45.507 [XNIO-1 task-1] hhRwIb7GQuyAVpJiqSHGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.507 [XNIO-1 task-1] hhRwIb7GQuyAVpJiqSHGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.507 [XNIO-1 task-1] hhRwIb7GQuyAVpJiqSHGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.508 [XNIO-1 task-1] hhRwIb7GQuyAVpJiqSHGig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.539 [XNIO-1 task-1] N_fetaMyRSy2Eqlkeiei6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.540 [XNIO-1 task-1] N_fetaMyRSy2Eqlkeiei6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.541 [XNIO-1 task-1] N_fetaMyRSy2Eqlkeiei6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.560 [XNIO-1 task-1] 4JUendAwQnCqNMaDHaZ66g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f16b3bf1 +19:00:45.560 [XNIO-1 task-1] 4JUendAwQnCqNMaDHaZ66g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.560 [XNIO-1 task-1] 4JUendAwQnCqNMaDHaZ66g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.560 [XNIO-1 task-1] 4JUendAwQnCqNMaDHaZ66g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f16b3bf1 +19:00:45.567 [XNIO-1 task-1] mai_mSibR9ap082g6m0FXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/751978ae, base path is set to: null +19:00:45.567 [XNIO-1 task-1] mai_mSibR9ap082g6m0FXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.567 [XNIO-1 task-1] mai_mSibR9ap082g6m0FXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.567 [XNIO-1 task-1] mai_mSibR9ap082g6m0FXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/751978ae, base path is set to: null +19:00:45.567 [XNIO-1 task-1] mai_mSibR9ap082g6m0FXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "751978ae", "751978ae", serviceId) +19:00:45.572 [XNIO-1 task-1] Jpj4JKAeTKmBV1bXfc_MjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9600a29d +19:00:45.572 [XNIO-1 task-1] Jpj4JKAeTKmBV1bXfc_MjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.572 [XNIO-1 task-1] Jpj4JKAeTKmBV1bXfc_MjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.572 [XNIO-1 task-1] Jpj4JKAeTKmBV1bXfc_MjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9600a29d +19:00:45.582 [XNIO-1 task-1] gNKdgOt9S3aq-K52cDh33A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.585 [XNIO-1 task-1] gNKdgOt9S3aq-K52cDh33A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.585 [XNIO-1 task-1] gNKdgOt9S3aq-K52cDh33A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.585 [XNIO-1 task-1] gNKdgOt9S3aq-K52cDh33A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.598 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.598 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.598 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.599 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b7514c0e-a5fb-4b1c-a508-53cafd242cb4 +19:00:45.599 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.599 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.599 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8599ab3-3d39-4398-b1d1-2e0261d2737f", {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:45.599 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG com.networknt.schema.TypeValidator debug - validate( "be0245ca", {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:45.599 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:45.599 [XNIO-1 task-1] ZCQ6NKf6To22jUQ3wiwnFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"be0245ca","serviceName":"048378d1-b495-4686-a3cf-e29aeeca","serviceDesc":"a8599ab3-3d39-4398-b1d1-2e0261d2737f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.603 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b7514c0e-a5fb-4b1c-a508-53cafd242cb4 +19:00:45.610 [XNIO-1 task-1] NswGkkr4TwWBbOVwbHOH5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.610 [XNIO-1 task-1] NswGkkr4TwWBbOVwbHOH5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.611 [XNIO-1 task-1] NswGkkr4TwWBbOVwbHOH5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.611 [XNIO-1 task-1] NswGkkr4TwWBbOVwbHOH5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.627 [XNIO-1 task-1] lb3CQk05QeioCcOxNVRs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f16b3bf1 +19:00:45.628 [XNIO-1 task-1] lb3CQk05QeioCcOxNVRs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.628 [XNIO-1 task-1] lb3CQk05QeioCcOxNVRs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.628 [XNIO-1 task-1] lb3CQk05QeioCcOxNVRs1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f16b3bf1 +19:00:45.633 [XNIO-1 task-1] D6n32x9MSYGu8to3JjKjgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/084f666a, base path is set to: null +19:00:45.633 [XNIO-1 task-1] D6n32x9MSYGu8to3JjKjgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.633 [XNIO-1 task-1] D6n32x9MSYGu8to3JjKjgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.633 [XNIO-1 task-1] D6n32x9MSYGu8to3JjKjgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/084f666a, base path is set to: null +19:00:45.634 [XNIO-1 task-1] D6n32x9MSYGu8to3JjKjgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "084f666a", "084f666a", serviceId) +19:00:45.660 [XNIO-1 task-1] Rcm2NkHITQ66ghi6AQ38wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/084f666a +19:00:45.661 [XNIO-1 task-1] Rcm2NkHITQ66ghi6AQ38wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.661 [XNIO-1 task-1] Rcm2NkHITQ66ghi6AQ38wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.662 [XNIO-1 task-1] Rcm2NkHITQ66ghi6AQ38wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/084f666a +19:00:45.665 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.665 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.666 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.666 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.666 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.666 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.666 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:45.666 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "867bbbfd-55ef-4f2b-be7d-43306352", {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:45.666 [XNIO-1 task-1] ivN9Ab0fTZuL8X7rbgsD2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"084f666a","serviceName":"867bbbfd-55ef-4f2b-be7d-43306352","serviceDesc":"bc5eb02a-90f2-4ae1-897e-759b899130f5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.685 [XNIO-1 task-1] gfdTM1UxRsuZHssWQM0iDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5d263a0e, base path is set to: null +19:00:45.686 [XNIO-1 task-1] gfdTM1UxRsuZHssWQM0iDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.687 [XNIO-1 task-1] gfdTM1UxRsuZHssWQM0iDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.687 [XNIO-1 task-1] gfdTM1UxRsuZHssWQM0iDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5d263a0e, base path is set to: null +19:00:45.687 [XNIO-1 task-1] gfdTM1UxRsuZHssWQM0iDw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d263a0e", "5d263a0e", serviceId) +19:00:45.694 [XNIO-1 task-1] FDeOVXd9QlGUR0kqWj3Hdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.694 [XNIO-1 task-1] FDeOVXd9QlGUR0kqWj3Hdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.694 [XNIO-1 task-1] FDeOVXd9QlGUR0kqWj3Hdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.727 [XNIO-1 task-1] 0T2k97K_RUuekirBgkxiCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5d263a0e +19:00:45.728 [XNIO-1 task-1] 0T2k97K_RUuekirBgkxiCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.728 [XNIO-1 task-1] 0T2k97K_RUuekirBgkxiCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.728 [XNIO-1 task-1] 0T2k97K_RUuekirBgkxiCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5d263a0e +19:00:45.799 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.799 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.800 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.800 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.800 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.800 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:45.801 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:45.801 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2319fe2c-d8f5-4ee5-ac71-22013d18", {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:45.801 [XNIO-1 task-1] 0momcmimRoyJ5j8tzaCrmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:45.826 [XNIO-1 task-1] OW9OGoGvTgKMDL-ShAyVog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8bdb500, base path is set to: null +19:00:45.826 [XNIO-1 task-1] OW9OGoGvTgKMDL-ShAyVog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.826 [XNIO-1 task-1] OW9OGoGvTgKMDL-ShAyVog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.826 [XNIO-1 task-1] OW9OGoGvTgKMDL-ShAyVog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8bdb500, base path is set to: null +19:00:45.827 [XNIO-1 task-1] OW9OGoGvTgKMDL-ShAyVog DEBUG com.networknt.schema.TypeValidator debug - validate( "f8bdb500", "f8bdb500", serviceId) +19:00:45.836 [XNIO-1 task-1] FC0dj6axTXSMcEn963LJlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/df59634c +19:00:45.836 [XNIO-1 task-1] FC0dj6axTXSMcEn963LJlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.836 [XNIO-1 task-1] FC0dj6axTXSMcEn963LJlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.838 [XNIO-1 task-1] FC0dj6axTXSMcEn963LJlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/df59634c +19:00:45.860 [XNIO-1 task-1] U2COd0CiSIGILRewGb87vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.860 [XNIO-1 task-1] U2COd0CiSIGILRewGb87vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.860 [XNIO-1 task-1] U2COd0CiSIGILRewGb87vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.883 [XNIO-1 task-1] bb-_-IzhSdaxptM10xJeLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.883 [XNIO-1 task-1] bb-_-IzhSdaxptM10xJeLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.883 [XNIO-1 task-1] bb-_-IzhSdaxptM10xJeLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.884 [XNIO-1 task-1] bb-_-IzhSdaxptM10xJeLA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.914 [XNIO-1 task-1] BKkgfIurSWCcwHclBLO5tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8bdb500, base path is set to: null +19:00:45.914 [XNIO-1 task-1] BKkgfIurSWCcwHclBLO5tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.914 [XNIO-1 task-1] BKkgfIurSWCcwHclBLO5tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:45.915 [XNIO-1 task-1] BKkgfIurSWCcwHclBLO5tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8bdb500, base path is set to: null +19:00:45.915 [XNIO-1 task-1] BKkgfIurSWCcwHclBLO5tg DEBUG com.networknt.schema.TypeValidator debug - validate( "f8bdb500", "f8bdb500", serviceId) +19:00:45.916 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f8bdb500 +19:00:45.928 [XNIO-1 task-1] lzz_EyADSACaCsPF2-PCVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12eb4e48 +19:00:45.928 [XNIO-1 task-1] lzz_EyADSACaCsPF2-PCVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.928 [XNIO-1 task-1] lzz_EyADSACaCsPF2-PCVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:45.928 [XNIO-1 task-1] lzz_EyADSACaCsPF2-PCVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12eb4e48 +19:00:45.940 [XNIO-1 task-1] -H8dyOwFSBerlqqShzp73w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.940 [XNIO-1 task-1] -H8dyOwFSBerlqqShzp73w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:45.940 [XNIO-1 task-1] -H8dyOwFSBerlqqShzp73w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:45.941 [XNIO-1 task-1] -H8dyOwFSBerlqqShzp73w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.972 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b7514c0e-a5fb-4b1c-a508-53cafd242cb4 +19:00:45.996 [XNIO-1 task-1] JygwlRjzQ8uy0UVwOsKPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.996 [XNIO-1 task-1] JygwlRjzQ8uy0UVwOsKPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.996 [XNIO-1 task-1] JygwlRjzQ8uy0UVwOsKPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:45.996 [XNIO-1 task-1] JygwlRjzQ8uy0UVwOsKPBA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.023 [XNIO-1 task-1] jp37TWd_Qim-N8vb-6M67Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a7d5b86 +19:00:46.023 [XNIO-1 task-1] jp37TWd_Qim-N8vb-6M67Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.023 [XNIO-1 task-1] jp37TWd_Qim-N8vb-6M67Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.024 [XNIO-1 task-1] jp37TWd_Qim-N8vb-6M67Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a7d5b86 +19:00:46.035 [XNIO-1 task-1] KQOHqViCS-yRAvhthKTReQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.035 [XNIO-1 task-1] KQOHqViCS-yRAvhthKTReQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.036 [XNIO-1 task-1] KQOHqViCS-yRAvhthKTReQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.057 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.058 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f15ffc3b-bb1b-42f7-9b4a-c85d178a1232 +19:00:46.064 [XNIO-1 task-1] SbZXjeLCSl6yj2elSK00wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9cbafb00 +19:00:46.064 [XNIO-1 task-1] SbZXjeLCSl6yj2elSK00wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.064 [XNIO-1 task-1] SbZXjeLCSl6yj2elSK00wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.064 [XNIO-1 task-1] SbZXjeLCSl6yj2elSK00wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9cbafb00 +19:00:46.073 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.074 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.074 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.075 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.075 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.075 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.075 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:46.075 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG com.networknt.schema.TypeValidator debug - validate( "099c89ed-79a5-4903-83bf-4381bf58", {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:46.075 [XNIO-1 task-1] FAQpr2GxRl2vBgVN4ZZlCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5757eb7c","serviceName":"099c89ed-79a5-4903-83bf-4381bf58","serviceDesc":"532a900d-8e59-4ddc-a181-2c1fd8c20924","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.087 [XNIO-1 task-1] vF5vn7pcT6moXlNrikAgmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3acbd567, base path is set to: null +19:00:46.087 [XNIO-1 task-1] vF5vn7pcT6moXlNrikAgmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.087 [XNIO-1 task-1] vF5vn7pcT6moXlNrikAgmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.087 [XNIO-1 task-1] vF5vn7pcT6moXlNrikAgmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3acbd567, base path is set to: null +19:00:46.087 [XNIO-1 task-1] vF5vn7pcT6moXlNrikAgmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3acbd567", "3acbd567", serviceId) +19:00:46.092 [XNIO-1 task-1] eCFUI215TV6zuLjNl4iOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be0245ca +19:00:46.092 [XNIO-1 task-1] eCFUI215TV6zuLjNl4iOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.092 [XNIO-1 task-1] eCFUI215TV6zuLjNl4iOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.093 [XNIO-1 task-1] eCFUI215TV6zuLjNl4iOMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be0245ca +19:00:46.129 [XNIO-1 task-1] CjkQdIUpTfyRaAwasMIKAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9cbafb00, base path is set to: null +19:00:46.130 [XNIO-1 task-1] CjkQdIUpTfyRaAwasMIKAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.130 [XNIO-1 task-1] CjkQdIUpTfyRaAwasMIKAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.130 [XNIO-1 task-1] CjkQdIUpTfyRaAwasMIKAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9cbafb00, base path is set to: null +19:00:46.132 [XNIO-1 task-1] CjkQdIUpTfyRaAwasMIKAA DEBUG com.networknt.schema.TypeValidator debug - validate( "9cbafb00", "9cbafb00", serviceId) +19:00:46.139 [XNIO-1 task-1] aQDeNy4gQxKBeq6FoaezKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.139 [XNIO-1 task-1] aQDeNy4gQxKBeq6FoaezKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.140 [XNIO-1 task-1] aQDeNy4gQxKBeq6FoaezKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.171 [XNIO-1 task-1] ojooZdVDS1eC-FEeW-5ErA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3acbd567, base path is set to: null +19:00:46.171 [XNIO-1 task-1] ojooZdVDS1eC-FEeW-5ErA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.171 [XNIO-1 task-1] ojooZdVDS1eC-FEeW-5ErA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.171 [XNIO-1 task-1] ojooZdVDS1eC-FEeW-5ErA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3acbd567, base path is set to: null +19:00:46.172 [XNIO-1 task-1] ojooZdVDS1eC-FEeW-5ErA DEBUG com.networknt.schema.TypeValidator debug - validate( "3acbd567", "3acbd567", serviceId) +19:00:46.179 [XNIO-1 task-1] sWyrSt40TPC1UV2vbIlAmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9cbafb00 +19:00:46.179 [XNIO-1 task-1] sWyrSt40TPC1UV2vbIlAmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.179 [XNIO-1 task-1] sWyrSt40TPC1UV2vbIlAmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.179 [XNIO-1 task-1] sWyrSt40TPC1UV2vbIlAmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9cbafb00 +19:00:46.187 [XNIO-1 task-1] gWSwlKALRA6RnapLiMI6nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3acbd567, base path is set to: null +19:00:46.187 [XNIO-1 task-1] gWSwlKALRA6RnapLiMI6nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.187 [XNIO-1 task-1] gWSwlKALRA6RnapLiMI6nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.187 [XNIO-1 task-1] gWSwlKALRA6RnapLiMI6nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3acbd567, base path is set to: null +19:00:46.188 [XNIO-1 task-1] gWSwlKALRA6RnapLiMI6nw DEBUG com.networknt.schema.TypeValidator debug - validate( "3acbd567", "3acbd567", serviceId) +19:00:46.207 [XNIO-1 task-1] -lZAAkS3Sr6qJEoUlBvEsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9cbafb00, base path is set to: null +19:00:46.207 [XNIO-1 task-1] -lZAAkS3Sr6qJEoUlBvEsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.207 [XNIO-1 task-1] -lZAAkS3Sr6qJEoUlBvEsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.208 [XNIO-1 task-1] -lZAAkS3Sr6qJEoUlBvEsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9cbafb00, base path is set to: null +19:00:46.208 [XNIO-1 task-1] -lZAAkS3Sr6qJEoUlBvEsg DEBUG com.networknt.schema.TypeValidator debug - validate( "9cbafb00", "9cbafb00", serviceId) +19:00:46.212 [XNIO-1 task-1] csQYl2FqSy6N6gCh1_pTAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9cbafb00 +19:00:46.213 [XNIO-1 task-1] csQYl2FqSy6N6gCh1_pTAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.213 [XNIO-1 task-1] csQYl2FqSy6N6gCh1_pTAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.213 [XNIO-1 task-1] csQYl2FqSy6N6gCh1_pTAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9cbafb00 +19:00:46.252 [XNIO-1 task-1] 9lkPH1_SRZeEVImGyMy-vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01b6cf09, base path is set to: null +19:00:46.253 [XNIO-1 task-1] 9lkPH1_SRZeEVImGyMy-vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.253 [XNIO-1 task-1] 9lkPH1_SRZeEVImGyMy-vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.253 [XNIO-1 task-1] 9lkPH1_SRZeEVImGyMy-vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01b6cf09, base path is set to: null +19:00:46.253 [XNIO-1 task-1] 9lkPH1_SRZeEVImGyMy-vA DEBUG com.networknt.schema.TypeValidator debug - validate( "01b6cf09", "01b6cf09", serviceId) +19:00:46.256 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.257 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.257 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.257 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.257 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.257 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7", {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:46.258 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "01b6cf09", {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:46.258 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:46.258 [XNIO-1 task-1] Ds1AjcASTNmE2JbnW2EMUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"01b6cf09","serviceName":"9ebd6eed-a538-4ffd-b8d4-ccf6790d","serviceDesc":"9bb0087e-07d8-4e9e-bab1-fe1fe2e3b7d7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.261 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e8d62715-eb9e-4544-8414-ed0e1f3f7001 +19:00:46.277 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.277 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.277 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.278 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.278 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.278 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.278 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:46.278 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG com.networknt.schema.TypeValidator debug - validate( "d4b1c94a-5182-49b2-a7a3-5ea1776e", {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:46.278 [XNIO-1 task-1] RxWPfCOiQsOdZPcSHwlA8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"bb056883","serviceName":"d4b1c94a-5182-49b2-a7a3-5ea1776e","serviceDesc":"df355974-5b0f-47cf-a0c3-94bfab75d22d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.288 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:071a916a +19:00:46.290 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:071a916a +19:00:46.294 [XNIO-1 task-1] aO9Is7BGRRWhyN5vTEqYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.294 [XNIO-1 task-1] aO9Is7BGRRWhyN5vTEqYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.294 [XNIO-1 task-1] aO9Is7BGRRWhyN5vTEqYtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.295 [XNIO-1 task-1] aO9Is7BGRRWhyN5vTEqYtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.318 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.318 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.319 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.319 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.319 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.319 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG com.networknt.schema.TypeValidator debug - validate( "fdf6e1a3-4644-494a-ac2b-968389330ebb", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:46.319 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG com.networknt.schema.TypeValidator debug - validate( "f0f44c3b", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:46.319 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:46.320 [XNIO-1 task-1] bDsIkDhTT_Sa1WGg6nLy6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.322 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f0f44c3b +19:00:46.334 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ab726633-7785-4f5f-8aed-64ea3907490b +19:00:46.337 [XNIO-1 task-1] 3l7TswyXQqCs-J5u2bHAFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.337 [XNIO-1 task-1] 3l7TswyXQqCs-J5u2bHAFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.338 [XNIO-1 task-1] 3l7TswyXQqCs-J5u2bHAFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.339 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:071a916a +19:00:46.354 [XNIO-1 task-1] L6FyW_AYTMCJvMyv9qJZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb128129 +19:00:46.354 [XNIO-1 task-1] L6FyW_AYTMCJvMyv9qJZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.354 [XNIO-1 task-1] L6FyW_AYTMCJvMyv9qJZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.354 [XNIO-1 task-1] L6FyW_AYTMCJvMyv9qJZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb128129 +19:00:46.366 [XNIO-1 task-1] qN0JQGofTB2VKvH-MaZCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:46.366 [XNIO-1 task-1] qN0JQGofTB2VKvH-MaZCCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.367 [XNIO-1 task-1] qN0JQGofTB2VKvH-MaZCCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.367 [XNIO-1 task-1] qN0JQGofTB2VKvH-MaZCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:46.369 [XNIO-1 task-1] qN0JQGofTB2VKvH-MaZCCg DEBUG com.networknt.schema.TypeValidator debug - validate( "053d3b38", "053d3b38", serviceId) +19:00:46.379 [XNIO-1 task-1] uw38xno5SIW39lhqXTEmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/084f666a +19:00:46.379 [XNIO-1 task-1] uw38xno5SIW39lhqXTEmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.379 [XNIO-1 task-1] uw38xno5SIW39lhqXTEmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.380 [XNIO-1 task-1] uw38xno5SIW39lhqXTEmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/084f666a +19:00:46.386 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.386 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.386 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.387 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.387 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.387 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.387 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:46.387 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG com.networknt.schema.TypeValidator debug - validate( "9122dfb7-4c06-4fdd-8a51-aa81a978", {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:46.387 [XNIO-1 task-1] zFX4Wnd-SG-oM02A-Bs9bg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.392 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0f44c3b +19:00:46.413 [XNIO-1 task-1] p1SuDdAmSimYNHy7xPIytg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/da0bd7af, base path is set to: null +19:00:46.413 [XNIO-1 task-1] p1SuDdAmSimYNHy7xPIytg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.414 [XNIO-1 task-1] p1SuDdAmSimYNHy7xPIytg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.414 [XNIO-1 task-1] p1SuDdAmSimYNHy7xPIytg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/da0bd7af, base path is set to: null +19:00:46.414 [XNIO-1 task-1] p1SuDdAmSimYNHy7xPIytg DEBUG com.networknt.schema.TypeValidator debug - validate( "da0bd7af", "da0bd7af", serviceId) +19:00:46.426 [XNIO-1 task-1] 1A1MliJVS-G0I7VnlKjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb128129 +19:00:46.426 [XNIO-1 task-1] 1A1MliJVS-G0I7VnlKjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.426 [XNIO-1 task-1] 1A1MliJVS-G0I7VnlKjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.426 [XNIO-1 task-1] 1A1MliJVS-G0I7VnlKjCFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb128129 +19:00:46.437 [XNIO-1 task-1] 008gAi6vSNGpafxt-s9vpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:46.437 [XNIO-1 task-1] 008gAi6vSNGpafxt-s9vpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.438 [XNIO-1 task-1] 008gAi6vSNGpafxt-s9vpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.439 [XNIO-1 task-1] 008gAi6vSNGpafxt-s9vpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/053d3b38, base path is set to: null +19:00:46.439 [XNIO-1 task-1] 008gAi6vSNGpafxt-s9vpw DEBUG com.networknt.schema.TypeValidator debug - validate( "053d3b38", "053d3b38", serviceId) +19:00:46.442 [XNIO-1 task-1] QDtfZuF4SYKmnE0mQ3WfXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.442 [XNIO-1 task-1] QDtfZuF4SYKmnE0mQ3WfXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.442 [XNIO-1 task-1] QDtfZuF4SYKmnE0mQ3WfXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.442 [XNIO-1 task-1] QDtfZuF4SYKmnE0mQ3WfXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.457 [XNIO-1 task-1] N8LX14MmTmqkuZ-iuKGziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/038be652 +19:00:46.457 [XNIO-1 task-1] N8LX14MmTmqkuZ-iuKGziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.457 [XNIO-1 task-1] N8LX14MmTmqkuZ-iuKGziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.457 [XNIO-1 task-1] N8LX14MmTmqkuZ-iuKGziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/038be652 +19:00:46.463 [XNIO-1 task-1] pBb28klXQnuunuwllAiUOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.463 [XNIO-1 task-1] pBb28klXQnuunuwllAiUOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.464 [XNIO-1 task-1] pBb28klXQnuunuwllAiUOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.478 [XNIO-1 task-1] DU5QTDaBR0yOvHoT7zr5Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.479 [XNIO-1 task-1] DU5QTDaBR0yOvHoT7zr5Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.479 [XNIO-1 task-1] DU5QTDaBR0yOvHoT7zr5Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.489 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.489 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.489 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.490 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.490 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.490 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.490 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +19:00:46.490 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "12455a5d-68c2-4671-882c-1b9ff8f4", {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +19:00:46.490 [XNIO-1 task-1] 0gwGnfQTQhuXrVcRIpv3gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5237c8f2","serviceName":"12455a5d-68c2-4671-882c-1b9ff8f4","serviceDesc":"0701254f-e820-449a-aacb-9df331b0e5da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.502 [XNIO-1 task-1] tfQ-BONiS8a-Hy54DcQURw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.503 [XNIO-1 task-1] tfQ-BONiS8a-Hy54DcQURw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.503 [XNIO-1 task-1] tfQ-BONiS8a-Hy54DcQURw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.503 [XNIO-1 task-1] tfQ-BONiS8a-Hy54DcQURw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.510 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:071a916a +19:00:46.517 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:09730550-06a4-429d-b71a-41ded5881257 +19:00:46.520 [XNIO-1 task-1] DCZsRIsQSViT5E5cgXY7tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/053d3b38 +19:00:46.520 [XNIO-1 task-1] DCZsRIsQSViT5E5cgXY7tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.521 [XNIO-1 task-1] DCZsRIsQSViT5E5cgXY7tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.521 [XNIO-1 task-1] DCZsRIsQSViT5E5cgXY7tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/053d3b38 +19:00:46.521 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7f5fecf8-3ab4-4c08-9918-eb4e2e949d1b +19:00:46.525 [XNIO-1 task-1] UaEjhhQBSre5Mdut2hl1Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.525 [XNIO-1 task-1] UaEjhhQBSre5Mdut2hl1Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.526 [XNIO-1 task-1] UaEjhhQBSre5Mdut2hl1Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.539 [XNIO-1 task-1] dDPgSHYbQ6SUVEatXrf1aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.540 [XNIO-1 task-1] dDPgSHYbQ6SUVEatXrf1aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.540 [XNIO-1 task-1] dDPgSHYbQ6SUVEatXrf1aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.540 [XNIO-1 task-1] dDPgSHYbQ6SUVEatXrf1aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.540 [XNIO-1 task-1] dDPgSHYbQ6SUVEatXrf1aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "038be652", "038be652", serviceId) +19:00:46.548 [XNIO-1 task-1] OPApKE9uQ1ameWuOCSdiSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.548 [XNIO-1 task-1] OPApKE9uQ1ameWuOCSdiSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.549 [XNIO-1 task-1] OPApKE9uQ1ameWuOCSdiSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.559 [XNIO-1 task-1] 2-MMyG7bQ_KyNtbTJ5e6Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.559 [XNIO-1 task-1] 2-MMyG7bQ_KyNtbTJ5e6Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.559 [XNIO-1 task-1] 2-MMyG7bQ_KyNtbTJ5e6Hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.559 [XNIO-1 task-1] 2-MMyG7bQ_KyNtbTJ5e6Hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.559 [XNIO-1 task-1] 2-MMyG7bQ_KyNtbTJ5e6Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "038be652", "038be652", serviceId) +19:00:46.566 [XNIO-1 task-1] 2OIJahjXSvu0yCGLIAX0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.566 [XNIO-1 task-1] 2OIJahjXSvu0yCGLIAX0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.567 [XNIO-1 task-1] 2OIJahjXSvu0yCGLIAX0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.586 [XNIO-1 task-1] 6WlhBBvPRMaQ6uzwzV9FOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.586 [XNIO-1 task-1] 6WlhBBvPRMaQ6uzwzV9FOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.587 [XNIO-1 task-1] 6WlhBBvPRMaQ6uzwzV9FOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.588 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4a62d105 +19:00:46.598 [XNIO-1 task-1] TGutID5PR_OcdVpWCXOisw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.598 [XNIO-1 task-1] TGutID5PR_OcdVpWCXOisw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.598 [XNIO-1 task-1] TGutID5PR_OcdVpWCXOisw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.599 [XNIO-1 task-1] TGutID5PR_OcdVpWCXOisw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.599 [XNIO-1 task-1] TGutID5PR_OcdVpWCXOisw DEBUG com.networknt.schema.TypeValidator debug - validate( "038be652", "038be652", serviceId) +19:00:46.603 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1e3d35ea-c05d-411c-bab6-1f2a933609f1 +19:00:46.604 [XNIO-1 task-1] NkEa6_W-Ra-eqBCgWJr8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd8baac4 +19:00:46.604 [XNIO-1 task-1] NkEa6_W-Ra-eqBCgWJr8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.604 [XNIO-1 task-1] NkEa6_W-Ra-eqBCgWJr8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.605 [XNIO-1 task-1] NkEa6_W-Ra-eqBCgWJr8eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd8baac4 +19:00:46.608 [XNIO-1 task-1] 5ouLXkY1QgWf7q9aKGq3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d17c60d8, base path is set to: null +19:00:46.609 [XNIO-1 task-1] 5ouLXkY1QgWf7q9aKGq3sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.609 [XNIO-1 task-1] 5ouLXkY1QgWf7q9aKGq3sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.609 [XNIO-1 task-1] 5ouLXkY1QgWf7q9aKGq3sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d17c60d8, base path is set to: null +19:00:46.609 [XNIO-1 task-1] 5ouLXkY1QgWf7q9aKGq3sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d17c60d8", "d17c60d8", serviceId) +19:00:46.610 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d17c60d8 +19:00:46.620 [XNIO-1 task-1] ujaWUb6OQPil53g9fGOtdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bb056883 +19:00:46.620 [XNIO-1 task-1] ujaWUb6OQPil53g9fGOtdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.620 [XNIO-1 task-1] ujaWUb6OQPil53g9fGOtdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.620 [XNIO-1 task-1] ujaWUb6OQPil53g9fGOtdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/bb056883, base path is set to: null +19:00:46.622 [XNIO-1 task-1] ujaWUb6OQPil53g9fGOtdA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb056883", "bb056883", serviceId) +19:00:46.641 [XNIO-1 task-1] tYf7icNdQxGg40bLKy7d1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0ff82b7 +19:00:46.641 [XNIO-1 task-1] tYf7icNdQxGg40bLKy7d1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.641 [XNIO-1 task-1] tYf7icNdQxGg40bLKy7d1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.641 [XNIO-1 task-1] tYf7icNdQxGg40bLKy7d1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a0ff82b7 +19:00:46.642 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1e3d35ea-c05d-411c-bab6-1f2a933609f1 +19:00:46.655 [XNIO-1 task-1] dFDG6RAmTzKLePYAksrv_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/165d296d +19:00:46.655 [XNIO-1 task-1] dFDG6RAmTzKLePYAksrv_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.655 [XNIO-1 task-1] dFDG6RAmTzKLePYAksrv_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.655 [XNIO-1 task-1] dFDG6RAmTzKLePYAksrv_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/165d296d +19:00:46.668 [XNIO-1 task-1] gyJIeCNUQGuVSvGFNN0oyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01b6cf09, base path is set to: null +19:00:46.668 [XNIO-1 task-1] gyJIeCNUQGuVSvGFNN0oyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.668 [XNIO-1 task-1] gyJIeCNUQGuVSvGFNN0oyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.669 [XNIO-1 task-1] gyJIeCNUQGuVSvGFNN0oyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01b6cf09, base path is set to: null +19:00:46.669 [XNIO-1 task-1] gyJIeCNUQGuVSvGFNN0oyw DEBUG com.networknt.schema.TypeValidator debug - validate( "01b6cf09", "01b6cf09", serviceId) +19:00:46.680 [XNIO-1 task-1] 6LPYNBPJSweB-F52LquhSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.680 [XNIO-1 task-1] 6LPYNBPJSweB-F52LquhSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.680 [XNIO-1 task-1] 6LPYNBPJSweB-F52LquhSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.703 [XNIO-1 task-1] OiqeB3jaSquRp0NhvVjH6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd8baac4 +19:00:46.703 [XNIO-1 task-1] OiqeB3jaSquRp0NhvVjH6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.703 [XNIO-1 task-1] OiqeB3jaSquRp0NhvVjH6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.704 [XNIO-1 task-1] OiqeB3jaSquRp0NhvVjH6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd8baac4 +19:00:46.708 [XNIO-1 task-1] iekARcmMTo6WZVh3H-xz7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.709 [XNIO-1 task-1] iekARcmMTo6WZVh3H-xz7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.709 [XNIO-1 task-1] iekARcmMTo6WZVh3H-xz7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.709 [XNIO-1 task-1] iekARcmMTo6WZVh3H-xz7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.709 [XNIO-1 task-1] iekARcmMTo6WZVh3H-xz7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "038be652", "038be652", serviceId) +19:00:46.714 [XNIO-1 task-1] hvJvURM6Qzeyi-0D-VDf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/038be652 +19:00:46.714 [XNIO-1 task-1] hvJvURM6Qzeyi-0D-VDf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.714 [XNIO-1 task-1] hvJvURM6Qzeyi-0D-VDf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.715 [XNIO-1 task-1] hvJvURM6Qzeyi-0D-VDf9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/038be652 +19:00:46.721 [XNIO-1 task-1] 8heanuS8T_qDXWSBwGEZYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.721 [XNIO-1 task-1] 8heanuS8T_qDXWSBwGEZYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.722 [XNIO-1 task-1] 8heanuS8T_qDXWSBwGEZYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.722 [XNIO-1 task-1] 8heanuS8T_qDXWSBwGEZYg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.739 [XNIO-1 task-1] -MybnIKeQIGp4I_NpbnMPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.739 [XNIO-1 task-1] -MybnIKeQIGp4I_NpbnMPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.740 [XNIO-1 task-1] -MybnIKeQIGp4I_NpbnMPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.740 [XNIO-1 task-1] -MybnIKeQIGp4I_NpbnMPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.756 [XNIO-1 task-1] MIVdFMy4TrGLmt5eoDtpzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.756 [XNIO-1 task-1] MIVdFMy4TrGLmt5eoDtpzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.757 [XNIO-1 task-1] MIVdFMy4TrGLmt5eoDtpzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.757 [XNIO-1 task-1] MIVdFMy4TrGLmt5eoDtpzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/038be652, base path is set to: null +19:00:46.757 [XNIO-1 task-1] MIVdFMy4TrGLmt5eoDtpzw DEBUG com.networknt.schema.TypeValidator debug - validate( "038be652", "038be652", serviceId) +19:00:46.760 [XNIO-1 task-1] 39UAS8yFRyK7tAT1Q66YUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.761 [XNIO-1 task-1] 39UAS8yFRyK7tAT1Q66YUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.761 [XNIO-1 task-1] 39UAS8yFRyK7tAT1Q66YUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.779 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.781 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.781 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.782 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.782 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.782 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG com.networknt.schema.TypeValidator debug - validate( "a7fc13f9-a178-4d77-8c8a-4d93dad30a67", {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:46.782 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG com.networknt.schema.TypeValidator debug - validate( "55ae6311", {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:46.782 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:46.782 [XNIO-1 task-1] eqbPFe_7RF2QtY620WYZ-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"55ae6311","serviceName":"a4aab9cd-ab0d-42de-879a-8a493e48","serviceDesc":"a7fc13f9-a178-4d77-8c8a-4d93dad30a67","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.793 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c29f849b-762f-41b0-8409-078d5a486325 +19:00:46.817 [XNIO-1 task-1] nMChaY_aTdmuEuJs3yfn4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4440cffc, base path is set to: null +19:00:46.817 [XNIO-1 task-1] nMChaY_aTdmuEuJs3yfn4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.817 [XNIO-1 task-1] nMChaY_aTdmuEuJs3yfn4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.818 [XNIO-1 task-1] nMChaY_aTdmuEuJs3yfn4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4440cffc, base path is set to: null +19:00:46.818 [XNIO-1 task-1] nMChaY_aTdmuEuJs3yfn4g DEBUG com.networknt.schema.TypeValidator debug - validate( "4440cffc", "4440cffc", serviceId) +19:00:46.820 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a0bce3e1-bdc9-45ec-9ce5-546de1d235d9 +19:00:46.832 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.832 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.833 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.834 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.834 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +19:00:46.834 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7fbd4113-d400-45ea-81b0-5848f0c35fe2", {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +19:00:46.834 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "038be652", {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +19:00:46.834 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +19:00:46.834 [XNIO-1 task-1] k3uB08QJRTKAbzJ8kXxRLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"038be652","serviceName":"2319fe2c-d8f5-4ee5-ac71-22013d18","serviceDesc":"7fbd4113-d400-45ea-81b0-5848f0c35fe2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +19:00:46.846 [XNIO-1 task-1] GHKUWH4sQrKS31lGuihzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:46.846 [XNIO-1 task-1] GHKUWH4sQrKS31lGuihzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.846 [XNIO-1 task-1] GHKUWH4sQrKS31lGuihzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.847 [XNIO-1 task-1] GHKUWH4sQrKS31lGuihzEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ce4e3c0 +19:00:46.850 [XNIO-1 task-1] 033mg5ykQG26qFZHjVjfng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.851 [XNIO-1 task-1] 033mg5ykQG26qFZHjVjfng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.851 [XNIO-1 task-1] 033mg5ykQG26qFZHjVjfng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.866 [XNIO-1 task-1] 0PZWX0pOSCiBO_lj8a8G8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.866 [XNIO-1 task-1] 0PZWX0pOSCiBO_lj8a8G8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.866 [XNIO-1 task-1] 0PZWX0pOSCiBO_lj8a8G8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +19:00:46.866 [XNIO-1 task-1] 0PZWX0pOSCiBO_lj8a8G8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.882 [XNIO-1 task-1] bWLfcuhcRhKQWAAplzlbKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5e30184f, base path is set to: null +19:00:46.882 [XNIO-1 task-1] bWLfcuhcRhKQWAAplzlbKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.882 [XNIO-1 task-1] bWLfcuhcRhKQWAAplzlbKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.882 [XNIO-1 task-1] bWLfcuhcRhKQWAAplzlbKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5e30184f, base path is set to: null +19:00:46.883 [XNIO-1 task-1] bWLfcuhcRhKQWAAplzlbKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5e30184f", "5e30184f", serviceId) +19:00:46.906 [XNIO-1 task-1] qRoxS-70Q7Cx9NfB5fV_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a182f3c +19:00:46.906 [XNIO-1 task-1] qRoxS-70Q7Cx9NfB5fV_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.907 [XNIO-1 task-1] qRoxS-70Q7Cx9NfB5fV_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.907 [XNIO-1 task-1] qRoxS-70Q7Cx9NfB5fV_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a182f3c +19:00:46.922 [XNIO-1 task-1] j6r7aGkOTYui-aCa7B9_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f7a1fd3, base path is set to: null +19:00:46.922 [XNIO-1 task-1] j6r7aGkOTYui-aCa7B9_Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.922 [XNIO-1 task-1] j6r7aGkOTYui-aCa7B9_Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.922 [XNIO-1 task-1] j6r7aGkOTYui-aCa7B9_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f7a1fd3, base path is set to: null +19:00:46.923 [XNIO-1 task-1] j6r7aGkOTYui-aCa7B9_Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1f7a1fd3", "1f7a1fd3", serviceId) +19:00:46.931 [XNIO-1 task-1] SQWq2DFyRh6ww428gqQqvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1f7a1fd3 +19:00:46.931 [XNIO-1 task-1] SQWq2DFyRh6ww428gqQqvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.931 [XNIO-1 task-1] SQWq2DFyRh6ww428gqQqvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +19:00:46.932 [XNIO-1 task-1] SQWq2DFyRh6ww428gqQqvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1f7a1fd3 +19:00:46.935 [XNIO-1 task-1] EWpW3D5DTDmla-sYjZGCGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f7a1fd3, base path is set to: null +19:00:46.936 [XNIO-1 task-1] EWpW3D5DTDmla-sYjZGCGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +19:00:46.936 [XNIO-1 task-1] EWpW3D5DTDmla-sYjZGCGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +19:00:46.936 [XNIO-1 task-1] EWpW3D5DTDmla-sYjZGCGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f7a1fd3, base path is set to: null +19:00:46.937 [XNIO-1 task-1] EWpW3D5DTDmla-sYjZGCGw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f7a1fd3", "1f7a1fd3", serviceId) +19:00:46.956 [XNIO-1 task-1] GAdMu3CMSCeUC4HmE2_oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.957 [XNIO-1 task-1] GAdMu3CMSCeUC4HmE2_oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.957 [XNIO-1 task-1] GAdMu3CMSCeUC4HmE2_oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +19:00:46.957 [XNIO-1 task-1] GAdMu3CMSCeUC4HmE2_oMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0f44c3b","serviceName":"9122dfb7-4c06-4fdd-8a51-aa81a978","serviceDesc":"fdf6e1a3-4644-494a-ac2b-968389330ebb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) diff --git a/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-token-1.log b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..18bebfd --- /dev/null +++ b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3743 @@ +19:00:41.422 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa7db1c +19:00:41.427 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:faa7db1c +19:00:41.429 [XNIO-1 task-3] XyKPhIt4QROTduEOeGPxPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.453 [XNIO-1 task-3] XyKPhIt4QROTduEOeGPxPg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 85dlZmguSkeLuXQg28H52A redirectUri = http://localhost:8080/authorization +19:00:41.471 [XNIO-1 task-1] W47GV0g7Q5SA9SAw3muYjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.471 [XNIO-1 task-1] W47GV0g7Q5SA9SAw3muYjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.471 [XNIO-1 task-1] W47GV0g7Q5SA9SAw3muYjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.472 [XNIO-1 task-1] W47GV0g7Q5SA9SAw3muYjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.505 [XNIO-1 task-2] QQthV8yXQjeToPKF0Rjvwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.505 [XNIO-1 task-2] QQthV8yXQjeToPKF0Rjvwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.509 [XNIO-1 task-1] W47GV0g7Q5SA9SAw3muYjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.527 [XNIO-1 task-2] QQthV8yXQjeToPKF0Rjvwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.560 [XNIO-1 task-2] QQthV8yXQjeToPKF0Rjvwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8L949DFNQjaoJult03D0Wg redirectUri = http://localhost:8080/authorization +19:00:41.606 [XNIO-1 task-1] dSWTBkuBSCWw3KDJ1yohpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.627 [XNIO-1 task-1] dSWTBkuBSCWw3KDJ1yohpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.628 [XNIO-1 task-1] dSWTBkuBSCWw3KDJ1yohpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.666 [XNIO-1 task-2] QQthV8yXQjeToPKF0Rjvwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:41.666 [XNIO-1 task-2] QQthV8yXQjeToPKF0Rjvwg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.666 [XNIO-1 task-1] dSWTBkuBSCWw3KDJ1yohpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.669 [XNIO-1 task-3] XyKPhIt4QROTduEOeGPxPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.678 [XNIO-1 task-1] dSWTBkuBSCWw3KDJ1yohpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.693 [XNIO-1 task-1] l3XMY6v1TXW2Gz-XwNsMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.694 [XNIO-1 task-1] l3XMY6v1TXW2Gz-XwNsMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.695 [XNIO-1 task-1] l3XMY6v1TXW2Gz-XwNsMsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.699 [XNIO-1 task-1] l3XMY6v1TXW2Gz-XwNsMsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.712 [XNIO-1 task-1] l3XMY6v1TXW2Gz-XwNsMsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.720 [XNIO-1 task-1] 6zrEJbKaSJSzWOvoSKg1nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.720 [XNIO-1 task-1] 6zrEJbKaSJSzWOvoSKg1nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.720 [XNIO-1 task-1] 6zrEJbKaSJSzWOvoSKg1nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.722 [XNIO-1 task-1] 6zrEJbKaSJSzWOvoSKg1nA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.728 [XNIO-1 task-1] 6zrEJbKaSJSzWOvoSKg1nA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.735 [XNIO-1 task-1] Rl7-RCAQTU2L41p6L164pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.736 [XNIO-1 task-1] Rl7-RCAQTU2L41p6L164pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.736 [XNIO-1 task-1] Rl7-RCAQTU2L41p6L164pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.737 [XNIO-1 task-1] Rl7-RCAQTU2L41p6L164pA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.741 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ce4e3c0 +19:00:41.745 [XNIO-1 task-1] Rl7-RCAQTU2L41p6L164pA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.760 [XNIO-1 task-1] pP7Od-h6Qae0MWrWzGGTgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.760 [XNIO-1 task-1] pP7Od-h6Qae0MWrWzGGTgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.761 [XNIO-1 task-1] pP7Od-h6Qae0MWrWzGGTgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.762 [XNIO-1 task-1] pP7Od-h6Qae0MWrWzGGTgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.767 [XNIO-1 task-1] pP7Od-h6Qae0MWrWzGGTgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.777 [XNIO-1 task-1] MLN6sWwaSkO5quVVE0r5Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.777 [XNIO-1 task-1] MLN6sWwaSkO5quVVE0r5Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.778 [XNIO-1 task-1] MLN6sWwaSkO5quVVE0r5Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.779 [XNIO-1 task-1] MLN6sWwaSkO5quVVE0r5Ng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.786 [XNIO-1 task-1] MLN6sWwaSkO5quVVE0r5Ng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.802 [XNIO-1 task-1] 2MTGECTMRuSOGQ5lWdHq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.802 [XNIO-1 task-1] 2MTGECTMRuSOGQ5lWdHq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.803 [XNIO-1 task-1] 2MTGECTMRuSOGQ5lWdHq0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.804 [XNIO-1 task-1] 2MTGECTMRuSOGQ5lWdHq0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.807 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8c79f7bc +19:00:41.812 [XNIO-1 task-1] 2MTGECTMRuSOGQ5lWdHq0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.820 [XNIO-1 task-1] w4V6Rwn8SQGMX17HYZzVkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.820 [XNIO-1 task-1] w4V6Rwn8SQGMX17HYZzVkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.821 [XNIO-1 task-1] w4V6Rwn8SQGMX17HYZzVkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.823 [XNIO-1 task-1] w4V6Rwn8SQGMX17HYZzVkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.834 [XNIO-1 task-1] w4V6Rwn8SQGMX17HYZzVkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.842 [XNIO-1 task-1] eNqxnueRS6-6i5bpDlfNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.842 [XNIO-1 task-1] eNqxnueRS6-6i5bpDlfNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.843 [XNIO-1 task-1] eNqxnueRS6-6i5bpDlfNdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.844 [XNIO-1 task-1] eNqxnueRS6-6i5bpDlfNdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.850 [XNIO-1 task-1] eNqxnueRS6-6i5bpDlfNdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.856 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8c79f7bc +19:00:41.856 [XNIO-1 task-1] AcHnR-yQTr-OFkahvOkxgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.856 [XNIO-1 task-1] AcHnR-yQTr-OFkahvOkxgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.857 [XNIO-1 task-1] AcHnR-yQTr-OFkahvOkxgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.860 [XNIO-1 task-1] AcHnR-yQTr-OFkahvOkxgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.865 [XNIO-1 task-1] AcHnR-yQTr-OFkahvOkxgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.872 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:053d3b38 +19:00:41.877 [XNIO-1 task-1] wHqKqqmzTsq1s8bC6HxS5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.878 [XNIO-1 task-1] wHqKqqmzTsq1s8bC6HxS5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:41.878 [XNIO-1 task-1] wHqKqqmzTsq1s8bC6HxS5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.879 [XNIO-1 task-1] wHqKqqmzTsq1s8bC6HxS5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:41.884 [XNIO-1 task-1] wHqKqqmzTsq1s8bC6HxS5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:41.895 [XNIO-1 task-1] 1QlUkHYrQqGUYjULhNvx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.895 [XNIO-1 task-1] 1QlUkHYrQqGUYjULhNvx9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:41.895 [XNIO-1 task-1] 1QlUkHYrQqGUYjULhNvx9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.896 [XNIO-1 task-1] 1QlUkHYrQqGUYjULhNvx9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", authorization) +19:00:41.902 [XNIO-1 task-1] 1QlUkHYrQqGUYjULhNvx9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:41.908 [XNIO-1 task-1] 97zP-QmYTwKHF0voESr67Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.908 [XNIO-1 task-1] 97zP-QmYTwKHF0voESr67Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:41.909 [XNIO-1 task-1] 97zP-QmYTwKHF0voESr67Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.909 [XNIO-1 task-1] 97zP-QmYTwKHF0voESr67Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", authorization) +19:00:41.914 [XNIO-1 task-1] 97zP-QmYTwKHF0voESr67Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:41.920 [XNIO-1 task-1] 4ETbSfSUQfajPeNCn2FCjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.920 [XNIO-1 task-1] 4ETbSfSUQfajPeNCn2FCjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:41.921 [XNIO-1 task-1] 4ETbSfSUQfajPeNCn2FCjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.921 [XNIO-1 task-1] 4ETbSfSUQfajPeNCn2FCjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", authorization) +19:00:41.926 [XNIO-1 task-1] 4ETbSfSUQfajPeNCn2FCjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:41.929 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8c79f7bc +19:00:41.935 [XNIO-1 task-1] y16G-GqfT7eCPenpGX5FyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.935 [XNIO-1 task-1] y16G-GqfT7eCPenpGX5FyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:41.936 [XNIO-1 task-1] y16G-GqfT7eCPenpGX5FyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.936 [XNIO-1 task-1] y16G-GqfT7eCPenpGX5FyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", authorization) +19:00:41.941 [XNIO-1 task-1] y16G-GqfT7eCPenpGX5FyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:41.941 [XNIO-1 task-2] kfAnAjYiRwCohV4_BVYnBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.941 [XNIO-1 task-2] kfAnAjYiRwCohV4_BVYnBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:41.942 [XNIO-1 task-2] kfAnAjYiRwCohV4_BVYnBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.943 [XNIO-1 task-2] kfAnAjYiRwCohV4_BVYnBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:41.951 [XNIO-1 task-1] jEo3pl1YSia4-6wGi5_Z_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.951 [XNIO-1 task-1] jEo3pl1YSia4-6wGi5_Z_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:41.952 [XNIO-1 task-1] jEo3pl1YSia4-6wGi5_Z_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:41.953 [XNIO-1 task-1] jEo3pl1YSia4-6wGi5_Z_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", "Basic ZjkyNzhiYWItYzUzZS00OTkzLTk1ZWYtOThlZTk3MDQ3ZmI5OlpQNGVkOVFMU0d1OElJLUJhQkd4aHc=", authorization) +19:00:41.958 [XNIO-1 task-1] jEo3pl1YSia4-6wGi5_Z_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:41.963 [XNIO-1 task-2] kfAnAjYiRwCohV4_BVYnBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:41.963 [XNIO-1 task-2] kfAnAjYiRwCohV4_BVYnBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.964 [XNIO-1 task-1] ytFLDqpxQSC-ftg9Io_89Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.964 [XNIO-1 task-1] ytFLDqpxQSC-ftg9Io_89Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.964 [XNIO-1 task-1] ytFLDqpxQSC-ftg9Io_89Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.966 [XNIO-1 task-1] ytFLDqpxQSC-ftg9Io_89Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:41.972 [XNIO-1 task-1] ytFLDqpxQSC-ftg9Io_89Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:41.981 [XNIO-1 task-2] DOiMtOmTTTC59GEaC9GiPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.981 [XNIO-1 task-2] DOiMtOmTTTC59GEaC9GiPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.985 [XNIO-1 task-1] 3arWjQ4bQ2yC2Ht4t1oDuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.985 [XNIO-1 task-1] 3arWjQ4bQ2yC2Ht4t1oDuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.986 [XNIO-1 task-3] RFgLHqcJRbmwHItGw5UqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.986 [XNIO-1 task-3] RFgLHqcJRbmwHItGw5UqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.987 [XNIO-1 task-2] DOiMtOmTTTC59GEaC9GiPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.987 [XNIO-1 task-3] RFgLHqcJRbmwHItGw5UqlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.987 [XNIO-1 task-2] DOiMtOmTTTC59GEaC9GiPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:41.988 [XNIO-1 task-3] RFgLHqcJRbmwHItGw5UqlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c90530f2-272e-4912-9742-e299a3ffebfe scope = null +19:00:41.989 [XNIO-1 task-1] 3arWjQ4bQ2yC2Ht4t1oDuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:41.990 [XNIO-1 task-1] 3arWjQ4bQ2yC2Ht4t1oDuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = N5fyH3xZQzG9Y24r00yY7A redirectUri = http://localhost:8080/authorization +19:00:42.033 [XNIO-1 task-2] DOiMtOmTTTC59GEaC9GiPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.036 [XNIO-1 task-1] 3arWjQ4bQ2yC2Ht4t1oDuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.043 [XNIO-1 task-3] RFgLHqcJRbmwHItGw5UqlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.076 [XNIO-1 task-2] VEcxPd9PSEuRBKs4hTG9yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.076 [XNIO-1 task-2] VEcxPd9PSEuRBKs4hTG9yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.077 [XNIO-1 task-2] VEcxPd9PSEuRBKs4hTG9yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.078 [XNIO-1 task-2] VEcxPd9PSEuRBKs4hTG9yA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.091 [XNIO-1 task-2] VEcxPd9PSEuRBKs4hTG9yA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.098 [XNIO-1 task-2] SwqwigJIQe-vt13OGbPJCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.098 [XNIO-1 task-2] SwqwigJIQe-vt13OGbPJCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.099 [XNIO-1 task-2] SwqwigJIQe-vt13OGbPJCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.099 [XNIO-1 task-2] SwqwigJIQe-vt13OGbPJCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.102 [XNIO-1 task-3] jGqkttnvQHGda6-1IUjZ6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.102 [XNIO-1 task-3] jGqkttnvQHGda6-1IUjZ6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.102 [XNIO-1 task-3] jGqkttnvQHGda6-1IUjZ6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.103 [XNIO-1 task-3] jGqkttnvQHGda6-1IUjZ6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:42.108 [XNIO-1 task-1] Irh9iexbQk25Rt5Mq93QkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.109 [XNIO-1 task-1] Irh9iexbQk25Rt5Mq93QkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.109 [XNIO-1 task-1] Irh9iexbQk25Rt5Mq93QkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.110 [XNIO-1 task-1] Irh9iexbQk25Rt5Mq93QkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:42.116 [XNIO-1 task-2] SwqwigJIQe-vt13OGbPJCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.117 [XNIO-1 task-1] Irh9iexbQk25Rt5Mq93QkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:42.117 [XNIO-1 task-1] Irh9iexbQk25Rt5Mq93QkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.122 [XNIO-1 task-2] qyv-Oj1gT16gyXhyzOTQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.123 [XNIO-1 task-2] qyv-Oj1gT16gyXhyzOTQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.123 [XNIO-1 task-2] qyv-Oj1gT16gyXhyzOTQoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.124 [XNIO-1 task-2] qyv-Oj1gT16gyXhyzOTQoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.129 [XNIO-1 task-2] qyv-Oj1gT16gyXhyzOTQoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.141 [XNIO-1 task-2] tpxwMBFwQSW1gn9WAhkaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.141 [XNIO-1 task-2] tpxwMBFwQSW1gn9WAhkaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.141 [XNIO-1 task-2] tpxwMBFwQSW1gn9WAhkaRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.142 [XNIO-1 task-2] tpxwMBFwQSW1gn9WAhkaRQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.147 [XNIO-1 task-2] tpxwMBFwQSW1gn9WAhkaRQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.156 [XNIO-1 task-2] p4J4yZcUTDKaJ24wuxdy2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.156 [XNIO-1 task-2] p4J4yZcUTDKaJ24wuxdy2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.157 [XNIO-1 task-2] p4J4yZcUTDKaJ24wuxdy2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.157 [XNIO-1 task-2] p4J4yZcUTDKaJ24wuxdy2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.162 [XNIO-1 task-2] p4J4yZcUTDKaJ24wuxdy2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.175 [XNIO-1 task-2] KaAvbwA3QOGunrQCV-EY3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.175 [XNIO-1 task-2] KaAvbwA3QOGunrQCV-EY3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.176 [XNIO-1 task-2] KaAvbwA3QOGunrQCV-EY3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.176 [XNIO-1 task-2] KaAvbwA3QOGunrQCV-EY3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.189 [XNIO-1 task-2] KaAvbwA3QOGunrQCV-EY3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.190 [XNIO-1 task-3] jGqkttnvQHGda6-1IUjZ6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.195 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e848d520-0a41-4f70-8805-06c0d4e2ad84 +19:00:42.199 [XNIO-1 task-2] lDobQwxyQZqEsmPGeTSs4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.200 [XNIO-1 task-2] lDobQwxyQZqEsmPGeTSs4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.200 [XNIO-1 task-2] lDobQwxyQZqEsmPGeTSs4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.201 [XNIO-1 task-2] lDobQwxyQZqEsmPGeTSs4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.207 [XNIO-1 task-2] lDobQwxyQZqEsmPGeTSs4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.214 [XNIO-1 task-2] ryJs4yh3QkG0xpOiFB_K1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.214 [XNIO-1 task-2] ryJs4yh3QkG0xpOiFB_K1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.215 [XNIO-1 task-2] ryJs4yh3QkG0xpOiFB_K1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.216 [XNIO-1 task-2] ryJs4yh3QkG0xpOiFB_K1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.224 [XNIO-1 task-2] ryJs4yh3QkG0xpOiFB_K1A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.234 [XNIO-1 task-2] cWN8JEO6S_erhjttGT0BgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.234 [XNIO-1 task-2] cWN8JEO6S_erhjttGT0BgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.237 [XNIO-1 task-2] cWN8JEO6S_erhjttGT0BgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.238 [XNIO-1 task-2] cWN8JEO6S_erhjttGT0BgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.243 [XNIO-1 task-2] cWN8JEO6S_erhjttGT0BgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.248 [XNIO-1 task-2] LgipIyE1Tx6mfVa5gTWrdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.248 [XNIO-1 task-2] LgipIyE1Tx6mfVa5gTWrdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.249 [XNIO-1 task-2] LgipIyE1Tx6mfVa5gTWrdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.249 [XNIO-1 task-2] LgipIyE1Tx6mfVa5gTWrdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.255 [XNIO-1 task-2] LgipIyE1Tx6mfVa5gTWrdQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.261 [XNIO-1 task-2] ulYjRehLS9agjAoxQPhrNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.261 [XNIO-1 task-2] ulYjRehLS9agjAoxQPhrNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.261 [XNIO-1 task-2] ulYjRehLS9agjAoxQPhrNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.262 [XNIO-1 task-2] ulYjRehLS9agjAoxQPhrNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.271 [XNIO-1 task-2] ulYjRehLS9agjAoxQPhrNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.284 [XNIO-1 task-2] d2fiD0WFRDS6YC5Rv26lag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.285 [XNIO-1 task-2] d2fiD0WFRDS6YC5Rv26lag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.286 [XNIO-1 task-2] d2fiD0WFRDS6YC5Rv26lag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.286 [XNIO-1 task-2] d2fiD0WFRDS6YC5Rv26lag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:42.293 [XNIO-1 task-2] d2fiD0WFRDS6YC5Rv26lag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.294 [XNIO-1 task-3] Y9Uu5l1ORL2eP5FSyy0TrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.295 [XNIO-1 task-3] Y9Uu5l1ORL2eP5FSyy0TrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.295 [XNIO-1 task-3] Y9Uu5l1ORL2eP5FSyy0TrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.296 [XNIO-1 task-3] Y9Uu5l1ORL2eP5FSyy0TrA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:42.309 [XNIO-1 task-3] Y9Uu5l1ORL2eP5FSyy0TrA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:42.309 [XNIO-1 task-3] Y9Uu5l1ORL2eP5FSyy0TrA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.311 [XNIO-1 task-1] AE5N57E0SXG4sgVlX2v_FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.311 [XNIO-1 task-3] Y9Uu5l1ORL2eP5FSyy0TrA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.312 [XNIO-1 task-2] HQ2NxgTJQLChIqabKqMKaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.312 [XNIO-1 task-2] HQ2NxgTJQLChIqabKqMKaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.312 [XNIO-1 task-1] AE5N57E0SXG4sgVlX2v_FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.312 [XNIO-1 task-2] HQ2NxgTJQLChIqabKqMKaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.313 [XNIO-1 task-2] HQ2NxgTJQLChIqabKqMKaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:42.313 [XNIO-1 task-1] AE5N57E0SXG4sgVlX2v_FQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.320 [XNIO-1 task-2] HQ2NxgTJQLChIqabKqMKaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.323 [XNIO-1 task-1] AE5N57E0SXG4sgVlX2v_FQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.328 [XNIO-1 task-1] ubCPq_mwSaGHxLsZNQobPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.328 [XNIO-1 task-1] ubCPq_mwSaGHxLsZNQobPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.329 [XNIO-1 task-1] ubCPq_mwSaGHxLsZNQobPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.330 [XNIO-1 task-1] ubCPq_mwSaGHxLsZNQobPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:42.330 [XNIO-1 task-1] ubCPq_mwSaGHxLsZNQobPA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0cRGL0vjT9egFK9-2UUqkA redirectUri = http://localhost:8080/authorization +19:00:42.330 [XNIO-1 task-3] tcx7GoVbTCS067wsVdt0VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.330 [XNIO-1 task-3] tcx7GoVbTCS067wsVdt0VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.331 [XNIO-1 task-3] tcx7GoVbTCS067wsVdt0VA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.338 [XNIO-1 task-3] tcx7GoVbTCS067wsVdt0VA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.338 [XNIO-1 task-3] tcx7GoVbTCS067wsVdt0VA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.338 [XNIO-1 task-1] ubCPq_mwSaGHxLsZNQobPA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.346 [XNIO-1 task-2] oAVZkz0JRzSFJdVx0GRLBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.346 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:053d3b38 +19:00:42.346 [XNIO-1 task-2] oAVZkz0JRzSFJdVx0GRLBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.347 [XNIO-1 task-2] oAVZkz0JRzSFJdVx0GRLBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.348 [XNIO-1 task-2] oAVZkz0JRzSFJdVx0GRLBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.354 [XNIO-1 task-2] oAVZkz0JRzSFJdVx0GRLBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.360 [XNIO-1 task-2] 9OXYltLgTfirWD7N_m5T8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.360 [XNIO-1 task-2] 9OXYltLgTfirWD7N_m5T8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.361 [XNIO-1 task-2] 9OXYltLgTfirWD7N_m5T8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.362 [XNIO-1 task-2] 9OXYltLgTfirWD7N_m5T8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.368 [XNIO-1 task-2] 9OXYltLgTfirWD7N_m5T8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.375 [XNIO-1 task-2] bk5z3GyzQBOA_AWCcpeW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.375 [XNIO-1 task-2] bk5z3GyzQBOA_AWCcpeW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.375 [XNIO-1 task-2] bk5z3GyzQBOA_AWCcpeW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.376 [XNIO-1 task-2] bk5z3GyzQBOA_AWCcpeW7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.386 [XNIO-1 task-1] HZ0mmWE2Q0yf8rhrLHiXfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.386 [XNIO-1 task-1] HZ0mmWE2Q0yf8rhrLHiXfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.387 [XNIO-1 task-1] HZ0mmWE2Q0yf8rhrLHiXfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.387 [XNIO-1 task-2] bk5z3GyzQBOA_AWCcpeW7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.388 [XNIO-1 task-1] HZ0mmWE2Q0yf8rhrLHiXfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZChVgTWTQ7K3JBnihTCMow redirectUri = http://localhost:8080/authorization +19:00:42.395 [XNIO-1 task-2] YaL9ggXrTKed6QmhQ36URA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.395 [XNIO-1 task-2] YaL9ggXrTKed6QmhQ36URA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.395 [XNIO-1 task-2] YaL9ggXrTKed6QmhQ36URA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.404 [XNIO-1 task-2] YaL9ggXrTKed6QmhQ36URA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.405 [XNIO-1 task-1] HZ0mmWE2Q0yf8rhrLHiXfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.411 [XNIO-1 task-2] YaL9ggXrTKed6QmhQ36URA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.419 [XNIO-1 task-2] XzdEzLNZQJW9EdoXQH2OSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.419 [XNIO-1 task-2] XzdEzLNZQJW9EdoXQH2OSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.419 [XNIO-1 task-2] XzdEzLNZQJW9EdoXQH2OSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.420 [XNIO-1 task-2] XzdEzLNZQJW9EdoXQH2OSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:42.429 [XNIO-1 task-2] XzdEzLNZQJW9EdoXQH2OSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.431 [XNIO-1 task-1] pzA7aEUlQEWTSop8JI30QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.431 [XNIO-1 task-1] pzA7aEUlQEWTSop8JI30QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.432 [XNIO-1 task-1] pzA7aEUlQEWTSop8JI30QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.433 [XNIO-1 task-1] pzA7aEUlQEWTSop8JI30QA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:42.435 [XNIO-1 task-2] N2YTVFDVRk-QlOplY3HMpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.436 [XNIO-1 task-2] N2YTVFDVRk-QlOplY3HMpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.436 [XNIO-1 task-2] N2YTVFDVRk-QlOplY3HMpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.437 [XNIO-1 task-2] N2YTVFDVRk-QlOplY3HMpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", "Basic Y2ZmNWE5MDUtM2U2NS00ZmRhLWI3ZWYtNWU1OWZkNTcxNjc5OmNvMWs4SGxVUlBxZEtEaG5aLWJna1E=", authorization) +19:00:42.441 [XNIO-1 task-1] pzA7aEUlQEWTSop8JI30QA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:42.442 [XNIO-1 task-2] N2YTVFDVRk-QlOplY3HMpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.443 [XNIO-1 task-1] pzA7aEUlQEWTSop8JI30QA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.449 [XNIO-1 task-2] sfCnOi6nTGGbTJ8F1Bwiww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.449 [XNIO-1 task-2] sfCnOi6nTGGbTJ8F1Bwiww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.450 [XNIO-1 task-2] sfCnOi6nTGGbTJ8F1Bwiww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.451 [XNIO-1 task-2] sfCnOi6nTGGbTJ8F1Bwiww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.453 [XNIO-1 task-3] rqt8bdSXQE2EkIfP2HNGhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.453 [XNIO-1 task-3] rqt8bdSXQE2EkIfP2HNGhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.453 [XNIO-1 task-3] rqt8bdSXQE2EkIfP2HNGhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.454 [XNIO-1 task-3] rqt8bdSXQE2EkIfP2HNGhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1Hfc7cq5SBKBF9m0ibY31w redirectUri = http://localhost:8080/authorization +19:00:42.456 [XNIO-1 task-2] sfCnOi6nTGGbTJ8F1Bwiww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.461 [XNIO-1 task-2] XIraPmLETSCvttCrS-kT-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.461 [XNIO-1 task-2] XIraPmLETSCvttCrS-kT-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.462 [XNIO-1 task-2] XIraPmLETSCvttCrS-kT-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.462 [XNIO-1 task-2] XIraPmLETSCvttCrS-kT-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.468 [XNIO-1 task-2] XIraPmLETSCvttCrS-kT-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.472 [XNIO-1 task-2] znaP1CqrQP6RKxuFSMeLFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.473 [XNIO-1 task-2] znaP1CqrQP6RKxuFSMeLFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.473 [XNIO-1 task-2] znaP1CqrQP6RKxuFSMeLFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.474 [XNIO-1 task-2] znaP1CqrQP6RKxuFSMeLFw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.479 [XNIO-1 task-2] znaP1CqrQP6RKxuFSMeLFw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.487 [XNIO-1 task-3] rqt8bdSXQE2EkIfP2HNGhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:42.487 [XNIO-1 task-3] rqt8bdSXQE2EkIfP2HNGhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.487 [XNIO-1 task-3] rqt8bdSXQE2EkIfP2HNGhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.488 [XNIO-1 task-2] H8sJAmiwRnujBiTdSJLE5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.488 [XNIO-1 task-2] H8sJAmiwRnujBiTdSJLE5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:42.491 [XNIO-1 task-1] zR-c7pqXTmqv2pNpONnUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.492 [XNIO-1 task-1] zR-c7pqXTmqv2pNpONnUNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.492 [XNIO-1 task-1] zR-c7pqXTmqv2pNpONnUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.492 [XNIO-1 task-1] zR-c7pqXTmqv2pNpONnUNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:42.494 [XNIO-1 task-2] H8sJAmiwRnujBiTdSJLE5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.497 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:053d3b38 +19:00:42.503 [XNIO-1 task-3] -DauV2HZQyK9_jO8BDXRUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.503 [XNIO-1 task-3] -DauV2HZQyK9_jO8BDXRUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.504 [XNIO-1 task-3] -DauV2HZQyK9_jO8BDXRUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.504 [XNIO-1 task-3] -DauV2HZQyK9_jO8BDXRUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:42.507 [XNIO-1 task-1] zR-c7pqXTmqv2pNpONnUNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.509 [XNIO-1 task-3] -DauV2HZQyK9_jO8BDXRUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.516 [XNIO-1 task-3] XSTFnJ4JQM2mAky3Ymn5iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.517 [XNIO-1 task-3] XSTFnJ4JQM2mAky3Ymn5iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.517 [XNIO-1 task-3] XSTFnJ4JQM2mAky3Ymn5iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.518 [XNIO-1 task-3] XSTFnJ4JQM2mAky3Ymn5iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:42.519 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:faa7db1c +19:00:42.523 [XNIO-1 task-3] XSTFnJ4JQM2mAky3Ymn5iQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.529 [XNIO-1 task-3] lQym5ithSFO_dxsgLhgz1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.529 [XNIO-1 task-3] lQym5ithSFO_dxsgLhgz1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.530 [XNIO-1 task-3] lQym5ithSFO_dxsgLhgz1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.530 [XNIO-1 task-3] lQym5ithSFO_dxsgLhgz1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:42.531 [XNIO-1 task-1] k41fgELTScqcV1QmSCV8PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.531 [XNIO-1 task-1] k41fgELTScqcV1QmSCV8PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.532 [XNIO-1 task-1] k41fgELTScqcV1QmSCV8PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.532 [XNIO-1 task-1] k41fgELTScqcV1QmSCV8PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:42.535 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c24350f4 +19:00:42.539 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c24350f4 +19:00:42.539 [XNIO-1 task-1] k41fgELTScqcV1QmSCV8PQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.564 [XNIO-1 task-3] lQym5ithSFO_dxsgLhgz1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.572 [XNIO-1 task-1] lTe2ODm2ScOInb_VCBXUig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.573 [XNIO-1 task-1] lTe2ODm2ScOInb_VCBXUig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.575 [XNIO-1 task-1] lTe2ODm2ScOInb_VCBXUig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.578 [XNIO-1 task-1] lTe2ODm2ScOInb_VCBXUig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.583 [XNIO-1 task-1] lTe2ODm2ScOInb_VCBXUig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.599 [XNIO-1 task-1] 6-YSzAItQ9qfnb4rM7vs6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.599 [XNIO-1 task-1] 6-YSzAItQ9qfnb4rM7vs6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.599 [XNIO-1 task-1] 6-YSzAItQ9qfnb4rM7vs6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.600 [XNIO-1 task-1] 6-YSzAItQ9qfnb4rM7vs6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.605 [XNIO-1 task-1] 6-YSzAItQ9qfnb4rM7vs6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.612 [XNIO-1 task-1] NtHtv0FSRjuNIWr2SYIEKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.612 [XNIO-1 task-1] NtHtv0FSRjuNIWr2SYIEKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.612 [XNIO-1 task-1] NtHtv0FSRjuNIWr2SYIEKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.613 [XNIO-1 task-1] NtHtv0FSRjuNIWr2SYIEKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.619 [XNIO-1 task-1] NtHtv0FSRjuNIWr2SYIEKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.624 [XNIO-1 task-1] x9hVb8VASc668n_13Fqllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.624 [XNIO-1 task-1] x9hVb8VASc668n_13Fqllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.624 [XNIO-1 task-1] x9hVb8VASc668n_13Fqllw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.625 [XNIO-1 task-1] x9hVb8VASc668n_13Fqllw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.630 [XNIO-1 task-1] x9hVb8VASc668n_13Fqllw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.635 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c24350f4 +19:00:42.635 [XNIO-1 task-1] mKNIMIjHQke7t26-1RuNpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.636 [XNIO-1 task-1] mKNIMIjHQke7t26-1RuNpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.636 [XNIO-1 task-1] mKNIMIjHQke7t26-1RuNpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.637 [XNIO-1 task-1] mKNIMIjHQke7t26-1RuNpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.643 [XNIO-1 task-1] mKNIMIjHQke7t26-1RuNpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.654 [XNIO-1 task-1] iiHXUhgeQfqL3Lu4MlQrtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.655 [XNIO-1 task-1] iiHXUhgeQfqL3Lu4MlQrtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.655 [XNIO-1 task-1] iiHXUhgeQfqL3Lu4MlQrtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.656 [XNIO-1 task-1] iiHXUhgeQfqL3Lu4MlQrtw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.665 [XNIO-1 task-1] iiHXUhgeQfqL3Lu4MlQrtw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.671 [XNIO-1 task-1] szX-WPeOQkCRbHG5EzDB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.671 [XNIO-1 task-1] szX-WPeOQkCRbHG5EzDB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.671 [XNIO-1 task-1] szX-WPeOQkCRbHG5EzDB8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.672 [XNIO-1 task-1] szX-WPeOQkCRbHG5EzDB8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.677 [XNIO-1 task-1] szX-WPeOQkCRbHG5EzDB8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.683 [XNIO-1 task-1] iva4gPYeRmePQCtuNb0FQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.683 [XNIO-1 task-1] iva4gPYeRmePQCtuNb0FQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.684 [XNIO-1 task-1] iva4gPYeRmePQCtuNb0FQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.685 [XNIO-1 task-1] iva4gPYeRmePQCtuNb0FQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.690 [XNIO-1 task-1] iva4gPYeRmePQCtuNb0FQg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.695 [XNIO-1 task-1] 8--MKtd-Tl6Ib9IvZO4k_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.695 [XNIO-1 task-1] 8--MKtd-Tl6Ib9IvZO4k_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.696 [XNIO-1 task-1] 8--MKtd-Tl6Ib9IvZO4k_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.697 [XNIO-1 task-1] 8--MKtd-Tl6Ib9IvZO4k_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.703 [XNIO-1 task-1] 8--MKtd-Tl6Ib9IvZO4k_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.704 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:50bbf43e +19:00:42.709 [XNIO-1 task-1] ilp61FeYTwCrPtWR7JSQlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.710 [XNIO-1 task-1] ilp61FeYTwCrPtWR7JSQlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.710 [XNIO-1 task-1] ilp61FeYTwCrPtWR7JSQlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.711 [XNIO-1 task-1] ilp61FeYTwCrPtWR7JSQlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:42.717 [XNIO-1 task-1] ilp61FeYTwCrPtWR7JSQlw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.720 [XNIO-1 task-3] 0F0SIZEjTaOyV55__XbnRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.720 [XNIO-1 task-3] 0F0SIZEjTaOyV55__XbnRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.720 [XNIO-1 task-3] 0F0SIZEjTaOyV55__XbnRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.721 [XNIO-1 task-3] 0F0SIZEjTaOyV55__XbnRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:42.732 [XNIO-1 task-3] 0F0SIZEjTaOyV55__XbnRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:42.733 [XNIO-1 task-3] 0F0SIZEjTaOyV55__XbnRg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.752 [XNIO-1 task-1] BFEWneU-TcS8xSuWhAIs0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.752 [XNIO-1 task-1] BFEWneU-TcS8xSuWhAIs0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.753 [XNIO-1 task-1] BFEWneU-TcS8xSuWhAIs0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.753 [XNIO-1 task-1] BFEWneU-TcS8xSuWhAIs0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.759 [XNIO-1 task-1] BFEWneU-TcS8xSuWhAIs0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.768 [XNIO-1 task-1] sin8lkbCSp2ukROQeRmNpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.770 [XNIO-1 task-1] sin8lkbCSp2ukROQeRmNpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.770 [XNIO-1 task-1] sin8lkbCSp2ukROQeRmNpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.771 [XNIO-1 task-1] sin8lkbCSp2ukROQeRmNpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.774 [XNIO-1 task-3] 1GJ-_iL4R4qHzOckcRAWeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.774 [XNIO-1 task-3] 1GJ-_iL4R4qHzOckcRAWeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.774 [XNIO-1 task-3] 1GJ-_iL4R4qHzOckcRAWeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.775 [XNIO-1 task-3] 1GJ-_iL4R4qHzOckcRAWeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = kg1FO3e_St6bb-1AAANd1A redirectUri = http://localhost:8080/authorization +19:00:42.776 [XNIO-1 task-1] sin8lkbCSp2ukROQeRmNpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.783 [XNIO-1 task-3] 1GJ-_iL4R4qHzOckcRAWeQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.789 [XNIO-1 task-1] srIxlFTkRCCCcb-pUAT-2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.790 [XNIO-1 task-1] srIxlFTkRCCCcb-pUAT-2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.790 [XNIO-1 task-1] srIxlFTkRCCCcb-pUAT-2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.793 [XNIO-1 task-1] srIxlFTkRCCCcb-pUAT-2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:42.803 [XNIO-1 task-1] srIxlFTkRCCCcb-pUAT-2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.815 [XNIO-1 task-1] jZYxY58ZSiCO32D3PxbohQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.816 [XNIO-1 task-1] jZYxY58ZSiCO32D3PxbohQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.816 [XNIO-1 task-1] jZYxY58ZSiCO32D3PxbohQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.817 [XNIO-1 task-3] Wn7QQu_sQkyDenfsoxJXmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.817 [XNIO-1 task-3] Wn7QQu_sQkyDenfsoxJXmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.818 [XNIO-1 task-3] Wn7QQu_sQkyDenfsoxJXmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.819 [XNIO-1 task-3] Wn7QQu_sQkyDenfsoxJXmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:42.824 [XNIO-1 task-1] jZYxY58ZSiCO32D3PxbohQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:42.826 [XNIO-1 task-3] Wn7QQu_sQkyDenfsoxJXmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:42.826 [XNIO-1 task-3] Wn7QQu_sQkyDenfsoxJXmQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.833 [XNIO-1 task-1] jZYxY58ZSiCO32D3PxbohQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.837 [XNIO-1 task-1] ZpIE_OB5SUujIhb6oPvCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.837 [XNIO-1 task-1] ZpIE_OB5SUujIhb6oPvCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.838 [XNIO-1 task-1] ZpIE_OB5SUujIhb6oPvCFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.838 [XNIO-1 task-1] ZpIE_OB5SUujIhb6oPvCFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5b3d5ca4-6160-4592-9795-fa9548302704 scope = null +19:00:42.838 [XNIO-1 task-3] edsynldDS1eosPSSvb6TZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.839 [XNIO-1 task-3] edsynldDS1eosPSSvb6TZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.839 [XNIO-1 task-3] edsynldDS1eosPSSvb6TZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.839 [XNIO-1 task-3] edsynldDS1eosPSSvb6TZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.844 [XNIO-1 task-3] edsynldDS1eosPSSvb6TZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.850 [XNIO-1 task-3] ClEtAFdqTfaeIyafJTInWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.850 [XNIO-1 task-3] ClEtAFdqTfaeIyafJTInWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.851 [XNIO-1 task-3] ClEtAFdqTfaeIyafJTInWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.851 [XNIO-1 task-3] ClEtAFdqTfaeIyafJTInWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.856 [XNIO-1 task-1] ZpIE_OB5SUujIhb6oPvCFg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.861 [XNIO-1 task-3] ClEtAFdqTfaeIyafJTInWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.869 [XNIO-1 task-3] 2Ftc6_3HQP-B6VuPn_CtZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.870 [XNIO-1 task-3] 2Ftc6_3HQP-B6VuPn_CtZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.870 [XNIO-1 task-3] 2Ftc6_3HQP-B6VuPn_CtZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.871 [XNIO-1 task-3] 2Ftc6_3HQP-B6VuPn_CtZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.876 [XNIO-1 task-3] 2Ftc6_3HQP-B6VuPn_CtZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.883 [XNIO-1 task-3] rzg0y5_2SSiF-cgvr3q-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.884 [XNIO-1 task-3] rzg0y5_2SSiF-cgvr3q-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.884 [XNIO-1 task-3] rzg0y5_2SSiF-cgvr3q-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.885 [XNIO-1 task-3] rzg0y5_2SSiF-cgvr3q-kA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jO-4ZLyLR4uqMTUDX8Hz0A redirectUri = http://localhost:8080/authorization +19:00:42.887 [XNIO-1 task-1] 3RFLxnttQoeGEpSboXPHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.887 [XNIO-1 task-1] 3RFLxnttQoeGEpSboXPHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.888 [XNIO-1 task-1] 3RFLxnttQoeGEpSboXPHtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.889 [XNIO-1 task-1] 3RFLxnttQoeGEpSboXPHtw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.898 [XNIO-1 task-1] 3RFLxnttQoeGEpSboXPHtw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.901 [XNIO-1 task-2] 6r1MTMy0Rq2w80You7i9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.901 [XNIO-1 task-2] 6r1MTMy0Rq2w80You7i9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.901 [XNIO-1 task-2] 6r1MTMy0Rq2w80You7i9ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.902 [XNIO-1 task-2] 6r1MTMy0Rq2w80You7i9ZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _l2J10pDQ-m61FQMd0WXAg redirectUri = http://localhost:8080/authorization +19:00:42.904 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ce4e3c0 +19:00:42.910 [XNIO-1 task-1] mRaJZvEZSZae6-LMMRfBiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.910 [XNIO-1 task-1] mRaJZvEZSZae6-LMMRfBiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.911 [XNIO-1 task-1] mRaJZvEZSZae6-LMMRfBiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.911 [XNIO-1 task-1] mRaJZvEZSZae6-LMMRfBiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.912 [XNIO-1 task-3] rzg0y5_2SSiF-cgvr3q-kA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.915 [XNIO-1 task-2] 6r1MTMy0Rq2w80You7i9ZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:42.916 [XNIO-1 task-2] 6r1MTMy0Rq2w80You7i9ZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.919 [XNIO-1 task-1] mRaJZvEZSZae6-LMMRfBiQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.926 [XNIO-1 task-1] 6HPUdLoLS7SoSkyz6Aoq9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.926 [XNIO-1 task-1] 6HPUdLoLS7SoSkyz6Aoq9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.927 [XNIO-1 task-1] 6HPUdLoLS7SoSkyz6Aoq9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.927 [XNIO-1 task-1] 6HPUdLoLS7SoSkyz6Aoq9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.943 [XNIO-1 task-1] 6HPUdLoLS7SoSkyz6Aoq9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.952 [XNIO-1 task-3] z-YYw1o1QxmRRX5FKKmyfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.953 [XNIO-1 task-3] z-YYw1o1QxmRRX5FKKmyfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.953 [XNIO-1 task-1] QQy5WB4XQx24XuYjuY0tHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.953 [XNIO-1 task-3] z-YYw1o1QxmRRX5FKKmyfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.954 [XNIO-1 task-3] z-YYw1o1QxmRRX5FKKmyfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:42.954 [XNIO-1 task-1] QQy5WB4XQx24XuYjuY0tHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.955 [XNIO-1 task-3] z-YYw1o1QxmRRX5FKKmyfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:42.955 [XNIO-1 task-1] QQy5WB4XQx24XuYjuY0tHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = rMk8G-EwTxumdzhZ1QJldQ redirectUri = http://localhost:8080/authorization +19:00:42.962 [XNIO-1 task-3] z-YYw1o1QxmRRX5FKKmyfA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:42.967 [XNIO-1 task-1] QQy5WB4XQx24XuYjuY0tHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.971 [XNIO-1 task-3] q0fvleA9RDuwfOlMVpNBmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.972 [XNIO-1 task-3] q0fvleA9RDuwfOlMVpNBmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.972 [XNIO-1 task-3] q0fvleA9RDuwfOlMVpNBmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.973 [XNIO-1 task-3] q0fvleA9RDuwfOlMVpNBmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Zjc2NTNhNWMtNDQ0ZC00NTc4LWEzNzEtOWJkMzgxMzBjMGZkOkFzTWpSOWh6U015V1ZEMG5PNlZJaUE=", "Basic Zjc2NTNhNWMtNDQ0ZC00NTc4LWEzNzEtOWJkMzgxMzBjMGZkOkFzTWpSOWh6U015V1ZEMG5PNlZJaUE=", authorization) +19:00:42.975 [XNIO-1 task-2] BqXk0hBARwGzBK7-6C2a5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.977 [XNIO-1 task-2] BqXk0hBARwGzBK7-6C2a5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.978 [XNIO-1 task-2] BqXk0hBARwGzBK7-6C2a5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.980 [XNIO-1 task-2] BqXk0hBARwGzBK7-6C2a5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:42.981 [XNIO-1 task-3] q0fvleA9RDuwfOlMVpNBmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:42.989 [XNIO-1 task-3] Efq8teLzQcaUZ88Rh2wuGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.989 [XNIO-1 task-3] Efq8teLzQcaUZ88Rh2wuGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:42.990 [XNIO-1 task-3] Efq8teLzQcaUZ88Rh2wuGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:42.991 [XNIO-1 task-3] Efq8teLzQcaUZ88Rh2wuGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", authorization) +19:00:42.997 [XNIO-1 task-3] Efq8teLzQcaUZ88Rh2wuGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.000 [XNIO-1 task-2] BqXk0hBARwGzBK7-6C2a5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:43.002 [XNIO-1 task-2] BqXk0hBARwGzBK7-6C2a5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.014 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.017 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.017 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.017 [XNIO-1 task-3] 20pV40YUT42NRBxOzRIRIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.018 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.018 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.018 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:43.018 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MSxyJKtCRGK6THOOY91pCw redirectUri = http://localhost:8080/authorization +19:00:43.025 [XNIO-1 task-3] 20pV40YUT42NRBxOzRIRIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.034 [XNIO-1 task-3] 5O9kxOWBQBKZSu-SrGjocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.036 [XNIO-1 task-3] 5O9kxOWBQBKZSu-SrGjocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.040 [XNIO-1 task-3] 5O9kxOWBQBKZSu-SrGjocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.040 [XNIO-1 task-3] 5O9kxOWBQBKZSu-SrGjocg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.046 [XNIO-1 task-3] 5O9kxOWBQBKZSu-SrGjocg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.053 [XNIO-1 task-3] RewvCt_IR5C1n8WvOrzCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.054 [XNIO-1 task-3] RewvCt_IR5C1n8WvOrzCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.055 [XNIO-1 task-3] RewvCt_IR5C1n8WvOrzCyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.056 [XNIO-1 task-3] RewvCt_IR5C1n8WvOrzCyA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.061 [XNIO-1 task-1] 88mR40LcQiOgDsrjTHF5QQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.082 [XNIO-1 task-3] RewvCt_IR5C1n8WvOrzCyA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.095 [XNIO-1 task-3] xdlqVntCSoioED7bLwv-Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.095 [XNIO-1 task-3] xdlqVntCSoioED7bLwv-Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.096 [XNIO-1 task-3] xdlqVntCSoioED7bLwv-Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.100 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:50bbf43e +19:00:43.102 [XNIO-1 task-3] xdlqVntCSoioED7bLwv-Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:43.121 [XNIO-1 task-3] xdlqVntCSoioED7bLwv-Qg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.132 [XNIO-1 task-3] DFxFF6cNROi40StQdgtWuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.132 [XNIO-1 task-3] DFxFF6cNROi40StQdgtWuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.133 [XNIO-1 task-3] DFxFF6cNROi40StQdgtWuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.134 [XNIO-1 task-3] DFxFF6cNROi40StQdgtWuA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:43.134 [XNIO-1 task-1] XGaQXfPrTry-NpBGKrnrAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.134 [XNIO-1 task-1] XGaQXfPrTry-NpBGKrnrAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.136 [XNIO-1 task-1] XGaQXfPrTry-NpBGKrnrAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.136 [XNIO-1 task-1] XGaQXfPrTry-NpBGKrnrAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:43.145 [XNIO-1 task-3] DFxFF6cNROi40StQdgtWuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.156 [XNIO-1 task-1] XGaQXfPrTry-NpBGKrnrAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.158 [XNIO-1 task-3] fTin-SnGSjaMxoUvXzcD1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.158 [XNIO-1 task-3] fTin-SnGSjaMxoUvXzcD1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.159 [XNIO-1 task-3] fTin-SnGSjaMxoUvXzcD1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.160 [XNIO-1 task-3] fTin-SnGSjaMxoUvXzcD1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:43.164 [XNIO-1 task-2] 3_iUWXPdQUaC_aXNIv0fcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.164 [XNIO-1 task-2] 3_iUWXPdQUaC_aXNIv0fcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.165 [XNIO-1 task-2] 3_iUWXPdQUaC_aXNIv0fcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.165 [XNIO-1 task-3] fTin-SnGSjaMxoUvXzcD1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.165 [XNIO-1 task-3] fTin-SnGSjaMxoUvXzcD1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.170 [XNIO-1 task-3] qhI4j8B_TX2S8rKx8WBZJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.170 [XNIO-1 task-3] qhI4j8B_TX2S8rKx8WBZJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.171 [XNIO-1 task-3] qhI4j8B_TX2S8rKx8WBZJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.171 [XNIO-1 task-3] qhI4j8B_TX2S8rKx8WBZJg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:43.173 [XNIO-1 task-2] 3_iUWXPdQUaC_aXNIv0fcw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:43.173 [XNIO-1 task-2] 3_iUWXPdQUaC_aXNIv0fcw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.178 [XNIO-1 task-3] qhI4j8B_TX2S8rKx8WBZJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.184 [XNIO-1 task-2] ZsKwH1ltROyhHgaaQkCc8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.184 [XNIO-1 task-2] ZsKwH1ltROyhHgaaQkCc8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.185 [XNIO-1 task-2] ZsKwH1ltROyhHgaaQkCc8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.185 [XNIO-1 task-2] ZsKwH1ltROyhHgaaQkCc8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.193 [XNIO-1 task-2] ZsKwH1ltROyhHgaaQkCc8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.201 [XNIO-1 task-2] aV-Rcv1FQeG9FlfhZnaYhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.202 [XNIO-1 task-2] aV-Rcv1FQeG9FlfhZnaYhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.202 [XNIO-1 task-2] aV-Rcv1FQeG9FlfhZnaYhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.203 [XNIO-1 task-2] aV-Rcv1FQeG9FlfhZnaYhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.220 [XNIO-1 task-2] aV-Rcv1FQeG9FlfhZnaYhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.226 [XNIO-1 task-2] bKQPcneQSPWfKYshr_9fCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.227 [XNIO-1 task-2] bKQPcneQSPWfKYshr_9fCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.227 [XNIO-1 task-2] bKQPcneQSPWfKYshr_9fCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.228 [XNIO-1 task-2] bKQPcneQSPWfKYshr_9fCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.242 [XNIO-1 task-2] bKQPcneQSPWfKYshr_9fCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.249 [XNIO-1 task-2] qzuwC1IaShmRidbLtU-z0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.249 [XNIO-1 task-2] qzuwC1IaShmRidbLtU-z0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.250 [XNIO-1 task-2] qzuwC1IaShmRidbLtU-z0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.251 [XNIO-1 task-2] qzuwC1IaShmRidbLtU-z0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.254 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:50bbf43e +19:00:43.260 [XNIO-1 task-2] qzuwC1IaShmRidbLtU-z0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.263 [XNIO-1 task-2] 8qw-N3O9S6qqnsMHwT3c6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.263 [XNIO-1 task-2] 8qw-N3O9S6qqnsMHwT3c6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.263 [XNIO-1 task-2] 8qw-N3O9S6qqnsMHwT3c6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.264 [XNIO-1 task-2] 8qw-N3O9S6qqnsMHwT3c6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 4C4PPv05Qc-NvRZQr1vJyw redirectUri = http://localhost:8080/authorization +19:00:43.266 [XNIO-1 task-1] Q-32rYI3TCmIGlNJ-h9laA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.266 [XNIO-1 task-1] Q-32rYI3TCmIGlNJ-h9laA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.268 [XNIO-1 task-1] Q-32rYI3TCmIGlNJ-h9laA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.268 [XNIO-1 task-1] Q-32rYI3TCmIGlNJ-h9laA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.272 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:4a039648 +19:00:43.276 [XNIO-1 task-1] Q-32rYI3TCmIGlNJ-h9laA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.282 [XNIO-1 task-1] VtlrwiIhQtmwtMRMnbmMcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.282 [XNIO-1 task-1] VtlrwiIhQtmwtMRMnbmMcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.283 [XNIO-1 task-1] VtlrwiIhQtmwtMRMnbmMcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.284 [XNIO-1 task-1] VtlrwiIhQtmwtMRMnbmMcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:43.289 [XNIO-1 task-1] VtlrwiIhQtmwtMRMnbmMcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.296 [XNIO-1 task-1] oEpolPWBTR2JV1oKUfK78g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.296 [XNIO-1 task-1] oEpolPWBTR2JV1oKUfK78g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.296 [XNIO-1 task-1] oEpolPWBTR2JV1oKUfK78g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.299 [XNIO-1 task-1] oEpolPWBTR2JV1oKUfK78g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWU4ZGI4N2QtMThkYS00MzQyLThiMGItZjU1YmNkNGRmNzM2OnNGd3NQZXk1UXZhTFI2VWoxQlNmd3c=", "Basic MWU4ZGI4N2QtMThkYS00MzQyLThiMGItZjU1YmNkNGRmNzM2OnNGd3NQZXk1UXZhTFI2VWoxQlNmd3c=", authorization) +19:00:43.300 [XNIO-1 task-2] 8qw-N3O9S6qqnsMHwT3c6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:43.301 [XNIO-1 task-2] 8qw-N3O9S6qqnsMHwT3c6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.306 [XNIO-1 task-1] oEpolPWBTR2JV1oKUfK78g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.313 [XNIO-1 task-1] ZEYVa1wPTgOtLBL7Ni_njg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.313 [XNIO-1 task-1] ZEYVa1wPTgOtLBL7Ni_njg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.313 [XNIO-1 task-1] ZEYVa1wPTgOtLBL7Ni_njg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.314 [XNIO-1 task-1] ZEYVa1wPTgOtLBL7Ni_njg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:43.317 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9e11f999-f56c-4385-aba4-6d9ca8ef6d2c +19:00:43.321 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9e11f999-f56c-4385-aba4-6d9ca8ef6d2c +19:00:43.327 [XNIO-1 task-1] ZEYVa1wPTgOtLBL7Ni_njg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.336 [XNIO-1 task-1] yMi8JWt2RLmZQiHjx4zuKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.336 [XNIO-1 task-1] yMi8JWt2RLmZQiHjx4zuKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.336 [XNIO-1 task-1] yMi8JWt2RLmZQiHjx4zuKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.337 [XNIO-1 task-1] yMi8JWt2RLmZQiHjx4zuKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.344 [XNIO-1 task-1] yMi8JWt2RLmZQiHjx4zuKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.362 [XNIO-1 task-1] unZh_Xr9SBmcnCOyebNNgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.362 [XNIO-1 task-1] unZh_Xr9SBmcnCOyebNNgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.363 [XNIO-1 task-1] unZh_Xr9SBmcnCOyebNNgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.363 [XNIO-1 task-1] unZh_Xr9SBmcnCOyebNNgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.370 [XNIO-1 task-1] unZh_Xr9SBmcnCOyebNNgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.376 [XNIO-1 task-1] 7j69gUl-RwizB-vTzOmx1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.376 [XNIO-1 task-1] 7j69gUl-RwizB-vTzOmx1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.376 [XNIO-1 task-1] 7j69gUl-RwizB-vTzOmx1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.377 [XNIO-1 task-1] 7j69gUl-RwizB-vTzOmx1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.384 [XNIO-1 task-1] 7j69gUl-RwizB-vTzOmx1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.389 [XNIO-1 task-1] 75JlSApBTKimNFsKaBhOCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.389 [XNIO-1 task-1] 75JlSApBTKimNFsKaBhOCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.390 [XNIO-1 task-1] 75JlSApBTKimNFsKaBhOCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.390 [XNIO-1 task-1] 75JlSApBTKimNFsKaBhOCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.395 [XNIO-1 task-1] 75JlSApBTKimNFsKaBhOCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.410 [XNIO-1 task-1] RExongRHQ7K0HlcsoFw4bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.410 [XNIO-1 task-1] RExongRHQ7K0HlcsoFw4bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.410 [XNIO-1 task-1] RExongRHQ7K0HlcsoFw4bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.411 [XNIO-1 task-1] RExongRHQ7K0HlcsoFw4bQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.411 [XNIO-1 task-2] QPD1BTweR1GD1lHlJ4fvng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.411 [XNIO-1 task-2] QPD1BTweR1GD1lHlJ4fvng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.412 [XNIO-1 task-2] QPD1BTweR1GD1lHlJ4fvng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.412 [XNIO-1 task-2] QPD1BTweR1GD1lHlJ4fvng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sdOw3IaeSs6vvjcSLxJgOA redirectUri = http://localhost:8080/authorization +19:00:43.416 [XNIO-1 task-1] RExongRHQ7K0HlcsoFw4bQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.422 [XNIO-1 task-1] qwMt0nerQg6LD4An1WXN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.422 [XNIO-1 task-1] qwMt0nerQg6LD4An1WXN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.423 [XNIO-1 task-1] qwMt0nerQg6LD4An1WXN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.423 [XNIO-1 task-1] qwMt0nerQg6LD4An1WXN6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.428 [XNIO-1 task-1] qwMt0nerQg6LD4An1WXN6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.437 [XNIO-1 task-1] v03JuvvjTrmt3ixEncj9aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.437 [XNIO-1 task-1] v03JuvvjTrmt3ixEncj9aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.437 [XNIO-1 task-1] v03JuvvjTrmt3ixEncj9aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.438 [XNIO-1 task-1] v03JuvvjTrmt3ixEncj9aA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dC1a3Qr_Qr6X6CaKL_JP-Q redirectUri = http://localhost:8080/authorization +19:00:43.438 [XNIO-1 task-3] tiSWrERwRrWkkyfI5V-xmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.438 [XNIO-1 task-3] tiSWrERwRrWkkyfI5V-xmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.439 [XNIO-1 task-3] tiSWrERwRrWkkyfI5V-xmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.439 [XNIO-1 task-3] tiSWrERwRrWkkyfI5V-xmg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.443 [XNIO-1 task-2] QPD1BTweR1GD1lHlJ4fvng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.444 [XNIO-1 task-3] tiSWrERwRrWkkyfI5V-xmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.464 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cd4efb38-a574-4c76-be04-d64e324fc315 +19:00:43.465 [XNIO-1 task-1] v03JuvvjTrmt3ixEncj9aA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:43.465 [XNIO-1 task-1] v03JuvvjTrmt3ixEncj9aA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.475 [XNIO-1 task-3] TEN8DqAfRcqWGahWxWYYqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.475 [XNIO-1 task-3] TEN8DqAfRcqWGahWxWYYqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.476 [XNIO-1 task-3] TEN8DqAfRcqWGahWxWYYqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.476 [XNIO-1 task-3] TEN8DqAfRcqWGahWxWYYqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:43.481 [XNIO-1 task-3] TEN8DqAfRcqWGahWxWYYqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.493 [XNIO-1 task-1] LJsmicmORDidu63G6OlvqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.493 [XNIO-1 task-1] LJsmicmORDidu63G6OlvqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.494 [XNIO-1 task-1] LJsmicmORDidu63G6OlvqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.494 [XNIO-1 task-1] LJsmicmORDidu63G6OlvqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", authorization) +19:00:43.497 [XNIO-1 task-3] SddXWipTR6Cich_YsW0xmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.498 [XNIO-1 task-3] SddXWipTR6Cich_YsW0xmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.498 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51d2edd6 +19:00:43.498 [XNIO-1 task-3] SddXWipTR6Cich_YsW0xmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.499 [XNIO-1 task-3] SddXWipTR6Cich_YsW0xmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.500 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:51d2edd6 +19:00:43.505 [XNIO-1 task-1] LJsmicmORDidu63G6OlvqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.509 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:02683988-d8e4-41ed-98df-42be652c51bf +19:00:43.510 [XNIO-1 task-3] SddXWipTR6Cich_YsW0xmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.516 [XNIO-1 task-1] I1VmLoFaSEuVqocV5p9W9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.516 [XNIO-1 task-1] I1VmLoFaSEuVqocV5p9W9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.516 [XNIO-1 task-1] I1VmLoFaSEuVqocV5p9W9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.517 [XNIO-1 task-1] I1VmLoFaSEuVqocV5p9W9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:43.518 [XNIO-1 task-3] 0uEEPN0nROuFj8-rrMus9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.519 [XNIO-1 task-3] 0uEEPN0nROuFj8-rrMus9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.521 [XNIO-1 task-3] 0uEEPN0nROuFj8-rrMus9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.523 [XNIO-1 task-1] I1VmLoFaSEuVqocV5p9W9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.524 [XNIO-1 task-3] 0uEEPN0nROuFj8-rrMus9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 02683988-d8e4-41ed-98df-42be652c51bf scope = null +19:00:43.533 [XNIO-1 task-1] I1VmLoFaSEuVqocV5p9W9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.537 [XNIO-1 task-3] 0uEEPN0nROuFj8-rrMus9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.543 [XNIO-1 task-1] szJ9YuTySy23q3IwmghL9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.543 [XNIO-1 task-1] szJ9YuTySy23q3IwmghL9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.543 [XNIO-1 task-1] szJ9YuTySy23q3IwmghL9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.544 [XNIO-1 task-1] szJ9YuTySy23q3IwmghL9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.553 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2b9b9389-4cfb-4b46-9475-8568aa825e23 +19:00:43.553 [XNIO-1 task-1] szJ9YuTySy23q3IwmghL9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.561 [XNIO-1 task-1] g6w7Q0UxTjiScXJmrrpAFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.561 [XNIO-1 task-1] g6w7Q0UxTjiScXJmrrpAFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.562 [XNIO-1 task-1] g6w7Q0UxTjiScXJmrrpAFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.563 [XNIO-1 task-1] g6w7Q0UxTjiScXJmrrpAFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:43.572 [XNIO-1 task-1] g6w7Q0UxTjiScXJmrrpAFw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.578 [XNIO-1 task-1] oih7na0MSKq5dIjdT6We8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.578 [XNIO-1 task-1] oih7na0MSKq5dIjdT6We8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.579 [XNIO-1 task-1] oih7na0MSKq5dIjdT6We8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.579 [XNIO-1 task-1] oih7na0MSKq5dIjdT6We8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:43.582 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:949e2b5a +19:00:43.585 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:949e2b5a +19:00:43.591 [XNIO-1 task-3] 5YHzymWcSvatp2HNyjMuRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.591 [XNIO-1 task-3] 5YHzymWcSvatp2HNyjMuRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.592 [XNIO-1 task-3] 5YHzymWcSvatp2HNyjMuRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.592 [XNIO-1 task-3] 5YHzymWcSvatp2HNyjMuRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WU5_lhVMQkGcv5o8COKSew redirectUri = http://localhost:8080/authorization +19:00:43.600 [XNIO-1 task-1] oih7na0MSKq5dIjdT6We8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.602 [XNIO-1 task-3] 5YHzymWcSvatp2HNyjMuRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.613 [XNIO-1 task-3] ju90V-s6QliyJfImXxxqKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.613 [XNIO-1 task-3] ju90V-s6QliyJfImXxxqKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.614 [XNIO-1 task-3] ju90V-s6QliyJfImXxxqKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.614 [XNIO-1 task-3] ju90V-s6QliyJfImXxxqKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:43.622 [XNIO-1 task-3] ju90V-s6QliyJfImXxxqKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.626 [XNIO-1 task-1] TAx17p4bRTO5xeVkh5fW6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.627 [XNIO-1 task-1] TAx17p4bRTO5xeVkh5fW6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.629 [XNIO-1 task-1] TAx17p4bRTO5xeVkh5fW6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.630 [XNIO-1 task-1] TAx17p4bRTO5xeVkh5fW6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:43.640 [XNIO-1 task-3] NpeiP4u0TgKNedscqn67Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.641 [XNIO-1 task-3] NpeiP4u0TgKNedscqn67Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.642 [XNIO-1 task-3] NpeiP4u0TgKNedscqn67Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.644 [XNIO-1 task-3] NpeiP4u0TgKNedscqn67Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:43.647 [XNIO-1 task-1] TAx17p4bRTO5xeVkh5fW6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.655 [XNIO-1 task-3] NpeiP4u0TgKNedscqn67Dw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.663 [XNIO-1 task-1] JV34ee0CSraoBHFtoNZqAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.663 [XNIO-1 task-1] JV34ee0CSraoBHFtoNZqAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.664 [XNIO-1 task-1] JV34ee0CSraoBHFtoNZqAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.664 [XNIO-1 task-1] JV34ee0CSraoBHFtoNZqAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", authorization) +19:00:43.668 [XNIO-1 task-2] KB1g7eAySmWPr3IqztMbgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.668 [XNIO-1 task-2] KB1g7eAySmWPr3IqztMbgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.669 [XNIO-1 task-2] KB1g7eAySmWPr3IqztMbgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.669 [XNIO-1 task-2] KB1g7eAySmWPr3IqztMbgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:43.670 [XNIO-1 task-3] rQG8L8KCRpaFoL3jL4YOXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.670 [XNIO-1 task-3] rQG8L8KCRpaFoL3jL4YOXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.670 [XNIO-1 task-3] rQG8L8KCRpaFoL3jL4YOXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.670 [XNIO-1 task-3] rQG8L8KCRpaFoL3jL4YOXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:43.675 [XNIO-1 task-3] rQG8L8KCRpaFoL3jL4YOXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.676 [XNIO-1 task-1] JV34ee0CSraoBHFtoNZqAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:43.676 [XNIO-1 task-1] JV34ee0CSraoBHFtoNZqAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.685 [XNIO-1 task-3] MGthnGIPR0GoebfqBpKQZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.686 [XNIO-1 task-2] KB1g7eAySmWPr3IqztMbgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.686 [XNIO-1 task-3] MGthnGIPR0GoebfqBpKQZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.688 [XNIO-1 task-3] MGthnGIPR0GoebfqBpKQZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.688 [XNIO-1 task-3] MGthnGIPR0GoebfqBpKQZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.693 [XNIO-1 task-3] MGthnGIPR0GoebfqBpKQZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.701 [XNIO-1 task-2] M3KuC4plScWiC4NQ9r-WOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.701 [XNIO-1 task-2] M3KuC4plScWiC4NQ9r-WOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.701 [XNIO-1 task-3] x85eO5EvRRGY2iiZA2LhSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.701 [XNIO-1 task-3] x85eO5EvRRGY2iiZA2LhSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.701 [XNIO-1 task-2] M3KuC4plScWiC4NQ9r-WOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.702 [XNIO-1 task-3] x85eO5EvRRGY2iiZA2LhSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.703 [XNIO-1 task-3] x85eO5EvRRGY2iiZA2LhSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:43.703 [XNIO-1 task-3] x85eO5EvRRGY2iiZA2LhSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f30de2a8-2210-423e-a71d-26622a0ce2e7 scope = null +19:00:43.708 [XNIO-1 task-2] M3KuC4plScWiC4NQ9r-WOg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.715 [XNIO-1 task-3] x85eO5EvRRGY2iiZA2LhSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.716 [XNIO-1 task-2] nSJ-Go3BQ-SRF7ElN0dexQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.716 [XNIO-1 task-2] nSJ-Go3BQ-SRF7ElN0dexQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.716 [XNIO-1 task-2] nSJ-Go3BQ-SRF7ElN0dexQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.717 [XNIO-1 task-2] nSJ-Go3BQ-SRF7ElN0dexQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.722 [XNIO-1 task-2] nSJ-Go3BQ-SRF7ElN0dexQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.730 [XNIO-1 task-2] i-nitrPtT--aJyMRBMIeyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.730 [XNIO-1 task-2] i-nitrPtT--aJyMRBMIeyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.730 [XNIO-1 task-2] i-nitrPtT--aJyMRBMIeyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.731 [XNIO-1 task-2] i-nitrPtT--aJyMRBMIeyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.736 [XNIO-1 task-2] i-nitrPtT--aJyMRBMIeyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.746 [XNIO-1 task-2] Imq_THv_RZyZsP6leqa4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.747 [XNIO-1 task-2] Imq_THv_RZyZsP6leqa4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.748 [XNIO-1 task-2] Imq_THv_RZyZsP6leqa4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.748 [XNIO-1 task-2] Imq_THv_RZyZsP6leqa4JQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.754 [XNIO-1 task-2] Imq_THv_RZyZsP6leqa4JQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.766 [XNIO-1 task-2] E5UYysUdTKKC2qwG8vz7UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.767 [XNIO-1 task-2] E5UYysUdTKKC2qwG8vz7UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.767 [XNIO-1 task-2] E5UYysUdTKKC2qwG8vz7UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.767 [XNIO-1 task-2] E5UYysUdTKKC2qwG8vz7UQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.775 [XNIO-1 task-2] E5UYysUdTKKC2qwG8vz7UQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.778 [XNIO-1 task-1] HColRKXxQV-aURFj89P2gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.778 [XNIO-1 task-1] HColRKXxQV-aURFj89P2gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.778 [XNIO-1 task-1] HColRKXxQV-aURFj89P2gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.779 [XNIO-1 task-1] HColRKXxQV-aURFj89P2gA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 251d93b4-4769-4597-8e98-33065a4a8536 scope = null +19:00:43.786 [XNIO-1 task-2] DVPuB7xxRgeWvCFoxNZ6Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.786 [XNIO-1 task-2] DVPuB7xxRgeWvCFoxNZ6Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.788 [XNIO-1 task-2] DVPuB7xxRgeWvCFoxNZ6Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.788 [XNIO-1 task-2] DVPuB7xxRgeWvCFoxNZ6Xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.794 [XNIO-1 task-2] DVPuB7xxRgeWvCFoxNZ6Xg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.803 [XNIO-1 task-1] HColRKXxQV-aURFj89P2gA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.803 [XNIO-1 task-2] ISMtn5d2Qx2wS2Bp0-GXXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.803 [XNIO-1 task-2] ISMtn5d2Qx2wS2Bp0-GXXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.804 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a5af52bc-ee88-4184-bc90-8165f1d8b6a7 +19:00:43.804 [XNIO-1 task-2] ISMtn5d2Qx2wS2Bp0-GXXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.806 [XNIO-1 task-2] ISMtn5d2Qx2wS2Bp0-GXXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:43.814 [XNIO-1 task-2] ISMtn5d2Qx2wS2Bp0-GXXw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.827 [XNIO-1 task-1] 0HNEifmhRJ21QNhs-47Zxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.827 [XNIO-1 task-1] 0HNEifmhRJ21QNhs-47Zxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.827 [XNIO-1 task-1] 0HNEifmhRJ21QNhs-47Zxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.828 [XNIO-1 task-1] 0HNEifmhRJ21QNhs-47Zxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:43.829 [XNIO-1 task-2] KAHWUgUYQ-uFDHCtIF1HOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.834 [XNIO-1 task-2] KAHWUgUYQ-uFDHCtIF1HOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.835 [XNIO-1 task-2] KAHWUgUYQ-uFDHCtIF1HOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.835 [XNIO-1 task-2] KAHWUgUYQ-uFDHCtIF1HOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:43.838 [XNIO-1 task-1] 0HNEifmhRJ21QNhs-47Zxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.846 [XNIO-1 task-1] ZHknIdKFQyCdGPjdVY3nVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.847 [XNIO-1 task-1] ZHknIdKFQyCdGPjdVY3nVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.848 [XNIO-1 task-2] KAHWUgUYQ-uFDHCtIF1HOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:43.849 [XNIO-1 task-2] KAHWUgUYQ-uFDHCtIF1HOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.850 [XNIO-1 task-1] ZHknIdKFQyCdGPjdVY3nVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.851 [XNIO-1 task-1] ZHknIdKFQyCdGPjdVY3nVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.863 [XNIO-1 task-1] ZHknIdKFQyCdGPjdVY3nVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.868 [XNIO-1 task-1] Sa6J2sesSDKQUuwaPQkvUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.868 [XNIO-1 task-1] Sa6J2sesSDKQUuwaPQkvUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.869 [XNIO-1 task-1] Sa6J2sesSDKQUuwaPQkvUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.869 [XNIO-1 task-1] Sa6J2sesSDKQUuwaPQkvUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.874 [XNIO-1 task-1] Sa6J2sesSDKQUuwaPQkvUw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.879 [XNIO-1 task-1] naMIYqSJSFur4hD8gHaKYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.879 [XNIO-1 task-1] naMIYqSJSFur4hD8gHaKYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.879 [XNIO-1 task-1] naMIYqSJSFur4hD8gHaKYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.880 [XNIO-1 task-1] naMIYqSJSFur4hD8gHaKYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.886 [XNIO-1 task-1] naMIYqSJSFur4hD8gHaKYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.893 [XNIO-1 task-1] UrCiQdr5SPGDke7PAN0D2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.893 [XNIO-1 task-1] UrCiQdr5SPGDke7PAN0D2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.893 [XNIO-1 task-1] UrCiQdr5SPGDke7PAN0D2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.894 [XNIO-1 task-1] UrCiQdr5SPGDke7PAN0D2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.899 [XNIO-1 task-1] UrCiQdr5SPGDke7PAN0D2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.905 [XNIO-1 task-1] cQCLw6eeSJGwaefKr4x2OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.906 [XNIO-1 task-1] cQCLw6eeSJGwaefKr4x2OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.906 [XNIO-1 task-1] cQCLw6eeSJGwaefKr4x2OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.906 [XNIO-1 task-1] cQCLw6eeSJGwaefKr4x2OQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.911 [XNIO-1 task-1] cQCLw6eeSJGwaefKr4x2OQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.917 [XNIO-1 task-1] qNCK_ZW7Twi8ATMuQG-yIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.917 [XNIO-1 task-1] qNCK_ZW7Twi8ATMuQG-yIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.917 [XNIO-1 task-1] qNCK_ZW7Twi8ATMuQG-yIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.918 [XNIO-1 task-1] qNCK_ZW7Twi8ATMuQG-yIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.922 [XNIO-1 task-2] VVTaF8_JQdWoGwEJSv7Q4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.923 [XNIO-1 task-2] VVTaF8_JQdWoGwEJSv7Q4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.923 [XNIO-1 task-2] VVTaF8_JQdWoGwEJSv7Q4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.923 [XNIO-1 task-1] qNCK_ZW7Twi8ATMuQG-yIg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.924 [XNIO-1 task-2] VVTaF8_JQdWoGwEJSv7Q4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ocqye9MCSfaSAT10FA9Rbg redirectUri = http://localhost:8080/authorization +19:00:43.929 [XNIO-1 task-1] jGZnxB8NRyWlozHc7ObKOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.929 [XNIO-1 task-1] jGZnxB8NRyWlozHc7ObKOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.930 [XNIO-1 task-1] jGZnxB8NRyWlozHc7ObKOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.930 [XNIO-1 task-1] jGZnxB8NRyWlozHc7ObKOA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.931 [XNIO-1 task-2] VVTaF8_JQdWoGwEJSv7Q4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.935 [XNIO-1 task-1] jGZnxB8NRyWlozHc7ObKOA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.945 [XNIO-1 task-1] hNGNHBdTSuSkvtzArq3fIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.946 [XNIO-1 task-1] hNGNHBdTSuSkvtzArq3fIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.946 [XNIO-1 task-2] -_dhqFdnQMuiH3oyTl7_vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.946 [XNIO-1 task-2] -_dhqFdnQMuiH3oyTl7_vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:43.946 [XNIO-1 task-2] -_dhqFdnQMuiH3oyTl7_vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.946 [XNIO-1 task-2] -_dhqFdnQMuiH3oyTl7_vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:43.947 [XNIO-1 task-1] hNGNHBdTSuSkvtzArq3fIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:43.947 [XNIO-1 task-2] -_dhqFdnQMuiH3oyTl7_vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:43.953 [XNIO-1 task-1] hNGNHBdTSuSkvtzArq3fIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.956 [XNIO-1 task-2] -_dhqFdnQMuiH3oyTl7_vQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:43.957 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb128129 +19:00:43.958 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb128129 +19:00:43.959 [XNIO-1 task-1] gXP1Bs7ZSWS0DuSDnVBeMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.962 [XNIO-1 task-1] gXP1Bs7ZSWS0DuSDnVBeMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.963 [XNIO-1 task-1] gXP1Bs7ZSWS0DuSDnVBeMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.963 [XNIO-1 task-3] DzY0zusaTAyotqWQmfDBbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.963 [XNIO-1 task-3] DzY0zusaTAyotqWQmfDBbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.963 [XNIO-1 task-3] DzY0zusaTAyotqWQmfDBbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.967 [XNIO-1 task-3] DzY0zusaTAyotqWQmfDBbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.973 [XNIO-1 task-3] DzY0zusaTAyotqWQmfDBbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.976 [XNIO-1 task-1] gXP1Bs7ZSWS0DuSDnVBeMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 5lusurnQQ9i8uDKlNSkz9A redirectUri = http://localhost:8080/authorization +19:00:43.980 [XNIO-1 task-3] Lpl9-6FNTC2B1dwYolsyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.980 [XNIO-1 task-3] Lpl9-6FNTC2B1dwYolsyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.981 [XNIO-1 task-3] Lpl9-6FNTC2B1dwYolsyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.982 [XNIO-1 task-3] Lpl9-6FNTC2B1dwYolsyVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.987 [XNIO-1 task-3] Lpl9-6FNTC2B1dwYolsyVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:43.995 [XNIO-1 task-3] xewRvuvSTJK4q3mk5TXsig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.995 [XNIO-1 task-3] xewRvuvSTJK4q3mk5TXsig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.995 [XNIO-1 task-3] xewRvuvSTJK4q3mk5TXsig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:43.995 [XNIO-1 task-3] xewRvuvSTJK4q3mk5TXsig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:43.999 [XNIO-1 task-1] gXP1Bs7ZSWS0DuSDnVBeMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.003 [XNIO-1 task-3] xewRvuvSTJK4q3mk5TXsig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.016 [XNIO-1 task-3] 0-Xm96ngSPeqvwudIzkrMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.017 [XNIO-1 task-3] 0-Xm96ngSPeqvwudIzkrMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.018 [XNIO-1 task-3] 0-Xm96ngSPeqvwudIzkrMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.018 [XNIO-1 task-3] 0-Xm96ngSPeqvwudIzkrMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:44.025 [XNIO-1 task-3] 0-Xm96ngSPeqvwudIzkrMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.035 [XNIO-1 task-1] oUc_6uPmSVuVVcY9d2Ob-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.036 [XNIO-1 task-1] oUc_6uPmSVuVVcY9d2Ob-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.037 [XNIO-1 task-1] oUc_6uPmSVuVVcY9d2Ob-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.037 [XNIO-1 task-1] oUc_6uPmSVuVVcY9d2Ob-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:44.043 [XNIO-1 task-1] oUc_6uPmSVuVVcY9d2Ob-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.055 [XNIO-1 task-1] nf9YyBg0SAOyzWgEBmRyIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.055 [XNIO-1 task-1] nf9YyBg0SAOyzWgEBmRyIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.055 [XNIO-1 task-1] nf9YyBg0SAOyzWgEBmRyIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.056 [XNIO-1 task-1] nf9YyBg0SAOyzWgEBmRyIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:44.061 [XNIO-1 task-1] nf9YyBg0SAOyzWgEBmRyIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.061 [XNIO-1 task-3] HS7rDiojQfCe262BOarXCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.062 [XNIO-1 task-3] HS7rDiojQfCe262BOarXCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.062 [XNIO-1 task-3] HS7rDiojQfCe262BOarXCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.063 [XNIO-1 task-3] HS7rDiojQfCe262BOarXCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:44.074 [XNIO-1 task-3] HS7rDiojQfCe262BOarXCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.076 [XNIO-1 task-3] HS7rDiojQfCe262BOarXCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.079 [XNIO-1 task-1] _KCnwJp0T32164c0uM3pcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.080 [XNIO-1 task-1] _KCnwJp0T32164c0uM3pcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.080 [XNIO-1 task-1] _KCnwJp0T32164c0uM3pcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.081 [XNIO-1 task-1] _KCnwJp0T32164c0uM3pcw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.086 [XNIO-1 task-1] _KCnwJp0T32164c0uM3pcw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.095 [XNIO-1 task-1] XCtnSDPnQWiVtEJh1_J50A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.095 [XNIO-1 task-1] XCtnSDPnQWiVtEJh1_J50A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.095 [XNIO-1 task-1] XCtnSDPnQWiVtEJh1_J50A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.096 [XNIO-1 task-1] XCtnSDPnQWiVtEJh1_J50A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3386b882-7420-4082-97fc-6c82fcfa9912 scope = null +19:00:44.097 [XNIO-1 task-3] 8HAyB-njQTGEMlcPjt_WzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.097 [XNIO-1 task-3] 8HAyB-njQTGEMlcPjt_WzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.097 [XNIO-1 task-3] 8HAyB-njQTGEMlcPjt_WzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.098 [XNIO-1 task-3] 8HAyB-njQTGEMlcPjt_WzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.105 [XNIO-1 task-3] 8HAyB-njQTGEMlcPjt_WzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.107 [XNIO-1 task-1] XCtnSDPnQWiVtEJh1_J50A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.112 [XNIO-1 task-3] IUjcpLhxT6yEr4k2D7fyhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.112 [XNIO-1 task-3] IUjcpLhxT6yEr4k2D7fyhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.112 [XNIO-1 task-3] IUjcpLhxT6yEr4k2D7fyhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.113 [XNIO-1 task-3] IUjcpLhxT6yEr4k2D7fyhQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.118 [XNIO-1 task-3] IUjcpLhxT6yEr4k2D7fyhQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.126 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.126 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.126 [XNIO-1 task-3] oKPBc4UDQxSsmzzkksk7PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.126 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.127 [XNIO-1 task-3] oKPBc4UDQxSsmzzkksk7PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.127 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.127 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:44.127 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4b800f27-2234-437e-8ded-ecd7f2eb0dc0 scope = null +19:00:44.133 [XNIO-1 task-3] oKPBc4UDQxSsmzzkksk7PA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.140 [XNIO-1 task-3] v8XMg69MQCqdKs5DLZ-ysg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.140 [XNIO-1 task-3] v8XMg69MQCqdKs5DLZ-ysg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.140 [XNIO-1 task-3] v8XMg69MQCqdKs5DLZ-ysg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.141 [XNIO-1 task-3] v8XMg69MQCqdKs5DLZ-ysg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.146 [XNIO-1 task-3] v8XMg69MQCqdKs5DLZ-ysg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.154 [XNIO-1 task-3] I-u5uwZBT7WZO0ooxGHpVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.154 [XNIO-1 task-3] I-u5uwZBT7WZO0ooxGHpVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.154 [XNIO-1 task-3] I-u5uwZBT7WZO0ooxGHpVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.155 [XNIO-1 task-3] I-u5uwZBT7WZO0ooxGHpVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.160 [XNIO-1 task-3] I-u5uwZBT7WZO0ooxGHpVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.167 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.169 [XNIO-1 task-2] 377Zt1oKSgWFN73hgDyKuA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.169 [XNIO-1 task-3] aQW__mvcRRexe5jgM60OlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.170 [XNIO-1 task-3] aQW__mvcRRexe5jgM60OlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.170 [XNIO-1 task-3] aQW__mvcRRexe5jgM60OlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.173 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.181 [XNIO-1 task-3] aQW__mvcRRexe5jgM60OlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.201 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8cab302b-d87b-4bd9-a374-dd77be9528c2 +19:00:44.212 [XNIO-1 task-3] nfj-qoslQjqIUN2qXmgjtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.212 [XNIO-1 task-3] nfj-qoslQjqIUN2qXmgjtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.213 [XNIO-1 task-3] nfj-qoslQjqIUN2qXmgjtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.214 [XNIO-1 task-3] nfj-qoslQjqIUN2qXmgjtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.234 [XNIO-1 task-3] nfj-qoslQjqIUN2qXmgjtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.242 [XNIO-1 task-3] 6jGliczcRR-kMoyblMS5Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.242 [XNIO-1 task-3] 6jGliczcRR-kMoyblMS5Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.244 [XNIO-1 task-3] 6jGliczcRR-kMoyblMS5Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.245 [XNIO-1 task-3] 6jGliczcRR-kMoyblMS5Og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.253 [XNIO-1 task-3] 6jGliczcRR-kMoyblMS5Og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.259 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12eb4e48 +19:00:44.262 [XNIO-1 task-3] _OuE42a0T_20bXXGfcUSGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.262 [XNIO-1 task-3] _OuE42a0T_20bXXGfcUSGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.262 [XNIO-1 task-3] _OuE42a0T_20bXXGfcUSGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.262 [XNIO-1 task-3] _OuE42a0T_20bXXGfcUSGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.263 [XNIO-1 task-3] _OuE42a0T_20bXXGfcUSGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.263 [XNIO-1 task-3] _OuE42a0T_20bXXGfcUSGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.263 [XNIO-1 task-2] tFCinH5jRRWQRq67tKuo9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:44.263 [XNIO-1 task-2] tFCinH5jRRWQRq67tKuo9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = taMVKyfrSZWNZGUUlWdC0A redirectUri = http://localhost:8080/authorization +19:00:44.268 [XNIO-1 task-3] _OuE42a0T_20bXXGfcUSGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.270 [XNIO-1 task-2] tFCinH5jRRWQRq67tKuo9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.270 [XNIO-1 task-2] tFCinH5jRRWQRq67tKuo9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.278 [XNIO-1 task-3] buI5jvUgSHS4Gn0X1BD24Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.278 [XNIO-1 task-3] buI5jvUgSHS4Gn0X1BD24Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.278 [XNIO-1 task-3] buI5jvUgSHS4Gn0X1BD24Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.279 [XNIO-1 task-3] buI5jvUgSHS4Gn0X1BD24Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.284 [XNIO-1 task-3] buI5jvUgSHS4Gn0X1BD24Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.290 [XNIO-1 task-2] T55EmH3LSVyqL21m6LBn4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.290 [XNIO-1 task-2] T55EmH3LSVyqL21m6LBn4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.290 [XNIO-1 task-2] T55EmH3LSVyqL21m6LBn4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.290 [XNIO-1 task-2] T55EmH3LSVyqL21m6LBn4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDllNzE2YTctOTgwOS00M2IwLTliMWYtMmMzYzZhZjNmY2ZkOmxFaklyYzRoUkNpbHR0cVdCRTVkRkE=", "Basic MDllNzE2YTctOTgwOS00M2IwLTliMWYtMmMzYzZhZjNmY2ZkOmxFaklyYzRoUkNpbHR0cVdCRTVkRkE=", authorization) +19:00:44.291 [XNIO-1 task-3] S1ztEbmNTmSBp1s0k54q4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.291 [XNIO-1 task-3] S1ztEbmNTmSBp1s0k54q4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.291 [XNIO-1 task-3] S1ztEbmNTmSBp1s0k54q4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.291 [XNIO-1 task-3] S1ztEbmNTmSBp1s0k54q4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:44.361 [XNIO-1 task-2] T55EmH3LSVyqL21m6LBn4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.372 [XNIO-1 task-2] 2E3QfMJNTfu0NZgjDs9q7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.372 [XNIO-1 task-2] 2E3QfMJNTfu0NZgjDs9q7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.373 [XNIO-1 task-2] 2E3QfMJNTfu0NZgjDs9q7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.373 [XNIO-1 task-2] 2E3QfMJNTfu0NZgjDs9q7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:44.376 [XNIO-1 task-1] 8hrB5WulSfassoMB7tuufw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.379 [XNIO-1 task-1] 8hrB5WulSfassoMB7tuufw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.380 [XNIO-1 task-1] 8hrB5WulSfassoMB7tuufw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.380 [XNIO-1 task-1] 8hrB5WulSfassoMB7tuufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.380 [XNIO-1 task-2] 2E3QfMJNTfu0NZgjDs9q7w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.380 [XNIO-1 task-2] 2E3QfMJNTfu0NZgjDs9q7w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.381 [XNIO-1 task-3] S1ztEbmNTmSBp1s0k54q4w INFO com.networknt.config.Config getConfigStream - Config loaded from default folder for status.yml +19:00:44.421 [XNIO-1 task-2] 6TiIfpZcRTKo9a-ybhXXsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.422 [XNIO-1 task-2] 6TiIfpZcRTKo9a-ybhXXsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.422 [XNIO-1 task-2] 6TiIfpZcRTKo9a-ybhXXsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.423 [XNIO-1 task-2] 6TiIfpZcRTKo9a-ybhXXsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:44.425 [XNIO-1 task-1] 8hrB5WulSfassoMB7tuufw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.425 [XNIO-1 task-1] 8hrB5WulSfassoMB7tuufw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.427 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:26b51e5b-7d56-4ac0-a1f0-6468f1e97208 +19:00:44.430 [XNIO-1 task-2] 6TiIfpZcRTKo9a-ybhXXsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.441 [XNIO-1 task-2] 12_VJBVRQ8iQYd_-FDmB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.441 [XNIO-1 task-2] 12_VJBVRQ8iQYd_-FDmB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.442 [XNIO-1 task-2] 12_VJBVRQ8iQYd_-FDmB6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.442 [XNIO-1 task-2] 12_VJBVRQ8iQYd_-FDmB6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.447 [XNIO-1 task-2] 12_VJBVRQ8iQYd_-FDmB6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d838b69-526f-4022-9094-a395693afb9e is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:44.456 [XNIO-1 task-3] XKVOApLtRIyvPTDSTRmJOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.457 [XNIO-1 task-3] XKVOApLtRIyvPTDSTRmJOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.457 [XNIO-1 task-3] XKVOApLtRIyvPTDSTRmJOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.457 [XNIO-1 task-3] XKVOApLtRIyvPTDSTRmJOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:44.464 [XNIO-1 task-2] MA15e2qeRjqYRPdJ_mQpxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.464 [XNIO-1 task-2] MA15e2qeRjqYRPdJ_mQpxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.465 [XNIO-1 task-2] MA15e2qeRjqYRPdJ_mQpxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.465 [XNIO-1 task-2] MA15e2qeRjqYRPdJ_mQpxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", authorization) +19:00:44.467 [XNIO-1 task-3] XKVOApLtRIyvPTDSTRmJOg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:44.474 [XNIO-1 task-2] MA15e2qeRjqYRPdJ_mQpxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.484 [XNIO-1 task-2] qzT4mKOBRsuUlGkekvyFeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.485 [XNIO-1 task-2] qzT4mKOBRsuUlGkekvyFeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.485 [XNIO-1 task-2] qzT4mKOBRsuUlGkekvyFeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.485 [XNIO-1 task-2] qzT4mKOBRsuUlGkekvyFeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.491 [XNIO-1 task-2] qzT4mKOBRsuUlGkekvyFeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.500 [XNIO-1 task-2] Xoc9vd_YSTO5IaLJd-wTXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.500 [XNIO-1 task-2] Xoc9vd_YSTO5IaLJd-wTXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.500 [XNIO-1 task-2] Xoc9vd_YSTO5IaLJd-wTXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.503 [XNIO-1 task-3] Fz3_miOSRB-cjS36bokhDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.503 [XNIO-1 task-3] Fz3_miOSRB-cjS36bokhDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.503 [XNIO-1 task-2] Xoc9vd_YSTO5IaLJd-wTXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZqOdli22SyODKUHUxJNdgg redirectUri = http://localhost:8080/authorization +19:00:44.506 [XNIO-1 task-3] Fz3_miOSRB-cjS36bokhDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.507 [XNIO-1 task-3] Fz3_miOSRB-cjS36bokhDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.519 [XNIO-1 task-3] Fz3_miOSRB-cjS36bokhDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.519 [XNIO-1 task-2] Xoc9vd_YSTO5IaLJd-wTXQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.526 [XNIO-1 task-3] N7W5koJvQTGduC8jVnIuFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.527 [XNIO-1 task-3] N7W5koJvQTGduC8jVnIuFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.527 [XNIO-1 task-3] N7W5koJvQTGduC8jVnIuFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.528 [XNIO-1 task-3] N7W5koJvQTGduC8jVnIuFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:44.534 [XNIO-1 task-3] N7W5koJvQTGduC8jVnIuFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.544 [XNIO-1 task-3] -GcBunAnTwq-F-DeJO0nnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.544 [XNIO-1 task-3] -GcBunAnTwq-F-DeJO0nnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.545 [XNIO-1 task-3] -GcBunAnTwq-F-DeJO0nnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.546 [XNIO-1 task-2] BbTFMWuxSRuZ9nsfhhfLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.545 [XNIO-1 task-3] -GcBunAnTwq-F-DeJO0nnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:44.546 [XNIO-1 task-3] -GcBunAnTwq-F-DeJO0nnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = X06wVhgTSbCZz8nPou2nZg redirectUri = http://localhost:8080/authorization +19:00:44.547 [XNIO-1 task-2] BbTFMWuxSRuZ9nsfhhfLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.547 [XNIO-1 task-2] BbTFMWuxSRuZ9nsfhhfLjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:44.559 [XNIO-1 task-3] -GcBunAnTwq-F-DeJO0nnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.560 [XNIO-1 task-3] -GcBunAnTwq-F-DeJO0nnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.565 [XNIO-1 task-2] BbTFMWuxSRuZ9nsfhhfLjA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.572 [XNIO-1 task-2] qOtLi3l9R0quqeA9c28ECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.572 [XNIO-1 task-2] qOtLi3l9R0quqeA9c28ECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.572 [XNIO-1 task-2] qOtLi3l9R0quqeA9c28ECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.573 [XNIO-1 task-2] qOtLi3l9R0quqeA9c28ECw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.585 [XNIO-1 task-2] qOtLi3l9R0quqeA9c28ECw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.592 [XNIO-1 task-2] Wtjt6G-3QH2Gn_Vb6lTtyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.593 [XNIO-1 task-2] Wtjt6G-3QH2Gn_Vb6lTtyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.593 [XNIO-1 task-2] Wtjt6G-3QH2Gn_Vb6lTtyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.595 [XNIO-1 task-2] Wtjt6G-3QH2Gn_Vb6lTtyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.606 [XNIO-1 task-2] Wtjt6G-3QH2Gn_Vb6lTtyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.621 [XNIO-1 task-2] hXSEuiQFRDm3Q2UfI97Y7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.622 [XNIO-1 task-2] hXSEuiQFRDm3Q2UfI97Y7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.622 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.629 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.630 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.630 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.631 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.632 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = anp5ZVphSJOLBQD14xWptQ redirectUri = http://localhost:8080/authorization +19:00:44.643 [XNIO-1 task-1] ZZiZWDtoQRGUbcg6SCxKGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.646 [XNIO-1 task-1] ZZiZWDtoQRGUbcg6SCxKGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.646 [XNIO-1 task-1] ZZiZWDtoQRGUbcg6SCxKGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.646 [XNIO-1 task-2] hXSEuiQFRDm3Q2UfI97Y7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.647 [XNIO-1 task-1] ZZiZWDtoQRGUbcg6SCxKGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = poSQu-aAS5axoUQRIT9NiQ redirectUri = http://localhost:8080/authorization +19:00:44.658 [XNIO-1 task-2] IGK9PyK5STqvN6_CyZ37sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.658 [XNIO-1 task-2] IGK9PyK5STqvN6_CyZ37sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.659 [XNIO-1 task-2] IGK9PyK5STqvN6_CyZ37sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.659 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.659 [XNIO-1 task-3] n0WUIz9KT9CcJiCdoxXvCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.664 [XNIO-1 task-2] IGK9PyK5STqvN6_CyZ37sw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.681 [XNIO-1 task-2] nCS-7OvYQPeE6ssaZwS4uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.681 [XNIO-1 task-2] nCS-7OvYQPeE6ssaZwS4uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.681 [XNIO-1 task-2] nCS-7OvYQPeE6ssaZwS4uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.682 [XNIO-1 task-2] nCS-7OvYQPeE6ssaZwS4uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:44.687 [XNIO-1 task-2] nCS-7OvYQPeE6ssaZwS4uw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.696 [XNIO-1 task-2] v0FJs1S6T0yzmGHoI9iwbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.697 [XNIO-1 task-2] v0FJs1S6T0yzmGHoI9iwbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.697 [XNIO-1 task-2] v0FJs1S6T0yzmGHoI9iwbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.698 [XNIO-1 task-2] v0FJs1S6T0yzmGHoI9iwbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:44.703 [XNIO-1 task-2] v0FJs1S6T0yzmGHoI9iwbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.708 [XNIO-1 task-2] CpHvH7xcTYa9nOwHyCjnpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.708 [XNIO-1 task-2] CpHvH7xcTYa9nOwHyCjnpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.709 [XNIO-1 task-2] CpHvH7xcTYa9nOwHyCjnpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.709 [XNIO-1 task-2] CpHvH7xcTYa9nOwHyCjnpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:44.714 [XNIO-1 task-2] CpHvH7xcTYa9nOwHyCjnpg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.715 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fb128129 +19:00:44.722 [XNIO-1 task-2] B0CXCW6OQB2fkez21tIeOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.722 [XNIO-1 task-2] B0CXCW6OQB2fkez21tIeOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.723 [XNIO-1 task-2] B0CXCW6OQB2fkez21tIeOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.723 [XNIO-1 task-2] B0CXCW6OQB2fkez21tIeOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:44.728 [XNIO-1 task-2] B0CXCW6OQB2fkez21tIeOA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.733 [XNIO-1 task-2] QGGeePDfRWqo1ND4sGCsYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.733 [XNIO-1 task-2] QGGeePDfRWqo1ND4sGCsYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.734 [XNIO-1 task-2] QGGeePDfRWqo1ND4sGCsYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.734 [XNIO-1 task-2] QGGeePDfRWqo1ND4sGCsYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:44.735 [XNIO-1 task-1] ZZiZWDtoQRGUbcg6SCxKGQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.735 [XNIO-1 task-1] ZZiZWDtoQRGUbcg6SCxKGQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.737 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.740 [XNIO-1 task-2] QGGeePDfRWqo1ND4sGCsYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.748 [XNIO-1 task-1] 6nlEkqTSQ3aeKNNcambvNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.748 [XNIO-1 task-1] 6nlEkqTSQ3aeKNNcambvNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.748 [XNIO-1 task-1] 6nlEkqTSQ3aeKNNcambvNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.749 [XNIO-1 task-1] 6nlEkqTSQ3aeKNNcambvNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.755 [XNIO-1 task-1] 6nlEkqTSQ3aeKNNcambvNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.763 [XNIO-1 task-1] A8QYTd_PQ9u31m9e7TdtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.763 [XNIO-1 task-1] A8QYTd_PQ9u31m9e7TdtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.764 [XNIO-1 task-1] A8QYTd_PQ9u31m9e7TdtzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.764 [XNIO-1 task-1] A8QYTd_PQ9u31m9e7TdtzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:44.769 [XNIO-1 task-2] 1hycz893SFGmYQ7BThgbzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.769 [XNIO-1 task-2] 1hycz893SFGmYQ7BThgbzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.769 [XNIO-1 task-2] 1hycz893SFGmYQ7BThgbzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.770 [XNIO-1 task-2] 1hycz893SFGmYQ7BThgbzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:44.770 [XNIO-1 task-1] A8QYTd_PQ9u31m9e7TdtzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.776 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c0e2a1b-910c-4bcb-b635-97545ad19f07 +19:00:44.777 [XNIO-1 task-1] kgM49j23TD-vSr9bOiy57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.777 [XNIO-1 task-1] kgM49j23TD-vSr9bOiy57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.778 [XNIO-1 task-1] kgM49j23TD-vSr9bOiy57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.778 [XNIO-1 task-1] kgM49j23TD-vSr9bOiy57A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 4Mt4OyQ0SUy8gjjeBWQqBg redirectUri = http://localhost:8080/authorization +19:00:44.779 [XNIO-1 task-3] l52hZjxwSGmBeus5gsdAKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.779 [XNIO-1 task-3] l52hZjxwSGmBeus5gsdAKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.779 [XNIO-1 task-3] l52hZjxwSGmBeus5gsdAKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.780 [XNIO-1 task-3] l52hZjxwSGmBeus5gsdAKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.782 [XNIO-1 task-2] 1hycz893SFGmYQ7BThgbzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.786 [XNIO-1 task-3] l52hZjxwSGmBeus5gsdAKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.788 [XNIO-1 task-1] kgM49j23TD-vSr9bOiy57A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.789 [XNIO-1 task-1] kgM49j23TD-vSr9bOiy57A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.797 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:51d2edd6 +19:00:44.797 [XNIO-1 task-3] z3wELpCiS26WS3fRPlOr7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.798 [XNIO-1 task-3] z3wELpCiS26WS3fRPlOr7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.798 [XNIO-1 task-3] z3wELpCiS26WS3fRPlOr7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:44.799 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:51d2edd6 +19:00:44.804 [XNIO-1 task-3] z3wELpCiS26WS3fRPlOr7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.805 [XNIO-1 task-1] 64pTtuo6TSakMac3xF7jsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.805 [XNIO-1 task-1] 64pTtuo6TSakMac3xF7jsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.806 [XNIO-1 task-1] 64pTtuo6TSakMac3xF7jsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.807 [XNIO-1 task-1] 64pTtuo6TSakMac3xF7jsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e9c1bb9d-79a5-49cf-a9ad-b29c2209629e scope = null +19:00:44.811 [XNIO-1 task-3] ZvDLOfU1QwWOGyux2W_gWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.811 [XNIO-1 task-3] ZvDLOfU1QwWOGyux2W_gWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.811 [XNIO-1 task-3] ZvDLOfU1QwWOGyux2W_gWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.812 [XNIO-1 task-3] ZvDLOfU1QwWOGyux2W_gWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.815 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:949e2b5a +19:00:44.817 [XNIO-1 task-3] ZvDLOfU1QwWOGyux2W_gWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.821 [XNIO-1 task-2] EBk14Ms5TF2f9ID0R68FuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.821 [XNIO-1 task-2] EBk14Ms5TF2f9ID0R68FuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.825 [XNIO-1 task-2] EBk14Ms5TF2f9ID0R68FuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.825 [XNIO-1 task-2] EBk14Ms5TF2f9ID0R68FuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = H3vZ9pv1R1Wp4i1agB8ZGA redirectUri = http://localhost:8080/authorization +19:00:44.826 [XNIO-1 task-3] 12tvt8gBRq-W9jP5ui5Dmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.826 [XNIO-1 task-3] 12tvt8gBRq-W9jP5ui5Dmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.827 [XNIO-1 task-3] 12tvt8gBRq-W9jP5ui5Dmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.827 [XNIO-1 task-3] 12tvt8gBRq-W9jP5ui5Dmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.828 [XNIO-1 task-1] 64pTtuo6TSakMac3xF7jsQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.832 [XNIO-1 task-3] 12tvt8gBRq-W9jP5ui5Dmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.836 [XNIO-1 task-2] EBk14Ms5TF2f9ID0R68FuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.841 [XNIO-1 task-3] foi0_Az0QcmTMWMrauUGvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.841 [XNIO-1 task-3] foi0_Az0QcmTMWMrauUGvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.841 [XNIO-1 task-3] foi0_Az0QcmTMWMrauUGvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.843 [XNIO-1 task-3] foi0_Az0QcmTMWMrauUGvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:44.846 [XNIO-1 task-1] YdSromkiRGONTCgOxfs0AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.846 [XNIO-1 task-1] YdSromkiRGONTCgOxfs0AQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.847 [XNIO-1 task-1] YdSromkiRGONTCgOxfs0AQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.847 [XNIO-1 task-1] YdSromkiRGONTCgOxfs0AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:44.848 [XNIO-1 task-3] foi0_Az0QcmTMWMrauUGvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.859 [XNIO-1 task-1] YdSromkiRGONTCgOxfs0AQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.859 [XNIO-1 task-1] YdSromkiRGONTCgOxfs0AQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.859 [XNIO-1 task-3] ANiU1slCTXOuWvvbIp2gAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.859 [XNIO-1 task-3] ANiU1slCTXOuWvvbIp2gAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.860 [XNIO-1 task-3] ANiU1slCTXOuWvvbIp2gAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:44.866 [XNIO-1 task-3] ANiU1slCTXOuWvvbIp2gAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.875 [XNIO-1 task-1] 3XXu2AOTTQyQMesVzBdYAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.875 [XNIO-1 task-1] 3XXu2AOTTQyQMesVzBdYAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.875 [XNIO-1 task-1] 3XXu2AOTTQyQMesVzBdYAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.875 [XNIO-1 task-1] 3XXu2AOTTQyQMesVzBdYAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:44.878 [XNIO-1 task-3] 9a7LaifKQsyu57fSIuXrMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.878 [XNIO-1 task-3] 9a7LaifKQsyu57fSIuXrMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.879 [XNIO-1 task-3] 9a7LaifKQsyu57fSIuXrMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.879 [XNIO-1 task-3] 9a7LaifKQsyu57fSIuXrMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:44.881 [XNIO-1 task-2] ZQnjfUNfRd6sp173L5se8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.881 [XNIO-1 task-2] ZQnjfUNfRd6sp173L5se8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.881 [XNIO-1 task-2] ZQnjfUNfRd6sp173L5se8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.881 [XNIO-1 task-2] ZQnjfUNfRd6sp173L5se8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:44.892 [XNIO-1 task-2] ZQnjfUNfRd6sp173L5se8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.892 [XNIO-1 task-2] ZQnjfUNfRd6sp173L5se8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.892 [XNIO-1 task-3] 9a7LaifKQsyu57fSIuXrMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.892 [XNIO-1 task-1] 3XXu2AOTTQyQMesVzBdYAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.896 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:21d3c849-130d-4769-89d7-e03d88635da9 +19:00:44.899 [XNIO-1 task-1] dwV9U9VMSBqQXLsOvT32_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.899 [XNIO-1 task-1] dwV9U9VMSBqQXLsOvT32_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.900 [XNIO-1 task-1] dwV9U9VMSBqQXLsOvT32_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.900 [XNIO-1 task-1] dwV9U9VMSBqQXLsOvT32_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:44.908 [XNIO-1 task-1] dwV9U9VMSBqQXLsOvT32_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.908 [XNIO-1 task-1] dwV9U9VMSBqQXLsOvT32_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.908 [XNIO-1 task-2] B6NZYngsSJG4U_L4sWf5rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.908 [XNIO-1 task-2] B6NZYngsSJG4U_L4sWf5rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.909 [XNIO-1 task-2] B6NZYngsSJG4U_L4sWf5rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:44.916 [XNIO-1 task-1] xY4yNPAiRl217ihyJ2lN5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.916 [XNIO-1 task-1] xY4yNPAiRl217ihyJ2lN5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.917 [XNIO-1 task-1] xY4yNPAiRl217ihyJ2lN5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.917 [XNIO-1 task-1] xY4yNPAiRl217ihyJ2lN5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:44.925 [XNIO-1 task-2] B6NZYngsSJG4U_L4sWf5rg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.935 [XNIO-1 task-3] gbn8WIl4R56-yDINqMJsIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.928 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98c61c06-66d5-4812-a484-aeb99125a276 +19:00:44.941 [XNIO-1 task-3] gbn8WIl4R56-yDINqMJsIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.942 [XNIO-1 task-3] gbn8WIl4R56-yDINqMJsIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.942 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98c61c06-66d5-4812-a484-aeb99125a276 +19:00:44.943 [XNIO-1 task-3] gbn8WIl4R56-yDINqMJsIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QvHhxAK9RPqnIb4-ZcEoGw redirectUri = http://localhost:8080/authorization +19:00:44.952 [XNIO-1 task-1] xY4yNPAiRl217ihyJ2lN5Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.954 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbc24c5c +19:00:44.958 [XNIO-1 task-3] gbn8WIl4R56-yDINqMJsIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:44.958 [XNIO-1 task-3] gbn8WIl4R56-yDINqMJsIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.966 [XNIO-1 task-2] -f5VaY5MTR6SeuR2iJ24DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.966 [XNIO-1 task-2] -f5VaY5MTR6SeuR2iJ24DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.967 [XNIO-1 task-2] -f5VaY5MTR6SeuR2iJ24DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.968 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ce4e3c0 +19:00:44.969 [XNIO-1 task-2] -f5VaY5MTR6SeuR2iJ24DA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:44.974 [XNIO-1 task-1] SfnGZfQCQbipNzxHfBz35A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.974 [XNIO-1 task-1] SfnGZfQCQbipNzxHfBz35A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.975 [XNIO-1 task-1] SfnGZfQCQbipNzxHfBz35A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:44.975 [XNIO-1 task-1] SfnGZfQCQbipNzxHfBz35A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 98c61c06-66d5-4812-a484-aeb99125a276 scope = null +19:00:44.982 [XNIO-1 task-2] -f5VaY5MTR6SeuR2iJ24DA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:44.991 [XNIO-1 task-2] _B2uyN0AS1mjEhkX1838QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.991 [XNIO-1 task-2] _B2uyN0AS1mjEhkX1838QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:44.991 [XNIO-1 task-2] _B2uyN0AS1mjEhkX1838QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:44.992 [XNIO-1 task-2] _B2uyN0AS1mjEhkX1838QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:44.997 [XNIO-1 task-2] _B2uyN0AS1mjEhkX1838QQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:44.997 [XNIO-1 task-1] SfnGZfQCQbipNzxHfBz35A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.008 [XNIO-1 task-2] eLl6KM9HT1K1lhbYTVHk1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.009 [XNIO-1 task-2] eLl6KM9HT1K1lhbYTVHk1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.010 [XNIO-1 task-2] eLl6KM9HT1K1lhbYTVHk1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.010 [XNIO-1 task-2] eLl6KM9HT1K1lhbYTVHk1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:45.012 [XNIO-1 task-3] a_tqDnjtT66OBewvT2lF1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.013 [XNIO-1 task-3] a_tqDnjtT66OBewvT2lF1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.013 [XNIO-1 task-3] a_tqDnjtT66OBewvT2lF1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.014 [XNIO-1 task-3] a_tqDnjtT66OBewvT2lF1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmIzZTFhMzUtZDAwMC00ZmY4LWJhZjctNDAwYzBkNWRkZTdkOkFySDdIa1dfVDRld2dKM09neW1Hc1E=", "Basic NmIzZTFhMzUtZDAwMC00ZmY4LWJhZjctNDAwYzBkNWRkZTdkOkFySDdIa1dfVDRld2dKM09neW1Hc1E=", authorization) +19:00:45.017 [XNIO-1 task-2] eLl6KM9HT1K1lhbYTVHk1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:45.017 [XNIO-1 task-2] eLl6KM9HT1K1lhbYTVHk1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.023 [XNIO-1 task-3] a_tqDnjtT66OBewvT2lF1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.026 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:053d3b38 +19:00:45.035 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.035 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.035 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.035 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.035 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.036 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.036 [XNIO-1 task-2] e-zhJdlxQ_-9yfSoqeiqCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:45.037 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmIzZTFhMzUtZDAwMC00ZmY4LWJhZjctNDAwYzBkNWRkZTdkOkFySDdIa1dfVDRld2dKM09neW1Hc1E=", "Basic NmIzZTFhMzUtZDAwMC00ZmY4LWJhZjctNDAwYzBkNWRkZTdkOkFySDdIa1dfVDRld2dKM09neW1Hc1E=", authorization) +19:00:45.040 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3acbd567 +19:00:45.042 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3acbd567 +19:00:45.042 [XNIO-1 task-1] 9kqtWLAzQOyw0S_FGrVXGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.049 [XNIO-1 task-2] e-zhJdlxQ_-9yfSoqeiqCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.051 [XNIO-1 task-1] teA_GOMqRpC6-tgfghhJaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.051 [XNIO-1 task-1] teA_GOMqRpC6-tgfghhJaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.052 [XNIO-1 task-1] teA_GOMqRpC6-tgfghhJaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.052 [XNIO-1 task-1] teA_GOMqRpC6-tgfghhJaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.061 [XNIO-1 task-1] teA_GOMqRpC6-tgfghhJaQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.079 [XNIO-1 task-1] nJyXaVBkTmGUpLzoXoVG2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.079 [XNIO-1 task-1] nJyXaVBkTmGUpLzoXoVG2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.079 [XNIO-1 task-1] nJyXaVBkTmGUpLzoXoVG2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.081 [XNIO-1 task-1] nJyXaVBkTmGUpLzoXoVG2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.086 [XNIO-1 task-1] nJyXaVBkTmGUpLzoXoVG2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.096 [XNIO-1 task-1] h9J_jdGvS6qxa4YZrf5oFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.097 [XNIO-1 task-1] h9J_jdGvS6qxa4YZrf5oFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.098 [XNIO-1 task-1] h9J_jdGvS6qxa4YZrf5oFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.098 [XNIO-1 task-1] h9J_jdGvS6qxa4YZrf5oFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.101 [XNIO-1 task-2] mSmqGP3STk6mNLqOqzHBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.101 [XNIO-1 task-2] mSmqGP3STk6mNLqOqzHBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.101 [XNIO-1 task-2] mSmqGP3STk6mNLqOqzHBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.102 [XNIO-1 task-2] mSmqGP3STk6mNLqOqzHBLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = S_IHfM0BSwGA1qc6tuTsZA redirectUri = http://localhost:8080/authorization +19:00:45.103 [XNIO-1 task-1] h9J_jdGvS6qxa4YZrf5oFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.110 [XNIO-1 task-1] skpHWBXDSRqMOHYW4aw26Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.110 [XNIO-1 task-1] skpHWBXDSRqMOHYW4aw26Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.110 [XNIO-1 task-1] skpHWBXDSRqMOHYW4aw26Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.112 [XNIO-1 task-1] skpHWBXDSRqMOHYW4aw26Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.113 [XNIO-1 task-2] mSmqGP3STk6mNLqOqzHBLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.117 [XNIO-1 task-1] skpHWBXDSRqMOHYW4aw26Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.122 [XNIO-1 task-1] S60eKjaZQ4eGJi7KJW4kVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.122 [XNIO-1 task-1] S60eKjaZQ4eGJi7KJW4kVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.122 [XNIO-1 task-1] S60eKjaZQ4eGJi7KJW4kVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.125 [XNIO-1 task-1] S60eKjaZQ4eGJi7KJW4kVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:45.130 [XNIO-1 task-1] S60eKjaZQ4eGJi7KJW4kVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.139 [XNIO-1 task-1] yN9Pz5FdQAiMXxzUHe5PLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.139 [XNIO-1 task-1] yN9Pz5FdQAiMXxzUHe5PLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.139 [XNIO-1 task-1] yN9Pz5FdQAiMXxzUHe5PLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.140 [XNIO-1 task-1] yN9Pz5FdQAiMXxzUHe5PLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:45.142 [XNIO-1 task-2] h1tHhfWbRHGhgAe2AgkvHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.143 [XNIO-1 task-2] h1tHhfWbRHGhgAe2AgkvHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.143 [XNIO-1 task-2] h1tHhfWbRHGhgAe2AgkvHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.144 [XNIO-1 task-2] h1tHhfWbRHGhgAe2AgkvHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDJlODRiOTMtM2IyMi00NzA3LWIyMDktOGRiNmRmMmM4MDRiOnFfY3JKdmxaUm5hOTJXV1VYaTU5ZGc=", "Basic ZDJlODRiOTMtM2IyMi00NzA3LWIyMDktOGRiNmRmMmM4MDRiOnFfY3JKdmxaUm5hOTJXV1VYaTU5ZGc=", authorization) +19:00:45.154 [XNIO-1 task-2] h1tHhfWbRHGhgAe2AgkvHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.160 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1a07aef6-b7a6-4841-a5a5-6e1ff185f6de +19:00:45.164 [XNIO-1 task-2] kQctpiIuTQONxMC0BOzwSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.164 [XNIO-1 task-2] kQctpiIuTQONxMC0BOzwSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.165 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1a07aef6-b7a6-4841-a5a5-6e1ff185f6de +19:00:45.167 [XNIO-1 task-2] kQctpiIuTQONxMC0BOzwSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.167 [XNIO-1 task-2] kQctpiIuTQONxMC0BOzwSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.173 [XNIO-1 task-2] kQctpiIuTQONxMC0BOzwSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.180 [XNIO-1 task-2] AOYWGFouTTOWLPhbzKOWeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.180 [XNIO-1 task-2] AOYWGFouTTOWLPhbzKOWeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.181 [XNIO-1 task-2] AOYWGFouTTOWLPhbzKOWeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.181 [XNIO-1 task-2] AOYWGFouTTOWLPhbzKOWeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.188 [XNIO-1 task-2] AOYWGFouTTOWLPhbzKOWeQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.188 [XNIO-1 task-1] yN9Pz5FdQAiMXxzUHe5PLw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.195 [XNIO-1 task-2] TyhXjyYoTuK38RHLbS7oaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.195 [XNIO-1 task-2] TyhXjyYoTuK38RHLbS7oaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.195 [XNIO-1 task-2] TyhXjyYoTuK38RHLbS7oaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.196 [XNIO-1 task-2] TyhXjyYoTuK38RHLbS7oaQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.228 [XNIO-1 task-2] TyhXjyYoTuK38RHLbS7oaQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.235 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:038be652 +19:00:45.242 [XNIO-1 task-2] GiXUATOuTxWYKtXWVz-qoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.242 [XNIO-1 task-2] GiXUATOuTxWYKtXWVz-qoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.243 [XNIO-1 task-2] GiXUATOuTxWYKtXWVz-qoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.243 [XNIO-1 task-1] IK7qyJcOR7eMmgHhqY4Mhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.243 [XNIO-1 task-1] IK7qyJcOR7eMmgHhqY4Mhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.248 [XNIO-1 task-2] GiXUATOuTxWYKtXWVz-qoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:45.248 [XNIO-1 task-2] GiXUATOuTxWYKtXWVz-qoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QsZCweMvQbiPekIjuoQXzw redirectUri = http://localhost:8080/authorization +19:00:45.248 [XNIO-1 task-1] IK7qyJcOR7eMmgHhqY4Mhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:45.261 [XNIO-1 task-1] IK7qyJcOR7eMmgHhqY4Mhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.262 [XNIO-1 task-2] GiXUATOuTxWYKtXWVz-qoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:45.266 [XNIO-1 task-2] GiXUATOuTxWYKtXWVz-qoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.280 [XNIO-1 task-2] Q3btBGCxTF2SNeE7UoNsbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.281 [XNIO-1 task-2] Q3btBGCxTF2SNeE7UoNsbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.281 [XNIO-1 task-2] Q3btBGCxTF2SNeE7UoNsbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.281 [XNIO-1 task-2] Q3btBGCxTF2SNeE7UoNsbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.289 [XNIO-1 task-2] Q3btBGCxTF2SNeE7UoNsbA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.295 [XNIO-1 task-2] t6w1omJGTLWfsf9zLBuM4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.295 [XNIO-1 task-2] t6w1omJGTLWfsf9zLBuM4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.295 [XNIO-1 task-2] t6w1omJGTLWfsf9zLBuM4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.296 [XNIO-1 task-2] t6w1omJGTLWfsf9zLBuM4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = -R-KEV-YTMOs686CtceWDA redirectUri = http://localhost:8080/authorization +19:00:45.302 [XNIO-1 task-2] t6w1omJGTLWfsf9zLBuM4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.304 [XNIO-1 task-1] qelkBeK2Q1WPP7qiinVcxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.305 [XNIO-1 task-1] qelkBeK2Q1WPP7qiinVcxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.305 [XNIO-1 task-1] qelkBeK2Q1WPP7qiinVcxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.306 [XNIO-1 task-1] qelkBeK2Q1WPP7qiinVcxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:45.308 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbc24c5c +19:00:45.313 [XNIO-1 task-1] qelkBeK2Q1WPP7qiinVcxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.323 [XNIO-1 task-1] P4lu_DfkSJewVjWZMk7v5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.324 [XNIO-1 task-1] P4lu_DfkSJewVjWZMk7v5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.325 [XNIO-1 task-1] P4lu_DfkSJewVjWZMk7v5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.325 [XNIO-1 task-2] B1eQ2_8OQ7u2oEp4XQ1F3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.326 [XNIO-1 task-2] B1eQ2_8OQ7u2oEp4XQ1F3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.325 [XNIO-1 task-1] P4lu_DfkSJewVjWZMk7v5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:45.326 [XNIO-1 task-2] B1eQ2_8OQ7u2oEp4XQ1F3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.327 [XNIO-1 task-2] B1eQ2_8OQ7u2oEp4XQ1F3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:45.332 [XNIO-1 task-2] B1eQ2_8OQ7u2oEp4XQ1F3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.341 [XNIO-1 task-2] Qs-hrf-rTWGSeXt8w7X9uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.343 [XNIO-1 task-2] Qs-hrf-rTWGSeXt8w7X9uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.344 [XNIO-1 task-2] Qs-hrf-rTWGSeXt8w7X9uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.344 [XNIO-1 task-2] Qs-hrf-rTWGSeXt8w7X9uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:45.346 [XNIO-1 task-1] P4lu_DfkSJewVjWZMk7v5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.354 [XNIO-1 task-2] Qs-hrf-rTWGSeXt8w7X9uw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.364 [XNIO-1 task-1] 6Nj3vx38RRatRzBZ-Jo3wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.365 [XNIO-1 task-1] 6Nj3vx38RRatRzBZ-Jo3wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.366 [XNIO-1 task-1] 6Nj3vx38RRatRzBZ-Jo3wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.366 [XNIO-1 task-1] 6Nj3vx38RRatRzBZ-Jo3wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:45.371 [XNIO-1 task-1] 6Nj3vx38RRatRzBZ-Jo3wQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.380 [XNIO-1 task-1] Q6L4h6uiSJmOm_IPkj84Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.381 [XNIO-1 task-1] Q6L4h6uiSJmOm_IPkj84Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.381 [XNIO-1 task-1] Q6L4h6uiSJmOm_IPkj84Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.382 [XNIO-1 task-1] Q6L4h6uiSJmOm_IPkj84Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", "Basic ZGUwODRmZjAtNjJmNS00YjZmLWI2MjktNTk3NjgzZTlkMmNlOjJXQmZmdEtsUkh5U1ZZM19hTG1XU2c=", authorization) +19:00:45.390 [XNIO-1 task-1] Q6L4h6uiSJmOm_IPkj84Gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.393 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:413d6ed8-936d-4e39-af17-88ce9f55792a +19:00:45.396 [XNIO-1 task-1] YclbWdXbSL62DkZqB0L4tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.396 [XNIO-1 task-1] YclbWdXbSL62DkZqB0L4tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.398 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbc24c5c +19:00:45.399 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:413d6ed8-936d-4e39-af17-88ce9f55792a +19:00:45.399 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:413d6ed8-936d-4e39-af17-88ce9f55792a +19:00:45.399 [XNIO-1 task-1] YclbWdXbSL62DkZqB0L4tw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OsczUDJjTAmEZX77gaY6Eg redirectUri = http://localhost:8080/authorization +19:00:45.402 [XNIO-1 task-2] 2P6GRS3ESX6Rm-JIxP6PAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.402 [XNIO-1 task-2] 2P6GRS3ESX6Rm-JIxP6PAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.402 [XNIO-1 task-2] 2P6GRS3ESX6Rm-JIxP6PAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.403 [XNIO-1 task-2] 2P6GRS3ESX6Rm-JIxP6PAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.409 [XNIO-1 task-1] YclbWdXbSL62DkZqB0L4tw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.410 [XNIO-1 task-2] 2P6GRS3ESX6Rm-JIxP6PAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.426 [XNIO-1 task-2] FWAn5L4-RMSYM6gbjlhlpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.426 [XNIO-1 task-2] FWAn5L4-RMSYM6gbjlhlpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.426 [XNIO-1 task-2] FWAn5L4-RMSYM6gbjlhlpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.427 [XNIO-1 task-2] FWAn5L4-RMSYM6gbjlhlpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:45.432 [XNIO-1 task-1] b_V87OGkSieidBj1FZfWKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.433 [XNIO-1 task-1] b_V87OGkSieidBj1FZfWKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.433 [XNIO-1 task-1] b_V87OGkSieidBj1FZfWKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.434 [XNIO-1 task-1] b_V87OGkSieidBj1FZfWKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:45.434 [XNIO-1 task-2] FWAn5L4-RMSYM6gbjlhlpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.440 [XNIO-1 task-2] g6Sp0x6CSfuNrBJTPdjDQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.440 [XNIO-1 task-2] g6Sp0x6CSfuNrBJTPdjDQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.440 [XNIO-1 task-2] g6Sp0x6CSfuNrBJTPdjDQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.441 [XNIO-1 task-2] g6Sp0x6CSfuNrBJTPdjDQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:45.448 [XNIO-1 task-2] g6Sp0x6CSfuNrBJTPdjDQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.450 [XNIO-1 task-1] b_V87OGkSieidBj1FZfWKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.452 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f42a3c6-044c-405b-8a1c-5ae483c41c51 +19:00:45.453 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6f42a3c6-044c-405b-8a1c-5ae483c41c51 +19:00:45.455 [XNIO-1 task-2] cvbZGSvAQ0i6mMUuLTkVMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.455 [XNIO-1 task-2] cvbZGSvAQ0i6mMUuLTkVMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.459 [XNIO-1 task-2] cvbZGSvAQ0i6mMUuLTkVMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.462 [XNIO-1 task-2] cvbZGSvAQ0i6mMUuLTkVMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.463 [XNIO-1 task-3] iZH-d78pQ7OatpBDU5Gf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.463 [XNIO-1 task-3] iZH-d78pQ7OatpBDU5Gf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.464 [XNIO-1 task-3] iZH-d78pQ7OatpBDU5Gf5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.464 [XNIO-1 task-3] iZH-d78pQ7OatpBDU5Gf5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 7WtOMjbwS_iaT_gCtRuYQg redirectUri = http://localhost:8080/authorization +19:00:45.471 [XNIO-1 task-2] cvbZGSvAQ0i6mMUuLTkVMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.476 [XNIO-1 task-1] NuHKyLfVR_-_N6ZTCy4NzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.476 [XNIO-1 task-1] NuHKyLfVR_-_N6ZTCy4NzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.476 [XNIO-1 task-1] NuHKyLfVR_-_N6ZTCy4NzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.476 [XNIO-1 task-3] iZH-d78pQ7OatpBDU5Gf5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.476 [XNIO-1 task-1] NuHKyLfVR_-_N6ZTCy4NzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:45.477 [XNIO-1 task-2] BSKS55qvSuOeB3D1YI8mXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.477 [XNIO-1 task-2] BSKS55qvSuOeB3D1YI8mXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.477 [XNIO-1 task-2] BSKS55qvSuOeB3D1YI8mXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.478 [XNIO-1 task-2] BSKS55qvSuOeB3D1YI8mXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:45.481 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6f42a3c6-044c-405b-8a1c-5ae483c41c51 +19:00:45.484 [XNIO-1 task-2] BSKS55qvSuOeB3D1YI8mXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.514 [XNIO-1 task-1] NuHKyLfVR_-_N6ZTCy4NzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.514 [XNIO-1 task-1] NuHKyLfVR_-_N6ZTCy4NzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.514 [XNIO-1 task-3] itpthFzZT-muW77tJ6sdfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.515 [XNIO-1 task-3] itpthFzZT-muW77tJ6sdfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.515 [XNIO-1 task-3] itpthFzZT-muW77tJ6sdfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.515 [XNIO-1 task-3] itpthFzZT-muW77tJ6sdfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 361343cb-476f-436d-950f-177753b44d52 scope = null +19:00:45.518 [XNIO-1 task-2] dgan5KcWTZyd6r35BoAEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.518 [XNIO-1 task-2] dgan5KcWTZyd6r35BoAEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.518 [XNIO-1 task-2] dgan5KcWTZyd6r35BoAEgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.519 [XNIO-1 task-2] dgan5KcWTZyd6r35BoAEgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.527 [XNIO-1 task-2] dgan5KcWTZyd6r35BoAEgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.533 [XNIO-1 task-3] itpthFzZT-muW77tJ6sdfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.540 [XNIO-1 task-2] Y5cjn8FhTEC4ZJlRBKKstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.540 [XNIO-1 task-2] Y5cjn8FhTEC4ZJlRBKKstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.541 [XNIO-1 task-2] Y5cjn8FhTEC4ZJlRBKKstQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.541 [XNIO-1 task-2] Y5cjn8FhTEC4ZJlRBKKstQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.548 [XNIO-1 task-2] Y5cjn8FhTEC4ZJlRBKKstQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.558 [XNIO-1 task-2] 9fgBbbYIQ9qSE5heD6zL2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.558 [XNIO-1 task-3] R3P18h0IS9-jm391f87bog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.558 [XNIO-1 task-3] R3P18h0IS9-jm391f87bog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.558 [XNIO-1 task-2] 9fgBbbYIQ9qSE5heD6zL2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.559 [XNIO-1 task-3] R3P18h0IS9-jm391f87bog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.559 [XNIO-1 task-2] 9fgBbbYIQ9qSE5heD6zL2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.559 [XNIO-1 task-3] R3P18h0IS9-jm391f87bog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.560 [XNIO-1 task-3] R3P18h0IS9-jm391f87bog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Q8nkW9m9Tdaq4BkM-he8cA redirectUri = http://localhost:8080/authorization +19:00:45.565 [XNIO-1 task-2] 9fgBbbYIQ9qSE5heD6zL2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.571 [XNIO-1 task-2] 18eYYyLRSlWFF6NLreoBbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.571 [XNIO-1 task-2] 18eYYyLRSlWFF6NLreoBbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.572 [XNIO-1 task-2] 18eYYyLRSlWFF6NLreoBbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.572 [XNIO-1 task-2] 18eYYyLRSlWFF6NLreoBbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.576 [XNIO-1 task-3] R3P18h0IS9-jm391f87bog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.578 [XNIO-1 task-2] 18eYYyLRSlWFF6NLreoBbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.598 [XNIO-1 task-2] up7GAKajToSs7_O6QMSj5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.599 [XNIO-1 task-2] up7GAKajToSs7_O6QMSj5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.600 [XNIO-1 task-2] up7GAKajToSs7_O6QMSj5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.601 [XNIO-1 task-2] up7GAKajToSs7_O6QMSj5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWEwN2FlZjYtYjdhNi00ODQxLWE1YTUtNmUxZmYxODVmNmRlOnhXYXBDTU8wVG1DUTY3cDdGajFlNGc=", "Basic MWEwN2FlZjYtYjdhNi00ODQxLWE1YTUtNmUxZmYxODVmNmRlOnhXYXBDTU8wVG1DUTY3cDdGajFlNGc=", authorization) +19:00:45.609 [XNIO-1 task-2] up7GAKajToSs7_O6QMSj5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.617 [XNIO-1 task-2] 4btzTYHHQ-qKvLXV8MC5gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.617 [XNIO-1 task-2] 4btzTYHHQ-qKvLXV8MC5gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.617 [XNIO-1 task-2] 4btzTYHHQ-qKvLXV8MC5gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.618 [XNIO-1 task-2] 4btzTYHHQ-qKvLXV8MC5gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:45.624 [XNIO-1 task-2] 4btzTYHHQ-qKvLXV8MC5gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.626 [XNIO-1 task-3] Q9k3Tu-rR2-ScvitHMVukw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.627 [XNIO-1 task-3] Q9k3Tu-rR2-ScvitHMVukw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.628 [XNIO-1 task-3] Q9k3Tu-rR2-ScvitHMVukw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.628 [XNIO-1 task-3] Q9k3Tu-rR2-ScvitHMVukw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:45.636 [XNIO-1 task-3] Q9k3Tu-rR2-ScvitHMVukw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:45.637 [XNIO-1 task-2] FcSOT4d4TyK-5KbWMFdwZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.637 [XNIO-1 task-2] FcSOT4d4TyK-5KbWMFdwZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.638 [XNIO-1 task-2] FcSOT4d4TyK-5KbWMFdwZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.637 [XNIO-1 task-3] Q9k3Tu-rR2-ScvitHMVukw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.638 [XNIO-1 task-2] FcSOT4d4TyK-5KbWMFdwZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.644 [XNIO-1 task-2] FcSOT4d4TyK-5KbWMFdwZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.649 [XNIO-1 task-2] akfCDMRMR_uueXwxf9YZBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.649 [XNIO-1 task-2] akfCDMRMR_uueXwxf9YZBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.649 [XNIO-1 task-2] akfCDMRMR_uueXwxf9YZBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.650 [XNIO-1 task-2] akfCDMRMR_uueXwxf9YZBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.655 [XNIO-1 task-2] akfCDMRMR_uueXwxf9YZBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.666 [XNIO-1 task-2] rCjWYuhITl2J93LHYrXMgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.667 [XNIO-1 task-2] rCjWYuhITl2J93LHYrXMgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.667 [XNIO-1 task-2] rCjWYuhITl2J93LHYrXMgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.667 [XNIO-1 task-2] rCjWYuhITl2J93LHYrXMgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.672 [XNIO-1 task-2] rCjWYuhITl2J93LHYrXMgw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.679 [XNIO-1 task-2] QWt8K0SWRwmupZ9MT6HSwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.679 [XNIO-1 task-2] QWt8K0SWRwmupZ9MT6HSwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.679 [XNIO-1 task-2] QWt8K0SWRwmupZ9MT6HSwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.680 [XNIO-1 task-2] QWt8K0SWRwmupZ9MT6HSwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.685 [XNIO-1 task-1] -rq1RD0qQhKE-2J3NR1BbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.686 [XNIO-1 task-2] QWt8K0SWRwmupZ9MT6HSwA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.687 [XNIO-1 task-1] -rq1RD0qQhKE-2J3NR1BbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.687 [XNIO-1 task-1] -rq1RD0qQhKE-2J3NR1BbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.687 [XNIO-1 task-1] -rq1RD0qQhKE-2J3NR1BbA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 093hD5_JRn66EqZDxfI2aQ redirectUri = http://localhost:8080/authorization +19:00:45.691 [XNIO-1 task-3] vpPdmT7uTwy_HXEM2-vXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.692 [XNIO-1 task-3] vpPdmT7uTwy_HXEM2-vXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.692 [XNIO-1 task-3] vpPdmT7uTwy_HXEM2-vXfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.692 [XNIO-1 task-2] KrCtLTH_Qri1MJHzd7qDIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.692 [XNIO-1 task-2] KrCtLTH_Qri1MJHzd7qDIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.692 [XNIO-1 task-3] vpPdmT7uTwy_HXEM2-vXfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = EpZauShARF6Kdsf8WgD2Tw redirectUri = http://localhost:8080/authorization +19:00:45.693 [XNIO-1 task-2] KrCtLTH_Qri1MJHzd7qDIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.693 [XNIO-1 task-2] KrCtLTH_Qri1MJHzd7qDIQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.694 [XNIO-1 task-1] -rq1RD0qQhKE-2J3NR1BbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.695 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:df59634c +19:00:45.696 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:df59634c +19:00:45.699 [XNIO-1 task-2] KrCtLTH_Qri1MJHzd7qDIQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.706 [XNIO-1 task-2] 6rkGgP54QHmtmrfBPW3Hsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.706 [XNIO-1 task-2] 6rkGgP54QHmtmrfBPW3Hsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.707 [XNIO-1 task-2] 6rkGgP54QHmtmrfBPW3Hsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.707 [XNIO-1 task-2] 6rkGgP54QHmtmrfBPW3Hsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.713 [XNIO-1 task-2] 6rkGgP54QHmtmrfBPW3Hsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.717 [XNIO-1 task-3] vpPdmT7uTwy_HXEM2-vXfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.718 [XNIO-1 task-2] 2SKUw58xSxO73Dn5HB2Bdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.720 [XNIO-1 task-2] 2SKUw58xSxO73Dn5HB2Bdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.720 [XNIO-1 task-2] 2SKUw58xSxO73Dn5HB2Bdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.720 [XNIO-1 task-2] 2SKUw58xSxO73Dn5HB2Bdw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGVjMTY1ZjMtMDRmZC00NTMxLTgwNTQtOGUxMTkzMmZlMTQ5OjlYaG9TUnZxUjdPQlNYcHNZaUI3VkE=", "Basic ZGVjMTY1ZjMtMDRmZC00NTMxLTgwNTQtOGUxMTkzMmZlMTQ5OjlYaG9TUnZxUjdPQlNYcHNZaUI3VkE=", authorization) +19:00:45.732 [XNIO-1 task-2] 2SKUw58xSxO73Dn5HB2Bdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.740 [XNIO-1 task-2] dh2zMgJFTy6k4lREpo5f-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.741 [XNIO-1 task-2] dh2zMgJFTy6k4lREpo5f-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.741 [XNIO-1 task-2] dh2zMgJFTy6k4lREpo5f-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.741 [XNIO-1 task-2] dh2zMgJFTy6k4lREpo5f-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:45.742 [XNIO-1 task-3] kPSaElP7RrO15GS8qhhLqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.742 [XNIO-1 task-3] kPSaElP7RrO15GS8qhhLqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.742 [XNIO-1 task-3] kPSaElP7RrO15GS8qhhLqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.743 [XNIO-1 task-3] kPSaElP7RrO15GS8qhhLqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzZDZlZDgtOTM2ZC00ZTM5LWFmMTctODhjZTlmNTU3OTJhOnBOWHYzcjd5UzRhMFhjcjNOcUpQS0E=", "Basic NDEzZDZlZDgtOTM2ZC00ZTM5LWFmMTctODhjZTlmNTU3OTJhOnBOWHYzcjd5UzRhMFhjcjNOcUpQS0E=", authorization) +19:00:45.748 [XNIO-1 task-3] kPSaElP7RrO15GS8qhhLqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.755 [XNIO-1 task-2] dh2zMgJFTy6k4lREpo5f-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:45.755 [XNIO-1 task-2] dh2zMgJFTy6k4lREpo5f-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.758 [XNIO-1 task-3] CXf5HaE9RZ29Y7JUEdz8Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.758 [XNIO-1 task-3] CXf5HaE9RZ29Y7JUEdz8Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.759 [XNIO-1 task-3] CXf5HaE9RZ29Y7JUEdz8Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.759 [XNIO-1 task-3] CXf5HaE9RZ29Y7JUEdz8Tg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.764 [XNIO-1 task-3] CXf5HaE9RZ29Y7JUEdz8Tg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.772 [XNIO-1 task-3] OcVTmNRHTOWFZAyyPl6D_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.772 [XNIO-1 task-3] OcVTmNRHTOWFZAyyPl6D_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.772 [XNIO-1 task-3] OcVTmNRHTOWFZAyyPl6D_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.773 [XNIO-1 task-3] OcVTmNRHTOWFZAyyPl6D_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.779 [XNIO-1 task-3] OcVTmNRHTOWFZAyyPl6D_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.784 [XNIO-1 task-3] I2PVl714QH61AnbfXN55Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.784 [XNIO-1 task-3] I2PVl714QH61AnbfXN55Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.784 [XNIO-1 task-3] I2PVl714QH61AnbfXN55Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.785 [XNIO-1 task-3] I2PVl714QH61AnbfXN55Aw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.790 [XNIO-1 task-3] I2PVl714QH61AnbfXN55Aw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.795 [XNIO-1 task-3] hC1iHBDgQw-qB3hQpkMobA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.795 [XNIO-1 task-3] hC1iHBDgQw-qB3hQpkMobA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.795 [XNIO-1 task-3] hC1iHBDgQw-qB3hQpkMobA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.795 [XNIO-1 task-3] hC1iHBDgQw-qB3hQpkMobA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.803 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:038be652 +19:00:45.804 [XNIO-1 task-2] 0mHfH8SwTc2HwG1NB6StGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.804 [XNIO-1 task-2] 0mHfH8SwTc2HwG1NB6StGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.804 [XNIO-1 task-2] 0mHfH8SwTc2HwG1NB6StGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.805 [XNIO-1 task-2] 0mHfH8SwTc2HwG1NB6StGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sh4RJ9YuQy6OWMcRykK1ag redirectUri = http://localhost:8080/authorization +19:00:45.806 [XNIO-1 task-3] hC1iHBDgQw-qB3hQpkMobA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.817 [XNIO-1 task-2] 0mHfH8SwTc2HwG1NB6StGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.821 [XNIO-1 task-3] 62NkXAKLRyKmNmVIe6Ienw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.821 [XNIO-1 task-3] 62NkXAKLRyKmNmVIe6Ienw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.822 [XNIO-1 task-3] 62NkXAKLRyKmNmVIe6Ienw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.822 [XNIO-1 task-3] 62NkXAKLRyKmNmVIe6Ienw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:45.829 [XNIO-1 task-3] 62NkXAKLRyKmNmVIe6Ienw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.839 [XNIO-1 task-3] QGSsA_00Q06gesuf9D4q4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.839 [XNIO-1 task-3] QGSsA_00Q06gesuf9D4q4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.845 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:df59634c +19:00:45.845 [XNIO-1 task-3] QGSsA_00Q06gesuf9D4q4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.846 [XNIO-1 task-3] QGSsA_00Q06gesuf9D4q4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.857 [XNIO-1 task-3] QGSsA_00Q06gesuf9D4q4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.861 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbc24c5c +19:00:45.865 [XNIO-1 task-3] xbJgvXDmSCiyLfI4njn-aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.865 [XNIO-1 task-3] xbJgvXDmSCiyLfI4njn-aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.866 [XNIO-1 task-3] xbJgvXDmSCiyLfI4njn-aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.866 [XNIO-1 task-3] xbJgvXDmSCiyLfI4njn-aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:45.872 [XNIO-1 task-3] xbJgvXDmSCiyLfI4njn-aQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.879 [XNIO-1 task-3] 9qFdMZUyTkqBedzhOdFBGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.880 [XNIO-1 task-3] 9qFdMZUyTkqBedzhOdFBGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.881 [XNIO-1 task-3] 9qFdMZUyTkqBedzhOdFBGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.881 [XNIO-1 task-3] 9qFdMZUyTkqBedzhOdFBGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:45.888 [XNIO-1 task-3] 9qFdMZUyTkqBedzhOdFBGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.888 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbc24c5c +19:00:45.901 [XNIO-1 task-3] 5sxm1CP2SJOWmYMxUlMLlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.901 [XNIO-1 task-3] 5sxm1CP2SJOWmYMxUlMLlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.901 [XNIO-1 task-3] 5sxm1CP2SJOWmYMxUlMLlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.901 [XNIO-1 task-3] 5sxm1CP2SJOWmYMxUlMLlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:45.906 [XNIO-1 task-2] JN2dW7X0TdOG2s0nvL2SOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.906 [XNIO-1 task-2] JN2dW7X0TdOG2s0nvL2SOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.906 [XNIO-1 task-2] JN2dW7X0TdOG2s0nvL2SOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.907 [XNIO-1 task-2] JN2dW7X0TdOG2s0nvL2SOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", authorization) +19:00:45.908 [XNIO-1 task-3] 5sxm1CP2SJOWmYMxUlMLlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.915 [XNIO-1 task-3] ybL_Sp1HQLyqrmUm4FPjVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.916 [XNIO-1 task-3] ybL_Sp1HQLyqrmUm4FPjVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.917 [XNIO-1 task-3] ybL_Sp1HQLyqrmUm4FPjVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.919 [XNIO-1 task-3] ybL_Sp1HQLyqrmUm4FPjVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:45.919 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbc24c5c +19:00:45.925 [XNIO-1 task-3] ybL_Sp1HQLyqrmUm4FPjVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.926 [XNIO-1 task-2] JN2dW7X0TdOG2s0nvL2SOw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:45.939 [XNIO-1 task-2] 9m4He1a6QYCc26O0eWeCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.939 [XNIO-1 task-2] 9m4He1a6QYCc26O0eWeCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.939 [XNIO-1 task-2] 9m4He1a6QYCc26O0eWeCNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:45.940 [XNIO-1 task-2] 9m4He1a6QYCc26O0eWeCNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:45.948 [XNIO-1 task-2] 9m4He1a6QYCc26O0eWeCNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:45.964 [XNIO-1 task-2] nCAqF0SjSw63QfFWdKFreQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.964 [XNIO-1 task-2] nCAqF0SjSw63QfFWdKFreQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.965 [XNIO-1 task-2] nCAqF0SjSw63QfFWdKFreQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.965 [XNIO-1 task-2] nCAqF0SjSw63QfFWdKFreQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:45.974 [XNIO-1 task-2] nCAqF0SjSw63QfFWdKFreQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:45.986 [XNIO-1 task-2] zA-6pP-GT5uXAumdSfjtdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.986 [XNIO-1 task-2] zA-6pP-GT5uXAumdSfjtdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.992 [XNIO-1 task-2] zA-6pP-GT5uXAumdSfjtdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.992 [XNIO-1 task-2] zA-6pP-GT5uXAumdSfjtdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:45.999 [XNIO-1 task-3] TgmdZXdVS2K6H386_Ght2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:45.999 [XNIO-1 task-3] TgmdZXdVS2K6H386_Ght2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:45.999 [XNIO-1 task-3] TgmdZXdVS2K6H386_Ght2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.000 [XNIO-1 task-3] TgmdZXdVS2K6H386_Ght2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MThiMWYxOGYtYmQxNC00ZDY0LThhYzEtYmEzNTRmZDdjNDgzOmRrUEs3aWZaVE9PR0R3VGhrek0zMnc=", "Basic MThiMWYxOGYtYmQxNC00ZDY0LThhYzEtYmEzNTRmZDdjNDgzOmRrUEs3aWZaVE9PR0R3VGhrek0zMnc=", authorization) +19:00:46.003 [XNIO-1 task-2] zA-6pP-GT5uXAumdSfjtdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.016 [XNIO-1 task-2] 4d0v2q4TSDeSFMo6YeChxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.017 [XNIO-1 task-2] 4d0v2q4TSDeSFMo6YeChxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.022 [XNIO-1 task-2] 4d0v2q4TSDeSFMo6YeChxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.023 [XNIO-1 task-2] 4d0v2q4TSDeSFMo6YeChxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:46.021 [XNIO-1 task-3] TgmdZXdVS2K6H386_Ght2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.024 [XNIO-1 task-3] TgmdZXdVS2K6H386_Ght2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.033 [XNIO-1 task-2] 4d0v2q4TSDeSFMo6YeChxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.038 [XNIO-1 task-3] YKP-LF2SSSKj0-t4yBLP2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.038 [XNIO-1 task-3] YKP-LF2SSSKj0-t4yBLP2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.038 [XNIO-1 task-3] YKP-LF2SSSKj0-t4yBLP2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.039 [XNIO-1 task-3] YKP-LF2SSSKj0-t4yBLP2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 44932da1-0ade-4766-887d-e1016192ffa3 scope = null +19:00:46.043 [XNIO-1 task-2] LYdjumyQTsOAT8v7ybCcLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.048 [XNIO-1 task-2] LYdjumyQTsOAT8v7ybCcLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.054 [XNIO-1 task-2] LYdjumyQTsOAT8v7ybCcLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.054 [XNIO-1 task-2] LYdjumyQTsOAT8v7ybCcLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:46.054 [XNIO-1 task-2] LYdjumyQTsOAT8v7ybCcLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.062 [XNIO-1 task-2] LYdjumyQTsOAT8v7ybCcLA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.069 [XNIO-1 task-2] Trq3PJHqT5m1HUo2jxjuhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.069 [XNIO-1 task-3] NZCecuqeT0qK1VqLe1VNgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.069 [XNIO-1 task-2] Trq3PJHqT5m1HUo2jxjuhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.070 [XNIO-1 task-2] Trq3PJHqT5m1HUo2jxjuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.070 [XNIO-1 task-2] Trq3PJHqT5m1HUo2jxjuhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.072 [XNIO-1 task-2] Trq3PJHqT5m1HUo2jxjuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.073 [XNIO-1 task-3] NZCecuqeT0qK1VqLe1VNgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Glze1LsETf6rxm9abxbYxQ redirectUri = http://localhost:8080/authorization +19:00:46.073 [XNIO-1 task-2] Trq3PJHqT5m1HUo2jxjuhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.079 [XNIO-1 task-2] Trq3PJHqT5m1HUo2jxjuhw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.082 [XNIO-1 task-1] zzPPbKNxTeqCwGQ6lVZyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.082 [XNIO-1 task-1] zzPPbKNxTeqCwGQ6lVZyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.082 [XNIO-1 task-1] zzPPbKNxTeqCwGQ6lVZyGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.083 [XNIO-1 task-1] zzPPbKNxTeqCwGQ6lVZyGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IhBsCcCDSymPIjv21zqhzg redirectUri = http://localhost:8080/authorization +19:00:46.084 [XNIO-1 task-3] NZCecuqeT0qK1VqLe1VNgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.085 [XNIO-1 task-2] O_liUc0dTTqIItZSypKhLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.086 [XNIO-1 task-2] O_liUc0dTTqIItZSypKhLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.087 [XNIO-1 task-2] O_liUc0dTTqIItZSypKhLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.087 [XNIO-1 task-2] O_liUc0dTTqIItZSypKhLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:46.095 [XNIO-1 task-2] O_liUc0dTTqIItZSypKhLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.104 [XNIO-1 task-2] CYFJ_oUhRfazULQAcgQ7CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.104 [XNIO-1 task-2] CYFJ_oUhRfazULQAcgQ7CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.104 [XNIO-1 task-3] tMJ3JC1WShy-0q6Jg7uaCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.105 [XNIO-1 task-2] CYFJ_oUhRfazULQAcgQ7CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.104 [XNIO-1 task-3] tMJ3JC1WShy-0q6Jg7uaCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.106 [XNIO-1 task-3] tMJ3JC1WShy-0q6Jg7uaCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.107 [XNIO-1 task-3] tMJ3JC1WShy-0q6Jg7uaCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.107 [XNIO-1 task-3] tMJ3JC1WShy-0q6Jg7uaCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:46.115 [XNIO-1 task-3] tMJ3JC1WShy-0q6Jg7uaCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.117 [XNIO-1 task-2] CYFJ_oUhRfazULQAcgQ7CA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.120 [XNIO-1 task-3] Pahr6is5SnmkIm8jdGSMuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.120 [XNIO-1 task-3] Pahr6is5SnmkIm8jdGSMuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.120 [XNIO-1 task-3] Pahr6is5SnmkIm8jdGSMuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.125 [XNIO-1 task-3] Pahr6is5SnmkIm8jdGSMuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", "Basic YTVhZjUyYmMtZWU4OC00MTg0LWJjOTAtODE2NWYxZDhiNmE3OmhLSUNqQ2w1UzVTYXd6S0RiUTlrdEE=", authorization) +19:00:46.127 [XNIO-1 task-1] zzPPbKNxTeqCwGQ6lVZyGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.129 [XNIO-1 task-1] zzPPbKNxTeqCwGQ6lVZyGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.133 [XNIO-1 task-3] Pahr6is5SnmkIm8jdGSMuw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.134 [XNIO-1 task-2] T181oFepQuq9wHaqbo7yzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.134 [XNIO-1 task-2] T181oFepQuq9wHaqbo7yzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.136 [XNIO-1 task-2] T181oFepQuq9wHaqbo7yzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.137 [XNIO-1 task-2] T181oFepQuq9wHaqbo7yzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a71ee49a-6329-49c4-bf71-9d8e05da9e51 scope = null +19:00:46.138 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:72ec07b1-c6e5-4756-8b03-a1791aa048a0 +19:00:46.142 [XNIO-1 task-3] dU2u3FCZRkWDzDZbBUMyHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.142 [XNIO-1 task-3] dU2u3FCZRkWDzDZbBUMyHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.142 [XNIO-1 task-3] dU2u3FCZRkWDzDZbBUMyHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.143 [XNIO-1 task-3] dU2u3FCZRkWDzDZbBUMyHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.148 [XNIO-1 task-3] dU2u3FCZRkWDzDZbBUMyHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.149 [XNIO-1 task-2] T181oFepQuq9wHaqbo7yzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.159 [XNIO-1 task-3] NsFItBD_TJuvXsFYw2S_Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.160 [XNIO-1 task-3] NsFItBD_TJuvXsFYw2S_Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.160 [XNIO-1 task-3] NsFItBD_TJuvXsFYw2S_Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.161 [XNIO-1 task-3] NsFItBD_TJuvXsFYw2S_Pg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.175 [XNIO-1 task-3] NsFItBD_TJuvXsFYw2S_Pg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.184 [XNIO-1 task-3] usGrZ7wwTMivPoXkS80DEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.184 [XNIO-1 task-3] usGrZ7wwTMivPoXkS80DEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.184 [XNIO-1 task-3] usGrZ7wwTMivPoXkS80DEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.185 [XNIO-1 task-3] usGrZ7wwTMivPoXkS80DEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.191 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3acbd567 +19:00:46.193 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3acbd567 +19:00:46.195 [XNIO-1 task-2] r8ns4p6USQaUcXA5-nhYpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.195 [XNIO-1 task-2] r8ns4p6USQaUcXA5-nhYpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.196 [XNIO-1 task-2] r8ns4p6USQaUcXA5-nhYpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.197 [XNIO-1 task-2] r8ns4p6USQaUcXA5-nhYpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = g7RSLCVSQeCeolYM3Rswew redirectUri = http://localhost:8080/authorization +19:00:46.199 [XNIO-1 task-3] k9dyQbpsR-2gCsYiMS646Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.199 [XNIO-1 task-3] k9dyQbpsR-2gCsYiMS646Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.204 [XNIO-1 task-3] k9dyQbpsR-2gCsYiMS646Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.204 [XNIO-1 task-3] k9dyQbpsR-2gCsYiMS646Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.213 [XNIO-1 task-2] r8ns4p6USQaUcXA5-nhYpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.213 [XNIO-1 task-2] r8ns4p6USQaUcXA5-nhYpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.213 [XNIO-1 task-3] k9dyQbpsR-2gCsYiMS646Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.216 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8eb317f5 +19:00:46.220 [XNIO-1 task-3] THkuEe3jTb6AMG_a31A75w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.225 [XNIO-1 task-3] THkuEe3jTb6AMG_a31A75w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.226 [XNIO-1 task-3] THkuEe3jTb6AMG_a31A75w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.226 [XNIO-1 task-3] THkuEe3jTb6AMG_a31A75w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.232 [XNIO-1 task-3] THkuEe3jTb6AMG_a31A75w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.240 [XNIO-1 task-3] PwR8WUnARI-wBLeIii2hYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.240 [XNIO-1 task-3] PwR8WUnARI-wBLeIii2hYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.240 [XNIO-1 task-3] PwR8WUnARI-wBLeIii2hYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.241 [XNIO-1 task-3] PwR8WUnARI-wBLeIii2hYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.245 [XNIO-1 task-2] 291jA8KURD2GLCxI_n4vWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.245 [XNIO-1 task-2] 291jA8KURD2GLCxI_n4vWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.245 [XNIO-1 task-2] 291jA8KURD2GLCxI_n4vWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.246 [XNIO-1 task-3] PwR8WUnARI-wBLeIii2hYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.246 [XNIO-1 task-2] 291jA8KURD2GLCxI_n4vWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 3EVdd20sRV-TkaEzlDBOJg redirectUri = http://localhost:8080/authorization +19:00:46.254 [XNIO-1 task-3] 6NFda9wpRFizYc-J4hB3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.254 [XNIO-1 task-3] 6NFda9wpRFizYc-J4hB3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.255 [XNIO-1 task-2] 291jA8KURD2GLCxI_n4vWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.255 [XNIO-1 task-3] 6NFda9wpRFizYc-J4hB3NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.255 [XNIO-1 task-3] 6NFda9wpRFizYc-J4hB3NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:46.265 [XNIO-1 task-3] 6NFda9wpRFizYc-J4hB3NQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.267 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8eb317f5 +19:00:46.280 [XNIO-1 task-3] qYRxEMHOR-eh2gVqa4-k3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.280 [XNIO-1 task-3] qYRxEMHOR-eh2gVqa4-k3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.281 [XNIO-1 task-3] qYRxEMHOR-eh2gVqa4-k3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.281 [XNIO-1 task-3] qYRxEMHOR-eh2gVqa4-k3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:46.293 [XNIO-1 task-3] qYRxEMHOR-eh2gVqa4-k3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.302 [XNIO-1 task-3] NalGehL0RhO7gDqFFdNKqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.303 [XNIO-1 task-3] NalGehL0RhO7gDqFFdNKqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.303 [XNIO-1 task-3] NalGehL0RhO7gDqFFdNKqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.303 [XNIO-1 task-3] NalGehL0RhO7gDqFFdNKqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5NGU2NzYtZWUwZS00MzlmLTgwNjAtY2JkNDQwYzk2NmUwOk5BRC1VRXFmU0F5czF5Q2pWaFZfbGc=", "Basic Yjg5NGU2NzYtZWUwZS00MzlmLTgwNjAtY2JkNDQwYzk2NmUwOk5BRC1VRXFmU0F5czF5Q2pWaFZfbGc=", authorization) +19:00:46.310 [XNIO-1 task-3] NalGehL0RhO7gDqFFdNKqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.318 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8eb317f5 +19:00:46.320 [XNIO-1 task-3] c8NpFZDOT_Gxqu_th3Lq9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.320 [XNIO-1 task-3] c8NpFZDOT_Gxqu_th3Lq9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.321 [XNIO-1 task-3] c8NpFZDOT_Gxqu_th3Lq9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.322 [XNIO-1 task-2] 5omQqPfnSzaKXQhkeI123A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.322 [XNIO-1 task-2] 5omQqPfnSzaKXQhkeI123A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.323 [XNIO-1 task-3] c8NpFZDOT_Gxqu_th3Lq9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:46.323 [XNIO-1 task-2] 5omQqPfnSzaKXQhkeI123A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.323 [XNIO-1 task-2] 5omQqPfnSzaKXQhkeI123A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:46.328 [XNIO-1 task-3] c8NpFZDOT_Gxqu_th3Lq9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.332 [XNIO-1 task-2] 5omQqPfnSzaKXQhkeI123A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.332 [XNIO-1 task-2] 5omQqPfnSzaKXQhkeI123A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.337 [XNIO-1 task-3] UQXpu3jhTw2krmCDU7TpUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.337 [XNIO-1 task-3] UQXpu3jhTw2krmCDU7TpUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.338 [XNIO-1 task-3] UQXpu3jhTw2krmCDU7TpUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.338 [XNIO-1 task-3] UQXpu3jhTw2krmCDU7TpUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = b5b3YKS7R_m93DdjHKFDEw redirectUri = http://localhost:8080/authorization +19:00:46.340 [XNIO-1 task-2] c-qlOVGXRSGqM0a0zbACkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.340 [XNIO-1 task-2] c-qlOVGXRSGqM0a0zbACkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.340 [XNIO-1 task-2] c-qlOVGXRSGqM0a0zbACkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.340 [XNIO-1 task-2] c-qlOVGXRSGqM0a0zbACkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:46.341 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5e30184f +19:00:46.344 [XNIO-1 task-3] UQXpu3jhTw2krmCDU7TpUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.345 [XNIO-1 task-3] UQXpu3jhTw2krmCDU7TpUw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.345 [XNIO-1 task-2] c-qlOVGXRSGqM0a0zbACkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.347 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a6e32d2c-3065-4c07-90c5-496c34415c07 +19:00:46.355 [XNIO-1 task-3] yZjjaBJxSuSUXD5u8PSKlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.355 [XNIO-1 task-3] yZjjaBJxSuSUXD5u8PSKlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.355 [XNIO-1 task-3] yZjjaBJxSuSUXD5u8PSKlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.356 [XNIO-1 task-3] yZjjaBJxSuSUXD5u8PSKlw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.361 [XNIO-1 task-3] yZjjaBJxSuSUXD5u8PSKlw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.371 [XNIO-1 task-3] qd-yDRRkQGeq83DKi8xmNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.372 [XNIO-1 task-3] qd-yDRRkQGeq83DKi8xmNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.372 [XNIO-1 task-3] qd-yDRRkQGeq83DKi8xmNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.373 [XNIO-1 task-3] qd-yDRRkQGeq83DKi8xmNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.378 [XNIO-1 task-3] qd-yDRRkQGeq83DKi8xmNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.379 [XNIO-1 task-2] k9CtZNziSrylE5nCO69Xdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.379 [XNIO-1 task-2] k9CtZNziSrylE5nCO69Xdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.380 [XNIO-1 task-2] k9CtZNziSrylE5nCO69Xdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.380 [XNIO-1 task-2] k9CtZNziSrylE5nCO69Xdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = SAcJS70KQBO42c94CD1zLQ redirectUri = http://localhost:8080/authorization +19:00:46.385 [XNIO-1 task-3] BbsVf19PQnWST2dH2G13Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.385 [XNIO-1 task-3] BbsVf19PQnWST2dH2G13Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.386 [XNIO-1 task-3] BbsVf19PQnWST2dH2G13Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.386 [XNIO-1 task-3] BbsVf19PQnWST2dH2G13Xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.392 [XNIO-1 task-2] k9CtZNziSrylE5nCO69Xdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.393 [XNIO-1 task-3] BbsVf19PQnWST2dH2G13Xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.403 [XNIO-1 task-2] y7ZYKMHCSJq8b5YsxJvhbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.403 [XNIO-1 task-2] y7ZYKMHCSJq8b5YsxJvhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.403 [XNIO-1 task-3] Gbby1EmxQGaNOj6jTKrPCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.403 [XNIO-1 task-3] Gbby1EmxQGaNOj6jTKrPCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.403 [XNIO-1 task-2] y7ZYKMHCSJq8b5YsxJvhbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.404 [XNIO-1 task-2] y7ZYKMHCSJq8b5YsxJvhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.404 [XNIO-1 task-2] y7ZYKMHCSJq8b5YsxJvhbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.405 [XNIO-1 task-2] y7ZYKMHCSJq8b5YsxJvhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWEwN2FlZjYtYjdhNi00ODQxLWE1YTUtNmUxZmYxODVmNmRlOnhXYXBDTU8wVG1DUTY3cDdGajFlNGc=", "Basic MWEwN2FlZjYtYjdhNi00ODQxLWE1YTUtNmUxZmYxODVmNmRlOnhXYXBDTU8wVG1DUTY3cDdGajFlNGc=", authorization) +19:00:46.410 [XNIO-1 task-2] y7ZYKMHCSJq8b5YsxJvhbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.415 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:72ec07b1-c6e5-4756-8b03-a1791aa048a0 +19:00:46.417 [XNIO-1 task-2] ZLO9Rf1xQT-kGIl1WQRBdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.417 [XNIO-1 task-2] ZLO9Rf1xQT-kGIl1WQRBdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.418 [XNIO-1 task-2] ZLO9Rf1xQT-kGIl1WQRBdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.418 [XNIO-1 task-2] ZLO9Rf1xQT-kGIl1WQRBdA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.422 [XNIO-1 task-3] Gbby1EmxQGaNOj6jTKrPCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.424 [XNIO-1 task-2] ZLO9Rf1xQT-kGIl1WQRBdA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.430 [XNIO-1 task-2] 8mKFCzupQFGwoMmAxA-iSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.431 [XNIO-1 task-2] 8mKFCzupQFGwoMmAxA-iSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.431 [XNIO-1 task-2] 8mKFCzupQFGwoMmAxA-iSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.432 [XNIO-1 task-2] 8mKFCzupQFGwoMmAxA-iSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.438 [XNIO-1 task-2] 8mKFCzupQFGwoMmAxA-iSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.438 [XNIO-1 task-3] aXH7nteBTEW8eXOzU2ET8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.438 [XNIO-1 task-2] 8mKFCzupQFGwoMmAxA-iSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.439 [XNIO-1 task-3] aXH7nteBTEW8eXOzU2ET8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.439 [XNIO-1 task-3] aXH7nteBTEW8eXOzU2ET8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = R46V0gC9T8SPseXJ9I8Flg redirectUri = http://localhost:8080/authorization +19:00:46.444 [XNIO-1 task-2] 9vH_85TeSIuqaHEYNGcw9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.444 [XNIO-1 task-2] 9vH_85TeSIuqaHEYNGcw9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.446 [XNIO-1 task-2] 9vH_85TeSIuqaHEYNGcw9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.447 [XNIO-1 task-2] 9vH_85TeSIuqaHEYNGcw9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.449 [XNIO-1 task-3] aXH7nteBTEW8eXOzU2ET8w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.459 [XNIO-1 task-2] 9vH_85TeSIuqaHEYNGcw9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.466 [XNIO-1 task-2] 5PmUnof8R5WJ-rT7zhlk5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.467 [XNIO-1 task-2] 5PmUnof8R5WJ-rT7zhlk5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.467 [XNIO-1 task-2] 5PmUnof8R5WJ-rT7zhlk5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.467 [XNIO-1 task-2] 5PmUnof8R5WJ-rT7zhlk5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:46.472 [XNIO-1 task-2] 5PmUnof8R5WJ-rT7zhlk5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.483 [XNIO-1 task-2] n4PjziJJRSueG3yxJr4JLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.484 [XNIO-1 task-2] n4PjziJJRSueG3yxJr4JLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.485 [XNIO-1 task-2] n4PjziJJRSueG3yxJr4JLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.485 [XNIO-1 task-2] n4PjziJJRSueG3yxJr4JLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", authorization) +19:00:46.492 [XNIO-1 task-2] n4PjziJJRSueG3yxJr4JLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.498 [XNIO-1 task-2] 2HJYuhxmRUusd2AEbWdrdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.498 [XNIO-1 task-2] 2HJYuhxmRUusd2AEbWdrdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.499 [XNIO-1 task-2] 2HJYuhxmRUusd2AEbWdrdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.499 [XNIO-1 task-2] 2HJYuhxmRUusd2AEbWdrdw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", authorization) +19:00:46.500 [XNIO-1 task-3] QBtd1Z-RSYuzaeEvJ35PoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.500 [XNIO-1 task-3] QBtd1Z-RSYuzaeEvJ35PoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.501 [XNIO-1 task-3] QBtd1Z-RSYuzaeEvJ35PoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.501 [XNIO-1 task-3] QBtd1Z-RSYuzaeEvJ35PoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:46.507 [XNIO-1 task-1] oyH7Qr_3QSCvtwYXW5zujw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.507 [XNIO-1 task-1] oyH7Qr_3QSCvtwYXW5zujw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.507 [XNIO-1 task-1] oyH7Qr_3QSCvtwYXW5zujw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.508 [XNIO-1 task-1] oyH7Qr_3QSCvtwYXW5zujw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:46.513 [XNIO-1 task-2] 2HJYuhxmRUusd2AEbWdrdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.515 [XNIO-1 task-3] QBtd1Z-RSYuzaeEvJ35PoA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.515 [XNIO-1 task-3] QBtd1Z-RSYuzaeEvJ35PoA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.517 [XNIO-1 task-1] oyH7Qr_3QSCvtwYXW5zujw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.523 [XNIO-1 task-2] -t1pzSUxQ_63-6WoqfYObg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.523 [XNIO-1 task-2] -t1pzSUxQ_63-6WoqfYObg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.524 [XNIO-1 task-2] -t1pzSUxQ_63-6WoqfYObg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.525 [XNIO-1 task-2] -t1pzSUxQ_63-6WoqfYObg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:46.530 [XNIO-1 task-1] 6i04qNraSUiyU28KDpnolw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.531 [XNIO-1 task-1] 6i04qNraSUiyU28KDpnolw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.531 [XNIO-1 task-1] 6i04qNraSUiyU28KDpnolw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.532 [XNIO-1 task-1] 6i04qNraSUiyU28KDpnolw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:46.532 [XNIO-1 task-2] -t1pzSUxQ_63-6WoqfYObg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.546 [XNIO-1 task-2] 7OlLD0V_QsOIOdcBs_FMzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.546 [XNIO-1 task-2] 7OlLD0V_QsOIOdcBs_FMzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.547 [XNIO-1 task-2] 7OlLD0V_QsOIOdcBs_FMzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.547 [XNIO-1 task-2] 7OlLD0V_QsOIOdcBs_FMzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", authorization) +19:00:46.548 [XNIO-1 task-1] 6i04qNraSUiyU28KDpnolw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.554 [XNIO-1 task-2] 7OlLD0V_QsOIOdcBs_FMzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.561 [XNIO-1 task-1] dphe4FcbQx-t45aiCx9Ddw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.561 [XNIO-1 task-1] dphe4FcbQx-t45aiCx9Ddw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.562 [XNIO-1 task-1] dphe4FcbQx-t45aiCx9Ddw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.562 [XNIO-1 task-1] dphe4FcbQx-t45aiCx9Ddw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:46.567 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8eb317f5 +19:00:46.569 [XNIO-1 task-1] dphe4FcbQx-t45aiCx9Ddw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.582 [XNIO-1 task-1] 5-8VjHjYQWeDj6cxYbOQwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.583 [XNIO-1 task-1] 5-8VjHjYQWeDj6cxYbOQwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.583 [XNIO-1 task-1] 5-8VjHjYQWeDj6cxYbOQwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.583 [XNIO-1 task-1] 5-8VjHjYQWeDj6cxYbOQwA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:46.589 [XNIO-1 task-1] 5-8VjHjYQWeDj6cxYbOQwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.589 [XNIO-1 task-3] BAd7AW2_T7m3hjxzMEC19A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.589 [XNIO-1 task-3] BAd7AW2_T7m3hjxzMEC19A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.590 [XNIO-1 task-3] BAd7AW2_T7m3hjxzMEC19A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.590 [XNIO-1 task-3] BAd7AW2_T7m3hjxzMEC19A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:46.591 [XNIO-1 task-2] uyOwfBa9T72f6PzwdLs6QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.591 [XNIO-1 task-2] uyOwfBa9T72f6PzwdLs6QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.591 [XNIO-1 task-2] uyOwfBa9T72f6PzwdLs6QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.592 [XNIO-1 task-2] uyOwfBa9T72f6PzwdLs6QA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:46.597 [XNIO-1 task-3] BAd7AW2_T7m3hjxzMEC19A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.600 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a5af52bc-ee88-4184-bc90-8165f1d8b6a7 +19:00:46.604 [XNIO-1 task-2] uyOwfBa9T72f6PzwdLs6QA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.607 [XNIO-1 task-2] uyOwfBa9T72f6PzwdLs6QA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.610 [XNIO-1 task-1] p1n3Evb_TiqGNjHSC4X4-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.610 [XNIO-1 task-1] p1n3Evb_TiqGNjHSC4X4-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.610 [XNIO-1 task-1] p1n3Evb_TiqGNjHSC4X4-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.611 [XNIO-1 task-1] p1n3Evb_TiqGNjHSC4X4-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.613 [XNIO-1 task-3] 4Elsa2RkShC-11YR_ZaWMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.613 [XNIO-1 task-3] 4Elsa2RkShC-11YR_ZaWMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.614 [XNIO-1 task-3] 4Elsa2RkShC-11YR_ZaWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.614 [XNIO-1 task-3] 4Elsa2RkShC-11YR_ZaWMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:46.623 [XNIO-1 task-1] p1n3Evb_TiqGNjHSC4X4-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +19:00:46.638 [XNIO-1 task-1] 9X9cd6c4TO2p2_9BJ3lzoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.638 [XNIO-1 task-1] 9X9cd6c4TO2p2_9BJ3lzoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + ... 14 more + +19:00:46.639 [XNIO-1 task-1] 9X9cd6c4TO2p2_9BJ3lzoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.639 [XNIO-1 task-1] 9X9cd6c4TO2p2_9BJ3lzoA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.644 [XNIO-1 task-1] 9X9cd6c4TO2p2_9BJ3lzoA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.648 [XNIO-1 task-3] 0OJY4xdLTL-QkO410TKbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.648 [XNIO-1 task-3] 0OJY4xdLTL-QkO410TKbjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.649 [XNIO-1 task-3] 0OJY4xdLTL-QkO410TKbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.649 [XNIO-1 task-3] 0OJY4xdLTL-QkO410TKbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzZDZlZDgtOTM2ZC00ZTM5LWFmMTctODhjZTlmNTU3OTJhOnBOWHYzcjd5UzRhMFhjcjNOcUpQS0E=", "Basic NDEzZDZlZDgtOTM2ZC00ZTM5LWFmMTctODhjZTlmNTU3OTJhOnBOWHYzcjd5UzRhMFhjcjNOcUpQS0E=", authorization) +19:00:46.656 [XNIO-1 task-1] ZZiyHpjXReCnOtyP81sd1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.657 [XNIO-1 task-1] ZZiyHpjXReCnOtyP81sd1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.657 [XNIO-1 task-1] ZZiyHpjXReCnOtyP81sd1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.657 [XNIO-1 task-1] ZZiyHpjXReCnOtyP81sd1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWZiYzYzOGItOTFiOS00OGRjLThiODYtMDlhYmIzOGRjOWRmOjBaVlBzTWdqVG9XaThkazktTElQOXc=", "Basic NWZiYzYzOGItOTFiOS00OGRjLThiODYtMDlhYmIzOGRjOWRmOjBaVlBzTWdqVG9XaThkazktTElQOXc=", authorization) +19:00:46.661 [XNIO-1 task-3] 0OJY4xdLTL-QkO410TKbjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.661 [XNIO-1 task-3] 0OJY4xdLTL-QkO410TKbjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.667 [XNIO-1 task-1] ZZiyHpjXReCnOtyP81sd1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.677 [XNIO-1 task-3] 7Z05SRE1S-iDcOwUyleFjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.677 [XNIO-1 task-3] 7Z05SRE1S-iDcOwUyleFjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.677 [XNIO-1 task-3] 7Z05SRE1S-iDcOwUyleFjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.678 [XNIO-1 task-3] 7Z05SRE1S-iDcOwUyleFjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.688 [XNIO-1 task-3] 7Z05SRE1S-iDcOwUyleFjg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.700 [XNIO-1 task-3] dT-N7J15S1u_VY0dBva3wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.700 [XNIO-1 task-3] dT-N7J15S1u_VY0dBva3wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.700 [XNIO-1 task-3] dT-N7J15S1u_VY0dBva3wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.700 [XNIO-1 task-3] dT-N7J15S1u_VY0dBva3wg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.706 [XNIO-1 task-3] dT-N7J15S1u_VY0dBva3wg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.713 [XNIO-1 task-3] o7gWCTY0RD-MYHJr825Igg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.713 [XNIO-1 task-3] o7gWCTY0RD-MYHJr825Igg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.714 [XNIO-1 task-3] o7gWCTY0RD-MYHJr825Igg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.715 [XNIO-1 task-3] o7gWCTY0RD-MYHJr825Igg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.717 [XNIO-1 task-1] I8Fak21RRZaO59NGmSnFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.718 [XNIO-1 task-1] I8Fak21RRZaO59NGmSnFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.718 [XNIO-1 task-1] I8Fak21RRZaO59NGmSnFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.718 [XNIO-1 task-1] I8Fak21RRZaO59NGmSnFww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = bU38B_hTTDWksdRR3B71dg redirectUri = http://localhost:8080/authorization +19:00:46.722 [XNIO-1 task-3] o7gWCTY0RD-MYHJr825Igg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.723 [XNIO-1 task-2] AeQ0_zeaRNCxsWM55Fm3wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.723 [XNIO-1 task-2] AeQ0_zeaRNCxsWM55Fm3wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.724 [XNIO-1 task-2] AeQ0_zeaRNCxsWM55Fm3wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.724 [XNIO-1 task-2] AeQ0_zeaRNCxsWM55Fm3wQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = BESczaSdRrW6IFsWtCmYiA redirectUri = http://localhost:8080/authorization +19:00:46.728 [XNIO-1 task-3] jM0j5HV6R4eZMXIvBKASZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.728 [XNIO-1 task-3] jM0j5HV6R4eZMXIvBKASZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.729 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8fb9d633 +19:00:46.729 [XNIO-1 task-3] jM0j5HV6R4eZMXIvBKASZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.729 [XNIO-1 task-3] jM0j5HV6R4eZMXIvBKASZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmRiMDlmYTMtMTM1My00Y2QyLThmYmMtODJmZTlhM2Y2NDNjOktFd01iSXdhUTFtX0tsNEd0OFVYVlE=", "Basic MmRiMDlmYTMtMTM1My00Y2QyLThmYmMtODJmZTlhM2Y2NDNjOktFd01iSXdhUTFtX0tsNEd0OFVYVlE=", authorization) +19:00:46.731 [XNIO-1 task-1] I8Fak21RRZaO59NGmSnFww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.732 [XNIO-1 task-1] I8Fak21RRZaO59NGmSnFww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.732 [XNIO-1 task-2] AeQ0_zeaRNCxsWM55Fm3wQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.735 [XNIO-1 task-3] jM0j5HV6R4eZMXIvBKASZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.742 [XNIO-1 task-3] LX8qsNrHQ_aaAAgVv7HW_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.746 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8fb9d633 +19:00:46.747 [XNIO-1 task-3] LX8qsNrHQ_aaAAgVv7HW_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.748 [XNIO-1 task-3] LX8qsNrHQ_aaAAgVv7HW_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.748 [XNIO-1 task-3] LX8qsNrHQ_aaAAgVv7HW_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Yjg5NGU2NzYtZWUwZS00MzlmLTgwNjAtY2JkNDQwYzk2NmUwOk5BRC1VRXFmU0F5czF5Q2pWaFZfbGc=", "Basic Yjg5NGU2NzYtZWUwZS00MzlmLTgwNjAtY2JkNDQwYzk2NmUwOk5BRC1VRXFmU0F5czF5Q2pWaFZfbGc=", authorization) +19:00:46.754 [XNIO-1 task-3] LX8qsNrHQ_aaAAgVv7HW_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.759 [XNIO-1 task-3] ly8AAf3ESLeFD_ibiY4oaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.759 [XNIO-1 task-3] ly8AAf3ESLeFD_ibiY4oaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.761 [XNIO-1 task-3] ly8AAf3ESLeFD_ibiY4oaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.761 [XNIO-1 task-3] ly8AAf3ESLeFD_ibiY4oaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:46.769 [XNIO-1 task-2] 0ASmAE7OQBC7wE74G-6qKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.771 [XNIO-1 task-2] 0ASmAE7OQBC7wE74G-6qKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.772 [XNIO-1 task-2] 0ASmAE7OQBC7wE74G-6qKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.772 [XNIO-1 task-2] 0ASmAE7OQBC7wE74G-6qKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.772 [XNIO-1 task-2] 0ASmAE7OQBC7wE74G-6qKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFmN2I1NTgtZjg1Yy00NTQxLWE3ODItNzM5MWE4OTRmYzQxOlZkUExOM0RzUzVtQ3JzY3dMajF3X2c=", "Basic YWFmN2I1NTgtZjg1Yy00NTQxLWE3ODItNzM5MWE4OTRmYzQxOlZkUExOM0RzUzVtQ3JzY3dMajF3X2c=", authorization) +19:00:46.780 [XNIO-1 task-3] HQ6P3KQBQkCfeJ441_Zv3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.781 [XNIO-1 task-3] HQ6P3KQBQkCfeJ441_Zv3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.781 [XNIO-1 task-3] HQ6P3KQBQkCfeJ441_Zv3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.783 [XNIO-1 task-3] HQ6P3KQBQkCfeJ441_Zv3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:46.788 [XNIO-1 task-2] 0ASmAE7OQBC7wE74G-6qKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.790 [XNIO-1 task-2] 0ASmAE7OQBC7wE74G-6qKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.791 [XNIO-1 task-3] HQ6P3KQBQkCfeJ441_Zv3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.800 [XNIO-1 task-3] BRKwpVWZTfS8L5ljPaEfMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.800 [XNIO-1 task-3] BRKwpVWZTfS8L5ljPaEfMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.801 [XNIO-1 task-3] BRKwpVWZTfS8L5ljPaEfMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.801 [XNIO-1 task-3] BRKwpVWZTfS8L5ljPaEfMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.807 [XNIO-1 task-3] BRKwpVWZTfS8L5ljPaEfMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.829 [XNIO-1 task-3] 4AsBM-apQVCza5Y_8qo5ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.829 [XNIO-1 task-3] 4AsBM-apQVCza5Y_8qo5ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.830 [XNIO-1 task-3] 4AsBM-apQVCza5Y_8qo5ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.830 [XNIO-1 task-3] 4AsBM-apQVCza5Y_8qo5ew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.835 [XNIO-1 task-3] 4AsBM-apQVCza5Y_8qo5ew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.836 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:038be652 +19:00:46.846 [XNIO-1 task-3] zpX8cehDSkSSFfI40rKXnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.846 [XNIO-1 task-3] zpX8cehDSkSSFfI40rKXnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.846 [XNIO-1 task-3] zpX8cehDSkSSFfI40rKXnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.846 [XNIO-1 task-3] zpX8cehDSkSSFfI40rKXnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.846 [XNIO-1 task-2] AJQbsUa8TpWgb-9N6EyI4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.847 [XNIO-1 task-3] zpX8cehDSkSSFfI40rKXnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PF2sHy_0RTCh3CPLiJazqQ redirectUri = http://localhost:8080/authorization +19:00:46.847 [XNIO-1 task-2] AJQbsUa8TpWgb-9N6EyI4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.847 [XNIO-1 task-2] AJQbsUa8TpWgb-9N6EyI4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.853 [XNIO-1 task-2] AJQbsUa8TpWgb-9N6EyI4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.856 [XNIO-1 task-3] zpX8cehDSkSSFfI40rKXnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.858 [XNIO-1 task-2] H2CZBciNT-eE2Zd1NdzeQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.858 [XNIO-1 task-2] H2CZBciNT-eE2Zd1NdzeQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.859 [XNIO-1 task-2] H2CZBciNT-eE2Zd1NdzeQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.859 [XNIO-1 task-2] H2CZBciNT-eE2Zd1NdzeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:46.861 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:46.868 [XNIO-1 task-2] H2CZBciNT-eE2Zd1NdzeQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.875 [XNIO-1 task-2] ad2sOxqWRKi8Nrmu9EKl6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.876 [XNIO-1 task-2] ad2sOxqWRKi8Nrmu9EKl6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.876 [XNIO-1 task-2] ad2sOxqWRKi8Nrmu9EKl6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.876 [XNIO-1 task-2] ad2sOxqWRKi8Nrmu9EKl6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:46.882 [XNIO-1 task-2] ad2sOxqWRKi8Nrmu9EKl6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.885 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5e30184f +19:00:46.893 [XNIO-1 task-2] cerglE6jT0mGX1ZmdRjs0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.893 [XNIO-1 task-2] cerglE6jT0mGX1ZmdRjs0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.893 [XNIO-1 task-2] cerglE6jT0mGX1ZmdRjs0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.894 [XNIO-1 task-2] cerglE6jT0mGX1ZmdRjs0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:46.899 [XNIO-1 task-2] cerglE6jT0mGX1ZmdRjs0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.905 [XNIO-1 task-2] Ff8cVUXtTVaOugEiykx-5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.906 [XNIO-1 task-2] Ff8cVUXtTVaOugEiykx-5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.906 [XNIO-1 task-2] Ff8cVUXtTVaOugEiykx-5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.906 [XNIO-1 task-2] Ff8cVUXtTVaOugEiykx-5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", authorization) +19:00:46.913 [XNIO-1 task-3] -ISXbtGJRyefcvgHewFdbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.913 [XNIO-1 task-3] -ISXbtGJRyefcvgHewFdbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.913 [XNIO-1 task-3] -ISXbtGJRyefcvgHewFdbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.915 [XNIO-1 task-3] -ISXbtGJRyefcvgHewFdbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:46.917 [XNIO-1 task-2] Ff8cVUXtTVaOugEiykx-5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.918 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +19:00:46.918 [XNIO-1 task-1] SHHR84KoTdSBExzSZCNVGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.918 [XNIO-1 task-1] SHHR84KoTdSBExzSZCNVGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.918 [XNIO-1 task-1] SHHR84KoTdSBExzSZCNVGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.919 [XNIO-1 task-1] SHHR84KoTdSBExzSZCNVGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Uc0DWe7XSR6tqEzQ-Seplw redirectUri = http://localhost:8080/authorization +19:00:46.924 [XNIO-1 task-2] cFeosHLmTlmRbQNaUeWkpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.924 [XNIO-1 task-2] cFeosHLmTlmRbQNaUeWkpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.925 [XNIO-1 task-2] cFeosHLmTlmRbQNaUeWkpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.925 [XNIO-1 task-2] cFeosHLmTlmRbQNaUeWkpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:46.931 [XNIO-1 task-2] cFeosHLmTlmRbQNaUeWkpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.931 [XNIO-1 task-2] cFeosHLmTlmRbQNaUeWkpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.931 [XNIO-1 task-1] SHHR84KoTdSBExzSZCNVGA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.933 [XNIO-1 task-3] -ISXbtGJRyefcvgHewFdbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.939 [XNIO-1 task-2] ByRqVwiHQJqX35cSvWdTQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.940 [XNIO-1 task-2] ByRqVwiHQJqX35cSvWdTQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.941 [XNIO-1 task-2] ByRqVwiHQJqX35cSvWdTQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.941 [XNIO-1 task-2] ByRqVwiHQJqX35cSvWdTQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:46.942 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8fb9d633 +19:00:46.947 [XNIO-1 task-2] ByRqVwiHQJqX35cSvWdTQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.954 [XNIO-1 task-2] KG1xICprTSmCzDmgQgb4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.955 [XNIO-1 task-2] KG1xICprTSmCzDmgQgb4jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.955 [XNIO-1 task-2] KG1xICprTSmCzDmgQgb4jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.956 [XNIO-1 task-2] KG1xICprTSmCzDmgQgb4jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:46.960 [XNIO-1 task-2] KG1xICprTSmCzDmgQgb4jg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:46.970 [XNIO-1 task-2] ess0a5BEQeOgLk87hayr-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.970 [XNIO-1 task-2] ess0a5BEQeOgLk87hayr-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.970 [XNIO-1 task-2] ess0a5BEQeOgLk87hayr-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.971 [XNIO-1 task-2] ess0a5BEQeOgLk87hayr-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTNhMWU5OTMtN2Y0NC00ZGJiLWI5NDktNGE1MTQxNGJjMDE5Ojl3Z2FTbThRVDl5QWJjWmg2RUtScUE=", "Basic ZTNhMWU5OTMtN2Y0NC00ZGJiLWI5NDktNGE1MTQxNGJjMDE5Ojl3Z2FTbThRVDl5QWJjWmg2RUtScUE=", authorization) +19:00:46.975 [XNIO-1 task-3] KznNGEdDQri6b-xAgi5crA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.975 [XNIO-1 task-3] KznNGEdDQri6b-xAgi5crA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:46.975 [XNIO-1 task-3] KznNGEdDQri6b-xAgi5crA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:46.976 [XNIO-1 task-3] KznNGEdDQri6b-xAgi5crA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:46.989 [XNIO-1 task-2] ess0a5BEQeOgLk87hayr-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:46.989 [XNIO-1 task-2] ess0a5BEQeOgLk87hayr-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.991 [XNIO-1 task-3] KznNGEdDQri6b-xAgi5crA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:46.999 [XNIO-1 task-3] Zhv-NBf-SIemJBLWLIFc3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:46.999 [XNIO-1 task-3] Zhv-NBf-SIemJBLWLIFc3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.000 [XNIO-1 task-3] Zhv-NBf-SIemJBLWLIFc3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.000 [XNIO-1 task-3] Zhv-NBf-SIemJBLWLIFc3A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.005 [XNIO-1 task-3] Zhv-NBf-SIemJBLWLIFc3A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.006 [XNIO-1 task-2] H6sa6VM_SIuD9DnyzLVNkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.006 [XNIO-1 task-2] H6sa6VM_SIuD9DnyzLVNkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.007 [XNIO-1 task-2] H6sa6VM_SIuD9DnyzLVNkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.007 [XNIO-1 task-2] H6sa6VM_SIuD9DnyzLVNkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7a69c011-c5c2-4ff5-a78d-591f442bad0b scope = null +19:00:47.010 [XNIO-1 task-3] 3Pqbe3p5QxupnTpkaHESMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.011 [XNIO-1 task-3] 3Pqbe3p5QxupnTpkaHESMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.011 [XNIO-1 task-3] 3Pqbe3p5QxupnTpkaHESMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.011 [XNIO-1 task-3] 3Pqbe3p5QxupnTpkaHESMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.017 [XNIO-1 task-3] 3Pqbe3p5QxupnTpkaHESMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.026 [XNIO-1 task-3] BAC2_g7uSqiBSXB-BJv6eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.027 [XNIO-1 task-3] BAC2_g7uSqiBSXB-BJv6eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.027 [XNIO-1 task-2] H6sa6VM_SIuD9DnyzLVNkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.027 [XNIO-1 task-3] BAC2_g7uSqiBSXB-BJv6eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.032 [XNIO-1 task-3] BAC2_g7uSqiBSXB-BJv6eQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.047 [XNIO-1 task-3] BAC2_g7uSqiBSXB-BJv6eQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.051 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4c088068 +19:00:47.061 [XNIO-1 task-3] 3niWd3dZRcWQa-eI71OObw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.061 [XNIO-1 task-3] 3niWd3dZRcWQa-eI71OObw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.061 [XNIO-1 task-3] 3niWd3dZRcWQa-eI71OObw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.062 [XNIO-1 task-3] 3niWd3dZRcWQa-eI71OObw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:47.067 [XNIO-1 task-3] 3niWd3dZRcWQa-eI71OObw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.071 [XNIO-1 task-3] 2481g8gMSfSYAdnUBoxQ2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.077 [XNIO-1 task-3] 2481g8gMSfSYAdnUBoxQ2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.079 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8fb9d633 +19:00:47.080 [XNIO-1 task-3] 2481g8gMSfSYAdnUBoxQ2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.080 [XNIO-1 task-3] 2481g8gMSfSYAdnUBoxQ2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:47.092 [XNIO-1 task-3] 2481g8gMSfSYAdnUBoxQ2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.102 [XNIO-1 task-3] mXXbaae5SnWzTMrJ4qHnvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.103 [XNIO-1 task-3] mXXbaae5SnWzTMrJ4qHnvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.104 [XNIO-1 task-3] mXXbaae5SnWzTMrJ4qHnvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.104 [XNIO-1 task-3] mXXbaae5SnWzTMrJ4qHnvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFmN2I1NTgtZjg1Yy00NTQxLWE3ODItNzM5MWE4OTRmYzQxOlZkUExOM0RzUzVtQ3JzY3dMajF3X2c=", "Basic YWFmN2I1NTgtZjg1Yy00NTQxLWE3ODItNzM5MWE4OTRmYzQxOlZkUExOM0RzUzVtQ3JzY3dMajF3X2c=", authorization) +19:00:47.105 [XNIO-1 task-2] _ficxuVJQEqIdTcsoIcAZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.105 [XNIO-1 task-2] _ficxuVJQEqIdTcsoIcAZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.106 [XNIO-1 task-2] _ficxuVJQEqIdTcsoIcAZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.106 [XNIO-1 task-2] _ficxuVJQEqIdTcsoIcAZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:47.109 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9cb6ed81-03fa-4b9c-8e05-4870d16a1b26 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:47.112 [XNIO-1 task-2] _ficxuVJQEqIdTcsoIcAZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.122 [XNIO-1 task-2] TxdDoEY1QKWVMyyFm_n6gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.123 [XNIO-1 task-2] TxdDoEY1QKWVMyyFm_n6gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.123 [XNIO-1 task-2] TxdDoEY1QKWVMyyFm_n6gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.123 [XNIO-1 task-2] TxdDoEY1QKWVMyyFm_n6gA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:47.129 [XNIO-1 task-3] Db8WN-cHRBGKoeGfTLvoPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.130 [XNIO-1 task-3] Db8WN-cHRBGKoeGfTLvoPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.130 [XNIO-1 task-3] Db8WN-cHRBGKoeGfTLvoPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.130 [XNIO-1 task-3] Db8WN-cHRBGKoeGfTLvoPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmRiMDlmYTMtMTM1My00Y2QyLThmYmMtODJmZTlhM2Y2NDNjOktFd01iSXdhUTFtX0tsNEd0OFVYVlE=", "Basic MmRiMDlmYTMtMTM1My00Y2QyLThmYmMtODJmZTlhM2Y2NDNjOktFd01iSXdhUTFtX0tsNEd0OFVYVlE=", authorization) +19:00:47.134 [XNIO-1 task-2] TxdDoEY1QKWVMyyFm_n6gA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.138 [XNIO-1 task-3] Db8WN-cHRBGKoeGfTLvoPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.141 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8fb9d633 +19:00:47.146 [XNIO-1 task-2] a2hvEZKESs2Z4LsLr3AVNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.146 [XNIO-1 task-2] a2hvEZKESs2Z4LsLr3AVNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.147 [XNIO-1 task-2] a2hvEZKESs2Z4LsLr3AVNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.148 [XNIO-1 task-2] a2hvEZKESs2Z4LsLr3AVNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:47.149 [XNIO-1 task-3] Db8WN-cHRBGKoeGfTLvoPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.154 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8fb9d633 +19:00:47.155 [XNIO-1 task-2] a2hvEZKESs2Z4LsLr3AVNQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.161 [XNIO-1 task-2] Ntq5D5JzSc2pjdC5OPdy8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.161 [XNIO-1 task-2] Ntq5D5JzSc2pjdC5OPdy8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.162 [XNIO-1 task-2] Ntq5D5JzSc2pjdC5OPdy8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.162 [XNIO-1 task-2] Ntq5D5JzSc2pjdC5OPdy8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.172 [XNIO-1 task-2] Ntq5D5JzSc2pjdC5OPdy8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.175 [XNIO-1 task-3] 24Q0e5q1R1qh3oMVCnePIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.175 [XNIO-1 task-3] 24Q0e5q1R1qh3oMVCnePIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.175 [XNIO-1 task-3] 24Q0e5q1R1qh3oMVCnePIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.175 [XNIO-1 task-3] 24Q0e5q1R1qh3oMVCnePIQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8r6pozQ-Q8OFfb5mSpNQeA redirectUri = http://localhost:8080/authorization +19:00:47.179 [XNIO-1 task-2] leOFZsAOQEqCfhF_B2CwRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.179 [XNIO-1 task-2] leOFZsAOQEqCfhF_B2CwRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.179 [XNIO-1 task-2] leOFZsAOQEqCfhF_B2CwRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.180 [XNIO-1 task-2] leOFZsAOQEqCfhF_B2CwRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.186 [XNIO-1 task-2] leOFZsAOQEqCfhF_B2CwRg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.188 [XNIO-1 task-3] 24Q0e5q1R1qh3oMVCnePIQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:47.201 [XNIO-1 task-3] bsTy0uEPTAit99pm7L9fMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.202 [XNIO-1 task-3] bsTy0uEPTAit99pm7L9fMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.202 [XNIO-1 task-3] bsTy0uEPTAit99pm7L9fMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.202 [XNIO-1 task-3] bsTy0uEPTAit99pm7L9fMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.209 [XNIO-1 task-3] bsTy0uEPTAit99pm7L9fMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.221 [XNIO-1 task-3] voKrQBjDQZaJyHykEjMP4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.221 [XNIO-1 task-3] voKrQBjDQZaJyHykEjMP4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.222 [XNIO-1 task-3] voKrQBjDQZaJyHykEjMP4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.222 [XNIO-1 task-3] voKrQBjDQZaJyHykEjMP4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.232 [XNIO-1 task-3] voKrQBjDQZaJyHykEjMP4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.241 [XNIO-1 task-3] 7Fyq6wuJQTOS4nRy1uV5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.241 [XNIO-1 task-3] 7Fyq6wuJQTOS4nRy1uV5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.242 [XNIO-1 task-3] 7Fyq6wuJQTOS4nRy1uV5Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.242 [XNIO-1 task-3] 7Fyq6wuJQTOS4nRy1uV5Dw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.248 [XNIO-1 task-2] GHONDKNDSgOzgDOY6cCX-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.248 [XNIO-1 task-3] 7Fyq6wuJQTOS4nRy1uV5Dw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.248 [XNIO-1 task-2] GHONDKNDSgOzgDOY6cCX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.248 [XNIO-1 task-2] GHONDKNDSgOzgDOY6cCX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.248 [XNIO-1 task-2] GHONDKNDSgOzgDOY6cCX-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 88b46a58-3f68-45c3-8a7e-cb88c859edf1 scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 88b46a58-3f68-45c3-8a7e-cb88c859edf1 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:47.259 [XNIO-1 task-2] 02L0G6wFTz6nqL8ryUuQDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.260 [XNIO-1 task-2] 02L0G6wFTz6nqL8ryUuQDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.260 [XNIO-1 task-2] 02L0G6wFTz6nqL8ryUuQDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.260 [XNIO-1 task-2] 02L0G6wFTz6nqL8ryUuQDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", authorization) +19:00:47.268 [XNIO-1 task-2] 02L0G6wFTz6nqL8ryUuQDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.280 [XNIO-1 task-2] 7ZzRSQsfS3-7iLaMJLsQ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.280 [XNIO-1 task-2] 7ZzRSQsfS3-7iLaMJLsQ7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.280 [XNIO-1 task-2] 7ZzRSQsfS3-7iLaMJLsQ7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.280 [XNIO-1 task-2] 7ZzRSQsfS3-7iLaMJLsQ7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", authorization) +19:00:47.286 [XNIO-1 task-2] 7ZzRSQsfS3-7iLaMJLsQ7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.291 [XNIO-1 task-2] QpSnCYOASIyHJWUX6ASiMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.292 [XNIO-1 task-2] QpSnCYOASIyHJWUX6ASiMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.292 [XNIO-1 task-2] QpSnCYOASIyHJWUX6ASiMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.292 [XNIO-1 task-2] QpSnCYOASIyHJWUX6ASiMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", "Basic NTBiOWU5ODktZWY2MC00MGJiLTg5MWMtYWJlMjZjMzE0YzY5OjVSYWpDaFl0UU5XRE5jakxINVBkcnc=", authorization) +19:00:47.297 [XNIO-1 task-3] k2LF1dkZTGOvhsl51Zyelw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.297 [XNIO-1 task-3] k2LF1dkZTGOvhsl51Zyelw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.297 [XNIO-1 task-3] k2LF1dkZTGOvhsl51Zyelw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.298 [XNIO-1 task-3] k2LF1dkZTGOvhsl51Zyelw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MThiMWYxOGYtYmQxNC00ZDY0LThhYzEtYmEzNTRmZDdjNDgzOmRrUEs3aWZaVE9PR0R3VGhrek0zMnc=", "Basic MThiMWYxOGYtYmQxNC00ZDY0LThhYzEtYmEzNTRmZDdjNDgzOmRrUEs3aWZaVE9PR0R3VGhrek0zMnc=", authorization) +19:00:47.300 [XNIO-1 task-2] QpSnCYOASIyHJWUX6ASiMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.300 [XNIO-1 task-2] QpSnCYOASIyHJWUX6ASiMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.305 [XNIO-1 task-3] k2LF1dkZTGOvhsl51Zyelw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.314 [XNIO-1 task-2] ByzSu5RXSb2GEtUwlEPC4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.314 [XNIO-1 task-2] ByzSu5RXSb2GEtUwlEPC4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.315 [XNIO-1 task-2] ByzSu5RXSb2GEtUwlEPC4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.315 [XNIO-1 task-2] ByzSu5RXSb2GEtUwlEPC4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.339 [XNIO-1 task-2] ByzSu5RXSb2GEtUwlEPC4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.344 [XNIO-1 task-2] W1CsRKluSyC7lUzJO4GCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.344 [XNIO-1 task-2] W1CsRKluSyC7lUzJO4GCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.345 [XNIO-1 task-2] W1CsRKluSyC7lUzJO4GCdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.346 [XNIO-1 task-2] W1CsRKluSyC7lUzJO4GCdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.356 [XNIO-1 task-2] W1CsRKluSyC7lUzJO4GCdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.366 [XNIO-1 task-3] v4h9FfQ_RPuXxdgl-PuRlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.366 [XNIO-1 task-3] v4h9FfQ_RPuXxdgl-PuRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.366 [XNIO-1 task-2] PAAkF_OKSri4grQ_YMtaMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.366 [XNIO-1 task-3] v4h9FfQ_RPuXxdgl-PuRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.367 [XNIO-1 task-2] PAAkF_OKSri4grQ_YMtaMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.367 [XNIO-1 task-3] v4h9FfQ_RPuXxdgl-PuRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.367 [XNIO-1 task-3] v4h9FfQ_RPuXxdgl-PuRlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:47.367 [XNIO-1 task-3] v4h9FfQ_RPuXxdgl-PuRlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dza4uMGWTpKfAGH_ub7hLQ redirectUri = http://localhost:8080/authorization +19:00:47.376 [XNIO-1 task-1] zsp69LaKQMmB1ouqjNLkYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.376 [XNIO-1 task-1] zsp69LaKQMmB1ouqjNLkYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.377 [XNIO-1 task-1] zsp69LaKQMmB1ouqjNLkYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.377 [XNIO-1 task-1] zsp69LaKQMmB1ouqjNLkYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.377 [XNIO-1 task-3] v4h9FfQ_RPuXxdgl-PuRlQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.383 [XNIO-1 task-1] zsp69LaKQMmB1ouqjNLkYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.384 [XNIO-1 task-1] zsp69LaKQMmB1ouqjNLkYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.384 [XNIO-1 task-2] PAAkF_OKSri4grQ_YMtaMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.389 [XNIO-1 task-3] fu0U7-VKT0CHYBnoSt29Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.391 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2ec05652 +19:00:47.391 [XNIO-1 task-3] fu0U7-VKT0CHYBnoSt29Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.391 [XNIO-1 task-3] fu0U7-VKT0CHYBnoSt29Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.391 [XNIO-1 task-3] fu0U7-VKT0CHYBnoSt29Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.391 [XNIO-1 task-1] Ec2sgBtwQg2rcu8U-T1THA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.391 [XNIO-1 task-3] fu0U7-VKT0CHYBnoSt29Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.392 [XNIO-1 task-1] Ec2sgBtwQg2rcu8U-T1THA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.394 [XNIO-1 task-1] Ec2sgBtwQg2rcu8U-T1THA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:47.397 [XNIO-1 task-3] fu0U7-VKT0CHYBnoSt29Pw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.405 [XNIO-1 task-1] Ec2sgBtwQg2rcu8U-T1THA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.406 [XNIO-1 task-3] w5_PerXcR2CxNJWkODG-2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.406 [XNIO-1 task-3] w5_PerXcR2CxNJWkODG-2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.406 [XNIO-1 task-3] w5_PerXcR2CxNJWkODG-2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.407 [XNIO-1 task-3] w5_PerXcR2CxNJWkODG-2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.417 [XNIO-1 task-3] w5_PerXcR2CxNJWkODG-2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.425 [XNIO-1 task-3] KhvrRZjSToqUNGPxZ5sXzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.426 [XNIO-1 task-3] KhvrRZjSToqUNGPxZ5sXzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.426 [XNIO-1 task-3] KhvrRZjSToqUNGPxZ5sXzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.426 [XNIO-1 task-3] KhvrRZjSToqUNGPxZ5sXzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.427 [XNIO-1 task-1] Hd15SXveTiWUTp0gdZBJMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.427 [XNIO-1 task-1] Hd15SXveTiWUTp0gdZBJMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.428 [XNIO-1 task-1] Hd15SXveTiWUTp0gdZBJMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.428 [XNIO-1 task-1] Hd15SXveTiWUTp0gdZBJMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", authorization) +19:00:47.433 [XNIO-1 task-2] uSBm77DeRvST0aI6rxfSxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.433 [XNIO-1 task-2] uSBm77DeRvST0aI6rxfSxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.434 [XNIO-1 task-2] uSBm77DeRvST0aI6rxfSxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.434 [XNIO-1 task-3] KhvrRZjSToqUNGPxZ5sXzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.434 [XNIO-1 task-2] uSBm77DeRvST0aI6rxfSxw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = toUIUhyFTPqSYE5jDp8lMA redirectUri = http://localhost:8080/authorization +19:00:47.440 [XNIO-1 task-1] Hd15SXveTiWUTp0gdZBJMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.440 [XNIO-1 task-1] Hd15SXveTiWUTp0gdZBJMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.441 [XNIO-1 task-3] gjM-pHPeR62GGVihjjLfRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.441 [XNIO-1 task-3] gjM-pHPeR62GGVihjjLfRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.443 [XNIO-1 task-2] uSBm77DeRvST0aI6rxfSxw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.444 [XNIO-1 task-2] uSBm77DeRvST0aI6rxfSxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.445 [XNIO-1 task-3] gjM-pHPeR62GGVihjjLfRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.446 [XNIO-1 task-3] gjM-pHPeR62GGVihjjLfRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.451 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:22c8cee2 +19:00:47.456 [XNIO-1 task-1] ta9owvhAR7qGCcgzsWKXsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.456 [XNIO-1 task-1] ta9owvhAR7qGCcgzsWKXsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.456 [XNIO-1 task-1] ta9owvhAR7qGCcgzsWKXsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.457 [XNIO-1 task-1] ta9owvhAR7qGCcgzsWKXsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 861316d6-ad5b-4a41-b3a6-bc77445c2762 scope = null +19:00:47.457 [XNIO-1 task-3] gjM-pHPeR62GGVihjjLfRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.462 [XNIO-1 task-3] RKpWCmzZRg-ujphTNRUqQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.462 [XNIO-1 task-3] RKpWCmzZRg-ujphTNRUqQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.464 [XNIO-1 task-3] RKpWCmzZRg-ujphTNRUqQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.464 [XNIO-1 task-3] RKpWCmzZRg-ujphTNRUqQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.469 [XNIO-1 task-1] ta9owvhAR7qGCcgzsWKXsA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.470 [XNIO-1 task-3] RKpWCmzZRg-ujphTNRUqQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.475 [XNIO-1 task-3] rVKv0XlHQ2-8Fj7TUqGwhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.475 [XNIO-1 task-3] rVKv0XlHQ2-8Fj7TUqGwhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.476 [XNIO-1 task-3] rVKv0XlHQ2-8Fj7TUqGwhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.476 [XNIO-1 task-3] rVKv0XlHQ2-8Fj7TUqGwhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.481 [XNIO-1 task-3] rVKv0XlHQ2-8Fj7TUqGwhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.485 [XNIO-1 task-3] R7SzCxamS42CAPS_kQdqlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.486 [XNIO-1 task-3] R7SzCxamS42CAPS_kQdqlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.486 [XNIO-1 task-3] R7SzCxamS42CAPS_kQdqlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.486 [XNIO-1 task-3] R7SzCxamS42CAPS_kQdqlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.496 [XNIO-1 task-3] R7SzCxamS42CAPS_kQdqlA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.498 [XNIO-1 task-3] kfNrCs3HQMmXIkcrmWcBAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.498 [XNIO-1 task-3] kfNrCs3HQMmXIkcrmWcBAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.499 [XNIO-1 task-3] kfNrCs3HQMmXIkcrmWcBAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.499 [XNIO-1 task-3] kfNrCs3HQMmXIkcrmWcBAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PK_JGb-fSdiSuQ0bFJtshA redirectUri = http://localhost:8080/authorization +19:00:47.505 [XNIO-1 task-1] uwNk8p9nThWcEJ77-pmxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.505 [XNIO-1 task-1] uwNk8p9nThWcEJ77-pmxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.505 [XNIO-1 task-1] uwNk8p9nThWcEJ77-pmxRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.506 [XNIO-1 task-1] uwNk8p9nThWcEJ77-pmxRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.509 [XNIO-1 task-3] kfNrCs3HQMmXIkcrmWcBAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.513 [XNIO-1 task-1] uwNk8p9nThWcEJ77-pmxRA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.513 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:47.523 [XNIO-1 task-1] 3UU8MZ-DQryLf9wDwXYFtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.524 [XNIO-1 task-1] 3UU8MZ-DQryLf9wDwXYFtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.524 [XNIO-1 task-1] 3UU8MZ-DQryLf9wDwXYFtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.524 [XNIO-1 task-1] 3UU8MZ-DQryLf9wDwXYFtw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjNkMGNlZTAtYjU1Zi00OGQ4LWE0N2YtNmM5N2RlZmViMzdmOm5BLWJTTDRZUVNhTUJrb3pYWTdtUFE=", "Basic NjNkMGNlZTAtYjU1Zi00OGQ4LWE0N2YtNmM5N2RlZmViMzdmOm5BLWJTTDRZUVNhTUJrb3pYWTdtUFE=", authorization) +19:00:47.530 [XNIO-1 task-3] 8uNxXhK_QmOXsy8pNuo6sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.531 [XNIO-1 task-3] 8uNxXhK_QmOXsy8pNuo6sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.533 [XNIO-1 task-1] 3UU8MZ-DQryLf9wDwXYFtw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.534 [XNIO-1 task-3] 8uNxXhK_QmOXsy8pNuo6sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.534 [XNIO-1 task-3] 8uNxXhK_QmOXsy8pNuo6sg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:47.540 [XNIO-1 task-1] 3ecKYR39TLOk7VBHoKb99Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.540 [XNIO-1 task-1] 3ecKYR39TLOk7VBHoKb99Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.541 [XNIO-1 task-1] 3ecKYR39TLOk7VBHoKb99Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.541 [XNIO-1 task-1] 3ecKYR39TLOk7VBHoKb99Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", authorization) +19:00:47.548 [XNIO-1 task-1] 3ecKYR39TLOk7VBHoKb99Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.549 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:22c8cee2 +19:00:47.549 [XNIO-1 task-3] 8uNxXhK_QmOXsy8pNuo6sg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.557 [XNIO-1 task-1] ui6rh_OaRziJQeyICz1ijA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.558 [XNIO-1 task-1] ui6rh_OaRziJQeyICz1ijA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.558 [XNIO-1 task-1] ui6rh_OaRziJQeyICz1ijA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.559 [XNIO-1 task-1] ui6rh_OaRziJQeyICz1ijA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:47.565 [XNIO-1 task-1] ui6rh_OaRziJQeyICz1ijA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.576 [XNIO-1 task-1] E2TjfvFaQ5ivSdt6CRV0XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.577 [XNIO-1 task-1] E2TjfvFaQ5ivSdt6CRV0XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.578 [XNIO-1 task-1] E2TjfvFaQ5ivSdt6CRV0XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.578 [XNIO-1 task-1] E2TjfvFaQ5ivSdt6CRV0XA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", authorization) +19:00:47.579 [XNIO-1 task-3] 7waB0a4XQva2E6PJSrGDAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.579 [XNIO-1 task-3] 7waB0a4XQva2E6PJSrGDAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.579 [XNIO-1 task-3] 7waB0a4XQva2E6PJSrGDAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.580 [XNIO-1 task-3] 7waB0a4XQva2E6PJSrGDAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:47.586 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8fb9d633 +19:00:47.586 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2ec05652 +19:00:47.587 [XNIO-1 task-1] E2TjfvFaQ5ivSdt6CRV0XA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.590 [XNIO-1 task-3] 7waB0a4XQva2E6PJSrGDAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.591 [XNIO-1 task-3] 7waB0a4XQva2E6PJSrGDAw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.593 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fcaba8e6-c47e-4ce6-bf8f-ebc8df2ca1b0 +19:00:47.594 [XNIO-1 task-1] Z9w0UML5R5eJzpi86-S41A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.594 [XNIO-1 task-1] Z9w0UML5R5eJzpi86-S41A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.596 [XNIO-1 task-1] Z9w0UML5R5eJzpi86-S41A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.596 [XNIO-1 task-1] Z9w0UML5R5eJzpi86-S41A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.604 [XNIO-1 task-1] Z9w0UML5R5eJzpi86-S41A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.606 [XNIO-1 task-3] soXv50e4R0-F9hyMd0akOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.606 [XNIO-1 task-3] soXv50e4R0-F9hyMd0akOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.606 [XNIO-1 task-3] soXv50e4R0-F9hyMd0akOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.607 [XNIO-1 task-3] soXv50e4R0-F9hyMd0akOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fcaba8e6-c47e-4ce6-bf8f-ebc8df2ca1b0 scope = null +19:00:47.609 [XNIO-1 task-1] wC3hxlIIRjmppX3DS6x-2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.609 [XNIO-1 task-1] wC3hxlIIRjmppX3DS6x-2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.609 [XNIO-1 task-1] wC3hxlIIRjmppX3DS6x-2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.610 [XNIO-1 task-1] wC3hxlIIRjmppX3DS6x-2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.620 [XNIO-1 task-1] wC3hxlIIRjmppX3DS6x-2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.622 [XNIO-1 task-3] soXv50e4R0-F9hyMd0akOQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.627 [XNIO-1 task-1] ssJ_M72ZTQqq5ik4LsNWUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.628 [XNIO-1 task-1] ssJ_M72ZTQqq5ik4LsNWUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.628 [XNIO-1 task-1] ssJ_M72ZTQqq5ik4LsNWUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.628 [XNIO-1 task-1] ssJ_M72ZTQqq5ik4LsNWUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", authorization) +19:00:47.638 [XNIO-1 task-1] ssJ_M72ZTQqq5ik4LsNWUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.645 [XNIO-1 task-1] IjrD8_OZRvSGkJEwRbh3GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.647 [XNIO-1 task-1] IjrD8_OZRvSGkJEwRbh3GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.652 [XNIO-1 task-3] aynLgqQ2QfmLDys7skI5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.654 [XNIO-1 task-3] aynLgqQ2QfmLDys7skI5vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.654 [XNIO-1 task-3] aynLgqQ2QfmLDys7skI5vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.655 [XNIO-1 task-3] aynLgqQ2QfmLDys7skI5vA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjRlOGU3Y2ItYzQ0Yi00NDdmLTlkZmMtZjcyYzhkZTI0YmE2OjdzM3R4N3pvVFVLaWg3VV9wVUMwd3c=", "Basic NjRlOGU3Y2ItYzQ0Yi00NDdmLTlkZmMtZjcyYzhkZTI0YmE2OjdzM3R4N3pvVFVLaWg3VV9wVUMwd3c=", authorization) +19:00:47.648 [XNIO-1 task-1] IjrD8_OZRvSGkJEwRbh3GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.657 [XNIO-1 task-1] IjrD8_OZRvSGkJEwRbh3GA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", authorization) +19:00:47.659 [XNIO-1 task-2] pF6XWEosRjGVJ6CEAWk6DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.659 [XNIO-1 task-2] pF6XWEosRjGVJ6CEAWk6DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.659 [XNIO-1 task-2] pF6XWEosRjGVJ6CEAWk6DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.659 [XNIO-1 task-2] pF6XWEosRjGVJ6CEAWk6DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:47.663 [XNIO-1 task-1] IjrD8_OZRvSGkJEwRbh3GA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.665 [XNIO-1 task-3] aynLgqQ2QfmLDys7skI5vA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.665 [XNIO-1 task-3] aynLgqQ2QfmLDys7skI5vA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.670 [XNIO-1 task-1] RZivOiLzSsmUdJX3M00QAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.672 [XNIO-1 task-1] RZivOiLzSsmUdJX3M00QAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.672 [XNIO-1 task-2] pF6XWEosRjGVJ6CEAWk6DQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.675 [XNIO-1 task-2] pF6XWEosRjGVJ6CEAWk6DQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.676 [XNIO-1 task-1] RZivOiLzSsmUdJX3M00QAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", authorization) +19:00:47.686 [XNIO-1 task-1] RZivOiLzSsmUdJX3M00QAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.689 [XNIO-1 task-1] 4-w-6s7UToWJLWeJiugAkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.690 [XNIO-1 task-1] 4-w-6s7UToWJLWeJiugAkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.690 [XNIO-1 task-1] 4-w-6s7UToWJLWeJiugAkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.690 [XNIO-1 task-1] 4-w-6s7UToWJLWeJiugAkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:47.691 [XNIO-1 task-2] Oos3hKpQQzGs59oxMbhzGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.691 [XNIO-1 task-2] Oos3hKpQQzGs59oxMbhzGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.691 [XNIO-1 task-2] Oos3hKpQQzGs59oxMbhzGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.691 [XNIO-1 task-2] Oos3hKpQQzGs59oxMbhzGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", "Basic YzEyNzA0NDAtYjkxYi00OTJlLWFjMjYtMGU1ZTJmNjExYmYwOllZUnFvOWZ3UTRtV1NXUko2RzRsQWc=", authorization) +19:00:47.698 [XNIO-1 task-2] Oos3hKpQQzGs59oxMbhzGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.701 [XNIO-1 task-1] 4-w-6s7UToWJLWeJiugAkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.706 [XNIO-1 task-2] hEE6_e7oQ6-BlmM109R7DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.706 [XNIO-1 task-2] hEE6_e7oQ6-BlmM109R7DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.706 [XNIO-1 task-2] hEE6_e7oQ6-BlmM109R7DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.707 [XNIO-1 task-3] I8pmma3MQxOUa0hDPFNlIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.709 [XNIO-1 task-3] I8pmma3MQxOUa0hDPFNlIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.710 [XNIO-1 task-3] I8pmma3MQxOUa0hDPFNlIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.707 [XNIO-1 task-2] hEE6_e7oQ6-BlmM109R7DA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThkNjI3MTUtZWI5ZS00NTQ0LTg0MTQtZWQwZTFmM2Y3MDAxOk9sVDdwT3g0UWY2NW5FcTc3Zks3eEE=", "Basic ZThkNjI3MTUtZWI5ZS00NTQ0LTg0MTQtZWQwZTFmM2Y3MDAxOk9sVDdwT3g0UWY2NW5FcTc3Zks3eEE=", authorization) +19:00:47.710 [XNIO-1 task-2] hEE6_e7oQ6-BlmM109R7DA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.718 [XNIO-1 task-2] hEE6_e7oQ6-BlmM109R7DA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.725 [XNIO-1 task-2] mBjzcIc_SiKfN3tTGExvzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.725 [XNIO-1 task-2] mBjzcIc_SiKfN3tTGExvzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.725 [XNIO-1 task-2] mBjzcIc_SiKfN3tTGExvzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.726 [XNIO-1 task-2] mBjzcIc_SiKfN3tTGExvzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZThkNjI3MTUtZWI5ZS00NTQ0LTg0MTQtZWQwZTFmM2Y3MDAxOk9sVDdwT3g0UWY2NW5FcTc3Zks3eEE=", "Basic ZThkNjI3MTUtZWI5ZS00NTQ0LTg0MTQtZWQwZTFmM2Y3MDAxOk9sVDdwT3g0UWY2NW5FcTc3Zks3eEE=", authorization) +19:00:47.727 [XNIO-1 task-3] I8pmma3MQxOUa0hDPFNlIQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.729 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bdecf459-854f-4bf3-949e-3547285d132f +19:00:47.731 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bdecf459-854f-4bf3-949e-3547285d132f +19:00:47.731 [XNIO-1 task-2] mBjzcIc_SiKfN3tTGExvzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.740 [XNIO-1 task-2] ows0-gTPQ8yv3Hx5EA7o9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.740 [XNIO-1 task-2] ows0-gTPQ8yv3Hx5EA7o9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.740 [XNIO-1 task-2] ows0-gTPQ8yv3Hx5EA7o9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.741 [XNIO-1 task-2] ows0-gTPQ8yv3Hx5EA7o9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.746 [XNIO-1 task-2] ows0-gTPQ8yv3Hx5EA7o9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.756 [XNIO-1 task-2] pBtPOQ3DTXK357IW3crGVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.756 [XNIO-1 task-2] pBtPOQ3DTXK357IW3crGVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.757 [XNIO-1 task-2] pBtPOQ3DTXK357IW3crGVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.757 [XNIO-1 task-2] pBtPOQ3DTXK357IW3crGVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.763 [XNIO-1 task-2] pBtPOQ3DTXK357IW3crGVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.769 [XNIO-1 task-2] vmw9Lw6aQtaMyhdNDW6tEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.769 [XNIO-1 task-2] vmw9Lw6aQtaMyhdNDW6tEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.769 [XNIO-1 task-2] vmw9Lw6aQtaMyhdNDW6tEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.770 [XNIO-1 task-2] vmw9Lw6aQtaMyhdNDW6tEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjRlOGU3Y2ItYzQ0Yi00NDdmLTlkZmMtZjcyYzhkZTI0YmE2OjdzM3R4N3pvVFVLaWg3VV9wVUMwd3c=", "Basic NjRlOGU3Y2ItYzQ0Yi00NDdmLTlkZmMtZjcyYzhkZTI0YmE2OjdzM3R4N3pvVFVLaWg3VV9wVUMwd3c=", authorization) +19:00:47.771 [XNIO-1 task-3] Jm2dvXnMQT6aOzJc2vavSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.772 [XNIO-1 task-3] Jm2dvXnMQT6aOzJc2vavSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.772 [XNIO-1 task-3] Jm2dvXnMQT6aOzJc2vavSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.772 [XNIO-1 task-3] Jm2dvXnMQT6aOzJc2vavSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.778 [XNIO-1 task-3] Jm2dvXnMQT6aOzJc2vavSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.780 [XNIO-1 task-1] hsj1oye5R-uC_EMxfTjbVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.780 [XNIO-1 task-1] hsj1oye5R-uC_EMxfTjbVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.780 [XNIO-1 task-1] hsj1oye5R-uC_EMxfTjbVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.781 [XNIO-1 task-1] hsj1oye5R-uC_EMxfTjbVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", authorization) +19:00:47.782 [XNIO-1 task-3] 1JvJbbUaR-SzvE842Bgklw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.782 [XNIO-1 task-3] 1JvJbbUaR-SzvE842Bgklw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.782 [XNIO-1 task-3] 1JvJbbUaR-SzvE842Bgklw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.783 [XNIO-1 task-3] 1JvJbbUaR-SzvE842Bgklw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.783 [XNIO-1 task-2] vmw9Lw6aQtaMyhdNDW6tEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.783 [XNIO-1 task-2] vmw9Lw6aQtaMyhdNDW6tEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.789 [XNIO-1 task-1] hsj1oye5R-uC_EMxfTjbVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.792 [XNIO-1 task-3] 1JvJbbUaR-SzvE842Bgklw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.801 [XNIO-1 task-1] L5ACuGlXSGWCw8kvPHzCHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.801 [XNIO-1 task-1] L5ACuGlXSGWCw8kvPHzCHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.801 [XNIO-1 task-1] L5ACuGlXSGWCw8kvPHzCHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.801 [XNIO-1 task-1] L5ACuGlXSGWCw8kvPHzCHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.806 [XNIO-1 task-1] L5ACuGlXSGWCw8kvPHzCHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.813 [XNIO-1 task-1] Ud3gp8GnRaSsaYfcqtwF0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.813 [XNIO-1 task-1] Ud3gp8GnRaSsaYfcqtwF0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.813 [XNIO-1 task-1] Ud3gp8GnRaSsaYfcqtwF0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.813 [XNIO-1 task-1] Ud3gp8GnRaSsaYfcqtwF0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWEwN2FlZjYtYjdhNi00ODQxLWE1YTUtNmUxZmYxODVmNmRlOnhXYXBDTU8wVG1DUTY3cDdGajFlNGc=", "Basic MWEwN2FlZjYtYjdhNi00ODQxLWE1YTUtNmUxZmYxODVmNmRlOnhXYXBDTU8wVG1DUTY3cDdGajFlNGc=", authorization) +19:00:47.816 [XNIO-1 task-3] iZMMMDNaTACKPOrarJj5Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.816 [XNIO-1 task-3] iZMMMDNaTACKPOrarJj5Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.817 [XNIO-1 task-3] iZMMMDNaTACKPOrarJj5Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.817 [XNIO-1 task-3] iZMMMDNaTACKPOrarJj5Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:47.822 [XNIO-1 task-3] iZMMMDNaTACKPOrarJj5Ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.829 [XNIO-1 task-3] KotOrZl1RZ2-5JrCDADfLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.829 [XNIO-1 task-3] KotOrZl1RZ2-5JrCDADfLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.829 [XNIO-1 task-3] KotOrZl1RZ2-5JrCDADfLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.829 [XNIO-1 task-3] KotOrZl1RZ2-5JrCDADfLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:47.830 [XNIO-1 task-1] Ud3gp8GnRaSsaYfcqtwF0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.835 [XNIO-1 task-1] Ud3gp8GnRaSsaYfcqtwF0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.836 [XNIO-1 task-3] KotOrZl1RZ2-5JrCDADfLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.850 [XNIO-1 task-1] qQOfVL7wR7ujmmAhzy8RZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.850 [XNIO-1 task-1] qQOfVL7wR7ujmmAhzy8RZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.851 [XNIO-1 task-1] qQOfVL7wR7ujmmAhzy8RZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.851 [XNIO-1 task-1] qQOfVL7wR7ujmmAhzy8RZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.856 [XNIO-1 task-3] _B7pmhwbS8qhtWBSgxXLsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.856 [XNIO-1 task-3] _B7pmhwbS8qhtWBSgxXLsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.857 [XNIO-1 task-3] _B7pmhwbS8qhtWBSgxXLsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.857 [XNIO-1 task-3] _B7pmhwbS8qhtWBSgxXLsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c5a81806-b78a-4bc0-9ae1-9eb91d583ba8 scope = null +19:00:47.860 [XNIO-1 task-1] qQOfVL7wR7ujmmAhzy8RZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.861 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb128129 +19:00:47.867 [XNIO-1 task-1] i87diAw6SbCr1rlK6vAWVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.867 [XNIO-1 task-1] i87diAw6SbCr1rlK6vAWVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.867 [XNIO-1 task-1] i87diAw6SbCr1rlK6vAWVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.867 [XNIO-1 task-2] 2MUpcpvETAKzpkAD1bQTyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.867 [XNIO-1 task-2] 2MUpcpvETAKzpkAD1bQTyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.867 [XNIO-1 task-1] i87diAw6SbCr1rlK6vAWVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QScil4iDSnmdsYFQQNqrOA redirectUri = http://localhost:8080/authorization +19:00:47.868 [XNIO-1 task-2] 2MUpcpvETAKzpkAD1bQTyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.869 [XNIO-1 task-2] 2MUpcpvETAKzpkAD1bQTyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.875 [XNIO-1 task-3] _B7pmhwbS8qhtWBSgxXLsQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.876 [XNIO-1 task-2] 2MUpcpvETAKzpkAD1bQTyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.877 [XNIO-1 task-1] i87diAw6SbCr1rlK6vAWVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:47.878 [XNIO-1 task-1] i87diAw6SbCr1rlK6vAWVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.879 [XNIO-1 task-2] XMD5creqRVitGzNX0bv8NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.880 [XNIO-1 task-2] XMD5creqRVitGzNX0bv8NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.880 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:47.880 [XNIO-1 task-2] XMD5creqRVitGzNX0bv8NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.880 [XNIO-1 task-2] XMD5creqRVitGzNX0bv8NQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.886 [XNIO-1 task-2] XMD5creqRVitGzNX0bv8NQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.895 [XNIO-1 task-3] ax3c8FRhSwS3Rv_TbB6g0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.895 [XNIO-1 task-3] ax3c8FRhSwS3Rv_TbB6g0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.895 [XNIO-1 task-3] ax3c8FRhSwS3Rv_TbB6g0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.896 [XNIO-1 task-3] ax3c8FRhSwS3Rv_TbB6g0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.899 [XNIO-1 task-1] Tdi4_AtcTQW9TOSybv05zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.899 [XNIO-1 task-1] Tdi4_AtcTQW9TOSybv05zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.899 [XNIO-1 task-1] Tdi4_AtcTQW9TOSybv05zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.900 [XNIO-1 task-1] Tdi4_AtcTQW9TOSybv05zQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e6d10dbd-b9f0-42a8-a5e3-1face2be8c0b scope = null +19:00:47.904 [XNIO-1 task-3] ax3c8FRhSwS3Rv_TbB6g0g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.909 [XNIO-1 task-3] a9eJOxD7SnW41i_bBfNy7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.909 [XNIO-1 task-3] a9eJOxD7SnW41i_bBfNy7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.909 [XNIO-1 task-3] a9eJOxD7SnW41i_bBfNy7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.910 [XNIO-1 task-3] a9eJOxD7SnW41i_bBfNy7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.912 [XNIO-1 task-1] Tdi4_AtcTQW9TOSybv05zQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.916 [XNIO-1 task-3] a9eJOxD7SnW41i_bBfNy7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.925 [XNIO-1 task-3] DB2VXk5hSqy7Tu5ewa8FEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.925 [XNIO-1 task-3] DB2VXk5hSqy7Tu5ewa8FEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.925 [XNIO-1 task-3] DB2VXk5hSqy7Tu5ewa8FEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.926 [XNIO-1 task-3] DB2VXk5hSqy7Tu5ewa8FEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.932 [XNIO-1 task-3] DB2VXk5hSqy7Tu5ewa8FEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.939 [XNIO-1 task-3] kRBHINBCTl2tWeLMfb38bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.939 [XNIO-1 task-3] kRBHINBCTl2tWeLMfb38bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.940 [XNIO-1 task-3] kRBHINBCTl2tWeLMfb38bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.941 [XNIO-1 task-3] kRBHINBCTl2tWeLMfb38bA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.947 [XNIO-1 task-3] kRBHINBCTl2tWeLMfb38bA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:47.956 [XNIO-1 task-3] mdD5TmxTT86AbCgSR8DemA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.956 [XNIO-1 task-3] mdD5TmxTT86AbCgSR8DemA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.956 [XNIO-1 task-3] mdD5TmxTT86AbCgSR8DemA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.957 [XNIO-1 task-3] mdD5TmxTT86AbCgSR8DemA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.959 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:053d3b38 +19:00:47.964 [XNIO-1 task-1] DakclAyATEiTMYa8dSe9Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.964 [XNIO-1 task-1] DakclAyATEiTMYa8dSe9Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.964 [XNIO-1 task-1] DakclAyATEiTMYa8dSe9Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.964 [XNIO-1 task-1] DakclAyATEiTMYa8dSe9Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.965 [XNIO-1 task-1] DakclAyATEiTMYa8dSe9Rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pfzg8eMTQ0mxUJpK3UAyAQ redirectUri = http://localhost:8080/authorization +19:00:47.970 [XNIO-1 task-3] 2nIvQ9MpQOmit5QDbhgWcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.970 [XNIO-1 task-3] 2nIvQ9MpQOmit5QDbhgWcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.971 [XNIO-1 task-3] 2nIvQ9MpQOmit5QDbhgWcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:47.972 [XNIO-1 task-3] 2nIvQ9MpQOmit5QDbhgWcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:47.975 [XNIO-1 task-1] DakclAyATEiTMYa8dSe9Rg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.978 [XNIO-1 task-3] 2nIvQ9MpQOmit5QDbhgWcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:47.989 [XNIO-1 task-1] yHc0ZUCGQyu06SKtb8lvGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.990 [XNIO-1 task-1] yHc0ZUCGQyu06SKtb8lvGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.990 [XNIO-1 task-1] yHc0ZUCGQyu06SKtb8lvGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.990 [XNIO-1 task-1] yHc0ZUCGQyu06SKtb8lvGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZDk4MTctM2QzZC00ODNjLWIxMWYtYTM1ZDA0NjI4ODkyOmZ5WG44Tm00UWQ2NlpDNDY0QnNNS1E=", "Basic YjQyZDk4MTctM2QzZC00ODNjLWIxMWYtYTM1ZDA0NjI4ODkyOmZ5WG44Tm00UWQ2NlpDNDY0QnNNS1E=", authorization) +19:00:47.994 [XNIO-1 task-3] p0XBZPPcRBK6IXMcD8h2VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.994 [XNIO-1 task-3] p0XBZPPcRBK6IXMcD8h2VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:47.994 [XNIO-1 task-3] p0XBZPPcRBK6IXMcD8h2VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:47.995 [XNIO-1 task-3] p0XBZPPcRBK6IXMcD8h2VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", authorization) +19:00:47.996 [XNIO-1 task-1] yHc0ZUCGQyu06SKtb8lvGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.002 [XNIO-1 task-1] n2gsIrzRRmG6tscWotwV0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.003 [XNIO-1 task-1] n2gsIrzRRmG6tscWotwV0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.003 [XNIO-1 task-1] n2gsIrzRRmG6tscWotwV0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.003 [XNIO-1 task-1] n2gsIrzRRmG6tscWotwV0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQyZDk4MTctM2QzZC00ODNjLWIxMWYtYTM1ZDA0NjI4ODkyOmZ5WG44Tm00UWQ2NlpDNDY0QnNNS1E=", "Basic YjQyZDk4MTctM2QzZC00ODNjLWIxMWYtYTM1ZDA0NjI4ODkyOmZ5WG44Tm00UWQ2NlpDNDY0QnNNS1E=", authorization) +19:00:48.005 [XNIO-1 task-3] p0XBZPPcRBK6IXMcD8h2VQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:48.005 [XNIO-1 task-3] p0XBZPPcRBK6IXMcD8h2VQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.011 [XNIO-1 task-1] n2gsIrzRRmG6tscWotwV0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.017 [XNIO-1 task-1] OW8IRWTSTUCj1nU5okTNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.017 [XNIO-1 task-1] OW8IRWTSTUCj1nU5okTNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.017 [XNIO-1 task-1] OW8IRWTSTUCj1nU5okTNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.017 [XNIO-1 task-1] OW8IRWTSTUCj1nU5okTNvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.025 [XNIO-1 task-1] OW8IRWTSTUCj1nU5okTNvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.026 [XNIO-1 task-3] tM4xhnsLQouWaQpCr_KLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.027 [XNIO-1 task-3] tM4xhnsLQouWaQpCr_KLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.027 [XNIO-1 task-3] tM4xhnsLQouWaQpCr_KLcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.027 [XNIO-1 task-3] tM4xhnsLQouWaQpCr_KLcw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e3ab80a6-cffd-41bb-8beb-a454bd56c7ca scope = null +19:00:48.030 [XNIO-1 task-1] ykisATDmTYWGwtFnuWiZNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.030 [XNIO-1 task-1] ykisATDmTYWGwtFnuWiZNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.030 [XNIO-1 task-1] ykisATDmTYWGwtFnuWiZNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.031 [XNIO-1 task-1] ykisATDmTYWGwtFnuWiZNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.036 [XNIO-1 task-1] ykisATDmTYWGwtFnuWiZNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e3ab80a6-cffd-41bb-8beb-a454bd56c7ca is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:48.047 [XNIO-1 task-1] v8kaRqFTQvOQxLiLWC2pKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.047 [XNIO-1 task-1] v8kaRqFTQvOQxLiLWC2pKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.047 [XNIO-1 task-1] v8kaRqFTQvOQxLiLWC2pKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.048 [XNIO-1 task-1] v8kaRqFTQvOQxLiLWC2pKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:48.051 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4c088068 +19:00:48.054 [XNIO-1 task-1] v8kaRqFTQvOQxLiLWC2pKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.060 [XNIO-1 task-1] inYScIWGSEeJhHyOmZojcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.062 [XNIO-1 task-1] inYScIWGSEeJhHyOmZojcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.062 [XNIO-1 task-1] inYScIWGSEeJhHyOmZojcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.063 [XNIO-1 task-1] inYScIWGSEeJhHyOmZojcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", "Basic YTBkOGFmYzgtNTUyMS00YThmLTkyOTEtZjQyNjkzYTUxMTU1OkEtU2NjUm1GVHMyLVFzSFFwNnZxQ0E=", authorization) +19:00:48.068 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:038be652 +19:00:48.069 [XNIO-1 task-1] inYScIWGSEeJhHyOmZojcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.079 [XNIO-1 task-1] Vt6hHNolSQSWwDyK7oW97g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.080 [XNIO-1 task-1] Vt6hHNolSQSWwDyK7oW97g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.080 [XNIO-1 task-1] Vt6hHNolSQSWwDyK7oW97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.080 [XNIO-1 task-1] Vt6hHNolSQSWwDyK7oW97g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.080 [XNIO-1 task-1] Vt6hHNolSQSWwDyK7oW97g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.081 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:58025662 +19:00:48.088 [XNIO-1 task-1] Vt6hHNolSQSWwDyK7oW97g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.099 [XNIO-1 task-1] IA73lGE_QDaVUV9yaQP2nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.099 [XNIO-1 task-1] IA73lGE_QDaVUV9yaQP2nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.099 [XNIO-1 task-1] IA73lGE_QDaVUV9yaQP2nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.100 [XNIO-1 task-1] IA73lGE_QDaVUV9yaQP2nA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CWBdg6nUR06ccJAtxhuNVg redirectUri = http://localhost:8080/authorization +19:00:48.100 [XNIO-1 task-3] XzP2XWwSRyemIWpLjOANLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.100 [XNIO-1 task-3] XzP2XWwSRyemIWpLjOANLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.100 [XNIO-1 task-3] XzP2XWwSRyemIWpLjOANLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.101 [XNIO-1 task-3] XzP2XWwSRyemIWpLjOANLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.106 [XNIO-1 task-1] IA73lGE_QDaVUV9yaQP2nA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.107 [XNIO-1 task-3] XzP2XWwSRyemIWpLjOANLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.116 [XNIO-1 task-3] HsdQZQsATG6EgsqG0gkKjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.116 [XNIO-1 task-3] HsdQZQsATG6EgsqG0gkKjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.117 [XNIO-1 task-3] HsdQZQsATG6EgsqG0gkKjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.117 [XNIO-1 task-3] HsdQZQsATG6EgsqG0gkKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", authorization) +19:00:48.123 [XNIO-1 task-3] HsdQZQsATG6EgsqG0gkKjw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.133 [XNIO-1 task-3] MzHCVQF-Tr6Qos1CgEIw8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.134 [XNIO-1 task-3] MzHCVQF-Tr6Qos1CgEIw8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.134 [XNIO-1 task-3] MzHCVQF-Tr6Qos1CgEIw8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.135 [XNIO-1 task-3] MzHCVQF-Tr6Qos1CgEIw8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", authorization) +19:00:48.139 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:19cf0787-2015-49a1-9eb9-20bd1c3d472e +19:00:48.143 [XNIO-1 task-3] MzHCVQF-Tr6Qos1CgEIw8Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.150 [XNIO-1 task-3] GOugjYu8QZ6d00vTwq9GnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.150 [XNIO-1 task-3] GOugjYu8QZ6d00vTwq9GnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.150 [XNIO-1 task-3] GOugjYu8QZ6d00vTwq9GnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.151 [XNIO-1 task-3] GOugjYu8QZ6d00vTwq9GnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = aefiSLXUR26ePuhpp_ZYvA redirectUri = http://localhost:8080/authorization +19:00:48.152 [XNIO-1 task-1] DxhasvNzTLiXJx-iDYr2Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.152 [XNIO-1 task-1] DxhasvNzTLiXJx-iDYr2Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.153 [XNIO-1 task-1] DxhasvNzTLiXJx-iDYr2Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.153 [XNIO-1 task-1] DxhasvNzTLiXJx-iDYr2Lg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.158 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3562ea2e-d1d4-45f9-9b60-4dc94dee3f45 +19:00:48.159 [XNIO-1 task-3] GOugjYu8QZ6d00vTwq9GnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.164 [XNIO-1 task-1] DxhasvNzTLiXJx-iDYr2Lg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.164 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3562ea2e-d1d4-45f9-9b60-4dc94dee3f45 +19:00:48.173 [XNIO-1 task-1] uBUDR-o2Qc2DS3rh5hHG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.173 [XNIO-1 task-1] uBUDR-o2Qc2DS3rh5hHG8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.173 [XNIO-1 task-1] uBUDR-o2Qc2DS3rh5hHG8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.173 [XNIO-1 task-1] uBUDR-o2Qc2DS3rh5hHG8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", "Basic N2ZkZTI5ZTUtYTY5ZC00YzE1LTg3NWItNGU2N2VmMWQ5NmY1Ok51VjRZZDBpU3hpRUtBaS1KdkptU2c=", authorization) +19:00:48.176 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e794058 +19:00:48.178 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0e794058 +19:00:48.179 [XNIO-1 task-1] uBUDR-o2Qc2DS3rh5hHG8g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.185 [XNIO-1 task-1] O6omZ58DSgCxto-NowEFPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.185 [XNIO-1 task-1] O6omZ58DSgCxto-NowEFPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.186 [XNIO-1 task-1] O6omZ58DSgCxto-NowEFPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.186 [XNIO-1 task-1] O6omZ58DSgCxto-NowEFPw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.192 [XNIO-1 task-3] P_g5gzb9R8-RAo1K-N_zYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.192 [XNIO-1 task-1] O6omZ58DSgCxto-NowEFPw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.193 [XNIO-1 task-3] P_g5gzb9R8-RAo1K-N_zYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.193 [XNIO-1 task-3] P_g5gzb9R8-RAo1K-N_zYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.193 [XNIO-1 task-3] P_g5gzb9R8-RAo1K-N_zYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dMh88ZoITNySuVilGOos7A redirectUri = http://localhost:8080/authorization +19:00:48.194 [XNIO-1 task-2] o2nhVsgwSsuGzslCxDmRJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.194 [XNIO-1 task-2] o2nhVsgwSsuGzslCxDmRJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.195 [XNIO-1 task-2] o2nhVsgwSsuGzslCxDmRJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.195 [XNIO-1 task-2] o2nhVsgwSsuGzslCxDmRJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = zJgceAO2SViSWu7CILooew redirectUri = http://localhost:8080/authorization +19:00:48.202 [XNIO-1 task-3] P_g5gzb9R8-RAo1K-N_zYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.204 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.205 [XNIO-1 task-2] o2nhVsgwSsuGzslCxDmRJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:48.205 [XNIO-1 task-2] o2nhVsgwSsuGzslCxDmRJg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.205 [XNIO-1 task-1] FWU4V7GfQo69UzQICrTP9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.205 [XNIO-1 task-1] FWU4V7GfQo69UzQICrTP9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.206 [XNIO-1 task-1] FWU4V7GfQo69UzQICrTP9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.206 [XNIO-1 task-1] FWU4V7GfQo69UzQICrTP9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.225 [XNIO-1 task-1] FWU4V7GfQo69UzQICrTP9A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.231 [XNIO-1 task-1] XFKjcfCdQFyy0NEpHpd3YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.231 [XNIO-1 task-1] XFKjcfCdQFyy0NEpHpd3YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.232 [XNIO-1 task-1] XFKjcfCdQFyy0NEpHpd3YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.233 [XNIO-1 task-1] XFKjcfCdQFyy0NEpHpd3YA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.246 [XNIO-1 task-1] XFKjcfCdQFyy0NEpHpd3YA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.253 [XNIO-1 task-1] AvEPelK4SMufnlnH7yA6WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.254 [XNIO-1 task-1] AvEPelK4SMufnlnH7yA6WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.254 [XNIO-1 task-1] AvEPelK4SMufnlnH7yA6WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.254 [XNIO-1 task-1] AvEPelK4SMufnlnH7yA6WA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.262 [XNIO-1 task-1] AvEPelK4SMufnlnH7yA6WA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.271 [XNIO-1 task-1] 8Q-RVBz2QMWsFxZp5jPZfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.271 [XNIO-1 task-1] 8Q-RVBz2QMWsFxZp5jPZfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.272 [XNIO-1 task-1] 8Q-RVBz2QMWsFxZp5jPZfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.272 [XNIO-1 task-1] 8Q-RVBz2QMWsFxZp5jPZfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.276 [XNIO-1 task-2] lKBtLBx9SyqBnoRv_DvBxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.277 [XNIO-1 task-2] lKBtLBx9SyqBnoRv_DvBxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.279 [XNIO-1 task-1] 8Q-RVBz2QMWsFxZp5jPZfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.279 [XNIO-1 task-1] 8Q-RVBz2QMWsFxZp5jPZfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.280 [XNIO-1 task-2] lKBtLBx9SyqBnoRv_DvBxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9glvJwhDQz2eTw-i3F1DRg redirectUri = http://localhost:8080/authorization +19:00:48.287 [XNIO-1 task-1] l_zG_Eo3TyqXIbS2c3TjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.287 [XNIO-1 task-1] l_zG_Eo3TyqXIbS2c3TjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.287 [XNIO-1 task-1] l_zG_Eo3TyqXIbS2c3TjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.287 [XNIO-1 task-1] l_zG_Eo3TyqXIbS2c3TjhQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.295 [XNIO-1 task-1] l_zG_Eo3TyqXIbS2c3TjhQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.297 [XNIO-1 task-2] lKBtLBx9SyqBnoRv_DvBxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.303 [XNIO-1 task-1] Y_4YfsYwSleFbIl38GWy4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.303 [XNIO-1 task-1] Y_4YfsYwSleFbIl38GWy4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.304 [XNIO-1 task-1] Y_4YfsYwSleFbIl38GWy4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.305 [XNIO-1 task-1] Y_4YfsYwSleFbIl38GWy4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", authorization) +19:00:48.314 [XNIO-1 task-1] Y_4YfsYwSleFbIl38GWy4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.319 [XNIO-1 task-1] BnxLEBx-R_GGFsB3sSc5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.319 [XNIO-1 task-1] BnxLEBx-R_GGFsB3sSc5ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.319 [XNIO-1 task-1] BnxLEBx-R_GGFsB3sSc5ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.320 [XNIO-1 task-1] BnxLEBx-R_GGFsB3sSc5ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", authorization) +19:00:48.327 [XNIO-1 task-1] BnxLEBx-R_GGFsB3sSc5ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.334 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e794058 +19:00:48.337 [XNIO-1 task-1] jUaLJa_YQoSyQtAxnH9r4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.337 [XNIO-1 task-1] jUaLJa_YQoSyQtAxnH9r4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.337 [XNIO-1 task-1] jUaLJa_YQoSyQtAxnH9r4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.338 [XNIO-1 task-1] jUaLJa_YQoSyQtAxnH9r4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", authorization) +19:00:48.345 [XNIO-1 task-1] jUaLJa_YQoSyQtAxnH9r4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.350 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:68563aee-5ccc-42c2-b55d-bad91dd9b0ca +19:00:48.352 [XNIO-1 task-1] 3rhjCdDRS_ifQrmkzWxPLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.352 [XNIO-1 task-1] 3rhjCdDRS_ifQrmkzWxPLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.353 [XNIO-1 task-1] 3rhjCdDRS_ifQrmkzWxPLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.353 [XNIO-1 task-1] 3rhjCdDRS_ifQrmkzWxPLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.364 [XNIO-1 task-1] 3rhjCdDRS_ifQrmkzWxPLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.377 [XNIO-1 task-1] Fue7HlhuQICnIPphNzvLbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.377 [XNIO-1 task-1] Fue7HlhuQICnIPphNzvLbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.378 [XNIO-1 task-1] Fue7HlhuQICnIPphNzvLbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.378 [XNIO-1 task-1] Fue7HlhuQICnIPphNzvLbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.389 [XNIO-1 task-1] Fue7HlhuQICnIPphNzvLbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.403 [XNIO-1 task-1] gSBYAPSgTeCPwYzu-J3h8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.403 [XNIO-1 task-1] gSBYAPSgTeCPwYzu-J3h8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.403 [XNIO-1 task-1] gSBYAPSgTeCPwYzu-J3h8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.404 [XNIO-1 task-1] gSBYAPSgTeCPwYzu-J3h8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:48.409 [XNIO-1 task-1] gSBYAPSgTeCPwYzu-J3h8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.412 [XNIO-1 task-2] QgK22TWvQemsz16X3NrQpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.412 [XNIO-1 task-2] QgK22TWvQemsz16X3NrQpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.413 [XNIO-1 task-2] QgK22TWvQemsz16X3NrQpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.413 [XNIO-1 task-2] QgK22TWvQemsz16X3NrQpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTJjMTYzZjUtN2Q0NS00NTM1LWJhMDQtMThmNGE3NzlmYjRkOndDdFdHRUtqU1o2SVpQX3NucW9BYkE=", "Basic MTJjMTYzZjUtN2Q0NS00NTM1LWJhMDQtMThmNGE3NzlmYjRkOndDdFdHRUtqU1o2SVpQX3NucW9BYkE=", authorization) +19:00:48.415 [XNIO-1 task-1] K9Id3iGgRiCx-YmxmIlSiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.416 [XNIO-1 task-1] K9Id3iGgRiCx-YmxmIlSiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.416 [XNIO-1 task-1] K9Id3iGgRiCx-YmxmIlSiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.416 [XNIO-1 task-1] K9Id3iGgRiCx-YmxmIlSiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", authorization) +19:00:48.422 [XNIO-1 task-1] K9Id3iGgRiCx-YmxmIlSiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.423 [XNIO-1 task-2] QgK22TWvQemsz16X3NrQpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:48.423 [XNIO-1 task-2] QgK22TWvQemsz16X3NrQpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.431 [XNIO-1 task-1] jU2z2H9_SOKAlXmHbfL-Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.432 [XNIO-1 task-3] NqUV4XjgQFWRqApA67MxJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.433 [XNIO-1 task-1] jU2z2H9_SOKAlXmHbfL-Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.433 [XNIO-1 task-1] jU2z2H9_SOKAlXmHbfL-Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.433 [XNIO-1 task-1] jU2z2H9_SOKAlXmHbfL-Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:48.433 [XNIO-1 task-3] NqUV4XjgQFWRqApA67MxJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.435 [XNIO-1 task-3] NqUV4XjgQFWRqApA67MxJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.435 [XNIO-1 task-3] NqUV4XjgQFWRqApA67MxJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.441 [XNIO-1 task-3] NqUV4XjgQFWRqApA67MxJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.443 [XNIO-1 task-1] jU2z2H9_SOKAlXmHbfL-Xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.447 [XNIO-1 task-3] QdVwPbJKRzKSviMNpic25A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.447 [XNIO-1 task-3] QdVwPbJKRzKSviMNpic25A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.447 [XNIO-1 task-3] QdVwPbJKRzKSviMNpic25A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.449 [XNIO-1 task-3] QdVwPbJKRzKSviMNpic25A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", "Basic Y2EzOGYxMTktYzIzMi00NjY4LTk1ODUtMTM4NmUzZDY3YWIzOkVEQnVFX0RwUzBPRkZXT2lkeHNvSHc=", authorization) +19:00:48.452 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0e794058 +19:00:48.455 [XNIO-1 task-3] QdVwPbJKRzKSviMNpic25A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.462 [XNIO-1 task-3] eDm8V_CHT6qXKKQeYYgmzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.462 [XNIO-1 task-3] eDm8V_CHT6qXKKQeYYgmzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.465 [XNIO-1 task-1] vtYM4q3ERH-GQnysnhE2Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.465 [XNIO-1 task-1] vtYM4q3ERH-GQnysnhE2Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.466 [XNIO-1 task-1] vtYM4q3ERH-GQnysnhE2Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.466 [XNIO-1 task-1] vtYM4q3ERH-GQnysnhE2Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", "Basic MzY3NDExZmItNzc5Yi00MGNmLTkzYWMtMjE0MDhjMjdhNWNhOm1PZ0hXMUV1VDF5b3pySkRkSmJ4U2c=", authorization) +19:00:48.462 [XNIO-1 task-3] eDm8V_CHT6qXKKQeYYgmzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.470 [XNIO-1 task-3] eDm8V_CHT6qXKKQeYYgmzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:48.471 [XNIO-1 task-1] vtYM4q3ERH-GQnysnhE2Ww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.481 [XNIO-1 task-1] tefV5CvIQrSDiariYt8QOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.481 [XNIO-1 task-1] tefV5CvIQrSDiariYt8QOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.481 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0ce4e3c0 +19:00:48.482 [XNIO-1 task-1] tefV5CvIQrSDiariYt8QOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.483 [XNIO-1 task-1] tefV5CvIQrSDiariYt8QOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.487 [XNIO-1 task-3] eDm8V_CHT6qXKKQeYYgmzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.488 [XNIO-1 task-1] tefV5CvIQrSDiariYt8QOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.489 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:52839b52-d318-4fb7-8c48-7370f5a5e3b5 +19:00:48.490 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:52839b52-d318-4fb7-8c48-7370f5a5e3b5 +19:00:48.498 [XNIO-1 task-1] -VDLeKXeQL6wmbv7q4_GBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.498 [XNIO-1 task-1] -VDLeKXeQL6wmbv7q4_GBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.499 [XNIO-1 task-1] -VDLeKXeQL6wmbv7q4_GBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.500 [XNIO-1 task-3] OwWVkzVtS9CSAMYiqyZ3Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.500 [XNIO-1 task-3] OwWVkzVtS9CSAMYiqyZ3Rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.499 [XNIO-1 task-1] -VDLeKXeQL6wmbv7q4_GBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.501 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3f7edb4f +19:00:48.502 [XNIO-1 task-3] OwWVkzVtS9CSAMYiqyZ3Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:48.502 [XNIO-1 task-1] -VDLeKXeQL6wmbv7q4_GBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", "Basic MjIwMjQ4NjItYjQ2Ny00NzQ2LTg2NTctYTc3ODUzM2UwNjRhOk9SN1BjdzNzVERDYngzbi1XT3NmUXc=", authorization) +19:00:48.508 [XNIO-1 task-1] -VDLeKXeQL6wmbv7q4_GBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.512 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:52839b52-d318-4fb7-8c48-7370f5a5e3b5 +19:00:48.521 [XNIO-1 task-1] GaIvpWTTTYCQWadjOmjk2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.524 [XNIO-1 task-1] GaIvpWTTTYCQWadjOmjk2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.524 [XNIO-1 task-1] GaIvpWTTTYCQWadjOmjk2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.525 [XNIO-1 task-1] GaIvpWTTTYCQWadjOmjk2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.526 [XNIO-1 task-3] OwWVkzVtS9CSAMYiqyZ3Rg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.530 [XNIO-1 task-1] GaIvpWTTTYCQWadjOmjk2Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.544 [XNIO-1 task-3] 4cUa69TgT0WoPdjcpjFvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.544 [XNIO-1 task-3] 4cUa69TgT0WoPdjcpjFvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.545 [XNIO-1 task-3] 4cUa69TgT0WoPdjcpjFvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.545 [XNIO-1 task-3] 4cUa69TgT0WoPdjcpjFvxw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.553 [XNIO-1 task-3] 4cUa69TgT0WoPdjcpjFvxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.560 [XNIO-1 task-3] Q5bFGGfATtaSVsJGFrTGkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.560 [XNIO-1 task-3] Q5bFGGfATtaSVsJGFrTGkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.561 [XNIO-1 task-3] Q5bFGGfATtaSVsJGFrTGkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.561 [XNIO-1 task-3] Q5bFGGfATtaSVsJGFrTGkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:48.564 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:362dae62-cddb-4e74-b2fd-ba04e27e5eaf +19:00:48.568 [XNIO-1 task-3] Q5bFGGfATtaSVsJGFrTGkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.584 [XNIO-1 task-3] q3nePM9xTTO8j3zAwVvhcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.585 [XNIO-1 task-3] q3nePM9xTTO8j3zAwVvhcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.585 [XNIO-1 task-3] q3nePM9xTTO8j3zAwVvhcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.585 [XNIO-1 task-3] q3nePM9xTTO8j3zAwVvhcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.589 [XNIO-1 task-1] 5u1ahmfpSuGyEGvEWp1LXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.589 [XNIO-1 task-1] 5u1ahmfpSuGyEGvEWp1LXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.590 [XNIO-1 task-1] 5u1ahmfpSuGyEGvEWp1LXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.590 [XNIO-1 task-1] 5u1ahmfpSuGyEGvEWp1LXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = b0srWWP3SeaPvhDSqHF6RQ redirectUri = http://localhost:8080/authorization +19:00:48.597 [XNIO-1 task-3] q3nePM9xTTO8j3zAwVvhcg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.602 [XNIO-1 task-1] 5u1ahmfpSuGyEGvEWp1LXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.605 [XNIO-1 task-3] TNu2XkDUSASeD-OyeXc2pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.605 [XNIO-1 task-3] TNu2XkDUSASeD-OyeXc2pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.606 [XNIO-1 task-3] TNu2XkDUSASeD-OyeXc2pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.607 [XNIO-1 task-3] TNu2XkDUSASeD-OyeXc2pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", authorization) +19:00:48.616 [XNIO-1 task-3] TNu2XkDUSASeD-OyeXc2pQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.623 [XNIO-1 task-3] aikYF5TNT8SL2D79EDTuUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.625 [XNIO-1 task-3] aikYF5TNT8SL2D79EDTuUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.626 [XNIO-1 task-3] aikYF5TNT8SL2D79EDTuUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.626 [XNIO-1 task-3] aikYF5TNT8SL2D79EDTuUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", authorization) +19:00:48.630 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:053d3b38 +19:00:48.632 [XNIO-1 task-3] aikYF5TNT8SL2D79EDTuUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.637 [XNIO-1 task-3] bMNRjmrPRLOZ5ZWFzxJ4fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.637 [XNIO-1 task-3] bMNRjmrPRLOZ5ZWFzxJ4fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.637 [XNIO-1 task-3] bMNRjmrPRLOZ5ZWFzxJ4fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.637 [XNIO-1 task-3] bMNRjmrPRLOZ5ZWFzxJ4fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", authorization) +19:00:48.643 [XNIO-1 task-3] bMNRjmrPRLOZ5ZWFzxJ4fA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.651 [XNIO-1 task-3] ScDDABPDTXaAHagpReAy9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.651 [XNIO-1 task-3] ScDDABPDTXaAHagpReAy9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.651 [XNIO-1 task-3] ScDDABPDTXaAHagpReAy9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.652 [XNIO-1 task-3] ScDDABPDTXaAHagpReAy9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", authorization) +19:00:48.667 [XNIO-1 task-3] ScDDABPDTXaAHagpReAy9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.674 [XNIO-1 task-3] y-IUdCU-ThCM6iH57nhoZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.675 [XNIO-1 task-3] y-IUdCU-ThCM6iH57nhoZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.675 [XNIO-1 task-3] y-IUdCU-ThCM6iH57nhoZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.676 [XNIO-1 task-3] y-IUdCU-ThCM6iH57nhoZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", authorization) +19:00:48.681 [XNIO-1 task-3] y-IUdCU-ThCM6iH57nhoZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.697 [XNIO-1 task-3] LLr3FXLySe6_9V_7z-_M5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.697 [XNIO-1 task-3] LLr3FXLySe6_9V_7z-_M5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.698 [XNIO-1 task-3] LLr3FXLySe6_9V_7z-_M5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.698 [XNIO-1 task-3] LLr3FXLySe6_9V_7z-_M5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzU2MmVhMmUtZDFkNC00NWY5LTliNjAtNGRjOTRkZWUzZjQ1OnU2ZU96Y0dRUnF1c0JfYVU3UGFHMHc=", "Basic MzU2MmVhMmUtZDFkNC00NWY5LTliNjAtNGRjOTRkZWUzZjQ1OnU2ZU96Y0dRUnF1c0JfYVU3UGFHMHc=", authorization) +19:00:48.703 [XNIO-1 task-3] LLr3FXLySe6_9V_7z-_M5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.711 [XNIO-1 task-3] ccrLfKoXTeOhjfLPRnIOYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.711 [XNIO-1 task-3] ccrLfKoXTeOhjfLPRnIOYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.712 [XNIO-1 task-3] ccrLfKoXTeOhjfLPRnIOYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.713 [XNIO-1 task-3] ccrLfKoXTeOhjfLPRnIOYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzU2MmVhMmUtZDFkNC00NWY5LTliNjAtNGRjOTRkZWUzZjQ1OnU2ZU96Y0dRUnF1c0JfYVU3UGFHMHc=", "Basic MzU2MmVhMmUtZDFkNC00NWY5LTliNjAtNGRjOTRkZWUzZjQ1OnU2ZU96Y0dRUnF1c0JfYVU3UGFHMHc=", authorization) +19:00:48.718 [XNIO-1 task-3] ccrLfKoXTeOhjfLPRnIOYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.726 [XNIO-1 task-3] 4ge2yNQ9QDqriakGUBhFgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.727 [XNIO-1 task-3] 4ge2yNQ9QDqriakGUBhFgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.727 [XNIO-1 task-3] 4ge2yNQ9QDqriakGUBhFgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.727 [XNIO-1 task-3] 4ge2yNQ9QDqriakGUBhFgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:48.733 [XNIO-1 task-3] 4ge2yNQ9QDqriakGUBhFgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.735 [XNIO-1 task-1] QTfLFR68QtKtVkhFe_uiBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.735 [XNIO-1 task-1] QTfLFR68QtKtVkhFe_uiBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.735 [XNIO-1 task-1] QTfLFR68QtKtVkhFe_uiBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.736 [XNIO-1 task-1] QTfLFR68QtKtVkhFe_uiBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", authorization) +19:00:48.741 [XNIO-1 task-3] Wr4Cu6nGSLmlfv7A8Kcq1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.741 [XNIO-1 task-3] Wr4Cu6nGSLmlfv7A8Kcq1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.741 [XNIO-1 task-3] Wr4Cu6nGSLmlfv7A8Kcq1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.742 [XNIO-1 task-3] Wr4Cu6nGSLmlfv7A8Kcq1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:48.742 [XNIO-1 task-1] QTfLFR68QtKtVkhFe_uiBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:48.743 [XNIO-1 task-1] QTfLFR68QtKtVkhFe_uiBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.743 [XNIO-1 task-2] 7Qz3QzqgQeeXzVkroHcECQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.743 [XNIO-1 task-2] 7Qz3QzqgQeeXzVkroHcECQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.744 [XNIO-1 task-2] 7Qz3QzqgQeeXzVkroHcECQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.744 [XNIO-1 task-2] 7Qz3QzqgQeeXzVkroHcECQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.751 [XNIO-1 task-2] 7Qz3QzqgQeeXzVkroHcECQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.753 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8329d686 +19:00:48.754 [XNIO-1 task-3] Wr4Cu6nGSLmlfv7A8Kcq1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:48.754 [XNIO-1 task-3] Wr4Cu6nGSLmlfv7A8Kcq1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.757 [XNIO-1 task-2] Uiep48a0QAy0nmxnLNnU_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.757 [XNIO-1 task-2] Uiep48a0QAy0nmxnLNnU_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.758 [XNIO-1 task-2] Uiep48a0QAy0nmxnLNnU_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.760 [XNIO-1 task-2] Uiep48a0QAy0nmxnLNnU_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.760 [XNIO-1 task-1] yfOOEXyMSPmC9nqSsNTKKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.761 [XNIO-1 task-1] yfOOEXyMSPmC9nqSsNTKKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.761 [XNIO-1 task-1] yfOOEXyMSPmC9nqSsNTKKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.761 [XNIO-1 task-1] yfOOEXyMSPmC9nqSsNTKKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 8b216639-9bbd-4fd2-a03d-80e8f939f332 scope = null +19:00:48.769 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0e794058 +19:00:48.772 [XNIO-1 task-2] Uiep48a0QAy0nmxnLNnU_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.775 [XNIO-1 task-1] yfOOEXyMSPmC9nqSsNTKKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.782 [XNIO-1 task-2] jUoBBMSsTpazajbRa3JP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.782 [XNIO-1 task-2] jUoBBMSsTpazajbRa3JP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.783 [XNIO-1 task-2] jUoBBMSsTpazajbRa3JP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.783 [XNIO-1 task-2] jUoBBMSsTpazajbRa3JP9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.787 [XNIO-1 task-3] q6EAuR0eRH2ByDs1Qy-Mtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.788 [XNIO-1 task-3] q6EAuR0eRH2ByDs1Qy-Mtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.788 [XNIO-1 task-3] q6EAuR0eRH2ByDs1Qy-Mtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.788 [XNIO-1 task-3] q6EAuR0eRH2ByDs1Qy-Mtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c7e64b6d-ac15-4e7a-b029-e570e6729c04 scope = null +19:00:48.793 [XNIO-1 task-2] jUoBBMSsTpazajbRa3JP9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.794 [XNIO-1 task-1] Bi97_1ZGRrO3EnGGf5OiUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.794 [XNIO-1 task-1] Bi97_1ZGRrO3EnGGf5OiUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.794 [XNIO-1 task-1] Bi97_1ZGRrO3EnGGf5OiUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.795 [XNIO-1 task-1] Bi97_1ZGRrO3EnGGf5OiUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 708ff612-36a6-40ba-a155-77cf6508bfde scope = null +19:00:48.802 [XNIO-1 task-3] q6EAuR0eRH2ByDs1Qy-Mtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.802 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8329d686 +19:00:48.803 [XNIO-1 task-2] N3v1mTAiQpuBCX9WyDsDSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.803 [XNIO-1 task-2] N3v1mTAiQpuBCX9WyDsDSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.803 [XNIO-1 task-2] N3v1mTAiQpuBCX9WyDsDSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.804 [XNIO-1 task-2] N3v1mTAiQpuBCX9WyDsDSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.809 [XNIO-1 task-1] Bi97_1ZGRrO3EnGGf5OiUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.812 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:48.814 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:48.818 [XNIO-1 task-2] qBFv_da1SpG_FeJeEHQO5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.819 [XNIO-1 task-2] qBFv_da1SpG_FeJeEHQO5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.819 [XNIO-1 task-2] qBFv_da1SpG_FeJeEHQO5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.820 [XNIO-1 task-2] qBFv_da1SpG_FeJeEHQO5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", "Basic NTA0MTIzYjQtNmZjNy00ZmY0LWI0OTktZGVkOWYwNTZjMjI5OnY3ZUZHeHhxUXltS3J5YlFpd256Mnc=", authorization) +19:00:48.826 [XNIO-1 task-2] qBFv_da1SpG_FeJeEHQO5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.831 [XNIO-1 task-2] hVWD8LLoT2q0Aii4lR0EYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.831 [XNIO-1 task-2] hVWD8LLoT2q0Aii4lR0EYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.831 [XNIO-1 task-2] hVWD8LLoT2q0Aii4lR0EYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.832 [XNIO-1 task-2] hVWD8LLoT2q0Aii4lR0EYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDYwYTI5YzQtMDM4OC00NzQ0LTgwMDYtMThmYzliOWFhNzc0OmtnYUNBTDlxUmpDT1d5dGpwZlU1Z3c=", "Basic ZDYwYTI5YzQtMDM4OC00NzQ0LTgwMDYtMThmYzliOWFhNzc0OmtnYUNBTDlxUmpDT1d5dGpwZlU1Z3c=", authorization) +19:00:48.837 [XNIO-1 task-2] hVWD8LLoT2q0Aii4lR0EYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.838 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8329d686 +19:00:48.849 [XNIO-1 task-2] wz4xVbOcQ5-viOCdeNjyCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.849 [XNIO-1 task-2] wz4xVbOcQ5-viOCdeNjyCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.850 [XNIO-1 task-2] wz4xVbOcQ5-viOCdeNjyCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.851 [XNIO-1 task-2] wz4xVbOcQ5-viOCdeNjyCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", "Basic N2I4N2VjY2ItODU2NC00NmI0LTljMjUtYmZhNmMzNTBkOTZiOkUzY3hSOXZIVDVHVTljWnQzalRHTHc=", authorization) +19:00:48.857 [XNIO-1 task-2] wz4xVbOcQ5-viOCdeNjyCg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.859 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:8329d686 +19:00:48.862 [XNIO-1 task-2] FOsW0tLdRWaSh3wVii9v_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.862 [XNIO-1 task-2] FOsW0tLdRWaSh3wVii9v_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.863 [XNIO-1 task-2] FOsW0tLdRWaSh3wVii9v_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.863 [XNIO-1 task-2] FOsW0tLdRWaSh3wVii9v_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.868 [XNIO-1 task-2] FOsW0tLdRWaSh3wVii9v_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.870 [XNIO-1 task-1] 6MkoTGFTTXK9Yjv4fTXXCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.870 [XNIO-1 task-1] 6MkoTGFTTXK9Yjv4fTXXCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.871 [XNIO-1 task-1] 6MkoTGFTTXK9Yjv4fTXXCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.871 [XNIO-1 task-1] 6MkoTGFTTXK9Yjv4fTXXCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = hwnYCAtsSb6u4b2xyiM0-A redirectUri = http://localhost:8080/authorization +19:00:48.877 [XNIO-1 task-2] 7DpaI6RhRJu4NyW1Rl_Iow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.877 [XNIO-1 task-2] 7DpaI6RhRJu4NyW1Rl_Iow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.877 [XNIO-1 task-2] 7DpaI6RhRJu4NyW1Rl_Iow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.878 [XNIO-1 task-2] 7DpaI6RhRJu4NyW1Rl_Iow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.884 [XNIO-1 task-1] 6MkoTGFTTXK9Yjv4fTXXCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.883 [XNIO-1 task-2] 7DpaI6RhRJu4NyW1Rl_Iow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.898 [XNIO-1 task-2] htziHxseRba4pGVbMC4Pzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.898 [XNIO-1 task-2] htziHxseRba4pGVbMC4Pzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.899 [XNIO-1 task-2] htziHxseRba4pGVbMC4Pzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.899 [XNIO-1 task-2] htziHxseRba4pGVbMC4Pzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:48.904 [XNIO-1 task-2] htziHxseRba4pGVbMC4Pzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.917 [XNIO-1 task-2] t68W9qjzQSC6nCmf7R4Vhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.917 [XNIO-1 task-2] t68W9qjzQSC6nCmf7R4Vhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.917 [XNIO-1 task-1] rH6TKukPRG-XUFjzRQ8eCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.917 [XNIO-1 task-1] rH6TKukPRG-XUFjzRQ8eCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.918 [XNIO-1 task-2] t68W9qjzQSC6nCmf7R4Vhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.918 [XNIO-1 task-2] t68W9qjzQSC6nCmf7R4Vhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", "Basic MzY2ODI1ZjMtOWYyZC00ZTllLThiNGUtMzVlZmJkMzQzMDRjOmxvWHVpMGVXUXZ1Qmg2NGxnRHA3emc=", authorization) +19:00:48.918 [XNIO-1 task-1] rH6TKukPRG-XUFjzRQ8eCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.919 [XNIO-1 task-1] rH6TKukPRG-XUFjzRQ8eCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:48.926 [XNIO-1 task-2] t68W9qjzQSC6nCmf7R4Vhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.930 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:115c0a9e +19:00:48.932 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:115c0a9e +19:00:48.936 [XNIO-1 task-1] rH6TKukPRG-XUFjzRQ8eCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.942 [XNIO-1 task-2] k5AwIU-bTSq7M0ozRpYEsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.942 [XNIO-1 task-2] k5AwIU-bTSq7M0ozRpYEsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.943 [XNIO-1 task-2] k5AwIU-bTSq7M0ozRpYEsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.943 [XNIO-1 task-2] k5AwIU-bTSq7M0ozRpYEsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:48.954 [XNIO-1 task-2] k5AwIU-bTSq7M0ozRpYEsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:48.962 [XNIO-1 task-1] VyyuF8x8SlqcI2cw2UXUIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.962 [XNIO-1 task-1] VyyuF8x8SlqcI2cw2UXUIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.963 [XNIO-1 task-1] VyyuF8x8SlqcI2cw2UXUIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.963 [XNIO-1 task-1] VyyuF8x8SlqcI2cw2UXUIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:48.963 [XNIO-1 task-2] TUj6koBrQc6P0sTuJXcxNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.963 [XNIO-1 task-2] TUj6koBrQc6P0sTuJXcxNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.963 [XNIO-1 task-2] TUj6koBrQc6P0sTuJXcxNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.964 [XNIO-1 task-2] TUj6koBrQc6P0sTuJXcxNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 65bc74e2-32d1-47d3-9375-7ab4a34c4ee7 scope = null +19:00:48.968 [XNIO-1 task-1] VyyuF8x8SlqcI2cw2UXUIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.969 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:34a98c86 +19:00:48.979 [XNIO-1 task-1] e9WZe7O8Q6mJGawPKqXxpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.980 [XNIO-1 task-1] e9WZe7O8Q6mJGawPKqXxpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:48.981 [XNIO-1 task-1] e9WZe7O8Q6mJGawPKqXxpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:48.981 [XNIO-1 task-1] e9WZe7O8Q6mJGawPKqXxpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:48.985 [XNIO-1 task-2] TUj6koBrQc6P0sTuJXcxNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.986 [XNIO-1 task-1] e9WZe7O8Q6mJGawPKqXxpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:48.988 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:48.996 [XNIO-1 task-1] qvkAWLlHRZy3lUCw4hGm1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.996 [XNIO-1 task-1] qvkAWLlHRZy3lUCw4hGm1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.996 [XNIO-1 task-1] qvkAWLlHRZy3lUCw4hGm1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:48.997 [XNIO-1 task-1] qvkAWLlHRZy3lUCw4hGm1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.003 [XNIO-1 task-1] qvkAWLlHRZy3lUCw4hGm1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.010 [XNIO-1 task-1] vOFVFNu_RcSETe08AgHOBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.010 [XNIO-1 task-1] vOFVFNu_RcSETe08AgHOBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.010 [XNIO-1 task-1] vOFVFNu_RcSETe08AgHOBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.011 [XNIO-1 task-1] vOFVFNu_RcSETe08AgHOBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.016 [XNIO-1 task-1] vOFVFNu_RcSETe08AgHOBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.030 [XNIO-1 task-1] mQ8FgM6QQfibhNswynAMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.031 [XNIO-1 task-1] mQ8FgM6QQfibhNswynAMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.031 [XNIO-1 task-1] mQ8FgM6QQfibhNswynAMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.031 [XNIO-1 task-1] mQ8FgM6QQfibhNswynAMHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.039 [XNIO-1 task-1] mQ8FgM6QQfibhNswynAMHg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.053 [XNIO-1 task-1] O06EVqiDTg6E9HRHtNBOkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.053 [XNIO-1 task-1] O06EVqiDTg6E9HRHtNBOkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.053 [XNIO-1 task-1] O06EVqiDTg6E9HRHtNBOkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.054 [XNIO-1 task-1] O06EVqiDTg6E9HRHtNBOkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.059 [XNIO-1 task-1] O06EVqiDTg6E9HRHtNBOkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.067 [XNIO-1 task-1] RHuhXMZfTBGDT4oPwhEVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.067 [XNIO-1 task-1] RHuhXMZfTBGDT4oPwhEVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.069 [XNIO-1 task-1] RHuhXMZfTBGDT4oPwhEVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.069 [XNIO-1 task-1] RHuhXMZfTBGDT4oPwhEVZw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.074 [XNIO-1 task-1] RHuhXMZfTBGDT4oPwhEVZw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.081 [XNIO-1 task-1] vYXeoy-uTTane9a9QVxERg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.081 [XNIO-1 task-1] vYXeoy-uTTane9a9QVxERg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.081 [XNIO-1 task-2] U8EosG4-TriXgx6UMHEw5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.082 [XNIO-1 task-2] U8EosG4-TriXgx6UMHEw5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.082 [XNIO-1 task-2] U8EosG4-TriXgx6UMHEw5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.082 [XNIO-1 task-1] vYXeoy-uTTane9a9QVxERg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:49.083 [XNIO-1 task-1] vYXeoy-uTTane9a9QVxERg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 770c6642-3c8e-47b6-a91c-de2e182b82e2 scope = null +19:00:49.083 [XNIO-1 task-2] U8EosG4-TriXgx6UMHEw5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.090 [XNIO-1 task-2] U8EosG4-TriXgx6UMHEw5g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 770c6642-3c8e-47b6-a91c-de2e182b82e2 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:49.097 [XNIO-1 task-2] 0GJCo-VMQhysdZsyHzeIfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.098 [XNIO-1 task-2] 0GJCo-VMQhysdZsyHzeIfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.098 [XNIO-1 task-1] JLhS7mI7Q36OL-tu_GXgmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.098 [XNIO-1 task-1] JLhS7mI7Q36OL-tu_GXgmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.098 [XNIO-1 task-3] e4rhDo0lTeqEGOKakTC3dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.098 [XNIO-1 task-2] 0GJCo-VMQhysdZsyHzeIfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.098 [XNIO-1 task-2] 0GJCo-VMQhysdZsyHzeIfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.098 [XNIO-1 task-3] e4rhDo0lTeqEGOKakTC3dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.099 [XNIO-1 task-3] e4rhDo0lTeqEGOKakTC3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDdhYWIxZWYtNWVmOC00MzE4LTlmYjItMDU3NTYyNTljZGZlOm43S0ZhWW9CU1FPeFRfSms2bGdhYVE=", "Basic NDdhYWIxZWYtNWVmOC00MzE4LTlmYjItMDU3NTYyNTljZGZlOm43S0ZhWW9CU1FPeFRfSms2bGdhYVE=", authorization) +19:00:49.098 [XNIO-1 task-1] JLhS7mI7Q36OL-tu_GXgmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.100 [XNIO-1 task-1] JLhS7mI7Q36OL-tu_GXgmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.100 [XNIO-1 task-1] JLhS7mI7Q36OL-tu_GXgmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:49.106 [XNIO-1 task-2] 0GJCo-VMQhysdZsyHzeIfg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.106 [XNIO-1 task-2] 0GJCo-VMQhysdZsyHzeIfg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.107 [XNIO-1 task-3] e4rhDo0lTeqEGOKakTC3dQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 770c6642-3c8e-47b6-a91c-de2e182b82e2 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:49.114 [XNIO-1 task-3] 8S6X-xfFQyWiwj9R1H7ASA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.114 [XNIO-1 task-3] 8S6X-xfFQyWiwj9R1H7ASA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.115 [XNIO-1 task-3] 8S6X-xfFQyWiwj9R1H7ASA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.116 [XNIO-1 task-3] 8S6X-xfFQyWiwj9R1H7ASA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:49.121 [XNIO-1 task-3] 8S6X-xfFQyWiwj9R1H7ASA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.128 [XNIO-1 task-3] g1QKdmqQSJef-E9hClegKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.128 [XNIO-1 task-3] g1QKdmqQSJef-E9hClegKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.128 [XNIO-1 task-3] g1QKdmqQSJef-E9hClegKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.128 [XNIO-1 task-3] g1QKdmqQSJef-E9hClegKw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTNhNzBiNDUtYTkyYS00M2VmLWFiNjAtMDY3NzdlMWY1ZDE5OjJlX3VQZUE5VGtXNFV1bUx3T3l4V3c=", "Basic ZTNhNzBiNDUtYTkyYS00M2VmLWFiNjAtMDY3NzdlMWY1ZDE5OjJlX3VQZUE5VGtXNFV1bUx3T3l4V3c=", authorization) +19:00:49.133 [XNIO-1 task-2] 5PiMuX50RRCGOaeQd7dABA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.133 [XNIO-1 task-2] 5PiMuX50RRCGOaeQd7dABA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.133 [XNIO-1 task-2] 5PiMuX50RRCGOaeQd7dABA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.133 [XNIO-1 task-2] 5PiMuX50RRCGOaeQd7dABA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:49.137 [XNIO-1 task-3] g1QKdmqQSJef-E9hClegKw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.140 [XNIO-1 task-2] 5PiMuX50RRCGOaeQd7dABA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.143 [XNIO-1 task-1] efpDf4omRTqdU-YHq6Dm9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.143 [XNIO-1 task-2] 5PiMuX50RRCGOaeQd7dABA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.143 [XNIO-1 task-2] 5PiMuX50RRCGOaeQd7dABA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.143 [XNIO-1 task-1] efpDf4omRTqdU-YHq6Dm9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.143 [XNIO-1 task-3] MxyUjFeqRISlMAgbv-NmCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.143 [XNIO-1 task-3] MxyUjFeqRISlMAgbv-NmCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.143 [XNIO-1 task-1] efpDf4omRTqdU-YHq6Dm9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTkzZjA5YTctYTZmNS00NjYzLWI0OWQtMTJjYTdkOWUyNTk1Okc4TTM2SjY5Ukp1ckhJMVBCYVktZmc=", "Basic MTkzZjA5YTctYTZmNS00NjYzLWI0OWQtMTJjYTdkOWUyNTk1Okc4TTM2SjY5Ukp1ckhJMVBCYVktZmc=", authorization) +19:00:49.144 [XNIO-1 task-1] efpDf4omRTqdU-YHq6Dm9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _ts9BZD1QNyRP7o7GwLf4g redirectUri = http://localhost:8080/authorization +19:00:49.144 [XNIO-1 task-3] MxyUjFeqRISlMAgbv-NmCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.150 [XNIO-1 task-3] MxyUjFeqRISlMAgbv-NmCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.154 [XNIO-1 task-1] efpDf4omRTqdU-YHq6Dm9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.155 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bccfe793-044a-4753-b494-8345e6e85329 +19:00:49.156 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.156 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bccfe793-044a-4753-b494-8345e6e85329 +19:00:49.162 [XNIO-1 task-2] qnNoJOQvSleTfj1pSWK4mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.162 [XNIO-1 task-2] qnNoJOQvSleTfj1pSWK4mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.162 [XNIO-1 task-2] qnNoJOQvSleTfj1pSWK4mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.162 [XNIO-1 task-2] qnNoJOQvSleTfj1pSWK4mA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.170 [XNIO-1 task-2] qnNoJOQvSleTfj1pSWK4mA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.179 [XNIO-1 task-2] SPwtHLroSo-PFSe23R5kSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.179 [XNIO-1 task-2] SPwtHLroSo-PFSe23R5kSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.179 [XNIO-1 task-2] SPwtHLroSo-PFSe23R5kSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.179 [XNIO-1 task-2] SPwtHLroSo-PFSe23R5kSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = RmPfnVIzSyalbgi5mmmiGQ redirectUri = http://localhost:8080/authorization +19:00:49.182 [XNIO-1 task-1] T0GywJ9CQDmMDFj3avWJtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.182 [XNIO-1 task-1] T0GywJ9CQDmMDFj3avWJtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.182 [XNIO-1 task-1] T0GywJ9CQDmMDFj3avWJtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.182 [XNIO-1 task-1] T0GywJ9CQDmMDFj3avWJtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.188 [XNIO-1 task-1] T0GywJ9CQDmMDFj3avWJtA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.192 [XNIO-1 task-1] sblDDlSORR2XZIHsZ1CXog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.192 [XNIO-1 task-1] sblDDlSORR2XZIHsZ1CXog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.193 [XNIO-1 task-1] sblDDlSORR2XZIHsZ1CXog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.194 [XNIO-1 task-1] sblDDlSORR2XZIHsZ1CXog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.194 [XNIO-1 task-2] SPwtHLroSo-PFSe23R5kSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.204 [XNIO-1 task-1] sblDDlSORR2XZIHsZ1CXog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.212 [XNIO-1 task-1] 0uVBQofIR-OZpFTeoFWUIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.213 [XNIO-1 task-1] 0uVBQofIR-OZpFTeoFWUIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.213 [XNIO-1 task-1] 0uVBQofIR-OZpFTeoFWUIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.213 [XNIO-1 task-1] 0uVBQofIR-OZpFTeoFWUIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", authorization) +19:00:49.218 [XNIO-1 task-1] 0uVBQofIR-OZpFTeoFWUIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.224 [XNIO-1 task-1] gXftO008S6qf5P4BJyhHcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.224 [XNIO-1 task-1] gXftO008S6qf5P4BJyhHcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.225 [XNIO-1 task-1] gXftO008S6qf5P4BJyhHcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.225 [XNIO-1 task-1] gXftO008S6qf5P4BJyhHcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", authorization) +19:00:49.230 [XNIO-1 task-1] gXftO008S6qf5P4BJyhHcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.236 [XNIO-1 task-1] nDCpvKW6QyeHoMWCQo9zJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.236 [XNIO-1 task-1] nDCpvKW6QyeHoMWCQo9zJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.236 [XNIO-1 task-1] nDCpvKW6QyeHoMWCQo9zJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.236 [XNIO-1 task-1] nDCpvKW6QyeHoMWCQo9zJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", authorization) +19:00:49.242 [XNIO-1 task-1] nDCpvKW6QyeHoMWCQo9zJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.242 [XNIO-1 task-2] 9KYMuQ08RiOnPTyQ1-lehg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.242 [XNIO-1 task-2] 9KYMuQ08RiOnPTyQ1-lehg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.242 [XNIO-1 task-2] 9KYMuQ08RiOnPTyQ1-lehg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.243 [XNIO-1 task-2] 9KYMuQ08RiOnPTyQ1-lehg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTNhNzBiNDUtYTkyYS00M2VmLWFiNjAtMDY3NzdlMWY1ZDE5OjJlX3VQZUE5VGtXNFV1bUx3T3l4V3c=", "Basic ZTNhNzBiNDUtYTkyYS00M2VmLWFiNjAtMDY3NzdlMWY1ZDE5OjJlX3VQZUE5VGtXNFV1bUx3T3l4V3c=", authorization) +19:00:49.248 [XNIO-1 task-1] lDAs6OpUSCWzMMJ9oYXJvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.248 [XNIO-1 task-1] lDAs6OpUSCWzMMJ9oYXJvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.248 [XNIO-1 task-1] lDAs6OpUSCWzMMJ9oYXJvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.248 [XNIO-1 task-1] lDAs6OpUSCWzMMJ9oYXJvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", authorization) +19:00:49.253 [XNIO-1 task-2] 9KYMuQ08RiOnPTyQ1-lehg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.254 [XNIO-1 task-2] 9KYMuQ08RiOnPTyQ1-lehg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.255 [XNIO-1 task-1] lDAs6OpUSCWzMMJ9oYXJvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.262 [XNIO-1 task-1] GvzJ6IClQFq4txXXIcgI_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.262 [XNIO-1 task-1] GvzJ6IClQFq4txXXIcgI_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.263 [XNIO-1 task-3] jgnG4EfcT1-rC06bJ__njw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.263 [XNIO-1 task-3] jgnG4EfcT1-rC06bJ__njw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.263 [XNIO-1 task-1] GvzJ6IClQFq4txXXIcgI_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.263 [XNIO-1 task-3] jgnG4EfcT1-rC06bJ__njw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.263 [XNIO-1 task-1] GvzJ6IClQFq4txXXIcgI_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.263 [XNIO-1 task-3] jgnG4EfcT1-rC06bJ__njw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c56de993-87b8-4030-a289-78d67e6f30fd scope = null +19:00:49.269 [XNIO-1 task-1] GvzJ6IClQFq4txXXIcgI_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c56de993-87b8-4030-a289-78d67e6f30fd is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:49.272 [XNIO-1 task-1] XI_KHO6XQnqWM9LyWn58Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.272 [XNIO-1 task-1] XI_KHO6XQnqWM9LyWn58Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.273 [XNIO-1 task-1] XI_KHO6XQnqWM9LyWn58Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.273 [XNIO-1 task-1] XI_KHO6XQnqWM9LyWn58Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", authorization) +19:00:49.274 [XNIO-1 task-3] s_4yxWAmQyCizmBTCPCrfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.274 [XNIO-1 task-3] s_4yxWAmQyCizmBTCPCrfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.275 [XNIO-1 task-3] s_4yxWAmQyCizmBTCPCrfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.275 [XNIO-1 task-3] s_4yxWAmQyCizmBTCPCrfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", authorization) +19:00:49.276 [XNIO-1 task-2] ZrxMivCaSAeE54Zzu_K_Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.276 [XNIO-1 task-2] ZrxMivCaSAeE54Zzu_K_Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.276 [XNIO-1 task-2] ZrxMivCaSAeE54Zzu_K_Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.277 [XNIO-1 task-2] ZrxMivCaSAeE54Zzu_K_Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTNhNzBiNDUtYTkyYS00M2VmLWFiNjAtMDY3NzdlMWY1ZDE5OjJlX3VQZUE5VGtXNFV1bUx3T3l4V3c=", "Basic ZTNhNzBiNDUtYTkyYS00M2VmLWFiNjAtMDY3NzdlMWY1ZDE5OjJlX3VQZUE5VGtXNFV1bUx3T3l4V3c=", authorization) +19:00:49.279 [XNIO-1 task-1] XI_KHO6XQnqWM9LyWn58Ug ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:49.280 [XNIO-1 task-3] s_4yxWAmQyCizmBTCPCrfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.287 [XNIO-1 task-3] _yPpSB2zRd6DUYgXx9yrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.288 [XNIO-1 task-3] _yPpSB2zRd6DUYgXx9yrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.288 [XNIO-1 task-3] _yPpSB2zRd6DUYgXx9yrAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.288 [XNIO-1 task-3] _yPpSB2zRd6DUYgXx9yrAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.292 [XNIO-1 task-2] ZrxMivCaSAeE54Zzu_K_Ag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.293 [XNIO-1 task-3] _yPpSB2zRd6DUYgXx9yrAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.300 [XNIO-1 task-3] tzIm9ivoTeCBHbtIq7-S8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.300 [XNIO-1 task-3] tzIm9ivoTeCBHbtIq7-S8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.300 [XNIO-1 task-3] tzIm9ivoTeCBHbtIq7-S8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.301 [XNIO-1 task-3] tzIm9ivoTeCBHbtIq7-S8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.305 [XNIO-1 task-2] 4BUOpIMWTbm1spLfVanJ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.305 [XNIO-1 task-2] 4BUOpIMWTbm1spLfVanJ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.306 [XNIO-1 task-2] 4BUOpIMWTbm1spLfVanJ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.306 [XNIO-1 task-2] 4BUOpIMWTbm1spLfVanJ8g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f18f6bb4-14d1-4d16-8a68-b9e4db7d85df scope = null +19:00:49.307 [XNIO-1 task-3] tzIm9ivoTeCBHbtIq7-S8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.322 [XNIO-1 task-3] MPu_Zim8SLCLSuuKGuT9gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.322 [XNIO-1 task-3] MPu_Zim8SLCLSuuKGuT9gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.322 [XNIO-1 task-3] MPu_Zim8SLCLSuuKGuT9gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.323 [XNIO-1 task-3] MPu_Zim8SLCLSuuKGuT9gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", "Basic YWVkYjAwOWEtMGU5NS00MzhkLTg5ZjUtNWQwOTI1YjgzNjU3Om9hbTJBU0lMU0pTVDVFRmJhc2twSlE=", authorization) +19:00:49.328 [XNIO-1 task-3] MPu_Zim8SLCLSuuKGuT9gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.328 [XNIO-1 task-2] 4BUOpIMWTbm1spLfVanJ8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.337 [XNIO-1 task-3] 8RsJW7_ISKy_qXALxA3PgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.338 [XNIO-1 task-3] 8RsJW7_ISKy_qXALxA3PgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.338 [XNIO-1 task-3] 8RsJW7_ISKy_qXALxA3PgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.338 [XNIO-1 task-3] 8RsJW7_ISKy_qXALxA3PgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", authorization) +19:00:49.346 [XNIO-1 task-3] 8RsJW7_ISKy_qXALxA3PgQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.351 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4c088068 +19:00:49.359 [XNIO-1 task-2] Bhu-3TbLT32U1-9Xzt2z4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.359 [XNIO-1 task-2] Bhu-3TbLT32U1-9Xzt2z4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.359 [XNIO-1 task-2] Bhu-3TbLT32U1-9Xzt2z4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.359 [XNIO-1 task-2] Bhu-3TbLT32U1-9Xzt2z4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:49.364 [XNIO-1 task-2] Bhu-3TbLT32U1-9Xzt2z4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.370 [XNIO-1 task-2] 5jYhNnwjRTKvpCjwGk-2oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.370 [XNIO-1 task-2] 5jYhNnwjRTKvpCjwGk-2oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.370 [XNIO-1 task-2] 5jYhNnwjRTKvpCjwGk-2oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.370 [XNIO-1 task-2] 5jYhNnwjRTKvpCjwGk-2oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", "Basic MjczNmNkOTQtM2YxMi00NDg3LTk3MzUtM2Y2ODgxNTY4MTA2OnlJdGhybFVjU25tSFM4QmJBOUNLWUE=", authorization) +19:00:49.374 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:324c181d-b92f-4c06-9854-38e9f0a354e0 +19:00:49.375 [XNIO-1 task-2] 5jYhNnwjRTKvpCjwGk-2oQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.385 [XNIO-1 task-2] QfwycCrZQYWD-ZVgz3oWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.386 [XNIO-1 task-2] QfwycCrZQYWD-ZVgz3oWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.386 [XNIO-1 task-2] QfwycCrZQYWD-ZVgz3oWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.387 [XNIO-1 task-2] QfwycCrZQYWD-ZVgz3oWEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.390 [XNIO-1 task-3] TUVCf0VZSXCYegMB9YI-CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.390 [XNIO-1 task-3] TUVCf0VZSXCYegMB9YI-CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.391 [XNIO-1 task-3] TUVCf0VZSXCYegMB9YI-CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.391 [XNIO-1 task-3] TUVCf0VZSXCYegMB9YI-CQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = x5n9uzegSaOSzxN6I3fPjA redirectUri = http://localhost:8080/authorization +19:00:49.396 [XNIO-1 task-2] QfwycCrZQYWD-ZVgz3oWEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.402 [XNIO-1 task-2] TPdVuPPvR8Ceou9fh5C3aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.402 [XNIO-1 task-2] TPdVuPPvR8Ceou9fh5C3aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.402 [XNIO-1 task-2] TPdVuPPvR8Ceou9fh5C3aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.402 [XNIO-1 task-2] TPdVuPPvR8Ceou9fh5C3aw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ueVQIk_9Qd-aKUq0XwM0Ew redirectUri = http://localhost:8080/authorization +19:00:49.405 [XNIO-1 task-1] XPSo4yEtT1CinQSqAQOGtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.405 [XNIO-1 task-1] XPSo4yEtT1CinQSqAQOGtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.405 [XNIO-1 task-1] XPSo4yEtT1CinQSqAQOGtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.405 [XNIO-1 task-1] XPSo4yEtT1CinQSqAQOGtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.410 [XNIO-1 task-1] XPSo4yEtT1CinQSqAQOGtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.412 [XNIO-1 task-2] TPdVuPPvR8Ceou9fh5C3aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.412 [XNIO-1 task-3] TUVCf0VZSXCYegMB9YI-CQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.416 [XNIO-1 task-3] TUVCf0VZSXCYegMB9YI-CQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.417 [XNIO-1 task-1] 5gvtXmQCRWSIRLhZ5alhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.417 [XNIO-1 task-1] 5gvtXmQCRWSIRLhZ5alhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.418 [XNIO-1 task-1] 5gvtXmQCRWSIRLhZ5alhqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.418 [XNIO-1 task-1] 5gvtXmQCRWSIRLhZ5alhqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.424 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4c088068 +19:00:49.429 [XNIO-1 task-1] 5gvtXmQCRWSIRLhZ5alhqg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.435 [XNIO-1 task-1] 4f87nXvhTL6FFZAn9QAmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.435 [XNIO-1 task-1] 4f87nXvhTL6FFZAn9QAmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.439 [XNIO-1 task-1] 4f87nXvhTL6FFZAn9QAmZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.439 [XNIO-1 task-1] 4f87nXvhTL6FFZAn9QAmZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", "Basic YTBiY2UzZTEtYmRjOS00NWVjLTljZTUtNTQ2ZGUxZDIzNWQ5OjNScHlYR2xuUXlHZzBRYk00V0l5VkE=", authorization) +19:00:49.439 [XNIO-1 task-3] 6OFoN7NkTeSPjDSGxQcqqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.439 [XNIO-1 task-3] 6OFoN7NkTeSPjDSGxQcqqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.439 [XNIO-1 task-3] 6OFoN7NkTeSPjDSGxQcqqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.440 [XNIO-1 task-3] 6OFoN7NkTeSPjDSGxQcqqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzI5MDRhYzYtMDZlMy00NzgyLWJmZGQtZDczYmIyNTNiNDU4OkptcTloM1U5VFNTYmlxM3Ata0NuZVE=", "Basic YzI5MDRhYzYtMDZlMy00NzgyLWJmZGQtZDczYmIyNTNiNDU4OkptcTloM1U5VFNTYmlxM3Ata0NuZVE=", authorization) +19:00:49.442 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3f7edb4f +19:00:49.446 [XNIO-1 task-1] 4f87nXvhTL6FFZAn9QAmZg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:49.450 [XNIO-1 task-1] Wt2SYwChR0GTnTc9NJLyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.450 [XNIO-1 task-1] Wt2SYwChR0GTnTc9NJLyTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.450 [XNIO-1 task-1] Wt2SYwChR0GTnTc9NJLyTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.452 [XNIO-1 task-1] Wt2SYwChR0GTnTc9NJLyTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", authorization) +19:00:49.458 [XNIO-1 task-3] 6OFoN7NkTeSPjDSGxQcqqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +19:00:49.459 [XNIO-1 task-1] Wt2SYwChR0GTnTc9NJLyTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.465 [XNIO-1 task-1] Wt2SYwChR0GTnTc9NJLyTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +19:00:49.466 [XNIO-1 task-3] e7ZpU70xTEeMQ-FJalr_Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.466 [XNIO-1 task-3] e7ZpU70xTEeMQ-FJalr_Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + +19:00:49.466 [XNIO-1 task-3] e7ZpU70xTEeMQ-FJalr_Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.467 [XNIO-1 task-3] e7ZpU70xTEeMQ-FJalr_Fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.473 [XNIO-1 task-3] e7ZpU70xTEeMQ-FJalr_Fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.481 [XNIO-1 task-3] xrABVX6kRdmpLJR97nQIUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.481 [XNIO-1 task-3] xrABVX6kRdmpLJR97nQIUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.481 [XNIO-1 task-3] xrABVX6kRdmpLJR97nQIUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.483 [XNIO-1 task-3] xrABVX6kRdmpLJR97nQIUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.488 [XNIO-1 task-3] xrABVX6kRdmpLJR97nQIUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.492 [XNIO-1 task-3] RygipPVXRkulHIekEOP7FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.492 [XNIO-1 task-3] RygipPVXRkulHIekEOP7FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.493 [XNIO-1 task-3] RygipPVXRkulHIekEOP7FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.494 [XNIO-1 task-3] RygipPVXRkulHIekEOP7FA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XgLiZi7VQ9W1Mt9b9GmUXA redirectUri = http://localhost:8080/authorization +19:00:49.496 [XNIO-1 task-1] 9RVRzbpzTFC6NxJjHUZAWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.496 [XNIO-1 task-1] 9RVRzbpzTFC6NxJjHUZAWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.496 [XNIO-1 task-1] 9RVRzbpzTFC6NxJjHUZAWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.496 [XNIO-1 task-1] 9RVRzbpzTFC6NxJjHUZAWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.502 [XNIO-1 task-1] 9RVRzbpzTFC6NxJjHUZAWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.503 [XNIO-1 task-2] vwrdPl-sTgCAUhcwWSfaPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.503 [XNIO-1 task-2] vwrdPl-sTgCAUhcwWSfaPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.503 [XNIO-1 task-2] vwrdPl-sTgCAUhcwWSfaPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.504 [XNIO-1 task-2] vwrdPl-sTgCAUhcwWSfaPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.505 [XNIO-1 task-2] vwrdPl-sTgCAUhcwWSfaPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDYwYTI5YzQtMDM4OC00NzQ0LTgwMDYtMThmYzliOWFhNzc0OmtnYUNBTDlxUmpDT1d5dGpwZlU1Z3c=", "Basic ZDYwYTI5YzQtMDM4OC00NzQ0LTgwMDYtMThmYzliOWFhNzc0OmtnYUNBTDlxUmpDT1d5dGpwZlU1Z3c=", authorization) +19:00:49.506 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:25924837-9c09-478b-a711-cb655d1bd1fa +19:00:49.508 [XNIO-1 task-1] V31qsJJXSMyUI5M9mSeEew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.508 [XNIO-1 task-1] V31qsJJXSMyUI5M9mSeEew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.508 [XNIO-1 task-1] V31qsJJXSMyUI5M9mSeEew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.508 [XNIO-1 task-1] V31qsJJXSMyUI5M9mSeEew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzI5MDRhYzYtMDZlMy00NzgyLWJmZGQtZDczYmIyNTNiNDU4OkptcTloM1U5VFNTYmlxM3Ata0NuZVE=", "Basic YzI5MDRhYzYtMDZlMy00NzgyLWJmZGQtZDczYmIyNTNiNDU4OkptcTloM1U5VFNTYmlxM3Ata0NuZVE=", authorization) +19:00:49.514 [XNIO-1 task-3] MRhV5KeETeaif1dbyZfc3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.514 [XNIO-1 task-3] MRhV5KeETeaif1dbyZfc3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.514 [XNIO-1 task-3] MRhV5KeETeaif1dbyZfc3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.515 [XNIO-1 task-3] MRhV5KeETeaif1dbyZfc3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWVmMDg4YjYtZTE3YS00ZTc3LWFiY2MtNjEyOGVkZDIwODAwOjRPVHpMc2VKUWVpRWNKVHBLZ2NrUEE=", "Basic MWVmMDg4YjYtZTE3YS00ZTc3LWFiY2MtNjEyOGVkZDIwODAwOjRPVHpMc2VKUWVpRWNKVHBLZ2NrUEE=", authorization) +19:00:49.519 [XNIO-1 task-1] V31qsJJXSMyUI5M9mSeEew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.519 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:25924837-9c09-478b-a711-cb655d1bd1fa +19:00:49.522 [XNIO-1 task-2] vwrdPl-sTgCAUhcwWSfaPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.525 [XNIO-1 task-1] ohiwN9pKS02gr5X8AQMPcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.525 [XNIO-1 task-1] ohiwN9pKS02gr5X8AQMPcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.525 [XNIO-1 task-3] MRhV5KeETeaif1dbyZfc3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.525 [XNIO-1 task-1] ohiwN9pKS02gr5X8AQMPcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.525 [XNIO-1 task-1] ohiwN9pKS02gr5X8AQMPcA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmNjZmU3OTMtMDQ0YS00NzUzLWI0OTQtODM0NWU2ZTg1MzI5OnV5c05iMmNYVHhLQzVmMTNUMWU0aWc=", "Basic YmNjZmU3OTMtMDQ0YS00NzUzLWI0OTQtODM0NWU2ZTg1MzI5OnV5c05iMmNYVHhLQzVmMTNUMWU0aWc=", authorization) +19:00:49.531 [XNIO-1 task-1] ohiwN9pKS02gr5X8AQMPcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.539 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fb128129 +19:00:49.539 [XNIO-1 task-3] KbIAy6WaQJSXGimpSPd0EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.539 [XNIO-1 task-3] KbIAy6WaQJSXGimpSPd0EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.540 [XNIO-1 task-3] KbIAy6WaQJSXGimpSPd0EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.540 [XNIO-1 task-3] KbIAy6WaQJSXGimpSPd0EA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.546 [XNIO-1 task-3] KbIAy6WaQJSXGimpSPd0EA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.554 [XNIO-1 task-3] IF_ex0vhRHClKyRLkC2ovA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.554 [XNIO-1 task-3] IF_ex0vhRHClKyRLkC2ovA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.555 [XNIO-1 task-3] IF_ex0vhRHClKyRLkC2ovA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.555 [XNIO-1 task-3] IF_ex0vhRHClKyRLkC2ovA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzU3NmVkMGUtMmM2NC00ZWE4LTk5NTktNzcyZWRlNmM4NDNmOmdydTJNdDRRUllpaG5XUDRHODhDLVE=", "Basic YzU3NmVkMGUtMmM2NC00ZWE4LTk5NTktNzcyZWRlNmM4NDNmOmdydTJNdDRRUllpaG5XUDRHODhDLVE=", authorization) +19:00:49.563 [XNIO-1 task-3] IF_ex0vhRHClKyRLkC2ovA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.569 [XNIO-1 task-3] 3Z94vobpTV-TW-V1xkvaoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.570 [XNIO-1 task-3] 3Z94vobpTV-TW-V1xkvaoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.570 [XNIO-1 task-3] 3Z94vobpTV-TW-V1xkvaoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.570 [XNIO-1 task-3] 3Z94vobpTV-TW-V1xkvaoA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWVkYjVlZjctMzdmNi00N2RlLTk0OTItZjQ5YmZjOGQ0MDc4OkVCcGdkWFozUmlXTGlvcjI4SHkwZWc=", "Basic ZWVkYjVlZjctMzdmNi00N2RlLTk0OTItZjQ5YmZjOGQ0MDc4OkVCcGdkWFozUmlXTGlvcjI4SHkwZWc=", authorization) +19:00:49.573 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1a07aef6-b7a6-4841-a5a5-6e1ff185f6de +19:00:49.576 [XNIO-1 task-3] 3Z94vobpTV-TW-V1xkvaoA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:49.585 [XNIO-1 task-3] QR8VkxZ7TmWj7AAnZaPNag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.585 [XNIO-1 task-3] QR8VkxZ7TmWj7AAnZaPNag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.585 [XNIO-1 task-3] QR8VkxZ7TmWj7AAnZaPNag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.586 [XNIO-1 task-3] QR8VkxZ7TmWj7AAnZaPNag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWVkYjVlZjctMzdmNi00N2RlLTk0OTItZjQ5YmZjOGQ0MDc4OkVCcGdkWFozUmlXTGlvcjI4SHkwZWc=", "Basic ZWVkYjVlZjctMzdmNi00N2RlLTk0OTItZjQ5YmZjOGQ0MDc4OkVCcGdkWFozUmlXTGlvcjI4SHkwZWc=", authorization) +19:00:49.591 [XNIO-1 task-3] QR8VkxZ7TmWj7AAnZaPNag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.596 [XNIO-1 task-3] HobwuASaT5GqIA2R4PWKeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.597 [XNIO-1 task-3] HobwuASaT5GqIA2R4PWKeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.597 [XNIO-1 task-3] HobwuASaT5GqIA2R4PWKeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.597 [XNIO-1 task-2] 5BLsOeuXTFGNoHWZ3xGcVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.597 [XNIO-1 task-3] HobwuASaT5GqIA2R4PWKeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWVkYjVlZjctMzdmNi00N2RlLTk0OTItZjQ5YmZjOGQ0MDc4OkVCcGdkWFozUmlXTGlvcjI4SHkwZWc=", "Basic ZWVkYjVlZjctMzdmNi00N2RlLTk0OTItZjQ5YmZjOGQ0MDc4OkVCcGdkWFozUmlXTGlvcjI4SHkwZWc=", authorization) +19:00:49.597 [XNIO-1 task-2] 5BLsOeuXTFGNoHWZ3xGcVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.598 [XNIO-1 task-2] 5BLsOeuXTFGNoHWZ3xGcVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.598 [XNIO-1 task-2] 5BLsOeuXTFGNoHWZ3xGcVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjdjNWY5ZTUtNzg0ZC00MGUzLTg2ODgtNWUzZDM2OGY3NGViOmdlSWdMLWhrUno2bzNUWm1RZWhSQnc=", "Basic MjdjNWY5ZTUtNzg0ZC00MGUzLTg2ODgtNWUzZDM2OGY3NGViOmdlSWdMLWhrUno2bzNUWm1RZWhSQnc=", authorization) +19:00:49.599 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:422ece39-52e0-4402-afc8-e1a6f569e0e7 +19:00:49.600 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:422ece39-52e0-4402-afc8-e1a6f569e0e7 +19:00:49.603 [XNIO-1 task-3] HobwuASaT5GqIA2R4PWKeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.608 [XNIO-1 task-2] 5BLsOeuXTFGNoHWZ3xGcVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.616 [XNIO-1 task-3] g4yZKfDSS6SBDpYAr-ErFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.616 [XNIO-1 task-3] g4yZKfDSS6SBDpYAr-ErFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.617 [XNIO-1 task-3] g4yZKfDSS6SBDpYAr-ErFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.617 [XNIO-1 task-3] g4yZKfDSS6SBDpYAr-ErFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:49.623 [XNIO-1 task-3] g4yZKfDSS6SBDpYAr-ErFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.627 [XNIO-1 task-3] ubGf9rTSSCqSBBRC-EpbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.627 [XNIO-1 task-3] ubGf9rTSSCqSBBRC-EpbjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.628 [XNIO-1 task-3] ubGf9rTSSCqSBBRC-EpbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.628 [XNIO-1 task-3] ubGf9rTSSCqSBBRC-EpbjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:49.636 [XNIO-1 task-3] ubGf9rTSSCqSBBRC-EpbjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.637 [XNIO-1 task-2] yTGCb6daQ5KIIgVdO_jw-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.638 [XNIO-1 task-2] yTGCb6daQ5KIIgVdO_jw-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.638 [XNIO-1 task-2] yTGCb6daQ5KIIgVdO_jw-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.638 [XNIO-1 task-2] yTGCb6daQ5KIIgVdO_jw-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", "Basic MzMyYmFiNDMtODk2Ny00YThmLWFlODItNTQwYzQ2YzhhZmI2OjBMVmVxOGYwUlltSEFLU2o4RF9wMXc=", authorization) +19:00:49.639 [XNIO-1 task-3] lYRaOWpBTIubN1BQC-2cYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.640 [XNIO-1 task-3] lYRaOWpBTIubN1BQC-2cYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.640 [XNIO-1 task-3] lYRaOWpBTIubN1BQC-2cYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.640 [XNIO-1 task-3] lYRaOWpBTIubN1BQC-2cYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", "Basic ZTE3ZjAzOWMtODUwMi00ZWFlLThiYzAtOTIzZGVmMGY1YTdjOmNOalJ4V1I2UVZxYVNwejNRRFV2aVE=", authorization) +19:00:49.645 [XNIO-1 task-3] lYRaOWpBTIubN1BQC-2cYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.646 [XNIO-1 task-3] lYRaOWpBTIubN1BQC-2cYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.646 [XNIO-1 task-2] yTGCb6daQ5KIIgVdO_jw-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.652 [XNIO-1 task-3] xAw8T-4uQiykeBuK_GtEZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.652 [XNIO-1 task-3] xAw8T-4uQiykeBuK_GtEZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.652 [XNIO-1 task-3] xAw8T-4uQiykeBuK_GtEZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.652 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5382b354-900e-457e-80fc-8faa94681f96 +19:00:49.653 [XNIO-1 task-3] xAw8T-4uQiykeBuK_GtEZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.659 [XNIO-1 task-3] xAw8T-4uQiykeBuK_GtEZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.670 [XNIO-1 task-2] 8uE7q5zoRnOsjlCEQtyjaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.670 [XNIO-1 task-2] 8uE7q5zoRnOsjlCEQtyjaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.670 [XNIO-1 task-3] _kxhLm0NQeitWLN9z7XD3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.670 [XNIO-1 task-2] 8uE7q5zoRnOsjlCEQtyjaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.670 [XNIO-1 task-3] _kxhLm0NQeitWLN9z7XD3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.670 [XNIO-1 task-2] 8uE7q5zoRnOsjlCEQtyjaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.671 [XNIO-1 task-3] _kxhLm0NQeitWLN9z7XD3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.671 [XNIO-1 task-2] 8uE7q5zoRnOsjlCEQtyjaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bcbb36de-6d88-400e-b737-be784fce047b scope = null +19:00:49.672 [XNIO-1 task-1] kyJAaXLQQfaiozVcvf_hgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.672 [XNIO-1 task-1] kyJAaXLQQfaiozVcvf_hgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.672 [XNIO-1 task-1] kyJAaXLQQfaiozVcvf_hgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.672 [XNIO-1 task-1] kyJAaXLQQfaiozVcvf_hgw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = sT-wPv56SACFBx85wZ60OA redirectUri = http://localhost:8080/authorization +19:00:49.674 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:115c0a9e +19:00:49.677 [XNIO-1 task-3] _kxhLm0NQeitWLN9z7XD3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.681 [XNIO-1 task-1] kyJAaXLQQfaiozVcvf_hgw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.685 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0794a178-fc42-4e8b-ac3c-b4dbed68381a +19:00:49.686 [XNIO-1 task-3] daEBB1CbQGqFWdQQZVfIrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.686 [XNIO-1 task-3] daEBB1CbQGqFWdQQZVfIrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.686 [XNIO-1 task-3] daEBB1CbQGqFWdQQZVfIrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.687 [XNIO-1 task-3] daEBB1CbQGqFWdQQZVfIrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI3ZGM0MWUtMTM5ZC00YTI4LWIxMmEtYWM5YTIyNDVkMmEzOmRoMmowaWlBVEh1RERuWkVaRjhGVVE=", "Basic ZTI3ZGM0MWUtMTM5ZC00YTI4LWIxMmEtYWM5YTIyNDVkMmEzOmRoMmowaWlBVEh1RERuWkVaRjhGVVE=", authorization) +19:00:49.688 [XNIO-1 task-2] 8uE7q5zoRnOsjlCEQtyjaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.689 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:053d3b38 +19:00:49.692 [XNIO-1 task-3] daEBB1CbQGqFWdQQZVfIrw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.697 [XNIO-1 task-3] OnW1jkTESbun7wFVgVoCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.697 [XNIO-1 task-3] OnW1jkTESbun7wFVgVoCsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.697 [XNIO-1 task-3] OnW1jkTESbun7wFVgVoCsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.698 [XNIO-1 task-3] OnW1jkTESbun7wFVgVoCsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", "Basic OTFjODZkZjctMzkxZC00MTRkLThmYmYtZDIyMmQzNjlkNDBhOnlFZlZaRVp2UTBDQ1VaM0pCNG1mRlE=", authorization) +19:00:49.700 [XNIO-1 task-1] rsVXeq1xSbegww0CeuK2Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.700 [XNIO-1 task-1] rsVXeq1xSbegww0CeuK2Mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.700 [XNIO-1 task-1] rsVXeq1xSbegww0CeuK2Mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.701 [XNIO-1 task-1] rsVXeq1xSbegww0CeuK2Mg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTI3ZGM0MWUtMTM5ZC00YTI4LWIxMmEtYWM5YTIyNDVkMmEzOmRoMmowaWlBVEh1RERuWkVaRjhGVVE=", "Basic ZTI3ZGM0MWUtMTM5ZC00YTI4LWIxMmEtYWM5YTIyNDVkMmEzOmRoMmowaWlBVEh1RERuWkVaRjhGVVE=", authorization) +19:00:49.706 [XNIO-1 task-3] OnW1jkTESbun7wFVgVoCsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.706 [XNIO-1 task-1] rsVXeq1xSbegww0CeuK2Mg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.706 [XNIO-1 task-3] OnW1jkTESbun7wFVgVoCsQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.714 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:af284e7d-a336-45bb-9376-8e0048a06275 +19:00:49.714 [XNIO-1 task-1] CKPdsqmjQhqFT7DcpUyx-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.714 [XNIO-1 task-1] CKPdsqmjQhqFT7DcpUyx-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.715 [XNIO-1 task-1] CKPdsqmjQhqFT7DcpUyx-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.715 [XNIO-1 task-1] CKPdsqmjQhqFT7DcpUyx-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI1NTdlM2YtYzFlMC00MmIyLTk4ZTktOTJiMjRjOTdmM2JhOkNoa2lBdmVuU1R5U1hDcGJYNlRXNEE=", "Basic MmI1NTdlM2YtYzFlMC00MmIyLTk4ZTktOTJiMjRjOTdmM2JhOkNoa2lBdmVuU1R5U1hDcGJYNlRXNEE=", authorization) +19:00:49.719 [XNIO-1 task-2] URjOn-0GSfO-IRlPgIoHLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.719 [XNIO-1 task-2] URjOn-0GSfO-IRlPgIoHLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.719 [XNIO-1 task-2] URjOn-0GSfO-IRlPgIoHLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.720 [XNIO-1 task-2] URjOn-0GSfO-IRlPgIoHLA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", "Basic NmU0NWFhZjQtM2QzMi00ODI1LTg2MDMtZTlmM2FmNWQ0OWNkOkxLZk50d2ZyU0pLYXJpNy1MYU5seXc=", authorization) +19:00:49.721 [XNIO-1 task-1] CKPdsqmjQhqFT7DcpUyx-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.726 [XNIO-1 task-1] Y-bZNRujTcCCLVJfeQq5Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.727 [XNIO-1 task-1] Y-bZNRujTcCCLVJfeQq5Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.727 [XNIO-1 task-1] Y-bZNRujTcCCLVJfeQq5Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.727 [XNIO-1 task-1] Y-bZNRujTcCCLVJfeQq5Xg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmI1NTdlM2YtYzFlMC00MmIyLTk4ZTktOTJiMjRjOTdmM2JhOkNoa2lBdmVuU1R5U1hDcGJYNlRXNEE=", "Basic MmI1NTdlM2YtYzFlMC00MmIyLTk4ZTktOTJiMjRjOTdmM2JhOkNoa2lBdmVuU1R5U1hDcGJYNlRXNEE=", authorization) +19:00:49.730 [XNIO-1 task-2] URjOn-0GSfO-IRlPgIoHLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +19:00:49.733 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c98e4499-2d15-40cf-89c4-2da26a9fde32 +19:00:49.735 [XNIO-1 task-1] Y-bZNRujTcCCLVJfeQq5Xg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.743 [XNIO-1 task-1] Gnha_wX5QHuIYVt8UJ-SxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.743 [XNIO-1 task-1] Gnha_wX5QHuIYVt8UJ-SxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.744 [XNIO-1 task-1] Gnha_wX5QHuIYVt8UJ-SxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.744 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4c088068 +19:00:49.744 [XNIO-1 task-1] Gnha_wX5QHuIYVt8UJ-SxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.750 [XNIO-1 task-1] Gnha_wX5QHuIYVt8UJ-SxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.751 [XNIO-1 task-2] VEYzDocLQQ6dESIMtIAPGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.751 [XNIO-1 task-2] VEYzDocLQQ6dESIMtIAPGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.751 [XNIO-1 task-2] VEYzDocLQQ6dESIMtIAPGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.751 [XNIO-1 task-2] VEYzDocLQQ6dESIMtIAPGA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YPiv-H-RQnqhw5AT0j7bsg redirectUri = http://localhost:8080/authorization +19:00:49.756 [XNIO-1 task-1] Es8Qhb3-TsmHVgrjjiTmSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.756 [XNIO-1 task-1] Es8Qhb3-TsmHVgrjjiTmSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.757 [XNIO-1 task-1] Es8Qhb3-TsmHVgrjjiTmSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.758 [XNIO-1 task-1] Es8Qhb3-TsmHVgrjjiTmSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.758 [XNIO-1 task-2] VEYzDocLQQ6dESIMtIAPGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.764 [XNIO-1 task-1] Es8Qhb3-TsmHVgrjjiTmSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.772 [XNIO-1 task-2] CynNhneyQZqqGyz_Ly_NeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.772 [XNIO-1 task-2] CynNhneyQZqqGyz_Ly_NeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.772 [XNIO-1 task-2] CynNhneyQZqqGyz_Ly_NeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.772 [XNIO-1 task-1] tySukx1DSE2pCv7Cgd_8Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.772 [XNIO-1 task-2] CynNhneyQZqqGyz_Ly_NeA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", "Basic ZDU3NDA1ZTAtYWJiNC00MjExLTg2YzMtYmJkNzQxN2MxODc2OlNiMzhSejBuUnEyYW1Ta1hwOHYwRHc=", authorization) +19:00:49.773 [XNIO-1 task-1] tySukx1DSE2pCv7Cgd_8Jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.773 [XNIO-1 task-1] tySukx1DSE2pCv7Cgd_8Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.773 [XNIO-1 task-1] tySukx1DSE2pCv7Cgd_8Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTkzZjA5YTctYTZmNS00NjYzLWI0OWQtMTJjYTdkOWUyNTk1Okc4TTM2SjY5Ukp1ckhJMVBCYVktZmc=", "Basic MTkzZjA5YTctYTZmNS00NjYzLWI0OWQtMTJjYTdkOWUyNTk1Okc4TTM2SjY5Ukp1ckhJMVBCYVktZmc=", authorization) +19:00:49.782 [XNIO-1 task-1] tySukx1DSE2pCv7Cgd_8Jg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.789 [XNIO-1 task-2] CynNhneyQZqqGyz_Ly_NeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.789 [XNIO-1 task-2] CynNhneyQZqqGyz_Ly_NeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.790 [XNIO-1 task-1] wUqhLGrxSayipDq-inyKYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.790 [XNIO-1 task-1] wUqhLGrxSayipDq-inyKYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.790 [XNIO-1 task-1] wUqhLGrxSayipDq-inyKYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.790 [XNIO-1 task-1] wUqhLGrxSayipDq-inyKYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.798 [XNIO-1 task-1] wUqhLGrxSayipDq-inyKYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.799 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:4c088068 +19:00:49.805 [XNIO-1 task-1] _tNUdMTqSsapbgAmZgBPZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.805 [XNIO-1 task-1] _tNUdMTqSsapbgAmZgBPZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.805 [XNIO-1 task-1] _tNUdMTqSsapbgAmZgBPZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.807 [XNIO-1 task-1] _tNUdMTqSsapbgAmZgBPZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.817 [XNIO-1 task-1] _tNUdMTqSsapbgAmZgBPZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.827 [XNIO-1 task-1] LDzb--ZZQSG70hFP5ghOCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.827 [XNIO-1 task-1] LDzb--ZZQSG70hFP5ghOCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.827 [XNIO-1 task-1] LDzb--ZZQSG70hFP5ghOCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.830 [XNIO-1 task-1] LDzb--ZZQSG70hFP5ghOCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.840 [XNIO-1 task-1] LDzb--ZZQSG70hFP5ghOCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.842 [XNIO-1 task-1] nTWD0Ji5RLOSJjrswPuDew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.842 [XNIO-1 task-1] nTWD0Ji5RLOSJjrswPuDew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.843 [XNIO-1 task-1] nTWD0Ji5RLOSJjrswPuDew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.843 [XNIO-1 task-1] nTWD0Ji5RLOSJjrswPuDew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WlAU-HZtRGysJH67Oy9NUg redirectUri = http://localhost:8080/authorization +19:00:49.851 [XNIO-1 task-2] N0rtHw8VTgOuW3EcM4i5Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.851 [XNIO-1 task-2] N0rtHw8VTgOuW3EcM4i5Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.851 [XNIO-1 task-2] N0rtHw8VTgOuW3EcM4i5Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.851 [XNIO-1 task-2] N0rtHw8VTgOuW3EcM4i5Aw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.852 [XNIO-1 task-1] nTWD0Ji5RLOSJjrswPuDew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.859 [XNIO-1 task-2] N0rtHw8VTgOuW3EcM4i5Aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.864 [XNIO-1 task-1] qenSyzQgQYqBdRH5WHUy9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.864 [XNIO-1 task-1] qenSyzQgQYqBdRH5WHUy9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.864 [XNIO-1 task-1] qenSyzQgQYqBdRH5WHUy9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.865 [XNIO-1 task-1] qenSyzQgQYqBdRH5WHUy9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:49.871 [XNIO-1 task-1] qenSyzQgQYqBdRH5WHUy9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.874 [XNIO-1 task-2] uwQECsoDQS-UBcH47ymhBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.874 [XNIO-1 task-2] uwQECsoDQS-UBcH47ymhBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.874 [XNIO-1 task-2] uwQECsoDQS-UBcH47ymhBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.875 [XNIO-1 task-2] uwQECsoDQS-UBcH47ymhBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", "Basic NWZhYTUyNjgtYWFjNy00YjIwLWIwOWYtZWQxYjQ2MjhhYTRhOmlPcmlhYmZ2UndpM2d6X0pURXZtM2c=", authorization) +19:00:49.876 [XNIO-1 task-1] fKZHmXzwSliRBD47-yLvew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.876 [XNIO-1 task-1] fKZHmXzwSliRBD47-yLvew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.876 [XNIO-1 task-1] fKZHmXzwSliRBD47-yLvew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.877 [XNIO-1 task-1] fKZHmXzwSliRBD47-yLvew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", "Basic YWFhNzAyOGItYjhkYy00MmFiLWE0N2QtZjgyNTZlODczNzQ1OmRrUkNhNFN3VENPU1lYYmc0ZGU4NXc=", authorization) +19:00:49.882 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:34a98c86 +19:00:49.882 [XNIO-1 task-3] W9xsmfhxSYaIKIXRY7Q6bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.883 [XNIO-1 task-3] W9xsmfhxSYaIKIXRY7Q6bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.883 [XNIO-1 task-3] W9xsmfhxSYaIKIXRY7Q6bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.884 [XNIO-1 task-1] fKZHmXzwSliRBD47-yLvew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.884 [XNIO-1 task-3] W9xsmfhxSYaIKIXRY7Q6bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.884 [XNIO-1 task-3] W9xsmfhxSYaIKIXRY7Q6bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", "Basic NWEyZjZkYzUtNDAzYy00YmEyLTk4MTItM2U5YTVlZmEzODJjOnhIQWFLYnJRVG51LUgxb3lsZzlQRVE=", authorization) +19:00:49.885 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:34a98c86 +19:00:49.889 [XNIO-1 task-1] azcJxlvaToSBtXFKhjiwyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.891 [XNIO-1 task-1] azcJxlvaToSBtXFKhjiwyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.891 [XNIO-1 task-1] azcJxlvaToSBtXFKhjiwyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.892 [XNIO-1 task-1] azcJxlvaToSBtXFKhjiwyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", "Basic MTEwOTc4YWUtMTcyZi00ZDkzLWJmMjctZDA2M2M4NDBmNTQ5OmdmOUxkeEhaUUlLQmdKT2VoYmZ4MkE=", authorization) +19:00:49.892 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:aa098b89 +19:00:49.893 [XNIO-1 task-3] W9xsmfhxSYaIKIXRY7Q6bQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +19:00:49.893 [XNIO-1 task-3] W9xsmfhxSYaIKIXRY7Q6bQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.899 [XNIO-1 task-2] su55YdqcQS-WmVmbkio2TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.899 [XNIO-1 task-2] su55YdqcQS-WmVmbkio2TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.899 [XNIO-1 task-2] su55YdqcQS-WmVmbkio2TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.900 [XNIO-1 task-1] azcJxlvaToSBtXFKhjiwyQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.905 [XNIO-1 task-1] azcJxlvaToSBtXFKhjiwyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.912 [XNIO-1 task-1] E-bDuKRZSyGJ0XfYjnnQvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.912 [XNIO-1 task-1] E-bDuKRZSyGJ0XfYjnnQvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.913 [XNIO-1 task-1] E-bDuKRZSyGJ0XfYjnnQvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.913 [XNIO-1 task-1] E-bDuKRZSyGJ0XfYjnnQvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.916 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:115c0a9e +19:00:49.920 [XNIO-1 task-1] E-bDuKRZSyGJ0XfYjnnQvw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.920 [XNIO-1 task-2] su55YdqcQS-WmVmbkio2TA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.925 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0794a178-fc42-4e8b-ac3c-b4dbed68381a +19:00:49.925 [XNIO-1 task-1] vyNBKD7BSeyJoRX0l8Lxbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.926 [XNIO-1 task-1] vyNBKD7BSeyJoRX0l8Lxbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.927 [XNIO-1 task-1] vyNBKD7BSeyJoRX0l8Lxbg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:49.930 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6541ba67 +19:00:49.932 [XNIO-1 task-3] 0dasrsBTTq-u-stlOxOkkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.933 [XNIO-1 task-3] 0dasrsBTTq-u-stlOxOkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.933 [XNIO-1 task-3] 0dasrsBTTq-u-stlOxOkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.933 [XNIO-1 task-3] 0dasrsBTTq-u-stlOxOkkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.933 [XNIO-1 task-3] 0dasrsBTTq-u-stlOxOkkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Qv_tqcyZS5Of5nZts5yhGA redirectUri = http://localhost:8080/authorization +19:00:49.936 [XNIO-1 task-1] vyNBKD7BSeyJoRX0l8Lxbg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.943 [XNIO-1 task-3] 0dasrsBTTq-u-stlOxOkkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.943 [XNIO-1 task-3] 0dasrsBTTq-u-stlOxOkkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.943 [XNIO-1 task-1] 556CjLknTfG7auFAZJnv7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.944 [XNIO-1 task-1] 556CjLknTfG7auFAZJnv7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.945 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:49.945 [XNIO-1 task-1] 556CjLknTfG7auFAZJnv7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:49.950 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f20e92a5 +19:00:49.952 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f20e92a5 +19:00:49.955 [XNIO-1 task-3] 4y5J3vRKQuykA7EXtMjeHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.958 [XNIO-1 task-3] 4y5J3vRKQuykA7EXtMjeHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.958 [XNIO-1 task-1] 556CjLknTfG7auFAZJnv7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.958 [XNIO-1 task-3] 4y5J3vRKQuykA7EXtMjeHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.958 [XNIO-1 task-3] 4y5J3vRKQuykA7EXtMjeHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _45lDncdSE-IltuKYt7KMw redirectUri = http://localhost:8080/authorization +19:00:49.971 [XNIO-1 task-1] AG7Cm3cfRs2-P6v68SWnEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.971 [XNIO-1 task-1] AG7Cm3cfRs2-P6v68SWnEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.971 [XNIO-1 task-1] AG7Cm3cfRs2-P6v68SWnEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.971 [XNIO-1 task-3] 4y5J3vRKQuykA7EXtMjeHQ ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:49.972 [XNIO-1 task-1] AG7Cm3cfRs2-P6v68SWnEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:49.980 [XNIO-1 task-3] LBmUdyiaQDWWt_LGLaLwwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.980 [XNIO-1 task-3] LBmUdyiaQDWWt_LGLaLwwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.980 [XNIO-1 task-3] LBmUdyiaQDWWt_LGLaLwwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:49.980 [XNIO-1 task-3] LBmUdyiaQDWWt_LGLaLwwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = m1ej_BH3Q3Kb2V3mt7-k_Q redirectUri = http://localhost:8080/authorization +19:00:49.985 [XNIO-1 task-1] AG7Cm3cfRs2-P6v68SWnEA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:49.991 [XNIO-1 task-3] LBmUdyiaQDWWt_LGLaLwwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:49.993 [XNIO-1 task-1] bL7XQSB5TTutF2HuoxGt9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.994 [XNIO-1 task-1] bL7XQSB5TTutF2HuoxGt9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:49.995 [XNIO-1 task-1] bL7XQSB5TTutF2HuoxGt9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:49.996 [XNIO-1 task-1] bL7XQSB5TTutF2HuoxGt9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", authorization) +19:00:50.004 [XNIO-1 task-1] bL7XQSB5TTutF2HuoxGt9A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:50.011 [XNIO-1 task-1] K7d-erkNTRm9dsSdexLLSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.011 [XNIO-1 task-1] K7d-erkNTRm9dsSdexLLSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:50.013 [XNIO-1 task-1] K7d-erkNTRm9dsSdexLLSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.013 [XNIO-1 task-1] K7d-erkNTRm9dsSdexLLSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", "Basic YWYxMDIxMjQtM2Y5MC00Y2QzLWJkMjItMzEwZTYxYjM0MGEzOm5PRTdrdGRPU3l5WUhWX1RfWDBEN2c=", authorization) +19:00:50.020 [XNIO-1 task-1] K7d-erkNTRm9dsSdexLLSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:50.030 [XNIO-1 task-1] 51i7xZpMTCSlpIC0VSYZOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.030 [XNIO-1 task-1] 51i7xZpMTCSlpIC0VSYZOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:50.031 [XNIO-1 task-1] 51i7xZpMTCSlpIC0VSYZOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.031 [XNIO-1 task-1] 51i7xZpMTCSlpIC0VSYZOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjliZDBkMDgtYTkyNi00ZjlmLWJhYWItNWViNjM3ZjM2NDJkOjBOMFFDN1ZsUW1LdnFpaWEtWURTN2c=", "Basic ZjliZDBkMDgtYTkyNi00ZjlmLWJhYWItNWViNjM3ZjM2NDJkOjBOMFFDN1ZsUW1LdnFpaWEtWURTN2c=", authorization) +19:00:50.034 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5382b354-900e-457e-80fc-8faa94681f96 +19:00:50.038 [XNIO-1 task-3] HQ1no33dRw-oscs-6nZOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.038 [XNIO-1 task-3] HQ1no33dRw-oscs-6nZOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.038 [XNIO-1 task-3] HQ1no33dRw-oscs-6nZOxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.039 [XNIO-1 task-3] HQ1no33dRw-oscs-6nZOxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ppc8s2W2R-W0fE31JyvxsA redirectUri = http://localhost:8080/authorization +19:00:50.039 [XNIO-1 task-1] 51i7xZpMTCSlpIC0VSYZOA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:50.047 [XNIO-1 task-1] cJdRbXAHTLaUujiNRgRKEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.048 [XNIO-1 task-1] cJdRbXAHTLaUujiNRgRKEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.048 [XNIO-1 task-1] cJdRbXAHTLaUujiNRgRKEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.048 [XNIO-1 task-1] cJdRbXAHTLaUujiNRgRKEA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:50.054 [XNIO-1 task-3] HQ1no33dRw-oscs-6nZOxg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:50.055 [XNIO-1 task-2] yUZFygvPSVCMq-o9mumWrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.055 [XNIO-1 task-2] yUZFygvPSVCMq-o9mumWrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:50.055 [XNIO-1 task-2] yUZFygvPSVCMq-o9mumWrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.055 [XNIO-1 task-2] yUZFygvPSVCMq-o9mumWrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", "Basic YTBlYWRjOTAtY2EzOC00Njg2LWIyOGYtZjUyZDk4YmE0ZWY5Omh3RGJMZmlhUnAtRG1NeUx5VEJCVnc=", authorization) +19:00:50.057 [XNIO-1 task-1] cJdRbXAHTLaUujiNRgRKEA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:50.063 [XNIO-1 task-2] yUZFygvPSVCMq-o9mumWrg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +19:00:50.064 [XNIO-1 task-1] lEcO5C_4ToGf7nIR9obE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.064 [XNIO-1 task-1] lEcO5C_4ToGf7nIR9obE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.065 [XNIO-1 task-1] lEcO5C_4ToGf7nIR9obE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.066 [XNIO-1 task-1] lEcO5C_4ToGf7nIR9obE9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:50.068 [XNIO-1 task-2] iSAhUqD4Sc2qc7jwRWLVjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.068 [XNIO-1 task-2] iSAhUqD4Sc2qc7jwRWLVjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.068 [XNIO-1 task-2] iSAhUqD4Sc2qc7jwRWLVjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.069 [XNIO-1 task-2] iSAhUqD4Sc2qc7jwRWLVjA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MLP1KrSNT7ueL868Xu6Pig redirectUri = http://localhost:8080/authorization +19:00:50.072 [XNIO-1 task-1] lEcO5C_4ToGf7nIR9obE9g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:50.077 [XNIO-1 task-1] 8MgoIA8eSW2T0z9p50-CHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.077 [XNIO-1 task-1] 8MgoIA8eSW2T0z9p50-CHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.077 [XNIO-1 task-2] iSAhUqD4Sc2qc7jwRWLVjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:50.078 [XNIO-1 task-1] 8MgoIA8eSW2T0z9p50-CHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.079 [XNIO-1 task-1] 8MgoIA8eSW2T0z9p50-CHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:50.081 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:053d3b38 +19:00:50.087 [XNIO-1 task-1] 8MgoIA8eSW2T0z9p50-CHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:50.100 [XNIO-1 task-1] Uc-8KFhIQWy_DhsKADZ5Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.100 [XNIO-1 task-1] Uc-8KFhIQWy_DhsKADZ5Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:50.100 [XNIO-1 task-1] Uc-8KFhIQWy_DhsKADZ5Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.101 [XNIO-1 task-1] Uc-8KFhIQWy_DhsKADZ5Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", "Basic YjVkN2MyMGYtMTAzOC00MmFjLTlkN2EtZTAyNDBhN2Y3OGQ0OnNnZG03czhnUjRpczlmOWhxbTZHcWc=", authorization) +19:00:50.106 [XNIO-1 task-1] Uc-8KFhIQWy_DhsKADZ5Hg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +19:00:50.117 [XNIO-1 task-1] S2mTP2uWSmiR4BMlkKlhBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.117 [XNIO-1 task-1] S2mTP2uWSmiR4BMlkKlhBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:50.117 [XNIO-1 task-1] S2mTP2uWSmiR4BMlkKlhBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.117 [XNIO-1 task-1] S2mTP2uWSmiR4BMlkKlhBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2RkMTZhMTgtNWQzMC00NzRhLWExOTUtZTZlNDc3ZjVlMzQyOjRMMDRkRS16VDJTalhuUHJfT0RzelE=", "Basic N2RkMTZhMTgtNWQzMC00NzRhLWExOTUtZTZlNDc3ZjVlMzQyOjRMMDRkRS16VDJTalhuUHJfT0RzelE=", authorization) +19:00:50.120 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:d75d285f-cb56-47c3-9350-f90c35ef7922 +19:00:50.124 [XNIO-1 task-1] S2mTP2uWSmiR4BMlkKlhBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:50.133 [XNIO-1 task-1] 67MPMoRCTpKfimW0PKuZ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.133 [XNIO-1 task-1] 67MPMoRCTpKfimW0PKuZ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.133 [XNIO-1 task-1] 67MPMoRCTpKfimW0PKuZ-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.133 [XNIO-1 task-1] 67MPMoRCTpKfimW0PKuZ-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:50.141 [XNIO-1 task-1] 67MPMoRCTpKfimW0PKuZ-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:50.150 [XNIO-1 task-1] PQVQdZRcTg6xTF8Gr8IMCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.150 [XNIO-1 task-1] PQVQdZRcTg6xTF8Gr8IMCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.151 [XNIO-1 task-1] PQVQdZRcTg6xTF8Gr8IMCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +19:00:50.151 [XNIO-1 task-1] PQVQdZRcTg6xTF8Gr8IMCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +19:00:50.156 [XNIO-1 task-1] PQVQdZRcTg6xTF8Gr8IMCA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +19:00:50.164 [XNIO-1 task-1] 1a1K5imjQ4ejLMuXklHvow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +19:00:50.164 [XNIO-1 task-1] 1a1K5imjQ4ejLMuXklHvow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +19:00:50.164 [XNIO-1 task-1] 1a1K5imjQ4ejLMuXklHvow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null diff --git a/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-user-1.log b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..2a03927 --- /dev/null +++ b/log_data/LO2/Labeled/correct_4/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1631 @@ +19:00:38.645 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - connectionTestQuery.............none +19:00:38.645 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSource......................none +19:00:38.645 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSourceJNDI..................none +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - driverClassName.................none +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - healthCheckRegistry.............none +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - initializationFailTimeout.......1 +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - jdbcUrl.........................jdbc:mysql://mysqldb:3306/oauth2?useSSL=false&disableMariaDbDriver +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - maxLifetime.....................1800000 +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - metricRegistry..................none +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - minimumIdle.....................2 +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - poolName........................"HikariPool-1" +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - registerMbeans..................false +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - schema..........................none +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - transactionIsolation............default +19:00:38.646 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - validationTimeout...............5000 +19:00:38.997 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG com.zaxxer.hikari.pool.HikariPool checkFailFast - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@12d7c68a +19:00:39.091 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:179c0111 +19:00:39.105 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) +19:00:39.129 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) +19:00:39.131 [XNIO-1 task-1] wbdm3OfNQTebe5pTgKhsRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.131 [XNIO-1 task-1] wbdm3OfNQTebe5pTgKhsRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.131 [XNIO-1 task-1] wbdm3OfNQTebe5pTgKhsRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.134 [XNIO-1 task-1] wbdm3OfNQTebe5pTgKhsRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.202 [XNIO-1 task-1] q5FJRFDVRDyArYfklrEGRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/179c0111 +19:00:39.203 [XNIO-1 task-1] q5FJRFDVRDyArYfklrEGRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.203 [XNIO-1 task-1] q5FJRFDVRDyArYfklrEGRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.203 [XNIO-1 task-1] q5FJRFDVRDyArYfklrEGRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/179c0111 +19:00:39.219 [XNIO-1 task-1] MRvlZikfSEe9-3mVJFrHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.223 [XNIO-1 task-1] MRvlZikfSEe9-3mVJFrHvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.223 [XNIO-1 task-1] MRvlZikfSEe9-3mVJFrHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.224 [XNIO-1 task-1] MRvlZikfSEe9-3mVJFrHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.234 [XNIO-1 task-1] sMxXQvjaTOCFLPbVj6tM6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b9d87932, base path is set to: null +19:00:39.234 [XNIO-1 task-1] sMxXQvjaTOCFLPbVj6tM6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.234 [XNIO-1 task-1] sMxXQvjaTOCFLPbVj6tM6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.235 [XNIO-1 task-1] sMxXQvjaTOCFLPbVj6tM6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b9d87932, base path is set to: null +19:00:39.235 [XNIO-1 task-1] sMxXQvjaTOCFLPbVj6tM6w DEBUG com.networknt.schema.TypeValidator debug - validate( "b9d87932", "b9d87932", userId) +19:00:39.245 [XNIO-1 task-1] leSeYvCjRhiKa77xxYmsEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.245 [XNIO-1 task-1] leSeYvCjRhiKa77xxYmsEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.245 [XNIO-1 task-1] leSeYvCjRhiKa77xxYmsEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.246 [XNIO-1 task-1] leSeYvCjRhiKa77xxYmsEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:39.255 [XNIO-1 task-1] PirEsJ7-QiC0VQRxO4fi_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.255 [XNIO-1 task-1] PirEsJ7-QiC0VQRxO4fi_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.256 [XNIO-1 task-1] PirEsJ7-QiC0VQRxO4fi_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.257 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:179c0111 +19:00:39.284 [XNIO-1 task-1] YDIdLJraQDSr2kzfGXoyzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e673f15d +19:00:39.285 [XNIO-1 task-1] YDIdLJraQDSr2kzfGXoyzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.285 [XNIO-1 task-1] YDIdLJraQDSr2kzfGXoyzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.286 [XNIO-1 task-1] YDIdLJraQDSr2kzfGXoyzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e673f15d +19:00:39.294 [XNIO-1 task-1] XOLb2Iz7Tje1hQFGPI7OWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2bf36d96, base path is set to: null +19:00:39.295 [XNIO-1 task-1] XOLb2Iz7Tje1hQFGPI7OWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.295 [XNIO-1 task-1] XOLb2Iz7Tje1hQFGPI7OWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.295 [XNIO-1 task-1] XOLb2Iz7Tje1hQFGPI7OWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2bf36d96, base path is set to: null +19:00:39.295 [XNIO-1 task-1] XOLb2Iz7Tje1hQFGPI7OWw DEBUG com.networknt.schema.TypeValidator debug - validate( "2bf36d96", "2bf36d96", userId) +19:00:39.306 [XNIO-1 task-1] 9UN59E-EQxyRfG11X0l0yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a94becca +19:00:39.306 [XNIO-1 task-1] 9UN59E-EQxyRfG11X0l0yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.306 [XNIO-1 task-1] 9UN59E-EQxyRfG11X0l0yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.306 [XNIO-1 task-1] 9UN59E-EQxyRfG11X0l0yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a94becca +19:00:39.311 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/179c0111, base path is set to: null +19:00:39.311 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.312 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.312 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:39.312 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/179c0111, base path is set to: null +19:00:39.313 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "179c0111", "179c0111", userId) +19:00:39.314 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5a29cd69-89ff-4c85-9822-7276bf933ae8","newPassword":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPasswordConfirm":"2abd09a9-f604-425f-a1b6-6f56e1024be8"}, {"password":"5a29cd69-89ff-4c85-9822-7276bf933ae8","newPassword":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPasswordConfirm":"2abd09a9-f604-425f-a1b6-6f56e1024be8"}, requestBody) +19:00:39.314 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "2abd09a9-f604-425f-a1b6-6f56e1024be8", {"password":"5a29cd69-89ff-4c85-9822-7276bf933ae8","newPassword":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPasswordConfirm":"2abd09a9-f604-425f-a1b6-6f56e1024be8"}, requestBody.newPasswordConfirm) +19:00:39.314 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a29cd69-89ff-4c85-9822-7276bf933ae8", {"password":"5a29cd69-89ff-4c85-9822-7276bf933ae8","newPassword":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPasswordConfirm":"2abd09a9-f604-425f-a1b6-6f56e1024be8"}, requestBody.password) +19:00:39.314 [XNIO-1 task-1] 5QRIOBugRPmoCw67MZPYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "2abd09a9-f604-425f-a1b6-6f56e1024be8", {"password":"5a29cd69-89ff-4c85-9822-7276bf933ae8","newPassword":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPasswordConfirm":"2abd09a9-f604-425f-a1b6-6f56e1024be8"}, requestBody.newPassword) +19:00:39.326 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:179c0111 +19:00:39.333 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c575bedc-e82c-4b34-8b6e-5b1566e55997 +19:00:39.352 [XNIO-1 task-1] kN-BeQmXR6CgM8l4JRNzHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9d87932 +19:00:39.352 [XNIO-1 task-1] kN-BeQmXR6CgM8l4JRNzHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.352 [XNIO-1 task-1] kN-BeQmXR6CgM8l4JRNzHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.352 [XNIO-1 task-1] kN-BeQmXR6CgM8l4JRNzHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b9d87932 +19:00:39.390 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c575bedc-e82c-4b34-8b6e-5b1566e55997 +19:00:39.413 [XNIO-1 task-1] secyqEe0RRumBFfI8tc1cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.414 [XNIO-1 task-1] secyqEe0RRumBFfI8tc1cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.415 [XNIO-1 task-1] secyqEe0RRumBFfI8tc1cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.448 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/179c0111, base path is set to: null +19:00:39.449 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.449 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.449 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:39.450 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/179c0111, base path is set to: null +19:00:39.450 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG com.networknt.schema.TypeValidator debug - validate( "179c0111", "179c0111", userId) +19:00:39.451 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPassword":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43","newPasswordConfirm":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43"}, {"password":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPassword":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43","newPasswordConfirm":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43"}, requestBody) +19:00:39.451 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG com.networknt.schema.TypeValidator debug - validate( "b6ec0dcc-8391-4c10-88b5-c6b96052ad43", {"password":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPassword":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43","newPasswordConfirm":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43"}, requestBody.newPasswordConfirm) +19:00:39.451 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG com.networknt.schema.TypeValidator debug - validate( "2abd09a9-f604-425f-a1b6-6f56e1024be8", {"password":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPassword":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43","newPasswordConfirm":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43"}, requestBody.password) +19:00:39.451 [XNIO-1 task-1] FAxskE-SRauB1Tp6yGtt9w DEBUG com.networknt.schema.TypeValidator debug - validate( "b6ec0dcc-8391-4c10-88b5-c6b96052ad43", {"password":"2abd09a9-f604-425f-a1b6-6f56e1024be8","newPassword":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43","newPasswordConfirm":"b6ec0dcc-8391-4c10-88b5-c6b96052ad43"}, requestBody.newPassword) +19:00:39.455 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8fc95d40 +19:00:39.460 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8fc95d40 +19:00:39.464 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:179c0111 +19:00:39.513 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8fc95d40 +19:00:39.524 [XNIO-1 task-1] 6PgyRJ7YTNSCluY3OB-g3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/179c0111, base path is set to: null +19:00:39.524 [XNIO-1 task-1] 6PgyRJ7YTNSCluY3OB-g3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.525 [XNIO-1 task-1] 6PgyRJ7YTNSCluY3OB-g3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.525 [XNIO-1 task-1] 6PgyRJ7YTNSCluY3OB-g3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/179c0111, base path is set to: null +19:00:39.525 [XNIO-1 task-1] 6PgyRJ7YTNSCluY3OB-g3w DEBUG com.networknt.schema.TypeValidator debug - validate( "179c0111", "179c0111", userId) +19:00:39.532 [XNIO-1 task-1] 3ALlnm2jRRed5ik37jr8Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.533 [XNIO-1 task-1] 3ALlnm2jRRed5ik37jr8Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.534 [XNIO-1 task-1] 3ALlnm2jRRed5ik37jr8Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.544 [XNIO-1 task-1] LSBhwDNNSmKQB8wG9RzQrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.545 [XNIO-1 task-1] LSBhwDNNSmKQB8wG9RzQrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.545 [XNIO-1 task-1] LSBhwDNNSmKQB8wG9RzQrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.629 [XNIO-1 task-1] _ttM1CgJRAKAi_Wtz2ob2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.629 [XNIO-1 task-1] _ttM1CgJRAKAi_Wtz2ob2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.629 [XNIO-1 task-1] _ttM1CgJRAKAi_Wtz2ob2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.630 [XNIO-1 task-1] _ttM1CgJRAKAi_Wtz2ob2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:39.640 [XNIO-1 task-1] tHIjOBf4SUu1S-aL9QbMxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94becca, base path is set to: null +19:00:39.640 [XNIO-1 task-1] tHIjOBf4SUu1S-aL9QbMxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.640 [XNIO-1 task-1] tHIjOBf4SUu1S-aL9QbMxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.641 [XNIO-1 task-1] tHIjOBf4SUu1S-aL9QbMxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a94becca, base path is set to: null +19:00:39.643 [XNIO-1 task-1] tHIjOBf4SUu1S-aL9QbMxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a94becca", "a94becca", userId) +19:00:39.648 [XNIO-1 task-1] 84C9zlcKRqGrF-3CUBrlyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a94becca +19:00:39.651 [XNIO-1 task-1] 84C9zlcKRqGrF-3CUBrlyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.651 [XNIO-1 task-1] 84C9zlcKRqGrF-3CUBrlyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.651 [XNIO-1 task-1] 84C9zlcKRqGrF-3CUBrlyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a94becca +19:00:39.671 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7e0fb1fc-bd39-4369-a600-ab74dc417462 +19:00:39.673 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7e0fb1fc-bd39-4369-a600-ab74dc417462 +19:00:39.674 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e078d55f +19:00:39.674 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.674 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.675 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:39.675 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e078d55f +19:00:39.676 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"01020504-bfd6-4c50-af23-1ff56bac3ecc","newPassword":"b657cade-6228-4f13-992b-ec44e257aff5","newPasswordConfirm":"b657cade-6228-4f13-992b-ec44e257aff5"}, {"password":"01020504-bfd6-4c50-af23-1ff56bac3ecc","newPassword":"b657cade-6228-4f13-992b-ec44e257aff5","newPasswordConfirm":"b657cade-6228-4f13-992b-ec44e257aff5"}, requestBody) +19:00:39.676 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"01020504-bfd6-4c50-af23-1ff56bac3ecc","newPassword":"b657cade-6228-4f13-992b-ec44e257aff5","newPasswordConfirm":"b657cade-6228-4f13-992b-ec44e257aff5"}, {"password":"01020504-bfd6-4c50-af23-1ff56bac3ecc","newPassword":"b657cade-6228-4f13-992b-ec44e257aff5","newPasswordConfirm":"b657cade-6228-4f13-992b-ec44e257aff5"}, requestBody) +19:00:39.676 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG com.networknt.schema.FormatValidator debug - validate( "b657cade-6228-4f13-992b-ec44e257aff5", {"password":"01020504-bfd6-4c50-af23-1ff56bac3ecc","newPassword":"b657cade-6228-4f13-992b-ec44e257aff5","newPasswordConfirm":"b657cade-6228-4f13-992b-ec44e257aff5"}, requestBody.newPasswordConfirm) +19:00:39.676 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG com.networknt.schema.FormatValidator debug - validate( "01020504-bfd6-4c50-af23-1ff56bac3ecc", {"password":"01020504-bfd6-4c50-af23-1ff56bac3ecc","newPassword":"b657cade-6228-4f13-992b-ec44e257aff5","newPasswordConfirm":"b657cade-6228-4f13-992b-ec44e257aff5"}, requestBody.password) +19:00:39.676 [XNIO-1 task-1] 2jdtt2NrSVygfN_ZRHFfRg DEBUG com.networknt.schema.FormatValidator debug - validate( "b657cade-6228-4f13-992b-ec44e257aff5", {"password":"01020504-bfd6-4c50-af23-1ff56bac3ecc","newPassword":"b657cade-6228-4f13-992b-ec44e257aff5","newPasswordConfirm":"b657cade-6228-4f13-992b-ec44e257aff5"}, requestBody.newPassword) +19:00:39.725 [XNIO-1 task-1] W-B_WEmSTPucaaSY5lGFow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.725 [XNIO-1 task-1] W-B_WEmSTPucaaSY5lGFow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.725 [XNIO-1 task-1] W-B_WEmSTPucaaSY5lGFow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.775 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8fc95d40 +19:00:39.776 [XNIO-1 task-1] bMBNNJdiSy-M1yCve1tVpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.776 [XNIO-1 task-1] bMBNNJdiSy-M1yCve1tVpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.777 [XNIO-1 task-1] bMBNNJdiSy-M1yCve1tVpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.850 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e078d55f +19:00:39.851 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.851 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.851 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:39.851 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e078d55f +19:00:39.852 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b657cade-6228-4f13-992b-ec44e257aff5","newPassword":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPasswordConfirm":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c"}, {"password":"b657cade-6228-4f13-992b-ec44e257aff5","newPassword":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPasswordConfirm":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c"}, requestBody) +19:00:39.853 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b657cade-6228-4f13-992b-ec44e257aff5","newPassword":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPasswordConfirm":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c"}, {"password":"b657cade-6228-4f13-992b-ec44e257aff5","newPassword":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPasswordConfirm":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c"}, requestBody) +19:00:39.853 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG com.networknt.schema.FormatValidator debug - validate( "2ed5f4fb-3b99-49cc-b9d9-618a05225a3c", {"password":"b657cade-6228-4f13-992b-ec44e257aff5","newPassword":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPasswordConfirm":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c"}, requestBody.newPasswordConfirm) +19:00:39.853 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG com.networknt.schema.FormatValidator debug - validate( "b657cade-6228-4f13-992b-ec44e257aff5", {"password":"b657cade-6228-4f13-992b-ec44e257aff5","newPassword":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPasswordConfirm":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c"}, requestBody.password) +19:00:39.853 [XNIO-1 task-1] RRwF_V0qRV2VDkyEWtvqmA DEBUG com.networknt.schema.FormatValidator debug - validate( "2ed5f4fb-3b99-49cc-b9d9-618a05225a3c", {"password":"b657cade-6228-4f13-992b-ec44e257aff5","newPassword":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPasswordConfirm":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c"}, requestBody.newPassword) +19:00:39.882 [XNIO-1 task-1] nfPeFa8VSuepQ54lPqlO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2eca9ddc +19:00:39.882 [XNIO-1 task-1] nfPeFa8VSuepQ54lPqlO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.882 [XNIO-1 task-1] nfPeFa8VSuepQ54lPqlO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:39.882 [XNIO-1 task-1] nfPeFa8VSuepQ54lPqlO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2eca9ddc +19:00:39.895 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e078d55f, base path is set to: null +19:00:39.896 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.896 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.897 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:39.898 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e078d55f, base path is set to: null +19:00:39.898 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG com.networknt.schema.TypeValidator debug - validate( "e078d55f", "e078d55f", userId) +19:00:39.900 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPassword":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69","newPasswordConfirm":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69"}, {"password":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPassword":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69","newPasswordConfirm":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69"}, requestBody) +19:00:39.904 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG com.networknt.schema.TypeValidator debug - validate( "d7a46c67-3974-4df1-b1d7-3b049cdd2d69", {"password":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPassword":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69","newPasswordConfirm":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69"}, requestBody.newPasswordConfirm) +19:00:39.904 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG com.networknt.schema.TypeValidator debug - validate( "2ed5f4fb-3b99-49cc-b9d9-618a05225a3c", {"password":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPassword":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69","newPasswordConfirm":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69"}, requestBody.password) +19:00:39.904 [XNIO-1 task-1] rnMIi4BfRxOO1djDBLMnKA DEBUG com.networknt.schema.TypeValidator debug - validate( "d7a46c67-3974-4df1-b1d7-3b049cdd2d69", {"password":"2ed5f4fb-3b99-49cc-b9d9-618a05225a3c","newPassword":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69","newPasswordConfirm":"d7a46c67-3974-4df1-b1d7-3b049cdd2d69"}, requestBody.newPassword) +19:00:39.935 [XNIO-1 task-1] 5SrJFX-ZQPGEMtigz8GtrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.936 [XNIO-1 task-1] 5SrJFX-ZQPGEMtigz8GtrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.936 [XNIO-1 task-1] 5SrJFX-ZQPGEMtigz8GtrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:39.964 [XNIO-1 task-1] lJOC7R4xRumxPy-tzmC9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50b0c899, base path is set to: null +19:00:39.964 [XNIO-1 task-1] lJOC7R4xRumxPy-tzmC9Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:39.964 [XNIO-1 task-1] lJOC7R4xRumxPy-tzmC9Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:39.968 [XNIO-1 task-1] lJOC7R4xRumxPy-tzmC9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50b0c899, base path is set to: null +19:00:39.969 [XNIO-1 task-1] lJOC7R4xRumxPy-tzmC9Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0c899", "50b0c899", userId) +19:00:39.979 [XNIO-1 task-1] vH1FfCEzQq-agB8A295fFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.979 [XNIO-1 task-1] vH1FfCEzQq-agB8A295fFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:39.980 [XNIO-1 task-1] vH1FfCEzQq-agB8A295fFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.017 [XNIO-1 task-1] YiLVqes_QN2sSs8tdzz7KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.017 [XNIO-1 task-1] YiLVqes_QN2sSs8tdzz7KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.017 [XNIO-1 task-1] YiLVqes_QN2sSs8tdzz7KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.027 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e0f14f94-b017-4bfb-a79d-8dd83d9e92fe +19:00:40.029 [XNIO-1 task-1] n8EdtQt-TvKAL5S37xdJjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.030 [XNIO-1 task-1] n8EdtQt-TvKAL5S37xdJjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.031 [XNIO-1 task-1] n8EdtQt-TvKAL5S37xdJjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.058 [XNIO-1 task-1] 8YPNZy_vSN6JBdBvueU8HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e078d55f, base path is set to: null +19:00:40.058 [XNIO-1 task-1] 8YPNZy_vSN6JBdBvueU8HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.058 [XNIO-1 task-1] 8YPNZy_vSN6JBdBvueU8HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.059 [XNIO-1 task-1] 8YPNZy_vSN6JBdBvueU8HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e078d55f, base path is set to: null +19:00:40.059 [XNIO-1 task-1] 8YPNZy_vSN6JBdBvueU8HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e078d55f", "e078d55f", userId) +19:00:40.074 [XNIO-1 task-1] SOXw9iSNTTyd1mz8vvbvyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.075 [XNIO-1 task-1] SOXw9iSNTTyd1mz8vvbvyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.075 [XNIO-1 task-1] SOXw9iSNTTyd1mz8vvbvyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.178 [XNIO-1 task-1] VTXrR5H9Tai7774jPTJkhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1d3ba00, base path is set to: null +19:00:40.179 [XNIO-1 task-1] VTXrR5H9Tai7774jPTJkhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.179 [XNIO-1 task-1] VTXrR5H9Tai7774jPTJkhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.179 [XNIO-1 task-1] VTXrR5H9Tai7774jPTJkhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b1d3ba00, base path is set to: null +19:00:40.179 [XNIO-1 task-1] VTXrR5H9Tai7774jPTJkhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b1d3ba00", "b1d3ba00", userId) +19:00:40.233 [XNIO-1 task-1] QVqZ387STM6jRhHCWB0sPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/50b0c899 +19:00:40.233 [XNIO-1 task-1] QVqZ387STM6jRhHCWB0sPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.234 [XNIO-1 task-1] QVqZ387STM6jRhHCWB0sPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:40.234 [XNIO-1 task-1] QVqZ387STM6jRhHCWB0sPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/50b0c899 +19:00:40.239 [XNIO-1 task-1] U0zAdA6BRlSZKtqp78SGYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50b0c899, base path is set to: null +19:00:40.240 [XNIO-1 task-1] U0zAdA6BRlSZKtqp78SGYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.240 [XNIO-1 task-1] U0zAdA6BRlSZKtqp78SGYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.240 [XNIO-1 task-1] U0zAdA6BRlSZKtqp78SGYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/50b0c899, base path is set to: null +19:00:40.240 [XNIO-1 task-1] U0zAdA6BRlSZKtqp78SGYw DEBUG com.networknt.schema.TypeValidator debug - validate( "50b0c899", "50b0c899", userId) +19:00:40.254 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f9278bab-c53e-4993-95ef-98ee97047fb9 +19:00:40.285 [XNIO-1 task-1] ga9CeV4fTjCdrV_AiH8dCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.286 [XNIO-1 task-1] ga9CeV4fTjCdrV_AiH8dCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.286 [XNIO-1 task-1] ga9CeV4fTjCdrV_AiH8dCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.286 [XNIO-1 task-1] ga9CeV4fTjCdrV_AiH8dCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.318 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/805b7660, base path is set to: null +19:00:40.318 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.319 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.319 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:40.319 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/805b7660, base path is set to: null +19:00:40.320 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG com.networknt.schema.TypeValidator debug - validate( "805b7660", "805b7660", userId) +19:00:40.321 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2e991e8c-e123-484b-85e8-08ed8e4dce7d","newPassword":"4be98853-44be-4997-9589-0a698c661dc7","newPasswordConfirm":"4be98853-44be-4997-9589-0a698c661dc7"}, {"password":"2e991e8c-e123-484b-85e8-08ed8e4dce7d","newPassword":"4be98853-44be-4997-9589-0a698c661dc7","newPasswordConfirm":"4be98853-44be-4997-9589-0a698c661dc7"}, requestBody) +19:00:40.321 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG com.networknt.schema.TypeValidator debug - validate( "4be98853-44be-4997-9589-0a698c661dc7", {"password":"2e991e8c-e123-484b-85e8-08ed8e4dce7d","newPassword":"4be98853-44be-4997-9589-0a698c661dc7","newPasswordConfirm":"4be98853-44be-4997-9589-0a698c661dc7"}, requestBody.newPasswordConfirm) +19:00:40.321 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG com.networknt.schema.TypeValidator debug - validate( "2e991e8c-e123-484b-85e8-08ed8e4dce7d", {"password":"2e991e8c-e123-484b-85e8-08ed8e4dce7d","newPassword":"4be98853-44be-4997-9589-0a698c661dc7","newPasswordConfirm":"4be98853-44be-4997-9589-0a698c661dc7"}, requestBody.password) +19:00:40.322 [XNIO-1 task-1] 3wxW6OFPTpGpRZ7IzSTtIg DEBUG com.networknt.schema.TypeValidator debug - validate( "4be98853-44be-4997-9589-0a698c661dc7", {"password":"2e991e8c-e123-484b-85e8-08ed8e4dce7d","newPassword":"4be98853-44be-4997-9589-0a698c661dc7","newPasswordConfirm":"4be98853-44be-4997-9589-0a698c661dc7"}, requestBody.newPassword) +19:00:40.347 [XNIO-1 task-1] Z9-wcMTMTwy0PymJDy5CdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e673f15d, base path is set to: null +19:00:40.348 [XNIO-1 task-1] Z9-wcMTMTwy0PymJDy5CdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.349 [XNIO-1 task-1] Z9-wcMTMTwy0PymJDy5CdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.349 [XNIO-1 task-1] Z9-wcMTMTwy0PymJDy5CdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e673f15d, base path is set to: null +19:00:40.349 [XNIO-1 task-1] Z9-wcMTMTwy0PymJDy5CdA DEBUG com.networknt.schema.TypeValidator debug - validate( "e673f15d", "e673f15d", userId) +19:00:40.422 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/805b7660 +19:00:40.422 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.422 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:40.422 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:40.423 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/805b7660 +19:00:40.423 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4be98853-44be-4997-9589-0a698c661dc7","newPassword":"78131f04-c74c-4248-9472-38544f4ca1c6","newPasswordConfirm":"78131f04-c74c-4248-9472-38544f4ca1c6"}, {"password":"4be98853-44be-4997-9589-0a698c661dc7","newPassword":"78131f04-c74c-4248-9472-38544f4ca1c6","newPasswordConfirm":"78131f04-c74c-4248-9472-38544f4ca1c6"}, requestBody) +19:00:40.424 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4be98853-44be-4997-9589-0a698c661dc7","newPassword":"78131f04-c74c-4248-9472-38544f4ca1c6","newPasswordConfirm":"78131f04-c74c-4248-9472-38544f4ca1c6"}, {"password":"4be98853-44be-4997-9589-0a698c661dc7","newPassword":"78131f04-c74c-4248-9472-38544f4ca1c6","newPasswordConfirm":"78131f04-c74c-4248-9472-38544f4ca1c6"}, requestBody) +19:00:40.424 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG com.networknt.schema.FormatValidator debug - validate( "78131f04-c74c-4248-9472-38544f4ca1c6", {"password":"4be98853-44be-4997-9589-0a698c661dc7","newPassword":"78131f04-c74c-4248-9472-38544f4ca1c6","newPasswordConfirm":"78131f04-c74c-4248-9472-38544f4ca1c6"}, requestBody.newPasswordConfirm) +19:00:40.424 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG com.networknt.schema.FormatValidator debug - validate( "4be98853-44be-4997-9589-0a698c661dc7", {"password":"4be98853-44be-4997-9589-0a698c661dc7","newPassword":"78131f04-c74c-4248-9472-38544f4ca1c6","newPasswordConfirm":"78131f04-c74c-4248-9472-38544f4ca1c6"}, requestBody.password) +19:00:40.424 [XNIO-1 task-1] UnAQ_hWtTweCXUwmogGWAw DEBUG com.networknt.schema.FormatValidator debug - validate( "78131f04-c74c-4248-9472-38544f4ca1c6", {"password":"4be98853-44be-4997-9589-0a698c661dc7","newPassword":"78131f04-c74c-4248-9472-38544f4ca1c6","newPasswordConfirm":"78131f04-c74c-4248-9472-38544f4ca1c6"}, requestBody.newPassword) +19:00:40.488 [XNIO-1 task-1] l8XvhE6PQn2T0TPzBjvdLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.489 [XNIO-1 task-1] l8XvhE6PQn2T0TPzBjvdLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.489 [XNIO-1 task-1] l8XvhE6PQn2T0TPzBjvdLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.490 [XNIO-1 task-1] l8XvhE6PQn2T0TPzBjvdLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:40.525 [XNIO-1 task-1] jzxN1wzVSlqtirIwsQj10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/805b7660 +19:00:40.525 [XNIO-1 task-1] jzxN1wzVSlqtirIwsQj10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.525 [XNIO-1 task-1] jzxN1wzVSlqtirIwsQj10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:40.525 [XNIO-1 task-1] jzxN1wzVSlqtirIwsQj10g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/805b7660 +19:00:40.651 [XNIO-1 task-1] nrB6gZD_Qpeffd7BhWjg4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.651 [XNIO-1 task-1] nrB6gZD_Qpeffd7BhWjg4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.651 [XNIO-1 task-1] nrB6gZD_Qpeffd7BhWjg4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.696 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1bb6e413, base path is set to: null +19:00:40.697 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.697 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.698 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:40.698 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1bb6e413, base path is set to: null +19:00:40.699 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1bb6e413", "1bb6e413", userId) +19:00:40.699 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d03ebed6-7cbb-40fd-a5f2-4bb0154d1189","newPassword":"24626a8f-9dcf-4002-9ba9-a346c0416416","newPasswordConfirm":"24626a8f-9dcf-4002-9ba9-a346c0416416"}, {"password":"d03ebed6-7cbb-40fd-a5f2-4bb0154d1189","newPassword":"24626a8f-9dcf-4002-9ba9-a346c0416416","newPasswordConfirm":"24626a8f-9dcf-4002-9ba9-a346c0416416"}, requestBody) +19:00:40.699 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "24626a8f-9dcf-4002-9ba9-a346c0416416", {"password":"d03ebed6-7cbb-40fd-a5f2-4bb0154d1189","newPassword":"24626a8f-9dcf-4002-9ba9-a346c0416416","newPasswordConfirm":"24626a8f-9dcf-4002-9ba9-a346c0416416"}, requestBody.newPasswordConfirm) +19:00:40.700 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "d03ebed6-7cbb-40fd-a5f2-4bb0154d1189", {"password":"d03ebed6-7cbb-40fd-a5f2-4bb0154d1189","newPassword":"24626a8f-9dcf-4002-9ba9-a346c0416416","newPasswordConfirm":"24626a8f-9dcf-4002-9ba9-a346c0416416"}, requestBody.password) +19:00:40.700 [XNIO-1 task-1] scRaVoc4RxuLn0iXOrNRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "24626a8f-9dcf-4002-9ba9-a346c0416416", {"password":"d03ebed6-7cbb-40fd-a5f2-4bb0154d1189","newPassword":"24626a8f-9dcf-4002-9ba9-a346c0416416","newPasswordConfirm":"24626a8f-9dcf-4002-9ba9-a346c0416416"}, requestBody.newPassword) +19:00:40.745 [XNIO-1 task-1] xbLj53NGTJ6jlZoZYW2vyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.746 [XNIO-1 task-1] xbLj53NGTJ6jlZoZYW2vyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.746 [XNIO-1 task-1] xbLj53NGTJ6jlZoZYW2vyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:40.747 [XNIO-1 task-1] xbLj53NGTJ6jlZoZYW2vyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:40.795 [XNIO-1 task-1] GEsZDwRpSRCo5gvxOUNkWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1bb6e413, base path is set to: null +19:00:40.795 [XNIO-1 task-1] GEsZDwRpSRCo5gvxOUNkWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.795 [XNIO-1 task-1] GEsZDwRpSRCo5gvxOUNkWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.796 [XNIO-1 task-1] GEsZDwRpSRCo5gvxOUNkWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1bb6e413, base path is set to: null +19:00:40.796 [XNIO-1 task-1] GEsZDwRpSRCo5gvxOUNkWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1bb6e413", "1bb6e413", userId) +19:00:40.806 [XNIO-1 task-1] NIHChowyRuuMGBgfB3xDTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1bb6e413 +19:00:40.806 [XNIO-1 task-1] NIHChowyRuuMGBgfB3xDTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.806 [XNIO-1 task-1] NIHChowyRuuMGBgfB3xDTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:40.806 [XNIO-1 task-1] NIHChowyRuuMGBgfB3xDTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1bb6e413 +19:00:40.810 [XNIO-1 task-1] EKLNtHfBTa2MJCDZWLj-wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1bb6e413, base path is set to: null +19:00:40.810 [XNIO-1 task-1] EKLNtHfBTa2MJCDZWLj-wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:40.810 [XNIO-1 task-1] EKLNtHfBTa2MJCDZWLj-wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:40.811 [XNIO-1 task-1] EKLNtHfBTa2MJCDZWLj-wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1bb6e413, base path is set to: null +19:00:40.811 [XNIO-1 task-1] EKLNtHfBTa2MJCDZWLj-wA DEBUG com.networknt.schema.TypeValidator debug - validate( "1bb6e413", "1bb6e413", userId) +19:00:40.823 [XNIO-1 task-1] sJqd-ePwTUqLMk16h8So7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.823 [XNIO-1 task-1] sJqd-ePwTUqLMk16h8So7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.872 [XNIO-1 task-1] sJqd-ePwTUqLMk16h8So7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.931 [XNIO-1 task-1] OnuEA2xYQH-0S_KJXr_HRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.931 [XNIO-1 task-1] OnuEA2xYQH-0S_KJXr_HRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.932 [XNIO-1 task-1] OnuEA2xYQH-0S_KJXr_HRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.944 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a2d296e5 +19:00:40.944 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.944 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:40.944 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:40.944 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a2d296e5 +19:00:40.945 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1e28b401-c523-4ec7-b22e-74e545c73953","newPassword":"b596f7b4-bc52-4057-a784-2b62623841f0","newPasswordConfirm":"b596f7b4-bc52-4057-a784-2b62623841f0"}, {"password":"1e28b401-c523-4ec7-b22e-74e545c73953","newPassword":"b596f7b4-bc52-4057-a784-2b62623841f0","newPasswordConfirm":"b596f7b4-bc52-4057-a784-2b62623841f0"}, requestBody) +19:00:40.945 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1e28b401-c523-4ec7-b22e-74e545c73953","newPassword":"b596f7b4-bc52-4057-a784-2b62623841f0","newPasswordConfirm":"b596f7b4-bc52-4057-a784-2b62623841f0"}, {"password":"1e28b401-c523-4ec7-b22e-74e545c73953","newPassword":"b596f7b4-bc52-4057-a784-2b62623841f0","newPasswordConfirm":"b596f7b4-bc52-4057-a784-2b62623841f0"}, requestBody) +19:00:40.945 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG com.networknt.schema.FormatValidator debug - validate( "b596f7b4-bc52-4057-a784-2b62623841f0", {"password":"1e28b401-c523-4ec7-b22e-74e545c73953","newPassword":"b596f7b4-bc52-4057-a784-2b62623841f0","newPasswordConfirm":"b596f7b4-bc52-4057-a784-2b62623841f0"}, requestBody.newPasswordConfirm) +19:00:40.946 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1e28b401-c523-4ec7-b22e-74e545c73953", {"password":"1e28b401-c523-4ec7-b22e-74e545c73953","newPassword":"b596f7b4-bc52-4057-a784-2b62623841f0","newPasswordConfirm":"b596f7b4-bc52-4057-a784-2b62623841f0"}, requestBody.password) +19:00:40.946 [XNIO-1 task-1] vlpHF_pzQsedVDd0rprSFg DEBUG com.networknt.schema.FormatValidator debug - validate( "b596f7b4-bc52-4057-a784-2b62623841f0", {"password":"1e28b401-c523-4ec7-b22e-74e545c73953","newPassword":"b596f7b4-bc52-4057-a784-2b62623841f0","newPasswordConfirm":"b596f7b4-bc52-4057-a784-2b62623841f0"}, requestBody.newPassword) +19:00:40.968 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a2d296e5 +19:00:40.968 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:40.968 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:40.968 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:40.969 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a2d296e5 +19:00:40.976 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b596f7b4-bc52-4057-a784-2b62623841f0","newPassword":"e675366d-c97a-4a22-8072-c3d30b7452c4","newPasswordConfirm":"e675366d-c97a-4a22-8072-c3d30b7452c4"}, {"password":"b596f7b4-bc52-4057-a784-2b62623841f0","newPassword":"e675366d-c97a-4a22-8072-c3d30b7452c4","newPasswordConfirm":"e675366d-c97a-4a22-8072-c3d30b7452c4"}, requestBody) +19:00:40.976 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b596f7b4-bc52-4057-a784-2b62623841f0","newPassword":"e675366d-c97a-4a22-8072-c3d30b7452c4","newPasswordConfirm":"e675366d-c97a-4a22-8072-c3d30b7452c4"}, {"password":"b596f7b4-bc52-4057-a784-2b62623841f0","newPassword":"e675366d-c97a-4a22-8072-c3d30b7452c4","newPasswordConfirm":"e675366d-c97a-4a22-8072-c3d30b7452c4"}, requestBody) +19:00:40.977 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG com.networknt.schema.FormatValidator debug - validate( "e675366d-c97a-4a22-8072-c3d30b7452c4", {"password":"b596f7b4-bc52-4057-a784-2b62623841f0","newPassword":"e675366d-c97a-4a22-8072-c3d30b7452c4","newPasswordConfirm":"e675366d-c97a-4a22-8072-c3d30b7452c4"}, requestBody.newPasswordConfirm) +19:00:40.977 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG com.networknt.schema.FormatValidator debug - validate( "b596f7b4-bc52-4057-a784-2b62623841f0", {"password":"b596f7b4-bc52-4057-a784-2b62623841f0","newPassword":"e675366d-c97a-4a22-8072-c3d30b7452c4","newPasswordConfirm":"e675366d-c97a-4a22-8072-c3d30b7452c4"}, requestBody.password) +19:00:40.977 [XNIO-1 task-1] ivb0OE8HQcSngybbEuJ6Bw DEBUG com.networknt.schema.FormatValidator debug - validate( "e675366d-c97a-4a22-8072-c3d30b7452c4", {"password":"b596f7b4-bc52-4057-a784-2b62623841f0","newPassword":"e675366d-c97a-4a22-8072-c3d30b7452c4","newPasswordConfirm":"e675366d-c97a-4a22-8072-c3d30b7452c4"}, requestBody.newPassword) +19:00:41.014 [XNIO-1 task-1] 603JuvxLRr2Vb_m7HgHADg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.014 [XNIO-1 task-1] 603JuvxLRr2Vb_m7HgHADg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.014 [XNIO-1 task-1] 603JuvxLRr2Vb_m7HgHADg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.014 [XNIO-1 task-1] 603JuvxLRr2Vb_m7HgHADg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.077 [XNIO-1 task-1] JiIX7zXERlKeTqpaEXiqgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.078 [XNIO-1 task-1] JiIX7zXERlKeTqpaEXiqgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.078 [XNIO-1 task-1] JiIX7zXERlKeTqpaEXiqgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.078 [XNIO-1 task-1] JiIX7zXERlKeTqpaEXiqgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.110 [XNIO-1 task-1] sPVwClPJSoiBTHAVlSb9NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2d296e5 +19:00:41.110 [XNIO-1 task-1] sPVwClPJSoiBTHAVlSb9NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.110 [XNIO-1 task-1] sPVwClPJSoiBTHAVlSb9NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:41.110 [XNIO-1 task-1] sPVwClPJSoiBTHAVlSb9NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a2d296e5 +19:00:41.114 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:7e0fb1fc-bd39-4369-a600-ab74dc417462 +19:00:41.135 [XNIO-1 task-1] 7RM00lR8Q52acK6f0qjpKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.136 [XNIO-1 task-1] 7RM00lR8Q52acK6f0qjpKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.136 [XNIO-1 task-1] 7RM00lR8Q52acK6f0qjpKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.137 [XNIO-1 task-1] 7RM00lR8Q52acK6f0qjpKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.181 [XNIO-1 task-1] WubXRcIsStyFdayEwcn2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.181 [XNIO-1 task-1] WubXRcIsStyFdayEwcn2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.181 [XNIO-1 task-1] WubXRcIsStyFdayEwcn2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.182 [XNIO-1 task-1] WubXRcIsStyFdayEwcn2Wg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.204 [XNIO-1 task-1] hZ9RR5PqRGiAGWd0XE1pPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.205 [XNIO-1 task-1] hZ9RR5PqRGiAGWd0XE1pPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.205 [XNIO-1 task-1] hZ9RR5PqRGiAGWd0XE1pPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.250 [XNIO-1 task-1] lJHPkw9KSsKohE8qzQjIqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.250 [XNIO-1 task-1] lJHPkw9KSsKohE8qzQjIqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.250 [XNIO-1 task-1] lJHPkw9KSsKohE8qzQjIqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.262 [XNIO-1 task-1] HrApnUwYTPSsbROKZ2M7vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ee66665 +19:00:41.262 [XNIO-1 task-1] HrApnUwYTPSsbROKZ2M7vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.263 [XNIO-1 task-1] HrApnUwYTPSsbROKZ2M7vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:41.263 [XNIO-1 task-1] HrApnUwYTPSsbROKZ2M7vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7ee66665 +19:00:41.274 [XNIO-1 task-1] WzkFIE73Q2isX6JpZxkiaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.275 [XNIO-1 task-1] WzkFIE73Q2isX6JpZxkiaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.275 [XNIO-1 task-1] WzkFIE73Q2isX6JpZxkiaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.314 [XNIO-1 task-1] 9huJ4i_WR8qbHZvXzz_XDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.314 [XNIO-1 task-1] 9huJ4i_WR8qbHZvXzz_XDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.315 [XNIO-1 task-1] 9huJ4i_WR8qbHZvXzz_XDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.315 [XNIO-1 task-1] 9huJ4i_WR8qbHZvXzz_XDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:41.321 [XNIO-1 task-1] LY2j5U7SQECqZOTgeH0Wjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c997c9e3, base path is set to: null +19:00:41.321 [XNIO-1 task-1] LY2j5U7SQECqZOTgeH0Wjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.321 [XNIO-1 task-1] LY2j5U7SQECqZOTgeH0Wjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:41.321 [XNIO-1 task-1] LY2j5U7SQECqZOTgeH0Wjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c997c9e3, base path is set to: null +19:00:41.322 [XNIO-1 task-1] LY2j5U7SQECqZOTgeH0Wjw DEBUG com.networknt.schema.TypeValidator debug - validate( "c997c9e3", "c997c9e3", userId) +19:00:41.335 [XNIO-1 task-1] YqNkd7xBT8C8fUfFBke6lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.336 [XNIO-1 task-1] YqNkd7xBT8C8fUfFBke6lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.337 [XNIO-1 task-1] YqNkd7xBT8C8fUfFBke6lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.389 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3e8ae7f5 +19:00:41.389 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.389 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:41.389 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:41.392 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3e8ae7f5 +19:00:41.392 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b4f4ffc5-96d2-45db-a763-ff1221cda00f","newPassword":"e0825bbd-bf33-4bc4-b00e-885c728dca97","newPasswordConfirm":"e0825bbd-bf33-4bc4-b00e-885c728dca97"}, {"password":"b4f4ffc5-96d2-45db-a763-ff1221cda00f","newPassword":"e0825bbd-bf33-4bc4-b00e-885c728dca97","newPasswordConfirm":"e0825bbd-bf33-4bc4-b00e-885c728dca97"}, requestBody) +19:00:41.393 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b4f4ffc5-96d2-45db-a763-ff1221cda00f","newPassword":"e0825bbd-bf33-4bc4-b00e-885c728dca97","newPasswordConfirm":"e0825bbd-bf33-4bc4-b00e-885c728dca97"}, {"password":"b4f4ffc5-96d2-45db-a763-ff1221cda00f","newPassword":"e0825bbd-bf33-4bc4-b00e-885c728dca97","newPasswordConfirm":"e0825bbd-bf33-4bc4-b00e-885c728dca97"}, requestBody) +19:00:41.393 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e0825bbd-bf33-4bc4-b00e-885c728dca97", {"password":"b4f4ffc5-96d2-45db-a763-ff1221cda00f","newPassword":"e0825bbd-bf33-4bc4-b00e-885c728dca97","newPasswordConfirm":"e0825bbd-bf33-4bc4-b00e-885c728dca97"}, requestBody.newPasswordConfirm) +19:00:41.393 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b4f4ffc5-96d2-45db-a763-ff1221cda00f", {"password":"b4f4ffc5-96d2-45db-a763-ff1221cda00f","newPassword":"e0825bbd-bf33-4bc4-b00e-885c728dca97","newPasswordConfirm":"e0825bbd-bf33-4bc4-b00e-885c728dca97"}, requestBody.password) +19:00:41.393 [XNIO-1 task-1] xZpNWXsdS6iE2HjE9h6ZLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e0825bbd-bf33-4bc4-b00e-885c728dca97", {"password":"b4f4ffc5-96d2-45db-a763-ff1221cda00f","newPassword":"e0825bbd-bf33-4bc4-b00e-885c728dca97","newPasswordConfirm":"e0825bbd-bf33-4bc4-b00e-885c728dca97"}, requestBody.newPassword) +19:00:41.434 [XNIO-1 task-1] TH85LQoHSJa58rLTOe8tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3e8ae7f5 +19:00:41.434 [XNIO-1 task-1] TH85LQoHSJa58rLTOe8tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.434 [XNIO-1 task-1] TH85LQoHSJa58rLTOe8tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:41.434 [XNIO-1 task-1] TH85LQoHSJa58rLTOe8tSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3e8ae7f5 +19:00:41.448 [XNIO-1 task-1] daQQGYgdRi-ldmL3LZ9hCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.448 [XNIO-1 task-1] daQQGYgdRi-ldmL3LZ9hCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.449 [XNIO-1 task-1] daQQGYgdRi-ldmL3LZ9hCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.630 [XNIO-1 task-1] _iGq5VXhQ0Sqy-S1rZATJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.631 [XNIO-1 task-1] _iGq5VXhQ0Sqy-S1rZATJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.632 [XNIO-1 task-1] _iGq5VXhQ0Sqy-S1rZATJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.675 [XNIO-1 task-1] V0gf6a4uTdGA4kXcYKJIVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.675 [XNIO-1 task-1] V0gf6a4uTdGA4kXcYKJIVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.675 [XNIO-1 task-1] V0gf6a4uTdGA4kXcYKJIVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.676 [XNIO-1 task-1] V0gf6a4uTdGA4kXcYKJIVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:41.685 [XNIO-1 task-1] 1iJhvSKyRu2X6BHa-qJg4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.685 [XNIO-1 task-1] 1iJhvSKyRu2X6BHa-qJg4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.686 [XNIO-1 task-1] 1iJhvSKyRu2X6BHa-qJg4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.686 [XNIO-1 task-1] 1iJhvSKyRu2X6BHa-qJg4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:41.748 [XNIO-1 task-1] JdrzwkGIQuWgHt2SJDm71Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.748 [XNIO-1 task-1] JdrzwkGIQuWgHt2SJDm71Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.749 [XNIO-1 task-1] JdrzwkGIQuWgHt2SJDm71Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:41.821 [XNIO-1 task-1] nzZcXLUfTLapkJfAv7zLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/51f3b622, base path is set to: null +19:00:41.822 [XNIO-1 task-1] nzZcXLUfTLapkJfAv7zLTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:41.822 [XNIO-1 task-1] nzZcXLUfTLapkJfAv7zLTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:41.822 [XNIO-1 task-1] nzZcXLUfTLapkJfAv7zLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/51f3b622, base path is set to: null +19:00:41.823 [XNIO-1 task-1] nzZcXLUfTLapkJfAv7zLTA DEBUG com.networknt.schema.TypeValidator debug - validate( "51f3b622", "51f3b622", userId) +19:00:41.850 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f3ec3dbe +19:00:41.850 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.850 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:41.850 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:41.850 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f3ec3dbe +19:00:41.851 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d75cfb6c-65e8-4d7a-a193-660e7805fe26","newPassword":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f","newPasswordConfirm":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f"}, {"password":"d75cfb6c-65e8-4d7a-a193-660e7805fe26","newPassword":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f","newPasswordConfirm":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f"}, requestBody) +19:00:41.851 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d75cfb6c-65e8-4d7a-a193-660e7805fe26","newPassword":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f","newPasswordConfirm":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f"}, {"password":"d75cfb6c-65e8-4d7a-a193-660e7805fe26","newPassword":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f","newPasswordConfirm":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f"}, requestBody) +19:00:41.851 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG com.networknt.schema.FormatValidator debug - validate( "ce018cc7-c16f-4fcb-b2e6-6dbda715480f", {"password":"d75cfb6c-65e8-4d7a-a193-660e7805fe26","newPassword":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f","newPasswordConfirm":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f"}, requestBody.newPasswordConfirm) +19:00:41.851 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG com.networknt.schema.FormatValidator debug - validate( "d75cfb6c-65e8-4d7a-a193-660e7805fe26", {"password":"d75cfb6c-65e8-4d7a-a193-660e7805fe26","newPassword":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f","newPasswordConfirm":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f"}, requestBody.password) +19:00:41.851 [XNIO-1 task-1] pD4xvGD8SVa1t5-eXGxbcA DEBUG com.networknt.schema.FormatValidator debug - validate( "ce018cc7-c16f-4fcb-b2e6-6dbda715480f", {"password":"d75cfb6c-65e8-4d7a-a193-660e7805fe26","newPassword":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f","newPasswordConfirm":"ce018cc7-c16f-4fcb-b2e6-6dbda715480f"}, requestBody.newPassword) +19:00:41.891 [XNIO-1 task-1] NVhJOIMLTJKPkq-FzU_Gkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.891 [XNIO-1 task-1] NVhJOIMLTJKPkq-FzU_Gkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.891 [XNIO-1 task-1] NVhJOIMLTJKPkq-FzU_Gkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.892 [XNIO-1 task-1] NVhJOIMLTJKPkq-FzU_Gkw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:41.904 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b1a937a9 +19:00:41.904 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.904 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:41.904 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:41.904 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b1a937a9 +19:00:41.905 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9b85bf78-86ff-4c06-9da4-086e0b66bfe0","newPassword":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPasswordConfirm":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20"}, {"password":"9b85bf78-86ff-4c06-9da4-086e0b66bfe0","newPassword":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPasswordConfirm":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20"}, requestBody) +19:00:41.905 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9b85bf78-86ff-4c06-9da4-086e0b66bfe0","newPassword":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPasswordConfirm":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20"}, {"password":"9b85bf78-86ff-4c06-9da4-086e0b66bfe0","newPassword":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPasswordConfirm":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20"}, requestBody) +19:00:41.908 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20", {"password":"9b85bf78-86ff-4c06-9da4-086e0b66bfe0","newPassword":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPasswordConfirm":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20"}, requestBody.newPasswordConfirm) +19:00:41.908 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "9b85bf78-86ff-4c06-9da4-086e0b66bfe0", {"password":"9b85bf78-86ff-4c06-9da4-086e0b66bfe0","newPassword":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPasswordConfirm":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20"}, requestBody.password) +19:00:41.908 [XNIO-1 task-1] y3XMD9RWQ8mGYy2ehZZA4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20", {"password":"9b85bf78-86ff-4c06-9da4-086e0b66bfe0","newPassword":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPasswordConfirm":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20"}, requestBody.newPassword) +19:00:41.934 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b1a937a9 +19:00:41.934 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.934 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:41.934 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:41.935 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/b1a937a9 +19:00:41.942 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPassword":"5d03d2c3-4782-4e60-8590-18ec6e7416b8","newPasswordConfirm":"5d03d2c3-4782-4e60-8590-18ec6e7416b8"}, {"password":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPassword":"5d03d2c3-4782-4e60-8590-18ec6e7416b8","newPasswordConfirm":"5d03d2c3-4782-4e60-8590-18ec6e7416b8"}, requestBody) +19:00:41.943 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPassword":"5d03d2c3-4782-4e60-8590-18ec6e7416b8","newPasswordConfirm":"5d03d2c3-4782-4e60-8590-18ec6e7416b8"}, {"password":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPassword":"5d03d2c3-4782-4e60-8590-18ec6e7416b8","newPasswordConfirm":"5d03d2c3-4782-4e60-8590-18ec6e7416b8"}, requestBody) +19:00:41.943 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG com.networknt.schema.FormatValidator debug - validate( "5d03d2c3-4782-4e60-8590-18ec6e7416b8", {"password":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPassword":"5d03d2c3-4782-4e60-8590-18ec6e7416b8","newPasswordConfirm":"5d03d2c3-4782-4e60-8590-18ec6e7416b8"}, requestBody.newPasswordConfirm) +19:00:41.943 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG com.networknt.schema.FormatValidator debug - validate( "f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20", {"password":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPassword":"5d03d2c3-4782-4e60-8590-18ec6e7416b8","newPasswordConfirm":"5d03d2c3-4782-4e60-8590-18ec6e7416b8"}, requestBody.password) +19:00:41.943 [XNIO-1 task-1] zrkr5PTLQxW4R7eQjTVfZg DEBUG com.networknt.schema.FormatValidator debug - validate( "5d03d2c3-4782-4e60-8590-18ec6e7416b8", {"password":"f0e8e4d0-f3ce-48bc-ac95-cb9f3aac4e20","newPassword":"5d03d2c3-4782-4e60-8590-18ec6e7416b8","newPasswordConfirm":"5d03d2c3-4782-4e60-8590-18ec6e7416b8"}, requestBody.newPassword) +19:00:41.967 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c90530f2-272e-4912-9742-e299a3ffebfe +19:00:41.982 [XNIO-1 task-1] QryMunP6QbioM-4I2lFvAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.982 [XNIO-1 task-1] QryMunP6QbioM-4I2lFvAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:41.982 [XNIO-1 task-1] QryMunP6QbioM-4I2lFvAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.009 [XNIO-1 task-1] FiyUEPFVS-iTzfo4D6YqxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.009 [XNIO-1 task-1] FiyUEPFVS-iTzfo4D6YqxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.009 [XNIO-1 task-1] FiyUEPFVS-iTzfo4D6YqxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.033 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c90530f2-272e-4912-9742-e299a3ffebfe +19:00:42.049 [XNIO-1 task-1] TTEmertNTXWtLY-KLR-0oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.049 [XNIO-1 task-1] TTEmertNTXWtLY-KLR-0oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.050 [XNIO-1 task-1] TTEmertNTXWtLY-KLR-0oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.079 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8fc95d40 +19:00:42.085 [XNIO-1 task-1] TIXtEiOyQjqhnRdjtRKvxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1a937a9 +19:00:42.085 [XNIO-1 task-1] TIXtEiOyQjqhnRdjtRKvxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.085 [XNIO-1 task-1] TIXtEiOyQjqhnRdjtRKvxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.085 [XNIO-1 task-1] TIXtEiOyQjqhnRdjtRKvxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1a937a9 +19:00:42.105 [XNIO-1 task-1] PngoOWqpRju3SBiaEhme3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.105 [XNIO-1 task-1] PngoOWqpRju3SBiaEhme3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.105 [XNIO-1 task-1] PngoOWqpRju3SBiaEhme3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.162 [XNIO-1 task-1] qEsBKVNVR4aa37QRY6ZnbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.162 [XNIO-1 task-1] qEsBKVNVR4aa37QRY6ZnbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.163 [XNIO-1 task-1] qEsBKVNVR4aa37QRY6ZnbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.197 [XNIO-1 task-1] _IrXpJNMRUaw3DyoUVgdiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.199 [XNIO-1 task-1] _IrXpJNMRUaw3DyoUVgdiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.199 [XNIO-1 task-1] _IrXpJNMRUaw3DyoUVgdiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.232 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6c926397 +19:00:42.254 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6c926397 +19:00:42.272 [XNIO-1 task-1] LzUgEzIsQledLd-elxWjaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3ec3dbe +19:00:42.272 [XNIO-1 task-1] LzUgEzIsQledLd-elxWjaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.272 [XNIO-1 task-1] LzUgEzIsQledLd-elxWjaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.272 [XNIO-1 task-1] LzUgEzIsQledLd-elxWjaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3ec3dbe +19:00:42.283 [XNIO-1 task-1] 1SsrGhIZQsW09P7K_k4d2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3ec3dbe, base path is set to: null +19:00:42.283 [XNIO-1 task-1] 1SsrGhIZQsW09P7K_k4d2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.283 [XNIO-1 task-1] 1SsrGhIZQsW09P7K_k4d2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:42.285 [XNIO-1 task-1] 1SsrGhIZQsW09P7K_k4d2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f3ec3dbe, base path is set to: null +19:00:42.285 [XNIO-1 task-1] 1SsrGhIZQsW09P7K_k4d2A DEBUG com.networknt.schema.TypeValidator debug - validate( "f3ec3dbe", "f3ec3dbe", userId) +19:00:42.291 [XNIO-1 task-1] 5sILkDyHSP-bTu1fRttrlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3ec3dbe +19:00:42.291 [XNIO-1 task-1] 5sILkDyHSP-bTu1fRttrlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.291 [XNIO-1 task-1] 5sILkDyHSP-bTu1fRttrlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.291 [XNIO-1 task-1] 5sILkDyHSP-bTu1fRttrlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f3ec3dbe +19:00:42.314 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0d7f960b-fd41-47b9-82df-d849ed900c36 +19:00:42.316 [XNIO-1 task-1] mSdikutVR_yHl9OH4E7nvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/453815dd, base path is set to: null +19:00:42.316 [XNIO-1 task-1] mSdikutVR_yHl9OH4E7nvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.316 [XNIO-1 task-1] mSdikutVR_yHl9OH4E7nvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:42.316 [XNIO-1 task-1] mSdikutVR_yHl9OH4E7nvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/453815dd, base path is set to: null +19:00:42.317 [XNIO-1 task-1] mSdikutVR_yHl9OH4E7nvg DEBUG com.networknt.schema.TypeValidator debug - validate( "453815dd", "453815dd", userId) +19:00:42.321 [XNIO-1 task-1] CzxqyDl7SkOFed4SWi_jzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/453815dd +19:00:42.321 [XNIO-1 task-1] CzxqyDl7SkOFed4SWi_jzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.322 [XNIO-1 task-1] CzxqyDl7SkOFed4SWi_jzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.322 [XNIO-1 task-1] CzxqyDl7SkOFed4SWi_jzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/453815dd +19:00:42.334 [XNIO-1 task-1] Da665mAGS-WQ2JxMIQIwyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c926397, base path is set to: null +19:00:42.335 [XNIO-1 task-1] Da665mAGS-WQ2JxMIQIwyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.335 [XNIO-1 task-1] Da665mAGS-WQ2JxMIQIwyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:42.335 [XNIO-1 task-1] Da665mAGS-WQ2JxMIQIwyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6c926397, base path is set to: null +19:00:42.335 [XNIO-1 task-1] Da665mAGS-WQ2JxMIQIwyA DEBUG com.networknt.schema.TypeValidator debug - validate( "6c926397", "6c926397", userId) +19:00:42.351 [XNIO-1 task-1] uL26YuKLSp-07d8kniVwGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.351 [XNIO-1 task-1] uL26YuKLSp-07d8kniVwGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.352 [XNIO-1 task-1] uL26YuKLSp-07d8kniVwGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.365 [XNIO-1 task-1] 60kc1YaTRwK1YS9enCzxiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d4f562e0, base path is set to: null +19:00:42.365 [XNIO-1 task-1] 60kc1YaTRwK1YS9enCzxiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.365 [XNIO-1 task-1] 60kc1YaTRwK1YS9enCzxiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:42.365 [XNIO-1 task-1] 60kc1YaTRwK1YS9enCzxiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d4f562e0, base path is set to: null +19:00:42.366 [XNIO-1 task-1] 60kc1YaTRwK1YS9enCzxiA DEBUG com.networknt.schema.TypeValidator debug - validate( "d4f562e0", "d4f562e0", userId) +19:00:42.377 [XNIO-1 task-1] Dz7EcsdwQkWtLTvLVhbt7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a4c323c4 +19:00:42.377 [XNIO-1 task-1] Dz7EcsdwQkWtLTvLVhbt7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.377 [XNIO-1 task-1] Dz7EcsdwQkWtLTvLVhbt7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.377 [XNIO-1 task-1] Dz7EcsdwQkWtLTvLVhbt7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a4c323c4 +19:00:42.389 [XNIO-1 task-1] UnqBQnW8QSOzZPBVo5uHDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.390 [XNIO-1 task-1] UnqBQnW8QSOzZPBVo5uHDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.390 [XNIO-1 task-1] UnqBQnW8QSOzZPBVo5uHDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.390 [XNIO-1 task-1] UnqBQnW8QSOzZPBVo5uHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.396 [XNIO-1 task-1] ygmTz68GTj-DQZWH6jz8XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.396 [XNIO-1 task-1] ygmTz68GTj-DQZWH6jz8XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.396 [XNIO-1 task-1] ygmTz68GTj-DQZWH6jz8XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.397 [XNIO-1 task-1] ygmTz68GTj-DQZWH6jz8XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.406 [XNIO-1 task-1] Q4K8l_I7TBS9CDOl0F7JNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.406 [XNIO-1 task-1] Q4K8l_I7TBS9CDOl0F7JNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.406 [XNIO-1 task-1] Q4K8l_I7TBS9CDOl0F7JNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.407 [XNIO-1 task-1] Q4K8l_I7TBS9CDOl0F7JNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.414 [XNIO-1 task-1] K2VlThS4SJakK1kRw8O0UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.414 [XNIO-1 task-1] K2VlThS4SJakK1kRw8O0UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.416 [XNIO-1 task-1] K2VlThS4SJakK1kRw8O0UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.416 [XNIO-1 task-1] K2VlThS4SJakK1kRw8O0UA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.428 [XNIO-1 task-1] Vz5IiA1xRquzGKiYUpH1iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.428 [XNIO-1 task-1] Vz5IiA1xRquzGKiYUpH1iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.428 [XNIO-1 task-1] Vz5IiA1xRquzGKiYUpH1iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.481 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2f8b7072-ccc5-4c23-bd4c-167aa988351e +19:00:42.484 [XNIO-1 task-1] Q4Tux73WTDC6sWf-32wrTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/017fc70a, base path is set to: null +19:00:42.485 [XNIO-1 task-1] Q4Tux73WTDC6sWf-32wrTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.485 [XNIO-1 task-1] Q4Tux73WTDC6sWf-32wrTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:42.486 [XNIO-1 task-1] Q4Tux73WTDC6sWf-32wrTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/017fc70a, base path is set to: null +19:00:42.486 [XNIO-1 task-1] Q4Tux73WTDC6sWf-32wrTg DEBUG com.networknt.schema.TypeValidator debug - validate( "017fc70a", "017fc70a", userId) +19:00:42.500 [XNIO-1 task-1] lu2LpVjOSt6K_miAF3EWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.500 [XNIO-1 task-1] lu2LpVjOSt6K_miAF3EWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.500 [XNIO-1 task-1] lu2LpVjOSt6K_miAF3EWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.501 [XNIO-1 task-1] lu2LpVjOSt6K_miAF3EWLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.508 [XNIO-1 task-1] 8cjtR1j2TQm5uI0JvDw1OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.509 [XNIO-1 task-1] 8cjtR1j2TQm5uI0JvDw1OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.509 [XNIO-1 task-1] 8cjtR1j2TQm5uI0JvDw1OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.509 [XNIO-1 task-1] 8cjtR1j2TQm5uI0JvDw1OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.540 [XNIO-1 task-1] xoQeUQCMRa2nVMDcaBZNmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.542 [XNIO-1 task-1] xoQeUQCMRa2nVMDcaBZNmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.542 [XNIO-1 task-1] xoQeUQCMRa2nVMDcaBZNmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.542 [XNIO-1 task-1] xoQeUQCMRa2nVMDcaBZNmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:42.556 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:22024862-b467-4746-8657-a778533e064a +19:00:42.559 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:22024862-b467-4746-8657-a778533e064a +19:00:42.570 [XNIO-1 task-1] 3GbOCCUhTL-BWtYAfe7wKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.570 [XNIO-1 task-1] 3GbOCCUhTL-BWtYAfe7wKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.571 [XNIO-1 task-1] 3GbOCCUhTL-BWtYAfe7wKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.606 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9463e28b +19:00:42.657 [XNIO-1 task-1] 7ixPM8zCTmeT0n0my0xTGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc8e8bb5, base path is set to: null +19:00:42.658 [XNIO-1 task-1] 7ixPM8zCTmeT0n0my0xTGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.658 [XNIO-1 task-1] 7ixPM8zCTmeT0n0my0xTGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:42.659 [XNIO-1 task-1] 7ixPM8zCTmeT0n0my0xTGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc8e8bb5, base path is set to: null +19:00:42.659 [XNIO-1 task-1] 7ixPM8zCTmeT0n0my0xTGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cc8e8bb5", "cc8e8bb5", userId) +19:00:42.694 [XNIO-1 task-1] RiUEAZKlSY-adLPm_f1sAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.694 [XNIO-1 task-1] RiUEAZKlSY-adLPm_f1sAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.695 [XNIO-1 task-1] RiUEAZKlSY-adLPm_f1sAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.695 [XNIO-1 task-1] RiUEAZKlSY-adLPm_f1sAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.702 [XNIO-1 task-1] UfB6ZaTiScGRgynsenhSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.702 [XNIO-1 task-1] UfB6ZaTiScGRgynsenhSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.703 [XNIO-1 task-1] UfB6ZaTiScGRgynsenhSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.703 [XNIO-1 task-1] UfB6ZaTiScGRgynsenhSpw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.713 [XNIO-1 task-1] NElMyX01RoWoPeMGOm4KNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.713 [XNIO-1 task-1] NElMyX01RoWoPeMGOm4KNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.713 [XNIO-1 task-1] NElMyX01RoWoPeMGOm4KNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.713 [XNIO-1 task-1] NElMyX01RoWoPeMGOm4KNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.722 [XNIO-1 task-1] aGAfRwN_RzSLeZQGlL_yZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.722 [XNIO-1 task-1] aGAfRwN_RzSLeZQGlL_yZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.723 [XNIO-1 task-1] aGAfRwN_RzSLeZQGlL_yZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.750 [XNIO-1 task-1] KFvnzW7FS-uEB7Paq8NupQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.750 [XNIO-1 task-1] KFvnzW7FS-uEB7Paq8NupQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.750 [XNIO-1 task-1] KFvnzW7FS-uEB7Paq8NupQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.751 [XNIO-1 task-1] KFvnzW7FS-uEB7Paq8NupQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.764 [XNIO-1 task-1] tRLk17u0RkGUEjWjh97V3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a7104ba6 +19:00:42.764 [XNIO-1 task-1] tRLk17u0RkGUEjWjh97V3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.764 [XNIO-1 task-1] tRLk17u0RkGUEjWjh97V3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.764 [XNIO-1 task-1] tRLk17u0RkGUEjWjh97V3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a7104ba6 +19:00:42.777 [XNIO-1 task-1] tJkCqpmtQ2q4epLDtReFSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.777 [XNIO-1 task-1] tJkCqpmtQ2q4epLDtReFSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.804 [XNIO-1 task-1] tJkCqpmtQ2q4epLDtReFSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.813 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1b592aa +19:00:42.814 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1b592aa +19:00:42.827 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1b592aa +19:00:42.827 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.827 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.827 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:42.828 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/c1b592aa +19:00:42.829 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5d448b4a-bf2d-44cc-9e18-695271621074","newPassword":"80e95c1e-0d15-4053-b031-2596b3d31fb2","newPasswordConfirm":"80e95c1e-0d15-4053-b031-2596b3d31fb2"}, {"password":"5d448b4a-bf2d-44cc-9e18-695271621074","newPassword":"80e95c1e-0d15-4053-b031-2596b3d31fb2","newPasswordConfirm":"80e95c1e-0d15-4053-b031-2596b3d31fb2"}, requestBody) +19:00:42.829 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5d448b4a-bf2d-44cc-9e18-695271621074","newPassword":"80e95c1e-0d15-4053-b031-2596b3d31fb2","newPasswordConfirm":"80e95c1e-0d15-4053-b031-2596b3d31fb2"}, {"password":"5d448b4a-bf2d-44cc-9e18-695271621074","newPassword":"80e95c1e-0d15-4053-b031-2596b3d31fb2","newPasswordConfirm":"80e95c1e-0d15-4053-b031-2596b3d31fb2"}, requestBody) +19:00:42.829 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "80e95c1e-0d15-4053-b031-2596b3d31fb2", {"password":"5d448b4a-bf2d-44cc-9e18-695271621074","newPassword":"80e95c1e-0d15-4053-b031-2596b3d31fb2","newPasswordConfirm":"80e95c1e-0d15-4053-b031-2596b3d31fb2"}, requestBody.newPasswordConfirm) +19:00:42.829 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5d448b4a-bf2d-44cc-9e18-695271621074", {"password":"5d448b4a-bf2d-44cc-9e18-695271621074","newPassword":"80e95c1e-0d15-4053-b031-2596b3d31fb2","newPasswordConfirm":"80e95c1e-0d15-4053-b031-2596b3d31fb2"}, requestBody.password) +19:00:42.829 [XNIO-1 task-1] 4TJfe367QV-sQq0gfIv3dQ DEBUG com.networknt.schema.FormatValidator debug - validate( "80e95c1e-0d15-4053-b031-2596b3d31fb2", {"password":"5d448b4a-bf2d-44cc-9e18-695271621074","newPassword":"80e95c1e-0d15-4053-b031-2596b3d31fb2","newPasswordConfirm":"80e95c1e-0d15-4053-b031-2596b3d31fb2"}, requestBody.newPassword) +19:00:42.853 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c1b592aa +19:00:42.863 [XNIO-1 task-1] zjqyDR6XQFyAGsX9w2VK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1b592aa +19:00:42.863 [XNIO-1 task-1] zjqyDR6XQFyAGsX9w2VK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.863 [XNIO-1 task-1] zjqyDR6XQFyAGsX9w2VK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.863 [XNIO-1 task-1] zjqyDR6XQFyAGsX9w2VK8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c1b592aa +19:00:42.865 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c1b592aa +19:00:42.878 [XNIO-1 task-1] GDswFEelSiu_gJgctS2ThA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.878 [XNIO-1 task-1] GDswFEelSiu_gJgctS2ThA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.878 [XNIO-1 task-1] GDswFEelSiu_gJgctS2ThA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.887 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1f516615 +19:00:42.900 [XNIO-1 task-1] 5Lve3qHOQCSH07RzYSMrQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.900 [XNIO-1 task-1] 5Lve3qHOQCSH07RzYSMrQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.900 [XNIO-1 task-1] 5Lve3qHOQCSH07RzYSMrQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.901 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1f516615 +19:00:42.908 [XNIO-1 task-1] y5jC1PegRh2viZyV7BK3nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.909 [XNIO-1 task-1] y5jC1PegRh2viZyV7BK3nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.909 [XNIO-1 task-1] y5jC1PegRh2viZyV7BK3nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:42.928 [XNIO-1 task-1] mBZGFSqAQnaQjNypvuRT7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1524526a, base path is set to: null +19:00:42.928 [XNIO-1 task-1] mBZGFSqAQnaQjNypvuRT7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:42.928 [XNIO-1 task-1] mBZGFSqAQnaQjNypvuRT7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:42.929 [XNIO-1 task-1] mBZGFSqAQnaQjNypvuRT7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1524526a, base path is set to: null +19:00:42.929 [XNIO-1 task-1] mBZGFSqAQnaQjNypvuRT7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1524526a", "1524526a", userId) +19:00:42.939 [XNIO-1 task-1] wmciksdNQaie8R5eHg_yrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.939 [XNIO-1 task-1] wmciksdNQaie8R5eHg_yrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.939 [XNIO-1 task-1] wmciksdNQaie8R5eHg_yrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.940 [XNIO-1 task-1] wmciksdNQaie8R5eHg_yrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.951 [XNIO-1 task-1] AZMgodL5Ri6tQ_p2CeDfcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.951 [XNIO-1 task-1] AZMgodL5Ri6tQ_p2CeDfcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.951 [XNIO-1 task-1] AZMgodL5Ri6tQ_p2CeDfcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.951 [XNIO-1 task-1] AZMgodL5Ri6tQ_p2CeDfcw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:42.963 [XNIO-1 task-1] q-FGuudDSweoYKxm7agY3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.963 [XNIO-1 task-1] q-FGuudDSweoYKxm7agY3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.963 [XNIO-1 task-1] q-FGuudDSweoYKxm7agY3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.964 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1f516615 +19:00:42.970 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6301b3c6-c4a8-43e1-9f77-7e6ee17433ef +19:00:42.973 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1f516615 +19:00:42.973 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.973 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:42.973 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:42.973 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1f516615 +19:00:42.974 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9b51b641-6e73-412e-8baf-3f003e2c65a6","newPassword":"752908b3-861f-4116-bf49-050196b65771","newPasswordConfirm":"752908b3-861f-4116-bf49-050196b65771"}, {"password":"9b51b641-6e73-412e-8baf-3f003e2c65a6","newPassword":"752908b3-861f-4116-bf49-050196b65771","newPasswordConfirm":"752908b3-861f-4116-bf49-050196b65771"}, requestBody) +19:00:42.974 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9b51b641-6e73-412e-8baf-3f003e2c65a6","newPassword":"752908b3-861f-4116-bf49-050196b65771","newPasswordConfirm":"752908b3-861f-4116-bf49-050196b65771"}, {"password":"9b51b641-6e73-412e-8baf-3f003e2c65a6","newPassword":"752908b3-861f-4116-bf49-050196b65771","newPasswordConfirm":"752908b3-861f-4116-bf49-050196b65771"}, requestBody) +19:00:42.974 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG com.networknt.schema.FormatValidator debug - validate( "752908b3-861f-4116-bf49-050196b65771", {"password":"9b51b641-6e73-412e-8baf-3f003e2c65a6","newPassword":"752908b3-861f-4116-bf49-050196b65771","newPasswordConfirm":"752908b3-861f-4116-bf49-050196b65771"}, requestBody.newPasswordConfirm) +19:00:42.974 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG com.networknt.schema.FormatValidator debug - validate( "9b51b641-6e73-412e-8baf-3f003e2c65a6", {"password":"9b51b641-6e73-412e-8baf-3f003e2c65a6","newPassword":"752908b3-861f-4116-bf49-050196b65771","newPasswordConfirm":"752908b3-861f-4116-bf49-050196b65771"}, requestBody.password) +19:00:42.974 [XNIO-1 task-1] TImzPrl9TB6lS-GpS6KVAA DEBUG com.networknt.schema.FormatValidator debug - validate( "752908b3-861f-4116-bf49-050196b65771", {"password":"9b51b641-6e73-412e-8baf-3f003e2c65a6","newPassword":"752908b3-861f-4116-bf49-050196b65771","newPasswordConfirm":"752908b3-861f-4116-bf49-050196b65771"}, requestBody.newPassword) +19:00:42.987 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1f516615 +19:00:42.995 [XNIO-1 task-1] KQvgT-vbSVaVhbNs34Nykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.995 [XNIO-1 task-1] KQvgT-vbSVaVhbNs34Nykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.996 [XNIO-1 task-1] KQvgT-vbSVaVhbNs34Nykg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:42.997 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1f516615 +19:00:43.006 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f2f017b8-b3a0-43b3-87e5-d95dc1c19145 +19:00:43.006 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1f516615 +19:00:43.006 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.006 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.006 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:43.007 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1f516615 +19:00:43.009 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"752908b3-861f-4116-bf49-050196b65771","newPassword":"c45a45b8-fa07-447f-add6-804fd303ed94","newPasswordConfirm":"c45a45b8-fa07-447f-add6-804fd303ed94"}, {"password":"752908b3-861f-4116-bf49-050196b65771","newPassword":"c45a45b8-fa07-447f-add6-804fd303ed94","newPasswordConfirm":"c45a45b8-fa07-447f-add6-804fd303ed94"}, requestBody) +19:00:43.010 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"752908b3-861f-4116-bf49-050196b65771","newPassword":"c45a45b8-fa07-447f-add6-804fd303ed94","newPasswordConfirm":"c45a45b8-fa07-447f-add6-804fd303ed94"}, {"password":"752908b3-861f-4116-bf49-050196b65771","newPassword":"c45a45b8-fa07-447f-add6-804fd303ed94","newPasswordConfirm":"c45a45b8-fa07-447f-add6-804fd303ed94"}, requestBody) +19:00:43.010 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG com.networknt.schema.FormatValidator debug - validate( "c45a45b8-fa07-447f-add6-804fd303ed94", {"password":"752908b3-861f-4116-bf49-050196b65771","newPassword":"c45a45b8-fa07-447f-add6-804fd303ed94","newPasswordConfirm":"c45a45b8-fa07-447f-add6-804fd303ed94"}, requestBody.newPasswordConfirm) +19:00:43.010 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG com.networknt.schema.FormatValidator debug - validate( "752908b3-861f-4116-bf49-050196b65771", {"password":"752908b3-861f-4116-bf49-050196b65771","newPassword":"c45a45b8-fa07-447f-add6-804fd303ed94","newPasswordConfirm":"c45a45b8-fa07-447f-add6-804fd303ed94"}, requestBody.password) +19:00:43.010 [XNIO-1 task-1] 7wf8knJLRACSGTajycN7WA DEBUG com.networknt.schema.FormatValidator debug - validate( "c45a45b8-fa07-447f-add6-804fd303ed94", {"password":"752908b3-861f-4116-bf49-050196b65771","newPassword":"c45a45b8-fa07-447f-add6-804fd303ed94","newPasswordConfirm":"c45a45b8-fa07-447f-add6-804fd303ed94"}, requestBody.newPassword) +19:00:43.022 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1f516615 +19:00:43.037 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1f516615 +19:00:43.037 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.037 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.037 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:43.038 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1f516615 +19:00:43.039 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c45a45b8-fa07-447f-add6-804fd303ed94","newPassword":"00273ff6-2bea-4c90-9ae6-866800de659f","newPasswordConfirm":"00273ff6-2bea-4c90-9ae6-866800de659f"}, {"password":"c45a45b8-fa07-447f-add6-804fd303ed94","newPassword":"00273ff6-2bea-4c90-9ae6-866800de659f","newPasswordConfirm":"00273ff6-2bea-4c90-9ae6-866800de659f"}, requestBody) +19:00:43.039 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c45a45b8-fa07-447f-add6-804fd303ed94","newPassword":"00273ff6-2bea-4c90-9ae6-866800de659f","newPasswordConfirm":"00273ff6-2bea-4c90-9ae6-866800de659f"}, {"password":"c45a45b8-fa07-447f-add6-804fd303ed94","newPassword":"00273ff6-2bea-4c90-9ae6-866800de659f","newPasswordConfirm":"00273ff6-2bea-4c90-9ae6-866800de659f"}, requestBody) +19:00:43.039 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG com.networknt.schema.FormatValidator debug - validate( "00273ff6-2bea-4c90-9ae6-866800de659f", {"password":"c45a45b8-fa07-447f-add6-804fd303ed94","newPassword":"00273ff6-2bea-4c90-9ae6-866800de659f","newPasswordConfirm":"00273ff6-2bea-4c90-9ae6-866800de659f"}, requestBody.newPasswordConfirm) +19:00:43.039 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG com.networknt.schema.FormatValidator debug - validate( "c45a45b8-fa07-447f-add6-804fd303ed94", {"password":"c45a45b8-fa07-447f-add6-804fd303ed94","newPassword":"00273ff6-2bea-4c90-9ae6-866800de659f","newPasswordConfirm":"00273ff6-2bea-4c90-9ae6-866800de659f"}, requestBody.password) +19:00:43.040 [XNIO-1 task-1] nXPmdNryRUaO5tXHPphBcw DEBUG com.networknt.schema.FormatValidator debug - validate( "00273ff6-2bea-4c90-9ae6-866800de659f", {"password":"c45a45b8-fa07-447f-add6-804fd303ed94","newPassword":"00273ff6-2bea-4c90-9ae6-866800de659f","newPasswordConfirm":"00273ff6-2bea-4c90-9ae6-866800de659f"}, requestBody.newPassword) +19:00:43.054 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1f516615 +19:00:43.105 [XNIO-1 task-1] _1hWtjKlRsydxGBSI96jwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1f516615 +19:00:43.105 [XNIO-1 task-1] _1hWtjKlRsydxGBSI96jwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.106 [XNIO-1 task-1] _1hWtjKlRsydxGBSI96jwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.106 [XNIO-1 task-1] _1hWtjKlRsydxGBSI96jwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1f516615 +19:00:43.106 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1f516615 +19:00:43.115 [XNIO-1 task-1] x2lLbkAcS5yiitF-X0lBZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.116 [XNIO-1 task-1] x2lLbkAcS5yiitF-X0lBZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.116 [XNIO-1 task-1] x2lLbkAcS5yiitF-X0lBZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.116 [XNIO-1 task-1] x2lLbkAcS5yiitF-X0lBZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.125 [XNIO-1 task-1] 1HZp3vMYT_2fnjV6uKzKuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.125 [XNIO-1 task-1] 1HZp3vMYT_2fnjV6uKzKuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.126 [XNIO-1 task-1] 1HZp3vMYT_2fnjV6uKzKuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.162 [XNIO-1 task-1] YKhNQt8dT_iq4O2nRjdygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.162 [XNIO-1 task-1] YKhNQt8dT_iq4O2nRjdygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.163 [XNIO-1 task-1] YKhNQt8dT_iq4O2nRjdygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.209 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2689db0e +19:00:43.213 [XNIO-1 task-1] rOaaF2RoRoaKsRi_hb53jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.213 [XNIO-1 task-1] rOaaF2RoRoaKsRi_hb53jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.214 [XNIO-1 task-1] rOaaF2RoRoaKsRi_hb53jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.215 [XNIO-1 task-1] rOaaF2RoRoaKsRi_hb53jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.224 [XNIO-1 task-1] OvP_MW5gS9aU6285fLpYRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.224 [XNIO-1 task-1] OvP_MW5gS9aU6285fLpYRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.225 [XNIO-1 task-1] OvP_MW5gS9aU6285fLpYRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.249 [XNIO-1 task-1] J8ccSGLQS_yaYYhBORt4bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/36475b39, base path is set to: null +19:00:43.250 [XNIO-1 task-1] J8ccSGLQS_yaYYhBORt4bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.250 [XNIO-1 task-1] J8ccSGLQS_yaYYhBORt4bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:43.250 [XNIO-1 task-1] J8ccSGLQS_yaYYhBORt4bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/36475b39, base path is set to: null +19:00:43.250 [XNIO-1 task-1] J8ccSGLQS_yaYYhBORt4bw DEBUG com.networknt.schema.TypeValidator debug - validate( "36475b39", "36475b39", userId) +19:00:43.259 [XNIO-1 task-1] Owi7_7jQQ-qHA5xW3ns26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.259 [XNIO-1 task-1] Owi7_7jQQ-qHA5xW3ns26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.259 [XNIO-1 task-1] Owi7_7jQQ-qHA5xW3ns26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.276 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:43.280 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ed438a5a, base path is set to: null +19:00:43.281 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.281 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:43.281 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:43.281 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ed438a5a, base path is set to: null +19:00:43.282 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "ed438a5a", "ed438a5a", userId) +19:00:43.282 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5da359d5-4c0c-4408-a294-16f512c97afc","newPassword":"1f76e129-31db-4b56-ae16-53753bde1849","newPasswordConfirm":"1f76e129-31db-4b56-ae16-53753bde1849"}, {"password":"5da359d5-4c0c-4408-a294-16f512c97afc","newPassword":"1f76e129-31db-4b56-ae16-53753bde1849","newPasswordConfirm":"1f76e129-31db-4b56-ae16-53753bde1849"}, requestBody) +19:00:43.282 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1f76e129-31db-4b56-ae16-53753bde1849", {"password":"5da359d5-4c0c-4408-a294-16f512c97afc","newPassword":"1f76e129-31db-4b56-ae16-53753bde1849","newPasswordConfirm":"1f76e129-31db-4b56-ae16-53753bde1849"}, requestBody.newPasswordConfirm) +19:00:43.282 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "5da359d5-4c0c-4408-a294-16f512c97afc", {"password":"5da359d5-4c0c-4408-a294-16f512c97afc","newPassword":"1f76e129-31db-4b56-ae16-53753bde1849","newPasswordConfirm":"1f76e129-31db-4b56-ae16-53753bde1849"}, requestBody.password) +19:00:43.282 [XNIO-1 task-1] 2gb-I84RQc2_ZeANU1uQ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1f76e129-31db-4b56-ae16-53753bde1849", {"password":"5da359d5-4c0c-4408-a294-16f512c97afc","newPassword":"1f76e129-31db-4b56-ae16-53753bde1849","newPasswordConfirm":"1f76e129-31db-4b56-ae16-53753bde1849"}, requestBody.newPassword) +19:00:43.306 [XNIO-1 task-1] cY3F_f2oSOGIvMYzb4OtEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4a039648, base path is set to: null +19:00:43.306 [XNIO-1 task-1] cY3F_f2oSOGIvMYzb4OtEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.306 [XNIO-1 task-1] cY3F_f2oSOGIvMYzb4OtEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:43.306 [XNIO-1 task-1] cY3F_f2oSOGIvMYzb4OtEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4a039648, base path is set to: null +19:00:43.306 [XNIO-1 task-1] cY3F_f2oSOGIvMYzb4OtEg DEBUG com.networknt.schema.TypeValidator debug - validate( "4a039648", "4a039648", userId) +19:00:43.316 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ed438a5a +19:00:43.316 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.316 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.316 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:43.317 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ed438a5a +19:00:43.317 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1f76e129-31db-4b56-ae16-53753bde1849","newPassword":"4422fa18-7082-432b-8555-83aa8868d6da","newPasswordConfirm":"4422fa18-7082-432b-8555-83aa8868d6da"}, {"password":"1f76e129-31db-4b56-ae16-53753bde1849","newPassword":"4422fa18-7082-432b-8555-83aa8868d6da","newPasswordConfirm":"4422fa18-7082-432b-8555-83aa8868d6da"}, requestBody) +19:00:43.317 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1f76e129-31db-4b56-ae16-53753bde1849","newPassword":"4422fa18-7082-432b-8555-83aa8868d6da","newPasswordConfirm":"4422fa18-7082-432b-8555-83aa8868d6da"}, {"password":"1f76e129-31db-4b56-ae16-53753bde1849","newPassword":"4422fa18-7082-432b-8555-83aa8868d6da","newPasswordConfirm":"4422fa18-7082-432b-8555-83aa8868d6da"}, requestBody) +19:00:43.317 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG com.networknt.schema.FormatValidator debug - validate( "4422fa18-7082-432b-8555-83aa8868d6da", {"password":"1f76e129-31db-4b56-ae16-53753bde1849","newPassword":"4422fa18-7082-432b-8555-83aa8868d6da","newPasswordConfirm":"4422fa18-7082-432b-8555-83aa8868d6da"}, requestBody.newPasswordConfirm) +19:00:43.318 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1f76e129-31db-4b56-ae16-53753bde1849", {"password":"1f76e129-31db-4b56-ae16-53753bde1849","newPassword":"4422fa18-7082-432b-8555-83aa8868d6da","newPasswordConfirm":"4422fa18-7082-432b-8555-83aa8868d6da"}, requestBody.password) +19:00:43.318 [XNIO-1 task-1] loo0FycVRMGRGLXZaXKhPg DEBUG com.networknt.schema.FormatValidator debug - validate( "4422fa18-7082-432b-8555-83aa8868d6da", {"password":"1f76e129-31db-4b56-ae16-53753bde1849","newPassword":"4422fa18-7082-432b-8555-83aa8868d6da","newPasswordConfirm":"4422fa18-7082-432b-8555-83aa8868d6da"}, requestBody.newPassword) +19:00:43.345 [XNIO-1 task-1] xuAlm27jQfS5Fz2tf3Ompw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.345 [XNIO-1 task-1] xuAlm27jQfS5Fz2tf3Ompw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.345 [XNIO-1 task-1] xuAlm27jQfS5Fz2tf3Ompw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.345 [XNIO-1 task-1] xuAlm27jQfS5Fz2tf3Ompw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.363 [XNIO-1 task-1] cAlfXo5gRLWjhpV_hSlcew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ed438a5a +19:00:43.363 [XNIO-1 task-1] cAlfXo5gRLWjhpV_hSlcew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.363 [XNIO-1 task-1] cAlfXo5gRLWjhpV_hSlcew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.363 [XNIO-1 task-1] cAlfXo5gRLWjhpV_hSlcew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ed438a5a +19:00:43.378 [XNIO-1 task-1] Bw98gEUvR-y1c9AQAgrOOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.378 [XNIO-1 task-1] Bw98gEUvR-y1c9AQAgrOOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.379 [XNIO-1 task-1] Bw98gEUvR-y1c9AQAgrOOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.401 [XNIO-1 task-1] z3FXfowPSH6--Kj_3yRMSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.401 [XNIO-1 task-1] z3FXfowPSH6--Kj_3yRMSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.402 [XNIO-1 task-1] z3FXfowPSH6--Kj_3yRMSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.412 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbde4132 +19:00:43.417 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbde4132 +19:00:43.431 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8fc95d40 +19:00:43.454 [XNIO-1 task-1] Ut8Z1nn-TiyRiw-Obvg5dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.454 [XNIO-1 task-1] Ut8Z1nn-TiyRiw-Obvg5dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.454 [XNIO-1 task-1] Ut8Z1nn-TiyRiw-Obvg5dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.458 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a0d8afc8-5521-4a8f-9291-f42693a51155 +19:00:43.498 [XNIO-1 task-1] vFZD7g0GQgWS-ZiCneg3UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ba48c47f, base path is set to: null +19:00:43.498 [XNIO-1 task-1] vFZD7g0GQgWS-ZiCneg3UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.498 [XNIO-1 task-1] vFZD7g0GQgWS-ZiCneg3UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:43.498 [XNIO-1 task-1] vFZD7g0GQgWS-ZiCneg3UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ba48c47f, base path is set to: null +19:00:43.498 [XNIO-1 task-1] vFZD7g0GQgWS-ZiCneg3UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ba48c47f", "ba48c47f", userId) +19:00:43.514 [XNIO-1 task-1] wM9W3tc4QiCUvsb6m77zIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.514 [XNIO-1 task-1] wM9W3tc4QiCUvsb6m77zIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.514 [XNIO-1 task-1] wM9W3tc4QiCUvsb6m77zIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.515 [XNIO-1 task-1] wM9W3tc4QiCUvsb6m77zIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.535 [XNIO-1 task-1] LMBTqiyCTuyoe4SIOgxjBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.535 [XNIO-1 task-1] LMBTqiyCTuyoe4SIOgxjBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.535 [XNIO-1 task-1] LMBTqiyCTuyoe4SIOgxjBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.536 [XNIO-1 task-1] LMBTqiyCTuyoe4SIOgxjBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.548 [XNIO-1 task-1] IDhBF1hHT5uzKfqgCKX4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.548 [XNIO-1 task-1] IDhBF1hHT5uzKfqgCKX4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.548 [XNIO-1 task-1] IDhBF1hHT5uzKfqgCKX4hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.549 [XNIO-1 task-1] IDhBF1hHT5uzKfqgCKX4hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.558 [XNIO-1 task-1] 75Fs7z_7TEWDlYM8C76hmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.559 [XNIO-1 task-1] 75Fs7z_7TEWDlYM8C76hmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.559 [XNIO-1 task-1] 75Fs7z_7TEWDlYM8C76hmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.559 [XNIO-1 task-1] 75Fs7z_7TEWDlYM8C76hmA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.588 [XNIO-1 task-1] DHLH5u_nQcetT_-qz8S6IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.589 [XNIO-1 task-1] DHLH5u_nQcetT_-qz8S6IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.589 [XNIO-1 task-1] DHLH5u_nQcetT_-qz8S6IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.589 [XNIO-1 task-1] DHLH5u_nQcetT_-qz8S6IA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.598 [XNIO-1 task-1] CxaXiEckSJmHegR-C-7zFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.598 [XNIO-1 task-1] CxaXiEckSJmHegR-C-7zFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.598 [XNIO-1 task-1] CxaXiEckSJmHegR-C-7zFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.599 [XNIO-1 task-1] CxaXiEckSJmHegR-C-7zFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.610 [XNIO-1 task-1] i4PVZqaMQd6hiisBPhn6rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.610 [XNIO-1 task-1] i4PVZqaMQd6hiisBPhn6rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.611 [XNIO-1 task-1] i4PVZqaMQd6hiisBPhn6rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.612 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbde4132 +19:00:43.615 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +Jun 28, 2024 7:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +19:00:43.640 [XNIO-1 task-1] liSk4d7rRKGtqDMW-iYQqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.640 [XNIO-1 task-1] liSk4d7rRKGtqDMW-iYQqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.641 [XNIO-1 task-1] liSk4d7rRKGtqDMW-iYQqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.642 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbde4132 +19:00:43.650 [XNIO-1 task-1] tBGIU66vR8CwjBCyCcy58g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/43eae223, base path is set to: null +19:00:43.650 [XNIO-1 task-1] tBGIU66vR8CwjBCyCcy58g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.650 [XNIO-1 task-1] tBGIU66vR8CwjBCyCcy58g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:43.651 [XNIO-1 task-1] tBGIU66vR8CwjBCyCcy58g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/43eae223, base path is set to: null +19:00:43.651 [XNIO-1 task-1] tBGIU66vR8CwjBCyCcy58g DEBUG com.networknt.schema.TypeValidator debug - validate( "43eae223", "43eae223", userId) +19:00:43.662 [XNIO-1 task-1] zx-0IPwYTbKY7HCpvtezbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.662 [XNIO-1 task-1] zx-0IPwYTbKY7HCpvtezbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.663 [XNIO-1 task-1] zx-0IPwYTbKY7HCpvtezbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.685 [XNIO-1 task-1] vhDx1Hn-QDec4bO5t5usCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.685 [XNIO-1 task-1] vhDx1Hn-QDec4bO5t5usCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.686 [XNIO-1 task-1] vhDx1Hn-QDec4bO5t5usCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.686 [XNIO-1 task-1] vhDx1Hn-QDec4bO5t5usCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.703 [XNIO-1 task-1] Tih8ZEV3T36pxACr3qgmLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.703 [XNIO-1 task-1] Tih8ZEV3T36pxACr3qgmLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.703 [XNIO-1 task-1] Tih8ZEV3T36pxACr3qgmLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.703 [XNIO-1 task-1] Tih8ZEV3T36pxACr3qgmLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.769 [XNIO-1 task-1] XyWLUJIbScivQ4jlUo4xmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.769 [XNIO-1 task-1] XyWLUJIbScivQ4jlUo4xmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.769 [XNIO-1 task-1] XyWLUJIbScivQ4jlUo4xmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.770 [XNIO-1 task-1] XyWLUJIbScivQ4jlUo4xmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:43.805 [XNIO-1 task-1] 4KM1DPIpSNG4JKgD1qsuVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/43eae223 +19:00:43.806 [XNIO-1 task-1] 4KM1DPIpSNG4JKgD1qsuVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.806 [XNIO-1 task-1] 4KM1DPIpSNG4JKgD1qsuVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.806 [XNIO-1 task-1] 4KM1DPIpSNG4JKgD1qsuVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/43eae223 +19:00:43.810 [XNIO-1 task-1] gwsPtqDCSh6kkEg7TndQtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.811 [XNIO-1 task-1] gwsPtqDCSh6kkEg7TndQtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.811 [XNIO-1 task-1] gwsPtqDCSh6kkEg7TndQtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:43.811 [XNIO-1 task-1] gwsPtqDCSh6kkEg7TndQtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:43.823 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6b3e1a35-d000-4ff8-baf7-400c0d5dde7d +19:00:43.824 [XNIO-1 task-1] owDfiyyES8SPR2DYJHp72A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.824 [XNIO-1 task-1] owDfiyyES8SPR2DYJHp72A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.824 [XNIO-1 task-1] owDfiyyES8SPR2DYJHp72A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.825 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6b3e1a35-d000-4ff8-baf7-400c0d5dde7d +19:00:43.834 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:023564c6 +19:00:43.849 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3af21d7e, base path is set to: null +19:00:43.849 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:43.849 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:43.850 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:43.850 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3af21d7e, base path is set to: null +19:00:43.851 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG com.networknt.schema.TypeValidator debug - validate( "3af21d7e", "3af21d7e", userId) +19:00:43.851 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"c74bb2e2-2fdd-4912-8e7e-5ecff771aed6","newPassword":"585da258-a706-44ce-b7b2-e551d1d0c063","newPasswordConfirm":"585da258-a706-44ce-b7b2-e551d1d0c063"}, {"password":"c74bb2e2-2fdd-4912-8e7e-5ecff771aed6","newPassword":"585da258-a706-44ce-b7b2-e551d1d0c063","newPasswordConfirm":"585da258-a706-44ce-b7b2-e551d1d0c063"}, requestBody) +19:00:43.852 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG com.networknt.schema.TypeValidator debug - validate( "585da258-a706-44ce-b7b2-e551d1d0c063", {"password":"c74bb2e2-2fdd-4912-8e7e-5ecff771aed6","newPassword":"585da258-a706-44ce-b7b2-e551d1d0c063","newPasswordConfirm":"585da258-a706-44ce-b7b2-e551d1d0c063"}, requestBody.newPasswordConfirm) +19:00:43.853 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG com.networknt.schema.TypeValidator debug - validate( "c74bb2e2-2fdd-4912-8e7e-5ecff771aed6", {"password":"c74bb2e2-2fdd-4912-8e7e-5ecff771aed6","newPassword":"585da258-a706-44ce-b7b2-e551d1d0c063","newPasswordConfirm":"585da258-a706-44ce-b7b2-e551d1d0c063"}, requestBody.password) +19:00:43.853 [XNIO-1 task-1] ihRJ_WRSSMy7axjNQusmwg DEBUG com.networknt.schema.TypeValidator debug - validate( "585da258-a706-44ce-b7b2-e551d1d0c063", {"password":"c74bb2e2-2fdd-4912-8e7e-5ecff771aed6","newPassword":"585da258-a706-44ce-b7b2-e551d1d0c063","newPasswordConfirm":"585da258-a706-44ce-b7b2-e551d1d0c063"}, requestBody.newPassword) +19:00:43.853 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3954f77b-908c-45dd-8f98-29e69b0737fd +19:00:43.873 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d2e84b93-3b22-4707-b209-8db6df2c804b +19:00:43.875 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d2e84b93-3b22-4707-b209-8db6df2c804b +19:00:43.884 [XNIO-1 task-1] cjHsoezlQHCI0uYx4TtD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.884 [XNIO-1 task-1] cjHsoezlQHCI0uYx4TtD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.885 [XNIO-1 task-1] cjHsoezlQHCI0uYx4TtD1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.902 [XNIO-1 task-1] HhMXQN1KR969w89TkulBng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3af21d7e +19:00:43.902 [XNIO-1 task-1] HhMXQN1KR969w89TkulBng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.902 [XNIO-1 task-1] HhMXQN1KR969w89TkulBng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.902 [XNIO-1 task-1] HhMXQN1KR969w89TkulBng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3af21d7e +19:00:43.910 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:22024862-b467-4746-8657-a778533e064a +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + ... 14 more + + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +19:00:43.915 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bbde4132 +19:00:43.916 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.916 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.916 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:43.916 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bbde4132 +19:00:43.917 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"50c21897-4823-4ce9-826e-1c367da7e893","newPassword":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPasswordConfirm":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba"}, {"password":"50c21897-4823-4ce9-826e-1c367da7e893","newPassword":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPasswordConfirm":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba"}, requestBody) +19:00:43.917 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"50c21897-4823-4ce9-826e-1c367da7e893","newPassword":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPasswordConfirm":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba"}, {"password":"50c21897-4823-4ce9-826e-1c367da7e893","newPassword":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPasswordConfirm":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba"}, requestBody) +19:00:43.917 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG com.networknt.schema.FormatValidator debug - validate( "0da79c9f-bff0-4f70-83b2-2e117bfc9eba", {"password":"50c21897-4823-4ce9-826e-1c367da7e893","newPassword":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPasswordConfirm":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba"}, requestBody.newPasswordConfirm) +19:00:43.917 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG com.networknt.schema.FormatValidator debug - validate( "50c21897-4823-4ce9-826e-1c367da7e893", {"password":"50c21897-4823-4ce9-826e-1c367da7e893","newPassword":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPasswordConfirm":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba"}, requestBody.password) +19:00:43.917 [XNIO-1 task-1] iMHwS3d6SUuPry20UYeC6A DEBUG com.networknt.schema.FormatValidator debug - validate( "0da79c9f-bff0-4f70-83b2-2e117bfc9eba", {"password":"50c21897-4823-4ce9-826e-1c367da7e893","newPassword":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPasswordConfirm":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba"}, requestBody.newPassword) +19:00:43.936 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a43dd676-cd79-45c9-924e-d6c66dbc76c1 +19:00:43.939 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbde4132 +19:00:43.951 [XNIO-1 task-1] nQZ_A36JSTW-mkqK9-XkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/43eae223 +19:00:43.951 [XNIO-1 task-1] nQZ_A36JSTW-mkqK9-XkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.951 [XNIO-1 task-1] nQZ_A36JSTW-mkqK9-XkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.952 [XNIO-1 task-1] nQZ_A36JSTW-mkqK9-XkMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/43eae223 +19:00:43.954 [XNIO-1 task-1] nQZ_A36JSTW-mkqK9-XkMw DEBUG com.networknt.schema.TypeValidator debug - validate( "43eae223", "43eae223", userId) +19:00:43.964 [XNIO-1 task-1] BY0EcuPQTpWE8_8deHAdYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/023564c6 +19:00:43.964 [XNIO-1 task-1] BY0EcuPQTpWE8_8deHAdYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.964 [XNIO-1 task-1] BY0EcuPQTpWE8_8deHAdYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.965 [XNIO-1 task-1] BY0EcuPQTpWE8_8deHAdYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/023564c6 +19:00:43.965 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:023564c6 +19:00:43.975 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bbde4132 +19:00:43.975 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:43.975 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:43.975 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:43.976 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bbde4132 +19:00:43.977 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPassword":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPasswordConfirm":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45"}, {"password":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPassword":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPasswordConfirm":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45"}, requestBody) +19:00:43.977 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPassword":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPasswordConfirm":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45"}, {"password":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPassword":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPasswordConfirm":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45"}, requestBody) +19:00:43.977 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG com.networknt.schema.FormatValidator debug - validate( "9cbd8c39-ad34-417d-be3d-85c8b2e92d45", {"password":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPassword":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPasswordConfirm":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45"}, requestBody.newPasswordConfirm) +19:00:43.977 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG com.networknt.schema.FormatValidator debug - validate( "0da79c9f-bff0-4f70-83b2-2e117bfc9eba", {"password":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPassword":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPasswordConfirm":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45"}, requestBody.password) +19:00:43.977 [XNIO-1 task-1] 3RW35RHhQ36V-O8aAeYcRw DEBUG com.networknt.schema.FormatValidator debug - validate( "9cbd8c39-ad34-417d-be3d-85c8b2e92d45", {"password":"0da79c9f-bff0-4f70-83b2-2e117bfc9eba","newPassword":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPasswordConfirm":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45"}, requestBody.newPassword) +19:00:43.992 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbde4132 +19:00:44.001 [XNIO-1 task-1] VBcQiH9LR3mQInhgvPJb-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.001 [XNIO-1 task-1] VBcQiH9LR3mQInhgvPJb-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.002 [XNIO-1 task-1] VBcQiH9LR3mQInhgvPJb-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.002 [XNIO-1 task-1] VBcQiH9LR3mQInhgvPJb-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.027 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bbde4132 +19:00:44.028 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.028 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.028 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:44.029 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/bbde4132 +19:00:44.029 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPassword":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPasswordConfirm":"734165cb-cc06-419b-a60c-7f176dfae3b2"}, {"password":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPassword":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPasswordConfirm":"734165cb-cc06-419b-a60c-7f176dfae3b2"}, requestBody) +19:00:44.029 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPassword":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPasswordConfirm":"734165cb-cc06-419b-a60c-7f176dfae3b2"}, {"password":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPassword":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPasswordConfirm":"734165cb-cc06-419b-a60c-7f176dfae3b2"}, requestBody) +19:00:44.030 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG com.networknt.schema.FormatValidator debug - validate( "734165cb-cc06-419b-a60c-7f176dfae3b2", {"password":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPassword":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPasswordConfirm":"734165cb-cc06-419b-a60c-7f176dfae3b2"}, requestBody.newPasswordConfirm) +19:00:44.030 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG com.networknt.schema.FormatValidator debug - validate( "9cbd8c39-ad34-417d-be3d-85c8b2e92d45", {"password":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPassword":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPasswordConfirm":"734165cb-cc06-419b-a60c-7f176dfae3b2"}, requestBody.password) +19:00:44.030 [XNIO-1 task-1] wlqdFFWcT1GW7wuPS4jt6A DEBUG com.networknt.schema.FormatValidator debug - validate( "734165cb-cc06-419b-a60c-7f176dfae3b2", {"password":"9cbd8c39-ad34-417d-be3d-85c8b2e92d45","newPassword":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPasswordConfirm":"734165cb-cc06-419b-a60c-7f176dfae3b2"}, requestBody.newPassword) +19:00:44.040 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbde4132 +19:00:44.049 [XNIO-1 task-1] Btl3lOdoTLWyzNCEAmFkxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbde4132 +19:00:44.049 [XNIO-1 task-1] Btl3lOdoTLWyzNCEAmFkxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.049 [XNIO-1 task-1] Btl3lOdoTLWyzNCEAmFkxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.050 [XNIO-1 task-1] Btl3lOdoTLWyzNCEAmFkxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbde4132 +19:00:44.062 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbde4132, base path is set to: null +19:00:44.062 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.063 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:44.063 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:44.063 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbde4132, base path is set to: null +19:00:44.064 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bbde4132", "bbde4132", userId) +19:00:44.065 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPassword":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPasswordConfirm":"53a996db-07fa-44c4-bdbe-7650cce8fcf8"}, {"password":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPassword":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPasswordConfirm":"53a996db-07fa-44c4-bdbe-7650cce8fcf8"}, requestBody) +19:00:44.065 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "53a996db-07fa-44c4-bdbe-7650cce8fcf8", {"password":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPassword":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPasswordConfirm":"53a996db-07fa-44c4-bdbe-7650cce8fcf8"}, requestBody.newPasswordConfirm) +19:00:44.065 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "734165cb-cc06-419b-a60c-7f176dfae3b2", {"password":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPassword":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPasswordConfirm":"53a996db-07fa-44c4-bdbe-7650cce8fcf8"}, requestBody.password) +19:00:44.065 [XNIO-1 task-1] Lkoh6JLiS46B3M60HOkz_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "53a996db-07fa-44c4-bdbe-7650cce8fcf8", {"password":"734165cb-cc06-419b-a60c-7f176dfae3b2","newPassword":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPasswordConfirm":"53a996db-07fa-44c4-bdbe-7650cce8fcf8"}, requestBody.newPassword) +19:00:44.076 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbde4132 +19:00:44.088 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbde4132, base path is set to: null +19:00:44.088 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.088 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:44.088 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:44.089 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbde4132, base path is set to: null +19:00:44.089 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bbde4132", "bbde4132", userId) +19:00:44.090 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPassword":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPasswordConfirm":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7"}, {"password":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPassword":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPasswordConfirm":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7"}, requestBody) +19:00:44.090 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c5c09a2-44e2-4eb5-810c-0f856e38b3d7", {"password":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPassword":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPasswordConfirm":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7"}, requestBody.newPasswordConfirm) +19:00:44.090 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "53a996db-07fa-44c4-bdbe-7650cce8fcf8", {"password":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPassword":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPasswordConfirm":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7"}, requestBody.password) +19:00:44.090 [XNIO-1 task-1] w_HOZZYAQPK6uTB_FIhFCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c5c09a2-44e2-4eb5-810c-0f856e38b3d7", {"password":"53a996db-07fa-44c4-bdbe-7650cce8fcf8","newPassword":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPasswordConfirm":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7"}, requestBody.newPassword) +19:00:44.101 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbde4132 +19:00:44.109 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b800f27-2234-437e-8ded-ecd7f2eb0dc0 +19:00:44.111 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b800f27-2234-437e-8ded-ecd7f2eb0dc0 +19:00:44.113 [XNIO-1 task-1] tMd6y-UOTHK04mKbgX-hFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.114 [XNIO-1 task-1] tMd6y-UOTHK04mKbgX-hFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.114 [XNIO-1 task-1] tMd6y-UOTHK04mKbgX-hFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.120 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bbde4132 +19:00:44.175 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b800f27-2234-437e-8ded-ecd7f2eb0dc0 +19:00:44.178 [XNIO-1 task-1] op42tncUT8GZ1i2cvgNGHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.178 [XNIO-1 task-1] op42tncUT8GZ1i2cvgNGHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.178 [XNIO-1 task-1] op42tncUT8GZ1i2cvgNGHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.179 [XNIO-1 task-1] op42tncUT8GZ1i2cvgNGHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:44.191 [XNIO-1 task-1] Xom1UCSCSQ-nLWutIlNbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbde4132 +19:00:44.191 [XNIO-1 task-1] Xom1UCSCSQ-nLWutIlNbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.191 [XNIO-1 task-1] Xom1UCSCSQ-nLWutIlNbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.191 [XNIO-1 task-1] Xom1UCSCSQ-nLWutIlNbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbde4132 +19:00:44.198 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbde4132, base path is set to: null +19:00:44.198 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.198 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:44.198 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:44.199 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbde4132, base path is set to: null +19:00:44.199 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG com.networknt.schema.TypeValidator debug - validate( "bbde4132", "bbde4132", userId) +19:00:44.199 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPassword":"f0493b83-bcc4-4def-8749-b499c2954465","newPasswordConfirm":"f0493b83-bcc4-4def-8749-b499c2954465"}, {"password":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPassword":"f0493b83-bcc4-4def-8749-b499c2954465","newPasswordConfirm":"f0493b83-bcc4-4def-8749-b499c2954465"}, requestBody) +19:00:44.200 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG com.networknt.schema.TypeValidator debug - validate( "f0493b83-bcc4-4def-8749-b499c2954465", {"password":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPassword":"f0493b83-bcc4-4def-8749-b499c2954465","newPasswordConfirm":"f0493b83-bcc4-4def-8749-b499c2954465"}, requestBody.newPasswordConfirm) +19:00:44.200 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG com.networknt.schema.TypeValidator debug - validate( "5c5c09a2-44e2-4eb5-810c-0f856e38b3d7", {"password":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPassword":"f0493b83-bcc4-4def-8749-b499c2954465","newPasswordConfirm":"f0493b83-bcc4-4def-8749-b499c2954465"}, requestBody.password) +19:00:44.200 [XNIO-1 task-1] K9pv390mRO-DJjSYqLOe5w DEBUG com.networknt.schema.TypeValidator debug - validate( "f0493b83-bcc4-4def-8749-b499c2954465", {"password":"5c5c09a2-44e2-4eb5-810c-0f856e38b3d7","newPassword":"f0493b83-bcc4-4def-8749-b499c2954465","newPasswordConfirm":"f0493b83-bcc4-4def-8749-b499c2954465"}, requestBody.newPassword) +19:00:44.212 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bbde4132 +19:00:44.218 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:01b6cf09 +19:00:44.226 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:01b6cf09 +19:00:44.233 [XNIO-1 task-1] Qcul-tnbT8iSQSuVThYtOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbde4132 +19:00:44.233 [XNIO-1 task-1] Qcul-tnbT8iSQSuVThYtOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.233 [XNIO-1 task-1] Qcul-tnbT8iSQSuVThYtOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.237 [XNIO-1 task-1] Qcul-tnbT8iSQSuVThYtOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbde4132 +19:00:44.241 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:bbde4132 +19:00:44.251 [XNIO-1 task-1] be65a5TXRMiCXb-zqkpRRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.251 [XNIO-1 task-1] be65a5TXRMiCXb-zqkpRRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.252 [XNIO-1 task-1] be65a5TXRMiCXb-zqkpRRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.320 [XNIO-1 task-1] 4IFFw7uuTnWbRpIRnyv-8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.320 [XNIO-1 task-1] 4IFFw7uuTnWbRpIRnyv-8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.320 [XNIO-1 task-1] 4IFFw7uuTnWbRpIRnyv-8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.367 [XNIO-1 task-1] SUqCJFKGTMSXq6ieCH__Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.367 [XNIO-1 task-1] SUqCJFKGTMSXq6ieCH__Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.368 [XNIO-1 task-1] SUqCJFKGTMSXq6ieCH__Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.381 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2689db0e +19:00:44.394 [XNIO-1 task-1] olmHWejTSoiHYp3gEHTnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0120be67 +19:00:44.394 [XNIO-1 task-1] olmHWejTSoiHYp3gEHTnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.394 [XNIO-1 task-1] olmHWejTSoiHYp3gEHTnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.395 [XNIO-1 task-1] olmHWejTSoiHYp3gEHTnvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0120be67 +19:00:44.408 [XNIO-1 task-1] wTpTxmwBQZSmsQTgzgMIMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2754789a, base path is set to: null +19:00:44.409 [XNIO-1 task-1] wTpTxmwBQZSmsQTgzgMIMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.409 [XNIO-1 task-1] wTpTxmwBQZSmsQTgzgMIMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:44.409 [XNIO-1 task-1] wTpTxmwBQZSmsQTgzgMIMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2754789a, base path is set to: null +19:00:44.409 [XNIO-1 task-1] wTpTxmwBQZSmsQTgzgMIMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2754789a", "2754789a", userId) +19:00:44.481 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c337dd6 +19:00:44.481 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.482 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.482 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:44.482 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c337dd6 +19:00:44.483 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2f85f8e9-aa30-43e1-906e-5a7e8f342398","newPassword":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPasswordConfirm":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9"}, {"password":"2f85f8e9-aa30-43e1-906e-5a7e8f342398","newPassword":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPasswordConfirm":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9"}, requestBody) +19:00:44.483 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2f85f8e9-aa30-43e1-906e-5a7e8f342398","newPassword":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPasswordConfirm":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9"}, {"password":"2f85f8e9-aa30-43e1-906e-5a7e8f342398","newPassword":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPasswordConfirm":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9"}, requestBody) +19:00:44.483 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG com.networknt.schema.FormatValidator debug - validate( "0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9", {"password":"2f85f8e9-aa30-43e1-906e-5a7e8f342398","newPassword":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPasswordConfirm":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9"}, requestBody.newPasswordConfirm) +19:00:44.484 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG com.networknt.schema.FormatValidator debug - validate( "2f85f8e9-aa30-43e1-906e-5a7e8f342398", {"password":"2f85f8e9-aa30-43e1-906e-5a7e8f342398","newPassword":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPasswordConfirm":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9"}, requestBody.password) +19:00:44.484 [XNIO-1 task-1] lKXJzuIZS8WGHgP1-tmTIg DEBUG com.networknt.schema.FormatValidator debug - validate( "0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9", {"password":"2f85f8e9-aa30-43e1-906e-5a7e8f342398","newPassword":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPasswordConfirm":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9"}, requestBody.newPassword) +19:00:44.547 [XNIO-1 task-1] 09dGZdDuQs-5kFj8hFHxmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c337dd6 +19:00:44.547 [XNIO-1 task-1] 09dGZdDuQs-5kFj8hFHxmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.547 [XNIO-1 task-1] 09dGZdDuQs-5kFj8hFHxmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.548 [XNIO-1 task-1] 09dGZdDuQs-5kFj8hFHxmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c337dd6 +19:00:44.556 [XNIO-1 task-1] DgcTgo17Q9uhdSZXPWtUqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.556 [XNIO-1 task-1] DgcTgo17Q9uhdSZXPWtUqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.557 [XNIO-1 task-1] DgcTgo17Q9uhdSZXPWtUqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.557 [XNIO-1 task-1] DgcTgo17Q9uhdSZXPWtUqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.569 [XNIO-1 task-1] n6HYO-fhQfiMhqcJrTDQMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2c337dd6, base path is set to: null +19:00:44.569 [XNIO-1 task-1] n6HYO-fhQfiMhqcJrTDQMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.569 [XNIO-1 task-1] n6HYO-fhQfiMhqcJrTDQMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:44.570 [XNIO-1 task-1] n6HYO-fhQfiMhqcJrTDQMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2c337dd6, base path is set to: null +19:00:44.570 [XNIO-1 task-1] n6HYO-fhQfiMhqcJrTDQMw DEBUG com.networknt.schema.TypeValidator debug - validate( "2c337dd6", "2c337dd6", userId) +19:00:44.582 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c337dd6 +19:00:44.582 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.582 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.582 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:44.583 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/2c337dd6 +19:00:44.583 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPassword":"c8d21ef3-f464-4777-a702-8d338303170e","newPasswordConfirm":"c8d21ef3-f464-4777-a702-8d338303170e"}, {"password":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPassword":"c8d21ef3-f464-4777-a702-8d338303170e","newPasswordConfirm":"c8d21ef3-f464-4777-a702-8d338303170e"}, requestBody) +19:00:44.584 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPassword":"c8d21ef3-f464-4777-a702-8d338303170e","newPasswordConfirm":"c8d21ef3-f464-4777-a702-8d338303170e"}, {"password":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPassword":"c8d21ef3-f464-4777-a702-8d338303170e","newPasswordConfirm":"c8d21ef3-f464-4777-a702-8d338303170e"}, requestBody) +19:00:44.584 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c8d21ef3-f464-4777-a702-8d338303170e", {"password":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPassword":"c8d21ef3-f464-4777-a702-8d338303170e","newPasswordConfirm":"c8d21ef3-f464-4777-a702-8d338303170e"}, requestBody.newPasswordConfirm) +19:00:44.584 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9", {"password":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPassword":"c8d21ef3-f464-4777-a702-8d338303170e","newPasswordConfirm":"c8d21ef3-f464-4777-a702-8d338303170e"}, requestBody.password) +19:00:44.584 [XNIO-1 task-1] urbmJpPrRPa2TU-DdCYAWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c8d21ef3-f464-4777-a702-8d338303170e", {"password":"0c6d5a5e-5b75-4be1-9e67-c8341f37d3e9","newPassword":"c8d21ef3-f464-4777-a702-8d338303170e","newPasswordConfirm":"c8d21ef3-f464-4777-a702-8d338303170e"}, requestBody.newPassword) +19:00:44.614 [XNIO-1 task-1] PWFDqcItRui1mN0iHtj4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c337dd6 +19:00:44.614 [XNIO-1 task-1] PWFDqcItRui1mN0iHtj4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.614 [XNIO-1 task-1] PWFDqcItRui1mN0iHtj4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.615 [XNIO-1 task-1] PWFDqcItRui1mN0iHtj4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2c337dd6 +19:00:44.639 [XNIO-1 task-1] K_74JU4aQheHuR11Xc23wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.639 [XNIO-1 task-1] K_74JU4aQheHuR11Xc23wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.640 [XNIO-1 task-1] K_74JU4aQheHuR11Xc23wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.640 [XNIO-1 task-1] K_74JU4aQheHuR11Xc23wg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.653 [XNIO-1 task-1] r1hC--7JREaLJhTIP6sGnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.653 [XNIO-1 task-1] r1hC--7JREaLJhTIP6sGnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.654 [XNIO-1 task-1] r1hC--7JREaLJhTIP6sGnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.654 [XNIO-1 task-1] r1hC--7JREaLJhTIP6sGnw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.667 [XNIO-1 task-1] x-0H4np8QhuTrgZ0GnwihA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.667 [XNIO-1 task-1] x-0H4np8QhuTrgZ0GnwihA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.667 [XNIO-1 task-1] x-0H4np8QhuTrgZ0GnwihA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.753 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8fc95d40 +19:00:44.757 [XNIO-1 task-1] LnYc_wY5RHCcDQ1qzwtTrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.757 [XNIO-1 task-1] LnYc_wY5RHCcDQ1qzwtTrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.758 [XNIO-1 task-1] LnYc_wY5RHCcDQ1qzwtTrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.770 [XNIO-1 task-1] IkIGbkJhSOCHqothwu2eFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eda0dca6, base path is set to: null +19:00:44.771 [XNIO-1 task-1] IkIGbkJhSOCHqothwu2eFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.771 [XNIO-1 task-1] IkIGbkJhSOCHqothwu2eFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:44.771 [XNIO-1 task-1] IkIGbkJhSOCHqothwu2eFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/eda0dca6, base path is set to: null +19:00:44.771 [XNIO-1 task-1] IkIGbkJhSOCHqothwu2eFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eda0dca6", "eda0dca6", userId) +19:00:44.781 [XNIO-1 task-1] lReySqZgQ_ex9V87V0vbzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.781 [XNIO-1 task-1] lReySqZgQ_ex9V87V0vbzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.782 [XNIO-1 task-1] lReySqZgQ_ex9V87V0vbzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.796 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:644c4fa7 +19:00:44.812 [XNIO-1 task-1] b8ytcnZuTkKrQhVwJO4PxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.812 [XNIO-1 task-1] b8ytcnZuTkKrQhVwJO4PxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.812 [XNIO-1 task-1] b8ytcnZuTkKrQhVwJO4PxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.813 [XNIO-1 task-1] b8ytcnZuTkKrQhVwJO4PxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:44.818 [XNIO-1 task-1] h6KuWmFsTQO3Tk4mYbKi6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/644c4fa7, base path is set to: null +19:00:44.818 [XNIO-1 task-1] h6KuWmFsTQO3Tk4mYbKi6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.818 [XNIO-1 task-1] h6KuWmFsTQO3Tk4mYbKi6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:44.819 [XNIO-1 task-1] h6KuWmFsTQO3Tk4mYbKi6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/644c4fa7, base path is set to: null +19:00:44.819 [XNIO-1 task-1] h6KuWmFsTQO3Tk4mYbKi6A DEBUG com.networknt.schema.TypeValidator debug - validate( "644c4fa7", "644c4fa7", userId) +19:00:44.823 [XNIO-1 task-1] ECLfOMdcQKyBNTog3Ydz_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/644c4fa7 +19:00:44.824 [XNIO-1 task-1] ECLfOMdcQKyBNTog3Ydz_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.824 [XNIO-1 task-1] ECLfOMdcQKyBNTog3Ydz_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.824 [XNIO-1 task-1] ECLfOMdcQKyBNTog3Ydz_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/644c4fa7 +19:00:44.825 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:644c4fa7 +19:00:44.833 [XNIO-1 task-1] vcdX4A5IQCqa35pUamSTMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.833 [XNIO-1 task-1] vcdX4A5IQCqa35pUamSTMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.834 [XNIO-1 task-1] vcdX4A5IQCqa35pUamSTMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.859 [XNIO-1 task-1] lvc8dxInQYOK7K6d60goag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.860 [XNIO-1 task-1] lvc8dxInQYOK7K6d60goag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +Jun 28, 2024 7:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:44.860 [XNIO-1 task-1] lvc8dxInQYOK7K6d60goag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.861 [XNIO-1 task-1] lvc8dxInQYOK7K6d60goag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +19:00:44.867 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +19:00:44.871 [XNIO-1 task-1] Lg6ivENnS3Oz0FaYt9KG2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:44.873 [XNIO-1 task-1] Lg6ivENnS3Oz0FaYt9KG2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:44.889 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e7631f65 +19:00:44.893 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e7631f65 +19:00:44.903 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/78d63263 +19:00:44.904 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.904 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:44.904 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:44.904 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/78d63263 +19:00:44.905 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"89818165-8708-4f85-8887-11cc9c03b18d","newPassword":"d9689d51-9077-4a2b-9bc8-17cc79238897","newPasswordConfirm":"d9689d51-9077-4a2b-9bc8-17cc79238897"}, {"password":"89818165-8708-4f85-8887-11cc9c03b18d","newPassword":"d9689d51-9077-4a2b-9bc8-17cc79238897","newPasswordConfirm":"d9689d51-9077-4a2b-9bc8-17cc79238897"}, requestBody) +19:00:44.905 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"89818165-8708-4f85-8887-11cc9c03b18d","newPassword":"d9689d51-9077-4a2b-9bc8-17cc79238897","newPasswordConfirm":"d9689d51-9077-4a2b-9bc8-17cc79238897"}, {"password":"89818165-8708-4f85-8887-11cc9c03b18d","newPassword":"d9689d51-9077-4a2b-9bc8-17cc79238897","newPasswordConfirm":"d9689d51-9077-4a2b-9bc8-17cc79238897"}, requestBody) +19:00:44.905 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG com.networknt.schema.FormatValidator debug - validate( "d9689d51-9077-4a2b-9bc8-17cc79238897", {"password":"89818165-8708-4f85-8887-11cc9c03b18d","newPassword":"d9689d51-9077-4a2b-9bc8-17cc79238897","newPasswordConfirm":"d9689d51-9077-4a2b-9bc8-17cc79238897"}, requestBody.newPasswordConfirm) +19:00:44.905 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG com.networknt.schema.FormatValidator debug - validate( "89818165-8708-4f85-8887-11cc9c03b18d", {"password":"89818165-8708-4f85-8887-11cc9c03b18d","newPassword":"d9689d51-9077-4a2b-9bc8-17cc79238897","newPasswordConfirm":"d9689d51-9077-4a2b-9bc8-17cc79238897"}, requestBody.password) +19:00:44.905 [XNIO-1 task-1] UTdgPfjGTT6B_dohYLFdLg DEBUG com.networknt.schema.FormatValidator debug - validate( "d9689d51-9077-4a2b-9bc8-17cc79238897", {"password":"89818165-8708-4f85-8887-11cc9c03b18d","newPassword":"d9689d51-9077-4a2b-9bc8-17cc79238897","newPasswordConfirm":"d9689d51-9077-4a2b-9bc8-17cc79238897"}, requestBody.newPassword) +19:00:44.939 [XNIO-1 task-1] GLTuQIIgR6iMC05vmzAbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.939 [XNIO-1 task-1] GLTuQIIgR6iMC05vmzAbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.939 [XNIO-1 task-1] GLTuQIIgR6iMC05vmzAbAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.969 [XNIO-1 task-1] KGDWeVTpSe2rdOikWmG16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.969 [XNIO-1 task-1] KGDWeVTpSe2rdOikWmG16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.969 [XNIO-1 task-1] KGDWeVTpSe2rdOikWmG16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.997 [XNIO-1 task-1] Kurl-4OrQ1Sg1fzGUMpMmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.997 [XNIO-1 task-1] Kurl-4OrQ1Sg1fzGUMpMmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:44.997 [XNIO-1 task-1] Kurl-4OrQ1Sg1fzGUMpMmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.019 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d3883733-feb4-4f2e-a9e9-724bd1213b32 +19:00:45.035 [XNIO-1 task-1] RjR6_WHNR3a9tJ98JWgj1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e7631f65 +19:00:45.035 [XNIO-1 task-1] RjR6_WHNR3a9tJ98JWgj1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.035 [XNIO-1 task-1] RjR6_WHNR3a9tJ98JWgj1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.036 [XNIO-1 task-1] RjR6_WHNR3a9tJ98JWgj1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e7631f65 +19:00:45.041 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e7631f65, base path is set to: null +19:00:45.041 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.041 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.041 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:45.042 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e7631f65, base path is set to: null +19:00:45.042 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG com.networknt.schema.TypeValidator debug - validate( "e7631f65", "e7631f65", userId) +19:00:45.043 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8187af88-0c18-441b-b2a9-e0d811115668","newPassword":"b73237bf-6dd8-452d-af82-adeedb057a82","newPasswordConfirm":"b73237bf-6dd8-452d-af82-adeedb057a82"}, {"password":"8187af88-0c18-441b-b2a9-e0d811115668","newPassword":"b73237bf-6dd8-452d-af82-adeedb057a82","newPasswordConfirm":"b73237bf-6dd8-452d-af82-adeedb057a82"}, requestBody) +19:00:45.043 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG com.networknt.schema.TypeValidator debug - validate( "b73237bf-6dd8-452d-af82-adeedb057a82", {"password":"8187af88-0c18-441b-b2a9-e0d811115668","newPassword":"b73237bf-6dd8-452d-af82-adeedb057a82","newPasswordConfirm":"b73237bf-6dd8-452d-af82-adeedb057a82"}, requestBody.newPasswordConfirm) +19:00:45.043 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG com.networknt.schema.TypeValidator debug - validate( "8187af88-0c18-441b-b2a9-e0d811115668", {"password":"8187af88-0c18-441b-b2a9-e0d811115668","newPassword":"b73237bf-6dd8-452d-af82-adeedb057a82","newPasswordConfirm":"b73237bf-6dd8-452d-af82-adeedb057a82"}, requestBody.password) +19:00:45.043 [XNIO-1 task-1] CaCkIUgqT4exik0W6uc6rw DEBUG com.networknt.schema.TypeValidator debug - validate( "b73237bf-6dd8-452d-af82-adeedb057a82", {"password":"8187af88-0c18-441b-b2a9-e0d811115668","newPassword":"b73237bf-6dd8-452d-af82-adeedb057a82","newPasswordConfirm":"b73237bf-6dd8-452d-af82-adeedb057a82"}, requestBody.newPassword) +19:00:45.056 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e7631f65 +19:00:45.064 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:09e716a7-9809-43b0-9b1f-2c3c6af3fcfd +19:00:45.068 [XNIO-1 task-1] OIjCsIHhTm-dmycRaFdk4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.070 [XNIO-1 task-1] OIjCsIHhTm-dmycRaFdk4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.070 [XNIO-1 task-1] OIjCsIHhTm-dmycRaFdk4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.070 [XNIO-1 task-1] OIjCsIHhTm-dmycRaFdk4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.078 [XNIO-1 task-1] -14wKYJBTlmBOKIrHfUf7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.078 [XNIO-1 task-1] -14wKYJBTlmBOKIrHfUf7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.078 [XNIO-1 task-1] -14wKYJBTlmBOKIrHfUf7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.079 [XNIO-1 task-1] -14wKYJBTlmBOKIrHfUf7w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.091 [XNIO-1 task-1] cCpnSR9PT3uLYL48nbH6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.092 [XNIO-1 task-1] cCpnSR9PT3uLYL48nbH6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.093 [XNIO-1 task-1] cCpnSR9PT3uLYL48nbH6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.094 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e7631f65 +19:00:45.104 [XNIO-1 task-1] qnXdpqTZSGW-zjdX3HteSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbc24c5c +19:00:45.104 [XNIO-1 task-1] qnXdpqTZSGW-zjdX3HteSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.104 [XNIO-1 task-1] qnXdpqTZSGW-zjdX3HteSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.105 [XNIO-1 task-1] qnXdpqTZSGW-zjdX3HteSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbc24c5c +19:00:45.105 [XNIO-1 task-1] qnXdpqTZSGW-zjdX3HteSg DEBUG com.networknt.schema.TypeValidator debug - validate( "bbc24c5c", "bbc24c5c", userId) +19:00:45.110 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:85fca654 +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +19:00:45.125 [XNIO-1 task-1] vl_sx2XzQ0CTy_B3xtHp_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e7631f65, base path is set to: null +19:00:45.147 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9463e28b +19:00:45.149 [XNIO-1 task-1] vl_sx2XzQ0CTy_B3xtHp_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b73237bf-6dd8-452d-af82-adeedb057a82","newPassword":"c356b487-851e-4fb8-bc59-d42f4b25f0de","newPasswordConfirm":"c356b487-851e-4fb8-bc59-d42f4b25f0de"}, {"password":"b73237bf-6dd8-452d-af82-adeedb057a82","newPassword":"c356b487-851e-4fb8-bc59-d42f4b25f0de","newPasswordConfirm":"c356b487-851e-4fb8-bc59-d42f4b25f0de"}, requestBody) +19:00:45.149 [XNIO-1 task-1] vl_sx2XzQ0CTy_B3xtHp_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b73237bf-6dd8-452d-af82-adeedb057a82","newPassword":"c356b487-851e-4fb8-bc59-d42f4b25f0de","newPasswordConfirm":"c356b487-851e-4fb8-bc59-d42f4b25f0de"}, {"password":"b73237bf-6dd8-452d-af82-adeedb057a82","newPassword":"c356b487-851e-4fb8-bc59-d42f4b25f0de","newPasswordConfirm":"c356b487-851e-4fb8-bc59-d42f4b25f0de"}, requestBody) +19:00:45.149 [XNIO-1 task-1] vl_sx2XzQ0CTy_B3xtHp_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "c356b487-851e-4fb8-bc59-d42f4b25f0de", {"password":"b73237bf-6dd8-452d-af82-adeedb057a82","newPassword":"c356b487-851e-4fb8-bc59-d42f4b25f0de","newPasswordConfirm":"c356b487-851e-4fb8-bc59-d42f4b25f0de"}, requestBody.newPasswordConfirm) +19:00:45.149 [XNIO-1 task-1] vl_sx2XzQ0CTy_B3xtHp_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "b73237bf-6dd8-452d-af82-adeedb057a82", {"password":"b73237bf-6dd8-452d-af82-adeedb057a82","newPassword":"c356b487-851e-4fb8-bc59-d42f4b25f0de","newPasswordConfirm":"c356b487-851e-4fb8-bc59-d42f4b25f0de"}, requestBody.password) +19:00:45.149 [XNIO-1 task-1] vl_sx2XzQ0CTy_B3xtHp_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "c356b487-851e-4fb8-bc59-d42f4b25f0de", {"password":"b73237bf-6dd8-452d-af82-adeedb057a82","newPassword":"c356b487-851e-4fb8-bc59-d42f4b25f0de","newPasswordConfirm":"c356b487-851e-4fb8-bc59-d42f4b25f0de"}, requestBody.newPassword) +19:00:45.167 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e7631f65 +19:00:45.180 [XNIO-1 task-1] A17K-hpLRM6jOZJd_6d4ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.180 [XNIO-1 task-1] A17K-hpLRM6jOZJd_6d4ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.182 [XNIO-1 task-1] A17K-hpLRM6jOZJd_6d4ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.182 [XNIO-1 task-1] A17K-hpLRM6jOZJd_6d4ng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.192 [XNIO-1 task-1] 7kOho0S3RsKgEBZ04ESOBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.192 [XNIO-1 task-1] 7kOho0S3RsKgEBZ04ESOBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.194 [XNIO-1 task-1] 7kOho0S3RsKgEBZ04ESOBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.215 [XNIO-1 task-1] 8Db_fFsISUKsdFjQBYozzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.215 [XNIO-1 task-1] 8Db_fFsISUKsdFjQBYozzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.218 [XNIO-1 task-1] 8Db_fFsISUKsdFjQBYozzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.230 [XNIO-1 task-1] 8-S4HeuyQG6baimYksdJYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.230 [XNIO-1 task-1] 8-S4HeuyQG6baimYksdJYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.230 [XNIO-1 task-1] 8-S4HeuyQG6baimYksdJYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.230 [XNIO-1 task-1] 8-S4HeuyQG6baimYksdJYA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.248 [XNIO-1 task-1] JmnmnpVrRTCXYVPAkd5Big DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.248 [XNIO-1 task-1] JmnmnpVrRTCXYVPAkd5Big DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.248 [XNIO-1 task-1] JmnmnpVrRTCXYVPAkd5Big DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.266 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ece36d98 +19:00:45.268 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ece36d98 +19:00:45.280 [XNIO-1 task-1] 4i6sWn8aQgC2HksokHJbow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7bebc6e8 +19:00:45.280 [XNIO-1 task-1] 4i6sWn8aQgC2HksokHJbow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.280 [XNIO-1 task-1] 4i6sWn8aQgC2HksokHJbow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.280 [XNIO-1 task-1] 4i6sWn8aQgC2HksokHJbow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7bebc6e8 +19:00:45.293 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbc24c5c, base path is set to: null +19:00:45.293 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.293 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.293 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:45.293 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbc24c5c, base path is set to: null +19:00:45.294 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG com.networknt.schema.TypeValidator debug - validate( "bbc24c5c", "bbc24c5c", userId) +19:00:45.294 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ba8c5e6d-5890-40c2-b304-00373eed0cbf","newPassword":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPasswordConfirm":"4f249b76-9786-4bb2-a5ef-0dcadd213a33"}, {"password":"ba8c5e6d-5890-40c2-b304-00373eed0cbf","newPassword":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPasswordConfirm":"4f249b76-9786-4bb2-a5ef-0dcadd213a33"}, requestBody) +19:00:45.294 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG com.networknt.schema.TypeValidator debug - validate( "4f249b76-9786-4bb2-a5ef-0dcadd213a33", {"password":"ba8c5e6d-5890-40c2-b304-00373eed0cbf","newPassword":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPasswordConfirm":"4f249b76-9786-4bb2-a5ef-0dcadd213a33"}, requestBody.newPasswordConfirm) +19:00:45.294 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG com.networknt.schema.TypeValidator debug - validate( "ba8c5e6d-5890-40c2-b304-00373eed0cbf", {"password":"ba8c5e6d-5890-40c2-b304-00373eed0cbf","newPassword":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPasswordConfirm":"4f249b76-9786-4bb2-a5ef-0dcadd213a33"}, requestBody.password) +19:00:45.294 [XNIO-1 task-1] WZFtW4e8Tz-cOhdXFzu59w DEBUG com.networknt.schema.TypeValidator debug - validate( "4f249b76-9786-4bb2-a5ef-0dcadd213a33", {"password":"ba8c5e6d-5890-40c2-b304-00373eed0cbf","newPassword":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPasswordConfirm":"4f249b76-9786-4bb2-a5ef-0dcadd213a33"}, requestBody.newPassword) +19:00:45.326 [XNIO-1 task-1] u19fe8b4QumiaqHXQr1mcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.326 [XNIO-1 task-1] u19fe8b4QumiaqHXQr1mcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.327 [XNIO-1 task-1] u19fe8b4QumiaqHXQr1mcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.335 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:85fca654 +19:00:45.337 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8094ca3b +19:00:45.338 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:85fca654 +19:00:45.350 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ece36d98 +19:00:45.350 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.350 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.350 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:45.351 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ece36d98 +19:00:45.351 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bc198459-9b94-4224-9207-4c5c81491421","newPassword":"14b56402-f532-4452-aa8f-2393acde5e43","newPasswordConfirm":"14b56402-f532-4452-aa8f-2393acde5e43"}, {"password":"bc198459-9b94-4224-9207-4c5c81491421","newPassword":"14b56402-f532-4452-aa8f-2393acde5e43","newPasswordConfirm":"14b56402-f532-4452-aa8f-2393acde5e43"}, requestBody) +19:00:45.351 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bc198459-9b94-4224-9207-4c5c81491421","newPassword":"14b56402-f532-4452-aa8f-2393acde5e43","newPasswordConfirm":"14b56402-f532-4452-aa8f-2393acde5e43"}, {"password":"bc198459-9b94-4224-9207-4c5c81491421","newPassword":"14b56402-f532-4452-aa8f-2393acde5e43","newPasswordConfirm":"14b56402-f532-4452-aa8f-2393acde5e43"}, requestBody) +19:00:45.351 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG com.networknt.schema.FormatValidator debug - validate( "14b56402-f532-4452-aa8f-2393acde5e43", {"password":"bc198459-9b94-4224-9207-4c5c81491421","newPassword":"14b56402-f532-4452-aa8f-2393acde5e43","newPasswordConfirm":"14b56402-f532-4452-aa8f-2393acde5e43"}, requestBody.newPasswordConfirm) +19:00:45.351 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bc198459-9b94-4224-9207-4c5c81491421", {"password":"bc198459-9b94-4224-9207-4c5c81491421","newPassword":"14b56402-f532-4452-aa8f-2393acde5e43","newPasswordConfirm":"14b56402-f532-4452-aa8f-2393acde5e43"}, requestBody.password) +19:00:45.351 [XNIO-1 task-1] 7D8Dv_tHR1SOQtBR9Lr7OQ DEBUG com.networknt.schema.FormatValidator debug - validate( "14b56402-f532-4452-aa8f-2393acde5e43", {"password":"bc198459-9b94-4224-9207-4c5c81491421","newPassword":"14b56402-f532-4452-aa8f-2393acde5e43","newPasswordConfirm":"14b56402-f532-4452-aa8f-2393acde5e43"}, requestBody.newPassword) +19:00:45.362 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ece36d98 +19:00:45.376 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbc24c5c, base path is set to: null +19:00:45.377 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.377 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.377 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:45.378 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbc24c5c, base path is set to: null +19:00:45.378 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bbc24c5c", "bbc24c5c", userId) +19:00:45.378 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPassword":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPasswordConfirm":"56c25080-6b54-4932-bd38-c87ef954cb7a"}, {"password":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPassword":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPasswordConfirm":"56c25080-6b54-4932-bd38-c87ef954cb7a"}, requestBody) +19:00:45.379 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "56c25080-6b54-4932-bd38-c87ef954cb7a", {"password":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPassword":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPasswordConfirm":"56c25080-6b54-4932-bd38-c87ef954cb7a"}, requestBody.newPasswordConfirm) +19:00:45.379 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4f249b76-9786-4bb2-a5ef-0dcadd213a33", {"password":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPassword":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPasswordConfirm":"56c25080-6b54-4932-bd38-c87ef954cb7a"}, requestBody.password) +19:00:45.379 [XNIO-1 task-1] fTlBPHTSShW2FjC6nSBfQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "56c25080-6b54-4932-bd38-c87ef954cb7a", {"password":"4f249b76-9786-4bb2-a5ef-0dcadd213a33","newPassword":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPasswordConfirm":"56c25080-6b54-4932-bd38-c87ef954cb7a"}, requestBody.newPassword) +19:00:45.411 [XNIO-1 task-1] gILQKOJlTl2rj3nBjiXcJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8094ca3b, base path is set to: null +19:00:45.411 [XNIO-1 task-1] gILQKOJlTl2rj3nBjiXcJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.411 [XNIO-1 task-1] gILQKOJlTl2rj3nBjiXcJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.411 [XNIO-1 task-1] gILQKOJlTl2rj3nBjiXcJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8094ca3b, base path is set to: null +19:00:45.412 [XNIO-1 task-1] gILQKOJlTl2rj3nBjiXcJg DEBUG com.networknt.schema.TypeValidator debug - validate( "8094ca3b", "8094ca3b", userId) +19:00:45.417 [XNIO-1 task-1] MB2OAktrTECLi71x0-1hTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/78d63263, base path is set to: null +19:00:45.417 [XNIO-1 task-1] MB2OAktrTECLi71x0-1hTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.418 [XNIO-1 task-1] MB2OAktrTECLi71x0-1hTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.419 [XNIO-1 task-1] MB2OAktrTECLi71x0-1hTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/78d63263, base path is set to: null +19:00:45.420 [XNIO-1 task-1] MB2OAktrTECLi71x0-1hTA DEBUG com.networknt.schema.TypeValidator debug - validate( "78d63263", "78d63263", userId) +19:00:45.430 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e4dd25bf +19:00:45.430 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.430 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.430 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:45.431 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e4dd25bf +19:00:45.432 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8c1eecc6-d829-489e-9f73-d8c53768cbf0","newPassword":"062c463e-4be6-46c1-b21a-d3665ecf4c95","newPasswordConfirm":"062c463e-4be6-46c1-b21a-d3665ecf4c95"}, {"password":"8c1eecc6-d829-489e-9f73-d8c53768cbf0","newPassword":"062c463e-4be6-46c1-b21a-d3665ecf4c95","newPasswordConfirm":"062c463e-4be6-46c1-b21a-d3665ecf4c95"}, requestBody) +19:00:45.432 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8c1eecc6-d829-489e-9f73-d8c53768cbf0","newPassword":"062c463e-4be6-46c1-b21a-d3665ecf4c95","newPasswordConfirm":"062c463e-4be6-46c1-b21a-d3665ecf4c95"}, {"password":"8c1eecc6-d829-489e-9f73-d8c53768cbf0","newPassword":"062c463e-4be6-46c1-b21a-d3665ecf4c95","newPasswordConfirm":"062c463e-4be6-46c1-b21a-d3665ecf4c95"}, requestBody) +19:00:45.432 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG com.networknt.schema.FormatValidator debug - validate( "062c463e-4be6-46c1-b21a-d3665ecf4c95", {"password":"8c1eecc6-d829-489e-9f73-d8c53768cbf0","newPassword":"062c463e-4be6-46c1-b21a-d3665ecf4c95","newPasswordConfirm":"062c463e-4be6-46c1-b21a-d3665ecf4c95"}, requestBody.newPasswordConfirm) +19:00:45.432 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG com.networknt.schema.FormatValidator debug - validate( "8c1eecc6-d829-489e-9f73-d8c53768cbf0", {"password":"8c1eecc6-d829-489e-9f73-d8c53768cbf0","newPassword":"062c463e-4be6-46c1-b21a-d3665ecf4c95","newPasswordConfirm":"062c463e-4be6-46c1-b21a-d3665ecf4c95"}, requestBody.password) +19:00:45.432 [XNIO-1 task-1] HUOVHeSUQquhGEqCb-zSzA DEBUG com.networknt.schema.FormatValidator debug - validate( "062c463e-4be6-46c1-b21a-d3665ecf4c95", {"password":"8c1eecc6-d829-489e-9f73-d8c53768cbf0","newPassword":"062c463e-4be6-46c1-b21a-d3665ecf4c95","newPasswordConfirm":"062c463e-4be6-46c1-b21a-d3665ecf4c95"}, requestBody.newPassword) +19:00:45.460 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:dec165f3-04fd-4531-8054-8e11932fe149 +19:00:45.467 [XNIO-1 task-1] 4HvW1TW9SIuzawWRg26FVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.468 [XNIO-1 task-1] 4HvW1TW9SIuzawWRg26FVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.468 [XNIO-1 task-1] 4HvW1TW9SIuzawWRg26FVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.478 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:361343cb-476f-436d-950f-177753b44d52 +19:00:45.483 [XNIO-1 task-1] ORSY9EHjQ8qX9ft-7-lwVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.484 [XNIO-1 task-1] ORSY9EHjQ8qX9ft-7-lwVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.485 [XNIO-1 task-1] ORSY9EHjQ8qX9ft-7-lwVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.522 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:361343cb-476f-436d-950f-177753b44d52 +19:00:45.531 [XNIO-1 task-1] 2MeSXIxgQkm2T9Ceq_cb_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e7631f65 +19:00:45.531 [XNIO-1 task-1] 2MeSXIxgQkm2T9Ceq_cb_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.531 [XNIO-1 task-1] 2MeSXIxgQkm2T9Ceq_cb_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.531 [XNIO-1 task-1] 2MeSXIxgQkm2T9Ceq_cb_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e7631f65 +19:00:45.532 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e7631f65 +19:00:45.543 [XNIO-1 task-1] JzBn-C7zTKGxNGTSkvfXgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.543 [XNIO-1 task-1] JzBn-C7zTKGxNGTSkvfXgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.544 [XNIO-1 task-1] JzBn-C7zTKGxNGTSkvfXgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.547 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a1abc283-fb67-46c2-959b-b1b11e996401 +19:00:45.576 [XNIO-1 task-1] VPUt8YPfRA-in1Dy8hiRJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e4dd25bf, base path is set to: null +19:00:45.576 [XNIO-1 task-1] VPUt8YPfRA-in1Dy8hiRJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.576 [XNIO-1 task-1] VPUt8YPfRA-in1Dy8hiRJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.576 [XNIO-1 task-1] VPUt8YPfRA-in1Dy8hiRJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e4dd25bf, base path is set to: null +19:00:45.576 [XNIO-1 task-1] VPUt8YPfRA-in1Dy8hiRJg DEBUG com.networknt.schema.TypeValidator debug - validate( "e4dd25bf", "e4dd25bf", userId) +19:00:45.587 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ece36d98 +19:00:45.587 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.587 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.587 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:45.588 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ece36d98 +19:00:45.589 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"14b56402-f532-4452-aa8f-2393acde5e43","newPassword":"9e957a05-6077-4cee-b1fe-576180500005","newPasswordConfirm":"9e957a05-6077-4cee-b1fe-576180500005"}, {"password":"14b56402-f532-4452-aa8f-2393acde5e43","newPassword":"9e957a05-6077-4cee-b1fe-576180500005","newPasswordConfirm":"9e957a05-6077-4cee-b1fe-576180500005"}, requestBody) +19:00:45.589 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"14b56402-f532-4452-aa8f-2393acde5e43","newPassword":"9e957a05-6077-4cee-b1fe-576180500005","newPasswordConfirm":"9e957a05-6077-4cee-b1fe-576180500005"}, {"password":"14b56402-f532-4452-aa8f-2393acde5e43","newPassword":"9e957a05-6077-4cee-b1fe-576180500005","newPasswordConfirm":"9e957a05-6077-4cee-b1fe-576180500005"}, requestBody) +19:00:45.589 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG com.networknt.schema.FormatValidator debug - validate( "9e957a05-6077-4cee-b1fe-576180500005", {"password":"14b56402-f532-4452-aa8f-2393acde5e43","newPassword":"9e957a05-6077-4cee-b1fe-576180500005","newPasswordConfirm":"9e957a05-6077-4cee-b1fe-576180500005"}, requestBody.newPasswordConfirm) +19:00:45.589 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG com.networknt.schema.FormatValidator debug - validate( "14b56402-f532-4452-aa8f-2393acde5e43", {"password":"14b56402-f532-4452-aa8f-2393acde5e43","newPassword":"9e957a05-6077-4cee-b1fe-576180500005","newPasswordConfirm":"9e957a05-6077-4cee-b1fe-576180500005"}, requestBody.password) +19:00:45.589 [XNIO-1 task-1] Xw3wt84rSqO8bd4EkgEZrA DEBUG com.networknt.schema.FormatValidator debug - validate( "9e957a05-6077-4cee-b1fe-576180500005", {"password":"14b56402-f532-4452-aa8f-2393acde5e43","newPassword":"9e957a05-6077-4cee-b1fe-576180500005","newPasswordConfirm":"9e957a05-6077-4cee-b1fe-576180500005"}, requestBody.newPassword) +19:00:45.607 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ece36d98 +19:00:45.620 [XNIO-1 task-1] 9NLQFKCQTmuPvEDEQ1Y9ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8094ca3b +19:00:45.620 [XNIO-1 task-1] 9NLQFKCQTmuPvEDEQ1Y9ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.620 [XNIO-1 task-1] 9NLQFKCQTmuPvEDEQ1Y9ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.620 [XNIO-1 task-1] 9NLQFKCQTmuPvEDEQ1Y9ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8094ca3b +19:00:45.626 [XNIO-1 task-1] Rl3Z3MshSi6GASHxij8bUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ece36d98, base path is set to: null +19:00:45.626 [XNIO-1 task-1] Rl3Z3MshSi6GASHxij8bUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.626 [XNIO-1 task-1] Rl3Z3MshSi6GASHxij8bUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.627 [XNIO-1 task-1] Rl3Z3MshSi6GASHxij8bUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ece36d98, base path is set to: null +19:00:45.628 [XNIO-1 task-1] Rl3Z3MshSi6GASHxij8bUA DEBUG com.networknt.schema.TypeValidator debug - validate( "ece36d98", "ece36d98", userId) +19:00:45.635 [XNIO-1 task-1] F47zLPULRLeNDm-7Iyhi1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.636 [XNIO-1 task-1] F47zLPULRLeNDm-7Iyhi1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.636 [XNIO-1 task-1] F47zLPULRLeNDm-7Iyhi1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.636 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8094ca3b +19:00:45.646 [XNIO-1 task-1] Je-0c5h7Q56z22vSPc43hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.647 [XNIO-1 task-1] Je-0c5h7Q56z22vSPc43hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.647 [XNIO-1 task-1] Je-0c5h7Q56z22vSPc43hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.665 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a1abc283-fb67-46c2-959b-b1b11e996401 +19:00:45.704 [XNIO-1 task-1] oEJvPFvoSjKPez1Gm-bEjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.704 [XNIO-1 task-1] oEJvPFvoSjKPez1Gm-bEjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.705 [XNIO-1 task-1] oEJvPFvoSjKPez1Gm-bEjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.705 [XNIO-1 task-1] oEJvPFvoSjKPez1Gm-bEjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:45.717 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:22024862-b467-4746-8657-a778533e064a +19:00:45.724 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +19:00:45.758 [XNIO-1 task-1] iiNsSdVBRNOe-2jMmOsIJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/78d63263, base path is set to: null +19:00:45.758 [XNIO-1 task-1] iiNsSdVBRNOe-2jMmOsIJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/78d63263 + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +19:00:45.758 [XNIO-1 task-1] iiNsSdVBRNOe-2jMmOsIJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +19:00:45.758 [XNIO-1 task-1] iiNsSdVBRNOe-2jMmOsIJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.758 [XNIO-1 task-1] iiNsSdVBRNOe-2jMmOsIJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/78d63263, base path is set to: null + ... 14 more + +19:00:45.759 [XNIO-1 task-1] iiNsSdVBRNOe-2jMmOsIJw DEBUG com.networknt.schema.TypeValidator debug - validate( "78d63263", "78d63263", userId) +19:00:45.774 [XNIO-1 task-1] XMcPW8m6RtWE6xOyXq-Jng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a614529c +19:00:45.774 [XNIO-1 task-1] XMcPW8m6RtWE6xOyXq-Jng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.774 [XNIO-1 task-1] XMcPW8m6RtWE6xOyXq-Jng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.774 [XNIO-1 task-1] XMcPW8m6RtWE6xOyXq-Jng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a614529c +19:00:45.792 [XNIO-1 task-1] SL4jVDdMRKarDzSRxUN1bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/427a3000, base path is set to: null +19:00:45.792 [XNIO-1 task-1] SL4jVDdMRKarDzSRxUN1bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.792 [XNIO-1 task-1] SL4jVDdMRKarDzSRxUN1bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.793 [XNIO-1 task-1] SL4jVDdMRKarDzSRxUN1bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/427a3000, base path is set to: null +19:00:45.793 [XNIO-1 task-1] SL4jVDdMRKarDzSRxUN1bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "427a3000", "427a3000", userId) +19:00:45.811 [XNIO-1 task-1] WMoUCivoQAaQ4Mwm_gysjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8094ca3b +19:00:45.811 [XNIO-1 task-1] WMoUCivoQAaQ4Mwm_gysjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.811 [XNIO-1 task-1] WMoUCivoQAaQ4Mwm_gysjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.812 [XNIO-1 task-1] WMoUCivoQAaQ4Mwm_gysjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8094ca3b +19:00:45.819 [XNIO-1 task-1] hqg1W5BVTb2habHNm0-yQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.819 [XNIO-1 task-1] hqg1W5BVTb2habHNm0-yQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.819 [XNIO-1 task-1] hqg1W5BVTb2habHNm0-yQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.820 [XNIO-1 task-1] hqg1W5BVTb2habHNm0-yQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:45.820 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:19347f97-3a8b-49cc-923a-1329b70a8dac +19:00:45.829 [XNIO-1 task-1] Yi7kLCJ4StygARvoPMis0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8094ca3b, base path is set to: null +19:00:45.829 [XNIO-1 task-1] Yi7kLCJ4StygARvoPMis0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.830 [XNIO-1 task-1] Yi7kLCJ4StygARvoPMis0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.830 [XNIO-1 task-1] Yi7kLCJ4StygARvoPMis0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8094ca3b, base path is set to: null +19:00:45.830 [XNIO-1 task-1] Yi7kLCJ4StygARvoPMis0A DEBUG com.networknt.schema.TypeValidator debug - validate( "8094ca3b", "8094ca3b", userId) +19:00:45.844 [XNIO-1 task-1] mPv5-h16T0GrkkoA8rD_2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bbc24c5c, base path is set to: null +19:00:45.844 [XNIO-1 task-1] mPv5-h16T0GrkkoA8rD_2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.845 [XNIO-1 task-1] mPv5-h16T0GrkkoA8rD_2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.845 [XNIO-1 task-1] mPv5-h16T0GrkkoA8rD_2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bbc24c5c, base path is set to: null +19:00:45.845 [XNIO-1 task-1] mPv5-h16T0GrkkoA8rD_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "bbc24c5c", "bbc24c5c", userId) +19:00:45.855 [XNIO-1 task-1] ZnbiDuh4Q4KK5Q5lFrA5zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.855 [XNIO-1 task-1] ZnbiDuh4Q4KK5Q5lFrA5zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.855 [XNIO-1 task-1] ZnbiDuh4Q4KK5Q5lFrA5zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.879 [XNIO-1 task-1] 4dU2xBLRQi-bNfT6Th-A8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.880 [XNIO-1 task-1] 4dU2xBLRQi-bNfT6Th-A8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.881 [XNIO-1 task-1] 4dU2xBLRQi-bNfT6Th-A8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.902 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbc24c5c, base path is set to: null +19:00:45.903 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:45.903 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:45.903 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:45.903 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/bbc24c5c, base path is set to: null +19:00:45.903 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bbc24c5c", "bbc24c5c", userId) +19:00:45.904 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPassword":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125","newPasswordConfirm":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125"}, {"password":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPassword":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125","newPasswordConfirm":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125"}, requestBody) +19:00:45.904 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e4c9b940-8ce2-4d27-bb2e-5a61385ee125", {"password":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPassword":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125","newPasswordConfirm":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125"}, requestBody.newPasswordConfirm) +19:00:45.904 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "56c25080-6b54-4932-bd38-c87ef954cb7a", {"password":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPassword":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125","newPasswordConfirm":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125"}, requestBody.password) +19:00:45.904 [XNIO-1 task-1] sKj6ksWCRsuPirBHGttb6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e4c9b940-8ce2-4d27-bb2e-5a61385ee125", {"password":"56c25080-6b54-4932-bd38-c87ef954cb7a","newPassword":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125","newPasswordConfirm":"e4c9b940-8ce2-4d27-bb2e-5a61385ee125"}, requestBody.newPassword) +19:00:45.908 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:19347f97-3a8b-49cc-923a-1329b70a8dac +19:00:45.944 [XNIO-1 task-1] gBom2r6bSPSJHm6MjUcSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbc24c5c +19:00:45.944 [XNIO-1 task-1] gBom2r6bSPSJHm6MjUcSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:45.944 [XNIO-1 task-1] gBom2r6bSPSJHm6MjUcSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:45.945 [XNIO-1 task-1] gBom2r6bSPSJHm6MjUcSRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bbc24c5c +19:00:45.997 [XNIO-1 task-1] F1rifkEITzeQ3ZR6-YwxdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:45.997 [XNIO-1 task-1] F1rifkEITzeQ3ZR6-YwxdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.005 [XNIO-1 task-1] F1rifkEITzeQ3ZR6-YwxdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.006 [XNIO-1 task-1] F1rifkEITzeQ3ZR6-YwxdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.020 [XNIO-1 task-1] oX6QfNicT12NvP2RjJOxfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.020 [XNIO-1 task-1] oX6QfNicT12NvP2RjJOxfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.020 [XNIO-1 task-1] oX6QfNicT12NvP2RjJOxfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.021 [XNIO-1 task-1] oX6QfNicT12NvP2RjJOxfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.027 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:44932da1-0ade-4766-887d-e1016192ffa3 +19:00:46.043 [XNIO-1 task-1] 8LdYAg5nStSV4OML2XlzXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.044 [XNIO-1 task-1] 8LdYAg5nStSV4OML2XlzXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.047 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:44932da1-0ade-4766-887d-e1016192ffa3 +19:00:46.048 [XNIO-1 task-1] 8LdYAg5nStSV4OML2XlzXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.060 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:93bf50ec +19:00:46.080 [XNIO-1 task-1] G-xLcpywQFa4TcsXT9jlPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.084 [XNIO-1 task-1] G-xLcpywQFa4TcsXT9jlPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.084 [XNIO-1 task-1] G-xLcpywQFa4TcsXT9jlPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.085 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:93bf50ec +19:00:46.090 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1270440-b91b-492e-ac26-0e5e2f611bf0 +19:00:46.091 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1270440-b91b-492e-ac26-0e5e2f611bf0 +19:00:46.095 [XNIO-1 task-1] 7BEaTW5VRluhjz0SmNFnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93bf50ec +19:00:46.095 [XNIO-1 task-1] 7BEaTW5VRluhjz0SmNFnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.095 [XNIO-1 task-1] 7BEaTW5VRluhjz0SmNFnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:46.095 [XNIO-1 task-1] 7BEaTW5VRluhjz0SmNFnXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93bf50ec +19:00:46.101 [XNIO-1 task-1] 0MU1w3uwSsCc-d9xSX4UAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/93bf50ec, base path is set to: null +19:00:46.101 [XNIO-1 task-1] 0MU1w3uwSsCc-d9xSX4UAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.101 [XNIO-1 task-1] 0MU1w3uwSsCc-d9xSX4UAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:46.101 [XNIO-1 task-1] 0MU1w3uwSsCc-d9xSX4UAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/93bf50ec, base path is set to: null +19:00:46.102 [XNIO-1 task-1] 0MU1w3uwSsCc-d9xSX4UAA DEBUG com.networknt.schema.TypeValidator debug - validate( "93bf50ec", "93bf50ec", userId) +19:00:46.105 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/93bf50ec +19:00:46.105 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.105 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:46.106 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +Jun 28, 2024 7:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +19:00:46.106 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/93bf50ec + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +19:00:46.107 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"75cdc4dc-3dc9-423f-9f89-707e0e2e5203","newPassword":"4c83c152-9428-4730-bdbf-b3498e63daca","newPasswordConfirm":"4c83c152-9428-4730-bdbf-b3498e63daca"}, {"password":"75cdc4dc-3dc9-423f-9f89-707e0e2e5203","newPassword":"4c83c152-9428-4730-bdbf-b3498e63daca","newPasswordConfirm":"4c83c152-9428-4730-bdbf-b3498e63daca"}, requestBody) +19:00:46.107 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"75cdc4dc-3dc9-423f-9f89-707e0e2e5203","newPassword":"4c83c152-9428-4730-bdbf-b3498e63daca","newPasswordConfirm":"4c83c152-9428-4730-bdbf-b3498e63daca"}, {"password":"75cdc4dc-3dc9-423f-9f89-707e0e2e5203","newPassword":"4c83c152-9428-4730-bdbf-b3498e63daca","newPasswordConfirm":"4c83c152-9428-4730-bdbf-b3498e63daca"}, requestBody) +19:00:46.107 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG com.networknt.schema.TypeValidator debug - validate( "4c83c152-9428-4730-bdbf-b3498e63daca", {"password":"75cdc4dc-3dc9-423f-9f89-707e0e2e5203","newPassword":"4c83c152-9428-4730-bdbf-b3498e63daca","newPasswordConfirm":"4c83c152-9428-4730-bdbf-b3498e63daca"}, requestBody.newPasswordConfirm) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +19:00:46.107 [XNIO-1 task-1] _k02j_D7RsGgnWonQpVOfw DEBUG com.networknt.schema.FormatValidator debug - validate( "4c83c152-9428-4730-bdbf-b3498e63daca", {"password":"75cdc4dc-3dc9-423f-9f89-707e0e2e5203","newPassword":"4c83c152-9428-4730-bdbf-b3498e63daca","newPasswordConfirm":"4c83c152-9428-4730-bdbf-b3498e63daca"}, requestBody.newPassword) +19:00:46.119 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:93bf50ec +19:00:46.137 [XNIO-1 task-1] HiW8-Sf_SKGQFyeNWdh3Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.137 [XNIO-1 task-1] HiW8-Sf_SKGQFyeNWdh3Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.137 [XNIO-1 task-1] HiW8-Sf_SKGQFyeNWdh3Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.140 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bb056883 +19:00:46.145 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:bb056883 +19:00:46.145 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:22024862-b467-4746-8657-a778533e064a +19:00:46.155 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +19:00:46.169 [XNIO-1 task-1] 5nAwk_doSAO_kFMu12Ldxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.169 [XNIO-1 task-1] 5nAwk_doSAO_kFMu12Ldxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.169 [XNIO-1 task-1] 5nAwk_doSAO_kFMu12Ldxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.170 [XNIO-1 task-1] 5nAwk_doSAO_kFMu12Ldxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.179 [XNIO-1 task-1] GW1v1vfZRTSgqCJ72fyhEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.179 [XNIO-1 task-1] GW1v1vfZRTSgqCJ72fyhEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.179 [XNIO-1 task-1] GW1v1vfZRTSgqCJ72fyhEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.202 [XNIO-1 task-1] WIs78b3pT5aMwCDjj1VNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.202 [XNIO-1 task-1] WIs78b3pT5aMwCDjj1VNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.202 [XNIO-1 task-1] WIs78b3pT5aMwCDjj1VNBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.224 [XNIO-1 task-1] x7RCGH1UR1aHdEsgLNS32A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.225 [XNIO-1 task-1] x7RCGH1UR1aHdEsgLNS32A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.225 [XNIO-1 task-1] x7RCGH1UR1aHdEsgLNS32A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.258 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:01b6cf09 +19:00:46.258 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a2938f72-73e6-4458-86af-c566df694639 +19:00:46.264 [XNIO-1 task-1] HeSn9P2xQC2B4ObJuH1CHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.264 [XNIO-1 task-1] HeSn9P2xQC2B4ObJuH1CHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.265 [XNIO-1 task-1] HeSn9P2xQC2B4ObJuH1CHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.280 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bb056883 +19:00:46.280 [XNIO-1 task-1] aX_2ouV_QI29Whd6y3PBig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.280 [XNIO-1 task-1] aX_2ouV_QI29Whd6y3PBig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.281 [XNIO-1 task-1] aX_2ouV_QI29Whd6y3PBig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.310 [XNIO-1 task-1] JXUId13aQsCxg9ss2LZwag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.310 [XNIO-1 task-1] JXUId13aQsCxg9ss2LZwag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.310 [XNIO-1 task-1] JXUId13aQsCxg9ss2LZwag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.310 [XNIO-1 task-1] JXUId13aQsCxg9ss2LZwag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +19:00:46.316 [XNIO-1 task-1] lqnInBmZT7uRRoi4mVTCfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.316 [XNIO-1 task-1] lqnInBmZT7uRRoi4mVTCfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.316 [XNIO-1 task-1] lqnInBmZT7uRRoi4mVTCfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.337 [XNIO-1 task-1] YMIArSa6SNeFsc_dguzJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.337 [XNIO-1 task-1] YMIArSa6SNeFsc_dguzJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.338 [XNIO-1 task-1] YMIArSa6SNeFsc_dguzJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.351 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8cfdf35 +19:00:46.351 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.351 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:46.351 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:46.352 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8cfdf35 +19:00:46.352 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f8a09165-55b0-4123-90ff-f8c2df73d623","newPassword":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf","newPasswordConfirm":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf"}, {"password":"f8a09165-55b0-4123-90ff-f8c2df73d623","newPassword":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf","newPasswordConfirm":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf"}, requestBody) +19:00:46.352 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f8a09165-55b0-4123-90ff-f8c2df73d623","newPassword":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf","newPasswordConfirm":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf"}, {"password":"f8a09165-55b0-4123-90ff-f8c2df73d623","newPassword":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf","newPasswordConfirm":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf"}, requestBody) +19:00:46.353 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1d4d0449-4b7d-492f-8251-dc9f8789a8bf", {"password":"f8a09165-55b0-4123-90ff-f8c2df73d623","newPassword":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf","newPasswordConfirm":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf"}, requestBody.newPasswordConfirm) +19:00:46.353 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG com.networknt.schema.FormatValidator debug - validate( "f8a09165-55b0-4123-90ff-f8c2df73d623", {"password":"f8a09165-55b0-4123-90ff-f8c2df73d623","newPassword":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf","newPasswordConfirm":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf"}, requestBody.password) +19:00:46.353 [XNIO-1 task-1] b70JeJotRveIpFAUGPDAGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1d4d0449-4b7d-492f-8251-dc9f8789a8bf", {"password":"f8a09165-55b0-4123-90ff-f8c2df73d623","newPassword":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf","newPasswordConfirm":"1d4d0449-4b7d-492f-8251-dc9f8789a8bf"}, requestBody.newPassword) +19:00:46.379 [XNIO-1 task-1] 76dcqAcOREeCJYkOjcIULw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93bf50ec +19:00:46.379 [XNIO-1 task-1] 76dcqAcOREeCJYkOjcIULw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.379 [XNIO-1 task-1] 76dcqAcOREeCJYkOjcIULw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:46.379 [XNIO-1 task-1] 76dcqAcOREeCJYkOjcIULw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/93bf50ec +19:00:46.385 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/93bf50ec, base path is set to: null +19:00:46.385 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.385 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:46.385 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:46.385 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/93bf50ec, base path is set to: null +19:00:46.386 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG com.networknt.schema.TypeValidator debug - validate( "93bf50ec", "93bf50ec", userId) +19:00:46.386 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4c83c152-9428-4730-bdbf-b3498e63daca","newPassword":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPasswordConfirm":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7"}, {"password":"4c83c152-9428-4730-bdbf-b3498e63daca","newPassword":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPasswordConfirm":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7"}, requestBody) +19:00:46.386 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG com.networknt.schema.TypeValidator debug - validate( "d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7", {"password":"4c83c152-9428-4730-bdbf-b3498e63daca","newPassword":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPasswordConfirm":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7"}, requestBody.newPasswordConfirm) +19:00:46.386 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG com.networknt.schema.TypeValidator debug - validate( "4c83c152-9428-4730-bdbf-b3498e63daca", {"password":"4c83c152-9428-4730-bdbf-b3498e63daca","newPassword":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPasswordConfirm":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7"}, requestBody.password) +19:00:46.386 [XNIO-1 task-1] sNC7stBpSHCQMTCbR5Y1ng DEBUG com.networknt.schema.TypeValidator debug - validate( "d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7", {"password":"4c83c152-9428-4730-bdbf-b3498e63daca","newPassword":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPasswordConfirm":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7"}, requestBody.newPassword) +19:00:46.395 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:42d13313-f071-4ce4-a5a5-2aa187f7af64 +19:00:46.401 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:93bf50ec +19:00:46.413 [XNIO-1 task-1] efHtzsVRRkyhS7WLiYPZKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/93bf50ec, base path is set to: null +19:00:46.413 [XNIO-1 task-1] efHtzsVRRkyhS7WLiYPZKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.413 [XNIO-1 task-1] efHtzsVRRkyhS7WLiYPZKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:46.414 [XNIO-1 task-1] efHtzsVRRkyhS7WLiYPZKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/93bf50ec, base path is set to: null +19:00:46.414 [XNIO-1 task-1] efHtzsVRRkyhS7WLiYPZKA DEBUG com.networknt.schema.TypeValidator debug - validate( "93bf50ec", "93bf50ec", userId) +19:00:46.424 [XNIO-1 task-1] Vcf47NaTTmCFQC-TYTu5xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a8cfdf35 +19:00:46.424 [XNIO-1 task-1] Vcf47NaTTmCFQC-TYTu5xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.424 [XNIO-1 task-1] Vcf47NaTTmCFQC-TYTu5xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:46.424 [XNIO-1 task-1] Vcf47NaTTmCFQC-TYTu5xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a8cfdf35 +19:00:46.433 [XNIO-1 task-1] ZQj4G9K6SzmV22Ktj7wuaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.434 [XNIO-1 task-1] ZQj4G9K6SzmV22Ktj7wuaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.434 [XNIO-1 task-1] ZQj4G9K6SzmV22Ktj7wuaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.435 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:93bf50ec +19:00:46.447 [XNIO-1 task-1] _qv8MjFnQmSHtI410oVJ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.447 [XNIO-1 task-1] _qv8MjFnQmSHtI410oVJ9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.448 [XNIO-1 task-1] _qv8MjFnQmSHtI410oVJ9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.470 [XNIO-1 task-1] dX5q_DtkSLCR8YbjobuBFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.470 [XNIO-1 task-1] dX5q_DtkSLCR8YbjobuBFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.470 [XNIO-1 task-1] dX5q_DtkSLCR8YbjobuBFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.471 [XNIO-1 task-1] dX5q_DtkSLCR8YbjobuBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.487 [XNIO-1 task-1] WO2gz7ARS8SU1xBnG7TIpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.487 [XNIO-1 task-1] WO2gz7ARS8SU1xBnG7TIpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.487 [XNIO-1 task-1] WO2gz7ARS8SU1xBnG7TIpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.488 [XNIO-1 task-1] WO2gz7ARS8SU1xBnG7TIpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +19:00:46.495 [XNIO-1 task-1] iJ162DroRtasJNicRrYR4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.495 [XNIO-1 task-1] iJ162DroRtasJNicRrYR4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.495 [XNIO-1 task-1] iJ162DroRtasJNicRrYR4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +19:00:46.497 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:93bf50ec +19:00:46.505 [XNIO-1 task-1] J0KErGkpTwub1dnrRZDsCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/071a916a, base path is set to: null +19:00:46.505 [XNIO-1 task-1] J0KErGkpTwub1dnrRZDsCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.505 [XNIO-1 task-1] J0KErGkpTwub1dnrRZDsCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:46.506 [XNIO-1 task-1] J0KErGkpTwub1dnrRZDsCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/071a916a, base path is set to: null +19:00:46.506 [XNIO-1 task-1] J0KErGkpTwub1dnrRZDsCg DEBUG com.networknt.schema.TypeValidator debug - validate( "071a916a", "071a916a", userId) +19:00:46.517 [XNIO-1 task-1] eHZHdyjNQ2y8N4StaMBecw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.517 [XNIO-1 task-1] eHZHdyjNQ2y8N4StaMBecw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.518 [XNIO-1 task-1] eHZHdyjNQ2y8N4StaMBecw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.551 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a182f3c +19:00:46.551 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8eb317f5, base path is set to: null +19:00:46.552 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.552 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:46.552 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +19:00:46.552 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8eb317f5, base path is set to: null +19:00:46.552 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG com.networknt.schema.TypeValidator debug - validate( "8eb317f5", "8eb317f5", userId) +19:00:46.553 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ca4ca1d2-2e90-4a8d-b6bb-bb6bdb8fd731","newPassword":"d82cbd87-71f3-460d-be53-dd14d85603fc","newPasswordConfirm":"d82cbd87-71f3-460d-be53-dd14d85603fc"}, {"password":"ca4ca1d2-2e90-4a8d-b6bb-bb6bdb8fd731","newPassword":"d82cbd87-71f3-460d-be53-dd14d85603fc","newPasswordConfirm":"d82cbd87-71f3-460d-be53-dd14d85603fc"}, requestBody) +19:00:46.553 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG com.networknt.schema.TypeValidator debug - validate( "d82cbd87-71f3-460d-be53-dd14d85603fc", {"password":"ca4ca1d2-2e90-4a8d-b6bb-bb6bdb8fd731","newPassword":"d82cbd87-71f3-460d-be53-dd14d85603fc","newPasswordConfirm":"d82cbd87-71f3-460d-be53-dd14d85603fc"}, requestBody.newPasswordConfirm) +19:00:46.553 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG com.networknt.schema.TypeValidator debug - validate( "ca4ca1d2-2e90-4a8d-b6bb-bb6bdb8fd731", {"password":"ca4ca1d2-2e90-4a8d-b6bb-bb6bdb8fd731","newPassword":"d82cbd87-71f3-460d-be53-dd14d85603fc","newPasswordConfirm":"d82cbd87-71f3-460d-be53-dd14d85603fc"}, requestBody.password) +19:00:46.553 [XNIO-1 task-1] WEqlgbRAQQujFayqM04HBA DEBUG com.networknt.schema.TypeValidator debug - validate( "d82cbd87-71f3-460d-be53-dd14d85603fc", {"password":"ca4ca1d2-2e90-4a8d-b6bb-bb6bdb8fd731","newPassword":"d82cbd87-71f3-460d-be53-dd14d85603fc","newPasswordConfirm":"d82cbd87-71f3-460d-be53-dd14d85603fc"}, requestBody.newPassword) +19:00:46.567 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dd8baac4 +19:00:46.570 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dd8baac4 +19:00:46.582 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/93bf50ec +19:00:46.582 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.582 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:46.582 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +19:00:46.583 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/93bf50ec +19:00:46.583 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPassword":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67","newPasswordConfirm":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67"}, {"password":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPassword":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67","newPasswordConfirm":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67"}, requestBody) +19:00:46.583 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPassword":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67","newPasswordConfirm":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67"}, {"password":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPassword":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67","newPasswordConfirm":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67"}, requestBody) +19:00:46.583 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG com.networknt.schema.FormatValidator debug - validate( "a5e8ab98-5153-4d5f-9c9e-9455a06c7e67", {"password":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPassword":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67","newPasswordConfirm":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67"}, requestBody.newPasswordConfirm) +19:00:46.583 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG com.networknt.schema.FormatValidator debug - validate( "d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7", {"password":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPassword":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67","newPasswordConfirm":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67"}, requestBody.password) +19:00:46.584 [XNIO-1 task-1] HhezJSGnQO6EyCxhO1yOLA DEBUG com.networknt.schema.FormatValidator debug - validate( "a5e8ab98-5153-4d5f-9c9e-9455a06c7e67", {"password":"d28d1297-a0f2-4ddf-8b07-00ad6c5f32f7","newPassword":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67","newPasswordConfirm":"a5e8ab98-5153-4d5f-9c9e-9455a06c7e67"}, requestBody.newPassword) +19:00:46.594 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:93bf50ec +19:00:46.606 [XNIO-1 task-1] bGf4yulKQ1a49qWUUqUKOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.606 [XNIO-1 task-1] bGf4yulKQ1a49qWUUqUKOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.606 [XNIO-1 task-1] bGf4yulKQ1a49qWUUqUKOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.619 [XNIO-1 task-1] 2ankMPs0RXKx5XiKIYnIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8eb317f5 +19:00:46.619 [XNIO-1 task-1] 2ankMPs0RXKx5XiKIYnIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +19:00:46.619 [XNIO-1 task-1] 2ankMPs0RXKx5XiKIYnIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +19:00:46.620 [XNIO-1 task-1] 2ankMPs0RXKx5XiKIYnIDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8eb317f5 +19:00:46.624 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:bb056883 +19:00:46.629 [XNIO-1 task-1] MwcQVVz-SAC59-Ivl2k-tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/93bf50ec, base path is set to: null +19:00:46.629 [XNIO-1 task-1] MwcQVVz-SAC59-Ivl2k-tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +19:00:46.629 [XNIO-1 task-1] MwcQVVz-SAC59-Ivl2k-tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +19:00:46.630 [XNIO-1 task-1] MwcQVVz-SAC59-Ivl2k-tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/93bf50ec, base path is set to: null +19:00:46.630 [XNIO-1 task-1] MwcQVVz-SAC59-Ivl2k-tw DEBUG com.networknt.schema.TypeValidator debug - validate( "93bf50ec", "93bf50ec", userId) +19:00:46.633 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:858bbb85-daa4-4c15-9afc-110754070259 +19:00:46.635 [XNIO-1 task-1] gxPxzdHqQu-1bdC1f59LwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8eb317f5, base path is set to: null diff --git a/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-client-1.log b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..0843acd --- /dev/null +++ b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-client-1.log @@ -0,0 +1,4882 @@ +20:00:38.407 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:970ff95d +20:00:38.449 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - allowPoolSuspension.............false +20:00:38.450 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - catalog.........................none +20:00:38.450 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - connectionTestQuery.............none +20:00:38.450 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSource......................none +20:00:38.450 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - dataSourceJNDI..................none +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - driverClassName.................none +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - healthCheckRegistry.............none +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - initializationFailTimeout.......1 +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - jdbcUrl.........................jdbc:mysql://mysqldb:3306/oauth2?useSSL=false&disableMariaDbDriver +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - maxLifetime.....................1800000 +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - metricRegistry..................none +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - minimumIdle.....................2 +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - poolName........................"HikariPool-1" +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - registerMbeans..................false +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - schema..........................none +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - transactionIsolation............default +20:00:38.451 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.HikariConfig logConfiguration - validationTimeout...............5000 +20:00:38.480 [XNIO-1 task-1] FXQjhYYsTby3jIDMipkp6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:38.484 [XNIO-1 task-1] FXQjhYYsTby3jIDMipkp6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:38.484 [XNIO-1 task-1] FXQjhYYsTby3jIDMipkp6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:38.484 [XNIO-1 task-1] FXQjhYYsTby3jIDMipkp6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:38.485 [XNIO-1 task-1] FXQjhYYsTby3jIDMipkp6g DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", clientId) +20:00:38.497 [XNIO-1 task-1] L3jo0HXxRAenlY3n2_SZsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:38.497 [XNIO-1 task-1] L3jo0HXxRAenlY3n2_SZsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:38.500 [XNIO-1 task-1] L3jo0HXxRAenlY3n2_SZsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:38.791 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG com.zaxxer.hikari.pool.HikariPool checkFailFast - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@33bb4758 +20:00:38.818 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool call - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@280fa83a +20:00:38.981 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f60faec7-5358-4bbe-8306-2358358191fd +20:00:38.990 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:970ff95d +20:00:38.993 [XNIO-1 task-1] d0i0kfo7Qx6frFued0yjLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:38.993 [XNIO-1 task-1] d0i0kfo7Qx6frFued0yjLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:38.993 [XNIO-1 task-1] d0i0kfo7Qx6frFued0yjLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:38.994 [XNIO-1 task-1] d0i0kfo7Qx6frFued0yjLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:39.021 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.021 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.022 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.023 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.023 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.023 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.023 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.024 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:39.024 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:39.024 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.024 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.025 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb9284bc-f5ba-491e-b5e4-b25c4d19","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:39.026 [XNIO-1 task-1] cUT2frA3TbKbHtPcR9n_Wg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:39.029 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.029 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.030 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.030 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.031 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:39.031 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e79b2d1a-25af-4403-945f-71dbbe24154b", {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:39.031 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:39.031 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:39.031 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c5cc128e-d124-46fd-9205-9c982c9a", {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:39.031 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:39.032 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c5cc128e-d124-46fd-9205-9c982c9a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:39.032 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:39.032 [XNIO-1 task-1] n3qOPK00RH-BeoDboiVQtQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:39.040 [XNIO-1 task-1] mkAS6bHYTDOTIKj_1j0suQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/37d5a293-8714-4a69-ba27-070766018e7c, base path is set to: null +20:00:39.041 [XNIO-1 task-1] mkAS6bHYTDOTIKj_1j0suQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.041 [XNIO-1 task-1] mkAS6bHYTDOTIKj_1j0suQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:39.041 [XNIO-1 task-1] mkAS6bHYTDOTIKj_1j0suQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/37d5a293-8714-4a69-ba27-070766018e7c, base path is set to: null +20:00:39.042 [XNIO-1 task-1] mkAS6bHYTDOTIKj_1j0suQ DEBUG com.networknt.schema.TypeValidator debug - validate( "37d5a293-8714-4a69-ba27-070766018e7c", "37d5a293-8714-4a69-ba27-070766018e7c", clientId) +20:00:39.049 [XNIO-1 task-1] kOMG6uY5SxS2hQE1b_xleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/37d5a293-8714-4a69-ba27-070766018e7c +20:00:39.049 [XNIO-1 task-1] kOMG6uY5SxS2hQE1b_xleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.049 [XNIO-1 task-1] kOMG6uY5SxS2hQE1b_xleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:39.050 [XNIO-1 task-1] kOMG6uY5SxS2hQE1b_xleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/37d5a293-8714-4a69-ba27-070766018e7c +20:00:39.055 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.055 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.056 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.057 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.057 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.057 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.057 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.057 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:39.058 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:39.058 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.058 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.058 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e0759cb-c03b-47b1-b007-97873cbd","clientDesc":"e61eefdf-009f-436f-8355-1c15a508f4fc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:39.062 [XNIO-1 task-1] 4VRkRHhqSjqTZwesBtNGJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:39.066 [XNIO-1 task-1] wTmKgZ2LT9SFqAhZSGzxyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.066 [XNIO-1 task-1] wTmKgZ2LT9SFqAhZSGzxyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.067 [XNIO-1 task-1] wTmKgZ2LT9SFqAhZSGzxyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.068 [XNIO-1 task-1] wTmKgZ2LT9SFqAhZSGzxyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:39.124 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:970ff95d +20:00:39.170 [XNIO-1 task-1] wtOUofU1SUGr8Cpcqh0fUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f60faec7-5358-4bbe-8306-2358358191fd, base path is set to: null +20:00:39.170 [XNIO-1 task-1] wtOUofU1SUGr8Cpcqh0fUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.170 [XNIO-1 task-1] wtOUofU1SUGr8Cpcqh0fUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:39.170 [XNIO-1 task-1] wtOUofU1SUGr8Cpcqh0fUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f60faec7-5358-4bbe-8306-2358358191fd, base path is set to: null +20:00:39.171 [XNIO-1 task-1] wtOUofU1SUGr8Cpcqh0fUg DEBUG com.networknt.schema.TypeValidator debug - validate( "f60faec7-5358-4bbe-8306-2358358191fd", "f60faec7-5358-4bbe-8306-2358358191fd", clientId) +20:00:39.181 [XNIO-1 task-1] dTuO2XtIRrGmAO_0eTWeFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.182 [XNIO-1 task-1] dTuO2XtIRrGmAO_0eTWeFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.182 [XNIO-1 task-1] dTuO2XtIRrGmAO_0eTWeFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.213 [XNIO-1 task-1] 9dXtPmovRwiCBh7LTkJIhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d8daa5f2-25c0-4342-b833-636e08184cb1, base path is set to: null +20:00:39.213 [XNIO-1 task-1] 9dXtPmovRwiCBh7LTkJIhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.213 [XNIO-1 task-1] 9dXtPmovRwiCBh7LTkJIhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:39.213 [XNIO-1 task-1] 9dXtPmovRwiCBh7LTkJIhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d8daa5f2-25c0-4342-b833-636e08184cb1, base path is set to: null +20:00:39.214 [XNIO-1 task-1] 9dXtPmovRwiCBh7LTkJIhg DEBUG com.networknt.schema.TypeValidator debug - validate( "d8daa5f2-25c0-4342-b833-636e08184cb1", "d8daa5f2-25c0-4342-b833-636e08184cb1", clientId) +20:00:39.233 [XNIO-1 task-1] lTpeZNjWRruQykvK7k_mZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.233 [XNIO-1 task-1] lTpeZNjWRruQykvK7k_mZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.234 [XNIO-1 task-1] lTpeZNjWRruQykvK7k_mZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.318 [XNIO-1 task-1] uVQBJWq2TF2IG2zyvwA-gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4d74d7fc-3349-4494-baa2-fcfd2ded54c9 +20:00:39.318 [XNIO-1 task-1] uVQBJWq2TF2IG2zyvwA-gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.318 [XNIO-1 task-1] uVQBJWq2TF2IG2zyvwA-gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:39.318 [XNIO-1 task-1] uVQBJWq2TF2IG2zyvwA-gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4d74d7fc-3349-4494-baa2-fcfd2ded54c9 +20:00:39.331 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.331 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.332 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.333 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.333 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.333 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.333 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.334 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:39.334 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:39.334 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.335 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.335 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a0bc123a-cbc9-4b4a-b6ec-6ffae26a","clientDesc":"2d4db731-71b3-4ee6-9e21-38dd05a24210","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:39.341 [XNIO-1 task-1] jkC5wE2pS_aRUapKUN-ZvQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:39.344 [XNIO-1 task-1] piEwwRFbR-KgCtJgTL1mvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.345 [XNIO-1 task-1] piEwwRFbR-KgCtJgTL1mvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.345 [XNIO-1 task-1] piEwwRFbR-KgCtJgTL1mvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.370 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:44de0707-a7af-461f-9a3f-ed1fdd5354ca +20:00:39.398 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.398 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.399 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:39.400 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.400 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.400 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.400 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.400 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:39.401 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:39.401 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.401 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.401 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8daf0979-ddb5-4bab-8021-68437e47","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1423) +20:00:39.403 [XNIO-1 task-2] DmEf7uJoSYOoIO2B3MWRYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:39.481 [XNIO-1 task-2] jpqUCBu0RcetGfBdWKKZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.481 [XNIO-1 task-2] jpqUCBu0RcetGfBdWKKZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.482 [XNIO-1 task-2] jpqUCBu0RcetGfBdWKKZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.527 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.527 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.528 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.529 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:39.529 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:39.529 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "97dd8fd1-51ad-480e-9189-f091e4508162", {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:39.532 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:39.532 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:39.532 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "6ce67f00-5776-4855-a0b1-03a31e3b", {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:39.532 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:39.532 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6ce67f00-5776-4855-a0b1-03a31e3b","clientDesc":"97dd8fd1-51ad-480e-9189-f091e4508162","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:39.532 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:39.535 [XNIO-1 task-2] HhukeAdSRTmgM-7fgLiHDg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:39.558 [XNIO-1 task-2] CxUgGrTGSim0g8i_9VYHjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/37d5a293-8714-4a69-ba27-070766018e7c, base path is set to: null +20:00:39.558 [XNIO-1 task-2] CxUgGrTGSim0g8i_9VYHjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:39.558 [XNIO-1 task-2] CxUgGrTGSim0g8i_9VYHjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:39.558 [XNIO-1 task-2] CxUgGrTGSim0g8i_9VYHjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/37d5a293-8714-4a69-ba27-070766018e7c, base path is set to: null +20:00:39.559 [XNIO-1 task-2] CxUgGrTGSim0g8i_9VYHjA DEBUG com.networknt.schema.TypeValidator debug - validate( "37d5a293-8714-4a69-ba27-070766018e7c", "37d5a293-8714-4a69-ba27-070766018e7c", clientId) +20:00:39.593 [XNIO-1 task-2] yhdjgBduTjWZr044NYvVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.593 [XNIO-1 task-2] yhdjgBduTjWZr044NYvVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.594 [XNIO-1 task-2] yhdjgBduTjWZr044NYvVMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:39.664 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:df57c057 +20:00:39.736 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:df57c057 +20:00:39.802 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:df57c057 +20:00:39.950 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6e64453 +20:00:39.952 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6e64453 +20:00:40.077 [XNIO-1 task-2] txTqYeRJRca9nc6MH5gKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9ebed77d-eeeb-40d0-85b6-cd98901f5b99 +20:00:40.077 [XNIO-1 task-2] txTqYeRJRca9nc6MH5gKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.077 [XNIO-1 task-2] txTqYeRJRca9nc6MH5gKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:40.077 [XNIO-1 task-2] txTqYeRJRca9nc6MH5gKBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9ebed77d-eeeb-40d0-85b6-cd98901f5b99 +20:00:40.090 [XNIO-1 task-2] 2XEr9wynSFCuFySpadl7rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.090 [XNIO-1 task-2] 2XEr9wynSFCuFySpadl7rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.091 [XNIO-1 task-2] 2XEr9wynSFCuFySpadl7rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.091 [XNIO-1 task-2] 2XEr9wynSFCuFySpadl7rw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.159 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.159 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.160 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.160 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:df57c057 +20:00:40.161 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.161 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:40.161 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG com.networknt.schema.TypeValidator debug - validate( "e79b2d1a-25af-4403-945f-71dbbe24154b", {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:40.161 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:40.162 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:40.162 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f473cbe-5816-432a-a608-ad1de55a", {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:40.162 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.166 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0f473cbe-5816-432a-a608-ad1de55a","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:40.167 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:40.167 [XNIO-1 task-2] sw3Dxq2ET5mvxReGD1evwA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:40.170 [XNIO-1 task-2] LQPjHfMNQUuecR6DW-VuGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f79d30e-af8c-488f-8ef2-ad68db78b5d9, base path is set to: null +20:00:40.171 [XNIO-1 task-2] LQPjHfMNQUuecR6DW-VuGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.171 [XNIO-1 task-2] LQPjHfMNQUuecR6DW-VuGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:40.171 [XNIO-1 task-2] LQPjHfMNQUuecR6DW-VuGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f79d30e-af8c-488f-8ef2-ad68db78b5d9, base path is set to: null +20:00:40.172 [XNIO-1 task-2] LQPjHfMNQUuecR6DW-VuGw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f79d30e-af8c-488f-8ef2-ad68db78b5d9", "0f79d30e-af8c-488f-8ef2-ad68db78b5d9", clientId) +20:00:40.194 [XNIO-1 task-2] LzOioCcUQQSBVQvD24Wzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.194 [XNIO-1 task-2] LzOioCcUQQSBVQvD24Wzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.195 [XNIO-1 task-2] LzOioCcUQQSBVQvD24Wzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.250 [XNIO-1 task-2] ZVkpyQnKRvqa8Cj_cXChLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.250 [XNIO-1 task-2] ZVkpyQnKRvqa8Cj_cXChLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.251 [XNIO-1 task-2] ZVkpyQnKRvqa8Cj_cXChLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.271 [XNIO-1 task-2] ud9Ing0dSSa2lvuBaEmzJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.271 [XNIO-1 task-2] ud9Ing0dSSa2lvuBaEmzJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.272 [XNIO-1 task-2] ud9Ing0dSSa2lvuBaEmzJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.286 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.286 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.287 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.288 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.288 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:40.288 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "e79b2d1a-25af-4403-945f-71dbbe24154b", {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:40.288 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:40.288 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:40.288 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe6b7f0-dada-4241-b0de-ae86859d", {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:40.288 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.289 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"dbe6b7f0-dada-4241-b0de-ae86859d","clientDesc":"e79b2d1a-25af-4403-945f-71dbbe24154b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:40.289 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:40.289 [XNIO-1 task-2] 57VjfNnlSWKQR411wVFoUA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:40.292 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.292 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.292 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.293 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.293 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.293 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.293 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.294 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:40.294 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:40.294 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.294 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.294 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cfb56a7-47c2-4845-99e3-2b521ca6","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:40.295 [XNIO-1 task-2] _Eg3d50XTCiSJVn0VjP7iw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:40.297 [XNIO-1 task-2] XN5hejEzRd21_CabiPPWCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.297 [XNIO-1 task-2] XN5hejEzRd21_CabiPPWCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.298 [XNIO-1 task-2] XN5hejEzRd21_CabiPPWCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.298 [XNIO-1 task-2] XN5hejEzRd21_CabiPPWCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.327 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.327 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.351 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.352 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.352 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:40.352 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1bba99a-fab3-47c9-8a2e-d861c04e979b", {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:40.353 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:40.353 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:40.353 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "f537d3d0-60ae-4587-9ce0-1235bfc4", {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:40.353 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.353 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f537d3d0-60ae-4587-9ce0-1235bfc4","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:40.353 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:40.354 [XNIO-1 task-2] rm_pUX7LSnWkJ-eviRxOXw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:40.351 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ce6616cc-f09c-4f01-bb93-464379eb61f5 +20:00:40.359 [XNIO-1 task-2] O8YAHaQlTHKpKaZpsc51VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.359 [XNIO-1 task-2] O8YAHaQlTHKpKaZpsc51VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.360 [XNIO-1 task-2] O8YAHaQlTHKpKaZpsc51VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.430 [XNIO-1 task-2] vKIV-UE1QNipKEG974_JLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.430 [XNIO-1 task-2] vKIV-UE1QNipKEG974_JLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.431 [XNIO-1 task-2] vKIV-UE1QNipKEG974_JLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.437 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:32f57196-a9ef-417e-b720-1fd3a98be031 +20:00:40.439 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:32f57196-a9ef-417e-b720-1fd3a98be031 +20:00:40.452 [XNIO-1 task-2] PVJuu6zcRSmAaASBmI0IyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.452 [XNIO-1 task-2] PVJuu6zcRSmAaASBmI0IyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.452 [XNIO-1 task-2] PVJuu6zcRSmAaASBmI0IyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.453 [XNIO-1 task-2] PVJuu6zcRSmAaASBmI0IyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.481 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:feb3ea56 +20:00:40.484 [XNIO-1 task-2] 4PsjRxG0QW6koPViHoCc3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2ce13b4-e8d5-4726-9767-a933690d4f2e, base path is set to: null +20:00:40.484 [XNIO-1 task-2] 4PsjRxG0QW6koPViHoCc3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.485 [XNIO-1 task-2] 4PsjRxG0QW6koPViHoCc3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:40.485 [XNIO-1 task-2] 4PsjRxG0QW6koPViHoCc3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f2ce13b4-e8d5-4726-9767-a933690d4f2e, base path is set to: null +20:00:40.485 [XNIO-1 task-2] 4PsjRxG0QW6koPViHoCc3g DEBUG com.networknt.schema.TypeValidator debug - validate( "f2ce13b4-e8d5-4726-9767-a933690d4f2e", "f2ce13b4-e8d5-4726-9767-a933690d4f2e", clientId) +20:00:40.497 [XNIO-1 task-2] r1_cZJdqRwa3TIA6R5RgwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.498 [XNIO-1 task-2] r1_cZJdqRwa3TIA6R5RgwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.498 [XNIO-1 task-2] r1_cZJdqRwa3TIA6R5RgwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.499 [XNIO-1 task-2] r1_cZJdqRwa3TIA6R5RgwA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.516 [XNIO-1 task-2] UM2610o0TYWiFIFLOEc21Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.516 [XNIO-1 task-2] UM2610o0TYWiFIFLOEc21Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.516 [XNIO-1 task-2] UM2610o0TYWiFIFLOEc21Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.517 [XNIO-1 task-2] UM2610o0TYWiFIFLOEc21Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.563 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:64d9d334-a94a-4710-b3a4-12b3a2288a1a +20:00:40.578 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:64d9d334-a94a-4710-b3a4-12b3a2288a1a +20:00:40.578 [XNIO-1 task-2] 5uXoPpfSRdGBWNtG20J7NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.579 [XNIO-1 task-2] 5uXoPpfSRdGBWNtG20J7NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.579 [XNIO-1 task-2] 5uXoPpfSRdGBWNtG20J7NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.604 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4490791d-e839-4263-8d36-b4d8f0c6249b +20:00:40.640 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.640 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.725 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:40.726 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.726 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.726 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.726 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.727 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:40.728 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:40.728 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.728 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.728 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9aa83625-acf9-4734-b021-5252cade","clientDesc":"03ae2613-52cd-45dd-bfb5-d699652fdfd3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:40.730 [XNIO-1 task-2] nRkP1_r0RJSUddA4lUCHJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:40.735 [XNIO-1 task-2] -p3IMXSGTtOBmOPacqFddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.735 [XNIO-1 task-2] -p3IMXSGTtOBmOPacqFddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.736 [XNIO-1 task-2] -p3IMXSGTtOBmOPacqFddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.752 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:80da924e-a01d-468e-b9db-99c7d818db89 +20:00:40.753 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6e64453 +20:00:40.800 [XNIO-1 task-2] lpM47FXiTTOf1flPt98Y3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.801 [XNIO-1 task-2] lpM47FXiTTOf1flPt98Y3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.801 [XNIO-1 task-2] lpM47FXiTTOf1flPt98Y3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.801 [XNIO-1 task-2] lpM47FXiTTOf1flPt98Y3w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.817 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f6e64453 +20:00:40.825 [XNIO-1 task-2] dDrgrOLDRR2ALPE8PG4H_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.825 [XNIO-1 task-2] dDrgrOLDRR2ALPE8PG4H_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.825 [XNIO-1 task-2] dDrgrOLDRR2ALPE8PG4H_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.826 [XNIO-1 task-2] dDrgrOLDRR2ALPE8PG4H_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.890 [XNIO-1 task-2] n0MexNd-S7uO036aB_5mTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.890 [XNIO-1 task-2] n0MexNd-S7uO036aB_5mTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.890 [XNIO-1 task-2] n0MexNd-S7uO036aB_5mTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.891 [XNIO-1 task-2] n0MexNd-S7uO036aB_5mTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.929 [XNIO-1 task-2] HTTjUb22QseOMXgR87E1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/44de0707-a7af-461f-9a3f-ed1fdd5354ca +20:00:40.930 [XNIO-1 task-2] HTTjUb22QseOMXgR87E1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.930 [XNIO-1 task-2] HTTjUb22QseOMXgR87E1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:40.930 [XNIO-1 task-2] HTTjUb22QseOMXgR87E1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/44de0707-a7af-461f-9a3f-ed1fdd5354ca +20:00:40.931 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:44de0707-a7af-461f-9a3f-ed1fdd5354ca +20:00:40.944 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.944 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.945 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.945 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "f4988e92-3aaf-425c-8108-24272d6dd816", {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "562bbff0-efb6-423d-86c2-de69cdcf", {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"562bbff0-efb6-423d-86c2-de69cdcf","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:40.946 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:40.947 [XNIO-1 task-2] D4SL0pUbQZWS3cSK8eCRCw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:40.950 [XNIO-1 task-2] UdMLpPb7Ri-8CSOUe3Bbiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/50175bc7-28cf-4665-bf2c-f30adfe9be0d, base path is set to: null +20:00:40.950 [XNIO-1 task-2] UdMLpPb7Ri-8CSOUe3Bbiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:40.950 [XNIO-1 task-2] UdMLpPb7Ri-8CSOUe3Bbiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:40.950 [XNIO-1 task-2] UdMLpPb7Ri-8CSOUe3Bbiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/50175bc7-28cf-4665-bf2c-f30adfe9be0d, base path is set to: null +20:00:40.951 [XNIO-1 task-2] UdMLpPb7Ri-8CSOUe3Bbiw DEBUG com.networknt.schema.TypeValidator debug - validate( "50175bc7-28cf-4665-bf2c-f30adfe9be0d", "50175bc7-28cf-4665-bf2c-f30adfe9be0d", clientId) +20:00:40.966 [XNIO-1 task-2] 55_-vySMTWu-h-Z08fDDLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:40.966 [XNIO-1 task-2] 55_-vySMTWu-h-Z08fDDLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:40.966 [XNIO-1 task-2] 55_-vySMTWu-h-Z08fDDLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:40.966 [XNIO-1 task-2] 55_-vySMTWu-h-Z08fDDLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:40.977 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5345d221-9530-496a-8d9f-ea96f23f798b +20:00:40.978 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5345d221-9530-496a-8d9f-ea96f23f798b +20:00:40.985 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6f3402a6 +20:00:40.996 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5345d221-9530-496a-8d9f-ea96f23f798b +20:00:41.004 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:86011659-be00-426a-93ee-f858938112fe +20:00:41.055 [XNIO-1 task-2] 55_-vySMTWu-h-Z08fDDLw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.055 [XNIO-1 task-2] 55_-vySMTWu-h-Z08fDDLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.061 [XNIO-1 task-2] 5R3bz0zRQ1-ad4VD-FobZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f57196-a9ef-417e-b720-1fd3a98be031 +20:00:41.061 [XNIO-1 task-2] 5R3bz0zRQ1-ad4VD-FobZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.061 [XNIO-1 task-2] 5R3bz0zRQ1-ad4VD-FobZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:41.061 [XNIO-1 task-2] 5R3bz0zRQ1-ad4VD-FobZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32f57196-a9ef-417e-b720-1fd3a98be031 +20:00:41.062 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:32f57196-a9ef-417e-b720-1fd3a98be031 +20:00:41.072 [XNIO-1 task-2] xcIdaPziT02OMRyDAB9h9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d +20:00:41.072 [XNIO-1 task-2] xcIdaPziT02OMRyDAB9h9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.072 [XNIO-1 task-2] xcIdaPziT02OMRyDAB9h9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:41.073 [XNIO-1 task-2] xcIdaPziT02OMRyDAB9h9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d +20:00:41.082 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.082 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.083 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.083 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.083 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.084 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.084 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.084 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.084 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.084 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.084 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.084 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e317f2ab-e4a6-448a-8427-a0306616","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.085 [XNIO-1 task-2] 2VDChdcwSoWJ9kaT9H1Yfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.088 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.088 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.089 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.089 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.089 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.089 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "f4988e92-3aaf-425c-8108-24272d6dd816", {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.089 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.089 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.090 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "2d2405f3-f336-4bf4-8bdd-8f58f68c", {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.090 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.090 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2d2405f3-f336-4bf4-8bdd-8f58f68c","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.090 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.090 [XNIO-1 task-2] UPCu5K-XTFiNqi_CxzNS3A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.096 [XNIO-1 task-2] nXD4u9TQRQGs5pgzmhpfHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.096 [XNIO-1 task-2] nXD4u9TQRQGs5pgzmhpfHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.096 [XNIO-1 task-2] nXD4u9TQRQGs5pgzmhpfHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.097 [XNIO-1 task-2] nXD4u9TQRQGs5pgzmhpfHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.124 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.124 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.125 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.126 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.126 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.126 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.126 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.126 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.127 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.127 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.127 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.127 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b9445d1-1bf6-47a7-83cc-b79c7bfe","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.127 [XNIO-1 task-2] A26bUtTeTHGFWu8Wc1KcSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.133 [XNIO-1 task-2] FwFu3yydTrmWq4Qk6bf-7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.133 [XNIO-1 task-2] FwFu3yydTrmWq4Qk6bf-7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.133 [XNIO-1 task-2] FwFu3yydTrmWq4Qk6bf-7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.158 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.158 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.159 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.159 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "f4988e92-3aaf-425c-8108-24272d6dd816", {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "a2c34e9b-54a7-4d99-8764-3f6777c7", {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a2c34e9b-54a7-4d99-8764-3f6777c7","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.160 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.161 [XNIO-1 task-2] 2cDJEEtyQEij7xqbnrF_zA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.167 [XNIO-1 task-2] mf0ANsLVQSqO8mDnCgSUFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:41.168 [XNIO-1 task-2] mf0ANsLVQSqO8mDnCgSUFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.168 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:88dc7609 +20:00:41.168 [XNIO-1 task-2] mf0ANsLVQSqO8mDnCgSUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:41.168 [XNIO-1 task-2] mf0ANsLVQSqO8mDnCgSUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:41.169 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:88dc7609 +20:00:41.176 [XNIO-1 task-2] fA3XJAMZQ5m-e3rZ5lMZ0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:41.176 [XNIO-1 task-2] fA3XJAMZQ5m-e3rZ5lMZ0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.176 [XNIO-1 task-2] fA3XJAMZQ5m-e3rZ5lMZ0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.177 [XNIO-1 task-2] fA3XJAMZQ5m-e3rZ5lMZ0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:41.180 [XNIO-1 task-2] fA3XJAMZQ5m-e3rZ5lMZ0g DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.209 [XNIO-1 task-2] fA3XJAMZQ5m-e3rZ5lMZ0g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.214 [XNIO-1 task-2] LLyTZut6RRuBDVVG9AqCuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:41.214 [XNIO-1 task-2] LLyTZut6RRuBDVVG9AqCuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.214 [XNIO-1 task-2] LLyTZut6RRuBDVVG9AqCuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.215 [XNIO-1 task-2] LLyTZut6RRuBDVVG9AqCuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:41.215 [XNIO-1 task-2] LLyTZut6RRuBDVVG9AqCuA DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.224 [XNIO-1 task-2] LLyTZut6RRuBDVVG9AqCuA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.231 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.231 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.232 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.232 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.232 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.233 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.233 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.233 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.233 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.233 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.233 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.233 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6403b7fe-fa0f-4869-bcea-4e1ee282","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.234 [XNIO-1 task-2] QVYDi608TZKuf69KpidFOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.239 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.239 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.240 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.240 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.241 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.241 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "86a6054c-cf2f-4e7c-95d1-83ac277b5c8d", {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.241 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.241 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.241 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "55feeac0-bb0b-4720-ab2a-1efe1291", {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.241 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.242 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"55feeac0-bb0b-4720-ab2a-1efe1291","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.242 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.242 [XNIO-1 task-2] jAlpFL7HSlmcU7IBCBHQcg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.248 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.248 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.249 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.249 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.250 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"27c5cf3a-433c-4e81-b5c5-10215ae0","clientDesc":"86a6054c-cf2f-4e7c-95d1-83ac277b5c8d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.273 [XNIO-1 task-2] MyHgh7rnTd6o__dH1-M4gg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.277 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.277 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.278 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.278 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.278 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.278 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f4988e92-3aaf-425c-8108-24272d6dd816", {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.278 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.279 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.279 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5f5a4511-d602-4192-b323-339051dc", {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.279 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.279 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5f5a4511-d602-4192-b323-339051dc","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.279 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.279 [XNIO-1 task-2] ZGa_aLXSSVmMfDVmJfrF7Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.283 [XNIO-1 task-2] TIy_g3MBTdCF6s_jVpsdpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:41.284 [XNIO-1 task-2] TIy_g3MBTdCF6s_jVpsdpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.284 [XNIO-1 task-2] TIy_g3MBTdCF6s_jVpsdpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.284 [XNIO-1 task-2] TIy_g3MBTdCF6s_jVpsdpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:41.286 [XNIO-1 task-2] TIy_g3MBTdCF6s_jVpsdpg DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.358 [XNIO-1 task-2] TIy_g3MBTdCF6s_jVpsdpg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.366 [XNIO-1 task-2] i0t_rr3cRdGnNyU8B-B7mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:41.366 [XNIO-1 task-2] i0t_rr3cRdGnNyU8B-B7mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.366 [XNIO-1 task-2] i0t_rr3cRdGnNyU8B-B7mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.366 [XNIO-1 task-2] i0t_rr3cRdGnNyU8B-B7mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:41.367 [XNIO-1 task-2] i0t_rr3cRdGnNyU8B-B7mg DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +20:00:41.385 [XNIO-1 task-2] Evs_ii3cS3qw3ztmEUUsaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:41.385 [XNIO-1 task-2] Evs_ii3cS3qw3ztmEUUsaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.385 [XNIO-1 task-2] Evs_ii3cS3qw3ztmEUUsaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:41.385 [XNIO-1 task-2] Evs_ii3cS3qw3ztmEUUsaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:41.392 [XNIO-1 task-2] dfwBM_VzTUKczXSHbP5cww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:41.392 [XNIO-1 task-2] dfwBM_VzTUKczXSHbP5cww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.392 [XNIO-1 task-2] dfwBM_VzTUKczXSHbP5cww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.392 [XNIO-1 task-2] dfwBM_VzTUKczXSHbP5cww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:41.393 [XNIO-1 task-2] dfwBM_VzTUKczXSHbP5cww DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.402 [XNIO-1 task-2] dfwBM_VzTUKczXSHbP5cww DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.406 [XNIO-1 task-2] kR2HISeUQm2sQYKKapyldQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:41.406 [XNIO-1 task-2] kR2HISeUQm2sQYKKapyldQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.406 [XNIO-1 task-2] kR2HISeUQm2sQYKKapyldQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.406 [XNIO-1 task-2] kR2HISeUQm2sQYKKapyldQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:41.407 [XNIO-1 task-2] kR2HISeUQm2sQYKKapyldQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +20:00:41.410 [XNIO-1 task-2] PkxPhKklQKKSmaYLFYy9CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:41.410 [XNIO-1 task-2] PkxPhKklQKKSmaYLFYy9CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.410 [XNIO-1 task-2] PkxPhKklQKKSmaYLFYy9CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.411 [XNIO-1 task-2] PkxPhKklQKKSmaYLFYy9CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:41.411 [XNIO-1 task-2] PkxPhKklQKKSmaYLFYy9CA DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +20:00:41.411 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:31529d7a-87de-4183-a96c-5bcca2d657c8 +20:00:41.414 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.414 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.415 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba76d35e-822b-4252-8822-87a83a85d26a", {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "6ca09f7d-c4bc-4b7e-8435-f41f1da4", {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6ca09f7d-c4bc-4b7e-8435-f41f1da4","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.416 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.417 [XNIO-1 task-2] 4r0miEMjTRqh3TD0HRe_Yw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.424 [XNIO-1 task-2] cLlshjshTL-P6e3EzeRTuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb9acf60-61d2-466e-abbb-7007ece1637c, base path is set to: null +20:00:41.425 [XNIO-1 task-2] cLlshjshTL-P6e3EzeRTuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.425 [XNIO-1 task-2] cLlshjshTL-P6e3EzeRTuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.425 [XNIO-1 task-2] cLlshjshTL-P6e3EzeRTuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb9acf60-61d2-466e-abbb-7007ece1637c, base path is set to: null +20:00:41.425 [XNIO-1 task-2] cLlshjshTL-P6e3EzeRTuA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.467 [XNIO-1 task-2] cLlshjshTL-P6e3EzeRTuA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/eb9acf60-61d2-466e-abbb-7007ece1637c} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.472 [XNIO-1 task-2] O4gy6b2uThaHbTouVwwQxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.473 [XNIO-1 task-2] O4gy6b2uThaHbTouVwwQxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.473 [XNIO-1 task-2] O4gy6b2uThaHbTouVwwQxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.473 [XNIO-1 task-2] O4gy6b2uThaHbTouVwwQxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.554 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:88dc7609 +20:00:41.586 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6637b6d6-9787-43d9-b088-007a489ded8d +20:00:41.558 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.607 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.608 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.608 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.611 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ec83720c-68c7-4f6b-95fb-a81fe290","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.612 [XNIO-1 task-2] 10l9rnoCTWS1yJmQKPfblg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.616 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.616 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.617 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "f4988e92-3aaf-425c-8108-24272d6dd816", {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "ccdc5d5a-aa20-490b-925a-1abc5ffb", {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ccdc5d5a-aa20-490b-925a-1abc5ffb","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.618 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.619 [XNIO-1 task-2] pmyP3vWwQwK4ybYw80z8Ig DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.626 [XNIO-1 task-2] eDesb0vKQCWA3zF3ldoKJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.626 [XNIO-1 task-2] eDesb0vKQCWA3zF3ldoKJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.626 [XNIO-1 task-2] eDesb0vKQCWA3zF3ldoKJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.627 [XNIO-1 task-2] eDesb0vKQCWA3zF3ldoKJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.637 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6637b6d6-9787-43d9-b088-007a489ded8d +20:00:41.647 [XNIO-1 task-2] zjOUVhjWQD2bG6Va-6f5ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dcd5e52a-95ca-48e9-a287-6e650c0614b7 +20:00:41.647 [XNIO-1 task-2] zjOUVhjWQD2bG6Va-6f5ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.647 [XNIO-1 task-2] zjOUVhjWQD2bG6Va-6f5ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:41.648 [XNIO-1 task-2] zjOUVhjWQD2bG6Va-6f5ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dcd5e52a-95ca-48e9-a287-6e650c0614b7 +20:00:41.695 [XNIO-1 task-2] G2DrMz82QPWCcIKIagYixQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.695 [XNIO-1 task-2] G2DrMz82QPWCcIKIagYixQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.695 [XNIO-1 task-2] G2DrMz82QPWCcIKIagYixQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.714 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:88dc7609 +20:00:41.738 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.738 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.739 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.739 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.740 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e996bef-1b45-4d5a-b9d1-5ef4d152","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.745 [XNIO-1 task-2] _aSseYWCRCip1axLJdR-ew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.753 [XNIO-1 task-2] 13AXYrkSTFecke3oo-zB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.753 [XNIO-1 task-2] 13AXYrkSTFecke3oo-zB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.754 [XNIO-1 task-2] 13AXYrkSTFecke3oo-zB1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.761 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:51ca3c5b-7857-40af-bb97-d4b12cbf299a +20:00:41.771 [XNIO-1 task-2] S261wSMPSy2C5miYQof3-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:41.771 [XNIO-1 task-2] S261wSMPSy2C5miYQof3-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.771 [XNIO-1 task-2] S261wSMPSy2C5miYQof3-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.771 [XNIO-1 task-2] S261wSMPSy2C5miYQof3-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:41.772 [XNIO-1 task-2] S261wSMPSy2C5miYQof3-g DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.782 [XNIO-1 task-2] S261wSMPSy2C5miYQof3-g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.783 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0109f7fa-ba3a-4ae8-ad63-039b65d58a8d +20:00:41.815 [XNIO-1 task-2] 0U3jyOCNTE26kRxyvocDxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7b41b179-365b-454a-bc1e-9d313e216dc6, base path is set to: null +20:00:41.816 [XNIO-1 task-2] 0U3jyOCNTE26kRxyvocDxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.816 [XNIO-1 task-2] 0U3jyOCNTE26kRxyvocDxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.816 [XNIO-1 task-2] 0U3jyOCNTE26kRxyvocDxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7b41b179-365b-454a-bc1e-9d313e216dc6, base path is set to: null +20:00:41.816 [XNIO-1 task-2] 0U3jyOCNTE26kRxyvocDxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", clientId) +20:00:41.825 [XNIO-1 task-2] mTjmJ0yjRdmWU9KB1WvyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.825 [XNIO-1 task-2] mTjmJ0yjRdmWU9KB1WvyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.826 [XNIO-1 task-2] mTjmJ0yjRdmWU9KB1WvyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.849 [XNIO-1 task-2] L4ytGIlhSaO_iQhKyLGoGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.850 [XNIO-1 task-2] L4ytGIlhSaO_iQhKyLGoGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.850 [XNIO-1 task-2] L4ytGIlhSaO_iQhKyLGoGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.850 [XNIO-1 task-2] L4ytGIlhSaO_iQhKyLGoGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.851 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0109f7fa-ba3a-4ae8-ad63-039b65d58a8d +20:00:41.866 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.867 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.867 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.868 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.868 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.868 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG com.networknt.schema.TypeValidator debug - validate( "840fa820-bbd3-4ced-8cfc-c2bf3f8bb498", {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.868 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.869 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.869 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG com.networknt.schema.TypeValidator debug - validate( "bbc694e4-04e0-4fc5-8851-1ebb8b15", {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.870 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.871 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bbc694e4-04e0-4fc5-8851-1ebb8b15","clientDesc":"840fa820-bbd3-4ced-8cfc-c2bf3f8bb498","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.872 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.893 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6f3402a6 +20:00:41.872 [XNIO-1 task-2] E4lxhjH8S1Owm9janJb57A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.903 [XNIO-1 task-2] -0BAZHFlSgu2bv2OKxJfSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.903 [XNIO-1 task-2] -0BAZHFlSgu2bv2OKxJfSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.903 [XNIO-1 task-2] -0BAZHFlSgu2bv2OKxJfSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.909 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:88dc7609 +20:00:41.914 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:88dc7609 +20:00:41.916 [XNIO-1 task-2] -0BAZHFlSgu2bv2OKxJfSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.931 [XNIO-1 task-2] XcX17RSBRZKTUAtco6KEWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.931 [XNIO-1 task-2] XcX17RSBRZKTUAtco6KEWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.931 [XNIO-1 task-2] XcX17RSBRZKTUAtco6KEWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.935 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:55a2ed73-3371-495e-b0cb-6e86415f8de9 +20:00:41.953 [XNIO-1 task-2] tOcPI1u3TNaSTiQ5gXosgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/51ca3c5b-7857-40af-bb97-d4b12cbf299a, base path is set to: null +20:00:41.954 [XNIO-1 task-2] tOcPI1u3TNaSTiQ5gXosgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.954 [XNIO-1 task-2] tOcPI1u3TNaSTiQ5gXosgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:41.954 [XNIO-1 task-2] tOcPI1u3TNaSTiQ5gXosgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/51ca3c5b-7857-40af-bb97-d4b12cbf299a, base path is set to: null +20:00:41.954 [XNIO-1 task-2] tOcPI1u3TNaSTiQ5gXosgg DEBUG com.networknt.schema.TypeValidator debug - validate( "51ca3c5b-7857-40af-bb97-d4b12cbf299a", "51ca3c5b-7857-40af-bb97-d4b12cbf299a", clientId) +20:00:41.964 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.964 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.964 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.965 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.965 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.965 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.966 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.966 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.966 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.966 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.966 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.966 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"be6d9b02-58db-4500-95e5-d6fcd7ac","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.968 [XNIO-1 task-2] OOE-ThRTTDiztqQ3NHZs_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:41.971 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.971 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.972 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6bc3c92-93cd-482f-9707-49995bb0382e", {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "96a17f3e-538b-42ea-b95c-ad8f4613", {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"96a17f3e-538b-42ea-b95c-ad8f4613","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.973 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:41.974 [XNIO-1 task-2] XCDa8YkGT_62xvJxq-wPYw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:41.977 [XNIO-1 task-2] QRZCVv0mRVu8GRx1-ogVBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.977 [XNIO-1 task-2] QRZCVv0mRVu8GRx1-ogVBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:41.978 [XNIO-1 task-2] QRZCVv0mRVu8GRx1-ogVBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:41.978 [XNIO-1 task-2] QRZCVv0mRVu8GRx1-ogVBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.019 [XNIO-1 task-2] _ik6iB5XToqMzlWS_JsaOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.019 [XNIO-1 task-2] _ik6iB5XToqMzlWS_JsaOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.019 [XNIO-1 task-2] _ik6iB5XToqMzlWS_JsaOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.020 [XNIO-1 task-2] _ik6iB5XToqMzlWS_JsaOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.022 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a823bf80 +20:00:42.028 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a823bf80 +20:00:42.061 [XNIO-1 task-2] uQTx3Ip8SPeQcyj4jstZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:42.061 [XNIO-1 task-2] uQTx3Ip8SPeQcyj4jstZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.061 [XNIO-1 task-2] uQTx3Ip8SPeQcyj4jstZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:42.062 [XNIO-1 task-2] uQTx3Ip8SPeQcyj4jstZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:42.069 [XNIO-1 task-2] wxZr8SUXSEuf0X3q3bZmDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.069 [XNIO-1 task-2] wxZr8SUXSEuf0X3q3bZmDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.070 [XNIO-1 task-2] wxZr8SUXSEuf0X3q3bZmDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.092 [XNIO-1 task-2] SmWauOOOTwGQV6KB4f6e0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.092 [XNIO-1 task-2] SmWauOOOTwGQV6KB4f6e0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.093 [XNIO-1 task-2] SmWauOOOTwGQV6KB4f6e0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.093 [XNIO-1 task-2] SmWauOOOTwGQV6KB4f6e0w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.107 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.107 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.109 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.110 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6061665-b933-43da-b3c1-8ef16099","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.111 [XNIO-1 task-2] WO-b238mSjGdIfl4lCglxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.115 [XNIO-1 task-2] S3vn-ARXTAqz9VNTulEvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.115 [XNIO-1 task-2] S3vn-ARXTAqz9VNTulEvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.115 [XNIO-1 task-2] S3vn-ARXTAqz9VNTulEvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.139 [XNIO-1 task-2] EW0vcFXqSt6Kpm4J3Zndjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.139 [XNIO-1 task-2] EW0vcFXqSt6Kpm4J3Zndjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.140 [XNIO-1 task-2] EW0vcFXqSt6Kpm4J3Zndjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.171 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:83cb8bd7-af06-4619-b9ec-3ed7aba41368 +20:00:42.280 [XNIO-1 task-2] PlNFN20dTyW4f7VxXsiBBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.281 [XNIO-1 task-2] PlNFN20dTyW4f7VxXsiBBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.281 [XNIO-1 task-2] PlNFN20dTyW4f7VxXsiBBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.282 [XNIO-1 task-2] PlNFN20dTyW4f7VxXsiBBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.301 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.301 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.302 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.302 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.302 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.303 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.303 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.303 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.303 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.303 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.303 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.303 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"70d8dc16-8c09-43ae-9aba-03fc739f","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.304 [XNIO-1 task-2] mXhwwNyYT667l9aAqv6gRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.310 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.310 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.310 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.311 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.311 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.311 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "54f6f09f-2aa8-4cdf-9091-9e7edb68a54c", {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.311 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.311 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.311 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "efd6dd55-1ba1-4a49-9803-e73d853b", {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.312 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.312 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"efd6dd55-1ba1-4a49-9803-e73d853b","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.312 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.312 [XNIO-1 task-2] MRltBPYbRcmtRl_GFWsAtQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.316 [XNIO-1 task-2] hofa1gwRTMS0IRjeIUvKkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.316 [XNIO-1 task-2] hofa1gwRTMS0IRjeIUvKkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.316 [XNIO-1 task-2] hofa1gwRTMS0IRjeIUvKkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.366 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.366 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.367 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.368 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.368 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.368 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.369 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.369 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.369 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.369 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.369 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.369 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef08495a-57b6-4d6d-bc41-3c71c5d2","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.370 [XNIO-1 task-2] WIOv6qObTDGZe4s-gp1PaQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.373 [XNIO-1 task-2] ZBWfxGbfTr2slV8tBOUNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7b41b179-365b-454a-bc1e-9d313e216dc6 +20:00:42.373 [XNIO-1 task-2] ZBWfxGbfTr2slV8tBOUNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.373 [XNIO-1 task-2] ZBWfxGbfTr2slV8tBOUNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:42.374 [XNIO-1 task-2] ZBWfxGbfTr2slV8tBOUNJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7b41b179-365b-454a-bc1e-9d313e216dc6 +20:00:42.380 [XNIO-1 task-2] wr6bFD11QUiOI1KNeFZFxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7b41b179-365b-454a-bc1e-9d313e216dc6, base path is set to: null +20:00:42.381 [XNIO-1 task-2] wr6bFD11QUiOI1KNeFZFxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.381 [XNIO-1 task-2] wr6bFD11QUiOI1KNeFZFxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.381 [XNIO-1 task-2] wr6bFD11QUiOI1KNeFZFxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7b41b179-365b-454a-bc1e-9d313e216dc6, base path is set to: null +20:00:42.381 [XNIO-1 task-2] wr6bFD11QUiOI1KNeFZFxw DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", clientId) +20:00:42.384 [XNIO-1 task-2] KGcXjPI0T72KCfqEdKBPSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.384 [XNIO-1 task-2] KGcXjPI0T72KCfqEdKBPSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.384 [XNIO-1 task-2] KGcXjPI0T72KCfqEdKBPSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.385 [XNIO-1 task-2] KGcXjPI0T72KCfqEdKBPSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.407 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.407 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.408 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.410 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.410 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.411 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a6bc3c92-93cd-482f-9707-49995bb0382e", {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.411 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.411 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.411 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9ce3c97-b7ae-45ac-940b-5d9e72a1", {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.412 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.412 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f9ce3c97-b7ae-45ac-940b-5d9e72a1","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.412 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.412 [XNIO-1 task-2] 0qUHaNgPQuyKVasOWJvGMQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.416 [XNIO-1 task-2] 7GzBcwGvQbCaw1EIQ-cZxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.416 [XNIO-1 task-2] 7GzBcwGvQbCaw1EIQ-cZxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.416 [XNIO-1 task-2] 7GzBcwGvQbCaw1EIQ-cZxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.417 [XNIO-1 task-2] 7GzBcwGvQbCaw1EIQ-cZxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.442 [XNIO-1 task-2] vgLCTNZkQiq1cT5yKndEVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/77a2018e-21be-4f46-a943-cb29ab68c7eb, base path is set to: null +20:00:42.442 [XNIO-1 task-2] vgLCTNZkQiq1cT5yKndEVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.443 [XNIO-1 task-2] vgLCTNZkQiq1cT5yKndEVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.453 [XNIO-1 task-2] vgLCTNZkQiq1cT5yKndEVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/77a2018e-21be-4f46-a943-cb29ab68c7eb, base path is set to: null +20:00:42.455 [XNIO-1 task-2] vgLCTNZkQiq1cT5yKndEVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "77a2018e-21be-4f46-a943-cb29ab68c7eb", "77a2018e-21be-4f46-a943-cb29ab68c7eb", clientId) +20:00:42.471 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.471 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.472 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.473 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.473 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.473 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG com.networknt.schema.TypeValidator debug - validate( "a613de6f-1f51-4ab6-a20b-a3ec97afab28", {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.473 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.473 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.473 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG com.networknt.schema.TypeValidator debug - validate( "ea1a7913-2109-46ac-9f67-99e9f784", {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.474 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.474 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ea1a7913-2109-46ac-9f67-99e9f784","clientDesc":"a613de6f-1f51-4ab6-a20b-a3ec97afab28","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.474 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.475 [XNIO-1 task-2] ikxUZQ1fTTCr7lGLLj_avA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.478 [XNIO-1 task-2] mTMlFigiTxSWaMQdenUv_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.479 [XNIO-1 task-2] mTMlFigiTxSWaMQdenUv_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.479 [XNIO-1 task-2] mTMlFigiTxSWaMQdenUv_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.505 [XNIO-1 task-2] Z3_e4087S6Go3H6LIx9A5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.506 [XNIO-1 task-2] Z3_e4087S6Go3H6LIx9A5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.506 [XNIO-1 task-2] Z3_e4087S6Go3H6LIx9A5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.507 [XNIO-1 task-2] Z3_e4087S6Go3H6LIx9A5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.571 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.572 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.573 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.574 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.574 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.575 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.575 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.575 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.575 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.575 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.575 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.575 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20ff6dc6-3e98-4d1f-8805-2df0cef9","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.576 [XNIO-1 task-2] VVxlMOuHRh2qHBl_7l9ppQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.584 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.584 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.585 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.586 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.587 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.589 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG com.networknt.schema.TypeValidator debug - validate( "bded2f4c-f2d4-4f00-b0ea-f3284386db3c", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.589 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.590 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.590 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae2c17c8-e8a9-44f7-9718-e9866988", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.591 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.592 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ae2c17c8-e8a9-44f7-9718-e9866988","clientDesc":"bded2f4c-f2d4-4f00-b0ea-f3284386db3c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.595 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.595 [XNIO-1 task-2] 2LHqQrL8Qd6vTu1L7T5CUw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.599 [XNIO-1 task-2] oJZ17KQtRKWvPFuWQoolwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0, base path is set to: null +20:00:42.599 [XNIO-1 task-2] oJZ17KQtRKWvPFuWQoolwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.599 [XNIO-1 task-2] oJZ17KQtRKWvPFuWQoolwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.599 [XNIO-1 task-2] oJZ17KQtRKWvPFuWQoolwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0, base path is set to: null +20:00:42.600 [XNIO-1 task-2] oJZ17KQtRKWvPFuWQoolwA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4b472d-eead-4f78-82c3-079d523bdcd0", "0f4b472d-eead-4f78-82c3-079d523bdcd0", clientId) +20:00:42.607 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.607 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.608 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.609 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.609 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.609 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f4988e92-3aaf-425c-8108-24272d6dd816", {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.609 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.609 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.611 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c2120b30-de5d-408e-a79c-bd233229", {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.611 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.611 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c2120b30-de5d-408e-a79c-bd233229","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.611 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.614 [XNIO-1 task-2] sGXsRz-SSWK9qBKpJ6Qp1Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.618 [XNIO-1 task-2] fnkM__MdSkO0gip1LDLyAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.618 [XNIO-1 task-2] fnkM__MdSkO0gip1LDLyAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.618 [XNIO-1 task-2] fnkM__MdSkO0gip1LDLyAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.645 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5493efd7-f071-4518-9b2f-67a9a34bf2e6 +20:00:42.672 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.672 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.672 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.673 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.673 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.673 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.674 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.674 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.674 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.674 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.674 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.674 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e016531f-3a17-4903-9d64-db7532c6","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.676 [XNIO-1 task-2] 46E9c-PbQeaHAonWV9gzuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.681 [XNIO-1 task-2] PUAfbxymQ_ihzOLIT5GWGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.681 [XNIO-1 task-2] PUAfbxymQ_ihzOLIT5GWGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.681 [XNIO-1 task-2] PUAfbxymQ_ihzOLIT5GWGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.706 [XNIO-1 task-2] dLy9Js0QTBe-LEseHBnICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.706 [XNIO-1 task-2] dLy9Js0QTBe-LEseHBnICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.706 [XNIO-1 task-2] dLy9Js0QTBe-LEseHBnICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.707 [XNIO-1 task-2] dLy9Js0QTBe-LEseHBnICQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.728 [XNIO-1 task-2] 7rKdwLgfRVynVfjAT1VE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fd052810-c12b-428a-9677-2ad3f95903eb +20:00:42.728 [XNIO-1 task-2] 7rKdwLgfRVynVfjAT1VE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.729 [XNIO-1 task-2] 7rKdwLgfRVynVfjAT1VE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:42.729 [XNIO-1 task-2] 7rKdwLgfRVynVfjAT1VE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fd052810-c12b-428a-9677-2ad3f95903eb +20:00:42.738 [XNIO-1 task-2] G8CBQVN2RQSTFITTju5Jkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf6d78af-d182-4d80-af4e-3fc8f1d00b44, base path is set to: null +20:00:42.738 [XNIO-1 task-2] G8CBQVN2RQSTFITTju5Jkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.738 [XNIO-1 task-2] G8CBQVN2RQSTFITTju5Jkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.738 [XNIO-1 task-2] G8CBQVN2RQSTFITTju5Jkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf6d78af-d182-4d80-af4e-3fc8f1d00b44, base path is set to: null +20:00:42.739 [XNIO-1 task-2] G8CBQVN2RQSTFITTju5Jkg DEBUG com.networknt.schema.TypeValidator debug - validate( "cf6d78af-d182-4d80-af4e-3fc8f1d00b44", "cf6d78af-d182-4d80-af4e-3fc8f1d00b44", clientId) +20:00:42.766 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.766 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.767 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.767 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fea8a03b +20:00:42.768 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.768 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.769 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.769 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.770 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.770 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.770 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.770 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.770 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03fc665f-4af2-4dc5-9ca1-d07629ca","clientDesc":"7aff2254-9f67-459d-b8c6-d352c4011dc6","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.771 [XNIO-1 task-2] Xhwhn7GrRuu0TyEWwcDLlA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.777 [XNIO-1 task-2] fm2rVf_JQ_e1Uwpg4ECNQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.777 [XNIO-1 task-2] fm2rVf_JQ_e1Uwpg4ECNQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.777 [XNIO-1 task-2] fm2rVf_JQ_e1Uwpg4ECNQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.778 [XNIO-1 task-2] fm2rVf_JQ_e1Uwpg4ECNQw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.800 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.801 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.801 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.802 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.802 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.802 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "15b3fc15-5469-422c-9381-7ed99ff2d79d", {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.802 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.802 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.802 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "44394588-b0b1-403f-ab28-7b2c2ebf", {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.802 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.803 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"44394588-b0b1-403f-ab28-7b2c2ebf","clientDesc":"15b3fc15-5469-422c-9381-7ed99ff2d79d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.803 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.825 [XNIO-1 task-2] jcOiwwuERFC8Q2b2Ccz6Ug DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.829 [XNIO-1 task-2] TIMIPRFLTDa9NZyfo8GJaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:42.829 [XNIO-1 task-2] TIMIPRFLTDa9NZyfo8GJaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.829 [XNIO-1 task-2] TIMIPRFLTDa9NZyfo8GJaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.829 [XNIO-1 task-2] TIMIPRFLTDa9NZyfo8GJaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:42.830 [XNIO-1 task-2] TIMIPRFLTDa9NZyfo8GJaw DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", clientId) +20:00:42.834 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.834 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.834 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.835 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.835 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.835 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG com.networknt.schema.TypeValidator debug - validate( "a6bc3c92-93cd-482f-9707-49995bb0382e", {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.835 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.835 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.836 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG com.networknt.schema.TypeValidator debug - validate( "04279a01-bc33-42eb-ae58-62770ae0", {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.836 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.836 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"04279a01-bc33-42eb-ae58-62770ae0","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.836 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.836 [XNIO-1 task-2] qP9KEX1wSrurdM7DJ0mLng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.839 [XNIO-1 task-2] K3BM4xnFRlCgrBdEdcfLGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639, base path is set to: null +20:00:42.839 [XNIO-1 task-2] K3BM4xnFRlCgrBdEdcfLGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.839 [XNIO-1 task-2] K3BM4xnFRlCgrBdEdcfLGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.840 [XNIO-1 task-2] K3BM4xnFRlCgrBdEdcfLGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639, base path is set to: null +20:00:42.841 [XNIO-1 task-2] K3BM4xnFRlCgrBdEdcfLGA DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", clientId) +20:00:42.850 [XNIO-1 task-2] htO79yp5Q82vF4Jy4XoEEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20695699-f4c3-4216-8e40-6783f832f3fc +20:00:42.850 [XNIO-1 task-2] htO79yp5Q82vF4Jy4XoEEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.850 [XNIO-1 task-2] htO79yp5Q82vF4Jy4XoEEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:42.851 [XNIO-1 task-2] htO79yp5Q82vF4Jy4XoEEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20695699-f4c3-4216-8e40-6783f832f3fc +20:00:42.860 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.860 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.860 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.861 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.861 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.861 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.861 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.861 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.861 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.862 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.862 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3c957eb3-acad-4af5-b66f-661294fd2fb1 +20:00:42.863 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.863 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5307b78e-9c05-4b10-8c34-cc74aa0f","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.863 [XNIO-1 task-2] 578h2KK7TFak5ewtmrgmsQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.868 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.868 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.869 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.869 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.869 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG com.networknt.schema.TypeValidator debug - validate( "2c143e7d-f053-4538-8045-08ccc39d9c2d", {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a26aaaf-8ba2-4a6a-801a-c0638034", {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0a26aaaf-8ba2-4a6a-801a-c0638034","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.870 [XNIO-1 task-2] _3zPDoU0T2aWHfHhM141CA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.876 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.876 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.877 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:42.877 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.877 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.878 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.878 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.878 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:42.878 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:42.878 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.878 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.878 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"63ba0fc4-53fe-4307-9725-84383b30","clientDesc":"2c143e7d-f053-4538-8045-08ccc39d9c2d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:42.879 [XNIO-1 task-2] lS0yCJvDT_OvypQPTYu9RA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:42.881 [XNIO-1 task-2] x-ZEPC8RQYmTnfl1pZd0UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20695699-f4c3-4216-8e40-6783f832f3fc +20:00:42.881 [XNIO-1 task-2] x-ZEPC8RQYmTnfl1pZd0UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.881 [XNIO-1 task-2] x-ZEPC8RQYmTnfl1pZd0UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:42.882 [XNIO-1 task-2] x-ZEPC8RQYmTnfl1pZd0UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/20695699-f4c3-4216-8e40-6783f832f3fc +20:00:42.893 [XNIO-1 task-2] c85XMNrJQRWg0at5b1mEuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1e09c8d-378f-42f1-a49d-dd37cc8491e3, base path is set to: null +20:00:42.893 [XNIO-1 task-2] c85XMNrJQRWg0at5b1mEuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.893 [XNIO-1 task-2] c85XMNrJQRWg0at5b1mEuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.893 [XNIO-1 task-2] c85XMNrJQRWg0at5b1mEuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c1e09c8d-378f-42f1-a49d-dd37cc8491e3, base path is set to: null +20:00:42.894 [XNIO-1 task-2] c85XMNrJQRWg0at5b1mEuA DEBUG com.networknt.schema.TypeValidator debug - validate( "c1e09c8d-378f-42f1-a49d-dd37cc8491e3", "c1e09c8d-378f-42f1-a49d-dd37cc8491e3", clientId) +20:00:42.903 [XNIO-1 task-2] qLMQcX-nTp6pyivtTMlPEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.903 [XNIO-1 task-2] qLMQcX-nTp6pyivtTMlPEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.903 [XNIO-1 task-2] qLMQcX-nTp6pyivtTMlPEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.904 [XNIO-1 task-2] qLMQcX-nTp6pyivtTMlPEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.914 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a823bf80 +20:00:42.928 [XNIO-1 task-2] AhZ1LcrTSKWpsJQbEzbleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:42.928 [XNIO-1 task-2] AhZ1LcrTSKWpsJQbEzbleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.928 [XNIO-1 task-2] AhZ1LcrTSKWpsJQbEzbleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:42.928 [XNIO-1 task-2] AhZ1LcrTSKWpsJQbEzbleQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:42.932 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0b371fc6 +20:00:42.936 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0b371fc6 +20:00:42.941 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6f3402a6 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:42.942 [XNIO-1 task-2] AhZ1LcrTSKWpsJQbEzbleQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.948 [XNIO-1 task-2] sOfrCM9zTiG2AV_ZACScWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639, base path is set to: null +20:00:42.948 [XNIO-1 task-2] sOfrCM9zTiG2AV_ZACScWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.948 [XNIO-1 task-2] sOfrCM9zTiG2AV_ZACScWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.949 [XNIO-1 task-2] sOfrCM9zTiG2AV_ZACScWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639, base path is set to: null +20:00:42.949 [XNIO-1 task-2] sOfrCM9zTiG2AV_ZACScWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", clientId) +20:00:42.952 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0b371fc6 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:42.958 [XNIO-1 task-2] sOfrCM9zTiG2AV_ZACScWQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/627c71d7-5480-4712-9595-672acc38a639} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.963 [XNIO-1 task-2] 5uVHsVmGT6Kaf_nEVS-xYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:42.963 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e044e454-ea1a-49b0-8c79-3c6d90439ed6 +20:00:42.963 [XNIO-1 task-2] 5uVHsVmGT6Kaf_nEVS-xYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.963 [XNIO-1 task-2] 5uVHsVmGT6Kaf_nEVS-xYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:42.963 [XNIO-1 task-2] 5uVHsVmGT6Kaf_nEVS-xYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:42.964 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e044e454-ea1a-49b0-8c79-3c6d90439ed6 +20:00:42.966 [XNIO-1 task-2] pfby9S87SLGXwuKYsLc2Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:42.969 [XNIO-1 task-2] pfby9S87SLGXwuKYsLc2Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:42.969 [XNIO-1 task-2] pfby9S87SLGXwuKYsLc2Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:42.969 [XNIO-1 task-2] pfby9S87SLGXwuKYsLc2Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:42.970 [XNIO-1 task-2] pfby9S87SLGXwuKYsLc2Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", clientId) +20:00:42.981 [XNIO-1 task-2] loCB_9X_Q9aJyJv07E_lMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.981 [XNIO-1 task-2] loCB_9X_Q9aJyJv07E_lMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:42.982 [XNIO-1 task-2] loCB_9X_Q9aJyJv07E_lMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.001 [XNIO-1 task-2] QonA3ID1SfC671eHi87J5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:43.001 [XNIO-1 task-2] QonA3ID1SfC671eHi87J5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.001 [XNIO-1 task-2] QonA3ID1SfC671eHi87J5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.001 [XNIO-1 task-2] QonA3ID1SfC671eHi87J5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:43.002 [XNIO-1 task-2] QonA3ID1SfC671eHi87J5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +20:00:43.006 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5295860c-67a8-4541-a559-d775166ebd5a +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:43.017 [XNIO-1 task-2] QonA3ID1SfC671eHi87J5Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.024 [XNIO-1 task-2] 2EVEsiORQg2TnzLtUZdTjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c132461-7963-4f10-8479-819545653423, base path is set to: null +20:00:43.024 [XNIO-1 task-2] 2EVEsiORQg2TnzLtUZdTjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.024 [XNIO-1 task-2] 2EVEsiORQg2TnzLtUZdTjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.024 [XNIO-1 task-2] 2EVEsiORQg2TnzLtUZdTjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c132461-7963-4f10-8479-819545653423, base path is set to: null +20:00:43.025 [XNIO-1 task-2] 2EVEsiORQg2TnzLtUZdTjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3c132461-7963-4f10-8479-819545653423", "3c132461-7963-4f10-8479-819545653423", clientId) +20:00:43.039 [XNIO-1 task-2] vfC4gvrjTlanAovDoLGqHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.039 [XNIO-1 task-2] vfC4gvrjTlanAovDoLGqHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.039 [XNIO-1 task-2] vfC4gvrjTlanAovDoLGqHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.039 [XNIO-1 task-2] vfC4gvrjTlanAovDoLGqHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.047 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2b9aca1f-c067-4833-9b62-2a651d863190 +20:00:43.050 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a823bf80 +20:00:43.051 [XNIO-1 task-2] OH_hfSVTTyaVFx83KlWEmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639 +20:00:43.051 [XNIO-1 task-2] OH_hfSVTTyaVFx83KlWEmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.051 [XNIO-1 task-2] OH_hfSVTTyaVFx83KlWEmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.051 [XNIO-1 task-2] OH_hfSVTTyaVFx83KlWEmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639 +20:00:43.066 [XNIO-1 task-2] OH_hfSVTTyaVFx83KlWEmQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.066 [XNIO-1 task-2] OH_hfSVTTyaVFx83KlWEmQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.071 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.071 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.072 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.072 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.072 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:43.072 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "81bd613f-195e-4ceb-9b03-74cb148d5284", {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:43.073 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.073 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.073 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "16b31813-0654-4cae-8705-359b41bf", {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:43.073 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:43.073 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"16b31813-0654-4cae-8705-359b41bf","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.073 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.073 [XNIO-1 task-2] a3W58GCqR0OKU1gL8FfTPg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.073 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2b9aca1f-c067-4833-9b62-2a651d863190 +20:00:43.078 [XNIO-1 task-2] O5jxe9wNSIuGr9oh0_zKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639 +20:00:43.078 [XNIO-1 task-2] O5jxe9wNSIuGr9oh0_zKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.078 [XNIO-1 task-2] O5jxe9wNSIuGr9oh0_zKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.078 [XNIO-1 task-2] O5jxe9wNSIuGr9oh0_zKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639 +20:00:43.084 [XNIO-1 task-2] DDHL-5IKQL-a-P9dw0NVZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f, base path is set to: null +20:00:43.084 [XNIO-1 task-2] DDHL-5IKQL-a-P9dw0NVZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.084 [XNIO-1 task-2] DDHL-5IKQL-a-P9dw0NVZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.084 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:551fe74f-4b9d-463a-953a-a26011774510 +20:00:43.084 [XNIO-1 task-2] DDHL-5IKQL-a-P9dw0NVZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f +20:00:43.086 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:551fe74f-4b9d-463a-953a-a26011774510 +20:00:43.138 [XNIO-1 task-2] DDHL-5IKQL-a-P9dw0NVZg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.139 [XNIO-1 task-2] DDHL-5IKQL-a-P9dw0NVZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.142 [XNIO-1 task-2] 2hM7wTPdTpW2b8nZ5o0JTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.142 [XNIO-1 task-2] 2hM7wTPdTpW2b8nZ5o0JTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.143 [XNIO-1 task-2] 2hM7wTPdTpW2b8nZ5o0JTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.143 [XNIO-1 task-2] 2hM7wTPdTpW2b8nZ5o0JTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.156 [XNIO-1 task-2] cu15Ssz2TqS5bkFRStHp5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.156 [XNIO-1 task-2] cu15Ssz2TqS5bkFRStHp5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.156 [XNIO-1 task-2] cu15Ssz2TqS5bkFRStHp5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.157 [XNIO-1 task-2] cu15Ssz2TqS5bkFRStHp5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.172 [XNIO-1 task-2] pZgLyKxPRBG34i7LD_sV_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d +20:00:43.172 [XNIO-1 task-2] pZgLyKxPRBG34i7LD_sV_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.172 [XNIO-1 task-2] pZgLyKxPRBG34i7LD_sV_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.172 [XNIO-1 task-2] pZgLyKxPRBG34i7LD_sV_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d +20:00:43.177 [XNIO-1 task-2] 0BwuAIn4RYSOVv507h7efw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.178 [XNIO-1 task-2] 0BwuAIn4RYSOVv507h7efw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.178 [XNIO-1 task-2] 0BwuAIn4RYSOVv507h7efw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.178 [XNIO-1 task-2] 0BwuAIn4RYSOVv507h7efw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.203 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.204 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.204 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.205 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.205 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.205 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.205 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.205 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.206 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.206 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.206 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.206 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de16b155-c900-4394-9023-0a71e8fa","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.206 [XNIO-1 task-2] d6GKCN6sQt-nk2VINpYUYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.212 [XNIO-1 task-2] metA0ug_TmKrCrmJ7x849w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.212 [XNIO-1 task-2] metA0ug_TmKrCrmJ7x849w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.212 [XNIO-1 task-2] metA0ug_TmKrCrmJ7x849w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.231 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.231 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.232 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.232 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.232 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:43.232 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG com.networknt.schema.TypeValidator debug - validate( "54f6f09f-2aa8-4cdf-9091-9e7edb68a54c", {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:43.233 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.233 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.233 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG com.networknt.schema.TypeValidator debug - validate( "bf5eeeb2-f247-464a-a37d-c986130a", {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:43.233 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:43.233 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bf5eeeb2-f247-464a-a37d-c986130a","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.233 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.233 [XNIO-1 task-2] hW-3dIh9SbOaAtYlB_LNxA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.238 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.239 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.239 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.239 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.240 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"51929459-6c8e-458a-a832-e7e43ff1","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.241 [XNIO-1 task-2] AAtuxM3aQo2dgQDpk5UISQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.243 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.243 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.244 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.244 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.244 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:43.244 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "54f6f09f-2aa8-4cdf-9091-9e7edb68a54c", {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:43.244 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.244 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.245 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b7cf90a0-c197-4c3d-8499-81be52fc", {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:43.245 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:43.245 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b7cf90a0-c197-4c3d-8499-81be52fc","clientDesc":"54f6f09f-2aa8-4cdf-9091-9e7edb68a54c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.245 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.245 [XNIO-1 task-2] BnnkftcjTPWNFUmkMJxTwQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.247 [XNIO-1 task-2] zQQMWb1uRkuwm63mgBLWmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.247 [XNIO-1 task-2] zQQMWb1uRkuwm63mgBLWmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.248 [XNIO-1 task-2] zQQMWb1uRkuwm63mgBLWmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.248 [XNIO-1 task-2] zQQMWb1uRkuwm63mgBLWmA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.266 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.266 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.266 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.267 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.267 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.267 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.267 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.267 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.267 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.268 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.268 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.268 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e869b49-937d-4f08-891a-c3ecd699","clientDesc":"4e27a1c7-1ccd-4a29-84e5-5a77e68072cc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.268 [XNIO-1 task-2] cshwuraVSLWNzfAdGdEGlA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.273 [XNIO-1 task-2] x50Kdqd-TwqHtD_19coo-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6684e353-ed24-4982-9248-6fc723d35546 +20:00:43.273 [XNIO-1 task-2] x50Kdqd-TwqHtD_19coo-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.273 [XNIO-1 task-2] x50Kdqd-TwqHtD_19coo-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.274 [XNIO-1 task-2] x50Kdqd-TwqHtD_19coo-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6684e353-ed24-4982-9248-6fc723d35546 +20:00:43.277 [XNIO-1 task-2] RiJ9ugM2R-mokLJJLcZYgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.278 [XNIO-1 task-2] RiJ9ugM2R-mokLJJLcZYgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.278 [XNIO-1 task-2] RiJ9ugM2R-mokLJJLcZYgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.289 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2cb9d3c3-fd6d-4613-880c-5c824ea2a9d5 +20:00:43.291 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2cb9d3c3-fd6d-4613-880c-5c824ea2a9d5 +20:00:43.334 [XNIO-1 task-2] czdYO_EsQ1a5tRERkHUv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f +20:00:43.334 [XNIO-1 task-2] czdYO_EsQ1a5tRERkHUv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.334 [XNIO-1 task-2] czdYO_EsQ1a5tRERkHUv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.334 [XNIO-1 task-2] czdYO_EsQ1a5tRERkHUv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f +20:00:43.339 [XNIO-1 task-2] ZbiD2qtaQWK0DYVIRhcY2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639, base path is set to: null +20:00:43.340 [XNIO-1 task-2] ZbiD2qtaQWK0DYVIRhcY2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.340 [XNIO-1 task-2] ZbiD2qtaQWK0DYVIRhcY2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.340 [XNIO-1 task-2] ZbiD2qtaQWK0DYVIRhcY2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639, base path is set to: null +20:00:43.340 [XNIO-1 task-2] ZbiD2qtaQWK0DYVIRhcY2A DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:43.349 [XNIO-1 task-2] ZbiD2qtaQWK0DYVIRhcY2A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/627c71d7-5480-4712-9595-672acc38a639} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.354 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.355 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.355 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.356 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2ee81488-c1ed-49aa-b222-d9b8a217","clientDesc":"81bd613f-195e-4ceb-9b03-74cb148d5284","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.357 [XNIO-1 task-2] aERpm_tVRNOHdt9qaL-PVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.359 [XNIO-1 task-2] Y4BQSjfrQh2SU4M2CYPaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d +20:00:43.359 [XNIO-1 task-2] Y4BQSjfrQh2SU4M2CYPaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.360 [XNIO-1 task-2] Y4BQSjfrQh2SU4M2CYPaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.360 [XNIO-1 task-2] Y4BQSjfrQh2SU4M2CYPaqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d +20:00:43.362 [XNIO-1 task-2] 1DkVNZJfTUSbrPLArsXCzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.369 [XNIO-1 task-2] 1DkVNZJfTUSbrPLArsXCzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.370 [XNIO-1 task-2] 1DkVNZJfTUSbrPLArsXCzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.433 [XNIO-1 task-2] zUWyiUtDTjaR1PDBQGhzFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.433 [XNIO-1 task-2] zUWyiUtDTjaR1PDBQGhzFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.433 [XNIO-1 task-2] zUWyiUtDTjaR1PDBQGhzFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.434 [XNIO-1 task-2] zUWyiUtDTjaR1PDBQGhzFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.444 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d2cbecb2-fd3c-459f-8051-132355498bd3 +20:00:43.502 [XNIO-1 task-2] WT1JkzEpSEuFStlH7wtKvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a5b352b7-b89e-4b0d-911f-14cb4dc8e724, base path is set to: null +20:00:43.503 [XNIO-1 task-2] WT1JkzEpSEuFStlH7wtKvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.503 [XNIO-1 task-2] WT1JkzEpSEuFStlH7wtKvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.503 [XNIO-1 task-2] WT1JkzEpSEuFStlH7wtKvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a5b352b7-b89e-4b0d-911f-14cb4dc8e724, base path is set to: null +20:00:43.503 [XNIO-1 task-2] WT1JkzEpSEuFStlH7wtKvA DEBUG com.networknt.schema.TypeValidator debug - validate( "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", clientId) +20:00:43.509 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.509 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.510 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.510 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.510 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:43.510 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "b1bba99a-fab3-47c9-8a2e-d861c04e979b", {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:43.510 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.511 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.511 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "74eec825-0318-403d-b3fa-c81ddd33", {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:43.511 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:43.511 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"74eec825-0318-403d-b3fa-c81ddd33","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.511 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.511 [XNIO-1 task-2] IOy5tffjQNCUyLBa__f8TA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.514 [XNIO-1 task-2] wj5rf8VMRZGw7sVx9j_Ubg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.514 [XNIO-1 task-2] wj5rf8VMRZGw7sVx9j_Ubg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.516 [XNIO-1 task-2] wj5rf8VMRZGw7sVx9j_Ubg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.517 [XNIO-1 task-2] wj5rf8VMRZGw7sVx9j_Ubg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.533 [XNIO-1 task-2] 8bjgbDFzSr69oi54W905tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:43.533 [XNIO-1 task-2] 8bjgbDFzSr69oi54W905tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.533 [XNIO-1 task-2] 8bjgbDFzSr69oi54W905tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.533 [XNIO-1 task-2] 8bjgbDFzSr69oi54W905tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:43.533 [XNIO-1 task-2] 8bjgbDFzSr69oi54W905tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +20:00:43.541 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.541 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.541 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG com.networknt.schema.TypeValidator debug - validate( "ba76d35e-822b-4252-8822-87a83a85d26a", {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG com.networknt.schema.TypeValidator debug - validate( "ab59301d-e5f6-4cd2-b530-46d18306", {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ab59301d-e5f6-4cd2-b530-46d18306","clientDesc":"ba76d35e-822b-4252-8822-87a83a85d26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.542 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.543 [XNIO-1 task-2] A12ifYWPR8ynIRhugELftg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.546 [XNIO-1 task-2] BUTgYBqgTBu5ETAZwXLofA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.546 [XNIO-1 task-2] BUTgYBqgTBu5ETAZwXLofA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.547 [XNIO-1 task-2] BUTgYBqgTBu5ETAZwXLofA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.552 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6bd349bd-43ae-41a2-8ac7-85495e8ee6ff +20:00:43.556 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6bd349bd-43ae-41a2-8ac7-85495e8ee6ff +20:00:43.566 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.566 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.567 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.567 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.567 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:43.567 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "b1bba99a-fab3-47c9-8a2e-d861c04e979b", {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:43.568 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.568 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.569 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "9cdbe3ac-1f97-4569-ba54-e8a958c2", {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:43.569 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:43.569 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9cdbe3ac-1f97-4569-ba54-e8a958c2","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.569 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.569 [XNIO-1 task-2] r243Nk3pRnyX1q6AlTZoXw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.575 [XNIO-1 task-2] lnbW53qSSLOgdUSuLLdGOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.575 [XNIO-1 task-2] lnbW53qSSLOgdUSuLLdGOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.575 [XNIO-1 task-2] lnbW53qSSLOgdUSuLLdGOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.604 [XNIO-1 task-2] lwvjSYcERxyvyi6O0VfOZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.604 [XNIO-1 task-2] lwvjSYcERxyvyi6O0VfOZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.604 [XNIO-1 task-2] lwvjSYcERxyvyi6O0VfOZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.626 [XNIO-1 task-2] _G4bJugXSVCPLZ3ME5VACg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.626 [XNIO-1 task-2] _G4bJugXSVCPLZ3ME5VACg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.627 [XNIO-1 task-2] _G4bJugXSVCPLZ3ME5VACg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.651 [XNIO-1 task-2] 3kXLqTarRfiGTkxnlrQiRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb9acf60-61d2-466e-abbb-7007ece1637c, base path is set to: null +20:00:43.651 [XNIO-1 task-2] 3kXLqTarRfiGTkxnlrQiRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.652 [XNIO-1 task-2] 3kXLqTarRfiGTkxnlrQiRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.652 [XNIO-1 task-2] 3kXLqTarRfiGTkxnlrQiRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eb9acf60-61d2-466e-abbb-7007ece1637c, base path is set to: null +20:00:43.652 [XNIO-1 task-2] 3kXLqTarRfiGTkxnlrQiRw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:43.659 [XNIO-1 task-2] 3kXLqTarRfiGTkxnlrQiRw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/eb9acf60-61d2-466e-abbb-7007ece1637c} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.664 [XNIO-1 task-2] GaojnekJSI6CQqqFHzH0qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.664 [XNIO-1 task-2] GaojnekJSI6CQqqFHzH0qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.664 [XNIO-1 task-2] GaojnekJSI6CQqqFHzH0qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.665 [XNIO-1 task-2] GaojnekJSI6CQqqFHzH0qA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.680 [XNIO-1 task-2] eaon2TcYQR2ZgI-n--ZkKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.680 [XNIO-1 task-2] eaon2TcYQR2ZgI-n--ZkKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.680 [XNIO-1 task-2] eaon2TcYQR2ZgI-n--ZkKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.680 [XNIO-1 task-2] eaon2TcYQR2ZgI-n--ZkKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.702 [XNIO-1 task-2] 8EK-8iS5TMqNMEulIqgWrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.703 [XNIO-1 task-2] 8EK-8iS5TMqNMEulIqgWrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.703 [XNIO-1 task-2] 8EK-8iS5TMqNMEulIqgWrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.737 [XNIO-1 task-2] UgHEVq3mQi2c7dlXilPO3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.737 [XNIO-1 task-2] UgHEVq3mQi2c7dlXilPO3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.738 [XNIO-1 task-2] UgHEVq3mQi2c7dlXilPO3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.738 [XNIO-1 task-2] UgHEVq3mQi2c7dlXilPO3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.769 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.769 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.770 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:43.770 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.770 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.770 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.771 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.771 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.771 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.771 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.771 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.771 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fd41e244-0813-4cc7-956c-46554cff","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.771 [XNIO-1 task-2] 3aHAj1mQQam8cl-mPl3hBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.774 [XNIO-1 task-2] AJfudymtTl2tH6S0_0Xddw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e +20:00:43.775 [XNIO-1 task-2] AJfudymtTl2tH6S0_0Xddw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.775 [XNIO-1 task-2] AJfudymtTl2tH6S0_0Xddw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.775 [XNIO-1 task-2] AJfudymtTl2tH6S0_0Xddw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e +20:00:43.785 [XNIO-1 task-2] AJfudymtTl2tH6S0_0Xddw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.785 [XNIO-1 task-2] AJfudymtTl2tH6S0_0Xddw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.795 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.795 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.796 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.796 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.796 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:43.798 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b1bba99a-fab3-47c9-8a2e-d861c04e979b", {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:43.799 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:43.799 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:43.799 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a533cae4-2eed-43ca-aba1-5fd191ef", {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:43.799 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:43.799 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a533cae4-2eed-43ca-aba1-5fd191ef","clientDesc":"b1bba99a-fab3-47c9-8a2e-d861c04e979b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.799 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.799 [XNIO-1 task-2] 4EDe2RoIQJCcfmGo7Nwb4Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.803 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fea8a03b +20:00:43.806 [XNIO-1 task-2] xGsibMFaQwGJ0Bx-3_VNVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61223882-e1af-4ed2-a88e-6e758089eaa6, base path is set to: null +20:00:43.853 [XNIO-1 task-2] xGsibMFaQwGJ0Bx-3_VNVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.853 [XNIO-1 task-2] xGsibMFaQwGJ0Bx-3_VNVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.854 [XNIO-1 task-2] xGsibMFaQwGJ0Bx-3_VNVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61223882-e1af-4ed2-a88e-6e758089eaa6, base path is set to: null +20:00:43.854 [XNIO-1 task-2] xGsibMFaQwGJ0Bx-3_VNVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "61223882-e1af-4ed2-a88e-6e758089eaa6", "61223882-e1af-4ed2-a88e-6e758089eaa6", clientId) +20:00:43.886 [XNIO-1 task-2] 5AT-ANvTRXeIb1PfMIObiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6 +20:00:43.886 [XNIO-1 task-2] 5AT-ANvTRXeIb1PfMIObiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.886 [XNIO-1 task-2] 5AT-ANvTRXeIb1PfMIObiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.886 [XNIO-1 task-2] 5AT-ANvTRXeIb1PfMIObiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6 +20:00:43.891 [XNIO-1 task-2] 1yTUtpPDSAW9xr8dvmDq6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f, base path is set to: null +20:00:43.896 [XNIO-1 task-2] 1yTUtpPDSAW9xr8dvmDq6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.897 [XNIO-1 task-2] 1yTUtpPDSAW9xr8dvmDq6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.897 [XNIO-1 task-2] 1yTUtpPDSAW9xr8dvmDq6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f, base path is set to: null +20:00:43.897 [XNIO-1 task-2] 1yTUtpPDSAW9xr8dvmDq6w DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:43.906 [XNIO-1 task-2] 1yTUtpPDSAW9xr8dvmDq6w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.916 [XNIO-1 task-2] aY00ODNlSTKmDBpYSjRtaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/94c143ea-23a7-42c6-8c47-6212e3129c08, base path is set to: null +20:00:43.923 [XNIO-1 task-2] aY00ODNlSTKmDBpYSjRtaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:43.923 [XNIO-1 task-2] aY00ODNlSTKmDBpYSjRtaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:43.923 [XNIO-1 task-2] aY00ODNlSTKmDBpYSjRtaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/94c143ea-23a7-42c6-8c47-6212e3129c08, base path is set to: null +20:00:43.924 [XNIO-1 task-2] aY00ODNlSTKmDBpYSjRtaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "94c143ea-23a7-42c6-8c47-6212e3129c08", "94c143ea-23a7-42c6-8c47-6212e3129c08", clientId) +20:00:43.948 [XNIO-1 task-2] QzK2ukz8QKmDLiT_FRLS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639 +20:00:43.948 [XNIO-1 task-2] QzK2ukz8QKmDLiT_FRLS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.948 [XNIO-1 task-2] QzK2ukz8QKmDLiT_FRLS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:43.949 [XNIO-1 task-2] QzK2ukz8QKmDLiT_FRLS8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/627c71d7-5480-4712-9595-672acc38a639 +20:00:43.960 [XNIO-1 task-2] QzK2ukz8QKmDLiT_FRLS8g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.960 [XNIO-1 task-2] QzK2ukz8QKmDLiT_FRLS8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:43.972 [XNIO-1 task-2] I8Jion76ShyT1kFuKGfyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.972 [XNIO-1 task-2] I8Jion76ShyT1kFuKGfyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.972 [XNIO-1 task-2] I8Jion76ShyT1kFuKGfyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:43.973 [XNIO-1 task-2] I8Jion76ShyT1kFuKGfyOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.977 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fea8a03b +20:00:44.009 [XNIO-1 task-2] VCE5DfTfQkmi4yHMQ3h7Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.009 [XNIO-1 task-2] VCE5DfTfQkmi4yHMQ3h7Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.012 [XNIO-1 task-2] VCE5DfTfQkmi4yHMQ3h7Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.035 [XNIO-1 task-2] RW1b608VT_-wiwq8KOn2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.035 [XNIO-1 task-2] RW1b608VT_-wiwq8KOn2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.036 [XNIO-1 task-2] RW1b608VT_-wiwq8KOn2eQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.036 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7247025e-4b3f-46ca-91fc-52ca345c46cd +20:00:44.055 [XNIO-1 task-2] 5_2fGPToQyiEzlmaxpyCiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0 +20:00:44.055 [XNIO-1 task-2] 5_2fGPToQyiEzlmaxpyCiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.055 [XNIO-1 task-2] 5_2fGPToQyiEzlmaxpyCiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.055 [XNIO-1 task-2] 5_2fGPToQyiEzlmaxpyCiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0 +20:00:44.060 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.060 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.060 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.061 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:7247025e-4b3f-46ca-91fc-52ca345c46cd +20:00:44.061 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.061 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:44.061 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ebda783a-f207-4acd-8d4b-2442e94c8042", {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:44.061 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:44.061 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:44.061 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e1c72f54-8290-4808-b618-0f4ddca6", {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:44.061 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:44.062 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e1c72f54-8290-4808-b618-0f4ddca6","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.062 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:44.062 [XNIO-1 task-2] EQLN7P0TT9m22EFuKEFx-Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.072 [XNIO-1 task-2] bYGR19FeSUmMeVHAWnEdew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0, base path is set to: null +20:00:44.073 [XNIO-1 task-2] bYGR19FeSUmMeVHAWnEdew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.073 [XNIO-1 task-2] bYGR19FeSUmMeVHAWnEdew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.073 [XNIO-1 task-2] bYGR19FeSUmMeVHAWnEdew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0, base path is set to: null +20:00:44.073 [XNIO-1 task-2] bYGR19FeSUmMeVHAWnEdew DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4b472d-eead-4f78-82c3-079d523bdcd0", "0f4b472d-eead-4f78-82c3-079d523bdcd0", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:44.115 [XNIO-1 task-2] bYGR19FeSUmMeVHAWnEdew DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.121 [XNIO-1 task-2] AiRiXJO-T8aeYQfuGGh3oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:44.121 [XNIO-1 task-2] AiRiXJO-T8aeYQfuGGh3oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.121 [XNIO-1 task-2] AiRiXJO-T8aeYQfuGGh3oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.121 [XNIO-1 task-2] AiRiXJO-T8aeYQfuGGh3oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:44.122 [XNIO-1 task-2] AiRiXJO-T8aeYQfuGGh3oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:44.130 [XNIO-1 task-2] AiRiXJO-T8aeYQfuGGh3oQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.135 [XNIO-1 task-2] Dddian_ITxitoszjxQKCgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:44.135 [XNIO-1 task-2] Dddian_ITxitoszjxQKCgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.135 [XNIO-1 task-2] Dddian_ITxitoszjxQKCgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.135 [XNIO-1 task-2] Dddian_ITxitoszjxQKCgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:44.136 [XNIO-1 task-2] Dddian_ITxitoszjxQKCgw DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +20:00:44.144 [XNIO-1 task-2] rBsOxx7rTPmbCTym4CXbVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.144 [XNIO-1 task-2] rBsOxx7rTPmbCTym4CXbVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.144 [XNIO-1 task-2] rBsOxx7rTPmbCTym4CXbVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.186 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.186 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.187 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.188 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.188 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:44.188 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "f4988e92-3aaf-425c-8108-24272d6dd816", {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:44.188 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:44.189 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:44.189 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "253f21e0-25b6-4991-9ba1-9a1a693b", {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:44.189 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:44.189 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"253f21e0-25b6-4991-9ba1-9a1a693b","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.189 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:44.190 [XNIO-1 task-2] KN1dOt5XR8GsKiGboZGhMg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.193 [XNIO-1 task-2] DoXdhG2DSKq0ipxKIacF2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:44.194 [XNIO-1 task-2] DoXdhG2DSKq0ipxKIacF2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.194 [XNIO-1 task-2] DoXdhG2DSKq0ipxKIacF2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.194 [XNIO-1 task-2] DoXdhG2DSKq0ipxKIacF2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:44.195 [XNIO-1 task-2] DoXdhG2DSKq0ipxKIacF2A DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:44.224 [XNIO-1 task-2] DoXdhG2DSKq0ipxKIacF2A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.233 [XNIO-1 task-2] 9nPIG-4-THCMPAuU79oflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.233 [XNIO-1 task-2] 9nPIG-4-THCMPAuU79oflA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.233 [XNIO-1 task-2] 9nPIG-4-THCMPAuU79oflA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.239 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b0660354-9039-40b6-a8fe-1be0052adb48 +20:00:44.240 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b0660354-9039-40b6-a8fe-1be0052adb48 +20:00:44.259 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.259 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.259 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.260 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.260 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:44.260 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce75a167-be2f-4c96-9457-f163fd7f45cf", {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:44.260 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:44.260 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:44.260 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG com.networknt.schema.TypeValidator debug - validate( "7df5547c-00e7-4e06-b6a3-9b84f28d", {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:44.261 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:44.261 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7df5547c-00e7-4e06-b6a3-9b84f28d","clientDesc":"ce75a167-be2f-4c96-9457-f163fd7f45cf","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.261 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:44.261 [XNIO-1 task-2] 5sQp6ueeQMmqRWz83L_IzA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.263 [XNIO-1 task-2] 6_9l-fJDTLa22yEuLGxxIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.264 [XNIO-1 task-2] 6_9l-fJDTLa22yEuLGxxIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.264 [XNIO-1 task-2] 6_9l-fJDTLa22yEuLGxxIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.285 [XNIO-1 task-2] jt7z3HmsSJmGJuMMyQ1A-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d424af35-945f-4aaa-b6b7-7df3878914f5, base path is set to: null +20:00:44.286 [XNIO-1 task-2] jt7z3HmsSJmGJuMMyQ1A-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.286 [XNIO-1 task-2] jt7z3HmsSJmGJuMMyQ1A-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.286 [XNIO-1 task-2] jt7z3HmsSJmGJuMMyQ1A-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d424af35-945f-4aaa-b6b7-7df3878914f5, base path is set to: null +20:00:44.286 [XNIO-1 task-2] jt7z3HmsSJmGJuMMyQ1A-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d424af35-945f-4aaa-b6b7-7df3878914f5", "d424af35-945f-4aaa-b6b7-7df3878914f5", clientId) +20:00:44.293 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a823bf80 +20:00:44.294 [XNIO-1 task-2] GnrC3Y3FQQqq9Uq0p966Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:44.294 [XNIO-1 task-2] GnrC3Y3FQQqq9Uq0p966Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.295 [XNIO-1 task-2] GnrC3Y3FQQqq9Uq0p966Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.295 [XNIO-1 task-2] GnrC3Y3FQQqq9Uq0p966Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:44.298 [XNIO-1 task-2] Fn5CE1MoR0aXWUhZSLDLJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:44.298 [XNIO-1 task-2] Fn5CE1MoR0aXWUhZSLDLJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.298 [XNIO-1 task-2] Fn5CE1MoR0aXWUhZSLDLJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.298 [XNIO-1 task-2] Fn5CE1MoR0aXWUhZSLDLJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:44.298 [XNIO-1 task-2] Fn5CE1MoR0aXWUhZSLDLJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", clientId) +20:00:44.305 [XNIO-1 task-2] pHelsZPAQOm0z5h96dRXeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:44.305 [XNIO-1 task-2] pHelsZPAQOm0z5h96dRXeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.305 [XNIO-1 task-2] pHelsZPAQOm0z5h96dRXeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.306 [XNIO-1 task-2] pHelsZPAQOm0z5h96dRXeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:44.309 [XNIO-1 task-2] bYAFShtKS8KgnhBMHU9V6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:44.309 [XNIO-1 task-2] bYAFShtKS8KgnhBMHU9V6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.309 [XNIO-1 task-2] bYAFShtKS8KgnhBMHU9V6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.309 [XNIO-1 task-2] bYAFShtKS8KgnhBMHU9V6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:44.310 [XNIO-1 task-2] bYAFShtKS8KgnhBMHU9V6w DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", clientId) +20:00:44.315 [XNIO-1 task-2] xAI0vw3VQA6LF6BO53_LIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.315 [XNIO-1 task-2] xAI0vw3VQA6LF6BO53_LIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.316 [XNIO-1 task-2] xAI0vw3VQA6LF6BO53_LIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.324 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7ac43119-c416-4761-9786-fb92b5ca0d49 +20:00:44.332 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.332 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.332 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.333 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d5f6364c-07d8-4987-9ff9-df17912a","clientDesc":"56bbcabe-9fc5-4901-a10d-2e643ff3938c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:44.334 [XNIO-1 task-2] TAPEEujbSKOMBWCHEOImqA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:44.339 [XNIO-1 task-2] u01iwWyvRr2W6-j2o7Kteg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.339 [XNIO-1 task-2] u01iwWyvRr2W6-j2o7Kteg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.339 [XNIO-1 task-2] u01iwWyvRr2W6-j2o7Kteg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.339 [XNIO-1 task-2] u01iwWyvRr2W6-j2o7Kteg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.344 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:629c2cdc +20:00:44.354 [XNIO-1 task-2] DSqGUqOxRLSHL3TXq3bHlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0, base path is set to: null +20:00:44.354 [XNIO-1 task-2] DSqGUqOxRLSHL3TXq3bHlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.355 [XNIO-1 task-2] DSqGUqOxRLSHL3TXq3bHlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.355 [XNIO-1 task-2] DSqGUqOxRLSHL3TXq3bHlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0, base path is set to: null +20:00:44.355 [XNIO-1 task-2] DSqGUqOxRLSHL3TXq3bHlw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4b472d-eead-4f78-82c3-079d523bdcd0", "0f4b472d-eead-4f78-82c3-079d523bdcd0", clientId) +20:00:44.358 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:629c2cdc +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:44.368 [XNIO-1 task-2] DSqGUqOxRLSHL3TXq3bHlw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/0f4b472d-eead-4f78-82c3-079d523bdcd0} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.375 [XNIO-1 task-2] TgU3UzEiRxq8qOL5xqJwvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.375 [XNIO-1 task-2] TgU3UzEiRxq8qOL5xqJwvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.375 [XNIO-1 task-2] TgU3UzEiRxq8qOL5xqJwvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.397 [XNIO-1 task-2] -yGXNzwZRaiYd2bvMSiRAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0660354-9039-40b6-a8fe-1be0052adb48, base path is set to: null +20:00:44.397 [XNIO-1 task-2] -yGXNzwZRaiYd2bvMSiRAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.398 [XNIO-1 task-2] -yGXNzwZRaiYd2bvMSiRAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.398 [XNIO-1 task-2] -yGXNzwZRaiYd2bvMSiRAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b0660354-9039-40b6-a8fe-1be0052adb48, base path is set to: null +20:00:44.398 [XNIO-1 task-2] -yGXNzwZRaiYd2bvMSiRAg DEBUG com.networknt.schema.TypeValidator debug - validate( "b0660354-9039-40b6-a8fe-1be0052adb48", "b0660354-9039-40b6-a8fe-1be0052adb48", clientId) +20:00:44.409 [XNIO-1 task-2] IkXtSIZDQ3W2qBe9ynOTJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.409 [XNIO-1 task-2] IkXtSIZDQ3W2qBe9ynOTJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.409 [XNIO-1 task-2] IkXtSIZDQ3W2qBe9ynOTJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.410 [XNIO-1 task-2] IkXtSIZDQ3W2qBe9ynOTJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.421 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.421 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.422 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.422 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.422 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.422 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.422 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.422 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:44.423 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:44.423 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.423 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.423 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa081fbc-0efe-4aee-96ee-d1acbbc8","clientDesc":"f4988e92-3aaf-425c-8108-24272d6dd816","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:44.423 [XNIO-1 task-2] AKcaTQhVS3a83zmj1pZGzQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:44.425 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a823bf80 +20:00:44.429 [XNIO-1 task-2] QsyuRZDVRQmlyhxx2oJlug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e +20:00:44.430 [XNIO-1 task-2] QsyuRZDVRQmlyhxx2oJlug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.430 [XNIO-1 task-2] QsyuRZDVRQmlyhxx2oJlug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.430 [XNIO-1 task-2] QsyuRZDVRQmlyhxx2oJlug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e +20:00:44.439 [XNIO-1 task-2] QsyuRZDVRQmlyhxx2oJlug ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:44.439 [XNIO-1 task-2] QsyuRZDVRQmlyhxx2oJlug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:44.446 [XNIO-1 task-2] BlrH9ppqScqqMdZ6JXG4MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.446 [XNIO-1 task-2] BlrH9ppqScqqMdZ6JXG4MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.446 [XNIO-1 task-2] BlrH9ppqScqqMdZ6JXG4MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.465 [XNIO-1 task-2] sPGCfYzCRZGvxgPlKFngCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.465 [XNIO-1 task-2] sPGCfYzCRZGvxgPlKFngCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.465 [XNIO-1 task-2] sPGCfYzCRZGvxgPlKFngCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.471 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a823bf80 +20:00:44.472 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:633b941f-17cd-4b3e-9719-bd3589e313d4 +20:00:44.480 [XNIO-1 task-2] 1RgaJDILS66PQ0_zMiMqBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.480 [XNIO-1 task-2] 1RgaJDILS66PQ0_zMiMqBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.480 [XNIO-1 task-2] 1RgaJDILS66PQ0_zMiMqBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.488 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c81d5fe9-46e4-4620-b76c-fc58a01fd7a1 +20:00:44.489 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c81d5fe9-46e4-4620-b76c-fc58a01fd7a1 +20:00:44.497 [XNIO-1 task-2] QwRuc-r1TAeXSB4SHDLNZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/633b941f-17cd-4b3e-9719-bd3589e313d4 +20:00:44.497 [XNIO-1 task-2] QwRuc-r1TAeXSB4SHDLNZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.497 [XNIO-1 task-2] QwRuc-r1TAeXSB4SHDLNZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.497 [XNIO-1 task-2] QwRuc-r1TAeXSB4SHDLNZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/633b941f-17cd-4b3e-9719-bd3589e313d4 +20:00:44.502 [XNIO-1 task-2] BGceNWyqRoaQLUloaWJYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d, base path is set to: null +20:00:44.502 [XNIO-1 task-2] BGceNWyqRoaQLUloaWJYPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.502 [XNIO-1 task-2] BGceNWyqRoaQLUloaWJYPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.502 [XNIO-1 task-2] BGceNWyqRoaQLUloaWJYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d, base path is set to: null +20:00:44.503 [XNIO-1 task-2] BGceNWyqRoaQLUloaWJYPA DEBUG com.networknt.schema.TypeValidator debug - validate( "e94a8965-50bc-4511-9bbf-2bd8e002550d", "e94a8965-50bc-4511-9bbf-2bd8e002550d", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:44.515 [XNIO-1 task-2] BGceNWyqRoaQLUloaWJYPA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/e94a8965-50bc-4511-9bbf-2bd8e002550d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.520 [XNIO-1 task-2] ZzWrNZUOT92YTgPvlDCTuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.520 [XNIO-1 task-2] ZzWrNZUOT92YTgPvlDCTuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.520 [XNIO-1 task-2] ZzWrNZUOT92YTgPvlDCTuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.521 [XNIO-1 task-2] ZzWrNZUOT92YTgPvlDCTuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.535 [XNIO-1 task-2] gum_AOr6RQ-26qIVcishxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.535 [XNIO-1 task-2] gum_AOr6RQ-26qIVcishxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.536 [XNIO-1 task-2] gum_AOr6RQ-26qIVcishxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.607 [XNIO-1 task-2] 7EywjcjoRXq3F9HkQgiXtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ddf2cc7d-e4b7-4a41-80fe-0ff4d274860b, base path is set to: null +20:00:44.608 [XNIO-1 task-2] 7EywjcjoRXq3F9HkQgiXtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.608 [XNIO-1 task-2] 7EywjcjoRXq3F9HkQgiXtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.608 [XNIO-1 task-2] 7EywjcjoRXq3F9HkQgiXtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ddf2cc7d-e4b7-4a41-80fe-0ff4d274860b, base path is set to: null +20:00:44.608 [XNIO-1 task-2] 7EywjcjoRXq3F9HkQgiXtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ddf2cc7d-e4b7-4a41-80fe-0ff4d274860b", "ddf2cc7d-e4b7-4a41-80fe-0ff4d274860b", clientId) +20:00:44.616 [XNIO-1 task-2] W1ylq7-BQrCEStK6s_dhDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.616 [XNIO-1 task-2] W1ylq7-BQrCEStK6s_dhDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.617 [XNIO-1 task-2] W1ylq7-BQrCEStK6s_dhDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.617 [XNIO-1 task-2] W1ylq7-BQrCEStK6s_dhDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.632 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:629c2cdc +20:00:44.635 [XNIO-1 task-2] y8tkDMruRheQx_Si_nuV1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.635 [XNIO-1 task-2] y8tkDMruRheQx_Si_nuV1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.636 [XNIO-1 task-2] y8tkDMruRheQx_Si_nuV1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.654 [XNIO-1 task-2] 4cZDH-VwR6y1OujgB2S57w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/633b941f-17cd-4b3e-9719-bd3589e313d4 +20:00:44.654 [XNIO-1 task-2] 4cZDH-VwR6y1OujgB2S57w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.654 [XNIO-1 task-2] 4cZDH-VwR6y1OujgB2S57w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.655 [XNIO-1 task-2] 4cZDH-VwR6y1OujgB2S57w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/633b941f-17cd-4b3e-9719-bd3589e313d4 +20:00:44.655 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:633b941f-17cd-4b3e-9719-bd3589e313d4 +20:00:44.663 [XNIO-1 task-2] zlNRCdJ0SoCFKgP1VIt7Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.663 [XNIO-1 task-2] zlNRCdJ0SoCFKgP1VIt7Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.663 [XNIO-1 task-2] zlNRCdJ0SoCFKgP1VIt7Nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.690 [XNIO-1 task-2] F9cf7RT_RFGGXZ92jj4-iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.690 [XNIO-1 task-2] F9cf7RT_RFGGXZ92jj4-iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.690 [XNIO-1 task-2] F9cf7RT_RFGGXZ92jj4-iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.710 [XNIO-1 task-2] DL_v-3NdTSuKV0Jf8-PFew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:44.711 [XNIO-1 task-2] DL_v-3NdTSuKV0Jf8-PFew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.711 [XNIO-1 task-2] DL_v-3NdTSuKV0Jf8-PFew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.711 [XNIO-1 task-2] DL_v-3NdTSuKV0Jf8-PFew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:44.716 [XNIO-1 task-2] 2oaVDx2nR4SCE3el4pBLfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.717 [XNIO-1 task-2] 2oaVDx2nR4SCE3el4pBLfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.717 [XNIO-1 task-2] 2oaVDx2nR4SCE3el4pBLfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:44.733 [XNIO-1 task-2] 8HZTin7OQ8-PVYUORYeoVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7ac43119-c416-4761-9786-fb92b5ca0d49, base path is set to: null +20:00:44.734 [XNIO-1 task-2] 8HZTin7OQ8-PVYUORYeoVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.734 [XNIO-1 task-2] 8HZTin7OQ8-PVYUORYeoVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.734 [XNIO-1 task-2] 8HZTin7OQ8-PVYUORYeoVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7ac43119-c416-4761-9786-fb92b5ca0d49, base path is set to: null +20:00:44.734 [XNIO-1 task-2] 8HZTin7OQ8-PVYUORYeoVw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac43119-c416-4761-9786-fb92b5ca0d49", "7ac43119-c416-4761-9786-fb92b5ca0d49", clientId) +20:00:44.742 [XNIO-1 task-2] 63FdH2TQTta5DWE7T7qf7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.742 [XNIO-1 task-2] 63FdH2TQTta5DWE7T7qf7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.742 [XNIO-1 task-2] 63FdH2TQTta5DWE7T7qf7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.743 [XNIO-1 task-2] 63FdH2TQTta5DWE7T7qf7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.798 [XNIO-1 task-2] uidC_hEDQ9GDIfbwHpcN7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.798 [XNIO-1 task-2] uidC_hEDQ9GDIfbwHpcN7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.798 [XNIO-1 task-2] uidC_hEDQ9GDIfbwHpcN7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.798 [XNIO-1 task-2] uidC_hEDQ9GDIfbwHpcN7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.816 [XNIO-1 task-2] RKeiGffPQLKHJUQiyhOP-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.816 [XNIO-1 task-2] RKeiGffPQLKHJUQiyhOP-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.816 [XNIO-1 task-2] RKeiGffPQLKHJUQiyhOP-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.840 [XNIO-1 task-2] vz76L_AQTGqviMiFRy45HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.840 [XNIO-1 task-2] vz76L_AQTGqviMiFRy45HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.841 [XNIO-1 task-2] vz76L_AQTGqviMiFRy45HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.876 [XNIO-1 task-2] HZ1dmy9CSc-Bun8-fuo9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/95e18c2f-ae10-4358-92c3-d0f919dddd75 +20:00:44.876 [XNIO-1 task-2] HZ1dmy9CSc-Bun8-fuo9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.876 [XNIO-1 task-2] HZ1dmy9CSc-Bun8-fuo9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.876 [XNIO-1 task-2] HZ1dmy9CSc-Bun8-fuo9aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/95e18c2f-ae10-4358-92c3-d0f919dddd75 +20:00:44.885 [XNIO-1 task-2] X4wkfzs_R7ei1wy_6Zd5pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/084e5c87-0600-472d-b308-61261361c67e, base path is set to: null +20:00:44.894 [XNIO-1 task-2] X4wkfzs_R7ei1wy_6Zd5pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.894 [XNIO-1 task-2] X4wkfzs_R7ei1wy_6Zd5pA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.898 [XNIO-1 task-2] X4wkfzs_R7ei1wy_6Zd5pA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/084e5c87-0600-472d-b308-61261361c67e, base path is set to: null +20:00:44.898 [XNIO-1 task-2] X4wkfzs_R7ei1wy_6Zd5pA DEBUG com.networknt.schema.TypeValidator debug - validate( "084e5c87-0600-472d-b308-61261361c67e", "084e5c87-0600-472d-b308-61261361c67e", clientId) +20:00:44.938 [XNIO-1 task-2] A7dxpChdQOaFPQprIplBEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25379a22-eaab-4104-b1a6-04c6b18c053a +20:00:44.938 [XNIO-1 task-2] A7dxpChdQOaFPQprIplBEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.938 [XNIO-1 task-2] A7dxpChdQOaFPQprIplBEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:44.938 [XNIO-1 task-2] A7dxpChdQOaFPQprIplBEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/25379a22-eaab-4104-b1a6-04c6b18c053a +20:00:44.954 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a823bf80 +20:00:44.955 [XNIO-1 task-2] 3wuzQXJmQiuD1lIpI9lHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6684e353-ed24-4982-9248-6fc723d35546, base path is set to: null +20:00:44.956 [XNIO-1 task-2] 3wuzQXJmQiuD1lIpI9lHxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.956 [XNIO-1 task-2] 3wuzQXJmQiuD1lIpI9lHxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.956 [XNIO-1 task-2] 3wuzQXJmQiuD1lIpI9lHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6684e353-ed24-4982-9248-6fc723d35546, base path is set to: null +20:00:44.957 [XNIO-1 task-2] 3wuzQXJmQiuD1lIpI9lHxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6684e353-ed24-4982-9248-6fc723d35546", "6684e353-ed24-4982-9248-6fc723d35546", clientId) +20:00:44.968 [XNIO-1 task-2] Wy5cRJeASvG0t3QLckB_xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.968 [XNIO-1 task-2] Wy5cRJeASvG0t3QLckB_xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.968 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:10830e68-ed26-4d86-b868-4ed048864414 +20:00:44.969 [XNIO-1 task-2] Wy5cRJeASvG0t3QLckB_xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:44.997 [XNIO-1 task-2] tTNS6SoYQ9CTNqueLC2nwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:44.997 [XNIO-1 task-2] tTNS6SoYQ9CTNqueLC2nwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:44.997 [XNIO-1 task-2] tTNS6SoYQ9CTNqueLC2nwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:44.997 [XNIO-1 task-2] tTNS6SoYQ9CTNqueLC2nwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bd88c211-ddad-47ae-adb7-6f81df27e2b6, base path is set to: null +20:00:44.998 [XNIO-1 task-2] tTNS6SoYQ9CTNqueLC2nwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", clientId) +20:00:45.006 [XNIO-1 task-2] Z9c8Iy3-ThWH0kinNbYiHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.006 [XNIO-1 task-2] Z9c8Iy3-ThWH0kinNbYiHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.007 [XNIO-1 task-2] Z9c8Iy3-ThWH0kinNbYiHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.030 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a823bf80 +20:00:45.038 [XNIO-1 task-2] J2N1k_JgTh6ZoHAHMkN_TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.039 [XNIO-1 task-2] J2N1k_JgTh6ZoHAHMkN_TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.043 [XNIO-1 task-2] J2N1k_JgTh6ZoHAHMkN_TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.055 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.062 [XNIO-1 task-2] OKcORbEjRHW_CarfGwxpfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.062 [XNIO-1 task-2] OKcORbEjRHW_CarfGwxpfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.062 [XNIO-1 task-2] OKcORbEjRHW_CarfGwxpfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.097 [XNIO-1 task-2] 8z1gQ2yFTaS3IHy2r-ZBww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:45.097 [XNIO-1 task-2] 8z1gQ2yFTaS3IHy2r-ZBww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.097 [XNIO-1 task-2] 8z1gQ2yFTaS3IHy2r-ZBww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.098 [XNIO-1 task-2] 8z1gQ2yFTaS3IHy2r-ZBww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:45.098 [XNIO-1 task-2] 8z1gQ2yFTaS3IHy2r-ZBww DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:45.106 [XNIO-1 task-2] 8z1gQ2yFTaS3IHy2r-ZBww DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.110 [XNIO-1 task-2] sqEA5QUUTqyAeARVcS2dVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:45.110 [XNIO-1 task-2] sqEA5QUUTqyAeARVcS2dVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.110 [XNIO-1 task-2] sqEA5QUUTqyAeARVcS2dVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.111 [XNIO-1 task-2] sqEA5QUUTqyAeARVcS2dVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74, base path is set to: null +20:00:45.111 [XNIO-1 task-2] sqEA5QUUTqyAeARVcS2dVA DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", clientId) +20:00:45.117 [XNIO-1 task-2] GtbqLG9nSEKWwDUqSDytUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:45.118 [XNIO-1 task-2] GtbqLG9nSEKWwDUqSDytUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.118 [XNIO-1 task-2] GtbqLG9nSEKWwDUqSDytUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.118 [XNIO-1 task-2] GtbqLG9nSEKWwDUqSDytUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:45.128 [XNIO-1 task-2] GtbqLG9nSEKWwDUqSDytUQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.129 [XNIO-1 task-2] GtbqLG9nSEKWwDUqSDytUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.135 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.135 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.136 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.136 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.136 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:45.136 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2fb77fc3-a03b-4a79-9708-f4de6194192e", {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:45.139 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.139 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.139 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "cb0f041f-4faf-4b83-bb73-f85d30d7", {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:45.139 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.139 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cb0f041f-4faf-4b83-bb73-f85d30d7","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.139 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.139 [XNIO-1 task-2] 21Bl8q4RQjG2-TqWaKnp1Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.140 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a823bf80 +20:00:45.144 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.144 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.145 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.145 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.145 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:45.145 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2fb77fc3-a03b-4a79-9708-f4de6194192e", {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:45.145 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.145 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.145 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "18d7040b-61af-4596-9ee2-3366aab3", {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:45.146 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.146 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"18d7040b-61af-4596-9ee2-3366aab3","clientDesc":"2fb77fc3-a03b-4a79-9708-f4de6194192e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.147 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.147 [XNIO-1 task-2] MCdIn9prTuiZQ_8TNDy1ZQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.155 [XNIO-1 task-2] -SDUo4L8R7OcgvBNf2QjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bf5f5c15-12aa-4c23-b152-0e154528af57, base path is set to: null +20:00:45.155 [XNIO-1 task-2] -SDUo4L8R7OcgvBNf2QjXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.155 [XNIO-1 task-2] -SDUo4L8R7OcgvBNf2QjXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.155 [XNIO-1 task-2] -SDUo4L8R7OcgvBNf2QjXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bf5f5c15-12aa-4c23-b152-0e154528af57, base path is set to: null +20:00:45.156 [XNIO-1 task-2] -SDUo4L8R7OcgvBNf2QjXA DEBUG com.networknt.schema.TypeValidator debug - validate( "bf5f5c15-12aa-4c23-b152-0e154528af57", "bf5f5c15-12aa-4c23-b152-0e154528af57", clientId) +20:00:45.167 [XNIO-1 task-2] cA-yHjr-T62JwsJAl5sUbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.167 [XNIO-1 task-2] cA-yHjr-T62JwsJAl5sUbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.167 [XNIO-1 task-2] cA-yHjr-T62JwsJAl5sUbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.168 [XNIO-1 task-2] cA-yHjr-T62JwsJAl5sUbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.185 [XNIO-1 task-2] PGtywl-TQwaS1phlnMH2Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.188 [XNIO-1 task-2] PGtywl-TQwaS1phlnMH2Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.188 [XNIO-1 task-2] PGtywl-TQwaS1phlnMH2Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.189 [XNIO-1 task-2] PGtywl-TQwaS1phlnMH2Pw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.210 [XNIO-1 task-2] uVY4bzO8R02hXuXm_Dlo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.210 [XNIO-1 task-2] uVY4bzO8R02hXuXm_Dlo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.210 [XNIO-1 task-2] uVY4bzO8R02hXuXm_Dlo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.217 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:753516bd +20:00:45.219 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:753516bd +20:00:45.238 [XNIO-1 task-2] e_3oo13hQJO5SowZFjS7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.238 [XNIO-1 task-2] e_3oo13hQJO5SowZFjS7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.239 [XNIO-1 task-2] e_3oo13hQJO5SowZFjS7yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.243 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:753516bd +20:00:45.254 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.272 [XNIO-1 task-2] 6fkTz4E3TFKlsCwMBNgW1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:45.272 [XNIO-1 task-2] 6fkTz4E3TFKlsCwMBNgW1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.272 [XNIO-1 task-2] 6fkTz4E3TFKlsCwMBNgW1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.272 [XNIO-1 task-2] 6fkTz4E3TFKlsCwMBNgW1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:45.275 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:753516bd +20:00:45.284 [XNIO-1 task-2] 6fkTz4E3TFKlsCwMBNgW1A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.285 [XNIO-1 task-2] 6fkTz4E3TFKlsCwMBNgW1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.291 [XNIO-1 task-2] CsbACf5qRGOvldGqbOZnuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.291 [XNIO-1 task-2] CsbACf5qRGOvldGqbOZnuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.291 [XNIO-1 task-2] CsbACf5qRGOvldGqbOZnuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.292 [XNIO-1 task-2] CsbACf5qRGOvldGqbOZnuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.309 [XNIO-1 task-2] toL7maVMRESSBj1ocvG4rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:45.309 [XNIO-1 task-2] toL7maVMRESSBj1ocvG4rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.309 [XNIO-1 task-2] toL7maVMRESSBj1ocvG4rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.309 [XNIO-1 task-2] toL7maVMRESSBj1ocvG4rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72cf3247-157c-456d-88aa-e569e158f1ee +20:00:45.318 [XNIO-1 task-2] 2bbr5hFnS5iBjjkpC7CI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.318 [XNIO-1 task-2] 2bbr5hFnS5iBjjkpC7CI1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.318 [XNIO-1 task-2] 2bbr5hFnS5iBjjkpC7CI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.319 [XNIO-1 task-2] 2bbr5hFnS5iBjjkpC7CI1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.342 [XNIO-1 task-2] d9_gE_MUS2KDeKy_XtnvIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.342 [XNIO-1 task-2] d9_gE_MUS2KDeKy_XtnvIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.343 [XNIO-1 task-2] d9_gE_MUS2KDeKy_XtnvIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.346 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:753516bd +20:00:45.376 [XNIO-1 task-2] 5P646UYuRfms331_TUL3WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.376 [XNIO-1 task-2] 5P646UYuRfms331_TUL3WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.376 [XNIO-1 task-2] 5P646UYuRfms331_TUL3WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.376 [XNIO-1 task-2] 5P646UYuRfms331_TUL3WA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.394 [XNIO-1 task-2] x1gyZY9YRjanBzOqQDzvEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d424af35-945f-4aaa-b6b7-7df3878914f5, base path is set to: null +20:00:45.394 [XNIO-1 task-2] x1gyZY9YRjanBzOqQDzvEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.394 [XNIO-1 task-2] x1gyZY9YRjanBzOqQDzvEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.394 [XNIO-1 task-2] x1gyZY9YRjanBzOqQDzvEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d424af35-945f-4aaa-b6b7-7df3878914f5, base path is set to: null +20:00:45.394 [XNIO-1 task-2] x1gyZY9YRjanBzOqQDzvEw DEBUG com.networknt.schema.TypeValidator debug - validate( "d424af35-945f-4aaa-b6b7-7df3878914f5", "d424af35-945f-4aaa-b6b7-7df3878914f5", clientId) +20:00:45.405 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.406 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.406 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.407 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "aabc9d00-6c39-49e1-9b3d-5567f721d577", {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ef9549c8-f0a7-409d-955b-c5565b58", {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ef9549c8-f0a7-409d-955b-c5565b58","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.408 [XNIO-1 task-2] IX_Fh-KpRaChsSvPqDhZ1Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.416 [XNIO-1 task-2] WqEZdqMBQHaPYneYENEyRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:45.417 [XNIO-1 task-2] WqEZdqMBQHaPYneYENEyRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.417 [XNIO-1 task-2] WqEZdqMBQHaPYneYENEyRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.417 [XNIO-1 task-2] WqEZdqMBQHaPYneYENEyRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:45.417 [XNIO-1 task-2] WqEZdqMBQHaPYneYENEyRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", clientId) +20:00:45.426 [XNIO-1 task-2] 2yL50SsaQIi4zEufe-_g5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.426 [XNIO-1 task-2] 2yL50SsaQIi4zEufe-_g5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.426 [XNIO-1 task-2] 2yL50SsaQIi4zEufe-_g5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.442 [XNIO-1 task-2] cfM7wP6_TeOClaWe_0zimQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:45.442 [XNIO-1 task-2] cfM7wP6_TeOClaWe_0zimQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.442 [XNIO-1 task-2] cfM7wP6_TeOClaWe_0zimQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.442 [XNIO-1 task-2] cfM7wP6_TeOClaWe_0zimQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04, base path is set to: null +20:00:45.442 [XNIO-1 task-2] cfM7wP6_TeOClaWe_0zimQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", clientId) +20:00:45.446 [XNIO-1 task-2] vWI4ILCYTbWI9SpC4czu5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:45.446 [XNIO-1 task-2] vWI4ILCYTbWI9SpC4czu5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.446 [XNIO-1 task-2] vWI4ILCYTbWI9SpC4czu5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.446 [XNIO-1 task-2] vWI4ILCYTbWI9SpC4czu5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:45.453 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.453 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.454 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.454 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.454 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.454 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.454 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.454 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.454 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.455 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.455 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.455 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9957e543-51b2-490a-9abd-7b0eb52e","clientDesc":"aabc9d00-6c39-49e1-9b3d-5567f721d577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.455 [XNIO-1 task-2] KPEsVN0HT8eBb06BZPK3RA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.459 [XNIO-1 task-2] qqn-Jgd0SfKdr1Sr0RTvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.459 [XNIO-1 task-2] qqn-Jgd0SfKdr1Sr0RTvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.460 [XNIO-1 task-2] qqn-Jgd0SfKdr1Sr0RTvww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.483 [XNIO-1 task-2] 8MfutI_SRTi6ovCIS_s7sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:45.483 [XNIO-1 task-2] 8MfutI_SRTi6ovCIS_s7sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.483 [XNIO-1 task-2] 8MfutI_SRTi6ovCIS_s7sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.483 [XNIO-1 task-2] 8MfutI_SRTi6ovCIS_s7sA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:45.490 [XNIO-1 task-2] 8MfutI_SRTi6ovCIS_s7sA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.490 [XNIO-1 task-2] 8MfutI_SRTi6ovCIS_s7sA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.494 [XNIO-1 task-2] 8YmClaw2RAu2VqZq4OyMMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.494 [XNIO-1 task-2] 8YmClaw2RAu2VqZq4OyMMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.494 [XNIO-1 task-2] 8YmClaw2RAu2VqZq4OyMMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.522 [XNIO-1 task-2] kX-GepW9TVObyHYdIxMKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.522 [XNIO-1 task-2] kX-GepW9TVObyHYdIxMKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.523 [XNIO-1 task-2] kX-GepW9TVObyHYdIxMKHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.523 [XNIO-1 task-2] kX-GepW9TVObyHYdIxMKHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.537 [XNIO-1 task-2] W4FPe7pQQb2Qjnuq8WbqYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.537 [XNIO-1 task-2] W4FPe7pQQb2Qjnuq8WbqYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.537 [XNIO-1 task-2] W4FPe7pQQb2Qjnuq8WbqYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.542 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:165c30a2 +20:00:45.565 [XNIO-1 task-2] pdn4BlDrSjuVO9GP41573Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f, base path is set to: null +20:00:45.565 [XNIO-1 task-2] pdn4BlDrSjuVO9GP41573Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.565 [XNIO-1 task-2] pdn4BlDrSjuVO9GP41573Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.565 [XNIO-1 task-2] pdn4BlDrSjuVO9GP41573Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/669ea312-2e09-48c0-ac1e-539d01e35f0f, base path is set to: null +20:00:45.565 [XNIO-1 task-2] pdn4BlDrSjuVO9GP41573Q DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", clientId) +20:00:45.571 [XNIO-1 task-2] PRV12JW_SfatHsynd8tuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.571 [XNIO-1 task-2] PRV12JW_SfatHsynd8tuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.572 [XNIO-1 task-2] PRV12JW_SfatHsynd8tuhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.581 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:823ef657-dcb5-4997-a568-64d723c850d2 +20:00:45.604 [XNIO-1 task-2] 81Z2xu15QuCAaig13XWM4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3d8a684-c1dd-479f-a2c2-152d8af015e0, base path is set to: null +20:00:45.604 [XNIO-1 task-2] 81Z2xu15QuCAaig13XWM4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.604 [XNIO-1 task-2] 81Z2xu15QuCAaig13XWM4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.606 [XNIO-1 task-2] 81Z2xu15QuCAaig13XWM4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c3d8a684-c1dd-479f-a2c2-152d8af015e0, base path is set to: null +20:00:45.606 [XNIO-1 task-2] 81Z2xu15QuCAaig13XWM4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c3d8a684-c1dd-479f-a2c2-152d8af015e0", "c3d8a684-c1dd-479f-a2c2-152d8af015e0", clientId) +20:00:45.607 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:165c30a2 +20:00:45.617 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.617 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.617 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.619 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.619 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:45.619 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ebda783a-f207-4acd-8d4b-2442e94c8042", {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:45.619 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.619 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.619 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62d23c0c-8f4e-45e5-8792-50cdd3b3", {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:45.620 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.620 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"62d23c0c-8f4e-45e5-8792-50cdd3b3","clientDesc":"ebda783a-f207-4acd-8d4b-2442e94c8042","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.620 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.620 [XNIO-1 task-2] 6yyMJrZcR5OAXIe81sn_QQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.623 [XNIO-1 task-2] cKyedVPvSTe-yqRVzpdahA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd3a2a92-2400-4d0b-b519-fa74c0f6269b, base path is set to: null +20:00:45.624 [XNIO-1 task-2] cKyedVPvSTe-yqRVzpdahA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.624 [XNIO-1 task-2] cKyedVPvSTe-yqRVzpdahA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.624 [XNIO-1 task-2] cKyedVPvSTe-yqRVzpdahA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dd3a2a92-2400-4d0b-b519-fa74c0f6269b, base path is set to: null +20:00:45.625 [XNIO-1 task-2] cKyedVPvSTe-yqRVzpdahA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd3a2a92-2400-4d0b-b519-fa74c0f6269b", "dd3a2a92-2400-4d0b-b519-fa74c0f6269b", clientId) +20:00:45.626 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:165c30a2 +20:00:45.631 [XNIO-1 task-2] zJsF16HVRqayqvpiJfmMoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.631 [XNIO-1 task-2] zJsF16HVRqayqvpiJfmMoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.631 [XNIO-1 task-2] zJsF16HVRqayqvpiJfmMoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.631 [XNIO-1 task-2] zJsF16HVRqayqvpiJfmMoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.651 [XNIO-1 task-2] JkEuXs0pTFWzLjnKI0f3CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:45.651 [XNIO-1 task-2] JkEuXs0pTFWzLjnKI0f3CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.651 [XNIO-1 task-2] JkEuXs0pTFWzLjnKI0f3CQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.651 [XNIO-1 task-2] JkEuXs0pTFWzLjnKI0f3CQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e, base path is set to: null +20:00:45.652 [XNIO-1 task-2] JkEuXs0pTFWzLjnKI0f3CQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", clientId) +20:00:45.654 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1d5ca229 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:45.662 [XNIO-1 task-2] JkEuXs0pTFWzLjnKI0f3CQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/4136dc93-8279-4f4c-8830-7ad343e9a23e} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.666 [XNIO-1 task-2] 2g-ER5IvR9aWolBSWFqHiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.666 [XNIO-1 task-2] 2g-ER5IvR9aWolBSWFqHiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.667 [XNIO-1 task-2] 2g-ER5IvR9aWolBSWFqHiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.674 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:feab02ed-d69c-4199-a894-69c8cd5570e6 +20:00:45.676 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:feab02ed-d69c-4199-a894-69c8cd5570e6 +20:00:45.692 [XNIO-1 task-2] B4XMQYKiSqe5xdLKe368Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4b909a55-f73c-49f6-a45f-74a3b8d79e16 +20:00:45.693 [XNIO-1 task-2] B4XMQYKiSqe5xdLKe368Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.693 [XNIO-1 task-2] B4XMQYKiSqe5xdLKe368Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.694 [XNIO-1 task-2] B4XMQYKiSqe5xdLKe368Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4b909a55-f73c-49f6-a45f-74a3b8d79e16 +20:00:45.713 [XNIO-1 task-2] f_dtjgAjSESGI6UI1A0Yqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.713 [XNIO-1 task-2] f_dtjgAjSESGI6UI1A0Yqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.714 [XNIO-1 task-2] f_dtjgAjSESGI6UI1A0Yqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.745 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.745 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.745 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.746 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"131e457e-195c-47e3-97af-953ae036","clientDesc":"146520c2-923f-4994-adda-3b8b7cca8892","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.748 [XNIO-1 task-2] iOTgE3YdQHGSMuyAONZGpw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.752 [XNIO-1 task-2] 0hi3mVwQTbCU__23Qa6aOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.752 [XNIO-1 task-2] 0hi3mVwQTbCU__23Qa6aOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.752 [XNIO-1 task-2] 0hi3mVwQTbCU__23Qa6aOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.774 [XNIO-1 task-2] 8N4kxNIJTz-W0f32AV_1Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.774 [XNIO-1 task-2] 8N4kxNIJTz-W0f32AV_1Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.774 [XNIO-1 task-2] 8N4kxNIJTz-W0f32AV_1Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.775 [XNIO-1 task-2] 8N4kxNIJTz-W0f32AV_1Gg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.821 [XNIO-1 task-2] 3MaWHo4dSReCf8ksgYPjEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61223882-e1af-4ed2-a88e-6e758089eaa6 +20:00:45.821 [XNIO-1 task-2] 3MaWHo4dSReCf8ksgYPjEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.821 [XNIO-1 task-2] 3MaWHo4dSReCf8ksgYPjEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.821 [XNIO-1 task-2] 3MaWHo4dSReCf8ksgYPjEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61223882-e1af-4ed2-a88e-6e758089eaa6 +20:00:45.827 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.827 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.828 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.828 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.828 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.828 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.828 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.828 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.829 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.829 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.829 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.829 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7c18315d-355d-4258-9a48-7ed511dc","clientDesc":"a6bc3c92-93cd-482f-9707-49995bb0382e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.830 [XNIO-1 task-2] LiAWR91OQ2KccHVxDBQjjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.837 [XNIO-1 task-2] 4Qqw-pkkTQW-wh4sdGG7vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.837 [XNIO-1 task-2] 4Qqw-pkkTQW-wh4sdGG7vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.838 [XNIO-1 task-2] 4Qqw-pkkTQW-wh4sdGG7vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.838 [XNIO-1 task-2] 4Qqw-pkkTQW-wh4sdGG7vg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.857 [XNIO-1 task-2] lmoOWCF_Qhir8lwCeTD9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.857 [XNIO-1 task-2] lmoOWCF_Qhir8lwCeTD9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.857 [XNIO-1 task-2] lmoOWCF_Qhir8lwCeTD9Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.857 [XNIO-1 task-2] lmoOWCF_Qhir8lwCeTD9Tg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.865 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4cfb46bc-fa8a-4597-93bb-f6535b93f74c +20:00:45.870 [XNIO-1 task-2] ZPfgsYibQ4eQyxDNVvPIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.870 [XNIO-1 task-2] ZPfgsYibQ4eQyxDNVvPIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.871 [XNIO-1 task-2] ZPfgsYibQ4eQyxDNVvPIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.888 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.888 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.888 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG com.networknt.schema.TypeValidator debug - validate( "fce45eda-7ab9-420f-8485-80100293b723", {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG com.networknt.schema.TypeValidator debug - validate( "d2ac97d7-5a79-4031-85e1-e8f272ca", {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d2ac97d7-5a79-4031-85e1-e8f272ca","clientDesc":"fce45eda-7ab9-420f-8485-80100293b723","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.889 [XNIO-1 task-2] eNHPuWeRR--QJeYv7KIeMg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.894 [XNIO-1 task-2] GC0HGrfoQb-2bIdoIJTJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2d263d1e-9713-4b93-bf35-1aecfa2f3b15, base path is set to: null +20:00:45.895 [XNIO-1 task-2] GC0HGrfoQb-2bIdoIJTJJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.895 [XNIO-1 task-2] GC0HGrfoQb-2bIdoIJTJJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +20:00:45.895 [XNIO-1 task-2] GC0HGrfoQb-2bIdoIJTJJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2d263d1e-9713-4b93-bf35-1aecfa2f3b15, base path is set to: null +20:00:45.895 [XNIO-1 task-2] GC0HGrfoQb-2bIdoIJTJJw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d263d1e-9713-4b93-bf35-1aecfa2f3b15", "2d263d1e-9713-4b93-bf35-1aecfa2f3b15", clientId) +20:00:45.916 [XNIO-1 task-2] hwXswp2MTyu_XII0cmjzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.916 [XNIO-1 task-2] hwXswp2MTyu_XII0cmjzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.917 [XNIO-1 task-2] hwXswp2MTyu_XII0cmjzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.935 [XNIO-1 task-2] x2o0KauCQmqycbo-tZsmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:45.936 [XNIO-1 task-2] x2o0KauCQmqycbo-tZsmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.936 [XNIO-1 task-2] x2o0KauCQmqycbo-tZsmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.936 [XNIO-1 task-2] x2o0KauCQmqycbo-tZsmYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:45.947 [XNIO-1 task-2] x2o0KauCQmqycbo-tZsmYQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.947 [XNIO-1 task-2] x2o0KauCQmqycbo-tZsmYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.952 [XNIO-1 task-2] 2AQWJf0aSwOm5d7oTMdfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.952 [XNIO-1 task-2] 2AQWJf0aSwOm5d7oTMdfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.953 [XNIO-1 task-2] 2AQWJf0aSwOm5d7oTMdfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.953 [XNIO-1 task-2] 2AQWJf0aSwOm5d7oTMdfTw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.967 [XNIO-1 task-2] nvLulneuT4KWIvFeGKz_hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf5f5c15-12aa-4c23-b152-0e154528af57 +20:00:45.967 [XNIO-1 task-2] nvLulneuT4KWIvFeGKz_hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.967 [XNIO-1 task-2] nvLulneuT4KWIvFeGKz_hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.967 [XNIO-1 task-2] nvLulneuT4KWIvFeGKz_hA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bf5f5c15-12aa-4c23-b152-0e154528af57 +20:00:45.978 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.978 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.978 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.979 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.980 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9173726b-2a36-4072-a743-34aabc4e","clientDesc":"74cc27a3-8c50-4999-9461-ae1c35d45272","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.980 [XNIO-1 task-2] oxV7Y6RUR0mMyfd-AVJyhQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +20:00:45.987 [XNIO-1 task-2] _8yMQBSRRCCMx-n8T0lp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6ec34f38-8a83-4467-99fb-ab8b2caef1c5 +20:00:45.987 [XNIO-1 task-2] _8yMQBSRRCCMx-n8T0lp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +20:00:45.987 [XNIO-1 task-2] _8yMQBSRRCCMx-n8T0lp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +20:00:45.987 [XNIO-1 task-2] _8yMQBSRRCCMx-n8T0lp8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6ec34f38-8a83-4467-99fb-ab8b2caef1c5 +20:00:45.997 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.997 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +20:00:45.997 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.998 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.999 [XNIO-1 task-2] aDp2BC6sSRSrOsdenTGxZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dafe8c82-1c98-4a6c-93ab-cb39fa30","clientDesc":"d87e5aea-6941-4545-9b41-ee6d2da894dc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) diff --git a/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-code-1.log b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..be86d7c --- /dev/null +++ b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2953 @@ +20:00:40.421 [XNIO-1 task-1] XV4eTtqjRZ-uMVZPDmDkRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:40.429 [XNIO-1 task-1] XV4eTtqjRZ-uMVZPDmDkRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.429 [XNIO-1 task-1] XV4eTtqjRZ-uMVZPDmDkRQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:40.439 [XNIO-1 task-1] XV4eTtqjRZ-uMVZPDmDkRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=60B7CgPnTwKF-ayjHMESuQ +20:00:40.447 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.447 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.448 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.449 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", client_id) +20:00:40.449 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:40.450 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:40.453 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:40.453 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:40.453 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:40.468 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.468 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:40.471 [XNIO-1 task-1] vF7EClM3SCut656Mh7lj6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yCZXkJi8So-GkDFlwwM-cg +20:00:40.474 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.474 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.474 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.475 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:40.475 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:40.476 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:40.476 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:40.476 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:40.485 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.485 [XNIO-1 task-1] re7qZ9avTYWxU4QmLN6GMg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:40.486 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f2ce13b4-e8d5-4726-9767-a933690d4f2e +20:00:40.493 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.493 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:40.493 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.494 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:40.495 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:40.495 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:40.496 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:40.496 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:40.496 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:40.498 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fb30e5e7 +20:00:40.506 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.506 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:40.513 [XNIO-1 task-1] eGaUViDRR3i5piwm8JlRFg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AebheqDdT8mEE5bzM4ZQ2Q +20:00:40.530 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb30e5e7 +20:00:40.613 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.613 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.613 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.614 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:40.614 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:40.615 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:40.615 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:40.645 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.646 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:40.646 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:40.646 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.647 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG com.networknt.schema.TypeValidator debug - validate( "yzTCoSVWZRrxY13bRtuzfrlS7oeHjQaV2UUuOGVDRbk", "yzTCoSVWZRrxY13bRtuzfrlS7oeHjQaV2UUuOGVDRbk", code_challenge) +20:00:40.648 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:40.648 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:40.648 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:40.649 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:40.649 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:40.649 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:40.650 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb30e5e7 +20:00:40.655 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:40.655 [XNIO-1 task-1] vBfCXE6aQ2mZkPyTJEfeUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:40.663 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.663 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:40.663 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.664 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:40.664 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:40.665 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:40.665 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:40.665 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:40.666 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:40.702 [XNIO-1 task-2] j9WtidaRQJKnflZP4LTJXw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:40.702 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.702 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:40.703 [XNIO-1 task-1] 6FXCxV7WSwuKw9IQqUdWvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:40.710 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.711 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:40.711 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.712 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mH6cBMsJi7za44luFl2cl9VkciSahLEZU99QbX2XYw4", "mH6cBMsJi7za44luFl2cl9VkciSahLEZU99QbX2XYw4", code_challenge) +20:00:40.712 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:40.713 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:40.718 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:40.718 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:40.718 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:40.719 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:40.761 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.762 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:40.762 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.762 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:40.763 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:40.763 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:40.764 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:40.764 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:40.764 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:40.774 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:40.775 [XNIO-1 task-1] IW9r7ecEQ5CQQ-JRQ4PHxQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:40.780 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.781 [XNIO-1 task-2] LFhz8dZyTB2F_VPKahvlZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:40.784 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.785 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:40.785 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:40.785 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:40.786 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb30e5e7 +20:00:40.787 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:40.788 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:40.788 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:40.788 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:40.788 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:40.796 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.796 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:40.803 [XNIO-1 task-1] lqvEvChdRKCAVQPkpyyTTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nZW54qi-TEaunbVMr2HiNQ +20:00:40.892 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.892 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.893 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.893 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", client_id) +20:00:40.894 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:40.894 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:40.895 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:40.895 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:40.895 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:40.903 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fb30e5e7 +20:00:40.907 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:40.907 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:40.911 [XNIO-1 task-1] 6sbVWuGLSM6E8_F_PxAmyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qbkZzRbFTXqWZq_QsNB2dg +20:00:40.915 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.915 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.915 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:40.916 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", client_id) +20:00:40.917 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:40.917 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:40.918 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:40.920 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:40.920 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:40.926 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8ef66664-ea65-4fb9-b2a5-2d27df491769 +20:00:40.928 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8ef66664-ea65-4fb9-b2a5-2d27df491769 +20:00:40.954 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:40.954 [XNIO-1 task-1] JDcjlM1wTMisGD-Vcck_sg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:40.967 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8ef66664-ea65-4fb9-b2a5-2d27df491769 +20:00:41.029 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.029 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.029 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.030 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.031 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.031 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.031 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.032 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.070 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fb30e5e7 +20:00:41.075 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.075 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.075 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.076 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG com.networknt.schema.TypeValidator debug - validate( "9eglgiPlctQHJ9kM6AlwwVsMkRYxh1_UeKQOTFV__CI", "9eglgiPlctQHJ9kM6AlwwVsMkRYxh1_UeKQOTFV__CI", code_challenge) +20:00:41.076 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:41.077 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.077 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.078 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.078 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.078 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.079 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.080 [XNIO-1 task-1] 4s7NXElCS1manRHvUcRxuw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.091 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fb30e5e7 +20:00:41.115 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fb30e5e7 +20:00:41.117 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.117 [XNIO-1 task-2] EdSZ2yjEQ9GJsrTyicu-dA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.119 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fb30e5e7 +20:00:41.168 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.168 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.168 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.169 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG com.networknt.schema.TypeValidator debug - validate( "e94a8965-50bc-4511-9bbf-2bd8e002550d", "e94a8965-50bc-4511-9bbf-2bd8e002550d", client_id) +20:00:41.170 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.170 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.171 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.171 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.172 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.196 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d7120320-a06b-403e-ae35-48bbb342120c +20:00:41.214 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d7120320-a06b-403e-ae35-48bbb342120c +20:00:41.217 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:18ae3482 +20:00:41.219 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.219 [XNIO-1 task-2] Sp2QSZwRQNuczDeIOhSwoA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.222 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.223 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.223 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.224 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:41.224 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.224 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.225 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.225 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.225 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.228 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.228 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.228 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.229 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG com.networknt.schema.TypeValidator debug - validate( "4tHHI_sGHeMfBH_HEmrnE8lRPddKO0rGZyDw1vBUdQ0", "4tHHI_sGHeMfBH_HEmrnE8lRPddKO0rGZyDw1vBUdQ0", code_challenge) +20:00:41.229 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:41.230 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.230 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.235 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.236 [XNIO-1 task-1] XzMKjgSNR8iA1TAiGGUAhQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.239 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.239 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.239 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.246 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.246 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.248 [XNIO-1 task-2] h_IimoITQRmwSV_t7nrV1g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=e1yDfoNATyuCFk-ibDaEyA +20:00:41.256 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.256 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.256 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.257 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:41.257 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.258 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.258 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.259 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.262 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.313 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f62aa97 +20:00:41.356 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.356 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.359 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:4f62aa97 +20:00:41.360 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b76e6f30-0ef2-40ae-9b0e-44a267b012b7 +20:00:41.362 [XNIO-1 task-2] oJ4rzeaIQS2hMeTgStUqvw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bcyJhNYlR2KNXb_ZW73Org +20:00:41.378 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf0dcffc-685d-40bc-b0ff-8effa76199e6 +20:00:41.381 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.381 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.383 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.385 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.385 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.386 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.386 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.386 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.396 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.396 [XNIO-1 task-2] 1jF-reo1QGyCtA1mBSnM2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.398 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bf0dcffc-685d-40bc-b0ff-8effa76199e6 +20:00:41.404 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.404 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.405 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.406 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcd5e52a-95ca-48e9-a287-6e650c0614b7", "dcd5e52a-95ca-48e9-a287-6e650c0614b7", client_id) +20:00:41.406 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.406 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.407 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.407 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.411 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.431 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.431 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.432 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.432 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG com.networknt.schema.TypeValidator debug - validate( "2nsqVY1hP6HAo8Tl_KWtGDvk-kap7Rybx-uHg-J5f94", "2nsqVY1hP6HAo8Tl_KWtGDvk-kap7Rybx-uHg-J5f94", code_challenge) +20:00:41.433 [XNIO-1 task-2] zu7btFZ3SaaZDDHW_woubQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.434 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:41.437 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.437 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.437 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.438 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.438 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.439 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.443 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.443 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.443 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.444 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.444 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.445 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.445 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.445 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.496 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.496 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.502 [XNIO-1 task-1] 5g8tGXZMRLOhf6fGeL6PKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=neLM9SaiRrCjqtrPgyP3SQ +20:00:41.507 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.507 [XNIO-1 task-2] cbt3hVMgRRmaOq5BiKapdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.510 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.520 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.520 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.520 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG com.networknt.schema.TypeValidator debug - validate( "6F6EyVrupcFN03bSK1Md1DOLjii_87dOKAZ4mBaWBRU", "6F6EyVrupcFN03bSK1Md1DOLjii_87dOKAZ4mBaWBRU", code_challenge) +20:00:41.521 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:41.521 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.522 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.523 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.523 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.523 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.542 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.542 [XNIO-1 task-1] rMCw0h5kRfWfFQb9ub3hdA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.618 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.618 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.619 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.619 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:41.620 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.620 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.620 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.620 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.621 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.640 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.640 [XNIO-1 task-1] M5TfzvBkRy6pV3cDPGuVWQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.652 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.652 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.653 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.653 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:41.654 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.654 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.654 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.654 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.654 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.667 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.667 [XNIO-1 task-1] AGUBXJa9ToKGo_cE7EkZPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.676 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.676 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.676 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.677 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c0e80e3d +20:00:41.680 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", client_id) +20:00:41.680 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.681 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.681 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.681 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.682 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.695 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.695 [XNIO-1 task-1] 4aLCni4yRBCJYulG6ULLMg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.703 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.703 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.703 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.704 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:41.704 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.704 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.705 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.705 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.705 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.722 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.722 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.725 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.725 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.726 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.728 [XNIO-1 task-1] QCrjICDPSgS9iOtCLe_wsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VdgiwHjjRjax8nxkTBVDWw +20:00:41.730 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:41.731 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.731 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.732 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.732 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.732 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.734 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.734 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.734 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.735 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.735 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.736 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.736 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.736 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.752 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.752 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.756 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.756 [XNIO-1 task-1] SAWvSCFjR4Cyqm1JPJQ45g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.757 [XNIO-1 task-2] M75vpVAqQu2wBz5kBeIq9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CoAUgoqYR36crJ6IPNYAFQ +20:00:41.765 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.766 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.766 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.766 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fd2CLkhxvLjK_xdDoUomXXQR4NsnxcFGP61cgUjx-DM", "fd2CLkhxvLjK_xdDoUomXXQR4NsnxcFGP61cgUjx-DM", code_challenge) +20:00:41.767 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:41.767 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.767 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.768 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.768 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.769 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.772 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c0e80e3d +20:00:41.783 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.783 [XNIO-1 task-1] vgyCHiq9Sgyqz1nc3to-9Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.791 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.791 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:41.792 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.792 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG com.networknt.schema.TypeValidator debug - validate( "77qHYYBMkCeLIerBUz7buoDMrvYODt2yYmIM39V_Sog", "77qHYYBMkCeLIerBUz7buoDMrvYODt2yYmIM39V_Sog", code_challenge) +20:00:41.793 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:41.793 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.794 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.794 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.794 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.795 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.800 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c0e80e3d +20:00:41.806 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.806 [XNIO-1 task-1] BLU5ym0SQ7-FtfhHEgPXKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.809 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c0e80e3d +20:00:41.815 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.815 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.815 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.816 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:41.816 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.816 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.817 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.817 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.817 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.825 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.825 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.830 [XNIO-1 task-1] vTNjfUZ9ROS3rM9wndpjxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0r2ESbuTR665z1hvd63iJA +20:00:41.836 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.836 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.836 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.837 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:41.837 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.837 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.838 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.838 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.838 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.847 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.847 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.850 [XNIO-1 task-1] 1VNC7-DZRYCPWYr7NYsPUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MRttXuJnTXOe_Lw3aMF8FA +20:00:41.856 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.856 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.857 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.858 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:41.859 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.859 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.859 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.860 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.860 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.869 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.872 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.874 [XNIO-1 task-1] fOqCw6lwTMKxcEadnCGOoQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XcCrJKsAQnWXx5Q2NzsI1g +20:00:41.878 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.878 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.879 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.880 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:41.880 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.880 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.881 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.881 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.881 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.889 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.889 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.892 [XNIO-1 task-1] FO9meEObTq6zymPvxO8Tjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZH2JQ_mZRSSGVXg_D0N8FA +20:00:41.899 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:18ae3482 +20:00:41.899 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.900 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.901 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.902 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", client_id) +20:00:41.902 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.903 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.903 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:41.903 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.903 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.903 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.903 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.903 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.904 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:41.904 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:41.905 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:41.905 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:41.905 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:41.907 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:41.909 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:41.909 [XNIO-1 task-1] KImOfEasSSiSlEz_DLnQtQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:41.912 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.913 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.915 [XNIO-1 task-2] 0bO6404mSgyrbsyWlqw32w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=amh1UGNPRHKY2M4mPaZ1xg +20:00:41.921 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.922 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.922 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.923 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.923 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.924 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.924 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.924 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.935 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.935 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.940 [XNIO-1 task-2] d8hFm4DwTZereZxjN-US7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3885dVH_TvypFsWYng8sWw +20:00:41.947 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.947 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.947 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:41.948 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:41.948 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:41.948 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:41.949 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:41.949 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:41.957 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:41.957 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:41.962 [XNIO-1 task-2] TK-x7GBeTpqu0vmogHYjRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6ng6AbekTPCw4sdQhv23dQ +20:00:42.018 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.018 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.019 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.020 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.020 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.020 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.020 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.021 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.022 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.022 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.022 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG com.networknt.schema.TypeValidator debug - validate( "K2rbG5_VE60rZuLNcDoo_zcK4uOz2hRp2MWtgRwkdxU", "K2rbG5_VE60rZuLNcDoo_zcK4uOz2hRp2MWtgRwkdxU", code_challenge) +20:00:42.023 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:42.023 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.023 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.023 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.023 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.024 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.025 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.050 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.050 [XNIO-1 task-1] aTLJqOuiSoez48N5-ylvmg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.051 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.051 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.053 [XNIO-1 task-2] cc3iMHH_S2qLQQi2WaWvSA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=u3TfcFSNRzSjtcA1BYDHrQ +20:00:42.065 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:18ae3482 +20:00:42.104 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:dadcb776 +20:00:42.152 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.153 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.153 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.153 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:42.154 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.154 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.154 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.154 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.154 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.162 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.162 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.181 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.181 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.181 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.182 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:42.182 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.182 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.183 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.183 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.183 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.192 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.192 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.196 [XNIO-1 task-1] aldUIuT2QFilrt8OjCSymg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xpkuOP8zTxykGcodBbqhFQ +20:00:42.200 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.200 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.200 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.201 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:42.201 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.201 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.201 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.202 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.202 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.208 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.209 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.210 [XNIO-1 task-1] tH_AitRtR3CttFKMtCYLbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=axvOY5sTRpOMHGBIdvvcbw +20:00:42.214 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.214 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.214 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.215 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:42.215 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.216 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.216 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.216 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.216 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.222 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.222 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.224 [XNIO-1 task-1] r7DJZs4nQmyIGi4ENRDNeQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cPMdb1g1TW6mR8v0Qlrn0w +20:00:42.228 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.228 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.228 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.229 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:42.229 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.229 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.230 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.230 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.230 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.236 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.236 [XNIO-1 task-1] aP8t-5lbTXu1mFOKjy5WwA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.238 [XNIO-1 task-2] qccHkXzPR5WgqOosdJtqhQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JlNJhmPbTIG7f4kc96pY9g +20:00:42.284 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.284 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.284 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.285 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", client_id) +20:00:42.285 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.285 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.285 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.286 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.286 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.300 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.300 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.301 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.301 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.302 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.302 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:42.303 [XNIO-1 task-1] 1Zj2CRGpQz-Is2ZvH62YPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IqJaGyfER3eiuNUmphpW2A +20:00:42.303 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.303 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.303 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.303 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.304 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.307 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.307 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.307 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.308 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.308 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.308 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.309 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.309 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.313 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.314 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.315 [XNIO-1 task-2] ex3XTNhxQ5-_tUNb2e76pA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=epG_zN3JQeiD6pngfSkkXA +20:00:42.318 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.318 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.319 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.319 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.319 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.319 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", "faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04", client_id) +20:00:42.320 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.320 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.320 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.320 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.321 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.334 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.334 [XNIO-1 task-2] 5zXMluhiTiiVhF1gZL7yRQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.355 [XNIO-1 task-1] k36yRirTR9e3YXxEb1ydLQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yJhpKsAAQJymXOADDEMFjA +20:00:42.356 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:18ae3482 +20:00:42.361 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.361 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.361 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.362 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG com.networknt.schema.TypeValidator debug - validate( "4136dc93-8279-4f4c-8830-7ad343e9a23e", "4136dc93-8279-4f4c-8830-7ad343e9a23e", client_id) +20:00:42.363 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.363 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.363 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.364 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.364 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.366 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.366 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.367 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.367 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG com.networknt.schema.TypeValidator debug - validate( "cf6d78af-d182-4d80-af4e-3fc8f1d00b44", "cf6d78af-d182-4d80-af4e-3fc8f1d00b44", client_id) +20:00:42.368 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.368 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.368 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.368 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.373 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.373 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.373 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.375 [XNIO-1 task-1] WfZvhJNnSXa_uhhmDBjQ_g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3D2n0XqGTBmcTHmOT66MGg +20:00:42.394 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:86671835 +20:00:42.395 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.395 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.395 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.398 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", client_id) +20:00:42.398 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.399 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.399 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.399 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.400 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.403 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.403 [XNIO-1 task-2] oAF_Fuf5SMaxYRtbFkONIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.407 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.408 [XNIO-1 task-1] CrTMxMJZRgO1brFERYaeDQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.410 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.410 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.410 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.410 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG com.networknt.schema.TypeValidator debug - validate( "_7A48fDlMxJM-qz2GAPq9n9Ua-cvw5I5xKaVSAH0SYo", "_7A48fDlMxJM-qz2GAPq9n9Ua-cvw5I5xKaVSAH0SYo", code_challenge) +20:00:42.411 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:42.411 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.412 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.412 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.412 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.412 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.421 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.421 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.422 [XNIO-1 task-2] R9idyzN0QMm8WHLVznHltA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=gBGdrnSQT9Srl-o8KjpPFw +20:00:42.427 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.427 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.427 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.428 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:42.428 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.428 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.429 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.429 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.431 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.439 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.439 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.441 [XNIO-1 task-2] P4Yi_oFETfiXvtmL4lrkeA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zRFvxY86TyS1HBc1sG0ivg +20:00:42.460 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.461 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.462 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.462 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.462 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.463 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.463 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.463 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.474 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.474 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.474 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.475 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG com.networknt.schema.TypeValidator debug - validate( "XfZFhV1r9Bioc8TrcRBDs8UiJgsj8aPoWSnym1BArkk", "XfZFhV1r9Bioc8TrcRBDs8UiJgsj8aPoWSnym1BArkk", code_challenge) +20:00:42.475 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:42.475 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.475 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.475 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.476 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.476 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.476 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.476 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.486 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.487 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.503 [XNIO-1 task-2] NrQQT5eTRa-gOV6wrbycpg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HHei53UrTf2pLu-FhIjxZQ +20:00:42.509 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.509 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.509 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.510 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.511 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.511 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.511 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.512 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.543 [XNIO-1 task-1] XXnawuWkSUOILHsR5ZiRcg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UBMWRwAFQR63PjpMlO1JBA +20:00:42.563 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:61eaf4d4 +20:00:42.567 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.567 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.575 [XNIO-1 task-2] WloOwWsGTsmZhs5MxN_0QQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AiVq3axNSEy0QVTCTKUcmg +20:00:42.579 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.580 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.581 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.581 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.581 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.582 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.582 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.582 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.586 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:86671835 +20:00:42.596 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:18ae3482 +20:00:42.598 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.598 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.600 [XNIO-1 task-2] WDvmaZ9eQkmf-4kULdX-kQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Zjnbg0heRhid6daKEoUQuQ +20:00:42.605 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.605 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.605 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.605 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.606 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.606 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.606 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.606 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.618 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.619 [XNIO-1 task-2] aufue7kuTYSLBsJERLBd1w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.622 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.622 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.622 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.622 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG com.networknt.schema.TypeValidator debug - validate( "GCz1tPTBZW_nxdl4zlMBomaYmwLCjYL-9CI-m1nwM6s", "GCz1tPTBZW_nxdl4zlMBomaYmwLCjYL-9CI-m1nwM6s", code_challenge) +20:00:42.623 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:42.623 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.623 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.624 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.624 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.624 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.630 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:61eaf4d4 +20:00:42.633 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.632 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:61eaf4d4 +20:00:42.635 [XNIO-1 task-1] OY-bEYQmQwGv_Gtgd3omdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BKAfHqBLRCuc30ncPpbmzQ +20:00:42.644 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.644 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.644 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.645 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", client_id) +20:00:42.645 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.645 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.646 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.646 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.646 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.654 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.654 [XNIO-1 task-1] lKHYqJFmT4iV5wRa-AgOkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.655 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.656 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.656 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.656 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:42.656 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.656 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.657 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.657 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.657 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.661 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.661 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.661 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.662 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG com.networknt.schema.TypeValidator debug - validate( "HsiS3phGsekplC3Ac2Gt8Hb6xTno__ZdDkWdsEqkpK0", "HsiS3phGsekplC3Ac2Gt8Hb6xTno__ZdDkWdsEqkpK0", code_challenge) +20:00:42.662 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:42.662 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.662 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.663 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.663 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.663 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.663 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.663 [XNIO-1 task-2] Bkn2dJsIQxOto6tnjPlImw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.673 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.673 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.675 [XNIO-1 task-1] ZQ61PajqT0ybj8iRvUfDKA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bNV2FixHRsSVPUegIvh2OQ +20:00:42.681 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.681 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.681 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.682 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", client_id) +20:00:42.682 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.682 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.682 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.682 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.683 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.691 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.692 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.693 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.694 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.694 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.694 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG com.networknt.schema.TypeValidator debug - validate( "20695699-f4c3-4216-8e40-6783f832f3fc", "20695699-f4c3-4216-8e40-6783f832f3fc", client_id) +20:00:42.694 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.695 [XNIO-1 task-1] 53wQBUdeRFK1ypgK8d-93A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ipLTbWD7RT22VoUKXgy0lg +20:00:42.695 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.695 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.713 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.720 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.720 [XNIO-1 task-2] reWxcgZdSB2lQDcNPd6Cag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.726 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:dadcb776 +20:00:42.730 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:dadcb776 +20:00:42.735 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.735 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.736 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.736 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.736 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.737 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.737 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.737 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.748 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.748 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.752 [XNIO-1 task-2] h5EFesMXQA6eG8uTqOihCw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Kx98Ny0-TbKIIRMNXsThHg +20:00:42.756 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.756 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.756 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.756 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.757 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.757 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.757 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.757 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.763 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.763 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.767 [XNIO-1 task-2] 3vK5RKaLRjqeO5rw81Mqcw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=s9djB5OmQ3m9hatmwj4JRw +20:00:42.772 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.773 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.773 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.773 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:42.773 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.774 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.774 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.774 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.774 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.778 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.779 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.779 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.779 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG com.networknt.schema.TypeValidator debug - validate( "e94a8965-50bc-4511-9bbf-2bd8e002550d", "e94a8965-50bc-4511-9bbf-2bd8e002550d", client_id) +20:00:42.781 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.782 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.782 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.782 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.782 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.784 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.784 [XNIO-1 task-2] RI5IHDbKTSiSpxmFv2A49Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.790 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.790 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.790 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.790 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.791 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.792 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG com.networknt.schema.TypeValidator debug - validate( "KdvcnuFlHHMNv3F2YAxNNcbJs55gJRvfxA_yHVoR_4k", "KdvcnuFlHHMNv3F2YAxNNcbJs55gJRvfxA_yHVoR_4k", code_challenge) +20:00:42.792 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:42.792 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.793 [XNIO-1 task-1] jI2u_G5RTgKU9Tlpb3rs2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JiOAxXDjTRe337kKVP_8Ow +20:00:42.793 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.793 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.793 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.809 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.809 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.812 [XNIO-1 task-2] Ur-vmYOdQUCWAELQu1Ilww DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=u_48DmylSB6t4HPgxdOAaA +20:00:42.819 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.819 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.819 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.820 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", client_id) +20:00:42.820 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.820 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.820 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.820 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.820 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.830 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.830 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.834 [XNIO-1 task-2] 1S9xvDhtSW2Y8T91NswThw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=trw_MgQ8QeCxC_eHw_h1aA +20:00:42.873 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.873 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.873 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.874 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.874 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.876 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.876 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.876 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.884 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.885 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.886 [XNIO-1 task-2] NH7_fEixTY-WE2SmYFicVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wf-LP50LQGyJ3tsB4V3Aog +20:00:42.891 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.891 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.892 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.892 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.892 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.893 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.893 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.893 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.899 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.900 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.901 [XNIO-1 task-2] FIjMCW2yRjCBXOon_BG_GA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xnFQ4OGUQRauxUD0JxJA9g +20:00:42.926 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.927 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.927 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.927 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.927 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.928 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.928 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.930 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.939 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.940 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.943 [XNIO-1 task-2] BGb7UXAFT_27uQ0SEKxOsg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=S6mL4D2PTT-vPvLDSepkow +20:00:42.948 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.948 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.948 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.948 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.949 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.949 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.949 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.949 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.958 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.958 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.959 [XNIO-1 task-2] 5lvK7OIzTHmVki2yd-0kSw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4sD1M1fuSC-LpmjaCczEHA +20:00:42.966 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.966 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.966 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.967 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.968 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.968 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.968 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.968 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:42.975 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.975 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:42.975 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:42.975 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:42.975 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:42.975 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG com.networknt.schema.TypeValidator debug - validate( "D4Cef2wYDHIqUFDLUT3MDsPfSWG8-45u23s1d0qbAqs", "D4Cef2wYDHIqUFDLUT3MDsPfSWG8-45u23s1d0qbAqs", code_challenge) +20:00:42.976 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:42.976 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:42.976 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:42.976 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:42.977 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:42.977 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:42.982 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:42.982 [XNIO-1 task-1] t5yfGn2DQaCEWDbiOSetAg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:42.986 [XNIO-1 task-2] a4rv7hf3TYed5dJnVXOCSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0HHRBaRbQse8DX_F71Hfog +20:00:42.988 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.988 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.989 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:42.989 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4b472d-eead-4f78-82c3-079d523bdcd0", "0f4b472d-eead-4f78-82c3-079d523bdcd0", client_id) +20:00:42.989 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:42.989 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:42.990 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:42.990 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:42.991 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.002 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.002 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.004 [XNIO-1 task-2] Zio28JcLSRqFwGrI4e5GjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=wIABzQsKT1CRGiEe-w9WTw +20:00:43.010 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.010 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.011 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.012 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4b472d-eead-4f78-82c3-079d523bdcd0", "0f4b472d-eead-4f78-82c3-079d523bdcd0", client_id) +20:00:43.012 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.012 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.013 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.013 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.013 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.024 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.024 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.024 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.024 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG com.networknt.schema.TypeValidator debug - validate( "61223882-e1af-4ed2-a88e-6e758089eaa6", "61223882-e1af-4ed2-a88e-6e758089eaa6", client_id) +20:00:43.025 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.025 [XNIO-1 task-2] h1FlYSaKQoOqcPYrRgV08A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.025 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.025 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.025 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.025 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.026 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.033 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.036 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.044 [XNIO-1 task-1] harK-52-R46PHG5L17jJkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kQZNi2IOReiGUsIG_Jsl4w +20:00:43.048 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.048 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.048 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.048 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.049 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.049 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.049 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.050 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.056 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.056 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.058 [XNIO-1 task-1] drB6Gu2GQU2HXaJqRlQqkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=v0XH3kFZT4GcnVWBpc8YFw +20:00:43.095 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.095 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.095 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.096 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.097 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.097 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.097 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.097 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.098 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.098 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.098 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.098 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG com.networknt.schema.TypeValidator debug - validate( "vS2hQ-ZiGhddJshOOlKQigMFiTbXdO3ocmPTA_HY37A", "vS2hQ-ZiGhddJshOOlKQigMFiTbXdO3ocmPTA_HY37A", code_challenge) +20:00:43.099 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.100 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.101 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.101 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.101 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.101 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.107 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.107 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.107 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.107 [XNIO-1 task-1] BbxZMY7vRd2jNBUX-9fRlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.110 [XNIO-1 task-2] 67spBggxQMuyhvwlNHlbzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bpFK1Ve-SNavWG-HyHLwYQ +20:00:43.116 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.118 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.118 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.118 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.118 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.119 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.119 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.119 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.125 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.126 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.128 [XNIO-1 task-2] cqQfRgKsRqmajaFSTXEvfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zKOfzOZoRY63nN7xQi6dAA +20:00:43.135 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.136 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.136 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.136 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.137 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.137 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.137 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.138 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.150 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.150 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.153 [XNIO-1 task-2] 111JvgPFRFKhEfDBMKaPkw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=w7eMjaHTR3iUIA_S9cfYQw +20:00:43.185 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.185 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.186 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.187 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.187 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.192 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.196 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.197 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.200 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2bb0eaf1-06bf-4e79-bfc1-d6000309f107 +20:00:43.201 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2bb0eaf1-06bf-4e79-bfc1-d6000309f107 +20:00:43.207 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.207 [XNIO-1 task-2] rYwhWsS8QSKR3cxyxqf9pA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.215 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:77a311f5 +20:00:43.215 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.215 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.215 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.216 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG com.networknt.schema.TypeValidator debug - validate( "61223882-e1af-4ed2-a88e-6e758089eaa6", "61223882-e1af-4ed2-a88e-6e758089eaa6", client_id) +20:00:43.216 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.216 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.217 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.217 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.217 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.217 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.217 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.218 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.218 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", client_id) +20:00:43.218 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.218 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.219 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.219 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.219 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.220 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:77a311f5 +20:00:43.225 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.225 [XNIO-1 task-2] IcHQuRvvQYecMMHpVn72ng DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.228 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.228 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.230 [XNIO-1 task-1] rHRABSDWRHyWH5UnryNQ_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hp9pvsBYTfSQVl_JmVF6Ag +20:00:43.237 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.238 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.238 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.238 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG com.networknt.schema.TypeValidator debug - validate( "61223882-e1af-4ed2-a88e-6e758089eaa6", "61223882-e1af-4ed2-a88e-6e758089eaa6", client_id) +20:00:43.238 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.239 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.239 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.239 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.239 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.246 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.246 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.251 [XNIO-1 task-1] 4bR3bLE2QCmjZGg6WcTL6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=EjLbx01NSsqwTWuesvZhAw +20:00:43.267 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:77a311f5 +20:00:43.270 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bb4c4513-5502-4de5-a602-eb90b86f2244 +20:00:43.320 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:158c4fc8-4c84-44a4-bbc0-45e9e791a998 +20:00:43.329 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bb4c4513-5502-4de5-a602-eb90b86f2244 +20:00:43.353 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.355 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.355 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.357 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.357 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.357 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.357 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.359 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.369 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.372 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.372 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.372 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.372 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.372 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "UTsAshwhgVTE5-lCFsF5FfVpaKk2rhMRmEtI8mGYuLg", "UTsAshwhgVTE5-lCFsF5FfVpaKk2rhMRmEtI8mGYuLg", code_challenge) +20:00:43.372 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.373 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.373 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.373 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.373 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.373 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.380 [XNIO-1 task-1] ISx8Nl7HTRikP_R4T2R0NA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WNsOYvirTQiWZJUimrpIRg +20:00:43.383 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.384 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.384 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.384 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.384 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.385 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.385 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.385 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.398 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a5b352b7-b89e-4b0d-911f-14cb4dc8e724 +20:00:43.402 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.402 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.403 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.403 [XNIO-1 task-1] Li2rymoiQuCHG7KlHUx7RA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.408 [XNIO-1 task-2] K-OqIdsYQQW6MUr8vuRi1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=VwGwlLMCT_-CmGAcrBgPFA +20:00:43.436 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.436 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.436 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.436 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG com.networknt.schema.TypeValidator debug - validate( "UdQqVjJdpX0Z5yrSw5c0hEvatWmRUYaVCcREJHNdyeM", "UdQqVjJdpX0Z5yrSw5c0hEvatWmRUYaVCcREJHNdyeM", code_challenge) +20:00:43.437 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.437 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.437 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.437 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.437 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.437 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.452 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.452 [XNIO-1 task-1] PDXkgH1iS621U_Gmnpb6qg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.459 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.459 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.459 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.459 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:43.460 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.460 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.460 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.460 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.460 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.470 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.470 [XNIO-1 task-2] Iq2kf8EwQLOhLuZOoLD_7w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.494 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.495 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.495 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.496 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:43.496 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.496 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.497 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.497 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.497 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.514 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.514 [XNIO-1 task-2] e5-MlfsSQ5O555d-WCP_Ig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.521 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.521 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.521 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.522 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:43.522 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.523 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.523 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.523 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.523 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.533 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.533 [XNIO-1 task-2] H2mxp9mfRWSxo0vqz2zg3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.541 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.541 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.541 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.541 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "61223882-e1af-4ed2-a88e-6e758089eaa6", "61223882-e1af-4ed2-a88e-6e758089eaa6", client_id) +20:00:43.542 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.542 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.542 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.542 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.542 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.551 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.551 [XNIO-1 task-2] DPN67aEUT-2fWiAe51y_Kw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.559 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9585e47 +20:00:43.563 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9585e47 +20:00:43.571 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.571 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.571 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.572 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:43.572 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.572 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.572 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.573 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.573 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.583 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.584 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.584 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.584 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c9585e47 +20:00:43.584 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.584 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.584 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.585 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.585 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.585 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.585 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.589 [XNIO-1 task-2] --1_Q_xZR3mw0oKq9XvTFg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Du52UuefSHybndmNkoaL_A +20:00:43.595 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.595 [XNIO-1 task-1] 9_TyulNeRx-yXqVX7MfufQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.598 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.598 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.599 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.599 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "HrsI49zyBmhHHandl2JJxd9Boc8U16typYHSUZQ9TwY", "HrsI49zyBmhHHandl2JJxd9Boc8U16typYHSUZQ9TwY", code_challenge) +20:00:43.599 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.599 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.600 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.600 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.600 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.604 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.606 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.607 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.607 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.607 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.607 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.608 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.608 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.608 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.620 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.621 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.622 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.622 [XNIO-1 task-1] TbijVhZpSXW_ncwFwai7_A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.622 [XNIO-1 task-2] iXMDD_QWTqWurdKtm7dEkQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KGuwPtSOTn2q9TEVuIhx-Q +20:00:43.649 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.649 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.649 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.650 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "2iL_3OezBuLohZaraQno_WQBMH4sP3oYw2botrA0nGo", "2iL_3OezBuLohZaraQno_WQBMH4sP3oYw2botrA0nGo", code_challenge) +20:00:43.650 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.650 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.650 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.651 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.651 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.651 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.669 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.669 [XNIO-1 task-1] Dr-wTRKTS_6hbisEgqF5Uw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.684 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.684 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.684 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.684 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "iBg_ZwzYVIFRRCHqKn0LSD3M36UeMQ2SSujDycQYBsk", "iBg_ZwzYVIFRRCHqKn0LSD3M36UeMQ2SSujDycQYBsk", code_challenge) +20:00:43.684 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.685 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.685 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.686 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.686 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.689 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.696 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.696 [XNIO-1 task-1] DegqVZMZQY2OJfdgHN3-Ew DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.706 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.706 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.706 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.706 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG com.networknt.schema.TypeValidator debug - validate( "vb8jcfC3srghorvzhrOm8-SP0tM23zA5t0rxqIEm6KI", "vb8jcfC3srghorvzhrOm8-SP0tM23zA5t0rxqIEm6KI", code_challenge) +20:00:43.707 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.707 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.707 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.707 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.707 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.708 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.724 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:346fe197-8dcb-4036-b598-5ef1400ecb5a +20:00:43.727 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.727 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.729 [XNIO-1 task-1] loNjjYOxRHS8d6o5bmCoqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9bEww0X-TwiIhe05R1symg +20:00:43.739 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.739 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.739 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.740 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG com.networknt.schema.TypeValidator debug - validate( "6bd349bd-43ae-41a2-8ac7-85495e8ee6ff", "6bd349bd-43ae-41a2-8ac7-85495e8ee6ff", client_id) +20:00:43.740 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.740 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.740 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.740 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.741 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.753 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.754 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.762 [XNIO-1 task-1] pCiWlKtETZOVwIn3G1bo1g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Bj6HzKRyQfmJ_UTVD5KKSg +20:00:43.766 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:346fe197-8dcb-4036-b598-5ef1400ecb5a +20:00:43.766 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.767 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.767 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG com.networknt.schema.TypeValidator debug - validate( "wtWdGOZiBXV7sydpW0SomWcxgkY8NWKPNvcvjkwVSVg", "wtWdGOZiBXV7sydpW0SomWcxgkY8NWKPNvcvjkwVSVg", code_challenge) +20:00:43.767 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.767 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.768 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.770 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.770 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.770 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.783 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:346fe197-8dcb-4036-b598-5ef1400ecb5a +20:00:43.788 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.788 [XNIO-1 task-1] XItENNVnQWKXRrPhzZclYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.800 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.800 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.801 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.801 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:43.801 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.802 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.802 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.801 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.803 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.803 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.803 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.803 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.803 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:43.803 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.803 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.803 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.804 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.804 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.814 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.814 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.819 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.820 [XNIO-1 task-2] OdsFsIjeQe2g06PtbZA4SA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.821 [XNIO-1 task-1] 2BcW2yjFRz-H6jwLr_oedQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DYIS-dfgS_m7VZgNUf8NhQ +20:00:43.828 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.828 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.828 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.828 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Ok4f6P5F2alrSnbxMg2k2Ka54JUlmu5dIARMGAec02k", "Ok4f6P5F2alrSnbxMg2k2Ka54JUlmu5dIARMGAec02k", code_challenge) +20:00:43.829 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:43.829 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.829 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.829 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.829 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.829 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.843 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.843 [XNIO-1 task-2] 0n9oFNPPQoakUH2_IyIaAQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.849 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.849 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.850 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.850 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG com.networknt.schema.TypeValidator debug - validate( "61223882-e1af-4ed2-a88e-6e758089eaa6", "61223882-e1af-4ed2-a88e-6e758089eaa6", client_id) +20:00:43.850 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.850 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.851 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.851 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.851 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.851 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.851 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.852 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.852 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:43.852 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.852 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.853 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.853 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.853 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.896 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.897 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.900 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.901 [XNIO-1 task-1] nRvh5xAkTbWDdcAAgIMSmQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.903 [XNIO-1 task-2] CtyI0GijRuqzlstktZuocQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6qX7s_NETgCvY6UFXvmKGw +20:00:43.908 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.908 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.909 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.909 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:43.909 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.909 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.910 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.910 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.910 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.922 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.922 [XNIO-1 task-1] 3-3AlbciT_C57_JdZN9fUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.940 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.941 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.941 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.941 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", client_id) +20:00:43.942 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.942 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.942 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.942 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.942 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.954 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:28d38630 +20:00:43.958 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:43.958 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:43.966 [XNIO-1 task-1] 5Q-B_MgWRPKSA6ud5UbS1w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vtCXvK6aQ6etnpFEZxzFxw +20:00:43.966 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.967 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.967 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:43.967 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG com.networknt.schema.TypeValidator debug - validate( "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", client_id) +20:00:43.967 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:43.968 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:43.968 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:43.968 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:43.970 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:43.972 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.972 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:43.973 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:43.973 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", client_id) +20:00:43.973 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:43.973 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:43.973 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:43.974 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:43.974 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:43.982 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.982 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:43.982 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:43.982 [XNIO-1 task-1] j43lKoUASXuEf1DincE2ug DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.006 [XNIO-1 task-2] xB_NgWUpTOWNmw3AhqrtGg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CnjywIMNQkKXKE7U0GjqvA +20:00:44.006 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:30dc578a-2a7a-4e14-8ccd-33412907d179 +20:00:44.019 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.019 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.020 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.020 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG com.networknt.schema.TypeValidator debug - validate( "bd88c211-ddad-47ae-adb7-6f81df27e2b6", "bd88c211-ddad-47ae-adb7-6f81df27e2b6", client_id) +20:00:44.020 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.020 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.021 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.021 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.021 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.021 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.034 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.034 [XNIO-1 task-2] HCwKHQajQGq59dr9sK9nHg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.057 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8325a6bb +20:00:44.079 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.080 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.080 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.081 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:44.081 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.081 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.081 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.082 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.082 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.090 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.090 [XNIO-1 task-2] jfNpxxgcStaDD_jfbDt8nQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.110 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.110 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.110 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.111 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG com.networknt.schema.TypeValidator debug - validate( "94c143ea-23a7-42c6-8c47-6212e3129c08", "94c143ea-23a7-42c6-8c47-6212e3129c08", client_id) +20:00:44.111 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.111 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.111 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.111 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.114 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.127 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.127 [XNIO-1 task-2] LW92bE1YQqWA94mriOoVsA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.184 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.184 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.184 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.184 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "DknK0piAzCVbzBkHwiOPQAgQ8jH3DYsEzL4aO8gvErs", "DknK0piAzCVbzBkHwiOPQAgQ8jH3DYsEzL4aO8gvErs", code_challenge) +20:00:44.185 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.185 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.185 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.185 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.185 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.186 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.196 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.200 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.200 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.201 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.201 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:44.201 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.201 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.201 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.202 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.202 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.206 [XNIO-1 task-2] 4h1duwAZRDeNDenEYho_PA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=hy92BK4jRjaVAqpdIn-dgA +20:00:44.211 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.211 [XNIO-1 task-1] r-q9xovhTsO73BHv9bC0EQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.218 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.218 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.219 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.219 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4MQHrWUWe1KHpZZR7YbaWF-Oiyqt89B0D0r_mNHwfEY", "4MQHrWUWe1KHpZZR7YbaWF-Oiyqt89B0D0r_mNHwfEY", code_challenge) +20:00:44.219 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.219 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.220 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.220 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.220 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.220 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.224 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.225 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.225 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.225 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.225 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.229 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.230 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.230 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.233 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.233 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.257 [XNIO-1 task-1] 2FuTCRaUSBagtlPvRPeF3Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mswd6FbHQdCuvfBk1ohzpQ +20:00:44.262 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.262 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.262 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.262 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG com.networknt.schema.TypeValidator debug - validate( "6684e353-ed24-4982-9248-6fc723d35546", "6684e353-ed24-4982-9248-6fc723d35546", client_id) +20:00:44.262 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.263 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.263 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.263 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.263 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.264 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.264 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.270 [XNIO-1 task-2] Keh10HlnRxyljkPwFKOyZg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0FAbPpD6Qb6oQb_YkgDenQ +20:00:44.277 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.277 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.277 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.282 [XNIO-1 task-1] WqAhiduERby3zu2EAnPCOg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0ETMWVYnTj6gvXIeSrGZ2w +20:00:44.285 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.285 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.285 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.286 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.286 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.286 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.286 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.286 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.291 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.292 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.292 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.292 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2ed_Mw8TsOBx_TD_i4UWAZY22NXzWp23L8EYxSdZnFA", "2ed_Mw8TsOBx_TD_i4UWAZY22NXzWp23L8EYxSdZnFA", code_challenge) +20:00:44.292 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.293 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.293 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.293 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.293 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.297 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.305 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.305 [XNIO-1 task-2] MGJ6TWz6Q9CHiW-jAp0T2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.307 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.307 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.311 [XNIO-1 task-1] rTOLWsa5QzeaY3IrDZnwIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lsCwqx-fTtWke0xEog06eA +20:00:44.318 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.318 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.319 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.319 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG com.networknt.schema.TypeValidator debug - validate( "d424af35-945f-4aaa-b6b7-7df3878914f5", "d424af35-945f-4aaa-b6b7-7df3878914f5", client_id) +20:00:44.319 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.319 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.319 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.320 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.320 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.328 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.328 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.328 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b1e382e3-5213-45e0-8034-42350199daa1 +20:00:44.331 [XNIO-1 task-1] y0AhayeiSjiha_FbKPwdag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tkETHu8xRx2h7OV6Y1lL_g +20:00:44.354 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b409e55e-af4d-4baa-b610-1686ad08ee16 +20:00:44.371 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.371 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.371 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.371 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.371 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.372 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.372 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.372 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.382 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.382 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.383 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.383 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG com.networknt.schema.TypeValidator debug - validate( "szCiC3cHJj3bZAYYkSfQcPLChIYtOffNiyIx9oVi3NM", "szCiC3cHJj3bZAYYkSfQcPLChIYtOffNiyIx9oVi3NM", code_challenge) +20:00:44.383 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.384 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.384 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.384 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.384 [XNIO-1 task-1] jAxeNptdSjimszb4blDDNg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.384 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.384 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.386 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.397 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.397 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.400 [XNIO-1 task-2] yfyO9B0bSmis5LY8mmWayQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Yf_6Km7oTSy8IW0r-1RnFA +20:00:44.425 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.425 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.425 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.426 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.427 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.428 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.428 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.428 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.434 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.434 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.438 [XNIO-1 task-2] lhu9kblzR-aiTQqTbyJRZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bXxV5ohIQ32zg3TB95Y0Mg +20:00:44.447 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.447 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.448 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.448 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.448 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.448 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.449 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.449 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.455 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.455 [XNIO-1 task-2] DrFQxHWOQwmRgqOjiFDOSQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.460 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.460 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.460 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.460 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "WTfoAuo99IKb7oW2nhgaNpnZM51UtWUFx64yfUmTnQA", "WTfoAuo99IKb7oW2nhgaNpnZM51UtWUFx64yfUmTnQA", code_challenge) +20:00:44.461 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.461 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.461 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.461 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.461 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.461 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.470 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.470 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.470 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.471 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:44.471 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.471 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.471 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.471 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.471 [XNIO-1 task-1] DdBthXLARKeIJm1N-UEaRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.471 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.472 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.480 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.481 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.487 [XNIO-1 task-2] ElLG-otXRBmNiZ4M3rfeyQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1_91WJU3S8S2XAwN2dLUSg +20:00:44.490 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.491 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.491 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.494 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.495 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.496 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.496 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.496 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.508 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.508 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.510 [XNIO-1 task-2] GI4UzQw4R26XVj9kiT_zVQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=doLeer8uTVGcVd80ayMXzg +20:00:44.518 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.518 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.519 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.519 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.519 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.520 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.520 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.520 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.522 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.522 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.522 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.522 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "aqVXjjm9uO3cZVuC5_SZPXkGCqRBZlw8twza1V7YAkQ", "aqVXjjm9uO3cZVuC5_SZPXkGCqRBZlw8twza1V7YAkQ", code_challenge) +20:00:44.523 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.523 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.523 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.523 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.523 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.523 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.534 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.534 [XNIO-1 task-1] A4WJXfg2QgGrHcI5htN5Lg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.534 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.534 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.536 [XNIO-1 task-2] D0d7T8_TR3OkMQjR8Mv_Xw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7WHwCAwuR0yx33auP-Mohw +20:00:44.545 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.545 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.545 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.545 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.546 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.546 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.547 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.550 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.558 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.558 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.569 [XNIO-1 task-2] KYVz24wZT16RlT3hUXgo3Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BiqWhTcmTZKMvpR85fMbjA +20:00:44.613 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e49406f2-906c-4be5-bf84-44aa0fb6db1e +20:00:44.625 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.625 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.625 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.626 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:44.626 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.628 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.628 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.628 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.628 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.633 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.633 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.633 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.633 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", client_id) +20:00:44.633 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.634 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.634 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.634 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.634 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.641 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.642 [XNIO-1 task-1] h1iPUHIGS3qTKpti_CH9Rw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.642 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.642 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.646 [XNIO-1 task-2] S5VAChySR3mTSGqXYE7wyw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SmXcaJS3TRe9XhMu9lw5XQ +20:00:44.652 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.652 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.652 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.652 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.653 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.653 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.653 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.653 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.653 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.653 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.654 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Cnn7d1uVmKxEe_l9pv_xaGdWCtQzyZkC6YsJ1a2pVo4", "Cnn7d1uVmKxEe_l9pv_xaGdWCtQzyZkC6YsJ1a2pVo4", code_challenge) +20:00:44.654 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.654 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.654 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.655 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.655 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.655 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.656 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.665 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.665 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.667 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.667 [XNIO-1 task-1] cgYuCycaS6WxgbcGVK77Uw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.668 [XNIO-1 task-2] h6qO_0r3Q0eyc3Cm1f5m0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cQd5MShtQTuxymuvmmKkpA +20:00:44.673 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.673 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.673 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.673 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:44.674 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.674 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.674 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.674 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.674 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.676 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.676 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.676 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.676 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac43119-c416-4761-9786-fb92b5ca0d49", "7ac43119-c416-4761-9786-fb92b5ca0d49", client_id) +20:00:44.676 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.677 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.677 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.677 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.678 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.682 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.683 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.684 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.684 [XNIO-1 task-2] DjA0Xsx1S9mYlhfCKtIiYw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.684 [XNIO-1 task-1] k97C5byJRbCIVVnW7GPZuQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=D51GyRZ2SDSZwlScAsxUmg +20:00:44.694 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.695 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.695 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.695 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:44.695 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.695 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.696 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.696 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.696 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.696 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.696 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.696 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.697 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:44.697 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.697 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.698 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.699 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.700 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.705 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.706 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.706 [XNIO-1 task-2] 0e-nxJKvQxCIZBTARIKTUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.706 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.711 [XNIO-1 task-1] oOcagHWLTQKX7SMhv_vPLg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4sK7p1pWQL6cUgJ1GCqpNQ +20:00:44.748 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.748 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.748 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.749 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4b472d-eead-4f78-82c3-079d523bdcd0", "0f4b472d-eead-4f78-82c3-079d523bdcd0", client_id) +20:00:44.749 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.749 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.749 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.749 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.749 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.758 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d5800b84 +20:00:44.783 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.784 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.786 [XNIO-1 task-2] rjwu57XMRbydghaZxx1LIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8ysM9rnjSamHaO1byr3mBg +20:00:44.803 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.803 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.804 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.804 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG com.networknt.schema.TypeValidator debug - validate( "MXaF8cwA-6JtJaOegvTvpx7Ckk5UdZJ17uf6z361RDs", "MXaF8cwA-6JtJaOegvTvpx7Ckk5UdZJ17uf6z361RDs", code_challenge) +20:00:44.804 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.805 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.805 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.805 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.805 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.805 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.820 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.820 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.822 [XNIO-1 task-2] rQJcUopAS9makq8xg0_0cg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=P7OXaoncRnCTkpsPODEAxA +20:00:44.826 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.826 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.826 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.827 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.827 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.828 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.828 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.834 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.835 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.835 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.835 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "6AkOlacMQCYbEhX6foBbDzOlFpQYNgq_FQ9syC45dPQ", "6AkOlacMQCYbEhX6foBbDzOlFpQYNgq_FQ9syC45dPQ", code_challenge) +20:00:44.835 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:44.835 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.836 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.836 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.836 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.837 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.840 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.852 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.852 [XNIO-1 task-2] un1hptloTsuFTpYCGlVAhw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.857 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.857 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.862 [XNIO-1 task-1] W9sFPEsXT5GZm51eJofI0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6Pjl7HoMQ2SJyALWa08UDw +20:00:44.864 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.864 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.864 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.865 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.865 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.865 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.866 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.866 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.884 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.887 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.895 [XNIO-1 task-1] PcP5ZZRMTzO1nqUFPW0cjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7nb-ZHaOQnGfuHCDibw1Lg +20:00:44.900 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.900 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.901 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.901 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.901 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.901 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.901 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.902 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:44.904 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:084e5c87-0600-472d-b308-61261361c67e +20:00:44.910 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.911 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.911 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:44.911 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG com.networknt.schema.TypeValidator debug - validate( "95e18c2f-ae10-4358-92c3-d0f919dddd75", "95e18c2f-ae10-4358-92c3-d0f919dddd75", client_id) +20:00:44.911 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:44.913 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:44.913 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:44.913 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:44.917 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.918 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.918 [XNIO-1 task-1] bM2R88FvTzusfiLcD3qZvw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.924 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:44.925 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:44.927 [XNIO-1 task-2] RTlUJyiBTn2uyiBPofaJEA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=aR-macuyT8WfKKn3ccUzHw +20:00:44.967 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:28d38630 +20:00:44.973 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.973 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.973 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.973 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG com.networknt.schema.TypeValidator debug - validate( "e94a8965-50bc-4511-9bbf-2bd8e002550d", "e94a8965-50bc-4511-9bbf-2bd8e002550d", client_id) +20:00:44.974 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.974 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.975 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.975 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.975 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:44.981 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5c2d7c0b +20:00:44.983 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f572c379-8058-445b-b68d-9beba7034b86 +20:00:44.983 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:44.983 [XNIO-1 task-1] o91fvi7FQu-MUDZIhOcSTg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:44.984 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5c2d7c0b +20:00:44.991 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.993 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:44.993 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:44.994 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "669ea312-2e09-48c0-ac1e-539d01e35f0f", "669ea312-2e09-48c0-ac1e-539d01e35f0f", client_id) +20:00:44.994 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:44.994 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:44.995 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:44.995 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:44.995 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.018 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.018 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.024 [XNIO-1 task-1] ZrCmNcE-TTCbQumEVmlNGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ck-_17fTSXaHJcc7ETk6Kw +20:00:45.025 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dd3a2a92-2400-4d0b-b519-fa74c0f6269b +20:00:45.058 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.059 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.059 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.059 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:45.060 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.060 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.060 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.060 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.060 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.071 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.072 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.072 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.072 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:45.072 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.073 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.073 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.073 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.073 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.085 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.085 [XNIO-1 task-2] LKX70W-gQf2p85_Cw8L0aw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.086 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.087 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.088 [XNIO-1 task-1] XQ9-LXG9QxOIIBiR5RvHsg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pyr6MlOxQ-SO6l3tZE5Umg +20:00:45.095 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.095 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.095 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.096 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.096 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.097 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.097 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.098 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.108 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.108 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.131 [XNIO-1 task-1] lnwZZ69rSjqsRuH64miCbg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=djR5q8ieQZmhA869r38SRA +20:00:45.138 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.138 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.139 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.139 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.139 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.139 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.140 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.140 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.149 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.151 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.152 [XNIO-1 task-1] 4Y0Ai9thRi6LWrlfLT3rHw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=j2mzEBckSPqO6lWTLIVmlA +20:00:45.157 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.157 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.158 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.158 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:45.158 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.158 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.159 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.159 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.159 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.166 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.166 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.168 [XNIO-1 task-1] lNXMi_BXToGmMa26QTT1IA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pUcmQ0ThQDK10ndx-b2QUw +20:00:45.174 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.174 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.174 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.174 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG com.networknt.schema.TypeValidator debug - validate( "ca1e24be-7dfa-4486-b646-252e9f4c7e4f", "ca1e24be-7dfa-4486-b646-252e9f4c7e4f", client_id) +20:00:45.175 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.175 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.175 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.175 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.176 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.177 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:053faaa0-eb76-4a05-bdef-b5029de61b53 +20:00:45.183 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5c2d7c0b +20:00:45.185 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.185 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.189 [XNIO-1 task-1] t8dfkC9WRwS5S5kmASGIbA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ieoA6tCrRhm5B10p1Dt7UA +20:00:45.190 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.191 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.191 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.191 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.191 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.191 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.192 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.192 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.192 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:28d38630 +20:00:45.199 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.199 [XNIO-1 task-1] 983XdJieTvisMnO_aRy9zg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.221 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9d98bb82 +20:00:45.224 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9d98bb82 +20:00:45.235 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:005432a6 +20:00:45.254 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.254 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.254 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.273 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:005432a6 +20:00:45.273 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.273 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.273 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.273 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.273 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.273 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.273 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:45.273 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.274 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.274 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.274 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.274 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.274 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.274 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.277 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.285 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:053faaa0-eb76-4a05-bdef-b5029de61b53 +20:00:45.289 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.290 [XNIO-1 task-2] mNlIrytQS_qLKtdYOGb8UA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.299 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b1069b5 +20:00:45.303 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.303 [XNIO-1 task-1] 9plzwnxjTayTZ9CCP0m9RQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.303 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b1069b5 +20:00:45.341 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:053faaa0-eb76-4a05-bdef-b5029de61b53 +20:00:45.351 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:978a95ef-85a4-4a21-98fa-f8a35d7d7876 +20:00:45.361 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.361 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.361 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.361 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:45.362 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.362 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.362 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.362 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.362 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.371 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:448a8082 +20:00:45.372 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.372 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.373 [XNIO-1 task-1] e0dWrrVjQqiBHwQ9YBtiCA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZeXCOnX8TcCwPWKIkAnzqg +20:00:45.379 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.379 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.380 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.380 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.380 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.381 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.381 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.381 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.391 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.391 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.391 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.393 [XNIO-1 task-1] kpQWODJ9Q2etPBC2yzQnnA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kjD0_VnxRCOTh8IGDgvcRQ +20:00:45.400 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.400 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.400 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.400 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:45.401 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.401 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.401 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.401 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.401 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.413 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.413 [XNIO-1 task-1] rhX9fSBZToW8HqyftcSucQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.425 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.426 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.426 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.426 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:45.426 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.426 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.427 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.427 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.427 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.433 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.433 [XNIO-1 task-1] x6h4SZyPSX-c5Q6VVpuwBQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.439 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.439 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.440 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.440 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:45.441 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.441 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.441 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.441 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.441 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.447 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.447 [XNIO-1 task-1] QPmh1toHR1uv0PvuSH3KRg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.503 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6b1069b5 +20:00:45.508 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9d98bb82 +20:00:45.525 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.525 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.525 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.525 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "7b41b179-365b-454a-bc1e-9d313e216dc6", "7b41b179-365b-454a-bc1e-9d313e216dc6", client_id) +20:00:45.526 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.526 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.526 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.526 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.526 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.530 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.530 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.530 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.530 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG com.networknt.schema.TypeValidator debug - validate( "d9481923-f7b4-41ac-9c03-44106f06e8a1", "d9481923-f7b4-41ac-9c03-44106f06e8a1", client_id) +20:00:45.531 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.531 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.531 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.531 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.532 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.533 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:daae9e21 +20:00:45.534 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:daae9e21 +20:00:45.534 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.534 [XNIO-1 task-1] iB0Tt4r9SUizGLEVNaM_bw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.537 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.538 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.540 [XNIO-1 task-2] sxyH-1J0SxKw4EbC-pbc9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SKcTPao0RkCpXwGu8dXthw +20:00:45.541 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.542 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.542 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.542 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.546 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.546 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.546 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.546 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.546 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.546 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.546 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.546 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.546 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:45.546 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.547 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.547 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.547 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.549 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.552 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.552 [XNIO-1 task-2] Z3QdIqWiTyS4aD4EPuD82g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.555 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.555 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.556 [XNIO-1 task-1] 2pfAFccST8KB17tkkS2NPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=mqU324M5RcKfxEINmHDaNw +20:00:45.561 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.565 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.565 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.565 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.565 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.565 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.566 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", client_id) +20:00:45.566 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:45.566 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.566 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.566 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.566 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.566 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.566 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.567 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.567 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.567 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.567 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.576 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.576 [XNIO-1 task-2] jVfbgblqTPu2Iv3nItCI3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.579 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.582 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.610 [XNIO-1 task-1] exBH7w63RwmEu7l_Ui1YLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zmQDckF5RGWGte3DYhnqRA +20:00:45.621 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6b1069b5 +20:00:45.628 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.628 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.629 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.629 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.629 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.629 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.630 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.630 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.636 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.636 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.637 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.637 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG com.networknt.schema.TypeValidator debug - validate( "3dqcfWsJtKgoJE9M_Ax07C9Vbz0LOPz3UdA9_WlEltE", "3dqcfWsJtKgoJE9M_Ax07C9Vbz0LOPz3UdA9_WlEltE", code_challenge) +20:00:45.637 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:45.637 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.637 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.638 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.638 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.641 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.642 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.642 [XNIO-1 task-1] 1NrT9F8kTpCu2LAnGLuP1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.649 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.649 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.657 [XNIO-1 task-2] X5zKpWneQE6wdHynvydPQw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rxiyssvQSW2T8b4YXBHNug +20:00:45.662 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.662 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.663 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.663 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG com.networknt.schema.TypeValidator debug - validate( "d9481923-f7b4-41ac-9c03-44106f06e8a1", "d9481923-f7b4-41ac-9c03-44106f06e8a1", client_id) +20:00:45.663 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.663 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.664 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.664 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.664 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.670 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.670 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.670 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.671 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG com.networknt.schema.TypeValidator debug - validate( "6bd349bd-43ae-41a2-8ac7-85495e8ee6ff", "6bd349bd-43ae-41a2-8ac7-85495e8ee6ff", client_id) +20:00:45.671 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.671 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.671 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.671 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.671 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.674 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.674 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.676 [XNIO-1 task-2] FgvDhTGiQEagQLhHheFp6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=AvFu7vhgQiOiiNNu5hOASQ +20:00:45.680 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.680 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.681 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.682 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.682 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.682 [XNIO-1 task-1] YW7Nds7RTAG1GPh6Ee2VWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4T-HBBiqRJGYFPZC0VMrdg +20:00:45.683 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:45.683 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.683 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.684 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.684 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.684 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.709 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.709 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.709 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.710 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.710 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.710 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.710 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.710 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.803 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.803 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.804 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.803 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.808 [XNIO-1 task-1] _ilaZ_7MRU2xdoDiUDlG0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k_rXBIqaSxS8Lq3TZ29TKg +20:00:45.811 [XNIO-1 task-2] YFdHP2fRQhK9-cu05EmqpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WAMbnmkZT1ikmcTAizBGUA +20:00:45.812 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.812 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.812 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:45.812 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.813 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.813 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.813 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.813 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.820 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.820 [XNIO-1 task-1] WxAItmf9R4OzdQt87caxjw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.843 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.843 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.843 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.844 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8D-XQqmmAAjVUw0jxzEhuKcFRiqMlZMmjTvbVV5-Xsc", "8D-XQqmmAAjVUw0jxzEhuKcFRiqMlZMmjTvbVV5-Xsc", code_challenge) +20:00:45.844 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:45.844 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.844 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.844 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.844 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.845 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.855 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.856 [XNIO-1 task-1] C9JxgE-kT9KeHaFxcTXCJQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.862 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.862 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.862 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.863 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "BHC-NZfcdNKMrXJP2IKIUdF518V7syxspeU-GpL-63Q", "BHC-NZfcdNKMrXJP2IKIUdF518V7syxspeU-GpL-63Q", code_challenge) +20:00:45.863 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:45.863 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.863 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.863 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.864 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.864 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:45.871 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.871 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.877 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.877 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.878 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.878 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.878 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.879 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.879 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.879 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.879 [XNIO-1 task-1] Jbz5FUKOQyW7wu2vIPQMTQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qr0kseeQS9ubTWB3nHZ6_Q +20:00:45.881 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6ec34f38-8a83-4467-99fb-ab8b2caef1c5 +20:00:45.893 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:45.894 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:45.902 [XNIO-1 task-2] 41VRAXX5R6-626SwBkrn_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BU3bwdkwRie7MsWbwEqUTQ +20:00:45.943 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.943 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.943 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:45.943 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:45.944 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:45.944 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:45.944 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:45.944 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:45.945 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c835b77-cd1f-44e3-b6ed-6eddaafcdddd +20:00:45.947 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c835b77-cd1f-44e3-b6ed-6eddaafcdddd +20:00:45.956 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:45.956 [XNIO-1 task-2] DU24a5_qTd6JvbpZI2Y6Lw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:45.978 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5c835b77-cd1f-44e3-b6ed-6eddaafcdddd +20:00:45.983 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:45.991 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.991 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:45.991 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:45.992 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ca1e24be-7dfa-4486-b646-252e9f4c7e4f", "ca1e24be-7dfa-4486-b646-252e9f4c7e4f", client_id) +20:00:45.992 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:45.992 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:45.992 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:45.992 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:45.993 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.002 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.002 [XNIO-1 task-2] WGpx8ZvRS2mTYVGJe6wp8Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.007 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.007 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.007 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.007 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG com.networknt.schema.TypeValidator debug - validate( "yQIH16NVYahnLcrMSp09QMNRPJRND8M-wM9qH030jb0", "yQIH16NVYahnLcrMSp09QMNRPJRND8M-wM9qH030jb0", code_challenge) +20:00:46.007 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.008 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.008 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.008 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.008 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.008 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.019 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.019 [XNIO-1 task-2] G7DmaI80Qq2lWquF-K-S7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.028 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.028 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.028 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.028 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG com.networknt.schema.TypeValidator debug - validate( "cRy0vBgBSPVXG2DaOumUPXKEP5eYUgT_mj9Oa9qWxe4", "cRy0vBgBSPVXG2DaOumUPXKEP5eYUgT_mj9Oa9qWxe4", code_challenge) +20:00:46.029 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.029 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.029 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.029 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.029 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.029 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.040 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.040 [XNIO-1 task-2] A52B2TPbSZq5PTV68-8Rgw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.056 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:daae9e21 +20:00:46.056 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.056 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.056 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.057 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3BonBZWs6fuGiBsqTQmmatb-VUyV8Wt386QrQoO2sqE", "3BonBZWs6fuGiBsqTQmmatb-VUyV8Wt386QrQoO2sqE", code_challenge) +20:00:46.057 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.057 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.057 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.057 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.058 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.062 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.069 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.069 [XNIO-1 task-2] 2TpP96gjQdixKMQpCOyMhQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.076 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:daae9e21 +20:00:46.083 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.101 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:448a8082 +20:00:46.106 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.106 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.107 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.107 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG com.networknt.schema.TypeValidator debug - validate( "uliVlhPkyvWs5uBkaupFOW6Wl_zjP14j5ycrbEwdQPQ", "uliVlhPkyvWs5uBkaupFOW6Wl_zjP14j5ycrbEwdQPQ", code_challenge) +20:00:46.107 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.107 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.107 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.108 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.108 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.108 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.116 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.116 [XNIO-1 task-2] -NuDzEATTu-KaPMt7mJZgA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.145 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.145 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.145 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.146 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eb9acf60-61d2-466e-abbb-7007ece1637c", "eb9acf60-61d2-466e-abbb-7007ece1637c", client_id) +20:00:46.146 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.146 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.146 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.146 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.147 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.147 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.148 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.148 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.148 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG com.networknt.schema.TypeValidator debug - validate( "416ff4f9-7efb-4be8-abef-2a3d834509a3", "416ff4f9-7efb-4be8-abef-2a3d834509a3", client_id) +20:00:46.148 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.148 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.148 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.149 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.149 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.153 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.154 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.155 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.155 [XNIO-1 task-1] POXGhliRTj-bDBChOvwS5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.156 [XNIO-1 task-2] a0OyWlw8Szu15k__wGbhEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IQwb6Ab8SZ6hXrxXHcom_A +20:00:46.188 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c8bb0aaa-2173-456b-99d6-dde92ea01a92 +20:00:46.190 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.191 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.191 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.192 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG com.networknt.schema.TypeValidator debug - validate( "94c143ea-23a7-42c6-8c47-6212e3129c08", "94c143ea-23a7-42c6-8c47-6212e3129c08", client_id) +20:00:46.192 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.192 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.192 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.192 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.195 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.204 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.204 [XNIO-1 task-1] tl6Zz1w2SXSalAXI1LUBIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.218 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c8bb0aaa-2173-456b-99d6-dde92ea01a92 +20:00:46.242 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.242 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.242 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.242 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.242 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.243 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG com.networknt.schema.TypeValidator debug - validate( "feab02ed-d69c-4199-a894-69c8cd5570e6", "feab02ed-d69c-4199-a894-69c8cd5570e6", client_id) +20:00:46.243 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.243 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.243 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG com.networknt.schema.TypeValidator debug - validate( "416ff4f9-7efb-4be8-abef-2a3d834509a3", "416ff4f9-7efb-4be8-abef-2a3d834509a3", client_id) +20:00:46.243 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.243 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.243 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.243 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.243 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.244 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.244 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.244 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.244 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.250 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.250 [XNIO-1 task-1] ztGtcGnvTmaeBGAzUQCF5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.252 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.252 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.254 [XNIO-1 task-2] QCzkrkT8TwSwMbuxQJUxRw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=R9GiIIMySs2iiW9hhqUO5A +20:00:46.268 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:232e8e91 +20:00:46.281 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cf1d41cc-f19f-43f6-a618-6a3c2b890ee5 +20:00:46.283 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.284 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.284 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.285 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", client_id) +20:00:46.285 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.285 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.285 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.285 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.285 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.290 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.290 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.291 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.291 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "416ff4f9-7efb-4be8-abef-2a3d834509a3", "416ff4f9-7efb-4be8-abef-2a3d834509a3", client_id) +20:00:46.291 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.291 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.291 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.291 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.292 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.300 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.300 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.300 [XNIO-1 task-1] 8bR2Apl_TW-3QzArGJMc_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.300 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.303 [XNIO-1 task-2] 2cf2Aua1TC--GhHlDFIzYQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xqjF7CH2RLGgaYvOiUrQaQ +20:00:46.307 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.307 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.308 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.308 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0a12ee02-d547-4c82-9502-2b85c5b9cb43", "0a12ee02-d547-4c82-9502-2b85c5b9cb43", client_id) +20:00:46.308 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.308 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.308 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.309 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.310 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.316 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.316 [XNIO-1 task-1] U2lf1Hj2QhWZveImtqkfFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.325 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:35d1e514-b0a5-447f-a32a-c896ed2b1a9c +20:00:46.329 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.330 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.330 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.330 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG com.networknt.schema.TypeValidator debug - validate( "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", "a5b352b7-b89e-4b0d-911f-14cb4dc8e724", client_id) +20:00:46.330 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.331 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.331 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.331 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.331 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.336 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.336 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.336 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.336 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a12ee02-d547-4c82-9502-2b85c5b9cb43", "0a12ee02-d547-4c82-9502-2b85c5b9cb43", client_id) +20:00:46.336 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.336 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.337 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.337 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.337 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.341 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.342 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.344 [XNIO-1 task-1] 26PDd2-JRMqjHeG00kkCDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nxxsP7q2TPOw63xyjCwmaQ +20:00:46.348 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.348 [XNIO-1 task-2] QXtUM5zzQ52c_5NbxkJGXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.359 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.360 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.360 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.360 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG com.networknt.schema.TypeValidator debug - validate( "LIUKHZbFJcXnR4qbC8MwpXr8OdyS7M5t6GZEShepvVo", "LIUKHZbFJcXnR4qbC8MwpXr8OdyS7M5t6GZEShepvVo", code_challenge) +20:00:46.360 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.360 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.361 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.361 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.361 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.361 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.367 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.367 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.367 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.367 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.368 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.368 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.368 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.368 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.369 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.369 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.372 [XNIO-1 task-2] hov3xg0IQ6qCCLO_KNxfNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hx1JHJ96SNidCnETT0_ilQ +20:00:46.375 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7ef749ec-d8bf-43be-a91b-47a1b2c499a5 +20:00:46.376 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.376 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.376 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.377 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "O61LtpX_RgJfUIB_7cB8TyUpwKkO93_bjsPjNFG_JjU", "O61LtpX_RgJfUIB_7cB8TyUpwKkO93_bjsPjNFG_JjU", code_challenge) +20:00:46.377 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.377 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.377 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.378 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.378 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.378 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.381 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.381 [XNIO-1 task-1] 7jfKYY3KSWmymquLVXuP2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.385 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.386 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.387 [XNIO-1 task-2] 1kxJUQXTRLGAqfGUd7m_HQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=jeEXDV8JTga_H_sq35unUA +20:00:46.391 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.391 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.392 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.392 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.392 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.392 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.392 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.394 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.401 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.401 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.401 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.401 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG com.networknt.schema.TypeValidator debug - validate( "hAvA9T3sf4T56sKCs8X6qu5D285vd2ZZUTPk1d786ow", "hAvA9T3sf4T56sKCs8X6qu5D285vd2ZZUTPk1d786ow", code_challenge) +20:00:46.402 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.402 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.402 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.402 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.402 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.402 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.403 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.403 [XNIO-1 task-2] C7FvcofjSj6r_P0-t4DDbw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.413 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.413 [XNIO-1 task-1] O-MLtXVSQR6pVqfEB-Aefw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.413 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.413 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.413 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.413 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG com.networknt.schema.TypeValidator debug - validate( "7ef749ec-d8bf-43be-a91b-47a1b2c499a5", "7ef749ec-d8bf-43be-a91b-47a1b2c499a5", client_id) +20:00:46.414 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.414 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.414 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.414 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.416 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.428 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.428 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.440 [XNIO-1 task-2] OKCFJK_gSPi2fszA6-GLag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=F9ADjsHjSi62Z3J15BuVLg +20:00:46.453 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:58dbb25c-815a-406e-9bbc-5fb9a6e3e854 +20:00:46.491 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.492 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.492 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.493 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG com.networknt.schema.TypeValidator debug - validate( "c81d5fe9-46e4-4620-b76c-fc58a01fd7a1", "c81d5fe9-46e4-4620-b76c-fc58a01fd7a1", client_id) +20:00:46.494 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.494 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.494 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.494 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.495 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.496 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5d123a29-6552-4b47-aba9-17d0e0ad152d +20:00:46.504 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.505 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.508 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.509 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Nvh2zZn3LQamBVAGnIiRs7f8vJIFC2V0eu2PurpadEw", "Nvh2zZn3LQamBVAGnIiRs7f8vJIFC2V0eu2PurpadEw", code_challenge) +20:00:46.509 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.509 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.509 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.510 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.510 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.510 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.521 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.521 [XNIO-1 task-2] oqnV6Ir4T3CxiUOIBp00IA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.523 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.523 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.527 [XNIO-1 task-1] Ypr9rvueTRSxydS-i8h_sQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=U324NR-LQyuJvm_QtCzKWg +20:00:46.533 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.534 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.534 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.535 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.535 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.536 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.536 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.536 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.551 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.551 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.554 [XNIO-1 task-1] ALAULnvUSB-yDOP5j0XUCw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2rGRgZ8aRhiq5-u9tiX92Q +20:00:46.559 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.559 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.560 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.561 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.561 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.561 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.561 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.561 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.574 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.575 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.577 [XNIO-1 task-1] hCx2I9sHRd6ZPwys8BoDcQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xSsTMSCeSQWYZ-1yRoxiEg +20:00:46.589 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.589 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.589 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.590 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.590 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.590 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.590 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.590 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.593 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:45b45e7e-7982-49be-a828-9247e1b4d802 +20:00:46.594 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:45b45e7e-7982-49be-a828-9247e1b4d802 +20:00:46.606 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.606 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.608 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.608 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.608 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.609 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG com.networknt.schema.TypeValidator debug - validate( "d9481923-f7b4-41ac-9c03-44106f06e8a1", "d9481923-f7b4-41ac-9c03-44106f06e8a1", client_id) +20:00:46.609 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.613 [XNIO-1 task-1] JlNsLXGpQSarGDut-EyuBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=s0hG5uysTIyDGjwnMqZCDA +20:00:46.613 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.613 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.614 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.614 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.619 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.619 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.621 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.622 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.622 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.622 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.622 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.622 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.626 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.626 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.633 [XNIO-1 task-2] 0NCM1dg4R7mI_ZzSeWtjfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=po2HmMMqTBe1r0I9T7r7dw +20:00:46.638 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.638 [XNIO-1 task-1] 4H_GESETT1qcltdNJloENg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.639 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.640 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.640 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.641 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "RR63z3iA6IpMhp-SG6833FpPZP5xhj0_26re7y4OqOA", "RR63z3iA6IpMhp-SG6833FpPZP5xhj0_26re7y4OqOA", code_challenge) +20:00:46.641 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.641 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.641 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.641 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.641 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.642 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.649 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.650 [XNIO-1 task-2] weRm5jhBTNS87i85we_jiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.656 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f572c379-8058-445b-b68d-9beba7034b86 +20:00:46.660 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.660 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.661 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.661 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG com.networknt.schema.TypeValidator debug - validate( "627c71d7-5480-4712-9595-672acc38a639", "627c71d7-5480-4712-9595-672acc38a639", client_id) +20:00:46.661 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.661 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.662 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.662 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.662 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.672 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.672 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.674 [XNIO-1 task-2] Ez04h4D3R_2fcFkQbIOTDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vZ8k7wRkQwS6gP2HIH6Syg +20:00:46.679 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.679 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.679 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.679 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.679 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.679 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.679 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.679 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.680 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.680 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.680 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.680 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.680 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.680 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.680 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.680 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.680 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.680 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.688 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.688 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.688 [XNIO-1 task-1] p3kD8SSXQfWtvWj4yN05Mw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.688 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.693 [XNIO-1 task-2] aSyC0kI2Q0maZv2X55x1uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cW-BizclRpGghU20sioQyg +20:00:46.723 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:35d1e514-b0a5-447f-a32a-c896ed2b1a9c +20:00:46.733 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.733 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.734 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.734 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.734 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.734 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.734 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.735 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.735 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.735 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.735 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.743 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.743 [XNIO-1 task-1] Ac6FaBXjSKGCMM3dt6xmeg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.745 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.745 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.747 [XNIO-1 task-2] _1U20zBDTXiADDzIOxWOig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=yFjOZ8P4REKPvdEBF0roIA +20:00:46.755 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.755 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.755 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.755 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG com.networknt.schema.TypeValidator debug - validate( "L-P_8E4HrP1LwWxGN-Y0CenP1624aZod_-HQwLGFZSs", "L-P_8E4HrP1LwWxGN-Y0CenP1624aZod_-HQwLGFZSs", code_challenge) +20:00:46.756 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.756 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.756 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.755 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.756 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.756 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.757 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.758 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.759 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.759 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.759 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.756 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.761 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.765 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.770 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.770 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.772 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.772 [XNIO-1 task-1] DH5HuxEETXSKIwClI4CpiA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.776 [XNIO-1 task-2] Ko-p465LQ9mHVHmeQwKuLw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iOb7AMwrThuxs_yqKHgh-w +20:00:46.785 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.785 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.785 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.785 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.785 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.786 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.786 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.787 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.794 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.795 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.796 [XNIO-1 task-2] gzNDVNL_SPiwAUW4cuv23A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0h-kkcB9R52eYLJXwwtxmg +20:00:46.831 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.839 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.839 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.840 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.840 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.840 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.840 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.840 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.840 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.847 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.847 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.848 [XNIO-1 task-2] 3AaA2RLzQTaOlUO1MZHVJA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2BfugeyFR8iHdAJp4HMfIA +20:00:46.853 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.853 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.853 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.853 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.854 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.854 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.854 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.854 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.857 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9497f08c +20:00:46.860 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.860 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9497f08c +20:00:46.860 [XNIO-1 task-2] PJop1c_ISMia9pDut-pT8g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.868 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.869 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.869 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.869 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG com.networknt.schema.TypeValidator debug - validate( "0f4b472d-eead-4f78-82c3-079d523bdcd0", "0f4b472d-eead-4f78-82c3-079d523bdcd0", client_id) +20:00:46.869 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.870 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.870 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.870 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.870 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.877 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.877 [XNIO-1 task-2] hCnLptflSe-0LfuW4MKwZw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.912 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.914 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.914 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.914 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fba845dd-20a8-41e8-a86d-3314db64de1e", "fba845dd-20a8-41e8-a86d-3314db64de1e", client_id) +20:00:46.914 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.914 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.915 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.915 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.915 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.926 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.926 [XNIO-1 task-2] GpPz-TPSQumk9zuP5KZ5aQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.936 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.936 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.936 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.936 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:46.937 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.937 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.937 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.937 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.937 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.949 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.949 [XNIO-1 task-2] NSfDeEBYR6iKwjP3HeL0AA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.955 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.955 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.955 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.955 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:46.956 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.956 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.956 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.956 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.956 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.960 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.960 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.960 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:46.961 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac43119-c416-4761-9786-fb92b5ca0d49", "7ac43119-c416-4761-9786-fb92b5ca0d49", client_id) +20:00:46.961 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:46.961 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:46.961 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:46.961 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:46.961 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:46.965 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:46.965 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:46.968 [XNIO-1 task-2] S48DzL4QTQ-AhUXT5uWyBw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8-jL714IQeyMXaoMhGzhjg +20:00:46.970 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.970 [XNIO-1 task-1] INYzLSenSC-a7r-2WU3XSQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:46.976 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.976 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:46.976 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:46.976 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "h-6nYz2WAIke354z5wVoXU1-R47wBQp6sHI0Cgpu_-g", "h-6nYz2WAIke354z5wVoXU1-R47wBQp6sHI0Cgpu_-g", code_challenge) +20:00:46.976 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:46.977 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:46.977 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:46.977 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:46.977 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:46.977 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:46.985 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:46.985 [XNIO-1 task-1] -xChc_FwTTapXZ9haPMA4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.001 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.001 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.001 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.001 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:47.002 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.002 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.002 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.002 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.002 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.009 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:47.010 [XNIO-1 task-1] aq7vF3kcQdu7RQrIhc9tgg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.016 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.016 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.017 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.017 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c274cc1-5dd1-42bb-b47f-3540d2903a74", "0c274cc1-5dd1-42bb-b47f-3540d2903a74", client_id) +20:00:47.017 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.017 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.017 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.018 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.018 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.019 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9497f08c +20:00:47.024 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:47.024 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.028 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.028 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.028 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.028 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac43119-c416-4761-9786-fb92b5ca0d49", "7ac43119-c416-4761-9786-fb92b5ca0d49", client_id) +20:00:47.028 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:47.029 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.029 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.029 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.029 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.029 [XNIO-1 task-1] CsteRLWTTTuNd84h_qoFgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Zt2UlJbhS9KuNEqfCENBcA +20:00:47.035 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.035 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.035 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.036 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:47.036 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.036 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.036 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.036 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.039 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.039 [XNIO-1 task-2] _2IkW8HSQOyfGlaM8stJ2Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.042 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.042 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.047 [XNIO-1 task-1] _L3BHGNdQJSWrstD0vG1Pw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ror9gzM6RSmgHl2KojEuOA +20:00:47.051 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.052 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.052 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.052 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.052 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.052 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.052 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:47.052 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "RmA4RaJ0bCbxjCJT-L3gigfADMrj9gt4v5g6Aky9o-Q", "RmA4RaJ0bCbxjCJT-L3gigfADMrj9gt4v5g6Aky9o-Q", code_challenge) +20:00:47.055 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac43119-c416-4761-9786-fb92b5ca0d49", "7ac43119-c416-4761-9786-fb92b5ca0d49", client_id) +20:00:47.055 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:47.055 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.055 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.055 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.055 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.055 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.056 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.056 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.056 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.063 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.063 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:47.063 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.063 [XNIO-1 task-1] 50HllSTZS7SKhcRVVk-Bqw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.065 [XNIO-1 task-2] k1HhWbL8Ti6EsA5L6Phlvw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3afHy2T9RpSsakq6ZGpczw +20:00:47.075 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.075 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.076 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.076 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG com.networknt.schema.TypeValidator debug - validate( "4DNI_bIPERnQv5scLt_MBp4AkjChesnT843pAfvStzc", "4DNI_bIPERnQv5scLt_MBp4AkjChesnT843pAfvStzc", code_challenge) +20:00:47.077 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:47.077 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.078 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.078 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.078 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.078 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.079 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.079 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.082 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.083 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:47.083 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.083 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.083 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.083 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.092 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.092 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.094 [XNIO-1 task-2] jjmfxKHLTWqvg9COt4-QXQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ud-XwxVQTX2WdYJEBRma1Q +20:00:47.095 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:47.095 [XNIO-1 task-1] NVpR2etmQF2vCysoX73bjA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.126 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.127 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.127 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.127 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG com.networknt.schema.TypeValidator debug - validate( "72cf3247-157c-456d-88aa-e569e158f1ee", "72cf3247-157c-456d-88aa-e569e158f1ee", client_id) +20:00:47.127 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.127 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.128 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.128 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.128 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.131 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.131 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.131 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.131 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG com.networknt.schema.TypeValidator debug - validate( "7ac43119-c416-4761-9786-fb92b5ca0d49", "7ac43119-c416-4761-9786-fb92b5ca0d49", client_id) +20:00:47.132 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:47.132 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.132 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.132 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.132 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.135 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.135 [XNIO-1 task-1] ehdGofqLS4WTD7UiWofKCw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.138 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.139 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.139 [XNIO-1 task-2] dWY50fikSceDg7xu0wgoQA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.160 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.174 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.174 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.174 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.174 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG com.networknt.schema.TypeValidator debug - validate( "EyCcDmZV18fgXFWIC0_ZqUbfOaQhmDPWgtshSrqjkfU", "EyCcDmZV18fgXFWIC0_ZqUbfOaQhmDPWgtshSrqjkfU", code_challenge) +20:00:47.174 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:47.175 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.175 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.175 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.175 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.178 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.185 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:47.185 [XNIO-1 task-2] Us09wRSQTr-ymyY3FGlomg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.197 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.197 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.198 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.198 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "FGIODJQ1_sHOUribvADoQxIlcM4cMTe_32H9zJ6RpW8", "FGIODJQ1_sHOUribvADoQxIlcM4cMTe_32H9zJ6RpW8", code_challenge) +20:00:47.199 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:47.199 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.199 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.199 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.199 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.199 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.211 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:47.212 [XNIO-1 task-2] BDlqVDIdSp-12U13IWFJ9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.225 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.225 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.225 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.226 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG com.networknt.schema.TypeValidator debug - validate( "tWhPnoZKStqHqAwTd52ActqrpAoshk4aBCt70KngGc8", "tWhPnoZKStqHqAwTd52ActqrpAoshk4aBCt70KngGc8", code_challenge) +20:00:47.226 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:47.226 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.226 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.226 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.226 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.227 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.233 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.233 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.233 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.233 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:47.233 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.234 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.234 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.235 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.235 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.235 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.237 [XNIO-1 task-2] WBfsR5HBQOWH8AHg5Bg9pg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Qth4G1tTS9-jFuCkE21qQw +20:00:47.243 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code +20:00:47.243 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +20:00:47.245 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.246 [XNIO-1 task-1] nxL-PsDqQsKAfLxLx6Cy2w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=guey-cdQTyOMDqCmVQE9CQ +20:00:47.246 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.246 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG com.networknt.schema.TypeValidator debug - validate( "TnuESddb92lE48OfF9TK2CocUIUxm47-bywTcfbIWCc", "TnuESddb92lE48OfF9TK2CocUIUxm47-bywTcfbIWCc", code_challenge) +20:00:47.246 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +20:00:47.247 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.247 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.247 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.247 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.247 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.251 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.251 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.251 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.252 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:47.252 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.252 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.252 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.254 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.262 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.262 [XNIO-1 task-2] UTIte7IWTQKOgWBetYAPEg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.266 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.267 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.269 [XNIO-1 task-1] JcZLpkl_TJqb8UT0Awkj5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Q9iUeaspSkSkze07-y-LMQ +20:00:47.283 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5d123a29-6552-4b47-aba9-17d0e0ad152d +20:00:47.305 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3bc083bf +20:00:47.344 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.345 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.345 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.345 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG com.networknt.schema.TypeValidator debug - validate( "bcfa027d-c8d4-442b-a52b-f5005be22615", "bcfa027d-c8d4-442b-a52b-f5005be22615", client_id) +20:00:47.345 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.345 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.346 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.346 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.346 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.359 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +20:00:47.359 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +20:00:47.361 [XNIO-1 task-2] PrsnIfXJRyu7Ye4zI8tvjA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=83O-gB3qQiG2B1d11mH3Gw +20:00:47.364 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.364 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.365 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +20:00:47.365 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG com.networknt.schema.TypeValidator debug - validate( "d45a231e-a97a-4d43-b8fe-4a676edfac96", "d45a231e-a97a-4d43-b8fe-4a676edfac96", client_id) +20:00:47.365 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +20:00:47.365 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +20:00:47.366 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +20:00:47.366 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@7971a3d6 for /oauth2/code +20:00:47.366 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +20:00:47.368 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.368 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +20:00:47.369 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +20:00:47.369 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ef749ec-d8bf-43be-a91b-47a1b2c499a5", "7ef749ec-d8bf-43be-a91b-47a1b2c499a5", client_id) +20:00:47.369 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +20:00:47.369 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +20:00:47.369 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +20:00:47.369 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +20:00:47.370 [XNIO-1 task-1] A7O24tz3QDuutFH4Lsxnyw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +20:00:47.379 [XNIO-1 task-2] vEWfRxVCTeyr7t0L-5Rfww DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@5a90acb6 for /oauth2/code diff --git a/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-key-1.log b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..2f65bc8 --- /dev/null +++ b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-key-1.log @@ -0,0 +1,160 @@ +20:00:43.084 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8d9324bc-9391-4334-82ef-32e14ebd0ac9 +20:00:43.257 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:688411a0-65ee-4f77-a621-bca3c77a09fc +20:00:43.281 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:688411a0-65ee-4f77-a621-bca3c77a09fc +20:00:43.301 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0eb708b0 +20:00:43.520 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6e99ec7c-23c9-4e00-b266-06e12598876b +20:00:43.522 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6e99ec7c-23c9-4e00-b266-06e12598876b +20:00:43.652 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9fbbc57e +Jun 28, 2024 8:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +20:00:43.687 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c17715c1-48f4-4fab-8228-9b1a36efff82 +20:00:43.689 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c17715c1-48f4-4fab-8228-9b1a36efff82 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +20:00:43.709 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c17715c1-48f4-4fab-8228-9b1a36efff82 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +20:00:43.723 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:94c143ea-23a7-42c6-8c47-6212e3129c08 +20:00:44.020 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d9481923-f7b4-41ac-9c03-44106f06e8a1 +20:00:44.022 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d9481923-f7b4-41ac-9c03-44106f06e8a1 +20:00:44.155 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:66996ad6-84d9-4c4d-b421-33c3d912c287 +20:00:44.175 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:66996ad6-84d9-4c4d-b421-33c3d912c287 +20:00:44.390 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12a393ca +20:00:44.406 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12a393ca +20:00:44.485 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12a393ca +20:00:44.624 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0eb708b0 +20:00:44.645 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:12a393ca +20:00:44.696 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:95e18c2f-ae10-4358-92c3-d0f919dddd75 +20:00:44.700 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:95e18c2f-ae10-4358-92c3-d0f919dddd75 +20:00:44.702 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:12a393ca +20:00:44.740 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c90dbbac-c857-4fed-b29f-f0a3256ce969 +20:00:44.961 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:dc6a1814-4246-461a-8d34-7131b7484790 +20:00:44.987 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ccbd5f50 +20:00:44.990 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ccbd5f50 +20:00:45.098 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.242 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.466 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c481bc9d +20:00:45.502 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c60a7e44-bcf1-41e4-9c72-31359b86bc43 +20:00:45.508 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c60a7e44-bcf1-41e4-9c72-31359b86bc43 +20:00:45.518 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:17172a25-6c56-4c7e-a34b-261a9dc8bca9 +20:00:45.557 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed84518d +20:00:45.559 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed84518d +20:00:45.698 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed84518d +20:00:45.828 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ccbd5f50 +20:00:45.833 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:eaf936f8-9cdc-4d35-a71c-949bd7961365 +20:00:45.838 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed84518d +20:00:45.924 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d45a231e-a97a-4d43-b8fe-4a676edfac96 +20:00:45.950 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ed84518d +20:00:45.965 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1276e79a +20:00:45.967 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1276e79a +20:00:45.972 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c481bc9d +20:00:45.978 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1276e79a +20:00:45.992 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4601398e +20:00:46.015 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4601398e +20:00:46.032 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1276e79a +20:00:46.100 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4601398e +20:00:46.158 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0eb708b0 +20:00:46.160 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6b79e2a0-b9d7-4611-9f59-9a6d866d29af +20:00:46.163 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6b79e2a0-b9d7-4611-9f59-9a6d866d29af +20:00:46.195 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ea7d1cba +20:00:46.229 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:46.247 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ea7d1cba +20:00:46.265 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4601398e +20:00:46.411 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1276e79a +20:00:46.527 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1276e79a +20:00:46.555 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1276e79a +20:00:46.665 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1276e79a +20:00:46.679 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:362ee8ca +20:00:46.681 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:362ee8ca +20:00:46.700 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1276e79a +20:00:46.797 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c2926b45-02a9-4e45-9a67-e756731f2757 +20:00:46.831 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bcfa027d-c8d4-442b-a52b-f5005be22615 +20:00:46.833 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bcfa027d-c8d4-442b-a52b-f5005be22615 +20:00:46.878 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:95c71da5-d47d-46cf-af55-8ef2390b543f +20:00:46.896 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:95c71da5-d47d-46cf-af55-8ef2390b543f +20:00:46.899 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:53a82af4 +20:00:46.908 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e8d349a3-9261-4e15-8ebe-321e6e2917d9 +20:00:46.913 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e8d349a3-9261-4e15-8ebe-321e6e2917d9 +20:00:46.947 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:362ee8ca +20:00:46.975 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2d720b04 +20:00:46.976 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dfddd2a8 +20:00:46.976 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dfddd2a8 +20:00:46.991 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0eb708b0 +20:00:47.032 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c481bc9d +20:00:47.056 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:ee4a2a61 +20:00:47.059 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.112 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f852d04a-d1f9-4340-b94f-af20f70d153f +20:00:47.175 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2d720b04 +20:00:47.179 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9988485c-bd60-47e6-90aa-e919c0b8f182 +20:00:47.192 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a8e7126f-ecf5-467b-a6ef-6a63356dd332 +20:00:47.193 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a8e7126f-ecf5-467b-a6ef-6a63356dd332 +20:00:47.210 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ed78abe2 +20:00:47.210 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a8e7126f-ecf5-467b-a6ef-6a63356dd332 +20:00:47.228 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2d720b04 +20:00:47.284 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed78abe2 +20:00:47.351 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:428fbfa3-7587-43c2-8906-9055dd392a89 +20:00:47.374 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed78abe2 +20:00:47.463 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ed78abe2 +20:00:47.465 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3163ddc2-7c0b-44ee-9112-4f7615dcb95c +20:00:47.622 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ec5e07a7-6a83-49b0-9708-fc487e88a110 +20:00:47.647 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bbcf5191-f4f5-404d-9442-5a882ba60af8 +20:00:47.649 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bbcf5191-f4f5-404d-9442-5a882ba60af8 +20:00:47.841 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:190a9ac4 +20:00:47.844 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:190a9ac4 +20:00:47.894 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:190a9ac4 +20:00:47.939 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:db41ad56-fa17-4cf4-951f-cf317fc46334 +20:00:47.944 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:db41ad56-fa17-4cf4-951f-cf317fc46334 +20:00:48.124 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:53a82af4 +20:00:48.128 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:db41ad56-fa17-4cf4-951f-cf317fc46334 +20:00:48.146 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f2403166-383c-474a-9565-ced1843ed5a5 +20:00:48.146 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ee4a2a61 +20:00:48.174 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:53a82af4 +20:00:48.397 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0eb708b0 +20:00:48.423 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4d2e814f +20:00:48.427 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f2403166-383c-474a-9565-ced1843ed5a5 +20:00:48.472 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4d2e814f +20:00:48.645 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:dfddd2a8 +20:00:48.791 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b5d9c617 +20:00:49.068 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bfc376e-08c2-4cbe-a810-b9adcfa6e76d +20:00:49.071 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bfc376e-08c2-4cbe-a810-b9adcfa6e76d +20:00:49.213 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e53ca290 +20:00:49.219 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e53ca290 +20:00:49.334 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c60a7e44-bcf1-41e4-9c72-31359b86bc43 +20:00:49.371 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e53ca290 +20:00:49.384 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d31a165e +20:00:49.510 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6f07388f-8869-49e0-afdb-c6b2b2c42e6f +20:00:49.582 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c0154d25-e519-45c4-a849-f70365112c74 +20:00:49.586 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c0154d25-e519-45c4-a849-f70365112c74 +20:00:49.601 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d31a165e +20:00:49.635 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1d48b2e1-4112-4fe4-bc78-a1e8ce2e86dd +20:00:49.660 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c93d2d5 +20:00:49.662 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2c93d2d5 +20:00:49.677 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2c93d2d5 +20:00:49.853 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bf704f31-964b-404e-9c43-5fd3f56d250c +20:00:50.001 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bf704f31-964b-404e-9c43-5fd3f56d250c +20:00:50.032 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d544daad +20:00:50.069 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7e14534d diff --git a/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..a6cc1db --- /dev/null +++ b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,3125 @@ +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +20:00:41.836 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:41.862 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7d41dd3f-667f-4fe0-ab18-5e3935eb6279 +20:00:41.866 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7d41dd3f-667f-4fe0-ab18-5e3935eb6279 +20:00:42.003 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:772d14bb-6f5d-4a93-ab54-b6803fa4cb3f +20:00:42.043 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b43112f1 +20:00:42.079 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07a0e949-ee07-4556-8087-f8773b766106 +20:00:42.080 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:07a0e949-ee07-4556-8087-f8773b766106 +20:00:42.096 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:64762d39 +20:00:42.155 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:772d14bb-6f5d-4a93-ab54-b6803fa4cb3f +20:00:42.375 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fa47c1a3 +20:00:42.419 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fa47c1a3 +20:00:42.438 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:fa47c1a3 +20:00:42.447 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1c618f49-ace8-45c1-a667-04b6114fcd82 +20:00:42.544 [XNIO-1 task-1] cS-I8kBgQEGoBC0ZYJlj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e84ab2f5-725a-45f8-86e7-7828f531bc28 +20:00:42.562 [XNIO-1 task-1] cS-I8kBgQEGoBC0ZYJlj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:42.563 [XNIO-1 task-1] cS-I8kBgQEGoBC0ZYJlj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:42.563 [XNIO-1 task-1] cS-I8kBgQEGoBC0ZYJlj9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e84ab2f5-725a-45f8-86e7-7828f531bc28 +20:00:42.567 [XNIO-1 task-1] cS-I8kBgQEGoBC0ZYJlj9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e84ab2f5-725a-45f8-86e7-7828f531bc28 +20:00:42.692 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:61223882-e1af-4ed2-a88e-6e758089eaa6 +20:00:42.760 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0e5bf92-81f3-47eb-9a38-18bb695c9695 +20:00:42.762 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0e5bf92-81f3-47eb-9a38-18bb695c9695 +20:00:42.783 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:b7244515 +20:00:42.950 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:627c71d7-5480-4712-9595-672acc38a639 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +Jun 28, 2024 8:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +20:00:43.003 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4136dc93-8279-4f4c-8830-7ad343e9a23e +Jun 28, 2024 8:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +20:00:43.023 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:b7244515 +20:00:43.030 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3c132461-7963-4f10-8479-819545653423 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +Jun 28, 2024 8:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +20:00:43.062 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:43.170 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8c3991f9-b5cb-4b2b-8685-f06a72d3263c +20:00:43.221 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f74db908 +20:00:43.223 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f74db908 +20:00:43.327 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7ff333b7 +20:00:43.341 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:627c71d7-5480-4712-9595-672acc38a639 +Jun 28, 2024 8:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +20:00:43.360 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:eb419da9-4fca-48a9-b6dc-389a25ac914a + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +20:00:43.521 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f74db908 +20:00:43.537 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f74db908 +20:00:43.555 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.557 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.573 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.582 [XNIO-1 task-1] 3Zgg5yl9TkqJPi8aVaIrNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.582 [XNIO-1 task-1] 3Zgg5yl9TkqJPi8aVaIrNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.582 [XNIO-1 task-1] 3Zgg5yl9TkqJPi8aVaIrNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:43.582 [XNIO-1 task-1] 3Zgg5yl9TkqJPi8aVaIrNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.583 [XNIO-1 task-1] 3Zgg5yl9TkqJPi8aVaIrNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.591 [XNIO-1 task-1] TMinWxukTUyWGzQrA0iYJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.592 [XNIO-1 task-1] TMinWxukTUyWGzQrA0iYJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.594 [XNIO-1 task-1] TMinWxukTUyWGzQrA0iYJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.596 [XNIO-1 task-1] TMinWxukTUyWGzQrA0iYJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.614 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:060100b1-f9ef-4379-8294-40f6fc1ee58e +20:00:43.619 [XNIO-1 task-1] TMinWxukTUyWGzQrA0iYJA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:43.637 [XNIO-1 task-1] 2t0Eb5dtS7yHvwEx3aigHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.638 [XNIO-1 task-1] 2t0Eb5dtS7yHvwEx3aigHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.638 [XNIO-1 task-1] 2t0Eb5dtS7yHvwEx3aigHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:43.638 [XNIO-1 task-1] 2t0Eb5dtS7yHvwEx3aigHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.639 [XNIO-1 task-1] 2t0Eb5dtS7yHvwEx3aigHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.640 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bd1f5c70-8b19-48e4-81ff-fb9a621a7124 +20:00:43.643 [XNIO-1 task-1] xzXdt7T9T72ZC2BNo7U29A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.643 [XNIO-1 task-1] xzXdt7T9T72ZC2BNo7U29A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.643 [XNIO-1 task-1] xzXdt7T9T72ZC2BNo7U29A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.644 [XNIO-1 task-1] xzXdt7T9T72ZC2BNo7U29A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.658 [XNIO-1 task-1] EbvjaC8AQxupisFGH1MQww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:43.658 [XNIO-1 task-1] EbvjaC8AQxupisFGH1MQww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:43.658 [XNIO-1 task-1] EbvjaC8AQxupisFGH1MQww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:43.659 [XNIO-1 task-1] EbvjaC8AQxupisFGH1MQww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.660 [XNIO-1 task-1] EbvjaC8AQxupisFGH1MQww DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:43.670 [XNIO-1 task-1] DLHrlP2hTwyVEO_dJP8hjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.670 [XNIO-1 task-1] DLHrlP2hTwyVEO_dJP8hjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.670 [XNIO-1 task-1] DLHrlP2hTwyVEO_dJP8hjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:43.670 [XNIO-1 task-1] DLHrlP2hTwyVEO_dJP8hjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.671 [XNIO-1 task-1] DLHrlP2hTwyVEO_dJP8hjQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.675 [XNIO-1 task-1] y2TGepNlRB6q3ADCqI65gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.675 [XNIO-1 task-1] y2TGepNlRB6q3ADCqI65gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.676 [XNIO-1 task-1] y2TGepNlRB6q3ADCqI65gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:43.676 [XNIO-1 task-1] y2TGepNlRB6q3ADCqI65gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.676 [XNIO-1 task-1] y2TGepNlRB6q3ADCqI65gA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.686 [XNIO-1 task-1] GKR9XHcATvOQjkN0ISb8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.686 [XNIO-1 task-1] GKR9XHcATvOQjkN0ISb8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.686 [XNIO-1 task-1] GKR9XHcATvOQjkN0ISb8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:43.686 [XNIO-1 task-1] GKR9XHcATvOQjkN0ISb8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.687 [XNIO-1 task-1] GKR9XHcATvOQjkN0ISb8GA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bf2b02a9-1cfc-40f3-9ead-47b0618b1d6b +20:00:43.699 [XNIO-1 task-1] Sa237nt_T3SwP5RTb01-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b, base path is set to: null +20:00:43.699 [XNIO-1 task-1] Sa237nt_T3SwP5RTb01-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:43.699 [XNIO-1 task-1] Sa237nt_T3SwP5RTb01-XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:43.700 [XNIO-1 task-1] Sa237nt_T3SwP5RTb01-XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b, base path is set to: null +20:00:43.700 [XNIO-1 task-1] Sa237nt_T3SwP5RTb01-XA DEBUG com.networknt.schema.TypeValidator debug - validate( "89d64ed9-824c-4e03-831a-4f3edb69ea2b", "89d64ed9-824c-4e03-831a-4f3edb69ea2b", refreshToken) +20:00:43.709 [XNIO-1 task-1] MYfT_85IQGSZhcGmQ4gbXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c17715c1-48f4-4fab-8228-9b1a36efff82, base path is set to: null +20:00:43.709 [XNIO-1 task-1] MYfT_85IQGSZhcGmQ4gbXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:43.709 [XNIO-1 task-1] MYfT_85IQGSZhcGmQ4gbXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:43.709 [XNIO-1 task-1] MYfT_85IQGSZhcGmQ4gbXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c17715c1-48f4-4fab-8228-9b1a36efff82, base path is set to: null +20:00:43.710 [XNIO-1 task-1] MYfT_85IQGSZhcGmQ4gbXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c17715c1-48f4-4fab-8228-9b1a36efff82", "c17715c1-48f4-4fab-8228-9b1a36efff82", refreshToken) +20:00:43.715 [XNIO-1 task-1] MYfT_85IQGSZhcGmQ4gbXQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c17715c1-48f4-4fab-8228-9b1a36efff82 is not found.","severity":"ERROR"} +20:00:43.718 [XNIO-1 task-1] PbVmmuWGQTKWOK6OwYSYYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.718 [XNIO-1 task-1] PbVmmuWGQTKWOK6OwYSYYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.719 [XNIO-1 task-1] PbVmmuWGQTKWOK6OwYSYYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +Jun 28, 2024 8:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +20:00:43.719 [XNIO-1 task-1] PbVmmuWGQTKWOK6OwYSYYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.720 [XNIO-1 task-1] PbVmmuWGQTKWOK6OwYSYYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:43.729 [XNIO-1 task-1] I38EqDHjSZ-QcxfZYINAdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:43.729 [XNIO-1 task-1] I38EqDHjSZ-QcxfZYINAdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.729 [XNIO-1 task-1] I38EqDHjSZ-QcxfZYINAdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:43.730 [XNIO-1 task-1] I38EqDHjSZ-QcxfZYINAdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:43.730 [XNIO-1 task-1] I38EqDHjSZ-QcxfZYINAdA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.730 [XNIO-1 task-1] I38EqDHjSZ-QcxfZYINAdA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +20:00:43.760 [XNIO-1 task-1] fBpob0heSu-O_4Qns7d-gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:43.760 [XNIO-1 task-1] fBpob0heSu-O_4Qns7d-gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:43.760 [XNIO-1 task-1] fBpob0heSu-O_4Qns7d-gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/346fe197-8dcb-4036-b598-5ef1400ecb5a +20:00:43.761 [XNIO-1 task-1] fBpob0heSu-O_4Qns7d-gw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 346fe197-8dcb-4036-b598-5ef1400ecb5a +20:00:43.777 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4136dc93-8279-4f4c-8830-7ad343e9a23e +20:00:43.783 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:43.797 [XNIO-1 task-1] jd502kSASj2YpLd1ovx0dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b, base path is set to: null +20:00:43.798 [XNIO-1 task-1] jd502kSASj2YpLd1ovx0dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:43.798 [XNIO-1 task-1] jd502kSASj2YpLd1ovx0dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:43.799 [XNIO-1 task-1] jd502kSASj2YpLd1ovx0dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b, base path is set to: null +20:00:43.800 [XNIO-1 task-1] jd502kSASj2YpLd1ovx0dA DEBUG com.networknt.schema.TypeValidator debug - validate( "89d64ed9-824c-4e03-831a-4f3edb69ea2b", "89d64ed9-824c-4e03-831a-4f3edb69ea2b", refreshToken) +20:00:43.804 [XNIO-1 task-1] IOy-cikERHWYEAFuzlbREQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b, base path is set to: null +20:00:43.804 [XNIO-1 task-1] IOy-cikERHWYEAFuzlbREQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:43.804 [XNIO-1 task-1] IOy-cikERHWYEAFuzlbREQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:43.805 [XNIO-1 task-1] IOy-cikERHWYEAFuzlbREQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b, base path is set to: null +20:00:43.806 [XNIO-1 task-1] IOy-cikERHWYEAFuzlbREQ DEBUG com.networknt.schema.TypeValidator debug - validate( "89d64ed9-824c-4e03-831a-4f3edb69ea2b", "89d64ed9-824c-4e03-831a-4f3edb69ea2b", refreshToken) +20:00:43.806 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.817 [XNIO-1 task-1] dAGO0xXBRoW3EbZmcdOGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.817 [XNIO-1 task-1] dAGO0xXBRoW3EbZmcdOGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.817 [XNIO-1 task-1] dAGO0xXBRoW3EbZmcdOGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:43.817 [XNIO-1 task-1] dAGO0xXBRoW3EbZmcdOGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.818 [XNIO-1 task-1] dAGO0xXBRoW3EbZmcdOGBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.819 [XNIO-1 task-1] dAGO0xXBRoW3EbZmcdOGBQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 89d64ed9-824c-4e03-831a-4f3edb69ea2b is not found.","severity":"ERROR"} +20:00:43.823 [XNIO-1 task-1] rn_EvsbpSk2sXASWQaK4VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.823 [XNIO-1 task-1] rn_EvsbpSk2sXASWQaK4VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.823 [XNIO-1 task-1] rn_EvsbpSk2sXASWQaK4VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:43.826 [XNIO-1 task-1] rn_EvsbpSk2sXASWQaK4VQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.836 [XNIO-1 task-1] P6Ju_fk8Sfaq5x6iXWjvzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:43.837 [XNIO-1 task-1] P6Ju_fk8Sfaq5x6iXWjvzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:43.837 [XNIO-1 task-1] P6Ju_fk8Sfaq5x6iXWjvzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:43.838 [XNIO-1 task-1] P6Ju_fk8Sfaq5x6iXWjvzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.838 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:89d64ed9-824c-4e03-831a-4f3edb69ea2b +20:00:43.950 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:627c71d7-5480-4712-9595-672acc38a639 +Jun 28, 2024 8:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:44.029 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:853bf697 +20:00:44.042 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c3d8a684-c1dd-479f-a2c2-152d8af015e0 +20:00:44.045 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c3d8a684-c1dd-479f-a2c2-152d8af015e0 +20:00:44.113 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7ff333b7 +20:00:44.125 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4136dc93-8279-4f4c-8830-7ad343e9a23e +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +20:00:44.129 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Jun 28, 2024 8:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:44.340 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1306cac9 +20:00:44.350 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:720e78cc-c1cc-4d8a-bf03-793c1cdacfcd +20:00:44.351 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:720e78cc-c1cc-4d8a-bf03-793c1cdacfcd +20:00:44.366 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:720e78cc-c1cc-4d8a-bf03-793c1cdacfcd +20:00:44.370 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:17296abd +20:00:44.373 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1bbeac93-7656-42f8-8b51-796e0e3323eb +20:00:44.374 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1bbeac93-7656-42f8-8b51-796e0e3323eb +20:00:44.409 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0dc1d75c-ede1-4472-a2e6-d7580bb7c9b6 +Jun 28, 2024 8:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:44.448 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:05433285-d4bd-4223-a942-00370772ce7a +20:00:44.452 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:17296abd +20:00:44.492 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:17296abd +20:00:44.508 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2a877a42-c038-4d5d-ac9b-eefd7bc57fd6 +20:00:44.525 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc5cf085 +20:00:44.529 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc5cf085 +20:00:44.539 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f74db908 +20:00:44.585 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c9088f28-7663-4c41-8a9b-ff4effd77848 +20:00:44.603 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:84d843ce +20:00:44.604 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:84d843ce +20:00:44.643 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:41882d91-82d0-4b38-a66c-eee563d4d940 +20:00:44.657 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc5cf085 +20:00:44.702 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f74db908 +20:00:44.731 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0be61210-671f-4dfd-9d9c-e97c4cff7ac5 +20:00:44.777 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:84d843ce +20:00:44.853 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6a9f1cdf-9d47-47ce-b62b-7b07ece4a3c1 +20:00:44.858 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6a9f1cdf-9d47-47ce-b62b-7b07ece4a3c1 +20:00:44.882 [XNIO-1 task-1] ahBbYC1dRbGvdsj8QCcA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0be61210-671f-4dfd-9d9c-e97c4cff7ac5 +20:00:44.882 [XNIO-1 task-1] ahBbYC1dRbGvdsj8QCcA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:44.882 [XNIO-1 task-1] ahBbYC1dRbGvdsj8QCcA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:44.883 [XNIO-1 task-1] ahBbYC1dRbGvdsj8QCcA_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0be61210-671f-4dfd-9d9c-e97c4cff7ac5 +20:00:44.884 [XNIO-1 task-1] ahBbYC1dRbGvdsj8QCcA_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0be61210-671f-4dfd-9d9c-e97c4cff7ac5 +20:00:44.889 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:518d36c2-059a-401b-a4a6-57f8fb4a8443 +20:00:44.895 [XNIO-1 task-1] 8f125tR3Ql6LiR0ECsByCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:44.895 [XNIO-1 task-1] 8f125tR3Ql6LiR0ECsByCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:44.896 [XNIO-1 task-1] 8f125tR3Ql6LiR0ECsByCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:44.896 [XNIO-1 task-1] 8f125tR3Ql6LiR0ECsByCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.897 [XNIO-1 task-1] 8f125tR3Ql6LiR0ECsByCw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:44.946 [XNIO-1 task-1] ylnNj_NaQaifUGt-_Kv3rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:44.947 [XNIO-1 task-1] ylnNj_NaQaifUGt-_Kv3rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:44.948 [XNIO-1 task-1] ylnNj_NaQaifUGt-_Kv3rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:44.949 [XNIO-1 task-1] ylnNj_NaQaifUGt-_Kv3rA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.969 [XNIO-1 task-1] xl4Nd4SvQQyZ4MQyPZHyKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0be61210-671f-4dfd-9d9c-e97c4cff7ac5, base path is set to: null +20:00:44.969 [XNIO-1 task-1] xl4Nd4SvQQyZ4MQyPZHyKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:44.969 [XNIO-1 task-1] xl4Nd4SvQQyZ4MQyPZHyKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:44.969 [XNIO-1 task-1] xl4Nd4SvQQyZ4MQyPZHyKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0be61210-671f-4dfd-9d9c-e97c4cff7ac5, base path is set to: null +20:00:44.970 [XNIO-1 task-1] xl4Nd4SvQQyZ4MQyPZHyKg DEBUG com.networknt.schema.TypeValidator debug - validate( "0be61210-671f-4dfd-9d9c-e97c4cff7ac5", "0be61210-671f-4dfd-9d9c-e97c4cff7ac5", refreshToken) +20:00:44.971 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0be61210-671f-4dfd-9d9c-e97c4cff7ac5 +20:00:44.979 [XNIO-1 task-1] odnH7aPQTc6Pg9HTUY0szw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0be61210-671f-4dfd-9d9c-e97c4cff7ac5, base path is set to: null +20:00:44.979 [XNIO-1 task-1] odnH7aPQTc6Pg9HTUY0szw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:44.979 [XNIO-1 task-1] odnH7aPQTc6Pg9HTUY0szw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:44.979 [XNIO-1 task-1] odnH7aPQTc6Pg9HTUY0szw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0be61210-671f-4dfd-9d9c-e97c4cff7ac5, base path is set to: null +20:00:44.980 [XNIO-1 task-1] odnH7aPQTc6Pg9HTUY0szw DEBUG com.networknt.schema.TypeValidator debug - validate( "0be61210-671f-4dfd-9d9c-e97c4cff7ac5", "0be61210-671f-4dfd-9d9c-e97c4cff7ac5", refreshToken) +20:00:44.980 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0be61210-671f-4dfd-9d9c-e97c4cff7ac5 +20:00:44.984 [XNIO-1 task-1] JaAWwDpnRnWqlkj73owzmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2, base path is set to: null +20:00:44.985 [XNIO-1 task-1] JaAWwDpnRnWqlkj73owzmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:44.985 [XNIO-1 task-1] JaAWwDpnRnWqlkj73owzmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:44.985 [XNIO-1 task-1] JaAWwDpnRnWqlkj73owzmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2, base path is set to: null +20:00:44.986 [XNIO-1 task-1] JaAWwDpnRnWqlkj73owzmg DEBUG com.networknt.schema.TypeValidator debug - validate( "b57cb6a7-f60f-469b-924f-a05491f628d2", "b57cb6a7-f60f-469b-924f-a05491f628d2", refreshToken) +20:00:45.005 [XNIO-1 task-1] Sq3wZbsTTUuUidxoKfR_vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.006 [XNIO-1 task-1] Sq3wZbsTTUuUidxoKfR_vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.006 [XNIO-1 task-1] Sq3wZbsTTUuUidxoKfR_vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.007 [XNIO-1 task-1] Sq3wZbsTTUuUidxoKfR_vg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.007 [XNIO-1 task-1] Sq3wZbsTTUuUidxoKfR_vg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.016 [XNIO-1 task-1] nZqbijfaQj2XmLsjMULE4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:45.016 [XNIO-1 task-1] nZqbijfaQj2XmLsjMULE4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.016 [XNIO-1 task-1] nZqbijfaQj2XmLsjMULE4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.016 [XNIO-1 task-1] nZqbijfaQj2XmLsjMULE4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:45.018 [XNIO-1 task-1] nZqbijfaQj2XmLsjMULE4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:45.032 [XNIO-1 task-1] rXULWEy_Ss-xT2C0tEP2kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2, base path is set to: null +20:00:45.032 [XNIO-1 task-1] rXULWEy_Ss-xT2C0tEP2kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.033 [XNIO-1 task-1] rXULWEy_Ss-xT2C0tEP2kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.033 [XNIO-1 task-1] rXULWEy_Ss-xT2C0tEP2kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2, base path is set to: null +20:00:45.034 [XNIO-1 task-1] rXULWEy_Ss-xT2C0tEP2kw DEBUG com.networknt.schema.TypeValidator debug - validate( "b57cb6a7-f60f-469b-924f-a05491f628d2", "b57cb6a7-f60f-469b-924f-a05491f628d2", refreshToken) +20:00:45.034 [XNIO-1 task-1] rXULWEy_Ss-xT2C0tEP2kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b57cb6a7-f60f-469b-924f-a05491f628d2 is not found.","severity":"ERROR"} +20:00:45.041 [XNIO-1 task-1] iHJ8HHhuSwqMVf_GJgEwbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:45.042 [XNIO-1 task-1] iHJ8HHhuSwqMVf_GJgEwbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.042 [XNIO-1 task-1] iHJ8HHhuSwqMVf_GJgEwbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.042 [XNIO-1 task-1] iHJ8HHhuSwqMVf_GJgEwbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:45.042 [XNIO-1 task-1] iHJ8HHhuSwqMVf_GJgEwbQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:45.044 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:518d36c2-059a-401b-a4a6-57f8fb4a8443 +20:00:45.048 [XNIO-1 task-1] La2oFkd-S62e2uZGpv1aCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.048 [XNIO-1 task-1] La2oFkd-S62e2uZGpv1aCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.048 [XNIO-1 task-1] La2oFkd-S62e2uZGpv1aCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.048 [XNIO-1 task-1] La2oFkd-S62e2uZGpv1aCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.069 [XNIO-1 task-1] k7zz86wvTHazmx2nTb7l4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.069 [XNIO-1 task-1] k7zz86wvTHazmx2nTb7l4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.069 [XNIO-1 task-1] k7zz86wvTHazmx2nTb7l4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.070 [XNIO-1 task-1] k7zz86wvTHazmx2nTb7l4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.070 [XNIO-1 task-1] k7zz86wvTHazmx2nTb7l4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.071 [XNIO-1 task-1] k7zz86wvTHazmx2nTb7l4g DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.076 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2d263d1e-9713-4b93-bf35-1aecfa2f3b15 +20:00:45.081 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:17296abd +20:00:45.085 [XNIO-1 task-1] khG8LyCwRJKCNwKI7-MFNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2, base path is set to: null +20:00:45.086 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2d263d1e-9713-4b93-bf35-1aecfa2f3b15 +20:00:45.086 [XNIO-1 task-1] khG8LyCwRJKCNwKI7-MFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.086 [XNIO-1 task-1] khG8LyCwRJKCNwKI7-MFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.086 [XNIO-1 task-1] khG8LyCwRJKCNwKI7-MFNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b57cb6a7-f60f-469b-924f-a05491f628d2, base path is set to: null +20:00:45.087 [XNIO-1 task-1] khG8LyCwRJKCNwKI7-MFNg DEBUG com.networknt.schema.TypeValidator debug - validate( "b57cb6a7-f60f-469b-924f-a05491f628d2", "b57cb6a7-f60f-469b-924f-a05491f628d2", refreshToken) +20:00:45.088 [XNIO-1 task-1] khG8LyCwRJKCNwKI7-MFNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b57cb6a7-f60f-469b-924f-a05491f628d2 is not found.","severity":"ERROR"} +20:00:45.096 [XNIO-1 task-1] KOHBy8S8SoeZEPSlWKVNLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +Jun 28, 2024 8:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +20:00:45.101 [XNIO-1 task-1] KOHBy8S8SoeZEPSlWKVNLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:45.105 [XNIO-1 task-1] lNxn49MJTzeEnKv8EJ2cuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.106 [XNIO-1 task-1] lNxn49MJTzeEnKv8EJ2cuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.106 [XNIO-1 task-1] lNxn49MJTzeEnKv8EJ2cuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.107 [XNIO-1 task-1] lNxn49MJTzeEnKv8EJ2cuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.111 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:53e31566-31fa-4c6f-a064-21c99388bdfe +20:00:45.121 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:45.126 [XNIO-1 task-1] oFPr58vfRB6R_WDCSmMAtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0263af55-1b0b-4db6-9b09-a87a2211f309 +20:00:45.126 [XNIO-1 task-1] oFPr58vfRB6R_WDCSmMAtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.126 [XNIO-1 task-1] oFPr58vfRB6R_WDCSmMAtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:45.126 [XNIO-1 task-1] oFPr58vfRB6R_WDCSmMAtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0263af55-1b0b-4db6-9b09-a87a2211f309, base path is set to: null +20:00:45.127 [XNIO-1 task-1] oFPr58vfRB6R_WDCSmMAtw DEBUG com.networknt.schema.TypeValidator debug - validate( "0263af55-1b0b-4db6-9b09-a87a2211f309", "0263af55-1b0b-4db6-9b09-a87a2211f309", refreshToken) +20:00:45.132 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:53e31566-31fa-4c6f-a064-21c99388bdfe +20:00:45.136 [XNIO-1 task-1] pDNlreiqQP62iwmHBKPvcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.139 [XNIO-1 task-1] pDNlreiqQP62iwmHBKPvcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.139 [XNIO-1 task-1] pDNlreiqQP62iwmHBKPvcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.140 [XNIO-1 task-1] pDNlreiqQP62iwmHBKPvcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.151 [XNIO-1 task-1] o7lyYxBoTv6JpHkj-kP8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.151 [XNIO-1 task-1] o7lyYxBoTv6JpHkj-kP8dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.152 [XNIO-1 task-1] o7lyYxBoTv6JpHkj-kP8dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.152 [XNIO-1 task-1] o7lyYxBoTv6JpHkj-kP8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.152 [XNIO-1 task-1] o7lyYxBoTv6JpHkj-kP8dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.153 [XNIO-1 task-1] o7lyYxBoTv6JpHkj-kP8dQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.160 [XNIO-1 task-1] KhGSvYUlSPqGZ2Y1RIagEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.161 [XNIO-1 task-1] KhGSvYUlSPqGZ2Y1RIagEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.161 [XNIO-1 task-1] KhGSvYUlSPqGZ2Y1RIagEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.161 [XNIO-1 task-1] KhGSvYUlSPqGZ2Y1RIagEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.162 [XNIO-1 task-1] KhGSvYUlSPqGZ2Y1RIagEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.170 [XNIO-1 task-1] 2BWz0EjuQjK3btsVxu-9Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.170 [XNIO-1 task-1] 2BWz0EjuQjK3btsVxu-9Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.170 [XNIO-1 task-1] 2BWz0EjuQjK3btsVxu-9Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.170 [XNIO-1 task-1] 2BWz0EjuQjK3btsVxu-9Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.171 [XNIO-1 task-1] 2BWz0EjuQjK3btsVxu-9Dw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.178 [XNIO-1 task-1] 2996eNCwTgaybYd2AlpQnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.178 [XNIO-1 task-1] 2996eNCwTgaybYd2AlpQnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.178 [XNIO-1 task-1] 2996eNCwTgaybYd2AlpQnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.178 [XNIO-1 task-1] 2996eNCwTgaybYd2AlpQnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.186 [XNIO-1 task-1] R9N2At5JQ8-YJch3-1zabA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.187 [XNIO-1 task-1] R9N2At5JQ8-YJch3-1zabA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.189 [XNIO-1 task-1] R9N2At5JQ8-YJch3-1zabA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.190 [XNIO-1 task-1] R9N2At5JQ8-YJch3-1zabA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.190 [XNIO-1 task-1] R9N2At5JQ8-YJch3-1zabA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.200 [XNIO-1 task-1] 8FHOkGsOQLemQmVCpXos3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.201 [XNIO-1 task-1] 8FHOkGsOQLemQmVCpXos3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.201 [XNIO-1 task-1] 8FHOkGsOQLemQmVCpXos3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.201 [XNIO-1 task-1] 8FHOkGsOQLemQmVCpXos3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.201 [XNIO-1 task-1] 8FHOkGsOQLemQmVCpXos3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.208 [XNIO-1 task-1] _LTAz28BSs6gYit2oYTuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.209 [XNIO-1 task-1] _LTAz28BSs6gYit2oYTuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.209 [XNIO-1 task-1] _LTAz28BSs6gYit2oYTuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.209 [XNIO-1 task-1] _LTAz28BSs6gYit2oYTuBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.209 [XNIO-1 task-1] _LTAz28BSs6gYit2oYTuBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.222 [XNIO-1 task-1] OpctXuM9QluiDGpHcaVHYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.222 [XNIO-1 task-1] OpctXuM9QluiDGpHcaVHYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.222 [XNIO-1 task-1] OpctXuM9QluiDGpHcaVHYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.223 [XNIO-1 task-1] OpctXuM9QluiDGpHcaVHYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.223 [XNIO-1 task-1] OpctXuM9QluiDGpHcaVHYA DEBUG com.networknt.schema.TypeValidator debug - validate( "053faaa0-eb76-4a05-bdef-b5029de61b53", "053faaa0-eb76-4a05-bdef-b5029de61b53", refreshToken) +20:00:45.226 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d8a23b21-b90b-4831-8016-63d01ff26234 +20:00:45.235 [XNIO-1 task-1] _8_PFWuUSuG8_D_eBl69hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.235 [XNIO-1 task-1] _8_PFWuUSuG8_D_eBl69hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.235 [XNIO-1 task-1] _8_PFWuUSuG8_D_eBl69hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.236 [XNIO-1 task-1] _8_PFWuUSuG8_D_eBl69hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.237 [XNIO-1 task-1] _8_PFWuUSuG8_D_eBl69hg DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:45.244 [XNIO-1 task-1] _8_PFWuUSuG8_D_eBl69hg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:45.254 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0a12ee02-d547-4c82-9502-2b85c5b9cb43 +20:00:45.255 [XNIO-1 task-1] I1qFHWXQTkCBREu5ITnuVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.255 [XNIO-1 task-1] I1qFHWXQTkCBREu5ITnuVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.255 [XNIO-1 task-1] I1qFHWXQTkCBREu5ITnuVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.255 [XNIO-1 task-1] I1qFHWXQTkCBREu5ITnuVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.256 [XNIO-1 task-1] I1qFHWXQTkCBREu5ITnuVw DEBUG com.networknt.schema.TypeValidator debug - validate( "053faaa0-eb76-4a05-bdef-b5029de61b53", "053faaa0-eb76-4a05-bdef-b5029de61b53", refreshToken) +20:00:45.263 [XNIO-1 task-1] cendN1rrQjG9xfr5zWMTnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.263 [XNIO-1 task-1] cendN1rrQjG9xfr5zWMTnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.263 [XNIO-1 task-1] cendN1rrQjG9xfr5zWMTnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.264 [XNIO-1 task-1] cendN1rrQjG9xfr5zWMTnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.264 [XNIO-1 task-1] cendN1rrQjG9xfr5zWMTnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.278 [XNIO-1 task-1] Bswm4LXMT8ChRUtgze5Azg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.278 [XNIO-1 task-1] Bswm4LXMT8ChRUtgze5Azg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.278 [XNIO-1 task-1] Bswm4LXMT8ChRUtgze5Azg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.279 [XNIO-1 task-1] Bswm4LXMT8ChRUtgze5Azg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.279 [XNIO-1 task-1] Bswm4LXMT8ChRUtgze5Azg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.283 [XNIO-1 task-1] Uqf-jkT8T62sMjcNtPlh-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.283 [XNIO-1 task-1] Uqf-jkT8T62sMjcNtPlh-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.283 [XNIO-1 task-1] Uqf-jkT8T62sMjcNtPlh-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.283 [XNIO-1 task-1] Uqf-jkT8T62sMjcNtPlh-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.284 [XNIO-1 task-1] Uqf-jkT8T62sMjcNtPlh-w DEBUG com.networknt.schema.TypeValidator debug - validate( "053faaa0-eb76-4a05-bdef-b5029de61b53", "053faaa0-eb76-4a05-bdef-b5029de61b53", refreshToken) +20:00:45.296 [XNIO-1 task-1] 5FC_jYceSsqwYx9gFTxlkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.296 [XNIO-1 task-1] 5FC_jYceSsqwYx9gFTxlkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.296 [XNIO-1 task-1] 5FC_jYceSsqwYx9gFTxlkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.297 [XNIO-1 task-1] 5FC_jYceSsqwYx9gFTxlkA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.297 [XNIO-1 task-1] 5FC_jYceSsqwYx9gFTxlkA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.308 [XNIO-1 task-1] WdNUmTloQGKrdszNBS_2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.308 [XNIO-1 task-1] WdNUmTloQGKrdszNBS_2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.308 [XNIO-1 task-1] WdNUmTloQGKrdszNBS_2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.310 [XNIO-1 task-1] WdNUmTloQGKrdszNBS_2eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.310 [XNIO-1 task-1] WdNUmTloQGKrdszNBS_2eg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.316 [XNIO-1 task-1] -MGHl6dHSamHp6UZcgjKLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.316 [XNIO-1 task-1] -MGHl6dHSamHp6UZcgjKLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.316 [XNIO-1 task-1] -MGHl6dHSamHp6UZcgjKLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.317 [XNIO-1 task-1] -MGHl6dHSamHp6UZcgjKLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.317 [XNIO-1 task-1] -MGHl6dHSamHp6UZcgjKLg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.329 [XNIO-1 task-1] xTjsKc45RUOi2zCS0Lm8PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.329 [XNIO-1 task-1] xTjsKc45RUOi2zCS0Lm8PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.329 [XNIO-1 task-1] xTjsKc45RUOi2zCS0Lm8PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.329 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:baf92b92 +20:00:45.330 [XNIO-1 task-1] xTjsKc45RUOi2zCS0Lm8PA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.330 [XNIO-1 task-1] xTjsKc45RUOi2zCS0Lm8PA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.338 [XNIO-1 task-1] vvUL_QE8ThiJEOUdgRZU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53 +20:00:45.338 [XNIO-1 task-1] vvUL_QE8ThiJEOUdgRZU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.338 [XNIO-1 task-1] vvUL_QE8ThiJEOUdgRZU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.339 [XNIO-1 task-1] vvUL_QE8ThiJEOUdgRZU2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53 +20:00:45.340 [XNIO-1 task-1] vvUL_QE8ThiJEOUdgRZU2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 053faaa0-eb76-4a05-bdef-b5029de61b53 +20:00:45.354 [XNIO-1 task-1] aqroPhSTQMaBN_JhpObeYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/add721d1-82a7-4f83-9c18-9f60b212c85e, base path is set to: null +20:00:45.355 [XNIO-1 task-1] aqroPhSTQMaBN_JhpObeYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.355 [XNIO-1 task-1] aqroPhSTQMaBN_JhpObeYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.355 [XNIO-1 task-1] aqroPhSTQMaBN_JhpObeYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/add721d1-82a7-4f83-9c18-9f60b212c85e, base path is set to: null +20:00:45.355 [XNIO-1 task-1] aqroPhSTQMaBN_JhpObeYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "add721d1-82a7-4f83-9c18-9f60b212c85e", "add721d1-82a7-4f83-9c18-9f60b212c85e", refreshToken) +20:00:45.359 [XNIO-1 task-1] aqroPhSTQMaBN_JhpObeYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token add721d1-82a7-4f83-9c18-9f60b212c85e is not found.","severity":"ERROR"} +20:00:45.362 [XNIO-1 task-1] PR4NchguQpGepfM7r8fmug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.362 [XNIO-1 task-1] PR4NchguQpGepfM7r8fmug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.362 [XNIO-1 task-1] PR4NchguQpGepfM7r8fmug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.363 [XNIO-1 task-1] PR4NchguQpGepfM7r8fmug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.374 [XNIO-1 task-1] mJGmyFxKRFWvbeD-nnGwrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.375 [XNIO-1 task-1] mJGmyFxKRFWvbeD-nnGwrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.376 [XNIO-1 task-1] mJGmyFxKRFWvbeD-nnGwrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.376 [XNIO-1 task-1] mJGmyFxKRFWvbeD-nnGwrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.376 [XNIO-1 task-1] mJGmyFxKRFWvbeD-nnGwrA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.376 [XNIO-1 task-1] mJGmyFxKRFWvbeD-nnGwrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.386 [XNIO-1 task-1] fb2Qs-WVSE-qx0fF-Zh1aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.386 [XNIO-1 task-1] fb2Qs-WVSE-qx0fF-Zh1aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.386 [XNIO-1 task-1] fb2Qs-WVSE-qx0fF-Zh1aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.386 [XNIO-1 task-1] fb2Qs-WVSE-qx0fF-Zh1aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.387 [XNIO-1 task-1] fb2Qs-WVSE-qx0fF-Zh1aw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.389 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:baf92b92 +20:00:45.390 [XNIO-1 task-1] jlBIqv-sQ5u4koBBlWyx7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.390 [XNIO-1 task-1] jlBIqv-sQ5u4koBBlWyx7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.390 [XNIO-1 task-1] jlBIqv-sQ5u4koBBlWyx7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.391 [XNIO-1 task-1] jlBIqv-sQ5u4koBBlWyx7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.391 [XNIO-1 task-1] jlBIqv-sQ5u4koBBlWyx7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.392 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:baf92b92 +20:00:45.398 [XNIO-1 task-1] sZU54WL8TJC9TwqKH0N_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.398 [XNIO-1 task-1] sZU54WL8TJC9TwqKH0N_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.398 [XNIO-1 task-1] sZU54WL8TJC9TwqKH0N_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.399 [XNIO-1 task-1] sZU54WL8TJC9TwqKH0N_yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.403 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3db116be-22d7-47ea-ab79-be63554389b1 +20:00:45.405 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3db116be-22d7-47ea-ab79-be63554389b1 +20:00:45.412 [XNIO-1 task-1] yC9GZ4XjTKWN_tEgSMxQWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.412 [XNIO-1 task-1] yC9GZ4XjTKWN_tEgSMxQWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.412 [XNIO-1 task-1] yC9GZ4XjTKWN_tEgSMxQWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.414 [XNIO-1 task-1] yC9GZ4XjTKWN_tEgSMxQWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.414 [XNIO-1 task-1] yC9GZ4XjTKWN_tEgSMxQWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.426 [XNIO-1 task-1] WjyWxuLsT5uGXXy3YTQW4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.427 [XNIO-1 task-1] WjyWxuLsT5uGXXy3YTQW4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.427 [XNIO-1 task-1] WjyWxuLsT5uGXXy3YTQW4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.428 [XNIO-1 task-1] WjyWxuLsT5uGXXy3YTQW4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.428 [XNIO-1 task-1] WjyWxuLsT5uGXXy3YTQW4w DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.428 [XNIO-1 task-1] WjyWxuLsT5uGXXy3YTQW4w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.432 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3db116be-22d7-47ea-ab79-be63554389b1 +20:00:45.434 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6f2a2e2e-a6e5-441a-a5ff-c55adfbe17a8 +20:00:45.434 [XNIO-1 task-1] BO9AU1-uR5yNWl3Wbj9Bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a336f83-1e81-4fcf-ae57-cfca2f44da53 +20:00:45.434 [XNIO-1 task-1] BO9AU1-uR5yNWl3Wbj9Bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.434 [XNIO-1 task-1] BO9AU1-uR5yNWl3Wbj9Bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.434 [XNIO-1 task-1] BO9AU1-uR5yNWl3Wbj9Bhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a336f83-1e81-4fcf-ae57-cfca2f44da53 +20:00:45.436 [XNIO-1 task-1] BO9AU1-uR5yNWl3Wbj9Bhg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9a336f83-1e81-4fcf-ae57-cfca2f44da53 +20:00:45.452 [XNIO-1 task-1] ErjgnckATN6kJXtePgiZcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.452 [XNIO-1 task-1] ErjgnckATN6kJXtePgiZcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.452 [XNIO-1 task-1] ErjgnckATN6kJXtePgiZcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.453 [XNIO-1 task-1] ErjgnckATN6kJXtePgiZcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.453 [XNIO-1 task-1] ErjgnckATN6kJXtePgiZcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.460 [XNIO-1 task-1] KX4-CX5wQfa_OVgctdnatg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.460 [XNIO-1 task-1] KX4-CX5wQfa_OVgctdnatg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.460 [XNIO-1 task-1] KX4-CX5wQfa_OVgctdnatg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.462 [XNIO-1 task-1] KX4-CX5wQfa_OVgctdnatg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.462 [XNIO-1 task-1] KX4-CX5wQfa_OVgctdnatg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.471 [XNIO-1 task-1] jYHkAb4DRweq0_8hE833AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.472 [XNIO-1 task-1] jYHkAb4DRweq0_8hE833AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.472 [XNIO-1 task-1] jYHkAb4DRweq0_8hE833AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.473 [XNIO-1 task-1] jYHkAb4DRweq0_8hE833AQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.484 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0c274cc1-5dd1-42bb-b47f-3540d2903a74 +20:00:45.488 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +20:00:45.490 [XNIO-1 task-1] 9qMCsoI1QRWFnvZNsxWKFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.490 [XNIO-1 task-1] 9qMCsoI1QRWFnvZNsxWKFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.490 [XNIO-1 task-1] 9qMCsoI1QRWFnvZNsxWKFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +20:00:45.492 [XNIO-1 task-1] 9qMCsoI1QRWFnvZNsxWKFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.499 [XNIO-1 task-1] pFCQoZ8NTOK6bfCSvIba0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.499 [XNIO-1 task-1] pFCQoZ8NTOK6bfCSvIba0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.499 [XNIO-1 task-1] pFCQoZ8NTOK6bfCSvIba0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.500 [XNIO-1 task-1] pFCQoZ8NTOK6bfCSvIba0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.500 [XNIO-1 task-1] pFCQoZ8NTOK6bfCSvIba0A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.523 [XNIO-1 task-1] X48chEZHSKC7kuL_ULCScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.524 [XNIO-1 task-1] X48chEZHSKC7kuL_ULCScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.524 [XNIO-1 task-1] X48chEZHSKC7kuL_ULCScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.525 [XNIO-1 task-1] X48chEZHSKC7kuL_ULCScA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.534 [XNIO-1 task-1] uLxa3J_gQruczHwQajZsDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.534 [XNIO-1 task-1] uLxa3J_gQruczHwQajZsDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.535 [XNIO-1 task-1] uLxa3J_gQruczHwQajZsDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.535 [XNIO-1 task-1] uLxa3J_gQruczHwQajZsDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.535 [XNIO-1 task-1] uLxa3J_gQruczHwQajZsDA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.550 [XNIO-1 task-1] QIqoXsd7SLSKWLokKcvQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.550 [XNIO-1 task-1] QIqoXsd7SLSKWLokKcvQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.550 [XNIO-1 task-1] QIqoXsd7SLSKWLokKcvQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.550 [XNIO-1 task-1] QIqoXsd7SLSKWLokKcvQkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.551 [XNIO-1 task-1] QIqoXsd7SLSKWLokKcvQkw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.559 [XNIO-1 task-1] grHBDfsVQW2j5eT2ZSAD2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.560 [XNIO-1 task-1] grHBDfsVQW2j5eT2ZSAD2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.560 [XNIO-1 task-1] grHBDfsVQW2j5eT2ZSAD2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.560 [XNIO-1 task-1] grHBDfsVQW2j5eT2ZSAD2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.560 [XNIO-1 task-1] grHBDfsVQW2j5eT2ZSAD2A DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:45.561 [XNIO-1 task-1] grHBDfsVQW2j5eT2ZSAD2A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:45.570 [XNIO-1 task-1] ST-Hn5oPSWSFv0spN45hkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.570 [XNIO-1 task-1] ST-Hn5oPSWSFv0spN45hkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.570 [XNIO-1 task-1] ST-Hn5oPSWSFv0spN45hkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.575 [XNIO-1 task-1] ST-Hn5oPSWSFv0spN45hkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.614 [XNIO-1 task-1] PAOunjXfRcmOkEYiDjhQjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.614 [XNIO-1 task-1] PAOunjXfRcmOkEYiDjhQjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.615 [XNIO-1 task-1] PAOunjXfRcmOkEYiDjhQjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.615 [XNIO-1 task-1] PAOunjXfRcmOkEYiDjhQjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.615 [XNIO-1 task-1] PAOunjXfRcmOkEYiDjhQjA DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:45.616 [XNIO-1 task-1] PAOunjXfRcmOkEYiDjhQjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:45.636 [XNIO-1 task-1] xRzFoavETDq0dCaTyvVKJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.637 [XNIO-1 task-1] xRzFoavETDq0dCaTyvVKJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.637 [XNIO-1 task-1] xRzFoavETDq0dCaTyvVKJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.637 [XNIO-1 task-1] xRzFoavETDq0dCaTyvVKJA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +Jun 28, 2024 8:00:45 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +20:00:45.645 [XNIO-1 task-1] P4EgME30S66CmwHn73UoSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.646 [XNIO-1 task-1] P4EgME30S66CmwHn73UoSw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:45.655 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4136dc93-8279-4f4c-8830-7ad343e9a23e +20:00:45.660 [XNIO-1 task-1] vv8bDTfXRXufLKFJK1HWxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53 +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +20:00:45.660 [XNIO-1 task-1] vv8bDTfXRXufLKFJK1HWxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.660 [XNIO-1 task-1] vv8bDTfXRXufLKFJK1HWxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.660 [XNIO-1 task-1] vv8bDTfXRXufLKFJK1HWxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.660 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:45.661 [XNIO-1 task-1] vv8bDTfXRXufLKFJK1HWxA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 053faaa0-eb76-4a05-bdef-b5029de61b53 +20:00:45.664 [XNIO-1 task-1] PdYqeykvTWanznekEln79A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.664 [XNIO-1 task-1] PdYqeykvTWanznekEln79A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.664 [XNIO-1 task-1] PdYqeykvTWanznekEln79A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.665 [XNIO-1 task-1] PdYqeykvTWanznekEln79A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +20:00:45.665 [XNIO-1 task-1] PdYqeykvTWanznekEln79A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.672 [XNIO-1 task-1] 2AXwk8PdTpWSva6QFkhRLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c, base path is set to: null +20:00:45.672 [XNIO-1 task-1] 2AXwk8PdTpWSva6QFkhRLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.672 [XNIO-1 task-1] 2AXwk8PdTpWSva6QFkhRLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.672 [XNIO-1 task-1] 2AXwk8PdTpWSva6QFkhRLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c, base path is set to: null +20:00:45.673 [XNIO-1 task-1] 2AXwk8PdTpWSva6QFkhRLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e71ebff1-2a7d-4a56-b45f-5acdffb0d87c", "e71ebff1-2a7d-4a56-b45f-5acdffb0d87c", refreshToken) +20:00:45.686 [XNIO-1 task-1] LWc64EQYQnyeArpEN65TtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.687 [XNIO-1 task-1] LWc64EQYQnyeArpEN65TtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.687 [XNIO-1 task-1] LWc64EQYQnyeArpEN65TtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.687 [XNIO-1 task-1] LWc64EQYQnyeArpEN65TtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/053faaa0-eb76-4a05-bdef-b5029de61b53, base path is set to: null +20:00:45.687 [XNIO-1 task-1] LWc64EQYQnyeArpEN65TtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "053faaa0-eb76-4a05-bdef-b5029de61b53", "053faaa0-eb76-4a05-bdef-b5029de61b53", refreshToken) +20:00:45.688 [XNIO-1 task-1] LWc64EQYQnyeArpEN65TtQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 053faaa0-eb76-4a05-bdef-b5029de61b53 is not found.","severity":"ERROR"} +20:00:45.693 [XNIO-1 task-1] 0mk9q-39QSy-c1A7xh4Kuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.693 [XNIO-1 task-1] 0mk9q-39QSy-c1A7xh4Kuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.693 [XNIO-1 task-1] 0mk9q-39QSy-c1A7xh4Kuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.693 [XNIO-1 task-1] 0mk9q-39QSy-c1A7xh4Kuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.694 [XNIO-1 task-1] 0mk9q-39QSy-c1A7xh4Kuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.696 [XNIO-1 task-1] NcAYFwW1Tbq0fh5u07LdBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.697 [XNIO-1 task-1] NcAYFwW1Tbq0fh5u07LdBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.697 [XNIO-1 task-1] NcAYFwW1Tbq0fh5u07LdBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.697 [XNIO-1 task-1] NcAYFwW1Tbq0fh5u07LdBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.697 [XNIO-1 task-1] NcAYFwW1Tbq0fh5u07LdBA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.798 [XNIO-1 task-1] NcAYFwW1Tbq0fh5u07LdBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.801 [XNIO-1 task-1] 00l5_fHcRwepwIpe6ibl6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.801 [XNIO-1 task-1] 00l5_fHcRwepwIpe6ibl6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.803 [XNIO-1 task-1] 00l5_fHcRwepwIpe6ibl6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.803 [XNIO-1 task-1] 00l5_fHcRwepwIpe6ibl6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.805 [XNIO-1 task-1] 00l5_fHcRwepwIpe6ibl6g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.810 [XNIO-1 task-1] 64lSljGJRy-R3a7_ODakqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.811 [XNIO-1 task-1] 64lSljGJRy-R3a7_ODakqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.811 [XNIO-1 task-1] 64lSljGJRy-R3a7_ODakqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.811 [XNIO-1 task-1] 64lSljGJRy-R3a7_ODakqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.812 [XNIO-1 task-1] 64lSljGJRy-R3a7_ODakqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.812 [XNIO-1 task-1] 64lSljGJRy-R3a7_ODakqQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.813 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1306cac9 +20:00:45.820 [XNIO-1 task-1] mHTSpgSGQ7OOG0IJY_mW4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.820 [XNIO-1 task-1] mHTSpgSGQ7OOG0IJY_mW4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.820 [XNIO-1 task-1] mHTSpgSGQ7OOG0IJY_mW4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.821 [XNIO-1 task-1] mHTSpgSGQ7OOG0IJY_mW4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.821 [XNIO-1 task-1] mHTSpgSGQ7OOG0IJY_mW4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.827 [XNIO-1 task-1] EiQoc-zjSX2HC2PovXGuOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.828 [XNIO-1 task-1] EiQoc-zjSX2HC2PovXGuOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.828 [XNIO-1 task-1] EiQoc-zjSX2HC2PovXGuOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.828 [XNIO-1 task-1] EiQoc-zjSX2HC2PovXGuOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.829 [XNIO-1 task-1] EiQoc-zjSX2HC2PovXGuOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.839 [XNIO-1 task-1] WqLS636mRdK-kHt19lYSgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.839 [XNIO-1 task-1] WqLS636mRdK-kHt19lYSgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.839 [XNIO-1 task-1] WqLS636mRdK-kHt19lYSgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.841 [XNIO-1 task-1] WqLS636mRdK-kHt19lYSgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.843 [XNIO-1 task-1] WqLS636mRdK-kHt19lYSgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.851 [XNIO-1 task-1] PJiX8I6GRCqfJrlLIJwPyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.851 [XNIO-1 task-1] PJiX8I6GRCqfJrlLIJwPyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.851 [XNIO-1 task-1] PJiX8I6GRCqfJrlLIJwPyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.851 [XNIO-1 task-1] PJiX8I6GRCqfJrlLIJwPyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.852 [XNIO-1 task-1] PJiX8I6GRCqfJrlLIJwPyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.853 [XNIO-1 task-1] PJiX8I6GRCqfJrlLIJwPyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.857 [XNIO-1 task-1] 3K-XgvHqS6KWLxk3tn-6gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.858 [XNIO-1 task-1] 3K-XgvHqS6KWLxk3tn-6gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.858 [XNIO-1 task-1] 3K-XgvHqS6KWLxk3tn-6gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.858 [XNIO-1 task-1] 3K-XgvHqS6KWLxk3tn-6gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.858 [XNIO-1 task-1] 3K-XgvHqS6KWLxk3tn-6gQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.863 [XNIO-1 task-1] UyGB1RIESkadu9PiQhdU2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.864 [XNIO-1 task-1] UyGB1RIESkadu9PiQhdU2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.864 [XNIO-1 task-1] UyGB1RIESkadu9PiQhdU2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:45.864 [XNIO-1 task-1] UyGB1RIESkadu9PiQhdU2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.865 [XNIO-1 task-1] UyGB1RIESkadu9PiQhdU2w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:45.871 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7c216386 +20:00:45.880 [XNIO-1 task-1] qtxAomBgSQ-MHRz-5HIFVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.880 [XNIO-1 task-1] qtxAomBgSQ-MHRz-5HIFVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.880 [XNIO-1 task-1] qtxAomBgSQ-MHRz-5HIFVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.880 [XNIO-1 task-1] qtxAomBgSQ-MHRz-5HIFVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.881 [XNIO-1 task-1] qtxAomBgSQ-MHRz-5HIFVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:45.881 [XNIO-1 task-1] qtxAomBgSQ-MHRz-5HIFVQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:45.888 [XNIO-1 task-1] -KJaIe3yRHCGArqF5X30QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.888 [XNIO-1 task-1] -KJaIe3yRHCGArqF5X30QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.888 [XNIO-1 task-1] -KJaIe3yRHCGArqF5X30QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.888 [XNIO-1 task-1] -KJaIe3yRHCGArqF5X30QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.889 [XNIO-1 task-1] -KJaIe3yRHCGArqF5X30QQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.894 [XNIO-1 task-1] Zjl93H5USs6IYxPxta1m3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.895 [XNIO-1 task-1] Zjl93H5USs6IYxPxta1m3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.895 [XNIO-1 task-1] Zjl93H5USs6IYxPxta1m3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.895 [XNIO-1 task-1] Zjl93H5USs6IYxPxta1m3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.896 [XNIO-1 task-1] Zjl93H5USs6IYxPxta1m3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.896 [XNIO-1 task-1] Zjl93H5USs6IYxPxta1m3Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 +20:00:45.902 [XNIO-1 task-1] AfExkQJHTwuN4F104ZMTuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.904 [XNIO-1 task-1] AfExkQJHTwuN4F104ZMTuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.904 [XNIO-1 task-1] AfExkQJHTwuN4F104ZMTuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.904 [XNIO-1 task-1] AfExkQJHTwuN4F104ZMTuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.904 [XNIO-1 task-1] AfExkQJHTwuN4F104ZMTuA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.904 [XNIO-1 task-1] AfExkQJHTwuN4F104ZMTuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.912 [XNIO-1 task-1] nigDZ1uUR6yh55RyO6YN8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.912 [XNIO-1 task-1] nigDZ1uUR6yh55RyO6YN8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.914 [XNIO-1 task-1] nigDZ1uUR6yh55RyO6YN8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.914 [XNIO-1 task-1] nigDZ1uUR6yh55RyO6YN8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.915 [XNIO-1 task-1] nigDZ1uUR6yh55RyO6YN8w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:45.917 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:875afac1-ca0e-4195-b655-71268357cfa1 +20:00:45.917 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7c216386 +20:00:45.921 [XNIO-1 task-1] WKD7VLthR5Sp3bT9K8ssFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.922 [XNIO-1 task-1] WKD7VLthR5Sp3bT9K8ssFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.922 [XNIO-1 task-1] WKD7VLthR5Sp3bT9K8ssFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.922 [XNIO-1 task-1] WKD7VLthR5Sp3bT9K8ssFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:45.923 [XNIO-1 task-1] WKD7VLthR5Sp3bT9K8ssFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:45.924 [XNIO-1 task-1] WKD7VLthR5Sp3bT9K8ssFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:45.928 [XNIO-1 task-1] AegA78TvTCuOUZDnYXkEAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.928 [XNIO-1 task-1] AegA78TvTCuOUZDnYXkEAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.928 [XNIO-1 task-1] AegA78TvTCuOUZDnYXkEAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.928 [XNIO-1 task-1] AegA78TvTCuOUZDnYXkEAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.929 [XNIO-1 task-1] AegA78TvTCuOUZDnYXkEAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.933 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:875afac1-ca0e-4195-b655-71268357cfa1 +20:00:45.939 [XNIO-1 task-1] tOTl5qo0TRWTU_4Ogw8WEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.940 [XNIO-1 task-1] tOTl5qo0TRWTU_4Ogw8WEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.941 [XNIO-1 task-1] tOTl5qo0TRWTU_4Ogw8WEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.943 [XNIO-1 task-1] tOTl5qo0TRWTU_4Ogw8WEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.950 [XNIO-1 task-1] 8rB8etw1Rx-N7x1e4TijBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.950 [XNIO-1 task-1] 8rB8etw1Rx-N7x1e4TijBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.950 [XNIO-1 task-1] 8rB8etw1Rx-N7x1e4TijBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.951 [XNIO-1 task-1] 8rB8etw1Rx-N7x1e4TijBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.951 [XNIO-1 task-1] 8rB8etw1Rx-N7x1e4TijBw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.951 [XNIO-1 task-1] 8rB8etw1Rx-N7x1e4TijBw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.957 [XNIO-1 task-1] 45RfudyKTMmQDJ7fiwYPFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.957 [XNIO-1 task-1] 45RfudyKTMmQDJ7fiwYPFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.957 [XNIO-1 task-1] 45RfudyKTMmQDJ7fiwYPFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.958 [XNIO-1 task-1] 45RfudyKTMmQDJ7fiwYPFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.958 [XNIO-1 task-1] 45RfudyKTMmQDJ7fiwYPFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.964 [XNIO-1 task-1] jBlRBxUBRay45WgcYrv_HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.964 [XNIO-1 task-1] jBlRBxUBRay45WgcYrv_HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.965 [XNIO-1 task-1] jBlRBxUBRay45WgcYrv_HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.965 [XNIO-1 task-1] jBlRBxUBRay45WgcYrv_HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dc6a1814-4246-461a-8d34-7131b7484790, base path is set to: null +20:00:45.966 [XNIO-1 task-1] jBlRBxUBRay45WgcYrv_HA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6a1814-4246-461a-8d34-7131b7484790", "dc6a1814-4246-461a-8d34-7131b7484790", refreshToken) +20:00:45.966 [XNIO-1 task-1] jBlRBxUBRay45WgcYrv_HA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} +20:00:45.979 [XNIO-1 task-1] wX-pR5CeQnC4xSw6T--Tqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:45.979 [XNIO-1 task-1] wX-pR5CeQnC4xSw6T--Tqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.979 [XNIO-1 task-1] wX-pR5CeQnC4xSw6T--Tqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:45.979 [XNIO-1 task-1] wX-pR5CeQnC4xSw6T--Tqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:45.980 [XNIO-1 task-1] wX-pR5CeQnC4xSw6T--Tqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:45.988 [XNIO-1 task-1] Eqa8uCIrQhSClX6pAYAxIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.989 [XNIO-1 task-1] Eqa8uCIrQhSClX6pAYAxIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.989 [XNIO-1 task-1] Eqa8uCIrQhSClX6pAYAxIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:45.990 [XNIO-1 task-1] Eqa8uCIrQhSClX6pAYAxIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.997 [XNIO-1 task-1] M-jLhC4pR1aws_hUBgCmlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:45.997 [XNIO-1 task-1] M-jLhC4pR1aws_hUBgCmlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:45.997 [XNIO-1 task-1] M-jLhC4pR1aws_hUBgCmlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:45.997 [XNIO-1 task-1] M-jLhC4pR1aws_hUBgCmlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:45.998 [XNIO-1 task-1] M-jLhC4pR1aws_hUBgCmlA DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.004 [XNIO-1 task-1] SKuwO2P0S2yhKBLvJufRQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.004 [XNIO-1 task-1] SKuwO2P0S2yhKBLvJufRQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.004 [XNIO-1 task-1] SKuwO2P0S2yhKBLvJufRQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.004 [XNIO-1 task-1] SKuwO2P0S2yhKBLvJufRQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.005 [XNIO-1 task-1] SKuwO2P0S2yhKBLvJufRQw DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.016 [XNIO-1 task-1] MFgz-qF5THa30P7qxadigg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.017 [XNIO-1 task-1] MFgz-qF5THa30P7qxadigg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.017 [XNIO-1 task-1] MFgz-qF5THa30P7qxadigg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.017 [XNIO-1 task-1] MFgz-qF5THa30P7qxadigg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.017 [XNIO-1 task-1] MFgz-qF5THa30P7qxadigg DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.034 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d8a23b21-b90b-4831-8016-63d01ff26234 +20:00:46.035 [XNIO-1 task-1] 9qhH4He-RZmrMl4AHmUVOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.035 [XNIO-1 task-1] 9qhH4He-RZmrMl4AHmUVOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.036 [XNIO-1 task-1] 9qhH4He-RZmrMl4AHmUVOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.036 [XNIO-1 task-1] 9qhH4He-RZmrMl4AHmUVOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.051 [XNIO-1 task-1] 1u6-MiLrSDKWUeinEsaMoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.051 [XNIO-1 task-1] 1u6-MiLrSDKWUeinEsaMoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.051 [XNIO-1 task-1] 1u6-MiLrSDKWUeinEsaMoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.052 [XNIO-1 task-1] 1u6-MiLrSDKWUeinEsaMoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.052 [XNIO-1 task-1] 1u6-MiLrSDKWUeinEsaMoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.055 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f0a4432 +20:00:46.056 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2f0a4432 +20:00:46.062 [XNIO-1 task-1] nkt_lKSaQG692n-QcsjrYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.062 [XNIO-1 task-1] nkt_lKSaQG692n-QcsjrYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.063 [XNIO-1 task-1] nkt_lKSaQG692n-QcsjrYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.063 [XNIO-1 task-1] nkt_lKSaQG692n-QcsjrYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.063 [XNIO-1 task-1] nkt_lKSaQG692n-QcsjrYA DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.064 [XNIO-1 task-1] nkt_lKSaQG692n-QcsjrYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 is not found.","severity":"ERROR"} +20:00:46.068 [XNIO-1 task-1] XiTDfdY9T0Galcj66UJ2iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.069 [XNIO-1 task-1] XiTDfdY9T0Galcj66UJ2iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.070 [XNIO-1 task-1] XiTDfdY9T0Galcj66UJ2iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.071 [XNIO-1 task-1] XiTDfdY9T0Galcj66UJ2iQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.080 [XNIO-1 task-1] -RcPN7IHRwmuKD3BXqhAaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.080 [XNIO-1 task-1] -RcPN7IHRwmuKD3BXqhAaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.081 [XNIO-1 task-1] -RcPN7IHRwmuKD3BXqhAaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.081 [XNIO-1 task-1] -RcPN7IHRwmuKD3BXqhAaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.082 [XNIO-1 task-1] -RcPN7IHRwmuKD3BXqhAaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f39f1299-0cc6-4653-85a2-132bf26f7a86", "f39f1299-0cc6-4653-85a2-132bf26f7a86", refreshToken) +20:00:46.085 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7ff333b7 +20:00:46.090 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e5bff6df-dbcc-4503-9fd4-c6e19eda6da6 +20:00:46.097 [XNIO-1 task-1] ZMOLMq99RQaQ0QkW2zbw-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.097 [XNIO-1 task-1] ZMOLMq99RQaQ0QkW2zbw-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.097 [XNIO-1 task-1] ZMOLMq99RQaQ0QkW2zbw-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.097 [XNIO-1 task-1] ZMOLMq99RQaQ0QkW2zbw-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.097 [XNIO-1 task-1] ZMOLMq99RQaQ0QkW2zbw-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.106 [XNIO-1 task-1] w4FWrdA7Q5ixifgtBcCSSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.106 [XNIO-1 task-1] w4FWrdA7Q5ixifgtBcCSSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.106 [XNIO-1 task-1] w4FWrdA7Q5ixifgtBcCSSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.106 [XNIO-1 task-1] w4FWrdA7Q5ixifgtBcCSSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.107 [XNIO-1 task-1] w4FWrdA7Q5ixifgtBcCSSA DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:46.107 [XNIO-1 task-1] w4FWrdA7Q5ixifgtBcCSSA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:46.111 [XNIO-1 task-1] bWapjfIfQZ-ARyEy8OcYLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.111 [XNIO-1 task-1] bWapjfIfQZ-ARyEy8OcYLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.111 [XNIO-1 task-1] bWapjfIfQZ-ARyEy8OcYLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.112 [XNIO-1 task-1] bWapjfIfQZ-ARyEy8OcYLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.120 [XNIO-1 task-1] qguX7n8tRqO2MzEjKuwdkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.121 [XNIO-1 task-1] qguX7n8tRqO2MzEjKuwdkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.121 [XNIO-1 task-1] qguX7n8tRqO2MzEjKuwdkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.121 [XNIO-1 task-1] qguX7n8tRqO2MzEjKuwdkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.121 [XNIO-1 task-1] qguX7n8tRqO2MzEjKuwdkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:46.122 [XNIO-1 task-1] qguX7n8tRqO2MzEjKuwdkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:46.124 [XNIO-1 task-1] FMFTGav6RciTgqV58dW3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.124 [XNIO-1 task-1] FMFTGav6RciTgqV58dW3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.124 [XNIO-1 task-1] FMFTGav6RciTgqV58dW3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.124 [XNIO-1 task-1] FMFTGav6RciTgqV58dW3dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.125 [XNIO-1 task-1] FMFTGav6RciTgqV58dW3dg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.126 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:38560e1b-d38d-4c02-8f2b-42d8e5ef71f0 +20:00:46.127 [XNIO-1 task-1] y1YJiEwwQ3Wyi4vQilMXmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.127 [XNIO-1 task-1] y1YJiEwwQ3Wyi4vQilMXmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.127 [XNIO-1 task-1] y1YJiEwwQ3Wyi4vQilMXmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.128 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:38560e1b-d38d-4c02-8f2b-42d8e5ef71f0 +20:00:46.128 [XNIO-1 task-1] y1YJiEwwQ3Wyi4vQilMXmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.143 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bd655b83 +20:00:46.146 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bd655b83 +20:00:46.151 [XNIO-1 task-1] 1c0pdY8YQcyhpj5JI34wuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.151 [XNIO-1 task-1] 1c0pdY8YQcyhpj5JI34wuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.151 [XNIO-1 task-1] 1c0pdY8YQcyhpj5JI34wuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.151 [XNIO-1 task-1] 1c0pdY8YQcyhpj5JI34wuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.152 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2f0a4432 +20:00:46.154 [XNIO-1 task-1] 1c0pdY8YQcyhpj5JI34wuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.161 [XNIO-1 task-1] _HyOoU9MS0ewXjgWUmZcKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.161 [XNIO-1 task-1] _HyOoU9MS0ewXjgWUmZcKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.161 [XNIO-1 task-1] _HyOoU9MS0ewXjgWUmZcKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.162 [XNIO-1 task-1] _HyOoU9MS0ewXjgWUmZcKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.162 [XNIO-1 task-1] _HyOoU9MS0ewXjgWUmZcKA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.171 [XNIO-1 task-1] S70TMXjKQi6DnldziiI7Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.172 [XNIO-1 task-1] S70TMXjKQi6DnldziiI7Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.172 [XNIO-1 task-1] S70TMXjKQi6DnldziiI7Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.173 [XNIO-1 task-1] S70TMXjKQi6DnldziiI7Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.175 [XNIO-1 task-1] S70TMXjKQi6DnldziiI7Sg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.183 [XNIO-1 task-1] 4qeh_XOhRL2bTmf7_p98pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.183 [XNIO-1 task-1] 4qeh_XOhRL2bTmf7_p98pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.183 [XNIO-1 task-1] 4qeh_XOhRL2bTmf7_p98pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.183 [XNIO-1 task-1] 4qeh_XOhRL2bTmf7_p98pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.184 [XNIO-1 task-1] 4qeh_XOhRL2bTmf7_p98pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:46.185 [XNIO-1 task-1] 4qeh_XOhRL2bTmf7_p98pQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:46.195 [XNIO-1 task-1] iZurTyxXSjqDlsaZmIe63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.198 [XNIO-1 task-1] iZurTyxXSjqDlsaZmIe63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.198 [XNIO-1 task-1] iZurTyxXSjqDlsaZmIe63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.199 [XNIO-1 task-1] iZurTyxXSjqDlsaZmIe63A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.200 [XNIO-1 task-1] iZurTyxXSjqDlsaZmIe63A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.206 [XNIO-1 task-1] 3xJYQwc_T52UbwVfLEwQKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.206 [XNIO-1 task-1] 3xJYQwc_T52UbwVfLEwQKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.206 [XNIO-1 task-1] 3xJYQwc_T52UbwVfLEwQKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.206 [XNIO-1 task-1] 3xJYQwc_T52UbwVfLEwQKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.207 [XNIO-1 task-1] 3xJYQwc_T52UbwVfLEwQKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.225 [XNIO-1 task-1] fpoS4xUXSjyFS6d3bW5VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.225 [XNIO-1 task-1] fpoS4xUXSjyFS6d3bW5VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.226 [XNIO-1 task-1] fpoS4xUXSjyFS6d3bW5VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.226 [XNIO-1 task-1] fpoS4xUXSjyFS6d3bW5VOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.226 [XNIO-1 task-1] fpoS4xUXSjyFS6d3bW5VOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.236 [XNIO-1 task-1] PZhLHgOqRsqBHVfnHJYOPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/e71ebff1-2a7d-4a56-b45f-5acdffb0d87c, base path is set to: null +Jun 28, 2024 8:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +20:00:46.238 [XNIO-1 task-1] PZhLHgOqRsqBHVfnHJYOPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +20:00:46.251 [XNIO-1 task-1] mnNrgjHARy6u7qlusvkZPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.252 [XNIO-1 task-1] mnNrgjHARy6u7qlusvkZPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.252 [XNIO-1 task-1] mnNrgjHARy6u7qlusvkZPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.253 [XNIO-1 task-1] mnNrgjHARy6u7qlusvkZPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.253 [XNIO-1 task-1] mnNrgjHARy6u7qlusvkZPw DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.254 [XNIO-1 task-1] mnNrgjHARy6u7qlusvkZPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 is not found.","severity":"ERROR"} +20:00:46.262 [XNIO-1 task-1] Iwa6muBlSLCQare2hJ3MyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.262 [XNIO-1 task-1] Iwa6muBlSLCQare2hJ3MyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.262 [XNIO-1 task-1] Iwa6muBlSLCQare2hJ3MyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.263 [XNIO-1 task-1] Iwa6muBlSLCQare2hJ3MyQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.271 [XNIO-1 task-1] cr3AbnfaTFCasmTHo_T1YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.272 [XNIO-1 task-1] cr3AbnfaTFCasmTHo_T1YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.272 [XNIO-1 task-1] cr3AbnfaTFCasmTHo_T1YQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.272 [XNIO-1 task-1] cr3AbnfaTFCasmTHo_T1YQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.272 [XNIO-1 task-1] cr3AbnfaTFCasmTHo_T1YQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.273 [XNIO-1 task-1] cr3AbnfaTFCasmTHo_T1YQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 is not found.","severity":"ERROR"} +20:00:46.276 [XNIO-1 task-1] fwX0fQlfTOmXF6Uegypjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:46.276 [XNIO-1 task-1] fwX0fQlfTOmXF6Uegypjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.278 [XNIO-1 task-1] fwX0fQlfTOmXF6Uegypjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.278 [XNIO-1 task-1] fwX0fQlfTOmXF6Uegypjpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:46.278 [XNIO-1 task-1] fwX0fQlfTOmXF6Uegypjpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:46.288 [XNIO-1 task-1] 0J5ieRhASde9nu7mlE1ruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.288 [XNIO-1 task-1] 0J5ieRhASde9nu7mlE1ruA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.288 [XNIO-1 task-1] 0J5ieRhASde9nu7mlE1ruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.288 [XNIO-1 task-1] 0J5ieRhASde9nu7mlE1ruA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.289 [XNIO-1 task-1] 0J5ieRhASde9nu7mlE1ruA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.295 [XNIO-1 task-1] YsVWXW2lTniymIPZl0iVlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:46.295 [XNIO-1 task-1] YsVWXW2lTniymIPZl0iVlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.295 [XNIO-1 task-1] YsVWXW2lTniymIPZl0iVlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.296 [XNIO-1 task-1] YsVWXW2lTniymIPZl0iVlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:46.296 [XNIO-1 task-1] YsVWXW2lTniymIPZl0iVlw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:46.302 [XNIO-1 task-1] haoqpov-SQOqNLG4rjrklA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.303 [XNIO-1 task-1] haoqpov-SQOqNLG4rjrklA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.303 [XNIO-1 task-1] haoqpov-SQOqNLG4rjrklA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.303 [XNIO-1 task-1] haoqpov-SQOqNLG4rjrklA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.303 [XNIO-1 task-1] haoqpov-SQOqNLG4rjrklA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.314 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:46.316 [XNIO-1 task-1] VSlUSnMjSqm8FhsHSIY03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.316 [XNIO-1 task-1] VSlUSnMjSqm8FhsHSIY03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.316 [XNIO-1 task-1] VSlUSnMjSqm8FhsHSIY03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.316 [XNIO-1 task-1] VSlUSnMjSqm8FhsHSIY03g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.317 [XNIO-1 task-1] VSlUSnMjSqm8FhsHSIY03g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.320 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2f0a4432 +20:00:46.332 [XNIO-1 task-1] rDtFIad9TOKscORbh9P3Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544 +20:00:46.332 [XNIO-1 task-1] rDtFIad9TOKscORbh9P3Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.334 [XNIO-1 task-1] rDtFIad9TOKscORbh9P3Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.334 [XNIO-1 task-1] rDtFIad9TOKscORbh9P3Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544 +20:00:46.334 [XNIO-1 task-1] rDtFIad9TOKscORbh9P3Xw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3ebd7513-cc1e-439b-ab9c-845bfa553544 +20:00:46.342 [XNIO-1 task-1] DEBLKcDkSYaAriIn82mDMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.342 [XNIO-1 task-1] DEBLKcDkSYaAriIn82mDMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.343 [XNIO-1 task-1] DEBLKcDkSYaAriIn82mDMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.344 [XNIO-1 task-1] DEBLKcDkSYaAriIn82mDMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.356 [XNIO-1 task-1] 3TkhMYGhStmWeVtGmWJB6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.356 [XNIO-1 task-1] 3TkhMYGhStmWeVtGmWJB6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.356 [XNIO-1 task-1] 3TkhMYGhStmWeVtGmWJB6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.357 [XNIO-1 task-1] 3TkhMYGhStmWeVtGmWJB6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f554b35a-6c31-4de0-8bc7-6a0653dc2ad4, base path is set to: null +20:00:46.357 [XNIO-1 task-1] 3TkhMYGhStmWeVtGmWJB6A DEBUG com.networknt.schema.TypeValidator debug - validate( "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", "f554b35a-6c31-4de0-8bc7-6a0653dc2ad4", refreshToken) +20:00:46.358 [XNIO-1 task-1] 3TkhMYGhStmWeVtGmWJB6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 is not found.","severity":"ERROR"} +20:00:46.363 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dc5cf085 +20:00:46.366 [XNIO-1 task-1] J7iByBgeR72xGEg6sFOGdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.366 [XNIO-1 task-1] J7iByBgeR72xGEg6sFOGdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.366 [XNIO-1 task-1] J7iByBgeR72xGEg6sFOGdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.366 [XNIO-1 task-1] J7iByBgeR72xGEg6sFOGdg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.367 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2f0a4432 +20:00:46.374 [XNIO-1 task-1] XTBgagDGQ_S9cGHeFuZhZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.374 [XNIO-1 task-1] XTBgagDGQ_S9cGHeFuZhZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.374 [XNIO-1 task-1] XTBgagDGQ_S9cGHeFuZhZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.375 [XNIO-1 task-1] XTBgagDGQ_S9cGHeFuZhZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.375 [XNIO-1 task-1] XTBgagDGQ_S9cGHeFuZhZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.387 [XNIO-1 task-1] EQMp3ROmRZepbsQsiU5Lqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.387 [XNIO-1 task-1] EQMp3ROmRZepbsQsiU5Lqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.387 [XNIO-1 task-1] EQMp3ROmRZepbsQsiU5Lqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.387 [XNIO-1 task-1] EQMp3ROmRZepbsQsiU5Lqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.387 [XNIO-1 task-1] EQMp3ROmRZepbsQsiU5Lqw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.396 [XNIO-1 task-1] gLT2Pmw7RhewyJSBi8_P2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.396 [XNIO-1 task-1] gLT2Pmw7RhewyJSBi8_P2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.396 [XNIO-1 task-1] gLT2Pmw7RhewyJSBi8_P2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.396 [XNIO-1 task-1] gLT2Pmw7RhewyJSBi8_P2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.396 [XNIO-1 task-1] gLT2Pmw7RhewyJSBi8_P2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", refreshToken) +20:00:46.401 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:84d843ce +20:00:46.403 [XNIO-1 task-1] RBrIa9qLSzOtzNKGSDNLbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.403 [XNIO-1 task-1] RBrIa9qLSzOtzNKGSDNLbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.403 [XNIO-1 task-1] RBrIa9qLSzOtzNKGSDNLbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.404 [XNIO-1 task-1] RBrIa9qLSzOtzNKGSDNLbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.404 [XNIO-1 task-1] RBrIa9qLSzOtzNKGSDNLbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", refreshToken) +20:00:46.407 [XNIO-1 task-1] 68dRzxXgTL6dYHaRbNj_Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.408 [XNIO-1 task-1] 68dRzxXgTL6dYHaRbNj_Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.408 [XNIO-1 task-1] 68dRzxXgTL6dYHaRbNj_Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.408 [XNIO-1 task-1] 68dRzxXgTL6dYHaRbNj_Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.408 [XNIO-1 task-1] 68dRzxXgTL6dYHaRbNj_Fw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.419 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bd655b83 +20:00:46.429 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:84d843ce +20:00:46.443 [XNIO-1 task-1] jsXJwkl1SGSU2GQ6WKaZEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.443 [XNIO-1 task-1] jsXJwkl1SGSU2GQ6WKaZEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.443 [XNIO-1 task-1] jsXJwkl1SGSU2GQ6WKaZEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.443 [XNIO-1 task-1] jsXJwkl1SGSU2GQ6WKaZEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.443 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:84d843ce +20:00:46.455 [XNIO-1 task-1] 2Y60xWmjTCyU4qT4LA7EHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.455 [XNIO-1 task-1] 2Y60xWmjTCyU4qT4LA7EHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.455 [XNIO-1 task-1] 2Y60xWmjTCyU4qT4LA7EHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.456 [XNIO-1 task-1] 2Y60xWmjTCyU4qT4LA7EHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.456 [XNIO-1 task-1] 2Y60xWmjTCyU4qT4LA7EHw DEBUG com.networknt.schema.TypeValidator debug - validate( "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", refreshToken) +20:00:46.463 [XNIO-1 task-1] v6Jqb0jXQ1qzawteaLVtmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.464 [XNIO-1 task-1] v6Jqb0jXQ1qzawteaLVtmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.464 [XNIO-1 task-1] v6Jqb0jXQ1qzawteaLVtmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.464 [XNIO-1 task-1] v6Jqb0jXQ1qzawteaLVtmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.464 [XNIO-1 task-1] v6Jqb0jXQ1qzawteaLVtmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", refreshToken) +20:00:46.471 [XNIO-1 task-1] tzcAL0GDQvCtE9UGZDby3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.472 [XNIO-1 task-1] tzcAL0GDQvCtE9UGZDby3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.472 [XNIO-1 task-1] tzcAL0GDQvCtE9UGZDby3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.472 [XNIO-1 task-1] tzcAL0GDQvCtE9UGZDby3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.473 [XNIO-1 task-1] tzcAL0GDQvCtE9UGZDby3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", refreshToken) +20:00:46.487 [XNIO-1 task-1] fWD7nfbPS5OCp7zchfU-_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.487 [XNIO-1 task-1] fWD7nfbPS5OCp7zchfU-_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.487 [XNIO-1 task-1] fWD7nfbPS5OCp7zchfU-_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.487 [XNIO-1 task-1] fWD7nfbPS5OCp7zchfU-_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.488 [XNIO-1 task-1] fWD7nfbPS5OCp7zchfU-_g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.497 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:84d843ce +20:00:46.498 [XNIO-1 task-1] yenhacqEScqpQAZetlNVHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.498 [XNIO-1 task-1] yenhacqEScqpQAZetlNVHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.498 [XNIO-1 task-1] yenhacqEScqpQAZetlNVHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.499 [XNIO-1 task-1] yenhacqEScqpQAZetlNVHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.499 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:060100b1-f9ef-4379-8294-40f6fc1ee58e +20:00:46.510 [XNIO-1 task-1] HEJ2ua3dTheILvxs7KYmqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.510 [XNIO-1 task-1] HEJ2ua3dTheILvxs7KYmqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.510 [XNIO-1 task-1] HEJ2ua3dTheILvxs7KYmqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.511 [XNIO-1 task-1] HEJ2ua3dTheILvxs7KYmqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.511 [XNIO-1 task-1] HEJ2ua3dTheILvxs7KYmqA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.513 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f74db908 +20:00:46.516 [XNIO-1 task-1] fQrW9QVCTyixfLfjLktObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.516 [XNIO-1 task-1] fQrW9QVCTyixfLfjLktObQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.516 [XNIO-1 task-1] fQrW9QVCTyixfLfjLktObQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.517 [XNIO-1 task-1] fQrW9QVCTyixfLfjLktObQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.518 [XNIO-1 task-1] fQrW9QVCTyixfLfjLktObQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.530 [XNIO-1 task-1] gJv1ZJNHQSO32UlMfa8IIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.530 [XNIO-1 task-1] gJv1ZJNHQSO32UlMfa8IIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.530 [XNIO-1 task-1] gJv1ZJNHQSO32UlMfa8IIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.531 [XNIO-1 task-1] gJv1ZJNHQSO32UlMfa8IIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.531 [XNIO-1 task-1] gJv1ZJNHQSO32UlMfa8IIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.539 [XNIO-1 task-1] l_f_gWb6TXK4Is2mIfMCsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.539 [XNIO-1 task-1] l_f_gWb6TXK4Is2mIfMCsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.539 [XNIO-1 task-1] l_f_gWb6TXK4Is2mIfMCsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.539 [XNIO-1 task-1] l_f_gWb6TXK4Is2mIfMCsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.540 [XNIO-1 task-1] l_f_gWb6TXK4Is2mIfMCsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", refreshToken) +20:00:46.540 [XNIO-1 task-1] l_f_gWb6TXK4Is2mIfMCsw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 is not found.","severity":"ERROR"} +20:00:46.548 [XNIO-1 task-1] pF8USInMTZKxKgO3AwQoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.548 [XNIO-1 task-1] pF8USInMTZKxKgO3AwQoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.548 [XNIO-1 task-1] pF8USInMTZKxKgO3AwQoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.548 [XNIO-1 task-1] pF8USInMTZKxKgO3AwQoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.549 [XNIO-1 task-1] pF8USInMTZKxKgO3AwQoAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.554 [XNIO-1 task-1] tb9kSVbJSFycMzzx-FvnSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.554 [XNIO-1 task-1] tb9kSVbJSFycMzzx-FvnSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.554 [XNIO-1 task-1] tb9kSVbJSFycMzzx-FvnSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.554 [XNIO-1 task-1] tb9kSVbJSFycMzzx-FvnSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658, base path is set to: null +20:00:46.555 [XNIO-1 task-1] tb9kSVbJSFycMzzx-FvnSg DEBUG com.networknt.schema.TypeValidator debug - validate( "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", "1ea07bc0-1cbb-4aed-9d5f-4c9410f80658", refreshToken) +20:00:46.555 [XNIO-1 task-1] tb9kSVbJSFycMzzx-FvnSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 is not found.","severity":"ERROR"} +20:00:46.567 [XNIO-1 task-1] FZ5pG32NRSK9L5UbJVJc4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.567 [XNIO-1 task-1] FZ5pG32NRSK9L5UbJVJc4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.567 [XNIO-1 task-1] FZ5pG32NRSK9L5UbJVJc4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.568 [XNIO-1 task-1] FZ5pG32NRSK9L5UbJVJc4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.579 [XNIO-1 task-1] zCnzZoBFQri1RBQZdZn7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:46.579 [XNIO-1 task-1] zCnzZoBFQri1RBQZdZn7Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.580 [XNIO-1 task-1] zCnzZoBFQri1RBQZdZn7Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.580 [XNIO-1 task-1] zCnzZoBFQri1RBQZdZn7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:46.581 [XNIO-1 task-1] zCnzZoBFQri1RBQZdZn7Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "28328327-fd23-4ffd-b39b-b738adeeca4b", "28328327-fd23-4ffd-b39b-b738adeeca4b", refreshToken) +20:00:46.603 [XNIO-1 task-1] XxzRRsaFQxCsrcDmG7yHoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.603 [XNIO-1 task-1] XxzRRsaFQxCsrcDmG7yHoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.603 [XNIO-1 task-1] XxzRRsaFQxCsrcDmG7yHoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.603 [XNIO-1 task-1] XxzRRsaFQxCsrcDmG7yHoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.604 [XNIO-1 task-1] XxzRRsaFQxCsrcDmG7yHoQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.614 [XNIO-1 task-1] 8heFJuT3TlGP2GX1GKN7Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.615 [XNIO-1 task-1] 8heFJuT3TlGP2GX1GKN7Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.615 [XNIO-1 task-1] 8heFJuT3TlGP2GX1GKN7Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.615 [XNIO-1 task-1] 8heFJuT3TlGP2GX1GKN7Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.615 [XNIO-1 task-1] 8heFJuT3TlGP2GX1GKN7Qw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.622 [XNIO-1 task-1] CquBfeJGTQuE4_r4L_febw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:46.622 [XNIO-1 task-1] CquBfeJGTQuE4_r4L_febw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.622 [XNIO-1 task-1] CquBfeJGTQuE4_r4L_febw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.622 [XNIO-1 task-1] CquBfeJGTQuE4_r4L_febw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:46.623 [XNIO-1 task-1] CquBfeJGTQuE4_r4L_febw DEBUG com.networknt.schema.TypeValidator debug - validate( "28328327-fd23-4ffd-b39b-b738adeeca4b", "28328327-fd23-4ffd-b39b-b738adeeca4b", refreshToken) +20:00:46.623 [XNIO-1 task-1] CquBfeJGTQuE4_r4L_febw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28328327-fd23-4ffd-b39b-b738adeeca4b is not found.","severity":"ERROR"} +20:00:46.627 [XNIO-1 task-1] 2-oy7pCJThWMp-8gJB2T1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.627 [XNIO-1 task-1] 2-oy7pCJThWMp-8gJB2T1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.627 [XNIO-1 task-1] 2-oy7pCJThWMp-8gJB2T1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.627 [XNIO-1 task-1] 2-oy7pCJThWMp-8gJB2T1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.627 [XNIO-1 task-1] 2-oy7pCJThWMp-8gJB2T1g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.631 [XNIO-1 task-1] gBT0zO_yQoCZ1yhPVwznjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.631 [XNIO-1 task-1] gBT0zO_yQoCZ1yhPVwznjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.631 [XNIO-1 task-1] gBT0zO_yQoCZ1yhPVwznjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.632 [XNIO-1 task-1] gBT0zO_yQoCZ1yhPVwznjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.632 [XNIO-1 task-1] gBT0zO_yQoCZ1yhPVwznjQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.640 [XNIO-1 task-1] qyVK8zsqRPaXyu329AE_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.641 [XNIO-1 task-1] qyVK8zsqRPaXyu329AE_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.641 [XNIO-1 task-1] qyVK8zsqRPaXyu329AE_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.641 [XNIO-1 task-1] qyVK8zsqRPaXyu329AE_0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.641 [XNIO-1 task-1] qyVK8zsqRPaXyu329AE_0w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.652 [XNIO-1 task-1] 2dc_la_ASBu5k8GSNOLsig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:46.653 [XNIO-1 task-1] 2dc_la_ASBu5k8GSNOLsig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.653 [XNIO-1 task-1] 2dc_la_ASBu5k8GSNOLsig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.653 [XNIO-1 task-1] 2dc_la_ASBu5k8GSNOLsig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:46.653 [XNIO-1 task-1] 2dc_la_ASBu5k8GSNOLsig DEBUG com.networknt.schema.TypeValidator debug - validate( "28328327-fd23-4ffd-b39b-b738adeeca4b", "28328327-fd23-4ffd-b39b-b738adeeca4b", refreshToken) +20:00:46.654 [XNIO-1 task-1] 2dc_la_ASBu5k8GSNOLsig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28328327-fd23-4ffd-b39b-b738adeeca4b is not found.","severity":"ERROR"} +20:00:46.657 [XNIO-1 task-1] -wCk5jaTRw6mbCLAj4CAfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.657 [XNIO-1 task-1] -wCk5jaTRw6mbCLAj4CAfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.658 [XNIO-1 task-1] -wCk5jaTRw6mbCLAj4CAfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.658 [XNIO-1 task-1] -wCk5jaTRw6mbCLAj4CAfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.659 [XNIO-1 task-1] -wCk5jaTRw6mbCLAj4CAfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.664 [XNIO-1 task-1] tkcCgV9dSo6R1dHF-tlgrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.664 [XNIO-1 task-1] tkcCgV9dSo6R1dHF-tlgrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.665 [XNIO-1 task-1] tkcCgV9dSo6R1dHF-tlgrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.665 [XNIO-1 task-1] tkcCgV9dSo6R1dHF-tlgrw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.665 [XNIO-1 task-1] tkcCgV9dSo6R1dHF-tlgrw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.676 [XNIO-1 task-1] mwqDnlfZRcOg42eXUzDlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.676 [XNIO-1 task-1] mwqDnlfZRcOg42eXUzDlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.676 [XNIO-1 task-1] mwqDnlfZRcOg42eXUzDlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.679 [XNIO-1 task-1] mwqDnlfZRcOg42eXUzDlXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.679 [XNIO-1 task-1] mwqDnlfZRcOg42eXUzDlXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.680 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:01724418-f972-4c8a-b00f-bf6f8bc8330c +20:00:46.683 [XNIO-1 task-1] 4U7t4qLRRwyu0ZrLGdfG7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.684 [XNIO-1 task-1] 4U7t4qLRRwyu0ZrLGdfG7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.684 [XNIO-1 task-1] 4U7t4qLRRwyu0ZrLGdfG7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.684 [XNIO-1 task-1] 4U7t4qLRRwyu0ZrLGdfG7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.684 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:01724418-f972-4c8a-b00f-bf6f8bc8330c +20:00:46.684 [XNIO-1 task-1] 4U7t4qLRRwyu0ZrLGdfG7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.686 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dc5cf085 +20:00:46.687 [XNIO-1 task-1] 5zKMkhyGTZWYktBpgFoVJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35d1e514-b0a5-447f-a32a-c896ed2b1a9c, base path is set to: null +20:00:46.687 [XNIO-1 task-1] 5zKMkhyGTZWYktBpgFoVJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.688 [XNIO-1 task-1] 5zKMkhyGTZWYktBpgFoVJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.688 [XNIO-1 task-1] 5zKMkhyGTZWYktBpgFoVJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35d1e514-b0a5-447f-a32a-c896ed2b1a9c, base path is set to: null +20:00:46.688 [XNIO-1 task-1] 5zKMkhyGTZWYktBpgFoVJA DEBUG com.networknt.schema.TypeValidator debug - validate( "35d1e514-b0a5-447f-a32a-c896ed2b1a9c", "35d1e514-b0a5-447f-a32a-c896ed2b1a9c", refreshToken) +20:00:46.705 [XNIO-1 task-1] 60U1pTL_SZmQJHCL5lCTow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.705 [XNIO-1 task-1] 60U1pTL_SZmQJHCL5lCTow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.705 [XNIO-1 task-1] 60U1pTL_SZmQJHCL5lCTow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.705 [XNIO-1 task-1] 60U1pTL_SZmQJHCL5lCTow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.706 [XNIO-1 task-1] 60U1pTL_SZmQJHCL5lCTow DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.717 [XNIO-1 task-1] cAn23IYFRVOH7idHkzGjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.717 [XNIO-1 task-1] cAn23IYFRVOH7idHkzGjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.717 [XNIO-1 task-1] cAn23IYFRVOH7idHkzGjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.717 [XNIO-1 task-1] cAn23IYFRVOH7idHkzGjhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.718 [XNIO-1 task-1] cAn23IYFRVOH7idHkzGjhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.721 [XNIO-1 task-1] G3avAd0WRySsCcTGaMe-KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35d1e514-b0a5-447f-a32a-c896ed2b1a9c, base path is set to: null +20:00:46.721 [XNIO-1 task-1] G3avAd0WRySsCcTGaMe-KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.721 [XNIO-1 task-1] G3avAd0WRySsCcTGaMe-KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.722 [XNIO-1 task-1] G3avAd0WRySsCcTGaMe-KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/35d1e514-b0a5-447f-a32a-c896ed2b1a9c, base path is set to: null +20:00:46.722 [XNIO-1 task-1] G3avAd0WRySsCcTGaMe-KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "35d1e514-b0a5-447f-a32a-c896ed2b1a9c", "35d1e514-b0a5-447f-a32a-c896ed2b1a9c", refreshToken) +20:00:46.724 [XNIO-1 task-1] G3avAd0WRySsCcTGaMe-KQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 35d1e514-b0a5-447f-a32a-c896ed2b1a9c is not found.","severity":"ERROR"} +20:00:46.733 [XNIO-1 task-1] 6eY0peayQByLuhT7U74ksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.734 [XNIO-1 task-1] 6eY0peayQByLuhT7U74ksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.734 [XNIO-1 task-1] 6eY0peayQByLuhT7U74ksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.734 [XNIO-1 task-1] 6eY0peayQByLuhT7U74ksQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.734 [XNIO-1 task-1] 6eY0peayQByLuhT7U74ksQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.737 [XNIO-1 task-1] LLJLSgsyQnKKkCJVhJtKUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.738 [XNIO-1 task-1] LLJLSgsyQnKKkCJVhJtKUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.738 [XNIO-1 task-1] LLJLSgsyQnKKkCJVhJtKUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.738 [XNIO-1 task-1] LLJLSgsyQnKKkCJVhJtKUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.739 [XNIO-1 task-1] LLJLSgsyQnKKkCJVhJtKUg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.751 [XNIO-1 task-1] KuRsrDvnTBeEzhXibgPWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.751 [XNIO-1 task-1] KuRsrDvnTBeEzhXibgPWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.751 [XNIO-1 task-1] KuRsrDvnTBeEzhXibgPWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.751 [XNIO-1 task-1] KuRsrDvnTBeEzhXibgPWEg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.761 [XNIO-1 task-1] qjM0DuUvTHSGxgDeXDFIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.761 [XNIO-1 task-1] qjM0DuUvTHSGxgDeXDFIXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.761 [XNIO-1 task-1] qjM0DuUvTHSGxgDeXDFIXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.762 [XNIO-1 task-1] qjM0DuUvTHSGxgDeXDFIXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.762 [XNIO-1 task-1] qjM0DuUvTHSGxgDeXDFIXA DEBUG com.networknt.schema.TypeValidator debug - validate( "f39f1299-0cc6-4653-85a2-132bf26f7a86", "f39f1299-0cc6-4653-85a2-132bf26f7a86", refreshToken) +20:00:46.763 [XNIO-1 task-1] qjM0DuUvTHSGxgDeXDFIXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f39f1299-0cc6-4653-85a2-132bf26f7a86 is not found.","severity":"ERROR"} +20:00:46.766 [XNIO-1 task-1] 4i0DKPT5T76FFSvZfzikwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.766 [XNIO-1 task-1] 4i0DKPT5T76FFSvZfzikwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.766 [XNIO-1 task-1] 4i0DKPT5T76FFSvZfzikwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.766 [XNIO-1 task-1] 4i0DKPT5T76FFSvZfzikwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.766 [XNIO-1 task-1] 4i0DKPT5T76FFSvZfzikwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.769 [XNIO-1 task-1] CXgQ9enPQgSneJlg4F_3vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.769 [XNIO-1 task-1] CXgQ9enPQgSneJlg4F_3vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.769 [XNIO-1 task-1] CXgQ9enPQgSneJlg4F_3vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.770 [XNIO-1 task-1] CXgQ9enPQgSneJlg4F_3vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.770 [XNIO-1 task-1] CXgQ9enPQgSneJlg4F_3vg DEBUG com.networknt.schema.TypeValidator debug - validate( "f39f1299-0cc6-4653-85a2-132bf26f7a86", "f39f1299-0cc6-4653-85a2-132bf26f7a86", refreshToken) +20:00:46.770 [XNIO-1 task-1] CXgQ9enPQgSneJlg4F_3vg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f39f1299-0cc6-4653-85a2-132bf26f7a86 is not found.","severity":"ERROR"} +20:00:46.773 [XNIO-1 task-1] XYWVL0z4SI-_2GJABpl-hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.773 [XNIO-1 task-1] XYWVL0z4SI-_2GJABpl-hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.773 [XNIO-1 task-1] XYWVL0z4SI-_2GJABpl-hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.774 [XNIO-1 task-1] XYWVL0z4SI-_2GJABpl-hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.775 [XNIO-1 task-1] XYWVL0z4SI-_2GJABpl-hw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.785 [XNIO-1 task-1] Xtf9yluvRlq_r-WGu1bSSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.785 [XNIO-1 task-1] Xtf9yluvRlq_r-WGu1bSSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.785 [XNIO-1 task-1] Xtf9yluvRlq_r-WGu1bSSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.785 [XNIO-1 task-1] Xtf9yluvRlq_r-WGu1bSSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.786 [XNIO-1 task-1] Xtf9yluvRlq_r-WGu1bSSg DEBUG com.networknt.schema.TypeValidator debug - validate( "f39f1299-0cc6-4653-85a2-132bf26f7a86", "f39f1299-0cc6-4653-85a2-132bf26f7a86", refreshToken) +20:00:46.786 [XNIO-1 task-1] Xtf9yluvRlq_r-WGu1bSSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f39f1299-0cc6-4653-85a2-132bf26f7a86 is not found.","severity":"ERROR"} +20:00:46.789 [XNIO-1 task-1] nkQj3I04RpuhsED42FYtQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.790 [XNIO-1 task-1] nkQj3I04RpuhsED42FYtQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.790 [XNIO-1 task-1] nkQj3I04RpuhsED42FYtQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.790 [XNIO-1 task-1] nkQj3I04RpuhsED42FYtQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.791 [XNIO-1 task-1] nkQj3I04RpuhsED42FYtQg DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:46.791 [XNIO-1 task-1] nkQj3I04RpuhsED42FYtQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:46.793 [XNIO-1 task-1] yKjT6puNQYWO3xLdZH2gZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.793 [XNIO-1 task-1] yKjT6puNQYWO3xLdZH2gZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.793 [XNIO-1 task-1] yKjT6puNQYWO3xLdZH2gZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.794 [XNIO-1 task-1] yKjT6puNQYWO3xLdZH2gZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.820 [XNIO-1 task-1] wtDxlMS6S7iatOUzCubUgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.820 [XNIO-1 task-1] wtDxlMS6S7iatOUzCubUgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.820 [XNIO-1 task-1] wtDxlMS6S7iatOUzCubUgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.820 [XNIO-1 task-1] wtDxlMS6S7iatOUzCubUgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.821 [XNIO-1 task-1] wtDxlMS6S7iatOUzCubUgw DEBUG com.networknt.schema.TypeValidator debug - validate( "f39f1299-0cc6-4653-85a2-132bf26f7a86", "f39f1299-0cc6-4653-85a2-132bf26f7a86", refreshToken) +20:00:46.821 [XNIO-1 task-1] wtDxlMS6S7iatOUzCubUgw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f39f1299-0cc6-4653-85a2-132bf26f7a86 is not found.","severity":"ERROR"} +20:00:46.825 [XNIO-1 task-1] T6Mmtb_CRbOoH5Tb7RuWEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.825 [XNIO-1 task-1] T6Mmtb_CRbOoH5Tb7RuWEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.825 [XNIO-1 task-1] T6Mmtb_CRbOoH5Tb7RuWEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.825 [XNIO-1 task-1] T6Mmtb_CRbOoH5Tb7RuWEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.826 [XNIO-1 task-1] T6Mmtb_CRbOoH5Tb7RuWEA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f39f1299-0cc6-4653-85a2-132bf26f7a86 +20:00:46.831 [XNIO-1 task-1] ILOJHM-5SD-A5i8GJBOsZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.832 [XNIO-1 task-1] ILOJHM-5SD-A5i8GJBOsZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.832 [XNIO-1 task-1] ILOJHM-5SD-A5i8GJBOsZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.833 [XNIO-1 task-1] ILOJHM-5SD-A5i8GJBOsZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f39f1299-0cc6-4653-85a2-132bf26f7a86, base path is set to: null +20:00:46.835 [XNIO-1 task-1] ILOJHM-5SD-A5i8GJBOsZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f39f1299-0cc6-4653-85a2-132bf26f7a86", "f39f1299-0cc6-4653-85a2-132bf26f7a86", refreshToken) +20:00:46.835 [XNIO-1 task-1] ILOJHM-5SD-A5i8GJBOsZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f39f1299-0cc6-4653-85a2-132bf26f7a86 is not found.","severity":"ERROR"} +20:00:46.840 [XNIO-1 task-1] IKDUUHMCT1SxdtTpFrDCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.841 [XNIO-1 task-1] IKDUUHMCT1SxdtTpFrDCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.842 [XNIO-1 task-1] IKDUUHMCT1SxdtTpFrDCmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.842 [XNIO-1 task-1] IKDUUHMCT1SxdtTpFrDCmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.862 [XNIO-1 task-1] qK9fBXdnSh-ovcO-WxUMbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.862 [XNIO-1 task-1] qK9fBXdnSh-ovcO-WxUMbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.862 [XNIO-1 task-1] qK9fBXdnSh-ovcO-WxUMbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.863 [XNIO-1 task-1] qK9fBXdnSh-ovcO-WxUMbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:46.863 [XNIO-1 task-1] qK9fBXdnSh-ovcO-WxUMbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:46.864 [XNIO-1 task-1] qK9fBXdnSh-ovcO-WxUMbQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:46.871 [XNIO-1 task-1] oWPbv_ZPQeuzGwwSTLjARg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.871 [XNIO-1 task-1] oWPbv_ZPQeuzGwwSTLjARg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.872 [XNIO-1 task-1] oWPbv_ZPQeuzGwwSTLjARg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.872 [XNIO-1 task-1] oWPbv_ZPQeuzGwwSTLjARg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.881 [XNIO-1 task-1] cG9kWbsdTlSIFjsDWLtRAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.882 [XNIO-1 task-1] cG9kWbsdTlSIFjsDWLtRAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.882 [XNIO-1 task-1] cG9kWbsdTlSIFjsDWLtRAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.883 [XNIO-1 task-1] cG9kWbsdTlSIFjsDWLtRAA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.883 [XNIO-1 task-1] cG9kWbsdTlSIFjsDWLtRAA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.892 [XNIO-1 task-1] KNDRjpKtT-ipCgPTjS15vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d +20:00:46.892 [XNIO-1 task-1] KNDRjpKtT-ipCgPTjS15vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.892 [XNIO-1 task-1] KNDRjpKtT-ipCgPTjS15vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.892 [XNIO-1 task-1] KNDRjpKtT-ipCgPTjS15vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d +20:00:46.892 [XNIO-1 task-1] KNDRjpKtT-ipCgPTjS15vA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5d123a29-6552-4b47-aba9-17d0e0ad152d +20:00:46.900 [XNIO-1 task-1] wvWZCY5LQS6op0PwLDsOrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.900 [XNIO-1 task-1] wvWZCY5LQS6op0PwLDsOrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.901 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:511d3e59 +20:00:46.901 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:511d3e59 +20:00:46.901 [XNIO-1 task-1] wvWZCY5LQS6op0PwLDsOrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.902 [XNIO-1 task-1] wvWZCY5LQS6op0PwLDsOrQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.927 [XNIO-1 task-1] 0RUj7cwEQoiQPpT2PIjHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.927 [XNIO-1 task-1] 0RUj7cwEQoiQPpT2PIjHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.933 [XNIO-1 task-1] 0RUj7cwEQoiQPpT2PIjHDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.934 [XNIO-1 task-1] 0RUj7cwEQoiQPpT2PIjHDg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.946 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:46.947 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:46.951 [XNIO-1 task-1] _sGVV0joREGqqR6cHxWWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.951 [XNIO-1 task-1] _sGVV0joREGqqR6cHxWWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.951 [XNIO-1 task-1] _sGVV0joREGqqR6cHxWWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.951 [XNIO-1 task-1] _sGVV0joREGqqR6cHxWWGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.951 [XNIO-1 task-1] _sGVV0joREGqqR6cHxWWGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:46.956 [XNIO-1 task-1] rQf7t_kaSQyxB50fLhOidA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d, base path is set to: null +20:00:46.957 [XNIO-1 task-1] rQf7t_kaSQyxB50fLhOidA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.957 [XNIO-1 task-1] rQf7t_kaSQyxB50fLhOidA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:46.957 [XNIO-1 task-1] rQf7t_kaSQyxB50fLhOidA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d, base path is set to: null +20:00:46.957 [XNIO-1 task-1] rQf7t_kaSQyxB50fLhOidA DEBUG com.networknt.schema.TypeValidator debug - validate( "5d123a29-6552-4b47-aba9-17d0e0ad152d", "5d123a29-6552-4b47-aba9-17d0e0ad152d", refreshToken) +20:00:46.964 [XNIO-1 task-1] 5fdtg0-eRemFQ_iaPTWTtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.964 [XNIO-1 task-1] 5fdtg0-eRemFQ_iaPTWTtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:46.964 [XNIO-1 task-1] 5fdtg0-eRemFQ_iaPTWTtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:46.964 [XNIO-1 task-1] 5fdtg0-eRemFQ_iaPTWTtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.964 [XNIO-1 task-1] 5fdtg0-eRemFQ_iaPTWTtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:46.976 [XNIO-1 task-1] JKzjWrXKSsC7tIkcKo4jLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:46.977 [XNIO-1 task-1] JKzjWrXKSsC7tIkcKo4jLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.977 [XNIO-1 task-1] JKzjWrXKSsC7tIkcKo4jLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:46.977 [XNIO-1 task-1] JKzjWrXKSsC7tIkcKo4jLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:46.977 [XNIO-1 task-1] JKzjWrXKSsC7tIkcKo4jLQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:46.990 [XNIO-1 task-1] t5-IHHJySQeiqPJdZatUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.990 [XNIO-1 task-1] t5-IHHJySQeiqPJdZatUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.991 [XNIO-1 task-1] t5-IHHJySQeiqPJdZatUfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:46.991 [XNIO-1 task-1] t5-IHHJySQeiqPJdZatUfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.009 [XNIO-1 task-1] KhYzmgSaSSGOqwvqEWY1hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.010 [XNIO-1 task-1] KhYzmgSaSSGOqwvqEWY1hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.010 [XNIO-1 task-1] KhYzmgSaSSGOqwvqEWY1hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.010 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:df61a9b8-cfb9-470e-a71f-d35fa3281b6f +20:00:47.010 [XNIO-1 task-1] KhYzmgSaSSGOqwvqEWY1hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.011 [XNIO-1 task-1] KhYzmgSaSSGOqwvqEWY1hQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.024 [XNIO-1 task-1] m9vxgeTrQKaB48aTtBKH1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.024 [XNIO-1 task-1] m9vxgeTrQKaB48aTtBKH1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.025 [XNIO-1 task-1] m9vxgeTrQKaB48aTtBKH1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.025 [XNIO-1 task-1] m9vxgeTrQKaB48aTtBKH1w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.033 [XNIO-1 task-1] xMvUnrzHR9m6bS3dFFEPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:47.033 [XNIO-1 task-1] xMvUnrzHR9m6bS3dFFEPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.033 [XNIO-1 task-1] xMvUnrzHR9m6bS3dFFEPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.033 [XNIO-1 task-1] xMvUnrzHR9m6bS3dFFEPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:47.034 [XNIO-1 task-1] xMvUnrzHR9m6bS3dFFEPgA DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:47.038 [XNIO-1 task-1] xMvUnrzHR9m6bS3dFFEPgA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:47.045 [XNIO-1 task-1] _mPHZeK8RL-OYP4hcxbuMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.045 [XNIO-1 task-1] _mPHZeK8RL-OYP4hcxbuMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.045 [XNIO-1 task-1] _mPHZeK8RL-OYP4hcxbuMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.046 [XNIO-1 task-1] _mPHZeK8RL-OYP4hcxbuMA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.053 [XNIO-1 task-1] 40xJ7Yz4TAqBkaPJyO1iXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d, base path is set to: null +20:00:47.053 [XNIO-1 task-1] 40xJ7Yz4TAqBkaPJyO1iXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.053 [XNIO-1 task-1] 40xJ7Yz4TAqBkaPJyO1iXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.053 [XNIO-1 task-1] 40xJ7Yz4TAqBkaPJyO1iXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d, base path is set to: null +20:00:47.054 [XNIO-1 task-1] 40xJ7Yz4TAqBkaPJyO1iXw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d123a29-6552-4b47-aba9-17d0e0ad152d", "5d123a29-6552-4b47-aba9-17d0e0ad152d", refreshToken) +20:00:47.057 [XNIO-1 task-1] z-TGevHLQQuwXx_I3E4Krg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.057 [XNIO-1 task-1] z-TGevHLQQuwXx_I3E4Krg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.057 [XNIO-1 task-1] z-TGevHLQQuwXx_I3E4Krg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.058 [XNIO-1 task-1] z-TGevHLQQuwXx_I3E4Krg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.058 [XNIO-1 task-1] z-TGevHLQQuwXx_I3E4Krg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:47.062 [XNIO-1 task-1] z-TGevHLQQuwXx_I3E4Krg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:47.065 [XNIO-1 task-1] vEVrgwNfR0aEmLlaQFefFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:47.065 [XNIO-1 task-1] vEVrgwNfR0aEmLlaQFefFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.065 [XNIO-1 task-1] vEVrgwNfR0aEmLlaQFefFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.065 [XNIO-1 task-1] vEVrgwNfR0aEmLlaQFefFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:47.066 [XNIO-1 task-1] vEVrgwNfR0aEmLlaQFefFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:47.075 [XNIO-1 task-1] osGfgZA9Tyy8ZS-1FM1G4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d, base path is set to: null +20:00:47.075 [XNIO-1 task-1] osGfgZA9Tyy8ZS-1FM1G4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.075 [XNIO-1 task-1] osGfgZA9Tyy8ZS-1FM1G4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.075 [XNIO-1 task-1] osGfgZA9Tyy8ZS-1FM1G4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5d123a29-6552-4b47-aba9-17d0e0ad152d, base path is set to: null +20:00:47.076 [XNIO-1 task-1] osGfgZA9Tyy8ZS-1FM1G4g DEBUG com.networknt.schema.TypeValidator debug - validate( "5d123a29-6552-4b47-aba9-17d0e0ad152d", "5d123a29-6552-4b47-aba9-17d0e0ad152d", refreshToken) +20:00:47.082 [XNIO-1 task-1] BZHYD5qxSx6HgiOGMVbO_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.082 [XNIO-1 task-1] BZHYD5qxSx6HgiOGMVbO_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.082 [XNIO-1 task-1] BZHYD5qxSx6HgiOGMVbO_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.082 [XNIO-1 task-1] BZHYD5qxSx6HgiOGMVbO_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.083 [XNIO-1 task-1] BZHYD5qxSx6HgiOGMVbO_g DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:47.083 [XNIO-1 task-1] BZHYD5qxSx6HgiOGMVbO_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:47.086 [XNIO-1 task-1] Wac2efwyTeqfp_pLekoDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.086 [XNIO-1 task-1] Wac2efwyTeqfp_pLekoDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.086 [XNIO-1 task-1] Wac2efwyTeqfp_pLekoDpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.087 [XNIO-1 task-1] Wac2efwyTeqfp_pLekoDpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.095 [XNIO-1 task-1] dL8UtsE_TkaUf7xeq01suQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.095 [XNIO-1 task-1] dL8UtsE_TkaUf7xeq01suQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.095 [XNIO-1 task-1] dL8UtsE_TkaUf7xeq01suQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.095 [XNIO-1 task-1] dL8UtsE_TkaUf7xeq01suQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.096 [XNIO-1 task-1] dL8UtsE_TkaUf7xeq01suQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.106 [XNIO-1 task-1] LlaNJBXOSlq9kK_1ESfGxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.106 [XNIO-1 task-1] LlaNJBXOSlq9kK_1ESfGxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.106 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:511d3e59 +20:00:47.106 [XNIO-1 task-1] LlaNJBXOSlq9kK_1ESfGxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.107 [XNIO-1 task-1] LlaNJBXOSlq9kK_1ESfGxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.115 [XNIO-1 task-1] 2IPi3fjVQbSeRYHAQQNI2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.115 [XNIO-1 task-1] 2IPi3fjVQbSeRYHAQQNI2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.115 [XNIO-1 task-1] 2IPi3fjVQbSeRYHAQQNI2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.115 [XNIO-1 task-1] 2IPi3fjVQbSeRYHAQQNI2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.119 [XNIO-1 task-1] 2IPi3fjVQbSeRYHAQQNI2g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.123 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4711820d-90eb-45de-995f-5ac03d5c298d +20:00:47.133 [XNIO-1 task-1] 0ok9Vl8lSkWgXXJepZpgKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.134 [XNIO-1 task-1] 0ok9Vl8lSkWgXXJepZpgKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.134 [XNIO-1 task-1] 0ok9Vl8lSkWgXXJepZpgKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.135 [XNIO-1 task-1] 0ok9Vl8lSkWgXXJepZpgKA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.148 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:17296abd +20:00:47.149 [XNIO-1 task-1] Jr5UJwMYQWSj2ZII0SBeBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.149 [XNIO-1 task-1] Jr5UJwMYQWSj2ZII0SBeBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.149 [XNIO-1 task-1] Jr5UJwMYQWSj2ZII0SBeBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.149 [XNIO-1 task-1] Jr5UJwMYQWSj2ZII0SBeBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.149 [XNIO-1 task-1] Jr5UJwMYQWSj2ZII0SBeBA DEBUG com.networknt.schema.TypeValidator debug - validate( "3ebd7513-cc1e-439b-ab9c-845bfa553544", "3ebd7513-cc1e-439b-ab9c-845bfa553544", refreshToken) +20:00:47.154 [XNIO-1 task-1] 5hKtAGi1Sb6g0utFjQjZ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.154 [XNIO-1 task-1] 5hKtAGi1Sb6g0utFjQjZ9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.154 [XNIO-1 task-1] 5hKtAGi1Sb6g0utFjQjZ9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.154 [XNIO-1 task-1] 5hKtAGi1Sb6g0utFjQjZ9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.155 [XNIO-1 task-1] 5hKtAGi1Sb6g0utFjQjZ9g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.161 [XNIO-1 task-1] 5T-NmzahSyCYV2N9KMCFyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:47.162 [XNIO-1 task-1] 5T-NmzahSyCYV2N9KMCFyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.162 [XNIO-1 task-1] 5T-NmzahSyCYV2N9KMCFyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.163 [XNIO-1 task-1] 5T-NmzahSyCYV2N9KMCFyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:47.163 [XNIO-1 task-1] 5T-NmzahSyCYV2N9KMCFyg DEBUG com.networknt.schema.TypeValidator debug - validate( "dff6a2dd-b622-4624-b5ec-60c125df23e1", "dff6a2dd-b622-4624-b5ec-60c125df23e1", refreshToken) +20:00:47.169 [XNIO-1 task-1] 1XVM8pAKSrKxD8PTUjEOTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.169 [XNIO-1 task-1] 1XVM8pAKSrKxD8PTUjEOTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.169 [XNIO-1 task-1] 1XVM8pAKSrKxD8PTUjEOTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.170 [XNIO-1 task-1] 1XVM8pAKSrKxD8PTUjEOTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.170 [XNIO-1 task-1] 1XVM8pAKSrKxD8PTUjEOTw DEBUG com.networknt.schema.TypeValidator debug - validate( "3ebd7513-cc1e-439b-ab9c-845bfa553544", "3ebd7513-cc1e-439b-ab9c-845bfa553544", refreshToken) +20:00:47.176 [XNIO-1 task-1] yDWWV8eURzm7SPde7DuWOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:47.176 [XNIO-1 task-1] yDWWV8eURzm7SPde7DuWOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.176 [XNIO-1 task-1] yDWWV8eURzm7SPde7DuWOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.177 [XNIO-1 task-1] yDWWV8eURzm7SPde7DuWOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:47.177 [XNIO-1 task-1] yDWWV8eURzm7SPde7DuWOw DEBUG com.networknt.schema.TypeValidator debug - validate( "dff6a2dd-b622-4624-b5ec-60c125df23e1", "dff6a2dd-b622-4624-b5ec-60c125df23e1", refreshToken) +20:00:47.179 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.189 [XNIO-1 task-1] NvVSpkUTRfKCP5KrUxzCeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:47.189 [XNIO-1 task-1] NvVSpkUTRfKCP5KrUxzCeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.189 [XNIO-1 task-1] NvVSpkUTRfKCP5KrUxzCeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.189 [XNIO-1 task-1] NvVSpkUTRfKCP5KrUxzCeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:47.190 [XNIO-1 task-1] NvVSpkUTRfKCP5KrUxzCeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:47.194 [XNIO-1 task-1] ykF5apYxRa-bdzGs3-XUsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.194 [XNIO-1 task-1] ykF5apYxRa-bdzGs3-XUsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.194 [XNIO-1 task-1] ykF5apYxRa-bdzGs3-XUsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.194 [XNIO-1 task-1] ykF5apYxRa-bdzGs3-XUsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.195 [XNIO-1 task-1] ykF5apYxRa-bdzGs3-XUsg DEBUG com.networknt.schema.TypeValidator debug - validate( "3ebd7513-cc1e-439b-ab9c-845bfa553544", "3ebd7513-cc1e-439b-ab9c-845bfa553544", refreshToken) +20:00:47.213 [XNIO-1 task-1] 3LTbnPgJS8eHHwPCZX4ogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.213 [XNIO-1 task-1] 3LTbnPgJS8eHHwPCZX4ogw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.213 [XNIO-1 task-1] 3LTbnPgJS8eHHwPCZX4ogw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.215 [XNIO-1 task-1] 3LTbnPgJS8eHHwPCZX4ogw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.215 [XNIO-1 task-1] 3LTbnPgJS8eHHwPCZX4ogw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.229 [XNIO-1 task-1] Cho_moJyQPWG4DYISjtb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.229 [XNIO-1 task-1] Cho_moJyQPWG4DYISjtb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.229 [XNIO-1 task-1] Cho_moJyQPWG4DYISjtb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.229 [XNIO-1 task-1] Cho_moJyQPWG4DYISjtb-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.230 [XNIO-1 task-1] Cho_moJyQPWG4DYISjtb-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.233 [XNIO-1 task-1] Cho_moJyQPWG4DYISjtb-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dff6a2dd-b622-4624-b5ec-60c125df23e1 is not found.","severity":"ERROR"} +20:00:47.237 [XNIO-1 task-1] aC7j9ZUDS96-QOnSD0nS5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.237 [XNIO-1 task-1] aC7j9ZUDS96-QOnSD0nS5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.237 [XNIO-1 task-1] aC7j9ZUDS96-QOnSD0nS5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.237 [XNIO-1 task-1] aC7j9ZUDS96-QOnSD0nS5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.251 [XNIO-1 task-1] JAkbv_xsRGStykfqGSgMkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.252 [XNIO-1 task-1] JAkbv_xsRGStykfqGSgMkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.252 [XNIO-1 task-1] JAkbv_xsRGStykfqGSgMkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.252 [XNIO-1 task-1] JAkbv_xsRGStykfqGSgMkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3ebd7513-cc1e-439b-ab9c-845bfa553544, base path is set to: null +20:00:47.252 [XNIO-1 task-1] JAkbv_xsRGStykfqGSgMkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3ebd7513-cc1e-439b-ab9c-845bfa553544", "3ebd7513-cc1e-439b-ab9c-845bfa553544", refreshToken) +20:00:47.255 [XNIO-1 task-1] JAkbv_xsRGStykfqGSgMkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3ebd7513-cc1e-439b-ab9c-845bfa553544 is not found.","severity":"ERROR"} +20:00:47.262 [XNIO-1 task-1] JZeLLcUWQ-uBJDXAZGKN0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.263 [XNIO-1 task-1] JZeLLcUWQ-uBJDXAZGKN0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.263 [XNIO-1 task-1] JZeLLcUWQ-uBJDXAZGKN0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.263 [XNIO-1 task-1] JZeLLcUWQ-uBJDXAZGKN0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.263 [XNIO-1 task-1] JZeLLcUWQ-uBJDXAZGKN0w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.265 [XNIO-1 task-1] JZeLLcUWQ-uBJDXAZGKN0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dff6a2dd-b622-4624-b5ec-60c125df23e1 is not found.","severity":"ERROR"} +20:00:47.272 [XNIO-1 task-1] dffT6rwBSLyR95qazU1ELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.272 [XNIO-1 task-1] dffT6rwBSLyR95qazU1ELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.272 [XNIO-1 task-1] dffT6rwBSLyR95qazU1ELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.272 [XNIO-1 task-1] dffT6rwBSLyR95qazU1ELg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.273 [XNIO-1 task-1] dffT6rwBSLyR95qazU1ELg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.277 [XNIO-1 task-1] dffT6rwBSLyR95qazU1ELg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dff6a2dd-b622-4624-b5ec-60c125df23e1 is not found.","severity":"ERROR"} +20:00:47.284 [XNIO-1 task-1] rfDPOEziTD-ZmfhBykxaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.284 [XNIO-1 task-1] rfDPOEziTD-ZmfhBykxaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.284 [XNIO-1 task-1] rfDPOEziTD-ZmfhBykxaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.285 [XNIO-1 task-1] rfDPOEziTD-ZmfhBykxaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.285 [XNIO-1 task-1] rfDPOEziTD-ZmfhBykxaBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.293 [XNIO-1 task-1] ncp-zuzzS12y8QPInqw64w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.293 [XNIO-1 task-1] ncp-zuzzS12y8QPInqw64w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.293 [XNIO-1 task-1] ncp-zuzzS12y8QPInqw64w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.293 [XNIO-1 task-1] ncp-zuzzS12y8QPInqw64w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.294 [XNIO-1 task-1] ncp-zuzzS12y8QPInqw64w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.300 [XNIO-1 task-1] VHZeb7B2Rb2X_v3kGPTyUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.300 [XNIO-1 task-1] VHZeb7B2Rb2X_v3kGPTyUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.301 [XNIO-1 task-1] VHZeb7B2Rb2X_v3kGPTyUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.301 [XNIO-1 task-1] VHZeb7B2Rb2X_v3kGPTyUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.303 [XNIO-1 task-1] VHZeb7B2Rb2X_v3kGPTyUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.309 [XNIO-1 task-1] NwEOHIN-RASSswXFrmu3sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.309 [XNIO-1 task-1] NwEOHIN-RASSswXFrmu3sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.309 [XNIO-1 task-1] NwEOHIN-RASSswXFrmu3sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.310 [XNIO-1 task-1] NwEOHIN-RASSswXFrmu3sw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.310 [XNIO-1 task-1] NwEOHIN-RASSswXFrmu3sw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.321 [XNIO-1 task-1] -uBR88d4TQ6Gq7HzrjtFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.321 [XNIO-1 task-1] -uBR88d4TQ6Gq7HzrjtFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.321 [XNIO-1 task-1] -uBR88d4TQ6Gq7HzrjtFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.322 [XNIO-1 task-1] -uBR88d4TQ6Gq7HzrjtFtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.322 [XNIO-1 task-1] -uBR88d4TQ6Gq7HzrjtFtA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = cc0945b0-6271-4a41-bc20-fa1e4595354b +20:00:47.325 [XNIO-1 task-1] vcnV-a8ARO6I25_s8Y7vtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.325 [XNIO-1 task-1] vcnV-a8ARO6I25_s8Y7vtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.325 [XNIO-1 task-1] vcnV-a8ARO6I25_s8Y7vtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.326 [XNIO-1 task-1] vcnV-a8ARO6I25_s8Y7vtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.326 [XNIO-1 task-1] vcnV-a8ARO6I25_s8Y7vtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cc0945b0-6271-4a41-bc20-fa1e4595354b", "cc0945b0-6271-4a41-bc20-fa1e4595354b", refreshToken) +20:00:47.330 [XNIO-1 task-1] tgvF-xGyRq2XgLXFo4E3cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.330 [XNIO-1 task-1] tgvF-xGyRq2XgLXFo4E3cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.330 [XNIO-1 task-1] tgvF-xGyRq2XgLXFo4E3cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.330 [XNIO-1 task-1] tgvF-xGyRq2XgLXFo4E3cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.331 [XNIO-1 task-1] tgvF-xGyRq2XgLXFo4E3cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cc0945b0-6271-4a41-bc20-fa1e4595354b", "cc0945b0-6271-4a41-bc20-fa1e4595354b", refreshToken) +20:00:47.342 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c3d8a684-c1dd-479f-a2c2-152d8af015e0 +20:00:47.344 [XNIO-1 task-1] OiWIbkFqTL-V-u_oRCULHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.345 [XNIO-1 task-1] OiWIbkFqTL-V-u_oRCULHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.345 [XNIO-1 task-1] OiWIbkFqTL-V-u_oRCULHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.345 [XNIO-1 task-1] OiWIbkFqTL-V-u_oRCULHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.352 [XNIO-1 task-1] MDTglGuoQTWIJ0pRQoadUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.352 [XNIO-1 task-1] MDTglGuoQTWIJ0pRQoadUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.352 [XNIO-1 task-1] MDTglGuoQTWIJ0pRQoadUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.352 [XNIO-1 task-1] MDTglGuoQTWIJ0pRQoadUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.353 [XNIO-1 task-1] MDTglGuoQTWIJ0pRQoadUg DEBUG com.networknt.schema.TypeValidator debug - validate( "cc0945b0-6271-4a41-bc20-fa1e4595354b", "cc0945b0-6271-4a41-bc20-fa1e4595354b", refreshToken) +20:00:47.356 [XNIO-1 task-1] MDTglGuoQTWIJ0pRQoadUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token cc0945b0-6271-4a41-bc20-fa1e4595354b is not found.","severity":"ERROR"} +20:00:47.359 [XNIO-1 task-1] eGEB_d4ETWimbDPQoSTvqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:47.359 [XNIO-1 task-1] eGEB_d4ETWimbDPQoSTvqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.359 [XNIO-1 task-1] eGEB_d4ETWimbDPQoSTvqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.360 [XNIO-1 task-1] eGEB_d4ETWimbDPQoSTvqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:47.361 [XNIO-1 task-1] eGEB_d4ETWimbDPQoSTvqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:47.371 [XNIO-1 task-1] ZAbDxsD2Q1WmVJUF0gAGdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.372 [XNIO-1 task-1] ZAbDxsD2Q1WmVJUF0gAGdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.373 [XNIO-1 task-1] ZAbDxsD2Q1WmVJUF0gAGdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.373 [XNIO-1 task-1] ZAbDxsD2Q1WmVJUF0gAGdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/cc0945b0-6271-4a41-bc20-fa1e4595354b, base path is set to: null +20:00:47.373 [XNIO-1 task-1] ZAbDxsD2Q1WmVJUF0gAGdw DEBUG com.networknt.schema.TypeValidator debug - validate( "cc0945b0-6271-4a41-bc20-fa1e4595354b", "cc0945b0-6271-4a41-bc20-fa1e4595354b", refreshToken) +20:00:47.374 [XNIO-1 task-1] ZAbDxsD2Q1WmVJUF0gAGdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token cc0945b0-6271-4a41-bc20-fa1e4595354b is not found.","severity":"ERROR"} +20:00:47.380 [XNIO-1 task-1] 2Gn3liOiQ2qpko6JDW9MPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.380 [XNIO-1 task-1] 2Gn3liOiQ2qpko6JDW9MPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.380 [XNIO-1 task-1] 2Gn3liOiQ2qpko6JDW9MPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.381 [XNIO-1 task-1] 2Gn3liOiQ2qpko6JDW9MPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.381 [XNIO-1 task-1] 2Gn3liOiQ2qpko6JDW9MPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.393 [XNIO-1 task-1] 70Aw4p3NRmS4hKE1hN-D6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.393 [XNIO-1 task-1] 70Aw4p3NRmS4hKE1hN-D6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.394 [XNIO-1 task-1] 70Aw4p3NRmS4hKE1hN-D6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.394 [XNIO-1 task-1] 70Aw4p3NRmS4hKE1hN-D6w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.402 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1306cac9 +20:00:47.408 [XNIO-1 task-1] 7p1Ds0OHR4GXPoyCIDoxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5, base path is set to: null +20:00:47.409 [XNIO-1 task-1] 7p1Ds0OHR4GXPoyCIDoxnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.411 [XNIO-1 task-1] 7p1Ds0OHR4GXPoyCIDoxnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.413 [XNIO-1 task-1] 7p1Ds0OHR4GXPoyCIDoxnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5, base path is set to: null +20:00:47.419 [XNIO-1 task-1] 7p1Ds0OHR4GXPoyCIDoxnw DEBUG com.networknt.schema.TypeValidator debug - validate( "bc3df424-493f-4a68-b8de-526817013cd5", "bc3df424-493f-4a68-b8de-526817013cd5", refreshToken) +20:00:47.422 [XNIO-1 task-1] 7p1Ds0OHR4GXPoyCIDoxnw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token bc3df424-493f-4a68-b8de-526817013cd5 is not found.","severity":"ERROR"} +20:00:47.433 [XNIO-1 task-1] qL-m5xMnS-OTdw5KS91gcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.433 [XNIO-1 task-1] qL-m5xMnS-OTdw5KS91gcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.433 [XNIO-1 task-1] qL-m5xMnS-OTdw5KS91gcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.433 [XNIO-1 task-1] qL-m5xMnS-OTdw5KS91gcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.434 [XNIO-1 task-1] qL-m5xMnS-OTdw5KS91gcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.454 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f74db908 +20:00:47.456 [XNIO-1 task-1] sL2CkjRJSZiYtH2GQirW7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:47.456 [XNIO-1 task-1] sL2CkjRJSZiYtH2GQirW7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.457 [XNIO-1 task-1] sL2CkjRJSZiYtH2GQirW7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.457 [XNIO-1 task-1] sL2CkjRJSZiYtH2GQirW7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:47.457 [XNIO-1 task-1] sL2CkjRJSZiYtH2GQirW7w DEBUG com.networknt.schema.TypeValidator debug - validate( "9990f3e0-f89d-4916-8201-f93b0a0e2da4", "9990f3e0-f89d-4916-8201-f93b0a0e2da4", refreshToken) +20:00:47.477 [XNIO-1 task-1] aPzu1AkqRgSIv8jU3YDxLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.477 [XNIO-1 task-1] aPzu1AkqRgSIv8jU3YDxLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.477 [XNIO-1 task-1] aPzu1AkqRgSIv8jU3YDxLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.478 [XNIO-1 task-1] aPzu1AkqRgSIv8jU3YDxLw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.478 [XNIO-1 task-1] aPzu1AkqRgSIv8jU3YDxLw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.483 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f74db908 +20:00:47.488 [XNIO-1 task-1] 2ttcQ8YRT7qCMab7_cusIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.488 [XNIO-1 task-1] 2ttcQ8YRT7qCMab7_cusIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.489 [XNIO-1 task-1] 2ttcQ8YRT7qCMab7_cusIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.489 [XNIO-1 task-1] 2ttcQ8YRT7qCMab7_cusIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.503 [XNIO-1 task-1] yAdXLRAzROWxftTTz7L_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.503 [XNIO-1 task-1] yAdXLRAzROWxftTTz7L_GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.503 [XNIO-1 task-1] yAdXLRAzROWxftTTz7L_GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.503 [XNIO-1 task-1] yAdXLRAzROWxftTTz7L_GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.504 [XNIO-1 task-1] yAdXLRAzROWxftTTz7L_GA DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:47.504 [XNIO-1 task-1] yAdXLRAzROWxftTTz7L_GA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:47.508 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f74db908 +20:00:47.512 [XNIO-1 task-1] O_q2cJ-TTT6VgAhZIwBsMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.512 [XNIO-1 task-1] O_q2cJ-TTT6VgAhZIwBsMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.512 [XNIO-1 task-1] O_q2cJ-TTT6VgAhZIwBsMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.512 [XNIO-1 task-1] O_q2cJ-TTT6VgAhZIwBsMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.513 [XNIO-1 task-1] O_q2cJ-TTT6VgAhZIwBsMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.516 [XNIO-1 task-1] 4qKOt_GjRTq2WrZnWepYHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.517 [XNIO-1 task-1] 4qKOt_GjRTq2WrZnWepYHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.517 [XNIO-1 task-1] 4qKOt_GjRTq2WrZnWepYHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.517 [XNIO-1 task-1] 4qKOt_GjRTq2WrZnWepYHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.517 [XNIO-1 task-1] 4qKOt_GjRTq2WrZnWepYHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.536 [XNIO-1 task-1] sfmr5PhBTjK2Il6SA2jdgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.536 [XNIO-1 task-1] sfmr5PhBTjK2Il6SA2jdgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.536 [XNIO-1 task-1] sfmr5PhBTjK2Il6SA2jdgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.537 [XNIO-1 task-1] sfmr5PhBTjK2Il6SA2jdgA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.554 [XNIO-1 task-1] jOAfE2dTQv-W3iGkaXelyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:47.554 [XNIO-1 task-1] jOAfE2dTQv-W3iGkaXelyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.554 [XNIO-1 task-1] jOAfE2dTQv-W3iGkaXelyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.555 [XNIO-1 task-1] jOAfE2dTQv-W3iGkaXelyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:47.555 [XNIO-1 task-1] jOAfE2dTQv-W3iGkaXelyw DEBUG com.networknt.schema.TypeValidator debug - validate( "9990f3e0-f89d-4916-8201-f93b0a0e2da4", "9990f3e0-f89d-4916-8201-f93b0a0e2da4", refreshToken) +20:00:47.563 [XNIO-1 task-1] jOAfE2dTQv-W3iGkaXelyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9990f3e0-f89d-4916-8201-f93b0a0e2da4 is not found.","severity":"ERROR"} +20:00:47.570 [XNIO-1 task-1] DDVCJLZpS8iS0jVKYawx9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.571 [XNIO-1 task-1] DDVCJLZpS8iS0jVKYawx9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.571 [XNIO-1 task-1] DDVCJLZpS8iS0jVKYawx9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.572 [XNIO-1 task-1] DDVCJLZpS8iS0jVKYawx9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.578 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.584 [XNIO-1 task-1] mj3OqegoTX-upM-afND1GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.584 [XNIO-1 task-1] mj3OqegoTX-upM-afND1GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.585 [XNIO-1 task-1] mj3OqegoTX-upM-afND1GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.585 [XNIO-1 task-1] mj3OqegoTX-upM-afND1GQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.595 [XNIO-1 task-1] 14anIvwTQ2mqCpKZcsgIiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.596 [XNIO-1 task-1] 14anIvwTQ2mqCpKZcsgIiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.596 [XNIO-1 task-1] 14anIvwTQ2mqCpKZcsgIiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.596 [XNIO-1 task-1] 14anIvwTQ2mqCpKZcsgIiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.596 [XNIO-1 task-1] 14anIvwTQ2mqCpKZcsgIiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:47.596 [XNIO-1 task-1] 14anIvwTQ2mqCpKZcsgIiQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:47.607 [XNIO-1 task-1] sVEiI37YSNGlW5jNh_A4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.607 [XNIO-1 task-1] sVEiI37YSNGlW5jNh_A4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.607 [XNIO-1 task-1] sVEiI37YSNGlW5jNh_A4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.607 [XNIO-1 task-1] sVEiI37YSNGlW5jNh_A4_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.608 [XNIO-1 task-1] sVEiI37YSNGlW5jNh_A4_g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = bc3df424-493f-4a68-b8de-526817013cd5 +20:00:47.611 [XNIO-1 task-1] RgVG10E5TXa6ZZzpEMSY3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00, base path is set to: null +20:00:47.611 [XNIO-1 task-1] RgVG10E5TXa6ZZzpEMSY3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.611 [XNIO-1 task-1] RgVG10E5TXa6ZZzpEMSY3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.611 [XNIO-1 task-1] RgVG10E5TXa6ZZzpEMSY3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00, base path is set to: null +20:00:47.612 [XNIO-1 task-1] RgVG10E5TXa6ZZzpEMSY3g DEBUG com.networknt.schema.TypeValidator debug - validate( "863cdc73-f651-4c94-a23b-18e58c31ce00", "863cdc73-f651-4c94-a23b-18e58c31ce00", refreshToken) +20:00:47.625 [XNIO-1 task-1] FKjRPfY_SOmTx4wkPqK44g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.625 [XNIO-1 task-1] FKjRPfY_SOmTx4wkPqK44g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.625 [XNIO-1 task-1] FKjRPfY_SOmTx4wkPqK44g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.626 [XNIO-1 task-1] FKjRPfY_SOmTx4wkPqK44g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.626 [XNIO-1 task-1] FKjRPfY_SOmTx4wkPqK44g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.633 [XNIO-1 task-1] a88vnDLISge0_4-9TyjA8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:47.633 [XNIO-1 task-1] a88vnDLISge0_4-9TyjA8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.633 [XNIO-1 task-1] a88vnDLISge0_4-9TyjA8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.633 [XNIO-1 task-1] a88vnDLISge0_4-9TyjA8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:47.635 [XNIO-1 task-1] a88vnDLISge0_4-9TyjA8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:47.641 [XNIO-1 task-1] HXBWZPbJRtKSLrKnSEYFcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.643 [XNIO-1 task-1] HXBWZPbJRtKSLrKnSEYFcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.643 [XNIO-1 task-1] HXBWZPbJRtKSLrKnSEYFcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.643 [XNIO-1 task-1] HXBWZPbJRtKSLrKnSEYFcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.645 [XNIO-1 task-1] HXBWZPbJRtKSLrKnSEYFcw DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:47.645 [XNIO-1 task-1] HXBWZPbJRtKSLrKnSEYFcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:47.653 [XNIO-1 task-1] s9HItvB1RlG0ugMHWCTBeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00 +20:00:47.653 [XNIO-1 task-1] s9HItvB1RlG0ugMHWCTBeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.653 [XNIO-1 task-1] s9HItvB1RlG0ugMHWCTBeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.654 [XNIO-1 task-1] s9HItvB1RlG0ugMHWCTBeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00 +20:00:47.655 [XNIO-1 task-1] s9HItvB1RlG0ugMHWCTBeA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 863cdc73-f651-4c94-a23b-18e58c31ce00 +20:00:47.665 [XNIO-1 task-1] vxe4QJ-TRHiaN6h9I4CVYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.665 [XNIO-1 task-1] vxe4QJ-TRHiaN6h9I4CVYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.665 [XNIO-1 task-1] vxe4QJ-TRHiaN6h9I4CVYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.665 [XNIO-1 task-1] vxe4QJ-TRHiaN6h9I4CVYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:47.666 [XNIO-1 task-1] vxe4QJ-TRHiaN6h9I4CVYg DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:47.666 [XNIO-1 task-1] vxe4QJ-TRHiaN6h9I4CVYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:47.674 [XNIO-1 task-1] LZw5h7g_TH-UX5y8WHwSJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:47.674 [XNIO-1 task-1] LZw5h7g_TH-UX5y8WHwSJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.674 [XNIO-1 task-1] LZw5h7g_TH-UX5y8WHwSJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.674 [XNIO-1 task-1] LZw5h7g_TH-UX5y8WHwSJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:47.675 [XNIO-1 task-1] LZw5h7g_TH-UX5y8WHwSJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:47.678 [XNIO-1 task-1] afV0t9n0R3eegR5aZcLklQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00 +20:00:47.679 [XNIO-1 task-1] afV0t9n0R3eegR5aZcLklQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.679 [XNIO-1 task-1] afV0t9n0R3eegR5aZcLklQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.679 [XNIO-1 task-1] afV0t9n0R3eegR5aZcLklQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00 +20:00:47.679 [XNIO-1 task-1] afV0t9n0R3eegR5aZcLklQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 863cdc73-f651-4c94-a23b-18e58c31ce00 +20:00:47.683 [XNIO-1 task-1] L5tvKqHqSsGti8tdFZv_-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:47.684 [XNIO-1 task-1] L5tvKqHqSsGti8tdFZv_-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.684 [XNIO-1 task-1] L5tvKqHqSsGti8tdFZv_-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.684 [XNIO-1 task-1] L5tvKqHqSsGti8tdFZv_-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:47.684 [XNIO-1 task-1] L5tvKqHqSsGti8tdFZv_-g DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:47.688 [XNIO-1 task-1] Ho-4No6gRfC5HQC5OVpWHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00, base path is set to: null +20:00:47.688 [XNIO-1 task-1] Ho-4No6gRfC5HQC5OVpWHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.688 [XNIO-1 task-1] Ho-4No6gRfC5HQC5OVpWHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.688 [XNIO-1 task-1] Ho-4No6gRfC5HQC5OVpWHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/863cdc73-f651-4c94-a23b-18e58c31ce00, base path is set to: null +20:00:47.688 [XNIO-1 task-1] Ho-4No6gRfC5HQC5OVpWHw DEBUG com.networknt.schema.TypeValidator debug - validate( "863cdc73-f651-4c94-a23b-18e58c31ce00", "863cdc73-f651-4c94-a23b-18e58c31ce00", refreshToken) +20:00:47.689 [XNIO-1 task-1] Ho-4No6gRfC5HQC5OVpWHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 863cdc73-f651-4c94-a23b-18e58c31ce00 is not found.","severity":"ERROR"} +20:00:47.696 [XNIO-1 task-1] JZhFnMoDSLu0ruo1pQ6kdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:47.697 [XNIO-1 task-1] JZhFnMoDSLu0ruo1pQ6kdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.697 [XNIO-1 task-1] JZhFnMoDSLu0ruo1pQ6kdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.697 [XNIO-1 task-1] JZhFnMoDSLu0ruo1pQ6kdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:47.697 [XNIO-1 task-1] JZhFnMoDSLu0ruo1pQ6kdg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:47.702 [XNIO-1 task-1] pPAOT2oESIWbn39Nor2fvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.702 [XNIO-1 task-1] pPAOT2oESIWbn39Nor2fvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.702 [XNIO-1 task-1] pPAOT2oESIWbn39Nor2fvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.703 [XNIO-1 task-1] pPAOT2oESIWbn39Nor2fvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.703 [XNIO-1 task-1] pPAOT2oESIWbn39Nor2fvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.715 [XNIO-1 task-1] KsXtYDM2QV6xdKpGQ9mQew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.715 [XNIO-1 task-1] KsXtYDM2QV6xdKpGQ9mQew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.716 [XNIO-1 task-1] KsXtYDM2QV6xdKpGQ9mQew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.716 [XNIO-1 task-1] KsXtYDM2QV6xdKpGQ9mQew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.732 [XNIO-1 task-1] 2KQD2d36R7uZZQr-ry-TJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.732 [XNIO-1 task-1] 2KQD2d36R7uZZQr-ry-TJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.732 [XNIO-1 task-1] 2KQD2d36R7uZZQr-ry-TJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.732 [XNIO-1 task-1] 2KQD2d36R7uZZQr-ry-TJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.733 [XNIO-1 task-1] 2KQD2d36R7uZZQr-ry-TJg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:47.735 [XNIO-1 task-1] 2KQD2d36R7uZZQr-ry-TJg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:47.738 [XNIO-1 task-1] z8IPWC6CQGmqtweSJP-Zvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.738 [XNIO-1 task-1] z8IPWC6CQGmqtweSJP-Zvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.739 [XNIO-1 task-1] z8IPWC6CQGmqtweSJP-Zvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.741 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:da011861 +20:00:47.741 [XNIO-1 task-1] z8IPWC6CQGmqtweSJP-Zvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.741 [XNIO-1 task-1] z8IPWC6CQGmqtweSJP-Zvg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.755 [XNIO-1 task-1] 1xdS9yy6TvKMzhJDPu_B3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.755 [XNIO-1 task-1] 1xdS9yy6TvKMzhJDPu_B3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.755 [XNIO-1 task-1] 1xdS9yy6TvKMzhJDPu_B3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.756 [XNIO-1 task-1] 1xdS9yy6TvKMzhJDPu_B3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.756 [XNIO-1 task-1] 1xdS9yy6TvKMzhJDPu_B3A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.765 [XNIO-1 task-1] NV0WfywGSgaoWRrknkY13A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.766 [XNIO-1 task-1] NV0WfywGSgaoWRrknkY13A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.766 [XNIO-1 task-1] NV0WfywGSgaoWRrknkY13A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.766 [XNIO-1 task-1] NV0WfywGSgaoWRrknkY13A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.766 [XNIO-1 task-1] NV0WfywGSgaoWRrknkY13A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.775 [XNIO-1 task-1] agse4qg0QYajW4S0ha3ZPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.775 [XNIO-1 task-1] agse4qg0QYajW4S0ha3ZPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.775 [XNIO-1 task-1] agse4qg0QYajW4S0ha3ZPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.775 [XNIO-1 task-1] agse4qg0QYajW4S0ha3ZPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.775 [XNIO-1 task-1] agse4qg0QYajW4S0ha3ZPg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:47.776 [XNIO-1 task-1] agse4qg0QYajW4S0ha3ZPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:47.784 [XNIO-1 task-1] v342pCJZSTOkodV0pn9jZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.785 [XNIO-1 task-1] v342pCJZSTOkodV0pn9jZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.786 [XNIO-1 task-1] v342pCJZSTOkodV0pn9jZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.787 [XNIO-1 task-1] v342pCJZSTOkodV0pn9jZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.787 [XNIO-1 task-1] v342pCJZSTOkodV0pn9jZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.799 [XNIO-1 task-1] gNaeWDdWSZGXj26rozx1YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.799 [XNIO-1 task-1] gNaeWDdWSZGXj26rozx1YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.799 [XNIO-1 task-1] gNaeWDdWSZGXj26rozx1YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.799 [XNIO-1 task-1] gNaeWDdWSZGXj26rozx1YA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.800 [XNIO-1 task-1] gNaeWDdWSZGXj26rozx1YA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.803 [XNIO-1 task-1] WP_hmnd_SoaDzXdPSH9NVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f, base path is set to: null +20:00:47.803 [XNIO-1 task-1] WP_hmnd_SoaDzXdPSH9NVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.803 [XNIO-1 task-1] WP_hmnd_SoaDzXdPSH9NVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.803 [XNIO-1 task-1] WP_hmnd_SoaDzXdPSH9NVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f, base path is set to: null +20:00:47.804 [XNIO-1 task-1] WP_hmnd_SoaDzXdPSH9NVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1c2f86eb-3654-4b81-9692-924cf55fe76f", "1c2f86eb-3654-4b81-9692-924cf55fe76f", refreshToken) +20:00:47.810 [XNIO-1 task-1] uIufccxdQaqll80FXk_3eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.811 [XNIO-1 task-1] uIufccxdQaqll80FXk_3eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.811 [XNIO-1 task-1] uIufccxdQaqll80FXk_3eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.811 [XNIO-1 task-1] uIufccxdQaqll80FXk_3eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:47.811 [XNIO-1 task-1] uIufccxdQaqll80FXk_3eg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:47.811 [XNIO-1 task-1] uIufccxdQaqll80FXk_3eg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:47.815 [XNIO-1 task-1] IZwgbjaYQGKF0_vnI88gTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.815 [XNIO-1 task-1] IZwgbjaYQGKF0_vnI88gTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.815 [XNIO-1 task-1] IZwgbjaYQGKF0_vnI88gTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.816 [XNIO-1 task-1] IZwgbjaYQGKF0_vnI88gTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.816 [XNIO-1 task-1] IZwgbjaYQGKF0_vnI88gTw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.827 [XNIO-1 task-1] ZXS_0vb3Tuyzqkx_Wl5BMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.827 [XNIO-1 task-1] ZXS_0vb3Tuyzqkx_Wl5BMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.827 [XNIO-1 task-1] ZXS_0vb3Tuyzqkx_Wl5BMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.828 [XNIO-1 task-1] ZXS_0vb3Tuyzqkx_Wl5BMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.828 [XNIO-1 task-1] ZXS_0vb3Tuyzqkx_Wl5BMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:47.840 [XNIO-1 task-1] I-05WzMVRhCuJ4a4gZdmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f, base path is set to: null +20:00:47.840 [XNIO-1 task-1] I-05WzMVRhCuJ4a4gZdmqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.840 [XNIO-1 task-1] I-05WzMVRhCuJ4a4gZdmqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.840 [XNIO-1 task-1] I-05WzMVRhCuJ4a4gZdmqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f, base path is set to: null +20:00:47.840 [XNIO-1 task-1] I-05WzMVRhCuJ4a4gZdmqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1c2f86eb-3654-4b81-9692-924cf55fe76f", "1c2f86eb-3654-4b81-9692-924cf55fe76f", refreshToken) +20:00:47.862 [XNIO-1 task-1] tPHNrTDsTfeCnJJ011mlnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264, base path is set to: null +20:00:47.862 [XNIO-1 task-1] tPHNrTDsTfeCnJJ011mlnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.862 [XNIO-1 task-1] tPHNrTDsTfeCnJJ011mlnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.862 [XNIO-1 task-1] tPHNrTDsTfeCnJJ011mlnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264, base path is set to: null +20:00:47.863 [XNIO-1 task-1] tPHNrTDsTfeCnJJ011mlnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c871168c-8884-4709-8107-726ca557b264", "c871168c-8884-4709-8107-726ca557b264", refreshToken) +20:00:47.869 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:95220c95-a67b-4bbf-8ed0-2b7e0de47f0e +20:00:47.871 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1306cac9 +20:00:47.872 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:95220c95-a67b-4bbf-8ed0-2b7e0de47f0e +20:00:47.879 [XNIO-1 task-1] j5p0aoWtQ--4OxI9htZAnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.879 [XNIO-1 task-1] j5p0aoWtQ--4OxI9htZAnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.879 [XNIO-1 task-1] j5p0aoWtQ--4OxI9htZAnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.879 [XNIO-1 task-1] j5p0aoWtQ--4OxI9htZAnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.880 [XNIO-1 task-1] j5p0aoWtQ--4OxI9htZAnw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.886 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:bd88c211-ddad-47ae-adb7-6f81df27e2b6 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:47.895 [XNIO-1 task-1] 3v-dszILSa6LtWbYmkd6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.895 [XNIO-1 task-1] 3v-dszILSa6LtWbYmkd6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.895 [XNIO-1 task-1] 3v-dszILSa6LtWbYmkd6Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.896 [XNIO-1 task-1] 3v-dszILSa6LtWbYmkd6Gw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.896 [XNIO-1 task-1] 3v-dszILSa6LtWbYmkd6Gw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +20:00:47.904 [XNIO-1 task-1] sD7Ok8qCR4K7s5wvs5e_-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +20:00:47.905 [XNIO-1 task-1] sD7Ok8qCR4K7s5wvs5e_-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264, base path is set to: null +20:00:47.905 [XNIO-1 task-1] sD7Ok8qCR4K7s5wvs5e_-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264 +20:00:47.905 [XNIO-1 task-1] sD7Ok8qCR4K7s5wvs5e_-A DEBUG com.networknt.schema.TypeValidator debug - validate( "c871168c-8884-4709-8107-726ca557b264", "c871168c-8884-4709-8107-726ca557b264", refreshToken) +20:00:47.905 [XNIO-1 task-1] sD7Ok8qCR4K7s5wvs5e_-A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = c871168c-8884-4709-8107-726ca557b264 +20:00:47.913 [XNIO-1 task-1] IqqSkz-dShOKv1HbeWwuaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null + ... 14 more + +20:00:47.914 [XNIO-1 task-1] IqqSkz-dShOKv1HbeWwuaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.914 [XNIO-1 task-1] IqqSkz-dShOKv1HbeWwuaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.914 [XNIO-1 task-1] IqqSkz-dShOKv1HbeWwuaw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.915 [XNIO-1 task-1] IqqSkz-dShOKv1HbeWwuaw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.924 [XNIO-1 task-1] aCdphtLBSx2feBXQtq-nPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.924 [XNIO-1 task-1] aCdphtLBSx2feBXQtq-nPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.924 [XNIO-1 task-1] aCdphtLBSx2feBXQtq-nPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.925 [XNIO-1 task-1] aCdphtLBSx2feBXQtq-nPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.925 [XNIO-1 task-1] aCdphtLBSx2feBXQtq-nPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.927 [XNIO-1 task-1] aCdphtLBSx2feBXQtq-nPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dff6a2dd-b622-4624-b5ec-60c125df23e1 is not found.","severity":"ERROR"} +20:00:47.929 [XNIO-1 task-1] XQJmaPinRbayPlyJMwPAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.930 [XNIO-1 task-1] XQJmaPinRbayPlyJMwPAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.930 [XNIO-1 task-1] XQJmaPinRbayPlyJMwPAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.930 [XNIO-1 task-1] XQJmaPinRbayPlyJMwPAcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.931 [XNIO-1 task-1] XQJmaPinRbayPlyJMwPAcg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1c2f86eb-3654-4b81-9692-924cf55fe76f +20:00:47.935 [XNIO-1 task-1] XFE3pirJTp-Pjo44O4Jwxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264, base path is set to: null +20:00:47.935 [XNIO-1 task-1] XFE3pirJTp-Pjo44O4Jwxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.935 [XNIO-1 task-1] XFE3pirJTp-Pjo44O4Jwxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.935 [XNIO-1 task-1] XFE3pirJTp-Pjo44O4Jwxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264, base path is set to: null +20:00:47.936 [XNIO-1 task-1] XFE3pirJTp-Pjo44O4Jwxg DEBUG com.networknt.schema.TypeValidator debug - validate( "c871168c-8884-4709-8107-726ca557b264", "c871168c-8884-4709-8107-726ca557b264", refreshToken) +20:00:47.939 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1306cac9 +20:00:47.955 [XNIO-1 task-1] hN9a5hIiThObnoe0ZwKFzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.955 [XNIO-1 task-1] hN9a5hIiThObnoe0ZwKFzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.955 [XNIO-1 task-1] hN9a5hIiThObnoe0ZwKFzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:47.956 [XNIO-1 task-1] hN9a5hIiThObnoe0ZwKFzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.956 [XNIO-1 task-1] hN9a5hIiThObnoe0ZwKFzA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:47.963 [XNIO-1 task-1] Mykw0WWtTAWLwtiUUUVDBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.963 [XNIO-1 task-1] Mykw0WWtTAWLwtiUUUVDBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.963 [XNIO-1 task-1] Mykw0WWtTAWLwtiUUUVDBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.963 [XNIO-1 task-1] Mykw0WWtTAWLwtiUUUVDBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.964 [XNIO-1 task-1] Mykw0WWtTAWLwtiUUUVDBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.965 [XNIO-1 task-1] Mykw0WWtTAWLwtiUUUVDBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dff6a2dd-b622-4624-b5ec-60c125df23e1 is not found.","severity":"ERROR"} +20:00:47.969 [XNIO-1 task-1] guRfqnYeS12wkKZbbYbOwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264 +20:00:47.969 [XNIO-1 task-1] guRfqnYeS12wkKZbbYbOwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.969 [XNIO-1 task-1] guRfqnYeS12wkKZbbYbOwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:47.969 [XNIO-1 task-1] guRfqnYeS12wkKZbbYbOwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264 +20:00:47.969 [XNIO-1 task-1] guRfqnYeS12wkKZbbYbOwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = c871168c-8884-4709-8107-726ca557b264 +20:00:47.979 [XNIO-1 task-1] M-zbkmNHR-eUW0FQSp4TnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:47.980 [XNIO-1 task-1] M-zbkmNHR-eUW0FQSp4TnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.980 [XNIO-1 task-1] M-zbkmNHR-eUW0FQSp4TnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.980 [XNIO-1 task-1] M-zbkmNHR-eUW0FQSp4TnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:47.981 [XNIO-1 task-1] M-zbkmNHR-eUW0FQSp4TnA DEBUG com.networknt.schema.TypeValidator debug - validate( "dff6a2dd-b622-4624-b5ec-60c125df23e1", "dff6a2dd-b622-4624-b5ec-60c125df23e1", refreshToken) +20:00:47.981 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:47.986 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bd655b83 +20:00:47.986 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7acb7706 +20:00:47.986 [XNIO-1 task-1] JpbRpTUyR2a4HzD-ZaEyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.986 [XNIO-1 task-1] JpbRpTUyR2a4HzD-ZaEyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.987 [XNIO-1 task-1] JpbRpTUyR2a4HzD-ZaEyVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.987 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7acb7706 +20:00:47.987 [XNIO-1 task-1] JpbRpTUyR2a4HzD-ZaEyVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.992 [XNIO-1 task-1] s7BQIMsURJO0tzWaCgl_kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264, base path is set to: null +20:00:47.992 [XNIO-1 task-1] s7BQIMsURJO0tzWaCgl_kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:47.992 [XNIO-1 task-1] s7BQIMsURJO0tzWaCgl_kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:47.992 [XNIO-1 task-1] s7BQIMsURJO0tzWaCgl_kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/c871168c-8884-4709-8107-726ca557b264, base path is set to: null +20:00:47.993 [XNIO-1 task-1] s7BQIMsURJO0tzWaCgl_kw DEBUG com.networknt.schema.TypeValidator debug - validate( "c871168c-8884-4709-8107-726ca557b264", "c871168c-8884-4709-8107-726ca557b264", refreshToken) +20:00:47.993 [XNIO-1 task-1] s7BQIMsURJO0tzWaCgl_kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token c871168c-8884-4709-8107-726ca557b264 is not found.","severity":"ERROR"} +20:00:47.997 [XNIO-1 task-1] yCjOaNWsTDy7pnlbjA_FGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.997 [XNIO-1 task-1] yCjOaNWsTDy7pnlbjA_FGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.997 [XNIO-1 task-1] yCjOaNWsTDy7pnlbjA_FGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:47.998 [XNIO-1 task-1] yCjOaNWsTDy7pnlbjA_FGg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.003 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1306cac9 +20:00:48.005 [XNIO-1 task-1] PxNiGI1TT5-tsl4UlbLnZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:48.006 [XNIO-1 task-1] PxNiGI1TT5-tsl4UlbLnZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.006 [XNIO-1 task-1] PxNiGI1TT5-tsl4UlbLnZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.006 [XNIO-1 task-1] PxNiGI1TT5-tsl4UlbLnZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:48.007 [XNIO-1 task-1] PxNiGI1TT5-tsl4UlbLnZA DEBUG com.networknt.schema.TypeValidator debug - validate( "dff6a2dd-b622-4624-b5ec-60c125df23e1", "dff6a2dd-b622-4624-b5ec-60c125df23e1", refreshToken) +20:00:48.007 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:48.016 [XNIO-1 task-1] zHBti3iWTx2DufPgoWS69w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.017 [XNIO-1 task-1] zHBti3iWTx2DufPgoWS69w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.017 [XNIO-1 task-1] zHBti3iWTx2DufPgoWS69w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.017 [XNIO-1 task-1] zHBti3iWTx2DufPgoWS69w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.017 [XNIO-1 task-1] zHBti3iWTx2DufPgoWS69w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.025 [XNIO-1 task-1] CVps56TnTjeg9swe3LcnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.025 [XNIO-1 task-1] CVps56TnTjeg9swe3LcnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.025 [XNIO-1 task-1] CVps56TnTjeg9swe3LcnDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.027 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7acb7706 +20:00:48.027 [XNIO-1 task-1] CVps56TnTjeg9swe3LcnDA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.036 [XNIO-1 task-1] qv7Pk372QhaSwPu9AtdlSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:48.036 [XNIO-1 task-1] qv7Pk372QhaSwPu9AtdlSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.036 [XNIO-1 task-1] qv7Pk372QhaSwPu9AtdlSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.036 [XNIO-1 task-1] qv7Pk372QhaSwPu9AtdlSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:48.037 [XNIO-1 task-1] qv7Pk372QhaSwPu9AtdlSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "28328327-fd23-4ffd-b39b-b738adeeca4b", "28328327-fd23-4ffd-b39b-b738adeeca4b", refreshToken) +20:00:48.037 [XNIO-1 task-1] qv7Pk372QhaSwPu9AtdlSQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28328327-fd23-4ffd-b39b-b738adeeca4b is not found.","severity":"ERROR"} +20:00:48.045 [XNIO-1 task-1] jOa-KyMrSHya8_fE8KNXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.045 [XNIO-1 task-1] jOa-KyMrSHya8_fE8KNXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.045 [XNIO-1 task-1] jOa-KyMrSHya8_fE8KNXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +Jun 28, 2024 8:00:48 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +20:00:48.045 [XNIO-1 task-1] jOa-KyMrSHya8_fE8KNXwA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.054 [XNIO-1 task-1] 8Z-pZ_DvQzGuEn5hdMJYGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null +20:00:48.054 [XNIO-1 task-1] 8Z-pZ_DvQzGuEn5hdMJYGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.055 [XNIO-1 task-1] 8Z-pZ_DvQzGuEn5hdMJYGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.055 [XNIO-1 task-1] 8Z-pZ_DvQzGuEn5hdMJYGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/28328327-fd23-4ffd-b39b-b738adeeca4b, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +20:00:48.055 [XNIO-1 task-1] 8Z-pZ_DvQzGuEn5hdMJYGA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 28328327-fd23-4ffd-b39b-b738adeeca4b + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +20:00:48.062 [XNIO-1 task-1] WJQNsdDSSJiRWae8OxmRPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +20:00:48.063 [XNIO-1 task-1] WJQNsdDSSJiRWae8OxmRPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "28328327-fd23-4ffd-b39b-b738adeeca4b", "28328327-fd23-4ffd-b39b-b738adeeca4b", refreshToken) +20:00:48.063 [XNIO-1 task-1] WJQNsdDSSJiRWae8OxmRPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 28328327-fd23-4ffd-b39b-b738adeeca4b is not found.","severity":"ERROR"} +20:00:48.069 [XNIO-1 task-1] jckSF4p6TqK76Uc6QDZv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.069 [XNIO-1 task-1] jckSF4p6TqK76Uc6QDZv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.069 [XNIO-1 task-1] jckSF4p6TqK76Uc6QDZv4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.070 [XNIO-1 task-1] jckSF4p6TqK76Uc6QDZv4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.082 [XNIO-1 task-1] 3sjBmtBbQ5OblbqjeLkqeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.082 [XNIO-1 task-1] 3sjBmtBbQ5OblbqjeLkqeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.083 [XNIO-1 task-1] 3sjBmtBbQ5OblbqjeLkqeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.083 [XNIO-1 task-1] 3sjBmtBbQ5OblbqjeLkqeg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.083 [XNIO-1 task-1] 3sjBmtBbQ5OblbqjeLkqeg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +20:00:48.096 [XNIO-1 task-1] 69Hl3jfuTuS1uX6Py-dMUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +Jun 28, 2024 8:00:48 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +20:00:48.096 [XNIO-1 task-1] 69Hl3jfuTuS1uX6Py-dMUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.096 [XNIO-1 task-1] 69Hl3jfuTuS1uX6Py-dMUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.096 [XNIO-1 task-1] 69Hl3jfuTuS1uX6Py-dMUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:48.097 [XNIO-1 task-1] 69Hl3jfuTuS1uX6Py-dMUg DEBUG com.networknt.schema.TypeValidator debug - validate( "9990f3e0-f89d-4916-8201-f93b0a0e2da4", "9990f3e0-f89d-4916-8201-f93b0a0e2da4", refreshToken) +20:00:48.097 [XNIO-1 task-1] 69Hl3jfuTuS1uX6Py-dMUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9990f3e0-f89d-4916-8201-f93b0a0e2da4 is not found.","severity":"ERROR"} +20:00:48.102 [XNIO-1 task-1] ZTcw7uAiQmK7hNp4JV1C_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.102 [XNIO-1 task-1] ZTcw7uAiQmK7hNp4JV1C_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.102 [XNIO-1 task-1] ZTcw7uAiQmK7hNp4JV1C_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.102 [XNIO-1 task-1] ZTcw7uAiQmK7hNp4JV1C_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +20:00:48.103 [XNIO-1 task-1] ZTcw7uAiQmK7hNp4JV1C_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +20:00:48.114 [XNIO-1 task-1] LdisIsPzQbSKdhwOkECGHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +20:00:48.115 [XNIO-1 task-1] LdisIsPzQbSKdhwOkECGHg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9990f3e0-f89d-4916-8201-f93b0a0e2da4 is not found.","severity":"ERROR"} + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +20:00:48.122 [XNIO-1 task-1] cYHjQ_s5TPmgmBPyFlphqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +20:00:48.126 [XNIO-1 task-1] BEO8tWyQT6mHks2vAH2tYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.126 [XNIO-1 task-1] BEO8tWyQT6mHks2vAH2tYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.127 [XNIO-1 task-1] BEO8tWyQT6mHks2vAH2tYA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.130 [XNIO-1 task-1] Ts5kb4j7TYK5ENIbIdyMBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.130 [XNIO-1 task-1] Ts5kb4j7TYK5ENIbIdyMBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.130 [XNIO-1 task-1] Ts5kb4j7TYK5ENIbIdyMBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.130 [XNIO-1 task-1] Ts5kb4j7TYK5ENIbIdyMBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.131 [XNIO-1 task-1] Ts5kb4j7TYK5ENIbIdyMBA DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:48.135 [XNIO-1 task-1] Ts5kb4j7TYK5ENIbIdyMBA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:48.140 [XNIO-1 task-1] dhIee4loTmuT0gGn-Fs84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.141 [XNIO-1 task-1] dhIee4loTmuT0gGn-Fs84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.141 [XNIO-1 task-1] dhIee4loTmuT0gGn-Fs84Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.141 [XNIO-1 task-1] dhIee4loTmuT0gGn-Fs84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.141 [XNIO-1 task-1] dhIee4loTmuT0gGn-Fs84Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +20:00:48.141 [XNIO-1 task-1] dhIee4loTmuT0gGn-Fs84Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.147 [XNIO-1 task-1] YbfaNaBzTtek_8Zgn_KKMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:48.147 [XNIO-1 task-1] YbfaNaBzTtek_8Zgn_KKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:48.148 [XNIO-1 task-1] YbfaNaBzTtek_8Zgn_KKMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.148 [XNIO-1 task-1] YbfaNaBzTtek_8Zgn_KKMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +20:00:48.148 [XNIO-1 task-1] YbfaNaBzTtek_8Zgn_KKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +20:00:48.149 [XNIO-1 task-1] YbfaNaBzTtek_8Zgn_KKMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9990f3e0-f89d-4916-8201-f93b0a0e2da4 is not found.","severity":"ERROR"} +20:00:48.152 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.152 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.152 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.152 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.152 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +20:00:48.153 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:48.153 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 + +20:00:48.153 [XNIO-1 task-1] yfG2UkUESk-GOyaJvyci6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:48.160 [XNIO-1 task-1] tQ9Y1v1pTCKF2JJpPzQ6uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.160 [XNIO-1 task-1] tQ9Y1v1pTCKF2JJpPzQ6uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.160 [XNIO-1 task-1] tQ9Y1v1pTCKF2JJpPzQ6uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.160 [XNIO-1 task-1] tQ9Y1v1pTCKF2JJpPzQ6uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.161 [XNIO-1 task-1] tQ9Y1v1pTCKF2JJpPzQ6uQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.167 [XNIO-1 task-1] dBpEqIdDRo6W7qM3686j0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.167 [XNIO-1 task-1] dBpEqIdDRo6W7qM3686j0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.167 [XNIO-1 task-1] dBpEqIdDRo6W7qM3686j0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.168 [XNIO-1 task-1] dBpEqIdDRo6W7qM3686j0A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.168 [XNIO-1 task-1] dBpEqIdDRo6W7qM3686j0A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.176 [XNIO-1 task-1] yzaP8XxyTWe48j8pkzcQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.177 [XNIO-1 task-1] yzaP8XxyTWe48j8pkzcQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.177 [XNIO-1 task-1] yzaP8XxyTWe48j8pkzcQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.177 [XNIO-1 task-1] yzaP8XxyTWe48j8pkzcQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.177 [XNIO-1 task-1] yzaP8XxyTWe48j8pkzcQTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.184 [XNIO-1 task-1] hvOw2y1LSumpSQE6ztkBlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.184 [XNIO-1 task-1] hvOw2y1LSumpSQE6ztkBlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.184 [XNIO-1 task-1] hvOw2y1LSumpSQE6ztkBlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.184 [XNIO-1 task-1] hvOw2y1LSumpSQE6ztkBlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.184 [XNIO-1 task-1] hvOw2y1LSumpSQE6ztkBlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:48.186 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e7c727ae-94ed-4c09-9238-073e60a3763c +20:00:48.187 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e7c727ae-94ed-4c09-9238-073e60a3763c +20:00:48.188 [XNIO-1 task-1] N8kuIiZlRKSaPSpIxErQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.189 [XNIO-1 task-1] N8kuIiZlRKSaPSpIxErQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.189 [XNIO-1 task-1] N8kuIiZlRKSaPSpIxErQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.189 [XNIO-1 task-1] N8kuIiZlRKSaPSpIxErQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.189 [XNIO-1 task-1] N8kuIiZlRKSaPSpIxErQiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.196 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:48.204 [XNIO-1 task-1] idiJ16QLS62C5fVqJmyy3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.204 [XNIO-1 task-1] idiJ16QLS62C5fVqJmyy3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.204 [XNIO-1 task-1] idiJ16QLS62C5fVqJmyy3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.204 [XNIO-1 task-1] idiJ16QLS62C5fVqJmyy3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.204 [XNIO-1 task-1] idiJ16QLS62C5fVqJmyy3Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.210 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e7c727ae-94ed-4c09-9238-073e60a3763c +20:00:48.212 [XNIO-1 task-1] rlmj9BUtRA6lO4wcvVkEYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.212 [XNIO-1 task-1] rlmj9BUtRA6lO4wcvVkEYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.212 [XNIO-1 task-1] rlmj9BUtRA6lO4wcvVkEYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.213 [XNIO-1 task-1] rlmj9BUtRA6lO4wcvVkEYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.213 [XNIO-1 task-1] rlmj9BUtRA6lO4wcvVkEYQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.217 [XNIO-1 task-1] 3xD5dJxVSC6_zGNiPUPmoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.217 [XNIO-1 task-1] 3xD5dJxVSC6_zGNiPUPmoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.217 [XNIO-1 task-1] 3xD5dJxVSC6_zGNiPUPmoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.217 [XNIO-1 task-1] 3xD5dJxVSC6_zGNiPUPmoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.217 [XNIO-1 task-1] 3xD5dJxVSC6_zGNiPUPmoA DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:48.218 [XNIO-1 task-1] 3xD5dJxVSC6_zGNiPUPmoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 65791578-b9d5-4cae-bed3-7dab5b4c201a is not found.","severity":"ERROR"} +20:00:48.223 [XNIO-1 task-1] OBTosdP2TJ-rLMqGQNUnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:48.223 [XNIO-1 task-1] OBTosdP2TJ-rLMqGQNUnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.223 [XNIO-1 task-1] OBTosdP2TJ-rLMqGQNUnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.223 [XNIO-1 task-1] OBTosdP2TJ-rLMqGQNUnIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:48.223 [XNIO-1 task-1] OBTosdP2TJ-rLMqGQNUnIw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 +20:00:48.230 [XNIO-1 task-1] Ogp7DRPCTV-KEQk4lX4F2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.230 [XNIO-1 task-1] Ogp7DRPCTV-KEQk4lX4F2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.230 [XNIO-1 task-1] Ogp7DRPCTV-KEQk4lX4F2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.230 [XNIO-1 task-1] Ogp7DRPCTV-KEQk4lX4F2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.230 [XNIO-1 task-1] Ogp7DRPCTV-KEQk4lX4F2w DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:48.231 [XNIO-1 task-1] Ogp7DRPCTV-KEQk4lX4F2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 65791578-b9d5-4cae-bed3-7dab5b4c201a is not found.","severity":"ERROR"} +20:00:48.245 [XNIO-1 task-1] wLZ1D1e8TE6vNyAETyaKYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.245 [XNIO-1 task-1] wLZ1D1e8TE6vNyAETyaKYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.245 [XNIO-1 task-1] wLZ1D1e8TE6vNyAETyaKYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.249 [XNIO-1 task-1] wLZ1D1e8TE6vNyAETyaKYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.250 [XNIO-1 task-1] wLZ1D1e8TE6vNyAETyaKYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.252 [XNIO-1 task-1] FwiwPqVHQZeiKC2xg3R_Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.253 [XNIO-1 task-1] FwiwPqVHQZeiKC2xg3R_Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.253 [XNIO-1 task-1] FwiwPqVHQZeiKC2xg3R_Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.253 [XNIO-1 task-1] FwiwPqVHQZeiKC2xg3R_Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.253 [XNIO-1 task-1] FwiwPqVHQZeiKC2xg3R_Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:48.253 [XNIO-1 task-1] FwiwPqVHQZeiKC2xg3R_Eg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 65791578-b9d5-4cae-bed3-7dab5b4c201a is not found.","severity":"ERROR"} +20:00:48.256 [XNIO-1 task-1] xhuPzF8eT727RJh3m7NuGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.256 [XNIO-1 task-1] xhuPzF8eT727RJh3m7NuGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.256 [XNIO-1 task-1] xhuPzF8eT727RJh3m7NuGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.261 [XNIO-1 task-1] xhuPzF8eT727RJh3m7NuGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.264 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:61223882-e1af-4ed2-a88e-6e758089eaa6 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:48.274 [XNIO-1 task-1] 5ZopmJVuSN-vNrgfQ1__TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.274 [XNIO-1 task-1] 5ZopmJVuSN-vNrgfQ1__TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.274 [XNIO-1 task-1] 5ZopmJVuSN-vNrgfQ1__TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.274 [XNIO-1 task-1] 5ZopmJVuSN-vNrgfQ1__TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.274 [XNIO-1 task-1] 5ZopmJVuSN-vNrgfQ1__TA DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:48.275 [XNIO-1 task-1] 5ZopmJVuSN-vNrgfQ1__TA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:48.283 [XNIO-1 task-1] dpZ9GQrTRBm4kI4iI5jRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.283 [XNIO-1 task-1] dpZ9GQrTRBm4kI4iI5jRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.283 [XNIO-1 task-1] dpZ9GQrTRBm4kI4iI5jRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.284 [XNIO-1 task-1] dpZ9GQrTRBm4kI4iI5jRvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.294 [XNIO-1 task-1] 4pu08YvCThSnOuqtROQbBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.296 [XNIO-1 task-1] 4pu08YvCThSnOuqtROQbBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.296 [XNIO-1 task-1] 4pu08YvCThSnOuqtROQbBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.297 [XNIO-1 task-1] 4pu08YvCThSnOuqtROQbBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.297 [XNIO-1 task-1] 4pu08YvCThSnOuqtROQbBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:48.297 [XNIO-1 task-1] 4pu08YvCThSnOuqtROQbBQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:48.307 [XNIO-1 task-1] 7uClxD7lQiiMhD93RWvwpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.307 [XNIO-1 task-1] 7uClxD7lQiiMhD93RWvwpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.308 [XNIO-1 task-1] 7uClxD7lQiiMhD93RWvwpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.308 [XNIO-1 task-1] 7uClxD7lQiiMhD93RWvwpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.308 [XNIO-1 task-1] 7uClxD7lQiiMhD93RWvwpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.318 [XNIO-1 task-1] BXTE3koMR6OPQDtVOKCXaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.318 [XNIO-1 task-1] BXTE3koMR6OPQDtVOKCXaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.318 [XNIO-1 task-1] BXTE3koMR6OPQDtVOKCXaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.319 [XNIO-1 task-1] BXTE3koMR6OPQDtVOKCXaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.319 [XNIO-1 task-1] BXTE3koMR6OPQDtVOKCXaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:48.320 [XNIO-1 task-1] BXTE3koMR6OPQDtVOKCXaQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:48.323 [XNIO-1 task-1] YrUOQVtwSzO29xvw2-CzWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.323 [XNIO-1 task-1] YrUOQVtwSzO29xvw2-CzWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.323 [XNIO-1 task-1] YrUOQVtwSzO29xvw2-CzWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.324 [XNIO-1 task-1] YrUOQVtwSzO29xvw2-CzWA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.331 [XNIO-1 task-1] NoXUAOS3S0qSJarUSKVA6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.332 [XNIO-1 task-1] NoXUAOS3S0qSJarUSKVA6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.332 [XNIO-1 task-1] NoXUAOS3S0qSJarUSKVA6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.332 [XNIO-1 task-1] NoXUAOS3S0qSJarUSKVA6A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.332 [XNIO-1 task-1] NoXUAOS3S0qSJarUSKVA6A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.343 [XNIO-1 task-1] y2rHiHSLSiG_EhFmbsyTOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.343 [XNIO-1 task-1] y2rHiHSLSiG_EhFmbsyTOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.343 [XNIO-1 task-1] y2rHiHSLSiG_EhFmbsyTOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.344 [XNIO-1 task-1] y2rHiHSLSiG_EhFmbsyTOg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.344 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ded706a +20:00:48.347 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:5ded706a +20:00:48.353 [XNIO-1 task-1] YntNbIc9TDaFC4AJbe_9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.353 [XNIO-1 task-1] YntNbIc9TDaFC4AJbe_9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.353 [XNIO-1 task-1] YntNbIc9TDaFC4AJbe_9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.353 [XNIO-1 task-1] YntNbIc9TDaFC4AJbe_9nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.354 [XNIO-1 task-1] YntNbIc9TDaFC4AJbe_9nw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.356 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:627c71d7-5480-4712-9595-672acc38a639 +20:00:48.358 [XNIO-1 task-1] wRMLGVNzTxSl-ScVne_TFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.358 [XNIO-1 task-1] wRMLGVNzTxSl-ScVne_TFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.358 [XNIO-1 task-1] wRMLGVNzTxSl-ScVne_TFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.359 [XNIO-1 task-1] wRMLGVNzTxSl-ScVne_TFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.359 [XNIO-1 task-1] wRMLGVNzTxSl-ScVne_TFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.360 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:48.368 [XNIO-1 task-1] Ens8aJiWT3yUmkWLHyceZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.368 [XNIO-1 task-1] Ens8aJiWT3yUmkWLHyceZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.368 [XNIO-1 task-1] Ens8aJiWT3yUmkWLHyceZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.368 [XNIO-1 task-1] Ens8aJiWT3yUmkWLHyceZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.369 [XNIO-1 task-1] Ens8aJiWT3yUmkWLHyceZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.371 [XNIO-1 task-1] YZfOaiqhQMOdp_33tcaTMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.371 [XNIO-1 task-1] YZfOaiqhQMOdp_33tcaTMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.377 [XNIO-1 task-1] YZfOaiqhQMOdp_33tcaTMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.378 [XNIO-1 task-1] YZfOaiqhQMOdp_33tcaTMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.378 [XNIO-1 task-1] YZfOaiqhQMOdp_33tcaTMA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.383 [XNIO-1 task-1] U0_5cbqWSymChs3ig4T5Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.383 [XNIO-1 task-1] U0_5cbqWSymChs3ig4T5Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.384 [XNIO-1 task-1] U0_5cbqWSymChs3ig4T5Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.384 [XNIO-1 task-1] U0_5cbqWSymChs3ig4T5Hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.391 [XNIO-1 task-1] jSoaLSIbQaOURS1-fqxxsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:48.391 [XNIO-1 task-1] jSoaLSIbQaOURS1-fqxxsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.391 [XNIO-1 task-1] jSoaLSIbQaOURS1-fqxxsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.392 [XNIO-1 task-1] jSoaLSIbQaOURS1-fqxxsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:48.392 [XNIO-1 task-1] jSoaLSIbQaOURS1-fqxxsA DEBUG com.networknt.schema.TypeValidator debug - validate( "9990f3e0-f89d-4916-8201-f93b0a0e2da4", "9990f3e0-f89d-4916-8201-f93b0a0e2da4", refreshToken) +20:00:48.394 [XNIO-1 task-1] jSoaLSIbQaOURS1-fqxxsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9990f3e0-f89d-4916-8201-f93b0a0e2da4 is not found.","severity":"ERROR"} +20:00:48.399 [XNIO-1 task-1] ijWzRgIyQHaqpyFUxYUs1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.401 [XNIO-1 task-1] ijWzRgIyQHaqpyFUxYUs1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.401 [XNIO-1 task-1] ijWzRgIyQHaqpyFUxYUs1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.401 [XNIO-1 task-1] ijWzRgIyQHaqpyFUxYUs1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.401 [XNIO-1 task-1] ijWzRgIyQHaqpyFUxYUs1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.401 [XNIO-1 task-1] ijWzRgIyQHaqpyFUxYUs1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:48.406 [XNIO-1 task-1] ijWzRgIyQHaqpyFUxYUs1Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:48.410 [XNIO-1 task-1] qhqxdTAQQAq447TX_yFRlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.410 [XNIO-1 task-1] qhqxdTAQQAq447TX_yFRlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.410 [XNIO-1 task-1] qhqxdTAQQAq447TX_yFRlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.411 [XNIO-1 task-1] qhqxdTAQQAq447TX_yFRlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.411 [XNIO-1 task-1] qhqxdTAQQAq447TX_yFRlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.421 [XNIO-1 task-1] E6xU5ybySAOMiRTx0so3Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5, base path is set to: null +20:00:48.421 [XNIO-1 task-1] E6xU5ybySAOMiRTx0so3Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.422 [XNIO-1 task-1] E6xU5ybySAOMiRTx0so3Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.422 [XNIO-1 task-1] E6xU5ybySAOMiRTx0so3Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5, base path is set to: null +20:00:48.422 [XNIO-1 task-1] E6xU5ybySAOMiRTx0so3Og DEBUG com.networknt.schema.TypeValidator debug - validate( "f2403166-383c-474a-9565-ced1843ed5a5", "f2403166-383c-474a-9565-ced1843ed5a5", refreshToken) +20:00:48.439 [XNIO-1 task-1] u82jKS7MSPm6e96U0TBP8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab, base path is set to: null +20:00:48.440 [XNIO-1 task-1] u82jKS7MSPm6e96U0TBP8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.440 [XNIO-1 task-1] u82jKS7MSPm6e96U0TBP8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.440 [XNIO-1 task-1] u82jKS7MSPm6e96U0TBP8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab, base path is set to: null +20:00:48.440 [XNIO-1 task-1] u82jKS7MSPm6e96U0TBP8g DEBUG com.networknt.schema.TypeValidator debug - validate( "7b616717-2b4c-4005-bcbf-aa5481c86eab", "7b616717-2b4c-4005-bcbf-aa5481c86eab", refreshToken) +20:00:48.456 [XNIO-1 task-1] Z3CeQZpvTHyR-NWYBYlKEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5, base path is set to: null +20:00:48.456 [XNIO-1 task-1] Z3CeQZpvTHyR-NWYBYlKEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.456 [XNIO-1 task-1] Z3CeQZpvTHyR-NWYBYlKEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.456 [XNIO-1 task-1] Z3CeQZpvTHyR-NWYBYlKEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5, base path is set to: null +20:00:48.457 [XNIO-1 task-1] Z3CeQZpvTHyR-NWYBYlKEA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2403166-383c-474a-9565-ced1843ed5a5", "f2403166-383c-474a-9565-ced1843ed5a5", refreshToken) +20:00:48.459 [XNIO-1 task-1] Z3CeQZpvTHyR-NWYBYlKEA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2403166-383c-474a-9565-ced1843ed5a5 is not found.","severity":"ERROR"} +20:00:48.464 [XNIO-1 task-1] xN0XK7XmTDCpMq3WZO16Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab +20:00:48.464 [XNIO-1 task-1] xN0XK7XmTDCpMq3WZO16Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.464 [XNIO-1 task-1] xN0XK7XmTDCpMq3WZO16Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.464 [XNIO-1 task-1] xN0XK7XmTDCpMq3WZO16Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab +20:00:48.465 [XNIO-1 task-1] xN0XK7XmTDCpMq3WZO16Ow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7b616717-2b4c-4005-bcbf-aa5481c86eab +20:00:48.473 [XNIO-1 task-1] b-whS49pS3CDrv4yLEXcYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.474 [XNIO-1 task-1] b-whS49pS3CDrv4yLEXcYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.474 [XNIO-1 task-1] b-whS49pS3CDrv4yLEXcYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.475 [XNIO-1 task-1] b-whS49pS3CDrv4yLEXcYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.475 [XNIO-1 task-1] b-whS49pS3CDrv4yLEXcYw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.484 [XNIO-1 task-1] pq1nsbLJQvCk1vQ8Zxs42w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:48.484 [XNIO-1 task-1] pq1nsbLJQvCk1vQ8Zxs42w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.484 [XNIO-1 task-1] pq1nsbLJQvCk1vQ8Zxs42w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.484 [XNIO-1 task-1] pq1nsbLJQvCk1vQ8Zxs42w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/dff6a2dd-b622-4624-b5ec-60c125df23e1, base path is set to: null +20:00:48.484 [XNIO-1 task-1] pq1nsbLJQvCk1vQ8Zxs42w DEBUG com.networknt.schema.TypeValidator debug - validate( "dff6a2dd-b622-4624-b5ec-60c125df23e1", "dff6a2dd-b622-4624-b5ec-60c125df23e1", refreshToken) +20:00:48.485 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dff6a2dd-b622-4624-b5ec-60c125df23e1 +20:00:48.493 [XNIO-1 task-1] 2040b4zoRBCQ6DtGfH7dxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5, base path is set to: null +20:00:48.493 [XNIO-1 task-1] 2040b4zoRBCQ6DtGfH7dxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.493 [XNIO-1 task-1] 2040b4zoRBCQ6DtGfH7dxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.493 [XNIO-1 task-1] 2040b4zoRBCQ6DtGfH7dxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5, base path is set to: null +20:00:48.493 [XNIO-1 task-1] 2040b4zoRBCQ6DtGfH7dxw DEBUG com.networknt.schema.TypeValidator debug - validate( "f2403166-383c-474a-9565-ced1843ed5a5", "f2403166-383c-474a-9565-ced1843ed5a5", refreshToken) +20:00:48.494 [XNIO-1 task-1] 2040b4zoRBCQ6DtGfH7dxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2403166-383c-474a-9565-ced1843ed5a5 is not found.","severity":"ERROR"} +20:00:48.498 [XNIO-1 task-1] QIpPZo1XSFav-CSv_xtkeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.499 [XNIO-1 task-1] QIpPZo1XSFav-CSv_xtkeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.499 [XNIO-1 task-1] QIpPZo1XSFav-CSv_xtkeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.499 [XNIO-1 task-1] QIpPZo1XSFav-CSv_xtkeg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.516 [XNIO-1 task-1] CSLk8UnhQHarUeWpnHs5HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab, base path is set to: null +20:00:48.516 [XNIO-1 task-1] CSLk8UnhQHarUeWpnHs5HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.516 [XNIO-1 task-1] CSLk8UnhQHarUeWpnHs5HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.516 [XNIO-1 task-1] CSLk8UnhQHarUeWpnHs5HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab, base path is set to: null +20:00:48.517 [XNIO-1 task-1] CSLk8UnhQHarUeWpnHs5HA DEBUG com.networknt.schema.TypeValidator debug - validate( "7b616717-2b4c-4005-bcbf-aa5481c86eab", "7b616717-2b4c-4005-bcbf-aa5481c86eab", refreshToken) +20:00:48.517 [XNIO-1 task-1] CSLk8UnhQHarUeWpnHs5HA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7b616717-2b4c-4005-bcbf-aa5481c86eab is not found.","severity":"ERROR"} +20:00:48.525 [XNIO-1 task-1] KroUabopRb21o4M13tRVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.525 [XNIO-1 task-1] KroUabopRb21o4M13tRVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.525 [XNIO-1 task-1] KroUabopRb21o4M13tRVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.525 [XNIO-1 task-1] KroUabopRb21o4M13tRVwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.538 [XNIO-1 task-1] KY8ECSrSTXedzsMzY71z2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.538 [XNIO-1 task-1] KY8ECSrSTXedzsMzY71z2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.538 [XNIO-1 task-1] KY8ECSrSTXedzsMzY71z2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.539 [XNIO-1 task-1] KY8ECSrSTXedzsMzY71z2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.539 [XNIO-1 task-1] KY8ECSrSTXedzsMzY71z2g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.547 [XNIO-1 task-1] nULHaaCPTEyNp33IjEW4lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5 +20:00:48.547 [XNIO-1 task-1] nULHaaCPTEyNp33IjEW4lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.547 [XNIO-1 task-1] nULHaaCPTEyNp33IjEW4lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.547 [XNIO-1 task-1] nULHaaCPTEyNp33IjEW4lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2403166-383c-474a-9565-ced1843ed5a5 +20:00:48.547 [XNIO-1 task-1] nULHaaCPTEyNp33IjEW4lg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f2403166-383c-474a-9565-ced1843ed5a5 +20:00:48.551 [XNIO-1 task-1] iRIE-G0tQtCeKGy0pbYqIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.551 [XNIO-1 task-1] iRIE-G0tQtCeKGy0pbYqIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.551 [XNIO-1 task-1] iRIE-G0tQtCeKGy0pbYqIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.552 [XNIO-1 task-1] iRIE-G0tQtCeKGy0pbYqIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.552 [XNIO-1 task-1] iRIE-G0tQtCeKGy0pbYqIg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.562 [XNIO-1 task-1] SssLm_rpQjePSS09EVjxeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab +20:00:48.562 [XNIO-1 task-1] SssLm_rpQjePSS09EVjxeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.562 [XNIO-1 task-1] SssLm_rpQjePSS09EVjxeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.562 [XNIO-1 task-1] SssLm_rpQjePSS09EVjxeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab +20:00:48.562 [XNIO-1 task-1] SssLm_rpQjePSS09EVjxeA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7b616717-2b4c-4005-bcbf-aa5481c86eab +20:00:48.569 [XNIO-1 task-1] GdOJ2vbjT-SGy8GJWc_1tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab, base path is set to: null +20:00:48.569 [XNIO-1 task-1] GdOJ2vbjT-SGy8GJWc_1tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.569 [XNIO-1 task-1] GdOJ2vbjT-SGy8GJWc_1tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.569 [XNIO-1 task-1] GdOJ2vbjT-SGy8GJWc_1tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7b616717-2b4c-4005-bcbf-aa5481c86eab, base path is set to: null +20:00:48.570 [XNIO-1 task-1] GdOJ2vbjT-SGy8GJWc_1tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7b616717-2b4c-4005-bcbf-aa5481c86eab", "7b616717-2b4c-4005-bcbf-aa5481c86eab", refreshToken) +20:00:48.570 [XNIO-1 task-1] GdOJ2vbjT-SGy8GJWc_1tQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7b616717-2b4c-4005-bcbf-aa5481c86eab is not found.","severity":"ERROR"} +20:00:48.572 [XNIO-1 task-1] KaajhxyqQJySsipF8Y9xEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.573 [XNIO-1 task-1] KaajhxyqQJySsipF8Y9xEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.573 [XNIO-1 task-1] KaajhxyqQJySsipF8Y9xEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.573 [XNIO-1 task-1] KaajhxyqQJySsipF8Y9xEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.573 [XNIO-1 task-1] KaajhxyqQJySsipF8Y9xEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.607 [XNIO-1 task-1] R51DHEVGQ5aoCtxH5zBqXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.607 [XNIO-1 task-1] R51DHEVGQ5aoCtxH5zBqXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.607 [XNIO-1 task-1] R51DHEVGQ5aoCtxH5zBqXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.609 [XNIO-1 task-1] R51DHEVGQ5aoCtxH5zBqXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.625 [XNIO-1 task-1] GehKSLBhScmVFXTKeamTjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.625 [XNIO-1 task-1] GehKSLBhScmVFXTKeamTjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.625 [XNIO-1 task-1] GehKSLBhScmVFXTKeamTjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.625 [XNIO-1 task-1] GehKSLBhScmVFXTKeamTjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.626 [XNIO-1 task-1] GehKSLBhScmVFXTKeamTjQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.638 [XNIO-1 task-1] qV9LdwQ8Sum5vzWGheZhMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.638 [XNIO-1 task-1] qV9LdwQ8Sum5vzWGheZhMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.638 [XNIO-1 task-1] qV9LdwQ8Sum5vzWGheZhMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.638 [XNIO-1 task-1] qV9LdwQ8Sum5vzWGheZhMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.639 [XNIO-1 task-1] qV9LdwQ8Sum5vzWGheZhMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.644 [XNIO-1 task-1] 0iCL5hT8QDa_BHfVt9FDEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:48.644 [XNIO-1 task-1] 0iCL5hT8QDa_BHfVt9FDEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.644 [XNIO-1 task-1] 0iCL5hT8QDa_BHfVt9FDEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.645 [XNIO-1 task-1] 0iCL5hT8QDa_BHfVt9FDEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:48.645 [XNIO-1 task-1] 0iCL5hT8QDa_BHfVt9FDEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3d73e6b4-dc9b-4743-9617-2cfa1ab4d184", "3d73e6b4-dc9b-4743-9617-2cfa1ab4d184", refreshToken) +20:00:48.645 [XNIO-1 task-1] 0iCL5hT8QDa_BHfVt9FDEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 is not found.","severity":"ERROR"} +20:00:48.659 [XNIO-1 task-1] a_RSHKDzRrSDmNxJNIuVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.659 [XNIO-1 task-1] a_RSHKDzRrSDmNxJNIuVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.659 [XNIO-1 task-1] a_RSHKDzRrSDmNxJNIuVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.659 [XNIO-1 task-1] a_RSHKDzRrSDmNxJNIuVMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.659 [XNIO-1 task-1] a_RSHKDzRrSDmNxJNIuVMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.662 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:df78f214 +20:00:48.663 [XNIO-1 task-1] 12BNoGHSR76GjKs8tdPO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.664 [XNIO-1 task-1] 12BNoGHSR76GjKs8tdPO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.664 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:df78f214 +20:00:48.664 [XNIO-1 task-1] 12BNoGHSR76GjKs8tdPO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.665 [XNIO-1 task-1] 12BNoGHSR76GjKs8tdPO8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.666 [XNIO-1 task-1] 12BNoGHSR76GjKs8tdPO8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.672 [XNIO-1 task-1] Ip_c3T8OR66oFY3-QmtMHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.673 [XNIO-1 task-1] Ip_c3T8OR66oFY3-QmtMHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.673 [XNIO-1 task-1] Ip_c3T8OR66oFY3-QmtMHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.673 [XNIO-1 task-1] Ip_c3T8OR66oFY3-QmtMHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.674 [XNIO-1 task-1] Ip_c3T8OR66oFY3-QmtMHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.683 [XNIO-1 task-1] VGqjviMASw-4Zc7J1JprEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.683 [XNIO-1 task-1] VGqjviMASw-4Zc7J1JprEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.683 [XNIO-1 task-1] VGqjviMASw-4Zc7J1JprEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.683 [XNIO-1 task-1] VGqjviMASw-4Zc7J1JprEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.684 [XNIO-1 task-1] VGqjviMASw-4Zc7J1JprEg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.686 [XNIO-1 task-1] O98t9JuBQaiX_bFKTuKbaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/81382122-73be-4d76-801a-0c03e1105f42, base path is set to: null +20:00:48.687 [XNIO-1 task-1] O98t9JuBQaiX_bFKTuKbaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.687 [XNIO-1 task-1] O98t9JuBQaiX_bFKTuKbaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.687 [XNIO-1 task-1] O98t9JuBQaiX_bFKTuKbaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/81382122-73be-4d76-801a-0c03e1105f42, base path is set to: null +20:00:48.687 [XNIO-1 task-1] O98t9JuBQaiX_bFKTuKbaA DEBUG com.networknt.schema.TypeValidator debug - validate( "81382122-73be-4d76-801a-0c03e1105f42", "81382122-73be-4d76-801a-0c03e1105f42", refreshToken) +20:00:48.690 [XNIO-1 task-1] O98t9JuBQaiX_bFKTuKbaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 81382122-73be-4d76-801a-0c03e1105f42 is not found.","severity":"ERROR"} +20:00:48.692 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:df78f214 +20:00:48.692 [XNIO-1 task-1] jpJdZm5xQv68yHk1fcSH5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:48.693 [XNIO-1 task-1] jpJdZm5xQv68yHk1fcSH5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.693 [XNIO-1 task-1] jpJdZm5xQv68yHk1fcSH5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.693 [XNIO-1 task-1] jpJdZm5xQv68yHk1fcSH5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:48.693 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:892073d1-149a-47c0-af15-87a7224d6967 +20:00:48.693 [XNIO-1 task-1] jpJdZm5xQv68yHk1fcSH5A DEBUG com.networknt.schema.TypeValidator debug - validate( "3d73e6b4-dc9b-4743-9617-2cfa1ab4d184", "3d73e6b4-dc9b-4743-9617-2cfa1ab4d184", refreshToken) +20:00:48.693 [XNIO-1 task-1] jpJdZm5xQv68yHk1fcSH5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 is not found.","severity":"ERROR"} +20:00:48.697 [XNIO-1 task-1] PrqAyX7aREyiNPrHD9HY0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/81382122-73be-4d76-801a-0c03e1105f42 +20:00:48.697 [XNIO-1 task-1] PrqAyX7aREyiNPrHD9HY0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.697 [XNIO-1 task-1] PrqAyX7aREyiNPrHD9HY0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.697 [XNIO-1 task-1] PrqAyX7aREyiNPrHD9HY0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/81382122-73be-4d76-801a-0c03e1105f42 +20:00:48.698 [XNIO-1 task-1] PrqAyX7aREyiNPrHD9HY0g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 81382122-73be-4d76-801a-0c03e1105f42 +20:00:48.702 [XNIO-1 task-1] atruLLpdTIaV5sGx-efUQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:48.703 [XNIO-1 task-1] atruLLpdTIaV5sGx-efUQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.703 [XNIO-1 task-1] atruLLpdTIaV5sGx-efUQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.704 [XNIO-1 task-1] atruLLpdTIaV5sGx-efUQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:48.704 [XNIO-1 task-1] atruLLpdTIaV5sGx-efUQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.705 [XNIO-1 task-1] atruLLpdTIaV5sGx-efUQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 +20:00:48.705 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:df78f214 +20:00:48.710 [XNIO-1 task-1] tHIeB1bJTImItuG08HKQeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.711 [XNIO-1 task-1] tHIeB1bJTImItuG08HKQeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.711 [XNIO-1 task-1] tHIeB1bJTImItuG08HKQeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.711 [XNIO-1 task-1] tHIeB1bJTImItuG08HKQeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.712 [XNIO-1 task-1] tHIeB1bJTImItuG08HKQeQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.722 [XNIO-1 task-1] WgbZIA3tQcOAKhOBWUgEkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.722 [XNIO-1 task-1] WgbZIA3tQcOAKhOBWUgEkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.722 [XNIO-1 task-1] WgbZIA3tQcOAKhOBWUgEkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.723 [XNIO-1 task-1] WgbZIA3tQcOAKhOBWUgEkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.723 [XNIO-1 task-1] WgbZIA3tQcOAKhOBWUgEkw DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:48.724 [XNIO-1 task-1] WgbZIA3tQcOAKhOBWUgEkw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:48.728 [XNIO-1 task-1] t0U_VBhaS--IvlhBGeac3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.728 [XNIO-1 task-1] t0U_VBhaS--IvlhBGeac3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.728 [XNIO-1 task-1] t0U_VBhaS--IvlhBGeac3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.728 [XNIO-1 task-1] t0U_VBhaS--IvlhBGeac3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.729 [XNIO-1 task-1] t0U_VBhaS--IvlhBGeac3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.735 [XNIO-1 task-1] 6aEJkWMIREi_O4WJOo_vlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.735 [XNIO-1 task-1] 6aEJkWMIREi_O4WJOo_vlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.735 [XNIO-1 task-1] 6aEJkWMIREi_O4WJOo_vlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.736 [XNIO-1 task-1] 6aEJkWMIREi_O4WJOo_vlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.736 [XNIO-1 task-1] 6aEJkWMIREi_O4WJOo_vlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:48.737 [XNIO-1 task-1] 6aEJkWMIREi_O4WJOo_vlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:48.738 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9d6eefa1 +20:00:48.741 [XNIO-1 task-1] IktwqVyqRJ-nmJFAOLoqKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:48.741 [XNIO-1 task-1] IktwqVyqRJ-nmJFAOLoqKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.741 [XNIO-1 task-1] IktwqVyqRJ-nmJFAOLoqKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.741 [XNIO-1 task-1] IktwqVyqRJ-nmJFAOLoqKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:48.741 [XNIO-1 task-1] IktwqVyqRJ-nmJFAOLoqKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9990f3e0-f89d-4916-8201-f93b0a0e2da4", "9990f3e0-f89d-4916-8201-f93b0a0e2da4", refreshToken) +20:00:48.742 [XNIO-1 task-1] IktwqVyqRJ-nmJFAOLoqKQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9990f3e0-f89d-4916-8201-f93b0a0e2da4 is not found.","severity":"ERROR"} +20:00:48.747 [XNIO-1 task-1] Y01iiCFeRUmwBnL08M66lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.747 [XNIO-1 task-1] Y01iiCFeRUmwBnL08M66lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.747 [XNIO-1 task-1] Y01iiCFeRUmwBnL08M66lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.747 [XNIO-1 task-1] Y01iiCFeRUmwBnL08M66lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.747 [XNIO-1 task-1] Y01iiCFeRUmwBnL08M66lw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:48.754 [XNIO-1 task-1] WMwNkOFGSYKBR8_dckDcWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.755 [XNIO-1 task-1] WMwNkOFGSYKBR8_dckDcWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.755 [XNIO-1 task-1] WMwNkOFGSYKBR8_dckDcWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.756 [XNIO-1 task-1] WMwNkOFGSYKBR8_dckDcWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.756 [XNIO-1 task-1] WMwNkOFGSYKBR8_dckDcWg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.774 [XNIO-1 task-1] Av7AjkOpT4iTPEXr5NjL8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.774 [XNIO-1 task-1] Av7AjkOpT4iTPEXr5NjL8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.774 [XNIO-1 task-1] Av7AjkOpT4iTPEXr5NjL8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.775 [XNIO-1 task-1] Av7AjkOpT4iTPEXr5NjL8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.776 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0a12ee02-d547-4c82-9502-2b85c5b9cb43 +20:00:48.796 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9d6eefa1 +20:00:48.805 [XNIO-1 task-1] 4KBCrvuoRraBDWlzryz44g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79 +20:00:48.805 [XNIO-1 task-1] 4KBCrvuoRraBDWlzryz44g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.806 [XNIO-1 task-1] 4KBCrvuoRraBDWlzryz44g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.806 [XNIO-1 task-1] 4KBCrvuoRraBDWlzryz44g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79 +20:00:48.806 [XNIO-1 task-1] 4KBCrvuoRraBDWlzryz44g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d7fa3a78-85b4-43fd-ae3c-6dff1006da79 +20:00:48.813 [XNIO-1 task-1] pBlBDUEeS1mIdqGmuPfpnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.813 [XNIO-1 task-1] pBlBDUEeS1mIdqGmuPfpnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.813 [XNIO-1 task-1] pBlBDUEeS1mIdqGmuPfpnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.813 [XNIO-1 task-1] pBlBDUEeS1mIdqGmuPfpnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.814 [XNIO-1 task-1] pBlBDUEeS1mIdqGmuPfpnQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:48.818 [XNIO-1 task-1] 75Yfo7bHSqC0yGki6HPL4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.818 [XNIO-1 task-1] 75Yfo7bHSqC0yGki6HPL4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.818 [XNIO-1 task-1] 75Yfo7bHSqC0yGki6HPL4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.818 [XNIO-1 task-1] 75Yfo7bHSqC0yGki6HPL4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:48.818 [XNIO-1 task-1] 75Yfo7bHSqC0yGki6HPL4g DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:48.829 [XNIO-1 task-1] 75Yfo7bHSqC0yGki6HPL4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:48.832 [XNIO-1 task-1] YHWZPu6rSt-LBPlZ88RfSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79, base path is set to: null +20:00:48.832 [XNIO-1 task-1] YHWZPu6rSt-LBPlZ88RfSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.832 [XNIO-1 task-1] YHWZPu6rSt-LBPlZ88RfSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.834 [XNIO-1 task-1] YHWZPu6rSt-LBPlZ88RfSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79, base path is set to: null +20:00:48.834 [XNIO-1 task-1] YHWZPu6rSt-LBPlZ88RfSw DEBUG com.networknt.schema.TypeValidator debug - validate( "d7fa3a78-85b4-43fd-ae3c-6dff1006da79", "d7fa3a78-85b4-43fd-ae3c-6dff1006da79", refreshToken) +20:00:48.835 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9d6eefa1 +20:00:48.836 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0f5073b6-de67-402e-abd0-22ea3a1edc50 +20:00:48.837 [XNIO-1 task-1] dtsv30U5S9WmG6zyeLKr5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.837 [XNIO-1 task-1] dtsv30U5S9WmG6zyeLKr5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.837 [XNIO-1 task-1] dtsv30U5S9WmG6zyeLKr5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.838 [XNIO-1 task-1] dtsv30U5S9WmG6zyeLKr5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.839 [XNIO-1 task-1] dtsv30U5S9WmG6zyeLKr5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.841 [XNIO-1 task-1] xOVW0KSTQTK-by00nWNysg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79, base path is set to: null +20:00:48.842 [XNIO-1 task-1] xOVW0KSTQTK-by00nWNysg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.842 [XNIO-1 task-1] xOVW0KSTQTK-by00nWNysg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.843 [XNIO-1 task-1] xOVW0KSTQTK-by00nWNysg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79, base path is set to: null +20:00:48.843 [XNIO-1 task-1] xOVW0KSTQTK-by00nWNysg DEBUG com.networknt.schema.TypeValidator debug - validate( "d7fa3a78-85b4-43fd-ae3c-6dff1006da79", "d7fa3a78-85b4-43fd-ae3c-6dff1006da79", refreshToken) +20:00:48.852 [XNIO-1 task-1] vM8wEjvdSbOnOWwn4i1kpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.852 [XNIO-1 task-1] vM8wEjvdSbOnOWwn4i1kpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.852 [XNIO-1 task-1] vM8wEjvdSbOnOWwn4i1kpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.853 [XNIO-1 task-1] vM8wEjvdSbOnOWwn4i1kpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.853 [XNIO-1 task-1] vM8wEjvdSbOnOWwn4i1kpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:48.853 [XNIO-1 task-1] vM8wEjvdSbOnOWwn4i1kpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 65791578-b9d5-4cae-bed3-7dab5b4c201a is not found.","severity":"ERROR"} +20:00:48.858 [XNIO-1 task-1] pymU7blxRuiijBhCfYfzrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79 +20:00:48.858 [XNIO-1 task-1] pymU7blxRuiijBhCfYfzrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.858 [XNIO-1 task-1] pymU7blxRuiijBhCfYfzrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.858 [XNIO-1 task-1] pymU7blxRuiijBhCfYfzrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d7fa3a78-85b4-43fd-ae3c-6dff1006da79 +20:00:48.858 [XNIO-1 task-1] pymU7blxRuiijBhCfYfzrQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d7fa3a78-85b4-43fd-ae3c-6dff1006da79 +20:00:48.861 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0f5073b6-de67-402e-abd0-22ea3a1edc50 +20:00:48.866 [XNIO-1 task-1] 7ou7Y969RxaJK1J3wRQmlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.866 [XNIO-1 task-1] 7ou7Y969RxaJK1J3wRQmlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.866 [XNIO-1 task-1] 7ou7Y969RxaJK1J3wRQmlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.867 [XNIO-1 task-1] 7ou7Y969RxaJK1J3wRQmlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.867 [XNIO-1 task-1] 7ou7Y969RxaJK1J3wRQmlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.875 [XNIO-1 task-1] lYkmvjAXREmTzGm8J_RVWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:48.875 [XNIO-1 task-1] lYkmvjAXREmTzGm8J_RVWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.876 [XNIO-1 task-1] lYkmvjAXREmTzGm8J_RVWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.876 [XNIO-1 task-1] lYkmvjAXREmTzGm8J_RVWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:48.876 [XNIO-1 task-1] lYkmvjAXREmTzGm8J_RVWg DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:48.876 [XNIO-1 task-1] lYkmvjAXREmTzGm8J_RVWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:48.882 [XNIO-1 task-1] _sNmM-qKRe6HlMT3BGtnfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.883 [XNIO-1 task-1] _sNmM-qKRe6HlMT3BGtnfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.883 [XNIO-1 task-1] _sNmM-qKRe6HlMT3BGtnfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.883 [XNIO-1 task-1] _sNmM-qKRe6HlMT3BGtnfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.884 [XNIO-1 task-1] _sNmM-qKRe6HlMT3BGtnfA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.892 [XNIO-1 task-1] JHwXXRVmSjqp1XZ20bQmow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99311863-1ea9-4fa6-bbbc-573023aba5c5, base path is set to: null +20:00:48.892 [XNIO-1 task-1] JHwXXRVmSjqp1XZ20bQmow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.892 [XNIO-1 task-1] JHwXXRVmSjqp1XZ20bQmow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.892 [XNIO-1 task-1] JHwXXRVmSjqp1XZ20bQmow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/99311863-1ea9-4fa6-bbbc-573023aba5c5, base path is set to: null +20:00:48.893 [XNIO-1 task-1] JHwXXRVmSjqp1XZ20bQmow DEBUG com.networknt.schema.TypeValidator debug - validate( "99311863-1ea9-4fa6-bbbc-573023aba5c5", "99311863-1ea9-4fa6-bbbc-573023aba5c5", refreshToken) +20:00:48.898 [XNIO-1 task-1] zpBHY7-AS_2PT_TMZdPQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.899 [XNIO-1 task-1] zpBHY7-AS_2PT_TMZdPQ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.899 [XNIO-1 task-1] zpBHY7-AS_2PT_TMZdPQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.899 [XNIO-1 task-1] zpBHY7-AS_2PT_TMZdPQ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.899 [XNIO-1 task-1] zpBHY7-AS_2PT_TMZdPQ-g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.917 [XNIO-1 task-1] T5LLH9RdS0uZ_kRo9qNhVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.917 [XNIO-1 task-1] T5LLH9RdS0uZ_kRo9qNhVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.917 [XNIO-1 task-1] T5LLH9RdS0uZ_kRo9qNhVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.917 [XNIO-1 task-1] T5LLH9RdS0uZ_kRo9qNhVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.923 [XNIO-1 task-1] mWy2KZ9JTAu6P8DlD4BMFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.924 [XNIO-1 task-1] mWy2KZ9JTAu6P8DlD4BMFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.924 [XNIO-1 task-1] mWy2KZ9JTAu6P8DlD4BMFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.924 [XNIO-1 task-1] mWy2KZ9JTAu6P8DlD4BMFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:48.924 [XNIO-1 task-1] mWy2KZ9JTAu6P8DlD4BMFA DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:48.924 [XNIO-1 task-1] mWy2KZ9JTAu6P8DlD4BMFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 65791578-b9d5-4cae-bed3-7dab5b4c201a is not found.","severity":"ERROR"} +20:00:48.932 [XNIO-1 task-1] tJx2u2glSWivpWk7tVqNwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.932 [XNIO-1 task-1] tJx2u2glSWivpWk7tVqNwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.933 [XNIO-1 task-1] tJx2u2glSWivpWk7tVqNwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.933 [XNIO-1 task-1] tJx2u2glSWivpWk7tVqNwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.934 [XNIO-1 task-1] tJx2u2glSWivpWk7tVqNwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:48.937 [XNIO-1 task-1] WykNWiYvT9G84lFVr9wYjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.938 [XNIO-1 task-1] WykNWiYvT9G84lFVr9wYjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.938 [XNIO-1 task-1] WykNWiYvT9G84lFVr9wYjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:48.938 [XNIO-1 task-1] WykNWiYvT9G84lFVr9wYjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:48.938 [XNIO-1 task-1] WykNWiYvT9G84lFVr9wYjA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:48.945 [XNIO-1 task-1] x2xKrb04RtCECp_k2bfuVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.945 [XNIO-1 task-1] x2xKrb04RtCECp_k2bfuVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.945 [XNIO-1 task-1] x2xKrb04RtCECp_k2bfuVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.946 [XNIO-1 task-1] x2xKrb04RtCECp_k2bfuVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.954 [XNIO-1 task-1] dg-CW7weRyWHUe3jZaVZfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:48.954 [XNIO-1 task-1] dg-CW7weRyWHUe3jZaVZfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.954 [XNIO-1 task-1] dg-CW7weRyWHUe3jZaVZfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.955 [XNIO-1 task-1] dg-CW7weRyWHUe3jZaVZfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:48.955 [XNIO-1 task-1] dg-CW7weRyWHUe3jZaVZfA DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:48.955 [XNIO-1 task-1] dg-CW7weRyWHUe3jZaVZfA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:48.960 [XNIO-1 task-1] y8DBiebVT6e16-5U6udXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.960 [XNIO-1 task-1] y8DBiebVT6e16-5U6udXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.961 [XNIO-1 task-1] y8DBiebVT6e16-5U6udXRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.961 [XNIO-1 task-1] y8DBiebVT6e16-5U6udXRg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:48.976 [XNIO-1 task-1] Az3TdMuHQ6Cux1m7Iu-AoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.976 [XNIO-1 task-1] Az3TdMuHQ6Cux1m7Iu-AoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.976 [XNIO-1 task-1] Az3TdMuHQ6Cux1m7Iu-AoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.977 [XNIO-1 task-1] Az3TdMuHQ6Cux1m7Iu-AoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.977 [XNIO-1 task-1] Az3TdMuHQ6Cux1m7Iu-AoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:48.977 [XNIO-1 task-1] Az3TdMuHQ6Cux1m7Iu-AoQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:48.984 [XNIO-1 task-1] GPQV_txwQD-xkpyKWHVHig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.984 [XNIO-1 task-1] GPQV_txwQD-xkpyKWHVHig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.984 [XNIO-1 task-1] GPQV_txwQD-xkpyKWHVHig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.984 [XNIO-1 task-1] GPQV_txwQD-xkpyKWHVHig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.985 [XNIO-1 task-1] GPQV_txwQD-xkpyKWHVHig DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:48.986 [XNIO-1 task-1] GPQV_txwQD-xkpyKWHVHig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:48.990 [XNIO-1 task-1] MHxkUUi3S9Wn54a--gSUZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.990 [XNIO-1 task-1] MHxkUUi3S9Wn54a--gSUZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:48.990 [XNIO-1 task-1] MHxkUUi3S9Wn54a--gSUZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:48.990 [XNIO-1 task-1] MHxkUUi3S9Wn54a--gSUZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.991 [XNIO-1 task-1] MHxkUUi3S9Wn54a--gSUZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:48.998 [XNIO-1 task-1] -HRXzJs_Rr2wn1zp8RVLrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.998 [XNIO-1 task-1] -HRXzJs_Rr2wn1zp8RVLrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:48.999 [XNIO-1 task-1] -HRXzJs_Rr2wn1zp8RVLrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:48.999 [XNIO-1 task-1] -HRXzJs_Rr2wn1zp8RVLrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:48.999 [XNIO-1 task-1] -HRXzJs_Rr2wn1zp8RVLrg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:48.999 [XNIO-1 task-1] -HRXzJs_Rr2wn1zp8RVLrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:49.006 [XNIO-1 task-1] xk1abIsVTuSQpIPK04E5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.006 [XNIO-1 task-1] xk1abIsVTuSQpIPK04E5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.006 [XNIO-1 task-1] xk1abIsVTuSQpIPK04E5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.006 [XNIO-1 task-1] xk1abIsVTuSQpIPK04E5JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.007 [XNIO-1 task-1] xk1abIsVTuSQpIPK04E5JA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.012 [XNIO-1 task-1] f1cI5YtqRLCM-lv8xWmzBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.012 [XNIO-1 task-1] f1cI5YtqRLCM-lv8xWmzBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.012 [XNIO-1 task-1] f1cI5YtqRLCM-lv8xWmzBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.012 [XNIO-1 task-1] f1cI5YtqRLCM-lv8xWmzBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.013 [XNIO-1 task-1] f1cI5YtqRLCM-lv8xWmzBA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.019 [XNIO-1 task-1] 8JKrE99VTmuQuD_IkXkDSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.019 [XNIO-1 task-1] 8JKrE99VTmuQuD_IkXkDSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.019 [XNIO-1 task-1] 8JKrE99VTmuQuD_IkXkDSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.019 [XNIO-1 task-1] 8JKrE99VTmuQuD_IkXkDSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.025 [XNIO-1 task-1] ItqJlUOFQTiwpl28hBPYsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.025 [XNIO-1 task-1] ItqJlUOFQTiwpl28hBPYsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.026 [XNIO-1 task-1] ItqJlUOFQTiwpl28hBPYsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.026 [XNIO-1 task-1] ItqJlUOFQTiwpl28hBPYsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.026 [XNIO-1 task-1] ItqJlUOFQTiwpl28hBPYsg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.035 [XNIO-1 task-1] jMUMTxPER6ard4FkqTDHpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.035 [XNIO-1 task-1] jMUMTxPER6ard4FkqTDHpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.035 [XNIO-1 task-1] jMUMTxPER6ard4FkqTDHpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.035 [XNIO-1 task-1] jMUMTxPER6ard4FkqTDHpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.035 [XNIO-1 task-1] jMUMTxPER6ard4FkqTDHpw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.039 [XNIO-1 task-1] GRJESht1QOCwOUrrN06dEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.039 [XNIO-1 task-1] GRJESht1QOCwOUrrN06dEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.039 [XNIO-1 task-1] GRJESht1QOCwOUrrN06dEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.039 [XNIO-1 task-1] GRJESht1QOCwOUrrN06dEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.039 [XNIO-1 task-1] GRJESht1QOCwOUrrN06dEg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:49.039 [XNIO-1 task-1] GRJESht1QOCwOUrrN06dEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:49.043 [XNIO-1 task-1] JkIGJyAVQiKxs7fJ67LDXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.043 [XNIO-1 task-1] JkIGJyAVQiKxs7fJ67LDXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.043 [XNIO-1 task-1] JkIGJyAVQiKxs7fJ67LDXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.043 [XNIO-1 task-1] JkIGJyAVQiKxs7fJ67LDXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.044 [XNIO-1 task-1] JkIGJyAVQiKxs7fJ67LDXg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.053 [XNIO-1 task-1] 5HN_dH_UTgCt6O-kaKOjqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.054 [XNIO-1 task-1] 5HN_dH_UTgCt6O-kaKOjqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.054 [XNIO-1 task-1] 5HN_dH_UTgCt6O-kaKOjqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.054 [XNIO-1 task-1] 5HN_dH_UTgCt6O-kaKOjqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.054 [XNIO-1 task-1] 5HN_dH_UTgCt6O-kaKOjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:49.054 [XNIO-1 task-1] 5HN_dH_UTgCt6O-kaKOjqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:49.058 [XNIO-1 task-1] AT5e7Q9ES1aqFgT1yzqwPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.058 [XNIO-1 task-1] AT5e7Q9ES1aqFgT1yzqwPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.058 [XNIO-1 task-1] AT5e7Q9ES1aqFgT1yzqwPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.060 [XNIO-1 task-1] AT5e7Q9ES1aqFgT1yzqwPw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.075 [XNIO-1 task-1] qa3P3vesQOGrFFY4hpPtXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.075 [XNIO-1 task-1] qa3P3vesQOGrFFY4hpPtXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.076 [XNIO-1 task-1] qa3P3vesQOGrFFY4hpPtXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.076 [XNIO-1 task-1] qa3P3vesQOGrFFY4hpPtXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.076 [XNIO-1 task-1] qa3P3vesQOGrFFY4hpPtXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.085 [XNIO-1 task-1] yh_Q-TDJQMOH5zCNCzbhDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.085 [XNIO-1 task-1] yh_Q-TDJQMOH5zCNCzbhDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.085 [XNIO-1 task-1] yh_Q-TDJQMOH5zCNCzbhDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.085 [XNIO-1 task-1] yh_Q-TDJQMOH5zCNCzbhDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.086 [XNIO-1 task-1] yh_Q-TDJQMOH5zCNCzbhDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.091 [XNIO-1 task-1] xodi_cFxTUmcUtHibqgG7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.091 [XNIO-1 task-1] xodi_cFxTUmcUtHibqgG7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.091 [XNIO-1 task-1] xodi_cFxTUmcUtHibqgG7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.091 [XNIO-1 task-1] xodi_cFxTUmcUtHibqgG7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.092 [XNIO-1 task-1] xodi_cFxTUmcUtHibqgG7g DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:49.092 [XNIO-1 task-1] xodi_cFxTUmcUtHibqgG7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:49.097 [XNIO-1 task-1] 6V7TuFuzR7eecwgrPZmc0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.097 [XNIO-1 task-1] 6V7TuFuzR7eecwgrPZmc0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.097 [XNIO-1 task-1] 6V7TuFuzR7eecwgrPZmc0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.098 [XNIO-1 task-1] 6V7TuFuzR7eecwgrPZmc0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.107 [XNIO-1 task-1] 3dkut557QnmeNXbjr5LLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.107 [XNIO-1 task-1] 3dkut557QnmeNXbjr5LLyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.108 [XNIO-1 task-1] 3dkut557QnmeNXbjr5LLyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.108 [XNIO-1 task-1] 3dkut557QnmeNXbjr5LLyg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.109 [XNIO-1 task-1] 3dkut557QnmeNXbjr5LLyg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.120 [XNIO-1 task-1] bMhIibOkRGSbl_CXZWJMfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.120 [XNIO-1 task-1] bMhIibOkRGSbl_CXZWJMfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.120 [XNIO-1 task-1] bMhIibOkRGSbl_CXZWJMfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.120 [XNIO-1 task-1] bMhIibOkRGSbl_CXZWJMfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.121 [XNIO-1 task-1] bMhIibOkRGSbl_CXZWJMfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.131 [XNIO-1 task-1] ya59oLi2TSWlsqLd5w_mjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.131 [XNIO-1 task-1] ya59oLi2TSWlsqLd5w_mjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.131 [XNIO-1 task-1] ya59oLi2TSWlsqLd5w_mjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.131 [XNIO-1 task-1] ya59oLi2TSWlsqLd5w_mjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.132 [XNIO-1 task-1] ya59oLi2TSWlsqLd5w_mjA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.138 [XNIO-1 task-1] cfy6JO5KQUinQKkvPS_zwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.138 [XNIO-1 task-1] cfy6JO5KQUinQKkvPS_zwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.138 [XNIO-1 task-1] cfy6JO5KQUinQKkvPS_zwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.139 [XNIO-1 task-1] cfy6JO5KQUinQKkvPS_zwg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.139 [XNIO-1 task-1] cfy6JO5KQUinQKkvPS_zwg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.146 [XNIO-1 task-1] K8j-WWVzQLS7N5D_HXyUPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.148 [XNIO-1 task-1] K8j-WWVzQLS7N5D_HXyUPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.148 [XNIO-1 task-1] K8j-WWVzQLS7N5D_HXyUPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.148 [XNIO-1 task-1] K8j-WWVzQLS7N5D_HXyUPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.149 [XNIO-1 task-1] K8j-WWVzQLS7N5D_HXyUPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.155 [XNIO-1 task-1] JBO6enFjRmaaEGs_5CSVIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.155 [XNIO-1 task-1] JBO6enFjRmaaEGs_5CSVIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.156 [XNIO-1 task-1] JBO6enFjRmaaEGs_5CSVIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.160 [XNIO-1 task-1] JBO6enFjRmaaEGs_5CSVIg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.161 [XNIO-1 task-1] JBO6enFjRmaaEGs_5CSVIg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.174 [XNIO-1 task-1] GxnsBJO7RoaMaSjd3g0lrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.174 [XNIO-1 task-1] GxnsBJO7RoaMaSjd3g0lrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.174 [XNIO-1 task-1] GxnsBJO7RoaMaSjd3g0lrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.175 [XNIO-1 task-1] GxnsBJO7RoaMaSjd3g0lrA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.186 [XNIO-1 task-1] 0Ybaxf8VSqidvtY2EQwZiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075, base path is set to: null +20:00:49.186 [XNIO-1 task-1] 0Ybaxf8VSqidvtY2EQwZiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.186 [XNIO-1 task-1] 0Ybaxf8VSqidvtY2EQwZiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.186 [XNIO-1 task-1] 0Ybaxf8VSqidvtY2EQwZiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075, base path is set to: null +20:00:49.186 [XNIO-1 task-1] 0Ybaxf8VSqidvtY2EQwZiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1a27b027-4774-42bf-bb19-aff923b8e075", "1a27b027-4774-42bf-bb19-aff923b8e075", refreshToken) +20:00:49.187 [XNIO-1 task-1] 0Ybaxf8VSqidvtY2EQwZiw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1a27b027-4774-42bf-bb19-aff923b8e075 is not found.","severity":"ERROR"} +20:00:49.195 [XNIO-1 task-1] g9o9gkg3QeqOQmh2F89WNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f46b7d9-d5b3-4bba-b427-5fecce7e601f +20:00:49.195 [XNIO-1 task-1] g9o9gkg3QeqOQmh2F89WNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.195 [XNIO-1 task-1] g9o9gkg3QeqOQmh2F89WNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.195 [XNIO-1 task-1] g9o9gkg3QeqOQmh2F89WNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5f46b7d9-d5b3-4bba-b427-5fecce7e601f +20:00:49.195 [XNIO-1 task-1] g9o9gkg3QeqOQmh2F89WNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5f46b7d9-d5b3-4bba-b427-5fecce7e601f +20:00:49.205 [XNIO-1 task-1] a-7FFYn9R-mJGfwdK3Q4Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.206 [XNIO-1 task-1] a-7FFYn9R-mJGfwdK3Q4Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.206 [XNIO-1 task-1] a-7FFYn9R-mJGfwdK3Q4Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.206 [XNIO-1 task-1] a-7FFYn9R-mJGfwdK3Q4Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.206 [XNIO-1 task-1] a-7FFYn9R-mJGfwdK3Q4Fw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.214 [XNIO-1 task-1] cje4ggdyQQynp34Dc9SiIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.214 [XNIO-1 task-1] cje4ggdyQQynp34Dc9SiIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.214 [XNIO-1 task-1] cje4ggdyQQynp34Dc9SiIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.215 [XNIO-1 task-1] cje4ggdyQQynp34Dc9SiIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.221 [XNIO-1 task-1] h-cg20oNT5KIRDkdrkhc7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.221 [XNIO-1 task-1] h-cg20oNT5KIRDkdrkhc7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.222 [XNIO-1 task-1] h-cg20oNT5KIRDkdrkhc7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.222 [XNIO-1 task-1] h-cg20oNT5KIRDkdrkhc7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.222 [XNIO-1 task-1] h-cg20oNT5KIRDkdrkhc7w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.233 [XNIO-1 task-1] UHfBY7J8RUiZOtNd7IHCkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.233 [XNIO-1 task-1] UHfBY7J8RUiZOtNd7IHCkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.233 [XNIO-1 task-1] UHfBY7J8RUiZOtNd7IHCkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.233 [XNIO-1 task-1] UHfBY7J8RUiZOtNd7IHCkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.234 [XNIO-1 task-1] UHfBY7J8RUiZOtNd7IHCkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.240 [XNIO-1 task-1] vn9bVVQDQMKMlQbhIQGAxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075, base path is set to: null +20:00:49.240 [XNIO-1 task-1] vn9bVVQDQMKMlQbhIQGAxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.240 [XNIO-1 task-1] vn9bVVQDQMKMlQbhIQGAxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.241 [XNIO-1 task-1] vn9bVVQDQMKMlQbhIQGAxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075, base path is set to: null +20:00:49.242 [XNIO-1 task-1] vn9bVVQDQMKMlQbhIQGAxg DEBUG com.networknt.schema.TypeValidator debug - validate( "1a27b027-4774-42bf-bb19-aff923b8e075", "1a27b027-4774-42bf-bb19-aff923b8e075", refreshToken) +20:00:49.242 [XNIO-1 task-1] vn9bVVQDQMKMlQbhIQGAxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1a27b027-4774-42bf-bb19-aff923b8e075 is not found.","severity":"ERROR"} +20:00:49.248 [XNIO-1 task-1] hcsnfiRARwWyOl6XVewsog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.249 [XNIO-1 task-1] hcsnfiRARwWyOl6XVewsog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.249 [XNIO-1 task-1] hcsnfiRARwWyOl6XVewsog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.249 [XNIO-1 task-1] hcsnfiRARwWyOl6XVewsog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.249 [XNIO-1 task-1] hcsnfiRARwWyOl6XVewsog DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1a27b027-4774-42bf-bb19-aff923b8e075 +20:00:49.253 [XNIO-1 task-1] Rg0uufCGS7ifXbGrhtciwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:49.253 [XNIO-1 task-1] Rg0uufCGS7ifXbGrhtciwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.253 [XNIO-1 task-1] Rg0uufCGS7ifXbGrhtciwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.253 [XNIO-1 task-1] Rg0uufCGS7ifXbGrhtciwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3d73e6b4-dc9b-4743-9617-2cfa1ab4d184, base path is set to: null +20:00:49.253 [XNIO-1 task-1] Rg0uufCGS7ifXbGrhtciwA DEBUG com.networknt.schema.TypeValidator debug - validate( "3d73e6b4-dc9b-4743-9617-2cfa1ab4d184", "3d73e6b4-dc9b-4743-9617-2cfa1ab4d184", refreshToken) +20:00:49.256 [XNIO-1 task-1] Rg0uufCGS7ifXbGrhtciwA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3d73e6b4-dc9b-4743-9617-2cfa1ab4d184 is not found.","severity":"ERROR"} +20:00:49.271 [XNIO-1 task-1] 40EP55jkQMCZaCnjqgx2pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.271 [XNIO-1 task-1] 40EP55jkQMCZaCnjqgx2pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.272 [XNIO-1 task-1] 40EP55jkQMCZaCnjqgx2pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.272 [XNIO-1 task-1] 40EP55jkQMCZaCnjqgx2pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.272 [XNIO-1 task-1] 40EP55jkQMCZaCnjqgx2pg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.282 [XNIO-1 task-1] aUSjXINvQeS0D33-_8Kcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:49.282 [XNIO-1 task-1] aUSjXINvQeS0D33-_8Kcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.282 [XNIO-1 task-1] aUSjXINvQeS0D33-_8Kcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.282 [XNIO-1 task-1] aUSjXINvQeS0D33-_8Kcrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:49.283 [XNIO-1 task-1] aUSjXINvQeS0D33-_8Kcrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:49.287 [XNIO-1 task-1] A6DxqW9DSPijGS8K-NZo5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:49.287 [XNIO-1 task-1] A6DxqW9DSPijGS8K-NZo5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.291 [XNIO-1 task-1] A6DxqW9DSPijGS8K-NZo5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.292 [XNIO-1 task-1] A6DxqW9DSPijGS8K-NZo5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:49.292 [XNIO-1 task-1] A6DxqW9DSPijGS8K-NZo5w DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:49.293 [XNIO-1 task-1] A6DxqW9DSPijGS8K-NZo5w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:49.300 [XNIO-1 task-1] KytM1Ch-RBGLnY70cEn0lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.300 [XNIO-1 task-1] KytM1Ch-RBGLnY70cEn0lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.300 [XNIO-1 task-1] KytM1Ch-RBGLnY70cEn0lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.301 [XNIO-1 task-1] KytM1Ch-RBGLnY70cEn0lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.301 [XNIO-1 task-1] KytM1Ch-RBGLnY70cEn0lA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.318 [XNIO-1 task-1] SakJu2UGSKmO5JOGiueKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:49.318 [XNIO-1 task-1] SakJu2UGSKmO5JOGiueKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.318 [XNIO-1 task-1] SakJu2UGSKmO5JOGiueKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.318 [XNIO-1 task-1] SakJu2UGSKmO5JOGiueKMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:49.319 [XNIO-1 task-1] SakJu2UGSKmO5JOGiueKMA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:49.322 [XNIO-1 task-1] 6YvC03g0TxGAsl9mLPV2vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.323 [XNIO-1 task-1] 6YvC03g0TxGAsl9mLPV2vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.323 [XNIO-1 task-1] 6YvC03g0TxGAsl9mLPV2vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.323 [XNIO-1 task-1] 6YvC03g0TxGAsl9mLPV2vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.323 [XNIO-1 task-1] 6YvC03g0TxGAsl9mLPV2vQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.336 [XNIO-1 task-1] vfq2LuoURs60vfu_Olx62g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.336 [XNIO-1 task-1] vfq2LuoURs60vfu_Olx62g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.336 [XNIO-1 task-1] vfq2LuoURs60vfu_Olx62g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.337 [XNIO-1 task-1] vfq2LuoURs60vfu_Olx62g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.344 [XNIO-1 task-1] LY2Lq5y8QpeCSQr_DuB2LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:49.344 [XNIO-1 task-1] LY2Lq5y8QpeCSQr_DuB2LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.344 [XNIO-1 task-1] LY2Lq5y8QpeCSQr_DuB2LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.344 [XNIO-1 task-1] LY2Lq5y8QpeCSQr_DuB2LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5, base path is set to: null +20:00:49.344 [XNIO-1 task-1] LY2Lq5y8QpeCSQr_DuB2LA DEBUG com.networknt.schema.TypeValidator debug - validate( "0921c65b-70a6-40d3-9e76-bb007f1569a5", "0921c65b-70a6-40d3-9e76-bb007f1569a5", refreshToken) +20:00:49.345 [XNIO-1 task-1] LY2Lq5y8QpeCSQr_DuB2LA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 0921c65b-70a6-40d3-9e76-bb007f1569a5 is not found.","severity":"ERROR"} +20:00:49.351 [XNIO-1 task-1] -BbPqOIDRciW-WfAFKeutA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.351 [XNIO-1 task-1] -BbPqOIDRciW-WfAFKeutA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.351 [XNIO-1 task-1] -BbPqOIDRciW-WfAFKeutA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.351 [XNIO-1 task-1] -BbPqOIDRciW-WfAFKeutA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.351 [XNIO-1 task-1] -BbPqOIDRciW-WfAFKeutA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.360 [XNIO-1 task-1] HmYU41A4Qf21HpU7BTL13Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:49.360 [XNIO-1 task-1] HmYU41A4Qf21HpU7BTL13Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.360 [XNIO-1 task-1] HmYU41A4Qf21HpU7BTL13Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.360 [XNIO-1 task-1] HmYU41A4Qf21HpU7BTL13Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9990f3e0-f89d-4916-8201-f93b0a0e2da4, base path is set to: null +20:00:49.360 [XNIO-1 task-1] HmYU41A4Qf21HpU7BTL13Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9990f3e0-f89d-4916-8201-f93b0a0e2da4", "9990f3e0-f89d-4916-8201-f93b0a0e2da4", refreshToken) +20:00:49.361 [XNIO-1 task-1] HmYU41A4Qf21HpU7BTL13Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9990f3e0-f89d-4916-8201-f93b0a0e2da4 is not found.","severity":"ERROR"} +20:00:49.368 [XNIO-1 task-1] Ec9FPVT1SfykZeKs1O4yxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:49.369 [XNIO-1 task-1] Ec9FPVT1SfykZeKs1O4yxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.369 [XNIO-1 task-1] Ec9FPVT1SfykZeKs1O4yxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.369 [XNIO-1 task-1] Ec9FPVT1SfykZeKs1O4yxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:49.369 [XNIO-1 task-1] Ec9FPVT1SfykZeKs1O4yxQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:49.371 [XNIO-1 task-1] kThDKK20QHO00Pkuk4TXLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.371 [XNIO-1 task-1] kThDKK20QHO00Pkuk4TXLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.372 [XNIO-1 task-1] kThDKK20QHO00Pkuk4TXLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.372 [XNIO-1 task-1] kThDKK20QHO00Pkuk4TXLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.372 [XNIO-1 task-1] kThDKK20QHO00Pkuk4TXLA DEBUG com.networknt.schema.TypeValidator debug - validate( "874d067c-3b2c-47ca-8de9-5ab0d58833dc", "874d067c-3b2c-47ca-8de9-5ab0d58833dc", refreshToken) +20:00:49.372 [XNIO-1 task-1] kThDKK20QHO00Pkuk4TXLA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 874d067c-3b2c-47ca-8de9-5ab0d58833dc is not found.","severity":"ERROR"} +20:00:49.374 [XNIO-1 task-1] sp0doVnZStekFdvSl5zALw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8381c067-b320-4bee-ab1a-3cf662ebb57d, base path is set to: null +20:00:49.374 [XNIO-1 task-1] sp0doVnZStekFdvSl5zALw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.375 [XNIO-1 task-1] sp0doVnZStekFdvSl5zALw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.375 [XNIO-1 task-1] sp0doVnZStekFdvSl5zALw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8381c067-b320-4bee-ab1a-3cf662ebb57d, base path is set to: null +20:00:49.375 [XNIO-1 task-1] sp0doVnZStekFdvSl5zALw DEBUG com.networknt.schema.TypeValidator debug - validate( "8381c067-b320-4bee-ab1a-3cf662ebb57d", "8381c067-b320-4bee-ab1a-3cf662ebb57d", refreshToken) +20:00:49.375 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:27158b72 +20:00:49.380 [XNIO-1 task-1] ZLQzcn24T8mautmQTpj1xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:49.380 [XNIO-1 task-1] ZLQzcn24T8mautmQTpj1xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.380 [XNIO-1 task-1] ZLQzcn24T8mautmQTpj1xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.380 [XNIO-1 task-1] ZLQzcn24T8mautmQTpj1xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a, base path is set to: null +20:00:49.381 [XNIO-1 task-1] ZLQzcn24T8mautmQTpj1xw DEBUG com.networknt.schema.TypeValidator debug - validate( "65791578-b9d5-4cae-bed3-7dab5b4c201a", "65791578-b9d5-4cae-bed3-7dab5b4c201a", refreshToken) +20:00:49.381 [XNIO-1 task-1] ZLQzcn24T8mautmQTpj1xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 65791578-b9d5-4cae-bed3-7dab5b4c201a is not found.","severity":"ERROR"} +20:00:49.387 [XNIO-1 task-1] SCEDxlYMTpiL0w6Hsp6OgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.387 [XNIO-1 task-1] SCEDxlYMTpiL0w6Hsp6OgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.387 [XNIO-1 task-1] SCEDxlYMTpiL0w6Hsp6OgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.387 [XNIO-1 task-1] SCEDxlYMTpiL0w6Hsp6OgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.388 [XNIO-1 task-1] SCEDxlYMTpiL0w6Hsp6OgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 874d067c-3b2c-47ca-8de9-5ab0d58833dc +20:00:49.390 [XNIO-1 task-1] SvrphN9rShqHO17R19iUlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8381c067-b320-4bee-ab1a-3cf662ebb57d, base path is set to: null +20:00:49.391 [XNIO-1 task-1] SvrphN9rShqHO17R19iUlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.391 [XNIO-1 task-1] SvrphN9rShqHO17R19iUlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.391 [XNIO-1 task-1] SvrphN9rShqHO17R19iUlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8381c067-b320-4bee-ab1a-3cf662ebb57d, base path is set to: null +20:00:49.391 [XNIO-1 task-1] SvrphN9rShqHO17R19iUlA DEBUG com.networknt.schema.TypeValidator debug - validate( "8381c067-b320-4bee-ab1a-3cf662ebb57d", "8381c067-b320-4bee-ab1a-3cf662ebb57d", refreshToken) +20:00:49.394 [XNIO-1 task-1] hpLrsdyhQZe82Q1sXVVoLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.395 [XNIO-1 task-1] hpLrsdyhQZe82Q1sXVVoLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.395 [XNIO-1 task-1] hpLrsdyhQZe82Q1sXVVoLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.395 [XNIO-1 task-1] hpLrsdyhQZe82Q1sXVVoLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.395 [XNIO-1 task-1] hpLrsdyhQZe82Q1sXVVoLg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.405 [XNIO-1 task-1] emz0CTpCQByNNzPaxN_45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.405 [XNIO-1 task-1] emz0CTpCQByNNzPaxN_45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.405 [XNIO-1 task-1] emz0CTpCQByNNzPaxN_45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.406 [XNIO-1 task-1] emz0CTpCQByNNzPaxN_45A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.431 [XNIO-1 task-1] aIlx3G4sSE6nScthjcktXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.431 [XNIO-1 task-1] aIlx3G4sSE6nScthjcktXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.432 [XNIO-1 task-1] aIlx3G4sSE6nScthjcktXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.432 [XNIO-1 task-1] aIlx3G4sSE6nScthjcktXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.432 [XNIO-1 task-1] aIlx3G4sSE6nScthjcktXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.453 [XNIO-1 task-1] VSh2RwkuRAmrOrU4UnleDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:49.453 [XNIO-1 task-1] VSh2RwkuRAmrOrU4UnleDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.453 [XNIO-1 task-1] VSh2RwkuRAmrOrU4UnleDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.453 [XNIO-1 task-1] VSh2RwkuRAmrOrU4UnleDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:49.457 [XNIO-1 task-1] VSh2RwkuRAmrOrU4UnleDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:49.464 [XNIO-1 task-1] W2Bl9WMfSzmDA_gTPccf5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.464 [XNIO-1 task-1] W2Bl9WMfSzmDA_gTPccf5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.464 [XNIO-1 task-1] W2Bl9WMfSzmDA_gTPccf5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.464 [XNIO-1 task-1] W2Bl9WMfSzmDA_gTPccf5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.464 [XNIO-1 task-1] W2Bl9WMfSzmDA_gTPccf5A DEBUG com.networknt.schema.TypeValidator debug - validate( "874d067c-3b2c-47ca-8de9-5ab0d58833dc", "874d067c-3b2c-47ca-8de9-5ab0d58833dc", refreshToken) +20:00:49.465 [XNIO-1 task-1] W2Bl9WMfSzmDA_gTPccf5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 874d067c-3b2c-47ca-8de9-5ab0d58833dc is not found.","severity":"ERROR"} +20:00:49.473 [XNIO-1 task-1] vMZdBZHHRWOuKOv1RKYxLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.473 [XNIO-1 task-1] vMZdBZHHRWOuKOv1RKYxLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.474 [XNIO-1 task-1] vMZdBZHHRWOuKOv1RKYxLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.474 [XNIO-1 task-1] vMZdBZHHRWOuKOv1RKYxLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.479 [XNIO-1 task-1] -A8SCMjuTsSN-kaVjBW73A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:49.479 [XNIO-1 task-1] -A8SCMjuTsSN-kaVjBW73A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.479 [XNIO-1 task-1] -A8SCMjuTsSN-kaVjBW73A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.479 [XNIO-1 task-1] -A8SCMjuTsSN-kaVjBW73A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/3f97bca4-8fe4-4757-98c1-d2d5b0b131e0, base path is set to: null +20:00:49.479 [XNIO-1 task-1] -A8SCMjuTsSN-kaVjBW73A DEBUG com.networknt.schema.TypeValidator debug - validate( "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", "3f97bca4-8fe4-4757-98c1-d2d5b0b131e0", refreshToken) +20:00:49.482 [XNIO-1 task-1] -A8SCMjuTsSN-kaVjBW73A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 is not found.","severity":"ERROR"} +20:00:49.486 [XNIO-1 task-1] yLdBJInBTOK79kHyTueocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.486 [XNIO-1 task-1] yLdBJInBTOK79kHyTueocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.486 [XNIO-1 task-1] yLdBJInBTOK79kHyTueocg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.487 [XNIO-1 task-1] yLdBJInBTOK79kHyTueocg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.496 [XNIO-1 task-1] lKv2YCtDQOmVbnEqhIr7WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.496 [XNIO-1 task-1] lKv2YCtDQOmVbnEqhIr7WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.496 [XNIO-1 task-1] lKv2YCtDQOmVbnEqhIr7WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.497 [XNIO-1 task-1] lKv2YCtDQOmVbnEqhIr7WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.497 [XNIO-1 task-1] lKv2YCtDQOmVbnEqhIr7WQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.502 [XNIO-1 task-1] TVvHCzhZRvW1DmJdKdnNhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8381c067-b320-4bee-ab1a-3cf662ebb57d +20:00:49.502 [XNIO-1 task-1] TVvHCzhZRvW1DmJdKdnNhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.502 [XNIO-1 task-1] TVvHCzhZRvW1DmJdKdnNhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.502 [XNIO-1 task-1] TVvHCzhZRvW1DmJdKdnNhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8381c067-b320-4bee-ab1a-3cf662ebb57d +20:00:49.503 [XNIO-1 task-1] TVvHCzhZRvW1DmJdKdnNhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8381c067-b320-4bee-ab1a-3cf662ebb57d +20:00:49.508 [XNIO-1 task-1] Paejg2abSB6Jdd4R2WV8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.508 [XNIO-1 task-1] Paejg2abSB6Jdd4R2WV8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.508 [XNIO-1 task-1] Paejg2abSB6Jdd4R2WV8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.509 [XNIO-1 task-1] Paejg2abSB6Jdd4R2WV8bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.519 [XNIO-1 task-1] zyCuTTBCQJiZ0egKBQSIew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.519 [XNIO-1 task-1] zyCuTTBCQJiZ0egKBQSIew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.519 [XNIO-1 task-1] zyCuTTBCQJiZ0egKBQSIew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.520 [XNIO-1 task-1] zyCuTTBCQJiZ0egKBQSIew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.520 [XNIO-1 task-1] zyCuTTBCQJiZ0egKBQSIew DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.522 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f74db908 +20:00:49.525 [XNIO-1 task-1] vt-2GSXBT-KxHNJTB_Fp-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99311863-1ea9-4fa6-bbbc-573023aba5c5 +20:00:49.526 [XNIO-1 task-1] vt-2GSXBT-KxHNJTB_Fp-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.526 [XNIO-1 task-1] vt-2GSXBT-KxHNJTB_Fp-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.526 [XNIO-1 task-1] vt-2GSXBT-KxHNJTB_Fp-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/99311863-1ea9-4fa6-bbbc-573023aba5c5 +20:00:49.526 [XNIO-1 task-1] vt-2GSXBT-KxHNJTB_Fp-A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 99311863-1ea9-4fa6-bbbc-573023aba5c5 +20:00:49.531 [XNIO-1 task-1] 78FC__crTM-DVW3ollFqjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:49.531 [XNIO-1 task-1] 78FC__crTM-DVW3ollFqjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.531 [XNIO-1 task-1] 78FC__crTM-DVW3ollFqjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.532 [XNIO-1 task-1] 78FC__crTM-DVW3ollFqjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:49.532 [XNIO-1 task-1] 78FC__crTM-DVW3ollFqjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 65791578-b9d5-4cae-bed3-7dab5b4c201a +20:00:49.539 [XNIO-1 task-1] X3fadsatS-CUmSzlmrzDlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.539 [XNIO-1 task-1] X3fadsatS-CUmSzlmrzDlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.539 [XNIO-1 task-1] X3fadsatS-CUmSzlmrzDlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.539 [XNIO-1 task-1] X3fadsatS-CUmSzlmrzDlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.539 [XNIO-1 task-1] X3fadsatS-CUmSzlmrzDlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "874d067c-3b2c-47ca-8de9-5ab0d58833dc", "874d067c-3b2c-47ca-8de9-5ab0d58833dc", refreshToken) +20:00:49.540 [XNIO-1 task-1] X3fadsatS-CUmSzlmrzDlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 874d067c-3b2c-47ca-8de9-5ab0d58833dc is not found.","severity":"ERROR"} +20:00:49.543 [XNIO-1 task-1] KtxOD2LESxG-QK28CSoimw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.543 [XNIO-1 task-1] KtxOD2LESxG-QK28CSoimw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.544 [XNIO-1 task-1] KtxOD2LESxG-QK28CSoimw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.544 [XNIO-1 task-1] KtxOD2LESxG-QK28CSoimw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.552 [XNIO-1 task-1] 6XNWp62BSem-tX3_UeJcHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.552 [XNIO-1 task-1] 6XNWp62BSem-tX3_UeJcHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.552 [XNIO-1 task-1] 6XNWp62BSem-tX3_UeJcHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.552 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f74db908 +20:00:49.552 [XNIO-1 task-1] 6XNWp62BSem-tX3_UeJcHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/874d067c-3b2c-47ca-8de9-5ab0d58833dc, base path is set to: null +20:00:49.552 [XNIO-1 task-1] 6XNWp62BSem-tX3_UeJcHA DEBUG com.networknt.schema.TypeValidator debug - validate( "874d067c-3b2c-47ca-8de9-5ab0d58833dc", "874d067c-3b2c-47ca-8de9-5ab0d58833dc", refreshToken) +20:00:49.553 [XNIO-1 task-1] 6XNWp62BSem-tX3_UeJcHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 874d067c-3b2c-47ca-8de9-5ab0d58833dc is not found.","severity":"ERROR"} +20:00:49.559 [XNIO-1 task-1] 3KUxp2hSQL-4qCETuwh6FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.559 [XNIO-1 task-1] 3KUxp2hSQL-4qCETuwh6FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.559 [XNIO-1 task-1] 3KUxp2hSQL-4qCETuwh6FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.559 [XNIO-1 task-1] 3KUxp2hSQL-4qCETuwh6FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.560 [XNIO-1 task-1] 3KUxp2hSQL-4qCETuwh6FQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.566 [XNIO-1 task-1] PlGFLdxRQJis8CEWdVetZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.566 [XNIO-1 task-1] PlGFLdxRQJis8CEWdVetZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.566 [XNIO-1 task-1] PlGFLdxRQJis8CEWdVetZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.566 [XNIO-1 task-1] PlGFLdxRQJis8CEWdVetZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.567 [XNIO-1 task-1] PlGFLdxRQJis8CEWdVetZw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.582 [XNIO-1 task-1] zRUQ50yDTf-8sdkc_96kvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.582 [XNIO-1 task-1] zRUQ50yDTf-8sdkc_96kvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.582 [XNIO-1 task-1] zRUQ50yDTf-8sdkc_96kvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.583 [XNIO-1 task-1] zRUQ50yDTf-8sdkc_96kvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.594 [XNIO-1 task-1] k58pJmd9RFG51ciajvIkOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.594 [XNIO-1 task-1] k58pJmd9RFG51ciajvIkOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.594 [XNIO-1 task-1] k58pJmd9RFG51ciajvIkOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.595 [XNIO-1 task-1] k58pJmd9RFG51ciajvIkOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.595 [XNIO-1 task-1] k58pJmd9RFG51ciajvIkOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:49.595 [XNIO-1 task-1] k58pJmd9RFG51ciajvIkOQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:49.605 [XNIO-1 task-1] TGViXrmFRmOnu2uFLV80sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.606 [XNIO-1 task-1] TGViXrmFRmOnu2uFLV80sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.606 [XNIO-1 task-1] TGViXrmFRmOnu2uFLV80sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.606 [XNIO-1 task-1] TGViXrmFRmOnu2uFLV80sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.606 [XNIO-1 task-1] TGViXrmFRmOnu2uFLV80sQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.608 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f0d28570-4028-4ec2-9f56-dded96e05a56 +20:00:49.611 [XNIO-1 task-1] qz7y1A5cTgejx_jRKtYwrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b1d2811-97b6-4bc0-8429-e375bca3dc8f, base path is set to: null +20:00:49.612 [XNIO-1 task-1] qz7y1A5cTgejx_jRKtYwrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.612 [XNIO-1 task-1] qz7y1A5cTgejx_jRKtYwrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.612 [XNIO-1 task-1] qz7y1A5cTgejx_jRKtYwrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/8b1d2811-97b6-4bc0-8429-e375bca3dc8f, base path is set to: null +20:00:49.612 [XNIO-1 task-1] qz7y1A5cTgejx_jRKtYwrg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b1d2811-97b6-4bc0-8429-e375bca3dc8f", "8b1d2811-97b6-4bc0-8429-e375bca3dc8f", refreshToken) +20:00:49.616 [XNIO-1 task-1] AykKgq25QXWYjeBjC6fR0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.616 [XNIO-1 task-1] AykKgq25QXWYjeBjC6fR0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.616 [XNIO-1 task-1] AykKgq25QXWYjeBjC6fR0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +20:00:49.616 [XNIO-1 task-1] AykKgq25QXWYjeBjC6fR0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25, base path is set to: null +20:00:49.616 [XNIO-1 task-1] AykKgq25QXWYjeBjC6fR0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ed86b04b-fd6c-424f-89f8-cd82afa56a25", "ed86b04b-fd6c-424f-89f8-cd82afa56a25", refreshToken) +20:00:49.617 [XNIO-1 task-1] AykKgq25QXWYjeBjC6fR0Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ed86b04b-fd6c-424f-89f8-cd82afa56a25 is not found.","severity":"ERROR"} +20:00:49.621 [XNIO-1 task-1] CsjIMPD2TlObG1YCsICPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.621 [XNIO-1 task-1] CsjIMPD2TlObG1YCsICPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.621 [XNIO-1 task-1] CsjIMPD2TlObG1YCsICPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.622 [XNIO-1 task-1] CsjIMPD2TlObG1YCsICPEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:49.626 [XNIO-1 task-1] hwYYrPVGTKOj-ExDPj6Pig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.626 [XNIO-1 task-1] hwYYrPVGTKOj-ExDPj6Pig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +20:00:49.626 [XNIO-1 task-1] hwYYrPVGTKOj-ExDPj6Pig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +20:00:49.627 [XNIO-1 task-1] hwYYrPVGTKOj-ExDPj6Pig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:49.627 [XNIO-1 task-1] hwYYrPVGTKOj-ExDPj6Pig DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +20:00:49.632 [XNIO-1 task-1] MN0uLKZWSleuxDGWIn6ikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b1d2811-97b6-4bc0-8429-e375bca3dc8f +20:00:49.632 [XNIO-1 task-1] MN0uLKZWSleuxDGWIn6ikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +20:00:49.632 [XNIO-1 task-1] MN0uLKZWSleuxDGWIn6ikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +20:00:49.632 [XNIO-1 task-1] MN0uLKZWSleuxDGWIn6ikQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/8b1d2811-97b6-4bc0-8429-e375bca3dc8f +20:00:49.633 [XNIO-1 task-1] MN0uLKZWSleuxDGWIn6ikQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 8b1d2811-97b6-4bc0-8429-e375bca3dc8f +20:00:49.636 [XNIO-1 task-1] RxnT00aDR9C45C2BbLQo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ed86b04b-fd6c-424f-89f8-cd82afa56a25 +20:00:49.636 [XNIO-1 task-1] RxnT00aDR9C45C2BbLQo3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token diff --git a/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-service-1.log b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..3ca99a8 --- /dev/null +++ b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-service-1.log @@ -0,0 +1,1875 @@ +20:00:39.952 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG com.zaxxer.hikari.pool.HikariPool checkFailFast - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@fe063ff +20:00:40.059 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) +20:00:40.062 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0f79d30e-af8c-488f-8ef2-ad68db78b5d9 +20:00:40.066 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.066 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.068 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.069 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.069 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:40.069 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG com.networknt.schema.TypeValidator debug - validate( "7bcd499c-5962-49a0-96ad-ab4ad0336680", {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:40.069 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG com.networknt.schema.TypeValidator debug - validate( "63bc52e6", {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:40.070 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:40.070 [XNIO-1 task-2] qvIktcycRSGV05IsQGQasg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"63bc52e6","serviceName":"9200dd11-ce3a-46cb-b284-4c4fe6d5","serviceDesc":"7bcd499c-5962-49a0-96ad-ab4ad0336680","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.090 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool logPoolState - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) +20:00:40.139 [XNIO-1 task-2] 3drHney_SeCvtuSfJNYbsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.139 [XNIO-1 task-2] 3drHney_SeCvtuSfJNYbsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.139 [XNIO-1 task-2] 3drHney_SeCvtuSfJNYbsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.139 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:296bd494 +20:00:40.140 [XNIO-1 task-2] 3drHney_SeCvtuSfJNYbsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.173 [XNIO-1 task-2] C0p2PvMiTOSJKbBoStewbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.174 [XNIO-1 task-2] C0p2PvMiTOSJKbBoStewbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.174 [XNIO-1 task-2] C0p2PvMiTOSJKbBoStewbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.175 [XNIO-1 task-2] C0p2PvMiTOSJKbBoStewbw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.177 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0f79d30e-af8c-488f-8ef2-ad68db78b5d9 +20:00:40.227 [XNIO-1 task-2] KSQ21lNqTFayZmGzsSEzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/449e0649 +20:00:40.227 [XNIO-1 task-2] KSQ21lNqTFayZmGzsSEzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.227 [XNIO-1 task-2] KSQ21lNqTFayZmGzsSEzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:40.227 [XNIO-1 task-2] KSQ21lNqTFayZmGzsSEzDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/449e0649 +20:00:40.267 [XNIO-1 task-2] d5CV2k1BTrqDgwuhmgZW1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/63bc52e6, base path is set to: null +20:00:40.267 [XNIO-1 task-2] d5CV2k1BTrqDgwuhmgZW1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.268 [XNIO-1 task-2] d5CV2k1BTrqDgwuhmgZW1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:40.268 [XNIO-1 task-2] d5CV2k1BTrqDgwuhmgZW1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/63bc52e6, base path is set to: null +20:00:40.268 [XNIO-1 task-2] d5CV2k1BTrqDgwuhmgZW1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "63bc52e6", "63bc52e6", serviceId) +20:00:40.319 [XNIO-1 task-2] D5nr4wtDRw-fx22Kh7PFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.319 [XNIO-1 task-2] D5nr4wtDRw-fx22Kh7PFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.320 [XNIO-1 task-2] D5nr4wtDRw-fx22Kh7PFnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.322 [XNIO-1 task-2] D5nr4wtDRw-fx22Kh7PFnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.385 [XNIO-1 task-2] fPMJJmT8Q4eNpgY3FGDHfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63bc52e6 +20:00:40.385 [XNIO-1 task-2] fPMJJmT8Q4eNpgY3FGDHfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.385 [XNIO-1 task-2] fPMJJmT8Q4eNpgY3FGDHfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:40.385 [XNIO-1 task-2] fPMJJmT8Q4eNpgY3FGDHfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/63bc52e6 +20:00:40.425 [XNIO-1 task-2] gNAqn6D7SSmHUmtagnLVMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.425 [XNIO-1 task-2] gNAqn6D7SSmHUmtagnLVMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.426 [XNIO-1 task-2] gNAqn6D7SSmHUmtagnLVMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.440 [XNIO-1 task-2] RDvf47BwTKG0QACwi_6sEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e7525cae, base path is set to: null +20:00:40.440 [XNIO-1 task-2] RDvf47BwTKG0QACwi_6sEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.441 [XNIO-1 task-2] RDvf47BwTKG0QACwi_6sEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:40.441 [XNIO-1 task-2] RDvf47BwTKG0QACwi_6sEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e7525cae, base path is set to: null +20:00:40.441 [XNIO-1 task-2] RDvf47BwTKG0QACwi_6sEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e7525cae", "e7525cae", serviceId) +20:00:40.456 [XNIO-1 task-2] h9IvyARIRjiPzfh-_o0rew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.456 [XNIO-1 task-2] h9IvyARIRjiPzfh-_o0rew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.457 [XNIO-1 task-2] h9IvyARIRjiPzfh-_o0rew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.494 [XNIO-1 task-2] NkZh0cytT5aEnPNSegzCbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.495 [XNIO-1 task-2] NkZh0cytT5aEnPNSegzCbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.495 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:785c3756-7daa-48e1-9c2e-b3f3aa8d476a +20:00:40.495 [XNIO-1 task-2] NkZh0cytT5aEnPNSegzCbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.510 [XNIO-1 task-2] ohsBN9myQ5eHwK8vnKIJdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.510 [XNIO-1 task-2] ohsBN9myQ5eHwK8vnKIJdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.511 [XNIO-1 task-2] ohsBN9myQ5eHwK8vnKIJdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.511 [XNIO-1 task-2] ohsBN9myQ5eHwK8vnKIJdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.525 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.525 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.525 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.527 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.527 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.528 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:40.528 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.528 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5ce09ee-a13c-4357-b0bc-1198a160", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:40.528 [XNIO-1 task-2] DYcDGbaHSzycuiKvjMR6ZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.557 [XNIO-1 task-2] xPa3eAP3Qvmh9X5vRHAnQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/feb3ea56, base path is set to: null +20:00:40.558 [XNIO-1 task-2] xPa3eAP3Qvmh9X5vRHAnQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.558 [XNIO-1 task-2] xPa3eAP3Qvmh9X5vRHAnQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:40.558 [XNIO-1 task-2] xPa3eAP3Qvmh9X5vRHAnQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/feb3ea56, base path is set to: null +20:00:40.558 [XNIO-1 task-2] xPa3eAP3Qvmh9X5vRHAnQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "feb3ea56", "feb3ea56", serviceId) +20:00:40.616 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.616 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.616 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.617 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.617 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:40.617 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG com.networknt.schema.TypeValidator debug - validate( "f9e5948b-6ea9-4365-874e-80312c0341c1", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:40.618 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb30e5e7", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:40.618 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:40.618 [XNIO-1 task-2] Ci2DIjxETc6yRaPY0F0UGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.660 [XNIO-1 task-2] 8NWl7aKtR0easNFqUjGwPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.660 [XNIO-1 task-2] 8NWl7aKtR0easNFqUjGwPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.660 [XNIO-1 task-2] 8NWl7aKtR0easNFqUjGwPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.661 [XNIO-1 task-2] 8NWl7aKtR0easNFqUjGwPA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.765 [XNIO-1 task-2] j9MhTCNVTX2wtIKt0TVdeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.766 [XNIO-1 task-2] j9MhTCNVTX2wtIKt0TVdeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.766 [XNIO-1 task-2] j9MhTCNVTX2wtIKt0TVdeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.772 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e94a8965-50bc-4511-9bbf-2bd8e002550d +20:00:40.783 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.783 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.783 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.784 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.784 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.785 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:40.785 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.785 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e5ce09ee-a13c-4357-b0bc-1198a160", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:40.785 [XNIO-1 task-2] LF9Pm5_HQdSPW9LODCfbRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.795 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.796 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.798 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.799 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.799 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.799 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:40.799 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.799 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG com.networknt.schema.TypeValidator debug - validate( "74f95b9e-4e9c-487e-96f9-f4d7c815", {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:40.799 [XNIO-1 task-2] KDkuSSAbRS-uv7-QZdHA3w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cadb4bac","serviceName":"74f95b9e-4e9c-487e-96f9-f4d7c815","serviceDesc":"26761511-499d-4d81-b2c2-5f1ad30d9063","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.839 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:139f3593-c06f-4fd3-8469-573f83f1758e +20:00:40.839 [XNIO-1 task-2] m6g6Y1LYRbabfr6AR85DJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.839 [XNIO-1 task-2] m6g6Y1LYRbabfr6AR85DJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.840 [XNIO-1 task-2] m6g6Y1LYRbabfr6AR85DJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.841 [XNIO-1 task-2] m6g6Y1LYRbabfr6AR85DJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.897 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.897 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.898 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:40.898 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.899 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.899 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:40.899 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:40.899 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5ce09ee-a13c-4357-b0bc-1198a160", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:40.899 [XNIO-1 task-2] sPVpLZtKQQeTTyUPZdCyMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:40.928 [XNIO-1 task-2] Euvl3hNYQQeW8EPlXlQigQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cadb4bac, base path is set to: null +20:00:40.928 [XNIO-1 task-2] Euvl3hNYQQeW8EPlXlQigQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.928 [XNIO-1 task-2] Euvl3hNYQQeW8EPlXlQigQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:40.929 [XNIO-1 task-2] Euvl3hNYQQeW8EPlXlQigQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cadb4bac, base path is set to: null +20:00:40.930 [XNIO-1 task-2] Euvl3hNYQQeW8EPlXlQigQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cadb4bac", "cadb4bac", serviceId) +20:00:40.945 [XNIO-1 task-2] 5dPNx-VgTPCheLCWyiN6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb30e5e7 +20:00:40.945 [XNIO-1 task-2] 5dPNx-VgTPCheLCWyiN6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.946 [XNIO-1 task-2] 5dPNx-VgTPCheLCWyiN6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:40.946 [XNIO-1 task-2] 5dPNx-VgTPCheLCWyiN6NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb30e5e7 +20:00:40.954 [XNIO-1 task-2] Lix1qEIvQMKm0_5cEDix6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb30e5e7, base path is set to: null +20:00:40.954 [XNIO-1 task-2] Lix1qEIvQMKm0_5cEDix6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.954 [XNIO-1 task-2] Lix1qEIvQMKm0_5cEDix6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:40.954 [XNIO-1 task-2] Lix1qEIvQMKm0_5cEDix6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb30e5e7, base path is set to: null +20:00:40.955 [XNIO-1 task-2] Lix1qEIvQMKm0_5cEDix6A DEBUG com.networknt.schema.TypeValidator debug - validate( "fb30e5e7", "fb30e5e7", serviceId) +20:00:40.961 [XNIO-1 task-2] qBLCJJuZQnmsOtm-8FAyjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb30e5e7, base path is set to: null +20:00:40.962 [XNIO-1 task-2] qBLCJJuZQnmsOtm-8FAyjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:40.962 [XNIO-1 task-2] qBLCJJuZQnmsOtm-8FAyjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:40.962 [XNIO-1 task-2] qBLCJJuZQnmsOtm-8FAyjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fb30e5e7, base path is set to: null +20:00:40.963 [XNIO-1 task-2] qBLCJJuZQnmsOtm-8FAyjw DEBUG com.networknt.schema.TypeValidator debug - validate( "fb30e5e7", "fb30e5e7", serviceId) +20:00:40.968 [XNIO-1 task-2] dnLSC6HVSt-wGLwEbxXdUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.968 [XNIO-1 task-2] dnLSC6HVSt-wGLwEbxXdUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.968 [XNIO-1 task-2] dnLSC6HVSt-wGLwEbxXdUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:40.969 [XNIO-1 task-2] dnLSC6HVSt-wGLwEbxXdUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:41.036 [XNIO-1 task-2] yggg-cEAQyCuWIYuR-QugQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.036 [XNIO-1 task-2] yggg-cEAQyCuWIYuR-QugQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.037 [XNIO-1 task-2] yggg-cEAQyCuWIYuR-QugQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.066 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.066 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.067 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.068 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.068 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.069 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9e5948b-6ea9-4365-874e-80312c0341c1", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:41.070 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb30e5e7", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:41.070 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.070 [XNIO-1 task-2] Wzj55KlESfGCULfMM0utDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.085 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.085 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.086 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.087 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.087 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.087 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG com.networknt.schema.TypeValidator debug - validate( "f9e5948b-6ea9-4365-874e-80312c0341c1", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:41.087 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG com.networknt.schema.TypeValidator debug - validate( "fb30e5e7", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:41.087 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.087 [XNIO-1 task-2] m6acj028S9m63w1zl43o2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fb30e5e7","serviceName":"e5ce09ee-a13c-4357-b0bc-1198a160","serviceDesc":"f9e5948b-6ea9-4365-874e-80312c0341c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.099 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.099 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.100 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.101 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.101 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.101 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG com.networknt.schema.TypeValidator debug - validate( "660b5e69-91cf-4cbf-8494-5098ddfd7165", {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:41.101 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a27b088", {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:41.101 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.101 [XNIO-1 task-2] bM73YevLRRKCMGZJyjhscw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.113 [XNIO-1 task-2] lDk43wSQS7OA0plx8flmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb30e5e7 +20:00:41.113 [XNIO-1 task-2] lDk43wSQS7OA0plx8flmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.113 [XNIO-1 task-2] lDk43wSQS7OA0plx8flmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.113 [XNIO-1 task-2] lDk43wSQS7OA0plx8flmgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fb30e5e7 +20:00:41.127 [XNIO-1 task-2] 9SUjgkJqTWyZ73K8MGNOVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.128 [XNIO-1 task-2] 9SUjgkJqTWyZ73K8MGNOVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.128 [XNIO-1 task-2] 9SUjgkJqTWyZ73K8MGNOVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.139 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7b41b179-365b-454a-bc1e-9d313e216dc6 +20:00:41.142 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7b41b179-365b-454a-bc1e-9d313e216dc6 +20:00:41.143 [XNIO-1 task-2] pdQhjD6ST4GFrVvVVDlOpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.143 [XNIO-1 task-2] pdQhjD6ST4GFrVvVVDlOpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.144 [XNIO-1 task-2] pdQhjD6ST4GFrVvVVDlOpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.145 [XNIO-1 task-2] pdQhjD6ST4GFrVvVVDlOpA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:41.166 [XNIO-1 task-2] fcF_xhvbQt-sliD_JY_AVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.167 [XNIO-1 task-2] fcF_xhvbQt-sliD_JY_AVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.167 [XNIO-1 task-2] fcF_xhvbQt-sliD_JY_AVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.178 [XNIO-1 task-2] vbDbJSBCTWq_1L_GmD0YtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ce167de +20:00:41.178 [XNIO-1 task-2] vbDbJSBCTWq_1L_GmD0YtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.178 [XNIO-1 task-2] vbDbJSBCTWq_1L_GmD0YtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.178 [XNIO-1 task-2] vbDbJSBCTWq_1L_GmD0YtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ce167de +20:00:41.183 [XNIO-1 task-2] Vti2xgwhQZ6pd0JY7dIrQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.183 [XNIO-1 task-2] Vti2xgwhQZ6pd0JY7dIrQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.183 [XNIO-1 task-2] Vti2xgwhQZ6pd0JY7dIrQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.232 [XNIO-1 task-2] LNuQvk7MR6ie1d_nv4vtnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.233 [XNIO-1 task-2] LNuQvk7MR6ie1d_nv4vtnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.233 [XNIO-1 task-2] LNuQvk7MR6ie1d_nv4vtnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.233 [XNIO-1 task-2] LNuQvk7MR6ie1d_nv4vtnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.256 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.256 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.256 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.257 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.257 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.257 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.257 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.258 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG com.networknt.schema.TypeValidator debug - validate( "6816b4a1-ce81-4cd3-8cc6-69067719", {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:41.258 [XNIO-1 task-2] tKFKStixTBuyGJcPePIK9w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a27b088","serviceName":"6816b4a1-ce81-4cd3-8cc6-69067719","serviceDesc":"660b5e69-91cf-4cbf-8494-5098ddfd7165","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.272 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.272 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.273 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.273 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.274 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.274 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.274 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.274 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "13528786-dd3c-4cd0-9977-07c8ed24", {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:41.274 [XNIO-1 task-2] hzpo8ER1Tf-4rh9iR049Qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7ce167de","serviceName":"13528786-dd3c-4cd0-9977-07c8ed24","serviceDesc":"6d1d9d85-74f3-40aa-bf3d-21814ec5cc66","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.283 [XNIO-1 task-2] D9L7PwgGTGiccaTz0rYzXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.284 [XNIO-1 task-2] D9L7PwgGTGiccaTz0rYzXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.284 [XNIO-1 task-2] D9L7PwgGTGiccaTz0rYzXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.284 [XNIO-1 task-2] D9L7PwgGTGiccaTz0rYzXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.360 [XNIO-1 task-2] 5Mkug_EFTWufYIzr6Ux0hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.361 [XNIO-1 task-2] 5Mkug_EFTWufYIzr6Ux0hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.362 [XNIO-1 task-2] 5Mkug_EFTWufYIzr6Ux0hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.393 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:785c3756-7daa-48e1-9c2e-b3f3aa8d476a +20:00:41.398 [XNIO-1 task-2] JkVOXJRIRTKEca9vfpFNMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.398 [XNIO-1 task-2] JkVOXJRIRTKEca9vfpFNMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.398 [XNIO-1 task-2] JkVOXJRIRTKEca9vfpFNMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.399 [XNIO-1 task-2] JkVOXJRIRTKEca9vfpFNMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:41.420 [XNIO-1 task-2] FGrBd-nKRiSvOASjDt3TnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.421 [XNIO-1 task-2] FGrBd-nKRiSvOASjDt3TnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.421 [XNIO-1 task-2] FGrBd-nKRiSvOASjDt3TnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.421 [XNIO-1 task-2] FGrBd-nKRiSvOASjDt3TnQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:41.493 [XNIO-1 task-2] NzmudusaR0OLt2wo-l1ysw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.494 [XNIO-1 task-2] NzmudusaR0OLt2wo-l1ysw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.494 [XNIO-1 task-2] NzmudusaR0OLt2wo-l1ysw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.494 [XNIO-1 task-2] NzmudusaR0OLt2wo-l1ysw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.504 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.504 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.505 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.531 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.531 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.531 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.531 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:41.531 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG com.networknt.schema.TypeValidator debug - validate( "10961d3b-bb8a-463c-be6a-65bfd91e", {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:41.531 [XNIO-1 task-2] enaluIxCQC6BKO_Q70_vuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.625 [XNIO-1 task-2] H7RhKzXxQh2qCLFkO0rz1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.626 [XNIO-1 task-2] H7RhKzXxQh2qCLFkO0rz1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.626 [XNIO-1 task-2] H7RhKzXxQh2qCLFkO0rz1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.626 [XNIO-1 task-2] H7RhKzXxQh2qCLFkO0rz1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.643 [XNIO-1 task-2] WbxykDblTAqysP_6jIjscA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.643 [XNIO-1 task-2] WbxykDblTAqysP_6jIjscA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.643 [XNIO-1 task-2] WbxykDblTAqysP_6jIjscA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:41.644 [XNIO-1 task-2] WbxykDblTAqysP_6jIjscA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.644 [XNIO-1 task-2] WbxykDblTAqysP_6jIjscA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a27b088", "0a27b088", serviceId) +20:00:41.648 [XNIO-1 task-2] KeGR8YrCQv-aToQ_38p1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88dc7609 +20:00:41.648 [XNIO-1 task-2] KeGR8YrCQv-aToQ_38p1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.648 [XNIO-1 task-2] KeGR8YrCQv-aToQ_38p1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.649 [XNIO-1 task-2] KeGR8YrCQv-aToQ_38p1fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88dc7609 +20:00:41.658 [XNIO-1 task-2] k9ubx2FKQTOcjiHiTbNleg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.658 [XNIO-1 task-2] k9ubx2FKQTOcjiHiTbNleg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.658 [XNIO-1 task-2] k9ubx2FKQTOcjiHiTbNleg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:41.658 [XNIO-1 task-2] k9ubx2FKQTOcjiHiTbNleg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.659 [XNIO-1 task-2] k9ubx2FKQTOcjiHiTbNleg DEBUG com.networknt.schema.TypeValidator debug - validate( "0a27b088", "0a27b088", serviceId) +20:00:41.663 [XNIO-1 task-2] A-S3Vfj-QRixW2lf20AmIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.663 [XNIO-1 task-2] A-S3Vfj-QRixW2lf20AmIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.663 [XNIO-1 task-2] A-S3Vfj-QRixW2lf20AmIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.663 [XNIO-1 task-2] A-S3Vfj-QRixW2lf20AmIg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:41.710 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.710 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.710 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.712 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.712 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.712 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2f504389-75fd-4426-a89c-b4415e7a306b", {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:41.712 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG com.networknt.schema.TypeValidator debug - validate( "88dc7609", {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:41.712 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.712 [XNIO-1 task-2] 8B_1ks_cSyq9RDqQgy9ucQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"88dc7609","serviceName":"10961d3b-bb8a-463c-be6a-65bfd91e","serviceDesc":"2f504389-75fd-4426-a89c-b4415e7a306b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.732 [XNIO-1 task-2] leToftqZTI6vm4WU3uCOeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.732 [XNIO-1 task-2] leToftqZTI6vm4WU3uCOeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.732 [XNIO-1 task-2] leToftqZTI6vm4WU3uCOeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.732 [XNIO-1 task-2] leToftqZTI6vm4WU3uCOeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.739 [XNIO-1 task-2] WgnaUpxnSWq6L7_OUxD_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.739 [XNIO-1 task-2] WgnaUpxnSWq6L7_OUxD_Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.739 [XNIO-1 task-2] WgnaUpxnSWq6L7_OUxD_Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:41.740 [XNIO-1 task-2] WgnaUpxnSWq6L7_OUxD_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.740 [XNIO-1 task-2] WgnaUpxnSWq6L7_OUxD_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a27b088", "0a27b088", serviceId) +20:00:41.744 [XNIO-1 task-2] fKeqf6kqQW-ricqpt9epkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.744 [XNIO-1 task-2] fKeqf6kqQW-ricqpt9epkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.744 [XNIO-1 task-2] fKeqf6kqQW-ricqpt9epkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.744 [XNIO-1 task-2] fKeqf6kqQW-ricqpt9epkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.748 [XNIO-1 task-2] a82ASjSERzijpIthpJlTDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.748 [XNIO-1 task-2] a82ASjSERzijpIthpJlTDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.748 [XNIO-1 task-2] a82ASjSERzijpIthpJlTDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:41.748 [XNIO-1 task-2] a82ASjSERzijpIthpJlTDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.749 [XNIO-1 task-2] a82ASjSERzijpIthpJlTDw DEBUG com.networknt.schema.TypeValidator debug - validate( "0a27b088", "0a27b088", serviceId) +20:00:41.753 [XNIO-1 task-2] QslCsyTmQHiyzU0rB_lgjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ce167de +20:00:41.753 [XNIO-1 task-2] QslCsyTmQHiyzU0rB_lgjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.753 [XNIO-1 task-2] QslCsyTmQHiyzU0rB_lgjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.753 [XNIO-1 task-2] QslCsyTmQHiyzU0rB_lgjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7ce167de +20:00:41.778 [XNIO-1 task-2] HviAnXohToeR-C52AYVO5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b43112f1, base path is set to: null +20:00:41.778 [XNIO-1 task-2] HviAnXohToeR-C52AYVO5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.779 [XNIO-1 task-2] HviAnXohToeR-C52AYVO5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:41.779 [XNIO-1 task-2] HviAnXohToeR-C52AYVO5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b43112f1, base path is set to: null +20:00:41.779 [XNIO-1 task-2] HviAnXohToeR-C52AYVO5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b43112f1", "b43112f1", serviceId) +20:00:41.784 [XNIO-1 task-2] s3YbvohzSae_etnmGKWSTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b43112f1 +20:00:41.784 [XNIO-1 task-2] s3YbvohzSae_etnmGKWSTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.784 [XNIO-1 task-2] s3YbvohzSae_etnmGKWSTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.785 [XNIO-1 task-2] s3YbvohzSae_etnmGKWSTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b43112f1 +20:00:41.790 [XNIO-1 task-2] QrScX9zjQdiVmjai6re0aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b43112f1, base path is set to: null +20:00:41.790 [XNIO-1 task-2] QrScX9zjQdiVmjai6re0aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.790 [XNIO-1 task-2] QrScX9zjQdiVmjai6re0aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:41.790 [XNIO-1 task-2] QrScX9zjQdiVmjai6re0aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b43112f1, base path is set to: null +20:00:41.791 [XNIO-1 task-2] QrScX9zjQdiVmjai6re0aA DEBUG com.networknt.schema.TypeValidator debug - validate( "b43112f1", "b43112f1", serviceId) +20:00:41.793 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.793 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.794 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.794 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.794 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.795 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG com.networknt.schema.TypeValidator debug - validate( "9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce", {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:41.795 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG com.networknt.schema.TypeValidator debug - validate( "b43112f1", {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:41.795 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.795 [XNIO-1 task-2] pHoYWjFIRvqg1aMa0GxJww DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b43112f1","serviceName":"063075c4-b43e-44b1-8b7f-70a8c4fa","serviceDesc":"9ffc5c7a-ef37-41cc-8173-f2acbbb2c1ce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.808 [XNIO-1 task-2] OZE8iiBrRqysuxaR2ppNwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.809 [XNIO-1 task-2] OZE8iiBrRqysuxaR2ppNwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.809 [XNIO-1 task-2] OZE8iiBrRqysuxaR2ppNwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.847 [XNIO-1 task-2] Q2gi1oZfQYiP5Gi-1GdcSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88dc7609 +20:00:41.847 [XNIO-1 task-2] Q2gi1oZfQYiP5Gi-1GdcSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.847 [XNIO-1 task-2] Q2gi1oZfQYiP5Gi-1GdcSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.848 [XNIO-1 task-2] Q2gi1oZfQYiP5Gi-1GdcSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88dc7609 +20:00:41.852 [XNIO-1 task-2] 8SkW8_0KSFuKXuRLhNd6HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.853 [XNIO-1 task-2] 8SkW8_0KSFuKXuRLhNd6HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.853 [XNIO-1 task-2] 8SkW8_0KSFuKXuRLhNd6HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.853 [XNIO-1 task-2] 8SkW8_0KSFuKXuRLhNd6HA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.882 [XNIO-1 task-2] 8xXGlEhHTsufDLRvYOpKzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.883 [XNIO-1 task-2] 8xXGlEhHTsufDLRvYOpKzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.883 [XNIO-1 task-2] 8xXGlEhHTsufDLRvYOpKzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.884 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a322d237 +20:00:41.886 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a322d237 +20:00:41.894 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.894 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.894 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.895 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.895 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:41.896 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c6825d3c-de3b-4f77-bf78-fd768f89c0d3", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:41.896 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG com.networknt.schema.TypeValidator debug - validate( "18ae3482", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:41.896 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:41.896 [XNIO-1 task-2] o_oFv6cASDSHIX3cp5J41Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:41.907 [XNIO-1 task-2] nyEMh_AgRBas0Te5web9OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88dc7609 +20:00:41.907 [XNIO-1 task-2] nyEMh_AgRBas0Te5web9OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.907 [XNIO-1 task-2] nyEMh_AgRBas0Te5web9OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.907 [XNIO-1 task-2] nyEMh_AgRBas0Te5web9OQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/88dc7609 +20:00:41.924 [XNIO-1 task-2] u-Du2kH9RkOoBbbXv3pazA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.924 [XNIO-1 task-2] u-Du2kH9RkOoBbbXv3pazA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.924 [XNIO-1 task-2] u-Du2kH9RkOoBbbXv3pazA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:41.924 [XNIO-1 task-2] u-Du2kH9RkOoBbbXv3pazA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a27b088, base path is set to: null +20:00:41.924 [XNIO-1 task-2] u-Du2kH9RkOoBbbXv3pazA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a27b088", "0a27b088", serviceId) +20:00:41.928 [XNIO-1 task-2] jmy1BsZ7Tp6e1QpFh-bSxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.928 [XNIO-1 task-2] jmy1BsZ7Tp6e1QpFh-bSxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.928 [XNIO-1 task-2] jmy1BsZ7Tp6e1QpFh-bSxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.929 [XNIO-1 task-2] jmy1BsZ7Tp6e1QpFh-bSxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.931 [XNIO-1 task-2] vnbq1GxcRKeJbAvy2ILY5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.932 [XNIO-1 task-2] vnbq1GxcRKeJbAvy2ILY5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:41.932 [XNIO-1 task-2] vnbq1GxcRKeJbAvy2ILY5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:41.938 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:77a2018e-21be-4f46-a943-cb29ab68c7eb +20:00:41.940 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:77a2018e-21be-4f46-a943-cb29ab68c7eb +20:00:41.948 [XNIO-1 task-2] cdqtP7seQUCd0pjQRz6EPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.948 [XNIO-1 task-2] cdqtP7seQUCd0pjQRz6EPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.948 [XNIO-1 task-2] cdqtP7seQUCd0pjQRz6EPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.949 [XNIO-1 task-2] cdqtP7seQUCd0pjQRz6EPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:41.962 [XNIO-1 task-2] hdMKp01cS1acUbtnqbRZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.962 [XNIO-1 task-2] hdMKp01cS1acUbtnqbRZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:41.962 [XNIO-1 task-2] hdMKp01cS1acUbtnqbRZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:41.962 [XNIO-1 task-2] hdMKp01cS1acUbtnqbRZ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0a27b088 +20:00:41.999 [XNIO-1 task-2] wvBOvk8mRSWmpJqerbALDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18ae3482, base path is set to: null +20:00:42.000 [XNIO-1 task-2] wvBOvk8mRSWmpJqerbALDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.000 [XNIO-1 task-2] wvBOvk8mRSWmpJqerbALDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.000 [XNIO-1 task-2] wvBOvk8mRSWmpJqerbALDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18ae3482, base path is set to: null +20:00:42.001 [XNIO-1 task-2] wvBOvk8mRSWmpJqerbALDA DEBUG com.networknt.schema.TypeValidator debug - validate( "18ae3482", "18ae3482", serviceId) +20:00:42.005 [XNIO-1 task-2] 1F6BuYB4RWCkmI2ObnXnpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b43112f1 +20:00:42.005 [XNIO-1 task-2] 1F6BuYB4RWCkmI2ObnXnpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.006 [XNIO-1 task-2] 1F6BuYB4RWCkmI2ObnXnpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.006 [XNIO-1 task-2] 1F6BuYB4RWCkmI2ObnXnpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b43112f1 +20:00:42.062 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.062 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.063 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.063 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.063 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.064 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:42.064 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.064 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8c8000e8-851c-4266-a9ed-087cbc49", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:42.064 [XNIO-1 task-2] HrkY3VCETd2219sD7MILWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.077 [XNIO-1 task-2] nt6O4e9gSXmv_wnz9ovknw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a322d237, base path is set to: null +20:00:42.078 [XNIO-1 task-2] nt6O4e9gSXmv_wnz9ovknw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.078 [XNIO-1 task-2] nt6O4e9gSXmv_wnz9ovknw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.078 [XNIO-1 task-2] nt6O4e9gSXmv_wnz9ovknw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a322d237, base path is set to: null +20:00:42.078 [XNIO-1 task-2] nt6O4e9gSXmv_wnz9ovknw DEBUG com.networknt.schema.TypeValidator debug - validate( "a322d237", "a322d237", serviceId) +20:00:42.081 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bbdce8d1-267a-46c8-a0e7-5256094a124d +20:00:42.083 [XNIO-1 task-2] OsbMJnilQquzuZwMcEGFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/82c605f9 +20:00:42.084 [XNIO-1 task-2] OsbMJnilQquzuZwMcEGFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.084 [XNIO-1 task-2] OsbMJnilQquzuZwMcEGFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.084 [XNIO-1 task-2] OsbMJnilQquzuZwMcEGFQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/82c605f9 +20:00:42.100 [XNIO-1 task-2] ZCX0n0SLRMGRdVO20yjn-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.100 [XNIO-1 task-2] ZCX0n0SLRMGRdVO20yjn-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.101 [XNIO-1 task-2] ZCX0n0SLRMGRdVO20yjn-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.114 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.114 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.114 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.115 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.115 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.115 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:42.115 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.115 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG com.networknt.schema.TypeValidator debug - validate( "3d966cc2-c651-49fa-90f5-886783f8", {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:42.116 [XNIO-1 task-2] kfxSkpIDSOysk63TPoyqQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.116 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:a322d237 +20:00:42.124 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:bbdce8d1-267a-46c8-a0e7-5256094a124d +20:00:42.128 [XNIO-1 task-2] 4hGKn956Rh2QHxHOPZ7UMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.128 [XNIO-1 task-2] 4hGKn956Rh2QHxHOPZ7UMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.129 [XNIO-1 task-2] 4hGKn956Rh2QHxHOPZ7UMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.148 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.148 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.148 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.151 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.151 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:42.151 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG com.networknt.schema.TypeValidator debug - validate( "8fad5525-52d3-49e9-a9e9-cf762ee32f4b", {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:42.151 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG com.networknt.schema.TypeValidator debug - validate( "a322d237", {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:42.151 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.151 [XNIO-1 task-2] _v4jVrUtQIejThldFGG2zg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a322d237","serviceName":"3d966cc2-c651-49fa-90f5-886783f8","serviceDesc":"8fad5525-52d3-49e9-a9e9-cf762ee32f4b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.153 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:a322d237 +20:00:42.239 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:669ea312-2e09-48c0-ac1e-539d01e35f0f +20:00:42.240 [XNIO-1 task-2] rla-L9AJRAKPL4B5UazLbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.257 [XNIO-1 task-2] rla-L9AJRAKPL4B5UazLbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.258 [XNIO-1 task-2] rla-L9AJRAKPL4B5UazLbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.275 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4ffcff5e +20:00:42.278 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4ffcff5e +20:00:42.287 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fd5dec24-54fc-4b95-9f2b-6f07151a4974 +20:00:42.287 [XNIO-1 task-2] cdjmPOZPStSbGtQbG2rcqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4ffcff5e +20:00:42.288 [XNIO-1 task-2] cdjmPOZPStSbGtQbG2rcqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.288 [XNIO-1 task-2] cdjmPOZPStSbGtQbG2rcqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.289 [XNIO-1 task-2] cdjmPOZPStSbGtQbG2rcqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4ffcff5e +20:00:42.290 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4ffcff5e +20:00:42.310 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.310 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.310 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.311 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.311 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.311 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:42.311 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.311 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG com.networknt.schema.TypeValidator debug - validate( "8c8000e8-851c-4266-a9ed-087cbc49", {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:42.311 [XNIO-1 task-2] VDE7s8NmRXmDbQc4FZNsoA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"18ae3482","serviceName":"8c8000e8-851c-4266-a9ed-087cbc49","serviceDesc":"c6825d3c-de3b-4f77-bf78-fd768f89c0d3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.337 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:15b5c916 +20:00:42.349 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:15b5c916 +20:00:42.374 [XNIO-1 task-2] Zmx7t5WUTPSAaxdBLm7tvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.374 [XNIO-1 task-2] Zmx7t5WUTPSAaxdBLm7tvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.375 [XNIO-1 task-2] Zmx7t5WUTPSAaxdBLm7tvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.410 [XNIO-1 task-2] kqOTgHw6RR-SfynP2df0bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a322d237 +20:00:42.410 [XNIO-1 task-2] kqOTgHw6RR-SfynP2df0bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.410 [XNIO-1 task-2] kqOTgHw6RR-SfynP2df0bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.410 [XNIO-1 task-2] kqOTgHw6RR-SfynP2df0bA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a322d237 +20:00:42.432 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a322d237 +20:00:42.443 [XNIO-1 task-2] KXQvZ26sQ0aF9e_qlhBbQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.444 [XNIO-1 task-2] KXQvZ26sQ0aF9e_qlhBbQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.444 [XNIO-1 task-2] KXQvZ26sQ0aF9e_qlhBbQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.444 [XNIO-1 task-2] KXQvZ26sQ0aF9e_qlhBbQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.459 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:77a2018e-21be-4f46-a943-cb29ab68c7eb +20:00:42.462 [XNIO-1 task-2] 9vYDaSGfTq2F9S_9UEUw1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:42.462 [XNIO-1 task-2] 9vYDaSGfTq2F9S_9UEUw1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.462 [XNIO-1 task-2] 9vYDaSGfTq2F9S_9UEUw1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.463 [XNIO-1 task-2] 9vYDaSGfTq2F9S_9UEUw1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:42.468 [XNIO-1 task-2] CWp1t52SRq26_342D_vYZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.468 [XNIO-1 task-2] CWp1t52SRq26_342D_vYZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.469 [XNIO-1 task-2] CWp1t52SRq26_342D_vYZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.470 [XNIO-1 task-2] CWp1t52SRq26_342D_vYZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.529 [XNIO-1 task-2] 7oafRKq2TGOO96d2YTKf6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8bf151f, base path is set to: null +20:00:42.530 [XNIO-1 task-2] 7oafRKq2TGOO96d2YTKf6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.530 [XNIO-1 task-2] 7oafRKq2TGOO96d2YTKf6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.530 [XNIO-1 task-2] 7oafRKq2TGOO96d2YTKf6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8bf151f, base path is set to: null +20:00:42.530 [XNIO-1 task-2] 7oafRKq2TGOO96d2YTKf6w DEBUG com.networknt.schema.TypeValidator debug - validate( "b8bf151f", "b8bf151f", serviceId) +20:00:42.534 [XNIO-1 task-2] V9yvvaRMRJiTXHxC0AAqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dadcb776 +20:00:42.534 [XNIO-1 task-2] V9yvvaRMRJiTXHxC0AAqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.534 [XNIO-1 task-2] V9yvvaRMRJiTXHxC0AAqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.534 [XNIO-1 task-2] V9yvvaRMRJiTXHxC0AAqFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dadcb776 +20:00:42.538 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.538 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.539 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.539 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.539 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.539 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:42.539 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:42.540 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG com.networknt.schema.TypeValidator debug - validate( "05ef39dd-b07d-475a-84c2-0a543cc9", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:42.540 [XNIO-1 task-2] GPK18RYfTH2GNtNcF-HyXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.552 [XNIO-1 task-2] NyoxxbYYQTaHZywD3zTaFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/86671835, base path is set to: null +20:00:42.552 [XNIO-1 task-2] NyoxxbYYQTaHZywD3zTaFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.553 [XNIO-1 task-2] NyoxxbYYQTaHZywD3zTaFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.553 [XNIO-1 task-2] NyoxxbYYQTaHZywD3zTaFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/86671835, base path is set to: null +20:00:42.553 [XNIO-1 task-2] NyoxxbYYQTaHZywD3zTaFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "86671835", "86671835", serviceId) +20:00:42.558 [XNIO-1 task-2] PxwJDa8VTjmeHIqq-Ba8Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.558 [XNIO-1 task-2] PxwJDa8VTjmeHIqq-Ba8Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.558 [XNIO-1 task-2] PxwJDa8VTjmeHIqq-Ba8Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.584 [XNIO-1 task-2] a9sqmEnFRSOTBAySZhlmcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/86671835 +20:00:42.584 [XNIO-1 task-2] a9sqmEnFRSOTBAySZhlmcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.585 [XNIO-1 task-2] a9sqmEnFRSOTBAySZhlmcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.585 [XNIO-1 task-2] a9sqmEnFRSOTBAySZhlmcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/86671835 +20:00:42.594 [XNIO-1 task-2] lTyC7OEVR2eyAF4cbb6ZRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18ae3482, base path is set to: null +20:00:42.594 [XNIO-1 task-2] lTyC7OEVR2eyAF4cbb6ZRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.594 [XNIO-1 task-2] lTyC7OEVR2eyAF4cbb6ZRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.595 [XNIO-1 task-2] lTyC7OEVR2eyAF4cbb6ZRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18ae3482, base path is set to: null +20:00:42.595 [XNIO-1 task-2] lTyC7OEVR2eyAF4cbb6ZRA DEBUG com.networknt.schema.TypeValidator debug - validate( "18ae3482", "18ae3482", serviceId) +20:00:42.616 [XNIO-1 task-2] 1zqvkLwNRcq9pJQ-pv_OVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dadcb776, base path is set to: null +20:00:42.617 [XNIO-1 task-2] 1zqvkLwNRcq9pJQ-pv_OVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.617 [XNIO-1 task-2] 1zqvkLwNRcq9pJQ-pv_OVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.617 [XNIO-1 task-2] 1zqvkLwNRcq9pJQ-pv_OVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dadcb776, base path is set to: null +20:00:42.617 [XNIO-1 task-2] 1zqvkLwNRcq9pJQ-pv_OVg DEBUG com.networknt.schema.TypeValidator debug - validate( "dadcb776", "dadcb776", serviceId) +20:00:42.624 [XNIO-1 task-2] IJvvMzxKQlahO27Pb-52gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/61eaf4d4, base path is set to: null +20:00:42.625 [XNIO-1 task-2] IJvvMzxKQlahO27Pb-52gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.625 [XNIO-1 task-2] IJvvMzxKQlahO27Pb-52gQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.625 [XNIO-1 task-2] IJvvMzxKQlahO27Pb-52gQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/61eaf4d4, base path is set to: null +20:00:42.626 [XNIO-1 task-2] IJvvMzxKQlahO27Pb-52gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "61eaf4d4", "61eaf4d4", serviceId) +20:00:42.629 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c1e09c8d-378f-42f1-a49d-dd37cc8491e3 +20:00:42.648 [XNIO-1 task-2] 6_EivoDiQXu0nsIATHmKog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.648 [XNIO-1 task-2] 6_EivoDiQXu0nsIATHmKog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.649 [XNIO-1 task-2] 6_EivoDiQXu0nsIATHmKog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.682 [XNIO-1 task-2] MyJXV8ElR22Je7CvN3-RMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dadcb776 +20:00:42.682 [XNIO-1 task-2] MyJXV8ElR22Je7CvN3-RMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.682 [XNIO-1 task-2] MyJXV8ElR22Je7CvN3-RMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.683 [XNIO-1 task-2] MyJXV8ElR22Je7CvN3-RMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dadcb776 +20:00:42.690 [XNIO-1 task-2] OjhJ-rx_SzWqRJMQt3hJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.690 [XNIO-1 task-2] OjhJ-rx_SzWqRJMQt3hJkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.691 [XNIO-1 task-2] OjhJ-rx_SzWqRJMQt3hJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.723 [XNIO-1 task-2] M3dc4Y-BQhOpVxRQLL9wAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dadcb776, base path is set to: null +20:00:42.724 [XNIO-1 task-2] M3dc4Y-BQhOpVxRQLL9wAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.724 [XNIO-1 task-2] M3dc4Y-BQhOpVxRQLL9wAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.725 [XNIO-1 task-2] M3dc4Y-BQhOpVxRQLL9wAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dadcb776, base path is set to: null +20:00:42.725 [XNIO-1 task-2] M3dc4Y-BQhOpVxRQLL9wAg DEBUG com.networknt.schema.TypeValidator debug - validate( "dadcb776", "dadcb776", serviceId) +20:00:42.730 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9e5be597-2d73-41d3-8270-7055fd8c1a46 +20:00:42.742 [XNIO-1 task-2] 5jNU-MDBTO-QnxHJ4RG4Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.743 [XNIO-1 task-2] 5jNU-MDBTO-QnxHJ4RG4Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.743 [XNIO-1 task-2] 5jNU-MDBTO-QnxHJ4RG4Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.749 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9e5be597-2d73-41d3-8270-7055fd8c1a46 +20:00:42.775 [XNIO-1 task-2] jNyPBtyiR3mO9zKI92Xang DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.775 [XNIO-1 task-2] jNyPBtyiR3mO9zKI92Xang DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.776 [XNIO-1 task-2] jNyPBtyiR3mO9zKI92Xang DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.777 [XNIO-1 task-2] jNyPBtyiR3mO9zKI92Xang DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.799 [XNIO-1 task-2] 0Txo0xB6QoK1YBQXgQb32Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:42.799 [XNIO-1 task-2] 0Txo0xB6QoK1YBQXgQb32Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.800 [XNIO-1 task-2] 0Txo0xB6QoK1YBQXgQb32Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.800 [XNIO-1 task-2] 0Txo0xB6QoK1YBQXgQb32Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:42.812 [XNIO-1 task-2] NJbkRZi2RxCkuSaEtaMnuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.813 [XNIO-1 task-2] NJbkRZi2RxCkuSaEtaMnuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.813 [XNIO-1 task-2] NJbkRZi2RxCkuSaEtaMnuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.813 [XNIO-1 task-2] NJbkRZi2RxCkuSaEtaMnuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.848 [XNIO-1 task-2] 2N6A2DLRTHOsburEgCscYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:42.848 [XNIO-1 task-2] 2N6A2DLRTHOsburEgCscYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.848 [XNIO-1 task-2] 2N6A2DLRTHOsburEgCscYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.848 [XNIO-1 task-2] 2N6A2DLRTHOsburEgCscYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:42.849 [XNIO-1 task-2] 2N6A2DLRTHOsburEgCscYA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1292dbf", "e1292dbf", serviceId) +20:00:42.852 [XNIO-1 task-2] yRI8enxRTWGw8Jf0hI7mwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:42.852 [XNIO-1 task-2] yRI8enxRTWGw8Jf0hI7mwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.852 [XNIO-1 task-2] yRI8enxRTWGw8Jf0hI7mwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.852 [XNIO-1 task-2] yRI8enxRTWGw8Jf0hI7mwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:42.856 [XNIO-1 task-2] SkMRx8uLQ4mcBZLr4tYlWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:42.857 [XNIO-1 task-2] SkMRx8uLQ4mcBZLr4tYlWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.857 [XNIO-1 task-2] SkMRx8uLQ4mcBZLr4tYlWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.857 [XNIO-1 task-2] SkMRx8uLQ4mcBZLr4tYlWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:42.858 [XNIO-1 task-2] SkMRx8uLQ4mcBZLr4tYlWg DEBUG com.networknt.schema.TypeValidator debug - validate( "e1292dbf", "e1292dbf", serviceId) +20:00:42.861 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.861 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.861 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.862 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.863 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:42.863 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a22b2b73-c211-40e9-974f-a9e138243934", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:42.863 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e1292dbf", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:42.863 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.863 [XNIO-1 task-2] CtIRbxWURM2hpZSpk82V5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.877 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.877 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.878 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.878 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.878 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:42.878 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG com.networknt.schema.TypeValidator debug - validate( "ddee5393-69bc-4e01-8121-83edcc01e1eb", {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:42.879 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG com.networknt.schema.TypeValidator debug - validate( "b8bf151f", {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:42.879 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:42.879 [XNIO-1 task-2] Nkz5h9XVS-OGfjsxVr8kJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf151f","serviceName":"ec245605-67bd-49a7-9275-0b3add2a","serviceDesc":"ddee5393-69bc-4e01-8121-83edcc01e1eb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:42.929 [XNIO-1 task-2] 1Vs5CIpkQTSOPir4bRh8Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.930 [XNIO-1 task-2] 1Vs5CIpkQTSOPir4bRh8Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.930 [XNIO-1 task-2] 1Vs5CIpkQTSOPir4bRh8Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:42.949 [XNIO-1 task-2] pIT7AOBbT26zJeZY00rICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0b371fc6, base path is set to: null +20:00:42.949 [XNIO-1 task-2] pIT7AOBbT26zJeZY00rICg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.949 [XNIO-1 task-2] pIT7AOBbT26zJeZY00rICg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.949 [XNIO-1 task-2] pIT7AOBbT26zJeZY00rICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0b371fc6, base path is set to: null +20:00:42.950 [XNIO-1 task-2] pIT7AOBbT26zJeZY00rICg DEBUG com.networknt.schema.TypeValidator debug - validate( "0b371fc6", "0b371fc6", serviceId) +20:00:42.967 [XNIO-1 task-2] Ymx-zFDmR0mHOjBJawU0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f05c3a0b +20:00:42.968 [XNIO-1 task-2] Ymx-zFDmR0mHOjBJawU0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:42.968 [XNIO-1 task-2] Ymx-zFDmR0mHOjBJawU0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:42.968 [XNIO-1 task-2] Ymx-zFDmR0mHOjBJawU0nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f05c3a0b +20:00:42.998 [XNIO-1 task-2] a-zGGxFrR0uDqbwLVruCbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0cd40818, base path is set to: null +20:00:42.999 [XNIO-1 task-2] a-zGGxFrR0uDqbwLVruCbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:42.999 [XNIO-1 task-2] a-zGGxFrR0uDqbwLVruCbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:42.999 [XNIO-1 task-2] a-zGGxFrR0uDqbwLVruCbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0cd40818, base path is set to: null +20:00:43.000 [XNIO-1 task-2] a-zGGxFrR0uDqbwLVruCbg DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd40818", "0cd40818", serviceId) +20:00:43.004 [XNIO-1 task-2] JrnmLgpDQb-kJa1uAPZTJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0cd40818 +20:00:43.004 [XNIO-1 task-2] JrnmLgpDQb-kJa1uAPZTJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.004 [XNIO-1 task-2] JrnmLgpDQb-kJa1uAPZTJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.005 [XNIO-1 task-2] JrnmLgpDQb-kJa1uAPZTJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0cd40818 +20:00:43.009 [XNIO-1 task-2] 7fZvhHPLT_mpu6nYnRw1WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.011 [XNIO-1 task-2] 7fZvhHPLT_mpu6nYnRw1WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.011 [XNIO-1 task-2] 7fZvhHPLT_mpu6nYnRw1WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.011 [XNIO-1 task-2] 7fZvhHPLT_mpu6nYnRw1WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.031 [XNIO-1 task-2] bTCSOomgT6Gerfw55zR_kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0cd40818, base path is set to: null +20:00:43.031 [XNIO-1 task-2] bTCSOomgT6Gerfw55zR_kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.031 [XNIO-1 task-2] bTCSOomgT6Gerfw55zR_kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.031 [XNIO-1 task-2] bTCSOomgT6Gerfw55zR_kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0cd40818, base path is set to: null +20:00:43.032 [XNIO-1 task-2] bTCSOomgT6Gerfw55zR_kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd40818", "0cd40818", serviceId) +20:00:43.035 [XNIO-1 task-2] V9sxPaQKTB65SYA8EesLVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0cd40818 +20:00:43.036 [XNIO-1 task-2] V9sxPaQKTB65SYA8EesLVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.036 [XNIO-1 task-2] V9sxPaQKTB65SYA8EesLVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.036 [XNIO-1 task-2] V9sxPaQKTB65SYA8EesLVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0cd40818 +20:00:43.043 [XNIO-1 task-2] 4R2mcaTgTIyrjo8Ng68kkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0cd40818, base path is set to: null +20:00:43.043 [XNIO-1 task-2] 4R2mcaTgTIyrjo8Ng68kkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.043 [XNIO-1 task-2] 4R2mcaTgTIyrjo8Ng68kkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.043 [XNIO-1 task-2] 4R2mcaTgTIyrjo8Ng68kkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0cd40818, base path is set to: null +20:00:43.044 [XNIO-1 task-2] 4R2mcaTgTIyrjo8Ng68kkw DEBUG com.networknt.schema.TypeValidator debug - validate( "0cd40818", "0cd40818", serviceId) +20:00:43.064 [XNIO-1 task-2] AULMPskyQymOeNHBv-xMgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.064 [XNIO-1 task-2] AULMPskyQymOeNHBv-xMgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.064 [XNIO-1 task-2] AULMPskyQymOeNHBv-xMgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.079 [XNIO-1 task-2] Y6JxRS8JQ9i6Lfp8jKLdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.080 [XNIO-1 task-2] Y6JxRS8JQ9i6Lfp8jKLdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.080 [XNIO-1 task-2] Y6JxRS8JQ9i6Lfp8jKLdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.080 [XNIO-1 task-2] Y6JxRS8JQ9i6Lfp8jKLdcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.088 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:669ea312-2e09-48c0-ac1e-539d01e35f0f +20:00:43.098 [XNIO-1 task-2] yFdScN2XSgWe3YPDw-tdgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf151f +20:00:43.098 [XNIO-1 task-2] yFdScN2XSgWe3YPDw-tdgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.099 [XNIO-1 task-2] yFdScN2XSgWe3YPDw-tdgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.099 [XNIO-1 task-2] yFdScN2XSgWe3YPDw-tdgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf151f +20:00:43.111 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +20:00:43.139 [XNIO-1 task-2] egfD8obhRFePDvO7C_9RDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:43.139 [XNIO-1 task-2] egfD8obhRFePDvO7C_9RDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.139 [XNIO-1 task-2] egfD8obhRFePDvO7C_9RDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.140 [XNIO-1 task-2] egfD8obhRFePDvO7C_9RDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:43.140 [XNIO-1 task-2] egfD8obhRFePDvO7C_9RDw DEBUG com.networknt.schema.TypeValidator debug - validate( "e1292dbf", "e1292dbf", serviceId) +20:00:43.143 [XNIO-1 task-2] r9mRPsDXTaWw45Y2D-8Shg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf04d2dd +20:00:43.143 [XNIO-1 task-2] r9mRPsDXTaWw45Y2D-8Shg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.144 [XNIO-1 task-2] r9mRPsDXTaWw45Y2D-8Shg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.144 [XNIO-1 task-2] r9mRPsDXTaWw45Y2D-8Shg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf04d2dd +20:00:43.148 [XNIO-1 task-2] _bpX2jsLQueA9jX5xMuDug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.149 [XNIO-1 task-2] _bpX2jsLQueA9jX5xMuDug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.149 [XNIO-1 task-2] _bpX2jsLQueA9jX5xMuDug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.149 [XNIO-1 task-2] _bpX2jsLQueA9jX5xMuDug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.156 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8004d07f-23ec-4823-9378-a183190bdc06 +20:00:43.159 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8004d07f-23ec-4823-9378-a183190bdc06 +20:00:43.165 [XNIO-1 task-2] 55xSeTg9R7u1G3KUUQKUQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.165 [XNIO-1 task-2] 55xSeTg9R7u1G3KUUQKUQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.165 [XNIO-1 task-2] 55xSeTg9R7u1G3KUUQKUQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.166 [XNIO-1 task-2] 55xSeTg9R7u1G3KUUQKUQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.187 [XNIO-1 task-2] pG7C-yC3TXqQrb_B_OsRFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.188 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2eb21053 +20:00:43.188 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2eb21053 +20:00:43.188 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8004d07f-23ec-4823-9378-a183190bdc06 +20:00:43.188 [XNIO-1 task-2] pG7C-yC3TXqQrb_B_OsRFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.204 [XNIO-1 task-2] ipqeAKbFSmOFjfQqR_BwkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf04d2dd +20:00:43.204 [XNIO-1 task-2] ipqeAKbFSmOFjfQqR_BwkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.204 [XNIO-1 task-2] ipqeAKbFSmOFjfQqR_BwkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.204 [XNIO-1 task-2] ipqeAKbFSmOFjfQqR_BwkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf04d2dd +20:00:43.209 [XNIO-1 task-2] XOtgZQ-NTUqJbI3iuP4Skg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.209 [XNIO-1 task-2] XOtgZQ-NTUqJbI3iuP4Skg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.209 [XNIO-1 task-2] XOtgZQ-NTUqJbI3iuP4Skg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.219 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6684e353-ed24-4982-9248-6fc723d35546 +20:00:43.222 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6684e353-ed24-4982-9248-6fc723d35546 +20:00:43.235 [XNIO-1 task-2] FpCj_7U2S1GBtvNssPowVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf04d2dd +20:00:43.235 [XNIO-1 task-2] FpCj_7U2S1GBtvNssPowVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.235 [XNIO-1 task-2] FpCj_7U2S1GBtvNssPowVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.235 [XNIO-1 task-2] FpCj_7U2S1GBtvNssPowVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bf04d2dd +20:00:43.261 [XNIO-1 task-2] kNppiCDiTdqCmga2UIu-Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/77a311f5, base path is set to: null +20:00:43.261 [XNIO-1 task-2] kNppiCDiTdqCmga2UIu-Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.262 [XNIO-1 task-2] kNppiCDiTdqCmga2UIu-Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.262 [XNIO-1 task-2] kNppiCDiTdqCmga2UIu-Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/77a311f5, base path is set to: null +20:00:43.264 [XNIO-1 task-2] kNppiCDiTdqCmga2UIu-Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "77a311f5", "77a311f5", serviceId) +20:00:43.301 [XNIO-1 task-2] dRBEQlZ9QTe0EoETUL4OFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74e68ecc +20:00:43.301 [XNIO-1 task-2] dRBEQlZ9QTe0EoETUL4OFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.301 [XNIO-1 task-2] dRBEQlZ9QTe0EoETUL4OFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.302 [XNIO-1 task-2] dRBEQlZ9QTe0EoETUL4OFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/74e68ecc +20:00:43.331 [XNIO-1 task-2] ApePByViQ323Y2in5PYIQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fea8a03b, base path is set to: null +20:00:43.332 [XNIO-1 task-2] ApePByViQ323Y2in5PYIQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.332 [XNIO-1 task-2] ApePByViQ323Y2in5PYIQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.332 [XNIO-1 task-2] ApePByViQ323Y2in5PYIQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fea8a03b, base path is set to: null +20:00:43.332 [XNIO-1 task-2] ApePByViQ323Y2in5PYIQw DEBUG com.networknt.schema.TypeValidator debug - validate( "fea8a03b", "fea8a03b", serviceId) +20:00:43.336 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.336 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.336 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.337 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.337 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:43.337 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG com.networknt.schema.TypeValidator debug - validate( "a22b2b73-c211-40e9-974f-a9e138243934", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:43.337 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG com.networknt.schema.TypeValidator debug - validate( "e1292dbf", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:43.337 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.337 [XNIO-1 task-2] bOorDWr5TcuPCaJK5J__1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.352 [XNIO-1 task-2] B4NZKd1PSqmW1A4dFxed5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.352 [XNIO-1 task-2] B4NZKd1PSqmW1A4dFxed5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.353 [XNIO-1 task-2] B4NZKd1PSqmW1A4dFxed5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.507 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.507 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.508 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.509 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.509 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:43.509 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG com.networknt.schema.TypeValidator debug - validate( "bae8348a-9f52-4e08-b3db-78712925d18c", {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:43.509 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG com.networknt.schema.TypeValidator debug - validate( "fca7b105", {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:43.509 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.509 [XNIO-1 task-2] Dv2CXwQkSPai3-tdmnOvAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fca7b105","serviceName":"888023b7-fa68-41a5-bbb9-e38305d0","serviceDesc":"bae8348a-9f52-4e08-b3db-78712925d18c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.523 [XNIO-1 task-2] bqBGEVl_Q4eNbDIPr73jFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.523 [XNIO-1 task-2] bqBGEVl_Q4eNbDIPr73jFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.524 [XNIO-1 task-2] bqBGEVl_Q4eNbDIPr73jFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.524 [XNIO-1 task-2] bqBGEVl_Q4eNbDIPr73jFA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.536 [XNIO-1 task-2] APrrmNG3QUKGoqbgmL2HiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.536 [XNIO-1 task-2] APrrmNG3QUKGoqbgmL2HiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.536 [XNIO-1 task-2] APrrmNG3QUKGoqbgmL2HiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.537 [XNIO-1 task-2] APrrmNG3QUKGoqbgmL2HiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.557 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.557 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.558 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.558 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.558 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:43.558 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a22b2b73-c211-40e9-974f-a9e138243934", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:43.558 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e1292dbf", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:43.561 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.561 [XNIO-1 task-2] losDVGKPSXOYmVWPYWEI3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e1292dbf","serviceName":"05ef39dd-b07d-475a-84c2-0a543cc9","serviceDesc":"a22b2b73-c211-40e9-974f-a9e138243934","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.572 [XNIO-1 task-2] VSQjFBPWQgmNEVIbbESb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.572 [XNIO-1 task-2] VSQjFBPWQgmNEVIbbESb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.573 [XNIO-1 task-2] VSQjFBPWQgmNEVIbbESb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.573 [XNIO-1 task-2] VSQjFBPWQgmNEVIbbESb6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.581 [XNIO-1 task-2] xFKh_romTByLZIRV3oK9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:43.582 [XNIO-1 task-2] xFKh_romTByLZIRV3oK9tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.582 [XNIO-1 task-2] xFKh_romTByLZIRV3oK9tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.582 [XNIO-1 task-2] xFKh_romTByLZIRV3oK9tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e1292dbf, base path is set to: null +20:00:43.582 [XNIO-1 task-2] xFKh_romTByLZIRV3oK9tA DEBUG com.networknt.schema.TypeValidator debug - validate( "e1292dbf", "e1292dbf", serviceId) +20:00:43.588 [XNIO-1 task-2] jZ0b5v3PQYmyXgTCBF6oDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:43.588 [XNIO-1 task-2] jZ0b5v3PQYmyXgTCBF6oDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.588 [XNIO-1 task-2] jZ0b5v3PQYmyXgTCBF6oDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.588 [XNIO-1 task-2] jZ0b5v3PQYmyXgTCBF6oDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e1292dbf +20:00:43.604 [XNIO-1 task-2] nd3FRVfLTcWNiaVvITv8qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.605 [XNIO-1 task-2] nd3FRVfLTcWNiaVvITv8qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.605 [XNIO-1 task-2] nd3FRVfLTcWNiaVvITv8qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.605 [XNIO-1 task-2] nd3FRVfLTcWNiaVvITv8qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:43.638 [XNIO-1 task-2] JQT-0W_uT8KkBJMzJb-sRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fca7b105, base path is set to: null +20:00:43.638 [XNIO-1 task-2] JQT-0W_uT8KkBJMzJb-sRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.638 [XNIO-1 task-2] JQT-0W_uT8KkBJMzJb-sRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.639 [XNIO-1 task-2] JQT-0W_uT8KkBJMzJb-sRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fca7b105, base path is set to: null +20:00:43.639 [XNIO-1 task-2] JQT-0W_uT8KkBJMzJb-sRg DEBUG com.networknt.schema.TypeValidator debug - validate( "fca7b105", "fca7b105", serviceId) +20:00:43.655 [XNIO-1 task-2] jaSAfkbAQYK6UfUlfx7nHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.656 [XNIO-1 task-2] jaSAfkbAQYK6UfUlfx7nHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.656 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.657 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.657 [XNIO-1 task-2] jaSAfkbAQYK6UfUlfx7nHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.673 [XNIO-1 task-2] PNIYtdq3SMGPCWB85X16Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.673 [XNIO-1 task-2] PNIYtdq3SMGPCWB85X16Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.673 [XNIO-1 task-2] PNIYtdq3SMGPCWB85X16Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.674 [XNIO-1 task-2] PNIYtdq3SMGPCWB85X16Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.679 [XNIO-1 task-2] oELTHaw5So6OcEjZmJrKfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:43.679 [XNIO-1 task-2] oELTHaw5So6OcEjZmJrKfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.679 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:86910b79-9ea7-450f-809a-9930e8809526 +20:00:43.680 [XNIO-1 task-2] oELTHaw5So6OcEjZmJrKfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.680 [XNIO-1 task-2] oELTHaw5So6OcEjZmJrKfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.693 [XNIO-1 task-2] _FpPJniKS6qGTPc1d8G9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.693 [XNIO-1 task-2] _FpPJniKS6qGTPc1d8G9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.693 [XNIO-1 task-2] _FpPJniKS6qGTPc1d8G9zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.694 [XNIO-1 task-2] _FpPJniKS6qGTPc1d8G9zg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.713 [XNIO-1 task-2] BtZfcKjCRrOGu2bMPno8kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.714 [XNIO-1 task-2] BtZfcKjCRrOGu2bMPno8kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.714 [XNIO-1 task-2] BtZfcKjCRrOGu2bMPno8kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.760 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2eb21053 +20:00:43.801 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.801 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.801 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.802 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.802 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:43.802 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ad1bd20c-0db1-4971-a49e-33bdaa84f746", {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:43.802 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fea8a03b", {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:43.802 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:43.802 [XNIO-1 task-2] LSQH-w6uT0aUuXKV5Qvf8Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fea8a03b","serviceName":"bea0b343-8a90-40c7-9225-19bb8973","serviceDesc":"ad1bd20c-0db1-4971-a49e-33bdaa84f746","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:43.865 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:987f009c +20:00:43.882 [XNIO-1 task-2] eUM3UUl3RpWgqNvaMh9-NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fea8a03b, base path is set to: null +20:00:43.883 [XNIO-1 task-2] eUM3UUl3RpWgqNvaMh9-NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.883 [XNIO-1 task-2] eUM3UUl3RpWgqNvaMh9-NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.883 [XNIO-1 task-2] eUM3UUl3RpWgqNvaMh9-NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fea8a03b, base path is set to: null +20:00:43.883 [XNIO-1 task-2] eUM3UUl3RpWgqNvaMh9-NA DEBUG com.networknt.schema.TypeValidator debug - validate( "fea8a03b", "fea8a03b", serviceId) +20:00:43.889 [XNIO-1 task-2] VIuVUaJ7Qb2Ny9a5BX59Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db5f91a4 +20:00:43.889 [XNIO-1 task-2] VIuVUaJ7Qb2Ny9a5BX59Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.889 [XNIO-1 task-2] VIuVUaJ7Qb2Ny9a5BX59Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.889 [XNIO-1 task-2] VIuVUaJ7Qb2Ny9a5BX59Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db5f91a4 +20:00:43.899 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:669ea312-2e09-48c0-ac1e-539d01e35f0f +20:00:43.899 [XNIO-1 task-2] OKkcbr3bQP2L99PxU1CY1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.899 [XNIO-1 task-2] OKkcbr3bQP2L99PxU1CY1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.899 [XNIO-1 task-2] OKkcbr3bQP2L99PxU1CY1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.899 [XNIO-1 task-2] OKkcbr3bQP2L99PxU1CY1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +Jun 28, 2024 8:00:43 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +20:00:43.903 [XNIO-1 task-2] 3lZb1eMcTRiv37bHY9ObsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db5f91a4 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:43.903 [XNIO-1 task-2] 3lZb1eMcTRiv37bHY9ObsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:43.903 [XNIO-1 task-2] 3lZb1eMcTRiv37bHY9ObsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.903 [XNIO-1 task-2] 3lZb1eMcTRiv37bHY9ObsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:43.903 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:43.903 [XNIO-1 task-2] 3lZb1eMcTRiv37bHY9ObsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/db5f91a4, base path is set to: null +20:00:43.903 [XNIO-1 task-2] 3lZb1eMcTRiv37bHY9ObsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "db5f91a4", "db5f91a4", serviceId) +20:00:43.926 [XNIO-1 task-2] ypYoxs2YQKS4Qogk9pf28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.926 [XNIO-1 task-2] ypYoxs2YQKS4Qogk9pf28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.927 [XNIO-1 task-2] ypYoxs2YQKS4Qogk9pf28w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.927 [XNIO-1 task-2] ypYoxs2YQKS4Qogk9pf28w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.934 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:50df68cd-67c8-4f88-a608-cd88f5a8502e +20:00:43.973 [XNIO-1 task-2] kqDV_boKT3i19msSbHn_XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.973 [XNIO-1 task-2] kqDV_boKT3i19msSbHn_XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:43.973 [XNIO-1 task-2] kqDV_boKT3i19msSbHn_XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:43.973 [XNIO-1 task-2] kqDV_boKT3i19msSbHn_XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fea8a03b +20:00:43.999 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:2eb21053 +20:00:44.016 [XNIO-1 task-2] 6HC717xTRGihDqGrVC808w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.016 [XNIO-1 task-2] 6HC717xTRGihDqGrVC808w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.016 [XNIO-1 task-2] 6HC717xTRGihDqGrVC808w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.029 [XNIO-1 task-2] afIr_cXURTSzthgN5cAZbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.029 [XNIO-1 task-2] afIr_cXURTSzthgN5cAZbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.030 [XNIO-1 task-2] afIr_cXURTSzthgN5cAZbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.030 [XNIO-1 task-2] afIr_cXURTSzthgN5cAZbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.047 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2eb21053 +20:00:44.049 [XNIO-1 task-2] -5oTO0zwRP61AlPq54WmtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8325a6bb +20:00:44.049 [XNIO-1 task-2] -5oTO0zwRP61AlPq54WmtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.049 [XNIO-1 task-2] -5oTO0zwRP61AlPq54WmtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.050 [XNIO-1 task-2] -5oTO0zwRP61AlPq54WmtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8325a6bb +20:00:44.069 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ce93f6f6-6781-461f-b782-7461f3dc6ce9 +20:00:44.073 [XNIO-1 task-2] W3xbvAurSSOSSYhHx7Q-cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.073 [XNIO-1 task-2] W3xbvAurSSOSSYhHx7Q-cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.074 [XNIO-1 task-2] W3xbvAurSSOSSYhHx7Q-cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.074 [XNIO-1 task-2] W3xbvAurSSOSSYhHx7Q-cQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.102 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:36ffb109-43fe-472e-818b-1c6b8674440a +20:00:44.104 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:36ffb109-43fe-472e-818b-1c6b8674440a +20:00:44.121 [XNIO-1 task-2] MWBqekHITzmG6aRH1i_AjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.121 [XNIO-1 task-2] MWBqekHITzmG6aRH1i_AjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.121 [XNIO-1 task-2] MWBqekHITzmG6aRH1i_AjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.121 [XNIO-1 task-2] MWBqekHITzmG6aRH1i_AjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.143 [XNIO-1 task-2] 3s7nfzC1QWK9oHhGHyPFwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.144 [XNIO-1 task-2] 3s7nfzC1QWK9oHhGHyPFwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.144 [XNIO-1 task-2] 3s7nfzC1QWK9oHhGHyPFwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.147 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:50df68cd-67c8-4f88-a608-cd88f5a8502e +20:00:44.156 [XNIO-1 task-2] 3hmcy2KZTgeh3EvS4H4tcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.156 [XNIO-1 task-2] 3hmcy2KZTgeh3EvS4H4tcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.157 [XNIO-1 task-2] 3hmcy2KZTgeh3EvS4H4tcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.157 [XNIO-1 task-2] 3hmcy2KZTgeh3EvS4H4tcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.186 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9824435c +20:00:44.190 [XNIO-1 task-2] nZu4ZKnBRlKMOCZ26WU8AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81befe2d, base path is set to: null +20:00:44.191 [XNIO-1 task-2] nZu4ZKnBRlKMOCZ26WU8AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.191 [XNIO-1 task-2] nZu4ZKnBRlKMOCZ26WU8AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.191 [XNIO-1 task-2] nZu4ZKnBRlKMOCZ26WU8AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81befe2d, base path is set to: null +20:00:44.192 [XNIO-1 task-2] nZu4ZKnBRlKMOCZ26WU8AA DEBUG com.networknt.schema.TypeValidator debug - validate( "81befe2d", "81befe2d", serviceId) +20:00:44.231 [XNIO-1 task-2] TfmJ6qnmROes_E5DnSbG-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.231 [XNIO-1 task-2] TfmJ6qnmROes_E5DnSbG-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.232 [XNIO-1 task-2] TfmJ6qnmROes_E5DnSbG-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.246 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.247 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.247 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.248 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.248 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.248 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2300314-62f6-4b79-b779-34042d7236c6", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:44.248 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7c8cb420", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:44.250 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.251 [XNIO-1 task-2] 9xdukDDiQeaRfLtYrTiSSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.262 [XNIO-1 task-2] 1kQLlJBNQXaL0K3dgyWb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.262 [XNIO-1 task-2] 1kQLlJBNQXaL0K3dgyWb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.263 [XNIO-1 task-2] 1kQLlJBNQXaL0K3dgyWb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.263 [XNIO-1 task-2] 1kQLlJBNQXaL0K3dgyWb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.264 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49d9f48a +20:00:44.269 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49d9f48a +20:00:44.271 [XNIO-1 task-2] qVqYEw-2R_uXLxfDssLG0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.271 [XNIO-1 task-2] qVqYEw-2R_uXLxfDssLG0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.271 [XNIO-1 task-2] qVqYEw-2R_uXLxfDssLG0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.271 [XNIO-1 task-2] qVqYEw-2R_uXLxfDssLG0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.276 [XNIO-1 task-2] b0yvwKWjQGm6OyzDa5R5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c8cb420, base path is set to: null +20:00:44.277 [XNIO-1 task-2] b0yvwKWjQGm6OyzDa5R5ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.277 [XNIO-1 task-2] b0yvwKWjQGm6OyzDa5R5ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.277 [XNIO-1 task-2] b0yvwKWjQGm6OyzDa5R5ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c8cb420, base path is set to: null +20:00:44.277 [XNIO-1 task-2] b0yvwKWjQGm6OyzDa5R5ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "7c8cb420", "7c8cb420", serviceId) +20:00:44.284 [XNIO-1 task-2] yv-kqK9qRyu0Tzo9csi6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.284 [XNIO-1 task-2] yv-kqK9qRyu0Tzo9csi6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.284 [XNIO-1 task-2] yv-kqK9qRyu0Tzo9csi6Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.285 [XNIO-1 task-2] yv-kqK9qRyu0Tzo9csi6Tg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.297 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.297 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.297 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.298 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.298 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.298 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e2300314-62f6-4b79-b779-34042d7236c6", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:44.300 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7c8cb420", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:44.300 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.300 [XNIO-1 task-2] y2DLfNK2Q9OMfHIJek5U2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.317 [XNIO-1 task-2] MFH6bj4sRbOmfRhVjhdFlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.317 [XNIO-1 task-2] MFH6bj4sRbOmfRhVjhdFlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.317 [XNIO-1 task-2] MFH6bj4sRbOmfRhVjhdFlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.318 [XNIO-1 task-2] MFH6bj4sRbOmfRhVjhdFlw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.339 [XNIO-1 task-2] Ok0ERuIVQfiHY7blfOchYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.339 [XNIO-1 task-2] Ok0ERuIVQfiHY7blfOchYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.339 [XNIO-1 task-2] Ok0ERuIVQfiHY7blfOchYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.354 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.354 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.355 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.355 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.355 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.355 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG com.networknt.schema.TypeValidator debug - validate( "284d0eed-3975-451d-863b-325f58c1fdce", {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:44.355 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG com.networknt.schema.TypeValidator debug - validate( "629c2cdc", {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:44.356 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.356 [XNIO-1 task-2] E0hyh_1sTt6JEn78T1WC_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"629c2cdc","serviceName":"d6aa28cf-bd59-4f3c-b001-9e722092","serviceDesc":"284d0eed-3975-451d-863b-325f58c1fdce","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.369 [XNIO-1 task-2] 7vqs3CUcTiqd2v5p2RzVng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.369 [XNIO-1 task-2] 7vqs3CUcTiqd2v5p2RzVng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.370 [XNIO-1 task-2] 7vqs3CUcTiqd2v5p2RzVng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.373 [XNIO-1 task-2] 7vqs3CUcTiqd2v5p2RzVng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.383 [XNIO-1 task-2] 75U_5L9BTxGn2y3yXeE0ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.383 [XNIO-1 task-2] 75U_5L9BTxGn2y3yXeE0ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.383 [XNIO-1 task-2] 75U_5L9BTxGn2y3yXeE0ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.398 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.398 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.398 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.399 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.399 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.400 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.400 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:44.400 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a77869f-fef4-4773-a728-89fcfe69", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:44.400 [XNIO-1 task-2] Tz-M9LgaRz-NhOmFLdNEOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.414 [XNIO-1 task-2] mQXht676TZGJea69xKoi-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/629c2cdc, base path is set to: null +20:00:44.414 [XNIO-1 task-2] mQXht676TZGJea69xKoi-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.414 [XNIO-1 task-2] mQXht676TZGJea69xKoi-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.415 [XNIO-1 task-2] mQXht676TZGJea69xKoi-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/629c2cdc, base path is set to: null +20:00:44.415 [XNIO-1 task-2] mQXht676TZGJea69xKoi-g DEBUG com.networknt.schema.TypeValidator debug - validate( "629c2cdc", "629c2cdc", serviceId) +20:00:44.437 [XNIO-1 task-2] KuRkwJ2YQ2u8fAzrAB9lqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/629c2cdc +20:00:44.437 [XNIO-1 task-2] KuRkwJ2YQ2u8fAzrAB9lqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.437 [XNIO-1 task-2] KuRkwJ2YQ2u8fAzrAB9lqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.437 [XNIO-1 task-2] KuRkwJ2YQ2u8fAzrAB9lqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/629c2cdc +20:00:44.447 [XNIO-1 task-2] eGtr46ENQqqRHZOQTXzVJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.447 [XNIO-1 task-2] eGtr46ENQqqRHZOQTXzVJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.447 [XNIO-1 task-2] eGtr46ENQqqRHZOQTXzVJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.448 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:28810f82 +20:00:44.449 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:28810f82 +20:00:44.462 [XNIO-1 task-2] tm5-9zwzRJ-D8w3m5DMc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.462 [XNIO-1 task-2] tm5-9zwzRJ-D8w3m5DMc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.462 [XNIO-1 task-2] tm5-9zwzRJ-D8w3m5DMc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.462 [XNIO-1 task-2] tm5-9zwzRJ-D8w3m5DMc8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.476 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.476 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.476 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.477 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.477 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.477 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG com.networknt.schema.TypeValidator debug - validate( "5535c423-ee2a-496f-8620-114df21981c1", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:44.478 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG com.networknt.schema.TypeValidator debug - validate( "12a393ca", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:44.478 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.478 [XNIO-1 task-2] SSOBDmA4QJaQs1HMTFGJfA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.495 [XNIO-1 task-2] N9Mevn1QTKyJJmn8iGFGFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28810f82 +20:00:44.495 [XNIO-1 task-2] N9Mevn1QTKyJJmn8iGFGFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.495 [XNIO-1 task-2] N9Mevn1QTKyJJmn8iGFGFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.496 [XNIO-1 task-2] N9Mevn1QTKyJJmn8iGFGFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/28810f82 +20:00:44.497 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:28810f82 +20:00:44.504 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e94a8965-50bc-4511-9bbf-2bd8e002550d +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:44.521 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.521 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.521 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.521 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.522 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.522 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +20:00:44.524 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +20:00:44.525 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.525 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +20:00:44.525 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:44.525 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1402a6de-e41f-4ecb-8166-735064e5", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:44.525 [XNIO-1 task-2] CagV39zHTXmG6j92eRIS2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.540 [XNIO-1 task-2] Y1T1Xa4kQnuWaje-37dDzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +20:00:44.541 [XNIO-1 task-2] Y1T1Xa4kQnuWaje-37dDzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.595 [XNIO-1 task-2] Y1T1Xa4kQnuWaje-37dDzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.596 [XNIO-1 task-2] Y1T1Xa4kQnuWaje-37dDzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.597 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ca1e24be-7dfa-4486-b646-252e9f4c7e4f +20:00:44.606 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:842a867e-b88f-4ca1-88c1-38fe4b3b238e +20:00:44.613 [XNIO-1 task-2] Sg_YuK8vQhCLQp9hmY_3IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/12a393ca, base path is set to: null +20:00:44.614 [XNIO-1 task-2] Sg_YuK8vQhCLQp9hmY_3IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.614 [XNIO-1 task-2] Sg_YuK8vQhCLQp9hmY_3IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.614 [XNIO-1 task-2] Sg_YuK8vQhCLQp9hmY_3IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/12a393ca, base path is set to: null +20:00:44.614 [XNIO-1 task-2] Sg_YuK8vQhCLQp9hmY_3IA DEBUG com.networknt.schema.TypeValidator debug - validate( "12a393ca", "12a393ca", serviceId) +20:00:44.625 [XNIO-1 task-2] qMMJFDOFS-evsUh1bi_nQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12a393ca +20:00:44.625 [XNIO-1 task-2] qMMJFDOFS-evsUh1bi_nQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.625 [XNIO-1 task-2] qMMJFDOFS-evsUh1bi_nQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.626 [XNIO-1 task-2] qMMJFDOFS-evsUh1bi_nQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12a393ca +20:00:44.629 [XNIO-1 task-2] q_J-r0YQTgO_zIBbt7CGFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/629c2cdc, base path is set to: null +20:00:44.630 [XNIO-1 task-2] q_J-r0YQTgO_zIBbt7CGFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.630 [XNIO-1 task-2] q_J-r0YQTgO_zIBbt7CGFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.630 [XNIO-1 task-2] q_J-r0YQTgO_zIBbt7CGFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/629c2cdc, base path is set to: null +20:00:44.630 [XNIO-1 task-2] q_J-r0YQTgO_zIBbt7CGFg DEBUG com.networknt.schema.TypeValidator debug - validate( "629c2cdc", "629c2cdc", serviceId) +20:00:44.643 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.643 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.643 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.644 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.644 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.644 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "5535c423-ee2a-496f-8620-114df21981c1", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:44.644 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "12a393ca", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:44.644 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.645 [XNIO-1 task-2] guy1Pp15TUimbqqWWUlOzw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"12a393ca","serviceName":"5a77869f-fef4-4773-a728-89fcfe69","serviceDesc":"5535c423-ee2a-496f-8620-114df21981c1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.654 [XNIO-1 task-2] SDiadcKZRhqQ2pC-4QMoPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.654 [XNIO-1 task-2] SDiadcKZRhqQ2pC-4QMoPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.655 [XNIO-1 task-2] SDiadcKZRhqQ2pC-4QMoPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.656 [XNIO-1 task-2] SDiadcKZRhqQ2pC-4QMoPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.671 [XNIO-1 task-2] ILAEG8rXSdCcE65Ckkq31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12a393ca +20:00:44.671 [XNIO-1 task-2] ILAEG8rXSdCcE65Ckkq31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.671 [XNIO-1 task-2] ILAEG8rXSdCcE65Ckkq31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.672 [XNIO-1 task-2] ILAEG8rXSdCcE65Ckkq31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12a393ca +20:00:44.673 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:25379a22-eaab-4104-b1a6-04c6b18c053a +20:00:44.678 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:25379a22-eaab-4104-b1a6-04c6b18c053a +20:00:44.678 [XNIO-1 task-2] _f6MhT9lSQGZEV2vSOa_bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.678 [XNIO-1 task-2] _f6MhT9lSQGZEV2vSOa_bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.679 [XNIO-1 task-2] _f6MhT9lSQGZEV2vSOa_bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.679 [XNIO-1 task-2] _f6MhT9lSQGZEV2vSOa_bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.696 [XNIO-1 task-2] Tbmvm2yHQXq2Hu_UiHeLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12a393ca +20:00:44.697 [XNIO-1 task-2] Tbmvm2yHQXq2Hu_UiHeLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.697 [XNIO-1 task-2] Tbmvm2yHQXq2Hu_UiHeLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.697 [XNIO-1 task-2] Tbmvm2yHQXq2Hu_UiHeLcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/12a393ca +20:00:44.742 [XNIO-1 task-2] fguGGUTCTDqKpny2OX6gtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/220d3d54, base path is set to: null +20:00:44.744 [XNIO-1 task-2] fguGGUTCTDqKpny2OX6gtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.744 [XNIO-1 task-2] fguGGUTCTDqKpny2OX6gtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.745 [XNIO-1 task-2] fguGGUTCTDqKpny2OX6gtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/220d3d54, base path is set to: null +20:00:44.745 [XNIO-1 task-2] fguGGUTCTDqKpny2OX6gtg DEBUG com.networknt.schema.TypeValidator debug - validate( "220d3d54", "220d3d54", serviceId) +20:00:44.753 [XNIO-1 task-2] PqeX345CQyyUpRnYcoN_UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.753 [XNIO-1 task-2] PqeX345CQyyUpRnYcoN_UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.753 [XNIO-1 task-2] PqeX345CQyyUpRnYcoN_UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.770 [XNIO-1 task-2] Lof3sBiIQkWcTiZ-rX7kqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.770 [XNIO-1 task-2] Lof3sBiIQkWcTiZ-rX7kqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.770 [XNIO-1 task-2] Lof3sBiIQkWcTiZ-rX7kqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.771 [XNIO-1 task-2] Lof3sBiIQkWcTiZ-rX7kqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.799 [XNIO-1 task-2] UvLMzHixQGi2Z09LJ9Uiuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5800b84 +20:00:44.799 [XNIO-1 task-2] UvLMzHixQGi2Z09LJ9Uiuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.799 [XNIO-1 task-2] UvLMzHixQGi2Z09LJ9Uiuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.799 [XNIO-1 task-2] UvLMzHixQGi2Z09LJ9Uiuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5800b84 +20:00:44.809 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:44.815 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:49d9f48a +20:00:44.820 [XNIO-1 task-2] lzvxj5ezRNiJPR2E79SpOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.820 [XNIO-1 task-2] lzvxj5ezRNiJPR2E79SpOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.821 [XNIO-1 task-2] lzvxj5ezRNiJPR2E79SpOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.844 [XNIO-1 task-2] v0s9lQCeTv6dEW4Bk1EPVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.845 [XNIO-1 task-2] v0s9lQCeTv6dEW4Bk1EPVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.845 [XNIO-1 task-2] v0s9lQCeTv6dEW4Bk1EPVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.845 [XNIO-1 task-2] v0s9lQCeTv6dEW4Bk1EPVg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.862 [XNIO-1 task-2] 3Snh1yYzRUuSfZ5Csu7GPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c8cb420, base path is set to: null +20:00:44.862 [XNIO-1 task-2] 3Snh1yYzRUuSfZ5Csu7GPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.862 [XNIO-1 task-2] 3Snh1yYzRUuSfZ5Csu7GPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.862 [XNIO-1 task-2] 3Snh1yYzRUuSfZ5Csu7GPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c8cb420, base path is set to: null +20:00:44.863 [XNIO-1 task-2] 3Snh1yYzRUuSfZ5Csu7GPw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c8cb420", "7c8cb420", serviceId) +20:00:44.872 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.872 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.873 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49d9f48a +20:00:44.874 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.875 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.875 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.875 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "e2300314-62f6-4b79-b779-34042d7236c6", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:44.875 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "7c8cb420", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:44.875 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:44.875 [XNIO-1 task-2] rVBM7M38QTWIhMrA7utiCg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7c8cb420","serviceName":"1402a6de-e41f-4ecb-8166-735064e5","serviceDesc":"e2300314-62f6-4b79-b779-34042d7236c6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.889 [XNIO-1 task-2] nUFqUENkTo63u9Hqddf7dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.889 [XNIO-1 task-2] nUFqUENkTo63u9Hqddf7dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.890 [XNIO-1 task-2] nUFqUENkTo63u9Hqddf7dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:44.890 [XNIO-1 task-2] nUFqUENkTo63u9Hqddf7dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7c8cb420 +20:00:44.900 [XNIO-1 task-2] 8o2h95yQTDygPcOQkDzrPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c8cb420, base path is set to: null +20:00:44.900 [XNIO-1 task-2] 8o2h95yQTDygPcOQkDzrPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.900 [XNIO-1 task-2] 8o2h95yQTDygPcOQkDzrPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:44.901 [XNIO-1 task-2] 8o2h95yQTDygPcOQkDzrPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c8cb420, base path is set to: null +20:00:44.901 [XNIO-1 task-2] 8o2h95yQTDygPcOQkDzrPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7c8cb420", "7c8cb420", serviceId) +20:00:44.914 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:987f009c +20:00:44.943 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.946 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.946 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.947 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.947 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.947 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:44.947 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:44.948 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4609c16c-3905-4497-8e63-22f0e2df", {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:44.948 [XNIO-1 task-2] l4xU813-RICU9lIW7nCNJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"220d3d54","serviceName":"4609c16c-3905-4497-8e63-22f0e2df","serviceDesc":"51b26500-de66-443d-bf5b-617a1d58af70","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:44.958 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6684e353-ed24-4982-9248-6fc723d35546 +20:00:44.964 [XNIO-1 task-2] X7YUdkXGSn6i47uOSJCpqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.964 [XNIO-1 task-2] X7YUdkXGSn6i47uOSJCpqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.965 [XNIO-1 task-2] X7YUdkXGSn6i47uOSJCpqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.980 [XNIO-1 task-2] b9O_deMURGa6OObunkCCGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.980 [XNIO-1 task-2] b9O_deMURGa6OObunkCCGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.980 [XNIO-1 task-2] b9O_deMURGa6OObunkCCGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:44.994 [XNIO-1 task-2] G6NjVNN7Rv-G4l3Avt9tEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.995 [XNIO-1 task-2] G6NjVNN7Rv-G4l3Avt9tEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:44.995 [XNIO-1 task-2] G6NjVNN7Rv-G4l3Avt9tEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:44.995 [XNIO-1 task-2] G6NjVNN7Rv-G4l3Avt9tEw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.011 [XNIO-1 task-2] DhpDL-s_RYaUzYXthzLc6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.011 [XNIO-1 task-2] DhpDL-s_RYaUzYXthzLc6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.011 [XNIO-1 task-2] DhpDL-s_RYaUzYXthzLc6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.011 [XNIO-1 task-2] DhpDL-s_RYaUzYXthzLc6w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.021 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b57cb6a7-f60f-469b-924f-a05491f628d2 +20:00:45.033 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.033 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.033 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.034 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.034 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.034 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG com.networknt.schema.TypeValidator debug - validate( "48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e", {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:45.034 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG com.networknt.schema.TypeValidator debug - validate( "1d08ebb5", {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:45.034 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.034 [XNIO-1 task-2] uC9LXFmIQ4GM3yGUXJs9jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1d08ebb5","serviceName":"783d312b-f7b8-4d8a-8ee8-d3d95c6a","serviceDesc":"48be9a53-c0c8-4fb0-93a5-ccd9fa83d10e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.048 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0263af55-1b0b-4db6-9b09-a87a2211f309 +20:00:45.056 [XNIO-1 task-2] VO2tjr_lTQKtDgJX5iPgYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/220d3d54, base path is set to: null +20:00:45.057 [XNIO-1 task-2] VO2tjr_lTQKtDgJX5iPgYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.057 [XNIO-1 task-2] VO2tjr_lTQKtDgJX5iPgYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.057 [XNIO-1 task-2] VO2tjr_lTQKtDgJX5iPgYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/220d3d54, base path is set to: null +20:00:45.057 [XNIO-1 task-2] VO2tjr_lTQKtDgJX5iPgYA DEBUG com.networknt.schema.TypeValidator debug - validate( "220d3d54", "220d3d54", serviceId) +20:00:45.064 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9824435c +20:00:45.076 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.076 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.076 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.077 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.077 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.078 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG com.networknt.schema.TypeValidator debug - validate( "f9fde7bf-62bf-4605-b156-f4c3fa9f937a", {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:45.078 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG com.networknt.schema.TypeValidator debug - validate( "46b2b00a", {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:45.078 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.078 [XNIO-1 task-2] K38vWsmiT7q349FjQMTnaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46b2b00a","serviceName":"8e068111-943b-4d4a-a6ac-eeb8dc3b","serviceDesc":"f9fde7bf-62bf-4605-b156-f4c3fa9f937a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.089 [XNIO-1 task-2] pcYDTw-NR2W23aIoT0_2ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c2d7c0b +20:00:45.089 [XNIO-1 task-2] pcYDTw-NR2W23aIoT0_2ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.089 [XNIO-1 task-2] pcYDTw-NR2W23aIoT0_2ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.089 [XNIO-1 task-2] pcYDTw-NR2W23aIoT0_2ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c2d7c0b +20:00:45.126 [XNIO-1 task-2] yLXApcPvQMKkAgIub7YQdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d08ebb5, base path is set to: null +20:00:45.127 [XNIO-1 task-2] yLXApcPvQMKkAgIub7YQdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.127 [XNIO-1 task-2] yLXApcPvQMKkAgIub7YQdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.127 [XNIO-1 task-2] yLXApcPvQMKkAgIub7YQdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1d08ebb5, base path is set to: null +20:00:45.127 [XNIO-1 task-2] yLXApcPvQMKkAgIub7YQdg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d08ebb5", "1d08ebb5", serviceId) +20:00:45.139 [XNIO-1 task-2] RVyKq80QSuOpfuU-7HSMjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/46b2b00a +20:00:45.140 [XNIO-1 task-2] RVyKq80QSuOpfuU-7HSMjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.140 [XNIO-1 task-2] RVyKq80QSuOpfuU-7HSMjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.140 [XNIO-1 task-2] RVyKq80QSuOpfuU-7HSMjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/46b2b00a +20:00:45.152 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:9824435c +20:00:45.157 [XNIO-1 task-2] hQ6hP_9bRBC1Q44u5kYdHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c2d7c0b +20:00:45.157 [XNIO-1 task-2] hQ6hP_9bRBC1Q44u5kYdHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.158 [XNIO-1 task-2] hQ6hP_9bRBC1Q44u5kYdHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.158 [XNIO-1 task-2] hQ6hP_9bRBC1Q44u5kYdHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c2d7c0b +20:00:45.169 [XNIO-1 task-2] BBeEGP0_QRK7urugZgg1Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5c2d7c0b, base path is set to: null +20:00:45.169 [XNIO-1 task-2] BBeEGP0_QRK7urugZgg1Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.169 [XNIO-1 task-2] BBeEGP0_QRK7urugZgg1Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.169 [XNIO-1 task-2] BBeEGP0_QRK7urugZgg1Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5c2d7c0b, base path is set to: null +20:00:45.169 [XNIO-1 task-2] BBeEGP0_QRK7urugZgg1Jg DEBUG com.networknt.schema.TypeValidator debug - validate( "5c2d7c0b", "5c2d7c0b", serviceId) +20:00:45.180 [XNIO-1 task-2] fve8VmNySzKU0RLxyWx4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c2d7c0b +20:00:45.180 [XNIO-1 task-2] fve8VmNySzKU0RLxyWx4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.180 [XNIO-1 task-2] fve8VmNySzKU0RLxyWx4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.182 [XNIO-1 task-2] fve8VmNySzKU0RLxyWx4Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5c2d7c0b +20:00:45.192 [XNIO-1 task-2] TUK94hrJQV-oRgimjzGUeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.193 [XNIO-1 task-2] TUK94hrJQV-oRgimjzGUeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.193 [XNIO-1 task-2] TUK94hrJQV-oRgimjzGUeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.193 [XNIO-1 task-2] TUK94hrJQV-oRgimjzGUeA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.209 [XNIO-1 task-2] t2N0JX_2ShGz8rFYonX4GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.209 [XNIO-1 task-2] t2N0JX_2ShGz8rFYonX4GA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.210 [XNIO-1 task-2] t2N0JX_2ShGz8rFYonX4GA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.210 [XNIO-1 task-2] t2N0JX_2ShGz8rFYonX4GA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.219 [XNIO-1 task-2] lmPt2XprTBiufV7wFq7NyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.220 [XNIO-1 task-2] lmPt2XprTBiufV7wFq7NyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.220 [XNIO-1 task-2] lmPt2XprTBiufV7wFq7NyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.231 [XNIO-1 task-2] eLmuilPzTjSVMT2ZvwQtzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.232 [XNIO-1 task-2] eLmuilPzTjSVMT2ZvwQtzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.232 [XNIO-1 task-2] eLmuilPzTjSVMT2ZvwQtzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.248 [XNIO-1 task-2] X65QLi6hSuWNIDILvCeFmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/005432a6, base path is set to: null +20:00:45.248 [XNIO-1 task-2] X65QLi6hSuWNIDILvCeFmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.248 [XNIO-1 task-2] X65QLi6hSuWNIDILvCeFmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.248 [XNIO-1 task-2] X65QLi6hSuWNIDILvCeFmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/005432a6, base path is set to: null +20:00:45.249 [XNIO-1 task-2] X65QLi6hSuWNIDILvCeFmg DEBUG com.networknt.schema.TypeValidator debug - validate( "005432a6", "005432a6", serviceId) +20:00:45.294 [XNIO-1 task-2] v-bVA_MrScuYME08UeA_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d98bb82 +20:00:45.294 [XNIO-1 task-2] v-bVA_MrScuYME08UeA_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.294 [XNIO-1 task-2] v-bVA_MrScuYME08UeA_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.295 [XNIO-1 task-2] v-bVA_MrScuYME08UeA_QQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d98bb82 +20:00:45.303 [XNIO-1 task-2] Unsw88pZRJ-k7FV6iyNiKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.303 [XNIO-1 task-2] Unsw88pZRJ-k7FV6iyNiKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.303 [XNIO-1 task-2] Unsw88pZRJ-k7FV6iyNiKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.304 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a6e56fa +20:00:45.305 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a6e56fa +20:00:45.314 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:add721d1-82a7-4f83-9c18-9f60b212c85e +20:00:45.316 [XNIO-1 task-2] ObnWvVPqR0uOIyIdrTx3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d98bb82 +20:00:45.316 [XNIO-1 task-2] ObnWvVPqR0uOIyIdrTx3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.316 [XNIO-1 task-2] ObnWvVPqR0uOIyIdrTx3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.316 [XNIO-1 task-2] ObnWvVPqR0uOIyIdrTx3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9d98bb82 +20:00:45.324 [XNIO-1 task-2] _v3VZXbIQ0ul7-udUHH1vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.324 [XNIO-1 task-2] _v3VZXbIQ0ul7-udUHH1vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.325 [XNIO-1 task-2] _v3VZXbIQ0ul7-udUHH1vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.332 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:376c8b7e-f4a7-4def-a748-2adc3a8ca541 +20:00:45.340 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:add721d1-82a7-4f83-9c18-9f60b212c85e +20:00:45.342 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.342 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.343 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.343 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.343 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.343 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ad6a42f-8271-4b16-a683-a68d6747183c", {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:45.343 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG com.networknt.schema.TypeValidator debug - validate( "7a6e56fa", {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:45.344 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.344 [XNIO-1 task-2] tSs7qaIySBG7pt-_l52Mxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.345 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7a6e56fa +20:00:45.356 [XNIO-1 task-2] 0-3CcMnQQPqyYHzHilHVAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.357 [XNIO-1 task-2] 0-3CcMnQQPqyYHzHilHVAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.357 [XNIO-1 task-2] 0-3CcMnQQPqyYHzHilHVAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.357 [XNIO-1 task-2] 0-3CcMnQQPqyYHzHilHVAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.357 [XNIO-1 task-2] 0-3CcMnQQPqyYHzHilHVAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.367 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e76a0597-d083-4fc2-bd92-651c558879c5 +20:00:45.384 [XNIO-1 task-2] I79Gj6gbQ0aausssSiEaxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/baf92b92, base path is set to: null +20:00:45.384 [XNIO-1 task-2] I79Gj6gbQ0aausssSiEaxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.384 [XNIO-1 task-2] I79Gj6gbQ0aausssSiEaxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.385 [XNIO-1 task-2] I79Gj6gbQ0aausssSiEaxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/baf92b92, base path is set to: null +20:00:45.385 [XNIO-1 task-2] I79Gj6gbQ0aausssSiEaxw DEBUG com.networknt.schema.TypeValidator debug - validate( "baf92b92", "baf92b92", serviceId) +20:00:45.405 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.405 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.405 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.406 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.407 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.407 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.408 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.408 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG com.networknt.schema.TypeValidator debug - validate( "f814e306-c743-41fd-9133-ffb9026e", {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:45.408 [XNIO-1 task-2] hJxvPChzQmqfNvAd4IfcTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7a6e56fa","serviceName":"f814e306-c743-41fd-9133-ffb9026e","serviceDesc":"5ad6a42f-8271-4b16-a683-a68d6747183c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.408 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7a6e56fa +20:00:45.426 [XNIO-1 task-2] bNGw0dkDTRelzTh1dWYHaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.426 [XNIO-1 task-2] bNGw0dkDTRelzTh1dWYHaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.426 [XNIO-1 task-2] bNGw0dkDTRelzTh1dWYHaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.437 [XNIO-1 task-2] CXtJ12ryTPaIIDr3aXCuLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a6e56fa, base path is set to: null +20:00:45.437 [XNIO-1 task-2] CXtJ12ryTPaIIDr3aXCuLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.437 [XNIO-1 task-2] CXtJ12ryTPaIIDr3aXCuLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.437 [XNIO-1 task-2] CXtJ12ryTPaIIDr3aXCuLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7a6e56fa, base path is set to: null +20:00:45.438 [XNIO-1 task-2] CXtJ12ryTPaIIDr3aXCuLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7a6e56fa", "7a6e56fa", serviceId) +20:00:45.439 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7a6e56fa +20:00:45.447 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.448 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.448 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.448 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.449 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.449 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG com.networknt.schema.TypeValidator debug - validate( "17887f6d-3994-4e65-8ae4-f9d2d099f92f", {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:45.449 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG com.networknt.schema.TypeValidator debug - validate( "23130eee", {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:45.449 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.449 [XNIO-1 task-2] QCfp6FRnQmqGCMpxlDHpHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"23130eee","serviceName":"5a008973-4e1f-46b0-937c-0e851763","serviceDesc":"17887f6d-3994-4e65-8ae4-f9d2d099f92f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.469 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6802a2b5-e105-4588-ad95-507b8136fcf9 +20:00:45.470 [XNIO-1 task-2] D7lLVkRERYaE7Tzj-jMDNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.470 [XNIO-1 task-2] D7lLVkRERYaE7Tzj-jMDNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.470 [XNIO-1 task-2] D7lLVkRERYaE7Tzj-jMDNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.470 [XNIO-1 task-2] D7lLVkRERYaE7Tzj-jMDNw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.485 [XNIO-1 task-2] 0U-0W6rBQoOACG_3x1V17g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.485 [XNIO-1 task-2] 0U-0W6rBQoOACG_3x1V17g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.486 [XNIO-1 task-2] 0U-0W6rBQoOACG_3x1V17g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.487 [XNIO-1 task-2] 0U-0W6rBQoOACG_3x1V17g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.507 [XNIO-1 task-2] tF3XZTj0Ssq3aaQzUlRZ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9d98bb82, base path is set to: null +20:00:45.507 [XNIO-1 task-2] tF3XZTj0Ssq3aaQzUlRZ4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.507 [XNIO-1 task-2] tF3XZTj0Ssq3aaQzUlRZ4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.507 [XNIO-1 task-2] tF3XZTj0Ssq3aaQzUlRZ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9d98bb82, base path is set to: null +20:00:45.508 [XNIO-1 task-2] tF3XZTj0Ssq3aaQzUlRZ4w DEBUG com.networknt.schema.TypeValidator debug - validate( "9d98bb82", "9d98bb82", serviceId) +20:00:45.525 [XNIO-1 task-2] nBS6MGoyTlSgnnDy4VIdCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23130eee +20:00:45.525 [XNIO-1 task-2] nBS6MGoyTlSgnnDy4VIdCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.525 [XNIO-1 task-2] nBS6MGoyTlSgnnDy4VIdCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.526 [XNIO-1 task-2] nBS6MGoyTlSgnnDy4VIdCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23130eee +20:00:45.539 [XNIO-1 task-2] 98q9kodVR5iWvSLPM5gayw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.539 [XNIO-1 task-2] 98q9kodVR5iWvSLPM5gayw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.540 [XNIO-1 task-2] 98q9kodVR5iWvSLPM5gayw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.556 [XNIO-1 task-2] 7kpvCts3RWyGK_TgossgFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.556 [XNIO-1 task-2] 7kpvCts3RWyGK_TgossgFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.557 [XNIO-1 task-2] 7kpvCts3RWyGK_TgossgFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.569 [XNIO-1 task-2] vHQoZdSvRdqVM__PDjhaEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/165c30a2, base path is set to: null +20:00:45.570 [XNIO-1 task-2] vHQoZdSvRdqVM__PDjhaEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.570 [XNIO-1 task-2] vHQoZdSvRdqVM__PDjhaEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.570 [XNIO-1 task-2] vHQoZdSvRdqVM__PDjhaEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/165c30a2, base path is set to: null +20:00:45.570 [XNIO-1 task-2] vHQoZdSvRdqVM__PDjhaEA DEBUG com.networknt.schema.TypeValidator debug - validate( "165c30a2", "165c30a2", serviceId) +20:00:45.571 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49d9f48a +20:00:45.574 [XNIO-1 task-2] 6l56XybIRZKE06xqAI2d6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.574 [XNIO-1 task-2] 6l56XybIRZKE06xqAI2d6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.574 [XNIO-1 task-2] 6l56XybIRZKE06xqAI2d6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.575 [XNIO-1 task-2] 6l56XybIRZKE06xqAI2d6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.604 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.604 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.604 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.605 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.605 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.605 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG com.networknt.schema.TypeValidator debug - validate( "f1df60fd-0302-4532-b763-606a4961f358", {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:45.605 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG com.networknt.schema.TypeValidator debug - validate( "165c30a2", {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:45.605 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.605 [XNIO-1 task-2] JUeDDjPGSZ2hccb8Q7WbLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"165c30a2","serviceName":"0b1113a5-7be9-4418-b3ee-d59c39cb","serviceDesc":"f1df60fd-0302-4532-b763-606a4961f358","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.609 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.620 [XNIO-1 task-2] bzvaRE9bQ7a4nIhZy4mBtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/165c30a2 +20:00:45.620 [XNIO-1 task-2] bzvaRE9bQ7a4nIhZy4mBtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.620 [XNIO-1 task-2] bzvaRE9bQ7a4nIhZy4mBtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.620 [XNIO-1 task-2] bzvaRE9bQ7a4nIhZy4mBtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/165c30a2 +20:00:45.637 [XNIO-1 task-2] eW1aymeIRVGX0kips5l8eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.637 [XNIO-1 task-2] eW1aymeIRVGX0kips5l8eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.637 [XNIO-1 task-2] eW1aymeIRVGX0kips5l8eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.638 [XNIO-1 task-2] eW1aymeIRVGX0kips5l8eA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.662 [XNIO-1 task-2] hxvNSgBKTiOtaWhhVlhAOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.663 [XNIO-1 task-2] hxvNSgBKTiOtaWhhVlhAOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.663 [XNIO-1 task-2] hxvNSgBKTiOtaWhhVlhAOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.674 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.679 [XNIO-1 task-2] 5KR97ZnhRfqwdPTr3O6BxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.679 [XNIO-1 task-2] 5KR97ZnhRfqwdPTr3O6BxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.679 [XNIO-1 task-2] 5KR97ZnhRfqwdPTr3O6BxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.680 [XNIO-1 task-2] 5KR97ZnhRfqwdPTr3O6BxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.691 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.691 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.692 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.692 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.692 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.696 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a1b5b748-dbf7-430f-820d-bec588b4ad3c", {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:45.697 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ed84518d", {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:45.697 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:45.697 [XNIO-1 task-2] o1uII9FgQcendZlUJ-104Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.718 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49d9f48a +20:00:45.753 [XNIO-1 task-2] U7gT30F3R46X2eXxSToJKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.753 [XNIO-1 task-2] U7gT30F3R46X2eXxSToJKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.753 [XNIO-1 task-2] U7gT30F3R46X2eXxSToJKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.754 [XNIO-1 task-2] U7gT30F3R46X2eXxSToJKQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.789 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49d9f48a +20:00:45.801 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:49d9f48a +20:00:45.823 [XNIO-1 task-2] xXpvFwyfTR2bPSGfIjJK0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ed84518d +20:00:45.823 [XNIO-1 task-2] xXpvFwyfTR2bPSGfIjJK0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.823 [XNIO-1 task-2] xXpvFwyfTR2bPSGfIjJK0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.823 [XNIO-1 task-2] xXpvFwyfTR2bPSGfIjJK0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ed84518d +20:00:45.834 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.834 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.835 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.836 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.837 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.837 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.837 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.837 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d9493568-986a-42ce-bf7d-2af7aa40", {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:45.837 [XNIO-1 task-2] H9FPN3S9TzCh7lx4boelxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed84518d","serviceName":"d9493568-986a-42ce-bf7d-2af7aa40","serviceDesc":"a1b5b748-dbf7-430f-820d-bec588b4ad3c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.851 [XNIO-1 task-2] kYhgijksQwqLmAKLztOoSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.851 [XNIO-1 task-2] kYhgijksQwqLmAKLztOoSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.851 [XNIO-1 task-2] kYhgijksQwqLmAKLztOoSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.851 [XNIO-1 task-2] kYhgijksQwqLmAKLztOoSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.863 [XNIO-1 task-2] 6FDi_VqnT8qra_K56xjtrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.864 [XNIO-1 task-2] 6FDi_VqnT8qra_K56xjtrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.864 [XNIO-1 task-2] 6FDi_VqnT8qra_K56xjtrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.886 [XNIO-1 task-2] 8G0Bu0KSS3-j43uFa0Kk1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/30317048, base path is set to: null +20:00:45.886 [XNIO-1 task-2] 8G0Bu0KSS3-j43uFa0Kk1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.886 [XNIO-1 task-2] 8G0Bu0KSS3-j43uFa0Kk1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.887 [XNIO-1 task-2] 8G0Bu0KSS3-j43uFa0Kk1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/30317048, base path is set to: null +20:00:45.887 [XNIO-1 task-2] 8G0Bu0KSS3-j43uFa0Kk1A DEBUG com.networknt.schema.TypeValidator debug - validate( "30317048", "30317048", serviceId) +20:00:45.895 [XNIO-1 task-2] BvHXRrOhTViZVB3cM4TYrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.895 [XNIO-1 task-2] BvHXRrOhTViZVB3cM4TYrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.895 [XNIO-1 task-2] BvHXRrOhTViZVB3cM4TYrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.896 [XNIO-1 task-2] BvHXRrOhTViZVB3cM4TYrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.910 [XNIO-1 task-2] uS8pChauRXe_hV51Lyu2Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c216386, base path is set to: null +20:00:45.910 [XNIO-1 task-2] uS8pChauRXe_hV51Lyu2Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.911 [XNIO-1 task-2] uS8pChauRXe_hV51Lyu2Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:45.912 [XNIO-1 task-2] uS8pChauRXe_hV51Lyu2Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7c216386, base path is set to: null +20:00:45.912 [XNIO-1 task-2] uS8pChauRXe_hV51Lyu2Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "7c216386", "7c216386", serviceId) +20:00:45.928 [XNIO-1 task-2] kggN_Qa7ShC0Zl51ZRq2EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/30317048 +20:00:45.929 [XNIO-1 task-2] kggN_Qa7ShC0Zl51ZRq2EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.929 [XNIO-1 task-2] kggN_Qa7ShC0Zl51ZRq2EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.929 [XNIO-1 task-2] kggN_Qa7ShC0Zl51ZRq2EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/30317048 +20:00:45.929 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:45.945 [XNIO-1 task-2] itMDHbgIQvuJnu1ow2qcHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ed84518d +20:00:45.945 [XNIO-1 task-2] itMDHbgIQvuJnu1ow2qcHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:45.945 [XNIO-1 task-2] itMDHbgIQvuJnu1ow2qcHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:45.945 [XNIO-1 task-2] itMDHbgIQvuJnu1ow2qcHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ed84518d +20:00:45.964 [XNIO-1 task-2] 8v8F9StqQo6mr9gF3ORA5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.964 [XNIO-1 task-2] 8v8F9StqQo6mr9gF3ORA5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.965 [XNIO-1 task-2] 8v8F9StqQo6mr9gF3ORA5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.975 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.975 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.976 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.976 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.976 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.977 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:45.977 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:45.977 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG com.networknt.schema.TypeValidator debug - validate( "da579419-c132-4e52-9dc6-78f97c22", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:45.977 [XNIO-1 task-2] ibKbS59eTG-rEI0BOz2gZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:45.988 [XNIO-1 task-2] JsBb1m5wTguPnN2OxgJSSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.989 [XNIO-1 task-2] JsBb1m5wTguPnN2OxgJSSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:45.989 [XNIO-1 task-2] JsBb1m5wTguPnN2OxgJSSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:45.993 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0052f30-299a-49b0-891b-4569d0819adf +20:00:45.994 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0052f30-299a-49b0-891b-4569d0819adf +20:00:46.000 [XNIO-1 task-2] qaoneXjGRGKsDSAdEuF-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1276e79a +20:00:46.000 [XNIO-1 task-2] qaoneXjGRGKsDSAdEuF-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.000 [XNIO-1 task-2] qaoneXjGRGKsDSAdEuF-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.001 [XNIO-1 task-2] qaoneXjGRGKsDSAdEuF-1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1276e79a +20:00:46.013 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.013 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.013 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.014 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.014 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.014 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.014 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.014 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "69d35d98-bfb7-41bc-9aa6-198ae67f", {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.014 [XNIO-1 task-2] 1o6XYpTuT2SXW3k98jcUwQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.030 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.030 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.031 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.031 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.031 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.031 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.031 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.031 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG com.networknt.schema.TypeValidator debug - validate( "da579419-c132-4e52-9dc6-78f97c22", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.031 [XNIO-1 task-2] CO8HVxqPSMSx5gzxVQ2J5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.040 [XNIO-1 task-2] 44c5dm1mQVy5ob6jF0SFGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.041 [XNIO-1 task-2] 44c5dm1mQVy5ob6jF0SFGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.041 [XNIO-1 task-2] 44c5dm1mQVy5ob6jF0SFGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.041 [XNIO-1 task-2] 44c5dm1mQVy5ob6jF0SFGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.054 [XNIO-1 task-2] OzsMqjXyTi-VgNPJa8ryGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.054 [XNIO-1 task-2] OzsMqjXyTi-VgNPJa8ryGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.054 [XNIO-1 task-2] OzsMqjXyTi-VgNPJa8ryGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.071 [XNIO-1 task-2] zl8PqEGtR_Se2NbAHUUFXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.072 [XNIO-1 task-2] zl8PqEGtR_Se2NbAHUUFXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.072 [XNIO-1 task-2] zl8PqEGtR_Se2NbAHUUFXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.072 [XNIO-1 task-2] zl8PqEGtR_Se2NbAHUUFXg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.077 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56a57682-3b92-46af-a4e9-dfb348e318f9 +20:00:46.079 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56a57682-3b92-46af-a4e9-dfb348e318f9 +20:00:46.092 [XNIO-1 task-2] xN6G0CgnRDepUrcjE1lTzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1276e79a +20:00:46.092 [XNIO-1 task-2] xN6G0CgnRDepUrcjE1lTzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.092 [XNIO-1 task-2] xN6G0CgnRDepUrcjE1lTzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.092 [XNIO-1 task-2] xN6G0CgnRDepUrcjE1lTzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1276e79a +20:00:46.097 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.097 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.097 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.098 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.098 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.098 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.098 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.098 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "69d35d98-bfb7-41bc-9aa6-198ae67f", {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.098 [XNIO-1 task-2] aHXiJD7XR76IbuSf9eX0ZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4601398e","serviceName":"69d35d98-bfb7-41bc-9aa6-198ae67f","serviceDesc":"fd18780c-f650-440e-8ab1-4dedfc59cac3","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.110 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3ebd7513-cc1e-439b-ab9c-845bfa553544 +20:00:46.111 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3ebd7513-cc1e-439b-ab9c-845bfa553544 +20:00:46.113 [XNIO-1 task-2] 8so2n6KdRPeb9zMeIyw9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.113 [XNIO-1 task-2] 8so2n6KdRPeb9zMeIyw9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.114 [XNIO-1 task-2] 8so2n6KdRPeb9zMeIyw9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.143 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.143 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.144 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.144 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.144 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.144 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG com.networknt.schema.TypeValidator debug - validate( "bda509ea-a15f-469c-b77f-4ee747462531", {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:46.144 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG com.networknt.schema.TypeValidator debug - validate( "2f0a4432", {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:46.145 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:46.145 [XNIO-1 task-2] XFHB-F8sRLOTlDnEuvYQ2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.165 [XNIO-1 task-2] LcXr1xpnT4GIgAWiRXRb-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.165 [XNIO-1 task-2] LcXr1xpnT4GIgAWiRXRb-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.165 [XNIO-1 task-2] LcXr1xpnT4GIgAWiRXRb-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.166 [XNIO-1 task-2] LcXr1xpnT4GIgAWiRXRb-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.189 [XNIO-1 task-2] ksN0G-mNTgqSAmDz1PY3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.189 [XNIO-1 task-2] ksN0G-mNTgqSAmDz1PY3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.190 [XNIO-1 task-2] ksN0G-mNTgqSAmDz1PY3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.208 [XNIO-1 task-2] OqGbSAxZRT6ThQ-JyVoeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/66dcf428 +20:00:46.208 [XNIO-1 task-2] OqGbSAxZRT6ThQ-JyVoeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.208 [XNIO-1 task-2] OqGbSAxZRT6ThQ-JyVoeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.209 [XNIO-1 task-2] OqGbSAxZRT6ThQ-JyVoeAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/66dcf428 +20:00:46.222 [XNIO-1 task-2] zzhmw2pcQlGlljZjNhp7qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.223 [XNIO-1 task-2] zzhmw2pcQlGlljZjNhp7qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.223 [XNIO-1 task-2] zzhmw2pcQlGlljZjNhp7qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.223 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ebe307c8 +20:00:46.225 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ebe307c8 +20:00:46.233 [XNIO-1 task-2] c9yXwVQzSvecqLD9xpUWWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.234 [XNIO-1 task-2] c9yXwVQzSvecqLD9xpUWWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.234 [XNIO-1 task-2] c9yXwVQzSvecqLD9xpUWWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.234 [XNIO-1 task-2] c9yXwVQzSvecqLD9xpUWWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.244 [XNIO-1 task-2] o3ShDimcTXSQhDLOfPviiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ea7d1cba +20:00:46.244 [XNIO-1 task-2] o3ShDimcTXSQhDLOfPviiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.244 [XNIO-1 task-2] o3ShDimcTXSQhDLOfPviiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.245 [XNIO-1 task-2] o3ShDimcTXSQhDLOfPviiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ea7d1cba +20:00:46.262 [XNIO-1 task-2] XUHHWfKHSgSAI7rduQAeTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4601398e, base path is set to: null +20:00:46.262 [XNIO-1 task-2] XUHHWfKHSgSAI7rduQAeTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.262 [XNIO-1 task-2] XUHHWfKHSgSAI7rduQAeTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.263 [XNIO-1 task-2] XUHHWfKHSgSAI7rduQAeTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4601398e, base path is set to: null +20:00:46.263 [XNIO-1 task-2] XUHHWfKHSgSAI7rduQAeTA DEBUG com.networknt.schema.TypeValidator debug - validate( "4601398e", "4601398e", serviceId) +20:00:46.272 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.273 [XNIO-1 task-2] JSGIXiMOT1qcateNND3b8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.273 [XNIO-1 task-2] JSGIXiMOT1qcateNND3b8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.273 [XNIO-1 task-2] JSGIXiMOT1qcateNND3b8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.273 [XNIO-1 task-2] JSGIXiMOT1qcateNND3b8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.290 [XNIO-1 task-2] YCg1vTA0R_qQqHLE-3jWCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.290 [XNIO-1 task-2] YCg1vTA0R_qQqHLE-3jWCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.290 [XNIO-1 task-2] YCg1vTA0R_qQqHLE-3jWCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.291 [XNIO-1 task-2] YCg1vTA0R_qQqHLE-3jWCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.295 [XNIO-1 task-2] 92QwhRQHQ5GOPQKMys4iFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f0a4432, base path is set to: null +20:00:46.295 [XNIO-1 task-2] 92QwhRQHQ5GOPQKMys4iFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.295 [XNIO-1 task-2] 92QwhRQHQ5GOPQKMys4iFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.295 [XNIO-1 task-2] 92QwhRQHQ5GOPQKMys4iFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f0a4432, base path is set to: null +20:00:46.296 [XNIO-1 task-2] 92QwhRQHQ5GOPQKMys4iFw DEBUG com.networknt.schema.TypeValidator debug - validate( "2f0a4432", "2f0a4432", serviceId) +20:00:46.300 [XNIO-1 task-2] b56iKnHWRPuNelKQV7itPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.300 [XNIO-1 task-2] b56iKnHWRPuNelKQV7itPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.300 [XNIO-1 task-2] b56iKnHWRPuNelKQV7itPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.301 [XNIO-1 task-2] b56iKnHWRPuNelKQV7itPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.313 [XNIO-1 task-2] OdXDdvxPSK-cWhojaqgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.313 [XNIO-1 task-2] OdXDdvxPSK-cWhojaqgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.313 [XNIO-1 task-2] OdXDdvxPSK-cWhojaqgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.313 [XNIO-1 task-2] OdXDdvxPSK-cWhojaqgGTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.317 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.317 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.318 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.318 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.318 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.318 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.319 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.319 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8931ba10-1d33-44f5-8efa-46812092", {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.319 [XNIO-1 task-2] BEFePCEESGKIS7piIwBzMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2f0a4432","serviceName":"8931ba10-1d33-44f5-8efa-46812092","serviceDesc":"bda509ea-a15f-469c-b77f-4ee747462531","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.323 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0921c65b-70a6-40d3-9e76-bb007f1569a5 +20:00:46.329 [XNIO-1 task-2] 70iOVVfzTJyhTBw_pdYP4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.329 [XNIO-1 task-2] 70iOVVfzTJyhTBw_pdYP4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.329 [XNIO-1 task-2] 70iOVVfzTJyhTBw_pdYP4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.329 [XNIO-1 task-2] 70iOVVfzTJyhTBw_pdYP4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.339 [XNIO-1 task-2] yvMwbGQwSZO4IBsOS_FERg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.339 [XNIO-1 task-2] yvMwbGQwSZO4IBsOS_FERg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.339 [XNIO-1 task-2] yvMwbGQwSZO4IBsOS_FERg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.339 [XNIO-1 task-2] yvMwbGQwSZO4IBsOS_FERg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.344 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:987f009c +20:00:46.350 [XNIO-1 task-2] aWL9JzdOQGm5xLeRfWDnLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f0a4432, base path is set to: null +20:00:46.350 [XNIO-1 task-2] aWL9JzdOQGm5xLeRfWDnLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.350 [XNIO-1 task-2] aWL9JzdOQGm5xLeRfWDnLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.350 [XNIO-1 task-2] aWL9JzdOQGm5xLeRfWDnLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2f0a4432, base path is set to: null +20:00:46.351 [XNIO-1 task-2] aWL9JzdOQGm5xLeRfWDnLg DEBUG com.networknt.schema.TypeValidator debug - validate( "2f0a4432", "2f0a4432", serviceId) +20:00:46.356 [XNIO-1 task-2] 4DPUML4mQFuVT6gb0O2PIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.356 [XNIO-1 task-2] 4DPUML4mQFuVT6gb0O2PIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.356 [XNIO-1 task-2] 4DPUML4mQFuVT6gb0O2PIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.356 [XNIO-1 task-2] 4DPUML4mQFuVT6gb0O2PIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.357 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e71ebff1-2a7d-4a56-b45f-5acdffb0d87c +20:00:46.366 [XNIO-1 task-2] kZmu_p1ZQWioX64GgZuh-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.366 [XNIO-1 task-2] kZmu_p1ZQWioX64GgZuh-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.366 [XNIO-1 task-2] kZmu_p1ZQWioX64GgZuh-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.366 [XNIO-1 task-2] kZmu_p1ZQWioX64GgZuh-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2f0a4432 +20:00:46.377 [XNIO-1 task-2] GnT1CKKBQtWVlwGddrc_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ebe307c8, base path is set to: null +20:00:46.378 [XNIO-1 task-2] GnT1CKKBQtWVlwGddrc_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.378 [XNIO-1 task-2] GnT1CKKBQtWVlwGddrc_zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.378 [XNIO-1 task-2] GnT1CKKBQtWVlwGddrc_zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ebe307c8, base path is set to: null +20:00:46.378 [XNIO-1 task-2] GnT1CKKBQtWVlwGddrc_zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ebe307c8", "ebe307c8", serviceId) +20:00:46.380 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ebe307c8 +20:00:46.391 [XNIO-1 task-2] tbPQYtwDT1ifnA7iPQIrVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.391 [XNIO-1 task-2] tbPQYtwDT1ifnA7iPQIrVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.391 [XNIO-1 task-2] tbPQYtwDT1ifnA7iPQIrVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.391 [XNIO-1 task-2] tbPQYtwDT1ifnA7iPQIrVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.398 [XNIO-1 task-2] wSbgR0GiQnCAuiPWc71OMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.398 [XNIO-1 task-2] wSbgR0GiQnCAuiPWc71OMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.399 [XNIO-1 task-2] wSbgR0GiQnCAuiPWc71OMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.409 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.409 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.410 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.410 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.410 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.410 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.411 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.411 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG com.networknt.schema.TypeValidator debug - validate( "da579419-c132-4e52-9dc6-78f97c22", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.411 [XNIO-1 task-2] mD9-2JS3RuSIyqWfXvJBAw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.420 [XNIO-1 task-2] 31E7uJtrT8qh-wZdbEITYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.420 [XNIO-1 task-2] 31E7uJtrT8qh-wZdbEITYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.420 [XNIO-1 task-2] 31E7uJtrT8qh-wZdbEITYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.421 [XNIO-1 task-2] 31E7uJtrT8qh-wZdbEITYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.451 [XNIO-1 task-2] krYP383NQp6vseUy-HQPng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/aa9db19b, base path is set to: null +20:00:46.451 [XNIO-1 task-2] krYP383NQp6vseUy-HQPng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.451 [XNIO-1 task-2] krYP383NQp6vseUy-HQPng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.451 [XNIO-1 task-2] krYP383NQp6vseUy-HQPng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/aa9db19b, base path is set to: null +20:00:46.452 [XNIO-1 task-2] krYP383NQp6vseUy-HQPng DEBUG com.networknt.schema.TypeValidator debug - validate( "aa9db19b", "aa9db19b", serviceId) +20:00:46.455 [XNIO-1 task-2] 7C3cXD56RjOVT5FEYLYzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/aa9db19b +20:00:46.455 [XNIO-1 task-2] 7C3cXD56RjOVT5FEYLYzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.455 [XNIO-1 task-2] 7C3cXD56RjOVT5FEYLYzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.455 [XNIO-1 task-2] 7C3cXD56RjOVT5FEYLYzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/aa9db19b +20:00:46.463 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:58b4f189 +20:00:46.463 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:77a913af-9668-4142-9ac1-4383fd573142 +20:00:46.469 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:58b4f189 +20:00:46.469 [XNIO-1 task-2] cPRd3dxsT5GThjqMhdeq0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.469 [XNIO-1 task-2] cPRd3dxsT5GThjqMhdeq0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.470 [XNIO-1 task-2] cPRd3dxsT5GThjqMhdeq0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.470 [XNIO-1 task-2] cPRd3dxsT5GThjqMhdeq0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.501 [XNIO-1 task-2] gZzQr2aRSFK4HAiB_9Q3mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.501 [XNIO-1 task-2] gZzQr2aRSFK4HAiB_9Q3mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.501 [XNIO-1 task-2] gZzQr2aRSFK4HAiB_9Q3mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.512 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.512 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.513 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.513 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.513 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.513 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.513 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.513 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG com.networknt.schema.TypeValidator debug - validate( "8a373680-d41a-43b0-9aff-7225ad3c", {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.514 [XNIO-1 task-2] PT7OiHtzSrqCaCVM-0Xwyg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.524 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.524 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.525 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.526 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.526 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.526 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.526 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.526 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "da579419-c132-4e52-9dc6-78f97c22", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.526 [XNIO-1 task-2] R1cX7QF9QPyql_qeEbn-_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.538 [XNIO-1 task-2] eSd0QQfyTt6H3iQHB0gteQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d82ff58c, base path is set to: null +20:00:46.538 [XNIO-1 task-2] eSd0QQfyTt6H3iQHB0gteQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.539 [XNIO-1 task-2] eSd0QQfyTt6H3iQHB0gteQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.539 [XNIO-1 task-2] eSd0QQfyTt6H3iQHB0gteQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d82ff58c, base path is set to: null +20:00:46.539 [XNIO-1 task-2] eSd0QQfyTt6H3iQHB0gteQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d82ff58c", "d82ff58c", serviceId) +20:00:46.547 [XNIO-1 task-2] ca-QSaMaTRKWo-Nl7FlcoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1276e79a +20:00:46.547 [XNIO-1 task-2] ca-QSaMaTRKWo-Nl7FlcoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.547 [XNIO-1 task-2] ca-QSaMaTRKWo-Nl7FlcoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.548 [XNIO-1 task-2] ca-QSaMaTRKWo-Nl7FlcoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1276e79a +20:00:46.551 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.552 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.552 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.552 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.553 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.553 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.553 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.553 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG com.networknt.schema.TypeValidator debug - validate( "da579419-c132-4e52-9dc6-78f97c22", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.554 [XNIO-1 task-2] OcDLPvBnQxOIt7-0sCUf4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.565 [XNIO-1 task-2] v22i_o8mT0m4-MPhDL9PTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.566 [XNIO-1 task-2] v22i_o8mT0m4-MPhDL9PTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.566 [XNIO-1 task-2] v22i_o8mT0m4-MPhDL9PTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.566 [XNIO-1 task-2] v22i_o8mT0m4-MPhDL9PTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.584 [XNIO-1 task-2] b5W757j0RE6Sa0YmPJxQNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.585 [XNIO-1 task-2] b5W757j0RE6Sa0YmPJxQNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.585 [XNIO-1 task-2] b5W757j0RE6Sa0YmPJxQNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.600 [XNIO-1 task-2] aJFtDdvbRTyY8NJ6l_wbTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.600 [XNIO-1 task-2] aJFtDdvbRTyY8NJ6l_wbTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.600 [XNIO-1 task-2] aJFtDdvbRTyY8NJ6l_wbTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.600 [XNIO-1 task-2] aJFtDdvbRTyY8NJ6l_wbTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.607 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3779b4d6 +20:00:46.615 [XNIO-1 task-2] qYEpth8pQaC1_ykHknIf-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.615 [XNIO-1 task-2] qYEpth8pQaC1_ykHknIf-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.616 [XNIO-1 task-2] qYEpth8pQaC1_ykHknIf-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.630 [XNIO-1 task-2] Ku1OiKfvQKu8NL1B7i_wEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/377b66d4 +20:00:46.630 [XNIO-1 task-2] Ku1OiKfvQKu8NL1B7i_wEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.630 [XNIO-1 task-2] Ku1OiKfvQKu8NL1B7i_wEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.630 [XNIO-1 task-2] Ku1OiKfvQKu8NL1B7i_wEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/377b66d4 +20:00:46.637 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3779b4d6 +20:00:46.637 [XNIO-1 task-2] ylrsOEZ-SUyMl7f08VKI4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/377b66d4, base path is set to: null +20:00:46.637 [XNIO-1 task-2] ylrsOEZ-SUyMl7f08VKI4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.637 [XNIO-1 task-2] ylrsOEZ-SUyMl7f08VKI4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.638 [XNIO-1 task-2] ylrsOEZ-SUyMl7f08VKI4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/377b66d4, base path is set to: null +20:00:46.638 [XNIO-1 task-2] ylrsOEZ-SUyMl7f08VKI4A DEBUG com.networknt.schema.TypeValidator debug - validate( "377b66d4", "377b66d4", serviceId) +20:00:46.642 [XNIO-1 task-2] -WrYj-qjRNy82H1da8GAIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/377b66d4 +20:00:46.642 [XNIO-1 task-2] -WrYj-qjRNy82H1da8GAIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.642 [XNIO-1 task-2] -WrYj-qjRNy82H1da8GAIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.643 [XNIO-1 task-2] -WrYj-qjRNy82H1da8GAIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/377b66d4 +20:00:46.650 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.650 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.650 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.651 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.651 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.651 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.651 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.651 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG com.networknt.schema.TypeValidator debug - validate( "6cca2911-a89c-47fd-9d00-d5d461bb", {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.651 [XNIO-1 task-2] JEQmdvapRkKQCxMXFg5Fug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"059e9d7c","serviceName":"6cca2911-a89c-47fd-9d00-d5d461bb","serviceDesc":"bf97488f-a7df-4f74-9f34-7264f262d2b2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.657 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:59fd5414-d66f-4a20-a5cb-935a15c7fcd7 +20:00:46.662 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.662 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.663 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.663 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.663 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.664 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.664 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.664 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG com.networknt.schema.TypeValidator debug - validate( "da579419-c132-4e52-9dc6-78f97c22", {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.664 [XNIO-1 task-2] K9OOFrVISnG77j45vjcboQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1276e79a","serviceName":"da579419-c132-4e52-9dc6-78f97c22","serviceDesc":"21e14861-f121-498d-80c8-cb2e698506e2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.678 [XNIO-1 task-2] N1tbA4J5ToyILhXMaYm8Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.678 [XNIO-1 task-2] N1tbA4J5ToyILhXMaYm8Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.678 [XNIO-1 task-2] N1tbA4J5ToyILhXMaYm8Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.691 [XNIO-1 task-2] ao18_f5mRNWg0ZdIANfA0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1276e79a, base path is set to: null +20:00:46.691 [XNIO-1 task-2] ao18_f5mRNWg0ZdIANfA0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.691 [XNIO-1 task-2] ao18_f5mRNWg0ZdIANfA0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.691 [XNIO-1 task-2] ao18_f5mRNWg0ZdIANfA0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1276e79a, base path is set to: null +20:00:46.692 [XNIO-1 task-2] ao18_f5mRNWg0ZdIANfA0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1276e79a", "1276e79a", serviceId) +20:00:46.709 [XNIO-1 task-2] -AhCuGfpTO6breExRKgEZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/362ee8ca +20:00:46.709 [XNIO-1 task-2] -AhCuGfpTO6breExRKgEZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.709 [XNIO-1 task-2] -AhCuGfpTO6breExRKgEZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.709 [XNIO-1 task-2] -AhCuGfpTO6breExRKgEZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/362ee8ca +20:00:46.713 [XNIO-1 task-2] 3M5xqUUPSG-bp414AiWhTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.713 [XNIO-1 task-2] 3M5xqUUPSG-bp414AiWhTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.713 [XNIO-1 task-2] 3M5xqUUPSG-bp414AiWhTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.714 [XNIO-1 task-2] 3M5xqUUPSG-bp414AiWhTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.717 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6d7ba740-23fa-4428-8f55-1ddd3192ac09 +20:00:46.731 [XNIO-1 task-2] 1xNWBUjkRu-UiHF35mZ7xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.731 [XNIO-1 task-2] 1xNWBUjkRu-UiHF35mZ7xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.731 [XNIO-1 task-2] 1xNWBUjkRu-UiHF35mZ7xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.732 [XNIO-1 task-2] 1xNWBUjkRu-UiHF35mZ7xw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.748 [XNIO-1 task-2] SSF7wcRHRL2cOQ1Hd7rqdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.748 [XNIO-1 task-2] SSF7wcRHRL2cOQ1Hd7rqdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.748 [XNIO-1 task-2] SSF7wcRHRL2cOQ1Hd7rqdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.748 [XNIO-1 task-2] SSF7wcRHRL2cOQ1Hd7rqdA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.791 [XNIO-1 task-2] KkzQnUhIR56FN7grfPjQUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.791 [XNIO-1 task-2] KkzQnUhIR56FN7grfPjQUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.792 [XNIO-1 task-2] KkzQnUhIR56FN7grfPjQUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.792 [XNIO-1 task-2] KkzQnUhIR56FN7grfPjQUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.821 [XNIO-1 task-2] gD8T83pUQF2DPnzSqVfAvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.821 [XNIO-1 task-2] gD8T83pUQF2DPnzSqVfAvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.821 [XNIO-1 task-2] gD8T83pUQF2DPnzSqVfAvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.821 [XNIO-1 task-2] gD8T83pUQF2DPnzSqVfAvw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.831 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.832 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.832 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.833 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.833 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.833 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.834 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +20:00:46.834 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG com.networknt.schema.TypeValidator debug - validate( "afcf85ea-9dd1-42b6-98f0-56a44e0b", {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +20:00:46.834 [XNIO-1 task-2] rZBOBmBwQ0qEfEEI49gpDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"377b66d4","serviceName":"afcf85ea-9dd1-42b6-98f0-56a44e0b","serviceDesc":"066a46f6-554e-4e7c-912e-c1a0c795b8a7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.835 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3779b4d6 +20:00:46.837 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:50052f22-6184-4fb9-bd1d-c157486ef163 +20:00:46.838 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:50052f22-6184-4fb9-bd1d-c157486ef163 +20:00:46.844 [XNIO-1 task-2] 3RkpfxlUTtaGPFovgiEFyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.844 [XNIO-1 task-2] 3RkpfxlUTtaGPFovgiEFyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.845 [XNIO-1 task-2] 3RkpfxlUTtaGPFovgiEFyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.853 [XNIO-1 task-2] apMloXXISU2U5CmRqoYEPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/362ee8ca +20:00:46.854 [XNIO-1 task-2] apMloXXISU2U5CmRqoYEPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.854 [XNIO-1 task-2] apMloXXISU2U5CmRqoYEPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.854 [XNIO-1 task-2] apMloXXISU2U5CmRqoYEPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/362ee8ca +20:00:46.856 [XNIO-1 task-2] nZ6uKJuJQ8WBAkRIbGZeLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.856 [XNIO-1 task-2] nZ6uKJuJQ8WBAkRIbGZeLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.857 [XNIO-1 task-2] nZ6uKJuJQ8WBAkRIbGZeLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.867 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:50052f22-6184-4fb9-bd1d-c157486ef163 +20:00:46.874 [XNIO-1 task-2] Prduja2wSuGTWOX2eOI2Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/377b66d4 +20:00:46.874 [XNIO-1 task-2] Prduja2wSuGTWOX2eOI2Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.874 [XNIO-1 task-2] Prduja2wSuGTWOX2eOI2Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.875 [XNIO-1 task-2] Prduja2wSuGTWOX2eOI2Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/377b66d4 +20:00:46.878 [XNIO-1 task-2] lwMIc8z4RqKrH-FQ4YNy9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/059e9d7c, base path is set to: null +20:00:46.879 [XNIO-1 task-2] lwMIc8z4RqKrH-FQ4YNy9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.879 [XNIO-1 task-2] lwMIc8z4RqKrH-FQ4YNy9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.879 [XNIO-1 task-2] lwMIc8z4RqKrH-FQ4YNy9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/059e9d7c, base path is set to: null +20:00:46.879 [XNIO-1 task-2] lwMIc8z4RqKrH-FQ4YNy9w DEBUG com.networknt.schema.TypeValidator debug - validate( "059e9d7c", "059e9d7c", serviceId) +20:00:46.893 [XNIO-1 task-2] KlfbVBU4QL-h2KXuwTTDXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/362ee8ca +20:00:46.893 [XNIO-1 task-2] KlfbVBU4QL-h2KXuwTTDXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.893 [XNIO-1 task-2] KlfbVBU4QL-h2KXuwTTDXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.893 [XNIO-1 task-2] KlfbVBU4QL-h2KXuwTTDXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/362ee8ca +20:00:46.897 [XNIO-1 task-2] BTfIG6qZTrWHKZ75QDJ9mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.898 [XNIO-1 task-2] BTfIG6qZTrWHKZ75QDJ9mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.899 [XNIO-1 task-2] BTfIG6qZTrWHKZ75QDJ9mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:46.914 [XNIO-1 task-2] Yjeb1ebVQq2vT6amQ2J5yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/377b66d4, base path is set to: null +20:00:46.915 [XNIO-1 task-2] Yjeb1ebVQq2vT6amQ2J5yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.915 [XNIO-1 task-2] Yjeb1ebVQq2vT6amQ2J5yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.915 [XNIO-1 task-2] Yjeb1ebVQq2vT6amQ2J5yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/377b66d4, base path is set to: null +20:00:46.915 [XNIO-1 task-2] Yjeb1ebVQq2vT6amQ2J5yw DEBUG com.networknt.schema.TypeValidator debug - validate( "377b66d4", "377b66d4", serviceId) +20:00:46.922 [XNIO-1 task-2] DpWmLybkS6m36usyfSEeXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.922 [XNIO-1 task-2] DpWmLybkS6m36usyfSEeXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.922 [XNIO-1 task-2] DpWmLybkS6m36usyfSEeXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.923 [XNIO-1 task-2] DpWmLybkS6m36usyfSEeXA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.927 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2041d0b3-6035-4c45-95a5-e1a4c13ae925 +20:00:46.940 [XNIO-1 task-2] ryEjqP_dQfaLKpgP2ar9OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/362ee8ca, base path is set to: null +20:00:46.941 [XNIO-1 task-2] ryEjqP_dQfaLKpgP2ar9OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:46.941 [XNIO-1 task-2] ryEjqP_dQfaLKpgP2ar9OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:46.941 [XNIO-1 task-2] ryEjqP_dQfaLKpgP2ar9OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/362ee8ca, base path is set to: null +20:00:46.941 [XNIO-1 task-2] ryEjqP_dQfaLKpgP2ar9OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "362ee8ca", "362ee8ca", serviceId) +20:00:46.957 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.957 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.958 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.958 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.958 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:46.958 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG com.networknt.schema.TypeValidator debug - validate( "580b9404-5de7-4e30-96c7-8ca28127a42f", {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:46.958 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG com.networknt.schema.TypeValidator debug - validate( "d82ff58c", {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:46.958 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:46.959 [XNIO-1 task-2] bcbewj1YQnyRRH3C3XBTBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d82ff58c","serviceName":"8a373680-d41a-43b0-9aff-7225ad3c","serviceDesc":"580b9404-5de7-4e30-96c7-8ca28127a42f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:46.973 [XNIO-1 task-2] zo7240xhSrie9vSJytIN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.973 [XNIO-1 task-2] zo7240xhSrie9vSJytIN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.974 [XNIO-1 task-2] zo7240xhSrie9vSJytIN7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.984 [XNIO-1 task-2] uZHIV0qTR5eTrNMH31w97w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.984 [XNIO-1 task-2] uZHIV0qTR5eTrNMH31w97w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.985 [XNIO-1 task-2] uZHIV0qTR5eTrNMH31w97w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.985 [XNIO-1 task-2] uZHIV0qTR5eTrNMH31w97w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.987 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fc5efdc9-d86c-495f-93fe-3fcede41d546 +20:00:46.997 [XNIO-1 task-2] AEuOPTQUQNmAeIlmlLwV5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d720b04 +20:00:46.997 [XNIO-1 task-2] AEuOPTQUQNmAeIlmlLwV5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:46.997 [XNIO-1 task-2] AEuOPTQUQNmAeIlmlLwV5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:46.997 [XNIO-1 task-2] AEuOPTQUQNmAeIlmlLwV5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2d720b04 +20:00:47.003 [XNIO-1 task-2] mJRf29IkR5-pPEbIQU81yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:47.003 [XNIO-1 task-2] mJRf29IkR5-pPEbIQU81yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:47.003 [XNIO-1 task-2] mJRf29IkR5-pPEbIQU81yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +20:00:47.004 [XNIO-1 task-2] mJRf29IkR5-pPEbIQU81yw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:47.016 [XNIO-1 task-2] rEIo6TL0Qmqo-KYP97raYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9497f08c, base path is set to: null +20:00:47.016 [XNIO-1 task-2] rEIo6TL0Qmqo-KYP97raYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:47.016 [XNIO-1 task-2] rEIo6TL0Qmqo-KYP97raYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:47.016 [XNIO-1 task-2] rEIo6TL0Qmqo-KYP97raYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9497f08c, base path is set to: null +20:00:47.017 [XNIO-1 task-2] rEIo6TL0Qmqo-KYP97raYw DEBUG com.networknt.schema.TypeValidator debug - validate( "9497f08c", "9497f08c", serviceId) +20:00:47.029 [XNIO-1 task-2] 5H_0UvqLQ_mljChyoMa3rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.029 [XNIO-1 task-2] 5H_0UvqLQ_mljChyoMa3rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.029 [XNIO-1 task-2] 5H_0UvqLQ_mljChyoMa3rw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.029 [XNIO-1 task-2] 5H_0UvqLQ_mljChyoMa3rw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.047 [XNIO-1 task-2] eNBXsH3sTe23-je0GWS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.047 [XNIO-1 task-2] eNBXsH3sTe23-je0GWS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.047 [XNIO-1 task-2] eNBXsH3sTe23-je0GWS58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.064 [XNIO-1 task-2] 3IiRvbdhQT-5AQMGa_mZSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce4469b3 +20:00:47.064 [XNIO-1 task-2] 3IiRvbdhQT-5AQMGa_mZSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.064 [XNIO-1 task-2] 3IiRvbdhQT-5AQMGa_mZSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:47.064 [XNIO-1 task-2] 3IiRvbdhQT-5AQMGa_mZSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ce4469b3 +20:00:47.075 [XNIO-1 task-2] eHSVHui1TJSt2we9Ia05Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce4469b3, base path is set to: null +20:00:47.075 [XNIO-1 task-2] eHSVHui1TJSt2we9Ia05Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:47.075 [XNIO-1 task-2] eHSVHui1TJSt2we9Ia05Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:47.075 [XNIO-1 task-2] eHSVHui1TJSt2we9Ia05Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ce4469b3, base path is set to: null +20:00:47.076 [XNIO-1 task-2] eHSVHui1TJSt2we9Ia05Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "ce4469b3", "ce4469b3", serviceId) +20:00:47.088 [XNIO-1 task-2] RJKY2uEkS1yrJXKIC4nmDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.088 [XNIO-1 task-2] RJKY2uEkS1yrJXKIC4nmDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.089 [XNIO-1 task-2] RJKY2uEkS1yrJXKIC4nmDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.089 [XNIO-1 task-2] RJKY2uEkS1yrJXKIC4nmDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:47.101 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.101 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.101 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.102 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:47.102 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +20:00:47.102 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG com.networknt.schema.TypeValidator debug - validate( "00801a09-e820-4654-93fa-c256b50d8c75", {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +20:00:47.102 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG com.networknt.schema.TypeValidator debug - validate( "511d3e59", {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +20:00:47.102 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +20:00:47.102 [XNIO-1 task-2] CvW9UJkqRIqRW3zpnFXryA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"511d3e59","serviceName":"a663d6d7-4a1f-4707-a651-2eb21773","serviceDesc":"00801a09-e820-4654-93fa-c256b50d8c75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +20:00:47.119 [XNIO-1 task-2] lyaxw7ERQaKJvS5ZSc8EWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d82ff58c +20:00:47.120 [XNIO-1 task-2] lyaxw7ERQaKJvS5ZSc8EWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +20:00:47.120 [XNIO-1 task-2] lyaxw7ERQaKJvS5ZSc8EWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +20:00:47.120 [XNIO-1 task-2] lyaxw7ERQaKJvS5ZSc8EWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d82ff58c +20:00:47.126 [XNIO-1 task-2] lqVVaOTcROuLd15alKR-Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/377b66d4, base path is set to: null +20:00:47.126 [XNIO-1 task-2] lqVVaOTcROuLd15alKR-Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +20:00:47.126 [XNIO-1 task-2] lqVVaOTcROuLd15alKR-Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +20:00:47.126 [XNIO-1 task-2] lqVVaOTcROuLd15alKR-Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/377b66d4, base path is set to: null +20:00:47.126 [XNIO-1 task-2] lqVVaOTcROuLd15alKR-Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "377b66d4", "377b66d4", serviceId) diff --git a/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-token-1.log b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..0e41d73 --- /dev/null +++ b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-token-1.log @@ -0,0 +1,3871 @@ +20:00:40.365 [XNIO-1 task-4] k_tw3V2cTzyCbyq1IY3BXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.377 [XNIO-1 task-2] GOtYFE_aSySKKmiDFzIn-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.377 [XNIO-1 task-2] GOtYFE_aSySKKmiDFzIn-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.380 [XNIO-1 task-4] k_tw3V2cTzyCbyq1IY3BXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDRkZTA3MDctYTdhZi00NjFmLTlhM2YtZWQxZmRkNTM1NGNhOkRoN1RXUWpvUzJDbmJ1Uk15QjZ5TUE=", "Basic NDRkZTA3MDctYTdhZi00NjFmLTlhM2YtZWQxZmRkNTM1NGNhOkRoN1RXUWpvUzJDbmJ1Uk15QjZ5TUE=", authorization) +20:00:40.378 [XNIO-1 task-2] GOtYFE_aSySKKmiDFzIn-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.382 [XNIO-1 task-2] GOtYFE_aSySKKmiDFzIn-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:40.387 [XNIO-1 task-4] k_tw3V2cTzyCbyq1IY3BXg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.389 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:63bc52e6 +20:00:40.390 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:63bc52e6 +20:00:40.395 [XNIO-1 task-2] GOtYFE_aSySKKmiDFzIn-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.396 [XNIO-1 task-4] MGmioL0fSqeHGW4ehjP0kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.396 [XNIO-1 task-4] MGmioL0fSqeHGW4ehjP0kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.396 [XNIO-1 task-4] MGmioL0fSqeHGW4ehjP0kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.397 [XNIO-1 task-4] MGmioL0fSqeHGW4ehjP0kg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.419 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0a1867c7-431b-4ce4-baa4-f804a761961b +20:00:40.438 [XNIO-1 task-4] MGmioL0fSqeHGW4ehjP0kg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.443 [XNIO-1 task-1] QCXL7cX0QNyqKBftcJ5UuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.444 [XNIO-1 task-1] QCXL7cX0QNyqKBftcJ5UuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.444 [XNIO-1 task-1] QCXL7cX0QNyqKBftcJ5UuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.445 [XNIO-1 task-1] QCXL7cX0QNyqKBftcJ5UuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:40.449 [XNIO-1 task-2] usZlvX9NS-aCV3owtFKsQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.450 [XNIO-1 task-2] usZlvX9NS-aCV3owtFKsQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.450 [XNIO-1 task-2] usZlvX9NS-aCV3owtFKsQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.451 [XNIO-1 task-2] usZlvX9NS-aCV3owtFKsQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDRkZTA3MDctYTdhZi00NjFmLTlhM2YtZWQxZmRkNTM1NGNhOkRoN1RXUWpvUzJDbmJ1Uk15QjZ5TUE=", "Basic NDRkZTA3MDctYTdhZi00NjFmLTlhM2YtZWQxZmRkNTM1NGNhOkRoN1RXUWpvUzJDbmJ1Uk15QjZ5TUE=", authorization) +20:00:40.452 [XNIO-1 task-1] QCXL7cX0QNyqKBftcJ5UuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:40.454 [XNIO-1 task-1] QCXL7cX0QNyqKBftcJ5UuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.460 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2519d2d9-c525-4cc5-9534-19c828c60b59 +20:00:40.461 [XNIO-1 task-2] usZlvX9NS-aCV3owtFKsQQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.469 [XNIO-1 task-2] sholHtnWQrKDRUIQ_X_YAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.469 [XNIO-1 task-2] sholHtnWQrKDRUIQ_X_YAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.470 [XNIO-1 task-2] sholHtnWQrKDRUIQ_X_YAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.472 [XNIO-1 task-2] sholHtnWQrKDRUIQ_X_YAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.477 [XNIO-1 task-1] h1VJWil9SG6YUeNVdAwhsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.477 [XNIO-1 task-1] h1VJWil9SG6YUeNVdAwhsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.477 [XNIO-1 task-1] h1VJWil9SG6YUeNVdAwhsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.478 [XNIO-1 task-2] sholHtnWQrKDRUIQ_X_YAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.478 [XNIO-1 task-1] h1VJWil9SG6YUeNVdAwhsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = yCZXkJi8So-GkDFlwwM-cg redirectUri = http://localhost:8080/authorization +20:00:40.486 [XNIO-1 task-1] h1VJWil9SG6YUeNVdAwhsw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:40.486 [XNIO-1 task-2] mX68Tbf-Q5mxtyOeJrzBIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.486 [XNIO-1 task-1] h1VJWil9SG6YUeNVdAwhsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.488 [XNIO-1 task-2] mX68Tbf-Q5mxtyOeJrzBIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.488 [XNIO-1 task-2] mX68Tbf-Q5mxtyOeJrzBIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDRkZTA3MDctYTdhZi00NjFmLTlhM2YtZWQxZmRkNTM1NGNhOkRoN1RXUWpvUzJDbmJ1Uk15QjZ5TUE=", "Basic NDRkZTA3MDctYTdhZi00NjFmLTlhM2YtZWQxZmRkNTM1NGNhOkRoN1RXUWpvUzJDbmJ1Uk15QjZ5TUE=", authorization) +20:00:40.495 [XNIO-1 task-2] mX68Tbf-Q5mxtyOeJrzBIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.505 [XNIO-1 task-1] PdqJPPP-TUCh2JbYZjzM8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.506 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1d89d90d +20:00:40.506 [XNIO-1 task-1] PdqJPPP-TUCh2JbYZjzM8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.507 [XNIO-1 task-1] PdqJPPP-TUCh2JbYZjzM8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.507 [XNIO-1 task-2] xOGvIwYMR-6yoewDMpb63Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.510 [XNIO-1 task-2] xOGvIwYMR-6yoewDMpb63Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.511 [XNIO-1 task-1] PdqJPPP-TUCh2JbYZjzM8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.511 [XNIO-1 task-2] xOGvIwYMR-6yoewDMpb63Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.512 [XNIO-1 task-2] xOGvIwYMR-6yoewDMpb63Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 785c3756-7daa-48e1-9c2e-b3f3aa8d476a scope = null +20:00:40.518 [XNIO-1 task-1] PdqJPPP-TUCh2JbYZjzM8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.521 [XNIO-1 task-4] rfSvDNmlSse6284oh6aHaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.521 [XNIO-1 task-4] rfSvDNmlSse6284oh6aHaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.524 [XNIO-1 task-4] rfSvDNmlSse6284oh6aHaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.525 [XNIO-1 task-4] rfSvDNmlSse6284oh6aHaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:40.525 [XNIO-1 task-2] xOGvIwYMR-6yoewDMpb63Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.528 [XNIO-1 task-1] PImlF8dVRxGzhyb-upks9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.529 [XNIO-1 task-1] PImlF8dVRxGzhyb-upks9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.529 [XNIO-1 task-1] PImlF8dVRxGzhyb-upks9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.530 [XNIO-1 task-1] PImlF8dVRxGzhyb-upks9g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.545 [XNIO-1 task-4] rfSvDNmlSse6284oh6aHaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.571 [XNIO-1 task-1] PImlF8dVRxGzhyb-upks9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.581 [XNIO-1 task-1] whvC9NivSWuGSM2KkwuLwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.581 [XNIO-1 task-1] whvC9NivSWuGSM2KkwuLwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.582 [XNIO-1 task-1] whvC9NivSWuGSM2KkwuLwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.582 [XNIO-1 task-1] whvC9NivSWuGSM2KkwuLwg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmNTcxOTYtYTllZi00MTdlLWI3MjAtMWZkM2E5OGJlMDMxOnhsVk16MHVJVEhDdUcxZVFveTFHa2c=", "Basic MzJmNTcxOTYtYTllZi00MTdlLWI3MjAtMWZkM2E5OGJlMDMxOnhsVk16MHVJVEhDdUcxZVFveTFHa2c=", authorization) +20:00:40.588 [XNIO-1 task-1] whvC9NivSWuGSM2KkwuLwg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.595 [XNIO-1 task-1] FVttgWqvRdKoZUZrULjBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.595 [XNIO-1 task-1] FVttgWqvRdKoZUZrULjBsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.596 [XNIO-1 task-1] FVttgWqvRdKoZUZrULjBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.597 [XNIO-1 task-1] FVttgWqvRdKoZUZrULjBsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAxNzViYzctMjhjZi00NjY1LWJmMmMtZjMwYWRmZTliZTBkOjJTRUpkV0thUWhLdGlXY2FLVkR1Rnc=", "Basic NTAxNzViYzctMjhjZi00NjY1LWJmMmMtZjMwYWRmZTliZTBkOjJTRUpkV0thUWhLdGlXY2FLVkR1Rnc=", authorization) +20:00:40.603 [XNIO-1 task-1] FVttgWqvRdKoZUZrULjBsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.607 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:72cf3247-157c-456d-88aa-e569e158f1ee +20:00:40.609 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:72cf3247-157c-456d-88aa-e569e158f1ee +20:00:40.613 [XNIO-1 task-2] Pc94vVzmSQKIl2ZAia0QHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.613 [XNIO-1 task-2] Pc94vVzmSQKIl2ZAia0QHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.614 [XNIO-1 task-2] Pc94vVzmSQKIl2ZAia0QHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.616 [XNIO-1 task-2] Pc94vVzmSQKIl2ZAia0QHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.625 [XNIO-1 task-2] Pc94vVzmSQKIl2ZAia0QHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.631 [XNIO-1 task-2] VgTCL_JPTMy08mM6pnpbmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.631 [XNIO-1 task-2] VgTCL_JPTMy08mM6pnpbmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.632 [XNIO-1 task-2] VgTCL_JPTMy08mM6pnpbmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.633 [XNIO-1 task-2] VgTCL_JPTMy08mM6pnpbmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.639 [XNIO-1 task-2] VgTCL_JPTMy08mM6pnpbmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.645 [XNIO-1 task-2] HB-F2VRVQsqLTUHogyP82A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.645 [XNIO-1 task-2] HB-F2VRVQsqLTUHogyP82A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.646 [XNIO-1 task-2] HB-F2VRVQsqLTUHogyP82A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.646 [XNIO-1 task-2] HB-F2VRVQsqLTUHogyP82A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.658 [XNIO-1 task-2] HB-F2VRVQsqLTUHogyP82A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.664 [XNIO-1 task-2] ym6kGC8BQdafQTKkfOOaxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.664 [XNIO-1 task-2] ym6kGC8BQdafQTKkfOOaxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.665 [XNIO-1 task-2] ym6kGC8BQdafQTKkfOOaxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.665 [XNIO-1 task-2] ym6kGC8BQdafQTKkfOOaxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.670 [XNIO-1 task-2] ym6kGC8BQdafQTKkfOOaxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.677 [XNIO-1 task-2] QCqsZzenSvGmrMLHFChOkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.677 [XNIO-1 task-2] QCqsZzenSvGmrMLHFChOkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.678 [XNIO-1 task-2] QCqsZzenSvGmrMLHFChOkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.679 [XNIO-1 task-2] QCqsZzenSvGmrMLHFChOkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.684 [XNIO-1 task-2] QCqsZzenSvGmrMLHFChOkg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.692 [XNIO-1 task-2] VKaDbdVwT0epCYi-BVAX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.693 [XNIO-1 task-2] VKaDbdVwT0epCYi-BVAX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.693 [XNIO-1 task-2] VKaDbdVwT0epCYi-BVAX-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.697 [XNIO-1 task-2] VKaDbdVwT0epCYi-BVAX-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.707 [XNIO-1 task-2] VKaDbdVwT0epCYi-BVAX-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.712 [XNIO-1 task-2] 8OSw-7YeTKiVmRRDGo3J0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.712 [XNIO-1 task-2] 8OSw-7YeTKiVmRRDGo3J0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.713 [XNIO-1 task-2] 8OSw-7YeTKiVmRRDGo3J0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.714 [XNIO-1 task-2] 8OSw-7YeTKiVmRRDGo3J0w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.734 [XNIO-1 task-1] _L5SD3gOTi2zcpZFDRhkIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.734 [XNIO-1 task-1] _L5SD3gOTi2zcpZFDRhkIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.735 [XNIO-1 task-1] _L5SD3gOTi2zcpZFDRhkIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.736 [XNIO-1 task-1] _L5SD3gOTi2zcpZFDRhkIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = necyrDPdSPe0Ip9XbnkX1A redirectUri = http://localhost:8080/authorization +20:00:40.749 [XNIO-1 task-1] _L5SD3gOTi2zcpZFDRhkIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.763 [XNIO-1 task-2] 8OSw-7YeTKiVmRRDGo3J0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.772 [XNIO-1 task-2] D8GNK-jdRpOJkzg4UmsRdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.773 [XNIO-1 task-2] D8GNK-jdRpOJkzg4UmsRdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.773 [XNIO-1 task-2] D8GNK-jdRpOJkzg4UmsRdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.774 [XNIO-1 task-2] D8GNK-jdRpOJkzg4UmsRdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:40.781 [XNIO-1 task-2] D8GNK-jdRpOJkzg4UmsRdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.786 [XNIO-1 task-2] pa6LaR5BTvuIRt67PQPfvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.786 [XNIO-1 task-2] pa6LaR5BTvuIRt67PQPfvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.787 [XNIO-1 task-2] pa6LaR5BTvuIRt67PQPfvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.787 [XNIO-1 task-2] pa6LaR5BTvuIRt67PQPfvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmNTcxOTYtYTllZi00MTdlLWI3MjAtMWZkM2E5OGJlMDMxOnhsVk16MHVJVEhDdUcxZVFveTFHa2c=", "Basic MzJmNTcxOTYtYTllZi00MTdlLWI3MjAtMWZkM2E5OGJlMDMxOnhsVk16MHVJVEhDdUcxZVFveTFHa2c=", authorization) +20:00:40.793 [XNIO-1 task-2] pa6LaR5BTvuIRt67PQPfvw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.802 [XNIO-1 task-2] vggXjZduTZeW6VhzNu19Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.803 [XNIO-1 task-2] vggXjZduTZeW6VhzNu19Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.804 [XNIO-1 task-2] vggXjZduTZeW6VhzNu19Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.804 [XNIO-1 task-2] vggXjZduTZeW6VhzNu19Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:40.805 [XNIO-1 task-1] o0M80XvsRWO-Tlz-2oPYQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.805 [XNIO-1 task-1] o0M80XvsRWO-Tlz-2oPYQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.808 [XNIO-1 task-4] FDIhuA1rRLC3EpS6ZYu8dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.808 [XNIO-1 task-4] FDIhuA1rRLC3EpS6ZYu8dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.808 [XNIO-1 task-4] FDIhuA1rRLC3EpS6ZYu8dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.808 [XNIO-1 task-4] FDIhuA1rRLC3EpS6ZYu8dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.808 [XNIO-1 task-1] o0M80XvsRWO-Tlz-2oPYQA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzJmNTcxOTYtYTllZi00MTdlLWI3MjAtMWZkM2E5OGJlMDMxOnhsVk16MHVJVEhDdUcxZVFveTFHa2c=", "Basic MzJmNTcxOTYtYTllZi00MTdlLWI3MjAtMWZkM2E5OGJlMDMxOnhsVk16MHVJVEhDdUcxZVFveTFHa2c=", authorization) +20:00:40.809 [XNIO-1 task-4] FDIhuA1rRLC3EpS6ZYu8dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:40.814 [XNIO-1 task-1] o0M80XvsRWO-Tlz-2oPYQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.816 [XNIO-1 task-2] vggXjZduTZeW6VhzNu19Wg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:40.817 [XNIO-1 task-2] vggXjZduTZeW6VhzNu19Wg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.817 [XNIO-1 task-2] vggXjZduTZeW6VhzNu19Wg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.823 [XNIO-1 task-1] JSFGn5_pQD-vmhrZuzQAJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.824 [XNIO-1 task-1] JSFGn5_pQD-vmhrZuzQAJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.825 [XNIO-1 task-1] JSFGn5_pQD-vmhrZuzQAJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.825 [XNIO-1 task-1] JSFGn5_pQD-vmhrZuzQAJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAxNzViYzctMjhjZi00NjY1LWJmMmMtZjMwYWRmZTliZTBkOjJTRUpkV0thUWhLdGlXY2FLVkR1Rnc=", "Basic NTAxNzViYzctMjhjZi00NjY1LWJmMmMtZjMwYWRmZTliZTBkOjJTRUpkV0thUWhLdGlXY2FLVkR1Rnc=", authorization) +20:00:40.833 [XNIO-1 task-4] KiA87fW6Ro-gMe3_jhqMMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.833 [XNIO-1 task-4] KiA87fW6Ro-gMe3_jhqMMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.883 [XNIO-1 task-4] KiA87fW6Ro-gMe3_jhqMMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.884 [XNIO-1 task-4] KiA87fW6Ro-gMe3_jhqMMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:40.886 [XNIO-1 task-1] JSFGn5_pQD-vmhrZuzQAJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.903 [XNIO-1 task-1] _L64rnirQKOJt2uu9lX1aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.903 [XNIO-1 task-1] _L64rnirQKOJt2uu9lX1aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.904 [XNIO-1 task-1] _L64rnirQKOJt2uu9lX1aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.904 [XNIO-1 task-4] KiA87fW6Ro-gMe3_jhqMMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.904 [XNIO-1 task-1] _L64rnirQKOJt2uu9lX1aw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTAxNzViYzctMjhjZi00NjY1LWJmMmMtZjMwYWRmZTliZTBkOjJTRUpkV0thUWhLdGlXY2FLVkR1Rnc=", "Basic NTAxNzViYzctMjhjZi00NjY1LWJmMmMtZjMwYWRmZTliZTBkOjJTRUpkV0thUWhLdGlXY2FLVkR1Rnc=", authorization) +20:00:40.932 [XNIO-1 task-1] _L64rnirQKOJt2uu9lX1aw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.941 [XNIO-1 task-1] pKD5aL8pTvGUZ_hCGPjnMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.941 [XNIO-1 task-1] pKD5aL8pTvGUZ_hCGPjnMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.942 [XNIO-1 task-1] pKD5aL8pTvGUZ_hCGPjnMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.943 [XNIO-1 task-1] pKD5aL8pTvGUZ_hCGPjnMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:40.949 [XNIO-1 task-1] pKD5aL8pTvGUZ_hCGPjnMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.956 [XNIO-1 task-1] _dEFr1dFTvqb5yh1E6OH9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.957 [XNIO-1 task-1] _dEFr1dFTvqb5yh1E6OH9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.957 [XNIO-1 task-1] _dEFr1dFTvqb5yh1E6OH9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.958 [XNIO-1 task-4] b8UggsCCR-alvpC8Eu-0Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.958 [XNIO-1 task-4] b8UggsCCR-alvpC8Eu-0Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.958 [XNIO-1 task-1] _dEFr1dFTvqb5yh1E6OH9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.959 [XNIO-1 task-4] b8UggsCCR-alvpC8Eu-0Ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.959 [XNIO-1 task-4] b8UggsCCR-alvpC8Eu-0Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:40.963 [XNIO-1 task-1] _dEFr1dFTvqb5yh1E6OH9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.965 [XNIO-1 task-2] DSCEwF_pQLSg2RwnTc-WYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.965 [XNIO-1 task-2] DSCEwF_pQLSg2RwnTc-WYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.966 [XNIO-1 task-2] DSCEwF_pQLSg2RwnTc-WYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.966 [XNIO-1 task-2] DSCEwF_pQLSg2RwnTc-WYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:40.969 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:40.973 [XNIO-1 task-4] b8UggsCCR-alvpC8Eu-0Ew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.976 [XNIO-1 task-1] UoM6SXC7SzmwRvr2zvkCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.976 [XNIO-1 task-1] UoM6SXC7SzmwRvr2zvkCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.977 [XNIO-1 task-1] UoM6SXC7SzmwRvr2zvkCTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.978 [XNIO-1 task-1] UoM6SXC7SzmwRvr2zvkCTQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.985 [XNIO-1 task-1] UoM6SXC7SzmwRvr2zvkCTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.988 [XNIO-1 task-4] Gxvoc-M4RbCAQUh_Mkcx0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.988 [XNIO-1 task-4] Gxvoc-M4RbCAQUh_Mkcx0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.988 [XNIO-1 task-4] Gxvoc-M4RbCAQUh_Mkcx0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.988 [XNIO-1 task-4] Gxvoc-M4RbCAQUh_Mkcx0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.989 [XNIO-1 task-4] Gxvoc-M4RbCAQUh_Mkcx0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:40.989 [XNIO-1 task-4] Gxvoc-M4RbCAQUh_Mkcx0g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5345d221-9530-496a-8d9f-ea96f23f798b scope = null +20:00:40.990 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.990 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.990 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:40.990 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.991 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:40.991 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:40.991 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGNkNWU1MmEtOTVjYS00OGU5LWEyODctNmU2NTBjMDYxNGI3OmZZYzVEYjRfUUtDamZCZ0k2c1NWNkE=", "Basic ZGNkNWU1MmEtOTVjYS00OGU5LWEyODctNmU2NTBjMDYxNGI3OmZZYzVEYjRfUUtDamZCZ0k2c1NWNkE=", authorization) +20:00:40.991 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:40.996 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:40.997 [XNIO-1 task-1] uH1vaBf5SfKeqkhjv_gnew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:40.999 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.000 [XNIO-1 task-4] Gxvoc-M4RbCAQUh_Mkcx0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.027 [XNIO-1 task-1] 7aZHXy4wSJS9g7KyDUv2xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.027 [XNIO-1 task-1] 7aZHXy4wSJS9g7KyDUv2xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.027 [XNIO-1 task-1] 7aZHXy4wSJS9g7KyDUv2xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.028 [XNIO-1 task-1] 7aZHXy4wSJS9g7KyDUv2xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:41.034 [XNIO-1 task-1] 7aZHXy4wSJS9g7KyDUv2xQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.053 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a27b088 +20:00:41.058 [XNIO-1 task-1] mqBi0HFxRd-KnUa_lWp3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.058 [XNIO-1 task-1] mqBi0HFxRd-KnUa_lWp3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.058 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a27b088 +20:00:41.058 [XNIO-1 task-1] mqBi0HFxRd-KnUa_lWp3lQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.060 [XNIO-1 task-1] mqBi0HFxRd-KnUa_lWp3lQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.068 [XNIO-1 task-1] mqBi0HFxRd-KnUa_lWp3lQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.086 [XNIO-1 task-1] EwIdQuOWT5SddY4mjp5KlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.086 [XNIO-1 task-1] EwIdQuOWT5SddY4mjp5KlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.087 [XNIO-1 task-1] EwIdQuOWT5SddY4mjp5KlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.087 [XNIO-1 task-1] EwIdQuOWT5SddY4mjp5KlQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.093 [XNIO-1 task-1] EwIdQuOWT5SddY4mjp5KlQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.098 [XNIO-1 task-1] dcgrngKDRyOoKjk1sMNrVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.098 [XNIO-1 task-1] dcgrngKDRyOoKjk1sMNrVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.099 [XNIO-1 task-1] dcgrngKDRyOoKjk1sMNrVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.101 [XNIO-1 task-1] dcgrngKDRyOoKjk1sMNrVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.102 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a27b088 +20:00:41.108 [XNIO-1 task-1] dcgrngKDRyOoKjk1sMNrVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.116 [XNIO-1 task-1] 2zEqXPwBQVOmgOFpvh4H2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.116 [XNIO-1 task-1] 2zEqXPwBQVOmgOFpvh4H2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.120 [XNIO-1 task-1] 2zEqXPwBQVOmgOFpvh4H2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.121 [XNIO-1 task-1] 2zEqXPwBQVOmgOFpvh4H2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.122 [XNIO-1 task-2] k1cGu5TVQcO5I81u4-Gcnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.122 [XNIO-1 task-2] k1cGu5TVQcO5I81u4-Gcnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.122 [XNIO-1 task-2] k1cGu5TVQcO5I81u4-Gcnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.123 [XNIO-1 task-2] k1cGu5TVQcO5I81u4-Gcnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = el2p3mRdSz-S3teoljpXAw redirectUri = http://localhost:8080/authorization +20:00:41.124 [XNIO-1 task-4] rhGnD69fTwG3e0jsRpBT6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.124 [XNIO-1 task-4] rhGnD69fTwG3e0jsRpBT6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.125 [XNIO-1 task-4] rhGnD69fTwG3e0jsRpBT6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.126 [XNIO-1 task-1] 2zEqXPwBQVOmgOFpvh4H2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.127 [XNIO-1 task-4] rhGnD69fTwG3e0jsRpBT6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ce2bd52c-ca88-4ce1-8e07-e30e3030f42b scope = null +20:00:41.134 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7ce167de +20:00:41.135 [XNIO-1 task-1] 4Vlct_WNT5GUsUXJOUQMIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.135 [XNIO-1 task-1] 4Vlct_WNT5GUsUXJOUQMIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.136 [XNIO-1 task-1] 4Vlct_WNT5GUsUXJOUQMIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.136 [XNIO-1 task-1] 4Vlct_WNT5GUsUXJOUQMIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:41.138 [XNIO-1 task-4] rhGnD69fTwG3e0jsRpBT6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.142 [XNIO-1 task-1] 4Vlct_WNT5GUsUXJOUQMIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.143 [XNIO-1 task-2] k1cGu5TVQcO5I81u4-Gcnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:41.143 [XNIO-1 task-2] k1cGu5TVQcO5I81u4-Gcnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.152 [XNIO-1 task-1] 2utysg0zRbOH6LHGuWGfHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.153 [XNIO-1 task-1] 2utysg0zRbOH6LHGuWGfHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.153 [XNIO-1 task-1] 2utysg0zRbOH6LHGuWGfHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.154 [XNIO-1 task-1] 2utysg0zRbOH6LHGuWGfHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.160 [XNIO-1 task-4] RqJg3aEdTti0LVx2y7ncgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.160 [XNIO-1 task-4] RqJg3aEdTti0LVx2y7ncgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.160 [XNIO-1 task-4] RqJg3aEdTti0LVx2y7ncgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.161 [XNIO-1 task-4] RqJg3aEdTti0LVx2y7ncgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.162 [XNIO-1 task-4] RqJg3aEdTti0LVx2y7ncgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 14ad8444-96b8-45be-a88b-0ef04387d3f6 scope = null +20:00:41.173 [XNIO-1 task-1] GDdLCluERH2f1r3RLcHxOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.173 [XNIO-1 task-1] GDdLCluERH2f1r3RLcHxOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.174 [XNIO-1 task-1] GDdLCluERH2f1r3RLcHxOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.175 [XNIO-1 task-1] GDdLCluERH2f1r3RLcHxOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.178 [XNIO-1 task-4] RqJg3aEdTti0LVx2y7ncgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.181 [XNIO-1 task-1] GDdLCluERH2f1r3RLcHxOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.185 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.189 [XNIO-1 task-1] qAYmSRxQQriHVgJLIjvFnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.189 [XNIO-1 task-1] qAYmSRxQQriHVgJLIjvFnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.190 [XNIO-1 task-1] qAYmSRxQQriHVgJLIjvFnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.190 [XNIO-1 task-1] qAYmSRxQQriHVgJLIjvFnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:41.195 [XNIO-1 task-1] qAYmSRxQQriHVgJLIjvFnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.200 [XNIO-1 task-1] f_j1VDEsR7e0YY9STPoZGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.201 [XNIO-1 task-1] f_j1VDEsR7e0YY9STPoZGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.201 [XNIO-1 task-1] f_j1VDEsR7e0YY9STPoZGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.201 [XNIO-1 task-1] f_j1VDEsR7e0YY9STPoZGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.202 [XNIO-1 task-1] f_j1VDEsR7e0YY9STPoZGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:41.207 [XNIO-1 task-1] f_j1VDEsR7e0YY9STPoZGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.215 [XNIO-1 task-1] ZsCQc6DvTi2Fxmv-1cdgcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.215 [XNIO-1 task-1] ZsCQc6DvTi2Fxmv-1cdgcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.215 [XNIO-1 task-1] ZsCQc6DvTi2Fxmv-1cdgcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:41.222 [XNIO-1 task-1] ZsCQc6DvTi2Fxmv-1cdgcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.231 [XNIO-1 task-1] Cgs4ZIVwRKiCfnObhDMFUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.231 [XNIO-1 task-1] Cgs4ZIVwRKiCfnObhDMFUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.232 [XNIO-1 task-1] Cgs4ZIVwRKiCfnObhDMFUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.232 [XNIO-1 task-1] Cgs4ZIVwRKiCfnObhDMFUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.233 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cfa5254c +20:00:41.238 [XNIO-1 task-1] Cgs4ZIVwRKiCfnObhDMFUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.246 [XNIO-1 task-1] hojqaHjcQgWb2P-HecFJpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.246 [XNIO-1 task-1] hojqaHjcQgWb2P-HecFJpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.246 [XNIO-1 task-1] hojqaHjcQgWb2P-HecFJpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.247 [XNIO-1 task-1] hojqaHjcQgWb2P-HecFJpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:41.249 [XNIO-1 task-4] YnIHOBxiREWtJAWewdI5Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.250 [XNIO-1 task-4] YnIHOBxiREWtJAWewdI5Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.250 [XNIO-1 task-4] YnIHOBxiREWtJAWewdI5Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.251 [XNIO-1 task-4] YnIHOBxiREWtJAWewdI5Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.256 [XNIO-1 task-1] hojqaHjcQgWb2P-HecFJpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:41.256 [XNIO-1 task-1] hojqaHjcQgWb2P-HecFJpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.257 [XNIO-1 task-4] YnIHOBxiREWtJAWewdI5Ng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.264 [XNIO-1 task-4] 8NnCGEfJRk-rmc5DSLpVtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.264 [XNIO-1 task-4] 8NnCGEfJRk-rmc5DSLpVtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.264 [XNIO-1 task-4] 8NnCGEfJRk-rmc5DSLpVtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.265 [XNIO-1 task-4] 8NnCGEfJRk-rmc5DSLpVtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.265 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0a27b088 +20:00:41.265 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cfa5254c +20:00:41.270 [XNIO-1 task-4] 8NnCGEfJRk-rmc5DSLpVtg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.275 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7ce167de +20:00:41.278 [XNIO-1 task-4] uC1EnNznRViJMPgGfdfpig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.278 [XNIO-1 task-4] uC1EnNznRViJMPgGfdfpig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.279 [XNIO-1 task-4] uC1EnNznRViJMPgGfdfpig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.280 [XNIO-1 task-4] uC1EnNznRViJMPgGfdfpig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.286 [XNIO-1 task-4] uC1EnNznRViJMPgGfdfpig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.294 [XNIO-1 task-4] _WFmZbRXS3OfdsJ5F_D1dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.294 [XNIO-1 task-4] _WFmZbRXS3OfdsJ5F_D1dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.294 [XNIO-1 task-4] _WFmZbRXS3OfdsJ5F_D1dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.295 [XNIO-1 task-4] _WFmZbRXS3OfdsJ5F_D1dA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.300 [XNIO-1 task-4] _WFmZbRXS3OfdsJ5F_D1dA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.307 [XNIO-1 task-4] cCwmtVriQ5u5w6o_s7ldHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.307 [XNIO-1 task-4] cCwmtVriQ5u5w6o_s7ldHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.308 [XNIO-1 task-4] cCwmtVriQ5u5w6o_s7ldHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.308 [XNIO-1 task-4] cCwmtVriQ5u5w6o_s7ldHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.314 [XNIO-1 task-4] cCwmtVriQ5u5w6o_s7ldHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.318 [XNIO-1 task-4] WaLElk7JTKa8Yt5Okmwx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.318 [XNIO-1 task-4] WaLElk7JTKa8Yt5Okmwx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.319 [XNIO-1 task-4] WaLElk7JTKa8Yt5Okmwx4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.320 [XNIO-1 task-4] WaLElk7JTKa8Yt5Okmwx4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3800a2db-b142-441c-b90d-d405739c8279 scope = null +20:00:41.321 [XNIO-1 task-1] tDq2t6RPTQenGO-D24MpNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.321 [XNIO-1 task-1] tDq2t6RPTQenGO-D24MpNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.321 [XNIO-1 task-1] tDq2t6RPTQenGO-D24MpNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.322 [XNIO-1 task-1] tDq2t6RPTQenGO-D24MpNw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.328 [XNIO-1 task-1] tDq2t6RPTQenGO-D24MpNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.333 [XNIO-1 task-1] 6sAmWWh6Q6CM4mjPspjq1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.333 [XNIO-1 task-1] 6sAmWWh6Q6CM4mjPspjq1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.334 [XNIO-1 task-1] 6sAmWWh6Q6CM4mjPspjq1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.334 [XNIO-1 task-1] 6sAmWWh6Q6CM4mjPspjq1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.342 [XNIO-1 task-1] 6sAmWWh6Q6CM4mjPspjq1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.348 [XNIO-1 task-1] xIjZj__tRkmX10sTcGfdcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.348 [XNIO-1 task-1] xIjZj__tRkmX10sTcGfdcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.349 [XNIO-1 task-1] xIjZj__tRkmX10sTcGfdcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.349 [XNIO-1 task-1] xIjZj__tRkmX10sTcGfdcw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.356 [XNIO-1 task-4] WaLElk7JTKa8Yt5Okmwx4w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.356 [XNIO-1 task-1] xIjZj__tRkmX10sTcGfdcw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.362 [XNIO-1 task-1] F9Yn96AkR4Wf1Kb5SvMVqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.362 [XNIO-1 task-1] F9Yn96AkR4Wf1Kb5SvMVqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.364 [XNIO-1 task-1] F9Yn96AkR4Wf1Kb5SvMVqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.364 [XNIO-1 task-1] F9Yn96AkR4Wf1Kb5SvMVqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.367 [XNIO-1 task-2] Op6Ll1RcTaeBPeKp4XaVug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.367 [XNIO-1 task-2] Op6Ll1RcTaeBPeKp4XaVug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.368 [XNIO-1 task-2] Op6Ll1RcTaeBPeKp4XaVug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.368 [XNIO-1 task-2] Op6Ll1RcTaeBPeKp4XaVug DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = bcyJhNYlR2KNXb_ZW73Org redirectUri = http://localhost:8080/authorization +20:00:41.371 [XNIO-1 task-1] F9Yn96AkR4Wf1Kb5SvMVqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.375 [XNIO-1 task-2] Op6Ll1RcTaeBPeKp4XaVug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.377 [XNIO-1 task-4] fiMUECptRGyGp36bQowEzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.377 [XNIO-1 task-4] fiMUECptRGyGp36bQowEzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.377 [XNIO-1 task-4] fiMUECptRGyGp36bQowEzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.378 [XNIO-1 task-4] fiMUECptRGyGp36bQowEzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +Jun 28, 2024 8:00:41 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +20:00:41.388 [XNIO-1 task-4] wDlsuNqRQnGwuOuMFMLufA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:41.391 [XNIO-1 task-2] vHgo3E7mQbCo4WLN7UrWvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +20:00:41.392 [XNIO-1 task-2] vHgo3E7mQbCo4WLN7UrWvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +20:00:41.395 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +20:00:41.398 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:41.405 [XNIO-1 task-4] wDlsuNqRQnGwuOuMFMLufA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.406 [XNIO-1 task-4] wDlsuNqRQnGwuOuMFMLufA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.414 [XNIO-1 task-2] 3F2Q9ht-Q16C9B2m_MZAKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.414 [XNIO-1 task-2] 3F2Q9ht-Q16C9B2m_MZAKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.416 [XNIO-1 task-2] 3F2Q9ht-Q16C9B2m_MZAKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.416 [XNIO-1 task-2] 3F2Q9ht-Q16C9B2m_MZAKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.424 [XNIO-1 task-2] 3F2Q9ht-Q16C9B2m_MZAKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.442 [XNIO-1 task-2] 0p0teMVbSzGyHyTgo2STVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.442 [XNIO-1 task-2] 0p0teMVbSzGyHyTgo2STVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.443 [XNIO-1 task-2] 0p0teMVbSzGyHyTgo2STVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.443 [XNIO-1 task-2] 0p0teMVbSzGyHyTgo2STVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.449 [XNIO-1 task-2] 0p0teMVbSzGyHyTgo2STVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.460 [XNIO-1 task-2] 6LTSFmy4QzWQuCc8cGMH2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.460 [XNIO-1 task-2] 6LTSFmy4QzWQuCc8cGMH2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.460 [XNIO-1 task-2] 6LTSFmy4QzWQuCc8cGMH2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.461 [XNIO-1 task-2] 6LTSFmy4QzWQuCc8cGMH2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:41.466 [XNIO-1 task-2] 6LTSFmy4QzWQuCc8cGMH2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.475 [XNIO-1 task-2] q950kh-dRbWSeBzVg4QbBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.476 [XNIO-1 task-2] q950kh-dRbWSeBzVg4QbBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.476 [XNIO-1 task-2] q950kh-dRbWSeBzVg4QbBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.477 [XNIO-1 task-2] q950kh-dRbWSeBzVg4QbBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.485 [XNIO-1 task-2] q950kh-dRbWSeBzVg4QbBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.491 [XNIO-1 task-2] FzX39e4tSAiHCpnjMtiaZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.491 [XNIO-1 task-2] FzX39e4tSAiHCpnjMtiaZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.492 [XNIO-1 task-2] FzX39e4tSAiHCpnjMtiaZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.493 [XNIO-1 task-2] FzX39e4tSAiHCpnjMtiaZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.523 [XNIO-1 task-4] OA_8Gf6PQIeLoEcBvEMafg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.523 [XNIO-1 task-4] OA_8Gf6PQIeLoEcBvEMafg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.523 [XNIO-1 task-4] OA_8Gf6PQIeLoEcBvEMafg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.524 [XNIO-1 task-4] OA_8Gf6PQIeLoEcBvEMafg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:41.524 [XNIO-1 task-2] FzX39e4tSAiHCpnjMtiaZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.529 [XNIO-1 task-2] vjr1PbO5T2i9RRAJeZT2Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.529 [XNIO-1 task-2] vjr1PbO5T2i9RRAJeZT2Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.530 [XNIO-1 task-2] vjr1PbO5T2i9RRAJeZT2Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.530 [XNIO-1 task-2] vjr1PbO5T2i9RRAJeZT2Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.537 [XNIO-1 task-2] vjr1PbO5T2i9RRAJeZT2Ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.560 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc426c78 +20:00:41.560 [XNIO-1 task-4] OA_8Gf6PQIeLoEcBvEMafg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.561 [XNIO-1 task-1] x9x-keSvQF-fvEw_G76GWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.561 [XNIO-1 task-1] x9x-keSvQF-fvEw_G76GWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.562 [XNIO-1 task-1] x9x-keSvQF-fvEw_G76GWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.562 [XNIO-1 task-1] x9x-keSvQF-fvEw_G76GWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:41.563 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:add6a8f4-828b-49ad-b650-9cb901d2892b +20:00:41.565 [XNIO-1 task-2] eZNx6bVgQ6qC5VEdLvK53Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.566 [XNIO-1 task-2] eZNx6bVgQ6qC5VEdLvK53Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.567 [XNIO-1 task-2] eZNx6bVgQ6qC5VEdLvK53Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.568 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cc426c78 +20:00:41.570 [XNIO-1 task-2] eZNx6bVgQ6qC5VEdLvK53Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:41.580 [XNIO-1 task-1] x9x-keSvQF-fvEw_G76GWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:41.580 [XNIO-1 task-1] x9x-keSvQF-fvEw_G76GWQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.582 [XNIO-1 task-2] eZNx6bVgQ6qC5VEdLvK53Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.588 [XNIO-1 task-2] nQVKM_qARdKMrAuKcIYT1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.588 [XNIO-1 task-2] nQVKM_qARdKMrAuKcIYT1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.589 [XNIO-1 task-2] nQVKM_qARdKMrAuKcIYT1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.589 [XNIO-1 task-2] nQVKM_qARdKMrAuKcIYT1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.595 [XNIO-1 task-2] nQVKM_qARdKMrAuKcIYT1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.604 [XNIO-1 task-2] BzWK4ZHsTH2uli7vloecLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.604 [XNIO-1 task-2] BzWK4ZHsTH2uli7vloecLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.607 [XNIO-1 task-2] BzWK4ZHsTH2uli7vloecLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.608 [XNIO-1 task-2] BzWK4ZHsTH2uli7vloecLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.613 [XNIO-1 task-2] BzWK4ZHsTH2uli7vloecLA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.623 [XNIO-1 task-1] lYY2GbA4SWCzA2bv84l8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.623 [XNIO-1 task-1] lYY2GbA4SWCzA2bv84l8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.624 [XNIO-1 task-1] lYY2GbA4SWCzA2bv84l8-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.624 [XNIO-1 task-1] lYY2GbA4SWCzA2bv84l8-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.626 [XNIO-1 task-2] 1utGIwL3RvmVO9h65tsMAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.627 [XNIO-1 task-2] 1utGIwL3RvmVO9h65tsMAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.628 [XNIO-1 task-2] 1utGIwL3RvmVO9h65tsMAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.629 [XNIO-1 task-2] 1utGIwL3RvmVO9h65tsMAg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:41.631 [XNIO-1 task-1] lYY2GbA4SWCzA2bv84l8-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.643 [XNIO-1 task-1] Qw87eQyISNe3_m7iwRHVMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.643 [XNIO-1 task-1] Qw87eQyISNe3_m7iwRHVMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.644 [XNIO-1 task-1] Qw87eQyISNe3_m7iwRHVMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.644 [XNIO-1 task-1] Qw87eQyISNe3_m7iwRHVMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:41.649 [XNIO-1 task-1] Qw87eQyISNe3_m7iwRHVMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.653 [XNIO-1 task-2] 1utGIwL3RvmVO9h65tsMAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.659 [XNIO-1 task-1] Ikt_EievSbSYLDC2vIanMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.659 [XNIO-1 task-1] Ikt_EievSbSYLDC2vIanMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.660 [XNIO-1 task-1] Ikt_EievSbSYLDC2vIanMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.660 [XNIO-1 task-1] Ikt_EievSbSYLDC2vIanMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:41.669 [XNIO-1 task-1] Ikt_EievSbSYLDC2vIanMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.678 [XNIO-1 task-2] BDdo2wxuRVSeJ48jgGdoTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.678 [XNIO-1 task-2] BDdo2wxuRVSeJ48jgGdoTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.678 [XNIO-1 task-2] BDdo2wxuRVSeJ48jgGdoTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.678 [XNIO-1 task-1] p4o87Hf1RZeiZ31gIEiBBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.678 [XNIO-1 task-2] BDdo2wxuRVSeJ48jgGdoTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.679 [XNIO-1 task-1] p4o87Hf1RZeiZ31gIEiBBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.679 [XNIO-1 task-2] BDdo2wxuRVSeJ48jgGdoTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:41.680 [XNIO-1 task-1] p4o87Hf1RZeiZ31gIEiBBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:41.685 [XNIO-1 task-2] BDdo2wxuRVSeJ48jgGdoTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.692 [XNIO-1 task-2] Wqsk_sqgQ5uEkD4vhhpAWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.692 [XNIO-1 task-2] Wqsk_sqgQ5uEkD4vhhpAWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.693 [XNIO-1 task-2] Wqsk_sqgQ5uEkD4vhhpAWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.699 [XNIO-1 task-2] Wqsk_sqgQ5uEkD4vhhpAWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:41.693 [XNIO-1 task-1] p4o87Hf1RZeiZ31gIEiBBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.707 [XNIO-1 task-2] Wqsk_sqgQ5uEkD4vhhpAWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.714 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bfbac436 +20:00:41.717 [XNIO-1 task-2] PMRIRiHsRtyuNb45fVex6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.718 [XNIO-1 task-2] PMRIRiHsRtyuNb45fVex6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.718 [XNIO-1 task-2] PMRIRiHsRtyuNb45fVex6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.718 [XNIO-1 task-2] PMRIRiHsRtyuNb45fVex6A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.719 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bfbac436 +20:00:41.724 [XNIO-1 task-2] PMRIRiHsRtyuNb45fVex6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.731 [XNIO-1 task-2] ZOw445ZdRc2tR7o-WMc9Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.731 [XNIO-1 task-2] ZOw445ZdRc2tR7o-WMc9Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.731 [XNIO-1 task-2] ZOw445ZdRc2tR7o-WMc9Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.732 [XNIO-1 task-2] ZOw445ZdRc2tR7o-WMc9Fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.738 [XNIO-1 task-2] ZOw445ZdRc2tR7o-WMc9Fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.748 [XNIO-1 task-2] GfwmJRoJTI2_Mv2MrNXUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.748 [XNIO-1 task-2] GfwmJRoJTI2_Mv2MrNXUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.749 [XNIO-1 task-2] GfwmJRoJTI2_Mv2MrNXUcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.749 [XNIO-1 task-2] GfwmJRoJTI2_Mv2MrNXUcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.762 [XNIO-1 task-2] GfwmJRoJTI2_Mv2MrNXUcA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.766 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7ce167de +20:00:41.767 [XNIO-1 task-2] dfK286ZlSzmUyCbvLo7pHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.768 [XNIO-1 task-2] dfK286ZlSzmUyCbvLo7pHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.769 [XNIO-1 task-2] dfK286ZlSzmUyCbvLo7pHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.769 [XNIO-1 task-2] dfK286ZlSzmUyCbvLo7pHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Aj5WuOCHTb-6BxVcaFoYbg redirectUri = http://localhost:8080/authorization +20:00:41.773 [XNIO-1 task-1] rTd-qbTKR-qz3OWNgTgYXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.773 [XNIO-1 task-1] rTd-qbTKR-qz3OWNgTgYXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.774 [XNIO-1 task-1] rTd-qbTKR-qz3OWNgTgYXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.774 [XNIO-1 task-1] rTd-qbTKR-qz3OWNgTgYXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.779 [XNIO-1 task-2] dfK286ZlSzmUyCbvLo7pHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.780 [XNIO-1 task-1] rTd-qbTKR-qz3OWNgTgYXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.786 [XNIO-1 task-1] EdG9yyGQSL63gmVePAHONg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.786 [XNIO-1 task-1] EdG9yyGQSL63gmVePAHONg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.787 [XNIO-1 task-1] EdG9yyGQSL63gmVePAHONg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.787 [XNIO-1 task-1] EdG9yyGQSL63gmVePAHONg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.792 [XNIO-1 task-1] EdG9yyGQSL63gmVePAHONg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.810 [XNIO-1 task-1] n0Zo-nR1QXiFMb7ZQVOTOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.810 [XNIO-1 task-1] n0Zo-nR1QXiFMb7ZQVOTOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.811 [XNIO-1 task-1] n0Zo-nR1QXiFMb7ZQVOTOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.812 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:82c605f9 +20:00:41.812 [XNIO-1 task-1] n0Zo-nR1QXiFMb7ZQVOTOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.816 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:82c605f9 +20:00:41.838 [XNIO-1 task-1] n0Zo-nR1QXiFMb7ZQVOTOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.843 [XNIO-1 task-1] A531YwgWShyHlFD_jVlZUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.843 [XNIO-1 task-1] A531YwgWShyHlFD_jVlZUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.844 [XNIO-1 task-1] A531YwgWShyHlFD_jVlZUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.844 [XNIO-1 task-1] A531YwgWShyHlFD_jVlZUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0109f7fa-ba3a-4ae8-ad63-039b65d58a8d scope = null +20:00:41.846 [XNIO-1 task-2] z-rclN5WRVWm6gWQBvZMrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.846 [XNIO-1 task-2] z-rclN5WRVWm6gWQBvZMrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.846 [XNIO-1 task-2] z-rclN5WRVWm6gWQBvZMrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.847 [XNIO-1 task-2] z-rclN5WRVWm6gWQBvZMrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.856 [XNIO-1 task-2] z-rclN5WRVWm6gWQBvZMrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.860 [XNIO-1 task-1] A531YwgWShyHlFD_jVlZUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.863 [XNIO-1 task-2] bDv2Y_OjQHmCYmvk3ngVSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.863 [XNIO-1 task-2] bDv2Y_OjQHmCYmvk3ngVSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.864 [XNIO-1 task-2] bDv2Y_OjQHmCYmvk3ngVSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.864 [XNIO-1 task-2] bDv2Y_OjQHmCYmvk3ngVSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.873 [XNIO-1 task-2] bDv2Y_OjQHmCYmvk3ngVSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.883 [XNIO-1 task-2] tyuF1KVpQAaWPZRq1BhfMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.883 [XNIO-1 task-2] tyuF1KVpQAaWPZRq1BhfMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.883 [XNIO-1 task-2] tyuF1KVpQAaWPZRq1BhfMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.885 [XNIO-1 task-2] tyuF1KVpQAaWPZRq1BhfMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.890 [XNIO-1 task-2] tyuF1KVpQAaWPZRq1BhfMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.903 [XNIO-1 task-1] mp9kd_pHTRm2PJ5vwZUVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.903 [XNIO-1 task-1] mp9kd_pHTRm2PJ5vwZUVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.904 [XNIO-1 task-1] mp9kd_pHTRm2PJ5vwZUVrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.905 [XNIO-1 task-1] mp9kd_pHTRm2PJ5vwZUVrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.910 [XNIO-1 task-1] mp9kd_pHTRm2PJ5vwZUVrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.916 [XNIO-1 task-2] GTfuogOdRnm290c5v-gD1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.916 [XNIO-1 task-2] GTfuogOdRnm290c5v-gD1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.917 [XNIO-1 task-2] GTfuogOdRnm290c5v-gD1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.921 [XNIO-1 task-2] GTfuogOdRnm290c5v-gD1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VfIh59FHTJClH0n0sILXPA redirectUri = http://localhost:8080/authorization +20:00:41.923 [XNIO-1 task-1] rLvaG1hmTY-YETCM5T-uHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.924 [XNIO-1 task-1] rLvaG1hmTY-YETCM5T-uHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.924 [XNIO-1 task-1] rLvaG1hmTY-YETCM5T-uHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.925 [XNIO-1 task-1] rLvaG1hmTY-YETCM5T-uHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:41.933 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b8bf151f +20:00:41.933 [XNIO-1 task-2] GTfuogOdRnm290c5v-gD1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.935 [XNIO-1 task-1] rLvaG1hmTY-YETCM5T-uHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.936 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b8bf151f +20:00:41.941 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:63ce6f07 +20:00:41.948 [XNIO-1 task-1] ncs1-bDJTMW5M6E5N4mDpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.949 [XNIO-1 task-1] ncs1-bDJTMW5M6E5N4mDpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.947 [XNIO-1 task-2] 2xy6bfpfTM-MesvXsieD1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.953 [XNIO-1 task-1] ncs1-bDJTMW5M6E5N4mDpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.952 [XNIO-1 task-2] 2xy6bfpfTM-MesvXsieD1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:41.954 [XNIO-1 task-1] ncs1-bDJTMW5M6E5N4mDpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XcCrJKsAQnWXx5Q2NzsI1g redirectUri = http://localhost:8080/authorization +20:00:41.956 [XNIO-1 task-2] 2xy6bfpfTM-MesvXsieD1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.958 [XNIO-1 task-2] 2xy6bfpfTM-MesvXsieD1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:41.985 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0a27b088 +20:00:41.987 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc426c78 +20:00:41.989 [XNIO-1 task-4] gC-FazIVQQGPlGXSRKhtsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.989 [XNIO-1 task-4] gC-FazIVQQGPlGXSRKhtsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.989 [XNIO-1 task-4] gC-FazIVQQGPlGXSRKhtsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:41.990 [XNIO-1 task-4] gC-FazIVQQGPlGXSRKhtsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:41.990 [XNIO-1 task-1] ncs1-bDJTMW5M6E5N4mDpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.991 [XNIO-1 task-2] 2xy6bfpfTM-MesvXsieD1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:41.991 [XNIO-1 task-4] gC-FazIVQQGPlGXSRKhtsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = amh1UGNPRHKY2M4mPaZ1xg redirectUri = http://localhost:8080/authorization +20:00:41.993 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:df45d9a0-ccdf-4c88-9121-2bf8f6b482d8 +20:00:41.999 [XNIO-1 task-4] gC-FazIVQQGPlGXSRKhtsg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:41.999 [XNIO-1 task-2] pA6N1Zp8TyS1yDU6xTomVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.000 [XNIO-1 task-2] pA6N1Zp8TyS1yDU6xTomVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.000 [XNIO-1 task-2] pA6N1Zp8TyS1yDU6xTomVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.001 [XNIO-1 task-2] pA6N1Zp8TyS1yDU6xTomVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:42.007 [XNIO-1 task-2] pA6N1Zp8TyS1yDU6xTomVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.016 [XNIO-1 task-4] KSmpbZqnQ1mr5wSByb4QUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.017 [XNIO-1 task-4] KSmpbZqnQ1mr5wSByb4QUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.017 [XNIO-1 task-4] KSmpbZqnQ1mr5wSByb4QUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.018 [XNIO-1 task-4] KSmpbZqnQ1mr5wSByb4QUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:42.023 [XNIO-1 task-4] KSmpbZqnQ1mr5wSByb4QUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.033 [XNIO-1 task-4] sSoP8Mu-SFqeT7Sy2-EnqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.033 [XNIO-1 task-4] sSoP8Mu-SFqeT7Sy2-EnqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.033 [XNIO-1 task-4] sSoP8Mu-SFqeT7Sy2-EnqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.034 [XNIO-1 task-4] sSoP8Mu-SFqeT7Sy2-EnqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:42.039 [XNIO-1 task-4] sSoP8Mu-SFqeT7Sy2-EnqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.049 [XNIO-1 task-4] 0aiGoLb4Qq-lYCS1nvuHJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.049 [XNIO-1 task-4] 0aiGoLb4Qq-lYCS1nvuHJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.050 [XNIO-1 task-4] 0aiGoLb4Qq-lYCS1nvuHJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.053 [XNIO-1 task-4] 0aiGoLb4Qq-lYCS1nvuHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:42.059 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cc426c78 +20:00:42.059 [XNIO-1 task-4] 0aiGoLb4Qq-lYCS1nvuHJA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.062 [XNIO-1 task-4] zGozxIlsQDajBEq2Kr7RDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.063 [XNIO-1 task-4] zGozxIlsQDajBEq2Kr7RDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.063 [XNIO-1 task-4] zGozxIlsQDajBEq2Kr7RDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.064 [XNIO-1 task-4] zGozxIlsQDajBEq2Kr7RDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:42.064 [XNIO-1 task-1] k-xDhImWTKSNIeYbyZAjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.064 [XNIO-1 task-1] k-xDhImWTKSNIeYbyZAjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.064 [XNIO-1 task-1] k-xDhImWTKSNIeYbyZAjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.065 [XNIO-1 task-1] k-xDhImWTKSNIeYbyZAjSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7d41dd3f-667f-4fe0-ab18-5e3935eb6279 scope = null +20:00:42.070 [XNIO-1 task-2] zd73pMW9RUCvlv2HBRqXYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.070 [XNIO-1 task-2] zd73pMW9RUCvlv2HBRqXYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.071 [XNIO-1 task-2] zd73pMW9RUCvlv2HBRqXYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.071 [XNIO-1 task-2] zd73pMW9RUCvlv2HBRqXYA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:42.076 [XNIO-1 task-1] k-xDhImWTKSNIeYbyZAjSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.078 [XNIO-1 task-2] zd73pMW9RUCvlv2HBRqXYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.079 [XNIO-1 task-4] zGozxIlsQDajBEq2Kr7RDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.079 [XNIO-1 task-4] zGozxIlsQDajBEq2Kr7RDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.082 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:fd052810-c12b-428a-9677-2ad3f95903eb +20:00:42.086 [XNIO-1 task-2] Spa8_OyPS8Wmp89AFrnj8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.086 [XNIO-1 task-2] Spa8_OyPS8Wmp89AFrnj8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.087 [XNIO-1 task-2] Spa8_OyPS8Wmp89AFrnj8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.087 [XNIO-1 task-2] Spa8_OyPS8Wmp89AFrnj8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:42.088 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:82c605f9 +20:00:42.089 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.090 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.090 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.090 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:42.093 [XNIO-1 task-4] dOWPiYqYTeOfC2lNfTOzCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.094 [XNIO-1 task-4] dOWPiYqYTeOfC2lNfTOzCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.094 [XNIO-1 task-4] dOWPiYqYTeOfC2lNfTOzCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.095 [XNIO-1 task-4] dOWPiYqYTeOfC2lNfTOzCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:42.098 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.098 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q INFO com.networknt.config.Config getConfigStream - Unable to load config from externalized folder for status.yml in /config +20:00:42.099 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q INFO com.networknt.config.Config getConfigStream - Config loaded from default folder for status.yml +20:00:42.125 [XNIO-1 task-2] Spa8_OyPS8Wmp89AFrnj8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.129 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e1292dbf +20:00:42.131 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e1292dbf +20:00:42.131 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cc426c78 +20:00:42.135 [XNIO-1 task-1] 98CfqlUOT0qtlUjyaJV-7Q ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.144 [XNIO-1 task-4] KgGQ_gf3RQedxsYpEn7PWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.144 [XNIO-1 task-4] KgGQ_gf3RQedxsYpEn7PWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.145 [XNIO-1 task-4] KgGQ_gf3RQedxsYpEn7PWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.145 [XNIO-1 task-4] KgGQ_gf3RQedxsYpEn7PWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.147 [XNIO-1 task-1] ougVQHHuQNqbqklp5xxk0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.147 [XNIO-1 task-1] ougVQHHuQNqbqklp5xxk0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.148 [XNIO-1 task-1] ougVQHHuQNqbqklp5xxk0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.148 [XNIO-1 task-1] ougVQHHuQNqbqklp5xxk0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 772d14bb-6f5d-4a93-ab54-b6803fa4cb3f scope = null +20:00:42.150 [XNIO-1 task-4] KgGQ_gf3RQedxsYpEn7PWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.158 [XNIO-1 task-4] 3CvnCvi4RnCzgf2bAkg4Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.158 [XNIO-1 task-4] 3CvnCvi4RnCzgf2bAkg4Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.159 [XNIO-1 task-4] 3CvnCvi4RnCzgf2bAkg4Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.159 [XNIO-1 task-4] 3CvnCvi4RnCzgf2bAkg4Bw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.164 [XNIO-1 task-1] ougVQHHuQNqbqklp5xxk0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.166 [XNIO-1 task-4] 3CvnCvi4RnCzgf2bAkg4Bw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.170 [XNIO-1 task-4] otikCzxVRVyOaqB1ni0Bcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.171 [XNIO-1 task-4] otikCzxVRVyOaqB1ni0Bcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.171 [XNIO-1 task-4] otikCzxVRVyOaqB1ni0Bcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.172 [XNIO-1 task-4] otikCzxVRVyOaqB1ni0Bcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.177 [XNIO-1 task-4] otikCzxVRVyOaqB1ni0Bcg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.184 [XNIO-1 task-4] 7-8FK-32QOOsN6RZI6WGfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.184 [XNIO-1 task-4] 7-8FK-32QOOsN6RZI6WGfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.185 [XNIO-1 task-4] 7-8FK-32QOOsN6RZI6WGfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.185 [XNIO-1 task-4] 7-8FK-32QOOsN6RZI6WGfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.191 [XNIO-1 task-4] 7-8FK-32QOOsN6RZI6WGfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.210 [XNIO-1 task-4] pL7RlSBxT9qIRzK4zjLZBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.210 [XNIO-1 task-4] pL7RlSBxT9qIRzK4zjLZBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.210 [XNIO-1 task-4] pL7RlSBxT9qIRzK4zjLZBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.211 [XNIO-1 task-4] pL7RlSBxT9qIRzK4zjLZBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.216 [XNIO-1 task-4] pL7RlSBxT9qIRzK4zjLZBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.223 [XNIO-1 task-4] ItO4785YQXCG1-fbiE9Ycw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.223 [XNIO-1 task-4] ItO4785YQXCG1-fbiE9Ycw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.223 [XNIO-1 task-4] ItO4785YQXCG1-fbiE9Ycw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.224 [XNIO-1 task-4] ItO4785YQXCG1-fbiE9Ycw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.229 [XNIO-1 task-4] ItO4785YQXCG1-fbiE9Ycw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.235 [XNIO-1 task-4] KKWffSqYQvihcjfda7Perg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.235 [XNIO-1 task-4] KKWffSqYQvihcjfda7Perg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.236 [XNIO-1 task-4] KKWffSqYQvihcjfda7Perg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.236 [XNIO-1 task-4] KKWffSqYQvihcjfda7Perg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.242 [XNIO-1 task-1] CSZVno5fTv6V2rlYeFLGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.242 [XNIO-1 task-1] CSZVno5fTv6V2rlYeFLGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.243 [XNIO-1 task-1] CSZVno5fTv6V2rlYeFLGpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.243 [XNIO-1 task-1] CSZVno5fTv6V2rlYeFLGpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fa7c5c7a-3d8c-4ce4-bda7-994bfbf3c82a scope = null +20:00:42.246 [XNIO-1 task-4] KKWffSqYQvihcjfda7Perg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.251 [XNIO-1 task-4] 8NdXeUl8Rmig1WQ2T03Amw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.251 [XNIO-1 task-4] 8NdXeUl8Rmig1WQ2T03Amw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.252 [XNIO-1 task-4] 8NdXeUl8Rmig1WQ2T03Amw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.252 [XNIO-1 task-4] 8NdXeUl8Rmig1WQ2T03Amw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.258 [XNIO-1 task-4] 8NdXeUl8Rmig1WQ2T03Amw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.265 [XNIO-1 task-2] nh1n01LHQAm02VX4pmkDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.265 [XNIO-1 task-2] nh1n01LHQAm02VX4pmkDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.266 [XNIO-1 task-2] nh1n01LHQAm02VX4pmkDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.266 [XNIO-1 task-4] qwt3zMpqRlWCcrswqwhKRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.266 [XNIO-1 task-4] qwt3zMpqRlWCcrswqwhKRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.266 [XNIO-1 task-2] nh1n01LHQAm02VX4pmkDDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 7QWmJTVjQkKZHwbzUlX6Jw redirectUri = http://localhost:8080/authorization +20:00:42.267 [XNIO-1 task-4] qwt3zMpqRlWCcrswqwhKRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.267 [XNIO-1 task-4] qwt3zMpqRlWCcrswqwhKRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.271 [XNIO-1 task-1] CSZVno5fTv6V2rlYeFLGpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.273 [XNIO-1 task-4] qwt3zMpqRlWCcrswqwhKRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.274 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e84ab2f5-725a-45f8-86e7-7828f531bc28 +20:00:42.282 [XNIO-1 task-2] nh1n01LHQAm02VX4pmkDDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.283 [XNIO-1 task-2] nh1n01LHQAm02VX4pmkDDA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.283 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc426c78 +20:00:42.283 [XNIO-1 task-1] s97o7GCmQ3KqU_5pK1JCmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.284 [XNIO-1 task-1] s97o7GCmQ3KqU_5pK1JCmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.285 [XNIO-1 task-1] s97o7GCmQ3KqU_5pK1JCmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.285 [XNIO-1 task-1] s97o7GCmQ3KqU_5pK1JCmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.291 [XNIO-1 task-1] s97o7GCmQ3KqU_5pK1JCmQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.297 [XNIO-1 task-2] SJEtplbXSD2y_YEecrYPeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.297 [XNIO-1 task-2] SJEtplbXSD2y_YEecrYPeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.297 [XNIO-1 task-2] SJEtplbXSD2y_YEecrYPeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.298 [XNIO-1 task-2] SJEtplbXSD2y_YEecrYPeA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.307 [XNIO-1 task-2] SJEtplbXSD2y_YEecrYPeA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.318 [XNIO-1 task-2] 2t52_-3DQ8qZFEUTpBchIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.318 [XNIO-1 task-2] 2t52_-3DQ8qZFEUTpBchIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.319 [XNIO-1 task-2] 2t52_-3DQ8qZFEUTpBchIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.319 [XNIO-1 task-2] 2t52_-3DQ8qZFEUTpBchIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.325 [XNIO-1 task-2] 2t52_-3DQ8qZFEUTpBchIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.331 [XNIO-1 task-2] K0mh-x0LStCWOy7GiuANGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.331 [XNIO-1 task-2] K0mh-x0LStCWOy7GiuANGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.331 [XNIO-1 task-2] K0mh-x0LStCWOy7GiuANGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.332 [XNIO-1 task-2] K0mh-x0LStCWOy7GiuANGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.337 [XNIO-1 task-2] K0mh-x0LStCWOy7GiuANGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.345 [XNIO-1 task-2] _nJIBAfVSGiLMK1cApFNJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.345 [XNIO-1 task-2] _nJIBAfVSGiLMK1cApFNJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.345 [XNIO-1 task-2] _nJIBAfVSGiLMK1cApFNJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.346 [XNIO-1 task-2] _nJIBAfVSGiLMK1cApFNJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.351 [XNIO-1 task-2] _nJIBAfVSGiLMK1cApFNJA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.358 [XNIO-1 task-2] lcvlX0AuR5idehywJ-dHzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.358 [XNIO-1 task-2] lcvlX0AuR5idehywJ-dHzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.359 [XNIO-1 task-2] lcvlX0AuR5idehywJ-dHzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.359 [XNIO-1 task-2] lcvlX0AuR5idehywJ-dHzw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.365 [XNIO-1 task-2] lcvlX0AuR5idehywJ-dHzw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.371 [XNIO-1 task-2] kDtQeP7PSAmmIs8FRQSwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.371 [XNIO-1 task-2] kDtQeP7PSAmmIs8FRQSwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.372 [XNIO-1 task-2] kDtQeP7PSAmmIs8FRQSwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.372 [XNIO-1 task-2] kDtQeP7PSAmmIs8FRQSwxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.388 [XNIO-1 task-2] kDtQeP7PSAmmIs8FRQSwxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.398 [XNIO-1 task-2] xcwdY1k7QWOAew48QnMf3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.398 [XNIO-1 task-2] xcwdY1k7QWOAew48QnMf3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.399 [XNIO-1 task-2] xcwdY1k7QWOAew48QnMf3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.399 [XNIO-1 task-2] xcwdY1k7QWOAew48QnMf3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.405 [XNIO-1 task-2] xcwdY1k7QWOAew48QnMf3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.412 [XNIO-1 task-2] jOwT4B4eS4S24vJhRQRg0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.412 [XNIO-1 task-2] jOwT4B4eS4S24vJhRQRg0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.413 [XNIO-1 task-2] jOwT4B4eS4S24vJhRQRg0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.414 [XNIO-1 task-2] jOwT4B4eS4S24vJhRQRg0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.416 [XNIO-1 task-1] i74uDkr6SGODwXWgIl2_9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.416 [XNIO-1 task-1] i74uDkr6SGODwXWgIl2_9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.416 [XNIO-1 task-1] i74uDkr6SGODwXWgIl2_9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.417 [XNIO-1 task-1] i74uDkr6SGODwXWgIl2_9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = LbgQ0D4jShmut3ato0nCYQ redirectUri = http://localhost:8080/authorization +20:00:42.420 [XNIO-1 task-2] jOwT4B4eS4S24vJhRQRg0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.427 [XNIO-1 task-2] kY_eMKyTR0GalQZ3-ceMYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.427 [XNIO-1 task-2] kY_eMKyTR0GalQZ3-ceMYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.427 [XNIO-1 task-2] kY_eMKyTR0GalQZ3-ceMYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.428 [XNIO-1 task-2] kY_eMKyTR0GalQZ3-ceMYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.434 [XNIO-1 task-2] kY_eMKyTR0GalQZ3-ceMYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.441 [XNIO-1 task-2] fwAQlkDqQ4es-VHLx8KwHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.441 [XNIO-1 task-2] fwAQlkDqQ4es-VHLx8KwHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.441 [XNIO-1 task-1] i74uDkr6SGODwXWgIl2_9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.441 [XNIO-1 task-2] fwAQlkDqQ4es-VHLx8KwHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.444 [XNIO-1 task-2] fwAQlkDqQ4es-VHLx8KwHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:42.446 [XNIO-1 task-4] Mtfs4pQrR3OibyrrfHLfxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.446 [XNIO-1 task-4] Mtfs4pQrR3OibyrrfHLfxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.447 [XNIO-1 task-4] Mtfs4pQrR3OibyrrfHLfxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.447 [XNIO-1 task-4] Mtfs4pQrR3OibyrrfHLfxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:42.450 [XNIO-1 task-2] fwAQlkDqQ4es-VHLx8KwHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.456 [XNIO-1 task-2] 22e5ZkuaSc-IMPb1_5Y1Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.457 [XNIO-1 task-4] Mtfs4pQrR3OibyrrfHLfxw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.457 [XNIO-1 task-2] 22e5ZkuaSc-IMPb1_5Y1Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.457 [XNIO-1 task-4] Mtfs4pQrR3OibyrrfHLfxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.457 [XNIO-1 task-2] 22e5ZkuaSc-IMPb1_5Y1Gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.458 [XNIO-1 task-2] 22e5ZkuaSc-IMPb1_5Y1Gw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.459 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c2ddb3ff-bc17-4cd0-819c-0d95586d7dae +20:00:42.464 [XNIO-1 task-2] 22e5ZkuaSc-IMPb1_5Y1Gw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.480 [XNIO-1 task-2] eiLP6zJXQxS_WIhQ_uaVEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.481 [XNIO-1 task-2] eiLP6zJXQxS_WIhQ_uaVEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.481 [XNIO-1 task-2] eiLP6zJXQxS_WIhQ_uaVEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.482 [XNIO-1 task-2] eiLP6zJXQxS_WIhQ_uaVEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", authorization) +20:00:42.493 [XNIO-1 task-2] eiLP6zJXQxS_WIhQ_uaVEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.499 [XNIO-1 task-2] f693OYMRQomHXBzxps3_9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.499 [XNIO-1 task-2] f693OYMRQomHXBzxps3_9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.501 [XNIO-1 task-2] f693OYMRQomHXBzxps3_9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.502 [XNIO-1 task-2] f693OYMRQomHXBzxps3_9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", authorization) +20:00:42.507 [XNIO-1 task-2] f693OYMRQomHXBzxps3_9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.516 [XNIO-1 task-2] -YYjWxQURvqUcUmyPy56Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.516 [XNIO-1 task-2] -YYjWxQURvqUcUmyPy56Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.516 [XNIO-1 task-2] -YYjWxQURvqUcUmyPy56Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.517 [XNIO-1 task-2] -YYjWxQURvqUcUmyPy56Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:42.523 [XNIO-1 task-2] -YYjWxQURvqUcUmyPy56Bg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.531 [XNIO-1 task-2] zF3HUMgPQnW8NhF7RfPvxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.531 [XNIO-1 task-2] zF3HUMgPQnW8NhF7RfPvxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.532 [XNIO-1 task-2] zF3HUMgPQnW8NhF7RfPvxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.532 [XNIO-1 task-2] zF3HUMgPQnW8NhF7RfPvxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:42.539 [XNIO-1 task-2] zF3HUMgPQnW8NhF7RfPvxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.540 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e1292dbf +20:00:42.544 [XNIO-1 task-2] HdUdYjwYSECsnZe2G-tpIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.544 [XNIO-1 task-2] HdUdYjwYSECsnZe2G-tpIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.544 [XNIO-1 task-2] HdUdYjwYSECsnZe2G-tpIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.545 [XNIO-1 task-2] HdUdYjwYSECsnZe2G-tpIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:42.550 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:63ce6f07 +20:00:42.550 [XNIO-1 task-2] HdUdYjwYSECsnZe2G-tpIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.551 [XNIO-1 task-4] hZluICUtTumUckJmu3ob4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.551 [XNIO-1 task-4] hZluICUtTumUckJmu3ob4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.552 [XNIO-1 task-4] hZluICUtTumUckJmu3ob4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.552 [XNIO-1 task-4] hZluICUtTumUckJmu3ob4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:42.555 [XNIO-1 task-2] jtLp-KI_QGeLuTtw45FTzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.555 [XNIO-1 task-2] jtLp-KI_QGeLuTtw45FTzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.556 [XNIO-1 task-2] jtLp-KI_QGeLuTtw45FTzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.556 [XNIO-1 task-2] jtLp-KI_QGeLuTtw45FTzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:42.561 [XNIO-1 task-2] jtLp-KI_QGeLuTtw45FTzQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.571 [XNIO-1 task-2] a3v9KZpVQGqCl_uvT3SbTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.572 [XNIO-1 task-2] a3v9KZpVQGqCl_uvT3SbTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.572 [XNIO-1 task-2] a3v9KZpVQGqCl_uvT3SbTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.573 [XNIO-1 task-2] a3v9KZpVQGqCl_uvT3SbTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:42.569 [XNIO-1 task-4] hZluICUtTumUckJmu3ob4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.575 [XNIO-1 task-4] hZluICUtTumUckJmu3ob4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.577 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7b750f05-0b92-4b82-80bb-1b698fc29d04 +20:00:42.580 [XNIO-1 task-2] a3v9KZpVQGqCl_uvT3SbTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.585 [XNIO-1 task-4] f2C-BsIDSLGTHB-WQy3A6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.585 [XNIO-1 task-4] f2C-BsIDSLGTHB-WQy3A6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.586 [XNIO-1 task-4] f2C-BsIDSLGTHB-WQy3A6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.586 [XNIO-1 task-4] f2C-BsIDSLGTHB-WQy3A6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.588 [XNIO-1 task-2] NQc_YBn_S-GWChVXKWCiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.588 [XNIO-1 task-2] NQc_YBn_S-GWChVXKWCiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.589 [XNIO-1 task-2] NQc_YBn_S-GWChVXKWCiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.590 [XNIO-1 task-2] NQc_YBn_S-GWChVXKWCiEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 7b750f05-0b92-4b82-80bb-1b698fc29d04 scope = null +20:00:42.592 [XNIO-1 task-4] f2C-BsIDSLGTHB-WQy3A6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.597 [XNIO-1 task-4] IeoJAt5pReqcFuGGWz6pUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.597 [XNIO-1 task-4] IeoJAt5pReqcFuGGWz6pUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.598 [XNIO-1 task-4] IeoJAt5pReqcFuGGWz6pUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.598 [XNIO-1 task-4] IeoJAt5pReqcFuGGWz6pUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmQwNTI4MTAtYzEyYi00MjhhLTk2NzctMmFkM2Y5NTkwM2ViOnlhQ3cwN3RkU1d5ZEN5ZnZBZWlXd3c=", "Basic ZmQwNTI4MTAtYzEyYi00MjhhLTk2NzctMmFkM2Y5NTkwM2ViOnlhQ3cwN3RkU1d5ZEN5ZnZBZWlXd3c=", authorization) +20:00:42.603 [XNIO-1 task-2] NQc_YBn_S-GWChVXKWCiEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.604 [XNIO-1 task-4] IeoJAt5pReqcFuGGWz6pUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.606 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ae809357-5e96-43f0-a50e-eea922e137be +20:00:42.607 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ae809357-5e96-43f0-a50e-eea922e137be +20:00:42.610 [XNIO-1 task-4] bt-gzqK0T0e6NKEC3mqdUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.610 [XNIO-1 task-4] bt-gzqK0T0e6NKEC3mqdUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.611 [XNIO-1 task-4] bt-gzqK0T0e6NKEC3mqdUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.611 [XNIO-1 task-4] bt-gzqK0T0e6NKEC3mqdUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.616 [XNIO-1 task-4] bt-gzqK0T0e6NKEC3mqdUw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.624 [XNIO-1 task-4] RGlzHBQ3R5SIGBjKXMzfjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.624 [XNIO-1 task-4] RGlzHBQ3R5SIGBjKXMzfjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.625 [XNIO-1 task-4] RGlzHBQ3R5SIGBjKXMzfjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.627 [XNIO-1 task-4] RGlzHBQ3R5SIGBjKXMzfjw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.629 [XNIO-1 task-2] 3C_IiJVnSOObuHHbl7p9gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.629 [XNIO-1 task-2] 3C_IiJVnSOObuHHbl7p9gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.629 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc426c78 +20:00:42.630 [XNIO-1 task-2] 3C_IiJVnSOObuHHbl7p9gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.630 [XNIO-1 task-2] 3C_IiJVnSOObuHHbl7p9gw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OFdHoJsxSPG51XmzcDTtIA redirectUri = http://localhost:8080/authorization +20:00:42.633 [XNIO-1 task-4] RGlzHBQ3R5SIGBjKXMzfjw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.642 [XNIO-1 task-4] eTdauVjMRZOIbfQrSKbY5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.642 [XNIO-1 task-4] eTdauVjMRZOIbfQrSKbY5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.641 [XNIO-1 task-2] 3C_IiJVnSOObuHHbl7p9gw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.642 [XNIO-1 task-2] 3C_IiJVnSOObuHHbl7p9gw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.642 [XNIO-1 task-4] eTdauVjMRZOIbfQrSKbY5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:42.650 [XNIO-1 task-4] eTdauVjMRZOIbfQrSKbY5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.657 [XNIO-1 task-4] zqsi6tQkS9KYaQucWFvpLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.657 [XNIO-1 task-4] zqsi6tQkS9KYaQucWFvpLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.658 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cc426c78 +20:00:42.658 [XNIO-1 task-4] zqsi6tQkS9KYaQucWFvpLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.658 [XNIO-1 task-4] zqsi6tQkS9KYaQucWFvpLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:42.664 [XNIO-1 task-4] zqsi6tQkS9KYaQucWFvpLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.669 [XNIO-1 task-4] FVOSENfTSDiOWHM9AzP8LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.669 [XNIO-1 task-4] FVOSENfTSDiOWHM9AzP8LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.669 [XNIO-1 task-4] FVOSENfTSDiOWHM9AzP8LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.670 [XNIO-1 task-4] FVOSENfTSDiOWHM9AzP8LA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:42.672 [XNIO-1 task-2] oEfuKSr1QI-sUBL0wCTA8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.672 [XNIO-1 task-2] oEfuKSr1QI-sUBL0wCTA8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.672 [XNIO-1 task-2] oEfuKSr1QI-sUBL0wCTA8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.673 [XNIO-1 task-2] oEfuKSr1QI-sUBL0wCTA8w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:42.677 [XNIO-1 task-4] FVOSENfTSDiOWHM9AzP8LA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.677 [XNIO-1 task-4] FVOSENfTSDiOWHM9AzP8LA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.679 [XNIO-1 task-2] oEfuKSr1QI-sUBL0wCTA8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.685 [XNIO-1 task-2] 3srqUKFFQW6PRuGDezDQNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.685 [XNIO-1 task-2] 3srqUKFFQW6PRuGDezDQNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.686 [XNIO-1 task-2] 3srqUKFFQW6PRuGDezDQNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.686 [XNIO-1 task-2] 3srqUKFFQW6PRuGDezDQNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.693 [XNIO-1 task-2] 3srqUKFFQW6PRuGDezDQNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.700 [XNIO-1 task-2] 0MtBNsuQQC--Qa8B3ci12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.700 [XNIO-1 task-4] 3z5vuzOyS_ecoYYrz4UJyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.700 [XNIO-1 task-4] 3z5vuzOyS_ecoYYrz4UJyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.700 [XNIO-1 task-4] 3z5vuzOyS_ecoYYrz4UJyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.701 [XNIO-1 task-2] 0MtBNsuQQC--Qa8B3ci12A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.701 [XNIO-1 task-4] 3z5vuzOyS_ecoYYrz4UJyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.701 [XNIO-1 task-4] 3z5vuzOyS_ecoYYrz4UJyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:42.701 [XNIO-1 task-4] 3z5vuzOyS_ecoYYrz4UJyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ae809357-5e96-43f0-a50e-eea922e137be scope = null +20:00:42.720 [XNIO-1 task-2] 0MtBNsuQQC--Qa8B3ci12A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.719 [XNIO-1 task-4] 3z5vuzOyS_ecoYYrz4UJyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.726 [XNIO-1 task-2] qF0o8Zu4TzmkTKlhRLhuXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.727 [XNIO-1 task-2] qF0o8Zu4TzmkTKlhRLhuXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.727 [XNIO-1 task-2] qF0o8Zu4TzmkTKlhRLhuXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.728 [XNIO-1 task-2] qF0o8Zu4TzmkTKlhRLhuXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:42.730 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fd052810-c12b-428a-9677-2ad3f95903eb +20:00:42.738 [XNIO-1 task-2] qF0o8Zu4TzmkTKlhRLhuXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.741 [XNIO-1 task-4] uE0bp9wER_mmg0d5q5oa-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.742 [XNIO-1 task-4] uE0bp9wER_mmg0d5q5oa-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.743 [XNIO-1 task-4] uE0bp9wER_mmg0d5q5oa-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.744 [XNIO-1 task-4] uE0bp9wER_mmg0d5q5oa-A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9e5be597-2d73-41d3-8270-7055fd8c1a46 scope = null +20:00:42.749 [XNIO-1 task-2] zJpAlbiNQIOWRn2t7ceXzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.749 [XNIO-1 task-2] zJpAlbiNQIOWRn2t7ceXzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.749 [XNIO-1 task-2] zJpAlbiNQIOWRn2t7ceXzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.750 [XNIO-1 task-2] zJpAlbiNQIOWRn2t7ceXzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.751 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cc426c78 +20:00:42.754 [XNIO-1 task-4] uE0bp9wER_mmg0d5q5oa-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.756 [XNIO-1 task-2] zJpAlbiNQIOWRn2t7ceXzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.763 [XNIO-1 task-2] Jm_eSXBkR5K7FfttqPLf3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.763 [XNIO-1 task-2] Jm_eSXBkR5K7FfttqPLf3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.763 [XNIO-1 task-2] Jm_eSXBkR5K7FfttqPLf3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.764 [XNIO-1 task-2] Jm_eSXBkR5K7FfttqPLf3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.773 [XNIO-1 task-2] Jm_eSXBkR5K7FfttqPLf3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.779 [XNIO-1 task-2] L9wCbMZ8TiaaeEFo9Kcw2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.779 [XNIO-1 task-2] L9wCbMZ8TiaaeEFo9Kcw2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.781 [XNIO-1 task-2] L9wCbMZ8TiaaeEFo9Kcw2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.781 [XNIO-1 task-2] L9wCbMZ8TiaaeEFo9Kcw2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.793 [XNIO-1 task-2] L9wCbMZ8TiaaeEFo9Kcw2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.796 [XNIO-1 task-2] txJl1pzVTiaYqIw0u0t7JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.796 [XNIO-1 task-2] txJl1pzVTiaYqIw0u0t7JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.797 [XNIO-1 task-2] txJl1pzVTiaYqIw0u0t7JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.797 [XNIO-1 task-2] txJl1pzVTiaYqIw0u0t7JQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = JiOAxXDjTRe337kKVP_8Ow redirectUri = http://localhost:8080/authorization +20:00:42.803 [XNIO-1 task-4] 6U2XzCpZSqK6R5X57h6njw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.803 [XNIO-1 task-4] 6U2XzCpZSqK6R5X57h6njw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.804 [XNIO-1 task-4] 6U2XzCpZSqK6R5X57h6njw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.804 [XNIO-1 task-4] 6U2XzCpZSqK6R5X57h6njw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.806 [XNIO-1 task-2] txJl1pzVTiaYqIw0u0t7JQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.810 [XNIO-1 task-4] 6U2XzCpZSqK6R5X57h6njw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.818 [XNIO-1 task-4] -L4RoufkSwWvrPOpo6-w3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.818 [XNIO-1 task-4] -L4RoufkSwWvrPOpo6-w3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.818 [XNIO-1 task-4] -L4RoufkSwWvrPOpo6-w3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.819 [XNIO-1 task-4] -L4RoufkSwWvrPOpo6-w3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:42.824 [XNIO-1 task-4] -L4RoufkSwWvrPOpo6-w3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.834 [XNIO-1 task-4] WXRyxyxvRSm26G1vtdRHdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.834 [XNIO-1 task-4] WXRyxyxvRSm26G1vtdRHdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.835 [XNIO-1 task-4] WXRyxyxvRSm26G1vtdRHdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.835 [XNIO-1 task-4] WXRyxyxvRSm26G1vtdRHdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:42.837 [XNIO-1 task-1] 5zeaqJZ-R0CTKuqPxE2OsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.837 [XNIO-1 task-1] 5zeaqJZ-R0CTKuqPxE2OsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.838 [XNIO-1 task-1] 5zeaqJZ-R0CTKuqPxE2OsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.838 [XNIO-1 task-1] 5zeaqJZ-R0CTKuqPxE2OsA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", authorization) +20:00:42.842 [XNIO-1 task-4] WXRyxyxvRSm26G1vtdRHdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.847 [XNIO-1 task-4] SAtGpo7QQW-c-dZvCDrcYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.847 [XNIO-1 task-4] SAtGpo7QQW-c-dZvCDrcYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.847 [XNIO-1 task-4] SAtGpo7QQW-c-dZvCDrcYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.847 [XNIO-1 task-4] SAtGpo7QQW-c-dZvCDrcYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:42.850 [XNIO-1 task-2] xgvSsJreRky5kjZr3R35Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.850 [XNIO-1 task-2] xgvSsJreRky5kjZr3R35Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.850 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:42703ce5 +20:00:42.851 [XNIO-1 task-2] xgvSsJreRky5kjZr3R35Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.851 [XNIO-1 task-2] xgvSsJreRky5kjZr3R35Zw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.852 [XNIO-1 task-1] 5zeaqJZ-R0CTKuqPxE2OsA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.854 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:42703ce5 +20:00:42.857 [XNIO-1 task-4] SAtGpo7QQW-c-dZvCDrcYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:42.858 [XNIO-1 task-4] SAtGpo7QQW-c-dZvCDrcYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.863 [XNIO-1 task-2] xgvSsJreRky5kjZr3R35Zw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.864 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e1292dbf +20:00:42.871 [XNIO-1 task-4] VnZepErOSVSKo_qDsJfdfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.871 [XNIO-1 task-4] VnZepErOSVSKo_qDsJfdfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.872 [XNIO-1 task-1] kOXlHbaTQIm23pu2mywJaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.872 [XNIO-1 task-4] VnZepErOSVSKo_qDsJfdfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.872 [XNIO-1 task-4] VnZepErOSVSKo_qDsJfdfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.872 [XNIO-1 task-1] kOXlHbaTQIm23pu2mywJaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.872 [XNIO-1 task-4] VnZepErOSVSKo_qDsJfdfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b7ccface-d154-4cfa-a5bf-4fc40cef31c7 scope = null +20:00:42.873 [XNIO-1 task-1] kOXlHbaTQIm23pu2mywJaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:42.909 [XNIO-1 task-1] kOXlHbaTQIm23pu2mywJaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.911 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b8bf151f +20:00:42.911 [XNIO-1 task-2] fOSBq8O9TBCvsyhqF9ZJRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.913 [XNIO-1 task-2] fOSBq8O9TBCvsyhqF9ZJRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.914 [XNIO-1 task-2] fOSBq8O9TBCvsyhqF9ZJRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.914 [XNIO-1 task-2] fOSBq8O9TBCvsyhqF9ZJRg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8s9P9TOrRZuNDn6EzEkLlw redirectUri = http://localhost:8080/authorization +20:00:42.917 [XNIO-1 task-1] 8TkucInUTDK9XHeCfw_5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.917 [XNIO-1 task-1] 8TkucInUTDK9XHeCfw_5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.918 [XNIO-1 task-1] 8TkucInUTDK9XHeCfw_5aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:42.919 [XNIO-1 task-4] VnZepErOSVSKo_qDsJfdfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.919 [XNIO-1 task-4] VnZepErOSVSKo_qDsJfdfA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:42.922 [XNIO-1 task-2] fOSBq8O9TBCvsyhqF9ZJRg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) +Jun 28, 2024 8:00:42 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:42.924 [XNIO-1 task-1] 8TkucInUTDK9XHeCfw_5aQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:42.943 [XNIO-1 task-4] G6xpoZOIQM6Gz5x077LYmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.943 [XNIO-1 task-4] G6xpoZOIQM6Gz5x077LYmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.943 [XNIO-1 task-4] G6xpoZOIQM6Gz5x077LYmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.944 [XNIO-1 task-4] G6xpoZOIQM6Gz5x077LYmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:42.945 [XNIO-1 task-1] zeIZGxByTY-gAi-N9Db5vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.948 [XNIO-1 task-1] zeIZGxByTY-gAi-N9Db5vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.949 [XNIO-1 task-1] zeIZGxByTY-gAi-N9Db5vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.949 [XNIO-1 task-1] zeIZGxByTY-gAi-N9Db5vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", authorization) +20:00:42.950 [XNIO-1 task-4] G6xpoZOIQM6Gz5x077LYmg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.958 [XNIO-1 task-4] dyc1Vcq0RpyAtZYrJXRs8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.958 [XNIO-1 task-4] dyc1Vcq0RpyAtZYrJXRs8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.959 [XNIO-1 task-4] dyc1Vcq0RpyAtZYrJXRs8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.961 [XNIO-1 task-1] zeIZGxByTY-gAi-N9Db5vw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.961 [XNIO-1 task-4] dyc1Vcq0RpyAtZYrJXRs8g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:42.967 [XNIO-1 task-4] dyc1Vcq0RpyAtZYrJXRs8g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.973 [XNIO-1 task-1] VLHOGTElThKFase_Y8Y3LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.973 [XNIO-1 task-1] VLHOGTElThKFase_Y8Y3LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.974 [XNIO-1 task-1] VLHOGTElThKFase_Y8Y3LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.974 [XNIO-1 task-1] VLHOGTElThKFase_Y8Y3LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:42.979 [XNIO-1 task-1] VLHOGTElThKFase_Y8Y3LQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.983 [XNIO-1 task-1] VF2FHEASQT22mCpAdCfFpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.984 [XNIO-1 task-1] VF2FHEASQT22mCpAdCfFpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.984 [XNIO-1 task-1] VF2FHEASQT22mCpAdCfFpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.984 [XNIO-1 task-1] VF2FHEASQT22mCpAdCfFpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:42.991 [XNIO-1 task-1] VF2FHEASQT22mCpAdCfFpA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:42.993 [XNIO-1 task-4] 8ZxnfDIOR-WzrzcnsMkBJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.993 [XNIO-1 task-4] 8ZxnfDIOR-WzrzcnsMkBJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.994 [XNIO-1 task-4] 8ZxnfDIOR-WzrzcnsMkBJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.995 [XNIO-1 task-4] 8ZxnfDIOR-WzrzcnsMkBJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:42.997 [XNIO-1 task-1] U7FvqjDvQ1O5Zz_4EChdPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.997 [XNIO-1 task-1] U7FvqjDvQ1O5Zz_4EChdPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:42.997 [XNIO-1 task-1] U7FvqjDvQ1O5Zz_4EChdPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:42.997 [XNIO-1 task-1] U7FvqjDvQ1O5Zz_4EChdPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:43.003 [XNIO-1 task-4] 8ZxnfDIOR-WzrzcnsMkBJQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.003 [XNIO-1 task-4] 8ZxnfDIOR-WzrzcnsMkBJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.004 [XNIO-1 task-1] U7FvqjDvQ1O5Zz_4EChdPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.014 [XNIO-1 task-1] N3C2vPkNQPSmvq5VkXHQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.014 [XNIO-1 task-1] N3C2vPkNQPSmvq5VkXHQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.014 [XNIO-1 task-1] N3C2vPkNQPSmvq5VkXHQiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.015 [XNIO-1 task-1] N3C2vPkNQPSmvq5VkXHQiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.021 [XNIO-1 task-1] N3C2vPkNQPSmvq5VkXHQiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.027 [XNIO-1 task-1] MAoaOR3VRvq9H-HJkVZXSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.027 [XNIO-1 task-1] MAoaOR3VRvq9H-HJkVZXSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.028 [XNIO-1 task-1] MAoaOR3VRvq9H-HJkVZXSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.028 [XNIO-1 task-1] MAoaOR3VRvq9H-HJkVZXSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.035 [XNIO-1 task-4] Zd-FTDVWTxmAXdmvwjlZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.035 [XNIO-1 task-4] Zd-FTDVWTxmAXdmvwjlZ4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.035 [XNIO-1 task-4] Zd-FTDVWTxmAXdmvwjlZ4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.035 [XNIO-1 task-1] MAoaOR3VRvq9H-HJkVZXSg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.036 [XNIO-1 task-4] Zd-FTDVWTxmAXdmvwjlZ4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2y0Zf5OvTXekF9ixvZvE0g redirectUri = http://localhost:8080/authorization +20:00:43.043 [XNIO-1 task-1] KAnQUW3_Q2y7uoFFzByi7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.043 [XNIO-1 task-1] KAnQUW3_Q2y7uoFFzByi7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.043 [XNIO-1 task-4] Zd-FTDVWTxmAXdmvwjlZ4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.044 [XNIO-1 task-1] KAnQUW3_Q2y7uoFFzByi7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.044 [XNIO-1 task-1] KAnQUW3_Q2y7uoFFzByi7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:43.050 [XNIO-1 task-1] KAnQUW3_Q2y7uoFFzByi7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.065 [XNIO-1 task-1] 1gLotmuTTKCTvAwBeGUIfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.066 [XNIO-1 task-2] QbcW8QuvToelpEHeuKj58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.066 [XNIO-1 task-2] QbcW8QuvToelpEHeuKj58Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.066 [XNIO-1 task-4] IL91bXkgSEOehnXq1elo4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.066 [XNIO-1 task-4] IL91bXkgSEOehnXq1elo4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.066 [XNIO-1 task-4] IL91bXkgSEOehnXq1elo4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.066 [XNIO-1 task-2] QbcW8QuvToelpEHeuKj58Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.066 [XNIO-1 task-1] 1gLotmuTTKCTvAwBeGUIfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.066 [XNIO-1 task-4] IL91bXkgSEOehnXq1elo4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.066 [XNIO-1 task-2] QbcW8QuvToelpEHeuKj58Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:43.067 [XNIO-1 task-1] 1gLotmuTTKCTvAwBeGUIfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:43.067 [XNIO-1 task-1] 1gLotmuTTKCTvAwBeGUIfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.072 [XNIO-1 task-1] 1gLotmuTTKCTvAwBeGUIfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.077 [XNIO-1 task-2] QbcW8QuvToelpEHeuKj58Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.077 [XNIO-1 task-2] QbcW8QuvToelpEHeuKj58Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.079 [XNIO-1 task-1] X5TkfRvcT22OTFZsXW-T-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.079 [XNIO-1 task-1] X5TkfRvcT22OTFZsXW-T-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.080 [XNIO-1 task-1] X5TkfRvcT22OTFZsXW-T-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.080 [XNIO-1 task-4] IL91bXkgSEOehnXq1elo4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.080 [XNIO-1 task-1] X5TkfRvcT22OTFZsXW-T-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.085 [XNIO-1 task-1] X5TkfRvcT22OTFZsXW-T-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.091 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8d33e046 +20:00:43.093 [XNIO-1 task-2] QQ_ZqykIR4yqFO0xHEhjIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.093 [XNIO-1 task-2] QQ_ZqykIR4yqFO0xHEhjIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.093 [XNIO-1 task-2] QQ_ZqykIR4yqFO0xHEhjIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.093 [XNIO-1 task-2] QQ_ZqykIR4yqFO0xHEhjIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:43.100 [XNIO-1 task-2] QQ_ZqykIR4yqFO0xHEhjIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.108 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b8bf151f +20:00:43.109 [XNIO-1 task-2] fHaPnkJ1Sb6Njdv8QV45kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.110 [XNIO-1 task-2] fHaPnkJ1Sb6Njdv8QV45kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.110 [XNIO-1 task-2] fHaPnkJ1Sb6Njdv8QV45kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.110 [XNIO-1 task-2] fHaPnkJ1Sb6Njdv8QV45kA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.113 [XNIO-1 task-4] WWmokTNpQl-TBeOkLtBEHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.113 [XNIO-1 task-4] WWmokTNpQl-TBeOkLtBEHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.113 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:42703ce5 +20:00:43.113 [XNIO-1 task-4] WWmokTNpQl-TBeOkLtBEHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.115 [XNIO-1 task-4] WWmokTNpQl-TBeOkLtBEHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.117 [XNIO-1 task-2] fHaPnkJ1Sb6Njdv8QV45kA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.121 [XNIO-1 task-4] WWmokTNpQl-TBeOkLtBEHw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.121 [XNIO-1 task-4] WWmokTNpQl-TBeOkLtBEHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.124 [XNIO-1 task-2] bPL9GWyER5WPR5bfQ780CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.124 [XNIO-1 task-2] bPL9GWyER5WPR5bfQ780CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.124 [XNIO-1 task-2] bPL9GWyER5WPR5bfQ780CA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.125 [XNIO-1 task-2] bPL9GWyER5WPR5bfQ780CA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.126 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:331fcb7e-fa51-4555-9c08-e11e09e9dfa4 +20:00:43.132 [XNIO-1 task-2] bPL9GWyER5WPR5bfQ780CA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.138 [XNIO-1 task-4] VtZnpMlPQj-eI1bHlXw6ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.138 [XNIO-1 task-4] VtZnpMlPQj-eI1bHlXw6ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.138 [XNIO-1 task-4] VtZnpMlPQj-eI1bHlXw6ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.138 [XNIO-1 task-4] VtZnpMlPQj-eI1bHlXw6ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 8d9324bc-9391-4334-82ef-32e14ebd0ac9 scope = null +20:00:43.141 [XNIO-1 task-2] 8n1MTbDbTWaLZ_2e8zv5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.141 [XNIO-1 task-2] 8n1MTbDbTWaLZ_2e8zv5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.141 [XNIO-1 task-2] 8n1MTbDbTWaLZ_2e8zv5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.142 [XNIO-1 task-2] 8n1MTbDbTWaLZ_2e8zv5og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.148 [XNIO-1 task-2] 8n1MTbDbTWaLZ_2e8zv5og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.154 [XNIO-1 task-4] VtZnpMlPQj-eI1bHlXw6ig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.154 [XNIO-1 task-4] VtZnpMlPQj-eI1bHlXw6ig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.154 [XNIO-1 task-2] Nw7IgrucTOCUJCfs0zt16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.154 [XNIO-1 task-2] Nw7IgrucTOCUJCfs0zt16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.155 [XNIO-1 task-2] Nw7IgrucTOCUJCfs0zt16g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.157 [XNIO-1 task-1] I7lwxCzyQGWJFz_vKXGcGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.157 [XNIO-1 task-1] I7lwxCzyQGWJFz_vKXGcGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.158 [XNIO-1 task-1] I7lwxCzyQGWJFz_vKXGcGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.158 [XNIO-1 task-1] I7lwxCzyQGWJFz_vKXGcGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = w7eMjaHTR3iUIA_S9cfYQw redirectUri = http://localhost:8080/authorization +20:00:43.161 [XNIO-1 task-2] Nw7IgrucTOCUJCfs0zt16g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.164 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8d33e046 +20:00:43.166 [XNIO-1 task-1] I7lwxCzyQGWJFz_vKXGcGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.173 [XNIO-1 task-2] sABEU3gGSF-_xOWmBOrkIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.174 [XNIO-1 task-2] sABEU3gGSF-_xOWmBOrkIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.174 [XNIO-1 task-2] sABEU3gGSF-_xOWmBOrkIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.174 [XNIO-1 task-2] sABEU3gGSF-_xOWmBOrkIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:43.179 [XNIO-1 task-4] uqhyY7skQoaYmfCV3xRdtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.179 [XNIO-1 task-4] uqhyY7skQoaYmfCV3xRdtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.180 [XNIO-1 task-4] uqhyY7skQoaYmfCV3xRdtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.180 [XNIO-1 task-4] uqhyY7skQoaYmfCV3xRdtw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:43.181 [XNIO-1 task-2] sABEU3gGSF-_xOWmBOrkIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.188 [XNIO-1 task-2] NQQ6ErTVQ0aaYc5rptOT6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.189 [XNIO-1 task-2] NQQ6ErTVQ0aaYc5rptOT6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.192 [XNIO-1 task-2] NQQ6ErTVQ0aaYc5rptOT6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.192 [XNIO-1 task-2] NQQ6ErTVQ0aaYc5rptOT6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", authorization) +20:00:43.197 [XNIO-1 task-4] uqhyY7skQoaYmfCV3xRdtw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.198 [XNIO-1 task-2] NQQ6ErTVQ0aaYc5rptOT6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.206 [XNIO-1 task-2] nHtgw4J8QbCx1lHxKU4zqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.206 [XNIO-1 task-2] nHtgw4J8QbCx1lHxKU4zqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.206 [XNIO-1 task-2] nHtgw4J8QbCx1lHxKU4zqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.207 [XNIO-1 task-2] nHtgw4J8QbCx1lHxKU4zqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.212 [XNIO-1 task-2] nHtgw4J8QbCx1lHxKU4zqQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.216 [XNIO-1 task-2] Xbz4KXXdSTaHOO5hu4RRlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.217 [XNIO-1 task-2] Xbz4KXXdSTaHOO5hu4RRlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.217 [XNIO-1 task-2] Xbz4KXXdSTaHOO5hu4RRlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.217 [XNIO-1 task-2] Xbz4KXXdSTaHOO5hu4RRlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.223 [XNIO-1 task-2] Xbz4KXXdSTaHOO5hu4RRlA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.229 [XNIO-1 task-2] asv_bYb-RmekjgFxYOVU_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.230 [XNIO-1 task-2] asv_bYb-RmekjgFxYOVU_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.230 [XNIO-1 task-2] asv_bYb-RmekjgFxYOVU_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.230 [XNIO-1 task-2] asv_bYb-RmekjgFxYOVU_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.236 [XNIO-1 task-2] asv_bYb-RmekjgFxYOVU_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.239 [XNIO-1 task-4] 6SVKtb3yTUqVhnSMb-X5rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.239 [XNIO-1 task-4] 6SVKtb3yTUqVhnSMb-X5rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.239 [XNIO-1 task-4] 6SVKtb3yTUqVhnSMb-X5rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.240 [XNIO-1 task-4] 6SVKtb3yTUqVhnSMb-X5rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:43.240 [XNIO-1 task-2] jYmPyyYlTKCJdBFVvHXYEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.240 [XNIO-1 task-2] jYmPyyYlTKCJdBFVvHXYEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.241 [XNIO-1 task-2] jYmPyyYlTKCJdBFVvHXYEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.241 [XNIO-1 task-2] jYmPyyYlTKCJdBFVvHXYEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.246 [XNIO-1 task-2] jYmPyyYlTKCJdBFVvHXYEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.250 [XNIO-1 task-2] 4paRfL-wSUCi6QahrJkIkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.250 [XNIO-1 task-2] 4paRfL-wSUCi6QahrJkIkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.251 [XNIO-1 task-2] 4paRfL-wSUCi6QahrJkIkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.251 [XNIO-1 task-2] 4paRfL-wSUCi6QahrJkIkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.253 [XNIO-1 task-4] 6SVKtb3yTUqVhnSMb-X5rg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.254 [XNIO-1 task-1] SaLWIhM6R_ihZBXTgxuLYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.254 [XNIO-1 task-4] 6SVKtb3yTUqVhnSMb-X5rg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.255 [XNIO-1 task-4] 6SVKtb3yTUqVhnSMb-X5rg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.256 [XNIO-1 task-1] SaLWIhM6R_ihZBXTgxuLYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.257 [XNIO-1 task-2] 4paRfL-wSUCi6QahrJkIkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.257 [XNIO-1 task-1] SaLWIhM6R_ihZBXTgxuLYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:43.263 [XNIO-1 task-1] SaLWIhM6R_ihZBXTgxuLYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.263 [XNIO-1 task-2] Q4GqkFJLRK2UQHoHkt842g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.263 [XNIO-1 task-2] Q4GqkFJLRK2UQHoHkt842g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.263 [XNIO-1 task-1] SaLWIhM6R_ihZBXTgxuLYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.263 [XNIO-1 task-2] Q4GqkFJLRK2UQHoHkt842g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.264 [XNIO-1 task-2] Q4GqkFJLRK2UQHoHkt842g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.270 [XNIO-1 task-2] Q4GqkFJLRK2UQHoHkt842g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.274 [XNIO-1 task-2] r9qet7WzQcuia9UpGyTe9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.274 [XNIO-1 task-2] r9qet7WzQcuia9UpGyTe9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.275 [XNIO-1 task-2] r9qet7WzQcuia9UpGyTe9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.275 [XNIO-1 task-2] r9qet7WzQcuia9UpGyTe9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 688411a0-65ee-4f77-a621-bca3c77a09fc scope = null +20:00:43.278 [XNIO-1 task-4] 7AInaTBvSluit_dUWd4vvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.278 [XNIO-1 task-4] 7AInaTBvSluit_dUWd4vvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.278 [XNIO-1 task-4] 7AInaTBvSluit_dUWd4vvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.278 [XNIO-1 task-4] 7AInaTBvSluit_dUWd4vvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.287 [XNIO-1 task-4] 7AInaTBvSluit_dUWd4vvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.287 [XNIO-1 task-2] r9qet7WzQcuia9UpGyTe9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.295 [XNIO-1 task-4] 9Un0o4F1RQq-mugdLY66VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.295 [XNIO-1 task-4] 9Un0o4F1RQq-mugdLY66VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.295 [XNIO-1 task-4] 9Un0o4F1RQq-mugdLY66VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.297 [XNIO-1 task-4] 9Un0o4F1RQq-mugdLY66VQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.303 [XNIO-1 task-4] 9Un0o4F1RQq-mugdLY66VQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.310 [XNIO-1 task-4] ms6_ejjXSEGliiO6rQAZfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.310 [XNIO-1 task-4] ms6_ejjXSEGliiO6rQAZfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.310 [XNIO-1 task-4] ms6_ejjXSEGliiO6rQAZfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.311 [XNIO-1 task-4] ms6_ejjXSEGliiO6rQAZfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.318 [XNIO-1 task-4] ms6_ejjXSEGliiO6rQAZfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.321 [XNIO-1 task-4] EK_2q1ltRJ6Sp3HB7txXgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.322 [XNIO-1 task-4] EK_2q1ltRJ6Sp3HB7txXgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.322 [XNIO-1 task-4] EK_2q1ltRJ6Sp3HB7txXgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.322 [XNIO-1 task-4] EK_2q1ltRJ6Sp3HB7txXgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bb4c4513-5502-4de5-a602-eb90b86f2244 scope = null +20:00:43.323 [XNIO-1 task-1] wM-K5TEQSwekrNl9wdQziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.323 [XNIO-1 task-1] wM-K5TEQSwekrNl9wdQziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.324 [XNIO-1 task-1] wM-K5TEQSwekrNl9wdQziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.325 [XNIO-1 task-1] wM-K5TEQSwekrNl9wdQziA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.332 [XNIO-1 task-1] wM-K5TEQSwekrNl9wdQziA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.339 [XNIO-1 task-1] 1K8BKRhVTqqU5FtTU5OJmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.339 [XNIO-1 task-1] 1K8BKRhVTqqU5FtTU5OJmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.340 [XNIO-1 task-1] 1K8BKRhVTqqU5FtTU5OJmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.340 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e1292dbf +20:00:43.340 [XNIO-1 task-1] 1K8BKRhVTqqU5FtTU5OJmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.346 [XNIO-1 task-1] 1K8BKRhVTqqU5FtTU5OJmQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.357 [XNIO-1 task-4] EK_2q1ltRJ6Sp3HB7txXgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.359 [XNIO-1 task-1] qA0FN4gLTM-TI6dm_6q74A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.359 [XNIO-1 task-1] qA0FN4gLTM-TI6dm_6q74A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.360 [XNIO-1 task-1] qA0FN4gLTM-TI6dm_6q74A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.360 [XNIO-1 task-1] qA0FN4gLTM-TI6dm_6q74A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.367 [XNIO-1 task-1] qA0FN4gLTM-TI6dm_6q74A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.374 [XNIO-1 task-1] yrp9-ZSAT9ySMmC2YkSISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.374 [XNIO-1 task-1] yrp9-ZSAT9ySMmC2YkSISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.376 [XNIO-1 task-1] yrp9-ZSAT9ySMmC2YkSISw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.377 [XNIO-1 task-1] yrp9-ZSAT9ySMmC2YkSISw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.385 [XNIO-1 task-1] yrp9-ZSAT9ySMmC2YkSISw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.395 [XNIO-1 task-1] tHGQqr_PTRCbLnROBSNy1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.395 [XNIO-1 task-1] tHGQqr_PTRCbLnROBSNy1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.395 [XNIO-1 task-1] tHGQqr_PTRCbLnROBSNy1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.396 [XNIO-1 task-1] tHGQqr_PTRCbLnROBSNy1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.403 [XNIO-1 task-1] tHGQqr_PTRCbLnROBSNy1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.408 [XNIO-1 task-1] H4RFzROfQCONcHw6_WNwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.408 [XNIO-1 task-1] H4RFzROfQCONcHw6_WNwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.408 [XNIO-1 task-1] H4RFzROfQCONcHw6_WNwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.409 [XNIO-1 task-1] H4RFzROfQCONcHw6_WNwxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.411 [XNIO-1 task-4] iqQ_WhhTQNKn-_xgQhVScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.411 [XNIO-1 task-4] iqQ_WhhTQNKn-_xgQhVScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.411 [XNIO-1 task-4] iqQ_WhhTQNKn-_xgQhVScA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.412 [XNIO-1 task-4] iqQ_WhhTQNKn-_xgQhVScA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = VwGwlLMCT_-CmGAcrBgPFA redirectUri = http://localhost:8080/authorization +20:00:43.414 [XNIO-1 task-1] H4RFzROfQCONcHw6_WNwxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.419 [XNIO-1 task-1] 8Tf1QbY1R7izyoXC7Pq9iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.419 [XNIO-1 task-1] 8Tf1QbY1R7izyoXC7Pq9iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.419 [XNIO-1 task-1] 8Tf1QbY1R7izyoXC7Pq9iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.420 [XNIO-1 task-1] 8Tf1QbY1R7izyoXC7Pq9iw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.422 [XNIO-1 task-4] iqQ_WhhTQNKn-_xgQhVScA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.424 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ae828c23-9587-4053-8ce0-c9bb78605ffe +20:00:43.426 [XNIO-1 task-1] 8Tf1QbY1R7izyoXC7Pq9iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.426 [XNIO-1 task-2] hvqlmtz7SX-ckjqEi6yWTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.426 [XNIO-1 task-2] hvqlmtz7SX-ckjqEi6yWTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.426 [XNIO-1 task-2] hvqlmtz7SX-ckjqEi6yWTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.427 [XNIO-1 task-2] hvqlmtz7SX-ckjqEi6yWTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:43.430 [XNIO-1 task-1] dX52Xa2HS6yCyNA5NK5ymg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.431 [XNIO-1 task-1] dX52Xa2HS6yCyNA5NK5ymg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.431 [XNIO-1 task-1] dX52Xa2HS6yCyNA5NK5ymg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.431 [XNIO-1 task-1] dX52Xa2HS6yCyNA5NK5ymg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", authorization) +20:00:43.442 [XNIO-1 task-2] hvqlmtz7SX-ckjqEi6yWTQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.442 [XNIO-1 task-2] hvqlmtz7SX-ckjqEi6yWTQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.442 [XNIO-1 task-2] hvqlmtz7SX-ckjqEi6yWTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.449 [XNIO-1 task-1] 43vL8dr0T5yv6wkHWjjlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.449 [XNIO-1 task-1] 43vL8dr0T5yv6wkHWjjlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.450 [XNIO-1 task-1] 43vL8dr0T5yv6wkHWjjlNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.452 [XNIO-1 task-1] 43vL8dr0T5yv6wkHWjjlNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.457 [XNIO-1 task-1] 43vL8dr0T5yv6wkHWjjlNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.461 [XNIO-1 task-2] Uo4S8UTiQKGi58zIprd4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.462 [XNIO-1 task-2] Uo4S8UTiQKGi58zIprd4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.462 [XNIO-1 task-2] Uo4S8UTiQKGi58zIprd4PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.462 [XNIO-1 task-2] Uo4S8UTiQKGi58zIprd4PQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9yn3F-X3Q2CrE3Uq6mF5Sw redirectUri = http://localhost:8080/authorization +20:00:43.464 [XNIO-1 task-1] 3O9FMpDhQleh0KRmxUosFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.464 [XNIO-1 task-1] 3O9FMpDhQleh0KRmxUosFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.464 [XNIO-1 task-1] 3O9FMpDhQleh0KRmxUosFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.465 [XNIO-1 task-1] 3O9FMpDhQleh0KRmxUosFg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.473 [XNIO-1 task-2] Uo4S8UTiQKGi58zIprd4PQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.475 [XNIO-1 task-1] 3O9FMpDhQleh0KRmxUosFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.480 [XNIO-1 task-1] xaFxY8Z6T26NC-QWbXF1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.480 [XNIO-1 task-1] xaFxY8Z6T26NC-QWbXF1ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.481 [XNIO-1 task-1] xaFxY8Z6T26NC-QWbXF1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.481 [XNIO-1 task-1] xaFxY8Z6T26NC-QWbXF1ew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:43.486 [XNIO-1 task-1] xaFxY8Z6T26NC-QWbXF1ew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.491 [XNIO-1 task-1] MLMZauO4Qz-MjecKbo6vBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.492 [XNIO-1 task-1] MLMZauO4Qz-MjecKbo6vBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.492 [XNIO-1 task-1] MLMZauO4Qz-MjecKbo6vBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.492 [XNIO-1 task-1] MLMZauO4Qz-MjecKbo6vBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:43.497 [XNIO-1 task-1] MLMZauO4Qz-MjecKbo6vBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.507 [XNIO-1 task-2] yUUMqOSeRwKHYSkU8xJ7wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.507 [XNIO-1 task-2] yUUMqOSeRwKHYSkU8xJ7wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.507 [XNIO-1 task-1] mAqcRYdGTCaJTVojs2206Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.507 [XNIO-1 task-1] mAqcRYdGTCaJTVojs2206Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.508 [XNIO-1 task-1] mAqcRYdGTCaJTVojs2206Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.508 [XNIO-1 task-2] yUUMqOSeRwKHYSkU8xJ7wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.508 [XNIO-1 task-1] mAqcRYdGTCaJTVojs2206Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:43.508 [XNIO-1 task-2] yUUMqOSeRwKHYSkU8xJ7wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:43.518 [XNIO-1 task-1] mAqcRYdGTCaJTVojs2206Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.519 [XNIO-1 task-2] yUUMqOSeRwKHYSkU8xJ7wQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.530 [XNIO-1 task-2] Jlx3j_c4R_u4eCmPU3d5Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.530 [XNIO-1 task-2] Jlx3j_c4R_u4eCmPU3d5Wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.531 [XNIO-1 task-2] Jlx3j_c4R_u4eCmPU3d5Wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.533 [XNIO-1 task-2] Jlx3j_c4R_u4eCmPU3d5Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:43.538 [XNIO-1 task-1] PNWFxfDkTqmPjtEnBNQFFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.538 [XNIO-1 task-1] PNWFxfDkTqmPjtEnBNQFFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.538 [XNIO-1 task-1] PNWFxfDkTqmPjtEnBNQFFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.539 [XNIO-1 task-2] Jlx3j_c4R_u4eCmPU3d5Wg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.539 [XNIO-1 task-2] Jlx3j_c4R_u4eCmPU3d5Wg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.551 [XNIO-1 task-2] RgRWC8bnSnKXOOXNjYYOxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.552 [XNIO-1 task-2] RgRWC8bnSnKXOOXNjYYOxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.553 [XNIO-1 task-1] PNWFxfDkTqmPjtEnBNQFFw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.553 [XNIO-1 task-2] RgRWC8bnSnKXOOXNjYYOxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.553 [XNIO-1 task-2] RgRWC8bnSnKXOOXNjYYOxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:43.558 [XNIO-1 task-4] fyBjDau7RtSy3BQLYsbXKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.558 [XNIO-1 task-4] fyBjDau7RtSy3BQLYsbXKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.558 [XNIO-1 task-4] fyBjDau7RtSy3BQLYsbXKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.559 [XNIO-1 task-4] fyBjDau7RtSy3BQLYsbXKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:43.560 [XNIO-1 task-2] RgRWC8bnSnKXOOXNjYYOxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.563 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e1292dbf +20:00:43.569 [XNIO-1 task-4] fyBjDau7RtSy3BQLYsbXKA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.570 [XNIO-1 task-4] fyBjDau7RtSy3BQLYsbXKA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.571 [XNIO-1 task-2] VVJgywYgTUmpOo9d8W5vCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.571 [XNIO-1 task-2] VVJgywYgTUmpOo9d8W5vCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.571 [XNIO-1 task-2] VVJgywYgTUmpOo9d8W5vCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.571 [XNIO-1 task-2] VVJgywYgTUmpOo9d8W5vCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.580 [XNIO-1 task-2] VVJgywYgTUmpOo9d8W5vCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.587 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:13a98fa2-fc76-44aa-8bf8-246a95dacf99 +20:00:43.589 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e1292dbf +20:00:43.592 [XNIO-1 task-2] h0-UvSK8TWW-JAomejDtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.592 [XNIO-1 task-2] h0-UvSK8TWW-JAomejDtBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.593 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e1292dbf +20:00:43.594 [XNIO-1 task-2] h0-UvSK8TWW-JAomejDtBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:43.600 [XNIO-1 task-2] h0-UvSK8TWW-JAomejDtBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.615 [XNIO-1 task-2] RNeIAPM0TpqoLJi61i5VTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.615 [XNIO-1 task-2] RNeIAPM0TpqoLJi61i5VTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.615 [XNIO-1 task-2] RNeIAPM0TpqoLJi61i5VTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.616 [XNIO-1 task-2] RNeIAPM0TpqoLJi61i5VTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:43.621 [XNIO-1 task-2] RNeIAPM0TpqoLJi61i5VTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.626 [XNIO-1 task-2] GF4iXQnCQWCRVGKew32WYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.626 [XNIO-1 task-2] GF4iXQnCQWCRVGKew32WYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.626 [XNIO-1 task-2] GF4iXQnCQWCRVGKew32WYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.626 [XNIO-1 task-2] GF4iXQnCQWCRVGKew32WYA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", authorization) +20:00:43.629 [XNIO-1 task-4] 112ktHK2RSahegtliq8pew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.629 [XNIO-1 task-4] 112ktHK2RSahegtliq8pew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.630 [XNIO-1 task-4] 112ktHK2RSahegtliq8pew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.630 [XNIO-1 task-4] 112ktHK2RSahegtliq8pew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:43.633 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:63ce6f07 +20:00:43.635 [XNIO-1 task-1] euQTLXUhTyiMv-Lf2Bu9RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.635 [XNIO-1 task-1] euQTLXUhTyiMv-Lf2Bu9RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.635 [XNIO-1 task-1] euQTLXUhTyiMv-Lf2Bu9RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.636 [XNIO-1 task-1] euQTLXUhTyiMv-Lf2Bu9RQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qjz1zQ4pQ5OIo7IG7Ow1Pg redirectUri = http://localhost:8080/authorization +20:00:43.636 [XNIO-1 task-4] 112ktHK2RSahegtliq8pew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.638 [XNIO-1 task-2] GF4iXQnCQWCRVGKew32WYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.652 [XNIO-1 task-2] Grm6_TN7Qr2FaLbQhQGlPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.652 [XNIO-1 task-2] Grm6_TN7Qr2FaLbQhQGlPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.652 [XNIO-1 task-2] Grm6_TN7Qr2FaLbQhQGlPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.653 [XNIO-1 task-2] Grm6_TN7Qr2FaLbQhQGlPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", authorization) +20:00:43.653 [XNIO-1 task-1] euQTLXUhTyiMv-Lf2Bu9RQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:43.653 [XNIO-1 task-1] euQTLXUhTyiMv-Lf2Bu9RQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.659 [XNIO-1 task-2] Grm6_TN7Qr2FaLbQhQGlPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.670 [XNIO-1 task-1] dMxJO6oSTa6sEWn4whcqsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.670 [XNIO-1 task-2] OTAecdreSYmti09iHaFmNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.670 [XNIO-1 task-1] dMxJO6oSTa6sEWn4whcqsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.670 [XNIO-1 task-2] OTAecdreSYmti09iHaFmNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.670 [XNIO-1 task-2] OTAecdreSYmti09iHaFmNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.670 [XNIO-1 task-2] OTAecdreSYmti09iHaFmNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.671 [XNIO-1 task-1] dMxJO6oSTa6sEWn4whcqsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.671 [XNIO-1 task-1] dMxJO6oSTa6sEWn4whcqsQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.677 [XNIO-1 task-1] dMxJO6oSTa6sEWn4whcqsQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.679 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8d33e046 +20:00:43.684 [XNIO-1 task-2] OTAecdreSYmti09iHaFmNw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.686 [XNIO-1 task-1] B_slHsprSHKr9e9zTkCyTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.686 [XNIO-1 task-1] B_slHsprSHKr9e9zTkCyTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.687 [XNIO-1 task-1] B_slHsprSHKr9e9zTkCyTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.687 [XNIO-1 task-1] B_slHsprSHKr9e9zTkCyTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.699 [XNIO-1 task-1] B_slHsprSHKr9e9zTkCyTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.702 [XNIO-1 task-2] cBHBfr14TSi5S9ioEDSV1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.702 [XNIO-1 task-2] cBHBfr14TSi5S9ioEDSV1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.702 [XNIO-1 task-2] cBHBfr14TSi5S9ioEDSV1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.703 [XNIO-1 task-2] cBHBfr14TSi5S9ioEDSV1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c17715c1-48f4-4fab-8228-9b1a36efff82 scope = null +20:00:43.708 [XNIO-1 task-1] TA2fvdcKSWii7Kv71-Y-jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.708 [XNIO-1 task-1] TA2fvdcKSWii7Kv71-Y-jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.709 [XNIO-1 task-1] TA2fvdcKSWii7Kv71-Y-jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.710 [XNIO-1 task-1] TA2fvdcKSWii7Kv71-Y-jA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.718 [XNIO-1 task-1] TA2fvdcKSWii7Kv71-Y-jA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.720 [XNIO-1 task-2] cBHBfr14TSi5S9ioEDSV1g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.721 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8d33e046 +20:00:43.730 [XNIO-1 task-1] NeAjs6-KQAauluLID5ISVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.731 [XNIO-1 task-1] NeAjs6-KQAauluLID5ISVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.731 [XNIO-1 task-1] NeAjs6-KQAauluLID5ISVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.732 [XNIO-1 task-1] NeAjs6-KQAauluLID5ISVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:43.734 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cc426c78 +20:00:43.739 [XNIO-1 task-1] NeAjs6-KQAauluLID5ISVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.747 [XNIO-1 task-1] ComkzeOmRU2-OoTyONXXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.747 [XNIO-1 task-1] ComkzeOmRU2-OoTyONXXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.748 [XNIO-1 task-1] ComkzeOmRU2-OoTyONXXwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.748 [XNIO-1 task-1] ComkzeOmRU2-OoTyONXXwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.760 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:db5f91a4 +20:00:43.761 [XNIO-1 task-2] VT0yNVKmR22hk-jzmfiWGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.761 [XNIO-1 task-2] VT0yNVKmR22hk-jzmfiWGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.761 [XNIO-1 task-1] ComkzeOmRU2-OoTyONXXwA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.761 [XNIO-1 task-2] VT0yNVKmR22hk-jzmfiWGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.762 [XNIO-1 task-2] VT0yNVKmR22hk-jzmfiWGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 346fe197-8dcb-4036-b598-5ef1400ecb5a scope = null +20:00:43.773 [XNIO-1 task-1] 1nLrhegZTVa65ko4Tr8Ksw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.774 [XNIO-1 task-1] 1nLrhegZTVa65ko4Tr8Ksw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 346fe197-8dcb-4036-b598-5ef1400ecb5a is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.774 [XNIO-1 task-1] 1nLrhegZTVa65ko4Tr8Ksw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.775 [XNIO-1 task-1] 1nLrhegZTVa65ko4Tr8Ksw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDYwMTAwYjEtZjllZi00Mzc5LTgyOTQtNDBmNmZjMWVlNThlOjlvRzVnRkl0U1Q2czNpcTJZWFo5QlE=", "Basic MDYwMTAwYjEtZjllZi00Mzc5LTgyOTQtNDBmNmZjMWVlNThlOjlvRzVnRkl0U1Q2czNpcTJZWFo5QlE=", authorization) +20:00:43.777 [XNIO-1 task-2] vYq4jbKQQWOL5Gd8zYFxYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.777 [XNIO-1 task-2] vYq4jbKQQWOL5Gd8zYFxYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.778 [XNIO-1 task-2] vYq4jbKQQWOL5Gd8zYFxYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.778 [XNIO-1 task-2] vYq4jbKQQWOL5Gd8zYFxYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:43.781 [XNIO-1 task-1] 1nLrhegZTVa65ko4Tr8Ksw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.787 [XNIO-1 task-4] 8A8mnSPkSFaVnDpReLSQnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.787 [XNIO-1 task-4] 8A8mnSPkSFaVnDpReLSQnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.788 [XNIO-1 task-4] 8A8mnSPkSFaVnDpReLSQnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.788 [XNIO-1 task-4] 8A8mnSPkSFaVnDpReLSQnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDYwMTAwYjEtZjllZi00Mzc5LTgyOTQtNDBmNmZjMWVlNThlOjlvRzVnRkl0U1Q2czNpcTJZWFo5QlE=", "Basic MDYwMTAwYjEtZjllZi00Mzc5LTgyOTQtNDBmNmZjMWVlNThlOjlvRzVnRkl0U1Q2czNpcTJZWFo5QlE=", authorization) +20:00:43.790 [XNIO-1 task-2] vYq4jbKQQWOL5Gd8zYFxYg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:43.800 [XNIO-1 task-4] 8A8mnSPkSFaVnDpReLSQnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.809 [XNIO-1 task-4] NiTRaJovSiWWDcYSTgxTUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.809 [XNIO-1 task-4] NiTRaJovSiWWDcYSTgxTUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.810 [XNIO-1 task-4] NiTRaJovSiWWDcYSTgxTUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.810 [XNIO-1 task-4] NiTRaJovSiWWDcYSTgxTUA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.816 [XNIO-1 task-4] NiTRaJovSiWWDcYSTgxTUA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.818 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8d33e046 +20:00:43.825 [XNIO-1 task-4] bLPbSzaESm-lsORptOEqLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.825 [XNIO-1 task-4] bLPbSzaESm-lsORptOEqLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.825 [XNIO-1 task-4] bLPbSzaESm-lsORptOEqLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.826 [XNIO-1 task-4] bLPbSzaESm-lsORptOEqLg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.830 [XNIO-1 task-2] 11sMBjxNSdKiLGDBfbotTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.830 [XNIO-1 task-2] 11sMBjxNSdKiLGDBfbotTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.830 [XNIO-1 task-2] 11sMBjxNSdKiLGDBfbotTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.831 [XNIO-1 task-2] 11sMBjxNSdKiLGDBfbotTA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 89d64ed9-824c-4e03-831a-4f3edb69ea2b scope = null +20:00:43.832 [XNIO-1 task-4] bLPbSzaESm-lsORptOEqLg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.841 [XNIO-1 task-4] 5x3-RVtgSMaNNh6mxnmHuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.841 [XNIO-1 task-4] 5x3-RVtgSMaNNh6mxnmHuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.842 [XNIO-1 task-4] 5x3-RVtgSMaNNh6mxnmHuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 89d64ed9-824c-4e03-831a-4f3edb69ea2b is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:43.842 [XNIO-1 task-4] 5x3-RVtgSMaNNh6mxnmHuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", authorization) +20:00:43.847 [XNIO-1 task-4] 5x3-RVtgSMaNNh6mxnmHuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.862 [XNIO-1 task-4] Q_fykIWORMCibI8nqHe8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.862 [XNIO-1 task-4] Q_fykIWORMCibI8nqHe8dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.862 [XNIO-1 task-4] Q_fykIWORMCibI8nqHe8dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.863 [XNIO-1 task-4] Q_fykIWORMCibI8nqHe8dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", "Basic NjY4NGUzNTMtZWQyNC00OTgyLTkyNDgtNmZjNzIzZDM1NTQ2OlJucnVtbTFSU09hMDVQTGhHOWw2dHc=", authorization) +20:00:43.868 [XNIO-1 task-4] Q_fykIWORMCibI8nqHe8dQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.875 [XNIO-1 task-4] hq6qccBwROC54nljHw3vDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.875 [XNIO-1 task-4] hq6qccBwROC54nljHw3vDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.876 [XNIO-1 task-4] hq6qccBwROC54nljHw3vDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.876 [XNIO-1 task-4] hq6qccBwROC54nljHw3vDg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:43.892 [XNIO-1 task-4] hq6qccBwROC54nljHw3vDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.897 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a6223ef0 +20:00:43.898 [XNIO-1 task-4] dzsECYCcRZCdmWkptggVNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.898 [XNIO-1 task-4] dzsECYCcRZCdmWkptggVNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.909 [XNIO-1 task-4] dzsECYCcRZCdmWkptggVNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.909 [XNIO-1 task-4] dzsECYCcRZCdmWkptggVNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.910 [XNIO-1 task-2] 3SuJedQ_Q7qVUXFNxMsP5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.910 [XNIO-1 task-2] 3SuJedQ_Q7qVUXFNxMsP5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.908 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:db5f91a4 +20:00:43.910 [XNIO-1 task-2] 3SuJedQ_Q7qVUXFNxMsP5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.911 [XNIO-1 task-2] 3SuJedQ_Q7qVUXFNxMsP5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:43.912 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:db5f91a4 +20:00:43.914 [XNIO-1 task-4] dzsECYCcRZCdmWkptggVNg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:43.929 [XNIO-1 task-4] xtBJGPBCS3C98nYEueFNdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.929 [XNIO-1 task-4] xtBJGPBCS3C98nYEueFNdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.929 [XNIO-1 task-4] xtBJGPBCS3C98nYEueFNdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.930 [XNIO-1 task-4] xtBJGPBCS3C98nYEueFNdA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:43.931 [XNIO-1 task-2] 3SuJedQ_Q7qVUXFNxMsP5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.935 [XNIO-1 task-4] xtBJGPBCS3C98nYEueFNdA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.940 [XNIO-1 task-4] 9yLqthAVSLGGhSwuyk52OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.941 [XNIO-1 task-4] 9yLqthAVSLGGhSwuyk52OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.942 [XNIO-1 task-4] 9yLqthAVSLGGhSwuyk52OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.942 [XNIO-1 task-4] 9yLqthAVSLGGhSwuyk52OA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:43.949 [XNIO-1 task-4] 9yLqthAVSLGGhSwuyk52OA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.962 [XNIO-1 task-4] 1mCL7XKrR1q6Q7un9e9CHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.962 [XNIO-1 task-4] 1mCL7XKrR1q6Q7un9e9CHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.962 [XNIO-1 task-4] 1mCL7XKrR1q6Q7un9e9CHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.963 [XNIO-1 task-4] 1mCL7XKrR1q6Q7un9e9CHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", authorization) +20:00:43.970 [XNIO-1 task-4] 1mCL7XKrR1q6Q7un9e9CHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.979 [XNIO-1 task-4] eL3O5WlAQyKZN7Izy3p2fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.979 [XNIO-1 task-4] eL3O5WlAQyKZN7Izy3p2fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.980 [XNIO-1 task-4] eL3O5WlAQyKZN7Izy3p2fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.980 [XNIO-1 task-4] eL3O5WlAQyKZN7Izy3p2fA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", authorization) +20:00:43.986 [XNIO-1 task-4] eL3O5WlAQyKZN7Izy3p2fA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:43.989 [XNIO-1 task-4] BaE-NEr4RYi2ENPY3ZsmJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.989 [XNIO-1 task-4] BaE-NEr4RYi2ENPY3ZsmJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.989 [XNIO-1 task-4] BaE-NEr4RYi2ENPY3ZsmJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.991 [XNIO-1 task-2] bffF1Q1lRtuWJQHiwNRlSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.997 [XNIO-1 task-2] bffF1Q1lRtuWJQHiwNRlSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:43.997 [XNIO-1 task-2] bffF1Q1lRtuWJQHiwNRlSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:43.997 [XNIO-1 task-2] bffF1Q1lRtuWJQHiwNRlSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:43.998 [XNIO-1 task-2] bffF1Q1lRtuWJQHiwNRlSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:44.003 [XNIO-1 task-2] bffF1Q1lRtuWJQHiwNRlSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.004 [XNIO-1 task-4] BaE-NEr4RYi2ENPY3ZsmJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.004 [XNIO-1 task-4] BaE-NEr4RYi2ENPY3ZsmJw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.016 [XNIO-1 task-1] sy8Mvqu5Q4uPXWWUqhKK_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.016 [XNIO-1 task-1] sy8Mvqu5Q4uPXWWUqhKK_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.016 [XNIO-1 task-2] TL85tjvXRHCXJCG1OwV-gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.016 [XNIO-1 task-2] TL85tjvXRHCXJCG1OwV-gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.016 [XNIO-1 task-1] sy8Mvqu5Q4uPXWWUqhKK_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.016 [XNIO-1 task-2] TL85tjvXRHCXJCG1OwV-gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.017 [XNIO-1 task-2] TL85tjvXRHCXJCG1OwV-gA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:44.017 [XNIO-1 task-2] TL85tjvXRHCXJCG1OwV-gA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CnjywIMNQkKXKE7U0GjqvA redirectUri = http://localhost:8080/authorization +20:00:44.026 [XNIO-1 task-2] TL85tjvXRHCXJCG1OwV-gA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:44.033 [XNIO-1 task-2] TL85tjvXRHCXJCG1OwV-gA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.042 [XNIO-1 task-1] pzMOn_04TsGc-KKtW4FckQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.042 [XNIO-1 task-1] pzMOn_04TsGc-KKtW4FckQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.042 [XNIO-1 task-1] pzMOn_04TsGc-KKtW4FckQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.042 [XNIO-1 task-1] pzMOn_04TsGc-KKtW4FckQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:44.047 [XNIO-1 task-2] Q6ERKe_ySiOOeB8BwNlB7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.048 [XNIO-1 task-2] Q6ERKe_ySiOOeB8BwNlB7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.048 [XNIO-1 task-2] Q6ERKe_ySiOOeB8BwNlB7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.049 [XNIO-1 task-2] Q6ERKe_ySiOOeB8BwNlB7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:44.052 [XNIO-1 task-4] RDyfFTzTRaOemHhpQDs_Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.052 [XNIO-1 task-4] RDyfFTzTRaOemHhpQDs_Nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.052 [XNIO-1 task-4] RDyfFTzTRaOemHhpQDs_Nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.053 [XNIO-1 task-4] RDyfFTzTRaOemHhpQDs_Nw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:44.047 [XNIO-1 task-1] pzMOn_04TsGc-KKtW4FckQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.059 [XNIO-1 task-2] Q6ERKe_ySiOOeB8BwNlB7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:44.061 [XNIO-1 task-1] SNgvqU8LTO6Ex0cFCCxxEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.061 [XNIO-1 task-1] SNgvqU8LTO6Ex0cFCCxxEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.061 [XNIO-1 task-1] SNgvqU8LTO6Ex0cFCCxxEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.062 [XNIO-1 task-1] SNgvqU8LTO6Ex0cFCCxxEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.066 [XNIO-1 task-2] Q6ERKe_ySiOOeB8BwNlB7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.067 [XNIO-1 task-1] SNgvqU8LTO6Ex0cFCCxxEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.068 [XNIO-1 task-4] RDyfFTzTRaOemHhpQDs_Nw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.074 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8d33e046 +20:00:44.077 [XNIO-1 task-2] xaZcx3OkTCKzmR0IbOxJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.077 [XNIO-1 task-2] xaZcx3OkTCKzmR0IbOxJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.078 [XNIO-1 task-2] xaZcx3OkTCKzmR0IbOxJqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.080 [XNIO-1 task-2] xaZcx3OkTCKzmR0IbOxJqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.082 [XNIO-1 task-4] Cg9fc0IPSbKPFIPI0gmx6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.083 [XNIO-1 task-4] Cg9fc0IPSbKPFIPI0gmx6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.083 [XNIO-1 task-4] Cg9fc0IPSbKPFIPI0gmx6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.083 [XNIO-1 task-4] Cg9fc0IPSbKPFIPI0gmx6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4f3cc51e-928d-4632-b8e2-301d80446e3e scope = null +20:00:44.085 [XNIO-1 task-2] xaZcx3OkTCKzmR0IbOxJqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.095 [XNIO-1 task-2] FO9a92uoSuyaDAe6pHRoOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.095 [XNIO-1 task-2] FO9a92uoSuyaDAe6pHRoOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.095 [XNIO-1 task-2] FO9a92uoSuyaDAe6pHRoOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.096 [XNIO-1 task-2] FO9a92uoSuyaDAe6pHRoOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.096 [XNIO-1 task-1] XYim6od4S96ur7usLVspQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.096 [XNIO-1 task-1] XYim6od4S96ur7usLVspQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.097 [XNIO-1 task-1] XYim6od4S96ur7usLVspQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.097 [XNIO-1 task-1] XYim6od4S96ur7usLVspQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cj7af6RpSAi7lmK6Q9ycFQ redirectUri = http://localhost:8080/authorization +20:00:44.098 [XNIO-1 task-4] Cg9fc0IPSbKPFIPI0gmx6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.102 [XNIO-1 task-2] FO9a92uoSuyaDAe6pHRoOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.105 [XNIO-1 task-1] XYim6od4S96ur7usLVspQw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:44.107 [XNIO-1 task-2] ElqnrleGQGGCXYBAl1asEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.107 [XNIO-1 task-2] ElqnrleGQGGCXYBAl1asEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.107 [XNIO-1 task-2] ElqnrleGQGGCXYBAl1asEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.107 [XNIO-1 task-2] ElqnrleGQGGCXYBAl1asEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.112 [XNIO-1 task-4] -UjHyxJLQ3-6Pr5lDRjpSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.112 [XNIO-1 task-4] -UjHyxJLQ3-6Pr5lDRjpSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.112 [XNIO-1 task-4] -UjHyxJLQ3-6Pr5lDRjpSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.113 [XNIO-1 task-4] -UjHyxJLQ3-6Pr5lDRjpSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 36ffb109-43fe-472e-818b-1c6b8674440a scope = null +20:00:44.113 [XNIO-1 task-2] ElqnrleGQGGCXYBAl1asEg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.119 [XNIO-1 task-2] CYG9V29IRMWRldUSaMHdtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.119 [XNIO-1 task-2] CYG9V29IRMWRldUSaMHdtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.120 [XNIO-1 task-2] CYG9V29IRMWRldUSaMHdtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.120 [XNIO-1 task-2] CYG9V29IRMWRldUSaMHdtQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.125 [XNIO-1 task-4] -UjHyxJLQ3-6Pr5lDRjpSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.130 [XNIO-1 task-2] CYG9V29IRMWRldUSaMHdtQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.141 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.141 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.141 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.141 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.142 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.142 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.142 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:44.142 [XNIO-1 task-1] KJ3b7tHTQRanxI7ex4pgJA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 50df68cd-67c8-4f88-a608-cd88f5a8502e scope = null +20:00:44.147 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:81befe2d +20:00:44.148 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8d33e046 +20:00:44.150 [XNIO-1 task-4] rJsUsJw0SV-QPDxaUxBsnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.150 [XNIO-1 task-4] rJsUsJw0SV-QPDxaUxBsnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.150 [XNIO-1 task-4] rJsUsJw0SV-QPDxaUxBsnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.150 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d424af35-945f-4aaa-b6b7-7df3878914f5 +20:00:44.151 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.151 [XNIO-1 task-1] KJ3b7tHTQRanxI7ex4pgJA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.151 [XNIO-1 task-2] XMWUoLh2T4mmb95gsbLPkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.159 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d424af35-945f-4aaa-b6b7-7df3878914f5 +20:00:44.161 [XNIO-1 task-2] SOXtTNYiR1-nJrtFrVOusw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.162 [XNIO-1 task-2] SOXtTNYiR1-nJrtFrVOusw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.162 [XNIO-1 task-2] SOXtTNYiR1-nJrtFrVOusw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.162 [XNIO-1 task-2] SOXtTNYiR1-nJrtFrVOusw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.168 [XNIO-1 task-2] SOXtTNYiR1-nJrtFrVOusw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.169 [XNIO-1 task-1] yimwWHpjSve3n4eR3CA7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.169 [XNIO-1 task-1] yimwWHpjSve3n4eR3CA7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.169 [XNIO-1 task-1] yimwWHpjSve3n4eR3CA7wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.170 [XNIO-1 task-1] yimwWHpjSve3n4eR3CA7wA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 66996ad6-84d9-4c4d-b421-33c3d912c287 scope = null +20:00:44.170 [XNIO-1 task-4] rJsUsJw0SV-QPDxaUxBsnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.173 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9a7f2307-e3a4-4ddf-8acc-d43be72481ab +20:00:44.178 [XNIO-1 task-2] jRoefEaEQTuHYnaWNlEDVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.178 [XNIO-1 task-2] jRoefEaEQTuHYnaWNlEDVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.179 [XNIO-1 task-2] jRoefEaEQTuHYnaWNlEDVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.179 [XNIO-1 task-2] jRoefEaEQTuHYnaWNlEDVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", authorization) +20:00:44.183 [XNIO-1 task-1] yimwWHpjSve3n4eR3CA7wA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.184 [XNIO-1 task-2] jRoefEaEQTuHYnaWNlEDVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.186 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad5eda0c-2bc9-43a1-aa0f-4dbe18715a20 +20:00:44.187 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad5eda0c-2bc9-43a1-aa0f-4dbe18715a20 +20:00:44.191 [XNIO-1 task-2] xu7MNWBpT_qJL6n99c9quw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.191 [XNIO-1 task-2] xu7MNWBpT_qJL6n99c9quw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.192 [XNIO-1 task-2] xu7MNWBpT_qJL6n99c9quw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.193 [XNIO-1 task-2] xu7MNWBpT_qJL6n99c9quw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.198 [XNIO-1 task-2] xu7MNWBpT_qJL6n99c9quw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.201 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:81befe2d +20:00:44.202 [XNIO-1 task-2] bLwTD-Q0Q7aTKIMhgy0svA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.202 [XNIO-1 task-2] bLwTD-Q0Q7aTKIMhgy0svA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.203 [XNIO-1 task-2] bLwTD-Q0Q7aTKIMhgy0svA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.203 [XNIO-1 task-2] bLwTD-Q0Q7aTKIMhgy0svA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.208 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8d33e046 +20:00:44.208 [XNIO-1 task-2] bLwTD-Q0Q7aTKIMhgy0svA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.214 [XNIO-1 task-2] IvA4A2Y7Qp-0fTVUOQjM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.214 [XNIO-1 task-2] IvA4A2Y7Qp-0fTVUOQjM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.215 [XNIO-1 task-2] IvA4A2Y7Qp-0fTVUOQjM-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.215 [XNIO-1 task-2] IvA4A2Y7Qp-0fTVUOQjM-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.218 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8d33e046 +20:00:44.221 [XNIO-1 task-2] IvA4A2Y7Qp-0fTVUOQjM-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.227 [XNIO-1 task-2] ND2XCDWMSfmzn0gAd_FFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.227 [XNIO-1 task-2] ND2XCDWMSfmzn0gAd_FFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.228 [XNIO-1 task-2] ND2XCDWMSfmzn0gAd_FFww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.228 [XNIO-1 task-2] ND2XCDWMSfmzn0gAd_FFww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.236 [XNIO-1 task-2] ND2XCDWMSfmzn0gAd_FFww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.240 [XNIO-1 task-2] se6CNQyLRUm9ndEaPcXwgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.240 [XNIO-1 task-2] se6CNQyLRUm9ndEaPcXwgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.241 [XNIO-1 task-2] se6CNQyLRUm9ndEaPcXwgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.241 [XNIO-1 task-2] se6CNQyLRUm9ndEaPcXwgg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.249 [XNIO-1 task-2] se6CNQyLRUm9ndEaPcXwgg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.266 [XNIO-1 task-2] DNVwtAQeTpK4b0Uf8GAJMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.268 [XNIO-1 task-2] DNVwtAQeTpK4b0Uf8GAJMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.268 [XNIO-1 task-2] DNVwtAQeTpK4b0Uf8GAJMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.269 [XNIO-1 task-2] DNVwtAQeTpK4b0Uf8GAJMg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.274 [XNIO-1 task-2] DNVwtAQeTpK4b0Uf8GAJMg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.280 [XNIO-1 task-2] G6HbT4-RT8Ou810KOWxzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.280 [XNIO-1 task-2] G6HbT4-RT8Ou810KOWxzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.280 [XNIO-1 task-2] G6HbT4-RT8Ou810KOWxzfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.280 [XNIO-1 task-2] G6HbT4-RT8Ou810KOWxzfw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.287 [XNIO-1 task-2] G6HbT4-RT8Ou810KOWxzfw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.294 [XNIO-1 task-2] iSX78qOiRMOi9Hsc2-jlqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.294 [XNIO-1 task-2] iSX78qOiRMOi9Hsc2-jlqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.295 [XNIO-1 task-2] iSX78qOiRMOi9Hsc2-jlqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.295 [XNIO-1 task-2] iSX78qOiRMOi9Hsc2-jlqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.301 [XNIO-1 task-2] iSX78qOiRMOi9Hsc2-jlqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.306 [XNIO-1 task-2] a9PaV0NbTgmxcqo6MRCTJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.306 [XNIO-1 task-2] a9PaV0NbTgmxcqo6MRCTJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.306 [XNIO-1 task-2] a9PaV0NbTgmxcqo6MRCTJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.307 [XNIO-1 task-2] a9PaV0NbTgmxcqo6MRCTJg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.314 [XNIO-1 task-1] p9edqVVIQuSkIVZzXW_n9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.314 [XNIO-1 task-1] p9edqVVIQuSkIVZzXW_n9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.314 [XNIO-1 task-1] p9edqVVIQuSkIVZzXW_n9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.315 [XNIO-1 task-1] p9edqVVIQuSkIVZzXW_n9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OzXxB_LtRB-TdiIdWdQHow redirectUri = http://localhost:8080/authorization +20:00:44.315 [XNIO-1 task-2] a9PaV0NbTgmxcqo6MRCTJg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.319 [XNIO-1 task-2] wT2tLYnoRa-nnOplk73fUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.319 [XNIO-1 task-2] wT2tLYnoRa-nnOplk73fUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.319 [XNIO-1 task-2] wT2tLYnoRa-nnOplk73fUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.320 [XNIO-1 task-2] wT2tLYnoRa-nnOplk73fUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.323 [XNIO-1 task-1] p9edqVVIQuSkIVZzXW_n9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.333 [XNIO-1 task-2] wT2tLYnoRa-nnOplk73fUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.336 [XNIO-1 task-2] Ai53oX4qTWW3k2gAJTS1zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.336 [XNIO-1 task-2] Ai53oX4qTWW3k2gAJTS1zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.337 [XNIO-1 task-2] Ai53oX4qTWW3k2gAJTS1zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.337 [XNIO-1 task-2] Ai53oX4qTWW3k2gAJTS1zg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:44.339 [XNIO-1 task-1] J-gMulaOT6O6CuIr4moUWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.339 [XNIO-1 task-1] J-gMulaOT6O6CuIr4moUWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.339 [XNIO-1 task-1] J-gMulaOT6O6CuIr4moUWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.339 [XNIO-1 task-1] J-gMulaOT6O6CuIr4moUWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:44.340 [XNIO-1 task-4] ZhmEi9SPQ1WLAH5ikIghKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.340 [XNIO-1 task-4] ZhmEi9SPQ1WLAH5ikIghKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.340 [XNIO-1 task-4] ZhmEi9SPQ1WLAH5ikIghKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.340 [XNIO-1 task-4] ZhmEi9SPQ1WLAH5ikIghKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:44.343 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9a7f2307-e3a4-4ddf-8acc-d43be72481ab +20:00:44.348 [XNIO-1 task-4] ZhmEi9SPQ1WLAH5ikIghKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.348 [XNIO-1 task-4] ZhmEi9SPQ1WLAH5ikIghKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.352 [XNIO-1 task-1] J-gMulaOT6O6CuIr4moUWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.356 [XNIO-1 task-2] EmX1TQ8vSYeS9Lwjr7mSmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.356 [XNIO-1 task-2] EmX1TQ8vSYeS9Lwjr7mSmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.356 [XNIO-1 task-2] EmX1TQ8vSYeS9Lwjr7mSmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.357 [XNIO-1 task-2] EmX1TQ8vSYeS9Lwjr7mSmw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:44.357 [XNIO-1 task-4] bIny7LKFQlC_fFhC4rKPzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.358 [XNIO-1 task-4] bIny7LKFQlC_fFhC4rKPzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.358 [XNIO-1 task-4] bIny7LKFQlC_fFhC4rKPzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.358 [XNIO-1 task-4] bIny7LKFQlC_fFhC4rKPzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:44.363 [XNIO-1 task-2] EmX1TQ8vSYeS9Lwjr7mSmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.370 [XNIO-1 task-1] vXqA-axnT_--yynUrqZzng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.370 [XNIO-1 task-1] vXqA-axnT_--yynUrqZzng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.370 [XNIO-1 task-1] vXqA-axnT_--yynUrqZzng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.370 [XNIO-1 task-1] vXqA-axnT_--yynUrqZzng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzNkOGE2ODQtYzFkZC00NzlmLWEyYzItMTUyZDhhZjAxNWUwOl91OEFCN29tU3BlQ1gwYnJNLV9MU1E=", "Basic YzNkOGE2ODQtYzFkZC00NzlmLWEyYzItMTUyZDhhZjAxNWUwOl91OEFCN29tU3BlQ1gwYnJNLV9MU1E=", authorization) +20:00:44.371 [XNIO-1 task-4] bIny7LKFQlC_fFhC4rKPzA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.379 [XNIO-1 task-1] vXqA-axnT_--yynUrqZzng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.388 [XNIO-1 task-1] 6CzvhyHjT1SWGtD-dFOCGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.388 [XNIO-1 task-1] 6CzvhyHjT1SWGtD-dFOCGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.388 [XNIO-1 task-1] 6CzvhyHjT1SWGtD-dFOCGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.389 [XNIO-1 task-1] 6CzvhyHjT1SWGtD-dFOCGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzNkOGE2ODQtYzFkZC00NzlmLWEyYzItMTUyZDhhZjAxNWUwOl91OEFCN29tU3BlQ1gwYnJNLV9MU1E=", "Basic YzNkOGE2ODQtYzFkZC00NzlmLWEyYzItMTUyZDhhZjAxNWUwOl91OEFCN29tU3BlQ1gwYnJNLV9MU1E=", authorization) +20:00:44.396 [XNIO-1 task-4] nrxdyMB9STmLMEQcnx80tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.396 [XNIO-1 task-4] nrxdyMB9STmLMEQcnx80tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.397 [XNIO-1 task-4] nrxdyMB9STmLMEQcnx80tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.397 [XNIO-1 task-4] nrxdyMB9STmLMEQcnx80tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", authorization) +20:00:44.399 [XNIO-1 task-1] 6CzvhyHjT1SWGtD-dFOCGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.405 [XNIO-1 task-1] YjRyLtIpTKyExDUhA4asHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.406 [XNIO-1 task-1] YjRyLtIpTKyExDUhA4asHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.406 [XNIO-1 task-4] nrxdyMB9STmLMEQcnx80tw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:44.406 [XNIO-1 task-4] nrxdyMB9STmLMEQcnx80tw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.406 [XNIO-1 task-1] YjRyLtIpTKyExDUhA4asHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.407 [XNIO-1 task-2] JuvS6p7eSYm0AdyliFAWQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.407 [XNIO-1 task-2] JuvS6p7eSYm0AdyliFAWQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.407 [XNIO-1 task-2] JuvS6p7eSYm0AdyliFAWQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.407 [XNIO-1 task-1] YjRyLtIpTKyExDUhA4asHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Yf_6Km7oTSy8IW0r-1RnFA redirectUri = http://localhost:8080/authorization +20:00:44.408 [XNIO-1 task-2] JuvS6p7eSYm0AdyliFAWQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.418 [XNIO-1 task-2] JuvS6p7eSYm0AdyliFAWQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.429 [XNIO-1 task-2] 6ShhOKfGR0KDQZqAwNTwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.429 [XNIO-1 task-2] 6ShhOKfGR0KDQZqAwNTwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.429 [XNIO-1 task-2] 6ShhOKfGR0KDQZqAwNTwHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.430 [XNIO-1 task-2] 6ShhOKfGR0KDQZqAwNTwHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.435 [XNIO-1 task-2] 6ShhOKfGR0KDQZqAwNTwHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.443 [XNIO-1 task-2] PdBaZQzOTCKlgGZ6aCDlyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.443 [XNIO-1 task-2] PdBaZQzOTCKlgGZ6aCDlyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.443 [XNIO-1 task-2] PdBaZQzOTCKlgGZ6aCDlyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.444 [XNIO-1 task-2] PdBaZQzOTCKlgGZ6aCDlyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:44.444 [XNIO-1 task-1] YjRyLtIpTKyExDUhA4asHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.453 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fba845dd-20a8-41e8-a86d-3314db64de1e +20:00:44.455 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fba845dd-20a8-41e8-a86d-3314db64de1e +20:00:44.461 [XNIO-1 task-2] PdBaZQzOTCKlgGZ6aCDlyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.468 [XNIO-1 task-2] hcG-jt-xTGK3RMOkqLXMvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.468 [XNIO-1 task-2] hcG-jt-xTGK3RMOkqLXMvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.468 [XNIO-1 task-2] hcG-jt-xTGK3RMOkqLXMvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.468 [XNIO-1 task-2] hcG-jt-xTGK3RMOkqLXMvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.481 [XNIO-1 task-2] hcG-jt-xTGK3RMOkqLXMvQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.482 [XNIO-1 task-1] ECQvRV7mT3yVAe1LzMeQIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.482 [XNIO-1 task-1] ECQvRV7mT3yVAe1LzMeQIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.482 [XNIO-1 task-1] ECQvRV7mT3yVAe1LzMeQIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.483 [XNIO-1 task-1] ECQvRV7mT3yVAe1LzMeQIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ZuKM0Bl9TqSYCFoylSdnWA redirectUri = http://localhost:8080/authorization +20:00:44.487 [XNIO-1 task-2] E-ELo2X3R6qo2xgCrBentw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.487 [XNIO-1 task-2] E-ELo2X3R6qo2xgCrBentw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.488 [XNIO-1 task-2] E-ELo2X3R6qo2xgCrBentw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.489 [XNIO-1 task-2] E-ELo2X3R6qo2xgCrBentw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.496 [XNIO-1 task-2] E-ELo2X3R6qo2xgCrBentw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.498 [XNIO-1 task-1] ECQvRV7mT3yVAe1LzMeQIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.501 [XNIO-1 task-2] pYL_W7NaQ0CgJJ1EVvMAuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.501 [XNIO-1 task-2] pYL_W7NaQ0CgJJ1EVvMAuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.501 [XNIO-1 task-2] pYL_W7NaQ0CgJJ1EVvMAuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.502 [XNIO-1 task-2] pYL_W7NaQ0CgJJ1EVvMAuw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:44.507 [XNIO-1 task-2] pYL_W7NaQ0CgJJ1EVvMAuw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.513 [XNIO-1 task-2] 08wtHx00QvOGqoeCpMCw7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.513 [XNIO-1 task-2] 08wtHx00QvOGqoeCpMCw7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.513 [XNIO-1 task-2] 08wtHx00QvOGqoeCpMCw7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.513 [XNIO-1 task-2] 08wtHx00QvOGqoeCpMCw7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", authorization) +20:00:44.519 [XNIO-1 task-2] 08wtHx00QvOGqoeCpMCw7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.529 [XNIO-1 task-2] fnRbB01TRdygP09ShNil2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.529 [XNIO-1 task-2] fnRbB01TRdygP09ShNil2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.529 [XNIO-1 task-2] fnRbB01TRdygP09ShNil2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.529 [XNIO-1 task-2] fnRbB01TRdygP09ShNil2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:44.535 [XNIO-1 task-2] fnRbB01TRdygP09ShNil2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.544 [XNIO-1 task-2] gSjEefXjTemTWUe4TIpRow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.544 [XNIO-1 task-2] gSjEefXjTemTWUe4TIpRow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.545 [XNIO-1 task-2] gSjEefXjTemTWUe4TIpRow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.545 [XNIO-1 task-2] gSjEefXjTemTWUe4TIpRow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:44.546 [XNIO-1 task-1] qAXbUEJYSo2gM0KY4eoJHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.546 [XNIO-1 task-1] qAXbUEJYSo2gM0KY4eoJHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.546 [XNIO-1 task-1] qAXbUEJYSo2gM0KY4eoJHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.547 [XNIO-1 task-1] qAXbUEJYSo2gM0KY4eoJHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGRmMmNjN2QtZTRiNy00YTQxLTgwZmUtMGZmNGQyNzQ4NjBiOktKN0xwOHZyVF9HT19HVGdQazlHRWc=", "Basic ZGRmMmNjN2QtZTRiNy00YTQxLTgwZmUtMGZmNGQyNzQ4NjBiOktKN0xwOHZyVF9HT19HVGdQazlHRWc=", authorization) +20:00:44.555 [XNIO-1 task-1] qAXbUEJYSo2gM0KY4eoJHg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.565 [XNIO-1 task-4] 8sjGUKEGQymKu9kzq83DIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.565 [XNIO-1 task-4] 8sjGUKEGQymKu9kzq83DIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.565 [XNIO-1 task-4] 8sjGUKEGQymKu9kzq83DIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.566 [XNIO-1 task-4] 8sjGUKEGQymKu9kzq83DIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", authorization) +20:00:44.571 [XNIO-1 task-4] 8sjGUKEGQymKu9kzq83DIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.572 [XNIO-1 task-1] kO5qpuHnRj6bXByfM0p-Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.572 [XNIO-1 task-1] kO5qpuHnRj6bXByfM0p-Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.573 [XNIO-1 task-1] kO5qpuHnRj6bXByfM0p-Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.573 [XNIO-1 task-1] kO5qpuHnRj6bXByfM0p-Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:44.576 [XNIO-1 task-4] -ksQ4MQ6RJyx8oQju4t1lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.576 [XNIO-1 task-4] -ksQ4MQ6RJyx8oQju4t1lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.576 [XNIO-1 task-4] -ksQ4MQ6RJyx8oQju4t1lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.577 [XNIO-1 task-4] -ksQ4MQ6RJyx8oQju4t1lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTNhOThmYTItZmM3Ni00NGFhLThiZjgtMjQ2YTk1ZGFjZjk5OllUVTJNQl9uVGc2TDhUd0RiRXByT2c=", "Basic MTNhOThmYTItZmM3Ni00NGFhLThiZjgtMjQ2YTk1ZGFjZjk5OllUVTJNQl9uVGc2TDhUd0RiRXByT2c=", authorization) +20:00:44.581 [XNIO-1 task-1] kO5qpuHnRj6bXByfM0p-Mw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:44.582 [XNIO-1 task-4] -ksQ4MQ6RJyx8oQju4t1lw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.582 [XNIO-1 task-1] kO5qpuHnRj6bXByfM0p-Mw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.586 [XNIO-1 task-4] -GQ2EWh6Q6SLk_8fdj4sbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.586 [XNIO-1 task-4] -GQ2EWh6Q6SLk_8fdj4sbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.586 [XNIO-1 task-4] -GQ2EWh6Q6SLk_8fdj4sbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.587 [XNIO-1 task-4] -GQ2EWh6Q6SLk_8fdj4sbg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.592 [XNIO-1 task-4] -GQ2EWh6Q6SLk_8fdj4sbg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.594 [XNIO-1 task-1] x155CRzqSvySZO-UZGAoVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.594 [XNIO-1 task-1] x155CRzqSvySZO-UZGAoVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.594 [XNIO-1 task-1] x155CRzqSvySZO-UZGAoVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.595 [XNIO-1 task-1] x155CRzqSvySZO-UZGAoVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c9088f28-7663-4c41-8a9b-ff4effd77848 scope = null +20:00:44.597 [XNIO-1 task-4] O5X7GMwFSUebpNd3qec8nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.597 [XNIO-1 task-4] O5X7GMwFSUebpNd3qec8nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.597 [XNIO-1 task-4] O5X7GMwFSUebpNd3qec8nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.597 [XNIO-1 task-4] O5X7GMwFSUebpNd3qec8nA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTNhOThmYTItZmM3Ni00NGFhLThiZjgtMjQ2YTk1ZGFjZjk5OllUVTJNQl9uVGc2TDhUd0RiRXByT2c=", "Basic MTNhOThmYTItZmM3Ni00NGFhLThiZjgtMjQ2YTk1ZGFjZjk5OllUVTJNQl9uVGc2TDhUd0RiRXByT2c=", authorization) +20:00:44.602 [XNIO-1 task-4] O5X7GMwFSUebpNd3qec8nA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.603 [XNIO-1 task-2] gSjEefXjTemTWUe4TIpRow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.604 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:220d3d54 +20:00:44.605 [XNIO-1 task-4] O5X7GMwFSUebpNd3qec8nA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.607 [XNIO-1 task-1] x155CRzqSvySZO-UZGAoVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.610 [XNIO-1 task-4] Tp2cw1A_SHC4olauaMqEpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.610 [XNIO-1 task-4] Tp2cw1A_SHC4olauaMqEpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.610 [XNIO-1 task-4] Tp2cw1A_SHC4olauaMqEpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.610 [XNIO-1 task-4] Tp2cw1A_SHC4olauaMqEpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.617 [XNIO-1 task-4] Tp2cw1A_SHC4olauaMqEpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.623 [XNIO-1 task-1] RI5CQZM3TGeyTKjEQERnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.624 [XNIO-1 task-1] RI5CQZM3TGeyTKjEQERnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.624 [XNIO-1 task-1] RI5CQZM3TGeyTKjEQERnxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.624 [XNIO-1 task-1] RI5CQZM3TGeyTKjEQERnxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.631 [XNIO-1 task-1] RI5CQZM3TGeyTKjEQERnxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.636 [XNIO-1 task-1] Fc2RNMsBRFStrdbsGiAWVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.637 [XNIO-1 task-1] Fc2RNMsBRFStrdbsGiAWVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.637 [XNIO-1 task-1] Fc2RNMsBRFStrdbsGiAWVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.638 [XNIO-1 task-1] Fc2RNMsBRFStrdbsGiAWVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.643 [XNIO-1 task-1] Fc2RNMsBRFStrdbsGiAWVA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.649 [XNIO-1 task-1] DuHVYpOWRl-xNKiPXrpEpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.649 [XNIO-1 task-1] DuHVYpOWRl-xNKiPXrpEpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.649 [XNIO-1 task-1] DuHVYpOWRl-xNKiPXrpEpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.650 [XNIO-1 task-1] DuHVYpOWRl-xNKiPXrpEpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.655 [XNIO-1 task-1] DuHVYpOWRl-xNKiPXrpEpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.660 [XNIO-1 task-1] K8IJQ3q_RR6dcrN0LtOPKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.660 [XNIO-1 task-1] K8IJQ3q_RR6dcrN0LtOPKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.661 [XNIO-1 task-1] K8IJQ3q_RR6dcrN0LtOPKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.661 [XNIO-1 task-1] K8IJQ3q_RR6dcrN0LtOPKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.667 [XNIO-1 task-1] K8IJQ3q_RR6dcrN0LtOPKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.676 [XNIO-1 task-1] KTF5uJzgSx6hIfOW898L2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.677 [XNIO-1 task-1] KTF5uJzgSx6hIfOW898L2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.677 [XNIO-1 task-1] KTF5uJzgSx6hIfOW898L2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.677 [XNIO-1 task-1] KTF5uJzgSx6hIfOW898L2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:44.678 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:63623ab5 +20:00:44.683 [XNIO-1 task-1] KTF5uJzgSx6hIfOW898L2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.696 [XNIO-1 task-1] aJtZpqtkQ46MxmOc3uwX_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.696 [XNIO-1 task-1] aJtZpqtkQ46MxmOc3uwX_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.697 [XNIO-1 task-1] aJtZpqtkQ46MxmOc3uwX_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.697 [XNIO-1 task-1] aJtZpqtkQ46MxmOc3uwX_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2FjNDMxMTktYzQxNi00NzYxLTk3ODYtZmI5MmI1Y2EwZDQ5OklvZGRFODRrVC1pS1RSWjVqMUJWM3c=", "Basic N2FjNDMxMTktYzQxNi00NzYxLTk3ODYtZmI5MmI1Y2EwZDQ5OklvZGRFODRrVC1pS1RSWjVqMUJWM3c=", authorization) +20:00:44.704 [XNIO-1 task-1] aJtZpqtkQ46MxmOc3uwX_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.712 [XNIO-1 task-1] oZfQqu4RQn2zqmrwdkkPnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.712 [XNIO-1 task-1] oZfQqu4RQn2zqmrwdkkPnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.712 [XNIO-1 task-1] oZfQqu4RQn2zqmrwdkkPnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.713 [XNIO-1 task-1] oZfQqu4RQn2zqmrwdkkPnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:44.714 [XNIO-1 task-2] EruEnOZZTta2zPik4JLvrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.714 [XNIO-1 task-2] EruEnOZZTta2zPik4JLvrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.715 [XNIO-1 task-2] EruEnOZZTta2zPik4JLvrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.715 [XNIO-1 task-2] EruEnOZZTta2zPik4JLvrw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:44.720 [XNIO-1 task-4] LNrluWiDRgiA4inuWtFkKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.720 [XNIO-1 task-4] LNrluWiDRgiA4inuWtFkKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.721 [XNIO-1 task-4] LNrluWiDRgiA4inuWtFkKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.721 [XNIO-1 task-4] LNrluWiDRgiA4inuWtFkKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:44.723 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:a37e851d-2e46-4f2a-aa82-2a8e628d8858 +20:00:44.724 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a37e851d-2e46-4f2a-aa82-2a8e628d8858 +20:00:44.724 [XNIO-1 task-1] oZfQqu4RQn2zqmrwdkkPnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.728 [XNIO-1 task-4] LNrluWiDRgiA4inuWtFkKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.732 [XNIO-1 task-1] 1SMANJ_aT-yEArT-wMWOTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.732 [XNIO-1 task-1] 1SMANJ_aT-yEArT-wMWOTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.733 [XNIO-1 task-1] 1SMANJ_aT-yEArT-wMWOTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.733 [XNIO-1 task-1] 1SMANJ_aT-yEArT-wMWOTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:44.738 [XNIO-1 task-2] EruEnOZZTta2zPik4JLvrw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:44.738 [XNIO-1 task-2] EruEnOZZTta2zPik4JLvrw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.738 [XNIO-1 task-1] 1SMANJ_aT-yEArT-wMWOTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.746 [XNIO-1 task-1] fQeSYc6XRoWo2jRwVVm8Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.746 [XNIO-1 task-1] fQeSYc6XRoWo2jRwVVm8Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.747 [XNIO-1 task-1] fQeSYc6XRoWo2jRwVVm8Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.748 [XNIO-1 task-1] fQeSYc6XRoWo2jRwVVm8Ng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.757 [XNIO-1 task-1] fQeSYc6XRoWo2jRwVVm8Ng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.758 [XNIO-1 task-2] bS9Rb-cRTtG3BgbZ5Yc6SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.758 [XNIO-1 task-2] bS9Rb-cRTtG3BgbZ5Yc6SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.759 [XNIO-1 task-2] bS9Rb-cRTtG3BgbZ5Yc6SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.759 [XNIO-1 task-2] bS9Rb-cRTtG3BgbZ5Yc6SA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c90dbbac-c857-4fed-b29f-f0a3256ce969 scope = null +20:00:44.764 [XNIO-1 task-1] Tm2Qx3d5TO6jMLN6lh5Hxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.764 [XNIO-1 task-1] Tm2Qx3d5TO6jMLN6lh5Hxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.765 [XNIO-1 task-1] Tm2Qx3d5TO6jMLN6lh5Hxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.765 [XNIO-1 task-1] Tm2Qx3d5TO6jMLN6lh5Hxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.768 [XNIO-1 task-2] bS9Rb-cRTtG3BgbZ5Yc6SA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.771 [XNIO-1 task-1] Tm2Qx3d5TO6jMLN6lh5Hxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.776 [XNIO-1 task-1] hqZRZp0_Rmqa2iU1FQf2hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.776 [XNIO-1 task-1] hqZRZp0_Rmqa2iU1FQf2hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.776 [XNIO-1 task-1] hqZRZp0_Rmqa2iU1FQf2hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.777 [XNIO-1 task-1] hqZRZp0_Rmqa2iU1FQf2hg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.782 [XNIO-1 task-1] hqZRZp0_Rmqa2iU1FQf2hg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.798 [XNIO-1 task-1] YIISfNEgR0CZIV3IUiJDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.798 [XNIO-1 task-1] YIISfNEgR0CZIV3IUiJDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.798 [XNIO-1 task-1] YIISfNEgR0CZIV3IUiJDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.799 [XNIO-1 task-1] YIISfNEgR0CZIV3IUiJDgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 8ysM9rnjSamHaO1byr3mBg redirectUri = http://localhost:8080/authorization +20:00:44.801 [XNIO-1 task-2] a5QlVk_bQkCUDXN2SuDtBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.801 [XNIO-1 task-2] a5QlVk_bQkCUDXN2SuDtBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.801 [XNIO-1 task-2] a5QlVk_bQkCUDXN2SuDtBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.802 [XNIO-1 task-2] a5QlVk_bQkCUDXN2SuDtBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.806 [XNIO-1 task-1] YIISfNEgR0CZIV3IUiJDgQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.808 [XNIO-1 task-2] a5QlVk_bQkCUDXN2SuDtBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.821 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1d08ebb5 +20:00:44.822 [XNIO-1 task-2] hh6R0LeESbSSHpM7vZjMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.822 [XNIO-1 task-2] hh6R0LeESbSSHpM7vZjMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.822 [XNIO-1 task-2] hh6R0LeESbSSHpM7vZjMHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.822 [XNIO-1 task-2] hh6R0LeESbSSHpM7vZjMHg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.827 [XNIO-1 task-2] hh6R0LeESbSSHpM7vZjMHg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.831 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1d08ebb5 +20:00:44.832 [XNIO-1 task-2] f2lw-0DZQ7yAP-5we7iM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.833 [XNIO-1 task-2] f2lw-0DZQ7yAP-5we7iM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.833 [XNIO-1 task-2] f2lw-0DZQ7yAP-5we7iM4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.834 [XNIO-1 task-2] f2lw-0DZQ7yAP-5we7iM4Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.839 [XNIO-1 task-2] f2lw-0DZQ7yAP-5we7iM4Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.846 [XNIO-1 task-2] dF9AcRz_TOu_0OJROiLdcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.846 [XNIO-1 task-2] dF9AcRz_TOu_0OJROiLdcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.847 [XNIO-1 task-2] dF9AcRz_TOu_0OJROiLdcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.847 [XNIO-1 task-2] dF9AcRz_TOu_0OJROiLdcQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.853 [XNIO-1 task-2] dF9AcRz_TOu_0OJROiLdcQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.859 [XNIO-1 task-2] 2ldVPE4rSre2fg_mvPIbCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.859 [XNIO-1 task-2] 2ldVPE4rSre2fg_mvPIbCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.859 [XNIO-1 task-2] 2ldVPE4rSre2fg_mvPIbCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.860 [XNIO-1 task-2] 2ldVPE4rSre2fg_mvPIbCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.867 [XNIO-1 task-2] 2ldVPE4rSre2fg_mvPIbCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.872 [XNIO-1 task-2] aYdwpozQShWN3fJkWH3m1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.872 [XNIO-1 task-2] aYdwpozQShWN3fJkWH3m1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.872 [XNIO-1 task-2] aYdwpozQShWN3fJkWH3m1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.873 [XNIO-1 task-2] aYdwpozQShWN3fJkWH3m1Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6Pjl7HoMQ2SJyALWa08UDw redirectUri = http://localhost:8080/authorization +20:00:44.873 [XNIO-1 task-1] 94zxoXi3SqSQJhforuYZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.873 [XNIO-1 task-1] 94zxoXi3SqSQJhforuYZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.873 [XNIO-1 task-1] 94zxoXi3SqSQJhforuYZuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:44.874 [XNIO-1 task-1] 94zxoXi3SqSQJhforuYZuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:44.885 [XNIO-1 task-2] aYdwpozQShWN3fJkWH3m1Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.894 [XNIO-1 task-1] 94zxoXi3SqSQJhforuYZuA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.907 [XNIO-1 task-2] __yLNPg5Tl6GzxkhLniOMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.907 [XNIO-1 task-2] __yLNPg5Tl6GzxkhLniOMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.909 [XNIO-1 task-2] __yLNPg5Tl6GzxkhLniOMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.909 [XNIO-1 task-2] __yLNPg5Tl6GzxkhLniOMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:44.915 [XNIO-1 task-2] __yLNPg5Tl6GzxkhLniOMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.921 [XNIO-1 task-2] _YUXLxHHTkK_ZlGxTGYfhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.921 [XNIO-1 task-2] _YUXLxHHTkK_ZlGxTGYfhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.921 [XNIO-1 task-2] _YUXLxHHTkK_ZlGxTGYfhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.922 [XNIO-1 task-2] _YUXLxHHTkK_ZlGxTGYfhw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGI5MDlhNTUtZjczYy00OWY2LWE0NWYtNzRhM2I4ZDc5ZTE2OnR4eUhLOExSVE5TNDBCVndWMjQ3Y2c=", "Basic NGI5MDlhNTUtZjczYy00OWY2LWE0NWYtNzRhM2I4ZDc5ZTE2OnR4eUhLOExSVE5TNDBCVndWMjQ3Y2c=", authorization) +20:00:44.930 [XNIO-1 task-2] _YUXLxHHTkK_ZlGxTGYfhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.933 [XNIO-1 task-1] Edr89MSuSbuQkRNdwLm2JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.934 [XNIO-1 task-1] Edr89MSuSbuQkRNdwLm2JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.935 [XNIO-1 task-1] Edr89MSuSbuQkRNdwLm2JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.935 [XNIO-1 task-1] Edr89MSuSbuQkRNdwLm2JA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", authorization) +20:00:44.936 [XNIO-1 task-2] qI1N0hW8TdSdCMmIITrb8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.936 [XNIO-1 task-2] qI1N0hW8TdSdCMmIITrb8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.936 [XNIO-1 task-2] qI1N0hW8TdSdCMmIITrb8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.936 [XNIO-1 task-2] qI1N0hW8TdSdCMmIITrb8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", "Basic NzJjZjMyNDctMTU3Yy00NTZkLTg4YWEtZTU2OWUxNThmMWVlOnFSRE52SkdGUXgteVRrODBLamhpd0E=", authorization) +20:00:44.942 [XNIO-1 task-4] e7eOqJS6RaaWGo3-5TESIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.942 [XNIO-1 task-4] e7eOqJS6RaaWGo3-5TESIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.942 [XNIO-1 task-4] e7eOqJS6RaaWGo3-5TESIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.943 [XNIO-1 task-4] e7eOqJS6RaaWGo3-5TESIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", authorization) +20:00:44.944 [XNIO-1 task-2] qI1N0hW8TdSdCMmIITrb8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.953 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:220d3d54 +20:00:44.952 [XNIO-1 task-2] TrFOdML2RVGoPceX8_SVxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.953 [XNIO-1 task-2] TrFOdML2RVGoPceX8_SVxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.953 [XNIO-1 task-2] TrFOdML2RVGoPceX8_SVxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.956 [XNIO-1 task-2] TrFOdML2RVGoPceX8_SVxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", authorization) +20:00:44.956 [XNIO-1 task-4] e7eOqJS6RaaWGo3-5TESIQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:44.960 [XNIO-1 task-4] e7eOqJS6RaaWGo3-5TESIQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:44.961 [XNIO-1 task-1] Edr89MSuSbuQkRNdwLm2JA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.965 [XNIO-1 task-2] TrFOdML2RVGoPceX8_SVxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.973 [XNIO-1 task-2] zDNFrYalRPC9JNA6uv8Mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.976 [XNIO-1 task-2] zDNFrYalRPC9JNA6uv8Mzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.976 [XNIO-1 task-2] zDNFrYalRPC9JNA6uv8Mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.977 [XNIO-1 task-2] zDNFrYalRPC9JNA6uv8Mzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", authorization) +20:00:44.981 [XNIO-1 task-1] yXGvwFUaRH64RmabXkARrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.981 [XNIO-1 task-1] yXGvwFUaRH64RmabXkARrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.982 [XNIO-1 task-1] yXGvwFUaRH64RmabXkARrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.982 [XNIO-1 task-1] yXGvwFUaRH64RmabXkARrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", authorization) +20:00:44.983 [XNIO-1 task-2] zDNFrYalRPC9JNA6uv8Mzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.988 [XNIO-1 task-2] 7mpXXfYZRM6_UXmhOeszSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.990 [XNIO-1 task-2] 7mpXXfYZRM6_UXmhOeszSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:44.990 [XNIO-1 task-2] 7mpXXfYZRM6_UXmhOeszSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:44.990 [XNIO-1 task-2] 7mpXXfYZRM6_UXmhOeszSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", authorization) +20:00:44.996 [XNIO-1 task-2] 7mpXXfYZRM6_UXmhOeszSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:44.997 [XNIO-1 task-1] yXGvwFUaRH64RmabXkARrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.001 [XNIO-1 task-2] bUKp3oaoSWKZfcOCIiAgFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.001 [XNIO-1 task-2] bUKp3oaoSWKZfcOCIiAgFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.002 [XNIO-1 task-2] bUKp3oaoSWKZfcOCIiAgFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.002 [XNIO-1 task-2] bUKp3oaoSWKZfcOCIiAgFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", authorization) +20:00:45.009 [XNIO-1 task-2] bUKp3oaoSWKZfcOCIiAgFg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.017 [XNIO-1 task-2] 5Wdd8LmQS3C85-MxMKW4dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.017 [XNIO-1 task-2] 5Wdd8LmQS3C85-MxMKW4dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.017 [XNIO-1 task-1] e1dlqMaGQO28TuTfflT-4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.017 [XNIO-1 task-1] e1dlqMaGQO28TuTfflT-4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.018 [XNIO-1 task-1] e1dlqMaGQO28TuTfflT-4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.018 [XNIO-1 task-1] e1dlqMaGQO28TuTfflT-4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:45.018 [XNIO-1 task-2] 5Wdd8LmQS3C85-MxMKW4dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.019 [XNIO-1 task-2] 5Wdd8LmQS3C85-MxMKW4dg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", authorization) +20:00:45.025 [XNIO-1 task-1] e1dlqMaGQO28TuTfflT-4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.030 [XNIO-1 task-1] G1j7117URxSEFdNW8uKdAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.031 [XNIO-1 task-1] G1j7117URxSEFdNW8uKdAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.031 [XNIO-1 task-1] G1j7117URxSEFdNW8uKdAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.031 [XNIO-1 task-1] G1j7117URxSEFdNW8uKdAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDYwMTAwYjEtZjllZi00Mzc5LTgyOTQtNDBmNmZjMWVlNThlOjlvRzVnRkl0U1Q2czNpcTJZWFo5QlE=", "Basic MDYwMTAwYjEtZjllZi00Mzc5LTgyOTQtNDBmNmZjMWVlNThlOjlvRzVnRkl0U1Q2czNpcTJZWFo5QlE=", authorization) +20:00:45.032 [XNIO-1 task-2] 5Wdd8LmQS3C85-MxMKW4dg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.036 [XNIO-1 task-4] duYFzUw1SX2WekpZmvQ1zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.036 [XNIO-1 task-4] duYFzUw1SX2WekpZmvQ1zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.036 [XNIO-1 task-4] duYFzUw1SX2WekpZmvQ1zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.036 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:1d08ebb5 +20:00:45.037 [XNIO-1 task-4] duYFzUw1SX2WekpZmvQ1zg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:45.044 [XNIO-1 task-4] duYFzUw1SX2WekpZmvQ1zg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.050 [XNIO-1 task-1] G1j7117URxSEFdNW8uKdAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.051 [XNIO-1 task-1] G1j7117URxSEFdNW8uKdAA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.051 [XNIO-1 task-4] TjotYay7SCq3hovoX-YddQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.051 [XNIO-1 task-4] TjotYay7SCq3hovoX-YddQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.052 [XNIO-1 task-4] TjotYay7SCq3hovoX-YddQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", authorization) +20:00:45.058 [XNIO-1 task-4] TjotYay7SCq3hovoX-YddQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.064 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:220d3d54 +20:00:45.071 [XNIO-1 task-4] HnxXRSZvRuWV2EUK93ee0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.072 [XNIO-1 task-4] HnxXRSZvRuWV2EUK93ee0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.072 [XNIO-1 task-4] HnxXRSZvRuWV2EUK93ee0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.075 [XNIO-1 task-4] HnxXRSZvRuWV2EUK93ee0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", authorization) +20:00:45.081 [XNIO-1 task-4] HnxXRSZvRuWV2EUK93ee0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.088 [XNIO-1 task-4] 34wwh5AyTT-h88CW6EZQEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.089 [XNIO-1 task-4] 34wwh5AyTT-h88CW6EZQEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.089 [XNIO-1 task-4] 34wwh5AyTT-h88CW6EZQEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.089 [XNIO-1 task-4] 34wwh5AyTT-h88CW6EZQEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", "Basic ZDQyNGFmMzUtOTQ1Zi00YWFhLWI2YjctN2RmMzg3ODkxNGY1Okprcjh0YXJ1UzRlOUdwbDZ2SFE5YUE=", authorization) +20:00:45.095 [XNIO-1 task-4] 34wwh5AyTT-h88CW6EZQEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.097 [XNIO-1 task-1] NBjKCtsiRc-kJa0tugALCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.097 [XNIO-1 task-1] NBjKCtsiRc-kJa0tugALCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.098 [XNIO-1 task-1] NBjKCtsiRc-kJa0tugALCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.098 [XNIO-1 task-1] NBjKCtsiRc-kJa0tugALCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:45.106 [XNIO-1 task-1] NBjKCtsiRc-kJa0tugALCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:45.106 [XNIO-1 task-1] NBjKCtsiRc-kJa0tugALCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.107 [XNIO-1 task-4] lPrrkKTzRRG1t1s7iA-r0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.107 [XNIO-1 task-4] lPrrkKTzRRG1t1s7iA-r0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.107 [XNIO-1 task-4] lPrrkKTzRRG1t1s7iA-r0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.108 [XNIO-1 task-4] lPrrkKTzRRG1t1s7iA-r0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.114 [XNIO-1 task-4] lPrrkKTzRRG1t1s7iA-r0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.121 [XNIO-1 task-1] hv786kFjQhCnuvXPa0fPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.121 [XNIO-1 task-1] hv786kFjQhCnuvXPa0fPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.121 [XNIO-1 task-1] hv786kFjQhCnuvXPa0fPeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.121 [XNIO-1 task-1] hv786kFjQhCnuvXPa0fPeg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.123 [XNIO-1 task-4] u9jF-1b-RiOQ7rVBQUFl2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.123 [XNIO-1 task-4] u9jF-1b-RiOQ7rVBQUFl2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.123 [XNIO-1 task-4] u9jF-1b-RiOQ7rVBQUFl2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.123 [XNIO-1 task-4] u9jF-1b-RiOQ7rVBQUFl2w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 53e31566-31fa-4c6f-a064-21c99388bdfe scope = null +20:00:45.126 [XNIO-1 task-1] hv786kFjQhCnuvXPa0fPeg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.130 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1d08ebb5 +20:00:45.132 [XNIO-1 task-1] brcX5PUwR3KKwmeCMJ87cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.132 [XNIO-1 task-1] brcX5PUwR3KKwmeCMJ87cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.132 [XNIO-1 task-1] brcX5PUwR3KKwmeCMJ87cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.133 [XNIO-1 task-1] brcX5PUwR3KKwmeCMJ87cw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.137 [XNIO-1 task-4] u9jF-1b-RiOQ7rVBQUFl2w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.138 [XNIO-1 task-1] brcX5PUwR3KKwmeCMJ87cw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.147 [XNIO-1 task-1] 8Lg_ZIMgTY23nUc0Pkq3FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.147 [XNIO-1 task-1] 8Lg_ZIMgTY23nUc0Pkq3FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.148 [XNIO-1 task-1] 8Lg_ZIMgTY23nUc0Pkq3FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.148 [XNIO-1 task-1] 8Lg_ZIMgTY23nUc0Pkq3FA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.155 [XNIO-1 task-1] 8Lg_ZIMgTY23nUc0Pkq3FA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.160 [XNIO-1 task-1] TaHJgCk0TcSlAp78eQg_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.160 [XNIO-1 task-1] TaHJgCk0TcSlAp78eQg_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.162 [XNIO-1 task-1] TaHJgCk0TcSlAp78eQg_JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.163 [XNIO-1 task-4] NH406eKARyCDCaRYju802g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.163 [XNIO-1 task-4] NH406eKARyCDCaRYju802g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.164 [XNIO-1 task-4] NH406eKARyCDCaRYju802g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.164 [XNIO-1 task-4] NH406eKARyCDCaRYju802g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.164 [XNIO-1 task-4] NH406eKARyCDCaRYju802g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.174 [XNIO-1 task-1] TaHJgCk0TcSlAp78eQg_JQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.175 [XNIO-1 task-4] NH406eKARyCDCaRYju802g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.180 [XNIO-1 task-4] ES9AZh3WREK3HCe-GiSVIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.181 [XNIO-1 task-4] ES9AZh3WREK3HCe-GiSVIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.182 [XNIO-1 task-4] ES9AZh3WREK3HCe-GiSVIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.182 [XNIO-1 task-4] ES9AZh3WREK3HCe-GiSVIw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:45.195 [XNIO-1 task-1] xghhNi_uQSewiLu_6Jx5Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.195 [XNIO-1 task-1] xghhNi_uQSewiLu_6Jx5Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.196 [XNIO-1 task-1] xghhNi_uQSewiLu_6Jx5Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.196 [XNIO-1 task-1] xghhNi_uQSewiLu_6Jx5Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", authorization) +20:00:45.196 [XNIO-1 task-4] ES9AZh3WREK3HCe-GiSVIw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.202 [XNIO-1 task-4] 2XuZVuBgTRKG36eEYI_PxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.203 [XNIO-1 task-4] 2XuZVuBgTRKG36eEYI_PxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.203 [XNIO-1 task-4] 2XuZVuBgTRKG36eEYI_PxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.203 [XNIO-1 task-4] 2XuZVuBgTRKG36eEYI_PxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGQzYTJhOTItMjQwMC00ZDBiLWI1MTktZmE3NGMwZjYyNjliOnpDcFFHLU9hVEhxeEIyay1GOVdmY1E=", "Basic ZGQzYTJhOTItMjQwMC00ZDBiLWI1MTktZmE3NGMwZjYyNjliOnpDcFFHLU9hVEhxeEIyay1GOVdmY1E=", authorization) +20:00:45.211 [XNIO-1 task-2] 7BPg4z32TQqO9SfPwdOQeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.212 [XNIO-1 task-2] 7BPg4z32TQqO9SfPwdOQeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.212 [XNIO-1 task-2] 7BPg4z32TQqO9SfPwdOQeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.212 [XNIO-1 task-2] 7BPg4z32TQqO9SfPwdOQeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", authorization) +20:00:45.217 [XNIO-1 task-4] 2XuZVuBgTRKG36eEYI_PxQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.227 [XNIO-1 task-4] sUd66JPJRXWBrxIlFjUnVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.230 [XNIO-1 task-2] 7BPg4z32TQqO9SfPwdOQeQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.228 [XNIO-1 task-1] xghhNi_uQSewiLu_6Jx5Lg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.229 [XNIO-1 task-4] sUd66JPJRXWBrxIlFjUnVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.232 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9a336f83-1e81-4fcf-ae57-cfca2f44da53 +20:00:45.232 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a336f83-1e81-4fcf-ae57-cfca2f44da53 +20:00:45.232 [XNIO-1 task-4] sUd66JPJRXWBrxIlFjUnVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.233 [XNIO-1 task-4] sUd66JPJRXWBrxIlFjUnVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.233 [XNIO-1 task-4] sUd66JPJRXWBrxIlFjUnVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +20:00:45.235 [XNIO-1 task-1] x8Mx53AsSl2qiV2LyZabUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.236 [XNIO-1 task-1] x8Mx53AsSl2qiV2LyZabUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.236 [XNIO-1 task-1] x8Mx53AsSl2qiV2LyZabUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = dc6a1814-4246-461a-8d34-7131b7484790 scope = null +20:00:45.240 [XNIO-1 task-4] sUd66JPJRXWBrxIlFjUnVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.244 [XNIO-1 task-2] YCy2I8iCTGqPt0c541zPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.244 [XNIO-1 task-2] YCy2I8iCTGqPt0c541zPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.244 [XNIO-1 task-2] YCy2I8iCTGqPt0c541zPtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.245 [XNIO-1 task-2] YCy2I8iCTGqPt0c541zPtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3f97bca4-8fe4-4757-98c1-d2d5b0b131e0 scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dc6a1814-4246-461a-8d34-7131b7484790 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:45.255 [XNIO-1 task-2] YCy2I8iCTGqPt0c541zPtA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +20:00:45.258 [XNIO-1 task-1] kNdES6bqTS6wbF5OxLt3nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.258 [XNIO-1 task-1] kNdES6bqTS6wbF5OxLt3nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.258 [XNIO-1 task-1] kNdES6bqTS6wbF5OxLt3nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.259 [XNIO-1 task-1] kNdES6bqTS6wbF5OxLt3nw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.268 [XNIO-1 task-1] kNdES6bqTS6wbF5OxLt3nw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.275 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:72cf3247-157c-456d-88aa-e569e158f1ee +20:00:45.275 [XNIO-1 task-1] 5bv0TvHFRCqnDU49HTfa8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.278 [XNIO-1 task-1] 5bv0TvHFRCqnDU49HTfa8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.278 [XNIO-1 task-1] 5bv0TvHFRCqnDU49HTfa8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDhhMjNiMjEtYjkwYi00ODMxLTgwMTYtNjNkMDFmZjI2MjM0Onp6R2dXVjlfUVhtTVp2M21UcmtRb1E=", "Basic ZDhhMjNiMjEtYjkwYi00ODMxLTgwMTYtNjNkMDFmZjI2MjM0Onp6R2dXVjlfUVhtTVp2M21UcmtRb1E=", authorization) +20:00:45.279 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:45.284 [XNIO-1 task-1] 5bv0TvHFRCqnDU49HTfa8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.291 [XNIO-1 task-1] Ksw23WnpSyy7N4Gptum4Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.291 [XNIO-1 task-1] Ksw23WnpSyy7N4Gptum4Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.291 [XNIO-1 task-1] Ksw23WnpSyy7N4Gptum4Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.292 [XNIO-1 task-1] Ksw23WnpSyy7N4Gptum4Zg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.298 [XNIO-1 task-2] -ez_ysaoS_qyMFYlgRqmAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.298 [XNIO-1 task-2] -ez_ysaoS_qyMFYlgRqmAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.298 [XNIO-1 task-2] -ez_ysaoS_qyMFYlgRqmAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.299 [XNIO-1 task-1] Ksw23WnpSyy7N4Gptum4Zg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.299 [XNIO-1 task-1] Ksw23WnpSyy7N4Gptum4Zg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.305 [XNIO-1 task-1] cPnhGPhXSQ27WQfq4amYTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.305 [XNIO-1 task-1] cPnhGPhXSQ27WQfq4amYTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.306 [XNIO-1 task-1] cPnhGPhXSQ27WQfq4amYTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.306 [XNIO-1 task-1] cPnhGPhXSQ27WQfq4amYTQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.307 [XNIO-1 task-2] -ez_ysaoS_qyMFYlgRqmAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.311 [XNIO-1 task-4] X3Ce7M8hS3e3mTlH1r0NCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.311 [XNIO-1 task-4] X3Ce7M8hS3e3mTlH1r0NCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.312 [XNIO-1 task-4] X3Ce7M8hS3e3mTlH1r0NCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.312 [XNIO-1 task-1] cPnhGPhXSQ27WQfq4amYTQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.312 [XNIO-1 task-1] cPnhGPhXSQ27WQfq4amYTQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.321 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35892ce3 +20:00:45.322 [XNIO-1 task-1] G4EzuzXSTz-Lvn5RB4KOSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.322 [XNIO-1 task-1] G4EzuzXSTz-Lvn5RB4KOSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.322 [XNIO-1 task-1] G4EzuzXSTz-Lvn5RB4KOSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.322 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35892ce3 +20:00:45.323 [XNIO-1 task-1] G4EzuzXSTz-Lvn5RB4KOSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.325 [XNIO-1 task-2] D6Q27bYmRsihTqgdrBn7OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.325 [XNIO-1 task-2] D6Q27bYmRsihTqgdrBn7OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.327 [XNIO-1 task-2] D6Q27bYmRsihTqgdrBn7OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.327 [XNIO-1 task-4] X3Ce7M8hS3e3mTlH1r0NCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.328 [XNIO-1 task-4] X3Ce7M8hS3e3mTlH1r0NCw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.329 [XNIO-1 task-1] G4EzuzXSTz-Lvn5RB4KOSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.336 [XNIO-1 task-1] lf50bth2SNWVBvdWXmO7LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.336 [XNIO-1 task-1] lf50bth2SNWVBvdWXmO7LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.336 [XNIO-1 task-1] lf50bth2SNWVBvdWXmO7LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.337 [XNIO-1 task-1] lf50bth2SNWVBvdWXmO7LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:45.343 [XNIO-1 task-1] lf50bth2SNWVBvdWXmO7LQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.346 [XNIO-1 task-2] D6Q27bYmRsihTqgdrBn7OA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.347 [XNIO-1 task-1] R2tIASlrSgm3nwg84qJTow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.348 [XNIO-1 task-1] R2tIASlrSgm3nwg84qJTow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.348 [XNIO-1 task-1] R2tIASlrSgm3nwg84qJTow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.348 [XNIO-1 task-1] R2tIASlrSgm3nwg84qJTow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", authorization) +20:00:45.349 [XNIO-1 task-4] HGGdK4PdRjauiqUkYqUoBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.352 [XNIO-1 task-4] HGGdK4PdRjauiqUkYqUoBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.353 [XNIO-1 task-4] HGGdK4PdRjauiqUkYqUoBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.353 [XNIO-1 task-4] HGGdK4PdRjauiqUkYqUoBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", "Basic YmQ4OGMyMTEtZGRhZC00N2FlLWFkYjctNmY4MWRmMjdlMmI2OldhQkl4eTRUU0F5RG04TzNPN3FNOFE=", authorization) +20:00:45.350 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:14d0c8b6-ef1c-4db8-b48b-dcd47e0f003e +20:00:45.359 [XNIO-1 task-4] HGGdK4PdRjauiqUkYqUoBg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.360 [XNIO-1 task-1] R2tIASlrSgm3nwg84qJTow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.361 [XNIO-1 task-1] R2tIASlrSgm3nwg84qJTow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.367 [XNIO-1 task-4] mRTDZGe6TkSpsp-re1ohWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.367 [XNIO-1 task-4] mRTDZGe6TkSpsp-re1ohWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.367 [XNIO-1 task-4] mRTDZGe6TkSpsp-re1ohWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.368 [XNIO-1 task-4] mRTDZGe6TkSpsp-re1ohWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.373 [XNIO-1 task-4] mRTDZGe6TkSpsp-re1ohWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.384 [XNIO-1 task-1] AqtMN1gXSxuZkMGvZHnBmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.384 [XNIO-1 task-1] AqtMN1gXSxuZkMGvZHnBmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.384 [XNIO-1 task-1] AqtMN1gXSxuZkMGvZHnBmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.384 [XNIO-1 task-1] AqtMN1gXSxuZkMGvZHnBmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.385 [XNIO-1 task-4] jn5x0EzQQOixmW_iHTckkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.385 [XNIO-1 task-4] jn5x0EzQQOixmW_iHTckkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.385 [XNIO-1 task-4] jn5x0EzQQOixmW_iHTckkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.386 [XNIO-1 task-4] jn5x0EzQQOixmW_iHTckkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e76a0597-d083-4fc2-bd92-651c558879c5 scope = null +20:00:45.390 [XNIO-1 task-1] AqtMN1gXSxuZkMGvZHnBmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.395 [XNIO-1 task-4] jn5x0EzQQOixmW_iHTckkQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.398 [XNIO-1 task-1] qmz7ifMcTXCMZ0NpfdBpTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.398 [XNIO-1 task-1] qmz7ifMcTXCMZ0NpfdBpTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.398 [XNIO-1 task-1] qmz7ifMcTXCMZ0NpfdBpTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.399 [XNIO-1 task-1] qmz7ifMcTXCMZ0NpfdBpTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", "Basic ZWI5YWNmNjAtNjFkMi00NjZlLWFiYmItNzAwN2VjZTE2MzdjOkdCLWpLVXZpUWlPN1AtSGpxY0FyNVE=", authorization) +20:00:45.406 [XNIO-1 task-1] qmz7ifMcTXCMZ0NpfdBpTQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.408 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:63623ab5 +20:00:45.421 [XNIO-1 task-1] rxEyLaHXR-SvjXZ8-ppsHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.421 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.421 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.422 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.422 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.422 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.422 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:45.422 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.429 [XNIO-1 task-4] M9q_5D0rQK-I0rxSAg1BiQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.435 [XNIO-1 task-4] B156I_SpSUaLDoAj0QOEOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.435 [XNIO-1 task-4] B156I_SpSUaLDoAj0QOEOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.436 [XNIO-1 task-4] B156I_SpSUaLDoAj0QOEOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.437 [XNIO-1 task-4] B156I_SpSUaLDoAj0QOEOg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:45.441 [XNIO-1 task-1] rxEyLaHXR-SvjXZ8-ppsHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.445 [XNIO-1 task-4] B156I_SpSUaLDoAj0QOEOg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.451 [XNIO-1 task-1] rxEyLaHXR-SvjXZ8-ppsHw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.454 [XNIO-1 task-2] kMS3NzulSEW0KKipnY4YsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.454 [XNIO-1 task-2] kMS3NzulSEW0KKipnY4YsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.454 [XNIO-1 task-2] kMS3NzulSEW0KKipnY4YsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.455 [XNIO-1 task-2] kMS3NzulSEW0KKipnY4YsA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mKK-gHjCQyyJZpDDWn2Dxw redirectUri = http://localhost:8080/authorization +20:00:45.457 [XNIO-1 task-4] FlYlWBFkT7Ku_t-L72Qb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.457 [XNIO-1 task-4] FlYlWBFkT7Ku_t-L72Qb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.458 [XNIO-1 task-4] FlYlWBFkT7Ku_t-L72Qb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.458 [XNIO-1 task-4] FlYlWBFkT7Ku_t-L72Qb3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.463 [XNIO-1 task-2] kMS3NzulSEW0KKipnY4YsA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.466 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:19820de1-0afa-4ad6-9ea7-989c6c4893bf +20:00:45.468 [XNIO-1 task-4] FlYlWBFkT7Ku_t-L72Qb3g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.472 [XNIO-1 task-1] rmYyHe8jR42EU-gAiJXG_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.473 [XNIO-1 task-1] rmYyHe8jR42EU-gAiJXG_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.473 [XNIO-1 task-1] rmYyHe8jR42EU-gAiJXG_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.473 [XNIO-1 task-1] rmYyHe8jR42EU-gAiJXG_A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", authorization) +20:00:45.476 [XNIO-1 task-4] fMkN4kgxQPqJVLGnqdW-tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.477 [XNIO-1 task-4] fMkN4kgxQPqJVLGnqdW-tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.477 [XNIO-1 task-4] fMkN4kgxQPqJVLGnqdW-tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.478 [XNIO-1 task-4] fMkN4kgxQPqJVLGnqdW-tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:45.483 [XNIO-1 task-4] fMkN4kgxQPqJVLGnqdW-tg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.489 [XNIO-1 task-2] CegL8Y00T4y1XVKg96FyMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.489 [XNIO-1 task-2] CegL8Y00T4y1XVKg96FyMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.489 [XNIO-1 task-2] CegL8Y00T4y1XVKg96FyMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.490 [XNIO-1 task-2] CegL8Y00T4y1XVKg96FyMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:45.491 [XNIO-1 task-4] vvnl2w_ZQi-1A36j_zsJZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.491 [XNIO-1 task-4] vvnl2w_ZQi-1A36j_zsJZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.491 [XNIO-1 task-4] vvnl2w_ZQi-1A36j_zsJZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.492 [XNIO-1 task-4] vvnl2w_ZQi-1A36j_zsJZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:45.495 [XNIO-1 task-2] CegL8Y00T4y1XVKg96FyMA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.502 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:19820de1-0afa-4ad6-9ea7-989c6c4893bf +20:00:45.505 [XNIO-1 task-2] co-Sr-MLRhuvl1YpkymzoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.505 [XNIO-1 task-2] co-Sr-MLRhuvl1YpkymzoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.505 [XNIO-1 task-2] co-Sr-MLRhuvl1YpkymzoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.506 [XNIO-1 task-2] co-Sr-MLRhuvl1YpkymzoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.508 [XNIO-1 task-4] vvnl2w_ZQi-1A36j_zsJZA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.511 [XNIO-1 task-2] co-Sr-MLRhuvl1YpkymzoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.514 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:08b20515-9427-4fad-9448-fadbd15c9f05 +20:00:45.512 [XNIO-1 task-1] rmYyHe8jR42EU-gAiJXG_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.520 [XNIO-1 task-2] nBrsbw5eTbSAmnulg_ULsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.521 [XNIO-1 task-2] nBrsbw5eTbSAmnulg_ULsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.521 [XNIO-1 task-2] nBrsbw5eTbSAmnulg_ULsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.522 [XNIO-1 task-2] nBrsbw5eTbSAmnulg_ULsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:45.530 [XNIO-1 task-2] nBrsbw5eTbSAmnulg_ULsQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.539 [XNIO-1 task-2] LqM1Br7BSqOr5Bok-LrwSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.540 [XNIO-1 task-2] LqM1Br7BSqOr5Bok-LrwSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.540 [XNIO-1 task-2] LqM1Br7BSqOr5Bok-LrwSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.540 [XNIO-1 task-2] LqM1Br7BSqOr5Bok-LrwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", authorization) +20:00:45.543 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:110c4467-7377-4ef0-9b12-7221209f67a6 +20:00:45.545 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:110c4467-7377-4ef0-9b12-7221209f67a6 +20:00:45.549 [XNIO-1 task-2] LqM1Br7BSqOr5Bok-LrwSQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.562 [XNIO-1 task-2] Dn7M68QFQeSFc5Qy8TANeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.562 [XNIO-1 task-2] Dn7M68QFQeSFc5Qy8TANeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.562 [XNIO-1 task-2] Dn7M68QFQeSFc5Qy8TANeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.563 [XNIO-1 task-2] Dn7M68QFQeSFc5Qy8TANeQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.568 [XNIO-1 task-2] Dn7M68QFQeSFc5Qy8TANeQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.573 [XNIO-1 task-2] --Tmz3F7QbmkUJhLp7WOLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.573 [XNIO-1 task-2] --Tmz3F7QbmkUJhLp7WOLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.573 [XNIO-1 task-2] --Tmz3F7QbmkUJhLp7WOLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.574 [XNIO-1 task-2] --Tmz3F7QbmkUJhLp7WOLQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.581 [XNIO-1 task-2] --Tmz3F7QbmkUJhLp7WOLQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.582 [XNIO-1 task-1] Vo1igl-JTPWMyO_VgL3zEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.582 [XNIO-1 task-1] Vo1igl-JTPWMyO_VgL3zEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.582 [XNIO-1 task-1] Vo1igl-JTPWMyO_VgL3zEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.582 [XNIO-1 task-1] Vo1igl-JTPWMyO_VgL3zEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gqE903aUTU2FzCJ91Ydf5A redirectUri = http://localhost:8080/authorization +20:00:45.590 [XNIO-1 task-2] 3d-pr8ZFQHqi2PbKZR4eqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.590 [XNIO-1 task-2] 3d-pr8ZFQHqi2PbKZR4eqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.591 [XNIO-1 task-2] 3d-pr8ZFQHqi2PbKZR4eqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.591 [XNIO-1 task-2] 3d-pr8ZFQHqi2PbKZR4eqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.596 [XNIO-1 task-2] 3d-pr8ZFQHqi2PbKZR4eqg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.607 [XNIO-1 task-1] Vo1igl-JTPWMyO_VgL3zEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.608 [XNIO-1 task-2] bsHXNO8mQnyY_rJQQWs2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.608 [XNIO-1 task-2] bsHXNO8mQnyY_rJQQWs2mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.609 [XNIO-1 task-2] bsHXNO8mQnyY_rJQQWs2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.609 [XNIO-1 task-2] bsHXNO8mQnyY_rJQQWs2mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", "Basic NjY5ZWEzMTItMmUwOS00OGMwLWFjMWUtNTM5ZDAxZTM1ZjBmOmlhRE4zaXNCUkdxUnN5cGl5ME44dlE=", authorization) +20:00:45.615 [XNIO-1 task-2] bsHXNO8mQnyY_rJQQWs2mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.638 [XNIO-1 task-1] 0WWUFx-LSHGc3vA-Tkiiyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.638 [XNIO-1 task-1] 0WWUFx-LSHGc3vA-Tkiiyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.638 [XNIO-1 task-1] 0WWUFx-LSHGc3vA-Tkiiyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.639 [XNIO-1 task-1] 0WWUFx-LSHGc3vA-Tkiiyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGQzYTJhOTItMjQwMC00ZDBiLWI1MTktZmE3NGMwZjYyNjliOnpDcFFHLU9hVEhxeEIyay1GOVdmY1E=", "Basic ZGQzYTJhOTItMjQwMC00ZDBiLWI1MTktZmE3NGMwZjYyNjliOnpDcFFHLU9hVEhxeEIyay1GOVdmY1E=", authorization) +20:00:45.644 [XNIO-1 task-1] 0WWUFx-LSHGc3vA-Tkiiyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.646 [XNIO-1 task-2] q-XPw23QSNi1wi-A8ID_FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.646 [XNIO-1 task-2] q-XPw23QSNi1wi-A8ID_FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.646 [XNIO-1 task-2] q-XPw23QSNi1wi-A8ID_FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.647 [XNIO-1 task-2] q-XPw23QSNi1wi-A8ID_FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", authorization) +20:00:45.655 [XNIO-1 task-2] q-XPw23QSNi1wi-A8ID_FQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:45.655 [XNIO-1 task-2] q-XPw23QSNi1wi-A8ID_FQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.657 [XNIO-1 task-1] w7Ow8G9sQrukVtkkTiRvfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.657 [XNIO-1 task-1] w7Ow8G9sQrukVtkkTiRvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.658 [XNIO-1 task-1] w7Ow8G9sQrukVtkkTiRvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.658 [XNIO-1 task-1] w7Ow8G9sQrukVtkkTiRvfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.658 [XNIO-1 task-1] w7Ow8G9sQrukVtkkTiRvfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.666 [XNIO-1 task-1] w7Ow8G9sQrukVtkkTiRvfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.666 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:30317048 +20:00:45.674 [XNIO-1 task-1] 4Lfx0RFxTL-8LDnOLyNRGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.674 [XNIO-1 task-1] 4Lfx0RFxTL-8LDnOLyNRGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.674 [XNIO-1 task-1] 4Lfx0RFxTL-8LDnOLyNRGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.676 [XNIO-1 task-1] 4Lfx0RFxTL-8LDnOLyNRGA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:45.684 [XNIO-1 task-1] 4Lfx0RFxTL-8LDnOLyNRGA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.691 [XNIO-1 task-1] 5nK4PfpPSKO6j9z2YfKVPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.692 [XNIO-1 task-1] 5nK4PfpPSKO6j9z2YfKVPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.692 [XNIO-1 task-1] 5nK4PfpPSKO6j9z2YfKVPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.693 [XNIO-1 task-1] 5nK4PfpPSKO6j9z2YfKVPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:45.699 [XNIO-1 task-1] 5nK4PfpPSKO6j9z2YfKVPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.707 [XNIO-1 task-1] _eqm7Z_7Qgq8XS6OXp-LxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.708 [XNIO-1 task-1] _eqm7Z_7Qgq8XS6OXp-LxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.708 [XNIO-1 task-1] _eqm7Z_7Qgq8XS6OXp-LxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.709 [XNIO-1 task-1] _eqm7Z_7Qgq8XS6OXp-LxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:45.715 [XNIO-1 task-1] _eqm7Z_7Qgq8XS6OXp-LxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.726 [XNIO-1 task-1] zPD7ChxGQaqCXwtysUueRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.726 [XNIO-1 task-1] zPD7ChxGQaqCXwtysUueRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.726 [XNIO-1 task-1] zPD7ChxGQaqCXwtysUueRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.727 [XNIO-1 task-1] zPD7ChxGQaqCXwtysUueRw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:45.736 [XNIO-1 task-1] zPD7ChxGQaqCXwtysUueRw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.742 [XNIO-1 task-1] 35seixFaTiKEPxVWQfsVjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.743 [XNIO-1 task-1] 35seixFaTiKEPxVWQfsVjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.743 [XNIO-1 task-1] 35seixFaTiKEPxVWQfsVjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.743 [XNIO-1 task-1] 35seixFaTiKEPxVWQfsVjw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:45.753 [XNIO-1 task-1] 35seixFaTiKEPxVWQfsVjw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.758 [XNIO-1 task-1] mOQp3HsBToaVvfIaZ0HIAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.758 [XNIO-1 task-1] mOQp3HsBToaVvfIaZ0HIAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.758 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:700adb31-4901-4f26-9cb9-bf2d7fffb345 +20:00:45.758 [XNIO-1 task-1] mOQp3HsBToaVvfIaZ0HIAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.758 [XNIO-1 task-1] mOQp3HsBToaVvfIaZ0HIAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.762 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:700adb31-4901-4f26-9cb9-bf2d7fffb345 +20:00:45.763 [XNIO-1 task-1] mOQp3HsBToaVvfIaZ0HIAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.770 [XNIO-1 task-1] DoKPBr96SPuqq78Xccf3DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.771 [XNIO-1 task-1] DoKPBr96SPuqq78Xccf3DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.771 [XNIO-1 task-1] DoKPBr96SPuqq78Xccf3DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.771 [XNIO-1 task-1] DoKPBr96SPuqq78Xccf3DA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.779 [XNIO-1 task-1] DoKPBr96SPuqq78Xccf3DA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.783 [XNIO-1 task-1] siE6aqfaSS6klFVR3qNd_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.784 [XNIO-1 task-1] siE6aqfaSS6klFVR3qNd_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.784 [XNIO-1 task-1] siE6aqfaSS6klFVR3qNd_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.784 [XNIO-1 task-1] siE6aqfaSS6klFVR3qNd_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.790 [XNIO-1 task-1] siE6aqfaSS6klFVR3qNd_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.796 [XNIO-1 task-1] 4dIDO-2xSZO5qs4a8paTAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.796 [XNIO-1 task-1] 4dIDO-2xSZO5qs4a8paTAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.796 [XNIO-1 task-1] 4dIDO-2xSZO5qs4a8paTAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.805 [XNIO-1 task-1] 4dIDO-2xSZO5qs4a8paTAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.816 [XNIO-1 task-1] 4dIDO-2xSZO5qs4a8paTAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.823 [XNIO-1 task-1] U-DBnVERR5SMkgs0fLSaTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.823 [XNIO-1 task-1] U-DBnVERR5SMkgs0fLSaTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.823 [XNIO-1 task-1] U-DBnVERR5SMkgs0fLSaTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.824 [XNIO-1 task-1] U-DBnVERR5SMkgs0fLSaTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = WAMbnmkZT1ikmcTAizBGUA redirectUri = http://localhost:8080/authorization +20:00:45.824 [XNIO-1 task-2] Jt5hWtjgQEeVNphrx18BZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.824 [XNIO-1 task-2] Jt5hWtjgQEeVNphrx18BZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.825 [XNIO-1 task-2] Jt5hWtjgQEeVNphrx18BZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.825 [XNIO-1 task-2] Jt5hWtjgQEeVNphrx18BZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.830 [XNIO-1 task-1] U-DBnVERR5SMkgs0fLSaTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.831 [XNIO-1 task-4] uu339vgzTh-6EvKDC6EBsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.831 [XNIO-1 task-4] uu339vgzTh-6EvKDC6EBsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.831 [XNIO-1 task-4] uu339vgzTh-6EvKDC6EBsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.831 [XNIO-1 task-4] uu339vgzTh-6EvKDC6EBsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:45.839 [XNIO-1 task-2] Jt5hWtjgQEeVNphrx18BZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.850 [XNIO-1 task-4] uu339vgzTh-6EvKDC6EBsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:45.850 [XNIO-1 task-4] uu339vgzTh-6EvKDC6EBsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.856 [XNIO-1 task-2] rH_Ryo80Q6aEYyuXJA-5Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.856 [XNIO-1 task-2] rH_Ryo80Q6aEYyuXJA-5Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.857 [XNIO-1 task-2] rH_Ryo80Q6aEYyuXJA-5Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.857 [XNIO-1 task-2] rH_Ryo80Q6aEYyuXJA-5Cw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.873 [XNIO-1 task-2] rH_Ryo80Q6aEYyuXJA-5Cw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.886 [XNIO-1 task-4] 9GDKOS3MRYa5Ig4t0uiv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.886 [XNIO-1 task-4] 9GDKOS3MRYa5Ig4t0uiv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.886 [XNIO-1 task-4] 9GDKOS3MRYa5Ig4t0uiv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.887 [XNIO-1 task-4] 9GDKOS3MRYa5Ig4t0uiv5Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.892 [XNIO-1 task-4] 9GDKOS3MRYa5Ig4t0uiv5Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.887 [XNIO-1 task-2] tjzrqZH5R26TGbiBf268PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.894 [XNIO-1 task-2] tjzrqZH5R26TGbiBf268PA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.895 [XNIO-1 task-2] tjzrqZH5R26TGbiBf268PA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.895 [XNIO-1 task-2] tjzrqZH5R26TGbiBf268PA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", authorization) +20:00:45.900 [XNIO-1 task-4] qNKVMQJ7QgCIWkmwZcxdfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.901 [XNIO-1 task-4] qNKVMQJ7QgCIWkmwZcxdfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.901 [XNIO-1 task-4] qNKVMQJ7QgCIWkmwZcxdfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.901 [XNIO-1 task-4] qNKVMQJ7QgCIWkmwZcxdfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", authorization) +20:00:45.905 [XNIO-1 task-1] 8REKQgKSSqGwUXI5WqWS1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.905 [XNIO-1 task-1] 8REKQgKSSqGwUXI5WqWS1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.905 [XNIO-1 task-1] 8REKQgKSSqGwUXI5WqWS1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.906 [XNIO-1 task-1] 8REKQgKSSqGwUXI5WqWS1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:45.908 [XNIO-1 task-4] qNKVMQJ7QgCIWkmwZcxdfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.911 [XNIO-1 task-2] tjzrqZH5R26TGbiBf268PA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:45.914 [XNIO-1 task-2] tjzrqZH5R26TGbiBf268PA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.916 [XNIO-1 task-4] x94wIANyQw6Gfp8vbS3M6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.916 [XNIO-1 task-4] x94wIANyQw6Gfp8vbS3M6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +20:00:45.916 [XNIO-1 task-4] x94wIANyQw6Gfp8vbS3M6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.916 [XNIO-1 task-4] x94wIANyQw6Gfp8vbS3M6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.916 [XNIO-1 task-4] x94wIANyQw6Gfp8vbS3M6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +20:00:45.917 [XNIO-1 task-1] 8REKQgKSSqGwUXI5WqWS1w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:45.918 [XNIO-1 task-1] 8REKQgKSSqGwUXI5WqWS1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.918 [XNIO-1 task-1] 8REKQgKSSqGwUXI5WqWS1w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.920 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 +20:00:45.920 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f554b35a-6c31-4de0-8bc7-6a0653dc2ad4 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +20:00:45.920 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a6223ef0 + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +20:00:45.923 [XNIO-1 task-4] x94wIANyQw6Gfp8vbS3M6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +20:00:45.925 [XNIO-1 task-2] YCfhR1n4T_CaV0H6LM6biQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.925 [XNIO-1 task-2] YCfhR1n4T_CaV0H6LM6biQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +20:00:45.926 [XNIO-1 task-2] YCfhR1n4T_CaV0H6LM6biQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.926 [XNIO-1 task-2] YCfhR1n4T_CaV0H6LM6biQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", authorization) +20:00:45.926 [XNIO-1 task-2] YCfhR1n4T_CaV0H6LM6biQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 875afac1-ca0e-4195-b655-71268357cfa1 scope = null +20:00:45.933 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:30317048 +20:00:45.939 [XNIO-1 task-1] jB5oL96tSkqk--JzAEyvLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.939 [XNIO-1 task-1] jB5oL96tSkqk--JzAEyvLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.940 [XNIO-1 task-1] jB5oL96tSkqk--JzAEyvLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +20:00:45.942 [XNIO-1 task-2] YCfhR1n4T_CaV0H6LM6biQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.943 [hz._hzInstance_1_dev.partition-operation.thread-0] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:45.951 [XNIO-1 task-1] jB5oL96tSkqk--JzAEyvLw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.960 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8d33e046 +20:00:45.962 [XNIO-1 task-2] mFf5Hrz8SMeTVMjsVANVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.962 [XNIO-1 task-2] mFf5Hrz8SMeTVMjsVANVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.962 [XNIO-1 task-2] mFf5Hrz8SMeTVMjsVANVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.963 [XNIO-1 task-1] arXUBr4WQkuGrJKBj5eswg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.965 [XNIO-1 task-2] mFf5Hrz8SMeTVMjsVANVLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = KtM9JgewTUS1HT7aDuUdqA redirectUri = http://localhost:8080/authorization +20:00:45.965 [XNIO-1 task-1] arXUBr4WQkuGrJKBj5eswg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.965 [XNIO-1 task-1] arXUBr4WQkuGrJKBj5eswg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.966 [XNIO-1 task-1] arXUBr4WQkuGrJKBj5eswg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:45.968 [XNIO-1 task-4] dZ4CSoeJSuaWXr4O5qXrtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.968 [XNIO-1 task-4] dZ4CSoeJSuaWXr4O5qXrtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.968 [XNIO-1 task-4] dZ4CSoeJSuaWXr4O5qXrtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:45.969 [XNIO-1 task-4] dZ4CSoeJSuaWXr4O5qXrtA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5c835b77-cd1f-44e3-b6ed-6eddaafcdddd scope = null +20:00:45.976 [XNIO-1 task-1] arXUBr4WQkuGrJKBj5eswg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:45.980 [XNIO-1 task-2] mFf5Hrz8SMeTVMjsVANVLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.982 [XNIO-1 task-1] zN_pgnThR6GxZFchP_i8Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.982 [XNIO-1 task-1] zN_pgnThR6GxZFchP_i8Bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:45.982 [XNIO-1 task-1] zN_pgnThR6GxZFchP_i8Bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:45.983 [XNIO-1 task-1] zN_pgnThR6GxZFchP_i8Bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", authorization) +20:00:45.988 [XNIO-1 task-4] dZ4CSoeJSuaWXr4O5qXrtA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:45.990 [XNIO-1 task-1] zN_pgnThR6GxZFchP_i8Bg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.004 [XNIO-1 task-4] cdXMLbReTQSNnGjsV9t_2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.004 [XNIO-1 task-4] cdXMLbReTQSNnGjsV9t_2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.004 [XNIO-1 task-4] cdXMLbReTQSNnGjsV9t_2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.005 [XNIO-1 task-4] cdXMLbReTQSNnGjsV9t_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", authorization) +20:00:46.011 [XNIO-1 task-4] cdXMLbReTQSNnGjsV9t_2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.018 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7337949c +20:00:46.019 [XNIO-1 task-4] 5DrooYUMRn69yi0XbX622g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.019 [XNIO-1 task-4] 5DrooYUMRn69yi0XbX622g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.021 [XNIO-1 task-1] IRZDDGkdTjCzvcrsFWSXQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.021 [XNIO-1 task-4] 5DrooYUMRn69yi0XbX622g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.022 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7337949c +20:00:46.022 [XNIO-1 task-1] IRZDDGkdTjCzvcrsFWSXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.023 [XNIO-1 task-1] IRZDDGkdTjCzvcrsFWSXQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.024 [XNIO-1 task-4] 5DrooYUMRn69yi0XbX622g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", authorization) +20:00:46.025 [XNIO-1 task-1] IRZDDGkdTjCzvcrsFWSXQw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.035 [XNIO-1 task-1] IRZDDGkdTjCzvcrsFWSXQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +Jun 28, 2024 8:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +20:00:46.037 [XNIO-1 task-4] 5DrooYUMRn69yi0XbX622g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.037 [XNIO-1 task-4] 5DrooYUMRn69yi0XbX622g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.038 [XNIO-1 task-4] 5DrooYUMRn69yi0XbX622g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.040 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a7a10ae2-acbd-4a50-a729-dd9db3730b5e +20:00:46.040 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a7a10ae2-acbd-4a50-a729-dd9db3730b5e +20:00:46.042 [XNIO-1 task-1] ZBaevfxaQSKNWMCH-B0VGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.043 [XNIO-1 task-1] ZBaevfxaQSKNWMCH-B0VGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.043 [XNIO-1 task-1] ZBaevfxaQSKNWMCH-B0VGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.044 [XNIO-1 task-1] ZBaevfxaQSKNWMCH-B0VGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.046 [XNIO-1 task-1] ZBaevfxaQSKNWMCH-B0VGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", authorization) +20:00:46.051 [XNIO-1 task-1] ZBaevfxaQSKNWMCH-B0VGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.spi.Operation.call(Operation.java:170) +20:00:46.051 [XNIO-1 task-1] ZBaevfxaQSKNWMCH-B0VGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.058 [XNIO-1 task-1] ZnYNQ7wXRceqQQwR07vJJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.058 [XNIO-1 task-1] ZnYNQ7wXRceqQQwR07vJJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.059 [XNIO-1 task-1] ZnYNQ7wXRceqQQwR07vJJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.060 [XNIO-1 task-1] ZnYNQ7wXRceqQQwR07vJJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", authorization) +20:00:46.060 [XNIO-1 task-4] v5LQq6q8RlGAE1ygjt0sYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.061 [XNIO-1 task-4] v5LQq6q8RlGAE1ygjt0sYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.061 [XNIO-1 task-4] v5LQq6q8RlGAE1ygjt0sYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.062 [XNIO-1 task-4] v5LQq6q8RlGAE1ygjt0sYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", authorization) +20:00:46.062 [XNIO-1 task-4] v5LQq6q8RlGAE1ygjt0sYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a7a10ae2-acbd-4a50-a729-dd9db3730b5e scope = null +20:00:46.067 [XNIO-1 task-1] ZnYNQ7wXRceqQQwR07vJJQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.067 [XNIO-1 task-1] ZnYNQ7wXRceqQQwR07vJJQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +20:00:46.075 [XNIO-1 task-2] sqC1jgqrTnmfXkom74QqkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + +20:00:46.077 [XNIO-1 task-2] sqC1jgqrTnmfXkom74QqkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.077 [XNIO-1 task-2] sqC1jgqrTnmfXkom74QqkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.077 [XNIO-1 task-2] sqC1jgqrTnmfXkom74QqkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.078 [XNIO-1 task-2] sqC1jgqrTnmfXkom74QqkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = yq29fSXITf-rr_fhigLvIA redirectUri = http://localhost:8080/authorization +20:00:46.080 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4637d664-0069-4575-ab2f-1bbe3d7a6e2d +20:00:46.082 [XNIO-1 task-1] 7vqUQjUBTZ6Z6Id1pU5PUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.087 [XNIO-1 task-2] sqC1jgqrTnmfXkom74QqkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.087 [XNIO-1 task-1] PngA3LAmTpyk95XCxyJ8Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.088 [XNIO-1 task-1] PngA3LAmTpyk95XCxyJ8Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.088 [XNIO-1 task-1] PngA3LAmTpyk95XCxyJ8Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.088 [XNIO-1 task-1] PngA3LAmTpyk95XCxyJ8Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.088 [XNIO-1 task-1] PngA3LAmTpyk95XCxyJ8Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:46.091 [XNIO-1 task-4] xYmPAezYRwqD0hWeF76nrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.091 [XNIO-1 task-4] xYmPAezYRwqD0hWeF76nrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.092 [XNIO-1 task-4] xYmPAezYRwqD0hWeF76nrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.093 [hz._hzInstance_1_dev.partition-operation.thread-10] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:46.095 [XNIO-1 task-4] xYmPAezYRwqD0hWeF76nrg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4637d664-0069-4575-ab2f-1bbe3d7a6e2d scope = null +20:00:46.096 [XNIO-1 task-1] PngA3LAmTpyk95XCxyJ8Ww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.103 [XNIO-1 task-1] EQeFsQQUSymbBJXCmOushA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.103 [XNIO-1 task-1] EQeFsQQUSymbBJXCmOushA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.104 [XNIO-1 task-1] EQeFsQQUSymbBJXCmOushA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.104 [XNIO-1 task-1] EQeFsQQUSymbBJXCmOushA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:46.107 [XNIO-1 task-4] xYmPAezYRwqD0hWeF76nrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.111 [XNIO-1 task-1] EQeFsQQUSymbBJXCmOushA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.118 [XNIO-1 task-1] CSo2qzesSN6GyVbOiLEd7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.118 [XNIO-1 task-1] CSo2qzesSN6GyVbOiLEd7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.119 [XNIO-1 task-1] CSo2qzesSN6GyVbOiLEd7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.120 [XNIO-1 task-1] CSo2qzesSN6GyVbOiLEd7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:46.124 [XNIO-1 task-1] CSo2qzesSN6GyVbOiLEd7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.132 [XNIO-1 task-1] eSrCnnFcRCacxd-09FGQiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.132 [XNIO-1 task-1] eSrCnnFcRCacxd-09FGQiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.132 [XNIO-1 task-1] eSrCnnFcRCacxd-09FGQiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.133 [XNIO-1 task-1] eSrCnnFcRCacxd-09FGQiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +Jun 28, 2024 8:00:46 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +20:00:46.138 [XNIO-1 task-1] eSrCnnFcRCacxd-09FGQiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +20:00:46.145 [XNIO-1 task-1] HR1clu6aRjeX5hGOHJ6SFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +20:00:46.145 [XNIO-1 task-1] HR1clu6aRjeX5hGOHJ6SFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.145 [XNIO-1 task-1] HR1clu6aRjeX5hGOHJ6SFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.151 [XNIO-1 task-1] HR1clu6aRjeX5hGOHJ6SFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.156 [XNIO-1 task-1] Q1CSK0PMRY-TsB1OZ915-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.156 [XNIO-1 task-1] Q1CSK0PMRY-TsB1OZ915-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.157 [XNIO-1 task-1] Q1CSK0PMRY-TsB1OZ915-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.157 [XNIO-1 task-1] Q1CSK0PMRY-TsB1OZ915-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.161 [XNIO-1 task-4] jVRORD5KR0uN_kILCPiLdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.161 [XNIO-1 task-4] jVRORD5KR0uN_kILCPiLdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.162 [XNIO-1 task-4] jVRORD5KR0uN_kILCPiLdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.162 [XNIO-1 task-4] jVRORD5KR0uN_kILCPiLdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IQwb6Ab8SZ6hXrxXHcom_A redirectUri = http://localhost:8080/authorization +20:00:46.163 [XNIO-1 task-1] Q1CSK0PMRY-TsB1OZ915-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.167 [XNIO-1 task-2] rSrS6G7iQfq-G5zInLVz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.167 [XNIO-1 task-2] rSrS6G7iQfq-G5zInLVz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.167 [XNIO-1 task-2] rSrS6G7iQfq-G5zInLVz7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.168 [XNIO-1 task-2] rSrS6G7iQfq-G5zInLVz7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pZpp61VrTqyacXiyFxZN3Q redirectUri = http://localhost:8080/authorization +20:00:46.168 [XNIO-1 task-1] sIsXiU1wSTqfyeG2H7cERA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.168 [XNIO-1 task-1] sIsXiU1wSTqfyeG2H7cERA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.168 [XNIO-1 task-1] sIsXiU1wSTqfyeG2H7cERA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.168 [XNIO-1 task-1] sIsXiU1wSTqfyeG2H7cERA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.170 [XNIO-1 task-4] jVRORD5KR0uN_kILCPiLdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.174 [XNIO-1 task-1] sIsXiU1wSTqfyeG2H7cERA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.176 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.180 [XNIO-1 task-2] rSrS6G7iQfq-G5zInLVz7Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.180 [XNIO-1 task-2] rSrS6G7iQfq-G5zInLVz7Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.183 [XNIO-1 task-1] HBAaIGZ0TICLoxBDUoC-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.183 [XNIO-1 task-1] HBAaIGZ0TICLoxBDUoC-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.184 [XNIO-1 task-1] HBAaIGZ0TICLoxBDUoC-nw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.184 [XNIO-1 task-1] HBAaIGZ0TICLoxBDUoC-nw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.190 [XNIO-1 task-1] HBAaIGZ0TICLoxBDUoC-nw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.196 [XNIO-1 task-1] Xyqz9IzaR1-BylNfBFWZxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.198 [XNIO-1 task-1] Xyqz9IzaR1-BylNfBFWZxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.198 [XNIO-1 task-1] Xyqz9IzaR1-BylNfBFWZxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.199 [XNIO-1 task-1] Xyqz9IzaR1-BylNfBFWZxQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.202 [XNIO-1 task-2] u-65DQfBTG6P945V4j-cQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.203 [XNIO-1 task-2] u-65DQfBTG6P945V4j-cQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.203 [XNIO-1 task-2] u-65DQfBTG6P945V4j-cQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.203 [XNIO-1 task-2] u-65DQfBTG6P945V4j-cQQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c8bb0aaa-2173-456b-99d6-dde92ea01a92 scope = null +20:00:46.208 [XNIO-1 task-1] Xyqz9IzaR1-BylNfBFWZxQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.215 [XNIO-1 task-4] 5YSpS-VGS8-DAyyY7kQvWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.215 [XNIO-1 task-4] 5YSpS-VGS8-DAyyY7kQvWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.215 [XNIO-1 task-1] UYkvuH2hQI-tBizepNTVRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.215 [XNIO-1 task-1] UYkvuH2hQI-tBizepNTVRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.215 [XNIO-1 task-1] UYkvuH2hQI-tBizepNTVRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.215 [XNIO-1 task-1] UYkvuH2hQI-tBizepNTVRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.216 [XNIO-1 task-1] UYkvuH2hQI-tBizepNTVRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.216 [XNIO-1 task-1] UYkvuH2hQI-tBizepNTVRQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.222 [XNIO-1 task-1] UYkvuH2hQI-tBizepNTVRQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.224 [XNIO-1 task-4] 5YSpS-VGS8-DAyyY7kQvWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.224 [XNIO-1 task-4] 5YSpS-VGS8-DAyyY7kQvWw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.232 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:faef7aca-ff5f-43ba-b7fe-db9d3fbb9e04 +20:00:46.235 [XNIO-1 task-1] jOwYrxr2Q2C1SPn8-r8PBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.235 [XNIO-1 task-1] jOwYrxr2Q2C1SPn8-r8PBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.237 [XNIO-1 task-1] jOwYrxr2Q2C1SPn8-r8PBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.237 [XNIO-1 task-1] jOwYrxr2Q2C1SPn8-r8PBQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +20:00:46.242 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c87f8dda +20:00:46.244 [XNIO-1 task-1] jOwYrxr2Q2C1SPn8-r8PBQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.245 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c87f8dda +20:00:46.248 [XNIO-1 task-1] MLx4CpXaTY6ub92hgqM2kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.249 [XNIO-1 task-1] MLx4CpXaTY6ub92hgqM2kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.249 [XNIO-1 task-1] MLx4CpXaTY6ub92hgqM2kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.249 [XNIO-1 task-1] MLx4CpXaTY6ub92hgqM2kA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.255 [XNIO-1 task-1] MLx4CpXaTY6ub92hgqM2kA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.258 [XNIO-1 task-4] 9Wdae17-SQKn9nXmiUb-0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.258 [XNIO-1 task-4] 9Wdae17-SQKn9nXmiUb-0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.258 [XNIO-1 task-4] 9Wdae17-SQKn9nXmiUb-0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.258 [XNIO-1 task-4] 9Wdae17-SQKn9nXmiUb-0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Y5B_7iC1SdiKaYKIkzxhxQ redirectUri = http://localhost:8080/authorization +20:00:46.262 [XNIO-1 task-1] uhHhQXtgT8ORQTujkk-keA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.262 [XNIO-1 task-1] uhHhQXtgT8ORQTujkk-keA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.262 [XNIO-1 task-1] uhHhQXtgT8ORQTujkk-keA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.262 [XNIO-1 task-1] uhHhQXtgT8ORQTujkk-keA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = R9GiIIMySs2iiW9hhqUO5A redirectUri = http://localhost:8080/authorization +20:00:46.265 [XNIO-1 task-2] ad4ElUGGR-ef92lkbvS2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.265 [XNIO-1 task-2] ad4ElUGGR-ef92lkbvS2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.265 [XNIO-1 task-2] ad4ElUGGR-ef92lkbvS2dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.265 [XNIO-1 task-2] ad4ElUGGR-ef92lkbvS2dQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.270 [XNIO-1 task-1] uhHhQXtgT8ORQTujkk-keA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.273 [XNIO-1 task-4] 9Wdae17-SQKn9nXmiUb-0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.273 [XNIO-1 task-4] 9Wdae17-SQKn9nXmiUb-0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.275 [XNIO-1 task-2] ad4ElUGGR-ef92lkbvS2dQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.281 [XNIO-1 task-2] catnCU4PRvCnFTesl_1-fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.282 [XNIO-1 task-2] catnCU4PRvCnFTesl_1-fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.282 [XNIO-1 task-2] catnCU4PRvCnFTesl_1-fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.282 [XNIO-1 task-2] catnCU4PRvCnFTesl_1-fg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.290 [XNIO-1 task-2] catnCU4PRvCnFTesl_1-fg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.295 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8041bd8e-b91b-4bea-8a73-0cecf330959b +20:00:46.298 [XNIO-1 task-2] h1naROcwTkmsZj23MUIzVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.298 [XNIO-1 task-2] h1naROcwTkmsZj23MUIzVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.298 [XNIO-1 task-2] h1naROcwTkmsZj23MUIzVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.299 [XNIO-1 task-2] h1naROcwTkmsZj23MUIzVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:46.305 [XNIO-1 task-2] h1naROcwTkmsZj23MUIzVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.310 [XNIO-1 task-2] k0r3j2i2SgWYUQcfO8197A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.310 [XNIO-1 task-2] k0r3j2i2SgWYUQcfO8197A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.310 [XNIO-1 task-4] rOQkj7WQShKFnHAJPckNxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.311 [XNIO-1 task-4] rOQkj7WQShKFnHAJPckNxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.311 [XNIO-1 task-4] rOQkj7WQShKFnHAJPckNxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.311 [XNIO-1 task-2] k0r3j2i2SgWYUQcfO8197A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", authorization) +20:00:46.311 [XNIO-1 task-4] rOQkj7WQShKFnHAJPckNxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.312 [XNIO-1 task-4] rOQkj7WQShKFnHAJPckNxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:46.319 [XNIO-1 task-2] k0r3j2i2SgWYUQcfO8197A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.320 [XNIO-1 task-2] k0r3j2i2SgWYUQcfO8197A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.321 [XNIO-1 task-4] rOQkj7WQShKFnHAJPckNxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.327 [XNIO-1 task-4] L7XJssm0T9CH4tKLrA3frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.327 [XNIO-1 task-4] L7XJssm0T9CH4tKLrA3frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.330 [XNIO-1 task-4] L7XJssm0T9CH4tKLrA3frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.336 [XNIO-1 task-4] L7XJssm0T9CH4tKLrA3frw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.342 [XNIO-1 task-4] L7XJssm0T9CH4tKLrA3frw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.349 [XNIO-1 task-2] G3BVk1BKRLW2tILm8KeThg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.349 [XNIO-1 task-2] G3BVk1BKRLW2tILm8KeThg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.349 [XNIO-1 task-2] G3BVk1BKRLW2tILm8KeThg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.351 [XNIO-1 task-2] G3BVk1BKRLW2tILm8KeThg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e71ebff1-2a7d-4a56-b45f-5acdffb0d87c scope = null +20:00:46.355 [XNIO-1 task-4] agmzgJpTRoa_wWQ64xtK6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.355 [XNIO-1 task-4] agmzgJpTRoa_wWQ64xtK6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.356 [XNIO-1 task-4] agmzgJpTRoa_wWQ64xtK6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.356 [XNIO-1 task-4] agmzgJpTRoa_wWQ64xtK6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token e71ebff1-2a7d-4a56-b45f-5acdffb0d87c is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:46.366 [XNIO-1 task-4] agmzgJpTRoa_wWQ64xtK6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.370 [XNIO-1 task-4] rzgtKGwgTpemB1CvQOZByw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.371 [XNIO-1 task-4] rzgtKGwgTpemB1CvQOZByw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.371 [XNIO-1 task-4] rzgtKGwgTpemB1CvQOZByw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.371 [XNIO-1 task-4] rzgtKGwgTpemB1CvQOZByw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:46.382 [XNIO-1 task-4] rzgtKGwgTpemB1CvQOZByw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.391 [XNIO-1 task-4] 7oBeQoRKQkiKXfgvvilUbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.391 [XNIO-1 task-4] 7oBeQoRKQkiKXfgvvilUbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.392 [XNIO-1 task-4] 7oBeQoRKQkiKXfgvvilUbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.392 [XNIO-1 task-4] 7oBeQoRKQkiKXfgvvilUbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:46.398 [XNIO-1 task-4] 7oBeQoRKQkiKXfgvvilUbQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.404 [XNIO-1 task-4] yguTzYtNTTKgfSUtfKPIzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.404 [XNIO-1 task-4] yguTzYtNTTKgfSUtfKPIzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.404 [XNIO-1 task-4] yguTzYtNTTKgfSUtfKPIzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.406 [XNIO-1 task-4] yguTzYtNTTKgfSUtfKPIzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:46.438 [XNIO-1 task-4] yguTzYtNTTKgfSUtfKPIzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.443 [XNIO-1 task-2] ab1nWIdqR02uEaB6s3hP7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.443 [XNIO-1 task-2] ab1nWIdqR02uEaB6s3hP7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.443 [XNIO-1 task-2] ab1nWIdqR02uEaB6s3hP7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.444 [XNIO-1 task-2] ab1nWIdqR02uEaB6s3hP7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", authorization) +20:00:46.445 [XNIO-1 task-4] cM3X4GvcReiaT6j1MJ-63w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.445 [XNIO-1 task-4] cM3X4GvcReiaT6j1MJ-63w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.446 [XNIO-1 task-4] cM3X4GvcReiaT6j1MJ-63w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.446 [XNIO-1 task-1] RRWDCLjJR-yMkqDqICZvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.446 [XNIO-1 task-4] cM3X4GvcReiaT6j1MJ-63w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", "Basic NmJkMzQ5YmQtNDNhZS00MWEyLThhYzctODU0OTVlOGVlNmZmOkVOVkJnWnhUVFplLVYwTHRsSWkzbnc=", authorization) +20:00:46.446 [XNIO-1 task-4] cM3X4GvcReiaT6j1MJ-63w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = k_rXBIqaSxS8Lq3TZ29TKg redirectUri = http://localhost:8080/authorization +20:00:46.447 [XNIO-1 task-1] RRWDCLjJR-yMkqDqICZvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.447 [XNIO-1 task-1] RRWDCLjJR-yMkqDqICZvnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:46.455 [XNIO-1 task-2] ab1nWIdqR02uEaB6s3hP7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.456 [XNIO-1 task-2] ab1nWIdqR02uEaB6s3hP7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.459 [XNIO-1 task-1] RRWDCLjJR-yMkqDqICZvnw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.459 [XNIO-1 task-4] cM3X4GvcReiaT6j1MJ-63w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.462 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.470 [XNIO-1 task-4] iiqslY4tQGOa_p3rslUlUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.470 [XNIO-1 task-4] iiqslY4tQGOa_p3rslUlUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.472 [XNIO-1 task-4] iiqslY4tQGOa_p3rslUlUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.472 [XNIO-1 task-4] iiqslY4tQGOa_p3rslUlUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", authorization) +20:00:46.476 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.478 [XNIO-1 task-2] h3VpNXh_QU-LK5T8HZszbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.479 [XNIO-1 task-2] h3VpNXh_QU-LK5T8HZszbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.479 [XNIO-1 task-4] iiqslY4tQGOa_p3rslUlUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.481 [XNIO-1 task-4] iiqslY4tQGOa_p3rslUlUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.482 [XNIO-1 task-2] h3VpNXh_QU-LK5T8HZszbw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 77a913af-9668-4142-9ac1-4383fd573142 scope = null +20:00:46.487 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7e727efb-5f12-4894-a35b-a605f3a9efb2 +20:00:46.488 [XNIO-1 task-4] 5kRmvdpIQHq_FFAfFTn_Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.488 [XNIO-1 task-4] 5kRmvdpIQHq_FFAfFTn_Qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.488 [XNIO-1 task-4] 5kRmvdpIQHq_FFAfFTn_Qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.489 [XNIO-1 task-4] 5kRmvdpIQHq_FFAfFTn_Qg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", authorization) +20:00:46.492 [XNIO-1 task-2] h3VpNXh_QU-LK5T8HZszbw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.497 [XNIO-1 task-4] 5kRmvdpIQHq_FFAfFTn_Qg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.507 [XNIO-1 task-4] en39e-VYSmOWecpQryLXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.507 [XNIO-1 task-4] en39e-VYSmOWecpQryLXyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.508 [XNIO-1 task-4] en39e-VYSmOWecpQryLXyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.508 [XNIO-1 task-4] en39e-VYSmOWecpQryLXyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", authorization) +20:00:46.512 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1ea07bc0-1cbb-4aed-9d5f-4c9410f80658 +20:00:46.517 [XNIO-1 task-4] en39e-VYSmOWecpQryLXyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.524 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:62c30e9c-3bae-41d5-a969-cc7cbd6b2acf +20:00:46.529 [XNIO-1 task-4] KuGvFhsFQl-H5hfKEkLEuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.531 [XNIO-1 task-4] KuGvFhsFQl-H5hfKEkLEuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.531 [XNIO-1 task-4] KuGvFhsFQl-H5hfKEkLEuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.531 [XNIO-1 task-4] KuGvFhsFQl-H5hfKEkLEuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", "Basic NTZhNTc2ODItM2I5Mi00NmFmLWE0ZTktZGZiMzQ4ZTMxOGY5OjlOUDFrY055UlM2UmNPNXpIcDJYMnc=", authorization) +20:00:46.537 [XNIO-1 task-4] KuGvFhsFQl-H5hfKEkLEuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.539 [XNIO-1 task-2] 8ADv7Pg1QDqoMavAB0WhHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.539 [XNIO-1 task-2] 8ADv7Pg1QDqoMavAB0WhHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.540 [XNIO-1 task-2] 8ADv7Pg1QDqoMavAB0WhHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.540 [XNIO-1 task-2] 8ADv7Pg1QDqoMavAB0WhHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", authorization) +20:00:46.545 [XNIO-1 task-4] D1D2OmRQQw249sOpb4S4xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.545 [XNIO-1 task-4] D1D2OmRQQw249sOpb4S4xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.545 [XNIO-1 task-4] D1D2OmRQQw249sOpb4S4xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.546 [XNIO-1 task-4] D1D2OmRQQw249sOpb4S4xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", authorization) +20:00:46.551 [XNIO-1 task-4] D1D2OmRQQw249sOpb4S4xQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.552 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:700adb31-4901-4f26-9cb9-bf2d7fffb345 +20:00:46.554 [XNIO-1 task-2] 8ADv7Pg1QDqoMavAB0WhHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.558 [XNIO-1 task-4] jCGio1UcQq2YvZBpPKFO7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.559 [XNIO-1 task-4] jCGio1UcQq2YvZBpPKFO7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.559 [XNIO-1 task-4] jCGio1UcQq2YvZBpPKFO7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.559 [XNIO-1 task-4] jCGio1UcQq2YvZBpPKFO7g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", authorization) +20:00:46.565 [XNIO-1 task-4] jCGio1UcQq2YvZBpPKFO7g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.565 [XNIO-1 task-2] HYTlC7FPR9eOpOEY2xtK6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.566 [XNIO-1 task-2] HYTlC7FPR9eOpOEY2xtK6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.568 [XNIO-1 task-2] HYTlC7FPR9eOpOEY2xtK6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.568 [XNIO-1 task-2] HYTlC7FPR9eOpOEY2xtK6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", "Basic ZDk0ODE5MjMtZjdiNC00MWFjLTljMDMtNDQxMDZmMDZlOGExOm5pR0xJN0pwUXYyN3FyQ29XbkE1bXc=", authorization) +20:00:46.571 [XNIO-1 task-4] Ft2TElkGSgi-1vWpA3iK1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.572 [XNIO-1 task-4] Ft2TElkGSgi-1vWpA3iK1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.572 [XNIO-1 task-4] Ft2TElkGSgi-1vWpA3iK1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.572 [XNIO-1 task-4] Ft2TElkGSgi-1vWpA3iK1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:46.577 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e46c1684 +20:00:46.579 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e46c1684 +20:00:46.584 [XNIO-1 task-4] Ft2TElkGSgi-1vWpA3iK1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.591 [XNIO-1 task-2] HYTlC7FPR9eOpOEY2xtK6A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.596 [XNIO-1 task-4] wA6sjwGVQsyYInY1xWnv3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.596 [XNIO-1 task-4] wA6sjwGVQsyYInY1xWnv3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.596 [XNIO-1 task-4] wA6sjwGVQsyYInY1xWnv3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.597 [XNIO-1 task-4] wA6sjwGVQsyYInY1xWnv3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:46.603 [XNIO-1 task-4] wA6sjwGVQsyYInY1xWnv3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.613 [XNIO-1 task-4] XzXkAybjRBuekQNAGRAxvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.613 [XNIO-1 task-4] XzXkAybjRBuekQNAGRAxvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.613 [XNIO-1 task-4] XzXkAybjRBuekQNAGRAxvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.614 [XNIO-1 task-4] XzXkAybjRBuekQNAGRAxvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjgwMmEyYjUtZTEwNS00NTg4LWFkOTUtNTA3YjgxMzZmY2Y5Ok9TOE9aMUN0U095MnJyVmVjc0d6UGc=", "Basic NjgwMmEyYjUtZTEwNS00NTg4LWFkOTUtNTA3YjgxMzZmY2Y5Ok9TOE9aMUN0U095MnJyVmVjc0d6UGc=", authorization) +20:00:46.617 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:28328327-fd23-4ffd-b39b-b738adeeca4b +20:00:46.618 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:377b66d4 +20:00:46.621 [XNIO-1 task-4] XzXkAybjRBuekQNAGRAxvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.628 [XNIO-1 task-4] Q_Gkvdw1R2Om-NJZA0rpgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.628 [XNIO-1 task-4] Q_Gkvdw1R2Om-NJZA0rpgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.629 [XNIO-1 task-4] Q_Gkvdw1R2Om-NJZA0rpgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.632 [XNIO-1 task-4] Q_Gkvdw1R2Om-NJZA0rpgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", "Basic NjEyMjM4ODItZTFhZi00ZWQyLWE4OGUtNmU3NTgwODllYWE2Okkwd2VZdWtYUXFPSUczaGw1UnkxY3c=", authorization) +20:00:46.638 [XNIO-1 task-4] Q_Gkvdw1R2Om-NJZA0rpgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.642 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a37e851d-2e46-4f2a-aa82-2a8e628d8858 +20:00:46.646 [XNIO-1 task-4] qD6C53kKTbShwONwSVMa9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.646 [XNIO-1 task-4] qD6C53kKTbShwONwSVMa9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.646 [XNIO-1 task-4] qD6C53kKTbShwONwSVMa9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.647 [XNIO-1 task-4] qD6C53kKTbShwONwSVMa9A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:46.647 [XNIO-1 task-4] qD6C53kKTbShwONwSVMa9A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jxWR35UcTAahcGDFtYSFdQ redirectUri = http://localhost:8080/authorization +20:00:46.647 [XNIO-1 task-2] Ro4ZT88dQYKAZZrqheLu-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.647 [XNIO-1 task-2] Ro4ZT88dQYKAZZrqheLu-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.647 [XNIO-1 task-2] Ro4ZT88dQYKAZZrqheLu-w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.655 [XNIO-1 task-2] Ro4ZT88dQYKAZZrqheLu-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.655 [XNIO-1 task-2] Ro4ZT88dQYKAZZrqheLu-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.659 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:921cbe6e +20:00:46.661 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:921cbe6e +20:00:46.663 [XNIO-1 task-2] YdRvkMqnSwyI_6A6nnF2Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.663 [XNIO-1 task-2] YdRvkMqnSwyI_6A6nnF2Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.663 [XNIO-1 task-2] YdRvkMqnSwyI_6A6nnF2Ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.664 [XNIO-1 task-2] YdRvkMqnSwyI_6A6nnF2Ow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.670 [XNIO-1 task-2] YdRvkMqnSwyI_6A6nnF2Ow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.679 [XNIO-1 task-2] S8oC_KJfR6q8tZComCb1zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.679 [XNIO-1 task-2] S8oC_KJfR6q8tZComCb1zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.679 [XNIO-1 task-2] S8oC_KJfR6q8tZComCb1zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.679 [XNIO-1 task-2] S8oC_KJfR6q8tZComCb1zA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.685 [XNIO-1 task-2] S8oC_KJfR6q8tZComCb1zA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.694 [XNIO-1 task-2] vOGXtgdnS1qqwq4cqgMVUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.694 [XNIO-1 task-2] vOGXtgdnS1qqwq4cqgMVUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.695 [XNIO-1 task-2] vOGXtgdnS1qqwq4cqgMVUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.695 [XNIO-1 task-2] vOGXtgdnS1qqwq4cqgMVUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.696 [XNIO-1 task-4] blaW168ESsinwZJe0f8ayQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.696 [XNIO-1 task-4] blaW168ESsinwZJe0f8ayQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.697 [XNIO-1 task-4] blaW168ESsinwZJe0f8ayQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.697 [XNIO-1 task-4] blaW168ESsinwZJe0f8ayQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cW-BizclRpGghU20sioQyg redirectUri = http://localhost:8080/authorization +20:00:46.702 [XNIO-1 task-2] vOGXtgdnS1qqwq4cqgMVUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.703 [XNIO-1 task-2] vOGXtgdnS1qqwq4cqgMVUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.703 [XNIO-1 task-1] MIGr37jeR3G8Ta6c0sZubQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.703 [XNIO-1 task-4] blaW168ESsinwZJe0f8ayQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.704 [XNIO-1 task-1] MIGr37jeR3G8Ta6c0sZubQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.704 [XNIO-1 task-1] MIGr37jeR3G8Ta6c0sZubQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", "Basic NjI3YzcxZDctNTQ4MC00NzEyLTk1OTUtNjcyYWNjMzhhNjM5OktkTE8tSk8tU1FDRFFfLWxqQjJzMVE=", authorization) +20:00:46.708 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:689d8066-2602-4a8d-9e04-2bdd4c78e535 +20:00:46.710 [XNIO-1 task-2] XQp9OsrhR_OR5co3YJBZMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.711 [XNIO-1 task-2] XQp9OsrhR_OR5co3YJBZMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.711 [XNIO-1 task-2] XQp9OsrhR_OR5co3YJBZMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.712 [XNIO-1 task-2] XQp9OsrhR_OR5co3YJBZMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:46.714 [XNIO-1 task-1] MIGr37jeR3G8Ta6c0sZubQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.715 [XNIO-1 task-1] MIGr37jeR3G8Ta6c0sZubQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.718 [XNIO-1 task-2] XQp9OsrhR_OR5co3YJBZMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.728 [XNIO-1 task-2] Tsm9v6D2Qe-lrOPkW3_LWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.728 [XNIO-1 task-2] Tsm9v6D2Qe-lrOPkW3_LWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.728 [XNIO-1 task-2] Tsm9v6D2Qe-lrOPkW3_LWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.729 [XNIO-1 task-2] Tsm9v6D2Qe-lrOPkW3_LWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.738 [XNIO-1 task-2] Tsm9v6D2Qe-lrOPkW3_LWw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.757 [XNIO-1 task-2] NReKsi5XTNqB0lSXtB9xiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.757 [XNIO-1 task-2] NReKsi5XTNqB0lSXtB9xiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.758 [XNIO-1 task-2] NReKsi5XTNqB0lSXtB9xiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.758 [XNIO-1 task-2] NReKsi5XTNqB0lSXtB9xiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.764 [XNIO-1 task-2] NReKsi5XTNqB0lSXtB9xiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.771 [XNIO-1 task-2] QFnIpzOqT7KKRXm1L2cT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.771 [XNIO-1 task-2] QFnIpzOqT7KKRXm1L2cT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.771 [XNIO-1 task-2] QFnIpzOqT7KKRXm1L2cT1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.772 [XNIO-1 task-2] QFnIpzOqT7KKRXm1L2cT1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.777 [XNIO-1 task-2] QFnIpzOqT7KKRXm1L2cT1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.780 [XNIO-1 task-1] tslvGx3iR3u2kYwfpDWJqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.780 [XNIO-1 task-1] tslvGx3iR3u2kYwfpDWJqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.780 [XNIO-1 task-1] tslvGx3iR3u2kYwfpDWJqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.781 [XNIO-1 task-1] tslvGx3iR3u2kYwfpDWJqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = O2BQ0zZORiKjIpiOktk_nw redirectUri = http://localhost:8080/authorization +20:00:46.787 [XNIO-1 task-2] qtBtE7CDSXG8UgT5Ny_6ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.787 [XNIO-1 task-2] qtBtE7CDSXG8UgT5Ny_6ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.787 [XNIO-1 task-2] qtBtE7CDSXG8UgT5Ny_6ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.788 [XNIO-1 task-2] qtBtE7CDSXG8UgT5Ny_6ng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.793 [XNIO-1 task-1] tslvGx3iR3u2kYwfpDWJqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.794 [XNIO-1 task-2] qtBtE7CDSXG8UgT5Ny_6ng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.794 [XNIO-1 task-2] qtBtE7CDSXG8UgT5Ny_6ng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.801 [XNIO-1 task-2] YYqWl2RkRgK22HLMhb9SzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.801 [XNIO-1 task-2] YYqWl2RkRgK22HLMhb9SzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.801 [XNIO-1 task-4] PnPbgXpNSoqfSR1wwhY2zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.801 [XNIO-1 task-4] PnPbgXpNSoqfSR1wwhY2zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.802 [XNIO-1 task-2] YYqWl2RkRgK22HLMhb9SzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.802 [XNIO-1 task-4] PnPbgXpNSoqfSR1wwhY2zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.802 [XNIO-1 task-4] PnPbgXpNSoqfSR1wwhY2zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", authorization) +20:00:46.802 [XNIO-1 task-4] PnPbgXpNSoqfSR1wwhY2zw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.808 [XNIO-1 task-4] PnPbgXpNSoqfSR1wwhY2zw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f39f1299-0cc6-4653-85a2-132bf26f7a86 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:46.812 [XNIO-1 task-1] FoTJfTCmR9qdcppXj2WHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.812 [XNIO-1 task-1] FoTJfTCmR9qdcppXj2WHvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.814 [XNIO-1 task-4] EuY0t_IfSVuPk8pRzoNm6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.815 [XNIO-1 task-4] EuY0t_IfSVuPk8pRzoNm6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.815 [XNIO-1 task-2] uFfLtqX5RA6450ibfNHWMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.815 [XNIO-1 task-2] uFfLtqX5RA6450ibfNHWMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.817 [XNIO-1 task-2] uFfLtqX5RA6450ibfNHWMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.819 [XNIO-1 task-2] uFfLtqX5RA6450ibfNHWMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", authorization) +20:00:46.820 [XNIO-1 task-4] EuY0t_IfSVuPk8pRzoNm6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.823 [XNIO-1 task-1] FoTJfTCmR9qdcppXj2WHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.823 [XNIO-1 task-4] EuY0t_IfSVuPk8pRzoNm6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", "Basic MGY0YjQ3MmQtZWVhZC00Zjc4LTgyYzMtMDc5ZDUyM2JkY2QwOnFNa3JvTHpCU3FXTlVURFJCcER4MHc=", authorization) +20:00:46.824 [XNIO-1 task-1] FoTJfTCmR9qdcppXj2WHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", authorization) +20:00:46.826 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:8d33e046 +20:00:46.833 [XNIO-1 task-2] uFfLtqX5RA6450ibfNHWMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f39f1299-0cc6-4653-85a2-132bf26f7a86 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:46.835 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:377b66d4 +20:00:46.835 [XNIO-1 task-1] FoTJfTCmR9qdcppXj2WHvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.840 [XNIO-1 task-2] jfKG-n4gSjie7K35M3oSNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.840 [XNIO-1 task-2] jfKG-n4gSjie7K35M3oSNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.841 [XNIO-1 task-2] jfKG-n4gSjie7K35M3oSNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.842 [XNIO-1 task-2] jfKG-n4gSjie7K35M3oSNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", authorization) +20:00:46.845 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ce4469b3 +20:00:46.846 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ce4469b3 +20:00:46.847 [XNIO-1 task-2] jfKG-n4gSjie7K35M3oSNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.858 [XNIO-1 task-1] vypJMA9CR1Cxe12olbXUGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.859 [XNIO-1 task-1] vypJMA9CR1Cxe12olbXUGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.859 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:35892ce3 +20:00:46.859 [XNIO-1 task-1] vypJMA9CR1Cxe12olbXUGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.859 [XNIO-1 task-1] vypJMA9CR1Cxe12olbXUGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", authorization) +20:00:46.862 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:fbc97090-2662-4b3d-b8a6-1b9f800393f3 +20:00:46.862 [XNIO-1 task-2] _3a2Bf8QRbKDRDXZS8V_ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.862 [XNIO-1 task-2] _3a2Bf8QRbKDRDXZS8V_ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.863 [XNIO-1 task-2] _3a2Bf8QRbKDRDXZS8V_ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.863 [XNIO-1 task-2] _3a2Bf8QRbKDRDXZS8V_ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", authorization) +20:00:46.869 [XNIO-1 task-2] _3a2Bf8QRbKDRDXZS8V_ow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.875 [XNIO-1 task-1] vypJMA9CR1Cxe12olbXUGw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.875 [XNIO-1 task-2] NcLb-9xnR6udgdb8u0R1pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.876 [XNIO-1 task-2] NcLb-9xnR6udgdb8u0R1pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.876 [XNIO-1 task-2] NcLb-9xnR6udgdb8u0R1pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.877 [XNIO-1 task-2] NcLb-9xnR6udgdb8u0R1pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", authorization) +20:00:46.881 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c5bdabc0-4f4a-464e-b585-c5c80cf6ca3c +20:00:46.883 [XNIO-1 task-4] 0sZBLYKHRvGvGI1YPeVGQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.883 [XNIO-1 task-4] 0sZBLYKHRvGvGI1YPeVGQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.883 [XNIO-1 task-4] 0sZBLYKHRvGvGI1YPeVGQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.883 [XNIO-1 task-4] 0sZBLYKHRvGvGI1YPeVGQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.885 [XNIO-1 task-4] 0sZBLYKHRvGvGI1YPeVGQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = fCOVbG4zQZ-1I01IT1nYIg redirectUri = http://localhost:8080/authorization +20:00:46.885 [XNIO-1 task-1] s2915yGCSCSED5y-upaHkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.885 [XNIO-1 task-1] s2915yGCSCSED5y-upaHkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.887 [XNIO-1 task-1] s2915yGCSCSED5y-upaHkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.888 [XNIO-1 task-1] s2915yGCSCSED5y-upaHkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 95c71da5-d47d-46cf-af55-8ef2390b543f scope = null +20:00:46.889 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c5bdabc0-4f4a-464e-b585-c5c80cf6ca3c +20:00:46.892 [XNIO-1 task-2] WihlRhaeTTaXiTdPzUb6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.893 [XNIO-1 task-2] WihlRhaeTTaXiTdPzUb6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.894 [XNIO-1 task-2] WihlRhaeTTaXiTdPzUb6bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.894 [XNIO-1 task-2] WihlRhaeTTaXiTdPzUb6bg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", authorization) +20:00:46.895 [XNIO-1 task-4] 0sZBLYKHRvGvGI1YPeVGQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.898 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:46.902 [XNIO-1 task-1] s2915yGCSCSED5y-upaHkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.904 [XNIO-1 task-2] WihlRhaeTTaXiTdPzUb6bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.909 [XNIO-1 task-2] oDEtOTWHSAuXsGgb8cx0Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.909 [XNIO-1 task-2] oDEtOTWHSAuXsGgb8cx0Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.910 [XNIO-1 task-2] oDEtOTWHSAuXsGgb8cx0Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.910 [XNIO-1 task-2] oDEtOTWHSAuXsGgb8cx0Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NThkYmIyNWMtODE1YS00MDZlLTliYmMtNWZiOWE2ZTNlODU0Om1fOWJ5UkxPUlBPNUkxUC11MHBEdkE=", "Basic NThkYmIyNWMtODE1YS00MDZlLTliYmMtNWZiOWE2ZTNlODU0Om1fOWJ5UkxPUlBPNUkxUC11MHBEdkE=", authorization) +20:00:46.917 [XNIO-1 task-2] oDEtOTWHSAuXsGgb8cx0Qw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.922 [XNIO-1 task-1] elts8D-ySp-BhZakITtgdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.922 [XNIO-1 task-1] elts8D-ySp-BhZakITtgdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.923 [XNIO-1 task-1] elts8D-ySp-BhZakITtgdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.923 [XNIO-1 task-1] elts8D-ySp-BhZakITtgdw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", authorization) +20:00:46.923 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:35892ce3 +20:00:46.924 [XNIO-1 task-2] buv83ztuQBCo7AZLWNriNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.925 [XNIO-1 task-2] buv83ztuQBCo7AZLWNriNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.926 [XNIO-1 task-2] buv83ztuQBCo7AZLWNriNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.926 [XNIO-1 task-2] buv83ztuQBCo7AZLWNriNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", authorization) +20:00:46.928 [XNIO-1 task-1] elts8D-ySp-BhZakITtgdw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.940 [XNIO-1 task-1] 6YEBBIXMRTK6XAqlDMXUZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.941 [XNIO-1 task-1] 6YEBBIXMRTK6XAqlDMXUZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.941 [XNIO-1 task-1] 6YEBBIXMRTK6XAqlDMXUZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.941 [XNIO-1 task-1] 6YEBBIXMRTK6XAqlDMXUZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.944 [XNIO-1 task-1] 6YEBBIXMRTK6XAqlDMXUZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODA0MWJkOGUtYjkxYi00YmVhLThhNzMtMGNlY2YzMzA5NTliOnBSV3A2QkF6U2xDaVNQOElmNEtrWnc=", "Basic ODA0MWJkOGUtYjkxYi00YmVhLThhNzMtMGNlY2YzMzA5NTliOnBSV3A2QkF6U2xDaVNQOElmNEtrWnc=", authorization) +20:00:46.948 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:35892ce3 +20:00:46.953 [XNIO-1 task-1] 6YEBBIXMRTK6XAqlDMXUZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.962 [XNIO-1 task-1] qUMOXmb4THCvLD0jcKCTVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.962 [XNIO-1 task-1] qUMOXmb4THCvLD0jcKCTVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.962 [XNIO-1 task-1] qUMOXmb4THCvLD0jcKCTVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.963 [XNIO-1 task-1] qUMOXmb4THCvLD0jcKCTVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", authorization) +20:00:46.968 [XNIO-1 task-1] qUMOXmb4THCvLD0jcKCTVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.973 [XNIO-1 task-2] nhXiJ3HGQ5y9QqlytC4Gfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.973 [XNIO-1 task-2] nhXiJ3HGQ5y9QqlytC4Gfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:46.974 [XNIO-1 task-2] nhXiJ3HGQ5y9QqlytC4Gfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:46.974 [XNIO-1 task-2] nhXiJ3HGQ5y9QqlytC4Gfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", "Basic MGMyNzRjYzEtNWRkMS00MmJiLWI0N2YtMzU0MGQyOTAzYTc0OlRvM2U1OFpwUzBxZHhOdWpwamNFS3c=", authorization) +20:00:46.980 [XNIO-1 task-2] nhXiJ3HGQ5y9QqlytC4Gfg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:46.981 [XNIO-1 task-1] 1l-QrYY5Rs6VSlq_CDUSnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.981 [XNIO-1 task-2] nhXiJ3HGQ5y9QqlytC4Gfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:46.982 [XNIO-1 task-2] nhXiJ3HGQ5y9QqlytC4Gfg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.982 [XNIO-1 task-1] 1l-QrYY5Rs6VSlq_CDUSnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.983 [XNIO-1 task-1] 1l-QrYY5Rs6VSlq_CDUSnQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:46.990 [XNIO-1 task-1] 1l-QrYY5Rs6VSlq_CDUSnQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:46.993 [XNIO-1 task-4] tirL-cxSRo-54rXo5eaNfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.993 [XNIO-1 task-4] tirL-cxSRo-54rXo5eaNfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.993 [XNIO-1 task-4] tirL-cxSRo-54rXo5eaNfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.994 [XNIO-1 task-4] tirL-cxSRo-54rXo5eaNfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = gqxl_SWpS6SqgbmNd-_1MQ redirectUri = http://localhost:8080/authorization +20:00:46.998 [XNIO-1 task-2] bYg_fzvlQCashNx4c7722Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.998 [XNIO-1 task-2] bYg_fzvlQCashNx4c7722Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.998 [XNIO-1 task-2] bYg_fzvlQCashNx4c7722Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:46.999 [XNIO-1 task-2] bYg_fzvlQCashNx4c7722Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.008 [XNIO-1 task-4] tirL-cxSRo-54rXo5eaNfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.008 [XNIO-1 task-4] tirL-cxSRo-54rXo5eaNfA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.024 [XNIO-1 task-2] bXeJklWSR9uphQ_4GCnIjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.024 [XNIO-1 task-2] bXeJklWSR9uphQ_4GCnIjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.025 [XNIO-1 task-2] bXeJklWSR9uphQ_4GCnIjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.025 [XNIO-1 task-2] bXeJklWSR9uphQ_4GCnIjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmI3OWUyYTAtYjlkNy00NjExLTlmNTktOWE2ZDg2NmQyOWFmOjFYbk9aaVZMVF8yeF9keVRqbENTVVE=", "Basic NmI3OWUyYTAtYjlkNy00NjExLTlmNTktOWE2ZDg2NmQyOWFmOjFYbk9aaVZMVF8yeF9keVRqbENTVVE=", authorization) +20:00:47.034 [XNIO-1 task-2] bXeJklWSR9uphQ_4GCnIjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.042 [XNIO-1 task-2] Uu_M7f7xSZOxWCyOxMnu8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.042 [XNIO-1 task-2] Uu_M7f7xSZOxWCyOxMnu8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.042 [XNIO-1 task-2] Uu_M7f7xSZOxWCyOxMnu8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.042 [XNIO-1 task-2] Uu_M7f7xSZOxWCyOxMnu8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2U3MjdlZmItNWYxMi00ODk0LWEzNWItYTYwNWYzYTllZmIyOlBrX1RWTFhWU21tSTRkMnZNLXdua1E=", "Basic N2U3MjdlZmItNWYxMi00ODk0LWEzNWItYTYwNWYzYTllZmIyOlBrX1RWTFhWU21tSTRkMnZNLXdua1E=", authorization) +20:00:47.051 [XNIO-1 task-2] Uu_M7f7xSZOxWCyOxMnu8Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.056 [XNIO-1 task-2] Rd6jI0y_Qau3LSBeoWBBdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.057 [XNIO-1 task-2] Rd6jI0y_Qau3LSBeoWBBdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.057 [XNIO-1 task-2] Rd6jI0y_Qau3LSBeoWBBdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.057 [XNIO-1 task-2] Rd6jI0y_Qau3LSBeoWBBdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", authorization) +20:00:47.062 [XNIO-1 task-2] Rd6jI0y_Qau3LSBeoWBBdg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.068 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c87f8dda +20:00:47.072 [XNIO-1 task-2] XMLBMitFTW6Bhb_g5VU_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.072 [XNIO-1 task-2] XMLBMitFTW6Bhb_g5VU_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.072 [XNIO-1 task-2] XMLBMitFTW6Bhb_g5VU_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.073 [XNIO-1 task-2] XMLBMitFTW6Bhb_g5VU_ag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.078 [XNIO-1 task-2] XMLBMitFTW6Bhb_g5VU_ag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.079 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ce4469b3 +20:00:47.083 [XNIO-1 task-2] ymlYlYmXQ9mRtBv9BO5oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.083 [XNIO-1 task-2] ymlYlYmXQ9mRtBv9BO5oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.083 [XNIO-1 task-2] ymlYlYmXQ9mRtBv9BO5oMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.084 [XNIO-1 task-2] ymlYlYmXQ9mRtBv9BO5oMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.089 [XNIO-1 task-2] ymlYlYmXQ9mRtBv9BO5oMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.096 [XNIO-1 task-2] TKOx9I2IRdS1WyucWR0Eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.097 [XNIO-1 task-2] TKOx9I2IRdS1WyucWR0Eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.098 [XNIO-1 task-2] TKOx9I2IRdS1WyucWR0Eag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.098 [XNIO-1 task-2] TKOx9I2IRdS1WyucWR0Eag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.101 [XNIO-1 task-4] YBXiNszzRou_CR-nqH2iEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.101 [XNIO-1 task-4] YBXiNszzRou_CR-nqH2iEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.102 [XNIO-1 task-4] YBXiNszzRou_CR-nqH2iEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.102 [XNIO-1 task-4] YBXiNszzRou_CR-nqH2iEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ud-XwxVQTX2WdYJEBRma1Q redirectUri = http://localhost:8080/authorization +20:00:47.104 [XNIO-1 task-2] TKOx9I2IRdS1WyucWR0Eag INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.107 [XNIO-1 task-1] l7s5ymoyQOe3W0bDjQpyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.107 [XNIO-1 task-1] l7s5ymoyQOe3W0bDjQpyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.107 [XNIO-1 task-1] l7s5ymoyQOe3W0bDjQpyyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.107 [XNIO-1 task-1] l7s5ymoyQOe3W0bDjQpyyA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cMnNlvAMTkO49DJ6ovEyiA redirectUri = http://localhost:8080/authorization +20:00:47.110 [XNIO-1 task-4] YBXiNszzRou_CR-nqH2iEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.110 [XNIO-1 task-2] 1fBRftUiRWqFAKx-Eca_jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.110 [XNIO-1 task-2] 1fBRftUiRWqFAKx-Eca_jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.111 [XNIO-1 task-2] 1fBRftUiRWqFAKx-Eca_jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.111 [XNIO-1 task-2] 1fBRftUiRWqFAKx-Eca_jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", "Basic ZTk0YTg5NjUtNTBiYy00NTExLTliYmYtMmJkOGUwMDI1NTBkOndPS1AteGxnUjN5bDc3NER6bDBIc0E=", authorization) +20:00:47.117 [XNIO-1 task-2] 1fBRftUiRWqFAKx-Eca_jg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.119 [XNIO-1 task-1] l7s5ymoyQOe3W0bDjQpyyA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.120 [XNIO-1 task-1] l7s5ymoyQOe3W0bDjQpyyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.126 [XNIO-1 task-4] tnLa2BNHQD2o60JxjogJ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.126 [XNIO-1 task-4] tnLa2BNHQD2o60JxjogJ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.126 [XNIO-1 task-4] tnLa2BNHQD2o60JxjogJ1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.126 [XNIO-1 task-4] tnLa2BNHQD2o60JxjogJ1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.129 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:377b66d4 +20:00:47.133 [XNIO-1 task-4] tnLa2BNHQD2o60JxjogJ1A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.142 [XNIO-1 task-4] MXkFLA49QpecehPJn6z7NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.142 [XNIO-1 task-4] MXkFLA49QpecehPJn6z7NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.142 [XNIO-1 task-4] MXkFLA49QpecehPJn6z7NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.142 [XNIO-1 task-4] MXkFLA49QpecehPJn6z7NQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.147 [XNIO-1 task-2] UJmQ1YSzRSKWYG8ddo0etg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.147 [XNIO-1 task-2] UJmQ1YSzRSKWYG8ddo0etg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.147 [XNIO-1 task-4] MXkFLA49QpecehPJn6z7NQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.148 [XNIO-1 task-1] IoIcrfhdTSC0K9oDLN0kqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.148 [XNIO-1 task-2] UJmQ1YSzRSKWYG8ddo0etg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.148 [XNIO-1 task-1] IoIcrfhdTSC0K9oDLN0kqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.148 [XNIO-1 task-2] UJmQ1YSzRSKWYG8ddo0etg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _gvCG2iqR1CItAqcwTZDLw redirectUri = http://localhost:8080/authorization +20:00:47.151 [XNIO-1 task-1] IoIcrfhdTSC0K9oDLN0kqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.152 [XNIO-1 task-1] IoIcrfhdTSC0K9oDLN0kqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IC2wAIbdTUqEHz9P43DHfQ redirectUri = http://localhost:8080/authorization +20:00:47.152 [XNIO-1 task-4] HHF0uai0TVSErXjpUCUc1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.152 [XNIO-1 task-4] HHF0uai0TVSErXjpUCUc1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.152 [XNIO-1 task-4] HHF0uai0TVSErXjpUCUc1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.153 [XNIO-1 task-4] HHF0uai0TVSErXjpUCUc1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.158 [XNIO-1 task-2] UJmQ1YSzRSKWYG8ddo0etg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.158 [XNIO-1 task-2] UJmQ1YSzRSKWYG8ddo0etg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.160 [XNIO-1 task-1] IoIcrfhdTSC0K9oDLN0kqQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.160 [XNIO-1 task-1] IoIcrfhdTSC0K9oDLN0kqQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.166 [XNIO-1 task-4] m21VAPgQS7uyNO6gIZP8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.166 [XNIO-1 task-4] m21VAPgQS7uyNO6gIZP8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.166 [XNIO-1 task-4] m21VAPgQS7uyNO6gIZP8tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.167 [XNIO-1 task-4] m21VAPgQS7uyNO6gIZP8tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.173 [XNIO-1 task-4] m21VAPgQS7uyNO6gIZP8tQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.176 [XNIO-1 task-1] lKpBWAtuRc-38CLJWHItdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.176 [XNIO-1 task-1] lKpBWAtuRc-38CLJWHItdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.176 [XNIO-1 task-1] lKpBWAtuRc-38CLJWHItdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.176 [XNIO-1 task-1] lKpBWAtuRc-38CLJWHItdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = be06a180-22e1-41b0-8b83-572819c4537e scope = null +20:00:47.180 [XNIO-1 task-4] idfT8GzWQ-mv9g0hYCHH1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.180 [XNIO-1 task-4] idfT8GzWQ-mv9g0hYCHH1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.186 [XNIO-1 task-4] idfT8GzWQ-mv9g0hYCHH1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.186 [XNIO-1 task-4] idfT8GzWQ-mv9g0hYCHH1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.189 [XNIO-1 task-1] lKpBWAtuRc-38CLJWHItdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.191 [XNIO-1 task-4] idfT8GzWQ-mv9g0hYCHH1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.199 [XNIO-1 task-4] U-i0Zww_SuaPeGLsiDzC_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.199 [XNIO-1 task-4] U-i0Zww_SuaPeGLsiDzC_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.199 [XNIO-1 task-4] U-i0Zww_SuaPeGLsiDzC_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.199 [XNIO-1 task-4] U-i0Zww_SuaPeGLsiDzC_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.204 [XNIO-1 task-4] U-i0Zww_SuaPeGLsiDzC_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.205 [XNIO-1 task-1] jxNncMTvTvK1BCvXfvHSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.205 [XNIO-1 task-1] jxNncMTvTvK1BCvXfvHSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.205 [XNIO-1 task-1] jxNncMTvTvK1BCvXfvHSzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.205 [XNIO-1 task-1] jxNncMTvTvK1BCvXfvHSzA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a8e7126f-ecf5-467b-a6ef-6a63356dd332 scope = null +20:00:47.209 [XNIO-1 task-4] f2qz82HPQ5OBvG9UW4tqkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.210 [XNIO-1 task-4] f2qz82HPQ5OBvG9UW4tqkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.211 [XNIO-1 task-4] f2qz82HPQ5OBvG9UW4tqkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.211 [XNIO-1 task-4] f2qz82HPQ5OBvG9UW4tqkQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.216 [XNIO-1 task-4] f2qz82HPQ5OBvG9UW4tqkQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.218 [XNIO-1 task-1] jxNncMTvTvK1BCvXfvHSzA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.229 [XNIO-1 task-4] 8VJqHHzIQwWIIU08H3U3Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.229 [XNIO-1 task-4] 8VJqHHzIQwWIIU08H3U3Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.229 [XNIO-1 task-4] 8VJqHHzIQwWIIU08H3U3Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.229 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:82c75cb9 +20:00:47.231 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:82c75cb9 +20:00:47.234 [XNIO-1 task-4] 8VJqHHzIQwWIIU08H3U3Qw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.244 [XNIO-1 task-4] Yf2gAEv2SYmCGHlFmiu99g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.244 [XNIO-1 task-4] Yf2gAEv2SYmCGHlFmiu99g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.245 [XNIO-1 task-4] Yf2gAEv2SYmCGHlFmiu99g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.245 [XNIO-1 task-4] Yf2gAEv2SYmCGHlFmiu99g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", "Basic ZmFlZjdhY2EtZmY1Zi00M2JhLWI3ZmUtZGI5ZDNmYmI5ZTA0OnVUaFRxNjIxVF9TRXV4elVyQ1Q2R0E=", authorization) +20:00:47.250 [XNIO-1 task-4] Yf2gAEv2SYmCGHlFmiu99g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.256 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a5d7496 +20:00:47.256 [XNIO-1 task-4] dWOs0hmETty8OGcCNWID_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.257 [XNIO-1 task-4] dWOs0hmETty8OGcCNWID_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.257 [XNIO-1 task-4] dWOs0hmETty8OGcCNWID_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.257 [XNIO-1 task-4] dWOs0hmETty8OGcCNWID_g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.259 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3a5d7496 +20:00:47.268 [XNIO-1 task-4] dWOs0hmETty8OGcCNWID_g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.275 [XNIO-1 task-4] dgbWIoBpT9KSpTyGTUncCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.275 [XNIO-1 task-4] dgbWIoBpT9KSpTyGTUncCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.276 [XNIO-1 task-4] dgbWIoBpT9KSpTyGTUncCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.276 [XNIO-1 task-4] dgbWIoBpT9KSpTyGTUncCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.276 [XNIO-1 task-2] TLndVW4jQSCgQfo--6GW7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.276 [XNIO-1 task-2] TLndVW4jQSCgQfo--6GW7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.276 [XNIO-1 task-2] TLndVW4jQSCgQfo--6GW7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.276 [XNIO-1 task-2] TLndVW4jQSCgQfo--6GW7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.277 [XNIO-1 task-1] m-mflzvHRSKGpmM5cTwrng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.277 [XNIO-1 task-2] TLndVW4jQSCgQfo--6GW7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.277 [XNIO-1 task-1] m-mflzvHRSKGpmM5cTwrng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XgbWrKK_Tx2VQxECeuFNUg redirectUri = http://localhost:8080/authorization +20:00:47.277 [XNIO-1 task-2] TLndVW4jQSCgQfo--6GW7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5d123a29-6552-4b47-aba9-17d0e0ad152d scope = null +20:00:47.285 [XNIO-1 task-4] dgbWIoBpT9KSpTyGTUncCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.287 [XNIO-1 task-2] TLndVW4jQSCgQfo--6GW7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.288 [XNIO-1 task-1] m-mflzvHRSKGpmM5cTwrng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.291 [XNIO-1 task-4] XO5JgcELQKqIe4yzt8VFOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.292 [XNIO-1 task-4] XO5JgcELQKqIe4yzt8VFOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.292 [XNIO-1 task-4] XO5JgcELQKqIe4yzt8VFOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.292 [XNIO-1 task-4] XO5JgcELQKqIe4yzt8VFOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", "Basic YTViMzUyYjctYjg5ZS00YjBkLTkxMWYtMTRjYjRkYzhlNzI0OjY3bjVHdGprUjJlOWJwdTRadnpSU0E=", authorization) +20:00:47.297 [XNIO-1 task-4] XO5JgcELQKqIe4yzt8VFOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.302 [XNIO-1 task-2] jxelzAr6Te-E4PIOkR0JKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.303 [XNIO-1 task-1] WHSGq0DOR2iiOmNDBNhnmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.303 [XNIO-1 task-1] WHSGq0DOR2iiOmNDBNhnmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.303 [XNIO-1 task-1] WHSGq0DOR2iiOmNDBNhnmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.303 [XNIO-1 task-1] WHSGq0DOR2iiOmNDBNhnmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.304 [XNIO-1 task-1] WHSGq0DOR2iiOmNDBNhnmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", "Basic NDE4ODJkOTEtODJkMC00YjM4LWE2NmMtZWVlNTYzZDRkOTQwOnlHd2pGZWlQVFFpZUZIbzR4QUdGMmc=", authorization) +20:00:47.304 [XNIO-1 task-2] jxelzAr6Te-E4PIOkR0JKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.304 [XNIO-1 task-2] jxelzAr6Te-E4PIOkR0JKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.304 [XNIO-1 task-2] jxelzAr6Te-E4PIOkR0JKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 86330ff2-2195-4562-be4e-0b3a4d3e587f scope = null +20:00:47.306 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:daeb7b42-1e48-4aad-a773-af5123a3335d +20:00:47.311 [XNIO-1 task-1] WHSGq0DOR2iiOmNDBNhnmA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.311 [XNIO-1 task-4] Lyg24snLQimREE-eUkzs0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.311 [XNIO-1 task-1] WHSGq0DOR2iiOmNDBNhnmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.311 [XNIO-1 task-4] Lyg24snLQimREE-eUkzs0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.312 [XNIO-1 task-4] Lyg24snLQimREE-eUkzs0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Q9iUeaspSkSkze07-y-LMQ redirectUri = http://localhost:8080/authorization +20:00:47.316 [XNIO-1 task-2] jxelzAr6Te-E4PIOkR0JKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.321 [XNIO-1 task-1] o3CV10WhRZiZSvCyhr9meA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.321 [XNIO-1 task-1] o3CV10WhRZiZSvCyhr9meA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.322 [XNIO-1 task-1] o3CV10WhRZiZSvCyhr9meA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.323 [XNIO-1 task-1] o3CV10WhRZiZSvCyhr9meA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.323 [XNIO-1 task-4] Lyg24snLQimREE-eUkzs0Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.329 [XNIO-1 task-1] o3CV10WhRZiZSvCyhr9meA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.333 [XNIO-1 task-1] G6nI8v0fRXO6f1f2ps0RMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.334 [XNIO-1 task-1] G6nI8v0fRXO6f1f2ps0RMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.334 [XNIO-1 task-1] G6nI8v0fRXO6f1f2ps0RMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.334 [XNIO-1 task-1] G6nI8v0fRXO6f1f2ps0RMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", authorization) +20:00:47.341 [XNIO-1 task-4] lxt9CqM2TbqU3-yWWSGU0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.341 [XNIO-1 task-4] lxt9CqM2TbqU3-yWWSGU0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.342 [XNIO-1 task-4] lxt9CqM2TbqU3-yWWSGU0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.342 [XNIO-1 task-4] lxt9CqM2TbqU3-yWWSGU0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjA0MWQwYjMtNjAzNS00YzQ1LTk1YTUtZTFhNGMxM2FlOTI1Olk1eXpVdnROUndxbkZrMWdNOWNYOXc=", "Basic MjA0MWQwYjMtNjAzNS00YzQ1LTk1YTUtZTFhNGMxM2FlOTI1Olk1eXpVdnROUndxbkZrMWdNOWNYOXc=", authorization) +20:00:47.347 [XNIO-1 task-1] G6nI8v0fRXO6f1f2ps0RMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.348 [XNIO-1 task-1] G6nI8v0fRXO6f1f2ps0RMw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.354 [XNIO-1 task-4] lxt9CqM2TbqU3-yWWSGU0w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.365 [XNIO-1 task-1] Ouyy6V5EQ5ycSLg2oMgb9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.365 [XNIO-1 task-1] Ouyy6V5EQ5ycSLg2oMgb9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.365 [XNIO-1 task-1] Ouyy6V5EQ5ycSLg2oMgb9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.366 [XNIO-1 task-1] Ouyy6V5EQ5ycSLg2oMgb9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.371 [XNIO-1 task-1] Ouyy6V5EQ5ycSLg2oMgb9w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.377 [XNIO-1 task-1] k44gk9APT1W4NPp43uajbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.377 [XNIO-1 task-1] k44gk9APT1W4NPp43uajbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.377 [XNIO-1 task-1] k44gk9APT1W4NPp43uajbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.377 [XNIO-1 task-1] k44gk9APT1W4NPp43uajbQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.382 [XNIO-1 task-1] k44gk9APT1W4NPp43uajbQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.395 [XNIO-1 task-1] M4Dl4u3JQp2kfNjEcRRIyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.395 [XNIO-1 task-1] M4Dl4u3JQp2kfNjEcRRIyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.395 [XNIO-1 task-1] M4Dl4u3JQp2kfNjEcRRIyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.395 [XNIO-1 task-1] M4Dl4u3JQp2kfNjEcRRIyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", authorization) +20:00:47.396 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:42ad1601-4169-4172-b032-56df15b6f056 +20:00:47.397 [XNIO-1 task-4] HeGLR46dQXy1tt_S8SO5Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.397 [XNIO-1 task-4] HeGLR46dQXy1tt_S8SO5Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.397 [XNIO-1 task-4] HeGLR46dQXy1tt_S8SO5Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.398 [XNIO-1 task-4] HeGLR46dQXy1tt_S8SO5Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MjA0MWQwYjMtNjAzNS00YzQ1LTk1YTUtZTFhNGMxM2FlOTI1Olk1eXpVdnROUndxbkZrMWdNOWNYOXc=", "Basic MjA0MWQwYjMtNjAzNS00YzQ1LTk1YTUtZTFhNGMxM2FlOTI1Olk1eXpVdnROUndxbkZrMWdNOWNYOXc=", authorization) +20:00:47.403 [XNIO-1 task-4] HeGLR46dQXy1tt_S8SO5Jw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.406 [XNIO-1 task-1] M4Dl4u3JQp2kfNjEcRRIyA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.406 [XNIO-1 task-1] M4Dl4u3JQp2kfNjEcRRIyA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.408 [XNIO-1 task-4] nO4-jY91RGuHzZNJqONGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.408 [XNIO-1 task-4] nO4-jY91RGuHzZNJqONGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.409 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9cb6d675-18d2-4eb3-ad26-3db48be6845e +20:00:47.408 [XNIO-1 task-4] nO4-jY91RGuHzZNJqONGMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.410 [XNIO-1 task-4] nO4-jY91RGuHzZNJqONGMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.416 [XNIO-1 task-1] Cg4562srTLGwV-i_qIHVQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.416 [XNIO-1 task-1] Cg4562srTLGwV-i_qIHVQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.417 [XNIO-1 task-1] Cg4562srTLGwV-i_qIHVQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.417 [XNIO-1 task-1] Cg4562srTLGwV-i_qIHVQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", authorization) +20:00:47.421 [XNIO-1 task-4] nO4-jY91RGuHzZNJqONGMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.422 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9cb6d675-18d2-4eb3-ad26-3db48be6845e +20:00:47.427 [XNIO-1 task-1] Cg4562srTLGwV-i_qIHVQw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.428 [XNIO-1 task-4] 6pC1QF7_R1Gk4qAhIAzb4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.428 [XNIO-1 task-4] 6pC1QF7_R1Gk4qAhIAzb4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.428 [XNIO-1 task-4] 6pC1QF7_R1Gk4qAhIAzb4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.429 [XNIO-1 task-4] 6pC1QF7_R1Gk4qAhIAzb4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.431 [XNIO-1 task-2] ssRhx6prROuW1UiBFEN6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.431 [XNIO-1 task-2] ssRhx6prROuW1UiBFEN6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.431 [XNIO-1 task-2] ssRhx6prROuW1UiBFEN6qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.431 [XNIO-1 task-2] ssRhx6prROuW1UiBFEN6qw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = s0hG5uysTIyDGjwnMqZCDA redirectUri = http://localhost:8080/authorization +20:00:47.433 [XNIO-1 task-4] 6pC1QF7_R1Gk4qAhIAzb4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.434 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35892ce3 +20:00:47.439 [XNIO-1 task-2] ssRhx6prROuW1UiBFEN6qw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.439 [XNIO-1 task-4] NgzbCJhvQ0KBBdUsOoE3ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.439 [XNIO-1 task-4] NgzbCJhvQ0KBBdUsOoE3ZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.440 [XNIO-1 task-4] NgzbCJhvQ0KBBdUsOoE3ZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.440 [XNIO-1 task-4] NgzbCJhvQ0KBBdUsOoE3ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJjMzBlOWMtM2JhZS00MWQ1LWE5NjktY2M3Y2JkNmIyYWNmOllDOTVIZUtLUk5tQ3RFb0ROTVh2MVE=", "Basic NjJjMzBlOWMtM2JhZS00MWQ1LWE5NjktY2M3Y2JkNmIyYWNmOllDOTVIZUtLUk5tQ3RFb0ROTVh2MVE=", authorization) +20:00:47.445 [XNIO-1 task-4] NgzbCJhvQ0KBBdUsOoE3ZA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.451 [XNIO-1 task-4] SSdSb_5tQWCZ9ub5csxfEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.451 [XNIO-1 task-4] SSdSb_5tQWCZ9ub5csxfEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.451 [XNIO-1 task-4] SSdSb_5tQWCZ9ub5csxfEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.452 [XNIO-1 task-4] SSdSb_5tQWCZ9ub5csxfEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjgwMmEyYjUtZTEwNS00NTg4LWFkOTUtNTA3YjgxMzZmY2Y5Ok9TOE9aMUN0U095MnJyVmVjc0d6UGc=", "Basic NjgwMmEyYjUtZTEwNS00NTg4LWFkOTUtNTA3YjgxMzZmY2Y5Ok9TOE9aMUN0U095MnJyVmVjc0d6UGc=", authorization) +20:00:47.457 [XNIO-1 task-4] SSdSb_5tQWCZ9ub5csxfEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.463 [XNIO-1 task-4] nGv8ktg9SoaBHLrTqVe2-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.463 [XNIO-1 task-4] nGv8ktg9SoaBHLrTqVe2-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.463 [XNIO-1 task-4] nGv8ktg9SoaBHLrTqVe2-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.464 [XNIO-1 task-4] nGv8ktg9SoaBHLrTqVe2-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjgwMmEyYjUtZTEwNS00NTg4LWFkOTUtNTA3YjgxMzZmY2Y5Ok9TOE9aMUN0U095MnJyVmVjc0d6UGc=", "Basic NjgwMmEyYjUtZTEwNS00NTg4LWFkOTUtNTA3YjgxMzZmY2Y5Ok9TOE9aMUN0U095MnJyVmVjc0d6UGc=", authorization) +20:00:47.465 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9990f3e0-f89d-4916-8201-f93b0a0e2da4 +20:00:47.469 [XNIO-1 task-4] nGv8ktg9SoaBHLrTqVe2-w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.471 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:35892ce3 +20:00:47.479 [XNIO-1 task-4] Ston7pZbSEuMtwrgUNyeig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.480 [XNIO-1 task-4] Ston7pZbSEuMtwrgUNyeig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.480 [XNIO-1 task-4] Ston7pZbSEuMtwrgUNyeig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.480 [XNIO-1 task-4] Ston7pZbSEuMtwrgUNyeig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.484 [XNIO-1 task-2] 5U8edNkKQxqIcWv-iGehIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.484 [XNIO-1 task-2] 5U8edNkKQxqIcWv-iGehIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.484 [XNIO-1 task-2] 5U8edNkKQxqIcWv-iGehIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.484 [XNIO-1 task-2] 5U8edNkKQxqIcWv-iGehIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _N503KG5TFW1Uv20_Ji-RQ redirectUri = http://localhost:8080/authorization +20:00:47.487 [XNIO-1 task-4] Ston7pZbSEuMtwrgUNyeig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.491 [XNIO-1 task-2] 5U8edNkKQxqIcWv-iGehIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.495 [XNIO-1 task-4] kOeLBSl0SbuCjiwID0S2UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.495 [XNIO-1 task-4] kOeLBSl0SbuCjiwID0S2UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.495 [XNIO-1 task-4] kOeLBSl0SbuCjiwID0S2UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.496 [XNIO-1 task-4] kOeLBSl0SbuCjiwID0S2UA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", authorization) +20:00:47.503 [XNIO-1 task-4] kOeLBSl0SbuCjiwID0S2UA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.511 [XNIO-1 task-4] g862FSBXSYSwVbeelG032A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.511 [XNIO-1 task-4] g862FSBXSYSwVbeelG032A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.511 [XNIO-1 task-4] g862FSBXSYSwVbeelG032A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.511 [XNIO-1 task-4] g862FSBXSYSwVbeelG032A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", "Basic MTU4YzRmYzgtNGM4NC00NGE0LWJiYzAtNDVlOWU3OTFhOTk4OmF2RnN5UnBJUlVPN0tnNlRaUi1TaEE=", authorization) +20:00:47.519 [XNIO-1 task-2] HvihKl_wSnehW_2WWz-xDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.519 [XNIO-1 task-2] HvihKl_wSnehW_2WWz-xDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.519 [XNIO-1 task-4] g862FSBXSYSwVbeelG032A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.519 [XNIO-1 task-2] HvihKl_wSnehW_2WWz-xDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.519 [XNIO-1 task-2] HvihKl_wSnehW_2WWz-xDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", authorization) +20:00:47.527 [XNIO-1 task-4] xwgjnQjxQZWhWGtlIYFzQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.528 [XNIO-1 task-4] xwgjnQjxQZWhWGtlIYFzQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.528 [XNIO-1 task-4] xwgjnQjxQZWhWGtlIYFzQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.528 [XNIO-1 task-4] xwgjnQjxQZWhWGtlIYFzQg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTNhOThmYTItZmM3Ni00NGFhLThiZjgtMjQ2YTk1ZGFjZjk5OllUVTJNQl9uVGc2TDhUd0RiRXByT2c=", "Basic MTNhOThmYTItZmM3Ni00NGFhLThiZjgtMjQ2YTk1ZGFjZjk5OllUVTJNQl9uVGc2TDhUd0RiRXByT2c=", authorization) +20:00:47.531 [XNIO-1 task-2] HvihKl_wSnehW_2WWz-xDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.531 [XNIO-1 task-2] HvihKl_wSnehW_2WWz-xDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.535 [XNIO-1 task-4] xwgjnQjxQZWhWGtlIYFzQg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.535 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c871168c-8884-4709-8107-726ca557b264 +20:00:47.552 [XNIO-1 task-2] Wvbgqh6kQqu0mMGci2Qihw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.552 [XNIO-1 task-2] Wvbgqh6kQqu0mMGci2Qihw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.552 [XNIO-1 task-2] Wvbgqh6kQqu0mMGci2Qihw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.552 [XNIO-1 task-2] Wvbgqh6kQqu0mMGci2Qihw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.560 [XNIO-1 task-2] Wvbgqh6kQqu0mMGci2Qihw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.565 [XNIO-1 task-2] T1mK9nfIQmm9gdDAVMp0ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.565 [XNIO-1 task-2] T1mK9nfIQmm9gdDAVMp0ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.565 [XNIO-1 task-2] T1mK9nfIQmm9gdDAVMp0ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.566 [XNIO-1 task-2] T1mK9nfIQmm9gdDAVMp0ww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", authorization) +20:00:47.570 [XNIO-1 task-4] pNYBswRzTxyJ7XvCLLzRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.570 [XNIO-1 task-4] pNYBswRzTxyJ7XvCLLzRyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.570 [XNIO-1 task-4] pNYBswRzTxyJ7XvCLLzRyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.570 [XNIO-1 task-4] pNYBswRzTxyJ7XvCLLzRyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", "Basic MDE3MjQ0MTgtZjk3Mi00YzhhLWIwMGYtYmY2ZjhiYzgzMzBjOkxGU1QyeFJvUnM2TUxrckJXZWVmZHc=", authorization) +20:00:47.570 [XNIO-1 task-2] T1mK9nfIQmm9gdDAVMp0ww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.576 [XNIO-1 task-2] BuKix7gNR4a2Nvr2EbOUrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.577 [XNIO-1 task-2] BuKix7gNR4a2Nvr2EbOUrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.577 [XNIO-1 task-2] BuKix7gNR4a2Nvr2EbOUrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.577 [XNIO-1 task-2] BuKix7gNR4a2Nvr2EbOUrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", "Basic NDVhMjVkMTMtMjBjZC00MmQ4LWEyYjMtNjJkMmEwNThhNTljOnFkeE5aS05RVFVtY0VaUHNKbEt5c1E=", authorization) +20:00:47.578 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:232dd559-c9b3-43d6-9e39-db8c563ca08c +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token dff6a2dd-b622-4624-b5ec-60c125df23e1 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +20:00:47.580 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:232dd559-c9b3-43d6-9e39-db8c563ca08c +20:00:47.583 [XNIO-1 task-2] BuKix7gNR4a2Nvr2EbOUrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.588 [XNIO-1 task-2] BUTYJLbOS0SatNcbueT7Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.588 [XNIO-1 task-2] BUTYJLbOS0SatNcbueT7Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.588 [XNIO-1 task-2] BUTYJLbOS0SatNcbueT7Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.589 [XNIO-1 task-2] BUTYJLbOS0SatNcbueT7Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2FhMDk5NTEtOTk5My00OWQyLTg2MDQtODIxYjMyYWI1ZGYyOnY1cmwyRDVMVGxxU1hJRk9iSUZTSEE=", "Basic M2FhMDk5NTEtOTk5My00OWQyLTg2MDQtODIxYjMyYWI1ZGYyOnY1cmwyRDVMVGxxU1hJRk9iSUZTSEE=", authorization) +20:00:47.594 [XNIO-1 task-2] BUTYJLbOS0SatNcbueT7Ow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.596 [XNIO-1 task-4] 0HLVLL67RleyHRB-D_Li6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.596 [XNIO-1 task-4] 0HLVLL67RleyHRB-D_Li6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.596 [XNIO-1 task-4] 0HLVLL67RleyHRB-D_Li6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.597 [XNIO-1 task-4] 0HLVLL67RleyHRB-D_Li6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2FjNDMxMTktYzQxNi00NzYxLTk3ODYtZmI5MmI1Y2EwZDQ5OklvZGRFODRrVC1pS1RSWjVqMUJWM3c=", "Basic N2FjNDMxMTktYzQxNi00NzYxLTk3ODYtZmI5MmI1Y2EwZDQ5OklvZGRFODRrVC1pS1RSWjVqMUJWM3c=", authorization) +20:00:47.604 [XNIO-1 task-4] 0HLVLL67RleyHRB-D_Li6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.604 [XNIO-1 task-4] 0HLVLL67RleyHRB-D_Li6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.606 [XNIO-1 task-2] wrEcQ2HwTtmgfWZRRXt1Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.606 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6dd040d5-fa0e-48fe-8a0d-7110d48c2d98 +20:00:47.606 [XNIO-1 task-2] wrEcQ2HwTtmgfWZRRXt1Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.606 [XNIO-1 task-2] wrEcQ2HwTtmgfWZRRXt1Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.607 [XNIO-1 task-2] wrEcQ2HwTtmgfWZRRXt1Ng DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.608 [XNIO-1 task-1] N6qk0sH1Q3G2oNdTYCEZUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.609 [XNIO-1 task-1] N6qk0sH1Q3G2oNdTYCEZUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.610 [XNIO-1 task-1] N6qk0sH1Q3G2oNdTYCEZUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.610 [XNIO-1 task-1] N6qk0sH1Q3G2oNdTYCEZUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mosZO5UMSyabPI3jbQxnog redirectUri = http://localhost:8080/authorization +20:00:47.615 [XNIO-1 task-2] wrEcQ2HwTtmgfWZRRXt1Ng INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.616 [XNIO-1 task-4] JQAzmqWNTxSG-rk1FcMMFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.616 [XNIO-1 task-4] JQAzmqWNTxSG-rk1FcMMFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.617 [XNIO-1 task-4] JQAzmqWNTxSG-rk1FcMMFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.617 [XNIO-1 task-4] JQAzmqWNTxSG-rk1FcMMFA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6dd040d5-fa0e-48fe-8a0d-7110d48c2d98 scope = null +20:00:47.618 [XNIO-1 task-1] N6qk0sH1Q3G2oNdTYCEZUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.620 [XNIO-1 task-2] QhOBAyyAScmnTstc7iuWdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.620 [XNIO-1 task-2] QhOBAyyAScmnTstc7iuWdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.620 [XNIO-1 task-2] QhOBAyyAScmnTstc7iuWdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.621 [XNIO-1 task-2] QhOBAyyAScmnTstc7iuWdA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODJhMTA5MjUtYTBjMi00MmEwLTgzZmItZDM4ZGE0NGIyMjFkOmNWM0lIUWNXU1VhV1UtMFFKb0VKTGc=", "Basic ODJhMTA5MjUtYTBjMi00MmEwLTgzZmItZDM4ZGE0NGIyMjFkOmNWM0lIUWNXU1VhV1UtMFFKb0VKTGc=", authorization) +20:00:47.623 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6dd040d5-fa0e-48fe-8a0d-7110d48c2d98 +20:00:47.628 [XNIO-1 task-4] JQAzmqWNTxSG-rk1FcMMFA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.631 [XNIO-1 task-2] QhOBAyyAScmnTstc7iuWdA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.639 [XNIO-1 task-1] PWVr-0sfSomxxQtzk3Oc3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.639 [XNIO-1 task-1] PWVr-0sfSomxxQtzk3Oc3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.640 [XNIO-1 task-1] PWVr-0sfSomxxQtzk3Oc3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.640 [XNIO-1 task-1] PWVr-0sfSomxxQtzk3Oc3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODJhMTA5MjUtYTBjMi00MmEwLTgzZmItZDM4ZGE0NGIyMjFkOmNWM0lIUWNXU1VhV1UtMFFKb0VKTGc=", "Basic ODJhMTA5MjUtYTBjMi00MmEwLTgzZmItZDM4ZGE0NGIyMjFkOmNWM0lIUWNXU1VhV1UtMFFKb0VKTGc=", authorization) +20:00:47.645 [XNIO-1 task-1] PWVr-0sfSomxxQtzk3Oc3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.652 [XNIO-1 task-1] hF0KkbmhQa-7S32SptHeQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.652 [XNIO-1 task-1] hF0KkbmhQa-7S32SptHeQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.652 [XNIO-1 task-1] hF0KkbmhQa-7S32SptHeQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.652 [XNIO-1 task-1] hF0KkbmhQa-7S32SptHeQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODJhMTA5MjUtYTBjMi00MmEwLTgzZmItZDM4ZGE0NGIyMjFkOmNWM0lIUWNXU1VhV1UtMFFKb0VKTGc=", "Basic ODJhMTA5MjUtYTBjMi00MmEwLTgzZmItZDM4ZGE0NGIyMjFkOmNWM0lIUWNXU1VhV1UtMFFKb0VKTGc=", authorization) +20:00:47.660 [XNIO-1 task-1] hF0KkbmhQa-7S32SptHeQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.674 [XNIO-1 task-1] mnsYenmRTGmE5J7nNIJmtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.674 [XNIO-1 task-1] mnsYenmRTGmE5J7nNIJmtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.675 [XNIO-1 task-1] mnsYenmRTGmE5J7nNIJmtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.675 [XNIO-1 task-1] mnsYenmRTGmE5J7nNIJmtw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", "Basic Y2ExZTI0YmUtN2RmYS00NDg2LWI2NDYtMjUyZTlmNGM3ZTRmOlFVaVkyY0ZSUTNtRThkeUpyUTZoSXc=", authorization) +20:00:47.681 [XNIO-1 task-1] mnsYenmRTGmE5J7nNIJmtw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.697 [XNIO-1 task-1] Eb2FfU0aSnaLnQ6plfgarA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.697 [XNIO-1 task-1] Eb2FfU0aSnaLnQ6plfgarA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.697 [XNIO-1 task-1] Eb2FfU0aSnaLnQ6plfgarA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.697 [XNIO-1 task-1] Eb2FfU0aSnaLnQ6plfgarA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", authorization) +20:00:47.704 [XNIO-1 task-1] Eb2FfU0aSnaLnQ6plfgarA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.706 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:3a5d7496 +20:00:47.719 [XNIO-1 task-4] 9VCo7Pd4Rv-5nEkZY2tiRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.720 [XNIO-1 task-1] uccyFCrLTJmH9o7v0Yqpfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.720 [XNIO-1 task-1] uccyFCrLTJmH9o7v0Yqpfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.720 [XNIO-1 task-1] uccyFCrLTJmH9o7v0Yqpfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.720 [XNIO-1 task-4] 9VCo7Pd4Rv-5nEkZY2tiRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.720 [XNIO-1 task-1] uccyFCrLTJmH9o7v0Yqpfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.720 [XNIO-1 task-4] 9VCo7Pd4Rv-5nEkZY2tiRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", authorization) +20:00:47.720 [XNIO-1 task-1] uccyFCrLTJmH9o7v0Yqpfg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QmEn1rVWQ_CXqQVhB0ln0A redirectUri = http://localhost:8080/authorization +20:00:47.725 [XNIO-1 task-4] 9VCo7Pd4Rv-5nEkZY2tiRg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.728 [XNIO-1 task-1] uccyFCrLTJmH9o7v0Yqpfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.730 [XNIO-1 task-4] aKBhsRoaSB-vqua3w9Aucw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.730 [XNIO-1 task-4] aKBhsRoaSB-vqua3w9Aucw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.730 [XNIO-1 task-4] aKBhsRoaSB-vqua3w9Aucw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.731 [XNIO-1 task-4] aKBhsRoaSB-vqua3w9Aucw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", "Basic ZmJhODQ1ZGQtMjBhOC00MWU4LWE4NmQtMzMxNGRiNjRkZTFlOnhKNTNhc2x0UVlXMWdwMWZIM1NIbkE=", authorization) +20:00:47.737 [XNIO-1 task-4] aKBhsRoaSB-vqua3w9Aucw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.743 [XNIO-1 task-1] w2Ily-Y_TPORFf4bdS9cHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.745 [XNIO-1 task-1] w2Ily-Y_TPORFf4bdS9cHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.745 [XNIO-1 task-4] gIErprdLTDqZdnmdbjoYsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.745 [XNIO-1 task-4] gIErprdLTDqZdnmdbjoYsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.745 [XNIO-1 task-1] w2Ily-Y_TPORFf4bdS9cHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.745 [XNIO-1 task-4] gIErprdLTDqZdnmdbjoYsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.745 [XNIO-1 task-1] w2Ily-Y_TPORFf4bdS9cHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", "Basic NmYyYTJlMmUtYTZlNS00NDFhLWE1ZmYtYzU1YWRmYmUxN2E4Okh5dlB6OFZoUTktLWJ2SWVKRHdOSWc=", authorization) +20:00:47.745 [XNIO-1 task-1] w2Ily-Y_TPORFf4bdS9cHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 95c52b36-3902-4106-aa7a-89b6fd6e05fb scope = null +20:00:47.752 [XNIO-1 task-4] gIErprdLTDqZdnmdbjoYsw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.761 [XNIO-1 task-1] w2Ily-Y_TPORFf4bdS9cHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.765 [XNIO-1 task-4] Ts8m8D33Qg6LgSot2Jmlwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.766 [XNIO-1 task-4] Ts8m8D33Qg6LgSot2Jmlwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.766 [XNIO-1 task-2] uEWbjq8ZTlO3ZM6u7nzCEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.766 [XNIO-1 task-4] Ts8m8D33Qg6LgSot2Jmlwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.766 [XNIO-1 task-2] uEWbjq8ZTlO3ZM6u7nzCEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.766 [XNIO-1 task-4] Ts8m8D33Qg6LgSot2Jmlwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.766 [XNIO-1 task-2] uEWbjq8ZTlO3ZM6u7nzCEg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", "Basic OTVlMThjMmYtYWUxMC00MzU4LTkyYzMtZDBmOTE5ZGRkZDc1OkFXWmRtNDBmU1Z1WW1KbGFsSVd0cEE=", authorization) +20:00:47.767 [XNIO-1 task-2] uEWbjq8ZTlO3ZM6u7nzCEg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.773 [XNIO-1 task-2] uEWbjq8ZTlO3ZM6u7nzCEg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.778 [XNIO-1 task-4] Ts8m8D33Qg6LgSot2Jmlwg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.779 [XNIO-1 task-4] Ts8m8D33Qg6LgSot2Jmlwg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.781 [XNIO-1 task-2] U2tPYZV-TNmPtF5WdTxNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.781 [XNIO-1 task-2] U2tPYZV-TNmPtF5WdTxNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.781 [XNIO-1 task-2] U2tPYZV-TNmPtF5WdTxNoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.781 [XNIO-1 task-2] U2tPYZV-TNmPtF5WdTxNoQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.786 [XNIO-1 task-2] U2tPYZV-TNmPtF5WdTxNoQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.799 [XNIO-1 task-2] 3XI4Y5msRriNPgujZhc0Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.799 [XNIO-1 task-2] 3XI4Y5msRriNPgujZhc0Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.799 [XNIO-1 task-2] 3XI4Y5msRriNPgujZhc0Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.800 [XNIO-1 task-2] 3XI4Y5msRriNPgujZhc0Sw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.807 [XNIO-1 task-2] 3XI4Y5msRriNPgujZhc0Sw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.812 [XNIO-1 task-2] X_kdVZmSTzq961-Z2g33LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.812 [XNIO-1 task-2] X_kdVZmSTzq961-Z2g33LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.813 [XNIO-1 task-2] X_kdVZmSTzq961-Z2g33LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.813 [XNIO-1 task-2] X_kdVZmSTzq961-Z2g33LQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.820 [XNIO-1 task-2] X_kdVZmSTzq961-Z2g33LQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.826 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:794ce624 +20:00:47.835 [XNIO-1 task-2] q82tRfN3RV2HD7OWmjHbCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.835 [XNIO-1 task-2] q82tRfN3RV2HD7OWmjHbCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.835 [XNIO-1 task-2] q82tRfN3RV2HD7OWmjHbCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.835 [XNIO-1 task-2] q82tRfN3RV2HD7OWmjHbCw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", "Basic N2I0MWIxNzktMzY1Yi00NTRhLWJjMWUtOWQzMTNlMjE2ZGM2OkI4LVFuV0p2U3Jld2s3RVhMMEJFQWc=", authorization) +20:00:47.840 [XNIO-1 task-2] q82tRfN3RV2HD7OWmjHbCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.858 [XNIO-1 task-2] 3KdzjElXSMeSXkKYSBVokw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.858 [XNIO-1 task-2] 3KdzjElXSMeSXkKYSBVokw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.858 [XNIO-1 task-2] 3KdzjElXSMeSXkKYSBVokw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.858 [XNIO-1 task-2] 3KdzjElXSMeSXkKYSBVokw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", authorization) +20:00:47.867 [XNIO-1 task-2] 3KdzjElXSMeSXkKYSBVokw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.872 [XNIO-1 task-2] SgNLy8X-QICqqd6hMDbxlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.873 [XNIO-1 task-2] SgNLy8X-QICqqd6hMDbxlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.874 [XNIO-1 task-2] SgNLy8X-QICqqd6hMDbxlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.874 [XNIO-1 task-2] SgNLy8X-QICqqd6hMDbxlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", "Basic NDE2ZmY0ZjktN2VmYi00YmU4LWFiZWYtMmEzZDgzNDUwOWEzOm4ycXQ3anNvU3FTSVlXYXlodWhMY3c=", authorization) +20:00:47.879 [XNIO-1 task-2] SgNLy8X-QICqqd6hMDbxlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.895 [XNIO-1 task-2] Nypil7FRSlW0psU_e21x6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.896 [XNIO-1 task-2] Nypil7FRSlW0psU_e21x6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.897 [XNIO-1 task-2] Nypil7FRSlW0psU_e21x6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.897 [XNIO-1 task-2] Nypil7FRSlW0psU_e21x6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIzZWY2NTctZGNiNS00OTk3LWE1NjgtNjRkNzIzYzg1MGQyOm0zWXoxRzM2UWZDSWI0S25EQWN6enc=", "Basic ODIzZWY2NTctZGNiNS00OTk3LWE1NjgtNjRkNzIzYzg1MGQyOm0zWXoxRzM2UWZDSWI0S25EQWN6enc=", authorization) +20:00:47.905 [XNIO-1 task-2] Nypil7FRSlW0psU_e21x6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.906 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:794ce624 +20:00:47.913 [XNIO-1 task-2] w13Wgez5SHCL9LNafccYCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.913 [XNIO-1 task-2] w13Wgez5SHCL9LNafccYCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.914 [XNIO-1 task-2] w13Wgez5SHCL9LNafccYCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.914 [XNIO-1 task-2] w13Wgez5SHCL9LNafccYCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIzZWY2NTctZGNiNS00OTk3LWE1NjgtNjRkNzIzYzg1MGQyOm0zWXoxRzM2UWZDSWI0S25EQWN6enc=", "Basic ODIzZWY2NTctZGNiNS00OTk3LWE1NjgtNjRkNzIzYzg1MGQyOm0zWXoxRzM2UWZDSWI0S25EQWN6enc=", authorization) +20:00:47.920 [XNIO-1 task-2] w13Wgez5SHCL9LNafccYCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.920 [XNIO-1 task-4] 7ZUOLgfSQ8KwFcplxSb9RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.921 [XNIO-1 task-4] 7ZUOLgfSQ8KwFcplxSb9RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.921 [XNIO-1 task-4] 7ZUOLgfSQ8KwFcplxSb9RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.921 [XNIO-1 task-4] 7ZUOLgfSQ8KwFcplxSb9RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmNmYTAyN2QtYzhkNC00NDJiLWE1MmItZjUwMDViZTIyNjE1OmQzNDNYTDRnU0FDVlN6a0h2YjhrM3c=", "Basic YmNmYTAyN2QtYzhkNC00NDJiLWE1MmItZjUwMDViZTIyNjE1OmQzNDNYTDRnU0FDVlN6a0h2YjhrM3c=", authorization) +20:00:47.926 [XNIO-1 task-2] MFo9Elx0QrWFbdPLTqG2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.926 [XNIO-1 task-2] MFo9Elx0QrWFbdPLTqG2OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.926 [XNIO-1 task-2] MFo9Elx0QrWFbdPLTqG2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.927 [XNIO-1 task-2] MFo9Elx0QrWFbdPLTqG2OA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODIzZWY2NTctZGNiNS00OTk3LWE1NjgtNjRkNzIzYzg1MGQyOm0zWXoxRzM2UWZDSWI0S25EQWN6enc=", "Basic ODIzZWY2NTctZGNiNS00OTk3LWE1NjgtNjRkNzIzYzg1MGQyOm0zWXoxRzM2UWZDSWI0S25EQWN6enc=", authorization) +20:00:47.930 [XNIO-1 task-4] 7ZUOLgfSQ8KwFcplxSb9RQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:47.931 [XNIO-1 task-4] 7ZUOLgfSQ8KwFcplxSb9RQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.934 [XNIO-1 task-2] MFo9Elx0QrWFbdPLTqG2OA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.935 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:01579622-07fc-4b3e-b9a4-14892aa7fa61 +20:00:47.936 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:794ce624 +20:00:47.938 [XNIO-1 task-2] fvzRqhnHS02053YJIYqgMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.938 [XNIO-1 task-2] fvzRqhnHS02053YJIYqgMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.938 [XNIO-1 task-2] fvzRqhnHS02053YJIYqgMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.939 [XNIO-1 task-2] fvzRqhnHS02053YJIYqgMw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.943 [XNIO-1 task-2] fvzRqhnHS02053YJIYqgMw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.952 [XNIO-1 task-2] zlMFV3DQQRO5yOmT6AlG2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.952 [XNIO-1 task-2] zlMFV3DQQRO5yOmT6AlG2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.952 [XNIO-1 task-2] zlMFV3DQQRO5yOmT6AlG2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.952 [XNIO-1 task-2] zlMFV3DQQRO5yOmT6AlG2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", authorization) +20:00:47.959 [XNIO-1 task-2] zlMFV3DQQRO5yOmT6AlG2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:47.960 [XNIO-1 task-4] krZCVuBkRbKdXnIUFUckdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.960 [XNIO-1 task-4] krZCVuBkRbKdXnIUFUckdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.961 [XNIO-1 task-4] krZCVuBkRbKdXnIUFUckdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.961 [XNIO-1 task-4] krZCVuBkRbKdXnIUFUckdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", authorization) +20:00:47.966 [XNIO-1 task-2] lUj2GDOiTX6AbRhZH_9U1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.966 [XNIO-1 task-2] lUj2GDOiTX6AbRhZH_9U1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:47.966 [XNIO-1 task-2] lUj2GDOiTX6AbRhZH_9U1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:47.966 [XNIO-1 task-2] lUj2GDOiTX6AbRhZH_9U1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", "Basic MGExMmVlMDItZDU0Ny00YzgyLTk1MDItMmI4NWM1YjljYjQzOlhvdy1HeExzU1RtWGdmUG9OeXVxY1E=", authorization) +20:00:47.970 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c871168c-8884-4709-8107-726ca557b264 +20:00:47.974 [XNIO-1 task-2] lUj2GDOiTX6AbRhZH_9U1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.975 [XNIO-1 task-4] krZCVuBkRbKdXnIUFUckdQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:47.985 [XNIO-1 task-2] Ggll__yFQdicIZY1HB-8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.985 [XNIO-1 task-2] Ggll__yFQdicIZY1HB-8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.985 [XNIO-1 task-2] Ggll__yFQdicIZY1HB-8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.986 [XNIO-1 task-2] Ggll__yFQdicIZY1HB-8Jw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:47.988 [XNIO-1 task-4] awFnjN-xQ9O8SJ7L8YC7cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.988 [XNIO-1 task-4] awFnjN-xQ9O8SJ7L8YC7cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.989 [XNIO-1 task-4] awFnjN-xQ9O8SJ7L8YC7cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:47.990 [XNIO-1 task-4] awFnjN-xQ9O8SJ7L8YC7cA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1da2b2c3-32c9-45c5-bd6f-f81c8f4edcc5 scope = null +20:00:47.991 [XNIO-1 task-2] Ggll__yFQdicIZY1HB-8Jw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.000 [XNIO-1 task-2] L5tSZoBwQ5yrtQXgIlCxTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.000 [XNIO-1 task-2] L5tSZoBwQ5yrtQXgIlCxTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.000 [XNIO-1 task-2] L5tSZoBwQ5yrtQXgIlCxTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.001 [XNIO-1 task-2] L5tSZoBwQ5yrtQXgIlCxTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:48.004 [XNIO-1 task-4] awFnjN-xQ9O8SJ7L8YC7cA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.009 [XNIO-1 task-2] L5tSZoBwQ5yrtQXgIlCxTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.019 [XNIO-1 task-4] q_m2mfK0QQK71-m86eX1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.019 [XNIO-1 task-4] q_m2mfK0QQK71-m86eX1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.019 [XNIO-1 task-4] q_m2mfK0QQK71-m86eX1tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.019 [XNIO-1 task-4] q_m2mfK0QQK71-m86eX1tA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:48.025 [XNIO-1 task-4] q_m2mfK0QQK71-m86eX1tA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.029 [XNIO-1 task-4] vA-TqHSITu6MHrb9frs-jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.029 [XNIO-1 task-4] vA-TqHSITu6MHrb9frs-jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.029 [XNIO-1 task-4] vA-TqHSITu6MHrb9frs-jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.029 [XNIO-1 task-4] vA-TqHSITu6MHrb9frs-jg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:48.036 [XNIO-1 task-4] vA-TqHSITu6MHrb9frs-jg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.045 [XNIO-1 task-4] LeZ38-qGR3GuRRrMS5FkmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.045 [XNIO-1 task-4] LeZ38-qGR3GuRRrMS5FkmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.046 [XNIO-1 task-4] LeZ38-qGR3GuRRrMS5FkmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.046 [XNIO-1 task-4] LeZ38-qGR3GuRRrMS5FkmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:48.055 [XNIO-1 task-4] LeZ38-qGR3GuRRrMS5FkmQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.063 [XNIO-1 task-4] SXIN3ZRsSGOm2T57YndEaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.063 [XNIO-1 task-4] SXIN3ZRsSGOm2T57YndEaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.064 [XNIO-1 task-4] SXIN3ZRsSGOm2T57YndEaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.064 [XNIO-1 task-4] SXIN3ZRsSGOm2T57YndEaA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:48.070 [XNIO-1 task-4] SXIN3ZRsSGOm2T57YndEaA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.079 [XNIO-1 task-2] 9DBmh9K7T16ZicDGGg872g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.080 [XNIO-1 task-2] 9DBmh9K7T16ZicDGGg872g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.080 [XNIO-1 task-4] WkRNAa9sSbCotkDPl-RrTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.080 [XNIO-1 task-2] 9DBmh9K7T16ZicDGGg872g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.080 [XNIO-1 task-2] 9DBmh9K7T16ZicDGGg872g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.080 [XNIO-1 task-2] 9DBmh9K7T16ZicDGGg872g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.081 [XNIO-1 task-4] WkRNAa9sSbCotkDPl-RrTg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", authorization) +20:00:48.081 [XNIO-1 task-4] WkRNAa9sSbCotkDPl-RrTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = HZhAmwkFTQO_VCAdtHGLUw redirectUri = http://localhost:8080/authorization +20:00:48.088 [XNIO-1 task-4] WkRNAa9sSbCotkDPl-RrTg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.091 [XNIO-1 task-2] 9DBmh9K7T16ZicDGGg872g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.093 [XNIO-1 task-1] CaRtjdqXQ4Kw-E6kV-Ez4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.094 [XNIO-1 task-1] CaRtjdqXQ4Kw-E6kV-Ez4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.094 [XNIO-1 task-1] CaRtjdqXQ4Kw-E6kV-Ez4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.094 [XNIO-1 task-1] CaRtjdqXQ4Kw-E6kV-Ez4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", authorization) +20:00:48.101 [XNIO-1 task-2] Ky6fQnqdQBCos9MN26Ck4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.101 [XNIO-1 task-2] Ky6fQnqdQBCos9MN26Ck4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.104 [XNIO-1 task-1] CaRtjdqXQ4Kw-E6kV-Ez4g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +20:00:48.104 [XNIO-1 task-1] CaRtjdqXQ4Kw-E6kV-Ez4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.102 [XNIO-1 task-2] Ky6fQnqdQBCos9MN26Ck4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.104 [XNIO-1 task-1] CaRtjdqXQ4Kw-E6kV-Ez4g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.105 [XNIO-1 task-4] u_sq7SJ3S5ODQAaZ7ejWew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.104 [XNIO-1 task-2] Ky6fQnqdQBCos9MN26Ck4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.106 [XNIO-1 task-4] u_sq7SJ3S5ODQAaZ7ejWew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", authorization) +20:00:48.106 [XNIO-1 task-4] u_sq7SJ3S5ODQAaZ7ejWew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0f91e667-8fbf-4983-989f-99820dfb5daf scope = null +20:00:48.112 [XNIO-1 task-2] Ky6fQnqdQBCos9MN26Ck4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.116 [XNIO-1 task-4] u_sq7SJ3S5ODQAaZ7ejWew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.123 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1589a51c-8dce-455b-aea0-da0bd7937ea8 +20:00:48.122 [XNIO-1 task-2] F3X6m2_YQP-G1G9VyyaYnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.123 [XNIO-1 task-2] F3X6m2_YQP-G1G9VyyaYnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.123 [XNIO-1 task-2] F3X6m2_YQP-G1G9VyyaYnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.124 [XNIO-1 task-2] F3X6m2_YQP-G1G9VyyaYnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGQzYTJhOTItMjQwMC00ZDBiLWI1MTktZmE3NGMwZjYyNjliOnpDcFFHLU9hVEhxeEIyay1GOVdmY1E=", "Basic ZGQzYTJhOTItMjQwMC00ZDBiLWI1MTktZmE3NGMwZjYyNjliOnpDcFFHLU9hVEhxeEIyay1GOVdmY1E=", authorization) +20:00:48.130 [XNIO-1 task-2] F3X6m2_YQP-G1G9VyyaYnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.131 [XNIO-1 task-4] I__2Run8RLaz7Sf9-8eC1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.131 [XNIO-1 task-4] I__2Run8RLaz7Sf9-8eC1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.131 [XNIO-1 task-4] I__2Run8RLaz7Sf9-8eC1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.132 [XNIO-1 task-4] I__2Run8RLaz7Sf9-8eC1w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", "Basic MTRkMGM4YjYtZWYxYy00ZGI4LWI0OGItZGNkNDdlMGYwMDNlOlduczJ2SURBUmgyb00tSDBFRjFuRXc=", authorization) +20:00:48.137 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1589a51c-8dce-455b-aea0-da0bd7937ea8 +20:00:48.140 [XNIO-1 task-2] 67PeHjreTdS6vBMFRa6rcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.140 [XNIO-1 task-2] 67PeHjreTdS6vBMFRa6rcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.141 [XNIO-1 task-2] 67PeHjreTdS6vBMFRa6rcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +20:00:48.142 [XNIO-1 task-4] I__2Run8RLaz7Sf9-8eC1w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.142 [XNIO-1 task-1] GrZ1L16JRV6UqpOxO6B7wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.143 [XNIO-1 task-1] GrZ1L16JRV6UqpOxO6B7wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.143 [XNIO-1 task-1] GrZ1L16JRV6UqpOxO6B7wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.143 [XNIO-1 task-1] GrZ1L16JRV6UqpOxO6B7wA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", authorization) +20:00:48.147 [XNIO-1 task-2] 67PeHjreTdS6vBMFRa6rcA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +20:00:48.154 [XNIO-1 task-2] 67PeHjreTdS6vBMFRa6rcA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +20:00:48.157 [XNIO-1 task-1] GrZ1L16JRV6UqpOxO6B7wA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.161 [XNIO-1 task-2] HKejmmbrQ2mr1nhHecNzLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.162 [XNIO-1 task-2] HKejmmbrQ2mr1nhHecNzLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.162 [XNIO-1 task-2] HKejmmbrQ2mr1nhHecNzLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.162 [XNIO-1 task-2] HKejmmbrQ2mr1nhHecNzLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZDVmZTktNDZlNC00NjIwLWI3NmMtZmM1OGEwMWZkN2ExOmlUaTFuOUxYU3d5LXk5aUlRSW4yV3c=", "Basic YzgxZDVmZTktNDZlNC00NjIwLWI3NmMtZmM1OGEwMWZkN2ExOmlUaTFuOUxYU3d5LXk5aUlRSW4yV3c=", authorization) +20:00:48.169 [XNIO-1 task-1] bXzVbKoMQM2DL4iTbme7lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.170 [XNIO-1 task-1] bXzVbKoMQM2DL4iTbme7lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.170 [XNIO-1 task-1] bXzVbKoMQM2DL4iTbme7lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.170 [XNIO-1 task-1] bXzVbKoMQM2DL4iTbme7lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", "Basic N2VmNzQ5ZWMtZDhiZi00M2JlLWE5MWItNDdhMWIyYzQ5OWE1OkIzMURLM0I4UkZpcEV6VmZ0RzVIckE=", authorization) +20:00:48.182 [XNIO-1 task-1] bXzVbKoMQM2DL4iTbme7lQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.190 [XNIO-1 task-2] HKejmmbrQ2mr1nhHecNzLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.204 [XNIO-1 task-2] Yg_E_u5URjy7Ywyif9O7Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.204 [XNIO-1 task-2] Yg_E_u5URjy7Ywyif9O7Xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.204 [XNIO-1 task-2] Yg_E_u5URjy7Ywyif9O7Xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.204 [XNIO-1 task-1] vg1psIPJQlaglWqYQDL7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.205 [XNIO-1 task-2] Yg_E_u5URjy7Ywyif9O7Xg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = e7c727ae-94ed-4c09-9238-073e60a3763c scope = null +20:00:48.207 [XNIO-1 task-1] vg1psIPJQlaglWqYQDL7Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.207 [XNIO-1 task-1] vg1psIPJQlaglWqYQDL7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.207 [XNIO-1 task-1] vg1psIPJQlaglWqYQDL7Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzgxZDVmZTktNDZlNC00NjIwLWI3NmMtZmM1OGEwMWZkN2ExOmlUaTFuOUxYU3d5LXk5aUlRSW4yV3c=", "Basic YzgxZDVmZTktNDZlNC00NjIwLWI3NmMtZmM1OGEwMWZkN2ExOmlUaTFuOUxYU3d5LXk5aUlRSW4yV3c=", authorization) +20:00:48.212 [XNIO-1 task-1] vg1psIPJQlaglWqYQDL7Cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.222 [XNIO-1 task-1] ASi4-vsnQSyG-3XsiK6xKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.222 [XNIO-1 task-1] ASi4-vsnQSyG-3XsiK6xKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.222 [XNIO-1 task-1] ASi4-vsnQSyG-3XsiK6xKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.222 [XNIO-1 task-1] ASi4-vsnQSyG-3XsiK6xKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjJjMzBlOWMtM2JhZS00MWQ1LWE5NjktY2M3Y2JkNmIyYWNmOllDOTVIZUtLUk5tQ3RFb0ROTVh2MVE=", "Basic NjJjMzBlOWMtM2JhZS00MWQ1LWE5NjktY2M3Y2JkNmIyYWNmOllDOTVIZUtLUk5tQ3RFb0ROTVh2MVE=", authorization) +20:00:48.228 [XNIO-1 task-2] Yg_E_u5URjy7Ywyif9O7Xg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.230 [XNIO-1 task-1] ASi4-vsnQSyG-3XsiK6xKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.239 [XNIO-1 task-1] OqnDuS6-Q1KXxs1KgjCC2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.239 [XNIO-1 task-1] OqnDuS6-Q1KXxs1KgjCC2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +20:00:48.239 [XNIO-1 task-1] OqnDuS6-Q1KXxs1KgjCC2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +20:00:48.240 [XNIO-1 task-1] OqnDuS6-Q1KXxs1KgjCC2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", "Basic NDEzNmRjOTMtODI3OS00ZjRjLTg4MzAtN2FkMzQzZTlhMjNlOi1JMVdqYzhWUjBPdmRFbjM0MHg5TFE=", authorization) +20:00:48.245 [XNIO-1 task-1] OqnDuS6-Q1KXxs1KgjCC2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +20:00:48.251 [XNIO-1 task-1] eIo7kVZ1QKGyJ1iDR2Ecmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +SEVERE: [172.24.0.9]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) diff --git a/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-user-1.log b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..3c1eda7 --- /dev/null +++ b/log_data/LO2/Labeled/correct_5/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1658 @@ +20:00:38.604 [XNIO-1 task-1] v1zSM6sSSR2TTm2dpTPlPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.605 [XNIO-1 task-1] v1zSM6sSSR2TTm2dpTPlPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.751 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1d89d90d, base path is set to: null +20:00:38.751 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.751 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:38.751 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:38.752 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1d89d90d, base path is set to: null +20:00:38.752 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG com.networknt.schema.TypeValidator debug - validate( "1d89d90d", "1d89d90d", userId) +20:00:38.753 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e1290643-5e96-463d-9e33-e97cd21150d3","newPassword":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9","newPasswordConfirm":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9"}, {"password":"e1290643-5e96-463d-9e33-e97cd21150d3","newPassword":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9","newPasswordConfirm":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9"}, requestBody) +20:00:38.753 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG com.networknt.schema.TypeValidator debug - validate( "78e85d1f-6a8b-46a2-9a1a-0ef184c898a9", {"password":"e1290643-5e96-463d-9e33-e97cd21150d3","newPassword":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9","newPasswordConfirm":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9"}, requestBody.newPasswordConfirm) +20:00:38.754 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG com.networknt.schema.TypeValidator debug - validate( "e1290643-5e96-463d-9e33-e97cd21150d3", {"password":"e1290643-5e96-463d-9e33-e97cd21150d3","newPassword":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9","newPasswordConfirm":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9"}, requestBody.password) +20:00:38.754 [XNIO-1 task-1] PT1wi-PhSXW078WPc6Brew DEBUG com.networknt.schema.TypeValidator debug - validate( "78e85d1f-6a8b-46a2-9a1a-0ef184c898a9", {"password":"e1290643-5e96-463d-9e33-e97cd21150d3","newPassword":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9","newPasswordConfirm":"78e85d1f-6a8b-46a2-9a1a-0ef184c898a9"}, requestBody.newPassword) +20:00:38.861 [XNIO-1 task-1] iwiQapTES3KRJuv7a8Md2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b51af011, base path is set to: null +20:00:38.861 [XNIO-1 task-1] iwiQapTES3KRJuv7a8Md2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.861 [XNIO-1 task-1] iwiQapTES3KRJuv7a8Md2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:38.862 [XNIO-1 task-1] iwiQapTES3KRJuv7a8Md2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b51af011, base path is set to: null +20:00:38.862 [XNIO-1 task-1] iwiQapTES3KRJuv7a8Md2g DEBUG com.networknt.schema.TypeValidator debug - validate( "b51af011", "b51af011", userId) +20:00:38.867 [XNIO-1 task-1] tnnp6I_URhyVUZ4MyMPZMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9d55ff4e +20:00:38.867 [XNIO-1 task-1] tnnp6I_URhyVUZ4MyMPZMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:38.867 [XNIO-1 task-1] tnnp6I_URhyVUZ4MyMPZMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:38.867 [XNIO-1 task-1] tnnp6I_URhyVUZ4MyMPZMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9d55ff4e +20:00:38.872 [XNIO-1 task-1] 6BEgGDs-RgC1HFE7Z5XYng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.872 [XNIO-1 task-1] 6BEgGDs-RgC1HFE7Z5XYng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.872 [XNIO-1 task-1] 6BEgGDs-RgC1HFE7Z5XYng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.925 [XNIO-1 task-1] RQfCFVc7Sr6SSS6DKuoYNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d89d90d, base path is set to: null +20:00:38.926 [XNIO-1 task-1] RQfCFVc7Sr6SSS6DKuoYNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.926 [XNIO-1 task-1] RQfCFVc7Sr6SSS6DKuoYNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:38.926 [XNIO-1 task-1] RQfCFVc7Sr6SSS6DKuoYNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d89d90d, base path is set to: null +20:00:38.927 [XNIO-1 task-1] RQfCFVc7Sr6SSS6DKuoYNA DEBUG com.networknt.schema.TypeValidator debug - validate( "1d89d90d", "1d89d90d", userId) +20:00:38.931 [XNIO-1 task-1] vSL0Q0GHR6O_pxSYFsGovw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b51af011 +20:00:38.931 [XNIO-1 task-1] vSL0Q0GHR6O_pxSYFsGovw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:38.931 [XNIO-1 task-1] vSL0Q0GHR6O_pxSYFsGovw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:38.932 [XNIO-1 task-1] vSL0Q0GHR6O_pxSYFsGovw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b51af011 +20:00:38.938 [XNIO-1 task-1] xr4ilj7JTsiJ976Ej1QKKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.938 [XNIO-1 task-1] xr4ilj7JTsiJ976Ej1QKKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.939 [XNIO-1 task-1] xr4ilj7JTsiJ976Ej1QKKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.967 [XNIO-1 task-1] JTNWrWpsQ5yeK65OIwVRww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.968 [XNIO-1 task-1] JTNWrWpsQ5yeK65OIwVRww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.968 [XNIO-1 task-1] JTNWrWpsQ5yeK65OIwVRww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.982 [XNIO-1 task-1] C2JCdGHFRLidUfskZ7yePg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.983 [XNIO-1 task-1] C2JCdGHFRLidUfskZ7yePg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:38.983 [XNIO-1 task-1] C2JCdGHFRLidUfskZ7yePg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:38.984 [XNIO-1 task-1] C2JCdGHFRLidUfskZ7yePg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:39.012 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/798b7a38, base path is set to: null +20:00:39.012 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.012 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.012 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:39.013 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/798b7a38, base path is set to: null +20:00:39.013 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "798b7a38", "798b7a38", userId) +20:00:39.014 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"424b25c2-505d-40e7-a64a-8fbe206496d7","newPassword":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPasswordConfirm":"7605de67-6227-45a4-9a1b-a20a8d04db53"}, {"password":"424b25c2-505d-40e7-a64a-8fbe206496d7","newPassword":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPasswordConfirm":"7605de67-6227-45a4-9a1b-a20a8d04db53"}, requestBody) +20:00:39.014 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7605de67-6227-45a4-9a1b-a20a8d04db53", {"password":"424b25c2-505d-40e7-a64a-8fbe206496d7","newPassword":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPasswordConfirm":"7605de67-6227-45a4-9a1b-a20a8d04db53"}, requestBody.newPasswordConfirm) +20:00:39.014 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "424b25c2-505d-40e7-a64a-8fbe206496d7", {"password":"424b25c2-505d-40e7-a64a-8fbe206496d7","newPassword":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPasswordConfirm":"7605de67-6227-45a4-9a1b-a20a8d04db53"}, requestBody.password) +20:00:39.014 [XNIO-1 task-1] T8UcP2LaRlmLo5n-9-l9uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7605de67-6227-45a4-9a1b-a20a8d04db53", {"password":"424b25c2-505d-40e7-a64a-8fbe206496d7","newPassword":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPasswordConfirm":"7605de67-6227-45a4-9a1b-a20a8d04db53"}, requestBody.newPassword) +20:00:39.045 [XNIO-1 task-1] 2DKKlChLQ6KZcudTFDg3bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.045 [XNIO-1 task-1] 2DKKlChLQ6KZcudTFDg3bg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.046 [XNIO-1 task-1] 2DKKlChLQ6KZcudTFDg3bg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.068 [XNIO-1 task-1] CRIWEiqcQXScShiC6iLMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.068 [XNIO-1 task-1] CRIWEiqcQXScShiC6iLMyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.068 [XNIO-1 task-1] CRIWEiqcQXScShiC6iLMyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.087 [XNIO-1 task-1] ntOw9FAZQNSX2W0mwcs3kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d575180f, base path is set to: null +20:00:39.088 [XNIO-1 task-1] ntOw9FAZQNSX2W0mwcs3kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.088 [XNIO-1 task-1] ntOw9FAZQNSX2W0mwcs3kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.088 [XNIO-1 task-1] ntOw9FAZQNSX2W0mwcs3kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d575180f, base path is set to: null +20:00:39.088 [XNIO-1 task-1] ntOw9FAZQNSX2W0mwcs3kA DEBUG com.networknt.schema.TypeValidator debug - validate( "d575180f", "d575180f", userId) +20:00:39.102 [XNIO-1 task-1] d_tH3Q25T36tDry-J6pNUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.102 [XNIO-1 task-1] d_tH3Q25T36tDry-J6pNUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.103 [XNIO-1 task-1] d_tH3Q25T36tDry-J6pNUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.117 [XNIO-1 task-1] D01gtr83T6ioGuU1rpBkPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.118 [XNIO-1 task-1] D01gtr83T6ioGuU1rpBkPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.119 [XNIO-1 task-1] D01gtr83T6ioGuU1rpBkPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.133 [XNIO-1 task-1] p5aHYF4oSA2coqGawACUOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9d55ff4e +20:00:39.133 [XNIO-1 task-1] p5aHYF4oSA2coqGawACUOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.133 [XNIO-1 task-1] p5aHYF4oSA2coqGawACUOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:39.134 [XNIO-1 task-1] p5aHYF4oSA2coqGawACUOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9d55ff4e +20:00:39.139 [XNIO-1 task-1] 1WGDiuK2Tq2wKu2QGEEeSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.139 [XNIO-1 task-1] 1WGDiuK2Tq2wKu2QGEEeSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.139 [XNIO-1 task-1] 1WGDiuK2Tq2wKu2QGEEeSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.143 [XNIO-1 task-1] 1WGDiuK2Tq2wKu2QGEEeSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:39.168 [XNIO-1 task-1] zKdYEgYbQzCnaS5gHTjLHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b51af011, base path is set to: null +20:00:39.168 [XNIO-1 task-1] zKdYEgYbQzCnaS5gHTjLHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.169 [XNIO-1 task-1] zKdYEgYbQzCnaS5gHTjLHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.169 [XNIO-1 task-1] zKdYEgYbQzCnaS5gHTjLHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b51af011, base path is set to: null +20:00:39.169 [XNIO-1 task-1] zKdYEgYbQzCnaS5gHTjLHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b51af011", "b51af011", userId) +20:00:39.199 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d8daa5f2-25c0-4342-b833-636e08184cb1 +20:00:39.207 [XNIO-1 task-1] wbgBMTJiQIiZ3VkjXmzOkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.208 [XNIO-1 task-1] wbgBMTJiQIiZ3VkjXmzOkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.208 [XNIO-1 task-1] wbgBMTJiQIiZ3VkjXmzOkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.220 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d8daa5f2-25c0-4342-b833-636e08184cb1 +20:00:39.322 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d575180f +20:00:39.322 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.322 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:39.322 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:39.323 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d575180f +20:00:39.324 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"260d4b0e-c78c-4388-8e17-416b4ec0da9e","newPassword":"4257d4f3-5c6f-4be8-bbdb-600686632a79","newPasswordConfirm":"4257d4f3-5c6f-4be8-bbdb-600686632a79"}, {"password":"260d4b0e-c78c-4388-8e17-416b4ec0da9e","newPassword":"4257d4f3-5c6f-4be8-bbdb-600686632a79","newPasswordConfirm":"4257d4f3-5c6f-4be8-bbdb-600686632a79"}, requestBody) +20:00:39.324 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"260d4b0e-c78c-4388-8e17-416b4ec0da9e","newPassword":"4257d4f3-5c6f-4be8-bbdb-600686632a79","newPasswordConfirm":"4257d4f3-5c6f-4be8-bbdb-600686632a79"}, {"password":"260d4b0e-c78c-4388-8e17-416b4ec0da9e","newPassword":"4257d4f3-5c6f-4be8-bbdb-600686632a79","newPasswordConfirm":"4257d4f3-5c6f-4be8-bbdb-600686632a79"}, requestBody) +20:00:39.325 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG com.networknt.schema.FormatValidator debug - validate( "4257d4f3-5c6f-4be8-bbdb-600686632a79", {"password":"260d4b0e-c78c-4388-8e17-416b4ec0da9e","newPassword":"4257d4f3-5c6f-4be8-bbdb-600686632a79","newPasswordConfirm":"4257d4f3-5c6f-4be8-bbdb-600686632a79"}, requestBody.newPasswordConfirm) +20:00:39.326 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG com.networknt.schema.FormatValidator debug - validate( "260d4b0e-c78c-4388-8e17-416b4ec0da9e", {"password":"260d4b0e-c78c-4388-8e17-416b4ec0da9e","newPassword":"4257d4f3-5c6f-4be8-bbdb-600686632a79","newPasswordConfirm":"4257d4f3-5c6f-4be8-bbdb-600686632a79"}, requestBody.password) +20:00:39.326 [XNIO-1 task-1] 77E_HJzTQ-SHGu3nkbZciA DEBUG com.networknt.schema.FormatValidator debug - validate( "4257d4f3-5c6f-4be8-bbdb-600686632a79", {"password":"260d4b0e-c78c-4388-8e17-416b4ec0da9e","newPassword":"4257d4f3-5c6f-4be8-bbdb-600686632a79","newPasswordConfirm":"4257d4f3-5c6f-4be8-bbdb-600686632a79"}, requestBody.newPassword) +20:00:39.357 [XNIO-1 task-1] bYbKM_-ERdS6LTaa4runJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.357 [XNIO-1 task-1] bYbKM_-ERdS6LTaa4runJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.358 [XNIO-1 task-1] bYbKM_-ERdS6LTaa4runJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.412 [XNIO-1 task-1] gy3P5aO7TAG_6THUpp8w2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.412 [XNIO-1 task-1] gy3P5aO7TAG_6THUpp8w2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.412 [XNIO-1 task-1] gy3P5aO7TAG_6THUpp8w2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.413 [XNIO-1 task-1] gy3P5aO7TAG_6THUpp8w2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:39.431 [XNIO-1 task-1] zpgTR3TbR--tgOO67v2qzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.432 [XNIO-1 task-1] zpgTR3TbR--tgOO67v2qzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.432 [XNIO-1 task-1] zpgTR3TbR--tgOO67v2qzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.462 [XNIO-1 task-1] BBEAsREYS2mf3udowRUR2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.462 [XNIO-1 task-1] BBEAsREYS2mf3udowRUR2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.463 [XNIO-1 task-1] BBEAsREYS2mf3udowRUR2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.463 [XNIO-1 task-1] BBEAsREYS2mf3udowRUR2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:39.498 [XNIO-1 task-1] E7pEuRVgTGOADCXpr-D3mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d89d90d +20:00:39.498 [XNIO-1 task-1] E7pEuRVgTGOADCXpr-D3mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.498 [XNIO-1 task-1] E7pEuRVgTGOADCXpr-D3mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:39.498 [XNIO-1 task-1] E7pEuRVgTGOADCXpr-D3mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d89d90d +20:00:39.520 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/798b7a38, base path is set to: null +20:00:39.520 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.520 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.520 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:39.521 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/798b7a38, base path is set to: null +20:00:39.521 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG com.networknt.schema.TypeValidator debug - validate( "798b7a38", "798b7a38", userId) +20:00:39.523 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPassword":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPasswordConfirm":"e1afcd52-9ad0-4349-9d74-53d8b87fd551"}, {"password":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPassword":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPasswordConfirm":"e1afcd52-9ad0-4349-9d74-53d8b87fd551"}, requestBody) +20:00:39.524 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG com.networknt.schema.TypeValidator debug - validate( "e1afcd52-9ad0-4349-9d74-53d8b87fd551", {"password":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPassword":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPasswordConfirm":"e1afcd52-9ad0-4349-9d74-53d8b87fd551"}, requestBody.newPasswordConfirm) +20:00:39.524 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG com.networknt.schema.TypeValidator debug - validate( "7605de67-6227-45a4-9a1b-a20a8d04db53", {"password":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPassword":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPasswordConfirm":"e1afcd52-9ad0-4349-9d74-53d8b87fd551"}, requestBody.password) +20:00:39.524 [XNIO-1 task-1] J7nICAHXTI-sKKgaGj4F9A DEBUG com.networknt.schema.TypeValidator debug - validate( "e1afcd52-9ad0-4349-9d74-53d8b87fd551", {"password":"7605de67-6227-45a4-9a1b-a20a8d04db53","newPassword":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPasswordConfirm":"e1afcd52-9ad0-4349-9d74-53d8b87fd551"}, requestBody.newPassword) +20:00:39.557 [XNIO-1 task-1] M-2BMQ0WRfSyPUBfBCWOUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d89d90d, base path is set to: null +20:00:39.557 [XNIO-1 task-1] M-2BMQ0WRfSyPUBfBCWOUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.557 [XNIO-1 task-1] M-2BMQ0WRfSyPUBfBCWOUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.557 [XNIO-1 task-1] M-2BMQ0WRfSyPUBfBCWOUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d89d90d, base path is set to: null +20:00:39.558 [XNIO-1 task-1] M-2BMQ0WRfSyPUBfBCWOUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d89d90d", "1d89d90d", userId) +20:00:39.645 [XNIO-1 task-1] JRp0R5MrT3GJA-TB8LxA9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.645 [XNIO-1 task-1] JRp0R5MrT3GJA-TB8LxA9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.646 [XNIO-1 task-1] JRp0R5MrT3GJA-TB8LxA9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.711 [XNIO-1 task-1] LW5u7leDT32caTIkHTqocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66848dc7 +20:00:39.711 [XNIO-1 task-1] LW5u7leDT32caTIkHTqocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.711 [XNIO-1 task-1] LW5u7leDT32caTIkHTqocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:39.711 [XNIO-1 task-1] LW5u7leDT32caTIkHTqocA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/66848dc7 +20:00:39.721 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/df57c057, base path is set to: null +20:00:39.721 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.721 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.721 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:39.722 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/df57c057, base path is set to: null +20:00:39.722 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "df57c057", "df57c057", userId) +20:00:39.723 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"40c7d218-8b0e-47a2-ae5d-4b45a371970b","newPassword":"ce846edf-e6c6-40f5-ba73-2a087c330b51","newPasswordConfirm":"ce846edf-e6c6-40f5-ba73-2a087c330b51"}, {"password":"40c7d218-8b0e-47a2-ae5d-4b45a371970b","newPassword":"ce846edf-e6c6-40f5-ba73-2a087c330b51","newPasswordConfirm":"ce846edf-e6c6-40f5-ba73-2a087c330b51"}, requestBody) +20:00:39.723 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ce846edf-e6c6-40f5-ba73-2a087c330b51", {"password":"40c7d218-8b0e-47a2-ae5d-4b45a371970b","newPassword":"ce846edf-e6c6-40f5-ba73-2a087c330b51","newPasswordConfirm":"ce846edf-e6c6-40f5-ba73-2a087c330b51"}, requestBody.newPasswordConfirm) +20:00:39.723 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "40c7d218-8b0e-47a2-ae5d-4b45a371970b", {"password":"40c7d218-8b0e-47a2-ae5d-4b45a371970b","newPassword":"ce846edf-e6c6-40f5-ba73-2a087c330b51","newPasswordConfirm":"ce846edf-e6c6-40f5-ba73-2a087c330b51"}, requestBody.password) +20:00:39.723 [XNIO-1 task-1] rYjBAHjQT4qeU2KwgsdZ7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ce846edf-e6c6-40f5-ba73-2a087c330b51", {"password":"40c7d218-8b0e-47a2-ae5d-4b45a371970b","newPassword":"ce846edf-e6c6-40f5-ba73-2a087c330b51","newPasswordConfirm":"ce846edf-e6c6-40f5-ba73-2a087c330b51"}, requestBody.newPassword) +20:00:39.752 [XNIO-1 task-1] I6WCFtz4QTuM5w1ycV0ftQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.754 [XNIO-1 task-1] I6WCFtz4QTuM5w1ycV0ftQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.757 [XNIO-1 task-1] I6WCFtz4QTuM5w1ycV0ftQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.795 [XNIO-1 task-1] 9mZYaDSZQpW5uJ7phgtIKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.795 [XNIO-1 task-1] 9mZYaDSZQpW5uJ7phgtIKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.795 [XNIO-1 task-1] 9mZYaDSZQpW5uJ7phgtIKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.852 [XNIO-1 task-1] QG9UEPM3Qa6FiEEEWmaTEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.852 [XNIO-1 task-1] QG9UEPM3Qa6FiEEEWmaTEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.852 [XNIO-1 task-1] QG9UEPM3Qa6FiEEEWmaTEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.863 [XNIO-1 task-1] wdczb9enQBy4WAToi5iBKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.863 [XNIO-1 task-1] wdczb9enQBy4WAToi5iBKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.863 [XNIO-1 task-1] wdczb9enQBy4WAToi5iBKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.864 [XNIO-1 task-1] wdczb9enQBy4WAToi5iBKw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:39.899 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9d55ff4e, base path is set to: null +20:00:39.899 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.899 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.899 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:39.899 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9d55ff4e, base path is set to: null +20:00:39.900 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG com.networknt.schema.TypeValidator debug - validate( "9d55ff4e", "9d55ff4e", userId) +20:00:39.901 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4ccf406f-4135-4f71-94a9-5e13b104ddb9","newPassword":"2c5aacbe-f397-4562-a6b2-ad86486169f8","newPasswordConfirm":"2c5aacbe-f397-4562-a6b2-ad86486169f8"}, {"password":"4ccf406f-4135-4f71-94a9-5e13b104ddb9","newPassword":"2c5aacbe-f397-4562-a6b2-ad86486169f8","newPasswordConfirm":"2c5aacbe-f397-4562-a6b2-ad86486169f8"}, requestBody) +20:00:39.901 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG com.networknt.schema.TypeValidator debug - validate( "2c5aacbe-f397-4562-a6b2-ad86486169f8", {"password":"4ccf406f-4135-4f71-94a9-5e13b104ddb9","newPassword":"2c5aacbe-f397-4562-a6b2-ad86486169f8","newPasswordConfirm":"2c5aacbe-f397-4562-a6b2-ad86486169f8"}, requestBody.newPasswordConfirm) +20:00:39.901 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ccf406f-4135-4f71-94a9-5e13b104ddb9", {"password":"4ccf406f-4135-4f71-94a9-5e13b104ddb9","newPassword":"2c5aacbe-f397-4562-a6b2-ad86486169f8","newPasswordConfirm":"2c5aacbe-f397-4562-a6b2-ad86486169f8"}, requestBody.password) +20:00:39.901 [XNIO-1 task-1] wgOJl-yPSrSohO3_js_wMA DEBUG com.networknt.schema.TypeValidator debug - validate( "2c5aacbe-f397-4562-a6b2-ad86486169f8", {"password":"4ccf406f-4135-4f71-94a9-5e13b104ddb9","newPassword":"2c5aacbe-f397-4562-a6b2-ad86486169f8","newPasswordConfirm":"2c5aacbe-f397-4562-a6b2-ad86486169f8"}, requestBody.newPassword) +20:00:39.922 [XNIO-1 task-1] 9CPWT-lNSfupNu661GUZaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.922 [XNIO-1 task-1] 9CPWT-lNSfupNu661GUZaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.923 [XNIO-1 task-1] 9CPWT-lNSfupNu661GUZaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.959 [XNIO-1 task-1] WTfTmzveQdOlZ-yxNZ8Mkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.959 [XNIO-1 task-1] WTfTmzveQdOlZ-yxNZ8Mkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.959 [XNIO-1 task-1] WTfTmzveQdOlZ-yxNZ8Mkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.960 [XNIO-1 task-1] WTfTmzveQdOlZ-yxNZ8Mkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:39.969 [XNIO-1 task-1] 72euNshTSZ-CgchbR0-YPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.969 [XNIO-1 task-1] 72euNshTSZ-CgchbR0-YPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.969 [XNIO-1 task-1] 72euNshTSZ-CgchbR0-YPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.970 [XNIO-1 task-1] 72euNshTSZ-CgchbR0-YPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:39.977 [XNIO-1 task-1] ZyB2i2cEQTOy83jB6Wv8sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.977 [XNIO-1 task-1] ZyB2i2cEQTOy83jB6Wv8sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.977 [XNIO-1 task-1] ZyB2i2cEQTOy83jB6Wv8sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:39.990 [XNIO-1 task-1] jz2eb8pHR7SDPhmgzSxA6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b51af011, base path is set to: null +20:00:39.990 [XNIO-1 task-1] jz2eb8pHR7SDPhmgzSxA6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:39.990 [XNIO-1 task-1] jz2eb8pHR7SDPhmgzSxA6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:39.990 [XNIO-1 task-1] jz2eb8pHR7SDPhmgzSxA6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b51af011, base path is set to: null +20:00:39.991 [XNIO-1 task-1] jz2eb8pHR7SDPhmgzSxA6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b51af011", "b51af011", userId) +20:00:39.996 [XNIO-1 task-1] QcAWCaVpQ7uGW2sHBnnJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d575180f +20:00:39.996 [XNIO-1 task-1] QcAWCaVpQ7uGW2sHBnnJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:39.996 [XNIO-1 task-1] QcAWCaVpQ7uGW2sHBnnJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:39.997 [XNIO-1 task-1] QcAWCaVpQ7uGW2sHBnnJ5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d575180f +20:00:40.009 [XNIO-1 task-1] uKE8i0ClSkCrOc5Z19_wkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c0e80e3d, base path is set to: null +20:00:40.009 [XNIO-1 task-1] uKE8i0ClSkCrOc5Z19_wkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.010 [XNIO-1 task-1] uKE8i0ClSkCrOc5Z19_wkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.010 [XNIO-1 task-1] uKE8i0ClSkCrOc5Z19_wkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c0e80e3d, base path is set to: null +20:00:40.010 [XNIO-1 task-1] uKE8i0ClSkCrOc5Z19_wkg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0e80e3d", "c0e80e3d", userId) +20:00:40.014 [XNIO-1 task-1] LzjstLHMQ26QCYxx9t3e8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c0e80e3d +20:00:40.015 [XNIO-1 task-1] LzjstLHMQ26QCYxx9t3e8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.015 [XNIO-1 task-1] LzjstLHMQ26QCYxx9t3e8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.015 [XNIO-1 task-1] LzjstLHMQ26QCYxx9t3e8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c0e80e3d +20:00:40.021 [XNIO-1 task-1] dFGZ-J4uRGeb9LR42af4UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.021 [XNIO-1 task-1] dFGZ-J4uRGeb9LR42af4UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.021 [XNIO-1 task-1] dFGZ-J4uRGeb9LR42af4UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.062 [XNIO-1 task-1] RWIkzA4mTb26cdO0mhBWuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.062 [XNIO-1 task-1] RWIkzA4mTb26cdO0mhBWuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.063 [XNIO-1 task-1] RWIkzA4mTb26cdO0mhBWuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.156 [XNIO-1 task-1] pouHj45wRF20u4tbOEboVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/df57c057, base path is set to: null +20:00:40.157 [XNIO-1 task-1] pouHj45wRF20u4tbOEboVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.157 [XNIO-1 task-1] pouHj45wRF20u4tbOEboVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.157 [XNIO-1 task-1] pouHj45wRF20u4tbOEboVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/df57c057, base path is set to: null +20:00:40.158 [XNIO-1 task-1] pouHj45wRF20u4tbOEboVw DEBUG com.networknt.schema.TypeValidator debug - validate( "df57c057", "df57c057", userId) +20:00:40.169 [XNIO-1 task-1] qq7iToqGQgOxH_JcS9xvrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.169 [XNIO-1 task-1] qq7iToqGQgOxH_JcS9xvrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.170 [XNIO-1 task-1] qq7iToqGQgOxH_JcS9xvrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.199 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e595150d +20:00:40.235 [XNIO-1 task-1] ie96ZTGdTkydHYNiK9HyDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.236 [XNIO-1 task-1] ie96ZTGdTkydHYNiK9HyDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.236 [XNIO-1 task-1] ie96ZTGdTkydHYNiK9HyDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.236 [XNIO-1 task-1] ie96ZTGdTkydHYNiK9HyDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.263 [XNIO-1 task-1] ceQT-rfSQk2-QWrFj0NupQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.263 [XNIO-1 task-1] ceQT-rfSQk2-QWrFj0NupQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.264 [XNIO-1 task-1] ceQT-rfSQk2-QWrFj0NupQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.277 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:50175bc7-28cf-4665-bf2c-f30adfe9be0d +20:00:40.279 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:50175bc7-28cf-4665-bf2c-f30adfe9be0d +20:00:40.346 [XNIO-1 task-1] Q1ToCNjITCO2B6gKATuYlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d89d90d +20:00:40.394 [XNIO-1 task-1] Q1ToCNjITCO2B6gKATuYlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.413 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dcd5e52a-95ca-48e9-a287-6e650c0614b7 +20:00:40.414 [XNIO-1 task-1] Q1ToCNjITCO2B6gKATuYlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d89d90d, base path is set to: null +20:00:40.415 [XNIO-1 task-1] Q1ToCNjITCO2B6gKATuYlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d89d90d", "1d89d90d", userId) +20:00:40.422 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dcd5e52a-95ca-48e9-a287-6e650c0614b7 +20:00:40.424 [XNIO-1 task-1] hRRpNzNhSWKdzRrevf-3Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d89d90d +20:00:40.424 [XNIO-1 task-1] hRRpNzNhSWKdzRrevf-3Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.426 [XNIO-1 task-1] hRRpNzNhSWKdzRrevf-3Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.426 [XNIO-1 task-1] hRRpNzNhSWKdzRrevf-3Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1d89d90d +20:00:40.448 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e595150d, base path is set to: null +20:00:40.448 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.448 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.448 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:40.449 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e595150d, base path is set to: null +20:00:40.449 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG com.networknt.schema.TypeValidator debug - validate( "e595150d", "e595150d", userId) +20:00:40.450 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f6e093a5-37ab-4401-a665-145dc9e819fd","newPassword":"40dd11b1-f710-4cbc-896e-d108c380709e","newPasswordConfirm":"40dd11b1-f710-4cbc-896e-d108c380709e"}, {"password":"f6e093a5-37ab-4401-a665-145dc9e819fd","newPassword":"40dd11b1-f710-4cbc-896e-d108c380709e","newPasswordConfirm":"40dd11b1-f710-4cbc-896e-d108c380709e"}, requestBody) +20:00:40.450 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG com.networknt.schema.TypeValidator debug - validate( "40dd11b1-f710-4cbc-896e-d108c380709e", {"password":"f6e093a5-37ab-4401-a665-145dc9e819fd","newPassword":"40dd11b1-f710-4cbc-896e-d108c380709e","newPasswordConfirm":"40dd11b1-f710-4cbc-896e-d108c380709e"}, requestBody.newPasswordConfirm) +20:00:40.450 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e093a5-37ab-4401-a665-145dc9e819fd", {"password":"f6e093a5-37ab-4401-a665-145dc9e819fd","newPassword":"40dd11b1-f710-4cbc-896e-d108c380709e","newPasswordConfirm":"40dd11b1-f710-4cbc-896e-d108c380709e"}, requestBody.password) +20:00:40.450 [XNIO-1 task-1] nKwX7xNFRU-XwuQRsizE4g DEBUG com.networknt.schema.TypeValidator debug - validate( "40dd11b1-f710-4cbc-896e-d108c380709e", {"password":"f6e093a5-37ab-4401-a665-145dc9e819fd","newPassword":"40dd11b1-f710-4cbc-896e-d108c380709e","newPasswordConfirm":"40dd11b1-f710-4cbc-896e-d108c380709e"}, requestBody.newPassword) +20:00:40.463 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e595150d +20:00:40.472 [XNIO-1 task-1] ReOBaWFuQqmrAPZWZUJHDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.472 [XNIO-1 task-1] ReOBaWFuQqmrAPZWZUJHDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.472 [XNIO-1 task-1] ReOBaWFuQqmrAPZWZUJHDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.473 [XNIO-1 task-1] ReOBaWFuQqmrAPZWZUJHDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.487 [XNIO-1 task-1] v6CCSr4MTpuKPgbOgFVVig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.489 [XNIO-1 task-1] v6CCSr4MTpuKPgbOgFVVig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.489 [XNIO-1 task-1] v6CCSr4MTpuKPgbOgFVVig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.490 [XNIO-1 task-1] v6CCSr4MTpuKPgbOgFVVig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.500 [XNIO-1 task-1] SAGWvNTvQySbB_gpNSPqOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d89d90d, base path is set to: null +20:00:40.501 [XNIO-1 task-1] SAGWvNTvQySbB_gpNSPqOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.502 [XNIO-1 task-1] SAGWvNTvQySbB_gpNSPqOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.502 [XNIO-1 task-1] SAGWvNTvQySbB_gpNSPqOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d89d90d, base path is set to: null +20:00:40.502 [XNIO-1 task-1] SAGWvNTvQySbB_gpNSPqOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d89d90d", "1d89d90d", userId) +20:00:40.518 [XNIO-1 task-1] 9ubTdQ2eQlOZTAWt59fljQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e595150d +20:00:40.518 [XNIO-1 task-1] 9ubTdQ2eQlOZTAWt59fljQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.520 [XNIO-1 task-1] 9ubTdQ2eQlOZTAWt59fljQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.522 [XNIO-1 task-1] 9ubTdQ2eQlOZTAWt59fljQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e595150d +20:00:40.528 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e595150d, base path is set to: null +20:00:40.528 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.528 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.528 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:40.529 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e595150d, base path is set to: null +20:00:40.529 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "e595150d", "e595150d", userId) +20:00:40.533 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"40dd11b1-f710-4cbc-896e-d108c380709e","newPassword":"aed6a081-119c-4ffa-bc16-672f41581974","newPasswordConfirm":"aed6a081-119c-4ffa-bc16-672f41581974"}, {"password":"40dd11b1-f710-4cbc-896e-d108c380709e","newPassword":"aed6a081-119c-4ffa-bc16-672f41581974","newPasswordConfirm":"aed6a081-119c-4ffa-bc16-672f41581974"}, requestBody) +20:00:40.534 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "aed6a081-119c-4ffa-bc16-672f41581974", {"password":"40dd11b1-f710-4cbc-896e-d108c380709e","newPassword":"aed6a081-119c-4ffa-bc16-672f41581974","newPasswordConfirm":"aed6a081-119c-4ffa-bc16-672f41581974"}, requestBody.newPasswordConfirm) +20:00:40.534 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "40dd11b1-f710-4cbc-896e-d108c380709e", {"password":"40dd11b1-f710-4cbc-896e-d108c380709e","newPassword":"aed6a081-119c-4ffa-bc16-672f41581974","newPasswordConfirm":"aed6a081-119c-4ffa-bc16-672f41581974"}, requestBody.password) +20:00:40.534 [XNIO-1 task-1] nASc4wMHSayT7wksAizTsA DEBUG com.networknt.schema.TypeValidator debug - validate( "aed6a081-119c-4ffa-bc16-672f41581974", {"password":"40dd11b1-f710-4cbc-896e-d108c380709e","newPassword":"aed6a081-119c-4ffa-bc16-672f41581974","newPasswordConfirm":"aed6a081-119c-4ffa-bc16-672f41581974"}, requestBody.newPassword) +20:00:40.545 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e595150d +20:00:40.582 [XNIO-1 task-1] BABxRRALRMaNDRQSIbCzaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e595150d, base path is set to: null +20:00:40.582 [XNIO-1 task-1] BABxRRALRMaNDRQSIbCzaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.582 [XNIO-1 task-1] BABxRRALRMaNDRQSIbCzaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.582 [XNIO-1 task-1] BABxRRALRMaNDRQSIbCzaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e595150d, base path is set to: null +20:00:40.584 [XNIO-1 task-1] BABxRRALRMaNDRQSIbCzaA DEBUG com.networknt.schema.TypeValidator debug - validate( "e595150d", "e595150d", userId) +20:00:40.591 [XNIO-1 task-1] VZ6zHybUTzKht_Qvv7dHPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.591 [XNIO-1 task-1] VZ6zHybUTzKht_Qvv7dHPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.591 [XNIO-1 task-1] VZ6zHybUTzKht_Qvv7dHPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.592 [XNIO-1 task-1] VZ6zHybUTzKht_Qvv7dHPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.608 [XNIO-1 task-1] J6yB07I0Qn2zYY8dphbm9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.609 [XNIO-1 task-1] J6yB07I0Qn2zYY8dphbm9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.609 [XNIO-1 task-1] J6yB07I0Qn2zYY8dphbm9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.610 [XNIO-1 task-1] J6yB07I0Qn2zYY8dphbm9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:40.621 [XNIO-1 task-1] PTLdEc0ERT2Zo72mOi4rnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e64453, base path is set to: null +20:00:40.622 [XNIO-1 task-1] PTLdEc0ERT2Zo72mOi4rnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.622 [XNIO-1 task-1] PTLdEc0ERT2Zo72mOi4rnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.622 [XNIO-1 task-1] PTLdEc0ERT2Zo72mOi4rnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e64453, base path is set to: null +20:00:40.622 [XNIO-1 task-1] PTLdEc0ERT2Zo72mOi4rnw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e64453", "f6e64453", userId) +20:00:40.642 [XNIO-1 task-1] MMOkN4NYSvK4H_msfbpQtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.642 [XNIO-1 task-1] MMOkN4NYSvK4H_msfbpQtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.642 [XNIO-1 task-1] MMOkN4NYSvK4H_msfbpQtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.643 [XNIO-1 task-1] MMOkN4NYSvK4H_msfbpQtg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.732 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6e64453 +20:00:40.732 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.732 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.732 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:40.733 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f6e64453 +20:00:40.734 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c2dccae4-371b-49a3-aca9-b878f9dc451f","newPassword":"85ae56e8-30c6-488b-b191-ab26c2b7de9c","newPasswordConfirm":"85ae56e8-30c6-488b-b191-ab26c2b7de9c"}, {"password":"c2dccae4-371b-49a3-aca9-b878f9dc451f","newPassword":"85ae56e8-30c6-488b-b191-ab26c2b7de9c","newPasswordConfirm":"85ae56e8-30c6-488b-b191-ab26c2b7de9c"}, requestBody) +20:00:40.734 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c2dccae4-371b-49a3-aca9-b878f9dc451f","newPassword":"85ae56e8-30c6-488b-b191-ab26c2b7de9c","newPasswordConfirm":"85ae56e8-30c6-488b-b191-ab26c2b7de9c"}, {"password":"c2dccae4-371b-49a3-aca9-b878f9dc451f","newPassword":"85ae56e8-30c6-488b-b191-ab26c2b7de9c","newPasswordConfirm":"85ae56e8-30c6-488b-b191-ab26c2b7de9c"}, requestBody) +20:00:40.734 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG com.networknt.schema.FormatValidator debug - validate( "85ae56e8-30c6-488b-b191-ab26c2b7de9c", {"password":"c2dccae4-371b-49a3-aca9-b878f9dc451f","newPassword":"85ae56e8-30c6-488b-b191-ab26c2b7de9c","newPasswordConfirm":"85ae56e8-30c6-488b-b191-ab26c2b7de9c"}, requestBody.newPasswordConfirm) +20:00:40.734 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG com.networknt.schema.FormatValidator debug - validate( "c2dccae4-371b-49a3-aca9-b878f9dc451f", {"password":"c2dccae4-371b-49a3-aca9-b878f9dc451f","newPassword":"85ae56e8-30c6-488b-b191-ab26c2b7de9c","newPasswordConfirm":"85ae56e8-30c6-488b-b191-ab26c2b7de9c"}, requestBody.password) +20:00:40.734 [XNIO-1 task-1] 4mWkIX7PTMezebBz_cceaw DEBUG com.networknt.schema.FormatValidator debug - validate( "85ae56e8-30c6-488b-b191-ab26c2b7de9c", {"password":"c2dccae4-371b-49a3-aca9-b878f9dc451f","newPassword":"85ae56e8-30c6-488b-b191-ab26c2b7de9c","newPasswordConfirm":"85ae56e8-30c6-488b-b191-ab26c2b7de9c"}, requestBody.newPassword) +20:00:40.766 [XNIO-1 task-1] CThoig95T-q-xvPoLvdPGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.766 [XNIO-1 task-1] CThoig95T-q-xvPoLvdPGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.766 [XNIO-1 task-1] CThoig95T-q-xvPoLvdPGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.767 [XNIO-1 task-1] CThoig95T-q-xvPoLvdPGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:40.797 [XNIO-1 task-1] uGsFyME1RUaeZLpWZfOvWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e64453 +20:00:40.797 [XNIO-1 task-1] uGsFyME1RUaeZLpWZfOvWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.797 [XNIO-1 task-1] uGsFyME1RUaeZLpWZfOvWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.797 [XNIO-1 task-1] uGsFyME1RUaeZLpWZfOvWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e64453 +20:00:40.804 [XNIO-1 task-1] ChixRGUGR2qEB8nsfIsOQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e64453, base path is set to: null +20:00:40.804 [XNIO-1 task-1] ChixRGUGR2qEB8nsfIsOQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.805 [XNIO-1 task-1] ChixRGUGR2qEB8nsfIsOQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.805 [XNIO-1 task-1] ChixRGUGR2qEB8nsfIsOQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f6e64453, base path is set to: null +20:00:40.806 [XNIO-1 task-1] ChixRGUGR2qEB8nsfIsOQw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6e64453", "f6e64453", userId) +20:00:40.812 [XNIO-1 task-1] 7Jgov0UtRne4lW8JgioXUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.812 [XNIO-1 task-1] 7Jgov0UtRne4lW8JgioXUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.815 [XNIO-1 task-1] 7Jgov0UtRne4lW8JgioXUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.843 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/798b7a38 +20:00:40.844 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.844 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.844 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:40.844 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/798b7a38 +20:00:40.845 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPassword":"3a613930-79fc-42b9-bd25-4bb2acef02ed","newPasswordConfirm":"3a613930-79fc-42b9-bd25-4bb2acef02ed"}, {"password":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPassword":"3a613930-79fc-42b9-bd25-4bb2acef02ed","newPasswordConfirm":"3a613930-79fc-42b9-bd25-4bb2acef02ed"}, requestBody) +20:00:40.845 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPassword":"3a613930-79fc-42b9-bd25-4bb2acef02ed","newPasswordConfirm":"3a613930-79fc-42b9-bd25-4bb2acef02ed"}, {"password":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPassword":"3a613930-79fc-42b9-bd25-4bb2acef02ed","newPasswordConfirm":"3a613930-79fc-42b9-bd25-4bb2acef02ed"}, requestBody) +20:00:40.845 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG com.networknt.schema.FormatValidator debug - validate( "3a613930-79fc-42b9-bd25-4bb2acef02ed", {"password":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPassword":"3a613930-79fc-42b9-bd25-4bb2acef02ed","newPasswordConfirm":"3a613930-79fc-42b9-bd25-4bb2acef02ed"}, requestBody.newPasswordConfirm) +20:00:40.845 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG com.networknt.schema.FormatValidator debug - validate( "e1afcd52-9ad0-4349-9d74-53d8b87fd551", {"password":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPassword":"3a613930-79fc-42b9-bd25-4bb2acef02ed","newPasswordConfirm":"3a613930-79fc-42b9-bd25-4bb2acef02ed"}, requestBody.password) +20:00:40.845 [XNIO-1 task-1] Kacme_lrSLKaAN-niOosww DEBUG com.networknt.schema.FormatValidator debug - validate( "3a613930-79fc-42b9-bd25-4bb2acef02ed", {"password":"e1afcd52-9ad0-4349-9d74-53d8b87fd551","newPassword":"3a613930-79fc-42b9-bd25-4bb2acef02ed","newPasswordConfirm":"3a613930-79fc-42b9-bd25-4bb2acef02ed"}, requestBody.newPassword) +20:00:40.865 [XNIO-1 task-1] Nay9M2sXQ8KdQQwVKjndkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/798b7a38 +20:00:40.865 [XNIO-1 task-1] Nay9M2sXQ8KdQQwVKjndkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.865 [XNIO-1 task-1] Nay9M2sXQ8KdQQwVKjndkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.865 [XNIO-1 task-1] Nay9M2sXQ8KdQQwVKjndkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/798b7a38 +20:00:40.878 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fa47c1a3, base path is set to: null +20:00:40.879 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.879 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.879 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:40.880 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fa47c1a3, base path is set to: null +20:00:40.880 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG com.networknt.schema.TypeValidator debug - validate( "fa47c1a3", "fa47c1a3", userId) +20:00:40.881 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"dc68792f-0aa0-491c-b42c-1458b5439821","newPassword":"f1399225-f36b-4acb-976c-853194307b3b","newPasswordConfirm":"f1399225-f36b-4acb-976c-853194307b3b"}, {"password":"dc68792f-0aa0-491c-b42c-1458b5439821","newPassword":"f1399225-f36b-4acb-976c-853194307b3b","newPasswordConfirm":"f1399225-f36b-4acb-976c-853194307b3b"}, requestBody) +20:00:40.881 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG com.networknt.schema.TypeValidator debug - validate( "f1399225-f36b-4acb-976c-853194307b3b", {"password":"dc68792f-0aa0-491c-b42c-1458b5439821","newPassword":"f1399225-f36b-4acb-976c-853194307b3b","newPasswordConfirm":"f1399225-f36b-4acb-976c-853194307b3b"}, requestBody.newPasswordConfirm) +20:00:40.881 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc68792f-0aa0-491c-b42c-1458b5439821", {"password":"dc68792f-0aa0-491c-b42c-1458b5439821","newPassword":"f1399225-f36b-4acb-976c-853194307b3b","newPasswordConfirm":"f1399225-f36b-4acb-976c-853194307b3b"}, requestBody.password) +20:00:40.881 [XNIO-1 task-1] 2C2MPu7LQiGl1Fk0O8lhOw DEBUG com.networknt.schema.TypeValidator debug - validate( "f1399225-f36b-4acb-976c-853194307b3b", {"password":"dc68792f-0aa0-491c-b42c-1458b5439821","newPassword":"f1399225-f36b-4acb-976c-853194307b3b","newPasswordConfirm":"f1399225-f36b-4acb-976c-853194307b3b"}, requestBody.newPassword) +20:00:40.911 [XNIO-1 task-1] 09ktOUvjRQmOlNk9RK-8lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.911 [XNIO-1 task-1] 09ktOUvjRQmOlNk9RK-8lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.912 [XNIO-1 task-1] 09ktOUvjRQmOlNk9RK-8lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.944 [XNIO-1 task-1] DoSdpIVQQUOiSQl_p8VUDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/296bd494, base path is set to: null +20:00:40.944 [XNIO-1 task-1] DoSdpIVQQUOiSQl_p8VUDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.944 [XNIO-1 task-1] DoSdpIVQQUOiSQl_p8VUDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.945 [XNIO-1 task-1] DoSdpIVQQUOiSQl_p8VUDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/296bd494, base path is set to: null +20:00:40.945 [XNIO-1 task-1] DoSdpIVQQUOiSQl_p8VUDg DEBUG com.networknt.schema.TypeValidator debug - validate( "296bd494", "296bd494", userId) +20:00:40.955 [XNIO-1 task-1] 3WHbV04zRfeXALuNUa53Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/296bd494, base path is set to: null +20:00:40.955 [XNIO-1 task-1] 3WHbV04zRfeXALuNUa53Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.955 [XNIO-1 task-1] 3WHbV04zRfeXALuNUa53Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:40.955 [XNIO-1 task-1] 3WHbV04zRfeXALuNUa53Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/296bd494, base path is set to: null +20:00:40.955 [XNIO-1 task-1] 3WHbV04zRfeXALuNUa53Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "296bd494", "296bd494", userId) +20:00:40.966 [XNIO-1 task-1] ji6_FJGNTgCUFTdlVGc5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9fbbc57e +20:00:40.966 [XNIO-1 task-1] ji6_FJGNTgCUFTdlVGc5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:40.966 [XNIO-1 task-1] ji6_FJGNTgCUFTdlVGc5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:40.966 [XNIO-1 task-1] ji6_FJGNTgCUFTdlVGc5og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9fbbc57e +20:00:40.973 [XNIO-1 task-1] 1hS33ka2TRGLrd81YJqrcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.973 [XNIO-1 task-1] 1hS33ka2TRGLrd81YJqrcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.974 [XNIO-1 task-1] 1hS33ka2TRGLrd81YJqrcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.993 [XNIO-1 task-1] lYfRvaMcSEGVQUBg4Wy8Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:40.993 [XNIO-1 task-1] lYfRvaMcSEGVQUBg4Wy8Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:40.994 [XNIO-1 task-1] lYfRvaMcSEGVQUBg4Wy8Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.077 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/914e4496, base path is set to: null +20:00:41.077 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.077 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.077 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.078 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/914e4496, base path is set to: null +20:00:41.078 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG com.networknt.schema.TypeValidator debug - validate( "914e4496", "914e4496", userId) +20:00:41.079 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"bb2aadec-dbba-4b7a-8efb-b878185fffb0","newPassword":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096","newPasswordConfirm":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096"}, {"password":"bb2aadec-dbba-4b7a-8efb-b878185fffb0","newPassword":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096","newPasswordConfirm":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096"}, requestBody) +20:00:41.079 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ae1fffb-f1f9-4324-8e3c-5e711ed4e096", {"password":"bb2aadec-dbba-4b7a-8efb-b878185fffb0","newPassword":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096","newPasswordConfirm":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096"}, requestBody.newPasswordConfirm) +20:00:41.079 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb2aadec-dbba-4b7a-8efb-b878185fffb0", {"password":"bb2aadec-dbba-4b7a-8efb-b878185fffb0","newPassword":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096","newPasswordConfirm":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096"}, requestBody.password) +20:00:41.079 [XNIO-1 task-1] XHEf8mG4QV-39ojs9xrsIg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ae1fffb-f1f9-4324-8e3c-5e711ed4e096", {"password":"bb2aadec-dbba-4b7a-8efb-b878185fffb0","newPassword":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096","newPasswordConfirm":"5ae1fffb-f1f9-4324-8e3c-5e711ed4e096"}, requestBody.newPassword) +20:00:41.149 [XNIO-1 task-1] ef-7SMpZQQ666Hx88vQ7qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.149 [XNIO-1 task-1] ef-7SMpZQQ666Hx88vQ7qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.150 [XNIO-1 task-1] ef-7SMpZQQ666Hx88vQ7qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.150 [XNIO-1 task-1] ef-7SMpZQQ666Hx88vQ7qA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.164 [XNIO-1 task-1] S7tMmGRwS6i3OJ9ppWqYLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/914e4496, base path is set to: null +20:00:41.164 [XNIO-1 task-1] S7tMmGRwS6i3OJ9ppWqYLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.164 [XNIO-1 task-1] S7tMmGRwS6i3OJ9ppWqYLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.164 [XNIO-1 task-1] S7tMmGRwS6i3OJ9ppWqYLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/914e4496, base path is set to: null +20:00:41.164 [XNIO-1 task-1] S7tMmGRwS6i3OJ9ppWqYLg DEBUG com.networknt.schema.TypeValidator debug - validate( "914e4496", "914e4496", userId) +20:00:41.181 [XNIO-1 task-1] X_WfERvkQyGeDnwLvpBI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/914e4496 +20:00:41.182 [XNIO-1 task-1] X_WfERvkQyGeDnwLvpBI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.182 [XNIO-1 task-1] X_WfERvkQyGeDnwLvpBI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:41.182 [XNIO-1 task-1] X_WfERvkQyGeDnwLvpBI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/914e4496 +20:00:41.210 [XNIO-1 task-1] ATx4NgHFRhWpnhTEpeutaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.210 [XNIO-1 task-1] ATx4NgHFRhWpnhTEpeutaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.211 [XNIO-1 task-1] ATx4NgHFRhWpnhTEpeutaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.249 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cfa5254c, base path is set to: null +20:00:41.249 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.249 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.249 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.249 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cfa5254c, base path is set to: null +20:00:41.250 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG com.networknt.schema.TypeValidator debug - validate( "cfa5254c", "cfa5254c", userId) +20:00:41.250 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"91d4f910-4579-4626-ba24-c8d2c0d0750d","newPassword":"12203203-0552-4105-aa2d-731906a485d2","newPasswordConfirm":"12203203-0552-4105-aa2d-731906a485d2"}, {"password":"91d4f910-4579-4626-ba24-c8d2c0d0750d","newPassword":"12203203-0552-4105-aa2d-731906a485d2","newPasswordConfirm":"12203203-0552-4105-aa2d-731906a485d2"}, requestBody) +20:00:41.250 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG com.networknt.schema.TypeValidator debug - validate( "12203203-0552-4105-aa2d-731906a485d2", {"password":"91d4f910-4579-4626-ba24-c8d2c0d0750d","newPassword":"12203203-0552-4105-aa2d-731906a485d2","newPasswordConfirm":"12203203-0552-4105-aa2d-731906a485d2"}, requestBody.newPasswordConfirm) +20:00:41.250 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG com.networknt.schema.TypeValidator debug - validate( "91d4f910-4579-4626-ba24-c8d2c0d0750d", {"password":"91d4f910-4579-4626-ba24-c8d2c0d0750d","newPassword":"12203203-0552-4105-aa2d-731906a485d2","newPasswordConfirm":"12203203-0552-4105-aa2d-731906a485d2"}, requestBody.password) +20:00:41.251 [XNIO-1 task-1] dPhhkPrGSiKCCGTzB3yE_g DEBUG com.networknt.schema.TypeValidator debug - validate( "12203203-0552-4105-aa2d-731906a485d2", {"password":"91d4f910-4579-4626-ba24-c8d2c0d0750d","newPassword":"12203203-0552-4105-aa2d-731906a485d2","newPasswordConfirm":"12203203-0552-4105-aa2d-731906a485d2"}, requestBody.newPassword) +20:00:41.274 [XNIO-1 task-1] rMT8voXWSMifqpvFw6GviA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9fbbc57e, base path is set to: null +20:00:41.275 [XNIO-1 task-1] rMT8voXWSMifqpvFw6GviA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.275 [XNIO-1 task-1] rMT8voXWSMifqpvFw6GviA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.275 [XNIO-1 task-1] rMT8voXWSMifqpvFw6GviA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9fbbc57e, base path is set to: null +20:00:41.275 [XNIO-1 task-1] rMT8voXWSMifqpvFw6GviA DEBUG com.networknt.schema.TypeValidator debug - validate( "9fbbc57e", "9fbbc57e", userId) +20:00:41.281 [XNIO-1 task-1] Q7EwQP9XTC-QRIyHF2W4bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.281 [XNIO-1 task-1] Q7EwQP9XTC-QRIyHF2W4bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.281 [XNIO-1 task-1] Q7EwQP9XTC-QRIyHF2W4bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.380 [XNIO-1 task-1] OJh_RmfuQf6AEznj3JCCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cfa5254c +20:00:41.380 [XNIO-1 task-1] OJh_RmfuQf6AEznj3JCCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.380 [XNIO-1 task-1] OJh_RmfuQf6AEznj3JCCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:41.380 [XNIO-1 task-1] OJh_RmfuQf6AEznj3JCCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cfa5254c +20:00:41.399 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9fbbc57e, base path is set to: null +20:00:41.400 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.400 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.400 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.400 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9fbbc57e, base path is set to: null +20:00:41.402 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG com.networknt.schema.TypeValidator debug - validate( "9fbbc57e", "9fbbc57e", userId) +20:00:41.402 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"1e9eee1a-1511-46da-b688-321fce2a79fa","newPassword":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPasswordConfirm":"4fbcb85d-819d-4829-ab35-c9c15750a10d"}, {"password":"1e9eee1a-1511-46da-b688-321fce2a79fa","newPassword":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPasswordConfirm":"4fbcb85d-819d-4829-ab35-c9c15750a10d"}, requestBody) +20:00:41.403 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG com.networknt.schema.TypeValidator debug - validate( "4fbcb85d-819d-4829-ab35-c9c15750a10d", {"password":"1e9eee1a-1511-46da-b688-321fce2a79fa","newPassword":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPasswordConfirm":"4fbcb85d-819d-4829-ab35-c9c15750a10d"}, requestBody.newPasswordConfirm) +20:00:41.403 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG com.networknt.schema.TypeValidator debug - validate( "1e9eee1a-1511-46da-b688-321fce2a79fa", {"password":"1e9eee1a-1511-46da-b688-321fce2a79fa","newPassword":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPasswordConfirm":"4fbcb85d-819d-4829-ab35-c9c15750a10d"}, requestBody.password) +20:00:41.403 [XNIO-1 task-1] g-0ilYD0T6CQCYfppB_Omw DEBUG com.networknt.schema.TypeValidator debug - validate( "4fbcb85d-819d-4829-ab35-c9c15750a10d", {"password":"1e9eee1a-1511-46da-b688-321fce2a79fa","newPassword":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPasswordConfirm":"4fbcb85d-819d-4829-ab35-c9c15750a10d"}, requestBody.newPassword) +20:00:41.427 [XNIO-1 task-1] 2e6C97jkSy6P71CEJpbN5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.427 [XNIO-1 task-1] 2e6C97jkSy6P71CEJpbN5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.428 [XNIO-1 task-1] 2e6C97jkSy6P71CEJpbN5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.429 [XNIO-1 task-1] 2e6C97jkSy6P71CEJpbN5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.442 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9fbbc57e, base path is set to: null +20:00:41.442 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.442 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.442 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.443 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/9fbbc57e, base path is set to: null +20:00:41.443 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9fbbc57e", "9fbbc57e", userId) +20:00:41.444 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPassword":"eb10105e-3e42-4645-a88e-04ac7a76ba8e","newPasswordConfirm":"eb10105e-3e42-4645-a88e-04ac7a76ba8e"}, {"password":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPassword":"eb10105e-3e42-4645-a88e-04ac7a76ba8e","newPasswordConfirm":"eb10105e-3e42-4645-a88e-04ac7a76ba8e"}, requestBody) +20:00:41.444 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "eb10105e-3e42-4645-a88e-04ac7a76ba8e", {"password":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPassword":"eb10105e-3e42-4645-a88e-04ac7a76ba8e","newPasswordConfirm":"eb10105e-3e42-4645-a88e-04ac7a76ba8e"}, requestBody.newPasswordConfirm) +20:00:41.445 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4fbcb85d-819d-4829-ab35-c9c15750a10d", {"password":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPassword":"eb10105e-3e42-4645-a88e-04ac7a76ba8e","newPasswordConfirm":"eb10105e-3e42-4645-a88e-04ac7a76ba8e"}, requestBody.password) +20:00:41.445 [XNIO-1 task-1] h0UruMA3S7Cc7LCFbtZk0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "eb10105e-3e42-4645-a88e-04ac7a76ba8e", {"password":"4fbcb85d-819d-4829-ab35-c9c15750a10d","newPassword":"eb10105e-3e42-4645-a88e-04ac7a76ba8e","newPasswordConfirm":"eb10105e-3e42-4645-a88e-04ac7a76ba8e"}, requestBody.newPassword) +20:00:41.477 [XNIO-1 task-1] eCBBMxuCTHiljUbwn2b3yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.477 [XNIO-1 task-1] eCBBMxuCTHiljUbwn2b3yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.477 [XNIO-1 task-1] eCBBMxuCTHiljUbwn2b3yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.478 [XNIO-1 task-1] eCBBMxuCTHiljUbwn2b3yA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:41.497 [XNIO-1 task-1] PinYOWljT5OwfBCuMQGYWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.498 [XNIO-1 task-1] PinYOWljT5OwfBCuMQGYWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.498 [XNIO-1 task-1] PinYOWljT5OwfBCuMQGYWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.599 [XNIO-1 task-1] lfcAxi78Rg6XNU2utzt7Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9d55ff4e, base path is set to: null +20:00:41.599 [XNIO-1 task-1] lfcAxi78Rg6XNU2utzt7Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.599 [XNIO-1 task-1] lfcAxi78Rg6XNU2utzt7Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.599 [XNIO-1 task-1] lfcAxi78Rg6XNU2utzt7Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9d55ff4e, base path is set to: null +20:00:41.600 [XNIO-1 task-1] lfcAxi78Rg6XNU2utzt7Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "9d55ff4e", "9d55ff4e", userId) +20:00:41.622 [XNIO-1 task-1] Ucz98FNISeKnVW2HEH_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b51af011 +20:00:41.622 [XNIO-1 task-1] Ucz98FNISeKnVW2HEH_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.622 [XNIO-1 task-1] Ucz98FNISeKnVW2HEH_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:41.623 [XNIO-1 task-1] Ucz98FNISeKnVW2HEH_Xyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b51af011 +20:00:41.635 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c0e80e3d, base path is set to: null +20:00:41.635 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.635 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.635 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.636 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c0e80e3d, base path is set to: null +20:00:41.636 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0e80e3d", "c0e80e3d", userId) +20:00:41.637 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ac20533f-dee9-49b6-9a43-76ec88242139","newPassword":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPasswordConfirm":"a37b5120-d829-4f50-8fdf-2d039a7b1739"}, {"password":"ac20533f-dee9-49b6-9a43-76ec88242139","newPassword":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPasswordConfirm":"a37b5120-d829-4f50-8fdf-2d039a7b1739"}, requestBody) +20:00:41.637 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "a37b5120-d829-4f50-8fdf-2d039a7b1739", {"password":"ac20533f-dee9-49b6-9a43-76ec88242139","newPassword":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPasswordConfirm":"a37b5120-d829-4f50-8fdf-2d039a7b1739"}, requestBody.newPasswordConfirm) +20:00:41.637 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "ac20533f-dee9-49b6-9a43-76ec88242139", {"password":"ac20533f-dee9-49b6-9a43-76ec88242139","newPassword":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPasswordConfirm":"a37b5120-d829-4f50-8fdf-2d039a7b1739"}, requestBody.password) +20:00:41.637 [XNIO-1 task-1] hHOldrYYRAC5wnW1WT33Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "a37b5120-d829-4f50-8fdf-2d039a7b1739", {"password":"ac20533f-dee9-49b6-9a43-76ec88242139","newPassword":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPasswordConfirm":"a37b5120-d829-4f50-8fdf-2d039a7b1739"}, requestBody.newPassword) +20:00:41.677 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:dcd5e52a-95ca-48e9-a287-6e650c0614b7 +20:00:41.692 [XNIO-1 task-1] ShALf6oXTSSvO0ieYseuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.692 [XNIO-1 task-1] ShALf6oXTSSvO0ieYseuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.692 [XNIO-1 task-1] ShALf6oXTSSvO0ieYseuZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.709 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9f99093f-de07-4b5c-8096-8b2fa9c8cde7 +20:00:41.728 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c0e80e3d, base path is set to: null +20:00:41.728 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.728 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.728 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.729 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c0e80e3d, base path is set to: null +20:00:41.729 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c0e80e3d", "c0e80e3d", userId) +20:00:41.730 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPassword":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPasswordConfirm":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc"}, {"password":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPassword":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPasswordConfirm":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc"}, requestBody) +20:00:41.730 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc", {"password":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPassword":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPasswordConfirm":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc"}, requestBody.newPasswordConfirm) +20:00:41.730 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a37b5120-d829-4f50-8fdf-2d039a7b1739", {"password":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPassword":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPasswordConfirm":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc"}, requestBody.password) +20:00:41.730 [XNIO-1 task-1] 1e9NzpoQSFuGSZLItCMgXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc", {"password":"a37b5120-d829-4f50-8fdf-2d039a7b1739","newPassword":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPasswordConfirm":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc"}, requestBody.newPassword) +20:00:41.785 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c0e80e3d, base path is set to: null +20:00:41.785 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.785 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.785 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.786 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c0e80e3d, base path is set to: null +20:00:41.786 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0e80e3d", "c0e80e3d", userId) +20:00:41.787 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPassword":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45","newPasswordConfirm":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45"}, {"password":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPassword":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45","newPasswordConfirm":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45"}, requestBody) +20:00:41.787 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee8da1e-f0f4-435c-ae19-b0b60bba7d45", {"password":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPassword":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45","newPasswordConfirm":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45"}, requestBody.newPasswordConfirm) +20:00:41.787 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc", {"password":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPassword":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45","newPasswordConfirm":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45"}, requestBody.password) +20:00:41.787 [XNIO-1 task-1] WDIDXgq9ShWxP1YlGilaZg DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee8da1e-f0f4-435c-ae19-b0b60bba7d45", {"password":"e2a6b8ff-e918-4e00-af6a-cb3c2c8bdfbc","newPassword":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45","newPasswordConfirm":"3ee8da1e-f0f4-435c-ae19-b0b60bba7d45"}, requestBody.newPassword) +20:00:41.807 [XNIO-1 task-1] nWV9orpNS0Wuf_3BJ9xmGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c0e80e3d, base path is set to: null +20:00:41.807 [XNIO-1 task-1] nWV9orpNS0Wuf_3BJ9xmGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.807 [XNIO-1 task-1] nWV9orpNS0Wuf_3BJ9xmGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.808 [XNIO-1 task-1] nWV9orpNS0Wuf_3BJ9xmGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c0e80e3d, base path is set to: null +20:00:41.808 [XNIO-1 task-1] nWV9orpNS0Wuf_3BJ9xmGg DEBUG com.networknt.schema.TypeValidator debug - validate( "c0e80e3d", "c0e80e3d", userId) +20:00:41.817 [XNIO-1 task-1] sok8bKtqQTuWbQdqBfcmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.817 [XNIO-1 task-1] sok8bKtqQTuWbQdqBfcmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.818 [XNIO-1 task-1] sok8bKtqQTuWbQdqBfcmqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.818 [XNIO-1 task-1] sok8bKtqQTuWbQdqBfcmqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:41.845 [XNIO-1 task-1] 4iaKRuYETjC17Fs4kb7M9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e64453 +20:00:41.846 [XNIO-1 task-1] 4iaKRuYETjC17Fs4kb7M9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:41.846 [XNIO-1 task-1] 4iaKRuYETjC17Fs4kb7M9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:41.846 [XNIO-1 task-1] 4iaKRuYETjC17Fs4kb7M9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f6e64453 +20:00:41.857 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6f3402a6, base path is set to: null +20:00:41.857 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.858 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.858 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.858 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6f3402a6, base path is set to: null +20:00:41.859 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG com.networknt.schema.TypeValidator debug - validate( "6f3402a6", "6f3402a6", userId) +20:00:41.859 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"fd49625c-c396-4fd7-8ffc-85c1271f4693","newPassword":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPasswordConfirm":"fcccafda-9a8f-4eef-abe9-53de43da0a24"}, {"password":"fd49625c-c396-4fd7-8ffc-85c1271f4693","newPassword":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPasswordConfirm":"fcccafda-9a8f-4eef-abe9-53de43da0a24"}, requestBody) +20:00:41.859 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG com.networknt.schema.TypeValidator debug - validate( "fcccafda-9a8f-4eef-abe9-53de43da0a24", {"password":"fd49625c-c396-4fd7-8ffc-85c1271f4693","newPassword":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPasswordConfirm":"fcccafda-9a8f-4eef-abe9-53de43da0a24"}, requestBody.newPasswordConfirm) +20:00:41.859 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG com.networknt.schema.TypeValidator debug - validate( "fd49625c-c396-4fd7-8ffc-85c1271f4693", {"password":"fd49625c-c396-4fd7-8ffc-85c1271f4693","newPassword":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPasswordConfirm":"fcccafda-9a8f-4eef-abe9-53de43da0a24"}, requestBody.password) +20:00:41.859 [XNIO-1 task-1] f_XANcgvS76vzUORPUoVMw DEBUG com.networknt.schema.TypeValidator debug - validate( "fcccafda-9a8f-4eef-abe9-53de43da0a24", {"password":"fd49625c-c396-4fd7-8ffc-85c1271f4693","newPassword":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPasswordConfirm":"fcccafda-9a8f-4eef-abe9-53de43da0a24"}, requestBody.newPassword) +20:00:41.904 [XNIO-1 task-1] WZPsecgjQ5SBeUGM6PtSzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.904 [XNIO-1 task-1] WZPsecgjQ5SBeUGM6PtSzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.905 [XNIO-1 task-1] WZPsecgjQ5SBeUGM6PtSzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.925 [XNIO-1 task-1] gJdpIKmURwevN2jQVuoH9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.926 [XNIO-1 task-1] gJdpIKmURwevN2jQVuoH9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.926 [XNIO-1 task-1] gJdpIKmURwevN2jQVuoH9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.954 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cc426c78, base path is set to: null +20:00:41.954 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.954 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:41.954 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:41.955 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cc426c78, base path is set to: null +20:00:41.955 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "cc426c78", "cc426c78", userId) +20:00:41.956 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b668e391-c0b1-49cc-beb0-588c18fe8a28","newPassword":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPasswordConfirm":"ea53bd07-892c-44ea-95bb-b5c19bda9409"}, {"password":"b668e391-c0b1-49cc-beb0-588c18fe8a28","newPassword":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPasswordConfirm":"ea53bd07-892c-44ea-95bb-b5c19bda9409"}, requestBody) +20:00:41.956 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea53bd07-892c-44ea-95bb-b5c19bda9409", {"password":"b668e391-c0b1-49cc-beb0-588c18fe8a28","newPassword":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPasswordConfirm":"ea53bd07-892c-44ea-95bb-b5c19bda9409"}, requestBody.newPasswordConfirm) +20:00:41.956 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "b668e391-c0b1-49cc-beb0-588c18fe8a28", {"password":"b668e391-c0b1-49cc-beb0-588c18fe8a28","newPassword":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPasswordConfirm":"ea53bd07-892c-44ea-95bb-b5c19bda9409"}, requestBody.password) +20:00:41.956 [XNIO-1 task-1] hLvffQY3Qn6Y54qskiqZuw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea53bd07-892c-44ea-95bb-b5c19bda9409", {"password":"b668e391-c0b1-49cc-beb0-588c18fe8a28","newPassword":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPasswordConfirm":"ea53bd07-892c-44ea-95bb-b5c19bda9409"}, requestBody.newPassword) +20:00:41.998 [XNIO-1 task-1] BKeAgHfSTaaM5ajEDvkpmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:41.998 [XNIO-1 task-1] BKeAgHfSTaaM5ajEDvkpmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:41.998 [XNIO-1 task-1] BKeAgHfSTaaM5ajEDvkpmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.038 [XNIO-1 task-1] sCUEuEj_Twi-3wUX4OMq4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc426c78, base path is set to: null +20:00:42.038 [XNIO-1 task-1] sCUEuEj_Twi-3wUX4OMq4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.038 [XNIO-1 task-1] sCUEuEj_Twi-3wUX4OMq4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.038 [XNIO-1 task-1] sCUEuEj_Twi-3wUX4OMq4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc426c78, base path is set to: null +20:00:42.039 [XNIO-1 task-1] sCUEuEj_Twi-3wUX4OMq4g DEBUG com.networknt.schema.TypeValidator debug - validate( "cc426c78", "cc426c78", userId) +20:00:42.045 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc426c78 +20:00:42.045 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.045 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.045 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:42.046 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc426c78 +20:00:42.046 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPassword":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPasswordConfirm":"e02c4912-1a9b-477a-8c17-af4ef9717f4a"}, {"password":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPassword":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPasswordConfirm":"e02c4912-1a9b-477a-8c17-af4ef9717f4a"}, requestBody) +20:00:42.046 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPassword":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPasswordConfirm":"e02c4912-1a9b-477a-8c17-af4ef9717f4a"}, {"password":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPassword":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPasswordConfirm":"e02c4912-1a9b-477a-8c17-af4ef9717f4a"}, requestBody) +20:00:42.047 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG com.networknt.schema.FormatValidator debug - validate( "e02c4912-1a9b-477a-8c17-af4ef9717f4a", {"password":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPassword":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPasswordConfirm":"e02c4912-1a9b-477a-8c17-af4ef9717f4a"}, requestBody.newPasswordConfirm) +20:00:42.047 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG com.networknt.schema.FormatValidator debug - validate( "ea53bd07-892c-44ea-95bb-b5c19bda9409", {"password":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPassword":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPasswordConfirm":"e02c4912-1a9b-477a-8c17-af4ef9717f4a"}, requestBody.password) +20:00:42.047 [XNIO-1 task-1] bK9Qu5bvTke1cK8YDBc59A DEBUG com.networknt.schema.FormatValidator debug - validate( "e02c4912-1a9b-477a-8c17-af4ef9717f4a", {"password":"ea53bd07-892c-44ea-95bb-b5c19bda9409","newPassword":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPasswordConfirm":"e02c4912-1a9b-477a-8c17-af4ef9717f4a"}, requestBody.newPassword) +20:00:42.074 [XNIO-1 task-1] rl9-C5pNTdSbk7cEPKBO0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.074 [XNIO-1 task-1] rl9-C5pNTdSbk7cEPKBO0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.075 [XNIO-1 task-1] rl9-C5pNTdSbk7cEPKBO0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.075 [XNIO-1 task-1] rl9-C5pNTdSbk7cEPKBO0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.083 [XNIO-1 task-1] fVM5MXt0QPux4LtKcKgn1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.083 [XNIO-1 task-1] fVM5MXt0QPux4LtKcKgn1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.084 [XNIO-1 task-1] fVM5MXt0QPux4LtKcKgn1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.106 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc426c78 +20:00:42.106 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.106 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.106 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:42.108 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc426c78 +20:00:42.108 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPassword":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPasswordConfirm":"5e83b805-8a07-441d-86ee-9cdbdcfef376"}, {"password":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPassword":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPasswordConfirm":"5e83b805-8a07-441d-86ee-9cdbdcfef376"}, requestBody) +20:00:42.108 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPassword":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPasswordConfirm":"5e83b805-8a07-441d-86ee-9cdbdcfef376"}, {"password":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPassword":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPasswordConfirm":"5e83b805-8a07-441d-86ee-9cdbdcfef376"}, requestBody) +20:00:42.109 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5e83b805-8a07-441d-86ee-9cdbdcfef376", {"password":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPassword":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPasswordConfirm":"5e83b805-8a07-441d-86ee-9cdbdcfef376"}, requestBody.newPasswordConfirm) +20:00:42.109 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e02c4912-1a9b-477a-8c17-af4ef9717f4a", {"password":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPassword":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPasswordConfirm":"5e83b805-8a07-441d-86ee-9cdbdcfef376"}, requestBody.password) +20:00:42.109 [XNIO-1 task-1] bqQFEd2ASYe-vQnmV0jSIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "5e83b805-8a07-441d-86ee-9cdbdcfef376", {"password":"e02c4912-1a9b-477a-8c17-af4ef9717f4a","newPassword":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPasswordConfirm":"5e83b805-8a07-441d-86ee-9cdbdcfef376"}, requestBody.newPassword) +20:00:42.128 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cf6d78af-d182-4d80-af4e-3fc8f1d00b44 +20:00:42.146 [XNIO-1 task-1] I2eYAaZvSgaH8DhAc5otWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc426c78, base path is set to: null +20:00:42.146 [XNIO-1 task-1] I2eYAaZvSgaH8DhAc5otWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.146 [XNIO-1 task-1] I2eYAaZvSgaH8DhAc5otWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.146 [XNIO-1 task-1] I2eYAaZvSgaH8DhAc5otWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc426c78, base path is set to: null +20:00:42.147 [XNIO-1 task-1] I2eYAaZvSgaH8DhAc5otWg DEBUG com.networknt.schema.TypeValidator debug - validate( "cc426c78", "cc426c78", userId) +20:00:42.157 [XNIO-1 task-1] H-dwqRz2SuqbBZGzhPq4xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.157 [XNIO-1 task-1] H-dwqRz2SuqbBZGzhPq4xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.158 [XNIO-1 task-1] H-dwqRz2SuqbBZGzhPq4xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.278 [XNIO-1 task-1] 1tbx4KJ7SrCtl6WHIk1R3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.278 [XNIO-1 task-1] 1tbx4KJ7SrCtl6WHIk1R3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.279 [XNIO-1 task-1] 1tbx4KJ7SrCtl6WHIk1R3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.293 [XNIO-1 task-1] k1IqbdrfRtutHLv5G_2pgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/64762d39 +20:00:42.293 [XNIO-1 task-1] k1IqbdrfRtutHLv5G_2pgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.294 [XNIO-1 task-1] k1IqbdrfRtutHLv5G_2pgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.294 [XNIO-1 task-1] k1IqbdrfRtutHLv5G_2pgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/64762d39 +20:00:42.311 [XNIO-1 task-1] ONeZ1PB-S76HFUVGphQfLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.311 [XNIO-1 task-1] ONeZ1PB-S76HFUVGphQfLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.311 [XNIO-1 task-1] ONeZ1PB-S76HFUVGphQfLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.326 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0f4b472d-eead-4f78-82c3-079d523bdcd0 +20:00:42.351 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0f4b472d-eead-4f78-82c3-079d523bdcd0 +20:00:42.361 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fa47c1a3 +20:00:42.361 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.361 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.361 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:42.362 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fa47c1a3 +20:00:42.362 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f1399225-f36b-4acb-976c-853194307b3b","newPassword":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPasswordConfirm":"885d5172-9035-4e6d-aaf4-f1a81e5cd825"}, {"password":"f1399225-f36b-4acb-976c-853194307b3b","newPassword":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPasswordConfirm":"885d5172-9035-4e6d-aaf4-f1a81e5cd825"}, requestBody) +20:00:42.362 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f1399225-f36b-4acb-976c-853194307b3b","newPassword":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPasswordConfirm":"885d5172-9035-4e6d-aaf4-f1a81e5cd825"}, {"password":"f1399225-f36b-4acb-976c-853194307b3b","newPassword":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPasswordConfirm":"885d5172-9035-4e6d-aaf4-f1a81e5cd825"}, requestBody) +20:00:42.363 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "885d5172-9035-4e6d-aaf4-f1a81e5cd825", {"password":"f1399225-f36b-4acb-976c-853194307b3b","newPassword":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPasswordConfirm":"885d5172-9035-4e6d-aaf4-f1a81e5cd825"}, requestBody.newPasswordConfirm) +20:00:42.363 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "f1399225-f36b-4acb-976c-853194307b3b", {"password":"f1399225-f36b-4acb-976c-853194307b3b","newPassword":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPasswordConfirm":"885d5172-9035-4e6d-aaf4-f1a81e5cd825"}, requestBody.password) +20:00:42.363 [XNIO-1 task-1] 9jHNXCfGT2WbArodU93bbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "885d5172-9035-4e6d-aaf4-f1a81e5cd825", {"password":"f1399225-f36b-4acb-976c-853194307b3b","newPassword":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPasswordConfirm":"885d5172-9035-4e6d-aaf4-f1a81e5cd825"}, requestBody.newPassword) +20:00:42.407 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fa47c1a3 +20:00:42.407 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.408 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.408 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:42.408 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fa47c1a3 +20:00:42.409 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPassword":"34ead36d-f347-4665-b22b-06a73e9047f4","newPasswordConfirm":"34ead36d-f347-4665-b22b-06a73e9047f4"}, {"password":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPassword":"34ead36d-f347-4665-b22b-06a73e9047f4","newPasswordConfirm":"34ead36d-f347-4665-b22b-06a73e9047f4"}, requestBody) +20:00:42.409 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPassword":"34ead36d-f347-4665-b22b-06a73e9047f4","newPasswordConfirm":"34ead36d-f347-4665-b22b-06a73e9047f4"}, {"password":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPassword":"34ead36d-f347-4665-b22b-06a73e9047f4","newPasswordConfirm":"34ead36d-f347-4665-b22b-06a73e9047f4"}, requestBody) +20:00:42.409 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG com.networknt.schema.FormatValidator debug - validate( "34ead36d-f347-4665-b22b-06a73e9047f4", {"password":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPassword":"34ead36d-f347-4665-b22b-06a73e9047f4","newPasswordConfirm":"34ead36d-f347-4665-b22b-06a73e9047f4"}, requestBody.newPasswordConfirm) +20:00:42.409 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG com.networknt.schema.FormatValidator debug - validate( "885d5172-9035-4e6d-aaf4-f1a81e5cd825", {"password":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPassword":"34ead36d-f347-4665-b22b-06a73e9047f4","newPasswordConfirm":"34ead36d-f347-4665-b22b-06a73e9047f4"}, requestBody.password) +20:00:42.409 [XNIO-1 task-1] hAea_sOXT-eSk4gWcR2Z6g DEBUG com.networknt.schema.FormatValidator debug - validate( "34ead36d-f347-4665-b22b-06a73e9047f4", {"password":"885d5172-9035-4e6d-aaf4-f1a81e5cd825","newPassword":"34ead36d-f347-4665-b22b-06a73e9047f4","newPasswordConfirm":"34ead36d-f347-4665-b22b-06a73e9047f4"}, requestBody.newPassword) +20:00:42.437 [XNIO-1 task-1] PxWTYV8RToOmb34q0tM_lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fa47c1a3 +20:00:42.437 [XNIO-1 task-1] PxWTYV8RToOmb34q0tM_lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.437 [XNIO-1 task-1] PxWTYV8RToOmb34q0tM_lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.437 [XNIO-1 task-1] PxWTYV8RToOmb34q0tM_lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fa47c1a3 +20:00:42.447 [XNIO-1 task-1] SYLDHPK1QxezTYVfCDaz0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bfbac436, base path is set to: null +20:00:42.447 [XNIO-1 task-1] SYLDHPK1QxezTYVfCDaz0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.447 [XNIO-1 task-1] SYLDHPK1QxezTYVfCDaz0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.447 [XNIO-1 task-1] SYLDHPK1QxezTYVfCDaz0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bfbac436, base path is set to: null +20:00:42.448 [XNIO-1 task-1] SYLDHPK1QxezTYVfCDaz0A DEBUG com.networknt.schema.TypeValidator debug - validate( "bfbac436", "bfbac436", userId) +20:00:42.454 [XNIO-1 task-1] 0ShhcRO3TYqVJjac2ueetg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.454 [XNIO-1 task-1] 0ShhcRO3TYqVJjac2ueetg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.455 [XNIO-1 task-1] 0ShhcRO3TYqVJjac2ueetg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.455 [XNIO-1 task-1] 0ShhcRO3TYqVJjac2ueetg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.462 [XNIO-1 task-1] mNuorx-tQ7GyMB5qWoAqGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bfbac436 +20:00:42.462 [XNIO-1 task-1] mNuorx-tQ7GyMB5qWoAqGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.462 [XNIO-1 task-1] mNuorx-tQ7GyMB5qWoAqGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.462 [XNIO-1 task-1] mNuorx-tQ7GyMB5qWoAqGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/bfbac436 +20:00:42.480 [XNIO-1 task-1] GtHijAuSQ-uUW4wMnZClHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f62aa97, base path is set to: null +20:00:42.480 [XNIO-1 task-1] GtHijAuSQ-uUW4wMnZClHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.480 [XNIO-1 task-1] GtHijAuSQ-uUW4wMnZClHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.480 [XNIO-1 task-1] GtHijAuSQ-uUW4wMnZClHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4f62aa97, base path is set to: null +20:00:42.480 [XNIO-1 task-1] GtHijAuSQ-uUW4wMnZClHw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f62aa97", "4f62aa97", userId) +20:00:42.491 [XNIO-1 task-1] 6DamSRePSBOfOrobVzeoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.491 [XNIO-1 task-1] 6DamSRePSBOfOrobVzeoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.491 [XNIO-1 task-1] 6DamSRePSBOfOrobVzeoaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.492 [XNIO-1 task-1] 6DamSRePSBOfOrobVzeoaA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:42.497 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:20695699-f4c3-4216-8e40-6783f832f3fc +20:00:42.548 [XNIO-1 task-1] 1_krNh6sSPSC73Uv-wboRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.548 [XNIO-1 task-1] 1_krNh6sSPSC73Uv-wboRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.549 [XNIO-1 task-1] 1_krNh6sSPSC73Uv-wboRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.559 [XNIO-1 task-1] nq4tZGRcQ6exLQpSwIhWGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.559 [XNIO-1 task-1] nq4tZGRcQ6exLQpSwIhWGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.559 [XNIO-1 task-1] nq4tZGRcQ6exLQpSwIhWGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.560 [XNIO-1 task-1] nq4tZGRcQ6exLQpSwIhWGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.568 [XNIO-1 task-1] IhSdagzpRQ6M475EGUoGUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4c6cdfce, base path is set to: null +20:00:42.568 [XNIO-1 task-1] IhSdagzpRQ6M475EGUoGUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.568 [XNIO-1 task-1] IhSdagzpRQ6M475EGUoGUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.568 [XNIO-1 task-1] IhSdagzpRQ6M475EGUoGUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4c6cdfce, base path is set to: null +20:00:42.568 [XNIO-1 task-1] IhSdagzpRQ6M475EGUoGUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c6cdfce", "4c6cdfce", userId) +20:00:42.582 [XNIO-1 task-1] b4RhHedqRIixkavHuuTvNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.582 [XNIO-1 task-1] b4RhHedqRIixkavHuuTvNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.583 [XNIO-1 task-1] b4RhHedqRIixkavHuuTvNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.592 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:38347578 +20:00:42.602 [XNIO-1 task-1] eWsi1KmhTr-WrqclOlDD_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc426c78, base path is set to: null +20:00:42.602 [XNIO-1 task-1] eWsi1KmhTr-WrqclOlDD_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.603 [XNIO-1 task-1] eWsi1KmhTr-WrqclOlDD_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.603 [XNIO-1 task-1] eWsi1KmhTr-WrqclOlDD_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cc426c78, base path is set to: null +20:00:42.603 [XNIO-1 task-1] eWsi1KmhTr-WrqclOlDD_A DEBUG com.networknt.schema.TypeValidator debug - validate( "cc426c78", "cc426c78", userId) +20:00:42.607 [XNIO-1 task-1] 2i8s2WpIRGGIaJcLtTFfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/15b5c916 +20:00:42.607 [XNIO-1 task-1] 2i8s2WpIRGGIaJcLtTFfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.607 [XNIO-1 task-1] 2i8s2WpIRGGIaJcLtTFfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.607 [XNIO-1 task-1] 2i8s2WpIRGGIaJcLtTFfhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/15b5c916 +20:00:42.624 [XNIO-1 task-1] cAtr_L01TrqhNOLQGVq7NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.624 [XNIO-1 task-1] cAtr_L01TrqhNOLQGVq7NA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.624 [XNIO-1 task-1] cAtr_L01TrqhNOLQGVq7NA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.642 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cc426c78, base path is set to: null +20:00:42.642 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.642 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.642 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:42.643 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cc426c78, base path is set to: null +20:00:42.643 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG com.networknt.schema.TypeValidator debug - validate( "cc426c78", "cc426c78", userId) +20:00:42.644 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPassword":"e6de1143-0ca8-4a65-99de-4b683673637d","newPasswordConfirm":"e6de1143-0ca8-4a65-99de-4b683673637d"}, {"password":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPassword":"e6de1143-0ca8-4a65-99de-4b683673637d","newPasswordConfirm":"e6de1143-0ca8-4a65-99de-4b683673637d"}, requestBody) +20:00:42.644 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6de1143-0ca8-4a65-99de-4b683673637d", {"password":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPassword":"e6de1143-0ca8-4a65-99de-4b683673637d","newPasswordConfirm":"e6de1143-0ca8-4a65-99de-4b683673637d"}, requestBody.newPasswordConfirm) +20:00:42.645 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG com.networknt.schema.TypeValidator debug - validate( "5e83b805-8a07-441d-86ee-9cdbdcfef376", {"password":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPassword":"e6de1143-0ca8-4a65-99de-4b683673637d","newPasswordConfirm":"e6de1143-0ca8-4a65-99de-4b683673637d"}, requestBody.password) +20:00:42.645 [XNIO-1 task-1] -bJX2wtnRDSLd6Jt6UokQw DEBUG com.networknt.schema.TypeValidator debug - validate( "e6de1143-0ca8-4a65-99de-4b683673637d", {"password":"5e83b805-8a07-441d-86ee-9cdbdcfef376","newPassword":"e6de1143-0ca8-4a65-99de-4b683673637d","newPasswordConfirm":"e6de1143-0ca8-4a65-99de-4b683673637d"}, requestBody.newPassword) +20:00:42.665 [XNIO-1 task-1] Mplj43pXTdOYEYK5ZrTj6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.665 [XNIO-1 task-1] Mplj43pXTdOYEYK5ZrTj6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.666 [XNIO-1 task-1] Mplj43pXTdOYEYK5ZrTj6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.686 [XNIO-1 task-1] Rt2lrrtzQke1O8IDf8A_xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.687 [XNIO-1 task-1] Rt2lrrtzQke1O8IDf8A_xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.687 [XNIO-1 task-1] Rt2lrrtzQke1O8IDf8A_xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.688 [XNIO-1 task-1] Rt2lrrtzQke1O8IDf8A_xA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:42.712 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0cd40818 +20:00:42.713 [XNIO-1 task-1] OGvYz3ItSrOhxDBHQrx9YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.713 [XNIO-1 task-1] OGvYz3ItSrOhxDBHQrx9YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.714 [XNIO-1 task-1] OGvYz3ItSrOhxDBHQrx9YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.715 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0cd40818 +20:00:42.729 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc426c78 +20:00:42.730 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.730 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.730 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:42.731 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cc426c78 +20:00:42.731 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e6de1143-0ca8-4a65-99de-4b683673637d","newPassword":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26","newPasswordConfirm":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26"}, {"password":"e6de1143-0ca8-4a65-99de-4b683673637d","newPassword":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26","newPasswordConfirm":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26"}, requestBody) +20:00:42.733 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e6de1143-0ca8-4a65-99de-4b683673637d","newPassword":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26","newPasswordConfirm":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26"}, {"password":"e6de1143-0ca8-4a65-99de-4b683673637d","newPassword":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26","newPasswordConfirm":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26"}, requestBody) +20:00:42.733 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "7208ed9e-2b5a-4917-b8b8-5c184b7efd26", {"password":"e6de1143-0ca8-4a65-99de-4b683673637d","newPassword":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26","newPasswordConfirm":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26"}, requestBody.newPasswordConfirm) +20:00:42.733 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "e6de1143-0ca8-4a65-99de-4b683673637d", {"password":"e6de1143-0ca8-4a65-99de-4b683673637d","newPassword":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26","newPasswordConfirm":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26"}, requestBody.password) +20:00:42.733 [XNIO-1 task-1] u_Y5IxupTgWXkVr_kloFHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "7208ed9e-2b5a-4917-b8b8-5c184b7efd26", {"password":"e6de1143-0ca8-4a65-99de-4b683673637d","newPassword":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26","newPasswordConfirm":"7208ed9e-2b5a-4917-b8b8-5c184b7efd26"}, requestBody.newPassword) +20:00:42.760 [XNIO-1 task-1] Z_mnhlAFQMeii0thYoGg5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.760 [XNIO-1 task-1] Z_mnhlAFQMeii0thYoGg5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.760 [XNIO-1 task-1] Z_mnhlAFQMeii0thYoGg5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.803 [XNIO-1 task-1] reE9ZkfTS9aPfRaNTnxD1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.804 [XNIO-1 task-1] reE9ZkfTS9aPfRaNTnxD1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.804 [XNIO-1 task-1] reE9ZkfTS9aPfRaNTnxD1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:42.837 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bb56c3c2-4c65-4a7e-9dc3-47ea59f6c734 +20:00:42.857 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b7ccface-d154-4cfa-a5bf-4fc40cef31c7 +20:00:42.866 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/38347578, base path is set to: null +20:00:42.866 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:42.866 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:42.867 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:42.871 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/38347578, base path is set to: null +20:00:42.880 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG com.networknt.schema.TypeValidator debug - validate( "38347578", "38347578", userId) +20:00:42.880 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f1f2181d-bd43-4f85-a8b6-f741ec3029eb","newPassword":"60003b01-3ded-46b8-827e-090bda441ed8","newPasswordConfirm":"60003b01-3ded-46b8-827e-090bda441ed8"}, {"password":"f1f2181d-bd43-4f85-a8b6-f741ec3029eb","newPassword":"60003b01-3ded-46b8-827e-090bda441ed8","newPasswordConfirm":"60003b01-3ded-46b8-827e-090bda441ed8"}, requestBody) +20:00:42.880 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG com.networknt.schema.TypeValidator debug - validate( "60003b01-3ded-46b8-827e-090bda441ed8", {"password":"f1f2181d-bd43-4f85-a8b6-f741ec3029eb","newPassword":"60003b01-3ded-46b8-827e-090bda441ed8","newPasswordConfirm":"60003b01-3ded-46b8-827e-090bda441ed8"}, requestBody.newPasswordConfirm) +20:00:42.880 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG com.networknt.schema.TypeValidator debug - validate( "f1f2181d-bd43-4f85-a8b6-f741ec3029eb", {"password":"f1f2181d-bd43-4f85-a8b6-f741ec3029eb","newPassword":"60003b01-3ded-46b8-827e-090bda441ed8","newPasswordConfirm":"60003b01-3ded-46b8-827e-090bda441ed8"}, requestBody.password) +20:00:42.880 [XNIO-1 task-1] 7By_nowTSwa6urzOYQQoRg DEBUG com.networknt.schema.TypeValidator debug - validate( "60003b01-3ded-46b8-827e-090bda441ed8", {"password":"f1f2181d-bd43-4f85-a8b6-f741ec3029eb","newPassword":"60003b01-3ded-46b8-827e-090bda441ed8","newPasswordConfirm":"60003b01-3ded-46b8-827e-090bda441ed8"}, requestBody.newPassword) +20:00:42.885 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:20695699-f4c3-4216-8e40-6783f832f3fc +20:00:42.892 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:38347578 +20:00:42.901 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a823bf80 +20:00:42.902 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.902 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.902 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:42.902 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a823bf80 +20:00:42.903 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c2eb73df-bdc2-4b52-96a6-398dfe2609c0","newPassword":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPasswordConfirm":"6aac9e53-b8eb-47e6-97cd-dd222e76857a"}, {"password":"c2eb73df-bdc2-4b52-96a6-398dfe2609c0","newPassword":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPasswordConfirm":"6aac9e53-b8eb-47e6-97cd-dd222e76857a"}, requestBody) +20:00:42.903 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c2eb73df-bdc2-4b52-96a6-398dfe2609c0","newPassword":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPasswordConfirm":"6aac9e53-b8eb-47e6-97cd-dd222e76857a"}, {"password":"c2eb73df-bdc2-4b52-96a6-398dfe2609c0","newPassword":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPasswordConfirm":"6aac9e53-b8eb-47e6-97cd-dd222e76857a"}, requestBody) +20:00:42.903 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG com.networknt.schema.FormatValidator debug - validate( "6aac9e53-b8eb-47e6-97cd-dd222e76857a", {"password":"c2eb73df-bdc2-4b52-96a6-398dfe2609c0","newPassword":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPasswordConfirm":"6aac9e53-b8eb-47e6-97cd-dd222e76857a"}, requestBody.newPasswordConfirm) +20:00:42.903 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG com.networknt.schema.FormatValidator debug - validate( "c2eb73df-bdc2-4b52-96a6-398dfe2609c0", {"password":"c2eb73df-bdc2-4b52-96a6-398dfe2609c0","newPassword":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPasswordConfirm":"6aac9e53-b8eb-47e6-97cd-dd222e76857a"}, requestBody.password) +20:00:42.903 [XNIO-1 task-1] fHWnZdyoRi6Qv65NtVZ3-w DEBUG com.networknt.schema.FormatValidator debug - validate( "6aac9e53-b8eb-47e6-97cd-dd222e76857a", {"password":"c2eb73df-bdc2-4b52-96a6-398dfe2609c0","newPassword":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPasswordConfirm":"6aac9e53-b8eb-47e6-97cd-dd222e76857a"}, requestBody.newPassword) +20:00:42.921 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b548fe95-9484-40b9-a8b9-9d2198921e7c +20:00:42.922 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b548fe95-9484-40b9-a8b9-9d2198921e7c +20:00:42.925 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6f3402a6 +20:00:42.925 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.925 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.925 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:42.926 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6f3402a6 +20:00:42.926 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPassword":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e","newPasswordConfirm":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e"}, {"password":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPassword":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e","newPasswordConfirm":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e"}, requestBody) +20:00:42.926 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPassword":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e","newPasswordConfirm":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e"}, {"password":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPassword":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e","newPasswordConfirm":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e"}, requestBody) +20:00:42.927 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "47dabe2f-ffb4-461b-90b8-ff65b33bfb5e", {"password":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPassword":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e","newPasswordConfirm":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e"}, requestBody.newPasswordConfirm) +20:00:42.927 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "fcccafda-9a8f-4eef-abe9-53de43da0a24", {"password":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPassword":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e","newPasswordConfirm":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e"}, requestBody.password) +20:00:42.927 [XNIO-1 task-1] 9FKiHqRGQEePWri_M3mdpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "47dabe2f-ffb4-461b-90b8-ff65b33bfb5e", {"password":"fcccafda-9a8f-4eef-abe9-53de43da0a24","newPassword":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e","newPasswordConfirm":"47dabe2f-ffb4-461b-90b8-ff65b33bfb5e"}, requestBody.newPassword) +20:00:42.952 [XNIO-1 task-1] csEEllRPTCOaH6iR0R6OoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/68608014 +20:00:42.952 [XNIO-1 task-1] csEEllRPTCOaH6iR0R6OoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.952 [XNIO-1 task-1] csEEllRPTCOaH6iR0R6OoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.953 [XNIO-1 task-1] csEEllRPTCOaH6iR0R6OoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/68608014 +20:00:42.955 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b548fe95-9484-40b9-a8b9-9d2198921e7c +20:00:42.965 [XNIO-1 task-1] M400_7OtTb68sSh-lWu16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.965 [XNIO-1 task-1] M400_7OtTb68sSh-lWu16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.966 [XNIO-1 task-1] M400_7OtTb68sSh-lWu16g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.967 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:38347578 +20:00:42.990 [XNIO-1 task-1] V0ZLCQEsTbK8Wv4EVy_jbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f3402a6 +20:00:42.990 [XNIO-1 task-1] V0ZLCQEsTbK8Wv4EVy_jbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:42.990 [XNIO-1 task-1] V0ZLCQEsTbK8Wv4EVy_jbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:42.990 [XNIO-1 task-1] V0ZLCQEsTbK8Wv4EVy_jbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f3402a6 +20:00:43.008 [XNIO-1 task-1] vIe2PSmwTwObSQfAyoJmYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a823bf80, base path is set to: null +20:00:43.008 [XNIO-1 task-1] vIe2PSmwTwObSQfAyoJmYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.008 [XNIO-1 task-1] vIe2PSmwTwObSQfAyoJmYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.009 [XNIO-1 task-1] vIe2PSmwTwObSQfAyoJmYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a823bf80, base path is set to: null +20:00:43.009 [XNIO-1 task-1] vIe2PSmwTwObSQfAyoJmYA DEBUG com.networknt.schema.TypeValidator debug - validate( "a823bf80", "a823bf80", userId) +20:00:43.015 [XNIO-1 task-1] 5loJ7GEKRkmg4Lh3O8Wg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a823bf80 +20:00:43.015 [XNIO-1 task-1] 5loJ7GEKRkmg4Lh3O8Wg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.016 [XNIO-1 task-1] 5loJ7GEKRkmg4Lh3O8Wg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.016 [XNIO-1 task-1] 5loJ7GEKRkmg4Lh3O8Wg1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a823bf80 +20:00:43.021 [XNIO-1 task-1] Xi4QP3J6S2u62px3XQligw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.021 [XNIO-1 task-1] Xi4QP3J6S2u62px3XQligw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.022 [XNIO-1 task-1] Xi4QP3J6S2u62px3XQligw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.041 [XNIO-1 task-1] OcoMIvhYT-2QpzXJvSCvGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/38347578, base path is set to: null +20:00:43.041 [XNIO-1 task-1] OcoMIvhYT-2QpzXJvSCvGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.041 [XNIO-1 task-1] OcoMIvhYT-2QpzXJvSCvGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.041 [XNIO-1 task-1] OcoMIvhYT-2QpzXJvSCvGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/38347578, base path is set to: null +20:00:43.041 [XNIO-1 task-1] OcoMIvhYT-2QpzXJvSCvGA DEBUG com.networknt.schema.TypeValidator debug - validate( "38347578", "38347578", userId) +20:00:43.045 [XNIO-1 task-1] UiMyO4joR_GVcVLKNwxlVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.046 [XNIO-1 task-1] UiMyO4joR_GVcVLKNwxlVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.046 [XNIO-1 task-1] UiMyO4joR_GVcVLKNwxlVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.048 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0cd40818 +20:00:43.065 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf04d2dd +20:00:43.065 [XNIO-1 task-1] 7cVnYaofTAWghLmbH9-jog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.065 [XNIO-1 task-1] 7cVnYaofTAWghLmbH9-jog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.066 [XNIO-1 task-1] 7cVnYaofTAWghLmbH9-jog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b7244515, base path is set to: null +20:00:43.066 [XNIO-1 task-1] 7cVnYaofTAWghLmbH9-jog DEBUG com.networknt.schema.TypeValidator debug - validate( "b7244515", "b7244515", userId) +20:00:43.067 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bf04d2dd +20:00:43.076 [XNIO-1 task-1] Ry1mcqt3QsWIZnoOscAn2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.076 [XNIO-1 task-1] Ry1mcqt3QsWIZnoOscAn2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.077 [XNIO-1 task-1] Ry1mcqt3QsWIZnoOscAn2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.101 [XNIO-1 task-1] YV4kbzi4Q-GMKAsONZo43g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/38347578 +20:00:43.101 [XNIO-1 task-1] YV4kbzi4Q-GMKAsONZo43g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.101 [XNIO-1 task-1] YV4kbzi4Q-GMKAsONZo43g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.101 [XNIO-1 task-1] YV4kbzi4Q-GMKAsONZo43g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/38347578 +20:00:43.102 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:38347578 +20:00:43.110 [XNIO-1 task-1] WC9whSPwSnC0dnhVgKcSxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.110 [XNIO-1 task-1] WC9whSPwSnC0dnhVgKcSxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.111 [XNIO-1 task-1] WC9whSPwSnC0dnhVgKcSxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.128 [XNIO-1 task-1] S2uLtvvvQqKzvmOvBbOl9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b7244515 +20:00:43.129 [XNIO-1 task-1] S2uLtvvvQqKzvmOvBbOl9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.129 [XNIO-1 task-1] S2uLtvvvQqKzvmOvBbOl9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.130 [XNIO-1 task-1] S2uLtvvvQqKzvmOvBbOl9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b7244515 +20:00:43.145 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d33e046, base path is set to: null +20:00:43.146 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.146 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.146 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:43.146 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d33e046, base path is set to: null +20:00:43.147 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8d33e046", "8d33e046", userId) +20:00:43.147 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"59023334-21d3-4499-87f5-5321457b4853","newPassword":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPasswordConfirm":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3"}, {"password":"59023334-21d3-4499-87f5-5321457b4853","newPassword":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPasswordConfirm":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3"}, requestBody) +20:00:43.147 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9f3e5330-e1d4-4e0e-ba64-1548126e24c3", {"password":"59023334-21d3-4499-87f5-5321457b4853","newPassword":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPasswordConfirm":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3"}, requestBody.newPasswordConfirm) +20:00:43.148 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "59023334-21d3-4499-87f5-5321457b4853", {"password":"59023334-21d3-4499-87f5-5321457b4853","newPassword":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPasswordConfirm":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3"}, requestBody.password) +20:00:43.148 [XNIO-1 task-1] XgNfhnhzQKG0bn4ueL6fvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9f3e5330-e1d4-4e0e-ba64-1548126e24c3", {"password":"59023334-21d3-4499-87f5-5321457b4853","newPassword":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPasswordConfirm":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3"}, requestBody.newPassword) +20:00:43.176 [XNIO-1 task-1] Shw-Twv9Sq-v0QAiVvE8lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.176 [XNIO-1 task-1] Shw-Twv9Sq-v0QAiVvE8lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.176 [XNIO-1 task-1] Shw-Twv9Sq-v0QAiVvE8lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.189 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:74e68ecc +20:00:43.190 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:74e68ecc +20:00:43.202 [XNIO-1 task-1] lNCXctpFQIKRG9ThpOGZ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/42703ce5 +20:00:43.202 [XNIO-1 task-1] lNCXctpFQIKRG9ThpOGZ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.202 [XNIO-1 task-1] lNCXctpFQIKRG9ThpOGZ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.202 [XNIO-1 task-1] lNCXctpFQIKRG9ThpOGZ8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/42703ce5 +20:00:43.212 [XNIO-1 task-1] m_zxILxGTCKMFqnPX74cdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.212 [XNIO-1 task-1] m_zxILxGTCKMFqnPX74cdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.213 [XNIO-1 task-1] m_zxILxGTCKMFqnPX74cdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.236 [XNIO-1 task-1] 9g-JIQYuT--A0H-e8NxDPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/42703ce5, base path is set to: null +20:00:43.253 [XNIO-1 task-1] 9g-JIQYuT--A0H-e8NxDPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/42703ce5 +20:00:43.253 [XNIO-1 task-1] 9g-JIQYuT--A0H-e8NxDPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.253 [XNIO-1 task-1] 9g-JIQYuT--A0H-e8NxDPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.254 [XNIO-1 task-1] 9g-JIQYuT--A0H-e8NxDPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/42703ce5 +20:00:43.254 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:bf04d2dd +20:00:43.267 [XNIO-1 task-1] uk-f_XI0T1i85D3rxwspyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f74db908 +20:00:43.267 [XNIO-1 task-1] uk-f_XI0T1i85D3rxwspyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.267 [XNIO-1 task-1] uk-f_XI0T1i85D3rxwspyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.267 [XNIO-1 task-1] uk-f_XI0T1i85D3rxwspyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f74db908 +20:00:43.271 [XNIO-1 task-1] 8U1g9ZGSTwyUniJOv8XYkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.271 [XNIO-1 task-1] 8U1g9ZGSTwyUniJOv8XYkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.272 [XNIO-1 task-1] 8U1g9ZGSTwyUniJOv8XYkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.311 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:74e68ecc +20:00:43.313 [XNIO-1 task-1] HUxhPoj-RfyyETJ_DmIXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.313 [XNIO-1 task-1] HUxhPoj-RfyyETJ_DmIXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.313 [XNIO-1 task-1] HUxhPoj-RfyyETJ_DmIXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.337 [XNIO-1 task-1] rQ8JF0aLSkGVWj-OAQumdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.337 [XNIO-1 task-1] rQ8JF0aLSkGVWj-OAQumdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.338 [XNIO-1 task-1] rQ8JF0aLSkGVWj-OAQumdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.354 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fca7b105 +20:00:43.360 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:110dd66e +20:00:43.400 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fca7b105 +20:00:43.482 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:18c06157-6e4b-406f-8fa5-78d5180e4cbd +20:00:43.500 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f74db908, base path is set to: null +20:00:43.500 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.500 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.500 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:43.501 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f74db908, base path is set to: null +20:00:43.501 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG com.networknt.schema.TypeValidator debug - validate( "f74db908", "f74db908", userId) +20:00:43.502 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7deed272-2dcb-4211-9f40-12830a0fd901","newPassword":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPasswordConfirm":"5dee8881-cd50-4b6c-b89b-8f6430ae3063"}, {"password":"7deed272-2dcb-4211-9f40-12830a0fd901","newPassword":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPasswordConfirm":"5dee8881-cd50-4b6c-b89b-8f6430ae3063"}, requestBody) +20:00:43.502 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG com.networknt.schema.TypeValidator debug - validate( "5dee8881-cd50-4b6c-b89b-8f6430ae3063", {"password":"7deed272-2dcb-4211-9f40-12830a0fd901","newPassword":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPasswordConfirm":"5dee8881-cd50-4b6c-b89b-8f6430ae3063"}, requestBody.newPasswordConfirm) +20:00:43.502 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG com.networknt.schema.TypeValidator debug - validate( "7deed272-2dcb-4211-9f40-12830a0fd901", {"password":"7deed272-2dcb-4211-9f40-12830a0fd901","newPassword":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPasswordConfirm":"5dee8881-cd50-4b6c-b89b-8f6430ae3063"}, requestBody.password) +20:00:43.502 [XNIO-1 task-1] 5qO6yozvQUu7ZNF4XXXjzg DEBUG com.networknt.schema.TypeValidator debug - validate( "5dee8881-cd50-4b6c-b89b-8f6430ae3063", {"password":"7deed272-2dcb-4211-9f40-12830a0fd901","newPassword":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPasswordConfirm":"5dee8881-cd50-4b6c-b89b-8f6430ae3063"}, requestBody.newPassword) +20:00:43.512 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fca7b105 +20:00:43.514 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:18c06157-6e4b-406f-8fa5-78d5180e4cbd +20:00:43.534 [XNIO-1 task-1] cA1ZsmZeQk23RpCVim9lGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.534 [XNIO-1 task-1] cA1ZsmZeQk23RpCVim9lGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.535 [XNIO-1 task-1] cA1ZsmZeQk23RpCVim9lGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.549 [XNIO-1 task-1] EFutjjfZSmeANISLx0RhDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.549 [XNIO-1 task-1] EFutjjfZSmeANISLx0RhDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.550 [XNIO-1 task-1] EFutjjfZSmeANISLx0RhDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.582 [XNIO-1 task-1] 4C0GznoIQfakIhXv-fQ_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c9585e47 +20:00:43.582 [XNIO-1 task-1] 4C0GznoIQfakIhXv-fQ_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.582 [XNIO-1 task-1] 4C0GznoIQfakIhXv-fQ_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.582 [XNIO-1 task-1] 4C0GznoIQfakIhXv-fQ_uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c9585e47 +20:00:43.603 [XNIO-1 task-1] hnCMBZMbTMSnA91ngWpHfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/63ce6f07, base path is set to: null +20:00:43.629 [XNIO-1 task-1] hnCMBZMbTMSnA91ngWpHfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.629 [XNIO-1 task-1] hnCMBZMbTMSnA91ngWpHfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.629 [XNIO-1 task-1] hnCMBZMbTMSnA91ngWpHfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/63ce6f07, base path is set to: null +20:00:43.630 [XNIO-1 task-1] hnCMBZMbTMSnA91ngWpHfg DEBUG com.networknt.schema.TypeValidator debug - validate( "63ce6f07", "63ce6f07", userId) +20:00:43.642 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:45a25d13-20cd-42d8-a2b3-62d2a058a59c +20:00:43.643 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fca7b105 +20:00:43.646 [XNIO-1 task-1] H7S6gyo7R4ad7248whZOcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9fbbc57e, base path is set to: null +20:00:43.647 [XNIO-1 task-1] H7S6gyo7R4ad7248whZOcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.647 [XNIO-1 task-1] H7S6gyo7R4ad7248whZOcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.648 [XNIO-1 task-1] H7S6gyo7R4ad7248whZOcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9fbbc57e, base path is set to: null +20:00:43.648 [XNIO-1 task-1] H7S6gyo7R4ad7248whZOcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9fbbc57e", "9fbbc57e", userId) +20:00:43.660 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8d33e046 +20:00:43.660 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.660 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.660 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:43.661 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8d33e046 +20:00:43.662 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPassword":"12513780-7fac-4125-85f1-439a5481ac0e","newPasswordConfirm":"12513780-7fac-4125-85f1-439a5481ac0e"}, {"password":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPassword":"12513780-7fac-4125-85f1-439a5481ac0e","newPasswordConfirm":"12513780-7fac-4125-85f1-439a5481ac0e"}, requestBody) +20:00:43.662 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPassword":"12513780-7fac-4125-85f1-439a5481ac0e","newPasswordConfirm":"12513780-7fac-4125-85f1-439a5481ac0e"}, {"password":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPassword":"12513780-7fac-4125-85f1-439a5481ac0e","newPasswordConfirm":"12513780-7fac-4125-85f1-439a5481ac0e"}, requestBody) +20:00:43.663 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG com.networknt.schema.FormatValidator debug - validate( "12513780-7fac-4125-85f1-439a5481ac0e", {"password":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPassword":"12513780-7fac-4125-85f1-439a5481ac0e","newPasswordConfirm":"12513780-7fac-4125-85f1-439a5481ac0e"}, requestBody.newPasswordConfirm) +20:00:43.663 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG com.networknt.schema.FormatValidator debug - validate( "9f3e5330-e1d4-4e0e-ba64-1548126e24c3", {"password":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPassword":"12513780-7fac-4125-85f1-439a5481ac0e","newPasswordConfirm":"12513780-7fac-4125-85f1-439a5481ac0e"}, requestBody.password) +20:00:43.663 [XNIO-1 task-1] hUw-vbHmSlevGO73SziL8g DEBUG com.networknt.schema.FormatValidator debug - validate( "12513780-7fac-4125-85f1-439a5481ac0e", {"password":"9f3e5330-e1d4-4e0e-ba64-1548126e24c3","newPassword":"12513780-7fac-4125-85f1-439a5481ac0e","newPasswordConfirm":"12513780-7fac-4125-85f1-439a5481ac0e"}, requestBody.newPassword) +20:00:43.691 [XNIO-1 task-1] 7K7y2aimSMS2PvgOaQzKSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.691 [XNIO-1 task-1] 7K7y2aimSMS2PvgOaQzKSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.692 [XNIO-1 task-1] 7K7y2aimSMS2PvgOaQzKSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.692 [XNIO-1 task-1] 7K7y2aimSMS2PvgOaQzKSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:43.703 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8d33e046 +20:00:43.703 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.703 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.703 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:43.704 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8d33e046 +20:00:43.704 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"12513780-7fac-4125-85f1-439a5481ac0e","newPassword":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPasswordConfirm":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df"}, {"password":"12513780-7fac-4125-85f1-439a5481ac0e","newPassword":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPasswordConfirm":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df"}, requestBody) +20:00:43.704 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"12513780-7fac-4125-85f1-439a5481ac0e","newPassword":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPasswordConfirm":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df"}, {"password":"12513780-7fac-4125-85f1-439a5481ac0e","newPassword":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPasswordConfirm":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df"}, requestBody) +20:00:43.704 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "02ae80fe-acfd-4d2d-a5a0-d026b0b135df", {"password":"12513780-7fac-4125-85f1-439a5481ac0e","newPassword":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPasswordConfirm":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df"}, requestBody.newPasswordConfirm) +20:00:43.704 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "12513780-7fac-4125-85f1-439a5481ac0e", {"password":"12513780-7fac-4125-85f1-439a5481ac0e","newPassword":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPasswordConfirm":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df"}, requestBody.password) +20:00:43.704 [XNIO-1 task-1] OsRiYSPkSgqYH00vz_YxRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "02ae80fe-acfd-4d2d-a5a0-d026b0b135df", {"password":"12513780-7fac-4125-85f1-439a5481ac0e","newPassword":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPasswordConfirm":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df"}, requestBody.newPassword) +20:00:43.730 [XNIO-1 task-1] sHcWuscsQaOf5MuLEDOjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cc426c78 +20:00:43.730 [XNIO-1 task-1] sHcWuscsQaOf5MuLEDOjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.730 [XNIO-1 task-1] sHcWuscsQaOf5MuLEDOjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.730 [XNIO-1 task-1] sHcWuscsQaOf5MuLEDOjvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cc426c78 +20:00:43.745 [XNIO-1 task-1] 6NZNgoN6RIGCDNNMgiIGsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.745 [XNIO-1 task-1] 6NZNgoN6RIGCDNNMgiIGsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.746 [XNIO-1 task-1] 6NZNgoN6RIGCDNNMgiIGsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.806 [XNIO-1 task-1] 5IVZ0TEoQPeOTMHPv0bQcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f74db908, base path is set to: null +20:00:43.807 [XNIO-1 task-1] 5IVZ0TEoQPeOTMHPv0bQcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.807 [XNIO-1 task-1] 5IVZ0TEoQPeOTMHPv0bQcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.807 [XNIO-1 task-1] 5IVZ0TEoQPeOTMHPv0bQcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f74db908, base path is set to: null +20:00:43.807 [XNIO-1 task-1] 5IVZ0TEoQPeOTMHPv0bQcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f74db908", "f74db908", userId) +20:00:43.815 [XNIO-1 task-1] ydCf1i-zQ_m1XLTLBKD2iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.815 [XNIO-1 task-1] ydCf1i-zQ_m1XLTLBKD2iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.815 [XNIO-1 task-1] ydCf1i-zQ_m1XLTLBKD2iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.832 [XNIO-1 task-1] oUkpVW6lQS6XBV6t1rag_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.832 [XNIO-1 task-1] oUkpVW6lQS6XBV6t1rag_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.833 [XNIO-1 task-1] oUkpVW6lQS6XBV6t1rag_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.882 [XNIO-1 task-1] V0pezkyHQQqhJhEQ1dG6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.882 [XNIO-1 task-1] V0pezkyHQQqhJhEQ1dG6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.883 [XNIO-1 task-1] V0pezkyHQQqhJhEQ1dG6Vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.933 [XNIO-1 task-1] 8174oE5YT4Kt8okfcq43Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.933 [XNIO-1 task-1] 8174oE5YT4Kt8okfcq43Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.934 [XNIO-1 task-1] 8174oE5YT4Kt8okfcq43Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.969 [XNIO-1 task-1] iSVyk9GxQ6abeWXwI39Mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/110dd66e +20:00:43.969 [XNIO-1 task-1] iSVyk9GxQ6abeWXwI39Mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:43.969 [XNIO-1 task-1] iSVyk9GxQ6abeWXwI39Mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:43.969 [XNIO-1 task-1] iSVyk9GxQ6abeWXwI39Mvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/110dd66e +20:00:43.975 [XNIO-1 task-1] V7K8gxXlTcuSgngSkAKHDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.975 [XNIO-1 task-1] V7K8gxXlTcuSgngSkAKHDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.975 [XNIO-1 task-1] V7K8gxXlTcuSgngSkAKHDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:43.976 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:110dd66e +20:00:43.986 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2eb21053, base path is set to: null +20:00:43.987 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:43.987 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:43.987 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:43.987 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/2eb21053, base path is set to: null +20:00:43.988 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG com.networknt.schema.TypeValidator debug - validate( "2eb21053", "2eb21053", userId) +20:00:43.988 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"53a72466-8fba-4728-bf14-45b74becfc26","newPassword":"9a740042-3713-4fa6-a153-6f2582c7dc61","newPasswordConfirm":"9a740042-3713-4fa6-a153-6f2582c7dc61"}, {"password":"53a72466-8fba-4728-bf14-45b74becfc26","newPassword":"9a740042-3713-4fa6-a153-6f2582c7dc61","newPasswordConfirm":"9a740042-3713-4fa6-a153-6f2582c7dc61"}, requestBody) +20:00:43.988 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG com.networknt.schema.TypeValidator debug - validate( "9a740042-3713-4fa6-a153-6f2582c7dc61", {"password":"53a72466-8fba-4728-bf14-45b74becfc26","newPassword":"9a740042-3713-4fa6-a153-6f2582c7dc61","newPasswordConfirm":"9a740042-3713-4fa6-a153-6f2582c7dc61"}, requestBody.newPasswordConfirm) +20:00:43.988 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG com.networknt.schema.TypeValidator debug - validate( "53a72466-8fba-4728-bf14-45b74becfc26", {"password":"53a72466-8fba-4728-bf14-45b74becfc26","newPassword":"9a740042-3713-4fa6-a153-6f2582c7dc61","newPasswordConfirm":"9a740042-3713-4fa6-a153-6f2582c7dc61"}, requestBody.password) +20:00:43.989 [XNIO-1 task-1] UnN7LfHkRMOJyFcE7ZbwPg DEBUG com.networknt.schema.TypeValidator debug - validate( "9a740042-3713-4fa6-a153-6f2582c7dc61", {"password":"53a72466-8fba-4728-bf14-45b74becfc26","newPassword":"9a740042-3713-4fa6-a153-6f2582c7dc61","newPasswordConfirm":"9a740042-3713-4fa6-a153-6f2582c7dc61"}, requestBody.newPassword) +20:00:44.015 [XNIO-1 task-1] ES4zqmOdTliUajraG1KXCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.015 [XNIO-1 task-1] ES4zqmOdTliUajraG1KXCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.016 [XNIO-1 task-1] ES4zqmOdTliUajraG1KXCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.045 [XNIO-1 task-1] w1EpjcHrR4OsiA5smm8Mkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2eb21053, base path is set to: null +20:00:44.045 [XNIO-1 task-1] w1EpjcHrR4OsiA5smm8Mkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.046 [XNIO-1 task-1] w1EpjcHrR4OsiA5smm8Mkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.046 [XNIO-1 task-1] w1EpjcHrR4OsiA5smm8Mkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/2eb21053, base path is set to: null +20:00:44.046 [XNIO-1 task-1] w1EpjcHrR4OsiA5smm8Mkw DEBUG com.networknt.schema.TypeValidator debug - validate( "2eb21053", "2eb21053", userId) +20:00:44.056 [XNIO-1 task-1] fsE95t-wREC7Ze8bQg11Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.056 [XNIO-1 task-1] fsE95t-wREC7Ze8bQg11Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.056 [XNIO-1 task-1] fsE95t-wREC7Ze8bQg11Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.056 [XNIO-1 task-1] fsE95t-wREC7Ze8bQg11Cg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.070 [XNIO-1 task-1] OzsLaKV4Q8G6rw_-4KRBKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.070 [XNIO-1 task-1] OzsLaKV4Q8G6rw_-4KRBKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.070 [XNIO-1 task-1] OzsLaKV4Q8G6rw_-4KRBKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.071 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4f3cc51e-928d-4632-b8e2-301d80446e3e +20:00:44.075 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0f4b472d-eead-4f78-82c3-079d523bdcd0 +20:00:44.083 [XNIO-1 task-1] 7vy3JJwMRjizffB30aevhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.084 [XNIO-1 task-1] 7vy3JJwMRjizffB30aevhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.084 [XNIO-1 task-1] 7vy3JJwMRjizffB30aevhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.084 [XNIO-1 task-1] 7vy3JJwMRjizffB30aevhw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.091 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +20:00:44.129 [XNIO-1 task-1] Eyh-lejZT5K9l8TokuaxBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.129 [XNIO-1 task-1] Eyh-lejZT5K9l8TokuaxBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.129 [XNIO-1 task-1] Eyh-lejZT5K9l8TokuaxBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.130 [XNIO-1 task-1] Eyh-lejZT5K9l8TokuaxBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.140 [XNIO-1 task-1] 0uOOizarTYKg_XmwKMOT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.140 [XNIO-1 task-1] 0uOOizarTYKg_XmwKMOT6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.140 [XNIO-1 task-1] 0uOOizarTYKg_XmwKMOT6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.157 [XNIO-1 task-1] UhZXXgzDSrGWPwfcVhKHLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.158 [XNIO-1 task-1] UhZXXgzDSrGWPwfcVhKHLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.159 [XNIO-1 task-1] UhZXXgzDSrGWPwfcVhKHLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.195 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d33e046, base path is set to: null +20:00:44.195 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.195 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.195 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:44.195 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8d33e046, base path is set to: null +20:00:44.196 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG com.networknt.schema.TypeValidator debug - validate( "8d33e046", "8d33e046", userId) +20:00:44.196 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPassword":"8005812c-1100-41b1-84b7-de0116aa3c42","newPasswordConfirm":"8005812c-1100-41b1-84b7-de0116aa3c42"}, {"password":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPassword":"8005812c-1100-41b1-84b7-de0116aa3c42","newPasswordConfirm":"8005812c-1100-41b1-84b7-de0116aa3c42"}, requestBody) +20:00:44.197 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG com.networknt.schema.TypeValidator debug - validate( "8005812c-1100-41b1-84b7-de0116aa3c42", {"password":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPassword":"8005812c-1100-41b1-84b7-de0116aa3c42","newPasswordConfirm":"8005812c-1100-41b1-84b7-de0116aa3c42"}, requestBody.newPasswordConfirm) +20:00:44.197 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG com.networknt.schema.TypeValidator debug - validate( "02ae80fe-acfd-4d2d-a5a0-d026b0b135df", {"password":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPassword":"8005812c-1100-41b1-84b7-de0116aa3c42","newPasswordConfirm":"8005812c-1100-41b1-84b7-de0116aa3c42"}, requestBody.password) +20:00:44.197 [XNIO-1 task-1] Nk1X51xvSN-CpxW9tJDbnw DEBUG com.networknt.schema.TypeValidator debug - validate( "8005812c-1100-41b1-84b7-de0116aa3c42", {"password":"02ae80fe-acfd-4d2d-a5a0-d026b0b135df","newPassword":"8005812c-1100-41b1-84b7-de0116aa3c42","newPasswordConfirm":"8005812c-1100-41b1-84b7-de0116aa3c42"}, requestBody.newPassword) +20:00:44.216 [XNIO-1 task-1] BU0gMqpxSvmFxP0XFD_YNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.216 [XNIO-1 task-1] BU0gMqpxSvmFxP0XFD_YNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.217 [XNIO-1 task-1] BU0gMqpxSvmFxP0XFD_YNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.231 [XNIO-1 task-1] rFE5m0JvRzy7n0kcsyGPrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.231 [XNIO-1 task-1] rFE5m0JvRzy7n0kcsyGPrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.232 [XNIO-1 task-1] rFE5m0JvRzy7n0kcsyGPrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.232 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c8cb420 +20:00:44.240 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c8cb420 +20:00:44.252 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c8cb420 +20:00:44.278 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a823bf80 +20:00:44.278 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.278 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:44.278 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:44.279 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a823bf80 +20:00:44.279 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPassword":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPasswordConfirm":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8"}, {"password":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPassword":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPasswordConfirm":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8"}, requestBody) +20:00:44.279 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPassword":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPasswordConfirm":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8"}, {"password":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPassword":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPasswordConfirm":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8"}, requestBody) +20:00:44.279 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "01bc8215-d369-4d9d-8d15-b4ecf9003fc8", {"password":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPassword":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPasswordConfirm":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8"}, requestBody.newPasswordConfirm) +20:00:44.280 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "6aac9e53-b8eb-47e6-97cd-dd222e76857a", {"password":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPassword":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPasswordConfirm":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8"}, requestBody.password) +20:00:44.280 [XNIO-1 task-1] di8RyeZmSoebQeODALii6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "01bc8215-d369-4d9d-8d15-b4ecf9003fc8", {"password":"6aac9e53-b8eb-47e6-97cd-dd222e76857a","newPassword":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPasswordConfirm":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8"}, requestBody.newPassword) +20:00:44.301 [XNIO-1 task-1] k0XwfHwPTcy4HXSGmN0hDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.301 [XNIO-1 task-1] k0XwfHwPTcy4HXSGmN0hDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.301 [XNIO-1 task-1] k0XwfHwPTcy4HXSGmN0hDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.301 [XNIO-1 task-1] k0XwfHwPTcy4HXSGmN0hDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.302 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c8cb420 +20:00:44.310 [XNIO-1 task-1] HZKzdpC-Q2aBAixoGyH8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.310 [XNIO-1 task-1] HZKzdpC-Q2aBAixoGyH8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.311 [XNIO-1 task-1] HZKzdpC-Q2aBAixoGyH8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.311 [XNIO-1 task-1] HZKzdpC-Q2aBAixoGyH8_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.322 [XNIO-1 task-1] I_Cv6zN0TG-BuJaWUOtcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.322 [XNIO-1 task-1] I_Cv6zN0TG-BuJaWUOtcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.323 [XNIO-1 task-1] I_Cv6zN0TG-BuJaWUOtcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.323 [XNIO-1 task-1] I_Cv6zN0TG-BuJaWUOtcDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:44.330 [XNIO-1 task-1] 217EDTWnThWJl6_21JJLRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.330 [XNIO-1 task-1] 217EDTWnThWJl6_21JJLRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.330 [XNIO-1 task-1] 217EDTWnThWJl6_21JJLRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.350 [XNIO-1 task-1] EnFsBF_PRfuM34B8STqHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/853bf697 +20:00:44.350 [XNIO-1 task-1] EnFsBF_PRfuM34B8STqHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.350 [XNIO-1 task-1] EnFsBF_PRfuM34B8STqHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:44.350 [XNIO-1 task-1] EnFsBF_PRfuM34B8STqHbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/853bf697 +20:00:44.359 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0f4b472d-eead-4f78-82c3-079d523bdcd0 +20:00:44.360 [XNIO-1 task-1] hG04JTVdRrSfOHRueSAMJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.360 [XNIO-1 task-1] hG04JTVdRrSfOHRueSAMJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.361 [XNIO-1 task-1] hG04JTVdRrSfOHRueSAMJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +Jun 28, 2024 8:00:44 PM com.hazelcast.map.impl.operation.DeleteOperation +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +20:00:44.381 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ddf2cc7d-e4b7-4a41-80fe-0ff4d274860b + +20:00:44.381 [XNIO-1 task-1] 38ZfI8vkQ6KPk-iRurXLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.381 [XNIO-1 task-1] 38ZfI8vkQ6KPk-iRurXLTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.381 [XNIO-1 task-1] 38ZfI8vkQ6KPk-iRurXLTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.382 [XNIO-1 task-1] 38ZfI8vkQ6KPk-iRurXLTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.382 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:ddf2cc7d-e4b7-4a41-80fe-0ff4d274860b +20:00:44.389 [XNIO-1 task-1] AKO9Z8a0T_uOdHrn3ZsFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.389 [XNIO-1 task-1] AKO9Z8a0T_uOdHrn3ZsFyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.390 [XNIO-1 task-1] AKO9Z8a0T_uOdHrn3ZsFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.390 [XNIO-1 task-1] AKO9Z8a0T_uOdHrn3ZsFyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.403 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a823bf80, base path is set to: null +20:00:44.409 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.409 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.409 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:44.410 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a823bf80, base path is set to: null +20:00:44.410 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG com.networknt.schema.TypeValidator debug - validate( "a823bf80", "a823bf80", userId) +20:00:44.411 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPassword":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPasswordConfirm":"d3c4a816-06e8-44da-bb2e-a20be4c67696"}, {"password":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPassword":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPasswordConfirm":"d3c4a816-06e8-44da-bb2e-a20be4c67696"}, requestBody) +20:00:44.411 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG com.networknt.schema.TypeValidator debug - validate( "d3c4a816-06e8-44da-bb2e-a20be4c67696", {"password":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPassword":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPasswordConfirm":"d3c4a816-06e8-44da-bb2e-a20be4c67696"}, requestBody.newPasswordConfirm) +20:00:44.411 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG com.networknt.schema.TypeValidator debug - validate( "01bc8215-d369-4d9d-8d15-b4ecf9003fc8", {"password":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPassword":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPasswordConfirm":"d3c4a816-06e8-44da-bb2e-a20be4c67696"}, requestBody.password) +20:00:44.411 [XNIO-1 task-1] ropNB_xeSROXmH8i_fv69g DEBUG com.networknt.schema.TypeValidator debug - validate( "d3c4a816-06e8-44da-bb2e-a20be4c67696", {"password":"01bc8215-d369-4d9d-8d15-b4ecf9003fc8","newPassword":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPasswordConfirm":"d3c4a816-06e8-44da-bb2e-a20be4c67696"}, requestBody.newPassword) +20:00:44.438 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/17296abd, base path is set to: null +20:00:44.439 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.439 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.439 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:44.439 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/17296abd, base path is set to: null +20:00:44.440 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG com.networknt.schema.TypeValidator debug - validate( "17296abd", "17296abd", userId) +20:00:44.440 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8e6b6ac3-0def-4b73-a83a-245784f707d0","newPassword":"d57b7f6a-1ece-4398-9959-09e8aeb79334","newPasswordConfirm":"d57b7f6a-1ece-4398-9959-09e8aeb79334"}, {"password":"8e6b6ac3-0def-4b73-a83a-245784f707d0","newPassword":"d57b7f6a-1ece-4398-9959-09e8aeb79334","newPasswordConfirm":"d57b7f6a-1ece-4398-9959-09e8aeb79334"}, requestBody) +20:00:44.440 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG com.networknt.schema.TypeValidator debug - validate( "d57b7f6a-1ece-4398-9959-09e8aeb79334", {"password":"8e6b6ac3-0def-4b73-a83a-245784f707d0","newPassword":"d57b7f6a-1ece-4398-9959-09e8aeb79334","newPasswordConfirm":"d57b7f6a-1ece-4398-9959-09e8aeb79334"}, requestBody.newPasswordConfirm) +20:00:44.440 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG com.networknt.schema.TypeValidator debug - validate( "8e6b6ac3-0def-4b73-a83a-245784f707d0", {"password":"8e6b6ac3-0def-4b73-a83a-245784f707d0","newPassword":"d57b7f6a-1ece-4398-9959-09e8aeb79334","newPasswordConfirm":"d57b7f6a-1ece-4398-9959-09e8aeb79334"}, requestBody.password) +20:00:44.440 [XNIO-1 task-1] P6Gv5smnQWi8C1Jsbr3pfg DEBUG com.networknt.schema.TypeValidator debug - validate( "d57b7f6a-1ece-4398-9959-09e8aeb79334", {"password":"8e6b6ac3-0def-4b73-a83a-245784f707d0","newPassword":"d57b7f6a-1ece-4398-9959-09e8aeb79334","newPasswordConfirm":"d57b7f6a-1ece-4398-9959-09e8aeb79334"}, requestBody.newPassword) +20:00:44.464 [XNIO-1 task-1] i7UgnLI9QVu5SEPZhTaHLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f74db908, base path is set to: null +20:00:44.464 [XNIO-1 task-1] i7UgnLI9QVu5SEPZhTaHLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.464 [XNIO-1 task-1] i7UgnLI9QVu5SEPZhTaHLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.464 [XNIO-1 task-1] i7UgnLI9QVu5SEPZhTaHLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f74db908, base path is set to: null +20:00:44.465 [XNIO-1 task-1] i7UgnLI9QVu5SEPZhTaHLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f74db908", "f74db908", userId) +20:00:44.470 [XNIO-1 task-1] Jo6BjSyAQbmY5Aq-Si1Bzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.470 [XNIO-1 task-1] Jo6BjSyAQbmY5Aq-Si1Bzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.470 [XNIO-1 task-1] Jo6BjSyAQbmY5Aq-Si1Bzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.486 [XNIO-1 task-1] mDAbeEhoQSW9hV1kz1Fvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.486 [XNIO-1 task-1] mDAbeEhoQSW9hV1kz1Fvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.487 [XNIO-1 task-1] mDAbeEhoQSW9hV1kz1Fvxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.506 [XNIO-1 task-1] T04NJQdWSO6VdC1Mq9kLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.506 [XNIO-1 task-1] T04NJQdWSO6VdC1Mq9kLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.507 [XNIO-1 task-1] T04NJQdWSO6VdC1Mq9kLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.527 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7c8cb420 +20:00:44.537 [XNIO-1 task-1] MFqkq2H5TMyYzUG-CftYFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.537 [XNIO-1 task-1] MFqkq2H5TMyYzUG-CftYFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.538 [XNIO-1 task-1] MFqkq2H5TMyYzUG-CftYFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.551 [XNIO-1 task-1] AD7m1SARQyO86muodEhekQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.551 [XNIO-1 task-1] AD7m1SARQyO86muodEhekQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.551 [XNIO-1 task-1] AD7m1SARQyO86muodEhekQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.618 [XNIO-1 task-1] WSj5EzLsTXmLVSHCP4iANw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.620 [XNIO-1 task-1] WSj5EzLsTXmLVSHCP4iANw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.621 [XNIO-1 task-1] WSj5EzLsTXmLVSHCP4iANw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.637 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc5cf085, base path is set to: null +20:00:44.637 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.637 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.638 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:44.638 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc5cf085, base path is set to: null +20:00:44.638 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc5cf085", "dc5cf085", userId) +20:00:44.639 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6010a447-a31a-4951-840b-bfe51230f994","newPassword":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a","newPasswordConfirm":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a"}, {"password":"6010a447-a31a-4951-840b-bfe51230f994","newPassword":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a","newPasswordConfirm":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a"}, requestBody) +20:00:44.639 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG com.networknt.schema.TypeValidator debug - validate( "5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a", {"password":"6010a447-a31a-4951-840b-bfe51230f994","newPassword":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a","newPasswordConfirm":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a"}, requestBody.newPasswordConfirm) +20:00:44.639 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG com.networknt.schema.TypeValidator debug - validate( "6010a447-a31a-4951-840b-bfe51230f994", {"password":"6010a447-a31a-4951-840b-bfe51230f994","newPassword":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a","newPasswordConfirm":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a"}, requestBody.password) +20:00:44.639 [XNIO-1 task-1] s-MRQHD8RtWdxDFpieBfnw DEBUG com.networknt.schema.TypeValidator debug - validate( "5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a", {"password":"6010a447-a31a-4951-840b-bfe51230f994","newPassword":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a","newPasswordConfirm":"5aaf41ef-2bf4-4ebb-955e-a2b8ff02947a"}, requestBody.newPassword) +20:00:44.667 [XNIO-1 task-1] jfd-lxebRgWPcXFFpNSnaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.667 [XNIO-1 task-1] jfd-lxebRgWPcXFFpNSnaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.667 [XNIO-1 task-1] jfd-lxebRgWPcXFFpNSnaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.688 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f74db908, base path is set to: null +20:00:44.689 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.689 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.689 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:44.689 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f74db908, base path is set to: null +20:00:44.690 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG com.networknt.schema.TypeValidator debug - validate( "f74db908", "f74db908", userId) +20:00:44.690 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPassword":"454f4c6d-f34e-4dda-8be6-849dc08e5da8","newPasswordConfirm":"454f4c6d-f34e-4dda-8be6-849dc08e5da8"}, {"password":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPassword":"454f4c6d-f34e-4dda-8be6-849dc08e5da8","newPasswordConfirm":"454f4c6d-f34e-4dda-8be6-849dc08e5da8"}, requestBody) +20:00:44.690 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG com.networknt.schema.TypeValidator debug - validate( "454f4c6d-f34e-4dda-8be6-849dc08e5da8", {"password":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPassword":"454f4c6d-f34e-4dda-8be6-849dc08e5da8","newPasswordConfirm":"454f4c6d-f34e-4dda-8be6-849dc08e5da8"}, requestBody.newPasswordConfirm) +20:00:44.690 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG com.networknt.schema.TypeValidator debug - validate( "5dee8881-cd50-4b6c-b89b-8f6430ae3063", {"password":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPassword":"454f4c6d-f34e-4dda-8be6-849dc08e5da8","newPasswordConfirm":"454f4c6d-f34e-4dda-8be6-849dc08e5da8"}, requestBody.password) +20:00:44.690 [XNIO-1 task-1] J3ChWMuETP2otLKjJpPg7w DEBUG com.networknt.schema.TypeValidator debug - validate( "454f4c6d-f34e-4dda-8be6-849dc08e5da8", {"password":"5dee8881-cd50-4b6c-b89b-8f6430ae3063","newPassword":"454f4c6d-f34e-4dda-8be6-849dc08e5da8","newPasswordConfirm":"454f4c6d-f34e-4dda-8be6-849dc08e5da8"}, requestBody.newPassword) +20:00:44.712 [XNIO-1 task-1] 9t-YYXa3Ru-GnRsQjtqQuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.713 [XNIO-1 task-1] 9t-YYXa3Ru-GnRsQjtqQuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.713 [XNIO-1 task-1] 9t-YYXa3Ru-GnRsQjtqQuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.741 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:830c94da +20:00:44.746 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:830c94da +20:00:44.756 [XNIO-1 task-1] hiFytKqPSSO2OkHNM5lIBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.756 [XNIO-1 task-1] hiFytKqPSSO2OkHNM5lIBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.757 [XNIO-1 task-1] hiFytKqPSSO2OkHNM5lIBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.771 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7cb9f448-d7de-4246-952f-bcc6a16b7649 +20:00:44.800 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/49d9f48a, base path is set to: null +20:00:44.800 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.801 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.801 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:44.801 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/49d9f48a, base path is set to: null +20:00:44.801 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG com.networknt.schema.TypeValidator debug - validate( "49d9f48a", "49d9f48a", userId) +20:00:44.802 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f1d2ecea-7482-4bcb-970c-a871e28b20f0","newPassword":"500a047a-03c5-401a-89f4-ba75dd771f58","newPasswordConfirm":"500a047a-03c5-401a-89f4-ba75dd771f58"}, {"password":"f1d2ecea-7482-4bcb-970c-a871e28b20f0","newPassword":"500a047a-03c5-401a-89f4-ba75dd771f58","newPasswordConfirm":"500a047a-03c5-401a-89f4-ba75dd771f58"}, requestBody) +20:00:44.802 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG com.networknt.schema.TypeValidator debug - validate( "500a047a-03c5-401a-89f4-ba75dd771f58", {"password":"f1d2ecea-7482-4bcb-970c-a871e28b20f0","newPassword":"500a047a-03c5-401a-89f4-ba75dd771f58","newPasswordConfirm":"500a047a-03c5-401a-89f4-ba75dd771f58"}, requestBody.newPasswordConfirm) +20:00:44.802 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG com.networknt.schema.TypeValidator debug - validate( "f1d2ecea-7482-4bcb-970c-a871e28b20f0", {"password":"f1d2ecea-7482-4bcb-970c-a871e28b20f0","newPassword":"500a047a-03c5-401a-89f4-ba75dd771f58","newPasswordConfirm":"500a047a-03c5-401a-89f4-ba75dd771f58"}, requestBody.password) +20:00:44.802 [XNIO-1 task-1] 5uPdIRNYTimw5tTq3W9hWg DEBUG com.networknt.schema.TypeValidator debug - validate( "500a047a-03c5-401a-89f4-ba75dd771f58", {"password":"f1d2ecea-7482-4bcb-970c-a871e28b20f0","newPassword":"500a047a-03c5-401a-89f4-ba75dd771f58","newPasswordConfirm":"500a047a-03c5-401a-89f4-ba75dd771f58"}, requestBody.newPassword) +20:00:44.826 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4b909a55-f73c-49f6-a45f-74a3b8d79e16 +20:00:44.827 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4b909a55-f73c-49f6-a45f-74a3b8d79e16 +20:00:44.831 [XNIO-1 task-1] EQBRFQ4AR7K3javtkSn4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.831 [XNIO-1 task-1] EQBRFQ4AR7K3javtkSn4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.831 [XNIO-1 task-1] EQBRFQ4AR7K3javtkSn4Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.842 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7427fba0 +20:00:44.859 [XNIO-1 task-1] jb2N4yqTR8yndayJkk-qcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.859 [XNIO-1 task-1] jb2N4yqTR8yndayJkk-qcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.859 [XNIO-1 task-1] jb2N4yqTR8yndayJkk-qcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.859 [XNIO-1 task-1] jb2N4yqTR8yndayJkk-qcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.870 [XNIO-1 task-1] 1HpY0n8mTN2gXky1hM2Wsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.871 [XNIO-1 task-1] 1HpY0n8mTN2gXky1hM2Wsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.871 [XNIO-1 task-1] 1HpY0n8mTN2gXky1hM2Wsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.876 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7c8cb420 +20:00:44.885 [XNIO-1 task-1] DKILAZRNS8GeiLjBOMjAzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.885 [XNIO-1 task-1] DKILAZRNS8GeiLjBOMjAzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.885 [XNIO-1 task-1] DKILAZRNS8GeiLjBOMjAzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.896 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ef62d5df +20:00:44.899 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ef62d5df +20:00:44.904 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7c8cb420 +20:00:44.911 [XNIO-1 task-1] nWvM04nERcqd3idPX19N8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.911 [XNIO-1 task-1] nWvM04nERcqd3idPX19N8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.911 [XNIO-1 task-1] nWvM04nERcqd3idPX19N8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.923 [XNIO-1 task-1] 2euXgU1ISe2hlTAeBtKPUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/28d38630 +20:00:44.923 [XNIO-1 task-1] 2euXgU1ISe2hlTAeBtKPUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.923 [XNIO-1 task-1] 2euXgU1ISe2hlTAeBtKPUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:44.923 [XNIO-1 task-1] 2euXgU1ISe2hlTAeBtKPUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/28d38630 +20:00:44.929 [XNIO-1 task-1] kTBzG93hSlu_N0TL4ezXrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.929 [XNIO-1 task-1] kTBzG93hSlu_N0TL4ezXrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.929 [XNIO-1 task-1] kTBzG93hSlu_N0TL4ezXrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:44.929 [XNIO-1 task-1] kTBzG93hSlu_N0TL4ezXrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:44.939 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a823bf80, base path is set to: null +20:00:44.939 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:44.939 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:44.939 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:44.940 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a823bf80, base path is set to: null +20:00:44.940 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG com.networknt.schema.TypeValidator debug - validate( "a823bf80", "a823bf80", userId) +20:00:44.941 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPassword":"35e466a4-30c6-4670-b420-d7a2a1c7f613","newPasswordConfirm":"35e466a4-30c6-4670-b420-d7a2a1c7f613"}, {"password":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPassword":"35e466a4-30c6-4670-b420-d7a2a1c7f613","newPasswordConfirm":"35e466a4-30c6-4670-b420-d7a2a1c7f613"}, requestBody) +20:00:44.941 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG com.networknt.schema.TypeValidator debug - validate( "35e466a4-30c6-4670-b420-d7a2a1c7f613", {"password":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPassword":"35e466a4-30c6-4670-b420-d7a2a1c7f613","newPasswordConfirm":"35e466a4-30c6-4670-b420-d7a2a1c7f613"}, requestBody.newPasswordConfirm) +20:00:44.941 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG com.networknt.schema.TypeValidator debug - validate( "d3c4a816-06e8-44da-bb2e-a20be4c67696", {"password":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPassword":"35e466a4-30c6-4670-b420-d7a2a1c7f613","newPasswordConfirm":"35e466a4-30c6-4670-b420-d7a2a1c7f613"}, requestBody.password) +20:00:44.941 [XNIO-1 task-1] JviK6BXVTtWCNHXZrWLs2A DEBUG com.networknt.schema.TypeValidator debug - validate( "35e466a4-30c6-4670-b420-d7a2a1c7f613", {"password":"d3c4a816-06e8-44da-bb2e-a20be4c67696","newPassword":"35e466a4-30c6-4670-b420-d7a2a1c7f613","newPasswordConfirm":"35e466a4-30c6-4670-b420-d7a2a1c7f613"}, requestBody.newPassword) +20:00:44.966 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:46b2b00a +20:00:44.966 [XNIO-1 task-1] L5wZhDQoSvuxKRQeLwohKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.966 [XNIO-1 task-1] L5wZhDQoSvuxKRQeLwohKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.966 [XNIO-1 task-1] L5wZhDQoSvuxKRQeLwohKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.970 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:46b2b00a +20:00:44.976 [XNIO-1 task-1] iLXxUDeSRKOXwA2mt9JhoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.976 [XNIO-1 task-1] iLXxUDeSRKOXwA2mt9JhoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:44.976 [XNIO-1 task-1] iLXxUDeSRKOXwA2mt9JhoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.004 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9b56adc1-89ea-43de-a365-74a075a0044f +20:00:45.007 [XNIO-1 task-1] Ntbka3v_Q5i8Ry6dVQEinw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a823bf80, base path is set to: null +20:00:45.008 [XNIO-1 task-1] Ntbka3v_Q5i8Ry6dVQEinw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.008 [XNIO-1 task-1] Ntbka3v_Q5i8Ry6dVQEinw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.008 [XNIO-1 task-1] Ntbka3v_Q5i8Ry6dVQEinw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a823bf80, base path is set to: null +20:00:45.009 [XNIO-1 task-1] Ntbka3v_Q5i8Ry6dVQEinw DEBUG com.networknt.schema.TypeValidator debug - validate( "a823bf80", "a823bf80", userId) +20:00:45.016 [XNIO-1 task-1] ZZkBwcspS36YfqWiKWJLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a823bf80 +20:00:45.016 [XNIO-1 task-1] ZZkBwcspS36YfqWiKWJLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.016 [XNIO-1 task-1] ZZkBwcspS36YfqWiKWJLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.016 [XNIO-1 task-1] ZZkBwcspS36YfqWiKWJLTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a823bf80 +20:00:45.020 [XNIO-1 task-1] wD2WEI88R4ywMoV9WKiFKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.021 [XNIO-1 task-1] wD2WEI88R4ywMoV9WKiFKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.026 [XNIO-1 task-1] wD2WEI88R4ywMoV9WKiFKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.026 [XNIO-1 task-1] wD2WEI88R4ywMoV9WKiFKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.041 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9824435c +20:00:45.042 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.042 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.042 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:45.043 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9824435c +20:00:45.043 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0c5729ce-fced-42f7-9513-82edfb087890","newPassword":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477","newPasswordConfirm":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477"}, {"password":"0c5729ce-fced-42f7-9513-82edfb087890","newPassword":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477","newPasswordConfirm":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477"}, requestBody) +20:00:45.043 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0c5729ce-fced-42f7-9513-82edfb087890","newPassword":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477","newPasswordConfirm":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477"}, {"password":"0c5729ce-fced-42f7-9513-82edfb087890","newPassword":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477","newPasswordConfirm":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477"}, requestBody) +20:00:45.043 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG com.networknt.schema.FormatValidator debug - validate( "a2ad1ce7-f902-4d48-accf-d74e1f9b9477", {"password":"0c5729ce-fced-42f7-9513-82edfb087890","newPassword":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477","newPasswordConfirm":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477"}, requestBody.newPasswordConfirm) +20:00:45.044 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG com.networknt.schema.FormatValidator debug - validate( "0c5729ce-fced-42f7-9513-82edfb087890", {"password":"0c5729ce-fced-42f7-9513-82edfb087890","newPassword":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477","newPasswordConfirm":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477"}, requestBody.password) +20:00:45.044 [XNIO-1 task-1] QiYBB2AqQvejh4iXLu28Hg DEBUG com.networknt.schema.FormatValidator debug - validate( "a2ad1ce7-f902-4d48-accf-d74e1f9b9477", {"password":"0c5729ce-fced-42f7-9513-82edfb087890","newPassword":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477","newPasswordConfirm":"a2ad1ce7-f902-4d48-accf-d74e1f9b9477"}, requestBody.newPassword) +20:00:45.052 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:bf5f5c15-12aa-4c23-b152-0e154528af57 +20:00:45.078 [XNIO-1 task-1] nM7YHv0BR3SKqXHBgOpiuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.078 [XNIO-1 task-1] nM7YHv0BR3SKqXHBgOpiuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.079 [XNIO-1 task-1] nM7YHv0BR3SKqXHBgOpiuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.080 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:46b2b00a +20:00:45.094 [XNIO-1 task-1] yLpAgnGsQT6nNerNaI2dLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.095 [XNIO-1 task-1] yLpAgnGsQT6nNerNaI2dLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.095 [XNIO-1 task-1] yLpAgnGsQT6nNerNaI2dLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.096 [XNIO-1 task-1] yLpAgnGsQT6nNerNaI2dLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.138 [XNIO-1 task-1] 2vUDwJ6oQV-dVQmY3QpXrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a823bf80, base path is set to: null +20:00:45.138 [XNIO-1 task-1] 2vUDwJ6oQV-dVQmY3QpXrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.138 [XNIO-1 task-1] 2vUDwJ6oQV-dVQmY3QpXrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.138 [XNIO-1 task-1] 2vUDwJ6oQV-dVQmY3QpXrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a823bf80, base path is set to: null +20:00:45.139 [XNIO-1 task-1] 2vUDwJ6oQV-dVQmY3QpXrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a823bf80", "a823bf80", userId) +20:00:45.141 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a88c3ed9-f61e-44d1-95a6-c7ca6a95ff08 +20:00:45.143 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:46b2b00a +20:00:45.151 [XNIO-1 task-1] aDHtu1fpQ9e9FEK4dJWJqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9824435c, base path is set to: null +20:00:45.151 [XNIO-1 task-1] aDHtu1fpQ9e9FEK4dJWJqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.151 [XNIO-1 task-1] aDHtu1fpQ9e9FEK4dJWJqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.151 [XNIO-1 task-1] aDHtu1fpQ9e9FEK4dJWJqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9824435c, base path is set to: null +20:00:45.152 [XNIO-1 task-1] aDHtu1fpQ9e9FEK4dJWJqg DEBUG com.networknt.schema.TypeValidator debug - validate( "9824435c", "9824435c", userId) +20:00:45.166 [XNIO-1 task-1] omXDe2fqRG-2aj1eNbX4UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.166 [XNIO-1 task-1] omXDe2fqRG-2aj1eNbX4UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.166 [XNIO-1 task-1] omXDe2fqRG-2aj1eNbX4UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.166 [XNIO-1 task-1] omXDe2fqRG-2aj1eNbX4UA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.177 [XNIO-1 task-1] -Y0zuSjPREWL78xHJDaO9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.179 [XNIO-1 task-1] -Y0zuSjPREWL78xHJDaO9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.179 [XNIO-1 task-1] -Y0zuSjPREWL78xHJDaO9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.180 [XNIO-1 task-1] -Y0zuSjPREWL78xHJDaO9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.190 [XNIO-1 task-1] gXIfJGRYRq6bu4szjW9i3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/28d38630 +20:00:45.190 [XNIO-1 task-1] gXIfJGRYRq6bu4szjW9i3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.190 [XNIO-1 task-1] gXIfJGRYRq6bu4szjW9i3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.190 [XNIO-1 task-1] gXIfJGRYRq6bu4szjW9i3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/28d38630 +20:00:45.204 [XNIO-1 task-1] YZewukjET9CdyfsBNpy-1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.204 [XNIO-1 task-1] YZewukjET9CdyfsBNpy-1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.205 [XNIO-1 task-1] YZewukjET9CdyfsBNpy-1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.229 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/753516bd, base path is set to: null +20:00:45.229 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.229 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.229 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:45.229 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/753516bd, base path is set to: null +20:00:45.230 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG com.networknt.schema.TypeValidator debug - validate( "753516bd", "753516bd", userId) +20:00:45.230 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b8e0b224-d700-48e5-a0e9-1b2f207a1367","newPassword":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPasswordConfirm":"0048d6e6-ee18-4eec-a2ee-889256b09903"}, {"password":"b8e0b224-d700-48e5-a0e9-1b2f207a1367","newPassword":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPasswordConfirm":"0048d6e6-ee18-4eec-a2ee-889256b09903"}, requestBody) +20:00:45.230 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG com.networknt.schema.TypeValidator debug - validate( "0048d6e6-ee18-4eec-a2ee-889256b09903", {"password":"b8e0b224-d700-48e5-a0e9-1b2f207a1367","newPassword":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPasswordConfirm":"0048d6e6-ee18-4eec-a2ee-889256b09903"}, requestBody.newPasswordConfirm) +20:00:45.230 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG com.networknt.schema.TypeValidator debug - validate( "b8e0b224-d700-48e5-a0e9-1b2f207a1367", {"password":"b8e0b224-d700-48e5-a0e9-1b2f207a1367","newPassword":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPasswordConfirm":"0048d6e6-ee18-4eec-a2ee-889256b09903"}, requestBody.password) +20:00:45.230 [XNIO-1 task-1] w9aSoVfLThe7sXdZLGSF1w DEBUG com.networknt.schema.TypeValidator debug - validate( "0048d6e6-ee18-4eec-a2ee-889256b09903", {"password":"b8e0b224-d700-48e5-a0e9-1b2f207a1367","newPassword":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPasswordConfirm":"0048d6e6-ee18-4eec-a2ee-889256b09903"}, requestBody.newPassword) +20:00:45.257 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/753516bd, base path is set to: null +20:00:45.258 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.258 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.258 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:45.259 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/753516bd, base path is set to: null +20:00:45.259 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG com.networknt.schema.TypeValidator debug - validate( "753516bd", "753516bd", userId) +20:00:45.259 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPassword":"205c0848-7e28-40df-aa2f-a00ad80be4fe","newPasswordConfirm":"205c0848-7e28-40df-aa2f-a00ad80be4fe"}, {"password":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPassword":"205c0848-7e28-40df-aa2f-a00ad80be4fe","newPasswordConfirm":"205c0848-7e28-40df-aa2f-a00ad80be4fe"}, requestBody) +20:00:45.260 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG com.networknt.schema.TypeValidator debug - validate( "205c0848-7e28-40df-aa2f-a00ad80be4fe", {"password":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPassword":"205c0848-7e28-40df-aa2f-a00ad80be4fe","newPasswordConfirm":"205c0848-7e28-40df-aa2f-a00ad80be4fe"}, requestBody.newPasswordConfirm) +20:00:45.260 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG com.networknt.schema.TypeValidator debug - validate( "0048d6e6-ee18-4eec-a2ee-889256b09903", {"password":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPassword":"205c0848-7e28-40df-aa2f-a00ad80be4fe","newPasswordConfirm":"205c0848-7e28-40df-aa2f-a00ad80be4fe"}, requestBody.password) +20:00:45.260 [XNIO-1 task-1] rPWabRB3R--KryitYYosDA DEBUG com.networknt.schema.TypeValidator debug - validate( "205c0848-7e28-40df-aa2f-a00ad80be4fe", {"password":"0048d6e6-ee18-4eec-a2ee-889256b09903","newPassword":"205c0848-7e28-40df-aa2f-a00ad80be4fe","newPasswordConfirm":"205c0848-7e28-40df-aa2f-a00ad80be4fe"}, requestBody.newPassword) +20:00:45.289 [XNIO-1 task-1] lPT-G9ylTd-_xNd5qpmnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.289 [XNIO-1 task-1] lPT-G9ylTd-_xNd5qpmnIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.289 [XNIO-1 task-1] lPT-G9ylTd-_xNd5qpmnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.313 [XNIO-1 task-1] 674hHG4hRqeoLamUVUSD_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.313 [XNIO-1 task-1] 674hHG4hRqeoLamUVUSD_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.314 [XNIO-1 task-1] 674hHG4hRqeoLamUVUSD_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.332 [XNIO-1 task-1] s0fobxy4RrOLCzZXe2F6fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/63623ab5, base path is set to: null +20:00:45.332 [XNIO-1 task-1] s0fobxy4RrOLCzZXe2F6fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.332 [XNIO-1 task-1] s0fobxy4RrOLCzZXe2F6fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.333 [XNIO-1 task-1] s0fobxy4RrOLCzZXe2F6fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/63623ab5, base path is set to: null +20:00:45.335 [XNIO-1 task-1] s0fobxy4RrOLCzZXe2F6fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "63623ab5", "63623ab5", userId) +20:00:45.343 [XNIO-1 task-1] G7fYdVtCTNiFzntvlCjFsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.343 [XNIO-1 task-1] G7fYdVtCTNiFzntvlCjFsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.343 [XNIO-1 task-1] G7fYdVtCTNiFzntvlCjFsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.359 [XNIO-1 task-1] jNfbgUhgSfms8KGYlWndyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.359 [XNIO-1 task-1] jNfbgUhgSfms8KGYlWndyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.359 [XNIO-1 task-1] jNfbgUhgSfms8KGYlWndyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.383 [XNIO-1 task-1] yuXQ_3ERSXySd_kIn17k_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.383 [XNIO-1 task-1] yuXQ_3ERSXySd_kIn17k_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.384 [XNIO-1 task-1] yuXQ_3ERSXySd_kIn17k_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.403 [XNIO-1 task-1] ywySwb10RPSdI1xccKCFjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.403 [XNIO-1 task-1] ywySwb10RPSdI1xccKCFjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.403 [XNIO-1 task-1] ywySwb10RPSdI1xccKCFjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.428 [XNIO-1 task-1] uz8VSC01TRyfr9nBKrGNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/753516bd, base path is set to: null +20:00:45.428 [XNIO-1 task-1] uz8VSC01TRyfr9nBKrGNmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.428 [XNIO-1 task-1] uz8VSC01TRyfr9nBKrGNmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.428 [XNIO-1 task-1] uz8VSC01TRyfr9nBKrGNmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.429 [XNIO-1 task-1] uz8VSC01TRyfr9nBKrGNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/753516bd, base path is set to: null +20:00:45.429 [XNIO-1 task-1] uz8VSC01TRyfr9nBKrGNmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "753516bd", "753516bd", userId) +20:00:45.441 [XNIO-1 task-1] CIHLYNaMTpmInGIlmFrhJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/830c94da +20:00:45.441 [XNIO-1 task-1] CIHLYNaMTpmInGIlmFrhJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.441 [XNIO-1 task-1] CIHLYNaMTpmInGIlmFrhJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.441 [XNIO-1 task-1] CIHLYNaMTpmInGIlmFrhJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/830c94da +20:00:45.442 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:830c94da +20:00:45.452 [XNIO-1 task-1] 6ygAUv3UQuOqsjHOz_ICXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.452 [XNIO-1 task-1] 6ygAUv3UQuOqsjHOz_ICXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.453 [XNIO-1 task-1] 6ygAUv3UQuOqsjHOz_ICXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.455 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:23130eee +20:00:45.459 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a430dd90-3c72-4ab7-a7f1-f0da26bf33e8 +20:00:45.475 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b1069b5, base path is set to: null +20:00:45.478 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.478 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.478 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:45.479 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b1069b5, base path is set to: null +20:00:45.479 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b1069b5", "6b1069b5", userId) +20:00:45.479 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8a1cbba9-c55e-4a42-827a-143d3b542832","newPassword":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPasswordConfirm":"b57f3034-e035-45f5-99b7-5e75e7b030fb"}, {"password":"8a1cbba9-c55e-4a42-827a-143d3b542832","newPassword":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPasswordConfirm":"b57f3034-e035-45f5-99b7-5e75e7b030fb"}, requestBody) +20:00:45.480 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG com.networknt.schema.TypeValidator debug - validate( "b57f3034-e035-45f5-99b7-5e75e7b030fb", {"password":"8a1cbba9-c55e-4a42-827a-143d3b542832","newPassword":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPasswordConfirm":"b57f3034-e035-45f5-99b7-5e75e7b030fb"}, requestBody.newPasswordConfirm) +20:00:45.481 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG com.networknt.schema.TypeValidator debug - validate( "8a1cbba9-c55e-4a42-827a-143d3b542832", {"password":"8a1cbba9-c55e-4a42-827a-143d3b542832","newPassword":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPasswordConfirm":"b57f3034-e035-45f5-99b7-5e75e7b030fb"}, requestBody.password) +20:00:45.481 [XNIO-1 task-1] GZSu7fTGSqqq1SBWttGlIA DEBUG com.networknt.schema.TypeValidator debug - validate( "b57f3034-e035-45f5-99b7-5e75e7b030fb", {"password":"8a1cbba9-c55e-4a42-827a-143d3b542832","newPassword":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPasswordConfirm":"b57f3034-e035-45f5-99b7-5e75e7b030fb"}, requestBody.newPassword) +20:00:45.504 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a430dd90-3c72-4ab7-a7f1-f0da26bf33e8 +20:00:45.517 [XNIO-1 task-1] 6sgcWfUCQPiADrylRP32oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.517 [XNIO-1 task-1] 6sgcWfUCQPiADrylRP32oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.519 [XNIO-1 task-1] 6sgcWfUCQPiADrylRP32oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.530 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:23130eee +20:00:45.547 [XNIO-1 task-1] Nyh3z3h-QCS_tcyLaOG8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b1069b5 +20:00:45.547 [XNIO-1 task-1] Nyh3z3h-QCS_tcyLaOG8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.547 [XNIO-1 task-1] Nyh3z3h-QCS_tcyLaOG8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.548 [XNIO-1 task-1] Nyh3z3h-QCS_tcyLaOG8Vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b1069b5 +20:00:45.554 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/49d9f48a, base path is set to: null +20:00:45.555 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.555 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.555 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:45.555 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/49d9f48a, base path is set to: null +20:00:45.556 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "49d9f48a", "49d9f48a", userId) +20:00:45.557 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"500a047a-03c5-401a-89f4-ba75dd771f58","newPassword":"b9f33e7f-6bff-471c-b074-5c6246d8664e","newPasswordConfirm":"b9f33e7f-6bff-471c-b074-5c6246d8664e"}, {"password":"500a047a-03c5-401a-89f4-ba75dd771f58","newPassword":"b9f33e7f-6bff-471c-b074-5c6246d8664e","newPasswordConfirm":"b9f33e7f-6bff-471c-b074-5c6246d8664e"}, requestBody) +20:00:45.557 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b9f33e7f-6bff-471c-b074-5c6246d8664e", {"password":"500a047a-03c5-401a-89f4-ba75dd771f58","newPassword":"b9f33e7f-6bff-471c-b074-5c6246d8664e","newPasswordConfirm":"b9f33e7f-6bff-471c-b074-5c6246d8664e"}, requestBody.newPasswordConfirm) +20:00:45.557 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "500a047a-03c5-401a-89f4-ba75dd771f58", {"password":"500a047a-03c5-401a-89f4-ba75dd771f58","newPassword":"b9f33e7f-6bff-471c-b074-5c6246d8664e","newPasswordConfirm":"b9f33e7f-6bff-471c-b074-5c6246d8664e"}, requestBody.password) +20:00:45.557 [XNIO-1 task-1] 9rdGHoIWTmyjNGhxfnrXgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b9f33e7f-6bff-471c-b074-5c6246d8664e", {"password":"500a047a-03c5-401a-89f4-ba75dd771f58","newPassword":"b9f33e7f-6bff-471c-b074-5c6246d8664e","newPasswordConfirm":"b9f33e7f-6bff-471c-b074-5c6246d8664e"}, requestBody.newPassword) +20:00:45.581 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b1069b5, base path is set to: null +20:00:45.581 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.581 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.581 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:45.581 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/6b1069b5, base path is set to: null +20:00:45.582 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG com.networknt.schema.TypeValidator debug - validate( "6b1069b5", "6b1069b5", userId) +20:00:45.582 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPassword":"724bb318-1433-4281-abdf-ea572b36624b","newPasswordConfirm":"724bb318-1433-4281-abdf-ea572b36624b"}, {"password":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPassword":"724bb318-1433-4281-abdf-ea572b36624b","newPasswordConfirm":"724bb318-1433-4281-abdf-ea572b36624b"}, requestBody) +20:00:45.582 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG com.networknt.schema.TypeValidator debug - validate( "724bb318-1433-4281-abdf-ea572b36624b", {"password":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPassword":"724bb318-1433-4281-abdf-ea572b36624b","newPasswordConfirm":"724bb318-1433-4281-abdf-ea572b36624b"}, requestBody.newPasswordConfirm) +20:00:45.582 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG com.networknt.schema.TypeValidator debug - validate( "b57f3034-e035-45f5-99b7-5e75e7b030fb", {"password":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPassword":"724bb318-1433-4281-abdf-ea572b36624b","newPasswordConfirm":"724bb318-1433-4281-abdf-ea572b36624b"}, requestBody.password) +20:00:45.583 [XNIO-1 task-1] Xzjubb-rRcWRzILy3vUbYw DEBUG com.networknt.schema.TypeValidator debug - validate( "724bb318-1433-4281-abdf-ea572b36624b", {"password":"b57f3034-e035-45f5-99b7-5e75e7b030fb","newPassword":"724bb318-1433-4281-abdf-ea572b36624b","newPasswordConfirm":"724bb318-1433-4281-abdf-ea572b36624b"}, requestBody.newPassword) +20:00:45.637 [XNIO-1 task-1] CwNivfT1Qp2rpIFyIL7Nsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.637 [XNIO-1 task-1] CwNivfT1Qp2rpIFyIL7Nsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.637 [XNIO-1 task-1] CwNivfT1Qp2rpIFyIL7Nsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.666 [XNIO-1 task-1] IG56yv1ZTUm4UUD-L5nYVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49d9f48a, base path is set to: null +20:00:45.667 [XNIO-1 task-1] IG56yv1ZTUm4UUD-L5nYVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.667 [XNIO-1 task-1] IG56yv1ZTUm4UUD-L5nYVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.667 [XNIO-1 task-1] IG56yv1ZTUm4UUD-L5nYVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49d9f48a, base path is set to: null +20:00:45.667 [XNIO-1 task-1] IG56yv1ZTUm4UUD-L5nYVw DEBUG com.networknt.schema.TypeValidator debug - validate( "49d9f48a", "49d9f48a", userId) +20:00:45.672 [XNIO-1 task-1] JRCy5dAjQt6yrolCNrIJWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b1069b5 +20:00:45.673 [XNIO-1 task-1] JRCy5dAjQt6yrolCNrIJWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.673 [XNIO-1 task-1] JRCy5dAjQt6yrolCNrIJWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.673 [XNIO-1 task-1] JRCy5dAjQt6yrolCNrIJWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6b1069b5 +20:00:45.683 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7427fba0, base path is set to: null +20:00:45.683 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.683 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.683 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:45.684 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7427fba0, base path is set to: null +20:00:45.684 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7427fba0", "7427fba0", userId) +20:00:45.684 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"06e18ac6-33cf-4060-bb04-ac792b3f8677","newPassword":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPasswordConfirm":"4d808e69-fdac-40bc-bfcb-d7736b0547dd"}, {"password":"06e18ac6-33cf-4060-bb04-ac792b3f8677","newPassword":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPasswordConfirm":"4d808e69-fdac-40bc-bfcb-d7736b0547dd"}, requestBody) +20:00:45.684 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d808e69-fdac-40bc-bfcb-d7736b0547dd", {"password":"06e18ac6-33cf-4060-bb04-ac792b3f8677","newPassword":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPasswordConfirm":"4d808e69-fdac-40bc-bfcb-d7736b0547dd"}, requestBody.newPasswordConfirm) +20:00:45.685 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06e18ac6-33cf-4060-bb04-ac792b3f8677", {"password":"06e18ac6-33cf-4060-bb04-ac792b3f8677","newPassword":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPasswordConfirm":"4d808e69-fdac-40bc-bfcb-d7736b0547dd"}, requestBody.password) +20:00:45.685 [XNIO-1 task-1] mPiIjhutTUuJld99x1qQAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d808e69-fdac-40bc-bfcb-d7736b0547dd", {"password":"06e18ac6-33cf-4060-bb04-ac792b3f8677","newPassword":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPasswordConfirm":"4d808e69-fdac-40bc-bfcb-d7736b0547dd"}, requestBody.newPassword) +20:00:45.696 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7427fba0 +20:00:45.697 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4b909a55-f73c-49f6-a45f-74a3b8d79e16 +20:00:45.710 [XNIO-1 task-1] tRqj27dGQAqDwTATlEEHTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.711 [XNIO-1 task-1] tRqj27dGQAqDwTATlEEHTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.712 [XNIO-1 task-1] tRqj27dGQAqDwTATlEEHTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.728 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:416ff4f9-7efb-4be8-abef-2a3d834509a3 +20:00:45.729 [XNIO-1 task-1] 0HlUKjZ4R3-UAY2Vu--lPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.730 [XNIO-1 task-1] 0HlUKjZ4R3-UAY2Vu--lPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.730 [XNIO-1 task-1] 0HlUKjZ4R3-UAY2Vu--lPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.730 [XNIO-1 task-1] 0HlUKjZ4R3-UAY2Vu--lPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:45.773 [XNIO-1 task-1] P1tC-VzbRA2-4YPw2LTa-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.773 [XNIO-1 task-1] P1tC-VzbRA2-4YPw2LTa-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.773 [XNIO-1 task-1] P1tC-VzbRA2-4YPw2LTa-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.774 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7427fba0 +20:00:45.786 [XNIO-1 task-1] _z0wT2kdQQGgGyMXLAKozQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.787 [XNIO-1 task-1] _z0wT2kdQQGgGyMXLAKozQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.787 [XNIO-1 task-1] _z0wT2kdQQGgGyMXLAKozQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.798 [XNIO-1 task-1] 0v-rYP6cRbm8ZOCBYDPljA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.798 [XNIO-1 task-1] 0v-rYP6cRbm8ZOCBYDPljA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.798 [XNIO-1 task-1] 0v-rYP6cRbm8ZOCBYDPljA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.810 [XNIO-1 task-1] QABlnkGJQBq4tH0KkxZvnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.810 [XNIO-1 task-1] QABlnkGJQBq4tH0KkxZvnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.810 [XNIO-1 task-1] QABlnkGJQBq4tH0KkxZvnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.824 [XNIO-1 task-1] lMq3eawsRh-GHwAEZAgItA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ccbd5f50, base path is set to: null +20:00:45.824 [XNIO-1 task-1] lMq3eawsRh-GHwAEZAgItA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.825 [XNIO-1 task-1] lMq3eawsRh-GHwAEZAgItA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.825 [XNIO-1 task-1] lMq3eawsRh-GHwAEZAgItA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ccbd5f50, base path is set to: null +20:00:45.825 [XNIO-1 task-1] lMq3eawsRh-GHwAEZAgItA DEBUG com.networknt.schema.TypeValidator debug - validate( "ccbd5f50", "ccbd5f50", userId) +20:00:45.837 [XNIO-1 task-1] ATe54gcKSAiQY9kHzrZpyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/63623ab5 +20:00:45.837 [XNIO-1 task-1] ATe54gcKSAiQY9kHzrZpyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.837 [XNIO-1 task-1] ATe54gcKSAiQY9kHzrZpyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.838 [XNIO-1 task-1] ATe54gcKSAiQY9kHzrZpyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/63623ab5 +20:00:45.845 [XNIO-1 task-1] JCurKKwPQmaIWu37l1OtnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/63623ab5, base path is set to: null +20:00:45.845 [XNIO-1 task-1] JCurKKwPQmaIWu37l1OtnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.846 [XNIO-1 task-1] JCurKKwPQmaIWu37l1OtnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.846 [XNIO-1 task-1] JCurKKwPQmaIWu37l1OtnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/63623ab5, base path is set to: null +20:00:45.846 [XNIO-1 task-1] JCurKKwPQmaIWu37l1OtnA DEBUG com.networknt.schema.TypeValidator debug - validate( "63623ab5", "63623ab5", userId) +20:00:45.856 [XNIO-1 task-1] iUrvgRZHQcGGnz1yr-x0Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.856 [XNIO-1 task-1] iUrvgRZHQcGGnz1yr-x0Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.857 [XNIO-1 task-1] iUrvgRZHQcGGnz1yr-x0Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.858 [XNIO-1 task-1] iUrvgRZHQcGGnz1yr-x0Dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.869 [XNIO-1 task-1] nJDtO1s0Qeayatz7wPLLEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.869 [XNIO-1 task-1] nJDtO1s0Qeayatz7wPLLEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.869 [XNIO-1 task-1] nJDtO1s0Qeayatz7wPLLEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.869 [XNIO-1 task-1] nJDtO1s0Qeayatz7wPLLEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.881 [XNIO-1 task-1] TfMRPj13SM2E6km6WYLGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/63623ab5 +20:00:45.881 [XNIO-1 task-1] TfMRPj13SM2E6km6WYLGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.881 [XNIO-1 task-1] TfMRPj13SM2E6km6WYLGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:45.881 [XNIO-1 task-1] TfMRPj13SM2E6km6WYLGsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/63623ab5 +20:00:45.901 [XNIO-1 task-1] n6q5kD5wSGWmXsdYhW7p4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49d9f48a, base path is set to: null +20:00:45.901 [XNIO-1 task-1] n6q5kD5wSGWmXsdYhW7p4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.901 [XNIO-1 task-1] n6q5kD5wSGWmXsdYhW7p4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.901 [XNIO-1 task-1] n6q5kD5wSGWmXsdYhW7p4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49d9f48a, base path is set to: null +20:00:45.901 [XNIO-1 task-1] n6q5kD5wSGWmXsdYhW7p4A DEBUG com.networknt.schema.TypeValidator debug - validate( "49d9f48a", "49d9f48a", userId) +20:00:45.917 [XNIO-1 task-1] 3lTYa-5uRhyHq8nWlzBWQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.917 [XNIO-1 task-1] 3lTYa-5uRhyHq8nWlzBWQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.917 [XNIO-1 task-1] 3lTYa-5uRhyHq8nWlzBWQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.933 [XNIO-1 task-1] 64jbytImQaiYqtdLvV3_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.933 [XNIO-1 task-1] 64jbytImQaiYqtdLvV3_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.933 [XNIO-1 task-1] 64jbytImQaiYqtdLvV3_Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.933 [XNIO-1 task-1] 64jbytImQaiYqtdLvV3_Fw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:45.944 [XNIO-1 task-1] -_JRH-9fS1uwCqn4reJr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.945 [XNIO-1 task-1] -_JRH-9fS1uwCqn4reJr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.945 [XNIO-1 task-1] -_JRH-9fS1uwCqn4reJr9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.946 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:110dd66e +20:00:45.959 [XNIO-1 task-1] PArUep-xT36YOymMgV9trQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.959 [XNIO-1 task-1] PArUep-xT36YOymMgV9trQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.959 [XNIO-1 task-1] PArUep-xT36YOymMgV9trQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:45.968 [XNIO-1 task-1] EAtVri02R2-wTRTg3RSWkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.969 [XNIO-1 task-1] EAtVri02R2-wTRTg3RSWkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.969 [XNIO-1 task-1] EAtVri02R2-wTRTg3RSWkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.984 [XNIO-1 task-1] 44UxpIV5Q1WIaraovQ6llA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.984 [XNIO-1 task-1] 44UxpIV5Q1WIaraovQ6llA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.984 [XNIO-1 task-1] 44UxpIV5Q1WIaraovQ6llA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:45.985 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:110dd66e +20:00:45.996 [XNIO-1 task-1] CUUInoI1RzCDpycvqvaEOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/110dd66e, base path is set to: null +20:00:45.996 [XNIO-1 task-1] CUUInoI1RzCDpycvqvaEOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:45.996 [XNIO-1 task-1] CUUInoI1RzCDpycvqvaEOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:45.997 [XNIO-1 task-1] CUUInoI1RzCDpycvqvaEOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/110dd66e, base path is set to: null +20:00:45.998 [XNIO-1 task-1] CUUInoI1RzCDpycvqvaEOg DEBUG com.networknt.schema.TypeValidator debug - validate( "110dd66e", "110dd66e", userId) +20:00:46.009 [XNIO-1 task-1] Wv_tLbEgSVqT5kKvba405Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.009 [XNIO-1 task-1] Wv_tLbEgSVqT5kKvba405Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.009 [XNIO-1 task-1] Wv_tLbEgSVqT5kKvba405Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.034 [XNIO-1 task-1] QMC00niKQy-z_5EBtfzDgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/daae9e21, base path is set to: null +20:00:46.034 [XNIO-1 task-1] QMC00niKQy-z_5EBtfzDgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.034 [XNIO-1 task-1] QMC00niKQy-z_5EBtfzDgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:46.034 [XNIO-1 task-1] QMC00niKQy-z_5EBtfzDgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/daae9e21, base path is set to: null +20:00:46.034 [XNIO-1 task-1] QMC00niKQy-z_5EBtfzDgg DEBUG com.networknt.schema.TypeValidator debug - validate( "daae9e21", "daae9e21", userId) +20:00:46.039 [XNIO-1 task-1] wnj7xEntSGK4g-163ppNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7337949c +20:00:46.039 [XNIO-1 task-1] wnj7xEntSGK4g-163ppNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.039 [XNIO-1 task-1] wnj7xEntSGK4g-163ppNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:46.039 [XNIO-1 task-1] wnj7xEntSGK4g-163ppNvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7337949c +20:00:46.054 [XNIO-1 task-1] cuvNjyl8T_SyOuy6fyefOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.054 [XNIO-1 task-1] cuvNjyl8T_SyOuy6fyefOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.055 [XNIO-1 task-1] cuvNjyl8T_SyOuy6fyefOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.070 [XNIO-1 task-1] jyXKb3CdQC6rJgr4k-ZZ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.070 [XNIO-1 task-1] jyXKb3CdQC6rJgr4k-ZZ7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.070 [XNIO-1 task-1] jyXKb3CdQC6rJgr4k-ZZ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.083 [XNIO-1 task-1] nQ81K5KhQE6Ua-iGUhbgeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ff333b7, base path is set to: null +20:00:46.083 [XNIO-1 task-1] nQ81K5KhQE6Ua-iGUhbgeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.083 [XNIO-1 task-1] nQ81K5KhQE6Ua-iGUhbgeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:46.083 [XNIO-1 task-1] nQ81K5KhQE6Ua-iGUhbgeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7ff333b7, base path is set to: null +20:00:46.084 [XNIO-1 task-1] nQ81K5KhQE6Ua-iGUhbgeg DEBUG com.networknt.schema.TypeValidator debug - validate( "7ff333b7", "7ff333b7", userId) +20:00:46.099 [XNIO-1 task-1] 3mls4PT2SIq46Dj4SM8YOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.099 [XNIO-1 task-1] 3mls4PT2SIq46Dj4SM8YOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.099 [XNIO-1 task-1] 3mls4PT2SIq46Dj4SM8YOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.114 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:66dcf428 +20:00:46.115 [XNIO-1 task-1] -RuZXTOlT4u4ndkJH82pOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.116 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:66dcf428 +20:00:46.116 [XNIO-1 task-1] -RuZXTOlT4u4ndkJH82pOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.157 [XNIO-1 task-1] ax8GMt5-QRCCWuZi2h2GRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.157 [XNIO-1 task-1] ax8GMt5-QRCCWuZi2h2GRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.157 [XNIO-1 task-1] ax8GMt5-QRCCWuZi2h2GRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.170 [XNIO-1 task-1] MgrjGio1RpyJlKaLxO7g_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.171 [XNIO-1 task-1] MgrjGio1RpyJlKaLxO7g_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.171 [XNIO-1 task-1] MgrjGio1RpyJlKaLxO7g_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.171 [XNIO-1 task-1] MgrjGio1RpyJlKaLxO7g_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.182 [XNIO-1 task-1] morZS3_DSOShf1qkKQOc2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.182 [XNIO-1 task-1] morZS3_DSOShf1qkKQOc2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.182 [XNIO-1 task-1] morZS3_DSOShf1qkKQOc2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.183 [XNIO-1 task-1] morZS3_DSOShf1qkKQOc2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.193 [XNIO-1 task-1] anVyYhjNQUWgP-iYP8isZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d5ca229, base path is set to: null +20:00:46.194 [XNIO-1 task-1] anVyYhjNQUWgP-iYP8isZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.194 [XNIO-1 task-1] anVyYhjNQUWgP-iYP8isZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:46.194 [XNIO-1 task-1] anVyYhjNQUWgP-iYP8isZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/1d5ca229, base path is set to: null +20:00:46.194 [XNIO-1 task-1] anVyYhjNQUWgP-iYP8isZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1d5ca229", "1d5ca229", userId) +20:00:46.206 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7427fba0 +20:00:46.206 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.206 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:46.206 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:46.206 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7427fba0 +20:00:46.207 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPassword":"9b59bbee-acdf-4270-944e-05683d872a68","newPasswordConfirm":"9b59bbee-acdf-4270-944e-05683d872a68"}, {"password":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPassword":"9b59bbee-acdf-4270-944e-05683d872a68","newPasswordConfirm":"9b59bbee-acdf-4270-944e-05683d872a68"}, requestBody) +20:00:46.207 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPassword":"9b59bbee-acdf-4270-944e-05683d872a68","newPasswordConfirm":"9b59bbee-acdf-4270-944e-05683d872a68"}, {"password":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPassword":"9b59bbee-acdf-4270-944e-05683d872a68","newPasswordConfirm":"9b59bbee-acdf-4270-944e-05683d872a68"}, requestBody) +20:00:46.207 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "9b59bbee-acdf-4270-944e-05683d872a68", {"password":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPassword":"9b59bbee-acdf-4270-944e-05683d872a68","newPasswordConfirm":"9b59bbee-acdf-4270-944e-05683d872a68"}, requestBody.newPasswordConfirm) +20:00:46.207 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "4d808e69-fdac-40bc-bfcb-d7736b0547dd", {"password":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPassword":"9b59bbee-acdf-4270-944e-05683d872a68","newPasswordConfirm":"9b59bbee-acdf-4270-944e-05683d872a68"}, requestBody.password) +20:00:46.207 [XNIO-1 task-1] GsVaM4R9S9apz3jj-XTZ9Q DEBUG com.networknt.schema.FormatValidator debug - validate( "9b59bbee-acdf-4270-944e-05683d872a68", {"password":"4d808e69-fdac-40bc-bfcb-d7736b0547dd","newPassword":"9b59bbee-acdf-4270-944e-05683d872a68","newPasswordConfirm":"9b59bbee-acdf-4270-944e-05683d872a68"}, requestBody.newPassword) +20:00:46.212 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:66dcf428 +20:00:46.220 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7427fba0 +20:00:46.233 [XNIO-1 task-1] Sca4-ZlWTQ2XQOudpabGOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.234 [XNIO-1 task-1] Sca4-ZlWTQ2XQOudpabGOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.234 [XNIO-1 task-1] Sca4-ZlWTQ2XQOudpabGOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.254 [XNIO-1 task-1] 1R60gmBJT8u73BS8iQQdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.254 [XNIO-1 task-1] 1R60gmBJT8u73BS8iQQdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.255 [XNIO-1 task-1] 1R60gmBJT8u73BS8iQQdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.275 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a0149fdf-621b-45de-945d-e26075300735 +20:00:46.278 [XNIO-1 task-1] NxgHX-7MRoiPhBLpaM7Obw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.279 [XNIO-1 task-1] NxgHX-7MRoiPhBLpaM7Obw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.279 [XNIO-1 task-1] NxgHX-7MRoiPhBLpaM7Obw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.304 [XNIO-1 task-1] DlI6rTqsSBObpgREBwNCTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7427fba0, base path is set to: null +20:00:46.304 [XNIO-1 task-1] DlI6rTqsSBObpgREBwNCTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.305 [XNIO-1 task-1] DlI6rTqsSBObpgREBwNCTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:46.305 [XNIO-1 task-1] DlI6rTqsSBObpgREBwNCTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7427fba0, base path is set to: null +20:00:46.306 [XNIO-1 task-1] DlI6rTqsSBObpgREBwNCTw DEBUG com.networknt.schema.TypeValidator debug - validate( "7427fba0", "7427fba0", userId) +20:00:46.313 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ef62d5df +20:00:46.313 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.313 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:46.313 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +20:00:46.314 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ef62d5df +20:00:46.314 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0458083a-9046-4771-9c97-40573a8824ae","newPassword":"fe818835-cd87-4606-a61b-ea158a7ca19f","newPasswordConfirm":"fe818835-cd87-4606-a61b-ea158a7ca19f"}, {"password":"0458083a-9046-4771-9c97-40573a8824ae","newPassword":"fe818835-cd87-4606-a61b-ea158a7ca19f","newPasswordConfirm":"fe818835-cd87-4606-a61b-ea158a7ca19f"}, requestBody) +20:00:46.314 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0458083a-9046-4771-9c97-40573a8824ae","newPassword":"fe818835-cd87-4606-a61b-ea158a7ca19f","newPasswordConfirm":"fe818835-cd87-4606-a61b-ea158a7ca19f"}, {"password":"0458083a-9046-4771-9c97-40573a8824ae","newPassword":"fe818835-cd87-4606-a61b-ea158a7ca19f","newPasswordConfirm":"fe818835-cd87-4606-a61b-ea158a7ca19f"}, requestBody) +20:00:46.314 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG com.networknt.schema.FormatValidator debug - validate( "fe818835-cd87-4606-a61b-ea158a7ca19f", {"password":"0458083a-9046-4771-9c97-40573a8824ae","newPassword":"fe818835-cd87-4606-a61b-ea158a7ca19f","newPasswordConfirm":"fe818835-cd87-4606-a61b-ea158a7ca19f"}, requestBody.newPasswordConfirm) +20:00:46.315 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG com.networknt.schema.FormatValidator debug - validate( "0458083a-9046-4771-9c97-40573a8824ae", {"password":"0458083a-9046-4771-9c97-40573a8824ae","newPassword":"fe818835-cd87-4606-a61b-ea158a7ca19f","newPasswordConfirm":"fe818835-cd87-4606-a61b-ea158a7ca19f"}, requestBody.password) +20:00:46.315 [XNIO-1 task-1] 4vmhebfTTr2t7Q6fU6TkCw DEBUG com.networknt.schema.FormatValidator debug - validate( "fe818835-cd87-4606-a61b-ea158a7ca19f", {"password":"0458083a-9046-4771-9c97-40573a8824ae","newPassword":"fe818835-cd87-4606-a61b-ea158a7ca19f","newPasswordConfirm":"fe818835-cd87-4606-a61b-ea158a7ca19f"}, requestBody.newPassword) +20:00:46.325 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ef62d5df +20:00:46.343 [XNIO-1 task-1] j_AnUTd8QaW0c0lDeTXLiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.343 [XNIO-1 task-1] j_AnUTd8QaW0c0lDeTXLiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.343 [XNIO-1 task-1] j_AnUTd8QaW0c0lDeTXLiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.357 [XNIO-1 task-1] IDO9t3kTQKSLY1nCkg_x6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7427fba0 +20:00:46.358 [XNIO-1 task-1] IDO9t3kTQKSLY1nCkg_x6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.358 [XNIO-1 task-1] IDO9t3kTQKSLY1nCkg_x6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:46.358 [XNIO-1 task-1] IDO9t3kTQKSLY1nCkg_x6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7427fba0 +20:00:46.361 [XNIO-1 task-1] bIyARLTKToKv47CSZFXv1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.361 [XNIO-1 task-1] bIyARLTKToKv47CSZFXv1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.362 [XNIO-1 task-1] bIyARLTKToKv47CSZFXv1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.372 [XNIO-1 task-1] 2eGMq86DRK-ehFQ_T2VfLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.372 [XNIO-1 task-1] 2eGMq86DRK-ehFQ_T2VfLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.372 [XNIO-1 task-1] 2eGMq86DRK-ehFQ_T2VfLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.374 [XNIO-1 task-1] 2eGMq86DRK-ehFQ_T2VfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.386 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/84d843ce, base path is set to: null +20:00:46.386 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.387 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:46.387 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +20:00:46.387 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/84d843ce, base path is set to: null +20:00:46.387 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG com.networknt.schema.TypeValidator debug - validate( "84d843ce", "84d843ce", userId) +20:00:46.388 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"7968710f-25bd-418e-a98e-8d8162f1b238","newPassword":"9f89fd2c-faaa-45df-84b3-474ffd97513e","newPasswordConfirm":"9f89fd2c-faaa-45df-84b3-474ffd97513e"}, {"password":"7968710f-25bd-418e-a98e-8d8162f1b238","newPassword":"9f89fd2c-faaa-45df-84b3-474ffd97513e","newPasswordConfirm":"9f89fd2c-faaa-45df-84b3-474ffd97513e"}, requestBody) +20:00:46.388 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG com.networknt.schema.TypeValidator debug - validate( "9f89fd2c-faaa-45df-84b3-474ffd97513e", {"password":"7968710f-25bd-418e-a98e-8d8162f1b238","newPassword":"9f89fd2c-faaa-45df-84b3-474ffd97513e","newPasswordConfirm":"9f89fd2c-faaa-45df-84b3-474ffd97513e"}, requestBody.newPasswordConfirm) +20:00:46.388 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG com.networknt.schema.TypeValidator debug - validate( "7968710f-25bd-418e-a98e-8d8162f1b238", {"password":"7968710f-25bd-418e-a98e-8d8162f1b238","newPassword":"9f89fd2c-faaa-45df-84b3-474ffd97513e","newPasswordConfirm":"9f89fd2c-faaa-45df-84b3-474ffd97513e"}, requestBody.password) +20:00:46.388 [XNIO-1 task-1] 5OEqkU8bR4ihM6phTQUPwg DEBUG com.networknt.schema.TypeValidator debug - validate( "9f89fd2c-faaa-45df-84b3-474ffd97513e", {"password":"7968710f-25bd-418e-a98e-8d8162f1b238","newPassword":"9f89fd2c-faaa-45df-84b3-474ffd97513e","newPasswordConfirm":"9f89fd2c-faaa-45df-84b3-474ffd97513e"}, requestBody.newPassword) +20:00:46.399 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:aa9db19b +20:00:46.400 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:aa9db19b +20:00:46.416 [XNIO-1 task-1] AM-JZhqgQauctc3J7hdEeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.416 [XNIO-1 task-1] AM-JZhqgQauctc3J7hdEeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.416 [XNIO-1 task-1] AM-JZhqgQauctc3J7hdEeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.427 [XNIO-1 task-1] CTlx9srjT6mFGfB0ee6FzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.427 [XNIO-1 task-1] CTlx9srjT6mFGfB0ee6FzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.428 [XNIO-1 task-1] CTlx9srjT6mFGfB0ee6FzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.440 [XNIO-1 task-1] YntUtLLHTgmxQbaC3VMvSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.440 [XNIO-1 task-1] YntUtLLHTgmxQbaC3VMvSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.440 [XNIO-1 task-1] YntUtLLHTgmxQbaC3VMvSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.453 [XNIO-1 task-1] U8y_GAt-Rp2C4HzDFh_4Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.454 [XNIO-1 task-1] U8y_GAt-Rp2C4HzDFh_4Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.454 [XNIO-1 task-1] U8y_GAt-Rp2C4HzDFh_4Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.458 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:aa9db19b +20:00:46.477 [XNIO-1 task-1] r00buNEXTL-Xy99PqTRPuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.477 [XNIO-1 task-1] r00buNEXTL-Xy99PqTRPuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.477 [XNIO-1 task-1] r00buNEXTL-Xy99PqTRPuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.478 [XNIO-1 task-1] r00buNEXTL-Xy99PqTRPuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.495 [XNIO-1 task-1] 8b8JlHQWRWepVf6bxUqdjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.495 [XNIO-1 task-1] 8b8JlHQWRWepVf6bxUqdjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.496 [XNIO-1 task-1] 8b8JlHQWRWepVf6bxUqdjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.508 [XNIO-1 task-1] QBj_xZdBTFalpFObkjv0NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.508 [XNIO-1 task-1] QBj_xZdBTFalpFObkjv0NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.509 [XNIO-1 task-1] QBj_xZdBTFalpFObkjv0NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.520 [XNIO-1 task-1] dHBgqZQ8TSCoE9EuwggsSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8d33e046 +20:00:46.520 [XNIO-1 task-1] dHBgqZQ8TSCoE9EuwggsSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.520 [XNIO-1 task-1] dHBgqZQ8TSCoE9EuwggsSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:46.520 [XNIO-1 task-1] dHBgqZQ8TSCoE9EuwggsSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8d33e046 +20:00:46.526 [XNIO-1 task-1] 4Lj8U1wiS_GHNhLNXMsO1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc5cf085, base path is set to: null +20:00:46.526 [XNIO-1 task-1] 4Lj8U1wiS_GHNhLNXMsO1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.527 [XNIO-1 task-1] 4Lj8U1wiS_GHNhLNXMsO1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +20:00:46.527 [XNIO-1 task-1] 4Lj8U1wiS_GHNhLNXMsO1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dc5cf085, base path is set to: null +20:00:46.527 [XNIO-1 task-1] 4Lj8U1wiS_GHNhLNXMsO1g DEBUG com.networknt.schema.TypeValidator debug - validate( "dc5cf085", "dc5cf085", userId) +20:00:46.533 [XNIO-1 task-1] Pu2h57-2RbqILiC9hGG2Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.533 [XNIO-1 task-1] Pu2h57-2RbqILiC9hGG2Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.533 [XNIO-1 task-1] Pu2h57-2RbqILiC9hGG2Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.534 [XNIO-1 task-1] Pu2h57-2RbqILiC9hGG2Og DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +20:00:46.541 [XNIO-1 task-1] 0aBCIgSSQMib__-88dLBvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8d33e046 +20:00:46.541 [XNIO-1 task-1] 0aBCIgSSQMib__-88dLBvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +20:00:46.542 [XNIO-1 task-1] 0aBCIgSSQMib__-88dLBvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +20:00:46.542 [XNIO-1 task-1] 0aBCIgSSQMib__-88dLBvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8d33e046 +20:00:46.552 [XNIO-1 task-1] 0gNqLvofSVS8n2nIBnO8jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.553 [XNIO-1 task-1] 0gNqLvofSVS8n2nIBnO8jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.553 [XNIO-1 task-1] 0gNqLvofSVS8n2nIBnO8jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.554 [XNIO-1 task-1] 0gNqLvofSVS8n2nIBnO8jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +20:00:46.557 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a402e49f-c34e-4d78-af45-67d28d323bd3 +20:00:46.563 [XNIO-1 task-1] VHJ7RLgoSGO-h_S5dNViJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.563 [XNIO-1 task-1] VHJ7RLgoSGO-h_S5dNViJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.563 [XNIO-1 task-1] VHJ7RLgoSGO-h_S5dNViJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.579 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a402e49f-c34e-4d78-af45-67d28d323bd3 +20:00:46.591 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:059e9d7c +20:00:46.596 [XNIO-1 task-1] ok8ZNaFFSxqffCdQZ8oMig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.596 [XNIO-1 task-1] ok8ZNaFFSxqffCdQZ8oMig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.596 [XNIO-1 task-1] ok8ZNaFFSxqffCdQZ8oMig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.648 [XNIO-1 task-1] V0XOSYnIRDy6VEHl7BIqJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.648 [XNIO-1 task-1] V0XOSYnIRDy6VEHl7BIqJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +20:00:46.648 [XNIO-1 task-1] V0XOSYnIRDy6VEHl7BIqJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +20:00:46.652 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:059e9d7c +20:00:46.674 [XNIO-1 task-1] IEm9VeVNRlmnUuCEHnQbFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dc5cf085, base path is set to: null diff --git a/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-client-1.log b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..e0860a5 --- /dev/null +++ b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-client-1.log @@ -0,0 +1,7058 @@ +16:39:59.336 [XNIO-1 task-1] pHyKM5WATKOwfUbdiEabQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3768ad-ef85-4bbd-8dcd-eab79783618b, base path is set to: null +16:39:59.337 [XNIO-1 task-1] pHyKM5WATKOwfUbdiEabQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.337 [XNIO-1 task-1] pHyKM5WATKOwfUbdiEabQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:39:59.337 [XNIO-1 task-1] pHyKM5WATKOwfUbdiEabQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3768ad-ef85-4bbd-8dcd-eab79783618b, base path is set to: null +16:39:59.337 [XNIO-1 task-1] pHyKM5WATKOwfUbdiEabQw DEBUG com.networknt.schema.TypeValidator debug - validate( "3c3768ad-ef85-4bbd-8dcd-eab79783618b", "3c3768ad-ef85-4bbd-8dcd-eab79783618b", clientId) +16:39:59.341 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG com.networknt.schema.TypeValidator debug - validate( "8747f85b-a3e5-46df-9e42-22454f6387b5", {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG com.networknt.schema.TypeValidator debug - validate( "f2da549b-2249-4fcd-a406-8454448c", {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:39:59.342 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f2da549b-2249-4fcd-a406-8454448c","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:39:59.343 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:39:59.343 [XNIO-1 task-1] R5Thws8yQOK2sJrHf_sYRw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:39:59.345 [XNIO-1 task-1] GylTt2iCRhmWtSp1B67h7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:39:59.345 [XNIO-1 task-1] GylTt2iCRhmWtSp1B67h7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.345 [XNIO-1 task-1] GylTt2iCRhmWtSp1B67h7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:39:59.345 [XNIO-1 task-1] GylTt2iCRhmWtSp1B67h7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:39:59.360 [XNIO-1 task-1] A_KeGo_pSLSzBjf6DXc0DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66cfdd81-dc70-4680-b65c-dbbd948fd6ac, base path is set to: null +16:39:59.360 [XNIO-1 task-1] A_KeGo_pSLSzBjf6DXc0DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.360 [XNIO-1 task-1] A_KeGo_pSLSzBjf6DXc0DA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:39:59.360 [XNIO-1 task-1] A_KeGo_pSLSzBjf6DXc0DA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/66cfdd81-dc70-4680-b65c-dbbd948fd6ac, base path is set to: null +16:39:59.360 [XNIO-1 task-1] A_KeGo_pSLSzBjf6DXc0DA DEBUG com.networknt.schema.TypeValidator debug - validate( "66cfdd81-dc70-4680-b65c-dbbd948fd6ac", "66cfdd81-dc70-4680-b65c-dbbd948fd6ac", clientId) +16:39:59.364 [XNIO-1 task-1] n7ky1kj2TcOaceLvA-zVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.364 [XNIO-1 task-1] n7ky1kj2TcOaceLvA-zVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.364 [XNIO-1 task-1] n7ky1kj2TcOaceLvA-zVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.365 [XNIO-1 task-1] n7ky1kj2TcOaceLvA-zVAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:39:59.373 [XNIO-1 task-1] dGVXOk1VSwGmKz22A82HNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/484caf80-b3e6-4667-92af-c3864d1732b6 +16:39:59.373 [XNIO-1 task-1] dGVXOk1VSwGmKz22A82HNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.373 [XNIO-1 task-1] dGVXOk1VSwGmKz22A82HNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:39:59.373 [XNIO-1 task-1] dGVXOk1VSwGmKz22A82HNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/484caf80-b3e6-4667-92af-c3864d1732b6 +16:39:59.383 [XNIO-1 task-1] kDaHsDl0QcWIr8wRsw6heg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:39:59.383 [XNIO-1 task-1] kDaHsDl0QcWIr8wRsw6heg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.383 [XNIO-1 task-1] kDaHsDl0QcWIr8wRsw6heg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:39:59.398 [XNIO-1 task-1] RSW-JnCjTJ29dGUVzVC0hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:39:59.398 [XNIO-1 task-1] RSW-JnCjTJ29dGUVzVC0hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.398 [XNIO-1 task-1] RSW-JnCjTJ29dGUVzVC0hA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:39:59.399 [XNIO-1 task-1] RSW-JnCjTJ29dGUVzVC0hA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:39:59.399 [XNIO-1 task-1] RSW-JnCjTJ29dGUVzVC0hA DEBUG com.networknt.schema.TypeValidator debug - validate( "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", clientId) +16:39:59.402 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:39:59.402 [XNIO-1 task-1] RSW-JnCjTJ29dGUVzVC0hA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:39:59.403 [XNIO-1 task-1] RSW-JnCjTJ29dGUVzVC0hA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:39:59.417 [XNIO-1 task-1] Fvvx58XSQv-hdgiAzmEueA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/484caf80-b3e6-4667-92af-c3864d1732b6 +16:39:59.417 [XNIO-1 task-1] Fvvx58XSQv-hdgiAzmEueA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.417 [XNIO-1 task-1] Fvvx58XSQv-hdgiAzmEueA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:39:59.417 [XNIO-1 task-1] Fvvx58XSQv-hdgiAzmEueA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/484caf80-b3e6-4667-92af-c3864d1732b6 +16:39:59.424 [XNIO-1 task-1] GISkie2fRaGOJcYwPbEDwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bed4ee90-98b2-4d31-954c-7632b09245e9, base path is set to: null +16:39:59.424 [XNIO-1 task-1] GISkie2fRaGOJcYwPbEDwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.424 [XNIO-1 task-1] GISkie2fRaGOJcYwPbEDwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:39:59.424 [XNIO-1 task-1] GISkie2fRaGOJcYwPbEDwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bed4ee90-98b2-4d31-954c-7632b09245e9, base path is set to: null +16:39:59.425 [XNIO-1 task-1] GISkie2fRaGOJcYwPbEDwg DEBUG com.networknt.schema.TypeValidator debug - validate( "bed4ee90-98b2-4d31-954c-7632b09245e9", "bed4ee90-98b2-4d31-954c-7632b09245e9", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:39:59.432 [XNIO-1 task-1] GISkie2fRaGOJcYwPbEDwg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/bed4ee90-98b2-4d31-954c-7632b09245e9} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:39:59.434 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:39:59.435 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:39:59.435 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"481ed895-1106-43c7-b10e-bf9581af","clientDesc":"88fa2303-278b-4b7e-a376-bc57b4dee458","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:39:59.435 [XNIO-1 task-1] j9E7jkCAQjOPknyOHgsqZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:39:59.437 [XNIO-1 task-1] iF3m63I0S4i29_GYUw4ejw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c040e465-43a8-4299-9870-76d07baa7fe9 +16:39:59.437 [XNIO-1 task-1] iF3m63I0S4i29_GYUw4ejw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.438 [XNIO-1 task-1] iF3m63I0S4i29_GYUw4ejw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:39:59.438 [XNIO-1 task-1] iF3m63I0S4i29_GYUw4ejw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c040e465-43a8-4299-9870-76d07baa7fe9 +16:39:59.442 [XNIO-1 task-1] eTdXuzaES16_mqJ2gIm9wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/565936dc-2a73-4b3d-8315-0c0364ef2bdc, base path is set to: null +16:39:59.442 [XNIO-1 task-1] eTdXuzaES16_mqJ2gIm9wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.442 [XNIO-1 task-1] eTdXuzaES16_mqJ2gIm9wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:39:59.442 [XNIO-1 task-1] eTdXuzaES16_mqJ2gIm9wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/565936dc-2a73-4b3d-8315-0c0364ef2bdc, base path is set to: null +16:39:59.442 [XNIO-1 task-1] eTdXuzaES16_mqJ2gIm9wg DEBUG com.networknt.schema.TypeValidator debug - validate( "565936dc-2a73-4b3d-8315-0c0364ef2bdc", "565936dc-2a73-4b3d-8315-0c0364ef2bdc", clientId) +16:39:59.452 [XNIO-1 task-1] 807EA4niQbKALG0VwAWEbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.452 [XNIO-1 task-1] 807EA4niQbKALG0VwAWEbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.452 [XNIO-1 task-1] 807EA4niQbKALG0VwAWEbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.453 [XNIO-1 task-1] 807EA4niQbKALG0VwAWEbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:39:59.461 [XNIO-1 task-1] yJJrRzJ6Thy1CEQ4m0N-_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39 +16:39:59.461 [XNIO-1 task-1] yJJrRzJ6Thy1CEQ4m0N-_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.462 [XNIO-1 task-1] yJJrRzJ6Thy1CEQ4m0N-_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:39:59.462 [XNIO-1 task-1] yJJrRzJ6Thy1CEQ4m0N-_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39 +16:39:59.467 [XNIO-1 task-1] yJJrRzJ6Thy1CEQ4m0N-_w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:39:59.467 [XNIO-1 task-1] yJJrRzJ6Thy1CEQ4m0N-_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:39:59.474 [XNIO-1 task-1] dFqqKC1bSCCkSliweGrRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3efa533c-e5e4-4461-90fe-8ecdf2faaac3 +16:39:59.475 [XNIO-1 task-1] dFqqKC1bSCCkSliweGrRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:39:59.475 [XNIO-1 task-1] dFqqKC1bSCCkSliweGrRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:39:59.475 [XNIO-1 task-1] dFqqKC1bSCCkSliweGrRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3efa533c-e5e4-4461-90fe-8ecdf2faaac3 +16:39:59.483 [XNIO-1 task-1] s8i3ULcuTeWN9YsdrJ122w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3efa533c-e5e4-4461-90fe-8ecdf2faaac3, base path is set to: null +16:39:59.483 [XNIO-1 task-1] s8i3ULcuTeWN9YsdrJ122w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:39:59.483 [XNIO-1 task-1] s8i3ULcuTeWN9YsdrJ122w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:39:59.484 [XNIO-1 task-1] s8i3ULcuTeWN9YsdrJ122w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3efa533c-e5e4-4461-90fe-8ecdf2faaac3, base path is set to: null +16:39:59.484 [XNIO-1 task-1] s8i3ULcuTeWN9YsdrJ122w DEBUG com.networknt.schema.TypeValidator debug - validate( "3efa533c-e5e4-4461-90fe-8ecdf2faaac3", "3efa533c-e5e4-4461-90fe-8ecdf2faaac3", clientId) +16:39:59.484 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:03df82ff-4b58-4216-9efe-17bf2f14f48a +16:40:01.446 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:03df82ff-4b58-4216-9efe-17bf2f14f48a +16:40:01.448 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2d869ccc +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:40:01.450 [XNIO-1 task-1] s8i3ULcuTeWN9YsdrJ122w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/3efa533c-e5e4-4461-90fe-8ecdf2faaac3} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.452 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c89409f5-0238-407b-b3a8-612da9c6534d +16:40:01.461 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:2d869ccc +16:40:01.461 [XNIO-1 task-1] JeGf14B1RlqGaMse0wGmOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e +16:40:01.461 [XNIO-1 task-1] JeGf14B1RlqGaMse0wGmOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.462 [XNIO-1 task-1] JeGf14B1RlqGaMse0wGmOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:01.462 [XNIO-1 task-1] JeGf14B1RlqGaMse0wGmOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e +16:40:01.462 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:03df82ff-4b58-4216-9efe-17bf2f14f48a +16:40:01.467 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.467 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.467 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG com.networknt.schema.TypeValidator debug - validate( "e7740bab-3f99-4548-89d8-86d42724698c", {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca8cfcdf-1bb2-4163-b437-21a7c834","clientDesc":"e7740bab-3f99-4548-89d8-86d42724698c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.468 [XNIO-1 task-1] zrnduN1GR5mZ_J1EEB3SVg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:01.472 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.472 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.472 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG com.networknt.schema.TypeValidator debug - validate( "71291c58-2ff6-4652-a109-59e948705015", {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG com.networknt.schema.TypeValidator debug - validate( "f3f26538-12bc-493e-aaae-0108e718", {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f3f26538-12bc-493e-aaae-0108e718","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.473 [XNIO-1 task-1] e7bFbjOUSmS0t-7Q5LzCqw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.480 [XNIO-1 task-1] hH-oiMCqRTKD4EBBy85gXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/484caf80-b3e6-4667-92af-c3864d1732b6, base path is set to: null +16:40:01.480 [XNIO-1 task-1] hH-oiMCqRTKD4EBBy85gXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.480 [XNIO-1 task-1] hH-oiMCqRTKD4EBBy85gXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.480 [XNIO-1 task-1] hH-oiMCqRTKD4EBBy85gXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/484caf80-b3e6-4667-92af-c3864d1732b6, base path is set to: null +16:40:01.480 [XNIO-1 task-1] hH-oiMCqRTKD4EBBy85gXw DEBUG com.networknt.schema.TypeValidator debug - validate( "484caf80-b3e6-4667-92af-c3864d1732b6", "484caf80-b3e6-4667-92af-c3864d1732b6", clientId) +16:40:01.489 [XNIO-1 task-1] S8jzkX3kSiGB2TwLVElEbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e +16:40:01.489 [XNIO-1 task-1] S8jzkX3kSiGB2TwLVElEbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.489 [XNIO-1 task-1] S8jzkX3kSiGB2TwLVElEbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:01.489 [XNIO-1 task-1] S8jzkX3kSiGB2TwLVElEbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e +16:40:01.492 [XNIO-1 task-1] S94mfNo0SSeW9DuKWDQBEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:40:01.492 [XNIO-1 task-1] S94mfNo0SSeW9DuKWDQBEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.493 [XNIO-1 task-1] S94mfNo0SSeW9DuKWDQBEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.493 [XNIO-1 task-1] S94mfNo0SSeW9DuKWDQBEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:40:01.493 [XNIO-1 task-1] S94mfNo0SSeW9DuKWDQBEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", clientId) +16:40:01.503 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:40:01.503 [XNIO-1 task-1] S94mfNo0SSeW9DuKWDQBEQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.505 [XNIO-1 task-1] S94mfNo0SSeW9DuKWDQBEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:01.513 [XNIO-1 task-1] WCk4m-9gQ_CcrZwXMoCYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.513 [XNIO-1 task-1] WCk4m-9gQ_CcrZwXMoCYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.513 [XNIO-1 task-1] WCk4m-9gQ_CcrZwXMoCYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.513 [XNIO-1 task-1] WCk4m-9gQ_CcrZwXMoCYDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:01.523 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.523 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.523 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.523 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.525 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.525 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0faa441f-ec0a-4195-9349-1c039098a689", {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.525 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.525 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.525 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6554932e-7eea-4e16-9b14-3cdea5b3", {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.525 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.525 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6554932e-7eea-4e16-9b14-3cdea5b3","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.526 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.526 [XNIO-1 task-1] Amt3N23ZRL6GsiYq8QRIrQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.529 [XNIO-1 task-1] gxGSvotwSNm0EOtH24pcXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3efa533c-e5e4-4461-90fe-8ecdf2faaac3, base path is set to: null +16:40:01.530 [XNIO-1 task-1] gxGSvotwSNm0EOtH24pcXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.530 [XNIO-1 task-1] gxGSvotwSNm0EOtH24pcXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.530 [XNIO-1 task-1] gxGSvotwSNm0EOtH24pcXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3efa533c-e5e4-4461-90fe-8ecdf2faaac3, base path is set to: null +16:40:01.530 [XNIO-1 task-1] gxGSvotwSNm0EOtH24pcXA DEBUG com.networknt.schema.TypeValidator debug - validate( "3efa533c-e5e4-4461-90fe-8ecdf2faaac3", "3efa533c-e5e4-4461-90fe-8ecdf2faaac3", clientId) +16:40:01.538 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:40:01.538 [XNIO-1 task-1] gxGSvotwSNm0EOtH24pcXA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.538 [XNIO-1 task-1] gxGSvotwSNm0EOtH24pcXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:01.544 [XNIO-1 task-1] BUk-1I_YTty0yeosDTrb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.544 [XNIO-1 task-1] BUk-1I_YTty0yeosDTrb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.545 [XNIO-1 task-1] BUk-1I_YTty0yeosDTrb8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.545 [XNIO-1 task-1] BUk-1I_YTty0yeosDTrb8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:01.558 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.559 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.560 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.560 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.560 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.560 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "b9718359-b3f3-4b7c-b06d-a21eda8b73c7", {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.560 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.561 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.561 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "0c92ddd5-0915-49af-a92f-e6d62fd7", {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.561 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.561 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0c92ddd5-0915-49af-a92f-e6d62fd7","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.561 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.561 [XNIO-1 task-1] CywclyXuQJKLZb6ST77Rag DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.565 [XNIO-1 task-1] 4rrqzIcwSxCeJo4Htt2HJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3086bd12-a943-4fdd-91ff-04e1e7965f92, base path is set to: null +16:40:01.565 [XNIO-1 task-1] 4rrqzIcwSxCeJo4Htt2HJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.565 [XNIO-1 task-1] 4rrqzIcwSxCeJo4Htt2HJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.565 [XNIO-1 task-1] 4rrqzIcwSxCeJo4Htt2HJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3086bd12-a943-4fdd-91ff-04e1e7965f92, base path is set to: null +16:40:01.565 [XNIO-1 task-1] 4rrqzIcwSxCeJo4Htt2HJw DEBUG com.networknt.schema.TypeValidator debug - validate( "3086bd12-a943-4fdd-91ff-04e1e7965f92", "3086bd12-a943-4fdd-91ff-04e1e7965f92", clientId) +16:40:01.569 [XNIO-1 task-1] lnZcnYKwQIaNPPKDE1ALCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/437a9808-a58c-47d1-952a-cdf7d1889f2a +16:40:01.569 [XNIO-1 task-1] lnZcnYKwQIaNPPKDE1ALCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.569 [XNIO-1 task-1] lnZcnYKwQIaNPPKDE1ALCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:01.569 [XNIO-1 task-1] lnZcnYKwQIaNPPKDE1ALCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/437a9808-a58c-47d1-952a-cdf7d1889f2a +16:40:01.574 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:64d6ca78 +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:01.575 [XNIO-1 task-1] lnZcnYKwQIaNPPKDE1ALCA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/437a9808-a58c-47d1-952a-cdf7d1889f2a} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.575 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:64d6ca78 +16:40:01.583 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.583 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.583 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9a083b4d-6072-4fec-a641-9d6b0415","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.584 [XNIO-1 task-1] A27Ed0TnTHq682N2Q0LfPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:01.593 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.593 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.593 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.593 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.593 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.593 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "3d0568e0-b585-4c41-8add-af082bf88365", {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.594 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.594 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.594 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "315b6b5c-db60-439d-9775-ec3f28a3", {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.594 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.594 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"315b6b5c-db60-439d-9775-ec3f28a3","clientDesc":"3d0568e0-b585-4c41-8add-af082bf88365","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.594 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.594 [XNIO-1 task-1] vN_H4W5jTb2emgpefybwlw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.596 [XNIO-1 task-1] e7FVIMe0S42WMrMpky-4og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a3a8b8e8-ae29-4b32-868d-af4be8d008a6, base path is set to: null +16:40:01.596 [XNIO-1 task-1] e7FVIMe0S42WMrMpky-4og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.596 [XNIO-1 task-1] e7FVIMe0S42WMrMpky-4og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.596 [XNIO-1 task-1] e7FVIMe0S42WMrMpky-4og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a3a8b8e8-ae29-4b32-868d-af4be8d008a6, base path is set to: null +16:40:01.596 [XNIO-1 task-1] e7FVIMe0S42WMrMpky-4og DEBUG com.networknt.schema.TypeValidator debug - validate( "a3a8b8e8-ae29-4b32-868d-af4be8d008a6", "a3a8b8e8-ae29-4b32-868d-af4be8d008a6", clientId) +16:40:01.599 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:38e9a88c +16:40:01.600 [XNIO-1 task-1] RYChWcrzTWuZBxCBuqpVXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a3a8b8e8-ae29-4b32-868d-af4be8d008a6, base path is set to: null +16:40:01.600 [XNIO-1 task-1] RYChWcrzTWuZBxCBuqpVXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.600 [XNIO-1 task-1] RYChWcrzTWuZBxCBuqpVXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.600 [XNIO-1 task-1] RYChWcrzTWuZBxCBuqpVXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a3a8b8e8-ae29-4b32-868d-af4be8d008a6, base path is set to: null +16:40:01.600 [XNIO-1 task-1] RYChWcrzTWuZBxCBuqpVXw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3a8b8e8-ae29-4b32-868d-af4be8d008a6", "a3a8b8e8-ae29-4b32-868d-af4be8d008a6", clientId) +16:40:01.611 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.611 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.611 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.611 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.611 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.611 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG com.networknt.schema.TypeValidator debug - validate( "8747f85b-a3e5-46df-9e42-22454f6387b5", {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.612 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.612 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.612 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG com.networknt.schema.TypeValidator debug - validate( "94bc82a9-c394-4b3b-9be9-02899dd9", {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.612 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.612 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"94bc82a9-c394-4b3b-9be9-02899dd9","clientDesc":"8747f85b-a3e5-46df-9e42-22454f6387b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.612 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.612 [XNIO-1 task-1] W4XFw-zvTW-m6nh3UE_QsA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.616 [XNIO-1 task-1] ciB4lqOCT62j26uWOaN17g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ea1d670-9510-403f-89c1-2062e693ff1b, base path is set to: null +16:40:01.617 [XNIO-1 task-1] ciB4lqOCT62j26uWOaN17g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.617 [XNIO-1 task-1] ciB4lqOCT62j26uWOaN17g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.617 [XNIO-1 task-1] ciB4lqOCT62j26uWOaN17g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ea1d670-9510-403f-89c1-2062e693ff1b, base path is set to: null +16:40:01.617 [XNIO-1 task-1] ciB4lqOCT62j26uWOaN17g DEBUG com.networknt.schema.TypeValidator debug - validate( "4ea1d670-9510-403f-89c1-2062e693ff1b", "4ea1d670-9510-403f-89c1-2062e693ff1b", clientId) +16:40:01.622 [XNIO-1 task-1] JdM4RsUjRWahGAs1Zm82SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d +16:40:01.623 [XNIO-1 task-1] JdM4RsUjRWahGAs1Zm82SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.623 [XNIO-1 task-1] JdM4RsUjRWahGAs1Zm82SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:01.623 [XNIO-1 task-1] JdM4RsUjRWahGAs1Zm82SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d +16:40:01.627 [XNIO-1 task-1] PCP2WGFdS_-h3vCIaHuuFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.627 [XNIO-1 task-1] PCP2WGFdS_-h3vCIaHuuFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.627 [XNIO-1 task-1] PCP2WGFdS_-h3vCIaHuuFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.644 [XNIO-1 task-1] Zo0jElu_S0GuBJ2ckIKlyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/437a9808-a58c-47d1-952a-cdf7d1889f2a, base path is set to: null +16:40:01.644 [XNIO-1 task-1] Zo0jElu_S0GuBJ2ckIKlyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.644 [XNIO-1 task-1] Zo0jElu_S0GuBJ2ckIKlyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.644 [XNIO-1 task-1] Zo0jElu_S0GuBJ2ckIKlyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/437a9808-a58c-47d1-952a-cdf7d1889f2a, base path is set to: null +16:40:01.644 [XNIO-1 task-1] Zo0jElu_S0GuBJ2ckIKlyA DEBUG com.networknt.schema.TypeValidator debug - validate( "437a9808-a58c-47d1-952a-cdf7d1889f2a", "437a9808-a58c-47d1-952a-cdf7d1889f2a", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:01.649 [XNIO-1 task-1] Zo0jElu_S0GuBJ2ckIKlyA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/437a9808-a58c-47d1-952a-cdf7d1889f2a} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.655 [XNIO-1 task-1] 6wj1uTkzT7KtTsO0-hpx_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/050d8e28-2ce8-4838-b838-4899de36af22, base path is set to: null +16:40:01.655 [XNIO-1 task-1] 6wj1uTkzT7KtTsO0-hpx_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.655 [XNIO-1 task-1] 6wj1uTkzT7KtTsO0-hpx_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.655 [XNIO-1 task-1] 6wj1uTkzT7KtTsO0-hpx_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/050d8e28-2ce8-4838-b838-4899de36af22, base path is set to: null +16:40:01.655 [XNIO-1 task-1] 6wj1uTkzT7KtTsO0-hpx_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "050d8e28-2ce8-4838-b838-4899de36af22", "050d8e28-2ce8-4838-b838-4899de36af22", clientId) +16:40:01.659 [hz._hzInstance_1_dev.partition-operation.thread-13] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:40:01.660 [XNIO-1 task-1] 6wj1uTkzT7KtTsO0-hpx_Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.660 [XNIO-1 task-1] 6wj1uTkzT7KtTsO0-hpx_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:01.662 [XNIO-1 task-1] gkDWNqfHSwmwFDDrZrgRFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.662 [XNIO-1 task-1] gkDWNqfHSwmwFDDrZrgRFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.662 [XNIO-1 task-1] gkDWNqfHSwmwFDDrZrgRFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.671 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:02b39c55 +16:40:01.674 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3c02f5ea-678e-4ddb-b6fa-9e0f7b37938f +16:40:01.678 [XNIO-1 task-1] OzD_6ldlTfennFYiBQjHPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cff27167-59a5-446c-be4b-f0012effb496, base path is set to: null +16:40:01.679 [XNIO-1 task-1] OzD_6ldlTfennFYiBQjHPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.679 [XNIO-1 task-1] OzD_6ldlTfennFYiBQjHPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.679 [XNIO-1 task-1] OzD_6ldlTfennFYiBQjHPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cff27167-59a5-446c-be4b-f0012effb496, base path is set to: null +16:40:01.679 [XNIO-1 task-1] OzD_6ldlTfennFYiBQjHPg DEBUG com.networknt.schema.TypeValidator debug - validate( "cff27167-59a5-446c-be4b-f0012effb496", "cff27167-59a5-446c-be4b-f0012effb496", clientId) +16:40:01.688 [XNIO-1 task-1] LlLC-k3eROOP1oG4wThcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.688 [XNIO-1 task-1] LlLC-k3eROOP1oG4wThcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.688 [XNIO-1 task-1] LlLC-k3eROOP1oG4wThcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.689 [XNIO-1 task-1] LlLC-k3eROOP1oG4wThcDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:01.694 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3c02f5ea-678e-4ddb-b6fa-9e0f7b37938f +16:40:01.698 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.698 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.699 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.699 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.699 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.699 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG com.networknt.schema.TypeValidator debug - validate( "c175e0c1-961a-4427-97d5-36b7b9b24f43", {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.700 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.700 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.700 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG com.networknt.schema.TypeValidator debug - validate( "a1049085-c39f-48a5-b9f9-c6709265", {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.700 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.700 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a1049085-c39f-48a5-b9f9-c6709265","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.700 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.700 [XNIO-1 task-1] dHNoPCjOQOWhzsTbObTYEA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.703 [XNIO-1 task-1] BtneIAvOSvyPqbAJY5LgoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.703 [XNIO-1 task-1] BtneIAvOSvyPqbAJY5LgoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.704 [XNIO-1 task-1] BtneIAvOSvyPqbAJY5LgoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.724 [XNIO-1 task-1] b-HRVtKVS6i_WFdlyBuAsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.724 [XNIO-1 task-1] b-HRVtKVS6i_WFdlyBuAsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.724 [XNIO-1 task-1] b-HRVtKVS6i_WFdlyBuAsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.733 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:38e9a88c +16:40:01.741 [XNIO-1 task-1] M73Axi9WQ1qx3rA5L3CltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.741 [XNIO-1 task-1] M73Axi9WQ1qx3rA5L3CltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.741 [XNIO-1 task-1] M73Axi9WQ1qx3rA5L3CltA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.741 [XNIO-1 task-1] M73Axi9WQ1qx3rA5L3CltA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:01.751 [XNIO-1 task-1] 21Uk-PTHRhWy4IB4SKuouw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.751 [XNIO-1 task-1] 21Uk-PTHRhWy4IB4SKuouw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.751 [XNIO-1 task-1] 21Uk-PTHRhWy4IB4SKuouw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.764 [XNIO-1 task-1] Ex11x0ZtS0OcUybWIE5HJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.765 [XNIO-1 task-1] Ex11x0ZtS0OcUybWIE5HJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.765 [XNIO-1 task-1] Ex11x0ZtS0OcUybWIE5HJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.782 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.782 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.782 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.782 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.782 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.782 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb", {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.782 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.783 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.783 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "fb3e18e2-3750-42a4-9243-bf51a324", {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.783 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.783 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"fb3e18e2-3750-42a4-9243-bf51a324","clientDesc":"8f03e6c9-3bf1-4d7f-ad2f-0ddf95f3a1fb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.783 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.783 [XNIO-1 task-1] -WntFJ7eT2Kje3vWCAwoTA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.788 [XNIO-1 task-1] 829X8JSTR4eS0lLxEgirgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.788 [XNIO-1 task-1] 829X8JSTR4eS0lLxEgirgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.788 [XNIO-1 task-1] 829X8JSTR4eS0lLxEgirgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.818 [XNIO-1 task-1] 829X8JSTR4eS0lLxEgirgA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:01.830 [XNIO-1 task-1] -b15e-D-RqapzYA0DrIHSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ac1494ad-7830-42b2-8563-38f321763919, base path is set to: null +16:40:01.830 [XNIO-1 task-1] -b15e-D-RqapzYA0DrIHSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.831 [XNIO-1 task-1] -b15e-D-RqapzYA0DrIHSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.831 [XNIO-1 task-1] -b15e-D-RqapzYA0DrIHSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ac1494ad-7830-42b2-8563-38f321763919, base path is set to: null +16:40:01.831 [XNIO-1 task-1] -b15e-D-RqapzYA0DrIHSA DEBUG com.networknt.schema.TypeValidator debug - validate( "ac1494ad-7830-42b2-8563-38f321763919", "ac1494ad-7830-42b2-8563-38f321763919", clientId) +16:40:01.841 [XNIO-1 task-1] egdpmFM1S-KzI50DQI2x8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d +16:40:01.842 [XNIO-1 task-1] egdpmFM1S-KzI50DQI2x8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.842 [XNIO-1 task-1] egdpmFM1S-KzI50DQI2x8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:01.842 [XNIO-1 task-1] egdpmFM1S-KzI50DQI2x8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d +16:40:01.846 [XNIO-1 task-1] hiTOTL1AShmChywqMftMpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d, base path is set to: null +16:40:01.846 [XNIO-1 task-1] hiTOTL1AShmChywqMftMpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.846 [XNIO-1 task-1] hiTOTL1AShmChywqMftMpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.846 [XNIO-1 task-1] hiTOTL1AShmChywqMftMpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d, base path is set to: null +16:40:01.846 [XNIO-1 task-1] hiTOTL1AShmChywqMftMpg DEBUG com.networknt.schema.TypeValidator debug - validate( "60c0582a-396c-40bb-920a-dc8492b7299d", "60c0582a-396c-40bb-920a-dc8492b7299d", clientId) +16:40:01.855 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG com.networknt.schema.TypeValidator debug - validate( "0a22a299-6f47-4c18-9102-4b4fbfccba00", {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG com.networknt.schema.TypeValidator debug - validate( "6c65834e-405d-4c0c-8bfb-fd9c566e", {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6c65834e-405d-4c0c-8bfb-fd9c566e","clientDesc":"0a22a299-6f47-4c18-9102-4b4fbfccba00","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.856 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.857 [XNIO-1 task-1] wWFFzwYITeORHSLXyN_E-A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.860 [XNIO-1 task-1] obuR5UIGRLqiRG87x8IZMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d, base path is set to: null +16:40:01.860 [XNIO-1 task-1] obuR5UIGRLqiRG87x8IZMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.861 [XNIO-1 task-1] obuR5UIGRLqiRG87x8IZMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.861 [XNIO-1 task-1] obuR5UIGRLqiRG87x8IZMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d, base path is set to: null +16:40:01.861 [XNIO-1 task-1] obuR5UIGRLqiRG87x8IZMA DEBUG com.networknt.schema.TypeValidator debug - validate( "60c0582a-396c-40bb-920a-dc8492b7299d", "60c0582a-396c-40bb-920a-dc8492b7299d", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:01.867 [XNIO-1 task-1] obuR5UIGRLqiRG87x8IZMA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.873 [XNIO-1 task-1] Z7y6732jQu-IOG6jkjONog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d, base path is set to: null +16:40:01.873 [XNIO-1 task-1] Z7y6732jQu-IOG6jkjONog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.873 [XNIO-1 task-1] Z7y6732jQu-IOG6jkjONog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.873 [XNIO-1 task-1] Z7y6732jQu-IOG6jkjONog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d, base path is set to: null +16:40:01.873 [XNIO-1 task-1] Z7y6732jQu-IOG6jkjONog DEBUG com.networknt.schema.TypeValidator debug - validate( "60c0582a-396c-40bb-920a-dc8492b7299d", "60c0582a-396c-40bb-920a-dc8492b7299d", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:01.878 [XNIO-1 task-1] Z7y6732jQu-IOG6jkjONog DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/60c0582a-396c-40bb-920a-dc8492b7299d} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.885 [XNIO-1 task-1] VmKtzY-pR4qD8cK3dV-Y6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.885 [XNIO-1 task-1] VmKtzY-pR4qD8cK3dV-Y6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.885 [XNIO-1 task-1] VmKtzY-pR4qD8cK3dV-Y6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.887 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:02b39c55 +16:40:01.898 [XNIO-1 task-1] 2avR8FDpSDurFNWkSXnNBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.898 [XNIO-1 task-1] 2avR8FDpSDurFNWkSXnNBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.899 [XNIO-1 task-1] 2avR8FDpSDurFNWkSXnNBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.904 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f13bd2de-b092-4fa1-817c-4bd454c5e7dd +16:40:01.904 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f13bd2de-b092-4fa1-817c-4bd454c5e7dd +16:40:01.915 [XNIO-1 task-1] tKi3IJUCS7-trVd7sMC_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e +16:40:01.915 [XNIO-1 task-1] tKi3IJUCS7-trVd7sMC_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.915 [XNIO-1 task-1] tKi3IJUCS7-trVd7sMC_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:01.915 [XNIO-1 task-1] tKi3IJUCS7-trVd7sMC_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e +16:40:01.924 [XNIO-1 task-1] rBX3RhYbQ_ia1JzypaTXGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.924 [XNIO-1 task-1] rBX3RhYbQ_ia1JzypaTXGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.924 [XNIO-1 task-1] rBX3RhYbQ_ia1JzypaTXGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.924 [XNIO-1 task-1] rBX3RhYbQ_ia1JzypaTXGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:01.931 [XNIO-1 task-1] 5L7zK-g3S3miIalzUZdDxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.932 [XNIO-1 task-1] 5L7zK-g3S3miIalzUZdDxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.932 [XNIO-1 task-1] 5L7zK-g3S3miIalzUZdDxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.932 [XNIO-1 task-1] 5L7zK-g3S3miIalzUZdDxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:01.944 [XNIO-1 task-1] ZeHrWNLnR3Wn06GpGQQTQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39, base path is set to: null +16:40:01.944 [XNIO-1 task-1] ZeHrWNLnR3Wn06GpGQQTQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.944 [XNIO-1 task-1] ZeHrWNLnR3Wn06GpGQQTQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.944 [XNIO-1 task-1] ZeHrWNLnR3Wn06GpGQQTQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39, base path is set to: null +16:40:01.945 [XNIO-1 task-1] ZeHrWNLnR3Wn06GpGQQTQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c09178ef-ef27-4221-b3bd-1b73107a0c39", "c09178ef-ef27-4221-b3bd-1b73107a0c39", clientId) +16:40:01.949 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.949 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.949 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.950 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:01.950 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:01.950 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "71291c58-2ff6-4652-a109-59e948705015", {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:01.950 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:01.950 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:01.950 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "ca93f386-92a0-42a6-a40e-4c1d031c", {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:01.950 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:01.953 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ca93f386-92a0-42a6-a40e-4c1d031c","clientDesc":"71291c58-2ff6-4652-a109-59e948705015","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:01.953 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.953 [XNIO-1 task-1] 1-dvN76NQsOUnYbw8mV3cw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:01.957 [XNIO-1 task-1] QDc-FLC4TI6q7FsMzhi6kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.957 [XNIO-1 task-1] QDc-FLC4TI6q7FsMzhi6kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.957 [XNIO-1 task-1] QDc-FLC4TI6q7FsMzhi6kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:01.957 [XNIO-1 task-1] QDc-FLC4TI6q7FsMzhi6kg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:01.970 [XNIO-1 task-1] mpAb_W5gTt-ZKq7Y2XLf8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:40:01.971 [XNIO-1 task-1] mpAb_W5gTt-ZKq7Y2XLf8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:01.971 [XNIO-1 task-1] mpAb_W5gTt-ZKq7Y2XLf8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:01.971 [XNIO-1 task-1] mpAb_W5gTt-ZKq7Y2XLf8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:40:01.971 [XNIO-1 task-1] mpAb_W5gTt-ZKq7Y2XLf8A DEBUG com.networknt.schema.TypeValidator debug - validate( "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", clientId) +16:40:01.976 [hz._hzInstance_1_dev.partition-operation.thread-9] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:40:01.976 [XNIO-1 task-1] mpAb_W5gTt-ZKq7Y2XLf8A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:01.977 [XNIO-1 task-1] mpAb_W5gTt-ZKq7Y2XLf8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:01.984 [XNIO-1 task-1] B6Jj5ixyQMaw3PMqWHjp2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.984 [XNIO-1 task-1] B6Jj5ixyQMaw3PMqWHjp2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.984 [XNIO-1 task-1] B6Jj5ixyQMaw3PMqWHjp2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:01.984 [XNIO-1 task-1] B6Jj5ixyQMaw3PMqWHjp2g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:02.024 [XNIO-1 task-1] g5MOccQcQh6iG3X6HaWGbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e47e10a-e5c1-4f7b-8489-5183ea12169d +16:40:02.024 [XNIO-1 task-1] g5MOccQcQh6iG3X6HaWGbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.024 [XNIO-1 task-1] g5MOccQcQh6iG3X6HaWGbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.024 [XNIO-1 task-1] g5MOccQcQh6iG3X6HaWGbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e47e10a-e5c1-4f7b-8489-5183ea12169d +16:40:02.027 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b486c993 +16:40:02.027 [XNIO-1 task-1] S8NqwLSsT4yIla7HMsro_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.027 [XNIO-1 task-1] S8NqwLSsT4yIla7HMsro_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.027 [XNIO-1 task-1] S8NqwLSsT4yIla7HMsro_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.028 [XNIO-1 task-1] S8NqwLSsT4yIla7HMsro_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.028 [XNIO-1 task-1] S8NqwLSsT4yIla7HMsro_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:02.038 [XNIO-1 task-1] PMIBBq7UQU2NMCmi9mWNvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.038 [XNIO-1 task-1] PMIBBq7UQU2NMCmi9mWNvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.039 [XNIO-1 task-1] PMIBBq7UQU2NMCmi9mWNvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.059 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:64d6ca78 +16:40:02.059 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:64d6ca78 +16:40:02.059 [XNIO-1 task-1] C6MkTtHXQCO_4asCjrZWxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.059 [XNIO-1 task-1] C6MkTtHXQCO_4asCjrZWxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.060 [XNIO-1 task-1] C6MkTtHXQCO_4asCjrZWxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:02.070 [XNIO-1 task-1] bQ4XQ3mnS5iCy4rewmhiVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e47e10a-e5c1-4f7b-8489-5183ea12169d +16:40:02.070 [XNIO-1 task-1] bQ4XQ3mnS5iCy4rewmhiVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.070 [XNIO-1 task-1] bQ4XQ3mnS5iCy4rewmhiVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.070 [XNIO-1 task-1] bQ4XQ3mnS5iCy4rewmhiVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6e47e10a-e5c1-4f7b-8489-5183ea12169d +16:40:02.071 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d365b0f4 +16:40:02.073 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.073 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d365b0f4 +16:40:02.073 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d365b0f4 +16:40:02.073 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0faa441f-ec0a-4195-9349-1c039098a689", {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e648a4d8-d6d3-4e06-b0a7-2d2fcbc4", {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e648a4d8-d6d3-4e06-b0a7-2d2fcbc4","clientDesc":"0faa441f-ec0a-4195-9349-1c039098a689","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.074 [XNIO-1 task-1] 4Flh4aegTRm6Sj8oczaNxQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:02.077 [XNIO-1 task-1] dlYC9TZtQAOsGOp5YP1E_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8bc2a762-2229-4b47-9432-7f073e7047e0, base path is set to: null +16:40:02.077 [XNIO-1 task-1] dlYC9TZtQAOsGOp5YP1E_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.078 [XNIO-1 task-1] dlYC9TZtQAOsGOp5YP1E_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.078 [XNIO-1 task-1] dlYC9TZtQAOsGOp5YP1E_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8bc2a762-2229-4b47-9432-7f073e7047e0, base path is set to: null +16:40:02.078 [XNIO-1 task-1] dlYC9TZtQAOsGOp5YP1E_g DEBUG com.networknt.schema.TypeValidator debug - validate( "8bc2a762-2229-4b47-9432-7f073e7047e0", "8bc2a762-2229-4b47-9432-7f073e7047e0", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:02.085 [XNIO-1 task-1] dlYC9TZtQAOsGOp5YP1E_g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/8bc2a762-2229-4b47-9432-7f073e7047e0} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:02.090 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.090 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.090 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.091 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d32bbcf4-2ec7-43ab-9c44-985fa0d9","clientDesc":"68c4cfef-e8fc-4eac-b6cc-f6db84432732","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.092 [XNIO-1 task-1] NAHK4GJhQzqBPP7k__Mhhg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:02.096 [XNIO-1 task-1] b3wMU5FBT8GmSYFVkhi60A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f13bd2de-b092-4fa1-817c-4bd454c5e7dd +16:40:02.096 [XNIO-1 task-1] b3wMU5FBT8GmSYFVkhi60A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.096 [XNIO-1 task-1] b3wMU5FBT8GmSYFVkhi60A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.096 [XNIO-1 task-1] b3wMU5FBT8GmSYFVkhi60A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f13bd2de-b092-4fa1-817c-4bd454c5e7dd +16:40:02.098 [XNIO-1 task-1] gXSqtdipSbizGHgA-J5wvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/96c3556e-59d9-4040-b573-38f8ca864f85, base path is set to: null +16:40:02.098 [XNIO-1 task-1] gXSqtdipSbizGHgA-J5wvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.099 [XNIO-1 task-1] gXSqtdipSbizGHgA-J5wvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.099 [XNIO-1 task-1] gXSqtdipSbizGHgA-J5wvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/96c3556e-59d9-4040-b573-38f8ca864f85, base path is set to: null +16:40:02.099 [XNIO-1 task-1] gXSqtdipSbizGHgA-J5wvA DEBUG com.networknt.schema.TypeValidator debug - validate( "96c3556e-59d9-4040-b573-38f8ca864f85", "96c3556e-59d9-4040-b573-38f8ca864f85", clientId) +16:40:02.105 [XNIO-1 task-1] _uJ9LAKURYWlmEVa-_SSqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f13bd2de-b092-4fa1-817c-4bd454c5e7dd +16:40:02.105 [XNIO-1 task-1] _uJ9LAKURYWlmEVa-_SSqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.105 [XNIO-1 task-1] _uJ9LAKURYWlmEVa-_SSqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.105 [XNIO-1 task-1] _uJ9LAKURYWlmEVa-_SSqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f13bd2de-b092-4fa1-817c-4bd454c5e7dd +16:40:02.105 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f13bd2de-b092-4fa1-817c-4bd454c5e7dd +16:40:02.112 [XNIO-1 task-1] gK224aedRuGrexSnuKZm7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a3c1e462-1f44-45a9-a58e-621e19154596 +16:40:02.112 [XNIO-1 task-1] gK224aedRuGrexSnuKZm7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.112 [XNIO-1 task-1] gK224aedRuGrexSnuKZm7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.112 [XNIO-1 task-1] gK224aedRuGrexSnuKZm7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a3c1e462-1f44-45a9-a58e-621e19154596 +16:40:02.116 [XNIO-1 task-1] Uh3lwAPGRFKley6GbVH2vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.117 [XNIO-1 task-1] Uh3lwAPGRFKley6GbVH2vA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.117 [XNIO-1 task-1] Uh3lwAPGRFKley6GbVH2vA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.117 [XNIO-1 task-1] Uh3lwAPGRFKley6GbVH2vA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:02.131 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.131 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.131 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.131 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d747ea37-58e8-4496-9b78-ab05f010","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.132 [XNIO-1 task-1] Lat1RdzKQcOF7_VV1IA5gA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:02.134 [XNIO-1 task-1] FSq26U65SZatM9dSIGL-og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.134 [XNIO-1 task-1] FSq26U65SZatM9dSIGL-og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.134 [XNIO-1 task-1] FSq26U65SZatM9dSIGL-og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.141 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7f9f3e65-daaa-4c55-bec8-4f5c1d7ec809 +16:40:02.153 [XNIO-1 task-1] 9gHA8wuLSwaUl00twYrpOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/57d456c4-5dcd-456a-8402-d505b14cacc0, base path is set to: null +16:40:02.153 [XNIO-1 task-1] 9gHA8wuLSwaUl00twYrpOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.153 [XNIO-1 task-1] 9gHA8wuLSwaUl00twYrpOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.153 [XNIO-1 task-1] 9gHA8wuLSwaUl00twYrpOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/57d456c4-5dcd-456a-8402-d505b14cacc0, base path is set to: null +16:40:02.153 [XNIO-1 task-1] 9gHA8wuLSwaUl00twYrpOA DEBUG com.networknt.schema.TypeValidator debug - validate( "57d456c4-5dcd-456a-8402-d505b14cacc0", "57d456c4-5dcd-456a-8402-d505b14cacc0", clientId) +16:40:02.158 [XNIO-1 task-1] I_pOEGptRU2oX94w7aRdJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.158 [XNIO-1 task-1] I_pOEGptRU2oX94w7aRdJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.158 [XNIO-1 task-1] I_pOEGptRU2oX94w7aRdJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.169 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d365b0f4 +16:40:02.177 [XNIO-1 task-1] OrfUACchSAStA8CuAmRUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.177 [XNIO-1 task-1] OrfUACchSAStA8CuAmRUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.177 [XNIO-1 task-1] OrfUACchSAStA8CuAmRUkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.178 [XNIO-1 task-1] OrfUACchSAStA8CuAmRUkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:02.187 [XNIO-1 task-1] IyHHiilyQXiPG3xnKvNLEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.188 [XNIO-1 task-1] IyHHiilyQXiPG3xnKvNLEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.188 [XNIO-1 task-1] IyHHiilyQXiPG3xnKvNLEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.193 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:86af6a1c-fb95-41c3-a558-e3860c54c945 +16:40:02.196 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:d365b0f4 +16:40:02.202 [XNIO-1 task-1] Fao6CNoCTj600LVy6UFGEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/57d456c4-5dcd-456a-8402-d505b14cacc0 +16:40:02.202 [XNIO-1 task-1] Fao6CNoCTj600LVy6UFGEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.202 [XNIO-1 task-1] Fao6CNoCTj600LVy6UFGEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.202 [XNIO-1 task-1] Fao6CNoCTj600LVy6UFGEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/57d456c4-5dcd-456a-8402-d505b14cacc0 +16:40:02.209 [XNIO-1 task-1] 8pKzJbn8SHOQaJjuNs1fnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3768ad-ef85-4bbd-8dcd-eab79783618b, base path is set to: null +16:40:02.209 [XNIO-1 task-1] 8pKzJbn8SHOQaJjuNs1fnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.209 [XNIO-1 task-1] 8pKzJbn8SHOQaJjuNs1fnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.209 [XNIO-1 task-1] 8pKzJbn8SHOQaJjuNs1fnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3c3768ad-ef85-4bbd-8dcd-eab79783618b, base path is set to: null +16:40:02.209 [XNIO-1 task-1] 8pKzJbn8SHOQaJjuNs1fnA DEBUG com.networknt.schema.TypeValidator debug - validate( "3c3768ad-ef85-4bbd-8dcd-eab79783618b", "3c3768ad-ef85-4bbd-8dcd-eab79783618b", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:02.216 [XNIO-1 task-1] 8pKzJbn8SHOQaJjuNs1fnA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/3c3768ad-ef85-4bbd-8dcd-eab79783618b} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:02.222 [XNIO-1 task-1] i5QCdk5OSVKCDGt-Zi9PBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.222 [XNIO-1 task-1] i5QCdk5OSVKCDGt-Zi9PBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.222 [XNIO-1 task-1] i5QCdk5OSVKCDGt-Zi9PBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.222 [XNIO-1 task-1] i5QCdk5OSVKCDGt-Zi9PBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:02.230 [XNIO-1 task-1] 7SYBJxpgRuyQ6uJlZ4d7hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/23fb5342-59f3-478d-8504-8b360b318b7a, base path is set to: null +16:40:02.230 [XNIO-1 task-1] 7SYBJxpgRuyQ6uJlZ4d7hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.231 [XNIO-1 task-1] 7SYBJxpgRuyQ6uJlZ4d7hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.231 [XNIO-1 task-1] 7SYBJxpgRuyQ6uJlZ4d7hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/23fb5342-59f3-478d-8504-8b360b318b7a, base path is set to: null +16:40:02.231 [XNIO-1 task-1] 7SYBJxpgRuyQ6uJlZ4d7hg DEBUG com.networknt.schema.TypeValidator debug - validate( "23fb5342-59f3-478d-8504-8b360b318b7a", "23fb5342-59f3-478d-8504-8b360b318b7a", clientId) +16:40:02.238 [XNIO-1 task-1] Ny6t00GbRPi3IQy6yVQk2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4ea1d670-9510-403f-89c1-2062e693ff1b +16:40:02.239 [XNIO-1 task-1] Ny6t00GbRPi3IQy6yVQk2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.239 [XNIO-1 task-1] Ny6t00GbRPi3IQy6yVQk2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.239 [XNIO-1 task-1] Ny6t00GbRPi3IQy6yVQk2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4ea1d670-9510-403f-89c1-2062e693ff1b +16:40:02.245 [XNIO-1 task-1] FflFnN8JQHmLfq4KAto6Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.245 [XNIO-1 task-1] FflFnN8JQHmLfq4KAto6Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.246 [XNIO-1 task-1] FflFnN8JQHmLfq4KAto6Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.246 [XNIO-1 task-1] FflFnN8JQHmLfq4KAto6Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:02.257 [XNIO-1 task-1] Aq5oogj1RjCJrfnq3y4P5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:40:02.257 [XNIO-1 task-1] Aq5oogj1RjCJrfnq3y4P5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.257 [XNIO-1 task-1] Aq5oogj1RjCJrfnq3y4P5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.257 [XNIO-1 task-1] Aq5oogj1RjCJrfnq3y4P5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eefea24a-0326-41a6-8a6a-8b4945d1bc1e, base path is set to: null +16:40:02.257 [XNIO-1 task-1] Aq5oogj1RjCJrfnq3y4P5A DEBUG com.networknt.schema.TypeValidator debug - validate( "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", "eefea24a-0326-41a6-8a6a-8b4945d1bc1e", clientId) +16:40:02.261 [XNIO-1 task-1] M4SgsowbTB2ZnQBqeA-g0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.261 [XNIO-1 task-1] M4SgsowbTB2ZnQBqeA-g0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.261 [XNIO-1 task-1] M4SgsowbTB2ZnQBqeA-g0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.275 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6972b0c7-4db0-4f4f-bece-7b241e3826c1 +16:40:02.277 [XNIO-1 task-1] jujpDzK8SwGgsnmoIyek9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1ef3dcda-55a2-4a76-bdbb-cf11e3ef93af +16:40:02.278 [XNIO-1 task-1] jujpDzK8SwGgsnmoIyek9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.278 [XNIO-1 task-1] jujpDzK8SwGgsnmoIyek9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.279 [XNIO-1 task-1] jujpDzK8SwGgsnmoIyek9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1ef3dcda-55a2-4a76-bdbb-cf11e3ef93af +16:40:02.286 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.286 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.286 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.286 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.286 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.286 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.286 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.287 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.287 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.287 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.287 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.287 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1f09314-7fbb-4c85-8f9f-3f47aea6","clientDesc":"4793a3a8-cc27-469c-a22d-f55f77ba5f83","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.287 [XNIO-1 task-1] LA9W00nLSdOzdqSV_CqEDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:02.292 [XNIO-1 task-1] 77bYT7_1S8aDg8Ly_AdbRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12cc0587-7741-4d7d-82b5-29dab91c2109 +16:40:02.292 [XNIO-1 task-1] 77bYT7_1S8aDg8Ly_AdbRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.292 [XNIO-1 task-1] 77bYT7_1S8aDg8Ly_AdbRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.292 [XNIO-1 task-1] 77bYT7_1S8aDg8Ly_AdbRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12cc0587-7741-4d7d-82b5-29dab91c2109 +16:40:02.292 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:12cc0587-7741-4d7d-82b5-29dab91c2109 +16:40:02.301 [hz._hzInstance_1_dev.partition-operation.thread-4] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +16:40:02.302 [XNIO-1 task-1] 77bYT7_1S8aDg8Ly_AdbRQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.303 [XNIO-1 task-1] 77bYT7_1S8aDg8Ly_AdbRQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:02.313 [XNIO-1 task-1] Skuv57ZySaq0Wv8E8YyrZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39 +16:40:02.313 [XNIO-1 task-1] Skuv57ZySaq0Wv8E8YyrZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.313 [XNIO-1 task-1] Skuv57ZySaq0Wv8E8YyrZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.313 [XNIO-1 task-1] Skuv57ZySaq0Wv8E8YyrZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39 +16:40:02.317 [XNIO-1 task-1] Skuv57ZySaq0Wv8E8YyrZA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.318 [XNIO-1 task-1] Skuv57ZySaq0Wv8E8YyrZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:02.325 [XNIO-1 task-1] ltMSt2i3S1qOUnHW0qxLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39 +16:40:02.325 [XNIO-1 task-1] ltMSt2i3S1qOUnHW0qxLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.325 [XNIO-1 task-1] ltMSt2i3S1qOUnHW0qxLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.325 [XNIO-1 task-1] ltMSt2i3S1qOUnHW0qxLtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c09178ef-ef27-4221-b3bd-1b73107a0c39 +16:40:02.330 [XNIO-1 task-1] ltMSt2i3S1qOUnHW0qxLtQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.331 [XNIO-1 task-1] ltMSt2i3S1qOUnHW0qxLtQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:02.336 [XNIO-1 task-1] NK2gMuQaQ3aU_iUHgYZ5GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.336 [XNIO-1 task-1] NK2gMuQaQ3aU_iUHgYZ5GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.336 [XNIO-1 task-1] NK2gMuQaQ3aU_iUHgYZ5GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.338 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:42b86c74-146f-474e-a395-32081c164819 +16:40:02.354 [XNIO-1 task-1] CK7K77aXTnaxJY-v4mbrsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.354 [XNIO-1 task-1] CK7K77aXTnaxJY-v4mbrsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.354 [XNIO-1 task-1] CK7K77aXTnaxJY-v4mbrsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.375 [XNIO-1 task-1] y-BniPvzQVewL4cQ4tFrjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.375 [XNIO-1 task-1] y-BniPvzQVewL4cQ4tFrjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.375 [XNIO-1 task-1] y-BniPvzQVewL4cQ4tFrjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.375 [XNIO-1 task-1] y-BniPvzQVewL4cQ4tFrjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:02.383 [XNIO-1 task-1] _E5YUnAmQZGH0YzM_GxzRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.384 [XNIO-1 task-1] _E5YUnAmQZGH0YzM_GxzRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.384 [XNIO-1 task-1] _E5YUnAmQZGH0YzM_GxzRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.396 [XNIO-1 task-1] 88rtjNaKS2i6r-DUlfYcfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.397 [XNIO-1 task-1] 88rtjNaKS2i6r-DUlfYcfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.397 [XNIO-1 task-1] 88rtjNaKS2i6r-DUlfYcfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.411 [XNIO-1 task-1] bcQZ08aUSua1wZSIjny6wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/53b92d52-9cd8-4f73-8f56-a17b45d9cde9, base path is set to: null +16:40:02.411 [XNIO-1 task-1] bcQZ08aUSua1wZSIjny6wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.411 [XNIO-1 task-1] bcQZ08aUSua1wZSIjny6wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.411 [XNIO-1 task-1] bcQZ08aUSua1wZSIjny6wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/53b92d52-9cd8-4f73-8f56-a17b45d9cde9, base path is set to: null +16:40:02.411 [XNIO-1 task-1] bcQZ08aUSua1wZSIjny6wg DEBUG com.networknt.schema.TypeValidator debug - validate( "53b92d52-9cd8-4f73-8f56-a17b45d9cde9", "53b92d52-9cd8-4f73-8f56-a17b45d9cde9", clientId) +16:40:02.422 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.422 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG com.networknt.schema.TypeValidator debug - validate( "690cfdc8-0e84-42d0-9b26-27e5c5410dfe", {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG com.networknt.schema.TypeValidator debug - validate( "0a4dd4b5-c199-445c-b47b-9f8e43eb", {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0a4dd4b5-c199-445c-b47b-9f8e43eb","clientDesc":"690cfdc8-0e84-42d0-9b26-27e5c5410dfe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:02.423 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.424 [XNIO-1 task-1] -sEpOJ1yTVG-Cb60DPkH4A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:02.426 [XNIO-1 task-1] oRpKsrBoSOS1xMNMyxVK2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aa1effd2-989c-46fd-9cf9-3dd705a2a15b, base path is set to: null +16:40:02.426 [XNIO-1 task-1] oRpKsrBoSOS1xMNMyxVK2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.426 [XNIO-1 task-1] oRpKsrBoSOS1xMNMyxVK2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.426 [XNIO-1 task-1] oRpKsrBoSOS1xMNMyxVK2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aa1effd2-989c-46fd-9cf9-3dd705a2a15b, base path is set to: null +16:40:02.426 [XNIO-1 task-1] oRpKsrBoSOS1xMNMyxVK2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "aa1effd2-989c-46fd-9cf9-3dd705a2a15b", "aa1effd2-989c-46fd-9cf9-3dd705a2a15b", clientId) +16:40:02.433 [XNIO-1 task-1] _Lrll0zESBmPVracUSSZzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa81104-1f8e-4ecf-bb63-51484b7b4086 +16:40:02.433 [XNIO-1 task-1] _Lrll0zESBmPVracUSSZzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.433 [XNIO-1 task-1] _Lrll0zESBmPVracUSSZzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.434 [XNIO-1 task-1] _Lrll0zESBmPVracUSSZzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa81104-1f8e-4ecf-bb63-51484b7b4086 +16:40:02.451 [XNIO-1 task-1] WTaym_pHTxOUJhs3LzBukA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aa1effd2-989c-46fd-9cf9-3dd705a2a15b, base path is set to: null +16:40:02.451 [XNIO-1 task-1] WTaym_pHTxOUJhs3LzBukA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.451 [XNIO-1 task-1] WTaym_pHTxOUJhs3LzBukA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.451 [XNIO-1 task-1] WTaym_pHTxOUJhs3LzBukA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/aa1effd2-989c-46fd-9cf9-3dd705a2a15b, base path is set to: null +16:40:02.451 [XNIO-1 task-1] WTaym_pHTxOUJhs3LzBukA DEBUG com.networknt.schema.TypeValidator debug - validate( "aa1effd2-989c-46fd-9cf9-3dd705a2a15b", "aa1effd2-989c-46fd-9cf9-3dd705a2a15b", clientId) +16:40:02.460 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.460 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.460 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG com.networknt.schema.TypeValidator debug - validate( "d0d5afe3-afea-44de-a43f-c71e4ee834c0", {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG com.networknt.schema.TypeValidator debug - validate( "2e3ac7a1-23c4-453b-8d79-26d5d3b0", {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2e3ac7a1-23c4-453b-8d79-26d5d3b0","clientDesc":"d0d5afe3-afea-44de-a43f-c71e4ee834c0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.461 [XNIO-1 task-1] VCH_M-asQ52r2hLr7cN67w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:02.465 [XNIO-1 task-1] ll6Ljn6ISOq0q2iNJcEKcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.466 [XNIO-1 task-1] ll6Ljn6ISOq0q2iNJcEKcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.466 [XNIO-1 task-1] ll6Ljn6ISOq0q2iNJcEKcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.466 [XNIO-1 task-1] ll6Ljn6ISOq0q2iNJcEKcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:02.477 [XNIO-1 task-1] ryP8RQcyTsOSsCnzPmutRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.478 [XNIO-1 task-1] ryP8RQcyTsOSsCnzPmutRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.478 [XNIO-1 task-1] ryP8RQcyTsOSsCnzPmutRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.499 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bc98db-96d1-4021-a2a4-c6d28da916cb +16:40:02.501 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:98bc98db-96d1-4021-a2a4-c6d28da916cb +16:40:02.503 [XNIO-1 task-1] kLwoVmmuSdif1sJxkrkWag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a3c1e462-1f44-45a9-a58e-621e19154596 +16:40:02.503 [XNIO-1 task-1] kLwoVmmuSdif1sJxkrkWag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.503 [XNIO-1 task-1] kLwoVmmuSdif1sJxkrkWag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:02.504 [XNIO-1 task-1] kLwoVmmuSdif1sJxkrkWag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a3c1e462-1f44-45a9-a58e-621e19154596 +16:40:02.518 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.518 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.518 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:02.518 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.518 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.518 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.519 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.519 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.519 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.519 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.519 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.519 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9594a879-b635-499a-9634-27f9cb76","clientDesc":"b9718359-b3f3-4b7c-b06d-a21eda8b73c7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.519 [XNIO-1 task-1] 6Iorklb1R8-byXV1OQuXWA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:02.526 [XNIO-1 task-1] 5_ADslMrQ2avX6HCIyWMTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.526 [XNIO-1 task-1] 5_ADslMrQ2avX6HCIyWMTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.526 [XNIO-1 task-1] 5_ADslMrQ2avX6HCIyWMTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.528 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:98bc98db-96d1-4021-a2a4-c6d28da916cb +16:40:02.540 [XNIO-1 task-1] jKQm6xZMSmmPBTEJT_9niQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3086bd12-a943-4fdd-91ff-04e1e7965f92, base path is set to: null +16:40:02.540 [XNIO-1 task-1] jKQm6xZMSmmPBTEJT_9niQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.540 [XNIO-1 task-1] jKQm6xZMSmmPBTEJT_9niQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.541 [XNIO-1 task-1] jKQm6xZMSmmPBTEJT_9niQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3086bd12-a943-4fdd-91ff-04e1e7965f92, base path is set to: null +16:40:02.541 [XNIO-1 task-1] jKQm6xZMSmmPBTEJT_9niQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3086bd12-a943-4fdd-91ff-04e1e7965f92", "3086bd12-a943-4fdd-91ff-04e1e7965f92", clientId) +16:40:02.550 [XNIO-1 task-1] TPVZyCpOTOWsKZll2Kyv0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.550 [XNIO-1 task-1] TPVZyCpOTOWsKZll2Kyv0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.550 [XNIO-1 task-1] TPVZyCpOTOWsKZll2Kyv0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.556 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1448badc +16:40:02.565 [XNIO-1 task-1] qae-5g_CSdSuc3mdfyFzuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bbcbf104-edef-4fdc-b5fa-68916c6ed5d4, base path is set to: null +16:40:02.565 [XNIO-1 task-1] qae-5g_CSdSuc3mdfyFzuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.565 [XNIO-1 task-1] qae-5g_CSdSuc3mdfyFzuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.566 [XNIO-1 task-1] qae-5g_CSdSuc3mdfyFzuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bbcbf104-edef-4fdc-b5fa-68916c6ed5d4, base path is set to: null +16:40:02.566 [XNIO-1 task-1] qae-5g_CSdSuc3mdfyFzuA DEBUG com.networknt.schema.TypeValidator debug - validate( "bbcbf104-edef-4fdc-b5fa-68916c6ed5d4", "bbcbf104-edef-4fdc-b5fa-68916c6ed5d4", clientId) +16:40:02.567 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b486c993 +16:40:02.573 [XNIO-1 task-1] OPG__pYwTo2MTgl8-fiQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.573 [XNIO-1 task-1] OPG__pYwTo2MTgl8-fiQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.573 [XNIO-1 task-1] OPG__pYwTo2MTgl8-fiQmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.573 [XNIO-1 task-1] OPG__pYwTo2MTgl8-fiQmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:02.587 [XNIO-1 task-1] LpxMkgI1QZKbRAA3Rp08gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.587 [XNIO-1 task-1] LpxMkgI1QZKbRAA3Rp08gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.587 [XNIO-1 task-1] LpxMkgI1QZKbRAA3Rp08gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG com.networknt.schema.TypeValidator debug - validate( "74064735-437c-449a-8c0f-d005f3572efc", {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG com.networknt.schema.TypeValidator debug - validate( "76db6ded-05ff-4ac2-9b0d-2deb89a4", {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:02.602 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:02.603 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"76db6ded-05ff-4ac2-9b0d-2deb89a4","clientDesc":"74064735-437c-449a-8c0f-d005f3572efc","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:02.603 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.603 [XNIO-1 task-1] BjwAhXv3QQulw5dERPLhOg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:02.606 [XNIO-1 task-1] C5rJdZekTNOM3zfwD_mSfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf12bd58-b7bb-44ee-9d47-0ab975a8c9c4, base path is set to: null +16:40:02.606 [XNIO-1 task-1] C5rJdZekTNOM3zfwD_mSfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:02.606 [XNIO-1 task-1] C5rJdZekTNOM3zfwD_mSfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:02.606 [XNIO-1 task-1] C5rJdZekTNOM3zfwD_mSfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf12bd58-b7bb-44ee-9d47-0ab975a8c9c4, base path is set to: null +16:40:02.606 [XNIO-1 task-1] C5rJdZekTNOM3zfwD_mSfA DEBUG com.networknt.schema.TypeValidator debug - validate( "cf12bd58-b7bb-44ee-9d47-0ab975a8c9c4", "cf12bd58-b7bb-44ee-9d47-0ab975a8c9c4", clientId) +16:40:02.616 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.616 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.616 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG com.networknt.schema.TypeValidator debug - validate( "c175e0c1-961a-4427-97d5-36b7b9b24f43", {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG com.networknt.schema.TypeValidator debug - validate( "74509a4d-dea7-4512-b7b2-2910af22", {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"74509a4d-dea7-4512-b7b2-2910af22","clientDesc":"c175e0c1-961a-4427-97d5-36b7b9b24f43","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:02.617 [XNIO-1 task-1] VOeHvh81Rr-vnOLRfSrpBg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:06.882 [XNIO-1 task-1] SeOWAA9FT86sar7wCGpc3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.882 [XNIO-1 task-1] SeOWAA9FT86sar7wCGpc3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:06.882 [XNIO-1 task-1] SeOWAA9FT86sar7wCGpc3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.882 [XNIO-1 task-1] SeOWAA9FT86sar7wCGpc3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:06.920 [XNIO-1 task-1] BYTLNv5GRvG2jfTOQVoYrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.920 [XNIO-1 task-1] BYTLNv5GRvG2jfTOQVoYrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:06.920 [XNIO-1 task-1] BYTLNv5GRvG2jfTOQVoYrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.920 [XNIO-1 task-1] BYTLNv5GRvG2jfTOQVoYrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:06.926 [XNIO-1 task-1] _6Qu8LB0RQ29f3qiBUH5zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.926 [XNIO-1 task-1] _6Qu8LB0RQ29f3qiBUH5zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:06.950 [XNIO-1 task-1] _6Qu8LB0RQ29f3qiBUH5zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.955 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bf4c463-d882-414d-a76b-213008d71a25 +16:40:06.956 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3bf4c463-d882-414d-a76b-213008d71a25 +16:40:06.963 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.963 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.963 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.963 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "d0501a30-fc60-41cf-8e94-c8b7303d0a71", {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "667ff7f6-d914-47b0-853e-dff67921", {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"667ff7f6-d914-47b0-853e-dff67921","clientDesc":"d0501a30-fc60-41cf-8e94-c8b7303d0a71","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:06.964 [XNIO-1 task-1] eNFZyhkaQim42kV_vxk4sg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:06.966 [XNIO-1 task-1] QmlrDj45Q1-f5NdM8zSs5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3bf4c463-d882-414d-a76b-213008d71a25, base path is set to: null +16:40:06.966 [XNIO-1 task-1] QmlrDj45Q1-f5NdM8zSs5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:06.966 [XNIO-1 task-1] QmlrDj45Q1-f5NdM8zSs5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:06.966 [XNIO-1 task-1] QmlrDj45Q1-f5NdM8zSs5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3bf4c463-d882-414d-a76b-213008d71a25, base path is set to: null +16:40:06.966 [XNIO-1 task-1] QmlrDj45Q1-f5NdM8zSs5w DEBUG com.networknt.schema.TypeValidator debug - validate( "3bf4c463-d882-414d-a76b-213008d71a25", "3bf4c463-d882-414d-a76b-213008d71a25", clientId) +16:40:06.968 [XNIO-1 task-1] W8ej14CySLGxJx5has1_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3bf4c463-d882-414d-a76b-213008d71a25 +16:40:06.969 [XNIO-1 task-1] W8ej14CySLGxJx5has1_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.969 [XNIO-1 task-1] W8ej14CySLGxJx5has1_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:06.969 [XNIO-1 task-1] W8ej14CySLGxJx5has1_tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3bf4c463-d882-414d-a76b-213008d71a25 +16:40:06.969 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3bf4c463-d882-414d-a76b-213008d71a25 +16:40:06.975 [XNIO-1 task-1] _26SZf6FRHyVvMOIIAd8fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.975 [XNIO-1 task-1] _26SZf6FRHyVvMOIIAd8fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.975 [XNIO-1 task-1] _26SZf6FRHyVvMOIIAd8fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.987 [XNIO-1 task-1] mRc0cEhKQVe-Tny4IeB-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6e50f04-b8b4-4132-a74b-cf8f833105d4 +16:40:06.987 [XNIO-1 task-1] mRc0cEhKQVe-Tny4IeB-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:06.987 [XNIO-1 task-1] mRc0cEhKQVe-Tny4IeB-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:06.987 [XNIO-1 task-1] mRc0cEhKQVe-Tny4IeB-jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6e50f04-b8b4-4132-a74b-cf8f833105d4 +16:40:06.994 [XNIO-1 task-1] dQe_nxCVQa2P9Lw80hXnbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.994 [XNIO-1 task-1] dQe_nxCVQa2P9Lw80hXnbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:06.994 [XNIO-1 task-1] dQe_nxCVQa2P9Lw80hXnbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.994 [XNIO-1 task-1] dQe_nxCVQa2P9Lw80hXnbw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:06.999 [XNIO-1 task-1] NHcOAtVxTr-_y-kqzCE7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:06.999 [XNIO-1 task-1] NHcOAtVxTr-_y-kqzCE7sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:06.999 [XNIO-1 task-1] NHcOAtVxTr-_y-kqzCE7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.011 [XNIO-1 task-1] EqksL3XsQiaepJfmRipZKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3, base path is set to: null +16:40:07.012 [XNIO-1 task-1] EqksL3XsQiaepJfmRipZKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.012 [XNIO-1 task-1] EqksL3XsQiaepJfmRipZKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.012 [XNIO-1 task-1] EqksL3XsQiaepJfmRipZKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3, base path is set to: null +16:40:07.012 [XNIO-1 task-1] EqksL3XsQiaepJfmRipZKA DEBUG com.networknt.schema.TypeValidator debug - validate( "5aa4773b-3828-46ed-b1cc-ad954baebdb3", "5aa4773b-3828-46ed-b1cc-ad954baebdb3", clientId) +16:40:07.014 [XNIO-1 task-1] xSL_kLYpSg6s26Z3syUfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.014 [XNIO-1 task-1] xSL_kLYpSg6s26Z3syUfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.014 [XNIO-1 task-1] xSL_kLYpSg6s26Z3syUfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.014 [XNIO-1 task-1] xSL_kLYpSg6s26Z3syUfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.016 [XNIO-1 task-1] 8vZPYwS3RnaCAlhd8VK_xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.016 [XNIO-1 task-1] 8vZPYwS3RnaCAlhd8VK_xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.016 [XNIO-1 task-1] 8vZPYwS3RnaCAlhd8VK_xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.028 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.028 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.028 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.028 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.028 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.028 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.029 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.029 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.029 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.029 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.029 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.029 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db634806-b62d-4561-9fe8-6e909def","clientDesc":"c3ea9762-31b6-4d22-b5d7-3cbf63d8ed65","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.029 [XNIO-1 task-1] pdq2bZj0QUa8lymejgN1zw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.031 [XNIO-1 task-1] 2VqTZEfTScKr_ydHMzU-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.031 [XNIO-1 task-1] 2VqTZEfTScKr_ydHMzU-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.031 [XNIO-1 task-1] 2VqTZEfTScKr_ydHMzU-Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.044 [XNIO-1 task-1] FM2HeayoRf68PX56lUxlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.044 [XNIO-1 task-1] FM2HeayoRf68PX56lUxlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.044 [XNIO-1 task-1] FM2HeayoRf68PX56lUxlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.044 [XNIO-1 task-1] FM2HeayoRf68PX56lUxlpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.046 [XNIO-1 task-1] zcikKWDVT1u3IkW5HdlzQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43fa2b7e-5223-4562-bf9f-3ae2caee9748, base path is set to: null +16:40:07.046 [XNIO-1 task-1] zcikKWDVT1u3IkW5HdlzQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.046 [XNIO-1 task-1] zcikKWDVT1u3IkW5HdlzQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.046 [XNIO-1 task-1] zcikKWDVT1u3IkW5HdlzQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43fa2b7e-5223-4562-bf9f-3ae2caee9748, base path is set to: null +16:40:07.046 [XNIO-1 task-1] zcikKWDVT1u3IkW5HdlzQw DEBUG com.networknt.schema.TypeValidator debug - validate( "43fa2b7e-5223-4562-bf9f-3ae2caee9748", "43fa2b7e-5223-4562-bf9f-3ae2caee9748", clientId) +16:40:07.053 [XNIO-1 task-1] 0irj2CNlR86NkU3JJEdDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.053 [XNIO-1 task-1] 0irj2CNlR86NkU3JJEdDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.053 [XNIO-1 task-1] 0irj2CNlR86NkU3JJEdDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.053 [XNIO-1 task-1] 0irj2CNlR86NkU3JJEdDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.055 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.056 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b3245b99-99b8-4fb9-82fb-1c5299c6","clientDesc":"936bf546-805d-4c9a-8de6-840e9671fd82","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.056 [XNIO-1 task-1] 5cgTdnFVQ8qqKiIM54cxpg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.057 [XNIO-1 task-1] sztYAs7tT1GVTQZDlg5qsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.057 [XNIO-1 task-1] sztYAs7tT1GVTQZDlg5qsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.058 [XNIO-1 task-1] sztYAs7tT1GVTQZDlg5qsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.058 [XNIO-1 task-1] sztYAs7tT1GVTQZDlg5qsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.063 [XNIO-1 task-1] 1QGWslF3TOmpUb1R6ZRJ0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.063 [XNIO-1 task-1] 1QGWslF3TOmpUb1R6ZRJ0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.063 [XNIO-1 task-1] 1QGWslF3TOmpUb1R6ZRJ0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.074 [XNIO-1 task-1] aPEZaU5ETUi22YxC1o2Fsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.074 [XNIO-1 task-1] aPEZaU5ETUi22YxC1o2Fsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.074 [XNIO-1 task-1] aPEZaU5ETUi22YxC1o2Fsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.074 [XNIO-1 task-1] aPEZaU5ETUi22YxC1o2Fsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5aa4773b-3828-46ed-b1cc-ad954baebdb3 +16:40:07.082 [XNIO-1 task-1] JQmKagD0TJKoPiggTbGxWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.082 [XNIO-1 task-1] JQmKagD0TJKoPiggTbGxWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.082 [XNIO-1 task-1] JQmKagD0TJKoPiggTbGxWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.082 [XNIO-1 task-1] JQmKagD0TJKoPiggTbGxWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.088 [XNIO-1 task-1] iGaxmGRrQeS8OM0P8KsdlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.088 [XNIO-1 task-1] iGaxmGRrQeS8OM0P8KsdlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.088 [XNIO-1 task-1] iGaxmGRrQeS8OM0P8KsdlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.100 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.100 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.100 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.101 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.101 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.101 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.101 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.101 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.102 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.102 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.102 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.102 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"659844fd-3c0e-4cb9-80f0-1f9b60b1","clientDesc":"5a898c5f-ec71-43c5-a64c-9005028aca75","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.102 [XNIO-1 task-1] qv6kbhTHTnifzihGfXMQNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.104 [XNIO-1 task-1] iTC3b4s5QemsW9nQ2K_h1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.104 [XNIO-1 task-1] iTC3b4s5QemsW9nQ2K_h1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.104 [XNIO-1 task-1] iTC3b4s5QemsW9nQ2K_h1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.116 [XNIO-1 task-1] 5pRlS8I0S7uwcUlYfmSlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/744ec58b-da73-4f38-b03c-b53f76e7c761 +16:40:07.116 [XNIO-1 task-1] 5pRlS8I0S7uwcUlYfmSlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.116 [XNIO-1 task-1] 5pRlS8I0S7uwcUlYfmSlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.116 [XNIO-1 task-1] 5pRlS8I0S7uwcUlYfmSlGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/744ec58b-da73-4f38-b03c-b53f76e7c761 +16:40:07.118 [XNIO-1 task-1] Y20ZcN9XTpi9r1-0aCjwPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.118 [XNIO-1 task-1] Y20ZcN9XTpi9r1-0aCjwPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.118 [XNIO-1 task-1] Y20ZcN9XTpi9r1-0aCjwPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.123 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d14da77a-4996-4443-bdea-5c3db29ca73d +16:40:07.124 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d14da77a-4996-4443-bdea-5c3db29ca73d +16:40:07.129 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.129 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "32881227-1991-42b1-a0c6-5fa8c3de13c3", {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "561e1c03-a821-494f-8417-5c312d11", {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"561e1c03-a821-494f-8417-5c312d11","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.130 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.131 [XNIO-1 task-1] 3v1d9_VgSy2_sC8nLfbIEQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.133 [XNIO-1 task-1] scUsyyjoRqu9Bdp-zOR3-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d14da77a-4996-4443-bdea-5c3db29ca73d, base path is set to: null +16:40:07.133 [XNIO-1 task-1] scUsyyjoRqu9Bdp-zOR3-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.133 [XNIO-1 task-1] scUsyyjoRqu9Bdp-zOR3-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.133 [XNIO-1 task-1] scUsyyjoRqu9Bdp-zOR3-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d14da77a-4996-4443-bdea-5c3db29ca73d, base path is set to: null +16:40:07.133 [XNIO-1 task-1] scUsyyjoRqu9Bdp-zOR3-A DEBUG com.networknt.schema.TypeValidator debug - validate( "d14da77a-4996-4443-bdea-5c3db29ca73d", "d14da77a-4996-4443-bdea-5c3db29ca73d", clientId) +16:40:07.138 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.138 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.138 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.138 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f98afd8-e902-4e98-a514-4cd43243","clientDesc":"32881227-1991-42b1-a0c6-5fa8c3de13c3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.139 [XNIO-1 task-1] cK9kKCvAS8O8xx6z2Jb8Ig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.141 [XNIO-1 task-1] c9xK3nthTwa0COyG-pjKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a +16:40:07.141 [XNIO-1 task-1] c9xK3nthTwa0COyG-pjKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.141 [XNIO-1 task-1] c9xK3nthTwa0COyG-pjKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.141 [XNIO-1 task-1] c9xK3nthTwa0COyG-pjKlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a +16:40:07.143 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.143 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.144 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"29e78791-22c4-4fbb-879b-f5fa80a0","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.145 [XNIO-1 task-1] coPwJYUTQq-upIexsujBMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.146 [XNIO-1 task-1] BJJgFyjMQN-8vjy0fYW7DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.146 [XNIO-1 task-1] BJJgFyjMQN-8vjy0fYW7DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.146 [XNIO-1 task-1] BJJgFyjMQN-8vjy0fYW7DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.147 [XNIO-1 task-1] BJJgFyjMQN-8vjy0fYW7DQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.152 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.152 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.152 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG com.networknt.schema.TypeValidator debug - validate( "314b2a2c-8115-4d32-9023-08f498e5f404", {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG com.networknt.schema.TypeValidator debug - validate( "87dc82a1-dcf0-4ff8-a7f8-81e0a399", {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"87dc82a1-dcf0-4ff8-a7f8-81e0a399","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.153 [XNIO-1 task-1] Pb5dHwRbS0-pUwbqBrTEZw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.155 [XNIO-1 task-1] uncEN-6aQ2KbXJT8iolYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.155 [XNIO-1 task-1] uncEN-6aQ2KbXJT8iolYhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.155 [XNIO-1 task-1] uncEN-6aQ2KbXJT8iolYhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.155 [XNIO-1 task-1] uncEN-6aQ2KbXJT8iolYhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.161 [XNIO-1 task-1] rxJL1Js-RWiMJx1yKSqdqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.161 [XNIO-1 task-1] rxJL1Js-RWiMJx1yKSqdqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.162 [XNIO-1 task-1] rxJL1Js-RWiMJx1yKSqdqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.162 [XNIO-1 task-1] rxJL1Js-RWiMJx1yKSqdqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.166 [XNIO-1 task-1] px6V9fs8T-yAifLbdesM-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.166 [XNIO-1 task-1] px6V9fs8T-yAifLbdesM-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.167 [XNIO-1 task-1] px6V9fs8T-yAifLbdesM-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.167 [XNIO-1 task-1] px6V9fs8T-yAifLbdesM-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.172 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.172 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.172 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.172 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a5135b9e-2223-434d-bdfb-56363f9a","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.173 [XNIO-1 task-1] bS_E1h82T-6ryk6jMK1xig ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.175 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.175 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.175 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.175 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.175 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "314b2a2c-8115-4d32-9023-08f498e5f404", {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "53145312-b1ab-4905-a727-df57a0c6", {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"53145312-b1ab-4905-a727-df57a0c6","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.176 [XNIO-1 task-1] U_s4cijjRvSdFQvqYNkwSQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.178 [XNIO-1 task-1] RDxwvuD-RuOzfZWLpI20eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35ce22da-fb6b-41c9-b8db-bf79b2f7bf76, base path is set to: null +16:40:07.178 [XNIO-1 task-1] RDxwvuD-RuOzfZWLpI20eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.178 [XNIO-1 task-1] RDxwvuD-RuOzfZWLpI20eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.178 [XNIO-1 task-1] RDxwvuD-RuOzfZWLpI20eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35ce22da-fb6b-41c9-b8db-bf79b2f7bf76, base path is set to: null +16:40:07.178 [XNIO-1 task-1] RDxwvuD-RuOzfZWLpI20eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "35ce22da-fb6b-41c9-b8db-bf79b2f7bf76", "35ce22da-fb6b-41c9-b8db-bf79b2f7bf76", clientId) +16:40:07.180 [XNIO-1 task-1] BAlwdPGIRvqGMo656ZiFUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.180 [XNIO-1 task-1] BAlwdPGIRvqGMo656ZiFUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.180 [XNIO-1 task-1] BAlwdPGIRvqGMo656ZiFUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.181 [XNIO-1 task-1] BAlwdPGIRvqGMo656ZiFUw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.185 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.185 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.185 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.185 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.185 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "314b2a2c-8115-4d32-9023-08f498e5f404", {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "61853d67-d684-46f3-a6bb-fca5e500", {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"61853d67-d684-46f3-a6bb-fca5e500","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.186 [XNIO-1 task-1] RSfkO0xnSGa5JcOAjaEvQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.188 [XNIO-1 task-1] 5HCOQyDNS9KyKwXJ6nLGXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35ce22da-fb6b-41c9-b8db-bf79b2f7bf76, base path is set to: null +16:40:07.188 [XNIO-1 task-1] 5HCOQyDNS9KyKwXJ6nLGXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.188 [XNIO-1 task-1] 5HCOQyDNS9KyKwXJ6nLGXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.188 [XNIO-1 task-1] 5HCOQyDNS9KyKwXJ6nLGXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35ce22da-fb6b-41c9-b8db-bf79b2f7bf76, base path is set to: null +16:40:07.188 [XNIO-1 task-1] 5HCOQyDNS9KyKwXJ6nLGXg DEBUG com.networknt.schema.TypeValidator debug - validate( "35ce22da-fb6b-41c9-b8db-bf79b2f7bf76", "35ce22da-fb6b-41c9-b8db-bf79b2f7bf76", clientId) +16:40:07.194 [XNIO-1 task-1] QPYr4hX5R-eVqjQYvD1hkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a +16:40:07.194 [XNIO-1 task-1] QPYr4hX5R-eVqjQYvD1hkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.194 [XNIO-1 task-1] QPYr4hX5R-eVqjQYvD1hkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.194 [XNIO-1 task-1] QPYr4hX5R-eVqjQYvD1hkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a +16:40:07.196 [XNIO-1 task-1] PQl67evKSv6rE4j7NaxUfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b8d29111-f0eb-4ff5-88a7-54bff89ee487, base path is set to: null +16:40:07.196 [XNIO-1 task-1] PQl67evKSv6rE4j7NaxUfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.196 [XNIO-1 task-1] PQl67evKSv6rE4j7NaxUfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.196 [XNIO-1 task-1] PQl67evKSv6rE4j7NaxUfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b8d29111-f0eb-4ff5-88a7-54bff89ee487, base path is set to: null +16:40:07.196 [XNIO-1 task-1] PQl67evKSv6rE4j7NaxUfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b8d29111-f0eb-4ff5-88a7-54bff89ee487", "b8d29111-f0eb-4ff5-88a7-54bff89ee487", clientId) +16:40:07.201 [XNIO-1 task-1] aLxSF14OTti8aTJg0atTpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.201 [XNIO-1 task-1] aLxSF14OTti8aTJg0atTpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.201 [XNIO-1 task-1] aLxSF14OTti8aTJg0atTpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.212 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.212 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "314b2a2c-8115-4d32-9023-08f498e5f404", {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "a6ef7661-0c3c-49b6-b32d-de503a45", {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a6ef7661-0c3c-49b6-b32d-de503a45","clientDesc":"314b2a2c-8115-4d32-9023-08f498e5f404","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.213 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.214 [XNIO-1 task-1] UIAoxlQBQwSw0RXnCfg5_A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.215 [XNIO-1 task-1] cp2mBbKGSkGWnUPoAEkshQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.215 [XNIO-1 task-1] cp2mBbKGSkGWnUPoAEkshQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.215 [XNIO-1 task-1] cp2mBbKGSkGWnUPoAEkshQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.215 [XNIO-1 task-1] cp2mBbKGSkGWnUPoAEkshQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.215 [XNIO-1 task-1] cp2mBbKGSkGWnUPoAEkshQ DEBUG com.networknt.schema.TypeValidator debug - validate( "101cafbf-600a-4d20-92a2-30777a5d880a", "101cafbf-600a-4d20-92a2-30777a5d880a", clientId) +16:40:07.217 [XNIO-1 task-1] EpGHTegnRMOvqfN2vOGsVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ad0c6a15-ac3d-47f2-ad1f-7e0c58cc77b5 +16:40:07.217 [XNIO-1 task-1] EpGHTegnRMOvqfN2vOGsVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.217 [XNIO-1 task-1] EpGHTegnRMOvqfN2vOGsVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.217 [XNIO-1 task-1] EpGHTegnRMOvqfN2vOGsVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ad0c6a15-ac3d-47f2-ad1f-7e0c58cc77b5 +16:40:07.219 [XNIO-1 task-1] SngscQyjTJyUDZ2mOqYa_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.219 [XNIO-1 task-1] SngscQyjTJyUDZ2mOqYa_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.219 [XNIO-1 task-1] SngscQyjTJyUDZ2mOqYa_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.232 [XNIO-1 task-1] ovyvAFiITymnUL5f0nmcNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.232 [XNIO-1 task-1] ovyvAFiITymnUL5f0nmcNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.232 [XNIO-1 task-1] ovyvAFiITymnUL5f0nmcNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.232 [XNIO-1 task-1] ovyvAFiITymnUL5f0nmcNg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.237 [XNIO-1 task-1] iB3fd5wkRsqVEXH3FSI43Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.237 [XNIO-1 task-1] iB3fd5wkRsqVEXH3FSI43Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.237 [XNIO-1 task-1] iB3fd5wkRsqVEXH3FSI43Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.237 [XNIO-1 task-1] iB3fd5wkRsqVEXH3FSI43Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.238 [XNIO-1 task-1] iB3fd5wkRsqVEXH3FSI43Q DEBUG com.networknt.schema.TypeValidator debug - validate( "101cafbf-600a-4d20-92a2-30777a5d880a", "101cafbf-600a-4d20-92a2-30777a5d880a", clientId) +16:40:07.239 [XNIO-1 task-1] GnNT7MtITd2IkF7WYzuTRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.239 [XNIO-1 task-1] GnNT7MtITd2IkF7WYzuTRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.239 [XNIO-1 task-1] GnNT7MtITd2IkF7WYzuTRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.240 [XNIO-1 task-1] GnNT7MtITd2IkF7WYzuTRQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.244 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.244 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.244 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG com.networknt.schema.TypeValidator debug - validate( "d1225a99-6b16-4c2b-ab5a-840ff13c251e", {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG com.networknt.schema.TypeValidator debug - validate( "35d79144-971f-4d5c-bc65-c6446352", {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"35d79144-971f-4d5c-bc65-c6446352","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.245 [XNIO-1 task-1] 2C_wA5MBRpW2bqKJRFosdg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.247 [XNIO-1 task-1] n1XyoL5qSuiWaS8sIopKpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.247 [XNIO-1 task-1] n1XyoL5qSuiWaS8sIopKpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.247 [XNIO-1 task-1] n1XyoL5qSuiWaS8sIopKpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.247 [XNIO-1 task-1] n1XyoL5qSuiWaS8sIopKpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.247 [XNIO-1 task-1] n1XyoL5qSuiWaS8sIopKpg DEBUG com.networknt.schema.TypeValidator debug - validate( "101cafbf-600a-4d20-92a2-30777a5d880a", "101cafbf-600a-4d20-92a2-30777a5d880a", clientId) +16:40:07.249 [XNIO-1 task-1] 616vzWCXTKOtkwhqn0S2mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/744ec58b-da73-4f38-b03c-b53f76e7c761 +16:40:07.249 [XNIO-1 task-1] 616vzWCXTKOtkwhqn0S2mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.249 [XNIO-1 task-1] 616vzWCXTKOtkwhqn0S2mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.249 [XNIO-1 task-1] 616vzWCXTKOtkwhqn0S2mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/744ec58b-da73-4f38-b03c-b53f76e7c761 +16:40:07.254 [XNIO-1 task-1] kvX0ve4yS-eI-s7T2P8fKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.254 [XNIO-1 task-1] kvX0ve4yS-eI-s7T2P8fKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.254 [XNIO-1 task-1] kvX0ve4yS-eI-s7T2P8fKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.266 [XNIO-1 task-1] rsi2agzUT_G7WzlGNMghLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/476a83ff-5097-48ad-8488-d2e210096c78, base path is set to: null +16:40:07.266 [XNIO-1 task-1] rsi2agzUT_G7WzlGNMghLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.266 [XNIO-1 task-1] rsi2agzUT_G7WzlGNMghLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.266 [XNIO-1 task-1] rsi2agzUT_G7WzlGNMghLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/476a83ff-5097-48ad-8488-d2e210096c78, base path is set to: null +16:40:07.266 [XNIO-1 task-1] rsi2agzUT_G7WzlGNMghLg DEBUG com.networknt.schema.TypeValidator debug - validate( "476a83ff-5097-48ad-8488-d2e210096c78", "476a83ff-5097-48ad-8488-d2e210096c78", clientId) +16:40:07.268 [XNIO-1 task-1] q2b3G6irQgqwanA7IFmtpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/476a83ff-5097-48ad-8488-d2e210096c78 +16:40:07.268 [XNIO-1 task-1] q2b3G6irQgqwanA7IFmtpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.269 [XNIO-1 task-1] q2b3G6irQgqwanA7IFmtpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.269 [XNIO-1 task-1] q2b3G6irQgqwanA7IFmtpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/476a83ff-5097-48ad-8488-d2e210096c78 +16:40:07.274 [XNIO-1 task-1] VW3DAhNMT2C0CHOZQ7qn2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.274 [XNIO-1 task-1] VW3DAhNMT2C0CHOZQ7qn2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.274 [XNIO-1 task-1] VW3DAhNMT2C0CHOZQ7qn2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.274 [XNIO-1 task-1] VW3DAhNMT2C0CHOZQ7qn2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.274 [XNIO-1 task-1] VW3DAhNMT2C0CHOZQ7qn2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "101cafbf-600a-4d20-92a2-30777a5d880a", "101cafbf-600a-4d20-92a2-30777a5d880a", clientId) +16:40:07.276 [XNIO-1 task-1] 2jrKTCqARae1ZaqdaM9frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.276 [XNIO-1 task-1] 2jrKTCqARae1ZaqdaM9frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.276 [XNIO-1 task-1] 2jrKTCqARae1ZaqdaM9frw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.276 [XNIO-1 task-1] 2jrKTCqARae1ZaqdaM9frw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.285 [XNIO-1 task-1] eNsJ2-UDS6qLBI-ngyfp3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.285 [XNIO-1 task-1] eNsJ2-UDS6qLBI-ngyfp3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.285 [XNIO-1 task-1] eNsJ2-UDS6qLBI-ngyfp3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.285 [XNIO-1 task-1] eNsJ2-UDS6qLBI-ngyfp3Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.291 [XNIO-1 task-1] nTOJiCM7Qq2vwVve6X5f3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.291 [XNIO-1 task-1] nTOJiCM7Qq2vwVve6X5f3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.291 [XNIO-1 task-1] nTOJiCM7Qq2vwVve6X5f3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG com.networknt.schema.TypeValidator debug - validate( "d1225a99-6b16-4c2b-ab5a-840ff13c251e", {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.303 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG com.networknt.schema.TypeValidator debug - validate( "e289355c-8af0-428d-80d2-33341170", {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.304 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.304 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e289355c-8af0-428d-80d2-33341170","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.304 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.304 [XNIO-1 task-1] frVoIugKQiqf-0wQ8v7RiA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.306 [XNIO-1 task-1] -BmXpueeS2ycqDOs8nIqdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.306 [XNIO-1 task-1] -BmXpueeS2ycqDOs8nIqdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.306 [XNIO-1 task-1] -BmXpueeS2ycqDOs8nIqdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.306 [XNIO-1 task-1] -BmXpueeS2ycqDOs8nIqdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.306 [XNIO-1 task-1] -BmXpueeS2ycqDOs8nIqdA DEBUG com.networknt.schema.TypeValidator debug - validate( "101cafbf-600a-4d20-92a2-30777a5d880a", "101cafbf-600a-4d20-92a2-30777a5d880a", clientId) +16:40:07.307 [XNIO-1 task-1] aWmL7PqYQMCwK76mMXl89w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.307 [XNIO-1 task-1] aWmL7PqYQMCwK76mMXl89w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.308 [XNIO-1 task-1] aWmL7PqYQMCwK76mMXl89w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.320 [XNIO-1 task-1] Ni4Jl22SR9SIGDOqcRsClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.321 [XNIO-1 task-1] Ni4Jl22SR9SIGDOqcRsClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.321 [XNIO-1 task-1] Ni4Jl22SR9SIGDOqcRsClw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.321 [XNIO-1 task-1] Ni4Jl22SR9SIGDOqcRsClw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.328 [XNIO-1 task-1] YECoXIu3RdiNYp27WUdQPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.328 [XNIO-1 task-1] YECoXIu3RdiNYp27WUdQPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.328 [XNIO-1 task-1] YECoXIu3RdiNYp27WUdQPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.342 [XNIO-1 task-1] S3ed51qFSwKu8QYgCsU0pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.342 [XNIO-1 task-1] S3ed51qFSwKu8QYgCsU0pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.342 [XNIO-1 task-1] S3ed51qFSwKu8QYgCsU0pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.342 [XNIO-1 task-1] S3ed51qFSwKu8QYgCsU0pg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.348 [XNIO-1 task-1] LN2r2myyTve2BKonf51q6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.348 [XNIO-1 task-1] LN2r2myyTve2BKonf51q6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.348 [XNIO-1 task-1] LN2r2myyTve2BKonf51q6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.348 [XNIO-1 task-1] LN2r2myyTve2BKonf51q6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.354 [XNIO-1 task-1] NXX5sCq_TuKpdBQf2VKaWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.354 [XNIO-1 task-1] NXX5sCq_TuKpdBQf2VKaWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.354 [XNIO-1 task-1] NXX5sCq_TuKpdBQf2VKaWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.354 [XNIO-1 task-1] NXX5sCq_TuKpdBQf2VKaWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.359 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d1225a99-6b16-4c2b-ab5a-840ff13c251e", {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e88f838e-4eba-4c8d-87f8-16dce1da", {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e88f838e-4eba-4c8d-87f8-16dce1da","clientDesc":"d1225a99-6b16-4c2b-ab5a-840ff13c251e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.360 [XNIO-1 task-1] UsDpo4-8TnCO_axflLTQ-Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.363 [XNIO-1 task-1] pdJJucSETUeCl1wdiRLg_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.363 [XNIO-1 task-1] pdJJucSETUeCl1wdiRLg_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.363 [XNIO-1 task-1] pdJJucSETUeCl1wdiRLg_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.375 [XNIO-1 task-1] 1ZCCTilXTVquxMqJIgRRAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.375 [XNIO-1 task-1] 1ZCCTilXTVquxMqJIgRRAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.375 [XNIO-1 task-1] 1ZCCTilXTVquxMqJIgRRAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.387 [XNIO-1 task-1] 6nh4wOigTk-c3g4ALmDpUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.387 [XNIO-1 task-1] 6nh4wOigTk-c3g4ALmDpUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.387 [XNIO-1 task-1] 6nh4wOigTk-c3g4ALmDpUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.387 [XNIO-1 task-1] 6nh4wOigTk-c3g4ALmDpUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.392 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.392 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.392 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.392 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.392 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.392 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.392 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.393 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.393 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.393 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.393 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.393 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"002ac6e3-3b70-4c09-822d-1a5c1804","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.393 [XNIO-1 task-1] hiFj_kcVRbaLqSKBi8bNkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.395 [XNIO-1 task-1] cZrsktu2R-yalegZp8ixcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ad0c6a15-ac3d-47f2-ad1f-7e0c58cc77b5 +16:40:07.395 [XNIO-1 task-1] cZrsktu2R-yalegZp8ixcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.395 [XNIO-1 task-1] cZrsktu2R-yalegZp8ixcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.395 [XNIO-1 task-1] cZrsktu2R-yalegZp8ixcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ad0c6a15-ac3d-47f2-ad1f-7e0c58cc77b5 +16:40:07.401 [XNIO-1 task-1] 4brVa9jfTAy4dPjd5tx6tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.401 [XNIO-1 task-1] 4brVa9jfTAy4dPjd5tx6tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.402 [XNIO-1 task-1] 4brVa9jfTAy4dPjd5tx6tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.402 [XNIO-1 task-1] 4brVa9jfTAy4dPjd5tx6tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.408 [XNIO-1 task-1] SxOYdTr4QB-qTCNsh6EqGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.408 [XNIO-1 task-1] SxOYdTr4QB-qTCNsh6EqGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.408 [XNIO-1 task-1] SxOYdTr4QB-qTCNsh6EqGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.408 [XNIO-1 task-1] SxOYdTr4QB-qTCNsh6EqGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.408 [XNIO-1 task-1] SxOYdTr4QB-qTCNsh6EqGg DEBUG com.networknt.schema.TypeValidator debug - validate( "101cafbf-600a-4d20-92a2-30777a5d880a", "101cafbf-600a-4d20-92a2-30777a5d880a", clientId) +16:40:07.410 [XNIO-1 task-1] AJA7D9T6SWSsWCSWmK0fvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca +16:40:07.410 [XNIO-1 task-1] AJA7D9T6SWSsWCSWmK0fvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.411 [XNIO-1 task-1] AJA7D9T6SWSsWCSWmK0fvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.411 [XNIO-1 task-1] AJA7D9T6SWSsWCSWmK0fvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca +16:40:07.413 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.413 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.413 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.413 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.413 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.413 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.414 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.414 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.414 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.414 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.414 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.414 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"da1a654f-2bd2-4843-afe4-cb662399","clientDesc":"e76f58a3-75d8-467c-9407-ff050c22cc91","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.414 [XNIO-1 task-1] TV7CAcWkQ_qfRQSQpZiUEA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.416 [XNIO-1 task-1] hddXIdHiRPGjhrXmtex4Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/90e0e038-d1f2-4fe6-8b39-f8752c39133c +16:40:07.416 [XNIO-1 task-1] hddXIdHiRPGjhrXmtex4Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.416 [XNIO-1 task-1] hddXIdHiRPGjhrXmtex4Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.416 [XNIO-1 task-1] hddXIdHiRPGjhrXmtex4Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/90e0e038-d1f2-4fe6-8b39-f8752c39133c +16:40:07.422 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.422 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.422 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"896a15d0-4047-446a-84dc-0d2015fc","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.423 [XNIO-1 task-1] Urvp-Z_sTDWzqz_9UQDYpA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.425 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.425 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.425 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.425 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.425 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG com.networknt.schema.TypeValidator debug - validate( "bec11af1-fc1e-493e-920c-db4f86aeaea9", {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG com.networknt.schema.TypeValidator debug - validate( "8ef0f029-b01a-4f74-a93f-b23e7098", {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8ef0f029-b01a-4f74-a93f-b23e7098","clientDesc":"bec11af1-fc1e-493e-920c-db4f86aeaea9","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.426 [XNIO-1 task-1] WgFbreZ1RmCWm6KsHa9mKg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.428 [XNIO-1 task-1] Rf_U2hN-SCyg_XRSk3XFiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b703d75d-b403-43c6-bcf6-7a77992ec897, base path is set to: null +16:40:07.428 [XNIO-1 task-1] Rf_U2hN-SCyg_XRSk3XFiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.428 [XNIO-1 task-1] Rf_U2hN-SCyg_XRSk3XFiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.428 [XNIO-1 task-1] Rf_U2hN-SCyg_XRSk3XFiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b703d75d-b403-43c6-bcf6-7a77992ec897, base path is set to: null +16:40:07.428 [XNIO-1 task-1] Rf_U2hN-SCyg_XRSk3XFiw DEBUG com.networknt.schema.TypeValidator debug - validate( "b703d75d-b403-43c6-bcf6-7a77992ec897", "b703d75d-b403-43c6-bcf6-7a77992ec897", clientId) +16:40:07.430 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.430 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.430 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.430 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.430 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "708746dc-8dfb-4982-bea9-1567105f001e", {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "06525d92-46fa-47d2-81d8-dfaa1d63", {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"06525d92-46fa-47d2-81d8-dfaa1d63","clientDesc":"708746dc-8dfb-4982-bea9-1567105f001e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.431 [XNIO-1 task-1] SaAGSQEFRWiyknn5FMIhbQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.433 [XNIO-1 task-1] sN9mXNIHQ56TKg1Y6Iy9Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf56a2f4-7363-45fb-a4af-ec8758471ba6, base path is set to: null +16:40:07.433 [XNIO-1 task-1] sN9mXNIHQ56TKg1Y6Iy9Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.433 [XNIO-1 task-1] sN9mXNIHQ56TKg1Y6Iy9Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.433 [XNIO-1 task-1] sN9mXNIHQ56TKg1Y6Iy9Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cf56a2f4-7363-45fb-a4af-ec8758471ba6, base path is set to: null +16:40:07.433 [XNIO-1 task-1] sN9mXNIHQ56TKg1Y6Iy9Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "cf56a2f4-7363-45fb-a4af-ec8758471ba6", "cf56a2f4-7363-45fb-a4af-ec8758471ba6", clientId) +16:40:07.438 [XNIO-1 task-1] fAKX1o6NThankezI53SyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b703d75d-b403-43c6-bcf6-7a77992ec897 +16:40:07.438 [XNIO-1 task-1] fAKX1o6NThankezI53SyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.438 [XNIO-1 task-1] fAKX1o6NThankezI53SyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.438 [XNIO-1 task-1] fAKX1o6NThankezI53SyyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b703d75d-b403-43c6-bcf6-7a77992ec897 +16:40:07.443 [XNIO-1 task-1] tcRUhAltS3KaYsjGaaTeVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.443 [XNIO-1 task-1] tcRUhAltS3KaYsjGaaTeVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.443 [XNIO-1 task-1] tcRUhAltS3KaYsjGaaTeVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.455 [XNIO-1 task-1] efAM5fnTQ7CTr45hE88o5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/357ad03b-7794-40cf-af36-3303aa5f0b3f, base path is set to: null +16:40:07.455 [XNIO-1 task-1] efAM5fnTQ7CTr45hE88o5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.455 [XNIO-1 task-1] efAM5fnTQ7CTr45hE88o5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.455 [XNIO-1 task-1] efAM5fnTQ7CTr45hE88o5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/357ad03b-7794-40cf-af36-3303aa5f0b3f, base path is set to: null +16:40:07.455 [XNIO-1 task-1] efAM5fnTQ7CTr45hE88o5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "357ad03b-7794-40cf-af36-3303aa5f0b3f", "357ad03b-7794-40cf-af36-3303aa5f0b3f", clientId) +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG com.networknt.schema.TypeValidator debug - validate( "0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e", {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.460 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.461 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG com.networknt.schema.TypeValidator debug - validate( "f273d26a-256d-4fa0-ac2c-e84531bb", {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.461 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.461 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f273d26a-256d-4fa0-ac2c-e84531bb","clientDesc":"0fdb9c43-dfc4-4047-a4ed-4ce3e9500a3e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.461 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.461 [XNIO-1 task-1] Us0NyMKwT5Gmj6H0cMwFWg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.463 [XNIO-1 task-1] CU40YddSTxi66lIBskNjxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.463 [XNIO-1 task-1] CU40YddSTxi66lIBskNjxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.463 [XNIO-1 task-1] CU40YddSTxi66lIBskNjxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.463 [XNIO-1 task-1] CU40YddSTxi66lIBskNjxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/101cafbf-600a-4d20-92a2-30777a5d880a, base path is set to: null +16:40:07.463 [XNIO-1 task-1] CU40YddSTxi66lIBskNjxA DEBUG com.networknt.schema.TypeValidator debug - validate( "101cafbf-600a-4d20-92a2-30777a5d880a", "101cafbf-600a-4d20-92a2-30777a5d880a", clientId) +16:40:07.469 [XNIO-1 task-1] KKHICAtwRoOuPRoqA4NG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/43abdcd5-e4df-4dea-93d9-aa83ffac8148 +16:40:07.469 [XNIO-1 task-1] KKHICAtwRoOuPRoqA4NG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.469 [XNIO-1 task-1] KKHICAtwRoOuPRoqA4NG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.470 [XNIO-1 task-1] KKHICAtwRoOuPRoqA4NG2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/43abdcd5-e4df-4dea-93d9-aa83ffac8148 +16:40:07.471 [XNIO-1 task-1] uXKsnVZtSt-2XBrdAWBZtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.472 [XNIO-1 task-1] uXKsnVZtSt-2XBrdAWBZtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.472 [XNIO-1 task-1] uXKsnVZtSt-2XBrdAWBZtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.472 [XNIO-1 task-1] uXKsnVZtSt-2XBrdAWBZtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.477 [XNIO-1 task-1] WFS-N2bHQ2SacxhP0L5IAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43abdcd5-e4df-4dea-93d9-aa83ffac8148, base path is set to: null +16:40:07.477 [XNIO-1 task-1] WFS-N2bHQ2SacxhP0L5IAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.477 [XNIO-1 task-1] WFS-N2bHQ2SacxhP0L5IAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.477 [XNIO-1 task-1] WFS-N2bHQ2SacxhP0L5IAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/43abdcd5-e4df-4dea-93d9-aa83ffac8148, base path is set to: null +16:40:07.477 [XNIO-1 task-1] WFS-N2bHQ2SacxhP0L5IAA DEBUG com.networknt.schema.TypeValidator debug - validate( "43abdcd5-e4df-4dea-93d9-aa83ffac8148", "43abdcd5-e4df-4dea-93d9-aa83ffac8148", clientId) +16:40:07.482 [XNIO-1 task-1] Bmt_baM1SwmIBLYFeaeGQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.482 [XNIO-1 task-1] Bmt_baM1SwmIBLYFeaeGQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.482 [XNIO-1 task-1] Bmt_baM1SwmIBLYFeaeGQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.488 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1643765a-6651-494d-8125-4934f1cf3d38 +16:40:07.493 [XNIO-1 task-1] r2HdV2nDR7yjHjatfhqDgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1643765a-6651-494d-8125-4934f1cf3d38, base path is set to: null +16:40:07.493 [XNIO-1 task-1] r2HdV2nDR7yjHjatfhqDgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.493 [XNIO-1 task-1] r2HdV2nDR7yjHjatfhqDgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.493 [XNIO-1 task-1] r2HdV2nDR7yjHjatfhqDgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1643765a-6651-494d-8125-4934f1cf3d38, base path is set to: null +16:40:07.493 [XNIO-1 task-1] r2HdV2nDR7yjHjatfhqDgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1643765a-6651-494d-8125-4934f1cf3d38", "1643765a-6651-494d-8125-4934f1cf3d38", clientId) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "a1dc38dd-f9e3-4218-a255-8e05750033b0", {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "464a5b44-35ab-4f87-8684-ed9cfec9", {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.497 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"464a5b44-35ab-4f87-8684-ed9cfec9","clientDesc":"a1dc38dd-f9e3-4218-a255-8e05750033b0","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.498 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.498 [XNIO-1 task-1] aqUlcIo_ReCaxIki5BCRXg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.502 [XNIO-1 task-1] hZ8y_ToYTEKL5eP1DXXy6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.503 [XNIO-1 task-1] hZ8y_ToYTEKL5eP1DXXy6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.503 [XNIO-1 task-1] hZ8y_ToYTEKL5eP1DXXy6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.503 [XNIO-1 task-1] hZ8y_ToYTEKL5eP1DXXy6g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.507 [XNIO-1 task-1] DLchWzOmRtizNaLNOCPNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.507 [XNIO-1 task-1] DLchWzOmRtizNaLNOCPNmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.507 [XNIO-1 task-1] DLchWzOmRtizNaLNOCPNmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.508 [XNIO-1 task-1] DLchWzOmRtizNaLNOCPNmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.512 [XNIO-1 task-1] cL89vBtOR0GpuV2QQozDiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1643765a-6651-494d-8125-4934f1cf3d38, base path is set to: null +16:40:07.512 [XNIO-1 task-1] cL89vBtOR0GpuV2QQozDiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.512 [XNIO-1 task-1] cL89vBtOR0GpuV2QQozDiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.512 [XNIO-1 task-1] cL89vBtOR0GpuV2QQozDiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1643765a-6651-494d-8125-4934f1cf3d38, base path is set to: null +16:40:07.512 [XNIO-1 task-1] cL89vBtOR0GpuV2QQozDiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1643765a-6651-494d-8125-4934f1cf3d38", "1643765a-6651-494d-8125-4934f1cf3d38", clientId) +16:40:07.514 [XNIO-1 task-1] DAmCedmPSXu8XYxrfIEk3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.514 [XNIO-1 task-1] DAmCedmPSXu8XYxrfIEk3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.514 [XNIO-1 task-1] DAmCedmPSXu8XYxrfIEk3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.514 [XNIO-1 task-1] DAmCedmPSXu8XYxrfIEk3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.518 [XNIO-1 task-1] 8u2YQ6gZROKP3N3BSInwvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca +16:40:07.518 [XNIO-1 task-1] 8u2YQ6gZROKP3N3BSInwvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.518 [XNIO-1 task-1] 8u2YQ6gZROKP3N3BSInwvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.518 [XNIO-1 task-1] 8u2YQ6gZROKP3N3BSInwvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca +16:40:07.520 [XNIO-1 task-1] f0VLtbAKRUiMNMys76An9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/146d241a-8a05-4029-92f0-259c8deacff8, base path is set to: null +16:40:07.520 [XNIO-1 task-1] f0VLtbAKRUiMNMys76An9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.520 [XNIO-1 task-1] f0VLtbAKRUiMNMys76An9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.520 [XNIO-1 task-1] f0VLtbAKRUiMNMys76An9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/146d241a-8a05-4029-92f0-259c8deacff8, base path is set to: null +16:40:07.520 [XNIO-1 task-1] f0VLtbAKRUiMNMys76An9g DEBUG com.networknt.schema.TypeValidator debug - validate( "146d241a-8a05-4029-92f0-259c8deacff8", "146d241a-8a05-4029-92f0-259c8deacff8", clientId) +16:40:07.525 [XNIO-1 task-1] QyYqZhmeTuO6vajkfPrOWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1643765a-6651-494d-8125-4934f1cf3d38 +16:40:07.525 [XNIO-1 task-1] QyYqZhmeTuO6vajkfPrOWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.525 [XNIO-1 task-1] QyYqZhmeTuO6vajkfPrOWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.525 [XNIO-1 task-1] QyYqZhmeTuO6vajkfPrOWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1643765a-6651-494d-8125-4934f1cf3d38 +16:40:07.526 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:1643765a-6651-494d-8125-4934f1cf3d38 +16:40:07.530 [XNIO-1 task-1] Iahm8dpGQP-zQVA1NM3E3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.530 [XNIO-1 task-1] Iahm8dpGQP-zQVA1NM3E3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.530 [XNIO-1 task-1] Iahm8dpGQP-zQVA1NM3E3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.530 [XNIO-1 task-1] Iahm8dpGQP-zQVA1NM3E3w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.535 [XNIO-1 task-1] 6NoOQWCXQdSTWJMsbgnpSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.536 [XNIO-1 task-1] 6NoOQWCXQdSTWJMsbgnpSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.536 [XNIO-1 task-1] 6NoOQWCXQdSTWJMsbgnpSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.536 [XNIO-1 task-1] 6NoOQWCXQdSTWJMsbgnpSQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.541 [XNIO-1 task-1] -958O7rDREm4Fe2kj6BPTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca +16:40:07.541 [XNIO-1 task-1] -958O7rDREm4Fe2kj6BPTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.541 [XNIO-1 task-1] -958O7rDREm4Fe2kj6BPTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.541 [XNIO-1 task-1] -958O7rDREm4Fe2kj6BPTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca +16:40:07.543 [XNIO-1 task-1] YXPHrNXjS4-8tGloox7pVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca, base path is set to: null +16:40:07.543 [XNIO-1 task-1] YXPHrNXjS4-8tGloox7pVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.543 [XNIO-1 task-1] YXPHrNXjS4-8tGloox7pVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.543 [XNIO-1 task-1] YXPHrNXjS4-8tGloox7pVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1a608ba2-8db8-43db-bff5-c3228a6629ca, base path is set to: null +16:40:07.543 [XNIO-1 task-1] YXPHrNXjS4-8tGloox7pVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1a608ba2-8db8-43db-bff5-c3228a6629ca", "1a608ba2-8db8-43db-bff5-c3228a6629ca", clientId) +16:40:07.548 [XNIO-1 task-1] d38Anui-SAGnAAWByWmcfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.548 [XNIO-1 task-1] d38Anui-SAGnAAWByWmcfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.548 [XNIO-1 task-1] d38Anui-SAGnAAWByWmcfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.558 [XNIO-1 task-1] 4tyBznoXQn-qMbS0CGWYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d50289c-c8d9-4fdc-a0a6-58d88331ff4d +16:40:07.558 [XNIO-1 task-1] 4tyBznoXQn-qMbS0CGWYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.558 [XNIO-1 task-1] 4tyBznoXQn-qMbS0CGWYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.558 [XNIO-1 task-1] 4tyBznoXQn-qMbS0CGWYNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d50289c-c8d9-4fdc-a0a6-58d88331ff4d +16:40:07.560 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.560 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.560 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.560 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5e83f499-6b83-4863-8b8e-831bf37c","clientDesc":"fd506dbb-624d-407e-b2dc-74cb74dec7eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.561 [XNIO-1 task-1] CFrj08_3SROo2A6uFxM4MQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.563 [XNIO-1 task-1] Y8MngBF1S0enAUNz2FpS4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d50289c-c8d9-4fdc-a0a6-58d88331ff4d +16:40:07.563 [XNIO-1 task-1] Y8MngBF1S0enAUNz2FpS4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.563 [XNIO-1 task-1] Y8MngBF1S0enAUNz2FpS4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.563 [XNIO-1 task-1] Y8MngBF1S0enAUNz2FpS4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d50289c-c8d9-4fdc-a0a6-58d88331ff4d +16:40:07.568 [XNIO-1 task-1] cLuDN10kRc672droT6yR5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.568 [XNIO-1 task-1] cLuDN10kRc672droT6yR5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.568 [XNIO-1 task-1] cLuDN10kRc672droT6yR5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.573 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:07.574 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "35c4c11e-b4cd-43af-9727-2a2a1cb1d257", {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "669eb1dd-5736-4a37-97dc-710914d2", {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.579 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.580 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"669eb1dd-5736-4a37-97dc-710914d2","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.580 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.580 [XNIO-1 task-1] w1i1rH_tS3ygQiTlqncs5A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.582 [XNIO-1 task-1] cKVh7EDmT8WZaKlBgFCacQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:07.582 [XNIO-1 task-1] cKVh7EDmT8WZaKlBgFCacQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.582 [XNIO-1 task-1] cKVh7EDmT8WZaKlBgFCacQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.582 [XNIO-1 task-1] cKVh7EDmT8WZaKlBgFCacQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:07.582 [XNIO-1 task-1] cKVh7EDmT8WZaKlBgFCacQ DEBUG com.networknt.schema.TypeValidator debug - validate( "13df3e3e-5504-4781-ae85-9c1b041e6224", "13df3e3e-5504-4781-ae85-9c1b041e6224", clientId) +16:40:07.584 [XNIO-1 task-1] qhjrUk-8SVavGr9cn26urQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.584 [XNIO-1 task-1] qhjrUk-8SVavGr9cn26urQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.584 [XNIO-1 task-1] qhjrUk-8SVavGr9cn26urQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.595 [XNIO-1 task-1] mQyFS6g3Q_qzrX-pbBuRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.595 [XNIO-1 task-1] mQyFS6g3Q_qzrX-pbBuRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.595 [XNIO-1 task-1] mQyFS6g3Q_qzrX-pbBuRlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.606 [XNIO-1 task-1] L5749uuuQZ6_8UToaZQ0Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa3a88c2-c41b-4ed4-a7e1-ab5dff0d7dec +16:40:07.606 [XNIO-1 task-1] L5749uuuQZ6_8UToaZQ0Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.606 [XNIO-1 task-1] L5749uuuQZ6_8UToaZQ0Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.606 [XNIO-1 task-1] L5749uuuQZ6_8UToaZQ0Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa3a88c2-c41b-4ed4-a7e1-ab5dff0d7dec +16:40:07.612 [XNIO-1 task-1] 8_-XNEemSY6jh2csjdMqWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:07.612 [XNIO-1 task-1] 8_-XNEemSY6jh2csjdMqWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.612 [XNIO-1 task-1] 8_-XNEemSY6jh2csjdMqWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.612 [XNIO-1 task-1] 8_-XNEemSY6jh2csjdMqWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:07.612 [XNIO-1 task-1] 8_-XNEemSY6jh2csjdMqWg DEBUG com.networknt.schema.TypeValidator debug - validate( "13df3e3e-5504-4781-ae85-9c1b041e6224", "13df3e3e-5504-4781-ae85-9c1b041e6224", clientId) +16:40:07.614 [XNIO-1 task-1] aCf1RhSTRWKLLTxnv2OG-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.614 [XNIO-1 task-1] aCf1RhSTRWKLLTxnv2OG-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.614 [XNIO-1 task-1] aCf1RhSTRWKLLTxnv2OG-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.614 [XNIO-1 task-1] aCf1RhSTRWKLLTxnv2OG-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.619 [XNIO-1 task-1] eMeRQephSpGgXdVzJS3UaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.619 [XNIO-1 task-1] eMeRQephSpGgXdVzJS3UaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.619 [XNIO-1 task-1] eMeRQephSpGgXdVzJS3UaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.630 [XNIO-1 task-1] ZBprKDUGT7Wgw2H66i_C5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:07.630 [XNIO-1 task-1] ZBprKDUGT7Wgw2H66i_C5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.630 [XNIO-1 task-1] ZBprKDUGT7Wgw2H66i_C5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.630 [XNIO-1 task-1] ZBprKDUGT7Wgw2H66i_C5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:07.632 [XNIO-1 task-1] Sk8zzUKoQO6WRMdlzhAoFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aae5088-b0e1-42e3-bb3f-5eedc28a8ade, base path is set to: null +16:40:07.632 [XNIO-1 task-1] Sk8zzUKoQO6WRMdlzhAoFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.632 [XNIO-1 task-1] Sk8zzUKoQO6WRMdlzhAoFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.632 [XNIO-1 task-1] Sk8zzUKoQO6WRMdlzhAoFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aae5088-b0e1-42e3-bb3f-5eedc28a8ade, base path is set to: null +16:40:07.632 [XNIO-1 task-1] Sk8zzUKoQO6WRMdlzhAoFg DEBUG com.networknt.schema.TypeValidator debug - validate( "9aae5088-b0e1-42e3-bb3f-5eedc28a8ade", "9aae5088-b0e1-42e3-bb3f-5eedc28a8ade", clientId) +16:40:07.634 [XNIO-1 task-1] hSgGPU9sRZe87wVI14ezng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.634 [XNIO-1 task-1] hSgGPU9sRZe87wVI14ezng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.634 [XNIO-1 task-1] hSgGPU9sRZe87wVI14ezng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.644 [XNIO-1 task-1] KcXOCqWOQKCBW2k6Poholw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.644 [XNIO-1 task-1] KcXOCqWOQKCBW2k6Poholw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.644 [XNIO-1 task-1] KcXOCqWOQKCBW2k6Poholw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.655 [XNIO-1 task-1] fW8-8sS8Q62vNOXd2rXJyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.655 [XNIO-1 task-1] fW8-8sS8Q62vNOXd2rXJyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.655 [XNIO-1 task-1] fW8-8sS8Q62vNOXd2rXJyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.665 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "35c4c11e-b4cd-43af-9727-2a2a1cb1d257", {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "1db3bdc7-e69c-4474-9056-ea4b421d", {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1db3bdc7-e69c-4474-9056-ea4b421d","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.666 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.667 [XNIO-1 task-1] FFJmwBvJT2yj33ZuxVu-BA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.671 [XNIO-1 task-1] ABKyHs-iTgK2xEin8DPxUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.671 [XNIO-1 task-1] ABKyHs-iTgK2xEin8DPxUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.672 [XNIO-1 task-1] ABKyHs-iTgK2xEin8DPxUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.683 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"947a28cb-debf-4637-b3e0-1af70993","clientDesc":"2b7d544e-f554-4373-b2cc-a230faa87557","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.684 [XNIO-1 task-1] 5cmJIAhXRqOp4GY7eJVtng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.685 [XNIO-1 task-1] 71hAJ4RaR3mxcf9r7NZKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.685 [XNIO-1 task-1] 71hAJ4RaR3mxcf9r7NZKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.685 [XNIO-1 task-1] 71hAJ4RaR3mxcf9r7NZKhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.686 [XNIO-1 task-1] 71hAJ4RaR3mxcf9r7NZKhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.690 [XNIO-1 task-1] 2BT3k-OhQUqEvuIk6sq9nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.690 [XNIO-1 task-1] 2BT3k-OhQUqEvuIk6sq9nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.690 [XNIO-1 task-1] 2BT3k-OhQUqEvuIk6sq9nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.690 [XNIO-1 task-1] 2BT3k-OhQUqEvuIk6sq9nQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.696 [XNIO-1 task-1] nsPqt1ajRMasOONBZk7ZFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e0594c2e-53ee-4f5b-a0dc-d88f862a138a +16:40:07.696 [XNIO-1 task-1] nsPqt1ajRMasOONBZk7ZFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.696 [XNIO-1 task-1] nsPqt1ajRMasOONBZk7ZFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.696 [XNIO-1 task-1] nsPqt1ajRMasOONBZk7ZFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e0594c2e-53ee-4f5b-a0dc-d88f862a138a +16:40:07.701 [XNIO-1 task-1] rxnujbjjRPytgoOs3lFKKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5354b652-88c5-4e1f-8484-fe11360e60e2, base path is set to: null +16:40:07.701 [XNIO-1 task-1] rxnujbjjRPytgoOs3lFKKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.701 [XNIO-1 task-1] rxnujbjjRPytgoOs3lFKKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.701 [XNIO-1 task-1] rxnujbjjRPytgoOs3lFKKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5354b652-88c5-4e1f-8484-fe11360e60e2, base path is set to: null +16:40:07.701 [XNIO-1 task-1] rxnujbjjRPytgoOs3lFKKA DEBUG com.networknt.schema.TypeValidator debug - validate( "5354b652-88c5-4e1f-8484-fe11360e60e2", "5354b652-88c5-4e1f-8484-fe11360e60e2", clientId) +16:40:07.703 [XNIO-1 task-1] b7vlTfu7Qfy-La_iea6VaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee +16:40:07.703 [XNIO-1 task-1] b7vlTfu7Qfy-La_iea6VaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.703 [XNIO-1 task-1] b7vlTfu7Qfy-La_iea6VaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.703 [XNIO-1 task-1] b7vlTfu7Qfy-La_iea6VaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee +16:40:07.705 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.705 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.705 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.705 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.705 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c69f2267-e19b-4c2c-b422-c8c05a13","clientDesc":"f0f75ba5-6018-4772-8433-02182feb116b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.706 [XNIO-1 task-1] GS4N9m6oQN283ub1nVK07w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.708 [XNIO-1 task-1] bPWyzT9LTny8lMK2AyL1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5354b652-88c5-4e1f-8484-fe11360e60e2 +16:40:07.708 [XNIO-1 task-1] bPWyzT9LTny8lMK2AyL1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.708 [XNIO-1 task-1] bPWyzT9LTny8lMK2AyL1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.708 [XNIO-1 task-1] bPWyzT9LTny8lMK2AyL1tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5354b652-88c5-4e1f-8484-fe11360e60e2 +16:40:07.713 [XNIO-1 task-1] l4xABe-0S0e78Y38q5L2LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.713 [XNIO-1 task-1] l4xABe-0S0e78Y38q5L2LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.713 [XNIO-1 task-1] l4xABe-0S0e78Y38q5L2LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.713 [XNIO-1 task-1] l4xABe-0S0e78Y38q5L2LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.718 [XNIO-1 task-1] GDV6jYWmRkqARyl56h7SVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.718 [XNIO-1 task-1] GDV6jYWmRkqARyl56h7SVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.718 [XNIO-1 task-1] GDV6jYWmRkqARyl56h7SVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.718 [XNIO-1 task-1] GDV6jYWmRkqARyl56h7SVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.723 [XNIO-1 task-1] QRfCKsJSQW-47vSYvDP3wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee, base path is set to: null +16:40:07.723 [XNIO-1 task-1] QRfCKsJSQW-47vSYvDP3wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.723 [XNIO-1 task-1] QRfCKsJSQW-47vSYvDP3wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.724 [XNIO-1 task-1] QRfCKsJSQW-47vSYvDP3wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee, base path is set to: null +16:40:07.724 [XNIO-1 task-1] QRfCKsJSQW-47vSYvDP3wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a1df56c9-25f2-41f0-bd80-45d5975ef6ee", "a1df56c9-25f2-41f0-bd80-45d5975ef6ee", clientId) +16:40:07.726 [XNIO-1 task-1] ku6M_J7qRYWNu_Q8DXQkZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.726 [XNIO-1 task-1] ku6M_J7qRYWNu_Q8DXQkZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.726 [XNIO-1 task-1] ku6M_J7qRYWNu_Q8DXQkZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.726 [XNIO-1 task-1] ku6M_J7qRYWNu_Q8DXQkZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.731 [XNIO-1 task-1] lkXnKNEGQ_OvZ-KQlTwqWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.731 [XNIO-1 task-1] lkXnKNEGQ_OvZ-KQlTwqWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.731 [XNIO-1 task-1] lkXnKNEGQ_OvZ-KQlTwqWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.743 [XNIO-1 task-1] VZ7ABJ-fTGOGl1WnvkId_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.743 [XNIO-1 task-1] VZ7ABJ-fTGOGl1WnvkId_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.743 [XNIO-1 task-1] VZ7ABJ-fTGOGl1WnvkId_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.743 [XNIO-1 task-1] VZ7ABJ-fTGOGl1WnvkId_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.750 [XNIO-1 task-1] GWvwQuMqT860tElvicxofA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.750 [XNIO-1 task-1] GWvwQuMqT860tElvicxofA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.751 [XNIO-1 task-1] GWvwQuMqT860tElvicxofA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.756 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore store - Store:2d1b325c-921f-4845-ba59-c2ec6d881609 +16:40:07.761 [XNIO-1 task-1] nR63nWSyRmy0s9q84bvvgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2eda6624-9a63-477d-ad03-ed0af8a1c71e, base path is set to: null +16:40:07.761 [XNIO-1 task-1] nR63nWSyRmy0s9q84bvvgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.761 [XNIO-1 task-1] nR63nWSyRmy0s9q84bvvgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.761 [XNIO-1 task-1] nR63nWSyRmy0s9q84bvvgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2eda6624-9a63-477d-ad03-ed0af8a1c71e, base path is set to: null +16:40:07.761 [XNIO-1 task-1] nR63nWSyRmy0s9q84bvvgw DEBUG com.networknt.schema.TypeValidator debug - validate( "2eda6624-9a63-477d-ad03-ed0af8a1c71e", "2eda6624-9a63-477d-ad03-ed0af8a1c71e", clientId) +16:40:07.765 [XNIO-1 task-1] L0MRFCPtTK2fMU4T6lb0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee +16:40:07.765 [XNIO-1 task-1] L0MRFCPtTK2fMU4T6lb0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.765 [XNIO-1 task-1] L0MRFCPtTK2fMU4T6lb0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.765 [XNIO-1 task-1] L0MRFCPtTK2fMU4T6lb0Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee +16:40:07.767 [XNIO-1 task-1] p4_qw64DTaaQdRB9kxAJuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1fe2303c-58b9-4d0a-9797-284afd3db650, base path is set to: null +16:40:07.767 [XNIO-1 task-1] p4_qw64DTaaQdRB9kxAJuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.767 [XNIO-1 task-1] p4_qw64DTaaQdRB9kxAJuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.767 [XNIO-1 task-1] p4_qw64DTaaQdRB9kxAJuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1fe2303c-58b9-4d0a-9797-284afd3db650, base path is set to: null +16:40:07.767 [XNIO-1 task-1] p4_qw64DTaaQdRB9kxAJuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1fe2303c-58b9-4d0a-9797-284afd3db650", "1fe2303c-58b9-4d0a-9797-284afd3db650", clientId) +16:40:07.772 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.772 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.772 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.772 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.772 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.772 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG com.networknt.schema.TypeValidator debug - validate( "a93018ed-8918-4fe6-8f2e-7b2f43c5462c", {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.773 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.773 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.773 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG com.networknt.schema.TypeValidator debug - validate( "c1591926-b4df-4216-91ba-8ce12fd4", {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.773 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.773 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c1591926-b4df-4216-91ba-8ce12fd4","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.773 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.773 [XNIO-1 task-1] 6C8F7_uARSe5Ax1BMQR9mg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.775 [XNIO-1 task-1] WxcBh6aURTiRqrjs8D-hsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.775 [XNIO-1 task-1] WxcBh6aURTiRqrjs8D-hsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.775 [XNIO-1 task-1] WxcBh6aURTiRqrjs8D-hsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.775 [XNIO-1 task-1] WxcBh6aURTiRqrjs8D-hsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.782 [XNIO-1 task-1] ZexWQMi9TQ6-oSrPXp75kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2eda6624-9a63-477d-ad03-ed0af8a1c71e, base path is set to: null +16:40:07.782 [XNIO-1 task-1] ZexWQMi9TQ6-oSrPXp75kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.782 [XNIO-1 task-1] ZexWQMi9TQ6-oSrPXp75kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.782 [XNIO-1 task-1] ZexWQMi9TQ6-oSrPXp75kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2eda6624-9a63-477d-ad03-ed0af8a1c71e, base path is set to: null +16:40:07.782 [XNIO-1 task-1] ZexWQMi9TQ6-oSrPXp75kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2eda6624-9a63-477d-ad03-ed0af8a1c71e", "2eda6624-9a63-477d-ad03-ed0af8a1c71e", clientId) +16:40:07.784 [XNIO-1 task-1] tYtVjQDESj2B1xYayisymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee +16:40:07.784 [XNIO-1 task-1] tYtVjQDESj2B1xYayisymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.784 [XNIO-1 task-1] tYtVjQDESj2B1xYayisymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.784 [XNIO-1 task-1] tYtVjQDESj2B1xYayisymQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a1df56c9-25f2-41f0-bd80-45d5975ef6ee +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.789 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.790 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.790 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.790 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.790 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bfa0fc51-1fe9-436a-8ac6-7557d7f5","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.790 [XNIO-1 task-1] eN7jwYibRrilJNpyz_Q7dA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.792 [XNIO-1 task-1] SqzPofHMTYyWw6RFV82oGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d1b325c-921f-4845-ba59-c2ec6d881609 +16:40:07.792 [XNIO-1 task-1] SqzPofHMTYyWw6RFV82oGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.792 [XNIO-1 task-1] SqzPofHMTYyWw6RFV82oGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.792 [XNIO-1 task-1] SqzPofHMTYyWw6RFV82oGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d1b325c-921f-4845-ba59-c2ec6d881609 +16:40:07.794 [XNIO-1 task-1] bCON7EFZS0WyvCtHiAsK9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.794 [XNIO-1 task-1] bCON7EFZS0WyvCtHiAsK9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.794 [XNIO-1 task-1] bCON7EFZS0WyvCtHiAsK9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.804 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.804 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.804 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.804 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5bac5805-6c56-4c10-890a-581f7f7f","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.805 [XNIO-1 task-1] voF1VIZWRhq9Z9nruqoudw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "35c4c11e-b4cd-43af-9727-2a2a1cb1d257", {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.807 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.808 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f2b1d31-7377-432f-8108-1ceebc86", {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.808 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.808 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7f2b1d31-7377-432f-8108-1ceebc86","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.808 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.808 [XNIO-1 task-1] 8klLBpysTb2Zt-urvFN8ZA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.810 [XNIO-1 task-1] zKRwaRuFQPSOExdzLSLD-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.810 [XNIO-1 task-1] zKRwaRuFQPSOExdzLSLD-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.810 [XNIO-1 task-1] zKRwaRuFQPSOExdzLSLD-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.821 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.822 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"77122333-58fa-4b74-b723-9c49e864","clientDesc":"e45c72e1-d456-4ac2-b708-ffc4a6d34771","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.822 [XNIO-1 task-1] lQDmwppCTbSBeG1nIjf51A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.824 [XNIO-1 task-1] A6EGG2R1Qy61eBnTP-Fsiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:07.824 [XNIO-1 task-1] A6EGG2R1Qy61eBnTP-Fsiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.824 [XNIO-1 task-1] A6EGG2R1Qy61eBnTP-Fsiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.824 [XNIO-1 task-1] A6EGG2R1Qy61eBnTP-Fsiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:07.838 [XNIO-1 task-1] 2I0j9g1cSriihqso20_olg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9, base path is set to: null +16:40:07.838 [XNIO-1 task-1] 2I0j9g1cSriihqso20_olg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.838 [XNIO-1 task-1] 2I0j9g1cSriihqso20_olg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.838 [XNIO-1 task-1] 2I0j9g1cSriihqso20_olg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9, base path is set to: null +16:40:07.838 [XNIO-1 task-1] 2I0j9g1cSriihqso20_olg DEBUG com.networknt.schema.TypeValidator debug - validate( "247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9", "247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9", clientId) +16:40:07.841 [XNIO-1 task-1] wdfKvnZVRKaFh8RrTnPwJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.841 [XNIO-1 task-1] wdfKvnZVRKaFh8RrTnPwJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.841 [XNIO-1 task-1] wdfKvnZVRKaFh8RrTnPwJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.853 [XNIO-1 task-1] RhLSXwNlQZe_ZSQhW3WWNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.853 [XNIO-1 task-1] RhLSXwNlQZe_ZSQhW3WWNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.853 [XNIO-1 task-1] RhLSXwNlQZe_ZSQhW3WWNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.864 [XNIO-1 task-1] PNGBl0BfQjSr4S-8FMrtAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.864 [XNIO-1 task-1] PNGBl0BfQjSr4S-8FMrtAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.864 [XNIO-1 task-1] PNGBl0BfQjSr4S-8FMrtAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.864 [XNIO-1 task-1] PNGBl0BfQjSr4S-8FMrtAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.869 [XNIO-1 task-1] eop8EBXbRS-07aziUmBmCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d1b325c-921f-4845-ba59-c2ec6d881609 +16:40:07.869 [XNIO-1 task-1] eop8EBXbRS-07aziUmBmCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.869 [XNIO-1 task-1] eop8EBXbRS-07aziUmBmCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.869 [XNIO-1 task-1] eop8EBXbRS-07aziUmBmCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2d1b325c-921f-4845-ba59-c2ec6d881609 +16:40:07.869 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2d1b325c-921f-4845-ba59-c2ec6d881609 +16:40:07.873 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.873 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.873 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG com.networknt.schema.TypeValidator debug - validate( "35c4c11e-b4cd-43af-9727-2a2a1cb1d257", {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG com.networknt.schema.TypeValidator debug - validate( "ee133cb3-7c84-46e2-8787-7adf8b89", {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ee133cb3-7c84-46e2-8787-7adf8b89","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.874 [XNIO-1 task-1] E9t2bXDORFahKuVu5nfVKw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.876 [XNIO-1 task-1] y1vzrH2TS3ywVWYRe7NLbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9, base path is set to: null +16:40:07.876 [XNIO-1 task-1] y1vzrH2TS3ywVWYRe7NLbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.876 [XNIO-1 task-1] y1vzrH2TS3ywVWYRe7NLbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.876 [XNIO-1 task-1] y1vzrH2TS3ywVWYRe7NLbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9, base path is set to: null +16:40:07.876 [XNIO-1 task-1] y1vzrH2TS3ywVWYRe7NLbA DEBUG com.networknt.schema.TypeValidator debug - validate( "247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9", "247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9", clientId) +16:40:07.878 [XNIO-1 task-1] 51-zFfV4TiinSPxfUUmUDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa952b23-a52d-4159-9f14-7a65331a68cd +16:40:07.878 [XNIO-1 task-1] 51-zFfV4TiinSPxfUUmUDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.878 [XNIO-1 task-1] 51-zFfV4TiinSPxfUUmUDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.878 [XNIO-1 task-1] 51-zFfV4TiinSPxfUUmUDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fa952b23-a52d-4159-9f14-7a65331a68cd +16:40:07.883 [XNIO-1 task-1] Aq9JHlWwTl2s0l7CfrESbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.883 [XNIO-1 task-1] Aq9JHlWwTl2s0l7CfrESbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.884 [XNIO-1 task-1] Aq9JHlWwTl2s0l7CfrESbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.884 [XNIO-1 task-1] Aq9JHlWwTl2s0l7CfrESbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.890 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.890 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.890 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.890 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.890 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.890 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.890 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.891 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.891 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.891 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.891 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.891 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"457e1a09-5b19-4baa-a8bb-e0e4126b","clientDesc":"35c4c11e-b4cd-43af-9727-2a2a1cb1d257","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.891 [XNIO-1 task-1] D2AGAE2kT8u3_DHy5aCofQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:07.893 [XNIO-1 task-1] 3HZVEV-sSmuke9ajCwXasA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.893 [XNIO-1 task-1] 3HZVEV-sSmuke9ajCwXasA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.893 [XNIO-1 task-1] 3HZVEV-sSmuke9ajCwXasA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.893 [XNIO-1 task-1] 3HZVEV-sSmuke9ajCwXasA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.898 [XNIO-1 task-1] lZ6Q-q8sQ1K0rfOrQMiPRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2f3bd05c-511d-4410-8fc2-64c76fc544f1 +16:40:07.898 [XNIO-1 task-1] lZ6Q-q8sQ1K0rfOrQMiPRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.899 [XNIO-1 task-1] lZ6Q-q8sQ1K0rfOrQMiPRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.899 [XNIO-1 task-1] lZ6Q-q8sQ1K0rfOrQMiPRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2f3bd05c-511d-4410-8fc2-64c76fc544f1 +16:40:07.901 [XNIO-1 task-1] RsgkAvidQIOgenUXVIAkAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.901 [XNIO-1 task-1] RsgkAvidQIOgenUXVIAkAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.901 [XNIO-1 task-1] RsgkAvidQIOgenUXVIAkAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.901 [XNIO-1 task-1] RsgkAvidQIOgenUXVIAkAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.905 [XNIO-1 task-1] I5owA0GHQvGj1UIKyZxnUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.905 [XNIO-1 task-1] I5owA0GHQvGj1UIKyZxnUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.906 [XNIO-1 task-1] I5owA0GHQvGj1UIKyZxnUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.906 [XNIO-1 task-1] I5owA0GHQvGj1UIKyZxnUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:07.910 [XNIO-1 task-1] a-Nv4oKFSrKjI6YXRAXLPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2eda6624-9a63-477d-ad03-ed0af8a1c71e, base path is set to: null +16:40:07.910 [XNIO-1 task-1] a-Nv4oKFSrKjI6YXRAXLPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.910 [XNIO-1 task-1] a-Nv4oKFSrKjI6YXRAXLPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.910 [XNIO-1 task-1] a-Nv4oKFSrKjI6YXRAXLPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2eda6624-9a63-477d-ad03-ed0af8a1c71e, base path is set to: null +16:40:07.910 [XNIO-1 task-1] a-Nv4oKFSrKjI6YXRAXLPA DEBUG com.networknt.schema.TypeValidator debug - validate( "2eda6624-9a63-477d-ad03-ed0af8a1c71e", "2eda6624-9a63-477d-ad03-ed0af8a1c71e", clientId) +16:40:07.915 [XNIO-1 task-1] X9T8V7geReeHyhZHbTGo7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.915 [XNIO-1 task-1] X9T8V7geReeHyhZHbTGo7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.915 [XNIO-1 task-1] X9T8V7geReeHyhZHbTGo7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.916 [XNIO-1 task-1] X9T8V7geReeHyhZHbTGo7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:07.920 [XNIO-1 task-1] mdSHW0Y1QASvWnTfxIzp6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.920 [XNIO-1 task-1] mdSHW0Y1QASvWnTfxIzp6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.920 [XNIO-1 task-1] mdSHW0Y1QASvWnTfxIzp6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.931 [XNIO-1 task-1] GKveKmH9Tvm7jCBpVE3eiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9aae5088-b0e1-42e3-bb3f-5eedc28a8ade +16:40:07.931 [XNIO-1 task-1] GKveKmH9Tvm7jCBpVE3eiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.931 [XNIO-1 task-1] GKveKmH9Tvm7jCBpVE3eiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:07.931 [XNIO-1 task-1] GKveKmH9Tvm7jCBpVE3eiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9aae5088-b0e1-42e3-bb3f-5eedc28a8ade +16:40:07.933 [XNIO-1 task-1] 6hkq-2PRSf61xEDZ5J6IpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e90521c0-55af-4a91-9f78-bd018a4fe54a, base path is set to: null +16:40:07.933 [XNIO-1 task-1] 6hkq-2PRSf61xEDZ5J6IpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.933 [XNIO-1 task-1] 6hkq-2PRSf61xEDZ5J6IpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:07.933 [XNIO-1 task-1] 6hkq-2PRSf61xEDZ5J6IpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e90521c0-55af-4a91-9f78-bd018a4fe54a, base path is set to: null +16:40:07.933 [XNIO-1 task-1] 6hkq-2PRSf61xEDZ5J6IpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e90521c0-55af-4a91-9f78-bd018a4fe54a", "e90521c0-55af-4a91-9f78-bd018a4fe54a", clientId) +16:40:07.940 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.940 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.940 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.940 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.940 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.940 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a93018ed-8918-4fe6-8f2e-7b2f43c5462c", {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.941 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.941 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.941 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de88a084-d7c1-4bfe-9b5a-00630073", {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.941 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.941 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"de88a084-d7c1-4bfe-9b5a-00630073","clientDesc":"a93018ed-8918-4fe6-8f2e-7b2f43c5462c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.941 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.941 [XNIO-1 task-1] FSS2pi_jSYC7a7DdH5C1wQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:07.943 [XNIO-1 task-1] XKV4CNh_Tom2V8m4GzCqng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.943 [XNIO-1 task-1] XKV4CNh_Tom2V8m4GzCqng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.943 [XNIO-1 task-1] XKV4CNh_Tom2V8m4GzCqng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.976 [XNIO-1 task-1] 55qWVAxLQ6KsOV3UA7lDbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.976 [XNIO-1 task-1] 55qWVAxLQ6KsOV3UA7lDbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:07.976 [XNIO-1 task-1] 55qWVAxLQ6KsOV3UA7lDbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:07.981 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:243b224c-0b63-4cf1-8f71-8028cb74854f +16:40:07.981 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:243b224c-0b63-4cf1-8f71-8028cb74854f +16:40:07.986 [XNIO-1 task-1] 4-3otzn0TUOpk6TDKJuNfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.986 [XNIO-1 task-1] 4-3otzn0TUOpk6TDKJuNfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.987 [XNIO-1 task-1] 4-3otzn0TUOpk6TDKJuNfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.997 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.997 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.997 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "ed374a47-e10b-44e2-91b8-c795eea6127a", {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "2e94bdfe-09b0-4cb1-8061-3231d6cf", {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"2e94bdfe-09b0-4cb1-8061-3231d6cf","clientDesc":"ed374a47-e10b-44e2-91b8-c795eea6127a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:07.998 [XNIO-1 task-1] rreN35pvTE6N_SXorwbk4w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.001 [XNIO-1 task-1] Fp6Yn0V0TzSZoQek4PMUiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aae5088-b0e1-42e3-bb3f-5eedc28a8ade, base path is set to: null +16:40:08.001 [XNIO-1 task-1] Fp6Yn0V0TzSZoQek4PMUiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.001 [XNIO-1 task-1] Fp6Yn0V0TzSZoQek4PMUiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.002 [XNIO-1 task-1] Fp6Yn0V0TzSZoQek4PMUiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9aae5088-b0e1-42e3-bb3f-5eedc28a8ade, base path is set to: null +16:40:08.002 [XNIO-1 task-1] Fp6Yn0V0TzSZoQek4PMUiw DEBUG com.networknt.schema.TypeValidator debug - validate( "9aae5088-b0e1-42e3-bb3f-5eedc28a8ade", "9aae5088-b0e1-42e3-bb3f-5eedc28a8ade", clientId) +16:40:08.007 [XNIO-1 task-1] UIETPif2T2ee2VGIcoxo8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39 +16:40:08.007 [XNIO-1 task-1] UIETPif2T2ee2VGIcoxo8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.008 [XNIO-1 task-1] UIETPif2T2ee2VGIcoxo8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.008 [XNIO-1 task-1] UIETPif2T2ee2VGIcoxo8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39 +16:40:08.010 [XNIO-1 task-1] UrBYeZNzTuyP-tb7tXB8dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/243b224c-0b63-4cf1-8f71-8028cb74854f, base path is set to: null +16:40:08.010 [XNIO-1 task-1] UrBYeZNzTuyP-tb7tXB8dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.010 [XNIO-1 task-1] UrBYeZNzTuyP-tb7tXB8dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.010 [XNIO-1 task-1] UrBYeZNzTuyP-tb7tXB8dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/243b224c-0b63-4cf1-8f71-8028cb74854f, base path is set to: null +16:40:08.010 [XNIO-1 task-1] UrBYeZNzTuyP-tb7tXB8dw DEBUG com.networknt.schema.TypeValidator debug - validate( "243b224c-0b63-4cf1-8f71-8028cb74854f", "243b224c-0b63-4cf1-8f71-8028cb74854f", clientId) +16:40:08.016 [XNIO-1 task-1] 3qARnb-iS_-VkSflmCzFpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39, base path is set to: null +16:40:08.016 [XNIO-1 task-1] 3qARnb-iS_-VkSflmCzFpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.016 [XNIO-1 task-1] 3qARnb-iS_-VkSflmCzFpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.016 [XNIO-1 task-1] 3qARnb-iS_-VkSflmCzFpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39, base path is set to: null +16:40:08.016 [XNIO-1 task-1] 3qARnb-iS_-VkSflmCzFpA DEBUG com.networknt.schema.TypeValidator debug - validate( "329f3514-7c41-464c-ad67-7c501648ae39", "329f3514-7c41-464c-ad67-7c501648ae39", clientId) +16:40:08.018 [XNIO-1 task-1] egjp8CU4QxWMKscdEyCAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39 +16:40:08.018 [XNIO-1 task-1] egjp8CU4QxWMKscdEyCAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.018 [XNIO-1 task-1] egjp8CU4QxWMKscdEyCAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.018 [XNIO-1 task-1] egjp8CU4QxWMKscdEyCAwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39 +16:40:08.020 [XNIO-1 task-1] h2EfHVAfSmiZRZBBdCOnjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39, base path is set to: null +16:40:08.020 [XNIO-1 task-1] h2EfHVAfSmiZRZBBdCOnjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.020 [XNIO-1 task-1] h2EfHVAfSmiZRZBBdCOnjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.020 [XNIO-1 task-1] h2EfHVAfSmiZRZBBdCOnjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39, base path is set to: null +16:40:08.020 [XNIO-1 task-1] h2EfHVAfSmiZRZBBdCOnjg DEBUG com.networknt.schema.TypeValidator debug - validate( "329f3514-7c41-464c-ad67-7c501648ae39", "329f3514-7c41-464c-ad67-7c501648ae39", clientId) +16:40:08.021 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG com.networknt.schema.TypeValidator debug - validate( "bd127e0d-6837-4564-b1bb-31ed3b192f93", {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG com.networknt.schema.TypeValidator debug - validate( "e136d393-0d8f-4edb-8b17-62984685", {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e136d393-0d8f-4edb-8b17-62984685","clientDesc":"bd127e0d-6837-4564-b1bb-31ed3b192f93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.022 [XNIO-1 task-1] uBuyeK9iRHmuWPrOfC3WIw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.027 [XNIO-1 task-1] CwjAcFv6Rvau-S2Sm1j3Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.027 [XNIO-1 task-1] CwjAcFv6Rvau-S2Sm1j3Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.027 [XNIO-1 task-1] CwjAcFv6Rvau-S2Sm1j3Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.037 [XNIO-1 task-1] Tkmw1QfaSsa7nT1F3xFexg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/edee2250-ade6-47da-95d0-d8f2bd983c1a, base path is set to: null +16:40:08.037 [XNIO-1 task-1] Tkmw1QfaSsa7nT1F3xFexg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.037 [XNIO-1 task-1] Tkmw1QfaSsa7nT1F3xFexg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.037 [XNIO-1 task-1] Tkmw1QfaSsa7nT1F3xFexg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/edee2250-ade6-47da-95d0-d8f2bd983c1a, base path is set to: null +16:40:08.037 [XNIO-1 task-1] Tkmw1QfaSsa7nT1F3xFexg DEBUG com.networknt.schema.TypeValidator debug - validate( "edee2250-ade6-47da-95d0-d8f2bd983c1a", "edee2250-ade6-47da-95d0-d8f2bd983c1a", clientId) +16:40:08.043 [XNIO-1 task-1] NNoJLf1qSPOgk5Ap-4LK3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.043 [XNIO-1 task-1] NNoJLf1qSPOgk5Ap-4LK3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.043 [XNIO-1 task-1] NNoJLf1qSPOgk5Ap-4LK3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.054 [XNIO-1 task-1] vtPjmMM5SHu025N-y7fMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.054 [XNIO-1 task-1] vtPjmMM5SHu025N-y7fMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.054 [XNIO-1 task-1] vtPjmMM5SHu025N-y7fMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.065 [XNIO-1 task-1] L0YR2ZUnQNi3g3hc0ySr6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/96b7d96c-adc7-4339-ae8b-072ecd4aed10 +16:40:08.065 [XNIO-1 task-1] L0YR2ZUnQNi3g3hc0ySr6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.066 [XNIO-1 task-1] L0YR2ZUnQNi3g3hc0ySr6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.066 [XNIO-1 task-1] L0YR2ZUnQNi3g3hc0ySr6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/96b7d96c-adc7-4339-ae8b-072ecd4aed10 +16:40:08.071 [XNIO-1 task-1] OtnkNEFFQMSSU6QEq-dV_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:08.071 [XNIO-1 task-1] OtnkNEFFQMSSU6QEq-dV_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.071 [XNIO-1 task-1] OtnkNEFFQMSSU6QEq-dV_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.071 [XNIO-1 task-1] OtnkNEFFQMSSU6QEq-dV_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:08.071 [XNIO-1 task-1] OtnkNEFFQMSSU6QEq-dV_w DEBUG com.networknt.schema.TypeValidator debug - validate( "13df3e3e-5504-4781-ae85-9c1b041e6224", "13df3e3e-5504-4781-ae85-9c1b041e6224", clientId) +16:40:08.073 [XNIO-1 task-1] hEYJN3TuRwyAbMpeufbIEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.073 [XNIO-1 task-1] hEYJN3TuRwyAbMpeufbIEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.073 [XNIO-1 task-1] hEYJN3TuRwyAbMpeufbIEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.084 [XNIO-1 task-1] 5uybq5HHTNKSWgOgAv_ujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.084 [XNIO-1 task-1] 5uybq5HHTNKSWgOgAv_ujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.084 [XNIO-1 task-1] 5uybq5HHTNKSWgOgAv_ujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.094 [XNIO-1 task-1] lfFoLO0wTKSQYudLgEamTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fe9760-43df-420c-82e4-070a108ee981 +16:40:08.094 [XNIO-1 task-1] lfFoLO0wTKSQYudLgEamTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.094 [XNIO-1 task-1] lfFoLO0wTKSQYudLgEamTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.095 [XNIO-1 task-1] lfFoLO0wTKSQYudLgEamTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fe9760-43df-420c-82e4-070a108ee981 +16:40:08.098 [XNIO-1 task-1] axPzhbmsQNmlklayv2WqGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.098 [XNIO-1 task-1] axPzhbmsQNmlklayv2WqGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.098 [XNIO-1 task-1] axPzhbmsQNmlklayv2WqGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.098 [XNIO-1 task-1] axPzhbmsQNmlklayv2WqGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.105 [XNIO-1 task-1] V5oYGB_cRuublzgmtRSrwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:08.105 [XNIO-1 task-1] V5oYGB_cRuublzgmtRSrwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.105 [XNIO-1 task-1] V5oYGB_cRuublzgmtRSrwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.105 [XNIO-1 task-1] V5oYGB_cRuublzgmtRSrwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224, base path is set to: null +16:40:08.105 [XNIO-1 task-1] V5oYGB_cRuublzgmtRSrwA DEBUG com.networknt.schema.TypeValidator debug - validate( "13df3e3e-5504-4781-ae85-9c1b041e6224", "13df3e3e-5504-4781-ae85-9c1b041e6224", clientId) +16:40:08.107 [XNIO-1 task-1] a503LbfOQkmelXPfSyutCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9 +16:40:08.107 [XNIO-1 task-1] a503LbfOQkmelXPfSyutCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.107 [XNIO-1 task-1] a503LbfOQkmelXPfSyutCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.107 [XNIO-1 task-1] a503LbfOQkmelXPfSyutCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9 +16:40:08.109 [XNIO-1 task-1] H_vz5FaeSDy2Gjwryz8Smg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.109 [XNIO-1 task-1] H_vz5FaeSDy2Gjwryz8Smg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.109 [XNIO-1 task-1] H_vz5FaeSDy2Gjwryz8Smg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.109 [XNIO-1 task-1] H_vz5FaeSDy2Gjwryz8Smg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.114 [XNIO-1 task-1] vrm2WGCpS9uiNA1FnKSHOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.114 [XNIO-1 task-1] vrm2WGCpS9uiNA1FnKSHOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.114 [XNIO-1 task-1] vrm2WGCpS9uiNA1FnKSHOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.114 [XNIO-1 task-1] vrm2WGCpS9uiNA1FnKSHOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.118 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.118 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.118 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b2bd778a-df8c-4c98-84e6-00a1264a","clientDesc":"a962304f-7da0-43d1-a2ed-1d1f5d8fc469","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.119 [XNIO-1 task-1] lbyU1TA-RdyNI5C8pVT7Zw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.121 [XNIO-1 task-1] wlHdmTO4SgyuTfXNAOGDag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:08.121 [XNIO-1 task-1] wlHdmTO4SgyuTfXNAOGDag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.121 [XNIO-1 task-1] wlHdmTO4SgyuTfXNAOGDag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.121 [XNIO-1 task-1] wlHdmTO4SgyuTfXNAOGDag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:08.121 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:13df3e3e-5504-4781-ae85-9c1b041e6224 +16:40:08.126 [XNIO-1 task-1] RNxUiXscSAmQhUXkqCt9tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.126 [XNIO-1 task-1] RNxUiXscSAmQhUXkqCt9tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.126 [XNIO-1 task-1] RNxUiXscSAmQhUXkqCt9tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.126 [XNIO-1 task-1] RNxUiXscSAmQhUXkqCt9tA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.132 [XNIO-1 task-1] 9_gBDe8ASNKaNdU1Lmynyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.132 [XNIO-1 task-1] 9_gBDe8ASNKaNdU1Lmynyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.132 [XNIO-1 task-1] 9_gBDe8ASNKaNdU1Lmynyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.142 [XNIO-1 task-1] omX-DFLFRbaxlu3VK10CVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9 +16:40:08.142 [XNIO-1 task-1] omX-DFLFRbaxlu3VK10CVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.142 [XNIO-1 task-1] omX-DFLFRbaxlu3VK10CVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.143 [XNIO-1 task-1] omX-DFLFRbaxlu3VK10CVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/247d68ad-3c52-4a7a-b0be-c8e8c3bb61a9 +16:40:08.147 [XNIO-1 task-1] 9MO5LNvBRSWZRqoJDjxczw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.148 [XNIO-1 task-1] 9MO5LNvBRSWZRqoJDjxczw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.148 [XNIO-1 task-1] 9MO5LNvBRSWZRqoJDjxczw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.153 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f57b0d34-320a-4f36-8522-d990dc032153 +16:40:08.153 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f57b0d34-320a-4f36-8522-d990dc032153 +16:40:08.158 [XNIO-1 task-1] g4vvMDr6S-iIW0jheCX6wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153 +16:40:08.158 [XNIO-1 task-1] g4vvMDr6S-iIW0jheCX6wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.158 [XNIO-1 task-1] g4vvMDr6S-iIW0jheCX6wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.158 [XNIO-1 task-1] g4vvMDr6S-iIW0jheCX6wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153 +16:40:08.160 [XNIO-1 task-1] zGKG3mCtRyCCtCriXAaOdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153, base path is set to: null +16:40:08.160 [XNIO-1 task-1] zGKG3mCtRyCCtCriXAaOdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.161 [XNIO-1 task-1] zGKG3mCtRyCCtCriXAaOdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.161 [XNIO-1 task-1] zGKG3mCtRyCCtCriXAaOdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153, base path is set to: null +16:40:08.161 [XNIO-1 task-1] zGKG3mCtRyCCtCriXAaOdg DEBUG com.networknt.schema.TypeValidator debug - validate( "f57b0d34-320a-4f36-8522-d990dc032153", "f57b0d34-320a-4f36-8522-d990dc032153", clientId) +16:40:08.162 [XNIO-1 task-1] rpKUNOCeTOK4UdwrVVNtfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/304eacd3-04a5-4b7f-8372-d33967992e12 +16:40:08.162 [XNIO-1 task-1] rpKUNOCeTOK4UdwrVVNtfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.162 [XNIO-1 task-1] rpKUNOCeTOK4UdwrVVNtfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.162 [XNIO-1 task-1] rpKUNOCeTOK4UdwrVVNtfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/304eacd3-04a5-4b7f-8372-d33967992e12 +16:40:08.164 [XNIO-1 task-1] BWz1WTsDTdm702vyLZVU3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.164 [XNIO-1 task-1] BWz1WTsDTdm702vyLZVU3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.164 [XNIO-1 task-1] BWz1WTsDTdm702vyLZVU3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.181 [XNIO-1 task-1] GAfTwgnfTI6R700x0lj2Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153, base path is set to: null +16:40:08.181 [XNIO-1 task-1] GAfTwgnfTI6R700x0lj2Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.181 [XNIO-1 task-1] GAfTwgnfTI6R700x0lj2Rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.181 [XNIO-1 task-1] GAfTwgnfTI6R700x0lj2Rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153, base path is set to: null +16:40:08.181 [XNIO-1 task-1] GAfTwgnfTI6R700x0lj2Rg DEBUG com.networknt.schema.TypeValidator debug - validate( "f57b0d34-320a-4f36-8522-d990dc032153", "f57b0d34-320a-4f36-8522-d990dc032153", clientId) +16:40:08.183 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.183 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.183 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.183 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG com.networknt.schema.TypeValidator debug - validate( "66ab5be3-4c2d-444f-9cea-6542782238e3", {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG com.networknt.schema.TypeValidator debug - validate( "1546347c-7120-4a21-b2bf-50a087e8", {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1546347c-7120-4a21-b2bf-50a087e8","clientDesc":"66ab5be3-4c2d-444f-9cea-6542782238e3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.184 [XNIO-1 task-1] qPkx7P1yQIWqH3kAfCUYog DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.186 [XNIO-1 task-1] tAmc9zWRTJixn9Z1V7UPqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153, base path is set to: null +16:40:08.186 [XNIO-1 task-1] tAmc9zWRTJixn9Z1V7UPqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.186 [XNIO-1 task-1] tAmc9zWRTJixn9Z1V7UPqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.186 [XNIO-1 task-1] tAmc9zWRTJixn9Z1V7UPqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f57b0d34-320a-4f36-8522-d990dc032153, base path is set to: null +16:40:08.186 [XNIO-1 task-1] tAmc9zWRTJixn9Z1V7UPqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f57b0d34-320a-4f36-8522-d990dc032153", "f57b0d34-320a-4f36-8522-d990dc032153", clientId) +16:40:08.191 [XNIO-1 task-1] lIb-2GMiSVSivMwNf5CIhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/304eacd3-04a5-4b7f-8372-d33967992e12, base path is set to: null +16:40:08.191 [XNIO-1 task-1] lIb-2GMiSVSivMwNf5CIhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.191 [XNIO-1 task-1] lIb-2GMiSVSivMwNf5CIhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.191 [XNIO-1 task-1] lIb-2GMiSVSivMwNf5CIhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/304eacd3-04a5-4b7f-8372-d33967992e12, base path is set to: null +16:40:08.191 [XNIO-1 task-1] lIb-2GMiSVSivMwNf5CIhA DEBUG com.networknt.schema.TypeValidator debug - validate( "304eacd3-04a5-4b7f-8372-d33967992e12", "304eacd3-04a5-4b7f-8372-d33967992e12", clientId) +16:40:08.196 [XNIO-1 task-1] 3zvWHuaTS5SlVqx7l_Hw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fe9760-43df-420c-82e4-070a108ee981 +16:40:08.196 [XNIO-1 task-1] 3zvWHuaTS5SlVqx7l_Hw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.196 [XNIO-1 task-1] 3zvWHuaTS5SlVqx7l_Hw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.196 [XNIO-1 task-1] 3zvWHuaTS5SlVqx7l_Hw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fe9760-43df-420c-82e4-070a108ee981 +16:40:08.201 [XNIO-1 task-1] U4tFbMohSnKmmngwr6LOWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2f3bd05c-511d-4410-8fc2-64c76fc544f1, base path is set to: null +16:40:08.201 [XNIO-1 task-1] U4tFbMohSnKmmngwr6LOWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.201 [XNIO-1 task-1] U4tFbMohSnKmmngwr6LOWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.201 [XNIO-1 task-1] U4tFbMohSnKmmngwr6LOWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2f3bd05c-511d-4410-8fc2-64c76fc544f1, base path is set to: null +16:40:08.201 [XNIO-1 task-1] U4tFbMohSnKmmngwr6LOWA DEBUG com.networknt.schema.TypeValidator debug - validate( "2f3bd05c-511d-4410-8fc2-64c76fc544f1", "2f3bd05c-511d-4410-8fc2-64c76fc544f1", clientId) +16:40:08.206 [XNIO-1 task-1] DnYJofnQTLSq_Xr2UdZRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b5f06ef9-3f63-4b45-8f3c-8a0863722f33 +16:40:08.206 [XNIO-1 task-1] DnYJofnQTLSq_Xr2UdZRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.206 [XNIO-1 task-1] DnYJofnQTLSq_Xr2UdZRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.206 [XNIO-1 task-1] DnYJofnQTLSq_Xr2UdZRng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b5f06ef9-3f63-4b45-8f3c-8a0863722f33 +16:40:08.211 [XNIO-1 task-1] QN4W9sCKSESYhYU8wvzvUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e98f1d70-3b3d-4324-89f8-71b97fc7883f, base path is set to: null +16:40:08.211 [XNIO-1 task-1] QN4W9sCKSESYhYU8wvzvUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.211 [XNIO-1 task-1] QN4W9sCKSESYhYU8wvzvUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.211 [XNIO-1 task-1] QN4W9sCKSESYhYU8wvzvUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e98f1d70-3b3d-4324-89f8-71b97fc7883f, base path is set to: null +16:40:08.211 [XNIO-1 task-1] QN4W9sCKSESYhYU8wvzvUw DEBUG com.networknt.schema.TypeValidator debug - validate( "e98f1d70-3b3d-4324-89f8-71b97fc7883f", "e98f1d70-3b3d-4324-89f8-71b97fc7883f", clientId) +16:40:08.217 [XNIO-1 task-1] _5B4jtuiS0a4hwDG7-98vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.217 [XNIO-1 task-1] _5B4jtuiS0a4hwDG7-98vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.217 [XNIO-1 task-1] _5B4jtuiS0a4hwDG7-98vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.229 [XNIO-1 task-1] xIqkIuSkQV-nHPEXxh-DVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.229 [XNIO-1 task-1] xIqkIuSkQV-nHPEXxh-DVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.229 [XNIO-1 task-1] xIqkIuSkQV-nHPEXxh-DVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.229 [XNIO-1 task-1] xIqkIuSkQV-nHPEXxh-DVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.235 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.235 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.235 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.235 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.235 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a0f6de-493d-4a61-9f5a-dd061cbc4f14", {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "de144cf5-f511-424f-8acc-410b9486", {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"de144cf5-f511-424f-8acc-410b9486","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.236 [XNIO-1 task-1] rWqrH1_fSQq7Icg55NPv9A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.238 [XNIO-1 task-1] zkrV5FTXQ56SZI10X9pPZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.238 [XNIO-1 task-1] zkrV5FTXQ56SZI10X9pPZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.238 [XNIO-1 task-1] zkrV5FTXQ56SZI10X9pPZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.238 [XNIO-1 task-1] zkrV5FTXQ56SZI10X9pPZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.243 [XNIO-1 task-1] XVM1jR6ARBuKIqTBf7XSqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.243 [XNIO-1 task-1] XVM1jR6ARBuKIqTBf7XSqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.243 [XNIO-1 task-1] XVM1jR6ARBuKIqTBf7XSqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.253 [XNIO-1 task-1] R8rTk4lSTtarq2JYizBlBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.254 [XNIO-1 task-1] R8rTk4lSTtarq2JYizBlBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.254 [XNIO-1 task-1] R8rTk4lSTtarq2JYizBlBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.254 [XNIO-1 task-1] R8rTk4lSTtarq2JYizBlBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.258 [XNIO-1 task-1] BcSqKVRoRja4h8QebbfxEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f73948e0-4fd4-4768-8bee-f33195920f1a, base path is set to: null +16:40:08.258 [XNIO-1 task-1] BcSqKVRoRja4h8QebbfxEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.259 [XNIO-1 task-1] BcSqKVRoRja4h8QebbfxEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.259 [XNIO-1 task-1] BcSqKVRoRja4h8QebbfxEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f73948e0-4fd4-4768-8bee-f33195920f1a, base path is set to: null +16:40:08.259 [XNIO-1 task-1] BcSqKVRoRja4h8QebbfxEw DEBUG com.networknt.schema.TypeValidator debug - validate( "f73948e0-4fd4-4768-8bee-f33195920f1a", "f73948e0-4fd4-4768-8bee-f33195920f1a", clientId) +16:40:08.261 [XNIO-1 task-1] uyxJZDd5SKC5zJa5eiYe9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.261 [XNIO-1 task-1] uyxJZDd5SKC5zJa5eiYe9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.261 [XNIO-1 task-1] uyxJZDd5SKC5zJa5eiYe9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.271 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a0f6de-493d-4a61-9f5a-dd061cbc4f14", {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b4b93fbd-c62d-4efe-977a-961bbbb4", {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b4b93fbd-c62d-4efe-977a-961bbbb4","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.272 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.273 [XNIO-1 task-1] 7l5DEDWEST-n630UGK9zmQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.274 [XNIO-1 task-1] K7kl5yKSTH2kQudzwL0vFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.274 [XNIO-1 task-1] K7kl5yKSTH2kQudzwL0vFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.274 [XNIO-1 task-1] K7kl5yKSTH2kQudzwL0vFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.275 [XNIO-1 task-1] K7kl5yKSTH2kQudzwL0vFw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.279 [XNIO-1 task-1] 10-HhSTnR16R3riyZ393RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39, base path is set to: null +16:40:08.279 [XNIO-1 task-1] 10-HhSTnR16R3riyZ393RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.279 [XNIO-1 task-1] 10-HhSTnR16R3riyZ393RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.279 [XNIO-1 task-1] 10-HhSTnR16R3riyZ393RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/329f3514-7c41-464c-ad67-7c501648ae39, base path is set to: null +16:40:08.279 [XNIO-1 task-1] 10-HhSTnR16R3riyZ393RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "329f3514-7c41-464c-ad67-7c501648ae39", "329f3514-7c41-464c-ad67-7c501648ae39", clientId) +16:40:08.284 [XNIO-1 task-1] 0475FXV3QziaCQQsRHqaEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/450f1a13-4374-4f54-bfe2-d5e9661dc362 +16:40:08.284 [XNIO-1 task-1] 0475FXV3QziaCQQsRHqaEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.284 [XNIO-1 task-1] 0475FXV3QziaCQQsRHqaEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.284 [XNIO-1 task-1] 0475FXV3QziaCQQsRHqaEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/450f1a13-4374-4f54-bfe2-d5e9661dc362 +16:40:08.289 [XNIO-1 task-1] -fNe2WI9TbGhqLSvndzjsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/530b7c70-ef96-4f22-aa35-2107c0395538, base path is set to: null +16:40:08.289 [XNIO-1 task-1] -fNe2WI9TbGhqLSvndzjsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.289 [XNIO-1 task-1] -fNe2WI9TbGhqLSvndzjsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.289 [XNIO-1 task-1] -fNe2WI9TbGhqLSvndzjsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/530b7c70-ef96-4f22-aa35-2107c0395538, base path is set to: null +16:40:08.290 [XNIO-1 task-1] -fNe2WI9TbGhqLSvndzjsw DEBUG com.networknt.schema.TypeValidator debug - validate( "530b7c70-ef96-4f22-aa35-2107c0395538", "530b7c70-ef96-4f22-aa35-2107c0395538", clientId) +16:40:08.296 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.296 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a0f6de-493d-4a61-9f5a-dd061cbc4f14", {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16286cc7-4c12-47f5-9f97-0fe9d020","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.297 [XNIO-1 task-1] 2ktHSDRyRWKbLWWaQ5-ZvQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.299 [XNIO-1 task-1] _c5WovZ7QhyxaCkhM0mk4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.299 [XNIO-1 task-1] _c5WovZ7QhyxaCkhM0mk4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.299 [XNIO-1 task-1] _c5WovZ7QhyxaCkhM0mk4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.310 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.310 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.310 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.310 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2c5d97cb-f3f9-43f5-9a66-02b7ece2","clientDesc":"e2a0f6de-493d-4a61-9f5a-dd061cbc4f14","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.311 [XNIO-1 task-1] wLDcHs2yQdC0YAakcQF_ng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.313 [XNIO-1 task-1] ApUMM1UdTlqxfe2YMCxfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.313 [XNIO-1 task-1] ApUMM1UdTlqxfe2YMCxfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.313 [XNIO-1 task-1] ApUMM1UdTlqxfe2YMCxfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.313 [XNIO-1 task-1] ApUMM1UdTlqxfe2YMCxfbw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.319 [XNIO-1 task-1] XEuQliAmRhiOLKKJhO-QYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f73948e0-4fd4-4768-8bee-f33195920f1a +16:40:08.319 [XNIO-1 task-1] XEuQliAmRhiOLKKJhO-QYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.319 [XNIO-1 task-1] XEuQliAmRhiOLKKJhO-QYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.319 [XNIO-1 task-1] XEuQliAmRhiOLKKJhO-QYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f73948e0-4fd4-4768-8bee-f33195920f1a +16:40:08.324 [XNIO-1 task-1] x8JWN_NETMOIlrQE3EY4-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/183e7403-59d9-487a-a0ef-fd253f51b256, base path is set to: null +16:40:08.324 [XNIO-1 task-1] x8JWN_NETMOIlrQE3EY4-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.324 [XNIO-1 task-1] x8JWN_NETMOIlrQE3EY4-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.324 [XNIO-1 task-1] x8JWN_NETMOIlrQE3EY4-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/183e7403-59d9-487a-a0ef-fd253f51b256, base path is set to: null +16:40:08.324 [XNIO-1 task-1] x8JWN_NETMOIlrQE3EY4-w DEBUG com.networknt.schema.TypeValidator debug - validate( "183e7403-59d9-487a-a0ef-fd253f51b256", "183e7403-59d9-487a-a0ef-fd253f51b256", clientId) +16:40:08.329 [XNIO-1 task-1] e3rh47FpSpSAbV7rBPrzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3aeeffa7-29e2-46f0-a224-6e8d90bc8206 +16:40:08.329 [XNIO-1 task-1] e3rh47FpSpSAbV7rBPrzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.329 [XNIO-1 task-1] e3rh47FpSpSAbV7rBPrzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.329 [XNIO-1 task-1] e3rh47FpSpSAbV7rBPrzZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3aeeffa7-29e2-46f0-a224-6e8d90bc8206 +16:40:08.334 [XNIO-1 task-1] HbIkV_AMQ2OxF26iJKk_Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8d025adb-b268-4e08-89df-677cd40d07fb, base path is set to: null +16:40:08.334 [XNIO-1 task-1] HbIkV_AMQ2OxF26iJKk_Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.334 [XNIO-1 task-1] HbIkV_AMQ2OxF26iJKk_Pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.334 [XNIO-1 task-1] HbIkV_AMQ2OxF26iJKk_Pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8d025adb-b268-4e08-89df-677cd40d07fb, base path is set to: null +16:40:08.334 [XNIO-1 task-1] HbIkV_AMQ2OxF26iJKk_Pw DEBUG com.networknt.schema.TypeValidator debug - validate( "8d025adb-b268-4e08-89df-677cd40d07fb", "8d025adb-b268-4e08-89df-677cd40d07fb", clientId) +16:40:08.340 [XNIO-1 task-1] zOgHOxzrSqyAX4JEqYqn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183e7403-59d9-487a-a0ef-fd253f51b256 +16:40:08.340 [XNIO-1 task-1] zOgHOxzrSqyAX4JEqYqn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.340 [XNIO-1 task-1] zOgHOxzrSqyAX4JEqYqn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.340 [XNIO-1 task-1] zOgHOxzrSqyAX4JEqYqn-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/183e7403-59d9-487a-a0ef-fd253f51b256 +16:40:08.345 [XNIO-1 task-1] Qm4h5PBARyamDM3IOyMPrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.345 [XNIO-1 task-1] Qm4h5PBARyamDM3IOyMPrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.345 [XNIO-1 task-1] Qm4h5PBARyamDM3IOyMPrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.356 [XNIO-1 task-1] jFjYr-FjRdyLLMKDX5exeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.356 [XNIO-1 task-1] jFjYr-FjRdyLLMKDX5exeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.356 [XNIO-1 task-1] jFjYr-FjRdyLLMKDX5exeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.357 [XNIO-1 task-1] jFjYr-FjRdyLLMKDX5exeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.362 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.362 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.363 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5be79387-12b3-4794-b4e5-3522d519","clientDesc":"88d1c6f9-26fd-44ba-8706-7f100ca08ba3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.364 [XNIO-1 task-1] hIugOMIQRym0xggkHDKfQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "950ea03d-ecfb-4733-b112-73c1a074f22c", {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "b4748a3c-8a17-4fcf-ae5f-8862731d", {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.366 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b4748a3c-8a17-4fcf-ae5f-8862731d","clientDesc":"950ea03d-ecfb-4733-b112-73c1a074f22c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.367 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.367 [XNIO-1 task-1] T-9AVTzbR7aJpio4hkXx5g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.368 [XNIO-1 task-1] BagSTgIfRY24AZEVPfQg_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72e1b2e2-d7a4-4710-8d0b-ce1b4c27e407, base path is set to: null +16:40:08.369 [XNIO-1 task-1] BagSTgIfRY24AZEVPfQg_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.369 [XNIO-1 task-1] BagSTgIfRY24AZEVPfQg_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.369 [XNIO-1 task-1] BagSTgIfRY24AZEVPfQg_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72e1b2e2-d7a4-4710-8d0b-ce1b4c27e407, base path is set to: null +16:40:08.369 [XNIO-1 task-1] BagSTgIfRY24AZEVPfQg_A DEBUG com.networknt.schema.TypeValidator debug - validate( "72e1b2e2-d7a4-4710-8d0b-ce1b4c27e407", "72e1b2e2-d7a4-4710-8d0b-ce1b4c27e407", clientId) +16:40:08.374 [XNIO-1 task-1] oMQt9iOvR76X26zG5aWYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d8032d75-f7ee-4d67-b5b4-9bf2e12a9385 +16:40:08.374 [XNIO-1 task-1] oMQt9iOvR76X26zG5aWYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.374 [XNIO-1 task-1] oMQt9iOvR76X26zG5aWYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.374 [XNIO-1 task-1] oMQt9iOvR76X26zG5aWYxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d8032d75-f7ee-4d67-b5b4-9bf2e12a9385 +16:40:08.379 [XNIO-1 task-1] qqVPe3mYSs6Yjr-vKC76nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47ebefb2-9815-4571-8da4-eaf27829ed71, base path is set to: null +16:40:08.379 [XNIO-1 task-1] qqVPe3mYSs6Yjr-vKC76nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.379 [XNIO-1 task-1] qqVPe3mYSs6Yjr-vKC76nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.379 [XNIO-1 task-1] qqVPe3mYSs6Yjr-vKC76nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/47ebefb2-9815-4571-8da4-eaf27829ed71, base path is set to: null +16:40:08.379 [XNIO-1 task-1] qqVPe3mYSs6Yjr-vKC76nw DEBUG com.networknt.schema.TypeValidator debug - validate( "47ebefb2-9815-4571-8da4-eaf27829ed71", "47ebefb2-9815-4571-8da4-eaf27829ed71", clientId) +16:40:08.381 [XNIO-1 task-1] SBhTf8baTTSH8bdel8EmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/47ebefb2-9815-4571-8da4-eaf27829ed71 +16:40:08.381 [XNIO-1 task-1] SBhTf8baTTSH8bdel8EmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.381 [XNIO-1 task-1] SBhTf8baTTSH8bdel8EmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.381 [XNIO-1 task-1] SBhTf8baTTSH8bdel8EmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/47ebefb2-9815-4571-8da4-eaf27829ed71 +16:40:08.386 [XNIO-1 task-1] oJex1OzbQ6ab8vdQW2eI6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.386 [XNIO-1 task-1] oJex1OzbQ6ab8vdQW2eI6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.386 [XNIO-1 task-1] oJex1OzbQ6ab8vdQW2eI6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.397 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.398 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.398 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.398 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"fa8cd1f5-4727-43d0-a11e-42a35d27","clientDesc":"441d8c64-4534-4c25-97dc-f5946d75670f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +Jun 28, 2024 4:40:12 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.398 [XNIO-1 task-1] u7cH6u_STfGmteTb0uKG4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.400 [XNIO-1 task-1] c1zHqCLLRja6RuLSsOeU6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.400 [XNIO-1 task-1] c1zHqCLLRja6RuLSsOeU6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.400 [XNIO-1 task-1] c1zHqCLLRja6RuLSsOeU6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.411 [XNIO-1 task-1] hrK9UJgFQBibfjC_rPbgHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b693e7f7-efde-45bc-ba5e-624463958a3e +16:40:08.411 [XNIO-1 task-1] hrK9UJgFQBibfjC_rPbgHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.412 [XNIO-1 task-1] hrK9UJgFQBibfjC_rPbgHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.412 [XNIO-1 task-1] hrK9UJgFQBibfjC_rPbgHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b693e7f7-efde-45bc-ba5e-624463958a3e +16:40:08.414 [XNIO-1 task-1] _ciiB7rzStmRYdJ0VhQQ2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.414 [XNIO-1 task-1] _ciiB7rzStmRYdJ0VhQQ2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.414 [XNIO-1 task-1] _ciiB7rzStmRYdJ0VhQQ2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.414 [XNIO-1 task-1] _ciiB7rzStmRYdJ0VhQQ2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.419 [XNIO-1 task-1] EcotJ-yQQ_uLK3M8CaHDgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b693e7f7-efde-45bc-ba5e-624463958a3e, base path is set to: null +16:40:08.419 [XNIO-1 task-1] EcotJ-yQQ_uLK3M8CaHDgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.419 [XNIO-1 task-1] EcotJ-yQQ_uLK3M8CaHDgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.419 [XNIO-1 task-1] EcotJ-yQQ_uLK3M8CaHDgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b693e7f7-efde-45bc-ba5e-624463958a3e, base path is set to: null +16:40:08.419 [XNIO-1 task-1] EcotJ-yQQ_uLK3M8CaHDgg DEBUG com.networknt.schema.TypeValidator debug - validate( "b693e7f7-efde-45bc-ba5e-624463958a3e", "b693e7f7-efde-45bc-ba5e-624463958a3e", clientId) +16:40:08.449 [XNIO-1 task-1] owXKJG_vSWO4BH7FrNNd-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.449 [XNIO-1 task-1] owXKJG_vSWO4BH7FrNNd-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.450 [XNIO-1 task-1] owXKJG_vSWO4BH7FrNNd-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.450 [XNIO-1 task-1] owXKJG_vSWO4BH7FrNNd-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.455 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.455 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.455 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG com.networknt.schema.TypeValidator debug - validate( "cc98457b-bdb4-435e-aed0-6036b9403895", {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG com.networknt.schema.TypeValidator debug - validate( "c133cc94-7fe6-4c0e-ba47-5a31dab5", {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c133cc94-7fe6-4c0e-ba47-5a31dab5","clientDesc":"cc98457b-bdb4-435e-aed0-6036b9403895","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.456 [XNIO-1 task-1] Pb4FikyQQkC4tA6_7_f7zA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.458 [XNIO-1 task-1] rKKP9IeiRrGzO4ziWJQ0nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/549c3ba2-8176-4133-9156-86d6c3dfb305, base path is set to: null +16:40:08.459 [XNIO-1 task-1] rKKP9IeiRrGzO4ziWJQ0nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.459 [XNIO-1 task-1] rKKP9IeiRrGzO4ziWJQ0nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.459 [XNIO-1 task-1] rKKP9IeiRrGzO4ziWJQ0nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/549c3ba2-8176-4133-9156-86d6c3dfb305, base path is set to: null +16:40:08.459 [XNIO-1 task-1] rKKP9IeiRrGzO4ziWJQ0nw DEBUG com.networknt.schema.TypeValidator debug - validate( "549c3ba2-8176-4133-9156-86d6c3dfb305", "549c3ba2-8176-4133-9156-86d6c3dfb305", clientId) +16:40:08.465 [XNIO-1 task-1] BY4wNb1mQBSb9Zo86Ozkow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.465 [XNIO-1 task-1] BY4wNb1mQBSb9Zo86Ozkow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.465 [XNIO-1 task-1] BY4wNb1mQBSb9Zo86Ozkow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.476 [XNIO-1 task-1] RGFBqJlySpuw5eIWSdXlFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9231cc00-3f1f-4d4f-8603-6f7d7b34ff92 +16:40:08.476 [XNIO-1 task-1] RGFBqJlySpuw5eIWSdXlFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.476 [XNIO-1 task-1] RGFBqJlySpuw5eIWSdXlFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.476 [XNIO-1 task-1] RGFBqJlySpuw5eIWSdXlFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9231cc00-3f1f-4d4f-8603-6f7d7b34ff92 +16:40:08.481 [XNIO-1 task-1] rD47kyU5S1qet3DE8MI4cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.481 [XNIO-1 task-1] rD47kyU5S1qet3DE8MI4cQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +Jun 28, 2024 4:40:12 PM com.hazelcast.map.impl.operation.DeleteOperation +16:40:08.481 [XNIO-1 task-1] rD47kyU5S1qet3DE8MI4cQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.481 [XNIO-1 task-1] rD47kyU5S1qet3DE8MI4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +16:40:08.491 [XNIO-1 task-1] VHs3j1uCQ--gr0p-uXGydA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.491 [XNIO-1 task-1] VHs3j1uCQ--gr0p-uXGydA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.491 [XNIO-1 task-1] VHs3j1uCQ--gr0p-uXGydA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.492 [XNIO-1 task-1] VHs3j1uCQ--gr0p-uXGydA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.492 [XNIO-1 task-1] VHs3j1uCQ--gr0p-uXGydA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.497 [XNIO-1 task-1] lNl3SMcpQvav3Eg60C-0SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.497 [XNIO-1 task-1] lNl3SMcpQvav3Eg60C-0SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.498 [XNIO-1 task-1] lNl3SMcpQvav3Eg60C-0SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.498 [XNIO-1 task-1] lNl3SMcpQvav3Eg60C-0SQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.503 [XNIO-1 task-1] CIImIGNkSLaGuBbafe86aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:147) +16:40:08.508 [XNIO-1 task-1] h-TQHJmuRi6Vm8nMsd9wEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.508 [XNIO-1 task-1] h-TQHJmuRi6Vm8nMsd9wEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +16:40:08.510 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.510 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:40:08.510 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb152ab0-225f-4d40-bdcc-4e61cda4","clientDesc":"35fb7ed8-ada2-488a-a045-023b51332d44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb152ab0-225f-4d40-bdcc-4e61cda4","clientDesc":"35fb7ed8-ada2-488a-a045-023b51332d44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 13 more + +16:40:08.511 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bb152ab0-225f-4d40-bdcc-4e61cda4","clientDesc":"35fb7ed8-ada2-488a-a045-023b51332d44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.511 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bb152ab0-225f-4d40-bdcc-4e61cda4","clientDesc":"35fb7ed8-ada2-488a-a045-023b51332d44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.511 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG com.networknt.schema.TypeValidator debug - validate( "bb152ab0-225f-4d40-bdcc-4e61cda4", {"clientType":"public","clientProfile":"mobile","clientName":"bb152ab0-225f-4d40-bdcc-4e61cda4","clientDesc":"35fb7ed8-ada2-488a-a045-023b51332d44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.511 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"bb152ab0-225f-4d40-bdcc-4e61cda4","clientDesc":"35fb7ed8-ada2-488a-a045-023b51332d44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.511 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"bb152ab0-225f-4d40-bdcc-4e61cda4","clientDesc":"35fb7ed8-ada2-488a-a045-023b51332d44","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.511 [XNIO-1 task-1] URbwovTARcetFook-X2w1w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.511 [XNIO-1 task-1] URbwovTARcetFook-X2w1w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.513 [XNIO-1 task-1] 74vrxay0S821g5U347ELMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6ce287df-e124-448f-8c3e-a4be161c7653, base path is set to: null +16:40:08.513 [XNIO-1 task-1] 74vrxay0S821g5U347ELMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.513 [XNIO-1 task-1] 74vrxay0S821g5U347ELMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.513 [XNIO-1 task-1] 74vrxay0S821g5U347ELMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6ce287df-e124-448f-8c3e-a4be161c7653, base path is set to: null +16:40:08.513 [XNIO-1 task-1] 74vrxay0S821g5U347ELMg DEBUG com.networknt.schema.TypeValidator debug - validate( "6ce287df-e124-448f-8c3e-a4be161c7653", "6ce287df-e124-448f-8c3e-a4be161c7653", clientId) +16:40:08.518 [XNIO-1 task-1] ezfjYMmqSmGmyTL7bBXtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.518 [XNIO-1 task-1] ezfjYMmqSmGmyTL7bBXtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.518 [XNIO-1 task-1] ezfjYMmqSmGmyTL7bBXtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.530 [XNIO-1 task-1] 5DnuemmVSp2Q2X1WayhlGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.530 [XNIO-1 task-1] 5DnuemmVSp2Q2X1WayhlGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.530 [XNIO-1 task-1] 5DnuemmVSp2Q2X1WayhlGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.530 [XNIO-1 task-1] 5DnuemmVSp2Q2X1WayhlGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.535 [XNIO-1 task-1] KGVeOtZbTbCz9SGndpe2Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.535 [XNIO-1 task-1] KGVeOtZbTbCz9SGndpe2Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.536 [XNIO-1 task-1] KGVeOtZbTbCz9SGndpe2Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.546 [XNIO-1 task-1] VhM5PuDURSecjdvTVz8vSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.547 [XNIO-1 task-1] VhM5PuDURSecjdvTVz8vSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.547 [XNIO-1 task-1] VhM5PuDURSecjdvTVz8vSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.558 [XNIO-1 task-1] WZ059m2iTi6_plcD02sUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d8b7048b-3825-42ad-b7bf-171900822c09 +16:40:08.558 [XNIO-1 task-1] WZ059m2iTi6_plcD02sUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.558 [XNIO-1 task-1] WZ059m2iTi6_plcD02sUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.558 [XNIO-1 task-1] WZ059m2iTi6_plcD02sUpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d8b7048b-3825-42ad-b7bf-171900822c09 +16:40:08.564 [XNIO-1 task-1] -GdGrLTPRSWDeXyZMOlbaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/213100f8-f47b-4fd8-8d78-7c50a7f11c41, base path is set to: null +16:40:08.564 [XNIO-1 task-1] -GdGrLTPRSWDeXyZMOlbaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.564 [XNIO-1 task-1] -GdGrLTPRSWDeXyZMOlbaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.564 [XNIO-1 task-1] -GdGrLTPRSWDeXyZMOlbaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/213100f8-f47b-4fd8-8d78-7c50a7f11c41, base path is set to: null +16:40:08.564 [XNIO-1 task-1] -GdGrLTPRSWDeXyZMOlbaw DEBUG com.networknt.schema.TypeValidator debug - validate( "213100f8-f47b-4fd8-8d78-7c50a7f11c41", "213100f8-f47b-4fd8-8d78-7c50a7f11c41", clientId) +16:40:08.569 [XNIO-1 task-1] l5TCm6QYTdCuf5aermT6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8c127682-4832-4e01-bd68-c26eab614919 +16:40:08.569 [XNIO-1 task-1] l5TCm6QYTdCuf5aermT6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.569 [XNIO-1 task-1] l5TCm6QYTdCuf5aermT6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.569 [XNIO-1 task-1] l5TCm6QYTdCuf5aermT6dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8c127682-4832-4e01-bd68-c26eab614919 +16:40:08.571 [XNIO-1 task-1] lCVcHpbATCuoypbEA29FCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8c127682-4832-4e01-bd68-c26eab614919, base path is set to: null +16:40:08.572 [XNIO-1 task-1] lCVcHpbATCuoypbEA29FCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.572 [XNIO-1 task-1] lCVcHpbATCuoypbEA29FCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.572 [XNIO-1 task-1] lCVcHpbATCuoypbEA29FCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8c127682-4832-4e01-bd68-c26eab614919, base path is set to: null +16:40:08.572 [XNIO-1 task-1] lCVcHpbATCuoypbEA29FCA DEBUG com.networknt.schema.TypeValidator debug - validate( "8c127682-4832-4e01-bd68-c26eab614919", "8c127682-4832-4e01-bd68-c26eab614919", clientId) +16:40:08.576 [XNIO-1 task-1] LD327IX8SFCJjD1KjJDUoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.576 [XNIO-1 task-1] LD327IX8SFCJjD1KjJDUoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.576 [XNIO-1 task-1] LD327IX8SFCJjD1KjJDUoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.586 [XNIO-1 task-1] dc_W0RS9SxW9CKuKpAInGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b89d83bd-b44d-440e-a47c-72267c1e334e +16:40:08.586 [XNIO-1 task-1] dc_W0RS9SxW9CKuKpAInGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.586 [XNIO-1 task-1] dc_W0RS9SxW9CKuKpAInGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.586 [XNIO-1 task-1] dc_W0RS9SxW9CKuKpAInGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b89d83bd-b44d-440e-a47c-72267c1e334e +16:40:08.589 [XNIO-1 task-1] BjgVE6kJTSug1ZKfeEifNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b89d83bd-b44d-440e-a47c-72267c1e334e, base path is set to: null +16:40:08.589 [XNIO-1 task-1] BjgVE6kJTSug1ZKfeEifNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.589 [XNIO-1 task-1] BjgVE6kJTSug1ZKfeEifNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.589 [XNIO-1 task-1] BjgVE6kJTSug1ZKfeEifNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b89d83bd-b44d-440e-a47c-72267c1e334e, base path is set to: null +16:40:08.589 [XNIO-1 task-1] BjgVE6kJTSug1ZKfeEifNw DEBUG com.networknt.schema.TypeValidator debug - validate( "b89d83bd-b44d-440e-a47c-72267c1e334e", "b89d83bd-b44d-440e-a47c-72267c1e334e", clientId) +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG com.networknt.schema.TypeValidator debug - validate( "f618652a-c398-4192-a96c-2041a3efe1b5", {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.591 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG com.networknt.schema.TypeValidator debug - validate( "c631f025-d43a-4b50-9d83-6efe4021", {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.592 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.592 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c631f025-d43a-4b50-9d83-6efe4021","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.592 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.592 [XNIO-1 task-1] 7hyljwidRuKxX7TgS3ciWA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.593 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.593 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b7a68786-c6c7-4d48-a021-b3a7ee14","clientDesc":"f618652a-c398-4192-a96c-2041a3efe1b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.594 [XNIO-1 task-1] dIUgnlvnQVOva1jNSY187w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.596 [XNIO-1 task-1] fhpvYbhjRiKTuX_nIUT1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b89d83bd-b44d-440e-a47c-72267c1e334e +16:40:08.596 [XNIO-1 task-1] fhpvYbhjRiKTuX_nIUT1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.596 [XNIO-1 task-1] fhpvYbhjRiKTuX_nIUT1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.596 [XNIO-1 task-1] fhpvYbhjRiKTuX_nIUT1LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b89d83bd-b44d-440e-a47c-72267c1e334e +16:40:08.601 [XNIO-1 task-1] RrRKGSK8R0iyaz-Qp9tyEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.601 [XNIO-1 task-1] RrRKGSK8R0iyaz-Qp9tyEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.601 [XNIO-1 task-1] RrRKGSK8R0iyaz-Qp9tyEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.612 [XNIO-1 task-1] 9utGd_dvTa2qE7ueH9RMiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/54ce3a4a-2974-49c4-a9ae-b9d368638326, base path is set to: null +16:40:08.612 [XNIO-1 task-1] 9utGd_dvTa2qE7ueH9RMiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.612 [XNIO-1 task-1] 9utGd_dvTa2qE7ueH9RMiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.612 [XNIO-1 task-1] 9utGd_dvTa2qE7ueH9RMiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/54ce3a4a-2974-49c4-a9ae-b9d368638326, base path is set to: null +16:40:08.612 [XNIO-1 task-1] 9utGd_dvTa2qE7ueH9RMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "54ce3a4a-2974-49c4-a9ae-b9d368638326", "54ce3a4a-2974-49c4-a9ae-b9d368638326", clientId) +16:40:08.614 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.614 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.614 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.614 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.614 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.614 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG com.networknt.schema.TypeValidator debug - validate( "92f7ff08-e659-4c6c-afe6-99d3333f0ff2", {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.615 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.615 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.615 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG com.networknt.schema.TypeValidator debug - validate( "6c2e8dd8-cc83-425d-8cd5-7cf69029", {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.615 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.615 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6c2e8dd8-cc83-425d-8cd5-7cf69029","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.615 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.615 [XNIO-1 task-1] 0pB4r2FBQNqgjEUzVlGCtA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.617 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.618 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.618 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"579feb4e-f73f-4cfe-aebc-29be6177","clientDesc":"92f7ff08-e659-4c6c-afe6-99d3333f0ff2","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.618 [XNIO-1 task-1] BdNmqcTCS3yYK9tq5oPyCA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.619 [XNIO-1 task-1] WhWoVyE4S5a6GaVoZrAc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/54ce3a4a-2974-49c4-a9ae-b9d368638326 +16:40:08.620 [XNIO-1 task-1] WhWoVyE4S5a6GaVoZrAc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.620 [XNIO-1 task-1] WhWoVyE4S5a6GaVoZrAc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.620 [XNIO-1 task-1] WhWoVyE4S5a6GaVoZrAc_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/54ce3a4a-2974-49c4-a9ae-b9d368638326 +16:40:08.624 [XNIO-1 task-1] XGhN1BmFQSKAN3d5-qsHzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.624 [XNIO-1 task-1] XGhN1BmFQSKAN3d5-qsHzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.624 [XNIO-1 task-1] XGhN1BmFQSKAN3d5-qsHzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.624 [XNIO-1 task-1] XGhN1BmFQSKAN3d5-qsHzg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.629 [XNIO-1 task-1] fCCOw1r1Q5uP_yvKy38F7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.629 [XNIO-1 task-1] fCCOw1r1Q5uP_yvKy38F7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.630 [XNIO-1 task-1] fCCOw1r1Q5uP_yvKy38F7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.640 [XNIO-1 task-1] RUVdBaBzSLWtaUZrbUQp5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bab4f42d-5516-472d-8247-8450c6264990, base path is set to: null +16:40:08.641 [XNIO-1 task-1] RUVdBaBzSLWtaUZrbUQp5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.641 [XNIO-1 task-1] RUVdBaBzSLWtaUZrbUQp5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.641 [XNIO-1 task-1] RUVdBaBzSLWtaUZrbUQp5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bab4f42d-5516-472d-8247-8450c6264990, base path is set to: null +16:40:08.641 [XNIO-1 task-1] RUVdBaBzSLWtaUZrbUQp5w DEBUG com.networknt.schema.TypeValidator debug - validate( "bab4f42d-5516-472d-8247-8450c6264990", "bab4f42d-5516-472d-8247-8450c6264990", clientId) +16:40:08.643 [XNIO-1 task-1] BbzUmMM-QMWZDZ_P8ISuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bab4f42d-5516-472d-8247-8450c6264990 +16:40:08.643 [XNIO-1 task-1] BbzUmMM-QMWZDZ_P8ISuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.643 [XNIO-1 task-1] BbzUmMM-QMWZDZ_P8ISuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.643 [XNIO-1 task-1] BbzUmMM-QMWZDZ_P8ISuLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bab4f42d-5516-472d-8247-8450c6264990 +16:40:08.648 [XNIO-1 task-1] 7CkYfeq5SOSnvtwKk3Bqow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.648 [XNIO-1 task-1] 7CkYfeq5SOSnvtwKk3Bqow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.648 [XNIO-1 task-1] 7CkYfeq5SOSnvtwKk3Bqow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.659 [XNIO-1 task-1] tgHEMSItTM-vWeXRmLh3FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72b0b2ed-3673-4e1c-bc14-2efdc2f58130, base path is set to: null +16:40:08.659 [XNIO-1 task-1] tgHEMSItTM-vWeXRmLh3FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.659 [XNIO-1 task-1] tgHEMSItTM-vWeXRmLh3FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.659 [XNIO-1 task-1] tgHEMSItTM-vWeXRmLh3FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72b0b2ed-3673-4e1c-bc14-2efdc2f58130, base path is set to: null +16:40:08.659 [XNIO-1 task-1] tgHEMSItTM-vWeXRmLh3FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "72b0b2ed-3673-4e1c-bc14-2efdc2f58130", "72b0b2ed-3673-4e1c-bc14-2efdc2f58130", clientId) +16:40:08.662 [XNIO-1 task-1] KtEBoLbfRDiPhVdinD600w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72b0b2ed-3673-4e1c-bc14-2efdc2f58130 +16:40:08.662 [XNIO-1 task-1] KtEBoLbfRDiPhVdinD600w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.662 [XNIO-1 task-1] KtEBoLbfRDiPhVdinD600w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.662 [XNIO-1 task-1] KtEBoLbfRDiPhVdinD600w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72b0b2ed-3673-4e1c-bc14-2efdc2f58130 +16:40:08.667 [XNIO-1 task-1] sV1kHyThRfawpG-hmnqZCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.667 [XNIO-1 task-1] sV1kHyThRfawpG-hmnqZCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.667 [XNIO-1 task-1] sV1kHyThRfawpG-hmnqZCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.672 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:99675bda-b19c-4cf8-b887-49dbf5576c31 +16:40:08.673 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:99675bda-b19c-4cf8-b887-49dbf5576c31 +16:40:08.703 [XNIO-1 task-1] De0UQR-mRdGLIsHq3ti44A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99675bda-b19c-4cf8-b887-49dbf5576c31 +16:40:08.703 [XNIO-1 task-1] De0UQR-mRdGLIsHq3ti44A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.703 [XNIO-1 task-1] De0UQR-mRdGLIsHq3ti44A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.703 [XNIO-1 task-1] De0UQR-mRdGLIsHq3ti44A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/99675bda-b19c-4cf8-b887-49dbf5576c31 +16:40:08.704 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:99675bda-b19c-4cf8-b887-49dbf5576c31 +16:40:08.711 [XNIO-1 task-1] oTD_LelFSp2mrki3eyl5Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.711 [XNIO-1 task-1] oTD_LelFSp2mrki3eyl5Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.711 [XNIO-1 task-1] oTD_LelFSp2mrki3eyl5Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.712 [XNIO-1 task-1] oTD_LelFSp2mrki3eyl5Ww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.720 [XNIO-1 task-1] Jd4g1onrTjCs-c1R16bh5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.720 [XNIO-1 task-1] Jd4g1onrTjCs-c1R16bh5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.720 [XNIO-1 task-1] Jd4g1onrTjCs-c1R16bh5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.720 [XNIO-1 task-1] Jd4g1onrTjCs-c1R16bh5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.726 [XNIO-1 task-1] KEeMiEnZTEqFVa_BEqtaYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.726 [XNIO-1 task-1] KEeMiEnZTEqFVa_BEqtaYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.726 [XNIO-1 task-1] KEeMiEnZTEqFVa_BEqtaYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.727 [XNIO-1 task-1] KEeMiEnZTEqFVa_BEqtaYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.738 [XNIO-1 task-1] 6RVeyTDSSuev7Qj6PfZhYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.738 [XNIO-1 task-1] 6RVeyTDSSuev7Qj6PfZhYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.738 [XNIO-1 task-1] 6RVeyTDSSuev7Qj6PfZhYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.738 [XNIO-1 task-1] 6RVeyTDSSuev7Qj6PfZhYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.744 [XNIO-1 task-1] Bkfnt0RITASByP_R9MUBQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.744 [XNIO-1 task-1] Bkfnt0RITASByP_R9MUBQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.744 [XNIO-1 task-1] Bkfnt0RITASByP_R9MUBQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.758 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.759 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.759 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.759 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.759 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.759 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d2bda400-48df-45fc-b31c-7a7fb08dc14e", {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.759 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.759 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.760 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7966be0f-43d6-475c-a819-9a819f68", {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.760 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.760 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7966be0f-43d6-475c-a819-9a819f68","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.760 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.760 [XNIO-1 task-1] CcEyzKbaQAGujl7WDuWIKQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.763 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.763 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.763 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.764 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b55201c-00d4-4baf-a098-7b935690","clientDesc":"d2bda400-48df-45fc-b31c-7a7fb08dc14e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.765 [XNIO-1 task-1] Tc-yNO98ShCmq6qc6eyahg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.766 [XNIO-1 task-1] bvHMSjGUSdCAB3ghDg50DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.766 [XNIO-1 task-1] bvHMSjGUSdCAB3ghDg50DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.766 [XNIO-1 task-1] bvHMSjGUSdCAB3ghDg50DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.767 [XNIO-1 task-1] bvHMSjGUSdCAB3ghDg50DQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.774 [XNIO-1 task-1] 9mDsbyf1SkSM4f3j27_SUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.774 [XNIO-1 task-1] 9mDsbyf1SkSM4f3j27_SUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.774 [XNIO-1 task-1] 9mDsbyf1SkSM4f3j27_SUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.774 [XNIO-1 task-1] 9mDsbyf1SkSM4f3j27_SUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.783 [XNIO-1 task-1] z__gIQcxR1-PjAFdpTtZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/02b9a6ae-4b75-48ad-996b-870dc6243ee2 +16:40:08.783 [XNIO-1 task-1] z__gIQcxR1-PjAFdpTtZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.783 [XNIO-1 task-1] z__gIQcxR1-PjAFdpTtZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.783 [XNIO-1 task-1] z__gIQcxR1-PjAFdpTtZng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/02b9a6ae-4b75-48ad-996b-870dc6243ee2 +16:40:08.790 [XNIO-1 task-1] MnAGnn7-TieQGRq3wTcK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.790 [XNIO-1 task-1] MnAGnn7-TieQGRq3wTcK8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.790 [XNIO-1 task-1] MnAGnn7-TieQGRq3wTcK8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.795 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56f631cc-1f43-41cc-b469-9e732d723d74 +16:40:08.795 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:56f631cc-1f43-41cc-b469-9e732d723d74 +16:40:08.801 [XNIO-1 task-1] hMC1-kh2Qv6MXXWsHHl7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.801 [XNIO-1 task-1] hMC1-kh2Qv6MXXWsHHl7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.801 [XNIO-1 task-1] hMC1-kh2Qv6MXXWsHHl7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.815 [XNIO-1 task-1] vHyotLWNS3GftBeQR53YVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56f631cc-1f43-41cc-b469-9e732d723d74 +16:40:08.815 [XNIO-1 task-1] vHyotLWNS3GftBeQR53YVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.815 [XNIO-1 task-1] vHyotLWNS3GftBeQR53YVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.815 [XNIO-1 task-1] vHyotLWNS3GftBeQR53YVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56f631cc-1f43-41cc-b469-9e732d723d74 +16:40:08.817 [XNIO-1 task-1] MlKvd5zxSvWKYtKqKTZlyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.817 [XNIO-1 task-1] MlKvd5zxSvWKYtKqKTZlyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.817 [XNIO-1 task-1] MlKvd5zxSvWKYtKqKTZlyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.818 [XNIO-1 task-1] MlKvd5zxSvWKYtKqKTZlyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.825 [XNIO-1 task-1] dWyUV3ZGQo-kMyj2r6aBVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9557db9f-21f2-41f2-9d6a-b8e76448b7f9, base path is set to: null +16:40:08.825 [XNIO-1 task-1] dWyUV3ZGQo-kMyj2r6aBVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.826 [XNIO-1 task-1] dWyUV3ZGQo-kMyj2r6aBVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.826 [XNIO-1 task-1] dWyUV3ZGQo-kMyj2r6aBVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9557db9f-21f2-41f2-9d6a-b8e76448b7f9, base path is set to: null +16:40:08.826 [XNIO-1 task-1] dWyUV3ZGQo-kMyj2r6aBVw DEBUG com.networknt.schema.TypeValidator debug - validate( "9557db9f-21f2-41f2-9d6a-b8e76448b7f9", "9557db9f-21f2-41f2-9d6a-b8e76448b7f9", clientId) +16:40:08.829 [XNIO-1 task-1] VstI46khSNmOy9PJhC2NbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.829 [XNIO-1 task-1] VstI46khSNmOy9PJhC2NbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.829 [XNIO-1 task-1] VstI46khSNmOy9PJhC2NbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.835 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:61e2e66e-d9a4-452d-914d-7f43cdf7d6ef +16:40:08.839 [XNIO-1 task-1] AVSzgg0kQnWt3PEbwQdjJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.840 [XNIO-1 task-1] AVSzgg0kQnWt3PEbwQdjJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.840 [XNIO-1 task-1] AVSzgg0kQnWt3PEbwQdjJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.840 [XNIO-1 task-1] AVSzgg0kQnWt3PEbwQdjJg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.854 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.855 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.855 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"66cf0cb5-3918-4eab-a5d8-d0c59e8d","clientDesc":"28207461-ce2e-4d6a-9186-eaecc8668a1c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.855 [XNIO-1 task-1] hGFVXlgFT_e5V9OMtGqK4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.857 [XNIO-1 task-1] tEPl_yg3QxCePJ5Gb5EUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56f631cc-1f43-41cc-b469-9e732d723d74 +16:40:08.857 [XNIO-1 task-1] tEPl_yg3QxCePJ5Gb5EUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.857 [XNIO-1 task-1] tEPl_yg3QxCePJ5Gb5EUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.857 [XNIO-1 task-1] tEPl_yg3QxCePJ5Gb5EUjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/56f631cc-1f43-41cc-b469-9e732d723d74 +16:40:08.857 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:56f631cc-1f43-41cc-b469-9e732d723d74 +16:40:08.861 [XNIO-1 task-1] pPk25mJjT9aFnaDuElnalA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.861 [XNIO-1 task-1] pPk25mJjT9aFnaDuElnalA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.862 [XNIO-1 task-1] pPk25mJjT9aFnaDuElnalA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.872 [XNIO-1 task-1] whJXAiusTUi1MiLUo5CyAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9557db9f-21f2-41f2-9d6a-b8e76448b7f9 +16:40:08.872 [XNIO-1 task-1] whJXAiusTUi1MiLUo5CyAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.873 [XNIO-1 task-1] whJXAiusTUi1MiLUo5CyAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.873 [XNIO-1 task-1] whJXAiusTUi1MiLUo5CyAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9557db9f-21f2-41f2-9d6a-b8e76448b7f9 +16:40:08.878 [XNIO-1 task-1] tkXpp7oGRHe8FhXhB0q7_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61e2e66e-d9a4-452d-914d-7f43cdf7d6ef, base path is set to: null +16:40:08.878 [XNIO-1 task-1] tkXpp7oGRHe8FhXhB0q7_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.878 [XNIO-1 task-1] tkXpp7oGRHe8FhXhB0q7_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.878 [XNIO-1 task-1] tkXpp7oGRHe8FhXhB0q7_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61e2e66e-d9a4-452d-914d-7f43cdf7d6ef, base path is set to: null +16:40:08.878 [XNIO-1 task-1] tkXpp7oGRHe8FhXhB0q7_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "61e2e66e-d9a4-452d-914d-7f43cdf7d6ef", "61e2e66e-d9a4-452d-914d-7f43cdf7d6ef", clientId) +16:40:08.880 [XNIO-1 task-1] e7q5J6X6TdGdTOWFwDCBqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.880 [XNIO-1 task-1] e7q5J6X6TdGdTOWFwDCBqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.881 [XNIO-1 task-1] e7q5J6X6TdGdTOWFwDCBqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.881 [XNIO-1 task-1] e7q5J6X6TdGdTOWFwDCBqw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.887 [XNIO-1 task-1] h7gMwndUSXSvQVqv7zLuFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/967b3716-ed1c-470d-86f0-c573d1cb9ad3 +16:40:08.887 [XNIO-1 task-1] h7gMwndUSXSvQVqv7zLuFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.887 [XNIO-1 task-1] h7gMwndUSXSvQVqv7zLuFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.887 [XNIO-1 task-1] h7gMwndUSXSvQVqv7zLuFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/967b3716-ed1c-470d-86f0-c573d1cb9ad3 +16:40:08.890 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.890 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.890 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.891 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.891 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.891 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.891 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.892 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.892 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.892 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.892 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.892 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"68265fc3-0e89-4876-9da3-5f9a7ec3","clientDesc":"673ab2db-e7bf-48c9-a707-86384b08a7a7","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.892 [XNIO-1 task-1] E01B4v5NRwaCHoDQPAfORQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:08.894 [XNIO-1 task-1] Uc3rRsSeRM6hbLmD9Me1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/967b3716-ed1c-470d-86f0-c573d1cb9ad3 +16:40:08.894 [XNIO-1 task-1] Uc3rRsSeRM6hbLmD9Me1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.894 [XNIO-1 task-1] Uc3rRsSeRM6hbLmD9Me1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.894 [XNIO-1 task-1] Uc3rRsSeRM6hbLmD9Me1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/967b3716-ed1c-470d-86f0-c573d1cb9ad3 +16:40:08.899 [XNIO-1 task-1] ZTgWCMGlTF6wgWyNvgBn3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61e2e66e-d9a4-452d-914d-7f43cdf7d6ef, base path is set to: null +16:40:08.899 [XNIO-1 task-1] ZTgWCMGlTF6wgWyNvgBn3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.899 [XNIO-1 task-1] ZTgWCMGlTF6wgWyNvgBn3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.899 [XNIO-1 task-1] ZTgWCMGlTF6wgWyNvgBn3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/61e2e66e-d9a4-452d-914d-7f43cdf7d6ef, base path is set to: null +16:40:08.899 [XNIO-1 task-1] ZTgWCMGlTF6wgWyNvgBn3g DEBUG com.networknt.schema.TypeValidator debug - validate( "61e2e66e-d9a4-452d-914d-7f43cdf7d6ef", "61e2e66e-d9a4-452d-914d-7f43cdf7d6ef", clientId) +16:40:08.901 [XNIO-1 task-1] CFj3jAFqSN2-goAnp0lg3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61e2e66e-d9a4-452d-914d-7f43cdf7d6ef +16:40:08.901 [XNIO-1 task-1] CFj3jAFqSN2-goAnp0lg3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.901 [XNIO-1 task-1] CFj3jAFqSN2-goAnp0lg3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.901 [XNIO-1 task-1] CFj3jAFqSN2-goAnp0lg3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/61e2e66e-d9a4-452d-914d-7f43cdf7d6ef +16:40:08.901 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:61e2e66e-d9a4-452d-914d-7f43cdf7d6ef +16:40:08.906 [XNIO-1 task-1] W97JecYNQ2KQSSEGSZGGvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.906 [XNIO-1 task-1] W97JecYNQ2KQSSEGSZGGvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.906 [XNIO-1 task-1] W97JecYNQ2KQSSEGSZGGvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.918 [XNIO-1 task-1] T-AQIxaqRRO9_BoWthgEyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.918 [XNIO-1 task-1] T-AQIxaqRRO9_BoWthgEyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.919 [XNIO-1 task-1] T-AQIxaqRRO9_BoWthgEyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "803cf5d2-134f-4692-970c-81031953bce5", {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "ea8e8ae8-d218-4af2-82c9-369c6423", {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.941 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ea8e8ae8-d218-4af2-82c9-369c6423","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.943 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:08.943 [XNIO-1 task-1] alDBPe2xQwWfWXcHlCFYuw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:08.945 [XNIO-1 task-1] LvmQl45ISRuBto_stJCFwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.945 [XNIO-1 task-1] LvmQl45ISRuBto_stJCFwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.945 [XNIO-1 task-1] LvmQl45ISRuBto_stJCFwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.945 [XNIO-1 task-1] LvmQl45ISRuBto_stJCFwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.957 [XNIO-1 task-1] JVZIBSjUSU2bk7A6qI8X1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e, base path is set to: null +16:40:08.957 [XNIO-1 task-1] JVZIBSjUSU2bk7A6qI8X1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.957 [XNIO-1 task-1] JVZIBSjUSU2bk7A6qI8X1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.957 [XNIO-1 task-1] JVZIBSjUSU2bk7A6qI8X1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e, base path is set to: null +16:40:08.957 [XNIO-1 task-1] JVZIBSjUSU2bk7A6qI8X1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "bad9bd8b-79fc-4a12-ad92-ad5577080a2e", "bad9bd8b-79fc-4a12-ad92-ad5577080a2e", clientId) +16:40:08.961 [XNIO-1 task-1] aqIOD2_jQ1m-3nD7EBv30g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.961 [XNIO-1 task-1] aqIOD2_jQ1m-3nD7EBv30g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.961 [XNIO-1 task-1] aqIOD2_jQ1m-3nD7EBv30g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.961 [XNIO-1 task-1] aqIOD2_jQ1m-3nD7EBv30g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.968 [XNIO-1 task-1] zGOAGdmYTwK26Tt-HlDnqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.968 [XNIO-1 task-1] zGOAGdmYTwK26Tt-HlDnqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.968 [XNIO-1 task-1] zGOAGdmYTwK26Tt-HlDnqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.980 [XNIO-1 task-1] t6e874PPRcqLFpp6FNWXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.980 [XNIO-1 task-1] t6e874PPRcqLFpp6FNWXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.980 [XNIO-1 task-1] t6e874PPRcqLFpp6FNWXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.980 [XNIO-1 task-1] t6e874PPRcqLFpp6FNWXAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.986 [XNIO-1 task-1] qq3HgFWgRe6rMa40aZtChA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e +16:40:08.986 [XNIO-1 task-1] qq3HgFWgRe6rMa40aZtChA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:08.986 [XNIO-1 task-1] qq3HgFWgRe6rMa40aZtChA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:08.987 [XNIO-1 task-1] qq3HgFWgRe6rMa40aZtChA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e +16:40:08.988 [XNIO-1 task-1] 6uJn_nWJRIScVWTlEjJgGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.988 [XNIO-1 task-1] 6uJn_nWJRIScVWTlEjJgGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.989 [XNIO-1 task-1] 6uJn_nWJRIScVWTlEjJgGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:08.989 [XNIO-1 task-1] 6uJn_nWJRIScVWTlEjJgGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.993 [XNIO-1 task-1] VrAwW_xTRUyljqBA9F2j-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/17c8c517-03d1-480e-9760-03037b1e0699, base path is set to: null +16:40:08.994 [XNIO-1 task-1] VrAwW_xTRUyljqBA9F2j-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:08.994 [XNIO-1 task-1] VrAwW_xTRUyljqBA9F2j-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:08.994 [XNIO-1 task-1] VrAwW_xTRUyljqBA9F2j-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/17c8c517-03d1-480e-9760-03037b1e0699, base path is set to: null +16:40:08.994 [XNIO-1 task-1] VrAwW_xTRUyljqBA9F2j-w DEBUG com.networknt.schema.TypeValidator debug - validate( "17c8c517-03d1-480e-9760-03037b1e0699", "17c8c517-03d1-480e-9760-03037b1e0699", clientId) +16:40:09.001 [XNIO-1 task-1] h5fJ6tvoSoes06z4myv-zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/15f4acaf-a86a-40ad-bd7f-26d2226d4c81 +16:40:09.001 [XNIO-1 task-1] h5fJ6tvoSoes06z4myv-zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.001 [XNIO-1 task-1] h5fJ6tvoSoes06z4myv-zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.001 [XNIO-1 task-1] h5fJ6tvoSoes06z4myv-zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/15f4acaf-a86a-40ad-bd7f-26d2226d4c81 +16:40:09.009 [XNIO-1 task-1] PCdonHnCSgCEI8jh3uTRWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e, base path is set to: null +16:40:09.009 [XNIO-1 task-1] PCdonHnCSgCEI8jh3uTRWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.009 [XNIO-1 task-1] PCdonHnCSgCEI8jh3uTRWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.009 [XNIO-1 task-1] PCdonHnCSgCEI8jh3uTRWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e, base path is set to: null +16:40:09.009 [XNIO-1 task-1] PCdonHnCSgCEI8jh3uTRWg DEBUG com.networknt.schema.TypeValidator debug - validate( "bad9bd8b-79fc-4a12-ad92-ad5577080a2e", "bad9bd8b-79fc-4a12-ad92-ad5577080a2e", clientId) +16:40:09.011 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.011 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.011 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.011 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.011 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.011 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG com.networknt.schema.TypeValidator debug - validate( "803cf5d2-134f-4692-970c-81031953bce5", {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.012 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.012 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.012 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG com.networknt.schema.TypeValidator debug - validate( "4e830921-7719-4fc9-b9ba-d1ed7875", {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.012 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.012 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4e830921-7719-4fc9-b9ba-d1ed7875","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.012 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.012 [XNIO-1 task-1] knRLgk_jSG6yOCyLgJ4INw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.014 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.014 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.014 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.014 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a21f1c0d-ada1-4e91-8b1b-c7b1bb94","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.015 [XNIO-1 task-1] W_aLgNOGS8qn9i02_yJBdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.017 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.017 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.017 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.017 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.017 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.017 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG com.networknt.schema.TypeValidator debug - validate( "803cf5d2-134f-4692-970c-81031953bce5", {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.018 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.018 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.018 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG com.networknt.schema.TypeValidator debug - validate( "e292b451-b3cb-4d2c-8e16-73afd5c4", {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.018 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.018 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e292b451-b3cb-4d2c-8e16-73afd5c4","clientDesc":"803cf5d2-134f-4692-970c-81031953bce5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.018 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.018 [XNIO-1 task-1] PTN6RqHCTLWuy6xyQzfNzA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.020 [XNIO-1 task-1] w2dcKEWxSXqk8yHMeRSOeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e, base path is set to: null +16:40:09.020 [XNIO-1 task-1] w2dcKEWxSXqk8yHMeRSOeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.021 [XNIO-1 task-1] w2dcKEWxSXqk8yHMeRSOeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.021 [XNIO-1 task-1] w2dcKEWxSXqk8yHMeRSOeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/bad9bd8b-79fc-4a12-ad92-ad5577080a2e, base path is set to: null +16:40:09.021 [XNIO-1 task-1] w2dcKEWxSXqk8yHMeRSOeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bad9bd8b-79fc-4a12-ad92-ad5577080a2e", "bad9bd8b-79fc-4a12-ad92-ad5577080a2e", clientId) +16:40:09.026 [XNIO-1 task-1] n67NyK7RQMOkHa5VfEnUjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.026 [XNIO-1 task-1] n67NyK7RQMOkHa5VfEnUjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.026 [XNIO-1 task-1] n67NyK7RQMOkHa5VfEnUjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.026 [XNIO-1 task-1] n67NyK7RQMOkHa5VfEnUjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.032 [XNIO-1 task-1] BFLzHCogT-G-7RnWtEpWXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.033 [XNIO-1 task-1] BFLzHCogT-G-7RnWtEpWXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.034 [XNIO-1 task-1] BFLzHCogT-G-7RnWtEpWXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.047 [XNIO-1 task-1] K4WEXB0XRGqYgNVNehSYZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c45ce7a5-5ccc-42b5-b55c-a0644216a844 +16:40:09.047 [XNIO-1 task-1] K4WEXB0XRGqYgNVNehSYZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.047 [XNIO-1 task-1] K4WEXB0XRGqYgNVNehSYZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.047 [XNIO-1 task-1] K4WEXB0XRGqYgNVNehSYZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c45ce7a5-5ccc-42b5-b55c-a0644216a844 +16:40:09.050 [XNIO-1 task-1] LvJUWzznSciiaMEJ2uahNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c45ce7a5-5ccc-42b5-b55c-a0644216a844, base path is set to: null +16:40:09.050 [XNIO-1 task-1] LvJUWzznSciiaMEJ2uahNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.050 [XNIO-1 task-1] LvJUWzznSciiaMEJ2uahNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.051 [XNIO-1 task-1] LvJUWzznSciiaMEJ2uahNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c45ce7a5-5ccc-42b5-b55c-a0644216a844, base path is set to: null +16:40:09.051 [XNIO-1 task-1] LvJUWzznSciiaMEJ2uahNg DEBUG com.networknt.schema.TypeValidator debug - validate( "c45ce7a5-5ccc-42b5-b55c-a0644216a844", "c45ce7a5-5ccc-42b5-b55c-a0644216a844", clientId) +16:40:09.053 [XNIO-1 task-1] mr8ompXzTLODGpXtmsMsEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.053 [XNIO-1 task-1] mr8ompXzTLODGpXtmsMsEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.053 [XNIO-1 task-1] mr8ompXzTLODGpXtmsMsEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.053 [XNIO-1 task-1] mr8ompXzTLODGpXtmsMsEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.059 [XNIO-1 task-1] NT1pzlneTh2ggpBZdFpXiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c45ce7a5-5ccc-42b5-b55c-a0644216a844 +16:40:09.059 [XNIO-1 task-1] NT1pzlneTh2ggpBZdFpXiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.059 [XNIO-1 task-1] NT1pzlneTh2ggpBZdFpXiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.059 [XNIO-1 task-1] NT1pzlneTh2ggpBZdFpXiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c45ce7a5-5ccc-42b5-b55c-a0644216a844 +16:40:09.064 [XNIO-1 task-1] bjVIiHcgQVu9n86pZK60CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.064 [XNIO-1 task-1] bjVIiHcgQVu9n86pZK60CA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.064 [XNIO-1 task-1] bjVIiHcgQVu9n86pZK60CA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.064 [XNIO-1 task-1] bjVIiHcgQVu9n86pZK60CA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.071 [XNIO-1 task-1] jUCoNS2kQ7un4Or_UIT06g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.071 [XNIO-1 task-1] jUCoNS2kQ7un4Or_UIT06g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.071 [XNIO-1 task-1] jUCoNS2kQ7un4Or_UIT06g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.071 [XNIO-1 task-1] jUCoNS2kQ7un4Or_UIT06g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.078 [XNIO-1 task-1] Pu3tmS_nRjedrP-G95V4EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.078 [XNIO-1 task-1] Pu3tmS_nRjedrP-G95V4EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.078 [XNIO-1 task-1] Pu3tmS_nRjedrP-G95V4EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.090 [XNIO-1 task-1] af57ExEfQE6xPqt77XQH_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.090 [XNIO-1 task-1] af57ExEfQE6xPqt77XQH_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.090 [XNIO-1 task-1] af57ExEfQE6xPqt77XQH_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.090 [XNIO-1 task-1] af57ExEfQE6xPqt77XQH_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.098 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bcf91655 +16:40:09.099 [XNIO-1 task-1] c_f7DdiOTVOCO-WKh1zmZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/419dd61d-c12f-4a5d-8dac-e901b64e4544, base path is set to: null +16:40:09.099 [XNIO-1 task-1] c_f7DdiOTVOCO-WKh1zmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/419dd61d-c12f-4a5d-8dac-e901b64e4544 +16:40:09.099 [XNIO-1 task-1] c_f7DdiOTVOCO-WKh1zmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.099 [XNIO-1 task-1] c_f7DdiOTVOCO-WKh1zmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.099 [XNIO-1 task-1] c_f7DdiOTVOCO-WKh1zmZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/419dd61d-c12f-4a5d-8dac-e901b64e4544 +16:40:09.106 [XNIO-1 task-1] 4ScVgAFvQ9iAvegqdhA5rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.106 [XNIO-1 task-1] 4ScVgAFvQ9iAvegqdhA5rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.106 [XNIO-1 task-1] 4ScVgAFvQ9iAvegqdhA5rQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.123 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:bcf91655 +16:40:09.127 [XNIO-1 task-1] CPvcg0ZnRV6BpeyydsrFDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/193ad2a4-ce3a-46a1-bf2b-3840e5a0a07c, base path is set to: null +16:40:09.127 [XNIO-1 task-1] CPvcg0ZnRV6BpeyydsrFDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.127 [XNIO-1 task-1] CPvcg0ZnRV6BpeyydsrFDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.127 [XNIO-1 task-1] CPvcg0ZnRV6BpeyydsrFDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/193ad2a4-ce3a-46a1-bf2b-3840e5a0a07c, base path is set to: null +16:40:09.127 [XNIO-1 task-1] CPvcg0ZnRV6BpeyydsrFDg DEBUG com.networknt.schema.TypeValidator debug - validate( "193ad2a4-ce3a-46a1-bf2b-3840e5a0a07c", "193ad2a4-ce3a-46a1-bf2b-3840e5a0a07c", clientId) +16:40:09.132 [XNIO-1 task-1] TmcU1cs-QXKNb5ZsbhxqKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.132 [XNIO-1 task-1] TmcU1cs-QXKNb5ZsbhxqKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.132 [XNIO-1 task-1] TmcU1cs-QXKNb5ZsbhxqKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.133 [XNIO-1 task-1] TmcU1cs-QXKNb5ZsbhxqKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.141 [XNIO-1 task-1] QTx_TxEZQw-ah8tKoe02Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.141 [XNIO-1 task-1] QTx_TxEZQw-ah8tKoe02Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.141 [XNIO-1 task-1] QTx_TxEZQw-ah8tKoe02Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.154 [XNIO-1 task-1] Jko5-p6bTmyCI3uK_h42vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12c7eb85-107a-4fc5-b6fa-fbe2b146effd +16:40:09.154 [XNIO-1 task-1] Jko5-p6bTmyCI3uK_h42vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.154 [XNIO-1 task-1] Jko5-p6bTmyCI3uK_h42vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.154 [XNIO-1 task-1] Jko5-p6bTmyCI3uK_h42vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/12c7eb85-107a-4fc5-b6fa-fbe2b146effd +16:40:09.156 [XNIO-1 task-1] oXTtETifRViDGm8jVG3g6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/12c7eb85-107a-4fc5-b6fa-fbe2b146effd, base path is set to: null +16:40:09.156 [XNIO-1 task-1] oXTtETifRViDGm8jVG3g6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.156 [XNIO-1 task-1] oXTtETifRViDGm8jVG3g6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.156 [XNIO-1 task-1] oXTtETifRViDGm8jVG3g6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/12c7eb85-107a-4fc5-b6fa-fbe2b146effd, base path is set to: null +16:40:09.157 [XNIO-1 task-1] oXTtETifRViDGm8jVG3g6w DEBUG com.networknt.schema.TypeValidator debug - validate( "12c7eb85-107a-4fc5-b6fa-fbe2b146effd", "12c7eb85-107a-4fc5-b6fa-fbe2b146effd", clientId) +16:40:09.163 [XNIO-1 task-1] wu6_vskcQu6v_9TifbKJlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.163 [XNIO-1 task-1] wu6_vskcQu6v_9TifbKJlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.163 [XNIO-1 task-1] wu6_vskcQu6v_9TifbKJlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.163 [XNIO-1 task-1] wu6_vskcQu6v_9TifbKJlg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.169 [XNIO-1 task-1] DPMQcmrRRN22LlKNh2PCCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.169 [XNIO-1 task-1] DPMQcmrRRN22LlKNh2PCCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.169 [XNIO-1 task-1] DPMQcmrRRN22LlKNh2PCCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.169 [XNIO-1 task-1] DPMQcmrRRN22LlKNh2PCCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.177 [XNIO-1 task-1] HAYuw_PJQZ-0NaDJFuErBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.177 [XNIO-1 task-1] HAYuw_PJQZ-0NaDJFuErBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.177 [XNIO-1 task-1] HAYuw_PJQZ-0NaDJFuErBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.190 [XNIO-1 task-1] v32dq05rTiqtmWGmQfUvgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.190 [XNIO-1 task-1] v32dq05rTiqtmWGmQfUvgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.190 [XNIO-1 task-1] v32dq05rTiqtmWGmQfUvgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.191 [XNIO-1 task-1] v32dq05rTiqtmWGmQfUvgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.193 [XNIO-1 task-1] -bqL_7j4Q4680rCh4NH3tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453, base path is set to: null +16:40:09.193 [XNIO-1 task-1] -bqL_7j4Q4680rCh4NH3tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.193 [XNIO-1 task-1] -bqL_7j4Q4680rCh4NH3tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.193 [XNIO-1 task-1] -bqL_7j4Q4680rCh4NH3tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453, base path is set to: null +16:40:09.193 [XNIO-1 task-1] -bqL_7j4Q4680rCh4NH3tw DEBUG com.networknt.schema.TypeValidator debug - validate( "9d986c49-6a67-43ae-8a79-1963a2598453", "9d986c49-6a67-43ae-8a79-1963a2598453", clientId) +16:40:09.195 [XNIO-1 task-1] jxcWIjr0SLKJtIKoJeoVag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.195 [XNIO-1 task-1] jxcWIjr0SLKJtIKoJeoVag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.195 [XNIO-1 task-1] jxcWIjr0SLKJtIKoJeoVag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.196 [XNIO-1 task-1] jxcWIjr0SLKJtIKoJeoVag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.207 [XNIO-1 task-1] qtqqPtXoSZ-uBIJhfWa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.207 [XNIO-1 task-1] qtqqPtXoSZ-uBIJhfWa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.207 [XNIO-1 task-1] qtqqPtXoSZ-uBIJhfWa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.207 [XNIO-1 task-1] qtqqPtXoSZ-uBIJhfWa7Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.210 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.210 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.210 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.211 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.211 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.211 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.211 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.212 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.212 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.212 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.212 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.212 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3a27b04b-7caf-45fa-b85c-d14e7f33","clientDesc":"f8785d34-a504-4e7f-8111-cae27e7c3956","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.213 [XNIO-1 task-1] XAAnncRtTWazknbfYj-RKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.216 [XNIO-1 task-1] 0w0e3ZY6QRyfaQZgIXOatQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.216 [XNIO-1 task-1] 0w0e3ZY6QRyfaQZgIXOatQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.216 [XNIO-1 task-1] 0w0e3ZY6QRyfaQZgIXOatQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.217 [XNIO-1 task-1] 0w0e3ZY6QRyfaQZgIXOatQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.219 [XNIO-1 task-1] cUqusP7zQle4u229ieu8ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453, base path is set to: null +16:40:09.219 [XNIO-1 task-1] cUqusP7zQle4u229ieu8ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.220 [XNIO-1 task-1] cUqusP7zQle4u229ieu8ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.220 [XNIO-1 task-1] cUqusP7zQle4u229ieu8ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453, base path is set to: null +16:40:09.220 [XNIO-1 task-1] cUqusP7zQle4u229ieu8ng DEBUG com.networknt.schema.TypeValidator debug - validate( "9d986c49-6a67-43ae-8a79-1963a2598453", "9d986c49-6a67-43ae-8a79-1963a2598453", clientId) +16:40:09.223 [XNIO-1 task-1] fw8Bw01qRF2rtwnddfMscw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.223 [XNIO-1 task-1] fw8Bw01qRF2rtwnddfMscw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.223 [XNIO-1 task-1] fw8Bw01qRF2rtwnddfMscw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.223 [XNIO-1 task-1] fw8Bw01qRF2rtwnddfMscw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.275 [XNIO-1 task-1] es_9OwifQfGjAQ1FrrXtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.275 [XNIO-1 task-1] es_9OwifQfGjAQ1FrrXtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.275 [XNIO-1 task-1] es_9OwifQfGjAQ1FrrXtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.275 [XNIO-1 task-1] es_9OwifQfGjAQ1FrrXtTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d986c49-6a67-43ae-8a79-1963a2598453 +16:40:09.281 [XNIO-1 task-1] ZPtPmoXlTf2EFym8mBVSlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.281 [XNIO-1 task-1] ZPtPmoXlTf2EFym8mBVSlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.281 [XNIO-1 task-1] ZPtPmoXlTf2EFym8mBVSlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.298 [XNIO-1 task-1] ywaoioGJTNyU2fGY21_moQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.298 [XNIO-1 task-1] ywaoioGJTNyU2fGY21_moQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.298 [XNIO-1 task-1] ywaoioGJTNyU2fGY21_moQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.298 [XNIO-1 task-1] ywaoioGJTNyU2fGY21_moQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.298 [XNIO-1 task-1] ywaoioGJTNyU2fGY21_moQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee1e60e-d295-48cf-9e7a-ea50105bc190", "3ee1e60e-d295-48cf-9e7a-ea50105bc190", clientId) +16:40:09.301 [XNIO-1 task-1] MWqY02ZGSnGonWUBrOBW0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.301 [XNIO-1 task-1] MWqY02ZGSnGonWUBrOBW0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.301 [XNIO-1 task-1] MWqY02ZGSnGonWUBrOBW0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.315 [XNIO-1 task-1] WYpGdXdtT2amva-c43Ay9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.315 [XNIO-1 task-1] WYpGdXdtT2amva-c43Ay9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.315 [XNIO-1 task-1] WYpGdXdtT2amva-c43Ay9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.316 [XNIO-1 task-1] WYpGdXdtT2amva-c43Ay9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.324 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.324 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.324 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8aa6b004-060b-4dd8-98b8-f30bcc1ad81f", {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0112b5f8-148a-4b41-88e3-14ce64e1", {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0112b5f8-148a-4b41-88e3-14ce64e1","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.326 [XNIO-1 task-1] NbyfpNRyR5OCFkFn54iHWQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.329 [XNIO-1 task-1] kFlfQTq_QoaShSk8aOpn3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.329 [XNIO-1 task-1] kFlfQTq_QoaShSk8aOpn3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.329 [XNIO-1 task-1] kFlfQTq_QoaShSk8aOpn3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.329 [XNIO-1 task-1] kFlfQTq_QoaShSk8aOpn3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.339 [XNIO-1 task-1] b-FFUSq8R0ucB5gPPdrpmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.339 [XNIO-1 task-1] b-FFUSq8R0ucB5gPPdrpmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.339 [XNIO-1 task-1] b-FFUSq8R0ucB5gPPdrpmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.353 [XNIO-1 task-1] KKzx5tsfTsCYOb3JLj-R-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9507ebed-2609-440d-97f8-74c46c5edd37, base path is set to: null +16:40:09.353 [XNIO-1 task-1] KKzx5tsfTsCYOb3JLj-R-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.353 [XNIO-1 task-1] KKzx5tsfTsCYOb3JLj-R-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.354 [XNIO-1 task-1] KKzx5tsfTsCYOb3JLj-R-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9507ebed-2609-440d-97f8-74c46c5edd37, base path is set to: null +16:40:09.354 [XNIO-1 task-1] KKzx5tsfTsCYOb3JLj-R-A DEBUG com.networknt.schema.TypeValidator debug - validate( "9507ebed-2609-440d-97f8-74c46c5edd37", "9507ebed-2609-440d-97f8-74c46c5edd37", clientId) +16:40:09.356 [XNIO-1 task-1] zG8VTd3oRGCnoGHa5zBWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.356 [XNIO-1 task-1] zG8VTd3oRGCnoGHa5zBWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.356 [XNIO-1 task-1] zG8VTd3oRGCnoGHa5zBWVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.356 [XNIO-1 task-1] zG8VTd3oRGCnoGHa5zBWVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.363 [XNIO-1 task-1] 6mx13bL7SGitx-m1bcIIRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.363 [XNIO-1 task-1] 6mx13bL7SGitx-m1bcIIRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.363 [XNIO-1 task-1] 6mx13bL7SGitx-m1bcIIRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.363 [XNIO-1 task-1] 6mx13bL7SGitx-m1bcIIRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.370 [XNIO-1 task-1] hNcewAqXTAqaRnH8NWYkPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9507ebed-2609-440d-97f8-74c46c5edd37 +16:40:09.370 [XNIO-1 task-1] hNcewAqXTAqaRnH8NWYkPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.370 [XNIO-1 task-1] hNcewAqXTAqaRnH8NWYkPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.371 [XNIO-1 task-1] hNcewAqXTAqaRnH8NWYkPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9507ebed-2609-440d-97f8-74c46c5edd37 +16:40:09.373 [XNIO-1 task-1] le5yv5c3TGy8Vozt9dd3Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9507ebed-2609-440d-97f8-74c46c5edd37, base path is set to: null +16:40:09.373 [XNIO-1 task-1] le5yv5c3TGy8Vozt9dd3Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.373 [XNIO-1 task-1] le5yv5c3TGy8Vozt9dd3Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.373 [XNIO-1 task-1] le5yv5c3TGy8Vozt9dd3Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9507ebed-2609-440d-97f8-74c46c5edd37, base path is set to: null +16:40:09.373 [XNIO-1 task-1] le5yv5c3TGy8Vozt9dd3Zg DEBUG com.networknt.schema.TypeValidator debug - validate( "9507ebed-2609-440d-97f8-74c46c5edd37", "9507ebed-2609-440d-97f8-74c46c5edd37", clientId) +16:40:09.375 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ee5e3c01 +16:40:09.378 [XNIO-1 task-1] sNlYhDvYRamF_tZr1JcDgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f099a47-7105-4465-89e5-144836f892b6, base path is set to: null +16:40:09.378 [XNIO-1 task-1] sNlYhDvYRamF_tZr1JcDgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.378 [XNIO-1 task-1] sNlYhDvYRamF_tZr1JcDgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.378 [XNIO-1 task-1] sNlYhDvYRamF_tZr1JcDgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8f099a47-7105-4465-89e5-144836f892b6, base path is set to: null +16:40:09.378 [XNIO-1 task-1] sNlYhDvYRamF_tZr1JcDgg DEBUG com.networknt.schema.TypeValidator debug - validate( "8f099a47-7105-4465-89e5-144836f892b6", "8f099a47-7105-4465-89e5-144836f892b6", clientId) +16:40:09.384 [XNIO-1 task-1] RXJTR3IYRpu4pLMGRk11Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.385 [XNIO-1 task-1] RXJTR3IYRpu4pLMGRk11Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.385 [XNIO-1 task-1] RXJTR3IYRpu4pLMGRk11Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.386 [XNIO-1 task-1] RXJTR3IYRpu4pLMGRk11Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.394 [XNIO-1 task-1] x2JnX5_iRe-46y_YMvKIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.394 [XNIO-1 task-1] x2JnX5_iRe-46y_YMvKIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.394 [XNIO-1 task-1] x2JnX5_iRe-46y_YMvKIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.400 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c12eb7a6-9acc-4a05-be64-badb906324eb +16:40:09.405 [XNIO-1 task-1] mqF7O63RSQiayTnMbhxDLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c12eb7a6-9acc-4a05-be64-badb906324eb, base path is set to: null +16:40:09.405 [XNIO-1 task-1] mqF7O63RSQiayTnMbhxDLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.405 [XNIO-1 task-1] mqF7O63RSQiayTnMbhxDLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.406 [XNIO-1 task-1] mqF7O63RSQiayTnMbhxDLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c12eb7a6-9acc-4a05-be64-badb906324eb, base path is set to: null +16:40:09.406 [XNIO-1 task-1] mqF7O63RSQiayTnMbhxDLA DEBUG com.networknt.schema.TypeValidator debug - validate( "c12eb7a6-9acc-4a05-be64-badb906324eb", "c12eb7a6-9acc-4a05-be64-badb906324eb", clientId) +16:40:09.408 [XNIO-1 task-1] LeTX2nk5RFu2p9swdiS7Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.408 [XNIO-1 task-1] LeTX2nk5RFu2p9swdiS7Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.408 [XNIO-1 task-1] LeTX2nk5RFu2p9swdiS7Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.424 [XNIO-1 task-1] 4egnCgseRFaZBcRnoUooFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16718880-41eb-4a7a-aa11-c8ac5ab1404e +16:40:09.424 [XNIO-1 task-1] 4egnCgseRFaZBcRnoUooFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.424 [XNIO-1 task-1] 4egnCgseRFaZBcRnoUooFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.424 [XNIO-1 task-1] 4egnCgseRFaZBcRnoUooFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16718880-41eb-4a7a-aa11-c8ac5ab1404e +16:40:09.432 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.432 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.432 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.433 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.434 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"697ad749-5d90-4491-89f3-d17aa2d2","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.435 [XNIO-1 task-1] FHkffHyxRlqmf287OYpjMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.437 [XNIO-1 task-1] GM1rg_Q3QKCgAKziGGpM1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.437 [XNIO-1 task-1] GM1rg_Q3QKCgAKziGGpM1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.437 [XNIO-1 task-1] GM1rg_Q3QKCgAKziGGpM1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.441 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ee5e3c01 +16:40:09.450 [XNIO-1 task-1] Ekqg7cQ8QI2Syxtt8iIhvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.450 [XNIO-1 task-1] Ekqg7cQ8QI2Syxtt8iIhvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.450 [XNIO-1 task-1] Ekqg7cQ8QI2Syxtt8iIhvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.457 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:38da243a-5155-48eb-b93b-1eb7d8575fbe +16:40:09.463 [XNIO-1 task-1] 5R3y3n9uQ1WEOsicUTtnVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.463 [XNIO-1 task-1] 5R3y3n9uQ1WEOsicUTtnVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.464 [XNIO-1 task-1] 5R3y3n9uQ1WEOsicUTtnVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.464 [XNIO-1 task-1] 5R3y3n9uQ1WEOsicUTtnVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.470 [XNIO-1 task-1] Ql_yxV3sSIuv1uNR9tfHkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.470 [XNIO-1 task-1] Ql_yxV3sSIuv1uNR9tfHkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.470 [XNIO-1 task-1] Ql_yxV3sSIuv1uNR9tfHkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.483 [XNIO-1 task-1] bbuAFXgcSzWE52CuZPqF-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.483 [XNIO-1 task-1] bbuAFXgcSzWE52CuZPqF-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.483 [XNIO-1 task-1] bbuAFXgcSzWE52CuZPqF-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.483 [XNIO-1 task-1] bbuAFXgcSzWE52CuZPqF-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.494 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:48eab587 +16:40:09.495 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:48eab587 +16:40:09.495 [XNIO-1 task-1] iSGPqZYkS62WgoCJMSS3rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.495 [XNIO-1 task-1] iSGPqZYkS62WgoCJMSS3rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.495 [XNIO-1 task-1] iSGPqZYkS62WgoCJMSS3rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.495 [XNIO-1 task-1] iSGPqZYkS62WgoCJMSS3rg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.504 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.504 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.504 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.504 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.504 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "032eb9fe-01bf-486e-8873-f5df0b842d9d", {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "8a38fff5-636a-4468-aa5a-955f759a", {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8a38fff5-636a-4468-aa5a-955f759a","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.505 [XNIO-1 task-1] k-eYZaxxTrOr0EFH8jJiEw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.508 [XNIO-1 task-1] vD21uhj5QEGDfACb8XKYYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.508 [XNIO-1 task-1] vD21uhj5QEGDfACb8XKYYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.508 [XNIO-1 task-1] vD21uhj5QEGDfACb8XKYYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.514 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:14047bd5-1f5b-471e-9935-50fed1e7addd +16:40:09.514 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:14047bd5-1f5b-471e-9935-50fed1e7addd +16:40:09.523 [XNIO-1 task-1] W9hk5SZ3TeOkMAoz4CjnwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39ff3fa9-c420-4d6e-b587-15551ecce2e6 +16:40:09.523 [XNIO-1 task-1] W9hk5SZ3TeOkMAoz4CjnwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.523 [XNIO-1 task-1] W9hk5SZ3TeOkMAoz4CjnwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.523 [XNIO-1 task-1] W9hk5SZ3TeOkMAoz4CjnwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39ff3fa9-c420-4d6e-b587-15551ecce2e6 +16:40:09.529 [XNIO-1 task-1] 8ip-Z4hDRr-82RT2WlzoMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14047bd5-1f5b-471e-9935-50fed1e7addd, base path is set to: null +16:40:09.529 [XNIO-1 task-1] 8ip-Z4hDRr-82RT2WlzoMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.529 [XNIO-1 task-1] 8ip-Z4hDRr-82RT2WlzoMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.529 [XNIO-1 task-1] 8ip-Z4hDRr-82RT2WlzoMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/14047bd5-1f5b-471e-9935-50fed1e7addd, base path is set to: null +16:40:09.529 [XNIO-1 task-1] 8ip-Z4hDRr-82RT2WlzoMA DEBUG com.networknt.schema.TypeValidator debug - validate( "14047bd5-1f5b-471e-9935-50fed1e7addd", "14047bd5-1f5b-471e-9935-50fed1e7addd", clientId) +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.536 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.537 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.537 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.537 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"206212b3-f151-4344-9378-9729dcde","clientDesc":"032eb9fe-01bf-486e-8873-f5df0b842d9d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.539 [XNIO-1 task-1] 8h3VfFkxR_Kt9jnTDLl8jA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.541 [XNIO-1 task-1] n9LgU2hvQISdeUFcPXVntQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c12eb7a6-9acc-4a05-be64-badb906324eb +16:40:09.541 [XNIO-1 task-1] n9LgU2hvQISdeUFcPXVntQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.541 [XNIO-1 task-1] n9LgU2hvQISdeUFcPXVntQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.541 [XNIO-1 task-1] n9LgU2hvQISdeUFcPXVntQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c12eb7a6-9acc-4a05-be64-badb906324eb +16:40:09.542 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:c12eb7a6-9acc-4a05-be64-badb906324eb +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b01387de-89b9-45fc-84a1-0f2d74c7d1df", {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.548 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4f62e371-dcd6-4534-92a9-7818ae23", {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.549 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.549 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4f62e371-dcd6-4534-92a9-7818ae23","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.549 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.550 [XNIO-1 task-1] mYq_qgt1RLqzdDicA0q2-Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.552 [XNIO-1 task-1] p0k3Q4wQSLetgZ4upL-tMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/38da243a-5155-48eb-b93b-1eb7d8575fbe, base path is set to: null +16:40:09.552 [XNIO-1 task-1] p0k3Q4wQSLetgZ4upL-tMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.552 [XNIO-1 task-1] p0k3Q4wQSLetgZ4upL-tMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.552 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:48eab587 +16:40:09.552 [XNIO-1 task-1] p0k3Q4wQSLetgZ4upL-tMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38da243a-5155-48eb-b93b-1eb7d8575fbe +16:40:09.552 [XNIO-1 task-1] p0k3Q4wQSLetgZ4upL-tMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "38da243a-5155-48eb-b93b-1eb7d8575fbe", "38da243a-5155-48eb-b93b-1eb7d8575fbe", clientId) +16:40:09.556 [XNIO-1 task-1] JCypSvaETRKorjy8wgM5VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.556 [XNIO-1 task-1] JCypSvaETRKorjy8wgM5VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.556 [XNIO-1 task-1] JCypSvaETRKorjy8wgM5VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.567 [XNIO-1 task-1] KE9Lac2jTemjUh6hVwqbcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.567 [XNIO-1 task-1] KE9Lac2jTemjUh6hVwqbcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.567 [XNIO-1 task-1] KE9Lac2jTemjUh6hVwqbcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.583 [XNIO-1 task-1] k2EjmUqHRd-53S4SZTJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38da243a-5155-48eb-b93b-1eb7d8575fbe +16:40:09.583 [XNIO-1 task-1] k2EjmUqHRd-53S4SZTJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.583 [XNIO-1 task-1] k2EjmUqHRd-53S4SZTJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.583 [XNIO-1 task-1] k2EjmUqHRd-53S4SZTJ9qA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38da243a-5155-48eb-b93b-1eb7d8575fbe +16:40:09.586 [XNIO-1 task-1] A-avy7_RR4WZMcsRt761Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0bb6104d-9902-4b71-952f-0462ca6acac6, base path is set to: null +16:40:09.586 [XNIO-1 task-1] A-avy7_RR4WZMcsRt761Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.586 [XNIO-1 task-1] A-avy7_RR4WZMcsRt761Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.586 [XNIO-1 task-1] A-avy7_RR4WZMcsRt761Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0bb6104d-9902-4b71-952f-0462ca6acac6, base path is set to: null +16:40:09.586 [XNIO-1 task-1] A-avy7_RR4WZMcsRt761Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "0bb6104d-9902-4b71-952f-0462ca6acac6", "0bb6104d-9902-4b71-952f-0462ca6acac6", clientId) +16:40:09.593 [XNIO-1 task-1] d-XBFLE6S16GmubXc4xtSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.593 [XNIO-1 task-1] d-XBFLE6S16GmubXc4xtSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.593 [XNIO-1 task-1] d-XBFLE6S16GmubXc4xtSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.593 [XNIO-1 task-1] d-XBFLE6S16GmubXc4xtSA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.599 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:01a1b023 +16:40:09.600 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.601 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.602 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.602 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.602 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3847066a-14d9-4a69-8674-ca8cf9bd","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.602 [XNIO-1 task-1] vVfOyLRMQ7m0LSHAIoHmHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b01387de-89b9-45fc-84a1-0f2d74c7d1df", {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e2605d2-8edf-4133-9cb1-69a12802", {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.605 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.606 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9e2605d2-8edf-4133-9cb1-69a12802","clientDesc":"b01387de-89b9-45fc-84a1-0f2d74c7d1df","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.606 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.606 [XNIO-1 task-1] uMED-5ylSB6-zU0cKbpxUQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.608 [XNIO-1 task-1] AHHUlLAvQAyMYNEbNGBbYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.608 [XNIO-1 task-1] AHHUlLAvQAyMYNEbNGBbYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.608 [XNIO-1 task-1] AHHUlLAvQAyMYNEbNGBbYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.608 [XNIO-1 task-1] AHHUlLAvQAyMYNEbNGBbYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.608 [XNIO-1 task-1] AHHUlLAvQAyMYNEbNGBbYg DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee1e60e-d295-48cf-9e7a-ea50105bc190", "3ee1e60e-d295-48cf-9e7a-ea50105bc190", clientId) +16:40:09.610 [XNIO-1 task-1] CqJlfR6SRrqGusZwuijong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38da243a-5155-48eb-b93b-1eb7d8575fbe +16:40:09.611 [XNIO-1 task-1] CqJlfR6SRrqGusZwuijong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.611 [XNIO-1 task-1] CqJlfR6SRrqGusZwuijong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.611 [XNIO-1 task-1] CqJlfR6SRrqGusZwuijong DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/38da243a-5155-48eb-b93b-1eb7d8575fbe +16:40:09.611 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:38da243a-5155-48eb-b93b-1eb7d8575fbe +16:40:09.617 [XNIO-1 task-1] t-8h3_yiTBGlCEHCVepcbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.617 [XNIO-1 task-1] t-8h3_yiTBGlCEHCVepcbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.617 [XNIO-1 task-1] t-8h3_yiTBGlCEHCVepcbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.617 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:48eab587 +16:40:09.617 [XNIO-1 task-1] t-8h3_yiTBGlCEHCVepcbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.622 [XNIO-1 task-1] Q_jB9PrpTBSEJktcmygiEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.622 [XNIO-1 task-1] Q_jB9PrpTBSEJktcmygiEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.622 [XNIO-1 task-1] Q_jB9PrpTBSEJktcmygiEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.628 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0b87a8fc-b8e8-469a-ae8c-28153840fec9 +16:40:09.632 [XNIO-1 task-1] 82nTXytgQvutotcwmrII1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.632 [XNIO-1 task-1] 82nTXytgQvutotcwmrII1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.632 [XNIO-1 task-1] 82nTXytgQvutotcwmrII1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.632 [XNIO-1 task-1] 82nTXytgQvutotcwmrII1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.633 [XNIO-1 task-1] 82nTXytgQvutotcwmrII1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee1e60e-d295-48cf-9e7a-ea50105bc190", "3ee1e60e-d295-48cf-9e7a-ea50105bc190", clientId) +16:40:09.635 [XNIO-1 task-1] KtsRe7XtSDOgc2d3UUWttg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190 +16:40:09.635 [XNIO-1 task-1] KtsRe7XtSDOgc2d3UUWttg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.635 [XNIO-1 task-1] KtsRe7XtSDOgc2d3UUWttg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.635 [XNIO-1 task-1] KtsRe7XtSDOgc2d3UUWttg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190 +16:40:09.637 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.638 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.638 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.638 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.638 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.638 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.638 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.639 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.639 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.639 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.639 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.639 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bd63cc44-37c4-4d53-9d06-28280e1f","clientDesc":"8aa6b004-060b-4dd8-98b8-f30bcc1ad81f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.639 [XNIO-1 task-1] L_Kq2l5eRuqHghQ643PUmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.642 [XNIO-1 task-1] 5u2wjWq4R-6YMKOUeh2wEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0b87a8fc-b8e8-469a-ae8c-28153840fec9 +16:40:09.642 [XNIO-1 task-1] 5u2wjWq4R-6YMKOUeh2wEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.642 [XNIO-1 task-1] 5u2wjWq4R-6YMKOUeh2wEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.642 [XNIO-1 task-1] 5u2wjWq4R-6YMKOUeh2wEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0b87a8fc-b8e8-469a-ae8c-28153840fec9 +16:40:09.642 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0b87a8fc-b8e8-469a-ae8c-28153840fec9 +16:40:09.644 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:01a1b023 +16:40:09.646 [XNIO-1 task-1] QxtPnaRgRaCQf3qau58Xfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39a8418a-0845-48c3-93b1-93fba1a39f45 +16:40:09.646 [XNIO-1 task-1] QxtPnaRgRaCQf3qau58Xfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.646 [XNIO-1 task-1] QxtPnaRgRaCQf3qau58Xfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.646 [XNIO-1 task-1] QxtPnaRgRaCQf3qau58Xfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39a8418a-0845-48c3-93b1-93fba1a39f45 +16:40:09.648 [XNIO-1 task-1] tY_fAnI2TXWnVQV_gbuvKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.648 [XNIO-1 task-1] tY_fAnI2TXWnVQV_gbuvKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.648 [XNIO-1 task-1] tY_fAnI2TXWnVQV_gbuvKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.649 [XNIO-1 task-1] tY_fAnI2TXWnVQV_gbuvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.656 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.656 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.656 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.656 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"aea7fb01-f5f0-491e-8b0b-afa68bc7","clientDesc":"43f46c11-cb4d-45e7-afee-61a5e4e5fb80","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.657 [XNIO-1 task-1] p6I6t80aS0ayezhvt0CagA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.659 [XNIO-1 task-1] enoC8QALRFGoTLCieLIN1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4707101-f674-478b-861f-3c59b476e92f +16:40:09.659 [XNIO-1 task-1] enoC8QALRFGoTLCieLIN1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.659 [XNIO-1 task-1] enoC8QALRFGoTLCieLIN1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.660 [XNIO-1 task-1] enoC8QALRFGoTLCieLIN1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4707101-f674-478b-861f-3c59b476e92f +16:40:09.662 [XNIO-1 task-1] NkdSgP_yTsiLPtRUOdXS-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d4707101-f674-478b-861f-3c59b476e92f, base path is set to: null +16:40:09.662 [XNIO-1 task-1] NkdSgP_yTsiLPtRUOdXS-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.662 [XNIO-1 task-1] NkdSgP_yTsiLPtRUOdXS-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.662 [XNIO-1 task-1] NkdSgP_yTsiLPtRUOdXS-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d4707101-f674-478b-861f-3c59b476e92f, base path is set to: null +16:40:09.662 [XNIO-1 task-1] NkdSgP_yTsiLPtRUOdXS-g DEBUG com.networknt.schema.TypeValidator debug - validate( "d4707101-f674-478b-861f-3c59b476e92f", "d4707101-f674-478b-861f-3c59b476e92f", clientId) +16:40:09.664 [XNIO-1 task-1] TRm40hS-S-qUCegQc5TgxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4707101-f674-478b-861f-3c59b476e92f +16:40:09.664 [XNIO-1 task-1] TRm40hS-S-qUCegQc5TgxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.664 [XNIO-1 task-1] TRm40hS-S-qUCegQc5TgxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.664 [XNIO-1 task-1] TRm40hS-S-qUCegQc5TgxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4707101-f674-478b-861f-3c59b476e92f +16:40:09.670 [XNIO-1 task-1] G7fTvc45SYmizqF_xy4yhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.670 [XNIO-1 task-1] G7fTvc45SYmizqF_xy4yhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.670 [XNIO-1 task-1] G7fTvc45SYmizqF_xy4yhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.702 [XNIO-1 task-1] XoakCRamT1eAXfwW_Kd3FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.702 [XNIO-1 task-1] XoakCRamT1eAXfwW_Kd3FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.703 [XNIO-1 task-1] XoakCRamT1eAXfwW_Kd3FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.703 [XNIO-1 task-1] XoakCRamT1eAXfwW_Kd3FA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.708 [XNIO-1 task-1] QCLYQV-VQpmnSrS2kmf8yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.709 [XNIO-1 task-1] QCLYQV-VQpmnSrS2kmf8yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.709 [XNIO-1 task-1] QCLYQV-VQpmnSrS2kmf8yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.724 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.724 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.724 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.724 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.725 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.725 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.726 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.726 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.726 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.726 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.726 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.726 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cf24a65a-2e98-4d45-98b5-af119b8c","clientDesc":"2df939a9-c259-43ab-b8ea-e9f289c0c46e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.727 [XNIO-1 task-1] qpSJK1EfSwyvUmi8XjPbcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.729 [XNIO-1 task-1] bCoPvkt_RnemtuvX5ZLr1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.729 [XNIO-1 task-1] bCoPvkt_RnemtuvX5ZLr1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.729 [XNIO-1 task-1] bCoPvkt_RnemtuvX5ZLr1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.743 [XNIO-1 task-1] 2PxBzpxDTC-RaZuT9iN6Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/62728b0b-5201-4cfd-86dc-b4bdc1d60220 +16:40:09.744 [XNIO-1 task-1] 2PxBzpxDTC-RaZuT9iN6Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.744 [XNIO-1 task-1] 2PxBzpxDTC-RaZuT9iN6Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.744 [XNIO-1 task-1] 2PxBzpxDTC-RaZuT9iN6Eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/62728b0b-5201-4cfd-86dc-b4bdc1d60220 +16:40:09.753 [XNIO-1 task-1] exRqRcMFQE2wuh6xmEcC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.753 [XNIO-1 task-1] exRqRcMFQE2wuh6xmEcC0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.753 [XNIO-1 task-1] exRqRcMFQE2wuh6xmEcC0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.754 [XNIO-1 task-1] exRqRcMFQE2wuh6xmEcC0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.761 [XNIO-1 task-1] e4BbpY6IRFCUfwfTSzUx-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2937389-2911-44eb-991e-f74b25695b63, base path is set to: null +16:40:09.761 [XNIO-1 task-1] e4BbpY6IRFCUfwfTSzUx-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.761 [XNIO-1 task-1] e4BbpY6IRFCUfwfTSzUx-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.761 [XNIO-1 task-1] e4BbpY6IRFCUfwfTSzUx-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2937389-2911-44eb-991e-f74b25695b63, base path is set to: null +16:40:09.761 [XNIO-1 task-1] e4BbpY6IRFCUfwfTSzUx-g DEBUG com.networknt.schema.TypeValidator debug - validate( "e2937389-2911-44eb-991e-f74b25695b63", "e2937389-2911-44eb-991e-f74b25695b63", clientId) +16:40:09.765 [XNIO-1 task-1] DlXR-6jzSWqYpLsiznDuww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.765 [XNIO-1 task-1] DlXR-6jzSWqYpLsiznDuww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.765 [XNIO-1 task-1] DlXR-6jzSWqYpLsiznDuww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.765 [XNIO-1 task-1] DlXR-6jzSWqYpLsiznDuww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG com.networknt.schema.TypeValidator debug - validate( "76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a", {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.774 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.775 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG com.networknt.schema.TypeValidator debug - validate( "8a6c0075-0e39-4668-92a4-57747a90", {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.775 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.775 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8a6c0075-0e39-4668-92a4-57747a90","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.775 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.775 [XNIO-1 task-1] Jlbl5bODT5mJM7PMws-Ztw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.779 [XNIO-1 task-1] oKFiKEBSTfKIdwu-1y6mvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.779 [XNIO-1 task-1] oKFiKEBSTfKIdwu-1y6mvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.779 [XNIO-1 task-1] oKFiKEBSTfKIdwu-1y6mvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.780 [XNIO-1 task-1] oKFiKEBSTfKIdwu-1y6mvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/3ee1e60e-d295-48cf-9e7a-ea50105bc190, base path is set to: null +16:40:09.780 [XNIO-1 task-1] oKFiKEBSTfKIdwu-1y6mvA DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee1e60e-d295-48cf-9e7a-ea50105bc190", "3ee1e60e-d295-48cf-9e7a-ea50105bc190", clientId) +16:40:09.785 [XNIO-1 task-1] lW6VU5NqR9Gi1vweKvDxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2937389-2911-44eb-991e-f74b25695b63 +16:40:09.785 [XNIO-1 task-1] lW6VU5NqR9Gi1vweKvDxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.785 [XNIO-1 task-1] lW6VU5NqR9Gi1vweKvDxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.785 [XNIO-1 task-1] lW6VU5NqR9Gi1vweKvDxCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2937389-2911-44eb-991e-f74b25695b63 +16:40:09.792 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.792 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.792 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.792 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.793 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a1de6bcb-3b96-4b31-80ad-eaa1b358","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.794 [XNIO-1 task-1] EQd4YTIdSRmbqFMnZRma5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.798 [XNIO-1 task-1] IMQFoqSnQAOj4c0brlHDVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.798 [XNIO-1 task-1] IMQFoqSnQAOj4c0brlHDVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.798 [XNIO-1 task-1] IMQFoqSnQAOj4c0brlHDVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a", {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "4afedaf0-6f8c-4440-a3bf-9b97e451", {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.812 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4afedaf0-6f8c-4440-a3bf-9b97e451","clientDesc":"76ebfffb-f02f-4f42-95b4-4bb0ccdfba6a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.815 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.815 [XNIO-1 task-1] C3GRh996R1WRMh17EhaAyA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.817 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.818 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.819 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9d3ef09f-a5ab-4e29-a5f5-0f11d881","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.820 [XNIO-1 task-1] uV4FVY8fSYSBvYIKl3VqMw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:09.822 [XNIO-1 task-1] 9q0xYlbuTDe3vCOBUX4haA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6 +16:40:09.822 [XNIO-1 task-1] 9q0xYlbuTDe3vCOBUX4haA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.822 [XNIO-1 task-1] 9q0xYlbuTDe3vCOBUX4haA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.822 [XNIO-1 task-1] 9q0xYlbuTDe3vCOBUX4haA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6 +16:40:09.824 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cb31d19e +16:40:09.824 [XNIO-1 task-1] U3CAYOM1RW2HOUk4FfKWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab +16:40:09.824 [XNIO-1 task-1] U3CAYOM1RW2HOUk4FfKWqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.824 [XNIO-1 task-1] U3CAYOM1RW2HOUk4FfKWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.824 [XNIO-1 task-1] U3CAYOM1RW2HOUk4FfKWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.825 [XNIO-1 task-1] U3CAYOM1RW2HOUk4FfKWqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab +16:40:09.828 [XNIO-1 task-1] pdJ-JzktRqiPECYTZID-wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.828 [XNIO-1 task-1] pdJ-JzktRqiPECYTZID-wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.828 [XNIO-1 task-1] pdJ-JzktRqiPECYTZID-wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.828 [XNIO-1 task-1] pdJ-JzktRqiPECYTZID-wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.834 [XNIO-1 task-1] ZypdcmLxSiKvUq36VwgXng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.835 [XNIO-1 task-1] ZypdcmLxSiKvUq36VwgXng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.835 [XNIO-1 task-1] ZypdcmLxSiKvUq36VwgXng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.848 [XNIO-1 task-1] GeCqoA-6SXaZr_wzAnP_1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab, base path is set to: null +16:40:09.848 [XNIO-1 task-1] GeCqoA-6SXaZr_wzAnP_1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.848 [XNIO-1 task-1] GeCqoA-6SXaZr_wzAnP_1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.848 [XNIO-1 task-1] GeCqoA-6SXaZr_wzAnP_1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab, base path is set to: null +16:40:09.848 [XNIO-1 task-1] GeCqoA-6SXaZr_wzAnP_1A DEBUG com.networknt.schema.TypeValidator debug - validate( "72c79266-e00e-48fa-bda8-1d876036b8ab", "72c79266-e00e-48fa-bda8-1d876036b8ab", clientId) +16:40:09.852 [XNIO-1 task-1] IAEaRqvyQnueVJZToJo_0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab +16:40:09.852 [XNIO-1 task-1] IAEaRqvyQnueVJZToJo_0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.852 [XNIO-1 task-1] IAEaRqvyQnueVJZToJo_0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.852 [XNIO-1 task-1] IAEaRqvyQnueVJZToJo_0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab +16:40:09.855 [XNIO-1 task-1] -9xdCcI2TiCxjFPefGRhtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.855 [XNIO-1 task-1] -9xdCcI2TiCxjFPefGRhtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.855 [XNIO-1 task-1] -9xdCcI2TiCxjFPefGRhtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.866 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:cb31d19e +16:40:09.867 [XNIO-1 task-1] SSnUflSbTr-P_3BXKSuI-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab, base path is set to: null +16:40:09.867 [XNIO-1 task-1] SSnUflSbTr-P_3BXKSuI-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.867 [XNIO-1 task-1] SSnUflSbTr-P_3BXKSuI-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.867 [XNIO-1 task-1] SSnUflSbTr-P_3BXKSuI-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/72c79266-e00e-48fa-bda8-1d876036b8ab, base path is set to: null +16:40:09.867 [XNIO-1 task-1] SSnUflSbTr-P_3BXKSuI-g DEBUG com.networknt.schema.TypeValidator debug - validate( "72c79266-e00e-48fa-bda8-1d876036b8ab", "72c79266-e00e-48fa-bda8-1d876036b8ab", clientId) +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG com.networknt.schema.TypeValidator debug - validate( "b976eae4-9f69-418f-84f2-61a01a53870d", {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.878 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1fd46c4b-a2c0-42b3-b2f8-87796bb0", {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.879 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.879 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1fd46c4b-a2c0-42b3-b2f8-87796bb0","clientDesc":"b976eae4-9f69-418f-84f2-61a01a53870d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.879 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.879 [XNIO-1 task-1] qJjL02TnTl-M1jGemrxhXw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.881 [XNIO-1 task-1] OscQJ4tLT1ajKP3Re2iB6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.881 [XNIO-1 task-1] OscQJ4tLT1ajKP3Re2iB6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.881 [XNIO-1 task-1] OscQJ4tLT1ajKP3Re2iB6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.892 [XNIO-1 task-1] kSxirYmFRfWbfx32bZlatw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2063980-0377-440d-8644-c372f6d3b7da, base path is set to: null +16:40:09.893 [XNIO-1 task-1] kSxirYmFRfWbfx32bZlatw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.893 [XNIO-1 task-1] kSxirYmFRfWbfx32bZlatw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.893 [XNIO-1 task-1] kSxirYmFRfWbfx32bZlatw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2063980-0377-440d-8644-c372f6d3b7da, base path is set to: null +16:40:09.893 [XNIO-1 task-1] kSxirYmFRfWbfx32bZlatw DEBUG com.networknt.schema.TypeValidator debug - validate( "b2063980-0377-440d-8644-c372f6d3b7da", "b2063980-0377-440d-8644-c372f6d3b7da", clientId) +16:40:09.898 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.898 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.898 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG com.networknt.schema.TypeValidator debug - validate( "86c02587-2d57-4fcc-86a3-773da7f0639d", {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG com.networknt.schema.TypeValidator debug - validate( "3b40f5cb-e982-4fdf-b74c-98040e01", {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3b40f5cb-e982-4fdf-b74c-98040e01","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.899 [XNIO-1 task-1] WmN3SXQ9TxK7Ce3dqxKOWg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.901 [XNIO-1 task-1] VIN2wvr-RNa-8XbzutcM1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.902 [XNIO-1 task-1] VIN2wvr-RNa-8XbzutcM1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.902 [XNIO-1 task-1] VIN2wvr-RNa-8XbzutcM1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.902 [XNIO-1 task-1] VIN2wvr-RNa-8XbzutcM1g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.910 [XNIO-1 task-1] kZ-eLP2UQSChgKORcOedcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2063980-0377-440d-8644-c372f6d3b7da, base path is set to: null +16:40:09.910 [XNIO-1 task-1] kZ-eLP2UQSChgKORcOedcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.910 [XNIO-1 task-1] kZ-eLP2UQSChgKORcOedcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.910 [XNIO-1 task-1] kZ-eLP2UQSChgKORcOedcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2063980-0377-440d-8644-c372f6d3b7da, base path is set to: null +16:40:09.910 [XNIO-1 task-1] kZ-eLP2UQSChgKORcOedcg DEBUG com.networknt.schema.TypeValidator debug - validate( "b2063980-0377-440d-8644-c372f6d3b7da", "b2063980-0377-440d-8644-c372f6d3b7da", clientId) +16:40:09.912 [XNIO-1 task-1] 3k8ejp0DRzuqHQrMdSs8Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.912 [XNIO-1 task-1] 3k8ejp0DRzuqHQrMdSs8Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.913 [XNIO-1 task-1] 3k8ejp0DRzuqHQrMdSs8Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.913 [XNIO-1 task-1] 3k8ejp0DRzuqHQrMdSs8Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.923 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.923 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.923 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "86c02587-2d57-4fcc-86a3-773da7f0639d", {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "373dc504-41a4-4418-8a75-19722ef3", {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"373dc504-41a4-4418-8a75-19722ef3","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.924 [XNIO-1 task-1] CxXHWxYFTtenIoigAr7Qng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.926 [XNIO-1 task-1] 2dm52IxcRIyQ6P8QGvLuWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2063980-0377-440d-8644-c372f6d3b7da, base path is set to: null +16:40:09.926 [XNIO-1 task-1] 2dm52IxcRIyQ6P8QGvLuWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.926 [XNIO-1 task-1] 2dm52IxcRIyQ6P8QGvLuWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.927 [XNIO-1 task-1] 2dm52IxcRIyQ6P8QGvLuWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b2063980-0377-440d-8644-c372f6d3b7da, base path is set to: null +16:40:09.927 [XNIO-1 task-1] 2dm52IxcRIyQ6P8QGvLuWg DEBUG com.networknt.schema.TypeValidator debug - validate( "b2063980-0377-440d-8644-c372f6d3b7da", "b2063980-0377-440d-8644-c372f6d3b7da", clientId) +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "86c02587-2d57-4fcc-86a3-773da7f0639d", {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:09.936 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +Jun 28, 2024 4:40:14 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +16:40:09.937 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"deb15944-f58d-4fef-97a4-544b2052","clientDesc":"86c02587-2d57-4fcc-86a3-773da7f0639d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.937 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:125) +java.lang.NullPointerException: Null key is not allowed! +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:212) + + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:09.937 [XNIO-1 task-1] niy_Co7YTw2pNBqQmnk7Ng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:09.939 [XNIO-1 task-1] x7dVkXAbQq6pjI7lZC_F6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6, base path is set to: null +16:40:09.939 [XNIO-1 task-1] x7dVkXAbQq6pjI7lZC_F6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.939 [XNIO-1 task-1] x7dVkXAbQq6pjI7lZC_F6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.939 [XNIO-1 task-1] x7dVkXAbQq6pjI7lZC_F6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6, base path is set to: null +16:40:09.939 [XNIO-1 task-1] x7dVkXAbQq6pjI7lZC_F6w DEBUG com.networknt.schema.TypeValidator debug - validate( "16c4145a-84a1-4837-b0ea-dd037f7cb0d6", "16c4145a-84a1-4837-b0ea-dd037f7cb0d6", clientId) +16:40:09.943 [XNIO-1 task-1] z8vKnF7KQou0UwRFLzOQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6 +16:40:09.943 [XNIO-1 task-1] z8vKnF7KQou0UwRFLzOQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.943 [XNIO-1 task-1] z8vKnF7KQou0UwRFLzOQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.943 [XNIO-1 task-1] z8vKnF7KQou0UwRFLzOQeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6 +16:40:09.948 [XNIO-1 task-1] X1djZP4gSLCeRgDJUBR6bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.948 [XNIO-1 task-1] X1djZP4gSLCeRgDJUBR6bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.948 [XNIO-1 task-1] X1djZP4gSLCeRgDJUBR6bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:09.955 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:09.956 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:09.965 [XNIO-1 task-1] SDe6EWQ4RuavOpqKbt7OTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e8a3a7a-2ce3-401c-9987-48ab82e303fc +16:40:09.965 [XNIO-1 task-1] SDe6EWQ4RuavOpqKbt7OTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.965 [XNIO-1 task-1] SDe6EWQ4RuavOpqKbt7OTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.965 [XNIO-1 task-1] SDe6EWQ4RuavOpqKbt7OTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e8a3a7a-2ce3-401c-9987-48ab82e303fc +16:40:09.971 [XNIO-1 task-1] uKf5K6guSDefFSWwZFToYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6, base path is set to: null +16:40:09.971 [XNIO-1 task-1] uKf5K6guSDefFSWwZFToYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.971 [XNIO-1 task-1] uKf5K6guSDefFSWwZFToYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.971 [XNIO-1 task-1] uKf5K6guSDefFSWwZFToYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/16c4145a-84a1-4837-b0ea-dd037f7cb0d6, base path is set to: null +16:40:09.972 [XNIO-1 task-1] uKf5K6guSDefFSWwZFToYg DEBUG com.networknt.schema.TypeValidator debug - validate( "16c4145a-84a1-4837-b0ea-dd037f7cb0d6", "16c4145a-84a1-4837-b0ea-dd037f7cb0d6", clientId) +16:40:09.983 [XNIO-1 task-1] gqeOsY85RPSMOyqUXIdE0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/54f429b4-5973-4547-bd56-5a063499078a +16:40:09.983 [XNIO-1 task-1] gqeOsY85RPSMOyqUXIdE0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.983 [XNIO-1 task-1] gqeOsY85RPSMOyqUXIdE0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.983 [XNIO-1 task-1] gqeOsY85RPSMOyqUXIdE0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/54f429b4-5973-4547-bd56-5a063499078a +16:40:09.990 [XNIO-1 task-1] O-Un0jRJQQuRwMs9Q71gSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c285def-f922-4a73-afba-e6b4de807cae, base path is set to: null +16:40:09.990 [XNIO-1 task-1] O-Un0jRJQQuRwMs9Q71gSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:09.990 [XNIO-1 task-1] O-Un0jRJQQuRwMs9Q71gSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:09.990 [XNIO-1 task-1] O-Un0jRJQQuRwMs9Q71gSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9c285def-f922-4a73-afba-e6b4de807cae, base path is set to: null +16:40:09.990 [XNIO-1 task-1] O-Un0jRJQQuRwMs9Q71gSw DEBUG com.networknt.schema.TypeValidator debug - validate( "9c285def-f922-4a73-afba-e6b4de807cae", "9c285def-f922-4a73-afba-e6b4de807cae", clientId) +16:40:09.996 [XNIO-1 task-1] CLBlyOHFSli5-4CdkcnPJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39a8418a-0845-48c3-93b1-93fba1a39f45 +16:40:09.996 [XNIO-1 task-1] CLBlyOHFSli5-4CdkcnPJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:09.996 [XNIO-1 task-1] CLBlyOHFSli5-4CdkcnPJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:09.996 [XNIO-1 task-1] CLBlyOHFSli5-4CdkcnPJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/39a8418a-0845-48c3-93b1-93fba1a39f45 +16:40:10.006 [XNIO-1 task-1] b1gAskqASH-A8xep1Df4sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.006 [XNIO-1 task-1] b1gAskqASH-A8xep1Df4sg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.006 [XNIO-1 task-1] b1gAskqASH-A8xep1Df4sg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.007 [XNIO-1 task-1] b1gAskqASH-A8xep1Df4sg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.016 [XNIO-1 task-1] 55BHsoYAT-2pXiySTYGYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.016 [XNIO-1 task-1] 55BHsoYAT-2pXiySTYGYPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.016 [XNIO-1 task-1] 55BHsoYAT-2pXiySTYGYPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.021 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29214e8f +16:40:10.022 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29214e8f +16:40:10.028 [XNIO-1 task-1] fTHoujQgS-C6OlCIH9k4DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.028 [XNIO-1 task-1] fTHoujQgS-C6OlCIH9k4DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.029 [XNIO-1 task-1] fTHoujQgS-C6OlCIH9k4DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.043 [XNIO-1 task-1] 8cdHJN1rROSes7kY9OHZ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f209be97-0a74-401c-9c5a-f32a5a1cc5d6 +16:40:10.043 [XNIO-1 task-1] 8cdHJN1rROSes7kY9OHZ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.044 [XNIO-1 task-1] 8cdHJN1rROSes7kY9OHZ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.044 [XNIO-1 task-1] 8cdHJN1rROSes7kY9OHZ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f209be97-0a74-401c-9c5a-f32a5a1cc5d6 +16:40:10.052 [XNIO-1 task-1] pMSPDTZfQc2orxH73K4HXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/40469eee-c8a7-4c3c-abde-1b765cfc3800, base path is set to: null +16:40:10.052 [XNIO-1 task-1] pMSPDTZfQc2orxH73K4HXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.052 [XNIO-1 task-1] pMSPDTZfQc2orxH73K4HXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.053 [XNIO-1 task-1] pMSPDTZfQc2orxH73K4HXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/40469eee-c8a7-4c3c-abde-1b765cfc3800, base path is set to: null +16:40:10.053 [XNIO-1 task-1] pMSPDTZfQc2orxH73K4HXg DEBUG com.networknt.schema.TypeValidator debug - validate( "40469eee-c8a7-4c3c-abde-1b765cfc3800", "40469eee-c8a7-4c3c-abde-1b765cfc3800", clientId) +16:40:10.057 [XNIO-1 task-1] zfjsC91iRu2dZR-jciAVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/40469eee-c8a7-4c3c-abde-1b765cfc3800 +16:40:10.057 [XNIO-1 task-1] zfjsC91iRu2dZR-jciAVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.057 [XNIO-1 task-1] zfjsC91iRu2dZR-jciAVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.057 [XNIO-1 task-1] zfjsC91iRu2dZR-jciAVwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/40469eee-c8a7-4c3c-abde-1b765cfc3800 +16:40:10.064 [XNIO-1 task-1] NJXRQ93ZQv6HBF1buIRclQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.064 [XNIO-1 task-1] NJXRQ93ZQv6HBF1buIRclQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.064 [XNIO-1 task-1] NJXRQ93ZQv6HBF1buIRclQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.064 [XNIO-1 task-1] NJXRQ93ZQv6HBF1buIRclQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.067 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:01a1b023 +16:40:10.071 [XNIO-1 task-1] cm28zPdTSUmLg4cShccgEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.071 [XNIO-1 task-1] cm28zPdTSUmLg4cShccgEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.071 [XNIO-1 task-1] cm28zPdTSUmLg4cShccgEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.072 [XNIO-1 task-1] cm28zPdTSUmLg4cShccgEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.082 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f13be79c +16:40:10.085 [XNIO-1 task-1] mUisLM7ERNOV96rEtbLQuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.086 [XNIO-1 task-1] mUisLM7ERNOV96rEtbLQuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.086 [XNIO-1 task-1] mUisLM7ERNOV96rEtbLQuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.098 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f25174a0 +16:40:10.098 [XNIO-1 task-1] PlimsAiCRLWZWIlYsQ72Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dc08d265-4659-463a-960c-559ea99c81ec +16:40:10.098 [XNIO-1 task-1] PlimsAiCRLWZWIlYsQ72Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.099 [XNIO-1 task-1] PlimsAiCRLWZWIlYsQ72Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.099 [XNIO-1 task-1] PlimsAiCRLWZWIlYsQ72Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dc08d265-4659-463a-960c-559ea99c81ec +16:40:10.099 [XNIO-1 task-1] PlimsAiCRLWZWIlYsQ72Wg DEBUG com.networknt.schema.TypeValidator debug - validate( "dc08d265-4659-463a-960c-559ea99c81ec", "dc08d265-4659-463a-960c-559ea99c81ec", clientId) +16:40:10.108 [XNIO-1 task-1] dja1tOvkTLe8H0npQ3ahYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.108 [XNIO-1 task-1] dja1tOvkTLe8H0npQ3ahYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.108 [XNIO-1 task-1] dja1tOvkTLe8H0npQ3ahYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.113 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:105b8027-ee6e-429f-967e-0731bb9975c6 +16:40:10.114 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:105b8027-ee6e-429f-967e-0731bb9975c6 +16:40:10.124 [XNIO-1 task-1] 6SylCU0aR0iP1U8j5PrDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/105b8027-ee6e-429f-967e-0731bb9975c6 +16:40:10.124 [XNIO-1 task-1] 6SylCU0aR0iP1U8j5PrDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.124 [XNIO-1 task-1] 6SylCU0aR0iP1U8j5PrDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.124 [XNIO-1 task-1] 6SylCU0aR0iP1U8j5PrDXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/105b8027-ee6e-429f-967e-0731bb9975c6 +16:40:10.125 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:105b8027-ee6e-429f-967e-0731bb9975c6 +16:40:10.128 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:10.134 [XNIO-1 task-1] pWGoJ24yRGOjVyDcoNc6dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.134 [XNIO-1 task-1] pWGoJ24yRGOjVyDcoNc6dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.134 [XNIO-1 task-1] pWGoJ24yRGOjVyDcoNc6dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.134 [XNIO-1 task-1] pWGoJ24yRGOjVyDcoNc6dA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.141 [XNIO-1 task-1] _3RiRQ9gSM-9nAJOncmOUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.141 [XNIO-1 task-1] _3RiRQ9gSM-9nAJOncmOUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.141 [XNIO-1 task-1] _3RiRQ9gSM-9nAJOncmOUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.149 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:10.154 [XNIO-1 task-1] vA-XxUf_T4SSQnhja4HQIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2310283c-bf0e-4942-991f-fce53903c5f9 +16:40:10.154 [XNIO-1 task-1] vA-XxUf_T4SSQnhja4HQIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.154 [XNIO-1 task-1] vA-XxUf_T4SSQnhja4HQIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.155 [XNIO-1 task-1] vA-XxUf_T4SSQnhja4HQIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2310283c-bf0e-4942-991f-fce53903c5f9 +16:40:10.159 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.159 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.159 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"666e3b54-0979-4a97-bb95-52282c87","clientDesc":"8cb48978-0d67-41af-9770-2696b03294ff","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:10.160 [XNIO-1 task-1] QXmEs33lTjWDMwh4ijck_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:10.162 [XNIO-1 task-1] wp1u8enbQyeLDLUEZymSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.162 [XNIO-1 task-1] wp1u8enbQyeLDLUEZymSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.162 [XNIO-1 task-1] wp1u8enbQyeLDLUEZymSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.163 [XNIO-1 task-1] wp1u8enbQyeLDLUEZymSoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.169 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:10.169 [XNIO-1 task-1] kVvTcglrRmm_XMIsc5U_hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2310283c-bf0e-4942-991f-fce53903c5f9 +16:40:10.169 [XNIO-1 task-1] kVvTcglrRmm_XMIsc5U_hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.169 [XNIO-1 task-1] kVvTcglrRmm_XMIsc5U_hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.169 [XNIO-1 task-1] kVvTcglrRmm_XMIsc5U_hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2310283c-bf0e-4942-991f-fce53903c5f9 +16:40:10.178 [XNIO-1 task-1] 2FnSuU7kTSq0dIIVWlwMJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.178 [XNIO-1 task-1] 2FnSuU7kTSq0dIIVWlwMJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.178 [XNIO-1 task-1] 2FnSuU7kTSq0dIIVWlwMJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.190 [XNIO-1 task-1] 0u9XpbDQTUeKIwLxl5GNqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28549575-5472-44d3-8477-e3e6c0c3e51f, base path is set to: null +16:40:10.190 [XNIO-1 task-1] 0u9XpbDQTUeKIwLxl5GNqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.190 [XNIO-1 task-1] 0u9XpbDQTUeKIwLxl5GNqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.191 [XNIO-1 task-1] 0u9XpbDQTUeKIwLxl5GNqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28549575-5472-44d3-8477-e3e6c0c3e51f, base path is set to: null +16:40:10.191 [XNIO-1 task-1] 0u9XpbDQTUeKIwLxl5GNqw DEBUG com.networknt.schema.TypeValidator debug - validate( "28549575-5472-44d3-8477-e3e6c0c3e51f", "28549575-5472-44d3-8477-e3e6c0c3e51f", clientId) +16:40:10.196 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.196 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG com.networknt.schema.TypeValidator debug - validate( "e1ba7efc-2c54-45ae-af4c-93c12d0b67ab", {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG com.networknt.schema.TypeValidator debug - validate( "74bb9709-be6b-42f6-9bf9-90d9a7bb", {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.197 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"74bb9709-be6b-42f6-9bf9-90d9a7bb","clientDesc":"e1ba7efc-2c54-45ae-af4c-93c12d0b67ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.198 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:10.198 [XNIO-1 task-1] vCX-U0ZRSHWYMnNrf_bX5A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:10.201 [XNIO-1 task-1] x0uqcznWSdmdGiRGpiWFaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28549575-5472-44d3-8477-e3e6c0c3e51f, base path is set to: null +16:40:10.201 [XNIO-1 task-1] x0uqcznWSdmdGiRGpiWFaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.201 [XNIO-1 task-1] x0uqcznWSdmdGiRGpiWFaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.201 [XNIO-1 task-1] x0uqcznWSdmdGiRGpiWFaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/28549575-5472-44d3-8477-e3e6c0c3e51f, base path is set to: null +16:40:10.202 [XNIO-1 task-1] x0uqcznWSdmdGiRGpiWFaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "28549575-5472-44d3-8477-e3e6c0c3e51f", "28549575-5472-44d3-8477-e3e6c0c3e51f", clientId) +16:40:10.206 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29214e8f +16:40:10.208 [XNIO-1 task-1] 8i5tCSNnSZaKIRfIbJGLXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.208 [XNIO-1 task-1] 8i5tCSNnSZaKIRfIbJGLXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.208 [XNIO-1 task-1] 8i5tCSNnSZaKIRfIbJGLXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.213 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f25174a0 +16:40:10.224 [XNIO-1 task-1] cSCaZBZqRu2-8aR2XF7gAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.224 [XNIO-1 task-1] cSCaZBZqRu2-8aR2XF7gAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.224 [XNIO-1 task-1] cSCaZBZqRu2-8aR2XF7gAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.236 [XNIO-1 task-1] g2yXUweuSWGUTtUsfUT_xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c066207e-0b71-44f6-b410-4b22e9e86342 +16:40:10.236 [XNIO-1 task-1] g2yXUweuSWGUTtUsfUT_xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.236 [XNIO-1 task-1] g2yXUweuSWGUTtUsfUT_xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.236 [XNIO-1 task-1] g2yXUweuSWGUTtUsfUT_xQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c066207e-0b71-44f6-b410-4b22e9e86342 +16:40:10.240 [XNIO-1 task-1] kLBDZAaDTWOnQyy2BAW03w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c066207e-0b71-44f6-b410-4b22e9e86342, base path is set to: null +16:40:10.241 [XNIO-1 task-1] kLBDZAaDTWOnQyy2BAW03w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.241 [XNIO-1 task-1] kLBDZAaDTWOnQyy2BAW03w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.241 [XNIO-1 task-1] kLBDZAaDTWOnQyy2BAW03w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c066207e-0b71-44f6-b410-4b22e9e86342, base path is set to: null +16:40:10.241 [XNIO-1 task-1] kLBDZAaDTWOnQyy2BAW03w DEBUG com.networknt.schema.TypeValidator debug - validate( "c066207e-0b71-44f6-b410-4b22e9e86342", "c066207e-0b71-44f6-b410-4b22e9e86342", clientId) +16:40:10.247 [XNIO-1 task-1] yExAAqLMQI6DnHbqlTwrtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.247 [XNIO-1 task-1] yExAAqLMQI6DnHbqlTwrtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.248 [XNIO-1 task-1] yExAAqLMQI6DnHbqlTwrtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.248 [XNIO-1 task-1] yExAAqLMQI6DnHbqlTwrtw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.255 [XNIO-1 task-1] wA4xtGpCRTm_o9nWfOxGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.255 [XNIO-1 task-1] wA4xtGpCRTm_o9nWfOxGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.255 [XNIO-1 task-1] wA4xtGpCRTm_o9nWfOxGUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.262 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:898d0a35 +16:40:10.267 [XNIO-1 task-1] Tgi4XCz8TiyJ125affneug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3, base path is set to: null +16:40:10.267 [XNIO-1 task-1] Tgi4XCz8TiyJ125affneug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.268 [XNIO-1 task-1] Tgi4XCz8TiyJ125affneug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.268 [XNIO-1 task-1] Tgi4XCz8TiyJ125affneug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3, base path is set to: null +16:40:10.268 [XNIO-1 task-1] Tgi4XCz8TiyJ125affneug DEBUG com.networknt.schema.TypeValidator debug - validate( "79c91724-77a2-4361-ac33-fc8c68cc09f3", "79c91724-77a2-4361-ac33-fc8c68cc09f3", clientId) +16:40:10.294 [XNIO-1 task-1] fPddqBUOSdGhxo0HF9k8LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/da9286a8-b119-4194-868b-0c4212b3978e +16:40:10.294 [XNIO-1 task-1] fPddqBUOSdGhxo0HF9k8LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.294 [XNIO-1 task-1] fPddqBUOSdGhxo0HF9k8LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.294 [XNIO-1 task-1] fPddqBUOSdGhxo0HF9k8LQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/da9286a8-b119-4194-868b-0c4212b3978e +16:40:10.299 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:898d0a35 +16:40:10.302 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.302 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.302 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d6eb264-be7d-4798-974a-3e89ccaa2474", {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG com.networknt.schema.TypeValidator debug - validate( "33364dbf-3b03-404f-bdad-47b81e6a", {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"33364dbf-3b03-404f-bdad-47b81e6a","clientDesc":"1d6eb264-be7d-4798-974a-3e89ccaa2474","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.303 [XNIO-1 task-1] 95dmBqkQTAGJpK5p-Jtpbg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) +SEVERE: [172.24.0.5]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +16:40:10.305 [XNIO-1 task-1] waiLAasMSO2XI80mvFdrHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3, base path is set to: null +16:40:10.305 [XNIO-1 task-1] waiLAasMSO2XI80mvFdrHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:40:10.305 [XNIO-1 task-1] waiLAasMSO2XI80mvFdrHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3 +16:40:10.305 [XNIO-1 task-1] waiLAasMSO2XI80mvFdrHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "79c91724-77a2-4361-ac33-fc8c68cc09f3", "79c91724-77a2-4361-ac33-fc8c68cc09f3", clientId) +16:40:10.308 [XNIO-1 task-1] CxnBfSRwS4yUFhDapXt1qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3, base path is set to: null + +16:40:10.308 [XNIO-1 task-1] CxnBfSRwS4yUFhDapXt1qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3 +16:40:10.308 [XNIO-1 task-1] CxnBfSRwS4yUFhDapXt1qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.308 [XNIO-1 task-1] CxnBfSRwS4yUFhDapXt1qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.308 [XNIO-1 task-1] CxnBfSRwS4yUFhDapXt1qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3 +16:40:10.310 [XNIO-1 task-1] tl0NcerfSviL53ZzEuiGVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3, base path is set to: null +16:40:10.310 [XNIO-1 task-1] tl0NcerfSviL53ZzEuiGVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.310 [XNIO-1 task-1] tl0NcerfSviL53ZzEuiGVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.310 [XNIO-1 task-1] tl0NcerfSviL53ZzEuiGVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79c91724-77a2-4361-ac33-fc8c68cc09f3, base path is set to: null +16:40:10.310 [XNIO-1 task-1] tl0NcerfSviL53ZzEuiGVg DEBUG com.networknt.schema.TypeValidator debug - validate( "79c91724-77a2-4361-ac33-fc8c68cc09f3", "79c91724-77a2-4361-ac33-fc8c68cc09f3", clientId) +16:40:10.316 [XNIO-1 task-1] F-6-9En-TneJbcG6eh9pVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.316 [XNIO-1 task-1] F-6-9En-TneJbcG6eh9pVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.316 [XNIO-1 task-1] F-6-9En-TneJbcG6eh9pVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.316 [XNIO-1 task-1] F-6-9En-TneJbcG6eh9pVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.319 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:10.322 [XNIO-1 task-1] 2L-PF_KyQPKmbPgopn_Wvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.322 [XNIO-1 task-1] 2L-PF_KyQPKmbPgopn_Wvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.322 [XNIO-1 task-1] 2L-PF_KyQPKmbPgopn_Wvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.334 [XNIO-1 task-1] vjIpfqGQTXyYBSybQ_zn_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31af851b-a9a2-41ab-bca8-ab50ac85f1a4 +16:40:10.334 [XNIO-1 task-1] vjIpfqGQTXyYBSybQ_zn_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.334 [XNIO-1 task-1] vjIpfqGQTXyYBSybQ_zn_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.334 [XNIO-1 task-1] vjIpfqGQTXyYBSybQ_zn_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31af851b-a9a2-41ab-bca8-ab50ac85f1a4 +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:10.336 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:10.337 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.337 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.337 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d58c3761-33c2-4fb7-9e35-49555269","clientDesc":"e42eb650-f7aa-4ce1-a3c4-bc5f035c8873","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:10.337 [XNIO-1 task-1] i0F7Z75tQvW8UvtMrzSMKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:10.339 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:10.339 [XNIO-1 task-1] On_SbQ1ARA61a-EJQZtCpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.339 [XNIO-1 task-1] On_SbQ1ARA61a-EJQZtCpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.339 [XNIO-1 task-1] On_SbQ1ARA61a-EJQZtCpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.341 [XNIO-1 task-1] On_SbQ1ARA61a-EJQZtCpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.347 [XNIO-1 task-1] nWE1p54ZSVKSocfr_ZSRcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31af851b-a9a2-41ab-bca8-ab50ac85f1a4 +16:40:10.347 [XNIO-1 task-1] nWE1p54ZSVKSocfr_ZSRcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.347 [XNIO-1 task-1] nWE1p54ZSVKSocfr_ZSRcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.347 [XNIO-1 task-1] nWE1p54ZSVKSocfr_ZSRcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/31af851b-a9a2-41ab-bca8-ab50ac85f1a4 +16:40:10.350 [XNIO-1 task-1] v98ceK9xQZupjnadqSeT8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/31af851b-a9a2-41ab-bca8-ab50ac85f1a4, base path is set to: null +16:40:10.350 [XNIO-1 task-1] v98ceK9xQZupjnadqSeT8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.350 [XNIO-1 task-1] v98ceK9xQZupjnadqSeT8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.350 [XNIO-1 task-1] v98ceK9xQZupjnadqSeT8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/31af851b-a9a2-41ab-bca8-ab50ac85f1a4, base path is set to: null +16:40:10.350 [XNIO-1 task-1] v98ceK9xQZupjnadqSeT8w DEBUG com.networknt.schema.TypeValidator debug - validate( "31af851b-a9a2-41ab-bca8-ab50ac85f1a4", "31af851b-a9a2-41ab-bca8-ab50ac85f1a4", clientId) +16:40:10.356 [XNIO-1 task-1] bdglvDV5SOy0MiQlvcEg7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.356 [XNIO-1 task-1] bdglvDV5SOy0MiQlvcEg7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.356 [XNIO-1 task-1] bdglvDV5SOy0MiQlvcEg7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.372 [XNIO-1 task-1] aEiJ3q31RECsG7OAdjXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f3743b8-d50e-42ef-8a57-f6ad20bc2bf8 +16:40:10.372 [XNIO-1 task-1] aEiJ3q31RECsG7OAdjXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.372 [XNIO-1 task-1] aEiJ3q31RECsG7OAdjXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.372 [XNIO-1 task-1] aEiJ3q31RECsG7OAdjXFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3f3743b8-d50e-42ef-8a57-f6ad20bc2bf8 +16:40:10.379 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f25174a0 +16:40:10.382 [XNIO-1 task-1] 0HpnoXZPRn-ZNXLj14_sbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.383 [XNIO-1 task-1] 0HpnoXZPRn-ZNXLj14_sbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.383 [XNIO-1 task-1] 0HpnoXZPRn-ZNXLj14_sbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.387 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:29214e8f +16:40:10.397 [XNIO-1 task-1] tjwEB4wBQ7Ol0EjPe62dmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.397 [XNIO-1 task-1] tjwEB4wBQ7Ol0EjPe62dmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.397 [XNIO-1 task-1] tjwEB4wBQ7Ol0EjPe62dmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.397 [XNIO-1 task-1] tjwEB4wBQ7Ol0EjPe62dmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.398 [XNIO-1 task-1] tjwEB4wBQ7Ol0EjPe62dmw DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", clientId) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "a13646dd-3870-46a9-84e4-c26149f46146", {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "4bc2b258-78a7-4f2e-8f25-430df358", {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.400 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4bc2b258-78a7-4f2e-8f25-430df358","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.401 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:10.401 [XNIO-1 task-1] K7srGaScSyGaJ41Ji_8yGg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:10.401 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f13be79c +16:40:10.403 [XNIO-1 task-1] I5WZznunS_O2S--rnONu7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.403 [XNIO-1 task-1] I5WZznunS_O2S--rnONu7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.403 [XNIO-1 task-1] I5WZznunS_O2S--rnONu7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.403 [XNIO-1 task-1] I5WZznunS_O2S--rnONu7g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.412 [XNIO-1 task-1] Q0N-2nb_QJOMazIvm7EgCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.412 [XNIO-1 task-1] Q0N-2nb_QJOMazIvm7EgCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.412 [XNIO-1 task-1] Q0N-2nb_QJOMazIvm7EgCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.412 [XNIO-1 task-1] Q0N-2nb_QJOMazIvm7EgCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.412 [XNIO-1 task-1] Q0N-2nb_QJOMazIvm7EgCg DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", clientId) +16:40:10.416 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.416 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.416 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.416 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.416 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:10.416 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG com.networknt.schema.TypeValidator debug - validate( "a13646dd-3870-46a9-84e4-c26149f46146", {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:10.417 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:10.417 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:10.417 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG com.networknt.schema.TypeValidator debug - validate( "20a27914-ff8f-4d3e-989b-42db5819", {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:10.417 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.417 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"20a27914-ff8f-4d3e-989b-42db5819","clientDesc":"a13646dd-3870-46a9-84e4-c26149f46146","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.417 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:10.417 [XNIO-1 task-1] MGAW7ishTQ61CVYUkm0tBw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:10.420 [XNIO-1 task-1] HB39HaUcTyePP5bDOSeMng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.420 [XNIO-1 task-1] HB39HaUcTyePP5bDOSeMng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.420 [XNIO-1 task-1] HB39HaUcTyePP5bDOSeMng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.421 [XNIO-1 task-1] HB39HaUcTyePP5bDOSeMng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.421 [XNIO-1 task-1] HB39HaUcTyePP5bDOSeMng DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", clientId) +16:40:10.422 [XNIO-1 task-1] p8qWZM1CTcGvMLBiERSLYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9 +16:40:10.423 [XNIO-1 task-1] p8qWZM1CTcGvMLBiERSLYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.423 [XNIO-1 task-1] p8qWZM1CTcGvMLBiERSLYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.423 [XNIO-1 task-1] p8qWZM1CTcGvMLBiERSLYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9 +16:40:10.425 [XNIO-1 task-1] ck1mtqAOQIqUPMr848h65w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.425 [XNIO-1 task-1] ck1mtqAOQIqUPMr848h65w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.425 [XNIO-1 task-1] ck1mtqAOQIqUPMr848h65w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:10.425 [XNIO-1 task-1] ck1mtqAOQIqUPMr848h65w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e2a25c67-a2f0-457a-ba26-90c3231f5fa9, base path is set to: null +16:40:10.425 [XNIO-1 task-1] ck1mtqAOQIqUPMr848h65w DEBUG com.networknt.schema.TypeValidator debug - validate( "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", "e2a25c67-a2f0-457a-ba26-90c3231f5fa9", clientId) +16:40:10.429 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:10.434 [XNIO-1 task-1] w_mYszKJTa6HDu3SIcBfdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.435 [XNIO-1 task-1] w_mYszKJTa6HDu3SIcBfdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.435 [XNIO-1 task-1] w_mYszKJTa6HDu3SIcBfdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.439 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f13be79c +16:40:10.451 [XNIO-1 task-1] AUjXhKTmTpya383_hmdERA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c8cf5a8-809a-4984-9864-eaeb50c24c03 +16:40:10.451 [XNIO-1 task-1] AUjXhKTmTpya383_hmdERA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.451 [XNIO-1 task-1] AUjXhKTmTpya383_hmdERA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.451 [XNIO-1 task-1] AUjXhKTmTpya383_hmdERA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0c8cf5a8-809a-4984-9864-eaeb50c24c03 +16:40:10.457 [XNIO-1 task-1] W2PzFEnwQXu7BUEYeza2ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.458 [XNIO-1 task-1] W2PzFEnwQXu7BUEYeza2ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.458 [XNIO-1 task-1] W2PzFEnwQXu7BUEYeza2ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.458 [XNIO-1 task-1] W2PzFEnwQXu7BUEYeza2ug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.464 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f13be79c +16:40:10.465 [XNIO-1 task-1] YLKlXqCQTF2h6FXiTfWTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.467 [XNIO-1 task-1] YLKlXqCQTF2h6FXiTfWTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.467 [XNIO-1 task-1] YLKlXqCQTF2h6FXiTfWTYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.467 [XNIO-1 task-1] YLKlXqCQTF2h6FXiTfWTYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.476 [XNIO-1 task-1] -O9NNdsRRSmrnIN9qi_1zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.476 [XNIO-1 task-1] -O9NNdsRRSmrnIN9qi_1zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.476 [XNIO-1 task-1] -O9NNdsRRSmrnIN9qi_1zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.493 [XNIO-1 task-1] vJSXOi1-Rh-uRBePAN3kHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.493 [XNIO-1 task-1] vJSXOi1-Rh-uRBePAN3kHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.493 [XNIO-1 task-1] vJSXOi1-Rh-uRBePAN3kHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.493 [XNIO-1 task-1] vJSXOi1-Rh-uRBePAN3kHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.506 [XNIO-1 task-1] J1HkBQ68QnaRICHGkG5aCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/91ff66e3-f145-4b4b-8ca9-006884252d38 +16:40:10.507 [XNIO-1 task-1] J1HkBQ68QnaRICHGkG5aCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:10.507 [XNIO-1 task-1] J1HkBQ68QnaRICHGkG5aCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:10.507 [XNIO-1 task-1] J1HkBQ68QnaRICHGkG5aCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/91ff66e3-f145-4b4b-8ca9-006884252d38 +16:40:10.514 [XNIO-1 task-1] 1Q6WIRDlS1yLqcLw0sChGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:10.514 [XNIO-1 task-1] 1Q6WIRDlS1yLqcLw0sChGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:10.514 [XNIO-1 task-1] 1Q6WIRDlS1yLqcLw0sChGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null diff --git a/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-code-1.log b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..59685f3 --- /dev/null +++ b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-code-1.log @@ -0,0 +1,1644 @@ +16:40:10.718 [XNIO-1 task-3] IQ1QSuamQK2uh30Wgc--aA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:10.721 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:672b83ce +16:40:10.722 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:10.722 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.722 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.722 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.723 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8bee116c-8089-4623-acc8-28f80ebc571c +16:40:10.723 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:10.723 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:10.723 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:10.723 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:10.723 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:10.726 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0af8eb78 +16:40:10.726 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0af8eb78 +16:40:10.728 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:10.728 [XNIO-1 task-3] Iw9ak60FRwS1v_5Gd0VE_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:10.763 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:08e33edc-05ae-4009-a54f-6248fa12455c +16:40:10.764 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:08e33edc-05ae-4009-a54f-6248fa12455c +16:40:10.836 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:4ee942b9 +16:40:10.943 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:10.944 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:10.945 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:10.945 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:10.949 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:0af8eb78 +16:40:10.949 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0af8eb78 +16:40:10.950 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:10.950 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:10.952 [XNIO-1 task-3] mu9FcVNoS6SzKzJB1PNw0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bdihbcFATFeZ-t_PTD3AJg +16:40:10.954 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5 +16:40:10.960 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:10.969 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:8e7aaf7a +16:40:10.978 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.978 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.978 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.978 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:10.978 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:10.979 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:10.979 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:10.979 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:10.984 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:10.984 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:10.984 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:10.985 [XNIO-1 task-3] zNYXifnvRuGv85TWD3orGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZWUL5oQsQe6p0ZrobXRoog +16:40:10.988 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.988 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.988 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:10.989 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:10.989 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:10.989 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:10.989 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:10.989 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:10.995 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:10.995 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:10.996 [XNIO-1 task-3] GoOvdjb-S3KJPaQuGNqqQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rAo3MCo4QDiSWXMT2JiO5Q +16:40:11.013 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:aba1ef11-306e-4ad2-8571-89ec4cead159 +16:40:11.030 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.030 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:11.031 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.031 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:11.031 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:11.031 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:11.031 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:11.031 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:11.031 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:11.037 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.037 [XNIO-1 task-3] 0sFhRWVLRbmQ0_eHbu5H2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:11.041 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.042 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:11.042 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.042 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:11.042 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:11.042 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:11.042 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:11.042 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:11.043 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:11.048 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.048 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:11.049 [XNIO-1 task-3] wZF2NLDkQ1m6pCMS-AU-6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=114Kwo8eRtmNDy9yhJhu8A +16:40:11.050 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d5f7b4eb +16:40:11.054 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.054 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.054 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.055 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.055 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.055 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.055 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.055 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.059 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e7aaf7a +16:40:11.060 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.061 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.063 [XNIO-1 task-3] GptJceEFTxu9Q_E_xddA0w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=WnQQwXM6RMGMZGiQ5nYDaw +16:40:11.068 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:672b83ce +16:40:11.092 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d5f7b4eb +16:40:11.109 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:08e33edc-05ae-4009-a54f-6248fa12455c +16:40:11.112 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.112 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.112 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.112 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.113 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.113 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.113 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.113 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.119 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.119 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.119 [XNIO-1 task-3] 7Q3_QH7mQBWQaasezoV87A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=e3XACZNEQm6IOcMECWySlw +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.123 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.129 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.129 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.131 [XNIO-1 task-3] pjkHV0U_SfuxGjVo2dMaow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=06nTrA59Sl23LjUFUTdSVQ +16:40:11.134 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.135 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.135 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.135 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.135 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.135 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.135 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.135 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.140 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.140 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.141 [XNIO-1 task-3] QotFL0pSQE6woion1Z2BpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3ELxrGwfSMS8iLbUV_7oBw +16:40:11.145 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:d3d8abe8-9c54-4bad-9dc3-406c2bf952bf +16:40:11.166 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e889c103 +16:40:11.168 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e889c103 +16:40:11.172 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.172 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.172 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.173 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.173 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.174 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.175 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.175 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.180 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.180 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.181 [XNIO-1 task-3] LuMRNR4RQMOaX935Ts1LZA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_P7Ti_lsTfi0oikNtJRCZA +16:40:11.195 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e889c103 +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.207 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.209 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d5f7b4eb +16:40:11.213 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.213 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.213 [XNIO-1 task-3] j8PSd223SDCr7QS6RWo8SQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kfNYzoElTumv6X75-EEzYw +16:40:11.217 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.217 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.217 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.217 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.218 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.218 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.218 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.218 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.223 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.223 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.224 [XNIO-1 task-3] xE5IiagsT-aqFRfgbVHsIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=r3GIm3MLR2CwtLgL6MqB2Q +16:40:11.247 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.247 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:11.247 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.247 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", client_id) +16:40:11.247 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:11.247 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:11.247 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:11.248 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:11.248 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:11.253 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.253 [XNIO-1 task-3] BKdQYF29RjqqluXJN4UQEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:11.258 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:abcecd26-f4ab-4384-86a9-2e1d19cef826 +16:40:11.259 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:abcecd26-f4ab-4384-86a9-2e1d19cef826 +16:40:11.266 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d5f7b4eb +16:40:11.270 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.270 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.271 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.271 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.272 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.272 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.272 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.272 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.272 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:abcecd26-f4ab-4384-86a9-2e1d19cef826 +16:40:11.278 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.278 [XNIO-1 task-3] 4iF2kmkGS2ODbvDuA10NMg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:11.284 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:11.285 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:11.292 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.292 [XNIO-1 task-3] u5jP-HQcRyKdaR0c3vXv5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:11.319 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e7aaf7a +16:40:11.321 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:337dfe8a-3810-4b41-a6da-b36f83a332d4 +16:40:11.322 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:337dfe8a-3810-4b41-a6da-b36f83a332d4 +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.334 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.340 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.340 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.340 [XNIO-1 task-3] yrCES47GRfy5dr63oNqgGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iCJVknKgQSWKl_0hbxNqoA +16:40:11.375 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b58182ed-ef1a-4c4f-9fd1-9d8a0933e3f7 +16:40:11.377 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e7aaf7a +16:40:11.383 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aacb40cc-75da-4420-a133-dc95773b8c75", "aacb40cc-75da-4420-a133-dc95773b8c75", client_id) +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) + at com.hazelcast.spi.Operation.call(Operation.java:170) +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.384 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:11.385 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.387 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:11.390 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.390 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.390 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.390 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:11.391 [XNIO-1 task-3] pd34h5MfQ6iIidFKxUstvQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=6Agjr55GRPCfexCLuAi6_w +16:40:11.412 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.413 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.413 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:11.413 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.413 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.413 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG com.networknt.schema.TypeValidator debug - validate( "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", client_id) +16:40:11.413 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.414 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:11.414 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +16:40:11.414 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.414 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.414 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.419 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:40:11.420 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:11.421 [XNIO-1 task-3] v7WHuJRDR2qzMGBTJpU4_w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oC429gbcQHSA_tQzNqqdnA +16:40:11.426 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:771c6ca2 + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +16:40:11.442 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +16:40:11.442 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:40:11.443 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.443 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.443 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.443 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.443 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.443 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.448 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.448 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.449 [XNIO-1 task-3] EDOlBhIxSEiZQ68w7JTmBQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zpvCav0kRNCNg_AeX3fQPw +16:40:11.467 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:11.472 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.472 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.472 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.472 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.472 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.473 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.473 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.473 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.479 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.479 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.481 [XNIO-1 task-3] rRb2UZ-STQOEVukjcEuc8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=nOrKeQEdSGKC9kNAzmcufw +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.557 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.563 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.563 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.564 [XNIO-1 task-3] YlglCSVIRuqhV173GYJH6Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4tP4NsauRMmn-7TNsyz5QQ +16:40:11.567 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.567 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.567 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.567 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.568 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.568 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.568 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.568 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.573 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.573 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.574 [XNIO-1 task-3] 7YQ2ffj9S4e77bgFHUjU2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_UGAmZR_Q762-f_Del-Xng +16:40:11.577 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.577 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.577 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.577 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.577 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.577 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.578 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:11.578 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:11.578 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.578 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:11.584 [XNIO-1 task-3] NOZW1AlNRjGf8nKJXPCJWg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=q1fmcDzPQkGSfnY_xSTPAw +16:40:11.607 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3a9d6eb9 + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +16:40:11.624 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:771c6ca2 +16:40:11.624 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:771c6ca2 +16:40:11.627 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null + +16:40:11.627 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.627 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.627 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.627 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.628 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.628 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.628 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.628 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.630 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e7aaf7a +16:40:11.633 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.633 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.634 [XNIO-1 task-3] ujIeQaj6QEO-B8fPmw0BuQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QZNBg7jgTeGIr4shHjhvsA +16:40:11.653 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e889c103 +16:40:11.660 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.660 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.660 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.661 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.661 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.661 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.661 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.661 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.663 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5 +16:40:11.667 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.667 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:11.669 [XNIO-1 task-3] Cjg-1IHgQQqFsIfg48_Y2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HcVgS4JCRXmRhXZ1270tvA +16:40:11.675 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3a9d6eb9 +16:40:11.693 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e889c103 +16:40:11.737 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.737 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.737 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:11.737 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG com.networknt.schema.TypeValidator debug - validate( "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", client_id) +16:40:11.737 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:11.737 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:11.737 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:11.738 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:11.738 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:11.743 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:11.743 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:11.744 [XNIO-1 task-3] _HYdccGiR4WnULOX8kD1cw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=e_2xfHF-SqK2WHXYPOM26g +16:40:11.753 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:88d28537-4215-4503-8e2a-c58917232600 +16:40:11.790 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e889c103 +16:40:11.832 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:e889c103 +16:40:11.855 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:40:11.989 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.990 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:11.990 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:11.990 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG com.networknt.schema.TypeValidator debug - validate( "OtHkydBCNaqGja7_hjPw4AMaUdS9G0bKQq7R38naeyA", "OtHkydBCNaqGja7_hjPw4AMaUdS9G0bKQq7R38naeyA", code_challenge) +16:40:11.991 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:11.991 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:11.991 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:11.991 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:11.991 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:11.991 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:11.997 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:11.997 [XNIO-1 task-3] Rj0CF_CpTjqym3PXRnLS4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.015 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c5ea1bc0-3af1-4282-b2f2-dda8c46b0965 +16:40:12.023 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.023 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.023 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.023 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG com.networknt.schema.TypeValidator debug - validate( "hFY3qXvi0iluWDLZW6f85FJVNcv_hjnKVb2u_RWEdCg", "hFY3qXvi0iluWDLZW6f85FJVNcv_hjnKVb2u_RWEdCg", code_challenge) +16:40:12.023 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:12.023 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.023 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.024 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.024 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.024 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.029 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.029 [XNIO-1 task-3] Bq5fWftoR5WhamWO_vtG5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.053 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.053 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.053 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.053 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mbkR-NlVE-TemcGhaMMQnw_kyDriRy_-aRGZ0a6sbpA", "mbkR-NlVE-TemcGhaMMQnw_kyDriRy_-aRGZ0a6sbpA", code_challenge) +16:40:12.053 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:12.054 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.054 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.054 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.054 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.054 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.059 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.059 [XNIO-1 task-3] M0973pdyReuOjxEjDD34LQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.071 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.071 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.071 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.071 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG com.networknt.schema.TypeValidator debug - validate( "e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e", "e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e", client_id) +16:40:12.072 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.072 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.072 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.072 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.072 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.078 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.078 [XNIO-1 task-3] iUwjJ2rmQUOMn8zF7vtkVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.085 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.085 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.086 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.086 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG com.networknt.schema.TypeValidator debug - validate( "e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e", "e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e", client_id) +16:40:12.086 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.086 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.086 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.086 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.086 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.088 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.088 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.088 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.088 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aacb40cc-75da-4420-a133-dc95773b8c75", "aacb40cc-75da-4420-a133-dc95773b8c75", client_id) +16:40:12.089 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.089 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.089 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.089 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.089 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.095 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.095 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.096 [XNIO-1 task-2] Nut107WjTlKZzTrUQjLdRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iyJNjhLeTvmHY4Z9g-PnjA +16:40:12.099 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.099 [XNIO-1 task-3] 3ek1HmwTSYGnQjYhk_k4lA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.108 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5195b12f-0e88-42f2-ac30-53a5a844d697 +16:40:12.109 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cdad1d24-559e-41fa-8361-0ab7e34f8a67 +16:40:12.110 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cdad1d24-559e-41fa-8361-0ab7e34f8a67 +16:40:12.120 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.120 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.121 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.121 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG com.networknt.schema.TypeValidator debug - validate( "aacb40cc-75da-4420-a133-dc95773b8c75", "aacb40cc-75da-4420-a133-dc95773b8c75", client_id) +16:40:12.121 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.121 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.121 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.121 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.121 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.127 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.127 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.128 [XNIO-1 task-3] YEJKjTLhTfiAYQMYQc6c5g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7_nbS6M_RCqhjTbEWHdkkg +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG com.networknt.schema.TypeValidator debug - validate( "622bfd8c-2abe-4442-a947-beda2e48eabc", "622bfd8c-2abe-4442-a947-beda2e48eabc", client_id) +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.133 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.134 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.135 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG com.networknt.schema.TypeValidator debug - validate( "cdad1d24-559e-41fa-8361-0ab7e34f8a67", "cdad1d24-559e-41fa-8361-0ab7e34f8a67", client_id) +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.136 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.141 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.142 [XNIO-1 task-2] GmIwEk1ZTHC9e3Sd9qXlxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.145 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.145 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.146 [XNIO-1 task-3] KHlho8CkRaSnu7tmF5GVdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=FCC7qMIDT2u85EAcaIhmnw +16:40:12.149 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.149 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.149 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.150 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.150 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.151 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.151 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.151 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.156 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.156 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.157 [XNIO-1 task-3] AEE6fnisSKiAg2nVRUX_KQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JwZm0GuZQMGg9Tl0UhEwbg +16:40:12.221 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.221 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.222 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.222 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG com.networknt.schema.TypeValidator debug - validate( "622bfd8c-2abe-4442-a947-beda2e48eabc", "622bfd8c-2abe-4442-a947-beda2e48eabc", client_id) +16:40:12.222 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.222 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.222 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.222 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.222 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.226 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:88d28537-4215-4503-8e2a-c58917232600 +16:40:12.228 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.228 [XNIO-1 task-3] OgJOPhzSQx21OVrz1f2q7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.232 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.232 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.232 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.232 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG com.networknt.schema.TypeValidator debug - validate( "dvMppLizF0PbsEtmhuaixz1lpKn_qQUlbca4aVS3mvU", "dvMppLizF0PbsEtmhuaixz1lpKn_qQUlbca4aVS3mvU", code_challenge) +16:40:12.232 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:12.232 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.234 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.234 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.234 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.234 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.239 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.239 [XNIO-1 task-3] xKB_31LuTai_39loeXtGWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG com.networknt.schema.TypeValidator debug - validate( "r-y0UL9AcRpfilsOqD75DDFP3OTR3tBTZPOrAa1r_6E", "r-y0UL9AcRpfilsOqD75DDFP3OTR3tBTZPOrAa1r_6E", code_challenge) +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.247 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.248 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.252 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3a9d6eb9 +16:40:12.254 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.254 [XNIO-1 task-3] Fd2OCWV3RCGgFM17RWh18g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.265 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.265 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.265 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.265 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG com.networknt.schema.TypeValidator debug - validate( "ND48D7xo738xYfA1dRxYTsoGuTT4ngVe_92-BllJOUY", "ND48D7xo738xYfA1dRxYTsoGuTT4ngVe_92-BllJOUY", code_challenge) +16:40:12.266 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:12.266 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.266 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.266 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.266 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.266 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.273 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.273 [XNIO-1 task-3] wvUtjcpJQeKtXefvgBFcUg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:12.305 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dea4a2a8-f8d8-4306-9253-7213b874c29b +16:40:12.306 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:dea4a2a8-f8d8-4306-9253-7213b874c29b +16:40:12.329 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.330 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.338 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.338 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.338 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.338 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "622bfd8c-2abe-4442-a947-beda2e48eabc", "622bfd8c-2abe-4442-a947-beda2e48eabc", client_id) +16:40:12.339 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.339 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.339 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.339 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.339 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.344 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.344 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.345 [XNIO-1 task-3] BZ4eWanOQtCCKd2HJao0Fg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=uqm-JA4CSS2v9X_4nhan8w +16:40:12.368 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.368 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.368 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.368 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:12.368 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.368 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.369 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.369 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.369 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.374 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.375 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.375 [XNIO-1 task-3] 1p3eGt3RRtCqEjiasHYRFQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CUZkApXzQqGrFnB3p1OhIQ +16:40:12.386 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:11205013-20eb-4429-bf43-1bd28ade04fb +16:40:12.401 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:11205013-20eb-4429-bf43-1bd28ade04fb +16:40:12.416 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.416 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.416 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.416 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:12.416 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.417 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.417 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.417 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.417 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.422 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.422 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.423 [XNIO-1 task-3] fmu4o5hWScO-YIMHHUZqKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=kCUvlU9wTcuoKaazxlxfag +16:40:12.443 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.443 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.443 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:12.443 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "95a81057-6b96-4c3a-8772-13229ec183ad", "95a81057-6b96-4c3a-8772-13229ec183ad", client_id) +16:40:12.443 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:12.444 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:12.444 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:12.444 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:12.444 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:12.449 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:12.450 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:12.450 [XNIO-1 task-3] zdzXvOdaT_qq9HUmKkkP5Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YFtWub77RO24zQuQMj4KVg +16:40:12.463 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.464 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:12.464 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:12.464 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG com.networknt.schema.TypeValidator debug - validate( "cOqFNh9R6bLI-33orChU7cOel1V-75ysobSwBTx_o4w", "cOqFNh9R6bLI-33orChU7cOel1V-75ysobSwBTx_o4w", code_challenge) +16:40:12.464 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:12.464 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:12.465 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:12.465 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:12.465 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:12.465 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:12.471 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:12.471 [XNIO-1 task-3] XikHf28oQnertDcK8HtDkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.139 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.139 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.139 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.139 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG com.networknt.schema.TypeValidator debug - validate( "622bfd8c-2abe-4442-a947-beda2e48eabc", "622bfd8c-2abe-4442-a947-beda2e48eabc", client_id) +16:40:14.139 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.140 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.140 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.140 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.140 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.147 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.148 [XNIO-1 task-3] DxwCVtR-Srm8ouad-IK-wg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.157 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.157 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.157 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.158 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "622bfd8c-2abe-4442-a947-beda2e48eabc", "622bfd8c-2abe-4442-a947-beda2e48eabc", client_id) +16:40:14.158 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.158 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.158 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.158 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.159 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.166 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.166 [XNIO-1 task-3] sYOTJoJ8RFmUQc-fXBo0Rw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.174 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.174 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.175 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.176 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mlUQtZzc2hTxmSi2FojvqOqNmCjkqdjrCUt0nUGbRo0", "mlUQtZzc2hTxmSi2FojvqOqNmCjkqdjrCUt0nUGbRo0", code_challenge) +16:40:14.176 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.176 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.176 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.176 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.176 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.177 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.184 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.184 [XNIO-1 task-3] xozrwNPBQ4Ss-_xCCzpq0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.190 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.190 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.190 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.190 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG com.networknt.schema.TypeValidator debug - validate( "GNF2QoiM4VyI7qLRUgLIrhiPDd7MNl-bsq-uX5t0bFk", "GNF2QoiM4VyI7qLRUgLIrhiPDd7MNl-bsq-uX5t0bFk", code_challenge) +16:40:14.190 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.191 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.191 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.191 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.191 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.191 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.199 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.201 [XNIO-1 task-3] uVSI5rhtTv6rnm-iKKAqag DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.222 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.222 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.223 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.223 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:14.223 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.223 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.223 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.223 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.223 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.231 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.231 [XNIO-1 task-3] wsI9leJ-SSyiEAuiWDO_NQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.242 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.242 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.242 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.242 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "eTLSvvbc3hLtWYol_GmHiSzvcmsZ4p5EXtOY-39BZrk", "eTLSvvbc3hLtWYol_GmHiSzvcmsZ4p5EXtOY-39BZrk", code_challenge) +16:40:14.242 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.242 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.243 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.243 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.243 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.243 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.243 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.243 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.243 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.244 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.252 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.252 [XNIO-1 task-2] uNiH50tcQwCLUwQxix-9Qw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.244 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.253 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.253 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.253 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.253 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.261 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.261 [XNIO-1 task-3] -heWaFOJQYS66C5BAerTlQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.263 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bc1ffbc5-22e7-4b4a-874d-9a3b8669b12f +16:40:14.264 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bc1ffbc5-22e7-4b4a-874d-9a3b8669b12f +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG com.networknt.schema.TypeValidator debug - validate( "e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e", "e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e", client_id) +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.281 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.287 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.288 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.288 [XNIO-1 task-3] gibRFI5CSvKqba-TfXIKAg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KJatkNt7RTqtH3cKNDT1iQ +16:40:14.295 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.295 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.295 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.295 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.295 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.295 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.295 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.296 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.299 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e7aaf7a +16:40:14.302 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.303 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.304 [XNIO-1 task-3] 2rZ4wsUySpqX5Yel8geAfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=31SxOtIURoCbgmkCxJ1hOw +16:40:14.325 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.325 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.325 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.326 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.326 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.326 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.326 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.326 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.335 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.337 [XNIO-1 task-3] 61pVM0MQSy2eo-8JiypTeQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.337 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.337 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.337 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.338 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG com.networknt.schema.TypeValidator debug - validate( "CPN7DkhDnI2LpprhE3BGb7-jf2mgG0CeW7GoTh7Vvnc", "CPN7DkhDnI2LpprhE3BGb7-jf2mgG0CeW7GoTh7Vvnc", code_challenge) +16:40:14.338 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.338 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.338 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.338 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.338 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.339 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.345 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.345 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.345 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.346 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG com.networknt.schema.TypeValidator debug - validate( "cdad1d24-559e-41fa-8361-0ab7e34f8a67", "cdad1d24-559e-41fa-8361-0ab7e34f8a67", client_id) +16:40:14.346 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.346 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.346 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.346 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.346 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.346 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.347 [XNIO-1 task-2] 9dBlEymfTzKSAZkSfRAhNA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.352 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.352 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.353 [XNIO-1 task-3] PGJ-jHrjQN6qVXHZwEujmg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QXhsDjHfSyqQq25k2Nf5lw +16:40:14.359 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e0d13cb1 +16:40:14.364 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:acb96462-d9bc-4dc0-85dc-71e32ace43cd +16:40:14.365 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:acb96462-d9bc-4dc0-85dc-71e32ace43cd +16:40:14.376 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.377 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.377 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.378 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.378 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.378 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.378 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.378 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.385 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.385 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.386 [XNIO-1 task-3] q4lzH5BLSFOM6XAQmTV0gw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.387 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ac738a10-1c86-45b4-9973-48d4902a7944 +16:40:14.391 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.391 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.391 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.391 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "cdad1d24-559e-41fa-8361-0ab7e34f8a67", "cdad1d24-559e-41fa-8361-0ab7e34f8a67", client_id) +16:40:14.392 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.392 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.392 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.392 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.392 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.397 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.398 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.398 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.399 [XNIO-1 task-3] 02vcjxJbTFaac0arMZC0Dg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0D6M5IyuTPOlUMNJ_5KgzA +16:40:14.402 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.402 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.402 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.403 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.403 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.403 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.403 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.403 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.403 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.403 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.404 [XNIO-1 task-2] QFvt7rieRw2HiYQka67N7A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TIpn3nmJRj2VazBNuX3W3Q +16:40:14.406 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3a9d6eb9 +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.409 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.410 [XNIO-1 task-3] JS5JUryPTx6eJxBTlVlnjQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=e5Ag0WgTSAm41_4EEW7ApA +16:40:14.414 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.414 [XNIO-1 task-2] dk7FOYVeRAq9gVg6tzG8mg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.420 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "MLCX3woRuBoYQM77gpYo71-9Q_rQUBX6ilV-MRN1XlE", "MLCX3woRuBoYQM77gpYo71-9Q_rQUBX6ilV-MRN1XlE", code_challenge) +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.422 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.423 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.428 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.428 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.431 [XNIO-1 task-2] xLqcckjkRDSO-01eUbKI7Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dkV7dtzNSIqLqHad1Xdhcg +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.444 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.454 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.454 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.455 [XNIO-1 task-2] tue1NarqTm-vSQutp5t1RQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OdbfIiyfT1eTnwlBqgudRw +16:40:14.463 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.464 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.464 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.464 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.464 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.465 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.465 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.465 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.466 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:acb96462-d9bc-4dc0-85dc-71e32ace43cd +16:40:14.471 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.471 [XNIO-1 task-2] cuZiA-VGTPWOJJohJ6CGOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.478 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.478 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.478 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.478 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG com.networknt.schema.TypeValidator debug - validate( "cdad1d24-559e-41fa-8361-0ab7e34f8a67", "cdad1d24-559e-41fa-8361-0ab7e34f8a67", client_id) +16:40:14.478 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.478 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.479 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.479 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.479 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.483 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.483 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.483 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.484 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "622bfd8c-2abe-4442-a947-beda2e48eabc", "622bfd8c-2abe-4442-a947-beda2e48eabc", client_id) +16:40:14.484 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.484 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.484 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.484 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.484 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.484 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.484 [XNIO-1 task-2] x8OlO4k7TyuLyb8Pq7QPFg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.491 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.491 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.491 [XNIO-1 task-3] Vjc6wlF_RtaNJOEMpHX6sQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.502 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.502 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.502 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG com.networknt.schema.TypeValidator debug - validate( "NZHdG53dgWGjECy1y6oyyQAzCg3I_VRfREzNk1eFof8", "NZHdG53dgWGjECy1y6oyyQAzCg3I_VRfREzNk1eFof8", code_challenge) +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.503 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.505 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2778594c-83c3-475e-9939-ab9a356152fd +16:40:14.510 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.510 [XNIO-1 task-3] DV0fSKqcRg6H-wJ5gbnyUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.521 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2778594c-83c3-475e-9939-ab9a356152fd +16:40:14.535 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2778594c-83c3-475e-9939-ab9a356152fd +16:40:14.542 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.543 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.543 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.543 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.543 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.543 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.543 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "509301fa-2fa5-40d2-aa02-0d4c798431f8", "509301fa-2fa5-40d2-aa02-0d4c798431f8", client_id) +16:40:14.543 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.543 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.543 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.543 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.543 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.543 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.544 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.544 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.544 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.544 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.544 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.552 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.552 [XNIO-1 task-2] TBzCyt-bTGGSLyVG1MIpIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.553 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.553 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.553 [XNIO-1 task-3] g8abtbjrRGC7A1dZ9pGFsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xhP8no8BS7iwW81fBdaB3g +16:40:14.556 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:cb6ddc72-d640-4618-9b63-3711f28c5b4a +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.559 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cdad1d24-559e-41fa-8361-0ab7e34f8a67", "cdad1d24-559e-41fa-8361-0ab7e34f8a67", client_id) +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +16:40:14.559 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.559 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.559 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.559 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.560 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.560 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.560 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.560 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +16:40:14.560 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +16:40:14.560 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.560 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +16:40:14.565 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.565 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.565 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:40:14.566 [XNIO-1 task-2] cdlQb0hGSeOZynp_VR9Bow DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rBT9RVpWQXWv8H8WgQKzYw +16:40:14.566 [XNIO-1 task-3] GdXw68_qSSuiiNuDobQZXQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0_bkez8HQ8CEAqdSWlYyxA +16:40:14.597 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.597 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +16:40:14.597 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +16:40:14.597 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:40:14.597 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.597 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.598 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.598 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.598 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.603 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e0d13cb1 +16:40:14.609 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.609 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.610 [XNIO-1 task-3] gqYOw6YBS9Wyb7NmSWdh9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UV7L-2xISiqtpfYLR9TZEQ +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG com.networknt.schema.TypeValidator debug - validate( "4019495d-a4db-406b-89cf-8ad20ca5ee18", "4019495d-a4db-406b-89cf-8ad20ca5ee18", client_id) +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.615 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.616 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.622 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.622 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.623 [XNIO-1 task-3] BvxwpzgSRLS34Mnfl_lolg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=qdulJHb9TNSHfJ8qbSdibg +16:40:14.623 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.623 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.623 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.623 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.623 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.623 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.623 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.624 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.629 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.630 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.631 [XNIO-1 task-2] 6Qu9ilcCRSWZyyC5x89GGQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CD-stgWESNiZBZ5z7vXtxQ +16:40:14.654 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.654 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.655 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.655 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.655 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.655 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.656 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.656 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.661 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.661 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.661 [XNIO-1 task-2] gCZNUFcnR2qXbgEGAcMB3w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zW5oX-obQkKUjfwYAtUUiQ +16:40:14.663 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.664 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.664 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.664 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.664 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.664 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.664 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.664 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.669 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.669 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.673 [XNIO-1 task-2] i1autjuYS4WxKdKbQ4viVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3EALbkcXQn69ry2TKN_3JA +16:40:14.682 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.682 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.682 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.682 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.682 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.682 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.682 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.683 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.687 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.687 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.688 [XNIO-1 task-2] i2hLmDs4SvmLcitig3Oz9Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG com.networknt.schema.TypeValidator debug - validate( "CK-z75h-bC3VY0fIiFU9tf-e6J4iSAqkV_ilNEgA7lA", "CK-z75h-bC3VY0fIiFU9tf-e6J4iSAqkV_ilNEgA7lA", code_challenge) +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.688 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.694 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.694 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.694 [XNIO-1 task-3] 7XE48rivT5-GyaF2zOTVZw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Dg3VDe_4TPWdk5XsFzVg6Q +16:40:14.698 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.699 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.699 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.699 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.699 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.699 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.699 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.699 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.702 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG com.networknt.schema.TypeValidator debug - validate( "rkFkSnCpSl7ThoqzADdlxdoes-JLHERzPRCfcGTLCco", "rkFkSnCpSl7ThoqzADdlxdoes-JLHERzPRCfcGTLCco", code_challenge) +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.703 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.707 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.707 [XNIO-1 task-3] FCA7q0aET5aD5cxSPTqNaQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.708 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.708 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.709 [XNIO-1 task-2] UXucnWVbThq_7lHndgwGhA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=fPtoKmFNSRWFJCGJR-fnaw +16:40:14.713 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.713 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.713 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.714 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.714 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.714 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.714 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.714 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.718 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.718 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.718 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.718 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG com.networknt.schema.TypeValidator debug - validate( "haBTxI8PRua-_JMQ-iy-XtF0PusEDMqomJNLv9YeeUE", "haBTxI8PRua-_JMQ-iy-XtF0PusEDMqomJNLv9YeeUE", code_challenge) +16:40:14.718 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.718 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.719 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.719 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.719 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.719 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.719 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.719 [XNIO-1 task-2] ISDw7y6nRuW59ao7SLyvkw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.724 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.724 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.724 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.724 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.724 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.725 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:14.725 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.725 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.725 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.725 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.725 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.726 [XNIO-1 task-3] wMR4y2McTcaGfhaQ5Lkfsw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vWds8SpOQ4ih2AkL4pUcWA +16:40:14.727 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:cb3ac415-c0bc-49cd-a219-b27948b92b7a +16:40:14.731 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.731 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.732 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.732 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.732 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.732 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG com.networknt.schema.TypeValidator debug - validate( "c5504173-74f2-4bc1-9c0a-8d46ce528a3b", "c5504173-74f2-4bc1-9c0a-8d46ce528a3b", client_id) +16:40:14.732 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.732 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.733 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.733 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.733 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.733 [XNIO-1 task-2] gbXAIdJjQV2VouQqy7dMiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=MVNhSL_8TMW3DC_keIWFqQ +16:40:14.738 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.738 [XNIO-1 task-3] fhMA85uETeWiexVNJlkg5A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.739 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.740 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.745 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.745 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.747 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7f9efe57 +16:40:14.747 [XNIO-1 task-2] iJuT6kpiRi-mXQ66ZDev6g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=19V5MTf6QtyiaLwcndKeIg +16:40:14.751 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.751 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.751 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.751 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.751 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.751 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.752 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.752 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.758 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.758 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.760 [XNIO-1 task-2] JHLiovGYRRK8iESWCW6UOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ZXknXjdRRSOMhgKxsJW9HQ +16:40:14.767 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.767 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.767 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.767 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.768 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.768 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.768 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.768 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.772 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7f9efe57 +16:40:14.774 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.774 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.775 [XNIO-1 task-2] RdiEvuGKTAmqtLfGiGEzRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=KlryO12LSAaT3SmwvklDpQ +16:40:14.781 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.781 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.781 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.782 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.782 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.782 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.782 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.782 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.787 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.788 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.789 [XNIO-1 task-2] ZVSKUGl_SWOHgMz0sJH25w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=os9UX06rRiKpKiLr0VYJdQ +16:40:14.796 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.796 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.796 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.797 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.797 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.797 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.798 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.799 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.804 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.804 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.805 [XNIO-1 task-2] 8JRSuxpNQbqFsYCY85Kesw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=i26VG-K0Smid7ClLrnOvoQ +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.809 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.814 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cdad1d24-559e-41fa-8361-0ab7e34f8a67 +16:40:14.816 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.816 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:14.818 [XNIO-1 task-2] WE5IfypUTMCb0jvA_6E41A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xhoLk5mlTMGZHen_hZM5KQ +16:40:14.823 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.823 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.823 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.823 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.823 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.824 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.824 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.824 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.824 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2ef0a873-4333-4737-b251-e4c5a0445629 +16:40:14.825 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2ef0a873-4333-4737-b251-e4c5a0445629 +16:40:14.829 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.829 [XNIO-1 task-2] eGQ2g78OQIaEpsNfhVg7bQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.833 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG com.networknt.schema.TypeValidator debug - validate( "d9feae07-6c67-42a3-99de-5b1dac3c845f", "d9feae07-6c67-42a3-99de-5b1dac3c845f", client_id) +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.834 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.839 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.840 [XNIO-1 task-2] U2G2aR4cR26jTv10TI2k1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.842 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2ef0a873-4333-4737-b251-e4c5a0445629 +16:40:14.864 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG com.networknt.schema.TypeValidator debug - validate( "VnDbLHI0Tw_NxjuOZ6ZdHNy-VH0b4mj5bfcV2ziLTbk", "VnDbLHI0Tw_NxjuOZ6ZdHNy-VH0b4mj5bfcV2ziLTbk", code_challenge) +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.865 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.866 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.869 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.869 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.869 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.870 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.870 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.870 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.870 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.870 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.872 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.872 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.874 [XNIO-1 task-2] l3nPCFo_QkWCK2SzTcdWkg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=YJcawjYlT_KLIo406iPshw +16:40:14.880 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.880 [XNIO-1 task-3] NQqlsqJ6R8yi6qttfl1dcA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.918 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:082f56ce-7813-46a1-a819-e85f7139a640 +16:40:14.930 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.931 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.931 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.931 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "R3gadOCmGvss2f30sa9ynvszSCGM7wEQk24_SnktH8Y", "R3gadOCmGvss2f30sa9ynvszSCGM7wEQk24_SnktH8Y", code_challenge) +16:40:14.931 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.931 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.931 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.932 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.932 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.932 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.934 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.940 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.940 [XNIO-1 task-2] pyuAelIlS2Gp7e2OL9RhFA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.940 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.940 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.941 [XNIO-1 task-3] w8RVPdXkTfmKX74yZbc_aQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=x8nmVNPQS3y2-SvOwu5AZQ +16:40:14.951 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9d9a73e +16:40:14.951 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9d9a73e +16:40:14.954 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:85489b16-34cb-4b16-a91b-e37f36adb496 +16:40:14.966 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.966 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.966 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.966 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG com.networknt.schema.TypeValidator debug - validate( "04c2716c-0fd5-495c-9111-e1698e3f2fc1", "04c2716c-0fd5-495c-9111-e1698e3f2fc1", client_id) +16:40:14.966 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.967 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.967 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.967 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.967 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.968 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:85489b16-34cb-4b16-a91b-e37f36adb496 +16:40:14.971 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8e7aaf7a +16:40:14.972 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.972 [XNIO-1 task-2] ozGBQmdMSlGvlyXxYkhuzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.978 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "J6ra0DUu2dXWhzUK2GtGTZk3zR6xEUOg6CperO6keLY", "J6ra0DUu2dXWhzUK2GtGTZk3zR6xEUOg6CperO6keLY", code_challenge) +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.979 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.985 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:14.985 [XNIO-1 task-2] OETyjnHdTm-HW_lBil0B0Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:14.988 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.988 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:14.988 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:14.988 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:14.988 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:14.989 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:14.989 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:14.989 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:14.989 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG com.networknt.schema.TypeValidator debug - validate( "cdad1d24-559e-41fa-8361-0ab7e34f8a67", "cdad1d24-559e-41fa-8361-0ab7e34f8a67", client_id) +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:14.990 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:14.996 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.996 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.996 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:14.996 [XNIO-1 task-2] wM1peLgKRuK10hRc-ssF_Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:14.997 [XNIO-1 task-3] SxEyT4JIT46A3BsHbYiGDA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cgunpOloQ36eZIqp7xyI2w +16:40:14.997 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c9d9a73e +16:40:15.007 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e0d13cb1 +16:40:15.008 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c9d9a73e +16:40:15.011 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:572e4538-2606-461d-833f-9ac7318725f2 +16:40:15.015 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.015 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.015 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.015 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG com.networknt.schema.TypeValidator debug - validate( "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", "4357d0cf-b9b4-41f3-b77b-75fe9d8b23b5", client_id) +16:40:15.015 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.015 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.016 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.016 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.016 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.021 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.022 [XNIO-1 task-2] gBbV3GW4Q7G2lFvVfYLe3A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.026 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:572e4538-2606-461d-833f-9ac7318725f2 +16:40:15.045 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c9d9a73e +16:40:15.050 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.050 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.050 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.050 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.050 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.051 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.051 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.051 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.056 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.056 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.057 [XNIO-1 task-2] VtEAK1yBTsKOSYEEg-mx9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Yc65NaNsSSif2dq4hVlbLQ +16:40:15.062 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9223da23-150a-4696-9368-6cdeff3c6ccc +16:40:15.081 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:9223da23-150a-4696-9368-6cdeff3c6ccc +16:40:15.087 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:afc49340-afe0-4bee-9ce7-ee6890d5554b +16:40:15.107 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4019495d-a4db-406b-89cf-8ad20ca5ee18", "4019495d-a4db-406b-89cf-8ad20ca5ee18", client_id) +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.108 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.114 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.114 [XNIO-1 task-2] h3UFgLA4RKiM8u6RlnegCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.117 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7636c66 +16:40:15.119 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b7636c66 +16:40:15.122 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.122 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.122 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.123 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:15.123 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.123 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.123 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.123 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.123 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.129 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.130 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.134 [XNIO-1 task-2] Nq-yKN86QXS3ZbDq7NPKkA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Hc_SU8QGQy-WUL_VGaNQyQ +16:40:15.138 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.138 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.138 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.139 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.139 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.139 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.139 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.139 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.147 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.147 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.147 [XNIO-1 task-2] qg5CaqMjRrq6m0oPJJab8A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=eF6oOMB5RWu6fYwtOMPa4g +16:40:15.167 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.167 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.167 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.167 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG com.networknt.schema.TypeValidator debug - validate( "afc49340-afe0-4bee-9ce7-ee6890d5554b", "afc49340-afe0-4bee-9ce7-ee6890d5554b", client_id) +16:40:15.168 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.168 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.168 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.168 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.168 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.173 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:68224bc0-af68-48ed-b61e-640d2dc088d3 +16:40:15.179 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.179 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.180 [XNIO-1 task-2] yCP82V8PTWSRWq4MZj2wIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DXK427ALSm-AQKrWI-veUg +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", "ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09", client_id) +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.191 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.197 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.197 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.202 [XNIO-1 task-2] k0HrTBMTTX6qeNlsXOnSpw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=BK9gWWsLSPGIyOPvBFsYcw +16:40:15.207 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.207 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.207 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.208 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG com.networknt.schema.TypeValidator debug - validate( "pUNbva8LJdZmcYL9PmGoVZZ5BiqYm69z4cpbHQS-EB4", "pUNbva8LJdZmcYL9PmGoVZZ5BiqYm69z4cpbHQS-EB4", code_challenge) +16:40:15.208 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c165b791 +16:40:15.208 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c165b791 +16:40:15.208 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.208 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.208 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.209 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.209 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.215 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c165b791 +16:40:15.215 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.215 [XNIO-1 task-2] VkruRnf3RCW3tQbfflF_BA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.235 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.235 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.236 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.236 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG com.networknt.schema.TypeValidator debug - validate( "afc49340-afe0-4bee-9ce7-ee6890d5554b", "afc49340-afe0-4bee-9ce7-ee6890d5554b", client_id) +16:40:15.236 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.236 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.236 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.236 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.236 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.242 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.242 [XNIO-1 task-2] MLGeB5LMRiqxexoocxYapw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.244 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.244 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.244 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.244 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG com.networknt.schema.TypeValidator debug - validate( "4_8rva2LZBm-HmN5KNAi2NAe8Qx8teUrAAVwNdiI-_A", "4_8rva2LZBm-HmN5KNAi2NAe8Qx8teUrAAVwNdiI-_A", code_challenge) +16:40:15.244 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:15.244 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.244 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.245 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.245 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.246 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.248 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.248 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.248 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.248 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.249 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.249 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.249 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.249 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.252 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.252 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.252 [XNIO-1 task-2] 4pAWGH9WREGokxPWfhKLyA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Pg2DjCQXSd2a2Mm_OceCtA +16:40:15.254 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.254 [XNIO-1 task-3] qgNbhVzYRSuRAtbnp3l18g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.255 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c165b791 +16:40:15.256 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.257 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.257 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.257 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG com.networknt.schema.TypeValidator debug - validate( "NTi6k-SIhm4ZrFXt2cJcDz1xFg0dhmiIs8A2A0o-5z4", "NTi6k-SIhm4ZrFXt2cJcDz1xFg0dhmiIs8A2A0o-5z4", code_challenge) +16:40:15.257 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:15.257 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.257 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.258 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.258 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.258 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.264 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.264 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.264 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.264 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.264 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.264 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.264 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.264 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.264 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.264 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.265 [XNIO-1 task-2] km4AMEgOTNijJ0QBx2I0sA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xkQXRZaZQiu6-YzdiT6vIw +16:40:15.268 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c165b791 +16:40:15.270 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.270 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.270 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.270 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG com.networknt.schema.TypeValidator debug - validate( "72877160-9ecb-4356-a9f9-6f2edca17227", "72877160-9ecb-4356-a9f9-6f2edca17227", client_id) +16:40:15.271 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.271 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.272 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.272 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.273 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.273 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:c165b791 +16:40:15.274 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.274 [XNIO-1 task-3] FvmWt2XPQbS0dU83H5EkWw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.278 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.279 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.279 [XNIO-1 task-2] p9ftkvEXT3K5WUSVbDodiw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4Tcz9twKR5-ei6kQncpCcQ +16:40:15.280 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.280 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.280 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.280 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.281 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.281 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.281 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.281 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.287 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.288 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.288 [XNIO-1 task-2] kADMhtZ5Sr20IqpDyH73PQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=zbdJJmkbRVyEb5PsAQdEdA +16:40:15.294 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a383c67b +16:40:15.308 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a383c67b +16:40:15.315 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.315 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.315 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.315 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:cb6ddc72-d640-4618-9b63-3711f28c5b4a +16:40:15.316 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:15.316 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:15.316 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:15.316 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:15.316 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:15.321 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.321 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.322 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:15.322 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG com.networknt.schema.TypeValidator debug - validate( "4019495d-a4db-406b-89cf-8ad20ca5ee18", "4019495d-a4db-406b-89cf-8ad20ca5ee18", client_id) +16:40:15.322 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:15.322 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:15.322 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:15.322 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:15.322 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:15.322 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:15.322 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:15.323 [XNIO-1 task-2] 6zK2xZ6PTWmjBb2DpAgMqg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=3KjUu9BJTiOF9b953nbjCQ +16:40:15.328 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:15.328 [XNIO-1 task-3] 2dzhm8nESJmc7UgbChneDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:15.332 [XNIO-1 task-3] lKUHIZrqRKGVnOIZ2O5u-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.333 [XNIO-1 task-3] lKUHIZrqRKGVnOIZ2O5u-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:15.333 [XNIO-1 task-3] lKUHIZrqRKGVnOIZ2O5u-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:15.333 [XNIO-1 task-3] lKUHIZrqRKGVnOIZ2O5u-g DEBUG com.networknt.schema.TypeValidator debug - validate( "GkdV_1OLldF29Gq-rk_JHSyN3KkbftzRsj3ireJkQcY", "GkdV_1OLldF29Gq-rk_JHSyN3KkbftzRsj3ireJkQcY", code_challenge) diff --git a/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-key-1.log b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..db5967d --- /dev/null +++ b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-key-1.log @@ -0,0 +1,111 @@ +16:40:12.128 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.284 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2d677300-8efd-4d53-b831-fa8b1c964965 +16:40:12.408 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f8a9fef1-cb27-42ee-9634-05fc3f86cca9 +16:40:12.409 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f8a9fef1-cb27-42ee-9634-05fc3f86cca9 +16:40:14.114 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6910ce71 +16:40:14.234 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:211364f8 +16:40:14.271 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:10d7e9ab-509b-4ba4-94bd-1fece7da4c83 +16:40:14.275 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:211364f8 +16:40:14.316 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:a8901f7a +16:40:14.381 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1298e403 +16:40:14.383 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1298e403 +16:40:14.431 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8381ac29 +16:40:14.448 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1298e403 +16:40:14.468 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:67d4cdeb-016a-405c-a12f-7211a2cd3561 +16:40:14.469 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:67d4cdeb-016a-405c-a12f-7211a2cd3561 +16:40:14.493 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1298e403 +16:40:14.531 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:1298e403 +16:40:14.564 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:622bfd8c-2abe-4442-a947-beda2e48eabc +SEVERE: [172.24.0.6]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:14.568 [hz._hzInstance_1_dev.partition-operation.thread-1] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:14.614 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:1298e403 +16:40:14.643 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:920d4930 +16:40:14.645 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:82f77a88-03e4-4625-beee-2de587a2a5b1 +16:40:14.660 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5c2a34df +16:40:14.661 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5c2a34df +16:40:14.708 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:82f77a88-03e4-4625-beee-2de587a2a5b1 +16:40:14.715 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cd742038 +16:40:14.769 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:1298e403 +16:40:14.818 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4b57cbef +16:40:14.921 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:22016a17-a020-4515-a077-66e8e4771451 +16:40:15.229 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2873acb4 +16:40:15.230 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:2873acb4 +16:40:15.301 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:666afa57-6b30-4ff0-a423-f6723149863d +16:40:15.399 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:920d4930 +16:40:15.404 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:666afa57-6b30-4ff0-a423-f6723149863d +16:40:15.475 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a0e3b6d-6d41-425a-b9df-358e93355de2 +16:40:15.476 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5a0e3b6d-6d41-425a-b9df-358e93355de2 +16:40:15.620 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:99bccc2c-f6d8-406d-821e-e6d23b58ad3e +16:40:15.622 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:99bccc2c-f6d8-406d-821e-e6d23b58ad3e +16:40:15.635 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5a8c1fd4-8125-4bd3-95aa-f290fd63a233 +16:40:15.636 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d249056d +16:40:15.642 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d249056d +16:40:15.645 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:cd742038 +16:40:15.690 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3af78baa +16:40:15.692 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3af78baa +16:40:15.709 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ee6f16cd-a17f-4073-972a-40210517d750 +16:40:15.712 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:622bfd8c-2abe-4442-a947-beda2e48eabc +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:15.725 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5c2a34df +16:40:15.864 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b57cbef +16:40:15.950 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:667034d6-d736-40cf-98fb-65d90a938dbe +16:40:15.954 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3af78baa +16:40:15.979 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9f76773b-9c34-4d21-8f2c-054c1a5f819c +16:40:15.982 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:667034d6-d736-40cf-98fb-65d90a938dbe diff --git a/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..3407b53 --- /dev/null +++ b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,2308 @@ +16:40:11.818 [XNIO-1 task-2] eMMHJbQcQeaBbPfglv1jUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1217328b-b72e-46b5-8cbf-fd5bfa2c34ee +16:40:11.818 [XNIO-1 task-2] eMMHJbQcQeaBbPfglv1jUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.818 [XNIO-1 task-2] eMMHJbQcQeaBbPfglv1jUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:11.818 [XNIO-1 task-2] eMMHJbQcQeaBbPfglv1jUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1217328b-b72e-46b5-8cbf-fd5bfa2c34ee +16:40:11.818 [XNIO-1 task-2] eMMHJbQcQeaBbPfglv1jUA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1217328b-b72e-46b5-8cbf-fd5bfa2c34ee +16:40:11.820 [XNIO-1 task-2] unaIzrV2Qz2kf-_xLZhPhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.820 [XNIO-1 task-2] unaIzrV2Qz2kf-_xLZhPhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.821 [XNIO-1 task-2] unaIzrV2Qz2kf-_xLZhPhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.821 [XNIO-1 task-2] unaIzrV2Qz2kf-_xLZhPhA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.825 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:838813d1 +16:40:11.826 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:838813d1 +16:40:11.854 [XNIO-1 task-2] 2K_8PE-6TZCxOWh1BICZFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.854 [XNIO-1 task-2] 2K_8PE-6TZCxOWh1BICZFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.854 [XNIO-1 task-2] 2K_8PE-6TZCxOWh1BICZFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.854 [XNIO-1 task-2] 2K_8PE-6TZCxOWh1BICZFw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:11.856 [XNIO-1 task-2] _3K0x568S6mxLFejvm3T9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/943cb148-7d2a-4468-9909-a7d6f29fd65f, base path is set to: null +16:40:11.856 [XNIO-1 task-2] _3K0x568S6mxLFejvm3T9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.856 [XNIO-1 task-2] _3K0x568S6mxLFejvm3T9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:11.856 [XNIO-1 task-2] _3K0x568S6mxLFejvm3T9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/943cb148-7d2a-4468-9909-a7d6f29fd65f, base path is set to: null +16:40:11.856 [XNIO-1 task-2] _3K0x568S6mxLFejvm3T9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "943cb148-7d2a-4468-9909-a7d6f29fd65f", "943cb148-7d2a-4468-9909-a7d6f29fd65f", refreshToken) +16:40:11.858 [XNIO-1 task-2] _3K0x568S6mxLFejvm3T9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 943cb148-7d2a-4468-9909-a7d6f29fd65f is not found.","severity":"ERROR"} +16:40:11.860 [XNIO-1 task-2] TCwoT0elR260URXcw4jEWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.860 [XNIO-1 task-2] TCwoT0elR260URXcw4jEWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.860 [XNIO-1 task-2] TCwoT0elR260URXcw4jEWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:11.860 [XNIO-1 task-2] TCwoT0elR260URXcw4jEWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.860 [XNIO-1 task-2] TCwoT0elR260URXcw4jEWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.862 [XNIO-1 task-2] IRsEufL2TruttAfEwFt3nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.862 [XNIO-1 task-2] IRsEufL2TruttAfEwFt3nw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.862 [XNIO-1 task-2] IRsEufL2TruttAfEwFt3nw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.863 [XNIO-1 task-2] IRsEufL2TruttAfEwFt3nw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:11.864 [XNIO-1 task-2] rniBZ7RBR62M0mD_MeiBug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.864 [XNIO-1 task-2] rniBZ7RBR62M0mD_MeiBug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.864 [XNIO-1 task-2] rniBZ7RBR62M0mD_MeiBug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.864 [XNIO-1 task-2] rniBZ7RBR62M0mD_MeiBug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.864 [XNIO-1 task-2] rniBZ7RBR62M0mD_MeiBug DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:11.922 [XNIO-1 task-2] k1PV306eSyaKXvqhQLJiiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.922 [XNIO-1 task-2] k1PV306eSyaKXvqhQLJiiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.922 [XNIO-1 task-2] k1PV306eSyaKXvqhQLJiiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:11.922 [XNIO-1 task-2] k1PV306eSyaKXvqhQLJiiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.923 [XNIO-1 task-2] k1PV306eSyaKXvqhQLJiiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.924 [XNIO-1 task-2] P_jhsHExREy-fbmUCV3lxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/943cb148-7d2a-4468-9909-a7d6f29fd65f, base path is set to: null +16:40:11.924 [XNIO-1 task-2] P_jhsHExREy-fbmUCV3lxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.925 [XNIO-1 task-2] P_jhsHExREy-fbmUCV3lxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:11.925 [XNIO-1 task-2] P_jhsHExREy-fbmUCV3lxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/943cb148-7d2a-4468-9909-a7d6f29fd65f, base path is set to: null +16:40:11.925 [XNIO-1 task-2] P_jhsHExREy-fbmUCV3lxw DEBUG com.networknt.schema.TypeValidator debug - validate( "943cb148-7d2a-4468-9909-a7d6f29fd65f", "943cb148-7d2a-4468-9909-a7d6f29fd65f", refreshToken) +16:40:11.925 [XNIO-1 task-2] P_jhsHExREy-fbmUCV3lxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 943cb148-7d2a-4468-9909-a7d6f29fd65f is not found.","severity":"ERROR"} +16:40:11.926 [XNIO-1 task-2] 59nQXbAATveJmyCU4t9XWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1217328b-b72e-46b5-8cbf-fd5bfa2c34ee +16:40:11.926 [XNIO-1 task-2] 59nQXbAATveJmyCU4t9XWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.926 [XNIO-1 task-2] 59nQXbAATveJmyCU4t9XWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:11.927 [XNIO-1 task-2] 59nQXbAATveJmyCU4t9XWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1217328b-b72e-46b5-8cbf-fd5bfa2c34ee +16:40:11.927 [XNIO-1 task-2] 59nQXbAATveJmyCU4t9XWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1217328b-b72e-46b5-8cbf-fd5bfa2c34ee +16:40:11.928 [XNIO-1 task-2] L_BRzk15RKOcmdSHTfiv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.928 [XNIO-1 task-2] L_BRzk15RKOcmdSHTfiv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.928 [XNIO-1 task-2] L_BRzk15RKOcmdSHTfiv1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.928 [XNIO-1 task-2] L_BRzk15RKOcmdSHTfiv1g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.973 [XNIO-1 task-2] UPHQlWXUQRewJTd-EINqCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.973 [XNIO-1 task-2] UPHQlWXUQRewJTd-EINqCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.973 [XNIO-1 task-2] UPHQlWXUQRewJTd-EINqCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.973 [XNIO-1 task-2] UPHQlWXUQRewJTd-EINqCw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.973 [XNIO-1 task-2] UPHQlWXUQRewJTd-EINqCw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:11.982 [XNIO-1 task-2] q5IJJw1lTdW_FNMLouVrVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/943cb148-7d2a-4468-9909-a7d6f29fd65f +16:40:11.982 [XNIO-1 task-2] q5IJJw1lTdW_FNMLouVrVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.983 [XNIO-1 task-2] q5IJJw1lTdW_FNMLouVrVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:11.983 [XNIO-1 task-2] q5IJJw1lTdW_FNMLouVrVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/943cb148-7d2a-4468-9909-a7d6f29fd65f +16:40:11.983 [XNIO-1 task-2] q5IJJw1lTdW_FNMLouVrVg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 943cb148-7d2a-4468-9909-a7d6f29fd65f +16:40:11.985 [XNIO-1 task-2] z5MX85X3SzOagdkMsiZyQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.985 [XNIO-1 task-2] z5MX85X3SzOagdkMsiZyQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.985 [XNIO-1 task-2] z5MX85X3SzOagdkMsiZyQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:11.985 [XNIO-1 task-2] z5MX85X3SzOagdkMsiZyQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:11.992 [XNIO-1 task-2] M7QsXCaSSSOR4RcPg65T_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70, base path is set to: null +16:40:11.992 [XNIO-1 task-2] M7QsXCaSSSOR4RcPg65T_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:11.992 [XNIO-1 task-2] M7QsXCaSSSOR4RcPg65T_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:11.992 [XNIO-1 task-2] M7QsXCaSSSOR4RcPg65T_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70, base path is set to: null +16:40:11.992 [XNIO-1 task-2] M7QsXCaSSSOR4RcPg65T_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1a58b740-3d60-47ed-ac6e-bd0280533d70", "1a58b740-3d60-47ed-ac6e-bd0280533d70", refreshToken) +16:40:11.994 [XNIO-1 task-2] M7QsXCaSSSOR4RcPg65T_Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1a58b740-3d60-47ed-ac6e-bd0280533d70 is not found.","severity":"ERROR"} +16:40:11.996 [XNIO-1 task-2] 5FKC6YgmQvytzR_h1Duyug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:11.996 [XNIO-1 task-2] 5FKC6YgmQvytzR_h1Duyug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:11.996 [XNIO-1 task-2] 5FKC6YgmQvytzR_h1Duyug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:11.996 [XNIO-1 task-2] 5FKC6YgmQvytzR_h1Duyug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:11.996 [XNIO-1 task-2] 5FKC6YgmQvytzR_h1Duyug DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:12.000 [XNIO-1 task-2] bdRSJOcHT0ykv0DVy03RLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70, base path is set to: null +16:40:12.000 [XNIO-1 task-2] bdRSJOcHT0ykv0DVy03RLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.001 [XNIO-1 task-2] bdRSJOcHT0ykv0DVy03RLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.001 [XNIO-1 task-2] bdRSJOcHT0ykv0DVy03RLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70, base path is set to: null +16:40:12.001 [XNIO-1 task-2] bdRSJOcHT0ykv0DVy03RLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1a58b740-3d60-47ed-ac6e-bd0280533d70", "1a58b740-3d60-47ed-ac6e-bd0280533d70", refreshToken) +16:40:12.001 [XNIO-1 task-2] bdRSJOcHT0ykv0DVy03RLQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1a58b740-3d60-47ed-ac6e-bd0280533d70 is not found.","severity":"ERROR"} +16:40:12.008 [XNIO-1 task-2] 2cnQSSQRSo6kP_pcYL0JXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:12.008 [XNIO-1 task-2] 2cnQSSQRSo6kP_pcYL0JXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.008 [XNIO-1 task-2] 2cnQSSQRSo6kP_pcYL0JXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.008 [XNIO-1 task-2] 2cnQSSQRSo6kP_pcYL0JXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:12.008 [XNIO-1 task-2] 2cnQSSQRSo6kP_pcYL0JXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:12.010 [XNIO-1 task-2] eb9edcw3TT-G9lhM5oatgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.011 [XNIO-1 task-2] eb9edcw3TT-G9lhM5oatgw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.011 [XNIO-1 task-2] eb9edcw3TT-G9lhM5oatgw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.011 [XNIO-1 task-2] eb9edcw3TT-G9lhM5oatgw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.011 [XNIO-1 task-2] eb9edcw3TT-G9lhM5oatgw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.015 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:1222a51b +16:40:12.016 [XNIO-1 task-2] 4Z_w1YohT2aM3g5Kxsdu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.016 [XNIO-1 task-2] 4Z_w1YohT2aM3g5Kxsdu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.016 [XNIO-1 task-2] 4Z_w1YohT2aM3g5Kxsdu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.016 [XNIO-1 task-2] 4Z_w1YohT2aM3g5Kxsdu3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.016 [XNIO-1 task-2] 4Z_w1YohT2aM3g5Kxsdu3w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.018 [XNIO-1 task-2] ZKV_-AF9RkWUoSHEStgD-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.018 [XNIO-1 task-2] ZKV_-AF9RkWUoSHEStgD-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.018 [XNIO-1 task-2] ZKV_-AF9RkWUoSHEStgD-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.019 [XNIO-1 task-2] ZKV_-AF9RkWUoSHEStgD-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.019 [XNIO-1 task-2] ZKV_-AF9RkWUoSHEStgD-g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.024 [XNIO-1 task-2] vQ5L20eSQsu6YNp-gK5Khg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4822ff3f-73cf-4cb8-9359-b357ac04350a +16:40:12.024 [XNIO-1 task-2] vQ5L20eSQsu6YNp-gK5Khg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.024 [XNIO-1 task-2] vQ5L20eSQsu6YNp-gK5Khg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.024 [XNIO-1 task-2] vQ5L20eSQsu6YNp-gK5Khg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/4822ff3f-73cf-4cb8-9359-b357ac04350a +16:40:12.025 [XNIO-1 task-2] vQ5L20eSQsu6YNp-gK5Khg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 4822ff3f-73cf-4cb8-9359-b357ac04350a +16:40:12.030 [XNIO-1 task-2] LkJy-WHTQFuQrNfp0kc-8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4822ff3f-73cf-4cb8-9359-b357ac04350a, base path is set to: null +16:40:12.030 [XNIO-1 task-2] LkJy-WHTQFuQrNfp0kc-8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.030 [XNIO-1 task-2] LkJy-WHTQFuQrNfp0kc-8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.030 [XNIO-1 task-2] LkJy-WHTQFuQrNfp0kc-8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4822ff3f-73cf-4cb8-9359-b357ac04350a, base path is set to: null +16:40:12.030 [XNIO-1 task-2] LkJy-WHTQFuQrNfp0kc-8w DEBUG com.networknt.schema.TypeValidator debug - validate( "4822ff3f-73cf-4cb8-9359-b357ac04350a", "4822ff3f-73cf-4cb8-9359-b357ac04350a", refreshToken) +16:40:12.031 [XNIO-1 task-2] LkJy-WHTQFuQrNfp0kc-8w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4822ff3f-73cf-4cb8-9359-b357ac04350a is not found.","severity":"ERROR"} +16:40:12.036 [XNIO-1 task-2] 53sWqb4YSWWLrr8y_qXdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.036 [XNIO-1 task-2] 53sWqb4YSWWLrr8y_qXdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.036 [XNIO-1 task-2] 53sWqb4YSWWLrr8y_qXdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.036 [XNIO-1 task-2] 53sWqb4YSWWLrr8y_qXdWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.036 [XNIO-1 task-2] 53sWqb4YSWWLrr8y_qXdWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.039 [XNIO-1 task-2] uX6pSOlCTXiTypJ4VqW7eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d737244c-4205-427d-9714-21f88c2bdd63, base path is set to: null +16:40:12.039 [XNIO-1 task-2] uX6pSOlCTXiTypJ4VqW7eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.039 [XNIO-1 task-2] uX6pSOlCTXiTypJ4VqW7eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.039 [XNIO-1 task-2] uX6pSOlCTXiTypJ4VqW7eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/d737244c-4205-427d-9714-21f88c2bdd63, base path is set to: null +16:40:12.039 [XNIO-1 task-2] uX6pSOlCTXiTypJ4VqW7eA DEBUG com.networknt.schema.TypeValidator debug - validate( "d737244c-4205-427d-9714-21f88c2bdd63", "d737244c-4205-427d-9714-21f88c2bdd63", refreshToken) +16:40:12.040 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f4fad1e1 +16:40:12.043 [XNIO-1 task-2] uX6pSOlCTXiTypJ4VqW7eA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token d737244c-4205-427d-9714-21f88c2bdd63 is not found.","severity":"ERROR"} +16:40:12.045 [XNIO-1 task-2] G76VypnGQGaDihtnFwwEmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d737244c-4205-427d-9714-21f88c2bdd63 +16:40:12.045 [XNIO-1 task-2] G76VypnGQGaDihtnFwwEmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.045 [XNIO-1 task-2] G76VypnGQGaDihtnFwwEmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.046 [XNIO-1 task-2] G76VypnGQGaDihtnFwwEmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/d737244c-4205-427d-9714-21f88c2bdd63 +16:40:12.046 [XNIO-1 task-2] G76VypnGQGaDihtnFwwEmg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = d737244c-4205-427d-9714-21f88c2bdd63 +16:40:12.048 [XNIO-1 task-2] HJBDyTVBSryRUtwCfj2eGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.048 [XNIO-1 task-2] HJBDyTVBSryRUtwCfj2eGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.049 [XNIO-1 task-2] HJBDyTVBSryRUtwCfj2eGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.049 [XNIO-1 task-2] HJBDyTVBSryRUtwCfj2eGA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.056 [XNIO-1 task-2] 7v_bkUR0ReGaSjOorVqGjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.056 [XNIO-1 task-2] 7v_bkUR0ReGaSjOorVqGjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.056 [XNIO-1 task-2] 7v_bkUR0ReGaSjOorVqGjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.056 [XNIO-1 task-2] 7v_bkUR0ReGaSjOorVqGjQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.059 [XNIO-1 task-2] vlnx7VA_QoqFoPZdRyDQMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d0993a0-acc9-46c5-a066-c6cd3fd30009, base path is set to: null +16:40:12.059 [XNIO-1 task-2] vlnx7VA_QoqFoPZdRyDQMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.059 [XNIO-1 task-2] vlnx7VA_QoqFoPZdRyDQMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.060 [XNIO-1 task-2] vlnx7VA_QoqFoPZdRyDQMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d0993a0-acc9-46c5-a066-c6cd3fd30009, base path is set to: null +16:40:12.060 [XNIO-1 task-2] vlnx7VA_QoqFoPZdRyDQMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4d0993a0-acc9-46c5-a066-c6cd3fd30009", "4d0993a0-acc9-46c5-a066-c6cd3fd30009", refreshToken) +16:40:12.068 [XNIO-1 task-2] eT7V59nxQUWQVePFPPCd9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d0993a0-acc9-46c5-a066-c6cd3fd30009, base path is set to: null +16:40:12.069 [XNIO-1 task-2] eT7V59nxQUWQVePFPPCd9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.069 [XNIO-1 task-2] eT7V59nxQUWQVePFPPCd9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.069 [XNIO-1 task-2] eT7V59nxQUWQVePFPPCd9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4d0993a0-acc9-46c5-a066-c6cd3fd30009, base path is set to: null +16:40:12.069 [XNIO-1 task-2] eT7V59nxQUWQVePFPPCd9A DEBUG com.networknt.schema.TypeValidator debug - validate( "4d0993a0-acc9-46c5-a066-c6cd3fd30009", "4d0993a0-acc9-46c5-a066-c6cd3fd30009", refreshToken) +16:40:12.070 [XNIO-1 task-2] eT7V59nxQUWQVePFPPCd9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d0993a0-acc9-46c5-a066-c6cd3fd30009 is not found.","severity":"ERROR"} +16:40:12.074 [XNIO-1 task-2] 6ae4osIQR1OwI_b5VxK93A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.074 [XNIO-1 task-2] 6ae4osIQR1OwI_b5VxK93A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.074 [XNIO-1 task-2] 6ae4osIQR1OwI_b5VxK93A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.075 [XNIO-1 task-2] 6ae4osIQR1OwI_b5VxK93A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.075 [XNIO-1 task-2] 6ae4osIQR1OwI_b5VxK93A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.078 [XNIO-1 task-2] ujbCJvkcQsC-O4UKBqMJtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.078 [XNIO-1 task-2] ujbCJvkcQsC-O4UKBqMJtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.078 [XNIO-1 task-2] ujbCJvkcQsC-O4UKBqMJtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.078 [XNIO-1 task-2] ujbCJvkcQsC-O4UKBqMJtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.078 [XNIO-1 task-2] ujbCJvkcQsC-O4UKBqMJtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6390bda7-a01a-4dee-a69a-f06073a731db +16:40:12.081 [XNIO-1 task-2] Za6ic7wpR8-QVmVE2BBOlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.081 [XNIO-1 task-2] Za6ic7wpR8-QVmVE2BBOlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.081 [XNIO-1 task-2] Za6ic7wpR8-QVmVE2BBOlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.081 [XNIO-1 task-2] Za6ic7wpR8-QVmVE2BBOlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.082 [XNIO-1 task-2] Za6ic7wpR8-QVmVE2BBOlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.090 [XNIO-1 task-2] n8ZDTkPAR-CIh30QhDA1zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.090 [XNIO-1 task-2] n8ZDTkPAR-CIh30QhDA1zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.090 [XNIO-1 task-2] n8ZDTkPAR-CIh30QhDA1zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.090 [XNIO-1 task-2] n8ZDTkPAR-CIh30QhDA1zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.090 [XNIO-1 task-2] n8ZDTkPAR-CIh30QhDA1zQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.093 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ba1f97bb +16:40:12.097 [XNIO-1 task-2] x89m47pORRmg6uR8vEZU2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.097 [XNIO-1 task-2] x89m47pORRmg6uR8vEZU2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.097 [XNIO-1 task-2] x89m47pORRmg6uR8vEZU2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.098 [XNIO-1 task-2] x89m47pORRmg6uR8vEZU2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.098 [XNIO-1 task-2] x89m47pORRmg6uR8vEZU2w DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.100 [XNIO-1 task-2] x89m47pORRmg6uR8vEZU2w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.106 [XNIO-1 task-2] 4UGi70l-SUmFPqiuL0nRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.106 [XNIO-1 task-2] 4UGi70l-SUmFPqiuL0nRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.106 [XNIO-1 task-2] 4UGi70l-SUmFPqiuL0nRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.106 [XNIO-1 task-2] 4UGi70l-SUmFPqiuL0nRtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.107 [XNIO-1 task-2] 4UGi70l-SUmFPqiuL0nRtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.114 [XNIO-1 task-2] 8IOJpFcqRwyjeb0JHfJ8Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.114 [XNIO-1 task-2] 8IOJpFcqRwyjeb0JHfJ8Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.114 [XNIO-1 task-2] 8IOJpFcqRwyjeb0JHfJ8Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.114 [XNIO-1 task-2] 8IOJpFcqRwyjeb0JHfJ8Fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.114 [XNIO-1 task-2] 8IOJpFcqRwyjeb0JHfJ8Fg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.123 [XNIO-1 task-2] LzUlJRXURCyurba-Ly0ekA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.123 [XNIO-1 task-2] LzUlJRXURCyurba-Ly0ekA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.123 [XNIO-1 task-2] LzUlJRXURCyurba-Ly0ekA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.123 [XNIO-1 task-2] LzUlJRXURCyurba-Ly0ekA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.123 [XNIO-1 task-2] LzUlJRXURCyurba-Ly0ekA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.123 [XNIO-1 task-2] LzUlJRXURCyurba-Ly0ekA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.126 [XNIO-1 task-2] e-DoViBhQbeoeiSMS0-JTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.126 [XNIO-1 task-2] e-DoViBhQbeoeiSMS0-JTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.126 [XNIO-1 task-2] e-DoViBhQbeoeiSMS0-JTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.126 [XNIO-1 task-2] e-DoViBhQbeoeiSMS0-JTQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.130 [XNIO-1 task-2] 46BdYxOwRMiTzcm7WJEGgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.130 [XNIO-1 task-2] 46BdYxOwRMiTzcm7WJEGgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.130 [XNIO-1 task-2] 46BdYxOwRMiTzcm7WJEGgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.131 [XNIO-1 task-2] 46BdYxOwRMiTzcm7WJEGgg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.136 [XNIO-1 task-2] 7OAYXiw_RRmSHpULNLA-dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.136 [XNIO-1 task-2] 7OAYXiw_RRmSHpULNLA-dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.136 [XNIO-1 task-2] 7OAYXiw_RRmSHpULNLA-dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.136 [XNIO-1 task-2] 7OAYXiw_RRmSHpULNLA-dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.136 [XNIO-1 task-2] 7OAYXiw_RRmSHpULNLA-dw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.138 [XNIO-1 task-2] 7-lfFIw1SD6ziiBNwgX7rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.139 [XNIO-1 task-2] 7-lfFIw1SD6ziiBNwgX7rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.139 [XNIO-1 task-2] 7-lfFIw1SD6ziiBNwgX7rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.139 [XNIO-1 task-2] 7-lfFIw1SD6ziiBNwgX7rw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.141 [XNIO-1 task-2] A5bR5X82SaGlSTF5635Kyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.141 [XNIO-1 task-2] A5bR5X82SaGlSTF5635Kyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.141 [XNIO-1 task-2] A5bR5X82SaGlSTF5635Kyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.141 [XNIO-1 task-2] A5bR5X82SaGlSTF5635Kyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.146 [XNIO-1 task-2] ccc_D2VpRZ2tu6UVDMRN4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.146 [XNIO-1 task-2] ccc_D2VpRZ2tu6UVDMRN4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.146 [XNIO-1 task-2] ccc_D2VpRZ2tu6UVDMRN4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.146 [XNIO-1 task-2] ccc_D2VpRZ2tu6UVDMRN4g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.146 [XNIO-1 task-2] ccc_D2VpRZ2tu6UVDMRN4g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.154 [XNIO-1 task-2] s1sgd3p6QdOspzVpWmM4wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.154 [XNIO-1 task-2] s1sgd3p6QdOspzVpWmM4wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.154 [XNIO-1 task-2] s1sgd3p6QdOspzVpWmM4wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.154 [XNIO-1 task-2] s1sgd3p6QdOspzVpWmM4wA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.156 [XNIO-1 task-2] NgN6FUTpTcOEvZmqCfcbHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.156 [XNIO-1 task-2] NgN6FUTpTcOEvZmqCfcbHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.156 [XNIO-1 task-2] NgN6FUTpTcOEvZmqCfcbHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.157 [XNIO-1 task-2] NgN6FUTpTcOEvZmqCfcbHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.157 [XNIO-1 task-2] NgN6FUTpTcOEvZmqCfcbHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.160 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:49f90eef-86b0-4668-b869-7957cfe17d2b +16:40:12.160 [XNIO-1 task-2] neNXhUYnSYuKGSvJv8r3RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.160 [XNIO-1 task-2] neNXhUYnSYuKGSvJv8r3RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.160 [XNIO-1 task-2] neNXhUYnSYuKGSvJv8r3RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.160 [XNIO-1 task-2] neNXhUYnSYuKGSvJv8r3RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.160 [XNIO-1 task-2] neNXhUYnSYuKGSvJv8r3RA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:12.161 [XNIO-1 task-2] neNXhUYnSYuKGSvJv8r3RA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:12.163 [XNIO-1 task-2] 8OX0kjFGRw-6Eue2sGGrkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.163 [XNIO-1 task-2] 8OX0kjFGRw-6Eue2sGGrkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.163 [XNIO-1 task-2] 8OX0kjFGRw-6Eue2sGGrkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.163 [XNIO-1 task-2] 8OX0kjFGRw-6Eue2sGGrkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.163 [XNIO-1 task-2] 8OX0kjFGRw-6Eue2sGGrkA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.166 [XNIO-1 task-2] qkfVANVFQfKq8axHOI3aOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.166 [XNIO-1 task-2] qkfVANVFQfKq8axHOI3aOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.166 [XNIO-1 task-2] qkfVANVFQfKq8axHOI3aOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.166 [XNIO-1 task-2] qkfVANVFQfKq8axHOI3aOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.170 [XNIO-1 task-2] 0z6evQqYQI2r1sWDVibP5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.170 [XNIO-1 task-2] 0z6evQqYQI2r1sWDVibP5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.170 [XNIO-1 task-2] 0z6evQqYQI2r1sWDVibP5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.170 [XNIO-1 task-2] 0z6evQqYQI2r1sWDVibP5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.171 [XNIO-1 task-2] 0z6evQqYQI2r1sWDVibP5w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.178 [XNIO-1 task-2] -4sHpUSSSU-L6ARj-PCxxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.178 [XNIO-1 task-2] -4sHpUSSSU-L6ARj-PCxxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.178 [XNIO-1 task-2] -4sHpUSSSU-L6ARj-PCxxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.178 [XNIO-1 task-2] -4sHpUSSSU-L6ARj-PCxxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.178 [XNIO-1 task-2] -4sHpUSSSU-L6ARj-PCxxg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.179 [XNIO-1 task-2] -4sHpUSSSU-L6ARj-PCxxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.181 [XNIO-1 task-2] FzzJDnLHTJiFBRQqkCLk_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49f90eef-86b0-4668-b869-7957cfe17d2b +16:40:12.181 [XNIO-1 task-2] FzzJDnLHTJiFBRQqkCLk_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.181 [XNIO-1 task-2] FzzJDnLHTJiFBRQqkCLk_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.181 [XNIO-1 task-2] FzzJDnLHTJiFBRQqkCLk_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49f90eef-86b0-4668-b869-7957cfe17d2b +16:40:12.181 [XNIO-1 task-2] FzzJDnLHTJiFBRQqkCLk_w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 49f90eef-86b0-4668-b869-7957cfe17d2b +16:40:12.185 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ba1f97bb +16:40:12.187 [XNIO-1 task-2] FzzJDnLHTJiFBRQqkCLk_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 49f90eef-86b0-4668-b869-7957cfe17d2b is not found.","severity":"ERROR"} +16:40:12.189 [XNIO-1 task-2] ouAFzpFxS4iI63r0Vwu2Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.189 [XNIO-1 task-2] ouAFzpFxS4iI63r0Vwu2Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.189 [XNIO-1 task-2] ouAFzpFxS4iI63r0Vwu2Qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.189 [XNIO-1 task-2] ouAFzpFxS4iI63r0Vwu2Qg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.192 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7609cf5c-c38b-4cb8-a15e-e6084c1205bd +16:40:12.194 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7609cf5c-c38b-4cb8-a15e-e6084c1205bd +16:40:12.194 [XNIO-1 task-2] Imwv56spT7Cbzq0a_t1TlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.194 [XNIO-1 task-2] Imwv56spT7Cbzq0a_t1TlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.195 [XNIO-1 task-2] Imwv56spT7Cbzq0a_t1TlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.196 [XNIO-1 task-2] Imwv56spT7Cbzq0a_t1TlA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.198 [XNIO-1 task-2] t-yWmIvhQRSBjhwEfWwsIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aa62d50d-1ce7-4065-9e3f-8827fda6db5a +16:40:12.198 [XNIO-1 task-2] t-yWmIvhQRSBjhwEfWwsIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.198 [XNIO-1 task-2] t-yWmIvhQRSBjhwEfWwsIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.198 [XNIO-1 task-2] t-yWmIvhQRSBjhwEfWwsIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/aa62d50d-1ce7-4065-9e3f-8827fda6db5a +16:40:12.199 [XNIO-1 task-2] t-yWmIvhQRSBjhwEfWwsIg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = aa62d50d-1ce7-4065-9e3f-8827fda6db5a +16:40:12.204 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f4fad1e1 +16:40:12.205 [XNIO-1 task-2] oQhEEDn6TKaQ_qYY1ttIsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.205 [XNIO-1 task-2] oQhEEDn6TKaQ_qYY1ttIsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.205 [XNIO-1 task-2] oQhEEDn6TKaQ_qYY1ttIsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.205 [XNIO-1 task-2] oQhEEDn6TKaQ_qYY1ttIsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.205 [XNIO-1 task-2] oQhEEDn6TKaQ_qYY1ttIsQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.210 [XNIO-1 task-2] mp0CP5i8Q5eTpE0IjojDXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.210 [XNIO-1 task-2] mp0CP5i8Q5eTpE0IjojDXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.210 [XNIO-1 task-2] mp0CP5i8Q5eTpE0IjojDXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.210 [XNIO-1 task-2] mp0CP5i8Q5eTpE0IjojDXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.210 [XNIO-1 task-2] mp0CP5i8Q5eTpE0IjojDXA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.214 [XNIO-1 task-2] c0nEYqEzTLqg4M3d7gWi9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.214 [XNIO-1 task-2] c0nEYqEzTLqg4M3d7gWi9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.214 [XNIO-1 task-2] c0nEYqEzTLqg4M3d7gWi9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.215 [XNIO-1 task-2] c0nEYqEzTLqg4M3d7gWi9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.215 [XNIO-1 task-2] c0nEYqEzTLqg4M3d7gWi9A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.220 [XNIO-1 task-2] p4QQuHi4SRexSNhm0CaVTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.220 [XNIO-1 task-2] p4QQuHi4SRexSNhm0CaVTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.220 [XNIO-1 task-2] p4QQuHi4SRexSNhm0CaVTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.220 [XNIO-1 task-2] p4QQuHi4SRexSNhm0CaVTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.233 [XNIO-1 task-2] SUQ5uG-9RouosmA_EsJ2LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.233 [XNIO-1 task-2] SUQ5uG-9RouosmA_EsJ2LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.234 [XNIO-1 task-2] SUQ5uG-9RouosmA_EsJ2LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.234 [XNIO-1 task-2] SUQ5uG-9RouosmA_EsJ2LQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.240 [XNIO-1 task-2] GM9k1ru-SsavpPiC2zx-Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.240 [XNIO-1 task-2] GM9k1ru-SsavpPiC2zx-Ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.240 [XNIO-1 task-2] GM9k1ru-SsavpPiC2zx-Ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.240 [XNIO-1 task-2] GM9k1ru-SsavpPiC2zx-Ng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.243 [XNIO-1 task-2] sRTY_U3USZSDbtFQWYtvqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.243 [XNIO-1 task-2] sRTY_U3USZSDbtFQWYtvqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.243 [XNIO-1 task-2] sRTY_U3USZSDbtFQWYtvqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.243 [XNIO-1 task-2] sRTY_U3USZSDbtFQWYtvqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.243 [XNIO-1 task-2] sRTY_U3USZSDbtFQWYtvqA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.256 [XNIO-1 task-2] q52UTVSsSLy350C-Ar8gxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.256 [XNIO-1 task-2] q52UTVSsSLy350C-Ar8gxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.256 [XNIO-1 task-2] q52UTVSsSLy350C-Ar8gxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.256 [XNIO-1 task-2] q52UTVSsSLy350C-Ar8gxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.256 [XNIO-1 task-2] q52UTVSsSLy350C-Ar8gxw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.258 [XNIO-1 task-2] q52UTVSsSLy350C-Ar8gxw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.260 [XNIO-1 task-2] DhKg3u6YSgCUyd38I_IsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.260 [XNIO-1 task-2] DhKg3u6YSgCUyd38I_IsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.260 [XNIO-1 task-2] DhKg3u6YSgCUyd38I_IsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.260 [XNIO-1 task-2] DhKg3u6YSgCUyd38I_IsFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.260 [XNIO-1 task-2] DhKg3u6YSgCUyd38I_IsFw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.263 [XNIO-1 task-2] McDdzqLpRPSO_3993It5Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.263 [XNIO-1 task-2] McDdzqLpRPSO_3993It5Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.263 [XNIO-1 task-2] McDdzqLpRPSO_3993It5Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.263 [XNIO-1 task-2] McDdzqLpRPSO_3993It5Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.263 [XNIO-1 task-2] McDdzqLpRPSO_3993It5Tw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.269 [XNIO-1 task-2] h_pNwEVUQwKBXsvGnBpgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.269 [XNIO-1 task-2] h_pNwEVUQwKBXsvGnBpgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.269 [XNIO-1 task-2] h_pNwEVUQwKBXsvGnBpgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.269 [XNIO-1 task-2] h_pNwEVUQwKBXsvGnBpgZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.269 [XNIO-1 task-2] h_pNwEVUQwKBXsvGnBpgZA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.274 [XNIO-1 task-2] _1J-xZ85Qsi_EgvwbnbQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.275 [XNIO-1 task-2] _1J-xZ85Qsi_EgvwbnbQ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.275 [XNIO-1 task-2] _1J-xZ85Qsi_EgvwbnbQ-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.275 [XNIO-1 task-2] _1J-xZ85Qsi_EgvwbnbQ-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.275 [XNIO-1 task-2] _1J-xZ85Qsi_EgvwbnbQ-g DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.275 [XNIO-1 task-2] _1J-xZ85Qsi_EgvwbnbQ-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.277 [XNIO-1 task-2] jc8Ov-_PQp6ExHLXh2ATtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.278 [XNIO-1 task-2] jc8Ov-_PQp6ExHLXh2ATtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.278 [XNIO-1 task-2] jc8Ov-_PQp6ExHLXh2ATtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.278 [XNIO-1 task-2] jc8Ov-_PQp6ExHLXh2ATtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.278 [XNIO-1 task-2] jc8Ov-_PQp6ExHLXh2ATtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.280 [XNIO-1 task-2] VlJhQZKwQXWHS48cngQtxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.280 [XNIO-1 task-2] VlJhQZKwQXWHS48cngQtxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.280 [XNIO-1 task-2] VlJhQZKwQXWHS48cngQtxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.280 [XNIO-1 task-2] VlJhQZKwQXWHS48cngQtxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.280 [XNIO-1 task-2] VlJhQZKwQXWHS48cngQtxg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.280 [XNIO-1 task-2] VlJhQZKwQXWHS48cngQtxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.282 [XNIO-1 task-2] ebxgV6CcTrO_13VcShjLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.282 [XNIO-1 task-2] ebxgV6CcTrO_13VcShjLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.282 [XNIO-1 task-2] ebxgV6CcTrO_13VcShjLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.282 [XNIO-1 task-2] ebxgV6CcTrO_13VcShjLqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.282 [XNIO-1 task-2] ebxgV6CcTrO_13VcShjLqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.284 [XNIO-1 task-2] ryq8FrWjSJatlcES0Po_3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.284 [XNIO-1 task-2] ryq8FrWjSJatlcES0Po_3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.284 [XNIO-1 task-2] ryq8FrWjSJatlcES0Po_3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.284 [XNIO-1 task-2] ryq8FrWjSJatlcES0Po_3g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.284 [XNIO-1 task-2] ryq8FrWjSJatlcES0Po_3g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.289 [XNIO-1 task-2] le1Ya7ZORtuhz4CySDV3rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.289 [XNIO-1 task-2] le1Ya7ZORtuhz4CySDV3rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.289 [XNIO-1 task-2] le1Ya7ZORtuhz4CySDV3rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.289 [XNIO-1 task-2] le1Ya7ZORtuhz4CySDV3rQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.293 [XNIO-1 task-2] z5Dt7udbTveC2sUCKSiJhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.293 [XNIO-1 task-2] z5Dt7udbTveC2sUCKSiJhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.294 [XNIO-1 task-2] z5Dt7udbTveC2sUCKSiJhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.294 [XNIO-1 task-2] z5Dt7udbTveC2sUCKSiJhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.294 [XNIO-1 task-2] z5Dt7udbTveC2sUCKSiJhg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.294 [XNIO-1 task-2] z5Dt7udbTveC2sUCKSiJhg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.296 [XNIO-1 task-2] XYf1yVuETgm3nWyYm8SDHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.296 [XNIO-1 task-2] XYf1yVuETgm3nWyYm8SDHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.296 [XNIO-1 task-2] XYf1yVuETgm3nWyYm8SDHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.296 [XNIO-1 task-2] XYf1yVuETgm3nWyYm8SDHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.303 [XNIO-1 task-2] 6mE2BuOvTw2KjbgtkeO_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.304 [XNIO-1 task-2] 6mE2BuOvTw2KjbgtkeO_AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.304 [XNIO-1 task-2] 6mE2BuOvTw2KjbgtkeO_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.304 [XNIO-1 task-2] 6mE2BuOvTw2KjbgtkeO_AA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.305 [XNIO-1 task-2] x1rFYjkqR_-ZVE8wWmY6Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.305 [XNIO-1 task-2] x1rFYjkqR_-ZVE8wWmY6Jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.306 [XNIO-1 task-2] x1rFYjkqR_-ZVE8wWmY6Jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.306 [XNIO-1 task-2] x1rFYjkqR_-ZVE8wWmY6Jg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.307 [XNIO-1 task-2] y-OsliWATYCKFlr2jLw0fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.307 [XNIO-1 task-2] y-OsliWATYCKFlr2jLw0fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.307 [XNIO-1 task-2] y-OsliWATYCKFlr2jLw0fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.307 [XNIO-1 task-2] y-OsliWATYCKFlr2jLw0fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.308 [XNIO-1 task-2] y-OsliWATYCKFlr2jLw0fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.308 [XNIO-1 task-2] y-OsliWATYCKFlr2jLw0fQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.311 [XNIO-1 task-2] go-dG1R-RWSNr0te1lyG8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.311 [XNIO-1 task-2] go-dG1R-RWSNr0te1lyG8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.311 [XNIO-1 task-2] go-dG1R-RWSNr0te1lyG8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.311 [XNIO-1 task-2] go-dG1R-RWSNr0te1lyG8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.311 [XNIO-1 task-2] go-dG1R-RWSNr0te1lyG8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.313 [XNIO-1 task-2] B7GCNoS8RHKXz4gGIlSBow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.313 [XNIO-1 task-2] B7GCNoS8RHKXz4gGIlSBow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.314 [XNIO-1 task-2] B7GCNoS8RHKXz4gGIlSBow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.314 [XNIO-1 task-2] B7GCNoS8RHKXz4gGIlSBow ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.316 [XNIO-1 task-2] NKFpRFi6QSy1moiBrugihA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.316 [XNIO-1 task-2] NKFpRFi6QSy1moiBrugihA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.316 [XNIO-1 task-2] NKFpRFi6QSy1moiBrugihA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.317 [XNIO-1 task-2] NKFpRFi6QSy1moiBrugihA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.318 [XNIO-1 task-2] Cmw-5oTpSWmdtMPEL6YT-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.318 [XNIO-1 task-2] Cmw-5oTpSWmdtMPEL6YT-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.318 [XNIO-1 task-2] Cmw-5oTpSWmdtMPEL6YT-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.318 [XNIO-1 task-2] Cmw-5oTpSWmdtMPEL6YT-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.318 [XNIO-1 task-2] Cmw-5oTpSWmdtMPEL6YT-g DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:12.319 [XNIO-1 task-2] Cmw-5oTpSWmdtMPEL6YT-g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:12.320 [XNIO-1 task-2] GJTLIma4QYifnKQiUo4kPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.320 [XNIO-1 task-2] GJTLIma4QYifnKQiUo4kPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.320 [XNIO-1 task-2] GJTLIma4QYifnKQiUo4kPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.320 [XNIO-1 task-2] GJTLIma4QYifnKQiUo4kPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.321 [XNIO-1 task-2] GJTLIma4QYifnKQiUo4kPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.322 [XNIO-1 task-2] xuvme3ORTsqKGJ9vX4AG8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.322 [XNIO-1 task-2] xuvme3ORTsqKGJ9vX4AG8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.322 [XNIO-1 task-2] xuvme3ORTsqKGJ9vX4AG8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.322 [XNIO-1 task-2] xuvme3ORTsqKGJ9vX4AG8w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.323 [XNIO-1 task-2] xuvme3ORTsqKGJ9vX4AG8w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.328 [XNIO-1 task-2] aIHnmk8cR4mQLq_tvpX8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.328 [XNIO-1 task-2] aIHnmk8cR4mQLq_tvpX8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.328 [XNIO-1 task-2] aIHnmk8cR4mQLq_tvpX8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.328 [XNIO-1 task-2] aIHnmk8cR4mQLq_tvpX8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.328 [XNIO-1 task-2] aIHnmk8cR4mQLq_tvpX8Mg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.330 [XNIO-1 task-2] O3lWi7QaRXCQJX1QWaLD9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.330 [XNIO-1 task-2] O3lWi7QaRXCQJX1QWaLD9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.330 [XNIO-1 task-2] O3lWi7QaRXCQJX1QWaLD9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.330 [XNIO-1 task-2] O3lWi7QaRXCQJX1QWaLD9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.330 [XNIO-1 task-2] O3lWi7QaRXCQJX1QWaLD9g DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.330 [XNIO-1 task-2] O3lWi7QaRXCQJX1QWaLD9g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.332 [XNIO-1 task-2] ToFh6tWWTeirwMSxk37d5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.332 [XNIO-1 task-2] ToFh6tWWTeirwMSxk37d5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.332 [XNIO-1 task-2] ToFh6tWWTeirwMSxk37d5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.334 [XNIO-1 task-2] ToFh6tWWTeirwMSxk37d5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.334 [XNIO-1 task-2] ToFh6tWWTeirwMSxk37d5w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.336 [XNIO-1 task-2] MRbTvVeuT86ggBs7dpKc0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.336 [XNIO-1 task-2] MRbTvVeuT86ggBs7dpKc0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.336 [XNIO-1 task-2] MRbTvVeuT86ggBs7dpKc0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.336 [XNIO-1 task-2] MRbTvVeuT86ggBs7dpKc0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.336 [XNIO-1 task-2] MRbTvVeuT86ggBs7dpKc0w DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.336 [XNIO-1 task-2] MRbTvVeuT86ggBs7dpKc0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.339 [XNIO-1 task-2] hjW7c5c7RZyUZyyQ3kSQ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.339 [XNIO-1 task-2] hjW7c5c7RZyUZyyQ3kSQ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.339 [XNIO-1 task-2] hjW7c5c7RZyUZyyQ3kSQ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.339 [XNIO-1 task-2] hjW7c5c7RZyUZyyQ3kSQ9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.339 [XNIO-1 task-2] hjW7c5c7RZyUZyyQ3kSQ9g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.346 [XNIO-1 task-2] Q3iPSwQtR72MPYGEFhNDdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.347 [XNIO-1 task-2] Q3iPSwQtR72MPYGEFhNDdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.347 [XNIO-1 task-2] Q3iPSwQtR72MPYGEFhNDdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.347 [XNIO-1 task-2] Q3iPSwQtR72MPYGEFhNDdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.347 [XNIO-1 task-2] Q3iPSwQtR72MPYGEFhNDdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.347 [XNIO-1 task-2] Q3iPSwQtR72MPYGEFhNDdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.350 [XNIO-1 task-2] ZfhHsIQuTDSSlgw1VYFYhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.350 [XNIO-1 task-2] ZfhHsIQuTDSSlgw1VYFYhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.350 [XNIO-1 task-2] ZfhHsIQuTDSSlgw1VYFYhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.350 [XNIO-1 task-2] ZfhHsIQuTDSSlgw1VYFYhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.350 [XNIO-1 task-2] ZfhHsIQuTDSSlgw1VYFYhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.352 [XNIO-1 task-2] 3EOnL0twQniaGVq_cQYERg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.352 [XNIO-1 task-2] 3EOnL0twQniaGVq_cQYERg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.352 [XNIO-1 task-2] 3EOnL0twQniaGVq_cQYERg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.352 [XNIO-1 task-2] 3EOnL0twQniaGVq_cQYERg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.352 [XNIO-1 task-2] 3EOnL0twQniaGVq_cQYERg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.352 [XNIO-1 task-2] 3EOnL0twQniaGVq_cQYERg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.354 [XNIO-1 task-2] xMcHQiDRSiy9FFi7WEq7Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.354 [XNIO-1 task-2] xMcHQiDRSiy9FFi7WEq7Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.354 [XNIO-1 task-2] xMcHQiDRSiy9FFi7WEq7Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.355 [XNIO-1 task-2] xMcHQiDRSiy9FFi7WEq7Wg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.356 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3fd57271-b059-40ed-8ed5-9a204910e899 +16:40:12.361 [XNIO-1 task-2] spVmhmZBRwqYmG-NyeAGZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.361 [XNIO-1 task-2] spVmhmZBRwqYmG-NyeAGZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.361 [XNIO-1 task-2] spVmhmZBRwqYmG-NyeAGZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.361 [XNIO-1 task-2] spVmhmZBRwqYmG-NyeAGZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.361 [XNIO-1 task-2] spVmhmZBRwqYmG-NyeAGZg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.369 [XNIO-1 task-2] zXo5bWxhTjKNEg1nY8x5KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.369 [XNIO-1 task-2] zXo5bWxhTjKNEg1nY8x5KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.369 [XNIO-1 task-2] zXo5bWxhTjKNEg1nY8x5KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.369 [XNIO-1 task-2] zXo5bWxhTjKNEg1nY8x5KA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.377 [XNIO-1 task-2] BHx6eXyNQL6qP4_yD7nXCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.377 [XNIO-1 task-2] BHx6eXyNQL6qP4_yD7nXCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.377 [XNIO-1 task-2] BHx6eXyNQL6qP4_yD7nXCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.377 [XNIO-1 task-2] BHx6eXyNQL6qP4_yD7nXCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.377 [XNIO-1 task-2] BHx6eXyNQL6qP4_yD7nXCw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.377 [XNIO-1 task-2] BHx6eXyNQL6qP4_yD7nXCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.380 [XNIO-1 task-2] ggmEvTNNRuG8dBYZ-yTYdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.380 [XNIO-1 task-2] ggmEvTNNRuG8dBYZ-yTYdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.380 [XNIO-1 task-2] ggmEvTNNRuG8dBYZ-yTYdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.380 [XNIO-1 task-2] ggmEvTNNRuG8dBYZ-yTYdg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.382 [XNIO-1 task-2] gSifrulMQr2VTTvnV1RW-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.382 [XNIO-1 task-2] gSifrulMQr2VTTvnV1RW-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.382 [XNIO-1 task-2] gSifrulMQr2VTTvnV1RW-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.382 [XNIO-1 task-2] gSifrulMQr2VTTvnV1RW-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.382 [XNIO-1 task-2] gSifrulMQr2VTTvnV1RW-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.383 [XNIO-1 task-2] qQtYQKYtTeODea26VZ5CXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.384 [XNIO-1 task-2] qQtYQKYtTeODea26VZ5CXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.384 [XNIO-1 task-2] qQtYQKYtTeODea26VZ5CXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.384 [XNIO-1 task-2] qQtYQKYtTeODea26VZ5CXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.385 [XNIO-1 task-2] F7E-wvBwTTaEWdCmArADDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.385 [XNIO-1 task-2] F7E-wvBwTTaEWdCmArADDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.385 [XNIO-1 task-2] F7E-wvBwTTaEWdCmArADDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.385 [XNIO-1 task-2] F7E-wvBwTTaEWdCmArADDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.385 [XNIO-1 task-2] F7E-wvBwTTaEWdCmArADDw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.386 [XNIO-1 task-2] F7E-wvBwTTaEWdCmArADDw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.387 [XNIO-1 task-2] q_ggm3A6QKSFeyA2dgqvrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.387 [XNIO-1 task-2] q_ggm3A6QKSFeyA2dgqvrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.387 [XNIO-1 task-2] q_ggm3A6QKSFeyA2dgqvrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.387 [XNIO-1 task-2] q_ggm3A6QKSFeyA2dgqvrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.387 [XNIO-1 task-2] q_ggm3A6QKSFeyA2dgqvrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.399 [XNIO-1 task-2] VivKd3s7SN-87Lol8gWBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.399 [XNIO-1 task-2] VivKd3s7SN-87Lol8gWBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.399 [XNIO-1 task-2] VivKd3s7SN-87Lol8gWBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.399 [XNIO-1 task-2] VivKd3s7SN-87Lol8gWBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.400 [XNIO-1 task-2] VivKd3s7SN-87Lol8gWBlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.402 [XNIO-1 task-2] 5Tm6pKp3QFW9zX_w-tJGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.402 [XNIO-1 task-2] 5Tm6pKp3QFW9zX_w-tJGZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.402 [XNIO-1 task-2] 5Tm6pKp3QFW9zX_w-tJGZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.402 [XNIO-1 task-2] 5Tm6pKp3QFW9zX_w-tJGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.402 [XNIO-1 task-2] 5Tm6pKp3QFW9zX_w-tJGZw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.402 [XNIO-1 task-2] 5Tm6pKp3QFW9zX_w-tJGZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.405 [XNIO-1 task-2] GuAqtJ8jRESMwkqWomj7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.405 [XNIO-1 task-2] GuAqtJ8jRESMwkqWomj7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.405 [XNIO-1 task-2] GuAqtJ8jRESMwkqWomj7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.405 [XNIO-1 task-2] GuAqtJ8jRESMwkqWomj7ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.405 [XNIO-1 task-2] GuAqtJ8jRESMwkqWomj7ZQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.407 [XNIO-1 task-2] QT3B_ly8SAejKXe3XDLHSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.407 [XNIO-1 task-2] QT3B_ly8SAejKXe3XDLHSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.407 [XNIO-1 task-2] QT3B_ly8SAejKXe3XDLHSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.407 [XNIO-1 task-2] QT3B_ly8SAejKXe3XDLHSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.407 [XNIO-1 task-2] QT3B_ly8SAejKXe3XDLHSw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.407 [XNIO-1 task-2] QT3B_ly8SAejKXe3XDLHSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.409 [XNIO-1 task-2] KyzoR7jZSv29f6KwLMMtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.409 [XNIO-1 task-2] KyzoR7jZSv29f6KwLMMtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.409 [XNIO-1 task-2] KyzoR7jZSv29f6KwLMMtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.410 [XNIO-1 task-2] KyzoR7jZSv29f6KwLMMtNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.410 [XNIO-1 task-2] KyzoR7jZSv29f6KwLMMtNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.411 [XNIO-1 task-2] YC5_gYwgTEykB-IYP6DFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.412 [XNIO-1 task-2] YC5_gYwgTEykB-IYP6DFyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.412 [XNIO-1 task-2] YC5_gYwgTEykB-IYP6DFyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.412 [XNIO-1 task-2] YC5_gYwgTEykB-IYP6DFyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.412 [XNIO-1 task-2] YC5_gYwgTEykB-IYP6DFyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.413 [XNIO-1 task-2] YC5_gYwgTEykB-IYP6DFyQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.414 [XNIO-1 task-2] mQbZdc-RTf6Bb6OWPsmOHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.414 [XNIO-1 task-2] mQbZdc-RTf6Bb6OWPsmOHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.415 [XNIO-1 task-2] mQbZdc-RTf6Bb6OWPsmOHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.415 [XNIO-1 task-2] mQbZdc-RTf6Bb6OWPsmOHA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.417 [XNIO-1 task-2] KP6m8VpXRQiMytxyiM5fWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.417 [XNIO-1 task-2] KP6m8VpXRQiMytxyiM5fWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.417 [XNIO-1 task-2] KP6m8VpXRQiMytxyiM5fWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.417 [XNIO-1 task-2] KP6m8VpXRQiMytxyiM5fWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.417 [XNIO-1 task-2] KP6m8VpXRQiMytxyiM5fWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.424 [XNIO-1 task-2] T-zIUFUoRdqe6y-6_NEUTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.424 [XNIO-1 task-2] T-zIUFUoRdqe6y-6_NEUTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.424 [XNIO-1 task-2] T-zIUFUoRdqe6y-6_NEUTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.424 [XNIO-1 task-2] T-zIUFUoRdqe6y-6_NEUTA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.424 [XNIO-1 task-2] T-zIUFUoRdqe6y-6_NEUTA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.433 [XNIO-1 task-2] dEu7OQJeSOeHy4N_Y_vkiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.433 [XNIO-1 task-2] dEu7OQJeSOeHy4N_Y_vkiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.433 [XNIO-1 task-2] dEu7OQJeSOeHy4N_Y_vkiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.433 [XNIO-1 task-2] dEu7OQJeSOeHy4N_Y_vkiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.433 [XNIO-1 task-2] dEu7OQJeSOeHy4N_Y_vkiw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.435 [XNIO-1 task-2] SSUaGvSfSea5m-wO0q8OEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.435 [XNIO-1 task-2] SSUaGvSfSea5m-wO0q8OEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.435 [XNIO-1 task-2] SSUaGvSfSea5m-wO0q8OEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.435 [XNIO-1 task-2] SSUaGvSfSea5m-wO0q8OEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.435 [XNIO-1 task-2] SSUaGvSfSea5m-wO0q8OEg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.435 [XNIO-1 task-2] SSUaGvSfSea5m-wO0q8OEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.437 [XNIO-1 task-2] jiu9ojd3SkGZt0BQ5oH5UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.438 [XNIO-1 task-2] jiu9ojd3SkGZt0BQ5oH5UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.438 [XNIO-1 task-2] jiu9ojd3SkGZt0BQ5oH5UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.438 [XNIO-1 task-2] jiu9ojd3SkGZt0BQ5oH5UQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.440 [XNIO-1 task-2] hd-aYUoTTuSFPLo9jH0nbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.440 [XNIO-1 task-2] hd-aYUoTTuSFPLo9jH0nbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.440 [XNIO-1 task-2] hd-aYUoTTuSFPLo9jH0nbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.440 [XNIO-1 task-2] hd-aYUoTTuSFPLo9jH0nbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.440 [XNIO-1 task-2] hd-aYUoTTuSFPLo9jH0nbA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.444 [XNIO-1 task-2] GdwjOW4hSMatJpoehwD78g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.444 [XNIO-1 task-2] GdwjOW4hSMatJpoehwD78g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.444 [XNIO-1 task-2] GdwjOW4hSMatJpoehwD78g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.444 [XNIO-1 task-2] GdwjOW4hSMatJpoehwD78g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.445 [XNIO-1 task-2] GdwjOW4hSMatJpoehwD78g DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:12.445 [XNIO-1 task-2] GdwjOW4hSMatJpoehwD78g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:12.450 [XNIO-1 task-2] iOAO5apNRbS7cnXYDjjTsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.450 [XNIO-1 task-2] iOAO5apNRbS7cnXYDjjTsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.450 [XNIO-1 task-2] iOAO5apNRbS7cnXYDjjTsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.451 [XNIO-1 task-2] iOAO5apNRbS7cnXYDjjTsg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.454 [XNIO-1 task-2] 4KU0oFmPRNCLFFAMOs4IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.454 [XNIO-1 task-2] 4KU0oFmPRNCLFFAMOs4IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.454 [XNIO-1 task-2] 4KU0oFmPRNCLFFAMOs4IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.454 [XNIO-1 task-2] 4KU0oFmPRNCLFFAMOs4IWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.454 [XNIO-1 task-2] 4KU0oFmPRNCLFFAMOs4IWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.457 [XNIO-1 task-2] 0WB0NfYYTviBbXErf8p9fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.457 [XNIO-1 task-2] 0WB0NfYYTviBbXErf8p9fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.457 [XNIO-1 task-2] 0WB0NfYYTviBbXErf8p9fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.457 [XNIO-1 task-2] 0WB0NfYYTviBbXErf8p9fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.458 [XNIO-1 task-2] 0WB0NfYYTviBbXErf8p9fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.458 [XNIO-1 task-2] 0WB0NfYYTviBbXErf8p9fQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.459 [XNIO-1 task-2] g3y1bIepTky3GPRf-Y8ubg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.459 [XNIO-1 task-2] g3y1bIepTky3GPRf-Y8ubg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.459 [XNIO-1 task-2] g3y1bIepTky3GPRf-Y8ubg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.459 [XNIO-1 task-2] g3y1bIepTky3GPRf-Y8ubg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.460 [XNIO-1 task-2] g3y1bIepTky3GPRf-Y8ubg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.461 [XNIO-1 task-2] PAGZqXG-RbiWNJ1DpIhFag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.461 [XNIO-1 task-2] PAGZqXG-RbiWNJ1DpIhFag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.461 [XNIO-1 task-2] PAGZqXG-RbiWNJ1DpIhFag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.462 [XNIO-1 task-2] PAGZqXG-RbiWNJ1DpIhFag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.462 [XNIO-1 task-2] PAGZqXG-RbiWNJ1DpIhFag DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.462 [XNIO-1 task-2] PAGZqXG-RbiWNJ1DpIhFag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.465 [XNIO-1 task-2] 09gawJgLRBGTZLfAyqHRaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.465 [XNIO-1 task-2] 09gawJgLRBGTZLfAyqHRaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.465 [XNIO-1 task-2] 09gawJgLRBGTZLfAyqHRaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.466 [XNIO-1 task-2] 09gawJgLRBGTZLfAyqHRaw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.474 [XNIO-1 task-2] UQ6c2JUAQPOvzy3d70Yutg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.474 [XNIO-1 task-2] UQ6c2JUAQPOvzy3d70Yutg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.474 [XNIO-1 task-2] UQ6c2JUAQPOvzy3d70Yutg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.474 [XNIO-1 task-2] UQ6c2JUAQPOvzy3d70Yutg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.476 [XNIO-1 task-2] 976uTnkcR2ex6tkjudZ9Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.476 [XNIO-1 task-2] 976uTnkcR2ex6tkjudZ9Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.476 [XNIO-1 task-2] 976uTnkcR2ex6tkjudZ9Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.476 [XNIO-1 task-2] 976uTnkcR2ex6tkjudZ9Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.476 [XNIO-1 task-2] 976uTnkcR2ex6tkjudZ9Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.476 [XNIO-1 task-2] 976uTnkcR2ex6tkjudZ9Eg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.478 [XNIO-1 task-2] B4OU9VRmQxmB7WUzUCTEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.478 [XNIO-1 task-2] B4OU9VRmQxmB7WUzUCTEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.478 [XNIO-1 task-2] B4OU9VRmQxmB7WUzUCTEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.478 [XNIO-1 task-2] B4OU9VRmQxmB7WUzUCTEtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.478 [XNIO-1 task-2] B4OU9VRmQxmB7WUzUCTEtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.479 [XNIO-1 task-2] -B8tacMLT6ygfx9ksoZ7eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.479 [XNIO-1 task-2] -B8tacMLT6ygfx9ksoZ7eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.479 [XNIO-1 task-2] -B8tacMLT6ygfx9ksoZ7eQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.480 [XNIO-1 task-2] -B8tacMLT6ygfx9ksoZ7eQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.480 [XNIO-1 task-2] -B8tacMLT6ygfx9ksoZ7eQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.480 [XNIO-1 task-2] -B8tacMLT6ygfx9ksoZ7eQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.481 [XNIO-1 task-2] eyPvzmsNTkyH2F-ORIAvLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.481 [XNIO-1 task-2] eyPvzmsNTkyH2F-ORIAvLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.482 [XNIO-1 task-2] eyPvzmsNTkyH2F-ORIAvLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.482 [XNIO-1 task-2] eyPvzmsNTkyH2F-ORIAvLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.482 [XNIO-1 task-2] eyPvzmsNTkyH2F-ORIAvLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.483 [XNIO-1 task-2] uVZIycfeRvWB0Pg5AU_7Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.483 [XNIO-1 task-2] uVZIycfeRvWB0Pg5AU_7Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.483 [XNIO-1 task-2] uVZIycfeRvWB0Pg5AU_7Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.483 [XNIO-1 task-2] uVZIycfeRvWB0Pg5AU_7Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.483 [XNIO-1 task-2] uVZIycfeRvWB0Pg5AU_7Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.483 [XNIO-1 task-2] uVZIycfeRvWB0Pg5AU_7Fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.485 [XNIO-1 task-2] ox1mhlFAR2GAWzSGo70lvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.485 [XNIO-1 task-2] ox1mhlFAR2GAWzSGo70lvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.485 [XNIO-1 task-2] ox1mhlFAR2GAWzSGo70lvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.485 [XNIO-1 task-2] ox1mhlFAR2GAWzSGo70lvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.485 [XNIO-1 task-2] ox1mhlFAR2GAWzSGo70lvg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.487 [XNIO-1 task-2] Kvi-uOW5TJuGUrJ8yivDQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.487 [XNIO-1 task-2] Kvi-uOW5TJuGUrJ8yivDQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.487 [XNIO-1 task-2] Kvi-uOW5TJuGUrJ8yivDQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.487 [XNIO-1 task-2] Kvi-uOW5TJuGUrJ8yivDQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.487 [XNIO-1 task-2] Kvi-uOW5TJuGUrJ8yivDQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.487 [XNIO-1 task-2] Kvi-uOW5TJuGUrJ8yivDQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.489 [XNIO-1 task-2] 3jbjx43MQM-zj-aC50vtWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.489 [XNIO-1 task-2] 3jbjx43MQM-zj-aC50vtWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.489 [XNIO-1 task-2] 3jbjx43MQM-zj-aC50vtWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.489 [XNIO-1 task-2] 3jbjx43MQM-zj-aC50vtWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.489 [XNIO-1 task-2] 3jbjx43MQM-zj-aC50vtWw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.490 [XNIO-1 task-2] YK3dte7QTLWVLq8OjtvL8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.490 [XNIO-1 task-2] YK3dte7QTLWVLq8OjtvL8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.490 [XNIO-1 task-2] YK3dte7QTLWVLq8OjtvL8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.491 [XNIO-1 task-2] YK3dte7QTLWVLq8OjtvL8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.491 [XNIO-1 task-2] YK3dte7QTLWVLq8OjtvL8A DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:12.491 [XNIO-1 task-2] YK3dte7QTLWVLq8OjtvL8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:12.492 [XNIO-1 task-2] mc1vQPfFShyBbLhTefq8gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.492 [XNIO-1 task-2] mc1vQPfFShyBbLhTefq8gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.492 [XNIO-1 task-2] mc1vQPfFShyBbLhTefq8gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.492 [XNIO-1 task-2] mc1vQPfFShyBbLhTefq8gw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.494 [XNIO-1 task-2] 9Tr63AIAT8ed9yo1g7KvlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.494 [XNIO-1 task-2] 9Tr63AIAT8ed9yo1g7KvlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.494 [XNIO-1 task-2] 9Tr63AIAT8ed9yo1g7KvlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.494 [XNIO-1 task-2] 9Tr63AIAT8ed9yo1g7KvlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.494 [XNIO-1 task-2] 9Tr63AIAT8ed9yo1g7KvlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.502 [XNIO-1 task-2] 5vrPraDySUqRSvYJeGgIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.502 [XNIO-1 task-2] 5vrPraDySUqRSvYJeGgIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.502 [XNIO-1 task-2] 5vrPraDySUqRSvYJeGgIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.502 [XNIO-1 task-2] 5vrPraDySUqRSvYJeGgIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.502 [XNIO-1 task-2] 5vrPraDySUqRSvYJeGgIDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.504 [XNIO-1 task-2] wrL7GONPRzmCWCJhWeQFNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.504 [XNIO-1 task-2] wrL7GONPRzmCWCJhWeQFNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.504 [XNIO-1 task-2] wrL7GONPRzmCWCJhWeQFNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.504 [XNIO-1 task-2] wrL7GONPRzmCWCJhWeQFNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.504 [XNIO-1 task-2] wrL7GONPRzmCWCJhWeQFNw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.504 [XNIO-1 task-2] wrL7GONPRzmCWCJhWeQFNw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.506 [XNIO-1 task-2] GJfGgiBGRlCzwW09cj3cDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.506 [XNIO-1 task-2] GJfGgiBGRlCzwW09cj3cDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.506 [XNIO-1 task-2] GJfGgiBGRlCzwW09cj3cDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.506 [XNIO-1 task-2] GJfGgiBGRlCzwW09cj3cDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.506 [XNIO-1 task-2] GJfGgiBGRlCzwW09cj3cDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.508 [XNIO-1 task-2] zos3k4usS7WFTXgSsMMpjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.508 [XNIO-1 task-2] zos3k4usS7WFTXgSsMMpjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.508 [XNIO-1 task-2] zos3k4usS7WFTXgSsMMpjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.508 [XNIO-1 task-2] zos3k4usS7WFTXgSsMMpjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.508 [XNIO-1 task-2] zos3k4usS7WFTXgSsMMpjg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.508 [XNIO-1 task-2] zos3k4usS7WFTXgSsMMpjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.510 [XNIO-1 task-2] DG9Vcby2ReuZvCjLKDVqrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.510 [XNIO-1 task-2] DG9Vcby2ReuZvCjLKDVqrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.510 [XNIO-1 task-2] DG9Vcby2ReuZvCjLKDVqrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.510 [XNIO-1 task-2] DG9Vcby2ReuZvCjLKDVqrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.513 [XNIO-1 task-2] UJfQjyJfT_yKXrW3V54png DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.513 [XNIO-1 task-2] UJfQjyJfT_yKXrW3V54png DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.513 [XNIO-1 task-2] UJfQjyJfT_yKXrW3V54png DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.514 [XNIO-1 task-2] UJfQjyJfT_yKXrW3V54png DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.514 [XNIO-1 task-2] UJfQjyJfT_yKXrW3V54png DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.514 [XNIO-1 task-2] UJfQjyJfT_yKXrW3V54png ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.515 [XNIO-1 task-2] maJhA8aST46O6U7iyO8YDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.515 [XNIO-1 task-2] maJhA8aST46O6U7iyO8YDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.516 [XNIO-1 task-2] maJhA8aST46O6U7iyO8YDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.516 [XNIO-1 task-2] maJhA8aST46O6U7iyO8YDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.516 [XNIO-1 task-2] maJhA8aST46O6U7iyO8YDQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.517 [XNIO-1 task-2] yUcGYxNKQvOfrCfwrgl0XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.517 [XNIO-1 task-2] yUcGYxNKQvOfrCfwrgl0XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.517 [XNIO-1 task-2] yUcGYxNKQvOfrCfwrgl0XA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.517 [XNIO-1 task-2] yUcGYxNKQvOfrCfwrgl0XA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.517 [XNIO-1 task-2] yUcGYxNKQvOfrCfwrgl0XA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.517 [XNIO-1 task-2] yUcGYxNKQvOfrCfwrgl0XA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.519 [XNIO-1 task-2] 6hy5N5LPR8yu2QTbhxXm5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.519 [XNIO-1 task-2] 6hy5N5LPR8yu2QTbhxXm5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.519 [XNIO-1 task-2] 6hy5N5LPR8yu2QTbhxXm5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.519 [XNIO-1 task-2] 6hy5N5LPR8yu2QTbhxXm5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.519 [XNIO-1 task-2] 6hy5N5LPR8yu2QTbhxXm5A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.521 [XNIO-1 task-2] YBtczjaBSwuPCwMggGtTrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.521 [XNIO-1 task-2] YBtczjaBSwuPCwMggGtTrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.521 [XNIO-1 task-2] YBtczjaBSwuPCwMggGtTrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.521 [XNIO-1 task-2] YBtczjaBSwuPCwMggGtTrw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.521 [XNIO-1 task-2] YBtczjaBSwuPCwMggGtTrw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.525 [XNIO-1 task-2] 6pLbUCPDRgiWuHBwh1_j1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.525 [XNIO-1 task-2] 6pLbUCPDRgiWuHBwh1_j1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.525 [XNIO-1 task-2] 6pLbUCPDRgiWuHBwh1_j1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.525 [XNIO-1 task-2] 6pLbUCPDRgiWuHBwh1_j1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.525 [XNIO-1 task-2] 6pLbUCPDRgiWuHBwh1_j1A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.526 [XNIO-1 task-2] 3feVVfRPQeCW3EL61RW6TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.526 [XNIO-1 task-2] 3feVVfRPQeCW3EL61RW6TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.527 [XNIO-1 task-2] 3feVVfRPQeCW3EL61RW6TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.527 [XNIO-1 task-2] 3feVVfRPQeCW3EL61RW6TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.527 [XNIO-1 task-2] 3feVVfRPQeCW3EL61RW6TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.527 [XNIO-1 task-2] 3feVVfRPQeCW3EL61RW6TQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.528 [XNIO-1 task-2] oh-5GqWxSKih4FgfjXdz-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.528 [XNIO-1 task-2] oh-5GqWxSKih4FgfjXdz-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.528 [XNIO-1 task-2] oh-5GqWxSKih4FgfjXdz-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.528 [XNIO-1 task-2] oh-5GqWxSKih4FgfjXdz-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.528 [XNIO-1 task-2] oh-5GqWxSKih4FgfjXdz-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.530 [XNIO-1 task-2] FaQA9OiSS6qDrPCpfKBmRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.530 [XNIO-1 task-2] FaQA9OiSS6qDrPCpfKBmRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.530 [XNIO-1 task-2] FaQA9OiSS6qDrPCpfKBmRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.530 [XNIO-1 task-2] FaQA9OiSS6qDrPCpfKBmRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.530 [XNIO-1 task-2] FaQA9OiSS6qDrPCpfKBmRw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.530 [XNIO-1 task-2] FaQA9OiSS6qDrPCpfKBmRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.532 [XNIO-1 task-2] 1XGQhNWnSzaPrGqo8ExD-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.532 [XNIO-1 task-2] 1XGQhNWnSzaPrGqo8ExD-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.532 [XNIO-1 task-2] 1XGQhNWnSzaPrGqo8ExD-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.532 [XNIO-1 task-2] 1XGQhNWnSzaPrGqo8ExD-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.532 [XNIO-1 task-2] 1XGQhNWnSzaPrGqo8ExD-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.533 [XNIO-1 task-2] 9F_vMDyFRFqbX3rox-ypbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.533 [XNIO-1 task-2] 9F_vMDyFRFqbX3rox-ypbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.534 [XNIO-1 task-2] 9F_vMDyFRFqbX3rox-ypbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.534 [XNIO-1 task-2] 9F_vMDyFRFqbX3rox-ypbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.534 [XNIO-1 task-2] 9F_vMDyFRFqbX3rox-ypbA DEBUG com.networknt.schema.TypeValidator debug - validate( "abc0d696-4e68-4e72-870e-63d7956a0488", "abc0d696-4e68-4e72-870e-63d7956a0488", refreshToken) +16:40:12.535 [XNIO-1 task-2] 9F_vMDyFRFqbX3rox-ypbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token abc0d696-4e68-4e72-870e-63d7956a0488 is not found.","severity":"ERROR"} +16:40:12.537 [XNIO-1 task-2] qHUyKTrJQpihVDm2Zm4jaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.537 [XNIO-1 task-2] qHUyKTrJQpihVDm2Zm4jaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.537 [XNIO-1 task-2] qHUyKTrJQpihVDm2Zm4jaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.537 [XNIO-1 task-2] qHUyKTrJQpihVDm2Zm4jaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.537 [XNIO-1 task-2] qHUyKTrJQpihVDm2Zm4jaw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.538 [XNIO-1 task-2] H_-tITxTQOyaYdvjwgp7rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.539 [XNIO-1 task-2] H_-tITxTQOyaYdvjwgp7rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.539 [XNIO-1 task-2] H_-tITxTQOyaYdvjwgp7rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.539 [XNIO-1 task-2] H_-tITxTQOyaYdvjwgp7rg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.539 [XNIO-1 task-2] H_-tITxTQOyaYdvjwgp7rg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.543 [XNIO-1 task-2] I0YB6GT7SrSTHLWudrVh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.543 [XNIO-1 task-2] I0YB6GT7SrSTHLWudrVh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.543 [XNIO-1 task-2] I0YB6GT7SrSTHLWudrVh_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.543 [XNIO-1 task-2] I0YB6GT7SrSTHLWudrVh_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.546 [XNIO-1 task-2] 6p8CPiNtRn2JNON_VL5aCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.546 [XNIO-1 task-2] 6p8CPiNtRn2JNON_VL5aCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.546 [XNIO-1 task-2] 6p8CPiNtRn2JNON_VL5aCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.546 [XNIO-1 task-2] 6p8CPiNtRn2JNON_VL5aCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.546 [XNIO-1 task-2] 6p8CPiNtRn2JNON_VL5aCg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.546 [XNIO-1 task-2] 6p8CPiNtRn2JNON_VL5aCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.548 [XNIO-1 task-2] U954PjCyQleraueIxEQVsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.548 [XNIO-1 task-2] U954PjCyQleraueIxEQVsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.548 [XNIO-1 task-2] U954PjCyQleraueIxEQVsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.548 [XNIO-1 task-2] U954PjCyQleraueIxEQVsA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.550 [XNIO-1 task-2] 5PZP9gY_RfeTxV6MbCRhQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.550 [XNIO-1 task-2] 5PZP9gY_RfeTxV6MbCRhQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.550 [XNIO-1 task-2] 5PZP9gY_RfeTxV6MbCRhQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.550 [XNIO-1 task-2] 5PZP9gY_RfeTxV6MbCRhQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.550 [XNIO-1 task-2] 5PZP9gY_RfeTxV6MbCRhQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.552 [XNIO-1 task-2] ddNxSm8GQz6BjdxHehO7-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.552 [XNIO-1 task-2] ddNxSm8GQz6BjdxHehO7-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.552 [XNIO-1 task-2] ddNxSm8GQz6BjdxHehO7-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.552 [XNIO-1 task-2] ddNxSm8GQz6BjdxHehO7-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.552 [XNIO-1 task-2] ddNxSm8GQz6BjdxHehO7-w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.557 [XNIO-1 task-2] ZGo-BtMrTqGj2VjU8uyMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.557 [XNIO-1 task-2] ZGo-BtMrTqGj2VjU8uyMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.557 [XNIO-1 task-2] ZGo-BtMrTqGj2VjU8uyMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.557 [XNIO-1 task-2] ZGo-BtMrTqGj2VjU8uyMmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.557 [XNIO-1 task-2] ZGo-BtMrTqGj2VjU8uyMmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.559 [XNIO-1 task-2] uH0eMei7TkaQJWxLME6CvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.559 [XNIO-1 task-2] uH0eMei7TkaQJWxLME6CvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.559 [XNIO-1 task-2] uH0eMei7TkaQJWxLME6CvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.559 [XNIO-1 task-2] uH0eMei7TkaQJWxLME6CvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.561 [XNIO-1 task-2] TipR05hnSD2-wV3YXDr4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.561 [XNIO-1 task-2] TipR05hnSD2-wV3YXDr4RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.561 [XNIO-1 task-2] TipR05hnSD2-wV3YXDr4RA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.561 [XNIO-1 task-2] TipR05hnSD2-wV3YXDr4RA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.561 [XNIO-1 task-2] TipR05hnSD2-wV3YXDr4RA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.561 [XNIO-1 task-2] TipR05hnSD2-wV3YXDr4RA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.563 [XNIO-1 task-2] CRON_BH2Swa7eqLPjaBlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.563 [XNIO-1 task-2] CRON_BH2Swa7eqLPjaBlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.563 [XNIO-1 task-2] CRON_BH2Swa7eqLPjaBlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.563 [XNIO-1 task-2] CRON_BH2Swa7eqLPjaBlgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.563 [XNIO-1 task-2] CRON_BH2Swa7eqLPjaBlgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.565 [XNIO-1 task-2] HrZQ7greTVma-t8DtKCC1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.565 [XNIO-1 task-2] HrZQ7greTVma-t8DtKCC1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.565 [XNIO-1 task-2] HrZQ7greTVma-t8DtKCC1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.565 [XNIO-1 task-2] HrZQ7greTVma-t8DtKCC1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.565 [XNIO-1 task-2] HrZQ7greTVma-t8DtKCC1A DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.565 [XNIO-1 task-2] HrZQ7greTVma-t8DtKCC1A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.567 [XNIO-1 task-2] ytd6nx-ZRvyvQETsakuC9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.567 [XNIO-1 task-2] ytd6nx-ZRvyvQETsakuC9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.567 [XNIO-1 task-2] ytd6nx-ZRvyvQETsakuC9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.567 [XNIO-1 task-2] ytd6nx-ZRvyvQETsakuC9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.567 [XNIO-1 task-2] ytd6nx-ZRvyvQETsakuC9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.571 [XNIO-1 task-2] HN4QBLWyR_u-fLdrJCvRRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.571 [XNIO-1 task-2] HN4QBLWyR_u-fLdrJCvRRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.571 [XNIO-1 task-2] HN4QBLWyR_u-fLdrJCvRRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.571 [XNIO-1 task-2] HN4QBLWyR_u-fLdrJCvRRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.571 [XNIO-1 task-2] HN4QBLWyR_u-fLdrJCvRRg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.571 [XNIO-1 task-2] HN4QBLWyR_u-fLdrJCvRRg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.575 [XNIO-1 task-2] sbphKwlKTxWXvCNvonPyNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.575 [XNIO-1 task-2] sbphKwlKTxWXvCNvonPyNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.576 [XNIO-1 task-2] sbphKwlKTxWXvCNvonPyNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.576 [XNIO-1 task-2] sbphKwlKTxWXvCNvonPyNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.576 [XNIO-1 task-2] sbphKwlKTxWXvCNvonPyNw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.577 [XNIO-1 task-2] S_8apgDfTimOF4dMr_5B8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.577 [XNIO-1 task-2] S_8apgDfTimOF4dMr_5B8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.577 [XNIO-1 task-2] S_8apgDfTimOF4dMr_5B8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.577 [XNIO-1 task-2] S_8apgDfTimOF4dMr_5B8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.577 [XNIO-1 task-2] S_8apgDfTimOF4dMr_5B8g DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.578 [XNIO-1 task-2] S_8apgDfTimOF4dMr_5B8g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.579 [XNIO-1 task-2] jyoTcs-RSvaPa7pwtzuBhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.579 [XNIO-1 task-2] jyoTcs-RSvaPa7pwtzuBhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.579 [XNIO-1 task-2] jyoTcs-RSvaPa7pwtzuBhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.579 [XNIO-1 task-2] jyoTcs-RSvaPa7pwtzuBhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.579 [XNIO-1 task-2] jyoTcs-RSvaPa7pwtzuBhA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.581 [XNIO-1 task-2] oCn8iw2RQtSe1OCCBqL7NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.581 [XNIO-1 task-2] oCn8iw2RQtSe1OCCBqL7NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.581 [XNIO-1 task-2] oCn8iw2RQtSe1OCCBqL7NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.581 [XNIO-1 task-2] oCn8iw2RQtSe1OCCBqL7NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.581 [XNIO-1 task-2] oCn8iw2RQtSe1OCCBqL7NQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.585 [XNIO-1 task-2] Q0XhFUYnR-2WjbmQUrewGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.585 [XNIO-1 task-2] Q0XhFUYnR-2WjbmQUrewGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.585 [XNIO-1 task-2] Q0XhFUYnR-2WjbmQUrewGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.585 [XNIO-1 task-2] Q0XhFUYnR-2WjbmQUrewGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.585 [XNIO-1 task-2] Q0XhFUYnR-2WjbmQUrewGA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.587 [XNIO-1 task-2] Pz7k-nq-QRiXUoJ_nd-fFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.587 [XNIO-1 task-2] Pz7k-nq-QRiXUoJ_nd-fFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.587 [XNIO-1 task-2] Pz7k-nq-QRiXUoJ_nd-fFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.587 [XNIO-1 task-2] Pz7k-nq-QRiXUoJ_nd-fFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.587 [XNIO-1 task-2] Pz7k-nq-QRiXUoJ_nd-fFw DEBUG com.networknt.schema.TypeValidator debug - validate( "abc0d696-4e68-4e72-870e-63d7956a0488", "abc0d696-4e68-4e72-870e-63d7956a0488", refreshToken) +16:40:12.587 [XNIO-1 task-2] Pz7k-nq-QRiXUoJ_nd-fFw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token abc0d696-4e68-4e72-870e-63d7956a0488 is not found.","severity":"ERROR"} +16:40:12.589 [XNIO-1 task-2] iFU6MHOqQWKaZ9G-XnUvVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.589 [XNIO-1 task-2] iFU6MHOqQWKaZ9G-XnUvVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.589 [XNIO-1 task-2] iFU6MHOqQWKaZ9G-XnUvVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.589 [XNIO-1 task-2] iFU6MHOqQWKaZ9G-XnUvVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.590 [XNIO-1 task-2] iFU6MHOqQWKaZ9G-XnUvVQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.591 [XNIO-1 task-2] iAvl3do5SVeZUwrq4USh8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.591 [XNIO-1 task-2] iAvl3do5SVeZUwrq4USh8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.591 [XNIO-1 task-2] iAvl3do5SVeZUwrq4USh8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.592 [XNIO-1 task-2] iAvl3do5SVeZUwrq4USh8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.592 [XNIO-1 task-2] iAvl3do5SVeZUwrq4USh8A DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.592 [XNIO-1 task-2] iAvl3do5SVeZUwrq4USh8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.593 [XNIO-1 task-2] QuSiTo0CSUSq-N4U4sPwrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.593 [XNIO-1 task-2] QuSiTo0CSUSq-N4U4sPwrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.593 [XNIO-1 task-2] QuSiTo0CSUSq-N4U4sPwrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.594 [XNIO-1 task-2] QuSiTo0CSUSq-N4U4sPwrA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.595 [XNIO-1 task-2] -yJIQNZRSTGvJanWuOPm_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.595 [XNIO-1 task-2] -yJIQNZRSTGvJanWuOPm_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.595 [XNIO-1 task-2] -yJIQNZRSTGvJanWuOPm_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.595 [XNIO-1 task-2] -yJIQNZRSTGvJanWuOPm_g ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.597 [XNIO-1 task-2] wqDJNZRBQYSf096Z3QGHPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.597 [XNIO-1 task-2] wqDJNZRBQYSf096Z3QGHPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.597 [XNIO-1 task-2] wqDJNZRBQYSf096Z3QGHPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.597 [XNIO-1 task-2] wqDJNZRBQYSf096Z3QGHPA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.598 [XNIO-1 task-2] dqaQ3-x0RCmEYDle7gjXgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.598 [XNIO-1 task-2] dqaQ3-x0RCmEYDle7gjXgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.598 [XNIO-1 task-2] dqaQ3-x0RCmEYDle7gjXgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.598 [XNIO-1 task-2] dqaQ3-x0RCmEYDle7gjXgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.599 [XNIO-1 task-2] dqaQ3-x0RCmEYDle7gjXgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.600 [XNIO-1 task-2] lpBgSSsoTRCRDPJwmyFsvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.600 [XNIO-1 task-2] lpBgSSsoTRCRDPJwmyFsvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.600 [XNIO-1 task-2] lpBgSSsoTRCRDPJwmyFsvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.600 [XNIO-1 task-2] lpBgSSsoTRCRDPJwmyFsvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.601 [XNIO-1 task-2] lpBgSSsoTRCRDPJwmyFsvw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.601 [XNIO-1 task-2] lpBgSSsoTRCRDPJwmyFsvw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.602 [XNIO-1 task-2] ci9aACDpR0u-kjw7zaPPNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.602 [XNIO-1 task-2] ci9aACDpR0u-kjw7zaPPNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.602 [XNIO-1 task-2] ci9aACDpR0u-kjw7zaPPNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.602 [XNIO-1 task-2] ci9aACDpR0u-kjw7zaPPNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.602 [XNIO-1 task-2] ci9aACDpR0u-kjw7zaPPNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.604 [XNIO-1 task-2] fEjsTR5tQbi7w8PmYOoQWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.604 [XNIO-1 task-2] fEjsTR5tQbi7w8PmYOoQWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.604 [XNIO-1 task-2] fEjsTR5tQbi7w8PmYOoQWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.604 [XNIO-1 task-2] fEjsTR5tQbi7w8PmYOoQWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.604 [XNIO-1 task-2] fEjsTR5tQbi7w8PmYOoQWg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.604 [XNIO-1 task-2] fEjsTR5tQbi7w8PmYOoQWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.606 [XNIO-1 task-2] mruEWquASDmRriiAm2X0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.606 [XNIO-1 task-2] mruEWquASDmRriiAm2X0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.606 [XNIO-1 task-2] mruEWquASDmRriiAm2X0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.606 [XNIO-1 task-2] mruEWquASDmRriiAm2X0VQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.606 [XNIO-1 task-2] mruEWquASDmRriiAm2X0VQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.607 [XNIO-1 task-2] hPwc0cRmQKWYnDe0GKkWsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.607 [XNIO-1 task-2] hPwc0cRmQKWYnDe0GKkWsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.607 [XNIO-1 task-2] hPwc0cRmQKWYnDe0GKkWsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.608 [XNIO-1 task-2] hPwc0cRmQKWYnDe0GKkWsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.608 [XNIO-1 task-2] hPwc0cRmQKWYnDe0GKkWsA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.608 [XNIO-1 task-2] hPwc0cRmQKWYnDe0GKkWsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.609 [XNIO-1 task-2] zBGYGwDzThWxi63gBN_DYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.609 [XNIO-1 task-2] zBGYGwDzThWxi63gBN_DYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.609 [XNIO-1 task-2] zBGYGwDzThWxi63gBN_DYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.609 [XNIO-1 task-2] zBGYGwDzThWxi63gBN_DYg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.613 [XNIO-1 task-2] Hrbtp9AGRTei_HMViTg9fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.613 [XNIO-1 task-2] Hrbtp9AGRTei_HMViTg9fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.613 [XNIO-1 task-2] Hrbtp9AGRTei_HMViTg9fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.613 [XNIO-1 task-2] Hrbtp9AGRTei_HMViTg9fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.613 [XNIO-1 task-2] Hrbtp9AGRTei_HMViTg9fQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.617 [XNIO-1 task-2] 4xVP8Wy-QWOeqPTqjY_LUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.617 [XNIO-1 task-2] 4xVP8Wy-QWOeqPTqjY_LUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.617 [XNIO-1 task-2] 4xVP8Wy-QWOeqPTqjY_LUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.617 [XNIO-1 task-2] 4xVP8Wy-QWOeqPTqjY_LUw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.621 [XNIO-1 task-2] au_d2LkoSmWxj2o-O2viyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.621 [XNIO-1 task-2] au_d2LkoSmWxj2o-O2viyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.621 [XNIO-1 task-2] au_d2LkoSmWxj2o-O2viyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.621 [XNIO-1 task-2] au_d2LkoSmWxj2o-O2viyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.621 [XNIO-1 task-2] au_d2LkoSmWxj2o-O2viyA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.621 [XNIO-1 task-2] au_d2LkoSmWxj2o-O2viyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.622 [XNIO-1 task-2] akZaLDN4T2uGNC8Xy5DPtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.623 [XNIO-1 task-2] akZaLDN4T2uGNC8Xy5DPtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.623 [XNIO-1 task-2] akZaLDN4T2uGNC8Xy5DPtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.623 [XNIO-1 task-2] akZaLDN4T2uGNC8Xy5DPtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.623 [XNIO-1 task-2] akZaLDN4T2uGNC8Xy5DPtg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.624 [XNIO-1 task-2] Q7sZ9D-gQLuhp4bqumkKVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.624 [XNIO-1 task-2] Q7sZ9D-gQLuhp4bqumkKVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.624 [XNIO-1 task-2] Q7sZ9D-gQLuhp4bqumkKVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.624 [XNIO-1 task-2] Q7sZ9D-gQLuhp4bqumkKVw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.626 [XNIO-1 task-2] jglaQ3H-R3uYPet5SXun4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.626 [XNIO-1 task-2] jglaQ3H-R3uYPet5SXun4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.626 [XNIO-1 task-2] jglaQ3H-R3uYPet5SXun4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.626 [XNIO-1 task-2] jglaQ3H-R3uYPet5SXun4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.626 [XNIO-1 task-2] jglaQ3H-R3uYPet5SXun4A DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.626 [XNIO-1 task-2] jglaQ3H-R3uYPet5SXun4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.628 [XNIO-1 task-2] k2oSLf0WTqOASr905tNBzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.628 [XNIO-1 task-2] k2oSLf0WTqOASr905tNBzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.628 [XNIO-1 task-2] k2oSLf0WTqOASr905tNBzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.628 [XNIO-1 task-2] k2oSLf0WTqOASr905tNBzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.628 [XNIO-1 task-2] k2oSLf0WTqOASr905tNBzg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.629 [XNIO-1 task-2] wsQ7z9U2Rs-Zj3ISnLoU6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.629 [XNIO-1 task-2] wsQ7z9U2Rs-Zj3ISnLoU6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.630 [XNIO-1 task-2] wsQ7z9U2Rs-Zj3ISnLoU6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.630 [XNIO-1 task-2] wsQ7z9U2Rs-Zj3ISnLoU6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.631 [XNIO-1 task-2] 9R7D73kYS-uJVRpDXk2l_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.631 [XNIO-1 task-2] 9R7D73kYS-uJVRpDXk2l_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.631 [XNIO-1 task-2] 9R7D73kYS-uJVRpDXk2l_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.631 [XNIO-1 task-2] 9R7D73kYS-uJVRpDXk2l_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.631 [XNIO-1 task-2] 9R7D73kYS-uJVRpDXk2l_A DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:12.631 [XNIO-1 task-2] 9R7D73kYS-uJVRpDXk2l_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:12.633 [XNIO-1 task-2] WzBc0OWyTJ2HtvBF7RV17A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.633 [XNIO-1 task-2] WzBc0OWyTJ2HtvBF7RV17A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.633 [XNIO-1 task-2] WzBc0OWyTJ2HtvBF7RV17A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.633 [XNIO-1 task-2] WzBc0OWyTJ2HtvBF7RV17A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.637 [XNIO-1 task-2] TsMA8yJxSuawDwDL99BlUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.637 [XNIO-1 task-2] TsMA8yJxSuawDwDL99BlUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.637 [XNIO-1 task-2] TsMA8yJxSuawDwDL99BlUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.637 [XNIO-1 task-2] TsMA8yJxSuawDwDL99BlUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.639 [XNIO-1 task-2] zRgvEk11RSabRVI0WUqgsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.639 [XNIO-1 task-2] zRgvEk11RSabRVI0WUqgsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.639 [XNIO-1 task-2] zRgvEk11RSabRVI0WUqgsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.639 [XNIO-1 task-2] zRgvEk11RSabRVI0WUqgsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.639 [XNIO-1 task-2] zRgvEk11RSabRVI0WUqgsA DEBUG com.networknt.schema.TypeValidator debug - validate( "abc0d696-4e68-4e72-870e-63d7956a0488", "abc0d696-4e68-4e72-870e-63d7956a0488", refreshToken) +16:40:12.639 [XNIO-1 task-2] zRgvEk11RSabRVI0WUqgsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token abc0d696-4e68-4e72-870e-63d7956a0488 is not found.","severity":"ERROR"} +16:40:12.640 [XNIO-1 task-2] qAw_hFcpTsCoJZpyj4b9ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.640 [XNIO-1 task-2] qAw_hFcpTsCoJZpyj4b9ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.641 [XNIO-1 task-2] qAw_hFcpTsCoJZpyj4b9ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.641 [XNIO-1 task-2] qAw_hFcpTsCoJZpyj4b9ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.641 [XNIO-1 task-2] qAw_hFcpTsCoJZpyj4b9ZA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.642 [XNIO-1 task-2] 0jkQDf3IQDqI25TtRG4kEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.642 [XNIO-1 task-2] 0jkQDf3IQDqI25TtRG4kEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.642 [XNIO-1 task-2] 0jkQDf3IQDqI25TtRG4kEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.643 [XNIO-1 task-2] 0jkQDf3IQDqI25TtRG4kEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.643 [XNIO-1 task-2] 0jkQDf3IQDqI25TtRG4kEg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.643 [XNIO-1 task-2] 0jkQDf3IQDqI25TtRG4kEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.644 [XNIO-1 task-2] QIvB0er_Sfa4Ze8kuDyv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.644 [XNIO-1 task-2] QIvB0er_Sfa4Ze8kuDyv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.644 [XNIO-1 task-2] QIvB0er_Sfa4Ze8kuDyv5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.644 [XNIO-1 task-2] QIvB0er_Sfa4Ze8kuDyv5Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.646 [XNIO-1 task-2] uDQc43qARUCZXmPKM8uCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.646 [XNIO-1 task-2] uDQc43qARUCZXmPKM8uCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.646 [XNIO-1 task-2] uDQc43qARUCZXmPKM8uCKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.646 [XNIO-1 task-2] uDQc43qARUCZXmPKM8uCKg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.651 [XNIO-1 task-2] CrDtwNE8TR-mLfZ5dNFC3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.651 [XNIO-1 task-2] CrDtwNE8TR-mLfZ5dNFC3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.651 [XNIO-1 task-2] CrDtwNE8TR-mLfZ5dNFC3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.651 [XNIO-1 task-2] CrDtwNE8TR-mLfZ5dNFC3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.651 [XNIO-1 task-2] CrDtwNE8TR-mLfZ5dNFC3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.651 [XNIO-1 task-2] CrDtwNE8TR-mLfZ5dNFC3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.655 [XNIO-1 task-2] 5wNCdUKzRb6hZDXhQyf4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.655 [XNIO-1 task-2] 5wNCdUKzRb6hZDXhQyf4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.655 [XNIO-1 task-2] 5wNCdUKzRb6hZDXhQyf4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.655 [XNIO-1 task-2] 5wNCdUKzRb6hZDXhQyf4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.655 [XNIO-1 task-2] 5wNCdUKzRb6hZDXhQyf4Cw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.657 [XNIO-1 task-2] Swa6QS9XQn-2_sFVgIm_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.657 [XNIO-1 task-2] Swa6QS9XQn-2_sFVgIm_QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.657 [XNIO-1 task-2] Swa6QS9XQn-2_sFVgIm_QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.657 [XNIO-1 task-2] Swa6QS9XQn-2_sFVgIm_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.657 [XNIO-1 task-2] Swa6QS9XQn-2_sFVgIm_QA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.657 [XNIO-1 task-2] Swa6QS9XQn-2_sFVgIm_QA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.658 [XNIO-1 task-2] b0HwLuYtRUapyLDUtAT_ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.658 [XNIO-1 task-2] b0HwLuYtRUapyLDUtAT_ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.659 [XNIO-1 task-2] b0HwLuYtRUapyLDUtAT_ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.659 [XNIO-1 task-2] b0HwLuYtRUapyLDUtAT_ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.659 [XNIO-1 task-2] b0HwLuYtRUapyLDUtAT_ww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.660 [XNIO-1 task-2] BcBZpDZeQnGaRKUzLYJdCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.660 [XNIO-1 task-2] BcBZpDZeQnGaRKUzLYJdCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.660 [XNIO-1 task-2] BcBZpDZeQnGaRKUzLYJdCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.660 [XNIO-1 task-2] BcBZpDZeQnGaRKUzLYJdCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.661 [XNIO-1 task-2] BcBZpDZeQnGaRKUzLYJdCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.661 [XNIO-1 task-2] BcBZpDZeQnGaRKUzLYJdCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.662 [XNIO-1 task-2] KitGfTY-R2Gtw7i7NHF46w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.662 [XNIO-1 task-2] KitGfTY-R2Gtw7i7NHF46w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.662 [XNIO-1 task-2] KitGfTY-R2Gtw7i7NHF46w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.662 [XNIO-1 task-2] KitGfTY-R2Gtw7i7NHF46w ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.664 [XNIO-1 task-2] UPP4mdPxSuyeLMcgqQM_oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.664 [XNIO-1 task-2] UPP4mdPxSuyeLMcgqQM_oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.664 [XNIO-1 task-2] UPP4mdPxSuyeLMcgqQM_oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.664 [XNIO-1 task-2] UPP4mdPxSuyeLMcgqQM_oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.664 [XNIO-1 task-2] UPP4mdPxSuyeLMcgqQM_oA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.665 [XNIO-1 task-2] 4fZ0iQwLQtiM7B67GmOhYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.665 [XNIO-1 task-2] 4fZ0iQwLQtiM7B67GmOhYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.665 [XNIO-1 task-2] 4fZ0iQwLQtiM7B67GmOhYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.665 [XNIO-1 task-2] 4fZ0iQwLQtiM7B67GmOhYw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.667 [XNIO-1 task-2] -4iInvgYQEu0VzqaRfM0Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.667 [XNIO-1 task-2] -4iInvgYQEu0VzqaRfM0Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.667 [XNIO-1 task-2] -4iInvgYQEu0VzqaRfM0Eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.667 [XNIO-1 task-2] -4iInvgYQEu0VzqaRfM0Eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.667 [XNIO-1 task-2] -4iInvgYQEu0VzqaRfM0Eg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.667 [XNIO-1 task-2] -4iInvgYQEu0VzqaRfM0Eg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.668 [XNIO-1 task-2] j_-wyTU9TeyGf95S_da98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.668 [XNIO-1 task-2] j_-wyTU9TeyGf95S_da98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.669 [XNIO-1 task-2] j_-wyTU9TeyGf95S_da98g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.669 [XNIO-1 task-2] j_-wyTU9TeyGf95S_da98g ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.670 [XNIO-1 task-2] 3lKn9VpMTz2UkxiQApAsRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.670 [XNIO-1 task-2] 3lKn9VpMTz2UkxiQApAsRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.670 [XNIO-1 task-2] 3lKn9VpMTz2UkxiQApAsRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.670 [XNIO-1 task-2] 3lKn9VpMTz2UkxiQApAsRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.670 [XNIO-1 task-2] 3lKn9VpMTz2UkxiQApAsRg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.672 [XNIO-1 task-2] v6HhY36xSzGHI_7mnvJQHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.672 [XNIO-1 task-2] v6HhY36xSzGHI_7mnvJQHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.672 [XNIO-1 task-2] v6HhY36xSzGHI_7mnvJQHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.672 [XNIO-1 task-2] v6HhY36xSzGHI_7mnvJQHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.672 [XNIO-1 task-2] v6HhY36xSzGHI_7mnvJQHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.672 [XNIO-1 task-2] v6HhY36xSzGHI_7mnvJQHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.674 [XNIO-1 task-2] JyyUjREBSAKrnigCvQEbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.674 [XNIO-1 task-2] JyyUjREBSAKrnigCvQEbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.674 [XNIO-1 task-2] JyyUjREBSAKrnigCvQEbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.674 [XNIO-1 task-2] JyyUjREBSAKrnigCvQEbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.674 [XNIO-1 task-2] JyyUjREBSAKrnigCvQEbLA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.675 [XNIO-1 task-2] fLCFsir0Q8udCLhWZvJJrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.675 [XNIO-1 task-2] fLCFsir0Q8udCLhWZvJJrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.675 [XNIO-1 task-2] fLCFsir0Q8udCLhWZvJJrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.676 [XNIO-1 task-2] fLCFsir0Q8udCLhWZvJJrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.676 [XNIO-1 task-2] fLCFsir0Q8udCLhWZvJJrg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:12.676 [XNIO-1 task-2] fLCFsir0Q8udCLhWZvJJrg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:12.677 [XNIO-1 task-2] 8q6APz-tTiOD6b5-YAiAug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.677 [XNIO-1 task-2] 8q6APz-tTiOD6b5-YAiAug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.677 [XNIO-1 task-2] 8q6APz-tTiOD6b5-YAiAug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.677 [XNIO-1 task-2] 8q6APz-tTiOD6b5-YAiAug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.682 [XNIO-1 task-2] 8C9cqwqdQR2Q0OlC3lJq6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.682 [XNIO-1 task-2] 8C9cqwqdQR2Q0OlC3lJq6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.682 [XNIO-1 task-2] 8C9cqwqdQR2Q0OlC3lJq6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.682 [XNIO-1 task-2] 8C9cqwqdQR2Q0OlC3lJq6w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.706 [XNIO-1 task-2] zgoxbWwsTHCx1nU4XemnEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.706 [XNIO-1 task-2] zgoxbWwsTHCx1nU4XemnEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.706 [XNIO-1 task-2] zgoxbWwsTHCx1nU4XemnEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.706 [XNIO-1 task-2] zgoxbWwsTHCx1nU4XemnEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.706 [XNIO-1 task-2] zgoxbWwsTHCx1nU4XemnEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "abc0d696-4e68-4e72-870e-63d7956a0488", "abc0d696-4e68-4e72-870e-63d7956a0488", refreshToken) +16:40:12.707 [XNIO-1 task-2] zgoxbWwsTHCx1nU4XemnEQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token abc0d696-4e68-4e72-870e-63d7956a0488 is not found.","severity":"ERROR"} +16:40:12.709 [XNIO-1 task-2] GNXa57G2QlW55hvLw7odTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.709 [XNIO-1 task-2] GNXa57G2QlW55hvLw7odTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.709 [XNIO-1 task-2] GNXa57G2QlW55hvLw7odTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.709 [XNIO-1 task-2] GNXa57G2QlW55hvLw7odTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.709 [XNIO-1 task-2] GNXa57G2QlW55hvLw7odTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.711 [XNIO-1 task-2] L29IdPJSSneO1EjZ8WYX_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.711 [XNIO-1 task-2] L29IdPJSSneO1EjZ8WYX_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.711 [XNIO-1 task-2] L29IdPJSSneO1EjZ8WYX_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.711 [XNIO-1 task-2] L29IdPJSSneO1EjZ8WYX_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.711 [XNIO-1 task-2] L29IdPJSSneO1EjZ8WYX_w DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.711 [XNIO-1 task-2] L29IdPJSSneO1EjZ8WYX_w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.713 [XNIO-1 task-2] Q5KxOxo3R2GNLRVJdmJsKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.713 [XNIO-1 task-2] Q5KxOxo3R2GNLRVJdmJsKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.713 [XNIO-1 task-2] Q5KxOxo3R2GNLRVJdmJsKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.714 [XNIO-1 task-2] Q5KxOxo3R2GNLRVJdmJsKw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.715 [XNIO-1 task-2] Y8efQq4cTi29pOuG0Rbd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.715 [XNIO-1 task-2] Y8efQq4cTi29pOuG0Rbd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.715 [XNIO-1 task-2] Y8efQq4cTi29pOuG0Rbd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.715 [XNIO-1 task-2] Y8efQq4cTi29pOuG0Rbd8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.715 [XNIO-1 task-2] Y8efQq4cTi29pOuG0Rbd8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.717 [XNIO-1 task-2] wzSXaso5QVy0fCyzAK98Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.717 [XNIO-1 task-2] wzSXaso5QVy0fCyzAK98Cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.717 [XNIO-1 task-2] wzSXaso5QVy0fCyzAK98Cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.717 [XNIO-1 task-2] wzSXaso5QVy0fCyzAK98Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.717 [XNIO-1 task-2] wzSXaso5QVy0fCyzAK98Cw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.752 [XNIO-1 task-2] BlDaAzLZQaKdGrAZYyXe4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.752 [XNIO-1 task-2] BlDaAzLZQaKdGrAZYyXe4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.752 [XNIO-1 task-2] BlDaAzLZQaKdGrAZYyXe4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.753 [XNIO-1 task-2] BlDaAzLZQaKdGrAZYyXe4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.753 [XNIO-1 task-2] BlDaAzLZQaKdGrAZYyXe4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.755 [XNIO-1 task-2] P7I-0Bn_QbWDhIhOIzOPDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.755 [XNIO-1 task-2] P7I-0Bn_QbWDhIhOIzOPDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.755 [XNIO-1 task-2] P7I-0Bn_QbWDhIhOIzOPDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.755 [XNIO-1 task-2] P7I-0Bn_QbWDhIhOIzOPDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.755 [XNIO-1 task-2] P7I-0Bn_QbWDhIhOIzOPDg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.755 [XNIO-1 task-2] P7I-0Bn_QbWDhIhOIzOPDg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.757 [XNIO-1 task-2] xDklmHYnQ-ex4KY5EYBDQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.757 [XNIO-1 task-2] xDklmHYnQ-ex4KY5EYBDQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.757 [XNIO-1 task-2] xDklmHYnQ-ex4KY5EYBDQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.757 [XNIO-1 task-2] xDklmHYnQ-ex4KY5EYBDQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.757 [XNIO-1 task-2] xDklmHYnQ-ex4KY5EYBDQg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.759 [XNIO-1 task-2] rZ_gDkp-SOConJl20SJepA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.759 [XNIO-1 task-2] rZ_gDkp-SOConJl20SJepA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.759 [XNIO-1 task-2] rZ_gDkp-SOConJl20SJepA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.759 [XNIO-1 task-2] rZ_gDkp-SOConJl20SJepA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.759 [XNIO-1 task-2] rZ_gDkp-SOConJl20SJepA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.759 [XNIO-1 task-2] rZ_gDkp-SOConJl20SJepA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.760 [XNIO-1 task-2] fF5WrTIVQ7aDRr6_p9fLXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.761 [XNIO-1 task-2] fF5WrTIVQ7aDRr6_p9fLXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.761 [XNIO-1 task-2] fF5WrTIVQ7aDRr6_p9fLXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.761 [XNIO-1 task-2] fF5WrTIVQ7aDRr6_p9fLXw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.762 [XNIO-1 task-2] XNoK0EZoSYuL3ObxmT83dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.762 [XNIO-1 task-2] XNoK0EZoSYuL3ObxmT83dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.762 [XNIO-1 task-2] XNoK0EZoSYuL3ObxmT83dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.763 [XNIO-1 task-2] XNoK0EZoSYuL3ObxmT83dA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.764 [XNIO-1 task-2] 6sg7aZzZSByAbG2tMQ1-9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.764 [XNIO-1 task-2] 6sg7aZzZSByAbG2tMQ1-9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.764 [XNIO-1 task-2] 6sg7aZzZSByAbG2tMQ1-9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.764 [XNIO-1 task-2] 6sg7aZzZSByAbG2tMQ1-9Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.765 [XNIO-1 task-2] gefD7yS3Qjqg8RHFQWMRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.765 [XNIO-1 task-2] gefD7yS3Qjqg8RHFQWMRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.765 [XNIO-1 task-2] gefD7yS3Qjqg8RHFQWMRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.766 [XNIO-1 task-2] gefD7yS3Qjqg8RHFQWMRiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.766 [XNIO-1 task-2] gefD7yS3Qjqg8RHFQWMRiQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.767 [XNIO-1 task-2] 0x8fjq_xT1aqO-x7yM1fDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.767 [XNIO-1 task-2] 0x8fjq_xT1aqO-x7yM1fDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.767 [XNIO-1 task-2] 0x8fjq_xT1aqO-x7yM1fDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.767 [XNIO-1 task-2] 0x8fjq_xT1aqO-x7yM1fDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.769 [XNIO-1 task-2] ulTJDb2sQ2uF1sA00MpbTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.769 [XNIO-1 task-2] ulTJDb2sQ2uF1sA00MpbTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.769 [XNIO-1 task-2] ulTJDb2sQ2uF1sA00MpbTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.769 [XNIO-1 task-2] ulTJDb2sQ2uF1sA00MpbTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.769 [XNIO-1 task-2] ulTJDb2sQ2uF1sA00MpbTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.769 [XNIO-1 task-2] ulTJDb2sQ2uF1sA00MpbTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.771 [XNIO-1 task-2] xY-XQuZJS9WbVjUHtUzdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.771 [XNIO-1 task-2] xY-XQuZJS9WbVjUHtUzdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.771 [XNIO-1 task-2] xY-XQuZJS9WbVjUHtUzdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.771 [XNIO-1 task-2] xY-XQuZJS9WbVjUHtUzdXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.771 [XNIO-1 task-2] xY-XQuZJS9WbVjUHtUzdXw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.772 [XNIO-1 task-2] pWW2U7LSSBCQExwZwF4zOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.772 [XNIO-1 task-2] pWW2U7LSSBCQExwZwF4zOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.772 [XNIO-1 task-2] pWW2U7LSSBCQExwZwF4zOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.772 [XNIO-1 task-2] pWW2U7LSSBCQExwZwF4zOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.773 [XNIO-1 task-2] pWW2U7LSSBCQExwZwF4zOQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.777 [XNIO-1 task-2] KwRBCmAlRSaCfUDZoPOGGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.777 [XNIO-1 task-2] KwRBCmAlRSaCfUDZoPOGGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.777 [XNIO-1 task-2] KwRBCmAlRSaCfUDZoPOGGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.777 [XNIO-1 task-2] KwRBCmAlRSaCfUDZoPOGGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.843 [XNIO-1 task-2] zvFBhNoXSb6-Io5vAkj0xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.844 [XNIO-1 task-2] zvFBhNoXSb6-Io5vAkj0xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.844 [XNIO-1 task-2] zvFBhNoXSb6-Io5vAkj0xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.844 [XNIO-1 task-2] zvFBhNoXSb6-Io5vAkj0xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.844 [XNIO-1 task-2] zvFBhNoXSb6-Io5vAkj0xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.844 [XNIO-1 task-2] zvFBhNoXSb6-Io5vAkj0xQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.846 [XNIO-1 task-2] dElF1eVhTnyR4vIJ07H_5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.846 [XNIO-1 task-2] dElF1eVhTnyR4vIJ07H_5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.846 [XNIO-1 task-2] dElF1eVhTnyR4vIJ07H_5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.846 [XNIO-1 task-2] dElF1eVhTnyR4vIJ07H_5Q ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.848 [XNIO-1 task-2] YUiyau3iSqSRApkqKJIIrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.848 [XNIO-1 task-2] YUiyau3iSqSRApkqKJIIrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.848 [XNIO-1 task-2] YUiyau3iSqSRApkqKJIIrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.848 [XNIO-1 task-2] YUiyau3iSqSRApkqKJIIrw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.849 [XNIO-1 task-2] Vmj9tm8hRQSZYudWrwOFPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.849 [XNIO-1 task-2] Vmj9tm8hRQSZYudWrwOFPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.849 [XNIO-1 task-2] Vmj9tm8hRQSZYudWrwOFPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.850 [XNIO-1 task-2] Vmj9tm8hRQSZYudWrwOFPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.850 [XNIO-1 task-2] Vmj9tm8hRQSZYudWrwOFPg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.851 [XNIO-1 task-2] WV4pD3uITrSonPoIMjybng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.851 [XNIO-1 task-2] WV4pD3uITrSonPoIMjybng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.851 [XNIO-1 task-2] WV4pD3uITrSonPoIMjybng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.851 [XNIO-1 task-2] WV4pD3uITrSonPoIMjybng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:12.852 [XNIO-1 task-2] WV4pD3uITrSonPoIMjybng DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:12.852 [XNIO-1 task-2] WV4pD3uITrSonPoIMjybng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:12.853 [XNIO-1 task-2] bYQkHwhzTQqiMg2zSxWpjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.853 [XNIO-1 task-2] bYQkHwhzTQqiMg2zSxWpjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.853 [XNIO-1 task-2] bYQkHwhzTQqiMg2zSxWpjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.853 [XNIO-1 task-2] bYQkHwhzTQqiMg2zSxWpjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.867 [XNIO-1 task-2] PCUF-Y1VSZaEmMzWn9-UPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.867 [XNIO-1 task-2] PCUF-Y1VSZaEmMzWn9-UPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.867 [XNIO-1 task-2] PCUF-Y1VSZaEmMzWn9-UPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.867 [XNIO-1 task-2] PCUF-Y1VSZaEmMzWn9-UPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.868 [XNIO-1 task-2] PCUF-Y1VSZaEmMzWn9-UPg DEBUG com.networknt.schema.TypeValidator debug - validate( "abc0d696-4e68-4e72-870e-63d7956a0488", "abc0d696-4e68-4e72-870e-63d7956a0488", refreshToken) +16:40:12.868 [XNIO-1 task-2] PCUF-Y1VSZaEmMzWn9-UPg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token abc0d696-4e68-4e72-870e-63d7956a0488 is not found.","severity":"ERROR"} +16:40:12.870 [XNIO-1 task-2] 77-eLQnpTJWYGJpaLn5rVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.870 [XNIO-1 task-2] 77-eLQnpTJWYGJpaLn5rVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.870 [XNIO-1 task-2] 77-eLQnpTJWYGJpaLn5rVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.870 [XNIO-1 task-2] 77-eLQnpTJWYGJpaLn5rVQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.872 [XNIO-1 task-2] R86z-RoCTbSvxwKGwM2Qpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.872 [XNIO-1 task-2] R86z-RoCTbSvxwKGwM2Qpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.872 [XNIO-1 task-2] R86z-RoCTbSvxwKGwM2Qpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.872 [XNIO-1 task-2] R86z-RoCTbSvxwKGwM2Qpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.872 [XNIO-1 task-2] R86z-RoCTbSvxwKGwM2Qpw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 09516f3f-5e3a-461c-86fb-47fd52a66a91 +16:40:12.874 [XNIO-1 task-2] CMzMhu5HSGmwDhx25cpK-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.874 [XNIO-1 task-2] CMzMhu5HSGmwDhx25cpK-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.874 [XNIO-1 task-2] CMzMhu5HSGmwDhx25cpK-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.874 [XNIO-1 task-2] CMzMhu5HSGmwDhx25cpK-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.876 [XNIO-1 task-2] vMJddbHzQtuoLKrQ3UZhnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.876 [XNIO-1 task-2] vMJddbHzQtuoLKrQ3UZhnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.876 [XNIO-1 task-2] vMJddbHzQtuoLKrQ3UZhnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.876 [XNIO-1 task-2] vMJddbHzQtuoLKrQ3UZhnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.876 [XNIO-1 task-2] vMJddbHzQtuoLKrQ3UZhnA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.876 [XNIO-1 task-2] vMJddbHzQtuoLKrQ3UZhnA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.878 [XNIO-1 task-2] 4edNDBs1QUGzTl94FKLiGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.878 [XNIO-1 task-2] 4edNDBs1QUGzTl94FKLiGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.878 [XNIO-1 task-2] 4edNDBs1QUGzTl94FKLiGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.878 [XNIO-1 task-2] 4edNDBs1QUGzTl94FKLiGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.878 [XNIO-1 task-2] 4edNDBs1QUGzTl94FKLiGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.879 [XNIO-1 task-2] dh1RROIER76ZMCPRhJZ2aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.880 [XNIO-1 task-2] dh1RROIER76ZMCPRhJZ2aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.880 [XNIO-1 task-2] dh1RROIER76ZMCPRhJZ2aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.880 [XNIO-1 task-2] dh1RROIER76ZMCPRhJZ2aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.880 [XNIO-1 task-2] dh1RROIER76ZMCPRhJZ2aw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.880 [XNIO-1 task-2] dh1RROIER76ZMCPRhJZ2aw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.882 [XNIO-1 task-2] HEFHHmyeQ-aGAr4U4hcABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.882 [XNIO-1 task-2] HEFHHmyeQ-aGAr4U4hcABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.882 [XNIO-1 task-2] HEFHHmyeQ-aGAr4U4hcABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.882 [XNIO-1 task-2] HEFHHmyeQ-aGAr4U4hcABA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.882 [XNIO-1 task-2] HEFHHmyeQ-aGAr4U4hcABA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.884 [XNIO-1 task-2] iF8ESfVcSpS-kcnDJdoMNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.884 [XNIO-1 task-2] iF8ESfVcSpS-kcnDJdoMNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.884 [XNIO-1 task-2] iF8ESfVcSpS-kcnDJdoMNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.884 [XNIO-1 task-2] iF8ESfVcSpS-kcnDJdoMNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.884 [XNIO-1 task-2] iF8ESfVcSpS-kcnDJdoMNg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.884 [XNIO-1 task-2] iF8ESfVcSpS-kcnDJdoMNg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.886 [XNIO-1 task-2] 5mrIra3TQaeeoiB7HwvrcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.886 [XNIO-1 task-2] 5mrIra3TQaeeoiB7HwvrcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.886 [XNIO-1 task-2] 5mrIra3TQaeeoiB7HwvrcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.886 [XNIO-1 task-2] 5mrIra3TQaeeoiB7HwvrcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.886 [XNIO-1 task-2] 5mrIra3TQaeeoiB7HwvrcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.887 [XNIO-1 task-2] VTaov8euSTCBAhpF3pLb0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.887 [XNIO-1 task-2] VTaov8euSTCBAhpF3pLb0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.887 [XNIO-1 task-2] VTaov8euSTCBAhpF3pLb0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.887 [XNIO-1 task-2] VTaov8euSTCBAhpF3pLb0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.888 [XNIO-1 task-2] VTaov8euSTCBAhpF3pLb0A DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.888 [XNIO-1 task-2] VTaov8euSTCBAhpF3pLb0A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.889 [XNIO-1 task-2] kSScv0ddTwuIlRotrpEAXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.889 [XNIO-1 task-2] kSScv0ddTwuIlRotrpEAXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.889 [XNIO-1 task-2] kSScv0ddTwuIlRotrpEAXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.889 [XNIO-1 task-2] kSScv0ddTwuIlRotrpEAXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.889 [XNIO-1 task-2] kSScv0ddTwuIlRotrpEAXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.892 [XNIO-1 task-2] LVwORRmJR-ab7miW8fUbvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.892 [XNIO-1 task-2] LVwORRmJR-ab7miW8fUbvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.892 [XNIO-1 task-2] LVwORRmJR-ab7miW8fUbvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.893 [XNIO-1 task-2] LVwORRmJR-ab7miW8fUbvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.893 [XNIO-1 task-2] LVwORRmJR-ab7miW8fUbvg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.893 [XNIO-1 task-2] LVwORRmJR-ab7miW8fUbvg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.894 [XNIO-1 task-2] DeaQz1EjTnKsVDA0PPlQ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.894 [XNIO-1 task-2] DeaQz1EjTnKsVDA0PPlQ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.894 [XNIO-1 task-2] DeaQz1EjTnKsVDA0PPlQ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.894 [XNIO-1 task-2] DeaQz1EjTnKsVDA0PPlQ6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.894 [XNIO-1 task-2] DeaQz1EjTnKsVDA0PPlQ6A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.896 [XNIO-1 task-2] Qwm_AhSZSyCdCkswwBAUdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.896 [XNIO-1 task-2] Qwm_AhSZSyCdCkswwBAUdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.896 [XNIO-1 task-2] Qwm_AhSZSyCdCkswwBAUdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.896 [XNIO-1 task-2] Qwm_AhSZSyCdCkswwBAUdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.896 [XNIO-1 task-2] Qwm_AhSZSyCdCkswwBAUdw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.899 [XNIO-1 task-2] A_Q3_iVTR06YNJdNjpnrZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.899 [XNIO-1 task-2] A_Q3_iVTR06YNJdNjpnrZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.900 [XNIO-1 task-2] A_Q3_iVTR06YNJdNjpnrZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.900 [XNIO-1 task-2] A_Q3_iVTR06YNJdNjpnrZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.903 [XNIO-1 task-2] h0c4OWtlTvGH08XiFnYIKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.903 [XNIO-1 task-2] h0c4OWtlTvGH08XiFnYIKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.903 [XNIO-1 task-2] h0c4OWtlTvGH08XiFnYIKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.903 [XNIO-1 task-2] h0c4OWtlTvGH08XiFnYIKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.903 [XNIO-1 task-2] h0c4OWtlTvGH08XiFnYIKw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.904 [XNIO-1 task-2] h0c4OWtlTvGH08XiFnYIKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.905 [XNIO-1 task-2] OfPpyfZrStmaESvaC4fLow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.905 [XNIO-1 task-2] OfPpyfZrStmaESvaC4fLow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.905 [XNIO-1 task-2] OfPpyfZrStmaESvaC4fLow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.905 [XNIO-1 task-2] OfPpyfZrStmaESvaC4fLow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.905 [XNIO-1 task-2] OfPpyfZrStmaESvaC4fLow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.907 [XNIO-1 task-2] BN1B22wxRZGfEerzOF0Otw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.907 [XNIO-1 task-2] BN1B22wxRZGfEerzOF0Otw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.907 [XNIO-1 task-2] BN1B22wxRZGfEerzOF0Otw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.907 [XNIO-1 task-2] BN1B22wxRZGfEerzOF0Otw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.907 [XNIO-1 task-2] BN1B22wxRZGfEerzOF0Otw DEBUG com.networknt.schema.TypeValidator debug - validate( "abc0d696-4e68-4e72-870e-63d7956a0488", "abc0d696-4e68-4e72-870e-63d7956a0488", refreshToken) +16:40:12.908 [XNIO-1 task-2] BN1B22wxRZGfEerzOF0Otw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token abc0d696-4e68-4e72-870e-63d7956a0488 is not found.","severity":"ERROR"} +16:40:12.910 [XNIO-1 task-2] 3y1-VwpsS-OTBKwv5DKIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.910 [XNIO-1 task-2] 3y1-VwpsS-OTBKwv5DKIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.910 [XNIO-1 task-2] 3y1-VwpsS-OTBKwv5DKIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.910 [XNIO-1 task-2] 3y1-VwpsS-OTBKwv5DKIcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.910 [XNIO-1 task-2] 3y1-VwpsS-OTBKwv5DKIcA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.912 [XNIO-1 task-2] EmOtacAJQdK7UUX7tZA9WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.912 [XNIO-1 task-2] EmOtacAJQdK7UUX7tZA9WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.912 [XNIO-1 task-2] EmOtacAJQdK7UUX7tZA9WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.912 [XNIO-1 task-2] EmOtacAJQdK7UUX7tZA9WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.912 [XNIO-1 task-2] EmOtacAJQdK7UUX7tZA9WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.912 [XNIO-1 task-2] EmOtacAJQdK7UUX7tZA9WQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.913 [XNIO-1 task-2] HIZlK6mBQbOHJiX4fJ6MpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.913 [XNIO-1 task-2] HIZlK6mBQbOHJiX4fJ6MpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.914 [XNIO-1 task-2] HIZlK6mBQbOHJiX4fJ6MpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.914 [XNIO-1 task-2] HIZlK6mBQbOHJiX4fJ6MpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.914 [XNIO-1 task-2] HIZlK6mBQbOHJiX4fJ6MpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.915 [XNIO-1 task-2] uZG0wRcJS5-3QAtnHX4xPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.915 [XNIO-1 task-2] uZG0wRcJS5-3QAtnHX4xPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.915 [XNIO-1 task-2] uZG0wRcJS5-3QAtnHX4xPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.915 [XNIO-1 task-2] uZG0wRcJS5-3QAtnHX4xPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.915 [XNIO-1 task-2] uZG0wRcJS5-3QAtnHX4xPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.915 [XNIO-1 task-2] uZG0wRcJS5-3QAtnHX4xPQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.917 [XNIO-1 task-2] sgDy0UQwTE-OfbzAvZ0zqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.917 [XNIO-1 task-2] sgDy0UQwTE-OfbzAvZ0zqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.917 [XNIO-1 task-2] sgDy0UQwTE-OfbzAvZ0zqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.917 [XNIO-1 task-2] sgDy0UQwTE-OfbzAvZ0zqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.917 [XNIO-1 task-2] sgDy0UQwTE-OfbzAvZ0zqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.920 [XNIO-1 task-2] 3fNPbpIbQNy2yodx7jKTIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.920 [XNIO-1 task-2] 3fNPbpIbQNy2yodx7jKTIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.920 [XNIO-1 task-2] 3fNPbpIbQNy2yodx7jKTIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.920 [XNIO-1 task-2] 3fNPbpIbQNy2yodx7jKTIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.920 [XNIO-1 task-2] 3fNPbpIbQNy2yodx7jKTIA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.920 [XNIO-1 task-2] 3fNPbpIbQNy2yodx7jKTIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.922 [XNIO-1 task-2] -gtF--czTTW67V9H7EF5Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.922 [XNIO-1 task-2] -gtF--czTTW67V9H7EF5Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.922 [XNIO-1 task-2] -gtF--czTTW67V9H7EF5Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.922 [XNIO-1 task-2] -gtF--czTTW67V9H7EF5Kg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.924 [XNIO-1 task-2] z6j8vNf3RSyAtpycHI_qfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.924 [XNIO-1 task-2] z6j8vNf3RSyAtpycHI_qfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.924 [XNIO-1 task-2] z6j8vNf3RSyAtpycHI_qfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.924 [XNIO-1 task-2] z6j8vNf3RSyAtpycHI_qfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.924 [XNIO-1 task-2] z6j8vNf3RSyAtpycHI_qfQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.926 [XNIO-1 task-2] ixotrPWhQtmeHP2O4N7qSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.926 [XNIO-1 task-2] ixotrPWhQtmeHP2O4N7qSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.926 [XNIO-1 task-2] ixotrPWhQtmeHP2O4N7qSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.926 [XNIO-1 task-2] ixotrPWhQtmeHP2O4N7qSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.926 [XNIO-1 task-2] ixotrPWhQtmeHP2O4N7qSw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.926 [XNIO-1 task-2] ixotrPWhQtmeHP2O4N7qSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.928 [XNIO-1 task-2] Q1soztDDQt-tbMz9g3YawA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.928 [XNIO-1 task-2] Q1soztDDQt-tbMz9g3YawA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.928 [XNIO-1 task-2] Q1soztDDQt-tbMz9g3YawA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.928 [XNIO-1 task-2] Q1soztDDQt-tbMz9g3YawA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.928 [XNIO-1 task-2] Q1soztDDQt-tbMz9g3YawA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.930 [XNIO-1 task-2] M8vGJOQBTM-b--8PwLr2aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.930 [XNIO-1 task-2] M8vGJOQBTM-b--8PwLr2aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.930 [XNIO-1 task-2] M8vGJOQBTM-b--8PwLr2aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.930 [XNIO-1 task-2] M8vGJOQBTM-b--8PwLr2aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.930 [XNIO-1 task-2] M8vGJOQBTM-b--8PwLr2aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.930 [XNIO-1 task-2] M8vGJOQBTM-b--8PwLr2aQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.932 [XNIO-1 task-2] UKcfbqbwSBGePHkmp9wYrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.932 [XNIO-1 task-2] UKcfbqbwSBGePHkmp9wYrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.932 [XNIO-1 task-2] UKcfbqbwSBGePHkmp9wYrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.932 [XNIO-1 task-2] UKcfbqbwSBGePHkmp9wYrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.932 [XNIO-1 task-2] UKcfbqbwSBGePHkmp9wYrw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.934 [XNIO-1 task-2] I9FYTJ6KS9uGdkANdkjUyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.934 [XNIO-1 task-2] I9FYTJ6KS9uGdkANdkjUyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.934 [XNIO-1 task-2] I9FYTJ6KS9uGdkANdkjUyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.934 [XNIO-1 task-2] I9FYTJ6KS9uGdkANdkjUyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.934 [XNIO-1 task-2] I9FYTJ6KS9uGdkANdkjUyw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.934 [XNIO-1 task-2] I9FYTJ6KS9uGdkANdkjUyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.936 [XNIO-1 task-2] Hv22Gk8DQoih9gAUeu-tlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.936 [XNIO-1 task-2] Hv22Gk8DQoih9gAUeu-tlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.937 [XNIO-1 task-2] Hv22Gk8DQoih9gAUeu-tlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.937 [XNIO-1 task-2] Hv22Gk8DQoih9gAUeu-tlA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.938 [XNIO-1 task-2] 82AWclVNTvGmrbJ8n_GurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.938 [XNIO-1 task-2] 82AWclVNTvGmrbJ8n_GurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.938 [XNIO-1 task-2] 82AWclVNTvGmrbJ8n_GurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.938 [XNIO-1 task-2] 82AWclVNTvGmrbJ8n_GurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.938 [XNIO-1 task-2] 82AWclVNTvGmrbJ8n_GurA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.940 [XNIO-1 task-2] 4XjoRQOgQmiuew74mrnEBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.940 [XNIO-1 task-2] 4XjoRQOgQmiuew74mrnEBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.940 [XNIO-1 task-2] 4XjoRQOgQmiuew74mrnEBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.940 [XNIO-1 task-2] 4XjoRQOgQmiuew74mrnEBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488, base path is set to: null +16:40:12.940 [XNIO-1 task-2] 4XjoRQOgQmiuew74mrnEBg DEBUG com.networknt.schema.TypeValidator debug - validate( "abc0d696-4e68-4e72-870e-63d7956a0488", "abc0d696-4e68-4e72-870e-63d7956a0488", refreshToken) +16:40:12.940 [XNIO-1 task-2] 4XjoRQOgQmiuew74mrnEBg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token abc0d696-4e68-4e72-870e-63d7956a0488 is not found.","severity":"ERROR"} +16:40:12.942 [XNIO-1 task-2] nQqNOCeISZiATdX93shX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.942 [XNIO-1 task-2] nQqNOCeISZiATdX93shX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.942 [XNIO-1 task-2] nQqNOCeISZiATdX93shX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.942 [XNIO-1 task-2] nQqNOCeISZiATdX93shX4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.942 [XNIO-1 task-2] nQqNOCeISZiATdX93shX4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.945 [XNIO-1 task-2] M7wIg7WxS5y_bqq7CNgUvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.946 [XNIO-1 task-2] M7wIg7WxS5y_bqq7CNgUvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.946 [XNIO-1 task-2] M7wIg7WxS5y_bqq7CNgUvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.946 [XNIO-1 task-2] M7wIg7WxS5y_bqq7CNgUvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.946 [XNIO-1 task-2] M7wIg7WxS5y_bqq7CNgUvQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.949 [XNIO-1 task-2] vcXLAZ_gQMWyx0rD0OewkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.950 [XNIO-1 task-2] vcXLAZ_gQMWyx0rD0OewkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.950 [XNIO-1 task-2] vcXLAZ_gQMWyx0rD0OewkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.950 [XNIO-1 task-2] vcXLAZ_gQMWyx0rD0OewkA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.951 [XNIO-1 task-2] xWspbCW-TjuQgYoz4-_E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.951 [XNIO-1 task-2] xWspbCW-TjuQgYoz4-_E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.951 [XNIO-1 task-2] xWspbCW-TjuQgYoz4-_E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.951 [XNIO-1 task-2] xWspbCW-TjuQgYoz4-_E-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.951 [XNIO-1 task-2] xWspbCW-TjuQgYoz4-_E-w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.953 [XNIO-1 task-2] W3l1y548QRaP5G9y2z894Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.953 [XNIO-1 task-2] W3l1y548QRaP5G9y2z894Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.953 [XNIO-1 task-2] W3l1y548QRaP5G9y2z894Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.953 [XNIO-1 task-2] W3l1y548QRaP5G9y2z894Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.953 [XNIO-1 task-2] W3l1y548QRaP5G9y2z894Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.953 [XNIO-1 task-2] W3l1y548QRaP5G9y2z894Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.956 [XNIO-1 task-2] ofLhwJ98TqKX4dgZDrFF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.956 [XNIO-1 task-2] ofLhwJ98TqKX4dgZDrFF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.956 [XNIO-1 task-2] ofLhwJ98TqKX4dgZDrFF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.956 [XNIO-1 task-2] ofLhwJ98TqKX4dgZDrFF7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.956 [XNIO-1 task-2] ofLhwJ98TqKX4dgZDrFF7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.957 [XNIO-1 task-2] MdEiT0fVSqu829ywU_yLqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.957 [XNIO-1 task-2] MdEiT0fVSqu829ywU_yLqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.958 [XNIO-1 task-2] MdEiT0fVSqu829ywU_yLqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.958 [XNIO-1 task-2] MdEiT0fVSqu829ywU_yLqw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.959 [XNIO-1 task-2] e999AbchSOGJ-GmOC9h3EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.959 [XNIO-1 task-2] e999AbchSOGJ-GmOC9h3EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.959 [XNIO-1 task-2] e999AbchSOGJ-GmOC9h3EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.959 [XNIO-1 task-2] e999AbchSOGJ-GmOC9h3EA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.959 [XNIO-1 task-2] e999AbchSOGJ-GmOC9h3EA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.964 [XNIO-1 task-2] bBCEQ70jR-eD0s4GWIv7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.964 [XNIO-1 task-2] bBCEQ70jR-eD0s4GWIv7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.964 [XNIO-1 task-2] bBCEQ70jR-eD0s4GWIv7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.964 [XNIO-1 task-2] bBCEQ70jR-eD0s4GWIv7AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.964 [XNIO-1 task-2] bBCEQ70jR-eD0s4GWIv7AA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.966 [XNIO-1 task-2] 0tNcvXrwR4iYC_QijwPLzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.966 [XNIO-1 task-2] 0tNcvXrwR4iYC_QijwPLzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.966 [XNIO-1 task-2] 0tNcvXrwR4iYC_QijwPLzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.966 [XNIO-1 task-2] 0tNcvXrwR4iYC_QijwPLzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.966 [XNIO-1 task-2] 0tNcvXrwR4iYC_QijwPLzA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.966 [XNIO-1 task-2] 0tNcvXrwR4iYC_QijwPLzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.968 [XNIO-1 task-2] hMKwWTMgSkCiPpx4pbcNeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.968 [XNIO-1 task-2] hMKwWTMgSkCiPpx4pbcNeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.968 [XNIO-1 task-2] hMKwWTMgSkCiPpx4pbcNeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.968 [XNIO-1 task-2] hMKwWTMgSkCiPpx4pbcNeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.973 [XNIO-1 task-2] 1zehqai5RfKQFnbq5AwpHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.974 [XNIO-1 task-2] 1zehqai5RfKQFnbq5AwpHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.974 [XNIO-1 task-2] 1zehqai5RfKQFnbq5AwpHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.974 [XNIO-1 task-2] 1zehqai5RfKQFnbq5AwpHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.974 [XNIO-1 task-2] 1zehqai5RfKQFnbq5AwpHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.974 [XNIO-1 task-2] 1zehqai5RfKQFnbq5AwpHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.976 [XNIO-1 task-2] 2JdkQt0XQ1ydAMh-WtmYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.976 [XNIO-1 task-2] 2JdkQt0XQ1ydAMh-WtmYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.976 [XNIO-1 task-2] 2JdkQt0XQ1ydAMh-WtmYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.976 [XNIO-1 task-2] 2JdkQt0XQ1ydAMh-WtmYgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.976 [XNIO-1 task-2] 2JdkQt0XQ1ydAMh-WtmYgw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.977 [XNIO-1 task-2] 3b9BoQwRQRmqWsZOgdcjKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.977 [XNIO-1 task-2] 3b9BoQwRQRmqWsZOgdcjKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.977 [XNIO-1 task-2] 3b9BoQwRQRmqWsZOgdcjKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.978 [XNIO-1 task-2] 3b9BoQwRQRmqWsZOgdcjKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.978 [XNIO-1 task-2] 3b9BoQwRQRmqWsZOgdcjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.978 [XNIO-1 task-2] 3b9BoQwRQRmqWsZOgdcjKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.979 [XNIO-1 task-2] IJkMrApPTGiNNGRH1DlcKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.979 [XNIO-1 task-2] IJkMrApPTGiNNGRH1DlcKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.979 [XNIO-1 task-2] IJkMrApPTGiNNGRH1DlcKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.979 [XNIO-1 task-2] IJkMrApPTGiNNGRH1DlcKQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.982 [XNIO-1 task-2] pSfqFN3JSNW2fu4RmanPpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.982 [XNIO-1 task-2] pSfqFN3JSNW2fu4RmanPpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.982 [XNIO-1 task-2] pSfqFN3JSNW2fu4RmanPpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.982 [XNIO-1 task-2] pSfqFN3JSNW2fu4RmanPpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.982 [XNIO-1 task-2] pSfqFN3JSNW2fu4RmanPpA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.984 [XNIO-1 task-2] QIeVHEnDSMSouHGpiDjynA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.984 [XNIO-1 task-2] QIeVHEnDSMSouHGpiDjynA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.984 [XNIO-1 task-2] QIeVHEnDSMSouHGpiDjynA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.984 [XNIO-1 task-2] QIeVHEnDSMSouHGpiDjynA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:12.984 [XNIO-1 task-2] QIeVHEnDSMSouHGpiDjynA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:12.984 [XNIO-1 task-2] QIeVHEnDSMSouHGpiDjynA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:12.985 [XNIO-1 task-2] MeuoBQjxTeGSBsaq-D-amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.985 [XNIO-1 task-2] MeuoBQjxTeGSBsaq-D-amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.985 [XNIO-1 task-2] MeuoBQjxTeGSBsaq-D-amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.986 [XNIO-1 task-2] MeuoBQjxTeGSBsaq-D-amg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.986 [XNIO-1 task-2] MeuoBQjxTeGSBsaq-D-amg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:12.987 [XNIO-1 task-2] 2KXA5fDUTrW6qeU-r6kaZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.987 [XNIO-1 task-2] 2KXA5fDUTrW6qeU-r6kaZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.987 [XNIO-1 task-2] 2KXA5fDUTrW6qeU-r6kaZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.987 [XNIO-1 task-2] 2KXA5fDUTrW6qeU-r6kaZQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:12.989 [XNIO-1 task-2] Aif_MPw8Ro-0n8gE75w1lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.989 [XNIO-1 task-2] Aif_MPw8Ro-0n8gE75w1lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.989 [XNIO-1 task-2] Aif_MPw8Ro-0n8gE75w1lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:12.989 [XNIO-1 task-2] Aif_MPw8Ro-0n8gE75w1lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:12.989 [XNIO-1 task-2] Aif_MPw8Ro-0n8gE75w1lg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:12.989 [XNIO-1 task-2] Aif_MPw8Ro-0n8gE75w1lg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:12.991 [XNIO-1 task-2] G8vihrlHRXyVYkjcgtYuxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.991 [XNIO-1 task-2] G8vihrlHRXyVYkjcgtYuxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.991 [XNIO-1 task-2] G8vihrlHRXyVYkjcgtYuxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.992 [XNIO-1 task-2] G8vihrlHRXyVYkjcgtYuxw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:12.993 [XNIO-1 task-2] cvXWs81_R7-V6cDg7a-vgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.993 [XNIO-1 task-2] cvXWs81_R7-V6cDg7a-vgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.993 [XNIO-1 task-2] cvXWs81_R7-V6cDg7a-vgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.993 [XNIO-1 task-2] cvXWs81_R7-V6cDg7a-vgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.993 [XNIO-1 task-2] cvXWs81_R7-V6cDg7a-vgw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:12.994 [XNIO-1 task-2] cShMmx73QEGWSYLxS0xGDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.994 [XNIO-1 task-2] cShMmx73QEGWSYLxS0xGDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:12.995 [XNIO-1 task-2] cShMmx73QEGWSYLxS0xGDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:12.995 [XNIO-1 task-2] cShMmx73QEGWSYLxS0xGDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.995 [XNIO-1 task-2] cShMmx73QEGWSYLxS0xGDA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:12.999 [XNIO-1 task-2] xU2KQNOfQFqFN9gC7ah26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.999 [XNIO-1 task-2] xU2KQNOfQFqFN9gC7ah26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:12.999 [XNIO-1 task-2] xU2KQNOfQFqFN9gC7ah26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:12.999 [XNIO-1 task-2] xU2KQNOfQFqFN9gC7ah26A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:12.999 [XNIO-1 task-2] xU2KQNOfQFqFN9gC7ah26A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:13.002 [XNIO-1 task-2] McIiFq-sR1ebGvzw557Uaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.002 [XNIO-1 task-2] McIiFq-sR1ebGvzw557Uaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.002 [XNIO-1 task-2] McIiFq-sR1ebGvzw557Uaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.002 [XNIO-1 task-2] McIiFq-sR1ebGvzw557Uaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.002 [XNIO-1 task-2] McIiFq-sR1ebGvzw557Uaw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:13.002 [XNIO-1 task-2] McIiFq-sR1ebGvzw557Uaw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:13.004 [XNIO-1 task-2] fY6gXwLoQ2CuqPIDaoYYeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.004 [XNIO-1 task-2] fY6gXwLoQ2CuqPIDaoYYeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.004 [XNIO-1 task-2] fY6gXwLoQ2CuqPIDaoYYeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.004 [XNIO-1 task-2] fY6gXwLoQ2CuqPIDaoYYeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.004 [XNIO-1 task-2] fY6gXwLoQ2CuqPIDaoYYeg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:13.005 [XNIO-1 task-2] qz8CzoQ6QUSwR7BgK9EagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.005 [XNIO-1 task-2] qz8CzoQ6QUSwR7BgK9EagA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.006 [XNIO-1 task-2] qz8CzoQ6QUSwR7BgK9EagA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.006 [XNIO-1 task-2] qz8CzoQ6QUSwR7BgK9EagA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.006 [XNIO-1 task-2] qz8CzoQ6QUSwR7BgK9EagA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.011 [XNIO-1 task-2] rzM_aSTmSP-fMmm1WM4gTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.011 [XNIO-1 task-2] rzM_aSTmSP-fMmm1WM4gTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.011 [XNIO-1 task-2] rzM_aSTmSP-fMmm1WM4gTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.011 [XNIO-1 task-2] rzM_aSTmSP-fMmm1WM4gTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.015 [XNIO-1 task-2] 1QBusOeuQ86TcUU-5xDpdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.015 [XNIO-1 task-2] 1QBusOeuQ86TcUU-5xDpdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.015 [XNIO-1 task-2] 1QBusOeuQ86TcUU-5xDpdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.016 [XNIO-1 task-2] 1QBusOeuQ86TcUU-5xDpdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.016 [XNIO-1 task-2] 1QBusOeuQ86TcUU-5xDpdw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.019 [XNIO-1 task-2] ZG5WQGxFQVyU5U3RjVehoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.019 [XNIO-1 task-2] ZG5WQGxFQVyU5U3RjVehoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.019 [XNIO-1 task-2] ZG5WQGxFQVyU5U3RjVehoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.019 [XNIO-1 task-2] ZG5WQGxFQVyU5U3RjVehoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.019 [XNIO-1 task-2] ZG5WQGxFQVyU5U3RjVehoA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.021 [XNIO-1 task-2] nqqXkrKxRuCzSenUDMGczQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.021 [XNIO-1 task-2] nqqXkrKxRuCzSenUDMGczQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.021 [XNIO-1 task-2] nqqXkrKxRuCzSenUDMGczQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.021 [XNIO-1 task-2] nqqXkrKxRuCzSenUDMGczQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.021 [XNIO-1 task-2] nqqXkrKxRuCzSenUDMGczQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.021 [XNIO-1 task-2] nqqXkrKxRuCzSenUDMGczQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.023 [XNIO-1 task-2] -MR1Ov12TJyi2E3--ryuoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.023 [XNIO-1 task-2] -MR1Ov12TJyi2E3--ryuoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.023 [XNIO-1 task-2] -MR1Ov12TJyi2E3--ryuoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.023 [XNIO-1 task-2] -MR1Ov12TJyi2E3--ryuoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.023 [XNIO-1 task-2] -MR1Ov12TJyi2E3--ryuoA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.025 [XNIO-1 task-2] qFQ1VqBOQYqnMVocUyEd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.025 [XNIO-1 task-2] qFQ1VqBOQYqnMVocUyEd0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.025 [XNIO-1 task-2] qFQ1VqBOQYqnMVocUyEd0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.025 [XNIO-1 task-2] qFQ1VqBOQYqnMVocUyEd0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.027 [XNIO-1 task-2] q6JGzO_6QRmr88VInSVHcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.027 [XNIO-1 task-2] q6JGzO_6QRmr88VInSVHcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.027 [XNIO-1 task-2] q6JGzO_6QRmr88VInSVHcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.027 [XNIO-1 task-2] q6JGzO_6QRmr88VInSVHcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.027 [XNIO-1 task-2] q6JGzO_6QRmr88VInSVHcg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.027 [XNIO-1 task-2] q6JGzO_6QRmr88VInSVHcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.029 [XNIO-1 task-2] wIyYotRLSX6p1hNRuuq6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.029 [XNIO-1 task-2] wIyYotRLSX6p1hNRuuq6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.029 [XNIO-1 task-2] wIyYotRLSX6p1hNRuuq6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.029 [XNIO-1 task-2] wIyYotRLSX6p1hNRuuq6YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.029 [XNIO-1 task-2] wIyYotRLSX6p1hNRuuq6YQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.031 [XNIO-1 task-2] OkNxEFExSo-lKWAuwD5zIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.031 [XNIO-1 task-2] OkNxEFExSo-lKWAuwD5zIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.031 [XNIO-1 task-2] OkNxEFExSo-lKWAuwD5zIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.031 [XNIO-1 task-2] OkNxEFExSo-lKWAuwD5zIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.031 [XNIO-1 task-2] OkNxEFExSo-lKWAuwD5zIw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.031 [XNIO-1 task-2] OkNxEFExSo-lKWAuwD5zIw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.033 [XNIO-1 task-2] n-gNspbQTiGk-VMKqbgvLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.033 [XNIO-1 task-2] n-gNspbQTiGk-VMKqbgvLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.033 [XNIO-1 task-2] n-gNspbQTiGk-VMKqbgvLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.033 [XNIO-1 task-2] n-gNspbQTiGk-VMKqbgvLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.033 [XNIO-1 task-2] n-gNspbQTiGk-VMKqbgvLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:13.036 [XNIO-1 task-2] 73XRKCofSW2VklPY0Xm4sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.036 [XNIO-1 task-2] 73XRKCofSW2VklPY0Xm4sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.036 [XNIO-1 task-2] 73XRKCofSW2VklPY0Xm4sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.036 [XNIO-1 task-2] 73XRKCofSW2VklPY0Xm4sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.036 [XNIO-1 task-2] 73XRKCofSW2VklPY0Xm4sA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:13.036 [XNIO-1 task-2] 73XRKCofSW2VklPY0Xm4sA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:13.038 [XNIO-1 task-2] Xz0qf-SGQ1OJiAmGQnUegA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.038 [XNIO-1 task-2] Xz0qf-SGQ1OJiAmGQnUegA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.038 [XNIO-1 task-2] Xz0qf-SGQ1OJiAmGQnUegA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.038 [XNIO-1 task-2] Xz0qf-SGQ1OJiAmGQnUegA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.038 [XNIO-1 task-2] Xz0qf-SGQ1OJiAmGQnUegA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.039 [XNIO-1 task-2] nuiwSs-VS7iVzBoh_Fn9ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.039 [XNIO-1 task-2] nuiwSs-VS7iVzBoh_Fn9ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.039 [XNIO-1 task-2] nuiwSs-VS7iVzBoh_Fn9ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.039 [XNIO-1 task-2] nuiwSs-VS7iVzBoh_Fn9ug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.041 [XNIO-1 task-2] MKebFRE6TauJvFZEPtfxEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.041 [XNIO-1 task-2] MKebFRE6TauJvFZEPtfxEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.041 [XNIO-1 task-2] MKebFRE6TauJvFZEPtfxEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.041 [XNIO-1 task-2] MKebFRE6TauJvFZEPtfxEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.041 [XNIO-1 task-2] MKebFRE6TauJvFZEPtfxEg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.041 [XNIO-1 task-2] MKebFRE6TauJvFZEPtfxEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.043 [XNIO-1 task-2] 6epYLmHbQTWpobeTgcCefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.043 [XNIO-1 task-2] 6epYLmHbQTWpobeTgcCefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.043 [XNIO-1 task-2] 6epYLmHbQTWpobeTgcCefQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.043 [XNIO-1 task-2] 6epYLmHbQTWpobeTgcCefQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.047 [XNIO-1 task-2] yrYDEsprTjW5aoWKMdlF0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.047 [XNIO-1 task-2] yrYDEsprTjW5aoWKMdlF0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.047 [XNIO-1 task-2] yrYDEsprTjW5aoWKMdlF0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.047 [XNIO-1 task-2] yrYDEsprTjW5aoWKMdlF0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.047 [XNIO-1 task-2] yrYDEsprTjW5aoWKMdlF0g DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.048 [XNIO-1 task-2] yrYDEsprTjW5aoWKMdlF0g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.049 [XNIO-1 task-2] UZ90RnceTcmvGobq7157Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.049 [XNIO-1 task-2] UZ90RnceTcmvGobq7157Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.049 [XNIO-1 task-2] UZ90RnceTcmvGobq7157Gg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.049 [XNIO-1 task-2] UZ90RnceTcmvGobq7157Gg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.055 [XNIO-1 task-2] OxSjo1IkR3SmkJRfXXl5HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.055 [XNIO-1 task-2] OxSjo1IkR3SmkJRfXXl5HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.055 [XNIO-1 task-2] OxSjo1IkR3SmkJRfXXl5HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.055 [XNIO-1 task-2] OxSjo1IkR3SmkJRfXXl5HA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.056 [XNIO-1 task-2] 44srVJU3SfS3NlsbM8NQ1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.056 [XNIO-1 task-2] 44srVJU3SfS3NlsbM8NQ1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.056 [XNIO-1 task-2] 44srVJU3SfS3NlsbM8NQ1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.057 [XNIO-1 task-2] 44srVJU3SfS3NlsbM8NQ1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.057 [XNIO-1 task-2] 44srVJU3SfS3NlsbM8NQ1w DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.057 [XNIO-1 task-2] 44srVJU3SfS3NlsbM8NQ1w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.058 [XNIO-1 task-2] mtctc2CtSKGz5g6Ghza86g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.058 [XNIO-1 task-2] mtctc2CtSKGz5g6Ghza86g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.058 [XNIO-1 task-2] mtctc2CtSKGz5g6Ghza86g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.058 [XNIO-1 task-2] mtctc2CtSKGz5g6Ghza86g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.064 [XNIO-1 task-2] LrIfsIXRSMGCBe6iV7YLUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.064 [XNIO-1 task-2] LrIfsIXRSMGCBe6iV7YLUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.064 [XNIO-1 task-2] LrIfsIXRSMGCBe6iV7YLUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.064 [XNIO-1 task-2] LrIfsIXRSMGCBe6iV7YLUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.064 [XNIO-1 task-2] LrIfsIXRSMGCBe6iV7YLUw DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:13.064 [XNIO-1 task-2] LrIfsIXRSMGCBe6iV7YLUw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:13.065 [XNIO-1 task-2] 3RzL6JqbQAmiUCXJq1Q5NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.065 [XNIO-1 task-2] 3RzL6JqbQAmiUCXJq1Q5NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.065 [XNIO-1 task-2] 3RzL6JqbQAmiUCXJq1Q5NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.066 [XNIO-1 task-2] 3RzL6JqbQAmiUCXJq1Q5NA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.070 [XNIO-1 task-2] Ah31viFXTVeGrOYIWs8LRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.070 [XNIO-1 task-2] Ah31viFXTVeGrOYIWs8LRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.070 [XNIO-1 task-2] Ah31viFXTVeGrOYIWs8LRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.070 [XNIO-1 task-2] Ah31viFXTVeGrOYIWs8LRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.071 [XNIO-1 task-2] Ah31viFXTVeGrOYIWs8LRg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.074 [XNIO-1 task-2] SuvvtFmKQwyiwaYYZvKMBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.074 [XNIO-1 task-2] SuvvtFmKQwyiwaYYZvKMBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.074 [XNIO-1 task-2] SuvvtFmKQwyiwaYYZvKMBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.074 [XNIO-1 task-2] SuvvtFmKQwyiwaYYZvKMBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.074 [XNIO-1 task-2] SuvvtFmKQwyiwaYYZvKMBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:13.076 [XNIO-1 task-2] BPGgOre8SCOIz-lItDvPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.076 [XNIO-1 task-2] BPGgOre8SCOIz-lItDvPag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.076 [XNIO-1 task-2] BPGgOre8SCOIz-lItDvPag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.076 [XNIO-1 task-2] BPGgOre8SCOIz-lItDvPag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.078 [XNIO-1 task-2] w7t6nrBaR8O64hSO2F4hRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.078 [XNIO-1 task-2] w7t6nrBaR8O64hSO2F4hRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.078 [XNIO-1 task-2] w7t6nrBaR8O64hSO2F4hRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.078 [XNIO-1 task-2] w7t6nrBaR8O64hSO2F4hRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.078 [XNIO-1 task-2] w7t6nrBaR8O64hSO2F4hRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.078 [XNIO-1 task-2] w7t6nrBaR8O64hSO2F4hRQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.080 [XNIO-1 task-2] NJhMa_X7S5SE9idkHAyxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.080 [XNIO-1 task-2] NJhMa_X7S5SE9idkHAyxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.080 [XNIO-1 task-2] NJhMa_X7S5SE9idkHAyxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.080 [XNIO-1 task-2] NJhMa_X7S5SE9idkHAyxhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.080 [XNIO-1 task-2] NJhMa_X7S5SE9idkHAyxhQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.082 [XNIO-1 task-2] fpMPrOffTCCm9ullTwX4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.082 [XNIO-1 task-2] fpMPrOffTCCm9ullTwX4Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.082 [XNIO-1 task-2] fpMPrOffTCCm9ullTwX4Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.082 [XNIO-1 task-2] fpMPrOffTCCm9ullTwX4Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.082 [XNIO-1 task-2] fpMPrOffTCCm9ullTwX4Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.082 [XNIO-1 task-2] fpMPrOffTCCm9ullTwX4Kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.084 [XNIO-1 task-2] Mqe5DX1sRmeV1Z8iHU8B7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.084 [XNIO-1 task-2] Mqe5DX1sRmeV1Z8iHU8B7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.084 [XNIO-1 task-2] Mqe5DX1sRmeV1Z8iHU8B7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.084 [XNIO-1 task-2] Mqe5DX1sRmeV1Z8iHU8B7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.087 [XNIO-1 task-2] xeW09F3NQ7Wut1Nrf70lcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.087 [XNIO-1 task-2] xeW09F3NQ7Wut1Nrf70lcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.087 [XNIO-1 task-2] xeW09F3NQ7Wut1Nrf70lcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.087 [XNIO-1 task-2] xeW09F3NQ7Wut1Nrf70lcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.087 [XNIO-1 task-2] xeW09F3NQ7Wut1Nrf70lcw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.088 [XNIO-1 task-2] xeW09F3NQ7Wut1Nrf70lcw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.091 [XNIO-1 task-2] Mz02bz5RTUW8-6im_0sRvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.091 [XNIO-1 task-2] Mz02bz5RTUW8-6im_0sRvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.091 [XNIO-1 task-2] Mz02bz5RTUW8-6im_0sRvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.091 [XNIO-1 task-2] Mz02bz5RTUW8-6im_0sRvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.095 [XNIO-1 task-2] LUXTJFw-RQyacyR5GlJOdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.095 [XNIO-1 task-2] LUXTJFw-RQyacyR5GlJOdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.095 [XNIO-1 task-2] LUXTJFw-RQyacyR5GlJOdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.095 [XNIO-1 task-2] LUXTJFw-RQyacyR5GlJOdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.095 [XNIO-1 task-2] LUXTJFw-RQyacyR5GlJOdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:13.095 [XNIO-1 task-2] LUXTJFw-RQyacyR5GlJOdQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:13.097 [XNIO-1 task-2] Z6F9fXnNReypkvod8SiF9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.097 [XNIO-1 task-2] Z6F9fXnNReypkvod8SiF9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.097 [XNIO-1 task-2] Z6F9fXnNReypkvod8SiF9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.097 [XNIO-1 task-2] Z6F9fXnNReypkvod8SiF9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.098 [XNIO-1 task-2] Z6F9fXnNReypkvod8SiF9w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:13.100 [XNIO-1 task-2] -pnazfqpSlefoA3-3tC23w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.100 [XNIO-1 task-2] -pnazfqpSlefoA3-3tC23w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.100 [XNIO-1 task-2] -pnazfqpSlefoA3-3tC23w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.100 [XNIO-1 task-2] -pnazfqpSlefoA3-3tC23w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.103 [XNIO-1 task-2] 0PJuazFhRmWrtvtoCK5UlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.103 [XNIO-1 task-2] 0PJuazFhRmWrtvtoCK5UlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.103 [XNIO-1 task-2] 0PJuazFhRmWrtvtoCK5UlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.103 [XNIO-1 task-2] 0PJuazFhRmWrtvtoCK5UlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.103 [XNIO-1 task-2] 0PJuazFhRmWrtvtoCK5UlA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.103 [XNIO-1 task-2] 0PJuazFhRmWrtvtoCK5UlA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.105 [XNIO-1 task-2] BKum3kBvT5--oPvslEgxBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.105 [XNIO-1 task-2] BKum3kBvT5--oPvslEgxBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.107 [XNIO-1 task-2] BKum3kBvT5--oPvslEgxBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.107 [XNIO-1 task-2] BKum3kBvT5--oPvslEgxBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.107 [XNIO-1 task-2] BKum3kBvT5--oPvslEgxBg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.109 [XNIO-1 task-2] Uyr-UBpJSnalKii6-soOsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.109 [XNIO-1 task-2] Uyr-UBpJSnalKii6-soOsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.109 [XNIO-1 task-2] Uyr-UBpJSnalKii6-soOsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.109 [XNIO-1 task-2] Uyr-UBpJSnalKii6-soOsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.109 [XNIO-1 task-2] Uyr-UBpJSnalKii6-soOsQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.113 [XNIO-1 task-2] 0QaKV23OQQiM7XU2_2Y1DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.113 [XNIO-1 task-2] 0QaKV23OQQiM7XU2_2Y1DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.113 [XNIO-1 task-2] 0QaKV23OQQiM7XU2_2Y1DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.113 [XNIO-1 task-2] 0QaKV23OQQiM7XU2_2Y1DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.113 [XNIO-1 task-2] 0QaKV23OQQiM7XU2_2Y1DA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.115 [XNIO-1 task-2] AMdi2QWrRVWfqwA5bK_5qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.115 [XNIO-1 task-2] AMdi2QWrRVWfqwA5bK_5qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.115 [XNIO-1 task-2] AMdi2QWrRVWfqwA5bK_5qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.115 [XNIO-1 task-2] AMdi2QWrRVWfqwA5bK_5qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.115 [XNIO-1 task-2] AMdi2QWrRVWfqwA5bK_5qA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.115 [XNIO-1 task-2] AMdi2QWrRVWfqwA5bK_5qA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.118 [XNIO-1 task-2] 3cmCeJYqTZ2-abtS31MKVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.118 [XNIO-1 task-2] 3cmCeJYqTZ2-abtS31MKVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.118 [XNIO-1 task-2] 3cmCeJYqTZ2-abtS31MKVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.118 [XNIO-1 task-2] 3cmCeJYqTZ2-abtS31MKVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609 +16:40:13.118 [XNIO-1 task-2] 3cmCeJYqTZ2-abtS31MKVw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe799b36-4345-430d-9500-afb719b56609 +16:40:13.119 [XNIO-1 task-2] NGU8wkgMRBupf6-aHPGIVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.120 [XNIO-1 task-2] NGU8wkgMRBupf6-aHPGIVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.120 [XNIO-1 task-2] NGU8wkgMRBupf6-aHPGIVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.120 [XNIO-1 task-2] NGU8wkgMRBupf6-aHPGIVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe799b36-4345-430d-9500-afb719b56609, base path is set to: null +16:40:13.120 [XNIO-1 task-2] NGU8wkgMRBupf6-aHPGIVA DEBUG com.networknt.schema.TypeValidator debug - validate( "fe799b36-4345-430d-9500-afb719b56609", "fe799b36-4345-430d-9500-afb719b56609", refreshToken) +16:40:13.120 [XNIO-1 task-2] NGU8wkgMRBupf6-aHPGIVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} +16:40:13.122 [XNIO-1 task-2] -6CQTK0RTJ-tXA20_7jX2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.122 [XNIO-1 task-2] -6CQTK0RTJ-tXA20_7jX2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.122 [XNIO-1 task-2] -6CQTK0RTJ-tXA20_7jX2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.122 [XNIO-1 task-2] -6CQTK0RTJ-tXA20_7jX2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.122 [XNIO-1 task-2] -6CQTK0RTJ-tXA20_7jX2w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.123 [XNIO-1 task-2] IcRtT0awTteJ1ZO9D4Hd3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.123 [XNIO-1 task-2] IcRtT0awTteJ1ZO9D4Hd3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.123 [XNIO-1 task-2] IcRtT0awTteJ1ZO9D4Hd3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.123 [XNIO-1 task-2] IcRtT0awTteJ1ZO9D4Hd3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.123 [XNIO-1 task-2] IcRtT0awTteJ1ZO9D4Hd3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.124 [XNIO-1 task-2] IcRtT0awTteJ1ZO9D4Hd3Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.127 [XNIO-1 task-2] RzBR0ptcQdONjUdpYuOncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.127 [XNIO-1 task-2] RzBR0ptcQdONjUdpYuOncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.127 [XNIO-1 task-2] RzBR0ptcQdONjUdpYuOncQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.127 [XNIO-1 task-2] RzBR0ptcQdONjUdpYuOncQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.128 [XNIO-1 task-2] 2PTjIPg7Q_a2V22rg1IPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.128 [XNIO-1 task-2] 2PTjIPg7Q_a2V22rg1IPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.128 [XNIO-1 task-2] 2PTjIPg7Q_a2V22rg1IPoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.128 [XNIO-1 task-2] 2PTjIPg7Q_a2V22rg1IPoA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.130 [XNIO-1 task-2] mOKWIFlgQ6SlL3y_wePnWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.130 [XNIO-1 task-2] mOKWIFlgQ6SlL3y_wePnWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.130 [XNIO-1 task-2] mOKWIFlgQ6SlL3y_wePnWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.130 [XNIO-1 task-2] mOKWIFlgQ6SlL3y_wePnWw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.133 [XNIO-1 task-2] W5Rp7H1hRZysq9fGFP0Vlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.133 [XNIO-1 task-2] W5Rp7H1hRZysq9fGFP0Vlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.134 [XNIO-1 task-2] W5Rp7H1hRZysq9fGFP0Vlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.134 [XNIO-1 task-2] W5Rp7H1hRZysq9fGFP0Vlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.134 [XNIO-1 task-2] W5Rp7H1hRZysq9fGFP0Vlg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.134 [XNIO-1 task-2] W5Rp7H1hRZysq9fGFP0Vlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.136 [XNIO-1 task-2] 74lB6nQlSdWNJIFRZRjyAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.136 [XNIO-1 task-2] 74lB6nQlSdWNJIFRZRjyAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.136 [XNIO-1 task-2] 74lB6nQlSdWNJIFRZRjyAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.136 [XNIO-1 task-2] 74lB6nQlSdWNJIFRZRjyAg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.140 [XNIO-1 task-2] At-Y8qB8TTa3Z-KAmwCtIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.140 [XNIO-1 task-2] At-Y8qB8TTa3Z-KAmwCtIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.140 [XNIO-1 task-2] At-Y8qB8TTa3Z-KAmwCtIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.140 [XNIO-1 task-2] At-Y8qB8TTa3Z-KAmwCtIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.140 [XNIO-1 task-2] At-Y8qB8TTa3Z-KAmwCtIA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.140 [XNIO-1 task-2] At-Y8qB8TTa3Z-KAmwCtIA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.142 [XNIO-1 task-2] nw3Sr1doT7Wb4AV2EMqrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.142 [XNIO-1 task-2] nw3Sr1doT7Wb4AV2EMqrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.142 [XNIO-1 task-2] nw3Sr1doT7Wb4AV2EMqrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.142 [XNIO-1 task-2] nw3Sr1doT7Wb4AV2EMqrcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.142 [XNIO-1 task-2] nw3Sr1doT7Wb4AV2EMqrcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.144 [XNIO-1 task-2] t_iJvB77T1O8Bgvk-UY-rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.144 [XNIO-1 task-2] t_iJvB77T1O8Bgvk-UY-rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.145 [XNIO-1 task-2] t_iJvB77T1O8Bgvk-UY-rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.145 [XNIO-1 task-2] t_iJvB77T1O8Bgvk-UY-rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.145 [XNIO-1 task-2] t_iJvB77T1O8Bgvk-UY-rA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.145 [XNIO-1 task-2] t_iJvB77T1O8Bgvk-UY-rA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.146 [XNIO-1 task-2] Rpc6qWuDQCOA_vdrgRAe3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.146 [XNIO-1 task-2] Rpc6qWuDQCOA_vdrgRAe3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.146 [XNIO-1 task-2] Rpc6qWuDQCOA_vdrgRAe3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.146 [XNIO-1 task-2] Rpc6qWuDQCOA_vdrgRAe3w ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.148 [XNIO-1 task-2] 06WkmmdbR0qLVTMrt4MHfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.148 [XNIO-1 task-2] 06WkmmdbR0qLVTMrt4MHfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.148 [XNIO-1 task-2] 06WkmmdbR0qLVTMrt4MHfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.148 [XNIO-1 task-2] 06WkmmdbR0qLVTMrt4MHfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.152 [XNIO-1 task-2] GLzjR4kqQgO6q6F_9ZcvTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.152 [XNIO-1 task-2] GLzjR4kqQgO6q6F_9ZcvTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.152 [XNIO-1 task-2] GLzjR4kqQgO6q6F_9ZcvTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.152 [XNIO-1 task-2] GLzjR4kqQgO6q6F_9ZcvTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.152 [XNIO-1 task-2] GLzjR4kqQgO6q6F_9ZcvTA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.152 [XNIO-1 task-2] GLzjR4kqQgO6q6F_9ZcvTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.155 [XNIO-1 task-2] s0JHmhnNS5ieGB5qWnEBQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.155 [XNIO-1 task-2] s0JHmhnNS5ieGB5qWnEBQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.155 [XNIO-1 task-2] s0JHmhnNS5ieGB5qWnEBQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.155 [XNIO-1 task-2] s0JHmhnNS5ieGB5qWnEBQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.160 [XNIO-1 task-2] 9Qxg5vbfTVa1NnDoFpSJVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.160 [XNIO-1 task-2] 9Qxg5vbfTVa1NnDoFpSJVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.160 [XNIO-1 task-2] 9Qxg5vbfTVa1NnDoFpSJVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.160 [XNIO-1 task-2] 9Qxg5vbfTVa1NnDoFpSJVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.160 [XNIO-1 task-2] 9Qxg5vbfTVa1NnDoFpSJVQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.164 [XNIO-1 task-2] w7Pf_-PcRheyZ9lO1ffA7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.164 [XNIO-1 task-2] w7Pf_-PcRheyZ9lO1ffA7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.164 [XNIO-1 task-2] w7Pf_-PcRheyZ9lO1ffA7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.164 [XNIO-1 task-2] w7Pf_-PcRheyZ9lO1ffA7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.164 [XNIO-1 task-2] w7Pf_-PcRheyZ9lO1ffA7A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.167 [XNIO-1 task-2] BQ4IkOAYQ_2IdWU0oLBHnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.167 [XNIO-1 task-2] BQ4IkOAYQ_2IdWU0oLBHnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.167 [XNIO-1 task-2] BQ4IkOAYQ_2IdWU0oLBHnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.167 [XNIO-1 task-2] BQ4IkOAYQ_2IdWU0oLBHnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.167 [XNIO-1 task-2] BQ4IkOAYQ_2IdWU0oLBHnA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.167 [XNIO-1 task-2] BQ4IkOAYQ_2IdWU0oLBHnA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.169 [XNIO-1 task-2] 4qgyVA2pScOPRcc5uLsqKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.169 [XNIO-1 task-2] 4qgyVA2pScOPRcc5uLsqKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.169 [XNIO-1 task-2] 4qgyVA2pScOPRcc5uLsqKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.169 [XNIO-1 task-2] 4qgyVA2pScOPRcc5uLsqKg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.171 [XNIO-1 task-2] t1R_ZD4QQ1iMh2h_Lh8_uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.171 [XNIO-1 task-2] t1R_ZD4QQ1iMh2h_Lh8_uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.171 [XNIO-1 task-2] t1R_ZD4QQ1iMh2h_Lh8_uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.171 [XNIO-1 task-2] t1R_ZD4QQ1iMh2h_Lh8_uA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.176 [XNIO-1 task-2] 68eImOvpQsO_wQUXBTlWtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.176 [XNIO-1 task-2] 68eImOvpQsO_wQUXBTlWtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.176 [XNIO-1 task-2] 68eImOvpQsO_wQUXBTlWtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.176 [XNIO-1 task-2] 68eImOvpQsO_wQUXBTlWtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.176 [XNIO-1 task-2] 68eImOvpQsO_wQUXBTlWtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.176 [XNIO-1 task-2] 68eImOvpQsO_wQUXBTlWtQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.178 [XNIO-1 task-2] OgBQ-rxbQwO4zJSdKXYJtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.178 [XNIO-1 task-2] OgBQ-rxbQwO4zJSdKXYJtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.178 [XNIO-1 task-2] OgBQ-rxbQwO4zJSdKXYJtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.178 [XNIO-1 task-2] OgBQ-rxbQwO4zJSdKXYJtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.178 [XNIO-1 task-2] OgBQ-rxbQwO4zJSdKXYJtw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.180 [XNIO-1 task-2] IbrxQVjtScOvTiUipjEZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.180 [XNIO-1 task-2] IbrxQVjtScOvTiUipjEZ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.180 [XNIO-1 task-2] IbrxQVjtScOvTiUipjEZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.180 [XNIO-1 task-2] IbrxQVjtScOvTiUipjEZ7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.180 [XNIO-1 task-2] IbrxQVjtScOvTiUipjEZ7A DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.186 [XNIO-1 task-2] RVYpYZC_QUCnCHXBWmHDlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.186 [XNIO-1 task-2] RVYpYZC_QUCnCHXBWmHDlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.186 [XNIO-1 task-2] RVYpYZC_QUCnCHXBWmHDlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.186 [XNIO-1 task-2] RVYpYZC_QUCnCHXBWmHDlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.186 [XNIO-1 task-2] RVYpYZC_QUCnCHXBWmHDlA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.187 [XNIO-1 task-2] DGhY6BAURk-A6cFYuXpRHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.187 [XNIO-1 task-2] DGhY6BAURk-A6cFYuXpRHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.187 [XNIO-1 task-2] DGhY6BAURk-A6cFYuXpRHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.187 [XNIO-1 task-2] DGhY6BAURk-A6cFYuXpRHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.188 [XNIO-1 task-2] DGhY6BAURk-A6cFYuXpRHw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.188 [XNIO-1 task-2] DGhY6BAURk-A6cFYuXpRHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.189 [XNIO-1 task-2] YWZbCeNYS5ascabsszzFiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.189 [XNIO-1 task-2] YWZbCeNYS5ascabsszzFiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.189 [XNIO-1 task-2] YWZbCeNYS5ascabsszzFiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.190 [XNIO-1 task-2] YWZbCeNYS5ascabsszzFiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.190 [XNIO-1 task-2] YWZbCeNYS5ascabsszzFiA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.192 [XNIO-1 task-2] Ks8cizSxQnK1MHtO7mI6vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.192 [XNIO-1 task-2] Ks8cizSxQnK1MHtO7mI6vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.192 [XNIO-1 task-2] Ks8cizSxQnK1MHtO7mI6vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.192 [XNIO-1 task-2] Ks8cizSxQnK1MHtO7mI6vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.192 [XNIO-1 task-2] Ks8cizSxQnK1MHtO7mI6vQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.192 [XNIO-1 task-2] Ks8cizSxQnK1MHtO7mI6vQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.195 [XNIO-1 task-2] N1JgmJbbQ-my40ey2VpPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.195 [XNIO-1 task-2] N1JgmJbbQ-my40ey2VpPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.195 [XNIO-1 task-2] N1JgmJbbQ-my40ey2VpPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.196 [XNIO-1 task-2] N1JgmJbbQ-my40ey2VpPgg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.197 [XNIO-1 task-2] nHEmcfSpSPWXCOocMIlVPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.197 [XNIO-1 task-2] nHEmcfSpSPWXCOocMIlVPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.197 [XNIO-1 task-2] nHEmcfSpSPWXCOocMIlVPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.197 [XNIO-1 task-2] nHEmcfSpSPWXCOocMIlVPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.197 [XNIO-1 task-2] nHEmcfSpSPWXCOocMIlVPA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.198 [XNIO-1 task-2] MVop0UW5SBe-bl1E348vZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.199 [XNIO-1 task-2] MVop0UW5SBe-bl1E348vZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.199 [XNIO-1 task-2] MVop0UW5SBe-bl1E348vZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.199 [XNIO-1 task-2] MVop0UW5SBe-bl1E348vZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.199 [XNIO-1 task-2] MVop0UW5SBe-bl1E348vZw DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.199 [XNIO-1 task-2] MVop0UW5SBe-bl1E348vZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.200 [XNIO-1 task-2] 80uUCXhhQVOI6pK7mS2f6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.200 [XNIO-1 task-2] 80uUCXhhQVOI6pK7mS2f6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.200 [XNIO-1 task-2] 80uUCXhhQVOI6pK7mS2f6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.200 [XNIO-1 task-2] 80uUCXhhQVOI6pK7mS2f6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.200 [XNIO-1 task-2] 80uUCXhhQVOI6pK7mS2f6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.202 [XNIO-1 task-2] -pB3NyEbRn6sz8Twn4OKdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.202 [XNIO-1 task-2] -pB3NyEbRn6sz8Twn4OKdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.202 [XNIO-1 task-2] -pB3NyEbRn6sz8Twn4OKdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.202 [XNIO-1 task-2] -pB3NyEbRn6sz8Twn4OKdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.202 [XNIO-1 task-2] -pB3NyEbRn6sz8Twn4OKdw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.203 [XNIO-1 task-2] -pB3NyEbRn6sz8Twn4OKdw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.205 [XNIO-1 task-2] 7yWbNrzvSVu9ZCAMGNQNEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.205 [XNIO-1 task-2] 7yWbNrzvSVu9ZCAMGNQNEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.205 [XNIO-1 task-2] 7yWbNrzvSVu9ZCAMGNQNEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.205 [XNIO-1 task-2] 7yWbNrzvSVu9ZCAMGNQNEg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.206 [XNIO-1 task-2] dRdS7bQATGqt0qctb8tqYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.206 [XNIO-1 task-2] dRdS7bQATGqt0qctb8tqYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.206 [XNIO-1 task-2] dRdS7bQATGqt0qctb8tqYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.206 [XNIO-1 task-2] dRdS7bQATGqt0qctb8tqYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.206 [XNIO-1 task-2] dRdS7bQATGqt0qctb8tqYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.208 [XNIO-1 task-2] D-fXITp6TzS_I9Q3FVH7ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.208 [XNIO-1 task-2] D-fXITp6TzS_I9Q3FVH7ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.208 [XNIO-1 task-2] D-fXITp6TzS_I9Q3FVH7ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.208 [XNIO-1 task-2] D-fXITp6TzS_I9Q3FVH7ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.208 [XNIO-1 task-2] D-fXITp6TzS_I9Q3FVH7ug DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.208 [XNIO-1 task-2] D-fXITp6TzS_I9Q3FVH7ug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.210 [XNIO-1 task-2] smnVPGJVRqGqKckQz5A4SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.210 [XNIO-1 task-2] smnVPGJVRqGqKckQz5A4SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.210 [XNIO-1 task-2] smnVPGJVRqGqKckQz5A4SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.210 [XNIO-1 task-2] smnVPGJVRqGqKckQz5A4SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.210 [XNIO-1 task-2] smnVPGJVRqGqKckQz5A4SQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.213 [XNIO-1 task-2] Ujwtgn1RRCSfBTpyly1vIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.213 [XNIO-1 task-2] Ujwtgn1RRCSfBTpyly1vIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.213 [XNIO-1 task-2] Ujwtgn1RRCSfBTpyly1vIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.213 [XNIO-1 task-2] Ujwtgn1RRCSfBTpyly1vIw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.213 [XNIO-1 task-2] Ujwtgn1RRCSfBTpyly1vIw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.217 [XNIO-1 task-2] y0PI6_U4SPytxHgfLrGlAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.217 [XNIO-1 task-2] y0PI6_U4SPytxHgfLrGlAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.217 [XNIO-1 task-2] y0PI6_U4SPytxHgfLrGlAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.217 [XNIO-1 task-2] y0PI6_U4SPytxHgfLrGlAA ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.218 [XNIO-1 task-2] pCBsGrN2SZe4pqYJKPc4BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.219 [XNIO-1 task-2] pCBsGrN2SZe4pqYJKPc4BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.219 [XNIO-1 task-2] pCBsGrN2SZe4pqYJKPc4BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.219 [XNIO-1 task-2] pCBsGrN2SZe4pqYJKPc4BA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.222 [XNIO-1 task-2] yIhb8rKcS8-6yFFHlSF-Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.222 [XNIO-1 task-2] yIhb8rKcS8-6yFFHlSF-Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.222 [XNIO-1 task-2] yIhb8rKcS8-6yFFHlSF-Vg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.222 [XNIO-1 task-2] yIhb8rKcS8-6yFFHlSF-Vg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.222 [XNIO-1 task-2] yIhb8rKcS8-6yFFHlSF-Vg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.222 [XNIO-1 task-2] yIhb8rKcS8-6yFFHlSF-Vg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.224 [XNIO-1 task-2] D8EsAv6eRRuOhhglSgYsNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.224 [XNIO-1 task-2] D8EsAv6eRRuOhhglSgYsNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.224 [XNIO-1 task-2] D8EsAv6eRRuOhhglSgYsNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.224 [XNIO-1 task-2] D8EsAv6eRRuOhhglSgYsNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.224 [XNIO-1 task-2] D8EsAv6eRRuOhhglSgYsNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.226 [XNIO-1 task-2] 9Q3gnLl6SpWPehK6akshrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.226 [XNIO-1 task-2] 9Q3gnLl6SpWPehK6akshrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.226 [XNIO-1 task-2] 9Q3gnLl6SpWPehK6akshrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.226 [XNIO-1 task-2] 9Q3gnLl6SpWPehK6akshrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.226 [XNIO-1 task-2] 9Q3gnLl6SpWPehK6akshrA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.231 [XNIO-1 task-2] WMslD6yfT6ahZ_lPmqa7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.231 [XNIO-1 task-2] WMslD6yfT6ahZ_lPmqa7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.231 [XNIO-1 task-2] WMslD6yfT6ahZ_lPmqa7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.231 [XNIO-1 task-2] WMslD6yfT6ahZ_lPmqa7gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.231 [XNIO-1 task-2] WMslD6yfT6ahZ_lPmqa7gQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.232 [XNIO-1 task-2] UhM6S1yTQ6-o9TM9cTT8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.232 [XNIO-1 task-2] UhM6S1yTQ6-o9TM9cTT8Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.232 [XNIO-1 task-2] UhM6S1yTQ6-o9TM9cTT8Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.233 [XNIO-1 task-2] UhM6S1yTQ6-o9TM9cTT8Xw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.234 [XNIO-1 task-2] efGhWgVfRbKQ4bA4fjJ5EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.234 [XNIO-1 task-2] efGhWgVfRbKQ4bA4fjJ5EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.234 [XNIO-1 task-2] efGhWgVfRbKQ4bA4fjJ5EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.234 [XNIO-1 task-2] efGhWgVfRbKQ4bA4fjJ5EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.234 [XNIO-1 task-2] efGhWgVfRbKQ4bA4fjJ5EA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.234 [XNIO-1 task-2] efGhWgVfRbKQ4bA4fjJ5EA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.236 [XNIO-1 task-2] oq5azrlrRTygHz5UtluNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.236 [XNIO-1 task-2] oq5azrlrRTygHz5UtluNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.236 [XNIO-1 task-2] oq5azrlrRTygHz5UtluNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.236 [XNIO-1 task-2] oq5azrlrRTygHz5UtluNow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.236 [XNIO-1 task-2] oq5azrlrRTygHz5UtluNow DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.238 [XNIO-1 task-2] 08_vZC04RlOY7ZOdCVQ_yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.238 [XNIO-1 task-2] 08_vZC04RlOY7ZOdCVQ_yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.238 [XNIO-1 task-2] 08_vZC04RlOY7ZOdCVQ_yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.238 [XNIO-1 task-2] 08_vZC04RlOY7ZOdCVQ_yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.239 [XNIO-1 task-2] 08_vZC04RlOY7ZOdCVQ_yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.239 [XNIO-1 task-2] 08_vZC04RlOY7ZOdCVQ_yQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.241 [XNIO-1 task-2] Bsm8GYI5St67KU_JqymkeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.241 [XNIO-1 task-2] Bsm8GYI5St67KU_JqymkeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.241 [XNIO-1 task-2] Bsm8GYI5St67KU_JqymkeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.241 [XNIO-1 task-2] Bsm8GYI5St67KU_JqymkeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.242 [XNIO-1 task-2] Bsm8GYI5St67KU_JqymkeA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.243 [XNIO-1 task-2] 4LZ-BeKXTLq9YkMUbpIT-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.243 [XNIO-1 task-2] 4LZ-BeKXTLq9YkMUbpIT-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.243 [XNIO-1 task-2] 4LZ-BeKXTLq9YkMUbpIT-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.243 [XNIO-1 task-2] 4LZ-BeKXTLq9YkMUbpIT-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.243 [XNIO-1 task-2] 4LZ-BeKXTLq9YkMUbpIT-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.243 [XNIO-1 task-2] 4LZ-BeKXTLq9YkMUbpIT-Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.245 [XNIO-1 task-2] gL-cZvb0Sxe84QRlLEi8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.245 [XNIO-1 task-2] gL-cZvb0Sxe84QRlLEi8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.245 [XNIO-1 task-2] gL-cZvb0Sxe84QRlLEi8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.245 [XNIO-1 task-2] gL-cZvb0Sxe84QRlLEi8mQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.245 [XNIO-1 task-2] gL-cZvb0Sxe84QRlLEi8mQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.247 [XNIO-1 task-2] 3Uk2_QS9Tr-yNoMsSlZGgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.247 [XNIO-1 task-2] 3Uk2_QS9Tr-yNoMsSlZGgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.247 [XNIO-1 task-2] 3Uk2_QS9Tr-yNoMsSlZGgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.247 [XNIO-1 task-2] 3Uk2_QS9Tr-yNoMsSlZGgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.247 [XNIO-1 task-2] 3Uk2_QS9Tr-yNoMsSlZGgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.247 [XNIO-1 task-2] 3Uk2_QS9Tr-yNoMsSlZGgQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.250 [XNIO-1 task-2] vFSD--RcSCmVD-3dSY3BTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.250 [XNIO-1 task-2] vFSD--RcSCmVD-3dSY3BTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.250 [XNIO-1 task-2] vFSD--RcSCmVD-3dSY3BTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.250 [XNIO-1 task-2] vFSD--RcSCmVD-3dSY3BTg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.251 [XNIO-1 task-2] R0Fmop4qQ96E9_-0Uh8gtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.251 [XNIO-1 task-2] R0Fmop4qQ96E9_-0Uh8gtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.251 [XNIO-1 task-2] R0Fmop4qQ96E9_-0Uh8gtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.251 [XNIO-1 task-2] R0Fmop4qQ96E9_-0Uh8gtQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.253 [XNIO-1 task-2] Gg9s-B1RQMOk6DGN7qZdjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.253 [XNIO-1 task-2] Gg9s-B1RQMOk6DGN7qZdjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.253 [XNIO-1 task-2] Gg9s-B1RQMOk6DGN7qZdjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.253 [XNIO-1 task-2] Gg9s-B1RQMOk6DGN7qZdjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.256 [XNIO-1 task-2] vft-z3wvTF--t5Jns-6iHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.256 [XNIO-1 task-2] vft-z3wvTF--t5Jns-6iHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.256 [XNIO-1 task-2] vft-z3wvTF--t5Jns-6iHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.257 [XNIO-1 task-2] vft-z3wvTF--t5Jns-6iHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.259 [XNIO-1 task-2] 2iGEWthxQ96OlkPBskaglA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.259 [XNIO-1 task-2] 2iGEWthxQ96OlkPBskaglA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.259 [XNIO-1 task-2] 2iGEWthxQ96OlkPBskaglA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.259 [XNIO-1 task-2] 2iGEWthxQ96OlkPBskaglA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.261 [XNIO-1 task-2] CvUbPMqaQIGcojZv6_bSYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.261 [XNIO-1 task-2] CvUbPMqaQIGcojZv6_bSYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.261 [XNIO-1 task-2] CvUbPMqaQIGcojZv6_bSYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.261 [XNIO-1 task-2] CvUbPMqaQIGcojZv6_bSYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.261 [XNIO-1 task-2] CvUbPMqaQIGcojZv6_bSYg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.261 [XNIO-1 task-2] CvUbPMqaQIGcojZv6_bSYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.263 [XNIO-1 task-2] 3txqN-x-T7C_PqBIHnDqXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.263 [XNIO-1 task-2] 3txqN-x-T7C_PqBIHnDqXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.263 [XNIO-1 task-2] 3txqN-x-T7C_PqBIHnDqXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.263 [XNIO-1 task-2] 3txqN-x-T7C_PqBIHnDqXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.263 [XNIO-1 task-2] 3txqN-x-T7C_PqBIHnDqXQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.264 [XNIO-1 task-2] NXQPd95uQFSv7iIZFo4HOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.264 [XNIO-1 task-2] NXQPd95uQFSv7iIZFo4HOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.265 [XNIO-1 task-2] NXQPd95uQFSv7iIZFo4HOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.265 [XNIO-1 task-2] NXQPd95uQFSv7iIZFo4HOw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.265 [XNIO-1 task-2] NXQPd95uQFSv7iIZFo4HOw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.269 [XNIO-1 task-2] kFv9YQdKQFqJWHwh9wy69g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.269 [XNIO-1 task-2] kFv9YQdKQFqJWHwh9wy69g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.269 [XNIO-1 task-2] kFv9YQdKQFqJWHwh9wy69g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.270 [XNIO-1 task-2] kFv9YQdKQFqJWHwh9wy69g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.270 [XNIO-1 task-2] kFv9YQdKQFqJWHwh9wy69g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.271 [XNIO-1 task-2] _PTMtGeFQbK_qeC0d6NpCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.271 [XNIO-1 task-2] _PTMtGeFQbK_qeC0d6NpCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.271 [XNIO-1 task-2] _PTMtGeFQbK_qeC0d6NpCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.271 [XNIO-1 task-2] _PTMtGeFQbK_qeC0d6NpCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.271 [XNIO-1 task-2] _PTMtGeFQbK_qeC0d6NpCg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.272 [XNIO-1 task-2] _PTMtGeFQbK_qeC0d6NpCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.273 [XNIO-1 task-2] yCV-GOeeQoKCf8Z59k1xZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.273 [XNIO-1 task-2] yCV-GOeeQoKCf8Z59k1xZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.273 [XNIO-1 task-2] yCV-GOeeQoKCf8Z59k1xZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.274 [XNIO-1 task-2] yCV-GOeeQoKCf8Z59k1xZw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.276 [XNIO-1 task-2] 27vrmdLFRmyELKO1mnl61g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.276 [XNIO-1 task-2] 27vrmdLFRmyELKO1mnl61g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.276 [XNIO-1 task-2] 27vrmdLFRmyELKO1mnl61g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.276 [XNIO-1 task-2] 27vrmdLFRmyELKO1mnl61g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.276 [XNIO-1 task-2] 27vrmdLFRmyELKO1mnl61g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.278 [XNIO-1 task-2] c-yQ9EjAQtqJgvOF40yY5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.278 [XNIO-1 task-2] c-yQ9EjAQtqJgvOF40yY5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.278 [XNIO-1 task-2] c-yQ9EjAQtqJgvOF40yY5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.278 [XNIO-1 task-2] c-yQ9EjAQtqJgvOF40yY5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.278 [XNIO-1 task-2] c-yQ9EjAQtqJgvOF40yY5A DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.278 [XNIO-1 task-2] c-yQ9EjAQtqJgvOF40yY5A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.280 [XNIO-1 task-2] DftQnMZfQZGf1nwPhf0lcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.280 [XNIO-1 task-2] DftQnMZfQZGf1nwPhf0lcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.280 [XNIO-1 task-2] DftQnMZfQZGf1nwPhf0lcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.280 [XNIO-1 task-2] DftQnMZfQZGf1nwPhf0lcg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.282 [XNIO-1 task-2] 1-p2IGGTR8q3dlg35iGLmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.282 [XNIO-1 task-2] 1-p2IGGTR8q3dlg35iGLmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.282 [XNIO-1 task-2] 1-p2IGGTR8q3dlg35iGLmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.282 [XNIO-1 task-2] 1-p2IGGTR8q3dlg35iGLmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.282 [XNIO-1 task-2] 1-p2IGGTR8q3dlg35iGLmw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.284 [XNIO-1 task-2] yIbIFA-LQYOgKJO514yXcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.284 [XNIO-1 task-2] yIbIFA-LQYOgKJO514yXcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.284 [XNIO-1 task-2] yIbIFA-LQYOgKJO514yXcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.285 [XNIO-1 task-2] yIbIFA-LQYOgKJO514yXcg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.285 [XNIO-1 task-2] yIbIFA-LQYOgKJO514yXcg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.289 [XNIO-1 task-2] J7lGgNQwSwaGwghz5UQn2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.289 [XNIO-1 task-2] J7lGgNQwSwaGwghz5UQn2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.289 [XNIO-1 task-2] J7lGgNQwSwaGwghz5UQn2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.289 [XNIO-1 task-2] J7lGgNQwSwaGwghz5UQn2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.289 [XNIO-1 task-2] J7lGgNQwSwaGwghz5UQn2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.290 [XNIO-1 task-2] OkAGI-ZJSLeBqrj4qWnHlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.291 [XNIO-1 task-2] OkAGI-ZJSLeBqrj4qWnHlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.291 [XNIO-1 task-2] OkAGI-ZJSLeBqrj4qWnHlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.291 [XNIO-1 task-2] OkAGI-ZJSLeBqrj4qWnHlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.291 [XNIO-1 task-2] OkAGI-ZJSLeBqrj4qWnHlw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.291 [XNIO-1 task-2] OkAGI-ZJSLeBqrj4qWnHlw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.293 [XNIO-1 task-2] 5nA7W2UdQgOP-EVtJO5Tcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.293 [XNIO-1 task-2] 5nA7W2UdQgOP-EVtJO5Tcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.293 [XNIO-1 task-2] 5nA7W2UdQgOP-EVtJO5Tcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.293 [XNIO-1 task-2] 5nA7W2UdQgOP-EVtJO5Tcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.293 [XNIO-1 task-2] 5nA7W2UdQgOP-EVtJO5Tcw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.295 [XNIO-1 task-2] Q1qWIS2WQECo-SRy9pINMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.295 [XNIO-1 task-2] Q1qWIS2WQECo-SRy9pINMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.295 [XNIO-1 task-2] Q1qWIS2WQECo-SRy9pINMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.296 [XNIO-1 task-2] Q1qWIS2WQECo-SRy9pINMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.296 [XNIO-1 task-2] Q1qWIS2WQECo-SRy9pINMg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.296 [XNIO-1 task-2] Q1qWIS2WQECo-SRy9pINMg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.297 [XNIO-1 task-2] F_B0Q6vLSC6p3frvLwM_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.297 [XNIO-1 task-2] F_B0Q6vLSC6p3frvLwM_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.297 [XNIO-1 task-2] F_B0Q6vLSC6p3frvLwM_Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.297 [XNIO-1 task-2] F_B0Q6vLSC6p3frvLwM_Qw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.299 [XNIO-1 task-2] RNV2Z4_7Qre5EAy1ms_cqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.299 [XNIO-1 task-2] RNV2Z4_7Qre5EAy1ms_cqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.299 [XNIO-1 task-2] RNV2Z4_7Qre5EAy1ms_cqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.299 [XNIO-1 task-2] RNV2Z4_7Qre5EAy1ms_cqQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.301 [XNIO-1 task-2] rUXZoYbZTmumEFhp2cyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.301 [XNIO-1 task-2] rUXZoYbZTmumEFhp2cyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.301 [XNIO-1 task-2] rUXZoYbZTmumEFhp2cyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.301 [XNIO-1 task-2] rUXZoYbZTmumEFhp2cyQTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.301 [XNIO-1 task-2] rUXZoYbZTmumEFhp2cyQTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.305 [XNIO-1 task-2] WUhZsd-9QpCPo7BMMJ7aWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.305 [XNIO-1 task-2] WUhZsd-9QpCPo7BMMJ7aWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.305 [XNIO-1 task-2] WUhZsd-9QpCPo7BMMJ7aWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.305 [XNIO-1 task-2] WUhZsd-9QpCPo7BMMJ7aWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.305 [XNIO-1 task-2] WUhZsd-9QpCPo7BMMJ7aWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.305 [XNIO-1 task-2] WUhZsd-9QpCPo7BMMJ7aWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.307 [XNIO-1 task-2] SIkvgaDXRYujFNNh77f4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.307 [XNIO-1 task-2] SIkvgaDXRYujFNNh77f4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.307 [XNIO-1 task-2] SIkvgaDXRYujFNNh77f4cQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.307 [XNIO-1 task-2] SIkvgaDXRYujFNNh77f4cQ ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.308 [XNIO-1 task-2] exStU-_TTQqKIiiFJujEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.308 [XNIO-1 task-2] exStU-_TTQqKIiiFJujEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.308 [XNIO-1 task-2] exStU-_TTQqKIiiFJujEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.308 [XNIO-1 task-2] exStU-_TTQqKIiiFJujEMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.309 [XNIO-1 task-2] exStU-_TTQqKIiiFJujEMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.310 [XNIO-1 task-2] PQYH4CbrQYOMxGtnTdcbyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.310 [XNIO-1 task-2] PQYH4CbrQYOMxGtnTdcbyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.310 [XNIO-1 task-2] PQYH4CbrQYOMxGtnTdcbyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.310 [XNIO-1 task-2] PQYH4CbrQYOMxGtnTdcbyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.311 [XNIO-1 task-2] PQYH4CbrQYOMxGtnTdcbyA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.311 [XNIO-1 task-2] PQYH4CbrQYOMxGtnTdcbyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.314 [XNIO-1 task-2] qbus--3BSGmDYtnfLYGdWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.314 [XNIO-1 task-2] qbus--3BSGmDYtnfLYGdWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.314 [XNIO-1 task-2] qbus--3BSGmDYtnfLYGdWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.314 [XNIO-1 task-2] qbus--3BSGmDYtnfLYGdWg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.317 [XNIO-1 task-2] yAiBUqtAQvGlTEJyXoXo7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.317 [XNIO-1 task-2] yAiBUqtAQvGlTEJyXoXo7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.318 [XNIO-1 task-2] yAiBUqtAQvGlTEJyXoXo7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.318 [XNIO-1 task-2] yAiBUqtAQvGlTEJyXoXo7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.319 [XNIO-1 task-2] ukZCqvXgTDWUw9cHaDPhFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.319 [XNIO-1 task-2] ukZCqvXgTDWUw9cHaDPhFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.319 [XNIO-1 task-2] ukZCqvXgTDWUw9cHaDPhFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.319 [XNIO-1 task-2] ukZCqvXgTDWUw9cHaDPhFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.320 [XNIO-1 task-2] ukZCqvXgTDWUw9cHaDPhFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.320 [XNIO-1 task-2] ukZCqvXgTDWUw9cHaDPhFQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.322 [XNIO-1 task-2] Uoqc1O-YQZaKCxggND1VCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.322 [XNIO-1 task-2] Uoqc1O-YQZaKCxggND1VCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.322 [XNIO-1 task-2] Uoqc1O-YQZaKCxggND1VCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.323 [XNIO-1 task-2] Uoqc1O-YQZaKCxggND1VCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.323 [XNIO-1 task-2] Uoqc1O-YQZaKCxggND1VCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.324 [XNIO-1 task-2] 5uhbL_hPRO6bNSQ0Aiafjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.324 [XNIO-1 task-2] 5uhbL_hPRO6bNSQ0Aiafjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.324 [XNIO-1 task-2] 5uhbL_hPRO6bNSQ0Aiafjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.324 [XNIO-1 task-2] 5uhbL_hPRO6bNSQ0Aiafjg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.326 [XNIO-1 task-2] jxY2o_5PTDGD5mVpFDuqng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.326 [XNIO-1 task-2] jxY2o_5PTDGD5mVpFDuqng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.326 [XNIO-1 task-2] jxY2o_5PTDGD5mVpFDuqng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.326 [XNIO-1 task-2] jxY2o_5PTDGD5mVpFDuqng ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.327 [XNIO-1 task-2] 1w0n8eVoSVKZVulp0b6VaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.327 [XNIO-1 task-2] 1w0n8eVoSVKZVulp0b6VaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.327 [XNIO-1 task-2] 1w0n8eVoSVKZVulp0b6VaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.327 [XNIO-1 task-2] 1w0n8eVoSVKZVulp0b6VaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.328 [XNIO-1 task-2] 1w0n8eVoSVKZVulp0b6VaA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.328 [XNIO-1 task-2] 1w0n8eVoSVKZVulp0b6VaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.330 [XNIO-1 task-2] YNPb9fGGSlinLFkTnqyPjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.330 [XNIO-1 task-2] YNPb9fGGSlinLFkTnqyPjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.330 [XNIO-1 task-2] YNPb9fGGSlinLFkTnqyPjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.330 [XNIO-1 task-2] YNPb9fGGSlinLFkTnqyPjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.334 [XNIO-1 task-2] BJKcvmjBRda3sw1BP5dKCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.334 [XNIO-1 task-2] BJKcvmjBRda3sw1BP5dKCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.334 [XNIO-1 task-2] BJKcvmjBRda3sw1BP5dKCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.334 [XNIO-1 task-2] BJKcvmjBRda3sw1BP5dKCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.334 [XNIO-1 task-2] BJKcvmjBRda3sw1BP5dKCg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.334 [XNIO-1 task-2] BJKcvmjBRda3sw1BP5dKCg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.335 [XNIO-1 task-2] ylGUkr0OQd2NPA2vprfLjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.336 [XNIO-1 task-2] ylGUkr0OQd2NPA2vprfLjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.336 [XNIO-1 task-2] ylGUkr0OQd2NPA2vprfLjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.336 [XNIO-1 task-2] ylGUkr0OQd2NPA2vprfLjw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.337 [XNIO-1 task-2] vRCgbUu-RQuRyrvXNzyCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.337 [XNIO-1 task-2] vRCgbUu-RQuRyrvXNzyCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.337 [XNIO-1 task-2] vRCgbUu-RQuRyrvXNzyCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.337 [XNIO-1 task-2] vRCgbUu-RQuRyrvXNzyCuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.337 [XNIO-1 task-2] vRCgbUu-RQuRyrvXNzyCuA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.339 [XNIO-1 task-2] zqTSWTG1ToGsPqJFaogfGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.339 [XNIO-1 task-2] zqTSWTG1ToGsPqJFaogfGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.339 [XNIO-1 task-2] zqTSWTG1ToGsPqJFaogfGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.339 [XNIO-1 task-2] zqTSWTG1ToGsPqJFaogfGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.340 [XNIO-1 task-2] zqTSWTG1ToGsPqJFaogfGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.340 [XNIO-1 task-2] zqTSWTG1ToGsPqJFaogfGQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.342 [XNIO-1 task-2] xrw6HVSfQ-eiCA5vqn5JNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.342 [XNIO-1 task-2] xrw6HVSfQ-eiCA5vqn5JNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.342 [XNIO-1 task-2] xrw6HVSfQ-eiCA5vqn5JNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.342 [XNIO-1 task-2] xrw6HVSfQ-eiCA5vqn5JNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.342 [XNIO-1 task-2] xrw6HVSfQ-eiCA5vqn5JNg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.344 [XNIO-1 task-2] QSo3CAH0TrCSuiPHc0VIyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.344 [XNIO-1 task-2] QSo3CAH0TrCSuiPHc0VIyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.344 [XNIO-1 task-2] QSo3CAH0TrCSuiPHc0VIyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.344 [XNIO-1 task-2] QSo3CAH0TrCSuiPHc0VIyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.344 [XNIO-1 task-2] QSo3CAH0TrCSuiPHc0VIyA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.344 [XNIO-1 task-2] QSo3CAH0TrCSuiPHc0VIyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.346 [XNIO-1 task-2] Oscu_YkXQDCekEaJOpydYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.346 [XNIO-1 task-2] Oscu_YkXQDCekEaJOpydYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.346 [XNIO-1 task-2] Oscu_YkXQDCekEaJOpydYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.346 [XNIO-1 task-2] Oscu_YkXQDCekEaJOpydYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:13.352 [XNIO-1 task-2] b0wAzcaQQgOm__UH8cz0-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.352 [XNIO-1 task-2] b0wAzcaQQgOm__UH8cz0-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.353 [XNIO-1 task-2] b0wAzcaQQgOm__UH8cz0-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.353 [XNIO-1 task-2] b0wAzcaQQgOm__UH8cz0-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.353 [XNIO-1 task-2] b0wAzcaQQgOm__UH8cz0-A DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.353 [XNIO-1 task-2] b0wAzcaQQgOm__UH8cz0-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.354 [XNIO-1 task-2] VQzaO7fTQxqnWLZYTYHdFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.354 [XNIO-1 task-2] VQzaO7fTQxqnWLZYTYHdFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.354 [XNIO-1 task-2] VQzaO7fTQxqnWLZYTYHdFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.355 [XNIO-1 task-2] VQzaO7fTQxqnWLZYTYHdFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.355 [XNIO-1 task-2] VQzaO7fTQxqnWLZYTYHdFA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.356 [XNIO-1 task-2] f9nNPJP3SpqgcImgrTlGhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.356 [XNIO-1 task-2] f9nNPJP3SpqgcImgrTlGhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.356 [XNIO-1 task-2] f9nNPJP3SpqgcImgrTlGhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.356 [XNIO-1 task-2] f9nNPJP3SpqgcImgrTlGhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.358 [XNIO-1 task-2] wPQp9CFmQdSkHybPgEKvmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.358 [XNIO-1 task-2] wPQp9CFmQdSkHybPgEKvmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.358 [XNIO-1 task-2] wPQp9CFmQdSkHybPgEKvmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.358 [XNIO-1 task-2] wPQp9CFmQdSkHybPgEKvmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.358 [XNIO-1 task-2] wPQp9CFmQdSkHybPgEKvmA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.358 [XNIO-1 task-2] wPQp9CFmQdSkHybPgEKvmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.361 [XNIO-1 task-2] Yn3j2kd4Sjub3GphxEaa2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.361 [XNIO-1 task-2] Yn3j2kd4Sjub3GphxEaa2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.361 [XNIO-1 task-2] Yn3j2kd4Sjub3GphxEaa2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.361 [XNIO-1 task-2] Yn3j2kd4Sjub3GphxEaa2g ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.363 [XNIO-1 task-2] B279menhRXikGtwgiqhd0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.363 [XNIO-1 task-2] B279menhRXikGtwgiqhd0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.363 [XNIO-1 task-2] B279menhRXikGtwgiqhd0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.363 [XNIO-1 task-2] B279menhRXikGtwgiqhd0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.363 [XNIO-1 task-2] B279menhRXikGtwgiqhd0w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.364 [XNIO-1 task-2] 42ztu7p8SCqjo-oidL0tjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.364 [XNIO-1 task-2] 42ztu7p8SCqjo-oidL0tjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.364 [XNIO-1 task-2] 42ztu7p8SCqjo-oidL0tjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.364 [XNIO-1 task-2] 42ztu7p8SCqjo-oidL0tjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.364 [XNIO-1 task-2] 42ztu7p8SCqjo-oidL0tjA DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.365 [XNIO-1 task-2] 42ztu7p8SCqjo-oidL0tjA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.366 [XNIO-1 task-2] lkxXai2zSXiY0pWkkJ4hgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.366 [XNIO-1 task-2] lkxXai2zSXiY0pWkkJ4hgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.366 [XNIO-1 task-2] lkxXai2zSXiY0pWkkJ4hgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.366 [XNIO-1 task-2] lkxXai2zSXiY0pWkkJ4hgg ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.368 [XNIO-1 task-2] OX-GY4k3RU6HmNP8tGVKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.368 [XNIO-1 task-2] OX-GY4k3RU6HmNP8tGVKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.368 [XNIO-1 task-2] OX-GY4k3RU6HmNP8tGVKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.368 [XNIO-1 task-2] OX-GY4k3RU6HmNP8tGVKpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.368 [XNIO-1 task-2] OX-GY4k3RU6HmNP8tGVKpg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.370 [XNIO-1 task-2] XNjsT8Y5QXGFNlXMjacXdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.370 [XNIO-1 task-2] XNjsT8Y5QXGFNlXMjacXdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.370 [XNIO-1 task-2] XNjsT8Y5QXGFNlXMjacXdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.370 [XNIO-1 task-2] XNjsT8Y5QXGFNlXMjacXdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.370 [XNIO-1 task-2] XNjsT8Y5QXGFNlXMjacXdg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.370 [XNIO-1 task-2] XNjsT8Y5QXGFNlXMjacXdg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.372 [XNIO-1 task-2] RmnyLax7SaeHEZnAzGIbSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.372 [XNIO-1 task-2] RmnyLax7SaeHEZnAzGIbSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.372 [XNIO-1 task-2] RmnyLax7SaeHEZnAzGIbSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.372 [XNIO-1 task-2] RmnyLax7SaeHEZnAzGIbSw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.373 [XNIO-1 task-2] dStA8JRUTPCLuCtmRxiRMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.373 [XNIO-1 task-2] dStA8JRUTPCLuCtmRxiRMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.373 [XNIO-1 task-2] dStA8JRUTPCLuCtmRxiRMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.373 [XNIO-1 task-2] dStA8JRUTPCLuCtmRxiRMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.374 [XNIO-1 task-2] dStA8JRUTPCLuCtmRxiRMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.375 [XNIO-1 task-2] GH9ToJmoQWmAMbSC3nURhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.375 [XNIO-1 task-2] GH9ToJmoQWmAMbSC3nURhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.375 [XNIO-1 task-2] GH9ToJmoQWmAMbSC3nURhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.375 [XNIO-1 task-2] GH9ToJmoQWmAMbSC3nURhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.375 [XNIO-1 task-2] GH9ToJmoQWmAMbSC3nURhg DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.375 [XNIO-1 task-2] GH9ToJmoQWmAMbSC3nURhg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.377 [XNIO-1 task-2] JO2cFVkMT8acoIJGOsc1vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.377 [XNIO-1 task-2] JO2cFVkMT8acoIJGOsc1vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.377 [XNIO-1 task-2] JO2cFVkMT8acoIJGOsc1vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.377 [XNIO-1 task-2] JO2cFVkMT8acoIJGOsc1vw ERROR c.networknt.openapi.ValidatorHandler handleRequest - There is an Validation Error: +16:40:13.380 [XNIO-1 task-2] 0ESUinqdQuKWZsBSiZyprA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.380 [XNIO-1 task-2] 0ESUinqdQuKWZsBSiZyprA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.380 [XNIO-1 task-2] 0ESUinqdQuKWZsBSiZyprA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.380 [XNIO-1 task-2] 0ESUinqdQuKWZsBSiZyprA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.380 [XNIO-1 task-2] 0ESUinqdQuKWZsBSiZyprA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.382 [XNIO-1 task-2] f9VZcKp6ST-1IB5tod4ItA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.382 [XNIO-1 task-2] f9VZcKp6ST-1IB5tod4ItA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.382 [XNIO-1 task-2] f9VZcKp6ST-1IB5tod4ItA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.382 [XNIO-1 task-2] f9VZcKp6ST-1IB5tod4ItA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82, base path is set to: null +16:40:13.382 [XNIO-1 task-2] f9VZcKp6ST-1IB5tod4ItA DEBUG com.networknt.schema.TypeValidator debug - validate( "5a9b22a5-fead-475f-bc22-3838a87aaa82", "5a9b22a5-fead-475f-bc22-3838a87aaa82", refreshToken) +16:40:13.382 [XNIO-1 task-2] f9VZcKp6ST-1IB5tod4ItA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5a9b22a5-fead-475f-bc22-3838a87aaa82 is not found.","severity":"ERROR"} +16:40:13.384 [XNIO-1 task-2] TS_G8CipSM2f-ADksk39jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.384 [XNIO-1 task-2] TS_G8CipSM2f-ADksk39jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.384 [XNIO-1 task-2] TS_G8CipSM2f-ADksk39jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.384 [XNIO-1 task-2] TS_G8CipSM2f-ADksk39jA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.384 [XNIO-1 task-2] TS_G8CipSM2f-ADksk39jA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.385 [XNIO-1 task-2] 88e1AdnuTjmvymxw1X7-dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.386 [XNIO-1 task-2] 88e1AdnuTjmvymxw1X7-dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.386 [XNIO-1 task-2] 88e1AdnuTjmvymxw1X7-dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.386 [XNIO-1 task-2] 88e1AdnuTjmvymxw1X7-dg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.386 [XNIO-1 task-2] 88e1AdnuTjmvymxw1X7-dg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.389 [XNIO-1 task-2] NGp0wOVaTueTdpV0m7nQ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.389 [XNIO-1 task-2] NGp0wOVaTueTdpV0m7nQ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.389 [XNIO-1 task-2] NGp0wOVaTueTdpV0m7nQ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.389 [XNIO-1 task-2] NGp0wOVaTueTdpV0m7nQ6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.390 [XNIO-1 task-2] NGp0wOVaTueTdpV0m7nQ6Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a +16:40:13.391 [XNIO-1 task-2] lRWQIdtrQNO684o-OTCDCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.391 [XNIO-1 task-2] lRWQIdtrQNO684o-OTCDCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.391 [XNIO-1 task-2] lRWQIdtrQNO684o-OTCDCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.391 [XNIO-1 task-2] lRWQIdtrQNO684o-OTCDCA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR11000","message":"VALIDATOR_REQUEST_PARAMETER_QUERY_MISSING","description":"Query parameter page is required on path /oauth2/refresh_token but not found in request.","severity":"ERROR"} +16:40:13.393 [XNIO-1 task-2] o49vljnTRQ-jRLH09HQ-8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.393 [XNIO-1 task-2] o49vljnTRQ-jRLH09HQ-8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.393 [XNIO-1 task-2] o49vljnTRQ-jRLH09HQ-8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:13.393 [XNIO-1 task-2] o49vljnTRQ-jRLH09HQ-8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f6a2f677-4ff1-457c-8cb0-53826417888a, base path is set to: null +16:40:13.393 [XNIO-1 task-2] o49vljnTRQ-jRLH09HQ-8A DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a2f677-4ff1-457c-8cb0-53826417888a", "f6a2f677-4ff1-457c-8cb0-53826417888a", refreshToken) +16:40:13.393 [XNIO-1 task-2] o49vljnTRQ-jRLH09HQ-8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} +16:40:13.395 [XNIO-1 task-2] gGw4TyAuSzymigWjpe8TvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.395 [XNIO-1 task-2] gGw4TyAuSzymigWjpe8TvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:13.395 [XNIO-1 task-2] gGw4TyAuSzymigWjpe8TvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:13.395 [XNIO-1 task-2] gGw4TyAuSzymigWjpe8TvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.395 [XNIO-1 task-2] gGw4TyAuSzymigWjpe8TvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:13.397 [XNIO-1 task-2] 5aB0FjsUScGq2vIk8Qf2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.397 [XNIO-1 task-2] 5aB0FjsUScGq2vIk8Qf2OA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:13.397 [XNIO-1 task-2] 5aB0FjsUScGq2vIk8Qf2OA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:13.397 [XNIO-1 task-2] 5aB0FjsUScGq2vIk8Qf2OA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:13.398 [XNIO-1 task-2] 5aB0FjsUScGq2vIk8Qf2OA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:13.401 [XNIO-1 task-2] nvnl-OGtQTm5hjcqvs0lUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token diff --git a/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-service-1.log b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..1adb7ed --- /dev/null +++ b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-service-1.log @@ -0,0 +1,3132 @@ +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea065ff-19dd-4676-90cf-7850c503", {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:08.782 [XNIO-1 task-2] 2TKBSpQjRY6HUvRpRPBvzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.787 [XNIO-1 task-2] imgt4pHvSW2MRzSyr_QS5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a53de9dd, base path is set to: null +16:40:08.787 [XNIO-1 task-2] imgt4pHvSW2MRzSyr_QS5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.788 [XNIO-1 task-2] imgt4pHvSW2MRzSyr_QS5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:08.788 [XNIO-1 task-2] imgt4pHvSW2MRzSyr_QS5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a53de9dd, base path is set to: null +16:40:08.788 [XNIO-1 task-2] imgt4pHvSW2MRzSyr_QS5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a53de9dd", "a53de9dd", serviceId) +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9ef564b-f05c-475a-9fca-bb888d141baf", {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "a53de9dd", {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.797 [XNIO-1 task-2] Zic7qo2PRra3zasq9cRRvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a53de9dd","serviceName":"0ea065ff-19dd-4676-90cf-7850c503","serviceDesc":"e9ef564b-f05c-475a-9fca-bb888d141baf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.802 [XNIO-1 task-2] v3A4pc_YR4euv7YLmIEobQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a53de9dd +16:40:08.802 [XNIO-1 task-2] v3A4pc_YR4euv7YLmIEobQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.802 [XNIO-1 task-2] v3A4pc_YR4euv7YLmIEobQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:08.802 [XNIO-1 task-2] v3A4pc_YR4euv7YLmIEobQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a53de9dd +16:40:08.807 [XNIO-1 task-2] xrxOeH2cSISgbQnR0TtRtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.807 [XNIO-1 task-2] xrxOeH2cSISgbQnR0TtRtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.807 [XNIO-1 task-2] xrxOeH2cSISgbQnR0TtRtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.807 [XNIO-1 task-2] xrxOeH2cSISgbQnR0TtRtg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.813 [XNIO-1 task-2] NnRps0arQ0mbUHjO-JXvLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.813 [XNIO-1 task-2] NnRps0arQ0mbUHjO-JXvLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.814 [XNIO-1 task-2] NnRps0arQ0mbUHjO-JXvLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.819 [XNIO-1 task-2] 9HNAwG3gTUG-vSFkxbghoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.819 [XNIO-1 task-2] 9HNAwG3gTUG-vSFkxbghoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.820 [XNIO-1 task-2] 9HNAwG3gTUG-vSFkxbghoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.820 [XNIO-1 task-2] 9HNAwG3gTUG-vSFkxbghoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.824 [XNIO-1 task-2] UVoCu26zQaWvEuubbd83rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.824 [XNIO-1 task-2] UVoCu26zQaWvEuubbd83rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.824 [XNIO-1 task-2] UVoCu26zQaWvEuubbd83rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.824 [XNIO-1 task-2] UVoCu26zQaWvEuubbd83rg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:08.828 [XNIO-1 task-2] IZVSdhzsTz6DwVdO60MUbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/238516b5, base path is set to: null +16:40:08.828 [XNIO-1 task-2] IZVSdhzsTz6DwVdO60MUbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.828 [XNIO-1 task-2] IZVSdhzsTz6DwVdO60MUbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:08.828 [XNIO-1 task-2] IZVSdhzsTz6DwVdO60MUbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/238516b5, base path is set to: null +16:40:08.828 [XNIO-1 task-2] IZVSdhzsTz6DwVdO60MUbA DEBUG com.networknt.schema.TypeValidator debug - validate( "238516b5", "238516b5", serviceId) +16:40:08.834 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.834 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.834 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.834 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.834 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.835 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG com.networknt.schema.TypeValidator debug - validate( "bb885916-33ed-4ad9-8a29-060c052e4bf8", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.835 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG com.networknt.schema.TypeValidator debug - validate( "238516b5", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.835 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.835 [XNIO-1 task-2] dlbBWtzBS9SGB87uVIsPVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.841 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.841 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.841 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.841 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.842 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.842 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG com.networknt.schema.TypeValidator debug - validate( "bb885916-33ed-4ad9-8a29-060c052e4bf8", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.842 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG com.networknt.schema.TypeValidator debug - validate( "238516b5", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.842 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.842 [XNIO-1 task-2] gAk6WQ8WT-uZ4h1s0exnlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.847 [XNIO-1 task-2] 8vxPp41uToaa_gN65M-COg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.847 [XNIO-1 task-2] 8vxPp41uToaa_gN65M-COg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.847 [XNIO-1 task-2] 8vxPp41uToaa_gN65M-COg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.848 [XNIO-1 task-2] 8vxPp41uToaa_gN65M-COg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.874 [XNIO-1 task-2] RaK9USAWQbKVbKtP0sE3Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/238516b5 +16:40:08.874 [XNIO-1 task-2] RaK9USAWQbKVbKtP0sE3Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.874 [XNIO-1 task-2] RaK9USAWQbKVbKtP0sE3Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:08.875 [XNIO-1 task-2] RaK9USAWQbKVbKtP0sE3Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/238516b5 +16:40:08.877 [XNIO-1 task-2] 7O5C_gibRtaosqovMmQl0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.877 [XNIO-1 task-2] 7O5C_gibRtaosqovMmQl0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.877 [XNIO-1 task-2] 7O5C_gibRtaosqovMmQl0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.883 [XNIO-1 task-2] 4qtumbarQ1GvdleKuyEV8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.883 [XNIO-1 task-2] 4qtumbarQ1GvdleKuyEV8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.883 [XNIO-1 task-2] 4qtumbarQ1GvdleKuyEV8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.889 [XNIO-1 task-2] zr2NyLpMSPegD1qaL4yeAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.889 [XNIO-1 task-2] zr2NyLpMSPegD1qaL4yeAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.889 [XNIO-1 task-2] zr2NyLpMSPegD1qaL4yeAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.889 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81a2dd6e +16:40:08.890 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81a2dd6e +16:40:08.895 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.895 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.896 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.896 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.896 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.897 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "7d66eb03-b202-4215-b823-53addc68f415", {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.897 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "81a2dd6e", {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.897 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.897 [XNIO-1 task-2] WAenWNpbRVGVGk2JvLXKjw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.897 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:81a2dd6e +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG com.networknt.schema.TypeValidator debug - validate( "bb885916-33ed-4ad9-8a29-060c052e4bf8", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG com.networknt.schema.TypeValidator debug - validate( "238516b5", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.903 [XNIO-1 task-2] LYuYSnlzTDuaJ94OffRC1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.908 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.908 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.908 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.909 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.909 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.909 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG com.networknt.schema.TypeValidator debug - validate( "bb885916-33ed-4ad9-8a29-060c052e4bf8", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.909 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG com.networknt.schema.TypeValidator debug - validate( "238516b5", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.909 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.909 [XNIO-1 task-2] Jcq2i540RUW5gk-HWYhbaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.914 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.915 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.915 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.916 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.916 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.916 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "12be934d-c0c1-48ba-ad76-89981b1accb5", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.916 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6946e8db", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.916 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.916 [XNIO-1 task-2] PgK_5C16SsOcADWFyg53wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.921 [XNIO-1 task-2] Na9kvDX0SbGIskqfi49yNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.921 [XNIO-1 task-2] Na9kvDX0SbGIskqfi49yNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.921 [XNIO-1 task-2] Na9kvDX0SbGIskqfi49yNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.927 [XNIO-1 task-2] WVtuzcqeSjKtnPGl6UuIHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.927 [XNIO-1 task-2] WVtuzcqeSjKtnPGl6UuIHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.928 [XNIO-1 task-2] WVtuzcqeSjKtnPGl6UuIHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.928 [XNIO-1 task-2] WVtuzcqeSjKtnPGl6UuIHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG com.networknt.schema.TypeValidator debug - validate( "bb885916-33ed-4ad9-8a29-060c052e4bf8", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG com.networknt.schema.TypeValidator debug - validate( "238516b5", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:08.942 [XNIO-1 task-2] iwcY9AG-QnCHVymoIvTvOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"238516b5","serviceName":"684372ef-4d75-432d-bb07-e264c4de","serviceDesc":"bb885916-33ed-4ad9-8a29-060c052e4bf8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.948 [XNIO-1 task-2] vTaEXUKTR8iC-VFJC9QOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/238516b5 +16:40:08.948 [XNIO-1 task-2] vTaEXUKTR8iC-VFJC9QOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.949 [XNIO-1 task-2] vTaEXUKTR8iC-VFJC9QOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:08.949 [XNIO-1 task-2] vTaEXUKTR8iC-VFJC9QOBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/238516b5 +16:40:08.955 [XNIO-1 task-2] m8QolKfmRfulMsxYdst_Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.956 [XNIO-1 task-2] m8QolKfmRfulMsxYdst_Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.956 [XNIO-1 task-2] m8QolKfmRfulMsxYdst_Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.962 [XNIO-1 task-2] NJD_NbliSc25GNR4fYmdXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.962 [XNIO-1 task-2] NJD_NbliSc25GNR4fYmdXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.962 [XNIO-1 task-2] NJD_NbliSc25GNR4fYmdXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.962 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f8fc69bd +16:40:08.963 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f8fc69bd +16:40:08.973 [XNIO-1 task-2] zEG-RfnDS-O_BYJcRmCtcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cc56c0a +16:40:08.973 [XNIO-1 task-2] zEG-RfnDS-O_BYJcRmCtcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.973 [XNIO-1 task-2] zEG-RfnDS-O_BYJcRmCtcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:08.973 [XNIO-1 task-2] zEG-RfnDS-O_BYJcRmCtcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cc56c0a +16:40:08.983 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.983 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.984 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:08.984 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.984 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.984 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:08.984 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:08.984 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG com.networknt.schema.TypeValidator debug - validate( "93a71838-14cb-4a17-a845-5e055b57", {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:08.984 [XNIO-1 task-2] 0as8gnW7S0ek7_J2yZbjXw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"81a2dd6e","serviceName":"93a71838-14cb-4a17-a845-5e055b57","serviceDesc":"7d66eb03-b202-4215-b823-53addc68f415","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:08.984 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:81a2dd6e +16:40:08.990 [XNIO-1 task-2] 8vufx2QFTRmqueCNY-EbFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81a2dd6e, base path is set to: null +16:40:08.990 [XNIO-1 task-2] 8vufx2QFTRmqueCNY-EbFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:08.990 [XNIO-1 task-2] 8vufx2QFTRmqueCNY-EbFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:08.990 [XNIO-1 task-2] 8vufx2QFTRmqueCNY-EbFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/81a2dd6e, base path is set to: null +16:40:08.990 [XNIO-1 task-2] 8vufx2QFTRmqueCNY-EbFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "81a2dd6e", "81a2dd6e", serviceId) +16:40:08.992 [XNIO-1 task-2] mCdASzZARiCinsFuOvm-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.992 [XNIO-1 task-2] mCdASzZARiCinsFuOvm-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.992 [XNIO-1 task-2] mCdASzZARiCinsFuOvm-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:08.993 [XNIO-1 task-2] mCdASzZARiCinsFuOvm-rA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.000 [XNIO-1 task-2] ptrksmylQV6wFGBruBLufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/81a2dd6e +16:40:09.000 [XNIO-1 task-2] ptrksmylQV6wFGBruBLufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.000 [XNIO-1 task-2] ptrksmylQV6wFGBruBLufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.000 [XNIO-1 task-2] ptrksmylQV6wFGBruBLufw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/81a2dd6e +16:40:09.000 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:81a2dd6e +16:40:09.006 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.006 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.006 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.006 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.006 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.006 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.006 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.007 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "27272415-6d4d-4696-8f22-410d628f", {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.007 [XNIO-1 task-2] rpk0K5h7RXubwvZpKQYFLQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cb4d5566","serviceName":"27272415-6d4d-4696-8f22-410d628f","serviceDesc":"76769e80-feb8-44a1-8eae-2614f5ce3c96","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.015 [XNIO-1 task-2] SQ9_F7oaTQO9VrH1Q661Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.016 [XNIO-1 task-2] SQ9_F7oaTQO9VrH1Q661Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.016 [XNIO-1 task-2] SQ9_F7oaTQO9VrH1Q661Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.022 [XNIO-1 task-2] 7aIWIB3GSJqOgD6DMPKPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8fc69bd, base path is set to: null +16:40:09.022 [XNIO-1 task-2] 7aIWIB3GSJqOgD6DMPKPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.022 [XNIO-1 task-2] 7aIWIB3GSJqOgD6DMPKPgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.022 [XNIO-1 task-2] 7aIWIB3GSJqOgD6DMPKPgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8fc69bd, base path is set to: null +16:40:09.022 [XNIO-1 task-2] 7aIWIB3GSJqOgD6DMPKPgA DEBUG com.networknt.schema.TypeValidator debug - validate( "f8fc69bd", "f8fc69bd", serviceId) +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG com.networknt.schema.TypeValidator debug - validate( "12be934d-c0c1-48ba-ad76-89981b1accb5", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG com.networknt.schema.TypeValidator debug - validate( "6946e8db", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.025 [XNIO-1 task-2] b9hfa3ZoTz-ejN0AyOWwSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6946e8db","serviceName":"75494feb-d502-4b7c-94ac-056b8c4e","serviceDesc":"12be934d-c0c1-48ba-ad76-89981b1accb5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.033 [XNIO-1 task-2] nvjAxf15TVmavKhHCMMDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.033 [XNIO-1 task-2] nvjAxf15TVmavKhHCMMDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.033 [XNIO-1 task-2] nvjAxf15TVmavKhHCMMDhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.033 [XNIO-1 task-2] nvjAxf15TVmavKhHCMMDhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.037 [XNIO-1 task-2] JjkVtvHPSxiFCiot8_6xxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.037 [XNIO-1 task-2] JjkVtvHPSxiFCiot8_6xxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.038 [XNIO-1 task-2] JjkVtvHPSxiFCiot8_6xxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.038 [XNIO-1 task-2] JjkVtvHPSxiFCiot8_6xxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.042 [XNIO-1 task-2] ue3yBA3NTR2sHLvTZfogLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/978f0bba +16:40:09.042 [XNIO-1 task-2] ue3yBA3NTR2sHLvTZfogLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.042 [XNIO-1 task-2] ue3yBA3NTR2sHLvTZfogLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.042 [XNIO-1 task-2] ue3yBA3NTR2sHLvTZfogLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/978f0bba +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG com.networknt.schema.TypeValidator debug - validate( "056f9be9-34ea-43b7-ad22-f932d1fa", {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.052 [XNIO-1 task-2] 1xJ60UWlTPCoypA3Kf9hnw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a6eb6f12","serviceName":"056f9be9-34ea-43b7-ad22-f932d1fa","serviceDesc":"62a0b582-e280-4938-8a39-fb4ed1b2e701","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.060 [XNIO-1 task-2] d7K2gZFvSjS8Xz6LD4eVvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6946e8db, base path is set to: null +16:40:09.060 [XNIO-1 task-2] d7K2gZFvSjS8Xz6LD4eVvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.060 [XNIO-1 task-2] d7K2gZFvSjS8Xz6LD4eVvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.060 [XNIO-1 task-2] d7K2gZFvSjS8Xz6LD4eVvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6946e8db, base path is set to: null +16:40:09.060 [XNIO-1 task-2] d7K2gZFvSjS8Xz6LD4eVvA DEBUG com.networknt.schema.TypeValidator debug - validate( "6946e8db", "6946e8db", serviceId) +16:40:09.062 [XNIO-1 task-2] jeZCCk77SQSdDyB-d3CQjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6946e8db +16:40:09.062 [XNIO-1 task-2] jeZCCk77SQSdDyB-d3CQjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.062 [XNIO-1 task-2] jeZCCk77SQSdDyB-d3CQjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.062 [XNIO-1 task-2] jeZCCk77SQSdDyB-d3CQjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6946e8db +16:40:09.069 [XNIO-1 task-2] 8GOlSUsDTHutpwSJ6HHyaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.069 [XNIO-1 task-2] 8GOlSUsDTHutpwSJ6HHyaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.069 [XNIO-1 task-2] 8GOlSUsDTHutpwSJ6HHyaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.075 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.075 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.076 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.076 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.076 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.076 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.076 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.076 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG com.networknt.schema.TypeValidator debug - validate( "78277883-7e9c-4da2-8013-4ecce3b2", {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.076 [XNIO-1 task-2] Ad1S111hTFeihXw-Re4JoA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1ea00219","serviceName":"78277883-7e9c-4da2-8013-4ecce3b2","serviceDesc":"a368aaba-c250-4dc9-bdf9-ac4c8890e873","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.086 [XNIO-1 task-2] aDzzjicTRJmmvVdxu7L2Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb4d5566, base path is set to: null +16:40:09.086 [XNIO-1 task-2] aDzzjicTRJmmvVdxu7L2Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.086 [XNIO-1 task-2] aDzzjicTRJmmvVdxu7L2Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.086 [XNIO-1 task-2] aDzzjicTRJmmvVdxu7L2Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb4d5566, base path is set to: null +16:40:09.086 [XNIO-1 task-2] aDzzjicTRJmmvVdxu7L2Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb4d5566", "cb4d5566", serviceId) +16:40:09.093 [XNIO-1 task-2] BzptcO2dQUyvVZSJsq4qng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.093 [XNIO-1 task-2] BzptcO2dQUyvVZSJsq4qng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.093 [XNIO-1 task-2] BzptcO2dQUyvVZSJsq4qng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.093 [XNIO-1 task-2] BzptcO2dQUyvVZSJsq4qng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.098 [XNIO-1 task-2] eN7pnADcSpef5dimk7NEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.098 [XNIO-1 task-2] eN7pnADcSpef5dimk7NEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.098 [XNIO-1 task-2] eN7pnADcSpef5dimk7NEDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.104 [XNIO-1 task-2] -eocaUH2RKK4CVE1iuGE5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ea00219 +16:40:09.104 [XNIO-1 task-2] -eocaUH2RKK4CVE1iuGE5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.104 [XNIO-1 task-2] -eocaUH2RKK4CVE1iuGE5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.104 [XNIO-1 task-2] -eocaUH2RKK4CVE1iuGE5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ea00219 +16:40:09.114 [XNIO-1 task-2] WDjdU4elRGqesQAY_S-f2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.114 [XNIO-1 task-2] WDjdU4elRGqesQAY_S-f2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.114 [XNIO-1 task-2] WDjdU4elRGqesQAY_S-f2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.114 [XNIO-1 task-2] WDjdU4elRGqesQAY_S-f2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.120 [XNIO-1 task-2] _E4jhV1jQJ-u5Rm1E7IAhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8fc69bd, base path is set to: null +16:40:09.120 [XNIO-1 task-2] _E4jhV1jQJ-u5Rm1E7IAhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.120 [XNIO-1 task-2] _E4jhV1jQJ-u5Rm1E7IAhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.120 [XNIO-1 task-2] _E4jhV1jQJ-u5Rm1E7IAhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f8fc69bd, base path is set to: null +16:40:09.121 [XNIO-1 task-2] _E4jhV1jQJ-u5Rm1E7IAhA DEBUG com.networknt.schema.TypeValidator debug - validate( "f8fc69bd", "f8fc69bd", serviceId) +16:40:09.123 [XNIO-1 task-2] aq_Lx7IWS3WDaV3Zk5dNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bcf91655 +16:40:09.123 [XNIO-1 task-2] aq_Lx7IWS3WDaV3Zk5dNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.123 [XNIO-1 task-2] aq_Lx7IWS3WDaV3Zk5dNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.123 [XNIO-1 task-2] aq_Lx7IWS3WDaV3Zk5dNqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bcf91655 +16:40:09.129 [XNIO-1 task-2] wd26hnRqQ2W1y_ewdf11uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a6eb6f12, base path is set to: null +16:40:09.129 [XNIO-1 task-2] wd26hnRqQ2W1y_ewdf11uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.129 [XNIO-1 task-2] wd26hnRqQ2W1y_ewdf11uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.129 [XNIO-1 task-2] wd26hnRqQ2W1y_ewdf11uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a6eb6f12, base path is set to: null +16:40:09.129 [XNIO-1 task-2] wd26hnRqQ2W1y_ewdf11uw DEBUG com.networknt.schema.TypeValidator debug - validate( "a6eb6f12", "a6eb6f12", serviceId) +16:40:09.135 [XNIO-1 task-2] i6oYKbMHTpWjegsH1JkZ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.135 [XNIO-1 task-2] i6oYKbMHTpWjegsH1JkZ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.135 [XNIO-1 task-2] i6oYKbMHTpWjegsH1JkZ5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.135 [XNIO-1 task-2] i6oYKbMHTpWjegsH1JkZ5w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.139 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.139 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.140 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.140 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.140 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.140 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG com.networknt.schema.TypeValidator debug - validate( "68f1cb0b-664b-45b6-bcb2-1bed23cee27c", {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.140 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG com.networknt.schema.TypeValidator debug - validate( "f8fc69bd", {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.140 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.140 [XNIO-1 task-2] L_GGzCY6QnWSe3pPHr6KcA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f8fc69bd","serviceName":"fef6ae56-cf01-4f20-afae-8397e1a9","serviceDesc":"68f1cb0b-664b-45b6-bcb2-1bed23cee27c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.140 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f8fc69bd +16:40:09.145 [XNIO-1 task-2] qtq4Q3b9QG2FnjYTVb34Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f8fc69bd +16:40:09.145 [XNIO-1 task-2] qtq4Q3b9QG2FnjYTVb34Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.145 [XNIO-1 task-2] qtq4Q3b9QG2FnjYTVb34Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.145 [XNIO-1 task-2] qtq4Q3b9QG2FnjYTVb34Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f8fc69bd +16:40:09.145 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f8fc69bd +16:40:09.150 [XNIO-1 task-2] 7zGC2aY9SdaGMqxLCuwJlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.150 [XNIO-1 task-2] 7zGC2aY9SdaGMqxLCuwJlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.150 [XNIO-1 task-2] 7zGC2aY9SdaGMqxLCuwJlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.150 [XNIO-1 task-2] 7zGC2aY9SdaGMqxLCuwJlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.155 [XNIO-1 task-2] LaTAvG1yTGerfCdP3-clhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.155 [XNIO-1 task-2] LaTAvG1yTGerfCdP3-clhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.155 [XNIO-1 task-2] LaTAvG1yTGerfCdP3-clhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.155 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1b945c43 +16:40:09.156 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1b945c43 +16:40:09.160 [XNIO-1 task-2] 61kQ6T60TvK0R8uJrz5iLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1b945c43 +16:40:09.160 [XNIO-1 task-2] 61kQ6T60TvK0R8uJrz5iLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.160 [XNIO-1 task-2] 61kQ6T60TvK0R8uJrz5iLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.161 [XNIO-1 task-2] 61kQ6T60TvK0R8uJrz5iLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1b945c43 +16:40:09.161 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1b945c43 +16:40:09.166 [XNIO-1 task-2] yblvWfk0TYmpJjNanE9h0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.166 [XNIO-1 task-2] yblvWfk0TYmpJjNanE9h0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.167 [XNIO-1 task-2] yblvWfk0TYmpJjNanE9h0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.167 [XNIO-1 task-2] yblvWfk0TYmpJjNanE9h0g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.170 [XNIO-1 task-2] lXY59ycqQ_W0IcjwTA02IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.170 [XNIO-1 task-2] lXY59ycqQ_W0IcjwTA02IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.171 [XNIO-1 task-2] lXY59ycqQ_W0IcjwTA02IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.171 [XNIO-1 task-2] lXY59ycqQ_W0IcjwTA02IA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.175 [XNIO-1 task-2] 2sB7fwkLQ9SW9B41vt9e6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.175 [XNIO-1 task-2] 2sB7fwkLQ9SW9B41vt9e6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.176 [XNIO-1 task-2] 2sB7fwkLQ9SW9B41vt9e6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.182 [XNIO-1 task-2] a4xsICh8Ro6Xh6tQk6VoJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.182 [XNIO-1 task-2] a4xsICh8Ro6Xh6tQk6VoJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.183 [XNIO-1 task-2] a4xsICh8Ro6Xh6tQk6VoJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.188 [XNIO-1 task-2] TJ1ptNKsR_GQCxeelb6KfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.188 [XNIO-1 task-2] TJ1ptNKsR_GQCxeelb6KfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.188 [XNIO-1 task-2] TJ1ptNKsR_GQCxeelb6KfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.188 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6a024e0a +16:40:09.189 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6a024e0a +16:40:09.195 [XNIO-1 task-2] TaHxEIwNTHuiQNhptqE5ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.195 [XNIO-1 task-2] TaHxEIwNTHuiQNhptqE5ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.195 [XNIO-1 task-2] TaHxEIwNTHuiQNhptqE5ow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.196 [XNIO-1 task-2] TaHxEIwNTHuiQNhptqE5ow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.199 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.199 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.199 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.200 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.200 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.200 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG com.networknt.schema.TypeValidator debug - validate( "c567c577-d361-4ead-8ff0-b46b268da35f", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.200 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4c8fb8", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.200 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.200 [XNIO-1 task-2] ZfBP8zuCTzCBmfNQA2txwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.205 [XNIO-1 task-2] Z43rHdxZSFK1Ufgur-hjNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/24396388 +16:40:09.205 [XNIO-1 task-2] Z43rHdxZSFK1Ufgur-hjNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.205 [XNIO-1 task-2] Z43rHdxZSFK1Ufgur-hjNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.205 [XNIO-1 task-2] Z43rHdxZSFK1Ufgur-hjNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/24396388 +16:40:09.208 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.209 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.209 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.209 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.209 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.209 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.209 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.210 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG com.networknt.schema.TypeValidator debug - validate( "bd713d9e-8b81-4841-8425-9cc9680c", {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.210 [XNIO-1 task-2] l9_goIXvQHW-I6mlwPoN8w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.210 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6a024e0a +16:40:09.215 [XNIO-1 task-2] N96HmLs7Rceu-PDeuFJVOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/24396388, base path is set to: null +16:40:09.215 [XNIO-1 task-2] N96HmLs7Rceu-PDeuFJVOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.215 [XNIO-1 task-2] N96HmLs7Rceu-PDeuFJVOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.215 [XNIO-1 task-2] N96HmLs7Rceu-PDeuFJVOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/24396388, base path is set to: null +16:40:09.215 [XNIO-1 task-2] N96HmLs7Rceu-PDeuFJVOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "24396388", "24396388", serviceId) +16:40:09.221 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.221 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.221 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.222 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.222 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.222 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG com.networknt.schema.TypeValidator debug - validate( "c567c577-d361-4ead-8ff0-b46b268da35f", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.222 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4c8fb8", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.222 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.222 [XNIO-1 task-2] bGomaIMwScWDByozFQNyWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.227 [XNIO-1 task-2] Vn7UHMKSQQKo41hhVvbgGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.227 [XNIO-1 task-2] Vn7UHMKSQQKo41hhVvbgGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.227 [XNIO-1 task-2] Vn7UHMKSQQKo41hhVvbgGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.233 [XNIO-1 task-2] wqaWGEypTiir0W4saYmdOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a024e0a +16:40:09.233 [XNIO-1 task-2] wqaWGEypTiir0W4saYmdOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.233 [XNIO-1 task-2] wqaWGEypTiir0W4saYmdOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.233 [XNIO-1 task-2] wqaWGEypTiir0W4saYmdOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a024e0a +16:40:09.235 [XNIO-1 task-2] -KujVUPvRVG6lHSbsbE1pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.235 [XNIO-1 task-2] -KujVUPvRVG6lHSbsbE1pQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.235 [XNIO-1 task-2] -KujVUPvRVG6lHSbsbE1pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.235 [XNIO-1 task-2] -KujVUPvRVG6lHSbsbE1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.276 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG com.networknt.schema.TypeValidator debug - validate( "f5d83f42-7213-400c-806c-9f5755b3", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.277 [XNIO-1 task-2] Ef3qN76GQI-jSb7vPGvIVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.283 [XNIO-1 task-2] FffrRSTXQbyGYh-lypf43Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.283 [XNIO-1 task-2] FffrRSTXQbyGYh-lypf43Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.283 [XNIO-1 task-2] FffrRSTXQbyGYh-lypf43Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.284 [XNIO-1 task-2] FffrRSTXQbyGYh-lypf43Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.287 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG com.networknt.schema.TypeValidator debug - validate( "123d292e-b9ae-4cc4-8d77-5e99a10a", {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.288 [XNIO-1 task-2] zJJerWR6QHWtrgZQ04C43g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7889757e","serviceName":"123d292e-b9ae-4cc4-8d77-5e99a10a","serviceDesc":"fe52bfcd-e121-400a-b195-b3147b1642da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.294 [XNIO-1 task-2] -38ZpBjbSxGUMfcJM9Xx8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7889757e, base path is set to: null +16:40:09.294 [XNIO-1 task-2] -38ZpBjbSxGUMfcJM9Xx8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.294 [XNIO-1 task-2] -38ZpBjbSxGUMfcJM9Xx8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.295 [XNIO-1 task-2] -38ZpBjbSxGUMfcJM9Xx8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7889757e, base path is set to: null +16:40:09.295 [XNIO-1 task-2] -38ZpBjbSxGUMfcJM9Xx8A DEBUG com.networknt.schema.TypeValidator debug - validate( "7889757e", "7889757e", serviceId) +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1711b9eb-caa6-4f79-83ab-fb264106bb13", {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6a024e0a", {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.302 [XNIO-1 task-2] ABXjwKc9TACaDRRuzUlSoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6a024e0a","serviceName":"bd713d9e-8b81-4841-8425-9cc9680c","serviceDesc":"1711b9eb-caa6-4f79-83ab-fb264106bb13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.303 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6a024e0a +16:40:09.308 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9507ebed-2609-440d-97f8-74c46c5edd37 +16:40:09.310 [XNIO-1 task-2] WeDuu6h5S-ClnWk5C7HIeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.311 [XNIO-1 task-2] WeDuu6h5S-ClnWk5C7HIeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.311 [XNIO-1 task-2] WeDuu6h5S-ClnWk5C7HIeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.311 [XNIO-1 task-2] WeDuu6h5S-ClnWk5C7HIeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.318 [XNIO-1 task-2] kGxZZ8GuRxWQJgyZYkJdGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.318 [XNIO-1 task-2] kGxZZ8GuRxWQJgyZYkJdGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.318 [XNIO-1 task-2] kGxZZ8GuRxWQJgyZYkJdGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.318 [XNIO-1 task-2] kGxZZ8GuRxWQJgyZYkJdGA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.323 [XNIO-1 task-2] OKHZ4f5JTaSB6PDQm6lR-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6a024e0a, base path is set to: null +16:40:09.323 [XNIO-1 task-2] OKHZ4f5JTaSB6PDQm6lR-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.323 [XNIO-1 task-2] OKHZ4f5JTaSB6PDQm6lR-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.323 [XNIO-1 task-2] OKHZ4f5JTaSB6PDQm6lR-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6a024e0a, base path is set to: null +16:40:09.323 [XNIO-1 task-2] OKHZ4f5JTaSB6PDQm6lR-w DEBUG com.networknt.schema.TypeValidator debug - validate( "6a024e0a", "6a024e0a", serviceId) +16:40:09.324 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6a024e0a +16:40:09.330 [XNIO-1 task-2] Nnc9ljU9SXe94iTsIDJBZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.330 [XNIO-1 task-2] Nnc9ljU9SXe94iTsIDJBZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.330 [XNIO-1 task-2] Nnc9ljU9SXe94iTsIDJBZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.338 [XNIO-1 task-2] K1gmNYI2QzKY77R_z2b2zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.338 [XNIO-1 task-2] K1gmNYI2QzKY77R_z2b2zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.338 [XNIO-1 task-2] K1gmNYI2QzKY77R_z2b2zQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.344 [XNIO-1 task-2] MjMsXvVWQXq8k9bSyjuxGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f3c7aa03 +16:40:09.344 [XNIO-1 task-2] MjMsXvVWQXq8k9bSyjuxGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.344 [XNIO-1 task-2] MjMsXvVWQXq8k9bSyjuxGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.344 [XNIO-1 task-2] MjMsXvVWQXq8k9bSyjuxGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f3c7aa03 +16:40:09.351 [XNIO-1 task-2] jem-4qC3TA6outSpJcdj0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8cce978e, base path is set to: null +16:40:09.351 [XNIO-1 task-2] jem-4qC3TA6outSpJcdj0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.351 [XNIO-1 task-2] jem-4qC3TA6outSpJcdj0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.351 [XNIO-1 task-2] jem-4qC3TA6outSpJcdj0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8cce978e, base path is set to: null +16:40:09.351 [XNIO-1 task-2] jem-4qC3TA6outSpJcdj0A DEBUG com.networknt.schema.TypeValidator debug - validate( "8cce978e", "8cce978e", serviceId) +16:40:09.357 [XNIO-1 task-2] RP81wAOwQkem_nVULqzKUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.357 [XNIO-1 task-2] RP81wAOwQkem_nVULqzKUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.357 [XNIO-1 task-2] RP81wAOwQkem_nVULqzKUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.358 [XNIO-1 task-2] RP81wAOwQkem_nVULqzKUQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.362 [XNIO-1 task-2] gveRmW_4QvO2FTN-NJHu7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.362 [XNIO-1 task-2] gveRmW_4QvO2FTN-NJHu7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.362 [XNIO-1 task-2] gveRmW_4QvO2FTN-NJHu7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.363 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:94e51be6 +16:40:09.369 [XNIO-1 task-2] jGM2XdMBTu2niKC2d0tN8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.369 [XNIO-1 task-2] jGM2XdMBTu2niKC2d0tN8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.369 [XNIO-1 task-2] jGM2XdMBTu2niKC2d0tN8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.369 [XNIO-1 task-2] jGM2XdMBTu2niKC2d0tN8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.373 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9507ebed-2609-440d-97f8-74c46c5edd37 +16:40:09.374 [XNIO-1 task-2] 67ePSLkOTzmSxRFWrMfpzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.374 [XNIO-1 task-2] 67ePSLkOTzmSxRFWrMfpzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.374 [XNIO-1 task-2] 67ePSLkOTzmSxRFWrMfpzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.381 [XNIO-1 task-2] AHvutdmKTX2hkOkDkGS_HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd4c8fb8 +16:40:09.381 [XNIO-1 task-2] AHvutdmKTX2hkOkDkGS_HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.381 [XNIO-1 task-2] AHvutdmKTX2hkOkDkGS_HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.381 [XNIO-1 task-2] AHvutdmKTX2hkOkDkGS_HA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd4c8fb8 +16:40:09.383 [XNIO-1 task-2] _sUw9QLHTdC0frhcqQI87w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.383 [XNIO-1 task-2] _sUw9QLHTdC0frhcqQI87w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.383 [XNIO-1 task-2] _sUw9QLHTdC0frhcqQI87w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.383 [XNIO-1 task-2] _sUw9QLHTdC0frhcqQI87w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.388 [XNIO-1 task-2] kZQxRkoiSPqDLxQFUR_FAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee5e3c01, base path is set to: null +16:40:09.388 [XNIO-1 task-2] kZQxRkoiSPqDLxQFUR_FAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.388 [XNIO-1 task-2] kZQxRkoiSPqDLxQFUR_FAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.388 [XNIO-1 task-2] kZQxRkoiSPqDLxQFUR_FAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee5e3c01, base path is set to: null +16:40:09.388 [XNIO-1 task-2] kZQxRkoiSPqDLxQFUR_FAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee5e3c01", "ee5e3c01", serviceId) +16:40:09.390 [XNIO-1 task-2] bOtSq9n0QsyoWVrsFsQnQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.390 [XNIO-1 task-2] bOtSq9n0QsyoWVrsFsQnQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.390 [XNIO-1 task-2] bOtSq9n0QsyoWVrsFsQnQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.390 [XNIO-1 task-2] bOtSq9n0QsyoWVrsFsQnQw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.394 [XNIO-1 task-2] q_w2dY1CSAG-Rc2WKOlajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/94e51be6 +16:40:09.395 [XNIO-1 task-2] q_w2dY1CSAG-Rc2WKOlajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.395 [XNIO-1 task-2] q_w2dY1CSAG-Rc2WKOlajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.395 [XNIO-1 task-2] q_w2dY1CSAG-Rc2WKOlajg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/94e51be6 +16:40:09.395 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:94e51be6 +16:40:09.399 [XNIO-1 task-2] n9BiKXTrS6Gk7seLLxCLmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dd4c8fb8, base path is set to: null +16:40:09.399 [XNIO-1 task-2] n9BiKXTrS6Gk7seLLxCLmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.399 [XNIO-1 task-2] n9BiKXTrS6Gk7seLLxCLmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.400 [XNIO-1 task-2] n9BiKXTrS6Gk7seLLxCLmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dd4c8fb8, base path is set to: null +16:40:09.400 [XNIO-1 task-2] n9BiKXTrS6Gk7seLLxCLmw DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4c8fb8", "dd4c8fb8", serviceId) +16:40:09.401 [XNIO-1 task-2] hzGjZQ2cRLaKX7BI4E5wfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.401 [XNIO-1 task-2] hzGjZQ2cRLaKX7BI4E5wfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.402 [XNIO-1 task-2] hzGjZQ2cRLaKX7BI4E5wfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.407 [XNIO-1 task-2] bXan4jjbSPGbsS3o_rSNMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.407 [XNIO-1 task-2] bXan4jjbSPGbsS3o_rSNMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.407 [XNIO-1 task-2] bXan4jjbSPGbsS3o_rSNMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.408 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:eff2e102 +16:40:09.412 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG com.networknt.schema.TypeValidator debug - validate( "3535601a-4688-4048-847f-fcf2ad43", {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.413 [XNIO-1 task-2] f3_-sbRySZ28U_tY7FesMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.413 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:eff2e102 +16:40:09.421 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.421 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.421 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.421 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.421 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.422 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.422 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.422 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f5d83f42-7213-400c-806c-9f5755b3", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.422 [XNIO-1 task-2] cYBemm5uRaCwZfd6HjzsdQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.427 [XNIO-1 task-2] 1iPOkVgBS2eUKe6l4RMqwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.428 [XNIO-1 task-2] 1iPOkVgBS2eUKe6l4RMqwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.428 [XNIO-1 task-2] 1iPOkVgBS2eUKe6l4RMqwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.428 [XNIO-1 task-2] 1iPOkVgBS2eUKe6l4RMqwg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.433 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.433 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.433 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.434 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.434 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.434 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.434 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.434 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG com.networknt.schema.TypeValidator debug - validate( "1080ff65-566d-449e-a24c-74ac5234", {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.434 [XNIO-1 task-2] dfC0XLRhQ7Wmf3KvuVTG6w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.439 [XNIO-1 task-2] Khkw_2FDQH2M8YGXJF0LMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee5e3c01, base path is set to: null +16:40:09.439 [XNIO-1 task-2] Khkw_2FDQH2M8YGXJF0LMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.440 [XNIO-1 task-2] Khkw_2FDQH2M8YGXJF0LMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.440 [XNIO-1 task-2] Khkw_2FDQH2M8YGXJF0LMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ee5e3c01, base path is set to: null +16:40:09.440 [XNIO-1 task-2] Khkw_2FDQH2M8YGXJF0LMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ee5e3c01", "ee5e3c01", serviceId) +16:40:09.446 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.446 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.446 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.446 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.447 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.447 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG com.networknt.schema.TypeValidator debug - validate( "1c5a6a6b-4721-468a-8edb-b8c6749bcbee", {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.447 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG com.networknt.schema.TypeValidator debug - validate( "0839ad67", {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.447 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.447 [XNIO-1 task-2] coGrVADtR2Gss3kVhjpOiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0839ad67","serviceName":"1080ff65-566d-449e-a24c-74ac5234","serviceDesc":"1c5a6a6b-4721-468a-8edb-b8c6749bcbee","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.453 [XNIO-1 task-2] RqTdne5dTZiuBs3nAGcXQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.453 [XNIO-1 task-2] RqTdne5dTZiuBs3nAGcXQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.453 [XNIO-1 task-2] RqTdne5dTZiuBs3nAGcXQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.453 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ffd14c05 +16:40:09.462 [XNIO-1 task-2] AZkwHlY8TBy49BDLqUG3Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.462 [XNIO-1 task-2] AZkwHlY8TBy49BDLqUG3Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.462 [XNIO-1 task-2] AZkwHlY8TBy49BDLqUG3Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.463 [XNIO-1 task-2] AZkwHlY8TBy49BDLqUG3Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.469 [XNIO-1 task-2] GVqyYOqUSAeRaiB1V0M-6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.469 [XNIO-1 task-2] GVqyYOqUSAeRaiB1V0M-6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.469 [XNIO-1 task-2] GVqyYOqUSAeRaiB1V0M-6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.475 [XNIO-1 task-2] oWPCx5AYSdKg2I_oM5psOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0839ad67, base path is set to: null +16:40:09.475 [XNIO-1 task-2] oWPCx5AYSdKg2I_oM5psOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.475 [XNIO-1 task-2] oWPCx5AYSdKg2I_oM5psOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.475 [XNIO-1 task-2] oWPCx5AYSdKg2I_oM5psOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0839ad67, base path is set to: null +16:40:09.475 [XNIO-1 task-2] oWPCx5AYSdKg2I_oM5psOA DEBUG com.networknt.schema.TypeValidator debug - validate( "0839ad67", "0839ad67", serviceId) +16:40:09.481 [XNIO-1 task-2] OwQa6xZJTbOllLsrOidR2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eff2e102 +16:40:09.481 [XNIO-1 task-2] OwQa6xZJTbOllLsrOidR2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.481 [XNIO-1 task-2] OwQa6xZJTbOllLsrOidR2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.481 [XNIO-1 task-2] OwQa6xZJTbOllLsrOidR2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eff2e102 +16:40:09.484 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.484 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.484 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.485 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.485 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.485 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.485 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.485 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG com.networknt.schema.TypeValidator debug - validate( "3535601a-4688-4048-847f-fcf2ad43", {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.485 [XNIO-1 task-2] 8xDXUyeZTdme8iP502EIjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"eff2e102","serviceName":"3535601a-4688-4048-847f-fcf2ad43","serviceDesc":"6d147eeb-47c5-48a7-87db-ce6ef6dc1933","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.485 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:eff2e102 +16:40:09.493 [XNIO-1 task-2] RecrzgQKScqR5RVo-E3MEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.493 [XNIO-1 task-2] RecrzgQKScqR5RVo-E3MEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.494 [XNIO-1 task-2] RecrzgQKScqR5RVo-E3MEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.502 [XNIO-1 task-2] x8Va2pIKSPWlbDdfQDdC3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ffd14c05, base path is set to: null +16:40:09.502 [XNIO-1 task-2] x8Va2pIKSPWlbDdfQDdC3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.502 [XNIO-1 task-2] x8Va2pIKSPWlbDdfQDdC3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.502 [XNIO-1 task-2] x8Va2pIKSPWlbDdfQDdC3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ffd14c05, base path is set to: null +16:40:09.502 [XNIO-1 task-2] x8Va2pIKSPWlbDdfQDdC3g DEBUG com.networknt.schema.TypeValidator debug - validate( "ffd14c05", "ffd14c05", serviceId) +16:40:09.503 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ffd14c05 +16:40:09.510 [XNIO-1 task-2] NEG08ytOTrOaIATyWKGahg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.510 [XNIO-1 task-2] NEG08ytOTrOaIATyWKGahg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.510 [XNIO-1 task-2] NEG08ytOTrOaIATyWKGahg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.519 [XNIO-1 task-2] IHG8dm_3RmybmTtHGohjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.519 [XNIO-1 task-2] IHG8dm_3RmybmTtHGohjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.519 [XNIO-1 task-2] IHG8dm_3RmybmTtHGohjSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.520 [XNIO-1 task-2] IHG8dm_3RmybmTtHGohjSQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.524 [XNIO-1 task-2] emW4ul3YSOKLTVNioFQweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.524 [XNIO-1 task-2] emW4ul3YSOKLTVNioFQweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.524 [XNIO-1 task-2] emW4ul3YSOKLTVNioFQweA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.524 [XNIO-1 task-2] emW4ul3YSOKLTVNioFQweA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.530 [XNIO-1 task-2] nog1Za76QhGU2RaxViHE6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e0c750f +16:40:09.530 [XNIO-1 task-2] nog1Za76QhGU2RaxViHE6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.530 [XNIO-1 task-2] nog1Za76QhGU2RaxViHE6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.530 [XNIO-1 task-2] nog1Za76QhGU2RaxViHE6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e0c750f +16:40:09.532 [XNIO-1 task-2] iCPOxxPvSN6LCnw8tMkgpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.532 [XNIO-1 task-2] iCPOxxPvSN6LCnw8tMkgpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.532 [XNIO-1 task-2] iCPOxxPvSN6LCnw8tMkgpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.533 [XNIO-1 task-2] iCPOxxPvSN6LCnw8tMkgpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.537 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG com.networknt.schema.TypeValidator debug - validate( "f5d83f42-7213-400c-806c-9f5755b3", {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.538 [XNIO-1 task-2] Wu-aQBagSXuSA8FMTuUPsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dd4c8fb8","serviceName":"f5d83f42-7213-400c-806c-9f5755b3","serviceDesc":"c567c577-d361-4ead-8ff0-b46b268da35f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.543 [XNIO-1 task-2] 1xDLwHo8Qdq7IQ33m8cPdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.544 [XNIO-1 task-2] 1xDLwHo8Qdq7IQ33m8cPdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.544 [XNIO-1 task-2] 1xDLwHo8Qdq7IQ33m8cPdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.544 [XNIO-1 task-2] 1xDLwHo8Qdq7IQ33m8cPdw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.549 [XNIO-1 task-2] 21HfcrOsQkGw_K_RpL0vkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eff2e102, base path is set to: null +16:40:09.549 [XNIO-1 task-2] 21HfcrOsQkGw_K_RpL0vkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.549 [XNIO-1 task-2] 21HfcrOsQkGw_K_RpL0vkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.549 [XNIO-1 task-2] 21HfcrOsQkGw_K_RpL0vkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/eff2e102, base path is set to: null +16:40:09.549 [XNIO-1 task-2] 21HfcrOsQkGw_K_RpL0vkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eff2e102", "eff2e102", serviceId) +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG com.networknt.schema.TypeValidator debug - validate( "a0e8a33f-42f0-4119-84c7-938eb38b0df4", {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG com.networknt.schema.TypeValidator debug - validate( "48eab587", {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.551 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.552 [XNIO-1 task-2] ULFptuSnSNGGXDB71I1i2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"48eab587","serviceName":"50dde008-f6be-4f1c-bd52-f80033f2","serviceDesc":"a0e8a33f-42f0-4119-84c7-938eb38b0df4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.557 [XNIO-1 task-2] hrY6ODF4RCqGdmYLJs4V5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eff2e102 +16:40:09.557 [XNIO-1 task-2] hrY6ODF4RCqGdmYLJs4V5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.557 [XNIO-1 task-2] hrY6ODF4RCqGdmYLJs4V5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.557 [XNIO-1 task-2] hrY6ODF4RCqGdmYLJs4V5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/eff2e102 +16:40:09.558 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:eff2e102 +16:40:09.564 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.564 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.564 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.565 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.565 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.565 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.565 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.565 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG com.networknt.schema.TypeValidator debug - validate( "36cfc7dc-54f1-4385-9730-d6ba0362", {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.565 [XNIO-1 task-2] dI5_Mv2ASsq6mXbIH2nojw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.570 [XNIO-1 task-2] 6zw1yT7OQWSAPB1rk9wvPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.570 [XNIO-1 task-2] 6zw1yT7OQWSAPB1rk9wvPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.570 [XNIO-1 task-2] 6zw1yT7OQWSAPB1rk9wvPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.571 [XNIO-1 task-2] 6zw1yT7OQWSAPB1rk9wvPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.574 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.574 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.574 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.575 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.575 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.575 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.575 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.575 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG com.networknt.schema.TypeValidator debug - validate( "994eaac9-fd52-42c8-be95-2efb86f9", {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.575 [XNIO-1 task-2] 9FOIKOTyTBKEda9DgJoQmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6e0c750f","serviceName":"994eaac9-fd52-42c8-be95-2efb86f9","serviceDesc":"98ea9e4d-b3be-4334-a18a-006640e5c675","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.580 [XNIO-1 task-2] _C89xg0mScCqFOQVGBdSfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dd4c8fb8, base path is set to: null +16:40:09.580 [XNIO-1 task-2] _C89xg0mScCqFOQVGBdSfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.580 [XNIO-1 task-2] _C89xg0mScCqFOQVGBdSfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.580 [XNIO-1 task-2] _C89xg0mScCqFOQVGBdSfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dd4c8fb8, base path is set to: null +16:40:09.581 [XNIO-1 task-2] _C89xg0mScCqFOQVGBdSfA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4c8fb8", "dd4c8fb8", serviceId) +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e21f9f97-0945-4c46-beb6-97837d9c3741", {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG com.networknt.schema.TypeValidator debug - validate( "85d0ef39", {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.585 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.586 [XNIO-1 task-2] NUtEUdnGQgOVTLarAte52Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"85d0ef39","serviceName":"36cfc7dc-54f1-4385-9730-d6ba0362","serviceDesc":"e21f9f97-0945-4c46-beb6-97837d9c3741","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.591 [XNIO-1 task-2] JIXp11n8RvG0-o5nacKCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.591 [XNIO-1 task-2] JIXp11n8RvG0-o5nacKCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.591 [XNIO-1 task-2] JIXp11n8RvG0-o5nacKCXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.596 [XNIO-1 task-2] qDivsrmoQ5qc6-Fwzz9eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.597 [XNIO-1 task-2] qDivsrmoQ5qc6-Fwzz9eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.597 [XNIO-1 task-2] qDivsrmoQ5qc6-Fwzz9eKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.604 [XNIO-1 task-2] OeyelcVMTRO9Hn7XXWjWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48eab587 +16:40:09.604 [XNIO-1 task-2] OeyelcVMTRO9Hn7XXWjWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.604 [XNIO-1 task-2] OeyelcVMTRO9Hn7XXWjWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.604 [XNIO-1 task-2] OeyelcVMTRO9Hn7XXWjWYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48eab587 +16:40:09.606 [XNIO-1 task-2] 7y4gbefeQiGTaPA9ypp7gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/85d0ef39, base path is set to: null +16:40:09.606 [XNIO-1 task-2] 7y4gbefeQiGTaPA9ypp7gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.606 [XNIO-1 task-2] 7y4gbefeQiGTaPA9ypp7gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.606 [XNIO-1 task-2] 7y4gbefeQiGTaPA9ypp7gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/85d0ef39, base path is set to: null +16:40:09.606 [XNIO-1 task-2] 7y4gbefeQiGTaPA9ypp7gg DEBUG com.networknt.schema.TypeValidator debug - validate( "85d0ef39", "85d0ef39", serviceId) +16:40:09.613 [XNIO-1 task-2] peqqxhPwQyWbRq1E4CO2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e0c750f +16:40:09.613 [XNIO-1 task-2] peqqxhPwQyWbRq1E4CO2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.613 [XNIO-1 task-2] peqqxhPwQyWbRq1E4CO2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.613 [XNIO-1 task-2] peqqxhPwQyWbRq1E4CO2Sw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6e0c750f +16:40:09.616 [XNIO-1 task-2] HTjxYaFITOuS-Ebj0J9U9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/48eab587, base path is set to: null +16:40:09.616 [XNIO-1 task-2] HTjxYaFITOuS-Ebj0J9U9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.616 [XNIO-1 task-2] HTjxYaFITOuS-Ebj0J9U9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.616 [XNIO-1 task-2] HTjxYaFITOuS-Ebj0J9U9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/48eab587, base path is set to: null +16:40:09.616 [XNIO-1 task-2] HTjxYaFITOuS-Ebj0J9U9A DEBUG com.networknt.schema.TypeValidator debug - validate( "48eab587", "48eab587", serviceId) +16:40:09.624 [XNIO-1 task-2] _pzKUNS9RO2cgMNB0cwC-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.624 [XNIO-1 task-2] _pzKUNS9RO2cgMNB0cwC-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.624 [XNIO-1 task-2] _pzKUNS9RO2cgMNB0cwC-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.630 [XNIO-1 task-2] 4GhgBFxKTQ2aca5s-S04xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.630 [XNIO-1 task-2] 4GhgBFxKTQ2aca5s-S04xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.630 [XNIO-1 task-2] 4GhgBFxKTQ2aca5s-S04xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.636 [XNIO-1 task-2] cbNcKK6sQzG6Cd36YVDXIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.636 [XNIO-1 task-2] cbNcKK6sQzG6Cd36YVDXIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.636 [XNIO-1 task-2] cbNcKK6sQzG6Cd36YVDXIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.643 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.643 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.643 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.643 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.644 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.644 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG com.networknt.schema.TypeValidator debug - validate( "918480db-4ec4-461c-a9fd-0cc91b002d92", {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.644 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG com.networknt.schema.TypeValidator debug - validate( "01a1b023", {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.644 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.644 [XNIO-1 task-2] ttPXnScXRqa9x1C1fFXNWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"01a1b023","serviceName":"a653c429-42e5-4200-8ae0-8c1c6aae","serviceDesc":"918480db-4ec4-461c-a9fd-0cc91b002d92","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.649 [XNIO-1 task-2] Ta80hRJaT3ujJ6_n0on3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.650 [XNIO-1 task-2] Ta80hRJaT3ujJ6_n0on3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.650 [XNIO-1 task-2] Ta80hRJaT3ujJ6_n0on3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.650 [XNIO-1 task-2] Ta80hRJaT3ujJ6_n0on3NQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.654 [XNIO-1 task-2] SF7PkLPnT6CcRFVMX_kPBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.654 [XNIO-1 task-2] SF7PkLPnT6CcRFVMX_kPBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.654 [XNIO-1 task-2] SF7PkLPnT6CcRFVMX_kPBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG com.networknt.schema.TypeValidator debug - validate( "43eb1037-fd51-43e2-9ac8-c01210848687", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG com.networknt.schema.TypeValidator debug - validate( "5f1d84a7", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.661 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.662 [XNIO-1 task-2] g6-f1hC9QqmIRa5uAypywA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.667 [XNIO-1 task-2] zhfCxeEqREe240vQ8x9jpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.667 [XNIO-1 task-2] zhfCxeEqREe240vQ8x9jpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.667 [XNIO-1 task-2] zhfCxeEqREe240vQ8x9jpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.667 [XNIO-1 task-2] zhfCxeEqREe240vQ8x9jpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.671 [XNIO-1 task-2] 09wZ1OerSX-IPafy2GKvVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.671 [XNIO-1 task-2] 09wZ1OerSX-IPafy2GKvVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.671 [XNIO-1 task-2] 09wZ1OerSX-IPafy2GKvVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.672 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3fb16b6d +16:40:09.676 [XNIO-1 task-2] R4s_9AJkQyOZPKEuQ7wrbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6e0c750f, base path is set to: null +16:40:09.676 [XNIO-1 task-2] R4s_9AJkQyOZPKEuQ7wrbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.676 [XNIO-1 task-2] R4s_9AJkQyOZPKEuQ7wrbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.676 [XNIO-1 task-2] R4s_9AJkQyOZPKEuQ7wrbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6e0c750f, base path is set to: null +16:40:09.676 [XNIO-1 task-2] R4s_9AJkQyOZPKEuQ7wrbg DEBUG com.networknt.schema.TypeValidator debug - validate( "6e0c750f", "6e0c750f", serviceId) +16:40:09.702 [XNIO-1 task-2] jhEgkreDQ2mW3LNML2x9dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.702 [XNIO-1 task-2] jhEgkreDQ2mW3LNML2x9dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.702 [XNIO-1 task-2] jhEgkreDQ2mW3LNML2x9dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.703 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5f9a732 +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ce70ce3-262a-47fd-92a8-5b6b3370", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.712 [XNIO-1 task-2] UyHnH4_6R-iSXr29ZY_cNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.720 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.720 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.720 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.720 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.720 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.720 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.720 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.721 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ca77b26-726b-4814-856b-dfccdef6", {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.721 [XNIO-1 task-2] OpJ65Ir5Sge_ZYHi7GQhWw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3fb16b6d","serviceName":"7ca77b26-726b-4814-856b-dfccdef6","serviceDesc":"299b592e-0e1a-485f-913f-0ea01d6e2629","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.721 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3fb16b6d +16:40:09.730 [XNIO-1 task-2] dsTarXj5QIKQfn7fiFONeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34b1ebcb, base path is set to: null +16:40:09.730 [XNIO-1 task-2] dsTarXj5QIKQfn7fiFONeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.730 [XNIO-1 task-2] dsTarXj5QIKQfn7fiFONeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.731 [XNIO-1 task-2] dsTarXj5QIKQfn7fiFONeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34b1ebcb, base path is set to: null +16:40:09.731 [XNIO-1 task-2] dsTarXj5QIKQfn7fiFONeg DEBUG com.networknt.schema.TypeValidator debug - validate( "34b1ebcb", "34b1ebcb", serviceId) +16:40:09.732 [XNIO-1 task-2] WttSAgZwS5GSpKWBelG4PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.733 [XNIO-1 task-2] WttSAgZwS5GSpKWBelG4PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.733 [XNIO-1 task-2] WttSAgZwS5GSpKWBelG4PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.733 [XNIO-1 task-2] WttSAgZwS5GSpKWBelG4PA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.739 [XNIO-1 task-2] YHpLn2yBRO6eQPKcYIj4ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.739 [XNIO-1 task-2] YHpLn2yBRO6eQPKcYIj4ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.739 [XNIO-1 task-2] YHpLn2yBRO6eQPKcYIj4ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.740 [XNIO-1 task-2] YHpLn2yBRO6eQPKcYIj4ew DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.744 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG com.networknt.schema.TypeValidator debug - validate( "64b84e15-42d5-4803-a354-6205bf519f90", {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG com.networknt.schema.TypeValidator debug - validate( "c5f9a732", {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.745 [XNIO-1 task-2] dM4n91RHSIyezKTyTsEVGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5f9a732","serviceName":"871385ee-b702-4425-beb8-539760b6","serviceDesc":"64b84e15-42d5-4803-a354-6205bf519f90","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.747 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5f9a732 +16:40:09.754 [XNIO-1 task-2] x6Rms0aEQx-LsjwQlDi3JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd4c8fb8 +16:40:09.754 [XNIO-1 task-2] x6Rms0aEQx-LsjwQlDi3JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.754 [XNIO-1 task-2] x6Rms0aEQx-LsjwQlDi3JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.755 [XNIO-1 task-2] x6Rms0aEQx-LsjwQlDi3JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dd4c8fb8 +16:40:09.756 [XNIO-1 task-2] ykFpZmBcQRGE-NdDFKfXPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dd4c8fb8, base path is set to: null +16:40:09.756 [XNIO-1 task-2] ykFpZmBcQRGE-NdDFKfXPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.756 [XNIO-1 task-2] ykFpZmBcQRGE-NdDFKfXPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.757 [XNIO-1 task-2] ykFpZmBcQRGE-NdDFKfXPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dd4c8fb8, base path is set to: null +16:40:09.757 [XNIO-1 task-2] ykFpZmBcQRGE-NdDFKfXPA DEBUG com.networknt.schema.TypeValidator debug - validate( "dd4c8fb8", "dd4c8fb8", serviceId) +16:40:09.763 [XNIO-1 task-2] PA3GoXQSRn-iwQqDfkTfYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.763 [XNIO-1 task-2] PA3GoXQSRn-iwQqDfkTfYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.763 [XNIO-1 task-2] PA3GoXQSRn-iwQqDfkTfYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.764 [XNIO-1 task-2] PA3GoXQSRn-iwQqDfkTfYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.771 [XNIO-1 task-2] bjQouBI3QYuAxXTBKK-WmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/04dbbee2 +16:40:09.771 [XNIO-1 task-2] bjQouBI3QYuAxXTBKK-WmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.771 [XNIO-1 task-2] bjQouBI3QYuAxXTBKK-WmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.771 [XNIO-1 task-2] bjQouBI3QYuAxXTBKK-WmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/04dbbee2 +16:40:09.781 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG com.networknt.schema.TypeValidator debug - validate( "2d796851-dc01-4283-bcfb-773f29f7", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.782 [XNIO-1 task-2] pEkWXm_wSreu6wULNape1g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.788 [XNIO-1 task-2] mYytISdTRU-9Zp_7T1eeBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.788 [XNIO-1 task-2] mYytISdTRU-9Zp_7T1eeBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.788 [XNIO-1 task-2] mYytISdTRU-9Zp_7T1eeBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.788 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa512db0 +16:40:09.789 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa512db0 +16:40:09.796 [XNIO-1 task-2] kNukSQECSSCMiVFVES1Vzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.796 [XNIO-1 task-2] kNukSQECSSCMiVFVES1Vzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.796 [XNIO-1 task-2] kNukSQECSSCMiVFVES1Vzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.796 [XNIO-1 task-2] kNukSQECSSCMiVFVES1Vzg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.801 [XNIO-1 task-2] WGGig8KjR9-yBRin-I0kNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.801 [XNIO-1 task-2] WGGig8KjR9-yBRin-I0kNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.801 [XNIO-1 task-2] WGGig8KjR9-yBRin-I0kNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.801 [XNIO-1 task-2] WGGig8KjR9-yBRin-I0kNw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.805 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:16c4145a-84a1-4837-b0ea-dd037f7cb0d6 +16:40:09.813 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.814 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.814 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.815 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.815 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.815 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.815 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.815 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG com.networknt.schema.TypeValidator debug - validate( "eb53a1a1-296f-45a0-a431-9dadc457", {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.815 [XNIO-1 task-2] MDw3VznzRdGk0MTsaGDnqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.823 [XNIO-1 task-2] A8KEC-r7Sjm0Z8v0grDpMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.823 [XNIO-1 task-2] A8KEC-r7Sjm0Z8v0grDpMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.823 [XNIO-1 task-2] A8KEC-r7Sjm0Z8v0grDpMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.831 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.831 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.832 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.832 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.832 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.832 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.832 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.832 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG com.networknt.schema.TypeValidator debug - validate( "2d796851-dc01-4283-bcfb-773f29f7", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.832 [XNIO-1 task-2] jRZwa2rySIG5vCVBuZlDCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.838 [XNIO-1 task-2] mrX9ilzBRAuwwsOM1DGl9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb31d19e, base path is set to: null +16:40:09.838 [XNIO-1 task-2] mrX9ilzBRAuwwsOM1DGl9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.839 [XNIO-1 task-2] mrX9ilzBRAuwwsOM1DGl9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.839 [XNIO-1 task-2] mrX9ilzBRAuwwsOM1DGl9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb31d19e, base path is set to: null +16:40:09.839 [XNIO-1 task-2] mrX9ilzBRAuwwsOM1DGl9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "cb31d19e", "cb31d19e", serviceId) +16:40:09.841 [XNIO-1 task-2] mD9lrObBQi-LpsQvzXx5Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.841 [XNIO-1 task-2] mD9lrObBQi-LpsQvzXx5Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.841 [XNIO-1 task-2] mD9lrObBQi-LpsQvzXx5Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.853 [XNIO-1 task-2] RwUj36u-RrCAR32e-JihtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.853 [XNIO-1 task-2] RwUj36u-RrCAR32e-JihtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.853 [XNIO-1 task-2] RwUj36u-RrCAR32e-JihtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.854 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:e865930b +16:40:09.859 [XNIO-1 task-2] 9kd1dXB1Qu6BZJgEabCWww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.860 [XNIO-1 task-2] 9kd1dXB1Qu6BZJgEabCWww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.860 [XNIO-1 task-2] 9kd1dXB1Qu6BZJgEabCWww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.865 [XNIO-1 task-2] IygiUxhNQ9aSpIRC70Q6xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb31d19e, base path is set to: null +16:40:09.865 [XNIO-1 task-2] IygiUxhNQ9aSpIRC70Q6xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.865 [XNIO-1 task-2] IygiUxhNQ9aSpIRC70Q6xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.866 [XNIO-1 task-2] IygiUxhNQ9aSpIRC70Q6xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cb31d19e, base path is set to: null +16:40:09.866 [XNIO-1 task-2] IygiUxhNQ9aSpIRC70Q6xg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb31d19e", "cb31d19e", serviceId) +16:40:09.875 [XNIO-1 task-2] iqCyWlNJSfy9nqmOcEOy3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.876 [XNIO-1 task-2] iqCyWlNJSfy9nqmOcEOy3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.876 [XNIO-1 task-2] iqCyWlNJSfy9nqmOcEOy3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.876 [XNIO-1 task-2] iqCyWlNJSfy9nqmOcEOy3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.903 [XNIO-1 task-2] YYB1FUBQQja7z9hakjY0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.903 [XNIO-1 task-2] YYB1FUBQQja7z9hakjY0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.904 [XNIO-1 task-2] YYB1FUBQQja7z9hakjY0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.904 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6c379a84 +16:40:09.911 [XNIO-1 task-2] WUyEH3rTQhKSwFREl2kN9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f959772, base path is set to: null +16:40:09.911 [XNIO-1 task-2] WUyEH3rTQhKSwFREl2kN9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.911 [XNIO-1 task-2] WUyEH3rTQhKSwFREl2kN9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.911 [XNIO-1 task-2] WUyEH3rTQhKSwFREl2kN9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f959772, base path is set to: null +16:40:09.912 [XNIO-1 task-2] WUyEH3rTQhKSwFREl2kN9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1f959772", "1f959772", serviceId) +16:40:09.915 [XNIO-1 task-2] -XT1oFv7Twe7ET-QmISbwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d6af91a2 +16:40:09.915 [XNIO-1 task-2] -XT1oFv7Twe7ET-QmISbwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.915 [XNIO-1 task-2] -XT1oFv7Twe7ET-QmISbwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.915 [XNIO-1 task-2] -XT1oFv7Twe7ET-QmISbwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d6af91a2 +16:40:09.923 [XNIO-1 task-2] y0tgoBI7QI-zaesNr7ZnJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f959772, base path is set to: null +16:40:09.924 [XNIO-1 task-2] y0tgoBI7QI-zaesNr7ZnJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.924 [XNIO-1 task-2] y0tgoBI7QI-zaesNr7ZnJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.924 [XNIO-1 task-2] y0tgoBI7QI-zaesNr7ZnJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1f959772, base path is set to: null +16:40:09.925 [XNIO-1 task-2] y0tgoBI7QI-zaesNr7ZnJA DEBUG com.networknt.schema.TypeValidator debug - validate( "1f959772", "1f959772", serviceId) +16:40:09.928 [XNIO-1 task-2] h2Bf-GrGQXCn_ZvUroNX2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.928 [XNIO-1 task-2] h2Bf-GrGQXCn_ZvUroNX2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.928 [XNIO-1 task-2] h2Bf-GrGQXCn_ZvUroNX2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.928 [XNIO-1 task-2] h2Bf-GrGQXCn_ZvUroNX2g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.937 [XNIO-1 task-2] EbMKDpetRrm_ZpCV_IQRPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1f959772 +16:40:09.937 [XNIO-1 task-2] EbMKDpetRrm_ZpCV_IQRPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.937 [XNIO-1 task-2] EbMKDpetRrm_ZpCV_IQRPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.937 [XNIO-1 task-2] EbMKDpetRrm_ZpCV_IQRPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1f959772 +16:40:09.944 [XNIO-1 task-2] Y6e9GYPFS4SsHCPdez3FCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3fb16b6d, base path is set to: null +16:40:09.944 [XNIO-1 task-2] Y6e9GYPFS4SsHCPdez3FCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.944 [XNIO-1 task-2] Y6e9GYPFS4SsHCPdez3FCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.944 [XNIO-1 task-2] Y6e9GYPFS4SsHCPdez3FCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3fb16b6d, base path is set to: null +16:40:09.944 [XNIO-1 task-2] Y6e9GYPFS4SsHCPdez3FCg DEBUG com.networknt.schema.TypeValidator debug - validate( "3fb16b6d", "3fb16b6d", serviceId) +16:40:09.948 [XNIO-1 task-2] A6wCyap6R4m0033nDKbqzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/01a1b023 +16:40:09.948 [XNIO-1 task-2] A6wCyap6R4m0033nDKbqzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.948 [XNIO-1 task-2] A6wCyap6R4m0033nDKbqzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.948 [XNIO-1 task-2] A6wCyap6R4m0033nDKbqzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/01a1b023 +16:40:09.950 [XNIO-1 task-2] 0VdW3tj8SbWV22ozDG3eIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5f1d84a7, base path is set to: null +16:40:09.950 [XNIO-1 task-2] 0VdW3tj8SbWV22ozDG3eIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.951 [XNIO-1 task-2] 0VdW3tj8SbWV22ozDG3eIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.951 [XNIO-1 task-2] 0VdW3tj8SbWV22ozDG3eIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5f1d84a7, base path is set to: null +16:40:09.951 [XNIO-1 task-2] 0VdW3tj8SbWV22ozDG3eIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f1d84a7", "5f1d84a7", serviceId) +16:40:09.952 [XNIO-1 task-2] 1OG_py0dTAORxzgEoHO-iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5f1d84a7 +16:40:09.953 [XNIO-1 task-2] 1OG_py0dTAORxzgEoHO-iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.953 [XNIO-1 task-2] 1OG_py0dTAORxzgEoHO-iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:09.953 [XNIO-1 task-2] 1OG_py0dTAORxzgEoHO-iQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5f1d84a7 +16:40:09.954 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.954 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.955 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.955 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.955 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.955 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.955 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:09.955 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ce70ce3-262a-47fd-92a8-5b6b3370", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:09.955 [XNIO-1 task-2] COpDtgHXQuilOgTreJs3Dw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.961 [XNIO-1 task-2] vEc6av4uQv6o6RELbVnoog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5f9a732, base path is set to: null +16:40:09.961 [XNIO-1 task-2] vEc6av4uQv6o6RELbVnoog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.961 [XNIO-1 task-2] vEc6av4uQv6o6RELbVnoog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.961 [XNIO-1 task-2] vEc6av4uQv6o6RELbVnoog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5f9a732, base path is set to: null +16:40:09.961 [XNIO-1 task-2] vEc6av4uQv6o6RELbVnoog DEBUG com.networknt.schema.TypeValidator debug - validate( "c5f9a732", "c5f9a732", serviceId) +16:40:09.962 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c5f9a732 +16:40:09.969 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.969 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.970 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.970 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.970 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:09.970 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "20c140f9-7057-4d26-9842-ee5f900152e4", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:09.970 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "34b1ebcb", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:09.970 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:09.970 [XNIO-1 task-2] AXeVN5pATAS5p1cgFyn1UQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"34b1ebcb","serviceName":"2d796851-dc01-4283-bcfb-773f29f7","serviceDesc":"20c140f9-7057-4d26-9842-ee5f900152e4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:09.978 [XNIO-1 task-2] sZjQ_R4bRgain8hG92NMKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.978 [XNIO-1 task-2] sZjQ_R4bRgain8hG92NMKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.978 [XNIO-1 task-2] sZjQ_R4bRgain8hG92NMKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:09.979 [XNIO-1 task-2] sZjQ_R4bRgain8hG92NMKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.985 [XNIO-1 task-2] sZIGs_IYR26usSPgPW_Yuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34b1ebcb, base path is set to: null +16:40:09.985 [XNIO-1 task-2] sZIGs_IYR26usSPgPW_Yuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:09.985 [XNIO-1 task-2] sZIGs_IYR26usSPgPW_Yuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:09.985 [XNIO-1 task-2] sZIGs_IYR26usSPgPW_Yuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34b1ebcb, base path is set to: null +16:40:09.985 [XNIO-1 task-2] sZIGs_IYR26usSPgPW_Yuw DEBUG com.networknt.schema.TypeValidator debug - validate( "34b1ebcb", "34b1ebcb", serviceId) +16:40:09.993 [XNIO-1 task-2] x-OAwLWCR3ajFJtyQyOIfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.993 [XNIO-1 task-2] x-OAwLWCR3ajFJtyQyOIfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.993 [XNIO-1 task-2] x-OAwLWCR3ajFJtyQyOIfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:09.993 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:037f275a +16:40:10.000 [XNIO-1 task-2] iwp3hH5YTSybqOPA7T6j6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7134a462, base path is set to: null +16:40:10.000 [XNIO-1 task-2] iwp3hH5YTSybqOPA7T6j6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.000 [XNIO-1 task-2] iwp3hH5YTSybqOPA7T6j6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.000 [XNIO-1 task-2] iwp3hH5YTSybqOPA7T6j6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7134a462, base path is set to: null +16:40:10.000 [XNIO-1 task-2] iwp3hH5YTSybqOPA7T6j6A DEBUG com.networknt.schema.TypeValidator debug - validate( "7134a462", "7134a462", serviceId) +16:40:10.004 [XNIO-1 task-2] 5uHpjRFITiWgyzfcieutvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.004 [XNIO-1 task-2] 5uHpjRFITiWgyzfcieutvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.004 [XNIO-1 task-2] 5uHpjRFITiWgyzfcieutvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.017 [XNIO-1 task-2] ilUWXXmzRaORyVUswUhaKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/037f275a +16:40:10.017 [XNIO-1 task-2] ilUWXXmzRaORyVUswUhaKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.017 [XNIO-1 task-2] ilUWXXmzRaORyVUswUhaKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.019 [XNIO-1 task-2] ilUWXXmzRaORyVUswUhaKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/037f275a +16:40:10.021 [XNIO-1 task-2] 7g0xBrM9RwWcpeex-eNruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.021 [XNIO-1 task-2] 7g0xBrM9RwWcpeex-eNruA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.021 [XNIO-1 task-2] 7g0xBrM9RwWcpeex-eNruA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.028 [XNIO-1 task-2] 4Ez2MIcITAGNN1ZNG6vitQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7134a462, base path is set to: null +16:40:10.029 [XNIO-1 task-2] 4Ez2MIcITAGNN1ZNG6vitQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.029 [XNIO-1 task-2] 4Ez2MIcITAGNN1ZNG6vitQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.029 [XNIO-1 task-2] 4Ez2MIcITAGNN1ZNG6vitQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7134a462, base path is set to: null +16:40:10.029 [XNIO-1 task-2] 4Ez2MIcITAGNN1ZNG6vitQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7134a462", "7134a462", serviceId) +16:40:10.032 [XNIO-1 task-2] OXJvTWoCSLexLbgJX9jHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/037f275a +16:40:10.032 [XNIO-1 task-2] OXJvTWoCSLexLbgJX9jHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.032 [XNIO-1 task-2] OXJvTWoCSLexLbgJX9jHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.032 [XNIO-1 task-2] OXJvTWoCSLexLbgJX9jHug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/037f275a +16:40:10.032 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:037f275a +16:40:10.039 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.039 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.039 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.040 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.040 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.040 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.040 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.040 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG com.networknt.schema.TypeValidator debug - validate( "051f3ea6-d505-4ab5-b9cd-d6b96ffa", {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.040 [XNIO-1 task-2] 4GLqphtFT92AImLafy319g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.049 [XNIO-1 task-2] KaJB9VaIQzCGhYv9EOmDyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.049 [XNIO-1 task-2] KaJB9VaIQzCGhYv9EOmDyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.049 [XNIO-1 task-2] KaJB9VaIQzCGhYv9EOmDyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.058 [XNIO-1 task-2] GnqjUjq4SU2BGJIxtWtVUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.058 [XNIO-1 task-2] GnqjUjq4SU2BGJIxtWtVUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.058 [XNIO-1 task-2] GnqjUjq4SU2BGJIxtWtVUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.060 [XNIO-1 task-2] GnqjUjq4SU2BGJIxtWtVUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.066 [XNIO-1 task-2] ZgNMCqX2R52LeZfxG9O-tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01a1b023, base path is set to: null +16:40:10.066 [XNIO-1 task-2] ZgNMCqX2R52LeZfxG9O-tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.066 [XNIO-1 task-2] ZgNMCqX2R52LeZfxG9O-tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.066 [XNIO-1 task-2] ZgNMCqX2R52LeZfxG9O-tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/01a1b023, base path is set to: null +16:40:10.066 [XNIO-1 task-2] ZgNMCqX2R52LeZfxG9O-tg DEBUG com.networknt.schema.TypeValidator debug - validate( "01a1b023", "01a1b023", serviceId) +16:40:10.074 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4dd95486-ff31-4fd1-9c4e-98edd5df07f6", {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7134a462", {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.075 [XNIO-1 task-2] wGj7-XEtTVW9qMfIXbUQIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7134a462","serviceName":"051f3ea6-d505-4ab5-b9cd-d6b96ffa","serviceDesc":"4dd95486-ff31-4fd1-9c4e-98edd5df07f6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.081 [XNIO-1 task-2] gmcW7g0sQwCgqg_5nI1wRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa512db0 +16:40:10.081 [XNIO-1 task-2] gmcW7g0sQwCgqg_5nI1wRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.081 [XNIO-1 task-2] gmcW7g0sQwCgqg_5nI1wRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.081 [XNIO-1 task-2] gmcW7g0sQwCgqg_5nI1wRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa512db0 +16:40:10.083 [XNIO-1 task-2] B2g8q7DPTI-p-qGHLOd1dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa512db0, base path is set to: null +16:40:10.083 [XNIO-1 task-2] B2g8q7DPTI-p-qGHLOd1dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.083 [XNIO-1 task-2] B2g8q7DPTI-p-qGHLOd1dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.083 [XNIO-1 task-2] B2g8q7DPTI-p-qGHLOd1dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fa512db0, base path is set to: null +16:40:10.084 [XNIO-1 task-2] B2g8q7DPTI-p-qGHLOd1dw DEBUG com.networknt.schema.TypeValidator debug - validate( "fa512db0", "fa512db0", serviceId) +16:40:10.084 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fa512db0 +16:40:10.093 [XNIO-1 task-2] YPwqFttUSPGCiiyUJRmHBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bed2ea6 +16:40:10.093 [XNIO-1 task-2] YPwqFttUSPGCiiyUJRmHBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.093 [XNIO-1 task-2] YPwqFttUSPGCiiyUJRmHBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.093 [XNIO-1 task-2] YPwqFttUSPGCiiyUJRmHBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bed2ea6 +16:40:10.095 [XNIO-1 task-2] 28dKC4rMQYOu2XaspJioWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bed2ea6, base path is set to: null +16:40:10.095 [XNIO-1 task-2] 28dKC4rMQYOu2XaspJioWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.095 [XNIO-1 task-2] 28dKC4rMQYOu2XaspJioWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.095 [XNIO-1 task-2] 28dKC4rMQYOu2XaspJioWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bed2ea6, base path is set to: null +16:40:10.095 [XNIO-1 task-2] 28dKC4rMQYOu2XaspJioWA DEBUG com.networknt.schema.TypeValidator debug - validate( "2bed2ea6", "2bed2ea6", serviceId) +16:40:10.098 [XNIO-1 task-2] naHvAk4JTcWs1PtMWuy06w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.098 [XNIO-1 task-2] naHvAk4JTcWs1PtMWuy06w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.098 [XNIO-1 task-2] naHvAk4JTcWs1PtMWuy06w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.105 [XNIO-1 task-2] M55L4RjIRgGZij6RGgrKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6c379a84 +16:40:10.105 [XNIO-1 task-2] M55L4RjIRgGZij6RGgrKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.105 [XNIO-1 task-2] M55L4RjIRgGZij6RGgrKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.106 [XNIO-1 task-2] M55L4RjIRgGZij6RGgrKhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6c379a84 +16:40:10.106 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6c379a84 +16:40:10.112 [XNIO-1 task-2] mkfw64hWQMawELOfXOIebA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.112 [XNIO-1 task-2] mkfw64hWQMawELOfXOIebA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.112 [XNIO-1 task-2] mkfw64hWQMawELOfXOIebA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.119 [XNIO-1 task-2] D22zpHyKR4-ded0TTCmXGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e865930b, base path is set to: null +16:40:10.119 [XNIO-1 task-2] D22zpHyKR4-ded0TTCmXGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.119 [XNIO-1 task-2] D22zpHyKR4-ded0TTCmXGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.119 [XNIO-1 task-2] D22zpHyKR4-ded0TTCmXGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e865930b, base path is set to: null +16:40:10.120 [XNIO-1 task-2] D22zpHyKR4-ded0TTCmXGg DEBUG com.networknt.schema.TypeValidator debug - validate( "e865930b", "e865930b", serviceId) +16:40:10.122 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.123 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.124 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.124 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.124 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.124 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG com.networknt.schema.TypeValidator debug - validate( "a73925b0-e9c2-496b-824f-2646969eb19c", {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.124 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG com.networknt.schema.TypeValidator debug - validate( "2bed2ea6", {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.124 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.124 [XNIO-1 task-2] I3sAsESISkG8kMjQs6cFhg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2bed2ea6","serviceName":"eb53a1a1-296f-45a0-a431-9dadc457","serviceDesc":"a73925b0-e9c2-496b-824f-2646969eb19c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.131 [XNIO-1 task-2] BnaSR0KtSrGK12wF0lMXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e865930b +16:40:10.131 [XNIO-1 task-2] BnaSR0KtSrGK12wF0lMXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.131 [XNIO-1 task-2] BnaSR0KtSrGK12wF0lMXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.131 [XNIO-1 task-2] BnaSR0KtSrGK12wF0lMXbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e865930b +16:40:10.131 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e865930b +16:40:10.139 [XNIO-1 task-2] BmVeGjypTKephd0x7iGH-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.139 [XNIO-1 task-2] BmVeGjypTKephd0x7iGH-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.140 [XNIO-1 task-2] BmVeGjypTKephd0x7iGH-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.140 [XNIO-1 task-2] BmVeGjypTKephd0x7iGH-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.144 [XNIO-1 task-2] jwrTvYp0QaCKNWsw7wIxbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.144 [XNIO-1 task-2] jwrTvYp0QaCKNWsw7wIxbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.144 [XNIO-1 task-2] jwrTvYp0QaCKNWsw7wIxbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.150 [XNIO-1 task-2] HzmQmfGHSpWHU5W1SV6Dlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c739c0e3, base path is set to: null +16:40:10.150 [XNIO-1 task-2] HzmQmfGHSpWHU5W1SV6Dlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.150 [XNIO-1 task-2] HzmQmfGHSpWHU5W1SV6Dlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.151 [XNIO-1 task-2] HzmQmfGHSpWHU5W1SV6Dlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c739c0e3, base path is set to: null +16:40:10.151 [XNIO-1 task-2] HzmQmfGHSpWHU5W1SV6Dlg DEBUG com.networknt.schema.TypeValidator debug - validate( "c739c0e3", "c739c0e3", serviceId) +16:40:10.160 [XNIO-1 task-2] wmt_RgooSP2uGrfzFUj8-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bed2ea6 +16:40:10.160 [XNIO-1 task-2] wmt_RgooSP2uGrfzFUj8-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.160 [XNIO-1 task-2] wmt_RgooSP2uGrfzFUj8-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.161 [XNIO-1 task-2] wmt_RgooSP2uGrfzFUj8-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2bed2ea6 +16:40:10.163 [XNIO-1 task-2] n8dqU7b1Rc-U5ACmsJoyfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.163 [XNIO-1 task-2] n8dqU7b1Rc-U5ACmsJoyfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.164 [XNIO-1 task-2] n8dqU7b1Rc-U5ACmsJoyfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.164 [XNIO-1 task-2] n8dqU7b1Rc-U5ACmsJoyfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.170 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.172 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.172 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.172 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.172 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.173 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.173 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.173 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG com.networknt.schema.TypeValidator debug - validate( "856a9902-a06e-4d22-9251-b954f77b", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.173 [XNIO-1 task-2] QDOlLtyYQtCv-c159uLYtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.182 [XNIO-1 task-2] EK7gPW-eRVqCy-vbA68eJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bed2ea6, base path is set to: null +16:40:10.182 [XNIO-1 task-2] EK7gPW-eRVqCy-vbA68eJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.182 [XNIO-1 task-2] EK7gPW-eRVqCy-vbA68eJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.182 [XNIO-1 task-2] EK7gPW-eRVqCy-vbA68eJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bed2ea6, base path is set to: null +16:40:10.182 [XNIO-1 task-2] EK7gPW-eRVqCy-vbA68eJA DEBUG com.networknt.schema.TypeValidator debug - validate( "2bed2ea6", "2bed2ea6", serviceId) +16:40:10.184 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:28549575-5472-44d3-8477-e3e6c0c3e51f +16:40:10.184 [XNIO-1 task-2] T_X0DVmbQy2xKGs76oEIJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bed2ea6, base path is set to: null +16:40:10.184 [XNIO-1 task-2] T_X0DVmbQy2xKGs76oEIJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.184 [XNIO-1 task-2] T_X0DVmbQy2xKGs76oEIJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.184 [XNIO-1 task-2] T_X0DVmbQy2xKGs76oEIJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2bed2ea6, base path is set to: null +16:40:10.184 [XNIO-1 task-2] T_X0DVmbQy2xKGs76oEIJw DEBUG com.networknt.schema.TypeValidator debug - validate( "2bed2ea6", "2bed2ea6", serviceId) +16:40:10.192 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.192 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.192 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.193 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.193 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.193 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "43eb1037-fd51-43e2-9ac8-c01210848687", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.193 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f1d84a7", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.193 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.193 [XNIO-1 task-2] nbfueNssSFigPo0LzuUYGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.200 [XNIO-1 task-2] E-bh__-cRXGP2ar-ZY87yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.200 [XNIO-1 task-2] E-bh__-cRXGP2ar-ZY87yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.200 [XNIO-1 task-2] E-bh__-cRXGP2ar-ZY87yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.200 [XNIO-1 task-2] E-bh__-cRXGP2ar-ZY87yA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.204 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67265ff5-3698-4486-8bab-1419cdb1", {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.205 [XNIO-1 task-2] mCsk-U2NSLuN-FXDPbI3DQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.212 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.212 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.212 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.212 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.213 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.213 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.213 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.213 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG com.networknt.schema.TypeValidator debug - validate( "f0734d6c-756b-487a-b0bc-16e1077b", {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.213 [XNIO-1 task-2] s5mHQSzwRjSwa1TJPHstpg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f25174a0","serviceName":"f0734d6c-756b-487a-b0bc-16e1077b","serviceDesc":"cbea5448-e81b-48eb-953b-1d7adcc3233b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.218 [XNIO-1 task-2] FOWO8u6GQOGBoms98R-gvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6c66b13e, base path is set to: null +16:40:10.219 [XNIO-1 task-2] FOWO8u6GQOGBoms98R-gvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.219 [XNIO-1 task-2] FOWO8u6GQOGBoms98R-gvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.219 [XNIO-1 task-2] FOWO8u6GQOGBoms98R-gvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6c66b13e, base path is set to: null +16:40:10.219 [XNIO-1 task-2] FOWO8u6GQOGBoms98R-gvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6c66b13e", "6c66b13e", serviceId) +16:40:10.221 [XNIO-1 task-2] x46iRlcvSDi2wVZEdh7o8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.221 [XNIO-1 task-2] x46iRlcvSDi2wVZEdh7o8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.222 [XNIO-1 task-2] x46iRlcvSDi2wVZEdh7o8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.222 [XNIO-1 task-2] x46iRlcvSDi2wVZEdh7o8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.226 [XNIO-1 task-2] QRMiiiCmSFmNoeLtgAOI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.226 [XNIO-1 task-2] QRMiiiCmSFmNoeLtgAOI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.226 [XNIO-1 task-2] QRMiiiCmSFmNoeLtgAOI8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.232 [XNIO-1 task-2] _XGN1oWnRTOZTkp59t1-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3fb16b6d +16:40:10.232 [XNIO-1 task-2] _XGN1oWnRTOZTkp59t1-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.232 [XNIO-1 task-2] _XGN1oWnRTOZTkp59t1-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.232 [XNIO-1 task-2] _XGN1oWnRTOZTkp59t1-ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3fb16b6d +16:40:10.233 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3fb16b6d +16:40:10.240 [XNIO-1 task-2] h0m_jHRARwqdwTXFaizZUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.241 [XNIO-1 task-2] h0m_jHRARwqdwTXFaizZUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.241 [XNIO-1 task-2] h0m_jHRARwqdwTXFaizZUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.241 [XNIO-1 task-2] h0m_jHRARwqdwTXFaizZUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.249 [XNIO-1 task-2] sotMhxkEQL2T56_0rWutwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7134a462, base path is set to: null +16:40:10.249 [XNIO-1 task-2] sotMhxkEQL2T56_0rWutwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.249 [XNIO-1 task-2] sotMhxkEQL2T56_0rWutwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.249 [XNIO-1 task-2] sotMhxkEQL2T56_0rWutwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7134a462, base path is set to: null +16:40:10.249 [XNIO-1 task-2] sotMhxkEQL2T56_0rWutwA DEBUG com.networknt.schema.TypeValidator debug - validate( "7134a462", "7134a462", serviceId) +16:40:10.252 [XNIO-1 task-2] QMOcm6UYRRqi_BSAerl8IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.252 [XNIO-1 task-2] QMOcm6UYRRqi_BSAerl8IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.252 [XNIO-1 task-2] QMOcm6UYRRqi_BSAerl8IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.252 [XNIO-1 task-2] QMOcm6UYRRqi_BSAerl8IA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.256 [XNIO-1 task-2] ph2P-7W0RDOdEqS7UaEB6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6c66b13e +16:40:10.256 [XNIO-1 task-2] ph2P-7W0RDOdEqS7UaEB6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.256 [XNIO-1 task-2] ph2P-7W0RDOdEqS7UaEB6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.256 [XNIO-1 task-2] ph2P-7W0RDOdEqS7UaEB6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6c66b13e +16:40:10.272 [XNIO-1 task-2] UzL9XmOTSYijU-EKs8wlqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b0cd2957, base path is set to: null +16:40:10.272 [XNIO-1 task-2] UzL9XmOTSYijU-EKs8wlqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.272 [XNIO-1 task-2] UzL9XmOTSYijU-EKs8wlqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.272 [XNIO-1 task-2] UzL9XmOTSYijU-EKs8wlqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b0cd2957, base path is set to: null +16:40:10.273 [XNIO-1 task-2] UzL9XmOTSYijU-EKs8wlqg DEBUG com.networknt.schema.TypeValidator debug - validate( "b0cd2957", "b0cd2957", serviceId) +16:40:10.275 [XNIO-1 task-2] 9IyFu3ZnSw-QSiEgF9sOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.275 [XNIO-1 task-2] 9IyFu3ZnSw-QSiEgF9sOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.275 [XNIO-1 task-2] 9IyFu3ZnSw-QSiEgF9sOtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.275 [XNIO-1 task-2] 9IyFu3ZnSw-QSiEgF9sOtA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.299 [XNIO-1 task-2] yz8ahQDCR3KSqzxqSZhoiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b0cd2957 +16:40:10.299 [XNIO-1 task-2] yz8ahQDCR3KSqzxqSZhoiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.299 [XNIO-1 task-2] yz8ahQDCR3KSqzxqSZhoiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.299 [XNIO-1 task-2] yz8ahQDCR3KSqzxqSZhoiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b0cd2957 +16:40:10.303 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.303 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.304 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.304 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.304 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.304 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.304 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.304 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de65b1c7-4f3d-4aa8-ba8f-1ac13281", {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.304 [XNIO-1 task-2] kS3nvBvURCe-EQmlX7PkiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b0cd2957","serviceName":"de65b1c7-4f3d-4aa8-ba8f-1ac13281","serviceDesc":"9fccbaa1-e7ab-4715-a504-5e4320841747","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.311 [XNIO-1 task-2] zaWpkMfiRGyJJwaZ1pps3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b0cd2957, base path is set to: null +16:40:10.311 [XNIO-1 task-2] zaWpkMfiRGyJJwaZ1pps3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.311 [XNIO-1 task-2] zaWpkMfiRGyJJwaZ1pps3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.311 [XNIO-1 task-2] zaWpkMfiRGyJJwaZ1pps3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b0cd2957, base path is set to: null +16:40:10.311 [XNIO-1 task-2] zaWpkMfiRGyJJwaZ1pps3A DEBUG com.networknt.schema.TypeValidator debug - validate( "b0cd2957", "b0cd2957", serviceId) +16:40:10.320 [XNIO-1 task-2] h7mvt1-3S1KcLUxtbPdxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.320 [XNIO-1 task-2] h7mvt1-3S1KcLUxtbPdxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.322 [XNIO-1 task-2] h7mvt1-3S1KcLUxtbPdxSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.328 [XNIO-1 task-2] B4dvgCidRmebmIhg3Onw8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7134a462 +16:40:10.328 [XNIO-1 task-2] B4dvgCidRmebmIhg3Onw8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.328 [XNIO-1 task-2] B4dvgCidRmebmIhg3Onw8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.328 [XNIO-1 task-2] B4dvgCidRmebmIhg3Onw8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7134a462 +16:40:10.337 [XNIO-1 task-2] x7UjouSvTAGOmt0brUAFJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.337 [XNIO-1 task-2] x7UjouSvTAGOmt0brUAFJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.338 [XNIO-1 task-2] x7UjouSvTAGOmt0brUAFJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.338 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1cbd9f49 +16:40:10.338 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:1cbd9f49 +16:40:10.345 [XNIO-1 task-2] MYdyBxYWQ76zov9r_DhEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1cbd9f49 +16:40:10.345 [XNIO-1 task-2] MYdyBxYWQ76zov9r_DhEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.345 [XNIO-1 task-2] MYdyBxYWQ76zov9r_DhEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.345 [XNIO-1 task-2] MYdyBxYWQ76zov9r_DhEcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1cbd9f49 +16:40:10.345 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:1cbd9f49 +16:40:10.351 [XNIO-1 task-2] qhJiktgxSGSz7JNwUOe4jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.351 [XNIO-1 task-2] qhJiktgxSGSz7JNwUOe4jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.352 [XNIO-1 task-2] qhJiktgxSGSz7JNwUOe4jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.352 [XNIO-1 task-2] qhJiktgxSGSz7JNwUOe4jA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.357 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.357 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.357 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.357 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.359 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.359 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.359 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.359 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG com.networknt.schema.TypeValidator debug - validate( "7ce70ce3-262a-47fd-92a8-5b6b3370", {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.359 [XNIO-1 task-2] djtXZfbdQpmTAk00U1GOdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5f1d84a7","serviceName":"7ce70ce3-262a-47fd-92a8-5b6b3370","serviceDesc":"43eb1037-fd51-43e2-9ac8-c01210848687","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.366 [XNIO-1 task-2] pBWSF3BYTRyj-iV88PNgeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4084c0ae, base path is set to: null +16:40:10.366 [XNIO-1 task-2] pBWSF3BYTRyj-iV88PNgeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.366 [XNIO-1 task-2] pBWSF3BYTRyj-iV88PNgeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.367 [XNIO-1 task-2] pBWSF3BYTRyj-iV88PNgeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4084c0ae, base path is set to: null +16:40:10.367 [XNIO-1 task-2] pBWSF3BYTRyj-iV88PNgeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4084c0ae", "4084c0ae", serviceId) +16:40:10.369 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.369 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.369 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.370 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.370 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.370 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG com.networknt.schema.TypeValidator debug - validate( "1e75fe67-c150-42ba-bf8a-4d78e6259819", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.370 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG com.networknt.schema.TypeValidator debug - validate( "4084c0ae", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.370 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.370 [XNIO-1 task-2] yneQED57Sa-8tON6TpGg_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.378 [XNIO-1 task-2] avKjLi4sTM-F1e06BctNnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f25174a0 +16:40:10.379 [XNIO-1 task-2] avKjLi4sTM-F1e06BctNnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.379 [XNIO-1 task-2] avKjLi4sTM-F1e06BctNnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.379 [XNIO-1 task-2] avKjLi4sTM-F1e06BctNnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f25174a0 +16:40:10.386 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.386 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.386 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.386 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.386 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.386 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.387 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.387 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG com.networknt.schema.TypeValidator debug - validate( "67265ff5-3698-4486-8bab-1419cdb1", {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.387 [XNIO-1 task-2] 3kCl7TdsTdWR-htGC3STmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29214e8f","serviceName":"67265ff5-3698-4486-8bab-1419cdb1","serviceDesc":"aa20434c-93b6-4c01-b998-dec82923f7c4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.393 [XNIO-1 task-2] ItvZAovvSpGvg_pmUNQ-mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/de77fe2f, base path is set to: null +16:40:10.393 [XNIO-1 task-2] ItvZAovvSpGvg_pmUNQ-mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.394 [XNIO-1 task-2] ItvZAovvSpGvg_pmUNQ-mA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.394 [XNIO-1 task-2] ItvZAovvSpGvg_pmUNQ-mA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/de77fe2f, base path is set to: null +16:40:10.394 [XNIO-1 task-2] ItvZAovvSpGvg_pmUNQ-mA DEBUG com.networknt.schema.TypeValidator debug - validate( "de77fe2f", "de77fe2f", serviceId) +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "f843aa37-a2f2-41e4-8c72-99cb39963e73", {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "de77fe2f", {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.396 [XNIO-1 task-2] w_qBG7qlTDStXgBAgfyJOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"de77fe2f","serviceName":"854f698c-0eb5-4291-92c4-3ff5fb5f","serviceDesc":"f843aa37-a2f2-41e4-8c72-99cb39963e73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.402 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.402 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.402 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.402 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.402 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.403 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1e75fe67-c150-42ba-bf8a-4d78e6259819", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.403 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4084c0ae", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.403 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.403 [XNIO-1 task-2] _JfvUe8QRSiLZQMpRbMg_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.411 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.411 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.411 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.411 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.411 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.411 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1e75fe67-c150-42ba-bf8a-4d78e6259819", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.411 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "4084c0ae", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.412 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.412 [XNIO-1 task-2] Cl7Yo2IbTdyvbBbRNll3Fw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.421 [XNIO-1 task-2] NTfA6u5DQfmUjD9xvPd1Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/672b83ce +16:40:10.421 [XNIO-1 task-2] NTfA6u5DQfmUjD9xvPd1Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.421 [XNIO-1 task-2] NTfA6u5DQfmUjD9xvPd1Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.421 [XNIO-1 task-2] NTfA6u5DQfmUjD9xvPd1Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/672b83ce +16:40:10.424 [XNIO-1 task-2] 393rxHroSNmn-J0BdONYaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.424 [XNIO-1 task-2] 393rxHroSNmn-J0BdONYaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.424 [XNIO-1 task-2] 393rxHroSNmn-J0BdONYaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.430 [XNIO-1 task-2] dg01AGl_QdqNJP_5a5cTQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.430 [XNIO-1 task-2] dg01AGl_QdqNJP_5a5cTQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.430 [XNIO-1 task-2] dg01AGl_QdqNJP_5a5cTQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.430 [XNIO-1 task-2] dg01AGl_QdqNJP_5a5cTQg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.437 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7cc534c-5d36-4e3d-96e8-d0173e89", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.438 [XNIO-1 task-2] q14FJEEIRrWXzHRE1xQKzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG com.networknt.schema.TypeValidator debug - validate( "856a9902-a06e-4d22-9251-b954f77b", {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.444 [XNIO-1 task-2] ezchmNa2THCEiZnig0kHFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4084c0ae","serviceName":"856a9902-a06e-4d22-9251-b954f77b","serviceDesc":"1e75fe67-c150-42ba-bf8a-4d78e6259819","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.453 [XNIO-1 task-2] IACBMchCSninkKYN2eScKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.454 [XNIO-1 task-2] IACBMchCSninkKYN2eScKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.454 [XNIO-1 task-2] IACBMchCSninkKYN2eScKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.454 [XNIO-1 task-2] IACBMchCSninkKYN2eScKw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.462 [XNIO-1 task-2] WolbRnQsRO62qiv6c-L4Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5f1d84a7, base path is set to: null +16:40:10.463 [XNIO-1 task-2] WolbRnQsRO62qiv6c-L4Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.463 [XNIO-1 task-2] WolbRnQsRO62qiv6c-L4Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.463 [XNIO-1 task-2] WolbRnQsRO62qiv6c-L4Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5f1d84a7, base path is set to: null +16:40:10.463 [XNIO-1 task-2] WolbRnQsRO62qiv6c-L4Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f1d84a7", "5f1d84a7", serviceId) +16:40:10.470 [XNIO-1 task-2] uAnMMGGtSZKky-_a_vaJ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.470 [XNIO-1 task-2] uAnMMGGtSZKky-_a_vaJ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.470 [XNIO-1 task-2] uAnMMGGtSZKky-_a_vaJ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.471 [XNIO-1 task-2] uAnMMGGtSZKky-_a_vaJ4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.476 [XNIO-1 task-2] 7b4HzD0uRVCx3VuaOiQcHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.476 [XNIO-1 task-2] 7b4HzD0uRVCx3VuaOiQcHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.476 [XNIO-1 task-2] 7b4HzD0uRVCx3VuaOiQcHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.476 [XNIO-1 task-2] 7b4HzD0uRVCx3VuaOiQcHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.483 [XNIO-1 task-2] _RcnYgNmRSWR-k2DuXL3Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.483 [XNIO-1 task-2] _RcnYgNmRSWR-k2DuXL3Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.484 [XNIO-1 task-2] _RcnYgNmRSWR-k2DuXL3Ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.484 [XNIO-1 task-2] _RcnYgNmRSWR-k2DuXL3Ag DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.492 [XNIO-1 task-2] SnLadOzrQg2xLAp3X_lAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de77fe2f +16:40:10.492 [XNIO-1 task-2] SnLadOzrQg2xLAp3X_lAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.492 [XNIO-1 task-2] SnLadOzrQg2xLAp3X_lAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.492 [XNIO-1 task-2] SnLadOzrQg2xLAp3X_lAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de77fe2f +16:40:10.494 [XNIO-1 task-2] hvvfP9x-QY-ZOGOyYFEmhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.494 [XNIO-1 task-2] hvvfP9x-QY-ZOGOyYFEmhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.495 [XNIO-1 task-2] hvvfP9x-QY-ZOGOyYFEmhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.504 [XNIO-1 task-2] Ikq-ATBeS2Se-E_Ble-klg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/29214e8f, base path is set to: null +16:40:10.504 [XNIO-1 task-2] Ikq-ATBeS2Se-E_Ble-klg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.504 [XNIO-1 task-2] Ikq-ATBeS2Se-E_Ble-klg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.504 [XNIO-1 task-2] Ikq-ATBeS2Se-E_Ble-klg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/29214e8f, base path is set to: null +16:40:10.504 [XNIO-1 task-2] Ikq-ATBeS2Se-E_Ble-klg DEBUG com.networknt.schema.TypeValidator debug - validate( "29214e8f", "29214e8f", serviceId) +16:40:10.506 [XNIO-1 task-2] KjoHmcWDSTeZvCHXnJRcCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c45ebf92 +16:40:10.507 [XNIO-1 task-2] KjoHmcWDSTeZvCHXnJRcCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.507 [XNIO-1 task-2] KjoHmcWDSTeZvCHXnJRcCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.507 [XNIO-1 task-2] KjoHmcWDSTeZvCHXnJRcCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c45ebf92 +16:40:10.519 [XNIO-1 task-2] ZWBLnEL_RxmqOTGnqqHbxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/de77fe2f, base path is set to: null +16:40:10.519 [XNIO-1 task-2] ZWBLnEL_RxmqOTGnqqHbxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.519 [XNIO-1 task-2] ZWBLnEL_RxmqOTGnqqHbxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.520 [XNIO-1 task-2] ZWBLnEL_RxmqOTGnqqHbxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/de77fe2f, base path is set to: null +16:40:10.520 [XNIO-1 task-2] ZWBLnEL_RxmqOTGnqqHbxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "de77fe2f", "de77fe2f", serviceId) +16:40:10.522 [XNIO-1 task-2] Z0sYybxXRC63i1cTTuoVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29214e8f +16:40:10.522 [XNIO-1 task-2] Z0sYybxXRC63i1cTTuoVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.522 [XNIO-1 task-2] Z0sYybxXRC63i1cTTuoVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.522 [XNIO-1 task-2] Z0sYybxXRC63i1cTTuoVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29214e8f +16:40:10.529 [XNIO-1 task-2] -lprG470Q-OuS9zcfGu2UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4084c0ae, base path is set to: null +16:40:10.529 [XNIO-1 task-2] -lprG470Q-OuS9zcfGu2UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.530 [XNIO-1 task-2] -lprG470Q-OuS9zcfGu2UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.530 [XNIO-1 task-2] -lprG470Q-OuS9zcfGu2UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4084c0ae, base path is set to: null +16:40:10.530 [XNIO-1 task-2] -lprG470Q-OuS9zcfGu2UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4084c0ae", "4084c0ae", serviceId) +16:40:10.536 [XNIO-1 task-2] IlHMgoV3SF-M0ZaW2XiaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.537 [XNIO-1 task-2] IlHMgoV3SF-M0ZaW2XiaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.537 [XNIO-1 task-2] IlHMgoV3SF-M0ZaW2XiaBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.537 [XNIO-1 task-2] IlHMgoV3SF-M0ZaW2XiaBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.567 [XNIO-1 task-2] I9CuqCblSfe5zlCaonffgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.567 [XNIO-1 task-2] I9CuqCblSfe5zlCaonffgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.567 [XNIO-1 task-2] I9CuqCblSfe5zlCaonffgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.568 [XNIO-1 task-2] I9CuqCblSfe5zlCaonffgw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.572 [XNIO-1 task-2] bSvzzAVsQlqAxJ2AgxvCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de77fe2f +16:40:10.572 [XNIO-1 task-2] bSvzzAVsQlqAxJ2AgxvCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.572 [XNIO-1 task-2] bSvzzAVsQlqAxJ2AgxvCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.572 [XNIO-1 task-2] bSvzzAVsQlqAxJ2AgxvCBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/de77fe2f +16:40:10.581 [XNIO-1 task-2] DygW5M1oR1eMFduWwnxHTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.581 [XNIO-1 task-2] DygW5M1oR1eMFduWwnxHTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.581 [XNIO-1 task-2] DygW5M1oR1eMFduWwnxHTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.581 [XNIO-1 task-2] DygW5M1oR1eMFduWwnxHTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.591 [XNIO-1 task-2] nLu5cVpXRzWXvTIX4KIuiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/672b83ce, base path is set to: null +16:40:10.591 [XNIO-1 task-2] nLu5cVpXRzWXvTIX4KIuiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.591 [XNIO-1 task-2] nLu5cVpXRzWXvTIX4KIuiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.591 [XNIO-1 task-2] nLu5cVpXRzWXvTIX4KIuiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/672b83ce, base path is set to: null +16:40:10.591 [XNIO-1 task-2] nLu5cVpXRzWXvTIX4KIuiw DEBUG com.networknt.schema.TypeValidator debug - validate( "672b83ce", "672b83ce", serviceId) +16:40:10.593 [XNIO-1 task-2] KLw9B3J_R5umlJy4KKAyng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.593 [XNIO-1 task-2] KLw9B3J_R5umlJy4KKAyng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.593 [XNIO-1 task-2] KLw9B3J_R5umlJy4KKAyng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.593 [XNIO-1 task-2] KLw9B3J_R5umlJy4KKAyng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.602 [XNIO-1 task-2] yEQuhATBSQ6OTklJMbX1-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.602 [XNIO-1 task-2] yEQuhATBSQ6OTklJMbX1-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.602 [XNIO-1 task-2] yEQuhATBSQ6OTklJMbX1-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.609 [XNIO-1 task-2] UZCdPophSimcFd9BReqvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e7aaf7a +16:40:10.609 [XNIO-1 task-2] UZCdPophSimcFd9BReqvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.609 [XNIO-1 task-2] UZCdPophSimcFd9BReqvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.609 [XNIO-1 task-2] UZCdPophSimcFd9BReqvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e7aaf7a +16:40:10.611 [XNIO-1 task-2] i2Y7caw-RjKDgzcPbnA_wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.611 [XNIO-1 task-2] i2Y7caw-RjKDgzcPbnA_wA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.611 [XNIO-1 task-2] i2Y7caw-RjKDgzcPbnA_wA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.620 [XNIO-1 task-2] Dva_j8RdQe6ddzyyC1bgOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e183cb58, base path is set to: null +16:40:10.621 [XNIO-1 task-2] Dva_j8RdQe6ddzyyC1bgOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.621 [XNIO-1 task-2] Dva_j8RdQe6ddzyyC1bgOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.621 [XNIO-1 task-2] Dva_j8RdQe6ddzyyC1bgOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e183cb58, base path is set to: null +16:40:10.621 [XNIO-1 task-2] Dva_j8RdQe6ddzyyC1bgOg DEBUG com.networknt.schema.TypeValidator debug - validate( "e183cb58", "e183cb58", serviceId) +16:40:10.624 [XNIO-1 task-2] S8jbc57IQYCtGum_1pQCmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:10.624 [XNIO-1 task-2] S8jbc57IQYCtGum_1pQCmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.624 [XNIO-1 task-2] S8jbc57IQYCtGum_1pQCmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.624 [XNIO-1 task-2] S8jbc57IQYCtGum_1pQCmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:10.626 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.626 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.626 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.626 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.627 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.627 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.627 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.627 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG com.networknt.schema.TypeValidator debug - validate( "de8a685b-dd81-4b61-92b3-1c0db5b5", {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.627 [XNIO-1 task-2] l-gYfmzJRJ6TUl_Rv3T3_w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6af34670","serviceName":"de8a685b-dd81-4b61-92b3-1c0db5b5","serviceDesc":"157915a6-254c-4a74-bac3-90e3939ba4ff","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.627 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0c1b7268-3525-4413-8df7-0ebe85e6b51b +16:40:10.628 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0c1b7268-3525-4413-8df7-0ebe85e6b51b +16:40:10.632 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.632 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.632 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.633 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.633 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.633 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9dea83c1-17a9-449d-88dc-9acd68159eda", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:10.633 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e183cb58", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:10.633 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:10.633 [XNIO-1 task-2] p7wMusseS9Sz9bP8tqx3FQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.638 [XNIO-1 task-2] GEInxq5zSduQrqeZW3xbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6af34670 +16:40:10.638 [XNIO-1 task-2] GEInxq5zSduQrqeZW3xbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.638 [XNIO-1 task-2] GEInxq5zSduQrqeZW3xbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.638 [XNIO-1 task-2] GEInxq5zSduQrqeZW3xbLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6af34670 +16:40:10.647 [XNIO-1 task-2] Iacj8PpiRrSZF67N61HCqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.647 [XNIO-1 task-2] Iacj8PpiRrSZF67N61HCqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.648 [XNIO-1 task-2] Iacj8PpiRrSZF67N61HCqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.654 [XNIO-1 task-2] yc-seSx0S3SN17pQFGKQDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/672b83ce, base path is set to: null +16:40:10.654 [XNIO-1 task-2] yc-seSx0S3SN17pQFGKQDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.654 [XNIO-1 task-2] yc-seSx0S3SN17pQFGKQDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.654 [XNIO-1 task-2] yc-seSx0S3SN17pQFGKQDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/672b83ce, base path is set to: null +16:40:10.654 [XNIO-1 task-2] yc-seSx0S3SN17pQFGKQDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "672b83ce", "672b83ce", serviceId) +16:40:10.657 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.657 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.657 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.658 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.658 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.658 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.658 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.658 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1f15267a-82e1-4096-9e78-8c44b55a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.658 [XNIO-1 task-2] 25AUlELBS-ipv7rp43-bMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.664 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.664 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.664 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.665 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.665 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.665 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.665 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.665 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0d4fe1bb-da7e-48e7-ab7b-cd91c2b8", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.665 [XNIO-1 task-2] 9haBUtUWTtOnSqDROhFZtQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.671 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.671 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.671 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.672 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.672 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.672 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.672 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.672 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG com.networknt.schema.TypeValidator debug - validate( "d7cc534c-5d36-4e3d-96e8-d0173e89", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.672 [XNIO-1 task-2] pxj-gUZbQtWdZJUIaGZgWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.678 [XNIO-1 task-2] qvTcshX9T8GyOrBRE9iTGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.678 [XNIO-1 task-2] qvTcshX9T8GyOrBRE9iTGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.678 [XNIO-1 task-2] qvTcshX9T8GyOrBRE9iTGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.678 [XNIO-1 task-2] qvTcshX9T8GyOrBRE9iTGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.707 [XNIO-1 task-2] tE5ORBHfRtK_mO_O85iffQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f960f357, base path is set to: null +16:40:10.708 [XNIO-1 task-2] tE5ORBHfRtK_mO_O85iffQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.708 [XNIO-1 task-2] tE5ORBHfRtK_mO_O85iffQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.708 [XNIO-1 task-2] tE5ORBHfRtK_mO_O85iffQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f960f357, base path is set to: null +16:40:10.708 [XNIO-1 task-2] tE5ORBHfRtK_mO_O85iffQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f960f357", "f960f357", serviceId) +16:40:10.717 [XNIO-1 task-2] JMvwGIITQvelJTauhH7EMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e7aaf7a +16:40:10.717 [XNIO-1 task-2] JMvwGIITQvelJTauhH7EMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.717 [XNIO-1 task-2] JMvwGIITQvelJTauhH7EMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.717 [XNIO-1 task-2] JMvwGIITQvelJTauhH7EMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e7aaf7a +16:40:10.719 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.719 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.720 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.720 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.720 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.720 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.720 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.720 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG com.networknt.schema.TypeValidator debug - validate( "d7cc534c-5d36-4e3d-96e8-d0173e89", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.720 [XNIO-1 task-2] q38lNECBQwmu-e0AgiAT0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.725 [XNIO-1 task-2] eD1XtxyfQ9-K_WtC_xUuDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.725 [XNIO-1 task-2] eD1XtxyfQ9-K_WtC_xUuDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.725 [XNIO-1 task-2] eD1XtxyfQ9-K_WtC_xUuDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.733 [XNIO-1 task-2] 3ngi9JtqRAuxT1AbYmnLHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.733 [XNIO-1 task-2] 3ngi9JtqRAuxT1AbYmnLHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.733 [XNIO-1 task-2] 3ngi9JtqRAuxT1AbYmnLHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.733 [XNIO-1 task-2] 3ngi9JtqRAuxT1AbYmnLHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.760 [XNIO-1 task-2] Duov-xBnRhO7kcjNW_9PDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.760 [XNIO-1 task-2] Duov-xBnRhO7kcjNW_9PDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.760 [XNIO-1 task-2] Duov-xBnRhO7kcjNW_9PDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.768 [XNIO-1 task-2] UaZnKZfvTTmgsxOWO9pfYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:10.768 [XNIO-1 task-2] UaZnKZfvTTmgsxOWO9pfYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.768 [XNIO-1 task-2] UaZnKZfvTTmgsxOWO9pfYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.768 [XNIO-1 task-2] UaZnKZfvTTmgsxOWO9pfYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:10.768 [XNIO-1 task-2] UaZnKZfvTTmgsxOWO9pfYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", "8e7aaf7a", serviceId) +16:40:10.770 [XNIO-1 task-2] FNO9X9U2SRKfEtz_mTlXtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:10.770 [XNIO-1 task-2] FNO9X9U2SRKfEtz_mTlXtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.770 [XNIO-1 task-2] FNO9X9U2SRKfEtz_mTlXtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.770 [XNIO-1 task-2] FNO9X9U2SRKfEtz_mTlXtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:10.786 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a54b5d24 +16:40:10.786 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a54b5d24 +16:40:10.805 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a54b5d24 +16:40:10.834 [XNIO-1 task-2] rMCBrJLBTJOlRx2OqvDiig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.834 [XNIO-1 task-2] rMCBrJLBTJOlRx2OqvDiig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.834 [XNIO-1 task-2] rMCBrJLBTJOlRx2OqvDiig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.834 [XNIO-1 task-2] rMCBrJLBTJOlRx2OqvDiig DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.903 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a54b5d24 +16:40:10.910 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a54b5d24 +16:40:10.926 [XNIO-1 task-2] K6mXCbpiTN6ygUpyLn4BrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0af8eb78 +16:40:10.926 [XNIO-1 task-2] K6mXCbpiTN6ygUpyLn4BrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.926 [XNIO-1 task-2] K6mXCbpiTN6ygUpyLn4BrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.926 [XNIO-1 task-2] K6mXCbpiTN6ygUpyLn4BrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0af8eb78 +16:40:10.929 [XNIO-1 task-2] ldH8NTa3QsSKUuEJr3I0tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.929 [XNIO-1 task-2] ldH8NTa3QsSKUuEJr3I0tQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.929 [XNIO-1 task-2] ldH8NTa3QsSKUuEJr3I0tQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.929 [XNIO-1 task-2] ldH8NTa3QsSKUuEJr3I0tQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.931 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7f0c84fb-73a9-4021-b58e-fe2669bb26d1 +16:40:10.934 [XNIO-1 task-2] h_w30xJvTn-MF93SMjybnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0af8eb78, base path is set to: null +16:40:10.934 [XNIO-1 task-2] h_w30xJvTn-MF93SMjybnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.935 [XNIO-1 task-2] h_w30xJvTn-MF93SMjybnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.935 [XNIO-1 task-2] h_w30xJvTn-MF93SMjybnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0af8eb78, base path is set to: null +16:40:10.935 [XNIO-1 task-2] h_w30xJvTn-MF93SMjybnw DEBUG com.networknt.schema.TypeValidator debug - validate( "0af8eb78", "0af8eb78", serviceId) +16:40:10.939 [XNIO-1 task-2] gj28FzVhSCiQ6xyPz-TsCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0af8eb78 +16:40:10.939 [XNIO-1 task-2] gj28FzVhSCiQ6xyPz-TsCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.939 [XNIO-1 task-2] gj28FzVhSCiQ6xyPz-TsCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.939 [XNIO-1 task-2] gj28FzVhSCiQ6xyPz-TsCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0af8eb78 +16:40:10.943 [XNIO-1 task-2] OxKWVs4-RnmodHquoA5HDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.943 [XNIO-1 task-2] OxKWVs4-RnmodHquoA5HDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.943 [XNIO-1 task-2] OxKWVs4-RnmodHquoA5HDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.944 [XNIO-1 task-2] OxKWVs4-RnmodHquoA5HDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.948 [XNIO-1 task-2] fwi7ZCAFQp6-nOMxdMdv7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0af8eb78, base path is set to: null +16:40:10.948 [XNIO-1 task-2] fwi7ZCAFQp6-nOMxdMdv7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.948 [XNIO-1 task-2] fwi7ZCAFQp6-nOMxdMdv7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:10.948 [XNIO-1 task-2] fwi7ZCAFQp6-nOMxdMdv7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0af8eb78, base path is set to: null +16:40:10.949 [XNIO-1 task-2] fwi7ZCAFQp6-nOMxdMdv7g DEBUG com.networknt.schema.TypeValidator debug - validate( "0af8eb78", "0af8eb78", serviceId) +16:40:10.957 [XNIO-1 task-2] 3JYVpxTNRBqVj0faFstsaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e7aaf7a +16:40:10.957 [XNIO-1 task-2] 3JYVpxTNRBqVj0faFstsaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:10.957 [XNIO-1 task-2] 3JYVpxTNRBqVj0faFstsaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:10.957 [XNIO-1 task-2] 3JYVpxTNRBqVj0faFstsaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e7aaf7a +16:40:10.959 [XNIO-1 task-2] 3P4ur6LFTy-SYtF89Xz8Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.959 [XNIO-1 task-2] 3P4ur6LFTy-SYtF89Xz8Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.959 [XNIO-1 task-2] 3P4ur6LFTy-SYtF89Xz8Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG com.networknt.schema.TypeValidator debug - validate( "1f15267a-82e1-4096-9e78-8c44b55a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.968 [XNIO-1 task-2] Gpk0LCOgRuOnw_h1Zl2Wtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.983 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.983 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.983 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.983 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.984 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.984 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:10.984 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:10.984 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d7cc534c-5d36-4e3d-96e8-d0173e89", {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:10.984 [XNIO-1 task-2] AP78cvL_RLqj6_UgGbmZ5Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"672b83ce","serviceName":"d7cc534c-5d36-4e3d-96e8-d0173e89","serviceDesc":"3820b71d-feb2-4185-94d0-33b5e5e3d992","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:10.990 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a54b5d24 +16:40:10.992 [XNIO-1 task-2] 8JlN1KzJQq-Ga6I8sS3fFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:10.992 [XNIO-1 task-2] 8JlN1KzJQq-Ga6I8sS3fFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:10.993 [XNIO-1 task-2] 8JlN1KzJQq-Ga6I8sS3fFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.001 [XNIO-1 task-2] BdacHS_FSPW4IJsttgSlVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8d4251c, base path is set to: null +16:40:11.001 [XNIO-1 task-2] BdacHS_FSPW4IJsttgSlVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.001 [XNIO-1 task-2] BdacHS_FSPW4IJsttgSlVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.001 [XNIO-1 task-2] BdacHS_FSPW4IJsttgSlVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8d4251c, base path is set to: null +16:40:11.001 [XNIO-1 task-2] BdacHS_FSPW4IJsttgSlVA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8d4251c", "b8d4251c", serviceId) +16:40:11.014 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.014 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.014 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.015 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.015 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.015 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG com.networknt.schema.TypeValidator debug - validate( "9dea83c1-17a9-449d-88dc-9acd68159eda", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.015 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG com.networknt.schema.TypeValidator debug - validate( "e183cb58", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.015 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.015 [XNIO-1 task-2] nSzK37sYTSeGChXSBTwENA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.024 [XNIO-1 task-2] oDKZbFaUT8SngfbAzvwJPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:11.024 [XNIO-1 task-2] oDKZbFaUT8SngfbAzvwJPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.024 [XNIO-1 task-2] oDKZbFaUT8SngfbAzvwJPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.024 [XNIO-1 task-2] oDKZbFaUT8SngfbAzvwJPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:11.027 [XNIO-1 task-2] NFuxDuAqRHyOM_t9vrpswQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.027 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a54b5d24 +16:40:11.027 [XNIO-1 task-2] NFuxDuAqRHyOM_t9vrpswQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.027 [XNIO-1 task-2] NFuxDuAqRHyOM_t9vrpswQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.040 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.040 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.040 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.041 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.041 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.041 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.041 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.041 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0d4fe1bb-da7e-48e7-ab7b-cd91c2b8", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.041 [XNIO-1 task-2] SnyFz-3qQViJKR0kT-bIMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.048 [XNIO-1 task-2] xpyBf-T_TqWMh44VwpALZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.048 [XNIO-1 task-2] xpyBf-T_TqWMh44VwpALZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.049 [XNIO-1 task-2] xpyBf-T_TqWMh44VwpALZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.057 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG com.networknt.schema.TypeValidator debug - validate( "1f15267a-82e1-4096-9e78-8c44b55a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.058 [XNIO-1 task-2] dyTj3PNNRBmssUJh_XQOew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.067 [XNIO-1 task-2] N2AGVNMMToamRYiy6HiPxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/672b83ce, base path is set to: null +16:40:11.068 [XNIO-1 task-2] N2AGVNMMToamRYiy6HiPxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.068 [XNIO-1 task-2] N2AGVNMMToamRYiy6HiPxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.068 [XNIO-1 task-2] N2AGVNMMToamRYiy6HiPxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/672b83ce, base path is set to: null +16:40:11.068 [XNIO-1 task-2] N2AGVNMMToamRYiy6HiPxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "672b83ce", "672b83ce", serviceId) +16:40:11.070 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:07aba125 +16:40:11.075 [XNIO-1 task-2] GQ_bZgIFRGibQF5AFJ5_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.075 [XNIO-1 task-2] GQ_bZgIFRGibQF5AFJ5_nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.076 [XNIO-1 task-2] GQ_bZgIFRGibQF5AFJ5_nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.076 [XNIO-1 task-2] GQ_bZgIFRGibQF5AFJ5_nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.084 [XNIO-1 task-2] 8eCPRAUMQGC7c_JNTUnOrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.084 [XNIO-1 task-2] 8eCPRAUMQGC7c_JNTUnOrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.084 [XNIO-1 task-2] 8eCPRAUMQGC7c_JNTUnOrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.084 [XNIO-1 task-2] 8eCPRAUMQGC7c_JNTUnOrA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.091 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.091 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.091 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8370427a-3bdd-4bf6-a556-aa445fb8fa22 +16:40:11.091 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.091 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.091 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.091 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG com.networknt.schema.TypeValidator debug - validate( "9641e34d-15dc-47e3-9fc1-89650873d36e", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.092 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG com.networknt.schema.TypeValidator debug - validate( "d5f7b4eb", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.092 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.092 [XNIO-1 task-2] 83D-p6OoQwCqG9AcRxo_EA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.093 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8370427a-3bdd-4bf6-a556-aa445fb8fa22 +16:40:11.105 [XNIO-1 task-2] avZAMuyFT66tA-IjsFQECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.106 [XNIO-1 task-2] avZAMuyFT66tA-IjsFQECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.106 [XNIO-1 task-2] avZAMuyFT66tA-IjsFQECw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.106 [XNIO-1 task-2] avZAMuyFT66tA-IjsFQECw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.113 [XNIO-1 task-2] 9OVNn4JRSSCrU6psrcMQQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b9da2f16 +16:40:11.113 [XNIO-1 task-2] 9OVNn4JRSSCrU6psrcMQQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.113 [XNIO-1 task-2] 9OVNn4JRSSCrU6psrcMQQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.113 [XNIO-1 task-2] 9OVNn4JRSSCrU6psrcMQQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b9da2f16 +16:40:11.125 [XNIO-1 task-2] u8tqQVMhSQyjmUOKg5JEuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4729b497, base path is set to: null +16:40:11.125 [XNIO-1 task-2] u8tqQVMhSQyjmUOKg5JEuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.125 [XNIO-1 task-2] u8tqQVMhSQyjmUOKg5JEuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.125 [XNIO-1 task-2] u8tqQVMhSQyjmUOKg5JEuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4729b497, base path is set to: null +16:40:11.125 [XNIO-1 task-2] u8tqQVMhSQyjmUOKg5JEuw DEBUG com.networknt.schema.TypeValidator debug - validate( "4729b497", "4729b497", serviceId) +16:40:11.127 [XNIO-1 task-2] yDvCxHJaSCmwZdpWEkwIpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.128 [XNIO-1 task-2] yDvCxHJaSCmwZdpWEkwIpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.128 [XNIO-1 task-2] yDvCxHJaSCmwZdpWEkwIpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.128 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6ea16b1c +16:40:11.135 [XNIO-1 task-2] lvXT1hHxSdy52VmIXgw8Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4729b497, base path is set to: null +16:40:11.135 [XNIO-1 task-2] lvXT1hHxSdy52VmIXgw8Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.135 [XNIO-1 task-2] lvXT1hHxSdy52VmIXgw8Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.135 [XNIO-1 task-2] lvXT1hHxSdy52VmIXgw8Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4729b497, base path is set to: null +16:40:11.135 [XNIO-1 task-2] lvXT1hHxSdy52VmIXgw8Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "4729b497", "4729b497", serviceId) +16:40:11.137 [XNIO-1 task-2] KIYnRuIHQuWkumumwiS8SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:11.137 [XNIO-1 task-2] KIYnRuIHQuWkumumwiS8SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.137 [XNIO-1 task-2] KIYnRuIHQuWkumumwiS8SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.138 [XNIO-1 task-2] KIYnRuIHQuWkumumwiS8SA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:11.140 [XNIO-1 task-2] V9Hs7HGrSueMw3MWowEN4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:11.140 [XNIO-1 task-2] V9Hs7HGrSueMw3MWowEN4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.141 [XNIO-1 task-2] V9Hs7HGrSueMw3MWowEN4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.141 [XNIO-1 task-2] V9Hs7HGrSueMw3MWowEN4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:11.141 [XNIO-1 task-2] V9Hs7HGrSueMw3MWowEN4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", "8e7aaf7a", serviceId) +16:40:11.145 [XNIO-1 task-2] gZwmI48vTAuNvzmmYMh1qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.145 [XNIO-1 task-2] gZwmI48vTAuNvzmmYMh1qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.146 [XNIO-1 task-2] gZwmI48vTAuNvzmmYMh1qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.157 [XNIO-1 task-2] T1IrMXYbTEa0wjvcb6TxvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:11.157 [XNIO-1 task-2] T1IrMXYbTEa0wjvcb6TxvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.157 [XNIO-1 task-2] T1IrMXYbTEa0wjvcb6TxvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.157 [XNIO-1 task-2] T1IrMXYbTEa0wjvcb6TxvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:11.160 [XNIO-1 task-2] pRe_YGMcRwCFLIaDLkCGwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.160 [XNIO-1 task-2] pRe_YGMcRwCFLIaDLkCGwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.160 [XNIO-1 task-2] pRe_YGMcRwCFLIaDLkCGwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.166 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3105ca5f-8d18-483d-90ef-9a8e95013271 +16:40:11.168 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:3105ca5f-8d18-483d-90ef-9a8e95013271 +16:40:11.168 [XNIO-1 task-2] OH4UaDYPQQ6qAbbfyjr_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.168 [XNIO-1 task-2] OH4UaDYPQQ6qAbbfyjr_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.168 [XNIO-1 task-2] OH4UaDYPQQ6qAbbfyjr_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.178 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8370427a-3bdd-4bf6-a556-aa445fb8fa22 +16:40:11.178 [XNIO-1 task-2] QwGNBUzqSRWqXoqdd1YooA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.178 [XNIO-1 task-2] QwGNBUzqSRWqXoqdd1YooA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.178 [XNIO-1 task-2] QwGNBUzqSRWqXoqdd1YooA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:11.179 [XNIO-1 task-2] QwGNBUzqSRWqXoqdd1YooA DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", "8e7aaf7a", serviceId) +16:40:11.181 [XNIO-1 task-2] ZRvljDQbTw6z52U_cYuqdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.181 [XNIO-1 task-2] ZRvljDQbTw6z52U_cYuqdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.181 [XNIO-1 task-2] ZRvljDQbTw6z52U_cYuqdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.181 [XNIO-1 task-2] ZRvljDQbTw6z52U_cYuqdQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.187 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.187 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.187 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.187 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.187 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.187 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8c3cf9fe-7f57-486d-a167-f4ed29ae7d08", {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.187 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4729b497", {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.188 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.188 [XNIO-1 task-2] 4KehShtpQP-valMZdzoieQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4729b497","serviceName":"7dabc4e3-5628-44a6-8c76-235dcb11","serviceDesc":"8c3cf9fe-7f57-486d-a167-f4ed29ae7d08","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.199 [XNIO-1 task-2] 7Kwf3croTTSBjfBhyFEOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.200 [XNIO-1 task-2] 7Kwf3croTTSBjfBhyFEOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.200 [XNIO-1 task-2] 7Kwf3croTTSBjfBhyFEOVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.200 [XNIO-1 task-2] 7Kwf3croTTSBjfBhyFEOVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.208 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.208 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.208 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.208 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.208 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.208 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.209 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.209 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0e58b1cd-da3d-48d4-92f8-7f1dedc1", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.209 [XNIO-1 task-2] 8fEIjtr6QAC8TrGj7f2r0Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.209 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb3cc03a +16:40:11.220 [XNIO-1 task-2] AXs0fdNDR2S0LBEknZYdxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.220 [XNIO-1 task-2] AXs0fdNDR2S0LBEknZYdxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.220 [XNIO-1 task-2] AXs0fdNDR2S0LBEknZYdxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.220 [XNIO-1 task-2] AXs0fdNDR2S0LBEknZYdxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.225 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:3105ca5f-8d18-483d-90ef-9a8e95013271 +16:40:11.228 [XNIO-1 task-2] j-KsZmYdSlCcliUxakL_8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:11.228 [XNIO-1 task-2] j-KsZmYdSlCcliUxakL_8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.228 [XNIO-1 task-2] j-KsZmYdSlCcliUxakL_8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.229 [XNIO-1 task-2] j-KsZmYdSlCcliUxakL_8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:11.231 [XNIO-1 task-2] uODRl_LUQl2OtJlii2Vgyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e183cb58, base path is set to: null +16:40:11.231 [XNIO-1 task-2] uODRl_LUQl2OtJlii2Vgyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.231 [XNIO-1 task-2] uODRl_LUQl2OtJlii2Vgyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.231 [XNIO-1 task-2] uODRl_LUQl2OtJlii2Vgyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.231 [XNIO-1 task-2] uODRl_LUQl2OtJlii2Vgyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e183cb58, base path is set to: null +16:40:11.231 [XNIO-1 task-2] uODRl_LUQl2OtJlii2Vgyw DEBUG com.networknt.schema.TypeValidator debug - validate( "e183cb58", "e183cb58", serviceId) +16:40:11.234 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.234 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.234 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.234 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.234 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.234 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG com.networknt.schema.TypeValidator debug - validate( "9dea83c1-17a9-449d-88dc-9acd68159eda", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.235 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG com.networknt.schema.TypeValidator debug - validate( "e183cb58", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.235 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.235 [XNIO-1 task-2] Zx70yuI-RG6NmG18FNG3wA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e183cb58","serviceName":"0d4fe1bb-da7e-48e7-ab7b-cd91c2b8","serviceDesc":"9dea83c1-17a9-449d-88dc-9acd68159eda","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.245 [XNIO-1 task-2] mYgAjJOQS8CsFYdOL9Aaeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.245 [XNIO-1 task-2] mYgAjJOQS8CsFYdOL9Aaeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.245 [XNIO-1 task-2] mYgAjJOQS8CsFYdOL9Aaeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.245 [XNIO-1 task-2] mYgAjJOQS8CsFYdOL9Aaeg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.251 [XNIO-1 task-2] 98qSDPnzQNi1Tbqe8ykn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ccaac653 +16:40:11.251 [XNIO-1 task-2] 98qSDPnzQNi1Tbqe8ykn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.251 [XNIO-1 task-2] 98qSDPnzQNi1Tbqe8ykn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.251 [XNIO-1 task-2] 98qSDPnzQNi1Tbqe8ykn1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ccaac653 +16:40:11.254 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.254 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.254 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.255 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.255 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.255 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.255 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.255 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "260110ab-9b4c-4c9e-8c41-4f2bf843", {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.255 [XNIO-1 task-2] xdMXPwzEQW-oxLR8ATrX3Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ccaac653","serviceName":"260110ab-9b4c-4c9e-8c41-4f2bf843","serviceDesc":"4ed1715c-60bd-4b8d-8a2c-a242b0936d8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.261 [XNIO-1 task-2] binEB7NkRiC0acLqbuz5AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5f7b4eb, base path is set to: null +16:40:11.261 [XNIO-1 task-2] binEB7NkRiC0acLqbuz5AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.261 [XNIO-1 task-2] binEB7NkRiC0acLqbuz5AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.261 [XNIO-1 task-2] binEB7NkRiC0acLqbuz5AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5f7b4eb, base path is set to: null +16:40:11.261 [XNIO-1 task-2] binEB7NkRiC0acLqbuz5AA DEBUG com.networknt.schema.TypeValidator debug - validate( "d5f7b4eb", "d5f7b4eb", serviceId) +16:40:11.264 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9641e34d-15dc-47e3-9fc1-89650873d36e", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d5f7b4eb", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.265 [XNIO-1 task-2] tgzSkV2qQTymJ9kBVfyv2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5f7b4eb","serviceName":"0e58b1cd-da3d-48d4-92f8-7f1dedc1","serviceDesc":"9641e34d-15dc-47e3-9fc1-89650873d36e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.273 [XNIO-1 task-2] H3ZWyKQVQmSCO945TJ-Nag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6ea16b1c +16:40:11.273 [XNIO-1 task-2] H3ZWyKQVQmSCO945TJ-Nag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.273 [XNIO-1 task-2] H3ZWyKQVQmSCO945TJ-Nag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.273 [XNIO-1 task-2] H3ZWyKQVQmSCO945TJ-Nag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6ea16b1c +16:40:11.273 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6ea16b1c +16:40:11.281 [XNIO-1 task-2] rXYZhl_HQMmoNdMXZQWwUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.281 [XNIO-1 task-2] rXYZhl_HQMmoNdMXZQWwUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.281 [XNIO-1 task-2] rXYZhl_HQMmoNdMXZQWwUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.281 [XNIO-1 task-2] rXYZhl_HQMmoNdMXZQWwUA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.286 [XNIO-1 task-2] RKxOnxsXR4WCKX8XOv_u9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.286 [XNIO-1 task-2] RKxOnxsXR4WCKX8XOv_u9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.286 [XNIO-1 task-2] RKxOnxsXR4WCKX8XOv_u9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.286 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:074fc866 +16:40:11.287 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:074fc866 +16:40:11.291 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:07aba125 +16:40:11.294 [XNIO-1 task-2] JYiEtsOORieAgAVKsY-tMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:11.294 [XNIO-1 task-2] JYiEtsOORieAgAVKsY-tMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.294 [XNIO-1 task-2] JYiEtsOORieAgAVKsY-tMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.294 [XNIO-1 task-2] JYiEtsOORieAgAVKsY-tMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e183cb58 +16:40:11.297 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.297 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.298 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.298 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.298 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.298 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.298 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.298 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG com.networknt.schema.TypeValidator debug - validate( "d1878ac3-3f01-4ce2-88a6-84106dab", {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.298 [XNIO-1 task-2] Dfh3ZNfURcC8rqGZSbzzVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"074fc866","serviceName":"d1878ac3-3f01-4ce2-88a6-84106dab","serviceDesc":"b2398220-b35e-408b-b057-c55f98f8dadd","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.298 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:074fc866 +16:40:11.305 [XNIO-1 task-2] VTeveYklSjSw3HGJM4hudA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e183cb58, base path is set to: null +16:40:11.305 [XNIO-1 task-2] VTeveYklSjSw3HGJM4hudA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.305 [XNIO-1 task-2] VTeveYklSjSw3HGJM4hudA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.305 [XNIO-1 task-2] VTeveYklSjSw3HGJM4hudA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e183cb58, base path is set to: null +16:40:11.305 [XNIO-1 task-2] VTeveYklSjSw3HGJM4hudA DEBUG com.networknt.schema.TypeValidator debug - validate( "e183cb58", "e183cb58", serviceId) +16:40:11.314 [XNIO-1 task-2] 00VK06rtTCySzkPPZTUAYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:11.314 [XNIO-1 task-2] 00VK06rtTCySzkPPZTUAYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.314 [XNIO-1 task-2] 00VK06rtTCySzkPPZTUAYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.315 [XNIO-1 task-2] 00VK06rtTCySzkPPZTUAYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:11.315 [XNIO-1 task-2] 00VK06rtTCySzkPPZTUAYw DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", "8e7aaf7a", serviceId) +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG com.networknt.schema.TypeValidator debug - validate( "5386bb2f-bac3-4745-a116-8cfc1c414224", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.318 [XNIO-1 task-2] DDaYGqO_QcKjVM7uXlRvHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.327 [XNIO-1 task-2] _1riO84XQvORQG_PmzENNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.328 [XNIO-1 task-2] _1riO84XQvORQG_PmzENNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.328 [XNIO-1 task-2] _1riO84XQvORQG_PmzENNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.337 [XNIO-1 task-2] Zv13z4G4QGOax5IMS9Q3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.337 [XNIO-1 task-2] Zv13z4G4QGOax5IMS9Q3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.337 [XNIO-1 task-2] Zv13z4G4QGOax5IMS9Q3zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.346 [XNIO-1 task-2] MEwZV7SyRsKZJt36hkGA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5abb7fc +16:40:11.346 [XNIO-1 task-2] MEwZV7SyRsKZJt36hkGA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.346 [XNIO-1 task-2] MEwZV7SyRsKZJt36hkGA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.346 [XNIO-1 task-2] MEwZV7SyRsKZJt36hkGA4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5abb7fc +16:40:11.352 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.352 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.353 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.353 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.353 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.353 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.353 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.353 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG com.networknt.schema.TypeValidator debug - validate( "55098e04-e766-44c2-beb5-5c27547e", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.353 [XNIO-1 task-2] z-9GEguYQhO6CNpeHlWMqg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.357 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:07aba125 +16:40:11.362 [XNIO-1 task-2] DXMNqXXYR-im_aAui2My6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/074fc866, base path is set to: null +16:40:11.362 [XNIO-1 task-2] DXMNqXXYR-im_aAui2My6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.363 [XNIO-1 task-2] DXMNqXXYR-im_aAui2My6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.363 [XNIO-1 task-2] DXMNqXXYR-im_aAui2My6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/074fc866, base path is set to: null +16:40:11.363 [XNIO-1 task-2] DXMNqXXYR-im_aAui2My6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "074fc866", "074fc866", serviceId) +16:40:11.363 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:074fc866 +16:40:11.366 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:07aba125 +16:40:11.368 [XNIO-1 task-2] OoO4tFjuSFOcmKfrP5OXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a2d74e7a +16:40:11.368 [XNIO-1 task-2] OoO4tFjuSFOcmKfrP5OXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.369 [XNIO-1 task-2] OoO4tFjuSFOcmKfrP5OXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.369 [XNIO-1 task-2] OoO4tFjuSFOcmKfrP5OXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a2d74e7a +16:40:11.371 [XNIO-1 task-2] yZBfC6fbQoSE0uVbRSAjNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58128dc0, base path is set to: null +16:40:11.371 [XNIO-1 task-2] yZBfC6fbQoSE0uVbRSAjNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.371 [XNIO-1 task-2] yZBfC6fbQoSE0uVbRSAjNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.371 [XNIO-1 task-2] yZBfC6fbQoSE0uVbRSAjNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58128dc0, base path is set to: null +16:40:11.371 [XNIO-1 task-2] yZBfC6fbQoSE0uVbRSAjNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "58128dc0", "58128dc0", serviceId) +16:40:11.374 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.374 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.375 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.375 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.375 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.375 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG com.networknt.schema.TypeValidator debug - validate( "5386bb2f-bac3-4745-a116-8cfc1c414224", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.375 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.375 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.375 [XNIO-1 task-2] vAzAK-51TpKyn1Kw1_Qutw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.385 [XNIO-1 task-2] vy_MDGRZTy2Z7UUoHWQF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.385 [XNIO-1 task-2] vy_MDGRZTy2Z7UUoHWQF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.385 [XNIO-1 task-2] vy_MDGRZTy2Z7UUoHWQF4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.386 [XNIO-1 task-2] vy_MDGRZTy2Z7UUoHWQF4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.386 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cb3cc03a +16:40:11.398 [XNIO-1 task-2] HZ816XvMTX682U-AJHsSrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:11.398 [XNIO-1 task-2] HZ816XvMTX682U-AJHsSrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.398 [XNIO-1 task-2] HZ816XvMTX682U-AJHsSrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.398 [XNIO-1 task-2] HZ816XvMTX682U-AJHsSrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.400 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG com.networknt.schema.TypeValidator debug - validate( "95b1cdfd-dfe5-4062-8e7b-08542eea", {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.401 [XNIO-1 task-2] hvZfkarOQAGuoYY1FRSnHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a2d74e7a","serviceName":"95b1cdfd-dfe5-4062-8e7b-08542eea","serviceDesc":"dbd072a8-b454-433f-83a4-f46e7eceec37","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.404 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb3cc03a +16:40:11.407 [XNIO-1 task-2] dXVTsrl3Q3G8Df82A_CAbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.407 [XNIO-1 task-2] dXVTsrl3Q3G8Df82A_CAbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.408 [XNIO-1 task-2] dXVTsrl3Q3G8Df82A_CAbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.408 [XNIO-1 task-2] dXVTsrl3Q3G8Df82A_CAbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.412 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cb3cc03a +16:40:11.413 [XNIO-1 task-2] EEVV1rGVS9CZZQyeYDti3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.414 [XNIO-1 task-2] EEVV1rGVS9CZZQyeYDti3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.414 [XNIO-1 task-2] EEVV1rGVS9CZZQyeYDti3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.414 [XNIO-1 task-2] EEVV1rGVS9CZZQyeYDti3w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.422 [XNIO-1 task-2] xojXSCXoRpK_JXUSTmkshw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5f7b4eb, base path is set to: null +16:40:11.422 [XNIO-1 task-2] xojXSCXoRpK_JXUSTmkshw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.422 [XNIO-1 task-2] xojXSCXoRpK_JXUSTmkshw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.422 [XNIO-1 task-2] xojXSCXoRpK_JXUSTmkshw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5f7b4eb, base path is set to: null +16:40:11.422 [XNIO-1 task-2] xojXSCXoRpK_JXUSTmkshw DEBUG com.networknt.schema.TypeValidator debug - validate( "d5f7b4eb", "d5f7b4eb", serviceId) +16:40:11.425 [XNIO-1 task-2] 0urTKCf_QJWXJRgAKPRWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.425 [XNIO-1 task-2] 0urTKCf_QJWXJRgAKPRWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.425 [XNIO-1 task-2] 0urTKCf_QJWXJRgAKPRWLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.433 [XNIO-1 task-2] En998aNjQaiUM9mUSpZl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5f7b4eb +16:40:11.433 [XNIO-1 task-2] En998aNjQaiUM9mUSpZl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.434 [XNIO-1 task-2] En998aNjQaiUM9mUSpZl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.434 [XNIO-1 task-2] En998aNjQaiUM9mUSpZl5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5f7b4eb +16:40:11.434 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:53d7d678-2cd9-4b6e-9dde-f9e8b9529ab6 +16:40:11.444 [XNIO-1 task-2] lbdJuS8EQgOdUlLLHqETAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.445 [XNIO-1 task-2] lbdJuS8EQgOdUlLLHqETAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.445 [XNIO-1 task-2] lbdJuS8EQgOdUlLLHqETAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.454 [XNIO-1 task-2] a0e-0AvESCCyHxJR7N2YGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.455 [XNIO-1 task-2] a0e-0AvESCCyHxJR7N2YGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.455 [XNIO-1 task-2] a0e-0AvESCCyHxJR7N2YGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.461 [XNIO-1 task-2] 6mXiOSrmQfCaCDXh90St7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.461 [XNIO-1 task-2] 6mXiOSrmQfCaCDXh90St7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.461 [XNIO-1 task-2] 6mXiOSrmQfCaCDXh90St7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.467 [XNIO-1 task-2] YKtf7ryDRHy53lhKc3mdTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.468 [XNIO-1 task-2] YKtf7ryDRHy53lhKc3mdTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.468 [XNIO-1 task-2] YKtf7ryDRHy53lhKc3mdTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.476 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e +16:40:11.476 [XNIO-1 task-2] pAZx8evZQ-6gAZzGKxTCCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.476 [XNIO-1 task-2] pAZx8evZQ-6gAZzGKxTCCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.476 [XNIO-1 task-2] pAZx8evZQ-6gAZzGKxTCCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.478 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e7cdfc7c-a28e-4acf-9fb4-cc3edd7d082e +16:40:11.488 [XNIO-1 task-2] lfa1EnYARNe1gWyOefpyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.488 [XNIO-1 task-2] lfa1EnYARNe1gWyOefpyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.488 [XNIO-1 task-2] lfa1EnYARNe1gWyOefpyxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.488 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9db528fb +16:40:11.493 [XNIO-1 task-2] Hgq5ANSKQWWriU3CK7CefQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.493 [XNIO-1 task-2] Hgq5ANSKQWWriU3CK7CefQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.493 [XNIO-1 task-2] Hgq5ANSKQWWriU3CK7CefQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.493 [XNIO-1 task-2] Hgq5ANSKQWWriU3CK7CefQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.503 [XNIO-1 task-2] 1eqvGw_7S4i4WbyjDpUKlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.503 [XNIO-1 task-2] 1eqvGw_7S4i4WbyjDpUKlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.503 [XNIO-1 task-2] 1eqvGw_7S4i4WbyjDpUKlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.519 [XNIO-1 task-2] -ZtROt4QScmCzKUAXtAyBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b65dcdc, base path is set to: null +16:40:11.519 [XNIO-1 task-2] -ZtROt4QScmCzKUAXtAyBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.520 [XNIO-1 task-2] -ZtROt4QScmCzKUAXtAyBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.520 [XNIO-1 task-2] -ZtROt4QScmCzKUAXtAyBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8b65dcdc, base path is set to: null +16:40:11.520 [XNIO-1 task-2] -ZtROt4QScmCzKUAXtAyBg DEBUG com.networknt.schema.TypeValidator debug - validate( "8b65dcdc", "8b65dcdc", serviceId) +16:40:11.548 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7347d107-04bc-4f0a-9fa9-cb4e01201fd4 +16:40:11.549 [XNIO-1 task-2] ssB7OxhyQrKXn6-7CCGlag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.550 [XNIO-1 task-2] ssB7OxhyQrKXn6-7CCGlag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.550 [XNIO-1 task-2] ssB7OxhyQrKXn6-7CCGlag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.559 [XNIO-1 task-2] lIYFhXfHSDGjntgIbMUVIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ccaac653, base path is set to: null +16:40:11.559 [XNIO-1 task-2] lIYFhXfHSDGjntgIbMUVIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.559 [XNIO-1 task-2] lIYFhXfHSDGjntgIbMUVIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.559 [XNIO-1 task-2] lIYFhXfHSDGjntgIbMUVIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ccaac653, base path is set to: null +16:40:11.559 [XNIO-1 task-2] lIYFhXfHSDGjntgIbMUVIg DEBUG com.networknt.schema.TypeValidator debug - validate( "ccaac653", "ccaac653", serviceId) +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG com.networknt.schema.TypeValidator debug - validate( "0465fb80-3198-4a16-9312-f3055be24b75", {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG com.networknt.schema.TypeValidator debug - validate( "d796757c", {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.569 [XNIO-1 task-2] D4FAqe9PTtmCwWSIx59K7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d796757c","serviceName":"ad370055-9927-49d7-8053-ee4ef032","serviceDesc":"0465fb80-3198-4a16-9312-f3055be24b75","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.575 [XNIO-1 task-2] DsJkGC-pQWCd9hecmsCn3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5a084d8e +16:40:11.576 [XNIO-1 task-2] DsJkGC-pQWCd9hecmsCn3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.576 [XNIO-1 task-2] DsJkGC-pQWCd9hecmsCn3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.576 [XNIO-1 task-2] DsJkGC-pQWCd9hecmsCn3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5a084d8e +16:40:11.599 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.599 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.599 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.599 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.599 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.599 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.600 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.600 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG com.networknt.schema.TypeValidator debug - validate( "55098e04-e766-44c2-beb5-5c27547e", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.600 [XNIO-1 task-2] NuyB8Uu3SqibY5Vt41RULg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.602 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:cb3cc03a +16:40:11.606 [XNIO-1 task-2] 4W2FTk9qQ4mRANyRyz85Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.606 [XNIO-1 task-2] 4W2FTk9qQ4mRANyRyz85Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.606 [XNIO-1 task-2] 4W2FTk9qQ4mRANyRyz85Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.614 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.614 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.614 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.614 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.614 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.615 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG com.networknt.schema.TypeValidator debug - validate( "300be6de-2eb9-42f9-ab60-de57c619c7b0", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.615 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.615 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.615 [XNIO-1 task-2] Ey0bssQsShOd0fVmR7P5xw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.616 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:07aba125 +16:40:11.623 [XNIO-1 task-2] F2U2leYuStiQX46Q9fSaoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/771c6ca2 +16:40:11.623 [XNIO-1 task-2] F2U2leYuStiQX46Q9fSaoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.623 [XNIO-1 task-2] F2U2leYuStiQX46Q9fSaoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.623 [XNIO-1 task-2] F2U2leYuStiQX46Q9fSaoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/771c6ca2 +16:40:11.629 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.629 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.629 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.629 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.629 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.629 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.629 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.630 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f15267a-82e1-4096-9e78-8c44b55a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.630 [XNIO-1 task-2] RAnn4tGiTNqvJXQrwp7eZQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.639 [XNIO-1 task-2] SVZt8STXTfGj2DbozJJ5KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.639 [XNIO-1 task-2] SVZt8STXTfGj2DbozJJ5KQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.640 [XNIO-1 task-2] SVZt8STXTfGj2DbozJJ5KQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.645 [XNIO-1 task-2] dKrZnR6tRR28jti6N0Z_9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3a9d6eb9, base path is set to: null +16:40:11.645 [XNIO-1 task-2] dKrZnR6tRR28jti6N0Z_9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.645 [XNIO-1 task-2] dKrZnR6tRR28jti6N0Z_9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.645 [XNIO-1 task-2] dKrZnR6tRR28jti6N0Z_9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3a9d6eb9, base path is set to: null +16:40:11.645 [XNIO-1 task-2] dKrZnR6tRR28jti6N0Z_9g DEBUG com.networknt.schema.TypeValidator debug - validate( "3a9d6eb9", "3a9d6eb9", serviceId) +16:40:11.647 [XNIO-1 task-2] DlTmebPXTkmsjN_KsTUXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.647 [XNIO-1 task-2] DlTmebPXTkmsjN_KsTUXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.647 [XNIO-1 task-2] DlTmebPXTkmsjN_KsTUXvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.649 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.654 [XNIO-1 task-2] _jRGYrp5T2W3IC1_iditvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9db528fb +16:40:11.654 [XNIO-1 task-2] _jRGYrp5T2W3IC1_iditvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.654 [XNIO-1 task-2] _jRGYrp5T2W3IC1_iditvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.654 [XNIO-1 task-2] _jRGYrp5T2W3IC1_iditvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9db528fb +16:40:11.655 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9db528fb +16:40:11.662 [XNIO-1 task-2] ZLTSYpc3SE2JX8ORSOWgww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.663 [XNIO-1 task-2] ZLTSYpc3SE2JX8ORSOWgww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.663 [XNIO-1 task-2] ZLTSYpc3SE2JX8ORSOWgww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.663 [XNIO-1 task-2] ZLTSYpc3SE2JX8ORSOWgww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.674 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.674 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.674 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.675 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.675 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.675 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.675 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:11.675 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG com.networknt.schema.TypeValidator debug - validate( "056043ab-074f-45f0-98f2-2c03f9ff", {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:11.675 [XNIO-1 task-2] bhFcXuD5QFKDVbTETQWhQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.734 [XNIO-1 task-2] I_ryKdEcQQ6vEnsOUCh2_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a2d74e7a, base path is set to: null +16:40:11.734 [XNIO-1 task-2] I_ryKdEcQQ6vEnsOUCh2_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.734 [XNIO-1 task-2] I_ryKdEcQQ6vEnsOUCh2_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.734 [XNIO-1 task-2] I_ryKdEcQQ6vEnsOUCh2_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a2d74e7a, base path is set to: null +16:40:11.734 [XNIO-1 task-2] I_ryKdEcQQ6vEnsOUCh2_A DEBUG com.networknt.schema.TypeValidator debug - validate( "a2d74e7a", "a2d74e7a", serviceId) +16:40:11.739 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:07aba125 +16:40:11.746 [XNIO-1 task-2] _OwBe9ZjQi2zj95nV9gELQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.746 [XNIO-1 task-2] _OwBe9ZjQi2zj95nV9gELQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.746 [XNIO-1 task-2] _OwBe9ZjQi2zj95nV9gELQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.746 [XNIO-1 task-2] _OwBe9ZjQi2zj95nV9gELQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.778 [XNIO-1 task-2] WWWL_FK-SUqUASim1tqZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa7dd748 +16:40:11.778 [XNIO-1 task-2] WWWL_FK-SUqUASim1tqZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.778 [XNIO-1 task-2] WWWL_FK-SUqUASim1tqZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:11.778 [XNIO-1 task-2] WWWL_FK-SUqUASim1tqZIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fa7dd748 +16:40:11.789 [XNIO-1 task-2] v68aSLgOQ4uVvasH6KbjGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58128dc0, base path is set to: null +16:40:11.790 [XNIO-1 task-2] v68aSLgOQ4uVvasH6KbjGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.790 [XNIO-1 task-2] v68aSLgOQ4uVvasH6KbjGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.790 [XNIO-1 task-2] v68aSLgOQ4uVvasH6KbjGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58128dc0, base path is set to: null +16:40:11.790 [XNIO-1 task-2] v68aSLgOQ4uVvasH6KbjGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "58128dc0", "58128dc0", serviceId) +16:40:11.796 [XNIO-1 task-2] iviaFpKnRqWLQG5ovW2Wrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.796 [XNIO-1 task-2] iviaFpKnRqWLQG5ovW2Wrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.796 [XNIO-1 task-2] iviaFpKnRqWLQG5ovW2Wrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.796 [XNIO-1 task-2] iviaFpKnRqWLQG5ovW2Wrw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.854 [XNIO-1 task-2] MzL0IbcTShq0HwzWhWeNzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.854 [XNIO-1 task-2] MzL0IbcTShq0HwzWhWeNzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.854 [XNIO-1 task-2] MzL0IbcTShq0HwzWhWeNzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:11.855 [XNIO-1 task-2] MzL0IbcTShq0HwzWhWeNzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.971 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6390bda7-a01a-4dee-a69a-f06073a731db +16:40:11.972 [XNIO-1 task-2] j8CvuAa-Ssik-U83BTFTBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.973 [XNIO-1 task-2] j8CvuAa-Ssik-U83BTFTBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.973 [XNIO-1 task-2] j8CvuAa-Ssik-U83BTFTBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.982 [XNIO-1 task-2] UP_p1UCHTPKmQXA7xJgkqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:11.983 [XNIO-1 task-2] UP_p1UCHTPKmQXA7xJgkqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:11.983 [XNIO-1 task-2] UP_p1UCHTPKmQXA7xJgkqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:11.983 [XNIO-1 task-2] UP_p1UCHTPKmQXA7xJgkqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:11.983 [XNIO-1 task-2] UP_p1UCHTPKmQXA7xJgkqA DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", "8e7aaf7a", serviceId) +16:40:11.989 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.989 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.989 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.989 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.990 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.990 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0f950313-61d9-4afe-a88b-cc3d850bfdc5", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.990 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21100431", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.990 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.990 [XNIO-1 task-2] bD6ED2-AQSW5Di96BZFXzQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.998 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.998 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.998 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:11.999 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:11.999 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:11.999 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "01bc44c3-813c-4f3e-819f-e9550d28c616", {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:11.999 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6910ce71", {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:11.999 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:11.999 [XNIO-1 task-2] WNeo1uxHSueVDHNqY0IU4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.009 [XNIO-1 task-2] B85wzBe4RjOLYzPgA49GuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:12.009 [XNIO-1 task-2] B85wzBe4RjOLYzPgA49GuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.009 [XNIO-1 task-2] B85wzBe4RjOLYzPgA49GuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.009 [XNIO-1 task-2] B85wzBe4RjOLYzPgA49GuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4729b497 +16:40:12.014 [XNIO-1 task-2] 7UCfWpr8S-WQCO8pYQwb8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1222a51b, base path is set to: null +16:40:12.014 [XNIO-1 task-2] 7UCfWpr8S-WQCO8pYQwb8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.014 [XNIO-1 task-2] 7UCfWpr8S-WQCO8pYQwb8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:12.014 [XNIO-1 task-2] 7UCfWpr8S-WQCO8pYQwb8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1222a51b, base path is set to: null +16:40:12.014 [XNIO-1 task-2] 7UCfWpr8S-WQCO8pYQwb8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1222a51b", "1222a51b", serviceId) +16:40:12.026 [XNIO-1 task-2] NKM8Yy2nQlOoy0ebEWs6MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8901f7a +16:40:12.026 [XNIO-1 task-2] NKM8Yy2nQlOoy0ebEWs6MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.026 [XNIO-1 task-2] NKM8Yy2nQlOoy0ebEWs6MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.026 [XNIO-1 task-2] NKM8Yy2nQlOoy0ebEWs6MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8901f7a +16:40:12.028 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.028 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.029 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.029 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.029 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.029 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.029 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.029 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG com.networknt.schema.TypeValidator debug - validate( "ae0ed8e3-80f9-4cf9-9958-e29aadf3", {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.029 [XNIO-1 task-2] SmqOfuP1SeeOEraiDeAYRg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.037 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.037 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.037 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.038 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.038 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.038 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.038 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.038 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9badc645-b4db-468b-83b9-0454e1b3", {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.038 [XNIO-1 task-2] if14HY7eQdqDEkGn_Z_4QQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f4fad1e1","serviceName":"9badc645-b4db-468b-83b9-0454e1b3","serviceDesc":"bc00d725-85fd-4ee2-99a5-1685a45b8d24","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.041 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fe799b36-4345-430d-9500-afb719b56609 +16:40:12.047 [XNIO-1 task-2] T_GIhUNITFG0Eup75HVfAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6910ce71, base path is set to: null +16:40:12.047 [XNIO-1 task-2] T_GIhUNITFG0Eup75HVfAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.047 [XNIO-1 task-2] T_GIhUNITFG0Eup75HVfAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:12.047 [XNIO-1 task-2] T_GIhUNITFG0Eup75HVfAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6910ce71, base path is set to: null +16:40:12.047 [XNIO-1 task-2] T_GIhUNITFG0Eup75HVfAA DEBUG com.networknt.schema.TypeValidator debug - validate( "6910ce71", "6910ce71", serviceId) +16:40:12.056 [XNIO-1 task-2] 1XuD8Za4SOSD_F_h9AUE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8901f7a +16:40:12.056 [XNIO-1 task-2] 1XuD8Za4SOSD_F_h9AUE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.056 [XNIO-1 task-2] 1XuD8Za4SOSD_F_h9AUE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.056 [XNIO-1 task-2] 1XuD8Za4SOSD_F_h9AUE9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8901f7a +16:40:12.062 [XNIO-1 task-2] BHwNcWYxS3ymyTXC8zZgkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.062 [XNIO-1 task-2] BHwNcWYxS3ymyTXC8zZgkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.062 [XNIO-1 task-2] BHwNcWYxS3ymyTXC8zZgkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.072 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.072 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.073 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.073 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.073 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.073 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.073 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.073 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG com.networknt.schema.TypeValidator debug - validate( "5330b7b6-4876-4995-ad69-95d00677", {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.073 [XNIO-1 task-2] PbNqNvFyRfSwOdCf1AfUaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6910ce71","serviceName":"5330b7b6-4876-4995-ad69-95d00677","serviceDesc":"01bc44c3-813c-4f3e-819f-e9550d28c616","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.082 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fe799b36-4345-430d-9500-afb719b56609 +16:40:12.085 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.085 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.085 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.085 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.086 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.086 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG com.networknt.schema.TypeValidator debug - validate( "82bab225-20bf-4b53-a193-10895a7700e1", {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:12.086 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8901f7a", {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:12.086 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:12.086 [XNIO-1 task-2] 0YT5slhbSIm6olCTHP-haA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"a8901f7a","serviceName":"ae0ed8e3-80f9-4cf9-9958-e29aadf3","serviceDesc":"82bab225-20bf-4b53-a193-10895a7700e1","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.091 [XNIO-1 task-2] LUVAuOBqT_mFZZjyY8D2yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.091 [XNIO-1 task-2] LUVAuOBqT_mFZZjyY8D2yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.091 [XNIO-1 task-2] LUVAuOBqT_mFZZjyY8D2yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.103 [XNIO-1 task-2] 6LXz9lLGR3O3KP16sftPYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17a3d285, base path is set to: null +16:40:12.104 [XNIO-1 task-2] 6LXz9lLGR3O3KP16sftPYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.104 [XNIO-1 task-2] 6LXz9lLGR3O3KP16sftPYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:12.104 [XNIO-1 task-2] 6LXz9lLGR3O3KP16sftPYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/17a3d285, base path is set to: null +16:40:12.104 [XNIO-1 task-2] 6LXz9lLGR3O3KP16sftPYA DEBUG com.networknt.schema.TypeValidator debug - validate( "17a3d285", "17a3d285", serviceId) +16:40:12.117 [XNIO-1 task-2] hqQZIKS6RfS6SH07WaOl-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d796757c +16:40:12.117 [XNIO-1 task-2] hqQZIKS6RfS6SH07WaOl-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.117 [XNIO-1 task-2] hqQZIKS6RfS6SH07WaOl-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.117 [XNIO-1 task-2] hqQZIKS6RfS6SH07WaOl-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d796757c +16:40:12.125 [XNIO-1 task-2] RhYvYDKlRManCQky7S-R1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:12.125 [XNIO-1 task-2] RhYvYDKlRManCQky7S-R1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.125 [XNIO-1 task-2] RhYvYDKlRManCQky7S-R1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:12.125 [XNIO-1 task-2] RhYvYDKlRManCQky7S-R1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:12.125 [XNIO-1 task-2] RhYvYDKlRManCQky7S-R1w DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", "41c8f5fa", serviceId) +16:40:12.130 [XNIO-1 task-2] HiPxT1r-RQeVpWjq_SUlsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.131 [XNIO-1 task-2] HiPxT1r-RQeVpWjq_SUlsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.131 [XNIO-1 task-2] HiPxT1r-RQeVpWjq_SUlsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.131 [XNIO-1 task-2] HiPxT1r-RQeVpWjq_SUlsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.146 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.146 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.146 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.147 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.147 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.147 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG com.networknt.schema.TypeValidator debug - validate( "300be6de-2eb9-42f9-ab60-de57c619c7b0", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:12.147 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:12.147 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:12.147 [XNIO-1 task-2] 43Wf-f2YTUmPQl75tTeFiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.155 [XNIO-1 task-2] nIQWH7obRYaoF5OzQcO9Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:12.155 [XNIO-1 task-2] nIQWH7obRYaoF5OzQcO9Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.155 [XNIO-1 task-2] nIQWH7obRYaoF5OzQcO9Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.155 [XNIO-1 task-2] nIQWH7obRYaoF5OzQcO9Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:12.161 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.161 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.161 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.161 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.161 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.161 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.162 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.162 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "55098e04-e766-44c2-beb5-5c27547e", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.162 [XNIO-1 task-2] eJ4f6oUpQ_upjKLkA9qEXQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.171 [XNIO-1 task-2] rcRtX_xdRMCix8O0mal3Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f4fad1e1, base path is set to: null +16:40:12.172 [XNIO-1 task-2] rcRtX_xdRMCix8O0mal3Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.172 [XNIO-1 task-2] rcRtX_xdRMCix8O0mal3Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:12.172 [XNIO-1 task-2] rcRtX_xdRMCix8O0mal3Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f4fad1e1, base path is set to: null +16:40:12.172 [XNIO-1 task-2] rcRtX_xdRMCix8O0mal3Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "f4fad1e1", "f4fad1e1", serviceId) +16:40:12.175 [XNIO-1 task-2] m17wrEGUQUKGzA1Z_HdqVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ba1f97bb +16:40:12.175 [XNIO-1 task-2] m17wrEGUQUKGzA1Z_HdqVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.175 [XNIO-1 task-2] m17wrEGUQUKGzA1Z_HdqVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.176 [XNIO-1 task-2] m17wrEGUQUKGzA1Z_HdqVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ba1f97bb +16:40:12.192 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.192 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.192 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.192 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.193 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.193 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.193 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.193 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG com.networknt.schema.TypeValidator debug - validate( "e3fb8c97-c58d-4ae3-8184-2b6d00db", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.193 [XNIO-1 task-2] 4cRhaHT1SMWvQQTSEhy-1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.197 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.198 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.203 [XNIO-1 task-2] ysSYyPbERzqmlDmKsz8whA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f4fad1e1 +16:40:12.203 [XNIO-1 task-2] ysSYyPbERzqmlDmKsz8whA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.203 [XNIO-1 task-2] ysSYyPbERzqmlDmKsz8whA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.203 [XNIO-1 task-2] ysSYyPbERzqmlDmKsz8whA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f4fad1e1 +16:40:12.208 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fe56a4b0-fdaa-4dbd-a710-ac651f03e292 +16:40:12.210 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fe56a4b0-fdaa-4dbd-a710-ac651f03e292 +16:40:12.212 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5cda49f2-db67-4b7c-9adb-4b412c345251 +16:40:12.214 [XNIO-1 task-2] JvF57y4LTRKejUwiD9nbAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.215 [XNIO-1 task-2] JvF57y4LTRKejUwiD9nbAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.215 [XNIO-1 task-2] JvF57y4LTRKejUwiD9nbAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.215 [XNIO-1 task-2] JvF57y4LTRKejUwiD9nbAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.218 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2172d4cc-e204-4552-be3e-6210ae459a79 +16:40:12.225 [XNIO-1 task-2] BP53vAfZSk2zJT7JgfaiGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:12.226 [XNIO-1 task-2] BP53vAfZSk2zJT7JgfaiGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:12.226 [XNIO-1 task-2] BP53vAfZSk2zJT7JgfaiGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:12.226 [XNIO-1 task-2] BP53vAfZSk2zJT7JgfaiGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG com.networknt.schema.TypeValidator debug - validate( "e3fb8c97-c58d-4ae3-8184-2b6d00db", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.228 [XNIO-1 task-2] C8OCWl3qSfCTB8C8R2X2mw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.249 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.250 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.250 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.251 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.251 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.251 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.251 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.251 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "056043ab-074f-45f0-98f2-2c03f9ff", {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.251 [XNIO-1 task-2] ATh3_8H2TACOOImgnn6C7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3a9d6eb9","serviceName":"056043ab-074f-45f0-98f2-2c03f9ff","serviceDesc":"3a934a60-e5eb-4dbb-9b15-bf04baa93b26","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG com.networknt.schema.TypeValidator debug - validate( "cb658394-3deb-4fc3-b4c1-816396fb", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:12.266 [XNIO-1 task-2] i25PVqxLSFOotfVdgwXD9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:12.458 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fe799b36-4345-430d-9500-afb719b56609 +16:40:14.111 [XNIO-1 task-2] E3U66EtxQhirt4zKvJ6-nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6910ce71 +16:40:14.112 [XNIO-1 task-2] E3U66EtxQhirt4zKvJ6-nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.112 [XNIO-1 task-2] E3U66EtxQhirt4zKvJ6-nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.112 [XNIO-1 task-2] E3U66EtxQhirt4zKvJ6-nQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6910ce71 +16:40:14.124 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 +16:40:14.127 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 +16:40:14.134 [XNIO-1 task-2] emJQJYM9RHOAxljDfOPcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.134 [XNIO-1 task-2] emJQJYM9RHOAxljDfOPcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.134 [XNIO-1 task-2] emJQJYM9RHOAxljDfOPcwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.134 [XNIO-1 task-2] emJQJYM9RHOAxljDfOPcwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.154 [XNIO-1 task-2] xwVgmu0gQCWrqiQM2e8t8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9b2ab305 +16:40:14.154 [XNIO-1 task-2] xwVgmu0gQCWrqiQM2e8t8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.154 [XNIO-1 task-2] xwVgmu0gQCWrqiQM2e8t8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.154 [XNIO-1 task-2] xwVgmu0gQCWrqiQM2e8t8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9b2ab305 +16:40:14.158 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 +16:40:14.160 [XNIO-1 task-2] ll7J2zIBS2mitQVJQ8qAQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:14.160 [XNIO-1 task-2] ll7J2zIBS2mitQVJQ8qAQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.160 [XNIO-1 task-2] ll7J2zIBS2mitQVJQ8qAQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.161 [XNIO-1 task-2] ll7J2zIBS2mitQVJQ8qAQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG com.networknt.schema.TypeValidator debug - validate( "55098e04-e766-44c2-beb5-5c27547e", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.171 [XNIO-1 task-2] TMhbOiWiQjGI43qC-NU3qg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.179 [XNIO-1 task-2] fvDL1J7_R16y2dNCzk7JPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.179 [XNIO-1 task-2] fvDL1J7_R16y2dNCzk7JPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.179 [XNIO-1 task-2] fvDL1J7_R16y2dNCzk7JPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.193 [XNIO-1 task-2] yDuA2woITDuoja0mw39bCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.194 [XNIO-1 task-2] yDuA2woITDuoja0mw39bCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.194 [XNIO-1 task-2] yDuA2woITDuoja0mw39bCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.194 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 +16:40:14.194 [XNIO-1 task-2] yDuA2woITDuoja0mw39bCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.202 [XNIO-1 task-2] ubiKcCzrRJ2Fy7I4jebBTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.202 [XNIO-1 task-2] ubiKcCzrRJ2Fy7I4jebBTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.202 [XNIO-1 task-2] ubiKcCzrRJ2Fy7I4jebBTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.210 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fc7be5b0-bdbe-4821-8a31-3facb3111170 +16:40:14.217 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 +16:40:14.219 [XNIO-1 task-2] DTdAcxagTnqeja62TkzP0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.219 [XNIO-1 task-2] DTdAcxagTnqeja62TkzP0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.219 [XNIO-1 task-2] DTdAcxagTnqeja62TkzP0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.232 [XNIO-1 task-2] uhlQ6wQTSi2nKuX_MBDxSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.232 [XNIO-1 task-2] uhlQ6wQTSi2nKuX_MBDxSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.232 [XNIO-1 task-2] uhlQ6wQTSi2nKuX_MBDxSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.244 [XNIO-1 task-2] lvoW0GUWTxqI93ByrNgkaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.244 [XNIO-1 task-2] lvoW0GUWTxqI93ByrNgkaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.244 [XNIO-1 task-2] lvoW0GUWTxqI93ByrNgkaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.253 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.253 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.253 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.254 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.254 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.254 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.254 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.254 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG com.networknt.schema.TypeValidator debug - validate( "e3fb8c97-c58d-4ae3-8184-2b6d00db", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.254 [XNIO-1 task-2] JlHb9A65TxGwM-RmoJLWlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.264 [XNIO-1 task-2] 6QzrBVa0QD-9vPcOX_tVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5052a635, base path is set to: null +16:40:14.264 [XNIO-1 task-2] 6QzrBVa0QD-9vPcOX_tVVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.264 [XNIO-1 task-2] 6QzrBVa0QD-9vPcOX_tVVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:14.264 [XNIO-1 task-2] 6QzrBVa0QD-9vPcOX_tVVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5052a635, base path is set to: null +16:40:14.264 [XNIO-1 task-2] 6QzrBVa0QD-9vPcOX_tVVg DEBUG com.networknt.schema.TypeValidator debug - validate( "5052a635", "5052a635", serviceId) +16:40:14.274 [XNIO-1 task-2] -yCOS_KJRbuZq2ZL6C9bvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/211364f8 +16:40:14.274 [XNIO-1 task-2] -yCOS_KJRbuZq2ZL6C9bvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.274 [XNIO-1 task-2] -yCOS_KJRbuZq2ZL6C9bvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.274 [XNIO-1 task-2] -yCOS_KJRbuZq2ZL6C9bvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/211364f8 +16:40:14.277 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:dda7bed4-0858-4a46-a18b-bfd02a9a9d85 +16:40:14.278 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fe56a4b0-fdaa-4dbd-a710-ac651f03e292 +16:40:14.291 [XNIO-1 task-2] QPbqBjKTS4SYtVI-uZYRgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec15d4b5 +16:40:14.291 [XNIO-1 task-2] QPbqBjKTS4SYtVI-uZYRgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.291 [XNIO-1 task-2] QPbqBjKTS4SYtVI-uZYRgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.291 [XNIO-1 task-2] QPbqBjKTS4SYtVI-uZYRgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ec15d4b5 +16:40:14.297 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.297 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.298 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.298 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.298 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.298 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.298 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.298 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1f15267a-82e1-4096-9e78-8c44b55a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.298 [XNIO-1 task-2] H1Q0E7E7TGWvHdRQlaY8XQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.304 [XNIO-1 task-2] kJnli6FJQ76_JEyx_ufqCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4729b497, base path is set to: null +16:40:14.304 [XNIO-1 task-2] kJnli6FJQ76_JEyx_ufqCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.304 [XNIO-1 task-2] kJnli6FJQ76_JEyx_ufqCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:14.304 [XNIO-1 task-2] kJnli6FJQ76_JEyx_ufqCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4729b497, base path is set to: null +16:40:14.304 [XNIO-1 task-2] kJnli6FJQ76_JEyx_ufqCA DEBUG com.networknt.schema.TypeValidator debug - validate( "4729b497", "4729b497", serviceId) +16:40:14.315 [XNIO-1 task-2] Oa-HC2arRAqBG4s2sqZWfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8901f7a +16:40:14.315 [XNIO-1 task-2] Oa-HC2arRAqBG4s2sqZWfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.315 [XNIO-1 task-2] Oa-HC2arRAqBG4s2sqZWfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.315 [XNIO-1 task-2] Oa-HC2arRAqBG4s2sqZWfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/a8901f7a +16:40:14.319 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 +16:40:14.329 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.330 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.330 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.330 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.331 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.331 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG com.networknt.schema.TypeValidator debug - validate( "2d5aa046-b3ef-470e-9de0-5eb77604d52e", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:14.331 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG com.networknt.schema.TypeValidator debug - validate( "3c055339", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:14.331 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:14.331 [XNIO-1 task-2] geMTLytHSbKZ_rcvEQD15A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.342 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG com.networknt.schema.TypeValidator debug - validate( "0f950313-61d9-4afe-a88b-cc3d850bfdc5", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG com.networknt.schema.TypeValidator debug - validate( "21100431", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:14.343 [XNIO-1 task-2] vywtpOFKTI6RLQlj5j5WFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21100431","serviceName":"e3fb8c97-c58d-4ae3-8184-2b6d00db","serviceDesc":"0f950313-61d9-4afe-a88b-cc3d850bfdc5","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.357 [XNIO-1 task-2] 5qd2owwXRVOryLRcmGSBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.358 [XNIO-1 task-2] 5qd2owwXRVOryLRcmGSBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.358 [XNIO-1 task-2] 5qd2owwXRVOryLRcmGSBLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.366 [XNIO-1 task-2] ej8-4WtLSgqvoaZo4UPg8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.366 [XNIO-1 task-2] ej8-4WtLSgqvoaZo4UPg8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.366 [XNIO-1 task-2] ej8-4WtLSgqvoaZo4UPg8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.366 [XNIO-1 task-2] ej8-4WtLSgqvoaZo4UPg8g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.371 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fc7be5b0-bdbe-4821-8a31-3facb3111170 +16:40:14.381 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.381 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.381 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.382 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.382 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.382 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG com.networknt.schema.TypeValidator debug - validate( "2d5aa046-b3ef-470e-9de0-5eb77604d52e", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:14.382 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG com.networknt.schema.TypeValidator debug - validate( "3c055339", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:14.382 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:14.382 [XNIO-1 task-2] U-187lS7TsqV-Ca-8t5Nug DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.391 [XNIO-1 task-2] ibsJwqkPRoesPu-_RmJQ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.391 [XNIO-1 task-2] ibsJwqkPRoesPu-_RmJQ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.392 [XNIO-1 task-2] ibsJwqkPRoesPu-_RmJQ3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.392 [XNIO-1 task-2] ibsJwqkPRoesPu-_RmJQ3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.405 [XNIO-1 task-2] WiIZwgk5TQiEcLHuLXELhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3a9d6eb9 +16:40:14.405 [XNIO-1 task-2] WiIZwgk5TQiEcLHuLXELhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.405 [XNIO-1 task-2] WiIZwgk5TQiEcLHuLXELhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.405 [XNIO-1 task-2] WiIZwgk5TQiEcLHuLXELhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3a9d6eb9 +16:40:14.416 [XNIO-1 task-2] F41EXseWRFiXNgYFciBc6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.416 [XNIO-1 task-2] F41EXseWRFiXNgYFciBc6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.416 [XNIO-1 task-2] F41EXseWRFiXNgYFciBc6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.417 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:46bbcf4c +16:40:14.417 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:46bbcf4c +16:40:14.430 [XNIO-1 task-2] Oizp4tjRSeeglX08gR2TRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.430 [XNIO-1 task-2] Oizp4tjRSeeglX08gR2TRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.430 [XNIO-1 task-2] Oizp4tjRSeeglX08gR2TRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.431 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b8bf4669 +16:40:14.443 [XNIO-1 task-2] JHsXFbAgSt68x4itp3tjtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.443 [XNIO-1 task-2] JHsXFbAgSt68x4itp3tjtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.444 [XNIO-1 task-2] JHsXFbAgSt68x4itp3tjtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.444 [XNIO-1 task-2] JHsXFbAgSt68x4itp3tjtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.450 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4019495d-a4db-406b-89cf-8ad20ca5ee18 +16:40:14.452 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4019495d-a4db-406b-89cf-8ad20ca5ee18 +16:40:14.460 [XNIO-1 task-2] SzoEH1goRDCMJXXWNERFQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.460 [XNIO-1 task-2] SzoEH1goRDCMJXXWNERFQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.460 [XNIO-1 task-2] SzoEH1goRDCMJXXWNERFQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.460 [XNIO-1 task-2] SzoEH1goRDCMJXXWNERFQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.469 [XNIO-1 task-2] -bpSD6kYRJSYXqBKDJ4BgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.470 [XNIO-1 task-2] -bpSD6kYRJSYXqBKDJ4BgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.470 [XNIO-1 task-2] -bpSD6kYRJSYXqBKDJ4BgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.470 [XNIO-1 task-2] -bpSD6kYRJSYXqBKDJ4BgA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.482 [XNIO-1 task-2] OFYJjEimRPemc2qZlcHm-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.482 [XNIO-1 task-2] OFYJjEimRPemc2qZlcHm-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.482 [XNIO-1 task-2] OFYJjEimRPemc2qZlcHm-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.483 [XNIO-1 task-2] OFYJjEimRPemc2qZlcHm-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.502 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.502 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.502 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.502 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.502 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.502 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.502 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.503 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG com.networknt.schema.TypeValidator debug - validate( "1f15267a-82e1-4096-9e78-8c44b55a", {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.503 [XNIO-1 task-2] 6m2EsbXNRrG7JVjU7aOyjg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e7aaf7a","serviceName":"1f15267a-82e1-4096-9e78-8c44b55a","serviceDesc":"5386bb2f-bac3-4745-a116-8cfc1c414224","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.509 [XNIO-1 task-2] 81Mq_q7UQfKhJv_sXWvLtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:14.509 [XNIO-1 task-2] 81Mq_q7UQfKhJv_sXWvLtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.509 [XNIO-1 task-2] 81Mq_q7UQfKhJv_sXWvLtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:14.509 [XNIO-1 task-2] 81Mq_q7UQfKhJv_sXWvLtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:14.510 [XNIO-1 task-2] 81Mq_q7UQfKhJv_sXWvLtw DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", "41c8f5fa", serviceId) +16:40:14.516 [XNIO-1 task-2] 9gJUlzRqQdGRNA8abpUCcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.516 [XNIO-1 task-2] 9gJUlzRqQdGRNA8abpUCcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.516 [XNIO-1 task-2] 9gJUlzRqQdGRNA8abpUCcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.525 [XNIO-1 task-2] hlXUfteXQZ-E_WH7uFyGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41c8f5fa +16:40:14.525 [XNIO-1 task-2] hlXUfteXQZ-E_WH7uFyGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.525 [XNIO-1 task-2] hlXUfteXQZ-E_WH7uFyGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.525 [XNIO-1 task-2] hlXUfteXQZ-E_WH7uFyGBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41c8f5fa +16:40:14.526 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:2fe9da0d-d884-4d55-adb4-c674dc3266c2 +16:40:14.527 [XNIO-1 task-2] FxB4PIqaQbCUdNoOkaFwDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.527 [XNIO-1 task-2] FxB4PIqaQbCUdNoOkaFwDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.527 [XNIO-1 task-2] FxB4PIqaQbCUdNoOkaFwDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.528 [XNIO-1 task-2] FxB4PIqaQbCUdNoOkaFwDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.538 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cb658394-3deb-4fc3-b4c1-816396fb", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.539 [XNIO-1 task-2] Ne4ZnAkUSJKWwMKI7UZ8nQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.552 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.552 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.552 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.552 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.552 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.552 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.553 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.553 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG com.networknt.schema.TypeValidator debug - validate( "c2c56bb0-281a-47f6-9f62-fee44780", {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.553 [XNIO-1 task-2] Ln-8YPG_RW-PtdIopaZusg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8e4c7558","serviceName":"c2c56bb0-281a-47f6-9f62-fee44780","serviceDesc":"9f5a74f1-06ae-47ab-993a-8d6380069e2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "55098e04-e766-44c2-beb5-5c27547e", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.562 [XNIO-1 task-2] Nd-N2CkiSwigMzPdlbzWeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.578 [XNIO-1 task-2] DAA8JlPzRuuox9fcVGjAGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.579 [XNIO-1 task-2] DAA8JlPzRuuox9fcVGjAGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.579 [XNIO-1 task-2] DAA8JlPzRuuox9fcVGjAGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.579 [XNIO-1 task-2] DAA8JlPzRuuox9fcVGjAGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.579 [XNIO-1 task-2] DAA8JlPzRuuox9fcVGjAGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.587 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:edb8b318 +16:40:14.588 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:edb8b318 +16:40:14.590 [XNIO-1 task-2] f_eovYQHTmmrY2Ogk_3uOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.590 [XNIO-1 task-2] f_eovYQHTmmrY2Ogk_3uOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.590 [XNIO-1 task-2] f_eovYQHTmmrY2Ogk_3uOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.594 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:14c69c96-0adb-42c3-a5ec-1b5c40c0ad61 +16:40:14.600 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.600 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.600 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.601 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.601 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.601 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.601 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.601 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG com.networknt.schema.TypeValidator debug - validate( "d2366b47-c1bc-48f8-998f-07634fdd", {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.601 [XNIO-1 task-2] qIoaSF0_T6a1fuu1V30Faw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.603 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3a2a85da-4188-48c8-bba5-cacd4e350ddd +16:40:14.615 [XNIO-1 task-2] Trn9L8dBSxGq3H6wjyZ64A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.615 [XNIO-1 task-2] Trn9L8dBSxGq3H6wjyZ64A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.615 [XNIO-1 task-2] Trn9L8dBSxGq3H6wjyZ64A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.616 [XNIO-1 task-2] Trn9L8dBSxGq3H6wjyZ64A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.627 [XNIO-1 task-2] w2U2xtHwQMWRyHwdO0lp6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.627 [XNIO-1 task-2] w2U2xtHwQMWRyHwdO0lp6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.627 [XNIO-1 task-2] w2U2xtHwQMWRyHwdO0lp6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.637 [XNIO-1 task-2] 0wbl7h07SWOXG61KsEu2Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.637 [XNIO-1 task-2] 0wbl7h07SWOXG61KsEu2Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.638 [XNIO-1 task-2] 0wbl7h07SWOXG61KsEu2Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.651 [XNIO-1 task-2] tiL_41FGRrmu3_FvsY8b7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.651 [XNIO-1 task-2] tiL_41FGRrmu3_FvsY8b7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.651 [XNIO-1 task-2] tiL_41FGRrmu3_FvsY8b7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.656 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2fe9da0d-d884-4d55-adb4-c674dc3266c2 +16:40:14.660 [XNIO-1 task-2] ID8S-3itRCGJ8s-Vgh1L8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.660 [XNIO-1 task-2] ID8S-3itRCGJ8s-Vgh1L8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.660 [XNIO-1 task-2] ID8S-3itRCGJ8s-Vgh1L8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.668 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.668 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.668 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.668 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.668 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.668 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.669 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.669 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cb658394-3deb-4fc3-b4c1-816396fb", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.669 [XNIO-1 task-2] RUmqPMvVQNaw7kuzAgqRrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.687 [XNIO-1 task-2] hpHhe5E3SB6lV-mWkJFsIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8bf4669, base path is set to: null +16:40:14.687 [XNIO-1 task-2] hpHhe5E3SB6lV-mWkJFsIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.687 [XNIO-1 task-2] hpHhe5E3SB6lV-mWkJFsIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:14.687 [XNIO-1 task-2] hpHhe5E3SB6lV-mWkJFsIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8bf4669, base path is set to: null +16:40:14.687 [XNIO-1 task-2] hpHhe5E3SB6lV-mWkJFsIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b8bf4669", "b8bf4669", serviceId) +16:40:14.693 [XNIO-1 task-2] z7JSPY65QEa9sj_9C9tq4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.693 [XNIO-1 task-2] z7JSPY65QEa9sj_9C9tq4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.693 [XNIO-1 task-2] z7JSPY65QEa9sj_9C9tq4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.693 [XNIO-1 task-2] z7JSPY65QEa9sj_9C9tq4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.705 [XNIO-1 task-2] pw1KvCLUSdGweUZMphtaJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e4c7558 +16:40:14.705 [XNIO-1 task-2] pw1KvCLUSdGweUZMphtaJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.705 [XNIO-1 task-2] pw1KvCLUSdGweUZMphtaJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.705 [XNIO-1 task-2] pw1KvCLUSdGweUZMphtaJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8e4c7558 +16:40:14.713 [XNIO-1 task-2] 6uam0PmYQv-ZA2rTxy24-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.713 [XNIO-1 task-2] 6uam0PmYQv-ZA2rTxy24-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.713 [XNIO-1 task-2] 6uam0PmYQv-ZA2rTxy24-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.723 [XNIO-1 task-2] oRkVIilYS5G0i_W5lfe-qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.723 [XNIO-1 task-2] oRkVIilYS5G0i_W5lfe-qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.723 [XNIO-1 task-2] oRkVIilYS5G0i_W5lfe-qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.736 [XNIO-1 task-2] YEWOKSZPSbOVP4zOxGzZQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.737 [XNIO-1 task-2] YEWOKSZPSbOVP4zOxGzZQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.737 [XNIO-1 task-2] YEWOKSZPSbOVP4zOxGzZQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.746 [XNIO-1 task-2] _UBjLzcyS8C-gNOdE7Xs7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.746 [XNIO-1 task-2] _UBjLzcyS8C-gNOdE7Xs7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.746 [XNIO-1 task-2] _UBjLzcyS8C-gNOdE7Xs7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.753 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG com.networknt.schema.TypeValidator debug - validate( "8802d6fa-86c5-4e58-a4ea-bbe1393e", {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.754 [XNIO-1 task-2] xkrzr-qwTiWr08Wltm6k-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.755 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b8bf4669 +16:40:14.762 [XNIO-1 task-2] 2dPZDlGUQ1GtWzCiIFcLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/227c7615, base path is set to: null +16:40:14.763 [XNIO-1 task-2] 2dPZDlGUQ1GtWzCiIFcLsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.763 [XNIO-1 task-2] 2dPZDlGUQ1GtWzCiIFcLsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:14.763 [XNIO-1 task-2] 2dPZDlGUQ1GtWzCiIFcLsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/227c7615, base path is set to: null +16:40:14.763 [XNIO-1 task-2] 2dPZDlGUQ1GtWzCiIFcLsw DEBUG com.networknt.schema.TypeValidator debug - validate( "227c7615", "227c7615", serviceId) +16:40:14.771 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.771 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.771 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.771 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.772 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.772 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG com.networknt.schema.TypeValidator debug - validate( "7b6b1739-5653-4837-aa30-6e4faf37205a", {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:14.772 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG com.networknt.schema.TypeValidator debug - validate( "7f9efe57", {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:14.772 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:14.772 [XNIO-1 task-2] zGYy7cUTTdiYnUwzb_B1cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7f9efe57","serviceName":"40d727b6-7544-41fe-b24b-fff50446","serviceDesc":"7b6b1739-5653-4837-aa30-6e4faf37205a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.781 [XNIO-1 task-2] HGNH64CjRxOzw82gcc0emg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.781 [XNIO-1 task-2] HGNH64CjRxOzw82gcc0emg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.781 [XNIO-1 task-2] HGNH64CjRxOzw82gcc0emg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.784 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:03bcceab +16:40:14.796 [XNIO-1 task-2] MpH-jUkDSymkHpVbY4Aaag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.796 [XNIO-1 task-2] MpH-jUkDSymkHpVbY4Aaag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.796 [XNIO-1 task-2] MpH-jUkDSymkHpVbY4Aaag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.797 [XNIO-1 task-2] MpH-jUkDSymkHpVbY4Aaag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.805 [XNIO-1 task-2] FHCQcCueT9mKWQfq65AYAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.805 [XNIO-1 task-2] FHCQcCueT9mKWQfq65AYAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.805 [XNIO-1 task-2] FHCQcCueT9mKWQfq65AYAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.805 [XNIO-1 task-2] FHCQcCueT9mKWQfq65AYAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.816 [XNIO-1 task-2] gwCRow_6RT2wUb5MneQs2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.816 [XNIO-1 task-2] gwCRow_6RT2wUb5MneQs2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.816 [XNIO-1 task-2] gwCRow_6RT2wUb5MneQs2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.825 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.825 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.826 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.826 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.826 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.826 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:14.826 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:14.826 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG com.networknt.schema.TypeValidator debug - validate( "45b04d5f-adaa-4886-9906-a9426676", {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:14.826 [XNIO-1 task-2] 7Ox6RTyFRfil-HWYmVsqng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c055339","serviceName":"45b04d5f-adaa-4886-9906-a9426676","serviceDesc":"2d5aa046-b3ef-470e-9de0-5eb77604d52e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:14.828 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:edb8b318 +16:40:14.840 [XNIO-1 task-2] _WbZUtEbSn64N5dF6-ioDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.840 [XNIO-1 task-2] _WbZUtEbSn64N5dF6-ioDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.840 [XNIO-1 task-2] _WbZUtEbSn64N5dF6-ioDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.841 [XNIO-1 task-2] _WbZUtEbSn64N5dF6-ioDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.847 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be52e1b3 +16:40:14.848 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be52e1b3 +16:40:14.850 [XNIO-1 task-2] SmxOhOHeTVmMWH5ixyfSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/59bb0ccf +16:40:14.850 [XNIO-1 task-2] SmxOhOHeTVmMWH5ixyfSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.850 [XNIO-1 task-2] SmxOhOHeTVmMWH5ixyfSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.850 [XNIO-1 task-2] SmxOhOHeTVmMWH5ixyfSYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/59bb0ccf +16:40:14.853 [XNIO-1 task-2] PjqlffCITi-bGR3n8aaXDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.854 [XNIO-1 task-2] PjqlffCITi-bGR3n8aaXDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.854 [XNIO-1 task-2] PjqlffCITi-bGR3n8aaXDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.854 [XNIO-1 task-2] PjqlffCITi-bGR3n8aaXDg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.860 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:03bcceab +16:40:14.864 [XNIO-1 task-2] ozCTQ3f9RyiuAqEQLg7CaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/59bb0ccf +16:40:14.864 [XNIO-1 task-2] ozCTQ3f9RyiuAqEQLg7CaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.864 [XNIO-1 task-2] ozCTQ3f9RyiuAqEQLg7CaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.864 [XNIO-1 task-2] ozCTQ3f9RyiuAqEQLg7CaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/59bb0ccf +16:40:14.874 [XNIO-1 task-2] ybWCwzoOQ0S-aJ5DrnucTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.874 [XNIO-1 task-2] ybWCwzoOQ0S-aJ5DrnucTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.874 [XNIO-1 task-2] ybWCwzoOQ0S-aJ5DrnucTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.874 [XNIO-1 task-2] ybWCwzoOQ0S-aJ5DrnucTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.884 [XNIO-1 task-2] GFE_8xmmTEKDk5RIBEXIDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.885 [XNIO-1 task-2] GFE_8xmmTEKDk5RIBEXIDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.885 [XNIO-1 task-2] GFE_8xmmTEKDk5RIBEXIDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.885 [XNIO-1 task-2] GFE_8xmmTEKDk5RIBEXIDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.893 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:04c2716c-0fd5-495c-9111-e1698e3f2fc1 +16:40:14.894 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:04c2716c-0fd5-495c-9111-e1698e3f2fc1 +16:40:14.895 [XNIO-1 task-2] n5-QKsUOTtiau6AKCb6ypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.895 [XNIO-1 task-2] n5-QKsUOTtiau6AKCb6ypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.895 [XNIO-1 task-2] n5-QKsUOTtiau6AKCb6ypA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.895 [XNIO-1 task-2] n5-QKsUOTtiau6AKCb6ypA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.930 [XNIO-1 task-2] gDiT_cLnSki7W1dFQhI7mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0dabbf28 +16:40:14.930 [XNIO-1 task-2] gDiT_cLnSki7W1dFQhI7mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.930 [XNIO-1 task-2] gDiT_cLnSki7W1dFQhI7mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:14.931 [XNIO-1 task-2] gDiT_cLnSki7W1dFQhI7mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0dabbf28 +16:40:14.938 [XNIO-1 task-2] dSapLhDRTCmsD7rUscR5Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.938 [XNIO-1 task-2] dSapLhDRTCmsD7rUscR5Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.938 [XNIO-1 task-2] dSapLhDRTCmsD7rUscR5Lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:14.938 [XNIO-1 task-2] dSapLhDRTCmsD7rUscR5Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.950 [XNIO-1 task-2] 1hGjndyYQM6JmsX8iiGsvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21100431, base path is set to: null +16:40:14.950 [XNIO-1 task-2] 1hGjndyYQM6JmsX8iiGsvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.950 [XNIO-1 task-2] 1hGjndyYQM6JmsX8iiGsvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:14.950 [XNIO-1 task-2] 1hGjndyYQM6JmsX8iiGsvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21100431, base path is set to: null +16:40:14.951 [XNIO-1 task-2] 1hGjndyYQM6JmsX8iiGsvA DEBUG com.networknt.schema.TypeValidator debug - validate( "21100431", "21100431", serviceId) +16:40:14.957 [XNIO-1 task-2] YNtwPdSWQsa1-7-xu1lndw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.957 [XNIO-1 task-2] YNtwPdSWQsa1-7-xu1lndw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.957 [XNIO-1 task-2] YNtwPdSWQsa1-7-xu1lndw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.969 [XNIO-1 task-2] KIGGoRMJScC_n8zyyPMVTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:14.969 [XNIO-1 task-2] KIGGoRMJScC_n8zyyPMVTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:14.969 [XNIO-1 task-2] KIGGoRMJScC_n8zyyPMVTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:14.969 [XNIO-1 task-2] KIGGoRMJScC_n8zyyPMVTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8e7aaf7a, base path is set to: null +16:40:14.969 [XNIO-1 task-2] KIGGoRMJScC_n8zyyPMVTg DEBUG com.networknt.schema.TypeValidator debug - validate( "8e7aaf7a", "8e7aaf7a", serviceId) +16:40:14.983 [XNIO-1 task-2] upj9U0JqQ4Wb8OCb__bmxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.983 [XNIO-1 task-2] upj9U0JqQ4Wb8OCb__bmxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.984 [XNIO-1 task-2] upj9U0JqQ4Wb8OCb__bmxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.984 [XNIO-1 task-2] upj9U0JqQ4Wb8OCb__bmxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.995 [XNIO-1 task-2] AfQA0WMrRhuEz4NmcHEnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.995 [XNIO-1 task-2] AfQA0WMrRhuEz4NmcHEnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:14.995 [XNIO-1 task-2] AfQA0WMrRhuEz4NmcHEnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.005 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.005 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.006 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.006 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.006 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.006 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG com.networknt.schema.TypeValidator debug - validate( "47603bd2-4925-40c5-a31f-b56ee6768de6", {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.006 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG com.networknt.schema.TypeValidator debug - validate( "e0d13cb1", {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.006 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.006 [XNIO-1 task-2] zYb0jlAiSMmWYF_7dfxPaw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e0d13cb1","serviceName":"d2366b47-c1bc-48f8-998f-07634fdd","serviceDesc":"47603bd2-4925-40c5-a31f-b56ee6768de6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.018 [XNIO-1 task-2] 8XHrzKhjS9SItDqnciiASQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.018 [XNIO-1 task-2] 8XHrzKhjS9SItDqnciiASQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.018 [XNIO-1 task-2] 8XHrzKhjS9SItDqnciiASQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.018 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93b0033e +16:40:15.018 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93b0033e +16:40:15.031 [XNIO-1 task-2] vF4ecXQeTFSygZZGlxJc-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.031 [XNIO-1 task-2] vF4ecXQeTFSygZZGlxJc-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.031 [XNIO-1 task-2] vF4ecXQeTFSygZZGlxJc-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.031 [XNIO-1 task-2] vF4ecXQeTFSygZZGlxJc-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.046 [XNIO-1 task-2] l2roaoCUS6m_4o9dhEg1uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf4669 +16:40:15.046 [XNIO-1 task-2] l2roaoCUS6m_4o9dhEg1uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.046 [XNIO-1 task-2] l2roaoCUS6m_4o9dhEg1uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.046 [XNIO-1 task-2] l2roaoCUS6m_4o9dhEg1uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf4669 +16:40:15.054 [XNIO-1 task-2] _X58D8PvRTaV4OD-7DnjPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.055 [XNIO-1 task-2] _X58D8PvRTaV4OD-7DnjPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.055 [XNIO-1 task-2] _X58D8PvRTaV4OD-7DnjPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.062 [XNIO-1 task-2] Yclk0rrxRvOHd_Mw3KR7Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8bf4669, base path is set to: null +16:40:15.063 [XNIO-1 task-2] Yclk0rrxRvOHd_Mw3KR7Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.063 [XNIO-1 task-2] Yclk0rrxRvOHd_Mw3KR7Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.063 [XNIO-1 task-2] Yclk0rrxRvOHd_Mw3KR7Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b8bf4669, base path is set to: null +16:40:15.063 [XNIO-1 task-2] Yclk0rrxRvOHd_Mw3KR7Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "b8bf4669", "b8bf4669", serviceId) +16:40:15.066 [XNIO-1 task-2] Xh7Wua4WRky7v7cjAe2AhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.066 [XNIO-1 task-2] Xh7Wua4WRky7v7cjAe2AhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.066 [XNIO-1 task-2] Xh7Wua4WRky7v7cjAe2AhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.066 [XNIO-1 task-2] Xh7Wua4WRky7v7cjAe2AhQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.076 [XNIO-1 task-2] t2uKSc9GQwi7U5YdSjOTTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf4669 +16:40:15.076 [XNIO-1 task-2] t2uKSc9GQwi7U5YdSjOTTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.076 [XNIO-1 task-2] t2uKSc9GQwi7U5YdSjOTTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.076 [XNIO-1 task-2] t2uKSc9GQwi7U5YdSjOTTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf4669 +16:40:15.081 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.081 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.081 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.082 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.082 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.082 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.082 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:15.082 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG com.networknt.schema.TypeValidator debug - validate( "8802d6fa-86c5-4e58-a4ea-bbe1393e", {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:15.082 [XNIO-1 task-2] i8mWLi_jSTy__WWgkQHFHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b8bf4669","serviceName":"8802d6fa-86c5-4e58-a4ea-bbe1393e","serviceDesc":"1011b559-ce36-4650-a1d7-7b00faec52c7","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.082 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b8bf4669 +16:40:15.091 [XNIO-1 task-2] aLhe9YjjQyChxLIISvs8vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93b0033e, base path is set to: null +16:40:15.091 [XNIO-1 task-2] aLhe9YjjQyChxLIISvs8vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.091 [XNIO-1 task-2] aLhe9YjjQyChxLIISvs8vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.091 [XNIO-1 task-2] aLhe9YjjQyChxLIISvs8vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/93b0033e, base path is set to: null +16:40:15.091 [XNIO-1 task-2] aLhe9YjjQyChxLIISvs8vw DEBUG com.networknt.schema.TypeValidator debug - validate( "93b0033e", "93b0033e", serviceId) +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ae7b6a0b-db7b-4924-b56d-124a25c03c36", {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "93b0033e", {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.094 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.095 [XNIO-1 task-2] fdnVYIVWRLGdQP43UU_CKQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"93b0033e","serviceName":"945d2813-a597-4554-8c69-1f0416a4","serviceDesc":"ae7b6a0b-db7b-4924-b56d-124a25c03c36","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.095 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:93b0033e +16:40:15.107 [XNIO-1 task-2] Suz7AVkqSQKIdbpNvc9kQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41c8f5fa +16:40:15.107 [XNIO-1 task-2] Suz7AVkqSQKIdbpNvc9kQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.107 [XNIO-1 task-2] Suz7AVkqSQKIdbpNvc9kQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.107 [XNIO-1 task-2] Suz7AVkqSQKIdbpNvc9kQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41c8f5fa +16:40:15.116 [XNIO-1 task-2] riiUt6OdRTurgsxOqZy5dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.116 [XNIO-1 task-2] riiUt6OdRTurgsxOqZy5dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.116 [XNIO-1 task-2] riiUt6OdRTurgsxOqZy5dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.128 [XNIO-1 task-2] liJk_NmjS-iY9wzI2sgwcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.128 [XNIO-1 task-2] liJk_NmjS-iY9wzI2sgwcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.128 [XNIO-1 task-2] liJk_NmjS-iY9wzI2sgwcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.142 [XNIO-1 task-2] AdZpoJkVSkCpLzvE1vFssg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.142 [XNIO-1 task-2] AdZpoJkVSkCpLzvE1vFssg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.142 [XNIO-1 task-2] AdZpoJkVSkCpLzvE1vFssg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.152 [XNIO-1 task-2] eRQqdk1ZRqS8IJ85qVjb4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.152 [XNIO-1 task-2] eRQqdk1ZRqS8IJ85qVjb4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.152 [XNIO-1 task-2] eRQqdk1ZRqS8IJ85qVjb4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.152 [XNIO-1 task-2] eRQqdk1ZRqS8IJ85qVjb4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.152 [XNIO-1 task-2] eRQqdk1ZRqS8IJ85qVjb4g DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", "41c8f5fa", serviceId) +16:40:15.154 [XNIO-1 task-2] Zt2q85RYQaKu9EcbKQP7hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.154 [XNIO-1 task-2] Zt2q85RYQaKu9EcbKQP7hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.154 [XNIO-1 task-2] Zt2q85RYQaKu9EcbKQP7hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.155 [XNIO-1 task-2] Zt2q85RYQaKu9EcbKQP7hg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.161 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:53d85bf6-244c-48b8-ad51-8fd26d323e3c +16:40:15.163 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.163 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.163 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.164 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.164 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.164 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG com.networknt.schema.TypeValidator debug - validate( "a327cc15-4dd5-4063-bcc2-2398f83c0b30", {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.164 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG com.networknt.schema.TypeValidator debug - validate( "ddd1352a", {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.164 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.164 [XNIO-1 task-2] CiL9GDLYQdihsL415_97-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.171 [XNIO-1 task-2] SVjdFDhoTdahKQwvz_2cpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.171 [XNIO-1 task-2] SVjdFDhoTdahKQwvz_2cpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.172 [XNIO-1 task-2] SVjdFDhoTdahKQwvz_2cpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.177 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:dc6151c2 +16:40:15.188 [XNIO-1 task-2] KncG8sKiQaWCUCzRAwMBIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.188 [XNIO-1 task-2] KncG8sKiQaWCUCzRAwMBIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.188 [XNIO-1 task-2] KncG8sKiQaWCUCzRAwMBIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.188 [XNIO-1 task-2] KncG8sKiQaWCUCzRAwMBIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.188 [XNIO-1 task-2] KncG8sKiQaWCUCzRAwMBIg DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", "41c8f5fa", serviceId) +16:40:15.193 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.193 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.193 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.194 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.194 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.194 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG com.networknt.schema.TypeValidator debug - validate( "9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.194 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6151c2", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.194 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.194 [XNIO-1 task-2] q8CoT_8uT92FWdMZBgKfbw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.196 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dc6151c2 +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG com.networknt.schema.TypeValidator debug - validate( "300be6de-2eb9-42f9-ab60-de57c619c7b0", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.208 [XNIO-1 task-2] BU3tyS0NR4eruU8dq4jMcg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG com.networknt.schema.TypeValidator debug - validate( "b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG com.networknt.schema.TypeValidator debug - validate( "9b2ab305", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.218 [XNIO-1 task-2] 8jqDK2G-RGWAqfahDVH45A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9b2ab305","serviceName":"55098e04-e766-44c2-beb5-5c27547e","serviceDesc":"b0dcaaa0-8cdd-4feb-94e5-6e70e3b6abb4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.227 [XNIO-1 task-2] c34Co2AkQkuMo58Cpp9kqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.227 [XNIO-1 task-2] c34Co2AkQkuMo58Cpp9kqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.227 [XNIO-1 task-2] c34Co2AkQkuMo58Cpp9kqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.244 [XNIO-1 task-2] XjRYLQ1KT12eIyFX-MLthQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3c055339 +16:40:15.244 [XNIO-1 task-2] XjRYLQ1KT12eIyFX-MLthQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.244 [XNIO-1 task-2] XjRYLQ1KT12eIyFX-MLthQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.244 [XNIO-1 task-2] XjRYLQ1KT12eIyFX-MLthQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3c055339 +16:40:15.253 [XNIO-1 task-2] FFF1PjXHSy6w-NQqkVo-9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.253 [XNIO-1 task-2] FFF1PjXHSy6w-NQqkVo-9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.253 [XNIO-1 task-2] FFF1PjXHSy6w-NQqkVo-9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.253 [XNIO-1 task-2] FFF1PjXHSy6w-NQqkVo-9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.253 [XNIO-1 task-2] FFF1PjXHSy6w-NQqkVo-9w DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", "41c8f5fa", serviceId) +16:40:15.260 [XNIO-1 task-2] 8dBANwfBRdec3tCoeUvxBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.260 [XNIO-1 task-2] 8dBANwfBRdec3tCoeUvxBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.260 [XNIO-1 task-2] 8dBANwfBRdec3tCoeUvxBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.270 [XNIO-1 task-2] xjnNu8dDRAOoR6etr-kc-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.270 [XNIO-1 task-2] xjnNu8dDRAOoR6etr-kc-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.270 [XNIO-1 task-2] xjnNu8dDRAOoR6etr-kc-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.270 [XNIO-1 task-2] xjnNu8dDRAOoR6etr-kc-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.284 [XNIO-1 task-2] 8BkQ1-NXS4u66N2j5BrZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41c8f5fa +16:40:15.284 [XNIO-1 task-2] 8BkQ1-NXS4u66N2j5BrZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.284 [XNIO-1 task-2] 8BkQ1-NXS4u66N2j5BrZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.284 [XNIO-1 task-2] 8BkQ1-NXS4u66N2j5BrZvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/41c8f5fa +16:40:15.285 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:53d85bf6-244c-48b8-ad51-8fd26d323e3c +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG com.networknt.schema.TypeValidator debug - validate( "300be6de-2eb9-42f9-ab60-de57c619c7b0", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.290 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.291 [XNIO-1 task-2] xYom0LOQTCCXj96t-_ZI0A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"41c8f5fa","serviceName":"cb658394-3deb-4fc3-b4c1-816396fb","serviceDesc":"300be6de-2eb9-42f9-ab60-de57c619c7b0","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.298 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.298 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.298 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.298 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.298 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.298 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG com.networknt.schema.TypeValidator debug - validate( "9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.299 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6151c2", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.299 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.299 [XNIO-1 task-2] o4k1TGctQDO9iXF2EcKDvw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dc6151c2","serviceName":"321b0b17-cb0f-4b1e-9edd-0bdd0bf4","serviceDesc":"9bfe011f-acbd-4dd3-af5a-f7e54f9a28f2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.299 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:dc6151c2 +16:40:15.299 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0b9f4159-fb1b-4cea-b576-21472229c32c +16:40:15.305 [XNIO-1 task-2] 8EwGJDWURXKzBpaw0nEPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf4669 +16:40:15.305 [XNIO-1 task-2] 8EwGJDWURXKzBpaw0nEPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.305 [XNIO-1 task-2] 8EwGJDWURXKzBpaw0nEPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.305 [XNIO-1 task-2] 8EwGJDWURXKzBpaw0nEPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b8bf4669 +16:40:15.306 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b8bf4669 +16:40:15.311 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:53d85bf6-244c-48b8-ad51-8fd26d323e3c +16:40:15.316 [XNIO-1 task-2] S_GuO3UlS9W4Hzzv3HxSqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.316 [XNIO-1 task-2] S_GuO3UlS9W4Hzzv3HxSqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.316 [XNIO-1 task-2] S_GuO3UlS9W4Hzzv3HxSqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.317 [XNIO-1 task-2] S_GuO3UlS9W4Hzzv3HxSqg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.325 [XNIO-1 task-2] ZIOIW_JNSaaUfjWJVQ8UJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.325 [XNIO-1 task-2] ZIOIW_JNSaaUfjWJVQ8UJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.325 [XNIO-1 task-2] ZIOIW_JNSaaUfjWJVQ8UJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.325 [XNIO-1 task-2] ZIOIW_JNSaaUfjWJVQ8UJw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.334 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.334 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.334 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.335 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.335 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.335 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "763810a1-e209-4947-b367-f514b2fefc1d", {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.335 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "b7636c66", {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.335 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.335 [XNIO-1 task-2] XZcs4nGIRsW9Af46HkmjKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b7636c66","serviceName":"abcd87b2-3126-4cd4-8223-3ffdc5a2","serviceDesc":"763810a1-e209-4947-b367-f514b2fefc1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.341 [XNIO-1 task-2] _dmWAXHIQomJiToFnvghuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff6ade1f +16:40:15.342 [XNIO-1 task-2] _dmWAXHIQomJiToFnvghuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.342 [XNIO-1 task-2] _dmWAXHIQomJiToFnvghuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.342 [XNIO-1 task-2] _dmWAXHIQomJiToFnvghuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ff6ade1f +16:40:15.351 [XNIO-1 task-2] 2BmOO6DUSWqtYxM2wG-i2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.351 [XNIO-1 task-2] 2BmOO6DUSWqtYxM2wG-i2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.351 [XNIO-1 task-2] 2BmOO6DUSWqtYxM2wG-i2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.351 [XNIO-1 task-2] 2BmOO6DUSWqtYxM2wG-i2A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.365 [XNIO-1 task-2] XFn_lrYvSNSS7PYv9OlUEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21100431, base path is set to: null +16:40:15.365 [XNIO-1 task-2] XFn_lrYvSNSS7PYv9OlUEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.365 [XNIO-1 task-2] XFn_lrYvSNSS7PYv9OlUEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.365 [XNIO-1 task-2] XFn_lrYvSNSS7PYv9OlUEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/21100431, base path is set to: null +16:40:15.365 [XNIO-1 task-2] XFn_lrYvSNSS7PYv9OlUEg DEBUG com.networknt.schema.TypeValidator debug - validate( "21100431", "21100431", serviceId) +16:40:15.370 [XNIO-1 task-2] OO-muOXiSzOwTbCn_8ul7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:15.370 [XNIO-1 task-2] OO-muOXiSzOwTbCn_8ul7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.370 [XNIO-1 task-2] OO-muOXiSzOwTbCn_8ul7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.370 [XNIO-1 task-2] OO-muOXiSzOwTbCn_8ul7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:15.371 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:532ea570-9c1f-4e51-a228-30b9e6546c90 +16:40:15.372 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:532ea570-9c1f-4e51-a228-30b9e6546c90 +16:40:15.379 [XNIO-1 task-2] f_Dp3duXQj61BIFlXIT7MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.379 [XNIO-1 task-2] f_Dp3duXQj61BIFlXIT7MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.379 [XNIO-1 task-2] f_Dp3duXQj61BIFlXIT7MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.389 [XNIO-1 task-2] 1sWblvR1QD6vz-H4PFZZMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.389 [XNIO-1 task-2] 1sWblvR1QD6vz-H4PFZZMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.389 [XNIO-1 task-2] 1sWblvR1QD6vz-H4PFZZMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.390 [XNIO-1 task-2] 1sWblvR1QD6vz-H4PFZZMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.397 [XNIO-1 task-2] DATNywgUToOgD_Wra3il_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/920d4930 +16:40:15.397 [XNIO-1 task-2] DATNywgUToOgD_Wra3il_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.397 [XNIO-1 task-2] DATNywgUToOgD_Wra3il_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.397 [XNIO-1 task-2] DATNywgUToOgD_Wra3il_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/920d4930 +16:40:15.400 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:82ef41f2-2403-4934-bb66-42e585b220af +16:40:15.405 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:82ef41f2-2403-4934-bb66-42e585b220af +16:40:15.406 [XNIO-1 task-2] 2D2ZCkD_TkOANcVNJuXjhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.407 [XNIO-1 task-2] 2D2ZCkD_TkOANcVNJuXjhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.407 [XNIO-1 task-2] 2D2ZCkD_TkOANcVNJuXjhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.413 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6231e953-8332-49b5-8278-13bac3f8e724 +16:40:15.419 [XNIO-1 task-2] yyd-uo2FSQiPnhdJ4qBklA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db440152 +16:40:15.419 [XNIO-1 task-2] yyd-uo2FSQiPnhdJ4qBklA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.419 [XNIO-1 task-2] yyd-uo2FSQiPnhdJ4qBklA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.419 [XNIO-1 task-2] yyd-uo2FSQiPnhdJ4qBklA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/db440152 +16:40:15.427 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:6231e953-8332-49b5-8278-13bac3f8e724 +16:40:15.428 [XNIO-1 task-2] G8j--tY6TiiJhLs6KMqejA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:15.428 [XNIO-1 task-2] G8j--tY6TiiJhLs6KMqejA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.428 [XNIO-1 task-2] G8j--tY6TiiJhLs6KMqejA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.428 [XNIO-1 task-2] G8j--tY6TiiJhLs6KMqejA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:15.434 [XNIO-1 task-2] kEkEe_1_SoClXjzXuohKKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.434 [XNIO-1 task-2] kEkEe_1_SoClXjzXuohKKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.434 [XNIO-1 task-2] kEkEe_1_SoClXjzXuohKKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.443 [XNIO-1 task-2] dlH7LiYbRLS4Kv_MTr_F7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/db440152, base path is set to: null +16:40:15.443 [XNIO-1 task-2] dlH7LiYbRLS4Kv_MTr_F7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.443 [XNIO-1 task-2] dlH7LiYbRLS4Kv_MTr_F7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.443 [XNIO-1 task-2] dlH7LiYbRLS4Kv_MTr_F7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/db440152, base path is set to: null +16:40:15.443 [XNIO-1 task-2] dlH7LiYbRLS4Kv_MTr_F7A DEBUG com.networknt.schema.TypeValidator debug - validate( "db440152", "db440152", serviceId) +16:40:15.449 [XNIO-1 task-2] Nvtv6feyRnycyu1b3M8QLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:15.449 [XNIO-1 task-2] Nvtv6feyRnycyu1b3M8QLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.449 [XNIO-1 task-2] Nvtv6feyRnycyu1b3M8QLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.449 [XNIO-1 task-2] Nvtv6feyRnycyu1b3M8QLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21100431 +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:15.454 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG com.networknt.schema.TypeValidator debug - validate( "94e6474f-12e9-4671-bc65-36ac22cf", {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:15.455 [XNIO-1 task-2] Jx6tM9QzR96UfNLNxhpHrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"db440152","serviceName":"94e6474f-12e9-4671-bc65-36ac22cf","serviceDesc":"c3930989-7d38-412f-9795-ab6a4e6cbab4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.471 [XNIO-1 task-2] TChQyXNRRsyTc-8JN2v8zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/24f74ea7, base path is set to: null +16:40:15.471 [XNIO-1 task-2] TChQyXNRRsyTc-8JN2v8zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.471 [XNIO-1 task-2] TChQyXNRRsyTc-8JN2v8zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.471 [XNIO-1 task-2] TChQyXNRRsyTc-8JN2v8zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/24f74ea7, base path is set to: null +16:40:15.471 [XNIO-1 task-2] TChQyXNRRsyTc-8JN2v8zA DEBUG com.networknt.schema.TypeValidator debug - validate( "24f74ea7", "24f74ea7", serviceId) +16:40:15.476 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22100a01-c57f-40b3-9318-2a31dc66d63a +16:40:15.479 [XNIO-1 task-2] vXQVMQQLQXykjnOBrE7O2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.479 [XNIO-1 task-2] vXQVMQQLQXykjnOBrE7O2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.479 [XNIO-1 task-2] vXQVMQQLQXykjnOBrE7O2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.479 [XNIO-1 task-2] vXQVMQQLQXykjnOBrE7O2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.479 [XNIO-1 task-2] vXQVMQQLQXykjnOBrE7O2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.479 [XNIO-1 task-2] vXQVMQQLQXykjnOBrE7O2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.479 [XNIO-1 task-2] vXQVMQQLQXykjnOBrE7O2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +16:40:15.492 [XNIO-1 task-2] WropmTcPQheWH3ASyZ3iRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.492 [XNIO-1 task-2] WropmTcPQheWH3ASyZ3iRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.492 [XNIO-1 task-2] WropmTcPQheWH3ASyZ3iRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cd742038, base path is set to: null + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +16:40:15.499 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.499 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.499 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.499 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.499 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.499 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.499 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +16:40:15.500 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.500 [XNIO-1 task-2] HRZmIcatRg-F-pHjsDqHvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ddd1352a","serviceName":"3325154f-3e03-4a01-b8ff-cc7ecd3a","serviceDesc":"a327cc15-4dd5-4063-bcc2-2398f83c0b30","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.500 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:416ad8c0-b0f6-45c8-87e6-18a25ab87bef +16:40:15.500 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:416ad8c0-b0f6-45c8-87e6-18a25ab87bef +16:40:15.506 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0b9f4159-fb1b-4cea-b576-21472229c32c +16:40:15.507 [XNIO-1 task-2] _NuWyIr8TeSpcN8EvjqwMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5efe2d56, base path is set to: null +16:40:15.508 [XNIO-1 task-2] _NuWyIr8TeSpcN8EvjqwMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/5efe2d56 +16:40:15.508 [XNIO-1 task-2] _NuWyIr8TeSpcN8EvjqwMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.508 [XNIO-1 task-2] _NuWyIr8TeSpcN8EvjqwMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:40:15.509 [XNIO-1 task-2] _NuWyIr8TeSpcN8EvjqwMg DEBUG com.networknt.schema.TypeValidator debug - validate( "5efe2d56", "5efe2d56", serviceId) +16:40:15.512 [XNIO-1 task-2] SUnDx19xR6ygbVyg9TgbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.512 [XNIO-1 task-2] SUnDx19xR6ygbVyg9TgbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.512 [XNIO-1 task-2] SUnDx19xR6ygbVyg9TgbjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.512 [XNIO-1 task-2] SUnDx19xR6ygbVyg9TgbjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG com.networknt.schema.TypeValidator debug - validate( "7037a4ec-d5b0-4597-996e-49cdaf90b4b4", {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG com.networknt.schema.TypeValidator debug - validate( "46bbcf4c", {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.535 [XNIO-1 task-2] OXbUKAU4RFSJjhy2jx_weg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.536 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:46bbcf4c +16:40:15.546 [XNIO-1 task-2] KYKQxj2YQRK22FEDSu7puw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93b0033e +16:40:15.546 [XNIO-1 task-2] KYKQxj2YQRK22FEDSu7puw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.546 [XNIO-1 task-2] KYKQxj2YQRK22FEDSu7puw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.546 [XNIO-1 task-2] KYKQxj2YQRK22FEDSu7puw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/93b0033e +16:40:15.546 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:93b0033e +16:40:15.561 [XNIO-1 task-2] 9ufVc_v8Tx2fsORM0epz8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.562 [XNIO-1 task-2] 9ufVc_v8Tx2fsORM0epz8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.562 [XNIO-1 task-2] 9ufVc_v8Tx2fsORM0epz8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.562 [XNIO-1 task-2] 9ufVc_v8Tx2fsORM0epz8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/41c8f5fa, base path is set to: null +16:40:15.562 [XNIO-1 task-2] 9ufVc_v8Tx2fsORM0epz8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "41c8f5fa", "41c8f5fa", serviceId) +16:40:15.573 [XNIO-1 task-2] xSljz-KkQ0iaEQ6D8dM4Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.574 [XNIO-1 task-2] xSljz-KkQ0iaEQ6D8dM4Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.574 [XNIO-1 task-2] xSljz-KkQ0iaEQ6D8dM4Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.574 [XNIO-1 task-2] xSljz-KkQ0iaEQ6D8dM4Pw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.592 [XNIO-1 task-2] CqcTEZf9R6ilxdGH5bb67g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.592 [XNIO-1 task-2] CqcTEZf9R6ilxdGH5bb67g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.592 [XNIO-1 task-2] CqcTEZf9R6ilxdGH5bb67g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.593 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b2e41308 +16:40:15.603 [XNIO-1 task-2] DQuX_u0nQRKQNGexMtJnYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.603 [XNIO-1 task-2] DQuX_u0nQRKQNGexMtJnYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.603 [XNIO-1 task-2] DQuX_u0nQRKQNGexMtJnYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.615 [XNIO-1 task-2] ezmOIdbrQQmmFIklknqA9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.616 [XNIO-1 task-2] ezmOIdbrQQmmFIklknqA9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.616 [XNIO-1 task-2] ezmOIdbrQQmmFIklknqA9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.631 [XNIO-1 task-2] X1uaw_0FR0Ob6aQOHDsYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.631 [XNIO-1 task-2] X1uaw_0FR0Ob6aQOHDsYHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.631 [XNIO-1 task-2] X1uaw_0FR0Ob6aQOHDsYHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.631 [XNIO-1 task-2] X1uaw_0FR0Ob6aQOHDsYHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.639 [XNIO-1 task-2] f4LgNoT_RU2FouLDA58GJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506850b2, base path is set to: null +16:40:15.639 [XNIO-1 task-2] f4LgNoT_RU2FouLDA58GJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.640 [XNIO-1 task-2] f4LgNoT_RU2FouLDA58GJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.640 [XNIO-1 task-2] f4LgNoT_RU2FouLDA58GJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/506850b2, base path is set to: null +16:40:15.640 [XNIO-1 task-2] f4LgNoT_RU2FouLDA58GJg DEBUG com.networknt.schema.TypeValidator debug - validate( "506850b2", "506850b2", serviceId) +16:40:15.643 [XNIO-1 task-2] 69la3PyKSS2BPhd3Uype5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cd742038 +16:40:15.643 [XNIO-1 task-2] 69la3PyKSS2BPhd3Uype5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.643 [XNIO-1 task-2] 69la3PyKSS2BPhd3Uype5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.644 [XNIO-1 task-2] 69la3PyKSS2BPhd3Uype5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cd742038 +16:40:15.645 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4019495d-a4db-406b-89cf-8ad20ca5ee18 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:15.654 [XNIO-1 task-2] EFRSQP4wRgGFFx_JBLbeOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b772fe5c, base path is set to: null +16:40:15.654 [XNIO-1 task-2] EFRSQP4wRgGFFx_JBLbeOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.654 [XNIO-1 task-2] EFRSQP4wRgGFFx_JBLbeOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.654 [XNIO-1 task-2] EFRSQP4wRgGFFx_JBLbeOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b772fe5c, base path is set to: null +16:40:15.655 [XNIO-1 task-2] EFRSQP4wRgGFFx_JBLbeOw DEBUG com.networknt.schema.TypeValidator debug - validate( "b772fe5c", "b772fe5c", serviceId) +16:40:15.664 [XNIO-1 task-2] CU5Xskx4Q6-lX21KF88WHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f8efd317 +16:40:15.664 [XNIO-1 task-2] CU5Xskx4Q6-lX21KF88WHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.664 [XNIO-1 task-2] CU5Xskx4Q6-lX21KF88WHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.664 [XNIO-1 task-2] CU5Xskx4Q6-lX21KF88WHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f8efd317 +16:40:15.680 [XNIO-1 task-2] 1rqOhKG8SxybFbYv5XkVEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5efe2d56, base path is set to: null +16:40:15.680 [XNIO-1 task-2] 1rqOhKG8SxybFbYv5XkVEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.680 [XNIO-1 task-2] 1rqOhKG8SxybFbYv5XkVEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:15.681 [XNIO-1 task-2] 1rqOhKG8SxybFbYv5XkVEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5efe2d56, base path is set to: null +16:40:15.681 [XNIO-1 task-2] 1rqOhKG8SxybFbYv5XkVEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5efe2d56", "5efe2d56", serviceId) +16:40:15.690 [XNIO-1 task-2] 8omYzu-fRhCOsKU9weAf5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.690 [XNIO-1 task-2] 8omYzu-fRhCOsKU9weAf5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.690 [XNIO-1 task-2] 8omYzu-fRhCOsKU9weAf5w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.698 [XNIO-1 task-2] mBqFU3KZT6GKxu0MhluoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/506850b2 +16:40:15.698 [XNIO-1 task-2] mBqFU3KZT6GKxu0MhluoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.698 [XNIO-1 task-2] mBqFU3KZT6GKxu0MhluoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.698 [XNIO-1 task-2] mBqFU3KZT6GKxu0MhluoQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/506850b2 +16:40:15.707 [XNIO-1 task-2] bO6Lqee6Qoq4iPPV4QYHDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.708 [XNIO-1 task-2] bO6Lqee6Qoq4iPPV4QYHDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.708 [XNIO-1 task-2] bO6Lqee6Qoq4iPPV4QYHDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.708 [XNIO-1 task-2] bO6Lqee6Qoq4iPPV4QYHDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.722 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.722 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.723 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.723 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.723 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.723 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.723 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:15.723 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG com.networknt.schema.TypeValidator debug - validate( "02269a95-00c7-42a8-890c-361b1812", {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:15.723 [XNIO-1 task-2] otn7CViWRgW721EH1IerBw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"5c2a34df","serviceName":"02269a95-00c7-42a8-890c-361b1812","serviceDesc":"849a6d01-fc0a-4289-982f-7c461a1930fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.736 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.737 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.737 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.737 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.737 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.737 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.738 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:15.738 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG com.networknt.schema.TypeValidator debug - validate( "397a7e0f-3b42-4ae9-9d56-12ee0c2b", {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:15.738 [XNIO-1 task-2] IhK8q6xcToCjW8IU2l9FMg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"abd35d71","serviceName":"397a7e0f-3b42-4ae9-9d56-12ee0c2b","serviceDesc":"ee216a57-a46f-48ce-8d4a-4865e0e340da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.746 [XNIO-1 task-2] wwavVPXbQ4iaQtctAjv2_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.746 [XNIO-1 task-2] wwavVPXbQ4iaQtctAjv2_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.746 [XNIO-1 task-2] wwavVPXbQ4iaQtctAjv2_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.746 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:52b043a9 +16:40:15.747 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:52b043a9 +16:40:15.754 [XNIO-1 task-2] lsTMwa-DSYChmtAE0Fv0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.754 [XNIO-1 task-2] lsTMwa-DSYChmtAE0Fv0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.754 [XNIO-1 task-2] lsTMwa-DSYChmtAE0Fv0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.754 [XNIO-1 task-2] lsTMwa-DSYChmtAE0Fv0yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.760 [XNIO-1 task-2] B3a8nd3hTheUVE5j5ueiMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.760 [XNIO-1 task-2] B3a8nd3hTheUVE5j5ueiMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.760 [XNIO-1 task-2] B3a8nd3hTheUVE5j5ueiMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.760 [XNIO-1 task-2] B3a8nd3hTheUVE5j5ueiMw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.760 [XNIO-1 task-2] B3a8nd3hTheUVE5j5ueiMw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.773 [XNIO-1 task-2] NrqFPKMwSXSvm7YLBDh8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.773 [XNIO-1 task-2] NrqFPKMwSXSvm7YLBDh8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.774 [XNIO-1 task-2] NrqFPKMwSXSvm7YLBDh8lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.774 [XNIO-1 task-2] NrqFPKMwSXSvm7YLBDh8lw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.780 [XNIO-1 task-2] TlM55vreT8OB8bRslSWS4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.780 [XNIO-1 task-2] TlM55vreT8OB8bRslSWS4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.780 [XNIO-1 task-2] TlM55vreT8OB8bRslSWS4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.787 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:41d1961a-1b7d-47d4-b213-df858a0e4097 +16:40:15.791 [XNIO-1 task-2] jF5xBc2vQI-zM_sPzwQtqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.791 [XNIO-1 task-2] jF5xBc2vQI-zM_sPzwQtqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.791 [XNIO-1 task-2] jF5xBc2vQI-zM_sPzwQtqQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.801 [XNIO-1 task-2] vw9k8Ru5Re2-bj88uzwR0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23d94185 +16:40:15.801 [XNIO-1 task-2] vw9k8Ru5Re2-bj88uzwR0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.801 [XNIO-1 task-2] vw9k8Ru5Re2-bj88uzwR0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:15.801 [XNIO-1 task-2] vw9k8Ru5Re2-bj88uzwR0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23d94185 +16:40:15.806 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:96a50771-983a-43aa-b1b5-14c76c7264a3 +16:40:15.808 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:96a50771-983a-43aa-b1b5-14c76c7264a3 +16:40:15.817 [XNIO-1 task-2] MpL5eT87SX2dMt_w7eCFuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.817 [XNIO-1 task-2] MpL5eT87SX2dMt_w7eCFuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.817 [XNIO-1 task-2] MpL5eT87SX2dMt_w7eCFuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.818 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b6fd446a +16:40:15.830 [XNIO-1 task-2] -PbFf01YTOS7buk71VOEsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.830 [XNIO-1 task-2] -PbFf01YTOS7buk71VOEsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.830 [XNIO-1 task-2] -PbFf01YTOS7buk71VOEsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.830 [XNIO-1 task-2] -PbFf01YTOS7buk71VOEsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.837 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be684aee +16:40:15.838 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:be684aee +16:40:15.845 [XNIO-1 task-2] 0qy4JJF8SqKCBBkr3jizCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.845 [XNIO-1 task-2] 0qy4JJF8SqKCBBkr3jizCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.845 [XNIO-1 task-2] 0qy4JJF8SqKCBBkr3jizCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.845 [XNIO-1 task-2] 0qy4JJF8SqKCBBkr3jizCA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.859 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ee468432-5a79-4468-9110-d4df2b2791ad +16:40:15.860 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ee468432-5a79-4468-9110-d4df2b2791ad +16:40:15.862 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.862 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.863 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:15.863 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.863 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.863 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4e54bd4d-77c1-4a66-911d-ee2726331df6", {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:15.863 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4b57cbef", {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:15.863 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:15.863 [XNIO-1 task-2] IytmKPR_Si2fYfJchFFCQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b57cbef","serviceName":"39bf791c-e76b-45d7-83ff-1f5d8b25","serviceDesc":"4e54bd4d-77c1-4a66-911d-ee2726331df6","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.877 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:78a28422 +16:40:15.878 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.878 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:15.878 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:15.878 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.880 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:15.880 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:15.880 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:15.880 [XNIO-1 task-2] Jtt7YweKSG2iACMzXWcRFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d45a4e7a-391f-4bb8-9911-f5899d80", {"serviceType":"swagger","serviceId":"46bbcf4c","serviceName":"d45a4e7a-391f-4bb8-9911-f5899d80","serviceDesc":"7037a4ec-d5b0-4597-996e-49cdaf90b4b4","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) diff --git a/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-token-1.log b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..c174222 --- /dev/null +++ b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-token-1.log @@ -0,0 +1,2168 @@ +16:40:11.072 [XNIO-1 task-2] HlOQuluRRH-pfVHlUu9aIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:11.072 [XNIO-1 task-2] HlOQuluRRH-pfVHlUu9aIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.084 [XNIO-1 task-2] MMoeg4D8RhmrA5fBZPsCyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.084 [XNIO-1 task-2] MMoeg4D8RhmrA5fBZPsCyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.084 [XNIO-1 task-2] MMoeg4D8RhmrA5fBZPsCyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.084 [XNIO-1 task-2] MMoeg4D8RhmrA5fBZPsCyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5e30497d-35c8-4a8b-82e8-2e82ab8e78d3 scope = null +16:40:11.099 [XNIO-1 task-2] MMoeg4D8RhmrA5fBZPsCyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.144 [XNIO-1 task-2] Fhg15vZ2QSKoNyU0FDCzmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.144 [XNIO-1 task-2] Fhg15vZ2QSKoNyU0FDCzmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.144 [XNIO-1 task-2] Fhg15vZ2QSKoNyU0FDCzmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.145 [XNIO-1 task-2] Fhg15vZ2QSKoNyU0FDCzmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = d6a35817-a8fe-4438-b8c0-4fbb3a72b4c8 scope = null +Jun 28, 2024 4:40:11 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:11.158 [XNIO-1 task-2] Fhg15vZ2QSKoNyU0FDCzmw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.160 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:daca759a-a4ae-4086-9961-71dec03900c4 +16:40:11.161 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:daca759a-a4ae-4086-9961-71dec03900c4 +16:40:11.184 [XNIO-1 task-2] IldmBDvzSQOPtbFUgHMumA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.184 [XNIO-1 task-2] IldmBDvzSQOPtbFUgHMumA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.184 [XNIO-1 task-2] IldmBDvzSQOPtbFUgHMumA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.184 [XNIO-1 task-2] IldmBDvzSQOPtbFUgHMumA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _P7Ti_lsTfi0oikNtJRCZA redirectUri = http://localhost:8080/authorization +16:40:11.193 [XNIO-1 task-2] IldmBDvzSQOPtbFUgHMumA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.195 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e29ecc77-a92a-480c-ad6a-132d3942f7ea +16:40:11.227 [XNIO-1 task-2] Xlg92R6KQuKBfxStp17A2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.227 [XNIO-1 task-2] Xlg92R6KQuKBfxStp17A2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.227 [XNIO-1 task-2] Xlg92R6KQuKBfxStp17A2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.227 [XNIO-1 task-2] Xlg92R6KQuKBfxStp17A2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:11.233 [XNIO-1 task-2] Xlg92R6KQuKBfxStp17A2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:11.234 [XNIO-1 task-2] Xlg92R6KQuKBfxStp17A2Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.235 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e183cb58 +16:40:11.235 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6d827833-d6cd-485b-9409-335cb6e55acd +16:40:11.244 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:408cd792 +16:40:11.256 [XNIO-1 task-2] dbf2cqeNSOa-DeW6ttNylg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.256 [XNIO-1 task-2] dbf2cqeNSOa-DeW6ttNylg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.256 [XNIO-1 task-2] dbf2cqeNSOa-DeW6ttNylg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.256 [XNIO-1 task-2] dbf2cqeNSOa-DeW6ttNylg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:11.262 [XNIO-1 task-2] dbf2cqeNSOa-DeW6ttNylg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:11.262 [XNIO-1 task-2] dbf2cqeNSOa-DeW6ttNylg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.263 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ec34654c-03f6-43c2-bbd6-59c3b2126add +16:40:11.296 [XNIO-1 task-2] pmLXPDf9TgKjvR6oZotAHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.296 [XNIO-1 task-2] pmLXPDf9TgKjvR6oZotAHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.296 [XNIO-1 task-2] pmLXPDf9TgKjvR6oZotAHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.296 [XNIO-1 task-2] pmLXPDf9TgKjvR6oZotAHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = kXewl_s2RyaYwd9esIRTxA redirectUri = http://localhost:8080/authorization +16:40:11.302 [XNIO-1 task-2] pmLXPDf9TgKjvR6oZotAHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.303 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:78dc0036-e77f-4452-968d-8b9d2281c5c2 +16:40:11.308 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e183cb58 +16:40:11.312 [XNIO-1 task-2] -nFPRtmcR1KW9NQNYEDkpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.313 [XNIO-1 task-2] -nFPRtmcR1KW9NQNYEDkpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.313 [XNIO-1 task-2] -nFPRtmcR1KW9NQNYEDkpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.313 [XNIO-1 task-2] -nFPRtmcR1KW9NQNYEDkpA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:11.318 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:78dc0036-e77f-4452-968d-8b9d2281c5c2 +16:40:11.323 [XNIO-1 task-2] -nFPRtmcR1KW9NQNYEDkpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.329 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:5a084d8e +16:40:11.344 [XNIO-1 task-2] oDoqtQ1XRe-OXGZ2CLiDiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.344 [XNIO-1 task-2] oDoqtQ1XRe-OXGZ2CLiDiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.344 [XNIO-1 task-2] oDoqtQ1XRe-OXGZ2CLiDiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.344 [XNIO-1 task-2] oDoqtQ1XRe-OXGZ2CLiDiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:11.351 [XNIO-1 task-2] oDoqtQ1XRe-OXGZ2CLiDiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:11.351 [XNIO-1 task-2] oDoqtQ1XRe-OXGZ2CLiDiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.364 [XNIO-1 task-2] 44oXR__sTUS6VdblXmLI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.364 [XNIO-1 task-2] 44oXR__sTUS6VdblXmLI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.364 [XNIO-1 task-2] 44oXR__sTUS6VdblXmLI3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.366 [XNIO-1 task-2] 44oXR__sTUS6VdblXmLI3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 6OX6YbazSbKDK3h0ovUHsw redirectUri = http://localhost:8080/authorization +16:40:11.372 [XNIO-1 task-2] 44oXR__sTUS6VdblXmLI3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.394 [XNIO-1 task-2] 3EQVdVvXRpK4F-C9inFXCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.394 [XNIO-1 task-2] 3EQVdVvXRpK4F-C9inFXCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.394 [XNIO-1 task-2] 3EQVdVvXRpK4F-C9inFXCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.394 [XNIO-1 task-2] 3EQVdVvXRpK4F-C9inFXCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:11.401 [XNIO-1 task-2] 3EQVdVvXRpK4F-C9inFXCQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:11.401 [XNIO-1 task-2] 3EQVdVvXRpK4F-C9inFXCQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.403 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:2be0aaa3-639c-4668-987d-da0d05803cca +16:40:11.424 [XNIO-1 task-2] oUs6t4edTtySF4X48KHoRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.424 [XNIO-1 task-2] oUs6t4edTtySF4X48KHoRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.424 [XNIO-1 task-2] oUs6t4edTtySF4X48KHoRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.424 [XNIO-1 task-2] oUs6t4edTtySF4X48KHoRQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = oC429gbcQHSA_tQzNqqdnA redirectUri = http://localhost:8080/authorization +16:40:11.432 [XNIO-1 task-2] oUs6t4edTtySF4X48KHoRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.452 [XNIO-1 task-2] 0py5KvrGQB-T_zXWPepL1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.452 [XNIO-1 task-2] 0py5KvrGQB-T_zXWPepL1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.452 [XNIO-1 task-2] 0py5KvrGQB-T_zXWPepL1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.452 [XNIO-1 task-2] 0py5KvrGQB-T_zXWPepL1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:11.457 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:2be0aaa3-639c-4668-987d-da0d05803cca +16:40:11.464 [XNIO-1 task-2] 0py5KvrGQB-T_zXWPepL1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.485 [XNIO-1 task-2] -foFAiWdRKCWqX84RD0n4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.486 [XNIO-1 task-2] -foFAiWdRKCWqX84RD0n4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.486 [XNIO-1 task-2] -foFAiWdRKCWqX84RD0n4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.486 [XNIO-1 task-2] -foFAiWdRKCWqX84RD0n4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:11.493 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:38f14eb5-1d5d-41b5-b580-dca0ef1d8d77 +16:40:11.493 [XNIO-1 task-2] -foFAiWdRKCWqX84RD0n4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.495 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:38f14eb5-1d5d-41b5-b580-dca0ef1d8d77 +16:40:11.504 [XNIO-1 task-2] TeeEUzTaS2aSH08fYDqRiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.504 [XNIO-1 task-2] TeeEUzTaS2aSH08fYDqRiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.504 [XNIO-1 task-2] TeeEUzTaS2aSH08fYDqRiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.504 [XNIO-1 task-2] TeeEUzTaS2aSH08fYDqRiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:11.517 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09 +16:40:11.544 [XNIO-1 task-2] TeeEUzTaS2aSH08fYDqRiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +Jun 28, 2024 4:40:11 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +16:40:11.581 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5a084d8e + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +Jun 28, 2024 4:40:11 PM com.hazelcast.map.impl.operation.DeleteOperation + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:40:11.610 [XNIO-1 task-2] ra7KWD0lSvCvhG30QEIBTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:11.637 [XNIO-1 task-2] EsdxfOYJS2O-LsDyV2rGDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.638 [XNIO-1 task-2] EsdxfOYJS2O-LsDyV2rGDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.638 [XNIO-1 task-2] EsdxfOYJS2O-LsDyV2rGDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:11.638 [XNIO-1 task-2] EsdxfOYJS2O-LsDyV2rGDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +16:40:11.638 [XNIO-1 task-2] EsdxfOYJS2O-LsDyV2rGDQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QZNBg7jgTeGIr4shHjhvsA redirectUri = http://localhost:8080/authorization +16:40:11.640 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21100431 + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +16:40:11.642 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09 +16:40:11.645 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) +Jun 28, 2024 4:40:11 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:11.647 [XNIO-1 task-2] EsdxfOYJS2O-LsDyV2rGDQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.647 [XNIO-1 task-2] EsdxfOYJS2O-LsDyV2rGDQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:40:11.675 [XNIO-1 task-2] _HPh4KZnTJaA0cO01I8dRA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:11.680 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:ab86ad9e-d606-4f45-b0dd-6f4c6dccbd09 +16:40:11.680 [XNIO-1 task-2] _HPh4KZnTJaA0cO01I8dRA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.686 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:11.734 [XNIO-1 task-2] qvuEtTZERD6w8GRoRyOHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.734 [XNIO-1 task-2] qvuEtTZERD6w8GRoRyOHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.734 [XNIO-1 task-2] qvuEtTZERD6w8GRoRyOHyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.734 [XNIO-1 task-2] qvuEtTZERD6w8GRoRyOHyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = dbe7a899-d7b8-4b34-830b-132348b93b91 scope = null +16:40:11.747 [XNIO-1 task-2] qvuEtTZERD6w8GRoRyOHyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:11.760 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:49c75ce7 +16:40:11.796 [XNIO-1 task-1] bOOScNp3T3qzc0yjbAtc6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.796 [XNIO-1 task-1] bOOScNp3T3qzc0yjbAtc6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.796 [XNIO-1 task-1] bOOScNp3T3qzc0yjbAtc6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.796 [XNIO-1 task-1] bOOScNp3T3qzc0yjbAtc6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:11.873 [XNIO-1 task-1] bOOScNp3T3qzc0yjbAtc6Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.918 [XNIO-1 task-2] HFyw6MQJTl6ikcbysb3ygQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.919 [XNIO-1 task-2] HFyw6MQJTl6ikcbysb3ygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.919 [XNIO-1 task-2] HFyw6MQJTl6ikcbysb3ygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.965 [XNIO-1 task-2] HFyw6MQJTl6ikcbysb3ygQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:11.965 [XNIO-1 task-2] HFyw6MQJTl6ikcbysb3ygQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:11.967 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:11.968 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1a58b740-3d60-47ed-ac6e-bd0280533d70 +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6390bda7-a01a-4dee-a69a-f06073a731db is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:11.976 [XNIO-1 task-2] 2d9AFVkJQmW7JDv3KHTqYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.976 [XNIO-1 task-2] 2d9AFVkJQmW7JDv3KHTqYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.976 [XNIO-1 task-2] 2d9AFVkJQmW7JDv3KHTqYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.976 [XNIO-1 task-2] 2d9AFVkJQmW7JDv3KHTqYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:11.980 [XNIO-1 task-1] _NGLlvwPS2K-L6wVZ2B6lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.980 [XNIO-1 task-1] _NGLlvwPS2K-L6wVZ2B6lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:11.981 [XNIO-1 task-1] _NGLlvwPS2K-L6wVZ2B6lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:11.981 [XNIO-1 task-1] _NGLlvwPS2K-L6wVZ2B6lQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:11.983 [XNIO-1 task-2] 2d9AFVkJQmW7JDv3KHTqYg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:11.991 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:21100431 +16:40:11.991 [XNIO-1 task-1] _NGLlvwPS2K-L6wVZ2B6lQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:11.992 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1a58b740-3d60-47ed-ac6e-bd0280533d70 +16:40:12.004 [XNIO-1 task-1] g01g0tE3Ru29ldGUCNfvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.004 [XNIO-1 task-1] g01g0tE3Ru29ldGUCNfvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.005 [XNIO-1 task-1] g01g0tE3Ru29ldGUCNfvtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.005 [XNIO-1 task-1] g01g0tE3Ru29ldGUCNfvtg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = e_2xfHF-SqK2WHXYPOM26g redirectUri = http://localhost:8080/authorization +16:40:12.008 [XNIO-1 task-2] BE1KYaNzTM-Gp65rnz3SOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.008 [XNIO-1 task-2] BE1KYaNzTM-Gp65rnz3SOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.008 [XNIO-1 task-2] BE1KYaNzTM-Gp65rnz3SOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.008 [XNIO-1 task-2] BE1KYaNzTM-Gp65rnz3SOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 4822ff3f-73cf-4cb8-9359-b357ac04350a scope = null +16:40:12.012 [XNIO-1 task-1] g01g0tE3Ru29ldGUCNfvtg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.021 [XNIO-1 task-2] BE1KYaNzTM-Gp65rnz3SOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.032 [XNIO-1 task-2] 3Ae77FKbTyykv4tVjBX0yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.032 [XNIO-1 task-2] 3Ae77FKbTyykv4tVjBX0yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.032 [XNIO-1 task-2] 3Ae77FKbTyykv4tVjBX0yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.032 [XNIO-1 task-2] 3Ae77FKbTyykv4tVjBX0yA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:12.033 [XNIO-1 task-1] ACuhGVDHSpGauTH2Gl4fXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.033 [XNIO-1 task-1] ACuhGVDHSpGauTH2Gl4fXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.033 [XNIO-1 task-1] ACuhGVDHSpGauTH2Gl4fXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.034 [XNIO-1 task-1] ACuhGVDHSpGauTH2Gl4fXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:12.040 [XNIO-1 task-1] ACuhGVDHSpGauTH2Gl4fXg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:12.040 [XNIO-1 task-1] ACuhGVDHSpGauTH2Gl4fXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.042 [XNIO-1 task-2] 3Ae77FKbTyykv4tVjBX0yA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.045 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4d0993a0-acc9-46c5-a066-c6cd3fd30009 +16:40:12.058 [XNIO-1 task-2] ZHf8t0HFQlmosTsH2w-OUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.058 [XNIO-1 task-2] ZHf8t0HFQlmosTsH2w-OUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.058 [XNIO-1 task-2] ZHf8t0HFQlmosTsH2w-OUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.058 [XNIO-1 task-2] ZHf8t0HFQlmosTsH2w-OUA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:12.060 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4d0993a0-acc9-46c5-a066-c6cd3fd30009 +16:40:12.066 [XNIO-1 task-1] caC6qn1mTeiLsvC0mHxbQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4d0993a0-acc9-46c5-a066-c6cd3fd30009 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:12.066 [XNIO-1 task-1] caC6qn1mTeiLsvC0mHxbQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.067 [XNIO-1 task-1] caC6qn1mTeiLsvC0mHxbQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.067 [XNIO-1 task-1] caC6qn1mTeiLsvC0mHxbQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.067 [XNIO-1 task-1] caC6qn1mTeiLsvC0mHxbQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = pGpK8-MOQIehx2UZUb8Q2g redirectUri = http://localhost:8080/authorization +16:40:12.074 [XNIO-1 task-1] caC6qn1mTeiLsvC0mHxbQg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:12.074 [XNIO-1 task-1] caC6qn1mTeiLsvC0mHxbQg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.100 [XNIO-1 task-1] Zx_dF_W9RsK7HHVCKJEFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.100 [XNIO-1 task-1] Zx_dF_W9RsK7HHVCKJEFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.101 [XNIO-1 task-1] Zx_dF_W9RsK7HHVCKJEFNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.101 [XNIO-1 task-1] Zx_dF_W9RsK7HHVCKJEFNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = iyJNjhLeTvmHY4Z9g-PnjA redirectUri = http://localhost:8080/authorization +16:40:12.106 [XNIO-1 task-1] Zx_dF_W9RsK7HHVCKJEFNg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.106 [XNIO-1 task-2] Wmdvkfz4RkSfwNMMUVPUYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.106 [XNIO-1 task-2] Wmdvkfz4RkSfwNMMUVPUYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.107 [XNIO-1 task-2] Wmdvkfz4RkSfwNMMUVPUYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.107 [XNIO-1 task-2] Wmdvkfz4RkSfwNMMUVPUYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODhkMjg1MzctNDIxNS00NTAzLThlMmEtYzU4OTE3MjMyNjAwOnNZYjJSQU5JUmpDQTFzVUQ3VTRVakE=", "Basic ODhkMjg1MzctNDIxNS00NTAzLThlMmEtYzU4OTE3MjMyNjAwOnNZYjJSQU5JUmpDQTFzVUQ3VTRVakE=", authorization) +16:40:12.116 [XNIO-1 task-2] Wmdvkfz4RkSfwNMMUVPUYw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:12.123 [XNIO-1 task-2] 6OdljDKqRBGtC9FVlE06ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.123 [XNIO-1 task-2] 6OdljDKqRBGtC9FVlE06ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.123 [XNIO-1 task-2] 6OdljDKqRBGtC9FVlE06ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.123 [XNIO-1 task-2] 6OdljDKqRBGtC9FVlE06ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f6a2f677-4ff1-457c-8cb0-53826417888a scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f6a2f677-4ff1-457c-8cb0-53826417888a is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:12.152 [XNIO-1 task-2] 7Hyj2WTSTKCHTlqHdyunBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.152 [XNIO-1 task-2] 7Hyj2WTSTKCHTlqHdyunBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.152 [XNIO-1 task-2] 7Hyj2WTSTKCHTlqHdyunBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.152 [XNIO-1 task-2] 7Hyj2WTSTKCHTlqHdyunBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:12.158 [XNIO-1 task-2] 7Hyj2WTSTKCHTlqHdyunBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:12.158 [XNIO-1 task-2] 7Hyj2WTSTKCHTlqHdyunBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.163 [XNIO-1 task-1] 233HP1wDT_u-FKL-rKQp9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.163 [XNIO-1 task-1] 233HP1wDT_u-FKL-rKQp9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.163 [XNIO-1 task-1] 233HP1wDT_u-FKL-rKQp9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.164 [XNIO-1 task-1] 233HP1wDT_u-FKL-rKQp9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = JwZm0GuZQMGg9Tl0UhEwbg redirectUri = http://localhost:8080/authorization +16:40:12.168 [XNIO-1 task-2] 5C8PgyXcS-KruuvnKR9TGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.169 [XNIO-1 task-2] 5C8PgyXcS-KruuvnKR9TGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.169 [XNIO-1 task-2] 5C8PgyXcS-KruuvnKR9TGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.169 [XNIO-1 task-2] 5C8PgyXcS-KruuvnKR9TGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 49f90eef-86b0-4668-b869-7957cfe17d2b scope = null +16:40:12.172 [XNIO-1 task-1] 233HP1wDT_u-FKL-rKQp9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.178 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c5504173-74f2-4bc1-9c0a-8d46ce528a3b +16:40:12.179 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:c5504173-74f2-4bc1-9c0a-8d46ce528a3b +16:40:12.182 [XNIO-1 task-1] -6zFZ-EeSwKL_O5fAjJtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.182 [XNIO-1 task-1] -6zFZ-EeSwKL_O5fAjJtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.182 [XNIO-1 task-1] -6zFZ-EeSwKL_O5fAjJtGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.182 [XNIO-1 task-1] -6zFZ-EeSwKL_O5fAjJtGg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:12.182 [XNIO-1 task-1] -6zFZ-EeSwKL_O5fAjJtGg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = aa62d50d-1ce7-4065-9e3f-8827fda6db5a scope = null +16:40:12.185 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:08c6ebb4-5815-41c4-a7ea-75f5ff177390 +16:40:12.194 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:21100431 +16:40:12.194 [XNIO-1 task-1] -6zFZ-EeSwKL_O5fAjJtGg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.197 [XNIO-1 task-2] JxleKXNFSPCHgJ1-m5qfbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.197 [XNIO-1 task-2] JxleKXNFSPCHgJ1-m5qfbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.197 [XNIO-1 task-2] JxleKXNFSPCHgJ1-m5qfbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.197 [XNIO-1 task-2] JxleKXNFSPCHgJ1-m5qfbw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:12.202 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:08c6ebb4-5815-41c4-a7ea-75f5ff177390 +16:40:12.208 [XNIO-1 task-1] F9KU1tTzQICCI2dXEq99_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.208 [XNIO-1 task-1] F9KU1tTzQICCI2dXEq99_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.208 [XNIO-1 task-1] F9KU1tTzQICCI2dXEq99_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.208 [XNIO-1 task-1] F9KU1tTzQICCI2dXEq99_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2172d4cc-e204-4552-be3e-6210ae459a79 scope = null +16:40:12.209 [XNIO-1 task-2] JxleKXNFSPCHgJ1-m5qfbw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.229 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21100431 +16:40:12.230 [XNIO-1 task-1] F9KU1tTzQICCI2dXEq99_A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.241 [XNIO-1 task-1] F4VhRSHiQ3m-rC8wht4YIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.241 [XNIO-1 task-1] F4VhRSHiQ3m-rC8wht4YIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.241 [XNIO-1 task-1] F4VhRSHiQ3m-rC8wht4YIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.242 [XNIO-1 task-1] F4VhRSHiQ3m-rC8wht4YIw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5a9b22a5-fead-475f-bc22-3838a87aaa82 scope = null +16:40:12.252 [XNIO-1 task-1] F4VhRSHiQ3m-rC8wht4YIw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.277 [XNIO-1 task-2] 1f6mS_8KSGq6hyDfN6iUKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.277 [XNIO-1 task-2] 1f6mS_8KSGq6hyDfN6iUKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.277 [XNIO-1 task-2] 1f6mS_8KSGq6hyDfN6iUKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.277 [XNIO-1 task-2] 1f6mS_8KSGq6hyDfN6iUKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OF4zdWwLQMyKZxQDWYAf1A redirectUri = http://localhost:8080/authorization +16:40:12.283 [XNIO-1 task-2] 1f6mS_8KSGq6hyDfN6iUKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.291 [XNIO-1 task-2] Liu8me3XRUGAcUD0l18Y_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.291 [XNIO-1 task-2] Liu8me3XRUGAcUD0l18Y_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.291 [XNIO-1 task-2] Liu8me3XRUGAcUD0l18Y_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.291 [XNIO-1 task-2] Liu8me3XRUGAcUD0l18Y_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:12.303 [XNIO-1 task-2] Liu8me3XRUGAcUD0l18Y_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.315 [XNIO-1 task-2] gMsZ3EZERr-YGMHgTkLrOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.315 [XNIO-1 task-2] gMsZ3EZERr-YGMHgTkLrOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.316 [XNIO-1 task-2] gMsZ3EZERr-YGMHgTkLrOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.316 [XNIO-1 task-2] gMsZ3EZERr-YGMHgTkLrOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:12.327 [XNIO-1 task-2] gMsZ3EZERr-YGMHgTkLrOw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.349 [XNIO-1 task-2] kQWL1SC6Twq4WWXZXYi62g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.349 [XNIO-1 task-2] kQWL1SC6Twq4WWXZXYi62g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.349 [XNIO-1 task-2] kQWL1SC6Twq4WWXZXYi62g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.349 [XNIO-1 task-2] kQWL1SC6Twq4WWXZXYi62g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:12.354 [XNIO-1 task-2] kQWL1SC6Twq4WWXZXYi62g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:12.355 [XNIO-1 task-2] kQWL1SC6Twq4WWXZXYi62g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.379 [XNIO-1 task-2] 4FbKNfyjQwaNUlzjU-yFLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.379 [XNIO-1 task-2] 4FbKNfyjQwaNUlzjU-yFLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.379 [XNIO-1 task-2] 4FbKNfyjQwaNUlzjU-yFLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.379 [XNIO-1 task-2] 4FbKNfyjQwaNUlzjU-yFLA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CUZkApXzQqGrFnB3p1OhIQ redirectUri = http://localhost:8080/authorization +16:40:12.385 [XNIO-1 task-2] 4FbKNfyjQwaNUlzjU-yFLA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.394 [XNIO-1 task-2] ldi3xaL_TZiY5pAd7OQoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.394 [XNIO-1 task-2] ldi3xaL_TZiY5pAd7OQoqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.394 [XNIO-1 task-2] ldi3xaL_TZiY5pAd7OQoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.394 [XNIO-1 task-2] ldi3xaL_TZiY5pAd7OQoqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:12.406 [XNIO-1 task-2] ldi3xaL_TZiY5pAd7OQoqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.425 [XNIO-1 task-2] HWTUkL2MQSGX4KT_F1wCKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.425 [XNIO-1 task-2] HWTUkL2MQSGX4KT_F1wCKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.426 [XNIO-1 task-2] HWTUkL2MQSGX4KT_F1wCKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.426 [XNIO-1 task-2] HWTUkL2MQSGX4KT_F1wCKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:12.431 [XNIO-1 task-2] HWTUkL2MQSGX4KT_F1wCKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:12.431 [XNIO-1 task-2] HWTUkL2MQSGX4KT_F1wCKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:12.453 [XNIO-1 task-2] TikhCBIORGGHt5l2qDhHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.453 [XNIO-1 task-2] TikhCBIORGGHt5l2qDhHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.453 [XNIO-1 task-2] TikhCBIORGGHt5l2qDhHFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:12.453 [XNIO-1 task-2] TikhCBIORGGHt5l2qDhHFw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fe799b36-4345-430d-9500-afb719b56609 scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe799b36-4345-430d-9500-afb719b56609 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:12.841 [XNIO-1 task-2] 8dskCw_YRRKqGfGbvwYt3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.842 [XNIO-1 task-2] 8dskCw_YRRKqGfGbvwYt3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.864 [XNIO-1 task-2] 8dskCw_YRRKqGfGbvwYt3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.864 [XNIO-1 task-2] 8dskCw_YRRKqGfGbvwYt3A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:12.869 [XNIO-1 task-2] 8dskCw_YRRKqGfGbvwYt3A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.873 [XNIO-1 task-2] gCr4pGDLRnKBmFype91Njw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.873 [XNIO-1 task-2] gCr4pGDLRnKBmFype91Njw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.873 [XNIO-1 task-2] gCr4pGDLRnKBmFype91Njw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.874 [XNIO-1 task-2] gCr4pGDLRnKBmFype91Njw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:12.878 [XNIO-1 task-2] gCr4pGDLRnKBmFype91Njw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.883 [XNIO-1 task-2] uwI_nmSGR12wHZ5sPD-TpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.883 [XNIO-1 task-2] uwI_nmSGR12wHZ5sPD-TpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.883 [XNIO-1 task-2] uwI_nmSGR12wHZ5sPD-TpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.883 [XNIO-1 task-2] uwI_nmSGR12wHZ5sPD-TpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:12.888 [XNIO-1 task-2] uwI_nmSGR12wHZ5sPD-TpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.894 [XNIO-1 task-2] MO6h-NFQSsmvE-y5zK4r6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.895 [XNIO-1 task-2] MO6h-NFQSsmvE-y5zK4r6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.895 [XNIO-1 task-2] MO6h-NFQSsmvE-y5zK4r6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.895 [XNIO-1 task-2] MO6h-NFQSsmvE-y5zK4r6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:12.903 [XNIO-1 task-2] MO6h-NFQSsmvE-y5zK4r6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.909 [XNIO-1 task-2] fgXtnFtIQxehM4mAtK28Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.909 [XNIO-1 task-2] fgXtnFtIQxehM4mAtK28Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.909 [XNIO-1 task-2] fgXtnFtIQxehM4mAtK28Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.909 [XNIO-1 task-2] fgXtnFtIQxehM4mAtK28Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:12.914 [XNIO-1 task-2] fgXtnFtIQxehM4mAtK28Mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.918 [XNIO-1 task-2] QTMs1DQ8TH6Xb2oDT1vCww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.918 [XNIO-1 task-2] QTMs1DQ8TH6Xb2oDT1vCww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.919 [XNIO-1 task-2] QTMs1DQ8TH6Xb2oDT1vCww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.919 [XNIO-1 task-2] QTMs1DQ8TH6Xb2oDT1vCww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:12.924 [XNIO-1 task-2] QTMs1DQ8TH6Xb2oDT1vCww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.927 [XNIO-1 task-2] 6DfukYW2Tf-6Lx-IAAG_Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.927 [XNIO-1 task-2] 6DfukYW2Tf-6Lx-IAAG_Tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.927 [XNIO-1 task-2] 6DfukYW2Tf-6Lx-IAAG_Tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.927 [XNIO-1 task-2] 6DfukYW2Tf-6Lx-IAAG_Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:12.932 [XNIO-1 task-2] 6DfukYW2Tf-6Lx-IAAG_Tg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.935 [XNIO-1 task-2] 3iFnx85dT86DCk4NFyNGrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.935 [XNIO-1 task-2] 3iFnx85dT86DCk4NFyNGrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.936 [XNIO-1 task-2] 3iFnx85dT86DCk4NFyNGrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.936 [XNIO-1 task-2] 3iFnx85dT86DCk4NFyNGrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:12.940 [XNIO-1 task-2] 3iFnx85dT86DCk4NFyNGrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.945 [XNIO-1 task-2] 3PPum-lFRXaYP0GM1glXFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.945 [XNIO-1 task-2] 3PPum-lFRXaYP0GM1glXFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.945 [XNIO-1 task-2] 3PPum-lFRXaYP0GM1glXFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.945 [XNIO-1 task-2] 3PPum-lFRXaYP0GM1glXFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:12.950 [XNIO-1 task-2] 3PPum-lFRXaYP0GM1glXFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.954 [XNIO-1 task-2] vC3ysTcQTcyOvHb6yNXY_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.954 [XNIO-1 task-2] vC3ysTcQTcyOvHb6yNXY_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.955 [XNIO-1 task-2] vC3ysTcQTcyOvHb6yNXY_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.955 [XNIO-1 task-2] vC3ysTcQTcyOvHb6yNXY_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:12.959 [XNIO-1 task-2] vC3ysTcQTcyOvHb6yNXY_g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.963 [XNIO-1 task-2] KsSVI-9bRQCWNtj2NG1D3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.963 [XNIO-1 task-2] KsSVI-9bRQCWNtj2NG1D3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.963 [XNIO-1 task-2] KsSVI-9bRQCWNtj2NG1D3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.963 [XNIO-1 task-2] KsSVI-9bRQCWNtj2NG1D3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:12.968 [XNIO-1 task-2] KsSVI-9bRQCWNtj2NG1D3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.972 [XNIO-1 task-2] am1EsE70T5-KGNrWERN8Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.973 [XNIO-1 task-2] am1EsE70T5-KGNrWERN8Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.973 [XNIO-1 task-2] am1EsE70T5-KGNrWERN8Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.973 [XNIO-1 task-2] am1EsE70T5-KGNrWERN8Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:12.978 [XNIO-1 task-2] am1EsE70T5-KGNrWERN8Ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.981 [XNIO-1 task-2] Ck9J8JxZRCaF4cZvZTY5cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.981 [XNIO-1 task-2] Ck9J8JxZRCaF4cZvZTY5cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.981 [XNIO-1 task-2] Ck9J8JxZRCaF4cZvZTY5cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.981 [XNIO-1 task-2] Ck9J8JxZRCaF4cZvZTY5cw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:12.986 [XNIO-1 task-2] Ck9J8JxZRCaF4cZvZTY5cw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:12.990 [XNIO-1 task-2] 32SurICHRaGZIHUHzdEzvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.990 [XNIO-1 task-2] 32SurICHRaGZIHUHzdEzvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:12.990 [XNIO-1 task-2] 32SurICHRaGZIHUHzdEzvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:12.991 [XNIO-1 task-2] 32SurICHRaGZIHUHzdEzvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:12.995 [XNIO-1 task-2] 32SurICHRaGZIHUHzdEzvg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.000 [XNIO-1 task-2] XDiS6UUaRT25J6SB8w7U6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.000 [XNIO-1 task-2] XDiS6UUaRT25J6SB8w7U6w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.001 [XNIO-1 task-2] XDiS6UUaRT25J6SB8w7U6w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.001 [XNIO-1 task-2] XDiS6UUaRT25J6SB8w7U6w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.006 [XNIO-1 task-2] XDiS6UUaRT25J6SB8w7U6w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.009 [XNIO-1 task-2] wgAwANndSuG5XedvK9f3Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.009 [XNIO-1 task-2] wgAwANndSuG5XedvK9f3Kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.009 [XNIO-1 task-2] wgAwANndSuG5XedvK9f3Kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.009 [XNIO-1 task-2] wgAwANndSuG5XedvK9f3Kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.014 [XNIO-1 task-2] wgAwANndSuG5XedvK9f3Kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.017 [XNIO-1 task-2] hYcKcUp-SPaOxzSSDpO20Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.017 [XNIO-1 task-2] hYcKcUp-SPaOxzSSDpO20Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.017 [XNIO-1 task-2] hYcKcUp-SPaOxzSSDpO20Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.018 [XNIO-1 task-2] hYcKcUp-SPaOxzSSDpO20Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.022 [XNIO-1 task-2] hYcKcUp-SPaOxzSSDpO20Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.026 [XNIO-1 task-2] 7meSsmUbQz6N1xoiTo1tkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.026 [XNIO-1 task-2] 7meSsmUbQz6N1xoiTo1tkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.026 [XNIO-1 task-2] 7meSsmUbQz6N1xoiTo1tkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.026 [XNIO-1 task-2] 7meSsmUbQz6N1xoiTo1tkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.031 [XNIO-1 task-2] 7meSsmUbQz6N1xoiTo1tkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.035 [XNIO-1 task-2] 57od76ANTZiJ99LPYyyF4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.035 [XNIO-1 task-2] 57od76ANTZiJ99LPYyyF4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.035 [XNIO-1 task-2] 57od76ANTZiJ99LPYyyF4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.035 [XNIO-1 task-2] 57od76ANTZiJ99LPYyyF4g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.040 [XNIO-1 task-2] 57od76ANTZiJ99LPYyyF4g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.044 [XNIO-1 task-2] QFFhNd4-SRq1jBuAaAjwpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.044 [XNIO-1 task-2] QFFhNd4-SRq1jBuAaAjwpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.044 [XNIO-1 task-2] QFFhNd4-SRq1jBuAaAjwpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.044 [XNIO-1 task-2] QFFhNd4-SRq1jBuAaAjwpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.050 [XNIO-1 task-2] QFFhNd4-SRq1jBuAaAjwpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.054 [XNIO-1 task-2] CC2FA16LQoqOlwek-_2A5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.054 [XNIO-1 task-2] CC2FA16LQoqOlwek-_2A5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.054 [XNIO-1 task-2] CC2FA16LQoqOlwek-_2A5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.054 [XNIO-1 task-2] CC2FA16LQoqOlwek-_2A5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.059 [XNIO-1 task-2] CC2FA16LQoqOlwek-_2A5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.063 [XNIO-1 task-2] mrKWy1gwR7K8OVjY_plv9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.063 [XNIO-1 task-2] mrKWy1gwR7K8OVjY_plv9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.063 [XNIO-1 task-2] mrKWy1gwR7K8OVjY_plv9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.063 [XNIO-1 task-2] mrKWy1gwR7K8OVjY_plv9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:13.069 [XNIO-1 task-2] mrKWy1gwR7K8OVjY_plv9Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.072 [XNIO-1 task-2] RahOqr3pSMqj7N9vC-xFAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.072 [XNIO-1 task-2] RahOqr3pSMqj7N9vC-xFAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.073 [XNIO-1 task-2] RahOqr3pSMqj7N9vC-xFAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.073 [XNIO-1 task-2] RahOqr3pSMqj7N9vC-xFAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:13.077 [XNIO-1 task-2] RahOqr3pSMqj7N9vC-xFAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.081 [XNIO-1 task-2] 9X20XZ6JTTG6eCiW2beCXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.081 [XNIO-1 task-2] 9X20XZ6JTTG6eCiW2beCXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.081 [XNIO-1 task-2] 9X20XZ6JTTG6eCiW2beCXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.081 [XNIO-1 task-2] 9X20XZ6JTTG6eCiW2beCXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:13.086 [XNIO-1 task-2] 9X20XZ6JTTG6eCiW2beCXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.090 [XNIO-1 task-2] 8cUEXk--Rau7gzh-xZaAlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.090 [XNIO-1 task-2] 8cUEXk--Rau7gzh-xZaAlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.090 [XNIO-1 task-2] 8cUEXk--Rau7gzh-xZaAlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.090 [XNIO-1 task-2] 8cUEXk--Rau7gzh-xZaAlg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.095 [XNIO-1 task-2] 8cUEXk--Rau7gzh-xZaAlg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.099 [XNIO-1 task-2] DtrYWgUfSX677zFVy9NBjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.099 [XNIO-1 task-2] DtrYWgUfSX677zFVy9NBjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.099 [XNIO-1 task-2] DtrYWgUfSX677zFVy9NBjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.099 [XNIO-1 task-2] DtrYWgUfSX677zFVy9NBjg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.104 [XNIO-1 task-2] DtrYWgUfSX677zFVy9NBjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.108 [XNIO-1 task-2] 1z1SkHyARZuJz7bTSqP90g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.108 [XNIO-1 task-2] 1z1SkHyARZuJz7bTSqP90g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.108 [XNIO-1 task-2] 1z1SkHyARZuJz7bTSqP90g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.108 [XNIO-1 task-2] 1z1SkHyARZuJz7bTSqP90g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.113 [XNIO-1 task-2] 1z1SkHyARZuJz7bTSqP90g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.117 [XNIO-1 task-2] V4UMuv9bQW2arIZzWoJj9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.117 [XNIO-1 task-2] V4UMuv9bQW2arIZzWoJj9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.117 [XNIO-1 task-2] V4UMuv9bQW2arIZzWoJj9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.117 [XNIO-1 task-2] V4UMuv9bQW2arIZzWoJj9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.122 [XNIO-1 task-2] V4UMuv9bQW2arIZzWoJj9g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.126 [XNIO-1 task-2] nfhtE_V_Qy6IUmabcNjH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.126 [XNIO-1 task-2] nfhtE_V_Qy6IUmabcNjH4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.126 [XNIO-1 task-2] nfhtE_V_Qy6IUmabcNjH4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.126 [XNIO-1 task-2] nfhtE_V_Qy6IUmabcNjH4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.131 [XNIO-1 task-2] nfhtE_V_Qy6IUmabcNjH4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.135 [XNIO-1 task-2] ErkIj6tTToSCy1b4iwkEMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.135 [XNIO-1 task-2] ErkIj6tTToSCy1b4iwkEMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.135 [XNIO-1 task-2] ErkIj6tTToSCy1b4iwkEMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.135 [XNIO-1 task-2] ErkIj6tTToSCy1b4iwkEMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.140 [XNIO-1 task-2] ErkIj6tTToSCy1b4iwkEMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.143 [XNIO-1 task-2] R4daoJN5R7-qQ43_isIY4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.143 [XNIO-1 task-2] R4daoJN5R7-qQ43_isIY4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.144 [XNIO-1 task-2] R4daoJN5R7-qQ43_isIY4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.144 [XNIO-1 task-2] R4daoJN5R7-qQ43_isIY4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.148 [XNIO-1 task-2] R4daoJN5R7-qQ43_isIY4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.153 [XNIO-1 task-2] 3pbM8ACEQs2jCHDWKmveWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.153 [XNIO-1 task-2] 3pbM8ACEQs2jCHDWKmveWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.154 [XNIO-1 task-2] 3pbM8ACEQs2jCHDWKmveWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.155 [XNIO-1 task-2] 3pbM8ACEQs2jCHDWKmveWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.162 [XNIO-1 task-2] 3pbM8ACEQs2jCHDWKmveWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.166 [XNIO-1 task-2] k_od3g1cTUGFEKlJ0mX8LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.166 [XNIO-1 task-2] k_od3g1cTUGFEKlJ0mX8LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.166 [XNIO-1 task-2] k_od3g1cTUGFEKlJ0mX8LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.166 [XNIO-1 task-2] k_od3g1cTUGFEKlJ0mX8LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.171 [XNIO-1 task-2] k_od3g1cTUGFEKlJ0mX8LQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.175 [XNIO-1 task-2] AItU4bBuTgSYG_vbGcnMhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.175 [XNIO-1 task-2] AItU4bBuTgSYG_vbGcnMhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.175 [XNIO-1 task-2] AItU4bBuTgSYG_vbGcnMhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.175 [XNIO-1 task-2] AItU4bBuTgSYG_vbGcnMhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.180 [XNIO-1 task-2] AItU4bBuTgSYG_vbGcnMhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.185 [XNIO-1 task-2] Ol2iLoG6Tv2BEsD2WKzv0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.185 [XNIO-1 task-2] Ol2iLoG6Tv2BEsD2WKzv0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.185 [XNIO-1 task-2] Ol2iLoG6Tv2BEsD2WKzv0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.185 [XNIO-1 task-2] Ol2iLoG6Tv2BEsD2WKzv0g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.190 [XNIO-1 task-2] Ol2iLoG6Tv2BEsD2WKzv0g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.194 [XNIO-1 task-2] cAUS2JvKSo-SVyXT12QtZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.194 [XNIO-1 task-2] cAUS2JvKSo-SVyXT12QtZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.194 [XNIO-1 task-2] cAUS2JvKSo-SVyXT12QtZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.195 [XNIO-1 task-2] cAUS2JvKSo-SVyXT12QtZw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.199 [XNIO-1 task-2] cAUS2JvKSo-SVyXT12QtZw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.204 [XNIO-1 task-2] 09XgOdgETve_k08dxih9qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.204 [XNIO-1 task-2] 09XgOdgETve_k08dxih9qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.204 [XNIO-1 task-2] 09XgOdgETve_k08dxih9qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.204 [XNIO-1 task-2] 09XgOdgETve_k08dxih9qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.209 [XNIO-1 task-2] 09XgOdgETve_k08dxih9qQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.212 [XNIO-1 task-2] LLTNTkwESMefNMEkpboAfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.212 [XNIO-1 task-2] LLTNTkwESMefNMEkpboAfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.212 [XNIO-1 task-2] LLTNTkwESMefNMEkpboAfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.212 [XNIO-1 task-2] LLTNTkwESMefNMEkpboAfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.217 [XNIO-1 task-2] LLTNTkwESMefNMEkpboAfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.220 [XNIO-1 task-2] _EmCo54oTH2G6cb9P5aABw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.221 [XNIO-1 task-2] _EmCo54oTH2G6cb9P5aABw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.221 [XNIO-1 task-2] _EmCo54oTH2G6cb9P5aABw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.221 [XNIO-1 task-2] _EmCo54oTH2G6cb9P5aABw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:13.226 [XNIO-1 task-2] _EmCo54oTH2G6cb9P5aABw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.230 [XNIO-1 task-2] L1ghYCwhRjOaj13ZHad1AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.230 [XNIO-1 task-2] L1ghYCwhRjOaj13ZHad1AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.230 [XNIO-1 task-2] L1ghYCwhRjOaj13ZHad1AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.230 [XNIO-1 task-2] L1ghYCwhRjOaj13ZHad1AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.235 [XNIO-1 task-2] L1ghYCwhRjOaj13ZHad1AA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.240 [XNIO-1 task-2] O9aOC4B2SjmCi5s2FgwJ0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.240 [XNIO-1 task-2] O9aOC4B2SjmCi5s2FgwJ0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.241 [XNIO-1 task-2] O9aOC4B2SjmCi5s2FgwJ0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.241 [XNIO-1 task-2] O9aOC4B2SjmCi5s2FgwJ0w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.245 [XNIO-1 task-2] O9aOC4B2SjmCi5s2FgwJ0w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.249 [XNIO-1 task-2] plOYqwYITOi_mKsGlOmo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.249 [XNIO-1 task-2] plOYqwYITOi_mKsGlOmo4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.249 [XNIO-1 task-2] plOYqwYITOi_mKsGlOmo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.249 [XNIO-1 task-2] plOYqwYITOi_mKsGlOmo4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.254 [XNIO-1 task-2] plOYqwYITOi_mKsGlOmo4Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.258 [XNIO-1 task-2] xBkGkBaGRSyND8lkz72Vgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.258 [XNIO-1 task-2] xBkGkBaGRSyND8lkz72Vgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.258 [XNIO-1 task-2] xBkGkBaGRSyND8lkz72Vgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.258 [XNIO-1 task-2] xBkGkBaGRSyND8lkz72Vgg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.263 [XNIO-1 task-2] xBkGkBaGRSyND8lkz72Vgg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.266 [XNIO-1 task-2] km-DlbEATAaobu6ubneWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.267 [XNIO-1 task-2] km-DlbEATAaobu6ubneWMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.267 [XNIO-1 task-2] km-DlbEATAaobu6ubneWMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.267 [XNIO-1 task-2] km-DlbEATAaobu6ubneWMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:13.272 [XNIO-1 task-2] km-DlbEATAaobu6ubneWMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.275 [XNIO-1 task-2] eGyJbpFnQsCS6HiBpAeHaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.275 [XNIO-1 task-2] eGyJbpFnQsCS6HiBpAeHaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.275 [XNIO-1 task-2] eGyJbpFnQsCS6HiBpAeHaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.275 [XNIO-1 task-2] eGyJbpFnQsCS6HiBpAeHaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:13.280 [XNIO-1 task-2] eGyJbpFnQsCS6HiBpAeHaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.283 [XNIO-1 task-2] MTE1gWIeSA-2lqgL9XB01g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.283 [XNIO-1 task-2] MTE1gWIeSA-2lqgL9XB01g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.284 [XNIO-1 task-2] MTE1gWIeSA-2lqgL9XB01g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.284 [XNIO-1 task-2] MTE1gWIeSA-2lqgL9XB01g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:13.289 [XNIO-1 task-2] MTE1gWIeSA-2lqgL9XB01g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.294 [XNIO-1 task-2] GuDfLhY4QVy1ksgC1qq7dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.294 [XNIO-1 task-2] GuDfLhY4QVy1ksgC1qq7dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.295 [XNIO-1 task-2] GuDfLhY4QVy1ksgC1qq7dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.295 [XNIO-1 task-2] GuDfLhY4QVy1ksgC1qq7dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.299 [XNIO-1 task-2] GuDfLhY4QVy1ksgC1qq7dw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.304 [XNIO-1 task-2] XQHDM1uiSN61fBZZi95Ctw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.304 [XNIO-1 task-2] XQHDM1uiSN61fBZZi95Ctw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.304 [XNIO-1 task-2] XQHDM1uiSN61fBZZi95Ctw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.304 [XNIO-1 task-2] XQHDM1uiSN61fBZZi95Ctw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.309 [XNIO-1 task-2] XQHDM1uiSN61fBZZi95Ctw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.312 [XNIO-1 task-2] 5cZW0NYSTpeI2uHAFYLmkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.312 [XNIO-1 task-2] 5cZW0NYSTpeI2uHAFYLmkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.313 [XNIO-1 task-2] 5cZW0NYSTpeI2uHAFYLmkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.313 [XNIO-1 task-2] 5cZW0NYSTpeI2uHAFYLmkg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.317 [XNIO-1 task-2] 5cZW0NYSTpeI2uHAFYLmkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.321 [XNIO-1 task-2] tOyKAry7QuCd6YaKbyZFxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.321 [XNIO-1 task-2] tOyKAry7QuCd6YaKbyZFxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.322 [XNIO-1 task-2] tOyKAry7QuCd6YaKbyZFxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.322 [XNIO-1 task-2] tOyKAry7QuCd6YaKbyZFxw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.326 [XNIO-1 task-2] tOyKAry7QuCd6YaKbyZFxw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.331 [XNIO-1 task-2] 24x3t9KlQKqAoB7Ev6oPSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.331 [XNIO-1 task-2] 24x3t9KlQKqAoB7Ev6oPSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.331 [XNIO-1 task-2] 24x3t9KlQKqAoB7Ev6oPSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.331 [XNIO-1 task-2] 24x3t9KlQKqAoB7Ev6oPSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.336 [XNIO-1 task-2] 24x3t9KlQKqAoB7Ev6oPSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.341 [XNIO-1 task-2] Nehmdgg0TySrNnEdV_j2NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.341 [XNIO-1 task-2] Nehmdgg0TySrNnEdV_j2NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.341 [XNIO-1 task-2] Nehmdgg0TySrNnEdV_j2NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.341 [XNIO-1 task-2] Nehmdgg0TySrNnEdV_j2NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.346 [XNIO-1 task-2] Nehmdgg0TySrNnEdV_j2NQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.351 [XNIO-1 task-2] BDVIgz-FQqW87UYNFFi_Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.351 [XNIO-1 task-2] BDVIgz-FQqW87UYNFFi_Gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.352 [XNIO-1 task-2] BDVIgz-FQqW87UYNFFi_Gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.352 [XNIO-1 task-2] BDVIgz-FQqW87UYNFFi_Gg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:13.356 [XNIO-1 task-2] BDVIgz-FQqW87UYNFFi_Gg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.360 [XNIO-1 task-2] rJvcKclPSTeNOdBHmnQrKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.360 [XNIO-1 task-2] rJvcKclPSTeNOdBHmnQrKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.360 [XNIO-1 task-2] rJvcKclPSTeNOdBHmnQrKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.361 [XNIO-1 task-2] rJvcKclPSTeNOdBHmnQrKA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.365 [XNIO-1 task-2] rJvcKclPSTeNOdBHmnQrKA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.369 [XNIO-1 task-2] kTlalgAET9yMUr9pquFS5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.369 [XNIO-1 task-2] kTlalgAET9yMUr9pquFS5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.369 [XNIO-1 task-2] kTlalgAET9yMUr9pquFS5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.369 [XNIO-1 task-2] kTlalgAET9yMUr9pquFS5A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.374 [XNIO-1 task-2] kTlalgAET9yMUr9pquFS5A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.379 [XNIO-1 task-2] YROeZWTZR5qY1iCeEnQgcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.379 [XNIO-1 task-2] YROeZWTZR5qY1iCeEnQgcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.379 [XNIO-1 task-2] YROeZWTZR5qY1iCeEnQgcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.379 [XNIO-1 task-2] YROeZWTZR5qY1iCeEnQgcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.384 [XNIO-1 task-2] YROeZWTZR5qY1iCeEnQgcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.387 [XNIO-1 task-2] _J9qVw4XRIGiSc4iLEz9cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.387 [XNIO-1 task-2] _J9qVw4XRIGiSc4iLEz9cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.388 [XNIO-1 task-2] _J9qVw4XRIGiSc4iLEz9cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.388 [XNIO-1 task-2] _J9qVw4XRIGiSc4iLEz9cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.392 [XNIO-1 task-2] _J9qVw4XRIGiSc4iLEz9cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.396 [XNIO-1 task-2] KxNYmcVhTbCsVguxR7QiBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.396 [XNIO-1 task-2] KxNYmcVhTbCsVguxR7QiBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.396 [XNIO-1 task-2] KxNYmcVhTbCsVguxR7QiBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.396 [XNIO-1 task-2] KxNYmcVhTbCsVguxR7QiBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.401 [XNIO-1 task-2] KxNYmcVhTbCsVguxR7QiBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.405 [XNIO-1 task-2] whXyC5odRR-hjsjbU3aOnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.405 [XNIO-1 task-2] whXyC5odRR-hjsjbU3aOnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.405 [XNIO-1 task-2] whXyC5odRR-hjsjbU3aOnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.405 [XNIO-1 task-2] whXyC5odRR-hjsjbU3aOnA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.410 [XNIO-1 task-2] whXyC5odRR-hjsjbU3aOnA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.415 [XNIO-1 task-2] QjqR2mxBQO2CVOLaP_KUSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.415 [XNIO-1 task-2] QjqR2mxBQO2CVOLaP_KUSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.415 [XNIO-1 task-2] QjqR2mxBQO2CVOLaP_KUSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.415 [XNIO-1 task-2] QjqR2mxBQO2CVOLaP_KUSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:13.420 [XNIO-1 task-2] QjqR2mxBQO2CVOLaP_KUSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.424 [XNIO-1 task-2] XwL_Ji6QQNO70mdbW4RZSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.424 [XNIO-1 task-2] XwL_Ji6QQNO70mdbW4RZSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.424 [XNIO-1 task-2] XwL_Ji6QQNO70mdbW4RZSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.424 [XNIO-1 task-2] XwL_Ji6QQNO70mdbW4RZSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.429 [XNIO-1 task-2] XwL_Ji6QQNO70mdbW4RZSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.433 [XNIO-1 task-2] oEC_qZ26RauzbBOkVhgp5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.433 [XNIO-1 task-2] oEC_qZ26RauzbBOkVhgp5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.433 [XNIO-1 task-2] oEC_qZ26RauzbBOkVhgp5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.433 [XNIO-1 task-2] oEC_qZ26RauzbBOkVhgp5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.438 [XNIO-1 task-2] oEC_qZ26RauzbBOkVhgp5w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.443 [XNIO-1 task-2] 0IL_MBs7T_ysGyw25_ccgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.443 [XNIO-1 task-2] 0IL_MBs7T_ysGyw25_ccgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.443 [XNIO-1 task-2] 0IL_MBs7T_ysGyw25_ccgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.443 [XNIO-1 task-2] 0IL_MBs7T_ysGyw25_ccgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.448 [XNIO-1 task-2] 0IL_MBs7T_ysGyw25_ccgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.458 [XNIO-1 task-2] S6Q3-2teRBeXOtN8pRZ2dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.458 [XNIO-1 task-2] S6Q3-2teRBeXOtN8pRZ2dA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.458 [XNIO-1 task-2] S6Q3-2teRBeXOtN8pRZ2dA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.458 [XNIO-1 task-2] S6Q3-2teRBeXOtN8pRZ2dA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:13.463 [XNIO-1 task-2] S6Q3-2teRBeXOtN8pRZ2dA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.467 [XNIO-1 task-2] ILvUTKezQlymmrJQOE5brA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.467 [XNIO-1 task-2] ILvUTKezQlymmrJQOE5brA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.467 [XNIO-1 task-2] ILvUTKezQlymmrJQOE5brA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.467 [XNIO-1 task-2] ILvUTKezQlymmrJQOE5brA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.472 [XNIO-1 task-2] ILvUTKezQlymmrJQOE5brA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.475 [XNIO-1 task-2] utsWoIN_RkKtoazJSM1X1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.475 [XNIO-1 task-2] utsWoIN_RkKtoazJSM1X1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.476 [XNIO-1 task-2] utsWoIN_RkKtoazJSM1X1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.476 [XNIO-1 task-2] utsWoIN_RkKtoazJSM1X1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.480 [XNIO-1 task-2] utsWoIN_RkKtoazJSM1X1Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.485 [XNIO-1 task-2] uwSTe4DvRfKzu4MtYbXZog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.485 [XNIO-1 task-2] uwSTe4DvRfKzu4MtYbXZog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.485 [XNIO-1 task-2] uwSTe4DvRfKzu4MtYbXZog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.485 [XNIO-1 task-2] uwSTe4DvRfKzu4MtYbXZog DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.490 [XNIO-1 task-2] uwSTe4DvRfKzu4MtYbXZog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.493 [XNIO-1 task-2] _a1yMgvwSOO-jFC9MnmR0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.493 [XNIO-1 task-2] _a1yMgvwSOO-jFC9MnmR0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.494 [XNIO-1 task-2] _a1yMgvwSOO-jFC9MnmR0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.494 [XNIO-1 task-2] _a1yMgvwSOO-jFC9MnmR0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.499 [XNIO-1 task-2] _a1yMgvwSOO-jFC9MnmR0A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.502 [XNIO-1 task-2] MYerx5kISgCAKNiusEUgqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.502 [XNIO-1 task-2] MYerx5kISgCAKNiusEUgqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.502 [XNIO-1 task-2] MYerx5kISgCAKNiusEUgqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.503 [XNIO-1 task-2] MYerx5kISgCAKNiusEUgqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.507 [XNIO-1 task-2] MYerx5kISgCAKNiusEUgqg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.512 [XNIO-1 task-2] nwe-J2ckRe2RuSNL_Sl1xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.512 [XNIO-1 task-2] nwe-J2ckRe2RuSNL_Sl1xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.512 [XNIO-1 task-2] nwe-J2ckRe2RuSNL_Sl1xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.512 [XNIO-1 task-2] nwe-J2ckRe2RuSNL_Sl1xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.518 [XNIO-1 task-2] nwe-J2ckRe2RuSNL_Sl1xw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.522 [XNIO-1 task-2] tFasiE90RP-QdKQovdfMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.522 [XNIO-1 task-2] tFasiE90RP-QdKQovdfMiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.523 [XNIO-1 task-2] tFasiE90RP-QdKQovdfMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.523 [XNIO-1 task-2] tFasiE90RP-QdKQovdfMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.527 [XNIO-1 task-2] tFasiE90RP-QdKQovdfMiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.531 [XNIO-1 task-2] snei0rYDSfCKNKxwPZVG2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.532 [XNIO-1 task-2] snei0rYDSfCKNKxwPZVG2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.532 [XNIO-1 task-2] snei0rYDSfCKNKxwPZVG2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.532 [XNIO-1 task-2] snei0rYDSfCKNKxwPZVG2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.537 [XNIO-1 task-2] snei0rYDSfCKNKxwPZVG2g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.541 [XNIO-1 task-2] CmE_DAh_Rwqy-uKhs7uN2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.541 [XNIO-1 task-2] CmE_DAh_Rwqy-uKhs7uN2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.541 [XNIO-1 task-2] CmE_DAh_Rwqy-uKhs7uN2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.542 [XNIO-1 task-2] CmE_DAh_Rwqy-uKhs7uN2w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.546 [XNIO-1 task-2] CmE_DAh_Rwqy-uKhs7uN2w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.550 [XNIO-1 task-2] D668yCoITDGcrB64JlnMHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.550 [XNIO-1 task-2] D668yCoITDGcrB64JlnMHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.550 [XNIO-1 task-2] D668yCoITDGcrB64JlnMHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.550 [XNIO-1 task-2] D668yCoITDGcrB64JlnMHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.555 [XNIO-1 task-2] D668yCoITDGcrB64JlnMHA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.558 [XNIO-1 task-2] h9oPvyVoR2ilWjfWpoYiYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.558 [XNIO-1 task-2] h9oPvyVoR2ilWjfWpoYiYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.558 [XNIO-1 task-2] h9oPvyVoR2ilWjfWpoYiYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.558 [XNIO-1 task-2] h9oPvyVoR2ilWjfWpoYiYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.563 [XNIO-1 task-2] h9oPvyVoR2ilWjfWpoYiYg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.567 [XNIO-1 task-2] OSNaV4vhRkOMbBttjMskuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.567 [XNIO-1 task-2] OSNaV4vhRkOMbBttjMskuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.567 [XNIO-1 task-2] OSNaV4vhRkOMbBttjMskuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.567 [XNIO-1 task-2] OSNaV4vhRkOMbBttjMskuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.572 [XNIO-1 task-2] OSNaV4vhRkOMbBttjMskuQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.575 [XNIO-1 task-2] GcCPEAcSRJqMAzQ11ct4HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.575 [XNIO-1 task-2] GcCPEAcSRJqMAzQ11ct4HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.576 [XNIO-1 task-2] GcCPEAcSRJqMAzQ11ct4HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.576 [XNIO-1 task-2] GcCPEAcSRJqMAzQ11ct4HA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.581 [XNIO-1 task-2] GcCPEAcSRJqMAzQ11ct4HA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.585 [XNIO-1 task-2] KcAu2iKUSOGtprp2N0-NXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.585 [XNIO-1 task-2] KcAu2iKUSOGtprp2N0-NXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.585 [XNIO-1 task-2] KcAu2iKUSOGtprp2N0-NXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.585 [XNIO-1 task-2] KcAu2iKUSOGtprp2N0-NXA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.590 [XNIO-1 task-2] KcAu2iKUSOGtprp2N0-NXA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.594 [XNIO-1 task-2] Wphg_HCYTXm7R2gLyvRxHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.595 [XNIO-1 task-2] Wphg_HCYTXm7R2gLyvRxHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.595 [XNIO-1 task-2] Wphg_HCYTXm7R2gLyvRxHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.595 [XNIO-1 task-2] Wphg_HCYTXm7R2gLyvRxHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.599 [XNIO-1 task-2] Wphg_HCYTXm7R2gLyvRxHQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.603 [XNIO-1 task-2] q82XLdMjRIO1nj-PNio_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.603 [XNIO-1 task-2] q82XLdMjRIO1nj-PNio_Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.603 [XNIO-1 task-2] q82XLdMjRIO1nj-PNio_Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.603 [XNIO-1 task-2] q82XLdMjRIO1nj-PNio_Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.608 [XNIO-1 task-2] q82XLdMjRIO1nj-PNio_Zw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.612 [XNIO-1 task-2] 17VF2eKhRguGbCPvMPIcLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.612 [XNIO-1 task-2] 17VF2eKhRguGbCPvMPIcLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.612 [XNIO-1 task-2] 17VF2eKhRguGbCPvMPIcLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.612 [XNIO-1 task-2] 17VF2eKhRguGbCPvMPIcLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.617 [XNIO-1 task-2] 17VF2eKhRguGbCPvMPIcLQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.621 [XNIO-1 task-2] 7D8dTeQUSWCD7UrtlwtVBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.621 [XNIO-1 task-2] 7D8dTeQUSWCD7UrtlwtVBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.622 [XNIO-1 task-2] 7D8dTeQUSWCD7UrtlwtVBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.622 [XNIO-1 task-2] 7D8dTeQUSWCD7UrtlwtVBg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.626 [XNIO-1 task-2] 7D8dTeQUSWCD7UrtlwtVBg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.632 [XNIO-1 task-2] CRwx6ibTQUCPWNxcO2jFPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.632 [XNIO-1 task-2] CRwx6ibTQUCPWNxcO2jFPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.633 [XNIO-1 task-2] CRwx6ibTQUCPWNxcO2jFPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.633 [XNIO-1 task-2] CRwx6ibTQUCPWNxcO2jFPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.637 [XNIO-1 task-2] CRwx6ibTQUCPWNxcO2jFPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.641 [XNIO-1 task-2] BIuvm36aTSizw3je1Ccv1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.641 [XNIO-1 task-2] BIuvm36aTSizw3je1Ccv1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.641 [XNIO-1 task-2] BIuvm36aTSizw3je1Ccv1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.641 [XNIO-1 task-2] BIuvm36aTSizw3je1Ccv1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.647 [XNIO-1 task-2] BIuvm36aTSizw3je1Ccv1A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.650 [XNIO-1 task-2] hF8A01CAReCPyNvAkGxpGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.650 [XNIO-1 task-2] hF8A01CAReCPyNvAkGxpGQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.650 [XNIO-1 task-2] hF8A01CAReCPyNvAkGxpGQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.651 [XNIO-1 task-2] hF8A01CAReCPyNvAkGxpGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:13.655 [XNIO-1 task-2] hF8A01CAReCPyNvAkGxpGQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.661 [XNIO-1 task-2] c_1pcEKBQfiSV3a2WdXSRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.661 [XNIO-1 task-2] c_1pcEKBQfiSV3a2WdXSRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.661 [XNIO-1 task-2] c_1pcEKBQfiSV3a2WdXSRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.661 [XNIO-1 task-2] c_1pcEKBQfiSV3a2WdXSRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.666 [XNIO-1 task-2] c_1pcEKBQfiSV3a2WdXSRQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.670 [XNIO-1 task-2] ig-mefBLS1inl9EWSX53tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.670 [XNIO-1 task-2] ig-mefBLS1inl9EWSX53tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.670 [XNIO-1 task-2] ig-mefBLS1inl9EWSX53tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.670 [XNIO-1 task-2] ig-mefBLS1inl9EWSX53tw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.675 [XNIO-1 task-2] ig-mefBLS1inl9EWSX53tw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.679 [XNIO-1 task-2] Fppcy7IiQbGAhizROaQICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.679 [XNIO-1 task-2] Fppcy7IiQbGAhizROaQICg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.679 [XNIO-1 task-2] Fppcy7IiQbGAhizROaQICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.679 [XNIO-1 task-2] Fppcy7IiQbGAhizROaQICg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.684 [XNIO-1 task-2] Fppcy7IiQbGAhizROaQICg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.689 [XNIO-1 task-2] D-in_D8OSiml1CVzjgryDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.689 [XNIO-1 task-2] D-in_D8OSiml1CVzjgryDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.689 [XNIO-1 task-2] D-in_D8OSiml1CVzjgryDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.689 [XNIO-1 task-2] D-in_D8OSiml1CVzjgryDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.694 [XNIO-1 task-2] D-in_D8OSiml1CVzjgryDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.697 [XNIO-1 task-2] cLzi6gWxQniEbzg6xfYVNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.697 [XNIO-1 task-2] cLzi6gWxQniEbzg6xfYVNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.697 [XNIO-1 task-2] cLzi6gWxQniEbzg6xfYVNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.697 [XNIO-1 task-2] cLzi6gWxQniEbzg6xfYVNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.702 [XNIO-1 task-2] cLzi6gWxQniEbzg6xfYVNQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.705 [XNIO-1 task-2] 7IgeSXWgSIqItgwOSmcjZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.705 [XNIO-1 task-2] 7IgeSXWgSIqItgwOSmcjZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.705 [XNIO-1 task-2] 7IgeSXWgSIqItgwOSmcjZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.705 [XNIO-1 task-2] 7IgeSXWgSIqItgwOSmcjZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.710 [XNIO-1 task-2] 7IgeSXWgSIqItgwOSmcjZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.714 [XNIO-1 task-2] Hy3_yrBoSc2eKc-CVrbDhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.714 [XNIO-1 task-2] Hy3_yrBoSc2eKc-CVrbDhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.714 [XNIO-1 task-2] Hy3_yrBoSc2eKc-CVrbDhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.714 [XNIO-1 task-2] Hy3_yrBoSc2eKc-CVrbDhA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.719 [XNIO-1 task-2] Hy3_yrBoSc2eKc-CVrbDhA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.722 [XNIO-1 task-2] AhU8dx9HTG-xvxrGJ_SSvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.722 [XNIO-1 task-2] AhU8dx9HTG-xvxrGJ_SSvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.723 [XNIO-1 task-2] AhU8dx9HTG-xvxrGJ_SSvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.723 [XNIO-1 task-2] AhU8dx9HTG-xvxrGJ_SSvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.728 [XNIO-1 task-2] AhU8dx9HTG-xvxrGJ_SSvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.731 [XNIO-1 task-2] wSVz0ENDRc-ZtzClExAEfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.731 [XNIO-1 task-2] wSVz0ENDRc-ZtzClExAEfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.731 [XNIO-1 task-2] wSVz0ENDRc-ZtzClExAEfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.731 [XNIO-1 task-2] wSVz0ENDRc-ZtzClExAEfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.737 [XNIO-1 task-2] wSVz0ENDRc-ZtzClExAEfw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.740 [XNIO-1 task-2] apuVcHe3QiOChdleDRgJgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.740 [XNIO-1 task-2] apuVcHe3QiOChdleDRgJgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.741 [XNIO-1 task-2] apuVcHe3QiOChdleDRgJgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.741 [XNIO-1 task-2] apuVcHe3QiOChdleDRgJgA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.746 [XNIO-1 task-2] apuVcHe3QiOChdleDRgJgA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.750 [XNIO-1 task-2] 02sfb31JRG26uw77ExDQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.750 [XNIO-1 task-2] 02sfb31JRG26uw77ExDQZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.750 [XNIO-1 task-2] 02sfb31JRG26uw77ExDQZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.750 [XNIO-1 task-2] 02sfb31JRG26uw77ExDQZg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.755 [XNIO-1 task-2] 02sfb31JRG26uw77ExDQZg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.758 [XNIO-1 task-2] fnWcZ0bhTS-KuOuOtByy5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.758 [XNIO-1 task-2] fnWcZ0bhTS-KuOuOtByy5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.758 [XNIO-1 task-2] fnWcZ0bhTS-KuOuOtByy5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.758 [XNIO-1 task-2] fnWcZ0bhTS-KuOuOtByy5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:13.763 [XNIO-1 task-2] fnWcZ0bhTS-KuOuOtByy5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.766 [XNIO-1 task-2] gdvnQTiRT1CW-F6gLq_wVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.766 [XNIO-1 task-2] gdvnQTiRT1CW-F6gLq_wVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.766 [XNIO-1 task-2] gdvnQTiRT1CW-F6gLq_wVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.767 [XNIO-1 task-2] gdvnQTiRT1CW-F6gLq_wVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:13.772 [XNIO-1 task-2] gdvnQTiRT1CW-F6gLq_wVQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.777 [XNIO-1 task-2] UJMQSzfSQdy07wJulIEx2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.777 [XNIO-1 task-2] UJMQSzfSQdy07wJulIEx2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.777 [XNIO-1 task-2] UJMQSzfSQdy07wJulIEx2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.777 [XNIO-1 task-2] UJMQSzfSQdy07wJulIEx2A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.782 [XNIO-1 task-2] UJMQSzfSQdy07wJulIEx2A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.786 [XNIO-1 task-2] sxKZV8jDSeG_2RehFkw1-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.786 [XNIO-1 task-2] sxKZV8jDSeG_2RehFkw1-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.786 [XNIO-1 task-2] sxKZV8jDSeG_2RehFkw1-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.786 [XNIO-1 task-2] sxKZV8jDSeG_2RehFkw1-g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:13.791 [XNIO-1 task-2] sxKZV8jDSeG_2RehFkw1-g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.794 [XNIO-1 task-2] fpKMmpzMTg-0P1Yd1oneEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.794 [XNIO-1 task-2] fpKMmpzMTg-0P1Yd1oneEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.795 [XNIO-1 task-2] fpKMmpzMTg-0P1Yd1oneEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.795 [XNIO-1 task-2] fpKMmpzMTg-0P1Yd1oneEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:13.799 [XNIO-1 task-2] fpKMmpzMTg-0P1Yd1oneEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.805 [XNIO-1 task-2] ynyo8n95RnOdUGCt13uOhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.805 [XNIO-1 task-2] ynyo8n95RnOdUGCt13uOhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.805 [XNIO-1 task-2] ynyo8n95RnOdUGCt13uOhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.805 [XNIO-1 task-2] ynyo8n95RnOdUGCt13uOhg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:13.810 [XNIO-1 task-2] ynyo8n95RnOdUGCt13uOhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.814 [XNIO-1 task-2] gBgSkODMRNKxacMQduG6Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.814 [XNIO-1 task-2] gBgSkODMRNKxacMQduG6Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.815 [XNIO-1 task-2] gBgSkODMRNKxacMQduG6Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.815 [XNIO-1 task-2] gBgSkODMRNKxacMQduG6Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.819 [XNIO-1 task-2] gBgSkODMRNKxacMQduG6Cg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.823 [XNIO-1 task-2] 4DIgqwq7RFykHlr3LYRhoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.823 [XNIO-1 task-2] 4DIgqwq7RFykHlr3LYRhoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.823 [XNIO-1 task-2] 4DIgqwq7RFykHlr3LYRhoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.823 [XNIO-1 task-2] 4DIgqwq7RFykHlr3LYRhoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:13.828 [XNIO-1 task-2] 4DIgqwq7RFykHlr3LYRhoQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.831 [XNIO-1 task-2] vZue0Un6RM2kDvbeSq1Nnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.831 [XNIO-1 task-2] vZue0Un6RM2kDvbeSq1Nnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.831 [XNIO-1 task-2] vZue0Un6RM2kDvbeSq1Nnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.832 [XNIO-1 task-2] vZue0Un6RM2kDvbeSq1Nnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:13.836 [XNIO-1 task-2] vZue0Un6RM2kDvbeSq1Nnw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.840 [XNIO-1 task-2] kJMlojeyQhGMelO3HEAfLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.840 [XNIO-1 task-2] kJMlojeyQhGMelO3HEAfLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.840 [XNIO-1 task-2] kJMlojeyQhGMelO3HEAfLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.840 [XNIO-1 task-2] kJMlojeyQhGMelO3HEAfLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.844 [XNIO-1 task-2] kJMlojeyQhGMelO3HEAfLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.848 [XNIO-1 task-2] 5x_UgEOjTkyjjaSUvQnC6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.849 [XNIO-1 task-2] 5x_UgEOjTkyjjaSUvQnC6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.849 [XNIO-1 task-2] 5x_UgEOjTkyjjaSUvQnC6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.849 [XNIO-1 task-2] 5x_UgEOjTkyjjaSUvQnC6A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.854 [XNIO-1 task-2] 5x_UgEOjTkyjjaSUvQnC6A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.858 [XNIO-1 task-2] SQM_hDNuT9ePf74bPuB_Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.858 [XNIO-1 task-2] SQM_hDNuT9ePf74bPuB_Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.858 [XNIO-1 task-2] SQM_hDNuT9ePf74bPuB_Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.858 [XNIO-1 task-2] SQM_hDNuT9ePf74bPuB_Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.863 [XNIO-1 task-2] SQM_hDNuT9ePf74bPuB_Gw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.892 [XNIO-1 task-2] zNYh9cbUQc2Z3Wef9PDeEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.892 [XNIO-1 task-2] zNYh9cbUQc2Z3Wef9PDeEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.892 [XNIO-1 task-2] zNYh9cbUQc2Z3Wef9PDeEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.892 [XNIO-1 task-2] zNYh9cbUQc2Z3Wef9PDeEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:13.897 [XNIO-1 task-2] zNYh9cbUQc2Z3Wef9PDeEQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.901 [XNIO-1 task-2] g14-qSRTTj6w4V-qgUX0yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.901 [XNIO-1 task-2] g14-qSRTTj6w4V-qgUX0yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.901 [XNIO-1 task-2] g14-qSRTTj6w4V-qgUX0yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.901 [XNIO-1 task-2] g14-qSRTTj6w4V-qgUX0yg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.906 [XNIO-1 task-2] g14-qSRTTj6w4V-qgUX0yg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.911 [XNIO-1 task-2] rhvmxuWdQf-8iAqzb_6vFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.911 [XNIO-1 task-2] rhvmxuWdQf-8iAqzb_6vFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.911 [XNIO-1 task-2] rhvmxuWdQf-8iAqzb_6vFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.912 [XNIO-1 task-2] rhvmxuWdQf-8iAqzb_6vFw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.916 [XNIO-1 task-2] rhvmxuWdQf-8iAqzb_6vFw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.920 [XNIO-1 task-2] EUUCxeLHQ3-yHo4_0aNGVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.920 [XNIO-1 task-2] EUUCxeLHQ3-yHo4_0aNGVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.920 [XNIO-1 task-2] EUUCxeLHQ3-yHo4_0aNGVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.920 [XNIO-1 task-2] EUUCxeLHQ3-yHo4_0aNGVg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.925 [XNIO-1 task-2] EUUCxeLHQ3-yHo4_0aNGVg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.928 [XNIO-1 task-2] H3BPWP8gRa2HM-wX8DzujA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.928 [XNIO-1 task-2] H3BPWP8gRa2HM-wX8DzujA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.928 [XNIO-1 task-2] H3BPWP8gRa2HM-wX8DzujA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.929 [XNIO-1 task-2] H3BPWP8gRa2HM-wX8DzujA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.933 [XNIO-1 task-2] H3BPWP8gRa2HM-wX8DzujA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.941 [XNIO-1 task-2] Ufj-JG4MQICZMvMbKvf-aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.941 [XNIO-1 task-2] Ufj-JG4MQICZMvMbKvf-aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.942 [XNIO-1 task-2] Ufj-JG4MQICZMvMbKvf-aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.942 [XNIO-1 task-2] Ufj-JG4MQICZMvMbKvf-aA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:13.946 [XNIO-1 task-2] Ufj-JG4MQICZMvMbKvf-aA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.952 [XNIO-1 task-2] fZf4QZV0ROGLkoUzBJ-jMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.952 [XNIO-1 task-2] fZf4QZV0ROGLkoUzBJ-jMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.952 [XNIO-1 task-2] fZf4QZV0ROGLkoUzBJ-jMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.952 [XNIO-1 task-2] fZf4QZV0ROGLkoUzBJ-jMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.957 [XNIO-1 task-2] fZf4QZV0ROGLkoUzBJ-jMQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.961 [XNIO-1 task-2] DpmvdZu_RQSNY05rxuwXlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.962 [XNIO-1 task-2] DpmvdZu_RQSNY05rxuwXlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.962 [XNIO-1 task-2] DpmvdZu_RQSNY05rxuwXlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.962 [XNIO-1 task-2] DpmvdZu_RQSNY05rxuwXlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.967 [XNIO-1 task-2] DpmvdZu_RQSNY05rxuwXlw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.972 [XNIO-1 task-2] gz5HsuzIS8GR2H-gTe9-IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.972 [XNIO-1 task-2] gz5HsuzIS8GR2H-gTe9-IA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.972 [XNIO-1 task-2] gz5HsuzIS8GR2H-gTe9-IA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.972 [XNIO-1 task-2] gz5HsuzIS8GR2H-gTe9-IA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.977 [XNIO-1 task-2] gz5HsuzIS8GR2H-gTe9-IA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.981 [XNIO-1 task-2] N59fXm4eRbKCQKU9e80w_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.981 [XNIO-1 task-2] N59fXm4eRbKCQKU9e80w_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.981 [XNIO-1 task-2] N59fXm4eRbKCQKU9e80w_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.981 [XNIO-1 task-2] N59fXm4eRbKCQKU9e80w_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:13.987 [XNIO-1 task-2] N59fXm4eRbKCQKU9e80w_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:13.992 [XNIO-1 task-2] XIZc1SDIRC6sh7OeVITNaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.992 [XNIO-1 task-2] XIZc1SDIRC6sh7OeVITNaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:13.992 [XNIO-1 task-2] XIZc1SDIRC6sh7OeVITNaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:13.992 [XNIO-1 task-2] XIZc1SDIRC6sh7OeVITNaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:13.998 [XNIO-1 task-2] XIZc1SDIRC6sh7OeVITNaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.003 [XNIO-1 task-2] gkjqeVwiSEaMUFkdM2Hhpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.003 [XNIO-1 task-2] gkjqeVwiSEaMUFkdM2Hhpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.003 [XNIO-1 task-2] gkjqeVwiSEaMUFkdM2Hhpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.003 [XNIO-1 task-2] gkjqeVwiSEaMUFkdM2Hhpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", "Basic OTVhODEwNTctNmI5Ni00YzNhLTg3NzItMTMyMjllYzE4M2FkOkhOWUFCb0htUUhHTWZaQlBJQXVJbnc=", authorization) +16:40:14.008 [XNIO-1 task-2] gkjqeVwiSEaMUFkdM2Hhpg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.011 [XNIO-1 task-2] B7Druqq1QoC9t2Vi3Zm6ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.011 [XNIO-1 task-2] B7Druqq1QoC9t2Vi3Zm6ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.012 [XNIO-1 task-2] B7Druqq1QoC9t2Vi3Zm6ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.012 [XNIO-1 task-2] B7Druqq1QoC9t2Vi3Zm6ug DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:14.016 [XNIO-1 task-2] B7Druqq1QoC9t2Vi3Zm6ug DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.020 [XNIO-1 task-2] AvYwGjlZT-WxLfSnZmMNAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.020 [XNIO-1 task-2] AvYwGjlZT-WxLfSnZmMNAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.020 [XNIO-1 task-2] AvYwGjlZT-WxLfSnZmMNAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.020 [XNIO-1 task-2] AvYwGjlZT-WxLfSnZmMNAw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:14.025 [XNIO-1 task-2] AvYwGjlZT-WxLfSnZmMNAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.028 [XNIO-1 task-2] MVcsWBAtQB-HHrsvLxLbCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.029 [XNIO-1 task-2] MVcsWBAtQB-HHrsvLxLbCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.029 [XNIO-1 task-2] MVcsWBAtQB-HHrsvLxLbCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.029 [XNIO-1 task-2] MVcsWBAtQB-HHrsvLxLbCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:14.033 [XNIO-1 task-2] MVcsWBAtQB-HHrsvLxLbCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.038 [XNIO-1 task-2] pIlYoi4MTl6z4BsYI1BEUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.038 [XNIO-1 task-2] pIlYoi4MTl6z4BsYI1BEUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.038 [XNIO-1 task-2] pIlYoi4MTl6z4BsYI1BEUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.038 [XNIO-1 task-2] pIlYoi4MTl6z4BsYI1BEUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:14.043 [XNIO-1 task-2] pIlYoi4MTl6z4BsYI1BEUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.046 [XNIO-1 task-2] tYlZPJ5bTgGR-DJ0vSfZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.046 [XNIO-1 task-2] tYlZPJ5bTgGR-DJ0vSfZVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.047 [XNIO-1 task-2] tYlZPJ5bTgGR-DJ0vSfZVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.047 [XNIO-1 task-2] tYlZPJ5bTgGR-DJ0vSfZVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:14.052 [XNIO-1 task-2] tYlZPJ5bTgGR-DJ0vSfZVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.057 [XNIO-1 task-2] irpOgHeNRyieWHn42Q0_rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.057 [XNIO-1 task-2] irpOgHeNRyieWHn42Q0_rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.057 [XNIO-1 task-2] irpOgHeNRyieWHn42Q0_rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.057 [XNIO-1 task-2] irpOgHeNRyieWHn42Q0_rg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:14.062 [XNIO-1 task-2] irpOgHeNRyieWHn42Q0_rg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.066 [XNIO-1 task-2] Re21by-XRwWNFi26ERfZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.066 [XNIO-1 task-2] Re21by-XRwWNFi26ERfZ7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.066 [XNIO-1 task-2] Re21by-XRwWNFi26ERfZ7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.067 [XNIO-1 task-2] Re21by-XRwWNFi26ERfZ7A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:14.072 [XNIO-1 task-2] Re21by-XRwWNFi26ERfZ7A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.076 [XNIO-1 task-2] xMVEUHGlSBajlQ1G6sTm-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.076 [XNIO-1 task-2] xMVEUHGlSBajlQ1G6sTm-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.076 [XNIO-1 task-2] xMVEUHGlSBajlQ1G6sTm-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.076 [XNIO-1 task-2] xMVEUHGlSBajlQ1G6sTm-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", "Basic ZjY1NzdiMTYtZTNiMS00OGQzLWI3MWUtZmUzZGMwNDQ4NDkwOkFTZGVCTlp2U1dpb3BUZmdweDhETGc=", authorization) +16:40:14.081 [XNIO-1 task-2] xMVEUHGlSBajlQ1G6sTm-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.084 [XNIO-1 task-2] o3V1idymQly95-In3C8jhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.084 [XNIO-1 task-2] o3V1idymQly95-In3C8jhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.084 [XNIO-1 task-2] o3V1idymQly95-In3C8jhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.084 [XNIO-1 task-2] o3V1idymQly95-In3C8jhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:14.089 [XNIO-1 task-2] o3V1idymQly95-In3C8jhQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.093 [XNIO-1 task-2] V0IJgZDFSm6lmkKe-QB2Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.093 [XNIO-1 task-2] V0IJgZDFSm6lmkKe-QB2Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.093 [XNIO-1 task-2] V0IJgZDFSm6lmkKe-QB2Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.093 [XNIO-1 task-2] V0IJgZDFSm6lmkKe-QB2Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", "Basic ZmU1NmE0YjAtZmRhYS00ZGJkLWE3MTAtYWM2NTFmMDNlMjkyOkNmVkI2c2J4UURHbi03NWQ4NkZYWFE=", authorization) +16:40:14.098 [XNIO-1 task-2] V0IJgZDFSm6lmkKe-QB2Xw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.102 [XNIO-1 task-2] nFkm0SkjSVGdeLf_K7bODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.102 [XNIO-1 task-2] nFkm0SkjSVGdeLf_K7bODA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.103 [XNIO-1 task-2] nFkm0SkjSVGdeLf_K7bODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.103 [XNIO-1 task-2] nFkm0SkjSVGdeLf_K7bODA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:14.109 [XNIO-1 task-2] nFkm0SkjSVGdeLf_K7bODA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.110 [XNIO-1 task-1] JTgTF2LzS9e5R_YVH2bIpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.110 [XNIO-1 task-1] JTgTF2LzS9e5R_YVH2bIpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.110 [XNIO-1 task-1] JTgTF2LzS9e5R_YVH2bIpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.110 [XNIO-1 task-1] JTgTF2LzS9e5R_YVH2bIpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.115 [XNIO-1 task-2] r8djOj-tTkOPj6RtCLLZ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.115 [XNIO-1 task-2] r8djOj-tTkOPj6RtCLLZ3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.115 [XNIO-1 task-2] r8djOj-tTkOPj6RtCLLZ3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.115 [XNIO-1 task-2] r8djOj-tTkOPj6RtCLLZ3w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", "Basic NzYwOWNmNWMtYzM4Yi00Y2I4LWExNWUtZTYwODRjMTIwNWJkOkdOX2c3RndZUUlldlZNSTZyLXFDTlE=", authorization) +16:40:14.119 [XNIO-1 task-4] 3sDEBQp8SmyjY6q0NvYjwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.120 [XNIO-1 task-4] 3sDEBQp8SmyjY6q0NvYjwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.120 [XNIO-1 task-1] JTgTF2LzS9e5R_YVH2bIpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.120 [XNIO-1 task-4] 3sDEBQp8SmyjY6q0NvYjwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.120 [XNIO-1 task-4] 3sDEBQp8SmyjY6q0NvYjwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzU1MDQxNzMtNzRmMi00YmMxLTljMGEtOGQ0NmNlNTI4YTNiOjZUMElBQjhfUXRTckprS2JreEdZYkE=", "Basic YzU1MDQxNzMtNzRmMi00YmMxLTljMGEtOGQ0NmNlNTI4YTNiOjZUMElBQjhfUXRTckprS2JreEdZYkE=", authorization) +16:40:14.120 [XNIO-1 task-2] r8djOj-tTkOPj6RtCLLZ3w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.125 [XNIO-1 task-2] OhozagpZTyyjA9IsLLh-kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.125 [XNIO-1 task-2] OhozagpZTyyjA9IsLLh-kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.125 [XNIO-1 task-2] OhozagpZTyyjA9IsLLh-kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.125 [XNIO-1 task-2] OhozagpZTyyjA9IsLLh-kw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:14.130 [XNIO-1 task-2] OhozagpZTyyjA9IsLLh-kw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.130 [XNIO-1 task-4] 3sDEBQp8SmyjY6q0NvYjwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.131 [XNIO-1 task-4] 3sDEBQp8SmyjY6q0NvYjwQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.139 [XNIO-1 task-2] QmpsQ_EuQ0qQiMcGIieF9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.139 [XNIO-1 task-2] QmpsQ_EuQ0qQiMcGIieF9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.139 [XNIO-1 task-2] QmpsQ_EuQ0qQiMcGIieF9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.139 [XNIO-1 task-2] QmpsQ_EuQ0qQiMcGIieF9Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.144 [XNIO-1 task-2] QmpsQ_EuQ0qQiMcGIieF9Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.149 [XNIO-1 task-4] Ww5gw2VVTJqMbAJB9Rb4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.149 [XNIO-1 task-4] Ww5gw2VVTJqMbAJB9Rb4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.150 [XNIO-1 task-4] Ww5gw2VVTJqMbAJB9Rb4_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.150 [XNIO-1 task-4] Ww5gw2VVTJqMbAJB9Rb4_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b5b535dd-e2af-44aa-b0ba-47130478ed43 scope = null +16:40:14.153 [XNIO-1 task-2] Ar9keRKMTV-Ehln2gbiAgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.153 [XNIO-1 task-2] Ar9keRKMTV-Ehln2gbiAgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.153 [XNIO-1 task-2] Ar9keRKMTV-Ehln2gbiAgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.153 [XNIO-1 task-2] Ar9keRKMTV-Ehln2gbiAgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.158 [XNIO-1 task-4] Ww5gw2VVTJqMbAJB9Rb4_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.158 [XNIO-1 task-4] Ww5gw2VVTJqMbAJB9Rb4_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.167 [XNIO-1 task-4] BWzjWrR2Q_ulZKvVgfhcSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.167 [XNIO-1 task-4] BWzjWrR2Q_ulZKvVgfhcSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.167 [XNIO-1 task-4] BWzjWrR2Q_ulZKvVgfhcSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.168 [XNIO-1 task-4] BWzjWrR2Q_ulZKvVgfhcSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.173 [XNIO-1 task-4] BWzjWrR2Q_ulZKvVgfhcSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.174 [XNIO-1 task-2] O8MOU9VpRVe9yfVZFzM5tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.174 [XNIO-1 task-2] O8MOU9VpRVe9yfVZFzM5tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.174 [XNIO-1 task-2] O8MOU9VpRVe9yfVZFzM5tQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.174 [XNIO-1 task-2] O8MOU9VpRVe9yfVZFzM5tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = XMcGnlWfQPen_XyaZCYgyw redirectUri = http://localhost:8080/authorization +16:40:14.180 [XNIO-1 task-2] O8MOU9VpRVe9yfVZFzM5tQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.180 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3c055339 +16:40:14.180 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3c055339 +16:40:14.182 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f2c8e67b-5733-4a6a-90a5-ffd59d910c8e +16:40:14.182 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f2c8e67b-5733-4a6a-90a5-ffd59d910c8e +16:40:14.182 [XNIO-1 task-4] jSEAaywdTfi8DmtDIBumqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.182 [XNIO-1 task-4] jSEAaywdTfi8DmtDIBumqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.182 [XNIO-1 task-4] jSEAaywdTfi8DmtDIBumqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.188 [XNIO-1 task-4] jSEAaywdTfi8DmtDIBumqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.197 [XNIO-1 task-2] ySvG6QWATPWkTuATRlcUDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.197 [XNIO-1 task-2] ySvG6QWATPWkTuATRlcUDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.197 [XNIO-1 task-2] ySvG6QWATPWkTuATRlcUDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.197 [XNIO-1 task-4] LfRVyp3oQn2o0pvuKOuGSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.197 [XNIO-1 task-2] ySvG6QWATPWkTuATRlcUDA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:14.197 [XNIO-1 task-2] ySvG6QWATPWkTuATRlcUDA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f2c8e67b-5733-4a6a-90a5-ffd59d910c8e scope = null +16:40:14.197 [XNIO-1 task-4] LfRVyp3oQn2o0pvuKOuGSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.197 [XNIO-1 task-4] LfRVyp3oQn2o0pvuKOuGSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.202 [XNIO-1 task-4] LfRVyp3oQn2o0pvuKOuGSA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.208 [XNIO-1 task-2] ySvG6QWATPWkTuATRlcUDA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.208 [XNIO-1 task-4] Y9wNYiNXTTW22iOIf0YS3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.208 [XNIO-1 task-4] Y9wNYiNXTTW22iOIf0YS3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.208 [XNIO-1 task-4] Y9wNYiNXTTW22iOIf0YS3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.208 [XNIO-1 task-4] Y9wNYiNXTTW22iOIf0YS3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:14.212 [XNIO-1 task-1] UwQemq-SQAa1ilKH-4j1HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.212 [XNIO-1 task-1] UwQemq-SQAa1ilKH-4j1HA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.212 [XNIO-1 task-1] UwQemq-SQAa1ilKH-4j1HA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.212 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f2c8e67b-5733-4a6a-90a5-ffd59d910c8e +16:40:14.212 [XNIO-1 task-1] UwQemq-SQAa1ilKH-4j1HA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 scope = null +16:40:14.213 [XNIO-1 task-4] Y9wNYiNXTTW22iOIf0YS3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:14.222 [XNIO-1 task-1] x0qkj5qFT_uwfuS0amhuCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.222 [XNIO-1 task-1] x0qkj5qFT_uwfuS0amhuCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.222 [XNIO-1 task-1] x0qkj5qFT_uwfuS0amhuCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.222 [XNIO-1 task-1] x0qkj5qFT_uwfuS0amhuCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:14.225 [XNIO-1 task-4] Ndtv9WPlT9WFOLbtlERwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.225 [XNIO-1 task-4] Ndtv9WPlT9WFOLbtlERwHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.225 [XNIO-1 task-4] Ndtv9WPlT9WFOLbtlERwHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.225 [XNIO-1 task-4] Ndtv9WPlT9WFOLbtlERwHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.227 [XNIO-1 task-1] x0qkj5qFT_uwfuS0amhuCQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.234 [XNIO-1 task-1] uHszFPQCSwefXMl5kWJDgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:14.234 [XNIO-1 task-1] uHszFPQCSwefXMl5kWJDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.234 [XNIO-1 task-1] uHszFPQCSwefXMl5kWJDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.234 [XNIO-1 task-1] uHszFPQCSwefXMl5kWJDgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.234 [XNIO-1 task-1] uHszFPQCSwefXMl5kWJDgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.239 [XNIO-1 task-1] uHszFPQCSwefXMl5kWJDgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.246 [XNIO-1 task-1] zWfVMEklQ5GE4NmkLV6R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.247 [XNIO-1 task-1] zWfVMEklQ5GE4NmkLV6R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.247 [XNIO-1 task-1] zWfVMEklQ5GE4NmkLV6R1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.248 [XNIO-1 task-1] zWfVMEklQ5GE4NmkLV6R1g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.253 [XNIO-1 task-1] zWfVMEklQ5GE4NmkLV6R1g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.254 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21100431 +16:40:14.263 [XNIO-1 task-1] xNy9LiQdQiiZZgYKKu09yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.263 [XNIO-1 task-1] xNy9LiQdQiiZZgYKKu09yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.263 [XNIO-1 task-1] xNy9LiQdQiiZZgYKKu09yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.264 [XNIO-1 task-1] xNy9LiQdQiiZZgYKKu09yA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = MMREboHWTP6Hxafs4RF4GQ redirectUri = http://localhost:8080/authorization +16:40:14.265 [XNIO-1 task-4] g0C7tVFVTZSYJoxZXuEPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.265 [XNIO-1 task-4] g0C7tVFVTZSYJoxZXuEPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.265 [XNIO-1 task-4] g0C7tVFVTZSYJoxZXuEPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.265 [XNIO-1 task-4] g0C7tVFVTZSYJoxZXuEPBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.268 [XNIO-1 task-2] IdX88Z5zRSCPexqy4zfvFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.268 [XNIO-1 task-2] IdX88Z5zRSCPexqy4zfvFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.268 [XNIO-1 task-2] IdX88Z5zRSCPexqy4zfvFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +16:40:14.268 [XNIO-1 task-2] IdX88Z5zRSCPexqy4zfvFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:40:14.269 [XNIO-1 task-1] xNy9LiQdQiiZZgYKKu09yA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.269 [XNIO-1 task-1] xNy9LiQdQiiZZgYKKu09yA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) +16:40:14.275 [XNIO-1 task-2] IdX88Z5zRSCPexqy4zfvFQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.275 [XNIO-1 task-2] IdX88Z5zRSCPexqy4zfvFQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:40:14.275 [XNIO-1 task-1] cwpTK2C4Qq6mt8N-yGG3pQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +16:40:14.275 [XNIO-1 task-1] cwpTK2C4Qq6mt8N-yGG3pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) +16:40:14.276 [XNIO-1 task-1] cwpTK2C4Qq6mt8N-yGG3pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:40:14.281 [XNIO-1 task-1] cwpTK2C4Qq6mt8N-yGG3pQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:40:14.294 [XNIO-1 task-2] wumQCRwHTLCTbEEcDCNhzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.294 [XNIO-1 task-2] wumQCRwHTLCTbEEcDCNhzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.294 [XNIO-1 task-2] wumQCRwHTLCTbEEcDCNhzw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:14.295 [XNIO-1 task-1] Syys2CPgQeOs2fINcr5_4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.295 [XNIO-1 task-1] Syys2CPgQeOs2fINcr5_4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.295 [XNIO-1 task-1] Syys2CPgQeOs2fINcr5_4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.295 [XNIO-1 task-1] Syys2CPgQeOs2fINcr5_4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", "Basic ZTdjZGZjN2MtYTI4ZS00YWNmLTlmYjQtY2MzZWRkN2QwODJlOmpRSUdtOEh5UnNPVGFlbjhiQmdYUnc=", authorization) +16:40:14.301 [XNIO-1 task-2] wumQCRwHTLCTbEEcDCNhzw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.301 [XNIO-1 task-1] Syys2CPgQeOs2fINcr5_4w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.301 [XNIO-1 task-1] Syys2CPgQeOs2fINcr5_4w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.307 [XNIO-1 task-2] TKr-SuTaSpCd552qxRu8ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.307 [XNIO-1 task-2] TKr-SuTaSpCd552qxRu8ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.307 [XNIO-1 task-2] TKr-SuTaSpCd552qxRu8ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.307 [XNIO-1 task-2] TKr-SuTaSpCd552qxRu8ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.312 [XNIO-1 task-2] TKr-SuTaSpCd552qxRu8ig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.313 [XNIO-1 task-1] taQ1euo1Qv-_U4m7ikmoig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.313 [XNIO-1 task-1] taQ1euo1Qv-_U4m7ikmoig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.313 [XNIO-1 task-1] taQ1euo1Qv-_U4m7ikmoig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.313 [XNIO-1 task-1] taQ1euo1Qv-_U4m7ikmoig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 scope = null +16:40:14.315 [XNIO-1 task-2] PffnkGBRS4uEkLziligyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.315 [XNIO-1 task-2] PffnkGBRS4uEkLziligyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.315 [XNIO-1 task-2] PffnkGBRS4uEkLziligyiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.315 [XNIO-1 task-2] PffnkGBRS4uEkLziligyiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = a9849478-04fb-483b-bdf2-435c4cb6ad63 scope = null +16:40:14.319 [XNIO-1 task-4] P2-27N1BTayg3UqInBjl8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.319 [XNIO-1 task-4] P2-27N1BTayg3UqInBjl8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.319 [XNIO-1 task-4] P2-27N1BTayg3UqInBjl8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.320 [XNIO-1 task-4] P2-27N1BTayg3UqInBjl8Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b5fb37a8-c8d3-43f3-911d-d5dfa1e2dbc8 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:14.324 [XNIO-1 task-2] PffnkGBRS4uEkLziligyiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.324 [XNIO-1 task-2] PffnkGBRS4uEkLziligyiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.327 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c9be55af-1157-4f29-95b4-59218433969e +16:40:14.328 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c9be55af-1157-4f29-95b4-59218433969e +16:40:14.332 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3c055339 +16:40:14.336 [XNIO-1 task-2] kh9ui3k3SUmsS9j--BzyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.336 [XNIO-1 task-2] kh9ui3k3SUmsS9j--BzyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.337 [XNIO-1 task-2] kh9ui3k3SUmsS9j--BzyVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.337 [XNIO-1 task-2] kh9ui3k3SUmsS9j--BzyVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.342 [XNIO-1 task-2] kh9ui3k3SUmsS9j--BzyVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.344 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21100431 +16:40:14.350 [XNIO-1 task-2] -zONUQkjSD21NTtatUuViw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.350 [XNIO-1 task-2] -zONUQkjSD21NTtatUuViw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.350 [XNIO-1 task-2] -zONUQkjSD21NTtatUuViw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.350 [XNIO-1 task-2] -zONUQkjSD21NTtatUuViw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.352 [XNIO-1 task-4] 906Ej6x-THuCbFXHqyA8Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.352 [XNIO-1 task-4] 906Ej6x-THuCbFXHqyA8Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.352 [XNIO-1 task-4] 906Ej6x-THuCbFXHqyA8Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.352 [XNIO-1 task-4] 906Ej6x-THuCbFXHqyA8Uw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _XRu7dcXSfm4vwCME06D-w redirectUri = http://localhost:8080/authorization +16:40:14.355 [XNIO-1 task-2] -zONUQkjSD21NTtatUuViw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.357 [XNIO-1 task-2] _jknODOWTXaTH0-Hw22vpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.357 [XNIO-1 task-2] _jknODOWTXaTH0-Hw22vpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.358 [XNIO-1 task-2] _jknODOWTXaTH0-Hw22vpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.358 [XNIO-1 task-2] _jknODOWTXaTH0-Hw22vpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QXhsDjHfSyqQq25k2Nf5lw redirectUri = http://localhost:8080/authorization +16:40:14.360 [XNIO-1 task-4] 906Ej6x-THuCbFXHqyA8Uw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.364 [XNIO-1 task-2] _jknODOWTXaTH0-Hw22vpQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.365 [XNIO-1 task-1] uiOzTOTJRLeahZEuq91gGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.365 [XNIO-1 task-2] _jknODOWTXaTH0-Hw22vpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.365 [XNIO-1 task-2] _jknODOWTXaTH0-Hw22vpQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.365 [XNIO-1 task-1] uiOzTOTJRLeahZEuq91gGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.365 [XNIO-1 task-1] uiOzTOTJRLeahZEuq91gGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.369 [XNIO-1 task-4] 9qRHEKPUQk-9g9_qmR1Xdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.369 [XNIO-1 task-4] 9qRHEKPUQk-9g9_qmR1Xdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.369 [XNIO-1 task-4] 9qRHEKPUQk-9g9_qmR1Xdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.370 [XNIO-1 task-4] 9qRHEKPUQk-9g9_qmR1Xdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b216d01c-b967-43a5-b051-00eff2f78754 scope = null +16:40:14.371 [XNIO-1 task-1] uiOzTOTJRLeahZEuq91gGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.382 [XNIO-1 task-1] foQJtzanTQmuJDkc6UwMUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.382 [XNIO-1 task-1] foQJtzanTQmuJDkc6UwMUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.382 [XNIO-1 task-1] foQJtzanTQmuJDkc6UwMUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.382 [XNIO-1 task-1] foQJtzanTQmuJDkc6UwMUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:14.382 [XNIO-1 task-1] foQJtzanTQmuJDkc6UwMUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.383 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3c055339 +16:40:14.388 [XNIO-1 task-1] foQJtzanTQmuJDkc6UwMUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.393 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:14.398 [XNIO-1 task-4] C8-mgHCKTwSGwnqAEsJYmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.398 [XNIO-1 task-4] C8-mgHCKTwSGwnqAEsJYmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.398 [XNIO-1 task-4] C8-mgHCKTwSGwnqAEsJYmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.399 [XNIO-1 task-4] C8-mgHCKTwSGwnqAEsJYmw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.406 [XNIO-1 task-4] C8-mgHCKTwSGwnqAEsJYmw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.413 [XNIO-1 task-4] sbzgSJYlR8W1K2qh0TbjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.413 [XNIO-1 task-4] sbzgSJYlR8W1K2qh0TbjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.413 [XNIO-1 task-4] sbzgSJYlR8W1K2qh0TbjpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.413 [XNIO-1 task-4] sbzgSJYlR8W1K2qh0TbjpA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.415 [XNIO-1 task-1] BpZat2V3QBy_2Th3gz8rWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.415 [XNIO-1 task-1] BpZat2V3QBy_2Th3gz8rWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.416 [XNIO-1 task-1] BpZat2V3QBy_2Th3gz8rWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.416 [XNIO-1 task-1] BpZat2V3QBy_2Th3gz8rWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = e5Ag0WgTSAm41_4EEW7ApA redirectUri = http://localhost:8080/authorization +16:40:14.418 [XNIO-1 task-4] sbzgSJYlR8W1K2qh0TbjpA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.424 [XNIO-1 task-4] pru2-M2WQuqU32A5_Yfieg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.424 [XNIO-1 task-4] pru2-M2WQuqU32A5_Yfieg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.424 [XNIO-1 task-4] pru2-M2WQuqU32A5_Yfieg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.424 [XNIO-1 task-4] pru2-M2WQuqU32A5_Yfieg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.428 [XNIO-1 task-1] BpZat2V3QBy_2Th3gz8rWA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.429 [XNIO-1 task-4] pru2-M2WQuqU32A5_Yfieg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.436 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:509301fa-2fa5-40d2-aa02-0d4c798431f8 +16:40:14.436 [XNIO-1 task-1] XAE49Y-VRfWxQDVQKakMCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.436 [XNIO-1 task-1] XAE49Y-VRfWxQDVQKakMCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.437 [XNIO-1 task-1] XAE49Y-VRfWxQDVQKakMCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 4:40:14 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +16:40:14.443 [XNIO-1 task-4] 6ExjlzfYRTCNKajd4_s01A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.443 [XNIO-1 task-4] 6ExjlzfYRTCNKajd4_s01A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.443 [XNIO-1 task-4] 6ExjlzfYRTCNKajd4_s01A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +16:40:14.444 [XNIO-1 task-4] 6ExjlzfYRTCNKajd4_s01A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.445 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:45e1e515-6f22-4102-b712-cfe2bc5d6613 +16:40:14.451 [XNIO-1 task-4] 6ExjlzfYRTCNKajd4_s01A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.455 [XNIO-1 task-4] URPUr_bQSAaGj21D0wPJbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +16:40:14.456 [XNIO-1 task-4] URPUr_bQSAaGj21D0wPJbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.456 [XNIO-1 task-4] URPUr_bQSAaGj21D0wPJbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.456 [XNIO-1 task-4] URPUr_bQSAaGj21D0wPJbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.456 [XNIO-1 task-4] URPUr_bQSAaGj21D0wPJbg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 45e1e515-6f22-4102-b712-cfe2bc5d6613 scope = null +16:40:14.461 [XNIO-1 task-1] Ti-nzuQcSDu_dYNKgFniUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.461 [XNIO-1 task-1] Ti-nzuQcSDu_dYNKgFniUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) +16:40:14.461 [XNIO-1 task-1] Ti-nzuQcSDu_dYNKgFniUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.461 [XNIO-1 task-1] Ti-nzuQcSDu_dYNKgFniUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.465 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:45e1e515-6f22-4102-b712-cfe2bc5d6613 +16:40:14.467 [XNIO-1 task-4] URPUr_bQSAaGj21D0wPJbg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.467 [XNIO-1 task-1] Ti-nzuQcSDu_dYNKgFniUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config + ... 14 more + +16:40:14.474 [XNIO-1 task-4] pX5MQUakRou5uIbMZtGuLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.475 [XNIO-1 task-4] pX5MQUakRou5uIbMZtGuLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.475 [XNIO-1 task-4] pX5MQUakRou5uIbMZtGuLw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA5MzAxZmEtMmZhNS00MGQyLWFhMDItMGQ0Yzc5ODQzMWY4Om5HZExBWWRPVHhPVlVHOVk3MVR5cWc=", "Basic NTA5MzAxZmEtMmZhNS00MGQyLWFhMDItMGQ0Yzc5ODQzMWY4Om5HZExBWWRPVHhPVlVHOVk3MVR5cWc=", authorization) +16:40:14.480 [XNIO-1 task-4] pX5MQUakRou5uIbMZtGuLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.489 [XNIO-1 task-4] PJ7Oh1u4QxmHoO08P1oArg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.490 [XNIO-1 task-4] PJ7Oh1u4QxmHoO08P1oArg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.490 [XNIO-1 task-4] PJ7Oh1u4QxmHoO08P1oArg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.490 [XNIO-1 task-4] PJ7Oh1u4QxmHoO08P1oArg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", authorization) +16:40:14.496 [XNIO-1 task-4] PJ7Oh1u4QxmHoO08P1oArg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.496 [XNIO-1 task-1] O6dgdwlrTmO-GN_g1oiDpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.496 [XNIO-1 task-1] O6dgdwlrTmO-GN_g1oiDpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.496 [XNIO-1 task-1] O6dgdwlrTmO-GN_g1oiDpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.496 [XNIO-1 task-1] O6dgdwlrTmO-GN_g1oiDpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.503 [XNIO-1 task-1] O6dgdwlrTmO-GN_g1oiDpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.503 [XNIO-1 task-1] O6dgdwlrTmO-GN_g1oiDpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.507 [XNIO-1 task-4] P81T-InhR4W45N1_42-j8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.507 [XNIO-1 task-4] P81T-InhR4W45N1_42-j8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.507 [XNIO-1 task-4] P81T-InhR4W45N1_42-j8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.508 [XNIO-1 task-4] P81T-InhR4W45N1_42-j8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.515 [XNIO-1 task-4] P81T-InhR4W45N1_42-j8w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.516 [XNIO-1 task-1] _PWlkBB8QS6oEhAD2Gl_OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.516 [XNIO-1 task-1] _PWlkBB8QS6oEhAD2Gl_OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.516 [XNIO-1 task-1] _PWlkBB8QS6oEhAD2Gl_OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.517 [XNIO-1 task-1] _PWlkBB8QS6oEhAD2Gl_OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.518 [XNIO-1 task-4] MX88wkfoQLSXzxnIHaIJUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.518 [XNIO-1 task-4] MX88wkfoQLSXzxnIHaIJUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.518 [XNIO-1 task-4] MX88wkfoQLSXzxnIHaIJUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.518 [XNIO-1 task-4] MX88wkfoQLSXzxnIHaIJUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:14.519 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b772fe5c +16:40:14.524 [XNIO-1 task-2] H_0qfh5kQZqcHThm507AFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.524 [XNIO-1 task-2] H_0qfh5kQZqcHThm507AFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.524 [XNIO-1 task-2] H_0qfh5kQZqcHThm507AFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.524 [XNIO-1 task-4] MX88wkfoQLSXzxnIHaIJUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.524 [XNIO-1 task-4] MX88wkfoQLSXzxnIHaIJUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.525 [XNIO-1 task-4] MX88wkfoQLSXzxnIHaIJUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.529 [XNIO-1 task-1] _PWlkBB8QS6oEhAD2Gl_OQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.530 [XNIO-1 task-2] H_0qfh5kQZqcHThm507AFg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.539 [XNIO-1 task-1] 4ZuknejySNK6ax8k0NJIcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.539 [XNIO-1 task-1] 4ZuknejySNK6ax8k0NJIcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.539 [XNIO-1 task-1] 4ZuknejySNK6ax8k0NJIcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.540 [XNIO-1 task-1] 4ZuknejySNK6ax8k0NJIcg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.546 [XNIO-1 task-1] 4ZuknejySNK6ax8k0NJIcg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.553 [XNIO-1 task-1] _FhJsRKVQ5SiXNsyKHcztw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.553 [XNIO-1 task-1] _FhJsRKVQ5SiXNsyKHcztw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.554 [XNIO-1 task-1] _FhJsRKVQ5SiXNsyKHcztw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.554 [XNIO-1 task-1] _FhJsRKVQ5SiXNsyKHcztw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:14.560 [XNIO-1 task-1] _FhJsRKVQ5SiXNsyKHcztw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.566 [XNIO-1 task-1] OtW2VsFMSoGAs2GaK_lfQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.566 [XNIO-1 task-1] OtW2VsFMSoGAs2GaK_lfQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.566 [XNIO-1 task-1] OtW2VsFMSoGAs2GaK_lfQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.566 [XNIO-1 task-1] OtW2VsFMSoGAs2GaK_lfQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:14.569 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +Jun 28, 2024 4:40:14 PM com.hazelcast.map.impl.operation.DeleteOperation +16:40:14.569 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:14.569 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.569 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.569 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:40:14.570 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.570 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 0_bkez8HQ8CEAqdSWlYyxA redirectUri = http://localhost:8080/authorization +16:40:14.569 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) +16:40:14.571 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NTA5MzAxZmEtMmZhNS00MGQyLWFhMDItMGQ0Yzc5ODQzMWY4Om5HZExBWWRPVHhPVlVHOVk3MVR5cWc=", "Basic NTA5MzAxZmEtMmZhNS00MGQyLWFhMDItMGQ0Yzc5ODQzMWY4Om5HZExBWWRPVHhPVlVHOVk3MVR5cWc=", authorization) +16:40:14.571 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = rBT9RVpWQXWv8H8WgQKzYw redirectUri = http://localhost:8080/authorization + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +16:40:14.572 [XNIO-1 task-1] OtW2VsFMSoGAs2GaK_lfQQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.576 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.576 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.576 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.577 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.577 [XNIO-1 task-4] JwAgoH0USDGwLK-NtBNpKg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.577 [XNIO-1 task-2] AdEiYceYSleZ84mfCltUzg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.577 [XNIO-1 task-1] 2O4KwCwcQiuDZDo_PpNeIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.577 [XNIO-1 task-1] 2O4KwCwcQiuDZDo_PpNeIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.577 [XNIO-1 task-1] 2O4KwCwcQiuDZDo_PpNeIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.578 [XNIO-1 task-1] 2O4KwCwcQiuDZDo_PpNeIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.578 [XNIO-1 task-1] 2O4KwCwcQiuDZDo_PpNeIA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.586 [XNIO-1 task-1] 2O4KwCwcQiuDZDo_PpNeIA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.596 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.597 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.597 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:40:14.597 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.597 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.597 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) + +16:40:14.597 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 3a2a85da-4188-48c8-bba5-cacd4e350ddd scope = null +16:40:14.598 [XNIO-1 task-4] avM1n7sgST2547ULAfjtKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.598 [XNIO-1 task-4] avM1n7sgST2547ULAfjtKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.598 [XNIO-1 task-4] avM1n7sgST2547ULAfjtKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.599 [XNIO-1 task-4] avM1n7sgST2547ULAfjtKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.603 [XNIO-1 task-4] avM1n7sgST2547ULAfjtKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.608 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0cceab94-9c83-4a5d-b24b-32e24f738c25 +16:40:14.609 [XNIO-1 task-4] TujjAe3CRJq7wvovFbEQXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.609 [XNIO-1 task-4] TujjAe3CRJq7wvovFbEQXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.609 [XNIO-1 task-4] TujjAe3CRJq7wvovFbEQXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", authorization) +16:40:14.609 [XNIO-1 task-1] zZA3Pg9TST-0dEa205VOiw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.609 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0cceab94-9c83-4a5d-b24b-32e24f738c25 +16:40:14.611 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d81588e9-a452-46d0-a110-5c41ddcd0265 +16:40:14.614 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d81588e9-a452-46d0-a110-5c41ddcd0265 +16:40:14.615 [XNIO-1 task-4] TujjAe3CRJq7wvovFbEQXg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.622 [XNIO-1 task-4] QWfbyWwdQMm0IBpDoZ_8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.622 [XNIO-1 task-4] QWfbyWwdQMm0IBpDoZ_8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.623 [XNIO-1 task-4] QWfbyWwdQMm0IBpDoZ_8_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.623 [XNIO-1 task-4] QWfbyWwdQMm0IBpDoZ_8_A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.626 [XNIO-1 task-1] Xs-OnyidQfaXtsDlDnZfMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.627 [XNIO-1 task-1] Xs-OnyidQfaXtsDlDnZfMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.627 [XNIO-1 task-1] Xs-OnyidQfaXtsDlDnZfMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.627 [XNIO-1 task-1] Xs-OnyidQfaXtsDlDnZfMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qdulJHb9TNSHfJ8qbSdibg redirectUri = http://localhost:8080/authorization +16:40:14.628 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:23d94185 +16:40:14.628 [XNIO-1 task-4] QWfbyWwdQMm0IBpDoZ_8_A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.632 [XNIO-1 task-1] Xs-OnyidQfaXtsDlDnZfMA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.633 [XNIO-1 task-4] lwtMAEHNShShskNjyi-1dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.633 [XNIO-1 task-4] lwtMAEHNShShskNjyi-1dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.633 [XNIO-1 task-4] lwtMAEHNShShskNjyi-1dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.633 [XNIO-1 task-4] lwtMAEHNShShskNjyi-1dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.633 [XNIO-1 task-4] lwtMAEHNShShskNjyi-1dg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.637 [XNIO-1 task-2] qz8wU6v4QHWHWoi0AvuiAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.637 [XNIO-1 task-2] qz8wU6v4QHWHWoi0AvuiAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.637 [XNIO-1 task-2] qz8wU6v4QHWHWoi0AvuiAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.637 [XNIO-1 task-2] qz8wU6v4QHWHWoi0AvuiAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = CD-stgWESNiZBZ5z7vXtxQ redirectUri = http://localhost:8080/authorization +16:40:14.639 [XNIO-1 task-4] lwtMAEHNShShskNjyi-1dg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.642 [XNIO-1 task-1] ADd0axSXRS2qtrOKQ1lwSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.642 [XNIO-1 task-1] ADd0axSXRS2qtrOKQ1lwSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.643 [XNIO-1 task-1] ADd0axSXRS2qtrOKQ1lwSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.643 [XNIO-1 task-1] ADd0axSXRS2qtrOKQ1lwSg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.643 [XNIO-1 task-2] qz8wU6v4QHWHWoi0AvuiAg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.646 [XNIO-1 task-4] 11rt9YytRZuomDUJjv7Qaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.647 [XNIO-1 task-4] 11rt9YytRZuomDUJjv7Qaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.647 [XNIO-1 task-4] 11rt9YytRZuomDUJjv7Qaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.647 [XNIO-1 task-4] 11rt9YytRZuomDUJjv7Qaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", authorization) +16:40:14.654 [XNIO-1 task-1] ADd0axSXRS2qtrOKQ1lwSg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.661 [XNIO-1 task-1] sT4XAVX1QU6OfYPVnn26Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.661 [XNIO-1 task-1] sT4XAVX1QU6OfYPVnn26Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.661 [XNIO-1 task-1] sT4XAVX1QU6OfYPVnn26Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.661 [XNIO-1 task-1] sT4XAVX1QU6OfYPVnn26Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.663 [XNIO-1 task-4] 11rt9YytRZuomDUJjv7Qaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.667 [XNIO-1 task-1] sT4XAVX1QU6OfYPVnn26Iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.670 [XNIO-1 task-1] f2GAKnENRZ-r1tqAT7IAcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.670 [XNIO-1 task-1] f2GAKnENRZ-r1tqAT7IAcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.670 [XNIO-1 task-1] f2GAKnENRZ-r1tqAT7IAcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.671 [XNIO-1 task-1] f2GAKnENRZ-r1tqAT7IAcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:14.677 [XNIO-1 task-1] f2GAKnENRZ-r1tqAT7IAcQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.687 [XNIO-1 task-4] 3Oa0nr_jQWSpOgQ1M6LQBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.688 [XNIO-1 task-4] 3Oa0nr_jQWSpOgQ1M6LQBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.688 [XNIO-1 task-4] 3Oa0nr_jQWSpOgQ1M6LQBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.688 [XNIO-1 task-4] 3Oa0nr_jQWSpOgQ1M6LQBw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.696 [XNIO-1 task-4] 3Oa0nr_jQWSpOgQ1M6LQBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.696 [XNIO-1 task-4] 3Oa0nr_jQWSpOgQ1M6LQBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:14.705 [XNIO-1 task-4] JdVXegR3Qg6rEYf-RVb0pw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.705 [XNIO-1 task-4] JdVXegR3Qg6rEYf-RVb0pw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.705 [XNIO-1 task-4] JdVXegR3Qg6rEYf-RVb0pw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:14.705 [XNIO-1 task-4] JdVXegR3Qg6rEYf-RVb0pw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.711 [XNIO-1 task-4] JdVXegR3Qg6rEYf-RVb0pw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.711 [XNIO-1 task-4] JdVXegR3Qg6rEYf-RVb0pw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.711 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:509301fa-2fa5-40d2-aa02-0d4c798431f8 +16:40:14.714 [hz._hzInstance_1_dev.partition-operation.thread-6] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:14.721 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.721 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.721 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.721 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.721 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + +16:40:14.721 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.721 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.726 [XNIO-1 task-4] 87mLO4TYSLOWcyIcsWFZaw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.737 [XNIO-1 task-4] 60XFJeE5TtyFCDZ1CyBhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.737 [XNIO-1 task-4] 60XFJeE5TtyFCDZ1CyBhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.737 [XNIO-1 task-4] 60XFJeE5TtyFCDZ1CyBhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.737 [XNIO-1 task-4] 60XFJeE5TtyFCDZ1CyBhjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.742 [XNIO-1 task-4] 60XFJeE5TtyFCDZ1CyBhjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.747 [XNIO-1 task-4] D2cvmY2_TdC5n3nbnMx8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.747 [XNIO-1 task-4] D2cvmY2_TdC5n3nbnMx8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.747 [XNIO-1 task-4] D2cvmY2_TdC5n3nbnMx8Mg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.747 [XNIO-1 task-4] D2cvmY2_TdC5n3nbnMx8Mg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 4ATobx59RoSy2GzD6ZqqDw redirectUri = http://localhost:8080/authorization +16:40:14.749 [XNIO-1 task-1] x7u0ImrNTn-Q_NXBBPpZUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.749 [XNIO-1 task-1] x7u0ImrNTn-Q_NXBBPpZUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.750 [XNIO-1 task-1] x7u0ImrNTn-Q_NXBBPpZUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.750 [XNIO-1 task-1] x7u0ImrNTn-Q_NXBBPpZUw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.753 [XNIO-1 task-4] D2cvmY2_TdC5n3nbnMx8Mg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.755 [XNIO-1 task-1] x7u0ImrNTn-Q_NXBBPpZUw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.760 [XNIO-1 task-1] 3gTpt8-cSJeGtykw0b7LLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.760 [XNIO-1 task-1] 3gTpt8-cSJeGtykw0b7LLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.761 [XNIO-1 task-1] 3gTpt8-cSJeGtykw0b7LLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.761 [XNIO-1 task-1] 3gTpt8-cSJeGtykw0b7LLg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", authorization) +16:40:14.766 [XNIO-1 task-1] 3gTpt8-cSJeGtykw0b7LLg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.767 [XNIO-1 task-4] IOxXatKnSl6NqLNZKAvZaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.767 [XNIO-1 task-4] IOxXatKnSl6NqLNZKAvZaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.767 [XNIO-1 task-4] IOxXatKnSl6NqLNZKAvZaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.767 [XNIO-1 task-4] IOxXatKnSl6NqLNZKAvZaw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YzU1MDQxNzMtNzRmMi00YmMxLTljMGEtOGQ0NmNlNTI4YTNiOjZUMElBQjhfUXRTckprS2JreEdZYkE=", "Basic YzU1MDQxNzMtNzRmMi00YmMxLTljMGEtOGQ0NmNlNTI4YTNiOjZUMElBQjhfUXRTckprS2JreEdZYkE=", authorization) +16:40:14.774 [XNIO-1 task-1] lHVghuTIRniVKW0wqf99IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.774 [XNIO-1 task-1] lHVghuTIRniVKW0wqf99IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.774 [XNIO-1 task-1] lHVghuTIRniVKW0wqf99IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.774 [XNIO-1 task-1] lHVghuTIRniVKW0wqf99IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", authorization) +16:40:14.777 [XNIO-1 task-4] IOxXatKnSl6NqLNZKAvZaw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.778 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:35896977-268b-42f0-a78b-6d1ebcee30bd +16:40:14.779 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:35896977-268b-42f0-a78b-6d1ebcee30bd +16:40:14.779 [XNIO-1 task-1] lHVghuTIRniVKW0wqf99IQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.784 [XNIO-1 task-1] fdJEvQ03TH2ExP7wu2BNVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.784 [XNIO-1 task-1] fdJEvQ03TH2ExP7wu2BNVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.785 [XNIO-1 task-1] fdJEvQ03TH2ExP7wu2BNVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.785 [XNIO-1 task-1] fdJEvQ03TH2ExP7wu2BNVg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.790 [XNIO-1 task-1] fdJEvQ03TH2ExP7wu2BNVg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.791 [XNIO-1 task-4] Pwn3NcN6RHidPYUCnWaLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.791 [XNIO-1 task-4] Pwn3NcN6RHidPYUCnWaLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.791 [XNIO-1 task-4] Pwn3NcN6RHidPYUCnWaLZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.791 [XNIO-1 task-4] Pwn3NcN6RHidPYUCnWaLZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 35896977-268b-42f0-a78b-6d1ebcee30bd scope = null +16:40:14.800 [XNIO-1 task-4] Pwn3NcN6RHidPYUCnWaLZQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.800 [XNIO-1 task-1] hKLsK2kMTwm9wnBY98ZTBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.801 [XNIO-1 task-1] hKLsK2kMTwm9wnBY98ZTBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.801 [XNIO-1 task-1] hKLsK2kMTwm9wnBY98ZTBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.801 [XNIO-1 task-1] hKLsK2kMTwm9wnBY98ZTBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:14.802 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0f479c58-3a50-4947-bb15-69a678146e76 +16:40:14.803 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:0f479c58-3a50-4947-bb15-69a678146e76 +16:40:14.806 [XNIO-1 task-1] hKLsK2kMTwm9wnBY98ZTBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.813 [XNIO-1 task-1] Mh7dXLxuQQSWEgtdMZ6Q4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.813 [XNIO-1 task-1] Mh7dXLxuQQSWEgtdMZ6Q4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.813 [XNIO-1 task-1] Mh7dXLxuQQSWEgtdMZ6Q4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.813 [XNIO-1 task-1] Mh7dXLxuQQSWEgtdMZ6Q4A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0f479c58-3a50-4947-bb15-69a678146e76 scope = null +16:40:14.816 [XNIO-1 task-4] u4PhulE5TuSg0-ElFlef-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.816 [XNIO-1 task-4] u4PhulE5TuSg0-ElFlef-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.816 [XNIO-1 task-4] u4PhulE5TuSg0-ElFlef-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.816 [XNIO-1 task-4] u4PhulE5TuSg0-ElFlef-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.821 [XNIO-1 task-4] u4PhulE5TuSg0-ElFlef-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.822 [XNIO-1 task-1] Mh7dXLxuQQSWEgtdMZ6Q4A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.826 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3c055339 +16:40:14.828 [XNIO-1 task-4] XrqimFS-TcSZ7cU76lC0ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.829 [XNIO-1 task-4] XrqimFS-TcSZ7cU76lC0ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.829 [XNIO-1 task-4] XrqimFS-TcSZ7cU76lC0ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.829 [XNIO-1 task-4] XrqimFS-TcSZ7cU76lC0ng DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", "Basic YWFjYjQwY2MtNzVkYS00NDIwLWExMzMtZGM5NTc3M2I4Yzc1OkRCNTkwVmVGVGgySzJNX3dDUC1OaVE=", authorization) +16:40:14.836 [XNIO-1 task-4] XrqimFS-TcSZ7cU76lC0ng DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:14.836 [XNIO-1 task-1] -216Ag29RZuZ2z2g8OitIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.837 [XNIO-1 task-1] -216Ag29RZuZ2z2g8OitIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.837 [XNIO-1 task-1] -216Ag29RZuZ2z2g8OitIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:14.842 [XNIO-1 task-4] GKcKl64vRwGED_F7ki7uSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.842 [XNIO-1 task-4] GKcKl64vRwGED_F7ki7uSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:40:14.842 [XNIO-1 task-4] GKcKl64vRwGED_F7ki7uSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.844 [XNIO-1 task-4] GKcKl64vRwGED_F7ki7uSw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:14.845 [XNIO-1 task-4] GKcKl64vRwGED_F7ki7uSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.845 [XNIO-1 task-2] MN3sfg7IRW6P-cnoCvFzbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.845 [XNIO-1 task-2] MN3sfg7IRW6P-cnoCvFzbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.845 [XNIO-1 task-2] MN3sfg7IRW6P-cnoCvFzbg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = wuDwNbMLTD64NNUGvQXgPQ redirectUri = http://localhost:8080/authorization +16:40:14.846 [XNIO-1 task-1] -216Ag29RZuZ2z2g8OitIg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.850 [XNIO-1 task-4] GKcKl64vRwGED_F7ki7uSw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.851 [hz._hzInstance_1_dev.partition-operation.thread-11] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:14.854 [XNIO-1 task-2] MN3sfg7IRW6P-cnoCvFzbg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.860 [XNIO-1 task-1] nOEwV3fsTC65gqSzQeVGSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.860 [XNIO-1 task-1] nOEwV3fsTC65gqSzQeVGSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.860 [XNIO-1 task-1] nOEwV3fsTC65gqSzQeVGSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.861 [XNIO-1 task-1] nOEwV3fsTC65gqSzQeVGSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", "Basic NjIyYmZkOGMtMmFiZS00NDQyLWE5NDctYmVkYTJlNDhlYWJjOjhxWFVVZElTUkRxSTMxOWlBS1NjX3c=", authorization) +16:40:14.867 [XNIO-1 task-1] nOEwV3fsTC65gqSzQeVGSQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.872 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0cceab94-9c83-4a5d-b24b-32e24f738c25 +16:40:14.874 [XNIO-1 task-1] 4ruzb9CcTUye1DOy3dY0Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.874 [XNIO-1 task-1] 4ruzb9CcTUye1DOy3dY0Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.874 [XNIO-1 task-1] 4ruzb9CcTUye1DOy3dY0Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.874 [XNIO-1 task-1] 4ruzb9CcTUye1DOy3dY0Dw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.879 [XNIO-1 task-2] D6jdx1bWRn20y8TA9ycRxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.879 [XNIO-1 task-2] D6jdx1bWRn20y8TA9ycRxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.879 [XNIO-1 task-2] D6jdx1bWRn20y8TA9ycRxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.880 [XNIO-1 task-2] D6jdx1bWRn20y8TA9ycRxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YJcawjYlT_KLIo406iPshw redirectUri = http://localhost:8080/authorization +16:40:14.880 [XNIO-1 task-1] 4ruzb9CcTUye1DOy3dY0Dw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.888 [XNIO-1 task-4] SP9zz0taQXq9vM336ZmBYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.888 [XNIO-1 task-4] SP9zz0taQXq9vM336ZmBYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.888 [XNIO-1 task-4] SP9zz0taQXq9vM336ZmBYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.888 [XNIO-1 task-4] SP9zz0taQXq9vM336ZmBYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.888 [XNIO-1 task-1] 43N5g7c8QhmaCeZ8r5kPmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.888 [XNIO-1 task-1] 43N5g7c8QhmaCeZ8r5kPmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.888 [XNIO-1 task-1] 43N5g7c8QhmaCeZ8r5kPmA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:14.888 [XNIO-1 task-1] 43N5g7c8QhmaCeZ8r5kPmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Ik9NmeDRQOW0kHISV1stCw redirectUri = http://localhost:8080/authorization +16:40:14.915 [XNIO-1 task-2] D6jdx1bWRn20y8TA9ycRxA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.919 [XNIO-1 task-4] SP9zz0taQXq9vM336ZmBYA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.919 [XNIO-1 task-1] 43N5g7c8QhmaCeZ8r5kPmA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.919 [XNIO-1 task-1] 43N5g7c8QhmaCeZ8r5kPmA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.932 [XNIO-1 task-1] dRP_fp5cTSKWsr_nNfY0hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.932 [XNIO-1 task-1] dRP_fp5cTSKWsr_nNfY0hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.932 [XNIO-1 task-1] dRP_fp5cTSKWsr_nNfY0hQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.933 [XNIO-1 task-1] dRP_fp5cTSKWsr_nNfY0hQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.938 [XNIO-1 task-1] dRP_fp5cTSKWsr_nNfY0hQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.943 [XNIO-1 task-1] da7iovyVQ_WxGLG0pRZM0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.943 [XNIO-1 task-1] da7iovyVQ_WxGLG0pRZM0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.943 [XNIO-1 task-1] da7iovyVQ_WxGLG0pRZM0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.943 [XNIO-1 task-1] da7iovyVQ_WxGLG0pRZM0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.945 [XNIO-1 task-4] Ojq1KDCMT4mnpxoQjncsBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.945 [XNIO-1 task-4] Ojq1KDCMT4mnpxoQjncsBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.945 [XNIO-1 task-4] Ojq1KDCMT4mnpxoQjncsBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.945 [XNIO-1 task-4] Ojq1KDCMT4mnpxoQjncsBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = x8nmVNPQS3y2-SvOwu5AZQ redirectUri = http://localhost:8080/authorization +16:40:14.947 [XNIO-1 task-2] -iag7t1vSUu-7xFvRYNj-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.947 [XNIO-1 task-2] -iag7t1vSUu-7xFvRYNj-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.947 [XNIO-1 task-2] -iag7t1vSUu-7xFvRYNj-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.947 [XNIO-1 task-2] -iag7t1vSUu-7xFvRYNj-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OMaPHRWqQQSJAn9KPqfcbQ redirectUri = http://localhost:8080/authorization +16:40:14.948 [XNIO-1 task-1] da7iovyVQ_WxGLG0pRZM0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.952 [XNIO-1 task-4] Ojq1KDCMT4mnpxoQjncsBw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.952 [XNIO-1 task-2] -iag7t1vSUu-7xFvRYNj-g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:14.953 [XNIO-1 task-2] -iag7t1vSUu-7xFvRYNj-g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.957 [XNIO-1 task-1] lkp325VdRoOPGOx1mZzyNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.957 [XNIO-1 task-1] lkp325VdRoOPGOx1mZzyNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.957 [XNIO-1 task-1] lkp325VdRoOPGOx1mZzyNg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.957 [XNIO-1 task-1] lkp325VdRoOPGOx1mZzyNg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.962 [XNIO-1 task-4] BRzjkV2gTtqYGsCYRiiVGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.963 [XNIO-1 task-4] BRzjkV2gTtqYGsCYRiiVGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.963 [XNIO-1 task-4] BRzjkV2gTtqYGsCYRiiVGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.963 [XNIO-1 task-4] BRzjkV2gTtqYGsCYRiiVGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.963 [XNIO-1 task-4] BRzjkV2gTtqYGsCYRiiVGw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 85489b16-34cb-4b16-a91b-e37f36adb496 scope = null +16:40:14.969 [XNIO-1 task-1] MLdRTYz4TCaXbVa5h4JujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.969 [XNIO-1 task-1] MLdRTYz4TCaXbVa5h4JujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.969 [XNIO-1 task-1] MLdRTYz4TCaXbVa5h4JujQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.969 [XNIO-1 task-1] MLdRTYz4TCaXbVa5h4JujQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:14.973 [XNIO-1 task-4] BRzjkV2gTtqYGsCYRiiVGw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.974 [XNIO-1 task-1] MLdRTYz4TCaXbVa5h4JujQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:14.978 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d3e68f4e-a7e4-43b1-bc11-10adbb7d60e0 +16:40:14.983 [XNIO-1 task-1] rAQYauwdSEy7D-EsUl30jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.983 [XNIO-1 task-1] rAQYauwdSEy7D-EsUl30jA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:14.983 [XNIO-1 task-1] rAQYauwdSEy7D-EsUl30jA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:14.983 [XNIO-1 task-1] rAQYauwdSEy7D-EsUl30jA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", authorization) +16:40:14.988 [XNIO-1 task-1] rAQYauwdSEy7D-EsUl30jA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:14.991 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:640d6f44-4352-4a81-8ee0-30ebf8b68646 +16:40:14.992 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:640d6f44-4352-4a81-8ee0-30ebf8b68646 +16:40:14.996 [XNIO-1 task-1] Zx1cLhm7Svi8qHRGQUIbwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.997 [XNIO-1 task-1] Zx1cLhm7Svi8qHRGQUIbwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.997 [XNIO-1 task-1] Zx1cLhm7Svi8qHRGQUIbwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:14.997 [XNIO-1 task-1] Zx1cLhm7Svi8qHRGQUIbwQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.002 [XNIO-1 task-1] Zx1cLhm7Svi8qHRGQUIbwQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.002 [XNIO-1 task-4] ZKO8z8oTQt6jNNdXHaHwWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.003 [XNIO-1 task-2] M9FlbgoDQsm8C4V4aBlFfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.003 [XNIO-1 task-2] M9FlbgoDQsm8C4V4aBlFfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.003 [XNIO-1 task-2] M9FlbgoDQsm8C4V4aBlFfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.003 [XNIO-1 task-4] ZKO8z8oTQt6jNNdXHaHwWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.003 [XNIO-1 task-4] ZKO8z8oTQt6jNNdXHaHwWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.003 [XNIO-1 task-4] ZKO8z8oTQt6jNNdXHaHwWw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:15.003 [XNIO-1 task-4] ZKO8z8oTQt6jNNdXHaHwWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = cvAx4OhwSpyyEYwg7R8fEw redirectUri = http://localhost:8080/authorization +16:40:15.009 [XNIO-1 task-4] ZKO8z8oTQt6jNNdXHaHwWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +com.networknt.exception.ApiException: {"statusCode":400,"code":"ERR12040","message":"CODE_VERIFIER_MISSING","description":"PKCE codeVerifier is not specified","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:15.009 [XNIO-1 task-4] ZKO8z8oTQt6jNNdXHaHwWw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.011 [XNIO-1 task-2] XkOpOVWgR8ugIZQ8tCo4eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.011 [XNIO-1 task-2] XkOpOVWgR8ugIZQ8tCo4eg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.011 [XNIO-1 task-2] XkOpOVWgR8ugIZQ8tCo4eg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.011 [XNIO-1 task-2] XkOpOVWgR8ugIZQ8tCo4eg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", authorization) +16:40:15.016 [XNIO-1 task-2] XkOpOVWgR8ugIZQ8tCo4eg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.020 [XNIO-1 task-2] dXymayI-QGKD0tukpLcqfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.020 [XNIO-1 task-2] dXymayI-QGKD0tukpLcqfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.020 [XNIO-1 task-2] dXymayI-QGKD0tukpLcqfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.021 [XNIO-1 task-2] dXymayI-QGKD0tukpLcqfg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:15.026 [XNIO-1 task-4] zP7fiEsvQmeu2fMjAgNcQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.027 [XNIO-1 task-4] zP7fiEsvQmeu2fMjAgNcQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.027 [XNIO-1 task-4] zP7fiEsvQmeu2fMjAgNcQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.027 [XNIO-1 task-4] zP7fiEsvQmeu2fMjAgNcQw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2I2ZGRjNzItZDY0MC00NjE4LTliNjMtMzcxMWYyOGM1YjRhOk9QV01kcjl2UnZXS093NjM1T0lobXc=", "Basic Y2I2ZGRjNzItZDY0MC00NjE4LTliNjMtMzcxMWYyOGM1YjRhOk9QV01kcjl2UnZXS093NjM1T0lobXc=", authorization) +16:40:15.030 [XNIO-1 task-2] dXymayI-QGKD0tukpLcqfg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.032 [XNIO-1 task-1] hvsDw5WxTpCXqZvDOBQLkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.033 [XNIO-1 task-1] hvsDw5WxTpCXqZvDOBQLkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.033 [XNIO-1 task-1] hvsDw5WxTpCXqZvDOBQLkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.033 [XNIO-1 task-1] hvsDw5WxTpCXqZvDOBQLkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:15.033 [XNIO-1 task-4] zP7fiEsvQmeu2fMjAgNcQw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.037 [XNIO-1 task-4] 2dfwmLDnREqBrJDnCxoOdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.037 [XNIO-1 task-4] 2dfwmLDnREqBrJDnCxoOdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.037 [XNIO-1 task-4] 2dfwmLDnREqBrJDnCxoOdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.037 [XNIO-1 task-4] 2dfwmLDnREqBrJDnCxoOdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2I2ZGRjNzItZDY0MC00NjE4LTliNjMtMzcxMWYyOGM1YjRhOk9QV01kcjl2UnZXS093NjM1T0lobXc=", "Basic Y2I2ZGRjNzItZDY0MC00NjE4LTliNjMtMzcxMWYyOGM1YjRhOk9QV01kcjl2UnZXS093NjM1T0lobXc=", authorization) +16:40:15.039 [XNIO-1 task-1] hvsDw5WxTpCXqZvDOBQLkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:15.039 [XNIO-1 task-1] hvsDw5WxTpCXqZvDOBQLkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.041 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9f3f2f84-d1ff-426b-ad4a-c4a3563caf7e +16:40:15.043 [XNIO-1 task-4] 2dfwmLDnREqBrJDnCxoOdg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.047 [XNIO-1 task-1] V45HFblORfCC-mhkCytGLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.047 [XNIO-1 task-1] V45HFblORfCC-mhkCytGLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.047 [XNIO-1 task-1] V45HFblORfCC-mhkCytGLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.047 [XNIO-1 task-1] V45HFblORfCC-mhkCytGLw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 68a6313d-6767-4880-b48f-15d55a197a27 scope = null +16:40:15.054 [XNIO-1 task-4] siVMpzU6QMqcllZ_fja5ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.054 [XNIO-1 task-4] siVMpzU6QMqcllZ_fja5ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.054 [XNIO-1 task-4] siVMpzU6QMqcllZ_fja5ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.055 [XNIO-1 task-4] siVMpzU6QMqcllZ_fja5ag DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.058 [XNIO-1 task-1] V45HFblORfCC-mhkCytGLw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.060 [XNIO-1 task-4] siVMpzU6QMqcllZ_fja5ag DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.061 [XNIO-1 task-2] 4fiM2GBWQ8eccBG5O25NUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.061 [XNIO-1 task-2] 4fiM2GBWQ8eccBG5O25NUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.061 [XNIO-1 task-2] 4fiM2GBWQ8eccBG5O25NUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.061 [XNIO-1 task-2] 4fiM2GBWQ8eccBG5O25NUg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:15.061 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:15.068 [XNIO-1 task-2] 4fiM2GBWQ8eccBG5O25NUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.072 [XNIO-1 task-1] q-fFtd5RTSGBtwEvegMRZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.072 [XNIO-1 task-1] q-fFtd5RTSGBtwEvegMRZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.072 [XNIO-1 task-1] q-fFtd5RTSGBtwEvegMRZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.073 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:640d6f44-4352-4a81-8ee0-30ebf8b68646 +16:40:15.074 [XNIO-1 task-1] q-fFtd5RTSGBtwEvegMRZg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.076 [XNIO-1 task-2] kbzCLzTESVyA0fK1Z2L-Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.076 [XNIO-1 task-2] kbzCLzTESVyA0fK1Z2L-Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.076 [XNIO-1 task-2] kbzCLzTESVyA0fK1Z2L-Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.076 [XNIO-1 task-2] kbzCLzTESVyA0fK1Z2L-Bg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9223da23-150a-4696-9368-6cdeff3c6ccc scope = null +16:40:15.079 [XNIO-1 task-4] vvJFN0UWTBS7Tbol3ofOyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.079 [XNIO-1 task-4] vvJFN0UWTBS7Tbol3ofOyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.079 [XNIO-1 task-4] vvJFN0UWTBS7Tbol3ofOyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.079 [XNIO-1 task-4] vvJFN0UWTBS7Tbol3ofOyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", "Basic NDM1N2QwY2YtYjliNC00MWYzLWI3N2ItNzVmZTlkOGIyM2I1Ok5UWlgyaS0xUm1tQzFRMERTMDctZWc=", authorization) +16:40:15.079 [XNIO-1 task-1] q-fFtd5RTSGBtwEvegMRZg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.084 [XNIO-1 task-1] Tpe6PGaNS_uFs2IMiuU7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.084 [XNIO-1 task-1] Tpe6PGaNS_uFs2IMiuU7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.085 [XNIO-1 task-1] Tpe6PGaNS_uFs2IMiuU7ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.085 [XNIO-1 task-1] Tpe6PGaNS_uFs2IMiuU7ig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.088 [XNIO-1 task-2] kbzCLzTESVyA0fK1Z2L-Bg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.091 [XNIO-1 task-1] Tpe6PGaNS_uFs2IMiuU7ig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.095 [XNIO-1 task-4] vvJFN0UWTBS7Tbol3ofOyQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.097 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:f458a983-1046-47ba-b168-15beec780fab +16:40:15.099 [XNIO-1 task-1] W9IOchbfQlWC8OCHWU1zPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.099 [XNIO-1 task-1] W9IOchbfQlWC8OCHWU1zPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.099 [XNIO-1 task-1] W9IOchbfQlWC8OCHWU1zPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.099 [XNIO-1 task-1] W9IOchbfQlWC8OCHWU1zPA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", "Basic MTRjNjljOTYtMGFkYi00MmMzLWE1ZWMtMWI1YzQwYzBhZDYxOlpIM1U5UFo0Ujl5czV2WXE1cFd6R3c=", authorization) +16:40:15.101 [XNIO-1 task-2] R6NckZ3zTSGC1Hk8ZKy92g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.102 [XNIO-1 task-2] R6NckZ3zTSGC1Hk8ZKy92g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.102 [XNIO-1 task-2] R6NckZ3zTSGC1Hk8ZKy92g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.102 [XNIO-1 task-2] R6NckZ3zTSGC1Hk8ZKy92g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", "Basic YWI4NmFkOWUtZDYwNi00ZjQ1LWIwZGQtNmY0YzZkY2NiZDA5OkNaTkgtVE53U3g2OTkxaEYzTUMta2c=", authorization) +16:40:15.104 [XNIO-1 task-1] W9IOchbfQlWC8OCHWU1zPA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.112 [XNIO-1 task-2] R6NckZ3zTSGC1Hk8ZKy92g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.114 [XNIO-1 task-1] dycUzkPgSHqi6akpz8rhww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.114 [XNIO-1 task-1] dycUzkPgSHqi6akpz8rhww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.114 [XNIO-1 task-1] dycUzkPgSHqi6akpz8rhww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.114 [XNIO-1 task-1] dycUzkPgSHqi6akpz8rhww DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDMwZDc2YTMtMTNkMy00NmU0LTk3N2UtZjZiMzNhODRmOTRlOmpqLWUxVjhxUk9PQ2lRUzRCZUhSQkE=", "Basic NDMwZDc2YTMtMTNkMy00NmU0LTk3N2UtZjZiMzNhODRmOTRlOmpqLWUxVjhxUk9PQ2lRUzRCZUhSQkE=", authorization) +16:40:15.118 [XNIO-1 task-4] BvjAKwNETrSvdnVha4hMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.118 [XNIO-1 task-4] BvjAKwNETrSvdnVha4hMiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.118 [XNIO-1 task-4] BvjAKwNETrSvdnVha4hMiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.118 [XNIO-1 task-4] BvjAKwNETrSvdnVha4hMiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", authorization) +16:40:15.121 [XNIO-1 task-1] dycUzkPgSHqi6akpz8rhww DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.126 [XNIO-1 task-4] BvjAKwNETrSvdnVha4hMiw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:15.126 [XNIO-1 task-4] BvjAKwNETrSvdnVha4hMiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.133 [XNIO-1 task-1] _fz2TkE6TDa5OaoUNvddRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.133 [XNIO-1 task-1] _fz2TkE6TDa5OaoUNvddRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.133 [XNIO-1 task-1] _fz2TkE6TDa5OaoUNvddRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.133 [XNIO-1 task-1] _fz2TkE6TDa5OaoUNvddRA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.138 [XNIO-1 task-1] _fz2TkE6TDa5OaoUNvddRA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.142 [XNIO-1 task-1] tmeaRRsRTkaiYYEiueIzWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.142 [XNIO-1 task-1] tmeaRRsRTkaiYYEiueIzWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.142 [XNIO-1 task-1] tmeaRRsRTkaiYYEiueIzWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.142 [XNIO-1 task-1] tmeaRRsRTkaiYYEiueIzWw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Hc_SU8QGQy-WUL_VGaNQyQ redirectUri = http://localhost:8080/authorization +16:40:15.146 [XNIO-1 task-4] -24xYBI_Qd2VEOx0ZcuOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.146 [XNIO-1 task-4] -24xYBI_Qd2VEOx0ZcuOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.146 [XNIO-1 task-4] -24xYBI_Qd2VEOx0ZcuOog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.146 [XNIO-1 task-4] -24xYBI_Qd2VEOx0ZcuOog DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.148 [XNIO-1 task-1] tmeaRRsRTkaiYYEiueIzWw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.151 [XNIO-1 task-4] -24xYBI_Qd2VEOx0ZcuOog DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.153 [XNIO-1 task-2] MvQqyFdwTqm5UxtP904Jpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.153 [XNIO-1 task-2] MvQqyFdwTqm5UxtP904Jpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.153 [XNIO-1 task-2] MvQqyFdwTqm5UxtP904Jpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.153 [XNIO-1 task-2] MvQqyFdwTqm5UxtP904Jpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", "Basic NDAxOTQ5NWQtYTRkYi00MDZiLTg5Y2YtOGFkMjBjYTVlZTE4OmtNT2VBcGRrUXdpQjJZR3dabDl1NEE=", authorization) +16:40:15.158 [XNIO-1 task-1] D0m4442lQu-WUBBlu5hupw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.158 [XNIO-1 task-1] D0m4442lQu-WUBBlu5hupw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.158 [XNIO-1 task-1] D0m4442lQu-WUBBlu5hupw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.158 [XNIO-1 task-1] D0m4442lQu-WUBBlu5hupw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", authorization) +16:40:15.159 [XNIO-1 task-2] MvQqyFdwTqm5UxtP904Jpw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:15.159 [XNIO-1 task-2] MvQqyFdwTqm5UxtP904Jpw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.161 [XNIO-1 task-4] esnJuV-2TZydk5fiF8wS_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.161 [XNIO-1 task-4] esnJuV-2TZydk5fiF8wS_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.161 [XNIO-1 task-4] esnJuV-2TZydk5fiF8wS_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.161 [XNIO-1 task-4] esnJuV-2TZydk5fiF8wS_w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 2efacb2d-c14e-469d-8cd0-8fb6358d1f5b scope = null +16:40:15.163 [XNIO-1 task-1] D0m4442lQu-WUBBlu5hupw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.169 [XNIO-1 task-1] bEK5VxoPQbiyb0gm9lpKDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.169 [XNIO-1 task-1] bEK5VxoPQbiyb0gm9lpKDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.169 [XNIO-1 task-1] bEK5VxoPQbiyb0gm9lpKDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.169 [XNIO-1 task-1] bEK5VxoPQbiyb0gm9lpKDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.172 [XNIO-1 task-4] esnJuV-2TZydk5fiF8wS_w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.175 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b4a31323-a71b-48d7-a430-986d72bb89b9 +16:40:15.177 [XNIO-1 task-1] bEK5VxoPQbiyb0gm9lpKDg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.188 [XNIO-1 task-4] I9XeT3WDSV-TBPlQvajZew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.188 [XNIO-1 task-4] I9XeT3WDSV-TBPlQvajZew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.188 [XNIO-1 task-4] I9XeT3WDSV-TBPlQvajZew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.188 [XNIO-1 task-1] YViVyo3lQZWERJ2WnLDRow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.188 [XNIO-1 task-4] I9XeT3WDSV-TBPlQvajZew DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWZjNDkzNDAtYWZlMC00YmVlLTljZTctZWU2ODkwZDU1NTRiOkd3TUd4Mk41U0YybWV6ZTJKWjQ2SlE=", "Basic YWZjNDkzNDAtYWZlMC00YmVlLTljZTctZWU2ODkwZDU1NTRiOkd3TUd4Mk41U0YybWV6ZTJKWjQ2SlE=", authorization) +16:40:15.188 [XNIO-1 task-4] I9XeT3WDSV-TBPlQvajZew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = DXK427ALSm-AQKrWI-veUg redirectUri = http://localhost:8080/authorization +16:40:15.188 [XNIO-1 task-1] YViVyo3lQZWERJ2WnLDRow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.188 [XNIO-1 task-1] YViVyo3lQZWERJ2WnLDRow DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:15.189 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9f76b35c-68d6-4df7-99e7-06c0a70c654c +16:40:15.191 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9f76b35c-68d6-4df7-99e7-06c0a70c654c +16:40:15.193 [XNIO-1 task-1] YViVyo3lQZWERJ2WnLDRow INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.195 [XNIO-1 task-4] I9XeT3WDSV-TBPlQvajZew DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.200 [XNIO-1 task-1] opxQekgxRf2anBp7w8Detg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.200 [XNIO-1 task-1] opxQekgxRf2anBp7w8Detg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.201 [XNIO-1 task-1] opxQekgxRf2anBp7w8Detg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.201 [XNIO-1 task-1] opxQekgxRf2anBp7w8Detg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", "Basic ZDlmZWFlMDctNmM2Ny00MmEzLTk5ZGUtNWIxZGFjM2M4NDVmOkpKdUdaa2FWUjF1MV9oWnVCYV9vWmc=", authorization) +16:40:15.204 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f458a983-1046-47ba-b168-15beec780fab +16:40:15.207 [XNIO-1 task-4] KZWVzql0RkqZVlGBTVYxxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.207 [XNIO-1 task-4] KZWVzql0RkqZVlGBTVYxxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.207 [XNIO-1 task-4] KZWVzql0RkqZVlGBTVYxxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.207 [XNIO-1 task-4] KZWVzql0RkqZVlGBTVYxxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.208 [XNIO-1 task-4] KZWVzql0RkqZVlGBTVYxxA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 855005ba-2cad-4149-a654-aa1e14aeab74 scope = null +16:40:15.210 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:72877160-9ecb-4356-a9f9-6f2edca17227 +16:40:15.211 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f458a983-1046-47ba-b168-15beec780fab +16:40:15.213 [XNIO-1 task-1] JWAb6FqHQpqK7QkUo-ImXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.213 [XNIO-1 task-1] JWAb6FqHQpqK7QkUo-ImXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.213 [XNIO-1 task-1] JWAb6FqHQpqK7QkUo-ImXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.213 [XNIO-1 task-1] JWAb6FqHQpqK7QkUo-ImXQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.218 [XNIO-1 task-1] JWAb6FqHQpqK7QkUo-ImXQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.219 [XNIO-1 task-4] KZWVzql0RkqZVlGBTVYxxA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.220 [XNIO-1 task-2] rNdJSG7wScS8h6_82sI8OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.220 [XNIO-1 task-2] rNdJSG7wScS8h6_82sI8OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.220 [XNIO-1 task-2] rNdJSG7wScS8h6_82sI8OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.221 [XNIO-1 task-2] rNdJSG7wScS8h6_82sI8OA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = i0JOEhsxT5CYkWPTJ1AO4A redirectUri = http://localhost:8080/authorization +16:40:15.222 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3c547ffa-031d-4b64-8b29-eacc127aec40 +16:40:15.226 [XNIO-1 task-1] uAahoqlXR6mSh3Srwq7x5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.226 [XNIO-1 task-1] uAahoqlXR6mSh3Srwq7x5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.226 [XNIO-1 task-1] uAahoqlXR6mSh3Srwq7x5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.226 [XNIO-1 task-1] uAahoqlXR6mSh3Srwq7x5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", "Basic Y2RhZDFkMjQtNTU5ZS00MWZhLTgzNjEtMGFiN2UzNGY4YTY3OlBTeEdxbExpUVUtdE9scG1oR2RuSGc=", authorization) +16:40:15.229 [XNIO-1 task-2] rNdJSG7wScS8h6_82sI8OA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:15.229 [XNIO-1 task-2] rNdJSG7wScS8h6_82sI8OA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.231 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c1653d6e-83ed-424e-ae04-08f0658aaf11 +16:40:15.232 [XNIO-1 task-1] uAahoqlXR6mSh3Srwq7x5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.242 [XNIO-1 task-2] mXF2DXz-RmKPzQgo6yEj1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +Jun 28, 2024 4:40:15 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.4]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) +16:40:15.247 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3c055339 +16:40:15.248 [XNIO-1 task-2] mXF2DXz-RmKPzQgo6yEj1Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.249 [XNIO-1 task-2] mXF2DXz-RmKPzQgo6yEj1Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:15.254 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:509301fa-2fa5-40d2-aa02-0d4c798431f8 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:15.261 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d42ec927 +16:40:15.265 [XNIO-1 task-2] L5hmcu9DSf-yg5vPru5xrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.265 [XNIO-1 task-2] L5hmcu9DSf-yg5vPru5xrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.265 [XNIO-1 task-2] L5hmcu9DSf-yg5vPru5xrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.265 [XNIO-1 task-2] L5hmcu9DSf-yg5vPru5xrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjgyMjRiYzAtYWY2OC00OGVkLWI2MWUtNjQwZDJkYzA4OGQzOk9jNzlEdUx3UnlxMTJQNl9BcVhIZ3c=", "Basic NjgyMjRiYzAtYWY2OC00OGVkLWI2MWUtNjQwZDJkYzA4OGQzOk9jNzlEdUx3UnlxMTJQNl9BcVhIZ3c=", authorization) +16:40:15.277 [XNIO-1 task-2] L5hmcu9DSf-yg5vPru5xrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:15.288 [XNIO-1 task-1] V2B7F8C8TRWAb_d9_YWkJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:15.288 [XNIO-1 task-1] V2B7F8C8TRWAb_d9_YWkJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.288 [XNIO-1 task-1] V2B7F8C8TRWAb_d9_YWkJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:15.288 [XNIO-1 task-1] V2B7F8C8TRWAb_d9_YWkJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.288 [XNIO-1 task-1] V2B7F8C8TRWAb_d9_YWkJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +16:40:15.288 [XNIO-1 task-2] 62UvA5lVRnaVvwbVJGNTUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null + +16:40:15.288 [XNIO-1 task-1] V2B7F8C8TRWAb_d9_YWkJw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzI4NzcxNjAtOWVjYi00MzU2LWE5ZjktNmYyZWRjYTE3MjI3OnFfd1lieHcwVGR1VHRuZklPb2ZQaEE=", "Basic NzI4NzcxNjAtOWVjYi00MzU2LWE5ZjktNmYyZWRjYTE3MjI3OnFfd1lieHcwVGR1VHRuZklPb2ZQaEE=", authorization) +16:40:15.289 [XNIO-1 task-1] V2B7F8C8TRWAb_d9_YWkJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 4Tcz9twKR5-ei6kQncpCcQ redirectUri = http://localhost:8080/authorization +16:40:15.289 [XNIO-1 task-2] 62UvA5lVRnaVvwbVJGNTUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:15.292 [XNIO-1 task-4] m_16OAQfSUOUCRUQgCrt3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:15.292 [XNIO-1 task-4] m_16OAQfSUOUCRUQgCrt3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token diff --git a/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-user-1.log b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..e2bd8ee --- /dev/null +++ b/log_data/LO2/Labeled/get_token_page_400_no_page_1/light-oauth2-oauth2-user-1.log @@ -0,0 +1,1789 @@ +16:40:09.861 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7134a462 +16:40:09.867 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:72c79266-e00e-48fa-bda8-1d876036b8ab +16:40:09.878 [XNIO-1 task-1] v70k49gJSm-CNr5oBdfVkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.878 [XNIO-1 task-1] v70k49gJSm-CNr5oBdfVkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.878 [XNIO-1 task-1] v70k49gJSm-CNr5oBdfVkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.878 [XNIO-1 task-1] v70k49gJSm-CNr5oBdfVkg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.887 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b2063980-0377-440d-8644-c372f6d3b7da +16:40:09.899 [XNIO-1 task-1] nMK_XgUdStOgSRaOhsmOnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.899 [XNIO-1 task-1] nMK_XgUdStOgSRaOhsmOnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:09.899 [XNIO-1 task-1] nMK_XgUdStOgSRaOhsmOnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.900 [XNIO-1 task-1] nMK_XgUdStOgSRaOhsmOnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.905 [XNIO-1 task-1] L-aGQ3GIQDSG7j1TUpEBmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.905 [XNIO-1 task-1] L-aGQ3GIQDSG7j1TUpEBmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:09.907 [XNIO-1 task-1] L-aGQ3GIQDSG7j1TUpEBmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.914 [XNIO-1 task-1] AdV_8E11QBWaMUXPgK71qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b59c5e26, base path is set to: null +16:40:09.914 [XNIO-1 task-1] AdV_8E11QBWaMUXPgK71qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:09.914 [XNIO-1 task-1] AdV_8E11QBWaMUXPgK71qQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:09.914 [XNIO-1 task-1] AdV_8E11QBWaMUXPgK71qQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b59c5e26, base path is set to: null +16:40:09.914 [XNIO-1 task-1] AdV_8E11QBWaMUXPgK71qQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b59c5e26", "b59c5e26", userId) +16:40:09.918 [XNIO-1 task-1] b9zE3CkXSC-9GC8kM2eITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a9a04f38 +16:40:09.918 [XNIO-1 task-1] b9zE3CkXSC-9GC8kM2eITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.918 [XNIO-1 task-1] b9zE3CkXSC-9GC8kM2eITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:09.918 [XNIO-1 task-1] b9zE3CkXSC-9GC8kM2eITw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a9a04f38 +16:40:09.921 [XNIO-1 task-1] SOZ3UFXLRWiQHr5MfZBr4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a9a04f38, base path is set to: null +16:40:09.921 [XNIO-1 task-1] SOZ3UFXLRWiQHr5MfZBr4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:09.921 [XNIO-1 task-1] SOZ3UFXLRWiQHr5MfZBr4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:09.922 [XNIO-1 task-1] SOZ3UFXLRWiQHr5MfZBr4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a9a04f38, base path is set to: null +16:40:09.922 [XNIO-1 task-1] SOZ3UFXLRWiQHr5MfZBr4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a9a04f38", "a9a04f38", userId) +16:40:09.929 [XNIO-1 task-1] 9QUiM-xRR9WX5BykG7DsSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.930 [XNIO-1 task-1] 9QUiM-xRR9WX5BykG7DsSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:09.930 [XNIO-1 task-1] 9QUiM-xRR9WX5BykG7DsSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.930 [XNIO-1 task-1] 9QUiM-xRR9WX5BykG7DsSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:09.934 [XNIO-1 task-1] YlV5nC74SQeySkiMXbhIjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.934 [XNIO-1 task-1] YlV5nC74SQeySkiMXbhIjg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:09.934 [XNIO-1 task-1] YlV5nC74SQeySkiMXbhIjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:09.941 [XNIO-1 task-1] PhsvAnxrS5aLH4cw_DpI3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b59c5e26, base path is set to: null +16:40:09.941 [XNIO-1 task-1] PhsvAnxrS5aLH4cw_DpI3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:09.942 [XNIO-1 task-1] PhsvAnxrS5aLH4cw_DpI3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:09.942 [XNIO-1 task-1] PhsvAnxrS5aLH4cw_DpI3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b59c5e26, base path is set to: null +16:40:09.942 [XNIO-1 task-1] PhsvAnxrS5aLH4cw_DpI3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b59c5e26", "b59c5e26", userId) +16:40:09.945 [XNIO-1 task-1] ijI3t-Q4RRKygGHezi8fOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.946 [XNIO-1 task-1] ijI3t-Q4RRKygGHezi8fOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.946 [XNIO-1 task-1] ijI3t-Q4RRKygGHezi8fOg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.946 [XNIO-1 task-1] ijI3t-Q4RRKygGHezi8fOg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:09.949 [XNIO-1 task-1] guYtqOEyQB2gFPixGfcT7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.949 [XNIO-1 task-1] guYtqOEyQB2gFPixGfcT7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.949 [XNIO-1 task-1] guYtqOEyQB2gFPixGfcT7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.966 [XNIO-1 task-1] Y_rkB-9vRTaox_ytk3SVhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.966 [XNIO-1 task-1] Y_rkB-9vRTaox_ytk3SVhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.966 [XNIO-1 task-1] Y_rkB-9vRTaox_ytk3SVhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.983 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9af84a6 +16:40:09.983 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:09.983 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:09.983 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:09.983 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9af84a6 +16:40:09.983 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"e857530f-c3bf-497c-a5b7-f5320f1e597e","newPassword":"33134148-46e7-474c-8e9c-7813c54dbd33","newPasswordConfirm":"33134148-46e7-474c-8e9c-7813c54dbd33"}, {"password":"e857530f-c3bf-497c-a5b7-f5320f1e597e","newPassword":"33134148-46e7-474c-8e9c-7813c54dbd33","newPasswordConfirm":"33134148-46e7-474c-8e9c-7813c54dbd33"}, requestBody) +16:40:09.984 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"e857530f-c3bf-497c-a5b7-f5320f1e597e","newPassword":"33134148-46e7-474c-8e9c-7813c54dbd33","newPasswordConfirm":"33134148-46e7-474c-8e9c-7813c54dbd33"}, {"password":"e857530f-c3bf-497c-a5b7-f5320f1e597e","newPassword":"33134148-46e7-474c-8e9c-7813c54dbd33","newPasswordConfirm":"33134148-46e7-474c-8e9c-7813c54dbd33"}, requestBody) +16:40:09.984 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG com.networknt.schema.FormatValidator debug - validate( "33134148-46e7-474c-8e9c-7813c54dbd33", {"password":"e857530f-c3bf-497c-a5b7-f5320f1e597e","newPassword":"33134148-46e7-474c-8e9c-7813c54dbd33","newPasswordConfirm":"33134148-46e7-474c-8e9c-7813c54dbd33"}, requestBody.newPasswordConfirm) +16:40:09.984 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG com.networknt.schema.FormatValidator debug - validate( "e857530f-c3bf-497c-a5b7-f5320f1e597e", {"password":"e857530f-c3bf-497c-a5b7-f5320f1e597e","newPassword":"33134148-46e7-474c-8e9c-7813c54dbd33","newPasswordConfirm":"33134148-46e7-474c-8e9c-7813c54dbd33"}, requestBody.password) +16:40:09.984 [XNIO-1 task-1] Nru6Q0gHSgGdQucaUgFRrA DEBUG com.networknt.schema.FormatValidator debug - validate( "33134148-46e7-474c-8e9c-7813c54dbd33", {"password":"e857530f-c3bf-497c-a5b7-f5320f1e597e","newPassword":"33134148-46e7-474c-8e9c-7813c54dbd33","newPasswordConfirm":"33134148-46e7-474c-8e9c-7813c54dbd33"}, requestBody.newPassword) +16:40:10.005 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9af84a6 +16:40:10.005 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.005 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.005 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.006 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9af84a6 +16:40:10.006 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"33134148-46e7-474c-8e9c-7813c54dbd33","newPassword":"c4ee476e-19be-44fa-a9a8-94ee9943063d","newPasswordConfirm":"c4ee476e-19be-44fa-a9a8-94ee9943063d"}, {"password":"33134148-46e7-474c-8e9c-7813c54dbd33","newPassword":"c4ee476e-19be-44fa-a9a8-94ee9943063d","newPasswordConfirm":"c4ee476e-19be-44fa-a9a8-94ee9943063d"}, requestBody) +16:40:10.006 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"33134148-46e7-474c-8e9c-7813c54dbd33","newPassword":"c4ee476e-19be-44fa-a9a8-94ee9943063d","newPasswordConfirm":"c4ee476e-19be-44fa-a9a8-94ee9943063d"}, {"password":"33134148-46e7-474c-8e9c-7813c54dbd33","newPassword":"c4ee476e-19be-44fa-a9a8-94ee9943063d","newPasswordConfirm":"c4ee476e-19be-44fa-a9a8-94ee9943063d"}, requestBody) +16:40:10.006 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG com.networknt.schema.FormatValidator debug - validate( "c4ee476e-19be-44fa-a9a8-94ee9943063d", {"password":"33134148-46e7-474c-8e9c-7813c54dbd33","newPassword":"c4ee476e-19be-44fa-a9a8-94ee9943063d","newPasswordConfirm":"c4ee476e-19be-44fa-a9a8-94ee9943063d"}, requestBody.newPasswordConfirm) +16:40:10.006 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG com.networknt.schema.FormatValidator debug - validate( "33134148-46e7-474c-8e9c-7813c54dbd33", {"password":"33134148-46e7-474c-8e9c-7813c54dbd33","newPassword":"c4ee476e-19be-44fa-a9a8-94ee9943063d","newPasswordConfirm":"c4ee476e-19be-44fa-a9a8-94ee9943063d"}, requestBody.password) +16:40:10.006 [XNIO-1 task-1] XgrJXdkyTgu9KCW03m2jqA DEBUG com.networknt.schema.FormatValidator debug - validate( "c4ee476e-19be-44fa-a9a8-94ee9943063d", {"password":"33134148-46e7-474c-8e9c-7813c54dbd33","newPassword":"c4ee476e-19be-44fa-a9a8-94ee9943063d","newPasswordConfirm":"c4ee476e-19be-44fa-a9a8-94ee9943063d"}, requestBody.newPassword) +16:40:10.022 [XNIO-1 task-1] x5eZj5yuRHu2mpdYQ0Tx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.022 [XNIO-1 task-1] x5eZj5yuRHu2mpdYQ0Tx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.023 [XNIO-1 task-1] x5eZj5yuRHu2mpdYQ0Tx9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.031 [XNIO-1 task-1] GWN8JdNZRFm-2_CZjG3G7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.031 [XNIO-1 task-1] GWN8JdNZRFm-2_CZjG3G7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.031 [XNIO-1 task-1] GWN8JdNZRFm-2_CZjG3G7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.040 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7134a462 +16:40:10.047 [XNIO-1 task-1] 4G2RmCY1TZiShf27HQF11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5d54278f +16:40:10.047 [XNIO-1 task-1] 4G2RmCY1TZiShf27HQF11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.047 [XNIO-1 task-1] 4G2RmCY1TZiShf27HQF11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.047 [XNIO-1 task-1] 4G2RmCY1TZiShf27HQF11w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5d54278f +16:40:10.055 [XNIO-1 task-1] x-DBkeFUQRi5E1wBTaz2tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.056 [XNIO-1 task-1] x-DBkeFUQRi5E1wBTaz2tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.056 [XNIO-1 task-1] x-DBkeFUQRi5E1wBTaz2tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.056 [XNIO-1 task-1] x-DBkeFUQRi5E1wBTaz2tA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.059 [XNIO-1 task-1] T90fESVeTd2rvKojHT00Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b59c5e26, base path is set to: null +16:40:10.060 [XNIO-1 task-1] T90fESVeTd2rvKojHT00Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.060 [XNIO-1 task-1] T90fESVeTd2rvKojHT00Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.060 [XNIO-1 task-1] T90fESVeTd2rvKojHT00Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/b59c5e26, base path is set to: null +16:40:10.060 [XNIO-1 task-1] T90fESVeTd2rvKojHT00Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "b59c5e26", "b59c5e26", userId) +16:40:10.067 [XNIO-1 task-1] hVXn8k42Q-WpV1suUsCt3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.067 [XNIO-1 task-1] hVXn8k42Q-WpV1suUsCt3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.067 [XNIO-1 task-1] hVXn8k42Q-WpV1suUsCt3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.067 [XNIO-1 task-1] hVXn8k42Q-WpV1suUsCt3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"7e4917a4-265e-4bf0-96c6-32c38303ed45","newPassword":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPasswordConfirm":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4"}, {"password":"7e4917a4-265e-4bf0-96c6-32c38303ed45","newPassword":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPasswordConfirm":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4"}, requestBody) +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"7e4917a4-265e-4bf0-96c6-32c38303ed45","newPassword":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPasswordConfirm":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4"}, {"password":"7e4917a4-265e-4bf0-96c6-32c38303ed45","newPassword":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPasswordConfirm":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4"}, requestBody) +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG com.networknt.schema.FormatValidator debug - validate( "b1bf4bb6-6afc-4bde-a9a9-6c036f852af4", {"password":"7e4917a4-265e-4bf0-96c6-32c38303ed45","newPassword":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPasswordConfirm":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4"}, requestBody.newPasswordConfirm) +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG com.networknt.schema.FormatValidator debug - validate( "7e4917a4-265e-4bf0-96c6-32c38303ed45", {"password":"7e4917a4-265e-4bf0-96c6-32c38303ed45","newPassword":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPasswordConfirm":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4"}, requestBody.password) +16:40:10.072 [XNIO-1 task-1] rN9-L7SuTtqsqBspQPQTrg DEBUG com.networknt.schema.FormatValidator debug - validate( "b1bf4bb6-6afc-4bde-a9a9-6c036f852af4", {"password":"7e4917a4-265e-4bf0-96c6-32c38303ed45","newPassword":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPasswordConfirm":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4"}, requestBody.newPassword) +16:40:10.076 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:7134a462 +16:40:10.089 [XNIO-1 task-1] dbzysN8RSQeFWxhSVMpVgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9af84a6 +16:40:10.089 [XNIO-1 task-1] dbzysN8RSQeFWxhSVMpVgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.089 [XNIO-1 task-1] dbzysN8RSQeFWxhSVMpVgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.089 [XNIO-1 task-1] dbzysN8RSQeFWxhSVMpVgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9af84a6 +16:40:10.091 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:dc08d265-4659-463a-960c-559ea99c81ec +16:40:10.091 [XNIO-1 task-1] wlI8BQmES-q-TdjRIhuQVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.092 [XNIO-1 task-1] wlI8BQmES-q-TdjRIhuQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.092 [XNIO-1 task-1] wlI8BQmES-q-TdjRIhuQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.092 [XNIO-1 task-1] wlI8BQmES-q-TdjRIhuQVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.102 [XNIO-1 task-1] 4Dpuu-61TJiXHkIjCgfbdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.102 [XNIO-1 task-1] 4Dpuu-61TJiXHkIjCgfbdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.102 [XNIO-1 task-1] 4Dpuu-61TJiXHkIjCgfbdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.102 [XNIO-1 task-1] 4Dpuu-61TJiXHkIjCgfbdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.106 [XNIO-1 task-1] sYO2czl0T3W5V1EObAYeLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f9af84a6, base path is set to: null +16:40:10.106 [XNIO-1 task-1] sYO2czl0T3W5V1EObAYeLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.106 [XNIO-1 task-1] sYO2czl0T3W5V1EObAYeLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.106 [XNIO-1 task-1] sYO2czl0T3W5V1EObAYeLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f9af84a6, base path is set to: null +16:40:10.106 [XNIO-1 task-1] sYO2czl0T3W5V1EObAYeLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f9af84a6", "f9af84a6", userId) +16:40:10.116 [XNIO-1 task-1] eGKYWZgrTX6oTWVVMXrq6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.116 [XNIO-1 task-1] eGKYWZgrTX6oTWVVMXrq6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.116 [XNIO-1 task-1] eGKYWZgrTX6oTWVVMXrq6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.128 [XNIO-1 task-1] -tI9tz5uQuOyAeog1y2CuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.128 [XNIO-1 task-1] -tI9tz5uQuOyAeog1y2CuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.128 [XNIO-1 task-1] -tI9tz5uQuOyAeog1y2CuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.138 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.138 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.138 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.138 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.138 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.139 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPassword":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPasswordConfirm":"07a5f0fa-3a73-4f7e-bda9-a1891a945248"}, {"password":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPassword":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPasswordConfirm":"07a5f0fa-3a73-4f7e-bda9-a1891a945248"}, requestBody) +16:40:10.139 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPassword":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPasswordConfirm":"07a5f0fa-3a73-4f7e-bda9-a1891a945248"}, {"password":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPassword":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPasswordConfirm":"07a5f0fa-3a73-4f7e-bda9-a1891a945248"}, requestBody) +16:40:10.139 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG com.networknt.schema.FormatValidator debug - validate( "07a5f0fa-3a73-4f7e-bda9-a1891a945248", {"password":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPassword":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPasswordConfirm":"07a5f0fa-3a73-4f7e-bda9-a1891a945248"}, requestBody.newPasswordConfirm) +16:40:10.139 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG com.networknt.schema.FormatValidator debug - validate( "b1bf4bb6-6afc-4bde-a9a9-6c036f852af4", {"password":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPassword":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPasswordConfirm":"07a5f0fa-3a73-4f7e-bda9-a1891a945248"}, requestBody.password) +16:40:10.139 [XNIO-1 task-1] GWyGQnF6QWWhJH-pxI7m6w DEBUG com.networknt.schema.FormatValidator debug - validate( "07a5f0fa-3a73-4f7e-bda9-a1891a945248", {"password":"b1bf4bb6-6afc-4bde-a9a9-6c036f852af4","newPassword":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPasswordConfirm":"07a5f0fa-3a73-4f7e-bda9-a1891a945248"}, requestBody.newPassword) +16:40:10.158 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.158 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.158 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.158 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.158 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.158 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPassword":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPasswordConfirm":"ba33e595-b35e-4390-b39c-41dddb9ae48e"}, {"password":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPassword":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPasswordConfirm":"ba33e595-b35e-4390-b39c-41dddb9ae48e"}, requestBody) +16:40:10.158 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPassword":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPasswordConfirm":"ba33e595-b35e-4390-b39c-41dddb9ae48e"}, {"password":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPassword":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPasswordConfirm":"ba33e595-b35e-4390-b39c-41dddb9ae48e"}, requestBody) +16:40:10.159 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ba33e595-b35e-4390-b39c-41dddb9ae48e", {"password":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPassword":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPasswordConfirm":"ba33e595-b35e-4390-b39c-41dddb9ae48e"}, requestBody.newPasswordConfirm) +16:40:10.159 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "07a5f0fa-3a73-4f7e-bda9-a1891a945248", {"password":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPassword":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPasswordConfirm":"ba33e595-b35e-4390-b39c-41dddb9ae48e"}, requestBody.password) +16:40:10.159 [XNIO-1 task-1] pESWmNKHRPW59MDQHOUAmQ DEBUG com.networknt.schema.FormatValidator debug - validate( "ba33e595-b35e-4390-b39c-41dddb9ae48e", {"password":"07a5f0fa-3a73-4f7e-bda9-a1891a945248","newPassword":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPasswordConfirm":"ba33e595-b35e-4390-b39c-41dddb9ae48e"}, requestBody.newPassword) +16:40:10.175 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c1ff57b +16:40:10.175 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.175 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.175 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.175 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c1ff57b +16:40:10.175 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c9e8dcc1-bcff-4546-a072-a58ce0c95271","newPassword":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPasswordConfirm":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811"}, {"password":"c9e8dcc1-bcff-4546-a072-a58ce0c95271","newPassword":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPasswordConfirm":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811"}, requestBody) +16:40:10.175 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c9e8dcc1-bcff-4546-a072-a58ce0c95271","newPassword":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPasswordConfirm":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811"}, {"password":"c9e8dcc1-bcff-4546-a072-a58ce0c95271","newPassword":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPasswordConfirm":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811"}, requestBody) +16:40:10.176 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG com.networknt.schema.FormatValidator debug - validate( "a85b67f9-c8b4-4ec0-897e-bbd372cd5811", {"password":"c9e8dcc1-bcff-4546-a072-a58ce0c95271","newPassword":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPasswordConfirm":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811"}, requestBody.newPasswordConfirm) +16:40:10.176 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG com.networknt.schema.FormatValidator debug - validate( "c9e8dcc1-bcff-4546-a072-a58ce0c95271", {"password":"c9e8dcc1-bcff-4546-a072-a58ce0c95271","newPassword":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPasswordConfirm":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811"}, requestBody.password) +16:40:10.176 [XNIO-1 task-1] xAKILFc2QWq91sN9PiB7iw DEBUG com.networknt.schema.FormatValidator debug - validate( "a85b67f9-c8b4-4ec0-897e-bbd372cd5811", {"password":"c9e8dcc1-bcff-4546-a072-a58ce0c95271","newPassword":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPasswordConfirm":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811"}, requestBody.newPassword) +16:40:10.196 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c1ff57b +16:40:10.196 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.196 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.196 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.197 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4c1ff57b +16:40:10.197 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPassword":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPasswordConfirm":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db"}, {"password":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPassword":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPasswordConfirm":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db"}, requestBody) +16:40:10.197 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPassword":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPasswordConfirm":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db"}, {"password":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPassword":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPasswordConfirm":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db"}, requestBody) +16:40:10.197 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG com.networknt.schema.FormatValidator debug - validate( "4b99d2b7-62ed-468b-9c24-b96a3cacc6db", {"password":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPassword":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPasswordConfirm":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db"}, requestBody.newPasswordConfirm) +16:40:10.197 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG com.networknt.schema.FormatValidator debug - validate( "a85b67f9-c8b4-4ec0-897e-bbd372cd5811", {"password":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPassword":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPasswordConfirm":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db"}, requestBody.password) +16:40:10.197 [XNIO-1 task-1] q_s-oAD7QTamgAEQqTcWyw DEBUG com.networknt.schema.FormatValidator debug - validate( "4b99d2b7-62ed-468b-9c24-b96a3cacc6db", {"password":"a85b67f9-c8b4-4ec0-897e-bbd372cd5811","newPassword":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPasswordConfirm":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db"}, requestBody.newPassword) +16:40:10.214 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c066207e-0b71-44f6-b410-4b22e9e86342 +16:40:10.214 [XNIO-1 task-1] CwylX2AMQROBXhbDZ3C9jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.214 [XNIO-1 task-1] CwylX2AMQROBXhbDZ3C9jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.215 [XNIO-1 task-1] CwylX2AMQROBXhbDZ3C9jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.224 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4c1ff57b, base path is set to: null +16:40:10.224 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.224 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.224 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:10.224 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/4c1ff57b, base path is set to: null +16:40:10.224 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG com.networknt.schema.TypeValidator debug - validate( "4c1ff57b", "4c1ff57b", userId) +16:40:10.224 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPassword":"d21896e1-2979-4048-bd4a-fe29fa4e181e","newPasswordConfirm":"d21896e1-2979-4048-bd4a-fe29fa4e181e"}, {"password":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPassword":"d21896e1-2979-4048-bd4a-fe29fa4e181e","newPasswordConfirm":"d21896e1-2979-4048-bd4a-fe29fa4e181e"}, requestBody) +16:40:10.225 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG com.networknt.schema.TypeValidator debug - validate( "d21896e1-2979-4048-bd4a-fe29fa4e181e", {"password":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPassword":"d21896e1-2979-4048-bd4a-fe29fa4e181e","newPasswordConfirm":"d21896e1-2979-4048-bd4a-fe29fa4e181e"}, requestBody.newPasswordConfirm) +16:40:10.225 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b99d2b7-62ed-468b-9c24-b96a3cacc6db", {"password":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPassword":"d21896e1-2979-4048-bd4a-fe29fa4e181e","newPasswordConfirm":"d21896e1-2979-4048-bd4a-fe29fa4e181e"}, requestBody.password) +16:40:10.225 [XNIO-1 task-1] -sQsinZyT9-pX6XwuOsPPA DEBUG com.networknt.schema.TypeValidator debug - validate( "d21896e1-2979-4048-bd4a-fe29fa4e181e", {"password":"4b99d2b7-62ed-468b-9c24-b96a3cacc6db","newPassword":"d21896e1-2979-4048-bd4a-fe29fa4e181e","newPasswordConfirm":"d21896e1-2979-4048-bd4a-fe29fa4e181e"}, requestBody.newPassword) +16:40:10.229 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:79c91724-77a2-4361-ac33-fc8c68cc09f3 +16:40:10.230 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:79c91724-77a2-4361-ac33-fc8c68cc09f3 +16:40:10.244 [XNIO-1 task-1] AtrVKYqSRk6Z58J5bQLCVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4c1ff57b, base path is set to: null +16:40:10.245 [XNIO-1 task-1] AtrVKYqSRk6Z58J5bQLCVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.245 [XNIO-1 task-1] AtrVKYqSRk6Z58J5bQLCVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.245 [XNIO-1 task-1] AtrVKYqSRk6Z58J5bQLCVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4c1ff57b, base path is set to: null +16:40:10.245 [XNIO-1 task-1] AtrVKYqSRk6Z58J5bQLCVg DEBUG com.networknt.schema.TypeValidator debug - validate( "4c1ff57b", "4c1ff57b", userId) +16:40:10.255 [XNIO-1 task-1] tEK7JRXBRZezaveyKjJ6-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.255 [XNIO-1 task-1] tEK7JRXBRZezaveyKjJ6-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.255 [XNIO-1 task-1] tEK7JRXBRZezaveyKjJ6-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.273 [XNIO-1 task-1] 9GosJVbFRXKdaivl4HZoLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.273 [XNIO-1 task-1] 9GosJVbFRXKdaivl4HZoLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.273 [XNIO-1 task-1] 9GosJVbFRXKdaivl4HZoLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.273 [XNIO-1 task-1] 9GosJVbFRXKdaivl4HZoLw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.298 [XNIO-1 task-1] mdHxpWmHR7W0W4cFrtqIxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/898d0a35 +16:40:10.298 [XNIO-1 task-1] mdHxpWmHR7W0W4cFrtqIxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.298 [XNIO-1 task-1] mdHxpWmHR7W0W4cFrtqIxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.298 [XNIO-1 task-1] mdHxpWmHR7W0W4cFrtqIxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/898d0a35 +16:40:10.306 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f13be79c, base path is set to: null +16:40:10.307 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.307 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.307 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:10.307 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f13be79c, base path is set to: null +16:40:10.308 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG com.networknt.schema.TypeValidator debug - validate( "f13be79c", "f13be79c", userId) +16:40:10.308 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPassword":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPasswordConfirm":"5e374294-7dc6-4213-aabd-fa3ef2e71525"}, {"password":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPassword":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPasswordConfirm":"5e374294-7dc6-4213-aabd-fa3ef2e71525"}, requestBody) +16:40:10.308 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG com.networknt.schema.TypeValidator debug - validate( "5e374294-7dc6-4213-aabd-fa3ef2e71525", {"password":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPassword":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPasswordConfirm":"5e374294-7dc6-4213-aabd-fa3ef2e71525"}, requestBody.newPasswordConfirm) +16:40:10.308 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG com.networknt.schema.TypeValidator debug - validate( "ba33e595-b35e-4390-b39c-41dddb9ae48e", {"password":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPassword":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPasswordConfirm":"5e374294-7dc6-4213-aabd-fa3ef2e71525"}, requestBody.password) +16:40:10.308 [XNIO-1 task-1] C_pT3kXkQL68CBicd_ajZg DEBUG com.networknt.schema.TypeValidator debug - validate( "5e374294-7dc6-4213-aabd-fa3ef2e71525", {"password":"ba33e595-b35e-4390-b39c-41dddb9ae48e","newPassword":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPasswordConfirm":"5e374294-7dc6-4213-aabd-fa3ef2e71525"}, requestBody.newPassword) +16:40:10.310 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:79c91724-77a2-4361-ac33-fc8c68cc09f3 +16:40:10.325 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.325 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.325 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.325 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.326 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.326 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPassword":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPasswordConfirm":"3c011cd1-4db2-48b0-b231-12b1b307c8aa"}, {"password":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPassword":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPasswordConfirm":"3c011cd1-4db2-48b0-b231-12b1b307c8aa"}, requestBody) +16:40:10.326 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPassword":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPasswordConfirm":"3c011cd1-4db2-48b0-b231-12b1b307c8aa"}, {"password":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPassword":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPasswordConfirm":"3c011cd1-4db2-48b0-b231-12b1b307c8aa"}, requestBody) +16:40:10.326 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG com.networknt.schema.FormatValidator debug - validate( "3c011cd1-4db2-48b0-b231-12b1b307c8aa", {"password":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPassword":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPasswordConfirm":"3c011cd1-4db2-48b0-b231-12b1b307c8aa"}, requestBody.newPasswordConfirm) +16:40:10.326 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG com.networknt.schema.FormatValidator debug - validate( "5e374294-7dc6-4213-aabd-fa3ef2e71525", {"password":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPassword":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPasswordConfirm":"3c011cd1-4db2-48b0-b231-12b1b307c8aa"}, requestBody.password) +16:40:10.326 [XNIO-1 task-1] j6_OVMqAT-GFUni-4FgzpA DEBUG com.networknt.schema.FormatValidator debug - validate( "3c011cd1-4db2-48b0-b231-12b1b307c8aa", {"password":"5e374294-7dc6-4213-aabd-fa3ef2e71525","newPassword":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPasswordConfirm":"3c011cd1-4db2-48b0-b231-12b1b307c8aa"}, requestBody.newPassword) +16:40:10.329 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:7134a462 +16:40:10.349 [XNIO-1 task-1] RZBPUfK9RwOT77ogflKFXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.349 [XNIO-1 task-1] RZBPUfK9RwOT77ogflKFXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.349 [XNIO-1 task-1] RZBPUfK9RwOT77ogflKFXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.362 [XNIO-1 task-1] FA6-a8oZQtKpZKLDzeQHGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.362 [XNIO-1 task-1] FA6-a8oZQtKpZKLDzeQHGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.362 [XNIO-1 task-1] FA6-a8oZQtKpZKLDzeQHGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.372 [XNIO-1 task-1] 3kCVTdkORXaePv7m-Jjo1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.372 [XNIO-1 task-1] 3kCVTdkORXaePv7m-Jjo1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.372 [XNIO-1 task-1] 3kCVTdkORXaePv7m-Jjo1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.390 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.390 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.390 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.390 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.391 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f13be79c +16:40:10.391 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPassword":"e5da7897-f310-4619-877a-5fd89f60ea57","newPasswordConfirm":"e5da7897-f310-4619-877a-5fd89f60ea57"}, {"password":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPassword":"e5da7897-f310-4619-877a-5fd89f60ea57","newPasswordConfirm":"e5da7897-f310-4619-877a-5fd89f60ea57"}, requestBody) +16:40:10.391 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPassword":"e5da7897-f310-4619-877a-5fd89f60ea57","newPasswordConfirm":"e5da7897-f310-4619-877a-5fd89f60ea57"}, {"password":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPassword":"e5da7897-f310-4619-877a-5fd89f60ea57","newPasswordConfirm":"e5da7897-f310-4619-877a-5fd89f60ea57"}, requestBody) +16:40:10.391 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG com.networknt.schema.FormatValidator debug - validate( "e5da7897-f310-4619-877a-5fd89f60ea57", {"password":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPassword":"e5da7897-f310-4619-877a-5fd89f60ea57","newPasswordConfirm":"e5da7897-f310-4619-877a-5fd89f60ea57"}, requestBody.newPasswordConfirm) +16:40:10.391 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG com.networknt.schema.FormatValidator debug - validate( "3c011cd1-4db2-48b0-b231-12b1b307c8aa", {"password":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPassword":"e5da7897-f310-4619-877a-5fd89f60ea57","newPasswordConfirm":"e5da7897-f310-4619-877a-5fd89f60ea57"}, requestBody.password) +16:40:10.391 [XNIO-1 task-1] LMcAz0zDQumYEaF0JkutZA DEBUG com.networknt.schema.FormatValidator debug - validate( "e5da7897-f310-4619-877a-5fd89f60ea57", {"password":"3c011cd1-4db2-48b0-b231-12b1b307c8aa","newPassword":"e5da7897-f310-4619-877a-5fd89f60ea57","newPasswordConfirm":"e5da7897-f310-4619-877a-5fd89f60ea57"}, requestBody.newPassword) +16:40:10.407 [XNIO-1 task-1] b29O_qRZSzqi9B-HIAy4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.408 [XNIO-1 task-1] b29O_qRZSzqi9B-HIAy4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.408 [XNIO-1 task-1] b29O_qRZSzqi9B-HIAy4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.415 [XNIO-1 task-1] hpxePkwYTwWG3rc3BPIE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f13903a +16:40:10.415 [XNIO-1 task-1] hpxePkwYTwWG3rc3BPIE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.415 [XNIO-1 task-1] hpxePkwYTwWG3rc3BPIE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.415 [XNIO-1 task-1] hpxePkwYTwWG3rc3BPIE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f13903a +16:40:10.418 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f13be79c, base path is set to: null +16:40:10.418 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/f13be79c, base path is set to: null +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "f13be79c", "f13be79c", userId) +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e5da7897-f310-4619-877a-5fd89f60ea57","newPassword":"4dfcc251-c7ca-48ae-a719-16da07e99a12","newPasswordConfirm":"4dfcc251-c7ca-48ae-a719-16da07e99a12"}, {"password":"e5da7897-f310-4619-877a-5fd89f60ea57","newPassword":"4dfcc251-c7ca-48ae-a719-16da07e99a12","newPasswordConfirm":"4dfcc251-c7ca-48ae-a719-16da07e99a12"}, requestBody) +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "4dfcc251-c7ca-48ae-a719-16da07e99a12", {"password":"e5da7897-f310-4619-877a-5fd89f60ea57","newPassword":"4dfcc251-c7ca-48ae-a719-16da07e99a12","newPasswordConfirm":"4dfcc251-c7ca-48ae-a719-16da07e99a12"}, requestBody.newPasswordConfirm) +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "e5da7897-f310-4619-877a-5fd89f60ea57", {"password":"e5da7897-f310-4619-877a-5fd89f60ea57","newPassword":"4dfcc251-c7ca-48ae-a719-16da07e99a12","newPasswordConfirm":"4dfcc251-c7ca-48ae-a719-16da07e99a12"}, requestBody.password) +16:40:10.419 [XNIO-1 task-1] I08hedqQRJOjaXgeMwZ0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "4dfcc251-c7ca-48ae-a719-16da07e99a12", {"password":"e5da7897-f310-4619-877a-5fd89f60ea57","newPassword":"4dfcc251-c7ca-48ae-a719-16da07e99a12","newPasswordConfirm":"4dfcc251-c7ca-48ae-a719-16da07e99a12"}, requestBody.newPassword) +16:40:10.438 [XNIO-1 task-1] A1mk9uNRQ2GNhXo0HMeyJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.438 [XNIO-1 task-1] A1mk9uNRQ2GNhXo0HMeyJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.438 [XNIO-1 task-1] A1mk9uNRQ2GNhXo0HMeyJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.443 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0c8cf5a8-809a-4984-9864-eaeb50c24c03 +16:40:10.444 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0c8cf5a8-809a-4984-9864-eaeb50c24c03 +16:40:10.447 [XNIO-1 task-1] ELusdThmSAeWnpzNsebJHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f13903a +16:40:10.448 [XNIO-1 task-1] ELusdThmSAeWnpzNsebJHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.448 [XNIO-1 task-1] ELusdThmSAeWnpzNsebJHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.448 [XNIO-1 task-1] ELusdThmSAeWnpzNsebJHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f13903a +16:40:10.452 [XNIO-1 task-1] getnKbyrRBqo7fMvJG3WCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6f13903a, base path is set to: null +16:40:10.452 [XNIO-1 task-1] getnKbyrRBqo7fMvJG3WCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.452 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:0c8cf5a8-809a-4984-9864-eaeb50c24c03 +16:40:10.452 [XNIO-1 task-1] getnKbyrRBqo7fMvJG3WCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.452 [XNIO-1 task-1] getnKbyrRBqo7fMvJG3WCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f13903a +16:40:10.464 [XNIO-1 task-1] MnBWY2EKTOmBqNWOlndhxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f13be79c, base path is set to: null +16:40:10.464 [XNIO-1 task-1] MnBWY2EKTOmBqNWOlndhxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.464 [XNIO-1 task-1] MnBWY2EKTOmBqNWOlndhxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.464 [XNIO-1 task-1] MnBWY2EKTOmBqNWOlndhxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f13be79c, base path is set to: null +16:40:10.464 [XNIO-1 task-1] MnBWY2EKTOmBqNWOlndhxA DEBUG com.networknt.schema.TypeValidator debug - validate( "f13be79c", "f13be79c", userId) +16:40:10.474 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6671bd91 +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6671bd91 +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8f33ba6b-e7e8-4857-a288-90023b918726","newPassword":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPasswordConfirm":"bfbf0989-123c-4de4-8c07-570f8fdaff6a"}, {"password":"8f33ba6b-e7e8-4857-a288-90023b918726","newPassword":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPasswordConfirm":"bfbf0989-123c-4de4-8c07-570f8fdaff6a"}, requestBody) +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8f33ba6b-e7e8-4857-a288-90023b918726","newPassword":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPasswordConfirm":"bfbf0989-123c-4de4-8c07-570f8fdaff6a"}, {"password":"8f33ba6b-e7e8-4857-a288-90023b918726","newPassword":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPasswordConfirm":"bfbf0989-123c-4de4-8c07-570f8fdaff6a"}, requestBody) +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG com.networknt.schema.FormatValidator debug - validate( "bfbf0989-123c-4de4-8c07-570f8fdaff6a", {"password":"8f33ba6b-e7e8-4857-a288-90023b918726","newPassword":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPasswordConfirm":"bfbf0989-123c-4de4-8c07-570f8fdaff6a"}, requestBody.newPasswordConfirm) +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG com.networknt.schema.FormatValidator debug - validate( "8f33ba6b-e7e8-4857-a288-90023b918726", {"password":"8f33ba6b-e7e8-4857-a288-90023b918726","newPassword":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPasswordConfirm":"bfbf0989-123c-4de4-8c07-570f8fdaff6a"}, requestBody.password) +16:40:10.475 [XNIO-1 task-1] pw3fxpqiTWK_ZIc5flbOLA DEBUG com.networknt.schema.FormatValidator debug - validate( "bfbf0989-123c-4de4-8c07-570f8fdaff6a", {"password":"8f33ba6b-e7e8-4857-a288-90023b918726","newPassword":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPasswordConfirm":"bfbf0989-123c-4de4-8c07-570f8fdaff6a"}, requestBody.newPassword) +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6671bd91 +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6671bd91 +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPassword":"50267a45-308e-4166-aafd-f3c6132b82da","newPasswordConfirm":"50267a45-308e-4166-aafd-f3c6132b82da"}, {"password":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPassword":"50267a45-308e-4166-aafd-f3c6132b82da","newPasswordConfirm":"50267a45-308e-4166-aafd-f3c6132b82da"}, requestBody) +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPassword":"50267a45-308e-4166-aafd-f3c6132b82da","newPasswordConfirm":"50267a45-308e-4166-aafd-f3c6132b82da"}, {"password":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPassword":"50267a45-308e-4166-aafd-f3c6132b82da","newPasswordConfirm":"50267a45-308e-4166-aafd-f3c6132b82da"}, requestBody) +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG com.networknt.schema.FormatValidator debug - validate( "50267a45-308e-4166-aafd-f3c6132b82da", {"password":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPassword":"50267a45-308e-4166-aafd-f3c6132b82da","newPasswordConfirm":"50267a45-308e-4166-aafd-f3c6132b82da"}, requestBody.newPasswordConfirm) +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG com.networknt.schema.FormatValidator debug - validate( "bfbf0989-123c-4de4-8c07-570f8fdaff6a", {"password":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPassword":"50267a45-308e-4166-aafd-f3c6132b82da","newPasswordConfirm":"50267a45-308e-4166-aafd-f3c6132b82da"}, requestBody.password) +16:40:10.496 [XNIO-1 task-1] 0e7s0IjzSEiuJUuFTgOXQA DEBUG com.networknt.schema.FormatValidator debug - validate( "50267a45-308e-4166-aafd-f3c6132b82da", {"password":"bfbf0989-123c-4de4-8c07-570f8fdaff6a","newPassword":"50267a45-308e-4166-aafd-f3c6132b82da","newPasswordConfirm":"50267a45-308e-4166-aafd-f3c6132b82da"}, requestBody.newPassword) +16:40:10.525 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6671bd91 +16:40:10.525 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.525 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.525 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.525 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/6671bd91 +16:40:10.525 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"50267a45-308e-4166-aafd-f3c6132b82da","newPassword":"e6732e86-812b-4622-8561-f3c0e839707f","newPasswordConfirm":"e6732e86-812b-4622-8561-f3c0e839707f"}, {"password":"50267a45-308e-4166-aafd-f3c6132b82da","newPassword":"e6732e86-812b-4622-8561-f3c0e839707f","newPasswordConfirm":"e6732e86-812b-4622-8561-f3c0e839707f"}, requestBody) +16:40:10.525 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"50267a45-308e-4166-aafd-f3c6132b82da","newPassword":"e6732e86-812b-4622-8561-f3c0e839707f","newPasswordConfirm":"e6732e86-812b-4622-8561-f3c0e839707f"}, {"password":"50267a45-308e-4166-aafd-f3c6132b82da","newPassword":"e6732e86-812b-4622-8561-f3c0e839707f","newPasswordConfirm":"e6732e86-812b-4622-8561-f3c0e839707f"}, requestBody) +16:40:10.526 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "e6732e86-812b-4622-8561-f3c0e839707f", {"password":"50267a45-308e-4166-aafd-f3c6132b82da","newPassword":"e6732e86-812b-4622-8561-f3c0e839707f","newPasswordConfirm":"e6732e86-812b-4622-8561-f3c0e839707f"}, requestBody.newPasswordConfirm) +16:40:10.526 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "50267a45-308e-4166-aafd-f3c6132b82da", {"password":"50267a45-308e-4166-aafd-f3c6132b82da","newPassword":"e6732e86-812b-4622-8561-f3c0e839707f","newPasswordConfirm":"e6732e86-812b-4622-8561-f3c0e839707f"}, requestBody.password) +16:40:10.526 [XNIO-1 task-1] iDjHxfDEQraxLy5GZ0Cg-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "e6732e86-812b-4622-8561-f3c0e839707f", {"password":"50267a45-308e-4166-aafd-f3c6132b82da","newPassword":"e6732e86-812b-4622-8561-f3c0e839707f","newPasswordConfirm":"e6732e86-812b-4622-8561-f3c0e839707f"}, requestBody.newPassword) +16:40:10.543 [XNIO-1 task-1] wHnWTt3YRA-xNH52kfavwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.543 [XNIO-1 task-1] wHnWTt3YRA-xNH52kfavwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.543 [XNIO-1 task-1] wHnWTt3YRA-xNH52kfavwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.550 [XNIO-1 task-1] WdVu7vCJTFKAci0hEvkB0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6671bd91 +16:40:10.550 [XNIO-1 task-1] WdVu7vCJTFKAci0hEvkB0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.550 [XNIO-1 task-1] WdVu7vCJTFKAci0hEvkB0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.550 [XNIO-1 task-1] WdVu7vCJTFKAci0hEvkB0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6671bd91 +16:40:10.556 [XNIO-1 task-1] adCEwW4PSv6SgCto6lDAWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.556 [XNIO-1 task-1] adCEwW4PSv6SgCto6lDAWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.556 [XNIO-1 task-1] adCEwW4PSv6SgCto6lDAWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.556 [XNIO-1 task-1] adCEwW4PSv6SgCto6lDAWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.570 [XNIO-1 task-1] 6QnKD4HYSYOh8UreU6CJ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.570 [XNIO-1 task-1] 6QnKD4HYSYOh8UreU6CJ4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.570 [XNIO-1 task-1] 6QnKD4HYSYOh8UreU6CJ4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.585 [XNIO-1 task-1] erXyd0BlSEyVj2ZOi0TiFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6671bd91, base path is set to: null +16:40:10.585 [XNIO-1 task-1] erXyd0BlSEyVj2ZOi0TiFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.586 [XNIO-1 task-1] erXyd0BlSEyVj2ZOi0TiFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.586 [XNIO-1 task-1] erXyd0BlSEyVj2ZOi0TiFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6671bd91, base path is set to: null +16:40:10.586 [XNIO-1 task-1] erXyd0BlSEyVj2ZOi0TiFA DEBUG com.networknt.schema.TypeValidator debug - validate( "6671bd91", "6671bd91", userId) +16:40:10.598 [XNIO-1 task-1] odwyUItjQhKNzPFIrSzO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.599 [XNIO-1 task-1] odwyUItjQhKNzPFIrSzO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.599 [XNIO-1 task-1] odwyUItjQhKNzPFIrSzO7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.616 [XNIO-1 task-1] qa2BSwswQdqSh1dqtoNeYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.616 [XNIO-1 task-1] qa2BSwswQdqSh1dqtoNeYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.616 [XNIO-1 task-1] qa2BSwswQdqSh1dqtoNeYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.627 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/09c4bb0a +16:40:10.627 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.627 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.628 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.628 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/09c4bb0a +16:40:10.628 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"744aba79-5691-4f00-98e9-69af1969abf6","newPassword":"228ceb42-4067-4233-888a-660ff77fc33c","newPasswordConfirm":"228ceb42-4067-4233-888a-660ff77fc33c"}, {"password":"744aba79-5691-4f00-98e9-69af1969abf6","newPassword":"228ceb42-4067-4233-888a-660ff77fc33c","newPasswordConfirm":"228ceb42-4067-4233-888a-660ff77fc33c"}, requestBody) +16:40:10.628 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"744aba79-5691-4f00-98e9-69af1969abf6","newPassword":"228ceb42-4067-4233-888a-660ff77fc33c","newPasswordConfirm":"228ceb42-4067-4233-888a-660ff77fc33c"}, {"password":"744aba79-5691-4f00-98e9-69af1969abf6","newPassword":"228ceb42-4067-4233-888a-660ff77fc33c","newPasswordConfirm":"228ceb42-4067-4233-888a-660ff77fc33c"}, requestBody) +16:40:10.628 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG com.networknt.schema.FormatValidator debug - validate( "228ceb42-4067-4233-888a-660ff77fc33c", {"password":"744aba79-5691-4f00-98e9-69af1969abf6","newPassword":"228ceb42-4067-4233-888a-660ff77fc33c","newPasswordConfirm":"228ceb42-4067-4233-888a-660ff77fc33c"}, requestBody.newPasswordConfirm) +16:40:10.628 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG com.networknt.schema.FormatValidator debug - validate( "744aba79-5691-4f00-98e9-69af1969abf6", {"password":"744aba79-5691-4f00-98e9-69af1969abf6","newPassword":"228ceb42-4067-4233-888a-660ff77fc33c","newPasswordConfirm":"228ceb42-4067-4233-888a-660ff77fc33c"}, requestBody.password) +16:40:10.628 [XNIO-1 task-1] fQBeTzjVRrKnd_EQ06Qorg DEBUG com.networknt.schema.FormatValidator debug - validate( "228ceb42-4067-4233-888a-660ff77fc33c", {"password":"744aba79-5691-4f00-98e9-69af1969abf6","newPassword":"228ceb42-4067-4233-888a-660ff77fc33c","newPasswordConfirm":"228ceb42-4067-4233-888a-660ff77fc33c"}, requestBody.newPassword) +16:40:10.643 [XNIO-1 task-1] m7439S-3RN6Wmtpiuwl_rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186ddb +16:40:10.643 [XNIO-1 task-1] m7439S-3RN6Wmtpiuwl_rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.643 [XNIO-1 task-1] m7439S-3RN6Wmtpiuwl_rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.643 [XNIO-1 task-1] m7439S-3RN6Wmtpiuwl_rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186ddb +16:40:10.646 [XNIO-1 task-1] 2SFKorIJRQeL8zhWU8SWvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/09c4bb0a, base path is set to: null +16:40:10.646 [XNIO-1 task-1] 2SFKorIJRQeL8zhWU8SWvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.646 [XNIO-1 task-1] 2SFKorIJRQeL8zhWU8SWvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.646 [XNIO-1 task-1] 2SFKorIJRQeL8zhWU8SWvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/09c4bb0a, base path is set to: null +16:40:10.646 [XNIO-1 task-1] 2SFKorIJRQeL8zhWU8SWvg DEBUG com.networknt.schema.TypeValidator debug - validate( "09c4bb0a", "09c4bb0a", userId) +16:40:10.651 [XNIO-1 task-1] I6ubLqtPQHqyaLaZ-VKqMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186ddb +16:40:10.651 [XNIO-1 task-1] I6ubLqtPQHqyaLaZ-VKqMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.652 [XNIO-1 task-1] I6ubLqtPQHqyaLaZ-VKqMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.652 [XNIO-1 task-1] I6ubLqtPQHqyaLaZ-VKqMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/97186ddb +16:40:10.659 [XNIO-1 task-1] oyEDk2bEQ6iTQNfQDKulAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.659 [XNIO-1 task-1] oyEDk2bEQ6iTQNfQDKulAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.659 [XNIO-1 task-1] oyEDk2bEQ6iTQNfQDKulAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.659 [XNIO-1 task-1] oyEDk2bEQ6iTQNfQDKulAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.663 [XNIO-1 task-1] mId_cXz6Svm-4fqioo1V1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.663 [XNIO-1 task-1] mId_cXz6Svm-4fqioo1V1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.663 [XNIO-1 task-1] mId_cXz6Svm-4fqioo1V1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.677 [XNIO-1 task-1] sp75huctQoePg1uS_yZC1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.677 [XNIO-1 task-1] sp75huctQoePg1uS_yZC1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.677 [XNIO-1 task-1] sp75huctQoePg1uS_yZC1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.677 [XNIO-1 task-1] sp75huctQoePg1uS_yZC1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.682 [XNIO-1 task-1] Roe8sjKbSMeb1ay9e8QoVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ee942b9, base path is set to: null +16:40:10.682 [XNIO-1 task-1] Roe8sjKbSMeb1ay9e8QoVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.682 [XNIO-1 task-1] Roe8sjKbSMeb1ay9e8QoVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.682 [XNIO-1 task-1] Roe8sjKbSMeb1ay9e8QoVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ee942b9, base path is set to: null +16:40:10.682 [XNIO-1 task-1] Roe8sjKbSMeb1ay9e8QoVA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ee942b9", "4ee942b9", userId) +16:40:10.708 [XNIO-1 task-1] LLyl409XT0KMqhxebND12w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ee942b9 +16:40:10.708 [XNIO-1 task-1] LLyl409XT0KMqhxebND12w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.708 [XNIO-1 task-1] LLyl409XT0KMqhxebND12w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.708 [XNIO-1 task-1] LLyl409XT0KMqhxebND12w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ee942b9 +16:40:10.711 [XNIO-1 task-1] G0vTPSu6QJKGYqOwW5pHuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ee942b9, base path is set to: null +16:40:10.711 [XNIO-1 task-1] G0vTPSu6QJKGYqOwW5pHuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.712 [XNIO-1 task-1] G0vTPSu6QJKGYqOwW5pHuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.712 [XNIO-1 task-1] G0vTPSu6QJKGYqOwW5pHuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ee942b9, base path is set to: null +16:40:10.712 [XNIO-1 task-1] G0vTPSu6QJKGYqOwW5pHuw DEBUG com.networknt.schema.TypeValidator debug - validate( "4ee942b9", "4ee942b9", userId) +16:40:10.714 [XNIO-1 task-1] Vufw8rYNQkWuYqADXaK3bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.714 [XNIO-1 task-1] Vufw8rYNQkWuYqADXaK3bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.715 [XNIO-1 task-1] Vufw8rYNQkWuYqADXaK3bQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.722 [XNIO-1 task-1] jYBF3LKzT9Wk01KUv-y2Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.722 [XNIO-1 task-1] jYBF3LKzT9Wk01KUv-y2Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.722 [XNIO-1 task-1] jYBF3LKzT9Wk01KUv-y2Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.758 [XNIO-1 task-1] wCsTiR7QSiitEIMKok5ddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.758 [XNIO-1 task-1] wCsTiR7QSiitEIMKok5ddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.758 [XNIO-1 task-1] wCsTiR7QSiitEIMKok5ddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.761 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b8d4251c +16:40:10.793 [XNIO-1 task-1] 1dtAZ3pkTQmhF9wG1XovsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/355402a3, base path is set to: null +16:40:10.793 [XNIO-1 task-1] 1dtAZ3pkTQmhF9wG1XovsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.793 [XNIO-1 task-1] 1dtAZ3pkTQmhF9wG1XovsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.793 [XNIO-1 task-1] 1dtAZ3pkTQmhF9wG1XovsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/355402a3, base path is set to: null +16:40:10.793 [XNIO-1 task-1] 1dtAZ3pkTQmhF9wG1XovsA DEBUG com.networknt.schema.TypeValidator debug - validate( "355402a3", "355402a3", userId) +16:40:10.799 [XNIO-1 task-1] J-O-OSjISRG-VV3gQxvDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ee942b9 +16:40:10.800 [XNIO-1 task-1] J-O-OSjISRG-VV3gQxvDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.800 [XNIO-1 task-1] J-O-OSjISRG-VV3gQxvDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.800 [XNIO-1 task-1] J-O-OSjISRG-VV3gQxvDDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ee942b9 +16:40:10.802 [XNIO-1 task-1] gJoBkieLR1-cVcSbAeQCpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ee942b9, base path is set to: null +16:40:10.802 [XNIO-1 task-1] gJoBkieLR1-cVcSbAeQCpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.802 [XNIO-1 task-1] gJoBkieLR1-cVcSbAeQCpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.802 [XNIO-1 task-1] gJoBkieLR1-cVcSbAeQCpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4ee942b9, base path is set to: null +16:40:10.802 [XNIO-1 task-1] gJoBkieLR1-cVcSbAeQCpA DEBUG com.networknt.schema.TypeValidator debug - validate( "4ee942b9", "4ee942b9", userId) +16:40:10.804 [XNIO-1 task-1] 3SjxeHntSommLGNaqyn2fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.804 [XNIO-1 task-1] 3SjxeHntSommLGNaqyn2fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.804 [XNIO-1 task-1] 3SjxeHntSommLGNaqyn2fg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.810 [XNIO-1 task-1] exXKMOlfRymxzOQzERXKVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.810 [XNIO-1 task-1] exXKMOlfRymxzOQzERXKVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.810 [XNIO-1 task-1] exXKMOlfRymxzOQzERXKVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.810 [XNIO-1 task-1] exXKMOlfRymxzOQzERXKVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.835 [XNIO-1 task-1] Qq5ap7_8T-KWX_n9wCuEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ee942b9 +16:40:10.835 [XNIO-1 task-1] Qq5ap7_8T-KWX_n9wCuEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.835 [XNIO-1 task-1] Qq5ap7_8T-KWX_n9wCuEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.835 [XNIO-1 task-1] Qq5ap7_8T-KWX_n9wCuEeg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4ee942b9 +16:40:10.846 [XNIO-1 task-1] xvVjjUDbSgyHew5trtRa2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.846 [XNIO-1 task-1] xvVjjUDbSgyHew5trtRa2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.846 [XNIO-1 task-1] xvVjjUDbSgyHew5trtRa2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.846 [XNIO-1 task-1] xvVjjUDbSgyHew5trtRa2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.899 [XNIO-1 task-1] Tph66tq1T8G4XIsWyiNkMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a54b5d24, base path is set to: null +16:40:10.899 [XNIO-1 task-1] Tph66tq1T8G4XIsWyiNkMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.899 [XNIO-1 task-1] Tph66tq1T8G4XIsWyiNkMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.899 [XNIO-1 task-1] Tph66tq1T8G4XIsWyiNkMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a54b5d24, base path is set to: null +16:40:10.899 [XNIO-1 task-1] Tph66tq1T8G4XIsWyiNkMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a54b5d24", "a54b5d24", userId) +16:40:10.903 [XNIO-1 task-1] sVh25ZCWTyeVoES376RWFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.903 [XNIO-1 task-1] sVh25ZCWTyeVoES376RWFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.903 [XNIO-1 task-1] sVh25ZCWTyeVoES376RWFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.910 [XNIO-1 task-1] b3FGwHa9RF21kjSuWIrYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.910 [XNIO-1 task-1] b3FGwHa9RF21kjSuWIrYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.910 [XNIO-1 task-1] b3FGwHa9RF21kjSuWIrYnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.916 [XNIO-1 task-1] 3ISFJFETQCOcoQtAhOVWMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a54b5d24 +16:40:10.916 [XNIO-1 task-1] 3ISFJFETQCOcoQtAhOVWMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.916 [XNIO-1 task-1] 3ISFJFETQCOcoQtAhOVWMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.916 [XNIO-1 task-1] 3ISFJFETQCOcoQtAhOVWMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a54b5d24 +16:40:10.919 [XNIO-1 task-1] bLk4YPQhQzWV7MgxsLhbXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.919 [XNIO-1 task-1] bLk4YPQhQzWV7MgxsLhbXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.919 [XNIO-1 task-1] bLk4YPQhQzWV7MgxsLhbXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.936 [XNIO-1 task-1] BQCK6Qf5Tau53PiX6ErrDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.936 [XNIO-1 task-1] BQCK6Qf5Tau53PiX6ErrDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.936 [XNIO-1 task-1] BQCK6Qf5Tau53PiX6ErrDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.936 [XNIO-1 task-1] BQCK6Qf5Tau53PiX6ErrDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/412bcf0e, base path is set to: null +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/412bcf0e, base path is set to: null +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG com.networknt.schema.TypeValidator debug - validate( "412bcf0e", "412bcf0e", userId) +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"00a08077-739f-42fe-97c6-b42bf97e9d80","newPassword":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe","newPasswordConfirm":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe"}, {"password":"00a08077-739f-42fe-97c6-b42bf97e9d80","newPassword":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe","newPasswordConfirm":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe"}, requestBody) +16:40:10.941 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG com.networknt.schema.TypeValidator debug - validate( "691ac8b1-4cc6-4bd0-ab12-771ea5984cfe", {"password":"00a08077-739f-42fe-97c6-b42bf97e9d80","newPassword":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe","newPasswordConfirm":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe"}, requestBody.newPasswordConfirm) +16:40:10.942 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG com.networknt.schema.TypeValidator debug - validate( "00a08077-739f-42fe-97c6-b42bf97e9d80", {"password":"00a08077-739f-42fe-97c6-b42bf97e9d80","newPassword":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe","newPasswordConfirm":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe"}, requestBody.password) +16:40:10.942 [XNIO-1 task-1] vHu9VUtjTBCez5LPlW1z4g DEBUG com.networknt.schema.TypeValidator debug - validate( "691ac8b1-4cc6-4bd0-ab12-771ea5984cfe", {"password":"00a08077-739f-42fe-97c6-b42bf97e9d80","newPassword":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe","newPasswordConfirm":"691ac8b1-4cc6-4bd0-ab12-771ea5984cfe"}, requestBody.newPassword) +16:40:10.960 [XNIO-1 task-1] VGrCZ71mQ-2fG9LvZDieTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.960 [XNIO-1 task-1] VGrCZ71mQ-2fG9LvZDieTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.960 [XNIO-1 task-1] VGrCZ71mQ-2fG9LvZDieTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.965 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:996f6e7d-902b-46ba-8578-001a1c935da7 +16:40:10.972 [XNIO-1 task-1] CotR8ZrjS0a0NSkyDDZTAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.972 [XNIO-1 task-1] CotR8ZrjS0a0NSkyDDZTAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.972 [XNIO-1 task-1] CotR8ZrjS0a0NSkyDDZTAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.972 [XNIO-1 task-1] CotR8ZrjS0a0NSkyDDZTAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:10.972 [XNIO-1 task-1] CotR8ZrjS0a0NSkyDDZTAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:10.974 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4bd07d49-5781-410e-b822-36027f6b69ca +16:40:10.979 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a54b5d24 +16:40:10.979 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:10.979 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:10.980 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:10.980 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a54b5d24 +16:40:10.980 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8574ee67-8dea-4457-8634-7927be211a10","newPassword":"0319595a-8414-48dd-9975-8ba84c942d7c","newPasswordConfirm":"0319595a-8414-48dd-9975-8ba84c942d7c"}, {"password":"8574ee67-8dea-4457-8634-7927be211a10","newPassword":"0319595a-8414-48dd-9975-8ba84c942d7c","newPasswordConfirm":"0319595a-8414-48dd-9975-8ba84c942d7c"}, requestBody) +16:40:10.980 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8574ee67-8dea-4457-8634-7927be211a10","newPassword":"0319595a-8414-48dd-9975-8ba84c942d7c","newPasswordConfirm":"0319595a-8414-48dd-9975-8ba84c942d7c"}, {"password":"8574ee67-8dea-4457-8634-7927be211a10","newPassword":"0319595a-8414-48dd-9975-8ba84c942d7c","newPasswordConfirm":"0319595a-8414-48dd-9975-8ba84c942d7c"}, requestBody) +16:40:10.980 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG com.networknt.schema.FormatValidator debug - validate( "0319595a-8414-48dd-9975-8ba84c942d7c", {"password":"8574ee67-8dea-4457-8634-7927be211a10","newPassword":"0319595a-8414-48dd-9975-8ba84c942d7c","newPasswordConfirm":"0319595a-8414-48dd-9975-8ba84c942d7c"}, requestBody.newPasswordConfirm) +16:40:10.980 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG com.networknt.schema.FormatValidator debug - validate( "8574ee67-8dea-4457-8634-7927be211a10", {"password":"8574ee67-8dea-4457-8634-7927be211a10","newPassword":"0319595a-8414-48dd-9975-8ba84c942d7c","newPasswordConfirm":"0319595a-8414-48dd-9975-8ba84c942d7c"}, requestBody.password) +16:40:10.980 [XNIO-1 task-1] M-g3Z9-FQAS_SNBf3ciikg DEBUG com.networknt.schema.FormatValidator debug - validate( "0319595a-8414-48dd-9975-8ba84c942d7c", {"password":"8574ee67-8dea-4457-8634-7927be211a10","newPassword":"0319595a-8414-48dd-9975-8ba84c942d7c","newPasswordConfirm":"0319595a-8414-48dd-9975-8ba84c942d7c"}, requestBody.newPassword) +16:40:10.994 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4729b497 +16:40:10.998 [XNIO-1 task-1] 4cl0Lk9aQmy3LvbNbH1VCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.998 [XNIO-1 task-1] 4cl0Lk9aQmy3LvbNbH1VCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:10.998 [XNIO-1 task-1] 4cl0Lk9aQmy3LvbNbH1VCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:10.998 [XNIO-1 task-1] 4cl0Lk9aQmy3LvbNbH1VCA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.002 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b8d4251c +16:40:11.002 [XNIO-1 task-1] R55-adUnT9yIaDmW8w0_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.002 [XNIO-1 task-1] R55-adUnT9yIaDmW8w0_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.002 [XNIO-1 task-1] R55-adUnT9yIaDmW8w0_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.005 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:996f6e7d-902b-46ba-8578-001a1c935da7 +16:40:11.013 [XNIO-1 task-1] 5JbG_VA2QOCtmiOZmZWcRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a54b5d24 +16:40:11.013 [XNIO-1 task-1] 5JbG_VA2QOCtmiOZmZWcRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.013 [XNIO-1 task-1] 5JbG_VA2QOCtmiOZmZWcRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.013 [XNIO-1 task-1] 5JbG_VA2QOCtmiOZmZWcRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a54b5d24 +16:40:11.015 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a54b5d24, base path is set to: null +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a54b5d24, base path is set to: null +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG com.networknt.schema.TypeValidator debug - validate( "a54b5d24", "a54b5d24", userId) +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0319595a-8414-48dd-9975-8ba84c942d7c","newPassword":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73","newPasswordConfirm":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73"}, {"password":"0319595a-8414-48dd-9975-8ba84c942d7c","newPassword":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73","newPasswordConfirm":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73"}, requestBody) +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG com.networknt.schema.TypeValidator debug - validate( "db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73", {"password":"0319595a-8414-48dd-9975-8ba84c942d7c","newPassword":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73","newPasswordConfirm":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73"}, requestBody.newPasswordConfirm) +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG com.networknt.schema.TypeValidator debug - validate( "0319595a-8414-48dd-9975-8ba84c942d7c", {"password":"0319595a-8414-48dd-9975-8ba84c942d7c","newPassword":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73","newPasswordConfirm":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73"}, requestBody.password) +16:40:11.017 [XNIO-1 task-1] bX-027fLRkaO8BD3sVFfvg DEBUG com.networknt.schema.TypeValidator debug - validate( "db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73", {"password":"0319595a-8414-48dd-9975-8ba84c942d7c","newPassword":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73","newPasswordConfirm":"db42c0b5-8c9f-49ec-b8f9-261ef7b2ef73"}, requestBody.newPassword) +16:40:11.035 [XNIO-1 task-1] l0ZrTML-QWKIFZSFJVChXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.036 [XNIO-1 task-1] l0ZrTML-QWKIFZSFJVChXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.037 [XNIO-1 task-1] l0ZrTML-QWKIFZSFJVChXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.042 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3ee4decb +16:40:11.043 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3ee4decb +16:40:11.054 [XNIO-1 task-1] Ut5B_sHvR6aMX43Rj-wvUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.054 [XNIO-1 task-1] Ut5B_sHvR6aMX43Rj-wvUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.055 [XNIO-1 task-1] Ut5B_sHvR6aMX43Rj-wvUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.055 [XNIO-1 task-1] Ut5B_sHvR6aMX43Rj-wvUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.058 [XNIO-1 task-1] l1piRHoIRCKSBtZ5fzvLmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a54b5d24, base path is set to: null +16:40:11.059 [XNIO-1 task-1] l1piRHoIRCKSBtZ5fzvLmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.059 [XNIO-1 task-1] l1piRHoIRCKSBtZ5fzvLmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.059 [XNIO-1 task-1] l1piRHoIRCKSBtZ5fzvLmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a54b5d24, base path is set to: null +16:40:11.059 [XNIO-1 task-1] l1piRHoIRCKSBtZ5fzvLmg DEBUG com.networknt.schema.TypeValidator debug - validate( "a54b5d24", "a54b5d24", userId) +16:40:11.063 [XNIO-1 task-1] OOuh-ajsQNGZvONM-eBeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.063 [XNIO-1 task-1] OOuh-ajsQNGZvONM-eBeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.063 [XNIO-1 task-1] OOuh-ajsQNGZvONM-eBeJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.079 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3ee4decb +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3ee4decb +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"710ef127-9f56-444f-ad1d-9f8036d4298a","newPassword":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPasswordConfirm":"45edee11-b4dd-40d3-a01b-2ffc88b05674"}, {"password":"710ef127-9f56-444f-ad1d-9f8036d4298a","newPassword":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPasswordConfirm":"45edee11-b4dd-40d3-a01b-2ffc88b05674"}, requestBody) +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"710ef127-9f56-444f-ad1d-9f8036d4298a","newPassword":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPasswordConfirm":"45edee11-b4dd-40d3-a01b-2ffc88b05674"}, {"password":"710ef127-9f56-444f-ad1d-9f8036d4298a","newPassword":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPasswordConfirm":"45edee11-b4dd-40d3-a01b-2ffc88b05674"}, requestBody) +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG com.networknt.schema.FormatValidator debug - validate( "45edee11-b4dd-40d3-a01b-2ffc88b05674", {"password":"710ef127-9f56-444f-ad1d-9f8036d4298a","newPassword":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPasswordConfirm":"45edee11-b4dd-40d3-a01b-2ffc88b05674"}, requestBody.newPasswordConfirm) +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG com.networknt.schema.FormatValidator debug - validate( "710ef127-9f56-444f-ad1d-9f8036d4298a", {"password":"710ef127-9f56-444f-ad1d-9f8036d4298a","newPassword":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPasswordConfirm":"45edee11-b4dd-40d3-a01b-2ffc88b05674"}, requestBody.password) +16:40:11.080 [XNIO-1 task-1] eVRlQOeAS_iFwSj4cYT3fA DEBUG com.networknt.schema.FormatValidator debug - validate( "45edee11-b4dd-40d3-a01b-2ffc88b05674", {"password":"710ef127-9f56-444f-ad1d-9f8036d4298a","newPassword":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPasswordConfirm":"45edee11-b4dd-40d3-a01b-2ffc88b05674"}, requestBody.newPassword) +16:40:11.090 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3ee4decb +16:40:11.097 [XNIO-1 task-1] bnch6Ld-QpeyXaZLlgyteQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.097 [XNIO-1 task-1] bnch6Ld-QpeyXaZLlgyteQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.097 [XNIO-1 task-1] bnch6Ld-QpeyXaZLlgyteQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.097 [XNIO-1 task-1] bnch6Ld-QpeyXaZLlgyteQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.104 [XNIO-1 task-1] EM0efN6rQxqND7z3Fa35wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.104 [XNIO-1 task-1] EM0efN6rQxqND7z3Fa35wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.104 [XNIO-1 task-1] EM0efN6rQxqND7z3Fa35wA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3ee4decb +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3ee4decb +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPassword":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPasswordConfirm":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8"}, {"password":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPassword":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPasswordConfirm":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8"}, requestBody) +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPassword":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPasswordConfirm":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8"}, {"password":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPassword":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPasswordConfirm":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8"}, requestBody) +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8", {"password":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPassword":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPasswordConfirm":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8"}, requestBody.newPasswordConfirm) +16:40:11.121 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG com.networknt.schema.FormatValidator debug - validate( "45edee11-b4dd-40d3-a01b-2ffc88b05674", {"password":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPassword":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPasswordConfirm":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8"}, requestBody.password) +16:40:11.122 [XNIO-1 task-1] k-I18GP3SNKPK2aPc0QynQ DEBUG com.networknt.schema.FormatValidator debug - validate( "bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8", {"password":"45edee11-b4dd-40d3-a01b-2ffc88b05674","newPassword":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPasswordConfirm":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8"}, requestBody.newPassword) +16:40:11.131 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3ee4decb +16:40:11.139 [XNIO-1 task-1] X_M0Rr8-SAa67Ioy5g2g_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.139 [XNIO-1 task-1] X_M0Rr8-SAa67Ioy5g2g_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.140 [XNIO-1 task-1] X_M0Rr8-SAa67Ioy5g2g_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.140 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:3ee4decb +16:40:11.146 [XNIO-1 task-1] u2eN2c2_RHioz380aQXbKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.146 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ccaac653 +16:40:11.147 [XNIO-1 task-1] u2eN2c2_RHioz380aQXbKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.147 [XNIO-1 task-1] u2eN2c2_RHioz380aQXbKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.159 [XNIO-1 task-1] 2G7nmt9yQRa3egwN30KqIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.159 [XNIO-1 task-1] 2G7nmt9yQRa3egwN30KqIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.159 [XNIO-1 task-1] 2G7nmt9yQRa3egwN30KqIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3ee4decb, base path is set to: null +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/3ee4decb, base path is set to: null +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee4decb", "3ee4decb", userId) +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPassword":"6722d545-8d06-43be-9d9c-c39d6838d3ef","newPasswordConfirm":"6722d545-8d06-43be-9d9c-c39d6838d3ef"}, {"password":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPassword":"6722d545-8d06-43be-9d9c-c39d6838d3ef","newPasswordConfirm":"6722d545-8d06-43be-9d9c-c39d6838d3ef"}, requestBody) +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG com.networknt.schema.TypeValidator debug - validate( "6722d545-8d06-43be-9d9c-c39d6838d3ef", {"password":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPassword":"6722d545-8d06-43be-9d9c-c39d6838d3ef","newPasswordConfirm":"6722d545-8d06-43be-9d9c-c39d6838d3ef"}, requestBody.newPasswordConfirm) +16:40:11.176 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG com.networknt.schema.TypeValidator debug - validate( "bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8", {"password":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPassword":"6722d545-8d06-43be-9d9c-c39d6838d3ef","newPasswordConfirm":"6722d545-8d06-43be-9d9c-c39d6838d3ef"}, requestBody.password) +16:40:11.177 [XNIO-1 task-1] vv1pxLTQRzunUVGObMZXkw DEBUG com.networknt.schema.TypeValidator debug - validate( "6722d545-8d06-43be-9d9c-c39d6838d3ef", {"password":"bbcbd92a-6466-4c3c-ab78-020f3eb6a4a8","newPassword":"6722d545-8d06-43be-9d9c-c39d6838d3ef","newPasswordConfirm":"6722d545-8d06-43be-9d9c-c39d6838d3ef"}, requestBody.newPassword) +16:40:11.186 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3ee4decb +16:40:11.188 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4729b497 +16:40:11.194 [XNIO-1 task-1] uy1HV4bfSz2VlD5oj21Zeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.194 [XNIO-1 task-1] uy1HV4bfSz2VlD5oj21Zeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.194 [XNIO-1 task-1] uy1HV4bfSz2VlD5oj21Zeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.202 [XNIO-1 task-1] M441d_gvSJOB5krMJ432Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.202 [XNIO-1 task-1] M441d_gvSJOB5krMJ432Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.202 [XNIO-1 task-1] M441d_gvSJOB5krMJ432Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.217 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07aba125, base path is set to: null +16:40:11.217 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.217 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.217 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.217 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07aba125, base path is set to: null +16:40:11.217 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "07aba125", "07aba125", userId) +16:40:11.217 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"fd2150a8-e40e-4259-842d-ffddc2deedb6","newPassword":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPasswordConfirm":"769298a4-ef7d-4853-8d8c-450a1002f05f"}, {"password":"fd2150a8-e40e-4259-842d-ffddc2deedb6","newPassword":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPasswordConfirm":"769298a4-ef7d-4853-8d8c-450a1002f05f"}, requestBody) +16:40:11.218 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "769298a4-ef7d-4853-8d8c-450a1002f05f", {"password":"fd2150a8-e40e-4259-842d-ffddc2deedb6","newPassword":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPasswordConfirm":"769298a4-ef7d-4853-8d8c-450a1002f05f"}, requestBody.newPasswordConfirm) +16:40:11.218 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fd2150a8-e40e-4259-842d-ffddc2deedb6", {"password":"fd2150a8-e40e-4259-842d-ffddc2deedb6","newPassword":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPasswordConfirm":"769298a4-ef7d-4853-8d8c-450a1002f05f"}, requestBody.password) +16:40:11.218 [XNIO-1 task-1] 7B8J5HBGQjeKHHpXYu3_VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "769298a4-ef7d-4853-8d8c-450a1002f05f", {"password":"fd2150a8-e40e-4259-842d-ffddc2deedb6","newPassword":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPasswordConfirm":"769298a4-ef7d-4853-8d8c-450a1002f05f"}, requestBody.newPassword) +16:40:11.237 [XNIO-1 task-1] nwB891nyRFecG5zlYiPj3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.237 [XNIO-1 task-1] nwB891nyRFecG5zlYiPj3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.237 [XNIO-1 task-1] nwB891nyRFecG5zlYiPj3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.253 [XNIO-1 task-1] TejkoKW-TyC21KgihXSOCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.253 [XNIO-1 task-1] TejkoKW-TyC21KgihXSOCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.253 [XNIO-1 task-1] TejkoKW-TyC21KgihXSOCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.254 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:3ee4decb +16:40:11.255 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ccaac653 +16:40:11.259 [XNIO-1 task-1] uzwOyI-oTsCZnaGY8FAs5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.259 [XNIO-1 task-1] uzwOyI-oTsCZnaGY8FAs5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.260 [XNIO-1 task-1] uzwOyI-oTsCZnaGY8FAs5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07aba125, base path is set to: null +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07aba125, base path is set to: null +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "07aba125", "07aba125", userId) +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPassword":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPasswordConfirm":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a"}, {"password":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPassword":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPasswordConfirm":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a"}, requestBody) +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ae71a3d9-9b61-45bd-9b39-de23daa0ec4a", {"password":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPassword":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPasswordConfirm":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a"}, requestBody.newPasswordConfirm) +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "769298a4-ef7d-4853-8d8c-450a1002f05f", {"password":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPassword":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPasswordConfirm":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a"}, requestBody.password) +16:40:11.279 [XNIO-1 task-1] XwvFcOP1QIuXvrAC6ns0OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ae71a3d9-9b61-45bd-9b39-de23daa0ec4a", {"password":"769298a4-ef7d-4853-8d8c-450a1002f05f","newPassword":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPasswordConfirm":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a"}, requestBody.newPassword) +16:40:11.299 [XNIO-1 task-1] leg8STftSwipY2fniQbC9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.299 [XNIO-1 task-1] leg8STftSwipY2fniQbC9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.299 [XNIO-1 task-1] leg8STftSwipY2fniQbC9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.299 [XNIO-1 task-1] leg8STftSwipY2fniQbC9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.302 [XNIO-1 task-1] TctyamRJTbyZwxiMmxHR_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.302 [XNIO-1 task-1] TctyamRJTbyZwxiMmxHR_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.302 [XNIO-1 task-1] TctyamRJTbyZwxiMmxHR_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.302 [XNIO-1 task-1] TctyamRJTbyZwxiMmxHR_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.306 [XNIO-1 task-1] jrRrmSTCT4OAg9hb_1qixg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3cc03a, base path is set to: null +16:40:11.307 [XNIO-1 task-1] jrRrmSTCT4OAg9hb_1qixg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.307 [XNIO-1 task-1] jrRrmSTCT4OAg9hb_1qixg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.307 [XNIO-1 task-1] jrRrmSTCT4OAg9hb_1qixg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3cc03a, base path is set to: null +16:40:11.307 [XNIO-1 task-1] jrRrmSTCT4OAg9hb_1qixg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb3cc03a", "cb3cc03a", userId) +16:40:11.310 [XNIO-1 task-1] uPizQCUGSjOm-TBnP-EwAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a54b5d24 +16:40:11.310 [XNIO-1 task-1] uPizQCUGSjOm-TBnP-EwAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.310 [XNIO-1 task-1] uPizQCUGSjOm-TBnP-EwAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.310 [XNIO-1 task-1] uPizQCUGSjOm-TBnP-EwAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a54b5d24 +16:40:11.318 [XNIO-1 task-1] CQE9DEPRQgiOtuhYQkS3QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.318 [XNIO-1 task-1] CQE9DEPRQgiOtuhYQkS3QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.318 [XNIO-1 task-1] CQE9DEPRQgiOtuhYQkS3QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.318 [XNIO-1 task-1] CQE9DEPRQgiOtuhYQkS3QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.323 [XNIO-1 task-1] Bpn7D3wuSq-p_SPuAPpnEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.323 [XNIO-1 task-1] Bpn7D3wuSq-p_SPuAPpnEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.323 [XNIO-1 task-1] Bpn7D3wuSq-p_SPuAPpnEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.329 [XNIO-1 task-1] E-BaFoubT0yMVvebZswt3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3ee4decb, base path is set to: null +16:40:11.330 [XNIO-1 task-1] E-BaFoubT0yMVvebZswt3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.330 [XNIO-1 task-1] E-BaFoubT0yMVvebZswt3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.330 [XNIO-1 task-1] E-BaFoubT0yMVvebZswt3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3ee4decb, base path is set to: null +16:40:11.330 [XNIO-1 task-1] E-BaFoubT0yMVvebZswt3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "3ee4decb", "3ee4decb", userId) +16:40:11.337 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9b2ab305 +16:40:11.338 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9b2ab305 +16:40:11.339 [XNIO-1 task-1] M6wo1n2ARLOVgYqTfpXGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07aba125 +16:40:11.339 [XNIO-1 task-1] M6wo1n2ARLOVgYqTfpXGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.339 [XNIO-1 task-1] M6wo1n2ARLOVgYqTfpXGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.339 [XNIO-1 task-1] M6wo1n2ARLOVgYqTfpXGLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07aba125 +16:40:11.346 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07aba125, base path is set to: null +16:40:11.346 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.346 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.346 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.346 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/07aba125, base path is set to: null +16:40:11.346 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG com.networknt.schema.TypeValidator debug - validate( "07aba125", "07aba125", userId) +16:40:11.347 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPassword":"a3971761-35c8-48c7-bde1-615f391f28a7","newPasswordConfirm":"a3971761-35c8-48c7-bde1-615f391f28a7"}, {"password":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPassword":"a3971761-35c8-48c7-bde1-615f391f28a7","newPasswordConfirm":"a3971761-35c8-48c7-bde1-615f391f28a7"}, requestBody) +16:40:11.347 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG com.networknt.schema.TypeValidator debug - validate( "a3971761-35c8-48c7-bde1-615f391f28a7", {"password":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPassword":"a3971761-35c8-48c7-bde1-615f391f28a7","newPasswordConfirm":"a3971761-35c8-48c7-bde1-615f391f28a7"}, requestBody.newPasswordConfirm) +16:40:11.347 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG com.networknt.schema.TypeValidator debug - validate( "ae71a3d9-9b61-45bd-9b39-de23daa0ec4a", {"password":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPassword":"a3971761-35c8-48c7-bde1-615f391f28a7","newPasswordConfirm":"a3971761-35c8-48c7-bde1-615f391f28a7"}, requestBody.password) +16:40:11.347 [XNIO-1 task-1] oSUdeLMrS8SfgV61zknXJg DEBUG com.networknt.schema.TypeValidator debug - validate( "a3971761-35c8-48c7-bde1-615f391f28a7", {"password":"ae71a3d9-9b61-45bd-9b39-de23daa0ec4a","newPassword":"a3971761-35c8-48c7-bde1-615f391f28a7","newPasswordConfirm":"a3971761-35c8-48c7-bde1-615f391f28a7"}, requestBody.newPassword) +16:40:11.354 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9b2ab305 +16:40:11.365 [XNIO-1 task-1] m87Ab8LHQ6CgbsBS44szfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.365 [XNIO-1 task-1] m87Ab8LHQ6CgbsBS44szfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.366 [XNIO-1 task-1] m87Ab8LHQ6CgbsBS44szfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.374 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb3cc03a, base path is set to: null +16:40:11.375 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.375 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.375 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.375 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb3cc03a, base path is set to: null +16:40:11.375 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb3cc03a", "cb3cc03a", userId) +16:40:11.375 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"77c24472-4f36-4b0c-8f4f-1bd27c53fd6b","newPassword":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPasswordConfirm":"5f2e3150-dac2-4996-ba1b-0b5df07a935e"}, {"password":"77c24472-4f36-4b0c-8f4f-1bd27c53fd6b","newPassword":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPasswordConfirm":"5f2e3150-dac2-4996-ba1b-0b5df07a935e"}, requestBody) +16:40:11.376 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f2e3150-dac2-4996-ba1b-0b5df07a935e", {"password":"77c24472-4f36-4b0c-8f4f-1bd27c53fd6b","newPassword":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPasswordConfirm":"5f2e3150-dac2-4996-ba1b-0b5df07a935e"}, requestBody.newPasswordConfirm) +16:40:11.376 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "77c24472-4f36-4b0c-8f4f-1bd27c53fd6b", {"password":"77c24472-4f36-4b0c-8f4f-1bd27c53fd6b","newPassword":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPasswordConfirm":"5f2e3150-dac2-4996-ba1b-0b5df07a935e"}, requestBody.password) +16:40:11.376 [XNIO-1 task-1] VoUVXHwwQlm7_gI4Ap6_bw DEBUG com.networknt.schema.TypeValidator debug - validate( "5f2e3150-dac2-4996-ba1b-0b5df07a935e", {"password":"77c24472-4f36-4b0c-8f4f-1bd27c53fd6b","newPassword":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPasswordConfirm":"5f2e3150-dac2-4996-ba1b-0b5df07a935e"}, requestBody.newPassword) +16:40:11.393 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb3cc03a, base path is set to: null +16:40:11.393 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.393 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.393 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.393 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/cb3cc03a, base path is set to: null +16:40:11.393 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb3cc03a", "cb3cc03a", userId) +16:40:11.393 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPassword":"9aaf4708-de5e-4953-a016-98504a505b0f","newPasswordConfirm":"9aaf4708-de5e-4953-a016-98504a505b0f"}, {"password":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPassword":"9aaf4708-de5e-4953-a016-98504a505b0f","newPasswordConfirm":"9aaf4708-de5e-4953-a016-98504a505b0f"}, requestBody) +16:40:11.394 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG com.networknt.schema.TypeValidator debug - validate( "9aaf4708-de5e-4953-a016-98504a505b0f", {"password":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPassword":"9aaf4708-de5e-4953-a016-98504a505b0f","newPasswordConfirm":"9aaf4708-de5e-4953-a016-98504a505b0f"}, requestBody.newPasswordConfirm) +16:40:11.394 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG com.networknt.schema.TypeValidator debug - validate( "5f2e3150-dac2-4996-ba1b-0b5df07a935e", {"password":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPassword":"9aaf4708-de5e-4953-a016-98504a505b0f","newPasswordConfirm":"9aaf4708-de5e-4953-a016-98504a505b0f"}, requestBody.password) +16:40:11.394 [XNIO-1 task-1] tUk90o8sSbGVQ5bdsu_Ehg DEBUG com.networknt.schema.TypeValidator debug - validate( "9aaf4708-de5e-4953-a016-98504a505b0f", {"password":"5f2e3150-dac2-4996-ba1b-0b5df07a935e","newPassword":"9aaf4708-de5e-4953-a016-98504a505b0f","newPasswordConfirm":"9aaf4708-de5e-4953-a016-98504a505b0f"}, requestBody.newPassword) +16:40:11.410 [XNIO-1 task-1] 3wCAmBboRGyvA-_lGCYCmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.410 [XNIO-1 task-1] 3wCAmBboRGyvA-_lGCYCmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.410 [XNIO-1 task-1] 3wCAmBboRGyvA-_lGCYCmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.418 [XNIO-1 task-1] 20L0ZqfAQMCSvZ-1enb_hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.418 [XNIO-1 task-1] 20L0ZqfAQMCSvZ-1enb_hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.418 [XNIO-1 task-1] 20L0ZqfAQMCSvZ-1enb_hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.425 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0927c49a +16:40:11.426 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0927c49a +16:40:11.431 [XNIO-1 task-1] ffqAupTKSk2YKbdCHuGntg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e889c103 +16:40:11.432 [XNIO-1 task-1] ffqAupTKSk2YKbdCHuGntg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.432 [XNIO-1 task-1] ffqAupTKSk2YKbdCHuGntg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.432 [XNIO-1 task-1] ffqAupTKSk2YKbdCHuGntg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e889c103 +16:40:11.435 [XNIO-1 task-1] hj4bvRjeT0exgtOzKX9iVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/412bcf0e, base path is set to: null +16:40:11.436 [XNIO-1 task-1] hj4bvRjeT0exgtOzKX9iVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.436 [XNIO-1 task-1] hj4bvRjeT0exgtOzKX9iVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.436 [XNIO-1 task-1] hj4bvRjeT0exgtOzKX9iVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/412bcf0e, base path is set to: null +16:40:11.436 [XNIO-1 task-1] hj4bvRjeT0exgtOzKX9iVA DEBUG com.networknt.schema.TypeValidator debug - validate( "412bcf0e", "412bcf0e", userId) +16:40:11.439 [XNIO-1 task-1] BmRmXZnISMiOhyLt2VqCLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.439 [XNIO-1 task-1] BmRmXZnISMiOhyLt2VqCLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.439 [XNIO-1 task-1] BmRmXZnISMiOhyLt2VqCLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.439 [XNIO-1 task-1] BmRmXZnISMiOhyLt2VqCLg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:11.444 [XNIO-1 task-1] Q4a7tMRaRj-AY5-O2QW3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1af8f4ba +16:40:11.444 [XNIO-1 task-1] Q4a7tMRaRj-AY5-O2QW3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.444 [XNIO-1 task-1] Q4a7tMRaRj-AY5-O2QW3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.444 [XNIO-1 task-1] Q4a7tMRaRj-AY5-O2QW3vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1af8f4ba +16:40:11.450 [XNIO-1 task-1] U4ZvAGCwSZmpKzEU4Jr-Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.450 [XNIO-1 task-1] U4ZvAGCwSZmpKzEU4Jr-Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.450 [XNIO-1 task-1] U4ZvAGCwSZmpKzEU4Jr-Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.450 [XNIO-1 task-1] U4ZvAGCwSZmpKzEU4Jr-Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.456 [XNIO-1 task-1] 8Uz-cM7sTFaVlUrZ-I1EsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.456 [XNIO-1 task-1] 8Uz-cM7sTFaVlUrZ-I1EsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.456 [XNIO-1 task-1] 8Uz-cM7sTFaVlUrZ-I1EsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.456 [XNIO-1 task-1] 8Uz-cM7sTFaVlUrZ-I1EsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.458 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0029f2bd, base path is set to: null +16:40:11.459 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.459 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.459 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.459 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0029f2bd, base path is set to: null +16:40:11.459 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG com.networknt.schema.TypeValidator debug - validate( "0029f2bd", "0029f2bd", userId) +16:40:11.460 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"0f54b723-157d-4efa-88a0-1bda52884ca4","newPassword":"2eb162bc-d764-4d0b-942e-08742462b3b0","newPasswordConfirm":"2eb162bc-d764-4d0b-942e-08742462b3b0"}, {"password":"0f54b723-157d-4efa-88a0-1bda52884ca4","newPassword":"2eb162bc-d764-4d0b-942e-08742462b3b0","newPasswordConfirm":"2eb162bc-d764-4d0b-942e-08742462b3b0"}, requestBody) +16:40:11.460 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG com.networknt.schema.TypeValidator debug - validate( "2eb162bc-d764-4d0b-942e-08742462b3b0", {"password":"0f54b723-157d-4efa-88a0-1bda52884ca4","newPassword":"2eb162bc-d764-4d0b-942e-08742462b3b0","newPasswordConfirm":"2eb162bc-d764-4d0b-942e-08742462b3b0"}, requestBody.newPasswordConfirm) +16:40:11.460 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG com.networknt.schema.TypeValidator debug - validate( "0f54b723-157d-4efa-88a0-1bda52884ca4", {"password":"0f54b723-157d-4efa-88a0-1bda52884ca4","newPassword":"2eb162bc-d764-4d0b-942e-08742462b3b0","newPasswordConfirm":"2eb162bc-d764-4d0b-942e-08742462b3b0"}, requestBody.password) +16:40:11.460 [XNIO-1 task-1] 3-UOMLkqQhe4RlLLJpAZlg DEBUG com.networknt.schema.TypeValidator debug - validate( "2eb162bc-d764-4d0b-942e-08742462b3b0", {"password":"0f54b723-157d-4efa-88a0-1bda52884ca4","newPassword":"2eb162bc-d764-4d0b-942e-08742462b3b0","newPasswordConfirm":"2eb162bc-d764-4d0b-942e-08742462b3b0"}, requestBody.newPassword) +16:40:11.480 [XNIO-1 task-1] s7_vQ0PvRo2yLK5OI7n7VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/408cd792, base path is set to: null +16:40:11.481 [XNIO-1 task-1] s7_vQ0PvRo2yLK5OI7n7VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.481 [XNIO-1 task-1] s7_vQ0PvRo2yLK5OI7n7VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.481 [XNIO-1 task-1] s7_vQ0PvRo2yLK5OI7n7VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/408cd792, base path is set to: null +16:40:11.481 [XNIO-1 task-1] s7_vQ0PvRo2yLK5OI7n7VA DEBUG com.networknt.schema.TypeValidator debug - validate( "408cd792", "408cd792", userId) +16:40:11.488 [XNIO-1 task-1] QKtBOibrTNiiyvYEZEesJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0029f2bd +16:40:11.488 [XNIO-1 task-1] QKtBOibrTNiiyvYEZEesJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.488 [XNIO-1 task-1] QKtBOibrTNiiyvYEZEesJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.488 [XNIO-1 task-1] QKtBOibrTNiiyvYEZEesJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0029f2bd +16:40:11.495 [XNIO-1 task-1] _6kknyqoSLu9bBWZKQzb-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.495 [XNIO-1 task-1] _6kknyqoSLu9bBWZKQzb-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.495 [XNIO-1 task-1] _6kknyqoSLu9bBWZKQzb-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.495 [XNIO-1 task-1] _6kknyqoSLu9bBWZKQzb-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.499 [XNIO-1 task-1] 6aoFkWTAQxiw9__NM5kDRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.499 [XNIO-1 task-1] 6aoFkWTAQxiw9__NM5kDRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.499 [XNIO-1 task-1] 6aoFkWTAQxiw9__NM5kDRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.511 [XNIO-1 task-1] b1Cs6mbqSdGy2yA3Ekvzyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.512 [XNIO-1 task-1] b1Cs6mbqSdGy2yA3Ekvzyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.512 [XNIO-1 task-1] b1Cs6mbqSdGy2yA3Ekvzyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.512 [XNIO-1 task-1] b1Cs6mbqSdGy2yA3Ekvzyw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.520 [XNIO-1 task-1] IrNutQ7mSg2k3_vC704ZlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.520 [XNIO-1 task-1] IrNutQ7mSg2k3_vC704ZlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.521 [XNIO-1 task-1] IrNutQ7mSg2k3_vC704ZlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.553 [XNIO-1 task-1] 0Kv4cCZ6RkOcWUcGgYRxVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.554 [XNIO-1 task-1] 0Kv4cCZ6RkOcWUcGgYRxVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.554 [XNIO-1 task-1] 0Kv4cCZ6RkOcWUcGgYRxVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.560 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ccaac653 +16:40:11.566 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0927c49a, base path is set to: null +16:40:11.566 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.566 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.566 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.566 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/0927c49a, base path is set to: null +16:40:11.566 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0927c49a", "0927c49a", userId) +16:40:11.567 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"69256c5c-6d15-4a6f-833d-38e5617ddbf8","newPassword":"d7a42f8f-2803-4649-8a32-cd3010e823a9","newPasswordConfirm":"d7a42f8f-2803-4649-8a32-cd3010e823a9"}, {"password":"69256c5c-6d15-4a6f-833d-38e5617ddbf8","newPassword":"d7a42f8f-2803-4649-8a32-cd3010e823a9","newPasswordConfirm":"d7a42f8f-2803-4649-8a32-cd3010e823a9"}, requestBody) +16:40:11.567 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d7a42f8f-2803-4649-8a32-cd3010e823a9", {"password":"69256c5c-6d15-4a6f-833d-38e5617ddbf8","newPassword":"d7a42f8f-2803-4649-8a32-cd3010e823a9","newPasswordConfirm":"d7a42f8f-2803-4649-8a32-cd3010e823a9"}, requestBody.newPasswordConfirm) +16:40:11.567 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "69256c5c-6d15-4a6f-833d-38e5617ddbf8", {"password":"69256c5c-6d15-4a6f-833d-38e5617ddbf8","newPassword":"d7a42f8f-2803-4649-8a32-cd3010e823a9","newPasswordConfirm":"d7a42f8f-2803-4649-8a32-cd3010e823a9"}, requestBody.password) +16:40:11.567 [XNIO-1 task-1] Z_ygl8fGT2izhEUDCEor-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d7a42f8f-2803-4649-8a32-cd3010e823a9", {"password":"69256c5c-6d15-4a6f-833d-38e5617ddbf8","newPassword":"d7a42f8f-2803-4649-8a32-cd3010e823a9","newPasswordConfirm":"d7a42f8f-2803-4649-8a32-cd3010e823a9"}, requestBody.newPassword) +16:40:11.576 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0927c49a +16:40:11.581 [XNIO-1 task-1] c5cf4HcBR8W5MxIQ51w_0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.581 [XNIO-1 task-1] c5cf4HcBR8W5MxIQ51w_0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.581 [XNIO-1 task-1] c5cf4HcBR8W5MxIQ51w_0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.581 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0927c49a +16:40:11.600 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9b2ab305 +16:40:11.601 [XNIO-1 task-1] bOsGH-s6SuqJQwrkW8omFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3cc03a, base path is set to: null +16:40:11.601 [XNIO-1 task-1] bOsGH-s6SuqJQwrkW8omFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.601 [XNIO-1 task-1] bOsGH-s6SuqJQwrkW8omFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.601 [XNIO-1 task-1] bOsGH-s6SuqJQwrkW8omFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/cb3cc03a, base path is set to: null +16:40:11.601 [XNIO-1 task-1] bOsGH-s6SuqJQwrkW8omFw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb3cc03a", "cb3cc03a", userId) +16:40:11.609 [XNIO-1 task-1] _JZROOy7T1Ks4ZImrSAGaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/412bcf0e +16:40:11.609 [XNIO-1 task-1] _JZROOy7T1Ks4ZImrSAGaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.609 [XNIO-1 task-1] _JZROOy7T1Ks4ZImrSAGaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.609 [XNIO-1 task-1] _JZROOy7T1Ks4ZImrSAGaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/412bcf0e +16:40:11.615 [XNIO-1 task-1] WykeDRNgSB2VWePpX0A_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.615 [XNIO-1 task-1] WykeDRNgSB2VWePpX0A_Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.616 [XNIO-1 task-1] WykeDRNgSB2VWePpX0A_Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.625 [XNIO-1 task-1] 2RIrrXXoSxyiCd5oKcqByQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0029f2bd, base path is set to: null +16:40:11.625 [XNIO-1 task-1] 2RIrrXXoSxyiCd5oKcqByQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.626 [XNIO-1 task-1] 2RIrrXXoSxyiCd5oKcqByQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.626 [XNIO-1 task-1] 2RIrrXXoSxyiCd5oKcqByQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0029f2bd, base path is set to: null +16:40:11.626 [XNIO-1 task-1] 2RIrrXXoSxyiCd5oKcqByQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0029f2bd", "0029f2bd", userId) +16:40:11.635 [XNIO-1 task-1] 4-yfmOWzSG2L5Qp_Azzybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/893a67c2 +16:40:11.635 [XNIO-1 task-1] 4-yfmOWzSG2L5Qp_Azzybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.635 [XNIO-1 task-1] 4-yfmOWzSG2L5Qp_Azzybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.635 [XNIO-1 task-1] 4-yfmOWzSG2L5Qp_Azzybw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/893a67c2 +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e889c103, base path is set to: null +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e889c103, base path is set to: null +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG com.networknt.schema.TypeValidator debug - validate( "e889c103", "e889c103", userId) +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f54318e8-2a0c-47d6-a902-8018ce370716","newPassword":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPasswordConfirm":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11"}, {"password":"f54318e8-2a0c-47d6-a902-8018ce370716","newPassword":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPasswordConfirm":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11"}, requestBody) +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG com.networknt.schema.TypeValidator debug - validate( "dbd27deb-cea7-4c54-ad57-9a2d9fb66f11", {"password":"f54318e8-2a0c-47d6-a902-8018ce370716","newPassword":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPasswordConfirm":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11"}, requestBody.newPasswordConfirm) +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54318e8-2a0c-47d6-a902-8018ce370716", {"password":"f54318e8-2a0c-47d6-a902-8018ce370716","newPassword":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPasswordConfirm":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11"}, requestBody.password) +16:40:11.642 [XNIO-1 task-1] FxI5WhWEQ-6H7HqQGLGjcw DEBUG com.networknt.schema.TypeValidator debug - validate( "dbd27deb-cea7-4c54-ad57-9a2d9fb66f11", {"password":"f54318e8-2a0c-47d6-a902-8018ce370716","newPassword":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPasswordConfirm":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11"}, requestBody.newPassword) +16:40:11.648 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa7dd748 +16:40:11.648 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fa7dd748 +16:40:11.663 [XNIO-1 task-1] vPJofRdJQza87VnjYzOlNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.663 [XNIO-1 task-1] vPJofRdJQza87VnjYzOlNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.663 [XNIO-1 task-1] vPJofRdJQza87VnjYzOlNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.677 [XNIO-1 task-1] KljnQ0-5R2ysDdeWmuHeGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e889c103 +16:40:11.677 [XNIO-1 task-1] KljnQ0-5R2ysDdeWmuHeGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.677 [XNIO-1 task-1] KljnQ0-5R2ysDdeWmuHeGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.677 [XNIO-1 task-1] KljnQ0-5R2ysDdeWmuHeGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e889c103 +16:40:11.682 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e889c103, base path is set to: null +16:40:11.682 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e889c103, base path is set to: null +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG com.networknt.schema.TypeValidator debug - validate( "e889c103", "e889c103", userId) +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPassword":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPasswordConfirm":"a214569c-55cd-4dbf-ae71-1d60e13ca693"}, {"password":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPassword":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPasswordConfirm":"a214569c-55cd-4dbf-ae71-1d60e13ca693"}, requestBody) +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG com.networknt.schema.TypeValidator debug - validate( "a214569c-55cd-4dbf-ae71-1d60e13ca693", {"password":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPassword":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPasswordConfirm":"a214569c-55cd-4dbf-ae71-1d60e13ca693"}, requestBody.newPasswordConfirm) +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG com.networknt.schema.TypeValidator debug - validate( "dbd27deb-cea7-4c54-ad57-9a2d9fb66f11", {"password":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPassword":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPasswordConfirm":"a214569c-55cd-4dbf-ae71-1d60e13ca693"}, requestBody.password) +16:40:11.683 [XNIO-1 task-1] VP83HNjLTua3u9oVJK1knw DEBUG com.networknt.schema.TypeValidator debug - validate( "a214569c-55cd-4dbf-ae71-1d60e13ca693", {"password":"dbd27deb-cea7-4c54-ad57-9a2d9fb66f11","newPassword":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPasswordConfirm":"a214569c-55cd-4dbf-ae71-1d60e13ca693"}, requestBody.newPassword) +16:40:11.733 [XNIO-1 task-1] UzM1DHlGR3yvgSErCs_Q2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/07aba125, base path is set to: null +16:40:11.734 [XNIO-1 task-1] UzM1DHlGR3yvgSErCs_Q2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.734 [XNIO-1 task-1] UzM1DHlGR3yvgSErCs_Q2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.734 [XNIO-1 task-1] UzM1DHlGR3yvgSErCs_Q2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/07aba125, base path is set to: null +16:40:11.734 [XNIO-1 task-1] UzM1DHlGR3yvgSErCs_Q2A DEBUG com.networknt.schema.TypeValidator debug - validate( "07aba125", "07aba125", userId) +16:40:11.738 [XNIO-1 task-1] wBWx_ATqRkq6b5djgXexuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07aba125 +16:40:11.738 [XNIO-1 task-1] wBWx_ATqRkq6b5djgXexuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.738 [XNIO-1 task-1] wBWx_ATqRkq6b5djgXexuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.738 [XNIO-1 task-1] wBWx_ATqRkq6b5djgXexuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/07aba125 +16:40:11.750 [XNIO-1 task-1] UYOnXXaxR36hbChIwP-nRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.750 [XNIO-1 task-1] UYOnXXaxR36hbChIwP-nRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.750 [XNIO-1 task-1] UYOnXXaxR36hbChIwP-nRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.777 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e889c103, base path is set to: null +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e889c103, base path is set to: null +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG com.networknt.schema.TypeValidator debug - validate( "e889c103", "e889c103", userId) +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPassword":"7b635c2b-2a7e-46cf-8d92-1ea14e457203","newPasswordConfirm":"7b635c2b-2a7e-46cf-8d92-1ea14e457203"}, {"password":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPassword":"7b635c2b-2a7e-46cf-8d92-1ea14e457203","newPasswordConfirm":"7b635c2b-2a7e-46cf-8d92-1ea14e457203"}, requestBody) +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG com.networknt.schema.TypeValidator debug - validate( "7b635c2b-2a7e-46cf-8d92-1ea14e457203", {"password":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPassword":"7b635c2b-2a7e-46cf-8d92-1ea14e457203","newPasswordConfirm":"7b635c2b-2a7e-46cf-8d92-1ea14e457203"}, requestBody.newPasswordConfirm) +16:40:11.778 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG com.networknt.schema.TypeValidator debug - validate( "a214569c-55cd-4dbf-ae71-1d60e13ca693", {"password":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPassword":"7b635c2b-2a7e-46cf-8d92-1ea14e457203","newPasswordConfirm":"7b635c2b-2a7e-46cf-8d92-1ea14e457203"}, requestBody.password) +16:40:11.779 [XNIO-1 task-1] wrkJzRduRP-8ge2VZFucag DEBUG com.networknt.schema.TypeValidator debug - validate( "7b635c2b-2a7e-46cf-8d92-1ea14e457203", {"password":"a214569c-55cd-4dbf-ae71-1d60e13ca693","newPassword":"7b635c2b-2a7e-46cf-8d92-1ea14e457203","newPasswordConfirm":"7b635c2b-2a7e-46cf-8d92-1ea14e457203"}, requestBody.newPassword) +16:40:11.779 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fa7dd748 +16:40:11.800 [XNIO-1 task-1] 4rxXueYEQNGXuv6VICCx8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.800 [XNIO-1 task-1] 4rxXueYEQNGXuv6VICCx8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.801 [XNIO-1 task-1] 4rxXueYEQNGXuv6VICCx8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.831 [XNIO-1 task-1] bb1K4_KmQCCnFbpxiV42-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e889c103, base path is set to: null +16:40:11.831 [XNIO-1 task-1] bb1K4_KmQCCnFbpxiV42-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.831 [XNIO-1 task-1] bb1K4_KmQCCnFbpxiV42-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.831 [XNIO-1 task-1] bb1K4_KmQCCnFbpxiV42-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e889c103, base path is set to: null +16:40:11.831 [XNIO-1 task-1] bb1K4_KmQCCnFbpxiV42-A DEBUG com.networknt.schema.TypeValidator debug - validate( "e889c103", "e889c103", userId) +16:40:11.837 [XNIO-1 task-1] 3BHI8KcLQDWRs-__IZugKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/838813d1 +16:40:11.837 [XNIO-1 task-1] 3BHI8KcLQDWRs-__IZugKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.837 [XNIO-1 task-1] 3BHI8KcLQDWRs-__IZugKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.837 [XNIO-1 task-1] 3BHI8KcLQDWRs-__IZugKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/838813d1 +16:40:11.844 [XNIO-1 task-1] Vazq4-dNTy6EexYslOaJ9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.844 [XNIO-1 task-1] Vazq4-dNTy6EexYslOaJ9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.844 [XNIO-1 task-1] Vazq4-dNTy6EexYslOaJ9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:11.844 [XNIO-1 task-1] Vazq4-dNTy6EexYslOaJ9w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:11.854 [XNIO-1 task-1] bHUAH2TERCSPpUBkKJyAPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49c75ce7, base path is set to: null +16:40:11.854 [XNIO-1 task-1] bHUAH2TERCSPpUBkKJyAPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.854 [XNIO-1 task-1] bHUAH2TERCSPpUBkKJyAPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.854 [XNIO-1 task-1] bHUAH2TERCSPpUBkKJyAPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49c75ce7, base path is set to: null +16:40:11.854 [XNIO-1 task-1] bHUAH2TERCSPpUBkKJyAPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "49c75ce7", "49c75ce7", userId) +16:40:11.875 [XNIO-1 task-1] NnSPEVu4QFCe3_9EIzm31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/49c75ce7 +16:40:11.875 [XNIO-1 task-1] NnSPEVu4QFCe3_9EIzm31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.875 [XNIO-1 task-1] NnSPEVu4QFCe3_9EIzm31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.875 [XNIO-1 task-1] NnSPEVu4QFCe3_9EIzm31w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/49c75ce7 +16:40:11.898 [XNIO-1 task-1] d8F3hexGQHiK6lYtOIG8Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49c75ce7, base path is set to: null +16:40:11.898 [XNIO-1 task-1] d8F3hexGQHiK6lYtOIG8Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:11.898 [XNIO-1 task-1] d8F3hexGQHiK6lYtOIG8Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:11.898 [XNIO-1 task-1] d8F3hexGQHiK6lYtOIG8Uw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/49c75ce7, base path is set to: null +16:40:11.898 [XNIO-1 task-1] d8F3hexGQHiK6lYtOIG8Uw DEBUG com.networknt.schema.TypeValidator debug - validate( "49c75ce7", "49c75ce7", userId) +16:40:11.946 [XNIO-1 task-1] lT99qkNFRGWnPIImGwQZgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0927c49a +16:40:11.946 [XNIO-1 task-1] lT99qkNFRGWnPIImGwQZgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.946 [XNIO-1 task-1] lT99qkNFRGWnPIImGwQZgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.946 [XNIO-1 task-1] lT99qkNFRGWnPIImGwQZgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0927c49a +16:40:11.946 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:0927c49a +16:40:11.952 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:11.952 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.952 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.952 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:11.952 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:11.952 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"36e3c2a4-35d3-4431-9c73-45e0e3a1de01","newPassword":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPasswordConfirm":"870cb7e0-005f-4398-807f-b2bc86fb4ce2"}, {"password":"36e3c2a4-35d3-4431-9c73-45e0e3a1de01","newPassword":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPasswordConfirm":"870cb7e0-005f-4398-807f-b2bc86fb4ce2"}, requestBody) +16:40:11.953 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"36e3c2a4-35d3-4431-9c73-45e0e3a1de01","newPassword":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPasswordConfirm":"870cb7e0-005f-4398-807f-b2bc86fb4ce2"}, {"password":"36e3c2a4-35d3-4431-9c73-45e0e3a1de01","newPassword":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPasswordConfirm":"870cb7e0-005f-4398-807f-b2bc86fb4ce2"}, requestBody) +16:40:11.953 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "870cb7e0-005f-4398-807f-b2bc86fb4ce2", {"password":"36e3c2a4-35d3-4431-9c73-45e0e3a1de01","newPassword":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPasswordConfirm":"870cb7e0-005f-4398-807f-b2bc86fb4ce2"}, requestBody.newPasswordConfirm) +16:40:11.953 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "36e3c2a4-35d3-4431-9c73-45e0e3a1de01", {"password":"36e3c2a4-35d3-4431-9c73-45e0e3a1de01","newPassword":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPasswordConfirm":"870cb7e0-005f-4398-807f-b2bc86fb4ce2"}, requestBody.password) +16:40:11.953 [XNIO-1 task-1] zs8uhYEqRcCOYBOeHtVE0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "870cb7e0-005f-4398-807f-b2bc86fb4ce2", {"password":"36e3c2a4-35d3-4431-9c73-45e0e3a1de01","newPassword":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPasswordConfirm":"870cb7e0-005f-4398-807f-b2bc86fb4ce2"}, requestBody.newPassword) +16:40:11.970 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:11.970 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.970 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.970 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:11.970 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:11.970 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPassword":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPasswordConfirm":"d52e7bd9-4649-432f-a404-76f28cead6ab"}, {"password":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPassword":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPasswordConfirm":"d52e7bd9-4649-432f-a404-76f28cead6ab"}, requestBody) +16:40:11.971 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPassword":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPasswordConfirm":"d52e7bd9-4649-432f-a404-76f28cead6ab"}, {"password":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPassword":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPasswordConfirm":"d52e7bd9-4649-432f-a404-76f28cead6ab"}, requestBody) +16:40:11.971 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG com.networknt.schema.FormatValidator debug - validate( "d52e7bd9-4649-432f-a404-76f28cead6ab", {"password":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPassword":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPasswordConfirm":"d52e7bd9-4649-432f-a404-76f28cead6ab"}, requestBody.newPasswordConfirm) +16:40:11.971 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG com.networknt.schema.FormatValidator debug - validate( "870cb7e0-005f-4398-807f-b2bc86fb4ce2", {"password":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPassword":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPasswordConfirm":"d52e7bd9-4649-432f-a404-76f28cead6ab"}, requestBody.password) +16:40:11.971 [XNIO-1 task-1] 7mvARoFHTqWuI9CDMvwERw DEBUG com.networknt.schema.FormatValidator debug - validate( "d52e7bd9-4649-432f-a404-76f28cead6ab", {"password":"870cb7e0-005f-4398-807f-b2bc86fb4ce2","newPassword":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPasswordConfirm":"d52e7bd9-4649-432f-a404-76f28cead6ab"}, requestBody.newPassword) +16:40:11.993 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPassword":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPasswordConfirm":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34"}, {"password":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPassword":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPasswordConfirm":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34"}, requestBody) +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPassword":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPasswordConfirm":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34"}, {"password":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPassword":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPasswordConfirm":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34"}, requestBody) +16:40:11.994 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4822ff3f-73cf-4cb8-9359-b357ac04350a +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d52e7bd9-4649-432f-a404-76f28cead6ab", {"password":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPassword":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPasswordConfirm":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34"}, requestBody.password) +16:40:11.994 [XNIO-1 task-1] ieAcTL1iTrq85RWOxk16AQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f8d2ce80-b077-41a8-a6e1-ab90f33c8b34", {"password":"d52e7bd9-4649-432f-a404-76f28cead6ab","newPassword":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPasswordConfirm":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34"}, requestBody.newPassword) +16:40:11.995 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4822ff3f-73cf-4cb8-9359-b357ac04350a +16:40:12.014 [XNIO-1 task-1] bD-Rd8ZIQ5qURGJWw_PwXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.014 [XNIO-1 task-1] bD-Rd8ZIQ5qURGJWw_PwXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.014 [XNIO-1 task-1] bD-Rd8ZIQ5qURGJWw_PwXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.014 [XNIO-1 task-1] bD-Rd8ZIQ5qURGJWw_PwXA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.015 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:4822ff3f-73cf-4cb8-9359-b357ac04350a +16:40:12.017 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:12.017 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.017 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:12.018 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:12.018 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:12.018 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPassword":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPasswordConfirm":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3"}, {"password":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPassword":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPasswordConfirm":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3"}, requestBody) +16:40:12.018 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPassword":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPasswordConfirm":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3"}, {"password":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPassword":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPasswordConfirm":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3"}, requestBody) +16:40:12.018 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG com.networknt.schema.FormatValidator debug - validate( "b1eddcc0-3551-467f-9f5d-8ac6775f46b3", {"password":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPassword":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPasswordConfirm":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3"}, requestBody.newPasswordConfirm) +16:40:12.018 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG com.networknt.schema.FormatValidator debug - validate( "f8d2ce80-b077-41a8-a6e1-ab90f33c8b34", {"password":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPassword":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPasswordConfirm":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3"}, requestBody.password) +16:40:12.018 [XNIO-1 task-1] UR4lHWO4T4uE94Za_Tn84w DEBUG com.networknt.schema.FormatValidator debug - validate( "b1eddcc0-3551-467f-9f5d-8ac6775f46b3", {"password":"f8d2ce80-b077-41a8-a6e1-ab90f33c8b34","newPassword":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPasswordConfirm":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3"}, requestBody.newPassword) +16:40:12.039 [XNIO-1 task-1] 110l6okqSL2R16tZaCwUOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.039 [XNIO-1 task-1] 110l6okqSL2R16tZaCwUOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.039 [XNIO-1 task-1] 110l6okqSL2R16tZaCwUOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.039 [XNIO-1 task-1] 110l6okqSL2R16tZaCwUOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.043 [XNIO-1 task-1] R-ZeQP8dTkqfQW2tsVAJvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.044 [XNIO-1 task-1] R-ZeQP8dTkqfQW2tsVAJvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.044 [XNIO-1 task-1] R-ZeQP8dTkqfQW2tsVAJvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.062 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/48c5b868, base path is set to: null +16:40:12.062 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.062 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:12.062 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:12.062 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/48c5b868, base path is set to: null +16:40:12.062 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG com.networknt.schema.TypeValidator debug - validate( "48c5b868", "48c5b868", userId) +16:40:12.064 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"885dc5b6-697e-4306-a156-5aea71005743","newPassword":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d","newPasswordConfirm":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d"}, {"password":"885dc5b6-697e-4306-a156-5aea71005743","newPassword":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d","newPasswordConfirm":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d"}, requestBody) +16:40:12.064 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG com.networknt.schema.TypeValidator debug - validate( "fc614e2e-794a-44ee-a5fd-1c806fc8a65d", {"password":"885dc5b6-697e-4306-a156-5aea71005743","newPassword":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d","newPasswordConfirm":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d"}, requestBody.newPasswordConfirm) +16:40:12.064 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG com.networknt.schema.TypeValidator debug - validate( "885dc5b6-697e-4306-a156-5aea71005743", {"password":"885dc5b6-697e-4306-a156-5aea71005743","newPassword":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d","newPasswordConfirm":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d"}, requestBody.password) +16:40:12.064 [XNIO-1 task-1] zkq2VnuLRna_qPqzva5j-A DEBUG com.networknt.schema.TypeValidator debug - validate( "fc614e2e-794a-44ee-a5fd-1c806fc8a65d", {"password":"885dc5b6-697e-4306-a156-5aea71005743","newPassword":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d","newPasswordConfirm":"fc614e2e-794a-44ee-a5fd-1c806fc8a65d"}, requestBody.newPassword) +16:40:12.088 [XNIO-1 task-1] rqlaHYE8Rwy7H1f9m1gD5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.088 [XNIO-1 task-1] rqlaHYE8Rwy7H1f9m1gD5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.088 [XNIO-1 task-1] rqlaHYE8Rwy7H1f9m1gD5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.095 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:efa13e5b +16:40:12.096 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:efa13e5b +16:40:12.108 [XNIO-1 task-1] KDM7MFe0QI2UWXDpEJ7Rkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.108 [XNIO-1 task-1] KDM7MFe0QI2UWXDpEJ7Rkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.108 [XNIO-1 task-1] KDM7MFe0QI2UWXDpEJ7Rkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.120 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:12.120 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.120 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:12.120 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:12.121 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:12.121 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPassword":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPasswordConfirm":"337a5a22-bac4-4ba9-bb29-5780c995b06a"}, {"password":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPassword":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPasswordConfirm":"337a5a22-bac4-4ba9-bb29-5780c995b06a"}, requestBody) +16:40:12.121 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPassword":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPasswordConfirm":"337a5a22-bac4-4ba9-bb29-5780c995b06a"}, {"password":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPassword":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPasswordConfirm":"337a5a22-bac4-4ba9-bb29-5780c995b06a"}, requestBody) +16:40:12.121 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG com.networknt.schema.FormatValidator debug - validate( "337a5a22-bac4-4ba9-bb29-5780c995b06a", {"password":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPassword":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPasswordConfirm":"337a5a22-bac4-4ba9-bb29-5780c995b06a"}, requestBody.newPasswordConfirm) +16:40:12.121 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG com.networknt.schema.FormatValidator debug - validate( "b1eddcc0-3551-467f-9f5d-8ac6775f46b3", {"password":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPassword":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPasswordConfirm":"337a5a22-bac4-4ba9-bb29-5780c995b06a"}, requestBody.password) +16:40:12.121 [XNIO-1 task-1] -lCcBs9ATBuEELIXr5OQTA DEBUG com.networknt.schema.FormatValidator debug - validate( "337a5a22-bac4-4ba9-bb29-5780c995b06a", {"password":"b1eddcc0-3551-467f-9f5d-8ac6775f46b3","newPassword":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPasswordConfirm":"337a5a22-bac4-4ba9-bb29-5780c995b06a"}, requestBody.newPassword) +16:40:12.135 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f6577b16-e3b1-48d3-b71e-fe3dc0448490 +16:40:12.140 [XNIO-1 task-1] UCLfAaa0SgyLxpq5NZtwQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/efa13e5b, base path is set to: null +16:40:12.140 [XNIO-1 task-1] UCLfAaa0SgyLxpq5NZtwQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.140 [XNIO-1 task-1] UCLfAaa0SgyLxpq5NZtwQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:12.140 [XNIO-1 task-1] UCLfAaa0SgyLxpq5NZtwQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/efa13e5b, base path is set to: null +16:40:12.140 [XNIO-1 task-1] UCLfAaa0SgyLxpq5NZtwQw DEBUG com.networknt.schema.TypeValidator debug - validate( "efa13e5b", "efa13e5b", userId) +16:40:12.146 [XNIO-1 task-1] igMHFc6AQROSZmbtN8d4fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/55be119b +16:40:12.146 [XNIO-1 task-1] igMHFc6AQROSZmbtN8d4fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.146 [XNIO-1 task-1] igMHFc6AQROSZmbtN8d4fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:12.146 [XNIO-1 task-1] igMHFc6AQROSZmbtN8d4fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/55be119b +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/efa13e5b, base path is set to: null +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/efa13e5b, base path is set to: null +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG com.networknt.schema.TypeValidator debug - validate( "efa13e5b", "efa13e5b", userId) +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e66b6e09-8841-4b58-9091-555168339a45","newPassword":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPasswordConfirm":"55e62732-f02a-4bb7-8fec-01ab45fca87d"}, {"password":"e66b6e09-8841-4b58-9091-555168339a45","newPassword":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPasswordConfirm":"55e62732-f02a-4bb7-8fec-01ab45fca87d"}, requestBody) +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG com.networknt.schema.TypeValidator debug - validate( "55e62732-f02a-4bb7-8fec-01ab45fca87d", {"password":"e66b6e09-8841-4b58-9091-555168339a45","newPassword":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPasswordConfirm":"55e62732-f02a-4bb7-8fec-01ab45fca87d"}, requestBody.newPasswordConfirm) +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG com.networknt.schema.TypeValidator debug - validate( "e66b6e09-8841-4b58-9091-555168339a45", {"password":"e66b6e09-8841-4b58-9091-555168339a45","newPassword":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPasswordConfirm":"55e62732-f02a-4bb7-8fec-01ab45fca87d"}, requestBody.password) +16:40:12.152 [XNIO-1 task-1] yoBXl-rVQNm0WYt3ymJk8A DEBUG com.networknt.schema.TypeValidator debug - validate( "55e62732-f02a-4bb7-8fec-01ab45fca87d", {"password":"e66b6e09-8841-4b58-9091-555168339a45","newPassword":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPasswordConfirm":"55e62732-f02a-4bb7-8fec-01ab45fca87d"}, requestBody.newPassword) +16:40:12.162 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9b2ab305 +16:40:12.164 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:efa13e5b +16:40:12.174 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:aa62d50d-1ce7-4065-9e3f-8827fda6db5a +16:40:12.177 [XNIO-1 task-1] rEYLSLQOToOO0QbHbosdiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.177 [XNIO-1 task-1] rEYLSLQOToOO0QbHbosdiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.177 [XNIO-1 task-1] rEYLSLQOToOO0QbHbosdiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.188 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:aa62d50d-1ce7-4065-9e3f-8827fda6db5a +16:40:12.191 [XNIO-1 task-1] tcm9AlClTsuRy4O5sRvLgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.191 [XNIO-1 task-1] tcm9AlClTsuRy4O5sRvLgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.191 [XNIO-1 task-1] tcm9AlClTsuRy4O5sRvLgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.192 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:efa13e5b +16:40:12.199 [XNIO-1 task-1] KdpUmLpGQ9WQyGh4rwoaiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/55be119b, base path is set to: null +16:40:12.199 [XNIO-1 task-1] KdpUmLpGQ9WQyGh4rwoaiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.199 [XNIO-1 task-1] KdpUmLpGQ9WQyGh4rwoaiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:12.199 [XNIO-1 task-1] KdpUmLpGQ9WQyGh4rwoaiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/55be119b, base path is set to: null +16:40:12.199 [XNIO-1 task-1] KdpUmLpGQ9WQyGh4rwoaiA DEBUG com.networknt.schema.TypeValidator debug - validate( "55be119b", "55be119b", userId) +16:40:12.205 [XNIO-1 task-1] WL-8qLWSRV-sBh7Kid7ByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48c5b868 +16:40:12.205 [XNIO-1 task-1] WL-8qLWSRV-sBh7Kid7ByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.205 [XNIO-1 task-1] WL-8qLWSRV-sBh7Kid7ByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:12.205 [XNIO-1 task-1] WL-8qLWSRV-sBh7Kid7ByQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48c5b868 +16:40:12.209 [XNIO-1 task-1] sPIgUbFiQxq6nT1dhwFbXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/55be119b, base path is set to: null +16:40:12.209 [XNIO-1 task-1] sPIgUbFiQxq6nT1dhwFbXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.209 [XNIO-1 task-1] sPIgUbFiQxq6nT1dhwFbXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:12.209 [XNIO-1 task-1] sPIgUbFiQxq6nT1dhwFbXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/55be119b, base path is set to: null +16:40:12.210 [XNIO-1 task-1] sPIgUbFiQxq6nT1dhwFbXg DEBUG com.networknt.schema.TypeValidator debug - validate( "55be119b", "55be119b", userId) +16:40:12.213 [XNIO-1 task-1] sAqc5uDTSiC3VNBnYp9yiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.213 [XNIO-1 task-1] sAqc5uDTSiC3VNBnYp9yiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.213 [XNIO-1 task-1] sAqc5uDTSiC3VNBnYp9yiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.213 [XNIO-1 task-1] sAqc5uDTSiC3VNBnYp9yiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:12.218 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:12.218 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.218 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:12.218 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:12.219 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/55be119b +16:40:12.219 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPassword":"f8366f51-796d-4658-b02d-b099db2f63f3","newPasswordConfirm":"f8366f51-796d-4658-b02d-b099db2f63f3"}, {"password":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPassword":"f8366f51-796d-4658-b02d-b099db2f63f3","newPasswordConfirm":"f8366f51-796d-4658-b02d-b099db2f63f3"}, requestBody) +16:40:12.219 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPassword":"f8366f51-796d-4658-b02d-b099db2f63f3","newPasswordConfirm":"f8366f51-796d-4658-b02d-b099db2f63f3"}, {"password":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPassword":"f8366f51-796d-4658-b02d-b099db2f63f3","newPasswordConfirm":"f8366f51-796d-4658-b02d-b099db2f63f3"}, requestBody) +16:40:12.219 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG com.networknt.schema.FormatValidator debug - validate( "f8366f51-796d-4658-b02d-b099db2f63f3", {"password":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPassword":"f8366f51-796d-4658-b02d-b099db2f63f3","newPasswordConfirm":"f8366f51-796d-4658-b02d-b099db2f63f3"}, requestBody.newPasswordConfirm) +16:40:12.219 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG com.networknt.schema.FormatValidator debug - validate( "337a5a22-bac4-4ba9-bb29-5780c995b06a", {"password":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPassword":"f8366f51-796d-4658-b02d-b099db2f63f3","newPasswordConfirm":"f8366f51-796d-4658-b02d-b099db2f63f3"}, requestBody.password) +16:40:12.219 [XNIO-1 task-1] ZtOvbnRuRni2SvY5bU_ccw DEBUG com.networknt.schema.FormatValidator debug - validate( "f8366f51-796d-4658-b02d-b099db2f63f3", {"password":"337a5a22-bac4-4ba9-bb29-5780c995b06a","newPassword":"f8366f51-796d-4658-b02d-b099db2f63f3","newPasswordConfirm":"f8366f51-796d-4658-b02d-b099db2f63f3"}, requestBody.newPassword) +16:40:12.233 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.239 [XNIO-1 task-1] myq6qq_JQnmNG59HK_YKow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.239 [XNIO-1 task-1] myq6qq_JQnmNG59HK_YKow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:12.240 [XNIO-1 task-1] myq6qq_JQnmNG59HK_YKow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:12.240 [XNIO-1 task-1] myq6qq_JQnmNG59HK_YKow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:12.246 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.250 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/efa13e5b +16:40:12.250 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.250 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:12.250 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:12.251 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/efa13e5b +16:40:12.251 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPassword":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPasswordConfirm":"898e1f62-aaf4-4294-9260-8a13e0a041a9"}, {"password":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPassword":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPasswordConfirm":"898e1f62-aaf4-4294-9260-8a13e0a041a9"}, requestBody) +16:40:12.251 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPassword":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPasswordConfirm":"898e1f62-aaf4-4294-9260-8a13e0a041a9"}, {"password":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPassword":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPasswordConfirm":"898e1f62-aaf4-4294-9260-8a13e0a041a9"}, requestBody) +16:40:12.251 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG com.networknt.schema.FormatValidator debug - validate( "898e1f62-aaf4-4294-9260-8a13e0a041a9", {"password":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPassword":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPasswordConfirm":"898e1f62-aaf4-4294-9260-8a13e0a041a9"}, requestBody.newPasswordConfirm) +16:40:12.251 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG com.networknt.schema.TypeValidator debug - validate( "55e62732-f02a-4bb7-8fec-01ab45fca87d", {"password":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPassword":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPasswordConfirm":"898e1f62-aaf4-4294-9260-8a13e0a041a9"}, requestBody.password) +16:40:12.251 [XNIO-1 task-1] CqWPZhrmQiKsmZbS0HpaBw DEBUG com.networknt.schema.TypeValidator debug - validate( "898e1f62-aaf4-4294-9260-8a13e0a041a9", {"password":"55e62732-f02a-4bb7-8fec-01ab45fca87d","newPassword":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPasswordConfirm":"898e1f62-aaf4-4294-9260-8a13e0a041a9"}, requestBody.newPassword) +16:40:12.257 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5a9b22a5-fead-475f-bc22-3838a87aaa82 +16:40:12.265 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:efa13e5b +16:40:12.273 [XNIO-1 task-1] wvdgaR83Tf-Qy3rSI4O6Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/55be119b +16:40:12.273 [XNIO-1 task-1] wvdgaR83Tf-Qy3rSI4O6Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:12.273 [XNIO-1 task-1] wvdgaR83Tf-Qy3rSI4O6Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:12.273 [XNIO-1 task-1] wvdgaR83Tf-Qy3rSI4O6Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/55be119b +16:40:12.432 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:12.495 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:abc0d696-4e68-4e72-870e-63d7956a0488 +16:40:14.118 [XNIO-1 task-1] t77gEe5jRv2LDkHro3rLaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48c5b868, base path is set to: null +16:40:14.119 [XNIO-1 task-1] t77gEe5jRv2LDkHro3rLaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.119 [XNIO-1 task-1] t77gEe5jRv2LDkHro3rLaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.119 [XNIO-1 task-1] t77gEe5jRv2LDkHro3rLaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/48c5b868, base path is set to: null +16:40:14.119 [XNIO-1 task-1] t77gEe5jRv2LDkHro3rLaw DEBUG com.networknt.schema.TypeValidator debug - validate( "48c5b868", "48c5b868", userId) +16:40:14.126 [XNIO-1 task-1] zJRe55HMSq6e-kDZaJT_6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.126 [XNIO-1 task-1] zJRe55HMSq6e-kDZaJT_6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.126 [XNIO-1 task-1] zJRe55HMSq6e-kDZaJT_6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.127 [XNIO-1 task-1] zJRe55HMSq6e-kDZaJT_6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.131 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/efa13e5b +16:40:14.131 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.131 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.131 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:14.132 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/efa13e5b +16:40:14.132 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPassword":"854691d2-cb8f-4d8f-9119-98c757c61854","newPasswordConfirm":"854691d2-cb8f-4d8f-9119-98c757c61854"}, {"password":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPassword":"854691d2-cb8f-4d8f-9119-98c757c61854","newPasswordConfirm":"854691d2-cb8f-4d8f-9119-98c757c61854"}, requestBody) +16:40:14.132 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPassword":"854691d2-cb8f-4d8f-9119-98c757c61854","newPasswordConfirm":"854691d2-cb8f-4d8f-9119-98c757c61854"}, {"password":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPassword":"854691d2-cb8f-4d8f-9119-98c757c61854","newPasswordConfirm":"854691d2-cb8f-4d8f-9119-98c757c61854"}, requestBody) +16:40:14.132 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG com.networknt.schema.FormatValidator debug - validate( "854691d2-cb8f-4d8f-9119-98c757c61854", {"password":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPassword":"854691d2-cb8f-4d8f-9119-98c757c61854","newPasswordConfirm":"854691d2-cb8f-4d8f-9119-98c757c61854"}, requestBody.newPasswordConfirm) +16:40:14.132 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG com.networknt.schema.FormatValidator debug - validate( "898e1f62-aaf4-4294-9260-8a13e0a041a9", {"password":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPassword":"854691d2-cb8f-4d8f-9119-98c757c61854","newPasswordConfirm":"854691d2-cb8f-4d8f-9119-98c757c61854"}, requestBody.password) +16:40:14.133 [XNIO-1 task-1] 49piVz6KRtWIZYQvCL3oyA DEBUG com.networknt.schema.FormatValidator debug - validate( "854691d2-cb8f-4d8f-9119-98c757c61854", {"password":"898e1f62-aaf4-4294-9260-8a13e0a041a9","newPassword":"854691d2-cb8f-4d8f-9119-98c757c61854","newPasswordConfirm":"854691d2-cb8f-4d8f-9119-98c757c61854"}, requestBody.newPassword) +16:40:14.145 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:efa13e5b +16:40:14.157 [XNIO-1 task-1] NqvoYvIhT_e-Rc4BBZSC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.157 [XNIO-1 task-1] NqvoYvIhT_e-Rc4BBZSC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.157 [XNIO-1 task-1] NqvoYvIhT_e-Rc4BBZSC_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.157 [XNIO-1 task-1] NqvoYvIhT_e-Rc4BBZSC_Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.163 [XNIO-1 task-1] 1n_MBbV4TE6hGr2REzG7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/efa13e5b +16:40:14.164 [XNIO-1 task-1] 1n_MBbV4TE6hGr2REzG7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.164 [XNIO-1 task-1] 1n_MBbV4TE6hGr2REzG7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.164 [XNIO-1 task-1] 1n_MBbV4TE6hGr2REzG7Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/efa13e5b +16:40:14.164 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:efa13e5b +16:40:14.172 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9b2ab305 +16:40:14.178 [XNIO-1 task-1] Oc8DBkoWQGmsgRbgGrEG-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.178 [XNIO-1 task-1] Oc8DBkoWQGmsgRbgGrEG-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.178 [XNIO-1 task-1] Oc8DBkoWQGmsgRbgGrEG-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.178 [XNIO-1 task-1] Oc8DBkoWQGmsgRbgGrEG-A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.186 [XNIO-1 task-1] 6pKsuN_TQz6MGIBDcQ-s3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.186 [XNIO-1 task-1] 6pKsuN_TQz6MGIBDcQ-s3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.187 [XNIO-1 task-1] 6pKsuN_TQz6MGIBDcQ-s3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.187 [XNIO-1 task-1] 6pKsuN_TQz6MGIBDcQ-s3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.197 [XNIO-1 task-1] h43gx4liSHOQjpmlklZDvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.197 [XNIO-1 task-1] h43gx4liSHOQjpmlklZDvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.197 [XNIO-1 task-1] h43gx4liSHOQjpmlklZDvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.215 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4af4fb6a +16:40:14.215 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.215 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.215 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:14.215 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/4af4fb6a +16:40:14.216 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"5bf5d93c-6393-4bd2-b8b2-f23085e30088","newPassword":"41cd177e-cfad-42ed-bd26-421265c7f961","newPasswordConfirm":"41cd177e-cfad-42ed-bd26-421265c7f961"}, {"password":"5bf5d93c-6393-4bd2-b8b2-f23085e30088","newPassword":"41cd177e-cfad-42ed-bd26-421265c7f961","newPasswordConfirm":"41cd177e-cfad-42ed-bd26-421265c7f961"}, requestBody) +16:40:14.216 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"5bf5d93c-6393-4bd2-b8b2-f23085e30088","newPassword":"41cd177e-cfad-42ed-bd26-421265c7f961","newPasswordConfirm":"41cd177e-cfad-42ed-bd26-421265c7f961"}, {"password":"5bf5d93c-6393-4bd2-b8b2-f23085e30088","newPassword":"41cd177e-cfad-42ed-bd26-421265c7f961","newPasswordConfirm":"41cd177e-cfad-42ed-bd26-421265c7f961"}, requestBody) +16:40:14.216 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG com.networknt.schema.FormatValidator debug - validate( "41cd177e-cfad-42ed-bd26-421265c7f961", {"password":"5bf5d93c-6393-4bd2-b8b2-f23085e30088","newPassword":"41cd177e-cfad-42ed-bd26-421265c7f961","newPasswordConfirm":"41cd177e-cfad-42ed-bd26-421265c7f961"}, requestBody.newPasswordConfirm) +16:40:14.216 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG com.networknt.schema.FormatValidator debug - validate( "5bf5d93c-6393-4bd2-b8b2-f23085e30088", {"password":"5bf5d93c-6393-4bd2-b8b2-f23085e30088","newPassword":"41cd177e-cfad-42ed-bd26-421265c7f961","newPasswordConfirm":"41cd177e-cfad-42ed-bd26-421265c7f961"}, requestBody.password) +16:40:14.216 [XNIO-1 task-1] IIidTGBYSbC8d1tYRmYXUA DEBUG com.networknt.schema.FormatValidator debug - validate( "41cd177e-cfad-42ed-bd26-421265c7f961", {"password":"5bf5d93c-6393-4bd2-b8b2-f23085e30088","newPassword":"41cd177e-cfad-42ed-bd26-421265c7f961","newPasswordConfirm":"41cd177e-cfad-42ed-bd26-421265c7f961"}, requestBody.newPassword) +16:40:14.241 [XNIO-1 task-1] h1Y7M9BrTHaiQRVAdisUvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.241 [XNIO-1 task-1] h1Y7M9BrTHaiQRVAdisUvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.241 [XNIO-1 task-1] h1Y7M9BrTHaiQRVAdisUvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.242 [XNIO-1 task-1] h1Y7M9BrTHaiQRVAdisUvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.245 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e4c7558 +16:40:14.251 [XNIO-1 task-1] illDFc6AQVKx1jOs7SETcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.251 [XNIO-1 task-1] illDFc6AQVKx1jOs7SETcA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.251 [XNIO-1 task-1] illDFc6AQVKx1jOs7SETcA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.251 [XNIO-1 task-1] illDFc6AQVKx1jOs7SETcA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.260 [XNIO-1 task-1] _CN4wDPZRzuqJBfsvgNVBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4af4fb6a, base path is set to: null +16:40:14.260 [XNIO-1 task-1] _CN4wDPZRzuqJBfsvgNVBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.260 [XNIO-1 task-1] _CN4wDPZRzuqJBfsvgNVBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.260 [XNIO-1 task-1] _CN4wDPZRzuqJBfsvgNVBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/4af4fb6a, base path is set to: null +16:40:14.260 [XNIO-1 task-1] _CN4wDPZRzuqJBfsvgNVBg DEBUG com.networknt.schema.TypeValidator debug - validate( "4af4fb6a", "4af4fb6a", userId) +16:40:14.272 [XNIO-1 task-1] rMONz34xQTibUjRfnMFvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.272 [XNIO-1 task-1] rMONz34xQTibUjRfnMFvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.272 [XNIO-1 task-1] rMONz34xQTibUjRfnMFvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.296 [XNIO-1 task-1] QOQy9ESCTSGbR4Qlo743uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.296 [XNIO-1 task-1] QOQy9ESCTSGbR4Qlo743uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.296 [XNIO-1 task-1] QOQy9ESCTSGbR4Qlo743uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.297 [XNIO-1 task-1] QOQy9ESCTSGbR4Qlo743uA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.301 [XNIO-1 task-1] SBMWOqX9RmSntHOYMc_3fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.301 [XNIO-1 task-1] SBMWOqX9RmSntHOYMc_3fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.301 [XNIO-1 task-1] SBMWOqX9RmSntHOYMc_3fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.303 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a9849478-04fb-483b-bdf2-435c4cb6ad63 +16:40:14.304 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4729b497 +16:40:14.315 [XNIO-1 task-1] oZ4HY1VOR46MVbi75jsE0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.315 [XNIO-1 task-1] oZ4HY1VOR46MVbi75jsE0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.316 [XNIO-1 task-1] oZ4HY1VOR46MVbi75jsE0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.320 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:a9849478-04fb-483b-bdf2-435c4cb6ad63 +16:40:14.329 [XNIO-1 task-1] PJbQ6eIFRqiSOoromnxgwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4af4fb6a +16:40:14.329 [XNIO-1 task-1] PJbQ6eIFRqiSOoromnxgwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.329 [XNIO-1 task-1] PJbQ6eIFRqiSOoromnxgwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.330 [XNIO-1 task-1] PJbQ6eIFRqiSOoromnxgwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/4af4fb6a +16:40:14.340 [XNIO-1 task-1] 9b7Jwn5qS6qRK5oX6VknOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.340 [XNIO-1 task-1] 9b7Jwn5qS6qRK5oX6VknOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.340 [XNIO-1 task-1] 9b7Jwn5qS6qRK5oX6VknOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.340 [XNIO-1 task-1] 9b7Jwn5qS6qRK5oX6VknOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.350 [XNIO-1 task-1] 1iKbzYt0Q_65VvRXUVJEfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.351 [XNIO-1 task-1] 1iKbzYt0Q_65VvRXUVJEfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.351 [XNIO-1 task-1] 1iKbzYt0Q_65VvRXUVJEfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.362 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b216d01c-b967-43a5-b051-00eff2f78754 +16:40:14.362 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b216d01c-b967-43a5-b051-00eff2f78754 +16:40:14.362 [XNIO-1 task-1] Sd826dNfR2yhlCVjJZ8WTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.362 [XNIO-1 task-1] Sd826dNfR2yhlCVjJZ8WTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.363 [XNIO-1 task-1] Sd826dNfR2yhlCVjJZ8WTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.368 [XNIO-1 task-1] 2pI_c6blToi5vE3XqGKKsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.368 [XNIO-1 task-1] 2pI_c6blToi5vE3XqGKKsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.368 [XNIO-1 task-1] 2pI_c6blToi5vE3XqGKKsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.368 [XNIO-1 task-1] 2pI_c6blToi5vE3XqGKKsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.368 [XNIO-1 task-1] 2pI_c6blToi5vE3XqGKKsA DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:14.375 [XNIO-1 task-1] 1FQJ6-ksQwKnFnL-26vJMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.375 [XNIO-1 task-1] 1FQJ6-ksQwKnFnL-26vJMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.375 [XNIO-1 task-1] 1FQJ6-ksQwKnFnL-26vJMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.394 [XNIO-1 task-1] KpFpN1YZTry6qqgwvLS8-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.394 [XNIO-1 task-1] KpFpN1YZTry6qqgwvLS8-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.394 [XNIO-1 task-1] KpFpN1YZTry6qqgwvLS8-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.394 [XNIO-1 task-1] KpFpN1YZTry6qqgwvLS8-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.394 [XNIO-1 task-1] KpFpN1YZTry6qqgwvLS8-A DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:14.400 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dbe7ddcd, base path is set to: null +16:40:14.400 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.400 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.400 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:14.400 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dbe7ddcd, base path is set to: null +16:40:14.400 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:14.401 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"543348f6-4a27-4b0e-a7c1-4875ad8da086","newPassword":"cb773e78-5e31-415a-943a-61d9170a7c30","newPasswordConfirm":"cb773e78-5e31-415a-943a-61d9170a7c30"}, {"password":"543348f6-4a27-4b0e-a7c1-4875ad8da086","newPassword":"cb773e78-5e31-415a-943a-61d9170a7c30","newPasswordConfirm":"cb773e78-5e31-415a-943a-61d9170a7c30"}, requestBody) +16:40:14.401 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb773e78-5e31-415a-943a-61d9170a7c30", {"password":"543348f6-4a27-4b0e-a7c1-4875ad8da086","newPassword":"cb773e78-5e31-415a-943a-61d9170a7c30","newPasswordConfirm":"cb773e78-5e31-415a-943a-61d9170a7c30"}, requestBody.newPasswordConfirm) +16:40:14.401 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG com.networknt.schema.TypeValidator debug - validate( "543348f6-4a27-4b0e-a7c1-4875ad8da086", {"password":"543348f6-4a27-4b0e-a7c1-4875ad8da086","newPassword":"cb773e78-5e31-415a-943a-61d9170a7c30","newPasswordConfirm":"cb773e78-5e31-415a-943a-61d9170a7c30"}, requestBody.password) +16:40:14.401 [XNIO-1 task-1] V5K48-8MQC-ReOrqmvJoHw DEBUG com.networknt.schema.TypeValidator debug - validate( "cb773e78-5e31-415a-943a-61d9170a7c30", {"password":"543348f6-4a27-4b0e-a7c1-4875ad8da086","newPassword":"cb773e78-5e31-415a-943a-61d9170a7c30","newPasswordConfirm":"cb773e78-5e31-415a-943a-61d9170a7c30"}, requestBody.newPassword) +16:40:14.421 [XNIO-1 task-1] 7zgYNvynT3eK46YcuNVNsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.421 [XNIO-1 task-1] 7zgYNvynT3eK46YcuNVNsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.422 [XNIO-1 task-1] 7zgYNvynT3eK46YcuNVNsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.443 [XNIO-1 task-1] spI_j-kPTuisFlAXJJ15lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.444 [XNIO-1 task-1] spI_j-kPTuisFlAXJJ15lQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.444 [XNIO-1 task-1] spI_j-kPTuisFlAXJJ15lQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.459 [XNIO-1 task-1] w5R6eeBoRz-_HaBFfnLpEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8381ac29, base path is set to: null +16:40:14.460 [XNIO-1 task-1] w5R6eeBoRz-_HaBFfnLpEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.460 [XNIO-1 task-1] w5R6eeBoRz-_HaBFfnLpEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.460 [XNIO-1 task-1] w5R6eeBoRz-_HaBFfnLpEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8381ac29, base path is set to: null +16:40:14.460 [XNIO-1 task-1] w5R6eeBoRz-_HaBFfnLpEw DEBUG com.networknt.schema.TypeValidator debug - validate( "8381ac29", "8381ac29", userId) +16:40:14.464 [XNIO-1 task-1] 3YPJ9I6_TO28UDqWmGMMSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8381ac29 +16:40:14.464 [XNIO-1 task-1] 3YPJ9I6_TO28UDqWmGMMSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.464 [XNIO-1 task-1] 3YPJ9I6_TO28UDqWmGMMSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.465 [XNIO-1 task-1] 3YPJ9I6_TO28UDqWmGMMSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8381ac29 +16:40:14.468 [XNIO-1 task-1] fVHwRQp3SNGxk9lPOihDTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8381ac29, base path is set to: null +16:40:14.468 [XNIO-1 task-1] fVHwRQp3SNGxk9lPOihDTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.468 [XNIO-1 task-1] fVHwRQp3SNGxk9lPOihDTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.468 [XNIO-1 task-1] fVHwRQp3SNGxk9lPOihDTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8381ac29, base path is set to: null +16:40:14.469 [XNIO-1 task-1] fVHwRQp3SNGxk9lPOihDTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8381ac29", "8381ac29", userId) +16:40:14.482 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1298e403 +16:40:14.482 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.482 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.482 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:14.482 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/1298e403 +16:40:14.483 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d31558d5-02b3-4216-9abb-37b5069d4f18","newPassword":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPasswordConfirm":"b32ca7e5-c42b-436a-94e6-09c84de68b2a"}, {"password":"d31558d5-02b3-4216-9abb-37b5069d4f18","newPassword":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPasswordConfirm":"b32ca7e5-c42b-436a-94e6-09c84de68b2a"}, requestBody) +16:40:14.483 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d31558d5-02b3-4216-9abb-37b5069d4f18","newPassword":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPasswordConfirm":"b32ca7e5-c42b-436a-94e6-09c84de68b2a"}, {"password":"d31558d5-02b3-4216-9abb-37b5069d4f18","newPassword":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPasswordConfirm":"b32ca7e5-c42b-436a-94e6-09c84de68b2a"}, requestBody) +16:40:14.483 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG com.networknt.schema.FormatValidator debug - validate( "b32ca7e5-c42b-436a-94e6-09c84de68b2a", {"password":"d31558d5-02b3-4216-9abb-37b5069d4f18","newPassword":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPasswordConfirm":"b32ca7e5-c42b-436a-94e6-09c84de68b2a"}, requestBody.newPasswordConfirm) +16:40:14.483 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG com.networknt.schema.FormatValidator debug - validate( "d31558d5-02b3-4216-9abb-37b5069d4f18", {"password":"d31558d5-02b3-4216-9abb-37b5069d4f18","newPassword":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPasswordConfirm":"b32ca7e5-c42b-436a-94e6-09c84de68b2a"}, requestBody.password) +16:40:14.483 [XNIO-1 task-1] 0YC0PAJJSlahiSOL5Ms1lg DEBUG com.networknt.schema.FormatValidator debug - validate( "b32ca7e5-c42b-436a-94e6-09c84de68b2a", {"password":"d31558d5-02b3-4216-9abb-37b5069d4f18","newPassword":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPasswordConfirm":"b32ca7e5-c42b-436a-94e6-09c84de68b2a"}, requestBody.newPassword) +16:40:14.507 [XNIO-1 task-1] GlwCY4e2SiqUwR4QnHK8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.507 [XNIO-1 task-1] GlwCY4e2SiqUwR4QnHK8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.507 [XNIO-1 task-1] GlwCY4e2SiqUwR4QnHK8Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.507 [XNIO-1 task-1] GlwCY4e2SiqUwR4QnHK8Jw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.513 [XNIO-1 task-1] 2J8J_aDZRfuXkJ6oHUesOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.513 [XNIO-1 task-1] 2J8J_aDZRfuXkJ6oHUesOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.514 [XNIO-1 task-1] 2J8J_aDZRfuXkJ6oHUesOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.514 [XNIO-1 task-1] 2J8J_aDZRfuXkJ6oHUesOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.521 [XNIO-1 task-1] 0xF-hFGvTPufaXCSQTnuhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.521 [XNIO-1 task-1] 0xF-hFGvTPufaXCSQTnuhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.521 [XNIO-1 task-1] 0xF-hFGvTPufaXCSQTnuhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.531 [XNIO-1 task-1] pHYx54TBSIGhMI0LevWmmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.531 [XNIO-1 task-1] pHYx54TBSIGhMI0LevWmmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.531 [XNIO-1 task-1] pHYx54TBSIGhMI0LevWmmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.537 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:76782813-6f4b-4f1f-b9f2-d599f239af84 +16:40:14.542 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dbe7ddcd, base path is set to: null +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/dbe7ddcd, base path is set to: null +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cb773e78-5e31-415a-943a-61d9170a7c30","newPassword":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPasswordConfirm":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c"}, {"password":"cb773e78-5e31-415a-943a-61d9170a7c30","newPassword":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPasswordConfirm":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c"}, requestBody) +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c", {"password":"cb773e78-5e31-415a-943a-61d9170a7c30","newPassword":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPasswordConfirm":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c"}, requestBody.newPasswordConfirm) +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "cb773e78-5e31-415a-943a-61d9170a7c30", {"password":"cb773e78-5e31-415a-943a-61d9170a7c30","newPassword":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPasswordConfirm":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c"}, requestBody.password) +16:40:14.543 [XNIO-1 task-1] nSrsIklfSni6-HNE0zcX7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c", {"password":"cb773e78-5e31-415a-943a-61d9170a7c30","newPassword":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPasswordConfirm":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c"}, requestBody.newPassword) +16:40:14.553 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8e4c7558 +16:40:14.564 [XNIO-1 task-1] Uw4LaRu9QYeGW64DWfnsVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.564 [XNIO-1 task-1] Uw4LaRu9QYeGW64DWfnsVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.564 [XNIO-1 task-1] Uw4LaRu9QYeGW64DWfnsVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.564 [XNIO-1 task-1] Uw4LaRu9QYeGW64DWfnsVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:14.569 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9b2ab305 +16:40:14.575 [XNIO-1 task-1] ZIBctCORQhaEVMn99W_mAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.575 [XNIO-1 task-1] ZIBctCORQhaEVMn99W_mAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.576 [XNIO-1 task-1] ZIBctCORQhaEVMn99W_mAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.576 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d9feae07-6c67-42a3-99de-5b1dac3c845f +16:40:14.579 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:d0ace302-1999-4efe-a5b5-fefe4bd5a179 +16:40:14.580 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d9feae07-6c67-42a3-99de-5b1dac3c845f +16:40:14.591 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:227c7615 +16:40:14.601 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1298e403, base path is set to: null +16:40:14.601 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/1298e403, base path is set to: null +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG com.networknt.schema.TypeValidator debug - validate( "1298e403", "1298e403", userId) +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPassword":"bda4e7af-2fc9-442c-98b0-38489ad63966","newPasswordConfirm":"bda4e7af-2fc9-442c-98b0-38489ad63966"}, {"password":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPassword":"bda4e7af-2fc9-442c-98b0-38489ad63966","newPasswordConfirm":"bda4e7af-2fc9-442c-98b0-38489ad63966"}, requestBody) +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG com.networknt.schema.TypeValidator debug - validate( "bda4e7af-2fc9-442c-98b0-38489ad63966", {"password":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPassword":"bda4e7af-2fc9-442c-98b0-38489ad63966","newPasswordConfirm":"bda4e7af-2fc9-442c-98b0-38489ad63966"}, requestBody.newPasswordConfirm) +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG com.networknt.schema.TypeValidator debug - validate( "b32ca7e5-c42b-436a-94e6-09c84de68b2a", {"password":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPassword":"bda4e7af-2fc9-442c-98b0-38489ad63966","newPasswordConfirm":"bda4e7af-2fc9-442c-98b0-38489ad63966"}, requestBody.password) +16:40:14.602 [XNIO-1 task-1] U-zem3K-RraskMEYx4j4TA DEBUG com.networknt.schema.TypeValidator debug - validate( "bda4e7af-2fc9-442c-98b0-38489ad63966", {"password":"b32ca7e5-c42b-436a-94e6-09c84de68b2a","newPassword":"bda4e7af-2fc9-442c-98b0-38489ad63966","newPasswordConfirm":"bda4e7af-2fc9-442c-98b0-38489ad63966"}, requestBody.newPassword) +16:40:14.623 [XNIO-1 task-1] i4sc6e_mQiOC0sYw0UgTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.623 [XNIO-1 task-1] i4sc6e_mQiOC0sYw0UgTDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.623 [XNIO-1 task-1] i4sc6e_mQiOC0sYw0UgTDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.623 [XNIO-1 task-1] i4sc6e_mQiOC0sYw0UgTDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.623 [XNIO-1 task-1] i4sc6e_mQiOC0sYw0UgTDg DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:14.630 [XNIO-1 task-1] L05DGsilQr27EJBLnMa-DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.630 [XNIO-1 task-1] L05DGsilQr27EJBLnMa-DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.630 [XNIO-1 task-1] L05DGsilQr27EJBLnMa-DQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.630 [XNIO-1 task-1] L05DGsilQr27EJBLnMa-DQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.634 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f9bd9e21-ab4f-46f5-a97e-16a7e62d4a1a +16:40:14.637 [XNIO-1 task-1] 232GnvxUT6G67QJBeL3YkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.637 [XNIO-1 task-1] 232GnvxUT6G67QJBeL3YkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.637 [XNIO-1 task-1] 232GnvxUT6G67QJBeL3YkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.652 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:f9bd9e21-ab4f-46f5-a97e-16a7e62d4a1a +16:40:14.653 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:24f74ea7 +16:40:14.682 [XNIO-1 task-1] g1qN7pbxRwGA1D0ABAFyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dbe7ddcd +16:40:14.682 [XNIO-1 task-1] g1qN7pbxRwGA1D0ABAFyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.682 [XNIO-1 task-1] g1qN7pbxRwGA1D0ABAFyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.682 [XNIO-1 task-1] g1qN7pbxRwGA1D0ABAFyOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dbe7ddcd +16:40:14.694 [XNIO-1 task-1] V0z3q_6PTnKjhixWlSC7Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.694 [XNIO-1 task-1] V0z3q_6PTnKjhixWlSC7Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.694 [XNIO-1 task-1] V0z3q_6PTnKjhixWlSC7Vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.694 [XNIO-1 task-1] V0z3q_6PTnKjhixWlSC7Vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.694 [XNIO-1 task-1] V0z3q_6PTnKjhixWlSC7Vw DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:14.702 [XNIO-1 task-1] Ncf7mQc8SsqRgays0P5mtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.703 [XNIO-1 task-1] Ncf7mQc8SsqRgays0P5mtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.703 [XNIO-1 task-1] Ncf7mQc8SsqRgays0P5mtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.706 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8e4c7558 +16:40:14.709 [XNIO-1 task-1] hkor0LxySzCDKeMLz5mx7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/edb8b318 +16:40:14.709 [XNIO-1 task-1] hkor0LxySzCDKeMLz5mx7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.709 [XNIO-1 task-1] hkor0LxySzCDKeMLz5mx7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.709 [XNIO-1 task-1] hkor0LxySzCDKeMLz5mx7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/edb8b318 +16:40:14.718 [XNIO-1 task-1] XZrdKg9PQAaK-awnGLDpCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.718 [XNIO-1 task-1] XZrdKg9PQAaK-awnGLDpCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.718 [XNIO-1 task-1] XZrdKg9PQAaK-awnGLDpCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.739 [XNIO-1 task-1] nI2LuCxjQniH1G6Tcxsjiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/edb8b318, base path is set to: null +16:40:14.740 [XNIO-1 task-1] nI2LuCxjQniH1G6Tcxsjiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.740 [XNIO-1 task-1] nI2LuCxjQniH1G6Tcxsjiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.740 [XNIO-1 task-1] nI2LuCxjQniH1G6Tcxsjiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/edb8b318, base path is set to: null +16:40:14.740 [XNIO-1 task-1] nI2LuCxjQniH1G6Tcxsjiw DEBUG com.networknt.schema.TypeValidator debug - validate( "edb8b318", "edb8b318", userId) +16:40:14.746 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dbe7ddcd +16:40:14.746 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.746 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.746 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:14.746 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dbe7ddcd +16:40:14.747 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPassword":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPasswordConfirm":"36c75869-1b55-4ca2-9f30-98c61b88a50a"}, {"password":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPassword":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPasswordConfirm":"36c75869-1b55-4ca2-9f30-98c61b88a50a"}, requestBody) +16:40:14.747 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPassword":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPasswordConfirm":"36c75869-1b55-4ca2-9f30-98c61b88a50a"}, {"password":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPassword":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPasswordConfirm":"36c75869-1b55-4ca2-9f30-98c61b88a50a"}, requestBody) +16:40:14.747 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG com.networknt.schema.FormatValidator debug - validate( "36c75869-1b55-4ca2-9f30-98c61b88a50a", {"password":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPassword":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPasswordConfirm":"36c75869-1b55-4ca2-9f30-98c61b88a50a"}, requestBody.newPasswordConfirm) +16:40:14.747 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG com.networknt.schema.FormatValidator debug - validate( "1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c", {"password":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPassword":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPasswordConfirm":"36c75869-1b55-4ca2-9f30-98c61b88a50a"}, requestBody.password) +16:40:14.747 [XNIO-1 task-1] jMobDJLYTuCSAherjXpIDw DEBUG com.networknt.schema.FormatValidator debug - validate( "36c75869-1b55-4ca2-9f30-98c61b88a50a", {"password":"1a9d64d7-5ec0-4b75-9e0c-eb0b5e011c8c","newPassword":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPasswordConfirm":"36c75869-1b55-4ca2-9f30-98c61b88a50a"}, requestBody.newPassword) +16:40:14.756 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:8a16f496-274c-41f5-9af0-815bbdf66798 +16:40:14.764 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:227c7615 +16:40:14.768 [XNIO-1 task-1] pyYtWZ3BTbaQ2HgJjeKIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1298e403 +16:40:14.768 [XNIO-1 task-1] pyYtWZ3BTbaQ2HgJjeKIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.768 [XNIO-1 task-1] pyYtWZ3BTbaQ2HgJjeKIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.768 [XNIO-1 task-1] pyYtWZ3BTbaQ2HgJjeKIig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/1298e403 +16:40:14.772 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:8a16f496-274c-41f5-9af0-815bbdf66798 +16:40:14.777 [XNIO-1 task-1] DzEPnstZROShPY0CgE7wQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.777 [XNIO-1 task-1] DzEPnstZROShPY0CgE7wQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.777 [XNIO-1 task-1] DzEPnstZROShPY0CgE7wQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.792 [XNIO-1 task-1] PLrkOqQzTkaj2AerFxmoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9dc2194 +16:40:14.792 [XNIO-1 task-1] PLrkOqQzTkaj2AerFxmoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.792 [XNIO-1 task-1] PLrkOqQzTkaj2AerFxmoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.792 [XNIO-1 task-1] PLrkOqQzTkaj2AerFxmoGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9dc2194 +16:40:14.800 [XNIO-1 task-1] YlTTtWnqT_iVLLnNxUF68g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/edb8b318, base path is set to: null +16:40:14.800 [XNIO-1 task-1] YlTTtWnqT_iVLLnNxUF68g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.800 [XNIO-1 task-1] YlTTtWnqT_iVLLnNxUF68g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.801 [XNIO-1 task-1] YlTTtWnqT_iVLLnNxUF68g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/edb8b318, base path is set to: null +16:40:14.801 [XNIO-1 task-1] YlTTtWnqT_iVLLnNxUF68g DEBUG com.networknt.schema.TypeValidator debug - validate( "edb8b318", "edb8b318", userId) +16:40:14.804 [XNIO-1 task-1] 1letDbdhS5mr-tvzJrCjeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.805 [XNIO-1 task-1] 1letDbdhS5mr-tvzJrCjeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.805 [XNIO-1 task-1] 1letDbdhS5mr-tvzJrCjeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.805 [XNIO-1 task-1] 1letDbdhS5mr-tvzJrCjeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:14.805 [XNIO-1 task-1] 1letDbdhS5mr-tvzJrCjeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:14.813 [XNIO-1 task-1] eVF_Y2HxQ3iyPcvsK_EpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9dc2194 +16:40:14.813 [XNIO-1 task-1] eVF_Y2HxQ3iyPcvsK_EpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.813 [XNIO-1 task-1] eVF_Y2HxQ3iyPcvsK_EpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.813 [XNIO-1 task-1] eVF_Y2HxQ3iyPcvsK_EpXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f9dc2194 +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/edb8b318, base path is set to: null +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/edb8b318, base path is set to: null +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "edb8b318", "edb8b318", userId) +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"1fbd960f-c75b-4de0-9b5c-0403eb00f670","newPassword":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec","newPasswordConfirm":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec"}, {"password":"1fbd960f-c75b-4de0-9b5c-0403eb00f670","newPassword":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec","newPasswordConfirm":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec"}, requestBody) +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3c9a6fe-45ae-4897-8405-1cd9b55abeec", {"password":"1fbd960f-c75b-4de0-9b5c-0403eb00f670","newPassword":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec","newPasswordConfirm":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec"}, requestBody.newPasswordConfirm) +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1fbd960f-c75b-4de0-9b5c-0403eb00f670", {"password":"1fbd960f-c75b-4de0-9b5c-0403eb00f670","newPassword":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec","newPasswordConfirm":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec"}, requestBody.password) +16:40:14.818 [XNIO-1 task-1] CnUH6jM2Saadg9cE_aIHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "a3c9a6fe-45ae-4897-8405-1cd9b55abeec", {"password":"1fbd960f-c75b-4de0-9b5c-0403eb00f670","newPassword":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec","newPasswordConfirm":"a3c9a6fe-45ae-4897-8405-1cd9b55abeec"}, requestBody.newPassword) +16:40:14.840 [XNIO-1 task-1] 1_y-7atlTsyRtqPCywMKlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.840 [XNIO-1 task-1] 1_y-7atlTsyRtqPCywMKlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.840 [XNIO-1 task-1] 1_y-7atlTsyRtqPCywMKlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:14.857 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9eabd60b-6020-444f-8c02-aa802d770e94 +16:40:14.859 [XNIO-1 task-1] 94Txgn4MSEiEwCwvXEzGvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/03bcceab, base path is set to: null +16:40:14.860 [XNIO-1 task-1] 94Txgn4MSEiEwCwvXEzGvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.860 [XNIO-1 task-1] 94Txgn4MSEiEwCwvXEzGvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.860 [XNIO-1 task-1] 94Txgn4MSEiEwCwvXEzGvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/03bcceab, base path is set to: null +16:40:14.860 [XNIO-1 task-1] 94Txgn4MSEiEwCwvXEzGvw DEBUG com.networknt.schema.TypeValidator debug - validate( "03bcceab", "03bcceab", userId) +16:40:14.869 [XNIO-1 task-1] 3vPxxRa2SUyMrpYeV1RnuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.869 [XNIO-1 task-1] 3vPxxRa2SUyMrpYeV1RnuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.869 [XNIO-1 task-1] 3vPxxRa2SUyMrpYeV1RnuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.880 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9dc2194 +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/f9dc2194 +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"9451fa66-6d16-4867-a8fb-8313c9dc4f51","newPassword":"44833235-1c93-4834-af32-870266dd7dcf","newPasswordConfirm":"44833235-1c93-4834-af32-870266dd7dcf"}, {"password":"9451fa66-6d16-4867-a8fb-8313c9dc4f51","newPassword":"44833235-1c93-4834-af32-870266dd7dcf","newPasswordConfirm":"44833235-1c93-4834-af32-870266dd7dcf"}, requestBody) +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"9451fa66-6d16-4867-a8fb-8313c9dc4f51","newPassword":"44833235-1c93-4834-af32-870266dd7dcf","newPasswordConfirm":"44833235-1c93-4834-af32-870266dd7dcf"}, {"password":"9451fa66-6d16-4867-a8fb-8313c9dc4f51","newPassword":"44833235-1c93-4834-af32-870266dd7dcf","newPasswordConfirm":"44833235-1c93-4834-af32-870266dd7dcf"}, requestBody) +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "44833235-1c93-4834-af32-870266dd7dcf", {"password":"9451fa66-6d16-4867-a8fb-8313c9dc4f51","newPassword":"44833235-1c93-4834-af32-870266dd7dcf","newPasswordConfirm":"44833235-1c93-4834-af32-870266dd7dcf"}, requestBody.newPasswordConfirm) +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "9451fa66-6d16-4867-a8fb-8313c9dc4f51", {"password":"9451fa66-6d16-4867-a8fb-8313c9dc4f51","newPassword":"44833235-1c93-4834-af32-870266dd7dcf","newPasswordConfirm":"44833235-1c93-4834-af32-870266dd7dcf"}, requestBody.password) +16:40:14.881 [XNIO-1 task-1] Ns44dyLMTkeqVxXJOJoxYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "44833235-1c93-4834-af32-870266dd7dcf", {"password":"9451fa66-6d16-4867-a8fb-8313c9dc4f51","newPassword":"44833235-1c93-4834-af32-870266dd7dcf","newPasswordConfirm":"44833235-1c93-4834-af32-870266dd7dcf"}, requestBody.newPassword) +16:40:14.897 [XNIO-1 task-1] CYA3GqSfR2ejzVKIzpm08Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.897 [XNIO-1 task-1] CYA3GqSfR2ejzVKIzpm08Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.897 [XNIO-1 task-1] CYA3GqSfR2ejzVKIzpm08Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.898 [XNIO-1 task-1] CYA3GqSfR2ejzVKIzpm08Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:14.919 [XNIO-1 task-1] ZeD63p_4S-6kZqImcOBi9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dbe7ddcd +16:40:14.919 [XNIO-1 task-1] ZeD63p_4S-6kZqImcOBi9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.919 [XNIO-1 task-1] ZeD63p_4S-6kZqImcOBi9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.919 [XNIO-1 task-1] ZeD63p_4S-6kZqImcOBi9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dbe7ddcd +16:40:14.922 [XNIO-1 task-1] rbxA49TtS96ia928MGMiXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be52e1b3, base path is set to: null +16:40:14.923 [XNIO-1 task-1] rbxA49TtS96ia928MGMiXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.923 [XNIO-1 task-1] rbxA49TtS96ia928MGMiXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.923 [XNIO-1 task-1] rbxA49TtS96ia928MGMiXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be52e1b3, base path is set to: null +16:40:14.923 [XNIO-1 task-1] rbxA49TtS96ia928MGMiXA DEBUG com.networknt.schema.TypeValidator debug - validate( "be52e1b3", "be52e1b3", userId) +16:40:14.937 [XNIO-1 task-1] HonTyo_TRWizJnsK556Tgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.937 [XNIO-1 task-1] HonTyo_TRWizJnsK556Tgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.937 [XNIO-1 task-1] HonTyo_TRWizJnsK556Tgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.943 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:430d76a3-13d3-46e4-977e-f6b33a84f94e +16:40:14.959 [XNIO-1 task-1] iRZB3bTlQL6fOL8FYg9biA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be52e1b3, base path is set to: null +16:40:14.959 [XNIO-1 task-1] iRZB3bTlQL6fOL8FYg9biA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.959 [XNIO-1 task-1] iRZB3bTlQL6fOL8FYg9biA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.959 [XNIO-1 task-1] iRZB3bTlQL6fOL8FYg9biA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be52e1b3, base path is set to: null +16:40:14.959 [XNIO-1 task-1] iRZB3bTlQL6fOL8FYg9biA DEBUG com.networknt.schema.TypeValidator debug - validate( "be52e1b3", "be52e1b3", userId) +16:40:14.972 [XNIO-1 task-1] dG1hnB83RLSMLrmgWQctzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7a3e327d +16:40:14.972 [XNIO-1 task-1] dG1hnB83RLSMLrmgWQctzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.972 [XNIO-1 task-1] dG1hnB83RLSMLrmgWQctzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:14.972 [XNIO-1 task-1] dG1hnB83RLSMLrmgWQctzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7a3e327d +16:40:14.985 [XNIO-1 task-1] Fxy7zjNGQvqSvYXYq65J8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9d9a73e, base path is set to: null +16:40:14.985 [XNIO-1 task-1] Fxy7zjNGQvqSvYXYq65J8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:14.985 [XNIO-1 task-1] Fxy7zjNGQvqSvYXYq65J8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:14.986 [XNIO-1 task-1] Fxy7zjNGQvqSvYXYq65J8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c9d9a73e, base path is set to: null +16:40:14.986 [XNIO-1 task-1] Fxy7zjNGQvqSvYXYq65J8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c9d9a73e", "c9d9a73e", userId) +16:40:14.995 [XNIO-1 task-1] Tw-4j-HFQzWqkSjBx-6NIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.995 [XNIO-1 task-1] Tw-4j-HFQzWqkSjBx-6NIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:14.996 [XNIO-1 task-1] Tw-4j-HFQzWqkSjBx-6NIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.008 [XNIO-1 task-1] RRSOrHJZQRGcJmG4F0momQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.008 [XNIO-1 task-1] RRSOrHJZQRGcJmG4F0momQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.008 [XNIO-1 task-1] RRSOrHJZQRGcJmG4F0momQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.017 [XNIO-1 task-1] H2UkaevDSgi2wh1BcgulEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/edb8b318 +16:40:15.017 [XNIO-1 task-1] H2UkaevDSgi2wh1BcgulEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.017 [XNIO-1 task-1] H2UkaevDSgi2wh1BcgulEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.017 [XNIO-1 task-1] H2UkaevDSgi2wh1BcgulEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/edb8b318 +16:40:15.031 [XNIO-1 task-1] 1PwYnRWOQPqXMQHlRJPM8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f9dc2194, base path is set to: null +16:40:15.031 [XNIO-1 task-1] 1PwYnRWOQPqXMQHlRJPM8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.032 [XNIO-1 task-1] 1PwYnRWOQPqXMQHlRJPM8g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.032 [XNIO-1 task-1] 1PwYnRWOQPqXMQHlRJPM8g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f9dc2194, base path is set to: null +16:40:15.032 [XNIO-1 task-1] 1PwYnRWOQPqXMQHlRJPM8g DEBUG com.networknt.schema.TypeValidator debug - validate( "f9dc2194", "f9dc2194", userId) +16:40:15.044 [XNIO-1 task-1] bmB5yNjgR4WoCTrJdb1QnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c9d9a73e +16:40:15.044 [XNIO-1 task-1] bmB5yNjgR4WoCTrJdb1QnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.044 [XNIO-1 task-1] bmB5yNjgR4WoCTrJdb1QnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.044 [XNIO-1 task-1] bmB5yNjgR4WoCTrJdb1QnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c9d9a73e +16:40:15.054 [XNIO-1 task-1] P8UvLD_wRb-7LtK-rlk_Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.054 [XNIO-1 task-1] P8UvLD_wRb-7LtK-rlk_Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.054 [XNIO-1 task-1] P8UvLD_wRb-7LtK-rlk_Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.070 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:858731f1-5009-40f1-b26f-d2bbd6f1949f +16:40:15.072 [XNIO-1 task-1] VBc8llq9Qr67kFYJpcqxng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.072 [XNIO-1 task-1] VBc8llq9Qr67kFYJpcqxng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.072 [XNIO-1 task-1] VBc8llq9Qr67kFYJpcqxng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.072 [XNIO-1 task-1] VBc8llq9Qr67kFYJpcqxng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.079 [XNIO-1 task-1] P4s72b8KTDeqkRGHa7hnYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.079 [XNIO-1 task-1] P4s72b8KTDeqkRGHa7hnYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.079 [XNIO-1 task-1] P4s72b8KTDeqkRGHa7hnYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.086 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:858731f1-5009-40f1-b26f-d2bbd6f1949f +16:40:15.088 [XNIO-1 task-1] kPc3gFwHTMe9I2-TN61kJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.088 [XNIO-1 task-1] kPc3gFwHTMe9I2-TN61kJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.088 [XNIO-1 task-1] kPc3gFwHTMe9I2-TN61kJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.107 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dbe7ddcd +16:40:15.107 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dbe7ddcd +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPassword":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPasswordConfirm":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab"}, {"password":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPassword":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPasswordConfirm":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab"}, requestBody) +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPassword":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPasswordConfirm":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab"}, {"password":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPassword":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPasswordConfirm":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab"}, requestBody) +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG com.networknt.schema.FormatValidator debug - validate( "8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab", {"password":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPassword":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPasswordConfirm":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab"}, requestBody.newPasswordConfirm) +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG com.networknt.schema.FormatValidator debug - validate( "36c75869-1b55-4ca2-9f30-98c61b88a50a", {"password":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPassword":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPasswordConfirm":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab"}, requestBody.password) +16:40:15.108 [XNIO-1 task-1] zVvh26PhTbiyJi4kBlpQYg DEBUG com.networknt.schema.FormatValidator debug - validate( "8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab", {"password":"36c75869-1b55-4ca2-9f30-98c61b88a50a","newPassword":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPasswordConfirm":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab"}, requestBody.newPassword) +16:40:15.130 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:506850b2 +16:40:15.130 [XNIO-1 task-1] VQ5no5SFSoWzQ3aF1zVEsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c2a07d79, base path is set to: null +16:40:15.130 [XNIO-1 task-1] VQ5no5SFSoWzQ3aF1zVEsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.130 [XNIO-1 task-1] VQ5no5SFSoWzQ3aF1zVEsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.130 [XNIO-1 task-1] VQ5no5SFSoWzQ3aF1zVEsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c2a07d79, base path is set to: null +16:40:15.130 [XNIO-1 task-1] VQ5no5SFSoWzQ3aF1zVEsg DEBUG com.networknt.schema.TypeValidator debug - validate( "c2a07d79", "c2a07d79", userId) +16:40:15.143 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dbe7ddcd +16:40:15.143 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.143 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.143 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:15.143 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dbe7ddcd +16:40:15.144 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPassword":"d0c83043-f7da-442a-850f-10c7eb97353c","newPasswordConfirm":"d0c83043-f7da-442a-850f-10c7eb97353c"}, {"password":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPassword":"d0c83043-f7da-442a-850f-10c7eb97353c","newPasswordConfirm":"d0c83043-f7da-442a-850f-10c7eb97353c"}, requestBody) +16:40:15.144 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPassword":"d0c83043-f7da-442a-850f-10c7eb97353c","newPasswordConfirm":"d0c83043-f7da-442a-850f-10c7eb97353c"}, {"password":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPassword":"d0c83043-f7da-442a-850f-10c7eb97353c","newPasswordConfirm":"d0c83043-f7da-442a-850f-10c7eb97353c"}, requestBody) +16:40:15.144 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG com.networknt.schema.FormatValidator debug - validate( "d0c83043-f7da-442a-850f-10c7eb97353c", {"password":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPassword":"d0c83043-f7da-442a-850f-10c7eb97353c","newPasswordConfirm":"d0c83043-f7da-442a-850f-10c7eb97353c"}, requestBody.newPasswordConfirm) +16:40:15.144 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG com.networknt.schema.FormatValidator debug - validate( "8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab", {"password":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPassword":"d0c83043-f7da-442a-850f-10c7eb97353c","newPasswordConfirm":"d0c83043-f7da-442a-850f-10c7eb97353c"}, requestBody.password) +16:40:15.144 [XNIO-1 task-1] ImhHUT9TROyTSRY4zS1gzA DEBUG com.networknt.schema.FormatValidator debug - validate( "d0c83043-f7da-442a-850f-10c7eb97353c", {"password":"8b3c0fbf-cbe6-4c22-ad3b-71b8c483e4ab","newPassword":"d0c83043-f7da-442a-850f-10c7eb97353c","newPasswordConfirm":"d0c83043-f7da-442a-850f-10c7eb97353c"}, requestBody.newPassword) +16:40:15.158 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4ca6af9b-b363-4f39-9c8e-e0fff1fc5fbf +16:40:15.167 [XNIO-1 task-1] jvUtNnAjRISYMAs5-speuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:15.167 [XNIO-1 task-1] jvUtNnAjRISYMAs5-speuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.167 [XNIO-1 task-1] jvUtNnAjRISYMAs5-speuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.167 [XNIO-1 task-1] jvUtNnAjRISYMAs5-speuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/dbe7ddcd, base path is set to: null +16:40:15.167 [XNIO-1 task-1] jvUtNnAjRISYMAs5-speuA DEBUG com.networknt.schema.TypeValidator debug - validate( "dbe7ddcd", "dbe7ddcd", userId) +16:40:15.176 [XNIO-1 task-1] Jy9Tq5mxRJu9W1E1I8wFMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.176 [XNIO-1 task-1] Jy9Tq5mxRJu9W1E1I8wFMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.176 [XNIO-1 task-1] Jy9Tq5mxRJu9W1E1I8wFMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.177 [XNIO-1 task-1] Jy9Tq5mxRJu9W1E1I8wFMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.183 [XNIO-1 task-1] vvjYmmFBQUKBdkcIDIZ4Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.183 [XNIO-1 task-1] vvjYmmFBQUKBdkcIDIZ4Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.183 [XNIO-1 task-1] vvjYmmFBQUKBdkcIDIZ4Dg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.183 [XNIO-1 task-1] vvjYmmFBQUKBdkcIDIZ4Dg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.194 [XNIO-1 task-1] YEreeCGNTSKuyK860tUmxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.194 [XNIO-1 task-1] YEreeCGNTSKuyK860tUmxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.194 [XNIO-1 task-1] YEreeCGNTSKuyK860tUmxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.194 [XNIO-1 task-1] YEreeCGNTSKuyK860tUmxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.197 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:855005ba-2cad-4149-a654-aa1e14aeab74 +16:40:15.200 [XNIO-1 task-1] 1aDc9cjqS-yY7-D5ZqOSDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.201 [XNIO-1 task-1] 1aDc9cjqS-yY7-D5ZqOSDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.201 [XNIO-1 task-1] 1aDc9cjqS-yY7-D5ZqOSDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.214 [XNIO-1 task-1] NHN1bMoNTeeGfXFvWif-TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.214 [XNIO-1 task-1] NHN1bMoNTeeGfXFvWif-TA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.214 [XNIO-1 task-1] NHN1bMoNTeeGfXFvWif-TA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.219 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9b2ab305 +16:40:15.223 [XNIO-1 task-1] zmfOsJINRkGa-R5LHaObGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.223 [XNIO-1 task-1] zmfOsJINRkGa-R5LHaObGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.223 [XNIO-1 task-1] zmfOsJINRkGa-R5LHaObGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:15.243 [XNIO-1 task-1] NrrQzHE9Q2asWZxya5XcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2873acb4 +16:40:15.243 [XNIO-1 task-1] NrrQzHE9Q2asWZxya5XcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.243 [XNIO-1 task-1] NrrQzHE9Q2asWZxya5XcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.244 [XNIO-1 task-1] NrrQzHE9Q2asWZxya5XcQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/2873acb4 +16:40:15.251 [XNIO-1 task-1] GVMUfdaAQTGTEFaxDK7Apg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.251 [XNIO-1 task-1] GVMUfdaAQTGTEFaxDK7Apg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.251 [XNIO-1 task-1] GVMUfdaAQTGTEFaxDK7Apg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.267 [XNIO-1 task-1] 5JEBa2iPRGGzxQ5CT0WbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.267 [XNIO-1 task-1] 5JEBa2iPRGGzxQ5CT0WbjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.267 [XNIO-1 task-1] 5JEBa2iPRGGzxQ5CT0WbjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.272 [XNIO-1 task-1] ZK8tO3-USxKY9Uqul_KAoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c165b791, base path is set to: null +16:40:15.272 [XNIO-1 task-1] ZK8tO3-USxKY9Uqul_KAoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.273 [XNIO-1 task-1] ZK8tO3-USxKY9Uqul_KAoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.273 [XNIO-1 task-1] ZK8tO3-USxKY9Uqul_KAoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c165b791, base path is set to: null +16:40:15.273 [XNIO-1 task-1] ZK8tO3-USxKY9Uqul_KAoA DEBUG com.networknt.schema.TypeValidator debug - validate( "c165b791", "c165b791", userId) +16:40:15.284 [XNIO-1 task-1] 3qX_Bhe_SnyZNmHpyKqHhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.284 [XNIO-1 task-1] 3qX_Bhe_SnyZNmHpyKqHhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.284 [XNIO-1 task-1] 3qX_Bhe_SnyZNmHpyKqHhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.303 [XNIO-1 task-1] WEuAb1HLReG83PkQLUAZyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.303 [XNIO-1 task-1] WEuAb1HLReG83PkQLUAZyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.303 [XNIO-1 task-1] WEuAb1HLReG83PkQLUAZyQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.303 [XNIO-1 task-1] WEuAb1HLReG83PkQLUAZyQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.307 [XNIO-1 task-1] XBpAhExvRL6gqSPQGA4qiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a383c67b +16:40:15.307 [XNIO-1 task-1] XBpAhExvRL6gqSPQGA4qiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.308 [XNIO-1 task-1] XBpAhExvRL6gqSPQGA4qiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.308 [XNIO-1 task-1] XBpAhExvRL6gqSPQGA4qiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a383c67b +16:40:15.319 [XNIO-1 task-1] nCKunWFYQsiXosRFlTUUwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.319 [XNIO-1 task-1] nCKunWFYQsiXosRFlTUUwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.319 [XNIO-1 task-1] nCKunWFYQsiXosRFlTUUwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.320 [XNIO-1 task-1] nCKunWFYQsiXosRFlTUUwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.332 [XNIO-1 task-1] CK-RuVZ2RViynsMcSZjVPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.333 [XNIO-1 task-1] CK-RuVZ2RViynsMcSZjVPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.333 [XNIO-1 task-1] CK-RuVZ2RViynsMcSZjVPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.333 [XNIO-1 task-1] CK-RuVZ2RViynsMcSZjVPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.336 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:591a68c5-b60f-49e9-b68f-0f08bbd0352b +16:40:15.340 [XNIO-1 task-1] 7bFdi5LXTJycbqdRGYMYaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.340 [XNIO-1 task-1] 7bFdi5LXTJycbqdRGYMYaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.340 [XNIO-1 task-1] 7bFdi5LXTJycbqdRGYMYaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.354 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:430d76a3-13d3-46e4-977e-f6b33a84f94e +16:40:15.364 [XNIO-1 task-1] JlKJZUr_S5iphPSVY-Wgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.364 [XNIO-1 task-1] JlKJZUr_S5iphPSVY-Wgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.365 [XNIO-1 task-1] JlKJZUr_S5iphPSVY-Wgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.379 [XNIO-1 task-1] QMjCTWDgR72rEVrdgzWwOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/918e4d8f +16:40:15.379 [XNIO-1 task-1] QMjCTWDgR72rEVrdgzWwOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.379 [XNIO-1 task-1] QMjCTWDgR72rEVrdgzWwOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.379 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29410429 +16:40:15.380 [XNIO-1 task-1] QMjCTWDgR72rEVrdgzWwOw DEBUG com.networknt.schema.TypeValidator debug - validate( "918e4d8f", "918e4d8f", userId) +16:40:15.385 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:29410429 +16:40:15.385 [XNIO-1 task-1] guEaqvjHQWmeZOhZMP1oOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.385 [XNIO-1 task-1] guEaqvjHQWmeZOhZMP1oOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.385 [XNIO-1 task-1] guEaqvjHQWmeZOhZMP1oOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.386 [XNIO-1 task-1] guEaqvjHQWmeZOhZMP1oOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.393 [XNIO-1 task-1] 95l9S-2dRza2WOoTTB1fag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.393 [XNIO-1 task-1] 95l9S-2dRza2WOoTTB1fag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.393 [XNIO-1 task-1] 95l9S-2dRza2WOoTTB1fag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.398 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:29ac78da +16:40:15.404 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/29ac78da, base path is set to: null +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/29ac78da, base path is set to: null +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG com.networknt.schema.TypeValidator debug - validate( "29ac78da", "29ac78da", userId) +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"61ffa8df-de2e-4a18-894a-acbc6d9197d6","newPassword":"bba20d01-fc20-40ac-9a78-7f0c794f9f51","newPasswordConfirm":"bba20d01-fc20-40ac-9a78-7f0c794f9f51"}, {"password":"61ffa8df-de2e-4a18-894a-acbc6d9197d6","newPassword":"bba20d01-fc20-40ac-9a78-7f0c794f9f51","newPasswordConfirm":"bba20d01-fc20-40ac-9a78-7f0c794f9f51"}, requestBody) +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG com.networknt.schema.TypeValidator debug - validate( "bba20d01-fc20-40ac-9a78-7f0c794f9f51", {"password":"61ffa8df-de2e-4a18-894a-acbc6d9197d6","newPassword":"bba20d01-fc20-40ac-9a78-7f0c794f9f51","newPasswordConfirm":"bba20d01-fc20-40ac-9a78-7f0c794f9f51"}, requestBody.newPasswordConfirm) +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG com.networknt.schema.TypeValidator debug - validate( "61ffa8df-de2e-4a18-894a-acbc6d9197d6", {"password":"61ffa8df-de2e-4a18-894a-acbc6d9197d6","newPassword":"bba20d01-fc20-40ac-9a78-7f0c794f9f51","newPasswordConfirm":"bba20d01-fc20-40ac-9a78-7f0c794f9f51"}, requestBody.password) +16:40:15.405 [XNIO-1 task-1] JQQl3NQbQyS7RnwFhBNX-w DEBUG com.networknt.schema.TypeValidator debug - validate( "bba20d01-fc20-40ac-9a78-7f0c794f9f51", {"password":"61ffa8df-de2e-4a18-894a-acbc6d9197d6","newPassword":"bba20d01-fc20-40ac-9a78-7f0c794f9f51","newPasswordConfirm":"bba20d01-fc20-40ac-9a78-7f0c794f9f51"}, requestBody.newPassword) +16:40:15.415 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:29ac78da +16:40:15.425 [XNIO-1 task-1] Dg7ZQDZLRC6pEWCrmelINQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/29ac78da, base path is set to: null +16:40:15.425 [XNIO-1 task-1] Dg7ZQDZLRC6pEWCrmelINQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.426 [XNIO-1 task-1] Dg7ZQDZLRC6pEWCrmelINQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.426 [XNIO-1 task-1] Dg7ZQDZLRC6pEWCrmelINQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/29ac78da, base path is set to: null +16:40:15.426 [XNIO-1 task-1] Dg7ZQDZLRC6pEWCrmelINQ DEBUG com.networknt.schema.TypeValidator debug - validate( "29ac78da", "29ac78da", userId) +16:40:15.436 [XNIO-1 task-1] vnTqTGyxSMy_7V72j1x0rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.438 [XNIO-1 task-1] vnTqTGyxSMy_7V72j1x0rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.438 [XNIO-1 task-1] vnTqTGyxSMy_7V72j1x0rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.438 [XNIO-1 task-1] vnTqTGyxSMy_7V72j1x0rg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.445 [XNIO-1 task-1] UyWNdRlaQki7ImcKCr_ArA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.445 [XNIO-1 task-1] UyWNdRlaQki7ImcKCr_ArA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.445 [XNIO-1 task-1] UyWNdRlaQki7ImcKCr_ArA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.453 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:603735df +16:40:15.454 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:603735df +16:40:15.464 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:928e4f05-3e65-43fa-b93c-2918c6c879f5 +16:40:15.465 [XNIO-1 task-1] _cVa_JUWTYmSxEz1hr2UYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.465 [XNIO-1 task-1] _cVa_JUWTYmSxEz1hr2UYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.466 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:928e4f05-3e65-43fa-b93c-2918c6c879f5 +16:40:15.472 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:24f74ea7 +16:40:15.474 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60e110b9 +16:40:15.475 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60e110b9 +16:40:15.481 [XNIO-1 task-1] 2j2YpkP9TjaZezZgsQkBdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.481 [XNIO-1 task-1] 2j2YpkP9TjaZezZgsQkBdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.481 [XNIO-1 task-1] 2j2YpkP9TjaZezZgsQkBdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.489 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ac9f6fb9 +16:40:15.490 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:ac9f6fb9 +16:40:15.498 [XNIO-1 task-1] 2JVsiZcUT1OD_Tds6ZxDvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.498 [XNIO-1 task-1] 2JVsiZcUT1OD_Tds6ZxDvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.498 [XNIO-1 task-1] 2JVsiZcUT1OD_Tds6ZxDvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.498 [XNIO-1 task-1] 2JVsiZcUT1OD_Tds6ZxDvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.503 [XNIO-1 task-1] 7n4MXoUHSsWmcoazz03u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/603735df +16:40:15.503 [XNIO-1 task-1] 7n4MXoUHSsWmcoazz03u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.503 [XNIO-1 task-1] 7n4MXoUHSsWmcoazz03u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.503 [XNIO-1 task-1] 7n4MXoUHSsWmcoazz03u_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/603735df +16:40:15.503 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:603735df +16:40:15.514 [XNIO-1 task-1] cbS4GNd0RgeEwDUXbFgfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.514 [XNIO-1 task-1] cbS4GNd0RgeEwDUXbFgfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.515 [XNIO-1 task-1] cbS4GNd0RgeEwDUXbFgfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.515 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60e110b9 +16:40:15.535 [XNIO-1 task-1] 39JRQQxxRLKPFjeKGW_9qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.535 [XNIO-1 task-1] 39JRQQxxRLKPFjeKGW_9qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.535 [XNIO-1 task-1] 39JRQQxxRLKPFjeKGW_9qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.535 [XNIO-1 task-1] 39JRQQxxRLKPFjeKGW_9qw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.543 [XNIO-1 task-1] _Z4ReXmmTbCXFgVSTN0A-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.543 [XNIO-1 task-1] _Z4ReXmmTbCXFgVSTN0A-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.543 [XNIO-1 task-1] _Z4ReXmmTbCXFgVSTN0A-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.543 [XNIO-1 task-1] _Z4ReXmmTbCXFgVSTN0A-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.555 [XNIO-1 task-1] h1Pw_KGRS5SmXkg1c9cGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ac9f6fb9 +16:40:15.555 [XNIO-1 task-1] h1Pw_KGRS5SmXkg1c9cGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.555 [XNIO-1 task-1] h1Pw_KGRS5SmXkg1c9cGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.555 [XNIO-1 task-1] h1Pw_KGRS5SmXkg1c9cGig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ac9f6fb9 +16:40:15.555 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:ac9f6fb9 +16:40:15.569 [XNIO-1 task-1] AsQxiRPZTsGdD1xWPfLkIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.569 [XNIO-1 task-1] AsQxiRPZTsGdD1xWPfLkIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.570 [XNIO-1 task-1] AsQxiRPZTsGdD1xWPfLkIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.570 [XNIO-1 task-1] AsQxiRPZTsGdD1xWPfLkIA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.575 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60e110b9 +16:40:15.575 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60e110b9 +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"69bc0c61-2641-4f53-b183-d332127b7388","newPassword":"34ed4d3d-539d-4794-97f0-9932a4754131","newPasswordConfirm":"34ed4d3d-539d-4794-97f0-9932a4754131"}, {"password":"69bc0c61-2641-4f53-b183-d332127b7388","newPassword":"34ed4d3d-539d-4794-97f0-9932a4754131","newPasswordConfirm":"34ed4d3d-539d-4794-97f0-9932a4754131"}, requestBody) +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"69bc0c61-2641-4f53-b183-d332127b7388","newPassword":"34ed4d3d-539d-4794-97f0-9932a4754131","newPasswordConfirm":"34ed4d3d-539d-4794-97f0-9932a4754131"}, {"password":"69bc0c61-2641-4f53-b183-d332127b7388","newPassword":"34ed4d3d-539d-4794-97f0-9932a4754131","newPasswordConfirm":"34ed4d3d-539d-4794-97f0-9932a4754131"}, requestBody) +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG com.networknt.schema.FormatValidator debug - validate( "34ed4d3d-539d-4794-97f0-9932a4754131", {"password":"69bc0c61-2641-4f53-b183-d332127b7388","newPassword":"34ed4d3d-539d-4794-97f0-9932a4754131","newPasswordConfirm":"34ed4d3d-539d-4794-97f0-9932a4754131"}, requestBody.newPasswordConfirm) +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG com.networknt.schema.FormatValidator debug - validate( "69bc0c61-2641-4f53-b183-d332127b7388", {"password":"69bc0c61-2641-4f53-b183-d332127b7388","newPassword":"34ed4d3d-539d-4794-97f0-9932a4754131","newPasswordConfirm":"34ed4d3d-539d-4794-97f0-9932a4754131"}, requestBody.password) +16:40:15.576 [XNIO-1 task-1] lftTjem4RlG1ep1-EW3Ghw DEBUG com.networknt.schema.FormatValidator debug - validate( "34ed4d3d-539d-4794-97f0-9932a4754131", {"password":"69bc0c61-2641-4f53-b183-d332127b7388","newPassword":"34ed4d3d-539d-4794-97f0-9932a4754131","newPasswordConfirm":"34ed4d3d-539d-4794-97f0-9932a4754131"}, requestBody.newPassword) +16:40:15.589 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60e110b9 +16:40:15.601 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60e110b9 +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/60e110b9 +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"34ed4d3d-539d-4794-97f0-9932a4754131","newPassword":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7","newPasswordConfirm":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7"}, {"password":"34ed4d3d-539d-4794-97f0-9932a4754131","newPassword":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7","newPasswordConfirm":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7"}, requestBody) +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"34ed4d3d-539d-4794-97f0-9932a4754131","newPassword":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7","newPasswordConfirm":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7"}, {"password":"34ed4d3d-539d-4794-97f0-9932a4754131","newPassword":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7","newPasswordConfirm":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7"}, requestBody) +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG com.networknt.schema.FormatValidator debug - validate( "e32c04a1-19e9-41d1-9a4c-545f27c2b3f7", {"password":"34ed4d3d-539d-4794-97f0-9932a4754131","newPassword":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7","newPasswordConfirm":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7"}, requestBody.newPasswordConfirm) +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG com.networknt.schema.FormatValidator debug - validate( "34ed4d3d-539d-4794-97f0-9932a4754131", {"password":"34ed4d3d-539d-4794-97f0-9932a4754131","newPassword":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7","newPasswordConfirm":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7"}, requestBody.password) +16:40:15.602 [XNIO-1 task-1] 6EkUKqEBSoCb4dgM63BOtg DEBUG com.networknt.schema.FormatValidator debug - validate( "e32c04a1-19e9-41d1-9a4c-545f27c2b3f7", {"password":"34ed4d3d-539d-4794-97f0-9932a4754131","newPassword":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7","newPasswordConfirm":"e32c04a1-19e9-41d1-9a4c-545f27c2b3f7"}, requestBody.newPassword) +16:40:15.612 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:60e110b9 +16:40:15.619 [XNIO-1 task-1] p1jrxUu_T1efLbLGZZ0LkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/60e110b9 +16:40:15.619 [XNIO-1 task-1] p1jrxUu_T1efLbLGZZ0LkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.619 [XNIO-1 task-1] p1jrxUu_T1efLbLGZZ0LkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.619 [XNIO-1 task-1] p1jrxUu_T1efLbLGZZ0LkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/60e110b9 +16:40:15.620 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:60e110b9 +16:40:15.631 [XNIO-1 task-1] tgSxLY-JTz6vYk5pkILmGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.631 [XNIO-1 task-1] tgSxLY-JTz6vYk5pkILmGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.631 [XNIO-1 task-1] tgSxLY-JTz6vYk5pkILmGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.649 [XNIO-1 task-1] TvhBUivEQ3K4jTFtSSVMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.649 [XNIO-1 task-1] TvhBUivEQ3K4jTFtSSVMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.649 [XNIO-1 task-1] TvhBUivEQ3K4jTFtSSVMvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.649 [XNIO-1 task-1] TvhBUivEQ3K4jTFtSSVMvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.658 [XNIO-1 task-1] GgGfEcZRRteUuBECwXo3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d249056d +16:40:15.658 [XNIO-1 task-1] GgGfEcZRRteUuBECwXo3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.658 [XNIO-1 task-1] GgGfEcZRRteUuBECwXo3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.658 [XNIO-1 task-1] GgGfEcZRRteUuBECwXo3gw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d249056d +16:40:15.665 [XNIO-1 task-1] YkNY-pFMSOuk2yq7CC6Q-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.666 [XNIO-1 task-1] YkNY-pFMSOuk2yq7CC6Q-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.666 [XNIO-1 task-1] YkNY-pFMSOuk2yq7CC6Q-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.666 [XNIO-1 task-1] YkNY-pFMSOuk2yq7CC6Q-w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.669 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4e7d7126-7169-4d3b-81d8-080ed96a7d1e +16:40:15.670 [XNIO-1 task-1] HzOQZ6c8TmWQ7WWVTlv9CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.670 [XNIO-1 task-1] HzOQZ6c8TmWQ7WWVTlv9CQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.670 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:4e7d7126-7169-4d3b-81d8-080ed96a7d1e +16:40:15.671 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4e7d7126-7169-4d3b-81d8-080ed96a7d1e +16:40:15.671 [XNIO-1 task-1] HzOQZ6c8TmWQ7WWVTlv9CQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.676 [XNIO-1 task-1] iMPVU3eIRuKzYCBDRAJxQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.676 [XNIO-1 task-1] iMPVU3eIRuKzYCBDRAJxQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.676 [XNIO-1 task-1] iMPVU3eIRuKzYCBDRAJxQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.694 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4e7d7126-7169-4d3b-81d8-080ed96a7d1e +16:40:15.700 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:506850b2 +16:40:15.706 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7e31b039 +16:40:15.713 [XNIO-1 task-1] 2Op4DCgZROyijAD0etbI0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.714 [XNIO-1 task-1] 2Op4DCgZROyijAD0etbI0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.714 [XNIO-1 task-1] 2Op4DCgZROyijAD0etbI0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.714 [XNIO-1 task-1] 2Op4DCgZROyijAD0etbI0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.721 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7e31b039, base path is set to: null +16:40:15.721 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7e31b039, base path is set to: null +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7e31b039", "7e31b039", userId) +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"64c2139f-4de2-4d9b-b851-9ec434eeb3a5","newPassword":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPasswordConfirm":"d4610ca4-c082-4a49-a3ee-9b6572128572"}, {"password":"64c2139f-4de2-4d9b-b851-9ec434eeb3a5","newPassword":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPasswordConfirm":"d4610ca4-c082-4a49-a3ee-9b6572128572"}, requestBody) +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d4610ca4-c082-4a49-a3ee-9b6572128572", {"password":"64c2139f-4de2-4d9b-b851-9ec434eeb3a5","newPassword":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPasswordConfirm":"d4610ca4-c082-4a49-a3ee-9b6572128572"}, requestBody.newPasswordConfirm) +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "64c2139f-4de2-4d9b-b851-9ec434eeb3a5", {"password":"64c2139f-4de2-4d9b-b851-9ec434eeb3a5","newPassword":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPasswordConfirm":"d4610ca4-c082-4a49-a3ee-9b6572128572"}, requestBody.password) +16:40:15.722 [XNIO-1 task-1] sA07xUjySouwqWHr43Y-GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d4610ca4-c082-4a49-a3ee-9b6572128572", {"password":"64c2139f-4de2-4d9b-b851-9ec434eeb3a5","newPassword":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPasswordConfirm":"d4610ca4-c082-4a49-a3ee-9b6572128572"}, requestBody.newPassword) +16:40:15.732 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7e31b039 +16:40:15.741 [XNIO-1 task-1] 5iptonLUR2asK_WptYH7qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.741 [XNIO-1 task-1] 5iptonLUR2asK_WptYH7qA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.741 [XNIO-1 task-1] 5iptonLUR2asK_WptYH7qA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.742 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7e31b039 +16:40:15.751 [XNIO-1 task-1] bjCk16GFTXyE3DaOSn5mPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7e31b039, base path is set to: null +16:40:15.752 [XNIO-1 task-1] bjCk16GFTXyE3DaOSn5mPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.752 [XNIO-1 task-1] bjCk16GFTXyE3DaOSn5mPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.752 [XNIO-1 task-1] bjCk16GFTXyE3DaOSn5mPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7e31b039, base path is set to: null +16:40:15.752 [XNIO-1 task-1] bjCk16GFTXyE3DaOSn5mPA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e31b039", "7e31b039", userId) +16:40:15.758 [XNIO-1 task-1] XgDtzoC5SnGyeZQhvpt6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.758 [XNIO-1 task-1] XgDtzoC5SnGyeZQhvpt6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.758 [XNIO-1 task-1] XgDtzoC5SnGyeZQhvpt6OA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.758 [XNIO-1 task-1] XgDtzoC5SnGyeZQhvpt6OA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.766 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7e31b039 +16:40:15.766 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.766 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.766 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:15.766 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7e31b039 +16:40:15.767 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPassword":"5f80d7cd-1608-4849-8cc8-98f1aefda805","newPasswordConfirm":"5f80d7cd-1608-4849-8cc8-98f1aefda805"}, {"password":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPassword":"5f80d7cd-1608-4849-8cc8-98f1aefda805","newPasswordConfirm":"5f80d7cd-1608-4849-8cc8-98f1aefda805"}, requestBody) +16:40:15.767 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPassword":"5f80d7cd-1608-4849-8cc8-98f1aefda805","newPasswordConfirm":"5f80d7cd-1608-4849-8cc8-98f1aefda805"}, {"password":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPassword":"5f80d7cd-1608-4849-8cc8-98f1aefda805","newPasswordConfirm":"5f80d7cd-1608-4849-8cc8-98f1aefda805"}, requestBody) +16:40:15.767 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG com.networknt.schema.FormatValidator debug - validate( "5f80d7cd-1608-4849-8cc8-98f1aefda805", {"password":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPassword":"5f80d7cd-1608-4849-8cc8-98f1aefda805","newPasswordConfirm":"5f80d7cd-1608-4849-8cc8-98f1aefda805"}, requestBody.newPasswordConfirm) +16:40:15.767 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG com.networknt.schema.FormatValidator debug - validate( "d4610ca4-c082-4a49-a3ee-9b6572128572", {"password":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPassword":"5f80d7cd-1608-4849-8cc8-98f1aefda805","newPasswordConfirm":"5f80d7cd-1608-4849-8cc8-98f1aefda805"}, requestBody.password) +16:40:15.767 [XNIO-1 task-1] n2bawRLtS3emBHbX_sVVQw DEBUG com.networknt.schema.FormatValidator debug - validate( "5f80d7cd-1608-4849-8cc8-98f1aefda805", {"password":"d4610ca4-c082-4a49-a3ee-9b6572128572","newPassword":"5f80d7cd-1608-4849-8cc8-98f1aefda805","newPasswordConfirm":"5f80d7cd-1608-4849-8cc8-98f1aefda805"}, requestBody.newPassword) +16:40:15.778 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7e31b039 +16:40:15.784 [XNIO-1 task-1] HJ2WaHi_Qba0z5kcGHFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7e31b039 +16:40:15.784 [XNIO-1 task-1] HJ2WaHi_Qba0z5kcGHFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.784 [XNIO-1 task-1] HJ2WaHi_Qba0z5kcGHFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.784 [XNIO-1 task-1] HJ2WaHi_Qba0z5kcGHFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7e31b039 +16:40:15.791 [XNIO-1 task-1] GPDWBFoeRruY0XUGT_RE-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.791 [XNIO-1 task-1] GPDWBFoeRruY0XUGT_RE-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.791 [XNIO-1 task-1] GPDWBFoeRruY0XUGT_RE-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.804 [XNIO-1 task-1] N4S_m8BPTmicNkuK4Mcpcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3954a4a0, base path is set to: null +16:40:15.804 [XNIO-1 task-1] N4S_m8BPTmicNkuK4Mcpcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.804 [XNIO-1 task-1] N4S_m8BPTmicNkuK4Mcpcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.804 [XNIO-1 task-1] N4S_m8BPTmicNkuK4Mcpcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3954a4a0, base path is set to: null +16:40:15.805 [XNIO-1 task-1] N4S_m8BPTmicNkuK4Mcpcg DEBUG com.networknt.schema.TypeValidator debug - validate( "3954a4a0", "3954a4a0", userId) +16:40:15.817 [XNIO-1 task-1] 3M496nV4QBmgsJ14t3SxUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7e31b039, base path is set to: null +16:40:15.817 [XNIO-1 task-1] 3M496nV4QBmgsJ14t3SxUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.817 [XNIO-1 task-1] 3M496nV4QBmgsJ14t3SxUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.817 [XNIO-1 task-1] 3M496nV4QBmgsJ14t3SxUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7e31b039, base path is set to: null +16:40:15.817 [XNIO-1 task-1] 3M496nV4QBmgsJ14t3SxUw DEBUG com.networknt.schema.TypeValidator debug - validate( "7e31b039", "7e31b039", userId) +16:40:15.824 [XNIO-1 task-1] YgvbK4T1QhqqH11f9dtKsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.824 [XNIO-1 task-1] YgvbK4T1QhqqH11f9dtKsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.824 [XNIO-1 task-1] YgvbK4T1QhqqH11f9dtKsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.824 [XNIO-1 task-1] YgvbK4T1QhqqH11f9dtKsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.829 [XNIO-1 task-1] 4kcMY-lqQEeVQhvnqW3Flw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.829 [XNIO-1 task-1] 4kcMY-lqQEeVQhvnqW3Flw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.830 [XNIO-1 task-1] 4kcMY-lqQEeVQhvnqW3Flw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.848 [XNIO-1 task-1] SofZE7ukS4KHlGSD-ld9FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be684aee, base path is set to: null +16:40:15.848 [XNIO-1 task-1] SofZE7ukS4KHlGSD-ld9FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.848 [XNIO-1 task-1] SofZE7ukS4KHlGSD-ld9FQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.848 [XNIO-1 task-1] SofZE7ukS4KHlGSD-ld9FQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/be684aee, base path is set to: null +16:40:15.848 [XNIO-1 task-1] SofZE7ukS4KHlGSD-ld9FQ DEBUG com.networknt.schema.TypeValidator debug - validate( "be684aee", "be684aee", userId) +16:40:15.854 [XNIO-1 task-1] iL2jHK6YRQeBInMX_Qdh2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.854 [XNIO-1 task-1] iL2jHK6YRQeBInMX_Qdh2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.854 [XNIO-1 task-1] iL2jHK6YRQeBInMX_Qdh2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.854 [XNIO-1 task-1] iL2jHK6YRQeBInMX_Qdh2Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.859 [XNIO-1 task-1] AsAZeWqnTxi3xKeM9LpGjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.859 [XNIO-1 task-1] AsAZeWqnTxi3xKeM9LpGjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.859 [XNIO-1 task-1] AsAZeWqnTxi3xKeM9LpGjw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.859 [XNIO-1 task-1] AsAZeWqnTxi3xKeM9LpGjw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.862 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:3028b368-593e-4d2a-b73b-002020754b33 +16:40:15.862 [XNIO-1 task-1] FZqTZtJXQ_qdKVeis_W6Uw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.862 [XNIO-1 task-1] FZqTZtJXQ_qdKVeis_W6Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.862 [XNIO-1 task-1] FZqTZtJXQ_qdKVeis_W6Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.863 [XNIO-1 task-1] FZqTZtJXQ_qdKVeis_W6Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.869 [XNIO-1 task-1] I0ZHtICkQgSBfFqa93NWrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.869 [XNIO-1 task-1] I0ZHtICkQgSBfFqa93NWrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.869 [XNIO-1 task-1] I0ZHtICkQgSBfFqa93NWrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.887 [XNIO-1 task-1] hr0GkHOgTZuC4tZXRqQG1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/78a28422 +16:40:15.887 [XNIO-1 task-1] hr0GkHOgTZuC4tZXRqQG1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.887 [XNIO-1 task-1] hr0GkHOgTZuC4tZXRqQG1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.887 [XNIO-1 task-1] hr0GkHOgTZuC4tZXRqQG1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/78a28422 +16:40:15.897 [XNIO-1 task-1] bg97WzovQAipPIsbCefWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.897 [XNIO-1 task-1] bg97WzovQAipPIsbCefWUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.898 [XNIO-1 task-1] bg97WzovQAipPIsbCefWUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.904 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:e189d43d-17df-471a-9a0c-28af254eff06 +16:40:15.905 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e189d43d-17df-471a-9a0c-28af254eff06 +16:40:15.910 [XNIO-1 task-1] SW4j1H2dTCeGmNCP9wuJ4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.910 [XNIO-1 task-1] SW4j1H2dTCeGmNCP9wuJ4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.910 [XNIO-1 task-1] SW4j1H2dTCeGmNCP9wuJ4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.910 [XNIO-1 task-1] SW4j1H2dTCeGmNCP9wuJ4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.917 [XNIO-1 task-1] Fw0lxy3SRi2BuCrAGHP2LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.917 [XNIO-1 task-1] Fw0lxy3SRi2BuCrAGHP2LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.917 [XNIO-1 task-1] Fw0lxy3SRi2BuCrAGHP2LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:15.917 [XNIO-1 task-1] Fw0lxy3SRi2BuCrAGHP2LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:15.919 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3028b368-593e-4d2a-b73b-002020754b33 +16:40:15.949 [XNIO-1 task-1] YRyrNeUeT1GGBrqnB-nHTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ade9546a +16:40:15.949 [XNIO-1 task-1] YRyrNeUeT1GGBrqnB-nHTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.949 [XNIO-1 task-1] YRyrNeUeT1GGBrqnB-nHTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:15.950 [XNIO-1 task-1] YRyrNeUeT1GGBrqnB-nHTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ade9546a +16:40:15.956 [XNIO-1 task-1] 5YDR82UFQt2pWJxLJxoaIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ade9546a, base path is set to: null +16:40:15.956 [XNIO-1 task-1] 5YDR82UFQt2pWJxLJxoaIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.956 [XNIO-1 task-1] 5YDR82UFQt2pWJxLJxoaIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.956 [XNIO-1 task-1] 5YDR82UFQt2pWJxLJxoaIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/ade9546a, base path is set to: null +16:40:15.956 [XNIO-1 task-1] 5YDR82UFQt2pWJxLJxoaIw DEBUG com.networknt.schema.TypeValidator debug - validate( "ade9546a", "ade9546a", userId) +16:40:15.963 [XNIO-1 task-1] zlEKXR13TbiPlAhVkHzK1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.963 [XNIO-1 task-1] zlEKXR13TbiPlAhVkHzK1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.963 [XNIO-1 task-1] zlEKXR13TbiPlAhVkHzK1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.982 [XNIO-1 task-1] EiG1fud7SbCRFuimRSLBiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.982 [XNIO-1 task-1] EiG1fud7SbCRFuimRSLBiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.982 [XNIO-1 task-1] EiG1fud7SbCRFuimRSLBiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:15.982 [XNIO-1 task-1] EiG1fud7SbCRFuimRSLBiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:15.991 [XNIO-1 task-1] DWylTP4jRwqYMuwS0Mq-7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f76a269c, base path is set to: null +16:40:15.991 [XNIO-1 task-1] DWylTP4jRwqYMuwS0Mq-7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:15.991 [XNIO-1 task-1] DWylTP4jRwqYMuwS0Mq-7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:15.991 [XNIO-1 task-1] DWylTP4jRwqYMuwS0Mq-7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f76a269c, base path is set to: null +16:40:15.992 [XNIO-1 task-1] DWylTP4jRwqYMuwS0Mq-7A DEBUG com.networknt.schema.TypeValidator debug - validate( "f76a269c", "f76a269c", userId) +16:40:15.992 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f0f8caf7 diff --git a/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-client-1.log b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-client-1.log new file mode 100644 index 0000000..b291290 --- /dev/null +++ b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-client-1.log @@ -0,0 +1,6612 @@ + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.048 [XNIO-1 task-1] -1lALsCyQCmXcVleftPrlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:42.082 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bd314503 +16:40:42.082 [XNIO-1 task-1] z3K-aO7HSOCOYHLdVG9ZBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.082 [XNIO-1 task-1] z3K-aO7HSOCOYHLdVG9ZBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.082 [XNIO-1 task-1] z3K-aO7HSOCOYHLdVG9ZBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.083 [XNIO-1 task-1] z3K-aO7HSOCOYHLdVG9ZBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:42.090 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5cf4361b-b7b1-4611-9262-9e8838c25b9c +16:40:42.092 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bd314503 +16:40:42.097 [XNIO-1 task-1] 4dtEplKiRmmhcmW7f7cV3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.097 [XNIO-1 task-1] 4dtEplKiRmmhcmW7f7cV3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.097 [XNIO-1 task-1] 4dtEplKiRmmhcmW7f7cV3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.097 [XNIO-1 task-1] 4dtEplKiRmmhcmW7f7cV3w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:42.108 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.108 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.108 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "db8ea892-8614-48a8-98b0-172b5b53a056", {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "a4ca054c-5bca-4208-8d75-095edc7f", {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a4ca054c-5bca-4208-8d75-095edc7f","clientDesc":"db8ea892-8614-48a8-98b0-172b5b53a056","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.109 [XNIO-1 task-1] Oju7N5jhQK-8rGHgSTLxbA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.111 [XNIO-1 task-1] 9R7km-G0SByMPa6JOQLvzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.112 [XNIO-1 task-1] 9R7km-G0SByMPa6JOQLvzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.112 [XNIO-1 task-1] 9R7km-G0SByMPa6JOQLvzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.112 [XNIO-1 task-1] 9R7km-G0SByMPa6JOQLvzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.139 [XNIO-1 task-1] JOd6CQZVSx26U9BKqYYKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed5f80a3-0584-4f77-ab47-bc370ad680c9, base path is set to: null +16:40:42.140 [XNIO-1 task-1] JOd6CQZVSx26U9BKqYYKSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.140 [XNIO-1 task-1] JOd6CQZVSx26U9BKqYYKSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.140 [XNIO-1 task-1] JOd6CQZVSx26U9BKqYYKSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ed5f80a3-0584-4f77-ab47-bc370ad680c9, base path is set to: null +16:40:42.140 [XNIO-1 task-1] JOd6CQZVSx26U9BKqYYKSg DEBUG com.networknt.schema.TypeValidator debug - validate( "ed5f80a3-0584-4f77-ab47-bc370ad680c9", "ed5f80a3-0584-4f77-ab47-bc370ad680c9", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:42.144 [XNIO-1 task-1] JOd6CQZVSx26U9BKqYYKSg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/ed5f80a3-0584-4f77-ab47-bc370ad680c9} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.151 [XNIO-1 task-1] SemoIat5QK2SSZZfKGOAng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5c48f03a-4232-44d0-afc3-fc43a6c0b579, base path is set to: null +16:40:42.151 [XNIO-1 task-1] SemoIat5QK2SSZZfKGOAng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.151 [XNIO-1 task-1] SemoIat5QK2SSZZfKGOAng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.151 [XNIO-1 task-1] SemoIat5QK2SSZZfKGOAng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5c48f03a-4232-44d0-afc3-fc43a6c0b579, base path is set to: null +16:40:42.151 [XNIO-1 task-1] SemoIat5QK2SSZZfKGOAng DEBUG com.networknt.schema.TypeValidator debug - validate( "5c48f03a-4232-44d0-afc3-fc43a6c0b579", "5c48f03a-4232-44d0-afc3-fc43a6c0b579", clientId) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at ------ submitted from ------.(Unknown Source) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:79) + at com.hazelcast.map.impl.proxy.MapProxySupport.invokeOperation(MapProxySupport.java:434) + at com.hazelcast.map.impl.proxy.NearCachedMapProxyImpl.deleteInternal(NearCachedMapProxyImpl.java:340) + at com.networknt.oauth.client.handler.Oauth2ClientClientIdDeleteHandler.handleRequest(Oauth2ClientClientIdDeleteHandler.java:67) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:42.157 [XNIO-1 task-1] SemoIat5QK2SSZZfKGOAng DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ DELETE /oauth2/client/5c48f03a-4232-44d0-afc3-fc43a6c0b579} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.163 [XNIO-1 task-1] 8CruuYqUSsapuR1GwkB6rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.163 [XNIO-1 task-1] 8CruuYqUSsapuR1GwkB6rg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.163 [XNIO-1 task-1] 8CruuYqUSsapuR1GwkB6rg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.183 [XNIO-1 task-1] 8Cyhq6PPQVGmHpwx2QKiQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55413e1d-cdd0-434e-b948-994a54a354f6, base path is set to: null +16:40:42.184 [XNIO-1 task-1] 8Cyhq6PPQVGmHpwx2QKiQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.184 [XNIO-1 task-1] 8Cyhq6PPQVGmHpwx2QKiQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.184 [XNIO-1 task-1] 8Cyhq6PPQVGmHpwx2QKiQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/55413e1d-cdd0-434e-b948-994a54a354f6, base path is set to: null +16:40:42.184 [XNIO-1 task-1] 8Cyhq6PPQVGmHpwx2QKiQg DEBUG com.networknt.schema.TypeValidator debug - validate( "55413e1d-cdd0-434e-b948-994a54a354f6", "55413e1d-cdd0-434e-b948-994a54a354f6", clientId) +16:40:42.191 [XNIO-1 task-1] KUmmTtKjSYiIiOm6c120BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8938532f-5c49-4f7d-99a1-c5e8bf3b071b, base path is set to: null +16:40:42.191 [XNIO-1 task-1] KUmmTtKjSYiIiOm6c120BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.191 [XNIO-1 task-1] KUmmTtKjSYiIiOm6c120BA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.192 [XNIO-1 task-1] KUmmTtKjSYiIiOm6c120BA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8938532f-5c49-4f7d-99a1-c5e8bf3b071b, base path is set to: null +16:40:42.192 [XNIO-1 task-1] KUmmTtKjSYiIiOm6c120BA DEBUG com.networknt.schema.TypeValidator debug - validate( "8938532f-5c49-4f7d-99a1-c5e8bf3b071b", "8938532f-5c49-4f7d-99a1-c5e8bf3b071b", clientId) +16:40:42.200 [XNIO-1 task-1] Xc1FrKUyQpinCIwPwbj9WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c8da9485-cf1c-4384-a6dc-54c024ede67a, base path is set to: null +16:40:42.200 [XNIO-1 task-1] Xc1FrKUyQpinCIwPwbj9WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.200 [XNIO-1 task-1] Xc1FrKUyQpinCIwPwbj9WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.200 [XNIO-1 task-1] Xc1FrKUyQpinCIwPwbj9WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c8da9485-cf1c-4384-a6dc-54c024ede67a, base path is set to: null +16:40:42.201 [XNIO-1 task-1] Xc1FrKUyQpinCIwPwbj9WA DEBUG com.networknt.schema.TypeValidator debug - validate( "c8da9485-cf1c-4384-a6dc-54c024ede67a", "c8da9485-cf1c-4384-a6dc-54c024ede67a", clientId) +16:40:42.209 [XNIO-1 task-1] NLtQgk7VQoWepq4wCr3nNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.209 [XNIO-1 task-1] NLtQgk7VQoWepq4wCr3nNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.209 [XNIO-1 task-1] NLtQgk7VQoWepq4wCr3nNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.209 [XNIO-1 task-1] NLtQgk7VQoWepq4wCr3nNA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:42.229 [XNIO-1 task-1] EDINP0__RWGjYAuLNoG0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0d4f266b-a001-4c40-9959-9ed6fd2cff96 +16:40:42.229 [XNIO-1 task-1] EDINP0__RWGjYAuLNoG0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.229 [XNIO-1 task-1] EDINP0__RWGjYAuLNoG0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:42.229 [XNIO-1 task-1] EDINP0__RWGjYAuLNoG0hg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0d4f266b-a001-4c40-9959-9ed6fd2cff96 +16:40:42.245 [XNIO-1 task-1] HduZJklnRQ2z9pupRh_K3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.245 [XNIO-1 task-1] HduZJklnRQ2z9pupRh_K3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.245 [XNIO-1 task-1] HduZJklnRQ2z9pupRh_K3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.263 [XNIO-1 task-1] 65ey_XToQwmqDFCy3uTu2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eee66718-7c94-4f28-885b-f7a231bd706a, base path is set to: null +16:40:42.263 [XNIO-1 task-1] 65ey_XToQwmqDFCy3uTu2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.263 [XNIO-1 task-1] 65ey_XToQwmqDFCy3uTu2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.263 [XNIO-1 task-1] 65ey_XToQwmqDFCy3uTu2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eee66718-7c94-4f28-885b-f7a231bd706a, base path is set to: null +16:40:42.263 [XNIO-1 task-1] 65ey_XToQwmqDFCy3uTu2A DEBUG com.networknt.schema.TypeValidator debug - validate( "eee66718-7c94-4f28-885b-f7a231bd706a", "eee66718-7c94-4f28-885b-f7a231bd706a", clientId) +16:40:42.276 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.277 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.277 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.277 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.277 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:42.277 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG com.networknt.schema.TypeValidator debug - validate( "080384de-ec96-4699-8523-638912cb5d38", {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:42.277 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.277 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.278 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG com.networknt.schema.TypeValidator debug - validate( "17bb437a-1b74-49a7-a46e-3458c18f", {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:42.278 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:42.278 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"17bb437a-1b74-49a7-a46e-3458c18f","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:42.278 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.278 [XNIO-1 task-1] LbanL6IUTjGe6GxQaG693A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.281 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.281 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.281 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"eb00817f-8d52-4380-b4ff-79fb2524","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.282 [XNIO-1 task-1] nouZyPRzSTKeTwy4P51nfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:42.290 [XNIO-1 task-1] FQucc0w6SxWlm4P4J5HKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f +16:40:42.290 [XNIO-1 task-1] FQucc0w6SxWlm4P4J5HKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.290 [XNIO-1 task-1] FQucc0w6SxWlm4P4J5HKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:42.290 [XNIO-1 task-1] FQucc0w6SxWlm4P4J5HKUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f +16:40:42.296 [XNIO-1 task-1] FQucc0w6SxWlm4P4J5HKUg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolve(InvocationFuture.java:126) + at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:163) + at com.hazelcast.map.impl.proxy.MapProxySupport.deleteInternal(MapProxySupport.java:584) + at com.hazelcast.map.impl.proxy.MapProxyImpl.delete(MapProxyImpl.java:292) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.296 [XNIO-1 task-1] FQucc0w6SxWlm4P4J5HKUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:42.301 [XNIO-1 task-1] D6qR_KG4QbCVcv5XIIwZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f +16:40:42.301 [XNIO-1 task-1] D6qR_KG4QbCVcv5XIIwZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.301 [XNIO-1 task-1] D6qR_KG4QbCVcv5XIIwZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:42.301 [XNIO-1 task-1] D6qR_KG4QbCVcv5XIIwZCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f +16:40:42.304 [XNIO-1 task-1] 4-4WoPSOQWuH0YEh03X66Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f, base path is set to: null +16:40:42.305 [XNIO-1 task-1] 4-4WoPSOQWuH0YEh03X66Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.305 [XNIO-1 task-1] 4-4WoPSOQWuH0YEh03X66Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.305 [XNIO-1 task-1] 4-4WoPSOQWuH0YEh03X66Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f, base path is set to: null +16:40:42.305 [XNIO-1 task-1] 4-4WoPSOQWuH0YEh03X66Q DEBUG com.networknt.schema.TypeValidator debug - validate( "6d160976-7ba4-4e6d-80a5-e7a6a21da91f", "6d160976-7ba4-4e6d-80a5-e7a6a21da91f", clientId) +16:40:42.308 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.308 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.308 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.308 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "4077ddc1-2299-494c-a08b-c40786bad720", {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "a112fd0e-04b3-49ad-be78-c2e6a1e5", {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a112fd0e-04b3-49ad-be78-c2e6a1e5","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.309 [XNIO-1 task-1] P3vhTP1vTm-vhO3U54KUtw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.318 [XNIO-1 task-1] NXnTtwERSGeOjyjh5_heyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f, base path is set to: null +16:40:42.318 [XNIO-1 task-1] NXnTtwERSGeOjyjh5_heyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.318 [XNIO-1 task-1] NXnTtwERSGeOjyjh5_heyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.318 [XNIO-1 task-1] NXnTtwERSGeOjyjh5_heyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/6d160976-7ba4-4e6d-80a5-e7a6a21da91f, base path is set to: null +16:40:42.318 [XNIO-1 task-1] NXnTtwERSGeOjyjh5_heyw DEBUG com.networknt.schema.TypeValidator debug - validate( "6d160976-7ba4-4e6d-80a5-e7a6a21da91f", "6d160976-7ba4-4e6d-80a5-e7a6a21da91f", clientId) +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG com.networknt.schema.TypeValidator debug - validate( "4077ddc1-2299-494c-a08b-c40786bad720", {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.321 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.322 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG com.networknt.schema.TypeValidator debug - validate( "faf2ea54-92d7-4c27-a5c2-e86505b8", {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:42.322 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:42.322 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"faf2ea54-92d7-4c27-a5c2-e86505b8","clientDesc":"4077ddc1-2299-494c-a08b-c40786bad720","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:42.322 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.322 [XNIO-1 task-1] YUyukSfQSWWfxVhjAp_k8A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.329 [XNIO-1 task-1] OUl40lHyTjyPbfIDFrJZTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.329 [XNIO-1 task-1] OUl40lHyTjyPbfIDFrJZTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.329 [XNIO-1 task-1] OUl40lHyTjyPbfIDFrJZTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.329 [XNIO-1 task-1] OUl40lHyTjyPbfIDFrJZTg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:42.344 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.344 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.344 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.345 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e3e5301-8c73-428e-938c-aaf54b1b","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.346 [XNIO-1 task-1] 6qiKW_3lT_WyHLxizeKD6A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:42.353 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.353 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.353 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG com.networknt.schema.TypeValidator debug - validate( "dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a", {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG com.networknt.schema.TypeValidator debug - validate( "24b1f31a-0985-4c20-b8d5-4d717d2f", {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"24b1f31a-0985-4c20-b8d5-4d717d2f","clientDesc":"dd224ce3-e4d8-4c63-9e33-d7c0d46e8a1a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.354 [XNIO-1 task-1] FldREa-JT8WP75vfnJTaDg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.356 [XNIO-1 task-1] u_1fb1c_QD6H7iojG_uzwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.356 [XNIO-1 task-1] u_1fb1c_QD6H7iojG_uzwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.357 [XNIO-1 task-1] u_1fb1c_QD6H7iojG_uzwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:42.357 [XNIO-1 task-1] u_1fb1c_QD6H7iojG_uzwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:42.377 [XNIO-1 task-1] FLbHxpGdTOa0ib-Re_ysUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a43eb66-dc99-4901-ad93-527ea930a389, base path is set to: null +16:40:42.378 [XNIO-1 task-1] FLbHxpGdTOa0ib-Re_ysUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:42.378 [XNIO-1 task-1] FLbHxpGdTOa0ib-Re_ysUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:42.378 [XNIO-1 task-1] FLbHxpGdTOa0ib-Re_ysUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7a43eb66-dc99-4901-ad93-527ea930a389, base path is set to: null +16:40:42.378 [XNIO-1 task-1] FLbHxpGdTOa0ib-Re_ysUg DEBUG com.networknt.schema.TypeValidator debug - validate( "7a43eb66-dc99-4901-ad93-527ea930a389", "7a43eb66-dc99-4901-ad93-527ea930a389", clientId) +16:40:42.382 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.382 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG com.networknt.schema.TypeValidator debug - validate( "cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd", {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG com.networknt.schema.TypeValidator debug - validate( "9fd5adce-6d9f-4272-b714-331723c3", {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9fd5adce-6d9f-4272-b714-331723c3","clientDesc":"cc6dfeb4-4daa-4ea7-ae9f-4437c0ab09bd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:42.384 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:42.385 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:42.919 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d5c4e754 +16:40:44.432 [XNIO-1 task-1] QbmkTJBaRh6l4Qfy5tDikA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:44.434 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ac8cb3c6-3dd2-43b5-9e46-fd9414e2b93a +16:40:44.435 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d5c4e754 +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG com.networknt.schema.TypeValidator debug - validate( "080384de-ec96-4699-8523-638912cb5d38", {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG com.networknt.schema.TypeValidator debug - validate( "a987e29a-b996-4c1f-8bfb-b467cd54", {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:44.437 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:44.438 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a987e29a-b996-4c1f-8bfb-b467cd54","clientDesc":"080384de-ec96-4699-8523-638912cb5d38","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:44.438 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:44.438 [XNIO-1 task-1] YwNL8sCDTdmX9bQWjGcaQA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:44.439 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:87c3ad08-3ab9-4e00-910c-03e05f38272f +16:40:44.440 [XNIO-1 task-1] yRQRAg-ITvmJ7shvjnIPBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:44.440 [XNIO-1 task-1] yRQRAg-ITvmJ7shvjnIPBw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:44.440 [XNIO-1 task-1] yRQRAg-ITvmJ7shvjnIPBw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:44.440 [XNIO-1 task-1] yRQRAg-ITvmJ7shvjnIPBw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:44.457 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ac8cb3c6-3dd2-43b5-9e46-fd9414e2b93a +16:40:44.459 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:44.459 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:44.459 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "18d6d7d5-fc86-4656-b41c-14e6847fb13c", {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "b50bb345-3f6e-4437-a068-3dfdf46c", {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b50bb345-3f6e-4437-a068-3dfdf46c","clientDesc":"18d6d7d5-fc86-4656-b41c-14e6847fb13c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:44.460 [XNIO-1 task-1] dJxpyOz6S-qy5MMfvVIAUg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:44.464 [XNIO-1 task-1] KMv6awEGRTy--MPbLGP4Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:44.464 [XNIO-1 task-1] KMv6awEGRTy--MPbLGP4Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:44.464 [XNIO-1 task-1] KMv6awEGRTy--MPbLGP4Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:44.464 [XNIO-1 task-1] KMv6awEGRTy--MPbLGP4Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:48.989 [XNIO-1 task-1] 1jwSZ2B6RJ-0XynHeACW-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:48.989 [XNIO-1 task-1] 1jwSZ2B6RJ-0XynHeACW-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.012 [XNIO-1 task-1] 1jwSZ2B6RJ-0XynHeACW-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.056 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.056 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.058 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.059 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a61d472b-9179-4b0d-a6da-1f76c2d4","clientDesc":"05c9aaf2-bd14-48a5-ad03-07fa8f79e1a1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.060 [XNIO-1 task-1] 6os44Rg1TlmhLQA1wQjSVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.062 [XNIO-1 task-1] QC4g-J2QReuoM3SFW0nTOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/40463377-80ef-40b1-aaf0-4d93b67da149 +16:40:49.062 [XNIO-1 task-1] QC4g-J2QReuoM3SFW0nTOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.062 [XNIO-1 task-1] QC4g-J2QReuoM3SFW0nTOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.064 [XNIO-1 task-1] QC4g-J2QReuoM3SFW0nTOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/40463377-80ef-40b1-aaf0-4d93b67da149 +16:40:49.070 [XNIO-1 task-1] oDoYIG1yQbKvfgIf4bXNwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.070 [XNIO-1 task-1] oDoYIG1yQbKvfgIf4bXNwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.070 [XNIO-1 task-1] oDoYIG1yQbKvfgIf4bXNwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.086 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.087 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.087 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1fa4d4bd-c50f-4b58-b106-cc16f5f5","clientDesc":"c7c930c6-1d59-420e-8064-8dc66c447a50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.087 [XNIO-1 task-1] W4vR4dzjT-6NlN3fYO_1bA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.090 [XNIO-1 task-1] qz23a8EGSNeVjzqmb0d-Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/234d9587-c9e7-425d-aaa4-f1a64d3ba0db +16:40:49.090 [XNIO-1 task-1] qz23a8EGSNeVjzqmb0d-Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.090 [XNIO-1 task-1] qz23a8EGSNeVjzqmb0d-Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.090 [XNIO-1 task-1] qz23a8EGSNeVjzqmb0d-Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/234d9587-c9e7-425d-aaa4-f1a64d3ba0db +16:40:49.098 [XNIO-1 task-1] He8-v1qWS8KinYI7hxfeuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.098 [XNIO-1 task-1] He8-v1qWS8KinYI7hxfeuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.098 [XNIO-1 task-1] He8-v1qWS8KinYI7hxfeuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.110 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.111 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.112 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.113 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c21932af-27e9-4be6-aecb-2c2bc958","clientDesc":"8a7fa90d-8d91-4857-a2b9-8d77a1f2ec50","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.113 [XNIO-1 task-1] v6QRMJf6TgKFt_0kSoiqaA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.115 [XNIO-1 task-1] FIgWb3eLR2OwLS-HkDnziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.115 [XNIO-1 task-1] FIgWb3eLR2OwLS-HkDnziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.115 [XNIO-1 task-1] FIgWb3eLR2OwLS-HkDnziA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.115 [XNIO-1 task-1] FIgWb3eLR2OwLS-HkDnziA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.120 [XNIO-1 task-1] bymZG6_MQcqrt6a9LNUcwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6788ad3-cc88-452f-85ba-75ae5cfbebe9 +16:40:49.120 [XNIO-1 task-1] bymZG6_MQcqrt6a9LNUcwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.120 [XNIO-1 task-1] bymZG6_MQcqrt6a9LNUcwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.120 [XNIO-1 task-1] bymZG6_MQcqrt6a9LNUcwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f6788ad3-cc88-452f-85ba-75ae5cfbebe9 +16:40:49.125 [XNIO-1 task-1] P7LORquWQQK--d63YzZCfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.125 [XNIO-1 task-1] P7LORquWQQK--d63YzZCfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.125 [XNIO-1 task-1] P7LORquWQQK--d63YzZCfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.135 [XNIO-1 task-1] JvHRnHVLQ02KuCXbuM2mtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.135 [XNIO-1 task-1] JvHRnHVLQ02KuCXbuM2mtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.135 [XNIO-1 task-1] JvHRnHVLQ02KuCXbuM2mtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.145 [XNIO-1 task-1] O_iYwPzdTt-kYT_PCy-MeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36168c9-4b08-4fec-9d79-e85439eaa08c, base path is set to: null +16:40:49.145 [XNIO-1 task-1] O_iYwPzdTt-kYT_PCy-MeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.146 [XNIO-1 task-1] O_iYwPzdTt-kYT_PCy-MeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.146 [XNIO-1 task-1] O_iYwPzdTt-kYT_PCy-MeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b36168c9-4b08-4fec-9d79-e85439eaa08c, base path is set to: null +16:40:49.146 [XNIO-1 task-1] O_iYwPzdTt-kYT_PCy-MeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b36168c9-4b08-4fec-9d79-e85439eaa08c", "b36168c9-4b08-4fec-9d79-e85439eaa08c", clientId) +16:40:49.150 [XNIO-1 task-1] geAzuBJKTYGXhNBhYyG4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/48cf1de3-457b-487f-9b1c-c779bf2c2647 +16:40:49.150 [XNIO-1 task-1] geAzuBJKTYGXhNBhYyG4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.150 [XNIO-1 task-1] geAzuBJKTYGXhNBhYyG4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.150 [XNIO-1 task-1] geAzuBJKTYGXhNBhYyG4IA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/48cf1de3-457b-487f-9b1c-c779bf2c2647 +16:40:49.152 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.153 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ff9bc6b8-1887-4151-8bd3-3c83b42f","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.154 [XNIO-1 task-1] 9bgjxdFVRNu9Vp93ucTBiA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.155 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.155 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.155 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG com.networknt.schema.TypeValidator debug - validate( "d40afcf9-2d43-4e82-b852-ac7eda5aec26", {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG com.networknt.schema.TypeValidator debug - validate( "d08a7889-964e-4443-afc0-0e650624", {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d08a7889-964e-4443-afc0-0e650624","clientDesc":"d40afcf9-2d43-4e82-b852-ac7eda5aec26","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.156 [XNIO-1 task-1] KZpy8_otQxm4XW6C8Bqj7w DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.158 [XNIO-1 task-1] ul0krr8HRjWI90QRpQzfvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.158 [XNIO-1 task-1] ul0krr8HRjWI90QRpQzfvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.158 [XNIO-1 task-1] ul0krr8HRjWI90QRpQzfvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.169 [XNIO-1 task-1] dla1srQwQ1m5XlV_wcVzew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/48cf1de3-457b-487f-9b1c-c779bf2c2647, base path is set to: null +16:40:49.169 [XNIO-1 task-1] dla1srQwQ1m5XlV_wcVzew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.169 [XNIO-1 task-1] dla1srQwQ1m5XlV_wcVzew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.169 [XNIO-1 task-1] dla1srQwQ1m5XlV_wcVzew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/48cf1de3-457b-487f-9b1c-c779bf2c2647, base path is set to: null +16:40:49.169 [XNIO-1 task-1] dla1srQwQ1m5XlV_wcVzew DEBUG com.networknt.schema.TypeValidator debug - validate( "48cf1de3-457b-487f-9b1c-c779bf2c2647", "48cf1de3-457b-487f-9b1c-c779bf2c2647", clientId) +16:40:49.174 [XNIO-1 task-1] TkiaHTQzSPi5_WQXgvNWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.175 [XNIO-1 task-1] TkiaHTQzSPi5_WQXgvNWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.175 [XNIO-1 task-1] TkiaHTQzSPi5_WQXgvNWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.185 [XNIO-1 task-1] umvBLABYQWWP4XPFuksHcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.185 [XNIO-1 task-1] umvBLABYQWWP4XPFuksHcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.185 [XNIO-1 task-1] umvBLABYQWWP4XPFuksHcg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.195 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.195 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.195 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG com.networknt.schema.TypeValidator debug - validate( "9554bfd6-3215-4e0c-8942-58148749a577", {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG com.networknt.schema.TypeValidator debug - validate( "899dc561-2ca5-4627-a951-a0828b6a", {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"899dc561-2ca5-4627-a951-a0828b6a","clientDesc":"9554bfd6-3215-4e0c-8942-58148749a577","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.196 [XNIO-1 task-1] FnsCf5kEQxeY0Yad0Vwu2g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.198 [XNIO-1 task-1] K38x5duzRgGol0JvdgNTGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.199 [XNIO-1 task-1] K38x5duzRgGol0JvdgNTGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.199 [XNIO-1 task-1] K38x5duzRgGol0JvdgNTGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.203 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6bd125b6-8fad-4b4d-ba40-dcd332aea007 +16:40:49.204 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6bd125b6-8fad-4b4d-ba40-dcd332aea007 +16:40:49.209 [XNIO-1 task-1] Ol73VfvyT5-OIDcBYlyn5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.209 [XNIO-1 task-1] Ol73VfvyT5-OIDcBYlyn5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.209 [XNIO-1 task-1] Ol73VfvyT5-OIDcBYlyn5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.209 [XNIO-1 task-1] Ol73VfvyT5-OIDcBYlyn5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.214 [XNIO-1 task-1] SAtFsCEIRGyTh3QoieBW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.214 [XNIO-1 task-1] SAtFsCEIRGyTh3QoieBW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.215 [XNIO-1 task-1] SAtFsCEIRGyTh3QoieBW7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.226 [XNIO-1 task-1] TlBe5iOMQ_29xbiiRq73zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.226 [XNIO-1 task-1] TlBe5iOMQ_29xbiiRq73zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.227 [XNIO-1 task-1] TlBe5iOMQ_29xbiiRq73zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.237 [XNIO-1 task-1] q7O9dqdcTjKFuQ9o7NHt0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bd125b6-8fad-4b4d-ba40-dcd332aea007 +16:40:49.237 [XNIO-1 task-1] q7O9dqdcTjKFuQ9o7NHt0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.237 [XNIO-1 task-1] q7O9dqdcTjKFuQ9o7NHt0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.237 [XNIO-1 task-1] q7O9dqdcTjKFuQ9o7NHt0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bd125b6-8fad-4b4d-ba40-dcd332aea007 +16:40:49.239 [XNIO-1 task-1] rWBMIwgqSOS56yJl1QXDrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.240 [XNIO-1 task-1] rWBMIwgqSOS56yJl1QXDrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.240 [XNIO-1 task-1] rWBMIwgqSOS56yJl1QXDrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.252 [XNIO-1 task-1] _oh8O-vpT72eZSyk_f0UqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.253 [XNIO-1 task-1] _oh8O-vpT72eZSyk_f0UqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.253 [XNIO-1 task-1] _oh8O-vpT72eZSyk_f0UqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.253 [XNIO-1 task-1] _oh8O-vpT72eZSyk_f0UqA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.259 [XNIO-1 task-1] BH4ssle_QhiDBbVDFUFP1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/740e60b5-ffc6-45bf-8bc7-3f8324b56fac, base path is set to: null +16:40:49.259 [XNIO-1 task-1] BH4ssle_QhiDBbVDFUFP1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.259 [XNIO-1 task-1] BH4ssle_QhiDBbVDFUFP1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.259 [XNIO-1 task-1] BH4ssle_QhiDBbVDFUFP1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/740e60b5-ffc6-45bf-8bc7-3f8324b56fac, base path is set to: null +16:40:49.259 [XNIO-1 task-1] BH4ssle_QhiDBbVDFUFP1A DEBUG com.networknt.schema.TypeValidator debug - validate( "740e60b5-ffc6-45bf-8bc7-3f8324b56fac", "740e60b5-ffc6-45bf-8bc7-3f8324b56fac", clientId) +16:40:49.262 [XNIO-1 task-1] sMCau-XPSpOXKyGBn9uzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/740e60b5-ffc6-45bf-8bc7-3f8324b56fac +16:40:49.262 [XNIO-1 task-1] sMCau-XPSpOXKyGBn9uzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.262 [XNIO-1 task-1] sMCau-XPSpOXKyGBn9uzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.262 [XNIO-1 task-1] sMCau-XPSpOXKyGBn9uzZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/740e60b5-ffc6-45bf-8bc7-3f8324b56fac +16:40:49.269 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.269 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.269 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e94e85f5-aed1-4bc6-ae65-d31b1f96","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.270 [XNIO-1 task-1] 4zSdERMCTKSRDi7e1TsOYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.272 [XNIO-1 task-1] rGFxdaasSFSDinBZ4ZHAHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.272 [XNIO-1 task-1] rGFxdaasSFSDinBZ4ZHAHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.272 [XNIO-1 task-1] rGFxdaasSFSDinBZ4ZHAHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.283 [XNIO-1 task-1] CLge64Q0TDO4gFXGC3vQ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.283 [XNIO-1 task-1] CLge64Q0TDO4gFXGC3vQ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.283 [XNIO-1 task-1] CLge64Q0TDO4gFXGC3vQ0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.283 [XNIO-1 task-1] CLge64Q0TDO4gFXGC3vQ0g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.289 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.289 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2188be-8e79-44b1-835e-fd40f6d06360", {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "16cd05af-6be5-445b-acc4-383aa07c", {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"16cd05af-6be5-445b-acc4-383aa07c","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.290 [XNIO-1 task-1] 84TB7xcsTJWRaZBrGYMB_A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.292 [XNIO-1 task-1] G_0fl2XsQRyuOG924wnHlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.292 [XNIO-1 task-1] G_0fl2XsQRyuOG924wnHlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.292 [XNIO-1 task-1] G_0fl2XsQRyuOG924wnHlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.292 [XNIO-1 task-1] G_0fl2XsQRyuOG924wnHlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.297 [XNIO-1 task-1] z-OaM4RDRC2kQ0F0dzVX3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.298 [XNIO-1 task-1] z-OaM4RDRC2kQ0F0dzVX3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.298 [XNIO-1 task-1] z-OaM4RDRC2kQ0F0dzVX3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.298 [XNIO-1 task-1] z-OaM4RDRC2kQ0F0dzVX3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.304 [XNIO-1 task-1] NmNdNi6BR0aP9ZcoA2yGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.304 [XNIO-1 task-1] NmNdNi6BR0aP9ZcoA2yGzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.304 [XNIO-1 task-1] NmNdNi6BR0aP9ZcoA2yGzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.309 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:570c3104-fdf7-457e-a584-2fe17d6ef3d2 +16:40:49.310 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:570c3104-fdf7-457e-a584-2fe17d6ef3d2 +16:40:49.314 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.314 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG com.networknt.schema.TypeValidator debug - validate( "0d2188be-8e79-44b1-835e-fd40f6d06360", {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG com.networknt.schema.TypeValidator debug - validate( "ce109a3e-7865-44a4-b0c2-50e43dc6", {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ce109a3e-7865-44a4-b0c2-50e43dc6","clientDesc":"0d2188be-8e79-44b1-835e-fd40f6d06360","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.315 [XNIO-1 task-1] V4Dt3n1ZRGCbcPBwoEGRRA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.317 [XNIO-1 task-1] TL1JoPAzTiuSPYblBYMZxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/48cd3ce9-4a50-4af7-ab8b-3facf3099001, base path is set to: null +16:40:49.317 [XNIO-1 task-1] TL1JoPAzTiuSPYblBYMZxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.317 [XNIO-1 task-1] TL1JoPAzTiuSPYblBYMZxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.317 [XNIO-1 task-1] TL1JoPAzTiuSPYblBYMZxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/48cd3ce9-4a50-4af7-ab8b-3facf3099001, base path is set to: null +16:40:49.317 [XNIO-1 task-1] TL1JoPAzTiuSPYblBYMZxg DEBUG com.networknt.schema.TypeValidator debug - validate( "48cd3ce9-4a50-4af7-ab8b-3facf3099001", "48cd3ce9-4a50-4af7-ab8b-3facf3099001", clientId) +16:40:49.322 [XNIO-1 task-1] yb1kVmIGR8KjjBoMVjQbAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.323 [XNIO-1 task-1] yb1kVmIGR8KjjBoMVjQbAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.323 [XNIO-1 task-1] yb1kVmIGR8KjjBoMVjQbAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.333 [XNIO-1 task-1] iW1OijdpQwO7NbEH4u3OBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/287438f7-679a-4d02-a3d1-f6d0b311345a +16:40:49.333 [XNIO-1 task-1] iW1OijdpQwO7NbEH4u3OBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.333 [XNIO-1 task-1] iW1OijdpQwO7NbEH4u3OBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.334 [XNIO-1 task-1] iW1OijdpQwO7NbEH4u3OBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/287438f7-679a-4d02-a3d1-f6d0b311345a +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.339 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.340 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.340 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.340 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.340 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6118885b-82d7-4a3b-bcea-95a22405","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.340 [XNIO-1 task-1] vr_6nahWRcC3hq2dZmSXSw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.342 [XNIO-1 task-1] yGFCbZO8T8uhV9X1M4JIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.342 [XNIO-1 task-1] yGFCbZO8T8uhV9X1M4JIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.342 [XNIO-1 task-1] yGFCbZO8T8uhV9X1M4JIEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.342 [XNIO-1 task-1] yGFCbZO8T8uhV9X1M4JIEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.347 [XNIO-1 task-1] pXbzNtmnSICEBGjIsyxw7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906 +16:40:49.347 [XNIO-1 task-1] pXbzNtmnSICEBGjIsyxw7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.347 [XNIO-1 task-1] pXbzNtmnSICEBGjIsyxw7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.347 [XNIO-1 task-1] pXbzNtmnSICEBGjIsyxw7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906 +16:40:49.349 [XNIO-1 task-1] ZHPMMrFOQCi6a_zDjGzOzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.349 [XNIO-1 task-1] ZHPMMrFOQCi6a_zDjGzOzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.349 [XNIO-1 task-1] ZHPMMrFOQCi6a_zDjGzOzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.349 [XNIO-1 task-1] ZHPMMrFOQCi6a_zDjGzOzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.356 [XNIO-1 task-1] ywOMHpmQRkmp2UO-Qo-esw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.356 [XNIO-1 task-1] ywOMHpmQRkmp2UO-Qo-esw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.356 [XNIO-1 task-1] ywOMHpmQRkmp2UO-Qo-esw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.356 [XNIO-1 task-1] ywOMHpmQRkmp2UO-Qo-esw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.362 [XNIO-1 task-1] 45GUHPlPTAuQAEu_VvWBOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.363 [XNIO-1 task-1] 45GUHPlPTAuQAEu_VvWBOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.363 [XNIO-1 task-1] 45GUHPlPTAuQAEu_VvWBOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.363 [XNIO-1 task-1] 45GUHPlPTAuQAEu_VvWBOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.368 [XNIO-1 task-1] IY9HTtk7Tt2p5IfHpjCFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1de6920f-16a1-449e-b50f-b4278ff960f1, base path is set to: null +16:40:49.368 [XNIO-1 task-1] IY9HTtk7Tt2p5IfHpjCFbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.368 [XNIO-1 task-1] IY9HTtk7Tt2p5IfHpjCFbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.368 [XNIO-1 task-1] IY9HTtk7Tt2p5IfHpjCFbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1de6920f-16a1-449e-b50f-b4278ff960f1, base path is set to: null +16:40:49.369 [XNIO-1 task-1] IY9HTtk7Tt2p5IfHpjCFbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1de6920f-16a1-449e-b50f-b4278ff960f1", "1de6920f-16a1-449e-b50f-b4278ff960f1", clientId) +16:40:49.374 [XNIO-1 task-1] RktzcM9DQZW3TKZOxF_pbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.374 [XNIO-1 task-1] RktzcM9DQZW3TKZOxF_pbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.374 [XNIO-1 task-1] RktzcM9DQZW3TKZOxF_pbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.384 [XNIO-1 task-1] -ZDxUky0RFO9e8L160MWaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e1b14ce-16d3-41bd-b6f1-e8985523e6a1 +16:40:49.384 [XNIO-1 task-1] -ZDxUky0RFO9e8L160MWaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.384 [XNIO-1 task-1] -ZDxUky0RFO9e8L160MWaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.384 [XNIO-1 task-1] -ZDxUky0RFO9e8L160MWaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7e1b14ce-16d3-41bd-b6f1-e8985523e6a1 +16:40:49.389 [XNIO-1 task-1] vP7wUmeiTiSHNMp7plMgXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906, base path is set to: null +16:40:49.390 [XNIO-1 task-1] vP7wUmeiTiSHNMp7plMgXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.390 [XNIO-1 task-1] vP7wUmeiTiSHNMp7plMgXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.390 [XNIO-1 task-1] vP7wUmeiTiSHNMp7plMgXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906, base path is set to: null +16:40:49.390 [XNIO-1 task-1] vP7wUmeiTiSHNMp7plMgXg DEBUG com.networknt.schema.TypeValidator debug - validate( "79130bb6-92bd-4793-b214-be930dd59906", "79130bb6-92bd-4793-b214-be930dd59906", clientId) +16:40:49.391 [XNIO-1 task-1] KLA-Yd4mTYOGVibrnxlO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/570c3104-fdf7-457e-a584-2fe17d6ef3d2 +16:40:49.391 [XNIO-1 task-1] KLA-Yd4mTYOGVibrnxlO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.391 [XNIO-1 task-1] KLA-Yd4mTYOGVibrnxlO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.392 [XNIO-1 task-1] KLA-Yd4mTYOGVibrnxlO1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/570c3104-fdf7-457e-a584-2fe17d6ef3d2 +16:40:49.392 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:570c3104-fdf7-457e-a584-2fe17d6ef3d2 +16:40:49.396 [XNIO-1 task-1] hO9fAhthQqiqJF_6hccI5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.396 [XNIO-1 task-1] hO9fAhthQqiqJF_6hccI5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.396 [XNIO-1 task-1] hO9fAhthQqiqJF_6hccI5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.407 [XNIO-1 task-1] XlNOKg5LQXmPohYZZO-Lyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.407 [XNIO-1 task-1] XlNOKg5LQXmPohYZZO-Lyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.407 [XNIO-1 task-1] XlNOKg5LQXmPohYZZO-Lyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.407 [XNIO-1 task-1] XlNOKg5LQXmPohYZZO-Lyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.412 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.412 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.412 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.412 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.412 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.412 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "1072fe78-2032-43e8-9104-a1998d618c2c", {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.412 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.413 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.413 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e2d2181-5497-4ccc-999f-1ea8fefb", {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.413 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.413 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"7e2d2181-5497-4ccc-999f-1ea8fefb","clientDesc":"1072fe78-2032-43e8-9104-a1998d618c2c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.413 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.413 [XNIO-1 task-1] u-BPxvJBSyWV8J9_54gCxA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.415 [XNIO-1 task-1] 2vZq1AGjScuPTVBhlYJsHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.415 [XNIO-1 task-1] 2vZq1AGjScuPTVBhlYJsHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.415 [XNIO-1 task-1] 2vZq1AGjScuPTVBhlYJsHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.415 [XNIO-1 task-1] 2vZq1AGjScuPTVBhlYJsHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.421 [XNIO-1 task-1] 9lj1rFWbT-uEzKBfAH3-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.422 [XNIO-1 task-1] 9lj1rFWbT-uEzKBfAH3-Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.422 [XNIO-1 task-1] 9lj1rFWbT-uEzKBfAH3-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.432 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.433 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.433 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.433 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.433 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24ad0202-f12b-4e97-a515-1eed32e7","clientDesc":"7bd9879a-ceb3-4705-9101-26184ccfa7dd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.433 [XNIO-1 task-1] NPW6n8vuTB2mMoHKtgY_kw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.436 [XNIO-1 task-1] erxgZCO9RsadfCAIm2D8vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.436 [XNIO-1 task-1] erxgZCO9RsadfCAIm2D8vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.436 [XNIO-1 task-1] erxgZCO9RsadfCAIm2D8vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.448 [XNIO-1 task-1] nARtztKlTnayQOKTmXT6ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bd125b6-8fad-4b4d-ba40-dcd332aea007 +16:40:49.448 [XNIO-1 task-1] nARtztKlTnayQOKTmXT6ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.448 [XNIO-1 task-1] nARtztKlTnayQOKTmXT6ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.448 [XNIO-1 task-1] nARtztKlTnayQOKTmXT6ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/6bd125b6-8fad-4b4d-ba40-dcd332aea007 +16:40:49.448 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6bd125b6-8fad-4b4d-ba40-dcd332aea007 +16:40:49.453 [XNIO-1 task-1] 8vg6N6_pTxGf0KbDDv4E2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1431fe24-07dd-4649-8853-ea3a755f2962 +16:40:49.453 [XNIO-1 task-1] 8vg6N6_pTxGf0KbDDv4E2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.453 [XNIO-1 task-1] 8vg6N6_pTxGf0KbDDv4E2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.453 [XNIO-1 task-1] 8vg6N6_pTxGf0KbDDv4E2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1431fe24-07dd-4649-8853-ea3a755f2962 +16:40:49.458 [XNIO-1 task-1] NFtCR-7hQveY0AkoI7zpCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.458 [XNIO-1 task-1] NFtCR-7hQveY0AkoI7zpCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.458 [XNIO-1 task-1] NFtCR-7hQveY0AkoI7zpCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.458 [XNIO-1 task-1] NFtCR-7hQveY0AkoI7zpCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.463 [XNIO-1 task-1] -jOs4oouTUea1iDVm0u-RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4e0f0993-c911-4215-8bce-ab0f07682903, base path is set to: null +16:40:49.463 [XNIO-1 task-1] -jOs4oouTUea1iDVm0u-RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.463 [XNIO-1 task-1] -jOs4oouTUea1iDVm0u-RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.463 [XNIO-1 task-1] -jOs4oouTUea1iDVm0u-RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4e0f0993-c911-4215-8bce-ab0f07682903, base path is set to: null +16:40:49.463 [XNIO-1 task-1] -jOs4oouTUea1iDVm0u-RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4e0f0993-c911-4215-8bce-ab0f07682903", "4e0f0993-c911-4215-8bce-ab0f07682903", clientId) +16:40:49.468 [XNIO-1 task-1] N3Qk2NRURLWo5BMEGe6-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/278a22ea-c08b-49c4-a447-21f59efb7056 +16:40:49.468 [XNIO-1 task-1] N3Qk2NRURLWo5BMEGe6-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.468 [XNIO-1 task-1] N3Qk2NRURLWo5BMEGe6-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.468 [XNIO-1 task-1] N3Qk2NRURLWo5BMEGe6-bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/278a22ea-c08b-49c4-a447-21f59efb7056 +16:40:49.471 [XNIO-1 task-1] pSz0Kdg5Qv2pfx8rxhnk7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/278a22ea-c08b-49c4-a447-21f59efb7056, base path is set to: null +16:40:49.471 [XNIO-1 task-1] pSz0Kdg5Qv2pfx8rxhnk7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.471 [XNIO-1 task-1] pSz0Kdg5Qv2pfx8rxhnk7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.471 [XNIO-1 task-1] pSz0Kdg5Qv2pfx8rxhnk7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/278a22ea-c08b-49c4-a447-21f59efb7056, base path is set to: null +16:40:49.471 [XNIO-1 task-1] pSz0Kdg5Qv2pfx8rxhnk7A DEBUG com.networknt.schema.TypeValidator debug - validate( "278a22ea-c08b-49c4-a447-21f59efb7056", "278a22ea-c08b-49c4-a447-21f59efb7056", clientId) +16:40:49.476 [XNIO-1 task-1] InJrbuDsSqasvGemRqoJ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.476 [XNIO-1 task-1] InJrbuDsSqasvGemRqoJ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.476 [XNIO-1 task-1] InJrbuDsSqasvGemRqoJ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.488 [XNIO-1 task-1] 2tBlzLeOSQOzc2EBm7Junw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3dfd116-782d-4d45-876e-453660e1eac2 +16:40:49.488 [XNIO-1 task-1] 2tBlzLeOSQOzc2EBm7Junw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.488 [XNIO-1 task-1] 2tBlzLeOSQOzc2EBm7Junw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.488 [XNIO-1 task-1] 2tBlzLeOSQOzc2EBm7Junw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b3dfd116-782d-4d45-876e-453660e1eac2 +16:40:49.494 [XNIO-1 task-1] 6vphtz6jQz-KyTYPi2yk-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.494 [XNIO-1 task-1] 6vphtz6jQz-KyTYPi2yk-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.494 [XNIO-1 task-1] 6vphtz6jQz-KyTYPi2yk-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.495 [XNIO-1 task-1] 6vphtz6jQz-KyTYPi2yk-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.500 [XNIO-1 task-1] jw3wFVncRkG4_oHSY2a9SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.500 [XNIO-1 task-1] jw3wFVncRkG4_oHSY2a9SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.501 [XNIO-1 task-1] jw3wFVncRkG4_oHSY2a9SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.512 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.512 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.512 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.512 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d003b0df-f1c1-4f5c-af6b-6f171060","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.513 [XNIO-1 task-1] 438w-9yoTcG-O39iSwByKg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.515 [XNIO-1 task-1] 7LTc4LHuSnqkCpDvgM8MeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/da11db65-74ac-4efd-aac9-dc2636b3c534 +16:40:49.516 [XNIO-1 task-1] 7LTc4LHuSnqkCpDvgM8MeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.516 [XNIO-1 task-1] 7LTc4LHuSnqkCpDvgM8MeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.516 [XNIO-1 task-1] 7LTc4LHuSnqkCpDvgM8MeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/da11db65-74ac-4efd-aac9-dc2636b3c534 +16:40:49.522 [XNIO-1 task-1] VASdpqHXSbKWMf3WckTpFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906, base path is set to: null +16:40:49.522 [XNIO-1 task-1] VASdpqHXSbKWMf3WckTpFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.522 [XNIO-1 task-1] VASdpqHXSbKWMf3WckTpFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.522 [XNIO-1 task-1] VASdpqHXSbKWMf3WckTpFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906, base path is set to: null +16:40:49.523 [XNIO-1 task-1] VASdpqHXSbKWMf3WckTpFg DEBUG com.networknt.schema.TypeValidator debug - validate( "79130bb6-92bd-4793-b214-be930dd59906", "79130bb6-92bd-4793-b214-be930dd59906", clientId) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac", {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5b4b5e4c-592c-4f8f-82af-02dc88a6", {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.525 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5b4b5e4c-592c-4f8f-82af-02dc88a6","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.526 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.526 [XNIO-1 task-1] bIWKRjmISwujR5CM_Egk_Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.528 [XNIO-1 task-1] K32-IXEnQrqRiN-6kyY5fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.528 [XNIO-1 task-1] K32-IXEnQrqRiN-6kyY5fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.528 [XNIO-1 task-1] K32-IXEnQrqRiN-6kyY5fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.539 [XNIO-1 task-1] rEIu9m0aSi2Js9RclBfhEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.539 [XNIO-1 task-1] rEIu9m0aSi2Js9RclBfhEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.540 [XNIO-1 task-1] rEIu9m0aSi2Js9RclBfhEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.550 [XNIO-1 task-1] SuU6DoyXQeGmOqQp57PP8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.551 [XNIO-1 task-1] SuU6DoyXQeGmOqQp57PP8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.551 [XNIO-1 task-1] SuU6DoyXQeGmOqQp57PP8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.563 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.563 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.563 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.563 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.563 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8e485cf4-4c18-4c93-a046-65235728","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.564 [XNIO-1 task-1] jPrUopKURVGScy1xoxN-9A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.566 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.566 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.566 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.566 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.566 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac", {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG com.networknt.schema.TypeValidator debug - validate( "b8a70906-946a-4c59-bd28-f586d3cb", {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b8a70906-946a-4c59-bd28-f586d3cb","clientDesc":"7f764ac2-b1da-4cb6-8f4c-2fc9ae259cac","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.567 [XNIO-1 task-1] uNdDQ1LzTRWhUHGdgiJiJA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.569 [XNIO-1 task-1] gKSI-XvURxGfPOCfMYVHuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9570919b-0b33-4d47-9a51-881e8b76a7a9, base path is set to: null +16:40:49.569 [XNIO-1 task-1] gKSI-XvURxGfPOCfMYVHuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.569 [XNIO-1 task-1] gKSI-XvURxGfPOCfMYVHuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.569 [XNIO-1 task-1] gKSI-XvURxGfPOCfMYVHuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9570919b-0b33-4d47-9a51-881e8b76a7a9, base path is set to: null +16:40:49.569 [XNIO-1 task-1] gKSI-XvURxGfPOCfMYVHuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9570919b-0b33-4d47-9a51-881e8b76a7a9", "9570919b-0b33-4d47-9a51-881e8b76a7a9", clientId) +16:40:49.574 [XNIO-1 task-1] GcoQwtZDSNGqvrioEMey7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ac581fdf-8271-4fdf-8d3f-f716da00f33b +16:40:49.574 [XNIO-1 task-1] GcoQwtZDSNGqvrioEMey7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.574 [XNIO-1 task-1] GcoQwtZDSNGqvrioEMey7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.574 [XNIO-1 task-1] GcoQwtZDSNGqvrioEMey7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ac581fdf-8271-4fdf-8d3f-f716da00f33b +16:40:49.576 [XNIO-1 task-1] TKIy9w1fQseW2eqSHoZXZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ac581fdf-8271-4fdf-8d3f-f716da00f33b, base path is set to: null +16:40:49.576 [XNIO-1 task-1] TKIy9w1fQseW2eqSHoZXZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.577 [XNIO-1 task-1] TKIy9w1fQseW2eqSHoZXZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.577 [XNIO-1 task-1] TKIy9w1fQseW2eqSHoZXZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ac581fdf-8271-4fdf-8d3f-f716da00f33b, base path is set to: null +16:40:49.577 [XNIO-1 task-1] TKIy9w1fQseW2eqSHoZXZg DEBUG com.networknt.schema.TypeValidator debug - validate( "ac581fdf-8271-4fdf-8d3f-f716da00f33b", "ac581fdf-8271-4fdf-8d3f-f716da00f33b", clientId) +16:40:49.578 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG com.networknt.schema.TypeValidator debug - validate( "7cc6a6f8-4acd-42a2-94cb-77203f528d39", {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG com.networknt.schema.TypeValidator debug - validate( "cafac4d1-4ba5-47b9-b2a8-45546f3c", {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"cafac4d1-4ba5-47b9-b2a8-45546f3c","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.579 [XNIO-1 task-1] aFv9NksqRCWEzXGinV5o8g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.581 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.581 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.581 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.581 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.581 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e6706e67-2dc7-477c-b9a7-2e9cc4cb","clientDesc":"7cc6a6f8-4acd-42a2-94cb-77203f528d39","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.582 [XNIO-1 task-1] IU3ANsUST42i0cfOie8WWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.584 [XNIO-1 task-1] xuqT7EoOQmuB8UgRLLw8Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ac581fdf-8271-4fdf-8d3f-f716da00f33b +16:40:49.584 [XNIO-1 task-1] xuqT7EoOQmuB8UgRLLw8Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.584 [XNIO-1 task-1] xuqT7EoOQmuB8UgRLLw8Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.584 [XNIO-1 task-1] xuqT7EoOQmuB8UgRLLw8Lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/ac581fdf-8271-4fdf-8d3f-f716da00f33b +16:40:49.588 [XNIO-1 task-1] WazRfi_TQsSP7WzDn0lQ1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cd008238-e017-47d4-b646-a8d304f230c9, base path is set to: null +16:40:49.588 [XNIO-1 task-1] WazRfi_TQsSP7WzDn0lQ1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.588 [XNIO-1 task-1] WazRfi_TQsSP7WzDn0lQ1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.588 [XNIO-1 task-1] WazRfi_TQsSP7WzDn0lQ1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cd008238-e017-47d4-b646-a8d304f230c9, base path is set to: null +16:40:49.588 [XNIO-1 task-1] WazRfi_TQsSP7WzDn0lQ1g DEBUG com.networknt.schema.TypeValidator debug - validate( "cd008238-e017-47d4-b646-a8d304f230c9", "cd008238-e017-47d4-b646-a8d304f230c9", clientId) +16:40:49.590 [XNIO-1 task-1] 9J4oEdMqTvqQkyGV-uyFVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.590 [XNIO-1 task-1] 9J4oEdMqTvqQkyGV-uyFVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.590 [XNIO-1 task-1] 9J4oEdMqTvqQkyGV-uyFVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.591 [XNIO-1 task-1] 9J4oEdMqTvqQkyGV-uyFVQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.595 [XNIO-1 task-1] WfdthImnTFeVZEJR74-CyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.595 [XNIO-1 task-1] WfdthImnTFeVZEJR74-CyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.595 [XNIO-1 task-1] WfdthImnTFeVZEJR74-CyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.605 [XNIO-1 task-1] Mi-dhcR5RfCS6u8RPJAvqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f1f34568-915d-46d4-bcc1-eb12ca682dc9 +16:40:49.605 [XNIO-1 task-1] Mi-dhcR5RfCS6u8RPJAvqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.605 [XNIO-1 task-1] Mi-dhcR5RfCS6u8RPJAvqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.605 [XNIO-1 task-1] Mi-dhcR5RfCS6u8RPJAvqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f1f34568-915d-46d4-bcc1-eb12ca682dc9 +16:40:49.607 [XNIO-1 task-1] b_68gZJwTQWCSJveWmeFMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.607 [XNIO-1 task-1] b_68gZJwTQWCSJveWmeFMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.608 [XNIO-1 task-1] b_68gZJwTQWCSJveWmeFMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.625 [XNIO-1 task-1] lPEAh_sNSayj9f2T7MtcKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.625 [XNIO-1 task-1] lPEAh_sNSayj9f2T7MtcKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.625 [XNIO-1 task-1] lPEAh_sNSayj9f2T7MtcKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.635 [XNIO-1 task-1] KpL_A8IlRN-1aeonJ5US_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d643d07b-a5ba-472e-ac2f-a2940bd51f11, base path is set to: null +16:40:49.635 [XNIO-1 task-1] KpL_A8IlRN-1aeonJ5US_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.635 [XNIO-1 task-1] KpL_A8IlRN-1aeonJ5US_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.635 [XNIO-1 task-1] KpL_A8IlRN-1aeonJ5US_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d643d07b-a5ba-472e-ac2f-a2940bd51f11, base path is set to: null +16:40:49.635 [XNIO-1 task-1] KpL_A8IlRN-1aeonJ5US_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d643d07b-a5ba-472e-ac2f-a2940bd51f11", "d643d07b-a5ba-472e-ac2f-a2940bd51f11", clientId) +16:40:49.640 [XNIO-1 task-1] vrrpAfb8SkiTJQeV2CkKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.640 [XNIO-1 task-1] vrrpAfb8SkiTJQeV2CkKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.640 [XNIO-1 task-1] vrrpAfb8SkiTJQeV2CkKrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.640 [XNIO-1 task-1] vrrpAfb8SkiTJQeV2CkKrg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.667 [XNIO-1 task-1] FvoNalljQyiOW-qnjDDUNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d59573e-9aa7-4481-80db-5d4819ffb965 +16:40:49.667 [XNIO-1 task-1] FvoNalljQyiOW-qnjDDUNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.667 [XNIO-1 task-1] FvoNalljQyiOW-qnjDDUNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.668 [XNIO-1 task-1] FvoNalljQyiOW-qnjDDUNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/3d59573e-9aa7-4481-80db-5d4819ffb965 +16:40:49.673 [XNIO-1 task-1] RubyHgHZT5WcAR6h6ROGeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.673 [XNIO-1 task-1] RubyHgHZT5WcAR6h6ROGeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.673 [XNIO-1 task-1] RubyHgHZT5WcAR6h6ROGeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.673 [XNIO-1 task-1] RubyHgHZT5WcAR6h6ROGeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.678 [XNIO-1 task-1] QMmUthcQRsmM1VJ-sKYYqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906, base path is set to: null +16:40:49.678 [XNIO-1 task-1] QMmUthcQRsmM1VJ-sKYYqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.679 [XNIO-1 task-1] QMmUthcQRsmM1VJ-sKYYqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.679 [XNIO-1 task-1] QMmUthcQRsmM1VJ-sKYYqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906, base path is set to: null +16:40:49.679 [XNIO-1 task-1] QMmUthcQRsmM1VJ-sKYYqw DEBUG com.networknt.schema.TypeValidator debug - validate( "79130bb6-92bd-4793-b214-be930dd59906", "79130bb6-92bd-4793-b214-be930dd59906", clientId) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG com.networknt.schema.TypeValidator debug - validate( "b902c5d6-3a33-4b4f-ac72-1178c3603c93", {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG com.networknt.schema.TypeValidator debug - validate( "a62eafe6-8a77-4b5e-be29-d0c1d01d", {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.681 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a62eafe6-8a77-4b5e-be29-d0c1d01d","clientDesc":"b902c5d6-3a33-4b4f-ac72-1178c3603c93","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.682 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.682 [XNIO-1 task-1] Ah22ybeRSuaxtdVgveHHyA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.683 [XNIO-1 task-1] I0OYgflwRAi_WzHaKED-iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.683 [XNIO-1 task-1] I0OYgflwRAi_WzHaKED-iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.683 [XNIO-1 task-1] I0OYgflwRAi_WzHaKED-iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.694 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.694 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.694 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.694 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c8d4a5dd-d108-49f9-a02f-757778be","clientDesc":"d7989ac2-0f6d-4868-a178-03130a63af5a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.695 [XNIO-1 task-1] bFSgl6ujQOK1skE9RsUhrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.697 [XNIO-1 task-1] RfhKQOKeQjq18hDn2MGTew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.697 [XNIO-1 task-1] RfhKQOKeQjq18hDn2MGTew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.698 [XNIO-1 task-1] RfhKQOKeQjq18hDn2MGTew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.709 [XNIO-1 task-1] yZ4WWrZaT1W9VmlcQfw23A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.709 [XNIO-1 task-1] yZ4WWrZaT1W9VmlcQfw23A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.709 [XNIO-1 task-1] yZ4WWrZaT1W9VmlcQfw23A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.709 [XNIO-1 task-1] yZ4WWrZaT1W9VmlcQfw23A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.714 [XNIO-1 task-1] qIRkcBMGSaKKW7e722Ci0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.714 [XNIO-1 task-1] qIRkcBMGSaKKW7e722Ci0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.714 [XNIO-1 task-1] qIRkcBMGSaKKW7e722Ci0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.715 [XNIO-1 task-1] qIRkcBMGSaKKW7e722Ci0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.720 [XNIO-1 task-1] JojAXCsdTUeY4asK3EPKdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5fb0d3f0-45cc-4f5a-8220-ef3b5b19c4fa +16:40:49.720 [XNIO-1 task-1] JojAXCsdTUeY4asK3EPKdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.720 [XNIO-1 task-1] JojAXCsdTUeY4asK3EPKdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.720 [XNIO-1 task-1] JojAXCsdTUeY4asK3EPKdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5fb0d3f0-45cc-4f5a-8220-ef3b5b19c4fa +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.725 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.726 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.726 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.726 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"524bfa9e-9a60-4641-8a76-633526de","clientDesc":"b01d9277-ebde-49c4-b099-95ba5520d453","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.726 [XNIO-1 task-1] w_HdNZN9TpaQH3QfEdqXTQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.728 [XNIO-1 task-1] V-HWJZU_TomH4vY5YU9LeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.728 [XNIO-1 task-1] V-HWJZU_TomH4vY5YU9LeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.728 [XNIO-1 task-1] V-HWJZU_TomH4vY5YU9LeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.728 [XNIO-1 task-1] V-HWJZU_TomH4vY5YU9LeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.732 [XNIO-1 task-1] IayCDN1JTkC10ymXaOdAfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.733 [XNIO-1 task-1] IayCDN1JTkC10ymXaOdAfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.733 [XNIO-1 task-1] IayCDN1JTkC10ymXaOdAfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.743 [XNIO-1 task-1] iv64muP9RxC0bX4PUFKKPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/265267e4-c1d9-4b28-a6d7-bf861861a7ba +16:40:49.743 [XNIO-1 task-1] iv64muP9RxC0bX4PUFKKPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.743 [XNIO-1 task-1] iv64muP9RxC0bX4PUFKKPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.743 [XNIO-1 task-1] iv64muP9RxC0bX4PUFKKPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/265267e4-c1d9-4b28-a6d7-bf861861a7ba +16:40:49.749 [XNIO-1 task-1] g5fIYWKqQaaMj8MoezzF_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.749 [XNIO-1 task-1] g5fIYWKqQaaMj8MoezzF_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.749 [XNIO-1 task-1] g5fIYWKqQaaMj8MoezzF_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.759 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.759 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.759 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d513d256-689a-40f5-9175-e22a5396","clientDesc":"292e5dfc-b2c0-487c-a110-12f2b687fbdb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.760 [XNIO-1 task-1] GrjhalmgSd2UAdXwPFhuRQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.762 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.762 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.762 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "96a1fb52-5a89-4755-a270-8b9b3a2f6f55", {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "3f8040c2-4a99-4baf-874f-bfe762da", {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"3f8040c2-4a99-4baf-874f-bfe762da","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.763 [XNIO-1 task-1] zdaYJWAoQlaHl7IponTjqw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.765 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.766 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.766 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.766 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a2d17032-697f-4aa8-8e4d-7e349442","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.766 [XNIO-1 task-1] -rLNKBSRR_-bFKYb8BA5Gw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "96a1fb52-5a89-4755-a270-8b9b3a2f6f55", {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "d778eb00-c34b-48f0-834b-75ee7473", {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d778eb00-c34b-48f0-834b-75ee7473","clientDesc":"96a1fb52-5a89-4755-a270-8b9b3a2f6f55","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.768 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.769 [XNIO-1 task-1] W2cpiQAwRtyblg6oFJl5Ig DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.770 [XNIO-1 task-1] 97QWXB8sSPWdH1z2tsA8rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/87024eab-1d3d-4986-9f13-6eca6e411a91, base path is set to: null +16:40:49.770 [XNIO-1 task-1] 97QWXB8sSPWdH1z2tsA8rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.770 [XNIO-1 task-1] 97QWXB8sSPWdH1z2tsA8rA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.770 [XNIO-1 task-1] 97QWXB8sSPWdH1z2tsA8rA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/87024eab-1d3d-4986-9f13-6eca6e411a91, base path is set to: null +16:40:49.770 [XNIO-1 task-1] 97QWXB8sSPWdH1z2tsA8rA DEBUG com.networknt.schema.TypeValidator debug - validate( "87024eab-1d3d-4986-9f13-6eca6e411a91", "87024eab-1d3d-4986-9f13-6eca6e411a91", clientId) +16:40:49.778 [XNIO-1 task-1] pixfhO5dSMiCKcVHjl3b6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.778 [XNIO-1 task-1] pixfhO5dSMiCKcVHjl3b6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.778 [XNIO-1 task-1] pixfhO5dSMiCKcVHjl3b6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.778 [XNIO-1 task-1] pixfhO5dSMiCKcVHjl3b6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.783 [XNIO-1 task-1] 3RoRocd8Qm2YvCg0lwzc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.783 [XNIO-1 task-1] 3RoRocd8Qm2YvCg0lwzc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.783 [XNIO-1 task-1] 3RoRocd8Qm2YvCg0lwzc2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.794 [XNIO-1 task-1] Pl4wKy_9Qr2x-0q_AEU7wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.794 [XNIO-1 task-1] Pl4wKy_9Qr2x-0q_AEU7wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.794 [XNIO-1 task-1] Pl4wKy_9Qr2x-0q_AEU7wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.794 [XNIO-1 task-1] Pl4wKy_9Qr2x-0q_AEU7wg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.801 [XNIO-1 task-1] V8aYPAv6QJGj2k4eaAl7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.801 [XNIO-1 task-1] V8aYPAv6QJGj2k4eaAl7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.801 [XNIO-1 task-1] V8aYPAv6QJGj2k4eaAl7ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.818 [XNIO-1 task-1] AhbJGO4fS_-Cw_ZGaoCAYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.818 [XNIO-1 task-1] AhbJGO4fS_-Cw_ZGaoCAYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.818 [XNIO-1 task-1] AhbJGO4fS_-Cw_ZGaoCAYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.829 [XNIO-1 task-1] GkdFtqOpQMmoy0fLkxTslw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7 +16:40:49.829 [XNIO-1 task-1] GkdFtqOpQMmoy0fLkxTslw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.829 [XNIO-1 task-1] GkdFtqOpQMmoy0fLkxTslw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.829 [XNIO-1 task-1] GkdFtqOpQMmoy0fLkxTslw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7 +16:40:49.831 [XNIO-1 task-1] TtEGU0zcTeOQug07-oQm2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eebf762f-8486-4fc7-92c0-9c340d3a352b, base path is set to: null +16:40:49.831 [XNIO-1 task-1] TtEGU0zcTeOQug07-oQm2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.831 [XNIO-1 task-1] TtEGU0zcTeOQug07-oQm2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.831 [XNIO-1 task-1] TtEGU0zcTeOQug07-oQm2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eebf762f-8486-4fc7-92c0-9c340d3a352b, base path is set to: null +16:40:49.831 [XNIO-1 task-1] TtEGU0zcTeOQug07-oQm2w DEBUG com.networknt.schema.TypeValidator debug - validate( "eebf762f-8486-4fc7-92c0-9c340d3a352b", "eebf762f-8486-4fc7-92c0-9c340d3a352b", clientId) +16:40:49.833 [XNIO-1 task-1] tWYF7bhITvmHS_YfYEXycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.833 [XNIO-1 task-1] tWYF7bhITvmHS_YfYEXycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.833 [XNIO-1 task-1] tWYF7bhITvmHS_YfYEXycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.833 [XNIO-1 task-1] tWYF7bhITvmHS_YfYEXycg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.835 [XNIO-1 task-1] 441cqEvhS7CIVRvaixPhWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.835 [XNIO-1 task-1] 441cqEvhS7CIVRvaixPhWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.835 [XNIO-1 task-1] 441cqEvhS7CIVRvaixPhWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.835 [XNIO-1 task-1] 441cqEvhS7CIVRvaixPhWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.840 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.841 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.841 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.841 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.841 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0fcd8cdd-a1e4-44da-b774-7b4219b0","clientDesc":"9cb5c2a3-7ab4-4ae9-b9fa-77e29f35079f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.841 [XNIO-1 task-1] ejqifJskRjyaq6UuR86paQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.842 [XNIO-1 task-1] mqsy8zNKTVa8EOObMbMERQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.843 [XNIO-1 task-1] mqsy8zNKTVa8EOObMbMERQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.843 [XNIO-1 task-1] mqsy8zNKTVa8EOObMbMERQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.843 [XNIO-1 task-1] mqsy8zNKTVa8EOObMbMERQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.847 [XNIO-1 task-1] ztxx7bXUQhCslDI_JFAKDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.847 [XNIO-1 task-1] ztxx7bXUQhCslDI_JFAKDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.847 [XNIO-1 task-1] ztxx7bXUQhCslDI_JFAKDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.847 [XNIO-1 task-1] ztxx7bXUQhCslDI_JFAKDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "86e00482-20e8-49a6-8f2b-c1761a89f6c8", {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ce44f4ff-0ca4-4ba8-912b-ceea16cb", {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.852 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.853 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ce44f4ff-0ca4-4ba8-912b-ceea16cb","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.853 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.853 [XNIO-1 task-1] pSXG5LvEQJiv-PKc-ny0BQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.854 [XNIO-1 task-1] ZUpKJuyEQkOw6c1pj-QnaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eebf762f-8486-4fc7-92c0-9c340d3a352b, base path is set to: null +16:40:49.854 [XNIO-1 task-1] ZUpKJuyEQkOw6c1pj-QnaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.854 [XNIO-1 task-1] ZUpKJuyEQkOw6c1pj-QnaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.855 [XNIO-1 task-1] ZUpKJuyEQkOw6c1pj-QnaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eebf762f-8486-4fc7-92c0-9c340d3a352b, base path is set to: null +16:40:49.855 [XNIO-1 task-1] ZUpKJuyEQkOw6c1pj-QnaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "eebf762f-8486-4fc7-92c0-9c340d3a352b", "eebf762f-8486-4fc7-92c0-9c340d3a352b", clientId) +16:40:49.856 [XNIO-1 task-1] ynwD4sN2SLynnmhdNg8FaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.856 [XNIO-1 task-1] ynwD4sN2SLynnmhdNg8FaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.856 [XNIO-1 task-1] ynwD4sN2SLynnmhdNg8FaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.856 [XNIO-1 task-1] ynwD4sN2SLynnmhdNg8FaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.858 [XNIO-1 task-1] 5vk6T0jUQHqnxRN1TN-b0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cddef699-f864-4a45-a01d-937cb46cfdda, base path is set to: null +16:40:49.858 [XNIO-1 task-1] 5vk6T0jUQHqnxRN1TN-b0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.858 [XNIO-1 task-1] 5vk6T0jUQHqnxRN1TN-b0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.858 [XNIO-1 task-1] 5vk6T0jUQHqnxRN1TN-b0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cddef699-f864-4a45-a01d-937cb46cfdda, base path is set to: null +16:40:49.858 [XNIO-1 task-1] 5vk6T0jUQHqnxRN1TN-b0g DEBUG com.networknt.schema.TypeValidator debug - validate( "cddef699-f864-4a45-a01d-937cb46cfdda", "cddef699-f864-4a45-a01d-937cb46cfdda", clientId) +16:40:49.860 [XNIO-1 task-1] T6cBIZHlRmqj1iRd8hbxlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7 +16:40:49.860 [XNIO-1 task-1] T6cBIZHlRmqj1iRd8hbxlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.860 [XNIO-1 task-1] T6cBIZHlRmqj1iRd8hbxlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.860 [XNIO-1 task-1] T6cBIZHlRmqj1iRd8hbxlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7 +16:40:49.862 [XNIO-1 task-1] IhHif842Qsy8PSkaNNuPwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eebf762f-8486-4fc7-92c0-9c340d3a352b, base path is set to: null +16:40:49.862 [XNIO-1 task-1] IhHif842Qsy8PSkaNNuPwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.862 [XNIO-1 task-1] IhHif842Qsy8PSkaNNuPwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.862 [XNIO-1 task-1] IhHif842Qsy8PSkaNNuPwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/eebf762f-8486-4fc7-92c0-9c340d3a352b, base path is set to: null +16:40:49.862 [XNIO-1 task-1] IhHif842Qsy8PSkaNNuPwg DEBUG com.networknt.schema.TypeValidator debug - validate( "eebf762f-8486-4fc7-92c0-9c340d3a352b", "eebf762f-8486-4fc7-92c0-9c340d3a352b", clientId) +16:40:49.866 [XNIO-1 task-1] uD2eYmVoSISFzsYXP0Qwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.866 [XNIO-1 task-1] uD2eYmVoSISFzsYXP0Qwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.866 [XNIO-1 task-1] uD2eYmVoSISFzsYXP0Qwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.867 [XNIO-1 task-1] uD2eYmVoSISFzsYXP0Qwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.868 [XNIO-1 task-1] odd3oM3lRkO9C89wOnOl-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cddef699-f864-4a45-a01d-937cb46cfdda, base path is set to: null +16:40:49.868 [XNIO-1 task-1] odd3oM3lRkO9C89wOnOl-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.868 [XNIO-1 task-1] odd3oM3lRkO9C89wOnOl-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.868 [XNIO-1 task-1] odd3oM3lRkO9C89wOnOl-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/cddef699-f864-4a45-a01d-937cb46cfdda, base path is set to: null +16:40:49.868 [XNIO-1 task-1] odd3oM3lRkO9C89wOnOl-w DEBUG com.networknt.schema.TypeValidator debug - validate( "cddef699-f864-4a45-a01d-937cb46cfdda", "cddef699-f864-4a45-a01d-937cb46cfdda", clientId) +16:40:49.873 [XNIO-1 task-1] txMbDOQCTQ2A8veOttjg2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.873 [XNIO-1 task-1] txMbDOQCTQ2A8veOttjg2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.873 [XNIO-1 task-1] txMbDOQCTQ2A8veOttjg2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.873 [XNIO-1 task-1] txMbDOQCTQ2A8veOttjg2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.878 [XNIO-1 task-1] ifOC6CbhQ66KNyhJb9YVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.879 [XNIO-1 task-1] ifOC6CbhQ66KNyhJb9YVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.879 [XNIO-1 task-1] ifOC6CbhQ66KNyhJb9YVOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.879 [XNIO-1 task-1] ifOC6CbhQ66KNyhJb9YVOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.883 [XNIO-1 task-1] qUYV9k0DSkah_f3jW32tvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.883 [XNIO-1 task-1] qUYV9k0DSkah_f3jW32tvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.883 [XNIO-1 task-1] qUYV9k0DSkah_f3jW32tvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.884 [XNIO-1 task-1] qUYV9k0DSkah_f3jW32tvw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.888 [XNIO-1 task-1] VT7LKiOFRKaRVamuIjkkGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b813b0be-5de9-4d80-b042-ec72c617df3d +16:40:49.888 [XNIO-1 task-1] VT7LKiOFRKaRVamuIjkkGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.888 [XNIO-1 task-1] VT7LKiOFRKaRVamuIjkkGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.888 [XNIO-1 task-1] VT7LKiOFRKaRVamuIjkkGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b813b0be-5de9-4d80-b042-ec72c617df3d +16:40:49.890 [XNIO-1 task-1] ONzPKR2VQW6PFVoY0Xp2Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b813b0be-5de9-4d80-b042-ec72c617df3d, base path is set to: null +16:40:49.890 [XNIO-1 task-1] ONzPKR2VQW6PFVoY0Xp2Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.890 [XNIO-1 task-1] ONzPKR2VQW6PFVoY0Xp2Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.890 [XNIO-1 task-1] ONzPKR2VQW6PFVoY0Xp2Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b813b0be-5de9-4d80-b042-ec72c617df3d, base path is set to: null +16:40:49.890 [XNIO-1 task-1] ONzPKR2VQW6PFVoY0Xp2Og DEBUG com.networknt.schema.TypeValidator debug - validate( "b813b0be-5de9-4d80-b042-ec72c617df3d", "b813b0be-5de9-4d80-b042-ec72c617df3d", clientId) +16:40:49.895 [XNIO-1 task-1] 06ZGeDjaTC2T9c8qAItFnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f1f34568-915d-46d4-bcc1-eb12ca682dc9 +16:40:49.895 [XNIO-1 task-1] 06ZGeDjaTC2T9c8qAItFnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.895 [XNIO-1 task-1] 06ZGeDjaTC2T9c8qAItFnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.895 [XNIO-1 task-1] 06ZGeDjaTC2T9c8qAItFnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f1f34568-915d-46d4-bcc1-eb12ca682dc9 +16:40:49.900 [XNIO-1 task-1] xw1CcfaDQr2FIvTXjub0MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4304adb8-8e63-4ef7-8395-b63151835f13, base path is set to: null +16:40:49.900 [XNIO-1 task-1] xw1CcfaDQr2FIvTXjub0MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.900 [XNIO-1 task-1] xw1CcfaDQr2FIvTXjub0MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.900 [XNIO-1 task-1] xw1CcfaDQr2FIvTXjub0MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4304adb8-8e63-4ef7-8395-b63151835f13, base path is set to: null +16:40:49.900 [XNIO-1 task-1] xw1CcfaDQr2FIvTXjub0MA DEBUG com.networknt.schema.TypeValidator debug - validate( "4304adb8-8e63-4ef7-8395-b63151835f13", "4304adb8-8e63-4ef7-8395-b63151835f13", clientId) +16:40:49.905 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.905 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.905 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.905 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.905 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "938485fe-bf27-4ef7-8c08-3c783f00c95d", {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "a74b6323-9ecd-4783-ace5-b4719639", {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a74b6323-9ecd-4783-ace5-b4719639","clientDesc":"938485fe-bf27-4ef7-8c08-3c783f00c95d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.906 [XNIO-1 task-1] luRxCQxiRyWjug32zbz_7A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:49.908 [XNIO-1 task-1] oT5fcJ1XTmCdFpqJE2NCXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3, base path is set to: null +16:40:49.908 [XNIO-1 task-1] oT5fcJ1XTmCdFpqJE2NCXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.908 [XNIO-1 task-1] oT5fcJ1XTmCdFpqJE2NCXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.908 [XNIO-1 task-1] oT5fcJ1XTmCdFpqJE2NCXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3, base path is set to: null +16:40:49.908 [XNIO-1 task-1] oT5fcJ1XTmCdFpqJE2NCXw DEBUG com.networknt.schema.TypeValidator debug - validate( "8e405ec8-020c-4fcc-95ea-298d5cbfb2f3", "8e405ec8-020c-4fcc-95ea-298d5cbfb2f3", clientId) +16:40:49.909 [XNIO-1 task-1] ojtI6pQPTbq0wlgdEr3ujA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906 +16:40:49.909 [XNIO-1 task-1] ojtI6pQPTbq0wlgdEr3ujA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.909 [XNIO-1 task-1] ojtI6pQPTbq0wlgdEr3ujA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.910 [XNIO-1 task-1] ojtI6pQPTbq0wlgdEr3ujA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79130bb6-92bd-4793-b214-be930dd59906 +16:40:49.914 [XNIO-1 task-1] kx-POMOdRvmXRy3DhhZeNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3, base path is set to: null +16:40:49.914 [XNIO-1 task-1] kx-POMOdRvmXRy3DhhZeNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.914 [XNIO-1 task-1] kx-POMOdRvmXRy3DhhZeNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.914 [XNIO-1 task-1] kx-POMOdRvmXRy3DhhZeNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3, base path is set to: null +16:40:49.915 [XNIO-1 task-1] kx-POMOdRvmXRy3DhhZeNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8e405ec8-020c-4fcc-95ea-298d5cbfb2f3", "8e405ec8-020c-4fcc-95ea-298d5cbfb2f3", clientId) +16:40:49.916 [XNIO-1 task-1] 0ptcqaF4Q9-yduZg_HY_uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.916 [XNIO-1 task-1] 0ptcqaF4Q9-yduZg_HY_uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.916 [XNIO-1 task-1] 0ptcqaF4Q9-yduZg_HY_uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.926 [XNIO-1 task-1] N3rNUsvAQtaOykJ2DYB0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.926 [XNIO-1 task-1] N3rNUsvAQtaOykJ2DYB0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.926 [XNIO-1 task-1] N3rNUsvAQtaOykJ2DYB0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.926 [XNIO-1 task-1] N3rNUsvAQtaOykJ2DYB0jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e405ec8-020c-4fcc-95ea-298d5cbfb2f3 +16:40:49.931 [XNIO-1 task-1] rkN06b8VTN-Cr1CqpliZnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.931 [XNIO-1 task-1] rkN06b8VTN-Cr1CqpliZnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.931 [XNIO-1 task-1] rkN06b8VTN-Cr1CqpliZnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.931 [XNIO-1 task-1] rkN06b8VTN-Cr1CqpliZnw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.936 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.937 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"adfee046-cb5e-41b5-9270-77c92870","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.937 [XNIO-1 task-1] ywX8hzIrR4e34TZjx2jB3A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.938 [XNIO-1 task-1] p2M1VWUWQ9mRDGdcqdCn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/674691b9-54cb-464f-94d8-73b04ec5ba48 +16:40:49.938 [XNIO-1 task-1] p2M1VWUWQ9mRDGdcqdCn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.939 [XNIO-1 task-1] p2M1VWUWQ9mRDGdcqdCn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.939 [XNIO-1 task-1] p2M1VWUWQ9mRDGdcqdCn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/674691b9-54cb-464f-94d8-73b04ec5ba48 +16:40:49.944 [XNIO-1 task-1] 6oBEJvcyTLWxBVgkGuhBEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.944 [XNIO-1 task-1] 6oBEJvcyTLWxBVgkGuhBEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.944 [XNIO-1 task-1] 6oBEJvcyTLWxBVgkGuhBEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.954 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.954 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"61346c58-76cf-4284-b2ca-f9b221c2","clientDesc":"86e00482-20e8-49a6-8f2b-c1761a89f6c8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:49.955 [XNIO-1 task-1] Qs1nu087QiKMupIzN27FWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:49.957 [XNIO-1 task-1] yENkyQD1Q-mZXSg8nfqEKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.957 [XNIO-1 task-1] yENkyQD1Q-mZXSg8nfqEKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.958 [XNIO-1 task-1] yENkyQD1Q-mZXSg8nfqEKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.968 [XNIO-1 task-1] JWRhKF0GSr-vsob-bTCmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7 +16:40:49.968 [XNIO-1 task-1] JWRhKF0GSr-vsob-bTCmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.968 [XNIO-1 task-1] JWRhKF0GSr-vsob-bTCmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.968 [XNIO-1 task-1] JWRhKF0GSr-vsob-bTCmwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7 +16:40:49.970 [XNIO-1 task-1] ALpQs02YQIKis_zvm4y9Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7, base path is set to: null +16:40:49.970 [XNIO-1 task-1] ALpQs02YQIKis_zvm4y9Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.970 [XNIO-1 task-1] ALpQs02YQIKis_zvm4y9Ug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.970 [XNIO-1 task-1] ALpQs02YQIKis_zvm4y9Ug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/53cca389-a205-4809-ab65-0ff83b5cdaa7, base path is set to: null +16:40:49.970 [XNIO-1 task-1] ALpQs02YQIKis_zvm4y9Ug DEBUG com.networknt.schema.TypeValidator debug - validate( "53cca389-a205-4809-ab65-0ff83b5cdaa7", "53cca389-a205-4809-ab65-0ff83b5cdaa7", clientId) +16:40:49.975 [XNIO-1 task-1] 5FY4sNS7Qxy0jKrXB3fIhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.975 [XNIO-1 task-1] 5FY4sNS7Qxy0jKrXB3fIhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.975 [XNIO-1 task-1] 5FY4sNS7Qxy0jKrXB3fIhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.975 [XNIO-1 task-1] 5FY4sNS7Qxy0jKrXB3fIhA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:49.980 [XNIO-1 task-1] l-4TC-GvQb2ZGVDbnr00HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cd008238-e017-47d4-b646-a8d304f230c9 +16:40:49.980 [XNIO-1 task-1] l-4TC-GvQb2ZGVDbnr00HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:49.980 [XNIO-1 task-1] l-4TC-GvQb2ZGVDbnr00HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:49.980 [XNIO-1 task-1] l-4TC-GvQb2ZGVDbnr00HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cd008238-e017-47d4-b646-a8d304f230c9 +16:40:49.985 [XNIO-1 task-1] FTziVGXFRDGoU2M7JZMgmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.985 [XNIO-1 task-1] FTziVGXFRDGoU2M7JZMgmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.985 [XNIO-1 task-1] FTziVGXFRDGoU2M7JZMgmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:49.996 [XNIO-1 task-1] fRW6Gga4T2aV3OPo5VExdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b39d1ed1-2512-4308-aa07-77724f7b05db, base path is set to: null +16:40:49.996 [XNIO-1 task-1] fRW6Gga4T2aV3OPo5VExdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:49.996 [XNIO-1 task-1] fRW6Gga4T2aV3OPo5VExdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:49.996 [XNIO-1 task-1] fRW6Gga4T2aV3OPo5VExdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b39d1ed1-2512-4308-aa07-77724f7b05db, base path is set to: null +16:40:49.996 [XNIO-1 task-1] fRW6Gga4T2aV3OPo5VExdw DEBUG com.networknt.schema.TypeValidator debug - validate( "b39d1ed1-2512-4308-aa07-77724f7b05db", "b39d1ed1-2512-4308-aa07-77724f7b05db", clientId) +16:40:50.003 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.003 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.003 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "cbac606c-79cc-4db7-850d-36bd257451d5", {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "0e903963-1449-444a-a730-96156e50", {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0e903963-1449-444a-a730-96156e50","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.004 [XNIO-1 task-1] YO5n7mJVTAas04RUXpAWEg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.006 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.006 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.006 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97d0fcea-f912-4a77-a19c-7b5eabad","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.007 [XNIO-1 task-1] B0L5CC7BSgCIScpON8v7Cg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.009 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.009 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.009 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.009 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cbac606c-79cc-4db7-850d-36bd257451d5", {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "67571474-6f96-4acb-95b6-0c0a5e0f", {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"67571474-6f96-4acb-95b6-0c0a5e0f","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.010 [XNIO-1 task-1] Z8cFaZupTWiR_lx0tGGLuQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.012 [XNIO-1 task-1] zIwhWQzcRNSNM4xKXfLnog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.012 [XNIO-1 task-1] zIwhWQzcRNSNM4xKXfLnog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.012 [XNIO-1 task-1] zIwhWQzcRNSNM4xKXfLnog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.012 [XNIO-1 task-1] zIwhWQzcRNSNM4xKXfLnog DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.040 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.040 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.040 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.040 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.040 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1b5e946e-d13a-42f2-82a7-6656f510","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.041 [XNIO-1 task-1] IxEGCv7cQkG92S7OyYylbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.043 [XNIO-1 task-1] JGnP3e5tRVyrEjOhfoj5fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.043 [XNIO-1 task-1] JGnP3e5tRVyrEjOhfoj5fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.043 [XNIO-1 task-1] JGnP3e5tRVyrEjOhfoj5fQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.043 [XNIO-1 task-1] JGnP3e5tRVyrEjOhfoj5fQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.047 [XNIO-1 task-1] 5TRNvc2xTJSnk-YDl7eEOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.047 [XNIO-1 task-1] 5TRNvc2xTJSnk-YDl7eEOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.048 [XNIO-1 task-1] 5TRNvc2xTJSnk-YDl7eEOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.058 [XNIO-1 task-1] Q_8YYGMVRYKyT3uWZ1kuXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:50.058 [XNIO-1 task-1] Q_8YYGMVRYKyT3uWZ1kuXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.058 [XNIO-1 task-1] Q_8YYGMVRYKyT3uWZ1kuXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.058 [XNIO-1 task-1] Q_8YYGMVRYKyT3uWZ1kuXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:50.060 [XNIO-1 task-1] YRes67ebT62R2neOMqzBPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.060 [XNIO-1 task-1] YRes67ebT62R2neOMqzBPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.061 [XNIO-1 task-1] YRes67ebT62R2neOMqzBPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.061 [XNIO-1 task-1] YRes67ebT62R2neOMqzBPA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.066 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.066 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.066 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.066 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0412432b-cd34-48f2-8fcf-65060c28","clientDesc":"7221f13c-0a28-4f78-be58-81771e3068f1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.067 [XNIO-1 task-1] nFQG-N9BR-SpbzSPgSuFkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.069 [XNIO-1 task-1] 1LvH7YiRSeqnKQPsnPQuNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79fe4f9f-2abd-47ae-938d-b51fbf2d20e1 +16:40:50.069 [XNIO-1 task-1] 1LvH7YiRSeqnKQPsnPQuNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.069 [XNIO-1 task-1] 1LvH7YiRSeqnKQPsnPQuNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.069 [XNIO-1 task-1] 1LvH7YiRSeqnKQPsnPQuNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79fe4f9f-2abd-47ae-938d-b51fbf2d20e1 +16:40:50.071 [XNIO-1 task-1] I_PIFu28T0i0UObvxvJ3yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79fe4f9f-2abd-47ae-938d-b51fbf2d20e1, base path is set to: null +16:40:50.071 [XNIO-1 task-1] I_PIFu28T0i0UObvxvJ3yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.071 [XNIO-1 task-1] I_PIFu28T0i0UObvxvJ3yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.071 [XNIO-1 task-1] I_PIFu28T0i0UObvxvJ3yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/79fe4f9f-2abd-47ae-938d-b51fbf2d20e1, base path is set to: null +16:40:50.071 [XNIO-1 task-1] I_PIFu28T0i0UObvxvJ3yw DEBUG com.networknt.schema.TypeValidator debug - validate( "79fe4f9f-2abd-47ae-938d-b51fbf2d20e1", "79fe4f9f-2abd-47ae-938d-b51fbf2d20e1", clientId) +16:40:50.073 [XNIO-1 task-1] JiECXkbCQu68Sblc7jFHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79fe4f9f-2abd-47ae-938d-b51fbf2d20e1 +16:40:50.073 [XNIO-1 task-1] JiECXkbCQu68Sblc7jFHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.073 [XNIO-1 task-1] JiECXkbCQu68Sblc7jFHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.073 [XNIO-1 task-1] JiECXkbCQu68Sblc7jFHgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/79fe4f9f-2abd-47ae-938d-b51fbf2d20e1 +16:40:50.078 [XNIO-1 task-1] unw5MkJqRCiSNnZdMJrNdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.078 [XNIO-1 task-1] unw5MkJqRCiSNnZdMJrNdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.078 [XNIO-1 task-1] unw5MkJqRCiSNnZdMJrNdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.088 [XNIO-1 task-1] Y7oDmunmSyGMAiT2viiOhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.088 [XNIO-1 task-1] Y7oDmunmSyGMAiT2viiOhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.088 [XNIO-1 task-1] Y7oDmunmSyGMAiT2viiOhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.099 [XNIO-1 task-1] low4bcdXQKuYb77kip2ymA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.099 [XNIO-1 task-1] low4bcdXQKuYb77kip2ymA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.099 [XNIO-1 task-1] low4bcdXQKuYb77kip2ymA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.111 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.111 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.111 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"50260c30-71a5-4dc1-825a-03658748","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.112 [XNIO-1 task-1] sD5e8kTdQtq3rIkJw6qOog ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.114 [XNIO-1 task-1] x_KD0f_CSD6VenmE0GzGEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.114 [XNIO-1 task-1] x_KD0f_CSD6VenmE0GzGEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.114 [XNIO-1 task-1] x_KD0f_CSD6VenmE0GzGEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.114 [XNIO-1 task-1] x_KD0f_CSD6VenmE0GzGEA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.120 [XNIO-1 task-1] jpjQdFD9SzeftO8YWl9_xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fafc82-ea68-4813-9e88-cf2e1b97cb3b +16:40:50.120 [XNIO-1 task-1] jpjQdFD9SzeftO8YWl9_xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.120 [XNIO-1 task-1] jpjQdFD9SzeftO8YWl9_xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.120 [XNIO-1 task-1] jpjQdFD9SzeftO8YWl9_xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fafc82-ea68-4813-9e88-cf2e1b97cb3b +16:40:50.125 [XNIO-1 task-1] ks5k6QAEQzurq3FunMeGgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.125 [XNIO-1 task-1] ks5k6QAEQzurq3FunMeGgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.125 [XNIO-1 task-1] ks5k6QAEQzurq3FunMeGgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.130 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d4353da3-f857-4ded-abf6-2e05adc59082 +16:40:50.131 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:d4353da3-f857-4ded-abf6-2e05adc59082 +16:40:50.136 [XNIO-1 task-1] MDZykToURn-bNxKCrqUGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.136 [XNIO-1 task-1] MDZykToURn-bNxKCrqUGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.136 [XNIO-1 task-1] MDZykToURn-bNxKCrqUGZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.148 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.148 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.148 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.148 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.148 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "d6bb30b7-24ec-4d62-8279-9c41e8b426c5", {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba6abfe1-94d1-4189-a316-0cba4d65", {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ba6abfe1-94d1-4189-a316-0cba4d65","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.149 [XNIO-1 task-1] q-3VFqwdR7SRL3zfbgr2Hw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.151 [XNIO-1 task-1] iJ3ZfJeZQlyfQyWVoX8nqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/900dd9de-1c35-4da2-95c4-d7bc64af18d3, base path is set to: null +16:40:50.151 [XNIO-1 task-1] iJ3ZfJeZQlyfQyWVoX8nqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.151 [XNIO-1 task-1] iJ3ZfJeZQlyfQyWVoX8nqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.151 [XNIO-1 task-1] iJ3ZfJeZQlyfQyWVoX8nqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/900dd9de-1c35-4da2-95c4-d7bc64af18d3, base path is set to: null +16:40:50.151 [XNIO-1 task-1] iJ3ZfJeZQlyfQyWVoX8nqw DEBUG com.networknt.schema.TypeValidator debug - validate( "900dd9de-1c35-4da2-95c4-d7bc64af18d3", "900dd9de-1c35-4da2-95c4-d7bc64af18d3", clientId) +16:40:50.157 [XNIO-1 task-1] W9yQn56QQ1a5dUqy4Y35FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fafc82-ea68-4813-9e88-cf2e1b97cb3b +16:40:50.157 [XNIO-1 task-1] W9yQn56QQ1a5dUqy4Y35FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.157 [XNIO-1 task-1] W9yQn56QQ1a5dUqy4Y35FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.157 [XNIO-1 task-1] W9yQn56QQ1a5dUqy4Y35FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b6fafc82-ea68-4813-9e88-cf2e1b97cb3b +16:40:50.162 [XNIO-1 task-1] BzZz1Q6DRtOoutx3hI272w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.162 [XNIO-1 task-1] BzZz1Q6DRtOoutx3hI272w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.162 [XNIO-1 task-1] BzZz1Q6DRtOoutx3hI272w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.167 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4002b25e-06ab-4b5d-8b91-f856103cf207 +16:40:50.168 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4002b25e-06ab-4b5d-8b91-f856103cf207 +16:40:50.173 [XNIO-1 task-1] uM8vadVUSr2mkMB8cAi_Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.173 [XNIO-1 task-1] uM8vadVUSr2mkMB8cAi_Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.173 [XNIO-1 task-1] uM8vadVUSr2mkMB8cAi_Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.173 [XNIO-1 task-1] uM8vadVUSr2mkMB8cAi_Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.179 [XNIO-1 task-1] ywsDIxu2QKmnYF928YY6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32954381-c98c-450a-83b4-00c633679f02 +16:40:50.179 [XNIO-1 task-1] ywsDIxu2QKmnYF928YY6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.179 [XNIO-1 task-1] ywsDIxu2QKmnYF928YY6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.179 [XNIO-1 task-1] ywsDIxu2QKmnYF928YY6lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32954381-c98c-450a-83b4-00c633679f02 +16:40:50.181 [XNIO-1 task-1] 53nUOczgT3yoAc9J9-vLcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2dad60d1-c64c-494d-9d92-5924ad339137, base path is set to: null +16:40:50.181 [XNIO-1 task-1] 53nUOczgT3yoAc9J9-vLcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.181 [XNIO-1 task-1] 53nUOczgT3yoAc9J9-vLcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.181 [XNIO-1 task-1] 53nUOczgT3yoAc9J9-vLcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2dad60d1-c64c-494d-9d92-5924ad339137, base path is set to: null +16:40:50.181 [XNIO-1 task-1] 53nUOczgT3yoAc9J9-vLcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2dad60d1-c64c-494d-9d92-5924ad339137", "2dad60d1-c64c-494d-9d92-5924ad339137", clientId) +16:40:50.183 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.183 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "db857f7f-d368-4a42-ae27-fc572496f317", {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "69716ec6-bbae-482d-84e6-739eabf2", {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"69716ec6-bbae-482d-84e6-739eabf2","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.184 [XNIO-1 task-1] s5gVS0OJTHWo-Kf3vRyoKg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.187 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"dcd394a5-a54b-4d72-b883-58cf3d4e","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.188 [XNIO-1 task-1] jJIBbqY6QvKUSvffrSNyFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.190 [XNIO-1 task-1] q6XbF8diSuC9-fMsUpAwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.190 [XNIO-1 task-1] q6XbF8diSuC9-fMsUpAwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.190 [XNIO-1 task-1] q6XbF8diSuC9-fMsUpAwSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "cbac606c-79cc-4db7-850d-36bd257451d5", {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "948c30ef-7151-4fc9-afe0-53ca6b18", {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.203 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.204 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"948c30ef-7151-4fc9-afe0-53ca6b18","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.204 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.204 [XNIO-1 task-1] bh-a7SEmTS2R5cWWrYAHJA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.206 [XNIO-1 task-1] KMbxwD8sRhuko-8dhCjkTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.206 [XNIO-1 task-1] KMbxwD8sRhuko-8dhCjkTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.206 [XNIO-1 task-1] KMbxwD8sRhuko-8dhCjkTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.219 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.219 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.220 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a773d832-a1c3-4bff-9063-d501623a","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.221 [XNIO-1 task-1] P4bjPF5gQzi2fgS4jrtFRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.222 [XNIO-1 task-1] O3kecO_cT025DcxP-HevbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:50.222 [XNIO-1 task-1] O3kecO_cT025DcxP-HevbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.223 [XNIO-1 task-1] O3kecO_cT025DcxP-HevbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.223 [XNIO-1 task-1] O3kecO_cT025DcxP-HevbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:50.227 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.227 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.227 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.227 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.227 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11b9348b-0487-463c-a49b-ec20596b","clientDesc":"493c2c57-f61a-4169-a176-b38632cba60e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.228 [XNIO-1 task-1] b2g1AO7MSCS7fDRNawYD7g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.235 [XNIO-1 task-1] Hu3p9yfWTZGgrHW1CubkNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4002b25e-06ab-4b5d-8b91-f856103cf207 +16:40:50.235 [XNIO-1 task-1] Hu3p9yfWTZGgrHW1CubkNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.235 [XNIO-1 task-1] Hu3p9yfWTZGgrHW1CubkNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.235 [XNIO-1 task-1] Hu3p9yfWTZGgrHW1CubkNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4002b25e-06ab-4b5d-8b91-f856103cf207 +16:40:50.237 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.237 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.238 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a65dd01e-dade-4413-a5e1-46b8efde","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.239 [XNIO-1 task-1] Df6bQw7OTMma1nWmZqgLSg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.241 [XNIO-1 task-1] 8o8b5usgQtuyvunt4qB_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/159ed723-01e5-42f6-a719-70a6bbcca4bf +16:40:50.241 [XNIO-1 task-1] 8o8b5usgQtuyvunt4qB_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.241 [XNIO-1 task-1] 8o8b5usgQtuyvunt4qB_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.241 [XNIO-1 task-1] 8o8b5usgQtuyvunt4qB_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/159ed723-01e5-42f6-a719-70a6bbcca4bf +16:40:50.246 [XNIO-1 task-1] 8_6MG-SNQCqkvg4qXAiovw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.246 [XNIO-1 task-1] 8_6MG-SNQCqkvg4qXAiovw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.246 [XNIO-1 task-1] 8_6MG-SNQCqkvg4qXAiovw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.246 [XNIO-1 task-1] 8_6MG-SNQCqkvg4qXAiovw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.255 [XNIO-1 task-1] AIggBSz2TR-JVa2BrsBuWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7facbc80-bb8b-4c8a-9f60-286393e25c54, base path is set to: null +16:40:50.255 [XNIO-1 task-1] AIggBSz2TR-JVa2BrsBuWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.255 [XNIO-1 task-1] AIggBSz2TR-JVa2BrsBuWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.255 [XNIO-1 task-1] AIggBSz2TR-JVa2BrsBuWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7facbc80-bb8b-4c8a-9f60-286393e25c54, base path is set to: null +16:40:50.255 [XNIO-1 task-1] AIggBSz2TR-JVa2BrsBuWA DEBUG com.networknt.schema.TypeValidator debug - validate( "7facbc80-bb8b-4c8a-9f60-286393e25c54", "7facbc80-bb8b-4c8a-9f60-286393e25c54", clientId) +16:40:50.257 [XNIO-1 task-1] G-qPgs1mRmGgjvnSrrnZbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4002b25e-06ab-4b5d-8b91-f856103cf207 +16:40:50.257 [XNIO-1 task-1] G-qPgs1mRmGgjvnSrrnZbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.257 [XNIO-1 task-1] G-qPgs1mRmGgjvnSrrnZbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.257 [XNIO-1 task-1] G-qPgs1mRmGgjvnSrrnZbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4002b25e-06ab-4b5d-8b91-f856103cf207 +16:40:50.258 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4002b25e-06ab-4b5d-8b91-f856103cf207 +16:40:50.262 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.262 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.262 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.262 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cbac606c-79cc-4db7-850d-36bd257451d5", {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ccf8468e-fb1d-4b43-b666-28298971", {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ccf8468e-fb1d-4b43-b666-28298971","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.263 [XNIO-1 task-1] lVCZDCOESqCEt-4NrPiCGQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.266 [XNIO-1 task-1] UmjYd_CDQgKhESEsIMaI-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a80a4606-cfbe-497c-b290-f9413dd95824, base path is set to: null +16:40:50.266 [XNIO-1 task-1] UmjYd_CDQgKhESEsIMaI-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.266 [XNIO-1 task-1] UmjYd_CDQgKhESEsIMaI-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.266 [XNIO-1 task-1] UmjYd_CDQgKhESEsIMaI-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a80a4606-cfbe-497c-b290-f9413dd95824, base path is set to: null +16:40:50.267 [XNIO-1 task-1] UmjYd_CDQgKhESEsIMaI-w DEBUG com.networknt.schema.TypeValidator debug - validate( "a80a4606-cfbe-497c-b290-f9413dd95824", "a80a4606-cfbe-497c-b290-f9413dd95824", clientId) +16:40:50.272 [XNIO-1 task-1] DwidNk8gSn6syEcB4wB9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4353da3-f857-4ded-abf6-2e05adc59082 +16:40:50.272 [XNIO-1 task-1] DwidNk8gSn6syEcB4wB9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.273 [XNIO-1 task-1] DwidNk8gSn6syEcB4wB9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.273 [XNIO-1 task-1] DwidNk8gSn6syEcB4wB9Pw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d4353da3-f857-4ded-abf6-2e05adc59082 +16:40:50.273 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:d4353da3-f857-4ded-abf6-2e05adc59082 +16:40:50.278 [XNIO-1 task-1] ggq3699BTyajr9LUT9_Yzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.278 [XNIO-1 task-1] ggq3699BTyajr9LUT9_Yzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.278 [XNIO-1 task-1] ggq3699BTyajr9LUT9_Yzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.278 [XNIO-1 task-1] ggq3699BTyajr9LUT9_Yzg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.285 [XNIO-1 task-1] PdicA_GUTwK30kAg6K2iJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7facbc80-bb8b-4c8a-9f60-286393e25c54 +16:40:50.285 [XNIO-1 task-1] PdicA_GUTwK30kAg6K2iJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.285 [XNIO-1 task-1] PdicA_GUTwK30kAg6K2iJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.285 [XNIO-1 task-1] PdicA_GUTwK30kAg6K2iJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/7facbc80-bb8b-4c8a-9f60-286393e25c54 +16:40:50.288 [XNIO-1 task-1] _64ubIeNRMOtejRyAYgUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2dad60d1-c64c-494d-9d92-5924ad339137, base path is set to: null +16:40:50.288 [XNIO-1 task-1] _64ubIeNRMOtejRyAYgUNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.288 [XNIO-1 task-1] _64ubIeNRMOtejRyAYgUNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.288 [XNIO-1 task-1] _64ubIeNRMOtejRyAYgUNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2dad60d1-c64c-494d-9d92-5924ad339137, base path is set to: null +16:40:50.288 [XNIO-1 task-1] _64ubIeNRMOtejRyAYgUNg DEBUG com.networknt.schema.TypeValidator debug - validate( "2dad60d1-c64c-494d-9d92-5924ad339137", "2dad60d1-c64c-494d-9d92-5924ad339137", clientId) +16:40:50.291 [XNIO-1 task-1] mDe2HD2xTnmIq7cT3m0RZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.291 [XNIO-1 task-1] mDe2HD2xTnmIq7cT3m0RZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.291 [XNIO-1 task-1] mDe2HD2xTnmIq7cT3m0RZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.302 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.302 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.302 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.302 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.302 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.302 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG com.networknt.schema.TypeValidator debug - validate( "781d2d23-e422-42d1-8f69-8a1e0c71f7ed", {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.302 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.303 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.303 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG com.networknt.schema.TypeValidator debug - validate( "a91c1b41-3c82-428d-8f8c-d0429ba9", {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.303 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.303 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a91c1b41-3c82-428d-8f8c-d0429ba9","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.303 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.303 [XNIO-1 task-1] lo2bmcMxTFOf5RpRAQ5bLA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.305 [XNIO-1 task-1] tPqI-Vz3SvmtFLfQ4QnPDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.305 [XNIO-1 task-1] tPqI-Vz3SvmtFLfQ4QnPDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.305 [XNIO-1 task-1] tPqI-Vz3SvmtFLfQ4QnPDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.305 [XNIO-1 task-1] tPqI-Vz3SvmtFLfQ4QnPDw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.311 [XNIO-1 task-1] xRLit0H1TMyb3eHcNOttMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.311 [XNIO-1 task-1] xRLit0H1TMyb3eHcNOttMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.311 [XNIO-1 task-1] xRLit0H1TMyb3eHcNOttMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.311 [XNIO-1 task-1] xRLit0H1TMyb3eHcNOttMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.316 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.316 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.316 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"03d86a7f-cbf9-4a57-a6cd-9d15f0ed","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.317 [XNIO-1 task-1] cim1MHkkTnChTlGEXuTgLA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.319 [XNIO-1 task-1] ywzrP6KMRwW7VPDQK7HVcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.319 [XNIO-1 task-1] ywzrP6KMRwW7VPDQK7HVcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.319 [XNIO-1 task-1] ywzrP6KMRwW7VPDQK7HVcA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.319 [XNIO-1 task-1] ywzrP6KMRwW7VPDQK7HVcA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.325 [XNIO-1 task-1] ZxklS6OBRXKxeJ1-GJHEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.325 [XNIO-1 task-1] ZxklS6OBRXKxeJ1-GJHEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.325 [XNIO-1 task-1] ZxklS6OBRXKxeJ1-GJHEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.325 [XNIO-1 task-1] ZxklS6OBRXKxeJ1-GJHEgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.331 [XNIO-1 task-1] 07RSEHw9QqGLPFc50H8VFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.331 [XNIO-1 task-1] 07RSEHw9QqGLPFc50H8VFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.331 [XNIO-1 task-1] 07RSEHw9QqGLPFc50H8VFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.343 [XNIO-1 task-1] FuLAjOsKQ0-dSLXTsyQU-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.343 [XNIO-1 task-1] FuLAjOsKQ0-dSLXTsyQU-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.343 [XNIO-1 task-1] FuLAjOsKQ0-dSLXTsyQU-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.354 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.354 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.354 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG com.networknt.schema.TypeValidator debug - validate( "db857f7f-d368-4a42-ae27-fc572496f317", {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG com.networknt.schema.TypeValidator debug - validate( "f7669351-9f7f-485e-9848-2492999d", {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"f7669351-9f7f-485e-9848-2492999d","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.355 [XNIO-1 task-1] kHPT2scFRnmMGkAPpy3_zw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.357 [XNIO-1 task-1] RMw8RK0ASROpKGqtmM3BaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbf15385-5a63-4e14-9c76-b3a6103ff17a, base path is set to: null +16:40:50.357 [XNIO-1 task-1] RMw8RK0ASROpKGqtmM3BaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.357 [XNIO-1 task-1] RMw8RK0ASROpKGqtmM3BaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.357 [XNIO-1 task-1] RMw8RK0ASROpKGqtmM3BaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbf15385-5a63-4e14-9c76-b3a6103ff17a, base path is set to: null +16:40:50.358 [XNIO-1 task-1] RMw8RK0ASROpKGqtmM3BaA DEBUG com.networknt.schema.TypeValidator debug - validate( "dbf15385-5a63-4e14-9c76-b3a6103ff17a", "dbf15385-5a63-4e14-9c76-b3a6103ff17a", clientId) +16:40:50.363 [XNIO-1 task-1] hAxH3p_eSPmfL-e4MKqYfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.363 [XNIO-1 task-1] hAxH3p_eSPmfL-e4MKqYfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.363 [XNIO-1 task-1] hAxH3p_eSPmfL-e4MKqYfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.363 [XNIO-1 task-1] hAxH3p_eSPmfL-e4MKqYfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG com.networknt.schema.TypeValidator debug - validate( "db857f7f-d368-4a42-ae27-fc572496f317", {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG com.networknt.schema.TypeValidator debug - validate( "166a6965-1aee-4be7-aeb0-34d0de87", {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.370 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"166a6965-1aee-4be7-aeb0-34d0de87","clientDesc":"db857f7f-d368-4a42-ae27-fc572496f317","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.371 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.371 [XNIO-1 task-1] wX81-51TR_e-6lUd8O7rTw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.372 [XNIO-1 task-1] CHdJEVSbQ--ojGOkh7XG2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.372 [XNIO-1 task-1] CHdJEVSbQ--ojGOkh7XG2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.373 [XNIO-1 task-1] CHdJEVSbQ--ojGOkh7XG2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.373 [XNIO-1 task-1] CHdJEVSbQ--ojGOkh7XG2w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.377 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.377 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.378 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.378 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.378 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.378 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.378 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.378 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.378 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.379 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.379 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.379 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8adca2e2-7428-4d28-bbc3-f3079476","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.379 [XNIO-1 task-1] 0GGcrk8tTzGz1lhO_I7GXA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.381 [XNIO-1 task-1] Gpu0Jb4KTCGW4I9SUy_3Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.381 [XNIO-1 task-1] Gpu0Jb4KTCGW4I9SUy_3Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.381 [XNIO-1 task-1] Gpu0Jb4KTCGW4I9SUy_3Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.394 [XNIO-1 task-1] c5bJ0kOdTq-wGuBHGhgQKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32954381-c98c-450a-83b4-00c633679f02 +16:40:50.394 [XNIO-1 task-1] c5bJ0kOdTq-wGuBHGhgQKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.394 [XNIO-1 task-1] c5bJ0kOdTq-wGuBHGhgQKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.394 [XNIO-1 task-1] c5bJ0kOdTq-wGuBHGhgQKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/32954381-c98c-450a-83b4-00c633679f02 +16:40:50.396 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.396 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.396 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.396 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.396 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.396 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.396 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.397 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.397 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.397 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.397 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.397 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"df494c8c-3925-4c8f-b11b-7e213b86","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.397 [XNIO-1 task-1] PnVgB6g7Q_6YD8amk24GxQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.399 [XNIO-1 task-1] V4k0Y9cjSDyGhRIrWsqqWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.399 [XNIO-1 task-1] V4k0Y9cjSDyGhRIrWsqqWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.399 [XNIO-1 task-1] V4k0Y9cjSDyGhRIrWsqqWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.410 [XNIO-1 task-1] -A0568izQHi6n0KJCMMf-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:50.410 [XNIO-1 task-1] -A0568izQHi6n0KJCMMf-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.410 [XNIO-1 task-1] -A0568izQHi6n0KJCMMf-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.410 [XNIO-1 task-1] -A0568izQHi6n0KJCMMf-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:50.411 [XNIO-1 task-1] mR1_7glzQImTgQ3ak8xQqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.412 [XNIO-1 task-1] mR1_7glzQImTgQ3ak8xQqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.412 [XNIO-1 task-1] mR1_7glzQImTgQ3ak8xQqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.416 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:04360a42-5d1a-4b1c-b27a-490aca8f87c8 +16:40:50.417 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:04360a42-5d1a-4b1c-b27a-490aca8f87c8 +16:40:50.421 [XNIO-1 task-1] 5rnFYmkuSm2VyF128GvRBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.422 [XNIO-1 task-1] 5rnFYmkuSm2VyF128GvRBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.422 [XNIO-1 task-1] 5rnFYmkuSm2VyF128GvRBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.432 [XNIO-1 task-1] t70OH-SuS8abUmzOZKav2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c +16:40:50.432 [XNIO-1 task-1] t70OH-SuS8abUmzOZKav2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.432 [XNIO-1 task-1] t70OH-SuS8abUmzOZKav2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.432 [XNIO-1 task-1] t70OH-SuS8abUmzOZKav2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c +16:40:50.434 [XNIO-1 task-1] ZsRLSyw2RkuHjVrc0x5yGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.434 [XNIO-1 task-1] ZsRLSyw2RkuHjVrc0x5yGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.435 [XNIO-1 task-1] ZsRLSyw2RkuHjVrc0x5yGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.435 [XNIO-1 task-1] ZsRLSyw2RkuHjVrc0x5yGg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.440 [XNIO-1 task-1] 1EXKV__VSrWecG37mFrp6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c, base path is set to: null +16:40:50.440 [XNIO-1 task-1] 1EXKV__VSrWecG37mFrp6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.440 [XNIO-1 task-1] 1EXKV__VSrWecG37mFrp6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.440 [XNIO-1 task-1] 1EXKV__VSrWecG37mFrp6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c, base path is set to: null +16:40:50.440 [XNIO-1 task-1] 1EXKV__VSrWecG37mFrp6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e15a2555-0442-4049-95ad-0c48f7d02e4c", "e15a2555-0442-4049-95ad-0c48f7d02e4c", clientId) +16:40:50.443 [XNIO-1 task-1] O6HrjoScQ2iNL7GPcTO8ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.443 [XNIO-1 task-1] O6HrjoScQ2iNL7GPcTO8ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.443 [XNIO-1 task-1] O6HrjoScQ2iNL7GPcTO8ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.455 [XNIO-1 task-1] jAO8clSbTsmB81CSB3EqtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.455 [XNIO-1 task-1] jAO8clSbTsmB81CSB3EqtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.456 [XNIO-1 task-1] jAO8clSbTsmB81CSB3EqtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.466 [XNIO-1 task-1] cOMZRPR5RkSh55jbQQunqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.466 [XNIO-1 task-1] cOMZRPR5RkSh55jbQQunqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.466 [XNIO-1 task-1] cOMZRPR5RkSh55jbQQunqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.478 [XNIO-1 task-1] lCqjXDVSRHelGuml7fvBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/45d88e6f-53c7-499a-a87f-db17596c8092 +16:40:50.478 [XNIO-1 task-1] lCqjXDVSRHelGuml7fvBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.478 [XNIO-1 task-1] lCqjXDVSRHelGuml7fvBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.478 [XNIO-1 task-1] lCqjXDVSRHelGuml7fvBSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/45d88e6f-53c7-499a-a87f-db17596c8092 +16:40:50.483 [XNIO-1 task-1] zrpIvaCmQjaPCBBuCzJrBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.483 [XNIO-1 task-1] zrpIvaCmQjaPCBBuCzJrBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.483 [XNIO-1 task-1] zrpIvaCmQjaPCBBuCzJrBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.484 [XNIO-1 task-1] zrpIvaCmQjaPCBBuCzJrBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.489 [XNIO-1 task-1] qivDTRSlTamCMj9D0GOo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c, base path is set to: null +16:40:50.489 [XNIO-1 task-1] qivDTRSlTamCMj9D0GOo2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.489 [XNIO-1 task-1] qivDTRSlTamCMj9D0GOo2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.489 [XNIO-1 task-1] qivDTRSlTamCMj9D0GOo2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c, base path is set to: null +16:40:50.489 [XNIO-1 task-1] qivDTRSlTamCMj9D0GOo2A DEBUG com.networknt.schema.TypeValidator debug - validate( "e15a2555-0442-4049-95ad-0c48f7d02e4c", "e15a2555-0442-4049-95ad-0c48f7d02e4c", clientId) +16:40:50.491 [XNIO-1 task-1] chiLtxjwT6-sjo118yyMfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.491 [XNIO-1 task-1] chiLtxjwT6-sjo118yyMfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.491 [XNIO-1 task-1] chiLtxjwT6-sjo118yyMfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.491 [XNIO-1 task-1] chiLtxjwT6-sjo118yyMfg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.496 [XNIO-1 task-1] iL0WHRQ2Q7OLI7wLWztUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4d93a94-952b-4e07-a2e8-59c587e36f00 +16:40:50.496 [XNIO-1 task-1] iL0WHRQ2Q7OLI7wLWztUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.496 [XNIO-1 task-1] iL0WHRQ2Q7OLI7wLWztUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.496 [XNIO-1 task-1] iL0WHRQ2Q7OLI7wLWztUsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4d93a94-952b-4e07-a2e8-59c587e36f00 +16:40:50.499 [XNIO-1 task-1] fItZOjelRBOhLciq9NttuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e4c7d840-7624-4daf-8de2-60427435ae5d, base path is set to: null +16:40:50.499 [XNIO-1 task-1] fItZOjelRBOhLciq9NttuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.499 [XNIO-1 task-1] fItZOjelRBOhLciq9NttuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.499 [XNIO-1 task-1] fItZOjelRBOhLciq9NttuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e4c7d840-7624-4daf-8de2-60427435ae5d, base path is set to: null +16:40:50.499 [XNIO-1 task-1] fItZOjelRBOhLciq9NttuA DEBUG com.networknt.schema.TypeValidator debug - validate( "e4c7d840-7624-4daf-8de2-60427435ae5d", "e4c7d840-7624-4daf-8de2-60427435ae5d", clientId) +16:40:50.505 [XNIO-1 task-1] H5BiPcJQSYS2HdhYPQhoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c +16:40:50.505 [XNIO-1 task-1] H5BiPcJQSYS2HdhYPQhoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.505 [XNIO-1 task-1] H5BiPcJQSYS2HdhYPQhoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.505 [XNIO-1 task-1] H5BiPcJQSYS2HdhYPQhoAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.508 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8ec5404a-46f7-42eb-83be-9d33e0f6","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.509 [XNIO-1 task-1] nWk8hnGnRVqPOCX5Ot7XQw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.511 [XNIO-1 task-1] 8jCCDTopR022zu8nkeRddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c +16:40:50.511 [XNIO-1 task-1] 8jCCDTopR022zu8nkeRddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.511 [XNIO-1 task-1] 8jCCDTopR022zu8nkeRddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.511 [XNIO-1 task-1] 8jCCDTopR022zu8nkeRddQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e15a2555-0442-4049-95ad-0c48f7d02e4c +16:40:50.517 [XNIO-1 task-1] NNTy3dHNSEmK_bk8wzUNoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.517 [XNIO-1 task-1] NNTy3dHNSEmK_bk8wzUNoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.517 [XNIO-1 task-1] NNTy3dHNSEmK_bk8wzUNoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.517 [XNIO-1 task-1] NNTy3dHNSEmK_bk8wzUNoA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.524 [XNIO-1 task-1] 7ap08Jy3TIallE4V3OnjKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04a1be16-b49d-4afd-a010-9cb7b0c5c025, base path is set to: null +16:40:50.524 [XNIO-1 task-1] 7ap08Jy3TIallE4V3OnjKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.524 [XNIO-1 task-1] 7ap08Jy3TIallE4V3OnjKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.525 [XNIO-1 task-1] 7ap08Jy3TIallE4V3OnjKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04a1be16-b49d-4afd-a010-9cb7b0c5c025, base path is set to: null +16:40:50.525 [XNIO-1 task-1] 7ap08Jy3TIallE4V3OnjKw DEBUG com.networknt.schema.TypeValidator debug - validate( "04a1be16-b49d-4afd-a010-9cb7b0c5c025", "04a1be16-b49d-4afd-a010-9cb7b0c5c025", clientId) +16:40:50.527 [XNIO-1 task-1] UZIITz-cQyusCnjUSXl1kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.527 [XNIO-1 task-1] UZIITz-cQyusCnjUSXl1kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.528 [XNIO-1 task-1] UZIITz-cQyusCnjUSXl1kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.528 [XNIO-1 task-1] UZIITz-cQyusCnjUSXl1kA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.533 [XNIO-1 task-1] i7kaxP5dQqKUbFLmsw4JJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4d93a94-952b-4e07-a2e8-59c587e36f00 +16:40:50.533 [XNIO-1 task-1] i7kaxP5dQqKUbFLmsw4JJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.533 [XNIO-1 task-1] i7kaxP5dQqKUbFLmsw4JJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.533 [XNIO-1 task-1] i7kaxP5dQqKUbFLmsw4JJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/c4d93a94-952b-4e07-a2e8-59c587e36f00 +16:40:50.536 [XNIO-1 task-1] jw7htenCQHiH-2p2LrqQSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.536 [XNIO-1 task-1] jw7htenCQHiH-2p2LrqQSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.536 [XNIO-1 task-1] jw7htenCQHiH-2p2LrqQSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.547 [XNIO-1 task-1] abhXgqGWQoO7-knslk9YUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.547 [XNIO-1 task-1] abhXgqGWQoO7-knslk9YUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.547 [XNIO-1 task-1] abhXgqGWQoO7-knslk9YUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.559 [XNIO-1 task-1] R18z8SGVRceBMNN7e8UT-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.559 [XNIO-1 task-1] R18z8SGVRceBMNN7e8UT-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.559 [XNIO-1 task-1] R18z8SGVRceBMNN7e8UT-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.570 [XNIO-1 task-1] S_4oizggTXiBqWfTrpl-FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04a1be16-b49d-4afd-a010-9cb7b0c5c025, base path is set to: null +16:40:50.570 [XNIO-1 task-1] S_4oizggTXiBqWfTrpl-FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.570 [XNIO-1 task-1] S_4oizggTXiBqWfTrpl-FA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.570 [XNIO-1 task-1] S_4oizggTXiBqWfTrpl-FA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04a1be16-b49d-4afd-a010-9cb7b0c5c025, base path is set to: null +16:40:50.570 [XNIO-1 task-1] S_4oizggTXiBqWfTrpl-FA DEBUG com.networknt.schema.TypeValidator debug - validate( "04a1be16-b49d-4afd-a010-9cb7b0c5c025", "04a1be16-b49d-4afd-a010-9cb7b0c5c025", clientId) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "cce2c96b-bb22-4d56-bd2f-8317288ab06a", {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "c114faa0-cb6c-482b-857c-dfe982be", {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c114faa0-cb6c-482b-857c-dfe982be","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.573 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.574 [XNIO-1 task-1] xBNPpXLAQF-QetBfAs85Kg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.576 [XNIO-1 task-1] Gn5iZu96TIi5iux-Eh092Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.576 [XNIO-1 task-1] Gn5iZu96TIi5iux-Eh092Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.576 [XNIO-1 task-1] Gn5iZu96TIi5iux-Eh092Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.576 [XNIO-1 task-1] Gn5iZu96TIi5iux-Eh092Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.583 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.583 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.583 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ca6090fb-d1cc-49a9-a234-8c357859","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.584 [XNIO-1 task-1] kpt_SKO1TluJA-OgABE7wQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.587 [XNIO-1 task-1] HAE5vEFkTRCP9lgD_MaBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.587 [XNIO-1 task-1] HAE5vEFkTRCP9lgD_MaBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.587 [XNIO-1 task-1] HAE5vEFkTRCP9lgD_MaBxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.587 [XNIO-1 task-1] HAE5vEFkTRCP9lgD_MaBxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.592 [XNIO-1 task-1] 6EBGw6vwTga7jYBf-cA1Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.592 [XNIO-1 task-1] 6EBGw6vwTga7jYBf-cA1Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.592 [XNIO-1 task-1] 6EBGw6vwTga7jYBf-cA1Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.593 [XNIO-1 task-1] 6EBGw6vwTga7jYBf-cA1Lw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.598 [XNIO-1 task-1] XWMVE6ZIQoC2L0fY3pzg8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04a1be16-b49d-4afd-a010-9cb7b0c5c025 +16:40:50.598 [XNIO-1 task-1] XWMVE6ZIQoC2L0fY3pzg8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.598 [XNIO-1 task-1] XWMVE6ZIQoC2L0fY3pzg8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.598 [XNIO-1 task-1] XWMVE6ZIQoC2L0fY3pzg8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04a1be16-b49d-4afd-a010-9cb7b0c5c025 +16:40:50.603 [XNIO-1 task-1] 78rSoz3IRByaDSq1YQ9l9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.603 [XNIO-1 task-1] 78rSoz3IRByaDSq1YQ9l9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.603 [XNIO-1 task-1] 78rSoz3IRByaDSq1YQ9l9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.603 [XNIO-1 task-1] 78rSoz3IRByaDSq1YQ9l9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.609 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.610 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.610 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"67d03920-c3c1-4dc5-ad57-4bc7d54b","clientDesc":"d6bb30b7-24ec-4d62-8279-9c41e8b426c5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.610 [XNIO-1 task-1] md4juFovQxG3UswrLgJ2fg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG com.networknt.schema.TypeValidator debug - validate( "cce2c96b-bb22-4d56-bd2f-8317288ab06a", {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.612 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.613 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG com.networknt.schema.TypeValidator debug - validate( "6404c9eb-3ef5-46f1-ae52-93ef71f1", {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.613 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.613 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6404c9eb-3ef5-46f1-ae52-93ef71f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.613 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.613 [XNIO-1 task-1] n42rcnruQySdfAhtQx7NlA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.615 [XNIO-1 task-1] DV8J7KRdQ-WeTLFACMCi7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2dad60d1-c64c-494d-9d92-5924ad339137, base path is set to: null +16:40:50.615 [XNIO-1 task-1] DV8J7KRdQ-WeTLFACMCi7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.615 [XNIO-1 task-1] DV8J7KRdQ-WeTLFACMCi7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.615 [XNIO-1 task-1] DV8J7KRdQ-WeTLFACMCi7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2dad60d1-c64c-494d-9d92-5924ad339137, base path is set to: null +16:40:50.615 [XNIO-1 task-1] DV8J7KRdQ-WeTLFACMCi7A DEBUG com.networknt.schema.TypeValidator debug - validate( "2dad60d1-c64c-494d-9d92-5924ad339137", "2dad60d1-c64c-494d-9d92-5924ad339137", clientId) +16:40:50.620 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.620 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.620 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "cce2c96b-bb22-4d56-bd2f-8317288ab06a", {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "db44575e-d16c-4461-96c9-77f47360", {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"db44575e-d16c-4461-96c9-77f47360","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.621 [XNIO-1 task-1] tlzxvs2uQnuimDa6kDtRJQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.623 [XNIO-1 task-1] Zwn0qXT-R2-K3ewrTTgaYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576, base path is set to: null +16:40:50.623 [XNIO-1 task-1] Zwn0qXT-R2-K3ewrTTgaYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.623 [XNIO-1 task-1] Zwn0qXT-R2-K3ewrTTgaYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.623 [XNIO-1 task-1] Zwn0qXT-R2-K3ewrTTgaYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576, base path is set to: null +16:40:50.623 [XNIO-1 task-1] Zwn0qXT-R2-K3ewrTTgaYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a527a24e-41da-444e-a2b4-0f0590819576", "a527a24e-41da-444e-a2b4-0f0590819576", clientId) +16:40:50.625 [XNIO-1 task-1] c3pUlbzoQC-zE7TX8gtZgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.625 [XNIO-1 task-1] c3pUlbzoQC-zE7TX8gtZgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.625 [XNIO-1 task-1] c3pUlbzoQC-zE7TX8gtZgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.636 [XNIO-1 task-1] VYmKK1qzQnmk7PYY_vrVxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576 +16:40:50.636 [XNIO-1 task-1] VYmKK1qzQnmk7PYY_vrVxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.636 [XNIO-1 task-1] VYmKK1qzQnmk7PYY_vrVxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.636 [XNIO-1 task-1] VYmKK1qzQnmk7PYY_vrVxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576 +16:40:50.638 [XNIO-1 task-1] rJgJ0wVfS7euphdayT6K9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32954381-c98c-450a-83b4-00c633679f02, base path is set to: null +16:40:50.638 [XNIO-1 task-1] rJgJ0wVfS7euphdayT6K9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.638 [XNIO-1 task-1] rJgJ0wVfS7euphdayT6K9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.638 [XNIO-1 task-1] rJgJ0wVfS7euphdayT6K9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/32954381-c98c-450a-83b4-00c633679f02, base path is set to: null +16:40:50.638 [XNIO-1 task-1] rJgJ0wVfS7euphdayT6K9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "32954381-c98c-450a-83b4-00c633679f02", "32954381-c98c-450a-83b4-00c633679f02", clientId) +16:40:50.642 [XNIO-1 task-1] zg4CCxZlT4Cj0VmJmIw3ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.643 [XNIO-1 task-1] zg4CCxZlT4Cj0VmJmIw3ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.643 [XNIO-1 task-1] zg4CCxZlT4Cj0VmJmIw3ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.654 [XNIO-1 task-1] MZWwbijyRfmBbbBWjNYqiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.654 [XNIO-1 task-1] MZWwbijyRfmBbbBWjNYqiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.654 [XNIO-1 task-1] MZWwbijyRfmBbbBWjNYqiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.665 [XNIO-1 task-1] gB2jAISHRr-vtUyg7kzZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.665 [XNIO-1 task-1] gB2jAISHRr-vtUyg7kzZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.665 [XNIO-1 task-1] gB2jAISHRr-vtUyg7kzZuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.671 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5e068619-f67e-4c53-afce-0daf96b87319 +16:40:50.676 [XNIO-1 task-1] CIW3J-aTQrCyAD1dfmsOgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9b39cd63-91de-4507-9a55-87a5af2efba8, base path is set to: null +16:40:50.676 [XNIO-1 task-1] CIW3J-aTQrCyAD1dfmsOgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.676 [XNIO-1 task-1] CIW3J-aTQrCyAD1dfmsOgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.677 [XNIO-1 task-1] CIW3J-aTQrCyAD1dfmsOgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9b39cd63-91de-4507-9a55-87a5af2efba8, base path is set to: null +16:40:50.677 [XNIO-1 task-1] CIW3J-aTQrCyAD1dfmsOgA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b39cd63-91de-4507-9a55-87a5af2efba8", "9b39cd63-91de-4507-9a55-87a5af2efba8", clientId) +16:40:50.679 [XNIO-1 task-1] -O_DukJMQw-LHXHG3t9E3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.679 [XNIO-1 task-1] -O_DukJMQw-LHXHG3t9E3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.679 [XNIO-1 task-1] -O_DukJMQw-LHXHG3t9E3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.690 [XNIO-1 task-1] DMD7w1PRSECgjvgYSG1ATQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9b39cd63-91de-4507-9a55-87a5af2efba8 +16:40:50.690 [XNIO-1 task-1] DMD7w1PRSECgjvgYSG1ATQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.690 [XNIO-1 task-1] DMD7w1PRSECgjvgYSG1ATQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.690 [XNIO-1 task-1] DMD7w1PRSECgjvgYSG1ATQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9b39cd63-91de-4507-9a55-87a5af2efba8 +16:40:50.696 [XNIO-1 task-1] weMADMg2R2ecWhqR60OwWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.696 [XNIO-1 task-1] weMADMg2R2ecWhqR60OwWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.696 [XNIO-1 task-1] weMADMg2R2ecWhqR60OwWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.696 [XNIO-1 task-1] weMADMg2R2ecWhqR60OwWA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.703 [XNIO-1 task-1] 9t2OVj-rQXCfgsGbipVe9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/103b0720-cc82-4dea-b46f-a30ee143e90a, base path is set to: null +16:40:50.703 [XNIO-1 task-1] 9t2OVj-rQXCfgsGbipVe9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.703 [XNIO-1 task-1] 9t2OVj-rQXCfgsGbipVe9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.703 [XNIO-1 task-1] 9t2OVj-rQXCfgsGbipVe9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/103b0720-cc82-4dea-b46f-a30ee143e90a, base path is set to: null +16:40:50.703 [XNIO-1 task-1] 9t2OVj-rQXCfgsGbipVe9A DEBUG com.networknt.schema.TypeValidator debug - validate( "103b0720-cc82-4dea-b46f-a30ee143e90a", "103b0720-cc82-4dea-b46f-a30ee143e90a", clientId) +16:40:50.706 [XNIO-1 task-1] KIfNlbweROaG49u5CG2Rwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/103b0720-cc82-4dea-b46f-a30ee143e90a +16:40:50.706 [XNIO-1 task-1] KIfNlbweROaG49u5CG2Rwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.706 [XNIO-1 task-1] KIfNlbweROaG49u5CG2Rwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.706 [XNIO-1 task-1] KIfNlbweROaG49u5CG2Rwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/103b0720-cc82-4dea-b46f-a30ee143e90a +16:40:50.708 [XNIO-1 task-1] x2ZuLpiVQCKmJeedXjgLBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.708 [XNIO-1 task-1] x2ZuLpiVQCKmJeedXjgLBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.708 [XNIO-1 task-1] x2ZuLpiVQCKmJeedXjgLBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.709 [XNIO-1 task-1] x2ZuLpiVQCKmJeedXjgLBA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.716 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.716 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.717 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"91c452d5-f884-42b0-aadb-40259be1","clientDesc":"93d17bfb-d1de-4183-9eb2-3b2ffaf1bc3f","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.718 [XNIO-1 task-1] 8urkIl9MRBeVIf16jw2JRw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.720 [XNIO-1 task-1] 6OF19hJTTrSZgHfm9flIOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/103b0720-cc82-4dea-b46f-a30ee143e90a +16:40:50.720 [XNIO-1 task-1] 6OF19hJTTrSZgHfm9flIOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.720 [XNIO-1 task-1] 6OF19hJTTrSZgHfm9flIOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.720 [XNIO-1 task-1] 6OF19hJTTrSZgHfm9flIOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/103b0720-cc82-4dea-b46f-a30ee143e90a +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.725 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.726 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.726 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.726 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"41368aba-44d8-44dc-8b98-3bc0005b","clientDesc":"ed442f8c-e7d4-4522-82d2-79a047626ffe","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.726 [XNIO-1 task-1] krr9PtWHSo2PNFCXnabUtA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.728 [XNIO-1 task-1] v9Uf2FHBTK2zNMnQ4lOzFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e068619-f67e-4c53-afce-0daf96b87319 +16:40:50.728 [XNIO-1 task-1] v9Uf2FHBTK2zNMnQ4lOzFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.728 [XNIO-1 task-1] v9Uf2FHBTK2zNMnQ4lOzFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.728 [XNIO-1 task-1] v9Uf2FHBTK2zNMnQ4lOzFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e068619-f67e-4c53-afce-0daf96b87319 +16:40:50.729 [XNIO-1 task-1] Ckra3Te7R7mjk2dtr0brQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.730 [XNIO-1 task-1] Ckra3Te7R7mjk2dtr0brQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.730 [XNIO-1 task-1] Ckra3Te7R7mjk2dtr0brQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.730 [XNIO-1 task-1] Ckra3Te7R7mjk2dtr0brQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.735 [XNIO-1 task-1] aJDw0VjFT5Os4EPW0YrHnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04360a42-5d1a-4b1c-b27a-490aca8f87c8, base path is set to: null +16:40:50.735 [XNIO-1 task-1] aJDw0VjFT5Os4EPW0YrHnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.735 [XNIO-1 task-1] aJDw0VjFT5Os4EPW0YrHnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.735 [XNIO-1 task-1] aJDw0VjFT5Os4EPW0YrHnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/04360a42-5d1a-4b1c-b27a-490aca8f87c8, base path is set to: null +16:40:50.735 [XNIO-1 task-1] aJDw0VjFT5Os4EPW0YrHnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "04360a42-5d1a-4b1c-b27a-490aca8f87c8", "04360a42-5d1a-4b1c-b27a-490aca8f87c8", clientId) +16:40:50.737 [XNIO-1 task-1] FFgjlEWKTveeIJag-iBNrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cab371c5-3dd4-4967-b309-e845b75acbc9 +16:40:50.737 [XNIO-1 task-1] FFgjlEWKTveeIJag-iBNrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.737 [XNIO-1 task-1] FFgjlEWKTveeIJag-iBNrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.737 [XNIO-1 task-1] FFgjlEWKTveeIJag-iBNrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/cab371c5-3dd4-4967-b309-e845b75acbc9 +16:40:50.742 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.742 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.743 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cd325402-6aca-4c07-84fd-b738ba6a","clientDesc":"5b67338e-4add-44d9-a97f-d27504891b4b","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.744 [XNIO-1 task-1] e4EcsHYOR8yQgV5iqgIxZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.745 [XNIO-1 task-1] qRk1Wuv5TZ2okHSM_6N1XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.745 [XNIO-1 task-1] qRk1Wuv5TZ2okHSM_6N1XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.745 [XNIO-1 task-1] qRk1Wuv5TZ2okHSM_6N1XA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.757 [XNIO-1 task-1] A4EkSOZqRBOrz-778cFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04360a42-5d1a-4b1c-b27a-490aca8f87c8 +16:40:50.757 [XNIO-1 task-1] A4EkSOZqRBOrz-778cFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.757 [XNIO-1 task-1] A4EkSOZqRBOrz-778cFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.757 [XNIO-1 task-1] A4EkSOZqRBOrz-778cFb3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/04360a42-5d1a-4b1c-b27a-490aca8f87c8 +16:40:50.757 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:04360a42-5d1a-4b1c-b27a-490aca8f87c8 +16:40:50.763 [XNIO-1 task-1] IOJZr4lgQG-qRl4TXCpXcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.763 [XNIO-1 task-1] IOJZr4lgQG-qRl4TXCpXcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.763 [XNIO-1 task-1] IOJZr4lgQG-qRl4TXCpXcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2fe8d137-38b6-4858-ac21-bbd8ee57781c", {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.774 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.775 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4734fb34-345e-4531-bc1e-33c8c077", {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.775 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.775 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4734fb34-345e-4531-bc1e-33c8c077","clientDesc":"2fe8d137-38b6-4858-ac21-bbd8ee57781c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.775 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.775 [XNIO-1 task-1] yysXJ9XqQZWf0ysTMraNcQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.777 [XNIO-1 task-1] zx6qRWcIQLaP7sHkl5GP_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.777 [XNIO-1 task-1] zx6qRWcIQLaP7sHkl5GP_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.777 [XNIO-1 task-1] zx6qRWcIQLaP7sHkl5GP_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.777 [XNIO-1 task-1] zx6qRWcIQLaP7sHkl5GP_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.783 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.784 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.784 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e577e235-4057-4a6f-a2d6-8dfb7931","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.784 [XNIO-1 task-1] Mw-Yz7pYTRegRLt7OB5aUA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.786 [XNIO-1 task-1] muvN2kH2Q_ST2B9WlqL8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e068619-f67e-4c53-afce-0daf96b87319 +16:40:50.786 [XNIO-1 task-1] muvN2kH2Q_ST2B9WlqL8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.786 [XNIO-1 task-1] muvN2kH2Q_ST2B9WlqL8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.786 [XNIO-1 task-1] muvN2kH2Q_ST2B9WlqL8bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/5e068619-f67e-4c53-afce-0daf96b87319 +16:40:50.786 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5e068619-f67e-4c53-afce-0daf96b87319 +16:40:50.791 [XNIO-1 task-1] r50ChNl6RcuLDy0PCMx0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c92012b-5142-49b1-92b4-cefcf126717b +16:40:50.791 [XNIO-1 task-1] r50ChNl6RcuLDy0PCMx0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.791 [XNIO-1 task-1] r50ChNl6RcuLDy0PCMx0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.791 [XNIO-1 task-1] r50ChNl6RcuLDy0PCMx0FA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c92012b-5142-49b1-92b4-cefcf126717b +16:40:50.793 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.793 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"142cce00-2693-4aa4-80cd-d945a8cd","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.794 [XNIO-1 task-1] H1WDzASiR0qv4Z17Gr5VFA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.796 [XNIO-1 task-1] aS3-3fRPSd6gPnmGoI_tUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c92012b-5142-49b1-92b4-cefcf126717b +16:40:50.796 [XNIO-1 task-1] aS3-3fRPSd6gPnmGoI_tUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.796 [XNIO-1 task-1] aS3-3fRPSd6gPnmGoI_tUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.796 [XNIO-1 task-1] aS3-3fRPSd6gPnmGoI_tUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9c92012b-5142-49b1-92b4-cefcf126717b +16:40:50.801 [XNIO-1 task-1] vKQdauEOSbeO3z2LoVCqcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.801 [XNIO-1 task-1] vKQdauEOSbeO3z2LoVCqcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.801 [XNIO-1 task-1] vKQdauEOSbeO3z2LoVCqcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.811 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.812 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.813 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"3ea2e4c7-d57c-4f88-8791-8a0cd393","clientDesc":"cb4dccfc-8992-4749-a892-2a3e438a8a56","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.813 [XNIO-1 task-1] MqspaVIuTq6QOgxWNgEo7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.815 [XNIO-1 task-1] eoMiBQXjQW-YZdvvwa5vgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.815 [XNIO-1 task-1] eoMiBQXjQW-YZdvvwa5vgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.815 [XNIO-1 task-1] eoMiBQXjQW-YZdvvwa5vgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.846 [XNIO-1 task-1] E2ZD6avWTeWarnGatiqhvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e53479f1-e734-4fa3-97ff-060793ee847c +16:40:50.846 [XNIO-1 task-1] E2ZD6avWTeWarnGatiqhvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.846 [XNIO-1 task-1] E2ZD6avWTeWarnGatiqhvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.847 [XNIO-1 task-1] E2ZD6avWTeWarnGatiqhvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e53479f1-e734-4fa3-97ff-060793ee847c +16:40:50.862 [XNIO-1 task-1] UnDZScBjTnWG2H8NuY9g-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.862 [XNIO-1 task-1] UnDZScBjTnWG2H8NuY9g-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.862 [XNIO-1 task-1] UnDZScBjTnWG2H8NuY9g-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.873 [XNIO-1 task-1] xgDoYr32RcWQg0uU6fpO3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.873 [XNIO-1 task-1] xgDoYr32RcWQg0uU6fpO3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.873 [XNIO-1 task-1] xgDoYr32RcWQg0uU6fpO3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.878 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1b423fa6-dc75-49de-a1d7-b73da1050ba0 +16:40:50.879 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1b423fa6-dc75-49de-a1d7-b73da1050ba0 +16:40:50.884 [XNIO-1 task-1] VNp_D2IiQ4ib_ePFj_hwvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.884 [XNIO-1 task-1] VNp_D2IiQ4ib_ePFj_hwvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.885 [XNIO-1 task-1] VNp_D2IiQ4ib_ePFj_hwvw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.900 [XNIO-1 task-1] h7-mgnaDTP63CPgBJbSo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.900 [XNIO-1 task-1] h7-mgnaDTP63CPgBJbSo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.900 [XNIO-1 task-1] h7-mgnaDTP63CPgBJbSo8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.901 [XNIO-1 task-1] h7-mgnaDTP63CPgBJbSo8w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.909 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.909 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.909 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "62f3d24a-669b-4a5d-8a82-7e0f639bb790", {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "94fa60a2-b5d2-40cc-98cc-41b014ff", {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"94fa60a2-b5d2-40cc-98cc-41b014ff","clientDesc":"62f3d24a-669b-4a5d-8a82-7e0f639bb790","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.910 [XNIO-1 task-1] sYvE29ChS6ecIPCmplT1gQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:50.912 [XNIO-1 task-1] 5MOwAjVjSumcA9TdsMXQPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4d93a94-952b-4e07-a2e8-59c587e36f00, base path is set to: null +16:40:50.913 [XNIO-1 task-1] 5MOwAjVjSumcA9TdsMXQPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.913 [XNIO-1 task-1] 5MOwAjVjSumcA9TdsMXQPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.913 [XNIO-1 task-1] 5MOwAjVjSumcA9TdsMXQPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c4d93a94-952b-4e07-a2e8-59c587e36f00, base path is set to: null +16:40:50.913 [XNIO-1 task-1] 5MOwAjVjSumcA9TdsMXQPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d93a94-952b-4e07-a2e8-59c587e36f00", "c4d93a94-952b-4e07-a2e8-59c587e36f00", clientId) +16:40:50.919 [XNIO-1 task-1] mXeHCNjrQgGaq7RpirsE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.919 [XNIO-1 task-1] mXeHCNjrQgGaq7RpirsE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.919 [XNIO-1 task-1] mXeHCNjrQgGaq7RpirsE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.930 [XNIO-1 task-1] Elv_Ia-HTLGw7ZZ6zqiXhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.930 [XNIO-1 task-1] Elv_Ia-HTLGw7ZZ6zqiXhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.930 [XNIO-1 task-1] Elv_Ia-HTLGw7ZZ6zqiXhQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.943 [XNIO-1 task-1] EY1cx437RAGlmgVl-JfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a3f79790-c425-41b5-809c-eb09f295990d +16:40:50.943 [XNIO-1 task-1] EY1cx437RAGlmgVl-JfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.943 [XNIO-1 task-1] EY1cx437RAGlmgVl-JfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.943 [XNIO-1 task-1] EY1cx437RAGlmgVl-JfYDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/a3f79790-c425-41b5-809c-eb09f295990d +16:40:50.946 [XNIO-1 task-1] aA28s62VQNmM0ybSablmJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.946 [XNIO-1 task-1] aA28s62VQNmM0ybSablmJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.947 [XNIO-1 task-1] aA28s62VQNmM0ybSablmJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.957 [XNIO-1 task-1] 6BbxEILGSc6v9IxFwGZCmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1b423fa6-dc75-49de-a1d7-b73da1050ba0, base path is set to: null +16:40:50.957 [XNIO-1 task-1] 6BbxEILGSc6v9IxFwGZCmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.957 [XNIO-1 task-1] 6BbxEILGSc6v9IxFwGZCmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:50.958 [XNIO-1 task-1] 6BbxEILGSc6v9IxFwGZCmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1b423fa6-dc75-49de-a1d7-b73da1050ba0, base path is set to: null +16:40:50.958 [XNIO-1 task-1] 6BbxEILGSc6v9IxFwGZCmg DEBUG com.networknt.schema.TypeValidator debug - validate( "1b423fa6-dc75-49de-a1d7-b73da1050ba0", "1b423fa6-dc75-49de-a1d7-b73da1050ba0", clientId) +16:40:50.962 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.962 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.962 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"7d99091d-a160-46fa-9892-b74c169a","clientDesc":"c7b5855b-733a-4e20-95b9-4c142fd1902e","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:50.963 [XNIO-1 task-1] RmoHxA6bRuaxM6WH6cvU4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:50.966 [XNIO-1 task-1] 9RAM04SWTlaAm5_oRxZJKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4 +16:40:50.966 [XNIO-1 task-1] 9RAM04SWTlaAm5_oRxZJKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:50.966 [XNIO-1 task-1] 9RAM04SWTlaAm5_oRxZJKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:50.966 [XNIO-1 task-1] 9RAM04SWTlaAm5_oRxZJKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4 +16:40:50.968 [XNIO-1 task-1] YUE1nKE9RZiY67Vb35v-hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.968 [XNIO-1 task-1] YUE1nKE9RZiY67Vb35v-hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.968 [XNIO-1 task-1] YUE1nKE9RZiY67Vb35v-hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.980 [XNIO-1 task-1] y-mcr19ZQi-3E02XR7SMOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.980 [XNIO-1 task-1] y-mcr19ZQi-3E02XR7SMOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.980 [XNIO-1 task-1] y-mcr19ZQi-3E02XR7SMOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.991 [XNIO-1 task-1] GoUwXpSMT1SS0_adU7rppw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:50.991 [XNIO-1 task-1] GoUwXpSMT1SS0_adU7rppw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:50.991 [XNIO-1 task-1] GoUwXpSMT1SS0_adU7rppw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.007 [XNIO-1 task-1] hkqRlYwfTM2Cqi21_1-0QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a3f79790-c425-41b5-809c-eb09f295990d, base path is set to: null +16:40:51.007 [XNIO-1 task-1] hkqRlYwfTM2Cqi21_1-0QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.007 [XNIO-1 task-1] hkqRlYwfTM2Cqi21_1-0QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.007 [XNIO-1 task-1] hkqRlYwfTM2Cqi21_1-0QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a3f79790-c425-41b5-809c-eb09f295990d, base path is set to: null +16:40:51.007 [XNIO-1 task-1] hkqRlYwfTM2Cqi21_1-0QA DEBUG com.networknt.schema.TypeValidator debug - validate( "a3f79790-c425-41b5-809c-eb09f295990d", "a3f79790-c425-41b5-809c-eb09f295990d", clientId) +16:40:51.010 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:21332c63 +16:40:51.014 [XNIO-1 task-1] xtyebnpuTXGWlsbC6c_Efw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4, base path is set to: null +16:40:51.014 [XNIO-1 task-1] xtyebnpuTXGWlsbC6c_Efw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.014 [XNIO-1 task-1] xtyebnpuTXGWlsbC6c_Efw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.014 [XNIO-1 task-1] xtyebnpuTXGWlsbC6c_Efw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4, base path is set to: null +16:40:51.014 [XNIO-1 task-1] xtyebnpuTXGWlsbC6c_Efw DEBUG com.networknt.schema.TypeValidator debug - validate( "8527cacd-f565-4de5-a29a-22efd7534fc4", "8527cacd-f565-4de5-a29a-22efd7534fc4", clientId) +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.017 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:21332c63 +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG com.networknt.schema.TypeValidator debug - validate( "cce2c96b-bb22-4d56-bd2f-8317288ab06a", {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.017 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG com.networknt.schema.TypeValidator debug - validate( "c19ce2bd-0fae-4801-a45f-0a4745f1", {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.018 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.018 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c19ce2bd-0fae-4801-a45f-0a4745f1","clientDesc":"cce2c96b-bb22-4d56-bd2f-8317288ab06a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.018 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.018 [XNIO-1 task-1] M1L-apYSS3KCRznHj08hsA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.020 [XNIO-1 task-1] Tqcn4PvXQJ6Ylt33LZsmuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.020 [XNIO-1 task-1] Tqcn4PvXQJ6Ylt33LZsmuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.020 [XNIO-1 task-1] Tqcn4PvXQJ6Ylt33LZsmuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.020 [XNIO-1 task-1] Tqcn4PvXQJ6Ylt33LZsmuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.023 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a2eafb8 +16:40:51.024 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9a2eafb8 +16:40:51.026 [XNIO-1 task-1] 3QDIQMk2S_K5xRI7kQ3hxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4 +16:40:51.026 [XNIO-1 task-1] 3QDIQMk2S_K5xRI7kQ3hxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.026 [XNIO-1 task-1] 3QDIQMk2S_K5xRI7kQ3hxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.026 [XNIO-1 task-1] 3QDIQMk2S_K5xRI7kQ3hxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4 +16:40:51.028 [XNIO-1 task-1] CU1itbbISUm3SAc1twmuCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576, base path is set to: null +16:40:51.028 [XNIO-1 task-1] CU1itbbISUm3SAc1twmuCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.028 [XNIO-1 task-1] CU1itbbISUm3SAc1twmuCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.029 [XNIO-1 task-1] CU1itbbISUm3SAc1twmuCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576, base path is set to: null +16:40:51.029 [XNIO-1 task-1] CU1itbbISUm3SAc1twmuCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a527a24e-41da-444e-a2b4-0f0590819576", "a527a24e-41da-444e-a2b4-0f0590819576", clientId) +16:40:51.031 [XNIO-1 task-1] EZxGQNaFRfeRWyiKfmB1Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.031 [XNIO-1 task-1] EZxGQNaFRfeRWyiKfmB1Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.031 [XNIO-1 task-1] EZxGQNaFRfeRWyiKfmB1Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.031 [XNIO-1 task-1] EZxGQNaFRfeRWyiKfmB1Tg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.032 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:21332c63 +16:40:51.065 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.065 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.065 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.065 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.065 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.065 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed", {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.065 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.066 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.066 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG com.networknt.schema.TypeValidator debug - validate( "0c0a9616-975d-4129-9092-16b00462", {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.066 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.066 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0c0a9616-975d-4129-9092-16b00462","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.066 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.066 [XNIO-1 task-1] QdDCe4X6QhyByEDR7Kd90Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.067 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9a2eafb8 +16:40:51.068 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.068 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.069 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.069 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.069 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"335bfa62-8d32-4a52-8702-ad6dc222","clientDesc":"0a287ca5-c605-4cbb-b118-898b540cc26a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.070 [XNIO-1 task-1] 0W8uBbYPQ5GwC4RSuvv9Tw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.073 [XNIO-1 task-1] pGqraUaaS2uIxSz81IAXyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.073 [XNIO-1 task-1] pGqraUaaS2uIxSz81IAXyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.073 [XNIO-1 task-1] pGqraUaaS2uIxSz81IAXyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.073 [XNIO-1 task-1] pGqraUaaS2uIxSz81IAXyA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.082 [XNIO-1 task-1] Wa2Xlv6eQTqfeq-fnAHr4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.082 [XNIO-1 task-1] Wa2Xlv6eQTqfeq-fnAHr4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.082 [XNIO-1 task-1] Wa2Xlv6eQTqfeq-fnAHr4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.092 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:caee5d9a +16:40:51.094 [XNIO-1 task-1] X8sdV7N4SNi7ataCTSwICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.094 [XNIO-1 task-1] X8sdV7N4SNi7ataCTSwICg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.094 [XNIO-1 task-1] X8sdV7N4SNi7ataCTSwICg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.094 [XNIO-1 task-1] X8sdV7N4SNi7ataCTSwICg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.100 [XNIO-1 task-1] XBZsRWu0QXePg4fK9kzdpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.100 [XNIO-1 task-1] XBZsRWu0QXePg4fK9kzdpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.100 [XNIO-1 task-1] XBZsRWu0QXePg4fK9kzdpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.112 [XNIO-1 task-1] 3z57X8EaR3CHY5oIjhVXzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.112 [XNIO-1 task-1] 3z57X8EaR3CHY5oIjhVXzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.112 [XNIO-1 task-1] 3z57X8EaR3CHY5oIjhVXzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.112 [XNIO-1 task-1] 3z57X8EaR3CHY5oIjhVXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.116 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9a2eafb8 +16:40:51.117 [XNIO-1 task-1] Qjp89_lRQDmYSDuc07rIUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576, base path is set to: null +16:40:51.117 [XNIO-1 task-1] Qjp89_lRQDmYSDuc07rIUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.117 [XNIO-1 task-1] Qjp89_lRQDmYSDuc07rIUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.117 [XNIO-1 task-1] Qjp89_lRQDmYSDuc07rIUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a527a24e-41da-444e-a2b4-0f0590819576, base path is set to: null +16:40:51.117 [XNIO-1 task-1] Qjp89_lRQDmYSDuc07rIUg DEBUG com.networknt.schema.TypeValidator debug - validate( "a527a24e-41da-444e-a2b4-0f0590819576", "a527a24e-41da-444e-a2b4-0f0590819576", clientId) +16:40:51.123 [XNIO-1 task-1] rECw2fViTwCkP47Xnw5KGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.123 [XNIO-1 task-1] rECw2fViTwCkP47Xnw5KGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.123 [XNIO-1 task-1] rECw2fViTwCkP47Xnw5KGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.123 [XNIO-1 task-1] rECw2fViTwCkP47Xnw5KGw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.129 [XNIO-1 task-1] Bejia-jhSqujkhCcs68iNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.129 [XNIO-1 task-1] Bejia-jhSqujkhCcs68iNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.129 [XNIO-1 task-1] Bejia-jhSqujkhCcs68iNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.129 [XNIO-1 task-1] Bejia-jhSqujkhCcs68iNQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.137 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.137 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.138 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:caee5d9a +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "3d114e8d-173c-4923-b261-1fd03b6f21eb", {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "a45417cd-8a68-4ed3-ac37-8cebeba4", {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a45417cd-8a68-4ed3-ac37-8cebeba4","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.138 [XNIO-1 task-1] I0Be7sVnTyCpOxM5JXUSPw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.141 [XNIO-1 task-1] Q1Op8w46TbSOALwh-rrC_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.141 [XNIO-1 task-1] Q1Op8w46TbSOALwh-rrC_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.141 [XNIO-1 task-1] Q1Op8w46TbSOALwh-rrC_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.141 [XNIO-1 task-1] Q1Op8w46TbSOALwh-rrC_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.147 [XNIO-1 task-1] GBaZIJA9T--HXsRuPIBlAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9e8f6e88-887c-45d3-b650-e8ba278ef1df, base path is set to: null +16:40:51.147 [XNIO-1 task-1] GBaZIJA9T--HXsRuPIBlAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.147 [XNIO-1 task-1] GBaZIJA9T--HXsRuPIBlAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.147 [XNIO-1 task-1] GBaZIJA9T--HXsRuPIBlAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/9e8f6e88-887c-45d3-b650-e8ba278ef1df, base path is set to: null +16:40:51.147 [XNIO-1 task-1] GBaZIJA9T--HXsRuPIBlAw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e8f6e88-887c-45d3-b650-e8ba278ef1df", "9e8f6e88-887c-45d3-b650-e8ba278ef1df", clientId) +16:40:51.156 [XNIO-1 task-1] KDhdeYPnRJe7j8PkugxoAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.156 [XNIO-1 task-1] KDhdeYPnRJe7j8PkugxoAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.156 [XNIO-1 task-1] KDhdeYPnRJe7j8PkugxoAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.168 [XNIO-1 task-1] KdpjdV84QxKAZVkCsljg5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6c3502b-01a0-475f-a254-f15e1d127cd1 +16:40:51.168 [XNIO-1 task-1] KdpjdV84QxKAZVkCsljg5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.168 [XNIO-1 task-1] KdpjdV84QxKAZVkCsljg5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.168 [XNIO-1 task-1] KdpjdV84QxKAZVkCsljg5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6c3502b-01a0-475f-a254-f15e1d127cd1 +16:40:51.171 [XNIO-1 task-1] mys3XfmMQFu8dkUJhU_hOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1, base path is set to: null +16:40:51.171 [XNIO-1 task-1] mys3XfmMQFu8dkUJhU_hOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.171 [XNIO-1 task-1] mys3XfmMQFu8dkUJhU_hOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.172 [XNIO-1 task-1] mys3XfmMQFu8dkUJhU_hOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1, base path is set to: null +16:40:51.172 [XNIO-1 task-1] mys3XfmMQFu8dkUJhU_hOw DEBUG com.networknt.schema.TypeValidator debug - validate( "b043c4e3-aba1-40d0-bf60-c49d018ef1e1", "b043c4e3-aba1-40d0-bf60-c49d018ef1e1", clientId) +16:40:51.174 [XNIO-1 task-1] JfA-iqUaT6Cp2TJ-nTwI6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.174 [XNIO-1 task-1] JfA-iqUaT6Cp2TJ-nTwI6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.174 [XNIO-1 task-1] JfA-iqUaT6Cp2TJ-nTwI6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.174 [XNIO-1 task-1] JfA-iqUaT6Cp2TJ-nTwI6A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG com.networknt.schema.TypeValidator debug - validate( "a0798b17-20ca-4512-a920-c69fd7826c33", {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG com.networknt.schema.TypeValidator debug - validate( "8d11cb51-dfe3-4af8-8153-cee81ffb", {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"8d11cb51-dfe3-4af8-8153-cee81ffb","clientDesc":"a0798b17-20ca-4512-a920-c69fd7826c33","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.181 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.182 [XNIO-1 task-1] ixe5DcITSzS0Sk7GTknUJA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.184 [XNIO-1 task-1] qs2OABgER3OWst5RKToZ2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.184 [XNIO-1 task-1] qs2OABgER3OWst5RKToZ2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.184 [XNIO-1 task-1] qs2OABgER3OWst5RKToZ2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.184 [XNIO-1 task-1] qs2OABgER3OWst5RKToZ2g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.191 [XNIO-1 task-1] kAPA9FwHSMSKH8fB55_yGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884, base path is set to: null +16:40:51.191 [XNIO-1 task-1] kAPA9FwHSMSKH8fB55_yGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.191 [XNIO-1 task-1] kAPA9FwHSMSKH8fB55_yGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.191 [XNIO-1 task-1] kAPA9FwHSMSKH8fB55_yGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884, base path is set to: null +16:40:51.191 [XNIO-1 task-1] kAPA9FwHSMSKH8fB55_yGA DEBUG com.networknt.schema.TypeValidator debug - validate( "11a82e42-cd2d-4782-a8c9-bc397cc54884", "11a82e42-cd2d-4782-a8c9-bc397cc54884", clientId) +16:40:51.193 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0a05e3fc +16:40:51.194 [XNIO-1 task-1] D_bBM8-6QYG2zZ00_M5BMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c9a6e3bc-431f-4b95-9460-33a2c4fda64f, base path is set to: null +16:40:51.194 [XNIO-1 task-1] D_bBM8-6QYG2zZ00_M5BMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.194 [XNIO-1 task-1] D_bBM8-6QYG2zZ00_M5BMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.194 [XNIO-1 task-1] D_bBM8-6QYG2zZ00_M5BMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/c9a6e3bc-431f-4b95-9460-33a2c4fda64f, base path is set to: null +16:40:51.194 [XNIO-1 task-1] D_bBM8-6QYG2zZ00_M5BMA DEBUG com.networknt.schema.TypeValidator debug - validate( "c9a6e3bc-431f-4b95-9460-33a2c4fda64f", "c9a6e3bc-431f-4b95-9460-33a2c4fda64f", clientId) +16:40:51.200 [XNIO-1 task-1] Xjn9jkuiQLijaU2ThMAc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6c3502b-01a0-475f-a254-f15e1d127cd1 +16:40:51.200 [XNIO-1 task-1] Xjn9jkuiQLijaU2ThMAc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.200 [XNIO-1 task-1] Xjn9jkuiQLijaU2ThMAc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.200 [XNIO-1 task-1] Xjn9jkuiQLijaU2ThMAc9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/e6c3502b-01a0-475f-a254-f15e1d127cd1 +16:40:51.201 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9a2eafb8 +16:40:51.206 [XNIO-1 task-1] CSF7jr-6QTCG1SkzZDy1OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.206 [XNIO-1 task-1] CSF7jr-6QTCG1SkzZDy1OQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.206 [XNIO-1 task-1] CSF7jr-6QTCG1SkzZDy1OQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.206 [XNIO-1 task-1] CSF7jr-6QTCG1SkzZDy1OQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.215 [XNIO-1 task-1] -q7sIf0WSQ2mLQ-ttHgEJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.215 [XNIO-1 task-1] -q7sIf0WSQ2mLQ-ttHgEJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.215 [XNIO-1 task-1] -q7sIf0WSQ2mLQ-ttHgEJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.220 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b3e84ae7-1e57-4f76-b483-08130bdeba79 +16:40:51.221 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b3e84ae7-1e57-4f76-b483-08130bdeba79 +16:40:51.227 [XNIO-1 task-1] yJFgY1R7R5ePuWJ9rgmYdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1 +16:40:51.227 [XNIO-1 task-1] yJFgY1R7R5ePuWJ9rgmYdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.227 [XNIO-1 task-1] yJFgY1R7R5ePuWJ9rgmYdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.227 [XNIO-1 task-1] yJFgY1R7R5ePuWJ9rgmYdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1 +16:40:51.229 [XNIO-1 task-1] WcgxkeqpRS20K7K5IcNa-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c, base path is set to: null +16:40:51.229 [XNIO-1 task-1] WcgxkeqpRS20K7K5IcNa-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.229 [XNIO-1 task-1] WcgxkeqpRS20K7K5IcNa-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.229 [XNIO-1 task-1] WcgxkeqpRS20K7K5IcNa-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c, base path is set to: null +16:40:51.229 [XNIO-1 task-1] WcgxkeqpRS20K7K5IcNa-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "2a41e466-51ee-405b-a4ca-69259c21bf3c", "2a41e466-51ee-405b-a4ca-69259c21bf3c", clientId) +16:40:51.232 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.232 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "e3f96b96-4edf-4443-b726-bd0e5ef9b870", {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "d8530e8c-7e28-4fab-9845-98d6fda6", {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d8530e8c-7e28-4fab-9845-98d6fda6","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.233 [XNIO-1 task-1] p8KVeNVJRAeQ6vP5FKcfBg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.236 [XNIO-1 task-1] VGzGC1czRUm55F_b6X-tOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ba7df214-50f0-4f0a-984e-ac499cf75603, base path is set to: null +16:40:51.236 [XNIO-1 task-1] VGzGC1czRUm55F_b6X-tOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.236 [XNIO-1 task-1] VGzGC1czRUm55F_b6X-tOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.236 [XNIO-1 task-1] VGzGC1czRUm55F_b6X-tOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/ba7df214-50f0-4f0a-984e-ac499cf75603, base path is set to: null +16:40:51.236 [XNIO-1 task-1] VGzGC1czRUm55F_b6X-tOw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba7df214-50f0-4f0a-984e-ac499cf75603", "ba7df214-50f0-4f0a-984e-ac499cf75603", clientId) +16:40:51.242 [XNIO-1 task-1] hSmqWYg2RnaQ3b4G9GJ1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.242 [XNIO-1 task-1] hSmqWYg2RnaQ3b4G9GJ1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.242 [XNIO-1 task-1] hSmqWYg2RnaQ3b4G9GJ1ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.242 [XNIO-1 task-1] hSmqWYg2RnaQ3b4G9GJ1ZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.247 [XNIO-1 task-1] kdrajRCaTeiGHbtRstkeuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.247 [XNIO-1 task-1] kdrajRCaTeiGHbtRstkeuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.247 [XNIO-1 task-1] kdrajRCaTeiGHbtRstkeuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.247 [XNIO-1 task-1] kdrajRCaTeiGHbtRstkeuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.248 [XNIO-1 task-1] kdrajRCaTeiGHbtRstkeuA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.255 [XNIO-1 task-1] wwb3X204RrmicnwUAGGDjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.255 [XNIO-1 task-1] wwb3X204RrmicnwUAGGDjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.255 [XNIO-1 task-1] wwb3X204RrmicnwUAGGDjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.255 [XNIO-1 task-1] wwb3X204RrmicnwUAGGDjg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.261 [XNIO-1 task-1] drd_pm44TuOvNRnEQLwPpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884, base path is set to: null +16:40:51.261 [XNIO-1 task-1] drd_pm44TuOvNRnEQLwPpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.261 [XNIO-1 task-1] drd_pm44TuOvNRnEQLwPpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.261 [XNIO-1 task-1] drd_pm44TuOvNRnEQLwPpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884, base path is set to: null +16:40:51.261 [XNIO-1 task-1] drd_pm44TuOvNRnEQLwPpw DEBUG com.networknt.schema.TypeValidator debug - validate( "11a82e42-cd2d-4782-a8c9-bc397cc54884", "11a82e42-cd2d-4782-a8c9-bc397cc54884", clientId) +16:40:51.263 [XNIO-1 task-1] yq6zMwkBTo6Q1uddbpsC3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c, base path is set to: null +16:40:51.264 [XNIO-1 task-1] yq6zMwkBTo6Q1uddbpsC3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.264 [XNIO-1 task-1] yq6zMwkBTo6Q1uddbpsC3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.264 [XNIO-1 task-1] yq6zMwkBTo6Q1uddbpsC3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c, base path is set to: null +16:40:51.264 [XNIO-1 task-1] yq6zMwkBTo6Q1uddbpsC3A DEBUG com.networknt.schema.TypeValidator debug - validate( "2a41e466-51ee-405b-a4ca-69259c21bf3c", "2a41e466-51ee-405b-a4ca-69259c21bf3c", clientId) +16:40:51.266 [XNIO-1 task-1] U3uBKoP8Qr2I64jUvgwEiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.266 [XNIO-1 task-1] U3uBKoP8Qr2I64jUvgwEiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.266 [XNIO-1 task-1] U3uBKoP8Qr2I64jUvgwEiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.274 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:9a2eafb8 +16:40:51.277 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.277 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.277 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e3f96b96-4edf-4443-b726-bd0e5ef9b870", {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9c88954e-c93d-403f-963c-d57a129c", {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9c88954e-c93d-403f-963c-d57a129c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.278 [XNIO-1 task-1] UJT19wJbQmqbxgSONQhyaQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.280 [XNIO-1 task-1] XkjXFurgSTSwO4o2bsKigA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.280 [XNIO-1 task-1] XkjXFurgSTSwO4o2bsKigA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.280 [XNIO-1 task-1] XkjXFurgSTSwO4o2bsKigA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.284 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2392eb50 +16:40:51.285 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2392eb50 +16:40:51.293 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.293 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.293 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.293 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.293 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.293 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG com.networknt.schema.TypeValidator debug - validate( "cbac606c-79cc-4db7-850d-36bd257451d5", {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.294 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.294 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.294 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG com.networknt.schema.TypeValidator debug - validate( "1886e42e-92f3-401e-8894-f861c5bb", {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.294 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.294 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"1886e42e-92f3-401e-8894-f861c5bb","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.294 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.294 [XNIO-1 task-1] -GRrpCUDSKONi3RAbnNaew DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.297 [XNIO-1 task-1] jqxMV1ENSSeuFddHhlsx_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7facbc80-bb8b-4c8a-9f60-286393e25c54, base path is set to: null +16:40:51.297 [XNIO-1 task-1] jqxMV1ENSSeuFddHhlsx_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.297 [XNIO-1 task-1] jqxMV1ENSSeuFddHhlsx_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.298 [XNIO-1 task-1] jqxMV1ENSSeuFddHhlsx_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7facbc80-bb8b-4c8a-9f60-286393e25c54, base path is set to: null +16:40:51.298 [XNIO-1 task-1] jqxMV1ENSSeuFddHhlsx_g DEBUG com.networknt.schema.TypeValidator debug - validate( "7facbc80-bb8b-4c8a-9f60-286393e25c54", "7facbc80-bb8b-4c8a-9f60-286393e25c54", clientId) +16:40:51.303 [XNIO-1 task-1] MOgpx2gjSFyDqs6N1AdNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.304 [XNIO-1 task-1] MOgpx2gjSFyDqs6N1AdNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.304 [XNIO-1 task-1] MOgpx2gjSFyDqs6N1AdNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.315 [XNIO-1 task-1] _HUbI178Sp6y0HBBcqKLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/49a6e8a1-f09a-490a-881f-b12564aff1c8 +16:40:51.315 [XNIO-1 task-1] _HUbI178Sp6y0HBBcqKLVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.315 [XNIO-1 task-1] _HUbI178Sp6y0HBBcqKLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.315 [XNIO-1 task-1] _HUbI178Sp6y0HBBcqKLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.315 [XNIO-1 task-1] _HUbI178Sp6y0HBBcqKLVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/49a6e8a1-f09a-490a-881f-b12564aff1c8 +16:40:51.317 [XNIO-1 task-1] u2GpHLF9TqSbexI-9BQfGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c, base path is set to: null +16:40:51.317 [XNIO-1 task-1] u2GpHLF9TqSbexI-9BQfGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.317 [XNIO-1 task-1] u2GpHLF9TqSbexI-9BQfGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.318 [XNIO-1 task-1] u2GpHLF9TqSbexI-9BQfGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c, base path is set to: null +16:40:51.318 [XNIO-1 task-1] u2GpHLF9TqSbexI-9BQfGg DEBUG com.networknt.schema.TypeValidator debug - validate( "2a41e466-51ee-405b-a4ca-69259c21bf3c", "2a41e466-51ee-405b-a4ca-69259c21bf3c", clientId) +16:40:51.320 [XNIO-1 task-1] yR4xH1xtTrmYsSuZBfwWCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.320 [XNIO-1 task-1] yR4xH1xtTrmYsSuZBfwWCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.320 [XNIO-1 task-1] yR4xH1xtTrmYsSuZBfwWCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.331 [XNIO-1 task-1] CsOrrRt2TOSzwZR2fRQTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/66f769eb-f43e-493b-bc6d-57d574a380ce +16:40:51.331 [XNIO-1 task-1] CsOrrRt2TOSzwZR2fRQTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.331 [XNIO-1 task-1] CsOrrRt2TOSzwZR2fRQTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.331 [XNIO-1 task-1] CsOrrRt2TOSzwZR2fRQTlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/66f769eb-f43e-493b-bc6d-57d574a380ce +16:40:51.337 [XNIO-1 task-1] Vg7CvDtWQO6LRqF1Mna4jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.337 [XNIO-1 task-1] Vg7CvDtWQO6LRqF1Mna4jQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.337 [XNIO-1 task-1] Vg7CvDtWQO6LRqF1Mna4jQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.337 [XNIO-1 task-1] Vg7CvDtWQO6LRqF1Mna4jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.340 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2392eb50 +16:40:51.344 [XNIO-1 task-1] isnwQbbmQ6KUsmEqABf_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/41209ee9-ef9c-4440-9116-b1549ceeba18, base path is set to: null +16:40:51.344 [XNIO-1 task-1] isnwQbbmQ6KUsmEqABf_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.344 [XNIO-1 task-1] isnwQbbmQ6KUsmEqABf_iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.344 [XNIO-1 task-1] isnwQbbmQ6KUsmEqABf_iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/41209ee9-ef9c-4440-9116-b1549ceeba18, base path is set to: null +16:40:51.344 [XNIO-1 task-1] isnwQbbmQ6KUsmEqABf_iA DEBUG com.networknt.schema.TypeValidator debug - validate( "41209ee9-ef9c-4440-9116-b1549ceeba18", "41209ee9-ef9c-4440-9116-b1549ceeba18", clientId) +16:40:51.348 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.348 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.348 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.348 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.348 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.349 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b60013c-b301-4519-95a3-4d1aef48585a", {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.349 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.349 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.349 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e0d470cc-2540-45ed-9aa4-afd057f5", {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.349 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.349 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e0d470cc-2540-45ed-9aa4-afd057f5","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.349 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.350 [XNIO-1 task-1] 7vMqnrNjSImIbxMBzxp_NQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.352 [XNIO-1 task-1] zV8no2pvRAqrTN_8Cn9Mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3e84ae7-1e57-4f76-b483-08130bdeba79, base path is set to: null +16:40:51.352 [XNIO-1 task-1] zV8no2pvRAqrTN_8Cn9Mzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.352 [XNIO-1 task-1] zV8no2pvRAqrTN_8Cn9Mzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.352 [XNIO-1 task-1] zV8no2pvRAqrTN_8Cn9Mzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3e84ae7-1e57-4f76-b483-08130bdeba79, base path is set to: null +16:40:51.352 [XNIO-1 task-1] zV8no2pvRAqrTN_8Cn9Mzw DEBUG com.networknt.schema.TypeValidator debug - validate( "b3e84ae7-1e57-4f76-b483-08130bdeba79", "b3e84ae7-1e57-4f76-b483-08130bdeba79", clientId) +16:40:51.355 [XNIO-1 task-1] 88FgWpdcQ_SLryhlLvtgPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.355 [XNIO-1 task-1] 88FgWpdcQ_SLryhlLvtgPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.355 [XNIO-1 task-1] 88FgWpdcQ_SLryhlLvtgPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.355 [XNIO-1 task-1] 88FgWpdcQ_SLryhlLvtgPg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.362 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.362 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.362 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "781d2d23-e422-42d1-8f69-8a1e0c71f7ed", {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "e5f4a2c1-c1ff-4b45-95c8-99ef5ccb", {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e5f4a2c1-c1ff-4b45-95c8-99ef5ccb","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.363 [XNIO-1 task-1] 19GdDUNER2ymI0T0_aoBQw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.366 [XNIO-1 task-1] KwDxxWhBQGKmnwugre_RBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.366 [XNIO-1 task-1] KwDxxWhBQGKmnwugre_RBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.366 [XNIO-1 task-1] KwDxxWhBQGKmnwugre_RBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.379 [XNIO-1 task-1] R81JWwBZS6yYAZXiGigeOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.379 [XNIO-1 task-1] R81JWwBZS6yYAZXiGigeOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.379 [XNIO-1 task-1] R81JWwBZS6yYAZXiGigeOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.383 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6de0d39f +16:40:51.384 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6de0d39f +16:40:51.392 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.392 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.392 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.392 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.392 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.392 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "781d2d23-e422-42d1-8f69-8a1e0c71f7ed", {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.393 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.393 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.393 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "b23fd6da-f88d-4777-b27f-c3489d98", {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.393 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.393 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b23fd6da-f88d-4777-b27f-c3489d98","clientDesc":"781d2d23-e422-42d1-8f69-8a1e0c71f7ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.393 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.394 [XNIO-1 task-1] KSn8-XlFTz2O7Mr_mfSvKw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.396 [XNIO-1 task-1] UFd_V25DRJqzMRGahSxzYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbf15385-5a63-4e14-9c76-b3a6103ff17a, base path is set to: null +16:40:51.396 [XNIO-1 task-1] UFd_V25DRJqzMRGahSxzYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.396 [XNIO-1 task-1] UFd_V25DRJqzMRGahSxzYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.396 [XNIO-1 task-1] UFd_V25DRJqzMRGahSxzYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbf15385-5a63-4e14-9c76-b3a6103ff17a, base path is set to: null +16:40:51.396 [XNIO-1 task-1] UFd_V25DRJqzMRGahSxzYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dbf15385-5a63-4e14-9c76-b3a6103ff17a", "dbf15385-5a63-4e14-9c76-b3a6103ff17a", clientId) +16:40:51.398 [XNIO-1 task-1] aTLmLzCXSNKCV-TWoab6YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.398 [XNIO-1 task-1] aTLmLzCXSNKCV-TWoab6YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.399 [XNIO-1 task-1] aTLmLzCXSNKCV-TWoab6YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.399 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6d357a46 +16:40:51.409 [XNIO-1 task-1] 2siPyrKwTfO_RiIuTQoXRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbf15385-5a63-4e14-9c76-b3a6103ff17a, base path is set to: null +16:40:51.409 [XNIO-1 task-1] 2siPyrKwTfO_RiIuTQoXRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.409 [XNIO-1 task-1] 2siPyrKwTfO_RiIuTQoXRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.409 [XNIO-1 task-1] 2siPyrKwTfO_RiIuTQoXRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/dbf15385-5a63-4e14-9c76-b3a6103ff17a, base path is set to: null +16:40:51.409 [XNIO-1 task-1] 2siPyrKwTfO_RiIuTQoXRA DEBUG com.networknt.schema.TypeValidator debug - validate( "dbf15385-5a63-4e14-9c76-b3a6103ff17a", "dbf15385-5a63-4e14-9c76-b3a6103ff17a", clientId) +16:40:51.414 [XNIO-1 task-1] qYfl_P1uQrqbZshNQahKMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d3e992d9-4ebf-4e6a-bf39-60490edb4902 +16:40:51.415 [XNIO-1 task-1] qYfl_P1uQrqbZshNQahKMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.415 [XNIO-1 task-1] qYfl_P1uQrqbZshNQahKMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.415 [XNIO-1 task-1] qYfl_P1uQrqbZshNQahKMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d3e992d9-4ebf-4e6a-bf39-60490edb4902 +16:40:51.419 [XNIO-1 task-1] v5tWA0rvQK6VRP-nUEq57w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d3e992d9-4ebf-4e6a-bf39-60490edb4902, base path is set to: null +16:40:51.419 [XNIO-1 task-1] v5tWA0rvQK6VRP-nUEq57w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.419 [XNIO-1 task-1] v5tWA0rvQK6VRP-nUEq57w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.419 [XNIO-1 task-1] v5tWA0rvQK6VRP-nUEq57w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/d3e992d9-4ebf-4e6a-bf39-60490edb4902, base path is set to: null +16:40:51.419 [XNIO-1 task-1] v5tWA0rvQK6VRP-nUEq57w DEBUG com.networknt.schema.TypeValidator debug - validate( "d3e992d9-4ebf-4e6a-bf39-60490edb4902", "d3e992d9-4ebf-4e6a-bf39-60490edb4902", clientId) +16:40:51.425 [XNIO-1 task-1] Pli8-ZjfTiKw_21xW4E4TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/00926b10-99cf-4f86-af2d-4c7964995023 +16:40:51.425 [XNIO-1 task-1] Pli8-ZjfTiKw_21xW4E4TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.425 [XNIO-1 task-1] Pli8-ZjfTiKw_21xW4E4TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.425 [XNIO-1 task-1] Pli8-ZjfTiKw_21xW4E4TA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/00926b10-99cf-4f86-af2d-4c7964995023 +16:40:51.428 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3038a720 +16:40:51.429 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3038a720 +16:40:51.429 [XNIO-1 task-1] RSisP4NSRLSUfdPG5pGvXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/afd45fd6-060b-491f-973b-62e4e96b05db +16:40:51.429 [XNIO-1 task-1] RSisP4NSRLSUfdPG5pGvXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.429 [XNIO-1 task-1] RSisP4NSRLSUfdPG5pGvXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.429 [XNIO-1 task-1] RSisP4NSRLSUfdPG5pGvXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/afd45fd6-060b-491f-973b-62e4e96b05db +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.437 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.438 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.438 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"553a5d3d-45a4-4150-8507-b9c86e29","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.438 [XNIO-1 task-1] nlSJM31vS7mkB_TTSFh0yw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.441 [XNIO-1 task-1] SfveD4-LTgSLM3R4--l-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/00926b10-99cf-4f86-af2d-4c7964995023 +16:40:51.441 [XNIO-1 task-1] SfveD4-LTgSLM3R4--l-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.441 [XNIO-1 task-1] SfveD4-LTgSLM3R4--l-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.441 [XNIO-1 task-1] SfveD4-LTgSLM3R4--l-fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/00926b10-99cf-4f86-af2d-4c7964995023 +16:40:51.450 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.450 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.450 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.450 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"1846b783-f6c8-4cf9-a41b-a0edfb6f","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.451 [XNIO-1 task-1] b9wYK0TqTh2-MkTFV_1IQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.455 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.455 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.455 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG com.networknt.schema.TypeValidator debug - validate( "71702297-f157-47e6-bce9-47e8f7083b70", {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG com.networknt.schema.TypeValidator debug - validate( "0db0d929-164a-4e6d-8cda-1d52cde4", {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0db0d929-164a-4e6d-8cda-1d52cde4","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.456 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.457 [XNIO-1 task-1] t1WEM3JLRSWwetvni9OgIA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.459 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.459 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.459 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.459 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b072f719-d7c4-4b39-93ef-0d24441b","clientDesc":"71702297-f157-47e6-bce9-47e8f7083b70","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.460 [XNIO-1 task-1] ckXfyEysSmmidLPCdOGoOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.462 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6de0d39f +16:40:51.462 [XNIO-1 task-1] VNN0gJDaRlS1lj5osLryWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.462 [XNIO-1 task-1] VNN0gJDaRlS1lj5osLryWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.463 [XNIO-1 task-1] VNN0gJDaRlS1lj5osLryWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.474 [XNIO-1 task-1] urBjgM9qR9OwtTovuhoE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.474 [XNIO-1 task-1] urBjgM9qR9OwtTovuhoE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.474 [XNIO-1 task-1] urBjgM9qR9OwtTovuhoE9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.474 [XNIO-1 task-1] urBjgM9qR9OwtTovuhoE9g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.480 [XNIO-1 task-1] v984mOKxRSWwr6PHhUw_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.480 [XNIO-1 task-1] v984mOKxRSWwr6PHhUw_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.480 [XNIO-1 task-1] v984mOKxRSWwr6PHhUw_rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.480 [XNIO-1 task-1] v984mOKxRSWwr6PHhUw_rQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.486 [XNIO-1 task-1] Prjfsg7bRCeBaCFVfLi2Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0636b3e8-821c-44da-b539-8a504ce8dd1d +16:40:51.486 [XNIO-1 task-1] Prjfsg7bRCeBaCFVfLi2Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.486 [XNIO-1 task-1] Prjfsg7bRCeBaCFVfLi2Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.486 [XNIO-1 task-1] Prjfsg7bRCeBaCFVfLi2Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/0636b3e8-821c-44da-b539-8a504ce8dd1d +16:40:51.492 [XNIO-1 task-1] 4CiLn6nwShyDlseQ76b5ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a33a61cb-5931-4d44-8749-0b20d121c89f, base path is set to: null +16:40:51.492 [XNIO-1 task-1] 4CiLn6nwShyDlseQ76b5ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.492 [XNIO-1 task-1] 4CiLn6nwShyDlseQ76b5ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.492 [XNIO-1 task-1] 4CiLn6nwShyDlseQ76b5ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/a33a61cb-5931-4d44-8749-0b20d121c89f, base path is set to: null +16:40:51.492 [XNIO-1 task-1] 4CiLn6nwShyDlseQ76b5ww DEBUG com.networknt.schema.TypeValidator debug - validate( "a33a61cb-5931-4d44-8749-0b20d121c89f", "a33a61cb-5931-4d44-8749-0b20d121c89f", clientId) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "9a64988a-d30d-46a6-9db3-36b4172d2293", {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "e5c4192b-6e84-42bc-a4b4-1edc1286", {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.498 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"e5c4192b-6e84-42bc-a4b4-1edc1286","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.499 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.499 [XNIO-1 task-1] VQk0SBhmQ6y1-89tZwYBFg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.500 [XNIO-1 task-1] XgVFH8VGTfKluaSy-Y5Xzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c5ee5ae-728c-4c39-83b2-9d3ae2af89af, base path is set to: null +16:40:51.500 [XNIO-1 task-1] XgVFH8VGTfKluaSy-Y5Xzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.501 [XNIO-1 task-1] XgVFH8VGTfKluaSy-Y5Xzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.501 [XNIO-1 task-1] XgVFH8VGTfKluaSy-Y5Xzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c5ee5ae-728c-4c39-83b2-9d3ae2af89af, base path is set to: null +16:40:51.501 [XNIO-1 task-1] XgVFH8VGTfKluaSy-Y5Xzg DEBUG com.networknt.schema.TypeValidator debug - validate( "7c5ee5ae-728c-4c39-83b2-9d3ae2af89af", "7c5ee5ae-728c-4c39-83b2-9d3ae2af89af", clientId) +16:40:51.504 [XNIO-1 task-1] l46fw5b_RkKtJWr7-Fh-RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.504 [XNIO-1 task-1] l46fw5b_RkKtJWr7-Fh-RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.504 [XNIO-1 task-1] l46fw5b_RkKtJWr7-Fh-RQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.504 [XNIO-1 task-1] l46fw5b_RkKtJWr7-Fh-RQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.511 [XNIO-1 task-1] 8xc21lM2ToKH65HRCGe7Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.511 [XNIO-1 task-1] 8xc21lM2ToKH65HRCGe7Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.511 [XNIO-1 task-1] 8xc21lM2ToKH65HRCGe7Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.523 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.523 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.523 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.523 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "9a64988a-d30d-46a6-9db3-36b4172d2293", {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "0ca10683-67d8-4d5a-94c9-b25c294d", {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0ca10683-67d8-4d5a-94c9-b25c294d","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.524 [XNIO-1 task-1] K9EVkZy9R2m1SIblMne7yA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.527 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.528 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.528 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.528 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"f1ab0681-5645-4234-8feb-50af912a","clientDesc":"9a64988a-d30d-46a6-9db3-36b4172d2293","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.528 [XNIO-1 task-1] ybOR_iDPTh-OTE-Vvk6WEA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.530 [XNIO-1 task-1] BpI_mKU5TzywvvIgxWD7eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.530 [XNIO-1 task-1] BpI_mKU5TzywvvIgxWD7eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.530 [XNIO-1 task-1] BpI_mKU5TzywvvIgxWD7eg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.530 [XNIO-1 task-1] BpI_mKU5TzywvvIgxWD7eg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.536 [XNIO-1 task-1] X0QcpR-XSoy-QcF07eHH1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2f9c0612-e313-4a1a-9ece-f5cfcdfe1c2c +16:40:51.536 [XNIO-1 task-1] X0QcpR-XSoy-QcF07eHH1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.536 [XNIO-1 task-1] X0QcpR-XSoy-QcF07eHH1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.536 [XNIO-1 task-1] X0QcpR-XSoy-QcF07eHH1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2f9c0612-e313-4a1a-9ece-f5cfcdfe1c2c, base path is set to: null +16:40:51.536 [XNIO-1 task-1] X0QcpR-XSoy-QcF07eHH1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2f9c0612-e313-4a1a-9ece-f5cfcdfe1c2c +16:40:51.543 [XNIO-1 task-1] re74vzw8TwuIli-qg6Yw3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c5ee5ae-728c-4c39-83b2-9d3ae2af89af, base path is set to: null +16:40:51.544 [XNIO-1 task-1] re74vzw8TwuIli-qg6Yw3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.544 [XNIO-1 task-1] re74vzw8TwuIli-qg6Yw3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.544 [XNIO-1 task-1] re74vzw8TwuIli-qg6Yw3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/7c5ee5ae-728c-4c39-83b2-9d3ae2af89af, base path is set to: null +16:40:51.544 [XNIO-1 task-1] re74vzw8TwuIli-qg6Yw3g DEBUG com.networknt.schema.TypeValidator debug - validate( "7c5ee5ae-728c-4c39-83b2-9d3ae2af89af", "7c5ee5ae-728c-4c39-83b2-9d3ae2af89af", clientId) +16:40:51.548 [XNIO-1 task-1] 0HZ-tvdJSJG_i6RC7bb98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.549 [XNIO-1 task-1] 0HZ-tvdJSJG_i6RC7bb98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.549 [XNIO-1 task-1] 0HZ-tvdJSJG_i6RC7bb98Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.549 [XNIO-1 task-1] 0HZ-tvdJSJG_i6RC7bb98Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.553 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6d357a46 +16:40:51.555 [XNIO-1 task-1] jWBg19_-TGaTVsOgQD5lYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.555 [XNIO-1 task-1] jWBg19_-TGaTVsOgQD5lYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.555 [XNIO-1 task-1] jWBg19_-TGaTVsOgQD5lYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab", {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.567 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c106a1e6-3e04-453e-9df2-a2459fb3", {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.568 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.568 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c106a1e6-3e04-453e-9df2-a2459fb3","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.568 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.568 [XNIO-1 task-1] oshB3ClgRMmsmQ6yDmwpJQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.570 [XNIO-1 task-1] SN03mYzwRNSR4ZWlV0WL9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f3f9e0f-2522-4192-beb0-9c6de30c5444, base path is set to: null +16:40:51.570 [XNIO-1 task-1] SN03mYzwRNSR4ZWlV0WL9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.570 [XNIO-1 task-1] SN03mYzwRNSR4ZWlV0WL9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.570 [XNIO-1 task-1] SN03mYzwRNSR4ZWlV0WL9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4f3f9e0f-2522-4192-beb0-9c6de30c5444, base path is set to: null +16:40:51.570 [XNIO-1 task-1] SN03mYzwRNSR4ZWlV0WL9w DEBUG com.networknt.schema.TypeValidator debug - validate( "4f3f9e0f-2522-4192-beb0-9c6de30c5444", "4f3f9e0f-2522-4192-beb0-9c6de30c5444", clientId) +16:40:51.577 [XNIO-1 task-1] istexSx2S865jmOTN8Zfcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d936008-2d96-4cb9-bdca-2026dfd49f8d +16:40:51.577 [XNIO-1 task-1] istexSx2S865jmOTN8Zfcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.577 [XNIO-1 task-1] istexSx2S865jmOTN8Zfcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.577 [XNIO-1 task-1] istexSx2S865jmOTN8Zfcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1d936008-2d96-4cb9-bdca-2026dfd49f8d +16:40:51.579 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.579 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.579 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.579 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.580 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.580 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.580 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.580 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.580 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.580 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.580 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.581 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"cb5db4df-13a9-429d-9db4-4595a9f6","clientDesc":"4e234c1f-4a0f-46b1-bf9c-eb600f5db6ab","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.581 [XNIO-1 task-1] -ROZlIf7Rmqkv5R3TtPEZg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.583 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.583 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG com.networknt.schema.TypeValidator debug - validate( "619d6beb-161c-4f53-ad6d-95c469771601", {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG com.networknt.schema.TypeValidator debug - validate( "5d238941-4a5f-4c12-9bdb-abf11a1c", {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"5d238941-4a5f-4c12-9bdb-abf11a1c","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.584 [XNIO-1 task-1] _lkN4l94QKC-TcrfOfhANw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.586 [XNIO-1 task-1] ES15OCsaSM6J6BfdiRg9Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.586 [XNIO-1 task-1] ES15OCsaSM6J6BfdiRg9Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.586 [XNIO-1 task-1] ES15OCsaSM6J6BfdiRg9Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.586 [XNIO-1 task-1] ES15OCsaSM6J6BfdiRg9Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.593 [XNIO-1 task-1] OF6O0MeZSH2-oaoACAz8yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.593 [XNIO-1 task-1] OF6O0MeZSH2-oaoACAz8yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.593 [XNIO-1 task-1] OF6O0MeZSH2-oaoACAz8yA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.593 [XNIO-1 task-1] OF6O0MeZSH2-oaoACAz8yA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.593 [XNIO-1 task-1] OF6O0MeZSH2-oaoACAz8yA DEBUG com.networknt.schema.TypeValidator debug - validate( "8e09a3a9-282b-47a9-a767-76314a48dc33", "8e09a3a9-282b-47a9-a767-76314a48dc33", clientId) +16:40:51.596 [XNIO-1 task-1] j3aEFfQ5SyG9nIpvl3fofg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33 +16:40:51.597 [XNIO-1 task-1] j3aEFfQ5SyG9nIpvl3fofg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.597 [XNIO-1 task-1] j3aEFfQ5SyG9nIpvl3fofg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.597 [XNIO-1 task-1] j3aEFfQ5SyG9nIpvl3fofg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33 +16:40:51.599 [XNIO-1 task-1] lyoGa4tnTiOrHdxu2cMxxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.599 [XNIO-1 task-1] lyoGa4tnTiOrHdxu2cMxxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.599 [XNIO-1 task-1] lyoGa4tnTiOrHdxu2cMxxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.600 [XNIO-1 task-1] lyoGa4tnTiOrHdxu2cMxxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.600 [XNIO-1 task-1] lyoGa4tnTiOrHdxu2cMxxg DEBUG com.networknt.schema.TypeValidator debug - validate( "8e09a3a9-282b-47a9-a767-76314a48dc33", "8e09a3a9-282b-47a9-a767-76314a48dc33", clientId) +16:40:51.602 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.602 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG com.networknt.schema.TypeValidator debug - validate( "619d6beb-161c-4f53-ad6d-95c469771601", {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG com.networknt.schema.TypeValidator debug - validate( "b4040a0d-9f53-468e-a657-625ed93b", {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b4040a0d-9f53-468e-a657-625ed93b","clientDesc":"619d6beb-161c-4f53-ad6d-95c469771601","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.603 [XNIO-1 task-1] mtRXthMwT7GH5zIWLROFIA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.605 [XNIO-1 task-1] BlRrKdVDS--yZ4JxxCjzSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.605 [XNIO-1 task-1] BlRrKdVDS--yZ4JxxCjzSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.605 [XNIO-1 task-1] BlRrKdVDS--yZ4JxxCjzSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.605 [XNIO-1 task-1] BlRrKdVDS--yZ4JxxCjzSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.605 [XNIO-1 task-1] BlRrKdVDS--yZ4JxxCjzSw DEBUG com.networknt.schema.TypeValidator debug - validate( "8e09a3a9-282b-47a9-a767-76314a48dc33", "8e09a3a9-282b-47a9-a767-76314a48dc33", clientId) +16:40:51.608 [XNIO-1 task-1] Nin-hooHQsSf0bs1R0-LnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33 +16:40:51.608 [XNIO-1 task-1] Nin-hooHQsSf0bs1R0-LnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.608 [XNIO-1 task-1] Nin-hooHQsSf0bs1R0-LnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.608 [XNIO-1 task-1] Nin-hooHQsSf0bs1R0-LnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33 +16:40:51.610 [XNIO-1 task-1] QAq1VbPxQ4qD4tjjbESvcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.610 [XNIO-1 task-1] QAq1VbPxQ4qD4tjjbESvcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.610 [XNIO-1 task-1] QAq1VbPxQ4qD4tjjbESvcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.622 [XNIO-1 task-1] qLJ6uvHyRfeCVvvIZJx05g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.623 [XNIO-1 task-1] qLJ6uvHyRfeCVvvIZJx05g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.623 [XNIO-1 task-1] qLJ6uvHyRfeCVvvIZJx05g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.623 [XNIO-1 task-1] qLJ6uvHyRfeCVvvIZJx05g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.629 [XNIO-1 task-1] _-anNZb1SdG_Ex2woc0ZyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.630 [XNIO-1 task-1] _-anNZb1SdG_Ex2woc0ZyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.630 [XNIO-1 task-1] _-anNZb1SdG_Ex2woc0ZyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.640 [XNIO-1 task-1] fQUv-UOxSN-n5k1S784olw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.640 [XNIO-1 task-1] fQUv-UOxSN-n5k1S784olw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.640 [XNIO-1 task-1] fQUv-UOxSN-n5k1S784olw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.640 [XNIO-1 task-1] fQUv-UOxSN-n5k1S784olw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8e09a3a9-282b-47a9-a767-76314a48dc33, base path is set to: null +16:40:51.640 [XNIO-1 task-1] fQUv-UOxSN-n5k1S784olw DEBUG com.networknt.schema.TypeValidator debug - validate( "8e09a3a9-282b-47a9-a767-76314a48dc33", "8e09a3a9-282b-47a9-a767-76314a48dc33", clientId) +16:40:51.645 [XNIO-1 task-1] 0ETJcyxQTceXHFZYp6vkiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.645 [XNIO-1 task-1] 0ETJcyxQTceXHFZYp6vkiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.645 [XNIO-1 task-1] 0ETJcyxQTceXHFZYp6vkiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.645 [XNIO-1 task-1] 0ETJcyxQTceXHFZYp6vkiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.651 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.651 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.651 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.651 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.651 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.651 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG com.networknt.schema.TypeValidator debug - validate( "3d8e9348-4a72-4d6e-9ed8-8908a9971768", {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.651 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.652 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.652 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG com.networknt.schema.TypeValidator debug - validate( "d3713136-f219-44c6-96d2-77609a24", {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.652 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.652 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"d3713136-f219-44c6-96d2-77609a24","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.652 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.652 [XNIO-1 task-1] N5_z4yEfS-O5O1xODAjSHg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.654 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.654 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.654 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.654 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.654 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.654 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.655 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.655 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.655 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.655 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.655 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.655 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a743a8dd-3c26-4f36-8d62-491574e3","clientDesc":"3d8e9348-4a72-4d6e-9ed8-8908a9971768","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.655 [XNIO-1 task-1] 8x3SXZoJQLmWQXLL8P65Bw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.657 [XNIO-1 task-1] FmhgySLpTM2oiFAgD6pTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1553e567-9cb1-457f-9910-78e896ca56c3 +16:40:51.657 [XNIO-1 task-1] FmhgySLpTM2oiFAgD6pTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.657 [XNIO-1 task-1] FmhgySLpTM2oiFAgD6pTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.657 [XNIO-1 task-1] FmhgySLpTM2oiFAgD6pTpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/1553e567-9cb1-457f-9910-78e896ca56c3 +16:40:51.662 [XNIO-1 task-1] 2QfhwWFGTgeQu3OXuCpyZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3e84ae7-1e57-4f76-b483-08130bdeba79, base path is set to: null +16:40:51.662 [XNIO-1 task-1] 2QfhwWFGTgeQu3OXuCpyZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.662 [XNIO-1 task-1] 2QfhwWFGTgeQu3OXuCpyZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.662 [XNIO-1 task-1] 2QfhwWFGTgeQu3OXuCpyZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3e84ae7-1e57-4f76-b483-08130bdeba79, base path is set to: null +16:40:51.663 [XNIO-1 task-1] 2QfhwWFGTgeQu3OXuCpyZg DEBUG com.networknt.schema.TypeValidator debug - validate( "b3e84ae7-1e57-4f76-b483-08130bdeba79", "b3e84ae7-1e57-4f76-b483-08130bdeba79", clientId) +16:40:51.665 [XNIO-1 task-1] fI9bemhtSMWA3FvTKln2fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.665 [XNIO-1 task-1] fI9bemhtSMWA3FvTKln2fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.665 [XNIO-1 task-1] fI9bemhtSMWA3FvTKln2fw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.666 [XNIO-1 task-1] fI9bemhtSMWA3FvTKln2fw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.674 [XNIO-1 task-1] IEnFPiWHSfGn024gSX3bJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2aa1a911-6792-4c01-bfb0-2ee2110828c3 +16:40:51.674 [XNIO-1 task-1] IEnFPiWHSfGn024gSX3bJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.674 [XNIO-1 task-1] IEnFPiWHSfGn024gSX3bJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.674 [XNIO-1 task-1] IEnFPiWHSfGn024gSX3bJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2aa1a911-6792-4c01-bfb0-2ee2110828c3 +16:40:51.676 [XNIO-1 task-1] SgWPJql3Q4-l-lDp2ZdhtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4e111fad-2513-4e09-8b79-f69f26122125, base path is set to: null +16:40:51.676 [XNIO-1 task-1] SgWPJql3Q4-l-lDp2ZdhtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.676 [XNIO-1 task-1] SgWPJql3Q4-l-lDp2ZdhtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.676 [XNIO-1 task-1] SgWPJql3Q4-l-lDp2ZdhtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4e111fad-2513-4e09-8b79-f69f26122125, base path is set to: null +16:40:51.676 [XNIO-1 task-1] SgWPJql3Q4-l-lDp2ZdhtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4e111fad-2513-4e09-8b79-f69f26122125", "4e111fad-2513-4e09-8b79-f69f26122125", clientId) +16:40:51.678 [XNIO-1 task-1] X6-DPWT6Q4SAXhEKI08EGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.679 [XNIO-1 task-1] X6-DPWT6Q4SAXhEKI08EGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.679 [XNIO-1 task-1] X6-DPWT6Q4SAXhEKI08EGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.714 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.714 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.714 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.714 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.714 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.714 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG com.networknt.schema.TypeValidator debug - validate( "02c9da3a-3985-4c22-bebb-42f3570d37e8", {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.714 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.715 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.715 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8d3d921-cea9-4e70-8e0d-6778aa48", {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.715 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.715 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a8d3d921-cea9-4e70-8e0d-6778aa48","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.715 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.715 [XNIO-1 task-1] azSN6tzIQFW0sREn8WIauA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.717 [XNIO-1 task-1] McmUMAU5QP2I-zd7YgH8oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2aa1a911-6792-4c01-bfb0-2ee2110828c3, base path is set to: null +16:40:51.717 [XNIO-1 task-1] McmUMAU5QP2I-zd7YgH8oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.717 [XNIO-1 task-1] McmUMAU5QP2I-zd7YgH8oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.717 [XNIO-1 task-1] McmUMAU5QP2I-zd7YgH8oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2aa1a911-6792-4c01-bfb0-2ee2110828c3, base path is set to: null +16:40:51.717 [XNIO-1 task-1] McmUMAU5QP2I-zd7YgH8oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2aa1a911-6792-4c01-bfb0-2ee2110828c3", "2aa1a911-6792-4c01-bfb0-2ee2110828c3", clientId) +16:40:51.722 [XNIO-1 task-1] L2w2WRMaSfmBpor_c8864g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e111fad-2513-4e09-8b79-f69f26122125 +16:40:51.722 [XNIO-1 task-1] L2w2WRMaSfmBpor_c8864g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.723 [XNIO-1 task-1] L2w2WRMaSfmBpor_c8864g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.723 [XNIO-1 task-1] L2w2WRMaSfmBpor_c8864g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e111fad-2513-4e09-8b79-f69f26122125 +16:40:51.725 [XNIO-1 task-1] aiNM3WwvRZ2NnV9LH0eebg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.725 [XNIO-1 task-1] aiNM3WwvRZ2NnV9LH0eebg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.725 [XNIO-1 task-1] aiNM3WwvRZ2NnV9LH0eebg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.731 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3038a720 +16:40:51.735 [XNIO-1 task-1] dlEUHXVfRNqmLgeEuO_EsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3e84ae7-1e57-4f76-b483-08130bdeba79, base path is set to: null +16:40:51.736 [XNIO-1 task-1] dlEUHXVfRNqmLgeEuO_EsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.736 [XNIO-1 task-1] dlEUHXVfRNqmLgeEuO_EsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.736 [XNIO-1 task-1] dlEUHXVfRNqmLgeEuO_EsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b3e84ae7-1e57-4f76-b483-08130bdeba79, base path is set to: null +16:40:51.736 [XNIO-1 task-1] dlEUHXVfRNqmLgeEuO_EsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b3e84ae7-1e57-4f76-b483-08130bdeba79", "b3e84ae7-1e57-4f76-b483-08130bdeba79", clientId) +16:40:51.763 [XNIO-1 task-1] xegBn6QpTSms3KN0eIsXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.763 [XNIO-1 task-1] xegBn6QpTSms3KN0eIsXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.763 [XNIO-1 task-1] xegBn6QpTSms3KN0eIsXAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.763 [XNIO-1 task-1] xegBn6QpTSms3KN0eIsXAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.772 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:516b35ef +16:40:51.773 [XNIO-1 task-1] 9z1gAOJkSEWHcql8DmadpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9, base path is set to: null +16:40:51.774 [XNIO-1 task-1] 9z1gAOJkSEWHcql8DmadpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.774 [XNIO-1 task-1] 9z1gAOJkSEWHcql8DmadpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.774 [XNIO-1 task-1] 9z1gAOJkSEWHcql8DmadpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9, base path is set to: null +16:40:51.774 [XNIO-1 task-1] 9z1gAOJkSEWHcql8DmadpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "144805b9-6d90-4f35-89f4-edc98e0583d9", "144805b9-6d90-4f35-89f4-edc98e0583d9", clientId) +16:40:51.776 [XNIO-1 task-1] oESXuvcFTV2de9hNwDj2sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.776 [XNIO-1 task-1] oESXuvcFTV2de9hNwDj2sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.776 [XNIO-1 task-1] oESXuvcFTV2de9hNwDj2sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.776 [XNIO-1 task-1] oESXuvcFTV2de9hNwDj2sg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.782 [XNIO-1 task-1] Es5NW5jhS3mza-IhFG1hVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e111fad-2513-4e09-8b79-f69f26122125 +16:40:51.782 [XNIO-1 task-1] Es5NW5jhS3mza-IhFG1hVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.783 [XNIO-1 task-1] Es5NW5jhS3mza-IhFG1hVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.783 [XNIO-1 task-1] Es5NW5jhS3mza-IhFG1hVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/4e111fad-2513-4e09-8b79-f69f26122125 +16:40:51.788 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.788 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.788 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b492ef19-e402-4b27-8587-2869a87e","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.789 [XNIO-1 task-1] NLqn-oc_QWSAeAdWNP0GQQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.792 [XNIO-1 task-1] GVQX-ps2QQiuBvUK4t7Zbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9 +16:40:51.792 [XNIO-1 task-1] GVQX-ps2QQiuBvUK4t7Zbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.792 [XNIO-1 task-1] GVQX-ps2QQiuBvUK4t7Zbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.792 [XNIO-1 task-1] GVQX-ps2QQiuBvUK4t7Zbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9 +16:40:51.795 [XNIO-1 task-1] JvjyNL9KS7yMf3DKi3Wh-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.795 [XNIO-1 task-1] JvjyNL9KS7yMf3DKi3Wh-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.795 [XNIO-1 task-1] JvjyNL9KS7yMf3DKi3Wh-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.799 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5553e1c1-fb7b-4054-a3f2-c850700b2845 +16:40:51.800 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:5553e1c1-fb7b-4054-a3f2-c850700b2845 +16:40:51.807 [XNIO-1 task-1] YoUcZAlsSJ2cd7IwpdtToA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.807 [XNIO-1 task-1] YoUcZAlsSJ2cd7IwpdtToA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.807 [XNIO-1 task-1] YoUcZAlsSJ2cd7IwpdtToA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.807 [XNIO-1 task-1] YoUcZAlsSJ2cd7IwpdtToA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.814 [XNIO-1 task-1] M7Rb82T8RCmNFvxCxvrBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.814 [XNIO-1 task-1] M7Rb82T8RCmNFvxCxvrBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.814 [XNIO-1 task-1] M7Rb82T8RCmNFvxCxvrBDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.814 [XNIO-1 task-1] M7Rb82T8RCmNFvxCxvrBDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.823 [XNIO-1 task-1] ROI1IKLPRzWV0LfABJbTbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.823 [XNIO-1 task-1] ROI1IKLPRzWV0LfABJbTbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.823 [XNIO-1 task-1] ROI1IKLPRzWV0LfABJbTbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.829 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f4cb2b22-042b-41f1-b10b-4c81532f2ca8 +16:40:51.848 [XNIO-1 task-1] r6XQHACaSzajujPbLbefpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1d936008-2d96-4cb9-bdca-2026dfd49f8d, base path is set to: null +16:40:51.849 [XNIO-1 task-1] r6XQHACaSzajujPbLbefpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.849 [XNIO-1 task-1] r6XQHACaSzajujPbLbefpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.849 [XNIO-1 task-1] r6XQHACaSzajujPbLbefpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/1d936008-2d96-4cb9-bdca-2026dfd49f8d, base path is set to: null +16:40:51.849 [XNIO-1 task-1] r6XQHACaSzajujPbLbefpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1d936008-2d96-4cb9-bdca-2026dfd49f8d", "1d936008-2d96-4cb9-bdca-2026dfd49f8d", clientId) +16:40:51.856 [XNIO-1 task-1] -JDY7wAQRqGKHg6HFVRAVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9 +16:40:51.856 [XNIO-1 task-1] -JDY7wAQRqGKHg6HFVRAVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.856 [XNIO-1 task-1] -JDY7wAQRqGKHg6HFVRAVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.856 [XNIO-1 task-1] -JDY7wAQRqGKHg6HFVRAVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9 +16:40:51.861 [XNIO-1 task-1] e6vYUKfvTCGAljgY4J27fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9, base path is set to: null +16:40:51.861 [XNIO-1 task-1] e6vYUKfvTCGAljgY4J27fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.861 [XNIO-1 task-1] e6vYUKfvTCGAljgY4J27fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.861 [XNIO-1 task-1] e6vYUKfvTCGAljgY4J27fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9, base path is set to: null +16:40:51.861 [XNIO-1 task-1] e6vYUKfvTCGAljgY4J27fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "144805b9-6d90-4f35-89f4-edc98e0583d9", "144805b9-6d90-4f35-89f4-edc98e0583d9", clientId) +16:40:51.864 [XNIO-1 task-1] CxQp8BQVTOCjp1cMVRKnLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.864 [XNIO-1 task-1] CxQp8BQVTOCjp1cMVRKnLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.864 [XNIO-1 task-1] CxQp8BQVTOCjp1cMVRKnLQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.864 [XNIO-1 task-1] CxQp8BQVTOCjp1cMVRKnLQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.874 [XNIO-1 task-1] yXtHP13yTryFaFO-plNz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b5d4cce7-f38c-48b1-a303-cb4c57aec2a8 +16:40:51.874 [XNIO-1 task-1] yXtHP13yTryFaFO-plNz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.874 [XNIO-1 task-1] yXtHP13yTryFaFO-plNz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.874 [XNIO-1 task-1] yXtHP13yTryFaFO-plNz4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b5d4cce7-f38c-48b1-a303-cb4c57aec2a8 +16:40:51.884 [XNIO-1 task-1] k_ZqB1HASs-ozuOiqbpb5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9, base path is set to: null +16:40:51.884 [XNIO-1 task-1] k_ZqB1HASs-ozuOiqbpb5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.884 [XNIO-1 task-1] k_ZqB1HASs-ozuOiqbpb5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.884 [XNIO-1 task-1] k_ZqB1HASs-ozuOiqbpb5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/144805b9-6d90-4f35-89f4-edc98e0583d9, base path is set to: null +16:40:51.884 [XNIO-1 task-1] k_ZqB1HASs-ozuOiqbpb5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "144805b9-6d90-4f35-89f4-edc98e0583d9", "144805b9-6d90-4f35-89f4-edc98e0583d9", clientId) +16:40:51.889 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.889 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.889 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5ba19715-a7ef-4972-a283-c0c40a411143", {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9f17a84e-32cb-47a5-9bd3-1f32cd03", {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"9f17a84e-32cb-47a5-9bd3-1f32cd03","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.890 [XNIO-1 task-1] PE7U0tlPRVSaBaBQYxvg2Q DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.894 [XNIO-1 task-1] _lv1ua_lTmKRjX0yiUa0Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/30d38d6f-c294-4f44-994e-2e1b168666c9, base path is set to: null +16:40:51.894 [XNIO-1 task-1] _lv1ua_lTmKRjX0yiUa0Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.894 [XNIO-1 task-1] _lv1ua_lTmKRjX0yiUa0Lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.894 [XNIO-1 task-1] _lv1ua_lTmKRjX0yiUa0Lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/30d38d6f-c294-4f44-994e-2e1b168666c9, base path is set to: null +16:40:51.894 [XNIO-1 task-1] _lv1ua_lTmKRjX0yiUa0Lg DEBUG com.networknt.schema.TypeValidator debug - validate( "30d38d6f-c294-4f44-994e-2e1b168666c9", "30d38d6f-c294-4f44-994e-2e1b168666c9", clientId) +16:40:51.903 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.903 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.903 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.903 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "30442302-c909-476e-becb-378a05cca9cd", {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "552873e1-9d88-42cb-b14e-12228243", {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"552873e1-9d88-42cb-b14e-12228243","clientDesc":"30442302-c909-476e-becb-378a05cca9cd","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.904 [XNIO-1 task-1] GddhbjReTa-hPePV42ugTQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.906 [XNIO-1 task-1] TOCuslsrRpGcz-ihkQ7bbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/30d38d6f-c294-4f44-994e-2e1b168666c9, base path is set to: null +16:40:51.906 [XNIO-1 task-1] TOCuslsrRpGcz-ihkQ7bbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.906 [XNIO-1 task-1] TOCuslsrRpGcz-ihkQ7bbw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:51.906 [XNIO-1 task-1] TOCuslsrRpGcz-ihkQ7bbw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/30d38d6f-c294-4f44-994e-2e1b168666c9, base path is set to: null +16:40:51.906 [XNIO-1 task-1] TOCuslsrRpGcz-ihkQ7bbw DEBUG com.networknt.schema.TypeValidator debug - validate( "30d38d6f-c294-4f44-994e-2e1b168666c9", "30d38d6f-c294-4f44-994e-2e1b168666c9", clientId) +16:40:51.911 [XNIO-1 task-1] PXa4HMjzQBGbTPyDXPMhvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb8a6c3e-0228-4aec-99f7-b3dab8e549dc +16:40:51.911 [XNIO-1 task-1] PXa4HMjzQBGbTPyDXPMhvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.911 [XNIO-1 task-1] PXa4HMjzQBGbTPyDXPMhvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.911 [XNIO-1 task-1] PXa4HMjzQBGbTPyDXPMhvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/bb8a6c3e-0228-4aec-99f7-b3dab8e549dc +16:40:51.916 [XNIO-1 task-1] vC3D2-mPRBG8KPVjeZjYlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.916 [XNIO-1 task-1] vC3D2-mPRBG8KPVjeZjYlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.916 [XNIO-1 task-1] vC3D2-mPRBG8KPVjeZjYlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.916 [XNIO-1 task-1] vC3D2-mPRBG8KPVjeZjYlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.924 [XNIO-1 task-1] OWu2pcvbQ8iJ_aftDRijfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.924 [XNIO-1 task-1] OWu2pcvbQ8iJ_aftDRijfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.924 [XNIO-1 task-1] OWu2pcvbQ8iJ_aftDRijfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.929 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b71c21b2-be65-4e0a-b9cb-f9fd0ae5075e +16:40:51.930 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b71c21b2-be65-4e0a-b9cb-f9fd0ae5075e +16:40:51.936 [XNIO-1 task-1] -x9Qi5YZTvKfBB5gRa_z0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.936 [XNIO-1 task-1] -x9Qi5YZTvKfBB5gRa_z0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.936 [XNIO-1 task-1] -x9Qi5YZTvKfBB5gRa_z0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.937 [XNIO-1 task-1] -x9Qi5YZTvKfBB5gRa_z0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG com.networknt.schema.TypeValidator debug - validate( "5ba19715-a7ef-4972-a283-c0c40a411143", {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG com.networknt.schema.TypeValidator debug - validate( "a898be41-14c1-4928-9a00-3075620a", {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:51.945 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.946 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"a898be41-14c1-4928-9a00-3075620a","clientDesc":"5ba19715-a7ef-4972-a283-c0c40a411143","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.946 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.946 [XNIO-1 task-1] 8pBgg7eLToWeN4XQEJtacw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:51.952 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.952 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.952 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.952 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.952 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"24977e87-0c4d-462b-b613-136bf053","clientDesc":"f9e0c169-f703-4f6c-b179-0908843b393d","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.953 [XNIO-1 task-1] pwjC8naxTSiC_wy3uWqQpQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.957 [XNIO-1 task-1] XJQsPfkgTmOrkNEFItk1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.957 [XNIO-1 task-1] XJQsPfkgTmOrkNEFItk1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.957 [XNIO-1 task-1] XJQsPfkgTmOrkNEFItk1cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.965 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7f2865b5 +16:40:51.972 [XNIO-1 task-1] Wea0FRa7T0mTXyG-Wk2u9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.972 [XNIO-1 task-1] Wea0FRa7T0mTXyG-Wk2u9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.972 [XNIO-1 task-1] Wea0FRa7T0mTXyG-Wk2u9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.972 [XNIO-1 task-1] Wea0FRa7T0mTXyG-Wk2u9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.979 [XNIO-1 task-1] X9fmfx66QW-F2Th91bKyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.979 [XNIO-1 task-1] X9fmfx66QW-F2Th91bKyhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.979 [XNIO-1 task-1] X9fmfx66QW-F2Th91bKyhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.994 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.995 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bdd6f996-bf9a-4c24-a983-eb1bf478","clientDesc":"aca44923-0394-42ab-ac4a-ce95b25d82b3","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:51.996 [XNIO-1 task-1] AN3TfR1xTjK30W9ZSZTViA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:51.998 [XNIO-1 task-1] rzzQ-oRKQ6mvTIQdFXmJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f23864d4-5b9b-4927-b2e4-0bd9d96d70dd +16:40:51.998 [XNIO-1 task-1] rzzQ-oRKQ6mvTIQdFXmJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:51.998 [XNIO-1 task-1] rzzQ-oRKQ6mvTIQdFXmJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:51.998 [XNIO-1 task-1] rzzQ-oRKQ6mvTIQdFXmJIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/f23864d4-5b9b-4927-b2e4-0bd9d96d70dd +16:40:52.004 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3038a720 +16:40:52.004 [XNIO-1 task-1] DDEj3xNSS3KyJRcxNu4hwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.004 [XNIO-1 task-1] DDEj3xNSS3KyJRcxNu4hwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.004 [XNIO-1 task-1] DDEj3xNSS3KyJRcxNu4hwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.018 [XNIO-1 task-1] CBspNU0EQwa3DnDj3Y_HLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.018 [XNIO-1 task-1] CBspNU0EQwa3DnDj3Y_HLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.019 [XNIO-1 task-1] CBspNU0EQwa3DnDj3Y_HLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.031 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.032 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.034 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.034 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.034 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.034 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.034 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.034 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.034 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.035 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.035 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.035 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c09a12e2-0c37-4df2-81cc-a45c4a0a","clientDesc":"2ae57fe1-fa3c-4d38-93db-bdbd1d9ef4ed","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.035 [XNIO-1 task-1] 3EwR60UfTQaI3dC3htGKYg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.037 [XNIO-1 task-1] 4cBNfkBvRvG6k__ufkLp8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.037 [XNIO-1 task-1] 4cBNfkBvRvG6k__ufkLp8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.038 [XNIO-1 task-1] 4cBNfkBvRvG6k__ufkLp8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.050 [XNIO-1 task-1] EIzEysFTQ2GK_InqX0dYSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.050 [XNIO-1 task-1] EIzEysFTQ2GK_InqX0dYSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.050 [XNIO-1 task-1] EIzEysFTQ2GK_InqX0dYSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.061 [XNIO-1 task-1] 2QadU51aQzONmxD0NSvF5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.061 [XNIO-1 task-1] 2QadU51aQzONmxD0NSvF5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.062 [XNIO-1 task-1] 2QadU51aQzONmxD0NSvF5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.062 [XNIO-1 task-1] 2QadU51aQzONmxD0NSvF5g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.069 [XNIO-1 task-1] O6BPmuh9ToixCUlz_JjK0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.069 [XNIO-1 task-1] O6BPmuh9ToixCUlz_JjK0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.069 [XNIO-1 task-1] O6BPmuh9ToixCUlz_JjK0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.069 [XNIO-1 task-1] O6BPmuh9ToixCUlz_JjK0A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.076 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6d24415a +16:40:52.077 [XNIO-1 task-1] 1kPacjkMTTebTSNWuDqzdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4, base path is set to: null +16:40:52.077 [XNIO-1 task-1] 1kPacjkMTTebTSNWuDqzdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.077 [XNIO-1 task-1] 1kPacjkMTTebTSNWuDqzdQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.077 [XNIO-1 task-1] 1kPacjkMTTebTSNWuDqzdQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/8527cacd-f565-4de5-a29a-22efd7534fc4, base path is set to: null +16:40:52.077 [XNIO-1 task-1] 1kPacjkMTTebTSNWuDqzdQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8527cacd-f565-4de5-a29a-22efd7534fc4", "8527cacd-f565-4de5-a29a-22efd7534fc4", clientId) +16:40:52.084 [XNIO-1 task-1] XwRfvAw6Q5S60qd_o9zscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.084 [XNIO-1 task-1] XwRfvAw6Q5S60qd_o9zscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.085 [XNIO-1 task-1] XwRfvAw6Q5S60qd_o9zscA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.085 [XNIO-1 task-1] XwRfvAw6Q5S60qd_o9zscA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.092 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.092 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.092 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.092 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.092 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG com.networknt.schema.TypeValidator debug - validate( "120efe8e-9808-4ac8-9b4f-8331aa2865d1", {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG com.networknt.schema.TypeValidator debug - validate( "30840906-c727-439e-a581-8d2d1380", {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"30840906-c727-439e-a581-8d2d1380","clientDesc":"120efe8e-9808-4ac8-9b4f-8331aa2865d1","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.093 [XNIO-1 task-1] WKBHdpdRT7aP5dZ04pJ4gA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.096 [XNIO-1 task-1] QC8kpMH4SfqVvIHzi9_V9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.096 [XNIO-1 task-1] QC8kpMH4SfqVvIHzi9_V9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.096 [XNIO-1 task-1] QC8kpMH4SfqVvIHzi9_V9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.107 [XNIO-1 task-1] a7P7ApvqQp6vv_h17MfHeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e3c5ce30-a8be-4314-8dcf-9a31fa2d269a, base path is set to: null +16:40:52.107 [XNIO-1 task-1] a7P7ApvqQp6vv_h17MfHeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.107 [XNIO-1 task-1] a7P7ApvqQp6vv_h17MfHeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.107 [XNIO-1 task-1] a7P7ApvqQp6vv_h17MfHeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/e3c5ce30-a8be-4314-8dcf-9a31fa2d269a, base path is set to: null +16:40:52.107 [XNIO-1 task-1] a7P7ApvqQp6vv_h17MfHeg DEBUG com.networknt.schema.TypeValidator debug - validate( "e3c5ce30-a8be-4314-8dcf-9a31fa2d269a", "e3c5ce30-a8be-4314-8dcf-9a31fa2d269a", clientId) +16:40:52.114 [XNIO-1 task-1] CWuhNRZkQTiAXKEpurRkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.114 [XNIO-1 task-1] CWuhNRZkQTiAXKEpurRkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.114 [XNIO-1 task-1] CWuhNRZkQTiAXKEpurRkZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.115 [XNIO-1 task-1] CWuhNRZkQTiAXKEpurRkZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.120 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6d24415a +16:40:52.124 [XNIO-1 task-1] a1w2wao9Tw6xtury_Em9oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1 +16:40:52.124 [XNIO-1 task-1] a1w2wao9Tw6xtury_Em9oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.124 [XNIO-1 task-1] a1w2wao9Tw6xtury_Em9oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.124 [XNIO-1 task-1] a1w2wao9Tw6xtury_Em9oA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1 +16:40:52.126 [XNIO-1 task-1] U6Hm0w8BSfi5ymYoXw64ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.126 [XNIO-1 task-1] U6Hm0w8BSfi5ymYoXw64ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.126 [XNIO-1 task-1] U6Hm0w8BSfi5ymYoXw64ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.126 [XNIO-1 task-1] U6Hm0w8BSfi5ymYoXw64ig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.133 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.133 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.133 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.133 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.133 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.133 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.133 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.134 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.134 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.134 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.135 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.135 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"2cac58ec-5300-4506-9ee1-8d41bedd","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.135 [XNIO-1 task-1] uAe5QhvJTfyh9-nbDlzT6Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.138 [XNIO-1 task-1] fL_Xs_6nR-Gctiz6j84TVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7a3614-13e1-411b-9341-0c44753a6448 +16:40:52.138 [XNIO-1 task-1] fL_Xs_6nR-Gctiz6j84TVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.138 [XNIO-1 task-1] fL_Xs_6nR-Gctiz6j84TVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.138 [XNIO-1 task-1] fL_Xs_6nR-Gctiz6j84TVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/fb7a3614-13e1-411b-9341-0c44753a6448 +16:40:52.143 [XNIO-1 task-1] 1tqeDN5YS8m_ZuI9x5NLYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.143 [XNIO-1 task-1] 1tqeDN5YS8m_ZuI9x5NLYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.143 [XNIO-1 task-1] 1tqeDN5YS8m_ZuI9x5NLYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.143 [XNIO-1 task-1] 1tqeDN5YS8m_ZuI9x5NLYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.151 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.152 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.152 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b4821181-af69-458d-81c4-2484da29","clientDesc":"3d114e8d-173c-4923-b261-1fd03b6f21eb","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.152 [XNIO-1 task-1] 6EBqZMGqSOug3HLcjR6hpw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.154 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.154 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG com.networknt.schema.TypeValidator debug - validate( "a21036a7-341c-43e5-b2fe-48aa29d06833", {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG com.networknt.schema.TypeValidator debug - validate( "c6cfd668-fc3f-489c-b7da-3fcc79d6", {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"c6cfd668-fc3f-489c-b7da-3fcc79d6","clientDesc":"a21036a7-341c-43e5-b2fe-48aa29d06833","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.155 [XNIO-1 task-1] ldqa72YjSqSU3xV_LTSflg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.159 [XNIO-1 task-1] sZaijulQRUWP1NueMcGhqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.159 [XNIO-1 task-1] sZaijulQRUWP1NueMcGhqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.159 [XNIO-1 task-1] sZaijulQRUWP1NueMcGhqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.173 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7f2865b5 +16:40:52.173 [XNIO-1 task-1] KWPAG1B5QOKaUEdFTrg5zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.173 [XNIO-1 task-1] KWPAG1B5QOKaUEdFTrg5zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.173 [XNIO-1 task-1] KWPAG1B5QOKaUEdFTrg5zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.188 [XNIO-1 task-1] W-UXtS8sQN2BY9HUCxOK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.188 [XNIO-1 task-1] W-UXtS8sQN2BY9HUCxOK5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.188 [XNIO-1 task-1] W-UXtS8sQN2BY9HUCxOK5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.198 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:516b35ef +16:40:52.200 [XNIO-1 task-1] vik-ZAGBTUSbVgrlZjBvow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.201 [XNIO-1 task-1] vik-ZAGBTUSbVgrlZjBvow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.201 [XNIO-1 task-1] vik-ZAGBTUSbVgrlZjBvow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.201 [XNIO-1 task-1] vik-ZAGBTUSbVgrlZjBvow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.209 [XNIO-1 task-1] UJ6gCRtLSym3u2gY6hCQmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ce4545c-1190-4f87-aa9c-845788f7f8f8, base path is set to: null +16:40:52.209 [XNIO-1 task-1] UJ6gCRtLSym3u2gY6hCQmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.209 [XNIO-1 task-1] UJ6gCRtLSym3u2gY6hCQmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.209 [XNIO-1 task-1] UJ6gCRtLSym3u2gY6hCQmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4ce4545c-1190-4f87-aa9c-845788f7f8f8, base path is set to: null +16:40:52.209 [XNIO-1 task-1] UJ6gCRtLSym3u2gY6hCQmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4ce4545c-1190-4f87-aa9c-845788f7f8f8", "4ce4545c-1190-4f87-aa9c-845788f7f8f8", clientId) +16:40:52.215 [XNIO-1 task-1] nUsbgaejQkGN15RN0Ncm1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.215 [XNIO-1 task-1] nUsbgaejQkGN15RN0Ncm1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.215 [XNIO-1 task-1] nUsbgaejQkGN15RN0Ncm1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.220 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b369a15e-5209-427f-9186-bc8952878249 +16:40:52.225 [XNIO-1 task-1] LWz-_lEjSqisS-5gaDZebw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.225 [XNIO-1 task-1] LWz-_lEjSqisS-5gaDZebw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.225 [XNIO-1 task-1] LWz-_lEjSqisS-5gaDZebw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.238 [XNIO-1 task-1] wNYA0gtlTAGCHpY3Z9q02g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1, base path is set to: null +16:40:52.239 [XNIO-1 task-1] wNYA0gtlTAGCHpY3Z9q02g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.239 [XNIO-1 task-1] wNYA0gtlTAGCHpY3Z9q02g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.239 [XNIO-1 task-1] wNYA0gtlTAGCHpY3Z9q02g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/b043c4e3-aba1-40d0-bf60-c49d018ef1e1, base path is set to: null +16:40:52.239 [XNIO-1 task-1] wNYA0gtlTAGCHpY3Z9q02g DEBUG com.networknt.schema.TypeValidator debug - validate( "b043c4e3-aba1-40d0-bf60-c49d018ef1e1", "b043c4e3-aba1-40d0-bf60-c49d018ef1e1", clientId) +16:40:52.243 [XNIO-1 task-1] IJNa2v2sTLmUNS8pRqPgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.243 [XNIO-1 task-1] IJNa2v2sTLmUNS8pRqPgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.243 [XNIO-1 task-1] IJNa2v2sTLmUNS8pRqPgbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.257 [XNIO-1 task-1] -Pe-qurtRGKDJJ4ItSGJTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884 +16:40:52.258 [XNIO-1 task-1] -Pe-qurtRGKDJJ4ItSGJTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.258 [XNIO-1 task-1] -Pe-qurtRGKDJJ4ItSGJTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.258 [XNIO-1 task-1] -Pe-qurtRGKDJJ4ItSGJTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884 +16:40:52.262 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.262 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.262 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.262 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"bb576038-5384-4233-ace3-0a26dd03","clientDesc":"781f12d3-22f5-4d77-ab2f-e8345be4f4f8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.263 [XNIO-1 task-1] dHFXuQM3SZuTTT6kKB3SuA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.266 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.266 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.266 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "cbac606c-79cc-4db7-850d-36bd257451d5", {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "ac3692a2-43f1-40fd-b423-9f881242", {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"ac3692a2-43f1-40fd-b423-9f881242","clientDesc":"cbac606c-79cc-4db7-850d-36bd257451d5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.267 [XNIO-1 task-1] wKnk1nsSSrqdsPRj6NVtlA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.270 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.270 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.270 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.270 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"720c2a2b-e1e1-4dfd-921e-0059d347","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.271 [XNIO-1 task-1] mIutorXKTGKolZ4EFnKaiA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.274 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.274 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.274 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff81950e-3309-4697-b72f-0346166d68aa", {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG com.networknt.schema.TypeValidator debug - validate( "6da4f24b-6131-4ca7-bb18-9da36999", {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"6da4f24b-6131-4ca7-bb18-9da36999","clientDesc":"ff81950e-3309-4697-b72f-0346166d68aa","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.275 [XNIO-1 task-1] D0HJU4-vRb6IXrNSgHhDrw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.280 [XNIO-1 task-1] yf2OLcPsSS29sEvQYqNOsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4eee1494-226e-4b27-a71c-ca99dd7bca7f, base path is set to: null +16:40:52.281 [XNIO-1 task-1] yf2OLcPsSS29sEvQYqNOsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.281 [XNIO-1 task-1] yf2OLcPsSS29sEvQYqNOsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.281 [XNIO-1 task-1] yf2OLcPsSS29sEvQYqNOsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/4eee1494-226e-4b27-a71c-ca99dd7bca7f, base path is set to: null +16:40:52.281 [XNIO-1 task-1] yf2OLcPsSS29sEvQYqNOsA DEBUG com.networknt.schema.TypeValidator debug - validate( "4eee1494-226e-4b27-a71c-ca99dd7bca7f", "4eee1494-226e-4b27-a71c-ca99dd7bca7f", clientId) +16:40:52.282 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7f2865b5 +16:40:52.292 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:560fcf6b +16:40:52.295 [XNIO-1 task-1] D4Tc3R6aSF-47EBUf-198w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.295 [XNIO-1 task-1] D4Tc3R6aSF-47EBUf-198w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.295 [XNIO-1 task-1] D4Tc3R6aSF-47EBUf-198w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.298 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7f2865b5 +16:40:52.307 [XNIO-1 task-1] 8GYb7UqFTSmeVaiL-L6q_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884, base path is set to: null +16:40:52.307 [XNIO-1 task-1] 8GYb7UqFTSmeVaiL-L6q_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.307 [XNIO-1 task-1] 8GYb7UqFTSmeVaiL-L6q_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.307 [XNIO-1 task-1] 8GYb7UqFTSmeVaiL-L6q_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/11a82e42-cd2d-4782-a8c9-bc397cc54884, base path is set to: null +16:40:52.308 [XNIO-1 task-1] 8GYb7UqFTSmeVaiL-L6q_A DEBUG com.networknt.schema.TypeValidator debug - validate( "11a82e42-cd2d-4782-a8c9-bc397cc54884", "11a82e42-cd2d-4782-a8c9-bc397cc54884", clientId) +16:40:52.309 [XNIO-1 task-1] CZlGttxDRRac272l5Yy6Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.309 [XNIO-1 task-1] CZlGttxDRRac272l5Yy6Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.309 [XNIO-1 task-1] CZlGttxDRRac272l5Yy6Mw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.310 [XNIO-1 task-1] CZlGttxDRRac272l5Yy6Mw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.319 [XNIO-1 task-1] KS_HgtQ4Rzaq-mXMB6aneg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.319 [XNIO-1 task-1] KS_HgtQ4Rzaq-mXMB6aneg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.319 [XNIO-1 task-1] KS_HgtQ4Rzaq-mXMB6aneg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.326 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7f2865b5 +16:40:52.329 [XNIO-1 task-1] GAYA72eVRsqR5IWeC385_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:52.329 [XNIO-1 task-1] GAYA72eVRsqR5IWeC385_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.329 [XNIO-1 task-1] GAYA72eVRsqR5IWeC385_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.329 [XNIO-1 task-1] GAYA72eVRsqR5IWeC385_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:52.334 [XNIO-1 task-1] c6b79iasS6WxLsB3Qm1VdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49a6e8a1-f09a-490a-881f-b12564aff1c8, base path is set to: null +16:40:52.334 [XNIO-1 task-1] c6b79iasS6WxLsB3Qm1VdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.334 [XNIO-1 task-1] c6b79iasS6WxLsB3Qm1VdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.334 [XNIO-1 task-1] c6b79iasS6WxLsB3Qm1VdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49a6e8a1-f09a-490a-881f-b12564aff1c8, base path is set to: null +16:40:52.334 [XNIO-1 task-1] c6b79iasS6WxLsB3Qm1VdA DEBUG com.networknt.schema.TypeValidator debug - validate( "49a6e8a1-f09a-490a-881f-b12564aff1c8", "49a6e8a1-f09a-490a-881f-b12564aff1c8", clientId) +16:40:52.339 [XNIO-1 task-1] FTDR6zZfQ3mP-a5b1Ln8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8ea755cf-782c-4d7d-956c-d40c3b935517 +16:40:52.339 [XNIO-1 task-1] FTDR6zZfQ3mP-a5b1Ln8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.339 [XNIO-1 task-1] FTDR6zZfQ3mP-a5b1Ln8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.339 [XNIO-1 task-1] FTDR6zZfQ3mP-a5b1Ln8GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/8ea755cf-782c-4d7d-956c-d40c3b935517 +16:40:52.346 [XNIO-1 task-1] kusVA7_cQN60JGv9b2LNig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49a6e8a1-f09a-490a-881f-b12564aff1c8, base path is set to: null +16:40:52.346 [XNIO-1 task-1] kusVA7_cQN60JGv9b2LNig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.346 [XNIO-1 task-1] kusVA7_cQN60JGv9b2LNig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.347 [XNIO-1 task-1] kusVA7_cQN60JGv9b2LNig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/49a6e8a1-f09a-490a-881f-b12564aff1c8, base path is set to: null +16:40:52.347 [XNIO-1 task-1] kusVA7_cQN60JGv9b2LNig DEBUG com.networknt.schema.TypeValidator debug - validate( "49a6e8a1-f09a-490a-881f-b12564aff1c8", "49a6e8a1-f09a-490a-881f-b12564aff1c8", clientId) +16:40:52.349 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7f2865b5 +16:40:52.349 [XNIO-1 task-1] QqAeu5EsRxWO8jbSATpeCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.349 [XNIO-1 task-1] QqAeu5EsRxWO8jbSATpeCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.349 [XNIO-1 task-1] QqAeu5EsRxWO8jbSATpeCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.354 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7f2865b5 +16:40:52.361 [XNIO-1 task-1] WN-5CranQjyCBBbiz1iTNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.361 [XNIO-1 task-1] WN-5CranQjyCBBbiz1iTNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.361 [XNIO-1 task-1] WN-5CranQjyCBBbiz1iTNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.371 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:7f2865b5 +16:40:52.371 [XNIO-1 task-1] LAmluV5pRtSDblR-qed_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.372 [XNIO-1 task-1] LAmluV5pRtSDblR-qed_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.372 [XNIO-1 task-1] LAmluV5pRtSDblR-qed_yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.372 [XNIO-1 task-1] LAmluV5pRtSDblR-qed_yg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.378 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3038a720 +16:40:52.380 [XNIO-1 task-1] YCRLfNJHRGKTZBkPm9Vtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.380 [XNIO-1 task-1] YCRLfNJHRGKTZBkPm9Vtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.380 [XNIO-1 task-1] YCRLfNJHRGKTZBkPm9Vtxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.380 [XNIO-1 task-1] YCRLfNJHRGKTZBkPm9Vtxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.391 [XNIO-1 task-1] zv980Ux4Tg-ycGKlC9DnjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.391 [XNIO-1 task-1] zv980Ux4Tg-ycGKlC9DnjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.391 [XNIO-1 task-1] zv980Ux4Tg-ycGKlC9DnjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.391 [XNIO-1 task-1] zv980Ux4Tg-ycGKlC9DnjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.391 [XNIO-1 task-1] zv980Ux4Tg-ycGKlC9DnjA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.398 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.398 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.398 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.398 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.398 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.398 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "e3f96b96-4edf-4443-b726-bd0e5ef9b870", {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.399 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.399 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.399 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "75f5057e-0cf4-4d1b-aff9-5f6faa3c", {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.399 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.399 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"75f5057e-0cf4-4d1b-aff9-5f6faa3c","clientDesc":"e3f96b96-4edf-4443-b726-bd0e5ef9b870","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.399 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.399 [XNIO-1 task-1] gfbtlI33QBixMjL_OPM_2A DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.400 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:7f2865b5 +16:40:52.401 [XNIO-1 task-1] UNl_YuhhS_S7kbQCHrSbfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2e966a9f-8053-44df-9cf4-8bc6b1846920, base path is set to: null +16:40:52.401 [XNIO-1 task-1] UNl_YuhhS_S7kbQCHrSbfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.401 [XNIO-1 task-1] UNl_YuhhS_S7kbQCHrSbfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.401 [XNIO-1 task-1] UNl_YuhhS_S7kbQCHrSbfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2e966a9f-8053-44df-9cf4-8bc6b1846920, base path is set to: null +16:40:52.401 [XNIO-1 task-1] UNl_YuhhS_S7kbQCHrSbfw DEBUG com.networknt.schema.TypeValidator debug - validate( "2e966a9f-8053-44df-9cf4-8bc6b1846920", "2e966a9f-8053-44df-9cf4-8bc6b1846920", clientId) +16:40:52.403 [XNIO-1 task-1] PLHMJ0dUSqSX-cQhFR-mvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.403 [XNIO-1 task-1] PLHMJ0dUSqSX-cQhFR-mvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.403 [XNIO-1 task-1] PLHMJ0dUSqSX-cQhFR-mvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.403 [XNIO-1 task-1] PLHMJ0dUSqSX-cQhFR-mvQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.415 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:7f2865b5 +16:40:52.415 [XNIO-1 task-1] prJboCMhRcyzbsX6oTeN0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.415 [XNIO-1 task-1] prJboCMhRcyzbsX6oTeN0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.415 [XNIO-1 task-1] prJboCMhRcyzbsX6oTeN0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/2e966a9f-8053-44df-9cf4-8bc6b1846920, base path is set to: null +16:40:52.415 [XNIO-1 task-1] prJboCMhRcyzbsX6oTeN0A DEBUG com.networknt.schema.TypeValidator debug - validate( "2e966a9f-8053-44df-9cf4-8bc6b1846920", "2e966a9f-8053-44df-9cf4-8bc6b1846920", clientId) +16:40:52.418 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6d24415a +16:40:52.423 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.423 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.423 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.423 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.423 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG com.networknt.schema.TypeValidator debug - validate( "4f280780-70f6-4d4b-b56f-1967a559c420", {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG com.networknt.schema.TypeValidator debug - validate( "4d65db55-cb9e-48a1-9d3a-ecf1198c", {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"4d65db55-cb9e-48a1-9d3a-ecf1198c","clientDesc":"4f280780-70f6-4d4b-b56f-1967a559c420","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.424 [XNIO-1 task-1] NcTL5lTxQFWTYsRM7w8EVw DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.432 [XNIO-1 task-1] DY4W29zSSUCQiR2tgSUXoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.432 [XNIO-1 task-1] DY4W29zSSUCQiR2tgSUXoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.432 [XNIO-1 task-1] DY4W29zSSUCQiR2tgSUXoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.449 [XNIO-1 task-1] WpkK0jspQ56N0h1HCT-t9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.449 [XNIO-1 task-1] WpkK0jspQ56N0h1HCT-t9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.449 [XNIO-1 task-1] WpkK0jspQ56N0h1HCT-t9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.449 [XNIO-1 task-1] WpkK0jspQ56N0h1HCT-t9g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.455 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.456 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.456 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e0d6cca9-c4ac-4da5-8bc5-bbed8930","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.456 [XNIO-1 task-1] xL0lCOXGSqSjjWG-ngcFJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.465 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.465 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.465 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.465 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.465 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.465 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "02c9da3a-3985-4c22-bebb-42f3570d37e8", {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.466 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.466 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.466 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "97daea93-31a6-475a-9c13-b0b13ede", {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.466 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.466 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"97daea93-31a6-475a-9c13-b0b13ede","clientDesc":"02c9da3a-3985-4c22-bebb-42f3570d37e8","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.466 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.466 [XNIO-1 task-1] 8DS__8OOTJayTCELlgWKoA DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.470 [XNIO-1 task-1] 2a5gTcVMSEqQMpWB38WvSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.470 [XNIO-1 task-1] 2a5gTcVMSEqQMpWB38WvSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.470 [XNIO-1 task-1] 2a5gTcVMSEqQMpWB38WvSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.480 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:96d7fbab +16:40:52.481 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:96d7fbab +16:40:52.485 [XNIO-1 task-1] Emq6E9FnRtG8EtmRvpTN6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.485 [XNIO-1 task-1] Emq6E9FnRtG8EtmRvpTN6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.485 [XNIO-1 task-1] Emq6E9FnRtG8EtmRvpTN6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.485 [XNIO-1 task-1] Emq6E9FnRtG8EtmRvpTN6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.496 [XNIO-1 task-1] vrXSmdY2ScS7dPpSTXO68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d345c94-a7aa-408c-93e2-032594c29c8d +16:40:52.496 [XNIO-1 task-1] vrXSmdY2ScS7dPpSTXO68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.496 [XNIO-1 task-1] vrXSmdY2ScS7dPpSTXO68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.496 [XNIO-1 task-1] vrXSmdY2ScS7dPpSTXO68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9d345c94-a7aa-408c-93e2-032594c29c8d +16:40:52.501 [XNIO-1 task-1] 2OtsiwqVRAO84m_WNFlGfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.502 [XNIO-1 task-1] 2OtsiwqVRAO84m_WNFlGfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.502 [XNIO-1 task-1] 2OtsiwqVRAO84m_WNFlGfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.516 [XNIO-1 task-1] s3f2TsVuTpmsbr5sN3YSOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.517 [XNIO-1 task-1] s3f2TsVuTpmsbr5sN3YSOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.517 [XNIO-1 task-1] s3f2TsVuTpmsbr5sN3YSOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.517 [XNIO-1 task-1] s3f2TsVuTpmsbr5sN3YSOg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.526 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:3038a720 +16:40:52.528 [XNIO-1 task-1] QJXQKPImTw-76FGIjzfTJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.528 [XNIO-1 task-1] QJXQKPImTw-76FGIjzfTJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.528 [XNIO-1 task-1] QJXQKPImTw-76FGIjzfTJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.543 [XNIO-1 task-1] 8L4YwVULS4yQy66Hv8Hrkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f6b9bd6-029d-4eba-8a04-2319129e0a68, base path is set to: null +16:40:52.543 [XNIO-1 task-1] 8L4YwVULS4yQy66Hv8Hrkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.543 [XNIO-1 task-1] 8L4YwVULS4yQy66Hv8Hrkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.543 [XNIO-1 task-1] 8L4YwVULS4yQy66Hv8Hrkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/0f6b9bd6-029d-4eba-8a04-2319129e0a68, base path is set to: null +16:40:52.543 [XNIO-1 task-1] 8L4YwVULS4yQy66Hv8Hrkg DEBUG com.networknt.schema.TypeValidator debug - validate( "0f6b9bd6-029d-4eba-8a04-2319129e0a68", "0f6b9bd6-029d-4eba-8a04-2319129e0a68", clientId) +16:40:52.552 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.552 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8b60013c-b301-4519-95a3-4d1aef48585a", {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21ce9f12-3ac5-4830-bf51-cc07c07f", {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"21ce9f12-3ac5-4830-bf51-cc07c07f","clientDesc":"8b60013c-b301-4519-95a3-4d1aef48585a","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.553 [XNIO-1 task-1] BQdCR57cRJiCqHfxtYqpkQ DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.555 [XNIO-1 task-1] Won-OICSSyq_CSeex5Knsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.555 [XNIO-1 task-1] Won-OICSSyq_CSeex5Knsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.555 [XNIO-1 task-1] Won-OICSSyq_CSeex5Knsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.566 [XNIO-1 task-1] AKtFFj5hT4uAc927_4bANA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.566 [XNIO-1 task-1] AKtFFj5hT4uAc927_4bANA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.567 [XNIO-1 task-1] AKtFFj5hT4uAc927_4bANA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.567 [XNIO-1 task-1] AKtFFj5hT4uAc927_4bANA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.578 [XNIO-1 task-1] vvJ0ydLAQ6eOVauEoggxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/21af050a-1ddd-4dfd-add7-6d65f60be9f9, base path is set to: null +16:40:52.579 [XNIO-1 task-1] vvJ0ydLAQ6eOVauEoggxcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.579 [XNIO-1 task-1] vvJ0ydLAQ6eOVauEoggxcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.579 [XNIO-1 task-1] vvJ0ydLAQ6eOVauEoggxcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/21af050a-1ddd-4dfd-add7-6d65f60be9f9, base path is set to: null +16:40:52.579 [XNIO-1 task-1] vvJ0ydLAQ6eOVauEoggxcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "21af050a-1ddd-4dfd-add7-6d65f60be9f9", "21af050a-1ddd-4dfd-add7-6d65f60be9f9", clientId) +16:40:52.588 [XNIO-1 task-1] ZSWlEbkOQ1q_HhqVX2Qodw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.589 [XNIO-1 task-1] ZSWlEbkOQ1q_HhqVX2Qodw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.589 [XNIO-1 task-1] ZSWlEbkOQ1q_HhqVX2Qodw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.589 [XNIO-1 task-1] ZSWlEbkOQ1q_HhqVX2Qodw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.601 [XNIO-1 task-1] Dy3XRdDNQZGDe-Q9-CR-vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.601 [XNIO-1 task-1] Dy3XRdDNQZGDe-Q9-CR-vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.601 [XNIO-1 task-1] Dy3XRdDNQZGDe-Q9-CR-vQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.601 [XNIO-1 task-1] Dy3XRdDNQZGDe-Q9-CR-vQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.608 [XNIO-1 task-1] CT2BNtnUTGG0PwQ2vEOERQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff +16:40:52.608 [XNIO-1 task-1] CT2BNtnUTGG0PwQ2vEOERQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.609 [XNIO-1 task-1] CT2BNtnUTGG0PwQ2vEOERQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.609 [XNIO-1 task-1] CT2BNtnUTGG0PwQ2vEOERQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff +16:40:52.611 [XNIO-1 task-1] 2dySOZFeT3OGdbhydzLG_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff, base path is set to: null +16:40:52.611 [XNIO-1 task-1] 2dySOZFeT3OGdbhydzLG_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.611 [XNIO-1 task-1] 2dySOZFeT3OGdbhydzLG_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.612 [XNIO-1 task-1] 2dySOZFeT3OGdbhydzLG_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff, base path is set to: null +16:40:52.612 [XNIO-1 task-1] 2dySOZFeT3OGdbhydzLG_w DEBUG com.networknt.schema.TypeValidator debug - validate( "90cf2c78-fa34-497e-a773-2bdfb215a8ff", "90cf2c78-fa34-497e-a773-2bdfb215a8ff", clientId) +16:40:52.616 [XNIO-1 task-1] P8tc81fDSemVJI9GSLbtmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.616 [XNIO-1 task-1] P8tc81fDSemVJI9GSLbtmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.616 [XNIO-1 task-1] P8tc81fDSemVJI9GSLbtmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.616 [XNIO-1 task-1] P8tc81fDSemVJI9GSLbtmA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG com.networknt.schema.TypeValidator debug - validate( "4a71ac3f-657f-46a1-ab51-1c8491116939", {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.626 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG com.networknt.schema.TypeValidator debug - validate( "0339f2ee-1a7f-4b5a-908a-29de74e9", {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.627 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.627 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"0339f2ee-1a7f-4b5a-908a-29de74e9","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.627 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.627 [XNIO-1 task-1] Je0D9kliRmmPBkuoWeJUFg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.630 [XNIO-1 task-1] r7rhBDdoTw2yN2BxTSmRmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.630 [XNIO-1 task-1] r7rhBDdoTw2yN2BxTSmRmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.630 [XNIO-1 task-1] r7rhBDdoTw2yN2BxTSmRmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.635 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:811f8265-9f40-4fcb-a62c-5aa5aadee998 +16:40:52.636 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:811f8265-9f40-4fcb-a62c-5aa5aadee998 +16:40:52.641 [XNIO-1 task-1] z1_t7gE0SGSuTlRvRNRsQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.641 [XNIO-1 task-1] z1_t7gE0SGSuTlRvRNRsQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.641 [XNIO-1 task-1] z1_t7gE0SGSuTlRvRNRsQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.655 [XNIO-1 task-1] ZRvZBsGfTRuFtDnNBD4Srw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.655 [XNIO-1 task-1] ZRvZBsGfTRuFtDnNBD4Srw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.655 [XNIO-1 task-1] ZRvZBsGfTRuFtDnNBD4Srw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.655 [XNIO-1 task-1] ZRvZBsGfTRuFtDnNBD4Srw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.661 [XNIO-1 task-1] LlM3H_hVR6G-mJpithnO_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff +16:40:52.662 [XNIO-1 task-1] LlM3H_hVR6G-mJpithnO_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.662 [XNIO-1 task-1] LlM3H_hVR6G-mJpithnO_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.662 [XNIO-1 task-1] LlM3H_hVR6G-mJpithnO_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.664 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"e561a591-684c-4d8f-ba72-0b27433c","clientDesc":"4a71ac3f-657f-46a1-ab51-1c8491116939","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.665 [XNIO-1 task-1] oyM9M6RoS9ezJeptbQt5GQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.667 [XNIO-1 task-1] XzKGE3GxR_6xGGGbAYFwgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.667 [XNIO-1 task-1] XzKGE3GxR_6xGGGbAYFwgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.667 [XNIO-1 task-1] XzKGE3GxR_6xGGGbAYFwgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.673 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8babe936-4faf-4d7d-bcdf-a353aa1b0245 +16:40:52.680 [XNIO-1 task-1] 1gNWtA1MQmyf0IJWPK9QOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.680 [XNIO-1 task-1] 1gNWtA1MQmyf0IJWPK9QOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.680 [XNIO-1 task-1] 1gNWtA1MQmyf0IJWPK9QOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.695 [XNIO-1 task-1] CIZUxdOjQV2WIbpDh-BZWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.695 [XNIO-1 task-1] CIZUxdOjQV2WIbpDh-BZWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.695 [XNIO-1 task-1] CIZUxdOjQV2WIbpDh-BZWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.705 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.705 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.706 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"d7a6bf57-1807-41cb-b550-54fa329f","clientDesc":"8cfc221f-dc46-4cad-9ca4-0bbeb3b8fc92","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.707 [XNIO-1 task-1] RuX0XykzRXaPMy7TGr1rYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.708 [XNIO-1 task-1] 0GQa2cdtQDmEGBSA7eLBYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.708 [XNIO-1 task-1] 0GQa2cdtQDmEGBSA7eLBYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.708 [XNIO-1 task-1] 0GQa2cdtQDmEGBSA7eLBYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.708 [XNIO-1 task-1] 0GQa2cdtQDmEGBSA7eLBYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.738 [XNIO-1 task-1] fx4q5fuDTpy7eSCjUrUZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9da9c077-b926-479f-9383-94029e7161bb +16:40:52.739 [XNIO-1 task-1] fx4q5fuDTpy7eSCjUrUZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.739 [XNIO-1 task-1] fx4q5fuDTpy7eSCjUrUZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.739 [XNIO-1 task-1] fx4q5fuDTpy7eSCjUrUZ-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/9da9c077-b926-479f-9383-94029e7161bb +16:40:52.742 [XNIO-1 task-1] _HDVegbkQ6GQEnI1Q2EnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.742 [XNIO-1 task-1] _HDVegbkQ6GQEnI1Q2EnIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.742 [XNIO-1 task-1] _HDVegbkQ6GQEnI1Q2EnIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.754 [XNIO-1 task-1] YF8tWXJrTx2EK5etr40vAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.754 [XNIO-1 task-1] YF8tWXJrTx2EK5etr40vAw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.754 [XNIO-1 task-1] YF8tWXJrTx2EK5etr40vAw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.754 [XNIO-1 task-1] YF8tWXJrTx2EK5etr40vAw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.761 [XNIO-1 task-1] 485SFmyLTn21ku__QkAMoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff, base path is set to: null +16:40:52.761 [XNIO-1 task-1] 485SFmyLTn21ku__QkAMoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.761 [XNIO-1 task-1] 485SFmyLTn21ku__QkAMoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.761 [XNIO-1 task-1] 485SFmyLTn21ku__QkAMoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/90cf2c78-fa34-497e-a773-2bdfb215a8ff, base path is set to: null +16:40:52.761 [XNIO-1 task-1] 485SFmyLTn21ku__QkAMoA DEBUG com.networknt.schema.TypeValidator debug - validate( "90cf2c78-fa34-497e-a773-2bdfb215a8ff", "90cf2c78-fa34-497e-a773-2bdfb215a8ff", clientId) +16:40:52.767 [XNIO-1 task-1] DI-dH7KzQVeiULSAzjXoDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.767 [XNIO-1 task-1] DI-dH7KzQVeiULSAzjXoDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.767 [XNIO-1 task-1] DI-dH7KzQVeiULSAzjXoDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.777 [XNIO-1 task-1] R4H5HHDrS3GezcK_qJ7l9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.777 [XNIO-1 task-1] R4H5HHDrS3GezcK_qJ7l9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.777 [XNIO-1 task-1] R4H5HHDrS3GezcK_qJ7l9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.777 [XNIO-1 task-1] R4H5HHDrS3GezcK_qJ7l9A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.782 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:96d7fbab +16:40:52.786 [XNIO-1 task-1] 8IQpL4vVQi2ij9cQcQhCvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.786 [XNIO-1 task-1] 8IQpL4vVQi2ij9cQcQhCvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.786 [XNIO-1 task-1] 8IQpL4vVQi2ij9cQcQhCvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.786 [XNIO-1 task-1] 8IQpL4vVQi2ij9cQcQhCvA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.793 [XNIO-1 task-1] cZzZ8zdvTJmNbtSTXs6fGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dcf693c2-eb5d-45dc-8564-05c66e00db17 +16:40:52.793 [XNIO-1 task-1] cZzZ8zdvTJmNbtSTXs6fGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.793 [XNIO-1 task-1] cZzZ8zdvTJmNbtSTXs6fGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.793 [XNIO-1 task-1] cZzZ8zdvTJmNbtSTXs6fGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/dcf693c2-eb5d-45dc-8564-05c66e00db17 +16:40:52.796 [XNIO-1 task-1] 3d0S0re6SAm5xRtLUM23-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.796 [XNIO-1 task-1] 3d0S0re6SAm5xRtLUM23-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.796 [XNIO-1 task-1] 3d0S0re6SAm5xRtLUM23-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.808 [XNIO-1 task-1] B-S5eoOJTb2tLjW95D5gww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5c92bdc0-9b8f-4994-a03c-3388a99e4827, base path is set to: null +16:40:52.808 [XNIO-1 task-1] B-S5eoOJTb2tLjW95D5gww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.808 [XNIO-1 task-1] B-S5eoOJTb2tLjW95D5gww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.808 [XNIO-1 task-1] B-S5eoOJTb2tLjW95D5gww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/5c92bdc0-9b8f-4994-a03c-3388a99e4827, base path is set to: null +16:40:52.808 [XNIO-1 task-1] B-S5eoOJTb2tLjW95D5gww DEBUG com.networknt.schema.TypeValidator debug - validate( "5c92bdc0-9b8f-4994-a03c-3388a99e4827", "5c92bdc0-9b8f-4994-a03c-3388a99e4827", clientId) +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG com.networknt.schema.TypeValidator debug - validate( "044d3446-2a87-41fe-b1ba-bd8521a4f169", {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.812 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.813 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG com.networknt.schema.TypeValidator debug - validate( "11d8a16f-21be-45d8-9d08-1a9fcd33", {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.813 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.813 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"11d8a16f-21be-45d8-9d08-1a9fcd33","clientDesc":"044d3446-2a87-41fe-b1ba-bd8521a4f169","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.813 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.813 [XNIO-1 task-1] EdMaEXl4SkuT5c09a7-pgg DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.817 [XNIO-1 task-1] Rx6OFCBWRqelZZwLH4szlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.817 [XNIO-1 task-1] Rx6OFCBWRqelZZwLH4szlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.817 [XNIO-1 task-1] Rx6OFCBWRqelZZwLH4szlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.817 [XNIO-1 task-1] Rx6OFCBWRqelZZwLH4szlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.827 [XNIO-1 task-1] x3oUR19aSjyFS80DNbiu3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35826f41-f8ab-4437-909d-ed9a0ecbcbdf, base path is set to: null +16:40:52.827 [XNIO-1 task-1] x3oUR19aSjyFS80DNbiu3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.827 [XNIO-1 task-1] x3oUR19aSjyFS80DNbiu3w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.828 [XNIO-1 task-1] x3oUR19aSjyFS80DNbiu3w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/35826f41-f8ab-4437-909d-ed9a0ecbcbdf, base path is set to: null +16:40:52.828 [XNIO-1 task-1] x3oUR19aSjyFS80DNbiu3w DEBUG com.networknt.schema.TypeValidator debug - validate( "35826f41-f8ab-4437-909d-ed9a0ecbcbdf", "35826f41-f8ab-4437-909d-ed9a0ecbcbdf", clientId) +16:40:52.856 [XNIO-1 task-1] uqvZSMNUS9idb9GcTCkwgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.856 [XNIO-1 task-1] uqvZSMNUS9idb9GcTCkwgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.856 [XNIO-1 task-1] uqvZSMNUS9idb9GcTCkwgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.870 [XNIO-1 task-1] IAUbY9yXQrGcz53F179bpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35826f41-f8ab-4437-909d-ed9a0ecbcbdf +16:40:52.871 [XNIO-1 task-1] IAUbY9yXQrGcz53F179bpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.871 [XNIO-1 task-1] IAUbY9yXQrGcz53F179bpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.871 [XNIO-1 task-1] IAUbY9yXQrGcz53F179bpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35826f41-f8ab-4437-909d-ed9a0ecbcbdf +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.874 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG com.networknt.schema.EnumValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.875 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG com.networknt.schema.EnumValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.875 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.875 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.875 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"412e344e-1460-4fe5-9517-857d880a","clientDesc":"01fc5b0c-4084-4d80-a524-f0c0f3ff088c","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +java.lang.NullPointerException: Null key is not allowed! + at com.hazelcast.map.impl.proxy.MapProxyImpl.get(MapProxyImpl.java:118) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +java.lang.RuntimeException: null + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:111) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:90) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.875 [XNIO-1 task-1] t7GA1uOMQ6OvWkGZT3bXTg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":500,"code":"ERR10010","message":"RUNTIME_EXCEPTION","description":"Unexpected runtime exception","severity":"ERROR"} +16:40:52.880 [XNIO-1 task-1] iL9M5LPaQYq7m-8OZmp_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35826f41-f8ab-4437-909d-ed9a0ecbcbdf +16:40:52.880 [XNIO-1 task-1] iL9M5LPaQYq7m-8OZmp_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.880 [XNIO-1 task-1] iL9M5LPaQYq7m-8OZmp_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.880 [XNIO-1 task-1] iL9M5LPaQYq7m-8OZmp_yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/35826f41-f8ab-4437-909d-ed9a0ecbcbdf +16:40:52.907 [XNIO-1 task-1] oo074x1iQIG13fGZ_KAHzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.907 [XNIO-1 task-1] oo074x1iQIG13fGZ_KAHzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.907 [XNIO-1 task-1] oo074x1iQIG13fGZ_KAHzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.907 [XNIO-1 task-1] oo074x1iQIG13fGZ_KAHzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.955 [XNIO-1 task-1] RDlu4lG0TOeIKOZyklXPPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4cb2b22-042b-41f1-b10b-4c81532f2ca8, base path is set to: null +16:40:52.955 [XNIO-1 task-1] RDlu4lG0TOeIKOZyklXPPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.956 [XNIO-1 task-1] RDlu4lG0TOeIKOZyklXPPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.956 [XNIO-1 task-1] RDlu4lG0TOeIKOZyklXPPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4cb2b22-042b-41f1-b10b-4c81532f2ca8, base path is set to: null +16:40:52.956 [XNIO-1 task-1] RDlu4lG0TOeIKOZyklXPPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cb2b22-042b-41f1-b10b-4c81532f2ca8", "f4cb2b22-042b-41f1-b10b-4c81532f2ca8", clientId) +16:40:52.959 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.959 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG com.networknt.schema.TypeValidator debug - validate( "8b5eac22-c727-49fa-b52e-567ed7b2a4b5", {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG com.networknt.schema.TypeValidator debug - validate( "08561e1d-b301-426d-aef0-c09fb26c", {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"08561e1d-b301-426d-aef0-c09fb26c","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g ERROR c.n.exception.ExceptionHandler handleRequest - Exception: + at com.hazelcast.util.Preconditions.checkNotNull(Preconditions.java:59) + at com.networknt.oauth.client.handler.Oauth2ClientPutHandler.handleRequest(Oauth2ClientPutHandler.java:72) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:52.960 [XNIO-1 task-1] yGU5WMeIQSuhaZp87Kyl-g DEBUG io.undertow.request.error-response debugf - Setting error code 500 for exchange HttpServerExchange{ PUT /oauth2/client} + at io.undertow.server.HttpServerExchange.setStatusCode(HttpServerExchange.java:1473) + at com.networknt.handler.LightHttpHandler.setExchangeStatus(LightHttpHandler.java:73) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:52.962 [XNIO-1 task-1] Iak8FJTJS2KA5ZymYZAmqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4cb2b22-042b-41f1-b10b-4c81532f2ca8, base path is set to: null +16:40:52.962 [XNIO-1 task-1] Iak8FJTJS2KA5ZymYZAmqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.962 [XNIO-1 task-1] Iak8FJTJS2KA5ZymYZAmqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:52.962 [XNIO-1 task-1] Iak8FJTJS2KA5ZymYZAmqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/f4cb2b22-042b-41f1-b10b-4c81532f2ca8, base path is set to: null +16:40:52.962 [XNIO-1 task-1] Iak8FJTJS2KA5ZymYZAmqg DEBUG com.networknt.schema.TypeValidator debug - validate( "f4cb2b22-042b-41f1-b10b-4c81532f2ca8", "f4cb2b22-042b-41f1-b10b-4c81532f2ca8", clientId) +16:40:52.964 [XNIO-1 task-1] a49Bh9d2TXS8dLuJQaKLyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d85045dd-7f2a-4605-a50e-8a187c8261d6 +16:40:52.964 [XNIO-1 task-1] a49Bh9d2TXS8dLuJQaKLyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:52.964 [XNIO-1 task-1] a49Bh9d2TXS8dLuJQaKLyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/{clientId} +16:40:52.964 [XNIO-1 task-1] a49Bh9d2TXS8dLuJQaKLyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client/d85045dd-7f2a-4605-a50e-8a187c8261d6 +16:40:52.966 [XNIO-1 task-1] o3Qap1V4TxKRXFGzfJGWKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.966 [XNIO-1 task-1] o3Qap1V4TxKRXFGzfJGWKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:52.966 [XNIO-1 task-1] o3Qap1V4TxKRXFGzfJGWKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:52.966 [XNIO-1 task-1] o3Qap1V4TxKRXFGzfJGWKA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.071 [XNIO-1 task-1] rlUgXXl8SDC89YhFSp28_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:53.072 [XNIO-1 task-1] rlUgXXl8SDC89YhFSp28_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:53.072 [XNIO-1 task-1] rlUgXXl8SDC89YhFSp28_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client, base path is set to: null +16:40:53.085 [XNIO-1 task-1] VRBxfVgRTya-Rs33L2vGbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/065f59bf-14da-42d8-8342-def4a6fa42fb, base path is set to: null +16:40:53.085 [XNIO-1 task-1] VRBxfVgRTya-Rs33L2vGbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client +16:40:53.085 [XNIO-1 task-1] VRBxfVgRTya-Rs33L2vGbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/client/{clientId} +16:40:53.085 [XNIO-1 task-1] VRBxfVgRTya-Rs33L2vGbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/client/065f59bf-14da-42d8-8342-def4a6fa42fb, base path is set to: null +16:40:53.085 [XNIO-1 task-1] VRBxfVgRTya-Rs33L2vGbA DEBUG com.networknt.schema.TypeValidator debug - validate( "065f59bf-14da-42d8-8342-def4a6fa42fb", "065f59bf-14da-42d8-8342-def4a6fa42fb", clientId) +16:40:53.091 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:53.091 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:53.091 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/client +16:40:53.091 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.092 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8000/authorization", {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.redirectUri) +16:40:53.092 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "8b5eac22-c727-49fa-b52e-567ed7b2a4b5", {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientDesc) +16:40:53.092 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "public", {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientType) +16:40:53.092 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "mobile", {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientProfile) +16:40:53.092 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "b90781f2-b247-41c1-a615-77682259", {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.clientName) +16:40:53.092 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:53.093 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"clientType":"public","clientProfile":"mobile","clientName":"b90781f2-b247-41c1-a615-77682259","clientDesc":"8b5eac22-c727-49fa-b52e-567ed7b2a4b5","scope":"read write","redirectUri":"http://localhost:8000/authorization","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.093 [XNIO-1 task-1] NlGuJCJwSdi_qpKRyQK_Ew ERROR c.n.exception.ExceptionHandler handleRequest - Exception: diff --git a/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-code-1.log b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-code-1.log new file mode 100644 index 0000000..d4e3dfd --- /dev/null +++ b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-code-1.log @@ -0,0 +1,2281 @@ +16:40:53.117 [XNIO-1 task-3] UptUgci2RP2z98thOkE1sg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.117 [XNIO-1 task-3] UptUgci2RP2z98thOkE1sg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.122 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.122 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.123 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.123 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:53.123 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.123 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.123 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.123 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.124 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.131 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.132 [XNIO-1 task-3] 2-CoBDb1R7KTdC5FnW77uA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.139 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.139 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.139 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.139 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:53.140 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.140 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.140 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.140 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.140 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.148 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.148 [XNIO-1 task-3] 2Ylywv1XQgyJ6SPItt8VOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.154 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.155 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.155 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.156 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:53.156 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.156 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.156 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.156 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.157 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.161 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:fcc48c49 +16:40:53.164 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.164 [XNIO-1 task-3] yitI5RSiRJ600yvyjO4qCQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.170 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.176 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.176 [XNIO-1 task-3] ylUl0Y3rQ76QDOxiU7MVtA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.200 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.200 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.200 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.200 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "811f8265-9f40-4fcb-a62c-5aa5aadee998", "811f8265-9f40-4fcb-a62c-5aa5aadee998", client_id) +16:40:53.200 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.200 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.200 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.201 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.201 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.207 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.207 [XNIO-1 task-3] V7H3b1DbTIunfiMQg1WHaQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.213 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.213 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.213 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.213 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG com.networknt.schema.TypeValidator debug - validate( "d7267c49-bc72-4b6a-9ae7-75ad9e8dd704", "d7267c49-bc72-4b6a-9ae7-75ad9e8dd704", client_id) +16:40:53.213 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.213 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.214 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.214 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.214 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.215 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2fd127fb +16:40:53.220 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.220 [XNIO-1 task-3] MFlMkzbLSWycnpnMi1LGNg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.223 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.224 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.224 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.224 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "d7267c49-bc72-4b6a-9ae7-75ad9e8dd704", "d7267c49-bc72-4b6a-9ae7-75ad9e8dd704", client_id) +16:40:53.224 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.224 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.224 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.224 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.225 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.232 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.232 [XNIO-1 task-3] tMsBaYS8TyuTy0mm2Q5a_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.235 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7267c49-bc72-4b6a-9ae7-75ad9e8dd704", "d7267c49-bc72-4b6a-9ae7-75ad9e8dd704", client_id) +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.236 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.240 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e98b35a7 +16:40:53.243 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.243 [XNIO-1 task-3] nbUx02q2RNWnBHAtdSauIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.277 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:23f317cc +16:40:53.278 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:23f317cc +16:40:53.291 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.291 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.291 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.291 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:53.292 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:53.292 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:53.292 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:53.292 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:53.297 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:53.298 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:53.298 [XNIO-1 task-3] 1-78yDO-Tb6CRId4Fzp5MQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Vs8hVmihRt-sIyk8Pl2Jaw +16:40:53.322 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:557247a7 +16:40:53.331 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:46d86eef-fc9a-415d-aaad-197214ca6468 +16:40:53.333 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:46d86eef-fc9a-415d-aaad-197214ca6468 +16:40:53.385 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.386 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.386 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.386 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3275a9a9-2fd7-4c18-ad73-6d94823052ce", "3275a9a9-2fd7-4c18-ad73-6d94823052ce", client_id) +16:40:53.386 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.386 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.386 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.386 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.387 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.394 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.394 [XNIO-1 task-3] nLkFjLADS1aQcjHnVa6YRQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG com.networknt.schema.TypeValidator debug - validate( "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", client_id) +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.402 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.403 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.410 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.410 [XNIO-1 task-3] _0Q_CAoLTo6BwSB80zVAOA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.416 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.416 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.416 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.416 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:53.417 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.417 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.417 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.417 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.417 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.422 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.422 [XNIO-1 task-3] Z891gvArTtyTdUsZexraiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.444 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.444 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.444 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.444 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG com.networknt.schema.TypeValidator debug - validate( "be3f3a23-0186-44a4-b117-3aceac5292c0", "be3f3a23-0186-44a4-b117-3aceac5292c0", client_id) +16:40:53.445 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.445 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.445 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.445 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.449 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0db9d216 +16:40:53.449 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.457 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.458 [XNIO-1 task-3] I5Z0MFycT5GQaR9KqjHsKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.463 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.463 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.463 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.464 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcf693c2-eb5d-45dc-8564-05c66e00db17", "dcf693c2-eb5d-45dc-8564-05c66e00db17", client_id) +16:40:53.464 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.464 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.464 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.464 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.464 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.473 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.473 [XNIO-1 task-3] gXFnu4t0RvqLNdCvg1VquQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.486 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d5002c71-8ee3-446d-8228-d86ab657448a +16:40:53.497 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.497 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.498 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.498 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcf693c2-eb5d-45dc-8564-05c66e00db17", "dcf693c2-eb5d-45dc-8564-05c66e00db17", client_id) +16:40:53.498 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.498 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.498 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.498 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.499 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.508 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3be7bcfe-2225-49cf-8780-b789e0f9398f +16:40:53.511 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:53.511 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:53.511 [XNIO-1 task-3] cOHS6zZdR--pbL9-BtFIZQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k2XI3OFjSzeqpgJung2dBg +16:40:53.517 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.517 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.517 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.518 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:53.518 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:53.518 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:53.518 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:53.518 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:53.529 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:53.530 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:53.530 [XNIO-1 task-3] agZA787xT7iwf1ZYlg2mxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_uIvZ1FeQFOO6dm669tkRw +Jun 28, 2024 4:40:53 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:53.556 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2fd127fb +16:40:53.557 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2fd127fb +16:40:53.559 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:24df1771-365f-457a-8e62-44a44adfce80 +16:40:53.567 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:727acf95-412f-411c-85a2-01a3bcb5d402 + +16:40:53.568 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:727acf95-412f-411c-85a2-01a3bcb5d402 +16:40:53.581 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:727acf95-412f-411c-85a2-01a3bcb5d402 +16:40:53.596 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.596 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.596 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.596 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:53.597 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:53.597 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:53.597 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:53.597 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:53.598 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.598 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:40ae9947-e24c-4ec2-b1d9-dcab0fc615b2 +16:40:53.603 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.603 [XNIO-1 task-3] HXjwNGNETauMNNuVC3Gm-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.604 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:44164e91-18fb-4b0d-a4ba-1aad4eb7da81 +16:40:53.606 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.606 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.607 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.607 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:53.607 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:53.607 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:53.608 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:53.608 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:53.613 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:53.613 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:53.614 [XNIO-1 task-3] bGFrf7YkRbeOMAHRAWwXzQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1Wi9g2E0R7O6LOP-h8WWNg +16:40:53.634 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:23f317cc +16:40:53.635 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.636 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.636 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.637 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e7c58d4f-d444-4fa0-9542-b9a93ea19a7e", "e7c58d4f-d444-4fa0-9542-b9a93ea19a7e", client_id) +16:40:53.637 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.637 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.637 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.637 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.637 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.645 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.645 [XNIO-1 task-3] Pj_-KnzMSMuQhGP8eFY6-Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.650 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.650 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.650 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.650 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b369a15e-5209-427f-9186-bc8952878249", "b369a15e-5209-427f-9186-bc8952878249", client_id) +16:40:53.650 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.651 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.651 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.651 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.651 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.657 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.657 [XNIO-1 task-3] 4juVGKzWTpON-iYbwHJB_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.675 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fcc48c49 +16:40:53.677 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.678 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.678 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.678 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2c70b011-796f-41e2-a37c-07f261732395", "2c70b011-796f-41e2-a37c-07f261732395", client_id) +16:40:53.678 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.678 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.678 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.678 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.679 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.682 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:fcc48c49 +16:40:53.685 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.685 [XNIO-1 task-3] jjiJnPQlQN6Lh-KMI9zekQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.691 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.691 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.691 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.691 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "312060f2-1616-4947-8021-63b9a31f13b0", "312060f2-1616-4947-8021-63b9a31f13b0", client_id) +16:40:53.692 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.692 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.692 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.692 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.692 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.696 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0db9d216 +16:40:53.698 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.698 [XNIO-1 task-3] rpJSA8kcSj2QPTzC93HGXQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.702 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG com.networknt.schema.TypeValidator debug - validate( "312060f2-1616-4947-8021-63b9a31f13b0", "312060f2-1616-4947-8021-63b9a31f13b0", client_id) +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.703 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.709 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.709 [XNIO-1 task-3] pZI7m4XCQ9WjQ6REAZXZvA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.712 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG com.networknt.schema.TypeValidator debug - validate( "312060f2-1616-4947-8021-63b9a31f13b0", "312060f2-1616-4947-8021-63b9a31f13b0", client_id) +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.713 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.718 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.719 [XNIO-1 task-3] gw23iZplT8C1fO7BRp9fkA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.722 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.722 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.722 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.722 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG com.networknt.schema.TypeValidator debug - validate( "296f7b5a-b210-4824-8bc8-0f1fc37252d0", "296f7b5a-b210-4824-8bc8-0f1fc37252d0", client_id) +16:40:53.722 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.723 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.723 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.723 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.724 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.725 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:557247a7 +16:40:53.729 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.729 [XNIO-1 task-3] 0a_uPpKiRGSXJ_XieR6erg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.732 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.732 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.732 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.732 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "296f7b5a-b210-4824-8bc8-0f1fc37252d0", "296f7b5a-b210-4824-8bc8-0f1fc37252d0", client_id) +16:40:53.732 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.733 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.733 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.733 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.733 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.738 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.738 [XNIO-1 task-3] rvD1WNklSouuAF5gStzRtQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.742 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.742 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.742 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.743 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "296f7b5a-b210-4824-8bc8-0f1fc37252d0", "296f7b5a-b210-4824-8bc8-0f1fc37252d0", client_id) +16:40:53.743 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.743 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.743 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.743 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.743 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.748 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.749 [XNIO-1 task-3] Yybj8484QGGsMJAx_sGjiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.881 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.881 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.882 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.882 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:53.882 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.882 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.882 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.882 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.882 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.883 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.883 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.884 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.884 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG com.networknt.schema.TypeValidator debug - validate( "be3f3a23-0186-44a4-b117-3aceac5292c0", "be3f3a23-0186-44a4-b117-3aceac5292c0", client_id) +16:40:53.884 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:53.884 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:53.884 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:53.884 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:53.884 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:53.888 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:53.889 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:53.889 [XNIO-1 task-3] qui_7ZRETYi0V4sJCCSTUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=clEEyky2ToS0-W4AGGD5Tg +16:40:53.892 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.892 [XNIO-1 task-2] oQKn2vj_QbWWgjU6nKXrGg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.895 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.896 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.896 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.896 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:53.896 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.896 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.897 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.897 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.897 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.899 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.899 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.899 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:53.900 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG com.networknt.schema.TypeValidator debug - validate( "be3f3a23-0186-44a4-b117-3aceac5292c0", "be3f3a23-0186-44a4-b117-3aceac5292c0", client_id) +16:40:53.900 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:53.900 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:53.900 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:53.900 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:53.900 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:53.904 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:53.904 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:53.905 [XNIO-1 task-2] -YZMfwpwQOykGqAuD6E-2g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=OjM1yKgJQG6zdcP4O4OEJA +16:40:53.907 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.907 [XNIO-1 task-3] 3UGfzVyLSFmsWkaI21xl2A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG com.networknt.schema.TypeValidator debug - validate( "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", client_id) +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.947 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.948 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.954 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.954 [XNIO-1 task-3] n24jpAV9TQ-ZnxfCwMgO1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.958 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.958 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.959 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.959 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f3aff8e2-4cd3-40e9-849a-1cade735c0b0", "f3aff8e2-4cd3-40e9-849a-1cade735c0b0", client_id) +16:40:53.959 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.959 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.959 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.959 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.960 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.966 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.966 [XNIO-1 task-3] rvA32-jMSB2JRa3SAOkJPQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.971 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.971 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.971 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.971 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG com.networknt.schema.TypeValidator debug - validate( "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", client_id) +16:40:53.971 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.971 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.972 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.972 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.972 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.978 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.978 [XNIO-1 task-3] rPM9Bj1mQLC--zzzDsig4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", client_id) +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:53.981 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:53.988 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:53.988 [XNIO-1 task-3] OSsQ8k-qSvS6XXVfsjelPw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.001 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed8b3df1 +16:40:54.002 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed8b3df1 +16:40:54.011 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5a190c55-daa5-4bfa-b2a9-8f98983cc79b +16:40:54.043 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ed8b3df1 +16:40:54.153 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.153 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.153 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.154 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG com.networknt.schema.TypeValidator debug - validate( "P2rVKuNZ9k33Nfva5VafbLma0KqPyxW51ht1iACqEAU", "P2rVKuNZ9k33Nfva5VafbLma0KqPyxW51ht1iACqEAU", code_challenge) +16:40:54.154 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.155 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.155 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.155 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.155 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.155 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.163 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.163 [XNIO-1 task-3] T28kw1lNSw2_FYws1SXpdg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.168 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.168 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.168 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.168 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG com.networknt.schema.TypeValidator debug - validate( "8-lmTWHYp6sxyJRB3VeDOvA_3XEoTCXIBV12sLbsqX0", "8-lmTWHYp6sxyJRB3VeDOvA_3XEoTCXIBV12sLbsqX0", code_challenge) +16:40:54.168 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.169 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.169 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.169 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.169 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.170 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.175 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.175 [XNIO-1 task-3] BdfZDTf-SneYTPE3KRgs3g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.177 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.177 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.177 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.178 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "cdbd8b91-bb9e-4b4d-9a49-78e2d02ab98f", "cdbd8b91-bb9e-4b4d-9a49-78e2d02ab98f", client_id) +16:40:54.178 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.178 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.178 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.178 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.179 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.182 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.182 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.182 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.182 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG com.networknt.schema.TypeValidator debug - validate( "be3f3a23-0186-44a4-b117-3aceac5292c0", "be3f3a23-0186-44a4-b117-3aceac5292c0", client_id) +16:40:54.182 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.182 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.183 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.183 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.183 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.188 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.188 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.189 [XNIO-1 task-3] _AUO49D7T9qJv3QHd8N5Ig DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=8GWEbBheQcuEs9LJ8MdGlQ +16:40:54.190 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.190 [XNIO-1 task-2] QEF-NFCrRyumFVY6qqsd4g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.198 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.198 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.198 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.198 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG com.networknt.schema.TypeValidator debug - validate( "ycxIqmUJ2cnrmA0mCjkkHjixVb17elRQYrIosPL5gEE", "ycxIqmUJ2cnrmA0mCjkkHjixVb17elRQYrIosPL5gEE", code_challenge) +16:40:54.199 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.199 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.199 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.199 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.199 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.199 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:345537c3 +16:40:54.202 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:345537c3 +16:40:54.210 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.210 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.211 [XNIO-1 task-2] 5qtVD6J6QyuYH_VJ6wRLVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ofKwjKoDQai3c2NWAh8KHQ +16:40:54.217 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.218 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.218 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.218 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG com.networknt.schema.TypeValidator debug - validate( "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", client_id) +16:40:54.219 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.219 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.219 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.219 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.219 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.223 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:331a973d +16:40:54.225 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:331a973d +16:40:54.227 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.228 [XNIO-1 task-2] ed3yQ7PFS1SiNFPCgFD5qg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.232 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:991d9807-def2-4f8d-87f7-56ba8bf78a43 +16:40:54.233 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:991d9807-def2-4f8d-87f7-56ba8bf78a43 +16:40:54.235 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.235 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.235 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.235 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG com.networknt.schema.TypeValidator debug - validate( "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", client_id) +16:40:54.235 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.235 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.236 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.236 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.236 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.241 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.242 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.243 [XNIO-1 task-2] J6WHO8VwRBC7fTpLCZzjOw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=7LltaY7_TMed4psdT1Tmeg +16:40:54.250 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.250 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.250 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.250 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "be3f3a23-0186-44a4-b117-3aceac5292c0", "be3f3a23-0186-44a4-b117-3aceac5292c0", client_id) +16:40:54.251 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:54.251 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.251 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +16:40:54.251 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +16:40:54.251 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.251 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.255 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ed8b3df1 +16:40:54.255 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ed8b3df1 + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +16:40:54.257 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.257 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) +16:40:54.257 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.257 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.261 [XNIO-1 task-2] SoQJAJmcQD6Jrna5q635_Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UMzl7cUfRyKLtVj0b0UCMw +16:40:54.264 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +16:40:54.264 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.264 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) +16:40:54.264 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG com.networknt.schema.TypeValidator debug - validate( "jC-DHPIJRL2_32bGo1xWvb_zNc-OXYkBIbilYQAIqP8", "jC-DHPIJRL2_32bGo1xWvb_zNc-OXYkBIbilYQAIqP8", code_challenge) +16:40:54.264 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG com.networknt.schema.TypeValidator debug - validate( "be3f3a23-0186-44a4-b117-3aceac5292c0", "be3f3a23-0186-44a4-b117-3aceac5292c0", client_id) +16:40:54.264 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) + +16:40:54.265 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.265 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +16:40:54.265 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.265 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:40:54.265 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.265 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.265 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +16:40:54.271 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) +16:40:54.271 [XNIO-1 task-2] 1LzrgLyeT7i1DJEZ7UhcHg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dT9olqtfRhe44VidkEtyFw +16:40:54.276 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.276 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:40:54.276 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.277 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG com.networknt.schema.TypeValidator debug - validate( "A_o6AawkAFzubu8Oqx6O4BZffwmrW_Z4dEPwBdoJli4", "A_o6AawkAFzubu8Oqx6O4BZffwmrW_Z4dEPwBdoJli4", code_challenge) +16:40:54.277 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.277 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.277 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.277 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) +16:40:54.277 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.277 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.286 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.286 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.286 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.287 [XNIO-1 task-2] kMFSsa9zTB-832SxadVGIA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LIJSKx2fQSGFrPHNr8bW0w +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG com.networknt.schema.TypeValidator debug - validate( "blGI-eJLLqqQFs93rAgjAF4eZI3qeBuYm0_qvjMq6hA", "blGI-eJLLqqQFs93rAgjAF4eZI3qeBuYm0_qvjMq6hA", code_challenge) +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG com.networknt.schema.TypeValidator debug - validate( "6f4b9fba-f2b4-49c9-add6-9b4883bd5f38", "6f4b9fba-f2b4-49c9-add6-9b4883bd5f38", client_id) + +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.293 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.294 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.299 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.299 [XNIO-1 task-2] XcfsOCR1Q7OXJSOALEhWCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.316 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:893f8304-2277-4788-b9ce-27002611f099 +16:40:54.317 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:893f8304-2277-4788-b9ce-27002611f099 +16:40:54.336 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:893f8304-2277-4788-b9ce-27002611f099 +16:40:54.339 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.346 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:54.348 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.348 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.348 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.348 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG com.networknt.schema.TypeValidator debug - validate( "b43a6255-268e-49ac-8f00-ea1a8d785057", "b43a6255-268e-49ac-8f00-ea1a8d785057", client_id) +16:40:54.348 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.348 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.348 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.349 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.349 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.351 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:893f8304-2277-4788-b9ce-27002611f099 +16:40:54.353 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.354 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.354 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.354 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.354 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.354 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.354 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.354 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.354 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.354 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.355 [XNIO-1 task-2] c6amsIbbSiWh3HeZvl2CXA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4IVL67VdR7OPHjrpFoi9JA +16:40:54.361 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.361 [XNIO-1 task-3] yPu6ooq4R-uNQCIB-7hQ-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.371 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:345537c3 +16:40:54.380 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.380 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.380 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.380 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "O6KJEb96ZgPj6rtTn44-TPaYisbFhbng2aOZ-AEhI5o", "O6KJEb96ZgPj6rtTn44-TPaYisbFhbng2aOZ-AEhI5o", code_challenge) +16:40:54.380 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.380 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.380 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.381 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.381 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.381 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.387 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.387 [XNIO-1 task-3] dgUp-Ya-RhK_vMwM4cNJCg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.392 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:dcf693c2-eb5d-45dc-8564-05c66e00db17 +16:40:54.392 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.392 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.392 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.392 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c92bdc0-9b8f-4994-a03c-3388a99e4827", "5c92bdc0-9b8f-4994-a03c-3388a99e4827", client_id) +16:40:54.392 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.392 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.393 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.393 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.393 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.395 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:54.395 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.395 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.395 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.395 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.395 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.396 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.396 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.396 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.398 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.399 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.399 [XNIO-1 task-3] vDV-8lvFRR6Ru5UybrTYmA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=k_F9zWvZRYqImF2Rd3Pzfg +16:40:54.402 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.402 [XNIO-1 task-2] V4UChBpHSs2roxdNKi-Hzw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG com.networknt.schema.TypeValidator debug - validate( "pcitjvHhmiyKLrZFjd78z0IZW0q7gNnlpqH3aKJPVwI", "pcitjvHhmiyKLrZFjd78z0IZW0q7gNnlpqH3aKJPVwI", code_challenge) +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.406 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.407 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.412 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.412 [XNIO-1 task-2] LHZRMrMbSzydPNEsvvJW9w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.418 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.418 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.418 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.419 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG com.networknt.schema.TypeValidator debug - validate( "OOnclHKdj4Bv4fq2FpaN2al-CRIW28VtUA4CXYPSsQU", "OOnclHKdj4Bv4fq2FpaN2al-CRIW28VtUA4CXYPSsQU", code_challenge) +16:40:54.419 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.419 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.419 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.419 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.419 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.419 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.424 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.424 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.424 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.424 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.424 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.425 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.425 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.425 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.426 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.426 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.426 [XNIO-1 task-2] fD8pZBmHTO2Ln_Rv4iDrlA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JmoS1j0QQyWAfkPWxBqklA +16:40:54.430 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.430 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.430 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.430 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG com.networknt.schema.TypeValidator debug - validate( "b369a15e-5209-427f-9186-bc8952878249", "b369a15e-5209-427f-9186-bc8952878249", client_id) +16:40:54.430 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.431 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.431 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.431 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.431 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.431 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.431 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.431 [XNIO-1 task-3] QvC2EpYSTJOVIld-BMu0PA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=9gfazYV9SQqIrjHApecSaQ +16:40:54.439 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.439 [XNIO-1 task-2] g3XFwiKAQFK-mCUxgNimIw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG com.networknt.schema.TypeValidator debug - validate( "A5zd0PdJmbik_9I7barQ2h7BblYvIAcGSV099hnrrLM", "A5zd0PdJmbik_9I7barQ2h7BblYvIAcGSV099hnrrLM", code_challenge) +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.444 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.453 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.453 [XNIO-1 task-2] exuvStDyToWFjqXj26VT9g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.480 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.480 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.480 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.481 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG com.networknt.schema.TypeValidator debug - validate( "GrneIWIQU_KZkQOc60AqUCBe1rpYexOYwJewohnWNKE", "GrneIWIQU_KZkQOc60AqUCBe1rpYexOYwJewohnWNKE", code_challenge) +16:40:54.481 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.481 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.481 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.481 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.481 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.481 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.487 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.487 [XNIO-1 task-2] O22r-GQ-Q4qJfFgEzM3Fxg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.493 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.493 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.494 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.494 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG com.networknt.schema.TypeValidator debug - validate( "w7x0e7dH7lpgYI1WHELQfz1pRag9KteMuXkdlvuz4WY", "w7x0e7dH7lpgYI1WHELQfz1pRag9KteMuXkdlvuz4WY", code_challenge) +16:40:54.495 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.495 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.495 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.495 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.495 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.497 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.501 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.501 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.502 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.502 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.502 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.502 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.502 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.502 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.502 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.502 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.503 [XNIO-1 task-2] 0cyCnMZnRrau_7UYKYweVw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=rAinpvKgRWusQMHf9_lAOQ +16:40:54.510 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.510 [XNIO-1 task-3] W7_pcgr-QUGSD-emaZx4jw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.515 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:331a973d +16:40:54.528 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.529 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.529 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.529 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "WQZoEbQp4JEU6NSclMaYtm7CJJHwPEZ3VpfMdaJGK5k", "WQZoEbQp4JEU6NSclMaYtm7CJJHwPEZ3VpfMdaJGK5k", code_challenge) +16:40:54.529 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.529 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.529 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.529 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.530 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.530 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.534 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.535 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.536 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore load - Load:951e34c2-a754-4bd0-b90e-ca3591c0b6dd +16:40:54.540 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.540 [XNIO-1 task-3] OmCZd3mRRmWv6xu7Z71-Jw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.542 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.542 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.542 [XNIO-1 task-2] DNsxIQrlTwqEZJnpaW-Ytg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=N3aMa0O4SSSHFX1VCGeoIw +16:40:54.557 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5323d527 +16:40:54.558 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5323d527 +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "8cf9c648-76a2-4d02-9dd0-7f80730da15e", "8cf9c648-76a2-4d02-9dd0-7f80730da15e", client_id) +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.561 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.567 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.567 [XNIO-1 task-2] Xz-iRMl6Tdi11laBV0l0KA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.567 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.575 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4622254b +16:40:54.577 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4622254b +16:40:54.588 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.589 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.589 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.589 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.589 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.589 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.589 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.589 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.594 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.594 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.594 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:5323d527 +16:40:54.597 [XNIO-1 task-2] IWzK3eMhSK2Dics2wqLzGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=x-i9DaxVTLaPQxT7qiqTaQ +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.624 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.632 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.632 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.633 [XNIO-1 task-2] ne1HgTyaTiu5ysflQ00YXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Gnwk_ScmTsGKoNMUbaHgSg +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.640 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.643 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.644 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.644 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.644 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Dhw67hXZ6_uHelOewezJFWrbEnnJpL14ggRLORW9rQM", "Dhw67hXZ6_uHelOewezJFWrbEnnJpL14ggRLORW9rQM", code_challenge) +16:40:54.644 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.644 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.644 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.645 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.645 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.645 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.647 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.647 [XNIO-1 task-2] MKMeOnbXROiZxiwpMnuWUA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.650 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.650 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.651 [XNIO-1 task-3] b5gDUG9rTAiUCUrxXelKHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=130bt5OgR2a6zdxaQ_Bhsg +16:40:54.655 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.655 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.655 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.655 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.655 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.656 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.656 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.657 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.663 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.663 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.664 [XNIO-1 task-3] Z6BeV7boT2eoi3onUKj34w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=dxLATMlSTTC5ucgqZyLFeg +16:40:54.674 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.674 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.675 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.675 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:54.675 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.675 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.675 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.675 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.675 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.683 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.683 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.683 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.684 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG com.networknt.schema.TypeValidator debug - validate( "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", client_id) +16:40:54.684 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.684 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.684 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.684 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.684 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.685 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.685 [XNIO-1 task-3] u5T9MLNMTE6JXtrzCqeV7g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.688 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG com.networknt.schema.TypeValidator debug - validate( "UlkxscXmnO1Omo9iVRqyqXQJrdC6cqyVGpiwQdhrFgQ", "UlkxscXmnO1Omo9iVRqyqXQJrdC6cqyVGpiwQdhrFgQ", code_challenge) +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.689 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.690 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.691 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.691 [XNIO-1 task-2] -nIAxVJmSpyknbPf9d5bXg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.694 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.694 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.694 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.694 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", client_id) +16:40:54.695 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.695 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.695 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.695 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.695 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.696 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.696 [XNIO-1 task-3] PBNvvb5nTWalHWgGIJYd_g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.702 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.702 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.703 [XNIO-1 task-2] rLPBXIU4RRmoFwI0IeXOqQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=c4w_6lONQGCB-VF4tYq8hA +16:40:54.708 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.708 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.708 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.708 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.709 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.709 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.709 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.709 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.715 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.715 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.718 [XNIO-1 task-2] 5-lpg4jUTZOppbzPBdmxMQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=HnKRPhnxSZS3YJt9YIxZRw +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.724 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.728 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.728 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.728 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.729 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "gas6FIFmVpkupmzImgPj0JR7ce0eNdAm0k46HKPyGK4", "gas6FIFmVpkupmzImgPj0JR7ce0eNdAm0k46HKPyGK4", code_challenge) +16:40:54.729 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.729 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.729 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.729 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.729 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.729 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.730 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.730 [XNIO-1 task-2] 4VM8UfHiT7eOdPK3IaRWVQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.735 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:685286e7 +16:40:54.736 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:685286e7 +16:40:54.736 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.736 [XNIO-1 task-3] r5Q6hySNQuePxwETKlWx2Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.741 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4622254b +16:40:54.743 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.743 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.743 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.743 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG com.networknt.schema.TypeValidator debug - validate( "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", "0ebe81c7-ebd7-444c-8e0a-7b9e87b81601", client_id) +16:40:54.743 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.744 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.744 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.744 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.744 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.749 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.749 [XNIO-1 task-3] D3lIAZ5ERtCxvv06G7TkHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.751 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:685286e7 +16:40:54.756 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.756 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.756 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.756 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.756 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.757 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.757 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.757 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.763 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.763 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.765 [XNIO-1 task-3] TVLMYx9jS1GFmMmEJSHE0g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=JUFhDNGVQFOt0kJCRWi04A +16:40:54.776 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.776 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.776 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.777 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG com.networknt.schema.TypeValidator debug - validate( "e03bce84-82f1-42f8-9702-b536d693ccbd", "e03bce84-82f1-42f8-9702-b536d693ccbd", client_id) +16:40:54.777 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.777 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.777 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.777 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.777 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.783 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.783 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.784 [XNIO-1 task-3] sY0TFlhARb65Q0IfR3JPbA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ih2EFlrYRf2viDDBGqecvQ +16:40:54.784 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.785 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.785 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.785 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.785 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.785 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.785 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.785 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.787 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6gHwRSA-nC4MCtQ4SLCvRzUoFQZEZ-RGgVptf_cUyKg", "6gHwRSA-nC4MCtQ4SLCvRzUoFQZEZ-RGgVptf_cUyKg", code_challenge) +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.788 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.791 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.791 [XNIO-1 task-2] EpTh0RUqTmmIxf3wzxpRpQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.794 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.794 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.795 [XNIO-1 task-3] m8QerdzzTButYUgaRcJSHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vWwNPkaxQRq-ouZoEUf4iQ +16:40:54.799 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.799 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.799 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.800 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7e44003-d5ea-475a-b99d-8f9e3664f3dd", "a7e44003-d5ea-475a-b99d-8f9e3664f3dd", client_id) +16:40:54.800 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.800 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.800 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.800 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.800 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.805 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.806 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.806 [XNIO-1 task-3] q9q_oBxLTEaTkY5dGxpfTw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=g0SsomoWSWK4voBTaVCaHA +16:40:54.855 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.855 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.856 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.856 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG com.networknt.schema.TypeValidator debug - validate( "a7e44003-d5ea-475a-b99d-8f9e3664f3dd", "a7e44003-d5ea-475a-b99d-8f9e3664f3dd", client_id) +16:40:54.856 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.856 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.856 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.856 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.856 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.862 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.862 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.863 [XNIO-1 task-3] Xc68QXLuRYiUbWVoFGmDaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=DSME4CPPSsiybPQ_rgfb-Q +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG com.networknt.schema.TypeValidator debug - validate( "a7e44003-d5ea-475a-b99d-8f9e3664f3dd", "a7e44003-d5ea-475a-b99d-8f9e3664f3dd", client_id) +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:54.867 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:54.873 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:54.873 [XNIO-1 task-3] iE1rxWkhR9CcJmQHRff0cw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:54.874 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:92d6df7d-f4f4-4c1a-bd53-9d6ef538095a +16:40:54.874 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:92d6df7d-f4f4-4c1a-bd53-9d6ef538095a +16:40:54.876 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.876 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.876 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.877 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "RH8F0hHO1Nt53vf1pRHkTa5IzxKTmXjCakBosnm9TTk", "RH8F0hHO1Nt53vf1pRHkTa5IzxKTmXjCakBosnm9TTk", code_challenge) +16:40:54.877 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:54.877 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.877 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.877 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.877 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.877 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.882 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.882 [XNIO-1 task-3] X78ABO1bQvCoE4TrCb-3uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:54.915 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.915 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:54.915 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:54.916 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG com.networknt.schema.TypeValidator debug - validate( "738c1553-873f-4b4d-a8d6-d4b5db4ef175", "738c1553-873f-4b4d-a8d6-d4b5db4ef175", client_id) +16:40:54.916 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:54.917 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:54.917 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:54.917 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:54.918 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:54.924 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:54.924 [XNIO-1 task-3] 6UGUVnO3RG2iBW3IiZ0_AA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.066 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ed8b3df1 +16:40:55.093 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5c5662ec-da84-4e9f-a310-f17bf5e65fb2 +16:40:55.097 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:04d5d5d5-d47c-43e9-91ea-0f1736bbb9f2 +16:40:55.098 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:04d5d5d5-d47c-43e9-91ea-0f1736bbb9f2 +16:40:55.099 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG com.networknt.schema.TypeValidator debug - validate( "40ae9947-e24c-4ec2-b1d9-dcab0fc615b2", "40ae9947-e24c-4ec2-b1d9-dcab0fc615b2", client_id) +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.100 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.108 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.109 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.110 [XNIO-1 task-3] H77M6zSDT2KkDbQguTcnXw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=SPIHbGWMRv2gUlTCDmoDPw +16:40:55.113 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "40ae9947-e24c-4ec2-b1d9-dcab0fc615b2", "40ae9947-e24c-4ec2-b1d9-dcab0fc615b2", client_id) +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.114 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.119 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:04d5d5d5-d47c-43e9-91ea-0f1736bbb9f2 +16:40:55.120 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.120 [XNIO-1 task-3] p2l78u6xR4iVRYjhgSoIlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.124 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9190e40d-600b-4589-8581-bc39f009f245 +16:40:55.125 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9190e40d-600b-4589-8581-bc39f009f245 +16:40:55.126 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.126 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.126 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.126 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "40ae9947-e24c-4ec2-b1d9-dcab0fc615b2", "40ae9947-e24c-4ec2-b1d9-dcab0fc615b2", client_id) +16:40:55.126 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.127 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.127 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.127 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.127 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.134 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.134 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.135 [XNIO-1 task-3] GTEyXJPARyqmCsFcZEhGlQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=H3blPPycRcaYkgxLPSF5Nw +16:40:55.136 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.136 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.136 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.136 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.136 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.138 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.138 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.138 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.144 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.144 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.145 [XNIO-1 task-3] CqfSfnGNQR-9OKANLt7eEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=LIhKz4rlRjKnR--NR12liQ +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.150 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.152 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a863457e +16:40:55.156 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.156 [XNIO-1 task-3] rjO0AFEZSiajKjvIZnY6Qw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.159 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.159 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.159 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.159 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG com.networknt.schema.TypeValidator debug - validate( "z4tObfHMOu0gtcnIEcA4vIlGAGZwSkmZ2eWWahcur0M", "z4tObfHMOu0gtcnIEcA4vIlGAGZwSkmZ2eWWahcur0M", code_challenge) +16:40:55.160 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.160 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.160 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.160 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.160 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.160 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.164 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.164 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.164 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.164 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.164 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.165 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.165 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.165 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.166 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.166 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.170 [XNIO-1 task-3] iUH_dv1MTW-5byEGFVjQdw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Jsadqg0FQlGYPukClmz62Q +16:40:55.170 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.170 [XNIO-1 task-2] sgA6d0MHSwSIMviJv2w-kA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.177 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.178 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.179 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a863457e +16:40:55.185 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.185 [XNIO-1 task-2] RZIR8r2RRr6PM1vcUykiDQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.206 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a863457e +16:40:55.213 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.213 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.213 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.214 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fc4dcf26-05b1-4c44-a8b0-3ac84194ad88", "fc4dcf26-05b1-4c44-a8b0-3ac84194ad88", client_id) +16:40:55.214 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.214 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.214 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.214 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.215 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.217 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.217 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.217 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.217 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:55.217 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.218 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.218 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.218 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.218 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.222 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.222 [XNIO-1 task-2] C2ThqINzQ4SAvyC6bPVZuQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.223 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.223 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.224 [XNIO-1 task-3] 3X2n9ca3QfCxqu1ggZD1uQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=CGEMGY8oTJG0Xv9JHPA5Og +16:40:55.228 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.228 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.228 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.228 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.229 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.229 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.229 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.229 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.231 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f2048505 +16:40:55.233 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:f2048505 +16:40:55.234 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.235 [XNIO-1 task-3] Q2L-ntLBSTq7jVmapI4YIQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.250 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cd8581e5-3568-474b-8d0b-aba84e305564 +16:40:55.250 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:f2048505 +16:40:55.257 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:f2048505 +16:40:55.270 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.270 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.270 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.270 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7-ro-o7KithaIxc7g4NLS8BFi4aUAh0LcAmT4_kjLw4", "7-ro-o7KithaIxc7g4NLS8BFi4aUAh0LcAmT4_kjLw4", code_challenge) +16:40:55.271 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.271 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.271 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.271 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.271 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.272 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.277 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.277 [XNIO-1 task-3] uoRZusLtQAK4uYVBTu1_4Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.289 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.289 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.289 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.289 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:55.289 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.290 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.290 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.290 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.290 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.295 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.295 [XNIO-1 task-3] s4kPMvWHQUmZSAH0vV3avg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.299 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.299 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.299 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.300 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:55.300 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.300 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.300 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.300 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.300 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.303 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.303 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.303 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.304 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7311f205-10e5-4d7d-b2d5-8557c2a8ce3a", "7311f205-10e5-4d7d-b2d5-8557c2a8ce3a", client_id) +16:40:55.304 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.304 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.304 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.304 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.305 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.306 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.306 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.307 [XNIO-1 task-3] H1EcCMX8RT-MQakP2EXODA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=A9t-CMpgRPaPk3g-KHubxg +16:40:55.311 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.311 [XNIO-1 task-2] wSUYwBm3S4yj2Kd_n59joQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.313 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.314 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.314 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.314 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:55.314 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.314 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.314 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.314 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.315 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.317 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.318 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.318 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.318 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:55.318 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.318 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.319 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.319 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.319 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.325 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.325 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.326 [XNIO-1 task-2] PJdWHyoxRaaWtxOFsiktaA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0dgQ3Bl1Se6rRDinflCPlQ +16:40:55.327 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.327 [XNIO-1 task-3] IHau2IntTzGoEqjSdrdkfg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.330 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0c4b1505 +16:40:55.331 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0c4b1505 +16:40:55.337 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.337 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.337 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.338 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "48004a49-76f3-447b-912b-13c96e60b834", "48004a49-76f3-447b-912b-13c96e60b834", client_id) +16:40:55.338 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.338 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.338 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.338 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.338 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.345 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.345 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9b237e3d +16:40:55.345 [XNIO-1 task-3] 2D6CGeHKTMOL1U419tlEmQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.346 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:9b237e3d +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "qURDytfV4yzE46Iu69bLbjDVtbpodvecTMMQhCiwpHI", "qURDytfV4yzE46Iu69bLbjDVtbpodvecTMMQhCiwpHI", code_challenge) +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.352 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.354 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.356 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.356 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.356 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.356 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.356 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.357 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.357 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.357 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.360 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.360 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.360 [XNIO-1 task-3] BSvYJCPcTPWaOMiwzf1GwQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=lN2y-jg1Q3iCbXxiXtKKAQ +16:40:55.363 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.363 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.363 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.363 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG com.networknt.schema.TypeValidator debug - validate( "0hSpwJ9iixi1wWMbbOhUlcKIg7AYkR0KvJFpaYccZQE", "0hSpwJ9iixi1wWMbbOhUlcKIg7AYkR0KvJFpaYccZQE", code_challenge) +16:40:55.363 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.363 [XNIO-1 task-2] b1bqoUQkRL2cFFePudGhNQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +Jun 28, 2024 4:40:56 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.10]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:40:55.364 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +16:40:55.364 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +16:40:55.369 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) +16:40:55.371 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9f9ce33 +16:40:55.372 [XNIO-1 task-3] 87CtBGrBSluv_S8SA4XkKw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Ja9_GD0iS9qcr5yFZHmq9A + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) +16:40:55.384 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +16:40:55.385 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.385 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:40:55.385 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.385 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.385 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.394 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.394 [XNIO-1 task-3] Twz1FFpuQUumEuKiQUbmtg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.396 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9f9ce33 +16:40:55.421 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9f9ce33 +16:40:55.447 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.447 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.447 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.447 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG com.networknt.schema.TypeValidator debug - validate( "3275a9a9-2fd7-4c18-ad73-6d94823052ce", "3275a9a9-2fd7-4c18-ad73-6d94823052ce", client_id) +16:40:55.448 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.448 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.448 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.448 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.448 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.449 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:9b237e3d +16:40:55.452 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.452 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.452 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.453 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG com.networknt.schema.TypeValidator debug - validate( "ec0872cf-82ca-4d55-b3ae-b006a005e63c", "ec0872cf-82ca-4d55-b3ae-b006a005e63c", client_id) +16:40:55.453 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.453 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.453 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.453 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.453 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.455 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.455 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.455 [XNIO-1 task-3] peHU6UMUR4Ggyszj8DmqxA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cMxncTVFSdWCNFAzjkJdvw +16:40:55.458 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.458 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.458 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.458 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.458 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.458 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.458 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.459 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.461 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.461 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.462 [XNIO-1 task-2] cmmjR0tST2yaaT0RBlfgvA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=EvZ2z4NqR1Cmc8iUaZkLPA +16:40:55.464 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.464 [XNIO-1 task-3] mR_XZU7eQvyNr55mhOe4NA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.467 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.467 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.467 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.467 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG com.networknt.schema.TypeValidator debug - validate( "8eN6OkJUQO1rPvIMd631ZvYl1tUBhOhTKTqfuYRQGck", "8eN6OkJUQO1rPvIMd631ZvYl1tUBhOhTKTqfuYRQGck", code_challenge) +16:40:55.467 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.467 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.467 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.468 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.468 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.470 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.470 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.470 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.470 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.470 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.472 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.472 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.473 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.474 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.475 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:e9f9ce33 +16:40:55.483 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.483 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.484 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.484 [XNIO-1 task-3] bnjW6XcYSOCrm7WoDXyb-w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=alD-qY23QtyTBqWfDbxcaQ +16:40:55.484 [XNIO-1 task-2] GdDXCHKMQ5CEAGzOvCLxPA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.490 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:0c4b1505 +16:40:55.497 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.497 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.498 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.498 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3be7bcfe-2225-49cf-8780-b789e0f9398f", "3be7bcfe-2225-49cf-8780-b789e0f9398f", client_id) +16:40:55.498 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.498 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.498 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.498 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.498 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.503 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.503 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.508 [XNIO-1 task-2] wBFAxvhaTs2opQAILTSBsQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=pLJaKClFQFaTBtcAQe2DGg +16:40:55.510 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:8b7b2fde-3636-44f5-ad42-b75952342252 +16:40:55.512 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.512 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.512 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.512 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG com.networknt.schema.TypeValidator debug - validate( "b43a6255-268e-49ac-8f00-ea1a8d785057", "b43a6255-268e-49ac-8f00-ea1a8d785057", client_id) +16:40:55.513 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.513 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.513 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.513 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.513 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.519 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.519 [XNIO-1 task-2] WlYG8OacSZS-GofImEbRlw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.521 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.521 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.521 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.521 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG com.networknt.schema.TypeValidator debug - validate( "wh0tiw2k-foL4vbiYD9FQKWmrw76NiBEkUix2NjIcA4", "wh0tiw2k-foL4vbiYD9FQKWmrw76NiBEkUix2NjIcA4", code_challenge) +16:40:55.521 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.522 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.522 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.522 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.522 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.523 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.527 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:331a973d +16:40:55.528 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e9f9ce33 +16:40:55.529 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.529 [XNIO-1 task-2] -h3gefqdQLSpnZULRj8CGw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG com.networknt.schema.TypeValidator debug - validate( "hdD5hIzkqDz3gU_vJDIQtGi5IY966GdiJXh1oP4qN94", "hdD5hIzkqDz3gU_vJDIQtGi5IY966GdiJXh1oP4qN94", code_challenge) +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.536 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.537 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.543 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.543 [XNIO-1 task-2] YPscL4t-R8ySXdElv8rbzA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.546 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8f7410e +16:40:55.546 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.546 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.547 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.547 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a8f7410e +16:40:55.547 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.547 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.547 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.547 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.547 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.551 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG com.networknt.schema.TypeValidator debug - validate( "SuVkX7vfIJa6RIH59gcmn_AA7qWyAc-vBbYsIrfcA2E", "SuVkX7vfIJa6RIH59gcmn_AA7qWyAc-vBbYsIrfcA2E", code_challenge) +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.552 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.553 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.554 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.554 [XNIO-1 task-2] ATi93FM9QWmeFcO8tXUNEQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.558 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.558 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.558 [XNIO-1 task-3] OucvpAOCRpSn4CECc5AORQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=q4eR-oA8SrmIaocW-skUIQ +16:40:55.562 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.562 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.562 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.563 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.563 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.563 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.563 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.563 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.565 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.565 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.565 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.565 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "C7rCS63vzf2vW0vAdzisPX5sDUPSKsJPqrhKb0yDux4", "C7rCS63vzf2vW0vAdzisPX5sDUPSKsJPqrhKb0yDux4", code_challenge) +16:40:55.566 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.566 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.566 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.566 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.566 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.566 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.577 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.577 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.578 [XNIO-1 task-3] f4JwIGT4TxC2Qfg7ro1bmw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=vZNVZK4gSs2nkwKToSOAFw +16:40:55.578 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.579 [XNIO-1 task-2] SJhL2z9NTMugoC0yQvk8zQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.582 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.588 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.588 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.589 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a8f7410e +16:40:55.588 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b43a6255-268e-49ac-8f00-ea1a8d785057", "b43a6255-268e-49ac-8f00-ea1a8d785057", client_id) +16:40:55.589 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.589 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.589 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.589 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.590 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.592 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.592 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.592 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.592 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG com.networknt.schema.TypeValidator debug - validate( "9279cc8c-c1fb-4ef1-bae2-2eb0692172a9", "9279cc8c-c1fb-4ef1-bae2-2eb0692172a9", client_id) +16:40:55.593 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.593 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.593 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.593 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.593 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.597 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.597 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.598 [XNIO-1 task-2] NFssY3j8QRKo9zItCOMpUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=ryYJtWTjTDay_E0rfJ0HtA +16:40:55.607 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.607 [XNIO-1 task-3] dxEk3WSzR9mDC6h5DhLilg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.615 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.616 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.616 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.616 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG com.networknt.schema.TypeValidator debug - validate( "R10dMwXIj1pJchS_zxCYqF4KXLqfsXdpOlsJ1rI04No", "R10dMwXIj1pJchS_zxCYqF4KXLqfsXdpOlsJ1rI04No", code_challenge) +16:40:55.616 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.616 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.616 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.617 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.617 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.617 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.619 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:464346ac +16:40:55.623 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.623 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.624 [XNIO-1 task-3] mt3CewVRRn6KYJTEcr6ffw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=1GyLJnxwTNiYA4xRaoxzPw +16:40:55.625 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.626 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.626 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.626 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.626 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.626 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.626 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.626 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.631 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.631 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.632 [XNIO-1 task-3] 1imDdTqRS1Cc9Ym6OUgIqA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=oH2kuLPCRCmQtHP0Fq97aQ +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.640 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.647 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.648 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.648 [XNIO-1 task-3] 9WRmp-AxR-GxgB4sXUB4_A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TH2fbh8pRoeUOYt1BQfmuw +16:40:55.655 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.655 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.655 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.656 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.656 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.656 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.656 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.656 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.659 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a8f7410e +16:40:55.663 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.663 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.664 [XNIO-1 task-3] QUX80V5vSVGMzUapEwzP4w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Jsx6v_hzSIiAa3gEOwLCbA +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.688 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.694 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.694 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.696 [XNIO-1 task-3] 4zOxCxjfSum6PFyzfQ3WYw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tMjQAwhwSWWVddQPhsH0Bw +16:40:55.702 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.702 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.702 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.702 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.702 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.703 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.703 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.703 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.705 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a8f7410e +16:40:55.708 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.708 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.709 [XNIO-1 task-3] -yJNHLVbSqeGgJgaykf4zg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=e6-LlW7eTAmbWa8izK6dQQ +16:40:55.716 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.716 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.717 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.717 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG com.networknt.schema.TypeValidator debug - validate( "7311f205-10e5-4d7d-b2d5-8557c2a8ce3a", "7311f205-10e5-4d7d-b2d5-8557c2a8ce3a", client_id) +16:40:55.717 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.717 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.717 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.717 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.717 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.723 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.723 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.723 [XNIO-1 task-3] pFKtigaYTRq_IljHhgSSDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=28GhC448Rxi-WGgSkgGMeQ +16:40:55.726 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.726 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.726 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.726 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.727 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.727 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.727 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.727 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.732 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a8f7410e +16:40:55.733 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.733 [XNIO-1 task-3] iLeRy5ixRZySYoAeyFOgJw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.739 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.739 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG com.networknt.schema.TypeValidator debug - validate( "cB5aGrMGDboYXDSCbTqq-6jdiQsMQF1M1Q0B0iNimlY", "cB5aGrMGDboYXDSCbTqq-6jdiQsMQF1M1Q0B0iNimlY", code_challenge) +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.740 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.743 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.743 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.743 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.743 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.743 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.743 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.744 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.744 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.747 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.747 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.750 [XNIO-1 task-3] zlkpxLrDRa20hCPLH6hegA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=0gEBAOGeSHqavuay2LsQgQ +16:40:55.750 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.750 [XNIO-1 task-2] x337qhS_QtOpf2MMWjpvQQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG com.networknt.schema.TypeValidator debug - validate( "IYiTUHyCn-8S3QnkeNZfuR7PnLfXXrrVzAmF0MZqiJg", "IYiTUHyCn-8S3QnkeNZfuR7PnLfXXrrVzAmF0MZqiJg", code_challenge) +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.753 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.759 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.759 [XNIO-1 task-2] WZ8h7rllRhuC_B-QVhaQfw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.777 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.777 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.777 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.777 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG com.networknt.schema.TypeValidator debug - validate( "7311f205-10e5-4d7d-b2d5-8557c2a8ce3a", "7311f205-10e5-4d7d-b2d5-8557c2a8ce3a", client_id) +16:40:55.777 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.778 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.778 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.778 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.778 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.785 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.785 [XNIO-1 task-2] JMPtnjSzSRqJ9NPgRYmQHg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.807 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1fa9546b-1f0e-41ac-8e93-4a345d191e38 +16:40:55.809 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1fa9546b-1f0e-41ac-8e93-4a345d191e38 +16:40:55.847 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.847 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.847 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.847 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG com.networknt.schema.TypeValidator debug - validate( "hQvruZ4ASGecDnhlhU0LCB-8fR_KWI4R2KWMbFyzh1o", "hQvruZ4ASGecDnhlhU0LCB-8fR_KWI4R2KWMbFyzh1o", code_challenge) +16:40:55.847 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.847 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.848 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.848 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.848 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.848 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.854 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.854 [XNIO-1 task-2] n4g5bB7_RDikB9OHNaTOIg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.866 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6a5f0125-8c40-4037-8971-d7b7ca5586f9 +16:40:55.879 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.879 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.879 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.880 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG com.networknt.schema.TypeValidator debug - validate( "sYm_ywN16nRW9l135mbRNCkUm1fRwVMH667JTEkbaDA", "sYm_ywN16nRW9l135mbRNCkUm1fRwVMH667JTEkbaDA", code_challenge) +16:40:55.880 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.880 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.880 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.880 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.880 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.880 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.885 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.885 [XNIO-1 task-2] DJt9ow5nSGybtHhpdJV19Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.888 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.888 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.888 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.888 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG com.networknt.schema.TypeValidator debug - validate( "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", client_id) +16:40:55.888 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.889 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.889 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.889 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.889 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.894 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.894 [XNIO-1 task-2] 1kuXaJKXThmABYudMm_mSg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG com.networknt.schema.TypeValidator debug - validate( "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", client_id) +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.899 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.907 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.907 [XNIO-1 task-2] 5UI2d0AmSgez65sZvTKWMw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.908 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:53d66e81 +16:40:55.909 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:53d66e81 +16:40:55.914 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.914 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.914 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.914 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.914 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.914 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.914 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.915 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.915 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.915 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.915 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", "951e34c2-a754-4bd0-b90e-ca3591c0b6dd", client_id) +16:40:55.915 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.915 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.915 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.915 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.915 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.915 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.915 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.920 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.920 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.920 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.920 [XNIO-1 task-3] bIrojsIUQFywaKkd1W40Lw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.922 [XNIO-1 task-2] NXeEqyKPRUirha0ClDs1sg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=XZNbivfSS3SlhcB8THonPw +16:40:55.925 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fd6650d7 +16:40:55.926 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.926 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.926 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.927 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG com.networknt.schema.TypeValidator debug - validate( "I_hTArdAKJR1s09X_6QYJLs_VWJ2_dBp5YD21_3MhAo", "I_hTArdAKJR1s09X_6QYJLs_VWJ2_dBp5YD21_3MhAo", code_challenge) +16:40:55.927 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.927 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.928 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.928 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.928 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.928 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.934 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.934 [XNIO-1 task-2] hig3R_PdTayfQZ0j-SzSvw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.937 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.937 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.937 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.937 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG com.networknt.schema.TypeValidator debug - validate( "7H1fGbERrSCHQWW89-C9xRwE3zlQ34JDBMaI9IclfCI", "7H1fGbERrSCHQWW89-C9xRwE3zlQ34JDBMaI9IclfCI", code_challenge) +16:40:55.938 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.938 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.938 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.938 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.938 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.938 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.944 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.944 [XNIO-1 task-2] WY-0xMQqTSa9NgKS_GbPbA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.953 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:53d66e81 +16:40:55.968 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.968 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.968 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.968 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG com.networknt.schema.TypeValidator debug - validate( "wZ6tYVxTMLwfUmsBnncnEAy7wK9N1m3ts9KMce10obk", "wZ6tYVxTMLwfUmsBnncnEAy7wK9N1m3ts9KMce10obk", code_challenge) +16:40:55.968 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.968 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.969 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.969 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.969 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.969 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.972 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.972 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.972 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.973 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.973 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.973 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.973 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.973 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:55.976 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:55.976 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:55.977 [XNIO-1 task-2] B_hDxU5yQvyqsn5MQNBe1A DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=S0F4J3ptRJSXUbc-MxDSiw +16:40:55.981 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.981 [XNIO-1 task-3] 6aPG-WECQE6YJFk5b_080Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.983 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.983 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:55.983 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:55.984 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "GgCa0tSkUWO6OHnJp2QWAcBTesVou49eI86fcmwX6bM", "GgCa0tSkUWO6OHnJp2QWAcBTesVou49eI86fcmwX6bM", code_challenge) +16:40:55.984 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:55.984 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:55.984 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:55.984 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:55.984 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:55.984 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:55.990 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:55.990 [XNIO-1 task-3] 6iGvG6UlTtCfqydRJxdwiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:55.995 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:48f823a7 +16:40:55.996 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:48f823a7 +16:40:55.996 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.996 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.996 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:55.996 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "738c1553-873f-4b4d-a8d6-d4b5db4ef175", "738c1553-873f-4b4d-a8d6-d4b5db4ef175", client_id) +16:40:55.996 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:55.996 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:55.997 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:55.997 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:55.998 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.004 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.004 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.005 [XNIO-1 task-3] 8f1RtbfySA-Hm4srX-0AgQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4xZpKOdDQWe1ZohP3YdtMw +16:40:56.023 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2274b71b +16:40:56.035 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG com.networknt.schema.TypeValidator debug - validate( "qIypVIqn_oVUjcFBoYnq25IMhJXTV_VRmGRRhPXunJI", "qIypVIqn_oVUjcFBoYnq25IMhJXTV_VRmGRRhPXunJI", code_challenge) +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.036 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.038 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.038 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.038 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.038 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.038 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.039 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.039 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.039 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.042 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e29941b4 +16:40:56.043 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.043 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.043 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.044 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.044 [XNIO-1 task-2] e7gdlno2QiqBesqNlb1Vyw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.050 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9708d78e +16:40:56.051 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9708d78e +16:40:56.052 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.052 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.052 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.053 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.053 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.053 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.053 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.053 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.059 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.060 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.061 [XNIO-1 task-2] CgjJV2WMQzee9ZWT5FHN6w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=tXcjhs23RSKPrgJrV_Zj9w +16:40:56.070 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.070 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.070 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.070 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.070 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.071 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.071 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.071 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.072 [XNIO-1 task-3] S3APj6iRS2qf4GFKQZ7cUw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IUcwX6jKRBOI3xFwh5my9w +16:40:56.077 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:48f823a7 +16:40:56.079 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.078 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.079 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.079 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.080 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "bTA-U1B8BUJMQ2jD2LfoS-NrSiILGQ0HMvj9BmPnxis", "bTA-U1B8BUJMQ2jD2LfoS-NrSiILGQ0HMvj9BmPnxis", code_challenge) +16:40:56.080 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:56.080 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.080 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.080 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.080 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.080 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.082 [XNIO-1 task-2] ih9pnEOLS56SXmNfPuriUQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=GgHt4OklTsOmEiT97qpKzA +16:40:56.086 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.087 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.087 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.087 [XNIO-1 task-3] TyByFFPnTlqG2RxIkdEDsg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.087 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:49d549be-ec12-41cf-841c-bbc0639ed72d +16:40:56.087 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:56.087 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.088 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.088 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:49d549be-ec12-41cf-841c-bbc0639ed72d +16:40:56.088 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.088 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.088 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.093 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.093 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.100 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7ade095d-3a84-4d8c-a43c-9e28fd3f8995 +16:40:56.107 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.107 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "AjTz4XeYwGylT2D5vkOzO60iX4Y17TTVy8zNzNTsvTg", "AjTz4XeYwGylT2D5vkOzO60iX4Y17TTVy8zNzNTsvTg", code_challenge) +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.108 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.113 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.113 [XNIO-1 task-3] jFG3N0lMRYe5bj3cSP-MiQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.115 [XNIO-1 task-2] xUoBzhB_SR6i1l90WD6nDw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=TNzA7-NqSBS4Z4rW1RuYkw +16:40:56.118 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.118 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.118 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.118 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG com.networknt.schema.TypeValidator debug - validate( "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", "4aab6bd3-4822-4fc2-8e4d-82d942cddd78", client_id) +16:40:56.119 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.119 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.119 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.119 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.119 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.123 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.123 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.123 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.124 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", "ba1b76d5-e025-4612-99fe-f5a6bd4b2ac9", client_id) +16:40:56.124 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.124 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.124 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.124 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.124 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.125 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.125 [XNIO-1 task-2] Qadk-p5zQzu_EQRLm5IFVA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.130 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.130 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.131 [XNIO-1 task-3] NvVg4VWhRpisRD36CED9Mw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=cORhfaEeTRKm-Y2tkeuKbg +16:40:56.139 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.139 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.139 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.139 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.139 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.140 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.140 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.140 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.147 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:53d66e81 +16:40:56.148 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:53d66e81 +16:40:56.148 [XNIO-1 task-3] o-HMCdFyQe-ghlzeGlnZZg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.149 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.149 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG com.networknt.schema.TypeValidator debug - validate( "wVmG8ADlxHnvu82HW5lHOeuhbBgRxMAo6wwGx9pK-Rc", "wVmG8ADlxHnvu82HW5lHOeuhbBgRxMAo6wwGx9pK-Rc", code_challenge) +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.150 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.156 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.156 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.158 [XNIO-1 task-2] QthJEOD4TF2rygMV07E35g DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_K_4JWCjSyaUgC-GG286QA +16:40:56.163 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.164 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.164 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.164 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "JqazPIKQOjtf4VVVOuqoGERrbgPlfYavy92hu_0_xcg", "JqazPIKQOjtf4VVVOuqoGERrbgPlfYavy92hu_0_xcg", code_challenge) +16:40:56.164 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:56.164 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.165 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.165 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.165 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:56.165 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.171 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.171 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.172 [XNIO-1 task-2] RPriilNnTOGHwxpjySB5Fg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_EgkION1TNKPN0T0P5SvGg +16:40:56.179 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.179 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.179 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.180 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7a5c514-d79b-4896-be73-b67ea2d7126f", "f7a5c514-d79b-4896-be73-b67ea2d7126f", client_id) +16:40:56.180 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.180 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.180 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.180 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.180 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.186 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.186 [XNIO-1 task-2] lVUAFb5OSmSC6cofpfLpNA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.187 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e29941b4 +16:40:56.188 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e29941b4 +16:40:56.196 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.196 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.196 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.196 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7a5c514-d79b-4896-be73-b67ea2d7126f", "f7a5c514-d79b-4896-be73-b67ea2d7126f", client_id) +16:40:56.196 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.196 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.196 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.197 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.197 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.200 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.200 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.200 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.200 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG com.networknt.schema.TypeValidator debug - validate( "dcf693c2-eb5d-45dc-8564-05c66e00db17", "dcf693c2-eb5d-45dc-8564-05c66e00db17", client_id) +16:40:56.200 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.201 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.201 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.201 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.201 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.202 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.202 [XNIO-1 task-2] 8OUNQNtCScWqPJNfRMJ4iA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.207 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.207 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.207 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.208 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "GtZVgCSXl2_s3m4E2xPj-d_Jb_uMzWOqEGj5JYpRjTg", "GtZVgCSXl2_s3m4E2xPj-d_Jb_uMzWOqEGj5JYpRjTg", code_challenge) +16:40:56.208 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:56.208 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.208 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.208 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.208 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.208 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.210 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.210 [XNIO-1 task-3] dPpmF2iESUuaHmSErYfL5w DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.210 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9708d78e +16:40:56.214 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.214 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.214 [XNIO-1 task-2] DKKUK-AgREChApUVeX-CHQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=85U2iR6VSbCQuFeR04ZwWg +16:40:56.219 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.219 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.220 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.220 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "5c92bdc0-9b8f-4994-a03c-3388a99e4827", "5c92bdc0-9b8f-4994-a03c-3388a99e4827", client_id) +16:40:56.220 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.220 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.220 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.220 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.220 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.232 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.232 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.235 [XNIO-1 task-2] rPnFfJHVSd6Jnltertz4Cw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=K12gBXpTTPmLq9YhSrrU4w +16:40:56.237 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.238 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.238 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.238 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.238 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.238 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.238 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.239 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.240 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.240 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.240 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.240 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG com.networknt.schema.TypeValidator debug - validate( "9K_8nvsQNhrFRbjGQkuw6xaMSGnMBP-f_-KmOT2Przw", "9K_8nvsQNhrFRbjGQkuw6xaMSGnMBP-f_-KmOT2Przw", code_challenge) +16:40:56.240 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:56.240 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.240 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.241 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.241 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.241 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.245 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:56.245 [XNIO-1 task-2] HsOPtssQQP-QbSDoDNNYKQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:56.247 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.247 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.247 [XNIO-1 task-3] mXCtlB6JRBKQOwo2IkpevA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=xYm68k27RGKl2rPeutiuOw +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG com.networknt.schema.TypeValidator debug - validate( "5c92bdc0-9b8f-4994-a03c-3388a99e4827", "5c92bdc0-9b8f-4994-a03c-3388a99e4827", client_id) +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.255 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.261 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.261 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.262 [XNIO-1 task-3] LueC7yA4S4e9iPP0Uzr3yA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=bB--qTXlR4Oy-UwCEFnXLw +16:40:56.268 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG com.networknt.schema.TypeValidator debug - validate( "fc4dcf26-05b1-4c44-a8b0-3ac84194ad88", "fc4dcf26-05b1-4c44-a8b0-3ac84194ad88", client_id) +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:56.269 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:56.277 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.278 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.278 [XNIO-1 task-3] mnuPW2gJQ8W21LPAkzvvRA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=4aubwfdUQMCA_xE6o50CzA +16:40:56.290 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.290 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.290 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.290 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5c92bdc0-9b8f-4994-a03c-3388a99e4827", "5c92bdc0-9b8f-4994-a03c-3388a99e4827", client_id) +16:40:56.290 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.290 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.290 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.291 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.291 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.297 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.297 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.297 [XNIO-1 task-3] _RRYnkuLQbW4abV5CXPgtQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=QcORJ1OAQcyXmff6FnR7wA +16:40:56.306 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.306 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.306 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.307 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.307 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.307 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.307 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.308 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.314 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.315 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.316 [XNIO-1 task-3] dfE0osz1RbmKb5g7Owp1Tw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=UsN22d2kQg2KW54Fo6Ib5w +16:40:56.321 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.321 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.321 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.322 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.322 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.322 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.322 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.322 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.328 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.328 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.328 [XNIO-1 task-3] nCVABswSRoWYBC5BLvn5jQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=g_WPtizeTXS81MP8tpm2OA +16:40:56.332 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.332 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.332 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.332 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.332 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.332 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.332 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.333 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.338 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.338 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.339 [XNIO-1 task-3] Gg-6uuLBSDOKgP8amR9ClQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=IR2fDB_zQm2nvTjMsdclBg +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG com.networknt.schema.TypeValidator debug - validate( "2c70b011-796f-41e2-a37c-07f261732395", "2c70b011-796f-41e2-a37c-07f261732395", client_id) +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.342 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.348 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.348 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.349 [XNIO-1 task-3] DPmw6b7eRG-Gelk4ou-7PA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=iBPuqALnSuKRS38jQ2os9Q +16:40:56.357 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.357 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.357 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.357 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "312060f2-1616-4947-8021-63b9a31f13b0", "312060f2-1616-4947-8021-63b9a31f13b0", client_id) +16:40:56.357 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.357 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.358 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.358 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.358 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.363 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.363 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.364 [XNIO-1 task-3] 4LTit_8CTv-ALtU0bx6U1Q DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=2DSKZbEdQlCQdhzE88UAGg +16:40:56.385 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.385 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.385 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.385 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG com.networknt.schema.TypeValidator debug - validate( "312060f2-1616-4947-8021-63b9a31f13b0", "312060f2-1616-4947-8021-63b9a31f13b0", client_id) +16:40:56.385 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.386 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.386 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.386 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.386 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.391 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.392 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.393 [XNIO-1 task-3] pXMKh1qZRKKR03BqnWpFHA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=b3gFdSSZQNWt-m8vtIQoDg +16:40:56.396 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.396 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.396 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:56.396 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG com.networknt.schema.TypeValidator debug - validate( "312060f2-1616-4947-8021-63b9a31f13b0", "312060f2-1616-4947-8021-63b9a31f13b0", client_id) +16:40:56.396 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:56.396 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:56.397 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:56.397 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:56.397 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:56.402 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:56.402 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:56.403 [XNIO-1 task-3] p6zWGDiHQhK48niKe5QKnw DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=Wi0HbtGUSUW82P7_nh_TQQ +16:40:57.610 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.610 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.610 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.610 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:57.610 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:57.610 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:57.610 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:57.611 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:57.621 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:57.621 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:57.623 [XNIO-1 task-3] rGt-JxYGTbi23mPvTLw9oQ DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=-jPPigAISGWL4AFiktYxeQ +16:40:57.627 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.627 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.627 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.628 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:57.628 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:57.628 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:57.628 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:57.628 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:57.634 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] +16:40:57.635 [XNIO-1 task-3] BkqRnEIKTF-Pszvx-JBGtA DEBUG io.undertow.request.security authTransition - Authentication result was AUTHENTICATED for /oauth2/code +16:40:57.635 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0192e543-e61a-445f-b37d-0e51b9a7f3ac +16:40:57.641 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0192e543-e61a-445f-b37d-0e51b9a7f3ac +16:40:57.645 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG com.networknt.schema.TypeValidator debug - validate( "m_Cb7CDte5pu26nGmaaXnzP2j61QU_eFJ1QYRgeFmLU", "m_Cb7CDte5pu26nGmaaXnzP2j61QU_eFJ1QYRgeFmLU", code_challenge) +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:57.646 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:57.653 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:57.654 [XNIO-1 task-3] LOzUZXwfT165jRQnDnxlfA DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:57.661 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:57.661 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/code +16:40:57.661 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/code, base path is set to: null +16:40:57.661 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG com.networknt.schema.TypeValidator debug - validate( "lQ-ojgj_WJSmPY7RY2KPh0IO6oj2MeEagtaNcwoNfp8", "lQ-ojgj_WJSmPY7RY2KPh0IO6oj2MeEagtaNcwoNfp8", code_challenge) +16:40:57.661 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG com.networknt.schema.TypeValidator debug - validate( "S256", "S256", code_challenge_method) +16:40:57.661 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG com.networknt.schema.EnumValidator debug - validate( "code", "code", response_type) +16:40:57.662 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YWRtaW46MTIzNDU2", "Basic YWRtaW46MTIzNDU2", Authorization) +16:40:57.662 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG io.undertow.request.security authenticate - Attempting to authenticate /oauth2/code, authentication required: true +16:40:57.662 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG c.n.o.s.LightBasicAuthenticationMechanism authenticate - Found basic auth header %s (decoded using charset %s) in %s +16:40:57.662 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG c.n.o.security.LightIdentityManager verify - Get Authenticator implementation from service factory with clazz = interface com.networknt.oauth.auth.DefaultAuth +16:40:57.667 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG io.undertow.request.security transition - Authentication outcome was AUTHENTICATED with method com.networknt.oauth.security.LightBasicAuthenticationMechanism@756fad98 for /oauth2/code +16:40:57.667 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - params +16:40:57.669 [XNIO-1 task-3] SVpcKYflRPWZiZ60JG7tKg DEBUG c.n.o.c.handler.Oauth2CodeGetHandler handleRequest - redirectUri = http://localhost:8080/authorization?code=_A1ZXNuGTwirsSQop64zOQ +16:40:57.675 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.675 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.676 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/code +16:40:57.676 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG com.networknt.schema.TypeValidator debug - validate( "92899586-2fe8-4e49-9f39-10341fbfb5d6", "92899586-2fe8-4e49-9f39-10341fbfb5d6", client_id) +16:40:57.676 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG com.networknt.schema.TypeValidator debug - validate( "code", "code", response_type) +16:40:57.676 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG com.networknt.schema.TypeValidator debug - validate( "http://localhost:8080/authorization", "http://localhost:8080/authorization", redirect_uri) +16:40:57.676 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG io.undertow.request.security handleRequest - Setting authentication required for exchange HttpServerExchange{ GET /oauth2/code} +16:40:57.676 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG io.undertow.request.security transition - Authentication outcome was NOT_ATTEMPTED with method com.networknt.oauth.security.LightGSSAPIAuthenticationMechanism@276dd2e3 for /oauth2/code +16:40:57.676 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG c.n.o.security.LightIdentityManager verify - LightPasswordCredential with clientAuthClass = null +16:40:57.682 [XNIO-1 task-3] asVh-REsQZeEqemHKDpl_g DEBUG io.undertow.request.security authenticationComplete - Authenticated as admin, roles [admin, user] diff --git a/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-key-1.log b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-key-1.log new file mode 100644 index 0000000..a966479 --- /dev/null +++ b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-key-1.log @@ -0,0 +1,137 @@ +16:40:53.733 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:589bd1b1-d729-4748-9231-639e84763aeb +16:40:53.734 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:589bd1b1-d729-4748-9231-639e84763aeb +16:40:53.885 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5386a67 +16:40:53.888 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5386a67 +16:40:54.212 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5386a67 +16:40:54.358 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.361 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8cf9c648-76a2-4d02-9dd0-7f80730da15e +16:40:54.373 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:524c0a69-4ffd-428b-9112-89e173f955b4 +16:40:54.388 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.440 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:524c0a69-4ffd-428b-9112-89e173f955b4 +16:40:54.479 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5386a67 +16:40:54.525 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.551 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9cb72be6-1226-479b-85e1-9a7750cc38d8 +16:40:54.553 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:853005e2-8eaf-4115-840b-949b0a96e124 +16:40:54.665 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:9343e080-2959-48c8-8fd1-771b42632b6c +16:40:54.677 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:49db389c-d393-49ac-aa67-3a5b7e17bd8e +16:40:54.707 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.725 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:eeab3796-3515-4768-b1e0-a1c17d7a47a9 +16:40:54.728 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:eeab3796-3515-4768-b1e0-a1c17d7a47a9 +16:40:54.856 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7cd47fd +16:40:54.857 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7cd47fd +16:40:55.126 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3bab7c7b-c20e-4ea4-afb5-22f67da02211 +16:40:55.127 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3bab7c7b-c20e-4ea4-afb5-22f67da02211 +16:40:55.140 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8befd5e4-c46c-48ad-a69d-d7d4a7f3ed4e +16:40:55.147 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:eeab3796-3515-4768-b1e0-a1c17d7a47a9 +16:40:55.166 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7cd47fd +16:40:55.206 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a8327a67-7a11-4cab-aea8-a35b0904c8e4 +16:40:55.253 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:8cf9c648-76a2-4d02-9dd0-7f80730da15e +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:40:55.320 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore store - Store:3dddd667-1c01-4ea1-a31d-1cdccf0e112c +16:40:55.377 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.379 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c5386a67 +16:40:55.411 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0679b862-5365-4ecc-8742-db4801aad5e8 +16:40:55.430 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:0679b862-5365-4ecc-8742-db4801aad5e8 +16:40:55.436 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:dacf2c5a-e68f-4bcc-9594-594c79571fc8 +16:40:55.500 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:dacf2c5a-e68f-4bcc-9594-594c79571fc8 +16:40:55.549 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f7cd47fd +16:40:55.595 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.639 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6a35eb18-76a0-4842-8191-5934e01924a8 +16:40:55.642 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5386a67 +16:40:55.769 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:a4b25661-2097-48e8-8b44-95d0b9820b40 +16:40:55.778 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c4ee4742-e5d9-454c-a357-8c2814fdb618 +16:40:55.802 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c4ee4742-e5d9-454c-a357-8c2814fdb618 +16:40:55.805 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:f80f119c-57ea-4e84-bb22-13ba4e286823 +16:40:55.835 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dfbcaa58 +16:40:55.836 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:dfbcaa58 +16:40:55.865 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dfbcaa58 +16:40:55.881 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:dfbcaa58 +16:40:55.894 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:dfbcaa58 +16:40:55.912 [hz._hzInstance_1_dev.partition-operation.thread-5] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + +16:40:55.973 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c5386a67 +16:40:56.015 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c5386a67 +16:40:56.043 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1ee1148b-8fc9-49ad-b0f8-99e0ce514c92 +16:40:56.171 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e91dd96d +16:40:56.172 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e91dd96d +16:40:56.221 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:70fe7817-5162-4a45-ace1-f193fdb313f1 +16:40:56.280 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:e24c5020-32b8-4aee-bd09-dc02ea1d7888 +16:40:56.284 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:cec4b19f +16:40:56.376 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:00492e7c-a96e-4b67-8c26-2ad1ab7fc07e +16:40:56.509 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:70fe7817-5162-4a45-ace1-f193fdb313f1 +16:40:56.547 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:70fe7817-5162-4a45-ace1-f193fdb313f1 +16:40:56.550 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fccffed8 +16:40:56.568 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fccffed8 +16:40:56.595 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fccffed8 +16:40:56.611 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:fccffed8 +16:40:56.694 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:57.628 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fccffed8 +16:40:57.693 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:fccffed8 +16:40:57.784 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:d3903798-7e02-4b8b-b2a6-62d29c9bec7e +16:40:57.789 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0752fcf8 +16:40:57.790 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0752fcf8 +16:40:57.797 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:e91dd96d +16:40:57.821 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:cec4b19f +16:40:57.874 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:8acf01f8 +16:40:57.911 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:e91dd96d +16:40:57.929 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:8acf01f8 +16:40:57.986 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0bc52376-20d5-4108-942d-2a307953dd51 +16:40:57.987 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore load - Load:0bc52376-20d5-4108-942d-2a307953dd51 diff --git a/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-refresh-token-1.log b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-refresh-token-1.log new file mode 100644 index 0000000..6fd395f --- /dev/null +++ b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-refresh-token-1.log @@ -0,0 +1,1929 @@ +16:40:53.901 [XNIO-1 task-2] Y3Wco7qNQ_eEadbOVRKirA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:53.901 [XNIO-1 task-2] Y3Wco7qNQ_eEadbOVRKirA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:53.901 [XNIO-1 task-2] Y3Wco7qNQ_eEadbOVRKirA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:53.910 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c4d5543d +16:40:53.915 [XNIO-1 task-2] FpcEzFAYTgmaaiA0RlHURQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6, base path is set to: null +16:40:53.915 [XNIO-1 task-2] FpcEzFAYTgmaaiA0RlHURQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:53.915 [XNIO-1 task-2] FpcEzFAYTgmaaiA0RlHURQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:53.915 [XNIO-1 task-2] FpcEzFAYTgmaaiA0RlHURQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6, base path is set to: null +16:40:53.915 [XNIO-1 task-2] FpcEzFAYTgmaaiA0RlHURQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a8812d35-7670-4b43-adac-955c01c072e6", "a8812d35-7670-4b43-adac-955c01c072e6", refreshToken) +16:40:53.920 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:738c1553-873f-4b4d-a8d6-d4b5db4ef175 +16:40:53.921 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore load - Load:738c1553-873f-4b4d-a8d6-d4b5db4ef175 +16:40:53.929 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:c4d5543d +16:40:53.944 [XNIO-1 task-2] 88hgjf5GRT6BG7EZ4fNg5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:53.944 [XNIO-1 task-2] 88hgjf5GRT6BG7EZ4fNg5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:53.944 [XNIO-1 task-2] 88hgjf5GRT6BG7EZ4fNg5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:53.944 [XNIO-1 task-2] 88hgjf5GRT6BG7EZ4fNg5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.960 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:c4d5543d +16:40:53.998 [XNIO-1 task-2] SxzAIHLJRse5EJ3UTRuS5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:53.998 [XNIO-1 task-2] SxzAIHLJRse5EJ3UTRuS5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:53.998 [XNIO-1 task-2] SxzAIHLJRse5EJ3UTRuS5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:53.998 [XNIO-1 task-2] SxzAIHLJRse5EJ3UTRuS5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:53.998 [XNIO-1 task-2] SxzAIHLJRse5EJ3UTRuS5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:54.003 [XNIO-1 task-2] NElOlCUPR6OlG3EhGc-IUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6, base path is set to: null +16:40:54.003 [XNIO-1 task-2] NElOlCUPR6OlG3EhGc-IUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.003 [XNIO-1 task-2] NElOlCUPR6OlG3EhGc-IUA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.003 [XNIO-1 task-2] NElOlCUPR6OlG3EhGc-IUA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6, base path is set to: null +16:40:54.003 [XNIO-1 task-2] NElOlCUPR6OlG3EhGc-IUA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8812d35-7670-4b43-adac-955c01c072e6", "a8812d35-7670-4b43-adac-955c01c072e6", refreshToken) +16:40:54.005 [XNIO-1 task-2] 47HRQRdfRimWGL-KJzdr0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be, base path is set to: null +16:40:54.005 [XNIO-1 task-2] 47HRQRdfRimWGL-KJzdr0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.005 [XNIO-1 task-2] 47HRQRdfRimWGL-KJzdr0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.005 [XNIO-1 task-2] 47HRQRdfRimWGL-KJzdr0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be, base path is set to: null +16:40:54.006 [XNIO-1 task-2] 47HRQRdfRimWGL-KJzdr0w DEBUG com.networknt.schema.TypeValidator debug - validate( "b0db472b-15b6-4495-8d3a-8df76d0819be", "b0db472b-15b6-4495-8d3a-8df76d0819be", refreshToken) +16:40:54.008 [XNIO-1 task-2] 47HRQRdfRimWGL-KJzdr0w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b0db472b-15b6-4495-8d3a-8df76d0819be is not found.","severity":"ERROR"} +16:40:54.011 [XNIO-1 task-2] F3S7pvaLRriAA2Ogdn0WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6 +16:40:54.011 [XNIO-1 task-2] F3S7pvaLRriAA2Ogdn0WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.011 [XNIO-1 task-2] F3S7pvaLRriAA2Ogdn0WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.012 [XNIO-1 task-2] F3S7pvaLRriAA2Ogdn0WuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6 +16:40:54.012 [XNIO-1 task-2] F3S7pvaLRriAA2Ogdn0WuQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a8812d35-7670-4b43-adac-955c01c072e6 +16:40:54.013 [XNIO-1 task-2] dCe13wJARreohRL7e1lm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.013 [XNIO-1 task-2] dCe13wJARreohRL7e1lm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.014 [XNIO-1 task-2] dCe13wJARreohRL7e1lm4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.014 [XNIO-1 task-2] dCe13wJARreohRL7e1lm4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.029 [XNIO-1 task-2] r6PtUpwJTkejGzi7HCyTEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.029 [XNIO-1 task-2] r6PtUpwJTkejGzi7HCyTEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.029 [XNIO-1 task-2] r6PtUpwJTkejGzi7HCyTEQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.029 [XNIO-1 task-2] r6PtUpwJTkejGzi7HCyTEQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.029 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65a82ed3 +16:40:54.030 [XNIO-1 task-2] r6PtUpwJTkejGzi7HCyTEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.030 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:65a82ed3 +16:40:54.037 [XNIO-1 task-2] 6_9-nzqySPmN-SkKjoSSDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c, base path is set to: null +16:40:54.037 [XNIO-1 task-2] 6_9-nzqySPmN-SkKjoSSDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.037 [XNIO-1 task-2] 6_9-nzqySPmN-SkKjoSSDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.037 [XNIO-1 task-2] 6_9-nzqySPmN-SkKjoSSDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c, base path is set to: null +16:40:54.037 [XNIO-1 task-2] 6_9-nzqySPmN-SkKjoSSDg DEBUG com.networknt.schema.TypeValidator debug - validate( "fe7fdff3-95bc-4f1c-b46c-74cb338c600c", "fe7fdff3-95bc-4f1c-b46c-74cb338c600c", refreshToken) +16:40:54.039 [XNIO-1 task-2] oeDp0hkFRDGDKSs1Iw6B6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be, base path is set to: null +16:40:54.039 [XNIO-1 task-2] oeDp0hkFRDGDKSs1Iw6B6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.040 [XNIO-1 task-2] oeDp0hkFRDGDKSs1Iw6B6Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.040 [XNIO-1 task-2] oeDp0hkFRDGDKSs1Iw6B6Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be, base path is set to: null +16:40:54.040 [XNIO-1 task-2] oeDp0hkFRDGDKSs1Iw6B6Q DEBUG com.networknt.schema.TypeValidator debug - validate( "b0db472b-15b6-4495-8d3a-8df76d0819be", "b0db472b-15b6-4495-8d3a-8df76d0819be", refreshToken) +16:40:54.040 [XNIO-1 task-2] oeDp0hkFRDGDKSs1Iw6B6Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b0db472b-15b6-4495-8d3a-8df76d0819be is not found.","severity":"ERROR"} +16:40:54.042 [XNIO-1 task-2] JuvCB0DNRxy17IWON-yrNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.042 [XNIO-1 task-2] JuvCB0DNRxy17IWON-yrNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.042 [XNIO-1 task-2] JuvCB0DNRxy17IWON-yrNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.042 [XNIO-1 task-2] JuvCB0DNRxy17IWON-yrNw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.135 [XNIO-1 task-2] HuJRFM8sQgSNObQ4GJry_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:54.135 [XNIO-1 task-2] HuJRFM8sQgSNObQ4GJry_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.135 [XNIO-1 task-2] HuJRFM8sQgSNObQ4GJry_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.135 [XNIO-1 task-2] HuJRFM8sQgSNObQ4GJry_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:54.136 [XNIO-1 task-2] HuJRFM8sQgSNObQ4GJry_g DEBUG com.networknt.schema.TypeValidator debug - validate( "9a71dcbc-71cd-42f4-9002-87be8e337e8a", "9a71dcbc-71cd-42f4-9002-87be8e337e8a", refreshToken) +16:40:54.143 [XNIO-1 task-2] r3utCdJ0SwyJ8HOIEsmhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.143 [XNIO-1 task-2] r3utCdJ0SwyJ8HOIEsmhtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.144 [XNIO-1 task-2] r3utCdJ0SwyJ8HOIEsmhtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.144 [XNIO-1 task-2] r3utCdJ0SwyJ8HOIEsmhtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.144 [XNIO-1 task-2] r3utCdJ0SwyJ8HOIEsmhtA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.153 [XNIO-1 task-2] KmX7tNH9RIyx1qph6Bdfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6 +16:40:54.153 [XNIO-1 task-2] KmX7tNH9RIyx1qph6Bdfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.153 [XNIO-1 task-2] KmX7tNH9RIyx1qph6Bdfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.153 [XNIO-1 task-2] KmX7tNH9RIyx1qph6Bdfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a8812d35-7670-4b43-adac-955c01c072e6 +16:40:54.153 [XNIO-1 task-2] KmX7tNH9RIyx1qph6Bdfsw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a8812d35-7670-4b43-adac-955c01c072e6 +16:40:54.156 [XNIO-1 task-2] aGDCRqVzSp2dxspXcyu5Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.156 [XNIO-1 task-2] aGDCRqVzSp2dxspXcyu5Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.157 [XNIO-1 task-2] aGDCRqVzSp2dxspXcyu5Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.157 [XNIO-1 task-2] aGDCRqVzSp2dxspXcyu5Iw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.166 [XNIO-1 task-2] 0c4eqWGJRAW3Lf3HtRUMdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.167 [XNIO-1 task-2] 0c4eqWGJRAW3Lf3HtRUMdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.167 [XNIO-1 task-2] 0c4eqWGJRAW3Lf3HtRUMdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.167 [XNIO-1 task-2] 0c4eqWGJRAW3Lf3HtRUMdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.167 [XNIO-1 task-2] 0c4eqWGJRAW3Lf3HtRUMdw DEBUG com.networknt.schema.TypeValidator debug - validate( "9e9d2d23-5b91-42b0-9871-579b2289768a", "9e9d2d23-5b91-42b0-9871-579b2289768a", refreshToken) +16:40:54.182 [XNIO-1 task-2] p3obiafSSDChKGetGQqliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.183 [XNIO-1 task-2] p3obiafSSDChKGetGQqliw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.183 [XNIO-1 task-2] p3obiafSSDChKGetGQqliw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.183 [XNIO-1 task-2] p3obiafSSDChKGetGQqliw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.183 [XNIO-1 task-2] p3obiafSSDChKGetGQqliw DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:54.185 [XNIO-1 task-2] p3obiafSSDChKGetGQqliw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:54.188 [XNIO-1 task-2] rb2hdcGHRGOsK8h5dxIKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.188 [XNIO-1 task-2] rb2hdcGHRGOsK8h5dxIKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.188 [XNIO-1 task-2] rb2hdcGHRGOsK8h5dxIKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.188 [XNIO-1 task-2] rb2hdcGHRGOsK8h5dxIKWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.189 [XNIO-1 task-2] rb2hdcGHRGOsK8h5dxIKWA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.199 [XNIO-1 task-2] kmgCvD8VQS6o0wd6fgoIEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.199 [XNIO-1 task-2] kmgCvD8VQS6o0wd6fgoIEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.199 [XNIO-1 task-2] kmgCvD8VQS6o0wd6fgoIEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.199 [XNIO-1 task-2] kmgCvD8VQS6o0wd6fgoIEg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.200 [XNIO-1 task-2] kmgCvD8VQS6o0wd6fgoIEg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.206 [XNIO-1 task-2] RA0Hq2zQRe6DKf_4WvkXbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.206 [XNIO-1 task-2] RA0Hq2zQRe6DKf_4WvkXbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.206 [XNIO-1 task-2] RA0Hq2zQRe6DKf_4WvkXbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.206 [XNIO-1 task-2] RA0Hq2zQRe6DKf_4WvkXbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.213 [XNIO-1 task-2] Z_S-vZ5OTM6Ri92JVaRf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:54.214 [XNIO-1 task-2] Z_S-vZ5OTM6Ri92JVaRf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.214 [XNIO-1 task-2] Z_S-vZ5OTM6Ri92JVaRf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.214 [XNIO-1 task-2] Z_S-vZ5OTM6Ri92JVaRf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:54.214 [XNIO-1 task-2] Z_S-vZ5OTM6Ri92JVaRf6A DEBUG com.networknt.schema.TypeValidator debug - validate( "9a71dcbc-71cd-42f4-9002-87be8e337e8a", "9a71dcbc-71cd-42f4-9002-87be8e337e8a", refreshToken) +16:40:54.224 [XNIO-1 task-2] -GkP_JiQQ1ShgY54kwkr4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.224 [XNIO-1 task-2] -GkP_JiQQ1ShgY54kwkr4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.224 [XNIO-1 task-2] -GkP_JiQQ1ShgY54kwkr4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.224 [XNIO-1 task-2] -GkP_JiQQ1ShgY54kwkr4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.224 [XNIO-1 task-2] -GkP_JiQQ1ShgY54kwkr4g DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:54.225 [XNIO-1 task-2] -GkP_JiQQ1ShgY54kwkr4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:54.227 [XNIO-1 task-2] qPQjB0HFQgiY_ZJKxywQqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.227 [XNIO-1 task-2] qPQjB0HFQgiY_ZJKxywQqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.228 [XNIO-1 task-2] qPQjB0HFQgiY_ZJKxywQqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.228 [XNIO-1 task-2] qPQjB0HFQgiY_ZJKxywQqg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.228 [XNIO-1 task-2] qPQjB0HFQgiY_ZJKxywQqg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.229 [XNIO-1 task-2] qPQjB0HFQgiY_ZJKxywQqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe7fdff3-95bc-4f1c-b46c-74cb338c600c is not found.","severity":"ERROR"} +16:40:54.235 [XNIO-1 task-2] o6DoxtF-T1KOYk8aoR9gPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:54.235 [XNIO-1 task-2] o6DoxtF-T1KOYk8aoR9gPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.235 [XNIO-1 task-2] o6DoxtF-T1KOYk8aoR9gPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.235 [XNIO-1 task-2] o6DoxtF-T1KOYk8aoR9gPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:54.235 [XNIO-1 task-2] o6DoxtF-T1KOYk8aoR9gPg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:54.240 [XNIO-1 task-2] Vgdb1d9UQQSjCzz6XzWAHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:54.240 [XNIO-1 task-2] Vgdb1d9UQQSjCzz6XzWAHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.240 [XNIO-1 task-2] Vgdb1d9UQQSjCzz6XzWAHA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.240 [XNIO-1 task-2] Vgdb1d9UQQSjCzz6XzWAHA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:54.240 [XNIO-1 task-2] Vgdb1d9UQQSjCzz6XzWAHA DEBUG com.networknt.schema.TypeValidator debug - validate( "9a71dcbc-71cd-42f4-9002-87be8e337e8a", "9a71dcbc-71cd-42f4-9002-87be8e337e8a", refreshToken) +16:40:54.240 [XNIO-1 task-2] Vgdb1d9UQQSjCzz6XzWAHA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a71dcbc-71cd-42f4-9002-87be8e337e8a is not found.","severity":"ERROR"} +16:40:54.247 [XNIO-1 task-2] gecdjKLgQJqLO-UYxkrQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.247 [XNIO-1 task-2] gecdjKLgQJqLO-UYxkrQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.247 [XNIO-1 task-2] gecdjKLgQJqLO-UYxkrQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.247 [XNIO-1 task-2] gecdjKLgQJqLO-UYxkrQtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.247 [XNIO-1 task-2] gecdjKLgQJqLO-UYxkrQtQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.254 [XNIO-1 task-2] d4FBnTGRRECxiTtmErudwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.254 [XNIO-1 task-2] d4FBnTGRRECxiTtmErudwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.254 [XNIO-1 task-2] d4FBnTGRRECxiTtmErudwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.255 [XNIO-1 task-2] d4FBnTGRRECxiTtmErudwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.255 [XNIO-1 task-2] d4FBnTGRRECxiTtmErudwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.257 [XNIO-1 task-2] dPZLmfygTnWB5SU0yxl1oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.257 [XNIO-1 task-2] dPZLmfygTnWB5SU0yxl1oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.258 [XNIO-1 task-2] dPZLmfygTnWB5SU0yxl1oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.258 [XNIO-1 task-2] dPZLmfygTnWB5SU0yxl1oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.258 [XNIO-1 task-2] dPZLmfygTnWB5SU0yxl1oQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.267 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5f5385a9-11f1-4ad4-a044-edd32c76cea9 +16:40:54.268 [XNIO-1 task-2] Dk7xSOIGSQKWktLm6fF3Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f, base path is set to: null +16:40:54.268 [XNIO-1 task-2] Dk7xSOIGSQKWktLm6fF3Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.268 [XNIO-1 task-2] Dk7xSOIGSQKWktLm6fF3Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.268 [XNIO-1 task-2] Dk7xSOIGSQKWktLm6fF3Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f, base path is set to: null +16:40:54.268 [XNIO-1 task-2] Dk7xSOIGSQKWktLm6fF3Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "1dd41972-c90f-4ea6-a169-e15d87173a8f", "1dd41972-c90f-4ea6-a169-e15d87173a8f", refreshToken) +16:40:54.270 [XNIO-1 task-2] 2dZmGxoRQ1CUNuDkdFosaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.270 [XNIO-1 task-2] 2dZmGxoRQ1CUNuDkdFosaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.271 [XNIO-1 task-2] 2dZmGxoRQ1CUNuDkdFosaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.271 [XNIO-1 task-2] 2dZmGxoRQ1CUNuDkdFosaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.272 [XNIO-1 task-2] 2dZmGxoRQ1CUNuDkdFosaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.278 [XNIO-1 task-2] lejtRFeIQzes-N8boQja0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.278 [XNIO-1 task-2] lejtRFeIQzes-N8boQja0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.278 [XNIO-1 task-2] lejtRFeIQzes-N8boQja0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.279 [XNIO-1 task-2] lejtRFeIQzes-N8boQja0Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.279 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5f5385a9-11f1-4ad4-a044-edd32c76cea9 +16:40:54.284 [XNIO-1 task-2] 01ZFVcE2TiSYtgyfj1aAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.284 [XNIO-1 task-2] 01ZFVcE2TiSYtgyfj1aAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.284 [XNIO-1 task-2] 01ZFVcE2TiSYtgyfj1aAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.284 [XNIO-1 task-2] 01ZFVcE2TiSYtgyfj1aAAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.284 [XNIO-1 task-2] 01ZFVcE2TiSYtgyfj1aAAg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.286 [XNIO-1 task-2] KO6NlHV3S66vdDXFU2P2aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.286 [XNIO-1 task-2] KO6NlHV3S66vdDXFU2P2aQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.286 [XNIO-1 task-2] KO6NlHV3S66vdDXFU2P2aQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.286 [XNIO-1 task-2] KO6NlHV3S66vdDXFU2P2aQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.287 [XNIO-1 task-2] KO6NlHV3S66vdDXFU2P2aQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.298 [XNIO-1 task-2] zi8FRPkERLqVxEvSskjjdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.298 [XNIO-1 task-2] zi8FRPkERLqVxEvSskjjdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.298 [XNIO-1 task-2] zi8FRPkERLqVxEvSskjjdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.298 [XNIO-1 task-2] zi8FRPkERLqVxEvSskjjdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.298 [XNIO-1 task-2] zi8FRPkERLqVxEvSskjjdA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = fe7fdff3-95bc-4f1c-b46c-74cb338c600c +16:40:54.299 [XNIO-1 task-2] zi8FRPkERLqVxEvSskjjdA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token fe7fdff3-95bc-4f1c-b46c-74cb338c600c is not found.","severity":"ERROR"} +16:40:54.304 [XNIO-1 task-2] VYDY8mU6RDuotuw-jsv0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.304 [XNIO-1 task-2] VYDY8mU6RDuotuw-jsv0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.304 [XNIO-1 task-2] VYDY8mU6RDuotuw-jsv0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.304 [XNIO-1 task-2] VYDY8mU6RDuotuw-jsv0YQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.304 [XNIO-1 task-2] VYDY8mU6RDuotuw-jsv0YQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.316 [XNIO-1 task-2] c3WQkIpKRjW0hEYOeWmIKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.317 [XNIO-1 task-2] c3WQkIpKRjW0hEYOeWmIKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.317 [XNIO-1 task-2] c3WQkIpKRjW0hEYOeWmIKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.317 [XNIO-1 task-2] c3WQkIpKRjW0hEYOeWmIKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.317 [XNIO-1 task-2] c3WQkIpKRjW0hEYOeWmIKQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.323 [XNIO-1 task-2] y9YGD_IrQ6CQYn8rqLvNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.324 [XNIO-1 task-2] y9YGD_IrQ6CQYn8rqLvNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.324 [XNIO-1 task-2] y9YGD_IrQ6CQYn8rqLvNtA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.324 [XNIO-1 task-2] y9YGD_IrQ6CQYn8rqLvNtA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.333 [XNIO-1 task-2] FGpR16aOTBiTHWxqQzeTVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ab43b346-5b93-4c12-b601-108f7a053ae8, base path is set to: null +16:40:54.333 [XNIO-1 task-2] FGpR16aOTBiTHWxqQzeTVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.333 [XNIO-1 task-2] FGpR16aOTBiTHWxqQzeTVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.333 [XNIO-1 task-2] FGpR16aOTBiTHWxqQzeTVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ab43b346-5b93-4c12-b601-108f7a053ae8, base path is set to: null +16:40:54.333 [XNIO-1 task-2] FGpR16aOTBiTHWxqQzeTVA DEBUG com.networknt.schema.TypeValidator debug - validate( "ab43b346-5b93-4c12-b601-108f7a053ae8", "ab43b346-5b93-4c12-b601-108f7a053ae8", refreshToken) +16:40:54.335 [XNIO-1 task-2] FGpR16aOTBiTHWxqQzeTVA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ab43b346-5b93-4c12-b601-108f7a053ae8 is not found.","severity":"ERROR"} +16:40:54.338 [XNIO-1 task-2] 8QhUG6n5ToCY7IUWmRAvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.338 [XNIO-1 task-2] 8QhUG6n5ToCY7IUWmRAvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.338 [XNIO-1 task-2] 8QhUG6n5ToCY7IUWmRAvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.339 [XNIO-1 task-2] 8QhUG6n5ToCY7IUWmRAvPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.340 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cd9360b0 +16:40:54.341 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cd9360b0 +16:40:54.344 [XNIO-1 task-2] MbhVss7IT1CS4E-cglooSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ab43b346-5b93-4c12-b601-108f7a053ae8 +16:40:54.344 [XNIO-1 task-2] MbhVss7IT1CS4E-cglooSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.345 [XNIO-1 task-2] MbhVss7IT1CS4E-cglooSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.345 [XNIO-1 task-2] MbhVss7IT1CS4E-cglooSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ab43b346-5b93-4c12-b601-108f7a053ae8 +16:40:54.345 [XNIO-1 task-2] MbhVss7IT1CS4E-cglooSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ab43b346-5b93-4c12-b601-108f7a053ae8 +16:40:54.350 [XNIO-1 task-2] 8TCiejohRXSGzMV0t2yXCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/893f8304-2277-4788-b9ce-27002611f099, base path is set to: null +16:40:54.350 [XNIO-1 task-2] 8TCiejohRXSGzMV0t2yXCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.350 [XNIO-1 task-2] 8TCiejohRXSGzMV0t2yXCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.350 [XNIO-1 task-2] 8TCiejohRXSGzMV0t2yXCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/893f8304-2277-4788-b9ce-27002611f099, base path is set to: null +16:40:54.350 [XNIO-1 task-2] 8TCiejohRXSGzMV0t2yXCA DEBUG com.networknt.schema.TypeValidator debug - validate( "893f8304-2277-4788-b9ce-27002611f099", "893f8304-2277-4788-b9ce-27002611f099", refreshToken) +16:40:54.355 [XNIO-1 task-2] 8TCiejohRXSGzMV0t2yXCA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 893f8304-2277-4788-b9ce-27002611f099 is not found.","severity":"ERROR"} +16:40:54.357 [XNIO-1 task-2] dyljUvRBRKaIshYBvC_YCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.357 [XNIO-1 task-2] dyljUvRBRKaIshYBvC_YCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.357 [XNIO-1 task-2] dyljUvRBRKaIshYBvC_YCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.358 [XNIO-1 task-2] dyljUvRBRKaIshYBvC_YCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.358 [XNIO-1 task-2] dyljUvRBRKaIshYBvC_YCg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.362 [XNIO-1 task-2] LbPJyS-5S5yPhH1TI-4ntA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.362 [XNIO-1 task-2] LbPJyS-5S5yPhH1TI-4ntA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.362 [XNIO-1 task-2] LbPJyS-5S5yPhH1TI-4ntA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.362 [XNIO-1 task-2] LbPJyS-5S5yPhH1TI-4ntA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.362 [XNIO-1 task-2] LbPJyS-5S5yPhH1TI-4ntA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.365 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:cd9360b0 +16:40:54.366 [XNIO-1 task-2] V-CVW4IgRc2biY-V9wjeHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.366 [XNIO-1 task-2] V-CVW4IgRc2biY-V9wjeHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.366 [XNIO-1 task-2] V-CVW4IgRc2biY-V9wjeHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.366 [XNIO-1 task-2] V-CVW4IgRc2biY-V9wjeHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.366 [XNIO-1 task-2] V-CVW4IgRc2biY-V9wjeHg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.368 [XNIO-1 task-2] e2zpxjGARz25jBQijxA2xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.369 [XNIO-1 task-2] e2zpxjGARz25jBQijxA2xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.369 [XNIO-1 task-2] e2zpxjGARz25jBQijxA2xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.369 [XNIO-1 task-2] e2zpxjGARz25jBQijxA2xg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.369 [XNIO-1 task-2] e2zpxjGARz25jBQijxA2xg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.376 [XNIO-1 task-2] UsJ00wG4RsKKrfAuWthYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.376 [XNIO-1 task-2] UsJ00wG4RsKKrfAuWthYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.376 [XNIO-1 task-2] UsJ00wG4RsKKrfAuWthYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.376 [XNIO-1 task-2] UsJ00wG4RsKKrfAuWthYFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.376 [XNIO-1 task-2] UsJ00wG4RsKKrfAuWthYFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.380 [XNIO-1 task-2] 4YE4KuT8QiuBY_i-8Mh-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.380 [XNIO-1 task-2] 4YE4KuT8QiuBY_i-8Mh-Ow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.380 [XNIO-1 task-2] 4YE4KuT8QiuBY_i-8Mh-Ow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.380 [XNIO-1 task-2] 4YE4KuT8QiuBY_i-8Mh-Ow DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.380 [XNIO-1 task-2] 4YE4KuT8QiuBY_i-8Mh-Ow DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.387 [XNIO-1 task-2] dUUKlQL5RSe7Q6CgKsCq3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.387 [XNIO-1 task-2] dUUKlQL5RSe7Q6CgKsCq3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.387 [XNIO-1 task-2] dUUKlQL5RSe7Q6CgKsCq3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.387 [XNIO-1 task-2] dUUKlQL5RSe7Q6CgKsCq3w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.395 [XNIO-1 task-2] Spn2Uz2sR8am2p0T7yQdbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.395 [XNIO-1 task-2] Spn2Uz2sR8am2p0T7yQdbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.395 [XNIO-1 task-2] Spn2Uz2sR8am2p0T7yQdbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.395 [XNIO-1 task-2] Spn2Uz2sR8am2p0T7yQdbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.395 [XNIO-1 task-2] Spn2Uz2sR8am2p0T7yQdbg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e9d2d23-5b91-42b0-9871-579b2289768a", "9e9d2d23-5b91-42b0-9871-579b2289768a", refreshToken) +16:40:54.395 [XNIO-1 task-2] Spn2Uz2sR8am2p0T7yQdbg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} +16:40:54.398 [XNIO-1 task-2] si7ps4VLSH6uHd8FBhfdoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.398 [XNIO-1 task-2] si7ps4VLSH6uHd8FBhfdoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.398 [XNIO-1 task-2] si7ps4VLSH6uHd8FBhfdoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.398 [XNIO-1 task-2] si7ps4VLSH6uHd8FBhfdoA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.398 [XNIO-1 task-2] si7ps4VLSH6uHd8FBhfdoA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.402 [XNIO-1 task-2] ce3DVnb0TGC0G9Rs0cnmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.402 [XNIO-1 task-2] ce3DVnb0TGC0G9Rs0cnmtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.402 [XNIO-1 task-2] ce3DVnb0TGC0G9Rs0cnmtg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.402 [XNIO-1 task-2] ce3DVnb0TGC0G9Rs0cnmtg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.402 [XNIO-1 task-2] ce3DVnb0TGC0G9Rs0cnmtg DEBUG com.networknt.schema.TypeValidator debug - validate( "9e9d2d23-5b91-42b0-9871-579b2289768a", "9e9d2d23-5b91-42b0-9871-579b2289768a", refreshToken) +16:40:54.402 [XNIO-1 task-2] ce3DVnb0TGC0G9Rs0cnmtg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} +16:40:54.411 [XNIO-1 task-2] ZvgbNLfdSbOauzVivvIZIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.411 [XNIO-1 task-2] ZvgbNLfdSbOauzVivvIZIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.411 [XNIO-1 task-2] ZvgbNLfdSbOauzVivvIZIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.411 [XNIO-1 task-2] ZvgbNLfdSbOauzVivvIZIA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.411 [XNIO-1 task-2] ZvgbNLfdSbOauzVivvIZIA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.413 [XNIO-1 task-2] EwAUJQ8YRGawEkdcsJpB7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.413 [XNIO-1 task-2] EwAUJQ8YRGawEkdcsJpB7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.414 [XNIO-1 task-2] EwAUJQ8YRGawEkdcsJpB7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.414 [XNIO-1 task-2] EwAUJQ8YRGawEkdcsJpB7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.414 [XNIO-1 task-2] EwAUJQ8YRGawEkdcsJpB7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9e9d2d23-5b91-42b0-9871-579b2289768a", "9e9d2d23-5b91-42b0-9871-579b2289768a", refreshToken) +16:40:54.414 [XNIO-1 task-2] EwAUJQ8YRGawEkdcsJpB7Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} +16:40:54.416 [XNIO-1 task-2] lhz5R3w2R4i4kYKyvUThlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.416 [XNIO-1 task-2] lhz5R3w2R4i4kYKyvUThlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.416 [XNIO-1 task-2] lhz5R3w2R4i4kYKyvUThlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.416 [XNIO-1 task-2] lhz5R3w2R4i4kYKyvUThlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.416 [XNIO-1 task-2] lhz5R3w2R4i4kYKyvUThlw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.418 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:e4bfdd2d-9821-43cb-adbe-ec5fb98a3c2e +16:40:54.421 [XNIO-1 task-2] 8Z10x7uJRQGxtH4exAlEFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.421 [XNIO-1 task-2] 8Z10x7uJRQGxtH4exAlEFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.421 [XNIO-1 task-2] 8Z10x7uJRQGxtH4exAlEFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.421 [XNIO-1 task-2] 8Z10x7uJRQGxtH4exAlEFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.422 [XNIO-1 task-2] 8Z10x7uJRQGxtH4exAlEFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.425 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:65a82ed3 +16:40:54.426 [XNIO-1 task-2] Obxg-h6BRry2zVnwNkcUHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.426 [XNIO-1 task-2] Obxg-h6BRry2zVnwNkcUHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.426 [XNIO-1 task-2] Obxg-h6BRry2zVnwNkcUHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.426 [XNIO-1 task-2] Obxg-h6BRry2zVnwNkcUHw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.435 [XNIO-1 task-2] 0oZtLLnpQSibNQBqJn1bOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.435 [XNIO-1 task-2] 0oZtLLnpQSibNQBqJn1bOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.435 [XNIO-1 task-2] 0oZtLLnpQSibNQBqJn1bOg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.435 [XNIO-1 task-2] 0oZtLLnpQSibNQBqJn1bOg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:54.435 [XNIO-1 task-2] 0oZtLLnpQSibNQBqJn1bOg DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:54.435 [XNIO-1 task-2] 0oZtLLnpQSibNQBqJn1bOg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:54.439 [XNIO-1 task-2] amfGPMcHQOu3GTH83Etecg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/524c0a69-4ffd-428b-9112-89e173f955b4, base path is set to: null +16:40:54.439 [XNIO-1 task-2] amfGPMcHQOu3GTH83Etecg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.439 [XNIO-1 task-2] amfGPMcHQOu3GTH83Etecg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.439 [XNIO-1 task-2] amfGPMcHQOu3GTH83Etecg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/524c0a69-4ffd-428b-9112-89e173f955b4, base path is set to: null +16:40:54.439 [XNIO-1 task-2] amfGPMcHQOu3GTH83Etecg DEBUG com.networknt.schema.TypeValidator debug - validate( "524c0a69-4ffd-428b-9112-89e173f955b4", "524c0a69-4ffd-428b-9112-89e173f955b4", refreshToken) +16:40:54.448 [XNIO-1 task-2] NQfcyZkdRpOMQDKl13N-og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.449 [XNIO-1 task-2] NQfcyZkdRpOMQDKl13N-og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.449 [XNIO-1 task-2] NQfcyZkdRpOMQDKl13N-og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.449 [XNIO-1 task-2] NQfcyZkdRpOMQDKl13N-og DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.449 [XNIO-1 task-2] NQfcyZkdRpOMQDKl13N-og DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.458 [XNIO-1 task-2] QLT2vLfqRgiQiTD_5c7Nng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:54.458 [XNIO-1 task-2] QLT2vLfqRgiQiTD_5c7Nng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.458 [XNIO-1 task-2] QLT2vLfqRgiQiTD_5c7Nng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.458 [XNIO-1 task-2] QLT2vLfqRgiQiTD_5c7Nng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:54.458 [XNIO-1 task-2] QLT2vLfqRgiQiTD_5c7Nng DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:54.460 [XNIO-1 task-2] lwsjKTPlSoGIgMdPlEVfzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.461 [XNIO-1 task-2] lwsjKTPlSoGIgMdPlEVfzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.461 [XNIO-1 task-2] lwsjKTPlSoGIgMdPlEVfzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.461 [XNIO-1 task-2] lwsjKTPlSoGIgMdPlEVfzw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.461 [XNIO-1 task-2] lwsjKTPlSoGIgMdPlEVfzw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.465 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:323eca96-d091-40e6-a38f-cdbbdf9e9eed +16:40:54.467 [XNIO-1 task-2] QS6yZD9RTWKiUxVuvFeC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.467 [XNIO-1 task-2] QS6yZD9RTWKiUxVuvFeC4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.467 [XNIO-1 task-2] QS6yZD9RTWKiUxVuvFeC4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.468 [XNIO-1 task-2] QS6yZD9RTWKiUxVuvFeC4w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.468 [XNIO-1 task-2] QS6yZD9RTWKiUxVuvFeC4w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.476 [XNIO-1 task-2] xUXEey6aRqKjhdf4H65qHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.476 [XNIO-1 task-2] xUXEey6aRqKjhdf4H65qHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.476 [XNIO-1 task-2] xUXEey6aRqKjhdf4H65qHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.476 [XNIO-1 task-2] xUXEey6aRqKjhdf4H65qHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.477 [XNIO-1 task-2] xUXEey6aRqKjhdf4H65qHQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.477 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1be2f8ea-b793-48e6-b107-6b2f19ac5554 +16:40:54.478 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:1be2f8ea-b793-48e6-b107-6b2f19ac5554 +16:40:54.482 [XNIO-1 task-2] twI5x9enTRaYvGt3ULrzKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.482 [XNIO-1 task-2] twI5x9enTRaYvGt3ULrzKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.482 [XNIO-1 task-2] twI5x9enTRaYvGt3ULrzKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.482 [XNIO-1 task-2] twI5x9enTRaYvGt3ULrzKw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.483 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:323eca96-d091-40e6-a38f-cdbbdf9e9eed +16:40:54.500 [XNIO-1 task-2] Lzq8HAxoRlSV1yo7tyaSRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78070f47-dbbb-4744-a447-f8582ad39f34 +16:40:54.500 [XNIO-1 task-2] Lzq8HAxoRlSV1yo7tyaSRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.500 [XNIO-1 task-2] Lzq8HAxoRlSV1yo7tyaSRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.500 [XNIO-1 task-2] Lzq8HAxoRlSV1yo7tyaSRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/78070f47-dbbb-4744-a447-f8582ad39f34 +16:40:54.500 [XNIO-1 task-2] Lzq8HAxoRlSV1yo7tyaSRQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 78070f47-dbbb-4744-a447-f8582ad39f34 +16:40:54.510 [XNIO-1 task-2] zqDH0KlPREqF7K3gyytC8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.510 [XNIO-1 task-2] zqDH0KlPREqF7K3gyytC8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.510 [XNIO-1 task-2] zqDH0KlPREqF7K3gyytC8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.510 [XNIO-1 task-2] zqDH0KlPREqF7K3gyytC8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.510 [XNIO-1 task-2] zqDH0KlPREqF7K3gyytC8Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.518 [XNIO-1 task-2] pLlkkFTkRKa6IZhbGEI3Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f, base path is set to: null +16:40:54.518 [XNIO-1 task-2] pLlkkFTkRKa6IZhbGEI3Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.518 [XNIO-1 task-2] pLlkkFTkRKa6IZhbGEI3Yw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.518 [XNIO-1 task-2] pLlkkFTkRKa6IZhbGEI3Yw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f, base path is set to: null +16:40:54.518 [XNIO-1 task-2] pLlkkFTkRKa6IZhbGEI3Yw DEBUG com.networknt.schema.TypeValidator debug - validate( "1dd41972-c90f-4ea6-a169-e15d87173a8f", "1dd41972-c90f-4ea6-a169-e15d87173a8f", refreshToken) +16:40:54.521 [XNIO-1 task-2] pLlkkFTkRKa6IZhbGEI3Yw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1dd41972-c90f-4ea6-a169-e15d87173a8f is not found.","severity":"ERROR"} +16:40:54.524 [XNIO-1 task-2] Iukj5tE6RweSQk4mFJsVZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.524 [XNIO-1 task-2] Iukj5tE6RweSQk4mFJsVZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.524 [XNIO-1 task-2] Iukj5tE6RweSQk4mFJsVZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.524 [XNIO-1 task-2] Iukj5tE6RweSQk4mFJsVZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.524 [XNIO-1 task-2] Iukj5tE6RweSQk4mFJsVZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 1dd41972-c90f-4ea6-a169-e15d87173a8f +16:40:54.531 [XNIO-1 task-2] usOWq6XqRfqvC8PTSYst0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.532 [XNIO-1 task-2] usOWq6XqRfqvC8PTSYst0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.532 [XNIO-1 task-2] usOWq6XqRfqvC8PTSYst0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.532 [XNIO-1 task-2] usOWq6XqRfqvC8PTSYst0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.532 [XNIO-1 task-2] usOWq6XqRfqvC8PTSYst0Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.542 [XNIO-1 task-2] Ze-IFsvoRxKCntE28oj9nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.542 [XNIO-1 task-2] Ze-IFsvoRxKCntE28oj9nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.542 [XNIO-1 task-2] Ze-IFsvoRxKCntE28oj9nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.542 [XNIO-1 task-2] Ze-IFsvoRxKCntE28oj9nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.542 [XNIO-1 task-2] Ze-IFsvoRxKCntE28oj9nA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.553 [XNIO-1 task-2] dGUjI0kqR2ytDrpDCwcmYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.553 [XNIO-1 task-2] dGUjI0kqR2ytDrpDCwcmYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.553 [XNIO-1 task-2] dGUjI0kqR2ytDrpDCwcmYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.553 [XNIO-1 task-2] dGUjI0kqR2ytDrpDCwcmYw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.559 [XNIO-1 task-2] kJ_GeEGzR4qN65GvXnYagg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.561 [XNIO-1 task-2] kJ_GeEGzR4qN65GvXnYagg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.561 [XNIO-1 task-2] kJ_GeEGzR4qN65GvXnYagg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.561 [XNIO-1 task-2] kJ_GeEGzR4qN65GvXnYagg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.562 [XNIO-1 task-2] kJ_GeEGzR4qN65GvXnYagg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.564 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:098c15a9-13cd-473a-b4ce-a589503c2e49 +16:40:54.566 [XNIO-1 task-2] UFQDdoRtSmS67xa9TrScUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:54.567 [XNIO-1 task-2] UFQDdoRtSmS67xa9TrScUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.567 [XNIO-1 task-2] UFQDdoRtSmS67xa9TrScUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.567 [XNIO-1 task-2] UFQDdoRtSmS67xa9TrScUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:54.567 [XNIO-1 task-2] UFQDdoRtSmS67xa9TrScUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:54.569 [XNIO-1 task-2] UFQDdoRtSmS67xa9TrScUQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:54.573 [XNIO-1 task-2] QMgRQSyPQ5WsCHLkmeyPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.573 [XNIO-1 task-2] QMgRQSyPQ5WsCHLkmeyPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.573 [XNIO-1 task-2] QMgRQSyPQ5WsCHLkmeyPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.573 [XNIO-1 task-2] QMgRQSyPQ5WsCHLkmeyPww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.573 [XNIO-1 task-2] QMgRQSyPQ5WsCHLkmeyPww DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.576 [XNIO-1 task-2] KRsIbZlwQaSY_vbUTLGR5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:54.576 [XNIO-1 task-2] KRsIbZlwQaSY_vbUTLGR5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.576 [XNIO-1 task-2] KRsIbZlwQaSY_vbUTLGR5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.576 [XNIO-1 task-2] KRsIbZlwQaSY_vbUTLGR5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:54.576 [XNIO-1 task-2] KRsIbZlwQaSY_vbUTLGR5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:54.576 [XNIO-1 task-2] KRsIbZlwQaSY_vbUTLGR5Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:54.579 [XNIO-1 task-2] CP07dQVDRx-io794eQJNSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.579 [XNIO-1 task-2] CP07dQVDRx-io794eQJNSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.579 [XNIO-1 task-2] CP07dQVDRx-io794eQJNSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.579 [XNIO-1 task-2] CP07dQVDRx-io794eQJNSA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.584 [XNIO-1 task-2] 8Rk1qxaqSBOzb9naJbIaSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.584 [XNIO-1 task-2] 8Rk1qxaqSBOzb9naJbIaSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.584 [XNIO-1 task-2] 8Rk1qxaqSBOzb9naJbIaSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.584 [XNIO-1 task-2] 8Rk1qxaqSBOzb9naJbIaSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.584 [XNIO-1 task-2] 8Rk1qxaqSBOzb9naJbIaSA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.591 [XNIO-1 task-2] QhYqzSWGRVuyYIcawYfpeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.591 [XNIO-1 task-2] QhYqzSWGRVuyYIcawYfpeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.591 [XNIO-1 task-2] QhYqzSWGRVuyYIcawYfpeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.591 [XNIO-1 task-2] QhYqzSWGRVuyYIcawYfpeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.596 [XNIO-1 task-2] BWFXm0AvQLSKu0nBhkfGFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.596 [XNIO-1 task-2] BWFXm0AvQLSKu0nBhkfGFg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.596 [XNIO-1 task-2] BWFXm0AvQLSKu0nBhkfGFg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.596 [XNIO-1 task-2] BWFXm0AvQLSKu0nBhkfGFg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.596 [XNIO-1 task-2] BWFXm0AvQLSKu0nBhkfGFg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.602 [XNIO-1 task-2] 5sqb92qDQmWb8cX87F9i1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.603 [XNIO-1 task-2] 5sqb92qDQmWb8cX87F9i1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.603 [XNIO-1 task-2] 5sqb92qDQmWb8cX87F9i1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.603 [XNIO-1 task-2] 5sqb92qDQmWb8cX87F9i1w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.603 [XNIO-1 task-2] 5sqb92qDQmWb8cX87F9i1w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.605 [XNIO-1 task-2] vRPC5xCUQOG752nBhd699g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:54.605 [XNIO-1 task-2] vRPC5xCUQOG752nBhd699g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.605 [XNIO-1 task-2] vRPC5xCUQOG752nBhd699g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.605 [XNIO-1 task-2] vRPC5xCUQOG752nBhd699g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:54.605 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fa739739-50ea-4604-b7e1-c89f4a601481 +16:40:54.605 [XNIO-1 task-2] vRPC5xCUQOG752nBhd699g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.606 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:fa739739-50ea-4604-b7e1-c89f4a601481 +16:40:54.608 [XNIO-1 task-2] pgnE1RGITsOdKuDCCiSdmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.608 [XNIO-1 task-2] pgnE1RGITsOdKuDCCiSdmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.608 [XNIO-1 task-2] pgnE1RGITsOdKuDCCiSdmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.609 [XNIO-1 task-2] pgnE1RGITsOdKuDCCiSdmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.609 [XNIO-1 task-2] pgnE1RGITsOdKuDCCiSdmA DEBUG com.networknt.schema.TypeValidator debug - validate( "ffe5c4de-824c-4690-863d-523c1f89182a", "ffe5c4de-824c-4690-863d-523c1f89182a", refreshToken) +16:40:54.609 [XNIO-1 task-2] pgnE1RGITsOdKuDCCiSdmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ffe5c4de-824c-4690-863d-523c1f89182a is not found.","severity":"ERROR"} +16:40:54.611 [XNIO-1 task-2] 5j-nABF4RtaQ_G_dSem3XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.611 [XNIO-1 task-2] 5j-nABF4RtaQ_G_dSem3XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.611 [XNIO-1 task-2] 5j-nABF4RtaQ_G_dSem3XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.611 [XNIO-1 task-2] 5j-nABF4RtaQ_G_dSem3XQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.611 [XNIO-1 task-2] 5j-nABF4RtaQ_G_dSem3XQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:54.612 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:907bbd70-ac28-4b21-8025-bd9e916ff0f9 +16:40:54.615 [XNIO-1 task-2] PiPxQNYNSpa7x-3RIypvsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.616 [XNIO-1 task-2] PiPxQNYNSpa7x-3RIypvsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.616 [XNIO-1 task-2] PiPxQNYNSpa7x-3RIypvsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.616 [XNIO-1 task-2] PiPxQNYNSpa7x-3RIypvsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.616 [XNIO-1 task-2] PiPxQNYNSpa7x-3RIypvsg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.624 [XNIO-1 task-2] 2WYPGBOBSTOTTWIqV8WHYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.625 [XNIO-1 task-2] 2WYPGBOBSTOTTWIqV8WHYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.625 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fa739739-50ea-4604-b7e1-c89f4a601481 +16:40:54.625 [XNIO-1 task-2] 2WYPGBOBSTOTTWIqV8WHYw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.625 [XNIO-1 task-2] 2WYPGBOBSTOTTWIqV8WHYw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.630 [XNIO-1 task-2] vbqWLfUFTyqhhNo08EoCTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.630 [XNIO-1 task-2] vbqWLfUFTyqhhNo08EoCTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.630 [XNIO-1 task-2] vbqWLfUFTyqhhNo08EoCTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.630 [XNIO-1 task-2] vbqWLfUFTyqhhNo08EoCTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.630 [XNIO-1 task-2] vbqWLfUFTyqhhNo08EoCTg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.632 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:40139f4d +16:40:54.632 [XNIO-1 task-2] ke98t2xSTSOVgB9gDwZPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.632 [XNIO-1 task-2] ke98t2xSTSOVgB9gDwZPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.632 [XNIO-1 task-2] ke98t2xSTSOVgB9gDwZPbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.632 [XNIO-1 task-2] ke98t2xSTSOVgB9gDwZPbA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.633 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:40139f4d +16:40:54.639 [XNIO-1 task-2] fXEIGnknQYKFhcBDbpMn-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.639 [XNIO-1 task-2] fXEIGnknQYKFhcBDbpMn-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.640 [XNIO-1 task-2] fXEIGnknQYKFhcBDbpMn-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.640 [XNIO-1 task-2] fXEIGnknQYKFhcBDbpMn-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.640 [XNIO-1 task-2] fXEIGnknQYKFhcBDbpMn-g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.642 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:82c50ede-2ca2-4ecf-a16d-151b67ffaffc +16:40:54.645 [XNIO-1 task-2] TENfyJR0QHyHLF-q8dv9uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.645 [XNIO-1 task-2] TENfyJR0QHyHLF-q8dv9uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.645 [XNIO-1 task-2] TENfyJR0QHyHLF-q8dv9uA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.645 [XNIO-1 task-2] TENfyJR0QHyHLF-q8dv9uA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.645 [XNIO-1 task-2] TENfyJR0QHyHLF-q8dv9uA DEBUG com.networknt.schema.TypeValidator debug - validate( "ffe5c4de-824c-4690-863d-523c1f89182a", "ffe5c4de-824c-4690-863d-523c1f89182a", refreshToken) +16:40:54.645 [XNIO-1 task-2] TENfyJR0QHyHLF-q8dv9uA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ffe5c4de-824c-4690-863d-523c1f89182a is not found.","severity":"ERROR"} +16:40:54.647 [XNIO-1 task-2] 1s9tmjkGRk6DSIsLgHMt4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.647 [XNIO-1 task-2] 1s9tmjkGRk6DSIsLgHMt4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.647 [XNIO-1 task-2] 1s9tmjkGRk6DSIsLgHMt4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.648 [XNIO-1 task-2] 1s9tmjkGRk6DSIsLgHMt4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.648 [XNIO-1 task-2] 1s9tmjkGRk6DSIsLgHMt4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.654 [XNIO-1 task-2] NonN5QWrQHWsSd50NHyJUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.655 [XNIO-1 task-2] NonN5QWrQHWsSd50NHyJUw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.655 [XNIO-1 task-2] NonN5QWrQHWsSd50NHyJUw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.655 [XNIO-1 task-2] NonN5QWrQHWsSd50NHyJUw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.655 [XNIO-1 task-2] NonN5QWrQHWsSd50NHyJUw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.660 [XNIO-1 task-2] boUJIf3BSq-GS_WGFWXDrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.660 [XNIO-1 task-2] boUJIf3BSq-GS_WGFWXDrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.660 [XNIO-1 task-2] boUJIf3BSq-GS_WGFWXDrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.660 [XNIO-1 task-2] boUJIf3BSq-GS_WGFWXDrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.665 [XNIO-1 task-2] FpF-3STLSGKPqiIPxzVJCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.665 [XNIO-1 task-2] FpF-3STLSGKPqiIPxzVJCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.665 [XNIO-1 task-2] FpF-3STLSGKPqiIPxzVJCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.665 [XNIO-1 task-2] FpF-3STLSGKPqiIPxzVJCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.666 [XNIO-1 task-2] FpF-3STLSGKPqiIPxzVJCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ffe5c4de-824c-4690-863d-523c1f89182a", "ffe5c4de-824c-4690-863d-523c1f89182a", refreshToken) +16:40:54.666 [XNIO-1 task-2] FpF-3STLSGKPqiIPxzVJCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ffe5c4de-824c-4690-863d-523c1f89182a is not found.","severity":"ERROR"} +16:40:54.673 [XNIO-1 task-2] 3QMuCvfTTrqQ8d0XKxKvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.673 [XNIO-1 task-2] 3QMuCvfTTrqQ8d0XKxKvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.673 [XNIO-1 task-2] 3QMuCvfTTrqQ8d0XKxKvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.673 [XNIO-1 task-2] 3QMuCvfTTrqQ8d0XKxKvsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.673 [XNIO-1 task-2] 3QMuCvfTTrqQ8d0XKxKvsQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:54.675 [XNIO-1 task-2] b5D7Nz5rQOCAOvVEfvFQwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.675 [XNIO-1 task-2] b5D7Nz5rQOCAOvVEfvFQwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.675 [XNIO-1 task-2] b5D7Nz5rQOCAOvVEfvFQwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.675 [XNIO-1 task-2] b5D7Nz5rQOCAOvVEfvFQwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:54.676 [XNIO-1 task-2] b5D7Nz5rQOCAOvVEfvFQwg DEBUG com.networknt.schema.TypeValidator debug - validate( "ffe5c4de-824c-4690-863d-523c1f89182a", "ffe5c4de-824c-4690-863d-523c1f89182a", refreshToken) +16:40:54.676 [XNIO-1 task-2] b5D7Nz5rQOCAOvVEfvFQwg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ffe5c4de-824c-4690-863d-523c1f89182a is not found.","severity":"ERROR"} +16:40:54.677 [XNIO-1 task-2] 14Q_sAgQSISgytVkjf7biA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.677 [XNIO-1 task-2] 14Q_sAgQSISgytVkjf7biA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.677 [XNIO-1 task-2] 14Q_sAgQSISgytVkjf7biA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.677 [XNIO-1 task-2] 14Q_sAgQSISgytVkjf7biA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.678 [XNIO-1 task-2] 14Q_sAgQSISgytVkjf7biA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.686 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ClientMapStore load - Load:11a9d25b-122c-452e-b7fb-fef0ba82393c +16:40:54.690 [XNIO-1 task-2] ZIKeRrzwQ6W7517tClpyoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.690 [XNIO-1 task-2] ZIKeRrzwQ6W7517tClpyoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.690 [XNIO-1 task-2] ZIKeRrzwQ6W7517tClpyoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.690 [XNIO-1 task-2] ZIKeRrzwQ6W7517tClpyoQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.693 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a9f269a5-ea7f-4fd6-8618-1c17b0585980 +16:40:54.697 [XNIO-1 task-2] YFV9-7j3RdOq1Pqhcexuwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.697 [XNIO-1 task-2] YFV9-7j3RdOq1Pqhcexuwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.698 [XNIO-1 task-2] YFV9-7j3RdOq1Pqhcexuwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.698 [XNIO-1 task-2] YFV9-7j3RdOq1Pqhcexuwg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.704 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:40139f4d +16:40:54.706 [XNIO-1 task-2] FhpDMzKRROeIZZeueh8vcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.706 [XNIO-1 task-2] FhpDMzKRROeIZZeueh8vcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.706 [XNIO-1 task-2] FhpDMzKRROeIZZeueh8vcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.706 [XNIO-1 task-2] FhpDMzKRROeIZZeueh8vcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.706 [XNIO-1 task-2] FhpDMzKRROeIZZeueh8vcg DEBUG com.networknt.schema.TypeValidator debug - validate( "efef361f-9987-4a78-b749-2c6311a0f934", "efef361f-9987-4a78-b749-2c6311a0f934", refreshToken) +16:40:54.715 [XNIO-1 task-2] HIaRDAATSq-BiNlCcTbUgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.715 [XNIO-1 task-2] HIaRDAATSq-BiNlCcTbUgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.716 [XNIO-1 task-2] HIaRDAATSq-BiNlCcTbUgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.716 [XNIO-1 task-2] HIaRDAATSq-BiNlCcTbUgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.716 [XNIO-1 task-2] HIaRDAATSq-BiNlCcTbUgQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.723 [XNIO-1 task-2] U7ZTppn1RlmLk3ogNnNctQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.723 [XNIO-1 task-2] U7ZTppn1RlmLk3ogNnNctQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.724 [XNIO-1 task-2] U7ZTppn1RlmLk3ogNnNctQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.724 [XNIO-1 task-2] U7ZTppn1RlmLk3ogNnNctQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.724 [XNIO-1 task-2] U7ZTppn1RlmLk3ogNnNctQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.730 [XNIO-1 task-2] vNCJeXjpQyWHOy-2EvtHLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.730 [XNIO-1 task-2] vNCJeXjpQyWHOy-2EvtHLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.730 [XNIO-1 task-2] vNCJeXjpQyWHOy-2EvtHLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.730 [XNIO-1 task-2] vNCJeXjpQyWHOy-2EvtHLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.730 [XNIO-1 task-2] vNCJeXjpQyWHOy-2EvtHLw DEBUG com.networknt.schema.TypeValidator debug - validate( "efef361f-9987-4a78-b749-2c6311a0f934", "efef361f-9987-4a78-b749-2c6311a0f934", refreshToken) +16:40:54.730 [XNIO-1 task-2] vNCJeXjpQyWHOy-2EvtHLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token efef361f-9987-4a78-b749-2c6311a0f934 is not found.","severity":"ERROR"} +16:40:54.741 [XNIO-1 task-2] dnoUQctLRDeDDwP_NZ92vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.741 [XNIO-1 task-2] dnoUQctLRDeDDwP_NZ92vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.741 [XNIO-1 task-2] dnoUQctLRDeDDwP_NZ92vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.741 [XNIO-1 task-2] dnoUQctLRDeDDwP_NZ92vA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.750 [XNIO-1 task-2] y177z-BWSnaiPyuJrVJLuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.750 [XNIO-1 task-2] y177z-BWSnaiPyuJrVJLuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.750 [XNIO-1 task-2] y177z-BWSnaiPyuJrVJLuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.750 [XNIO-1 task-2] y177z-BWSnaiPyuJrVJLuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.750 [XNIO-1 task-2] y177z-BWSnaiPyuJrVJLuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "efef361f-9987-4a78-b749-2c6311a0f934", "efef361f-9987-4a78-b749-2c6311a0f934", refreshToken) +16:40:54.750 [XNIO-1 task-2] y177z-BWSnaiPyuJrVJLuQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token efef361f-9987-4a78-b749-2c6311a0f934 is not found.","severity":"ERROR"} +16:40:54.753 [XNIO-1 task-2] BUfDZ_PHQuifiG-irgvPDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.753 [XNIO-1 task-2] BUfDZ_PHQuifiG-irgvPDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.753 [XNIO-1 task-2] BUfDZ_PHQuifiG-irgvPDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.753 [XNIO-1 task-2] BUfDZ_PHQuifiG-irgvPDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.753 [XNIO-1 task-2] BUfDZ_PHQuifiG-irgvPDg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.759 [XNIO-1 task-2] y4ufVn5xRNy2ReA2quK4hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.759 [XNIO-1 task-2] y4ufVn5xRNy2ReA2quK4hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.760 [XNIO-1 task-2] y4ufVn5xRNy2ReA2quK4hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.760 [XNIO-1 task-2] y4ufVn5xRNy2ReA2quK4hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.760 [XNIO-1 task-2] y4ufVn5xRNy2ReA2quK4hQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.770 [XNIO-1 task-2] nsSjZqWOSUmokf80hf4gYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.770 [XNIO-1 task-2] nsSjZqWOSUmokf80hf4gYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.771 [XNIO-1 task-2] nsSjZqWOSUmokf80hf4gYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.771 [XNIO-1 task-2] nsSjZqWOSUmokf80hf4gYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.771 [XNIO-1 task-2] nsSjZqWOSUmokf80hf4gYg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.777 [XNIO-1 task-2] KufLej5lQW2iizRymRR1YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.777 [XNIO-1 task-2] KufLej5lQW2iizRymRR1YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.777 [XNIO-1 task-2] KufLej5lQW2iizRymRR1YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.777 [XNIO-1 task-2] KufLej5lQW2iizRymRR1YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.777 [XNIO-1 task-2] KufLej5lQW2iizRymRR1YA DEBUG com.networknt.schema.TypeValidator debug - validate( "efef361f-9987-4a78-b749-2c6311a0f934", "efef361f-9987-4a78-b749-2c6311a0f934", refreshToken) +16:40:54.777 [XNIO-1 task-2] KufLej5lQW2iizRymRR1YA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token efef361f-9987-4a78-b749-2c6311a0f934 is not found.","severity":"ERROR"} +16:40:54.779 [XNIO-1 task-2] AolTQJHATv6SI9p-aqqPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.779 [XNIO-1 task-2] AolTQJHATv6SI9p-aqqPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.779 [XNIO-1 task-2] AolTQJHATv6SI9p-aqqPEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.780 [XNIO-1 task-2] AolTQJHATv6SI9p-aqqPEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.786 [XNIO-1 task-2] TK1xtroIQQGzdLRrhiMEBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.786 [XNIO-1 task-2] TK1xtroIQQGzdLRrhiMEBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.786 [XNIO-1 task-2] TK1xtroIQQGzdLRrhiMEBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.786 [XNIO-1 task-2] TK1xtroIQQGzdLRrhiMEBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.786 [XNIO-1 task-2] TK1xtroIQQGzdLRrhiMEBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "efef361f-9987-4a78-b749-2c6311a0f934", "efef361f-9987-4a78-b749-2c6311a0f934", refreshToken) +16:40:54.786 [XNIO-1 task-2] TK1xtroIQQGzdLRrhiMEBQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token efef361f-9987-4a78-b749-2c6311a0f934 is not found.","severity":"ERROR"} +16:40:54.788 [XNIO-1 task-2] pLl3K3VHQU-_c7moDtAexA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.788 [XNIO-1 task-2] pLl3K3VHQU-_c7moDtAexA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.788 [XNIO-1 task-2] pLl3K3VHQU-_c7moDtAexA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.789 [XNIO-1 task-2] pLl3K3VHQU-_c7moDtAexA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.818 [XNIO-1 task-2] 4pLt-zC5QOyhIkg91rkXLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.819 [XNIO-1 task-2] 4pLt-zC5QOyhIkg91rkXLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.819 [XNIO-1 task-2] 4pLt-zC5QOyhIkg91rkXLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.819 [XNIO-1 task-2] 4pLt-zC5QOyhIkg91rkXLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.819 [XNIO-1 task-2] 4pLt-zC5QOyhIkg91rkXLw DEBUG com.networknt.schema.TypeValidator debug - validate( "efef361f-9987-4a78-b749-2c6311a0f934", "efef361f-9987-4a78-b749-2c6311a0f934", refreshToken) +16:40:54.819 [XNIO-1 task-2] 4pLt-zC5QOyhIkg91rkXLw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token efef361f-9987-4a78-b749-2c6311a0f934 is not found.","severity":"ERROR"} +16:40:54.822 [XNIO-1 task-2] zh9i2OzyTe6QNjeBtvpXaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.822 [XNIO-1 task-2] zh9i2OzyTe6QNjeBtvpXaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.822 [XNIO-1 task-2] zh9i2OzyTe6QNjeBtvpXaw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.822 [XNIO-1 task-2] zh9i2OzyTe6QNjeBtvpXaw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.830 [XNIO-1 task-2] uXn2QxXqTqy4VIwnAwZBkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e, base path is set to: null +16:40:54.830 [XNIO-1 task-2] uXn2QxXqTqy4VIwnAwZBkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.830 [XNIO-1 task-2] uXn2QxXqTqy4VIwnAwZBkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.830 [XNIO-1 task-2] uXn2QxXqTqy4VIwnAwZBkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e, base path is set to: null +16:40:54.831 [XNIO-1 task-2] uXn2QxXqTqy4VIwnAwZBkA DEBUG com.networknt.schema.TypeValidator debug - validate( "49db389c-d393-49ac-aa67-3a5b7e17bd8e", "49db389c-d393-49ac-aa67-3a5b7e17bd8e", refreshToken) +16:40:54.861 [XNIO-1 task-2] DthdwYHFS8WnOUaukeAjWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.861 [XNIO-1 task-2] DthdwYHFS8WnOUaukeAjWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.861 [XNIO-1 task-2] DthdwYHFS8WnOUaukeAjWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.862 [XNIO-1 task-2] DthdwYHFS8WnOUaukeAjWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.862 [XNIO-1 task-2] DthdwYHFS8WnOUaukeAjWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9e9d2d23-5b91-42b0-9871-579b2289768a", "9e9d2d23-5b91-42b0-9871-579b2289768a", refreshToken) +16:40:54.862 [XNIO-1 task-2] DthdwYHFS8WnOUaukeAjWQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} +16:40:54.864 [XNIO-1 task-2] Q1IXxuneRaGOMwgZMLPTfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.865 [XNIO-1 task-2] Q1IXxuneRaGOMwgZMLPTfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.865 [XNIO-1 task-2] Q1IXxuneRaGOMwgZMLPTfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.865 [XNIO-1 task-2] Q1IXxuneRaGOMwgZMLPTfw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.906 [XNIO-1 task-2] mlSTkG5WQpy8bj0FSP9c4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.906 [XNIO-1 task-2] mlSTkG5WQpy8bj0FSP9c4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.906 [XNIO-1 task-2] mlSTkG5WQpy8bj0FSP9c4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.906 [XNIO-1 task-2] mlSTkG5WQpy8bj0FSP9c4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934, base path is set to: null +16:40:54.906 [XNIO-1 task-2] mlSTkG5WQpy8bj0FSP9c4A DEBUG com.networknt.schema.TypeValidator debug - validate( "efef361f-9987-4a78-b749-2c6311a0f934", "efef361f-9987-4a78-b749-2c6311a0f934", refreshToken) +16:40:54.907 [XNIO-1 task-2] mlSTkG5WQpy8bj0FSP9c4A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token efef361f-9987-4a78-b749-2c6311a0f934 is not found.","severity":"ERROR"} +16:40:54.911 [XNIO-1 task-2] 1fj5rq4ISfWyapO6evsd2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e +16:40:54.911 [XNIO-1 task-2] 1fj5rq4ISfWyapO6evsd2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.911 [XNIO-1 task-2] 1fj5rq4ISfWyapO6evsd2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.912 [XNIO-1 task-2] 1fj5rq4ISfWyapO6evsd2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e +16:40:54.912 [XNIO-1 task-2] 1fj5rq4ISfWyapO6evsd2A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 49db389c-d393-49ac-aa67-3a5b7e17bd8e +16:40:54.912 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:700a6ac1-1865-45d4-9d37-f1cd9c9fbb57 +16:40:54.916 [XNIO-1 task-2] TbuZM991Qa-7ufAUvUDR_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.916 [XNIO-1 task-2] TbuZM991Qa-7ufAUvUDR_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.917 [XNIO-1 task-2] TbuZM991Qa-7ufAUvUDR_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.917 [XNIO-1 task-2] TbuZM991Qa-7ufAUvUDR_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:54.917 [XNIO-1 task-2] TbuZM991Qa-7ufAUvUDR_A DEBUG com.networknt.schema.TypeValidator debug - validate( "9e9d2d23-5b91-42b0-9871-579b2289768a", "9e9d2d23-5b91-42b0-9871-579b2289768a", refreshToken) +16:40:54.917 [XNIO-1 task-2] TbuZM991Qa-7ufAUvUDR_A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} +16:40:54.925 [XNIO-1 task-2] VPmsKCBuSpS_6K6E0fYXLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.925 [XNIO-1 task-2] VPmsKCBuSpS_6K6E0fYXLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.925 [XNIO-1 task-2] VPmsKCBuSpS_6K6E0fYXLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.925 [XNIO-1 task-2] VPmsKCBuSpS_6K6E0fYXLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.926 [XNIO-1 task-2] VPmsKCBuSpS_6K6E0fYXLg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = efef361f-9987-4a78-b749-2c6311a0f934 +16:40:54.928 [XNIO-1 task-2] XvYapWIBSuC9tIStRUP1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e, base path is set to: null +16:40:54.928 [XNIO-1 task-2] XvYapWIBSuC9tIStRUP1ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.928 [XNIO-1 task-2] XvYapWIBSuC9tIStRUP1ew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:54.928 [XNIO-1 task-2] XvYapWIBSuC9tIStRUP1ew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e, base path is set to: null +16:40:54.928 [XNIO-1 task-2] XvYapWIBSuC9tIStRUP1ew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e +16:40:54.928 [XNIO-1 task-2] XvYapWIBSuC9tIStRUP1ew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 49db389c-d393-49ac-aa67-3a5b7e17bd8e +16:40:54.930 [XNIO-1 task-2] U6PKlX_tT26ypF6_B9KHAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.931 [XNIO-1 task-2] U6PKlX_tT26ypF6_B9KHAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.931 [XNIO-1 task-2] U6PKlX_tT26ypF6_B9KHAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.931 [XNIO-1 task-2] U6PKlX_tT26ypF6_B9KHAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.931 [XNIO-1 task-2] U6PKlX_tT26ypF6_B9KHAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:54.951 [XNIO-1 task-2] GNqpki63RAuYNIwNUFKoSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.951 [XNIO-1 task-2] GNqpki63RAuYNIwNUFKoSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:54.951 [XNIO-1 task-2] GNqpki63RAuYNIwNUFKoSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:54.951 [XNIO-1 task-2] GNqpki63RAuYNIwNUFKoSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.951 [XNIO-1 task-2] GNqpki63RAuYNIwNUFKoSA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:54.953 [XNIO-1 task-2] BDfM-M0USSmatmXo0n7lvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.953 [XNIO-1 task-2] BDfM-M0USSmatmXo0n7lvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:54.953 [XNIO-1 task-2] BDfM-M0USSmatmXo0n7lvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:54.953 [XNIO-1 task-2] BDfM-M0USSmatmXo0n7lvg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.953 [XNIO-1 task-2] BDfM-M0USSmatmXo0n7lvg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.021 [XNIO-1 task-2] Z3P16eYPQcWJ0ThW5m59tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.021 [XNIO-1 task-2] Z3P16eYPQcWJ0ThW5m59tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.021 [XNIO-1 task-2] Z3P16eYPQcWJ0ThW5m59tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.021 [XNIO-1 task-2] Z3P16eYPQcWJ0ThW5m59tg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.049 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:700a6ac1-1865-45d4-9d37-f1cd9c9fbb57 +16:40:55.050 [XNIO-1 task-2] 8rzBmCafSfquNCs5oKFEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.050 [XNIO-1 task-2] 8rzBmCafSfquNCs5oKFEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.050 [XNIO-1 task-2] 8rzBmCafSfquNCs5oKFEgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.050 [XNIO-1 task-2] 8rzBmCafSfquNCs5oKFEgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.054 [XNIO-1 task-2] YqvMqU3CQFmrRazwckbNsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.054 [XNIO-1 task-2] YqvMqU3CQFmrRazwckbNsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.055 [XNIO-1 task-2] YqvMqU3CQFmrRazwckbNsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.055 [XNIO-1 task-2] YqvMqU3CQFmrRazwckbNsA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.055 [XNIO-1 task-2] YqvMqU3CQFmrRazwckbNsA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.062 [XNIO-1 task-2] xFlB2EuKS4Sv4_1EiYjYvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/700a6ac1-1865-45d4-9d37-f1cd9c9fbb57 +16:40:55.062 [XNIO-1 task-2] xFlB2EuKS4Sv4_1EiYjYvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.062 [XNIO-1 task-2] xFlB2EuKS4Sv4_1EiYjYvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.062 [XNIO-1 task-2] xFlB2EuKS4Sv4_1EiYjYvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/700a6ac1-1865-45d4-9d37-f1cd9c9fbb57 +16:40:55.062 [XNIO-1 task-2] xFlB2EuKS4Sv4_1EiYjYvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 700a6ac1-1865-45d4-9d37-f1cd9c9fbb57 +16:40:55.064 [XNIO-1 task-2] xFlB2EuKS4Sv4_1EiYjYvA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 700a6ac1-1865-45d4-9d37-f1cd9c9fbb57 is not found.","severity":"ERROR"} +16:40:55.069 [XNIO-1 task-2] A60y1e6eRlCfSn8_j7WsrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:55.070 [XNIO-1 task-2] A60y1e6eRlCfSn8_j7WsrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.070 [XNIO-1 task-2] A60y1e6eRlCfSn8_j7WsrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.070 [XNIO-1 task-2] A60y1e6eRlCfSn8_j7WsrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:55.070 [XNIO-1 task-2] A60y1e6eRlCfSn8_j7WsrA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:55.072 [XNIO-1 task-2] CFunbCrnRuecW_a-OetIYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e, base path is set to: null +16:40:55.072 [XNIO-1 task-2] CFunbCrnRuecW_a-OetIYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.072 [XNIO-1 task-2] CFunbCrnRuecW_a-OetIYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.072 [XNIO-1 task-2] CFunbCrnRuecW_a-OetIYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/49db389c-d393-49ac-aa67-3a5b7e17bd8e, base path is set to: null +16:40:55.072 [XNIO-1 task-2] CFunbCrnRuecW_a-OetIYA DEBUG com.networknt.schema.TypeValidator debug - validate( "49db389c-d393-49ac-aa67-3a5b7e17bd8e", "49db389c-d393-49ac-aa67-3a5b7e17bd8e", refreshToken) +16:40:55.072 [XNIO-1 task-2] CFunbCrnRuecW_a-OetIYA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 49db389c-d393-49ac-aa67-3a5b7e17bd8e is not found.","severity":"ERROR"} +16:40:55.076 [XNIO-1 task-2] 8k5gk6dNSxiq-3iJmZgwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.076 [XNIO-1 task-2] 8k5gk6dNSxiq-3iJmZgwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.076 [XNIO-1 task-2] 8k5gk6dNSxiq-3iJmZgwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.076 [XNIO-1 task-2] 8k5gk6dNSxiq-3iJmZgwvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.077 [XNIO-1 task-2] 8k5gk6dNSxiq-3iJmZgwvA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.080 [XNIO-1 task-2] Xc9rXZFcQb-Ixg1x3Rohcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.080 [XNIO-1 task-2] Xc9rXZFcQb-Ixg1x3Rohcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.080 [XNIO-1 task-2] Xc9rXZFcQb-Ixg1x3Rohcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.080 [XNIO-1 task-2] Xc9rXZFcQb-Ixg1x3Rohcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.080 [XNIO-1 task-2] Xc9rXZFcQb-Ixg1x3Rohcg DEBUG com.networknt.schema.TypeValidator debug - validate( "9a71dcbc-71cd-42f4-9002-87be8e337e8a", "9a71dcbc-71cd-42f4-9002-87be8e337e8a", refreshToken) +16:40:55.080 [XNIO-1 task-2] Xc9rXZFcQb-Ixg1x3Rohcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a71dcbc-71cd-42f4-9002-87be8e337e8a is not found.","severity":"ERROR"} +16:40:55.082 [XNIO-1 task-2] 1e-4ZTdcRPONjIIxVy_GpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.082 [XNIO-1 task-2] 1e-4ZTdcRPONjIIxVy_GpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.082 [XNIO-1 task-2] 1e-4ZTdcRPONjIIxVy_GpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.082 [XNIO-1 task-2] 1e-4ZTdcRPONjIIxVy_GpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.082 [XNIO-1 task-2] 1e-4ZTdcRPONjIIxVy_GpQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.105 [XNIO-1 task-2] A7vY3R7SQfu37m4siBjcBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:55.105 [XNIO-1 task-2] A7vY3R7SQfu37m4siBjcBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.106 [XNIO-1 task-2] A7vY3R7SQfu37m4siBjcBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.106 [XNIO-1 task-2] A7vY3R7SQfu37m4siBjcBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:55.106 [XNIO-1 task-2] A7vY3R7SQfu37m4siBjcBw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a +16:40:55.111 [XNIO-1 task-2] 4SsWtbOKSF6bsC5tQWNiCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.111 [XNIO-1 task-2] 4SsWtbOKSF6bsC5tQWNiCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.111 [XNIO-1 task-2] 4SsWtbOKSF6bsC5tQWNiCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.111 [XNIO-1 task-2] 4SsWtbOKSF6bsC5tQWNiCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.111 [XNIO-1 task-2] 4SsWtbOKSF6bsC5tQWNiCw DEBUG com.networknt.schema.TypeValidator debug - validate( "9a71dcbc-71cd-42f4-9002-87be8e337e8a", "9a71dcbc-71cd-42f4-9002-87be8e337e8a", refreshToken) +16:40:55.111 [XNIO-1 task-2] 4SsWtbOKSF6bsC5tQWNiCw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a71dcbc-71cd-42f4-9002-87be8e337e8a is not found.","severity":"ERROR"} +16:40:55.116 [XNIO-1 task-2] oMnq8Ip0RP--2_-k6rGqzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.117 [XNIO-1 task-2] oMnq8Ip0RP--2_-k6rGqzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.117 [XNIO-1 task-2] oMnq8Ip0RP--2_-k6rGqzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.117 [XNIO-1 task-2] oMnq8Ip0RP--2_-k6rGqzA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.117 [XNIO-1 task-2] oMnq8Ip0RP--2_-k6rGqzA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.120 [XNIO-1 task-2] bRwmCa2kQWGngw-6u4xXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.120 [XNIO-1 task-2] bRwmCa2kQWGngw-6u4xXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.121 [XNIO-1 task-2] bRwmCa2kQWGngw-6u4xXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.121 [XNIO-1 task-2] bRwmCa2kQWGngw-6u4xXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.121 [XNIO-1 task-2] bRwmCa2kQWGngw-6u4xXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "9a71dcbc-71cd-42f4-9002-87be8e337e8a", "9a71dcbc-71cd-42f4-9002-87be8e337e8a", refreshToken) +16:40:55.121 [XNIO-1 task-2] bRwmCa2kQWGngw-6u4xXfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a71dcbc-71cd-42f4-9002-87be8e337e8a is not found.","severity":"ERROR"} +16:40:55.123 [XNIO-1 task-2] rXGbdCkQRZ-aX2Q29Fjpwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.123 [XNIO-1 task-2] rXGbdCkQRZ-aX2Q29Fjpwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.123 [XNIO-1 task-2] rXGbdCkQRZ-aX2Q29Fjpwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.123 [XNIO-1 task-2] rXGbdCkQRZ-aX2Q29Fjpwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.123 [XNIO-1 task-2] rXGbdCkQRZ-aX2Q29Fjpwg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.129 [XNIO-1 task-2] vHEdCN06T0GEAbBbp7FzeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.130 [XNIO-1 task-2] vHEdCN06T0GEAbBbp7FzeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.130 [XNIO-1 task-2] vHEdCN06T0GEAbBbp7FzeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.130 [XNIO-1 task-2] vHEdCN06T0GEAbBbp7FzeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9a71dcbc-71cd-42f4-9002-87be8e337e8a, base path is set to: null +16:40:55.130 [XNIO-1 task-2] vHEdCN06T0GEAbBbp7FzeA DEBUG com.networknt.schema.TypeValidator debug - validate( "9a71dcbc-71cd-42f4-9002-87be8e337e8a", "9a71dcbc-71cd-42f4-9002-87be8e337e8a", refreshToken) +16:40:55.130 [XNIO-1 task-2] vHEdCN06T0GEAbBbp7FzeA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9a71dcbc-71cd-42f4-9002-87be8e337e8a is not found.","severity":"ERROR"} +16:40:55.135 [XNIO-1 task-2] g-y1VeO5T0CY4mW4tAkt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.136 [XNIO-1 task-2] g-y1VeO5T0CY4mW4tAkt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.136 [XNIO-1 task-2] g-y1VeO5T0CY4mW4tAkt-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.136 [XNIO-1 task-2] g-y1VeO5T0CY4mW4tAkt-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.143 [XNIO-1 task-2] k3CljsVxRJaHyKEDCc1aJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/11f9e666-c15e-47ec-aaff-ddddb16c42d7, base path is set to: null +16:40:55.143 [XNIO-1 task-2] k3CljsVxRJaHyKEDCc1aJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.143 [XNIO-1 task-2] k3CljsVxRJaHyKEDCc1aJg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.143 [XNIO-1 task-2] k3CljsVxRJaHyKEDCc1aJg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/11f9e666-c15e-47ec-aaff-ddddb16c42d7, base path is set to: null +16:40:55.143 [XNIO-1 task-2] k3CljsVxRJaHyKEDCc1aJg DEBUG com.networknt.schema.TypeValidator debug - validate( "11f9e666-c15e-47ec-aaff-ddddb16c42d7", "11f9e666-c15e-47ec-aaff-ddddb16c42d7", refreshToken) +16:40:55.147 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:197b3c47-d8e0-4035-ab26-28a2868177f9 +16:40:55.149 [XNIO-1 task-2] 8K_FWzMYS2uCGnq3UIboEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a, base path is set to: null +16:40:55.150 [XNIO-1 task-2] 8K_FWzMYS2uCGnq3UIboEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.150 [XNIO-1 task-2] 8K_FWzMYS2uCGnq3UIboEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.150 [XNIO-1 task-2] 8K_FWzMYS2uCGnq3UIboEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a, base path is set to: null +16:40:55.150 [XNIO-1 task-2] 8K_FWzMYS2uCGnq3UIboEw DEBUG com.networknt.schema.TypeValidator debug - validate( "852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a", "852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a", refreshToken) +16:40:55.150 [XNIO-1 task-2] 8K_FWzMYS2uCGnq3UIboEw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a is not found.","severity":"ERROR"} +16:40:55.152 [XNIO-1 task-2] MjGX9khDTxyhC2h0XRuzPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.152 [XNIO-1 task-2] MjGX9khDTxyhC2h0XRuzPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.152 [XNIO-1 task-2] MjGX9khDTxyhC2h0XRuzPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.152 [XNIO-1 task-2] MjGX9khDTxyhC2h0XRuzPw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.152 [XNIO-1 task-2] MjGX9khDTxyhC2h0XRuzPw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.156 [XNIO-1 task-2] NjcuPnnhRZCv6faiojDsyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.156 [XNIO-1 task-2] NjcuPnnhRZCv6faiojDsyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.156 [XNIO-1 task-2] NjcuPnnhRZCv6faiojDsyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.156 [XNIO-1 task-2] NjcuPnnhRZCv6faiojDsyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.156 [XNIO-1 task-2] NjcuPnnhRZCv6faiojDsyw DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:55.156 [XNIO-1 task-2] NjcuPnnhRZCv6faiojDsyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:55.164 [XNIO-1 task-2] xqDg-vi2SI6A7eJLZfG_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.164 [XNIO-1 task-2] xqDg-vi2SI6A7eJLZfG_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.164 [XNIO-1 task-2] xqDg-vi2SI6A7eJLZfG_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.164 [XNIO-1 task-2] xqDg-vi2SI6A7eJLZfG_Zw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.164 [XNIO-1 task-2] xqDg-vi2SI6A7eJLZfG_Zw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.166 [XNIO-1 task-2] _yiAu1eKTF6GX-1ExtnY5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.166 [XNIO-1 task-2] _yiAu1eKTF6GX-1ExtnY5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.166 [XNIO-1 task-2] _yiAu1eKTF6GX-1ExtnY5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.166 [XNIO-1 task-2] _yiAu1eKTF6GX-1ExtnY5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.166 [XNIO-1 task-2] _yiAu1eKTF6GX-1ExtnY5g DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:55.166 [XNIO-1 task-2] _yiAu1eKTF6GX-1ExtnY5g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:55.169 [XNIO-1 task-2] I6CBnR2ES-25pC3irGxXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.169 [XNIO-1 task-2] I6CBnR2ES-25pC3irGxXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.169 [XNIO-1 task-2] I6CBnR2ES-25pC3irGxXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.169 [XNIO-1 task-2] I6CBnR2ES-25pC3irGxXuw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.169 [XNIO-1 task-2] I6CBnR2ES-25pC3irGxXuw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.174 [XNIO-1 task-2] rthcm76ZSZ6Cv3CIb_gysg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.174 [XNIO-1 task-2] rthcm76ZSZ6Cv3CIb_gysg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.174 [XNIO-1 task-2] rthcm76ZSZ6Cv3CIb_gysg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.174 [XNIO-1 task-2] rthcm76ZSZ6Cv3CIb_gysg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.175 [XNIO-1 task-2] rthcm76ZSZ6Cv3CIb_gysg DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:55.175 [XNIO-1 task-2] rthcm76ZSZ6Cv3CIb_gysg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:55.179 [XNIO-1 task-2] kb1QibgJRLy9VoHkJOwbZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.179 [XNIO-1 task-2] kb1QibgJRLy9VoHkJOwbZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.180 [XNIO-1 task-2] kb1QibgJRLy9VoHkJOwbZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.180 [XNIO-1 task-2] kb1QibgJRLy9VoHkJOwbZA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.185 [XNIO-1 task-2] dELlbYD2RP-B0u7OOljzTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:55.185 [XNIO-1 task-2] dELlbYD2RP-B0u7OOljzTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.185 [XNIO-1 task-2] dELlbYD2RP-B0u7OOljzTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.185 [XNIO-1 task-2] dELlbYD2RP-B0u7OOljzTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:55.185 [XNIO-1 task-2] dELlbYD2RP-B0u7OOljzTA DEBUG com.networknt.schema.TypeValidator debug - validate( "ffe5c4de-824c-4690-863d-523c1f89182a", "ffe5c4de-824c-4690-863d-523c1f89182a", refreshToken) +16:40:55.186 [XNIO-1 task-2] dELlbYD2RP-B0u7OOljzTA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ffe5c4de-824c-4690-863d-523c1f89182a is not found.","severity":"ERROR"} +16:40:55.193 [XNIO-1 task-2] 3AsZE8hMQla-G2VLJK5x6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.193 [XNIO-1 task-2] 3AsZE8hMQla-G2VLJK5x6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.193 [XNIO-1 task-2] 3AsZE8hMQla-G2VLJK5x6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.193 [XNIO-1 task-2] 3AsZE8hMQla-G2VLJK5x6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.193 [XNIO-1 task-2] 3AsZE8hMQla-G2VLJK5x6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.199 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore load - Load:7311f205-10e5-4d7d-b2d5-8557c2a8ce3a +16:40:55.201 [XNIO-1 task-2] T6KvMVkuSOGzrCn3a2SbZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.201 [XNIO-1 task-2] T6KvMVkuSOGzrCn3a2SbZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.201 [XNIO-1 task-2] T6KvMVkuSOGzrCn3a2SbZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.201 [XNIO-1 task-2] T6KvMVkuSOGzrCn3a2SbZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.201 [XNIO-1 task-2] T6KvMVkuSOGzrCn3a2SbZg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.201 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:7311f205-10e5-4d7d-b2d5-8557c2a8ce3a +16:40:55.203 [XNIO-1 task-2] 4f7e2nMeR-aYrTtlILigzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.203 [XNIO-1 task-2] 4f7e2nMeR-aYrTtlILigzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.203 [XNIO-1 task-2] 4f7e2nMeR-aYrTtlILigzw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.203 [XNIO-1 task-2] 4f7e2nMeR-aYrTtlILigzw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.203 [XNIO-1 task-2] 4f7e2nMeR-aYrTtlILigzw DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:55.204 [XNIO-1 task-2] 4f7e2nMeR-aYrTtlILigzw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:55.207 [XNIO-1 task-2] -BNAPGTCSvybU-AwUtYUvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.207 [XNIO-1 task-2] -BNAPGTCSvybU-AwUtYUvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.208 [XNIO-1 task-2] -BNAPGTCSvybU-AwUtYUvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.208 [XNIO-1 task-2] -BNAPGTCSvybU-AwUtYUvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.215 [XNIO-1 task-2] iRb3Fh1ZR4-9jIiCgDE76A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.215 [XNIO-1 task-2] iRb3Fh1ZR4-9jIiCgDE76A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.215 [XNIO-1 task-2] iRb3Fh1ZR4-9jIiCgDE76A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.215 [XNIO-1 task-2] iRb3Fh1ZR4-9jIiCgDE76A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.215 [XNIO-1 task-2] iRb3Fh1ZR4-9jIiCgDE76A DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.223 [XNIO-1 task-2] _L6MM-4_R9qOwfTEe65B1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.223 [XNIO-1 task-2] _L6MM-4_R9qOwfTEe65B1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.223 [XNIO-1 task-2] _L6MM-4_R9qOwfTEe65B1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.223 [XNIO-1 task-2] _L6MM-4_R9qOwfTEe65B1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.223 [XNIO-1 task-2] _L6MM-4_R9qOwfTEe65B1w DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.225 [XNIO-1 task-2] _L6MM-4_R9qOwfTEe65B1w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.230 [XNIO-1 task-2] gxF4oolFR32CxVmp8hUO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.230 [XNIO-1 task-2] gxF4oolFR32CxVmp8hUO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.230 [XNIO-1 task-2] gxF4oolFR32CxVmp8hUO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.230 [XNIO-1 task-2] gxF4oolFR32CxVmp8hUO7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.230 [XNIO-1 task-2] gxF4oolFR32CxVmp8hUO7Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.234 [XNIO-1 task-2] rrYaMjSVQ2e0ex23l-PRyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.235 [XNIO-1 task-2] rrYaMjSVQ2e0ex23l-PRyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.235 [XNIO-1 task-2] rrYaMjSVQ2e0ex23l-PRyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.235 [XNIO-1 task-2] rrYaMjSVQ2e0ex23l-PRyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.235 [XNIO-1 task-2] rrYaMjSVQ2e0ex23l-PRyw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.235 [XNIO-1 task-2] rrYaMjSVQ2e0ex23l-PRyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.238 [XNIO-1 task-2] BxaPsgXpRICA86oOE7Z7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.238 [XNIO-1 task-2] BxaPsgXpRICA86oOE7Z7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.238 [XNIO-1 task-2] BxaPsgXpRICA86oOE7Z7JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.238 [XNIO-1 task-2] BxaPsgXpRICA86oOE7Z7JA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.244 [XNIO-1 task-2] 2cwT__8LTM2MsEPQjnO6Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.244 [XNIO-1 task-2] 2cwT__8LTM2MsEPQjnO6Yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.244 [XNIO-1 task-2] 2cwT__8LTM2MsEPQjnO6Yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.244 [XNIO-1 task-2] 2cwT__8LTM2MsEPQjnO6Yg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.245 [XNIO-1 task-2] 2cwT__8LTM2MsEPQjnO6Yg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.252 [XNIO-1 task-2] C_qu9BQaSvCWmklyN_V_Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.252 [XNIO-1 task-2] C_qu9BQaSvCWmklyN_V_Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.252 [XNIO-1 task-2] C_qu9BQaSvCWmklyN_V_Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.252 [XNIO-1 task-2] C_qu9BQaSvCWmklyN_V_Hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.253 [XNIO-1 task-2] C_qu9BQaSvCWmklyN_V_Hw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.255 [XNIO-1 task-2] K6w3gkL2QH-eIAHGgoQo8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.255 [XNIO-1 task-2] K6w3gkL2QH-eIAHGgoQo8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.255 [XNIO-1 task-2] K6w3gkL2QH-eIAHGgoQo8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.255 [XNIO-1 task-2] K6w3gkL2QH-eIAHGgoQo8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.255 [XNIO-1 task-2] K6w3gkL2QH-eIAHGgoQo8A DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.255 [XNIO-1 task-2] K6w3gkL2QH-eIAHGgoQo8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.258 [XNIO-1 task-2] lL5lEZEFRFmXrmMHmF0Axw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.258 [XNIO-1 task-2] lL5lEZEFRFmXrmMHmF0Axw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.259 [XNIO-1 task-2] lL5lEZEFRFmXrmMHmF0Axw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.259 [XNIO-1 task-2] lL5lEZEFRFmXrmMHmF0Axw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.259 [XNIO-1 task-2] lL5lEZEFRFmXrmMHmF0Axw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.264 [XNIO-1 task-2] TBgcnDY3ST2MpIhTtNKwlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.265 [XNIO-1 task-2] TBgcnDY3ST2MpIhTtNKwlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.265 [XNIO-1 task-2] TBgcnDY3ST2MpIhTtNKwlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.265 [XNIO-1 task-2] TBgcnDY3ST2MpIhTtNKwlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.265 [XNIO-1 task-2] TBgcnDY3ST2MpIhTtNKwlg DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.265 [XNIO-1 task-2] TBgcnDY3ST2MpIhTtNKwlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.274 [XNIO-1 task-2] LaOS8DDnTqyYmYBIdWLmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.274 [XNIO-1 task-2] LaOS8DDnTqyYmYBIdWLmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.274 [XNIO-1 task-2] LaOS8DDnTqyYmYBIdWLmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.274 [XNIO-1 task-2] LaOS8DDnTqyYmYBIdWLmQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.274 [XNIO-1 task-2] LaOS8DDnTqyYmYBIdWLmQQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.280 [XNIO-1 task-2] C8rfHTnvTruoTrKayfzwCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.280 [XNIO-1 task-2] C8rfHTnvTruoTrKayfzwCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.280 [XNIO-1 task-2] C8rfHTnvTruoTrKayfzwCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.280 [XNIO-1 task-2] C8rfHTnvTruoTrKayfzwCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.280 [XNIO-1 task-2] C8rfHTnvTruoTrKayfzwCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.280 [XNIO-1 task-2] C8rfHTnvTruoTrKayfzwCQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.284 [XNIO-1 task-2] xwszy9MBT-qfca2IerfD2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.284 [XNIO-1 task-2] xwszy9MBT-qfca2IerfD2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.284 [XNIO-1 task-2] xwszy9MBT-qfca2IerfD2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.284 [XNIO-1 task-2] xwszy9MBT-qfca2IerfD2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.284 [XNIO-1 task-2] xwszy9MBT-qfca2IerfD2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.295 [XNIO-1 task-2] 1f2j3pTtQZi66pNLoDoVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.295 [XNIO-1 task-2] 1f2j3pTtQZi66pNLoDoVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.295 [XNIO-1 task-2] 1f2j3pTtQZi66pNLoDoVAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.295 [XNIO-1 task-2] 1f2j3pTtQZi66pNLoDoVAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.305 [XNIO-1 task-2] TGDV7zbRQECM37VuxP4d1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.305 [XNIO-1 task-2] TGDV7zbRQECM37VuxP4d1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.305 [XNIO-1 task-2] TGDV7zbRQECM37VuxP4d1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.305 [XNIO-1 task-2] TGDV7zbRQECM37VuxP4d1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.305 [XNIO-1 task-2] TGDV7zbRQECM37VuxP4d1w DEBUG com.networknt.schema.TypeValidator debug - validate( "95178b96-11fd-4700-a968-93d708db76a4", "95178b96-11fd-4700-a968-93d708db76a4", refreshToken) +16:40:55.307 [XNIO-1 task-2] TGDV7zbRQECM37VuxP4d1w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95178b96-11fd-4700-a968-93d708db76a4 is not found.","severity":"ERROR"} +16:40:55.314 [XNIO-1 task-2] 2gAX6z6nRe-3FsYZk0xIGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.314 [XNIO-1 task-2] 2gAX6z6nRe-3FsYZk0xIGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.314 [XNIO-1 task-2] 2gAX6z6nRe-3FsYZk0xIGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.314 [XNIO-1 task-2] 2gAX6z6nRe-3FsYZk0xIGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.324 [XNIO-1 task-2] GC2La3eiQ_y_q40Slpw-Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.324 [XNIO-1 task-2] GC2La3eiQ_y_q40Slpw-Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.324 [XNIO-1 task-2] GC2La3eiQ_y_q40Slpw-Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.324 [XNIO-1 task-2] GC2La3eiQ_y_q40Slpw-Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.324 [XNIO-1 task-2] GC2La3eiQ_y_q40Slpw-Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "95178b96-11fd-4700-a968-93d708db76a4", "95178b96-11fd-4700-a968-93d708db76a4", refreshToken) +16:40:55.324 [XNIO-1 task-2] GC2La3eiQ_y_q40Slpw-Hg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95178b96-11fd-4700-a968-93d708db76a4 is not found.","severity":"ERROR"} +16:40:55.327 [XNIO-1 task-2] gWb5lGN4SGCmGipOvMsJcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.327 [XNIO-1 task-2] gWb5lGN4SGCmGipOvMsJcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.327 [XNIO-1 task-2] gWb5lGN4SGCmGipOvMsJcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.327 [XNIO-1 task-2] gWb5lGN4SGCmGipOvMsJcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.327 [XNIO-1 task-2] gWb5lGN4SGCmGipOvMsJcQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.337 [XNIO-1 task-2] COE0F438TC6_atqZftcvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.337 [XNIO-1 task-2] COE0F438TC6_atqZftcvnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.337 [XNIO-1 task-2] COE0F438TC6_atqZftcvnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.337 [XNIO-1 task-2] COE0F438TC6_atqZftcvnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.338 [XNIO-1 task-2] COE0F438TC6_atqZftcvnw DEBUG com.networknt.schema.TypeValidator debug - validate( "95178b96-11fd-4700-a968-93d708db76a4", "95178b96-11fd-4700-a968-93d708db76a4", refreshToken) +16:40:55.338 [XNIO-1 task-2] COE0F438TC6_atqZftcvnw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95178b96-11fd-4700-a968-93d708db76a4 is not found.","severity":"ERROR"} +16:40:55.345 [XNIO-1 task-2] LBJecf3BQ_acrVr9i9KbsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.345 [XNIO-1 task-2] LBJecf3BQ_acrVr9i9KbsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.345 [XNIO-1 task-2] LBJecf3BQ_acrVr9i9KbsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.345 [XNIO-1 task-2] LBJecf3BQ_acrVr9i9KbsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.345 [XNIO-1 task-2] LBJecf3BQ_acrVr9i9KbsA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.351 [XNIO-1 task-2] jk3Y4PpJSGSv6AiwC8Y20w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.351 [XNIO-1 task-2] jk3Y4PpJSGSv6AiwC8Y20w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.351 [XNIO-1 task-2] jk3Y4PpJSGSv6AiwC8Y20w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.351 [XNIO-1 task-2] jk3Y4PpJSGSv6AiwC8Y20w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.351 [XNIO-1 task-2] jk3Y4PpJSGSv6AiwC8Y20w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.361 [XNIO-1 task-2] LhnzZcfVRtKZa_cVqT1L5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.361 [XNIO-1 task-2] LhnzZcfVRtKZa_cVqT1L5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.361 [XNIO-1 task-2] LhnzZcfVRtKZa_cVqT1L5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.361 [XNIO-1 task-2] LhnzZcfVRtKZa_cVqT1L5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.361 [XNIO-1 task-2] LhnzZcfVRtKZa_cVqT1L5g DEBUG com.networknt.schema.TypeValidator debug - validate( "95178b96-11fd-4700-a968-93d708db76a4", "95178b96-11fd-4700-a968-93d708db76a4", refreshToken) +16:40:55.361 [XNIO-1 task-2] LhnzZcfVRtKZa_cVqT1L5g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95178b96-11fd-4700-a968-93d708db76a4 is not found.","severity":"ERROR"} +16:40:55.368 [XNIO-1 task-2] Yosr_Z2sRym7iHTAtAROfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.368 [XNIO-1 task-2] Yosr_Z2sRym7iHTAtAROfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.368 [XNIO-1 task-2] Yosr_Z2sRym7iHTAtAROfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.368 [XNIO-1 task-2] Yosr_Z2sRym7iHTAtAROfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.368 [XNIO-1 task-2] Yosr_Z2sRym7iHTAtAROfg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.371 [XNIO-1 task-2] THVDOB0ARp-ubKhWbe-mKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.371 [XNIO-1 task-2] THVDOB0ARp-ubKhWbe-mKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.371 [XNIO-1 task-2] THVDOB0ARp-ubKhWbe-mKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.371 [XNIO-1 task-2] THVDOB0ARp-ubKhWbe-mKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4, base path is set to: null +16:40:55.371 [XNIO-1 task-2] THVDOB0ARp-ubKhWbe-mKw DEBUG com.networknt.schema.TypeValidator debug - validate( "95178b96-11fd-4700-a968-93d708db76a4", "95178b96-11fd-4700-a968-93d708db76a4", refreshToken) +16:40:55.371 [XNIO-1 task-2] THVDOB0ARp-ubKhWbe-mKw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95178b96-11fd-4700-a968-93d708db76a4 is not found.","severity":"ERROR"} +16:40:55.375 [XNIO-1 task-2] _hGgLgCzQsKY2glRAx_IWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.375 [XNIO-1 task-2] _hGgLgCzQsKY2glRAx_IWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.375 [XNIO-1 task-2] _hGgLgCzQsKY2glRAx_IWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.375 [XNIO-1 task-2] _hGgLgCzQsKY2glRAx_IWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.375 [XNIO-1 task-2] _hGgLgCzQsKY2glRAx_IWQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.380 [XNIO-1 task-2] raAdykMTTHSKnmgT_QZT9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.380 [XNIO-1 task-2] raAdykMTTHSKnmgT_QZT9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.380 [XNIO-1 task-2] raAdykMTTHSKnmgT_QZT9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.380 [XNIO-1 task-2] raAdykMTTHSKnmgT_QZT9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.380 [XNIO-1 task-2] raAdykMTTHSKnmgT_QZT9A DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:55.386 [XNIO-1 task-2] LZI1cILZRUildrmm9F98Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.386 [XNIO-1 task-2] LZI1cILZRUildrmm9F98Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.386 [XNIO-1 task-2] LZI1cILZRUildrmm9F98Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.386 [XNIO-1 task-2] LZI1cILZRUildrmm9F98Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.386 [XNIO-1 task-2] LZI1cILZRUildrmm9F98Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:55.386 [XNIO-1 task-2] LZI1cILZRUildrmm9F98Mw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:55.388 [XNIO-1 task-2] tlamxRYkTCqaf6fwMJmB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.389 [XNIO-1 task-2] tlamxRYkTCqaf6fwMJmB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.389 [XNIO-1 task-2] tlamxRYkTCqaf6fwMJmB4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.389 [XNIO-1 task-2] tlamxRYkTCqaf6fwMJmB4g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.395 [XNIO-1 task-2] 3pp5r6KeSu6NinGTsE4Avw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.395 [XNIO-1 task-2] 3pp5r6KeSu6NinGTsE4Avw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.395 [XNIO-1 task-2] 3pp5r6KeSu6NinGTsE4Avw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.395 [XNIO-1 task-2] 3pp5r6KeSu6NinGTsE4Avw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.395 [XNIO-1 task-2] 3pp5r6KeSu6NinGTsE4Avw DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:55.395 [XNIO-1 task-2] 3pp5r6KeSu6NinGTsE4Avw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:55.402 [XNIO-1 task-2] ZQEmxJZaQSmvtsteft3aEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.402 [XNIO-1 task-2] ZQEmxJZaQSmvtsteft3aEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.402 [XNIO-1 task-2] ZQEmxJZaQSmvtsteft3aEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.402 [XNIO-1 task-2] ZQEmxJZaQSmvtsteft3aEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.403 [XNIO-1 task-2] ZQEmxJZaQSmvtsteft3aEQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.406 [XNIO-1 task-2] wAhfewcvTuCGx4T6wqmuUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a, base path is set to: null +16:40:55.406 [XNIO-1 task-2] wAhfewcvTuCGx4T6wqmuUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.406 [XNIO-1 task-2] wAhfewcvTuCGx4T6wqmuUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.407 [XNIO-1 task-2] wAhfewcvTuCGx4T6wqmuUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a, base path is set to: null +16:40:55.407 [XNIO-1 task-2] wAhfewcvTuCGx4T6wqmuUg DEBUG com.networknt.schema.TypeValidator debug - validate( "852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a", "852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a", refreshToken) +16:40:55.407 [XNIO-1 task-2] wAhfewcvTuCGx4T6wqmuUg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a is not found.","severity":"ERROR"} +16:40:55.410 [XNIO-1 task-2] 4ni0YmfzQB2lp1tj5oMiTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.410 [XNIO-1 task-2] 4ni0YmfzQB2lp1tj5oMiTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.411 [XNIO-1 task-2] 4ni0YmfzQB2lp1tj5oMiTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.411 [XNIO-1 task-2] 4ni0YmfzQB2lp1tj5oMiTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.411 [XNIO-1 task-2] 4ni0YmfzQB2lp1tj5oMiTg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.415 [XNIO-1 task-2] 0URHGGv9TzCzGiL3BDJ64A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:55.415 [XNIO-1 task-2] 0URHGGv9TzCzGiL3BDJ64A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.415 [XNIO-1 task-2] 0URHGGv9TzCzGiL3BDJ64A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.415 [XNIO-1 task-2] 0URHGGv9TzCzGiL3BDJ64A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/9e9d2d23-5b91-42b0-9871-579b2289768a, base path is set to: null +16:40:55.415 [XNIO-1 task-2] 0URHGGv9TzCzGiL3BDJ64A DEBUG com.networknt.schema.TypeValidator debug - validate( "9e9d2d23-5b91-42b0-9871-579b2289768a", "9e9d2d23-5b91-42b0-9871-579b2289768a", refreshToken) +16:40:55.415 [XNIO-1 task-2] 0URHGGv9TzCzGiL3BDJ64A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} +16:40:55.418 [XNIO-1 task-2] i0H6CoDcTmijjRloXukTbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.418 [XNIO-1 task-2] i0H6CoDcTmijjRloXukTbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.418 [XNIO-1 task-2] i0H6CoDcTmijjRloXukTbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.418 [XNIO-1 task-2] i0H6CoDcTmijjRloXukTbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.418 [XNIO-1 task-2] i0H6CoDcTmijjRloXukTbg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.420 [XNIO-1 task-2] Hp-8IjrqR3qlof2nSN3HmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.420 [XNIO-1 task-2] Hp-8IjrqR3qlof2nSN3HmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.420 [XNIO-1 task-2] Hp-8IjrqR3qlof2nSN3HmA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.420 [XNIO-1 task-2] Hp-8IjrqR3qlof2nSN3HmA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.421 [XNIO-1 task-2] Hp-8IjrqR3qlof2nSN3HmA DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:55.421 [XNIO-1 task-2] Hp-8IjrqR3qlof2nSN3HmA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:55.426 [XNIO-1 task-2] XUxmJaH9RB6rGJCU5wOU8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.426 [XNIO-1 task-2] XUxmJaH9RB6rGJCU5wOU8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.426 [XNIO-1 task-2] XUxmJaH9RB6rGJCU5wOU8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.426 [XNIO-1 task-2] XUxmJaH9RB6rGJCU5wOU8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.426 [XNIO-1 task-2] XUxmJaH9RB6rGJCU5wOU8g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.428 [XNIO-1 task-2] A_ZX6TyPRsGYwpjvhkMHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.429 [XNIO-1 task-2] A_ZX6TyPRsGYwpjvhkMHrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.429 [XNIO-1 task-2] A_ZX6TyPRsGYwpjvhkMHrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.429 [XNIO-1 task-2] A_ZX6TyPRsGYwpjvhkMHrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.429 [XNIO-1 task-2] A_ZX6TyPRsGYwpjvhkMHrA DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:55.429 [XNIO-1 task-2] A_ZX6TyPRsGYwpjvhkMHrA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:55.434 [XNIO-1 task-2] 02WI-87PSV6HuwK4tI6GNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.434 [XNIO-1 task-2] 02WI-87PSV6HuwK4tI6GNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.434 [XNIO-1 task-2] 02WI-87PSV6HuwK4tI6GNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.434 [XNIO-1 task-2] 02WI-87PSV6HuwK4tI6GNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.434 [XNIO-1 task-2] 02WI-87PSV6HuwK4tI6GNA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.438 [XNIO-1 task-2] UAIkmm8QR-637V7K4Jc-JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.438 [XNIO-1 task-2] UAIkmm8QR-637V7K4Jc-JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.438 [XNIO-1 task-2] UAIkmm8QR-637V7K4Jc-JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.439 [XNIO-1 task-2] UAIkmm8QR-637V7K4Jc-JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.440 [XNIO-1 task-2] UAIkmm8QR-637V7K4Jc-JA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.440 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.451 [XNIO-1 task-2] eVBlVG6sQPK3iGcZb2Imtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a, base path is set to: null +16:40:55.452 [XNIO-1 task-2] eVBlVG6sQPK3iGcZb2Imtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.452 [XNIO-1 task-2] eVBlVG6sQPK3iGcZb2Imtw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.452 [XNIO-1 task-2] eVBlVG6sQPK3iGcZb2Imtw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a, base path is set to: null +16:40:55.452 [XNIO-1 task-2] eVBlVG6sQPK3iGcZb2Imtw DEBUG com.networknt.schema.TypeValidator debug - validate( "852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a", "852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a", refreshToken) +16:40:55.452 [XNIO-1 task-2] eVBlVG6sQPK3iGcZb2Imtw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a is not found.","severity":"ERROR"} +16:40:55.452 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:40139f4d +16:40:55.460 [XNIO-1 task-2] r6ZUIdx-QUK-FgOHH1JQkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.460 [XNIO-1 task-2] r6ZUIdx-QUK-FgOHH1JQkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.460 [XNIO-1 task-2] r6ZUIdx-QUK-FgOHH1JQkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.460 [XNIO-1 task-2] r6ZUIdx-QUK-FgOHH1JQkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.460 [XNIO-1 task-2] r6ZUIdx-QUK-FgOHH1JQkQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 852f69d4-f8f4-4b5a-a067-fa46fc1b0c7a +16:40:55.464 [XNIO-1 task-2] drgXDTVQQU-p6RRNz23jJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.464 [XNIO-1 task-2] drgXDTVQQU-p6RRNz23jJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.464 [XNIO-1 task-2] drgXDTVQQU-p6RRNz23jJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.464 [XNIO-1 task-2] drgXDTVQQU-p6RRNz23jJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.464 [XNIO-1 task-2] drgXDTVQQU-p6RRNz23jJQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.471 [XNIO-1 task-2] _UpwP-kmRcuxoL-_x_padg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.471 [XNIO-1 task-2] _UpwP-kmRcuxoL-_x_padg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.471 [XNIO-1 task-2] _UpwP-kmRcuxoL-_x_padg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.471 [XNIO-1 task-2] _UpwP-kmRcuxoL-_x_padg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.482 [XNIO-1 task-2] D3uhlRBKQmubUTJ5vn-tsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:55.483 [XNIO-1 task-2] D3uhlRBKQmubUTJ5vn-tsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.483 [XNIO-1 task-2] D3uhlRBKQmubUTJ5vn-tsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.483 [XNIO-1 task-2] D3uhlRBKQmubUTJ5vn-tsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:55.483 [XNIO-1 task-2] D3uhlRBKQmubUTJ5vn-tsg DEBUG com.networknt.schema.TypeValidator debug - validate( "ffe5c4de-824c-4690-863d-523c1f89182a", "ffe5c4de-824c-4690-863d-523c1f89182a", refreshToken) +16:40:55.483 [XNIO-1 task-2] D3uhlRBKQmubUTJ5vn-tsg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ffe5c4de-824c-4690-863d-523c1f89182a is not found.","severity":"ERROR"} +16:40:55.485 [XNIO-1 task-2] xDySsdnkRi6fT2dG4MfHMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.485 [XNIO-1 task-2] xDySsdnkRi6fT2dG4MfHMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.485 [XNIO-1 task-2] xDySsdnkRi6fT2dG4MfHMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.485 [XNIO-1 task-2] xDySsdnkRi6fT2dG4MfHMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.485 [XNIO-1 task-2] xDySsdnkRi6fT2dG4MfHMg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.494 [XNIO-1 task-2] LdQE76e4Tz6F5o0WLHs0zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.494 [XNIO-1 task-2] LdQE76e4Tz6F5o0WLHs0zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.494 [XNIO-1 task-2] LdQE76e4Tz6F5o0WLHs0zQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.494 [XNIO-1 task-2] LdQE76e4Tz6F5o0WLHs0zQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.494 [XNIO-1 task-2] LdQE76e4Tz6F5o0WLHs0zQ DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:55.494 [XNIO-1 task-2] LdQE76e4Tz6F5o0WLHs0zQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:55.501 [XNIO-1 task-2] BAS5LL3RQnuFwc_QSe_r0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.501 [XNIO-1 task-2] BAS5LL3RQnuFwc_QSe_r0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.501 [XNIO-1 task-2] BAS5LL3RQnuFwc_QSe_r0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.501 [XNIO-1 task-2] BAS5LL3RQnuFwc_QSe_r0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.501 [XNIO-1 task-2] BAS5LL3RQnuFwc_QSe_r0g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.505 [XNIO-1 task-2] 36IBoY_TRYOrTnI_CJz3yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.506 [XNIO-1 task-2] 36IBoY_TRYOrTnI_CJz3yg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.506 [XNIO-1 task-2] 36IBoY_TRYOrTnI_CJz3yg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.506 [XNIO-1 task-2] 36IBoY_TRYOrTnI_CJz3yg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.506 [XNIO-1 task-2] 36IBoY_TRYOrTnI_CJz3yg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.509 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:8f56155a-48c7-441c-990a-59dcad18df46 +16:40:55.516 [XNIO-1 task-2] dKAK-rKATte9557Ky_Um7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:55.516 [XNIO-1 task-2] dKAK-rKATte9557Ky_Um7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.517 [XNIO-1 task-2] dKAK-rKATte9557Ky_Um7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.517 [XNIO-1 task-2] dKAK-rKATte9557Ky_Um7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:55.517 [XNIO-1 task-2] dKAK-rKATte9557Ky_Um7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f2c95ede-7c91-4062-abd0-5341b3541fd4", "f2c95ede-7c91-4062-abd0-5341b3541fd4", refreshToken) +16:40:55.527 [XNIO-1 task-2] 0wrwmHObRfeOv1EdUROdRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.527 [XNIO-1 task-2] 0wrwmHObRfeOv1EdUROdRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.527 [XNIO-1 task-2] 0wrwmHObRfeOv1EdUROdRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.527 [XNIO-1 task-2] 0wrwmHObRfeOv1EdUROdRw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.527 [XNIO-1 task-2] 0wrwmHObRfeOv1EdUROdRw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.537 [XNIO-1 task-2] fkxzzrgSSoiTo01XO33GBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.537 [XNIO-1 task-2] fkxzzrgSSoiTo01XO33GBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.537 [XNIO-1 task-2] fkxzzrgSSoiTo01XO33GBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.538 [XNIO-1 task-2] fkxzzrgSSoiTo01XO33GBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.538 [XNIO-1 task-2] fkxzzrgSSoiTo01XO33GBQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:55.542 [XNIO-1 task-2] mp4MlR19RMWrkOHin7OapA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.542 [XNIO-1 task-2] mp4MlR19RMWrkOHin7OapA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.542 [XNIO-1 task-2] mp4MlR19RMWrkOHin7OapA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.542 [XNIO-1 task-2] mp4MlR19RMWrkOHin7OapA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.542 [XNIO-1 task-2] mp4MlR19RMWrkOHin7OapA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.552 [XNIO-1 task-2] VJ0NOohOR8a4A3BNehxIwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.552 [XNIO-1 task-2] VJ0NOohOR8a4A3BNehxIwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.552 [XNIO-1 task-2] VJ0NOohOR8a4A3BNehxIwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.552 [XNIO-1 task-2] VJ0NOohOR8a4A3BNehxIwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.552 [XNIO-1 task-2] VJ0NOohOR8a4A3BNehxIwA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.554 [XNIO-1 task-2] whfu3l8fSue7GuaGU3WDqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.554 [XNIO-1 task-2] whfu3l8fSue7GuaGU3WDqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.554 [XNIO-1 task-2] whfu3l8fSue7GuaGU3WDqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.554 [XNIO-1 task-2] whfu3l8fSue7GuaGU3WDqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.554 [XNIO-1 task-2] whfu3l8fSue7GuaGU3WDqg DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:55.555 [XNIO-1 task-2] whfu3l8fSue7GuaGU3WDqg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:55.562 [XNIO-1 task-2] yctgzodDQgCrOKN5G6ugYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.562 [XNIO-1 task-2] yctgzodDQgCrOKN5G6ugYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.562 [XNIO-1 task-2] yctgzodDQgCrOKN5G6ugYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.562 [XNIO-1 task-2] yctgzodDQgCrOKN5G6ugYA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.570 [XNIO-1 task-2] lcPF9E_bRKyNjVT8VadMNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.570 [XNIO-1 task-2] lcPF9E_bRKyNjVT8VadMNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.570 [XNIO-1 task-2] lcPF9E_bRKyNjVT8VadMNQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.570 [XNIO-1 task-2] lcPF9E_bRKyNjVT8VadMNQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.571 [XNIO-1 task-2] lcPF9E_bRKyNjVT8VadMNQ DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:55.576 [XNIO-1 task-2] Zof5aat-RgK6Ol700CDhKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.576 [XNIO-1 task-2] Zof5aat-RgK6Ol700CDhKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.576 [XNIO-1 task-2] Zof5aat-RgK6Ol700CDhKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.576 [XNIO-1 task-2] Zof5aat-RgK6Ol700CDhKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.577 [XNIO-1 task-2] Zof5aat-RgK6Ol700CDhKw DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:55.595 [XNIO-1 task-2] yKZoLqTXQdCLnKG51yPlsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.595 [XNIO-1 task-2] yKZoLqTXQdCLnKG51yPlsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.595 [XNIO-1 task-2] yKZoLqTXQdCLnKG51yPlsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.595 [XNIO-1 task-2] yKZoLqTXQdCLnKG51yPlsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.595 [XNIO-1 task-2] yKZoLqTXQdCLnKG51yPlsA DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:55.597 [XNIO-1 task-2] yKZoLqTXQdCLnKG51yPlsA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:55.600 [XNIO-1 task-2] acoTxfAmRhe3gXjM0uFJ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.600 [XNIO-1 task-2] acoTxfAmRhe3gXjM0uFJ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.600 [XNIO-1 task-2] acoTxfAmRhe3gXjM0uFJ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.600 [XNIO-1 task-2] acoTxfAmRhe3gXjM0uFJ4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.600 [XNIO-1 task-2] acoTxfAmRhe3gXjM0uFJ4g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.607 [XNIO-1 task-2] d1XU3p6JRNStsnZW7A0bjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.608 [XNIO-1 task-2] d1XU3p6JRNStsnZW7A0bjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.608 [XNIO-1 task-2] d1XU3p6JRNStsnZW7A0bjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.608 [XNIO-1 task-2] d1XU3p6JRNStsnZW7A0bjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.608 [XNIO-1 task-2] d1XU3p6JRNStsnZW7A0bjA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.614 [XNIO-1 task-2] F1K6MtTrTviG5s2qagTlKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.614 [XNIO-1 task-2] F1K6MtTrTviG5s2qagTlKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.614 [XNIO-1 task-2] F1K6MtTrTviG5s2qagTlKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.614 [XNIO-1 task-2] F1K6MtTrTviG5s2qagTlKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.614 [XNIO-1 task-2] F1K6MtTrTviG5s2qagTlKg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.617 [XNIO-1 task-2] 4SGNJsotQwmbTSYDP2rW-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.617 [XNIO-1 task-2] 4SGNJsotQwmbTSYDP2rW-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.617 [XNIO-1 task-2] 4SGNJsotQwmbTSYDP2rW-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.617 [XNIO-1 task-2] 4SGNJsotQwmbTSYDP2rW-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.618 [XNIO-1 task-2] 4SGNJsotQwmbTSYDP2rW-g DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.631 [XNIO-1 task-2] kb1yVd1wSWG-h7kzQncA8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.631 [XNIO-1 task-2] kb1yVd1wSWG-h7kzQncA8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.631 [XNIO-1 task-2] kb1yVd1wSWG-h7kzQncA8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.631 [XNIO-1 task-2] kb1yVd1wSWG-h7kzQncA8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.631 [XNIO-1 task-2] kb1yVd1wSWG-h7kzQncA8A DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.639 [XNIO-1 task-2] b1virMl2Qw2Eyq850nrw9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.639 [XNIO-1 task-2] b1virMl2Qw2Eyq850nrw9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.639 [XNIO-1 task-2] b1virMl2Qw2Eyq850nrw9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.640 [XNIO-1 task-2] b1virMl2Qw2Eyq850nrw9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.640 [XNIO-1 task-2] b1virMl2Qw2Eyq850nrw9Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.644 [XNIO-1 task-2] Ev_oKuI0QxmTdsYObI4qAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.645 [XNIO-1 task-2] Ev_oKuI0QxmTdsYObI4qAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.645 [XNIO-1 task-2] Ev_oKuI0QxmTdsYObI4qAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.645 [XNIO-1 task-2] Ev_oKuI0QxmTdsYObI4qAw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.653 [XNIO-1 task-2] tIGp4zK9S16BdaoDrt7aqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.653 [XNIO-1 task-2] tIGp4zK9S16BdaoDrt7aqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.653 [XNIO-1 task-2] tIGp4zK9S16BdaoDrt7aqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.653 [XNIO-1 task-2] tIGp4zK9S16BdaoDrt7aqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.653 [XNIO-1 task-2] tIGp4zK9S16BdaoDrt7aqQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.660 [XNIO-1 task-2] JTzBBasFRmOYeMDBrUE3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.660 [XNIO-1 task-2] JTzBBasFRmOYeMDBrUE3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.660 [XNIO-1 task-2] JTzBBasFRmOYeMDBrUE3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.660 [XNIO-1 task-2] JTzBBasFRmOYeMDBrUE3NQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.660 [XNIO-1 task-2] JTzBBasFRmOYeMDBrUE3NQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:55.663 [XNIO-1 task-2] tmaqsBwERbGDy_en8KcDHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.663 [XNIO-1 task-2] tmaqsBwERbGDy_en8KcDHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.663 [XNIO-1 task-2] tmaqsBwERbGDy_en8KcDHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.663 [XNIO-1 task-2] tmaqsBwERbGDy_en8KcDHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.663 [XNIO-1 task-2] tmaqsBwERbGDy_en8KcDHw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.663 [XNIO-1 task-2] tmaqsBwERbGDy_en8KcDHw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.667 [XNIO-1 task-2] KQCjY1_bQqOYwdWoObc7dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.667 [XNIO-1 task-2] KQCjY1_bQqOYwdWoObc7dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.667 [XNIO-1 task-2] KQCjY1_bQqOYwdWoObc7dA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.667 [XNIO-1 task-2] KQCjY1_bQqOYwdWoObc7dA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.672 [XNIO-1 task-2] r_wXncCHSiW8j0X_1oMOOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.672 [XNIO-1 task-2] r_wXncCHSiW8j0X_1oMOOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.672 [XNIO-1 task-2] r_wXncCHSiW8j0X_1oMOOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.672 [XNIO-1 task-2] r_wXncCHSiW8j0X_1oMOOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:55.672 [XNIO-1 task-2] r_wXncCHSiW8j0X_1oMOOA DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:55.672 [XNIO-1 task-2] r_wXncCHSiW8j0X_1oMOOA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:55.675 [XNIO-1 task-2] TB3PyVyMTb-wo__eiUB7jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.676 [XNIO-1 task-2] TB3PyVyMTb-wo__eiUB7jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.676 [XNIO-1 task-2] TB3PyVyMTb-wo__eiUB7jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.676 [XNIO-1 task-2] TB3PyVyMTb-wo__eiUB7jg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.681 [XNIO-1 task-2] MHdUr9K4TpatNLrDdggSPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.681 [XNIO-1 task-2] MHdUr9K4TpatNLrDdggSPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.681 [XNIO-1 task-2] MHdUr9K4TpatNLrDdggSPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.682 [XNIO-1 task-2] MHdUr9K4TpatNLrDdggSPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.682 [XNIO-1 task-2] MHdUr9K4TpatNLrDdggSPA DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.682 [XNIO-1 task-2] MHdUr9K4TpatNLrDdggSPA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.685 [XNIO-1 task-2] 319uNWk0Qymcm9J1c7_zaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.685 [XNIO-1 task-2] 319uNWk0Qymcm9J1c7_zaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.685 [XNIO-1 task-2] 319uNWk0Qymcm9J1c7_zaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.686 [XNIO-1 task-2] 319uNWk0Qymcm9J1c7_zaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.686 [XNIO-1 task-2] 319uNWk0Qymcm9J1c7_zaQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.691 [XNIO-1 task-2] sRdOTRmXT7quuo3UHDNkrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.691 [XNIO-1 task-2] sRdOTRmXT7quuo3UHDNkrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.691 [XNIO-1 task-2] sRdOTRmXT7quuo3UHDNkrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.691 [XNIO-1 task-2] sRdOTRmXT7quuo3UHDNkrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.691 [XNIO-1 task-2] sRdOTRmXT7quuo3UHDNkrQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.696 [XNIO-1 task-2] xbohgX0hRFymEgDCGYFs2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.696 [XNIO-1 task-2] xbohgX0hRFymEgDCGYFs2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.697 [XNIO-1 task-2] xbohgX0hRFymEgDCGYFs2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.697 [XNIO-1 task-2] xbohgX0hRFymEgDCGYFs2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.697 [XNIO-1 task-2] xbohgX0hRFymEgDCGYFs2g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.702 [XNIO-1 task-2] rjUlIRBcQRmu4Xb_oSWPhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.702 [XNIO-1 task-2] rjUlIRBcQRmu4Xb_oSWPhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.702 [XNIO-1 task-2] rjUlIRBcQRmu4Xb_oSWPhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.702 [XNIO-1 task-2] rjUlIRBcQRmu4Xb_oSWPhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.702 [XNIO-1 task-2] rjUlIRBcQRmu4Xb_oSWPhg DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.702 [XNIO-1 task-2] rjUlIRBcQRmu4Xb_oSWPhg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.710 [XNIO-1 task-2] t6yozRVEQ1yk-xWbewhx4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.710 [XNIO-1 task-2] t6yozRVEQ1yk-xWbewhx4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.710 [XNIO-1 task-2] t6yozRVEQ1yk-xWbewhx4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.710 [XNIO-1 task-2] t6yozRVEQ1yk-xWbewhx4Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.710 [XNIO-1 task-2] t6yozRVEQ1yk-xWbewhx4Q DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.716 [XNIO-1 task-2] 3Y9prHTZSPCF9PsqK0PynA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:55.716 [XNIO-1 task-2] 3Y9prHTZSPCF9PsqK0PynA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.716 [XNIO-1 task-2] 3Y9prHTZSPCF9PsqK0PynA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.716 [XNIO-1 task-2] 3Y9prHTZSPCF9PsqK0PynA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:55.717 [XNIO-1 task-2] 3Y9prHTZSPCF9PsqK0PynA DEBUG com.networknt.schema.TypeValidator debug - validate( "584f4913-4609-47f9-bc78-aa9aea7a755d", "584f4913-4609-47f9-bc78-aa9aea7a755d", refreshToken) +16:40:55.718 [XNIO-1 task-2] 5HW6gpDbREG7cUp8xUGaZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.718 [XNIO-1 task-2] 5HW6gpDbREG7cUp8xUGaZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.719 [XNIO-1 task-2] 5HW6gpDbREG7cUp8xUGaZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.719 [XNIO-1 task-2] 5HW6gpDbREG7cUp8xUGaZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:55.719 [XNIO-1 task-2] 5HW6gpDbREG7cUp8xUGaZw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:55.719 [XNIO-1 task-2] 5HW6gpDbREG7cUp8xUGaZw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:55.721 [XNIO-1 task-2] H7cnDw0eRyWO6vgugqmWBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.721 [XNIO-1 task-2] H7cnDw0eRyWO6vgugqmWBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.721 [XNIO-1 task-2] H7cnDw0eRyWO6vgugqmWBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.721 [XNIO-1 task-2] H7cnDw0eRyWO6vgugqmWBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.721 [XNIO-1 task-2] H7cnDw0eRyWO6vgugqmWBA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.723 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:40139f4d +16:40:55.724 [XNIO-1 task-2] qI24x5iOT3mOPTaSVGSjuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.724 [XNIO-1 task-2] qI24x5iOT3mOPTaSVGSjuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.724 [XNIO-1 task-2] qI24x5iOT3mOPTaSVGSjuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.724 [XNIO-1 task-2] qI24x5iOT3mOPTaSVGSjuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.724 [XNIO-1 task-2] qI24x5iOT3mOPTaSVGSjuA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.730 [XNIO-1 task-2] L-_r49M0SmqI_YoEBhcTWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.730 [XNIO-1 task-2] L-_r49M0SmqI_YoEBhcTWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.730 [XNIO-1 task-2] L-_r49M0SmqI_YoEBhcTWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.730 [XNIO-1 task-2] L-_r49M0SmqI_YoEBhcTWQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.739 [XNIO-1 task-2] Tell-DhnQvumi3o-smVyzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:55.739 [XNIO-1 task-2] Tell-DhnQvumi3o-smVyzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.740 [XNIO-1 task-2] Tell-DhnQvumi3o-smVyzg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.740 [XNIO-1 task-2] Tell-DhnQvumi3o-smVyzg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:55.740 [XNIO-1 task-2] Tell-DhnQvumi3o-smVyzg DEBUG com.networknt.schema.TypeValidator debug - validate( "584f4913-4609-47f9-bc78-aa9aea7a755d", "584f4913-4609-47f9-bc78-aa9aea7a755d", refreshToken) +16:40:55.740 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:55.749 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore store - Store:61decddc-d8b8-4b1a-ac78-622a378daf0a +16:40:55.750 [XNIO-1 task-2] Bt0OWTaAR4WYvnFb0L0T5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.750 [XNIO-1 task-2] Bt0OWTaAR4WYvnFb0L0T5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.750 [XNIO-1 task-2] Bt0OWTaAR4WYvnFb0L0T5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.750 [XNIO-1 task-2] Bt0OWTaAR4WYvnFb0L0T5w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.750 [XNIO-1 task-2] Bt0OWTaAR4WYvnFb0L0T5w DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.760 [XNIO-1 task-2] 9tNPH6EmS7uI7JMeGWnpLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.760 [XNIO-1 task-2] 9tNPH6EmS7uI7JMeGWnpLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.761 [XNIO-1 task-2] 9tNPH6EmS7uI7JMeGWnpLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.761 [XNIO-1 task-2] 9tNPH6EmS7uI7JMeGWnpLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.761 [XNIO-1 task-2] 9tNPH6EmS7uI7JMeGWnpLw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 95178b96-11fd-4700-a968-93d708db76a4 +16:40:55.765 [XNIO-1 task-2] eGBKYLW4R9SSX7EH-6zA-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.766 [XNIO-1 task-2] eGBKYLW4R9SSX7EH-6zA-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.766 [XNIO-1 task-2] eGBKYLW4R9SSX7EH-6zA-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.766 [XNIO-1 task-2] eGBKYLW4R9SSX7EH-6zA-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.767 [XNIO-1 task-2] eGBKYLW4R9SSX7EH-6zA-Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.775 [XNIO-1 task-2] vKLVknsRTIOswwoIvMnMSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.775 [XNIO-1 task-2] vKLVknsRTIOswwoIvMnMSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.775 [XNIO-1 task-2] vKLVknsRTIOswwoIvMnMSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.775 [XNIO-1 task-2] vKLVknsRTIOswwoIvMnMSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.781 [XNIO-1 task-2] Kuhnz7LyRR2wGe6B_Ck3zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.782 [XNIO-1 task-2] Kuhnz7LyRR2wGe6B_Ck3zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.782 [XNIO-1 task-2] Kuhnz7LyRR2wGe6B_Ck3zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.782 [XNIO-1 task-2] Kuhnz7LyRR2wGe6B_Ck3zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.782 [XNIO-1 task-2] Kuhnz7LyRR2wGe6B_Ck3zw DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:55.793 [XNIO-1 task-2] CPcRMAGjRG6K_u9pt-7-MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.793 [XNIO-1 task-2] CPcRMAGjRG6K_u9pt-7-MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.793 [XNIO-1 task-2] CPcRMAGjRG6K_u9pt-7-MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.793 [XNIO-1 task-2] CPcRMAGjRG6K_u9pt-7-MA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.793 [XNIO-1 task-2] CPcRMAGjRG6K_u9pt-7-MA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.799 [XNIO-1 task-2] 1bdBlonVTlG568yKrUuEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.799 [XNIO-1 task-2] 1bdBlonVTlG568yKrUuEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.799 [XNIO-1 task-2] 1bdBlonVTlG568yKrUuEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.799 [XNIO-1 task-2] 1bdBlonVTlG568yKrUuEVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.799 [XNIO-1 task-2] 1bdBlonVTlG568yKrUuEVg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.806 [XNIO-1 task-2] ysdbyA_0So-6-bu7dOtJcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.807 [XNIO-1 task-2] ysdbyA_0So-6-bu7dOtJcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.807 [XNIO-1 task-2] ysdbyA_0So-6-bu7dOtJcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.807 [XNIO-1 task-2] ysdbyA_0So-6-bu7dOtJcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.807 [XNIO-1 task-2] ysdbyA_0So-6-bu7dOtJcg DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:55.807 [XNIO-1 task-2] ysdbyA_0So-6-bu7dOtJcg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:55.812 [XNIO-1 task-2] OyMWJgT1TgWBhnnQ2aSwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.813 [XNIO-1 task-2] OyMWJgT1TgWBhnnQ2aSwlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.813 [XNIO-1 task-2] OyMWJgT1TgWBhnnQ2aSwlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.813 [XNIO-1 task-2] OyMWJgT1TgWBhnnQ2aSwlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.813 [XNIO-1 task-2] OyMWJgT1TgWBhnnQ2aSwlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:55.814 [XNIO-1 task-2] OyMWJgT1TgWBhnnQ2aSwlQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:55.820 [XNIO-1 task-2] e0Dm-rbtS4SST-3ZJ-fcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.820 [XNIO-1 task-2] e0Dm-rbtS4SST-3ZJ-fcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.820 [XNIO-1 task-2] e0Dm-rbtS4SST-3ZJ-fcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.820 [XNIO-1 task-2] e0Dm-rbtS4SST-3ZJ-fcDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.820 [XNIO-1 task-2] e0Dm-rbtS4SST-3ZJ-fcDw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.826 [XNIO-1 task-2] 0Cl4FXg3QpikwBJc8ZXnlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.826 [XNIO-1 task-2] 0Cl4FXg3QpikwBJc8ZXnlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.827 [XNIO-1 task-2] 0Cl4FXg3QpikwBJc8ZXnlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.827 [XNIO-1 task-2] 0Cl4FXg3QpikwBJc8ZXnlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.827 [XNIO-1 task-2] 0Cl4FXg3QpikwBJc8ZXnlQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.833 [XNIO-1 task-2] XQBFBuQrSGCLHquxXWSGfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.833 [XNIO-1 task-2] XQBFBuQrSGCLHquxXWSGfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.834 [XNIO-1 task-2] XQBFBuQrSGCLHquxXWSGfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.834 [XNIO-1 task-2] XQBFBuQrSGCLHquxXWSGfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.834 [XNIO-1 task-2] XQBFBuQrSGCLHquxXWSGfw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.834 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:eba4f6ab-e1c5-48e8-8550-f28ad586aaba +16:40:55.839 [XNIO-1 task-2] wkulTcarT4630ObzFsJgTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.839 [XNIO-1 task-2] wkulTcarT4630ObzFsJgTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.839 [XNIO-1 task-2] wkulTcarT4630ObzFsJgTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.839 [XNIO-1 task-2] wkulTcarT4630ObzFsJgTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.839 [XNIO-1 task-2] wkulTcarT4630ObzFsJgTQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.845 [XNIO-1 task-2] 11xcISJeQjqAE18Laz5sDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.845 [XNIO-1 task-2] 11xcISJeQjqAE18Laz5sDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.845 [XNIO-1 task-2] 11xcISJeQjqAE18Laz5sDQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.845 [XNIO-1 task-2] 11xcISJeQjqAE18Laz5sDQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:55.845 [XNIO-1 task-2] 11xcISJeQjqAE18Laz5sDQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:55.845 [XNIO-1 task-2] 11xcISJeQjqAE18Laz5sDQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:55.850 [XNIO-1 task-2] sQztdLRIQhamnktjzMBp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.851 [XNIO-1 task-2] sQztdLRIQhamnktjzMBp_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.851 [XNIO-1 task-2] sQztdLRIQhamnktjzMBp_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.851 [XNIO-1 task-2] sQztdLRIQhamnktjzMBp_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.851 [XNIO-1 task-2] sQztdLRIQhamnktjzMBp_A DEBUG com.networknt.schema.TypeValidator debug - validate( "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", refreshToken) +16:40:55.851 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:be0605c1 +16:40:55.852 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:be0605c1 +16:40:55.853 [XNIO-1 task-2] nJEWVQiZQcu3HuaX0MHT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.854 [XNIO-1 task-2] nJEWVQiZQcu3HuaX0MHT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.854 [XNIO-1 task-2] nJEWVQiZQcu3HuaX0MHT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.854 [XNIO-1 task-2] nJEWVQiZQcu3HuaX0MHT6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.854 [XNIO-1 task-2] nJEWVQiZQcu3HuaX0MHT6w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.856 [XNIO-1 task-2] Vo9tcVYqQguoi0nVpjlEUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.856 [XNIO-1 task-2] Vo9tcVYqQguoi0nVpjlEUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.856 [XNIO-1 task-2] Vo9tcVYqQguoi0nVpjlEUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.856 [XNIO-1 task-2] Vo9tcVYqQguoi0nVpjlEUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.856 [XNIO-1 task-2] Vo9tcVYqQguoi0nVpjlEUg DEBUG com.networknt.schema.TypeValidator debug - validate( "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", refreshToken) +16:40:55.868 [XNIO-1 task-2] zFPJqgcPRXK4yHcLiITahw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.868 [XNIO-1 task-2] zFPJqgcPRXK4yHcLiITahw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.868 [XNIO-1 task-2] zFPJqgcPRXK4yHcLiITahw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.868 [XNIO-1 task-2] zFPJqgcPRXK4yHcLiITahw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.868 [XNIO-1 task-2] zFPJqgcPRXK4yHcLiITahw DEBUG com.networknt.schema.TypeValidator debug - validate( "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", refreshToken) +16:40:55.870 [XNIO-1 task-2] zFPJqgcPRXK4yHcLiITahw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 is not found.","severity":"ERROR"} +16:40:55.872 [XNIO-1 task-2] SvYEKZDuRTuPaI590KF2Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 +16:40:55.872 [XNIO-1 task-2] SvYEKZDuRTuPaI590KF2Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.872 [XNIO-1 task-2] SvYEKZDuRTuPaI590KF2Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.872 [XNIO-1 task-2] SvYEKZDuRTuPaI590KF2Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 +16:40:55.872 [XNIO-1 task-2] SvYEKZDuRTuPaI590KF2Kw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 +16:40:55.879 [XNIO-1 task-2] 4ydpRQWUTQysvIdZfv_aZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.879 [XNIO-1 task-2] 4ydpRQWUTQysvIdZfv_aZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.879 [XNIO-1 task-2] 4ydpRQWUTQysvIdZfv_aZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.879 [XNIO-1 task-2] 4ydpRQWUTQysvIdZfv_aZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.879 [XNIO-1 task-2] 4ydpRQWUTQysvIdZfv_aZA DEBUG com.networknt.schema.TypeValidator debug - validate( "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", refreshToken) +16:40:55.879 [XNIO-1 task-2] 4ydpRQWUTQysvIdZfv_aZA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 is not found.","severity":"ERROR"} +16:40:55.880 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ClientMapStore store - Store:fcaadd2c-c5ec-4ce3-b1d1-09aeab4abc50 +16:40:55.882 [XNIO-1 task-2] nzciFOmgShyRuIUSsKgmeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.882 [XNIO-1 task-2] nzciFOmgShyRuIUSsKgmeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.882 [XNIO-1 task-2] nzciFOmgShyRuIUSsKgmeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.882 [XNIO-1 task-2] nzciFOmgShyRuIUSsKgmeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.882 [XNIO-1 task-2] nzciFOmgShyRuIUSsKgmeA DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:55.882 [XNIO-1 task-2] nzciFOmgShyRuIUSsKgmeA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:55.883 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:be0605c1 +16:40:55.884 [XNIO-1 task-2] VcD42Lt0Q6yqmcjZJON7DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.884 [XNIO-1 task-2] VcD42Lt0Q6yqmcjZJON7DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.884 [XNIO-1 task-2] VcD42Lt0Q6yqmcjZJON7DA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.884 [XNIO-1 task-2] VcD42Lt0Q6yqmcjZJON7DA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.900 [XNIO-1 task-2] Pyymj2yRQTu-RhHu6jCnAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.900 [XNIO-1 task-2] Pyymj2yRQTu-RhHu6jCnAg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.900 [XNIO-1 task-2] Pyymj2yRQTu-RhHu6jCnAg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.900 [XNIO-1 task-2] Pyymj2yRQTu-RhHu6jCnAg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.900 [XNIO-1 task-2] Pyymj2yRQTu-RhHu6jCnAg DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.905 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:65916d15-fc04-4774-9d51-e5ea850588b3 +16:40:55.908 [XNIO-1 task-2] zyoTgvl5QIGngG7PPU2WAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.908 [XNIO-1 task-2] zyoTgvl5QIGngG7PPU2WAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.908 [XNIO-1 task-2] zyoTgvl5QIGngG7PPU2WAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.908 [XNIO-1 task-2] zyoTgvl5QIGngG7PPU2WAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.908 [XNIO-1 task-2] zyoTgvl5QIGngG7PPU2WAQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.914 [XNIO-1 task-2] PWf_O9RQT9GZ1uFduaUVzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.914 [XNIO-1 task-2] PWf_O9RQT9GZ1uFduaUVzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.914 [XNIO-1 task-2] PWf_O9RQT9GZ1uFduaUVzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.914 [XNIO-1 task-2] PWf_O9RQT9GZ1uFduaUVzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/1d767cd6-b8f5-451e-8eb6-6b87bf6c9525, base path is set to: null +16:40:55.914 [XNIO-1 task-2] PWf_O9RQT9GZ1uFduaUVzA DEBUG com.networknt.schema.TypeValidator debug - validate( "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", "1d767cd6-b8f5-451e-8eb6-6b87bf6c9525", refreshToken) +16:40:55.915 [XNIO-1 task-2] PWf_O9RQT9GZ1uFduaUVzA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 is not found.","severity":"ERROR"} +16:40:55.921 [XNIO-1 task-2] cZI0Nx6ERIeLi4kmLuHmaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.921 [XNIO-1 task-2] cZI0Nx6ERIeLi4kmLuHmaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.921 [XNIO-1 task-2] cZI0Nx6ERIeLi4kmLuHmaQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.921 [XNIO-1 task-2] cZI0Nx6ERIeLi4kmLuHmaQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.931 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8124a711 +16:40:55.931 [XNIO-1 task-2] TsA8ZDDsRGyF5gjtv0Js7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.931 [XNIO-1 task-2] TsA8ZDDsRGyF5gjtv0Js7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.931 [XNIO-1 task-2] TsA8ZDDsRGyF5gjtv0Js7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.931 [XNIO-1 task-2] TsA8ZDDsRGyF5gjtv0Js7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.932 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8124a711 +16:40:55.933 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b008104d-31e7-49ae-b694-0d4c7d3179a5 +16:40:55.941 [XNIO-1 task-2] vX-DQUAOSNqSmS7sEmPZkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.941 [XNIO-1 task-2] vX-DQUAOSNqSmS7sEmPZkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.941 [XNIO-1 task-2] vX-DQUAOSNqSmS7sEmPZkA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.941 [XNIO-1 task-2] vX-DQUAOSNqSmS7sEmPZkA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:55.941 [XNIO-1 task-2] vX-DQUAOSNqSmS7sEmPZkA DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:55.941 [XNIO-1 task-2] vX-DQUAOSNqSmS7sEmPZkA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:55.948 [XNIO-1 task-2] EwxdEYqURtO8bQersirvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.949 [XNIO-1 task-2] EwxdEYqURtO8bQersirvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.949 [XNIO-1 task-2] EwxdEYqURtO8bQersirvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.949 [XNIO-1 task-2] EwxdEYqURtO8bQersirvPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.949 [XNIO-1 task-2] EwxdEYqURtO8bQersirvPQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.951 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b008104d-31e7-49ae-b694-0d4c7d3179a5 +16:40:55.955 [XNIO-1 task-2] Na0HOrccSsWXm70AlKvU0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4 +16:40:55.955 [XNIO-1 task-2] Na0HOrccSsWXm70AlKvU0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.955 [XNIO-1 task-2] Na0HOrccSsWXm70AlKvU0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.955 [XNIO-1 task-2] Na0HOrccSsWXm70AlKvU0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4 +16:40:55.955 [XNIO-1 task-2] Na0HOrccSsWXm70AlKvU0g DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = f2c95ede-7c91-4062-abd0-5341b3541fd4 +16:40:55.955 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8124a711 +16:40:55.962 [XNIO-1 task-2] 9cj40GtcTpOLpc1qGh82ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.962 [XNIO-1 task-2] 9cj40GtcTpOLpc1qGh82ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.962 [XNIO-1 task-2] 9cj40GtcTpOLpc1qGh82ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.962 [XNIO-1 task-2] 9cj40GtcTpOLpc1qGh82ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:55.963 [XNIO-1 task-2] 9cj40GtcTpOLpc1qGh82ww DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:55.963 [XNIO-1 task-2] 9cj40GtcTpOLpc1qGh82ww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:55.972 [XNIO-1 task-2] cx610yp4SluiJgQ7KfNSZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.972 [XNIO-1 task-2] cx610yp4SluiJgQ7KfNSZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.972 [XNIO-1 task-2] cx610yp4SluiJgQ7KfNSZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.972 [XNIO-1 task-2] cx610yp4SluiJgQ7KfNSZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.978 [XNIO-1 task-2] Bz3d4JnySCeSDCKV_2Q1ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:55.979 [XNIO-1 task-2] Bz3d4JnySCeSDCKV_2Q1ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.979 [XNIO-1 task-2] Bz3d4JnySCeSDCKV_2Q1ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:55.979 [XNIO-1 task-2] Bz3d4JnySCeSDCKV_2Q1ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:55.979 [XNIO-1 task-2] Bz3d4JnySCeSDCKV_2Q1ag DEBUG com.networknt.schema.TypeValidator debug - validate( "f2c95ede-7c91-4062-abd0-5341b3541fd4", "f2c95ede-7c91-4062-abd0-5341b3541fd4", refreshToken) +16:40:55.979 [XNIO-1 task-2] Bz3d4JnySCeSDCKV_2Q1ag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2c95ede-7c91-4062-abd0-5341b3541fd4 is not found.","severity":"ERROR"} +16:40:55.979 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8124a711 +16:40:55.983 [XNIO-1 task-2] PtOdeV1XQHWrIoRwNINQhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.983 [XNIO-1 task-2] PtOdeV1XQHWrIoRwNINQhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.983 [XNIO-1 task-2] PtOdeV1XQHWrIoRwNINQhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.983 [XNIO-1 task-2] PtOdeV1XQHWrIoRwNINQhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.983 [XNIO-1 task-2] PtOdeV1XQHWrIoRwNINQhw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:55.991 [XNIO-1 task-2] JIf9TlMtSOCIk2x1vBliaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.991 [XNIO-1 task-2] JIf9TlMtSOCIk2x1vBliaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:55.991 [XNIO-1 task-2] JIf9TlMtSOCIk2x1vBliaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:55.991 [XNIO-1 task-2] JIf9TlMtSOCIk2x1vBliaA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.991 [XNIO-1 task-2] JIf9TlMtSOCIk2x1vBliaA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:55.998 [XNIO-1 task-2] C8YElFTFRQ-LyM8qTN8auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.998 [XNIO-1 task-2] C8YElFTFRQ-LyM8qTN8auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:55.998 [XNIO-1 task-2] C8YElFTFRQ-LyM8qTN8auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:55.998 [XNIO-1 task-2] C8YElFTFRQ-LyM8qTN8auA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:55.999 [XNIO-1 task-2] C8YElFTFRQ-LyM8qTN8auA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = a25c408e-374a-4e3c-bce0-eb1aea929100 +16:40:56.001 [XNIO-1 task-2] vUTm9t6STxmGhOOVmcbAuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.001 [XNIO-1 task-2] vUTm9t6STxmGhOOVmcbAuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.001 [XNIO-1 task-2] vUTm9t6STxmGhOOVmcbAuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.001 [XNIO-1 task-2] vUTm9t6STxmGhOOVmcbAuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.001 [XNIO-1 task-2] vUTm9t6STxmGhOOVmcbAuw DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.001 [XNIO-1 task-2] vUTm9t6STxmGhOOVmcbAuw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.010 [XNIO-1 task-2] RTa1ul1fQSmb_hvzYgCPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.010 [XNIO-1 task-2] RTa1ul1fQSmb_hvzYgCPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.010 [XNIO-1 task-2] RTa1ul1fQSmb_hvzYgCPVg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.011 [XNIO-1 task-2] RTa1ul1fQSmb_hvzYgCPVg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.018 [XNIO-1 task-2] gqnElbbFR5ervuY5aUrAoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:56.018 [XNIO-1 task-2] gqnElbbFR5ervuY5aUrAoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.018 [XNIO-1 task-2] gqnElbbFR5ervuY5aUrAoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.018 [XNIO-1 task-2] gqnElbbFR5ervuY5aUrAoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:56.018 [XNIO-1 task-2] gqnElbbFR5ervuY5aUrAoA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2c95ede-7c91-4062-abd0-5341b3541fd4", "f2c95ede-7c91-4062-abd0-5341b3541fd4", refreshToken) +16:40:56.019 [XNIO-1 task-2] gqnElbbFR5ervuY5aUrAoA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2c95ede-7c91-4062-abd0-5341b3541fd4 is not found.","severity":"ERROR"} +16:40:56.021 [XNIO-1 task-2] PT6PKxFHSKusonqpe_GJFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.021 [XNIO-1 task-2] PT6PKxFHSKusonqpe_GJFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.021 [XNIO-1 task-2] PT6PKxFHSKusonqpe_GJFg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.021 [XNIO-1 task-2] PT6PKxFHSKusonqpe_GJFg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.024 [XNIO-1 task-2] SJOAPnPBSZmU0-u8qgQUug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:56.025 [XNIO-1 task-2] SJOAPnPBSZmU0-u8qgQUug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.025 [XNIO-1 task-2] SJOAPnPBSZmU0-u8qgQUug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.025 [XNIO-1 task-2] SJOAPnPBSZmU0-u8qgQUug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a, base path is set to: null +16:40:56.025 [XNIO-1 task-2] SJOAPnPBSZmU0-u8qgQUug DEBUG com.networknt.schema.TypeValidator debug - validate( "ffe5c4de-824c-4690-863d-523c1f89182a", "ffe5c4de-824c-4690-863d-523c1f89182a", refreshToken) +16:40:56.025 [XNIO-1 task-2] SJOAPnPBSZmU0-u8qgQUug ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token ffe5c4de-824c-4690-863d-523c1f89182a is not found.","severity":"ERROR"} +16:40:56.026 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5aee09b4-c697-404b-a80c-eeb2ccda0483 +16:40:56.027 [XNIO-1 task-2] _Aj5eYVYShCxHY30FTTXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:56.027 [XNIO-1 task-2] _Aj5eYVYShCxHY30FTTXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.027 [XNIO-1 task-2] _Aj5eYVYShCxHY30FTTXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.027 [XNIO-1 task-2] _Aj5eYVYShCxHY30FTTXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/a25c408e-374a-4e3c-bce0-eb1aea929100, base path is set to: null +16:40:56.027 [XNIO-1 task-2] _Aj5eYVYShCxHY30FTTXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "a25c408e-374a-4e3c-bce0-eb1aea929100", "a25c408e-374a-4e3c-bce0-eb1aea929100", refreshToken) +16:40:56.027 [XNIO-1 task-2] _Aj5eYVYShCxHY30FTTXfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token a25c408e-374a-4e3c-bce0-eb1aea929100 is not found.","severity":"ERROR"} +16:40:56.031 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8124a711 +16:40:56.036 [XNIO-1 task-2] ZjnTF911RR6GaBH7aFEQLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.036 [XNIO-1 task-2] ZjnTF911RR6GaBH7aFEQLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.036 [XNIO-1 task-2] ZjnTF911RR6GaBH7aFEQLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.036 [XNIO-1 task-2] ZjnTF911RR6GaBH7aFEQLw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.043 [XNIO-1 task-2] 8OsI6j57TamV1TFatZLPpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.043 [XNIO-1 task-2] 8OsI6j57TamV1TFatZLPpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.043 [XNIO-1 task-2] 8OsI6j57TamV1TFatZLPpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.043 [XNIO-1 task-2] 8OsI6j57TamV1TFatZLPpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.043 [XNIO-1 task-2] 8OsI6j57TamV1TFatZLPpg DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.044 [XNIO-1 task-2] 8OsI6j57TamV1TFatZLPpg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.047 [XNIO-1 task-2] YcD7wSKBTZORiVsb9X5zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:56.047 [XNIO-1 task-2] YcD7wSKBTZORiVsb9X5zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.047 [XNIO-1 task-2] YcD7wSKBTZORiVsb9X5zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.047 [XNIO-1 task-2] YcD7wSKBTZORiVsb9X5zMw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:56.047 [XNIO-1 task-2] YcD7wSKBTZORiVsb9X5zMw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:56.049 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8124a711 +16:40:56.055 [XNIO-1 task-2] wtWBb6NCTMaNWjNOTDtnWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.055 [XNIO-1 task-2] wtWBb6NCTMaNWjNOTDtnWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.055 [XNIO-1 task-2] wtWBb6NCTMaNWjNOTDtnWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.055 [XNIO-1 task-2] wtWBb6NCTMaNWjNOTDtnWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.056 [XNIO-1 task-2] wtWBb6NCTMaNWjNOTDtnWg DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.056 [XNIO-1 task-2] wtWBb6NCTMaNWjNOTDtnWg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.059 [XNIO-1 task-2] xPKPb5vmRWOwc2pbnrJCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.059 [XNIO-1 task-2] xPKPb5vmRWOwc2pbnrJCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.059 [XNIO-1 task-2] xPKPb5vmRWOwc2pbnrJCxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.059 [XNIO-1 task-2] xPKPb5vmRWOwc2pbnrJCxA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.078 [XNIO-1 task-2] gBRHad_YQne2i0RljCw98A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.079 [XNIO-1 task-2] gBRHad_YQne2i0RljCw98A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.079 [XNIO-1 task-2] gBRHad_YQne2i0RljCw98A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.080 [XNIO-1 task-2] gBRHad_YQne2i0RljCw98A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.080 [XNIO-1 task-2] gBRHad_YQne2i0RljCw98A DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:56.080 [XNIO-1 task-2] gBRHad_YQne2i0RljCw98A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:56.086 [XNIO-1 task-2] mQcZQq6NTE-u7xt4jq4GFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.086 [XNIO-1 task-2] mQcZQq6NTE-u7xt4jq4GFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.086 [XNIO-1 task-2] mQcZQq6NTE-u7xt4jq4GFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.086 [XNIO-1 task-2] mQcZQq6NTE-u7xt4jq4GFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.087 [XNIO-1 task-2] mQcZQq6NTE-u7xt4jq4GFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.089 [XNIO-1 task-2] OMApkkjmTCG6Ta7r9BEYPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.089 [XNIO-1 task-2] OMApkkjmTCG6Ta7r9BEYPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.089 [XNIO-1 task-2] OMApkkjmTCG6Ta7r9BEYPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.089 [XNIO-1 task-2] OMApkkjmTCG6Ta7r9BEYPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.089 [XNIO-1 task-2] OMApkkjmTCG6Ta7r9BEYPw DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:56.089 [XNIO-1 task-2] OMApkkjmTCG6Ta7r9BEYPw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:56.096 [XNIO-1 task-2] vT5DFRxWR-C2SkJC2Tm-1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.096 [XNIO-1 task-2] vT5DFRxWR-C2SkJC2Tm-1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.096 [XNIO-1 task-2] vT5DFRxWR-C2SkJC2Tm-1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.096 [XNIO-1 task-2] vT5DFRxWR-C2SkJC2Tm-1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.125 [XNIO-1 task-2] pUN6iJBTRjObuMDavT05WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.125 [XNIO-1 task-2] pUN6iJBTRjObuMDavT05WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.125 [XNIO-1 task-2] pUN6iJBTRjObuMDavT05WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.125 [XNIO-1 task-2] pUN6iJBTRjObuMDavT05WA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.125 [XNIO-1 task-2] pUN6iJBTRjObuMDavT05WA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.136 [XNIO-1 task-2] DSP4hmUiTrSiCviokA3oeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.136 [XNIO-1 task-2] DSP4hmUiTrSiCviokA3oeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.136 [XNIO-1 task-2] DSP4hmUiTrSiCviokA3oeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.136 [XNIO-1 task-2] DSP4hmUiTrSiCviokA3oeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.138 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8124a711 +16:40:56.140 [XNIO-1 task-2] LjQVpswIQZyxU-SuajH-VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.141 [XNIO-1 task-2] LjQVpswIQZyxU-SuajH-VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.141 [XNIO-1 task-2] LjQVpswIQZyxU-SuajH-VQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.141 [XNIO-1 task-2] LjQVpswIQZyxU-SuajH-VQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.141 [XNIO-1 task-2] LjQVpswIQZyxU-SuajH-VQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:56.141 [XNIO-1 task-2] LjQVpswIQZyxU-SuajH-VQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:56.143 [XNIO-1 task-2] 2W--ztKvTUibofcwe-aLhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.143 [XNIO-1 task-2] 2W--ztKvTUibofcwe-aLhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.143 [XNIO-1 task-2] 2W--ztKvTUibofcwe-aLhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.143 [XNIO-1 task-2] 2W--ztKvTUibofcwe-aLhg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.149 [XNIO-1 task-2] iTUVr3a8SpWcfMFlaiJYJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.149 [XNIO-1 task-2] iTUVr3a8SpWcfMFlaiJYJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.150 [XNIO-1 task-2] iTUVr3a8SpWcfMFlaiJYJA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.150 [XNIO-1 task-2] iTUVr3a8SpWcfMFlaiJYJA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2, base path is set to: null +16:40:56.150 [XNIO-1 task-2] iTUVr3a8SpWcfMFlaiJYJA DEBUG com.networknt.schema.TypeValidator debug - validate( "6eb00f6e-7965-452d-a9c8-3374d87797e2", "6eb00f6e-7965-452d-a9c8-3374d87797e2", refreshToken) +16:40:56.150 [XNIO-1 task-2] iTUVr3a8SpWcfMFlaiJYJA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} +16:40:56.158 [XNIO-1 task-2] HqXJqLT2Sx6tlzvsnvGYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:56.159 [XNIO-1 task-2] HqXJqLT2Sx6tlzvsnvGYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.159 [XNIO-1 task-2] HqXJqLT2Sx6tlzvsnvGYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.159 [XNIO-1 task-2] HqXJqLT2Sx6tlzvsnvGYQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:56.159 [XNIO-1 task-2] HqXJqLT2Sx6tlzvsnvGYQA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:56.163 [XNIO-1 task-2] F24iZa3TQhyAfyhw-iRdXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.164 [XNIO-1 task-2] F24iZa3TQhyAfyhw-iRdXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.164 [XNIO-1 task-2] F24iZa3TQhyAfyhw-iRdXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.164 [XNIO-1 task-2] F24iZa3TQhyAfyhw-iRdXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.164 [XNIO-1 task-2] F24iZa3TQhyAfyhw-iRdXg DEBUG com.networknt.schema.TypeValidator debug - validate( "584f4913-4609-47f9-bc78-aa9aea7a755d", "584f4913-4609-47f9-bc78-aa9aea7a755d", refreshToken) +16:40:56.164 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.169 [XNIO-1 task-2] ekSEq8WjQB24HYF9rkVGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.169 [XNIO-1 task-2] ekSEq8WjQB24HYF9rkVGZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.169 [XNIO-1 task-2] ekSEq8WjQB24HYF9rkVGZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.170 [XNIO-1 task-2] ekSEq8WjQB24HYF9rkVGZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.170 [XNIO-1 task-2] ekSEq8WjQB24HYF9rkVGZw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.179 [XNIO-1 task-2] vtS62yDWSzqWFvI96gYPxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.179 [XNIO-1 task-2] vtS62yDWSzqWFvI96gYPxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.179 [XNIO-1 task-2] vtS62yDWSzqWFvI96gYPxQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.179 [XNIO-1 task-2] vtS62yDWSzqWFvI96gYPxQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.190 [XNIO-1 task-2] G8vJZTvAR4-zBNedU_j3mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.190 [XNIO-1 task-2] G8vJZTvAR4-zBNedU_j3mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.190 [XNIO-1 task-2] G8vJZTvAR4-zBNedU_j3mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.190 [XNIO-1 task-2] G8vJZTvAR4-zBNedU_j3mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.190 [XNIO-1 task-2] G8vJZTvAR4-zBNedU_j3mg DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:56.190 [XNIO-1 task-2] G8vJZTvAR4-zBNedU_j3mg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:56.200 [XNIO-1 task-2] al_xAKDxQ-2d9W4eXvfqMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.200 [XNIO-1 task-2] al_xAKDxQ-2d9W4eXvfqMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.200 [XNIO-1 task-2] al_xAKDxQ-2d9W4eXvfqMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.201 [XNIO-1 task-2] al_xAKDxQ-2d9W4eXvfqMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.201 [XNIO-1 task-2] al_xAKDxQ-2d9W4eXvfqMQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.202 [XNIO-1 task-2] ZoAwfCfNQvqaXtEiPXHuXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.202 [XNIO-1 task-2] ZoAwfCfNQvqaXtEiPXHuXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.203 [XNIO-1 task-2] ZoAwfCfNQvqaXtEiPXHuXw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.203 [XNIO-1 task-2] ZoAwfCfNQvqaXtEiPXHuXw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.203 [XNIO-1 task-2] ZoAwfCfNQvqaXtEiPXHuXw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.208 [XNIO-1 task-2] Usvsr6FgQIa7jxp_CEl9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.208 [XNIO-1 task-2] Usvsr6FgQIa7jxp_CEl9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.208 [XNIO-1 task-2] Usvsr6FgQIa7jxp_CEl9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.208 [XNIO-1 task-2] Usvsr6FgQIa7jxp_CEl9SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.209 [XNIO-1 task-2] Usvsr6FgQIa7jxp_CEl9SQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.211 [XNIO-1 task-2] rL0Lx5FiRG2uII6F3U02fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.211 [XNIO-1 task-2] rL0Lx5FiRG2uII6F3U02fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.211 [XNIO-1 task-2] rL0Lx5FiRG2uII6F3U02fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.211 [XNIO-1 task-2] rL0Lx5FiRG2uII6F3U02fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.211 [XNIO-1 task-2] rL0Lx5FiRG2uII6F3U02fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:56.212 [XNIO-1 task-2] rL0Lx5FiRG2uII6F3U02fQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:56.215 [XNIO-1 task-2] c6giyGzETlOlbKwLBTctJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.215 [XNIO-1 task-2] c6giyGzETlOlbKwLBTctJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.215 [XNIO-1 task-2] c6giyGzETlOlbKwLBTctJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.215 [XNIO-1 task-2] c6giyGzETlOlbKwLBTctJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.215 [XNIO-1 task-2] c6giyGzETlOlbKwLBTctJw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.219 [XNIO-1 task-2] v8g9iPCZSqat24Fv_DMg9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.219 [XNIO-1 task-2] v8g9iPCZSqat24Fv_DMg9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.219 [XNIO-1 task-2] v8g9iPCZSqat24Fv_DMg9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.220 [XNIO-1 task-2] v8g9iPCZSqat24Fv_DMg9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.220 [XNIO-1 task-2] v8g9iPCZSqat24Fv_DMg9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:56.220 [XNIO-1 task-2] v8g9iPCZSqat24Fv_DMg9Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:56.222 [XNIO-1 task-2] Ivx3xDAaSOajK7A4yx2eDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.222 [XNIO-1 task-2] Ivx3xDAaSOajK7A4yx2eDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.222 [XNIO-1 task-2] Ivx3xDAaSOajK7A4yx2eDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.222 [XNIO-1 task-2] Ivx3xDAaSOajK7A4yx2eDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.222 [XNIO-1 task-2] Ivx3xDAaSOajK7A4yx2eDA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.225 [XNIO-1 task-2] DldtwXpDTdykZx_dWg89Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.225 [XNIO-1 task-2] DldtwXpDTdykZx_dWg89Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.225 [XNIO-1 task-2] DldtwXpDTdykZx_dWg89Hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.225 [XNIO-1 task-2] DldtwXpDTdykZx_dWg89Hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.225 [XNIO-1 task-2] DldtwXpDTdykZx_dWg89Hg DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:56.226 [XNIO-1 task-2] DldtwXpDTdykZx_dWg89Hg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:56.227 [XNIO-1 task-2] IwprSvcLTf2IUwokAN3sjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.227 [XNIO-1 task-2] IwprSvcLTf2IUwokAN3sjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.227 [XNIO-1 task-2] IwprSvcLTf2IUwokAN3sjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.227 [XNIO-1 task-2] IwprSvcLTf2IUwokAN3sjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.227 [XNIO-1 task-2] IwprSvcLTf2IUwokAN3sjg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.229 [XNIO-1 task-2] hRK79RSgRLq3D_34FmNi1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.229 [XNIO-1 task-2] hRK79RSgRLq3D_34FmNi1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.229 [XNIO-1 task-2] hRK79RSgRLq3D_34FmNi1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.229 [XNIO-1 task-2] hRK79RSgRLq3D_34FmNi1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d, base path is set to: null +16:40:56.229 [XNIO-1 task-2] hRK79RSgRLq3D_34FmNi1g DEBUG com.networknt.schema.TypeValidator debug - validate( "5be98f82-73a0-43f7-8159-bf4f1e85b76d", "5be98f82-73a0-43f7-8159-bf4f1e85b76d", refreshToken) +16:40:56.229 [XNIO-1 task-2] hRK79RSgRLq3D_34FmNi1g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5be98f82-73a0-43f7-8159-bf4f1e85b76d is not found.","severity":"ERROR"} +16:40:56.231 [XNIO-1 task-2] IY-3_pprT_ePq_hnh2SXdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.231 [XNIO-1 task-2] IY-3_pprT_ePq_hnh2SXdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.231 [XNIO-1 task-2] IY-3_pprT_ePq_hnh2SXdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.231 [XNIO-1 task-2] IY-3_pprT_ePq_hnh2SXdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.231 [XNIO-1 task-2] IY-3_pprT_ePq_hnh2SXdg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.234 [XNIO-1 task-2] Zo9Z9zduS5-qUGx87QrSbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.234 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8124a711 +16:40:56.234 [XNIO-1 task-2] Zo9Z9zduS5-qUGx87QrSbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.234 [XNIO-1 task-2] Zo9Z9zduS5-qUGx87QrSbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.234 [XNIO-1 task-2] Zo9Z9zduS5-qUGx87QrSbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.234 [XNIO-1 task-2] Zo9Z9zduS5-qUGx87QrSbg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.243 [XNIO-1 task-2] D3AasEI3R5y0urODRuwHpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.244 [XNIO-1 task-2] D3AasEI3R5y0urODRuwHpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.244 [XNIO-1 task-2] D3AasEI3R5y0urODRuwHpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.244 [XNIO-1 task-2] D3AasEI3R5y0urODRuwHpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.248 [XNIO-1 task-2] VTAHHkAARSettM76VClAww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.248 [XNIO-1 task-2] VTAHHkAARSettM76VClAww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.248 [XNIO-1 task-2] VTAHHkAARSettM76VClAww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.248 [XNIO-1 task-2] VTAHHkAARSettM76VClAww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.248 [XNIO-1 task-2] VTAHHkAARSettM76VClAww DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:56.248 [XNIO-1 task-2] VTAHHkAARSettM76VClAww ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:56.254 [XNIO-1 task-2] 8rSQ0CauQRGqM0XzUrG6JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.254 [XNIO-1 task-2] 8rSQ0CauQRGqM0XzUrG6JQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.254 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8124a711 +16:40:56.254 [XNIO-1 task-2] 8rSQ0CauQRGqM0XzUrG6JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.254 [XNIO-1 task-2] 8rSQ0CauQRGqM0XzUrG6JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.255 [XNIO-1 task-2] 8rSQ0CauQRGqM0XzUrG6JQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:56.257 [XNIO-1 task-2] LILP-SgtTFa851UOqDe0MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a, base path is set to: null +16:40:56.257 [XNIO-1 task-2] LILP-SgtTFa851UOqDe0MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.257 [XNIO-1 task-2] LILP-SgtTFa851UOqDe0MA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.257 [XNIO-1 task-2] LILP-SgtTFa851UOqDe0MA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a, base path is set to: null +16:40:56.257 [XNIO-1 task-2] LILP-SgtTFa851UOqDe0MA DEBUG com.networknt.schema.TypeValidator debug - validate( "208ebc9a-6f45-4b5e-b523-b8eb449eac8a", "208ebc9a-6f45-4b5e-b523-b8eb449eac8a", refreshToken) +16:40:56.260 [XNIO-1 task-2] LILP-SgtTFa851UOqDe0MA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 208ebc9a-6f45-4b5e-b523-b8eb449eac8a is not found.","severity":"ERROR"} +16:40:56.264 [XNIO-1 task-2] X8JWVA9HTomSfDBgmkJe7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.264 [XNIO-1 task-2] X8JWVA9HTomSfDBgmkJe7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.264 [XNIO-1 task-2] X8JWVA9HTomSfDBgmkJe7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.264 [XNIO-1 task-2] X8JWVA9HTomSfDBgmkJe7Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.270 [XNIO-1 task-2] 2D2O6BvfR8ShSUKnuGHXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.270 [XNIO-1 task-2] 2D2O6BvfR8ShSUKnuGHXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.270 [XNIO-1 task-2] 2D2O6BvfR8ShSUKnuGHXfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.271 [XNIO-1 task-2] 2D2O6BvfR8ShSUKnuGHXfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.271 [XNIO-1 task-2] 2D2O6BvfR8ShSUKnuGHXfw DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:56.271 [XNIO-1 task-2] 2D2O6BvfR8ShSUKnuGHXfw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:56.272 [XNIO-1 task-2] SPvEbV8bTpOUpZuRdfsWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.272 [XNIO-1 task-2] SPvEbV8bTpOUpZuRdfsWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.272 [XNIO-1 task-2] SPvEbV8bTpOUpZuRdfsWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.273 [XNIO-1 task-2] SPvEbV8bTpOUpZuRdfsWgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.273 [XNIO-1 task-2] SPvEbV8bTpOUpZuRdfsWgA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.275 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8124a711 +16:40:56.275 [XNIO-1 task-2] _6fWt5eaSZ-OncJb3AKiag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.275 [XNIO-1 task-2] _6fWt5eaSZ-OncJb3AKiag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.276 [XNIO-1 task-2] _6fWt5eaSZ-OncJb3AKiag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.276 [XNIO-1 task-2] _6fWt5eaSZ-OncJb3AKiag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.276 [XNIO-1 task-2] _6fWt5eaSZ-OncJb3AKiag DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:56.276 [XNIO-1 task-2] _6fWt5eaSZ-OncJb3AKiag ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:56.278 [XNIO-1 task-2] 3jsL6wMURKStKwY3-_7uyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.279 [XNIO-1 task-2] 3jsL6wMURKStKwY3-_7uyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.279 [XNIO-1 task-2] 3jsL6wMURKStKwY3-_7uyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.279 [XNIO-1 task-2] 3jsL6wMURKStKwY3-_7uyg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.285 [XNIO-1 task-2] mN4GIWr5RdWk1l-F9PEwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a, base path is set to: null +16:40:56.286 [XNIO-1 task-2] mN4GIWr5RdWk1l-F9PEwEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.286 [XNIO-1 task-2] mN4GIWr5RdWk1l-F9PEwEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.286 [XNIO-1 task-2] mN4GIWr5RdWk1l-F9PEwEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/208ebc9a-6f45-4b5e-b523-b8eb449eac8a, base path is set to: null +16:40:56.286 [XNIO-1 task-2] mN4GIWr5RdWk1l-F9PEwEg DEBUG com.networknt.schema.TypeValidator debug - validate( "208ebc9a-6f45-4b5e-b523-b8eb449eac8a", "208ebc9a-6f45-4b5e-b523-b8eb449eac8a", refreshToken) +16:40:56.286 [XNIO-1 task-2] mN4GIWr5RdWk1l-F9PEwEg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 208ebc9a-6f45-4b5e-b523-b8eb449eac8a is not found.","severity":"ERROR"} +16:40:56.288 [XNIO-1 task-2] 9RK4WYbpQJ6Q466DUgmVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.288 [XNIO-1 task-2] 9RK4WYbpQJ6Q466DUgmVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.288 [XNIO-1 task-2] 9RK4WYbpQJ6Q466DUgmVLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.288 [XNIO-1 task-2] 9RK4WYbpQJ6Q466DUgmVLA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.292 [XNIO-1 task-2] Ag4yzcuST4a6jjXpRPkRkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.293 [XNIO-1 task-2] Ag4yzcuST4a6jjXpRPkRkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.293 [XNIO-1 task-2] Ag4yzcuST4a6jjXpRPkRkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.293 [XNIO-1 task-2] Ag4yzcuST4a6jjXpRPkRkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c, base path is set to: null +16:40:56.293 [XNIO-1 task-2] Ag4yzcuST4a6jjXpRPkRkg DEBUG com.networknt.schema.TypeValidator debug - validate( "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", "12ea68d2-b01e-4f1c-aceb-278d4e62a18c", refreshToken) +16:40:56.293 [XNIO-1 task-2] Ag4yzcuST4a6jjXpRPkRkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 12ea68d2-b01e-4f1c-aceb-278d4e62a18c is not found.","severity":"ERROR"} +16:40:56.293 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.295 [XNIO-1 task-2] 6avyysY6S3yE5xRYjjKKNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:56.295 [XNIO-1 task-2] 6avyysY6S3yE5xRYjjKKNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.295 [XNIO-1 task-2] 6avyysY6S3yE5xRYjjKKNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.295 [XNIO-1 task-2] 6avyysY6S3yE5xRYjjKKNQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:56.295 [XNIO-1 task-2] 6avyysY6S3yE5xRYjjKKNQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:56.303 [XNIO-1 task-2] mS0QSDbLSPiRcFZm-1TVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.303 [XNIO-1 task-2] mS0QSDbLSPiRcFZm-1TVTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.303 [XNIO-1 task-2] mS0QSDbLSPiRcFZm-1TVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.303 [XNIO-1 task-2] mS0QSDbLSPiRcFZm-1TVTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.303 [XNIO-1 task-2] mS0QSDbLSPiRcFZm-1TVTw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.308 [XNIO-1 task-2] iTB8IQrERuSRpBGYP_ls7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.308 [XNIO-1 task-2] iTB8IQrERuSRpBGYP_ls7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.308 [XNIO-1 task-2] iTB8IQrERuSRpBGYP_ls7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.309 [XNIO-1 task-2] iTB8IQrERuSRpBGYP_ls7w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.309 [XNIO-1 task-2] iTB8IQrERuSRpBGYP_ls7w DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.312 [XNIO-1 task-2] xojFYXUiQeqdQ63irQrEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.312 [XNIO-1 task-2] xojFYXUiQeqdQ63irQrEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.312 [XNIO-1 task-2] xojFYXUiQeqdQ63irQrEzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.312 [XNIO-1 task-2] xojFYXUiQeqdQ63irQrEzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.317 [XNIO-1 task-2] L_97OcyKQrO7o_dR9Dt7Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5, base path is set to: null +16:40:56.317 [XNIO-1 task-2] L_97OcyKQrO7o_dR9Dt7Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.318 [XNIO-1 task-2] L_97OcyKQrO7o_dR9Dt7Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.318 [XNIO-1 task-2] L_97OcyKQrO7o_dR9Dt7Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5, base path is set to: null +16:40:56.318 [XNIO-1 task-2] L_97OcyKQrO7o_dR9Dt7Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5", "5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5", refreshToken) +16:40:56.318 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.326 [XNIO-1 task-2] Jjh5santROWGcO6pIbzXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.326 [XNIO-1 task-2] Jjh5santROWGcO6pIbzXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.326 [XNIO-1 task-2] Jjh5santROWGcO6pIbzXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.326 [XNIO-1 task-2] Jjh5santROWGcO6pIbzXGg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.326 [XNIO-1 task-2] Jjh5santROWGcO6pIbzXGg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 +16:40:56.327 [XNIO-1 task-2] Jjh5santROWGcO6pIbzXGg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 5e4a77fe-6f1f-47f7-af29-c5e1a77cd5e5 is not found.","severity":"ERROR"} +16:40:56.329 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.330 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.330 [XNIO-1 task-2] AnjqB3-5TmWPa5juHAJuTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.330 [XNIO-1 task-2] AnjqB3-5TmWPa5juHAJuTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.330 [XNIO-1 task-2] AnjqB3-5TmWPa5juHAJuTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/ffe5c4de-824c-4690-863d-523c1f89182a +16:40:56.330 [XNIO-1 task-2] AnjqB3-5TmWPa5juHAJuTA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = ffe5c4de-824c-4690-863d-523c1f89182a +16:40:56.333 [XNIO-1 task-2] QJCZ7Ee2QRGllgVXej2i_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.333 [XNIO-1 task-2] QJCZ7Ee2QRGllgVXej2i_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.333 [XNIO-1 task-2] QJCZ7Ee2QRGllgVXej2i_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.333 [XNIO-1 task-2] QJCZ7Ee2QRGllgVXej2i_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.333 [XNIO-1 task-2] QJCZ7Ee2QRGllgVXej2i_Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.341 [XNIO-1 task-2] -6YsTr1xQmCpirgUAk2wew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4 +16:40:56.341 [XNIO-1 task-2] -6YsTr1xQmCpirgUAk2wew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.341 [XNIO-1 task-2] -6YsTr1xQmCpirgUAk2wew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.342 [XNIO-1 task-2] -6YsTr1xQmCpirgUAk2wew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4 +16:40:56.342 [XNIO-1 task-2] -6YsTr1xQmCpirgUAk2wew DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = f2c95ede-7c91-4062-abd0-5341b3541fd4 +16:40:56.347 [XNIO-1 task-2] LpFwAi4MQnelEGlmg7-jkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:56.347 [XNIO-1 task-2] LpFwAi4MQnelEGlmg7-jkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.347 [XNIO-1 task-2] LpFwAi4MQnelEGlmg7-jkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.347 [XNIO-1 task-2] LpFwAi4MQnelEGlmg7-jkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/f2c95ede-7c91-4062-abd0-5341b3541fd4, base path is set to: null +16:40:56.347 [XNIO-1 task-2] LpFwAi4MQnelEGlmg7-jkg DEBUG com.networknt.schema.TypeValidator debug - validate( "f2c95ede-7c91-4062-abd0-5341b3541fd4", "f2c95ede-7c91-4062-abd0-5341b3541fd4", refreshToken) +16:40:56.347 [XNIO-1 task-2] LpFwAi4MQnelEGlmg7-jkg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token f2c95ede-7c91-4062-abd0-5341b3541fd4 is not found.","severity":"ERROR"} +16:40:56.352 [XNIO-1 task-2] EpArO2foSa2DNukhHFYXvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.352 [XNIO-1 task-2] EpArO2foSa2DNukhHFYXvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.352 [XNIO-1 task-2] EpArO2foSa2DNukhHFYXvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.352 [XNIO-1 task-2] EpArO2foSa2DNukhHFYXvA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.352 [XNIO-1 task-2] EpArO2foSa2DNukhHFYXvA DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.358 [XNIO-1 task-2] tiNbuQVbS42sSz5Ri0Bf_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.358 [XNIO-1 task-2] tiNbuQVbS42sSz5Ri0Bf_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.358 [XNIO-1 task-2] tiNbuQVbS42sSz5Ri0Bf_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.358 [XNIO-1 task-2] tiNbuQVbS42sSz5Ri0Bf_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.365 [XNIO-1 task-2] qCRcXfV6TDaitvILhgA63Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.365 [XNIO-1 task-2] qCRcXfV6TDaitvILhgA63Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.365 [XNIO-1 task-2] qCRcXfV6TDaitvILhgA63Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.365 [XNIO-1 task-2] qCRcXfV6TDaitvILhgA63Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.366 [XNIO-1 task-2] qCRcXfV6TDaitvILhgA63Q DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.371 [XNIO-1 task-2] -KBUmBA8R9ejKcM92sfLaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.371 [XNIO-1 task-2] -KBUmBA8R9ejKcM92sfLaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.371 [XNIO-1 task-2] -KBUmBA8R9ejKcM92sfLaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.371 [XNIO-1 task-2] -KBUmBA8R9ejKcM92sfLaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.372 [XNIO-1 task-2] -KBUmBA8R9ejKcM92sfLaA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.379 [XNIO-1 task-2] HSZVZOFeRCKoAQHEGMXf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797, base path is set to: null +16:40:56.379 [XNIO-1 task-2] HSZVZOFeRCKoAQHEGMXf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.379 [XNIO-1 task-2] HSZVZOFeRCKoAQHEGMXf6A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.379 [XNIO-1 task-2] HSZVZOFeRCKoAQHEGMXf6A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797, base path is set to: null +16:40:56.379 [XNIO-1 task-2] HSZVZOFeRCKoAQHEGMXf6A DEBUG com.networknt.schema.TypeValidator debug - validate( "7aa12a18-3724-4c35-a930-5e76646f0797", "7aa12a18-3724-4c35-a930-5e76646f0797", refreshToken) +16:40:56.379 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.385 [XNIO-1 task-2] rKJ8T7tWQ9mRkpwj1jY7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.385 [XNIO-1 task-2] rKJ8T7tWQ9mRkpwj1jY7sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.385 [XNIO-1 task-2] rKJ8T7tWQ9mRkpwj1jY7sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.385 [XNIO-1 task-2] rKJ8T7tWQ9mRkpwj1jY7sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.385 [XNIO-1 task-2] rKJ8T7tWQ9mRkpwj1jY7sw DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.385 [XNIO-1 task-2] rKJ8T7tWQ9mRkpwj1jY7sw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.387 [XNIO-1 task-2] 3JMDSUA7QByHv5_aa47Q4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.387 [XNIO-1 task-2] 3JMDSUA7QByHv5_aa47Q4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.387 [XNIO-1 task-2] 3JMDSUA7QByHv5_aa47Q4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.388 [XNIO-1 task-2] 3JMDSUA7QByHv5_aa47Q4A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.392 [XNIO-1 task-2] I2-eqor0S0mE36pbddjuZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797, base path is set to: null +16:40:56.392 [XNIO-1 task-2] I2-eqor0S0mE36pbddjuZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.392 [XNIO-1 task-2] I2-eqor0S0mE36pbddjuZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.392 [XNIO-1 task-2] I2-eqor0S0mE36pbddjuZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797, base path is set to: null +16:40:56.392 [XNIO-1 task-2] I2-eqor0S0mE36pbddjuZA DEBUG com.networknt.schema.TypeValidator debug - validate( "7aa12a18-3724-4c35-a930-5e76646f0797", "7aa12a18-3724-4c35-a930-5e76646f0797", refreshToken) +16:40:56.392 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.398 [XNIO-1 task-2] ovoxxY01TqGyKPbzeYYGFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.398 [XNIO-1 task-2] ovoxxY01TqGyKPbzeYYGFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.398 [XNIO-1 task-2] ovoxxY01TqGyKPbzeYYGFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.398 [XNIO-1 task-2] ovoxxY01TqGyKPbzeYYGFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.398 [XNIO-1 task-2] ovoxxY01TqGyKPbzeYYGFQ DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.403 [XNIO-1 task-2] SLGO_M53S_u_cY8A-CmkYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.403 [XNIO-1 task-2] SLGO_M53S_u_cY8A-CmkYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.404 [XNIO-1 task-2] SLGO_M53S_u_cY8A-CmkYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.404 [XNIO-1 task-2] SLGO_M53S_u_cY8A-CmkYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.404 [XNIO-1 task-2] SLGO_M53S_u_cY8A-CmkYw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.410 [XNIO-1 task-2] BeWlq-ArQ0uT7B9Vmd6A4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797, base path is set to: null +16:40:56.410 [XNIO-1 task-2] BeWlq-ArQ0uT7B9Vmd6A4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.410 [XNIO-1 task-2] BeWlq-ArQ0uT7B9Vmd6A4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.410 [XNIO-1 task-2] BeWlq-ArQ0uT7B9Vmd6A4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797, base path is set to: null +16:40:56.410 [XNIO-1 task-2] BeWlq-ArQ0uT7B9Vmd6A4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "7aa12a18-3724-4c35-a930-5e76646f0797", "7aa12a18-3724-4c35-a930-5e76646f0797", refreshToken) +16:40:56.410 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.413 [XNIO-1 task-2] 7SoLMJ_JQ4m0kM0l8rORJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.413 [XNIO-1 task-2] 7SoLMJ_JQ4m0kM0l8rORJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.413 [XNIO-1 task-2] 7SoLMJ_JQ4m0kM0l8rORJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.413 [XNIO-1 task-2] 7SoLMJ_JQ4m0kM0l8rORJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.413 [XNIO-1 task-2] 7SoLMJ_JQ4m0kM0l8rORJw DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.413 [XNIO-1 task-2] 7SoLMJ_JQ4m0kM0l8rORJw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.415 [XNIO-1 task-2] Vnmj7vh-Qsa9kQILkkiRxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.416 [XNIO-1 task-2] Vnmj7vh-Qsa9kQILkkiRxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.416 [XNIO-1 task-2] Vnmj7vh-Qsa9kQILkkiRxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.416 [XNIO-1 task-2] Vnmj7vh-Qsa9kQILkkiRxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.416 [XNIO-1 task-2] Vnmj7vh-Qsa9kQILkkiRxA DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 7aa12a18-3724-4c35-a930-5e76646f0797 +16:40:56.417 [XNIO-1 task-2] Vnmj7vh-Qsa9kQILkkiRxA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 7aa12a18-3724-4c35-a930-5e76646f0797 is not found.","severity":"ERROR"} +16:40:56.417 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ebe179c4-0d90-4eef-87bd-9227eb760257 +16:40:56.420 [XNIO-1 task-2] rYwDiEP4ThaPRptS0Sym5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.420 [XNIO-1 task-2] rYwDiEP4ThaPRptS0Sym5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.420 [XNIO-1 task-2] rYwDiEP4ThaPRptS0Sym5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.420 [XNIO-1 task-2] rYwDiEP4ThaPRptS0Sym5Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.424 [XNIO-1 task-2] R3A42fxGSem2_nQBfmTsVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.425 [XNIO-1 task-2] R3A42fxGSem2_nQBfmTsVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.425 [XNIO-1 task-2] R3A42fxGSem2_nQBfmTsVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token, base path is set to: null +16:40:56.425 [XNIO-1 task-2] R3A42fxGSem2_nQBfmTsVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.425 [XNIO-1 task-2] R3A42fxGSem2_nQBfmTsVw DEBUG c.n.o.t.h.Oauth2RefreshTokenGetHandler handleRequest - userId = % page = 0 pageSize = 10 +16:40:56.429 [XNIO-1 task-2] Im4_GScmRL-B3JwOiRK9bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.429 [XNIO-1 task-2] Im4_GScmRL-B3JwOiRK9bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.429 [XNIO-1 task-2] Im4_GScmRL-B3JwOiRK9bQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.429 [XNIO-1 task-2] Im4_GScmRL-B3JwOiRK9bQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.429 [XNIO-1 task-2] Im4_GScmRL-B3JwOiRK9bQ DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.429 [XNIO-1 task-2] Im4_GScmRL-B3JwOiRK9bQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.432 [XNIO-1 task-2] pKV_CO9zSDK0G1FV1h33jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.432 [XNIO-1 task-2] pKV_CO9zSDK0G1FV1h33jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.432 [XNIO-1 task-2] pKV_CO9zSDK0G1FV1h33jg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.432 [XNIO-1 task-2] pKV_CO9zSDK0G1FV1h33jg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.438 [XNIO-1 task-2] L3TBQkHgTCyMU_S7VJ9uyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.438 [XNIO-1 task-2] L3TBQkHgTCyMU_S7VJ9uyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.438 [XNIO-1 task-2] L3TBQkHgTCyMU_S7VJ9uyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.438 [XNIO-1 task-2] L3TBQkHgTCyMU_S7VJ9uyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.438 [XNIO-1 task-2] L3TBQkHgTCyMU_S7VJ9uyw DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.438 [XNIO-1 task-2] L3TBQkHgTCyMU_S7VJ9uyw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.440 [XNIO-1 task-2] Y1KvO9N1QnWeI4a8cHKKcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.440 [XNIO-1 task-2] Y1KvO9N1QnWeI4a8cHKKcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.440 [XNIO-1 task-2] Y1KvO9N1QnWeI4a8cHKKcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.440 [XNIO-1 task-2] Y1KvO9N1QnWeI4a8cHKKcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.440 [XNIO-1 task-2] Y1KvO9N1QnWeI4a8cHKKcw DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a +16:40:56.443 [XNIO-1 task-2] g2nb-9yJR2-fbxxPddd2kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.443 [XNIO-1 task-2] g2nb-9yJR2-fbxxPddd2kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.443 [XNIO-1 task-2] g2nb-9yJR2-fbxxPddd2kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.443 [XNIO-1 task-2] g2nb-9yJR2-fbxxPddd2kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/00bd5867-1c25-4cf2-b86c-3cba6c9eb69a, base path is set to: null +16:40:56.444 [XNIO-1 task-2] g2nb-9yJR2-fbxxPddd2kg DEBUG com.networknt.schema.TypeValidator debug - validate( "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", "00bd5867-1c25-4cf2-b86c-3cba6c9eb69a", refreshToken) +16:40:56.444 [XNIO-1 task-2] g2nb-9yJR2-fbxxPddd2kg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a is not found.","severity":"ERROR"} +16:40:56.445 [XNIO-1 task-2] t-2riLFcTr2RGoJF9hmFlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.445 [XNIO-1 task-2] t-2riLFcTr2RGoJF9hmFlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.446 [XNIO-1 task-2] t-2riLFcTr2RGoJF9hmFlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.446 [XNIO-1 task-2] t-2riLFcTr2RGoJF9hmFlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.446 [XNIO-1 task-2] t-2riLFcTr2RGoJF9hmFlg DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenDeleteHandler handleRequest - refreshToken = 584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.447 [XNIO-1 task-2] t-2riLFcTr2RGoJF9hmFlg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 584f4913-4609-47f9-bc78-aa9aea7a755d is not found.","severity":"ERROR"} +16:40:56.448 [XNIO-1 task-2] 4wmcD6WsSDiq8exbSAe9BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.448 [XNIO-1 task-2] 4wmcD6WsSDiq8exbSAe9BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.449 [XNIO-1 task-2] 4wmcD6WsSDiq8exbSAe9BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} +16:40:56.449 [XNIO-1 task-2] 4wmcD6WsSDiq8exbSAe9BQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.449 [XNIO-1 task-2] 4wmcD6WsSDiq8exbSAe9BQ DEBUG c.n.o.t.h.Oauth2RefreshTokenRefreshTokenGetHandler handleRequest - refreshToken = 584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.450 [XNIO-1 task-2] 4wmcD6WsSDiq8exbSAe9BQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 584f4913-4609-47f9-bc78-aa9aea7a755d is not found.","severity":"ERROR"} +16:40:56.451 [XNIO-1 task-2] xKWAciTwSpqgfZ7NkViSqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.451 [XNIO-1 task-2] xKWAciTwSpqgfZ7NkViSqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.451 [XNIO-1 task-2] xKWAciTwSpqgfZ7NkViSqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.452 [XNIO-1 task-2] xKWAciTwSpqgfZ7NkViSqA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.456 [XNIO-1 task-2] YOndt1lNSv6uTeUTI9l5NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.456 [XNIO-1 task-2] YOndt1lNSv6uTeUTI9l5NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.457 [XNIO-1 task-2] YOndt1lNSv6uTeUTI9l5NQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.457 [XNIO-1 task-2] YOndt1lNSv6uTeUTI9l5NQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.457 [XNIO-1 task-2] YOndt1lNSv6uTeUTI9l5NQ DEBUG com.networknt.schema.TypeValidator debug - validate( "584f4913-4609-47f9-bc78-aa9aea7a755d", "584f4913-4609-47f9-bc78-aa9aea7a755d", refreshToken) +16:40:56.457 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.460 [XNIO-1 task-2] 8WrKMbxATiOdue352LE-MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.460 [XNIO-1 task-2] 8WrKMbxATiOdue352LE-MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.460 [XNIO-1 task-2] 8WrKMbxATiOdue352LE-MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.460 [XNIO-1 task-2] 8WrKMbxATiOdue352LE-MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.460 [XNIO-1 task-2] 8WrKMbxATiOdue352LE-MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "584f4913-4609-47f9-bc78-aa9aea7a755d", "584f4913-4609-47f9-bc78-aa9aea7a755d", refreshToken) +16:40:56.460 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.463 [XNIO-1 task-2] 6uWMzt7FR5ihtcwulKK9IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.463 [XNIO-1 task-2] 6uWMzt7FR5ihtcwulKK9IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.463 [XNIO-1 task-2] 6uWMzt7FR5ihtcwulKK9IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.463 [XNIO-1 task-2] 6uWMzt7FR5ihtcwulKK9IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.463 [XNIO-1 task-2] 6uWMzt7FR5ihtcwulKK9IQ DEBUG com.networknt.schema.TypeValidator debug - validate( "584f4913-4609-47f9-bc78-aa9aea7a755d", "584f4913-4609-47f9-bc78-aa9aea7a755d", refreshToken) +16:40:56.464 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.467 [XNIO-1 task-2] 0zqsPrwVRK-WAhV-9ZZtIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b27f021-4e94-40cc-9576-f3011822e07b, base path is set to: null +16:40:56.467 [XNIO-1 task-2] 0zqsPrwVRK-WAhV-9ZZtIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.467 [XNIO-1 task-2] 0zqsPrwVRK-WAhV-9ZZtIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.467 [XNIO-1 task-2] 0zqsPrwVRK-WAhV-9ZZtIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b27f021-4e94-40cc-9576-f3011822e07b, base path is set to: null +16:40:56.467 [XNIO-1 task-2] 0zqsPrwVRK-WAhV-9ZZtIA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b27f021-4e94-40cc-9576-f3011822e07b", "4b27f021-4e94-40cc-9576-f3011822e07b", refreshToken) +16:40:56.474 [XNIO-1 task-2] sj1GabPXTsiFgZQUjLag1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.474 [XNIO-1 task-2] sj1GabPXTsiFgZQUjLag1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.474 [XNIO-1 task-2] sj1GabPXTsiFgZQUjLag1g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.474 [XNIO-1 task-2] sj1GabPXTsiFgZQUjLag1g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d, base path is set to: null +16:40:56.474 [XNIO-1 task-2] sj1GabPXTsiFgZQUjLag1g DEBUG com.networknt.schema.TypeValidator debug - validate( "584f4913-4609-47f9-bc78-aa9aea7a755d", "584f4913-4609-47f9-bc78-aa9aea7a755d", refreshToken) +16:40:56.474 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.477 [XNIO-1 task-2] mi95rWbYSFKqBZ34mudokw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b27f021-4e94-40cc-9576-f3011822e07b, base path is set to: null +16:40:56.477 [XNIO-1 task-2] mi95rWbYSFKqBZ34mudokw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token +16:40:56.477 [XNIO-1 task-2] mi95rWbYSFKqBZ34mudokw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/refresh_token/{refreshToken} +16:40:56.477 [XNIO-1 task-2] mi95rWbYSFKqBZ34mudokw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/refresh_token/4b27f021-4e94-40cc-9576-f3011822e07b, base path is set to: null +16:40:56.477 [XNIO-1 task-2] mi95rWbYSFKqBZ34mudokw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b27f021-4e94-40cc-9576-f3011822e07b", "4b27f021-4e94-40cc-9576-f3011822e07b", refreshToken) +16:40:56.478 [XNIO-1 task-2] mi95rWbYSFKqBZ34mudokw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 4b27f021-4e94-40cc-9576-f3011822e07b is not found.","severity":"ERROR"} +16:40:56.481 [XNIO-1 task-2] 7Gvgvw-4SrelaCIVORo_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/584f4913-4609-47f9-bc78-aa9aea7a755d +16:40:56.481 [XNIO-1 task-2] 7Gvgvw-4SrelaCIVORo_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token +16:40:56.481 [XNIO-1 task-2] 7Gvgvw-4SrelaCIVORo_Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/refresh_token/{refreshToken} diff --git a/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-service-1.log b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-service-1.log new file mode 100644 index 0000000..f8d46f5 --- /dev/null +++ b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-service-1.log @@ -0,0 +1,3156 @@ +16:40:50.940 [XNIO-1 task-2] w36eAxhJTze5C9rp4bvKvA DEBUG com.networknt.schema.TypeValidator debug - validate( "e65c6856", "e65c6856", serviceId) +16:40:50.941 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:e65c6856 +16:40:50.945 [XNIO-1 task-2] c9H4FLkdSFmdTspc2873kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.945 [XNIO-1 task-2] c9H4FLkdSFmdTspc2873kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.945 [XNIO-1 task-2] c9H4FLkdSFmdTspc2873kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.954 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.954 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.954 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.954 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.955 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:50.955 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "4eff4132-9cfa-493c-9b7a-dc1ff20f3154", {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:50.955 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "58e9a88c", {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:50.955 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:50.955 [XNIO-1 task-2] LH7AzSYcRUOff6b0CUs0yw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.960 [XNIO-1 task-2] ALTIymQVRbe_2_1eOQ6IuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/25fd70db +16:40:50.960 [XNIO-1 task-2] ALTIymQVRbe_2_1eOQ6IuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.960 [XNIO-1 task-2] ALTIymQVRbe_2_1eOQ6IuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:50.960 [XNIO-1 task-2] ALTIymQVRbe_2_1eOQ6IuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/25fd70db +16:40:50.967 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:50.967 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:50.967 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:50.967 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.967 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.967 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:50.967 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:50.968 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c45feca2-1601-4105-bb60-d4368912", {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:50.968 [XNIO-1 task-2] fgxt5CO9Tvi5XXZzSXNBiQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"58e9a88c","serviceName":"c45feca2-1601-4105-bb60-d4368912","serviceDesc":"4eff4132-9cfa-493c-9b7a-dc1ff20f3154","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:50.975 [XNIO-1 task-2] 3l8DLnRnSxGJEyWucHVIjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58e9a88c, base path is set to: null +16:40:50.976 [XNIO-1 task-2] 3l8DLnRnSxGJEyWucHVIjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:50.976 [XNIO-1 task-2] 3l8DLnRnSxGJEyWucHVIjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:50.976 [XNIO-1 task-2] 3l8DLnRnSxGJEyWucHVIjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/58e9a88c, base path is set to: null +16:40:50.976 [XNIO-1 task-2] 3l8DLnRnSxGJEyWucHVIjA DEBUG com.networknt.schema.TypeValidator debug - validate( "58e9a88c", "58e9a88c", serviceId) +16:40:50.981 [XNIO-1 task-2] WtpP-_jfQcOe3WhXKIaETw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.981 [XNIO-1 task-2] WtpP-_jfQcOe3WhXKIaETw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.981 [XNIO-1 task-2] WtpP-_jfQcOe3WhXKIaETw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.981 [XNIO-1 task-2] WtpP-_jfQcOe3WhXKIaETw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:50.985 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore load - Load:30d38d6f-c294-4f44-994e-2e1b168666c9 +16:40:50.985 [XNIO-1 task-2] cK1UfU2_TkK0Eqtnkfycqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:50.985 [XNIO-1 task-2] cK1UfU2_TkK0Eqtnkfycqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:50.986 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore store - Store:30d38d6f-c294-4f44-994e-2e1b168666c9 +16:40:50.992 [XNIO-1 task-2] 744GOhouSC-j7DtO9HE-ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/77933330, base path is set to: null +16:40:50.992 [XNIO-1 task-2] 744GOhouSC-j7DtO9HE-ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:50.992 [XNIO-1 task-2] 744GOhouSC-j7DtO9HE-ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:50.992 [XNIO-1 task-2] 744GOhouSC-j7DtO9HE-ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/77933330, base path is set to: null +16:40:50.992 [XNIO-1 task-2] 744GOhouSC-j7DtO9HE-ig DEBUG com.networknt.schema.TypeValidator debug - validate( "77933330", "77933330", serviceId) +16:40:50.998 [XNIO-1 task-2] 7E8D9WEgTDyiss__Ot72AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.998 [XNIO-1 task-2] 7E8D9WEgTDyiss__Ot72AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.998 [XNIO-1 task-2] 7E8D9WEgTDyiss__Ot72AA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:50.999 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c6c877d5 +16:40:51.003 [XNIO-1 task-2] Vry_jRInQ46RWYxrhMFS5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6c877d5, base path is set to: null +16:40:51.004 [XNIO-1 task-2] Vry_jRInQ46RWYxrhMFS5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.004 [XNIO-1 task-2] Vry_jRInQ46RWYxrhMFS5Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.004 [XNIO-1 task-2] Vry_jRInQ46RWYxrhMFS5Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c6c877d5, base path is set to: null +16:40:51.004 [XNIO-1 task-2] Vry_jRInQ46RWYxrhMFS5Q DEBUG com.networknt.schema.TypeValidator debug - validate( "c6c877d5", "c6c877d5", serviceId) +16:40:51.005 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:c6c877d5 +16:40:51.009 [XNIO-1 task-2] kGdWVKXLRXeuOXT74-JKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.009 [XNIO-1 task-2] kGdWVKXLRXeuOXT74-JKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.009 [XNIO-1 task-2] kGdWVKXLRXeuOXT74-JKZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG com.networknt.schema.TypeValidator debug - validate( "b4a90ce7-9144-4c24-8b8f-3f119ffaee61", {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG com.networknt.schema.TypeValidator debug - validate( "21332c63", {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.016 [XNIO-1 task-2] MMus9PKxSw2IADuGCkDo0g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"21332c63","serviceName":"9061034e-33f8-4bda-8b42-c476bca1","serviceDesc":"b4a90ce7-9144-4c24-8b8f-3f119ffaee61","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.023 [XNIO-1 task-2] 7ajj2AAgQ26lIgrM_wHNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.023 [XNIO-1 task-2] 7ajj2AAgQ26lIgrM_wHNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.023 [XNIO-1 task-2] 7ajj2AAgQ26lIgrM_wHNAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.030 [XNIO-1 task-2] MV-G_qGJSJC3uQs1kwl0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21332c63 +16:40:51.030 [XNIO-1 task-2] MV-G_qGJSJC3uQs1kwl0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.030 [XNIO-1 task-2] MV-G_qGJSJC3uQs1kwl0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.030 [XNIO-1 task-2] MV-G_qGJSJC3uQs1kwl0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/21332c63 +16:40:51.064 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG com.networknt.schema.TypeValidator debug - validate( "e2f6f8f2-1c7e-4401-8cc3-a727626a", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.065 [XNIO-1 task-2] JgFoA58mRMKT_A6d6VJ72w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.074 [XNIO-1 task-2] inMdRx_XQwqqTToFnGvzVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.074 [XNIO-1 task-2] inMdRx_XQwqqTToFnGvzVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.074 [XNIO-1 task-2] inMdRx_XQwqqTToFnGvzVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.074 [XNIO-1 task-2] inMdRx_XQwqqTToFnGvzVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.081 [XNIO-1 task-2] n4pVnS7jRyOtU42YmzhBPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.081 [XNIO-1 task-2] n4pVnS7jRyOtU42YmzhBPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.081 [XNIO-1 task-2] n4pVnS7jRyOtU42YmzhBPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.091 [XNIO-1 task-2] cRP6h4pRSo6HyUIJhiO-5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.091 [XNIO-1 task-2] cRP6h4pRSo6HyUIJhiO-5A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.091 [XNIO-1 task-2] cRP6h4pRSo6HyUIJhiO-5A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.099 [XNIO-1 task-2] 78k-0mpdRsqK-e5tl483ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.099 [XNIO-1 task-2] 78k-0mpdRsqK-e5tl483ng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.099 [XNIO-1 task-2] 78k-0mpdRsqK-e5tl483ng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.099 [XNIO-1 task-2] 78k-0mpdRsqK-e5tl483ng DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.107 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.107 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.107 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.107 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.108 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.108 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.108 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.108 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG com.networknt.schema.TypeValidator debug - validate( "63b55e31-6f0f-46f6-829f-798c7dc6", {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.108 [XNIO-1 task-2] usV8C-bYSSC1hYo1B1kidg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.115 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.115 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.115 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.115 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.116 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.116 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.116 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.116 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG com.networknt.schema.TypeValidator debug - validate( "e2f6f8f2-1c7e-4401-8cc3-a727626a", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.116 [XNIO-1 task-2] j_MMPBeISyGFfcAMEAkNRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.117 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:a527a24e-41da-444e-a2b4-0f0590819576 +16:40:51.121 [XNIO-1 task-2] A4ChWAspS1mMbydFCYHhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.121 [XNIO-1 task-2] A4ChWAspS1mMbydFCYHhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.121 [XNIO-1 task-2] A4ChWAspS1mMbydFCYHhjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.121 [XNIO-1 task-2] A4ChWAspS1mMbydFCYHhjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.129 [XNIO-1 task-2] KWC4Z_LNQFG09y488hrrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.129 [XNIO-1 task-2] KWC4Z_LNQFG09y488hrrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.129 [XNIO-1 task-2] KWC4Z_LNQFG09y488hrrJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.136 [XNIO-1 task-2] MY2rKGSRS8OX5vsrfVJyxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/caee5d9a +16:40:51.136 [XNIO-1 task-2] MY2rKGSRS8OX5vsrfVJyxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.136 [XNIO-1 task-2] MY2rKGSRS8OX5vsrfVJyxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.136 [XNIO-1 task-2] MY2rKGSRS8OX5vsrfVJyxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/caee5d9a +16:40:51.143 [XNIO-1 task-2] 0Tw9RRC9RdSkKyp06f7lOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.143 [XNIO-1 task-2] 0Tw9RRC9RdSkKyp06f7lOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.143 [XNIO-1 task-2] 0Tw9RRC9RdSkKyp06f7lOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.143 [XNIO-1 task-2] 0Tw9RRC9RdSkKyp06f7lOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.148 [XNIO-1 task-2] YhkDEv-NTcusD24XNMsnHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.148 [XNIO-1 task-2] YhkDEv-NTcusD24XNMsnHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.148 [XNIO-1 task-2] YhkDEv-NTcusD24XNMsnHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.149 [XNIO-1 task-2] YhkDEv-NTcusD24XNMsnHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.154 [XNIO-1 task-2] Bu9Zyu4uRyKLNvwjHUmUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a2eafb8, base path is set to: null +16:40:51.154 [XNIO-1 task-2] Bu9Zyu4uRyKLNvwjHUmUeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.154 [XNIO-1 task-2] Bu9Zyu4uRyKLNvwjHUmUeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.154 [XNIO-1 task-2] Bu9Zyu4uRyKLNvwjHUmUeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a2eafb8, base path is set to: null +16:40:51.154 [XNIO-1 task-2] Bu9Zyu4uRyKLNvwjHUmUeg DEBUG com.networknt.schema.TypeValidator debug - validate( "9a2eafb8", "9a2eafb8", serviceId) +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9b0f37a-b23b-4092-912b-4f65c65b00cf", {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f04b2ac7", {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.157 [XNIO-1 task-2] wwPIo4NGTsSfgFkehW6pBQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f04b2ac7","serviceName":"63b55e31-6f0f-46f6-829f-798c7dc6","serviceDesc":"e9b0f37a-b23b-4092-912b-4f65c65b00cf","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.162 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:c9a6e3bc-431f-4b95-9460-33a2c4fda64f +16:40:51.163 [XNIO-1 task-2] EkOgNX3DSaCQwyfbj4-0SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.163 [XNIO-1 task-2] EkOgNX3DSaCQwyfbj4-0SA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.163 [XNIO-1 task-2] EkOgNX3DSaCQwyfbj4-0SA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.169 [XNIO-1 task-2] NK_CRFpQTTyFnhag9SCiCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f04b2ac7, base path is set to: null +16:40:51.169 [XNIO-1 task-2] NK_CRFpQTTyFnhag9SCiCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.169 [XNIO-1 task-2] NK_CRFpQTTyFnhag9SCiCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.170 [XNIO-1 task-2] NK_CRFpQTTyFnhag9SCiCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f04b2ac7, base path is set to: null +16:40:51.170 [XNIO-1 task-2] NK_CRFpQTTyFnhag9SCiCA DEBUG com.networknt.schema.TypeValidator debug - validate( "f04b2ac7", "f04b2ac7", serviceId) +16:40:51.172 [XNIO-1 task-2] v3xcRJpUQBKp9XPkR9Uekw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.173 [XNIO-1 task-2] v3xcRJpUQBKp9XPkR9Uekw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.173 [XNIO-1 task-2] v3xcRJpUQBKp9XPkR9Uekw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.179 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.179 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.180 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.180 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.180 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.180 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG com.networknt.schema.TypeValidator debug - validate( "7eae5137-fb9d-4195-8420-fe569b874773", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.180 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG com.networknt.schema.TypeValidator debug - validate( "f1baffcc", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.180 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.180 [XNIO-1 task-2] DKfIJMOnR9OufW-91T4dsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.186 [XNIO-1 task-2] OpAiK5b8T9GX-9OCNKg6aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.186 [XNIO-1 task-2] OpAiK5b8T9GX-9OCNKg6aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.186 [XNIO-1 task-2] OpAiK5b8T9GX-9OCNKg6aA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.186 [XNIO-1 task-2] OpAiK5b8T9GX-9OCNKg6aA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.192 [XNIO-1 task-2] E6AzhRf1SNK1EIkCdRibnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.192 [XNIO-1 task-2] E6AzhRf1SNK1EIkCdRibnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.192 [XNIO-1 task-2] E6AzhRf1SNK1EIkCdRibnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.200 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG com.networknt.schema.TypeValidator debug - validate( "e2f6f8f2-1c7e-4401-8cc3-a727626a", {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.201 [XNIO-1 task-2] p6PIAganRWeN3R3Hbx1RTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9a2eafb8","serviceName":"e2f6f8f2-1c7e-4401-8cc3-a727626a","serviceDesc":"97b1e622-ba9b-41dd-b6b7-e55b58581225","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.207 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.207 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.208 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.208 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.208 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.208 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.208 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.208 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG com.networknt.schema.TypeValidator debug - validate( "320262de-0385-4245-8f41-b40367da", {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.208 [XNIO-1 task-2] ETOE3p_IThGLNpx880gjOw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.214 [XNIO-1 task-2] m16avMJTSU2r7YGpkW-_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fabf6a7c, base path is set to: null +16:40:51.214 [XNIO-1 task-2] m16avMJTSU2r7YGpkW-_mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.214 [XNIO-1 task-2] m16avMJTSU2r7YGpkW-_mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.214 [XNIO-1 task-2] m16avMJTSU2r7YGpkW-_mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fabf6a7c, base path is set to: null +16:40:51.214 [XNIO-1 task-2] m16avMJTSU2r7YGpkW-_mg DEBUG com.networknt.schema.TypeValidator debug - validate( "fabf6a7c", "fabf6a7c", serviceId) +16:40:51.216 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.216 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.216 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.216 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.216 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.216 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "fb282bbc-fcc0-4139-9b09-c7bea21771da", {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.216 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "fabf6a7c", {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.217 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.217 [XNIO-1 task-2] Th9YTPacSA-TDELrekSI0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fabf6a7c","serviceName":"d18bb329-6964-4544-be97-921dbe02","serviceDesc":"fb282bbc-fcc0-4139-9b09-c7bea21771da","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.225 [XNIO-1 task-2] HikcW5deTbaY8IS2_sCGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.225 [XNIO-1 task-2] HikcW5deTbaY8IS2_sCGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.225 [XNIO-1 task-2] HikcW5deTbaY8IS2_sCGxA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.231 [XNIO-1 task-2] ZEh8MpbbRt26wTjQ6FJEEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.231 [XNIO-1 task-2] ZEh8MpbbRt26wTjQ6FJEEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.231 [XNIO-1 task-2] ZEh8MpbbRt26wTjQ6FJEEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.231 [XNIO-1 task-2] ZEh8MpbbRt26wTjQ6FJEEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.237 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.237 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.237 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.238 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.238 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.239 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG com.networknt.schema.TypeValidator debug - validate( "8fc8725a-9f0d-41dc-8b4d-886bbd6e4856", {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.239 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG com.networknt.schema.TypeValidator debug - validate( "3cf3c183", {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.239 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.239 [XNIO-1 task-2] rYv97EkySSm8DihlfxHHig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3cf3c183","serviceName":"aec29c90-614c-4a73-8c73-734855db","serviceDesc":"8fc8725a-9f0d-41dc-8b4d-886bbd6e4856","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.246 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.246 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.246 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.246 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.246 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.246 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG com.networknt.schema.TypeValidator debug - validate( "5e6f4ed5-144e-4a1b-873b-a6d583fbe41a", {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.246 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a05e3fc", {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.247 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.247 [XNIO-1 task-2] fhJoqI9VQFmGu15FMYJusA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0a05e3fc","serviceName":"94abb65b-719e-41fc-98f2-5e0b3b45","serviceDesc":"5e6f4ed5-144e-4a1b-873b-a6d583fbe41a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.253 [XNIO-1 task-2] wxFb2CWKQdacOyLM9itemw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cf3c183 +16:40:51.253 [XNIO-1 task-2] wxFb2CWKQdacOyLM9itemw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.253 [XNIO-1 task-2] wxFb2CWKQdacOyLM9itemw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.253 [XNIO-1 task-2] wxFb2CWKQdacOyLM9itemw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3cf3c183 +16:40:51.260 [XNIO-1 task-2] l7TVIqNmTNWGo28xEF9YrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a05e3fc, base path is set to: null +16:40:51.260 [XNIO-1 task-2] l7TVIqNmTNWGo28xEF9YrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.260 [XNIO-1 task-2] l7TVIqNmTNWGo28xEF9YrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.260 [XNIO-1 task-2] l7TVIqNmTNWGo28xEF9YrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0a05e3fc, base path is set to: null +16:40:51.260 [XNIO-1 task-2] l7TVIqNmTNWGo28xEF9YrA DEBUG com.networknt.schema.TypeValidator debug - validate( "0a05e3fc", "0a05e3fc", serviceId) +16:40:51.267 [XNIO-1 task-2] 70dZxrvHT-yYs0muu4_Zrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f1baffcc +16:40:51.268 [XNIO-1 task-2] 70dZxrvHT-yYs0muu4_Zrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.268 [XNIO-1 task-2] 70dZxrvHT-yYs0muu4_Zrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.268 [XNIO-1 task-2] 70dZxrvHT-yYs0muu4_Zrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f1baffcc +16:40:51.272 [XNIO-1 task-2] BBUsWdTHStGy2_2Orj0g4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a2eafb8, base path is set to: null +16:40:51.272 [XNIO-1 task-2] BBUsWdTHStGy2_2Orj0g4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.272 [XNIO-1 task-2] BBUsWdTHStGy2_2Orj0g4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.272 [XNIO-1 task-2] BBUsWdTHStGy2_2Orj0g4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9a2eafb8, base path is set to: null +16:40:51.273 [XNIO-1 task-2] BBUsWdTHStGy2_2Orj0g4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "9a2eafb8", "9a2eafb8", serviceId) +16:40:51.279 [XNIO-1 task-2] 0V866ZMPRbiGyoKXdevzSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f04b2ac7 +16:40:51.279 [XNIO-1 task-2] 0V866ZMPRbiGyoKXdevzSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.279 [XNIO-1 task-2] 0V866ZMPRbiGyoKXdevzSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.279 [XNIO-1 task-2] 0V866ZMPRbiGyoKXdevzSA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f04b2ac7 +16:40:51.283 [XNIO-1 task-2] i7WyuhtBQY26quMgRNaApg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.284 [XNIO-1 task-2] i7WyuhtBQY26quMgRNaApg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.284 [XNIO-1 task-2] i7WyuhtBQY26quMgRNaApg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.290 [XNIO-1 task-2] sAa6u4hIRSC8bDwi_xyxvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fabf6a7c, base path is set to: null +16:40:51.290 [XNIO-1 task-2] sAa6u4hIRSC8bDwi_xyxvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.290 [XNIO-1 task-2] sAa6u4hIRSC8bDwi_xyxvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.290 [XNIO-1 task-2] sAa6u4hIRSC8bDwi_xyxvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fabf6a7c, base path is set to: null +16:40:51.290 [XNIO-1 task-2] sAa6u4hIRSC8bDwi_xyxvA DEBUG com.networknt.schema.TypeValidator debug - validate( "fabf6a7c", "fabf6a7c", serviceId) +16:40:51.296 [XNIO-1 task-2] zV0E2VabTNKpuoCdrpExbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.296 [XNIO-1 task-2] zV0E2VabTNKpuoCdrpExbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.296 [XNIO-1 task-2] zV0E2VabTNKpuoCdrpExbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.302 [XNIO-1 task-2] PpRetHIbQEeoDHNZLGOKxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.302 [XNIO-1 task-2] PpRetHIbQEeoDHNZLGOKxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.302 [XNIO-1 task-2] PpRetHIbQEeoDHNZLGOKxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.302 [XNIO-1 task-2] PpRetHIbQEeoDHNZLGOKxw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.306 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.306 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.307 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.307 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.307 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.307 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG com.networknt.schema.TypeValidator debug - validate( "7eae5137-fb9d-4195-8420-fe569b874773", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.307 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG com.networknt.schema.TypeValidator debug - validate( "f1baffcc", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.307 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.307 [XNIO-1 task-2] VksUO9L_SVyLbGHlADoung DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73", {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "2392eb50", {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.314 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.315 [XNIO-1 task-2] 4acJcz3ZS1CAIJTIKVq0Bw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2392eb50","serviceName":"abac312d-fdc4-4e98-a1a7-074fc656","serviceDesc":"5bb2b6a2-c5bc-425b-a5d2-3b26d6dbfb73","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.327 [XNIO-1 task-2] KVmbi11ST2-AFaBKxHP_SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.327 [XNIO-1 task-2] KVmbi11ST2-AFaBKxHP_SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.327 [XNIO-1 task-2] KVmbi11ST2-AFaBKxHP_SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.328 [XNIO-1 task-2] KVmbi11ST2-AFaBKxHP_SQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.332 [XNIO-1 task-2] Ka4VF3hMT_yF4WG6iB3FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a7a36dc +16:40:51.332 [XNIO-1 task-2] Ka4VF3hMT_yF4WG6iB3FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.333 [XNIO-1 task-2] Ka4VF3hMT_yF4WG6iB3FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.333 [XNIO-1 task-2] Ka4VF3hMT_yF4WG6iB3FaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a7a36dc +16:40:51.339 [XNIO-1 task-2] bO4jlTrBSA-Xqtt2HxcHeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2392eb50, base path is set to: null +16:40:51.339 [XNIO-1 task-2] bO4jlTrBSA-Xqtt2HxcHeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.340 [XNIO-1 task-2] bO4jlTrBSA-Xqtt2HxcHeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.340 [XNIO-1 task-2] bO4jlTrBSA-Xqtt2HxcHeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2392eb50, base path is set to: null +16:40:51.340 [XNIO-1 task-2] bO4jlTrBSA-Xqtt2HxcHeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2392eb50", "2392eb50", serviceId) +16:40:51.347 [XNIO-1 task-2] K0iEbSUEQLWPnlMK80q6_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.347 [XNIO-1 task-2] K0iEbSUEQLWPnlMK80q6_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.347 [XNIO-1 task-2] K0iEbSUEQLWPnlMK80q6_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.353 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.353 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.354 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.354 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.354 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.354 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "83b95a08-6364-47c3-8b64-03fcd6f79f2e", {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.354 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "331e4510", {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.354 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.354 [XNIO-1 task-2] x3optyS2SLWNmru0pqmCJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331e4510","serviceName":"320262de-0385-4245-8f41-b40367da","serviceDesc":"83b95a08-6364-47c3-8b64-03fcd6f79f2e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.361 [XNIO-1 task-2] qnYls3XsSHiFZiuQ5rdiZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.361 [XNIO-1 task-2] qnYls3XsSHiFZiuQ5rdiZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.361 [XNIO-1 task-2] qnYls3XsSHiFZiuQ5rdiZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.361 [XNIO-1 task-2] qnYls3XsSHiFZiuQ5rdiZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.363 [XNIO-1 task-2] BnIuQS8_QDiTurOj4N6Vlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/61358a6e, base path is set to: null +16:40:51.363 [XNIO-1 task-2] BnIuQS8_QDiTurOj4N6Vlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.363 [XNIO-1 task-2] BnIuQS8_QDiTurOj4N6Vlw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.364 [XNIO-1 task-2] BnIuQS8_QDiTurOj4N6Vlw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/61358a6e, base path is set to: null +16:40:51.364 [XNIO-1 task-2] BnIuQS8_QDiTurOj4N6Vlw DEBUG com.networknt.schema.TypeValidator debug - validate( "61358a6e", "61358a6e", serviceId) +16:40:51.367 [XNIO-1 task-2] CkKJV3bURfqO4ffY1Qs2lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.367 [XNIO-1 task-2] CkKJV3bURfqO4ffY1Qs2lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.367 [XNIO-1 task-2] CkKJV3bURfqO4ffY1Qs2lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.367 [XNIO-1 task-2] CkKJV3bURfqO4ffY1Qs2lA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d7a2bb82-defb-4e51-a80c-a329c163", {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.369 [XNIO-1 task-2] HIjX0dNGRSmBsIoH0u8NTQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"61358a6e","serviceName":"d7a2bb82-defb-4e51-a80c-a329c163","serviceDesc":"0939f7d4-9d2b-4c07-8a92-e04bbe03cfa2","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.376 [XNIO-1 task-2] oT9xKxzeRliFfjiA7RMvXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.376 [XNIO-1 task-2] oT9xKxzeRliFfjiA7RMvXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.376 [XNIO-1 task-2] oT9xKxzeRliFfjiA7RMvXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.382 [XNIO-1 task-2] DHT3aZETQrGpos812j-Img DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.382 [XNIO-1 task-2] DHT3aZETQrGpos812j-Img DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.382 [XNIO-1 task-2] DHT3aZETQrGpos812j-Img DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.390 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.390 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.391 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.391 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.391 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.391 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.391 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.391 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG com.networknt.schema.TypeValidator debug - validate( "14a2eccf-1e5f-44ad-b73a-5b7eb88b", {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.391 [XNIO-1 task-2] R7nfTuZeQnSbBuK2yNWlAA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.397 [XNIO-1 task-2] SGSZwDBwQne1yf5bK8YDmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.397 [XNIO-1 task-2] SGSZwDBwQne1yf5bK8YDmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.398 [XNIO-1 task-2] SGSZwDBwQne1yf5bK8YDmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.403 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4f3f9e0f-2522-4192-beb0-9c6de30c5444 +16:40:51.404 [XNIO-1 task-2] gUhDmpoASPirjBTpEgQ9vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.404 [XNIO-1 task-2] gUhDmpoASPirjBTpEgQ9vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.404 [XNIO-1 task-2] gUhDmpoASPirjBTpEgQ9vw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.404 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:4f3f9e0f-2522-4192-beb0-9c6de30c5444 +16:40:51.410 [XNIO-1 task-2] PuA90126RYerZJqGoD7eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/61358a6e +16:40:51.411 [XNIO-1 task-2] PuA90126RYerZJqGoD7eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.411 [XNIO-1 task-2] PuA90126RYerZJqGoD7eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.411 [XNIO-1 task-2] PuA90126RYerZJqGoD7eug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/61358a6e +16:40:51.417 [XNIO-1 task-2] lTS3fQfnQ96RuONFK0u-8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.417 [XNIO-1 task-2] lTS3fQfnQ96RuONFK0u-8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.417 [XNIO-1 task-2] lTS3fQfnQ96RuONFK0u-8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.423 [XNIO-1 task-2] z7JFuu8dQ4Wwd5gvqTZ7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.423 [XNIO-1 task-2] z7JFuu8dQ4Wwd5gvqTZ7Aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.423 [XNIO-1 task-2] z7JFuu8dQ4Wwd5gvqTZ7Aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.423 [XNIO-1 task-2] z7JFuu8dQ4Wwd5gvqTZ7Aw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.428 [XNIO-1 task-2] bNBThuMRT-CTvFG0KGxevg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.428 [XNIO-1 task-2] bNBThuMRT-CTvFG0KGxevg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.428 [XNIO-1 task-2] bNBThuMRT-CTvFG0KGxevg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.433 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.433 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.434 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.434 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.434 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.434 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.434 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.434 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG com.networknt.schema.TypeValidator debug - validate( "14a2eccf-1e5f-44ad-b73a-5b7eb88b", {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.434 [XNIO-1 task-2] ErCqM2k6Te2pwSMfu3jSZg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"29e4f364","serviceName":"14a2eccf-1e5f-44ad-b73a-5b7eb88b","serviceDesc":"0bd97bf2-8310-4bba-9c49-0daa68ff616c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.440 [XNIO-1 task-2] cDrX-FVJTL6O2jff-HqhIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.440 [XNIO-1 task-2] cDrX-FVJTL6O2jff-HqhIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.440 [XNIO-1 task-2] cDrX-FVJTL6O2jff-HqhIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.448 [XNIO-1 task-2] FSiCRQlLSSCClKoWls84Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.448 [XNIO-1 task-2] FSiCRQlLSSCClKoWls84Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.448 [XNIO-1 task-2] FSiCRQlLSSCClKoWls84Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.448 [XNIO-1 task-2] FSiCRQlLSSCClKoWls84Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.453 [XNIO-1 task-2] iPCL2Bk6SpuGXI0TlRptsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.453 [XNIO-1 task-2] iPCL2Bk6SpuGXI0TlRptsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.453 [XNIO-1 task-2] iPCL2Bk6SpuGXI0TlRptsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.460 [XNIO-1 task-2] 7iT_e4r1TY-Ya6swSIG_7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6de0d39f, base path is set to: null +16:40:51.460 [XNIO-1 task-2] 7iT_e4r1TY-Ya6swSIG_7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.460 [XNIO-1 task-2] 7iT_e4r1TY-Ya6swSIG_7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.460 [XNIO-1 task-2] 7iT_e4r1TY-Ya6swSIG_7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6de0d39f, base path is set to: null +16:40:51.460 [XNIO-1 task-2] 7iT_e4r1TY-Ya6swSIG_7A DEBUG com.networknt.schema.TypeValidator debug - validate( "6de0d39f", "6de0d39f", serviceId) +16:40:51.467 [XNIO-1 task-2] H9JlvWrRQNamDc4xOOIzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.467 [XNIO-1 task-2] H9JlvWrRQNamDc4xOOIzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.467 [XNIO-1 task-2] H9JlvWrRQNamDc4xOOIzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.467 [XNIO-1 task-2] H9JlvWrRQNamDc4xOOIzOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.467 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bb8a6c3e-0228-4aec-99f7-b3dab8e549dc +16:40:51.468 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:bb8a6c3e-0228-4aec-99f7-b3dab8e549dc +16:40:51.469 [XNIO-1 task-2] zgFPD0rXQBOAFQsf-ktXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.469 [XNIO-1 task-2] zgFPD0rXQBOAFQsf-ktXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.469 [XNIO-1 task-2] zgFPD0rXQBOAFQsf-ktXpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.469 [XNIO-1 task-2] zgFPD0rXQBOAFQsf-ktXpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.476 [XNIO-1 task-2] G43s3ZvZSU-dQv_JRhMzwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.476 [XNIO-1 task-2] G43s3ZvZSU-dQv_JRhMzwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.476 [XNIO-1 task-2] G43s3ZvZSU-dQv_JRhMzwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.476 [XNIO-1 task-2] G43s3ZvZSU-dQv_JRhMzwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331e4510 +16:40:51.482 [XNIO-1 task-2] yXIEZXfSS4S6QJxSxUJ_Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.482 [XNIO-1 task-2] yXIEZXfSS4S6QJxSxUJ_Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.482 [XNIO-1 task-2] yXIEZXfSS4S6QJxSxUJ_Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.482 [XNIO-1 task-2] yXIEZXfSS4S6QJxSxUJ_Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.488 [XNIO-1 task-2] g4hVEkseTfigeXIkp-mOIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecabd802, base path is set to: null +16:40:51.488 [XNIO-1 task-2] g4hVEkseTfigeXIkp-mOIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.488 [XNIO-1 task-2] g4hVEkseTfigeXIkp-mOIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.488 [XNIO-1 task-2] g4hVEkseTfigeXIkp-mOIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ecabd802, base path is set to: null +16:40:51.488 [XNIO-1 task-2] g4hVEkseTfigeXIkp-mOIw DEBUG com.networknt.schema.TypeValidator debug - validate( "ecabd802", "ecabd802", serviceId) +16:40:51.490 [XNIO-1 task-2] 9txSqwLkQYKMQ_Ah8WxjHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.490 [XNIO-1 task-2] 9txSqwLkQYKMQ_Ah8WxjHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.490 [XNIO-1 task-2] 9txSqwLkQYKMQ_Ah8WxjHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.496 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.496 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.496 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.496 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.496 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.497 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG com.networknt.schema.TypeValidator debug - validate( "b505f059-9660-46de-b4bb-a1f6c8bca185", {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.497 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG com.networknt.schema.TypeValidator debug - validate( "ecabd802", {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.497 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.497 [XNIO-1 task-2] DVpclyk_Tm2S6bcKp5eqQA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ecabd802","serviceName":"3f9643e4-23bb-4fe9-8e6c-14554dd2","serviceDesc":"b505f059-9660-46de-b4bb-a1f6c8bca185","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.502 [XNIO-1 task-2] NjmE05q9TP6kBp_k5sNzWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.503 [XNIO-1 task-2] NjmE05q9TP6kBp_k5sNzWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.503 [XNIO-1 task-2] NjmE05q9TP6kBp_k5sNzWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.509 [XNIO-1 task-2] DMzFQbj6Q1OReqdOhzsGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/09c9b9f7 +16:40:51.509 [XNIO-1 task-2] DMzFQbj6Q1OReqdOhzsGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.509 [XNIO-1 task-2] DMzFQbj6Q1OReqdOhzsGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.509 [XNIO-1 task-2] DMzFQbj6Q1OReqdOhzsGbw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/09c9b9f7 +16:40:51.512 [XNIO-1 task-2] JDHQS2K6S0yRWFCv-OKFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.512 [XNIO-1 task-2] JDHQS2K6S0yRWFCv-OKFtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.512 [XNIO-1 task-2] JDHQS2K6S0yRWFCv-OKFtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.512 [XNIO-1 task-2] JDHQS2K6S0yRWFCv-OKFtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.516 [XNIO-1 task-2] Qmc_OGOYTVyojuw46BB2zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d357a46, base path is set to: null +16:40:51.516 [XNIO-1 task-2] Qmc_OGOYTVyojuw46BB2zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.516 [XNIO-1 task-2] Qmc_OGOYTVyojuw46BB2zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.516 [XNIO-1 task-2] Qmc_OGOYTVyojuw46BB2zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d357a46, base path is set to: null +16:40:51.516 [XNIO-1 task-2] Qmc_OGOYTVyojuw46BB2zw DEBUG com.networknt.schema.TypeValidator debug - validate( "6d357a46", "6d357a46", serviceId) +16:40:51.517 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:f23864d4-5b9b-4927-b2e4-0bd9d96d70dd +16:40:51.518 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.519 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.519 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.519 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.519 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.520 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.520 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.520 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG com.networknt.schema.TypeValidator debug - validate( "3b23076c-9ece-4a7f-ad61-a0c57aa6", {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.520 [XNIO-1 task-2] oYCAi5WzTVy7QhqXkNTqVA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f1baffcc","serviceName":"3b23076c-9ece-4a7f-ad61-a0c57aa6","serviceDesc":"7eae5137-fb9d-4195-8420-fe569b874773","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.528 [XNIO-1 task-2] 1z0QHqeSTGKm-pX84iMdww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.528 [XNIO-1 task-2] 1z0QHqeSTGKm-pX84iMdww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.528 [XNIO-1 task-2] 1z0QHqeSTGKm-pX84iMdww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.535 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.535 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.535 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.535 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.535 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.536 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.536 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.536 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG com.networknt.schema.TypeValidator debug - validate( "dab8cc6f-1546-4ac9-a892-401e528f", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.536 [XNIO-1 task-2] V3k_tWPOTEqeLP3O7I2jCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.537 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2f9c0612-e313-4a1a-9ece-f5cfcdfe1c2c +16:40:51.542 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.542 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.542 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.543 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.543 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.543 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG com.networknt.schema.TypeValidator debug - validate( "811cb081-b341-4cc9-92d3-5c2fd15496fa", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.543 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG com.networknt.schema.TypeValidator debug - validate( "44f030de", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.543 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.543 [XNIO-1 task-2] E8B4d0VoQPmiOiodSTosbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.551 [XNIO-1 task-2] QoIWDTlCQMa_k87WesH42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6d357a46 +16:40:51.552 [XNIO-1 task-2] QoIWDTlCQMa_k87WesH42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.552 [XNIO-1 task-2] QoIWDTlCQMa_k87WesH42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.552 [XNIO-1 task-2] QoIWDTlCQMa_k87WesH42g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6d357a46 +16:40:51.557 [XNIO-1 task-2] YQVDDezHQDiUIMVq_iJ4DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:51.557 [XNIO-1 task-2] YQVDDezHQDiUIMVq_iJ4DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.557 [XNIO-1 task-2] YQVDDezHQDiUIMVq_iJ4DQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.557 [XNIO-1 task-2] YQVDDezHQDiUIMVq_iJ4DQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:51.557 [XNIO-1 task-2] YQVDDezHQDiUIMVq_iJ4DQ DEBUG com.networknt.schema.TypeValidator debug - validate( "44f030de", "44f030de", serviceId) +16:40:51.559 [XNIO-1 task-2] Q7JNFSFIQGmbzqoqftRmHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/44f030de +16:40:51.559 [XNIO-1 task-2] Q7JNFSFIQGmbzqoqftRmHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.560 [XNIO-1 task-2] Q7JNFSFIQGmbzqoqftRmHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.560 [XNIO-1 task-2] Q7JNFSFIQGmbzqoqftRmHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/44f030de +16:40:51.562 [XNIO-1 task-2] XOaoba69QFmKMzVrXUdI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.562 [XNIO-1 task-2] XOaoba69QFmKMzVrXUdI7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.562 [XNIO-1 task-2] XOaoba69QFmKMzVrXUdI7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.562 [XNIO-1 task-2] XOaoba69QFmKMzVrXUdI7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.568 [XNIO-1 task-2] ZJxMpAtvRx2fuF-jLe-1hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.568 [XNIO-1 task-2] ZJxMpAtvRx2fuF-jLe-1hw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.568 [XNIO-1 task-2] ZJxMpAtvRx2fuF-jLe-1hw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.571 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4f3f9e0f-2522-4192-beb0-9c6de30c5444 +16:40:51.578 [XNIO-1 task-2] 8ioV_GxVT4yUQId3ZR71Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.578 [XNIO-1 task-2] 8ioV_GxVT4yUQId3ZR71Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.578 [XNIO-1 task-2] 8ioV_GxVT4yUQId3ZR71Qw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.584 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG com.networknt.schema.TypeValidator debug - validate( "811cb081-b341-4cc9-92d3-5c2fd15496fa", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG com.networknt.schema.TypeValidator debug - validate( "44f030de", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.585 [XNIO-1 task-2] FAN1Y9OgR5isP6w1TWmXKg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.591 [XNIO-1 task-2] Rttj_kkwRlKig0QyBK_OrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.592 [XNIO-1 task-2] Rttj_kkwRlKig0QyBK_OrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.592 [XNIO-1 task-2] Rttj_kkwRlKig0QyBK_OrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.598 [XNIO-1 task-2] uQBpBYo9RDCvzYG_sh6kDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9563f178 +16:40:51.598 [XNIO-1 task-2] uQBpBYo9RDCvzYG_sh6kDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.598 [XNIO-1 task-2] uQBpBYo9RDCvzYG_sh6kDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.598 [XNIO-1 task-2] uQBpBYo9RDCvzYG_sh6kDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9563f178 +16:40:51.604 [XNIO-1 task-2] S213hjKXR_qSi5LAhdd0Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.604 [XNIO-1 task-2] S213hjKXR_qSi5LAhdd0Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.604 [XNIO-1 task-2] S213hjKXR_qSi5LAhdd0Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.604 [XNIO-1 task-2] S213hjKXR_qSi5LAhdd0Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG com.networknt.schema.TypeValidator debug - validate( "fbde8d64-dc2c-4d33-bc61-3a705551", {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.609 [XNIO-1 task-2] 1AXlB1_cSIeXOmIsISm1JA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"44f030de","serviceName":"fbde8d64-dc2c-4d33-bc61-3a705551","serviceDesc":"811cb081-b341-4cc9-92d3-5c2fd15496fa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.614 [XNIO-1 task-2] yut_XDujSFqUY90W0IWumw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.614 [XNIO-1 task-2] yut_XDujSFqUY90W0IWumw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.614 [XNIO-1 task-2] yut_XDujSFqUY90W0IWumw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.615 [XNIO-1 task-2] yut_XDujSFqUY90W0IWumw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.621 [XNIO-1 task-2] _gEoUPHAR52G5EzQgV2Rkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/816e6ea7, base path is set to: null +16:40:51.621 [XNIO-1 task-2] _gEoUPHAR52G5EzQgV2Rkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.622 [XNIO-1 task-2] _gEoUPHAR52G5EzQgV2Rkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.622 [XNIO-1 task-2] _gEoUPHAR52G5EzQgV2Rkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/816e6ea7, base path is set to: null +16:40:51.622 [XNIO-1 task-2] _gEoUPHAR52G5EzQgV2Rkg DEBUG com.networknt.schema.TypeValidator debug - validate( "816e6ea7", "816e6ea7", serviceId) +16:40:51.628 [XNIO-1 task-2] tLB3do8hS5i3DJUSJ_gplw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.628 [XNIO-1 task-2] tLB3do8hS5i3DJUSJ_gplw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.628 [XNIO-1 task-2] tLB3do8hS5i3DJUSJ_gplw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.628 [XNIO-1 task-2] tLB3do8hS5i3DJUSJ_gplw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.632 [XNIO-1 task-2] lbP-7MT3THyIkF6xjn6H5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.632 [XNIO-1 task-2] lbP-7MT3THyIkF6xjn6H5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.632 [XNIO-1 task-2] lbP-7MT3THyIkF6xjn6H5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.632 [XNIO-1 task-2] lbP-7MT3THyIkF6xjn6H5A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.636 [XNIO-1 task-2] vaEe4Az0QMqCV9RJ4stdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/46cfd459 +16:40:51.636 [XNIO-1 task-2] vaEe4Az0QMqCV9RJ4stdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.636 [XNIO-1 task-2] vaEe4Az0QMqCV9RJ4stdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.636 [XNIO-1 task-2] vaEe4Az0QMqCV9RJ4stdmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/46cfd459 +16:40:51.638 [XNIO-1 task-2] 0WE2eIpGSxq6gM-dpaBgKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f1baffcc, base path is set to: null +16:40:51.638 [XNIO-1 task-2] 0WE2eIpGSxq6gM-dpaBgKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.638 [XNIO-1 task-2] 0WE2eIpGSxq6gM-dpaBgKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.638 [XNIO-1 task-2] 0WE2eIpGSxq6gM-dpaBgKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f1baffcc, base path is set to: null +16:40:51.638 [XNIO-1 task-2] 0WE2eIpGSxq6gM-dpaBgKw DEBUG com.networknt.schema.TypeValidator debug - validate( "f1baffcc", "f1baffcc", serviceId) +16:40:51.643 [XNIO-1 task-2] axrv0sjNQsCV5mPUItpHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.643 [XNIO-1 task-2] axrv0sjNQsCV5mPUItpHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.644 [XNIO-1 task-2] axrv0sjNQsCV5mPUItpHiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.644 [XNIO-1 task-2] axrv0sjNQsCV5mPUItpHiQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.649 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.649 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.649 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.649 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.650 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.650 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG com.networknt.schema.TypeValidator debug - validate( "bafe77b4-542f-481b-b019-4038dc437b1e", {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.650 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG com.networknt.schema.TypeValidator debug - validate( "46cfd459", {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.650 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.650 [XNIO-1 task-2] ALWfHQ5eS_uqOmHqxJjmrA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"46cfd459","serviceName":"f8dd9b45-95ce-4851-a75f-c4623273","serviceDesc":"bafe77b4-542f-481b-b019-4038dc437b1e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.655 [XNIO-1 task-2] zEK5m6APSyiCWN0Eps5JZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/09c9b9f7 +16:40:51.655 [XNIO-1 task-2] zEK5m6APSyiCWN0Eps5JZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.655 [XNIO-1 task-2] zEK5m6APSyiCWN0Eps5JZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.655 [XNIO-1 task-2] zEK5m6APSyiCWN0Eps5JZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/09c9b9f7 +16:40:51.658 [XNIO-1 task-2] Nl8T7lhpR1aVYITDkrz6vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.658 [XNIO-1 task-2] Nl8T7lhpR1aVYITDkrz6vQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.658 [XNIO-1 task-2] Nl8T7lhpR1aVYITDkrz6vQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.664 [XNIO-1 task-2] p8nTcSgHSJ68mB5WfD-nsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/46cfd459, base path is set to: null +16:40:51.664 [XNIO-1 task-2] p8nTcSgHSJ68mB5WfD-nsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.664 [XNIO-1 task-2] p8nTcSgHSJ68mB5WfD-nsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.664 [XNIO-1 task-2] p8nTcSgHSJ68mB5WfD-nsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/46cfd459, base path is set to: null +16:40:51.665 [XNIO-1 task-2] p8nTcSgHSJ68mB5WfD-nsA DEBUG com.networknt.schema.TypeValidator debug - validate( "46cfd459", "46cfd459", serviceId) +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG com.networknt.schema.TypeValidator debug - validate( "ac260fa9-a8e9-4eb6-a63a-b268ee166ac9", {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG com.networknt.schema.TypeValidator debug - validate( "8879b2b3", {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.673 [XNIO-1 task-2] i9LNm9MRRsGjiIIFuYmTvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.680 [XNIO-1 task-2] ZUcmGflPTZmEICkvUzZBOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.680 [XNIO-1 task-2] ZUcmGflPTZmEICkvUzZBOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.680 [XNIO-1 task-2] ZUcmGflPTZmEICkvUzZBOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.680 [XNIO-1 task-2] ZUcmGflPTZmEICkvUzZBOA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.684 [XNIO-1 task-2] f9kix9PcRcKeLzlVGuwbTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecabd802 +16:40:51.684 [XNIO-1 task-2] f9kix9PcRcKeLzlVGuwbTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.684 [XNIO-1 task-2] f9kix9PcRcKeLzlVGuwbTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.684 [XNIO-1 task-2] f9kix9PcRcKeLzlVGuwbTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ecabd802 +16:40:51.698 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.698 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.698 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.698 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.699 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.699 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.699 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.699 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG com.networknt.schema.TypeValidator debug - validate( "6f96a478-3282-40fd-ac96-48c0d11c", {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.699 [XNIO-1 task-2] VtFrkREoQU2e_J6hpZOwsw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cf70a818","serviceName":"6f96a478-3282-40fd-ac96-48c0d11c","serviceDesc":"71919d85-e882-4a57-b68a-0ed211dd572c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.715 [XNIO-1 task-2] 20L_EGB2Toa3VFMeLyFVHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3038a720, base path is set to: null +16:40:51.715 [XNIO-1 task-2] 20L_EGB2Toa3VFMeLyFVHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.715 [XNIO-1 task-2] 20L_EGB2Toa3VFMeLyFVHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.716 [XNIO-1 task-2] 20L_EGB2Toa3VFMeLyFVHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3038a720, base path is set to: null +16:40:51.716 [XNIO-1 task-2] 20L_EGB2Toa3VFMeLyFVHg DEBUG com.networknt.schema.TypeValidator debug - validate( "3038a720", "3038a720", serviceId) +16:40:51.718 [XNIO-1 task-2] 0Px37dAmRTWb6GTPxwICYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/44f030de +16:40:51.718 [XNIO-1 task-2] 0Px37dAmRTWb6GTPxwICYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.718 [XNIO-1 task-2] 0Px37dAmRTWb6GTPxwICYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.719 [XNIO-1 task-2] 0Px37dAmRTWb6GTPxwICYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/44f030de +16:40:51.721 [XNIO-1 task-2] KkgPW7OeQYmFp7P-PTcBcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.721 [XNIO-1 task-2] KkgPW7OeQYmFp7P-PTcBcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.721 [XNIO-1 task-2] KkgPW7OeQYmFp7P-PTcBcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.721 [XNIO-1 task-2] KkgPW7OeQYmFp7P-PTcBcg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.726 [XNIO-1 task-2] mCLpkqfVTYm9-4iO-yttiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.726 [XNIO-1 task-2] mCLpkqfVTYm9-4iO-yttiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.726 [XNIO-1 task-2] mCLpkqfVTYm9-4iO-yttiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.726 [XNIO-1 task-2] mCLpkqfVTYm9-4iO-yttiw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.730 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG com.networknt.schema.TypeValidator debug - validate( "dab8cc6f-1546-4ac9-a892-401e528f", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.731 [XNIO-1 task-2] TWRD-ygRTuqaMp5YmYvBGw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.739 [XNIO-1 task-2] Q-ZrsVIERHOcqtXoedmmsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.739 [XNIO-1 task-2] Q-ZrsVIERHOcqtXoedmmsQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.739 [XNIO-1 task-2] Q-ZrsVIERHOcqtXoedmmsQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.744 [XNIO-1 task-2] yENNPT-yS8GRXvbdgbohaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:51.744 [XNIO-1 task-2] yENNPT-yS8GRXvbdgbohaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.745 [XNIO-1 task-2] yENNPT-yS8GRXvbdgbohaw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.745 [XNIO-1 task-2] yENNPT-yS8GRXvbdgbohaw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:51.745 [XNIO-1 task-2] yENNPT-yS8GRXvbdgbohaw DEBUG com.networknt.schema.TypeValidator debug - validate( "44f030de", "44f030de", serviceId) +16:40:51.746 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.746 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.746 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.747 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.747 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.747 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG com.networknt.schema.TypeValidator debug - validate( "1c1a9d7f-4c17-43c8-850e-9884ccd9f579", {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:51.747 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG com.networknt.schema.TypeValidator debug - validate( "40e3226e", {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:51.747 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:51.747 [XNIO-1 task-2] WELpru_NQKif4kc8YmEBVw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40e3226e","serviceName":"97ce33fe-8719-4d91-bb5f-4a5df5dd","serviceDesc":"1c1a9d7f-4c17-43c8-850e-9884ccd9f579","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.752 [XNIO-1 task-2] J-zKW__fRIiDbBrD9untQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29e4f364 +16:40:51.752 [XNIO-1 task-2] J-zKW__fRIiDbBrD9untQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.752 [XNIO-1 task-2] J-zKW__fRIiDbBrD9untQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.752 [XNIO-1 task-2] J-zKW__fRIiDbBrD9untQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29e4f364 +16:40:51.758 [XNIO-1 task-2] pUFb71EfS-au0SpZ4lX2WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.758 [XNIO-1 task-2] pUFb71EfS-au0SpZ4lX2WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.758 [XNIO-1 task-2] pUFb71EfS-au0SpZ4lX2WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.758 [XNIO-1 task-2] pUFb71EfS-au0SpZ4lX2WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.770 [XNIO-1 task-2] NfcU4isGT66owlkGCGC20Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.771 [XNIO-1 task-2] NfcU4isGT66owlkGCGC20Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.771 [XNIO-1 task-2] NfcU4isGT66owlkGCGC20Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.778 [XNIO-1 task-2] 80tTw3X8RhmazHr8WAfReQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.778 [XNIO-1 task-2] 80tTw3X8RhmazHr8WAfReQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.779 [XNIO-1 task-2] 80tTw3X8RhmazHr8WAfReQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.779 [XNIO-1 task-2] 80tTw3X8RhmazHr8WAfReQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.784 [XNIO-1 task-2] NiGU5JWFSQGjDflVFDOcIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:51.784 [XNIO-1 task-2] NiGU5JWFSQGjDflVFDOcIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.784 [XNIO-1 task-2] NiGU5JWFSQGjDflVFDOcIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.784 [XNIO-1 task-2] NiGU5JWFSQGjDflVFDOcIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:51.784 [XNIO-1 task-2] NiGU5JWFSQGjDflVFDOcIA DEBUG com.networknt.schema.TypeValidator debug - validate( "44f030de", "44f030de", serviceId) +16:40:51.786 [XNIO-1 task-2] ntjt5VgwQpyY9gOQ9J021g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40e3226e +16:40:51.786 [XNIO-1 task-2] ntjt5VgwQpyY9gOQ9J021g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.787 [XNIO-1 task-2] ntjt5VgwQpyY9gOQ9J021g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.787 [XNIO-1 task-2] ntjt5VgwQpyY9gOQ9J021g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/40e3226e +16:40:51.793 [XNIO-1 task-2] 1Nhb9wl3QuiVHZ_vuM9XmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.793 [XNIO-1 task-2] 1Nhb9wl3QuiVHZ_vuM9XmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.793 [XNIO-1 task-2] 1Nhb9wl3QuiVHZ_vuM9XmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.803 [XNIO-1 task-2] EgPkjlKOTWC-imOPRynggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/516b35ef, base path is set to: null +16:40:51.803 [XNIO-1 task-2] EgPkjlKOTWC-imOPRynggA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.803 [XNIO-1 task-2] EgPkjlKOTWC-imOPRynggA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.803 [XNIO-1 task-2] EgPkjlKOTWC-imOPRynggA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/516b35ef, base path is set to: null +16:40:51.803 [XNIO-1 task-2] EgPkjlKOTWC-imOPRynggA DEBUG com.networknt.schema.TypeValidator debug - validate( "516b35ef", "516b35ef", serviceId) +16:40:51.806 [XNIO-1 task-2] dySOoAytTg6_mkN3zjN_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d204248a +16:40:51.807 [XNIO-1 task-2] dySOoAytTg6_mkN3zjN_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.807 [XNIO-1 task-2] dySOoAytTg6_mkN3zjN_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.807 [XNIO-1 task-2] dySOoAytTg6_mkN3zjN_GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d204248a +16:40:51.810 [XNIO-1 task-2] vnQM3Z3uR-qiHod6DUrsuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d204248a, base path is set to: null +16:40:51.810 [XNIO-1 task-2] vnQM3Z3uR-qiHod6DUrsuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.810 [XNIO-1 task-2] vnQM3Z3uR-qiHod6DUrsuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.810 [XNIO-1 task-2] vnQM3Z3uR-qiHod6DUrsuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d204248a, base path is set to: null +16:40:51.810 [XNIO-1 task-2] vnQM3Z3uR-qiHod6DUrsuA DEBUG com.networknt.schema.TypeValidator debug - validate( "d204248a", "d204248a", serviceId) +16:40:51.816 [XNIO-1 task-2] YnMq5O87Sxug7kSMg92VrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.816 [XNIO-1 task-2] YnMq5O87Sxug7kSMg92VrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.816 [XNIO-1 task-2] YnMq5O87Sxug7kSMg92VrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.816 [XNIO-1 task-2] YnMq5O87Sxug7kSMg92VrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.849 [XNIO-1 task-2] 7gmx2qORSSaQ237gBFSW9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.849 [XNIO-1 task-2] 7gmx2qORSSaQ237gBFSW9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.849 [XNIO-1 task-2] 7gmx2qORSSaQ237gBFSW9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.856 [XNIO-1 task-2] zAO_rJWTSHCx-KTt9osgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ac0960b +16:40:51.856 [XNIO-1 task-2] zAO_rJWTSHCx-KTt9osgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.856 [XNIO-1 task-2] zAO_rJWTSHCx-KTt9osgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.856 [XNIO-1 task-2] zAO_rJWTSHCx-KTt9osgkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ac0960b +16:40:51.861 [XNIO-1 task-2] vjXhU7RJQyaSArbz5fAoOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.861 [XNIO-1 task-2] vjXhU7RJQyaSArbz5fAoOw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.861 [XNIO-1 task-2] vjXhU7RJQyaSArbz5fAoOw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.867 [XNIO-1 task-2] y0OtVFceToShiCjyt0S9Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.867 [XNIO-1 task-2] y0OtVFceToShiCjyt0S9Ag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.867 [XNIO-1 task-2] y0OtVFceToShiCjyt0S9Ag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.867 [XNIO-1 task-2] y0OtVFceToShiCjyt0S9Ag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.873 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "70a92e31-e17c-48b3-970a-f4806474", {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.874 [XNIO-1 task-2] rKrduiRiTUmU-lMV8TggkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ac0960b","serviceName":"70a92e31-e17c-48b3-970a-f4806474","serviceDesc":"a7b4e509-1b18-44b1-b56e-e2e4be888c13","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.883 [XNIO-1 task-2] qt6JGiEQQOW0MF65Fj2Gfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.883 [XNIO-1 task-2] qt6JGiEQQOW0MF65Fj2Gfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.883 [XNIO-1 task-2] qt6JGiEQQOW0MF65Fj2Gfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.891 [XNIO-1 task-2] yTcKjHOQQ0WfEaGKQa63GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84e1e8a6, base path is set to: null +16:40:51.891 [XNIO-1 task-2] yTcKjHOQQ0WfEaGKQa63GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.891 [XNIO-1 task-2] yTcKjHOQQ0WfEaGKQa63GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.891 [XNIO-1 task-2] yTcKjHOQQ0WfEaGKQa63GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/84e1e8a6, base path is set to: null +16:40:51.892 [XNIO-1 task-2] yTcKjHOQQ0WfEaGKQa63GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "84e1e8a6", "84e1e8a6", serviceId) +16:40:51.894 [XNIO-1 task-2] E75cExy-QMmNKZNcKC8zyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84e1e8a6 +16:40:51.894 [XNIO-1 task-2] E75cExy-QMmNKZNcKC8zyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.894 [XNIO-1 task-2] E75cExy-QMmNKZNcKC8zyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.894 [XNIO-1 task-2] E75cExy-QMmNKZNcKC8zyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84e1e8a6 +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2b88266d-24f0-4984-a431-e5b3908c", {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.896 [XNIO-1 task-2] HjgeYmbVQMuhMZnWbZjwIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"84e1e8a6","serviceName":"2b88266d-24f0-4984-a431-e5b3908c","serviceDesc":"c6af3565-82cb-4602-b9f8-14d7aae0289e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.903 [XNIO-1 task-2] nmejgR-6QRqjO2crQjK-zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.903 [XNIO-1 task-2] nmejgR-6QRqjO2crQjK-zA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.903 [XNIO-1 task-2] nmejgR-6QRqjO2crQjK-zA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.903 [XNIO-1 task-2] nmejgR-6QRqjO2crQjK-zA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.910 [XNIO-1 task-2] uMZ3TMAQTUGeNJMETZlS8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4445fdfc, base path is set to: null +16:40:51.910 [XNIO-1 task-2] uMZ3TMAQTUGeNJMETZlS8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.911 [XNIO-1 task-2] uMZ3TMAQTUGeNJMETZlS8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.911 [XNIO-1 task-2] uMZ3TMAQTUGeNJMETZlS8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4445fdfc, base path is set to: null +16:40:51.911 [XNIO-1 task-2] uMZ3TMAQTUGeNJMETZlS8w DEBUG com.networknt.schema.TypeValidator debug - validate( "4445fdfc", "4445fdfc", serviceId) +16:40:51.924 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG com.networknt.schema.TypeValidator debug - validate( "c045992d-9ba5-456e-8fec-92182080", {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.925 [XNIO-1 task-2] ymxBJ1CGR6KKRu0II4O7kA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"8879b2b3","serviceName":"c045992d-9ba5-456e-8fec-92182080","serviceDesc":"ac260fa9-a8e9-4eb6-a63a-b268ee166ac9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.930 [XNIO-1 task-2] dP3oRpc9S1C0PZZp_nDC8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54d6ef27, base path is set to: null +16:40:51.931 [XNIO-1 task-2] dP3oRpc9S1C0PZZp_nDC8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.931 [XNIO-1 task-2] dP3oRpc9S1C0PZZp_nDC8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.931 [XNIO-1 task-2] dP3oRpc9S1C0PZZp_nDC8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54d6ef27, base path is set to: null +16:40:51.931 [XNIO-1 task-2] dP3oRpc9S1C0PZZp_nDC8Q DEBUG com.networknt.schema.TypeValidator debug - validate( "54d6ef27", "54d6ef27", serviceId) +16:40:51.934 [XNIO-1 task-2] evp0QIG_Q_-to8gIBkF8WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.934 [XNIO-1 task-2] evp0QIG_Q_-to8gIBkF8WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.934 [XNIO-1 task-2] evp0QIG_Q_-to8gIBkF8WA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.942 [XNIO-1 task-2] 1eWTpHBXRH-9wAL-SBxRQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.942 [XNIO-1 task-2] 1eWTpHBXRH-9wAL-SBxRQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.942 [XNIO-1 task-2] 1eWTpHBXRH-9wAL-SBxRQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.942 [XNIO-1 task-2] 1eWTpHBXRH-9wAL-SBxRQQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.947 [XNIO-1 task-2] 60yjdtU4QwWlGrxBRZ8YRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8879b2b3 +16:40:51.947 [XNIO-1 task-2] 60yjdtU4QwWlGrxBRZ8YRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.947 [XNIO-1 task-2] 60yjdtU4QwWlGrxBRZ8YRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.947 [XNIO-1 task-2] 60yjdtU4QwWlGrxBRZ8YRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8879b2b3 +16:40:51.950 [XNIO-1 task-2] rXXaU9y5Rkysr1kYaMA4kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.950 [XNIO-1 task-2] rXXaU9y5Rkysr1kYaMA4kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.950 [XNIO-1 task-2] rXXaU9y5Rkysr1kYaMA4kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.950 [XNIO-1 task-2] rXXaU9y5Rkysr1kYaMA4kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:51.954 [XNIO-1 task-2] byYO-nqHQaSF2stIHzL-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54d6ef27, base path is set to: null +16:40:51.954 [XNIO-1 task-2] byYO-nqHQaSF2stIHzL-Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.954 [XNIO-1 task-2] byYO-nqHQaSF2stIHzL-Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.954 [XNIO-1 task-2] byYO-nqHQaSF2stIHzL-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/54d6ef27, base path is set to: null +16:40:51.955 [XNIO-1 task-2] byYO-nqHQaSF2stIHzL-Og DEBUG com.networknt.schema.TypeValidator debug - validate( "54d6ef27", "54d6ef27", serviceId) +16:40:51.960 [XNIO-1 task-2] IqL62ovvTSGEmhFhGM24LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.960 [XNIO-1 task-2] IqL62ovvTSGEmhFhGM24LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.960 [XNIO-1 task-2] IqL62ovvTSGEmhFhGM24LA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.960 [XNIO-1 task-2] IqL62ovvTSGEmhFhGM24LA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.963 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore store - Store:9d345c94-a7aa-408c-93e2-032594c29c8d +16:40:51.968 [XNIO-1 task-2] FTsWItCkQyyGmfQ5Zm3KeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8879b2b3, base path is set to: null +16:40:51.968 [XNIO-1 task-2] FTsWItCkQyyGmfQ5Zm3KeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.968 [XNIO-1 task-2] FTsWItCkQyyGmfQ5Zm3KeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.968 [XNIO-1 task-2] FTsWItCkQyyGmfQ5Zm3KeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/8879b2b3, base path is set to: null +16:40:51.968 [XNIO-1 task-2] FTsWItCkQyyGmfQ5Zm3KeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8879b2b3", "8879b2b3", serviceId) +16:40:51.972 [XNIO-1 task-2] CSyDxMRMR9WxrhmHoX6-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.972 [XNIO-1 task-2] CSyDxMRMR9WxrhmHoX6-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.972 [XNIO-1 task-2] CSyDxMRMR9WxrhmHoX6-VA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.972 [XNIO-1 task-2] CSyDxMRMR9WxrhmHoX6-VA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:51.977 [XNIO-1 task-2] wNxciDgdQeOvlzyyLZ5fjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.977 [XNIO-1 task-2] wNxciDgdQeOvlzyyLZ5fjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.977 [XNIO-1 task-2] wNxciDgdQeOvlzyyLZ5fjA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.983 [XNIO-1 task-2] AulbpVaPSaSugv6Ik6u3eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8879b2b3 +16:40:51.984 [XNIO-1 task-2] AulbpVaPSaSugv6Ik6u3eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.984 [XNIO-1 task-2] AulbpVaPSaSugv6Ik6u3eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.984 [XNIO-1 task-2] AulbpVaPSaSugv6Ik6u3eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/8879b2b3 +16:40:51.990 [XNIO-1 task-2] 77gZbT1mRhaTtzz7r3DJ3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/602c99d3, base path is set to: null +16:40:51.990 [XNIO-1 task-2] 77gZbT1mRhaTtzz7r3DJ3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.990 [XNIO-1 task-2] 77gZbT1mRhaTtzz7r3DJ3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:51.991 [XNIO-1 task-2] 77gZbT1mRhaTtzz7r3DJ3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/602c99d3, base path is set to: null +16:40:51.991 [XNIO-1 task-2] 77gZbT1mRhaTtzz7r3DJ3g DEBUG com.networknt.schema.TypeValidator debug - validate( "602c99d3", "602c99d3", serviceId) +16:40:51.994 [XNIO-1 task-2] pymKonwcT6-x5vinME-iLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/602c99d3 +16:40:51.994 [XNIO-1 task-2] pymKonwcT6-x5vinME-iLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:51.994 [XNIO-1 task-2] pymKonwcT6-x5vinME-iLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:51.994 [XNIO-1 task-2] pymKonwcT6-x5vinME-iLw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/602c99d3 +16:40:51.996 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.996 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:51.996 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:51.997 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.997 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.997 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:51.997 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:51.997 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "e725ded0-b0ef-498c-a09d-4489f87d", {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:51.997 [XNIO-1 task-2] NJnIUo5cTJyRuvsKU4ZQ-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"602c99d3","serviceName":"e725ded0-b0ef-498c-a09d-4489f87d","serviceDesc":"8d347ac7-f870-43e3-ac6f-03e477a35b99","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:51.999 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:f23864d4-5b9b-4927-b2e4-0bd9d96d70dd +16:40:52.002 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG com.networknt.schema.TypeValidator debug - validate( "e42d669a-bc50-44a0-b9b0-d1c387865d9f", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG com.networknt.schema.TypeValidator debug - validate( "3038a720", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.003 [XNIO-1 task-2] PWRpmVnOR4ODKJhBa-9bXA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.008 [XNIO-1 task-2] fH7wlR48Skm02qPvpj7z8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.009 [XNIO-1 task-2] fH7wlR48Skm02qPvpj7z8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.009 [XNIO-1 task-2] fH7wlR48Skm02qPvpj7z8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.009 [XNIO-1 task-2] fH7wlR48Skm02qPvpj7z8A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.016 [XNIO-1 task-2] wVZyQgJcTeaCEe0SpEMNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/602c99d3 +16:40:52.017 [XNIO-1 task-2] wVZyQgJcTeaCEe0SpEMNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.017 [XNIO-1 task-2] wVZyQgJcTeaCEe0SpEMNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.017 [XNIO-1 task-2] wVZyQgJcTeaCEe0SpEMNSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/602c99d3 +16:40:52.019 [XNIO-1 task-2] NUMDHrHKSFO30PI237Xubw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.019 [XNIO-1 task-2] NUMDHrHKSFO30PI237Xubw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.019 [XNIO-1 task-2] NUMDHrHKSFO30PI237Xubw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.023 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6949dfc5 +16:40:52.024 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:6949dfc5 +16:40:52.024 [XNIO-1 task-2] oB7xIz7kRk-TLgfaq7JF1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.024 [XNIO-1 task-2] oB7xIz7kRk-TLgfaq7JF1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.024 [XNIO-1 task-2] oB7xIz7kRk-TLgfaq7JF1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.034 [XNIO-1 task-2] pJB4SENYRY2XciviUwiryw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/602c99d3 +16:40:52.034 [XNIO-1 task-2] pJB4SENYRY2XciviUwiryw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.034 [XNIO-1 task-2] pJB4SENYRY2XciviUwiryw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.034 [XNIO-1 task-2] pJB4SENYRY2XciviUwiryw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/602c99d3 +16:40:52.036 [XNIO-1 task-2] gfB7uTmkRBiczcbAzjddrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.036 [XNIO-1 task-2] gfB7uTmkRBiczcbAzjddrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.036 [XNIO-1 task-2] gfB7uTmkRBiczcbAzjddrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.042 [XNIO-1 task-2] 7mc6G454T16CjF5fdfguVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.042 [XNIO-1 task-2] 7mc6G454T16CjF5fdfguVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.042 [XNIO-1 task-2] 7mc6G454T16CjF5fdfguVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.048 [XNIO-1 task-2] 2x9UHwzkSY22GbKr6GV9pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.048 [XNIO-1 task-2] 2x9UHwzkSY22GbKr6GV9pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.048 [XNIO-1 task-2] 2x9UHwzkSY22GbKr6GV9pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.048 [XNIO-1 task-2] 2x9UHwzkSY22GbKr6GV9pg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.053 [XNIO-1 task-2] VLqn-6JFQuS9X_pwM2Lryw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.053 [XNIO-1 task-2] VLqn-6JFQuS9X_pwM2Lryw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.053 [XNIO-1 task-2] VLqn-6JFQuS9X_pwM2Lryw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.053 [XNIO-1 task-2] VLqn-6JFQuS9X_pwM2Lryw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.057 [XNIO-1 task-2] SXty2sm3RwiR_HVta5a8_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.058 [XNIO-1 task-2] SXty2sm3RwiR_HVta5a8_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.058 [XNIO-1 task-2] SXty2sm3RwiR_HVta5a8_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.058 [XNIO-1 task-2] SXty2sm3RwiR_HVta5a8_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.063 [XNIO-1 task-2] MNoomaFJSmqiXW7__q3ZZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c8781b3, base path is set to: null +16:40:52.063 [XNIO-1 task-2] MNoomaFJSmqiXW7__q3ZZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.063 [XNIO-1 task-2] MNoomaFJSmqiXW7__q3ZZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.063 [XNIO-1 task-2] MNoomaFJSmqiXW7__q3ZZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c8781b3, base path is set to: null +16:40:52.064 [XNIO-1 task-2] MNoomaFJSmqiXW7__q3ZZA DEBUG com.networknt.schema.TypeValidator debug - validate( "3c8781b3", "3c8781b3", serviceId) +16:40:52.066 [XNIO-1 task-2] WJEWyhK2SYeFeVW2fBJ-Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/09c9b9f7 +16:40:52.066 [XNIO-1 task-2] WJEWyhK2SYeFeVW2fBJ-Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.066 [XNIO-1 task-2] WJEWyhK2SYeFeVW2fBJ-Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.066 [XNIO-1 task-2] WJEWyhK2SYeFeVW2fBJ-Yg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/09c9b9f7 +16:40:52.069 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6949dfc5 +16:40:52.075 [XNIO-1 task-2] VugXG00IRMOgB_20AffOkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.075 [XNIO-1 task-2] VugXG00IRMOgB_20AffOkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.075 [XNIO-1 task-2] VugXG00IRMOgB_20AffOkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.081 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:21fd9799 +16:40:52.082 [XNIO-1 task-2] nlRZA-uRTNKUcK-UkKj-kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.082 [XNIO-1 task-2] nlRZA-uRTNKUcK-UkKj-kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.082 [XNIO-1 task-2] nlRZA-uRTNKUcK-UkKj-kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/602c99d3, base path is set to: null +16:40:52.082 [XNIO-1 task-2] nlRZA-uRTNKUcK-UkKj-kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "602c99d3", "602c99d3", serviceId) +16:40:52.082 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:21fd9799 +16:40:52.089 [XNIO-1 task-2] hoktoCXTSGOFIpKI6sfYyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3d68239 +16:40:52.089 [XNIO-1 task-2] hoktoCXTSGOFIpKI6sfYyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.089 [XNIO-1 task-2] hoktoCXTSGOFIpKI6sfYyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.089 [XNIO-1 task-2] hoktoCXTSGOFIpKI6sfYyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3d68239 +16:40:52.092 [XNIO-1 task-2] 5n39_ANoS1yarNDBd99qTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cf70a818, base path is set to: null +16:40:52.092 [XNIO-1 task-2] 5n39_ANoS1yarNDBd99qTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.092 [XNIO-1 task-2] 5n39_ANoS1yarNDBd99qTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.092 [XNIO-1 task-2] 5n39_ANoS1yarNDBd99qTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/cf70a818, base path is set to: null +16:40:52.092 [XNIO-1 task-2] 5n39_ANoS1yarNDBd99qTg DEBUG com.networknt.schema.TypeValidator debug - validate( "cf70a818", "cf70a818", serviceId) +16:40:52.097 [XNIO-1 task-2] w0MZqigBT3WKpeRb5V-XZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.097 [XNIO-1 task-2] w0MZqigBT3WKpeRb5V-XZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.097 [XNIO-1 task-2] w0MZqigBT3WKpeRb5V-XZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.098 [XNIO-1 task-2] w0MZqigBT3WKpeRb5V-XZw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.105 [XNIO-1 task-2] J3p9Ps-6Qp6yn4OATeOW4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.105 [XNIO-1 task-2] J3p9Ps-6Qp6yn4OATeOW4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.105 [XNIO-1 task-2] J3p9Ps-6Qp6yn4OATeOW4g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.112 [XNIO-1 task-2] UxqU9kVBSJ6ImeMV2fOk5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.112 [XNIO-1 task-2] UxqU9kVBSJ6ImeMV2fOk5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.112 [XNIO-1 task-2] UxqU9kVBSJ6ImeMV2fOk5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.113 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:580c8f68 +16:40:52.118 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.118 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.119 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.119 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.119 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.119 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.119 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.119 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG com.networknt.schema.TypeValidator debug - validate( "f718b7ab-2356-4f08-90c7-4acd100d", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:52.119 [XNIO-1 task-2] 8cTkAO5pQbeAuLdBFgkjWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.124 [XNIO-1 task-2] Rdvkxv4rSI2A_b4H6V_QVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e6268ed, base path is set to: null +16:40:52.124 [XNIO-1 task-2] Rdvkxv4rSI2A_b4H6V_QVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.124 [XNIO-1 task-2] Rdvkxv4rSI2A_b4H6V_QVA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.124 [XNIO-1 task-2] Rdvkxv4rSI2A_b4H6V_QVA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1e6268ed, base path is set to: null +16:40:52.124 [XNIO-1 task-2] Rdvkxv4rSI2A_b4H6V_QVA DEBUG com.networknt.schema.TypeValidator debug - validate( "1e6268ed", "1e6268ed", serviceId) +16:40:52.131 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.131 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.131 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.131 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.131 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.131 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "31b6dcca-c231-4a89-9fd8-a8a4066d82a9", {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.132 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1ece806a", {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.132 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.132 [XNIO-1 task-2] yic6pEgfQgCpuLv3SdQDBQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"1ece806a","serviceName":"950bffec-612d-4f85-87da-50c90bc8","serviceDesc":"31b6dcca-c231-4a89-9fd8-a8a4066d82a9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.138 [XNIO-1 task-2] bVQvjezgQdGXxTPxmgwnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84e1e8a6 +16:40:52.138 [XNIO-1 task-2] bVQvjezgQdGXxTPxmgwnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.138 [XNIO-1 task-2] bVQvjezgQdGXxTPxmgwnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.138 [XNIO-1 task-2] bVQvjezgQdGXxTPxmgwnMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/84e1e8a6 +16:40:52.147 [XNIO-1 task-2] O60eWvATQiSL9ahNugeFTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:52.147 [XNIO-1 task-2] O60eWvATQiSL9ahNugeFTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.147 [XNIO-1 task-2] O60eWvATQiSL9ahNugeFTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.147 [XNIO-1 task-2] O60eWvATQiSL9ahNugeFTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/44f030de, base path is set to: null +16:40:52.147 [XNIO-1 task-2] O60eWvATQiSL9ahNugeFTw DEBUG com.networknt.schema.TypeValidator debug - validate( "44f030de", "44f030de", serviceId) +16:40:52.152 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:21fd9799 +16:40:52.152 [XNIO-1 task-2] mKkvWSL5QFWelWAa4DNxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/99c0e90f +16:40:52.153 [XNIO-1 task-2] mKkvWSL5QFWelWAa4DNxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.153 [XNIO-1 task-2] mKkvWSL5QFWelWAa4DNxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.153 [XNIO-1 task-2] mKkvWSL5QFWelWAa4DNxdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/99c0e90f +16:40:52.155 [XNIO-1 task-2] FPdwB-E6Rba3Y2IxTKHzkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.155 [XNIO-1 task-2] FPdwB-E6Rba3Y2IxTKHzkg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.155 [XNIO-1 task-2] FPdwB-E6Rba3Y2IxTKHzkg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.158 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:21fd9799 +16:40:52.165 [XNIO-1 task-2] aALs6JGXTE6QinYad77u1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.166 [XNIO-1 task-2] aALs6JGXTE6QinYad77u1Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.166 [XNIO-1 task-2] aALs6JGXTE6QinYad77u1Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.173 [XNIO-1 task-2] jRGBuoBIR4iAryGLU7ZkMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.173 [XNIO-1 task-2] jRGBuoBIR4iAryGLU7ZkMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.173 [XNIO-1 task-2] jRGBuoBIR4iAryGLU7ZkMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.173 [XNIO-1 task-2] jRGBuoBIR4iAryGLU7ZkMA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.178 [XNIO-1 task-2] ZkCjQvqvTjCkUL1Blw4Ukw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.179 [XNIO-1 task-2] ZkCjQvqvTjCkUL1Blw4Ukw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.179 [XNIO-1 task-2] ZkCjQvqvTjCkUL1Blw4Ukw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.179 [XNIO-1 task-2] ZkCjQvqvTjCkUL1Blw4Ukw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.184 [XNIO-1 task-2] _gZa4Xh4S-iymwzRAYO83A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99c0e90f, base path is set to: null +16:40:52.185 [XNIO-1 task-2] _gZa4Xh4S-iymwzRAYO83A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.185 [XNIO-1 task-2] _gZa4Xh4S-iymwzRAYO83A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.185 [XNIO-1 task-2] _gZa4Xh4S-iymwzRAYO83A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99c0e90f, base path is set to: null +16:40:52.185 [XNIO-1 task-2] _gZa4Xh4S-iymwzRAYO83A DEBUG com.networknt.schema.TypeValidator debug - validate( "99c0e90f", "99c0e90f", serviceId) +16:40:52.187 [XNIO-1 task-2] SXBljorPQC2LmpuyQbgPkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/062bf7d6 +16:40:52.188 [XNIO-1 task-2] SXBljorPQC2LmpuyQbgPkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.188 [XNIO-1 task-2] SXBljorPQC2LmpuyQbgPkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.188 [XNIO-1 task-2] SXBljorPQC2LmpuyQbgPkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/062bf7d6 +16:40:52.190 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:21fd9799 +16:40:52.193 [XNIO-1 task-2] dML7viFIS8CNOvgr-eg2WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.193 [XNIO-1 task-2] dML7viFIS8CNOvgr-eg2WQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.193 [XNIO-1 task-2] dML7viFIS8CNOvgr-eg2WQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.193 [XNIO-1 task-2] dML7viFIS8CNOvgr-eg2WQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.198 [XNIO-1 task-2] MfAmwznMTKWrfbneA2xxdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/516b35ef, base path is set to: null +16:40:52.198 [XNIO-1 task-2] MfAmwznMTKWrfbneA2xxdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.198 [XNIO-1 task-2] MfAmwznMTKWrfbneA2xxdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.198 [XNIO-1 task-2] MfAmwznMTKWrfbneA2xxdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/516b35ef, base path is set to: null +16:40:52.198 [XNIO-1 task-2] MfAmwznMTKWrfbneA2xxdA DEBUG com.networknt.schema.TypeValidator debug - validate( "516b35ef", "516b35ef", serviceId) +16:40:52.207 [XNIO-1 task-2] hsl3XZ5WSJWGbHQcW7VKCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.207 [XNIO-1 task-2] hsl3XZ5WSJWGbHQcW7VKCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.207 [XNIO-1 task-2] hsl3XZ5WSJWGbHQcW7VKCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.213 [XNIO-1 task-2] omHEh7uKRv2kcBZjYNBqeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79f6cdc1, base path is set to: null +16:40:52.213 [XNIO-1 task-2] omHEh7uKRv2kcBZjYNBqeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.213 [XNIO-1 task-2] omHEh7uKRv2kcBZjYNBqeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.213 [XNIO-1 task-2] omHEh7uKRv2kcBZjYNBqeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79f6cdc1, base path is set to: null +16:40:52.213 [XNIO-1 task-2] omHEh7uKRv2kcBZjYNBqeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "79f6cdc1", "79f6cdc1", serviceId) +16:40:52.215 [XNIO-1 task-2] FF6iuHKeRnubxXCmDbkRpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.215 [XNIO-1 task-2] FF6iuHKeRnubxXCmDbkRpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.216 [XNIO-1 task-2] FF6iuHKeRnubxXCmDbkRpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.216 [XNIO-1 task-2] FF6iuHKeRnubxXCmDbkRpQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.230 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.230 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.230 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.231 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.231 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.231 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG com.networknt.schema.TypeValidator debug - validate( "421c0286-01cc-4093-8ebd-28e8bfa2c003", {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.231 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG com.networknt.schema.TypeValidator debug - validate( "99c0e90f", {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.231 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.231 [XNIO-1 task-2] svN4zGlYRdGHFGGwsxPEUg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"99c0e90f","serviceName":"be645487-f8a4-4660-8bc6-c5a07e85","serviceDesc":"421c0286-01cc-4093-8ebd-28e8bfa2c003","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.238 [XNIO-1 task-2] Uz5cEmt2SFabttQ5yG1Irw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.239 [XNIO-1 task-2] Uz5cEmt2SFabttQ5yG1Irw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.239 [XNIO-1 task-2] Uz5cEmt2SFabttQ5yG1Irw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.244 [XNIO-1 task-2] r9cJTsUfQeG-AYB4lwZBbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0fe58f6a, base path is set to: null +16:40:52.245 [XNIO-1 task-2] r9cJTsUfQeG-AYB4lwZBbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.245 [XNIO-1 task-2] r9cJTsUfQeG-AYB4lwZBbQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.245 [XNIO-1 task-2] r9cJTsUfQeG-AYB4lwZBbQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0fe58f6a, base path is set to: null +16:40:52.245 [XNIO-1 task-2] r9cJTsUfQeG-AYB4lwZBbQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe58f6a", "0fe58f6a", serviceId) +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG com.networknt.schema.TypeValidator debug - validate( "2a879a05-02a0-4066-ae26-83dfbad8ceeb", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG com.networknt.schema.TypeValidator debug - validate( "c2e81490", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.247 [XNIO-1 task-2] NIJCURt9TsiP3SALuCKHwg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.249 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:0f6b9bd6-029d-4eba-8a04-2319129e0a68 +16:40:52.254 [XNIO-1 task-2] zVcszonDRBmKl_naHBNsNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ac0960b, base path is set to: null +16:40:52.254 [XNIO-1 task-2] zVcszonDRBmKl_naHBNsNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.254 [XNIO-1 task-2] zVcszonDRBmKl_naHBNsNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.254 [XNIO-1 task-2] zVcszonDRBmKl_naHBNsNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/9ac0960b, base path is set to: null +16:40:52.254 [XNIO-1 task-2] zVcszonDRBmKl_naHBNsNw DEBUG com.networknt.schema.TypeValidator debug - validate( "9ac0960b", "9ac0960b", serviceId) +16:40:52.259 [XNIO-1 task-2] _RG4lZICQBuVLSQ9eTnLGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.259 [XNIO-1 task-2] _RG4lZICQBuVLSQ9eTnLGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.259 [XNIO-1 task-2] _RG4lZICQBuVLSQ9eTnLGA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.259 [XNIO-1 task-2] _RG4lZICQBuVLSQ9eTnLGA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.265 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.265 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.265 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.265 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.266 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.266 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG com.networknt.schema.TypeValidator debug - validate( "b2251cf5-3156-41e8-a131-fd360965582b", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.266 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG com.networknt.schema.TypeValidator debug - validate( "79f6cdc1", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.266 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.266 [XNIO-1 task-2] L0Vb8UUQRKe4N_93IxBxyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.272 [XNIO-1 task-2] vGPQcl5MSsykxcAPKja6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/580c8f68 +16:40:52.272 [XNIO-1 task-2] vGPQcl5MSsykxcAPKja6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.272 [XNIO-1 task-2] vGPQcl5MSsykxcAPKja6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.272 [XNIO-1 task-2] vGPQcl5MSsykxcAPKja6mA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/580c8f68 +16:40:52.272 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:580c8f68 +16:40:52.277 [XNIO-1 task-2] vzJYp2AKQlmhOtGo6deZXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0fe58f6a, base path is set to: null +16:40:52.278 [XNIO-1 task-2] vzJYp2AKQlmhOtGo6deZXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.278 [XNIO-1 task-2] vzJYp2AKQlmhOtGo6deZXg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.278 [XNIO-1 task-2] vzJYp2AKQlmhOtGo6deZXg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0fe58f6a, base path is set to: null +16:40:52.278 [XNIO-1 task-2] vzJYp2AKQlmhOtGo6deZXg DEBUG com.networknt.schema.TypeValidator debug - validate( "0fe58f6a", "0fe58f6a", serviceId) +16:40:52.291 [XNIO-1 task-2] uxavEn0MRdaNeBOinRCIeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.291 [XNIO-1 task-2] uxavEn0MRdaNeBOinRCIeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.291 [XNIO-1 task-2] uxavEn0MRdaNeBOinRCIeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.297 [XNIO-1 task-2] 3t4TSToxTFa1JLLXu4pXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.297 [XNIO-1 task-2] 3t4TSToxTFa1JLLXu4pXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.297 [XNIO-1 task-2] 3t4TSToxTFa1JLLXu4pXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.302 [XNIO-1 task-2] WMreqt6jTD6N3Kz5c3W0WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece806a +16:40:52.302 [XNIO-1 task-2] WMreqt6jTD6N3Kz5c3W0WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.302 [XNIO-1 task-2] WMreqt6jTD6N3Kz5c3W0WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.302 [XNIO-1 task-2] WMreqt6jTD6N3Kz5c3W0WQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece806a +16:40:52.305 [XNIO-1 task-2] _ec5VuD2QxmPEB2eeHpt0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.305 [XNIO-1 task-2] _ec5VuD2QxmPEB2eeHpt0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.305 [XNIO-1 task-2] _ec5VuD2QxmPEB2eeHpt0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.313 [XNIO-1 task-2] Rg_U8kOyRlWsN5mB_RQlpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/560fcf6b, base path is set to: null +16:40:52.313 [XNIO-1 task-2] Rg_U8kOyRlWsN5mB_RQlpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.313 [XNIO-1 task-2] Rg_U8kOyRlWsN5mB_RQlpA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.313 [XNIO-1 task-2] Rg_U8kOyRlWsN5mB_RQlpA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/560fcf6b, base path is set to: null +16:40:52.313 [XNIO-1 task-2] Rg_U8kOyRlWsN5mB_RQlpA DEBUG com.networknt.schema.TypeValidator debug - validate( "560fcf6b", "560fcf6b", serviceId) +16:40:52.317 [XNIO-1 task-2] LVNGfWHOTGiO0KZLlU5z0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece806a +16:40:52.317 [XNIO-1 task-2] LVNGfWHOTGiO0KZLlU5z0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.317 [XNIO-1 task-2] LVNGfWHOTGiO0KZLlU5z0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.317 [XNIO-1 task-2] LVNGfWHOTGiO0KZLlU5z0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/1ece806a +16:40:52.322 [XNIO-1 task-2] cgqWUwY2RRK2t18ETxYv5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7a7bd88, base path is set to: null +16:40:52.322 [XNIO-1 task-2] cgqWUwY2RRK2t18ETxYv5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.322 [XNIO-1 task-2] cgqWUwY2RRK2t18ETxYv5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.322 [XNIO-1 task-2] cgqWUwY2RRK2t18ETxYv5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7a7bd88, base path is set to: null +16:40:52.322 [XNIO-1 task-2] cgqWUwY2RRK2t18ETxYv5g DEBUG com.networknt.schema.TypeValidator debug - validate( "f7a7bd88", "f7a7bd88", serviceId) +16:40:52.324 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:5c92bdc0-9b8f-4994-a03c-3388a99e4827 +16:40:52.324 [XNIO-1 task-2] B5nbwzdCSC2SXv_Oud9fNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.324 [XNIO-1 task-2] B5nbwzdCSC2SXv_Oud9fNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.324 [XNIO-1 task-2] B5nbwzdCSC2SXv_Oud9fNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.331 [XNIO-1 task-2] tZAiuNrnTKSGkMEDY-35gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.331 [XNIO-1 task-2] tZAiuNrnTKSGkMEDY-35gg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.331 [XNIO-1 task-2] tZAiuNrnTKSGkMEDY-35gg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.331 [XNIO-1 task-2] tZAiuNrnTKSGkMEDY-35gg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.336 [XNIO-1 task-2] cOMwN-GfSPeVmyonbA2rIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.336 [XNIO-1 task-2] cOMwN-GfSPeVmyonbA2rIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.336 [XNIO-1 task-2] cOMwN-GfSPeVmyonbA2rIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.337 [XNIO-1 task-2] cOMwN-GfSPeVmyonbA2rIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.342 [XNIO-1 task-2] uKNBYbF2ScyyPtkMajctpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7a7bd88, base path is set to: null +16:40:52.343 [XNIO-1 task-2] uKNBYbF2ScyyPtkMajctpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.343 [XNIO-1 task-2] uKNBYbF2ScyyPtkMajctpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.343 [XNIO-1 task-2] uKNBYbF2ScyyPtkMajctpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7a7bd88, base path is set to: null +16:40:52.343 [XNIO-1 task-2] uKNBYbF2ScyyPtkMajctpg DEBUG com.networknt.schema.TypeValidator debug - validate( "f7a7bd88", "f7a7bd88", serviceId) +16:40:52.345 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.345 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.345 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.345 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.345 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.345 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG com.networknt.schema.TypeValidator debug - validate( "d60b1a22-4fd9-4855-acb6-8088f7777842", {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.346 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG com.networknt.schema.TypeValidator debug - validate( "f7a7bd88", {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.346 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.346 [XNIO-1 task-2] HwFejlabROudkycSwQBs6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7a7bd88","serviceName":"97763c43-4649-4dbf-9663-76616bf1","serviceDesc":"d60b1a22-4fd9-4855-acb6-8088f7777842","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.350 [XNIO-1 task-2] L2-VPpE-QZi0dMOQO1S7pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.351 [XNIO-1 task-2] L2-VPpE-QZi0dMOQO1S7pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.351 [XNIO-1 task-2] L2-VPpE-QZi0dMOQO1S7pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.351 [XNIO-1 task-2] L2-VPpE-QZi0dMOQO1S7pA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.355 [XNIO-1 task-2] z58z5OUFTQOCLHYuglblqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.355 [XNIO-1 task-2] z58z5OUFTQOCLHYuglblqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.355 [XNIO-1 task-2] z58z5OUFTQOCLHYuglblqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.362 [XNIO-1 task-2] r3nk6ipSTLS7K0CCepCc5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3038a720 +16:40:52.362 [XNIO-1 task-2] r3nk6ipSTLS7K0CCepCc5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.362 [XNIO-1 task-2] r3nk6ipSTLS7K0CCepCc5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.362 [XNIO-1 task-2] r3nk6ipSTLS7K0CCepCc5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3038a720 +16:40:52.364 [XNIO-1 task-2] GRRhyyWiSNSADhzUX6flgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.364 [XNIO-1 task-2] GRRhyyWiSNSADhzUX6flgA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.364 [XNIO-1 task-2] GRRhyyWiSNSADhzUX6flgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.370 [XNIO-1 task-2] zDorDtOESdOJOiPIR8eAsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99c0e90f, base path is set to: null +16:40:52.370 [XNIO-1 task-2] zDorDtOESdOJOiPIR8eAsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.370 [XNIO-1 task-2] zDorDtOESdOJOiPIR8eAsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.370 [XNIO-1 task-2] zDorDtOESdOJOiPIR8eAsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/99c0e90f, base path is set to: null +16:40:52.370 [XNIO-1 task-2] zDorDtOESdOJOiPIR8eAsw DEBUG com.networknt.schema.TypeValidator debug - validate( "99c0e90f", "99c0e90f", serviceId) +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "e42d669a-bc50-44a0-b9b0-d1c387865d9f", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "3038a720", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.377 [XNIO-1 task-2] uhtx2wmgQDibyUliF9C9Iw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.382 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.383 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.383 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.383 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.383 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.383 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2a879a05-02a0-4066-ae26-83dfbad8ceeb", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.383 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c2e81490", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.383 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.384 [XNIO-1 task-2] u7iwOz94T4SFXHOrULAICQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c2e81490","serviceName":"120780dc-9b78-4ac4-beb9-c81ababc","serviceDesc":"2a879a05-02a0-4066-ae26-83dfbad8ceeb","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.389 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.389 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.390 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.390 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.390 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.390 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG com.networknt.schema.TypeValidator debug - validate( "e42d669a-bc50-44a0-b9b0-d1c387865d9f", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.390 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG com.networknt.schema.TypeValidator debug - validate( "3038a720", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.390 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.390 [XNIO-1 task-2] RC5C42iTR_ugTpCUeLVD6A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3038a720","serviceName":"dab8cc6f-1546-4ac9-a892-401e528f","serviceDesc":"e42d669a-bc50-44a0-b9b0-d1c387865d9f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.398 [XNIO-1 task-2] jszf-T4kSoWaZXyFp5MWog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.398 [XNIO-1 task-2] jszf-T4kSoWaZXyFp5MWog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.398 [XNIO-1 task-2] jszf-T4kSoWaZXyFp5MWog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.398 [XNIO-1 task-2] jszf-T4kSoWaZXyFp5MWog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.405 [XNIO-1 task-2] 7MyqxqEbQvugqvMLL2Ji5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c2e81490 +16:40:52.405 [XNIO-1 task-2] 7MyqxqEbQvugqvMLL2Ji5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.405 [XNIO-1 task-2] 7MyqxqEbQvugqvMLL2Ji5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.405 [XNIO-1 task-2] 7MyqxqEbQvugqvMLL2Ji5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c2e81490 +16:40:52.413 [XNIO-1 task-2] HhEiZgcBRpWtyyw_SlU96g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d24415a, base path is set to: null +16:40:52.413 [XNIO-1 task-2] HhEiZgcBRpWtyyw_SlU96g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.413 [XNIO-1 task-2] HhEiZgcBRpWtyyw_SlU96g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.413 [XNIO-1 task-2] HhEiZgcBRpWtyyw_SlU96g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d24415a, base path is set to: null +16:40:52.413 [XNIO-1 task-2] HhEiZgcBRpWtyyw_SlU96g DEBUG com.networknt.schema.TypeValidator debug - validate( "6d24415a", "6d24415a", serviceId) +16:40:52.415 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.416 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.416 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.416 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.416 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.417 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG com.networknt.schema.TypeValidator debug - validate( "74d261af-7ddd-4a3f-85cb-e60936faf046", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.417 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG com.networknt.schema.TypeValidator debug - validate( "6d24415a", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.417 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.417 [XNIO-1 task-2] WLhh8p1PQjCgg_gRQJHRLg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.425 [XNIO-1 task-2] ed8iC4vCQFyC-7u7x4c6-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.425 [XNIO-1 task-2] ed8iC4vCQFyC-7u7x4c6-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.425 [XNIO-1 task-2] ed8iC4vCQFyC-7u7x4c6-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.425 [XNIO-1 task-2] ed8iC4vCQFyC-7u7x4c6-g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.444 [XNIO-1 task-2] XTwDpDSGRuKQUUokdkZw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f017a36b +16:40:52.444 [XNIO-1 task-2] XTwDpDSGRuKQUUokdkZw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.444 [XNIO-1 task-2] XTwDpDSGRuKQUUokdkZw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.444 [XNIO-1 task-2] XTwDpDSGRuKQUUokdkZw4A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f017a36b +16:40:52.447 [XNIO-1 task-2] QYaINAp0QVq_i12u_oEulw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.447 [XNIO-1 task-2] QYaINAp0QVq_i12u_oEulw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.447 [XNIO-1 task-2] QYaINAp0QVq_i12u_oEulw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.447 [XNIO-1 task-2] QYaINAp0QVq_i12u_oEulw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.451 [XNIO-1 task-2] 8KnJnILGTxyhsLFRikUxCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7a7bd88, base path is set to: null +16:40:52.451 [XNIO-1 task-2] 8KnJnILGTxyhsLFRikUxCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.451 [XNIO-1 task-2] 8KnJnILGTxyhsLFRikUxCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.452 [XNIO-1 task-2] 8KnJnILGTxyhsLFRikUxCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7a7bd88, base path is set to: null +16:40:52.452 [XNIO-1 task-2] 8KnJnILGTxyhsLFRikUxCA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7a7bd88", "f7a7bd88", serviceId) +16:40:52.462 [XNIO-1 task-2] 7dYpnzwESsKE_bS9OJO91w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae63c2c0 +16:40:52.462 [XNIO-1 task-2] 7dYpnzwESsKE_bS9OJO91w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.462 [XNIO-1 task-2] 7dYpnzwESsKE_bS9OJO91w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.462 [XNIO-1 task-2] 7dYpnzwESsKE_bS9OJO91w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae63c2c0 +16:40:52.465 [XNIO-1 task-2] QWc8U8Z-RX2cTb5n9Bn-EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f017a36b, base path is set to: null +16:40:52.465 [XNIO-1 task-2] QWc8U8Z-RX2cTb5n9Bn-EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.465 [XNIO-1 task-2] QWc8U8Z-RX2cTb5n9Bn-EQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.465 [XNIO-1 task-2] QWc8U8Z-RX2cTb5n9Bn-EQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f017a36b, base path is set to: null +16:40:52.465 [XNIO-1 task-2] QWc8U8Z-RX2cTb5n9Bn-EQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f017a36b", "f017a36b", serviceId) +16:40:52.471 [XNIO-1 task-2] J8in9SqVRNyhu1fOMqvQQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae63c2c0 +16:40:52.471 [XNIO-1 task-2] J8in9SqVRNyhu1fOMqvQQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.472 [XNIO-1 task-2] J8in9SqVRNyhu1fOMqvQQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.472 [XNIO-1 task-2] J8in9SqVRNyhu1fOMqvQQQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ae63c2c0 +16:40:52.477 [XNIO-1 task-2] gIn5EojsTO2KB6EvYwSlYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79f6cdc1, base path is set to: null +16:40:52.477 [XNIO-1 task-2] gIn5EojsTO2KB6EvYwSlYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.477 [XNIO-1 task-2] gIn5EojsTO2KB6EvYwSlYA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.477 [XNIO-1 task-2] gIn5EojsTO2KB6EvYwSlYA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/79f6cdc1, base path is set to: null +16:40:52.477 [XNIO-1 task-2] gIn5EojsTO2KB6EvYwSlYA DEBUG com.networknt.schema.TypeValidator debug - validate( "79f6cdc1", "79f6cdc1", serviceId) +16:40:52.479 [XNIO-1 task-2] U48FX1yDRBqqr-yERCpU9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.480 [XNIO-1 task-2] U48FX1yDRBqqr-yERCpU9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.480 [XNIO-1 task-2] U48FX1yDRBqqr-yERCpU9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.487 [XNIO-1 task-2] syGhbug8Ro-MMYkJEKBX4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.487 [XNIO-1 task-2] syGhbug8Ro-MMYkJEKBX4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.487 [XNIO-1 task-2] syGhbug8Ro-MMYkJEKBX4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.497 [XNIO-1 task-2] UjX5QeyXQ3Otb64FrfU-UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.498 [XNIO-1 task-2] UjX5QeyXQ3Otb64FrfU-UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.498 [XNIO-1 task-2] UjX5QeyXQ3Otb64FrfU-UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.509 [XNIO-1 task-2] ub3w59TCQ8GMcRb0tZp6bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.509 [XNIO-1 task-2] ub3w59TCQ8GMcRb0tZp6bA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.509 [XNIO-1 task-2] ub3w59TCQ8GMcRb0tZp6bA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.509 [XNIO-1 task-2] ub3w59TCQ8GMcRb0tZp6bA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.516 [XNIO-1 task-2] GQVKGlADRV6gVzNY3h-17w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.516 [XNIO-1 task-2] GQVKGlADRV6gVzNY3h-17w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.516 [XNIO-1 task-2] GQVKGlADRV6gVzNY3h-17w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.524 [XNIO-1 task-2] Msh5dRhRTR-u0UwT_4ag9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3038a720, base path is set to: null +16:40:52.525 [XNIO-1 task-2] Msh5dRhRTR-u0UwT_4ag9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.525 [XNIO-1 task-2] Msh5dRhRTR-u0UwT_4ag9g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.525 [XNIO-1 task-2] Msh5dRhRTR-u0UwT_4ag9g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3038a720, base path is set to: null +16:40:52.525 [XNIO-1 task-2] Msh5dRhRTR-u0UwT_4ag9g DEBUG com.networknt.schema.TypeValidator debug - validate( "3038a720", "3038a720", serviceId) +16:40:52.532 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.532 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.533 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.533 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.533 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.533 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG com.networknt.schema.TypeValidator debug - validate( "7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a", {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.533 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG com.networknt.schema.TypeValidator debug - validate( "3c8781b3", {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.533 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.533 [XNIO-1 task-2] ELePKlXLRvSO7XUpcyAR9A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"3c8781b3","serviceName":"b9810fc2-5097-445d-a860-94275033","serviceDesc":"7a32ea73-ba0c-4f78-b7e9-e50e6fdb1f8a","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.539 [XNIO-1 task-2] cYt1yDBGRAaN9mEtAqsMIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.539 [XNIO-1 task-2] cYt1yDBGRAaN9mEtAqsMIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.540 [XNIO-1 task-2] cYt1yDBGRAaN9mEtAqsMIQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.540 [XNIO-1 task-2] cYt1yDBGRAaN9mEtAqsMIQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.549 [XNIO-1 task-2] 1AX42BgIT7qO3xt_AYtWvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.550 [XNIO-1 task-2] 1AX42BgIT7qO3xt_AYtWvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.550 [XNIO-1 task-2] 1AX42BgIT7qO3xt_AYtWvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.560 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.560 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.560 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.560 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:48004a49-76f3-447b-912b-13c96e60b834 +16:40:52.561 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.561 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.561 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG com.networknt.schema.TypeValidator debug - validate( "b2251cf5-3156-41e8-a131-fd360965582b", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.561 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG com.networknt.schema.TypeValidator debug - validate( "79f6cdc1", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.561 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.561 [XNIO-1 task-2] y6hbeY6YSxCA2qB2bdAiPg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"79f6cdc1","serviceName":"af5e4786-50ad-402f-84a7-4c9a28a0","serviceDesc":"b2251cf5-3156-41e8-a131-fd360965582b","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.562 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:48004a49-76f3-447b-912b-13c96e60b834 +16:40:52.568 [XNIO-1 task-2] 3LVTimOxSsej_4E7Txkv7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.568 [XNIO-1 task-2] 3LVTimOxSsej_4E7Txkv7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.568 [XNIO-1 task-2] 3LVTimOxSsej_4E7Txkv7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.576 [XNIO-1 task-2] HPQK0FT4T_GEASskmtvfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06f42d7e +16:40:52.576 [XNIO-1 task-2] HPQK0FT4T_GEASskmtvfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.576 [XNIO-1 task-2] HPQK0FT4T_GEASskmtvfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.576 [XNIO-1 task-2] HPQK0FT4T_GEASskmtvfsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06f42d7e +16:40:52.579 [XNIO-1 task-2] t67hD6CyRXmoGZTLVFTgpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.579 [XNIO-1 task-2] t67hD6CyRXmoGZTLVFTgpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.579 [XNIO-1 task-2] t67hD6CyRXmoGZTLVFTgpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.579 [XNIO-1 task-2] t67hD6CyRXmoGZTLVFTgpw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.586 [XNIO-1 task-2] Hn9fEKBMSASoxC69pSXIjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2628c0, base path is set to: null +16:40:52.586 [XNIO-1 task-2] Hn9fEKBMSASoxC69pSXIjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.586 [XNIO-1 task-2] Hn9fEKBMSASoxC69pSXIjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.586 [XNIO-1 task-2] Hn9fEKBMSASoxC69pSXIjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ca2628c0, base path is set to: null +16:40:52.586 [XNIO-1 task-2] Hn9fEKBMSASoxC69pSXIjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ca2628c0", "ca2628c0", serviceId) +16:40:52.595 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:750e7887 +16:40:52.598 [XNIO-1 task-2] pRNxdsAARG2xi6IRpQWdqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.599 [XNIO-1 task-2] pRNxdsAARG2xi6IRpQWdqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.599 [XNIO-1 task-2] pRNxdsAARG2xi6IRpQWdqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.599 [XNIO-1 task-2] pRNxdsAARG2xi6IRpQWdqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.602 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:750e7887 +16:40:52.603 [XNIO-1 task-2] pEZVg6nbTj-TVcfBYa_Sgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.604 [XNIO-1 task-2] pEZVg6nbTj-TVcfBYa_Sgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.604 [XNIO-1 task-2] pEZVg6nbTj-TVcfBYa_Sgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.610 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:750e7887 +16:40:52.613 [XNIO-1 task-2] urHVTFKAR3qgX2DSIZ0I4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c8781b3, base path is set to: null +16:40:52.613 [XNIO-1 task-2] urHVTFKAR3qgX2DSIZ0I4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.613 [XNIO-1 task-2] urHVTFKAR3qgX2DSIZ0I4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.613 [XNIO-1 task-2] urHVTFKAR3qgX2DSIZ0I4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/3c8781b3, base path is set to: null +16:40:52.613 [XNIO-1 task-2] urHVTFKAR3qgX2DSIZ0I4g DEBUG com.networknt.schema.TypeValidator debug - validate( "3c8781b3", "3c8781b3", serviceId) +16:40:52.619 [XNIO-1 task-2] N3q9ThioRGudVitI5_ybBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.619 [XNIO-1 task-2] N3q9ThioRGudVitI5_ybBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.619 [XNIO-1 task-2] N3q9ThioRGudVitI5_ybBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.619 [XNIO-1 task-2] N3q9ThioRGudVitI5_ybBA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.627 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:750e7887 +16:40:52.630 [XNIO-1 task-2] 7x-e8sNySY-DV49DZTo52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.630 [XNIO-1 task-2] 7x-e8sNySY-DV49DZTo52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.630 [XNIO-1 task-2] 7x-e8sNySY-DV49DZTo52g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.643 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:750e7887 +16:40:52.645 [XNIO-1 task-2] H31d7pA2QxiFBdpxTfDD3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3d68239 +16:40:52.645 [XNIO-1 task-2] H31d7pA2QxiFBdpxTfDD3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.645 [XNIO-1 task-2] H31d7pA2QxiFBdpxTfDD3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.645 [XNIO-1 task-2] H31d7pA2QxiFBdpxTfDD3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3d68239 +16:40:52.648 [XNIO-1 task-2] z0is2H1WS425ZjR_KWGb-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.648 [XNIO-1 task-2] z0is2H1WS425ZjR_KWGb-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.648 [XNIO-1 task-2] z0is2H1WS425ZjR_KWGb-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.648 [XNIO-1 task-2] z0is2H1WS425ZjR_KWGb-g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.653 [XNIO-1 task-2] R8BJss_VQvOaNNMpzd1iiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.653 [XNIO-1 task-2] R8BJss_VQvOaNNMpzd1iiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.653 [XNIO-1 task-2] R8BJss_VQvOaNNMpzd1iiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.662 [XNIO-1 task-2] evGpnUFQRLuPdRpMXlgw4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.662 [XNIO-1 task-2] evGpnUFQRLuPdRpMXlgw4w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.662 [XNIO-1 task-2] evGpnUFQRLuPdRpMXlgw4w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.668 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:750e7887 +16:40:52.670 [XNIO-1 task-2] mCzZhsK_QUGcNqKpSEArWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.670 [XNIO-1 task-2] mCzZhsK_QUGcNqKpSEArWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.671 [XNIO-1 task-2] mCzZhsK_QUGcNqKpSEArWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.671 [XNIO-1 task-2] mCzZhsK_QUGcNqKpSEArWg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.676 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:750e7887 +16:40:52.679 [XNIO-1 task-2] cYIa44rNTuSjCmjtHoJpkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.679 [XNIO-1 task-2] cYIa44rNTuSjCmjtHoJpkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.680 [XNIO-1 task-2] cYIa44rNTuSjCmjtHoJpkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.680 [XNIO-1 task-2] cYIa44rNTuSjCmjtHoJpkA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.684 [XNIO-1 task-2] J2xcnfwKR_Gk5uh_tDJKtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.684 [XNIO-1 task-2] J2xcnfwKR_Gk5uh_tDJKtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.684 [XNIO-1 task-2] J2xcnfwKR_Gk5uh_tDJKtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.695 [XNIO-1 task-2] q4IQ3dJWSZeZgyrulH_0cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.695 [XNIO-1 task-2] q4IQ3dJWSZeZgyrulH_0cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.695 [XNIO-1 task-2] q4IQ3dJWSZeZgyrulH_0cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.695 [XNIO-1 task-2] q4IQ3dJWSZeZgyrulH_0cA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.700 [XNIO-1 task-2] x_JmdbTWQtC1oerZsenTZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18ae29bb +16:40:52.700 [XNIO-1 task-2] x_JmdbTWQtC1oerZsenTZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.701 [XNIO-1 task-2] x_JmdbTWQtC1oerZsenTZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.701 [XNIO-1 task-2] x_JmdbTWQtC1oerZsenTZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/18ae29bb +16:40:52.704 [XNIO-1 task-2] YpqUaDLMSGubvzDJiABCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.704 [XNIO-1 task-2] YpqUaDLMSGubvzDJiABCCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.704 [XNIO-1 task-2] YpqUaDLMSGubvzDJiABCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.704 [XNIO-1 task-2] YpqUaDLMSGubvzDJiABCCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.711 [XNIO-1 task-2] m7vNiDahSEGbpGMHRvJabQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.711 [XNIO-1 task-2] m7vNiDahSEGbpGMHRvJabQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.711 [XNIO-1 task-2] m7vNiDahSEGbpGMHRvJabQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.712 [XNIO-1 task-2] m7vNiDahSEGbpGMHRvJabQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.741 [XNIO-1 task-2] VY-eGx4zTkicHlyQm8W72w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18ae29bb, base path is set to: null +16:40:52.741 [XNIO-1 task-2] VY-eGx4zTkicHlyQm8W72w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.741 [XNIO-1 task-2] VY-eGx4zTkicHlyQm8W72w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.741 [XNIO-1 task-2] VY-eGx4zTkicHlyQm8W72w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/18ae29bb, base path is set to: null +16:40:52.741 [XNIO-1 task-2] VY-eGx4zTkicHlyQm8W72w DEBUG com.networknt.schema.TypeValidator debug - validate( "18ae29bb", "18ae29bb", serviceId) +16:40:52.748 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4aab6bd3-4822-4fc2-8e4d-82d942cddd78 +16:40:52.749 [XNIO-1 task-2] UnWvS3_1SomKf7_DOrIFTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2aa2766, base path is set to: null +16:40:52.749 [XNIO-1 task-2] UnWvS3_1SomKf7_DOrIFTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.749 [XNIO-1 task-2] UnWvS3_1SomKf7_DOrIFTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.749 [XNIO-1 task-2] UnWvS3_1SomKf7_DOrIFTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e2aa2766, base path is set to: null +16:40:52.750 [XNIO-1 task-2] UnWvS3_1SomKf7_DOrIFTg DEBUG com.networknt.schema.TypeValidator debug - validate( "e2aa2766", "e2aa2766", serviceId) +16:40:52.757 [XNIO-1 task-2] IZzD9DqISMedFWkq-usb-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.757 [XNIO-1 task-2] IZzD9DqISMedFWkq-usb-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.757 [XNIO-1 task-2] IZzD9DqISMedFWkq-usb-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.757 [XNIO-1 task-2] IZzD9DqISMedFWkq-usb-w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.762 [XNIO-1 task-2] oY4KU7wfTl2KGGTk7ZxtjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.762 [XNIO-1 task-2] oY4KU7wfTl2KGGTk7ZxtjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.763 [XNIO-1 task-2] oY4KU7wfTl2KGGTk7ZxtjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.763 [XNIO-1 task-2] oY4KU7wfTl2KGGTk7ZxtjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.768 [XNIO-1 task-2] e_pQ5828S0GKHfNqhUOq3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.768 [XNIO-1 task-2] e_pQ5828S0GKHfNqhUOq3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.768 [XNIO-1 task-2] e_pQ5828S0GKHfNqhUOq3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.768 [XNIO-1 task-2] e_pQ5828S0GKHfNqhUOq3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.771 [XNIO-1 task-2] megiwolbTeuHzHbIMU6JYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79f6cdc1 +16:40:52.772 [XNIO-1 task-2] megiwolbTeuHzHbIMU6JYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.772 [XNIO-1 task-2] megiwolbTeuHzHbIMU6JYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.772 [XNIO-1 task-2] megiwolbTeuHzHbIMU6JYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/79f6cdc1 +16:40:52.779 [XNIO-1 task-2] 3fv0RK41TmWOHJATcePdUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/96d7fbab, base path is set to: null +16:40:52.779 [XNIO-1 task-2] 3fv0RK41TmWOHJATcePdUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.779 [XNIO-1 task-2] 3fv0RK41TmWOHJATcePdUg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:52.779 [XNIO-1 task-2] 3fv0RK41TmWOHJATcePdUg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/96d7fbab, base path is set to: null +16:40:52.779 [XNIO-1 task-2] 3fv0RK41TmWOHJATcePdUg DEBUG com.networknt.schema.TypeValidator debug - validate( "96d7fbab", "96d7fbab", serviceId) +16:40:52.781 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG com.networknt.schema.TypeValidator debug - validate( "8f8d9720-2b29-4d7f-b10a-28c617d40833", {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG com.networknt.schema.TypeValidator debug - validate( "96d7fbab", {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.782 [XNIO-1 task-2] 0okkxNSTTHy_ohv2imaXRw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"96d7fbab","serviceName":"fb2d7357-381d-4d18-ad58-c11e419b","serviceDesc":"8f8d9720-2b29-4d7f-b10a-28c617d40833","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.788 [XNIO-1 task-2] JrGR__yIRa-RShYPN8wmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06f42d7e +16:40:52.788 [XNIO-1 task-2] JrGR__yIRa-RShYPN8wmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.788 [XNIO-1 task-2] JrGR__yIRa-RShYPN8wmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.788 [XNIO-1 task-2] JrGR__yIRa-RShYPN8wmQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/06f42d7e +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.791 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG com.networknt.schema.TypeValidator debug - validate( "65823ab5-3145-4954-ba4e-d219996f", {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:52.792 [XNIO-1 task-2] Ovc71Lm6S2iY8mmJj3CG0w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2371ad1c","serviceName":"65823ab5-3145-4954-ba4e-d219996f","serviceDesc":"667cbfab-1d9e-4741-904a-04207bcb951f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.797 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.797 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.797 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.797 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.797 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.798 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.798 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:52.798 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c9ce1da6-ce5c-48f0-b013-d1483f0e", {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:52.798 [XNIO-1 task-2] hm9ZbnmURM-pDwcCTNBZfQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b3d68239","serviceName":"c9ce1da6-ce5c-48f0-b013-d1483f0e","serviceDesc":"14ad165e-cf29-4f6a-b308-750eb857d891","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.803 [XNIO-1 task-2] sX0onZ0XSW-Tou4O6AsoHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.803 [XNIO-1 task-2] sX0onZ0XSW-Tou4O6AsoHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.804 [XNIO-1 task-2] sX0onZ0XSW-Tou4O6AsoHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.804 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6df715fc +16:40:52.805 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6df715fc +16:40:52.810 [XNIO-1 task-2] 4bUeG7CfSdSiwYHkT1dmRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.810 [XNIO-1 task-2] 4bUeG7CfSdSiwYHkT1dmRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.811 [XNIO-1 task-2] 4bUeG7CfSdSiwYHkT1dmRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.818 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.818 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.818 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.818 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.818 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:52.819 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "4a685e08-c214-47b8-8c5b-eff637604b47", {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:52.819 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "4b72af5b", {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:52.819 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:52.819 [XNIO-1 task-2] vGssm9hJQyy9JplvUZu5Jw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:52.829 [XNIO-1 task-2] 3g_QLyznTEixd9NQHRudpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.829 [XNIO-1 task-2] 3g_QLyznTEixd9NQHRudpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.829 [XNIO-1 task-2] 3g_QLyznTEixd9NQHRudpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.830 [XNIO-1 task-2] 3g_QLyznTEixd9NQHRudpg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.858 [XNIO-1 task-2] MEuMKt29QCysRLVEC1mxnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.858 [XNIO-1 task-2] MEuMKt29QCysRLVEC1mxnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.858 [XNIO-1 task-2] MEuMKt29QCysRLVEC1mxnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.858 [XNIO-1 task-2] MEuMKt29QCysRLVEC1mxnA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.864 [XNIO-1 task-2] 87Tc0ftSTvSeEsCpWmNPtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.864 [XNIO-1 task-2] 87Tc0ftSTvSeEsCpWmNPtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.864 [XNIO-1 task-2] 87Tc0ftSTvSeEsCpWmNPtQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.864 [XNIO-1 task-2] 87Tc0ftSTvSeEsCpWmNPtQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.875 [XNIO-1 task-2] VJUp5up8SNCvk57VUrXqTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/efe100c5 +16:40:52.875 [XNIO-1 task-2] VJUp5up8SNCvk57VUrXqTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:52.875 [XNIO-1 task-2] VJUp5up8SNCvk57VUrXqTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:52.875 [XNIO-1 task-2] VJUp5up8SNCvk57VUrXqTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/efe100c5 +16:40:52.904 [XNIO-1 task-2] HyGbTyE6T2uNZJ7aAFPb5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.904 [XNIO-1 task-2] HyGbTyE6T2uNZJ7aAFPb5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.904 [XNIO-1 task-2] HyGbTyE6T2uNZJ7aAFPb5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.904 [XNIO-1 task-2] HyGbTyE6T2uNZJ7aAFPb5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.957 [XNIO-1 task-2] irD5XmzSRg-a2GY7DAeACg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:52.957 [XNIO-1 task-2] irD5XmzSRg-a2GY7DAeACg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:52.957 [XNIO-1 task-2] irD5XmzSRg-a2GY7DAeACg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.073 [XNIO-1 task-2] tG-YNaV-T_6Qm2u8wX12QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe100c5, base path is set to: null +16:40:53.073 [XNIO-1 task-2] tG-YNaV-T_6Qm2u8wX12QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.073 [XNIO-1 task-2] tG-YNaV-T_6Qm2u8wX12QQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.073 [XNIO-1 task-2] tG-YNaV-T_6Qm2u8wX12QQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/efe100c5, base path is set to: null +16:40:53.073 [XNIO-1 task-2] tG-YNaV-T_6Qm2u8wX12QQ DEBUG com.networknt.schema.TypeValidator debug - validate( "efe100c5", "efe100c5", serviceId) +16:40:53.081 [XNIO-1 task-2] EADOadFFSW-XHfQYguFh9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.081 [XNIO-1 task-2] EADOadFFSW-XHfQYguFh9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.081 [XNIO-1 task-2] EADOadFFSW-XHfQYguFh9A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.089 [XNIO-1 task-2] kZuP_muFSx6RdlKEyFk4GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.089 [XNIO-1 task-2] kZuP_muFSx6RdlKEyFk4GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.090 [XNIO-1 task-2] kZuP_muFSx6RdlKEyFk4GQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.097 [XNIO-1 task-2] wS-7dMIuTgmdyaw9jE8BKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/95cd7700 +16:40:53.097 [XNIO-1 task-2] wS-7dMIuTgmdyaw9jE8BKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.097 [XNIO-1 task-2] wS-7dMIuTgmdyaw9jE8BKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.098 [XNIO-1 task-2] wS-7dMIuTgmdyaw9jE8BKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/95cd7700 +16:40:53.111 [XNIO-1 task-2] yGPxNmrwTvGTl0UlX9-3lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/560fcf6b, base path is set to: null +16:40:53.111 [XNIO-1 task-2] yGPxNmrwTvGTl0UlX9-3lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.111 [XNIO-1 task-2] yGPxNmrwTvGTl0UlX9-3lw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.111 [XNIO-1 task-2] yGPxNmrwTvGTl0UlX9-3lw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/560fcf6b, base path is set to: null +16:40:53.112 [XNIO-1 task-2] yGPxNmrwTvGTl0UlX9-3lw DEBUG com.networknt.schema.TypeValidator debug - validate( "560fcf6b", "560fcf6b", serviceId) +16:40:53.120 [XNIO-1 task-2] CKi4t3B1S72rOcxS1Vo_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7d42185e +16:40:53.120 [XNIO-1 task-2] CKi4t3B1S72rOcxS1Vo_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.120 [XNIO-1 task-2] CKi4t3B1S72rOcxS1Vo_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.120 [XNIO-1 task-2] CKi4t3B1S72rOcxS1Vo_Xg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7d42185e +16:40:53.123 [XNIO-1 task-2] Rs6rmYMrQgGVU04csqk8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.124 [XNIO-1 task-2] Rs6rmYMrQgGVU04csqk8kw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.124 [XNIO-1 task-2] Rs6rmYMrQgGVU04csqk8kw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.124 [XNIO-1 task-2] Rs6rmYMrQgGVU04csqk8kw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.129 [XNIO-1 task-2] d6Jhhkp1TiWh50oS2TF-7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.129 [XNIO-1 task-2] d6Jhhkp1TiWh50oS2TF-7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.129 [XNIO-1 task-2] d6Jhhkp1TiWh50oS2TF-7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.130 [XNIO-1 task-2] d6Jhhkp1TiWh50oS2TF-7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.136 [XNIO-1 task-2] aH2UX-gqT0iW65amlpHXuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.136 [XNIO-1 task-2] aH2UX-gqT0iW65amlpHXuw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.136 [XNIO-1 task-2] aH2UX-gqT0iW65amlpHXuw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.136 [XNIO-1 task-2] aH2UX-gqT0iW65amlpHXuw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.143 [XNIO-1 task-2] Gf5NsS-RShymI_YuDbBjwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.143 [XNIO-1 task-2] Gf5NsS-RShymI_YuDbBjwg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.143 [XNIO-1 task-2] Gf5NsS-RShymI_YuDbBjwg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.143 [XNIO-1 task-2] Gf5NsS-RShymI_YuDbBjwg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.148 [XNIO-1 task-2] Kcz0GX4cQqCpULk75Txtqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/785aec0d, base path is set to: null +16:40:53.148 [XNIO-1 task-2] Kcz0GX4cQqCpULk75Txtqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.148 [XNIO-1 task-2] Kcz0GX4cQqCpULk75Txtqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.148 [XNIO-1 task-2] Kcz0GX4cQqCpULk75Txtqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/785aec0d, base path is set to: null +16:40:53.149 [XNIO-1 task-2] Kcz0GX4cQqCpULk75Txtqg DEBUG com.networknt.schema.TypeValidator debug - validate( "785aec0d", "785aec0d", serviceId) +16:40:53.153 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.153 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.153 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.154 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.154 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.154 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "74d261af-7ddd-4a3f-85cb-e60936faf046", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.154 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "6d24415a", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.154 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.154 [XNIO-1 task-2] XkvF8FnSS-O7xfDgJJeuyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG com.networknt.schema.TypeValidator debug - validate( "32116191-ae13-46ef-8e86-e3c559f35486", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG com.networknt.schema.TypeValidator debug - validate( "fcc48c49", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.160 [XNIO-1 task-2] 1uhrWVYiTmajKjDU7sn2hw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.166 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG com.networknt.schema.TypeValidator debug - validate( "007e4eea-112a-4921-bc9e-1e82b7bf8e65", {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG com.networknt.schema.TypeValidator debug - validate( "7d42185e", {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.167 [XNIO-1 task-2] rLv51zQESVyUJiyhbdHwig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7d42185e","serviceName":"0c7092cf-14a1-437d-94a4-829ca362","serviceDesc":"007e4eea-112a-4921-bc9e-1e82b7bf8e65","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.172 [XNIO-1 task-2] VIo3HTtQQM23WqjPdk5qlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/785aec0d +16:40:53.172 [XNIO-1 task-2] VIo3HTtQQM23WqjPdk5qlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.172 [XNIO-1 task-2] VIo3HTtQQM23WqjPdk5qlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.172 [XNIO-1 task-2] VIo3HTtQQM23WqjPdk5qlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/785aec0d +16:40:53.175 [XNIO-1 task-2] 56PPzFsISoGLIya5T3zLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.175 [XNIO-1 task-2] 56PPzFsISoGLIya5T3zLjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.175 [XNIO-1 task-2] 56PPzFsISoGLIya5T3zLjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.175 [XNIO-1 task-2] 56PPzFsISoGLIya5T3zLjA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.183 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.183 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.183 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.183 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.183 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.183 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.183 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:53.184 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG com.networknt.schema.TypeValidator debug - validate( "943f4658-9398-4cc3-aeec-b25224a2", {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:53.184 [XNIO-1 task-2] NhsR6rSgQqaCGOiBHkluTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"785aec0d","serviceName":"943f4658-9398-4cc3-aeec-b25224a2","serviceDesc":"8c305dcf-57c7-4d00-bde5-70ab3549a4aa","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.189 [XNIO-1 task-2] 8DCvCEnySHCBH1obXIgkgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.189 [XNIO-1 task-2] 8DCvCEnySHCBH1obXIgkgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.189 [XNIO-1 task-2] 8DCvCEnySHCBH1obXIgkgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.190 [XNIO-1 task-2] 8DCvCEnySHCBH1obXIgkgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.192 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:16e8a911-b5bd-476e-9116-2ff0c9e97093 +16:40:53.195 [XNIO-1 task-2] ADWUzSyxTw2fz6sa7JcJSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/785aec0d, base path is set to: null +16:40:53.195 [XNIO-1 task-2] ADWUzSyxTw2fz6sa7JcJSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.195 [XNIO-1 task-2] ADWUzSyxTw2fz6sa7JcJSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.195 [XNIO-1 task-2] ADWUzSyxTw2fz6sa7JcJSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/785aec0d, base path is set to: null +16:40:53.195 [XNIO-1 task-2] ADWUzSyxTw2fz6sa7JcJSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "785aec0d", "785aec0d", serviceId) +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG com.networknt.schema.TypeValidator debug - validate( "462c8728-c164-4c07-85ed-3cd473c7f3fc", {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG com.networknt.schema.TypeValidator debug - validate( "9ff90762", {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.201 [XNIO-1 task-2] 72dzbQcmTkuWvyMrmeRfCA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"9ff90762","serviceName":"42273b81-2e86-4fa4-9b12-469c8405","serviceDesc":"462c8728-c164-4c07-85ed-3cd473c7f3fc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.208 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.208 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.208 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.209 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.209 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.209 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG com.networknt.schema.TypeValidator debug - validate( "37fa592a-07b7-4df7-8c6f-81587a0cbe84", {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.209 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG com.networknt.schema.TypeValidator debug - validate( "2fd127fb", {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.209 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.209 [XNIO-1 task-2] CNdoJoU1TriW_a4mtlF_vg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"2fd127fb","serviceName":"92753974-65b5-4075-9d9f-fed34714","serviceDesc":"37fa592a-07b7-4df7-8c6f-81587a0cbe84","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.220 [XNIO-1 task-2] gYYnsyUIS3eskuyB0Q-PEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3d68239 +16:40:53.220 [XNIO-1 task-2] gYYnsyUIS3eskuyB0Q-PEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.220 [XNIO-1 task-2] gYYnsyUIS3eskuyB0Q-PEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.220 [XNIO-1 task-2] gYYnsyUIS3eskuyB0Q-PEg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b3d68239 +16:40:53.222 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f3aff8e2-4cd3-40e9-849a-1cade735c0b0 +16:40:53.223 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f3aff8e2-4cd3-40e9-849a-1cade735c0b0 +16:40:53.227 [XNIO-1 task-2] Guqyy-BRTi6TPQSfGTy1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/60df0f00 +16:40:53.227 [XNIO-1 task-2] Guqyy-BRTi6TPQSfGTy1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.227 [XNIO-1 task-2] Guqyy-BRTi6TPQSfGTy1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.228 [XNIO-1 task-2] Guqyy-BRTi6TPQSfGTy1EQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/60df0f00 +16:40:53.238 [XNIO-1 task-2] 4Vetc9FlSYyExebO8GQi9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e98b35a7, base path is set to: null +16:40:53.238 [XNIO-1 task-2] 4Vetc9FlSYyExebO8GQi9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.238 [XNIO-1 task-2] 4Vetc9FlSYyExebO8GQi9w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.238 [XNIO-1 task-2] 4Vetc9FlSYyExebO8GQi9w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e98b35a7, base path is set to: null +16:40:53.238 [XNIO-1 task-2] 4Vetc9FlSYyExebO8GQi9w DEBUG com.networknt.schema.TypeValidator debug - validate( "e98b35a7", "e98b35a7", serviceId) +16:40:53.245 [XNIO-1 task-2] ydLjBes3QsSsblldGFBA1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.245 [XNIO-1 task-2] ydLjBes3QsSsblldGFBA1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.245 [XNIO-1 task-2] ydLjBes3QsSsblldGFBA1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.245 [XNIO-1 task-2] ydLjBes3QsSsblldGFBA1A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.251 [XNIO-1 task-2] P-P2KJapRUCy-n5bZeCogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.251 [XNIO-1 task-2] P-P2KJapRUCy-n5bZeCogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.251 [XNIO-1 task-2] P-P2KJapRUCy-n5bZeCogg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.252 [XNIO-1 task-2] P-P2KJapRUCy-n5bZeCogg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.256 [XNIO-1 task-2] mJsBuaEARpOpN8-dd_uN9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c117e4f3 +16:40:53.256 [XNIO-1 task-2] mJsBuaEARpOpN8-dd_uN9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.256 [XNIO-1 task-2] mJsBuaEARpOpN8-dd_uN9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.256 [XNIO-1 task-2] mJsBuaEARpOpN8-dd_uN9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c117e4f3 +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG com.networknt.schema.TypeValidator debug - validate( "1966ba18-2edc-4016-8887-8ce46089", {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:53.259 [XNIO-1 task-2] htDmHOWpSWybBKFs3Mmekw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c117e4f3","serviceName":"1966ba18-2edc-4016-8887-8ce46089","serviceDesc":"b9a01a19-af61-4eff-89b1-ca745eed39ae","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.266 [XNIO-1 task-2] ZfBDr30uQtGu9p9FrLDNKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.266 [XNIO-1 task-2] ZfBDr30uQtGu9p9FrLDNKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.266 [XNIO-1 task-2] ZfBDr30uQtGu9p9FrLDNKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.266 [XNIO-1 task-2] ZfBDr30uQtGu9p9FrLDNKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.271 [XNIO-1 task-2] JbzM4MpIR0e89-PYoDi7PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.271 [XNIO-1 task-2] JbzM4MpIR0e89-PYoDi7PQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.271 [XNIO-1 task-2] JbzM4MpIR0e89-PYoDi7PQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.277 [XNIO-1 task-2] byA8tiHZSmS_rNqJYH1ybg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.277 [XNIO-1 task-2] byA8tiHZSmS_rNqJYH1ybg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.277 [XNIO-1 task-2] byA8tiHZSmS_rNqJYH1ybg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.283 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.283 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.283 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.284 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.284 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.284 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.285 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:53.285 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG com.networknt.schema.TypeValidator debug - validate( "057e3d42-0797-4b6e-a2ce-eff0aeda", {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:53.285 [XNIO-1 task-2] oR_ja2QqTsiUO1luDsE-sA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"4b72af5b","serviceName":"057e3d42-0797-4b6e-a2ce-eff0aeda","serviceDesc":"4a685e08-c214-47b8-8c5b-eff637604b47","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.295 [XNIO-1 task-2] Yhaf3q3jTnycdiD_qc5YZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.295 [XNIO-1 task-2] Yhaf3q3jTnycdiD_qc5YZg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.295 [XNIO-1 task-2] Yhaf3q3jTnycdiD_qc5YZg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.296 [XNIO-1 task-2] Yhaf3q3jTnycdiD_qc5YZg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:53.305 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f718b7ab-2356-4f08-90c7-4acd100d", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:53.306 [XNIO-1 task-2] C8g6IPYrQtCK3ugtOXbxaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.312 [XNIO-1 task-2] o1qn9kreSIecIM_JWoJ7jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b1fe2b, base path is set to: null +16:40:53.312 [XNIO-1 task-2] o1qn9kreSIecIM_JWoJ7jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.312 [XNIO-1 task-2] o1qn9kreSIecIM_JWoJ7jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.312 [XNIO-1 task-2] o1qn9kreSIecIM_JWoJ7jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07b1fe2b, base path is set to: null +16:40:53.312 [XNIO-1 task-2] o1qn9kreSIecIM_JWoJ7jg DEBUG com.networknt.schema.TypeValidator debug - validate( "07b1fe2b", "07b1fe2b", serviceId) +16:40:53.321 [XNIO-1 task-2] N57K4ZlMQGKwTi0rvM5aEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.321 [XNIO-1 task-2] N57K4ZlMQGKwTi0rvM5aEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.321 [XNIO-1 task-2] N57K4ZlMQGKwTi0rvM5aEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.329 [XNIO-1 task-2] H6t1FdOJRyKlVad6tvBK8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6df715fc +16:40:53.329 [XNIO-1 task-2] H6t1FdOJRyKlVad6tvBK8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.329 [XNIO-1 task-2] H6t1FdOJRyKlVad6tvBK8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.330 [XNIO-1 task-2] H6t1FdOJRyKlVad6tvBK8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6df715fc +16:40:53.333 [XNIO-1 task-2] zgWmZRPbTM6BPjqQT5lyQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6df715fc, base path is set to: null +16:40:53.333 [XNIO-1 task-2] zgWmZRPbTM6BPjqQT5lyQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.333 [XNIO-1 task-2] zgWmZRPbTM6BPjqQT5lyQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.333 [XNIO-1 task-2] zgWmZRPbTM6BPjqQT5lyQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6df715fc, base path is set to: null +16:40:53.333 [XNIO-1 task-2] zgWmZRPbTM6BPjqQT5lyQg DEBUG com.networknt.schema.TypeValidator debug - validate( "6df715fc", "6df715fc", serviceId) +16:40:53.334 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:6df715fc +16:40:53.342 [XNIO-1 task-2] Hhl_jcalSaa2nm1_TbU3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c117e4f3 +16:40:53.342 [XNIO-1 task-2] Hhl_jcalSaa2nm1_TbU3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.342 [XNIO-1 task-2] Hhl_jcalSaa2nm1_TbU3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.343 [XNIO-1 task-2] Hhl_jcalSaa2nm1_TbU3zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c117e4f3 +16:40:53.345 [XNIO-1 task-2] Ka2MsVs1RMCljWE4GJHodg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c117e4f3, base path is set to: null +16:40:53.346 [XNIO-1 task-2] Ka2MsVs1RMCljWE4GJHodg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.346 [XNIO-1 task-2] Ka2MsVs1RMCljWE4GJHodg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.346 [XNIO-1 task-2] Ka2MsVs1RMCljWE4GJHodg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c117e4f3, base path is set to: null +16:40:53.346 [XNIO-1 task-2] Ka2MsVs1RMCljWE4GJHodg DEBUG com.networknt.schema.TypeValidator debug - validate( "c117e4f3", "c117e4f3", serviceId) +16:40:53.355 [XNIO-1 task-2] _Cw4a1jLT8Oczoc7V3nX7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4b72af5b +16:40:53.355 [XNIO-1 task-2] _Cw4a1jLT8Oczoc7V3nX7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.355 [XNIO-1 task-2] _Cw4a1jLT8Oczoc7V3nX7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.355 [XNIO-1 task-2] _Cw4a1jLT8Oczoc7V3nX7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/4b72af5b +16:40:53.357 [XNIO-1 task-2] VgPrvJYQTHKtnPijhAZoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b72af5b, base path is set to: null +16:40:53.358 [XNIO-1 task-2] VgPrvJYQTHKtnPijhAZoqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.358 [XNIO-1 task-2] VgPrvJYQTHKtnPijhAZoqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.358 [XNIO-1 task-2] VgPrvJYQTHKtnPijhAZoqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4b72af5b, base path is set to: null +16:40:53.358 [XNIO-1 task-2] VgPrvJYQTHKtnPijhAZoqA DEBUG com.networknt.schema.TypeValidator debug - validate( "4b72af5b", "4b72af5b", serviceId) +16:40:53.366 [XNIO-1 task-2] _K48p4NNSWuwjof9q08UjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.366 [XNIO-1 task-2] _K48p4NNSWuwjof9q08UjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.366 [XNIO-1 task-2] _K48p4NNSWuwjof9q08UjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.366 [XNIO-1 task-2] _K48p4NNSWuwjof9q08UjQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.374 [XNIO-1 task-2] FAlD-LjcR2aeoeJ6GcJfWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.374 [XNIO-1 task-2] FAlD-LjcR2aeoeJ6GcJfWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.375 [XNIO-1 task-2] FAlD-LjcR2aeoeJ6GcJfWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.377 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:53.392 [XNIO-1 task-2] 10SdaJQURXKPu4CnaPF2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.392 [XNIO-1 task-2] 10SdaJQURXKPu4CnaPF2xA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.392 [XNIO-1 task-2] 10SdaJQURXKPu4CnaPF2xA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.392 [XNIO-1 task-2] 10SdaJQURXKPu4CnaPF2xA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.403 [XNIO-1 task-2] QAQ49RaKRPOlC1onX26Iug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2371ad1c, base path is set to: null +16:40:53.403 [XNIO-1 task-2] QAQ49RaKRPOlC1onX26Iug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.403 [XNIO-1 task-2] QAQ49RaKRPOlC1onX26Iug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.403 [XNIO-1 task-2] QAQ49RaKRPOlC1onX26Iug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2371ad1c, base path is set to: null +16:40:53.403 [XNIO-1 task-2] QAQ49RaKRPOlC1onX26Iug DEBUG com.networknt.schema.TypeValidator debug - validate( "2371ad1c", "2371ad1c", serviceId) +16:40:53.409 [XNIO-1 task-2] iV4CxkgDRRKvF--l6rQEpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2371ad1c +16:40:53.409 [XNIO-1 task-2] iV4CxkgDRRKvF--l6rQEpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.409 [XNIO-1 task-2] iV4CxkgDRRKvF--l6rQEpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.409 [XNIO-1 task-2] iV4CxkgDRRKvF--l6rQEpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2371ad1c +16:40:53.415 [XNIO-1 task-2] Q6KB-HzLTSGUywTHLFt7VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.416 [XNIO-1 task-2] Q6KB-HzLTSGUywTHLFt7VA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.416 [XNIO-1 task-2] Q6KB-HzLTSGUywTHLFt7VA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.423 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:11a82e42-cd2d-4782-a8c9-bc397cc54884 +16:40:53.425 [XNIO-1 task-2] hxFdxlWBS1-SnFA2ftBQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.425 [XNIO-1 task-2] hxFdxlWBS1-SnFA2ftBQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.426 [XNIO-1 task-2] hxFdxlWBS1-SnFA2ftBQMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.426 [XNIO-1 task-2] hxFdxlWBS1-SnFA2ftBQMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.434 [XNIO-1 task-2] aMfhPEpFR1y29rVBrbR-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.434 [XNIO-1 task-2] aMfhPEpFR1y29rVBrbR-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.435 [XNIO-1 task-2] aMfhPEpFR1y29rVBrbR-rA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.447 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "31ffcf27-e7eb-4931-b9d4-2a34c5df9e27", {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0db9d216", {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.448 [XNIO-1 task-2] s83hIAaYSfSCHXAb2HNVUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0db9d216","serviceName":"71c24507-0fbf-4287-97ce-6875a4a8","serviceDesc":"31ffcf27-e7eb-4931-b9d4-2a34c5df9e27","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.455 [XNIO-1 task-2] oNj9Y6VMSKW3tsg2HKKBlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.455 [XNIO-1 task-2] oNj9Y6VMSKW3tsg2HKKBlg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.455 [XNIO-1 task-2] oNj9Y6VMSKW3tsg2HKKBlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.455 [XNIO-1 task-2] oNj9Y6VMSKW3tsg2HKKBlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.456 [XNIO-1 task-2] oNj9Y6VMSKW3tsg2HKKBlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.465 [XNIO-1 task-2] Ryv4tXcsQ82HEj3Q-MlUBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dcd3c99e, base path is set to: null +16:40:53.465 [XNIO-1 task-2] Ryv4tXcsQ82HEj3Q-MlUBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.466 [XNIO-1 task-2] Ryv4tXcsQ82HEj3Q-MlUBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.466 [XNIO-1 task-2] Ryv4tXcsQ82HEj3Q-MlUBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/dcd3c99e, base path is set to: null +16:40:53.466 [XNIO-1 task-2] Ryv4tXcsQ82HEj3Q-MlUBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "dcd3c99e", "dcd3c99e", serviceId) +16:40:53.468 [XNIO-1 task-2] CyDwgz26TnGG1a_Xf3oaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dcd3c99e +16:40:53.468 [XNIO-1 task-2] CyDwgz26TnGG1a_Xf3oaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.468 [XNIO-1 task-2] CyDwgz26TnGG1a_Xf3oaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.468 [XNIO-1 task-2] CyDwgz26TnGG1a_Xf3oaRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dcd3c99e +16:40:53.470 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.470 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.471 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.471 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.471 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.471 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.471 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:53.471 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG com.networknt.schema.TypeValidator debug - validate( "f54e86a7-e9ea-45c7-b6e7-4776059c", {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:53.471 [XNIO-1 task-2] uX2uvfmKRc2xm2X_0l_Mdw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"dcd3c99e","serviceName":"f54e86a7-e9ea-45c7-b6e7-4776059c","serviceDesc":"92aa3ae6-6a50-4080-9b1d-c09927ae9914","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.481 [XNIO-1 task-2] wtOwsIO5T4-EsXo1wj3yTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/986d41b0, base path is set to: null +16:40:53.481 [XNIO-1 task-2] wtOwsIO5T4-EsXo1wj3yTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.481 [XNIO-1 task-2] wtOwsIO5T4-EsXo1wj3yTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.481 [XNIO-1 task-2] wtOwsIO5T4-EsXo1wj3yTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/986d41b0, base path is set to: null +16:40:53.482 [XNIO-1 task-2] wtOwsIO5T4-EsXo1wj3yTg DEBUG com.networknt.schema.TypeValidator debug - validate( "986d41b0", "986d41b0", serviceId) +16:40:53.484 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.484 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.485 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.485 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.485 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.485 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG com.networknt.schema.TypeValidator debug - validate( "52acb3a2-8515-4b8e-b82d-041dfc8fb692", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.485 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG com.networknt.schema.TypeValidator debug - validate( "986d41b0", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.485 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.485 [XNIO-1 task-2] oEqTtA9VQBq7heC7ILgNgg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.493 [XNIO-1 task-2] u2BjEJXPSEmGTLm8s7a_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/96d7fbab +16:40:53.494 [XNIO-1 task-2] u2BjEJXPSEmGTLm8s7a_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.494 [XNIO-1 task-2] u2BjEJXPSEmGTLm8s7a_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.494 [XNIO-1 task-2] u2BjEJXPSEmGTLm8s7a_Zg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/96d7fbab +16:40:53.499 [XNIO-1 task-2] J0IES_UwQEyLVyifihBqwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.500 [XNIO-1 task-2] J0IES_UwQEyLVyifihBqwA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.500 [XNIO-1 task-2] J0IES_UwQEyLVyifihBqwA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.500 [XNIO-1 task-2] J0IES_UwQEyLVyifihBqwA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.507 [XNIO-1 task-2] 905sRby3TH25TcYkKtWDrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/96d7fbab, base path is set to: null +16:40:53.508 [XNIO-1 task-2] 905sRby3TH25TcYkKtWDrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.508 [XNIO-1 task-2] 905sRby3TH25TcYkKtWDrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.508 [XNIO-1 task-2] 905sRby3TH25TcYkKtWDrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/96d7fbab, base path is set to: null +16:40:53.508 [XNIO-1 task-2] 905sRby3TH25TcYkKtWDrg DEBUG com.networknt.schema.TypeValidator debug - validate( "96d7fbab", "96d7fbab", serviceId) +16:40:53.520 [XNIO-1 task-2] AcK7_Sq7RWOVKMTBPRkX9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29ed6daa +16:40:53.520 [XNIO-1 task-2] AcK7_Sq7RWOVKMTBPRkX9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.520 [XNIO-1 task-2] AcK7_Sq7RWOVKMTBPRkX9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.520 [XNIO-1 task-2] AcK7_Sq7RWOVKMTBPRkX9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/29ed6daa +16:40:53.529 [XNIO-1 task-2] pdeplkUoQ1-Ds-6m1avPCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.529 [XNIO-1 task-2] pdeplkUoQ1-Ds-6m1avPCw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.530 [XNIO-1 task-2] pdeplkUoQ1-Ds-6m1avPCw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.536 [XNIO-1 task-2] _e8xYdMKR-atb4xw2IkLrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.536 [XNIO-1 task-2] _e8xYdMKR-atb4xw2IkLrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.537 [XNIO-1 task-2] _e8xYdMKR-atb4xw2IkLrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.537 [XNIO-1 task-2] _e8xYdMKR-atb4xw2IkLrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.548 [XNIO-1 task-2] K2m-Xl9bQo2Ym1usarxX0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.548 [XNIO-1 task-2] K2m-Xl9bQo2Ym1usarxX0Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.548 [XNIO-1 task-2] K2m-Xl9bQo2Ym1usarxX0Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.548 [XNIO-1 task-2] K2m-Xl9bQo2Ym1usarxX0Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.555 [XNIO-1 task-2] -ACC60KSSUOoGRTNbAv-3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2fd127fb, base path is set to: null +16:40:53.556 [XNIO-1 task-2] -ACC60KSSUOoGRTNbAv-3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.556 [XNIO-1 task-2] -ACC60KSSUOoGRTNbAv-3A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.556 [XNIO-1 task-2] -ACC60KSSUOoGRTNbAv-3A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2fd127fb, base path is set to: null +16:40:53.556 [XNIO-1 task-2] -ACC60KSSUOoGRTNbAv-3A DEBUG com.networknt.schema.TypeValidator debug - validate( "2fd127fb", "2fd127fb", serviceId) +16:40:53.563 [XNIO-1 task-2] m0g4-BFIRWmmunoSqiqd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.563 [XNIO-1 task-2] m0g4-BFIRWmmunoSqiqd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.563 [XNIO-1 task-2] m0g4-BFIRWmmunoSqiqd3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.564 [XNIO-1 task-2] m0g4-BFIRWmmunoSqiqd3g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.571 [XNIO-1 task-2] Y0lF_EXVS6O01GSoVAy2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ff90762 +16:40:53.571 [XNIO-1 task-2] Y0lF_EXVS6O01GSoVAy2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.571 [XNIO-1 task-2] Y0lF_EXVS6O01GSoVAy2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.571 [XNIO-1 task-2] Y0lF_EXVS6O01GSoVAy2Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ff90762 +16:40:53.592 [XNIO-1 task-2] OoNUPCS8TzOzJt18qIl22g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06f42d7e, base path is set to: null +16:40:53.593 [XNIO-1 task-2] OoNUPCS8TzOzJt18qIl22g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.593 [XNIO-1 task-2] OoNUPCS8TzOzJt18qIl22g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.593 [XNIO-1 task-2] OoNUPCS8TzOzJt18qIl22g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/06f42d7e, base path is set to: null +16:40:53.593 [XNIO-1 task-2] OoNUPCS8TzOzJt18qIl22g DEBUG com.networknt.schema.TypeValidator debug - validate( "06f42d7e", "06f42d7e", serviceId) +16:40:53.599 [XNIO-1 task-2] C6cROcbfSbWm8WY2MeZ53w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ff90762 +16:40:53.599 [XNIO-1 task-2] C6cROcbfSbWm8WY2MeZ53w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.599 [XNIO-1 task-2] C6cROcbfSbWm8WY2MeZ53w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.599 [XNIO-1 task-2] C6cROcbfSbWm8WY2MeZ53w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9ff90762 +16:40:53.611 [XNIO-1 task-2] bPxHefDlRIKhj5k6oPZo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.612 [XNIO-1 task-2] bPxHefDlRIKhj5k6oPZo4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.612 [XNIO-1 task-2] bPxHefDlRIKhj5k6oPZo4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.612 [XNIO-1 task-2] bPxHefDlRIKhj5k6oPZo4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.619 [XNIO-1 task-2] SlYmF0BvRYOhSQdD-QJoow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fcc48c49, base path is set to: null +16:40:53.619 [XNIO-1 task-2] SlYmF0BvRYOhSQdD-QJoow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.619 [XNIO-1 task-2] SlYmF0BvRYOhSQdD-QJoow DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.619 [XNIO-1 task-2] SlYmF0BvRYOhSQdD-QJoow DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fcc48c49, base path is set to: null +16:40:53.619 [XNIO-1 task-2] SlYmF0BvRYOhSQdD-QJoow DEBUG com.networknt.schema.TypeValidator debug - validate( "fcc48c49", "fcc48c49", serviceId) +16:40:53.621 [XNIO-1 task-2] ziw9Tu1WQWaS24_Du6iePA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.622 [XNIO-1 task-2] ziw9Tu1WQWaS24_Du6iePA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.622 [XNIO-1 task-2] ziw9Tu1WQWaS24_Du6iePA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.622 [XNIO-1 task-2] ziw9Tu1WQWaS24_Du6iePA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.633 [XNIO-1 task-2] elFpfsQHSziV1NI0DxQy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23f317cc +16:40:53.633 [XNIO-1 task-2] elFpfsQHSziV1NI0DxQy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.633 [XNIO-1 task-2] elFpfsQHSziV1NI0DxQy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.633 [XNIO-1 task-2] elFpfsQHSziV1NI0DxQy-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/23f317cc +16:40:53.640 [XNIO-1 task-2] E0PErRc0SpaS-XTl9OzWFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.640 [XNIO-1 task-2] E0PErRc0SpaS-XTl9OzWFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.640 [XNIO-1 task-2] E0PErRc0SpaS-XTl9OzWFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.641 [XNIO-1 task-2] E0PErRc0SpaS-XTl9OzWFw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.645 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9cd49bd1-40af-4077-8e62-0f0d00839d6b +16:40:53.645 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore load - Load:9cd49bd1-40af-4077-8e62-0f0d00839d6b +16:40:53.655 [XNIO-1 task-2] Q0omEEvrSXKeSol0Iw3k3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcc48c49 +16:40:53.655 [XNIO-1 task-2] Q0omEEvrSXKeSol0Iw3k3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.655 [XNIO-1 task-2] Q0omEEvrSXKeSol0Iw3k3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.655 [XNIO-1 task-2] Q0omEEvrSXKeSol0Iw3k3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcc48c49 +16:40:53.658 [XNIO-1 task-2] jRDGxMxOQ-OEZKY5xA-jGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fcc48c49, base path is set to: null +16:40:53.658 [XNIO-1 task-2] jRDGxMxOQ-OEZKY5xA-jGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.658 [XNIO-1 task-2] jRDGxMxOQ-OEZKY5xA-jGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.658 [XNIO-1 task-2] jRDGxMxOQ-OEZKY5xA-jGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fcc48c49, base path is set to: null +16:40:53.658 [XNIO-1 task-2] jRDGxMxOQ-OEZKY5xA-jGw DEBUG com.networknt.schema.TypeValidator debug - validate( "fcc48c49", "fcc48c49", serviceId) +16:40:53.663 [XNIO-1 task-2] Pf0VA-K6S6aVFIur0juG0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcc48c49 +16:40:53.663 [XNIO-1 task-2] Pf0VA-K6S6aVFIur0juG0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.663 [XNIO-1 task-2] Pf0VA-K6S6aVFIur0juG0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.663 [XNIO-1 task-2] Pf0VA-K6S6aVFIur0juG0g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcc48c49 +16:40:53.665 [XNIO-1 task-2] Iw9Bw8SZTk69PC86UGwIsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.666 [XNIO-1 task-2] Iw9Bw8SZTk69PC86UGwIsA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.666 [XNIO-1 task-2] Iw9Bw8SZTk69PC86UGwIsA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.666 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:07d546f6 +16:40:53.666 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:07d546f6 +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG com.networknt.schema.TypeValidator debug - validate( "32116191-ae13-46ef-8e86-e3c559f35486", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG com.networknt.schema.TypeValidator debug - validate( "fcc48c49", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.674 [XNIO-1 task-2] do39MdBdTimWSPQvnecY1A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"fcc48c49","serviceName":"6884f456-1413-4690-8005-22d5cb8c","serviceDesc":"32116191-ae13-46ef-8e86-e3c559f35486","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.681 [XNIO-1 task-2] PBb-oeqASeW8FgdPaGDtoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcc48c49 +16:40:53.681 [XNIO-1 task-2] PBb-oeqASeW8FgdPaGDtoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.681 [XNIO-1 task-2] PBb-oeqASeW8FgdPaGDtoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.681 [XNIO-1 task-2] PBb-oeqASeW8FgdPaGDtoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fcc48c49 +16:40:53.687 [XNIO-1 task-2] OPGUZOCdSZafnaeBz8tQxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7d42185e, base path is set to: null +16:40:53.687 [XNIO-1 task-2] OPGUZOCdSZafnaeBz8tQxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.687 [XNIO-1 task-2] OPGUZOCdSZafnaeBz8tQxQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.688 [XNIO-1 task-2] OPGUZOCdSZafnaeBz8tQxQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7d42185e, base path is set to: null +16:40:53.688 [XNIO-1 task-2] OPGUZOCdSZafnaeBz8tQxQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7d42185e", "7d42185e", serviceId) +16:40:53.695 [XNIO-1 task-2] 6DLoHI3gRB2AXTw2mw4sNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0db9d216 +16:40:53.695 [XNIO-1 task-2] 6DLoHI3gRB2AXTw2mw4sNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.695 [XNIO-1 task-2] 6DLoHI3gRB2AXTw2mw4sNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.695 [XNIO-1 task-2] 6DLoHI3gRB2AXTw2mw4sNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0db9d216 +16:40:53.705 [XNIO-1 task-2] CrWXyFh2Qqypy0TcGl9DfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07d546f6, base path is set to: null +16:40:53.705 [XNIO-1 task-2] CrWXyFh2Qqypy0TcGl9DfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.705 [XNIO-1 task-2] CrWXyFh2Qqypy0TcGl9DfQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.705 [XNIO-1 task-2] CrWXyFh2Qqypy0TcGl9DfQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/07d546f6, base path is set to: null +16:40:53.705 [XNIO-1 task-2] CrWXyFh2Qqypy0TcGl9DfQ DEBUG com.networknt.schema.TypeValidator debug - validate( "07d546f6", "07d546f6", serviceId) +16:40:53.708 [XNIO-1 task-2] p4_k3pxoQde4-7_fIpWCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.708 [XNIO-1 task-2] p4_k3pxoQde4-7_fIpWCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.708 [XNIO-1 task-2] p4_k3pxoQde4-7_fIpWCfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.708 [XNIO-1 task-2] p4_k3pxoQde4-7_fIpWCfA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.716 [XNIO-1 task-2] 442-anwlTQKeoc1bovuayA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07d546f6 +16:40:53.716 [XNIO-1 task-2] 442-anwlTQKeoc1bovuayA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.716 [XNIO-1 task-2] 442-anwlTQKeoc1bovuayA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.716 [XNIO-1 task-2] 442-anwlTQKeoc1bovuayA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/07d546f6 +16:40:53.716 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:07d546f6 +16:40:53.723 [XNIO-1 task-2] xZeeq9reSE6fpJOPqJNDnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/557247a7, base path is set to: null +16:40:53.723 [XNIO-1 task-2] xZeeq9reSE6fpJOPqJNDnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.723 [XNIO-1 task-2] xZeeq9reSE6fpJOPqJNDnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.724 [XNIO-1 task-2] xZeeq9reSE6fpJOPqJNDnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/557247a7, base path is set to: null +16:40:53.724 [XNIO-1 task-2] xZeeq9reSE6fpJOPqJNDnw DEBUG com.networknt.schema.TypeValidator debug - validate( "557247a7", "557247a7", serviceId) +16:40:53.730 [XNIO-1 task-2] QMdFV3gDScCZW9j5bUqAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.730 [XNIO-1 task-2] QMdFV3gDScCZW9j5bUqAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.730 [XNIO-1 task-2] QMdFV3gDScCZW9j5bUqAZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.738 [XNIO-1 task-2] 1XKwsUwRSOCnCwyN7PxnMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.738 [XNIO-1 task-2] 1XKwsUwRSOCnCwyN7PxnMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.738 [XNIO-1 task-2] 1XKwsUwRSOCnCwyN7PxnMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.739 [XNIO-1 task-2] 1XKwsUwRSOCnCwyN7PxnMg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.745 [XNIO-1 task-2] HJYCoBL2QqqxElil03gV0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.745 [XNIO-1 task-2] HJYCoBL2QqqxElil03gV0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.745 [XNIO-1 task-2] HJYCoBL2QqqxElil03gV0w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.745 [XNIO-1 task-2] HJYCoBL2QqqxElil03gV0w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "74d261af-7ddd-4a3f-85cb-e60936faf046", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6d24415a", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:53.750 [XNIO-1 task-2] fv7CXYNfRo6qB8DZPN-1pQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:53.757 [XNIO-1 task-2] onPFCLx8Q8evDklIzNQE3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2784040c +16:40:53.757 [XNIO-1 task-2] onPFCLx8Q8evDklIzNQE3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.757 [XNIO-1 task-2] onPFCLx8Q8evDklIzNQE3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.758 [XNIO-1 task-2] onPFCLx8Q8evDklIzNQE3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2784040c +16:40:53.759 [XNIO-1 task-2] n1IhCPHMT_G4dQj-iCmJ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.759 [XNIO-1 task-2] n1IhCPHMT_G4dQj-iCmJ2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.760 [XNIO-1 task-2] n1IhCPHMT_G4dQj-iCmJ2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.760 [XNIO-1 task-2] n1IhCPHMT_G4dQj-iCmJ2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.795 [XNIO-1 task-2] HtAfzN89QJKV4k6hKohysA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.795 [XNIO-1 task-2] HtAfzN89QJKV4k6hKohysA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.795 [XNIO-1 task-2] HtAfzN89QJKV4k6hKohysA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.795 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5d761d0b +16:40:53.796 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5d761d0b +16:40:53.800 [XNIO-1 task-2] gs6Pj_fJT7q8zTDIXCFzdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2784040c +16:40:53.800 [XNIO-1 task-2] gs6Pj_fJT7q8zTDIXCFzdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.800 [XNIO-1 task-2] gs6Pj_fJT7q8zTDIXCFzdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.800 [XNIO-1 task-2] gs6Pj_fJT7q8zTDIXCFzdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2784040c +16:40:53.801 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:16e8a911-b5bd-476e-9116-2ff0c9e97093 +16:40:53.810 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:c46e1fa9-6832-420c-8eea-4a996e7f3a1a +16:40:53.814 [XNIO-1 task-2] SVK8_AFIQ4Wm62vi4cb7fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b0fcd0a1, base path is set to: null +16:40:53.814 [XNIO-1 task-2] SVK8_AFIQ4Wm62vi4cb7fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.814 [XNIO-1 task-2] SVK8_AFIQ4Wm62vi4cb7fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.815 [XNIO-1 task-2] SVK8_AFIQ4Wm62vi4cb7fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b0fcd0a1, base path is set to: null +16:40:53.815 [XNIO-1 task-2] SVK8_AFIQ4Wm62vi4cb7fQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b0fcd0a1", "b0fcd0a1", serviceId) +16:40:53.820 [XNIO-1 task-2] VWv5CXgGTJKmMJZcE-OPgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5d761d0b, base path is set to: null +16:40:53.821 [XNIO-1 task-2] VWv5CXgGTJKmMJZcE-OPgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.821 [XNIO-1 task-2] VWv5CXgGTJKmMJZcE-OPgg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.821 [XNIO-1 task-2] VWv5CXgGTJKmMJZcE-OPgg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5d761d0b, base path is set to: null +16:40:53.821 [XNIO-1 task-2] VWv5CXgGTJKmMJZcE-OPgg DEBUG com.networknt.schema.TypeValidator debug - validate( "5d761d0b", "5d761d0b", serviceId) +16:40:53.822 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:cbe9b6d4 +16:40:53.822 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:5d761d0b +16:40:53.829 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3a250e18-0417-425a-8366-0fe535894fc2 +16:40:53.830 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3a250e18-0417-425a-8366-0fe535894fc2 +16:40:53.854 [XNIO-1 task-2] Rsxv6vRrTu65achX0wJ69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.854 [XNIO-1 task-2] Rsxv6vRrTu65achX0wJ69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.854 [XNIO-1 task-2] Rsxv6vRrTu65achX0wJ69Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.854 [XNIO-1 task-2] Rsxv6vRrTu65achX0wJ69Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.885 [XNIO-1 task-2] n2vBjcwqRzOLs7a0uAoB9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.885 [XNIO-1 task-2] n2vBjcwqRzOLs7a0uAoB9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.885 [XNIO-1 task-2] n2vBjcwqRzOLs7a0uAoB9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.900 [XNIO-1 task-2] 4NuVtfFCQmG44bvgfrqJZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.900 [XNIO-1 task-2] 4NuVtfFCQmG44bvgfrqJZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.900 [XNIO-1 task-2] 4NuVtfFCQmG44bvgfrqJZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:53.900 [XNIO-1 task-2] 4NuVtfFCQmG44bvgfrqJZw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.902 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:53.912 [XNIO-1 task-2] EadxsHOlT5edb0vFhIZAbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.912 [XNIO-1 task-2] EadxsHOlT5edb0vFhIZAbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.913 [XNIO-1 task-2] EadxsHOlT5edb0vFhIZAbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.913 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:34fe0b65 +16:40:53.943 [XNIO-1 task-2] zAQgzt_DSOie3x_03DK7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/986d41b0, base path is set to: null +16:40:53.943 [XNIO-1 task-2] zAQgzt_DSOie3x_03DK7hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:53.944 [XNIO-1 task-2] zAQgzt_DSOie3x_03DK7hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:53.944 [XNIO-1 task-2] zAQgzt_DSOie3x_03DK7hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/986d41b0, base path is set to: null +16:40:53.944 [XNIO-1 task-2] zAQgzt_DSOie3x_03DK7hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "986d41b0", "986d41b0", serviceId) +16:40:53.973 [XNIO-1 task-2] V7XxYg3VTaS4R5PlgjdIfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3c85111c +16:40:53.973 [XNIO-1 task-2] V7XxYg3VTaS4R5PlgjdIfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:53.973 [XNIO-1 task-2] V7XxYg3VTaS4R5PlgjdIfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:53.973 [XNIO-1 task-2] V7XxYg3VTaS4R5PlgjdIfA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/3c85111c +16:40:54.001 [XNIO-1 task-2] 7kbKgdmCQfCfe-sI4-Cq7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.001 [XNIO-1 task-2] 7kbKgdmCQfCfe-sI4-Cq7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.001 [XNIO-1 task-2] 7kbKgdmCQfCfe-sI4-Cq7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.006 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.029 [XNIO-1 task-2] lGWXDBuFRdCnEFH2RTvV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.029 [XNIO-1 task-2] lGWXDBuFRdCnEFH2RTvV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.029 [XNIO-1 task-2] lGWXDBuFRdCnEFH2RTvV-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.038 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG com.networknt.schema.TypeValidator debug - validate( "f51e6316-a999-434d-8b69-4e790e69f52d", {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG com.networknt.schema.TypeValidator debug - validate( "ed8b3df1", {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:54.039 [XNIO-1 task-2] mtH2qC4hQSS8R8cpKQfncw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.100 [XNIO-1 task-2] R2hb6uE4QiO9JJ-xqyZP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5386a67 +16:40:54.100 [XNIO-1 task-2] R2hb6uE4QiO9JJ-xqyZP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.100 [XNIO-1 task-2] R2hb6uE4QiO9JJ-xqyZP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.101 [XNIO-1 task-2] R2hb6uE4QiO9JJ-xqyZP9Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5386a67 +16:40:54.103 [XNIO-1 task-2] elchqce_Tn2pnlSqgYKpSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:54.103 [XNIO-1 task-2] elchqce_Tn2pnlSqgYKpSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.103 [XNIO-1 task-2] elchqce_Tn2pnlSqgYKpSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.104 [XNIO-1 task-2] elchqce_Tn2pnlSqgYKpSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:54.104 [XNIO-1 task-2] elchqce_Tn2pnlSqgYKpSA DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", "c5386a67", serviceId) +16:40:54.106 [XNIO-1 task-2] 3Xj01LRVTVSlc3Btvxrh3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dcd3c99e +16:40:54.106 [XNIO-1 task-2] 3Xj01LRVTVSlc3Btvxrh3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.106 [XNIO-1 task-2] 3Xj01LRVTVSlc3Btvxrh3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.106 [XNIO-1 task-2] 3Xj01LRVTVSlc3Btvxrh3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/dcd3c99e +16:40:54.143 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:0100bc45-b998-4894-80cf-81a956bd5976 +16:40:54.143 [XNIO-1 task-2] Pu8Bn8REThGpSxBQxRC8AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:54.143 [XNIO-1 task-2] Pu8Bn8REThGpSxBQxRC8AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.143 [XNIO-1 task-2] Pu8Bn8REThGpSxBQxRC8AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.143 [XNIO-1 task-2] Pu8Bn8REThGpSxBQxRC8AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:54.144 [XNIO-1 task-2] Pu8Bn8REThGpSxBQxRC8AA DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", "c5386a67", serviceId) +16:40:54.154 [XNIO-1 task-2] L--L6spoS6CDr5ex4qjmLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.154 [XNIO-1 task-2] L--L6spoS6CDr5ex4qjmLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.154 [XNIO-1 task-2] L--L6spoS6CDr5ex4qjmLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.162 [XNIO-1 task-2] -D94dc3kTSyTgGRjE8w6Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.162 [XNIO-1 task-2] -D94dc3kTSyTgGRjE8w6Sw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.162 [XNIO-1 task-2] -D94dc3kTSyTgGRjE8w6Sw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.162 [XNIO-1 task-2] -D94dc3kTSyTgGRjE8w6Sw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.163 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:78070f47-dbbb-4744-a447-f8582ad39f34 +16:40:54.164 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:78070f47-dbbb-4744-a447-f8582ad39f34 +16:40:54.179 [XNIO-1 task-2] om3WbZwGQtmqYWOD2QS0MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.179 [XNIO-1 task-2] om3WbZwGQtmqYWOD2QS0MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.179 [XNIO-1 task-2] om3WbZwGQtmqYWOD2QS0MA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.180 [XNIO-1 task-2] om3WbZwGQtmqYWOD2QS0MA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.187 [XNIO-1 task-2] 5PZt0yABT4SF7yjKg4HUhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.187 [XNIO-1 task-2] 5PZt0yABT4SF7yjKg4HUhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.187 [XNIO-1 task-2] 5PZt0yABT4SF7yjKg4HUhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.198 [XNIO-1 task-2] OPJ8F2qbRGy-lq-F9GJDPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.198 [XNIO-1 task-2] OPJ8F2qbRGy-lq-F9GJDPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.198 [XNIO-1 task-2] OPJ8F2qbRGy-lq-F9GJDPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG com.networknt.schema.TypeValidator debug - validate( "a846ab62-e221-47f0-aa8b-4588e5767101", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:54.211 [XNIO-1 task-2] tiRYBUq0RIaq1WS9MqTVmw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.222 [XNIO-1 task-2] xKyGcOqKS26FNAqL0kUuRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.222 [XNIO-1 task-2] xKyGcOqKS26FNAqL0kUuRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.222 [XNIO-1 task-2] xKyGcOqKS26FNAqL0kUuRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.229 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d994ac2a +16:40:54.231 [XNIO-1 task-2] QcxwOt57QJyWueGGozXbew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.231 [XNIO-1 task-2] QcxwOt57QJyWueGGozXbew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.231 [XNIO-1 task-2] QcxwOt57QJyWueGGozXbew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.232 [XNIO-1 task-2] QcxwOt57QJyWueGGozXbew DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.243 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.243 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.243 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.243 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.243 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.244 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.244 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:54.244 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f718b7ab-2356-4f08-90c7-4acd100d", {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:54.244 [XNIO-1 task-2] DtbDB_lGTR69DEVuO_CH-Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6d24415a","serviceName":"f718b7ab-2356-4f08-90c7-4acd100d","serviceDesc":"74d261af-7ddd-4a3f-85cb-e60936faf046","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.248 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d994ac2a +16:40:54.253 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.253 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.253 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.254 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.254 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.254 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.254 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:54.254 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG com.networknt.schema.TypeValidator debug - validate( "56dda714-42fb-4dc5-91b9-c83908b1", {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:54.254 [XNIO-1 task-2] BaKwvGuPRYCqy9bcHbcQCQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ed8b3df1","serviceName":"56dda714-42fb-4dc5-91b9-c83908b1","serviceDesc":"f51e6316-a999-434d-8b69-4e790e69f52d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.267 [XNIO-1 task-2] zLIYAL0ASuazGKH_P1JFIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d24415a, base path is set to: null +16:40:54.267 [XNIO-1 task-2] zLIYAL0ASuazGKH_P1JFIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.267 [XNIO-1 task-2] zLIYAL0ASuazGKH_P1JFIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.267 [XNIO-1 task-2] zLIYAL0ASuazGKH_P1JFIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6d24415a, base path is set to: null +16:40:54.267 [XNIO-1 task-2] zLIYAL0ASuazGKH_P1JFIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "6d24415a", "6d24415a", serviceId) +16:40:54.280 [XNIO-1 task-2] dMMslPOMSDKUEQgGoTIAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.280 [XNIO-1 task-2] dMMslPOMSDKUEQgGoTIAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.280 [XNIO-1 task-2] dMMslPOMSDKUEQgGoTIAIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.280 [XNIO-1 task-2] dMMslPOMSDKUEQgGoTIAIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.283 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d994ac2a +16:40:54.288 [XNIO-1 task-2] 4cFcaSEjR9Cf-KxNCN744w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f494f8f5 +16:40:54.289 [XNIO-1 task-2] 4cFcaSEjR9Cf-KxNCN744w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.289 [XNIO-1 task-2] 4cFcaSEjR9Cf-KxNCN744w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.289 [XNIO-1 task-2] 4cFcaSEjR9Cf-KxNCN744w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f494f8f5 +16:40:54.297 [XNIO-1 task-2] hw8WI16cTti2kaBrkyvP-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.298 [XNIO-1 task-2] hw8WI16cTti2kaBrkyvP-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.298 [XNIO-1 task-2] hw8WI16cTti2kaBrkyvP-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.305 [XNIO-1 task-2] kX3i7CXTTymrtDDsDnUcoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.305 [XNIO-1 task-2] kX3i7CXTTymrtDDsDnUcoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.305 [XNIO-1 task-2] kX3i7CXTTymrtDDsDnUcoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.305 [XNIO-1 task-2] kX3i7CXTTymrtDDsDnUcoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.313 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ab43b346-5b93-4c12-b601-108f7a053ae8 +16:40:54.315 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:9cd49bd1-40af-4077-8e62-0f0d00839d6b +16:40:54.318 [XNIO-1 task-2] pQPcOYCxQFCko9PTnRVplA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f494f8f5 +16:40:54.318 [XNIO-1 task-2] pQPcOYCxQFCko9PTnRVplA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.318 [XNIO-1 task-2] pQPcOYCxQFCko9PTnRVplA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.319 [XNIO-1 task-2] pQPcOYCxQFCko9PTnRVplA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f494f8f5 +16:40:54.325 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:ab43b346-5b93-4c12-b601-108f7a053ae8 +16:40:54.326 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:d994ac2a +16:40:54.333 [XNIO-1 task-2] v9debJ3ZSOeCknCfhBuwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.333 [XNIO-1 task-2] v9debJ3ZSOeCknCfhBuwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.333 [XNIO-1 task-2] v9debJ3ZSOeCknCfhBuwxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.339 [XNIO-1 task-2] SMwdtijaTOq8LfCq6m-JNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.340 [XNIO-1 task-2] SMwdtijaTOq8LfCq6m-JNA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.340 [XNIO-1 task-2] SMwdtijaTOq8LfCq6m-JNA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.340 [XNIO-1 task-2] SMwdtijaTOq8LfCq6m-JNA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.354 [XNIO-1 task-2] NzBh7hICQwSQr-JEdz9ZmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/345537c3, base path is set to: null +16:40:54.355 [XNIO-1 task-2] NzBh7hICQwSQr-JEdz9ZmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.355 [XNIO-1 task-2] NzBh7hICQwSQr-JEdz9ZmQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.355 [XNIO-1 task-2] NzBh7hICQwSQr-JEdz9ZmQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/345537c3, base path is set to: null +16:40:54.355 [XNIO-1 task-2] NzBh7hICQwSQr-JEdz9ZmQ DEBUG com.networknt.schema.TypeValidator debug - validate( "345537c3", "345537c3", serviceId) +16:40:54.360 [XNIO-1 task-2] ljYagSlFQv2i9Kijg0Li1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.360 [XNIO-1 task-2] ljYagSlFQv2i9Kijg0Li1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.360 [XNIO-1 task-2] ljYagSlFQv2i9Kijg0Li1g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.370 [XNIO-1 task-2] Q5WmFh0vSUWGTb5_INs4dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/345537c3 +16:40:54.371 [XNIO-1 task-2] Q5WmFh0vSUWGTb5_INs4dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.371 [XNIO-1 task-2] Q5WmFh0vSUWGTb5_INs4dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.371 [XNIO-1 task-2] Q5WmFh0vSUWGTb5_INs4dQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/345537c3 +16:40:54.379 [XNIO-1 task-2] O6mfRpgBTmCKJTDM3XE3LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.379 [XNIO-1 task-2] O6mfRpgBTmCKJTDM3XE3LQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.379 [XNIO-1 task-2] O6mfRpgBTmCKJTDM3XE3LQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.379 [XNIO-1 task-2] O6mfRpgBTmCKJTDM3XE3LQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.387 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:d994ac2a +16:40:54.389 [XNIO-1 task-2] q0mZJkW6S02BT8xK7TN5GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.389 [XNIO-1 task-2] q0mZJkW6S02BT8xK7TN5GQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.389 [XNIO-1 task-2] q0mZJkW6S02BT8xK7TN5GQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.390 [XNIO-1 task-2] q0mZJkW6S02BT8xK7TN5GQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.405 [XNIO-1 task-2] xlYwTQzITUuZ1IIzAnmXTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65a82ed3, base path is set to: null +16:40:54.406 [XNIO-1 task-2] xlYwTQzITUuZ1IIzAnmXTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.406 [XNIO-1 task-2] xlYwTQzITUuZ1IIzAnmXTQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.406 [XNIO-1 task-2] xlYwTQzITUuZ1IIzAnmXTQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65a82ed3, base path is set to: null +16:40:54.406 [XNIO-1 task-2] xlYwTQzITUuZ1IIzAnmXTQ DEBUG com.networknt.schema.TypeValidator debug - validate( "65a82ed3", "65a82ed3", serviceId) +16:40:54.412 [XNIO-1 task-2] CECWSkXPRZCiMWkN-CBmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.412 [XNIO-1 task-2] CECWSkXPRZCiMWkN-CBmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.413 [XNIO-1 task-2] CECWSkXPRZCiMWkN-CBmsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.413 [XNIO-1 task-2] CECWSkXPRZCiMWkN-CBmsA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.423 [XNIO-1 task-2] Jz9MRWzrRWOkMJ1hp9kRdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65a82ed3 +16:40:54.423 [XNIO-1 task-2] Jz9MRWzrRWOkMJ1hp9kRdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.423 [XNIO-1 task-2] Jz9MRWzrRWOkMJ1hp9kRdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.423 [XNIO-1 task-2] Jz9MRWzrRWOkMJ1hp9kRdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/65a82ed3 +16:40:54.423 [XNIO-1 task-2] Jz9MRWzrRWOkMJ1hp9kRdw DEBUG com.networknt.schema.TypeValidator debug - validate( "65a82ed3", "65a82ed3", serviceId) +16:40:54.434 [XNIO-1 task-2] ZOsaWElRRSanGtKV8XqjIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.434 [XNIO-1 task-2] ZOsaWElRRSanGtKV8XqjIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.434 [XNIO-1 task-2] ZOsaWElRRSanGtKV8XqjIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.434 [XNIO-1 task-2] ZOsaWElRRSanGtKV8XqjIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG com.networknt.schema.TypeValidator debug - validate( "a146c19b-98b5-4ec3-bc42-862e4a59081e", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b0f7919", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:54.442 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:54.443 [XNIO-1 task-2] ogDdXQYLRi-JXPixETxmaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.455 [XNIO-1 task-2] lpfPX0APSf-xeCpYWV8lrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5386a67 +16:40:54.455 [XNIO-1 task-2] lpfPX0APSf-xeCpYWV8lrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.455 [XNIO-1 task-2] lpfPX0APSf-xeCpYWV8lrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.455 [XNIO-1 task-2] lpfPX0APSf-xeCpYWV8lrA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5386a67 +16:40:54.463 [XNIO-1 task-2] 0-qf0HcoSt-i_anFsr37fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.463 [XNIO-1 task-2] 0-qf0HcoSt-i_anFsr37fA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.463 [XNIO-1 task-2] 0-qf0HcoSt-i_anFsr37fA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.463 [XNIO-1 task-2] 0-qf0HcoSt-i_anFsr37fA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.478 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.478 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.478 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.478 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.478 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.479 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.479 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:54.479 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG com.networknt.schema.TypeValidator debug - validate( "5f7305cf-f2f6-4232-bd76-0bc4209b", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:54.479 [XNIO-1 task-2] ww_8_lq4QOmOjrbmN90f1w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.490 [XNIO-1 task-2] D3ct6IW8RgqqaC4n-9ZWWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.490 [XNIO-1 task-2] D3ct6IW8RgqqaC4n-9ZWWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.490 [XNIO-1 task-2] D3ct6IW8RgqqaC4n-9ZWWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.498 [XNIO-1 task-2] 5ilYY8b5REKEk8pa5_68Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.498 [XNIO-1 task-2] 5ilYY8b5REKEk8pa5_68Fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.499 [XNIO-1 task-2] 5ilYY8b5REKEk8pa5_68Fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.499 [XNIO-1 task-2] 5ilYY8b5REKEk8pa5_68Fw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.510 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG com.networknt.schema.TypeValidator debug - validate( "f0f5f622-1d42-45eb-9bd3-9822e393", {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:54.511 [XNIO-1 task-2] CcrC87dMRfqgvw5mZfqF2w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"331a973d","serviceName":"f0f5f622-1d42-45eb-9bd3-9822e393","serviceDesc":"0d8055f5-a8cc-4621-b1c2-7a61f40ed704","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.517 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:27318fc8-23ef-496d-a8ff-484e07dd9d7e +16:40:54.520 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.520 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.520 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.522 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.522 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.522 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.522 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:54.522 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG com.networknt.schema.TypeValidator debug - validate( "08d92a6d-93eb-40f8-8fd3-1ee9365f", {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:54.522 [XNIO-1 task-2] w8NmyCYtSZSggKuPO8E92Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ae96b4eb","serviceName":"08d92a6d-93eb-40f8-8fd3-1ee9365f","serviceDesc":"0d4cea62-e9a1-47bf-9e89-3b48b1b67cac","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.531 [XNIO-1 task-2] poJZAjKgRC6vT2pC5gyVHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.531 [XNIO-1 task-2] poJZAjKgRC6vT2pC5gyVHg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.531 [XNIO-1 task-2] poJZAjKgRC6vT2pC5gyVHg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.532 [XNIO-1 task-2] poJZAjKgRC6vT2pC5gyVHg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.543 [XNIO-1 task-2] pRsUimWhQvWK3m1Mt_h9WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.543 [XNIO-1 task-2] pRsUimWhQvWK3m1Mt_h9WA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.543 [XNIO-1 task-2] pRsUimWhQvWK3m1Mt_h9WA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.543 [XNIO-1 task-2] pRsUimWhQvWK3m1Mt_h9WA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.555 [XNIO-1 task-2] p-_tdBS7Su2IKtQQ4LboBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.555 [XNIO-1 task-2] p-_tdBS7Su2IKtQQ4LboBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.555 [XNIO-1 task-2] p-_tdBS7Su2IKtQQ4LboBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.555 [XNIO-1 task-2] p-_tdBS7Su2IKtQQ4LboBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "01464068-05c7-4a4c-ac1f-1340e55a", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:54.564 [XNIO-1 task-2] mYOhGTIwQmGzHhviK-vSAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.567 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bd915d3c +16:40:54.570 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:bd915d3c +16:40:54.575 [XNIO-1 task-2] QHkpIB2zQCaErkmMxMu6IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.575 [XNIO-1 task-2] QHkpIB2zQCaErkmMxMu6IQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.575 [XNIO-1 task-2] QHkpIB2zQCaErkmMxMu6IQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.577 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad6689f9-960c-4f3a-b9e2-ca7fde6eaac3 +16:40:54.578 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ad6689f9-960c-4f3a-b9e2-ca7fde6eaac3 +16:40:54.584 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a7e44003-d5ea-475a-b99d-8f9e3664f3dd +16:40:54.585 [XNIO-1 task-2] gh-mbZ03TmOfAvdXm8M_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.585 [XNIO-1 task-2] gh-mbZ03TmOfAvdXm8M_QA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.585 [XNIO-1 task-2] gh-mbZ03TmOfAvdXm8M_QA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.585 [XNIO-1 task-2] gh-mbZ03TmOfAvdXm8M_QA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.594 [XNIO-1 task-2] 35yeElq5Sz2uKWD8Qgq3oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5323d527, base path is set to: null +16:40:54.594 [XNIO-1 task-2] 35yeElq5Sz2uKWD8Qgq3oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.594 [XNIO-1 task-2] 35yeElq5Sz2uKWD8Qgq3oQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.594 [XNIO-1 task-2] 35yeElq5Sz2uKWD8Qgq3oQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5323d527, base path is set to: null +16:40:54.594 [XNIO-1 task-2] 35yeElq5Sz2uKWD8Qgq3oQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5323d527", "5323d527", serviceId) +16:40:54.594 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:bd915d3c +16:40:54.604 [XNIO-1 task-2] GB7F0SVZT1yHR02M8ylGDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.604 [XNIO-1 task-2] GB7F0SVZT1yHR02M8ylGDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.604 [XNIO-1 task-2] GB7F0SVZT1yHR02M8ylGDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.613 [XNIO-1 task-2] JFZSCeq2RLCksn2naIOzOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.613 [XNIO-1 task-2] JFZSCeq2RLCksn2naIOzOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.613 [XNIO-1 task-2] JFZSCeq2RLCksn2naIOzOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.624 [XNIO-1 task-2] IQpSH2-_QZOsQvXmo7TfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.624 [XNIO-1 task-2] IQpSH2-_QZOsQvXmo7TfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.624 [XNIO-1 task-2] IQpSH2-_QZOsQvXmo7TfPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.642 [XNIO-1 task-2] 09bpXm4GTa-eK20OHrd2XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4622254b, base path is set to: null +16:40:54.642 [XNIO-1 task-2] 09bpXm4GTa-eK20OHrd2XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.642 [XNIO-1 task-2] 09bpXm4GTa-eK20OHrd2XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.642 [XNIO-1 task-2] 09bpXm4GTa-eK20OHrd2XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4622254b, base path is set to: null +16:40:54.642 [XNIO-1 task-2] 09bpXm4GTa-eK20OHrd2XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4622254b", "4622254b", serviceId) +16:40:54.646 [XNIO-1 task-2] VWis_uiYQmedlatJU-dMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f0b29515 +16:40:54.646 [XNIO-1 task-2] VWis_uiYQmedlatJU-dMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.646 [XNIO-1 task-2] VWis_uiYQmedlatJU-dMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.646 [XNIO-1 task-2] VWis_uiYQmedlatJU-dMpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f0b29515 +16:40:54.655 [XNIO-1 task-2] iDSOagIOQJ-tfvkUAGH3lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ea35953, base path is set to: null +16:40:54.655 [XNIO-1 task-2] iDSOagIOQJ-tfvkUAGH3lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.655 [XNIO-1 task-2] iDSOagIOQJ-tfvkUAGH3lg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.655 [XNIO-1 task-2] iDSOagIOQJ-tfvkUAGH3lg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/0ea35953, base path is set to: null +16:40:54.655 [XNIO-1 task-2] iDSOagIOQJ-tfvkUAGH3lg DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea35953", "0ea35953", serviceId) +16:40:54.659 [XNIO-1 task-2] 7i5d8NMhQ82qs1InI5CPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.659 [XNIO-1 task-2] 7i5d8NMhQ82qs1InI5CPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.660 [XNIO-1 task-2] 7i5d8NMhQ82qs1InI5CPgg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.660 [XNIO-1 task-2] 7i5d8NMhQ82qs1InI5CPgg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.669 [XNIO-1 task-2] 6owYVW-ERDKz8VDNrSqVGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.669 [XNIO-1 task-2] 6owYVW-ERDKz8VDNrSqVGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.669 [XNIO-1 task-2] 6owYVW-ERDKz8VDNrSqVGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.669 [XNIO-1 task-2] 6owYVW-ERDKz8VDNrSqVGQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.684 [XNIO-1 task-2] jWRHWEs_TFqMhFSf5D8-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.684 [XNIO-1 task-2] jWRHWEs_TFqMhFSf5D8-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.684 [XNIO-1 task-2] jWRHWEs_TFqMhFSf5D8-8g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.685 [XNIO-1 task-2] jWRHWEs_TFqMhFSf5D8-8g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.696 [XNIO-1 task-2] zFXil0lDTpC1-HtddSqFOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331a973d +16:40:54.696 [XNIO-1 task-2] zFXil0lDTpC1-HtddSqFOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.696 [XNIO-1 task-2] zFXil0lDTpC1-HtddSqFOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.696 [XNIO-1 task-2] zFXil0lDTpC1-HtddSqFOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/331a973d +16:40:54.702 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG com.networknt.schema.TypeValidator debug - validate( "ec4ed48b-6c42-409e-9646-471565d7", {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:54.703 [XNIO-1 task-2] Y-pxtHpuTgisI74-LN2OWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.713 [XNIO-1 task-2] 1vnfZRsST4ORm8WABMWVig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.714 [XNIO-1 task-2] 1vnfZRsST4ORm8WABMWVig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.714 [XNIO-1 task-2] 1vnfZRsST4ORm8WABMWVig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.714 [XNIO-1 task-2] 1vnfZRsST4ORm8WABMWVig DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.728 [XNIO-1 task-2] hbJ8fOduQxaEIC8TPwtnuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.728 [XNIO-1 task-2] hbJ8fOduQxaEIC8TPwtnuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.728 [XNIO-1 task-2] hbJ8fOduQxaEIC8TPwtnuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.728 [XNIO-1 task-2] hbJ8fOduQxaEIC8TPwtnuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.740 [XNIO-1 task-2] B8CO1gZ9QdCcJQRWKizGuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4622254b, base path is set to: null +16:40:54.740 [XNIO-1 task-2] B8CO1gZ9QdCcJQRWKizGuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.740 [XNIO-1 task-2] B8CO1gZ9QdCcJQRWKizGuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.740 [XNIO-1 task-2] B8CO1gZ9QdCcJQRWKizGuQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/4622254b, base path is set to: null +16:40:54.740 [XNIO-1 task-2] B8CO1gZ9QdCcJQRWKizGuQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4622254b", "4622254b", serviceId) +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "00685117-c054-4739-9ac7-994666de452c", {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "f0b29515", {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:54.750 [XNIO-1 task-2] _QOCmkFMRQ-zIjfwMC7_lg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.759 [XNIO-1 task-2] xIc4ruI8Q3-qWj5euWoY_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.759 [XNIO-1 task-2] xIc4ruI8Q3-qWj5euWoY_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.759 [XNIO-1 task-2] xIc4ruI8Q3-qWj5euWoY_w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.760 [XNIO-1 task-2] xIc4ruI8Q3-qWj5euWoY_w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.775 [XNIO-1 task-2] Rxa3VJfPRYKznkos_omTPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.775 [XNIO-1 task-2] Rxa3VJfPRYKznkos_omTPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.775 [XNIO-1 task-2] Rxa3VJfPRYKznkos_omTPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.776 [XNIO-1 task-2] Rxa3VJfPRYKznkos_omTPQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.782 [XNIO-1 task-2] ZrnB2PoBTTmpnqDV5e8GQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.782 [XNIO-1 task-2] ZrnB2PoBTTmpnqDV5e8GQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.782 [XNIO-1 task-2] ZrnB2PoBTTmpnqDV5e8GQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.782 [XNIO-1 task-2] ZrnB2PoBTTmpnqDV5e8GQw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "797b6a73-604a-4111-96a4-827df6c82319", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0ea35953", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:54.791 [XNIO-1 task-2] asm3FnjJSBKH-owtrRfXeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:54.799 [XNIO-1 task-2] zBRAybYdRcibWgUvlUg68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.799 [XNIO-1 task-2] zBRAybYdRcibWgUvlUg68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.799 [XNIO-1 task-2] zBRAybYdRcibWgUvlUg68Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.807 [XNIO-1 task-2] GWSyaD5sRyiWVqfNxGIM-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/62121612 +16:40:54.807 [XNIO-1 task-2] GWSyaD5sRyiWVqfNxGIM-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.807 [XNIO-1 task-2] GWSyaD5sRyiWVqfNxGIM-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:54.807 [XNIO-1 task-2] GWSyaD5sRyiWVqfNxGIM-A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/62121612 +16:40:54.813 [XNIO-1 task-2] 39AiuQ60StaYgPovEEjXVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34fe0b65, base path is set to: null +16:40:54.813 [XNIO-1 task-2] 39AiuQ60StaYgPovEEjXVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.813 [XNIO-1 task-2] 39AiuQ60StaYgPovEEjXVg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:54.813 [XNIO-1 task-2] 39AiuQ60StaYgPovEEjXVg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/34fe0b65, base path is set to: null +16:40:54.813 [XNIO-1 task-2] 39AiuQ60StaYgPovEEjXVg DEBUG com.networknt.schema.TypeValidator debug - validate( "34fe0b65", "34fe0b65", serviceId) +16:40:54.814 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:34fe0b65 +16:40:54.820 [XNIO-1 task-2] i_x0b13vS3iIs2MSUMn3PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.820 [XNIO-1 task-2] i_x0b13vS3iIs2MSUMn3PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.820 [XNIO-1 task-2] i_x0b13vS3iIs2MSUMn3PQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.820 [XNIO-1 task-2] i_x0b13vS3iIs2MSUMn3PQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.855 [XNIO-1 task-2] EmhG7YCwQ0yTrdZ4tF6rAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.855 [XNIO-1 task-2] EmhG7YCwQ0yTrdZ4tF6rAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:54.855 [XNIO-1 task-2] EmhG7YCwQ0yTrdZ4tF6rAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:54.910 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:b0db472b-15b6-4495-8d3a-8df76d0819be +16:40:54.912 [XNIO-1 task-2] gB57WlCESX633GKM_iOuTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.912 [XNIO-1 task-2] gB57WlCESX633GKM_iOuTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.913 [XNIO-1 task-2] gB57WlCESX633GKM_iOuTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.913 [XNIO-1 task-2] gB57WlCESX633GKM_iOuTQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.925 [XNIO-1 task-2] nr48cD-vQYiaVn76Zmw_MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.925 [XNIO-1 task-2] nr48cD-vQYiaVn76Zmw_MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.925 [XNIO-1 task-2] nr48cD-vQYiaVn76Zmw_MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.948 [XNIO-1 task-2] acGwq1jsSwuXZysoXlJYlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.948 [XNIO-1 task-2] acGwq1jsSwuXZysoXlJYlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.948 [XNIO-1 task-2] acGwq1jsSwuXZysoXlJYlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:54.948 [XNIO-1 task-2] acGwq1jsSwuXZysoXlJYlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.049 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.050 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.050 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.050 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.050 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.050 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "52acb3a2-8515-4b8e-b82d-041dfc8fb692", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.050 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "986d41b0", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.050 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.051 [XNIO-1 task-2] ARhg9ayJRyiSYDneD4f_ag DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"986d41b0","serviceName":"ee8687e2-4d8c-407a-997c-9ae41e54","serviceDesc":"52acb3a2-8515-4b8e-b82d-041dfc8fb692","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.057 [XNIO-1 task-2] ihW7iw8ITY68S8H578ynXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.058 [XNIO-1 task-2] ihW7iw8ITY68S8H578ynXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.058 [XNIO-1 task-2] ihW7iw8ITY68S8H578ynXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.058 [XNIO-1 task-2] ihW7iw8ITY68S8H578ynXw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.065 [XNIO-1 task-2] -FkkiaCaR0WvEcrlTsY25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ed8b3df1 +16:40:55.065 [XNIO-1 task-2] -FkkiaCaR0WvEcrlTsY25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.065 [XNIO-1 task-2] -FkkiaCaR0WvEcrlTsY25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.066 [XNIO-1 task-2] -FkkiaCaR0WvEcrlTsY25g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ed8b3df1 +16:40:55.074 [XNIO-1 task-2] CYdp1RosS16264hr-U5pGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae96b4eb, base path is set to: null +16:40:55.074 [XNIO-1 task-2] CYdp1RosS16264hr-U5pGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.074 [XNIO-1 task-2] CYdp1RosS16264hr-U5pGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.074 [XNIO-1 task-2] CYdp1RosS16264hr-U5pGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ae96b4eb, base path is set to: null +16:40:55.075 [XNIO-1 task-2] CYdp1RosS16264hr-U5pGw DEBUG com.networknt.schema.TypeValidator debug - validate( "ae96b4eb", "ae96b4eb", serviceId) +16:40:55.081 [XNIO-1 task-2] 4bZxmFQcQtOS85UKi_6aQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.081 [XNIO-1 task-2] 4bZxmFQcQtOS85UKi_6aQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.081 [XNIO-1 task-2] 4bZxmFQcQtOS85UKi_6aQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.082 [XNIO-1 task-2] 4bZxmFQcQtOS85UKi_6aQA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.105 [XNIO-1 task-2] NwPPwTFSTiyKQ6ror3F_bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.105 [XNIO-1 task-2] NwPPwTFSTiyKQ6ror3F_bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.105 [XNIO-1 task-2] NwPPwTFSTiyKQ6ror3F_bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.105 [XNIO-1 task-2] NwPPwTFSTiyKQ6ror3F_bg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.113 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:1efd9865-78d3-4ea1-b6cc-22b15b453563 +16:40:55.117 [XNIO-1 task-2] s8kxn1-bTMGxmSvByvACJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.117 [XNIO-1 task-2] s8kxn1-bTMGxmSvByvACJw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.117 [XNIO-1 task-2] s8kxn1-bTMGxmSvByvACJw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.126 [XNIO-1 task-2] qV4mXNaMSeON3pVKQ-XtTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac6674f0, base path is set to: null +16:40:55.126 [XNIO-1 task-2] qV4mXNaMSeON3pVKQ-XtTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.126 [XNIO-1 task-2] qV4mXNaMSeON3pVKQ-XtTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.126 [XNIO-1 task-2] qV4mXNaMSeON3pVKQ-XtTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ac6674f0, base path is set to: null +16:40:55.126 [XNIO-1 task-2] qV4mXNaMSeON3pVKQ-XtTw DEBUG com.networknt.schema.TypeValidator debug - validate( "ac6674f0", "ac6674f0", serviceId) +16:40:55.133 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.133 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.133 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.133 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.133 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.133 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG com.networknt.schema.TypeValidator debug - validate( "a146c19b-98b5-4ec3-bc42-862e4a59081e", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.133 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b0f7919", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.134 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.134 [XNIO-1 task-2] 2f8FsS0vQsWgaysRT71bvA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"6b0f7919","serviceName":"9c8c2984-d45f-434e-88c3-fffee9a7","serviceDesc":"a146c19b-98b5-4ec3-bc42-862e4a59081e","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.144 [XNIO-1 task-2] 6A8E9LKOQ_GlGYyu0JLoqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ac6674f0 +16:40:55.144 [XNIO-1 task-2] 6A8E9LKOQ_GlGYyu0JLoqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.144 [XNIO-1 task-2] 6A8E9LKOQ_GlGYyu0JLoqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.144 [XNIO-1 task-2] 6A8E9LKOQ_GlGYyu0JLoqw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ac6674f0 +16:40:55.150 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG com.networknt.schema.TypeValidator debug - validate( "df336e01-029c-4b63-8c0e-a83e2836", {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.151 [XNIO-1 task-2] iDnEhN0FSTyUKZZqwZ0glw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.164 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG com.networknt.schema.TypeValidator debug - validate( "c6284349-94f9-4ab9-83df-336bcd56", {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.165 [XNIO-1 task-2] xv7oeKf-Ta-PxWFuuDz3nA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f7cd47fd","serviceName":"c6284349-94f9-4ab9-83df-336bcd56","serviceDesc":"0946d868-caac-4b54-95ca-cc953f05b35d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.181 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7921bc90-b8a7-4601-bea3-f984ed44", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.182 [XNIO-1 task-2] MdPL4F_UTROy8JuUGf_dpQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.194 [XNIO-1 task-2] O-xxEM_lSLysMTVJx2D9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.194 [XNIO-1 task-2] O-xxEM_lSLysMTVJx2D9Kg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.194 [XNIO-1 task-2] O-xxEM_lSLysMTVJx2D9Kg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.209 [XNIO-1 task-2] pfACfSoFSBGJgtjvzNnzIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.210 [XNIO-1 task-2] pfACfSoFSBGJgtjvzNnzIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.210 [XNIO-1 task-2] pfACfSoFSBGJgtjvzNnzIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.210 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6fb70b47 +16:40:55.211 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6fb70b47 +16:40:55.219 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.219 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.219 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.220 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.220 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.220 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3d964ef1-5b2d-47cd-83bc-1dbefb450ff8", {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.220 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d5b1fa95", {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.220 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.220 [XNIO-1 task-2] hnT0ENEuR3-ZNTXI84u1MQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d5b1fa95","serviceName":"161f26aa-6731-46d5-be15-4969cefb","serviceDesc":"3d964ef1-5b2d-47cd-83bc-1dbefb450ff8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.228 [XNIO-1 task-2] MBTrFGnjT4eE5S_rHWWQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd7466b2 +16:40:55.228 [XNIO-1 task-2] MBTrFGnjT4eE5S_rHWWQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.228 [XNIO-1 task-2] MBTrFGnjT4eE5S_rHWWQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.229 [XNIO-1 task-2] MBTrFGnjT4eE5S_rHWWQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd7466b2 +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG com.networknt.schema.TypeValidator debug - validate( "df336e01-029c-4b63-8c0e-a83e2836", {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.232 [XNIO-1 task-2] B2VZcaIuTpqAXI4WvU0AFw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ac6674f0","serviceName":"df336e01-029c-4b63-8c0e-a83e2836","serviceDesc":"5f604880-98cc-424f-8c22-f4cc228e9326","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.241 [XNIO-1 task-2] xnTilzzkQTOl6LEu_CKUyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd7466b2, base path is set to: null +16:40:55.241 [XNIO-1 task-2] xnTilzzkQTOl6LEu_CKUyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.241 [XNIO-1 task-2] xnTilzzkQTOl6LEu_CKUyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.241 [XNIO-1 task-2] xnTilzzkQTOl6LEu_CKUyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd7466b2, base path is set to: null +16:40:55.241 [XNIO-1 task-2] xnTilzzkQTOl6LEu_CKUyg DEBUG com.networknt.schema.TypeValidator debug - validate( "fd7466b2", "fd7466b2", serviceId) +16:40:55.252 [XNIO-1 task-2] eBy4qNnMTgKj5Hp1FJ58xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.252 [XNIO-1 task-2] eBy4qNnMTgKj5Hp1FJ58xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.252 [XNIO-1 task-2] eBy4qNnMTgKj5Hp1FJ58xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.253 [XNIO-1 task-2] eBy4qNnMTgKj5Hp1FJ58xA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.266 [XNIO-1 task-2] LFaYjFJURnuVbT4Pz3jAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ac6674f0 +16:40:55.266 [XNIO-1 task-2] LFaYjFJURnuVbT4Pz3jAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.266 [XNIO-1 task-2] LFaYjFJURnuVbT4Pz3jAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.266 [XNIO-1 task-2] LFaYjFJURnuVbT4Pz3jAsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/ac6674f0 +16:40:55.274 [XNIO-1 task-2] pUtVYnQwQC-if-oJTtDzrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:55.274 [XNIO-1 task-2] pUtVYnQwQC-if-oJTtDzrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.274 [XNIO-1 task-2] pUtVYnQwQC-if-oJTtDzrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.274 [XNIO-1 task-2] pUtVYnQwQC-if-oJTtDzrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:55.274 [XNIO-1 task-2] pUtVYnQwQC-if-oJTtDzrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", "c5386a67", serviceId) +16:40:55.277 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:030a99aa-4f83-469e-94be-b225ce6f0b80 +16:40:55.279 [XNIO-1 task-2] wbALvm_JRfOzcvmKycP-JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.280 [XNIO-1 task-2] wbALvm_JRfOzcvmKycP-JA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.280 [XNIO-1 task-2] wbALvm_JRfOzcvmKycP-JA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.280 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c79c4aff +16:40:55.280 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:c79c4aff +16:40:55.285 [XNIO-1 task-2] qDVpHKh1SzaCDzVyoxy74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bde42241 +16:40:55.286 [XNIO-1 task-2] qDVpHKh1SzaCDzVyoxy74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.286 [XNIO-1 task-2] qDVpHKh1SzaCDzVyoxy74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.286 [XNIO-1 task-2] qDVpHKh1SzaCDzVyoxy74Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bde42241 +16:40:55.296 [XNIO-1 task-2] ea5c3dqbS6Ond-T34q3swg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:55.296 [XNIO-1 task-2] ea5c3dqbS6Ond-T34q3swg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.296 [XNIO-1 task-2] ea5c3dqbS6Ond-T34q3swg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.296 [XNIO-1 task-2] ea5c3dqbS6Ond-T34q3swg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:55.297 [XNIO-1 task-2] ea5c3dqbS6Ond-T34q3swg DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", "c5386a67", serviceId) +16:40:55.303 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:6f43a8c9 +16:40:55.303 [XNIO-1 task-2] RfvpgUtOS2GW26GyTbKJnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.303 [XNIO-1 task-2] RfvpgUtOS2GW26GyTbKJnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.303 [XNIO-1 task-2] RfvpgUtOS2GW26GyTbKJnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.303 [XNIO-1 task-2] RfvpgUtOS2GW26GyTbKJnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.311 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:6f43a8c9 +16:40:55.314 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.314 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.314 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.314 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.314 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.314 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG com.networknt.schema.TypeValidator debug - validate( "af61a2fc-0ba6-4b90-bac7-931459137a1d", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.314 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG com.networknt.schema.TypeValidator debug - validate( "65aa562e", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.315 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.315 [XNIO-1 task-2] AG9q8nA-TPuXO_LCvlXqBg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.321 [XNIO-1 task-2] _uSPtO8aQTKmT8rIWt4-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.322 [XNIO-1 task-2] _uSPtO8aQTKmT8rIWt4-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.322 [XNIO-1 task-2] _uSPtO8aQTKmT8rIWt4-4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.323 [XNIO-1 task-2] _uSPtO8aQTKmT8rIWt4-4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.337 [XNIO-1 task-2] nxlD0jzaR_SJ9ECcD_aYQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.337 [XNIO-1 task-2] nxlD0jzaR_SJ9ECcD_aYQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.338 [XNIO-1 task-2] nxlD0jzaR_SJ9ECcD_aYQw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.356 [XNIO-1 task-2] B8rjAru-SXKBLEOB-w4lwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.356 [XNIO-1 task-2] B8rjAru-SXKBLEOB-w4lwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.356 [XNIO-1 task-2] B8rjAru-SXKBLEOB-w4lwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.365 [XNIO-1 task-2] loRxe-THS7ybPWaxtE7JsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.365 [XNIO-1 task-2] loRxe-THS7ybPWaxtE7JsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.366 [XNIO-1 task-2] loRxe-THS7ybPWaxtE7JsQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.366 [XNIO-1 task-2] loRxe-THS7ybPWaxtE7JsQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.377 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.377 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.377 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.378 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.378 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.378 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG com.networknt.schema.TypeValidator debug - validate( "a846ab62-e221-47f0-aa8b-4588e5767101", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.378 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.378 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.378 [XNIO-1 task-2] B46FLzkfQXyYLlxGd2Enzg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.388 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:fb07cf0a-f55c-4ed7-829d-7e84c45ef764 +16:40:55.389 [XNIO-1 task-2] HhmQOejxTYmwzczFA6-xHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f5aa3580 +16:40:55.389 [XNIO-1 task-2] HhmQOejxTYmwzczFA6-xHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.389 [XNIO-1 task-2] HhmQOejxTYmwzczFA6-xHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.389 [XNIO-1 task-2] HhmQOejxTYmwzczFA6-xHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f5aa3580 +16:40:55.398 [XNIO-1 task-2] jWdu4mL-RyuGHxDBh2belg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.398 [XNIO-1 task-2] jWdu4mL-RyuGHxDBh2belg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.398 [XNIO-1 task-2] jWdu4mL-RyuGHxDBh2belg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.398 [XNIO-1 task-2] jWdu4mL-RyuGHxDBh2belg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG com.networknt.schema.TypeValidator debug - validate( "c785a1cc-acca-4441-a583-2aaadd6c", {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.405 [XNIO-1 task-2] ORty4BaoSIezqjmCvjrqsg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c79c4aff","serviceName":"c785a1cc-acca-4441-a583-2aaadd6c","serviceDesc":"4f44aeb2-c73a-4ab1-a653-71cf60eb51c9","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.406 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:c79c4aff +16:40:55.408 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:fb07cf0a-f55c-4ed7-829d-7e84c45ef764 +16:40:55.413 [XNIO-1 task-2] 5TarU9LZSIOHeZoVPb4meg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c79c4aff +16:40:55.413 [XNIO-1 task-2] 5TarU9LZSIOHeZoVPb4meg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.414 [XNIO-1 task-2] 5TarU9LZSIOHeZoVPb4meg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.414 [XNIO-1 task-2] 5TarU9LZSIOHeZoVPb4meg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c79c4aff +16:40:55.414 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:c79c4aff +16:40:55.423 [XNIO-1 task-2] 4VkadVqSSJ6r-kBgmrBtsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.423 [XNIO-1 task-2] 4VkadVqSSJ6r-kBgmrBtsw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.423 [XNIO-1 task-2] 4VkadVqSSJ6r-kBgmrBtsw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.423 [XNIO-1 task-2] 4VkadVqSSJ6r-kBgmrBtsw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.432 [XNIO-1 task-2] UtC5Y_WfSwaqkgJflJF-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5b1fa95, base path is set to: null +16:40:55.433 [XNIO-1 task-2] UtC5Y_WfSwaqkgJflJF-Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.433 [XNIO-1 task-2] UtC5Y_WfSwaqkgJflJF-Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.433 [XNIO-1 task-2] UtC5Y_WfSwaqkgJflJF-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5b1fa95, base path is set to: null +16:40:55.433 [XNIO-1 task-2] UtC5Y_WfSwaqkgJflJF-Og DEBUG com.networknt.schema.TypeValidator debug - validate( "d5b1fa95", "d5b1fa95", serviceId) +16:40:55.436 [XNIO-1 task-2] UiOud0COSEe5iA6GrNMa8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.436 [XNIO-1 task-2] UiOud0COSEe5iA6GrNMa8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.436 [XNIO-1 task-2] UiOud0COSEe5iA6GrNMa8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.451 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.451 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.451 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.451 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.451 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.451 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG com.networknt.schema.TypeValidator debug - validate( "daba8732-fa0e-402b-9e4e-9c92d14839cc", {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.452 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG com.networknt.schema.TypeValidator debug - validate( "40139f4d", {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.452 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.452 [XNIO-1 task-2] mNmQwDY5T6OQCRDq1g9CJw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"40139f4d","serviceName":"ec4ed48b-6c42-409e-9646-471565d7","serviceDesc":"daba8732-fa0e-402b-9e4e-9c92d14839cc","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.459 [XNIO-1 task-2] obt4QlsiRh6FjDD3nFlClA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5b1fa95 +16:40:55.459 [XNIO-1 task-2] obt4QlsiRh6FjDD3nFlClA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.459 [XNIO-1 task-2] obt4QlsiRh6FjDD3nFlClA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.459 [XNIO-1 task-2] obt4QlsiRh6FjDD3nFlClA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/d5b1fa95 +16:40:55.461 [XNIO-1 task-2] eqCIj9jMTI6ZV_pHMAgWxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5b1fa95, base path is set to: null +16:40:55.461 [XNIO-1 task-2] eqCIj9jMTI6ZV_pHMAgWxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.462 [XNIO-1 task-2] eqCIj9jMTI6ZV_pHMAgWxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.462 [XNIO-1 task-2] eqCIj9jMTI6ZV_pHMAgWxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d5b1fa95, base path is set to: null +16:40:55.462 [XNIO-1 task-2] eqCIj9jMTI6ZV_pHMAgWxg DEBUG com.networknt.schema.TypeValidator debug - validate( "d5b1fa95", "d5b1fa95", serviceId) +16:40:55.481 [XNIO-1 task-2] toHcecpYQu2nC6MQA6y08g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.481 [XNIO-1 task-2] toHcecpYQu2nC6MQA6y08g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.481 [XNIO-1 task-2] toHcecpYQu2nC6MQA6y08g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.494 [XNIO-1 task-2] Q_4piOaNSQCxuFg_Hb80ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.494 [XNIO-1 task-2] Q_4piOaNSQCxuFg_Hb80ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.494 [XNIO-1 task-2] Q_4piOaNSQCxuFg_Hb80ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.494 [XNIO-1 task-2] Q_4piOaNSQCxuFg_Hb80ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.501 [XNIO-1 task-2] Ql3aTfAVQx2hSspIjIXUdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2700293d, base path is set to: null +16:40:55.502 [XNIO-1 task-2] Ql3aTfAVQx2hSspIjIXUdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.502 [XNIO-1 task-2] Ql3aTfAVQx2hSspIjIXUdA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.502 [XNIO-1 task-2] Ql3aTfAVQx2hSspIjIXUdA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2700293d, base path is set to: null +16:40:55.502 [XNIO-1 task-2] Ql3aTfAVQx2hSspIjIXUdA DEBUG com.networknt.schema.TypeValidator debug - validate( "2700293d", "2700293d", serviceId) +16:40:55.505 [XNIO-1 task-2] S5bRflWJQhKZD5l_uO-Awg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6fb70b47 +16:40:55.506 [XNIO-1 task-2] S5bRflWJQhKZD5l_uO-Awg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.506 [XNIO-1 task-2] S5bRflWJQhKZD5l_uO-Awg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.506 [XNIO-1 task-2] S5bRflWJQhKZD5l_uO-Awg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6fb70b47 +16:40:55.506 [hz._hzInstance_1_dev.partition-operation.thread-9] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6fb70b47 +16:40:55.516 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.516 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.516 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.516 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.517 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.517 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.517 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.517 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "41f626e9-cc25-43c3-9de9-b61633a0", {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.517 [XNIO-1 task-2] Oqufjj05Q-OHbflXk5WtcQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"f0b29515","serviceName":"41f626e9-cc25-43c3-9de9-b61633a0","serviceDesc":"00685117-c054-4739-9ac7-994666de452c","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.526 [XNIO-1 task-2] fBCJ9cthQduaqQIbaPn-gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/331a973d, base path is set to: null +16:40:55.526 [XNIO-1 task-2] fBCJ9cthQduaqQIbaPn-gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.526 [XNIO-1 task-2] fBCJ9cthQduaqQIbaPn-gA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.526 [XNIO-1 task-2] fBCJ9cthQduaqQIbaPn-gA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/331a973d, base path is set to: null +16:40:55.526 [XNIO-1 task-2] fBCJ9cthQduaqQIbaPn-gA DEBUG com.networknt.schema.TypeValidator debug - validate( "331a973d", "331a973d", serviceId) +16:40:55.535 [XNIO-1 task-2] k2zQKp-2Q6ieSa3CjSgGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.535 [XNIO-1 task-2] k2zQKp-2Q6ieSa3CjSgGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.535 [XNIO-1 task-2] k2zQKp-2Q6ieSa3CjSgGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.535 [XNIO-1 task-2] k2zQKp-2Q6ieSa3CjSgGcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.540 [XNIO-1 task-2] BgHSBEi0Tx2xK_g1s9xgvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7cd47fd, base path is set to: null +16:40:55.540 [XNIO-1 task-2] BgHSBEi0Tx2xK_g1s9xgvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.541 [XNIO-1 task-2] BgHSBEi0Tx2xK_g1s9xgvA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.541 [XNIO-1 task-2] BgHSBEi0Tx2xK_g1s9xgvA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f7cd47fd, base path is set to: null +16:40:55.541 [XNIO-1 task-2] BgHSBEi0Tx2xK_g1s9xgvA DEBUG com.networknt.schema.TypeValidator debug - validate( "f7cd47fd", "f7cd47fd", serviceId) +16:40:55.547 [XNIO-1 task-2] EcBao1D0S1-f-ouAyN9F9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f7cd47fd +16:40:55.548 [XNIO-1 task-2] EcBao1D0S1-f-ouAyN9F9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.548 [XNIO-1 task-2] EcBao1D0S1-f-ouAyN9F9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.548 [XNIO-1 task-2] EcBao1D0S1-f-ouAyN9F9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/f7cd47fd +16:40:55.557 [XNIO-1 task-2] RAbvlorzSEaoTJNvpofsEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.557 [XNIO-1 task-2] RAbvlorzSEaoTJNvpofsEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.557 [XNIO-1 task-2] RAbvlorzSEaoTJNvpofsEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.557 [XNIO-1 task-2] RAbvlorzSEaoTJNvpofsEA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.565 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.565 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.565 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.565 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.565 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.566 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.566 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.566 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG com.networknt.schema.TypeValidator debug - validate( "c60cc4b0-b600-4f92-b243-d49fc60e", {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.566 [XNIO-1 task-2] NilOJH2dSHmcD4ivZirHaA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.571 [XNIO-1 task-2] JbbHiZ1AQ-GV_Nt3ZC2z5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.572 [XNIO-1 task-2] JbbHiZ1AQ-GV_Nt3ZC2z5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.572 [XNIO-1 task-2] JbbHiZ1AQ-GV_Nt3ZC2z5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.572 [XNIO-1 task-2] JbbHiZ1AQ-GV_Nt3ZC2z5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.579 [XNIO-1 task-2] 95zEFRF_Si6RzvNt1MxByA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a9c68d0a, base path is set to: null +16:40:55.579 [XNIO-1 task-2] 95zEFRF_Si6RzvNt1MxByA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.579 [XNIO-1 task-2] 95zEFRF_Si6RzvNt1MxByA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.579 [XNIO-1 task-2] 95zEFRF_Si6RzvNt1MxByA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/a9c68d0a, base path is set to: null +16:40:55.580 [XNIO-1 task-2] 95zEFRF_Si6RzvNt1MxByA DEBUG com.networknt.schema.TypeValidator debug - validate( "a9c68d0a", "a9c68d0a", serviceId) +16:40:55.598 [XNIO-1 task-2] 1bC22_tKSxy4P4465Hmdcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.598 [XNIO-1 task-2] 1bC22_tKSxy4P4465Hmdcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.598 [XNIO-1 task-2] 1bC22_tKSxy4P4465Hmdcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.610 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.610 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.610 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.611 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.611 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.611 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG com.networknt.schema.TypeValidator debug - validate( "5e52529e-e436-4e4f-9f1d-a2fe9a388448", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.611 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG com.networknt.schema.TypeValidator debug - validate( "7e899b73", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.611 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.611 [XNIO-1 task-2] Q_Te9lzkQRa79pKN1uxqng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.620 [XNIO-1 task-2] AxzGQz6_RVWoPeXA00sHPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/986d41b0 +16:40:55.620 [XNIO-1 task-2] AxzGQz6_RVWoPeXA00sHPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.620 [XNIO-1 task-2] AxzGQz6_RVWoPeXA00sHPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.620 [XNIO-1 task-2] AxzGQz6_RVWoPeXA00sHPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/986d41b0 +16:40:55.636 [XNIO-1 task-2] k8-bfVdHQuGo1us4g8qiKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b0f7919, base path is set to: null +16:40:55.636 [XNIO-1 task-2] k8-bfVdHQuGo1us4g8qiKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.636 [XNIO-1 task-2] k8-bfVdHQuGo1us4g8qiKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.636 [XNIO-1 task-2] k8-bfVdHQuGo1us4g8qiKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/6b0f7919, base path is set to: null +16:40:55.637 [XNIO-1 task-2] k8-bfVdHQuGo1us4g8qiKA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b0f7919", "6b0f7919", serviceId) +16:40:55.640 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.641 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.641 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.641 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.642 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.642 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG com.networknt.schema.TypeValidator debug - validate( "a846ab62-e221-47f0-aa8b-4588e5767101", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.642 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.642 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.642 [XNIO-1 task-2] XChtl4JdRoSUsz4WUxqBwA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.653 [XNIO-1 task-2] S9m4OhITRlyQZsq3pnpsAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b0f7919 +16:40:55.653 [XNIO-1 task-2] S9m4OhITRlyQZsq3pnpsAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.653 [XNIO-1 task-2] S9m4OhITRlyQZsq3pnpsAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.653 [XNIO-1 task-2] S9m4OhITRlyQZsq3pnpsAA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6b0f7919 +16:40:55.658 [XNIO-1 task-2] ckMOTMOQTM-dZngTcAnflg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.658 [XNIO-1 task-2] ckMOTMOQTM-dZngTcAnflg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.659 [XNIO-1 task-2] ckMOTMOQTM-dZngTcAnflg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.659 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:75191b08 +16:40:55.659 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:75191b08 +16:40:55.667 [XNIO-1 task-2] EjXpPUVVQC-KxBhvKE3iCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/75191b08 +16:40:55.667 [XNIO-1 task-2] EjXpPUVVQC-KxBhvKE3iCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.667 [XNIO-1 task-2] EjXpPUVVQC-KxBhvKE3iCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.667 [XNIO-1 task-2] EjXpPUVVQC-KxBhvKE3iCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/75191b08 +16:40:55.673 [XNIO-1 task-2] kr69DYJcTaOHIgxZjloM4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.674 [XNIO-1 task-2] kr69DYJcTaOHIgxZjloM4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.674 [XNIO-1 task-2] kr69DYJcTaOHIgxZjloM4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.674 [XNIO-1 task-2] kr69DYJcTaOHIgxZjloM4A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.684 [XNIO-1 task-2] bdUVDay0QjqV57G5S8nLFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.684 [XNIO-1 task-2] bdUVDay0QjqV57G5S8nLFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.684 [XNIO-1 task-2] bdUVDay0QjqV57G5S8nLFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.684 [XNIO-1 task-2] bdUVDay0QjqV57G5S8nLFA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.691 [XNIO-1 task-2] g4WcPjpIQNCvEa2XmmuhKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.691 [XNIO-1 task-2] g4WcPjpIQNCvEa2XmmuhKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.691 [XNIO-1 task-2] g4WcPjpIQNCvEa2XmmuhKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.702 [XNIO-1 task-2] WRKxSpnpTZGjPKJ3EsMr3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.702 [XNIO-1 task-2] WRKxSpnpTZGjPKJ3EsMr3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.702 [XNIO-1 task-2] WRKxSpnpTZGjPKJ3EsMr3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.702 [XNIO-1 task-2] WRKxSpnpTZGjPKJ3EsMr3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.713 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.713 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.714 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.714 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.714 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.714 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.714 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.714 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG com.networknt.schema.TypeValidator debug - validate( "7921bc90-b8a7-4601-bea3-f984ed44", {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.714 [XNIO-1 task-2] nFgMHDDjRmOycHJWOZDXSw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"0ea35953","serviceName":"7921bc90-b8a7-4601-bea3-f984ed44","serviceDesc":"797b6a73-604a-4111-96a4-827df6c82319","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.722 [XNIO-1 task-2] wiWZ-E7STyqphx1CR6WSGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40139f4d, base path is set to: null +16:40:55.722 [XNIO-1 task-2] wiWZ-E7STyqphx1CR6WSGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.722 [XNIO-1 task-2] wiWZ-E7STyqphx1CR6WSGg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.722 [XNIO-1 task-2] wiWZ-E7STyqphx1CR6WSGg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/40139f4d, base path is set to: null +16:40:55.722 [XNIO-1 task-2] wiWZ-E7STyqphx1CR6WSGg DEBUG com.networknt.schema.TypeValidator debug - validate( "40139f4d", "40139f4d", serviceId) +16:40:55.725 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:1f118f7a-2a4a-4c16-976c-0b0baf565ef0 +16:40:55.732 [XNIO-1 task-2] GElZO67MTpWB-2WJLS20tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0b29515, base path is set to: null +16:40:55.732 [XNIO-1 task-2] GElZO67MTpWB-2WJLS20tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.732 [XNIO-1 task-2] GElZO67MTpWB-2WJLS20tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.732 [XNIO-1 task-2] GElZO67MTpWB-2WJLS20tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0b29515, base path is set to: null +16:40:55.732 [XNIO-1 task-2] GElZO67MTpWB-2WJLS20tA DEBUG com.networknt.schema.TypeValidator debug - validate( "f0b29515", "f0b29515", serviceId) +16:40:55.736 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.736 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.736 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.736 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.736 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.736 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG com.networknt.schema.TypeValidator debug - validate( "af61a2fc-0ba6-4b90-bac7-931459137a1d", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.737 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG com.networknt.schema.TypeValidator debug - validate( "65aa562e", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.737 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.737 [XNIO-1 task-2] l2Qk-mKLQf2-CgSr46-EMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"65aa562e","serviceName":"01464068-05c7-4a4c-ac1f-1340e55a","serviceDesc":"af61a2fc-0ba6-4b90-bac7-931459137a1d","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.745 [XNIO-1 task-2] 3eoGAJfNQD6CkvOPLKy5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.745 [XNIO-1 task-2] 3eoGAJfNQD6CkvOPLKy5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.745 [XNIO-1 task-2] 3eoGAJfNQD6CkvOPLKy5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.745 [XNIO-1 task-2] 3eoGAJfNQD6CkvOPLKy5BA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.746 [XNIO-1 task-2] ipDy5OPUTnCEDOOuI91EzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75191b08, base path is set to: null +16:40:55.747 [XNIO-1 task-2] ipDy5OPUTnCEDOOuI91EzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.747 [XNIO-1 task-2] ipDy5OPUTnCEDOOuI91EzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.747 [XNIO-1 task-2] ipDy5OPUTnCEDOOuI91EzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/75191b08, base path is set to: null +16:40:55.747 [XNIO-1 task-2] ipDy5OPUTnCEDOOuI91EzA DEBUG com.networknt.schema.TypeValidator debug - validate( "75191b08", "75191b08", serviceId) +16:40:55.747 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:75191b08 +16:40:55.755 [XNIO-1 task-2] _OTjKnYNR4KbYp7WtODB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ea35953 +16:40:55.755 [XNIO-1 task-2] _OTjKnYNR4KbYp7WtODB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.755 [XNIO-1 task-2] _OTjKnYNR4KbYp7WtODB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.755 [XNIO-1 task-2] _OTjKnYNR4KbYp7WtODB7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/0ea35953 +16:40:55.763 [XNIO-1 task-2] 0eufaIXfTx23IPZAWhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0b29515, base path is set to: null +16:40:55.764 [XNIO-1 task-2] 0eufaIXfTx23IPZAWhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.764 [XNIO-1 task-2] 0eufaIXfTx23IPZAWhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.764 [XNIO-1 task-2] 0eufaIXfTx23IPZAWhoy-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/f0b29515, base path is set to: null +16:40:55.764 [XNIO-1 task-2] 0eufaIXfTx23IPZAWhoy-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "f0b29515", "f0b29515", serviceId) +16:40:55.773 [XNIO-1 task-2] Rnb136gpSsKWtOmguF9_Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.773 [XNIO-1 task-2] Rnb136gpSsKWtOmguF9_Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.773 [XNIO-1 task-2] Rnb136gpSsKWtOmguF9_Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.773 [XNIO-1 task-2] Rnb136gpSsKWtOmguF9_Dw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2700293d +16:40:55.782 [XNIO-1 task-2] zG6vs5CwSHax2EDzvi-Mpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/369f21b3, base path is set to: null +16:40:55.782 [XNIO-1 task-2] zG6vs5CwSHax2EDzvi-Mpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.782 [XNIO-1 task-2] zG6vs5CwSHax2EDzvi-Mpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.782 [XNIO-1 task-2] zG6vs5CwSHax2EDzvi-Mpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/369f21b3, base path is set to: null +16:40:55.782 [XNIO-1 task-2] zG6vs5CwSHax2EDzvi-Mpw DEBUG com.networknt.schema.TypeValidator debug - validate( "369f21b3", "369f21b3", serviceId) +16:40:55.795 [XNIO-1 task-2] PBfpyuA1TYG1RbV6FYreJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a3d5532 +16:40:55.795 [XNIO-1 task-2] PBfpyuA1TYG1RbV6FYreJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.795 [XNIO-1 task-2] PBfpyuA1TYG1RbV6FYreJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.795 [XNIO-1 task-2] PBfpyuA1TYG1RbV6FYreJA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/6a3d5532 +16:40:55.802 [XNIO-1 task-2] dEtrQS4TSzaYheTWPPcB9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65aa562e, base path is set to: null +16:40:55.803 [XNIO-1 task-2] dEtrQS4TSzaYheTWPPcB9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.803 [XNIO-1 task-2] dEtrQS4TSzaYheTWPPcB9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.803 [XNIO-1 task-2] dEtrQS4TSzaYheTWPPcB9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/65aa562e, base path is set to: null +16:40:55.803 [XNIO-1 task-2] dEtrQS4TSzaYheTWPPcB9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "65aa562e", "65aa562e", serviceId) +16:40:55.814 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "986b80af-edee-49f2-bfcf-97fb582df594", {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b59d02c8", {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.815 [XNIO-1 task-2] mvjojcUgSgy5htu0db7cAQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"b59d02c8","serviceName":"c60cc4b0-b600-4f92-b243-d49fc60e","serviceDesc":"986b80af-edee-49f2-bfcf-97fb582df594","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.826 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG com.networknt.schema.TypeValidator debug - validate( "5e52529e-e436-4e4f-9f1d-a2fe9a388448", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG com.networknt.schema.TypeValidator debug - validate( "7e899b73", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.827 [XNIO-1 task-2] G16SYKAmTZmVD393PdhBDw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"7e899b73","serviceName":"8a8a81f7-be4b-4111-8421-b968798c","serviceDesc":"5e52529e-e436-4e4f-9f1d-a2fe9a388448","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.838 [XNIO-1 task-2] uCwlSIqdROStu6pmTlchkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b59d02c8 +16:40:55.838 [XNIO-1 task-2] uCwlSIqdROStu6pmTlchkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.838 [XNIO-1 task-2] uCwlSIqdROStu6pmTlchkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.838 [XNIO-1 task-2] uCwlSIqdROStu6pmTlchkQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/b59d02c8 +16:40:55.851 [XNIO-1 task-2] b4h9REJERAy21Iyt3xlM-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.851 [XNIO-1 task-2] b4h9REJERAy21Iyt3xlM-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.851 [XNIO-1 task-2] b4h9REJERAy21Iyt3xlM-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.857 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:71524cec-8f6a-4a12-a8d1-4ae4855c2e3d +16:40:55.859 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:71524cec-8f6a-4a12-a8d1-4ae4855c2e3d +16:40:55.859 [XNIO-1 task-2] bcgY_45lRyy0gI58Gy1Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be0605c1 +16:40:55.859 [XNIO-1 task-2] bcgY_45lRyy0gI58Gy1Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.859 [XNIO-1 task-2] bcgY_45lRyy0gI58Gy1Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.859 [XNIO-1 task-2] bcgY_45lRyy0gI58Gy1Wkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be0605c1 +16:40:55.861 [XNIO-1 task-2] V_ErGl_bSfq2U7Uba4Lp4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.861 [XNIO-1 task-2] V_ErGl_bSfq2U7Uba4Lp4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.861 [XNIO-1 task-2] V_ErGl_bSfq2U7Uba4Lp4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.861 [XNIO-1 task-2] V_ErGl_bSfq2U7Uba4Lp4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.867 [XNIO-1 task-2] vMKGmHE6R3y-EZeeTtPqgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.868 [XNIO-1 task-2] vMKGmHE6R3y-EZeeTtPqgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.868 [XNIO-1 task-2] vMKGmHE6R3y-EZeeTtPqgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.868 [XNIO-1 task-2] vMKGmHE6R3y-EZeeTtPqgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.870 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:71524cec-8f6a-4a12-a8d1-4ae4855c2e3d +16:40:55.881 [XNIO-1 task-2] MPFA4FHSQr-8uYno7IZOqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be0605c1 +16:40:55.881 [XNIO-1 task-2] MPFA4FHSQr-8uYno7IZOqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.881 [XNIO-1 task-2] MPFA4FHSQr-8uYno7IZOqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.881 [XNIO-1 task-2] MPFA4FHSQr-8uYno7IZOqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/be0605c1 +16:40:55.895 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.895 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.895 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.896 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.896 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.896 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.896 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.896 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ad7a0a15-cae8-43e3-8886-acd875a3", {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.896 [XNIO-1 task-2] _Do_IV29Q12WnrqlB-3SQQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"d9cff27c","serviceName":"ad7a0a15-cae8-43e3-8886-acd875a3","serviceDesc":"6b9b6bf4-8880-4715-b92f-72c1a0608b7f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.908 [XNIO-1 task-2] lEktWHyFS86aMYNkvfSE8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.908 [XNIO-1 task-2] lEktWHyFS86aMYNkvfSE8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.908 [XNIO-1 task-2] lEktWHyFS86aMYNkvfSE8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.921 [XNIO-1 task-2] ezJBs33aRjCfGZb4ttnTKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.921 [XNIO-1 task-2] ezJBs33aRjCfGZb4ttnTKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.921 [XNIO-1 task-2] ezJBs33aRjCfGZb4ttnTKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.930 [XNIO-1 task-2] jdXLFT5JTlaI76X2Mt1sSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.930 [XNIO-1 task-2] jdXLFT5JTlaI76X2Mt1sSQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.930 [XNIO-1 task-2] jdXLFT5JTlaI76X2Mt1sSQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.930 [XNIO-1 task-2] jdXLFT5JTlaI76X2Mt1sSQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.945 [XNIO-1 task-2] sISLGpi3QrWscf6xzQwEIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7e899b73, base path is set to: null +16:40:55.945 [XNIO-1 task-2] sISLGpi3QrWscf6xzQwEIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.945 [XNIO-1 task-2] sISLGpi3QrWscf6xzQwEIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:55.945 [XNIO-1 task-2] sISLGpi3QrWscf6xzQwEIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/7e899b73, base path is set to: null +16:40:55.945 [XNIO-1 task-2] sISLGpi3QrWscf6xzQwEIA DEBUG com.networknt.schema.TypeValidator debug - validate( "7e899b73", "7e899b73", serviceId) +16:40:55.951 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.951 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.952 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.952 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.952 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.952 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG com.networknt.schema.TypeValidator debug - validate( "860df40f-2702-4259-8baf-3f819d508117", {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:55.952 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG com.networknt.schema.TypeValidator debug - validate( "53d66e81", {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:55.952 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:55.952 [XNIO-1 task-2] WcXV2PKTSMOI5lGynj3Clg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"53d66e81","serviceName":"750f53b7-5b08-4101-94d1-1fbdb3f2","serviceDesc":"860df40f-2702-4259-8baf-3f819d508117","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.962 [XNIO-1 task-2] R24sAH2kSTWZ-JW338Zx3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7e899b73 +16:40:55.962 [XNIO-1 task-2] R24sAH2kSTWZ-JW338Zx3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:55.962 [XNIO-1 task-2] R24sAH2kSTWZ-JW338Zx3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:55.962 [XNIO-1 task-2] R24sAH2kSTWZ-JW338Zx3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/7e899b73 +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:55.972 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5f7305cf-f2f6-4232-bd76-0bc4209b", {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:55.973 [XNIO-1 task-2] 6dCIe_K8RIeIX8huxzcRaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"c5386a67","serviceName":"5f7305cf-f2f6-4232-bd76-0bc4209b","serviceDesc":"a846ab62-e221-47f0-aa8b-4588e5767101","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:55.986 [XNIO-1 task-2] Oj_0T-0hSFGGUFDE-frkiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.986 [XNIO-1 task-2] Oj_0T-0hSFGGUFDE-frkiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.987 [XNIO-1 task-2] Oj_0T-0hSFGGUFDE-frkiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.987 [XNIO-1 task-2] Oj_0T-0hSFGGUFDE-frkiA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.995 [XNIO-1 task-2] o80_xroITTCVK0w_u4KqPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:55.995 [XNIO-1 task-2] o80_xroITTCVK0w_u4KqPA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:55.995 [XNIO-1 task-2] o80_xroITTCVK0w_u4KqPA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.006 [XNIO-1 task-2] yA324A2tTFeNe2HF-4nk7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:56.006 [XNIO-1 task-2] yA324A2tTFeNe2HF-4nk7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.006 [XNIO-1 task-2] yA324A2tTFeNe2HF-4nk7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:56.006 [XNIO-1 task-2] yA324A2tTFeNe2HF-4nk7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/c5386a67, base path is set to: null +16:40:56.006 [XNIO-1 task-2] yA324A2tTFeNe2HF-4nk7g DEBUG com.networknt.schema.TypeValidator debug - validate( "c5386a67", "c5386a67", serviceId) +16:40:56.014 [XNIO-1 task-2] wIL2kwmuRTyhG7wgX_NlaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5386a67 +16:40:56.014 [XNIO-1 task-2] wIL2kwmuRTyhG7wgX_NlaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.014 [XNIO-1 task-2] wIL2kwmuRTyhG7wgX_NlaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.014 [XNIO-1 task-2] wIL2kwmuRTyhG7wgX_NlaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/c5386a67 +16:40:56.020 [XNIO-1 task-2] c_mwf9_DTNa3EzoyCkkeYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.020 [XNIO-1 task-2] c_mwf9_DTNa3EzoyCkkeYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.020 [XNIO-1 task-2] c_mwf9_DTNa3EzoyCkkeYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.022 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2893bf71-4180-4f43-8397-f247874f32ce +16:40:56.024 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:2893bf71-4180-4f43-8397-f247874f32ce +16:40:56.036 [XNIO-1 task-2] khKvm_2hSL2dlhJim_52Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2274b71b +16:40:56.036 [XNIO-1 task-2] khKvm_2hSL2dlhJim_52Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.036 [XNIO-1 task-2] khKvm_2hSL2dlhJim_52Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.036 [XNIO-1 task-2] khKvm_2hSL2dlhJim_52Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2274b71b +16:40:56.039 [XNIO-1 task-2] Oh4mmefcQ62eR9CqfRxUFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2274b71b, base path is set to: null +16:40:56.039 [XNIO-1 task-2] Oh4mmefcQ62eR9CqfRxUFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.040 [XNIO-1 task-2] Oh4mmefcQ62eR9CqfRxUFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:56.040 [XNIO-1 task-2] Oh4mmefcQ62eR9CqfRxUFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2274b71b, base path is set to: null +16:40:56.040 [XNIO-1 task-2] Oh4mmefcQ62eR9CqfRxUFA DEBUG com.networknt.schema.TypeValidator debug - validate( "2274b71b", "2274b71b", serviceId) +16:40:56.042 [XNIO-1 task-2] o6ofldfYSOCQRt1TDx63Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.042 [XNIO-1 task-2] o6ofldfYSOCQRt1TDx63Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.042 [XNIO-1 task-2] o6ofldfYSOCQRt1TDx63Kw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.048 [XNIO-1 task-2] ba1trcDxQ0mey41_LkRqFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.048 [XNIO-1 task-2] ba1trcDxQ0mey41_LkRqFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.049 [XNIO-1 task-2] ba1trcDxQ0mey41_LkRqFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.074 [XNIO-1 task-2] nFa2rzZASxyt3YNdn6IO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48f823a7 +16:40:56.074 [XNIO-1 task-2] nFa2rzZASxyt3YNdn6IO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.074 [XNIO-1 task-2] nFa2rzZASxyt3YNdn6IO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.074 [XNIO-1 task-2] nFa2rzZASxyt3YNdn6IO3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/48f823a7 +16:40:56.084 [XNIO-1 task-2] JJf82J6oQdizUoZccdl_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.084 [XNIO-1 task-2] JJf82J6oQdizUoZccdl_Ww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.084 [XNIO-1 task-2] JJf82J6oQdizUoZccdl_Ww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.084 [XNIO-1 task-2] JJf82J6oQdizUoZccdl_Ww DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.096 [XNIO-1 task-2] uvE8zFKgRly9RPjQ8r_BtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.096 [XNIO-1 task-2] uvE8zFKgRly9RPjQ8r_BtA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.096 [XNIO-1 task-2] uvE8zFKgRly9RPjQ8r_BtA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.096 [XNIO-1 task-2] uvE8zFKgRly9RPjQ8r_BtA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.122 [XNIO-1 task-2] owqohSmvSxqgdKvj8Ui9Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.122 [XNIO-1 task-2] owqohSmvSxqgdKvj8Ui9Dg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.122 [XNIO-1 task-2] owqohSmvSxqgdKvj8Ui9Dg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.123 [XNIO-1 task-2] owqohSmvSxqgdKvj8Ui9Dg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.125 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2a9f0831-f08d-4e95-a8f3-21bda596fc3b +16:40:56.136 [XNIO-1 task-2] 1PO8Z1T9QXKFHLR1ChTmsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.136 [XNIO-1 task-2] 1PO8Z1T9QXKFHLR1ChTmsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.136 [XNIO-1 task-2] 1PO8Z1T9QXKFHLR1ChTmsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.136 [XNIO-1 task-2] 1PO8Z1T9QXKFHLR1ChTmsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.141 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:840a8d16-721b-4405-a76f-a5abea089cee +16:40:56.146 [XNIO-1 task-2] P1JWwT-yTYSv7GKyoQGUzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/53d66e81 +16:40:56.146 [XNIO-1 task-2] P1JWwT-yTYSv7GKyoQGUzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.146 [XNIO-1 task-2] P1JWwT-yTYSv7GKyoQGUzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.147 [XNIO-1 task-2] P1JWwT-yTYSv7GKyoQGUzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/53d66e81 +16:40:56.159 [XNIO-1 task-2] Er2nRFAsSwqmOqJaaGQy-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.159 [XNIO-1 task-2] Er2nRFAsSwqmOqJaaGQy-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.159 [XNIO-1 task-2] Er2nRFAsSwqmOqJaaGQy-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:56.159 [XNIO-1 task-2] Er2nRFAsSwqmOqJaaGQy-A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.167 [XNIO-1 task-2] MtRhzIQSSDOlXKxBJo-84w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e29941b4, base path is set to: null +16:40:56.167 [XNIO-1 task-2] MtRhzIQSSDOlXKxBJo-84w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.167 [XNIO-1 task-2] MtRhzIQSSDOlXKxBJo-84w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:56.168 [XNIO-1 task-2] MtRhzIQSSDOlXKxBJo-84w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e29941b4, base path is set to: null +16:40:56.168 [XNIO-1 task-2] MtRhzIQSSDOlXKxBJo-84w DEBUG com.networknt.schema.TypeValidator debug - validate( "e29941b4", "e29941b4", serviceId) +16:40:56.169 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a19d23e6-68a3-4778-90c0-d1f36d3d98af +16:40:56.171 [XNIO-1 task-2] 3BmK62JvTrav4c3XtYXhnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.171 [XNIO-1 task-2] 3BmK62JvTrav4c3XtYXhnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.171 [XNIO-1 task-2] 3BmK62JvTrav4c3XtYXhnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.183 [XNIO-1 task-2] aSX_XhCFTTqQ2CJvBbxlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9708d78e +16:40:56.183 [XNIO-1 task-2] aSX_XhCFTTqQ2CJvBbxlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.183 [XNIO-1 task-2] aSX_XhCFTTqQ2CJvBbxlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.184 [XNIO-1 task-2] aSX_XhCFTTqQ2CJvBbxlhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9708d78e +16:40:56.187 [XNIO-1 task-2] bOfZTZqLRuajstUlKyic2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e29941b4, base path is set to: null +16:40:56.187 [XNIO-1 task-2] bOfZTZqLRuajstUlKyic2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.187 [XNIO-1 task-2] bOfZTZqLRuajstUlKyic2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:56.187 [XNIO-1 task-2] bOfZTZqLRuajstUlKyic2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/e29941b4, base path is set to: null +16:40:56.187 [XNIO-1 task-2] bOfZTZqLRuajstUlKyic2g DEBUG com.networknt.schema.TypeValidator debug - validate( "e29941b4", "e29941b4", serviceId) +16:40:56.200 [XNIO-1 task-2] BAAERKmNRbOJNIm8Oost5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.200 [XNIO-1 task-2] BAAERKmNRbOJNIm8Oost5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.200 [XNIO-1 task-2] BAAERKmNRbOJNIm8Oost5Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.210 [XNIO-1 task-2] HU_mzYreRM2JypH85tFSbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9708d78e +16:40:56.210 [XNIO-1 task-2] HU_mzYreRM2JypH85tFSbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.210 [XNIO-1 task-2] HU_mzYreRM2JypH85tFSbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.210 [XNIO-1 task-2] HU_mzYreRM2JypH85tFSbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/9708d78e +16:40:56.216 [XNIO-1 task-2] cFjmdJwTRoao084F_YQmIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d9cff27c, base path is set to: null +16:40:56.216 [XNIO-1 task-2] cFjmdJwTRoao084F_YQmIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.217 [XNIO-1 task-2] cFjmdJwTRoao084F_YQmIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:56.217 [XNIO-1 task-2] cFjmdJwTRoao084F_YQmIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/d9cff27c, base path is set to: null +16:40:56.217 [XNIO-1 task-2] cFjmdJwTRoao084F_YQmIw DEBUG com.networknt.schema.TypeValidator debug - validate( "d9cff27c", "d9cff27c", serviceId) +16:40:56.223 [XNIO-1 task-2] NWPJdkRWTf62yo5mcLgZlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.223 [XNIO-1 task-2] NWPJdkRWTf62yo5mcLgZlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.223 [XNIO-1 task-2] NWPJdkRWTf62yo5mcLgZlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.224 [XNIO-1 task-2] NWPJdkRWTf62yo5mcLgZlA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.242 [XNIO-1 task-2] W1sHLHAuRnOpcLBmHex0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.243 [XNIO-1 task-2] W1sHLHAuRnOpcLBmHex0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.243 [XNIO-1 task-2] W1sHLHAuRnOpcLBmHex0Aw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.243 [XNIO-1 task-2] W1sHLHAuRnOpcLBmHex0Aw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.255 [XNIO-1 task-2] ZUCbUGmqTNOxm6-kNQC0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.255 [XNIO-1 task-2] ZUCbUGmqTNOxm6-kNQC0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.255 [XNIO-1 task-2] ZUCbUGmqTNOxm6-kNQC0RA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.262 [XNIO-1 task-2] gHsUa5JMQIu7xz0sXALVbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd6650d7 +16:40:56.262 [XNIO-1 task-2] gHsUa5JMQIu7xz0sXALVbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.262 [XNIO-1 task-2] gHsUa5JMQIu7xz0sXALVbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.262 [XNIO-1 task-2] gHsUa5JMQIu7xz0sXALVbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/fd6650d7 +16:40:56.268 [XNIO-1 task-2] pVPukFgnSyuT6im8gYGInA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd6650d7, base path is set to: null +16:40:56.268 [XNIO-1 task-2] pVPukFgnSyuT6im8gYGInA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.268 [XNIO-1 task-2] pVPukFgnSyuT6im8gYGInA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:56.268 [XNIO-1 task-2] pVPukFgnSyuT6im8gYGInA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/fd6650d7, base path is set to: null +16:40:56.268 [XNIO-1 task-2] pVPukFgnSyuT6im8gYGInA DEBUG com.networknt.schema.TypeValidator debug - validate( "fd6650d7", "fd6650d7", serviceId) +16:40:56.281 [XNIO-1 task-2] I6TEpkvtQCu26OQ5LYzekg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.281 [XNIO-1 task-2] I6TEpkvtQCu26OQ5LYzekg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.281 [XNIO-1 task-2] I6TEpkvtQCu26OQ5LYzekg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.290 [XNIO-1 task-2] IYV55eKnRsiOXaYjQR9yog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.290 [XNIO-1 task-2] IYV55eKnRsiOXaYjQR9yog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.290 [XNIO-1 task-2] IYV55eKnRsiOXaYjQR9yog DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.290 [XNIO-1 task-2] IYV55eKnRsiOXaYjQR9yog DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.307 [XNIO-1 task-2] btnKF0mPQ8Sjd6lj52iswA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.308 [XNIO-1 task-2] btnKF0mPQ8Sjd6lj52iswA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.308 [XNIO-1 task-2] btnKF0mPQ8Sjd6lj52iswA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.308 [XNIO-1 task-2] btnKF0mPQ8Sjd6lj52iswA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.312 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b27f021-4e94-40cc-9576-f3011822e07b +16:40:56.314 [XNIO-1 task-2] yUC_Rg37ShGg62TE9ed_Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.314 [XNIO-1 task-2] yUC_Rg37ShGg62TE9ed_Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.314 [XNIO-1 task-2] yUC_Rg37ShGg62TE9ed_Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.314 [XNIO-1 task-2] yUC_Rg37ShGg62TE9ed_Ng DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.326 [XNIO-1 task-2] QM1C8vtXSBatYdyRpQfVLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.326 [XNIO-1 task-2] QM1C8vtXSBatYdyRpQfVLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.326 [XNIO-1 task-2] QM1C8vtXSBatYdyRpQfVLg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.335 [XNIO-1 task-2] AXdi8z52THaE_awqEnDIyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2274b71b +16:40:56.335 [XNIO-1 task-2] AXdi8z52THaE_awqEnDIyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.335 [XNIO-1 task-2] AXdi8z52THaE_awqEnDIyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:56.335 [XNIO-1 task-2] AXdi8z52THaE_awqEnDIyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2274b71b +16:40:56.342 [XNIO-1 task-2] mINEN_gcQ2ipx-T7NIX7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2274b71b, base path is set to: null +16:40:56.342 [XNIO-1 task-2] mINEN_gcQ2ipx-T7NIX7Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:56.342 [XNIO-1 task-2] mINEN_gcQ2ipx-T7NIX7Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:56.342 [XNIO-1 task-2] mINEN_gcQ2ipx-T7NIX7Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2274b71b, base path is set to: null +16:40:56.342 [XNIO-1 task-2] mINEN_gcQ2ipx-T7NIX7Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "2274b71b", "2274b71b", serviceId) +16:40:56.348 [XNIO-1 task-2] T-nhNb2vTxSsF_iDcbwuDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.348 [XNIO-1 task-2] T-nhNb2vTxSsF_iDcbwuDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.348 [XNIO-1 task-2] T-nhNb2vTxSsF_iDcbwuDA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.348 [XNIO-1 task-2] T-nhNb2vTxSsF_iDcbwuDA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.356 [XNIO-1 task-2] 6BTMTOBvTY21FS26Zrpkmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.356 [XNIO-1 task-2] 6BTMTOBvTY21FS26Zrpkmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.356 [XNIO-1 task-2] 6BTMTOBvTY21FS26Zrpkmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:56.356 [XNIO-1 task-2] 6BTMTOBvTY21FS26Zrpkmg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.477 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:4b27f021-4e94-40cc-9576-f3011822e07b +16:40:57.596 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8cb1f071-a2ad-4b1c-a03b-59b28d617836 +16:40:57.599 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8cb1f071-a2ad-4b1c-a03b-59b28d617836 +16:40:57.610 [XNIO-1 task-2] a-x_4WmNTbW14jx32IkTFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2274b71b +16:40:57.610 [XNIO-1 task-2] a-x_4WmNTbW14jx32IkTFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.610 [XNIO-1 task-2] a-x_4WmNTbW14jx32IkTFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.610 [XNIO-1 task-2] a-x_4WmNTbW14jx32IkTFw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2274b71b +16:40:57.620 [XNIO-1 task-2] 04pVfyjUS7KiuPFhaC22fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.621 [XNIO-1 task-2] 04pVfyjUS7KiuPFhaC22fQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.621 [XNIO-1 task-2] 04pVfyjUS7KiuPFhaC22fQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.640 [XNIO-1 task-2] z6Hu4XWlRZiPlz0SvCB0iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.640 [XNIO-1 task-2] z6Hu4XWlRZiPlz0SvCB0iA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.641 [XNIO-1 task-2] z6Hu4XWlRZiPlz0SvCB0iA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.649 [XNIO-1 task-2] pGtZ-CF-SB2jRZfS82MDmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.649 [XNIO-1 task-2] pGtZ-CF-SB2jRZfS82MDmw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.649 [XNIO-1 task-2] pGtZ-CF-SB2jRZfS82MDmw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.649 [XNIO-1 task-2] pGtZ-CF-SB2jRZfS82MDmw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:57.664 [XNIO-1 task-2] 3pP4FEC-QCWubSZnOuL1qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.664 [XNIO-1 task-2] 3pP4FEC-QCWubSZnOuL1qw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.664 [XNIO-1 task-2] 3pP4FEC-QCWubSZnOuL1qw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.664 [XNIO-1 task-2] 3pP4FEC-QCWubSZnOuL1qw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:57.679 [XNIO-1 task-2] 6bP51n6nTeSrbsIwjcPMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.679 [XNIO-1 task-2] 6bP51n6nTeSrbsIwjcPMQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.679 [XNIO-1 task-2] 6bP51n6nTeSrbsIwjcPMQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.679 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5cfb24ce +16:40:57.679 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:5cfb24ce +16:40:57.693 [XNIO-1 task-2] G7tnUpVeSXGmj-UqObvhnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bbef356d +16:40:57.693 [XNIO-1 task-2] G7tnUpVeSXGmj-UqObvhnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.693 [XNIO-1 task-2] G7tnUpVeSXGmj-UqObvhnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.693 [XNIO-1 task-2] G7tnUpVeSXGmj-UqObvhnQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/bbef356d +16:40:57.703 [XNIO-1 task-2] SW4VlqPDTPWsqKrwr4vMig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7cb75d0, base path is set to: null +16:40:57.703 [XNIO-1 task-2] SW4VlqPDTPWsqKrwr4vMig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.703 [XNIO-1 task-2] SW4VlqPDTPWsqKrwr4vMig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:57.703 [XNIO-1 task-2] SW4VlqPDTPWsqKrwr4vMig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/b7cb75d0, base path is set to: null +16:40:57.704 [XNIO-1 task-2] SW4VlqPDTPWsqKrwr4vMig DEBUG com.networknt.schema.TypeValidator debug - validate( "b7cb75d0", "b7cb75d0", serviceId) +16:40:57.714 [XNIO-1 task-2] MbsblaFZQiCpujjJ6Cinbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e91dd96d +16:40:57.714 [XNIO-1 task-2] MbsblaFZQiCpujjJ6Cinbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.714 [XNIO-1 task-2] MbsblaFZQiCpujjJ6Cinbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.714 [XNIO-1 task-2] MbsblaFZQiCpujjJ6Cinbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/e91dd96d +16:40:57.718 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.718 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.718 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.719 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.719 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.719 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:57.719 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:57.719 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG com.networknt.schema.TypeValidator debug - validate( "0d5584ef-c500-4040-8d66-eeb50be3", {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:57.719 [XNIO-1 task-2] FPmk8NSrQrqnS6EDoySp3g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"ab230026","serviceName":"0d5584ef-c500-4040-8d66-eeb50be3","serviceDesc":"f8a11fb7-ad23-462f-b8ec-4c53d0d23c1f","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.730 [XNIO-1 task-2] _v0-lWn1TQurtJ5P15EmOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.730 [XNIO-1 task-2] _v0-lWn1TQurtJ5P15EmOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.731 [XNIO-1 task-2] _v0-lWn1TQurtJ5P15EmOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.731 [XNIO-1 task-2] _v0-lWn1TQurtJ5P15EmOA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:57.748 [XNIO-1 task-2] PeOmwuRuTjqTgBAzkvTHXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.748 [XNIO-1 task-2] PeOmwuRuTjqTgBAzkvTHXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.748 [XNIO-1 task-2] PeOmwuRuTjqTgBAzkvTHXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.748 [XNIO-1 task-2] PeOmwuRuTjqTgBAzkvTHXQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:57.771 [XNIO-1 task-2] xOJoFOiWQfSworjM5R4pxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/650f613d, base path is set to: null +16:40:57.771 [XNIO-1 task-2] xOJoFOiWQfSworjM5R4pxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.771 [XNIO-1 task-2] xOJoFOiWQfSworjM5R4pxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:57.771 [XNIO-1 task-2] xOJoFOiWQfSworjM5R4pxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/650f613d, base path is set to: null +16:40:57.771 [XNIO-1 task-2] xOJoFOiWQfSworjM5R4pxg DEBUG com.networknt.schema.TypeValidator debug - validate( "650f613d", "650f613d", serviceId) +16:40:57.776 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c503d59a-1839-4327-8711-bd881b1d7d04 +16:40:57.782 [XNIO-1 task-2] B4U-3G2tScSVf7gZgtdjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/650f613d +16:40:57.782 [XNIO-1 task-2] B4U-3G2tScSVf7gZgtdjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.782 [XNIO-1 task-2] B4U-3G2tScSVf7gZgtdjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.782 [XNIO-1 task-2] B4U-3G2tScSVf7gZgtdjfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/650f613d +16:40:57.788 [XNIO-1 task-2] JLFF79uwRKS0xPNRjREUGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.788 [XNIO-1 task-2] JLFF79uwRKS0xPNRjREUGw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.789 [XNIO-1 task-2] JLFF79uwRKS0xPNRjREUGw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.795 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:c503d59a-1839-4327-8711-bd881b1d7d04 +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG com.networknt.schema.TypeValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG com.networknt.schema.TypeValidator debug - validate( "aa5faa5f-24f6-4a96-a198-2c45e1389ed8", {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceDesc) +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG com.networknt.schema.TypeValidator debug - validate( "e91dd96d", {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceId) +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.ownerId) +16:40:57.796 [XNIO-1 task-2] RLPeLQSSS862RS81ob_bNw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"e91dd96d","serviceName":"3da10dbe-3c94-4ce6-92ab-60e5c588","serviceDesc":"aa5faa5f-24f6-4a96-a198-2c45e1389ed8","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.806 [XNIO-1 task-2] YDMLdxr7QQKAI8N7zKaQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/650f613d +16:40:57.806 [XNIO-1 task-2] YDMLdxr7QQKAI8N7zKaQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.806 [XNIO-1 task-2] YDMLdxr7QQKAI8N7zKaQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.806 [XNIO-1 task-2] YDMLdxr7QQKAI8N7zKaQMg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/650f613d +16:40:57.814 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:360812eb +16:40:57.814 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:360812eb +16:40:57.815 [XNIO-1 task-2] Ut5f660-Tw-jzdP9uj_-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cec4b19f +16:40:57.815 [XNIO-1 task-2] Ut5f660-Tw-jzdP9uj_-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.815 [XNIO-1 task-2] Ut5f660-Tw-jzdP9uj_-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.815 [XNIO-1 task-2] Ut5f660-Tw-jzdP9uj_-Wg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/cec4b19f +16:40:57.819 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.819 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.820 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.820 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.820 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.820 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG com.networknt.schema.EnumValidator debug - validate( "swagger", {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceType) +16:40:57.820 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG com.networknt.schema.TypeValidator debug - validate( "read write", {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.scope) +16:40:57.820 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG com.networknt.schema.TypeValidator debug - validate( "60c2c996-d81f-4685-bf54-ce6df865", {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody.serviceName) +16:40:57.820 [XNIO-1 task-2] ekEVROW1THO5saBiztAarQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, {"serviceType":"swagger","serviceId":"cec4b19f","serviceName":"60c2c996-d81f-4685-bf54-ce6df865","serviceDesc":"ef615aaa-745a-4a4a-a1e8-8f82f0dbbb10","scope":"read write","ownerId":"admin","host":"lightapi.net"}, requestBody) +16:40:57.834 [XNIO-1 task-2] KjwRLH3jRcqBdscjEpOGcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.834 [XNIO-1 task-2] KjwRLH3jRcqBdscjEpOGcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.834 [XNIO-1 task-2] KjwRLH3jRcqBdscjEpOGcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.834 [XNIO-1 task-2] KjwRLH3jRcqBdscjEpOGcQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:57.843 [XNIO-1 task-2] NoQbUxT8QlysfFnlqauMxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5cfb24ce, base path is set to: null +Jun 28, 2024 4:40:57 PM com.hazelcast.map.impl.operation.DeleteOperation +16:40:57.843 [XNIO-1 task-2] NoQbUxT8QlysfFnlqauMxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.843 [XNIO-1 task-2] NoQbUxT8QlysfFnlqauMxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.843 [XNIO-1 task-2] NoQbUxT8QlysfFnlqauMxw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) +16:40:57.843 [XNIO-1 task-2] NoQbUxT8QlysfFnlqauMxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.843 [XNIO-1 task-2] NoQbUxT8QlysfFnlqauMxw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/5cfb24ce, base path is set to: null +16:40:57.843 [XNIO-1 task-2] NoQbUxT8QlysfFnlqauMxw DEBUG com.networknt.schema.TypeValidator debug - validate( "5cfb24ce", "5cfb24ce", serviceId) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:57.852 [XNIO-1 task-2] 5sF5cfv6TLGauW4GTyRVRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +16:40:57.852 [XNIO-1 task-2] 5sF5cfv6TLGauW4GTyRVRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.852 [XNIO-1 task-2] 5sF5cfv6TLGauW4GTyRVRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.852 [XNIO-1 task-2] 5sF5cfv6TLGauW4GTyRVRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.852 [XNIO-1 task-2] 5sF5cfv6TLGauW4GTyRVRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + +16:40:57.863 [XNIO-1 task-2] f_nlHAmUTuerqRijb0M2Xw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:57.863 [XNIO-1 task-2] f_nlHAmUTuerqRijb0M2Xw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/1899ffe3, base path is set to: null +16:40:57.863 [XNIO-1 task-2] f_nlHAmUTuerqRijb0M2Xw DEBUG com.networknt.schema.TypeValidator debug - validate( "1899ffe3", "1899ffe3", serviceId) +16:40:57.873 [XNIO-1 task-2] ZQ_FzLQnRD2DHV84wT5F9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.873 [XNIO-1 task-2] ZQ_FzLQnRD2DHV84wT5F9A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.873 [XNIO-1 task-2] ZQ_FzLQnRD2DHV84wT5F9A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service, base path is set to: null +16:40:57.884 [XNIO-1 task-2] Z7zo1UN_RrOP8Rq8a1OLDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ab230026, base path is set to: null +16:40:57.884 [XNIO-1 task-2] Z7zo1UN_RrOP8Rq8a1OLDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.884 [XNIO-1 task-2] Z7zo1UN_RrOP8Rq8a1OLDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:57.884 [XNIO-1 task-2] Z7zo1UN_RrOP8Rq8a1OLDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/ab230026, base path is set to: null +16:40:57.884 [XNIO-1 task-2] Z7zo1UN_RrOP8Rq8a1OLDg DEBUG com.networknt.schema.TypeValidator debug - validate( "ab230026", "ab230026", serviceId) +16:40:57.893 [XNIO-1 task-2] mReLkJwwR8CE-YUdKNyymA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/2274b71b +16:40:57.893 [XNIO-1 task-2] mReLkJwwR8CE-YUdKNyymA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service +16:40:57.893 [XNIO-1 task-2] mReLkJwwR8CE-YUdKNyymA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/service/{serviceId} +16:40:57.893 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:abb45ef0-6911-474e-bd7f-f3f3d148badd +16:40:57.894 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:abb45ef0-6911-474e-bd7f-f3f3d148badd +16:40:57.897 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5c92bdc0-9b8f-4994-a03c-3388a99e4827 +16:40:57.899 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:bd1ef7e7-f71e-4bd9-adb5-9006abfa5a39 +16:40:57.899 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bd1ef7e7-f71e-4bd9-adb5-9006abfa5a39 +16:40:57.899 [XNIO-1 task-2] GWNMC43LTzO3nvwXl_QcKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service +16:40:57.899 [XNIO-1 task-2] GWNMC43LTzO3nvwXl_QcKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/service/{serviceId} +16:40:57.899 [XNIO-1 task-2] GWNMC43LTzO3nvwXl_QcKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/service/2274b71b, base path is set to: null +16:40:57.899 [XNIO-1 task-2] GWNMC43LTzO3nvwXl_QcKA DEBUG com.networknt.schema.TypeValidator debug - validate( "2274b71b", "2274b71b", serviceId) +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) diff --git a/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-token-1.log b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-token-1.log new file mode 100644 index 0000000..9459531 --- /dev/null +++ b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-token-1.log @@ -0,0 +1,1723 @@ +16:40:53.190 [XNIO-1 task-2] LuwyJzyZRYyOSzsJpS2VnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:53.201 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:5cc4575d-b9f4-4e49-aaa7-087cc4756565 +16:40:53.204 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:26e09953 +16:40:53.247 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:26e09953 +16:40:53.249 [XNIO-1 task-2] dsp-19Z0SVqqhy31Ul9OTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.249 [XNIO-1 task-2] dsp-19Z0SVqqhy31Ul9OTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.250 [XNIO-1 task-2] dsp-19Z0SVqqhy31Ul9OTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.250 [XNIO-1 task-2] dsp-19Z0SVqqhy31Ul9OTA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = I41uhRviQb23HmWJYV7kTQ redirectUri = http://localhost:8080/authorization +16:40:53.257 [XNIO-1 task-2] dsp-19Z0SVqqhy31Ul9OTA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:53.268 [XNIO-1 task-2] OpwaWwQMTe64wWh9w3r9aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.268 [XNIO-1 task-2] OpwaWwQMTe64wWh9w3r9aA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.269 [XNIO-1 task-2] OpwaWwQMTe64wWh9w3r9aA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.269 [XNIO-1 task-2] OpwaWwQMTe64wWh9w3r9aA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDcyNjdjNDktYmM3Mi00YjZhLTlhZTctNzVhZDllOGRkNzA0OmtyRFh2N25hVFMyQUxYNkc5WlRUdlE=", "Basic ZDcyNjdjNDktYmM3Mi00YjZhLTlhZTctNzVhZDllOGRkNzA0OmtyRFh2N25hVFMyQUxYNkc5WlRUdlE=", authorization) +16:40:53.271 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:986d41b0 +16:40:53.272 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:986d41b0 +16:40:53.275 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:26e09953 +16:40:53.280 [XNIO-1 task-2] OpwaWwQMTe64wWh9w3r9aA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.300 [XNIO-1 task-2] uyFnw3ujSTqRedjyR9lnYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.300 [XNIO-1 task-2] uyFnw3ujSTqRedjyR9lnYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.301 [XNIO-1 task-2] uyFnw3ujSTqRedjyR9lnYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.301 [XNIO-1 task-2] uyFnw3ujSTqRedjyR9lnYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.301 [XNIO-1 task-2] uyFnw3ujSTqRedjyR9lnYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Vs8hVmihRt-sIyk8Pl2Jaw redirectUri = http://localhost:8080/authorization +16:40:53.302 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore load - Load:002434fe-ba7c-41f5-889a-6cf5894adebc +16:40:53.308 [XNIO-1 task-2] uyFnw3ujSTqRedjyR9lnYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:53.314 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:07b1fe2b +16:40:53.318 [XNIO-1 task-2] 8KacDDe6SYOJyiu33W4BqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.318 [XNIO-1 task-2] 8KacDDe6SYOJyiu33W4BqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.319 [XNIO-1 task-2] 8KacDDe6SYOJyiu33W4BqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.319 [XNIO-1 task-2] 8KacDDe6SYOJyiu33W4BqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTI4OTk1ODYtMmZlOC00ZTQ5LTlmMzktMTAzNDFmYmZiNWQ2OlJGNnJrS0hHU1BxWVI3OUlKWjZ5b1E=", "Basic OTI4OTk1ODYtMmZlOC00ZTQ5LTlmMzktMTAzNDFmYmZiNWQ2OlJGNnJrS0hHU1BxWVI3OUlKWjZ5b1E=", authorization) +16:40:53.320 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:544fa506 +16:40:53.320 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:544fa506 +16:40:53.330 [XNIO-1 task-2] 8KacDDe6SYOJyiu33W4BqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.341 [XNIO-1 task-2] jrwpk40GSSefJv0u90sXlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.341 [XNIO-1 task-2] jrwpk40GSSefJv0u90sXlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.341 [XNIO-1 task-2] jrwpk40GSSefJv0u90sXlA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.341 [XNIO-1 task-2] jrwpk40GSSefJv0u90sXlA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 46d86eef-fc9a-415d-aaad-197214ca6468 scope = null +16:40:53.351 [XNIO-1 task-2] jrwpk40GSSefJv0u90sXlA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.353 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:544fa506 +16:40:53.355 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:50661371-09dc-4805-ab64-ad1400fe1f11 +16:40:53.363 [XNIO-1 task-2] nfuGo9reSPe4ZQGimLpbcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.363 [XNIO-1 task-2] nfuGo9reSPe4ZQGimLpbcg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.363 [XNIO-1 task-2] nfuGo9reSPe4ZQGimLpbcg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.363 [XNIO-1 task-2] nfuGo9reSPe4ZQGimLpbcg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTI4OTk1ODYtMmZlOC00ZTQ5LTlmMzktMTAzNDFmYmZiNWQ2OlJGNnJrS0hHU1BxWVI3OUlKWjZ5b1E=", "Basic OTI4OTk1ODYtMmZlOC00ZTQ5LTlmMzktMTAzNDFmYmZiNWQ2OlJGNnJrS0hHU1BxWVI3OUlKWjZ5b1E=", authorization) +16:40:53.367 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b68e8470-2c3e-4ed1-b43e-14f2a85a9ece +16:40:53.374 [XNIO-1 task-2] nfuGo9reSPe4ZQGimLpbcg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:53.381 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:544fa506 +16:40:53.414 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:544fa506 +16:40:53.427 [XNIO-1 task-2] JX3FrlFJTE-8d-rhrOvy5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.427 [XNIO-1 task-2] JX3FrlFJTE-8d-rhrOvy5w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.427 [XNIO-1 task-2] JX3FrlFJTE-8d-rhrOvy5w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.427 [XNIO-1 task-2] JX3FrlFJTE-8d-rhrOvy5w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", authorization) +16:40:53.434 [XNIO-1 task-2] JX3FrlFJTE-8d-rhrOvy5w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:53.434 [XNIO-1 task-2] JX3FrlFJTE-8d-rhrOvy5w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.435 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:dcd3c99e +16:40:53.438 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:544fa506 +16:40:53.472 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:dcd3c99e +16:40:53.478 [XNIO-1 task-2] KDlHsvNqRhaZGDvItSCDvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.478 [XNIO-1 task-2] KDlHsvNqRhaZGDvItSCDvw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.478 [XNIO-1 task-2] KDlHsvNqRhaZGDvItSCDvw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.479 [XNIO-1 task-2] KDlHsvNqRhaZGDvItSCDvw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", authorization) +16:40:53.484 [XNIO-1 task-2] KDlHsvNqRhaZGDvItSCDvw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:53.485 [XNIO-1 task-2] KDlHsvNqRhaZGDvItSCDvw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.487 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:986d41b0 +16:40:53.496 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:544fa506 +16:40:53.521 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:29ed6daa +16:40:53.534 [XNIO-1 task-2] S92zNGi_RjK5tUswxd5Cqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.534 [XNIO-1 task-2] S92zNGi_RjK5tUswxd5Cqg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.534 [XNIO-1 task-2] S92zNGi_RjK5tUswxd5Cqg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.534 [XNIO-1 task-2] S92zNGi_RjK5tUswxd5Cqg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", authorization) +16:40:53.541 [XNIO-1 task-2] S92zNGi_RjK5tUswxd5Cqg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:53.541 [XNIO-1 task-2] S92zNGi_RjK5tUswxd5Cqg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.552 [XNIO-1 task-2] Dz7jG2SYQ3-V_FZaeysbXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.552 [XNIO-1 task-2] Dz7jG2SYQ3-V_FZaeysbXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.552 [XNIO-1 task-2] Dz7jG2SYQ3-V_FZaeysbXA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.552 [XNIO-1 task-2] Dz7jG2SYQ3-V_FZaeysbXA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 24df1771-365f-457a-8e62-44a44adfce80 scope = null +16:40:53.563 [XNIO-1 task-2] Dz7jG2SYQ3-V_FZaeysbXA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.576 [XNIO-1 task-2] -z_Gx_jkRXuxz8yDQDqJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.576 [XNIO-1 task-2] -z_Gx_jkRXuxz8yDQDqJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.576 [XNIO-1 task-2] -z_Gx_jkRXuxz8yDQDqJOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.576 [XNIO-1 task-2] -z_Gx_jkRXuxz8yDQDqJOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 727acf95-412f-411c-85a2-01a3bcb5d402 scope = null +16:40:53.585 [XNIO-1 task-2] -z_Gx_jkRXuxz8yDQDqJOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.619 [XNIO-1 task-2] gVRll1LsSdCAwBe_DSDiUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.619 [XNIO-1 task-2] gVRll1LsSdCAwBe_DSDiUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.619 [XNIO-1 task-2] gVRll1LsSdCAwBe_DSDiUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.619 [XNIO-1 task-2] gVRll1LsSdCAwBe_DSDiUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1Wi9g2E0R7O6LOP-h8WWNg redirectUri = http://localhost:8080/authorization +16:40:53.625 [XNIO-1 task-2] gVRll1LsSdCAwBe_DSDiUg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:53.644 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:db6384a6 +16:40:53.645 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:db6384a6 +16:40:53.660 [XNIO-1 task-2] 7kVwHoWFQRmHNbuiI2V3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.660 [XNIO-1 task-2] 7kVwHoWFQRmHNbuiI2V3jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.660 [XNIO-1 task-2] 7kVwHoWFQRmHNbuiI2V3jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.661 [XNIO-1 task-2] 7kVwHoWFQRmHNbuiI2V3jg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2OWExNWUtNTIwOS00MjdmLTkxODYtYmM4OTUyODc4MjQ5OnRlMm9uSi1aU1ltbjUxRlpvZ3NpNkE=", "Basic YjM2OWExNWUtNTIwOS00MjdmLTkxODYtYmM4OTUyODc4MjQ5OnRlMm9uSi1aU1ltbjUxRlpvZ3NpNkE=", authorization) +16:40:53.667 [XNIO-1 task-2] 7kVwHoWFQRmHNbuiI2V3jg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:53.667 [XNIO-1 task-2] 7kVwHoWFQRmHNbuiI2V3jg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.722 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a92228d3 +16:40:53.749 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a92228d3 +16:40:53.754 [XNIO-1 task-2] tVK9cPoXR-W4lC-3MMH7SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.754 [XNIO-1 task-2] tVK9cPoXR-W4lC-3MMH7SQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.754 [XNIO-1 task-2] tVK9cPoXR-W4lC-3MMH7SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.754 [XNIO-1 task-2] tVK9cPoXR-W4lC-3MMH7SQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Mjk2ZjdiNWEtYjIxMC00ODI0LThiYzgtMGYxZmMzNzI1MmQwOmxaV1F5LU1qUW8yQUdLTnM0ZzAwZEE=", "Basic Mjk2ZjdiNWEtYjIxMC00ODI0LThiYzgtMGYxZmMzNzI1MmQwOmxaV1F5LU1qUW8yQUdLTnM0ZzAwZEE=", authorization) +16:40:53.760 [XNIO-1 task-2] tVK9cPoXR-W4lC-3MMH7SQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:53.760 [XNIO-1 task-2] tVK9cPoXR-W4lC-3MMH7SQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.795 [XNIO-1 task-2] mh_ScMSWQlm2WAkmS8j6Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.795 [XNIO-1 task-2] mh_ScMSWQlm2WAkmS8j6Pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.795 [XNIO-1 task-2] mh_ScMSWQlm2WAkmS8j6Pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.795 [XNIO-1 task-2] mh_ScMSWQlm2WAkmS8j6Pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", authorization) +16:40:53.799 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:002434fe-ba7c-41f5-889a-6cf5894adebc +16:40:53.807 [XNIO-1 task-2] mh_ScMSWQlm2WAkmS8j6Pg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.816 [XNIO-1 task-2] N-gd1Y1fTf6FiI31xRHVPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.816 [XNIO-1 task-2] N-gd1Y1fTf6FiI31xRHVPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.816 [XNIO-1 task-2] N-gd1Y1fTf6FiI31xRHVPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.816 [XNIO-1 task-2] N-gd1Y1fTf6FiI31xRHVPg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = c46e1fa9-6832-420c-8eea-4a996e7f3a1a scope = null +16:40:53.828 [XNIO-1 task-2] N-gd1Y1fTf6FiI31xRHVPg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:53.907 [XNIO-1 task-2] HsXpxjKPSw-e_6M-9-EL9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.907 [XNIO-1 task-2] HsXpxjKPSw-e_6M-9-EL9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.908 [XNIO-1 task-2] HsXpxjKPSw-e_6M-9-EL9w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:53.908 [XNIO-1 task-2] HsXpxjKPSw-e_6M-9-EL9w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OjM1yKgJQG6zdcP4O4OEJA redirectUri = http://localhost:8080/authorization +16:40:53.914 [XNIO-1 task-2] HsXpxjKPSw-e_6M-9-EL9w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:53.994 [XNIO-1 task-1] klMev6RNTeCWXLeyP5hCSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.994 [XNIO-1 task-1] klMev6RNTeCWXLeyP5hCSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:53.994 [XNIO-1 task-1] klMev6RNTeCWXLeyP5hCSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:53.994 [XNIO-1 task-1] klMev6RNTeCWXLeyP5hCSA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MGViZTgxYzctZWJkNy00NDRjLThlMGEtN2I5ZTg3YjgxNjAxOlloWWt0UFVkUXhLN3NBM0QwbVA2SEE=", "Basic MGViZTgxYzctZWJkNy00NDRjLThlMGEtN2I5ZTg3YjgxNjAxOlloWWt0UFVkUXhLN3NBM0QwbVA2SEE=", authorization) +16:40:54.049 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b1e6aace-634c-404c-b92d-3e4783d22759 +16:40:54.097 [XNIO-1 task-2] aALhHmPaTj-p4yNZ4S6yKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.097 [XNIO-1 task-2] aALhHmPaTj-p4yNZ4S6yKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.130 [XNIO-1 task-2] aALhHmPaTj-p4yNZ4S6yKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.131 [XNIO-1 task-2] aALhHmPaTj-p4yNZ4S6yKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ai2ISMthSg2LiARi4iGKHg redirectUri = http://localhost:8080/authorization +16:40:54.132 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b1e6aace-634c-404c-b92d-3e4783d22759 +16:40:54.132 [XNIO-1 task-1] klMev6RNTeCWXLeyP5hCSA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.133 [XNIO-1 task-1] klMev6RNTeCWXLeyP5hCSA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.138 [XNIO-1 task-2] aALhHmPaTj-p4yNZ4S6yKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.138 [XNIO-1 task-2] aALhHmPaTj-p4yNZ4S6yKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.149 [XNIO-1 task-2] 3K9yF6caTmW_16rtnP7wCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.149 [XNIO-1 task-2] 3K9yF6caTmW_16rtnP7wCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.149 [XNIO-1 task-2] 3K9yF6caTmW_16rtnP7wCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.149 [XNIO-1 task-2] 3K9yF6caTmW_16rtnP7wCw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 486fa0c6-3082-4c4d-bad1-2897e26ad994 scope = null +16:40:54.155 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6b0f7919 +16:40:54.161 [XNIO-1 task-2] 3K9yF6caTmW_16rtnP7wCw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.191 [XNIO-1 task-2] mbE-iOdsRlC6ZmlfRqQCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.191 [XNIO-1 task-2] mbE-iOdsRlC6ZmlfRqQCCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.191 [XNIO-1 task-2] mbE-iOdsRlC6ZmlfRqQCCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.192 [XNIO-1 task-2] mbE-iOdsRlC6ZmlfRqQCCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RiZDhiOTEtYmI5ZS00YjRkLTlhNDktNzhlMmQwMmFiOThmOkZZdzhKZ2hoUjBTNE5jN0g3NnM1dGc=", "Basic Y2RiZDhiOTEtYmI5ZS00YjRkLTlhNDktNzhlMmQwMmFiOThmOkZZdzhKZ2hoUjBTNE5jN0g3NnM1dGc=", authorization) +16:40:54.201 [XNIO-1 task-2] mbE-iOdsRlC6ZmlfRqQCCg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.202 [XNIO-1 task-2] mbE-iOdsRlC6ZmlfRqQCCg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.217 [XNIO-1 task-2] uTaBP0-2TnKLUp3stZ2gOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.219 [XNIO-1 task-2] uTaBP0-2TnKLUp3stZ2gOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.219 [XNIO-1 task-2] uTaBP0-2TnKLUp3stZ2gOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.220 [XNIO-1 task-2] uTaBP0-2TnKLUp3stZ2gOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bf4d1123-75fc-4d3f-9ecc-cc6b0b246d51 scope = null +16:40:54.230 [XNIO-1 task-2] uTaBP0-2TnKLUp3stZ2gOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.243 [XNIO-1 task-2] IxGd6rPpREm5eO6LPD8KYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.243 [XNIO-1 task-2] IxGd6rPpREm5eO6LPD8KYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.244 [XNIO-1 task-2] IxGd6rPpREm5eO6LPD8KYA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.245 [XNIO-1 task-2] IxGd6rPpREm5eO6LPD8KYA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 991d9807-def2-4f8d-87f7-56ba8bf78a43 scope = null +16:40:54.263 [XNIO-1 task-2] IxGd6rPpREm5eO6LPD8KYA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.273 [XNIO-1 task-2] ghw3hOY-Tkq1O0kHoqKw8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.273 [XNIO-1 task-2] ghw3hOY-Tkq1O0kHoqKw8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.274 [XNIO-1 task-2] ghw3hOY-Tkq1O0kHoqKw8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.274 [XNIO-1 task-2] ghw3hOY-Tkq1O0kHoqKw8A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 5f5385a9-11f1-4ad4-a044-edd32c76cea9 scope = null +16:40:54.283 [XNIO-1 task-2] ghw3hOY-Tkq1O0kHoqKw8A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.297 [XNIO-1 task-2] t1c4CImgQFa6WKYmh9fNJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.297 [XNIO-1 task-2] t1c4CImgQFa6WKYmh9fNJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.297 [XNIO-1 task-2] t1c4CImgQFa6WKYmh9fNJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.298 [XNIO-1 task-2] t1c4CImgQFa6WKYmh9fNJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = dcd87162-a817-4bad-b13d-37472679a17d scope = null +16:40:54.304 [XNIO-1 task-1] jFtfrhPrT-uN_E5ZejUABg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.304 [XNIO-1 task-1] jFtfrhPrT-uN_E5ZejUABg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.304 [XNIO-1 task-1] jFtfrhPrT-uN_E5ZejUABg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.304 [XNIO-1 task-1] jFtfrhPrT-uN_E5ZejUABg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vHio9NhISou9nF49_mBd5w redirectUri = http://localhost:8080/authorization +16:40:54.311 [XNIO-1 task-1] jFtfrhPrT-uN_E5ZejUABg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.312 [XNIO-1 task-2] t1c4CImgQFa6WKYmh9fNJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.319 [XNIO-1 task-1] ekoiT60jSxOjzX3B-mTDMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.319 [XNIO-1 task-1] ekoiT60jSxOjzX3B-mTDMg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.319 [XNIO-1 task-1] ekoiT60jSxOjzX3B-mTDMg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.319 [XNIO-1 task-1] ekoiT60jSxOjzX3B-mTDMg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmY0YjlmYmEtZjJiNC00OWM5LWFkZDYtOWI0ODgzYmQ1ZjM4OnFHTm4xT1NJUjFXXzNCZjdGOWh5bGc=", "Basic NmY0YjlmYmEtZjJiNC00OWM5LWFkZDYtOWI0ODgzYmQ1ZjM4OnFHTm4xT1NJUjFXXzNCZjdGOWh5bGc=", authorization) +16:40:54.328 [XNIO-1 task-2] QyVKa1nxQlW5uRyVPyo3Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.329 [XNIO-1 task-2] QyVKa1nxQlW5uRyVPyo3Iw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.329 [XNIO-1 task-2] QyVKa1nxQlW5uRyVPyo3Iw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.329 [XNIO-1 task-2] QyVKa1nxQlW5uRyVPyo3Iw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RiZDhiOTEtYmI5ZS00YjRkLTlhNDktNzhlMmQwMmFiOThmOkZZdzhKZ2hoUjBTNE5jN0g3NnM1dGc=", "Basic Y2RiZDhiOTEtYmI5ZS00YjRkLTlhNDktNzhlMmQwMmFiOThmOkZZdzhKZ2hoUjBTNE5jN0g3NnM1dGc=", authorization) +16:40:54.332 [XNIO-1 task-1] ekoiT60jSxOjzX3B-mTDMg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.340 [XNIO-1 task-2] QyVKa1nxQlW5uRyVPyo3Iw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.360 [XNIO-1 task-2] pCz_L0CuQgaTo03BZ8rV-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.360 [XNIO-1 task-2] pCz_L0CuQgaTo03BZ8rV-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.360 [XNIO-1 task-2] pCz_L0CuQgaTo03BZ8rV-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.360 [XNIO-1 task-2] pCz_L0CuQgaTo03BZ8rV-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", authorization) +16:40:54.360 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d5b1fa95 +16:40:54.362 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d5b1fa95 +16:40:54.365 [XNIO-1 task-1] eVP4e9E4SQi36MFe-tnbPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.365 [XNIO-1 task-1] eVP4e9E4SQi36MFe-tnbPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.365 [XNIO-1 task-1] eVP4e9E4SQi36MFe-tnbPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.365 [XNIO-1 task-1] eVP4e9E4SQi36MFe-tnbPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PREwVcDFRqqVNsOW0MOaUw redirectUri = http://localhost:8080/authorization +16:40:54.367 [XNIO-1 task-2] pCz_L0CuQgaTo03BZ8rV-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.372 [XNIO-1 task-1] eVP4e9E4SQi36MFe-tnbPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.372 [XNIO-1 task-1] eVP4e9E4SQi36MFe-tnbPQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.382 [XNIO-1 task-1] RKmG5EduQuGdGxyWTl8TVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.383 [XNIO-1 task-1] RKmG5EduQuGdGxyWTl8TVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.383 [XNIO-1 task-1] RKmG5EduQuGdGxyWTl8TVQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.383 [XNIO-1 task-1] RKmG5EduQuGdGxyWTl8TVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 9e9d2d23-5b91-42b0-9871-579b2289768a scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:54.410 [XNIO-1 task-1] h8jsuy-2RrCD2gpcbcaubA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.411 [XNIO-1 task-1] h8jsuy-2RrCD2gpcbcaubA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.411 [XNIO-1 task-1] h8jsuy-2RrCD2gpcbcaubA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.411 [XNIO-1 task-1] h8jsuy-2RrCD2gpcbcaubA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:54.416 [XNIO-1 task-1] h8jsuy-2RrCD2gpcbcaubA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.416 [XNIO-1 task-1] h8jsuy-2RrCD2gpcbcaubA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.436 [XNIO-1 task-1] hyQVHLLhTR6BvXIUIua41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.436 [XNIO-1 task-1] hyQVHLLhTR6BvXIUIua41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.436 [XNIO-1 task-1] hyQVHLLhTR6BvXIUIua41Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.436 [XNIO-1 task-1] hyQVHLLhTR6BvXIUIua41Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 9gfazYV9SQqIrjHApecSaQ redirectUri = http://localhost:8080/authorization +16:40:54.442 [XNIO-1 task-1] hyQVHLLhTR6BvXIUIua41Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.443 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5d67f634-3c17-4d05-87e8-ebd29ece53f9 +16:40:54.445 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:6b0f7919 +16:40:54.452 [XNIO-1 task-1] louE7G5JTjmhNBNGmdhaVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.452 [XNIO-1 task-1] louE7G5JTjmhNBNGmdhaVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.453 [XNIO-1 task-1] louE7G5JTjmhNBNGmdhaVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.453 [XNIO-1 task-1] louE7G5JTjmhNBNGmdhaVw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:54.458 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5d67f634-3c17-4d05-87e8-ebd29ece53f9 +16:40:54.459 [XNIO-1 task-2] oz5iCVDjSKOUY7jPspkXhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.459 [XNIO-1 task-2] oz5iCVDjSKOUY7jPspkXhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.459 [XNIO-1 task-2] oz5iCVDjSKOUY7jPspkXhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.459 [XNIO-1 task-2] oz5iCVDjSKOUY7jPspkXhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = bxm9tKYJTliTSZyQCt2q9Q redirectUri = http://localhost:8080/authorization +16:40:54.462 [XNIO-1 task-1] louE7G5JTjmhNBNGmdhaVw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.467 [XNIO-1 task-2] oz5iCVDjSKOUY7jPspkXhg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.469 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:b6b7245e-b6aa-4198-97ef-4e4fce51ed69 +16:40:54.477 [XNIO-1 task-2] XXGOP9WQSvKMwvlin1QziQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.477 [XNIO-1 task-2] XXGOP9WQSvKMwvlin1QziQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.478 [XNIO-1 task-2] XXGOP9WQSvKMwvlin1QziQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.478 [XNIO-1 task-2] XXGOP9WQSvKMwvlin1QziQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:54.488 [XNIO-1 task-2] XXGOP9WQSvKMwvlin1QziQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.489 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:b1e6aace-634c-404c-b92d-3e4783d22759 +16:40:54.508 [XNIO-1 task-2] banN8V6YQbu-vj5MBf0vQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.508 [XNIO-1 task-2] banN8V6YQbu-vj5MBf0vQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.508 [XNIO-1 task-2] banN8V6YQbu-vj5MBf0vQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.508 [XNIO-1 task-2] banN8V6YQbu-vj5MBf0vQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = rAinpvKgRWusQMHf9_lAOQ redirectUri = http://localhost:8080/authorization +16:40:54.514 [XNIO-1 task-2] banN8V6YQbu-vj5MBf0vQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.516 [XNIO-1 task-1] hDep4h7_TvKElis7AmfbMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.517 [XNIO-1 task-1] hDep4h7_TvKElis7AmfbMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.517 [XNIO-1 task-1] hDep4h7_TvKElis7AmfbMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.517 [XNIO-1 task-1] hDep4h7_TvKElis7AmfbMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:54.523 [XNIO-1 task-1] hDep4h7_TvKElis7AmfbMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.523 [XNIO-1 task-1] hDep4h7_TvKElis7AmfbMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.545 [XNIO-1 task-1] 7HOek0nxTqGb9lpjgcJqQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.545 [XNIO-1 task-1] 7HOek0nxTqGb9lpjgcJqQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.545 [XNIO-1 task-1] 7HOek0nxTqGb9lpjgcJqQA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.545 [XNIO-1 task-1] 7HOek0nxTqGb9lpjgcJqQA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = eZ4sd-j-RB6p4jDtpVdarQ redirectUri = http://localhost:8080/authorization +16:40:54.547 [XNIO-1 task-2] 1KCMLYLaRX-JAT_NUdvIew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.547 [XNIO-1 task-2] 1KCMLYLaRX-JAT_NUdvIew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.547 [XNIO-1 task-2] 1KCMLYLaRX-JAT_NUdvIew DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.547 [XNIO-1 task-2] 1KCMLYLaRX-JAT_NUdvIew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = N3aMa0O4SSSHFX1VCGeoIw redirectUri = http://localhost:8080/authorization +16:40:54.552 [XNIO-1 task-1] 7HOek0nxTqGb9lpjgcJqQA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.553 [XNIO-1 task-2] 1KCMLYLaRX-JAT_NUdvIew DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.553 [XNIO-1 task-2] 1KCMLYLaRX-JAT_NUdvIew INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.562 [XNIO-1 task-2] Q5T0kz5CTo2I3zbyvNBcAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.562 [XNIO-1 task-2] Q5T0kz5CTo2I3zbyvNBcAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.562 [XNIO-1 task-2] Q5T0kz5CTo2I3zbyvNBcAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.563 [XNIO-1 task-2] Q5T0kz5CTo2I3zbyvNBcAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = cf5c7f07-130e-46c0-9159-31dc7179a5eb scope = null +16:40:54.571 [XNIO-1 task-2] Q5T0kz5CTo2I3zbyvNBcAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.573 [XNIO-1 task-1] 19GhsE0DQimbzg5RN_uExQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.573 [XNIO-1 task-1] 19GhsE0DQimbzg5RN_uExQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.573 [XNIO-1 task-1] 19GhsE0DQimbzg5RN_uExQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.573 [XNIO-1 task-1] 19GhsE0DQimbzg5RN_uExQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _3v49l0CSvOg_P_8sRhppQ redirectUri = http://localhost:8080/authorization +16:40:54.579 [XNIO-1 task-1] 19GhsE0DQimbzg5RN_uExQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.594 [XNIO-1 task-1] WIEj-kavR_OVqjFHLR-KIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.594 [XNIO-1 task-1] WIEj-kavR_OVqjFHLR-KIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.594 [XNIO-1 task-1] WIEj-kavR_OVqjFHLR-KIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.594 [XNIO-1 task-1] WIEj-kavR_OVqjFHLR-KIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGNmOWM2NDgtNzZhMi00ZDAyLTlkZDAtN2Y4MDczMGRhMTVlOnpMcDJVckh6UnFpQmw4NWt2THl3dHc=", "Basic OGNmOWM2NDgtNzZhMi00ZDAyLTlkZDAtN2Y4MDczMGRhMTVlOnpMcDJVckh6UnFpQmw4NWt2THl3dHc=", authorization) +16:40:54.599 [XNIO-1 task-2] RfnK14GgQjStb8sRaqA4xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.599 [XNIO-1 task-2] RfnK14GgQjStb8sRaqA4xQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.599 [XNIO-1 task-2] RfnK14GgQjStb8sRaqA4xQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.599 [XNIO-1 task-2] RfnK14GgQjStb8sRaqA4xQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", authorization) +16:40:54.603 [XNIO-1 task-1] WIEj-kavR_OVqjFHLR-KIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.605 [XNIO-1 task-2] RfnK14GgQjStb8sRaqA4xQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.605 [XNIO-1 task-2] RfnK14GgQjStb8sRaqA4xQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.611 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:828d887c +16:40:54.618 [XNIO-1 task-2] NwJXqhdTQReAoTDt2uDMpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.619 [XNIO-1 task-2] NwJXqhdTQReAoTDt2uDMpg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.619 [XNIO-1 task-2] NwJXqhdTQReAoTDt2uDMpg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.619 [XNIO-1 task-2] NwJXqhdTQReAoTDt2uDMpg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGNmOWM2NDgtNzZhMi00ZDAyLTlkZDAtN2Y4MDczMGRhMTVlOnpMcDJVckh6UnFpQmw4NWt2THl3dHc=", "Basic OGNmOWM2NDgtNzZhMi00ZDAyLTlkZDAtN2Y4MDczMGRhMTVlOnpMcDJVckh6UnFpQmw4NWt2THl3dHc=", authorization) +16:40:54.632 [XNIO-1 task-2] NwJXqhdTQReAoTDt2uDMpg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.657 [XNIO-1 task-2] -REfcJW5TxGbpo9WsVuOOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.657 [XNIO-1 task-2] -REfcJW5TxGbpo9WsVuOOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.657 [XNIO-1 task-2] -REfcJW5TxGbpo9WsVuOOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.658 [XNIO-1 task-2] -REfcJW5TxGbpo9WsVuOOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", authorization) +16:40:54.663 [XNIO-1 task-2] -REfcJW5TxGbpo9WsVuOOA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.663 [XNIO-1 task-2] -REfcJW5TxGbpo9WsVuOOA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.669 [XNIO-1 task-1] 9Pr-8F6bTEecJKo-VJYdIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.669 [XNIO-1 task-1] 9Pr-8F6bTEecJKo-VJYdIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.669 [XNIO-1 task-1] 9Pr-8F6bTEecJKo-VJYdIg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.669 [XNIO-1 task-1] 9Pr-8F6bTEecJKo-VJYdIg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = dxLATMlSTTC5ucgqZyLFeg redirectUri = http://localhost:8080/authorization +16:40:54.675 [XNIO-1 task-1] 9Pr-8F6bTEecJKo-VJYdIg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.706 [XNIO-1 task-1] V_0zDQZMQCKQf8JKMY7KCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.706 [XNIO-1 task-1] V_0zDQZMQCKQf8JKMY7KCA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.706 [XNIO-1 task-1] V_0zDQZMQCKQf8JKMY7KCA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.707 [XNIO-1 task-1] V_0zDQZMQCKQf8JKMY7KCA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", authorization) +16:40:54.712 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:828d887c +16:40:54.712 [XNIO-1 task-1] V_0zDQZMQCKQf8JKMY7KCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.714 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:11f9e666-c15e-47ec-aaff-ddddb16c42d7 +16:40:54.746 [XNIO-1 task-1] jEIpSerMTAaFFHEOOxzfyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.746 [XNIO-1 task-1] jEIpSerMTAaFFHEOOxzfyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.746 [XNIO-1 task-1] jEIpSerMTAaFFHEOOxzfyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.746 [XNIO-1 task-1] jEIpSerMTAaFFHEOOxzfyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDcyNjdjNDktYmM3Mi00YjZhLTlhZTctNzVhZDllOGRkNzA0OmtyRFh2N25hVFMyQUxYNkc5WlRUdlE=", "Basic ZDcyNjdjNDktYmM3Mi00YjZhLTlhZTctNzVhZDllOGRkNzA0OmtyRFh2N25hVFMyQUxYNkc5WlRUdlE=", authorization) +16:40:54.752 [XNIO-1 task-1] jEIpSerMTAaFFHEOOxzfyg ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:54.760 [XNIO-1 task-1] 6gTsvVDvTBetYYKd9TIm8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.760 [XNIO-1 task-1] 6gTsvVDvTBetYYKd9TIm8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.760 [XNIO-1 task-1] 6gTsvVDvTBetYYKd9TIm8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.760 [XNIO-1 task-1] 6gTsvVDvTBetYYKd9TIm8w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 12ea68d2-b01e-4f1c-aceb-278d4e62a18c scope = null +16:40:54.762 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore store - Store:4ae68c1a-7142-4054-ac5e-eead45456c5a +16:40:54.768 [XNIO-1 task-1] 6gTsvVDvTBetYYKd9TIm8w ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:54.771 [XNIO-1 task-1] NzzGWhNAQV-zvywcCX-XOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.771 [XNIO-1 task-1] NzzGWhNAQV-zvywcCX-XOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.771 [XNIO-1 task-1] NzzGWhNAQV-zvywcCX-XOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.771 [XNIO-1 task-1] NzzGWhNAQV-zvywcCX-XOA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = YnNKqt2_Q7a85u2rLC3Vfg redirectUri = http://localhost:8080/authorization +16:40:54.778 [XNIO-1 task-1] NzzGWhNAQV-zvywcCX-XOA ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:54.799 [XNIO-1 task-1] f6NKGlobSC6QI2Hzim-rwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.800 [XNIO-1 task-1] f6NKGlobSC6QI2Hzim-rwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.800 [XNIO-1 task-1] f6NKGlobSC6QI2Hzim-rwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.800 [XNIO-1 task-1] f6NKGlobSC6QI2Hzim-rwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vWetlvsxS-2gTh7eEnNCVg redirectUri = http://localhost:8080/authorization +16:40:54.805 [XNIO-1 task-1] f6NKGlobSC6QI2Hzim-rwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:54.811 [XNIO-1 task-2] lzkU-Rn7TQC_rSZwO5LECA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.811 [XNIO-1 task-2] lzkU-Rn7TQC_rSZwO5LECA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.811 [XNIO-1 task-2] lzkU-Rn7TQC_rSZwO5LECA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.811 [XNIO-1 task-2] lzkU-Rn7TQC_rSZwO5LECA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", authorization) +16:40:54.818 [XNIO-1 task-2] lzkU-Rn7TQC_rSZwO5LECA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.818 [XNIO-1 task-2] lzkU-Rn7TQC_rSZwO5LECA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:54.825 [XNIO-1 task-1] f0J_yfzbQsytX73s1VY8TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.825 [XNIO-1 task-1] f0J_yfzbQsytX73s1VY8TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.825 [XNIO-1 task-1] f0J_yfzbQsytX73s1VY8TQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.825 [XNIO-1 task-1] f0J_yfzbQsytX73s1VY8TQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b0db472b-15b6-4495-8d3a-8df76d0819be scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b0db472b-15b6-4495-8d3a-8df76d0819be is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:54.901 [XNIO-1 task-4] Vvsaz0WSRC2W3z3NHtG53w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.878 [XNIO-1 task-2] 4gm_qExXT6-hTYusxY1m7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.902 [XNIO-1 task-4] Vvsaz0WSRC2W3z3NHtG53w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.902 [XNIO-1 task-4] Vvsaz0WSRC2W3z3NHtG53w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:54.902 [XNIO-1 task-4] Vvsaz0WSRC2W3z3NHtG53w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = vAwWqvPNSGWzoVqkvv7DfQ redirectUri = http://localhost:8080/authorization +16:40:54.904 [XNIO-1 task-2] 4gm_qExXT6-hTYusxY1m7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.904 [XNIO-1 task-2] 4gm_qExXT6-hTYusxY1m7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.904 [XNIO-1 task-2] 4gm_qExXT6-hTYusxY1m7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTI4OTk1ODYtMmZlOC00ZTQ5LTlmMzktMTAzNDFmYmZiNWQ2OlJGNnJrS0hHU1BxWVI3OUlKWjZ5b1E=", "Basic OTI4OTk1ODYtMmZlOC00ZTQ5LTlmMzktMTAzNDFmYmZiNWQ2OlJGNnJrS0hHU1BxWVI3OUlKWjZ5b1E=", authorization) +16:40:54.908 [XNIO-1 task-4] Vvsaz0WSRC2W3z3NHtG53w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:54.908 [XNIO-1 task-4] Vvsaz0WSRC2W3z3NHtG53w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token b0db472b-15b6-4495-8d3a-8df76d0819be is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:54.944 [XNIO-1 task-1] k0Y1V0wSQy63mWSej-9b-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.944 [XNIO-1 task-1] k0Y1V0wSQy63mWSej-9b-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:54.945 [XNIO-1 task-1] k0Y1V0wSQy63mWSej-9b-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:54.945 [XNIO-1 task-1] k0Y1V0wSQy63mWSej-9b-A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", authorization) +16:40:55.016 [XNIO-1 task-4] 4l0jRjUMQheAJ_uuvEtFyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.016 [XNIO-1 task-4] 4l0jRjUMQheAJ_uuvEtFyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.016 [XNIO-1 task-4] 4l0jRjUMQheAJ_uuvEtFyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.016 [XNIO-1 task-4] 4l0jRjUMQheAJ_uuvEtFyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", authorization) +16:40:55.017 [XNIO-1 task-2] u4aTGpAqTaCd5CVIbQgJCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.017 [XNIO-1 task-2] u4aTGpAqTaCd5CVIbQgJCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.039 [XNIO-1 task-2] u4aTGpAqTaCd5CVIbQgJCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.040 [XNIO-1 task-2] u4aTGpAqTaCd5CVIbQgJCg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDcyNjdjNDktYmM3Mi00YjZhLTlhZTctNzVhZDllOGRkNzA0OmtyRFh2N25hVFMyQUxYNkc5WlRUdlE=", "Basic ZDcyNjdjNDktYmM3Mi00YjZhLTlhZTctNzVhZDllOGRkNzA0OmtyRFh2N25hVFMyQUxYNkc5WlRUdlE=", authorization) +16:40:55.044 [XNIO-1 task-2] u4aTGpAqTaCd5CVIbQgJCg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.044 [XNIO-1 task-4] 4l0jRjUMQheAJ_uuvEtFyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.045 [XNIO-1 task-4] 4l0jRjUMQheAJ_uuvEtFyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.051 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:986d41b0 +16:40:55.052 [XNIO-1 task-2] tqC_qcPLQtaDmULZrKTccg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.052 [XNIO-1 task-2] tqC_qcPLQtaDmULZrKTccg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.052 [XNIO-1 task-2] tqC_qcPLQtaDmULZrKTccg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.052 [XNIO-1 task-2] tqC_qcPLQtaDmULZrKTccg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.053 [XNIO-1 task-1] k0Y1V0wSQy63mWSej-9b-A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.056 [XNIO-1 task-4] yfk7w1FRQOmCft-8iQUtkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.056 [XNIO-1 task-4] yfk7w1FRQOmCft-8iQUtkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.056 [XNIO-1 task-4] yfk7w1FRQOmCft-8iQUtkg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.056 [XNIO-1 task-4] yfk7w1FRQOmCft-8iQUtkg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1619d15c-46c7-46ce-aaa0-f5628ecca714 scope = null +16:40:55.059 [XNIO-1 task-2] tqC_qcPLQtaDmULZrKTccg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.065 [XNIO-1 task-1] t7wOWT0TQGWEW1QQxlz9JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.065 [XNIO-1 task-1] t7wOWT0TQGWEW1QQxlz9JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.066 [XNIO-1 task-1] t7wOWT0TQGWEW1QQxlz9JA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.066 [XNIO-1 task-1] t7wOWT0TQGWEW1QQxlz9JA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.069 [XNIO-1 task-2] yHFIEdQKRX2--Dmw3JC25A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.070 [XNIO-1 task-2] yHFIEdQKRX2--Dmw3JC25A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.070 [XNIO-1 task-2] yHFIEdQKRX2--Dmw3JC25A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.070 [XNIO-1 task-2] yHFIEdQKRX2--Dmw3JC25A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ofKwjKoDQai3c2NWAh8KHQ redirectUri = http://localhost:8080/authorization +16:40:55.071 [XNIO-1 task-1] t7wOWT0TQGWEW1QQxlz9JA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.078 [XNIO-1 task-1] oded6ywZT0ux-6GlsBLoOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.078 [XNIO-1 task-1] oded6ywZT0ux-6GlsBLoOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.078 [XNIO-1 task-1] oded6ywZT0ux-6GlsBLoOQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.078 [XNIO-1 task-1] oded6ywZT0ux-6GlsBLoOQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.088 [XNIO-1 task-1] oded6ywZT0ux-6GlsBLoOQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.090 [XNIO-1 task-2] yHFIEdQKRX2--Dmw3JC25A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.092 [XNIO-1 task-1] qA-VhIL8QWa2DSHirb0LKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.092 [XNIO-1 task-1] qA-VhIL8QWa2DSHirb0LKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.093 [XNIO-1 task-1] qA-VhIL8QWa2DSHirb0LKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.093 [XNIO-1 task-1] qA-VhIL8QWa2DSHirb0LKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", authorization) +16:40:55.095 [XNIO-1 task-4] yfk7w1FRQOmCft-8iQUtkg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.101 [XNIO-1 task-1] qA-VhIL8QWa2DSHirb0LKQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.112 [XNIO-1 task-1] EFmYWUteRx6JalnV1CZ8MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.112 [XNIO-1 task-1] EFmYWUteRx6JalnV1CZ8MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.112 [XNIO-1 task-1] EFmYWUteRx6JalnV1CZ8MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.112 [XNIO-1 task-1] EFmYWUteRx6JalnV1CZ8MQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.112 [XNIO-1 task-4] k3zXo5_7T6uTu6AOY8Cbjg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.113 [XNIO-1 task-4] k3zXo5_7T6uTu6AOY8Cbjg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.113 [XNIO-1 task-1] EFmYWUteRx6JalnV1CZ8MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", authorization) +16:40:55.113 [XNIO-1 task-4] k3zXo5_7T6uTu6AOY8Cbjg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.121 [XNIO-1 task-4] k3zXo5_7T6uTu6AOY8Cbjg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.124 [XNIO-1 task-1] EFmYWUteRx6JalnV1CZ8MQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.127 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0d1caba8 +16:40:55.128 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0d1caba8 +16:40:55.130 [XNIO-1 task-4] hrtsFyH1QAeJDq7EtH0n2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.130 [XNIO-1 task-4] hrtsFyH1QAeJDq7EtH0n2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.130 [XNIO-1 task-4] hrtsFyH1QAeJDq7EtH0n2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.130 [XNIO-1 task-4] hrtsFyH1QAeJDq7EtH0n2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.134 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:6b0f7919 +16:40:55.135 [XNIO-1 task-4] hrtsFyH1QAeJDq7EtH0n2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.140 [XNIO-1 task-4] jY618LByTGSJSYx7JSaT3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.140 [XNIO-1 task-4] jY618LByTGSJSYx7JSaT3Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.140 [XNIO-1 task-4] jY618LByTGSJSYx7JSaT3Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.140 [XNIO-1 task-4] jY618LByTGSJSYx7JSaT3Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", authorization) +16:40:55.143 [XNIO-1 task-1] KRi7mlF_Rfqk8Vf9M7PB_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.144 [XNIO-1 task-1] KRi7mlF_Rfqk8Vf9M7PB_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.144 [XNIO-1 task-1] KRi7mlF_Rfqk8Vf9M7PB_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.145 [XNIO-1 task-1] KRi7mlF_Rfqk8Vf9M7PB_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", authorization) +16:40:55.145 [XNIO-1 task-4] jY618LByTGSJSYx7JSaT3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.146 [XNIO-1 task-4] jY618LByTGSJSYx7JSaT3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.152 [XNIO-1 task-1] KRi7mlF_Rfqk8Vf9M7PB_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.159 [XNIO-1 task-1] lKycB0itQL2H3vLwpn80aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.159 [XNIO-1 task-1] lKycB0itQL2H3vLwpn80aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.159 [XNIO-1 task-1] lKycB0itQL2H3vLwpn80aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.160 [XNIO-1 task-1] lKycB0itQL2H3vLwpn80aQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.167 [XNIO-1 task-1] lKycB0itQL2H3vLwpn80aQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.171 [XNIO-1 task-1] b3vFyn4dSd-ObckLwvYf7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.171 [XNIO-1 task-1] b3vFyn4dSd-ObckLwvYf7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.172 [XNIO-1 task-1] b3vFyn4dSd-ObckLwvYf7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.172 [XNIO-1 task-1] b3vFyn4dSd-ObckLwvYf7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.174 [XNIO-1 task-4] -BSWhm_7TT6lJAIK87gHhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.174 [XNIO-1 task-4] -BSWhm_7TT6lJAIK87gHhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.174 [XNIO-1 task-4] -BSWhm_7TT6lJAIK87gHhw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.174 [XNIO-1 task-4] -BSWhm_7TT6lJAIK87gHhw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Jsadqg0FQlGYPukClmz62Q redirectUri = http://localhost:8080/authorization +16:40:55.178 [XNIO-1 task-1] b3vFyn4dSd-ObckLwvYf7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.180 [XNIO-1 task-4] -BSWhm_7TT6lJAIK87gHhw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.183 [XNIO-1 task-1] u-mvgvpSS36L2JU4qMqNpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.183 [XNIO-1 task-1] u-mvgvpSS36L2JU4qMqNpw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.183 [XNIO-1 task-1] u-mvgvpSS36L2JU4qMqNpw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.183 [XNIO-1 task-1] u-mvgvpSS36L2JU4qMqNpw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", authorization) +16:40:55.189 [XNIO-1 task-1] u-mvgvpSS36L2JU4qMqNpw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.193 [XNIO-1 task-1] pktFoV65QFiG37jsSzD8Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.193 [XNIO-1 task-1] pktFoV65QFiG37jsSzD8Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.193 [XNIO-1 task-1] pktFoV65QFiG37jsSzD8Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.193 [XNIO-1 task-1] pktFoV65QFiG37jsSzD8Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", authorization) +16:40:55.198 [XNIO-1 task-4] OATxso9FR0yva_LcBuqJrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.198 [XNIO-1 task-4] OATxso9FR0yva_LcBuqJrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.198 [XNIO-1 task-4] OATxso9FR0yva_LcBuqJrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.198 [XNIO-1 task-4] OATxso9FR0yva_LcBuqJrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.198 [XNIO-1 task-4] OATxso9FR0yva_LcBuqJrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.198 [XNIO-1 task-4] OATxso9FR0yva_LcBuqJrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.198 [XNIO-1 task-2] uH-cwR5gQ0a4vsnH22T6OA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:55.199 [XNIO-1 task-4] OATxso9FR0yva_LcBuqJrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", authorization) +16:40:55.203 [XNIO-1 task-1] pktFoV65QFiG37jsSzD8Dw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.203 [XNIO-1 task-1] pktFoV65QFiG37jsSzD8Dw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.203 [XNIO-1 task-1] pktFoV65QFiG37jsSzD8Dw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 9e9d2d23-5b91-42b0-9871-579b2289768a is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:55.210 [XNIO-1 task-2] fh77ncQKRSGc1sqvbTfZbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.210 [XNIO-1 task-2] fh77ncQKRSGc1sqvbTfZbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.210 [XNIO-1 task-2] fh77ncQKRSGc1sqvbTfZbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.210 [XNIO-1 task-2] fh77ncQKRSGc1sqvbTfZbA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:55.215 [XNIO-1 task-2] fh77ncQKRSGc1sqvbTfZbA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.220 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d5b1fa95 +16:40:55.221 [XNIO-1 task-2] qFDj0RivTiScdMEyXUaB5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.221 [XNIO-1 task-2] qFDj0RivTiScdMEyXUaB5g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.221 [XNIO-1 task-2] qFDj0RivTiScdMEyXUaB5g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.222 [XNIO-1 task-2] qFDj0RivTiScdMEyXUaB5g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:55.226 [XNIO-1 task-1] Fls483TRR2a49b212oWJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.226 [XNIO-1 task-1] Fls483TRR2a49b212oWJWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.226 [XNIO-1 task-1] Fls483TRR2a49b212oWJWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.226 [XNIO-1 task-1] Fls483TRR2a49b212oWJWg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmM0ZGNmMjYtMDViMS00YzQ0LWE4YjAtM2FjODQxOTRhZDg4OkQ0YzJXd1BjVDV1b3k1SWU4RUpSTnc=", "Basic ZmM0ZGNmMjYtMDViMS00YzQ0LWE4YjAtM2FjODQxOTRhZDg4OkQ0YzJXd1BjVDV1b3k1SWU4RUpSTnc=", authorization) +16:40:55.227 [XNIO-1 task-2] qFDj0RivTiScdMEyXUaB5g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.227 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ef3ea14a-a1df-4d30-b291-7d8b91fc8ddd +16:40:55.228 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:ef3ea14a-a1df-4d30-b291-7d8b91fc8ddd +16:40:55.234 [XNIO-1 task-1] Fls483TRR2a49b212oWJWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.235 [XNIO-1 task-2] LbtqHQEsQh6Y2NuglXsgLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.235 [XNIO-1 task-2] LbtqHQEsQh6Y2NuglXsgLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.235 [XNIO-1 task-1] Fls483TRR2a49b212oWJWg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.235 [XNIO-1 task-2] LbtqHQEsQh6Y2NuglXsgLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ODJjNTBlZGUtMmNhMi00ZWNmLWExNmQtMTUxYjY3ZmZhZmZjOllldHhOdGQ0UWNha1Fwem8yOU52WWc=", "Basic ODJjNTBlZGUtMmNhMi00ZWNmLWExNmQtMTUxYjY3ZmZhZmZjOllldHhOdGQ0UWNha1Fwem8yOU52WWc=", authorization) +16:40:55.237 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.241 [XNIO-1 task-4] HyuJhefyS_aChl2nHImZkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.241 [XNIO-1 task-4] HyuJhefyS_aChl2nHImZkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.241 [XNIO-1 task-4] HyuJhefyS_aChl2nHImZkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.242 [XNIO-1 task-4] HyuJhefyS_aChl2nHImZkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.242 [XNIO-1 task-4] HyuJhefyS_aChl2nHImZkw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", authorization) +16:40:55.246 [XNIO-1 task-1] _3yvEBirSfu5hMmoMQFG4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.246 [XNIO-1 task-1] _3yvEBirSfu5hMmoMQFG4A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.246 [XNIO-1 task-1] _3yvEBirSfu5hMmoMQFG4A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.246 [XNIO-1 task-1] _3yvEBirSfu5hMmoMQFG4A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", authorization) +16:40:55.248 [XNIO-1 task-4] HyuJhefyS_aChl2nHImZkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.248 [XNIO-1 task-4] HyuJhefyS_aChl2nHImZkw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.249 [XNIO-1 task-2] d-MEuC6PRo-n2qMY3kpQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.249 [XNIO-1 task-2] d-MEuC6PRo-n2qMY3kpQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.250 [XNIO-1 task-2] d-MEuC6PRo-n2qMY3kpQ2Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.250 [XNIO-1 task-2] d-MEuC6PRo-n2qMY3kpQ2Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = OEgz_9j2SE2TKuCGQYpgHg redirectUri = http://localhost:8080/authorization +16:40:55.253 [XNIO-1 task-1] _3yvEBirSfu5hMmoMQFG4A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.256 [XNIO-1 task-2] d-MEuC6PRo-n2qMY3kpQ2Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.261 [XNIO-1 task-1] 0yHMKuQxRICmHWyehF0WiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.261 [XNIO-1 task-1] 0yHMKuQxRICmHWyehF0WiA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.261 [XNIO-1 task-1] 0yHMKuQxRICmHWyehF0WiA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.261 [XNIO-1 task-1] 0yHMKuQxRICmHWyehF0WiA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", "Basic YmExYjc2ZDUtZTAyNS00NjEyLTk5ZmUtZjVhNmJkNGIyYWM5Om1OV0VRRlVaVDVXZkdJclhKTnJYbGc=", authorization) +16:40:55.265 [XNIO-1 task-2] RHPGz--GTYWfOns1pgofBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.265 [XNIO-1 task-2] RHPGz--GTYWfOns1pgofBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.265 [XNIO-1 task-2] RHPGz--GTYWfOns1pgofBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.265 [XNIO-1 task-2] RHPGz--GTYWfOns1pgofBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", authorization) +16:40:55.272 [XNIO-1 task-2] RHPGz--GTYWfOns1pgofBQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.273 [XNIO-1 task-1] 0yHMKuQxRICmHWyehF0WiA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.276 [XNIO-1 task-2] zkKNOkHzQDGBf_SQbqs-8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.276 [XNIO-1 task-2] zkKNOkHzQDGBf_SQbqs-8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.276 [XNIO-1 task-2] zkKNOkHzQDGBf_SQbqs-8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.276 [XNIO-1 task-2] zkKNOkHzQDGBf_SQbqs-8A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", authorization) +16:40:55.282 [XNIO-1 task-2] zkKNOkHzQDGBf_SQbqs-8A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.282 [XNIO-1 task-4] 9RG4_06tSeSjEYURTuivYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.282 [XNIO-1 task-4] 9RG4_06tSeSjEYURTuivYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.283 [XNIO-1 task-4] 9RG4_06tSeSjEYURTuivYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.283 [XNIO-1 task-4] 9RG4_06tSeSjEYURTuivYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", authorization) +16:40:55.289 [XNIO-1 task-4] 9RG4_06tSeSjEYURTuivYQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.289 [XNIO-1 task-2] iC28MB5DT6KpmLsFGfNiuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.289 [XNIO-1 task-2] iC28MB5DT6KpmLsFGfNiuQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.289 [XNIO-1 task-4] 9RG4_06tSeSjEYURTuivYQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.289 [XNIO-1 task-2] iC28MB5DT6KpmLsFGfNiuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.290 [XNIO-1 task-2] iC28MB5DT6KpmLsFGfNiuQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.295 [XNIO-1 task-2] iC28MB5DT6KpmLsFGfNiuQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.303 [XNIO-1 task-2] tXsqt_MFTWew4oMxtG1a0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.304 [XNIO-1 task-2] tXsqt_MFTWew4oMxtG1a0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.304 [XNIO-1 task-2] tXsqt_MFTWew4oMxtG1a0Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.305 [XNIO-1 task-2] tXsqt_MFTWew4oMxtG1a0Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.310 [XNIO-1 task-2] tXsqt_MFTWew4oMxtG1a0Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.317 [XNIO-1 task-2] 4ECgBfpIRhWQFxElUfTn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.317 [XNIO-1 task-2] 4ECgBfpIRhWQFxElUfTn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.317 [XNIO-1 task-2] 4ECgBfpIRhWQFxElUfTn6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.318 [XNIO-1 task-2] 4ECgBfpIRhWQFxElUfTn6g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.323 [XNIO-1 task-2] 4ECgBfpIRhWQFxElUfTn6g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.331 [XNIO-1 task-2] unK-Mgd7SK6hr_WjSdFPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.331 [XNIO-1 task-2] unK-Mgd7SK6hr_WjSdFPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.331 [XNIO-1 task-2] unK-Mgd7SK6hr_WjSdFPUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.331 [XNIO-1 task-2] unK-Mgd7SK6hr_WjSdFPUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.336 [XNIO-1 task-4] -WQJ4-sOQ1CCs8KJeDQWhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.336 [XNIO-1 task-4] -WQJ4-sOQ1CCs8KJeDQWhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.336 [XNIO-1 task-4] -WQJ4-sOQ1CCs8KJeDQWhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.336 [XNIO-1 task-2] unK-Mgd7SK6hr_WjSdFPUQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.336 [XNIO-1 task-4] -WQJ4-sOQ1CCs8KJeDQWhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 95178b96-11fd-4700-a968-93d708db76a4 scope = null +16:40:55.343 [XNIO-1 task-2] 8a09OPxRSbuCy4lZF9vmEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.343 [XNIO-1 task-2] 8a09OPxRSbuCy4lZF9vmEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.343 [XNIO-1 task-2] 8a09OPxRSbuCy4lZF9vmEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.343 [XNIO-1 task-2] 8a09OPxRSbuCy4lZF9vmEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 95178b96-11fd-4700-a968-93d708db76a4 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:55.349 [XNIO-1 task-2] 8a09OPxRSbuCy4lZF9vmEw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.360 [XNIO-1 task-2] ILGVioh6QeadL7oDhxuVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.360 [XNIO-1 task-2] ILGVioh6QeadL7oDhxuVTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.360 [XNIO-1 task-2] ILGVioh6QeadL7oDhxuVTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.360 [XNIO-1 task-2] ILGVioh6QeadL7oDhxuVTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTE5MGU0MGQtNjAwYi00NTg5LTg1ODEtYmMzOWYwMDlmMjQ1Om5KMEtHV0JSVHd5Y3R3eVhSNmlPVWc=", "Basic OTE5MGU0MGQtNjAwYi00NTg5LTg1ODEtYmMzOWYwMDlmMjQ1Om5KMEtHV0JSVHd5Y3R3eVhSNmlPVWc=", authorization) +16:40:55.366 [XNIO-1 task-2] ILGVioh6QeadL7oDhxuVTw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.367 [XNIO-1 task-4] W-nkzWe2Q4Odz3TwvjEoHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.367 [XNIO-1 task-4] W-nkzWe2Q4Odz3TwvjEoHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.367 [XNIO-1 task-4] W-nkzWe2Q4Odz3TwvjEoHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.367 [XNIO-1 task-4] W-nkzWe2Q4Odz3TwvjEoHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZDQxY2M3ODctN2I1NC00OWY1LThiZjEtMzUwYTJkZjhiMWQ5OkI4cHpFbHNrU3c2aG9LVjYzNmNIVVE=", "Basic ZDQxY2M3ODctN2I1NC00OWY1LThiZjEtMzUwYTJkZjhiMWQ5OkI4cHpFbHNrU3c2aG9LVjYzNmNIVVE=", authorization) +16:40:55.370 [XNIO-1 task-2] _t4JhpduTMCfvUJLqevZYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.370 [XNIO-1 task-2] _t4JhpduTMCfvUJLqevZYg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.370 [XNIO-1 task-2] _t4JhpduTMCfvUJLqevZYg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.370 [XNIO-1 task-2] _t4JhpduTMCfvUJLqevZYg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTE5MGU0MGQtNjAwYi00NTg5LTg1ODEtYmMzOWYwMDlmMjQ1Om5KMEtHV0JSVHd5Y3R3eVhSNmlPVWc=", "Basic OTE5MGU0MGQtNjAwYi00NTg5LTg1ODEtYmMzOWYwMDlmMjQ1Om5KMEtHV0JSVHd5Y3R3eVhSNmlPVWc=", authorization) +16:40:55.375 [XNIO-1 task-4] W-nkzWe2Q4Odz3TwvjEoHQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.375 [XNIO-1 task-4] W-nkzWe2Q4Odz3TwvjEoHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.376 [XNIO-1 task-2] _t4JhpduTMCfvUJLqevZYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.378 [XNIO-1 task-1] Ty9tljhvQZO80d7J566PrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.378 [XNIO-1 task-1] Ty9tljhvQZO80d7J566PrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.378 [XNIO-1 task-1] Ty9tljhvQZO80d7J566PrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.378 [XNIO-1 task-1] Ty9tljhvQZO80d7J566PrQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Ja9_GD0iS9qcr5yFZHmq9A redirectUri = http://localhost:8080/authorization +16:40:55.382 [XNIO-1 task-4] SCS9LThqQq-SDSiGQbM8Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.382 [XNIO-1 task-4] SCS9LThqQq-SDSiGQbM8Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.382 [XNIO-1 task-4] SCS9LThqQq-SDSiGQbM8Tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.383 [XNIO-1 task-4] SCS9LThqQq-SDSiGQbM8Tg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.386 [XNIO-1 task-1] Ty9tljhvQZO80d7J566PrQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.389 [XNIO-1 task-4] SCS9LThqQq-SDSiGQbM8Tg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.395 [XNIO-1 task-1] -Dt8Xi-5T_eFa_w8a3CWjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.395 [XNIO-1 task-1] -Dt8Xi-5T_eFa_w8a3CWjA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.396 [XNIO-1 task-1] -Dt8Xi-5T_eFa_w8a3CWjA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.396 [XNIO-1 task-1] -Dt8Xi-5T_eFa_w8a3CWjA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", authorization) +16:40:55.402 [XNIO-1 task-4] Sr-EcpZPTBusr0sjWrN1dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.403 [XNIO-1 task-2] A7sQrLHcS32lQ2Ca4-L9-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.403 [XNIO-1 task-2] A7sQrLHcS32lQ2Ca4-L9-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.403 [XNIO-1 task-2] A7sQrLHcS32lQ2Ca4-L9-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.403 [XNIO-1 task-4] Sr-EcpZPTBusr0sjWrN1dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.403 [XNIO-1 task-2] A7sQrLHcS32lQ2Ca4-L9-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.403 [XNIO-1 task-4] Sr-EcpZPTBusr0sjWrN1dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmY0ZTVlZmEtZGY4ZC00YTZkLWJlNGQtY2Y1ZmViOTdkYjBiOkdENm5saTEwUzY2UFI0SEQxM3dZQkE=", "Basic NmY0ZTVlZmEtZGY4ZC00YTZkLWJlNGQtY2Y1ZmViOTdkYjBiOkdENm5saTEwUzY2UFI0SEQxM3dZQkE=", authorization) +16:40:55.403 [XNIO-1 task-4] Sr-EcpZPTBusr0sjWrN1dw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = fb07cf0a-f55c-4ed7-829d-7e84c45ef764 scope = null +16:40:55.403 [XNIO-1 task-1] -Dt8Xi-5T_eFa_w8a3CWjA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.408 [XNIO-1 task-1] CBkgqRKbSQaq65BebTwc0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.408 [XNIO-1 task-1] CBkgqRKbSQaq65BebTwc0A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.408 [XNIO-1 task-1] CBkgqRKbSQaq65BebTwc0A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.408 [XNIO-1 task-1] CBkgqRKbSQaq65BebTwc0A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", authorization) +16:40:55.409 [XNIO-1 task-2] A7sQrLHcS32lQ2Ca4-L9-Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.409 [XNIO-1 task-2] A7sQrLHcS32lQ2Ca4-L9-Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.414 [XNIO-1 task-4] Sr-EcpZPTBusr0sjWrN1dw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.414 [XNIO-1 task-1] CBkgqRKbSQaq65BebTwc0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.418 [XNIO-1 task-1] ZwZTrHyZTUmaUEYyayJukg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.419 [XNIO-1 task-1] ZwZTrHyZTUmaUEYyayJukg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.419 [XNIO-1 task-1] ZwZTrHyZTUmaUEYyayJukg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.419 [XNIO-1 task-1] ZwZTrHyZTUmaUEYyayJukg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.423 [XNIO-1 task-4] ghCbnf6YTSuNd5nWmnrfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.423 [XNIO-1 task-4] ghCbnf6YTSuNd5nWmnrfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.423 [XNIO-1 task-4] ghCbnf6YTSuNd5nWmnrfYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.424 [XNIO-1 task-4] ghCbnf6YTSuNd5nWmnrfYg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 0679b862-5365-4ecc-8742-db4801aad5e8 scope = null +16:40:55.426 [XNIO-1 task-1] ZwZTrHyZTUmaUEYyayJukg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.426 [XNIO-1 task-2] vkWR4uCvQqqt9RcAfcseXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.426 [XNIO-1 task-2] vkWR4uCvQqqt9RcAfcseXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.426 [XNIO-1 task-2] vkWR4uCvQqqt9RcAfcseXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.426 [XNIO-1 task-2] vkWR4uCvQqqt9RcAfcseXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = bbd85c9b-37c5-4e95-84c8-3b254e252d31 scope = null +16:40:55.430 [XNIO-1 task-1] -lt1ktRmTZaA0mhiNhyrvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.430 [XNIO-1 task-1] -lt1ktRmTZaA0mhiNhyrvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.430 [XNIO-1 task-1] -lt1ktRmTZaA0mhiNhyrvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.430 [XNIO-1 task-1] -lt1ktRmTZaA0mhiNhyrvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.434 [XNIO-1 task-4] ghCbnf6YTSuNd5nWmnrfYg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.437 [XNIO-1 task-2] vkWR4uCvQqqt9RcAfcseXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.437 [XNIO-1 task-1] -lt1ktRmTZaA0mhiNhyrvA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.443 [XNIO-1 task-4] nFN_SL1FR6imWdWwXHvKDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.443 [XNIO-1 task-4] nFN_SL1FR6imWdWwXHvKDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.443 [XNIO-1 task-4] nFN_SL1FR6imWdWwXHvKDw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.443 [XNIO-1 task-4] nFN_SL1FR6imWdWwXHvKDw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.448 [XNIO-1 task-4] nFN_SL1FR6imWdWwXHvKDw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.454 [XNIO-1 task-4] sYhak3nuRtCbAWK0eaJGTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.454 [XNIO-1 task-4] sYhak3nuRtCbAWK0eaJGTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.454 [XNIO-1 task-4] sYhak3nuRtCbAWK0eaJGTw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.454 [XNIO-1 task-4] sYhak3nuRtCbAWK0eaJGTw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.460 [XNIO-1 task-4] sYhak3nuRtCbAWK0eaJGTw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.466 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:d5b1fa95 +16:40:55.473 [XNIO-1 task-4] sBfwVT9RRXGD18eiQqAIRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.473 [XNIO-1 task-4] sBfwVT9RRXGD18eiQqAIRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.473 [XNIO-1 task-4] sBfwVT9RRXGD18eiQqAIRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.474 [XNIO-1 task-4] sBfwVT9RRXGD18eiQqAIRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.482 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2700293d +16:40:55.482 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:2700293d +16:40:55.489 [XNIO-1 task-4] jM5PMbstR76unGx680Ly6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.489 [XNIO-1 task-4] jM5PMbstR76unGx680Ly6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.489 [XNIO-1 task-4] jM5PMbstR76unGx680Ly6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.489 [XNIO-1 task-4] jM5PMbstR76unGx680Ly6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTFhOWQyNWItMTIyYy00NTJlLWI3ZmItZmVmMGJhODIzOTNjOnloQkRTUUJKUmE2dUhOWUFaZ01odlE=", "Basic MTFhOWQyNWItMTIyYy00NTJlLWI3ZmItZmVmMGJhODIzOTNjOnloQkRTUUJKUmE2dUhOWUFaZ01odlE=", authorization) +16:40:55.494 [XNIO-1 task-2] znd9PvJoQI-xl7GSttqVig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.494 [XNIO-1 task-2] znd9PvJoQI-xl7GSttqVig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.494 [XNIO-1 task-4] jM5PMbstR76unGx680Ly6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.494 [XNIO-1 task-2] znd9PvJoQI-xl7GSttqVig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.495 [XNIO-1 task-2] znd9PvJoQI-xl7GSttqVig DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", authorization) +16:40:55.504 [XNIO-1 task-4] riYpMb9CS_iF8glWpKmGnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.504 [XNIO-1 task-4] riYpMb9CS_iF8glWpKmGnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.504 [XNIO-1 task-4] riYpMb9CS_iF8glWpKmGnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.504 [XNIO-1 task-4] riYpMb9CS_iF8glWpKmGnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTFhOWQyNWItMTIyYy00NTJlLWI3ZmItZmVmMGJhODIzOTNjOnloQkRTUUJKUmE2dUhOWUFaZ01odlE=", "Basic MTFhOWQyNWItMTIyYy00NTJlLWI3ZmItZmVmMGJhODIzOTNjOnloQkRTUUJKUmE2dUhOWUFaZ01odlE=", authorization) +16:40:55.508 [XNIO-1 task-2] znd9PvJoQI-xl7GSttqVig DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.509 [XNIO-1 task-4] riYpMb9CS_iF8glWpKmGnQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.519 [XNIO-1 task-2] RukGxyRYQUCCT0as--y0HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.519 [XNIO-1 task-2] RukGxyRYQUCCT0as--y0HQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.519 [XNIO-1 task-2] RukGxyRYQUCCT0as--y0HQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.519 [XNIO-1 task-2] RukGxyRYQUCCT0as--y0HQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MTFhOWQyNWItMTIyYy00NTJlLWI3ZmItZmVmMGJhODIzOTNjOnloQkRTUUJKUmE2dUhOWUFaZ01odlE=", "Basic MTFhOWQyNWItMTIyYy00NTJlLWI3ZmItZmVmMGJhODIzOTNjOnloQkRTUUJKUmE2dUhOWUFaZ01odlE=", authorization) +16:40:55.525 [XNIO-1 task-4] mouSmZ71S5a8_7oeLL6m_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.525 [XNIO-1 task-4] mouSmZ71S5a8_7oeLL6m_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.525 [XNIO-1 task-4] mouSmZ71S5a8_7oeLL6m_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.525 [XNIO-1 task-4] mouSmZ71S5a8_7oeLL6m_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", authorization) +16:40:55.526 [XNIO-1 task-2] RukGxyRYQUCCT0as--y0HQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.531 [XNIO-1 task-4] mouSmZ71S5a8_7oeLL6m_Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.534 [XNIO-1 task-4] mouSmZ71S5a8_7oeLL6m_Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.536 [XNIO-1 task-2] oWAWWJKqQiatfxxREHr3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.536 [XNIO-1 task-2] oWAWWJKqQiatfxxREHr3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.536 [XNIO-1 task-2] oWAWWJKqQiatfxxREHr3Ww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.536 [XNIO-1 task-2] oWAWWJKqQiatfxxREHr3Ww DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.536 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 +16:40:55.541 [XNIO-1 task-2] oWAWWJKqQiatfxxREHr3Ww INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.548 [XNIO-1 task-2] SNEyOYm5TUSTrBqf3vv84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.548 [XNIO-1 task-2] SNEyOYm5TUSTrBqf3vv84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.548 [XNIO-1 task-2] SNEyOYm5TUSTrBqf3vv84Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.548 [XNIO-1 task-2] SNEyOYm5TUSTrBqf3vv84Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.553 [XNIO-1 task-2] SNEyOYm5TUSTrBqf3vv84Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.562 [XNIO-1 task-2] l460OwpjQSW3-0MlQXwzAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.563 [XNIO-1 task-2] l460OwpjQSW3-0MlQXwzAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.563 [XNIO-1 task-2] l460OwpjQSW3-0MlQXwzAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.563 [XNIO-1 task-2] l460OwpjQSW3-0MlQXwzAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.569 [XNIO-1 task-2] l460OwpjQSW3-0MlQXwzAQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.574 [XNIO-1 task-2] kiHRuQP2Qee4LJB2jB8PZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.574 [XNIO-1 task-2] kiHRuQP2Qee4LJB2jB8PZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.574 [XNIO-1 task-2] kiHRuQP2Qee4LJB2jB8PZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.574 [XNIO-1 task-2] kiHRuQP2Qee4LJB2jB8PZQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.579 [XNIO-1 task-2] kiHRuQP2Qee4LJB2jB8PZQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.592 [XNIO-1 task-2] BcM3StSzS_G45g55x4_SuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.592 [XNIO-1 task-2] BcM3StSzS_G45g55x4_SuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.592 [XNIO-1 task-2] BcM3StSzS_G45g55x4_SuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.592 [XNIO-1 task-2] BcM3StSzS_G45g55x4_SuA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.598 [XNIO-1 task-2] BcM3StSzS_G45g55x4_SuA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.602 [XNIO-1 task-2] G97Y--5zSqeNsZtuVXBTkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.602 [XNIO-1 task-2] G97Y--5zSqeNsZtuVXBTkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.602 [XNIO-1 task-2] G97Y--5zSqeNsZtuVXBTkw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.602 [XNIO-1 task-2] G97Y--5zSqeNsZtuVXBTkw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = ryYJtWTjTDay_E0rfJ0HtA redirectUri = http://localhost:8080/authorization +16:40:55.608 [XNIO-1 task-2] G97Y--5zSqeNsZtuVXBTkw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.608 [XNIO-1 task-4] akwc4AdkQk6BcweR4_WbvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.608 [XNIO-1 task-4] akwc4AdkQk6BcweR4_WbvQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.608 [XNIO-1 task-4] akwc4AdkQk6BcweR4_WbvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.608 [XNIO-1 task-4] akwc4AdkQk6BcweR4_WbvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MmM3MGIwMTEtNzk2Zi00MWUyLWEzN2MtMDdmMjYxNzMyMzk1OjY5TE5wMnJ4VEcyWlFkRHI0OTEzNXc=", "Basic MmM3MGIwMTEtNzk2Zi00MWUyLWEzN2MtMDdmMjYxNzMyMzk1OjY5TE5wMnJ4VEcyWlFkRHI0OTEzNXc=", authorization) +16:40:55.614 [XNIO-1 task-4] akwc4AdkQk6BcweR4_WbvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.618 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:88d0222c-1913-440a-95e7-13a95020ef08 +16:40:55.620 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:88d0222c-1913-440a-95e7-13a95020ef08 +16:40:55.620 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:88d0222c-1913-440a-95e7-13a95020ef08 +16:40:55.620 [XNIO-1 task-2] p_gAvQQIQ6qNIXlFzohYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.620 [XNIO-1 task-2] p_gAvQQIQ6qNIXlFzohYTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.620 [XNIO-1 task-2] p_gAvQQIQ6qNIXlFzohYTg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.622 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:986d41b0 +16:40:55.625 [XNIO-1 task-2] p_gAvQQIQ6qNIXlFzohYTg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.631 [XNIO-1 task-2] umt5lQSxSICfR8kA2vLIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.631 [XNIO-1 task-2] umt5lQSxSICfR8kA2vLIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.631 [XNIO-1 task-2] umt5lQSxSICfR8kA2vLIVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.631 [XNIO-1 task-2] umt5lQSxSICfR8kA2vLIVA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 1GyLJnxwTNiYA4xRaoxzPw redirectUri = http://localhost:8080/authorization +16:40:55.636 [XNIO-1 task-4] u5-c4gP8Q8ezUc7GwiPvdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.636 [XNIO-1 task-4] u5-c4gP8Q8ezUc7GwiPvdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.636 [XNIO-1 task-4] u5-c4gP8Q8ezUc7GwiPvdQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.636 [XNIO-1 task-4] u5-c4gP8Q8ezUc7GwiPvdQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.637 [XNIO-1 task-2] umt5lQSxSICfR8kA2vLIVA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.643 [XNIO-1 task-4] u5-c4gP8Q8ezUc7GwiPvdQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.653 [XNIO-1 task-4] G1MKvkUJRCenJHOIBSmlfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.653 [XNIO-1 task-4] G1MKvkUJRCenJHOIBSmlfA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.653 [XNIO-1 task-4] G1MKvkUJRCenJHOIBSmlfA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.653 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:6b0f7919 +16:40:55.654 [XNIO-1 task-4] G1MKvkUJRCenJHOIBSmlfA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6a35eb18-76a0-4842-8191-5934e01924a8 scope = null +16:40:55.654 [XNIO-1 task-2] 8tMBRk6eRZaa2p2eihAllQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.654 [XNIO-1 task-2] 8tMBRk6eRZaa2p2eihAllQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.655 [XNIO-1 task-2] 8tMBRk6eRZaa2p2eihAllQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.655 [XNIO-1 task-2] 8tMBRk6eRZaa2p2eihAllQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.655 [XNIO-1 task-2] 8tMBRk6eRZaa2p2eihAllQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.657 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fae145df-6bd6-4dcd-bc0b-f8a386419aff +16:40:55.660 [XNIO-1 task-2] 8tMBRk6eRZaa2p2eihAllQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.666 [XNIO-1 task-4] G1MKvkUJRCenJHOIBSmlfA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.667 [XNIO-1 task-2] _NFWu8ZgTda92R4dCraqHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.667 [XNIO-1 task-2] _NFWu8ZgTda92R4dCraqHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.667 [XNIO-1 task-2] _NFWu8ZgTda92R4dCraqHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.667 [XNIO-1 task-2] _NFWu8ZgTda92R4dCraqHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.667 [XNIO-1 task-2] _NFWu8ZgTda92R4dCraqHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGY1NjE1NWEtNDhjNy00NDFjLTk5MGEtNTlkY2FkMThkZjQ2OlZ2ZUZ2Q1B2UjctenFCZnY4QzRJcFE=", "Basic OGY1NjE1NWEtNDhjNy00NDFjLTk5MGEtNTlkY2FkMThkZjQ2OlZ2ZUZ2Q1B2UjctenFCZnY4QzRJcFE=", authorization) +16:40:55.668 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:21b29437-497a-4eed-8f02-d8700f3caa89 +16:40:55.670 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:21b29437-497a-4eed-8f02-d8700f3caa89 +16:40:55.670 [XNIO-1 task-1] 8PTOIYoTSoy6WMrWtYZZtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.670 [XNIO-1 task-1] 8PTOIYoTSoy6WMrWtYZZtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.670 [XNIO-1 task-1] 8PTOIYoTSoy6WMrWtYZZtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.671 [XNIO-1 task-1] 8PTOIYoTSoy6WMrWtYZZtw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = Jsx6v_hzSIiAa3gEOwLCbA redirectUri = http://localhost:8080/authorization +16:40:55.673 [XNIO-1 task-2] _NFWu8ZgTda92R4dCraqHQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.678 [XNIO-1 task-1] 8PTOIYoTSoy6WMrWtYZZtw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.678 [XNIO-1 task-4] k8EwdiowRheN-0zYi_B-zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.679 [XNIO-1 task-4] k8EwdiowRheN-0zYi_B-zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.679 [XNIO-1 task-4] k8EwdiowRheN-0zYi_B-zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.679 [XNIO-1 task-4] k8EwdiowRheN-0zYi_B-zw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", authorization) +16:40:55.680 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:cd0203ed-97f8-4f24-bc8c-a79bfcd800a5 +16:40:55.681 [XNIO-1 task-2] BuzDezlvShiyAH5x9w-TRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.681 [XNIO-1 task-2] BuzDezlvShiyAH5x9w-TRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.682 [XNIO-1 task-2] BuzDezlvShiyAH5x9w-TRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.682 [XNIO-1 task-2] BuzDezlvShiyAH5x9w-TRg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTI3OWNjOGMtYzFmYi00ZWYxLWJhZTItMmViMDY5MjE3MmE5Ok9XbVNTVVdJVExtaERQcHlId1g0LVE=", "Basic OTI3OWNjOGMtYzFmYi00ZWYxLWJhZTItMmViMDY5MjE3MmE5Ok9XbVNTVVdJVExtaERQcHlId1g0LVE=", authorization) +16:40:55.686 [XNIO-1 task-4] k8EwdiowRheN-0zYi_B-zw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.687 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:21b29437-497a-4eed-8f02-d8700f3caa89 +16:40:55.693 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:d9cff27c +16:40:55.693 [XNIO-1 task-4] QjHaOuLDTWualFrorq-6sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.693 [XNIO-1 task-4] QjHaOuLDTWualFrorq-6sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.693 [XNIO-1 task-4] QjHaOuLDTWualFrorq-6sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.694 [XNIO-1 task-4] QjHaOuLDTWualFrorq-6sA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", authorization) +16:40:55.694 [XNIO-1 task-2] BuzDezlvShiyAH5x9w-TRg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.700 [XNIO-1 task-4] QjHaOuLDTWualFrorq-6sA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.710 [XNIO-1 task-4] KoAiETC9QQ6cc9-4RkO2vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.710 [XNIO-1 task-4] KoAiETC9QQ6cc9-4RkO2vw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.710 [XNIO-1 task-4] KoAiETC9QQ6cc9-4RkO2vw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.710 [XNIO-1 task-4] KoAiETC9QQ6cc9-4RkO2vw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTI3OWNjOGMtYzFmYi00ZWYxLWJhZTItMmViMDY5MjE3MmE5Ok9XbVNTVVdJVExtaERQcHlId1g0LVE=", "Basic OTI3OWNjOGMtYzFmYi00ZWYxLWJhZTItMmViMDY5MjE3MmE5Ok9XbVNTVVdJVExtaERQcHlId1g0LVE=", authorization) +16:40:55.713 [XNIO-1 task-2] opeGe67sQF2MxpCO0Ktiyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.713 [XNIO-1 task-2] opeGe67sQF2MxpCO0Ktiyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.713 [XNIO-1 task-2] opeGe67sQF2MxpCO0Ktiyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.714 [XNIO-1 task-2] opeGe67sQF2MxpCO0Ktiyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlMTQ1ZGYtNmJkNi00ZGNkLWJjMGItZjhhMzg2NDE5YWZmOnI5YzMzVXdpUmFpbldOR2dlZDZfZGc=", "Basic ZmFlMTQ1ZGYtNmJkNi00ZGNkLWJjMGItZjhhMzg2NDE5YWZmOnI5YzMzVXdpUmFpbldOR2dlZDZfZGc=", authorization) +16:40:55.720 [XNIO-1 task-2] opeGe67sQF2MxpCO0Ktiyg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.722 [XNIO-1 task-4] KoAiETC9QQ6cc9-4RkO2vw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.730 [XNIO-1 task-2] 9zB47XVMTHeZUzi7HGatrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.730 [XNIO-1 task-2] 9zB47XVMTHeZUzi7HGatrg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.730 [XNIO-1 task-2] 9zB47XVMTHeZUzi7HGatrg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.730 [XNIO-1 task-2] 9zB47XVMTHeZUzi7HGatrg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlMTQ1ZGYtNmJkNi00ZGNkLWJjMGItZjhhMzg2NDE5YWZmOnI5YzMzVXdpUmFpbldOR2dlZDZfZGc=", "Basic ZmFlMTQ1ZGYtNmJkNi00ZGNkLWJjMGItZjhhMzg2NDE5YWZmOnI5YzMzVXdpUmFpbldOR2dlZDZfZGc=", authorization) +16:40:55.736 [XNIO-1 task-2] 9zB47XVMTHeZUzi7HGatrg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.745 [XNIO-1 task-2] grshFg4ZSxi6XemIoWQipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.745 [XNIO-1 task-2] grshFg4ZSxi6XemIoWQipg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.745 [XNIO-1 task-2] grshFg4ZSxi6XemIoWQipg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.745 [XNIO-1 task-2] grshFg4ZSxi6XemIoWQipg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmFlMTQ1ZGYtNmJkNi00ZGNkLWJjMGItZjhhMzg2NDE5YWZmOnI5YzMzVXdpUmFpbldOR2dlZDZfZGc=", "Basic ZmFlMTQ1ZGYtNmJkNi00ZGNkLWJjMGItZjhhMzg2NDE5YWZmOnI5YzMzVXdpUmFpbldOR2dlZDZfZGc=", authorization) +16:40:55.750 [XNIO-1 task-2] grshFg4ZSxi6XemIoWQipg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.761 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.761 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.761 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.761 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.761 [XNIO-1 task-4] RJIMagXxSouT4z-qNR-6rQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.761 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", authorization) +16:40:55.761 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = EFtCjSj_Q_OFaM9le1oYOg redirectUri = http://localhost:8080/authorization +16:40:55.761 [XNIO-1 task-4] RJIMagXxSouT4z-qNR-6rQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NWExOTBjNTUtZGFhNS00YmZhLWIyYTktOGY5ODk4M2NjNzliOmJabWcwQURDUjN1aXZRZUZrekwzeXc=", "Basic NWExOTBjNTUtZGFhNS00YmZhLWIyYTktOGY5ODk4M2NjNzliOmJabWcwQURDUjN1aXZRZUZrekwzeXc=", authorization) +16:40:55.766 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.767 [XNIO-1 task-2] jnFRek3kT3SuuhLyrh4PWA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.768 [XNIO-1 task-4] RJIMagXxSouT4z-qNR-6rQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.769 [XNIO-1 task-1] eWwKtYsVRQytuBzsupeSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.769 [XNIO-1 task-1] eWwKtYsVRQytuBzsupeSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.769 [XNIO-1 task-1] eWwKtYsVRQytuBzsupeSmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.769 [XNIO-1 task-1] eWwKtYsVRQytuBzsupeSmQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = PkY0MIvgSneXbre0r6oN9g redirectUri = http://localhost:8080/authorization +16:40:55.774 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:2700293d +16:40:55.775 [XNIO-1 task-2] jr2CgLlvSjm-L7iRd9oXUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.775 [XNIO-1 task-2] jr2CgLlvSjm-L7iRd9oXUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.775 [XNIO-1 task-2] jr2CgLlvSjm-L7iRd9oXUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.776 [XNIO-1 task-2] jr2CgLlvSjm-L7iRd9oXUQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.776 [XNIO-1 task-1] eWwKtYsVRQytuBzsupeSmQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.780 [XNIO-1 task-2] jr2CgLlvSjm-L7iRd9oXUQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.782 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5be98f82-73a0-43f7-8159-bf4f1e85b76d +16:40:55.793 [XNIO-1 task-1] Z5HufHtyRiyzPElLRWuUlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.793 [XNIO-1 task-1] Z5HufHtyRiyzPElLRWuUlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.793 [XNIO-1 task-1] Z5HufHtyRiyzPElLRWuUlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.793 [XNIO-1 task-1] Z5HufHtyRiyzPElLRWuUlw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = mRb-ojptRemiamgFjtlzgw redirectUri = http://localhost:8080/authorization +16:40:55.795 [XNIO-1 task-2] abIUKCtCSoSDxudTEK2Oyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.795 [XNIO-1 task-4] Aozs88asTU6unzK1dKKUyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.795 [XNIO-1 task-4] Aozs88asTU6unzK1dKKUyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.796 [XNIO-1 task-4] Aozs88asTU6unzK1dKKUyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.796 [XNIO-1 task-4] Aozs88asTU6unzK1dKKUyg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTI3OWNjOGMtYzFmYi00ZWYxLWJhZTItMmViMDY5MjE3MmE5Ok9XbVNTVVdJVExtaERQcHlId1g0LVE=", "Basic OTI3OWNjOGMtYzFmYi00ZWYxLWJhZTItMmViMDY5MjE3MmE5Ok9XbVNTVVdJVExtaERQcHlId1g0LVE=", authorization) +16:40:55.795 [XNIO-1 task-2] abIUKCtCSoSDxudTEK2Oyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.797 [XNIO-1 task-2] abIUKCtCSoSDxudTEK2Oyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.798 [XNIO-1 task-2] abIUKCtCSoSDxudTEK2Oyw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.800 [XNIO-1 task-1] Z5HufHtyRiyzPElLRWuUlw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.800 [XNIO-1 task-1] Z5HufHtyRiyzPElLRWuUlw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.802 [XNIO-1 task-2] abIUKCtCSoSDxudTEK2Oyw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.806 [XNIO-1 task-4] Aozs88asTU6unzK1dKKUyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.807 [XNIO-1 task-2] G8VaJoSvQQWS5SHUkwIF2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.808 [XNIO-1 task-2] G8VaJoSvQQWS5SHUkwIF2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.808 [XNIO-1 task-2] G8VaJoSvQQWS5SHUkwIF2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.809 [XNIO-1 task-2] G8VaJoSvQQWS5SHUkwIF2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.814 [XNIO-1 task-2] G8VaJoSvQQWS5SHUkwIF2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.816 [XNIO-1 task-2] rthvF_NuQxKTV9N7FhvrkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.816 [XNIO-1 task-2] rthvF_NuQxKTV9N7FhvrkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.816 [XNIO-1 task-2] rthvF_NuQxKTV9N7FhvrkA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.816 [XNIO-1 task-2] rthvF_NuQxKTV9N7FhvrkA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = f80f119c-57ea-4e84-bb22-13ba4e286823 scope = null +16:40:55.820 [XNIO-1 task-4] sKnpjMZOQ9SsQWrpesJ5uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.820 [XNIO-1 task-4] sKnpjMZOQ9SsQWrpesJ5uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.820 [XNIO-1 task-4] sKnpjMZOQ9SsQWrpesJ5uA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.820 [XNIO-1 task-4] sKnpjMZOQ9SsQWrpesJ5uA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 1fa9546b-1f0e-41ac-8e93-4a345d191e38 scope = null +16:40:55.823 [XNIO-1 task-1] uf4GAkbgQXiOl4T3TWvtqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.823 [XNIO-1 task-1] uf4GAkbgQXiOl4T3TWvtqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.823 [XNIO-1 task-1] uf4GAkbgQXiOl4T3TWvtqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.823 [XNIO-1 task-1] uf4GAkbgQXiOl4T3TWvtqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.829 [XNIO-1 task-1] uf4GAkbgQXiOl4T3TWvtqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.832 [XNIO-1 task-2] rthvF_NuQxKTV9N7FhvrkA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.832 [XNIO-1 task-4] sKnpjMZOQ9SsQWrpesJ5uA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.835 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:63adb998-4e6c-4a3a-85ba-9c4b82678688 +16:40:55.836 [XNIO-1 task-1] erCbiMqxRpu35P5O6mAp-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.836 [XNIO-1 task-1] erCbiMqxRpu35P5O6mAp-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.837 [XNIO-1 task-1] erCbiMqxRpu35P5O6mAp-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.837 [XNIO-1 task-1] erCbiMqxRpu35P5O6mAp-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", authorization) +16:40:55.840 [XNIO-1 task-2] fYT_w4ftTPWqbtTSXzTnyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.841 [XNIO-1 task-2] fYT_w4ftTPWqbtTSXzTnyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.841 [XNIO-1 task-2] fYT_w4ftTPWqbtTSXzTnyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.841 [XNIO-1 task-2] fYT_w4ftTPWqbtTSXzTnyw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", authorization) +16:40:55.843 [XNIO-1 task-1] erCbiMqxRpu35P5O6mAp-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.850 [XNIO-1 task-1] C_BZ-K_rRNKoyjF7nSGvAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.851 [XNIO-1 task-1] C_BZ-K_rRNKoyjF7nSGvAA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.851 [XNIO-1 task-1] C_BZ-K_rRNKoyjF7nSGvAA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.851 [XNIO-1 task-1] C_BZ-K_rRNKoyjF7nSGvAA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", "Basic NDgwMDRhNDktNzZmMy00NDdiLTkxMmItMTNjOTZlNjBiODM0OlhZQnNLUFhYUzllMWVnaVkySVpWOUE=", authorization) +16:40:55.855 [XNIO-1 task-2] fYT_w4ftTPWqbtTSXzTnyw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.856 [XNIO-1 task-1] C_BZ-K_rRNKoyjF7nSGvAA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.857 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:1d767cd6-b8f5-451e-8eb6-6b87bf6c9525 +16:40:55.858 [XNIO-1 task-4] NDA5RCPgQoWyxIkFgN73zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.858 [XNIO-1 task-4] NDA5RCPgQoWyxIkFgN73zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.858 [XNIO-1 task-4] NDA5RCPgQoWyxIkFgN73zA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.858 [XNIO-1 task-4] NDA5RCPgQoWyxIkFgN73zA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = fmL1ua8dQqatkPEQIb9hRA redirectUri = http://localhost:8080/authorization +16:40:55.860 [XNIO-1 task-1] HMa97jnPTIqJmX7tnT921Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.860 [XNIO-1 task-1] HMa97jnPTIqJmX7tnT921Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.860 [XNIO-1 task-1] HMa97jnPTIqJmX7tnT921Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.862 [XNIO-1 task-1] HMa97jnPTIqJmX7tnT921Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.864 [XNIO-1 task-2] X_P-UC3FSQSA6KX_TEoplQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.864 [XNIO-1 task-2] X_P-UC3FSQSA6KX_TEoplQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.864 [XNIO-1 task-2] X_P-UC3FSQSA6KX_TEoplQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.864 [XNIO-1 task-2] X_P-UC3FSQSA6KX_TEoplQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.864 [XNIO-1 task-2] X_P-UC3FSQSA6KX_TEoplQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", authorization) +16:40:55.866 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4ae68c1a-7142-4054-ac5e-eead45456c5a +16:40:55.868 [XNIO-1 task-1] HMa97jnPTIqJmX7tnT921Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.877 [XNIO-1 task-2] X_P-UC3FSQSA6KX_TEoplQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.879 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:55.879 [XNIO-1 task-1] qXYwDedQTwSRhR8wrUJUxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.879 [XNIO-1 task-1] qXYwDedQTwSRhR8wrUJUxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.879 [XNIO-1 task-1] qXYwDedQTwSRhR8wrUJUxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.879 [XNIO-1 task-1] qXYwDedQTwSRhR8wrUJUxg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.880 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:55.885 [XNIO-1 task-1] qXYwDedQTwSRhR8wrUJUxg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.892 [XNIO-1 task-1] pInuu9ZuQfSUOzwG5LhWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.892 [XNIO-1 task-1] pInuu9ZuQfSUOzwG5LhWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.892 [XNIO-1 task-1] pInuu9ZuQfSUOzwG5LhWEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.892 [XNIO-1 task-1] pInuu9ZuQfSUOzwG5LhWEQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.896 [XNIO-1 task-2] 7mxmgWXfQBaf2CjodwsByw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.896 [XNIO-1 task-2] 7mxmgWXfQBaf2CjodwsByw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.896 [XNIO-1 task-2] 7mxmgWXfQBaf2CjodwsByw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.896 [XNIO-1 task-2] 7mxmgWXfQBaf2CjodwsByw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = f-8WcNfPTXCMzkgEZQUHBg redirectUri = http://localhost:8080/authorization +16:40:55.896 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:d9cff27c +16:40:55.898 [XNIO-1 task-1] pInuu9ZuQfSUOzwG5LhWEQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.903 [XNIO-1 task-1] Hkhkm-zXS8mJ7H2mIRCB_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.903 [XNIO-1 task-1] Hkhkm-zXS8mJ7H2mIRCB_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.903 [XNIO-1 task-1] Hkhkm-zXS8mJ7H2mIRCB_Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.903 [XNIO-1 task-1] Hkhkm-zXS8mJ7H2mIRCB_Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.903 [XNIO-1 task-1] Hkhkm-zXS8mJ7H2mIRCB_Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWYzZWExNGEtYTFkZi00ZDMwLWIyOTEtN2Q4YjkxZmM4ZGRkOnJyOVZvODdHUVNHdkVnY25oeHBhLWc=", "Basic ZWYzZWExNGEtYTFkZi00ZDMwLWIyOTEtN2Q4YjkxZmM4ZGRkOnJyOVZvODdHUVNHdkVnY25oeHBhLWc=", authorization) +16:40:55.909 [XNIO-1 task-1] Hkhkm-zXS8mJ7H2mIRCB_Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.917 [XNIO-1 task-1] cUmh0kj6QZ6TTRTq-n2SaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.917 [XNIO-1 task-1] cUmh0kj6QZ6TTRTq-n2SaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.917 [XNIO-1 task-1] cUmh0kj6QZ6TTRTq-n2SaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.918 [XNIO-1 task-1] cUmh0kj6QZ6TTRTq-n2SaA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZWYzZWExNGEtYTFkZi00ZDMwLWIyOTEtN2Q4YjkxZmM4ZGRkOnJyOVZvODdHUVNHdkVnY25oeHBhLWc=", "Basic ZWYzZWExNGEtYTFkZi00ZDMwLWIyOTEtN2Q4YjkxZmM4ZGRkOnJyOVZvODdHUVNHdkVnY25oeHBhLWc=", authorization) +16:40:55.923 [XNIO-1 task-1] cUmh0kj6QZ6TTRTq-n2SaA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:55.924 [XNIO-1 task-2] HPnAbrK4S02dDb0aQWo34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.924 [XNIO-1 task-2] HPnAbrK4S02dDb0aQWo34A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.924 [XNIO-1 task-2] HPnAbrK4S02dDb0aQWo34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.925 [XNIO-1 task-2] HPnAbrK4S02dDb0aQWo34A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTUxZTM0YzItYTc1NC00YmQwLWI5MGUtY2EzNTkxYzBiNmRkOi1mNF9LcEJIU29PbmdmVG1iQUpOcFE=", "Basic OTUxZTM0YzItYTc1NC00YmQwLWI5MGUtY2EzNTkxYzBiNmRkOi1mNF9LcEJIU29PbmdmVG1iQUpOcFE=", authorization) +16:40:55.928 [XNIO-1 task-1] 7nemcpm5S6mdGs5YcdiFiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.928 [XNIO-1 task-1] 7nemcpm5S6mdGs5YcdiFiw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.929 [XNIO-1 task-1] 7nemcpm5S6mdGs5YcdiFiw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.929 [XNIO-1 task-1] 7nemcpm5S6mdGs5YcdiFiw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", authorization) +16:40:55.931 [XNIO-1 task-2] HPnAbrK4S02dDb0aQWo34A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:55.931 [XNIO-1 task-2] HPnAbrK4S02dDb0aQWo34A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.937 [XNIO-1 task-1] 7nemcpm5S6mdGs5YcdiFiw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.945 [XNIO-1 task-1] E8TarhnKTtq_Ad1HZ2OCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.945 [XNIO-1 task-1] E8TarhnKTtq_Ad1HZ2OCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.945 [XNIO-1 task-1] E8TarhnKTtq_Ad1HZ2OCOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.945 [XNIO-1 task-2] TCfVmGWYSOaTnT-WvDo-3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.945 [XNIO-1 task-2] TCfVmGWYSOaTnT-WvDo-3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.945 [XNIO-1 task-2] TCfVmGWYSOaTnT-WvDo-3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.945 [XNIO-1 task-2] TCfVmGWYSOaTnT-WvDo-3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b008104d-31e7-49ae-b694-0d4c7d3179a5 scope = null +16:40:55.946 [XNIO-1 task-1] E8TarhnKTtq_Ad1HZ2OCOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.951 [XNIO-1 task-1] E8TarhnKTtq_Ad1HZ2OCOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.952 [XNIO-1 task-4] Nrj6yZllTROj-HJw2pab1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.952 [XNIO-1 task-4] Nrj6yZllTROj-HJw2pab1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.952 [XNIO-1 task-4] Nrj6yZllTROj-HJw2pab1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.952 [XNIO-1 task-4] Nrj6yZllTROj-HJw2pab1A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 00bd5867-1c25-4cf2-b86c-3cba6c9eb69a scope = null +16:40:55.955 [XNIO-1 task-2] TCfVmGWYSOaTnT-WvDo-3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.957 [XNIO-1 task-1] om3Ny3C2RVaI6ABNTLt0pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.958 [XNIO-1 task-1] om3Ny3C2RVaI6ABNTLt0pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:55.958 [XNIO-1 task-1] om3Ny3C2RVaI6ABNTLt0pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:55.958 [XNIO-1 task-1] om3Ny3C2RVaI6ABNTLt0pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.958 [XNIO-1 task-1] om3Ny3C2RVaI6ABNTLt0pg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", "Basic YTdlNDQwMDMtZDVlYS00NzVhLWI5OWQtOGY5ZTM2NjRmM2RkOk5HV3BTLXpMVDRtWmdVa1N4VVFPV1E=", authorization) +16:40:55.959 [XNIO-1 task-4] Nrj6yZllTROj-HJw2pab1A ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:55.963 [XNIO-1 task-1] om3Ny3C2RVaI6ABNTLt0pg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.973 [XNIO-1 task-1] R0k324GATjKhdTLpkr6Ipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.973 [XNIO-1 task-1] R0k324GATjKhdTLpkr6Ipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.973 [XNIO-1 task-1] R0k324GATjKhdTLpkr6Ipg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.974 [XNIO-1 task-1] R0k324GATjKhdTLpkr6Ipg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.978 [XNIO-1 task-1] R0k324GATjKhdTLpkr6Ipg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.988 [XNIO-1 task-1] notkKjh5QRSGd_hBSNeCfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.988 [XNIO-1 task-1] notkKjh5QRSGd_hBSNeCfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.988 [XNIO-1 task-1] notkKjh5QRSGd_hBSNeCfQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.988 [XNIO-1 task-1] notkKjh5QRSGd_hBSNeCfQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:55.991 [XNIO-1 task-2] dx2YRCzUS-CDSIwKzG9bCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.991 [XNIO-1 task-2] dx2YRCzUS-CDSIwKzG9bCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.991 [XNIO-1 task-2] dx2YRCzUS-CDSIwKzG9bCA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:55.991 [XNIO-1 task-2] dx2YRCzUS-CDSIwKzG9bCA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = _2pEpRlpR8CzS4IrVoj2mA redirectUri = http://localhost:8080/authorization +16:40:55.996 [XNIO-1 task-1] notkKjh5QRSGd_hBSNeCfQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:55.998 [XNIO-1 task-2] dx2YRCzUS-CDSIwKzG9bCA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.007 [XNIO-1 task-2] zGYMBxhqROK_adALB_QxYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.007 [XNIO-1 task-2] zGYMBxhqROK_adALB_QxYw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.007 [XNIO-1 task-2] zGYMBxhqROK_adALB_QxYw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.007 [XNIO-1 task-2] zGYMBxhqROK_adALB_QxYw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", authorization) +16:40:56.010 [XNIO-1 task-1] ki-gYd46S06EbBF9k8h35Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.010 [XNIO-1 task-1] ki-gYd46S06EbBF9k8h35Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.010 [XNIO-1 task-1] ki-gYd46S06EbBF9k8h35Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.010 [XNIO-1 task-1] ki-gYd46S06EbBF9k8h35Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTUxZTM0YzItYTc1NC00YmQwLWI5MGUtY2EzNTkxYzBiNmRkOi1mNF9LcEJIU29PbmdmVG1iQUpOcFE=", "Basic OTUxZTM0YzItYTc1NC00YmQwLWI5MGUtY2EzNTkxYzBiNmRkOi1mNF9LcEJIU29PbmdmVG1iQUpOcFE=", authorization) +16:40:56.012 [XNIO-1 task-2] zGYMBxhqROK_adALB_QxYw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.014 [XNIO-1 task-2] KRjVgBVLSYG2-GSjgmW9eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.014 [XNIO-1 task-2] KRjVgBVLSYG2-GSjgmW9eA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.014 [XNIO-1 task-2] KRjVgBVLSYG2-GSjgmW9eA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.014 [XNIO-1 task-2] KRjVgBVLSYG2-GSjgmW9eA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", authorization) +16:40:56.018 [XNIO-1 task-4] oBOCxDP-QBOAuEg_HPMx-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.018 [XNIO-1 task-4] oBOCxDP-QBOAuEg_HPMx-Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.018 [XNIO-1 task-4] oBOCxDP-QBOAuEg_HPMx-Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.019 [XNIO-1 task-4] oBOCxDP-QBOAuEg_HPMx-Q DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", authorization) +16:40:56.019 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a89d5d7b +16:40:56.021 [XNIO-1 task-2] KRjVgBVLSYG2-GSjgmW9eA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.023 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a89d5d7b +16:40:56.024 [XNIO-1 task-1] ki-gYd46S06EbBF9k8h35Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.024 [XNIO-1 task-4] oBOCxDP-QBOAuEg_HPMx-Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.030 [XNIO-1 task-1] 0qeiuRDnSfemOO3GhyXpRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.030 [XNIO-1 task-1] 0qeiuRDnSfemOO3GhyXpRA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.030 [XNIO-1 task-1] 0qeiuRDnSfemOO3GhyXpRA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.031 [XNIO-1 task-1] 0qeiuRDnSfemOO3GhyXpRA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", authorization) +16:40:56.036 [XNIO-1 task-1] 0qeiuRDnSfemOO3GhyXpRA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.041 [XNIO-1 task-1] NnOAL7lwQxW-1hRRYBVTHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.041 [XNIO-1 task-1] NnOAL7lwQxW-1hRRYBVTHw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.041 [XNIO-1 task-1] NnOAL7lwQxW-1hRRYBVTHw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.041 [XNIO-1 task-1] NnOAL7lwQxW-1hRRYBVTHw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", "Basic MzBkMzhkNmYtYzI5NC00ZjQ0LTk5NGUtMmUxYjE2ODY2NmM5OlBnWnBMNHNUUktTbFJsSEdFU2RQNnc=", authorization) +16:40:56.076 [XNIO-1 task-1] NnOAL7lwQxW-1hRRYBVTHw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.084 [XNIO-1 task-1] vIt7PycaRYqd-7DGr3W7UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.084 [XNIO-1 task-1] vIt7PycaRYqd-7DGr3W7UA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.084 [XNIO-1 task-1] vIt7PycaRYqd-7DGr3W7UA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.084 [XNIO-1 task-1] vIt7PycaRYqd-7DGr3W7UA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjFkZWNkZGMtZDhiOC00YjFhLWFjNzgtNjIyYTM3OGRhZjBhOl9CRk1YZWxNVDBpNThnNThTVmVQcHc=", "Basic NjFkZWNkZGMtZDhiOC00YjFhLWFjNzgtNjIyYTM3OGRhZjBhOl9CRk1YZWxNVDBpNThnNThTVmVQcHc=", authorization) +16:40:56.091 [XNIO-1 task-1] vIt7PycaRYqd-7DGr3W7UA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.092 [XNIO-1 task-2] EQVewaTCTmey5jAKkFUewQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.092 [XNIO-1 task-2] EQVewaTCTmey5jAKkFUewQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.093 [XNIO-1 task-2] EQVewaTCTmey5jAKkFUewQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.093 [XNIO-1 task-2] EQVewaTCTmey5jAKkFUewQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NGFhYjZiZDMtNDgyMi00ZmMyLThlNGQtODJkOTQyY2RkZDc4OkszX1RaV3htUmJpbkYxV0RKOFNDV1E=", "Basic NGFhYjZiZDMtNDgyMi00ZmMyLThlNGQtODJkOTQyY2RkZDc4OkszX1RaV3htUmJpbkYxV0RKOFNDV1E=", authorization) +16:40:56.096 [XNIO-1 task-1] KeFUlnbmT5SdRgBf2QkSOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.096 [XNIO-1 task-1] KeFUlnbmT5SdRgBf2QkSOA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.096 [XNIO-1 task-1] KeFUlnbmT5SdRgBf2QkSOA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.096 [XNIO-1 task-1] KeFUlnbmT5SdRgBf2QkSOA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NjFkZWNkZGMtZDhiOC00YjFhLWFjNzgtNjIyYTM3OGRhZjBhOl9CRk1YZWxNVDBpNThnNThTVmVQcHc=", "Basic NjFkZWNkZGMtZDhiOC00YjFhLWFjNzgtNjIyYTM3OGRhZjBhOl9CRk1YZWxNVDBpNThnNThTVmVQcHc=", authorization) +16:40:56.098 [XNIO-1 task-2] EQVewaTCTmey5jAKkFUewQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.098 [XNIO-1 task-2] EQVewaTCTmey5jAKkFUewQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.101 [XNIO-1 task-1] KeFUlnbmT5SdRgBf2QkSOA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.104 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a89d5d7b +16:40:56.105 [XNIO-1 task-2] TKIyvgwwTnmMCmuJ7zLBXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.105 [XNIO-1 task-2] TKIyvgwwTnmMCmuJ7zLBXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.106 [XNIO-1 task-2] TKIyvgwwTnmMCmuJ7zLBXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.106 [XNIO-1 task-2] TKIyvgwwTnmMCmuJ7zLBXw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.111 [XNIO-1 task-2] TKIyvgwwTnmMCmuJ7zLBXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.115 [XNIO-1 task-2] cfBvlxcDSpedBjvqRl9ZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.115 [XNIO-1 task-2] cfBvlxcDSpedBjvqRl9ZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.116 [XNIO-1 task-2] cfBvlxcDSpedBjvqRl9ZOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.116 [XNIO-1 task-2] cfBvlxcDSpedBjvqRl9ZOw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.121 [XNIO-1 task-2] cfBvlxcDSpedBjvqRl9ZOw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.125 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a89d5d7b +16:40:56.125 [XNIO-1 task-2] WMTDI2MWRISS3A_RT4g_tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.125 [XNIO-1 task-2] WMTDI2MWRISS3A_RT4g_tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.125 [XNIO-1 task-2] WMTDI2MWRISS3A_RT4g_tg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.125 [XNIO-1 task-2] WMTDI2MWRISS3A_RT4g_tg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.131 [XNIO-1 task-1] 2rXjdTn3R5upXp5tlttCAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.131 [XNIO-1 task-1] 2rXjdTn3R5upXp5tlttCAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.132 [XNIO-1 task-1] 2rXjdTn3R5upXp5tlttCAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.132 [XNIO-1 task-2] WMTDI2MWRISS3A_RT4g_tg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.132 [XNIO-1 task-1] 2rXjdTn3R5upXp5tlttCAQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = jM8q4jniTceBiua03yZ3Rw redirectUri = http://localhost:8080/authorization +16:40:56.139 [XNIO-1 task-1] 2rXjdTn3R5upXp5tlttCAQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.139 [XNIO-1 task-2] nJ2n4c-YRbOW1dIgHGSJPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.139 [XNIO-1 task-2] nJ2n4c-YRbOW1dIgHGSJPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.139 [XNIO-1 task-2] nJ2n4c-YRbOW1dIgHGSJPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.139 [XNIO-1 task-2] nJ2n4c-YRbOW1dIgHGSJPg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YTgwOGIyNTgtYjI4MS00MmNjLWExN2EtYzUwZGMxMmEzMGUwOklsWEFzTkdpU05XRVRYSHVBOGFZRFE=", "Basic YTgwOGIyNTgtYjI4MS00MmNjLWExN2EtYzUwZGMxMmEzMGUwOklsWEFzTkdpU05XRVRYSHVBOGFZRFE=", authorization) +16:40:56.145 [XNIO-1 task-2] nJ2n4c-YRbOW1dIgHGSJPg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.155 [XNIO-1 task-2] y209uxptQ1qjmyzC73E-Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.155 [XNIO-1 task-2] y209uxptQ1qjmyzC73E-Mw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.155 [XNIO-1 task-2] y209uxptQ1qjmyzC73E-Mw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.155 [XNIO-1 task-2] y209uxptQ1qjmyzC73E-Mw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDlkNTQ5YmUtZWMxMi00MWNmLTg0MWMtYmJjMDYzOWVkNzJkOi1rOWhMbG8wUjR1RTNpTS1XMzhHTVE=", "Basic NDlkNTQ5YmUtZWMxMi00MWNmLTg0MWMtYmJjMDYzOWVkNzJkOi1rOWhMbG8wUjR1RTNpTS1XMzhHTVE=", authorization) +16:40:56.159 [XNIO-1 task-1] 0LwtnYaLRkO56QZ7QoLAdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.159 [XNIO-1 task-1] 0LwtnYaLRkO56QZ7QoLAdg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.159 [XNIO-1 task-1] 0LwtnYaLRkO56QZ7QoLAdg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.159 [XNIO-1 task-1] 0LwtnYaLRkO56QZ7QoLAdg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", authorization) +16:40:56.160 [XNIO-1 task-2] y209uxptQ1qjmyzC73E-Mw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.165 [XNIO-1 task-2] lsNx9XctS1Kw30tLbTYAFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.165 [XNIO-1 task-2] lsNx9XctS1Kw30tLbTYAFQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.165 [XNIO-1 task-2] lsNx9XctS1Kw30tLbTYAFQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.166 [XNIO-1 task-2] lsNx9XctS1Kw30tLbTYAFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NmY0YjlmYmEtZjJiNC00OWM5LWFkZDYtOWI0ODgzYmQ1ZjM4OnFHTm4xT1NJUjFXXzNCZjdGOWh5bGc=", "Basic NmY0YjlmYmEtZjJiNC00OWM5LWFkZDYtOWI0ODgzYmQ1ZjM4OnFHTm4xT1NJUjFXXzNCZjdGOWh5bGc=", authorization) +16:40:56.166 [XNIO-1 task-1] 0LwtnYaLRkO56QZ7QoLAdg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.167 [XNIO-1 task-1] 0LwtnYaLRkO56QZ7QoLAdg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.171 [XNIO-1 task-2] lsNx9XctS1Kw30tLbTYAFQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.179 [XNIO-1 task-1] 1zngYcd9QEy_53nSbLWZbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.179 [XNIO-1 task-1] 1zngYcd9QEy_53nSbLWZbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.180 [XNIO-1 task-1] 1zngYcd9QEy_53nSbLWZbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.180 [XNIO-1 task-1] 1zngYcd9QEy_53nSbLWZbQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.184 [XNIO-1 task-2] u8GoskLATeiWvBCFRAOjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.184 [XNIO-1 task-2] u8GoskLATeiWvBCFRAOjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.184 [XNIO-1 task-2] u8GoskLATeiWvBCFRAOjRw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.184 [XNIO-1 task-2] u8GoskLATeiWvBCFRAOjRw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 6eb00f6e-7965-452d-a9c8-3374d87797e2 scope = null +16:40:56.186 [XNIO-1 task-1] 1zngYcd9QEy_53nSbLWZbQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +com.networknt.exception.ApiException: {"statusCode":404,"code":"ERR12029","message":"REFRESH_TOKEN_NOT_FOUND","description":"Refresh token 6eb00f6e-7965-452d-a9c8-3374d87797e2 is not found.","severity":"ERROR"} + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRequest(Oauth2TokenPostHandler.java:120) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.audit.AuditHandler.next(AuditHandler.java:192) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.body.BodyHandler.handleRequest(BodyHandler.java:124) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.correlation.CorrelationHandler.handleRequest(CorrelationHandler.java:77) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.exception.ExceptionHandler.handleRequest(ExceptionHandler.java:76) + at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:841) + at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) +16:40:56.196 [XNIO-1 task-2] PGUrB_giQPeMp5uLYCQ3XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.196 [XNIO-1 task-2] PGUrB_giQPeMp5uLYCQ3XQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.196 [XNIO-1 task-2] PGUrB_giQPeMp5uLYCQ3XQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.196 [XNIO-1 task-2] PGUrB_giQPeMp5uLYCQ3XQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", authorization) +16:40:56.201 [XNIO-1 task-2] PGUrB_giQPeMp5uLYCQ3XQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.204 [XNIO-1 task-2] ffdMdee1TMmMry0J47tNIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.204 [XNIO-1 task-2] ffdMdee1TMmMry0J47tNIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.204 [XNIO-1 task-2] ffdMdee1TMmMry0J47tNIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.205 [XNIO-1 task-2] ffdMdee1TMmMry0J47tNIA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", authorization) +16:40:56.209 [XNIO-1 task-2] ffdMdee1TMmMry0J47tNIA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.211 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a89d5d7b +16:40:56.213 [XNIO-1 task-2] nDV38H7qRAi4r9QD_RNoqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.213 [XNIO-1 task-2] nDV38H7qRAi4r9QD_RNoqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.213 [XNIO-1 task-2] nDV38H7qRAi4r9QD_RNoqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.213 [XNIO-1 task-2] nDV38H7qRAi4r9QD_RNoqw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", authorization) +16:40:56.215 [XNIO-1 task-1] mIFViCB3ThyEmqzQwqwpMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.215 [XNIO-1 task-1] mIFViCB3ThyEmqzQwqwpMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.215 [XNIO-1 task-1] mIFViCB3ThyEmqzQwqwpMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.215 [XNIO-1 task-1] mIFViCB3ThyEmqzQwqwpMA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", "Basic YjQzYTYyNTUtMjY4ZS00OWFjLThmMDAtZWExYThkNzg1MDU3Okx5MlpHUFlqUUx5QjNZTDZ5WlhJWlE=", authorization) +16:40:56.217 [hz._hzInstance_1_dev.partition-operation.thread-5] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:d9cff27c +16:40:56.219 [XNIO-1 task-2] nDV38H7qRAi4r9QD_RNoqw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.219 [XNIO-1 task-2] nDV38H7qRAi4r9QD_RNoqw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.220 [XNIO-1 task-1] mIFViCB3ThyEmqzQwqwpMA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.225 [XNIO-1 task-1] 0W68_e87QQ-ggOXv7IBQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.226 [XNIO-1 task-1] 0W68_e87QQ-ggOXv7IBQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.226 [XNIO-1 task-1] 0W68_e87QQ-ggOXv7IBQNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.226 [XNIO-1 task-1] 0W68_e87QQ-ggOXv7IBQNA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.231 [XNIO-1 task-1] 0W68_e87QQ-ggOXv7IBQNA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.237 [XNIO-1 task-2] 6_7NKtQ1ThyZkwN-78H66A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.237 [XNIO-1 task-2] 6_7NKtQ1ThyZkwN-78H66A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.237 [XNIO-1 task-2] 6_7NKtQ1ThyZkwN-78H66A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.238 [XNIO-1 task-2] 6_7NKtQ1ThyZkwN-78H66A DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:56.242 [XNIO-1 task-2] 6_7NKtQ1ThyZkwN-78H66A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.246 [XNIO-1 task-2] 2yJYZOWcQCyQWpsyBGNzNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.246 [XNIO-1 task-2] 2yJYZOWcQCyQWpsyBGNzNw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.246 [XNIO-1 task-2] 2yJYZOWcQCyQWpsyBGNzNw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.246 [XNIO-1 task-2] 2yJYZOWcQCyQWpsyBGNzNw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:56.251 [XNIO-1 task-2] 2yJYZOWcQCyQWpsyBGNzNw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.253 [XNIO-1 task-1] b6bPH8_lRpql9rCsojcbTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.253 [XNIO-1 task-1] b6bPH8_lRpql9rCsojcbTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.253 [XNIO-1 task-1] b6bPH8_lRpql9rCsojcbTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.253 [XNIO-1 task-1] b6bPH8_lRpql9rCsojcbTw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmM0ZGNmMjYtMDViMS00YzQ0LWE4YjAtM2FjODQxOTRhZDg4OkQ0YzJXd1BjVDV1b3k1SWU4RUpSTnc=", "Basic ZmM0ZGNmMjYtMDViMS00YzQ0LWE4YjAtM2FjODQxOTRhZDg4OkQ0YzJXd1BjVDV1b3k1SWU4RUpSTnc=", authorization) +16:40:56.256 [XNIO-1 task-2] Dk9ntx7BQ7KkThgDTONnvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.256 [XNIO-1 task-2] Dk9ntx7BQ7KkThgDTONnvg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.257 [XNIO-1 task-2] Dk9ntx7BQ7KkThgDTONnvg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.257 [XNIO-1 task-2] Dk9ntx7BQ7KkThgDTONnvg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:56.258 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:208ebc9a-6f45-4b5e-b523-b8eb449eac8a +16:40:56.261 [XNIO-1 task-1] b6bPH8_lRpql9rCsojcbTw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:56.262 [XNIO-1 task-2] Dk9ntx7BQ7KkThgDTONnvg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.268 [XNIO-1 task-2] W8nqc_f0RWG-edg1gr68GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.268 [XNIO-1 task-2] W8nqc_f0RWG-edg1gr68GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.268 [XNIO-1 task-2] W8nqc_f0RWG-edg1gr68GA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.269 [XNIO-1 task-2] W8nqc_f0RWG-edg1gr68GA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = bB--qTXlR4Oy-UwCEFnXLw redirectUri = http://localhost:8080/authorization +16:40:56.274 [XNIO-1 task-1] HGb0nR78Rh2NXwW7e--9Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.274 [XNIO-1 task-1] HGb0nR78Rh2NXwW7e--9Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.274 [XNIO-1 task-1] HGb0nR78Rh2NXwW7e--9Lw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.274 [XNIO-1 task-1] HGb0nR78Rh2NXwW7e--9Lw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.278 [XNIO-1 task-2] W8nqc_f0RWG-edg1gr68GA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.279 [XNIO-1 task-1] HGb0nR78Rh2NXwW7e--9Lw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.284 [XNIO-1 task-1] 6vQnZ0ItT160C_yZeBNfBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.284 [XNIO-1 task-1] 6vQnZ0ItT160C_yZeBNfBA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.284 [XNIO-1 task-1] 6vQnZ0ItT160C_yZeBNfBA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.284 [XNIO-1 task-1] 6vQnZ0ItT160C_yZeBNfBA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZmM0ZGNmMjYtMDViMS00YzQ0LWE4YjAtM2FjODQxOTRhZDg4OkQ0YzJXd1BjVDV1b3k1SWU4RUpSTnc=", "Basic ZmM0ZGNmMjYtMDViMS00YzQ0LWE4YjAtM2FjODQxOTRhZDg4OkQ0YzJXd1BjVDV1b3k1SWU4RUpSTnc=", authorization) +16:40:56.284 [XNIO-1 task-2] C2aOJOBwToeqaEb4uPW_MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.284 [XNIO-1 task-2] C2aOJOBwToeqaEb4uPW_MQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.285 [XNIO-1 task-2] C2aOJOBwToeqaEb4uPW_MQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.285 [XNIO-1 task-2] C2aOJOBwToeqaEb4uPW_MQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", "Basic ZTdjNThkNGYtZDQ0NC00ZmEwLTk1NDItYjlhOTNlYTE5YTdlOlZjdl9MbDgyVEZteGg4V3c3QTcyY1E=", authorization) +16:40:56.290 [XNIO-1 task-2] C2aOJOBwToeqaEb4uPW_MQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.291 [XNIO-1 task-1] 6vQnZ0ItT160C_yZeBNfBA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.292 [XNIO-1 task-1] 6vQnZ0ItT160C_yZeBNfBA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.294 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:a89d5d7b +16:40:56.299 [XNIO-1 task-2] 9C0qF9zMTG6TJFe214L6AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.299 [XNIO-1 task-2] 9C0qF9zMTG6TJFe214L6AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.299 [XNIO-1 task-2] 9C0qF9zMTG6TJFe214L6AQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.300 [XNIO-1 task-2] 9C0qF9zMTG6TJFe214L6AQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.303 [XNIO-1 task-1] _XEBV_EzSXm8K5zJmxomvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.303 [XNIO-1 task-1] _XEBV_EzSXm8K5zJmxomvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.303 [XNIO-1 task-1] _XEBV_EzSXm8K5zJmxomvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.304 [XNIO-1 task-1] _XEBV_EzSXm8K5zJmxomvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = QcORJ1OAQcyXmff6FnR7wA redirectUri = http://localhost:8080/authorization +16:40:56.306 [XNIO-1 task-2] 9C0qF9zMTG6TJFe214L6AQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.310 [XNIO-1 task-2] BM5QwMseQymBxCBqimtGpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.310 [XNIO-1 task-1] _XEBV_EzSXm8K5zJmxomvA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.310 [XNIO-1 task-1] _XEBV_EzSXm8K5zJmxomvA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.310 [XNIO-1 task-2] BM5QwMseQymBxCBqimtGpQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.310 [XNIO-1 task-2] BM5QwMseQymBxCBqimtGpQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzNlNDc0YzUtZTViMi00ODBiLTk5NzQtYmMxMWI0MWExNTA1OjhNZWw3aE5mVE1tM2xBZTljbURhVmc=", "Basic NzNlNDc0YzUtZTViMi00ODBiLTk5NzQtYmMxMWI0MWExNTA1OjhNZWw3aE5mVE1tM2xBZTljbURhVmc=", authorization) +16:40:56.313 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a89d5d7b +16:40:56.316 [XNIO-1 task-2] BM5QwMseQymBxCBqimtGpQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.321 [XNIO-1 task-2] ifj1L9ujQve30CrkwT3BVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.321 [XNIO-1 task-2] ifj1L9ujQve30CrkwT3BVQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.321 [XNIO-1 task-2] ifj1L9ujQve30CrkwT3BVQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.321 [XNIO-1 task-2] ifj1L9ujQve30CrkwT3BVQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic YjM2OWExNWUtNTIwOS00MjdmLTkxODYtYmM4OTUyODc4MjQ5OnRlMm9uSi1aU1ltbjUxRlpvZ3NpNkE=", "Basic YjM2OWExNWUtNTIwOS00MjdmLTkxODYtYmM4OTUyODc4MjQ5OnRlMm9uSi1aU1ltbjUxRlpvZ3NpNkE=", authorization) +16:40:56.326 [XNIO-1 task-1] v5_-ipyaSNuS0T0n9NTpeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.326 [XNIO-1 task-1] v5_-ipyaSNuS0T0n9NTpeg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.326 [XNIO-1 task-1] v5_-ipyaSNuS0T0n9NTpeg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.326 [XNIO-1 task-1] v5_-ipyaSNuS0T0n9NTpeg DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzNlNDc0YzUtZTViMi00ODBiLTk5NzQtYmMxMWI0MWExNTA1OjhNZWw3aE5mVE1tM2xBZTljbURhVmc=", "Basic NzNlNDc0YzUtZTViMi00ODBiLTk5NzQtYmMxMWI0MWExNTA1OjhNZWw3aE5mVE1tM2xBZTljbURhVmc=", authorization) +16:40:56.327 [XNIO-1 task-2] ifj1L9ujQve30CrkwT3BVQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.328 [XNIO-1 task-2] ifj1L9ujQve30CrkwT3BVQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.331 [XNIO-1 task-1] v5_-ipyaSNuS0T0n9NTpeg DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.337 [XNIO-1 task-2] woQ8bH0aRuKkW1MeYxZc-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.337 [XNIO-1 task-2] woQ8bH0aRuKkW1MeYxZc-w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.338 [XNIO-1 task-2] woQ8bH0aRuKkW1MeYxZc-w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.338 [XNIO-1 task-2] woQ8bH0aRuKkW1MeYxZc-w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzNlNDc0YzUtZTViMi00ODBiLTk5NzQtYmMxMWI0MWExNTA1OjhNZWw3aE5mVE1tM2xBZTljbURhVmc=", "Basic NzNlNDc0YzUtZTViMi00ODBiLTk5NzQtYmMxMWI0MWExNTA1OjhNZWw3aE5mVE1tM2xBZTljbURhVmc=", authorization) +16:40:56.343 [XNIO-1 task-2] woQ8bH0aRuKkW1MeYxZc-w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.345 [XNIO-1 task-2] tk5GoDWBTGaXCL2GLdvFEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.345 [XNIO-1 task-2] tk5GoDWBTGaXCL2GLdvFEw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.345 [XNIO-1 task-2] tk5GoDWBTGaXCL2GLdvFEw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.346 [XNIO-1 task-2] tk5GoDWBTGaXCL2GLdvFEw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", "Basic OWNiNzJiZTYtMTIyNi00NzliLTg1ZTEtOWE3NzUwY2MzOGQ4OjZlU0RlNW1mVEJDMDhWVGlaa2dqaFE=", authorization) +16:40:56.350 [XNIO-1 task-1] SqTSchzFSMGGRX1UOYH_Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.350 [XNIO-1 task-1] SqTSchzFSMGGRX1UOYH_Dw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.350 [XNIO-1 task-1] SqTSchzFSMGGRX1UOYH_Dw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.350 [XNIO-1 task-1] SqTSchzFSMGGRX1UOYH_Dw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", authorization) +16:40:56.351 [XNIO-1 task-2] tk5GoDWBTGaXCL2GLdvFEw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.352 [XNIO-1 task-2] tk5GoDWBTGaXCL2GLdvFEw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.358 [XNIO-1 task-1] SqTSchzFSMGGRX1UOYH_Dw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.363 [XNIO-1 task-1] gOJk9CpSQrSHbYhKelVb7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.363 [XNIO-1 task-1] gOJk9CpSQrSHbYhKelVb7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.363 [XNIO-1 task-1] gOJk9CpSQrSHbYhKelVb7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.363 [XNIO-1 task-1] gOJk9CpSQrSHbYhKelVb7g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.368 [XNIO-1 task-4] -RaescpGTu68p-L6bhnDvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.368 [XNIO-1 task-4] -RaescpGTu68p-L6bhnDvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.368 [XNIO-1 task-4] -RaescpGTu68p-L6bhnDvQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.368 [XNIO-1 task-1] gOJk9CpSQrSHbYhKelVb7g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.368 [XNIO-1 task-4] -RaescpGTu68p-L6bhnDvQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = 2DSKZbEdQlCQdhzE88UAGg redirectUri = http://localhost:8080/authorization +16:40:56.373 [XNIO-1 task-1] sF3aHybcTRy6rsh3pmBxow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.373 [XNIO-1 task-1] sF3aHybcTRy6rsh3pmBxow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.373 [XNIO-1 task-1] sF3aHybcTRy6rsh3pmBxow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.373 [XNIO-1 task-1] sF3aHybcTRy6rsh3pmBxow DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.375 [XNIO-1 task-4] -RaescpGTu68p-L6bhnDvQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.378 [XNIO-1 task-1] sF3aHybcTRy6rsh3pmBxow DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.382 [XNIO-1 task-4] AZW6Q6vYQ8GmEyPgp47YYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.382 [XNIO-1 task-4] AZW6Q6vYQ8GmEyPgp47YYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.382 [XNIO-1 task-4] AZW6Q6vYQ8GmEyPgp47YYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.382 [XNIO-1 task-4] AZW6Q6vYQ8GmEyPgp47YYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", "Basic NzMxMWYyMDUtMTBlNS00ZDdkLWIyZDUtODU1N2MyYThjZTNhOmZaQV9ydEk0UTJPbXJBV2ZTUTRXRnc=", authorization) +16:40:56.387 [XNIO-1 task-4] AZW6Q6vYQ8GmEyPgp47YYQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.392 [XNIO-1 task-4] IXP_LoViSimQx_K64HWiqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.392 [XNIO-1 task-4] IXP_LoViSimQx_K64HWiqA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.393 [XNIO-1 task-4] IXP_LoViSimQx_K64HWiqA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.393 [XNIO-1 task-4] IXP_LoViSimQx_K64HWiqA DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OGNmOWM2NDgtNzZhMi00ZDAyLTlkZDAtN2Y4MDczMGRhMTVlOnpMcDJVckh6UnFpQmw4NWt2THl3dHc=", "Basic OGNmOWM2NDgtNzZhMi00ZDAyLTlkZDAtN2Y4MDczMGRhMTVlOnpMcDJVckh6UnFpQmw4NWt2THl3dHc=", authorization) +16:40:56.400 [XNIO-1 task-4] IXP_LoViSimQx_K64HWiqA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.406 [XNIO-1 task-4] PIEG5vvxQQyLjxgfrYIa6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.406 [XNIO-1 task-4] PIEG5vvxQQyLjxgfrYIa6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.407 [XNIO-1 task-4] PIEG5vvxQQyLjxgfrYIa6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.407 [XNIO-1 task-4] PIEG5vvxQQyLjxgfrYIa6g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWVlMTE0OGItOGZjOS00OWFkLWIwZjgtOTllMGNlNTE0YzkyOjdDQ19xb25ZUTd1emt4d1JHaHprZkE=", "Basic MWVlMTE0OGItOGZjOS00OWFkLWIwZjgtOTllMGNlNTE0YzkyOjdDQ19xb25ZUTd1emt4d1JHaHprZkE=", authorization) +16:40:56.410 [XNIO-1 task-1] adBNgNilT-6p0_VFxWmkPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.410 [XNIO-1 task-1] adBNgNilT-6p0_VFxWmkPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:56.410 [XNIO-1 task-1] adBNgNilT-6p0_VFxWmkPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:56.410 [XNIO-1 task-1] adBNgNilT-6p0_VFxWmkPw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MzEyMDYwZjItMTYxNi00OTQ3LTgwMjEtNjNiOWEzMWYxM2IwOkRMM2stb2l2UVotcVBQWmdWanUyNGc=", "Basic MzEyMDYwZjItMTYxNi00OTQ3LTgwMjEtNjNiOWEzMWYxM2IwOkRMM2stb2l2UVotcVBQWmdWanUyNGc=", authorization) +16:40:56.412 [XNIO-1 task-4] PIEG5vvxQQyLjxgfrYIa6g DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:56.416 [XNIO-1 task-1] adBNgNilT-6p0_VFxWmkPw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:56.416 [XNIO-1 task-1] adBNgNilT-6p0_VFxWmkPw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.417 [XNIO-1 task-4] MDLh_iZ0Qnqb8h09g9dyyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.417 [XNIO-1 task-4] MDLh_iZ0Qnqb8h09g9dyyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.418 [XNIO-1 task-4] MDLh_iZ0Qnqb8h09g9dyyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.418 [XNIO-1 task-4] MDLh_iZ0Qnqb8h09g9dyyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.422 [XNIO-1 task-4] MDLh_iZ0Qnqb8h09g9dyyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.423 [XNIO-1 task-1] 3EVNq5qgRH2zn9zj1SaFUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.423 [XNIO-1 task-1] 3EVNq5qgRH2zn9zj1SaFUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.423 [XNIO-1 task-1] 3EVNq5qgRH2zn9zj1SaFUg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.423 [XNIO-1 task-1] 3EVNq5qgRH2zn9zj1SaFUg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = ebe179c4-0d90-4eef-87bd-9227eb760257 scope = null +16:40:56.426 [XNIO-1 task-4] 4r1jciR7Srqqi0g2DS8q3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.427 [XNIO-1 task-4] 4r1jciR7Srqqi0g2DS8q3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.427 [XNIO-1 task-4] 4r1jciR7Srqqi0g2DS8q3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.427 [XNIO-1 task-4] 4r1jciR7Srqqi0g2DS8q3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.432 [XNIO-1 task-4] 4r1jciR7Srqqi0g2DS8q3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.432 [XNIO-1 task-1] 3EVNq5qgRH2zn9zj1SaFUg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.438 [XNIO-1 task-4] yI97xL4sRpWBlHHwY8uM6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.438 [XNIO-1 task-4] yI97xL4sRpWBlHHwY8uM6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.438 [XNIO-1 task-4] yI97xL4sRpWBlHHwY8uM6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.438 [XNIO-1 task-4] yI97xL4sRpWBlHHwY8uM6Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.443 [XNIO-1 task-4] yI97xL4sRpWBlHHwY8uM6Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.447 [XNIO-1 task-4] 77D4HXNFSrKMyyzL8s5-Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.447 [XNIO-1 task-4] 77D4HXNFSrKMyyzL8s5-Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.447 [XNIO-1 task-4] 77D4HXNFSrKMyyzL8s5-Og DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.447 [XNIO-1 task-4] 77D4HXNFSrKMyyzL8s5-Og DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.452 [XNIO-1 task-4] 77D4HXNFSrKMyyzL8s5-Og INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.455 [XNIO-1 task-4] eab4jagzTeOmMXvuAepvDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.456 [XNIO-1 task-4] eab4jagzTeOmMXvuAepvDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.456 [XNIO-1 task-4] eab4jagzTeOmMXvuAepvDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.456 [XNIO-1 task-4] eab4jagzTeOmMXvuAepvDg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.461 [XNIO-1 task-4] eab4jagzTeOmMXvuAepvDg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.465 [XNIO-1 task-4] NYavI3-LQGmTnKrEV_meiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.465 [XNIO-1 task-4] NYavI3-LQGmTnKrEV_meiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.465 [XNIO-1 task-4] NYavI3-LQGmTnKrEV_meiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.465 [XNIO-1 task-4] NYavI3-LQGmTnKrEV_meiA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.470 [XNIO-1 task-4] NYavI3-LQGmTnKrEV_meiA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.475 [XNIO-1 task-4] cuxBtAz2R5uxWxBdyBhpgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.476 [XNIO-1 task-4] cuxBtAz2R5uxWxBdyBhpgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.476 [XNIO-1 task-4] cuxBtAz2R5uxWxBdyBhpgQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.476 [XNIO-1 task-4] cuxBtAz2R5uxWxBdyBhpgQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.481 [XNIO-1 task-4] cuxBtAz2R5uxWxBdyBhpgQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.485 [XNIO-1 task-4] ewZlOuYqTiK4g8Jnjr-gig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.485 [XNIO-1 task-4] ewZlOuYqTiK4g8Jnjr-gig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.485 [XNIO-1 task-4] ewZlOuYqTiK4g8Jnjr-gig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.485 [XNIO-1 task-4] ewZlOuYqTiK4g8Jnjr-gig DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.490 [XNIO-1 task-4] ewZlOuYqTiK4g8Jnjr-gig INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.494 [XNIO-1 task-4] FMh1ZkNlSy2FoLH_JtY2UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.494 [XNIO-1 task-4] FMh1ZkNlSy2FoLH_JtY2UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.494 [XNIO-1 task-4] FMh1ZkNlSy2FoLH_JtY2UA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.494 [XNIO-1 task-4] FMh1ZkNlSy2FoLH_JtY2UA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.499 [XNIO-1 task-4] FMh1ZkNlSy2FoLH_JtY2UA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.505 [XNIO-1 task-4] V0H5FStDR9asp1YxrzdfOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.505 [XNIO-1 task-4] V0H5FStDR9asp1YxrzdfOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.505 [XNIO-1 task-4] V0H5FStDR9asp1YxrzdfOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.506 [XNIO-1 task-4] V0H5FStDR9asp1YxrzdfOA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.510 [XNIO-1 task-4] V0H5FStDR9asp1YxrzdfOA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.516 [XNIO-1 task-4] HQHBak7pQ0erUtY497ugyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.516 [XNIO-1 task-4] HQHBak7pQ0erUtY497ugyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.516 [XNIO-1 task-4] HQHBak7pQ0erUtY497ugyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.516 [XNIO-1 task-4] HQHBak7pQ0erUtY497ugyg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.522 [XNIO-1 task-4] HQHBak7pQ0erUtY497ugyg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.526 [XNIO-1 task-4] snETfaY1Ts2ZMrqfVUC9kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.526 [XNIO-1 task-4] snETfaY1Ts2ZMrqfVUC9kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.526 [XNIO-1 task-4] snETfaY1Ts2ZMrqfVUC9kg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.527 [XNIO-1 task-4] snETfaY1Ts2ZMrqfVUC9kg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.533 [XNIO-1 task-4] snETfaY1Ts2ZMrqfVUC9kg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.539 [XNIO-1 task-4] PJ6eo9jgQGS-3SU_TqBC2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.539 [XNIO-1 task-4] PJ6eo9jgQGS-3SU_TqBC2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.540 [XNIO-1 task-4] PJ6eo9jgQGS-3SU_TqBC2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.540 [XNIO-1 task-4] PJ6eo9jgQGS-3SU_TqBC2A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.545 [XNIO-1 task-4] PJ6eo9jgQGS-3SU_TqBC2A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.549 [XNIO-1 task-4] 6y_KBmq6RVCHIpRPZ7IMxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.550 [XNIO-1 task-4] 6y_KBmq6RVCHIpRPZ7IMxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.550 [XNIO-1 task-4] 6y_KBmq6RVCHIpRPZ7IMxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.550 [XNIO-1 task-4] 6y_KBmq6RVCHIpRPZ7IMxw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.555 [XNIO-1 task-4] 6y_KBmq6RVCHIpRPZ7IMxw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.561 [XNIO-1 task-4] aCvjvPqxTE-kzCLs3B3PAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.562 [XNIO-1 task-4] aCvjvPqxTE-kzCLs3B3PAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.562 [XNIO-1 task-4] aCvjvPqxTE-kzCLs3B3PAg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.562 [XNIO-1 task-4] aCvjvPqxTE-kzCLs3B3PAg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.567 [XNIO-1 task-4] aCvjvPqxTE-kzCLs3B3PAg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.572 [XNIO-1 task-4] bIc3yCFpTVil5TEqmhrtsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.572 [XNIO-1 task-4] bIc3yCFpTVil5TEqmhrtsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.573 [XNIO-1 task-4] bIc3yCFpTVil5TEqmhrtsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.573 [XNIO-1 task-4] bIc3yCFpTVil5TEqmhrtsg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.578 [XNIO-1 task-4] bIc3yCFpTVil5TEqmhrtsg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.584 [XNIO-1 task-4] F_8L9EB1QGWLzbjlUrarqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.584 [XNIO-1 task-4] F_8L9EB1QGWLzbjlUrarqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.584 [XNIO-1 task-4] F_8L9EB1QGWLzbjlUrarqA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.584 [XNIO-1 task-4] F_8L9EB1QGWLzbjlUrarqA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.590 [XNIO-1 task-4] F_8L9EB1QGWLzbjlUrarqA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.594 [XNIO-1 task-4] GnGenfyIS-279IqLKU1wdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.594 [XNIO-1 task-4] GnGenfyIS-279IqLKU1wdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.594 [XNIO-1 task-4] GnGenfyIS-279IqLKU1wdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.594 [XNIO-1 task-4] GnGenfyIS-279IqLKU1wdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.600 [XNIO-1 task-4] GnGenfyIS-279IqLKU1wdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.603 [XNIO-1 task-4] JO5-XXNhTt6lES7k8-0iBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.603 [XNIO-1 task-4] JO5-XXNhTt6lES7k8-0iBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.603 [XNIO-1 task-4] JO5-XXNhTt6lES7k8-0iBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.604 [XNIO-1 task-4] JO5-XXNhTt6lES7k8-0iBw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.608 [XNIO-1 task-4] JO5-XXNhTt6lES7k8-0iBw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.612 [XNIO-1 task-4] ybkQR5unSWS-54x002bvnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.612 [XNIO-1 task-4] ybkQR5unSWS-54x002bvnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.612 [XNIO-1 task-4] ybkQR5unSWS-54x002bvnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.612 [XNIO-1 task-4] ybkQR5unSWS-54x002bvnA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.617 [XNIO-1 task-4] ybkQR5unSWS-54x002bvnA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.621 [XNIO-1 task-4] wb_ywFvEQOC08iHpqP_zcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.621 [XNIO-1 task-4] wb_ywFvEQOC08iHpqP_zcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.621 [XNIO-1 task-4] wb_ywFvEQOC08iHpqP_zcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.621 [XNIO-1 task-4] wb_ywFvEQOC08iHpqP_zcw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.626 [XNIO-1 task-4] wb_ywFvEQOC08iHpqP_zcw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.629 [XNIO-1 task-4] 4qrWITsXRpyLi0EXbqlvtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.630 [XNIO-1 task-4] 4qrWITsXRpyLi0EXbqlvtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.630 [XNIO-1 task-4] 4qrWITsXRpyLi0EXbqlvtw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.630 [XNIO-1 task-4] 4qrWITsXRpyLi0EXbqlvtw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.635 [XNIO-1 task-4] 4qrWITsXRpyLi0EXbqlvtw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.639 [XNIO-1 task-4] Xmf5G0IPQZWDbw-3UrwgYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.639 [XNIO-1 task-4] Xmf5G0IPQZWDbw-3UrwgYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.639 [XNIO-1 task-4] Xmf5G0IPQZWDbw-3UrwgYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.639 [XNIO-1 task-4] Xmf5G0IPQZWDbw-3UrwgYw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.644 [XNIO-1 task-4] Xmf5G0IPQZWDbw-3UrwgYw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.649 [XNIO-1 task-4] XqXGUk1rT1qsb0Mqj9JlSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.649 [XNIO-1 task-4] XqXGUk1rT1qsb0Mqj9JlSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.649 [XNIO-1 task-4] XqXGUk1rT1qsb0Mqj9JlSQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.649 [XNIO-1 task-4] XqXGUk1rT1qsb0Mqj9JlSQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.654 [XNIO-1 task-4] XqXGUk1rT1qsb0Mqj9JlSQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.659 [XNIO-1 task-4] p3ohjkQ8RC260dNUmOmeHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.659 [XNIO-1 task-4] p3ohjkQ8RC260dNUmOmeHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.660 [XNIO-1 task-4] p3ohjkQ8RC260dNUmOmeHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.660 [XNIO-1 task-4] p3ohjkQ8RC260dNUmOmeHA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.665 [XNIO-1 task-4] p3ohjkQ8RC260dNUmOmeHA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.670 [XNIO-1 task-4] 2dWywW3JTSy_Wnw0aBdHzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.670 [XNIO-1 task-4] 2dWywW3JTSy_Wnw0aBdHzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.670 [XNIO-1 task-4] 2dWywW3JTSy_Wnw0aBdHzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.670 [XNIO-1 task-4] 2dWywW3JTSy_Wnw0aBdHzQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.675 [XNIO-1 task-4] 2dWywW3JTSy_Wnw0aBdHzQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.679 [XNIO-1 task-4] 2jCmoNyZTwuNvMUx3kvc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.679 [XNIO-1 task-4] 2jCmoNyZTwuNvMUx3kvc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.679 [XNIO-1 task-4] 2jCmoNyZTwuNvMUx3kvc6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.679 [XNIO-1 task-4] 2jCmoNyZTwuNvMUx3kvc6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.684 [XNIO-1 task-4] 2jCmoNyZTwuNvMUx3kvc6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.687 [XNIO-1 task-4] naKWhDFIT6yNL3uxs-0vhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.687 [XNIO-1 task-4] naKWhDFIT6yNL3uxs-0vhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.687 [XNIO-1 task-4] naKWhDFIT6yNL3uxs-0vhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.687 [XNIO-1 task-4] naKWhDFIT6yNL3uxs-0vhg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.692 [XNIO-1 task-4] naKWhDFIT6yNL3uxs-0vhg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.695 [XNIO-1 task-4] mzmnc-L4Q5WSwFAmNwxehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.695 [XNIO-1 task-4] mzmnc-L4Q5WSwFAmNwxehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.695 [XNIO-1 task-4] mzmnc-L4Q5WSwFAmNwxehw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.695 [XNIO-1 task-4] mzmnc-L4Q5WSwFAmNwxehw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.700 [XNIO-1 task-4] mzmnc-L4Q5WSwFAmNwxehw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.704 [XNIO-1 task-4] uTzl34RjRP2gpMRd164jMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.704 [XNIO-1 task-4] uTzl34RjRP2gpMRd164jMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.704 [XNIO-1 task-4] uTzl34RjRP2gpMRd164jMQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.704 [XNIO-1 task-4] uTzl34RjRP2gpMRd164jMQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.709 [XNIO-1 task-4] uTzl34RjRP2gpMRd164jMQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.713 [XNIO-1 task-4] SQU4AWErQsK_6jb74iTm7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.713 [XNIO-1 task-4] SQU4AWErQsK_6jb74iTm7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.713 [XNIO-1 task-4] SQU4AWErQsK_6jb74iTm7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.713 [XNIO-1 task-4] SQU4AWErQsK_6jb74iTm7A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.718 [XNIO-1 task-4] SQU4AWErQsK_6jb74iTm7A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.722 [XNIO-1 task-4] Lu68KeSoTYizGr4uQEQJdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.722 [XNIO-1 task-4] Lu68KeSoTYizGr4uQEQJdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.722 [XNIO-1 task-4] Lu68KeSoTYizGr4uQEQJdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.723 [XNIO-1 task-4] Lu68KeSoTYizGr4uQEQJdw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.727 [XNIO-1 task-4] Lu68KeSoTYizGr4uQEQJdw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.730 [XNIO-1 task-4] vN5pMjzPS7KFpgdzU_ex3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.730 [XNIO-1 task-4] vN5pMjzPS7KFpgdzU_ex3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.731 [XNIO-1 task-4] vN5pMjzPS7KFpgdzU_ex3w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.731 [XNIO-1 task-4] vN5pMjzPS7KFpgdzU_ex3w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:56.735 [XNIO-1 task-4] vN5pMjzPS7KFpgdzU_ex3w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:56.741 [XNIO-1 task-4] QolTrwV-T4CrvY6hLHm-hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.741 [XNIO-1 task-4] QolTrwV-T4CrvY6hLHm-hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.741 [XNIO-1 task-4] QolTrwV-T4CrvY6hLHm-hw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:56.741 [XNIO-1 task-4] QolTrwV-T4CrvY6hLHm-hw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.597 [XNIO-1 task-4] QolTrwV-T4CrvY6hLHm-hw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.610 [XNIO-1 task-1] U6wf-Hq3R7my7pUWBViHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.610 [XNIO-1 task-1] U6wf-Hq3R7my7pUWBViHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.610 [XNIO-1 task-1] U6wf-Hq3R7my7pUWBViHSw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.610 [XNIO-1 task-1] U6wf-Hq3R7my7pUWBViHSw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.614 [XNIO-1 task-2] 0P2vu-EiTA6oZST53EYw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.614 [XNIO-1 task-2] 0P2vu-EiTA6oZST53EYw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.615 [XNIO-1 task-2] 0P2vu-EiTA6oZST53EYw6w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.615 [XNIO-1 task-2] 0P2vu-EiTA6oZST53EYw6w DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = b1cd1aca-59e7-411b-be96-fe366c4347ec scope = null +16:40:57.615 [XNIO-1 task-1] U6wf-Hq3R7my7pUWBViHSw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.623 [XNIO-1 task-1] rl35u72gQ7WNZMGaII9B0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.623 [XNIO-1 task-1] rl35u72gQ7WNZMGaII9B0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.623 [XNIO-1 task-1] rl35u72gQ7WNZMGaII9B0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.623 [XNIO-1 task-1] rl35u72gQ7WNZMGaII9B0A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.628 [XNIO-1 task-1] rl35u72gQ7WNZMGaII9B0A INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.635 [XNIO-1 task-1] GwpyerQHRAWkV--X5TaFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.635 [XNIO-1 task-1] GwpyerQHRAWkV--X5TaFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.635 [XNIO-1 task-1] GwpyerQHRAWkV--X5TaFWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.635 [XNIO-1 task-1] GwpyerQHRAWkV--X5TaFWg DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.635 [XNIO-1 task-2] 0P2vu-EiTA6oZST53EYw6w INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.639 [XNIO-1 task-4] aqF3hYcGST2HPU2wIXObJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.639 [XNIO-1 task-4] aqF3hYcGST2HPU2wIXObJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.640 [XNIO-1 task-4] aqF3hYcGST2HPU2wIXObJw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.640 [XNIO-1 task-4] aqF3hYcGST2HPU2wIXObJw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = qeAYSazrR26MWFzPi-sbkg redirectUri = http://localhost:8080/authorization +16:40:57.641 [XNIO-1 task-1] GwpyerQHRAWkV--X5TaFWg INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.648 [XNIO-1 task-1] LvGw1PRNSiOs0mlKun9L3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.648 [XNIO-1 task-1] LvGw1PRNSiOs0mlKun9L3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.648 [XNIO-1 task-1] LvGw1PRNSiOs0mlKun9L3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.648 [XNIO-1 task-1] LvGw1PRNSiOs0mlKun9L3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.650 [XNIO-1 task-4] aqF3hYcGST2HPU2wIXObJw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.652 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:de381e86-6de8-4e93-b5be-e1e81f1c266d +16:40:57.653 [XNIO-1 task-1] LvGw1PRNSiOs0mlKun9L3Q DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.660 [XNIO-1 task-4] lbaDXIIfQpWjCqZYFKU4Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.661 [XNIO-1 task-4] lbaDXIIfQpWjCqZYFKU4Gw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.661 [XNIO-1 task-4] lbaDXIIfQpWjCqZYFKU4Gw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.661 [XNIO-1 task-4] lbaDXIIfQpWjCqZYFKU4Gw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic Y2RiZDhiOTEtYmI5ZS00YjRkLTlhNDktNzhlMmQwMmFiOThmOkZZdzhKZ2hoUjBTNE5jN0g3NnM1dGc=", "Basic Y2RiZDhiOTEtYmI5ZS00YjRkLTlhNDktNzhlMmQwMmFiOThmOkZZdzhKZ2hoUjBTNE5jN0g3NnM1dGc=", authorization) +16:40:57.664 [XNIO-1 task-1] vZEuEUiTSua9WduFF7v_RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.664 [XNIO-1 task-1] vZEuEUiTSua9WduFF7v_RQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.664 [XNIO-1 task-1] vZEuEUiTSua9WduFF7v_RQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.664 [XNIO-1 task-1] vZEuEUiTSua9WduFF7v_RQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic OTUxZTM0YzItYTc1NC00YmQwLWI5MGUtY2EzNTkxYzBiNmRkOi1mNF9LcEJIU29PbmdmVG1iQUpOcFE=", "Basic OTUxZTM0YzItYTc1NC00YmQwLWI5MGUtY2EzNTkxYzBiNmRkOi1mNF9LcEJIU29PbmdmVG1iQUpOcFE=", authorization) +16:40:57.665 [XNIO-1 task-4] lbaDXIIfQpWjCqZYFKU4Gw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.670 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:de381e86-6de8-4e93-b5be-e1e81f1c266d +16:40:57.671 [XNIO-1 task-4] fLZxgflOQz2NffK2XbcX3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.671 [XNIO-1 task-4] fLZxgflOQz2NffK2XbcX3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.672 [XNIO-1 task-4] fLZxgflOQz2NffK2XbcX3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.672 [XNIO-1 task-4] fLZxgflOQz2NffK2XbcX3Q DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.675 [XNIO-1 task-1] vZEuEUiTSua9WduFF7v_RQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.677 [XNIO-1 task-4] fLZxgflOQz2NffK2XbcX3Q INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.683 [XNIO-1 task-1] NmlKyp6WR3q2dFN-JX2_FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.683 [XNIO-1 task-1] NmlKyp6WR3q2dFN-JX2_FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.683 [XNIO-1 task-1] NmlKyp6WR3q2dFN-JX2_FQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.684 [XNIO-1 task-1] NmlKyp6WR3q2dFN-JX2_FQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.686 [XNIO-1 task-4] agpCSbR8TlO0nsPEpAve5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.686 [XNIO-1 task-4] agpCSbR8TlO0nsPEpAve5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.686 [XNIO-1 task-4] agpCSbR8TlO0nsPEpAve5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.686 [XNIO-1 task-4] agpCSbR8TlO0nsPEpAve5g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 584f4913-4609-47f9-bc78-aa9aea7a755d scope = null +16:40:57.688 [XNIO-1 task-1] NmlKyp6WR3q2dFN-JX2_FQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.693 [XNIO-1 task-1] EsFPTlwdR-qEKjBejR0EVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.693 [XNIO-1 task-1] EsFPTlwdR-qEKjBejR0EVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.693 [XNIO-1 task-1] EsFPTlwdR-qEKjBejR0EVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.693 [XNIO-1 task-1] EsFPTlwdR-qEKjBejR0EVw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = IUcwX6jKRBOI3xFwh5my9w redirectUri = http://localhost:8080/authorization +16:40:57.694 [XNIO-1 task-2] ZbD4vngVTfKVQxNKLRyqPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.694 [XNIO-1 task-2] ZbD4vngVTfKVQxNKLRyqPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.694 [XNIO-1 task-2] ZbD4vngVTfKVQxNKLRyqPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.694 [XNIO-1 task-2] ZbD4vngVTfKVQxNKLRyqPQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.699 [XNIO-1 task-1] EsFPTlwdR-qEKjBejR0EVw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.700 [XNIO-1 task-2] ZbD4vngVTfKVQxNKLRyqPQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.703 [XNIO-1 task-4] agpCSbR8TlO0nsPEpAve5g ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleRefreshToken(Oauth2TokenPostHandler.java:461) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:57.714 [XNIO-1 task-1] S7fyPHoMS0ScxBM42qmlnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.714 [XNIO-1 task-1] S7fyPHoMS0ScxBM42qmlnw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.715 [XNIO-1 task-4] lB_j3xdHReWSyHq6GZFaXw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.715 [XNIO-1 task-4] lB_j3xdHReWSyHq6GZFaXw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.715 [XNIO-1 task-1] S7fyPHoMS0ScxBM42qmlnw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.715 [XNIO-1 task-1] S7fyPHoMS0ScxBM42qmlnw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.715 [XNIO-1 task-1] S7fyPHoMS0ScxBM42qmlnw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NDBhZTk5NDctZTI0Yy00ZWMyLWIxZDktZGNhYjBmYzYxNWIyOm1HVWgxbXIyU2dTZ2dNSTA1cy1SU0E=", "Basic NDBhZTk5NDctZTI0Yy00ZWMyLWIxZDktZGNhYjBmYzYxNWIyOm1HVWgxbXIyU2dTZ2dNSTA1cy1SU0E=", authorization) +16:40:57.715 [XNIO-1 task-1] S7fyPHoMS0ScxBM42qmlnw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = H3blPPycRcaYkgxLPSF5Nw redirectUri = http://localhost:8080/authorization +16:40:57.720 [XNIO-1 task-4] lB_j3xdHReWSyHq6GZFaXw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.723 [XNIO-1 task-1] S7fyPHoMS0ScxBM42qmlnw ERROR c.n.o.t.h.Oauth2TokenPostHandler handleRequest - ApiException + at com.networknt.oauth.token.handler.Oauth2TokenPostHandler.handleAuthorizationCode(Oauth2TokenPostHandler.java:231) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.ValidatorHandler.handleRequest(ValidatorHandler.java:116) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.audit.AuditHandler.handleRequest(AuditHandler.java:181) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.openapi.OpenApiHandler.handleRequest(OpenApiHandler.java:131) + at com.networknt.handler.Handler.next(Handler.java:233) + at com.networknt.handler.Handler.next(Handler.java:212) + at com.networknt.traceability.TraceabilityHandler.handleRequest(TraceabilityHandler.java:68) + at com.networknt.handler.Handler.next(Handler.java:233) + at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) + at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) + at java.base/java.lang.Thread.run(Unknown Source) +16:40:57.725 [XNIO-1 task-1] e26Li1xpSZ-v8H5JAi4BKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.725 [XNIO-1 task-1] e26Li1xpSZ-v8H5JAi4BKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.725 [XNIO-1 task-1] e26Li1xpSZ-v8H5JAi4BKQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.726 [XNIO-1 task-1] e26Li1xpSZ-v8H5JAi4BKQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.731 [XNIO-1 task-1] e26Li1xpSZ-v8H5JAi4BKQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.735 [XNIO-1 task-1] IinyIbeORpyBR9Mh51rf3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.735 [XNIO-1 task-1] IinyIbeORpyBR9Mh51rf3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.735 [XNIO-1 task-1] IinyIbeORpyBR9Mh51rf3g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.735 [XNIO-1 task-1] IinyIbeORpyBR9Mh51rf3g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.743 [XNIO-1 task-1] IinyIbeORpyBR9Mh51rf3g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.756 [XNIO-1 task-1] PDajDDT7RWeT4uWJYNmNWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.756 [XNIO-1 task-1] PDajDDT7RWeT4uWJYNmNWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.756 [XNIO-1 task-1] PDajDDT7RWeT4uWJYNmNWQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.757 [XNIO-1 task-1] PDajDDT7RWeT4uWJYNmNWQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.764 [XNIO-1 task-1] PDajDDT7RWeT4uWJYNmNWQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.764 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e3865818-1c8d-4afe-84bb-7d1cd1159439 +16:40:57.764 [XNIO-1 task-4] 2HHTmQ3PS5yKK6v6cewQ2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.764 [XNIO-1 task-4] 2HHTmQ3PS5yKK6v6cewQ2g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.764 [XNIO-1 task-4] 2HHTmQ3PS5yKK6v6cewQ2g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.764 [XNIO-1 task-4] 2HHTmQ3PS5yKK6v6cewQ2g DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", authorization) +16:40:57.771 [XNIO-1 task-4] 2HHTmQ3PS5yKK6v6cewQ2g DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:57.771 [XNIO-1 task-4] 2HHTmQ3PS5yKK6v6cewQ2g INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.771 [XNIO-1 task-1] Gh4gv7M0RWSf7qGq-VzHjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.771 [XNIO-1 task-1] Gh4gv7M0RWSf7qGq-VzHjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.771 [XNIO-1 task-1] Gh4gv7M0RWSf7qGq-VzHjQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.771 [XNIO-1 task-1] Gh4gv7M0RWSf7qGq-VzHjQ DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.777 [XNIO-1 task-2] K-ZHO33FQgSdIwOyVj138A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.777 [XNIO-1 task-2] K-ZHO33FQgSdIwOyVj138A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.777 [XNIO-1 task-2] K-ZHO33FQgSdIwOyVj138A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.777 [XNIO-1 task-2] K-ZHO33FQgSdIwOyVj138A DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - code = g_WPtizeTXS81MP8tpm2OA redirectUri = http://localhost:8080/authorization +16:40:57.780 [XNIO-1 task-1] Gh4gv7M0RWSf7qGq-VzHjQ INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.783 [XNIO-1 task-2] K-ZHO33FQgSdIwOyVj138A DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.789 [XNIO-1 task-1] YPKx1EtnT86GOj9B9ZicwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.789 [XNIO-1 task-4] XyXe-0sRSYWpG6nMVeDArQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.789 [XNIO-1 task-4] XyXe-0sRSYWpG6nMVeDArQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.789 [XNIO-1 task-4] XyXe-0sRSYWpG6nMVeDArQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.789 [XNIO-1 task-1] YPKx1EtnT86GOj9B9ZicwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.789 [XNIO-1 task-4] XyXe-0sRSYWpG6nMVeDArQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.789 [XNIO-1 task-1] YPKx1EtnT86GOj9B9ZicwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", authorization) +16:40:57.789 [XNIO-1 task-4] XyXe-0sRSYWpG6nMVeDArQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", "Basic NzM4YzE1NTMtODczZi00YjRkLWE4ZDYtZDRiNWRiNGVmMTc1OnplMFFmT2lmVFFHSHhBMXNpVnZqM0E=", authorization) +16:40:57.795 [XNIO-1 task-4] XyXe-0sRSYWpG6nMVeDArQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.799 [XNIO-1 task-1] YPKx1EtnT86GOj9B9ZicwQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.801 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:721aed9c-f198-4fbc-8065-9450a25f6104 +16:40:57.802 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:721aed9c-f198-4fbc-8065-9450a25f6104 +16:40:57.802 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:721aed9c-f198-4fbc-8065-9450a25f6104 +16:40:57.802 [XNIO-1 task-4] CvCuf9mMS0Kw62e0goQAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.802 [XNIO-1 task-4] CvCuf9mMS0Kw62e0goQAKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.803 [XNIO-1 task-4] CvCuf9mMS0Kw62e0goQAKw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.808 [XNIO-1 task-4] CvCuf9mMS0Kw62e0goQAKw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.813 [XNIO-1 task-4] usl3YnunRpCujwrBs5JGAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.813 [XNIO-1 task-4] usl3YnunRpCujwrBs5JGAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.813 [XNIO-1 task-4] usl3YnunRpCujwrBs5JGAw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.813 [XNIO-1 task-4] usl3YnunRpCujwrBs5JGAw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleRefreshToken - refreshToken = 721aed9c-f198-4fbc-8065-9450a25f6104 scope = null +16:40:57.815 [XNIO-1 task-1] v1qXa-wwTzGuSQ3QcAqzwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.815 [XNIO-1 task-1] v1qXa-wwTzGuSQ3QcAqzwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.815 [XNIO-1 task-1] v1qXa-wwTzGuSQ3QcAqzwA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.815 [XNIO-1 task-1] v1qXa-wwTzGuSQ3QcAqzwA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.820 [XNIO-1 task-1] v1qXa-wwTzGuSQ3QcAqzwA DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.823 [XNIO-1 task-4] usl3YnunRpCujwrBs5JGAw DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.834 [XNIO-1 task-4] 4nMQ-I9ZTuCViUJXES2WjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.834 [XNIO-1 task-4] 4nMQ-I9ZTuCViUJXES2WjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.834 [XNIO-1 task-4] 4nMQ-I9ZTuCViUJXES2WjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.834 [XNIO-1 task-4] 4nMQ-I9ZTuCViUJXES2WjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", "Basic ZGNmNjkzYzItZWI1ZC00NWRjLTg1NjQtMDVjNjZlMDBkYjE3OndvUTFzZng0UWoyVkNMU1JNOVBTT3c=", authorization) +16:40:57.838 [XNIO-1 task-1] 73YIxB77Qcu544qPHW2V_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.838 [XNIO-1 task-1] 73YIxB77Qcu544qPHW2V_w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.838 [XNIO-1 task-1] 73YIxB77Qcu544qPHW2V_w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.838 [XNIO-1 task-1] 73YIxB77Qcu544qPHW2V_w DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", "Basic MWVmZDk4NjUtNzhkMy00ZWExLWI2Y2MtMjJiMTViNDUzNTYzOmRTRmQzQk82UmNXdmR6Wklkc3h1dVE=", authorization) +16:40:57.840 [XNIO-1 task-4] 4nMQ-I9ZTuCViUJXES2WjQ DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.843 [XNIO-1 task-2] 1A2uLSHmQ56unfICZ2i9fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.843 [XNIO-1 task-2] 1A2uLSHmQ56unfICZ2i9fw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/token +16:40:57.843 [XNIO-1 task-2] 1A2uLSHmQ56unfICZ2i9fw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/token, base path is set to: null +16:40:57.843 [XNIO-1 task-2] 1A2uLSHmQ56unfICZ2i9fw DEBUG com.networknt.schema.TypeValidator debug - validate( "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", "Basic M2JlN2JjZmUtMjIyNS00OWNmLTg3ODAtYjc4OWUwZjkzOThmOnBfdy1GMFJkU1JHczVzc2Y4ZFZZWWc=", authorization) +16:40:57.848 [XNIO-1 task-1] 73YIxB77Qcu544qPHW2V_w DEBUG com.networknt.security.JwtIssuer getPrivateKey - filename = primary.jks key = selfsigned +16:40:57.850 [XNIO-1 task-2] 1A2uLSHmQ56unfICZ2i9fw DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleAuthorizationCode - variable from codeMap cache userId = admin redirectUri = http://localhost:8080/authorization scope = null userType = null roles = admin user remember = null +16:40:57.850 [XNIO-1 task-2] 1A2uLSHmQ56unfICZ2i9fw INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.851 [XNIO-1 task-4] voiFkJNPQ6SkX7v9ip6uhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.851 [XNIO-1 task-4] voiFkJNPQ6SkX7v9ip6uhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.852 [XNIO-1 task-4] voiFkJNPQ6SkX7v9ip6uhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.852 [XNIO-1 task-4] voiFkJNPQ6SkX7v9ip6uhA DEBUG c.n.o.t.h.Oauth2TokenPostHandler handleClientCredentials - scope = null +16:40:57.859 [XNIO-1 task-4] voiFkJNPQ6SkX7v9ip6uhA INFO com.networknt.config.Config getConfigStream - Config loaded from externalized folder for primary.jks in /config +16:40:57.863 [XNIO-1 task-4] iRM6alIyS0e9YoXhzgCIfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token +16:40:57.863 [XNIO-1 task-4] iRM6alIyS0e9YoXhzgCIfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/token diff --git a/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-user-1.log b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-user-1.log new file mode 100644 index 0000000..843e1b2 --- /dev/null +++ b/log_data/LO2/Labeled/register_user_400_no_password_1/light-oauth2-oauth2-user-1.log @@ -0,0 +1,2701 @@ +16:40:51.958 [XNIO-1 task-1] 7mCLT8elQM-HHkBx9EFx0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:51.958 [XNIO-1 task-1] 7mCLT8elQM-HHkBx9EFx0g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:51.958 [XNIO-1 task-1] 7mCLT8elQM-HHkBx9EFx0g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:51.971 [XNIO-1 task-1] oRyikxgETIS447WEPgmHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f2865b5, base path is set to: null +16:40:51.972 [XNIO-1 task-1] oRyikxgETIS447WEPgmHlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:51.972 [XNIO-1 task-1] oRyikxgETIS447WEPgmHlQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:51.972 [XNIO-1 task-1] oRyikxgETIS447WEPgmHlQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f2865b5, base path is set to: null +16:40:51.972 [XNIO-1 task-1] oRyikxgETIS447WEPgmHlQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7f2865b5", "7f2865b5", userId) +16:40:51.974 [XNIO-1 task-1] Gr5s3p3qQ6y2YO9g5gd6tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:51.974 [XNIO-1 task-1] Gr5s3p3qQ6y2YO9g5gd6tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:51.974 [XNIO-1 task-1] Gr5s3p3qQ6y2YO9g5gd6tA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:51.985 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:8879b2b3 +16:40:51.987 [XNIO-1 task-1] L9L8-GJlQwCwW5faRD4cSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:51.987 [XNIO-1 task-1] L9L8-GJlQwCwW5faRD4cSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:51.987 [XNIO-1 task-1] L9L8-GJlQwCwW5faRD4cSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:51.994 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/96728d6a +16:40:51.994 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:51.994 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:51.994 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:51.995 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/96728d6a +16:40:51.995 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f02ca6b6-dce1-46ac-9969-e0f26fe83f28","newPassword":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPasswordConfirm":"6c1b22cd-076f-4da6-8514-4d78e9da6691"}, {"password":"f02ca6b6-dce1-46ac-9969-e0f26fe83f28","newPassword":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPasswordConfirm":"6c1b22cd-076f-4da6-8514-4d78e9da6691"}, requestBody) +16:40:51.995 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f02ca6b6-dce1-46ac-9969-e0f26fe83f28","newPassword":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPasswordConfirm":"6c1b22cd-076f-4da6-8514-4d78e9da6691"}, {"password":"f02ca6b6-dce1-46ac-9969-e0f26fe83f28","newPassword":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPasswordConfirm":"6c1b22cd-076f-4da6-8514-4d78e9da6691"}, requestBody) +16:40:51.995 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG com.networknt.schema.FormatValidator debug - validate( "6c1b22cd-076f-4da6-8514-4d78e9da6691", {"password":"f02ca6b6-dce1-46ac-9969-e0f26fe83f28","newPassword":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPasswordConfirm":"6c1b22cd-076f-4da6-8514-4d78e9da6691"}, requestBody.newPasswordConfirm) +16:40:51.995 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG com.networknt.schema.FormatValidator debug - validate( "f02ca6b6-dce1-46ac-9969-e0f26fe83f28", {"password":"f02ca6b6-dce1-46ac-9969-e0f26fe83f28","newPassword":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPasswordConfirm":"6c1b22cd-076f-4da6-8514-4d78e9da6691"}, requestBody.password) +16:40:51.995 [XNIO-1 task-1] oGXOMCNUTFma0W6YxCujTg DEBUG com.networknt.schema.FormatValidator debug - validate( "6c1b22cd-076f-4da6-8514-4d78e9da6691", {"password":"f02ca6b6-dce1-46ac-9969-e0f26fe83f28","newPassword":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPasswordConfirm":"6c1b22cd-076f-4da6-8514-4d78e9da6691"}, requestBody.newPassword) +16:40:52.011 [XNIO-1 task-1] CJuYYkKiS2mSD77fEsW4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.011 [XNIO-1 task-1] CJuYYkKiS2mSD77fEsW4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.012 [XNIO-1 task-1] CJuYYkKiS2mSD77fEsW4JQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.017 [XNIO-1 task-1] lHZdaskUTd-X4CDiZvOX0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.018 [XNIO-1 task-1] lHZdaskUTd-X4CDiZvOX0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.018 [XNIO-1 task-1] lHZdaskUTd-X4CDiZvOX0A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.020 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3d68239 +16:40:52.028 [XNIO-1 task-1] 0RA7M6XwQJmcLJ7soONJzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.028 [XNIO-1 task-1] 0RA7M6XwQJmcLJ7soONJzQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.029 [XNIO-1 task-1] 0RA7M6XwQJmcLJ7soONJzQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.029 [XNIO-1 task-1] 0RA7M6XwQJmcLJ7soONJzQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.033 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/96728d6a, base path is set to: null +16:40:52.033 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.033 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.033 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:52.033 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/96728d6a, base path is set to: null +16:40:52.034 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG com.networknt.schema.TypeValidator debug - validate( "96728d6a", "96728d6a", userId) +16:40:52.034 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPassword":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e","newPasswordConfirm":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e"}, {"password":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPassword":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e","newPasswordConfirm":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e"}, requestBody) +16:40:52.034 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG com.networknt.schema.TypeValidator debug - validate( "eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e", {"password":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPassword":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e","newPasswordConfirm":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e"}, requestBody.newPasswordConfirm) +16:40:52.034 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG com.networknt.schema.TypeValidator debug - validate( "6c1b22cd-076f-4da6-8514-4d78e9da6691", {"password":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPassword":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e","newPasswordConfirm":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e"}, requestBody.password) +16:40:52.034 [XNIO-1 task-1] jAQJrTpSTvCZzfnoGvvkEg DEBUG com.networknt.schema.TypeValidator debug - validate( "eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e", {"password":"6c1b22cd-076f-4da6-8514-4d78e9da6691","newPassword":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e","newPasswordConfirm":"eec40a0f-25a7-4e8b-8ae4-e67ea4aa172e"}, requestBody.newPassword) +16:40:52.036 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7a7bd88 +16:40:52.037 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f7a7bd88 +16:40:52.052 [XNIO-1 task-1] Jw9zfwu7Sd6gBtZ9gukunA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f2865b5 +16:40:52.052 [XNIO-1 task-1] Jw9zfwu7Sd6gBtZ9gukunA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.052 [XNIO-1 task-1] Jw9zfwu7Sd6gBtZ9gukunA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.052 [XNIO-1 task-1] Jw9zfwu7Sd6gBtZ9gukunA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f2865b5 +16:40:52.054 [XNIO-1 task-1] JRF3lIhRQwSMEQeztATtEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.054 [XNIO-1 task-1] JRF3lIhRQwSMEQeztATtEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.054 [XNIO-1 task-1] JRF3lIhRQwSMEQeztATtEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.067 [XNIO-1 task-1] nOVQkfKARnyKBnq6nk17aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6949dfc5, base path is set to: null +16:40:52.067 [XNIO-1 task-1] nOVQkfKARnyKBnq6nk17aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.067 [XNIO-1 task-1] nOVQkfKARnyKBnq6nk17aw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.068 [XNIO-1 task-1] nOVQkfKARnyKBnq6nk17aw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/6949dfc5, base path is set to: null +16:40:52.068 [XNIO-1 task-1] nOVQkfKARnyKBnq6nk17aw DEBUG com.networknt.schema.TypeValidator debug - validate( "6949dfc5", "6949dfc5", userId) +16:40:52.075 [XNIO-1 task-1] yYrB9Cl8T-ql2xo-JyCPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.075 [XNIO-1 task-1] yYrB9Cl8T-ql2xo-JyCPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.075 [XNIO-1 task-1] yYrB9Cl8T-ql2xo-JyCPYw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.087 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3346cb88 +16:40:52.087 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.087 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.088 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.088 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3346cb88 +16:40:52.088 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1eb43f2f-e3f9-46e6-ab92-3a64368e349d","newPassword":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPasswordConfirm":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07"}, {"password":"1eb43f2f-e3f9-46e6-ab92-3a64368e349d","newPassword":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPasswordConfirm":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07"}, requestBody) +16:40:52.088 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1eb43f2f-e3f9-46e6-ab92-3a64368e349d","newPassword":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPasswordConfirm":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07"}, {"password":"1eb43f2f-e3f9-46e6-ab92-3a64368e349d","newPassword":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPasswordConfirm":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07"}, requestBody) +16:40:52.088 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG com.networknt.schema.FormatValidator debug - validate( "b8dc2a3f-f94a-42a3-8236-188e5c1f5e07", {"password":"1eb43f2f-e3f9-46e6-ab92-3a64368e349d","newPassword":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPasswordConfirm":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07"}, requestBody.newPasswordConfirm) +16:40:52.088 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG com.networknt.schema.FormatValidator debug - validate( "1eb43f2f-e3f9-46e6-ab92-3a64368e349d", {"password":"1eb43f2f-e3f9-46e6-ab92-3a64368e349d","newPassword":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPasswordConfirm":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07"}, requestBody.password) +16:40:52.088 [XNIO-1 task-1] 8u9b51xGRiKnDj7dTLdskA DEBUG com.networknt.schema.FormatValidator debug - validate( "b8dc2a3f-f94a-42a3-8236-188e5c1f5e07", {"password":"1eb43f2f-e3f9-46e6-ab92-3a64368e349d","newPassword":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPasswordConfirm":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07"}, requestBody.newPassword) +16:40:52.105 [XNIO-1 task-1] uyqKKi4JRlOtCkVzHOKHxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.105 [XNIO-1 task-1] uyqKKi4JRlOtCkVzHOKHxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.106 [XNIO-1 task-1] uyqKKi4JRlOtCkVzHOKHxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.121 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7257bff8 +16:40:52.122 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.122 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.122 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.122 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7257bff8 +16:40:52.122 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a5d41bb1-6d62-4f60-824e-b67fc1006938","newPassword":"b385e0c3-1189-47e8-806e-aa751545f8c5","newPasswordConfirm":"b385e0c3-1189-47e8-806e-aa751545f8c5"}, {"password":"a5d41bb1-6d62-4f60-824e-b67fc1006938","newPassword":"b385e0c3-1189-47e8-806e-aa751545f8c5","newPasswordConfirm":"b385e0c3-1189-47e8-806e-aa751545f8c5"}, requestBody) +16:40:52.122 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a5d41bb1-6d62-4f60-824e-b67fc1006938","newPassword":"b385e0c3-1189-47e8-806e-aa751545f8c5","newPasswordConfirm":"b385e0c3-1189-47e8-806e-aa751545f8c5"}, {"password":"a5d41bb1-6d62-4f60-824e-b67fc1006938","newPassword":"b385e0c3-1189-47e8-806e-aa751545f8c5","newPasswordConfirm":"b385e0c3-1189-47e8-806e-aa751545f8c5"}, requestBody) +16:40:52.122 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG com.networknt.schema.FormatValidator debug - validate( "b385e0c3-1189-47e8-806e-aa751545f8c5", {"password":"a5d41bb1-6d62-4f60-824e-b67fc1006938","newPassword":"b385e0c3-1189-47e8-806e-aa751545f8c5","newPasswordConfirm":"b385e0c3-1189-47e8-806e-aa751545f8c5"}, requestBody.newPasswordConfirm) +16:40:52.123 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG com.networknt.schema.FormatValidator debug - validate( "a5d41bb1-6d62-4f60-824e-b67fc1006938", {"password":"a5d41bb1-6d62-4f60-824e-b67fc1006938","newPassword":"b385e0c3-1189-47e8-806e-aa751545f8c5","newPasswordConfirm":"b385e0c3-1189-47e8-806e-aa751545f8c5"}, requestBody.password) +16:40:52.123 [XNIO-1 task-1] 1TbKfOG4SoyE3q1p6WcETA DEBUG com.networknt.schema.FormatValidator debug - validate( "b385e0c3-1189-47e8-806e-aa751545f8c5", {"password":"a5d41bb1-6d62-4f60-824e-b67fc1006938","newPassword":"b385e0c3-1189-47e8-806e-aa751545f8c5","newPasswordConfirm":"b385e0c3-1189-47e8-806e-aa751545f8c5"}, requestBody.newPassword) +16:40:52.140 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/21fd9799 +16:40:52.140 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.140 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.141 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.141 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/21fd9799 +16:40:52.141 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"1af16ce0-182b-4ae7-84c2-6b24790e1d5f","newPassword":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64","newPasswordConfirm":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64"}, {"password":"1af16ce0-182b-4ae7-84c2-6b24790e1d5f","newPassword":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64","newPasswordConfirm":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64"}, requestBody) +16:40:52.141 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"1af16ce0-182b-4ae7-84c2-6b24790e1d5f","newPassword":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64","newPasswordConfirm":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64"}, {"password":"1af16ce0-182b-4ae7-84c2-6b24790e1d5f","newPassword":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64","newPasswordConfirm":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64"}, requestBody) +16:40:52.141 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG com.networknt.schema.FormatValidator debug - validate( "a2b53fef-354b-4f6f-a0f9-92c5f26e3c64", {"password":"1af16ce0-182b-4ae7-84c2-6b24790e1d5f","newPassword":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64","newPasswordConfirm":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64"}, requestBody.newPasswordConfirm) +16:40:52.141 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG com.networknt.schema.FormatValidator debug - validate( "1af16ce0-182b-4ae7-84c2-6b24790e1d5f", {"password":"1af16ce0-182b-4ae7-84c2-6b24790e1d5f","newPassword":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64","newPasswordConfirm":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64"}, requestBody.password) +16:40:52.141 [XNIO-1 task-1] T52McBHoRbeXysH2IC0guA DEBUG com.networknt.schema.FormatValidator debug - validate( "a2b53fef-354b-4f6f-a0f9-92c5f26e3c64", {"password":"1af16ce0-182b-4ae7-84c2-6b24790e1d5f","newPassword":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64","newPasswordConfirm":"a2b53fef-354b-4f6f-a0f9-92c5f26e3c64"}, requestBody.newPassword) +16:40:52.157 [XNIO-1 task-1] E76P8cF7TaqzkeVhw9Mpfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.157 [XNIO-1 task-1] E76P8cF7TaqzkeVhw9Mpfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.157 [XNIO-1 task-1] E76P8cF7TaqzkeVhw9Mpfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.163 [XNIO-1 task-1] P6AUBljlSe2gLCMC1JKWFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.163 [XNIO-1 task-1] P6AUBljlSe2gLCMC1JKWFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.163 [XNIO-1 task-1] P6AUBljlSe2gLCMC1JKWFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.167 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:062bf7d6 +16:40:52.168 [XNIO-1 task-1] En9OkZ0OSc-yLvVizX0d2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/96728d6a, base path is set to: null +16:40:52.168 [XNIO-1 task-1] En9OkZ0OSc-yLvVizX0d2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.168 [XNIO-1 task-1] En9OkZ0OSc-yLvVizX0d2A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.168 [XNIO-1 task-1] En9OkZ0OSc-yLvVizX0d2A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/96728d6a, base path is set to: null +16:40:52.169 [XNIO-1 task-1] En9OkZ0OSc-yLvVizX0d2A DEBUG com.networknt.schema.TypeValidator debug - validate( "96728d6a", "96728d6a", userId) +16:40:52.172 [XNIO-1 task-1] Ox77iwxqSziNlQ0K0Ocb2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.172 [XNIO-1 task-1] Ox77iwxqSziNlQ0K0Ocb2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.172 [XNIO-1 task-1] Ox77iwxqSziNlQ0K0Ocb2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.181 [XNIO-1 task-1] AOsM22eBTa-pX9X6Pwi2Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7257bff8 +16:40:52.182 [XNIO-1 task-1] AOsM22eBTa-pX9X6Pwi2Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.182 [XNIO-1 task-1] AOsM22eBTa-pX9X6Pwi2Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.182 [XNIO-1 task-1] AOsM22eBTa-pX9X6Pwi2Ug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7257bff8 +16:40:52.188 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:062bf7d6 +16:40:52.189 [XNIO-1 task-1] X56r8P9URoKuGq0UBETBKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.189 [XNIO-1 task-1] X56r8P9URoKuGq0UBETBKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.190 [XNIO-1 task-1] X56r8P9URoKuGq0UBETBKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.196 [XNIO-1 task-1] JB8rJdZ8QP6dgCgxrcqfuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3346cb88, base path is set to: null +16:40:52.196 [XNIO-1 task-1] JB8rJdZ8QP6dgCgxrcqfuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.196 [XNIO-1 task-1] JB8rJdZ8QP6dgCgxrcqfuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.196 [XNIO-1 task-1] JB8rJdZ8QP6dgCgxrcqfuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3346cb88, base path is set to: null +16:40:52.196 [XNIO-1 task-1] JB8rJdZ8QP6dgCgxrcqfuA DEBUG com.networknt.schema.TypeValidator debug - validate( "3346cb88", "3346cb88", userId) +16:40:52.199 [XNIO-1 task-1] E-Yf77IdRV-S5b5nO5mKKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96728d6a +16:40:52.199 [XNIO-1 task-1] E-Yf77IdRV-S5b5nO5mKKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.199 [XNIO-1 task-1] E-Yf77IdRV-S5b5nO5mKKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.199 [XNIO-1 task-1] E-Yf77IdRV-S5b5nO5mKKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/96728d6a +16:40:52.207 [XNIO-1 task-1] R-LUyiJSTYuwm5TDQ5SlhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21fd9799, base path is set to: null +16:40:52.207 [XNIO-1 task-1] R-LUyiJSTYuwm5TDQ5SlhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.207 [XNIO-1 task-1] R-LUyiJSTYuwm5TDQ5SlhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.207 [XNIO-1 task-1] R-LUyiJSTYuwm5TDQ5SlhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/21fd9799, base path is set to: null +16:40:52.208 [XNIO-1 task-1] R-LUyiJSTYuwm5TDQ5SlhA DEBUG com.networknt.schema.TypeValidator debug - validate( "21fd9799", "21fd9799", userId) +16:40:52.214 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3346cb88 +16:40:52.214 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3346cb88 +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPassword":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPasswordConfirm":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b"}, {"password":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPassword":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPasswordConfirm":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b"}, requestBody) +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPassword":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPasswordConfirm":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b"}, {"password":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPassword":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPasswordConfirm":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b"}, requestBody) +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG com.networknt.schema.FormatValidator debug - validate( "13ef8541-0d4e-449c-8360-dd8a9f89fa8b", {"password":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPassword":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPasswordConfirm":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b"}, requestBody.newPasswordConfirm) +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG com.networknt.schema.FormatValidator debug - validate( "b8dc2a3f-f94a-42a3-8236-188e5c1f5e07", {"password":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPassword":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPasswordConfirm":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b"}, requestBody.password) +16:40:52.215 [XNIO-1 task-1] IX9S8aIfSrqPMCs18Mbcyg DEBUG com.networknt.schema.FormatValidator debug - validate( "13ef8541-0d4e-449c-8360-dd8a9f89fa8b", {"password":"b8dc2a3f-f94a-42a3-8236-188e5c1f5e07","newPassword":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPasswordConfirm":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b"}, requestBody.newPassword) +16:40:52.231 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.231 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ClientMapStore load - Load:be3f3a23-0186-44a4-b117-3aceac5292c0 +16:40:52.231 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.232 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.232 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, requestBody) +16:40:52.232 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, requestBody) +16:40:52.232 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG com.networknt.schema.TypeValidator debug - validate( "ab22d3c5-76a2-4678-ae29-6d5ca357", {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, requestBody.lastName) +16:40:52.232 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG com.networknt.schema.FormatValidator debug - validate( "00244e61-914e-497a-8dec-c976b79c743c", {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, requestBody.password) +16:40:52.232 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, requestBody.userType) +16:40:52.233 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, requestBody) +16:40:52.233 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, {"userId":"e3dbb1cd","userType":"admin","firstName":"5b415789-b881-4d06-99b1-533efacd","lastName":"ab22d3c5-76a2-4678-ae29-6d5ca357","email":"267be9c2-ef5e-4e67-aa63-eb8d370204be","password":"00244e61-914e-497a-8dec-c976b79c743c"}, requestBody) +16:40:52.234 [XNIO-1 task-1] z-bTpF7BRfiPFn9pzE5R8A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 00244e61-914e-497a-8dec-c976b79c743c or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.235 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3346cb88 +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/3346cb88 +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPassword":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c","newPasswordConfirm":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c"}, {"password":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPassword":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c","newPasswordConfirm":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c"}, requestBody) +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPassword":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c","newPasswordConfirm":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c"}, {"password":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPassword":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c","newPasswordConfirm":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c"}, requestBody) +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG com.networknt.schema.FormatValidator debug - validate( "7949c67a-2fc0-49f5-9e20-73fec2a52c0c", {"password":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPassword":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c","newPasswordConfirm":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c"}, requestBody.newPasswordConfirm) +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG com.networknt.schema.FormatValidator debug - validate( "13ef8541-0d4e-449c-8360-dd8a9f89fa8b", {"password":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPassword":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c","newPasswordConfirm":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c"}, requestBody.password) +16:40:52.236 [XNIO-1 task-1] 0INXg0YRQZKejD27-l58-g DEBUG com.networknt.schema.FormatValidator debug - validate( "7949c67a-2fc0-49f5-9e20-73fec2a52c0c", {"password":"13ef8541-0d4e-449c-8360-dd8a9f89fa8b","newPassword":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c","newPasswordConfirm":"7949c67a-2fc0-49f5-9e20-73fec2a52c0c"}, requestBody.newPassword) +16:40:52.252 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.252 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.252 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.252 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, requestBody) +16:40:52.252 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG com.networknt.schema.TypeValidator debug - validate( "1d11a126-e76a-4f6d-aacf-b3fa9153", {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, requestBody.firstName) +16:40:52.253 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG com.networknt.schema.TypeValidator debug - validate( "55d4be6f-8b5d-4402-8cdb-fadc7d17f571", {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, requestBody.password) +16:40:52.253 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, requestBody) +16:40:52.253 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, requestBody.userType) +16:40:52.253 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG com.networknt.schema.TypeValidator debug - validate( "fc25cb81", {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, requestBody.userId) +16:40:52.253 [XNIO-1 task-1] F7eijcYnScCc72LCHqKE5g DEBUG com.networknt.schema.TypeValidator debug - validate( "2988178b-ceea-4d97-97a3-80b6dd3928a1", {"userId":"fc25cb81","userType":"admin","firstName":"1d11a126-e76a-4f6d-aacf-b3fa9153","lastName":"b65d1498-44e2-4de7-ba46-7a85d69c","email":"2988178b-ceea-4d97-97a3-80b6dd3928a1","password":"55d4be6f-8b5d-4402-8cdb-fadc7d17f571"}, requestBody.email) +16:40:52.255 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9ac0960b +16:40:52.256 [XNIO-1 task-1] DX6374vtQzWLrDNLGpNRBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.256 [XNIO-1 task-1] DX6374vtQzWLrDNLGpNRBg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.256 [XNIO-1 task-1] DX6374vtQzWLrDNLGpNRBg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.256 [XNIO-1 task-1] DX6374vtQzWLrDNLGpNRBg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.260 [XNIO-1 task-1] x10mUckFR6mD9d9HUc_-pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.260 [XNIO-1 task-1] x10mUckFR6mD9d9HUc_-pg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.261 [XNIO-1 task-1] x10mUckFR6mD9d9HUc_-pg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.261 [XNIO-1 task-1] x10mUckFR6mD9d9HUc_-pg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.264 [XNIO-1 task-1] fbel5nf4R8exPdnEq6jA_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3346cb88, base path is set to: null +16:40:52.264 [XNIO-1 task-1] fbel5nf4R8exPdnEq6jA_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.264 [XNIO-1 task-1] fbel5nf4R8exPdnEq6jA_A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.264 [XNIO-1 task-1] fbel5nf4R8exPdnEq6jA_A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/3346cb88, base path is set to: null +16:40:52.264 [XNIO-1 task-1] fbel5nf4R8exPdnEq6jA_A DEBUG com.networknt.schema.TypeValidator debug - validate( "3346cb88", "3346cb88", userId) +16:40:52.270 [XNIO-1 task-1] S2hLst1cSHy2_SMB8dmiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.270 [XNIO-1 task-1] S2hLst1cSHy2_SMB8dmiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.270 [XNIO-1 task-1] S2hLst1cSHy2_SMB8dmiVA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.270 [XNIO-1 task-1] S2hLst1cSHy2_SMB8dmiVA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.274 [XNIO-1 task-1] k7wHh5fqTICyshqBdKbq6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f2865b5 +16:40:52.274 [XNIO-1 task-1] k7wHh5fqTICyshqBdKbq6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.274 [XNIO-1 task-1] k7wHh5fqTICyshqBdKbq6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.274 [XNIO-1 task-1] k7wHh5fqTICyshqBdKbq6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f2865b5 +16:40:52.276 [XNIO-1 task-1] 0tW71mp9RhSW0bZSfECF4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.277 [XNIO-1 task-1] 0tW71mp9RhSW0bZSfECF4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.277 [XNIO-1 task-1] 0tW71mp9RhSW0bZSfECF4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.277 [XNIO-1 task-1] 0tW71mp9RhSW0bZSfECF4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.281 [XNIO-1 task-1] ruBnZHKaSg6d7lChwm6EVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.281 [XNIO-1 task-1] ruBnZHKaSg6d7lChwm6EVw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.281 [XNIO-1 task-1] ruBnZHKaSg6d7lChwm6EVw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.293 [XNIO-1 task-1] Te77ZDhITpKXmBrwcCkS_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.294 [XNIO-1 task-1] Te77ZDhITpKXmBrwcCkS_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.294 [XNIO-1 task-1] Te77ZDhITpKXmBrwcCkS_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.294 [XNIO-1 task-1] Te77ZDhITpKXmBrwcCkS_g DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.298 [XNIO-1 task-1] z9WFvssTRvmWQ91pP2ZQiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.298 [XNIO-1 task-1] z9WFvssTRvmWQ91pP2ZQiQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.298 [XNIO-1 task-1] z9WFvssTRvmWQ91pP2ZQiQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.304 [XNIO-1 task-1] xNxb3FMvSaC4cT3J8gb7YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.304 [XNIO-1 task-1] xNxb3FMvSaC4cT3J8gb7YA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.304 [XNIO-1 task-1] xNxb3FMvSaC4cT3J8gb7YA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.315 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7f2865b5, base path is set to: null +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/7f2865b5, base path is set to: null +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG com.networknt.schema.TypeValidator debug - validate( "7f2865b5", "7f2865b5", userId) +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"4320a668-20d3-4dfd-bb76-7a1a421c3649","newPassword":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPasswordConfirm":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb"}, {"password":"4320a668-20d3-4dfd-bb76-7a1a421c3649","newPassword":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPasswordConfirm":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb"}, requestBody) +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG com.networknt.schema.TypeValidator debug - validate( "ed0443ae-0767-4245-9dc1-b45c1eb83ccb", {"password":"4320a668-20d3-4dfd-bb76-7a1a421c3649","newPassword":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPasswordConfirm":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb"}, requestBody.newPasswordConfirm) +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG com.networknt.schema.TypeValidator debug - validate( "4320a668-20d3-4dfd-bb76-7a1a421c3649", {"password":"4320a668-20d3-4dfd-bb76-7a1a421c3649","newPassword":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPasswordConfirm":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb"}, requestBody.password) +16:40:52.316 [XNIO-1 task-1] SZkFaqG8QO-TXiwDF23bTw DEBUG com.networknt.schema.TypeValidator debug - validate( "ed0443ae-0767-4245-9dc1-b45c1eb83ccb", {"password":"4320a668-20d3-4dfd-bb76-7a1a421c3649","newPassword":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPasswordConfirm":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb"}, requestBody.newPassword) +16:40:52.330 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:2a41e466-51ee-405b-a4ca-69259c21bf3c +16:40:52.333 [XNIO-1 task-1] Tupg1LQpQi2PJTzDdphV4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.333 [XNIO-1 task-1] Tupg1LQpQi2PJTzDdphV4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.333 [XNIO-1 task-1] Tupg1LQpQi2PJTzDdphV4w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.333 [XNIO-1 task-1] Tupg1LQpQi2PJTzDdphV4w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.337 [XNIO-1 task-1] rit9kq1yR-a4HXRQEQ4VMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1337dfe +16:40:52.337 [XNIO-1 task-1] rit9kq1yR-a4HXRQEQ4VMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.337 [XNIO-1 task-1] rit9kq1yR-a4HXRQEQ4VMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.337 [XNIO-1 task-1] rit9kq1yR-a4HXRQEQ4VMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b1337dfe +16:40:52.344 [XNIO-1 task-1] W98npBpmTi-Dr8sOkdZvkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.344 [XNIO-1 task-1] W98npBpmTi-Dr8sOkdZvkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.344 [XNIO-1 task-1] W98npBpmTi-Dr8sOkdZvkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.344 [XNIO-1 task-1] W98npBpmTi-Dr8sOkdZvkw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.346 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f7a7bd88 +16:40:52.347 [XNIO-1 task-1] RUdIqj-MSpCWKjeJPnOPDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.348 [XNIO-1 task-1] RUdIqj-MSpCWKjeJPnOPDg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.348 [XNIO-1 task-1] RUdIqj-MSpCWKjeJPnOPDg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.353 [XNIO-1 task-1] wBEyAS1aRZSeohTdUbtShQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.353 [XNIO-1 task-1] wBEyAS1aRZSeohTdUbtShQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.353 [XNIO-1 task-1] wBEyAS1aRZSeohTdUbtShQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.355 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae63c2c0 +16:40:52.356 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae63c2c0 +16:40:52.359 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7f2865b5 +16:40:52.359 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.359 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.359 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.359 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7f2865b5 +16:40:52.360 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPassword":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPasswordConfirm":"a5229dc5-e63d-42b0-a193-5486a8fb5053"}, {"password":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPassword":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPasswordConfirm":"a5229dc5-e63d-42b0-a193-5486a8fb5053"}, requestBody) +16:40:52.360 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPassword":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPasswordConfirm":"a5229dc5-e63d-42b0-a193-5486a8fb5053"}, {"password":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPassword":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPasswordConfirm":"a5229dc5-e63d-42b0-a193-5486a8fb5053"}, requestBody) +16:40:52.360 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG com.networknt.schema.FormatValidator debug - validate( "a5229dc5-e63d-42b0-a193-5486a8fb5053", {"password":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPassword":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPasswordConfirm":"a5229dc5-e63d-42b0-a193-5486a8fb5053"}, requestBody.newPasswordConfirm) +16:40:52.360 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG com.networknt.schema.FormatValidator debug - validate( "ed0443ae-0767-4245-9dc1-b45c1eb83ccb", {"password":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPassword":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPasswordConfirm":"a5229dc5-e63d-42b0-a193-5486a8fb5053"}, requestBody.password) +16:40:52.360 [XNIO-1 task-1] eCdMTCOcSNaTsHPQJXvCQg DEBUG com.networknt.schema.FormatValidator debug - validate( "a5229dc5-e63d-42b0-a193-5486a8fb5053", {"password":"ed0443ae-0767-4245-9dc1-b45c1eb83ccb","newPassword":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPasswordConfirm":"a5229dc5-e63d-42b0-a193-5486a8fb5053"}, requestBody.newPassword) +16:40:52.365 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4b72af5b +16:40:52.375 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.375 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.375 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.376 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, requestBody) +16:40:52.376 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, requestBody) +16:40:52.376 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG com.networknt.schema.TypeValidator debug - validate( "d087fcae-c71e-4449-9a40-4e74123a", {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, requestBody.lastName) +16:40:52.376 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG com.networknt.schema.FormatValidator debug - validate( "37a370b8-94c0-408f-af56-34392c204492", {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, requestBody.password) +16:40:52.376 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, requestBody.userType) +16:40:52.376 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, requestBody) +16:40:52.376 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, {"userId":"6b48cb4c","userType":"admin","firstName":"f9dca844-d4ee-40da-8dd1-c8f12776","lastName":"d087fcae-c71e-4449-9a40-4e74123a","email":"d14d6ce6-72c0-42e1-8859-0989a44ef77f","password":"37a370b8-94c0-408f-af56-34392c204492"}, requestBody) +16:40:52.377 [XNIO-1 task-1] Ed1EdrBaRMWzm6dBf2Ld4g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 37a370b8-94c0-408f-af56-34392c204492 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.380 [XNIO-1 task-1] doBwOGIkQy6dS-gYHsOhEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.380 [XNIO-1 task-1] doBwOGIkQy6dS-gYHsOhEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.380 [XNIO-1 task-1] doBwOGIkQy6dS-gYHsOhEw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.380 [XNIO-1 task-1] doBwOGIkQy6dS-gYHsOhEw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.384 [XNIO-1 task-1] PLmhjvGyS3elkdcCtSViZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.384 [XNIO-1 task-1] PLmhjvGyS3elkdcCtSViZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.384 [XNIO-1 task-1] PLmhjvGyS3elkdcCtSViZg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.385 [XNIO-1 task-1] PLmhjvGyS3elkdcCtSViZg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.388 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7f2865b5 +16:40:52.388 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.388 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.388 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.388 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/7f2865b5 +16:40:52.389 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPassword":"cb93493f-28f7-44c7-9762-feff1343e283","newPasswordConfirm":"cb93493f-28f7-44c7-9762-feff1343e283"}, {"password":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPassword":"cb93493f-28f7-44c7-9762-feff1343e283","newPasswordConfirm":"cb93493f-28f7-44c7-9762-feff1343e283"}, requestBody) +16:40:52.389 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPassword":"cb93493f-28f7-44c7-9762-feff1343e283","newPasswordConfirm":"cb93493f-28f7-44c7-9762-feff1343e283"}, {"password":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPassword":"cb93493f-28f7-44c7-9762-feff1343e283","newPasswordConfirm":"cb93493f-28f7-44c7-9762-feff1343e283"}, requestBody) +16:40:52.389 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG com.networknt.schema.FormatValidator debug - validate( "cb93493f-28f7-44c7-9762-feff1343e283", {"password":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPassword":"cb93493f-28f7-44c7-9762-feff1343e283","newPasswordConfirm":"cb93493f-28f7-44c7-9762-feff1343e283"}, requestBody.newPasswordConfirm) +16:40:52.389 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG com.networknt.schema.FormatValidator debug - validate( "a5229dc5-e63d-42b0-a193-5486a8fb5053", {"password":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPassword":"cb93493f-28f7-44c7-9762-feff1343e283","newPasswordConfirm":"cb93493f-28f7-44c7-9762-feff1343e283"}, requestBody.password) +16:40:52.389 [XNIO-1 task-1] _oUEe4eGQae7Y6AqZqzSfg DEBUG com.networknt.schema.FormatValidator debug - validate( "cb93493f-28f7-44c7-9762-feff1343e283", {"password":"a5229dc5-e63d-42b0-a193-5486a8fb5053","newPassword":"cb93493f-28f7-44c7-9762-feff1343e283","newPasswordConfirm":"cb93493f-28f7-44c7-9762-feff1343e283"}, requestBody.newPassword) +16:40:52.407 [XNIO-1 task-1] cZ1sdaLjScinN1jayuaoSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.407 [XNIO-1 task-1] cZ1sdaLjScinN1jayuaoSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.407 [XNIO-1 task-1] cZ1sdaLjScinN1jayuaoSg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.407 [XNIO-1 task-1] cZ1sdaLjScinN1jayuaoSg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.412 [XNIO-1 task-1] tFcYhPucSc2QxyYFXJzDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f2865b5 +16:40:52.412 [XNIO-1 task-1] tFcYhPucSc2QxyYFXJzDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.412 [XNIO-1 task-1] tFcYhPucSc2QxyYFXJzDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.412 [XNIO-1 task-1] tFcYhPucSc2QxyYFXJzDzw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/7f2865b5 +16:40:52.414 [XNIO-1 task-1] 0ZDM0YR8T4e07Qw-VAhLQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f2865b5, base path is set to: null +16:40:52.414 [XNIO-1 task-1] 0ZDM0YR8T4e07Qw-VAhLQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.414 [XNIO-1 task-1] 0ZDM0YR8T4e07Qw-VAhLQA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.414 [XNIO-1 task-1] 0ZDM0YR8T4e07Qw-VAhLQA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/7f2865b5, base path is set to: null +16:40:52.414 [XNIO-1 task-1] 0ZDM0YR8T4e07Qw-VAhLQA DEBUG com.networknt.schema.TypeValidator debug - validate( "7f2865b5", "7f2865b5", userId) +16:40:52.421 [XNIO-1 task-1] Uob6jhEURpGo4KjrOs4wzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.421 [XNIO-1 task-1] Uob6jhEURpGo4KjrOs4wzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.422 [XNIO-1 task-1] Uob6jhEURpGo4KjrOs4wzQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.422 [XNIO-1 task-1] Uob6jhEURpGo4KjrOs4wzQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.426 [XNIO-1 task-1] WhoQuKppR8S4UXE-qL2DuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.426 [XNIO-1 task-1] WhoQuKppR8S4UXE-qL2DuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.426 [XNIO-1 task-1] WhoQuKppR8S4UXE-qL2DuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.426 [XNIO-1 task-1] WhoQuKppR8S4UXE-qL2DuQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.442 [XNIO-1 task-1] ULNGTE-XQIy4PZ_JdB88KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.442 [XNIO-1 task-1] ULNGTE-XQIy4PZ_JdB88KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.442 [XNIO-1 task-1] ULNGTE-XQIy4PZ_JdB88KQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.442 [XNIO-1 task-1] ULNGTE-XQIy4PZ_JdB88KQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.446 [XNIO-1 task-1] _Y9Y-d9MSi2iYUAOhySICw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.446 [XNIO-1 task-1] _Y9Y-d9MSi2iYUAOhySICw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.446 [XNIO-1 task-1] _Y9Y-d9MSi2iYUAOhySICw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.453 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f7a7bd88 +16:40:52.458 [XNIO-1 task-1] es-nGLooT3y5nvLkm2pUuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69395173 +16:40:52.458 [XNIO-1 task-1] es-nGLooT3y5nvLkm2pUuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.458 [XNIO-1 task-1] es-nGLooT3y5nvLkm2pUuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.458 [XNIO-1 task-1] es-nGLooT3y5nvLkm2pUuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69395173 +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, requestBody) +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, requestBody) +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG com.networknt.schema.TypeValidator debug - validate( "dbd4e40d-7712-45fa-a65a-433e7c56", {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, requestBody.lastName) +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG com.networknt.schema.FormatValidator debug - validate( "c946e0ab-c724-4035-8f4a-bb0e31d59763", {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, requestBody.password) +16:40:52.464 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, requestBody.userType) +16:40:52.465 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, requestBody) +16:40:52.465 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, {"userId":"4f4a31fb","userType":"admin","firstName":"93ed58a8-3607-41fe-9350-85a8fd69","lastName":"dbd4e40d-7712-45fa-a65a-433e7c56","email":"33c726f6-9258-4097-854c-20457d702999","password":"c946e0ab-c724-4035-8f4a-bb0e31d59763"}, requestBody) +16:40:52.466 [XNIO-1 task-1] ItmvXGmbTpaweGEtzHomQg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password c946e0ab-c724-4035-8f4a-bb0e31d59763 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.468 [XNIO-1 task-1] iZKWQopMReaqRmT8H5fIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69395173 +16:40:52.468 [XNIO-1 task-1] iZKWQopMReaqRmT8H5fIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.468 [XNIO-1 task-1] iZKWQopMReaqRmT8H5fIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.468 [XNIO-1 task-1] iZKWQopMReaqRmT8H5fIpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/69395173 +16:40:52.472 [hz._hzInstance_1_dev.partition-operation.thread-14] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:ae63c2c0 +16:40:52.473 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.473 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.473 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.473 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, requestBody) +16:40:52.473 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, requestBody) +16:40:52.474 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "194a7e6d-5608-4572-8b4b-683bf014", {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, requestBody.lastName) +16:40:52.474 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG com.networknt.schema.FormatValidator debug - validate( "3a8e2b03-7781-436b-9c3b-7d0fa263860a", {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, requestBody.password) +16:40:52.474 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, requestBody.userType) +16:40:52.474 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, requestBody) +16:40:52.474 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, {"userId":"1900268b","userType":"admin","firstName":"e82a5308-7012-4e5e-a4aa-0c4217a1","lastName":"194a7e6d-5608-4572-8b4b-683bf014","email":"cb778032-af3e-44b8-aefd-ff9382f1d6f3","password":"3a8e2b03-7781-436b-9c3b-7d0fa263860a"}, requestBody) +16:40:52.475 [XNIO-1 task-1] 6okc48SsQX-CmCUZ481ZkQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 3a8e2b03-7781-436b-9c3b-7d0fa263860a or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.478 [XNIO-1 task-1] wGliK6XJTbGwDH48e23FiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.478 [XNIO-1 task-1] wGliK6XJTbGwDH48e23FiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.478 [XNIO-1 task-1] wGliK6XJTbGwDH48e23FiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.493 [XNIO-1 task-1] pXnrnxBVTu-aSvl_wIE-sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20670d4 +16:40:52.493 [XNIO-1 task-1] pXnrnxBVTu-aSvl_wIE-sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.494 [XNIO-1 task-1] pXnrnxBVTu-aSvl_wIE-sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.494 [XNIO-1 task-1] pXnrnxBVTu-aSvl_wIE-sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d20670d4 +16:40:52.500 [XNIO-1 task-1] POMaJ3ytQc2riBszpNbiyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.500 [XNIO-1 task-1] POMaJ3ytQc2riBszpNbiyg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.500 [XNIO-1 task-1] POMaJ3ytQc2riBszpNbiyg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.511 [XNIO-1 task-1] 4vuP3N5JTVmWnfTV_xnopA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.511 [XNIO-1 task-1] 4vuP3N5JTVmWnfTV_xnopA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.511 [XNIO-1 task-1] 4vuP3N5JTVmWnfTV_xnopA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.511 [XNIO-1 task-1] 4vuP3N5JTVmWnfTV_xnopA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.516 [XNIO-1 task-1] RaV530aDSdCcIlA9m4iFnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a25024d7, base path is set to: null +16:40:52.516 [XNIO-1 task-1] RaV530aDSdCcIlA9m4iFnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.516 [XNIO-1 task-1] RaV530aDSdCcIlA9m4iFnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.516 [XNIO-1 task-1] RaV530aDSdCcIlA9m4iFnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a25024d7, base path is set to: null +16:40:52.516 [XNIO-1 task-1] RaV530aDSdCcIlA9m4iFnA DEBUG com.networknt.schema.TypeValidator debug - validate( "a25024d7", "a25024d7", userId) +16:40:52.523 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, requestBody) +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "c27cc29c-56d5-448a-adf9-6c218e9b", {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, requestBody.firstName) +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "4e7c1ba0-fff4-43da-8067-ad4b6c2692ea", {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, requestBody.password) +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, requestBody) +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, requestBody.userType) +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "99205179", {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, requestBody.userId) +16:40:52.524 [XNIO-1 task-1] ltm7Ai1cQjq20hhh0eVA2g DEBUG com.networknt.schema.TypeValidator debug - validate( "8f75e73f-9f10-43a5-9843-836500da65c1", {"userId":"99205179","userType":"admin","firstName":"c27cc29c-56d5-448a-adf9-6c218e9b","lastName":"1d768349-998b-493d-9108-96803db7","email":"8f75e73f-9f10-43a5-9843-836500da65c1","password":"4e7c1ba0-fff4-43da-8067-ad4b6c2692ea"}, requestBody.email) +16:40:52.528 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.528 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.528 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.528 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, requestBody) +16:40:52.528 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, requestBody) +16:40:52.528 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG com.networknt.schema.TypeValidator debug - validate( "366a153e-6e32-4849-894a-2eb012cb", {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, requestBody.lastName) +16:40:52.528 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG com.networknt.schema.FormatValidator debug - validate( "a936be43-a12e-4522-8d97-0bd354abe411", {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, requestBody.password) +16:40:52.529 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, requestBody.userType) +16:40:52.529 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, requestBody) +16:40:52.529 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, {"userId":"b204267f","userType":"admin","firstName":"8b1b0b80-0c64-4ed6-912b-ee4962ac","lastName":"366a153e-6e32-4849-894a-2eb012cb","email":"1500c1aa-0bff-4877-8ede-1426b5fc515a","password":"a936be43-a12e-4522-8d97-0bd354abe411"}, requestBody) +16:40:52.530 [XNIO-1 task-1] Jozt7O09TSmMBxIJPfk8jg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password a936be43-a12e-4522-8d97-0bd354abe411 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, requestBody) +16:40:52.534 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:3c8781b3 +16:40:52.534 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:3c8781b3 +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG com.networknt.schema.TypeValidator debug - validate( "80fd2e1e-17e3-41ca-850a-2a405663f4f3", {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, requestBody.password) +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, requestBody) +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, requestBody.userType) +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG com.networknt.schema.TypeValidator debug - validate( "007c9e6e", {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, requestBody.userId) +16:40:52.534 [XNIO-1 task-1] z-9zVfkSQUi1IH-ki02EZA DEBUG com.networknt.schema.TypeValidator debug - validate( "c7e7242f-2b13-4860-a53c-b12f94ec0969", {"userId":"007c9e6e","userType":"admin","firstName":"60ebd049-6a55-47c0-8109-79b86f28","lastName":"23c2a602-1256-4331-bdfa-ffdc3888","email":"c7e7242f-2b13-4860-a53c-b12f94ec0969","password":"80fd2e1e-17e3-41ca-850a-2a405663f4f3"}, requestBody.email) +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, requestBody) +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, requestBody) +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG com.networknt.schema.TypeValidator debug - validate( "65e01e34-d961-4bc1-88a1-e8e279b5", {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, requestBody.lastName) +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG com.networknt.schema.FormatValidator debug - validate( "2e93f7a2-7363-43c2-b057-1c910d733f70", {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, requestBody.password) +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, requestBody.userType) +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, requestBody) +16:40:52.538 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, {"userId":"698d1a35","userType":"admin","firstName":"d6c6b189-da61-4bf4-bd1f-ff0fc399","lastName":"65e01e34-d961-4bc1-88a1-e8e279b5","email":"a32a9a3d-3d8e-4f44-a87b-a02ccae65b28","password":"2e93f7a2-7363-43c2-b057-1c910d733f70"}, requestBody) +16:40:52.539 [XNIO-1 task-1] 1amogrZaTe62HmIie_P34A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 2e93f7a2-7363-43c2-b057-1c910d733f70 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.541 [XNIO-1 task-1] E6wy5BQWTPiZvRP6vvmmiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.542 [XNIO-1 task-1] E6wy5BQWTPiZvRP6vvmmiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.542 [XNIO-1 task-1] E6wy5BQWTPiZvRP6vvmmiA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.542 [XNIO-1 task-1] E6wy5BQWTPiZvRP6vvmmiA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.548 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.548 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.548 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.549 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, requestBody) +16:40:52.549 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( "d0a0fa11-20ef-4f77-abc2-b0a8865d", {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, requestBody.firstName) +16:40:52.549 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( "7ea0da66-fb0a-4432-ae52-1ec7464e7538", {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, requestBody.password) +16:40:52.549 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, requestBody) +16:40:52.549 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, requestBody.userType) +16:40:52.549 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( "207938f5", {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, requestBody.userId) +16:40:52.549 [XNIO-1 task-1] CLnuq4kbSfeJ7s02kMbZ6g DEBUG com.networknt.schema.TypeValidator debug - validate( "4e5fff44-5bcf-44a1-801b-458300581c27", {"userId":"207938f5","userType":"admin","firstName":"d0a0fa11-20ef-4f77-abc2-b0a8865d","lastName":"48ddd3b8-2cd3-4dd6-a9fa-7ead4da4","email":"4e5fff44-5bcf-44a1-801b-458300581c27","password":"7ea0da66-fb0a-4432-ae52-1ec7464e7538"}, requestBody.email) +16:40:52.552 [XNIO-1 task-1] baoIIfbZRgaeNRsmL-EbZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.553 [XNIO-1 task-1] baoIIfbZRgaeNRsmL-EbZA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.553 [XNIO-1 task-1] baoIIfbZRgaeNRsmL-EbZA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.563 [XNIO-1 task-1] kZYhiR2qRrOPRV1XsocVBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9f6cff32, base path is set to: null +16:40:52.564 [XNIO-1 task-1] kZYhiR2qRrOPRV1XsocVBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.564 [XNIO-1 task-1] kZYhiR2qRrOPRV1XsocVBQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.564 [XNIO-1 task-1] kZYhiR2qRrOPRV1XsocVBQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9f6cff32, base path is set to: null +16:40:52.564 [XNIO-1 task-1] kZYhiR2qRrOPRV1XsocVBQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9f6cff32", "9f6cff32", userId) +16:40:52.573 [XNIO-1 task-1] L6aIaD5gTnCNhdKlPpsIeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.573 [XNIO-1 task-1] L6aIaD5gTnCNhdKlPpsIeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.574 [XNIO-1 task-1] L6aIaD5gTnCNhdKlPpsIeA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.574 [XNIO-1 task-1] L6aIaD5gTnCNhdKlPpsIeA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.577 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.577 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.577 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.578 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, requestBody) +16:40:52.578 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG com.networknt.schema.TypeValidator debug - validate( "2f5df174-25c4-4861-8996-642b3e17", {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, requestBody.firstName) +16:40:52.578 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG com.networknt.schema.TypeValidator debug - validate( "a38a78ae-1326-411f-9172-d28d99f13c2b", {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, requestBody.password) +16:40:52.578 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, requestBody) +16:40:52.578 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, requestBody.userType) +16:40:52.578 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG com.networknt.schema.TypeValidator debug - validate( "02fef35b", {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, requestBody.userId) +16:40:52.578 [XNIO-1 task-1] fxDc-10ARyWvfHcP7TQRmA DEBUG com.networknt.schema.TypeValidator debug - validate( "3c3c1734-72e0-4512-994a-9d5b0da031ff", {"userId":"02fef35b","userType":"admin","firstName":"2f5df174-25c4-4861-8996-642b3e17","lastName":"283665e7-3c0f-4208-8e4c-f23de8d8","email":"3c3c1734-72e0-4512-994a-9d5b0da031ff","password":"a38a78ae-1326-411f-9172-d28d99f13c2b"}, requestBody.email) +16:40:52.580 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.581 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.581 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.582 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, requestBody) +16:40:52.582 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, requestBody) +16:40:52.583 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "43d74ca8-e060-4641-a996-f9dd55e0", {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, requestBody.lastName) +16:40:52.583 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "10412030-e05e-47e9-bfec-3e3c18b0ddcb", {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, requestBody.password) +16:40:52.583 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, requestBody.userType) +16:40:52.583 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, requestBody) +16:40:52.583 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, {"userId":"e0fd17a8","userType":"admin","firstName":"c9f9255b-5836-482c-8541-5c393880","lastName":"43d74ca8-e060-4641-a996-f9dd55e0","email":"28a9be62-cf1a-482a-b796-d10d92f8a0ba","password":"10412030-e05e-47e9-bfec-3e3c18b0ddcb"}, requestBody) +16:40:52.584 [XNIO-1 task-1] XAOwEuEpRSKq8KPF92zpYQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 10412030-e05e-47e9-bfec-3e3c18b0ddcb or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.587 [XNIO-1 task-1] pEn9PechQMqG91hPvPvg6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.587 [XNIO-1 task-1] pEn9PechQMqG91hPvPvg6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.587 [XNIO-1 task-1] pEn9PechQMqG91hPvPvg6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.601 [XNIO-1 task-1] dSRrp28DR9eY7p9hxM_Ebw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.601 [XNIO-1 task-1] dSRrp28DR9eY7p9hxM_Ebw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.602 [XNIO-1 task-1] dSRrp28DR9eY7p9hxM_Ebw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.610 [XNIO-1 task-1] CciO-BrpSjWwtz3LVRe2bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.610 [XNIO-1 task-1] CciO-BrpSjWwtz3LVRe2bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.610 [XNIO-1 task-1] CciO-BrpSjWwtz3LVRe2bw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.614 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:3c8781b3 +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/750e7887 +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/750e7887 +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"2270ea17-c62e-41d3-b173-e0c6752d30d7","newPassword":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPasswordConfirm":"572d1904-b18b-49e7-b097-d56250a4ab5b"}, {"password":"2270ea17-c62e-41d3-b173-e0c6752d30d7","newPassword":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPasswordConfirm":"572d1904-b18b-49e7-b097-d56250a4ab5b"}, requestBody) +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"2270ea17-c62e-41d3-b173-e0c6752d30d7","newPassword":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPasswordConfirm":"572d1904-b18b-49e7-b097-d56250a4ab5b"}, {"password":"2270ea17-c62e-41d3-b173-e0c6752d30d7","newPassword":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPasswordConfirm":"572d1904-b18b-49e7-b097-d56250a4ab5b"}, requestBody) +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "572d1904-b18b-49e7-b097-d56250a4ab5b", {"password":"2270ea17-c62e-41d3-b173-e0c6752d30d7","newPassword":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPasswordConfirm":"572d1904-b18b-49e7-b097-d56250a4ab5b"}, requestBody.newPasswordConfirm) +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "2270ea17-c62e-41d3-b173-e0c6752d30d7", {"password":"2270ea17-c62e-41d3-b173-e0c6752d30d7","newPassword":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPasswordConfirm":"572d1904-b18b-49e7-b097-d56250a4ab5b"}, requestBody.password) +16:40:52.616 [XNIO-1 task-1] wXdKc472TDi84dgOr1BnDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "572d1904-b18b-49e7-b097-d56250a4ab5b", {"password":"2270ea17-c62e-41d3-b173-e0c6752d30d7","newPassword":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPasswordConfirm":"572d1904-b18b-49e7-b097-d56250a4ab5b"}, requestBody.newPassword) +16:40:52.632 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/750e7887 +16:40:52.632 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.632 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.632 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.632 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/750e7887 +16:40:52.633 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPassword":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPasswordConfirm":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22"}, {"password":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPassword":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPasswordConfirm":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22"}, requestBody) +16:40:52.633 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPassword":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPasswordConfirm":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22"}, {"password":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPassword":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPasswordConfirm":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22"}, requestBody) +16:40:52.633 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG com.networknt.schema.FormatValidator debug - validate( "c97dc6a0-9bfb-4a33-97ad-3b307e69fa22", {"password":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPassword":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPasswordConfirm":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22"}, requestBody.newPasswordConfirm) +16:40:52.633 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG com.networknt.schema.FormatValidator debug - validate( "572d1904-b18b-49e7-b097-d56250a4ab5b", {"password":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPassword":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPasswordConfirm":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22"}, requestBody.password) +16:40:52.633 [XNIO-1 task-1] jEH1YU_jTfuN3Z9Y2neMhg DEBUG com.networknt.schema.FormatValidator debug - validate( "c97dc6a0-9bfb-4a33-97ad-3b307e69fa22", {"password":"572d1904-b18b-49e7-b097-d56250a4ab5b","newPassword":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPasswordConfirm":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22"}, requestBody.newPassword) +16:40:52.650 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.650 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.650 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.650 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, requestBody) +16:40:52.650 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG com.networknt.schema.TypeValidator debug - validate( "8764fb77-212a-4f7f-b981-a727d85a", {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, requestBody.firstName) +16:40:52.650 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG com.networknt.schema.TypeValidator debug - validate( "60ecd710-aba7-4907-9378-2a5b2a142e56", {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, requestBody.password) +16:40:52.651 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, requestBody) +16:40:52.651 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, requestBody.userType) +16:40:52.651 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG com.networknt.schema.TypeValidator debug - validate( "ff62f4c4", {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, requestBody.userId) +16:40:52.651 [XNIO-1 task-1] 82605U3aRR69Ts9ZncMpxw DEBUG com.networknt.schema.TypeValidator debug - validate( "36846f07-6a47-4a19-94a0-baba1733532c", {"userId":"ff62f4c4","userType":"admin","firstName":"8764fb77-212a-4f7f-b981-a727d85a","lastName":"25a70ac6-5672-4fb1-ac94-2abe6441","email":"36846f07-6a47-4a19-94a0-baba1733532c","password":"60ecd710-aba7-4907-9378-2a5b2a142e56"}, requestBody.email) +16:40:52.653 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:9ff90762 +16:40:52.654 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/750e7887, base path is set to: null +16:40:52.654 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/750e7887 +16:40:52.654 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.654 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.655 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.655 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/750e7887 +16:40:52.655 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPassword":"67f5946f-4220-4321-a79b-f1f0832afe60","newPasswordConfirm":"67f5946f-4220-4321-a79b-f1f0832afe60"}, {"password":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPassword":"67f5946f-4220-4321-a79b-f1f0832afe60","newPasswordConfirm":"67f5946f-4220-4321-a79b-f1f0832afe60"}, requestBody) +16:40:52.655 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPassword":"67f5946f-4220-4321-a79b-f1f0832afe60","newPasswordConfirm":"67f5946f-4220-4321-a79b-f1f0832afe60"}, {"password":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPassword":"67f5946f-4220-4321-a79b-f1f0832afe60","newPasswordConfirm":"67f5946f-4220-4321-a79b-f1f0832afe60"}, requestBody) +16:40:52.655 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG com.networknt.schema.FormatValidator debug - validate( "67f5946f-4220-4321-a79b-f1f0832afe60", {"password":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPassword":"67f5946f-4220-4321-a79b-f1f0832afe60","newPasswordConfirm":"67f5946f-4220-4321-a79b-f1f0832afe60"}, requestBody.newPasswordConfirm) +16:40:52.655 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG com.networknt.schema.FormatValidator debug - validate( "c97dc6a0-9bfb-4a33-97ad-3b307e69fa22", {"password":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPassword":"67f5946f-4220-4321-a79b-f1f0832afe60","newPasswordConfirm":"67f5946f-4220-4321-a79b-f1f0832afe60"}, requestBody.password) +16:40:52.655 [XNIO-1 task-1] 28HanrAARwOE0_p26ljTWg DEBUG com.networknt.schema.FormatValidator debug - validate( "67f5946f-4220-4321-a79b-f1f0832afe60", {"password":"c97dc6a0-9bfb-4a33-97ad-3b307e69fa22","newPassword":"67f5946f-4220-4321-a79b-f1f0832afe60","newPasswordConfirm":"67f5946f-4220-4321-a79b-f1f0832afe60"}, requestBody.newPassword) +16:40:52.675 [XNIO-1 task-1] AOqLUZvARYa76NQCpDy4UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/750e7887 +16:40:52.675 [XNIO-1 task-1] AOqLUZvARYa76NQCpDy4UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.675 [XNIO-1 task-1] AOqLUZvARYa76NQCpDy4UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.675 [XNIO-1 task-1] AOqLUZvARYa76NQCpDy4UQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/750e7887 +16:40:52.680 [XNIO-1 task-1] IOTWY7aNSW-nBYw2nA_zqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.680 [XNIO-1 task-1] IOTWY7aNSW-nBYw2nA_zqw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.681 [XNIO-1 task-1] IOTWY7aNSW-nBYw2nA_zqw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.681 [XNIO-1 task-1] IOTWY7aNSW-nBYw2nA_zqw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.685 [XNIO-1 task-1] HA3THN1QROOGYULRq6Gyfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.686 [XNIO-1 task-1] HA3THN1QROOGYULRq6Gyfg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.686 [XNIO-1 task-1] HA3THN1QROOGYULRq6Gyfg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.686 [XNIO-1 task-1] HA3THN1QROOGYULRq6Gyfg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.694 [XNIO-1 task-1] 6QaCgSetR421B4c6N0pWIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.694 [XNIO-1 task-1] 6QaCgSetR421B4c6N0pWIA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.694 [XNIO-1 task-1] 6QaCgSetR421B4c6N0pWIA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.694 [XNIO-1 task-1] 6QaCgSetR421B4c6N0pWIA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.699 [XNIO-1 task-1] j_PimGh2Q2qGCj5cQ4Vdag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.699 [XNIO-1 task-1] j_PimGh2Q2qGCj5cQ4Vdag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.699 [XNIO-1 task-1] j_PimGh2Q2qGCj5cQ4Vdag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.699 [XNIO-1 task-1] j_PimGh2Q2qGCj5cQ4Vdag DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:52.700 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f7a5c514-d79b-4896-be73-b67ea2d7126f +16:40:52.701 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:f7a5c514-d79b-4896-be73-b67ea2d7126f +16:40:52.704 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.704 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.704 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.706 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, requestBody) +16:40:52.706 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG com.networknt.schema.TypeValidator debug - validate( "a7ef260e-68bc-4c31-af22-7523bbb7", {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, requestBody.firstName) +16:40:52.706 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG com.networknt.schema.TypeValidator debug - validate( "e96349f2-b521-4557-a6be-fc2c7224b56c", {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, requestBody.password) +16:40:52.706 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, requestBody) +16:40:52.707 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, requestBody.userType) +16:40:52.707 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG com.networknt.schema.TypeValidator debug - validate( "2de3af86", {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, requestBody.userId) +16:40:52.707 [XNIO-1 task-1] bFLJEhRkQ3uGq74TSm5GUA DEBUG com.networknt.schema.TypeValidator debug - validate( "f51ed931-b72e-4858-b47c-6c8d2d2ebe58", {"userId":"2de3af86","userType":"admin","firstName":"a7ef260e-68bc-4c31-af22-7523bbb7","lastName":"e8808e25-7851-41ff-90a1-e0c1d377","email":"f51ed931-b72e-4858-b47c-6c8d2d2ebe58","password":"e96349f2-b521-4557-a6be-fc2c7224b56c"}, requestBody.email) +16:40:52.730 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.730 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.730 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.730 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, requestBody) +16:40:52.731 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, requestBody) +16:40:52.731 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG com.networknt.schema.TypeValidator debug - validate( "08a0a51d-b969-4dbe-a704-37a2b9d3", {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, requestBody.lastName) +16:40:52.731 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG com.networknt.schema.FormatValidator debug - validate( "7404d3e3-ab88-443e-9259-a7e941b46135", {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, requestBody.password) +16:40:52.731 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, requestBody.userType) +16:40:52.731 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, requestBody) +16:40:52.731 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, {"userId":"9ab55540","userType":"admin","firstName":"d1bf0e3a-9b4f-4fe2-abae-64a16390","lastName":"08a0a51d-b969-4dbe-a704-37a2b9d3","email":"610e20f2-8866-41ff-8bb5-8cec77dc1a30","password":"7404d3e3-ab88-443e-9259-a7e941b46135"}, requestBody) +16:40:52.735 [XNIO-1 task-1] TEbxIAu2R_aXVROuK1unhw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 7404d3e3-ab88-443e-9259-a7e941b46135 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:52.737 [XNIO-1 task-1] rQqPJsJvS1eFRydOcY8rHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.738 [XNIO-1 task-1] rQqPJsJvS1eFRydOcY8rHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.738 [XNIO-1 task-1] rQqPJsJvS1eFRydOcY8rHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.738 [XNIO-1 task-1] rQqPJsJvS1eFRydOcY8rHg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:52.744 [XNIO-1 task-1] nEnT_NgxSLKYuvucdRe0Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.744 [XNIO-1 task-1] nEnT_NgxSLKYuvucdRe0Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.744 [XNIO-1 task-1] nEnT_NgxSLKYuvucdRe0Pg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.759 [XNIO-1 task-1] pSKLndQ5TkKjN3Tw5mYLUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecf43c1d +16:40:52.760 [XNIO-1 task-1] pSKLndQ5TkKjN3Tw5mYLUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.760 [XNIO-1 task-1] pSKLndQ5TkKjN3Tw5mYLUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.760 [XNIO-1 task-1] pSKLndQ5TkKjN3Tw5mYLUA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecf43c1d +16:40:52.764 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ecf43c1d, base path is set to: null +16:40:52.764 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.764 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.764 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:52.764 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/ecf43c1d, base path is set to: null +16:40:52.764 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "ecf43c1d", "ecf43c1d", userId) +16:40:52.765 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"aebcd5ce-54e0-4de1-bf54-da3f2e11b019","newPassword":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPasswordConfirm":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a"}, {"password":"aebcd5ce-54e0-4de1-bf54-da3f2e11b019","newPassword":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPasswordConfirm":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a"}, requestBody) +16:40:52.765 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ff372a6-61ef-44c9-9c9c-9739d5197f9a", {"password":"aebcd5ce-54e0-4de1-bf54-da3f2e11b019","newPassword":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPasswordConfirm":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a"}, requestBody.newPasswordConfirm) +16:40:52.765 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aebcd5ce-54e0-4de1-bf54-da3f2e11b019", {"password":"aebcd5ce-54e0-4de1-bf54-da3f2e11b019","newPassword":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPasswordConfirm":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a"}, requestBody.password) +16:40:52.765 [XNIO-1 task-1] 1gopKubJRzW8YXyhdtn3dQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8ff372a6-61ef-44c9-9c9c-9739d5197f9a", {"password":"aebcd5ce-54e0-4de1-bf54-da3f2e11b019","newPassword":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPasswordConfirm":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a"}, requestBody.newPassword) +16:40:52.787 [XNIO-1 task-1] NUMeIKs4SHuZAH7Aymvu7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.787 [XNIO-1 task-1] NUMeIKs4SHuZAH7Aymvu7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.787 [XNIO-1 task-1] NUMeIKs4SHuZAH7Aymvu7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.794 [XNIO-1 task-1] qppVWMi_TOun3qo0m0MKDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.794 [XNIO-1 task-1] qppVWMi_TOun3qo0m0MKDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.794 [XNIO-1 task-1] qppVWMi_TOun3qo0m0MKDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.798 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:b3d68239 +16:40:52.801 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:065f59bf-14da-42d8-8342-def4a6fa42fb +16:40:52.802 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:065f59bf-14da-42d8-8342-def4a6fa42fb +16:40:52.807 [XNIO-1 task-1] zd17eIjOQh2IXgF6ZQtzKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.807 [XNIO-1 task-1] zd17eIjOQh2IXgF6ZQtzKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.807 [XNIO-1 task-1] zd17eIjOQh2IXgF6ZQtzKw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.812 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7d42185e +16:40:52.815 [XNIO-1 task-1] LDtzEWLMThq8JC1SN2acag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.815 [XNIO-1 task-1] LDtzEWLMThq8JC1SN2acag DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.815 [XNIO-1 task-1] LDtzEWLMThq8JC1SN2acag DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.819 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:4b72af5b +16:40:52.821 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ee21633 +16:40:52.822 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ee21633 +16:40:52.828 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ee21633 +16:40:52.829 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.829 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.829 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.829 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/0ee21633 +16:40:52.829 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"06838da1-c3f6-4ffc-bc00-c05ea50e675b","newPassword":"2032fc1c-e345-47ab-b908-f09a49b2d444","newPasswordConfirm":"2032fc1c-e345-47ab-b908-f09a49b2d444"}, {"password":"06838da1-c3f6-4ffc-bc00-c05ea50e675b","newPassword":"2032fc1c-e345-47ab-b908-f09a49b2d444","newPasswordConfirm":"2032fc1c-e345-47ab-b908-f09a49b2d444"}, requestBody) +16:40:52.829 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"06838da1-c3f6-4ffc-bc00-c05ea50e675b","newPassword":"2032fc1c-e345-47ab-b908-f09a49b2d444","newPasswordConfirm":"2032fc1c-e345-47ab-b908-f09a49b2d444"}, {"password":"06838da1-c3f6-4ffc-bc00-c05ea50e675b","newPassword":"2032fc1c-e345-47ab-b908-f09a49b2d444","newPasswordConfirm":"2032fc1c-e345-47ab-b908-f09a49b2d444"}, requestBody) +16:40:52.830 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG com.networknt.schema.FormatValidator debug - validate( "2032fc1c-e345-47ab-b908-f09a49b2d444", {"password":"06838da1-c3f6-4ffc-bc00-c05ea50e675b","newPassword":"2032fc1c-e345-47ab-b908-f09a49b2d444","newPasswordConfirm":"2032fc1c-e345-47ab-b908-f09a49b2d444"}, requestBody.newPasswordConfirm) +16:40:52.830 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG com.networknt.schema.FormatValidator debug - validate( "06838da1-c3f6-4ffc-bc00-c05ea50e675b", {"password":"06838da1-c3f6-4ffc-bc00-c05ea50e675b","newPassword":"2032fc1c-e345-47ab-b908-f09a49b2d444","newPasswordConfirm":"2032fc1c-e345-47ab-b908-f09a49b2d444"}, requestBody.password) +16:40:52.830 [XNIO-1 task-1] W_qOBFJKSqico-yaLckPBA DEBUG com.networknt.schema.FormatValidator debug - validate( "2032fc1c-e345-47ab-b908-f09a49b2d444", {"password":"06838da1-c3f6-4ffc-bc00-c05ea50e675b","newPassword":"2032fc1c-e345-47ab-b908-f09a49b2d444","newPasswordConfirm":"2032fc1c-e345-47ab-b908-f09a49b2d444"}, requestBody.newPassword) +16:40:52.839 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:0ee21633 +16:40:52.858 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ecf43c1d +16:40:52.858 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.858 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.858 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:52.858 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/ecf43c1d +16:40:52.859 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPassword":"dc33bd13-326f-4b85-845c-fb9eceb034bd","newPasswordConfirm":"dc33bd13-326f-4b85-845c-fb9eceb034bd"}, {"password":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPassword":"dc33bd13-326f-4b85-845c-fb9eceb034bd","newPasswordConfirm":"dc33bd13-326f-4b85-845c-fb9eceb034bd"}, requestBody) +16:40:52.859 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPassword":"dc33bd13-326f-4b85-845c-fb9eceb034bd","newPasswordConfirm":"dc33bd13-326f-4b85-845c-fb9eceb034bd"}, {"password":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPassword":"dc33bd13-326f-4b85-845c-fb9eceb034bd","newPasswordConfirm":"dc33bd13-326f-4b85-845c-fb9eceb034bd"}, requestBody) +16:40:52.859 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "dc33bd13-326f-4b85-845c-fb9eceb034bd", {"password":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPassword":"dc33bd13-326f-4b85-845c-fb9eceb034bd","newPasswordConfirm":"dc33bd13-326f-4b85-845c-fb9eceb034bd"}, requestBody.newPasswordConfirm) +16:40:52.859 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "8ff372a6-61ef-44c9-9c9c-9739d5197f9a", {"password":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPassword":"dc33bd13-326f-4b85-845c-fb9eceb034bd","newPasswordConfirm":"dc33bd13-326f-4b85-845c-fb9eceb034bd"}, requestBody.password) +16:40:52.859 [XNIO-1 task-1] 0BhMaHOFRUm_VC6D3PHEEQ DEBUG com.networknt.schema.FormatValidator debug - validate( "dc33bd13-326f-4b85-845c-fb9eceb034bd", {"password":"8ff372a6-61ef-44c9-9c9c-9739d5197f9a","newPassword":"dc33bd13-326f-4b85-845c-fb9eceb034bd","newPasswordConfirm":"dc33bd13-326f-4b85-845c-fb9eceb034bd"}, requestBody.newPassword) +16:40:52.880 [XNIO-1 task-1] 2oQhoLdcTMq-G6V_vy47pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecf43c1d +16:40:52.880 [XNIO-1 task-1] 2oQhoLdcTMq-G6V_vy47pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.880 [XNIO-1 task-1] 2oQhoLdcTMq-G6V_vy47pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.880 [XNIO-1 task-1] 2oQhoLdcTMq-G6V_vy47pA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/ecf43c1d +16:40:52.906 [XNIO-1 task-1] fB2_MCoDRMWzZadbuci6-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1a68db3, base path is set to: null +16:40:52.907 [XNIO-1 task-1] fB2_MCoDRMWzZadbuci6-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.907 [XNIO-1 task-1] fB2_MCoDRMWzZadbuci6-g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.907 [XNIO-1 task-1] fB2_MCoDRMWzZadbuci6-g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1a68db3, base path is set to: null +16:40:52.907 [XNIO-1 task-1] fB2_MCoDRMWzZadbuci6-g DEBUG com.networknt.schema.TypeValidator debug - validate( "c1a68db3", "c1a68db3", userId) +16:40:52.909 [XNIO-1 task-1] EHRHfoXRRtu05FtOF1uKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ee21633 +16:40:52.909 [XNIO-1 task-1] EHRHfoXRRtu05FtOF1uKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.909 [XNIO-1 task-1] EHRHfoXRRtu05FtOF1uKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.910 [XNIO-1 task-1] EHRHfoXRRtu05FtOF1uKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ee21633 +16:40:52.911 [XNIO-1 task-1] d5WUtKmIQWCnakz1z00bmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.911 [XNIO-1 task-1] d5WUtKmIQWCnakz1z00bmg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.912 [XNIO-1 task-1] d5WUtKmIQWCnakz1z00bmg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.978 [XNIO-1 task-1] TUFz_6cnRqCgF7lKfuhbIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1a68db3, base path is set to: null +16:40:52.979 [XNIO-1 task-1] TUFz_6cnRqCgF7lKfuhbIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.979 [XNIO-1 task-1] TUFz_6cnRqCgF7lKfuhbIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.979 [XNIO-1 task-1] TUFz_6cnRqCgF7lKfuhbIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c1a68db3, base path is set to: null +16:40:52.979 [XNIO-1 task-1] TUFz_6cnRqCgF7lKfuhbIg DEBUG com.networknt.schema.TypeValidator debug - validate( "c1a68db3", "c1a68db3", userId) +16:40:52.984 [XNIO-1 task-1] XhAzXUPOSKSDwdQX9VDurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ee21633 +16:40:52.984 [XNIO-1 task-1] XhAzXUPOSKSDwdQX9VDurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:52.984 [XNIO-1 task-1] XhAzXUPOSKSDwdQX9VDurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:52.985 [XNIO-1 task-1] XhAzXUPOSKSDwdQX9VDurA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ee21633 +16:40:52.986 [XNIO-1 task-1] SYmHTZrbSM-m6YhYwGxmZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ee21633, base path is set to: null +16:40:52.987 [XNIO-1 task-1] SYmHTZrbSM-m6YhYwGxmZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.987 [XNIO-1 task-1] SYmHTZrbSM-m6YhYwGxmZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:52.987 [XNIO-1 task-1] SYmHTZrbSM-m6YhYwGxmZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0ee21633, base path is set to: null +16:40:52.987 [XNIO-1 task-1] SYmHTZrbSM-m6YhYwGxmZw DEBUG com.networknt.schema.TypeValidator debug - validate( "0ee21633", "0ee21633", userId) +16:40:52.992 [XNIO-1 task-1] l6ObBR7jSSK98O0QwNxekA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:52.992 [XNIO-1 task-1] l6ObBR7jSSK98O0QwNxekA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:52.992 [XNIO-1 task-1] l6ObBR7jSSK98O0QwNxekA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.002 [XNIO-1 task-1] 72A1TtIRSBiytEH6fJD8xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e252da27, base path is set to: null +16:40:53.002 [XNIO-1 task-1] 72A1TtIRSBiytEH6fJD8xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.003 [XNIO-1 task-1] 72A1TtIRSBiytEH6fJD8xg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.003 [XNIO-1 task-1] 72A1TtIRSBiytEH6fJD8xg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e252da27, base path is set to: null +16:40:53.003 [XNIO-1 task-1] 72A1TtIRSBiytEH6fJD8xg DEBUG com.networknt.schema.TypeValidator debug - validate( "e252da27", "e252da27", userId) +16:40:53.048 [XNIO-1 task-1] 5NuJ6shvQNOct8jRKJ1f2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.048 [XNIO-1 task-1] 5NuJ6shvQNOct8jRKJ1f2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.048 [XNIO-1 task-1] 5NuJ6shvQNOct8jRKJ1f2A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.048 [XNIO-1 task-1] 5NuJ6shvQNOct8jRKJ1f2A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.076 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:3b984a14-af30-41df-bf04-3fa4758cf2c5 +16:40:53.078 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore store - Store:296f7b5a-b210-4824-8bc8-0f1fc37252d0 +16:40:53.081 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.081 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.081 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.081 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, requestBody) +16:40:53.081 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, requestBody) +16:40:53.081 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b297bd21-b037-4ea4-b2dc-2b135057", {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, requestBody.lastName) +16:40:53.082 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f", {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, requestBody.password) +16:40:53.082 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, requestBody.userType) +16:40:53.082 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, requestBody) +16:40:53.082 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, {"userId":"42e7b298","userType":"admin","firstName":"d4921a96-1efc-4e9c-a3a7-e7ba4f8a","lastName":"b297bd21-b037-4ea4-b2dc-2b135057","email":"6d1ada7a-6a1f-4979-bd15-47739901ac47","password":"c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f"}, requestBody) +16:40:53.083 [XNIO-1 task-1] S0q8e6dUQO2-cdeNez3IHQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password c5d47e9b-cb40-4a1c-bf8b-dac0edc7f77f or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:53.086 [XNIO-1 task-1] ft8QUEf3QoyO3Gr4pK3Deg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.087 [XNIO-1 task-1] ft8QUEf3QoyO3Gr4pK3Deg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.087 [XNIO-1 task-1] ft8QUEf3QoyO3Gr4pK3Deg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.089 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:3b984a14-af30-41df-bf04-3fa4758cf2c5 +16:40:53.102 [XNIO-1 task-1] iBGWNvdEQUGLJdA3w-EtpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5b6dc32d +16:40:53.102 [XNIO-1 task-1] iBGWNvdEQUGLJdA3w-EtpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.102 [XNIO-1 task-1] iBGWNvdEQUGLJdA3w-EtpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.102 [XNIO-1 task-1] iBGWNvdEQUGLJdA3w-EtpQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/5b6dc32d +16:40:53.111 [XNIO-1 task-1] hyxXori9SX2b8BZ7jssUhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5b6dc32d, base path is set to: null +16:40:53.111 [XNIO-1 task-1] hyxXori9SX2b8BZ7jssUhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.111 [XNIO-1 task-1] hyxXori9SX2b8BZ7jssUhQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.112 [XNIO-1 task-1] hyxXori9SX2b8BZ7jssUhQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/5b6dc32d, base path is set to: null +16:40:53.112 [XNIO-1 task-1] hyxXori9SX2b8BZ7jssUhQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5b6dc32d", "5b6dc32d", userId) +16:40:53.118 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.118 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.118 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.119 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, requestBody) +16:40:53.119 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG com.networknt.schema.TypeValidator debug - validate( "3f0552c2-7ce6-449d-ba5b-142698ed", {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, requestBody.firstName) +16:40:53.119 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG com.networknt.schema.TypeValidator debug - validate( "8ce18753-5294-4e1f-960b-112f09ae15bf", {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, requestBody.password) +16:40:53.119 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, requestBody) +16:40:53.119 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, requestBody.userType) +16:40:53.119 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG com.networknt.schema.TypeValidator debug - validate( "bd94d203", {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, requestBody.userId) +16:40:53.119 [XNIO-1 task-1] Pl7qmg3ZTWCgqBv5MYa38w DEBUG com.networknt.schema.TypeValidator debug - validate( "f60c2a0b-98c9-41ce-a882-66fd534744b9", {"userId":"bd94d203","userType":"admin","firstName":"3f0552c2-7ce6-449d-ba5b-142698ed","lastName":"39f5a46b-75a4-479b-8c73-95b2f586","email":"f60c2a0b-98c9-41ce-a882-66fd534744b9","password":"8ce18753-5294-4e1f-960b-112f09ae15bf"}, requestBody.email) +16:40:53.125 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.125 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.126 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.127 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, requestBody) +16:40:53.127 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, requestBody) +16:40:53.127 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG com.networknt.schema.TypeValidator debug - validate( "77db470d-a27e-4c1c-a9a4-585010e9", {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, requestBody.lastName) +16:40:53.127 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG com.networknt.schema.FormatValidator debug - validate( "10bb323d-1556-4a8e-a151-28fd7554adac", {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, requestBody.password) +16:40:53.127 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, requestBody.userType) +16:40:53.127 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, requestBody) +16:40:53.127 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, {"userId":"5dccfbaf","userType":"admin","firstName":"2e7246b3-e3a8-4144-9c70-2a222046","lastName":"77db470d-a27e-4c1c-a9a4-585010e9","email":"a75c3d0a-9ae6-4e8b-a0fa-39eff5bda92f","password":"10bb323d-1556-4a8e-a151-28fd7554adac"}, requestBody) +16:40:53.128 [XNIO-1 task-1] HTZLCv_ZRRKEwA0QgfsQyA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 10bb323d-1556-4a8e-a151-28fd7554adac or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:53.132 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.132 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.132 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.133 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, requestBody) +16:40:53.133 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG com.networknt.schema.TypeValidator debug - validate( "a7684195-f598-4f76-bf65-5c020569", {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, requestBody.firstName) +16:40:53.133 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG com.networknt.schema.TypeValidator debug - validate( "4002b34d-08f8-4e9b-bef6-3633813512fe", {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, requestBody.password) +16:40:53.133 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, requestBody) +16:40:53.133 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, requestBody.userType) +16:40:53.133 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG com.networknt.schema.TypeValidator debug - validate( "7e716fea", {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, requestBody.userId) +16:40:53.133 [XNIO-1 task-1] D1bA1EbST-O0r0oH9Tph5A DEBUG com.networknt.schema.TypeValidator debug - validate( "ed3331fe-71fe-41e5-843e-ab448c1336e3", {"userId":"7e716fea","userType":"admin","firstName":"a7684195-f598-4f76-bf65-5c020569","lastName":"46c44e6f-11fb-4d99-ae5e-4264fb10","email":"ed3331fe-71fe-41e5-843e-ab448c1336e3","password":"4002b34d-08f8-4e9b-bef6-3633813512fe"}, requestBody.email) +16:40:53.140 [XNIO-1 task-1] egeZC_A1QXCZKHQIr0VQPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.141 [XNIO-1 task-1] egeZC_A1QXCZKHQIr0VQPQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.141 [XNIO-1 task-1] egeZC_A1QXCZKHQIr0VQPQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.148 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:10ce1edb +16:40:53.148 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:10ce1edb +16:40:53.155 [XNIO-1 task-1] jQFrCGkrQ3OKTs-oZh3T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/10ce1edb +16:40:53.155 [XNIO-1 task-1] jQFrCGkrQ3OKTs-oZh3T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.155 [XNIO-1 task-1] jQFrCGkrQ3OKTs-oZh3T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.156 [XNIO-1 task-1] jQFrCGkrQ3OKTs-oZh3T6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/10ce1edb +16:40:53.156 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:10ce1edb +16:40:53.161 [XNIO-1 task-1] lMwM2F5VSCSgj9Z5_CaTsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.161 [XNIO-1 task-1] lMwM2F5VSCSgj9Z5_CaTsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.161 [XNIO-1 task-1] lMwM2F5VSCSgj9Z5_CaTsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.162 [XNIO-1 task-1] lMwM2F5VSCSgj9Z5_CaTsw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.163 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore store - Store:e7c58d4f-d444-4fa0-9542-b9a93ea19a7e +16:40:53.165 [XNIO-1 task-1] D6ayAZ_-SvmG3Q_tVdyAug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.165 [XNIO-1 task-1] D6ayAZ_-SvmG3Q_tVdyAug DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.165 [XNIO-1 task-1] D6ayAZ_-SvmG3Q_tVdyAug DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.167 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:7d42185e +16:40:53.183 [XNIO-1 task-1] uQC0UohtSBSjemZYCiDQSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.183 [XNIO-1 task-1] uQC0UohtSBSjemZYCiDQSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.183 [XNIO-1 task-1] uQC0UohtSBSjemZYCiDQSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.183 [XNIO-1 task-1] uQC0UohtSBSjemZYCiDQSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.188 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/26e09953, base path is set to: null +16:40:53.188 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.188 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.188 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.189 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/26e09953, base path is set to: null +16:40:53.189 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG com.networknt.schema.TypeValidator debug - validate( "26e09953", "26e09953", userId) +16:40:53.189 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"38e7f73f-808b-4ee8-9df8-1399f2e44a0b","newPassword":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPasswordConfirm":"2bf6e58d-1d31-4306-a720-7eff39a3fa73"}, {"password":"38e7f73f-808b-4ee8-9df8-1399f2e44a0b","newPassword":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPasswordConfirm":"2bf6e58d-1d31-4306-a720-7eff39a3fa73"}, requestBody) +16:40:53.189 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG com.networknt.schema.TypeValidator debug - validate( "2bf6e58d-1d31-4306-a720-7eff39a3fa73", {"password":"38e7f73f-808b-4ee8-9df8-1399f2e44a0b","newPassword":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPasswordConfirm":"2bf6e58d-1d31-4306-a720-7eff39a3fa73"}, requestBody.newPasswordConfirm) +16:40:53.189 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG com.networknt.schema.TypeValidator debug - validate( "38e7f73f-808b-4ee8-9df8-1399f2e44a0b", {"password":"38e7f73f-808b-4ee8-9df8-1399f2e44a0b","newPassword":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPasswordConfirm":"2bf6e58d-1d31-4306-a720-7eff39a3fa73"}, requestBody.password) +16:40:53.189 [XNIO-1 task-1] kYzZh7EvQcm9Haw_IPbVoA DEBUG com.networknt.schema.TypeValidator debug - validate( "2bf6e58d-1d31-4306-a720-7eff39a3fa73", {"password":"38e7f73f-808b-4ee8-9df8-1399f2e44a0b","newPassword":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPasswordConfirm":"2bf6e58d-1d31-4306-a720-7eff39a3fa73"}, requestBody.newPassword) +16:40:53.202 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:9ff90762 +16:40:53.214 [XNIO-1 task-1] abxihp3wRAiRbOcB2-MK8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.215 [XNIO-1 task-1] abxihp3wRAiRbOcB2-MK8w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.215 [XNIO-1 task-1] abxihp3wRAiRbOcB2-MK8w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.216 [XNIO-1 task-1] abxihp3wRAiRbOcB2-MK8w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.219 [XNIO-1 task-1] PGUg-NDVTwy604OqD1jJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26e09953, base path is set to: null +16:40:53.219 [XNIO-1 task-1] PGUg-NDVTwy604OqD1jJkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.219 [XNIO-1 task-1] PGUg-NDVTwy604OqD1jJkw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.219 [XNIO-1 task-1] PGUg-NDVTwy604OqD1jJkw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26e09953, base path is set to: null +16:40:53.219 [XNIO-1 task-1] PGUg-NDVTwy604OqD1jJkw DEBUG com.networknt.schema.TypeValidator debug - validate( "26e09953", "26e09953", userId) +16:40:53.221 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:b3d68239 +16:40:53.221 [XNIO-1 task-1] c_t4mmaCTUuTsBLtQrrWCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.222 [XNIO-1 task-1] c_t4mmaCTUuTsBLtQrrWCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.222 [XNIO-1 task-1] c_t4mmaCTUuTsBLtQrrWCQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.222 [XNIO-1 task-1] c_t4mmaCTUuTsBLtQrrWCQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.226 [XNIO-1 task-1] 5vF1xQXDSSiPZChTN4CRyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26e09953 +16:40:53.226 [XNIO-1 task-1] 5vF1xQXDSSiPZChTN4CRyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.226 [XNIO-1 task-1] 5vF1xQXDSSiPZChTN4CRyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.226 [XNIO-1 task-1] 5vF1xQXDSSiPZChTN4CRyA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26e09953 +16:40:53.231 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/26e09953, base path is set to: null +16:40:53.232 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.232 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.232 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.232 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/26e09953, base path is set to: null +16:40:53.233 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "26e09953", "26e09953", userId) +16:40:53.233 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPassword":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPasswordConfirm":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5"}, {"password":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPassword":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPasswordConfirm":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5"}, requestBody) +16:40:53.233 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82fad6e1-42ee-4616-a9e7-c6a5886b86f5", {"password":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPassword":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPasswordConfirm":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5"}, requestBody.newPasswordConfirm) +16:40:53.233 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "2bf6e58d-1d31-4306-a720-7eff39a3fa73", {"password":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPassword":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPasswordConfirm":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5"}, requestBody.password) +16:40:53.233 [XNIO-1 task-1] az7THVEBSUGFa3IszjCAIQ DEBUG com.networknt.schema.TypeValidator debug - validate( "82fad6e1-42ee-4616-a9e7-c6a5886b86f5", {"password":"2bf6e58d-1d31-4306-a720-7eff39a3fa73","newPassword":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPasswordConfirm":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5"}, requestBody.newPassword) +16:40:53.253 [XNIO-1 task-1] x85JPwk6QweggxdpHLoYoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26e09953, base path is set to: null +16:40:53.254 [XNIO-1 task-1] x85JPwk6QweggxdpHLoYoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.254 [XNIO-1 task-1] x85JPwk6QweggxdpHLoYoQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.255 [XNIO-1 task-1] x85JPwk6QweggxdpHLoYoQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/26e09953, base path is set to: null +16:40:53.255 [XNIO-1 task-1] x85JPwk6QweggxdpHLoYoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "26e09953", "26e09953", userId) +16:40:53.260 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/26e09953 +16:40:53.261 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.261 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.261 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:53.261 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/26e09953 +16:40:53.262 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPassword":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b","newPasswordConfirm":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b"}, {"password":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPassword":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b","newPasswordConfirm":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b"}, requestBody) +16:40:53.262 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPassword":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b","newPasswordConfirm":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b"}, {"password":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPassword":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b","newPasswordConfirm":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b"}, requestBody) +16:40:53.262 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "4d4f7fd8-b553-4be5-bf50-a815f9b5684b", {"password":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPassword":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b","newPasswordConfirm":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b"}, requestBody.newPasswordConfirm) +16:40:53.262 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "82fad6e1-42ee-4616-a9e7-c6a5886b86f5", {"password":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPassword":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b","newPasswordConfirm":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b"}, requestBody.password) +16:40:53.262 [XNIO-1 task-1] 9JF1qiXYRCiJd7-8JBoi8Q DEBUG com.networknt.schema.FormatValidator debug - validate( "4d4f7fd8-b553-4be5-bf50-a815f9b5684b", {"password":"82fad6e1-42ee-4616-a9e7-c6a5886b86f5","newPassword":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b","newPasswordConfirm":"4d4f7fd8-b553-4be5-bf50-a815f9b5684b"}, requestBody.newPassword) +16:40:53.282 [XNIO-1 task-1] g61G7a0-SWWMVTVyt_fsYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26e09953 +16:40:53.282 [XNIO-1 task-1] g61G7a0-SWWMVTVyt_fsYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.282 [XNIO-1 task-1] g61G7a0-SWWMVTVyt_fsYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.282 [XNIO-1 task-1] g61G7a0-SWWMVTVyt_fsYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/26e09953 +16:40:53.282 [XNIO-1 task-1] g61G7a0-SWWMVTVyt_fsYg DEBUG com.networknt.schema.TypeValidator debug - validate( "26e09953", "26e09953", userId) +16:40:53.283 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:53.285 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:4b72af5b +16:40:53.288 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.288 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.292 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.293 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, requestBody) +16:40:53.293 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0", {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, requestBody.firstName) +16:40:53.293 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "728cdffc-443e-4bc8-8c8b-26a51536f001", {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, requestBody.password) +16:40:53.293 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, requestBody) +16:40:53.293 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, requestBody.userType) +16:40:53.293 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "75668b31", {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, requestBody.userId) +16:40:53.293 [XNIO-1 task-1] urnFHOXwTHijA0RQ6KN-Ng DEBUG com.networknt.schema.TypeValidator debug - validate( "ecb81b9f-26a2-48c8-87cf-2b3026c54741", {"userId":"75668b31","userType":"admin","firstName":"3c5eefe2-8ae2-4a4f-b55e-f9d1c6b0","lastName":"b784ec7c-3af9-4c47-8c04-05712c50","email":"ecb81b9f-26a2-48c8-87cf-2b3026c54741","password":"728cdffc-443e-4bc8-8c8b-26a51536f001"}, requestBody.email) +16:40:53.298 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.298 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.299 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.299 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, requestBody) +16:40:53.299 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, requestBody) +16:40:53.299 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "28fd4843-855c-4b21-b5cf-11befa8e", {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, requestBody.lastName) +16:40:53.299 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG com.networknt.schema.FormatValidator debug - validate( "7fcac126-f470-4bd0-a734-8deb2f20a2e2", {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, requestBody.password) +16:40:53.299 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, requestBody.userType) +16:40:53.299 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, requestBody) +16:40:53.300 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, {"userId":"8aad18c1","userType":"admin","firstName":"6a3ed58f-01fe-4646-9ae3-eb0ff959","lastName":"28fd4843-855c-4b21-b5cf-11befa8e","email":"6c5610ce-bf67-47d0-8fa9-70e14853824c","password":"7fcac126-f470-4bd0-a734-8deb2f20a2e2"}, requestBody) +16:40:53.300 [XNIO-1 task-1] Kkb5VUJqSx6FDFE4qGTPxg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 7fcac126-f470-4bd0-a734-8deb2f20a2e2 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:53.303 [XNIO-1 task-1] 95cJoJaPQoWe0j29Hs33xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.303 [XNIO-1 task-1] 95cJoJaPQoWe0j29Hs33xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.304 [XNIO-1 task-1] 95cJoJaPQoWe0j29Hs33xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.304 [XNIO-1 task-1] 95cJoJaPQoWe0j29Hs33xA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.309 [XNIO-1 task-1] 5dpjWHPwTP2Rtz4QqBSH7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.309 [XNIO-1 task-1] 5dpjWHPwTP2Rtz4QqBSH7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.309 [XNIO-1 task-1] 5dpjWHPwTP2Rtz4QqBSH7g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.309 [XNIO-1 task-1] 5dpjWHPwTP2Rtz4QqBSH7g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.314 [XNIO-1 task-1] 2PpSWOuSSxKm5Og-vUX78Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.314 [XNIO-1 task-1] 2PpSWOuSSxKm5Og-vUX78Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.314 [XNIO-1 task-1] 2PpSWOuSSxKm5Og-vUX78Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.327 [XNIO-1 task-1] jEI_CqAOQs-TF6lgCw6kcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.327 [XNIO-1 task-1] jEI_CqAOQs-TF6lgCw6kcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.327 [XNIO-1 task-1] jEI_CqAOQs-TF6lgCw6kcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.328 [XNIO-1 task-1] jEI_CqAOQs-TF6lgCw6kcw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.334 [XNIO-1 task-1] Vfu5tuFFRFe5BkekFHOI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.334 [XNIO-1 task-1] Vfu5tuFFRFe5BkekFHOI1w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.334 [XNIO-1 task-1] Vfu5tuFFRFe5BkekFHOI1w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.334 [XNIO-1 task-1] Vfu5tuFFRFe5BkekFHOI1w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/544fa506, base path is set to: null +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/544fa506, base path is set to: null +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "544fa506", "544fa506", userId) +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"41ac6fb2-33ff-4e7b-a218-ef944037688b","newPassword":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPasswordConfirm":"cb7ad01d-36c3-4337-90a5-e517a72014d0"}, {"password":"41ac6fb2-33ff-4e7b-a218-ef944037688b","newPassword":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPasswordConfirm":"cb7ad01d-36c3-4337-90a5-e517a72014d0"}, requestBody) +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "cb7ad01d-36c3-4337-90a5-e517a72014d0", {"password":"41ac6fb2-33ff-4e7b-a218-ef944037688b","newPassword":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPasswordConfirm":"cb7ad01d-36c3-4337-90a5-e517a72014d0"}, requestBody.newPasswordConfirm) +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "41ac6fb2-33ff-4e7b-a218-ef944037688b", {"password":"41ac6fb2-33ff-4e7b-a218-ef944037688b","newPassword":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPasswordConfirm":"cb7ad01d-36c3-4337-90a5-e517a72014d0"}, requestBody.password) +16:40:53.341 [XNIO-1 task-1] JsaIXsWfSwSJ_cGb6iHp2Q DEBUG com.networknt.schema.TypeValidator debug - validate( "cb7ad01d-36c3-4337-90a5-e517a72014d0", {"password":"41ac6fb2-33ff-4e7b-a218-ef944037688b","newPassword":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPasswordConfirm":"cb7ad01d-36c3-4337-90a5-e517a72014d0"}, requestBody.newPassword) +16:40:53.359 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:4b72af5b +16:40:53.359 [XNIO-1 task-1] vQxdZa4tQZCy7wC3SLER2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.359 [XNIO-1 task-1] vQxdZa4tQZCy7wC3SLER2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.359 [XNIO-1 task-1] vQxdZa4tQZCy7wC3SLER2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.360 [XNIO-1 task-1] vQxdZa4tQZCy7wC3SLER2w DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.367 [XNIO-1 task-1] GPM9JM9mT66RYg7Z2taDWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.367 [XNIO-1 task-1] GPM9JM9mT66RYg7Z2taDWw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.367 [XNIO-1 task-1] GPM9JM9mT66RYg7Z2taDWw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.367 [XNIO-1 task-1] GPM9JM9mT66RYg7Z2taDWw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.372 [XNIO-1 task-1] FX5RdJ8pRuiHimXDvGr3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/544fa506, base path is set to: null +16:40:53.372 [XNIO-1 task-1] FX5RdJ8pRuiHimXDvGr3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.373 [XNIO-1 task-1] FX5RdJ8pRuiHimXDvGr3rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.373 [XNIO-1 task-1] FX5RdJ8pRuiHimXDvGr3rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/544fa506, base path is set to: null +16:40:53.373 [XNIO-1 task-1] FX5RdJ8pRuiHimXDvGr3rw DEBUG com.networknt.schema.TypeValidator debug - validate( "544fa506", "544fa506", userId) +16:40:53.377 [XNIO-1 task-1] qfvfClFYTKarGn4PgLvE6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/544fa506, base path is set to: null +16:40:53.377 [XNIO-1 task-1] qfvfClFYTKarGn4PgLvE6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.377 [XNIO-1 task-1] qfvfClFYTKarGn4PgLvE6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.377 [XNIO-1 task-1] qfvfClFYTKarGn4PgLvE6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/544fa506, base path is set to: null +16:40:53.377 [XNIO-1 task-1] qfvfClFYTKarGn4PgLvE6g DEBUG com.networknt.schema.TypeValidator debug - validate( "544fa506", "544fa506", userId) +16:40:53.378 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:b0fcd0a1 +16:40:53.380 [XNIO-1 task-1] 0XZ0rriSTGa8YRF1RAlDNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.380 [XNIO-1 task-1] 0XZ0rriSTGa8YRF1RAlDNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.380 [XNIO-1 task-1] 0XZ0rriSTGa8YRF1RAlDNw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.389 [XNIO-1 task-1] Zt-JSfTURKS5KUco1VWlXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.389 [XNIO-1 task-1] Zt-JSfTURKS5KUco1VWlXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.389 [XNIO-1 task-1] Zt-JSfTURKS5KUco1VWlXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.389 [XNIO-1 task-1] Zt-JSfTURKS5KUco1VWlXg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.396 [XNIO-1 task-1] Z_XQlzPDSXasG6eMH93WSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.396 [XNIO-1 task-1] Z_XQlzPDSXasG6eMH93WSA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.396 [XNIO-1 task-1] Z_XQlzPDSXasG6eMH93WSA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.396 [XNIO-1 task-1] Z_XQlzPDSXasG6eMH93WSA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.402 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/544fa506, base path is set to: null +16:40:53.402 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.402 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.403 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.403 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/544fa506, base path is set to: null +16:40:53.403 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG com.networknt.schema.TypeValidator debug - validate( "544fa506", "544fa506", userId) +16:40:53.403 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPassword":"546e5b08-de99-4020-9e23-1e70eebb518d","newPasswordConfirm":"546e5b08-de99-4020-9e23-1e70eebb518d"}, {"password":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPassword":"546e5b08-de99-4020-9e23-1e70eebb518d","newPasswordConfirm":"546e5b08-de99-4020-9e23-1e70eebb518d"}, requestBody) +16:40:53.403 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG com.networknt.schema.TypeValidator debug - validate( "546e5b08-de99-4020-9e23-1e70eebb518d", {"password":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPassword":"546e5b08-de99-4020-9e23-1e70eebb518d","newPasswordConfirm":"546e5b08-de99-4020-9e23-1e70eebb518d"}, requestBody.newPasswordConfirm) +16:40:53.403 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG com.networknt.schema.TypeValidator debug - validate( "cb7ad01d-36c3-4337-90a5-e517a72014d0", {"password":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPassword":"546e5b08-de99-4020-9e23-1e70eebb518d","newPasswordConfirm":"546e5b08-de99-4020-9e23-1e70eebb518d"}, requestBody.password) +16:40:53.403 [XNIO-1 task-1] oDU-rKBeQkyhVRBS9cU7mg DEBUG com.networknt.schema.TypeValidator debug - validate( "546e5b08-de99-4020-9e23-1e70eebb518d", {"password":"cb7ad01d-36c3-4337-90a5-e517a72014d0","newPassword":"546e5b08-de99-4020-9e23-1e70eebb518d","newPasswordConfirm":"546e5b08-de99-4020-9e23-1e70eebb518d"}, requestBody.newPassword) +16:40:53.416 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2784040c +16:40:53.418 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:2784040c +16:40:53.419 [XNIO-1 task-1] AMBCw773SnWZk6tEk1AnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.419 [XNIO-1 task-1] AMBCw773SnWZk6tEk1AnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.419 [XNIO-1 task-1] AMBCw773SnWZk6tEk1AnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.419 [XNIO-1 task-1] AMBCw773SnWZk6tEk1AnDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.423 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/544fa506, base path is set to: null +16:40:53.423 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.423 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.423 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.424 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/544fa506, base path is set to: null +16:40:53.424 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG com.networknt.schema.TypeValidator debug - validate( "544fa506", "544fa506", userId) +16:40:53.424 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"546e5b08-de99-4020-9e23-1e70eebb518d","newPassword":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc","newPasswordConfirm":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc"}, {"password":"546e5b08-de99-4020-9e23-1e70eebb518d","newPassword":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc","newPasswordConfirm":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc"}, requestBody) +16:40:53.424 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG com.networknt.schema.TypeValidator debug - validate( "11c487f4-231d-4ff3-a4f1-e0e72f9c23cc", {"password":"546e5b08-de99-4020-9e23-1e70eebb518d","newPassword":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc","newPasswordConfirm":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc"}, requestBody.newPasswordConfirm) +16:40:53.424 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG com.networknt.schema.TypeValidator debug - validate( "546e5b08-de99-4020-9e23-1e70eebb518d", {"password":"546e5b08-de99-4020-9e23-1e70eebb518d","newPassword":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc","newPasswordConfirm":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc"}, requestBody.password) +16:40:53.425 [XNIO-1 task-1] 8HCafXkqQo2YAMtCFQvykg DEBUG com.networknt.schema.TypeValidator debug - validate( "11c487f4-231d-4ff3-a4f1-e0e72f9c23cc", {"password":"546e5b08-de99-4020-9e23-1e70eebb518d","newPassword":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc","newPasswordConfirm":"11c487f4-231d-4ff3-a4f1-e0e72f9c23cc"}, requestBody.newPassword) +16:40:53.433 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b43a6255-268e-49ac-8f00-ea1a8d785057 +16:40:53.434 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore load - Load:b43a6255-268e-49ac-8f00-ea1a8d785057 +16:40:53.436 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:53.447 [XNIO-1 task-1] TFCNwebJQnSP-OST5LoizQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.447 [XNIO-1 task-1] TFCNwebJQnSP-OST5LoizQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.447 [XNIO-1 task-1] TFCNwebJQnSP-OST5LoizQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.461 [XNIO-1 task-1] r6FJfa5NTRmKUEKZ-QJatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.461 [XNIO-1 task-1] r6FJfa5NTRmKUEKZ-QJatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.461 [XNIO-1 task-1] r6FJfa5NTRmKUEKZ-QJatA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.475 [XNIO-1 task-1] meowbgGcQ5qyParYz2ky1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b24bb58a +16:40:53.475 [XNIO-1 task-1] meowbgGcQ5qyParYz2ky1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.476 [XNIO-1 task-1] meowbgGcQ5qyParYz2ky1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.476 [XNIO-1 task-1] meowbgGcQ5qyParYz2ky1Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/b24bb58a +16:40:53.487 [XNIO-1 task-1] 3jMKRSwyRrWNGCdyyCNyrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bb50c850, base path is set to: null +16:40:53.487 [XNIO-1 task-1] 3jMKRSwyRrWNGCdyyCNyrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.487 [XNIO-1 task-1] 3jMKRSwyRrWNGCdyyCNyrw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.487 [XNIO-1 task-1] 3jMKRSwyRrWNGCdyyCNyrw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bb50c850, base path is set to: null +16:40:53.487 [XNIO-1 task-1] 3jMKRSwyRrWNGCdyyCNyrw DEBUG com.networknt.schema.TypeValidator debug - validate( "bb50c850", "bb50c850", userId) +16:40:53.495 [XNIO-1 task-1] OEnbmfghQGCItsOh8OT6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.495 [XNIO-1 task-1] OEnbmfghQGCItsOh8OT6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.495 [XNIO-1 task-1] OEnbmfghQGCItsOh8OT6aQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.504 [XNIO-1 task-1] qhuBJSlkRtyELqGeslEKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.504 [XNIO-1 task-1] qhuBJSlkRtyELqGeslEKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.504 [XNIO-1 task-1] qhuBJSlkRtyELqGeslEKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.504 [XNIO-1 task-1] qhuBJSlkRtyELqGeslEKiw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/544fa506 +16:40:53.509 [XNIO-1 task-1] kPBakSa5RL-XIFdz6ixx7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.509 [XNIO-1 task-1] kPBakSa5RL-XIFdz6ixx7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.509 [XNIO-1 task-1] kPBakSa5RL-XIFdz6ixx7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.510 [XNIO-1 task-1] kPBakSa5RL-XIFdz6ixx7w DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.513 [XNIO-1 task-1] th1tlJ6wT3-DpF4F6H8vnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.513 [XNIO-1 task-1] th1tlJ6wT3-DpF4F6H8vnQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.513 [XNIO-1 task-1] th1tlJ6wT3-DpF4F6H8vnQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.513 [XNIO-1 task-1] th1tlJ6wT3-DpF4F6H8vnQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.519 [XNIO-1 task-1] C2_Ttm3tR2e1qQ-Pr7Oytw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.519 [XNIO-1 task-1] C2_Ttm3tR2e1qQ-Pr7Oytw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.519 [XNIO-1 task-1] C2_Ttm3tR2e1qQ-Pr7Oytw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.526 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8ac5fcef +16:40:53.526 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8ac5fcef +16:40:53.532 [XNIO-1 task-1] lsBgVQIUSDy_ymP3GAJKbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.532 [XNIO-1 task-1] lsBgVQIUSDy_ymP3GAJKbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.533 [XNIO-1 task-1] lsBgVQIUSDy_ymP3GAJKbg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.533 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:8ac5fcef +16:40:53.544 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.544 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, requestBody) +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "7d70fefa-3c27-4e71-bd0f-77e196bf", {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, requestBody.firstName) +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "be9336fd-67c7-4fd8-be12-45c9e4571abe", {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, requestBody.password) +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, requestBody) +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, requestBody.userType) +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bef4511e", {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, requestBody.userId) +16:40:53.545 [XNIO-1 task-1] TVfIiBE1SICktjKs8uRWUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bc9f2aef-9da5-4096-b80d-705c52ebb02b", {"userId":"bef4511e","userType":"admin","firstName":"7d70fefa-3c27-4e71-bd0f-77e196bf","lastName":"47638483-7b0c-449c-af29-4ca53a80","email":"bc9f2aef-9da5-4096-b80d-705c52ebb02b","password":"be9336fd-67c7-4fd8-be12-45c9e4571abe"}, requestBody.email) +16:40:53.555 [XNIO-1 task-1] 9OStZKpARJe855Q77wJd8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.555 [XNIO-1 task-1] 9OStZKpARJe855Q77wJd8Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.555 [XNIO-1 task-1] 9OStZKpARJe855Q77wJd8Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.555 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8ac5fcef +16:40:53.561 [XNIO-1 task-1] JX6cqi8OR6qosgm3tQdVQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.561 [XNIO-1 task-1] JX6cqi8OR6qosgm3tQdVQg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.561 [XNIO-1 task-1] JX6cqi8OR6qosgm3tQdVQg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.561 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8ac5fcef +16:40:53.567 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8ac5fcef, base path is set to: null +16:40:53.567 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.567 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.567 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.567 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8ac5fcef, base path is set to: null +16:40:53.567 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG com.networknt.schema.TypeValidator debug - validate( "8ac5fcef", "8ac5fcef", userId) +16:40:53.567 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"db71f4d6-c32f-4cad-bfa1-df991e7a44da","newPassword":"99d9b2d3-b685-44ed-b625-1ca04c0619f7","newPasswordConfirm":"99d9b2d3-b685-44ed-b625-1ca04c0619f7"}, {"password":"db71f4d6-c32f-4cad-bfa1-df991e7a44da","newPassword":"99d9b2d3-b685-44ed-b625-1ca04c0619f7","newPasswordConfirm":"99d9b2d3-b685-44ed-b625-1ca04c0619f7"}, requestBody) +16:40:53.568 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG com.networknt.schema.TypeValidator debug - validate( "99d9b2d3-b685-44ed-b625-1ca04c0619f7", {"password":"db71f4d6-c32f-4cad-bfa1-df991e7a44da","newPassword":"99d9b2d3-b685-44ed-b625-1ca04c0619f7","newPasswordConfirm":"99d9b2d3-b685-44ed-b625-1ca04c0619f7"}, requestBody.newPasswordConfirm) +16:40:53.568 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG com.networknt.schema.TypeValidator debug - validate( "db71f4d6-c32f-4cad-bfa1-df991e7a44da", {"password":"db71f4d6-c32f-4cad-bfa1-df991e7a44da","newPassword":"99d9b2d3-b685-44ed-b625-1ca04c0619f7","newPasswordConfirm":"99d9b2d3-b685-44ed-b625-1ca04c0619f7"}, requestBody.password) +16:40:53.568 [XNIO-1 task-1] ESzGpGMxSHCLuO7VeiRobg DEBUG com.networknt.schema.TypeValidator debug - validate( "99d9b2d3-b685-44ed-b625-1ca04c0619f7", {"password":"db71f4d6-c32f-4cad-bfa1-df991e7a44da","newPassword":"99d9b2d3-b685-44ed-b625-1ca04c0619f7","newPasswordConfirm":"99d9b2d3-b685-44ed-b625-1ca04c0619f7"}, requestBody.newPassword) +16:40:53.578 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8ac5fcef +16:40:53.594 [XNIO-1 task-1] mgIrsrd_SkqKsgOoUJPN-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.594 [XNIO-1 task-1] mgIrsrd_SkqKsgOoUJPN-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.595 [XNIO-1 task-1] mgIrsrd_SkqKsgOoUJPN-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.595 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:8ac5fcef +16:40:53.600 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:9ff90762 +16:40:53.601 [XNIO-1 task-1] -RdlU16LShubMFuv6NkE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8ac5fcef +16:40:53.601 [XNIO-1 task-1] -RdlU16LShubMFuv6NkE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.601 [XNIO-1 task-1] -RdlU16LShubMFuv6NkE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.601 [XNIO-1 task-1] -RdlU16LShubMFuv6NkE2w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/8ac5fcef +16:40:53.603 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:8ac5fcef +16:40:53.608 [XNIO-1 task-1] 7QvmKGiIS9eBSkCaBu9Fsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.608 [XNIO-1 task-1] 7QvmKGiIS9eBSkCaBu9Fsg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.608 [XNIO-1 task-1] 7QvmKGiIS9eBSkCaBu9Fsg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.608 [XNIO-1 task-1] 7QvmKGiIS9eBSkCaBu9Fsg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.616 [XNIO-1 task-1] ydfEVXT9RquznQ6JW5p2AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.617 [XNIO-1 task-1] ydfEVXT9RquznQ6JW5p2AA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.617 [XNIO-1 task-1] ydfEVXT9RquznQ6JW5p2AA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.617 [XNIO-1 task-1] ydfEVXT9RquznQ6JW5p2AA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.627 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, requestBody) +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, requestBody) +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "64d8b4a0-a88b-4781-bff5-be7e6a4c", {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, requestBody.lastName) +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG com.networknt.schema.FormatValidator debug - validate( "d5e85152-d705-41d2-8c43-e46f83371067", {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, requestBody.password) +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, requestBody.userType) +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, requestBody) +16:40:53.628 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, {"userId":"728d9e4b","userType":"admin","firstName":"96f3b89d-3f7f-4873-80c5-0c070b65","lastName":"64d8b4a0-a88b-4781-bff5-be7e6a4c","email":"40c3154a-8013-40a0-983e-d9632ee0112c","password":"d5e85152-d705-41d2-8c43-e46f83371067"}, requestBody) +16:40:53.629 [XNIO-1 task-1] ePeBEQO0T-ey_gRpy9JNeQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password d5e85152-d705-41d2-8c43-e46f83371067 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:53.632 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.632 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.632 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.633 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, requestBody) +16:40:53.633 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG com.networknt.schema.TypeValidator debug - validate( "c0f191a9-aa7b-4fd9-9a93-cfc6888f", {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, requestBody.firstName) +16:40:53.633 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG com.networknt.schema.TypeValidator debug - validate( "5e0fbf5b-956a-4ecd-9cc1-b11c1852b941", {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, requestBody.password) +16:40:53.633 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, requestBody) +16:40:53.633 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, requestBody.userType) +16:40:53.633 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG com.networknt.schema.TypeValidator debug - validate( "5099496f", {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, requestBody.userId) +16:40:53.633 [XNIO-1 task-1] XQ_B2g4NQ8qj8Ep8-hgCCw DEBUG com.networknt.schema.TypeValidator debug - validate( "e92a870b-768d-4add-9c1b-d958edb71786", {"userId":"5099496f","userType":"admin","firstName":"c0f191a9-aa7b-4fd9-9a93-cfc6888f","lastName":"4bf265c6-0ea2-41eb-ab00-fe6a22d7","email":"e92a870b-768d-4add-9c1b-d958edb71786","password":"5e0fbf5b-956a-4ecd-9cc1-b11c1852b941"}, requestBody.email) +16:40:53.638 [XNIO-1 task-1] -go1pJH3TxKOnUBelTmMKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.638 [XNIO-1 task-1] -go1pJH3TxKOnUBelTmMKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.638 [XNIO-1 task-1] -go1pJH3TxKOnUBelTmMKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.651 [XNIO-1 task-1] jXicZ_AjSYCSfkbxzi3Piw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/db6384a6, base path is set to: null +16:40:53.651 [XNIO-1 task-1] jXicZ_AjSYCSfkbxzi3Piw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.651 [XNIO-1 task-1] jXicZ_AjSYCSfkbxzi3Piw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.651 [XNIO-1 task-1] jXicZ_AjSYCSfkbxzi3Piw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/db6384a6, base path is set to: null +16:40:53.652 [XNIO-1 task-1] jXicZ_AjSYCSfkbxzi3Piw DEBUG com.networknt.schema.TypeValidator debug - validate( "db6384a6", "db6384a6", userId) +16:40:53.657 [XNIO-1 task-1] OJjg6_ywSt2DPrQQBRRUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.657 [XNIO-1 task-1] OJjg6_ywSt2DPrQQBRRUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.657 [XNIO-1 task-1] OJjg6_ywSt2DPrQQBRRUrQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.657 [XNIO-1 task-1] OJjg6_ywSt2DPrQQBRRUrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.667 [XNIO-1 task-1] gG9LJ7gPSp-ZGvitMd9VDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.667 [XNIO-1 task-1] gG9LJ7gPSp-ZGvitMd9VDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.667 [XNIO-1 task-1] gG9LJ7gPSp-ZGvitMd9VDg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.670 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a8812d35-7670-4b43-adac-955c01c072e6 +16:40:53.684 [XNIO-1 task-1] otwWS5NLSm-6hORtFdZjgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/38ef834c +16:40:53.684 [XNIO-1 task-1] otwWS5NLSm-6hORtFdZjgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.684 [XNIO-1 task-1] otwWS5NLSm-6hORtFdZjgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.684 [XNIO-1 task-1] otwWS5NLSm-6hORtFdZjgw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/38ef834c +16:40:53.688 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:7d42185e +16:40:53.693 [XNIO-1 task-1] AIZVIGRtRh60bXuzzxhvfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.693 [XNIO-1 task-1] AIZVIGRtRh60bXuzzxhvfw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.693 [XNIO-1 task-1] AIZVIGRtRh60bXuzzxhvfw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.693 [XNIO-1 task-1] AIZVIGRtRh60bXuzzxhvfw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.698 [XNIO-1 task-1] IjMP2DosSw2UrNSDzbwCPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.699 [XNIO-1 task-1] IjMP2DosSw2UrNSDzbwCPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.699 [XNIO-1 task-1] IjMP2DosSw2UrNSDzbwCPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.699 [XNIO-1 task-1] IjMP2DosSw2UrNSDzbwCPw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.706 [XNIO-1 task-1] hRAqxqZwSCyFkYcRqZJGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.706 [XNIO-1 task-1] hRAqxqZwSCyFkYcRqZJGlg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.706 [XNIO-1 task-1] hRAqxqZwSCyFkYcRqZJGlg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.707 [XNIO-1 task-1] hRAqxqZwSCyFkYcRqZJGlg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.710 [XNIO-1 task-1] pCLVocjqQoa_7ARPENDMyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.710 [XNIO-1 task-1] pCLVocjqQoa_7ARPENDMyQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.710 [XNIO-1 task-1] pCLVocjqQoa_7ARPENDMyQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.710 [XNIO-1 task-1] pCLVocjqQoa_7ARPENDMyQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.714 [XNIO-1 task-1] b1q0whb-TZ2JxdV3uBkmxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.714 [XNIO-1 task-1] b1q0whb-TZ2JxdV3uBkmxA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.715 [XNIO-1 task-1] b1q0whb-TZ2JxdV3uBkmxA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.728 [XNIO-1 task-1] YJtgiVsIQsSiWWgXPJ6jgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.728 [XNIO-1 task-1] YJtgiVsIQsSiWWgXPJ6jgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.728 [XNIO-1 task-1] YJtgiVsIQsSiWWgXPJ6jgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.728 [XNIO-1 task-1] YJtgiVsIQsSiWWgXPJ6jgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.730 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae96b4eb +16:40:53.731 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ae96b4eb +16:40:53.733 [XNIO-1 task-1] H4nmPNqJSyOirbbPErfRdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a92228d3 +16:40:53.733 [XNIO-1 task-1] H4nmPNqJSyOirbbPErfRdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.734 [XNIO-1 task-1] H4nmPNqJSyOirbbPErfRdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.734 [XNIO-1 task-1] H4nmPNqJSyOirbbPErfRdg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a92228d3 +16:40:53.737 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a92228d3, base path is set to: null +16:40:53.737 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.737 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.737 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.737 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a92228d3, base path is set to: null +16:40:53.737 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG com.networknt.schema.TypeValidator debug - validate( "a92228d3", "a92228d3", userId) +16:40:53.737 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"6be1b2ca-ea92-43af-b618-c7a5369ff1cb","newPassword":"81832b5f-efe6-4621-91a4-caf70ea40798","newPasswordConfirm":"81832b5f-efe6-4621-91a4-caf70ea40798"}, {"password":"6be1b2ca-ea92-43af-b618-c7a5369ff1cb","newPassword":"81832b5f-efe6-4621-91a4-caf70ea40798","newPasswordConfirm":"81832b5f-efe6-4621-91a4-caf70ea40798"}, requestBody) +16:40:53.738 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG com.networknt.schema.TypeValidator debug - validate( "81832b5f-efe6-4621-91a4-caf70ea40798", {"password":"6be1b2ca-ea92-43af-b618-c7a5369ff1cb","newPassword":"81832b5f-efe6-4621-91a4-caf70ea40798","newPasswordConfirm":"81832b5f-efe6-4621-91a4-caf70ea40798"}, requestBody.newPasswordConfirm) +16:40:53.738 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG com.networknt.schema.TypeValidator debug - validate( "6be1b2ca-ea92-43af-b618-c7a5369ff1cb", {"password":"6be1b2ca-ea92-43af-b618-c7a5369ff1cb","newPassword":"81832b5f-efe6-4621-91a4-caf70ea40798","newPasswordConfirm":"81832b5f-efe6-4621-91a4-caf70ea40798"}, requestBody.password) +16:40:53.738 [XNIO-1 task-1] ynZFUF_kRpWVPIwyMWmUbg DEBUG com.networknt.schema.TypeValidator debug - validate( "81832b5f-efe6-4621-91a4-caf70ea40798", {"password":"6be1b2ca-ea92-43af-b618-c7a5369ff1cb","newPassword":"81832b5f-efe6-4621-91a4-caf70ea40798","newPasswordConfirm":"81832b5f-efe6-4621-91a4-caf70ea40798"}, requestBody.newPassword) +16:40:53.740 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:4ce4545c-1190-4f87-aa9c-845788f7f8f8 +16:40:53.760 [XNIO-1 task-1] ixHmpDp8TU2MbNiX7oq88g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.760 [XNIO-1 task-1] ixHmpDp8TU2MbNiX7oq88g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.760 [XNIO-1 task-1] ixHmpDp8TU2MbNiX7oq88g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.760 [XNIO-1 task-1] ixHmpDp8TU2MbNiX7oq88g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:53.762 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:ffe5c4de-824c-4690-863d-523c1f89182a +16:40:53.764 [XNIO-1 task-1] tJKg9uXiTiiQ-Jfy-BrB3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a92228d3 +16:40:53.764 [XNIO-1 task-1] tJKg9uXiTiiQ-Jfy-BrB3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.764 [XNIO-1 task-1] tJKg9uXiTiiQ-Jfy-BrB3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.764 [XNIO-1 task-1] tJKg9uXiTiiQ-Jfy-BrB3Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a92228d3 +16:40:53.801 [hz._hzInstance_1_dev.partition-operation.thread-15] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:2784040c +16:40:53.803 [XNIO-1 task-1] vzqJlBczQImnKCYZKeRKjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.807 [XNIO-1 task-1] vzqJlBczQImnKCYZKeRKjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.807 [XNIO-1 task-1] vzqJlBczQImnKCYZKeRKjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.808 [XNIO-1 task-1] vzqJlBczQImnKCYZKeRKjw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.813 [XNIO-1 task-1] xVMmAMGORUasuT45Gi_6sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.813 [XNIO-1 task-1] xVMmAMGORUasuT45Gi_6sA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.813 [XNIO-1 task-1] xVMmAMGORUasuT45Gi_6sA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.815 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:b0fcd0a1 +16:40:53.851 [XNIO-1 task-1] o4vSYMIySPe83JnDMsOvyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.851 [XNIO-1 task-1] o4vSYMIySPe83JnDMsOvyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.851 [XNIO-1 task-1] o4vSYMIySPe83JnDMsOvyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.851 [XNIO-1 task-1] o4vSYMIySPe83JnDMsOvyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:53.883 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, requestBody) +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, requestBody) +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG com.networknt.schema.TypeValidator debug - validate( "2a52adbd-3cf6-4369-af18-98487d28", {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, requestBody.lastName) +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG com.networknt.schema.FormatValidator debug - validate( "c070dc8c-2f44-4c42-aeac-4eb952d51eba", {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, requestBody.password) +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, requestBody.userType) +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, requestBody) +16:40:53.884 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, {"userId":"b14ae0bf","userType":"admin","firstName":"a0bbc07e-9afb-472d-8089-1097ade4","lastName":"2a52adbd-3cf6-4369-af18-98487d28","email":"fe7d1d8e-aa98-4cbe-bbed-ebf411519d32","password":"c070dc8c-2f44-4c42-aeac-4eb952d51eba"}, requestBody) +16:40:53.885 [XNIO-1 task-1] zG7iB5CAQvC7vJLVq19P-A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password c070dc8c-2f44-4c42-aeac-4eb952d51eba or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:53.893 [XNIO-1 task-1] u1RYDknvSRykctlrPywknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cbe9b6d4 +16:40:53.893 [XNIO-1 task-1] u1RYDknvSRykctlrPywknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.893 [XNIO-1 task-1] u1RYDknvSRykctlrPywknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:53.893 [XNIO-1 task-1] u1RYDknvSRykctlrPywknA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cbe9b6d4 +16:40:53.904 [XNIO-1 task-1] pNwqGvkUQ5GJlPqwo6s2hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.904 [XNIO-1 task-1] pNwqGvkUQ5GJlPqwo6s2hg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.904 [XNIO-1 task-1] pNwqGvkUQ5GJlPqwo6s2hg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:53.918 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c4d5543d, base path is set to: null +16:40:53.918 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c4d5543d, base path is set to: null +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d5543d", "c4d5543d", userId) +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"1e5db77e-d31a-408f-a2d3-8d83e1dcab2a","newPassword":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPasswordConfirm":"f529e9d9-6a25-4d98-8cef-08b024007b88"}, {"password":"1e5db77e-d31a-408f-a2d3-8d83e1dcab2a","newPassword":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPasswordConfirm":"f529e9d9-6a25-4d98-8cef-08b024007b88"}, requestBody) +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG com.networknt.schema.TypeValidator debug - validate( "f529e9d9-6a25-4d98-8cef-08b024007b88", {"password":"1e5db77e-d31a-408f-a2d3-8d83e1dcab2a","newPassword":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPasswordConfirm":"f529e9d9-6a25-4d98-8cef-08b024007b88"}, requestBody.newPasswordConfirm) +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1e5db77e-d31a-408f-a2d3-8d83e1dcab2a", {"password":"1e5db77e-d31a-408f-a2d3-8d83e1dcab2a","newPassword":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPasswordConfirm":"f529e9d9-6a25-4d98-8cef-08b024007b88"}, requestBody.password) +16:40:53.919 [XNIO-1 task-1] Ao7atKfpQWeE7Wvq1AZVuA DEBUG com.networknt.schema.TypeValidator debug - validate( "f529e9d9-6a25-4d98-8cef-08b024007b88", {"password":"1e5db77e-d31a-408f-a2d3-8d83e1dcab2a","newPassword":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPasswordConfirm":"f529e9d9-6a25-4d98-8cef-08b024007b88"}, requestBody.newPassword) +16:40:53.949 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c4d5543d, base path is set to: null +16:40:53.949 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.949 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.949 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:53.949 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/c4d5543d, base path is set to: null +16:40:53.949 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d5543d", "c4d5543d", userId) +16:40:53.950 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPassword":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9","newPasswordConfirm":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9"}, {"password":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPassword":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9","newPasswordConfirm":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9"}, requestBody) +16:40:53.950 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG com.networknt.schema.TypeValidator debug - validate( "e4ad5cec-0697-4d6e-8e13-23a98f10f0c9", {"password":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPassword":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9","newPasswordConfirm":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9"}, requestBody.newPasswordConfirm) +16:40:53.950 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG com.networknt.schema.TypeValidator debug - validate( "f529e9d9-6a25-4d98-8cef-08b024007b88", {"password":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPassword":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9","newPasswordConfirm":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9"}, requestBody.password) +16:40:53.950 [XNIO-1 task-1] OdPZCevGTN664yHShy1EzA DEBUG com.networknt.schema.TypeValidator debug - validate( "e4ad5cec-0697-4d6e-8e13-23a98f10f0c9", {"password":"f529e9d9-6a25-4d98-8cef-08b024007b88","newPassword":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9","newPasswordConfirm":"e4ad5cec-0697-4d6e-8e13-23a98f10f0c9"}, requestBody.newPassword) +16:40:53.967 [XNIO-1 task-1] 5GMklItaQIOawP8Tau3QKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c4d5543d, base path is set to: null +16:40:53.967 [XNIO-1 task-1] 5GMklItaQIOawP8Tau3QKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:53.967 [XNIO-1 task-1] 5GMklItaQIOawP8Tau3QKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:53.967 [XNIO-1 task-1] 5GMklItaQIOawP8Tau3QKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c4d5543d, base path is set to: null +16:40:53.968 [XNIO-1 task-1] 5GMklItaQIOawP8Tau3QKw DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d5543d", "c4d5543d", userId) +16:40:53.973 [XNIO-1 task-1] eBGOEBkvRRSsJnHl6mNQsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.973 [XNIO-1 task-1] eBGOEBkvRRSsJnHl6mNQsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.973 [XNIO-1 task-1] eBGOEBkvRRSsJnHl6mNQsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:53.973 [XNIO-1 task-1] eBGOEBkvRRSsJnHl6mNQsg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.000 [XNIO-1 task-1] 5KP_UJeUShi3pZbQa9zZ-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c4d5543d +16:40:54.000 [XNIO-1 task-1] 5KP_UJeUShi3pZbQa9zZ-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.001 [XNIO-1 task-1] 5KP_UJeUShi3pZbQa9zZ-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.001 [XNIO-1 task-1] 5KP_UJeUShi3pZbQa9zZ-w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c4d5543d +16:40:54.004 [XNIO-1 task-1] dOoRzHAaQhut7Hx64TWyPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c4d5543d, base path is set to: null +16:40:54.004 [XNIO-1 task-1] dOoRzHAaQhut7Hx64TWyPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.004 [XNIO-1 task-1] dOoRzHAaQhut7Hx64TWyPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.005 [XNIO-1 task-1] dOoRzHAaQhut7Hx64TWyPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c4d5543d, base path is set to: null +16:40:54.005 [XNIO-1 task-1] dOoRzHAaQhut7Hx64TWyPg DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d5543d", "c4d5543d", userId) +16:40:54.007 [XNIO-1 task-1] IVBFTSdEQR-ZQJ5NQxslHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c4d5543d +16:40:54.007 [XNIO-1 task-1] IVBFTSdEQR-ZQJ5NQxslHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.007 [XNIO-1 task-1] IVBFTSdEQR-ZQJ5NQxslHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.008 [XNIO-1 task-1] IVBFTSdEQR-ZQJ5NQxslHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/c4d5543d +16:40:54.010 [XNIO-1 task-1] AW-uYSyqSGKp4l836gpkCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.010 [XNIO-1 task-1] AW-uYSyqSGKp4l836gpkCg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.010 [XNIO-1 task-1] AW-uYSyqSGKp4l836gpkCg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.010 [XNIO-1 task-1] AW-uYSyqSGKp4l836gpkCg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.029 [XNIO-1 task-1] G2OPILUQR8yIvDFfNo5PgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c4d5543d, base path is set to: null +16:40:54.029 [XNIO-1 task-1] G2OPILUQR8yIvDFfNo5PgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.029 [XNIO-1 task-1] G2OPILUQR8yIvDFfNo5PgQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.029 [XNIO-1 task-1] G2OPILUQR8yIvDFfNo5PgQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/c4d5543d, base path is set to: null +16:40:54.029 [XNIO-1 task-1] G2OPILUQR8yIvDFfNo5PgQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c4d5543d", "c4d5543d", userId) +16:40:54.035 [XNIO-1 task-1] S8oMOFkJTde91lOKptf6tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.035 [XNIO-1 task-1] S8oMOFkJTde91lOKptf6tg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.035 [XNIO-1 task-1] S8oMOFkJTde91lOKptf6tg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.102 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e3176b9c +16:40:54.103 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e3176b9c +16:40:54.108 [XNIO-1 task-1] f3vUL81CTT6V0HYt7dAZ_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.108 [XNIO-1 task-1] f3vUL81CTT6V0HYt7dAZ_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.108 [XNIO-1 task-1] f3vUL81CTT6V0HYt7dAZ_Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.109 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e3176b9c +16:40:54.115 [XNIO-1 task-1] PdNuFV9mSXSSHNOD07eIag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.115 [XNIO-1 task-1] PdNuFV9mSXSSHNOD07eIag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.115 [XNIO-1 task-1] PdNuFV9mSXSSHNOD07eIag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.115 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e3176b9c +16:40:54.120 [XNIO-1 task-1] ZINz_ICmSQ-fMI2Z2thaQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.120 [XNIO-1 task-1] ZINz_ICmSQ-fMI2Z2thaQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.120 [XNIO-1 task-1] ZINz_ICmSQ-fMI2Z2thaQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.120 [hz._hzInstance_1_dev.partition-operation.thread-11] DEBUG c.networknt.oauth.cache.UserMapStore load - Load:e3176b9c +16:40:54.125 [XNIO-1 task-1] dSVUBpW7QLWfDmrSIK3u1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e3176b9c +16:40:54.125 [XNIO-1 task-1] dSVUBpW7QLWfDmrSIK3u1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.125 [XNIO-1 task-1] dSVUBpW7QLWfDmrSIK3u1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.125 [XNIO-1 task-1] dSVUBpW7QLWfDmrSIK3u1A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e3176b9c +16:40:54.127 [XNIO-1 task-1] sdvHaKpZRuOL2CFRxg9Psg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e3176b9c, base path is set to: null +16:40:54.127 [XNIO-1 task-1] sdvHaKpZRuOL2CFRxg9Psg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.127 [XNIO-1 task-1] sdvHaKpZRuOL2CFRxg9Psg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.127 [XNIO-1 task-1] sdvHaKpZRuOL2CFRxg9Psg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e3176b9c, base path is set to: null +16:40:54.127 [XNIO-1 task-1] sdvHaKpZRuOL2CFRxg9Psg DEBUG com.networknt.schema.TypeValidator debug - validate( "e3176b9c", "e3176b9c", userId) +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, requestBody) +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, requestBody) +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG com.networknt.schema.TypeValidator debug - validate( "65dc6e4e-04b6-4a72-834e-44b856cb", {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, requestBody.lastName) +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG com.networknt.schema.FormatValidator debug - validate( "f530f34e-f4a0-41ac-ab61-4d22349c52a5", {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, requestBody.password) +16:40:54.132 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, requestBody.userType) +16:40:54.133 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, requestBody) +16:40:54.133 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, {"userId":"e865ecc6","userType":"admin","firstName":"fc49bc2d-5e6f-4114-bfc0-236d160a","lastName":"65dc6e4e-04b6-4a72-834e-44b856cb","email":"f06a124b-bd59-4731-80ef-04ce24d5b091","password":"f530f34e-f4a0-41ac-ab61-4d22349c52a5"}, requestBody) +16:40:54.134 [XNIO-1 task-1] 3dHUK7qtRL6MTpEdOqaA_g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password f530f34e-f4a0-41ac-ab61-4d22349c52a5 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:54.143 [XNIO-1 task-1] 7D4PohBzQ7eKdLNdt7FOOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.143 [XNIO-1 task-1] 7D4PohBzQ7eKdLNdt7FOOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.143 [XNIO-1 task-1] 7D4PohBzQ7eKdLNdt7FOOw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.144 [XNIO-1 task-1] 7D4PohBzQ7eKdLNdt7FOOw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.155 [XNIO-1 task-1] uQvKfAsrRHSOQV0XBnCNmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.155 [XNIO-1 task-1] uQvKfAsrRHSOQV0XBnCNmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.155 [XNIO-1 task-1] uQvKfAsrRHSOQV0XBnCNmw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.155 [XNIO-1 task-1] uQvKfAsrRHSOQV0XBnCNmw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.160 [XNIO-1 task-1] KTyRgk4fR9Wwi6RIheBqQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.161 [XNIO-1 task-1] KTyRgk4fR9Wwi6RIheBqQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.161 [XNIO-1 task-1] KTyRgk4fR9Wwi6RIheBqQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.169 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:53d52b34 +16:40:54.183 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.184 [XNIO-1 task-1] TeOmE-GwTTWOImpqb87pbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.184 [XNIO-1 task-1] TeOmE-GwTTWOImpqb87pbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.184 [XNIO-1 task-1] TeOmE-GwTTWOImpqb87pbQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.184 [XNIO-1 task-1] TeOmE-GwTTWOImpqb87pbQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.193 [XNIO-1 task-1] uPfR-Pw8Qa-3l84Xwo5PTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/53d52b34 +16:40:54.193 [XNIO-1 task-1] uPfR-Pw8Qa-3l84Xwo5PTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.193 [XNIO-1 task-1] uPfR-Pw8Qa-3l84Xwo5PTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.193 [XNIO-1 task-1] uPfR-Pw8Qa-3l84Xwo5PTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/53d52b34 +16:40:54.194 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:53d52b34 +16:40:54.202 [XNIO-1 task-1] LNGoq_BETWmxt7uDH6fCcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.202 [XNIO-1 task-1] LNGoq_BETWmxt7uDH6fCcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.202 [XNIO-1 task-1] LNGoq_BETWmxt7uDH6fCcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.202 [XNIO-1 task-1] LNGoq_BETWmxt7uDH6fCcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.207 [XNIO-1 task-1] smls4DmDRa6VZ3G7EXu74g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.207 [XNIO-1 task-1] smls4DmDRa6VZ3G7EXu74g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.207 [XNIO-1 task-1] smls4DmDRa6VZ3G7EXu74g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.222 [XNIO-1 task-1] LPkOyZh7Q4qR95GndZboLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.222 [XNIO-1 task-1] LPkOyZh7Q4qR95GndZboLw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.222 [XNIO-1 task-1] LPkOyZh7Q4qR95GndZboLw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.235 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9a71dcbc-71cd-42f4-9002-87be8e337e8a +16:40:54.237 [XNIO-1 task-1] ko5GtRJwS2mms4QyGMwBHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.237 [XNIO-1 task-1] ko5GtRJwS2mms4QyGMwBHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.237 [XNIO-1 task-1] ko5GtRJwS2mms4QyGMwBHg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.246 [XNIO-1 task-1] EJD18pkETFuz1AAS88rxsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.247 [XNIO-1 task-1] EJD18pkETFuz1AAS88rxsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.247 [XNIO-1 task-1] EJD18pkETFuz1AAS88rxsg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, requestBody) +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aad5def2-274a-4ecf-a3ce-b79e0ea9", {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, requestBody.firstName) +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8", {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, requestBody.password) +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, requestBody) +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, requestBody.userType) +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a758d38a", {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, requestBody.userId) +16:40:54.255 [XNIO-1 task-1] OWjgboNNRauhMtWf_7TRYQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3b3b35b8-9b9b-40fb-a674-d16bdfdca215", {"userId":"a758d38a","userType":"admin","firstName":"aad5def2-274a-4ecf-a3ce-b79e0ea9","lastName":"b0be6637-c292-4ea6-a351-334a4ab8","email":"3b3b35b8-9b9b-40fb-a674-d16bdfdca215","password":"4de91bd3-0ab9-41ee-9a2e-1ff71e09dbf8"}, requestBody.email) +16:40:54.259 [XNIO-1 task-1] rcgmPEwzSJeiL0SqutD_kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/131044c3, base path is set to: null +16:40:54.259 [XNIO-1 task-1] rcgmPEwzSJeiL0SqutD_kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.260 [XNIO-1 task-1] rcgmPEwzSJeiL0SqutD_kQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.260 [XNIO-1 task-1] rcgmPEwzSJeiL0SqutD_kQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/131044c3, base path is set to: null +16:40:54.260 [XNIO-1 task-1] rcgmPEwzSJeiL0SqutD_kQ DEBUG com.networknt.schema.TypeValidator debug - validate( "131044c3", "131044c3", userId) +16:40:54.267 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d994ac2a +16:40:54.267 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.267 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.267 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:54.268 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d994ac2a +16:40:54.268 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8","newPassword":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPasswordConfirm":"097b3549-fe1b-4bec-8387-a216d7f33ea3"}, {"password":"fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8","newPassword":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPasswordConfirm":"097b3549-fe1b-4bec-8387-a216d7f33ea3"}, requestBody) +16:40:54.270 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8","newPassword":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPasswordConfirm":"097b3549-fe1b-4bec-8387-a216d7f33ea3"}, {"password":"fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8","newPassword":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPasswordConfirm":"097b3549-fe1b-4bec-8387-a216d7f33ea3"}, requestBody) +16:40:54.270 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG com.networknt.schema.FormatValidator debug - validate( "097b3549-fe1b-4bec-8387-a216d7f33ea3", {"password":"fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8","newPassword":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPasswordConfirm":"097b3549-fe1b-4bec-8387-a216d7f33ea3"}, requestBody.newPasswordConfirm) +16:40:54.270 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG com.networknt.schema.FormatValidator debug - validate( "fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8", {"password":"fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8","newPassword":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPasswordConfirm":"097b3549-fe1b-4bec-8387-a216d7f33ea3"}, requestBody.password) +16:40:54.270 [XNIO-1 task-1] Q9zVG664Rnakwa-aMxvWxg DEBUG com.networknt.schema.FormatValidator debug - validate( "097b3549-fe1b-4bec-8387-a216d7f33ea3", {"password":"fc3bb3cf-a91e-4a35-a8cf-193d3a3ae6b8","newPassword":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPasswordConfirm":"097b3549-fe1b-4bec-8387-a216d7f33ea3"}, requestBody.newPassword) +16:40:54.283 [hz._hzInstance_1_dev.partition-operation.thread-4] DEBUG c.n.oauth.cache.ClientMapStore store - Store:6f4e5efa-df8d-4a6d-be4d-cf5feb97db0b +16:40:54.289 [XNIO-1 task-1] YH1fuB4rRMuOoz7sGpcKLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d994ac2a, base path is set to: null +16:40:54.290 [XNIO-1 task-1] YH1fuB4rRMuOoz7sGpcKLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.290 [XNIO-1 task-1] YH1fuB4rRMuOoz7sGpcKLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.290 [XNIO-1 task-1] YH1fuB4rRMuOoz7sGpcKLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d994ac2a, base path is set to: null +16:40:54.290 [XNIO-1 task-1] YH1fuB4rRMuOoz7sGpcKLQ DEBUG com.networknt.schema.TypeValidator debug - validate( "d994ac2a", "d994ac2a", userId) +16:40:54.297 [XNIO-1 task-1] MJS74XznQGuhoQ91PdzfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d994ac2a +16:40:54.297 [XNIO-1 task-1] MJS74XznQGuhoQ91PdzfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.298 [XNIO-1 task-1] MJS74XznQGuhoQ91PdzfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.298 [XNIO-1 task-1] MJS74XznQGuhoQ91PdzfPA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/d994ac2a +16:40:54.298 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65aa562e +16:40:54.299 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65aa562e +16:40:54.301 [XNIO-1 task-1] eF47eKs3QWeThznY9HI5Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.301 [XNIO-1 task-1] eF47eKs3QWeThznY9HI5Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.301 [XNIO-1 task-1] eF47eKs3QWeThznY9HI5Bg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.304 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore store - Store:a808b258-b281-42cc-a17a-c50dc12a30e0 +16:40:54.307 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.307 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, requestBody) +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, requestBody) +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG com.networknt.schema.TypeValidator debug - validate( "69af9f5d-4ddf-4d17-9890-c36cff2a", {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, requestBody.lastName) +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG com.networknt.schema.FormatValidator debug - validate( "aa0a4899-77fb-4a68-a579-e40f28d6f2e7", {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, requestBody.password) +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, requestBody.userType) +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, requestBody) +16:40:54.308 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, {"userId":"c1257ed0","userType":"admin","firstName":"87912fc4-3187-4080-b398-9fa7e169","lastName":"69af9f5d-4ddf-4d17-9890-c36cff2a","email":"34bdee46-35b1-4ec0-aa5c-4f51be848c2a","password":"aa0a4899-77fb-4a68-a579-e40f28d6f2e7"}, requestBody) +16:40:54.310 [XNIO-1 task-1] hrIsOn-cR2mBYCY-N7I6LA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password aa0a4899-77fb-4a68-a579-e40f28d6f2e7 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:54.313 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d994ac2a +16:40:54.313 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.313 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.313 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:54.314 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d994ac2a +16:40:54.314 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPassword":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPasswordConfirm":"383e74fa-b717-49e5-bdb8-67d6ebe198af"}, {"password":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPassword":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPasswordConfirm":"383e74fa-b717-49e5-bdb8-67d6ebe198af"}, requestBody) +16:40:54.314 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPassword":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPasswordConfirm":"383e74fa-b717-49e5-bdb8-67d6ebe198af"}, {"password":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPassword":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPasswordConfirm":"383e74fa-b717-49e5-bdb8-67d6ebe198af"}, requestBody) +16:40:54.314 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "383e74fa-b717-49e5-bdb8-67d6ebe198af", {"password":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPassword":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPasswordConfirm":"383e74fa-b717-49e5-bdb8-67d6ebe198af"}, requestBody.newPasswordConfirm) +16:40:54.314 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "097b3549-fe1b-4bec-8387-a216d7f33ea3", {"password":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPassword":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPasswordConfirm":"383e74fa-b717-49e5-bdb8-67d6ebe198af"}, requestBody.password) +16:40:54.314 [XNIO-1 task-1] S-PM2-DvTy-lm4jBE-B2Uw DEBUG com.networknt.schema.FormatValidator debug - validate( "383e74fa-b717-49e5-bdb8-67d6ebe198af", {"password":"097b3549-fe1b-4bec-8387-a216d7f33ea3","newPassword":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPasswordConfirm":"383e74fa-b717-49e5-bdb8-67d6ebe198af"}, requestBody.newPassword) +16:40:54.333 [XNIO-1 task-1] z72LUR7-SgyQPoQmSrzXaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.333 [XNIO-1 task-1] z72LUR7-SgyQPoQmSrzXaA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.333 [XNIO-1 task-1] z72LUR7-SgyQPoQmSrzXaA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.333 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea35953 +16:40:54.335 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea35953 +16:40:54.350 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cd9360b0 +16:40:54.350 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.350 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.350 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:54.350 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/cd9360b0 +16:40:54.351 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f855fed1-099b-4adf-88cc-db5d726ab210","newPassword":"f6161fe4-7eed-410a-8239-170abf7eecb4","newPasswordConfirm":"f6161fe4-7eed-410a-8239-170abf7eecb4"}, {"password":"f855fed1-099b-4adf-88cc-db5d726ab210","newPassword":"f6161fe4-7eed-410a-8239-170abf7eecb4","newPasswordConfirm":"f6161fe4-7eed-410a-8239-170abf7eecb4"}, requestBody) +16:40:54.351 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f855fed1-099b-4adf-88cc-db5d726ab210","newPassword":"f6161fe4-7eed-410a-8239-170abf7eecb4","newPasswordConfirm":"f6161fe4-7eed-410a-8239-170abf7eecb4"}, {"password":"f855fed1-099b-4adf-88cc-db5d726ab210","newPassword":"f6161fe4-7eed-410a-8239-170abf7eecb4","newPasswordConfirm":"f6161fe4-7eed-410a-8239-170abf7eecb4"}, requestBody) +16:40:54.351 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG com.networknt.schema.FormatValidator debug - validate( "f6161fe4-7eed-410a-8239-170abf7eecb4", {"password":"f855fed1-099b-4adf-88cc-db5d726ab210","newPassword":"f6161fe4-7eed-410a-8239-170abf7eecb4","newPasswordConfirm":"f6161fe4-7eed-410a-8239-170abf7eecb4"}, requestBody.newPasswordConfirm) +16:40:54.351 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG com.networknt.schema.FormatValidator debug - validate( "f855fed1-099b-4adf-88cc-db5d726ab210", {"password":"f855fed1-099b-4adf-88cc-db5d726ab210","newPassword":"f6161fe4-7eed-410a-8239-170abf7eecb4","newPasswordConfirm":"f6161fe4-7eed-410a-8239-170abf7eecb4"}, requestBody.password) +16:40:54.351 [XNIO-1 task-1] O0eiKiGvQ42mPZsjdOqVnA DEBUG com.networknt.schema.FormatValidator debug - validate( "f6161fe4-7eed-410a-8239-170abf7eecb4", {"password":"f855fed1-099b-4adf-88cc-db5d726ab210","newPassword":"f6161fe4-7eed-410a-8239-170abf7eecb4","newPasswordConfirm":"f6161fe4-7eed-410a-8239-170abf7eecb4"}, requestBody.newPassword) +16:40:54.369 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:40388e7d-bb0b-44f6-8f6d-c6511eb22d6a +16:40:54.373 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d994ac2a +16:40:54.373 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.373 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.373 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:54.374 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/d994ac2a +16:40:54.374 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPassword":"274c9c87-3e92-4ed7-95ae-f7965f4229cf","newPasswordConfirm":"274c9c87-3e92-4ed7-95ae-f7965f4229cf"}, {"password":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPassword":"274c9c87-3e92-4ed7-95ae-f7965f4229cf","newPasswordConfirm":"274c9c87-3e92-4ed7-95ae-f7965f4229cf"}, requestBody) +16:40:54.374 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPassword":"274c9c87-3e92-4ed7-95ae-f7965f4229cf","newPasswordConfirm":"274c9c87-3e92-4ed7-95ae-f7965f4229cf"}, {"password":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPassword":"274c9c87-3e92-4ed7-95ae-f7965f4229cf","newPasswordConfirm":"274c9c87-3e92-4ed7-95ae-f7965f4229cf"}, requestBody) +16:40:54.374 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG com.networknt.schema.FormatValidator debug - validate( "274c9c87-3e92-4ed7-95ae-f7965f4229cf", {"password":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPassword":"274c9c87-3e92-4ed7-95ae-f7965f4229cf","newPasswordConfirm":"274c9c87-3e92-4ed7-95ae-f7965f4229cf"}, requestBody.newPasswordConfirm) +16:40:54.374 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG com.networknt.schema.FormatValidator debug - validate( "383e74fa-b717-49e5-bdb8-67d6ebe198af", {"password":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPassword":"274c9c87-3e92-4ed7-95ae-f7965f4229cf","newPasswordConfirm":"274c9c87-3e92-4ed7-95ae-f7965f4229cf"}, requestBody.password) +16:40:54.374 [XNIO-1 task-1] xwwZA9hsRuCy6DN8jLRrwg DEBUG com.networknt.schema.FormatValidator debug - validate( "274c9c87-3e92-4ed7-95ae-f7965f4229cf", {"password":"383e74fa-b717-49e5-bdb8-67d6ebe198af","newPassword":"274c9c87-3e92-4ed7-95ae-f7965f4229cf","newPasswordConfirm":"274c9c87-3e92-4ed7-95ae-f7965f4229cf"}, requestBody.newPassword) +16:40:54.400 [XNIO-1 task-1] pNTn7rJ8Sti-7eVLQweE7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.400 [XNIO-1 task-1] pNTn7rJ8Sti-7eVLQweE7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.400 [XNIO-1 task-1] pNTn7rJ8Sti-7eVLQweE7A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.400 [XNIO-1 task-1] pNTn7rJ8Sti-7eVLQweE7A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.411 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.411 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.411 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.411 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, requestBody) +16:40:54.411 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "42ecd3bd-2e63-48ac-8031-7977728e", {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, requestBody.firstName) +16:40:54.411 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "395cc1d3-9131-4aaf-a2ae-329f2aa2ef59", {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, requestBody.password) +16:40:54.412 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, requestBody) +16:40:54.412 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, requestBody.userType) +16:40:54.412 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "aabfc5e8", {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, requestBody.userId) +16:40:54.412 [XNIO-1 task-1] 8GEg9OFBR3WgA5-SM3IhvQ DEBUG com.networknt.schema.TypeValidator debug - validate( "35192483-3e98-4969-a4e8-d21e395f8dcd", {"userId":"aabfc5e8","userType":"admin","firstName":"42ecd3bd-2e63-48ac-8031-7977728e","lastName":"4bed9f20-562f-44c9-8dc2-8bbfdaa6","email":"35192483-3e98-4969-a4e8-d21e395f8dcd","password":"395cc1d3-9131-4aaf-a2ae-329f2aa2ef59"}, requestBody.email) +16:40:54.421 [XNIO-1 task-1] oSbAUYROQsKU0Wi1jPwFLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d994ac2a, base path is set to: null +16:40:54.421 [XNIO-1 task-1] oSbAUYROQsKU0Wi1jPwFLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.422 [XNIO-1 task-1] oSbAUYROQsKU0Wi1jPwFLg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.422 [XNIO-1 task-1] oSbAUYROQsKU0Wi1jPwFLg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/d994ac2a, base path is set to: null +16:40:54.422 [XNIO-1 task-1] oSbAUYROQsKU0Wi1jPwFLg DEBUG com.networknt.schema.TypeValidator debug - validate( "d994ac2a", "d994ac2a", userId) +16:40:54.431 [XNIO-1 task-1] X1aPvxEZRgOu3Hbkj51wCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.431 [XNIO-1 task-1] X1aPvxEZRgOu3Hbkj51wCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.431 [XNIO-1 task-1] X1aPvxEZRgOu3Hbkj51wCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.432 [XNIO-1 task-1] X1aPvxEZRgOu3Hbkj51wCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.437 [XNIO-1 task-1] XB2OxCmORYeuQqpmiNciTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cd9360b0 +16:40:54.437 [XNIO-1 task-1] XB2OxCmORYeuQqpmiNciTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.437 [XNIO-1 task-1] XB2OxCmORYeuQqpmiNciTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.437 [XNIO-1 task-1] XB2OxCmORYeuQqpmiNciTQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/cd9360b0 +16:40:54.445 [XNIO-1 task-1] yZgeGJ4sTBqVDpY5P4jqnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.445 [XNIO-1 task-1] yZgeGJ4sTBqVDpY5P4jqnA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.445 [XNIO-1 task-1] yZgeGJ4sTBqVDpY5P4jqnA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.445 [XNIO-1 task-1] yZgeGJ4sTBqVDpY5P4jqnA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/131044c3, base path is set to: null +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/131044c3, base path is set to: null +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG com.networknt.schema.TypeValidator debug - validate( "131044c3", "131044c3", userId) +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"e94e5e3b-30c6-4551-b604-effb8582372d","newPassword":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPasswordConfirm":"068fb889-4b8b-452d-bd01-2a2ef8cc315d"}, {"password":"e94e5e3b-30c6-4551-b604-effb8582372d","newPassword":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPasswordConfirm":"068fb889-4b8b-452d-bd01-2a2ef8cc315d"}, requestBody) +16:40:54.454 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG com.networknt.schema.TypeValidator debug - validate( "068fb889-4b8b-452d-bd01-2a2ef8cc315d", {"password":"e94e5e3b-30c6-4551-b604-effb8582372d","newPassword":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPasswordConfirm":"068fb889-4b8b-452d-bd01-2a2ef8cc315d"}, requestBody.newPasswordConfirm) +16:40:54.455 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG com.networknt.schema.TypeValidator debug - validate( "e94e5e3b-30c6-4551-b604-effb8582372d", {"password":"e94e5e3b-30c6-4551-b604-effb8582372d","newPassword":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPasswordConfirm":"068fb889-4b8b-452d-bd01-2a2ef8cc315d"}, requestBody.password) +16:40:54.455 [XNIO-1 task-1] tL38r0tqScqlmMeT1VLmGA DEBUG com.networknt.schema.TypeValidator debug - validate( "068fb889-4b8b-452d-bd01-2a2ef8cc315d", {"password":"e94e5e3b-30c6-4551-b604-effb8582372d","newPassword":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPasswordConfirm":"068fb889-4b8b-452d-bd01-2a2ef8cc315d"}, requestBody.newPassword) +16:40:54.464 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6cac02fe-7127-42e1-b7d7-85fb710a5a95 +16:40:54.465 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore load - Load:6cac02fe-7127-42e1-b7d7-85fb710a5a95 +16:40:54.478 [XNIO-1 task-1] dJg16IOgSW-TPYLkaX3E_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/131044c3 +16:40:54.478 [XNIO-1 task-1] dJg16IOgSW-TPYLkaX3E_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.478 [XNIO-1 task-1] dJg16IOgSW-TPYLkaX3E_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.478 [XNIO-1 task-1] dJg16IOgSW-TPYLkaX3E_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/131044c3 +16:40:54.482 [XNIO-1 task-1] aOlNefeRR4-skBEH4iwmKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.482 [XNIO-1 task-1] aOlNefeRR4-skBEH4iwmKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.482 [XNIO-1 task-1] aOlNefeRR4-skBEH4iwmKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.494 [XNIO-1 task-1] s8QCxHOnTl6v5MX3mUOORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.495 [XNIO-1 task-1] s8QCxHOnTl6v5MX3mUOORQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.495 [XNIO-1 task-1] s8QCxHOnTl6v5MX3mUOORQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.496 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:296f7b5a-b210-4824-8bc8-0f1fc37252d0 +16:40:54.503 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/131044c3 +16:40:54.503 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.503 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.503 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:54.503 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/131044c3 +16:40:54.504 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPassword":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPasswordConfirm":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe"}, {"password":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPassword":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPasswordConfirm":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe"}, requestBody) +16:40:54.504 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPassword":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPasswordConfirm":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe"}, {"password":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPassword":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPasswordConfirm":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe"}, requestBody) +16:40:54.504 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG com.networknt.schema.FormatValidator debug - validate( "d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe", {"password":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPassword":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPasswordConfirm":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe"}, requestBody.newPasswordConfirm) +16:40:54.504 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG com.networknt.schema.FormatValidator debug - validate( "068fb889-4b8b-452d-bd01-2a2ef8cc315d", {"password":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPassword":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPasswordConfirm":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe"}, requestBody.password) +16:40:54.504 [XNIO-1 task-1] ywUyBVElS-WrYv-I37a4cA DEBUG com.networknt.schema.FormatValidator debug - validate( "d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe", {"password":"068fb889-4b8b-452d-bd01-2a2ef8cc315d","newPassword":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPasswordConfirm":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe"}, requestBody.newPassword) +16:40:54.522 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ae96b4eb +16:40:54.528 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.528 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, requestBody) +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, requestBody) +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG com.networknt.schema.TypeValidator debug - validate( "2a5b06d0-7fb7-476f-89ea-d9bea2fe", {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, requestBody.lastName) +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG com.networknt.schema.FormatValidator debug - validate( "d031b008-5df0-4206-9ed8-a109688e5ee0", {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, requestBody.password) +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, requestBody.userType) +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, requestBody) +16:40:54.529 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, {"userId":"23ff4863","userType":"admin","firstName":"a53dca6c-b80e-4d6d-bacd-2aa3321e","lastName":"2a5b06d0-7fb7-476f-89ea-d9bea2fe","email":"a4d3b70b-e5ee-4df6-94a8-e165eef225d2","password":"d031b008-5df0-4206-9ed8-a109688e5ee0"}, requestBody) +16:40:54.533 [XNIO-1 task-1] 9LsuLwPZSWuObvlRg7yLbA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password d031b008-5df0-4206-9ed8-a109688e5ee0 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:54.535 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.535 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.536 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.537 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, requestBody) +16:40:54.537 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG com.networknt.schema.TypeValidator debug - validate( "59d42d57-fff5-4e69-95f3-fe5267f0", {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, requestBody.firstName) +16:40:54.537 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG com.networknt.schema.TypeValidator debug - validate( "cfd45287-979a-49ae-a865-64a6186322aa", {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, requestBody.password) +16:40:54.537 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, requestBody) +16:40:54.537 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, requestBody.userType) +16:40:54.537 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG com.networknt.schema.TypeValidator debug - validate( "3e5cb33f", {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, requestBody.userId) +16:40:54.537 [XNIO-1 task-1] FHuUBGusR0y2LCnuyM-0vA DEBUG com.networknt.schema.TypeValidator debug - validate( "b5baeb9c-408b-4d7f-900b-6805730ef15c", {"userId":"3e5cb33f","userType":"admin","firstName":"59d42d57-fff5-4e69-95f3-fe5267f0","lastName":"5f1589c3-6f6e-41e0-8c99-602a0afb","email":"b5baeb9c-408b-4d7f-900b-6805730ef15c","password":"cfd45287-979a-49ae-a865-64a6186322aa"}, requestBody.email) +16:40:54.547 [XNIO-1 task-1] y9tnmXqoQpmfUIs34aVScw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.547 [XNIO-1 task-1] y9tnmXqoQpmfUIs34aVScw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.547 [XNIO-1 task-1] y9tnmXqoQpmfUIs34aVScw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.547 [XNIO-1 task-1] y9tnmXqoQpmfUIs34aVScw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.551 [XNIO-1 task-1] yYBCd4TiSjWfF9Js6LcpeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/131044c3, base path is set to: null +16:40:54.551 [XNIO-1 task-1] yYBCd4TiSjWfF9Js6LcpeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.551 [XNIO-1 task-1] yYBCd4TiSjWfF9Js6LcpeA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.551 [XNIO-1 task-1] yYBCd4TiSjWfF9Js6LcpeA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/131044c3, base path is set to: null +16:40:54.551 [XNIO-1 task-1] yYBCd4TiSjWfF9Js6LcpeA DEBUG com.networknt.schema.TypeValidator debug - validate( "131044c3", "131044c3", userId) +16:40:54.556 [XNIO-1 task-1] z1lCuMlPSLStTzQy65EZPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.556 [XNIO-1 task-1] z1lCuMlPSLStTzQy65EZPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.556 [XNIO-1 task-1] z1lCuMlPSLStTzQy65EZPQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.565 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65aa562e +16:40:54.580 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.580 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.582 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.582 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:5c400c82-1250-4546-8114-864bfc49944e +16:40:54.582 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, requestBody) +16:40:54.582 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e95b1d3b-9f28-494d-8d56-723fa1ac", {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, requestBody.firstName) +16:40:54.582 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "4c801164-2cb8-48cf-959d-c06dbdb3a0be", {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, requestBody.password) +16:40:54.583 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, requestBody) +16:40:54.584 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, requestBody.userType) +16:40:54.584 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a77d4932", {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, requestBody.userId) +16:40:54.584 [XNIO-1 task-1] 8KpKsdUCQ0-2YgkAS4-LFQ DEBUG com.networknt.schema.TypeValidator debug - validate( "c59599d5-74bd-4fbb-b864-b8825cc362e2", {"userId":"a77d4932","userType":"admin","firstName":"e95b1d3b-9f28-494d-8d56-723fa1ac","lastName":"2fb800f9-ab1f-4157-8b2c-b4144849","email":"c59599d5-74bd-4fbb-b864-b8825cc362e2","password":"4c801164-2cb8-48cf-959d-c06dbdb3a0be"}, requestBody.email) +16:40:54.591 [XNIO-1 task-1] XELkSZNURVWt8xxZho3Irg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.591 [XNIO-1 task-1] XELkSZNURVWt8xxZho3Irg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.591 [XNIO-1 task-1] XELkSZNURVWt8xxZho3Irg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.600 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:5c400c82-1250-4546-8114-864bfc49944e +16:40:54.601 [XNIO-1 task-1] 7g74tb59RleofsaH1slCVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.601 [XNIO-1 task-1] 7g74tb59RleofsaH1slCVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.601 [XNIO-1 task-1] 7g74tb59RleofsaH1slCVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.606 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0b29515 +16:40:54.614 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:62121612 +16:40:54.614 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:62121612 +16:40:54.619 [XNIO-1 task-1] V04kfm5nTea5sbbZ1wrXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/828d887c +16:40:54.619 [XNIO-1 task-1] V04kfm5nTea5sbbZ1wrXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.619 [XNIO-1 task-1] V04kfm5nTea5sbbZ1wrXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.619 [XNIO-1 task-1] V04kfm5nTea5sbbZ1wrXYg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/828d887c +16:40:54.624 [XNIO-1 task-1] nZO--MzYRZCbcDMpEuG5UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bd915d3c, base path is set to: null +16:40:54.624 [XNIO-1 task-1] nZO--MzYRZCbcDMpEuG5UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.624 [XNIO-1 task-1] nZO--MzYRZCbcDMpEuG5UQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.624 [XNIO-1 task-1] nZO--MzYRZCbcDMpEuG5UQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/bd915d3c, base path is set to: null +16:40:54.625 [XNIO-1 task-1] nZO--MzYRZCbcDMpEuG5UQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bd915d3c", "bd915d3c", userId) +16:40:54.635 [XNIO-1 task-1] bcxWYrTaSDaM-ruLfqDvQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/131044c3 +16:40:54.635 [XNIO-1 task-1] bcxWYrTaSDaM-ruLfqDvQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.635 [XNIO-1 task-1] bcxWYrTaSDaM-ruLfqDvQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.635 [XNIO-1 task-1] bcxWYrTaSDaM-ruLfqDvQg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/131044c3 +16:40:54.642 [XNIO-1 task-1] YtHw5qmGQ9eYFcZepzMPhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.642 [XNIO-1 task-1] YtHw5qmGQ9eYFcZepzMPhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.642 [XNIO-1 task-1] YtHw5qmGQ9eYFcZepzMPhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.642 [XNIO-1 task-1] YtHw5qmGQ9eYFcZepzMPhg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.655 [XNIO-1 task-1] S99AoPd0T6mYceHKX1GeLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.655 [XNIO-1 task-1] S99AoPd0T6mYceHKX1GeLQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.655 [XNIO-1 task-1] S99AoPd0T6mYceHKX1GeLQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.662 [XNIO-1 task-1] aYFAhMq2Rty08zwAwdYITw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.663 [XNIO-1 task-1] aYFAhMq2Rty08zwAwdYITw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.663 [XNIO-1 task-1] aYFAhMq2Rty08zwAwdYITw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.663 [XNIO-1 task-1] aYFAhMq2Rty08zwAwdYITw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/131044c3, base path is set to: null +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/131044c3, base path is set to: null +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG com.networknt.schema.TypeValidator debug - validate( "131044c3", "131044c3", userId) +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPassword":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f","newPasswordConfirm":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f"}, {"password":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPassword":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f","newPasswordConfirm":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f"}, requestBody) +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG com.networknt.schema.TypeValidator debug - validate( "d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f", {"password":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPassword":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f","newPasswordConfirm":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f"}, requestBody.newPasswordConfirm) +16:40:54.673 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG com.networknt.schema.TypeValidator debug - validate( "d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe", {"password":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPassword":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f","newPasswordConfirm":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f"}, requestBody.password) +16:40:54.674 [XNIO-1 task-1] ozUrHPABSZW70tgq8f14Og DEBUG com.networknt.schema.TypeValidator debug - validate( "d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f", {"password":"d0eab6d8-f2b6-4cc7-8659-fdd2b238fbbe","newPassword":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f","newPasswordConfirm":"d9c3d9f6-c8dc-4348-bf8d-28d7e04d493f"}, requestBody.newPassword) +16:40:54.696 [XNIO-1 task-1] 3iMR1cxBQpa-nqzugRSnbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.696 [XNIO-1 task-1] 3iMR1cxBQpa-nqzugRSnbg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.696 [XNIO-1 task-1] 3iMR1cxBQpa-nqzugRSnbg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.709 [XNIO-1 task-1] GEHbMDO0TdSQN9WrqLvMRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/828d887c, base path is set to: null +16:40:54.709 [XNIO-1 task-1] GEHbMDO0TdSQN9WrqLvMRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.709 [XNIO-1 task-1] GEHbMDO0TdSQN9WrqLvMRw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.709 [XNIO-1 task-1] GEHbMDO0TdSQN9WrqLvMRw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/828d887c, base path is set to: null +16:40:54.710 [XNIO-1 task-1] GEHbMDO0TdSQN9WrqLvMRw DEBUG com.networknt.schema.TypeValidator debug - validate( "828d887c", "828d887c", userId) +16:40:54.717 [XNIO-1 task-1] a6MdCcD6Qfm0A1YD7WXHsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/131044c3 +16:40:54.717 [XNIO-1 task-1] a6MdCcD6Qfm0A1YD7WXHsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.717 [XNIO-1 task-1] a6MdCcD6Qfm0A1YD7WXHsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.718 [XNIO-1 task-1] a6MdCcD6Qfm0A1YD7WXHsA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/131044c3 +16:40:54.728 [XNIO-1 task-1] LiNOaO1OT92YN_qpXnG8Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.728 [XNIO-1 task-1] LiNOaO1OT92YN_qpXnG8Tw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.728 [XNIO-1 task-1] LiNOaO1OT92YN_qpXnG8Tw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.743 [XNIO-1 task-1] EJQRMA6XQUuXe2XJXvbnWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.743 [XNIO-1 task-1] EJQRMA6XQUuXe2XJXvbnWQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.743 [XNIO-1 task-1] EJQRMA6XQUuXe2XJXvbnWQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.743 [XNIO-1 task-1] EJQRMA6XQUuXe2XJXvbnWQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.749 [XNIO-1 task-1] gOSMGXK4TyOhfik4EWMmng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/685286e7, base path is set to: null +16:40:54.749 [XNIO-1 task-1] gOSMGXK4TyOhfik4EWMmng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.749 [XNIO-1 task-1] gOSMGXK4TyOhfik4EWMmng DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:54.750 [XNIO-1 task-1] gOSMGXK4TyOhfik4EWMmng DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/685286e7, base path is set to: null +16:40:54.750 [XNIO-1 task-1] gOSMGXK4TyOhfik4EWMmng DEBUG com.networknt.schema.TypeValidator debug - validate( "685286e7", "685286e7", userId) +16:40:54.751 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:f0b29515 +16:40:54.760 [XNIO-1 task-1] n31sz000ThmmjheeoooBPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.761 [XNIO-1 task-1] n31sz000ThmmjheeoooBPg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.761 [XNIO-1 task-1] n31sz000ThmmjheeoooBPg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.761 [XNIO-1 task-1] n31sz000ThmmjheeoooBPg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:54.766 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:54.767 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.767 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.767 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.768 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, requestBody) +16:40:54.768 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG com.networknt.schema.TypeValidator debug - validate( "b074d955-9e75-405d-b99f-30b77365", {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, requestBody.firstName) +16:40:54.768 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG com.networknt.schema.TypeValidator debug - validate( "3a229bda-68db-4473-babd-a97b96132370", {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, requestBody.password) +16:40:54.768 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, requestBody) +16:40:54.768 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, requestBody.userType) +16:40:54.768 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG com.networknt.schema.TypeValidator debug - validate( "46abf5da", {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, requestBody.userId) +16:40:54.768 [XNIO-1 task-1] aWQurz77T5axlzgtWBhgmg DEBUG com.networknt.schema.TypeValidator debug - validate( "fa580d34-32cf-4c21-a5b2-4d72623d8a2e", {"userId":"46abf5da","userType":"admin","firstName":"b074d955-9e75-405d-b99f-30b77365","lastName":"cd36267a-6a7b-433e-890a-69719c61","email":"fa580d34-32cf-4c21-a5b2-4d72623d8a2e","password":"3a229bda-68db-4473-babd-a97b96132370"}, requestBody.email) +16:40:54.775 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.775 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.775 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.775 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, requestBody) +16:40:54.775 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, requestBody) +16:40:54.775 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "72c77b84-13eb-47c7-8d8d-cf4e09b2", {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, requestBody.lastName) +16:40:54.775 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG com.networknt.schema.FormatValidator debug - validate( "8b27bdb5-2006-4849-a377-aff461c709eb", {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, requestBody.password) +16:40:54.776 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, requestBody.userType) +16:40:54.776 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, requestBody) +16:40:54.776 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, {"userId":"87452398","userType":"admin","firstName":"64f7ac6a-0e86-4b58-b557-69eee3af","lastName":"72c77b84-13eb-47c7-8d8d-cf4e09b2","email":"a0f107fb-05cd-4c2a-81ab-c84957e21d80","password":"8b27bdb5-2006-4849-a377-aff461c709eb"}, requestBody) +16:40:54.777 [XNIO-1 task-1] WoEppLsnRfeF1NwinzA5Cg ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 8b27bdb5-2006-4849-a377-aff461c709eb or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:54.782 [XNIO-1 task-1] 1hVxqkdQQxaYv-oi2RpbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.782 [XNIO-1 task-1] 1hVxqkdQQxaYv-oi2RpbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.782 [XNIO-1 task-1] 1hVxqkdQQxaYv-oi2RpbHw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.792 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea35953 +16:40:54.800 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:fd7466b2 +16:40:54.807 [hz._hzInstance_1_dev.partition-operation.thread-6] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:62121612 +16:40:54.818 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fc4dcf26-05b1-4c44-a8b0-3ac84194ad88 +16:40:54.818 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:fc4dcf26-05b1-4c44-a8b0-3ac84194ad88 +16:40:54.822 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.822 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, requestBody) +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a3c6d981-60a2-495a-b8a8-01872e4e", {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, requestBody.firstName) +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c", {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, requestBody.password) +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, requestBody) +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, requestBody.userType) +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5ca87b00", {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, requestBody.userId) +16:40:54.823 [XNIO-1 task-1] KMSVnvniRHebBBn24KH7sQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0c92ba52-583f-4f22-acfa-c06022dcf8db", {"userId":"5ca87b00","userType":"admin","firstName":"a3c6d981-60a2-495a-b8a8-01872e4e","lastName":"c065556a-65f2-47de-9d83-c8ac778c","email":"0c92ba52-583f-4f22-acfa-c06022dcf8db","password":"fb0f8b91-ab21-4b3e-90d6-2c951fe0d70c"}, requestBody.email) +16:40:54.823 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:c8da43c4-caed-49dd-9d8b-6c6ec228599c +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, requestBody) +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, requestBody) +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG com.networknt.schema.TypeValidator debug - validate( "2b43ddee-27c3-4d5c-97f7-5d758fd9", {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, requestBody.lastName) +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG com.networknt.schema.FormatValidator debug - validate( "49edf0eb-279d-4bf2-868b-f60c15eac538", {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, requestBody.password) +16:40:54.830 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, requestBody.userType) +16:40:54.831 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, requestBody) +16:40:54.831 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, {"userId":"c37908c4","userType":"admin","firstName":"ef5fd62c-d8b5-4b87-a1e3-29fb6d8b","lastName":"2b43ddee-27c3-4d5c-97f7-5d758fd9","email":"68fd56ec-b3ce-4463-a511-153e4adf5450","password":"49edf0eb-279d-4bf2-868b-f60c15eac538"}, requestBody) +16:40:54.833 [XNIO-1 task-1] 874FbFtZSAa-IljZ5KUv6g ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 49edf0eb-279d-4bf2-868b-f60c15eac538 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:54.862 [XNIO-1 task-1] 7P6cWN8tR3GvLxv1178lYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.862 [XNIO-1 task-1] 7P6cWN8tR3GvLxv1178lYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.862 [XNIO-1 task-1] 7P6cWN8tR3GvLxv1178lYQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.862 [XNIO-1 task-1] 7P6cWN8tR3GvLxv1178lYQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.912 [XNIO-1 task-1] BlKM-ClRSRa07T3VpvIJdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.912 [XNIO-1 task-1] BlKM-ClRSRa07T3VpvIJdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.912 [XNIO-1 task-1] BlKM-ClRSRa07T3VpvIJdA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.925 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/86288b14 +16:40:54.925 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.925 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:54.925 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:54.925 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/86288b14 +16:40:54.925 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"f12fa5dd-b1de-427b-b0a7-627373674358","newPassword":"6d3424d7-9238-49e1-bb5d-5af252bab6cf","newPasswordConfirm":"6d3424d7-9238-49e1-bb5d-5af252bab6cf"}, {"password":"f12fa5dd-b1de-427b-b0a7-627373674358","newPassword":"6d3424d7-9238-49e1-bb5d-5af252bab6cf","newPasswordConfirm":"6d3424d7-9238-49e1-bb5d-5af252bab6cf"}, requestBody) +16:40:54.926 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"f12fa5dd-b1de-427b-b0a7-627373674358","newPassword":"6d3424d7-9238-49e1-bb5d-5af252bab6cf","newPasswordConfirm":"6d3424d7-9238-49e1-bb5d-5af252bab6cf"}, {"password":"f12fa5dd-b1de-427b-b0a7-627373674358","newPassword":"6d3424d7-9238-49e1-bb5d-5af252bab6cf","newPasswordConfirm":"6d3424d7-9238-49e1-bb5d-5af252bab6cf"}, requestBody) +16:40:54.926 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG com.networknt.schema.FormatValidator debug - validate( "6d3424d7-9238-49e1-bb5d-5af252bab6cf", {"password":"f12fa5dd-b1de-427b-b0a7-627373674358","newPassword":"6d3424d7-9238-49e1-bb5d-5af252bab6cf","newPasswordConfirm":"6d3424d7-9238-49e1-bb5d-5af252bab6cf"}, requestBody.newPasswordConfirm) +16:40:54.926 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG com.networknt.schema.FormatValidator debug - validate( "f12fa5dd-b1de-427b-b0a7-627373674358", {"password":"f12fa5dd-b1de-427b-b0a7-627373674358","newPassword":"6d3424d7-9238-49e1-bb5d-5af252bab6cf","newPasswordConfirm":"6d3424d7-9238-49e1-bb5d-5af252bab6cf"}, requestBody.password) +16:40:54.926 [XNIO-1 task-1] Ilvl5BfVRzmF682TcVDotw DEBUG com.networknt.schema.FormatValidator debug - validate( "6d3424d7-9238-49e1-bb5d-5af252bab6cf", {"password":"f12fa5dd-b1de-427b-b0a7-627373674358","newPassword":"6d3424d7-9238-49e1-bb5d-5af252bab6cf","newPasswordConfirm":"6d3424d7-9238-49e1-bb5d-5af252bab6cf"}, requestBody.newPassword) +16:40:54.941 [XNIO-1 task-1] -sJMs135RAmTf1ZGdGQTBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.941 [XNIO-1 task-1] -sJMs135RAmTf1ZGdGQTBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.941 [XNIO-1 task-1] -sJMs135RAmTf1ZGdGQTBg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.941 [XNIO-1 task-1] -sJMs135RAmTf1ZGdGQTBg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:54.949 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.949 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.949 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:54.950 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, requestBody) +16:40:54.950 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "bc49b139-8cd5-4371-96cd-dbe69f4f", {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, requestBody.firstName) +16:40:54.950 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822", {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, requestBody.password) +16:40:54.950 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, requestBody) +16:40:54.950 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, requestBody.userType) +16:40:54.950 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "05d4339a", {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, requestBody.userId) +16:40:54.950 [XNIO-1 task-1] q6uR0Q4yRfKEGBXEDF7_sg DEBUG com.networknt.schema.TypeValidator debug - validate( "24a6e9c9-5066-48e9-9f44-cf54a11b56cd", {"userId":"05d4339a","userType":"admin","firstName":"bc49b139-8cd5-4371-96cd-dbe69f4f","lastName":"5e57a132-6313-41a0-84de-ae45ba58","email":"24a6e9c9-5066-48e9-9f44-cf54a11b56cd","password":"5ffa2ba3-a3e7-4658-a059-b0b4cc4b0822"}, requestBody.email) +16:40:55.019 [XNIO-1 task-1] J3Im-6UXR9u6TR4FOz8YwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.020 [XNIO-1 task-1] J3Im-6UXR9u6TR4FOz8YwQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.020 [XNIO-1 task-1] J3Im-6UXR9u6TR4FOz8YwQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.020 [XNIO-1 task-1] J3Im-6UXR9u6TR4FOz8YwQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.049 [XNIO-1 task-1] NTo1T2VLRv2dDonNYNx5_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/86288b14, base path is set to: null +16:40:55.050 [XNIO-1 task-1] NTo1T2VLRv2dDonNYNx5_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.050 [XNIO-1 task-1] NTo1T2VLRv2dDonNYNx5_g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.050 [XNIO-1 task-1] NTo1T2VLRv2dDonNYNx5_g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/86288b14, base path is set to: null +16:40:55.050 [XNIO-1 task-1] NTo1T2VLRv2dDonNYNx5_g DEBUG com.networknt.schema.TypeValidator debug - validate( "86288b14", "86288b14", userId) +16:40:55.053 [XNIO-1 task-1] MkjkolfWRXOZJIFpaEQ9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/86288b14 +16:40:55.053 [XNIO-1 task-1] MkjkolfWRXOZJIFpaEQ9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.053 [XNIO-1 task-1] MkjkolfWRXOZJIFpaEQ9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.053 [XNIO-1 task-1] MkjkolfWRXOZJIFpaEQ9Cg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/86288b14 +16:40:55.060 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.060 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.060 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.061 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, requestBody) +16:40:55.061 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, requestBody) +16:40:55.061 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG com.networknt.schema.TypeValidator debug - validate( "1d9ddfec-8f35-4130-9748-06affd59", {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, requestBody.lastName) +16:40:55.061 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG com.networknt.schema.FormatValidator debug - validate( "0492de0c-7326-4556-8212-b6fb5f5d1a28", {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, requestBody.password) +16:40:55.061 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, requestBody.userType) +16:40:55.061 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, requestBody) +16:40:55.061 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, {"userId":"a2743f3d","userType":"admin","firstName":"1ea107be-db82-46e9-a455-323d90b6","lastName":"1d9ddfec-8f35-4130-9748-06affd59","email":"4fb7f176-a908-46ce-8de9-bba429aa7b09","password":"0492de0c-7326-4556-8212-b6fb5f5d1a28"}, requestBody) +16:40:55.065 [XNIO-1 task-1] GfPDIY6USemkt4TAxq1uDA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 0492de0c-7326-4556-8212-b6fb5f5d1a28 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.070 [XNIO-1 task-1] qrX6Go0cSqSZYSI6TSfucQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.070 [XNIO-1 task-1] qrX6Go0cSqSZYSI6TSfucQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.070 [XNIO-1 task-1] qrX6Go0cSqSZYSI6TSfucQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.071 [XNIO-1 task-1] qrX6Go0cSqSZYSI6TSfucQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.076 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:ae96b4eb +16:40:55.095 [XNIO-1 task-1] VhSflkrfQjOE2qVCpIDbxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.095 [XNIO-1 task-1] VhSflkrfQjOE2qVCpIDbxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.095 [XNIO-1 task-1] VhSflkrfQjOE2qVCpIDbxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.095 [XNIO-1 task-1] VhSflkrfQjOE2qVCpIDbxg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.102 [XNIO-1 task-1] I4zQFnOKQAaOsOJpnkWX_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.102 [XNIO-1 task-1] I4zQFnOKQAaOsOJpnkWX_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.102 [XNIO-1 task-1] I4zQFnOKQAaOsOJpnkWX_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.102 [XNIO-1 task-1] I4zQFnOKQAaOsOJpnkWX_A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.109 [XNIO-1 task-1] TCnwcZH4SsOUw3ul-j1wcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.109 [XNIO-1 task-1] TCnwcZH4SsOUw3ul-j1wcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.109 [XNIO-1 task-1] TCnwcZH4SsOUw3ul-j1wcQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.110 [XNIO-1 task-1] TCnwcZH4SsOUw3ul-j1wcQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.117 [XNIO-1 task-1] H5CW0ESaQIGaOGgD4StQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.117 [XNIO-1 task-1] H5CW0ESaQIGaOGgD4StQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.117 [XNIO-1 task-1] H5CW0ESaQIGaOGgD4StQ8w DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.137 [XNIO-1 task-1] UbJAO6W7Q6yUk4IueNYj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0d1caba8 +16:40:55.137 [XNIO-1 task-1] UbJAO6W7Q6yUk4IueNYj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.137 [XNIO-1 task-1] UbJAO6W7Q6yUk4IueNYj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.137 [XNIO-1 task-1] UbJAO6W7Q6yUk4IueNYj2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0d1caba8 +16:40:55.145 [XNIO-1 task-1] 5TFvM7zQSHyiB9Cqkv_WFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.145 [XNIO-1 task-1] 5TFvM7zQSHyiB9Cqkv_WFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.145 [XNIO-1 task-1] 5TFvM7zQSHyiB9Cqkv_WFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.164 [XNIO-1 task-1] 5PUJDzJTQX-DSaH0cqwXRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.164 [XNIO-1 task-1] 5PUJDzJTQX-DSaH0cqwXRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.164 [XNIO-1 task-1] 5PUJDzJTQX-DSaH0cqwXRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.164 [XNIO-1 task-1] 5PUJDzJTQX-DSaH0cqwXRg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.178 [XNIO-1 task-1] 9pUTNJM9SaW-tK3dww8hIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.178 [XNIO-1 task-1] 9pUTNJM9SaW-tK3dww8hIg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.178 [XNIO-1 task-1] 9pUTNJM9SaW-tK3dww8hIg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.182 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:0ea35953 +16:40:55.182 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:55.188 [XNIO-1 task-1] bt4XKTfrS06VGzRCXJ5tKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a863457e, base path is set to: null +16:40:55.188 [XNIO-1 task-1] bt4XKTfrS06VGzRCXJ5tKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.188 [XNIO-1 task-1] bt4XKTfrS06VGzRCXJ5tKA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.188 [XNIO-1 task-1] bt4XKTfrS06VGzRCXJ5tKA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a863457e, base path is set to: null +16:40:55.188 [XNIO-1 task-1] bt4XKTfrS06VGzRCXJ5tKA DEBUG com.networknt.schema.TypeValidator debug - validate( "a863457e", "a863457e", userId) +16:40:55.198 [XNIO-1 task-1] YajRvIV-Q9yxu034T-rdCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.198 [XNIO-1 task-1] YajRvIV-Q9yxu034T-rdCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.198 [XNIO-1 task-1] YajRvIV-Q9yxu034T-rdCw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.198 [XNIO-1 task-1] YajRvIV-Q9yxu034T-rdCw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.205 [XNIO-1 task-1] tumBNb0kTbCyLsMMSsyDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a863457e +16:40:55.205 [XNIO-1 task-1] tumBNb0kTbCyLsMMSsyDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.205 [XNIO-1 task-1] tumBNb0kTbCyLsMMSsyDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.205 [XNIO-1 task-1] tumBNb0kTbCyLsMMSsyDwQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a863457e +16:40:55.215 [XNIO-1 task-1] rT-0FMBDTyy1TPdENnuDOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.216 [XNIO-1 task-1] rT-0FMBDTyy1TPdENnuDOQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.216 [XNIO-1 task-1] rT-0FMBDTyy1TPdENnuDOQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.216 [XNIO-1 task-1] rT-0FMBDTyy1TPdENnuDOQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.216 [XNIO-1 task-1] rT-0FMBDTyy1TPdENnuDOQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.223 [XNIO-1 task-1] 355rZsq4QomP89t9Ds3KLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.223 [XNIO-1 task-1] 355rZsq4QomP89t9Ds3KLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.224 [XNIO-1 task-1] 355rZsq4QomP89t9Ds3KLA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.242 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:fd7466b2 +16:40:55.243 [XNIO-1 task-1] rgPz818bRfiE5zQXiDvcgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f2048505 +16:40:55.243 [XNIO-1 task-1] rgPz818bRfiE5zQXiDvcgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.243 [XNIO-1 task-1] rgPz818bRfiE5zQXiDvcgA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.243 [XNIO-1 task-1] rgPz818bRfiE5zQXiDvcgA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/f2048505, base path is set to: null +16:40:55.243 [XNIO-1 task-1] rgPz818bRfiE5zQXiDvcgA DEBUG com.networknt.schema.TypeValidator debug - validate( "f2048505", "f2048505", userId) +16:40:55.249 [XNIO-1 task-1] R8qIOz8DSRCOCF7UOd1KNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.249 [XNIO-1 task-1] R8qIOz8DSRCOCF7UOd1KNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.249 [XNIO-1 task-1] R8qIOz8DSRCOCF7UOd1KNA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.256 [XNIO-1 task-1] MNQxnA5qR9SjhNmFZC_GaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f2048505 +16:40:55.256 [XNIO-1 task-1] MNQxnA5qR9SjhNmFZC_GaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.256 [XNIO-1 task-1] MNQxnA5qR9SjhNmFZC_GaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.256 [XNIO-1 task-1] MNQxnA5qR9SjhNmFZC_GaA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/f2048505 +16:40:55.268 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.268 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.268 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.269 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, requestBody) +16:40:55.269 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, requestBody) +16:40:55.269 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "8d855a06-e479-4615-8597-06f3a209", {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, requestBody.lastName) +16:40:55.269 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG com.networknt.schema.FormatValidator debug - validate( "0a24b20c-8a14-4d35-9123-f1e19f44e2bf", {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, requestBody.password) +16:40:55.269 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, requestBody.userType) +16:40:55.269 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, requestBody) +16:40:55.269 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, {"userId":"f773906e","userType":"admin","firstName":"e7ebb45c-6624-4344-9ddc-6e30feec","lastName":"8d855a06-e479-4615-8597-06f3a209","email":"2b3c6f20-1773-4b80-b1b0-408b29c2b1e9","password":"0a24b20c-8a14-4d35-9123-f1e19f44e2bf"}, requestBody) +16:40:55.270 [XNIO-1 task-1] WJ46SKbMRoC3LVzBmlQ2Rw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 0a24b20c-8a14-4d35-9123-f1e19f44e2bf or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.273 [XNIO-1 task-1] ipcPGGLxQpO2ODted81QRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.273 [XNIO-1 task-1] ipcPGGLxQpO2ODted81QRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.273 [XNIO-1 task-1] ipcPGGLxQpO2ODted81QRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.273 [XNIO-1 task-1] ipcPGGLxQpO2ODted81QRA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.283 [XNIO-1 task-1] IEQchHKRSEmZ1fUkpFpMIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.283 [XNIO-1 task-1] IEQchHKRSEmZ1fUkpFpMIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.283 [XNIO-1 task-1] IEQchHKRSEmZ1fUkpFpMIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.283 [XNIO-1 task-1] IEQchHKRSEmZ1fUkpFpMIw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.289 [XNIO-1 task-1] 2RUze97zTFCT3kjyWG16ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.289 [XNIO-1 task-1] 2RUze97zTFCT3kjyWG16ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.289 [XNIO-1 task-1] 2RUze97zTFCT3kjyWG16ZQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.290 [XNIO-1 task-1] 2RUze97zTFCT3kjyWG16ZQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.294 [XNIO-1 task-1] rJSW73S4TH2u94cMiQq8HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.294 [XNIO-1 task-1] rJSW73S4TH2u94cMiQq8HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.294 [XNIO-1 task-1] rJSW73S4TH2u94cMiQq8HQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.311 [XNIO-1 task-1] DO8wa2YnQbOtpWb_ulNeiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f43a8c9 +16:40:55.311 [XNIO-1 task-1] DO8wa2YnQbOtpWb_ulNeiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.311 [XNIO-1 task-1] DO8wa2YnQbOtpWb_ulNeiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.311 [XNIO-1 task-1] DO8wa2YnQbOtpWb_ulNeiQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/6f43a8c9 +16:40:55.316 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:65aa562e +16:40:55.320 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.320 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.320 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.321 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, requestBody) +16:40:55.321 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, requestBody) +16:40:55.321 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG com.networknt.schema.TypeValidator debug - validate( "b403f18e-d2ee-4f4c-9e05-960dad9e", {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, requestBody.lastName) +16:40:55.321 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG com.networknt.schema.FormatValidator debug - validate( "ec19ab7c-2acb-43b5-a15e-0cceaa117a6f", {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, requestBody.password) +16:40:55.321 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, requestBody.userType) +16:40:55.321 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, requestBody) +16:40:55.321 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, {"userId":"bc558e0e","userType":"admin","firstName":"74946b75-0ee4-44ca-986a-fda8fdb3","lastName":"b403f18e-d2ee-4f4c-9e05-960dad9e","email":"0a1d96b7-8153-4db5-b335-26a5dc2f8042","password":"ec19ab7c-2acb-43b5-a15e-0cceaa117a6f"}, requestBody) +16:40:55.322 [XNIO-1 task-1] Ig6Oz7H0TVCaaUCxplg_tA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password ec19ab7c-2acb-43b5-a15e-0cceaa117a6f or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.324 [XNIO-1 task-1] EZAJcGknSue2o5qpJTuLKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.324 [XNIO-1 task-1] EZAJcGknSue2o5qpJTuLKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.325 [XNIO-1 task-1] EZAJcGknSue2o5qpJTuLKg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.339 [XNIO-1 task-1] LFTjkrfGTt2m3q4BCd2wPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.339 [XNIO-1 task-1] LFTjkrfGTt2m3q4BCd2wPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.339 [XNIO-1 task-1] LFTjkrfGTt2m3q4BCd2wPg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.356 [XNIO-1 task-1] uGgc98eUTluXL6HbvcMEDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.356 [XNIO-1 task-1] uGgc98eUTluXL6HbvcMEDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.356 [XNIO-1 task-1] uGgc98eUTluXL6HbvcMEDQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.356 [XNIO-1 task-1] uGgc98eUTluXL6HbvcMEDQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.357 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f5aa3580 +16:40:55.361 [XNIO-1 task-1] T4wBHK-BTmqedvjmizuyhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.361 [XNIO-1 task-1] T4wBHK-BTmqedvjmizuyhg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.362 [XNIO-1 task-1] T4wBHK-BTmqedvjmizuyhg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.380 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e9f9ce33, base path is set to: null +16:40:55.380 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.380 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.380 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:55.380 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e9f9ce33, base path is set to: null +16:40:55.381 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9f9ce33", "e9f9ce33", userId) +16:40:55.381 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"a57ef454-6674-4ef3-b0a7-d1e14e52ccdd","newPassword":"b48694eb-11d8-4d32-8803-56a610043ba1","newPasswordConfirm":"b48694eb-11d8-4d32-8803-56a610043ba1"}, {"password":"a57ef454-6674-4ef3-b0a7-d1e14e52ccdd","newPassword":"b48694eb-11d8-4d32-8803-56a610043ba1","newPasswordConfirm":"b48694eb-11d8-4d32-8803-56a610043ba1"}, requestBody) +16:40:55.381 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b48694eb-11d8-4d32-8803-56a610043ba1", {"password":"a57ef454-6674-4ef3-b0a7-d1e14e52ccdd","newPassword":"b48694eb-11d8-4d32-8803-56a610043ba1","newPasswordConfirm":"b48694eb-11d8-4d32-8803-56a610043ba1"}, requestBody.newPasswordConfirm) +16:40:55.381 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a57ef454-6674-4ef3-b0a7-d1e14e52ccdd", {"password":"a57ef454-6674-4ef3-b0a7-d1e14e52ccdd","newPassword":"b48694eb-11d8-4d32-8803-56a610043ba1","newPasswordConfirm":"b48694eb-11d8-4d32-8803-56a610043ba1"}, requestBody.password) +16:40:55.381 [XNIO-1 task-1] QuF6hqToRkujne_ZCYmHjQ DEBUG com.networknt.schema.TypeValidator debug - validate( "b48694eb-11d8-4d32-8803-56a610043ba1", {"password":"a57ef454-6674-4ef3-b0a7-d1e14e52ccdd","newPassword":"b48694eb-11d8-4d32-8803-56a610043ba1","newPasswordConfirm":"b48694eb-11d8-4d32-8803-56a610043ba1"}, requestBody.newPassword) +16:40:55.389 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:f5aa3580 +16:40:55.405 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.405 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.405 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.406 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, requestBody) +16:40:55.406 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, requestBody) +Jun 28, 2024 4:40:55 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +16:40:55.406 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, requestBody) +16:40:55.406 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, requestBody.userType) +16:40:55.406 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, requestBody.userType) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +16:40:55.406 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, requestBody) +16:40:55.406 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ DEBUG com.networknt.schema.TypeValidator debug - validate( "981616a3-bb20-422f-b4cf-a883eab316ea", {"userId":"7fa93d4d","userType":"admin","firstName":"c23e7fc9-c5e1-4438-bf5b-4abf450c","lastName":"73c4667c-b857-4481-8f1f-0dc67355","email":"981616a3-bb20-422f-b4cf-a883eab316ea","password":"bf875d9b-a45b-45ce-a71b-532214aa6de8"}, requestBody.email) +16:40:55.407 [XNIO-1 task-1] wSig7a1tS3igN373MvOzJQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password bf875d9b-a45b-45ce-a71b-532214aa6de8 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.410 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e9f9ce33, base path is set to: null + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:55.410 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.410 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) +16:40:55.410 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e9f9ce33, base path is set to: null +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9f9ce33 +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG com.networknt.schema.TypeValidator debug - validate( "e9f9ce33", "e9f9ce33", userId) +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, requestBody) +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, requestBody) +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, requestBody) + +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG com.networknt.schema.TypeValidator debug - validate( "874eee48-8e4f-4b38-adac-7783aa569d3d", {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, requestBody.newPasswordConfirm) +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG com.networknt.schema.TypeValidator debug - validate( "b48694eb-11d8-4d32-8803-56a610043ba1", {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, requestBody.password) +16:40:55.411 [XNIO-1 task-1] 95A2W9MdTJSHKND89ngaWg DEBUG com.networknt.schema.TypeValidator debug - validate( "874eee48-8e4f-4b38-adac-7783aa569d3d", {"password":"b48694eb-11d8-4d32-8803-56a610043ba1","newPassword":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPasswordConfirm":"874eee48-8e4f-4b38-adac-7783aa569d3d"}, requestBody.newPassword) +16:40:55.432 [XNIO-1 task-1] rPuN8OvZQT-Y-nudLUsWww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0c4b1505, base path is set to: null +16:40:55.433 [XNIO-1 task-1] rPuN8OvZQT-Y-nudLUsWww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.433 [XNIO-1 task-1] rPuN8OvZQT-Y-nudLUsWww DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.433 [XNIO-1 task-1] rPuN8OvZQT-Y-nudLUsWww DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/0c4b1505, base path is set to: null +16:40:55.433 [XNIO-1 task-1] rPuN8OvZQT-Y-nudLUsWww DEBUG com.networknt.schema.TypeValidator debug - validate( "0c4b1505", "0c4b1505", userId) +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9b237e3d +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/9b237e3d +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3c1e799a-668b-416e-9c28-38d7f81cdcc3","newPassword":"5e173f4c-a585-46a4-8745-91006c4497cf","newPasswordConfirm":"5e173f4c-a585-46a4-8745-91006c4497cf"}, {"password":"3c1e799a-668b-416e-9c28-38d7f81cdcc3","newPassword":"5e173f4c-a585-46a4-8745-91006c4497cf","newPasswordConfirm":"5e173f4c-a585-46a4-8745-91006c4497cf"}, requestBody) +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3c1e799a-668b-416e-9c28-38d7f81cdcc3","newPassword":"5e173f4c-a585-46a4-8745-91006c4497cf","newPasswordConfirm":"5e173f4c-a585-46a4-8745-91006c4497cf"}, {"password":"3c1e799a-668b-416e-9c28-38d7f81cdcc3","newPassword":"5e173f4c-a585-46a4-8745-91006c4497cf","newPasswordConfirm":"5e173f4c-a585-46a4-8745-91006c4497cf"}, requestBody) +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG com.networknt.schema.FormatValidator debug - validate( "5e173f4c-a585-46a4-8745-91006c4497cf", {"password":"3c1e799a-668b-416e-9c28-38d7f81cdcc3","newPassword":"5e173f4c-a585-46a4-8745-91006c4497cf","newPasswordConfirm":"5e173f4c-a585-46a4-8745-91006c4497cf"}, requestBody.newPasswordConfirm) +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG com.networknt.schema.FormatValidator debug - validate( "3c1e799a-668b-416e-9c28-38d7f81cdcc3", {"password":"3c1e799a-668b-416e-9c28-38d7f81cdcc3","newPassword":"5e173f4c-a585-46a4-8745-91006c4497cf","newPasswordConfirm":"5e173f4c-a585-46a4-8745-91006c4497cf"}, requestBody.password) +16:40:55.439 [XNIO-1 task-1] yoSz74d-SBu4vIBU0cbIMA DEBUG com.networknt.schema.FormatValidator debug - validate( "5e173f4c-a585-46a4-8745-91006c4497cf", {"password":"3c1e799a-668b-416e-9c28-38d7f81cdcc3","newPassword":"5e173f4c-a585-46a4-8745-91006c4497cf","newPasswordConfirm":"5e173f4c-a585-46a4-8745-91006c4497cf"}, requestBody.newPassword) +Jun 28, 2024 4:40:55 PM com.hazelcast.map.impl.operation.DeleteOperation +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) +16:40:55.457 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.457 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) +16:40:55.457 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e9f9ce33, base path is set to: null +16:40:55.457 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/e9f9ce33 +16:40:55.457 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG com.networknt.schema.TypeValidator debug - validate( "e9f9ce33", "e9f9ce33", userId) +16:40:55.458 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPassword":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPasswordConfirm":"9140068b-f32d-4899-97c6-db49fa4f9c76"}, {"password":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPassword":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPasswordConfirm":"9140068b-f32d-4899-97c6-db49fa4f9c76"}, requestBody) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) +16:40:55.458 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG com.networknt.schema.FormatValidator debug - validate( "874eee48-8e4f-4b38-adac-7783aa569d3d", {"password":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPassword":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPasswordConfirm":"9140068b-f32d-4899-97c6-db49fa4f9c76"}, requestBody.password) +16:40:55.458 [XNIO-1 task-1] ggeW8e8gTI6NcZe_YbwBTA DEBUG com.networknt.schema.FormatValidator debug - validate( "9140068b-f32d-4899-97c6-db49fa4f9c76", {"password":"874eee48-8e4f-4b38-adac-7783aa569d3d","newPassword":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPasswordConfirm":"9140068b-f32d-4899-97c6-db49fa4f9c76"}, requestBody.newPassword) +16:40:55.483 [hz._hzInstance_1_dev.partition-operation.thread-14] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +Caused by: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + ... 14 more + + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +Jun 28, 2024 4:40:55 PM com.hazelcast.map.impl.operation.DeleteOperation +SEVERE: [172.24.0.7]:5701 [dev] [3.12] java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) +java.lang.RuntimeException: java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:36) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) +16:40:55.489 [XNIO-1 task-1] of3A8TL_QdmKhitcwXI0xA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.502 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9b237e3d, base path is set to: null +16:40:55.502 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9b237e3d +16:40:55.502 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.502 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.502 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) +16:40:55.503 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/9b237e3d, base path is set to: null + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) +16:40:55.503 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/9b237e3d +16:40:55.503 [XNIO-1 task-1] CQs0dTOVT5CffEzrxtLOEA DEBUG com.networknt.schema.TypeValidator debug - validate( "9b237e3d", "9b237e3d", userId) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +16:40:55.516 [XNIO-1 task-1] vWtR0AgVS2ui1bfjlf5I8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.516 [XNIO-1 task-1] vWtR0AgVS2ui1bfjlf5I8A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) +16:40:55.516 [XNIO-1 task-1] vWtR0AgVS2ui1bfjlf5I8A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + ... 14 more + +16:40:55.516 [XNIO-1 task-1] vWtR0AgVS2ui1bfjlf5I8A DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.518 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:f0b29515 +16:40:55.522 [XNIO-1 task-1] 3bFcedzvTPOAg2xiOpq0ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.522 [XNIO-1 task-1] 3bFcedzvTPOAg2xiOpq0ig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.523 [XNIO-1 task-1] 3bFcedzvTPOAg2xiOpq0ig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.536 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8385985a-f8ed-4b8b-8603-c63ecd766c19 +16:40:55.537 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ClientMapStore load - Load:8385985a-f8ed-4b8b-8603-c63ecd766c19 +16:40:55.540 [XNIO-1 task-1] _KUs8JywT9OXRT84qSmglQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.540 [XNIO-1 task-1] _KUs8JywT9OXRT84qSmglQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.541 [XNIO-1 task-1] _KUs8JywT9OXRT84qSmglQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.552 [hz._hzInstance_1_dev.partition-operation.thread-8] ERROR c.n.oauth.cache.ClientMapStore delete - Exception: + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117) + at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345) + at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:33) + at com.hazelcast.map.impl.MapStoreWrapper.delete(MapStoreWrapper.java:115) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:28) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.run(OperationThread.java:110) +16:40:55.553 [XNIO-1 task-1] KB8ONBshTB-Xb9QkB0WItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a8f7410e +16:40:55.553 [XNIO-1 task-1] KB8ONBshTB-Xb9QkB0WItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.553 [XNIO-1 task-1] KB8ONBshTB-Xb9QkB0WItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.554 [XNIO-1 task-1] KB8ONBshTB-Xb9QkB0WItQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a8f7410e +16:40:55.562 [XNIO-1 task-1] 8NvEE7FWQYywUvVWiRjFjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9f9ce33, base path is set to: null +16:40:55.562 [XNIO-1 task-1] 8NvEE7FWQYywUvVWiRjFjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.562 [XNIO-1 task-1] 8NvEE7FWQYywUvVWiRjFjw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.562 [XNIO-1 task-1] 8NvEE7FWQYywUvVWiRjFjw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9f9ce33, base path is set to: null +16:40:55.563 [XNIO-1 task-1] 8NvEE7FWQYywUvVWiRjFjw DEBUG com.networknt.schema.TypeValidator debug - validate( "e9f9ce33", "e9f9ce33", userId) +16:40:55.566 [XNIO-1 task-1] oRVtE_ymQY-gmb9M_yLtIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0c4b1505 +16:40:55.566 [XNIO-1 task-1] oRVtE_ymQY-gmb9M_yLtIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.566 [XNIO-1 task-1] oRVtE_ymQY-gmb9M_yLtIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.567 [XNIO-1 task-1] oRVtE_ymQY-gmb9M_yLtIw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0c4b1505 +16:40:55.568 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:73e474c5-e5b2-480b-9974-bc11b41a1505 +16:40:55.569 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore load - Load:73e474c5-e5b2-480b-9974-bc11b41a1505 +16:40:55.576 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8f7410e +16:40:55.576 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.576 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.576 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:55.577 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8f7410e +16:40:55.577 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"c86a0b83-e08f-47e1-8503-bec46322cf39","newPassword":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPasswordConfirm":"afe260e0-09fb-406f-addf-478fd31fa0d7"}, {"password":"c86a0b83-e08f-47e1-8503-bec46322cf39","newPassword":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPasswordConfirm":"afe260e0-09fb-406f-addf-478fd31fa0d7"}, requestBody) +16:40:55.577 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"c86a0b83-e08f-47e1-8503-bec46322cf39","newPassword":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPasswordConfirm":"afe260e0-09fb-406f-addf-478fd31fa0d7"}, {"password":"c86a0b83-e08f-47e1-8503-bec46322cf39","newPassword":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPasswordConfirm":"afe260e0-09fb-406f-addf-478fd31fa0d7"}, requestBody) +16:40:55.577 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "afe260e0-09fb-406f-addf-478fd31fa0d7", {"password":"c86a0b83-e08f-47e1-8503-bec46322cf39","newPassword":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPasswordConfirm":"afe260e0-09fb-406f-addf-478fd31fa0d7"}, requestBody.newPasswordConfirm) +16:40:55.577 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "c86a0b83-e08f-47e1-8503-bec46322cf39", {"password":"c86a0b83-e08f-47e1-8503-bec46322cf39","newPassword":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPasswordConfirm":"afe260e0-09fb-406f-addf-478fd31fa0d7"}, requestBody.password) +16:40:55.577 [XNIO-1 task-1] 3KTkWCnhRgSTcM28sARXXQ DEBUG com.networknt.schema.FormatValidator debug - validate( "afe260e0-09fb-406f-addf-478fd31fa0d7", {"password":"c86a0b83-e08f-47e1-8503-bec46322cf39","newPassword":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPasswordConfirm":"afe260e0-09fb-406f-addf-478fd31fa0d7"}, requestBody.newPassword) +16:40:55.595 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:fc4dcf26-05b1-4c44-a8b0-3ac84194ad88 +16:40:55.598 [XNIO-1 task-1] _pkWeU9CQLS8BhECuIPUGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e9f9ce33 +16:40:55.598 [XNIO-1 task-1] _pkWeU9CQLS8BhECuIPUGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.598 [XNIO-1 task-1] _pkWeU9CQLS8BhECuIPUGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.598 [XNIO-1 task-1] _pkWeU9CQLS8BhECuIPUGQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/e9f9ce33 +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:55.599 [XNIO-1 task-1] _pkWeU9CQLS8BhECuIPUGQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9f9ce33", "e9f9ce33", userId) +16:40:55.608 [XNIO-1 task-1] z_yGG9pgQ9SneLUBQJDrRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.608 [XNIO-1 task-1] z_yGG9pgQ9SneLUBQJDrRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.608 [XNIO-1 task-1] z_yGG9pgQ9SneLUBQJDrRA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.611 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:22ba34b5-baed-4e16-b7a0-70cf3f41b238 +16:40:55.627 [XNIO-1 task-1] 7B4NMi-xSgiotQ_mbOPl-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.627 [XNIO-1 task-1] 7B4NMi-xSgiotQ_mbOPl-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.627 [XNIO-1 task-1] 7B4NMi-xSgiotQ_mbOPl-Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.627 [XNIO-1 task-1] 7B4NMi-xSgiotQ_mbOPl-Q DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.635 [XNIO-1 task-1] R8pY_qB3TcSwfLhiyM_rpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a8f7410e +16:40:55.636 [XNIO-1 task-1] R8pY_qB3TcSwfLhiyM_rpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.636 [XNIO-1 task-1] R8pY_qB3TcSwfLhiyM_rpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.636 [XNIO-1 task-1] R8pY_qB3TcSwfLhiyM_rpg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a8f7410e +16:40:55.648 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a8f7410e, base path is set to: null +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a8f7410e, base path is set to: null +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG com.networknt.schema.TypeValidator debug - validate( "a8f7410e", "a8f7410e", userId) +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPassword":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d","newPasswordConfirm":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d"}, {"password":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPassword":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d","newPasswordConfirm":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d"}, requestBody) +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG com.networknt.schema.TypeValidator debug - validate( "e87f1fe8-8ecf-46df-a0e4-c72063d5b72d", {"password":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPassword":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d","newPasswordConfirm":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d"}, requestBody.newPasswordConfirm) +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG com.networknt.schema.TypeValidator debug - validate( "afe260e0-09fb-406f-addf-478fd31fa0d7", {"password":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPassword":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d","newPasswordConfirm":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d"}, requestBody.password) +16:40:55.649 [XNIO-1 task-1] 2JE5oZ3aT56-J3-sgs_zWA DEBUG com.networknt.schema.TypeValidator debug - validate( "e87f1fe8-8ecf-46df-a0e4-c72063d5b72d", {"password":"afe260e0-09fb-406f-addf-478fd31fa0d7","newPassword":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d","newPasswordConfirm":"e87f1fe8-8ecf-46df-a0e4-c72063d5b72d"}, requestBody.newPassword) +16:40:55.670 [XNIO-1 task-1] kATa-MSPROOA7hDRpdbiaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.670 [XNIO-1 task-1] kATa-MSPROOA7hDRpdbiaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.670 [XNIO-1 task-1] kATa-MSPROOA7hDRpdbiaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.671 [XNIO-1 task-1] kATa-MSPROOA7hDRpdbiaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.676 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e9f9ce33, base path is set to: null +16:40:55.676 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/e9f9ce33, base path is set to: null +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "e9f9ce33", "e9f9ce33", userId) +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPassword":"617a1c15-cbaa-4aec-846b-2016e495644b","newPasswordConfirm":"617a1c15-cbaa-4aec-846b-2016e495644b"}, {"password":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPassword":"617a1c15-cbaa-4aec-846b-2016e495644b","newPasswordConfirm":"617a1c15-cbaa-4aec-846b-2016e495644b"}, requestBody) +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "617a1c15-cbaa-4aec-846b-2016e495644b", {"password":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPassword":"617a1c15-cbaa-4aec-846b-2016e495644b","newPasswordConfirm":"617a1c15-cbaa-4aec-846b-2016e495644b"}, requestBody.newPasswordConfirm) +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9140068b-f32d-4899-97c6-db49fa4f9c76", {"password":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPassword":"617a1c15-cbaa-4aec-846b-2016e495644b","newPasswordConfirm":"617a1c15-cbaa-4aec-846b-2016e495644b"}, requestBody.password) +16:40:55.677 [XNIO-1 task-1] 02PHhlnLRhS3fEHO31UyaQ DEBUG com.networknt.schema.TypeValidator debug - validate( "617a1c15-cbaa-4aec-846b-2016e495644b", {"password":"9140068b-f32d-4899-97c6-db49fa4f9c76","newPassword":"617a1c15-cbaa-4aec-846b-2016e495644b","newPasswordConfirm":"617a1c15-cbaa-4aec-846b-2016e495644b"}, requestBody.newPassword) +16:40:55.696 [XNIO-1 task-1] yqxBY1EhRLaOqe9b_4z1hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.696 [XNIO-1 task-1] yqxBY1EhRLaOqe9b_4z1hQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.696 [XNIO-1 task-1] yqxBY1EhRLaOqe9b_4z1hQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.696 [XNIO-1 task-1] yqxBY1EhRLaOqe9b_4z1hQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.705 [XNIO-1 task-1] R3-eSbmLQ7yz-q6tRyjTIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.705 [XNIO-1 task-1] R3-eSbmLQ7yz-q6tRyjTIw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.705 [XNIO-1 task-1] R3-eSbmLQ7yz-q6tRyjTIw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.713 [XNIO-1 task-1] -Cr81WEcTrqEjdaQDhA-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9f9ce33, base path is set to: null +16:40:55.713 [XNIO-1 task-1] -Cr81WEcTrqEjdaQDhA-Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.713 [XNIO-1 task-1] -Cr81WEcTrqEjdaQDhA-Og DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.714 [XNIO-1 task-1] -Cr81WEcTrqEjdaQDhA-Og DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/e9f9ce33, base path is set to: null +16:40:55.714 [XNIO-1 task-1] -Cr81WEcTrqEjdaQDhA-Og DEBUG com.networknt.schema.TypeValidator debug - validate( "e9f9ce33", "e9f9ce33", userId) +16:40:55.715 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:0ea35953 +16:40:55.720 [XNIO-1 task-1] cdQI2PTTQfmx2T5iBhBmuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/464346ac +16:40:55.720 [XNIO-1 task-1] cdQI2PTTQfmx2T5iBhBmuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.720 [XNIO-1 task-1] cdQI2PTTQfmx2T5iBhBmuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.720 [XNIO-1 task-1] cdQI2PTTQfmx2T5iBhBmuQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/464346ac +16:40:55.730 [XNIO-1 task-1] c1bvGStNTbOK6hJ1qN_osg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a8f7410e, base path is set to: null +16:40:55.730 [XNIO-1 task-1] c1bvGStNTbOK6hJ1qN_osg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.730 [XNIO-1 task-1] c1bvGStNTbOK6hJ1qN_osg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.730 [XNIO-1 task-1] c1bvGStNTbOK6hJ1qN_osg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a8f7410e, base path is set to: null +16:40:55.730 [XNIO-1 task-1] c1bvGStNTbOK6hJ1qN_osg DEBUG com.networknt.schema.TypeValidator debug - validate( "a8f7410e", "a8f7410e", userId) +16:40:55.737 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:65aa562e +16:40:55.743 [XNIO-1 task-1] qcgedEdHSf2eFpYCrTwMHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.743 [XNIO-1 task-1] qcgedEdHSf2eFpYCrTwMHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.743 [XNIO-1 task-1] qcgedEdHSf2eFpYCrTwMHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.743 [XNIO-1 task-1] qcgedEdHSf2eFpYCrTwMHA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.755 [XNIO-1 task-1] NuI6j4I7Qz28JJFO7P1y3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.755 [XNIO-1 task-1] NuI6j4I7Qz28JJFO7P1y3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.756 [XNIO-1 task-1] NuI6j4I7Qz28JJFO7P1y3A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.756 [XNIO-1 task-1] NuI6j4I7Qz28JJFO7P1y3A DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.757 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:0ea35953 +16:40:55.765 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:f0b29515 +16:40:55.769 [XNIO-1 task-1] JEia89DlTlODAeu3E6M2Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.769 [XNIO-1 task-1] JEia89DlTlODAeu3E6M2Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.769 [XNIO-1 task-1] JEia89DlTlODAeu3E6M2Yw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.769 [XNIO-1 task-1] JEia89DlTlODAeu3E6M2Yw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.777 [XNIO-1 task-1] QdwFY4eyTtOcnvr4TOvgCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.777 [XNIO-1 task-1] QdwFY4eyTtOcnvr4TOvgCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.777 [XNIO-1 task-1] QdwFY4eyTtOcnvr4TOvgCg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.778 [XNIO-1 task-1] QdwFY4eyTtOcnvr4TOvgCg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.783 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.783 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.783 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.783 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, requestBody) +16:40:55.783 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG com.networknt.schema.TypeValidator debug - validate( "1cc94b75-e3bb-4d3e-b7ba-a25479ce", {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, requestBody.firstName) +16:40:55.783 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG com.networknt.schema.TypeValidator debug - validate( "0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00", {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, requestBody.password) +16:40:55.784 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, requestBody) +16:40:55.784 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, requestBody.userType) +16:40:55.784 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG com.networknt.schema.TypeValidator debug - validate( "10d46d8c", {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, requestBody.userId) +16:40:55.784 [XNIO-1 task-1] Z5LJ7QVCQumRWCl-D8vDuA DEBUG com.networknt.schema.TypeValidator debug - validate( "ae26feab-3e3b-4803-a3e6-247f533d643e", {"userId":"10d46d8c","userType":"admin","firstName":"1cc94b75-e3bb-4d3e-b7ba-a25479ce","lastName":"d1c34fa8-2c8a-484c-9137-bc388270","email":"ae26feab-3e3b-4803-a3e6-247f533d643e","password":"0cb11191-9c55-4f6d-ae4c-4e6ff1aedb00"}, requestBody.email) +16:40:55.788 [XNIO-1 task-1] rifEl-H7R1WvYfte0hWzTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.788 [XNIO-1 task-1] rifEl-H7R1WvYfte0hWzTw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.788 [XNIO-1 task-1] rifEl-H7R1WvYfte0hWzTw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.788 [XNIO-1 task-1] rifEl-H7R1WvYfte0hWzTw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.795 [XNIO-1 task-1] 0Pkd88ZbTlejLq3XxGAGKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.795 [XNIO-1 task-1] 0Pkd88ZbTlejLq3XxGAGKQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.795 [XNIO-1 task-1] 0Pkd88ZbTlejLq3XxGAGKQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.795 [XNIO-1 task-1] 0Pkd88ZbTlejLq3XxGAGKQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.803 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:65aa562e +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, requestBody) +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, requestBody) +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG com.networknt.schema.TypeValidator debug - validate( "49d86d63-cbd5-4429-958e-abc2117c", {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, requestBody.lastName) +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG com.networknt.schema.FormatValidator debug - validate( "54a0b43a-bbec-452b-ab07-ee446502b254", {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, requestBody.password) +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, requestBody.userType) +16:40:55.807 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, requestBody) +16:40:55.808 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, {"userId":"1c5a5367","userType":"admin","firstName":"d15f5407-556a-4d70-addf-0306ab8f","lastName":"49d86d63-cbd5-4429-958e-abc2117c","email":"b698fc37-ce5b-41b2-b396-9366c4f38422","password":"54a0b43a-bbec-452b-ab07-ee446502b254"}, requestBody) +16:40:55.808 [XNIO-1 task-1] Lqh_N82tTk-ra3ZLrPIJ7w ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 54a0b43a-bbec-452b-ab07-ee446502b254 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.812 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.813 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.813 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.813 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, requestBody) +16:40:55.813 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "50a50dea-54e0-4470-84d8-a3acef96", {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, requestBody.firstName) +16:40:55.814 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "bb379447-e409-4e4c-99e9-95bb2a1d8748", {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, requestBody.password) +16:40:55.814 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, requestBody) +16:40:55.814 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, requestBody.userType) +16:40:55.814 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6fc8113", {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, requestBody.userId) +16:40:55.814 [XNIO-1 task-1] UDdeD4MnQp2G4baxE35NRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "0525d2ae-a7e6-4e85-8b57-55b988c0393f", {"userId":"f6fc8113","userType":"admin","firstName":"50a50dea-54e0-4470-84d8-a3acef96","lastName":"817ddddc-80d7-4067-b3b2-e54d6a9e","email":"0525d2ae-a7e6-4e85-8b57-55b988c0393f","password":"bb379447-e409-4e4c-99e9-95bb2a1d8748"}, requestBody.email) +16:40:55.822 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, requestBody) +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, requestBody) +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG com.networknt.schema.TypeValidator debug - validate( "1192eade-236d-4ee9-bb7d-d457b7f4", {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, requestBody.lastName) +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG com.networknt.schema.FormatValidator debug - validate( "fd1d0cad-41ea-4106-98de-5f2c7c4fc04e", {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, requestBody.password) +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, requestBody.userType) +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, requestBody) +16:40:55.823 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, {"userId":"b89e4648","userType":"admin","firstName":"0307da30-f263-4c30-9198-4e408635","lastName":"1192eade-236d-4ee9-bb7d-d457b7f4","email":"0c63be4e-16ed-45ea-89ed-3707d839c56a","password":"fd1d0cad-41ea-4106-98de-5f2c7c4fc04e"}, requestBody) +16:40:55.825 [XNIO-1 task-1] WPi6u8NaSDGmPnVhD2jy7A ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password fd1d0cad-41ea-4106-98de-5f2c7c4fc04e or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.827 [XNIO-1 task-1] nW-7bQfpTB-3E9jiOyx4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.827 [XNIO-1 task-1] nW-7bQfpTB-3E9jiOyx4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.827 [XNIO-1 task-1] nW-7bQfpTB-3E9jiOyx4Xw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.846 [XNIO-1 task-1] 3otiVImuSeiB3E0yAjz9Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.846 [XNIO-1 task-1] 3otiVImuSeiB3E0yAjz9Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.846 [XNIO-1 task-1] 3otiVImuSeiB3E0yAjz9Sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.846 [XNIO-1 task-1] 3otiVImuSeiB3E0yAjz9Sg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.852 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dfbcaa58 +16:40:55.853 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/dfbcaa58 +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"00b1ef71-67ed-48c2-9086-94136b51a672","newPassword":"60939a26-13a1-4678-8467-2bc35aa461ef","newPasswordConfirm":"60939a26-13a1-4678-8467-2bc35aa461ef"}, {"password":"00b1ef71-67ed-48c2-9086-94136b51a672","newPassword":"60939a26-13a1-4678-8467-2bc35aa461ef","newPasswordConfirm":"60939a26-13a1-4678-8467-2bc35aa461ef"}, requestBody) +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"00b1ef71-67ed-48c2-9086-94136b51a672","newPassword":"60939a26-13a1-4678-8467-2bc35aa461ef","newPasswordConfirm":"60939a26-13a1-4678-8467-2bc35aa461ef"}, {"password":"00b1ef71-67ed-48c2-9086-94136b51a672","newPassword":"60939a26-13a1-4678-8467-2bc35aa461ef","newPasswordConfirm":"60939a26-13a1-4678-8467-2bc35aa461ef"}, requestBody) +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG com.networknt.schema.FormatValidator debug - validate( "60939a26-13a1-4678-8467-2bc35aa461ef", {"password":"00b1ef71-67ed-48c2-9086-94136b51a672","newPassword":"60939a26-13a1-4678-8467-2bc35aa461ef","newPasswordConfirm":"60939a26-13a1-4678-8467-2bc35aa461ef"}, requestBody.newPasswordConfirm) +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG com.networknt.schema.FormatValidator debug - validate( "00b1ef71-67ed-48c2-9086-94136b51a672", {"password":"00b1ef71-67ed-48c2-9086-94136b51a672","newPassword":"60939a26-13a1-4678-8467-2bc35aa461ef","newPasswordConfirm":"60939a26-13a1-4678-8467-2bc35aa461ef"}, requestBody.password) +16:40:55.854 [XNIO-1 task-1] xXMahNgsRHq_9-Hp-U8gFA DEBUG com.networknt.schema.FormatValidator debug - validate( "60939a26-13a1-4678-8467-2bc35aa461ef", {"password":"00b1ef71-67ed-48c2-9086-94136b51a672","newPassword":"60939a26-13a1-4678-8467-2bc35aa461ef","newPasswordConfirm":"60939a26-13a1-4678-8467-2bc35aa461ef"}, requestBody.newPassword) +16:40:55.870 [XNIO-1 task-1] pUwF92T3SraaBdqlH92ltQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.870 [XNIO-1 task-1] pUwF92T3SraaBdqlH92ltQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.870 [XNIO-1 task-1] pUwF92T3SraaBdqlH92ltQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.870 [XNIO-1 task-1] pUwF92T3SraaBdqlH92ltQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.879 [XNIO-1 task-1] uhoE_QKuQvSsz_EdjTZ1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.879 [XNIO-1 task-1] uhoE_QKuQvSsz_EdjTZ1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.879 [XNIO-1 task-1] uhoE_QKuQvSsz_EdjTZ1gQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.892 [XNIO-1 task-1] aSRPclL1TU2HiYLFbp9w9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dfbcaa58 +16:40:55.892 [XNIO-1 task-1] aSRPclL1TU2HiYLFbp9w9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.892 [XNIO-1 task-1] aSRPclL1TU2HiYLFbp9w9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:55.892 [XNIO-1 task-1] aSRPclL1TU2HiYLFbp9w9g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/dfbcaa58 +16:40:55.905 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.905 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.905 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.905 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, requestBody) +16:40:55.905 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, requestBody) +16:40:55.906 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG com.networknt.schema.TypeValidator debug - validate( "b8ee58e2-eba2-4cb2-82de-6f342c29", {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, requestBody.lastName) +16:40:55.906 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG com.networknt.schema.FormatValidator debug - validate( "9a80e7b5-e885-4357-b4d1-43f185b82f66", {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, requestBody.password) +16:40:55.906 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, requestBody.userType) +16:40:55.906 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, requestBody) +16:40:55.906 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, {"userId":"d73868f3","userType":"admin","firstName":"544d5a5f-b169-4307-ab48-84994ebe","lastName":"b8ee58e2-eba2-4cb2-82de-6f342c29","email":"e0e5bb8f-7cb6-48c9-a16a-1d3f23c54b02","password":"9a80e7b5-e885-4357-b4d1-43f185b82f66"}, requestBody) +16:40:55.907 [XNIO-1 task-1] CQ_hkaF6SESGNQysxB8clw ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 9a80e7b5-e885-4357-b4d1-43f185b82f66 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.910 [XNIO-1 task-1] w5b-qsUSRBWKzDzKJNPFKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.910 [XNIO-1 task-1] w5b-qsUSRBWKzDzKJNPFKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.910 [XNIO-1 task-1] w5b-qsUSRBWKzDzKJNPFKA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.910 [XNIO-1 task-1] w5b-qsUSRBWKzDzKJNPFKA DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:55.921 [XNIO-1 task-1] QdrBBUqaRu2wsqA4QABCHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.921 [XNIO-1 task-1] QdrBBUqaRu2wsqA4QABCHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.921 [XNIO-1 task-1] QdrBBUqaRu2wsqA4QABCHQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.931 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.ClientMapStore store - Store:b6670536-4de8-4c24-8aac-d404f7759383 +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, requestBody) +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, requestBody) +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "fb4ad6a1-50b0-49e2-a9eb-0281cda7", {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, requestBody.lastName) +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "e4ad135c-c765-4552-8e7f-e69e75305cde", {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, requestBody.password) +16:40:55.941 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, requestBody.userType) +16:40:55.942 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, requestBody) +16:40:55.942 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, {"userId":"e417cf50","userType":"admin","firstName":"b29b4b6e-98e5-4060-ac2e-a13063e5","lastName":"fb4ad6a1-50b0-49e2-a9eb-0281cda7","email":"3c9762d4-c31e-4df9-8e31-b57f127b7a62","password":"e4ad135c-c765-4552-8e7f-e69e75305cde"}, requestBody) +16:40:55.943 [XNIO-1 task-1] ZCTF00JgTQivErWd6rXp4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password e4ad135c-c765-4552-8e7f-e69e75305cde or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:55.948 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.948 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.948 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:55.949 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, requestBody) +16:40:55.949 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "77264590-71e8-419c-9a08-f9154dd2", {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, requestBody.firstName) +16:40:55.949 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "804b02bf-5dd4-4fb8-969a-549fc5a26f30", {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, requestBody.password) +16:40:55.949 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, requestBody) +16:40:55.949 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, requestBody.userType) +16:40:55.949 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "8800ac21", {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, requestBody.userId) +16:40:55.949 [XNIO-1 task-1] _97a_hPiRqWYyAzsuYr8ZA DEBUG com.networknt.schema.TypeValidator debug - validate( "4714eb11-2d87-475f-af54-79d0a775562d", {"userId":"8800ac21","userType":"admin","firstName":"77264590-71e8-419c-9a08-f9154dd2","lastName":"18cbd655-0278-4025-a007-7d2bf267","email":"4714eb11-2d87-475f-af54-79d0a775562d","password":"804b02bf-5dd4-4fb8-969a-549fc5a26f30"}, requestBody.email) +16:40:55.954 [XNIO-1 task-1] 8ydUMx3hTumRGLfAbmdqKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.954 [XNIO-1 task-1] 8ydUMx3hTumRGLfAbmdqKw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.954 [XNIO-1 task-1] 8ydUMx3hTumRGLfAbmdqKw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8124a711, base path is set to: null +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8124a711, base path is set to: null +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "8124a711", "8124a711", userId) +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"62740714-2f15-48e9-92eb-a2b32943325f","newPassword":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPasswordConfirm":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c"}, {"password":"62740714-2f15-48e9-92eb-a2b32943325f","newPassword":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPasswordConfirm":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c"}, requestBody) +16:40:55.968 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "b30a74d0-dd98-44f1-b5a0-f7e684770a2c", {"password":"62740714-2f15-48e9-92eb-a2b32943325f","newPassword":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPasswordConfirm":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c"}, requestBody.newPasswordConfirm) +16:40:55.969 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "62740714-2f15-48e9-92eb-a2b32943325f", {"password":"62740714-2f15-48e9-92eb-a2b32943325f","newPassword":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPasswordConfirm":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c"}, requestBody.password) +16:40:55.969 [XNIO-1 task-1] cXN5hw4ORiSvQH7NOJwHPw DEBUG com.networknt.schema.TypeValidator debug - validate( "b30a74d0-dd98-44f1-b5a0-f7e684770a2c", {"password":"62740714-2f15-48e9-92eb-a2b32943325f","newPassword":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPasswordConfirm":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c"}, requestBody.newPassword) +16:40:55.991 [XNIO-1 task-1] l8cZvGrST5-jYEAlkkXzUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.991 [XNIO-1 task-1] l8cZvGrST5-jYEAlkkXzUQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.991 [XNIO-1 task-1] l8cZvGrST5-jYEAlkkXzUQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:55.991 [XNIO-1 task-1] l8cZvGrST5-jYEAlkkXzUQ DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:55.998 [XNIO-1 task-1] -l4Ue3MVTpWM6s9imWTQRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8124a711, base path is set to: null +16:40:55.998 [XNIO-1 task-1] -l4Ue3MVTpWM6s9imWTQRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:55.998 [XNIO-1 task-1] -l4Ue3MVTpWM6s9imWTQRQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:55.999 [XNIO-1 task-1] -l4Ue3MVTpWM6s9imWTQRQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8124a711, base path is set to: null +16:40:55.999 [XNIO-1 task-1] -l4Ue3MVTpWM6s9imWTQRQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8124a711", "8124a711", userId) +16:40:56.006 [XNIO-1 task-1] vAI0SAX3Tq-2YQk2vdYWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.006 [XNIO-1 task-1] vAI0SAX3Tq-2YQk2vdYWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.006 [XNIO-1 task-1] vAI0SAX3Tq-2YQk2vdYWww DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.006 [XNIO-1 task-1] vAI0SAX3Tq-2YQk2vdYWww DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.014 [XNIO-1 task-1] bmv7PgmlQ5yjoRGfj8HqOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.014 [XNIO-1 task-1] bmv7PgmlQ5yjoRGfj8HqOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.014 [XNIO-1 task-1] bmv7PgmlQ5yjoRGfj8HqOA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.023 [hz._hzInstance_1_dev.partition-operation.thread-0] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:9c4069c8-da06-486e-be2d-1294cc4e457e +16:40:56.030 [XNIO-1 task-1] ry3v2FkSQnS3EGE1zH9Vpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.030 [XNIO-1 task-1] ry3v2FkSQnS3EGE1zH9Vpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.030 [XNIO-1 task-1] ry3v2FkSQnS3EGE1zH9Vpw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8124a711 +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/8124a711 +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPassword":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPasswordConfirm":"8907a040-3414-4cf6-8434-bc06bb08b80e"}, {"password":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPassword":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPasswordConfirm":"8907a040-3414-4cf6-8434-bc06bb08b80e"}, requestBody) +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPassword":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPasswordConfirm":"8907a040-3414-4cf6-8434-bc06bb08b80e"}, {"password":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPassword":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPasswordConfirm":"8907a040-3414-4cf6-8434-bc06bb08b80e"}, requestBody) +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG com.networknt.schema.FormatValidator debug - validate( "8907a040-3414-4cf6-8434-bc06bb08b80e", {"password":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPassword":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPasswordConfirm":"8907a040-3414-4cf6-8434-bc06bb08b80e"}, requestBody.newPasswordConfirm) +16:40:56.038 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG com.networknt.schema.FormatValidator debug - validate( "b30a74d0-dd98-44f1-b5a0-f7e684770a2c", {"password":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPassword":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPasswordConfirm":"8907a040-3414-4cf6-8434-bc06bb08b80e"}, requestBody.password) +16:40:56.039 [XNIO-1 task-1] 3E1iaRIATpm4umtt18jKWw DEBUG com.networknt.schema.FormatValidator debug - validate( "8907a040-3414-4cf6-8434-bc06bb08b80e", {"password":"b30a74d0-dd98-44f1-b5a0-f7e684770a2c","newPassword":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPasswordConfirm":"8907a040-3414-4cf6-8434-bc06bb08b80e"}, requestBody.newPassword) +16:40:56.071 [XNIO-1 task-1] LVsVkOHnRMehOS7IKrxgow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.071 [XNIO-1 task-1] LVsVkOHnRMehOS7IKrxgow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.071 [XNIO-1 task-1] LVsVkOHnRMehOS7IKrxgow DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.072 [XNIO-1 task-1] LVsVkOHnRMehOS7IKrxgow DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.081 [XNIO-1 task-1] upRCmZi_SzOCQv-djQDTJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.081 [XNIO-1 task-1] upRCmZi_SzOCQv-djQDTJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.081 [XNIO-1 task-1] upRCmZi_SzOCQv-djQDTJg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.081 [XNIO-1 task-1] upRCmZi_SzOCQv-djQDTJg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.093 [XNIO-1 task-1] sVOvhDDpRW6DtyaLZjx2uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.093 [XNIO-1 task-1] sVOvhDDpRW6DtyaLZjx2uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.093 [XNIO-1 task-1] sVOvhDDpRW6DtyaLZjx2uQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.109 [XNIO-1 task-1] R_ET1vsuT-indMZTStEiBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.109 [XNIO-1 task-1] R_ET1vsuT-indMZTStEiBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.109 [XNIO-1 task-1] R_ET1vsuT-indMZTStEiBQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.110 [XNIO-1 task-1] R_ET1vsuT-indMZTStEiBQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.123 [XNIO-1 task-1] ltgH-7U0SZ2OWtUKs1pRrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.123 [XNIO-1 task-1] ltgH-7U0SZ2OWtUKs1pRrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.123 [XNIO-1 task-1] ltgH-7U0SZ2OWtUKs1pRrw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.135 [XNIO-1 task-1] FZuPNOxvQKqog8vae8tBBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.135 [XNIO-1 task-1] FZuPNOxvQKqog8vae8tBBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.136 [XNIO-1 task-1] FZuPNOxvQKqog8vae8tBBw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.145 [XNIO-1 task-1] rB8pnWrvSJagFbJ3-KglmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.145 [XNIO-1 task-1] rB8pnWrvSJagFbJ3-KglmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.145 [XNIO-1 task-1] rB8pnWrvSJagFbJ3-KglmQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.164 [XNIO-1 task-1] Cq2Nhd4mQ-6l666uam2Lag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.164 [XNIO-1 task-1] Cq2Nhd4mQ-6l666uam2Lag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.164 [XNIO-1 task-1] Cq2Nhd4mQ-6l666uam2Lag DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.175 [XNIO-1 task-1] afKGd-EXTMe8m_Hl826lAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.175 [XNIO-1 task-1] afKGd-EXTMe8m_Hl826lAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.175 [XNIO-1 task-1] afKGd-EXTMe8m_Hl826lAQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.176 [XNIO-1 task-1] afKGd-EXTMe8m_Hl826lAQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.183 [XNIO-1 task-1] KcISPB_oSzaOcVeukDmQdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.183 [XNIO-1 task-1] KcISPB_oSzaOcVeukDmQdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.183 [XNIO-1 task-1] KcISPB_oSzaOcVeukDmQdw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.183 [XNIO-1 task-1] KcISPB_oSzaOcVeukDmQdw DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.188 [XNIO-1 task-1] FbbhZdq0RYqIuYjC5361nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ae3319e +16:40:56.188 [XNIO-1 task-1] FbbhZdq0RYqIuYjC5361nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.188 [XNIO-1 task-1] FbbhZdq0RYqIuYjC5361nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.188 [XNIO-1 task-1] FbbhZdq0RYqIuYjC5361nA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/0ae3319e +16:40:56.190 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:6eb00f6e-7965-452d-a9c8-3374d87797e2 +16:40:56.200 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a89d5d7b +16:40:56.200 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.200 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.200 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:56.200 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a89d5d7b +16:40:56.200 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"3c0a80c2-2f7c-481a-8894-b504e3d081e9","newPassword":"880805c1-1088-4cf5-8668-28c4beb8df57","newPasswordConfirm":"880805c1-1088-4cf5-8668-28c4beb8df57"}, {"password":"3c0a80c2-2f7c-481a-8894-b504e3d081e9","newPassword":"880805c1-1088-4cf5-8668-28c4beb8df57","newPasswordConfirm":"880805c1-1088-4cf5-8668-28c4beb8df57"}, requestBody) +16:40:56.200 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"3c0a80c2-2f7c-481a-8894-b504e3d081e9","newPassword":"880805c1-1088-4cf5-8668-28c4beb8df57","newPasswordConfirm":"880805c1-1088-4cf5-8668-28c4beb8df57"}, {"password":"3c0a80c2-2f7c-481a-8894-b504e3d081e9","newPassword":"880805c1-1088-4cf5-8668-28c4beb8df57","newPasswordConfirm":"880805c1-1088-4cf5-8668-28c4beb8df57"}, requestBody) +16:40:56.201 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG com.networknt.schema.FormatValidator debug - validate( "880805c1-1088-4cf5-8668-28c4beb8df57", {"password":"3c0a80c2-2f7c-481a-8894-b504e3d081e9","newPassword":"880805c1-1088-4cf5-8668-28c4beb8df57","newPasswordConfirm":"880805c1-1088-4cf5-8668-28c4beb8df57"}, requestBody.newPasswordConfirm) +16:40:56.201 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG com.networknt.schema.FormatValidator debug - validate( "3c0a80c2-2f7c-481a-8894-b504e3d081e9", {"password":"3c0a80c2-2f7c-481a-8894-b504e3d081e9","newPassword":"880805c1-1088-4cf5-8668-28c4beb8df57","newPasswordConfirm":"880805c1-1088-4cf5-8668-28c4beb8df57"}, requestBody.password) +16:40:56.201 [XNIO-1 task-1] SJd5bfIwQg2Er40SgcqD6A DEBUG com.networknt.schema.FormatValidator debug - validate( "880805c1-1088-4cf5-8668-28c4beb8df57", {"password":"3c0a80c2-2f7c-481a-8894-b504e3d081e9","newPassword":"880805c1-1088-4cf5-8668-28c4beb8df57","newPasswordConfirm":"880805c1-1088-4cf5-8668-28c4beb8df57"}, requestBody.newPassword) +16:40:56.205 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:ab230026 +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8124a711, base path is set to: null +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8124a711, base path is set to: null +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8124a711", "8124a711", userId) +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPassword":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPasswordConfirm":"78fba8a4-0f68-4be9-a74e-08ed521252ca"}, {"password":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPassword":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPasswordConfirm":"78fba8a4-0f68-4be9-a74e-08ed521252ca"}, requestBody) +16:40:56.221 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78fba8a4-0f68-4be9-a74e-08ed521252ca", {"password":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPassword":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPasswordConfirm":"78fba8a4-0f68-4be9-a74e-08ed521252ca"}, requestBody.newPasswordConfirm) +16:40:56.222 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8907a040-3414-4cf6-8434-bc06bb08b80e", {"password":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPassword":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPasswordConfirm":"78fba8a4-0f68-4be9-a74e-08ed521252ca"}, requestBody.password) +16:40:56.222 [XNIO-1 task-1] SWbotWoOQcqGy7ua1aRtMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "78fba8a4-0f68-4be9-a74e-08ed521252ca", {"password":"8907a040-3414-4cf6-8434-bc06bb08b80e","newPassword":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPasswordConfirm":"78fba8a4-0f68-4be9-a74e-08ed521252ca"}, requestBody.newPassword) +16:40:56.242 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8124a711, base path is set to: null +16:40:56.242 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.242 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.242 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:56.242 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/8124a711, base path is set to: null +16:40:56.243 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG com.networknt.schema.TypeValidator debug - validate( "8124a711", "8124a711", userId) +16:40:56.243 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPassword":"57685768-e3eb-47b2-9d8c-6dca6c98483c","newPasswordConfirm":"57685768-e3eb-47b2-9d8c-6dca6c98483c"}, {"password":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPassword":"57685768-e3eb-47b2-9d8c-6dca6c98483c","newPasswordConfirm":"57685768-e3eb-47b2-9d8c-6dca6c98483c"}, requestBody) +16:40:56.243 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG com.networknt.schema.TypeValidator debug - validate( "57685768-e3eb-47b2-9d8c-6dca6c98483c", {"password":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPassword":"57685768-e3eb-47b2-9d8c-6dca6c98483c","newPasswordConfirm":"57685768-e3eb-47b2-9d8c-6dca6c98483c"}, requestBody.newPasswordConfirm) +16:40:56.243 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG com.networknt.schema.TypeValidator debug - validate( "78fba8a4-0f68-4be9-a74e-08ed521252ca", {"password":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPassword":"57685768-e3eb-47b2-9d8c-6dca6c98483c","newPasswordConfirm":"57685768-e3eb-47b2-9d8c-6dca6c98483c"}, requestBody.password) +16:40:56.243 [XNIO-1 task-1] RdexB4r7SHWz3nwBwyPAig DEBUG com.networknt.schema.TypeValidator debug - validate( "57685768-e3eb-47b2-9d8c-6dca6c98483c", {"password":"78fba8a4-0f68-4be9-a74e-08ed521252ca","newPassword":"57685768-e3eb-47b2-9d8c-6dca6c98483c","newPasswordConfirm":"57685768-e3eb-47b2-9d8c-6dca6c98483c"}, requestBody.newPassword) +16:40:56.255 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bbef356d +16:40:56.256 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:bbef356d +16:40:56.259 [XNIO-1 task-1] DmER0nirQpibye1tBl8M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a89d5d7b +16:40:56.259 [XNIO-1 task-1] DmER0nirQpibye1tBl8M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.259 [XNIO-1 task-1] DmER0nirQpibye1tBl8M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.259 [XNIO-1 task-1] DmER0nirQpibye1tBl8M7Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a89d5d7b +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, requestBody) +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, requestBody) +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "3c3a4a9a-78bf-41ad-8d05-6a5bb73a", {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, requestBody.lastName) +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG com.networknt.schema.FormatValidator debug - validate( "a219307a-3181-4a5e-9e35-4453a5a7d9bd", {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, requestBody.password) +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, requestBody.userType) +16:40:56.269 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, requestBody) +16:40:56.270 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, {"userId":"85670db1","userType":"admin","firstName":"a68db90f-d371-4a3c-aca1-559b34ca","lastName":"3c3a4a9a-78bf-41ad-8d05-6a5bb73a","email":"88c102a3-1d28-4f2a-8993-aed9b097b318","password":"a219307a-3181-4a5e-9e35-4453a5a7d9bd"}, requestBody) +16:40:56.272 [XNIO-1 task-1] D9eW5cvJRP-x9FJzi0RgrQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password a219307a-3181-4a5e-9e35-4453a5a7d9bd or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:56.275 [XNIO-1 task-1] gHKa6Z-YSVK10AkRw_CZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.275 [XNIO-1 task-1] gHKa6Z-YSVK10AkRw_CZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.275 [XNIO-1 task-1] gHKa6Z-YSVK10AkRw_CZWA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.283 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a89d5d7b +16:40:56.283 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.283 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.283 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:56.283 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a89d5d7b +16:40:56.284 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"880805c1-1088-4cf5-8668-28c4beb8df57","newPassword":"6d41b71a-6224-436d-ae0b-123024a4fd50","newPasswordConfirm":"6d41b71a-6224-436d-ae0b-123024a4fd50"}, {"password":"880805c1-1088-4cf5-8668-28c4beb8df57","newPassword":"6d41b71a-6224-436d-ae0b-123024a4fd50","newPasswordConfirm":"6d41b71a-6224-436d-ae0b-123024a4fd50"}, requestBody) +16:40:56.284 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"880805c1-1088-4cf5-8668-28c4beb8df57","newPassword":"6d41b71a-6224-436d-ae0b-123024a4fd50","newPasswordConfirm":"6d41b71a-6224-436d-ae0b-123024a4fd50"}, {"password":"880805c1-1088-4cf5-8668-28c4beb8df57","newPassword":"6d41b71a-6224-436d-ae0b-123024a4fd50","newPasswordConfirm":"6d41b71a-6224-436d-ae0b-123024a4fd50"}, requestBody) +16:40:56.284 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG com.networknt.schema.FormatValidator debug - validate( "6d41b71a-6224-436d-ae0b-123024a4fd50", {"password":"880805c1-1088-4cf5-8668-28c4beb8df57","newPassword":"6d41b71a-6224-436d-ae0b-123024a4fd50","newPasswordConfirm":"6d41b71a-6224-436d-ae0b-123024a4fd50"}, requestBody.newPasswordConfirm) +16:40:56.284 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG com.networknt.schema.FormatValidator debug - validate( "880805c1-1088-4cf5-8668-28c4beb8df57", {"password":"880805c1-1088-4cf5-8668-28c4beb8df57","newPassword":"6d41b71a-6224-436d-ae0b-123024a4fd50","newPasswordConfirm":"6d41b71a-6224-436d-ae0b-123024a4fd50"}, requestBody.password) +16:40:56.284 [XNIO-1 task-1] vDkuNYuLRYq5KG_Y40gbmA DEBUG com.networknt.schema.FormatValidator debug - validate( "6d41b71a-6224-436d-ae0b-123024a4fd50", {"password":"880805c1-1088-4cf5-8668-28c4beb8df57","newPassword":"6d41b71a-6224-436d-ae0b-123024a4fd50","newPasswordConfirm":"6d41b71a-6224-436d-ae0b-123024a4fd50"}, requestBody.newPassword) +16:40:56.303 [XNIO-1 task-1] _8DjLkAEQ7muOSRrG44gng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a89d5d7b +16:40:56.303 [XNIO-1 task-1] _8DjLkAEQ7muOSRrG44gng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.303 [XNIO-1 task-1] _8DjLkAEQ7muOSRrG44gng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.303 [XNIO-1 task-1] _8DjLkAEQ7muOSRrG44gng DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a89d5d7b +16:40:56.311 [XNIO-1 task-1] 8rcvZ83mTHSqpEqPPZ2_cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.311 [XNIO-1 task-1] 8rcvZ83mTHSqpEqPPZ2_cw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.311 [XNIO-1 task-1] 8rcvZ83mTHSqpEqPPZ2_cw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.325 [XNIO-1 task-1] 22_UiXuTT_a52odcbzw6yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a89d5d7b, base path is set to: null +16:40:56.325 [XNIO-1 task-1] 22_UiXuTT_a52odcbzw6yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.325 [XNIO-1 task-1] 22_UiXuTT_a52odcbzw6yQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.325 [XNIO-1 task-1] 22_UiXuTT_a52odcbzw6yQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a89d5d7b, base path is set to: null +16:40:56.326 [XNIO-1 task-1] 22_UiXuTT_a52odcbzw6yQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a89d5d7b", "a89d5d7b", userId) +16:40:56.328 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.oauth.cache.ServiceMapStore store - Store:650f613d +16:40:56.338 [XNIO-1 task-1] cv8mzKRgTu-SakBR6NgZyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.338 [XNIO-1 task-1] cv8mzKRgTu-SakBR6NgZyA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.338 [XNIO-1 task-1] cv8mzKRgTu-SakBR6NgZyA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.338 [XNIO-1 task-1] cv8mzKRgTu-SakBR6NgZyA DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.344 [XNIO-1 task-1] axsIMv8ORnSFm_2bQsdd9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.344 [XNIO-1 task-1] axsIMv8ORnSFm_2bQsdd9Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.344 [XNIO-1 task-1] axsIMv8ORnSFm_2bQsdd9Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.345 [XNIO-1 task-1] axsIMv8ORnSFm_2bQsdd9Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.350 [XNIO-1 task-1] bJxAnHbWSVO4q4zAvwE4iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8124a711, base path is set to: null +16:40:56.350 [XNIO-1 task-1] bJxAnHbWSVO4q4zAvwE4iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.350 [XNIO-1 task-1] bJxAnHbWSVO4q4zAvwE4iQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.350 [XNIO-1 task-1] bJxAnHbWSVO4q4zAvwE4iQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/8124a711, base path is set to: null +16:40:56.350 [XNIO-1 task-1] bJxAnHbWSVO4q4zAvwE4iQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8124a711", "8124a711", userId) +16:40:56.358 [XNIO-1 task-1] nAHSVp7_RI-7IFCHNTR1rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.358 [XNIO-1 task-1] nAHSVp7_RI-7IFCHNTR1rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.358 [XNIO-1 task-1] nAHSVp7_RI-7IFCHNTR1rQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.358 [XNIO-1 task-1] nAHSVp7_RI-7IFCHNTR1rQ DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, requestBody) +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "5900e3a9-9383-4606-be70-acc7ca77", {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, requestBody.firstName) +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59", {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, requestBody.password) +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, requestBody) +16:40:56.366 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, requestBody.userType) +16:40:56.367 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9610d581", {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, requestBody.userId) +16:40:56.367 [XNIO-1 task-1] 7Bvh5JyERFWWylsN6KbsoQ DEBUG com.networknt.schema.TypeValidator debug - validate( "f6039469-44f1-4864-b060-a886d57215cd", {"userId":"9610d581","userType":"admin","firstName":"5900e3a9-9383-4606-be70-acc7ca77","lastName":"efbf63a6-798f-4b76-9f21-d71da5a1","email":"f6039469-44f1-4864-b060-a886d57215cd","password":"25fdd6ed-49dd-40e8-8f5f-9f6ec7bcab59"}, requestBody.email) +16:40:56.371 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.371 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.371 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.372 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, requestBody) +16:40:56.372 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, requestBody) +16:40:56.372 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "4933beb6-cf8d-494a-a2b9-8989188f", {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, requestBody.lastName) +16:40:56.372 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG com.networknt.schema.FormatValidator debug - validate( "d3e7da9a-2f56-4be7-ba1c-6a932ee9d052", {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, requestBody.password) +16:40:56.372 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, requestBody.userType) +16:40:56.372 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, requestBody) +16:40:56.372 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, {"userId":"1de2c305","userType":"admin","firstName":"3a457123-165a-4df6-a671-fb8d0625","lastName":"4933beb6-cf8d-494a-a2b9-8989188f","email":"3b785a48-b480-4ee6-b354-926c01eb2529","password":"d3e7da9a-2f56-4be7-ba1c-6a932ee9d052"}, requestBody) +16:40:56.373 [XNIO-1 task-1] DD3MXNwySnG-0XnvKIqj4Q ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password d3e7da9a-2f56-4be7-ba1c-6a932ee9d052 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, requestBody) +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG com.networknt.schema.TypeValidator debug - validate( "ac4370d7-51f7-4e86-b739-59ca9f77", {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, requestBody.firstName) +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG com.networknt.schema.TypeValidator debug - validate( "6b65a101-7e67-4f4a-993f-e849486f2878", {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, requestBody.password) +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, requestBody) +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, requestBody.userType) +16:40:56.380 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG com.networknt.schema.TypeValidator debug - validate( "e97aa137", {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, requestBody.userId) +16:40:56.381 [XNIO-1 task-1] 470Gov0HQ8qJVtSmkd8hHA DEBUG com.networknt.schema.TypeValidator debug - validate( "5492d5f9-b25a-47fe-9c10-801650b331ad", {"userId":"e97aa137","userType":"admin","firstName":"ac4370d7-51f7-4e86-b739-59ca9f77","lastName":"97a8a912-b5b9-46e7-b241-3b2548be","email":"5492d5f9-b25a-47fe-9c10-801650b331ad","password":"6b65a101-7e67-4f4a-993f-e849486f2878"}, requestBody.email) +16:40:56.386 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.386 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.386 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.387 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, requestBody) +16:40:56.387 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, requestBody) +16:40:56.387 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG com.networknt.schema.TypeValidator debug - validate( "ada4695a-c485-42b5-9837-3ef17eb4", {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, requestBody.lastName) +16:40:56.387 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG com.networknt.schema.FormatValidator debug - validate( "c1405222-7aae-4a2d-9d32-6da999c4ba81", {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, requestBody.password) +16:40:56.387 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, requestBody.userType) +16:40:56.387 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, requestBody) +16:40:56.387 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, {"userId":"37fcb195","userType":"admin","firstName":"3d58889f-67f8-4d9b-9970-21450f00","lastName":"ada4695a-c485-42b5-9837-3ef17eb4","email":"e011c92b-aa1e-410f-b16d-0e49ced18436","password":"c1405222-7aae-4a2d-9d32-6da999c4ba81"}, requestBody) +16:40:56.390 [XNIO-1 task-1] Vx9i4XalSGejFlIoGbPiew ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password c1405222-7aae-4a2d-9d32-6da999c4ba81 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:56.393 [XNIO-1 task-1] fKqxwFjlSIWREljJI6dOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.393 [XNIO-1 task-1] fKqxwFjlSIWREljJI6dOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.393 [XNIO-1 task-1] fKqxwFjlSIWREljJI6dOfw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.402 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7ce5759 +16:40:56.409 [XNIO-1 task-1] xXIEzhjGR5GebZdoZx6x7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.410 [XNIO-1 task-1] xXIEzhjGR5GebZdoZx6x7g DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.410 [XNIO-1 task-1] xXIEzhjGR5GebZdoZx6x7g DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.410 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7ce5759 +16:40:56.419 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.419 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.419 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.420 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, requestBody) +16:40:56.420 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, requestBody) +16:40:56.420 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG com.networknt.schema.TypeValidator debug - validate( "62ceec81-f3f9-4721-ad77-0e8103f7", {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, requestBody.lastName) +16:40:56.420 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG com.networknt.schema.FormatValidator debug - validate( "737effb9-9e41-4092-8be1-4dfa0f82a87c", {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, requestBody.password) +16:40:56.420 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, requestBody.userType) +16:40:56.420 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, requestBody) +16:40:56.420 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, {"userId":"4dfef0bc","userType":"admin","firstName":"42ab594a-7013-4942-b598-019cafc3","lastName":"62ceec81-f3f9-4721-ad77-0e8103f7","email":"10a48d7f-e12e-405c-a0de-b1ab6d28d986","password":"737effb9-9e41-4092-8be1-4dfa0f82a87c"}, requestBody) +16:40:56.423 [XNIO-1 task-1] RagYszGORTWKcVXsC-bllA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 737effb9-9e41-4092-8be1-4dfa0f82a87c or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:56.431 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.431 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.431 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.432 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, requestBody) +16:40:56.432 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "70bf6601-bd26-4728-bee7-7013903d", {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, requestBody.firstName) +16:40:56.432 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "dc6f32b7-329f-4b59-927f-85141df13462", {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, requestBody.password) +16:40:56.432 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, requestBody) +16:40:56.432 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, requestBody.userType) +16:40:56.432 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "2d324a6d", {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, requestBody.userId) +16:40:56.432 [XNIO-1 task-1] vuVnVAuCSKCMpejCMOuwhA DEBUG com.networknt.schema.TypeValidator debug - validate( "b6ec8958-f279-4cf5-9e4c-d026034da39f", {"userId":"2d324a6d","userType":"admin","firstName":"70bf6601-bd26-4728-bee7-7013903d","lastName":"79a6152e-98bf-4960-ab28-3751d8f5","email":"b6ec8958-f279-4cf5-9e4c-d026034da39f","password":"dc6f32b7-329f-4b59-927f-85141df13462"}, requestBody.email) +16:40:56.435 [XNIO-1 task-1] O24VdUbsQLONlHawsVwfxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.436 [XNIO-1 task-1] O24VdUbsQLONlHawsVwfxg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.436 [XNIO-1 task-1] O24VdUbsQLONlHawsVwfxg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.436 [XNIO-1 task-1] O24VdUbsQLONlHawsVwfxg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.439 [XNIO-1 task-1] uL_COTY4TgKDSK1M9S-j7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.439 [XNIO-1 task-1] uL_COTY4TgKDSK1M9S-j7Q DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.439 [XNIO-1 task-1] uL_COTY4TgKDSK1M9S-j7Q DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.439 [XNIO-1 task-1] uL_COTY4TgKDSK1M9S-j7Q DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.442 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a7ce5759, base path is set to: null +16:40:56.442 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.442 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.442 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:56.443 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a7ce5759, base path is set to: null +16:40:56.443 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG com.networknt.schema.TypeValidator debug - validate( "a7ce5759", "a7ce5759", userId) +16:40:56.443 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"ebd30a72-2793-4509-b1b1-adb90687a4a5","newPassword":"9dcb4cf9-9095-473f-a63f-8989818ea52d","newPasswordConfirm":"9dcb4cf9-9095-473f-a63f-8989818ea52d"}, {"password":"ebd30a72-2793-4509-b1b1-adb90687a4a5","newPassword":"9dcb4cf9-9095-473f-a63f-8989818ea52d","newPasswordConfirm":"9dcb4cf9-9095-473f-a63f-8989818ea52d"}, requestBody) +16:40:56.443 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG com.networknt.schema.TypeValidator debug - validate( "9dcb4cf9-9095-473f-a63f-8989818ea52d", {"password":"ebd30a72-2793-4509-b1b1-adb90687a4a5","newPassword":"9dcb4cf9-9095-473f-a63f-8989818ea52d","newPasswordConfirm":"9dcb4cf9-9095-473f-a63f-8989818ea52d"}, requestBody.newPasswordConfirm) +16:40:56.443 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG com.networknt.schema.TypeValidator debug - validate( "ebd30a72-2793-4509-b1b1-adb90687a4a5", {"password":"ebd30a72-2793-4509-b1b1-adb90687a4a5","newPassword":"9dcb4cf9-9095-473f-a63f-8989818ea52d","newPasswordConfirm":"9dcb4cf9-9095-473f-a63f-8989818ea52d"}, requestBody.password) +16:40:56.443 [XNIO-1 task-1] VfLIx5sUTq24u8iqFxGOhA DEBUG com.networknt.schema.TypeValidator debug - validate( "9dcb4cf9-9095-473f-a63f-8989818ea52d", {"password":"ebd30a72-2793-4509-b1b1-adb90687a4a5","newPassword":"9dcb4cf9-9095-473f-a63f-8989818ea52d","newPasswordConfirm":"9dcb4cf9-9095-473f-a63f-8989818ea52d"}, requestBody.newPassword) +16:40:56.452 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore store - Store:a7ce5759 +16:40:56.458 [XNIO-1 task-1] r7GiP-AOQoaP9zqDc_LEWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7ce5759, base path is set to: null +16:40:56.458 [XNIO-1 task-1] r7GiP-AOQoaP9zqDc_LEWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.458 [XNIO-1 task-1] r7GiP-AOQoaP9zqDc_LEWg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.458 [XNIO-1 task-1] r7GiP-AOQoaP9zqDc_LEWg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7ce5759, base path is set to: null +16:40:56.458 [XNIO-1 task-1] r7GiP-AOQoaP9zqDc_LEWg DEBUG com.networknt.schema.TypeValidator debug - validate( "a7ce5759", "a7ce5759", userId) +16:40:56.461 [XNIO-1 task-1] irgb2iQxSquhNI5jObxkvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.461 [XNIO-1 task-1] irgb2iQxSquhNI5jObxkvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.461 [XNIO-1 task-1] irgb2iQxSquhNI5jObxkvg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.461 [XNIO-1 task-1] irgb2iQxSquhNI5jObxkvg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.465 [XNIO-1 task-1] Jer_zR4nQ4mL1bP3kPxl_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a7ce5759 +16:40:56.465 [XNIO-1 task-1] Jer_zR4nQ4mL1bP3kPxl_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.465 [XNIO-1 task-1] Jer_zR4nQ4mL1bP3kPxl_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.465 [XNIO-1 task-1] Jer_zR4nQ4mL1bP3kPxl_A DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a7ce5759 +16:40:56.468 [XNIO-1 task-1] Lew0KbKAQIGwSbA4SK7kqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7ce5759, base path is set to: null +16:40:56.468 [XNIO-1 task-1] Lew0KbKAQIGwSbA4SK7kqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.468 [XNIO-1 task-1] Lew0KbKAQIGwSbA4SK7kqQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.468 [XNIO-1 task-1] Lew0KbKAQIGwSbA4SK7kqQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/a7ce5759, base path is set to: null +16:40:56.468 [XNIO-1 task-1] Lew0KbKAQIGwSbA4SK7kqQ DEBUG com.networknt.schema.TypeValidator debug - validate( "a7ce5759", "a7ce5759", userId) +16:40:56.471 [XNIO-1 task-1] XK0SDdXUQCOYX2WpOMhb6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.471 [XNIO-1 task-1] XK0SDdXUQCOYX2WpOMhb6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.471 [XNIO-1 task-1] XK0SDdXUQCOYX2WpOMhb6g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.472 [XNIO-1 task-1] XK0SDdXUQCOYX2WpOMhb6g DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.475 [XNIO-1 task-1] GvwZGhJ2Tw6lyr3JJ_ihug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.475 [XNIO-1 task-1] GvwZGhJ2Tw6lyr3JJ_ihug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.475 [XNIO-1 task-1] GvwZGhJ2Tw6lyr3JJ_ihug DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.476 [XNIO-1 task-1] GvwZGhJ2Tw6lyr3JJ_ihug DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:56.478 [XNIO-1 task-1] 4JElSApGSoOv5o3EFBQ0eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a7ce5759 +16:40:56.479 [XNIO-1 task-1] 4JElSApGSoOv5o3EFBQ0eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.479 [XNIO-1 task-1] 4JElSApGSoOv5o3EFBQ0eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.479 [XNIO-1 task-1] 4JElSApGSoOv5o3EFBQ0eA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/a7ce5759 +16:40:56.479 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.networknt.oauth.cache.UserMapStore delete - Delete:a7ce5759 +16:40:56.487 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.487 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.487 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.487 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, requestBody) +16:40:56.488 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG com.networknt.schema.TypeValidator debug - validate( "f0445bec-0a2c-4e16-b0f1-85c8fa1b", {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, requestBody.firstName) +16:40:56.488 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG com.networknt.schema.TypeValidator debug - validate( "58572bbd-0582-47b0-acd0-a06637b24549", {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, requestBody.password) +16:40:56.488 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, requestBody) +16:40:56.488 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, requestBody.userType) +16:40:56.488 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG com.networknt.schema.TypeValidator debug - validate( "ec94ea13", {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, requestBody.userId) +16:40:56.488 [XNIO-1 task-1] GZP4iH-oTAiaGB6r0ZmpZw DEBUG com.networknt.schema.TypeValidator debug - validate( "74f77975-d662-43e1-88da-6ed971970188", {"userId":"ec94ea13","userType":"admin","firstName":"f0445bec-0a2c-4e16-b0f1-85c8fa1b","lastName":"8bc0c7f5-2516-4655-bd09-2642dc65","email":"74f77975-d662-43e1-88da-6ed971970188","password":"58572bbd-0582-47b0-acd0-a06637b24549"}, requestBody.email) +16:40:56.491 [XNIO-1 task-1] Q6-mlh3KRLaeQX-eHZmiZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.491 [XNIO-1 task-1] Q6-mlh3KRLaeQX-eHZmiZw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.491 [XNIO-1 task-1] Q6-mlh3KRLaeQX-eHZmiZw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.502 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.502 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, requestBody) +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, requestBody) +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "10075eaa-c31d-46e9-8542-2c15ffe4", {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, requestBody.lastName) +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG com.networknt.schema.FormatValidator debug - validate( "b47a9768-b634-41b6-8045-c587f898022d", {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, requestBody.password) +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, requestBody.userType) +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, requestBody) +16:40:56.503 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, {"userId":"8f77350f","userType":"admin","firstName":"8914799b-878e-439a-b932-2977b9e9","lastName":"10075eaa-c31d-46e9-8542-2c15ffe4","email":"b6a6a087-2e1c-47ee-ae9f-2469250d1841","password":"b47a9768-b634-41b6-8045-c587f898022d"}, requestBody) +16:40:56.504 [XNIO-1 task-1] Mg5GcqpqRnW5s3dlvF2UMQ ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password b47a9768-b634-41b6-8045-c587f898022d or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:56.507 [XNIO-1 task-1] Sz0rlWg8RieuWV3JfX4KhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3147435b +16:40:56.507 [XNIO-1 task-1] Sz0rlWg8RieuWV3JfX4KhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.507 [XNIO-1 task-1] Sz0rlWg8RieuWV3JfX4KhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.507 [XNIO-1 task-1] Sz0rlWg8RieuWV3JfX4KhA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/3147435b +16:40:56.513 [XNIO-1 task-1] hvezF-3xS3aqSGf0emg6Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.514 [XNIO-1 task-1] hvezF-3xS3aqSGf0emg6Zw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.514 [XNIO-1 task-1] hvezF-3xS3aqSGf0emg6Zw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.514 [XNIO-1 task-1] hvezF-3xS3aqSGf0emg6Zw DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:56.519 [XNIO-1 task-1] wXW-Mf30Qmykp5Y_idU9Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.519 [XNIO-1 task-1] wXW-Mf30Qmykp5Y_idU9Zg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.519 [XNIO-1 task-1] wXW-Mf30Qmykp5Y_idU9Zg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.534 [XNIO-1 task-1] PyCgkK1nQYaSl4FD1p_xcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.535 [XNIO-1 task-1] PyCgkK1nQYaSl4FD1p_xcQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.535 [XNIO-1 task-1] PyCgkK1nQYaSl4FD1p_xcQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.543 [XNIO-1 task-1] kMVDHLf3R_qTXsDrZ7eQDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.543 [XNIO-1 task-1] kMVDHLf3R_qTXsDrZ7eQDA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.543 [XNIO-1 task-1] kMVDHLf3R_qTXsDrZ7eQDA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fccffed8, base path is set to: null +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fccffed8, base path is set to: null +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "fccffed8", "fccffed8", userId) +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"9c81b6ec-ae31-40cf-81ff-89169f5fd734","newPassword":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPasswordConfirm":"8fc10391-4c69-43f9-9393-2e458e0196bc"}, {"password":"9c81b6ec-ae31-40cf-81ff-89169f5fd734","newPassword":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPasswordConfirm":"8fc10391-4c69-43f9-9393-2e458e0196bc"}, requestBody) +16:40:56.557 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8fc10391-4c69-43f9-9393-2e458e0196bc", {"password":"9c81b6ec-ae31-40cf-81ff-89169f5fd734","newPassword":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPasswordConfirm":"8fc10391-4c69-43f9-9393-2e458e0196bc"}, requestBody.newPasswordConfirm) +16:40:56.558 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "9c81b6ec-ae31-40cf-81ff-89169f5fd734", {"password":"9c81b6ec-ae31-40cf-81ff-89169f5fd734","newPassword":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPasswordConfirm":"8fc10391-4c69-43f9-9393-2e458e0196bc"}, requestBody.password) +16:40:56.558 [XNIO-1 task-1] bTonHmGtQUmxOh7Aycc5TQ DEBUG com.networknt.schema.TypeValidator debug - validate( "8fc10391-4c69-43f9-9393-2e458e0196bc", {"password":"9c81b6ec-ae31-40cf-81ff-89169f5fd734","newPassword":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPasswordConfirm":"8fc10391-4c69-43f9-9393-2e458e0196bc"}, requestBody.newPassword) +16:40:56.574 [XNIO-1 task-1] esTRDXyGT3y6aFJtkmubFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/916c588b, base path is set to: null +16:40:56.574 [XNIO-1 task-1] esTRDXyGT3y6aFJtkmubFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:56.574 [XNIO-1 task-1] esTRDXyGT3y6aFJtkmubFA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:56.574 [XNIO-1 task-1] esTRDXyGT3y6aFJtkmubFA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/916c588b, base path is set to: null +16:40:56.574 [XNIO-1 task-1] esTRDXyGT3y6aFJtkmubFA DEBUG com.networknt.schema.TypeValidator debug - validate( "916c588b", "916c588b", userId) +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fccffed8 +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fccffed8 +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPassword":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPasswordConfirm":"0bc36c71-6d4b-4079-8b49-e6361d15cf05"}, {"password":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPassword":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPasswordConfirm":"0bc36c71-6d4b-4079-8b49-e6361d15cf05"}, requestBody) +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPassword":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPasswordConfirm":"0bc36c71-6d4b-4079-8b49-e6361d15cf05"}, {"password":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPassword":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPasswordConfirm":"0bc36c71-6d4b-4079-8b49-e6361d15cf05"}, requestBody) +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG com.networknt.schema.FormatValidator debug - validate( "0bc36c71-6d4b-4079-8b49-e6361d15cf05", {"password":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPassword":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPasswordConfirm":"0bc36c71-6d4b-4079-8b49-e6361d15cf05"}, requestBody.newPasswordConfirm) +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG com.networknt.schema.FormatValidator debug - validate( "8fc10391-4c69-43f9-9393-2e458e0196bc", {"password":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPassword":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPasswordConfirm":"0bc36c71-6d4b-4079-8b49-e6361d15cf05"}, requestBody.password) +16:40:56.582 [XNIO-1 task-1] KPN2jTDAQGOOH3XNa-KNrg DEBUG com.networknt.schema.FormatValidator debug - validate( "0bc36c71-6d4b-4079-8b49-e6361d15cf05", {"password":"8fc10391-4c69-43f9-9393-2e458e0196bc","newPassword":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPasswordConfirm":"0bc36c71-6d4b-4079-8b49-e6361d15cf05"}, requestBody.newPassword) +16:40:56.600 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fccffed8 +16:40:56.600 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.600 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:56.600 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:56.600 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/fccffed8 +16:40:56.601 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPassword":"f40509c1-e86b-449d-9f75-00112261e851","newPasswordConfirm":"f40509c1-e86b-449d-9f75-00112261e851"}, {"password":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPassword":"f40509c1-e86b-449d-9f75-00112261e851","newPasswordConfirm":"f40509c1-e86b-449d-9f75-00112261e851"}, requestBody) +16:40:56.601 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPassword":"f40509c1-e86b-449d-9f75-00112261e851","newPasswordConfirm":"f40509c1-e86b-449d-9f75-00112261e851"}, {"password":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPassword":"f40509c1-e86b-449d-9f75-00112261e851","newPasswordConfirm":"f40509c1-e86b-449d-9f75-00112261e851"}, requestBody) +16:40:56.601 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG com.networknt.schema.FormatValidator debug - validate( "f40509c1-e86b-449d-9f75-00112261e851", {"password":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPassword":"f40509c1-e86b-449d-9f75-00112261e851","newPasswordConfirm":"f40509c1-e86b-449d-9f75-00112261e851"}, requestBody.newPasswordConfirm) +16:40:56.601 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG com.networknt.schema.FormatValidator debug - validate( "0bc36c71-6d4b-4079-8b49-e6361d15cf05", {"password":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPassword":"f40509c1-e86b-449d-9f75-00112261e851","newPasswordConfirm":"f40509c1-e86b-449d-9f75-00112261e851"}, requestBody.password) +16:40:56.601 [XNIO-1 task-1] Zht9YrRESYKiEuTzyHiqRg DEBUG com.networknt.schema.FormatValidator debug - validate( "f40509c1-e86b-449d-9f75-00112261e851", {"password":"0bc36c71-6d4b-4079-8b49-e6361d15cf05","newPassword":"f40509c1-e86b-449d-9f75-00112261e851","newPasswordConfirm":"f40509c1-e86b-449d-9f75-00112261e851"}, requestBody.newPassword) +16:40:56.617 [XNIO-1 task-1] c40BITIjQKGl5aW06F1AVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.617 [XNIO-1 task-1] c40BITIjQKGl5aW06F1AVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:56.617 [XNIO-1 task-1] c40BITIjQKGl5aW06F1AVw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.602 [XNIO-1 task-1] W2f085wCR2iYFUb1L1VG6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fccffed8 +16:40:57.602 [XNIO-1 task-1] W2f085wCR2iYFUb1L1VG6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.602 [XNIO-1 task-1] W2f085wCR2iYFUb1L1VG6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.602 [XNIO-1 task-1] W2f085wCR2iYFUb1L1VG6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/fccffed8 +16:40:57.617 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fccffed8, base path is set to: null +16:40:57.617 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.617 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:57.617 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:57.617 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/fccffed8, base path is set to: null +16:40:57.618 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG com.networknt.schema.TypeValidator debug - validate( "fccffed8", "fccffed8", userId) +16:40:57.618 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f40509c1-e86b-449d-9f75-00112261e851","newPassword":"e0324e6c-f952-4551-9eeb-6cd046755930","newPasswordConfirm":"e0324e6c-f952-4551-9eeb-6cd046755930"}, {"password":"f40509c1-e86b-449d-9f75-00112261e851","newPassword":"e0324e6c-f952-4551-9eeb-6cd046755930","newPasswordConfirm":"e0324e6c-f952-4551-9eeb-6cd046755930"}, requestBody) +16:40:57.618 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG com.networknt.schema.TypeValidator debug - validate( "e0324e6c-f952-4551-9eeb-6cd046755930", {"password":"f40509c1-e86b-449d-9f75-00112261e851","newPassword":"e0324e6c-f952-4551-9eeb-6cd046755930","newPasswordConfirm":"e0324e6c-f952-4551-9eeb-6cd046755930"}, requestBody.newPasswordConfirm) +16:40:57.618 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG com.networknt.schema.TypeValidator debug - validate( "f40509c1-e86b-449d-9f75-00112261e851", {"password":"f40509c1-e86b-449d-9f75-00112261e851","newPassword":"e0324e6c-f952-4551-9eeb-6cd046755930","newPasswordConfirm":"e0324e6c-f952-4551-9eeb-6cd046755930"}, requestBody.password) +16:40:57.618 [XNIO-1 task-1] mgNr2xS5TP-3GRisEjaVhw DEBUG com.networknt.schema.TypeValidator debug - validate( "e0324e6c-f952-4551-9eeb-6cd046755930", {"password":"f40509c1-e86b-449d-9f75-00112261e851","newPassword":"e0324e6c-f952-4551-9eeb-6cd046755930","newPasswordConfirm":"e0324e6c-f952-4551-9eeb-6cd046755930"}, requestBody.newPassword) +16:40:57.619 [hz._hzInstance_1_dev.partition-operation.thread-13] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:6cac02fe-7127-42e1-b7d7-85fb710a5a95 +16:40:57.638 [hz._hzInstance_1_dev.partition-operation.thread-12] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:ebf33e96-2652-42ec-944d-ee4cac072031 +16:40:57.643 [XNIO-1 task-1] joNWkFiaQQmWqvb_Z4uDRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fccffed8, base path is set to: null +16:40:57.644 [XNIO-1 task-1] joNWkFiaQQmWqvb_Z4uDRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.644 [XNIO-1 task-1] joNWkFiaQQmWqvb_Z4uDRg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:57.644 [XNIO-1 task-1] joNWkFiaQQmWqvb_Z4uDRg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fccffed8, base path is set to: null +16:40:57.644 [XNIO-1 task-1] joNWkFiaQQmWqvb_Z4uDRg DEBUG com.networknt.schema.TypeValidator debug - validate( "fccffed8", "fccffed8", userId) +16:40:57.650 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/48e27e0b +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/48e27e0b +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"ec8c6f86-0d30-4d96-8db9-819e8c8d018b","newPassword":"c00093d9-eabf-488e-a400-d3a2605c1c11","newPasswordConfirm":"c00093d9-eabf-488e-a400-d3a2605c1c11"}, {"password":"ec8c6f86-0d30-4d96-8db9-819e8c8d018b","newPassword":"c00093d9-eabf-488e-a400-d3a2605c1c11","newPasswordConfirm":"c00093d9-eabf-488e-a400-d3a2605c1c11"}, requestBody) +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"ec8c6f86-0d30-4d96-8db9-819e8c8d018b","newPassword":"c00093d9-eabf-488e-a400-d3a2605c1c11","newPasswordConfirm":"c00093d9-eabf-488e-a400-d3a2605c1c11"}, {"password":"ec8c6f86-0d30-4d96-8db9-819e8c8d018b","newPassword":"c00093d9-eabf-488e-a400-d3a2605c1c11","newPasswordConfirm":"c00093d9-eabf-488e-a400-d3a2605c1c11"}, requestBody) +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG com.networknt.schema.FormatValidator debug - validate( "c00093d9-eabf-488e-a400-d3a2605c1c11", {"password":"ec8c6f86-0d30-4d96-8db9-819e8c8d018b","newPassword":"c00093d9-eabf-488e-a400-d3a2605c1c11","newPasswordConfirm":"c00093d9-eabf-488e-a400-d3a2605c1c11"}, requestBody.newPasswordConfirm) +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG com.networknt.schema.FormatValidator debug - validate( "ec8c6f86-0d30-4d96-8db9-819e8c8d018b", {"password":"ec8c6f86-0d30-4d96-8db9-819e8c8d018b","newPassword":"c00093d9-eabf-488e-a400-d3a2605c1c11","newPasswordConfirm":"c00093d9-eabf-488e-a400-d3a2605c1c11"}, requestBody.password) +16:40:57.651 [XNIO-1 task-1] P5r_vzzjS9mssrLSMYgOlw DEBUG com.networknt.schema.FormatValidator debug - validate( "c00093d9-eabf-488e-a400-d3a2605c1c11", {"password":"ec8c6f86-0d30-4d96-8db9-819e8c8d018b","newPassword":"c00093d9-eabf-488e-a400-d3a2605c1c11","newPasswordConfirm":"c00093d9-eabf-488e-a400-d3a2605c1c11"}, requestBody.newPassword) +16:40:57.668 [XNIO-1 task-1] n84G5QURQh-Ru-n8lmK8Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48e27e0b +16:40:57.668 [XNIO-1 task-1] n84G5QURQh-Ru-n8lmK8Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.669 [XNIO-1 task-1] n84G5QURQh-Ru-n8lmK8Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.669 [XNIO-1 task-1] n84G5QURQh-Ru-n8lmK8Ig DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48e27e0b +16:40:57.676 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a7ea5d79-285b-405f-ad15-c275b595f675 +16:40:57.678 [hz._hzInstance_1_dev.partition-operation.thread-7] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:a7ea5d79-285b-405f-ad15-c275b595f675 +16:40:57.678 [XNIO-1 task-1] _aD9227BRRuwb4r7CfAiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.678 [XNIO-1 task-1] _aD9227BRRuwb4r7CfAiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.679 [XNIO-1 task-1] _aD9227BRRuwb4r7CfAiUw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.692 [XNIO-1 task-1] 95vIMtYUTvGPUN5XP847sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.693 [XNIO-1 task-1] 95vIMtYUTvGPUN5XP847sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.693 [XNIO-1 task-1] 95vIMtYUTvGPUN5XP847sg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.696 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ServiceMapStore delete - Delete:bbef356d +16:40:57.698 [XNIO-1 task-1] 28TyDSTYTMKdNdK2CU0jTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.698 [XNIO-1 task-1] 28TyDSTYTMKdNdK2CU0jTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.698 [XNIO-1 task-1] 28TyDSTYTMKdNdK2CU0jTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.699 [XNIO-1 task-1] 28TyDSTYTMKdNdK2CU0jTg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:57.701 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:bd020d37-958f-4555-9f11-b8f8db22d2b1 +16:40:57.706 [XNIO-1 task-1] RAR9l8s6T9KC-AYAuKFC2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.706 [XNIO-1 task-1] RAR9l8s6T9KC-AYAuKFC2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.707 [XNIO-1 task-1] RAR9l8s6T9KC-AYAuKFC2g DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.720 [hz._hzInstance_1_dev.partition-operation.thread-10] DEBUG c.n.oauth.cache.ServiceMapStore load - Load:ab230026 +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8512d24 +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8512d24 +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"91dc0b07-a474-4f85-a19d-c7c7f4002565","newPassword":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPasswordConfirm":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad"}, {"password":"91dc0b07-a474-4f85-a19d-c7c7f4002565","newPassword":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPasswordConfirm":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad"}, requestBody) +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"91dc0b07-a474-4f85-a19d-c7c7f4002565","newPassword":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPasswordConfirm":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad"}, {"password":"91dc0b07-a474-4f85-a19d-c7c7f4002565","newPassword":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPasswordConfirm":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad"}, requestBody) +16:40:57.722 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG com.networknt.schema.FormatValidator debug - validate( "88b1e1f7-5ef3-4598-b4a6-8a74748f8dad", {"password":"91dc0b07-a474-4f85-a19d-c7c7f4002565","newPassword":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPasswordConfirm":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad"}, requestBody.newPasswordConfirm) +16:40:57.723 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG com.networknt.schema.FormatValidator debug - validate( "91dc0b07-a474-4f85-a19d-c7c7f4002565", {"password":"91dc0b07-a474-4f85-a19d-c7c7f4002565","newPassword":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPasswordConfirm":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad"}, requestBody.password) +16:40:57.723 [XNIO-1 task-1] zSO0D1-pRvaduCKbsNqbfg DEBUG com.networknt.schema.FormatValidator debug - validate( "88b1e1f7-5ef3-4598-b4a6-8a74748f8dad", {"password":"91dc0b07-a474-4f85-a19d-c7c7f4002565","newPassword":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPasswordConfirm":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad"}, requestBody.newPassword) +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8512d24 +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8512d24 +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPassword":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPasswordConfirm":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243"}, {"password":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPassword":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPasswordConfirm":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243"}, requestBody) +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPassword":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPasswordConfirm":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243"}, {"password":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPassword":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPasswordConfirm":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243"}, requestBody) +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "bc47337e-dd0d-4f29-ad74-70fd2a3b3243", {"password":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPassword":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPasswordConfirm":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243"}, requestBody.newPasswordConfirm) +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "88b1e1f7-5ef3-4598-b4a6-8a74748f8dad", {"password":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPassword":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPasswordConfirm":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243"}, requestBody.password) +16:40:57.748 [XNIO-1 task-1] 2RK4r73sSLijS3w4YYVt6Q DEBUG com.networknt.schema.FormatValidator debug - validate( "bc47337e-dd0d-4f29-ad74-70fd2a3b3243", {"password":"88b1e1f7-5ef3-4598-b4a6-8a74748f8dad","newPassword":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPasswordConfirm":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243"}, requestBody.newPassword) +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, requestBody) +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG com.networknt.schema.TypeValidator debug - validate( "17d9c212-f268-40f6-b8bc-1165d10b", {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, requestBody.firstName) +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG com.networknt.schema.TypeValidator debug - validate( "5f8da49e-1674-425d-bbf0-d25d9ac9254f", {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, requestBody.password) +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, requestBody) +16:40:57.768 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG com.networknt.schema.EnumValidator debug - validate( "admin", {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, requestBody.userType) +16:40:57.769 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG com.networknt.schema.TypeValidator debug - validate( "1e01969d", {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, requestBody.userId) +16:40:57.769 [XNIO-1 task-1] 5BIQocF4Sp2vfXJjpwVDbA DEBUG com.networknt.schema.TypeValidator debug - validate( "17a82c3a-fa8e-4ce9-b767-61d6492fe254", {"userId":"1e01969d","userType":"admin","firstName":"17d9c212-f268-40f6-b8bc-1165d10b","lastName":"00e7c864-a542-4a9c-b0e1-9cb38e18","email":"17a82c3a-fa8e-4ce9-b767-61d6492fe254","password":"5f8da49e-1674-425d-bbf0-d25d9ac9254f"}, requestBody.email) +16:40:57.779 [XNIO-1 task-1] Ag6FC9zVRja7EdUREQWPrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fccffed8, base path is set to: null +16:40:57.779 [XNIO-1 task-1] Ag6FC9zVRja7EdUREQWPrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.779 [XNIO-1 task-1] Ag6FC9zVRja7EdUREQWPrA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:57.779 [XNIO-1 task-1] Ag6FC9zVRja7EdUREQWPrA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user/fccffed8, base path is set to: null +16:40:57.779 [XNIO-1 task-1] Ag6FC9zVRja7EdUREQWPrA DEBUG com.networknt.schema.TypeValidator debug - validate( "fccffed8", "fccffed8", userId) +16:40:57.791 [XNIO-1 task-1] bRST7pjUTPqCi45p53DUeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.791 [XNIO-1 task-1] bRST7pjUTPqCi45p53DUeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.791 [XNIO-1 task-1] bRST7pjUTPqCi45p53DUeQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.798 [XNIO-1 task-1] 0h2p1eiFRyqU4zpmimHZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48e27e0b +16:40:57.798 [XNIO-1 task-1] 0h2p1eiFRyqU4zpmimHZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.798 [XNIO-1 task-1] 0h2p1eiFRyqU4zpmimHZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.798 [XNIO-1 task-1] 0h2p1eiFRyqU4zpmimHZvA DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/48e27e0b +16:40:57.806 [hz._hzInstance_1_dev.partition-operation.thread-1] DEBUG c.n.o.cache.ServiceEndpointMapStore delete - Delete:650f613d +16:40:57.807 [XNIO-1 task-1] crigB0wiQEO1kN4Dxgr3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.807 [XNIO-1 task-1] crigB0wiQEO1kN4Dxgr3SQ DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.807 [XNIO-1 task-1] crigB0wiQEO1kN4Dxgr3SQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:57.822 [XNIO-1 task-1] ZGkwsZYuSWu024wCyYBhXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:57.822 [XNIO-1 task-1] ZGkwsZYuSWu024wCyYBhXQ DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.822 [XNIO-1 task-1] ZGkwsZYuSWu024wCyYBhXQ DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:57.837 [XNIO-1 task-1] WUmpeH_1TVywXFGtziQQKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:57.838 [XNIO-1 task-1] WUmpeH_1TVywXFGtziQQKg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.838 [XNIO-1 task-1] WUmpeH_1TVywXFGtziQQKg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:57.838 [XNIO-1 task-1] WUmpeH_1TVywXFGtziQQKg DEBUG com.networknt.schema.TypeValidator debug - validate( "1", "1", page) +16:40:57.850 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:57.850 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.850 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/user, base path is set to: null +16:40:57.850 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG com.networknt.schema.TypeValidator debug - validate( {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, requestBody) +16:40:57.850 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG c.n.schema.PropertiesValidator debug - validate( {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, requestBody) +16:40:57.850 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG com.networknt.schema.TypeValidator debug - validate( "f015e640-bcba-47b4-b779-671aba2c", {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, requestBody.lastName) +16:40:57.850 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG com.networknt.schema.FormatValidator debug - validate( "256dfb0b-d8b6-4db7-a612-64b954bf20f4", {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, requestBody.password) +16:40:57.851 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG com.networknt.schema.TypeValidator debug - validate( "admin", {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, requestBody.userType) +16:40:57.851 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, requestBody) +16:40:57.851 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA DEBUG c.networknt.schema.RequiredValidator debug - validate( {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, {"userId":"78954778","userType":"admin","firstName":"a8319caa-c135-48dd-8a07-a6a8c2d5","lastName":"f015e640-bcba-47b4-b779-671aba2c","email":"5cef37d1-981a-4dd0-98db-2ae1b337c78e","password":"256dfb0b-d8b6-4db7-a612-64b954bf20f4"}, requestBody) +16:40:57.852 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore store - Store:79459442-d5f2-48d6-9327-533825338949 +16:40:57.852 [XNIO-1 task-1] SY7NQWEmQVSwj_vBuKRvMA ERROR c.networknt.handler.LightHttpHandler setExchangeStatus - {"statusCode":400,"code":"ERR12011","message":"PASSWORD_OR_PASSWORDCONFIRM_EMPTY","description":"Password 256dfb0b-d8b6-4db7-a612-64b954bf20f4 or PasswordConfirm null is empty.","severity":"ERROR"} +16:40:57.854 [XNIO-1 task-1] ITajTDWCT6Kn513AAIKcxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.854 [XNIO-1 task-1] ITajTDWCT6Kn513AAIKcxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.854 [XNIO-1 task-1] ITajTDWCT6Kn513AAIKcxg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.855 [XNIO-1 task-1] ITajTDWCT6Kn513AAIKcxg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:57.860 [XNIO-1 task-1] OI678FppSX6AVa3KW5v-rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.860 [XNIO-1 task-1] OI678FppSX6AVa3KW5v-rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.860 [XNIO-1 task-1] OI678FppSX6AVa3KW5v-rg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.860 [XNIO-1 task-1] OI678FppSX6AVa3KW5v-rg DEBUG com.networknt.schema.FormatValidator debug - validate( "1", "1", page) +16:40:57.867 [XNIO-1 task-1] dqS36o2LTfmVNXCq8PtHsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/360812eb +16:40:57.868 [XNIO-1 task-1] dqS36o2LTfmVNXCq8PtHsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.868 [XNIO-1 task-1] dqS36o2LTfmVNXCq8PtHsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.868 [XNIO-1 task-1] dqS36o2LTfmVNXCq8PtHsw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/360812eb +16:40:57.868 [hz._hzInstance_1_dev.partition-operation.thread-3] DEBUG c.n.oauth.cache.RefreshTokenMapStore delete - Delete:79459442-d5f2-48d6-9327-533825338949 +16:40:57.874 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a8512d24, base path is set to: null +16:40:57.874 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.874 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a8512d24, base path is set to: null +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/a8512d24 +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG com.networknt.schema.TypeValidator debug - validate( "a8512d24", "a8512d24", userId) +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG com.networknt.schema.TypeValidator debug - validate( {"password":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPassword":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPasswordConfirm":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782"}, {"password":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPassword":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPasswordConfirm":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782"}, requestBody) +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPassword":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPasswordConfirm":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782"}, {"password":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPassword":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPasswordConfirm":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782"}, requestBody) +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG c.n.schema.PropertiesValidator debug - validate( {"password":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPassword":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPasswordConfirm":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782"}, {"password":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPassword":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPasswordConfirm":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782"}, requestBody) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) +16:40:57.875 [XNIO-1 task-1] iZxa7StrS9i-9gZZloVwyw DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782", {"password":"bc47337e-dd0d-4f29-ad74-70fd2a3b3243","newPassword":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPasswordConfirm":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782"}, requestBody.newPasswordConfirm) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.delete(DefaultRecordStore.java:455) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) + at com.hazelcast.spi.Operation.call(Operation.java:170) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.call(OperationRunnerImpl.java:210) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:199) + at com.hazelcast.spi.impl.operationservice.impl.OperationRunnerImpl.run(OperationRunnerImpl.java:416) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:153) + at com.hazelcast.spi.impl.operationexecutor.impl.OperationThread.process(OperationThread.java:123) +16:40:57.890 [hz._hzInstance_1_dev.partition-operation.thread-2] DEBUG c.n.oauth.cache.RefreshTokenMapStore load - Load:12ea68d2-b01e-4f1c-aceb-278d4e62a18c +16:40:57.891 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/62674999, base path is set to: null +16:40:57.891 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/62674999 +16:40:57.891 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/user/{userId} +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/{userId} +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/62674999, base path is set to: null +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.n.openapi.ApiNormalisedPath - normalised = /oauth2/password/62674999 + +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG com.networknt.schema.TypeValidator debug - validate( "62674999", "62674999", userId) +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"300cf8f7-fe7a-446d-978d-f65df1c9e2bb","newPassword":"178abb17-ba81-495c-a38d-430fb68e5da9","newPasswordConfirm":"178abb17-ba81-495c-a38d-430fb68e5da9"}, {"password":"300cf8f7-fe7a-446d-978d-f65df1c9e2bb","newPassword":"178abb17-ba81-495c-a38d-430fb68e5da9","newPasswordConfirm":"178abb17-ba81-495c-a38d-430fb68e5da9"}, requestBody) +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG com.networknt.schema.TypeValidator debug - validate( "178abb17-ba81-495c-a38d-430fb68e5da9", {"password":"300cf8f7-fe7a-446d-978d-f65df1c9e2bb","newPassword":"178abb17-ba81-495c-a38d-430fb68e5da9","newPasswordConfirm":"178abb17-ba81-495c-a38d-430fb68e5da9"}, requestBody.newPasswordConfirm) +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG com.networknt.schema.TypeValidator debug - validate( "300cf8f7-fe7a-446d-978d-f65df1c9e2bb", {"password":"300cf8f7-fe7a-446d-978d-f65df1c9e2bb","newPassword":"178abb17-ba81-495c-a38d-430fb68e5da9","newPasswordConfirm":"178abb17-ba81-495c-a38d-430fb68e5da9"}, requestBody.password) +16:40:57.892 [XNIO-1 task-1] mimfDH2dQ9yvlrTQxjFGTg DEBUG com.networknt.schema.TypeValidator debug - validate( "178abb17-ba81-495c-a38d-430fb68e5da9", {"password":"300cf8f7-fe7a-446d-978d-f65df1c9e2bb","newPassword":"178abb17-ba81-495c-a38d-430fb68e5da9","newPasswordConfirm":"178abb17-ba81-495c-a38d-430fb68e5da9"}, requestBody.newPassword) +16:40:57.912 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a8512d24, base path is set to: null +16:40:57.912 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user +16:40:57.912 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/user/{userId} +16:40:57.912 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG c.n.openapi.ApiNormalisedPath - path =/oauth2/password/{userId} +16:40:57.912 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG c.n.openapi.ApiNormalisedPath - path = /oauth2/password/a8512d24, base path is set to: null +16:40:57.912 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG com.networknt.schema.TypeValidator debug - validate( "a8512d24", "a8512d24", userId) +16:40:57.913 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG c.networknt.schema.RequiredValidator debug - validate( {"password":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPassword":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65","newPasswordConfirm":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65"}, {"password":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPassword":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65","newPasswordConfirm":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65"}, requestBody) +16:40:57.913 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG com.networknt.schema.TypeValidator debug - validate( "4ceea0fc-d9a8-4f22-92d9-a196e8718a65", {"password":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPassword":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65","newPasswordConfirm":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65"}, requestBody.newPasswordConfirm) +16:40:57.913 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG com.networknt.schema.TypeValidator debug - validate( "f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782", {"password":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPassword":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65","newPasswordConfirm":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65"}, requestBody.password) +16:40:57.913 [XNIO-1 task-1] 4pvrdgI2SUO4gstonL1VNg DEBUG com.networknt.schema.TypeValidator debug - validate( "4ceea0fc-d9a8-4f22-92d9-a196e8718a65", {"password":"f6a7b1d0-ddcd-4c2a-8132-33a3dbc43782","newPassword":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65","newPasswordConfirm":"4ceea0fc-d9a8-4f22-92d9-a196e8718a65"}, requestBody.newPassword) +16:40:57.913 [hz._hzInstance_1_dev.partition-operation.thread-8] DEBUG c.n.oauth.cache.ClientMapStore delete - Delete:e7c58d4f-d444-4fa0-9542-b9a93ea19a7e +java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`oauth2`.`refresh_token`, CONSTRAINT `refresh_token_ibfk_1` FOREIGN KEY (`client_id`) REFERENCES `client` (`client_id`)) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027) + at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java) + at com.networknt.oauth.cache.ClientMapStore.delete(ClientMapStore.java:19) + at com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore.remove(WriteThroughStore.java:56) + at com.hazelcast.map.impl.recordstore.DefaultRecordStore.removeRecord(DefaultRecordStore.java:1034) + at com.hazelcast.map.impl.operation.DeleteOperation.run(DeleteOperation.java:44) diff --git a/migrations/versions/a9fe74ac20ca_add_base_log_data_path_to_project.py b/migrations/versions/a9fe74ac20ca_add_base_log_data_path_to_project.py new file mode 100644 index 0000000..d6ad712 --- /dev/null +++ b/migrations/versions/a9fe74ac20ca_add_base_log_data_path_to_project.py @@ -0,0 +1,32 @@ +"""Add base log data path to project + +Revision ID: a9fe74ac20ca +Revises: 386df161b1ab +Create Date: 2025-08-18 09:59:00.009515 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = 'a9fe74ac20ca' +down_revision = '386df161b1ab' +branch_labels = None +depends_on = None + + +def upgrade(): + # ### commands auto generated by Alembic - please adjust! ### + with op.batch_alter_table('projects', schema=None) as batch_op: + batch_op.add_column(sa.Column('base_path', sa.String(), nullable=True)) + + # ### end Alembic commands ### + + +def downgrade(): + # ### commands auto generated by Alembic - please adjust! ### + with op.batch_alter_table('projects', schema=None) as batch_op: + batch_op.drop_column('base_path') + + # ### end Alembic commands ### diff --git a/requirements.txt b/requirements.txt index 2e281da..397f61e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -62,6 +62,7 @@ packaging==25.0 pandas==2.2.3 pillow==11.2.1 platformdirs==4.3.8 +playwright==1.54.0 plotly==6.1.2 pluggy==1.6.0 polars==1.30.0 @@ -76,13 +77,17 @@ pycodestyle==2.13.0 pycryptodomex==3.23.0 pydantic==2.11.7 pydantic_core==2.33.2 +pyee==13.0.0 Pygments==2.19.2 pynndescent==0.5.13 pyparsing==3.2.3 pyppmd==1.2.0 pytest==8.4.1 +pytest-base-url==2.1.0 +pytest-playwright==0.7.0 python-dateutil==2.9.0.post0 python-dotenv==1.1.0 +python-slugify==8.0.4 pytz==2025.2 PyYAML==6.0.2 pyzstd==0.17.0 @@ -102,6 +107,7 @@ six==1.17.0 slicer==0.0.8 smmap==5.0.2 SQLAlchemy==2.0.41 +text-unidecode==1.3 texttable==1.7.0 threadpoolctl==3.6.0 tipping==0.1.3 diff --git a/server/analysis/analysis_runners.py b/server/analysis/analysis_runners.py index fc4964a..0297b0e 100644 --- a/server/analysis/analysis_runners.py +++ b/server/analysis/analysis_runners.py @@ -226,7 +226,9 @@ def run_anomaly_detection_analysis( models: list[str], item_list_col: str, runs_to_include: list[str] | None, + runs_to_include_train: list[str] | None, files_to_include: list[str] | None, + files_to_include_train: list[str] | None, file_level: bool, directory_level: bool, mask_type: str, @@ -255,7 +257,9 @@ def run_anomaly_detection_analysis( train_data_path=train_data_path, test_data_path=test_data_path, runs_to_include=runs_to_include, + runs_to_include_train=runs_to_include_train, files_to_include=files_to_include, + files_to_include_train=files_to_include_train, mask_type=mask_type, ) diff --git a/server/analysis/log_analysis_pipeline.py b/server/analysis/log_analysis_pipeline.py index bec1321..267cf4a 100644 --- a/server/analysis/log_analysis_pipeline.py +++ b/server/analysis/log_analysis_pipeline.py @@ -20,7 +20,9 @@ def __init__( train_data_path=None, test_data_path=None, runs_to_include=None, + runs_to_include_train=None, files_to_include=None, + files_to_include_train=None, mask_type=None, ): @@ -30,8 +32,12 @@ def __init__( self._train_data_path = train_data_path self._test_data_path = test_data_path + self._runs_to_include = runs_to_include + self._runs_to_include_train = runs_to_include_train + self._files_to_include = files_to_include + self._files_to_include_train = files_to_include_train self._mask_type = mask_type self._vectorizer = vectorizer @@ -50,6 +56,11 @@ def load(self): elif self._files_to_include is not None: self._df_test = filter_files(self._df_test, self._files_to_include) + if self._runs_to_include_train is not None: + self._df_train = filter_runs(self._df_train, self._runs_to_include_train) + elif self._files_to_include_train is not None: + self._df_train = filter_files(self._df_train, self._files_to_include_train) + def _load_test_train(self, directory_path): loader = Loader(directory_path, self._log_format) loader.load() diff --git a/server/api/analyze_routes.py b/server/api/analyze_routes.py index 10bda3c..2a521ef 100644 --- a/server/api/analyze_routes.py +++ b/server/api/analyze_routes.py @@ -38,10 +38,15 @@ def manual_test_train(project_id): test_data_path = validation_result.test_data_path models = validation_result.models item_list_col = validation_result.item_list_col + runs_to_include = validation_result.runs_to_include + runs_to_include_train = validation_result.runs_to_include_train + run_level = validation_result.run_level + files_to_include = validation_result.files_to_include + files_to_include_train = validation_result.files_to_include_train file_level = validation_result.file_level - run_level = validation_result.run_level + mask_type = validation_result.mask_type vectorizer = validation_result.vectorizer analysis_name = validation_result.name @@ -54,7 +59,9 @@ def manual_test_train(project_id): models, item_list_col, runs_to_include, + runs_to_include_train, files_to_include, + files_to_include_train, file_level, run_level, mask_type, diff --git a/server/api/crud_routes.py b/server/api/crud_routes.py index ef223e3..b224ba9 100644 --- a/server/api/crud_routes.py +++ b/server/api/crud_routes.py @@ -30,7 +30,7 @@ def create_project(): error = e.errors()[0] # take the first one return jsonify({"error": f"{error['loc'][0]}: {error['msg']}"}), 400 - project = Project(name=validated_data.name) + project = Project(name=validated_data.name, base_path=validated_data.base_path) db.session.add(project) db.session.commit() @@ -64,6 +64,12 @@ def get_project_name(project_id: int): return jsonify({"name": project.name}), 200 +@crud_bp.route("/projects//base_path", methods=["GET"]) +def get_project_base_path(project_id: int): + project = db.get_or_404(Project, project_id) + return jsonify({"base_path": project.base_path}), 200 + + @crud_bp.route("/projects//analyses", methods=["GET"]) def get_analyses(project_id: int): project = db.session.get(Project, project_id) diff --git a/server/api/dash_redirects.py b/server/api/dash_redirects.py index e5798c3..11b6c7d 100644 --- a/server/api/dash_redirects.py +++ b/server/api/dash_redirects.py @@ -6,3 +6,9 @@ @dash_redirects_bp.route("/") def home(): return redirect("/dash") + + +# TODO: Move somewere else +@dash_redirects_bp.route("/health") +def health(): + return "OK", 200 diff --git a/server/api/validator_models/anomaly_detection_params.py b/server/api/validator_models/anomaly_detection_params.py index de59bbc..02ca3eb 100644 --- a/server/api/validator_models/anomaly_detection_params.py +++ b/server/api/validator_models/anomaly_detection_params.py @@ -14,8 +14,10 @@ class AnomalyDetectionParams(BaseModel): log_format: Literal["raw", "lo2"] = "raw" sequence_enhancement: bool = Field(default=False, alias="seq") runs_to_include: Optional[List[str]] = None + runs_to_include_train: Optional[List[str]] = None run_level: bool = False files_to_include: Optional[List[str]] = None + files_to_include_train: Optional[List[str]] = None file_level: bool = False mask_type: Optional[str] = None vectorizer: Literal["count", "tfidf"] = "count" diff --git a/server/api/validator_models/crud_params.py b/server/api/validator_models/crud_params.py index a9fa9c7..a764309 100644 --- a/server/api/validator_models/crud_params.py +++ b/server/api/validator_models/crud_params.py @@ -1,9 +1,33 @@ -from pydantic import BaseModel -from typing import Literal +from pathlib import Path +from typing import Literal, Optional +from flask import current_app + +from pydantic import BaseModel, field_validator class ProjectParams(BaseModel): name: str + base_path: Optional[str] = None + + @field_validator("base_path", mode="after") + @classmethod + def validate_directory_path(cls, value: Optional[str]) -> Optional[str]: + if not value: + return None + + path = Path(value).resolve() + + log_data_root = Path(current_app.config["LOG_DATA_PATH"]).resolve() + + try: + path.relative_to(log_data_root) + except ValueError: + raise ValueError(f"Path must be inside {log_data_root}, got {path}") + + if not path.is_dir(): + raise ValueError(f"Directory does not exist: {path}") + + return str(path) class SettingsParams(BaseModel): diff --git a/server/models/project.py b/server/models/project.py index 1f612a0..4df7c49 100644 --- a/server/models/project.py +++ b/server/models/project.py @@ -12,6 +12,8 @@ class Project(db.Model): id = db.Column(db.Integer, primary_key=True) name = db.Column(db.String, nullable=False) + base_path = db.Column(db.String) + time_created = db.Column(db.DateTime(timezone=True), server_default=func.now()) time_updated = db.Column(db.DateTime(timezone=True), onupdate=func.now()) @@ -30,6 +32,7 @@ def to_dict(self, include_analyses=False): data = { "id": self.id, "name": self.name, + "base_path": self.base_path, "time_created": ( self.time_created.isoformat() if self.time_created else None ), diff --git a/server/tasks.py b/server/tasks.py index 17ef7ab..422342b 100644 --- a/server/tasks.py +++ b/server/tasks.py @@ -24,7 +24,9 @@ def async_run_anomaly_detection( models: list[str], item_list_col: str, runs_to_include: list[str] | None, + runs_to_include_train: list[str] | None, files_to_include: list[str] | None, + files_to_include_train: list[str] | None, file_level: bool, directory_level: bool, mask_type: str, @@ -44,7 +46,9 @@ def async_run_anomaly_detection( models, item_list_col, runs_to_include, + runs_to_include_train, files_to_include, + files_to_include_train, file_level, directory_level, mask_type, diff --git a/tests/test_example_e2e.py b/tests/test_example_e2e.py new file mode 100644 index 0000000..9396f7b --- /dev/null +++ b/tests/test_example_e2e.py @@ -0,0 +1,48 @@ +import re +from playwright.sync_api import Page, expect + + +def test_has_title(page: Page): + page.goto("http://127.0.0.1:5000/dash/") + + expect(page).to_have_title(re.compile("Home")) + + +def test_can_create_project(page: Page): + page.goto("http://127.0.0.1:5000/dash/") + + page.get_by_role("button", name="Create a new project").click() + page.get_by_label("Project name").fill("Test project") + page.get_by_role("button", name="Create", exact=True).click() + + locator = page.locator("#project-group li h4", has_text="Test project") + expect(locator).to_be_visible() + + +def test_can_run_file_count_analysis(page: Page): + page.goto("http://127.0.0.1:5000/dash/") + + page.get_by_role("button", name="Create a new project").click() + page.get_by_label("Project name").fill("File count test") + page.get_by_label("Base path").fill("./log_data/LO2") + page.get_by_role("button", name="Create", exact=True).click() + + project_link = page.locator("#project-group li a", has_text="File count test") + project_link.click() + + expect(page).to_have_url(re.compile("/dash/project/*")) + + page.get_by_role("button", name="High Level Visualisations").click() + page.get_by_role("link", name="Directory level").click() + + expect(page).to_have_url( + re.compile("/dash/analysis/directory-level-visualisations/create*") + ) + + page.click("#directory-high-dir-new") + page.get_by_text("Labeled").click() + page.get_by_role("radio", name="Files & Lines").click() + + page.get_by_role("button", name="Analyze").click() + + expect(page).to_have_url(re.compile("/dash/project/*")) diff --git a/tests/test_run_analysis_functions.py b/tests/test_run_analysis_functions.py index 1773b15..c7cbdfa 100644 --- a/tests/test_run_analysis_functions.py +++ b/tests/test_run_analysis_functions.py @@ -6,9 +6,8 @@ import server.analysis.analysis_runners as ar # Test data paths -HIDDEN_GROUP = "./tests/datasets/hidden_group_1" -LABELED = "./tests/datasets/labeled" -ONLY_CORRECT_CASES = "./tests/datasets/only_correct_cases" +HIDDEN_GROUP = "./log_data/LO2/Hidden_Group_1" +LABELED = "./log_data/LO2/Labeled" class TestRunFileCountsAnalysis: @@ -320,12 +319,14 @@ def test_run_anomaly_detection_analysis_valid_inputs( result = ar.run_anomaly_detection_analysis( project_id=7, analysis_name="test", - train_data_path=ONLY_CORRECT_CASES, + train_data_path=LABELED, test_data_path=HIDDEN_GROUP, models=["kmeans", "oovd"], item_list_col="e_words", runs_to_include=None, + runs_to_include_train=None, files_to_include=None, + files_to_include_train=None, file_level=file_level, directory_level=directory_level, mask_type="myllari", @@ -393,7 +394,9 @@ def test_run_anomaly_detection_analysis_branching( models=["kmeans"], item_list_col="e_words", runs_to_include=None, + runs_to_include_train=None, files_to_include=None, + files_to_include_train=None, file_level=file_level, directory_level=directory_level, mask_type="myllari",